From c9ae48b7e97aa4f810501bb72e60ecd18b908202 Mon Sep 17 00:00:00 2001 From: Cris Barreiro Date: Tue, 10 Dec 2024 09:50:41 +0100 Subject: [PATCH 1/8] Add blocking algorithm --- .../app/browser/BrowserWebViewClient.kt | 7 +- .../app/browser/WebViewRequestInterceptor.kt | 16 ++- .../impl/MaliciousSiteModule.kt | 7 + .../impl/data/MaliciousSiteRepository.kt | 29 ++-- .../MaliciousSiteEmbeddedDataProvider.kt | 4 +- .../impl/data/network/MaliciousSiteService.kt | 68 ++++++++++ .../domain/RealMaliciousSiteProtection.kt | 54 +++++++- .../impl/RealMaliciousSiteProtectionTest.kt | 0 .../domain/RealMaliciousSiteProtectionTest.kt | 125 ++++++++++++++++++ 9 files changed, 277 insertions(+), 33 deletions(-) create mode 100644 malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/network/MaliciousSiteService.kt delete mode 100644 malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/RealMaliciousSiteProtectionTest.kt create mode 100644 malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt diff --git a/app/src/main/java/com/duckduckgo/app/browser/BrowserWebViewClient.kt b/app/src/main/java/com/duckduckgo/app/browser/BrowserWebViewClient.kt index a0cb6de7cda9..f65ede0c371d 100644 --- a/app/src/main/java/com/duckduckgo/app/browser/BrowserWebViewClient.kt +++ b/app/src/main/java/com/duckduckgo/app/browser/BrowserWebViewClient.kt @@ -79,6 +79,7 @@ import com.duckduckgo.history.api.NavigationHistory import com.duckduckgo.privacy.config.api.AmpLinks import com.duckduckgo.subscriptions.api.Subscriptions import com.duckduckgo.user.agent.api.ClientBrandHintProvider +import com.google.android.material.snackbar.Snackbar import java.net.URI import javax.inject.Inject import kotlinx.coroutines.* @@ -126,10 +127,6 @@ class BrowserWebViewClient @Inject constructor( private var shouldOpenDuckPlayerInNewTab: Boolean = true - private val confirmationCallback: (isMalicious: Boolean) -> Unit = { - // TODO (cbarreiro): Handle site blocked asynchronously - } - init { appCoroutineScope.launch { duckPlayer.observeShouldOpenInNewTab().collect { @@ -162,7 +159,7 @@ class BrowserWebViewClient @Inject constructor( try { Timber.v("shouldOverride webViewUrl: ${webView.url} URL: $url") webViewClientListener?.onShouldOverride() - if (requestInterceptor.shouldOverrideUrlLoading(url, isForMainFrame)) { + if (requestInterceptor.shouldOverrideUrlLoading(webView, url, isForMainFrame)) { return true } diff --git a/app/src/main/java/com/duckduckgo/app/browser/WebViewRequestInterceptor.kt b/app/src/main/java/com/duckduckgo/app/browser/WebViewRequestInterceptor.kt index 5c3ec224118e..f93ea7ec3947 100644 --- a/app/src/main/java/com/duckduckgo/app/browser/WebViewRequestInterceptor.kt +++ b/app/src/main/java/com/duckduckgo/app/browser/WebViewRequestInterceptor.kt @@ -39,6 +39,7 @@ import com.duckduckgo.httpsupgrade.api.HttpsUpgrader import com.duckduckgo.privacy.config.api.Gpc import com.duckduckgo.request.filterer.api.RequestFilterer import com.duckduckgo.user.agent.api.UserAgentProvider +import com.google.android.material.snackbar.Snackbar import kotlinx.coroutines.withContext import timber.log.Timber @@ -62,6 +63,7 @@ interface RequestInterceptor { @WorkerThread fun shouldOverrideUrlLoading( + webView: WebView, url: Uri, isForMainFrame: Boolean, ): Boolean @@ -106,9 +108,9 @@ class WebViewRequestInterceptor( val url: Uri? = request.url maliciousSiteBlockerWebViewIntegration.shouldIntercept(request, documentUri) { - handleSiteBlocked() + handleSiteBlocked(webView) }?.let { - handleSiteBlocked() + handleSiteBlocked(webView) return it } @@ -177,22 +179,22 @@ class WebViewRequestInterceptor( return getWebResourceResponse(request, documentUrl, null) } - override fun shouldOverrideUrlLoading(url: Uri, isForMainFrame: Boolean): Boolean { + override fun shouldOverrideUrlLoading(webView: WebView, url: Uri, isForMainFrame: Boolean): Boolean { if (maliciousSiteBlockerWebViewIntegration.shouldOverrideUrlLoading( url, isForMainFrame, ) { - handleSiteBlocked() + handleSiteBlocked(webView) } ) { - handleSiteBlocked() + handleSiteBlocked(webView) return true } return false } - private fun handleSiteBlocked() { - // TODO (cbarreiro): Handle site blocked + private fun handleSiteBlocked(webView: WebView) { + Snackbar.make(webView, "Site blocked", Snackbar.LENGTH_SHORT).show() } private fun getWebResourceResponse( diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/MaliciousSiteModule.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/MaliciousSiteModule.kt index 83c46329dfc0..8682a39687c4 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/MaliciousSiteModule.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/MaliciousSiteModule.kt @@ -26,6 +26,7 @@ import com.squareup.anvil.annotations.ContributesTo import dagger.Module import dagger.Provides import dagger.SingleInstanceIn +import java.security.MessageDigest @Module @ContributesTo(AppScope::class) @@ -45,4 +46,10 @@ class MaliciousSiteModule { fun provideMaliciousSiteDao(database: MaliciousSitesDatabase): MaliciousSiteDao { return database.maliciousSiteDao() } + + @Provides + @SingleInstanceIn(AppScope::class) + fun provideMessageDigest(): MessageDigest { + return MessageDigest.getInstance("SHA-256") + } } diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/MaliciousSiteRepository.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/MaliciousSiteRepository.kt index 6a0afca937ae..1be3aed90e55 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/MaliciousSiteRepository.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/MaliciousSiteRepository.kt @@ -23,15 +23,18 @@ import com.duckduckgo.di.scopes.AppScope import com.duckduckgo.malicioussiteprotection.impl.MaliciousSiteProtectionFeature import com.duckduckgo.malicioussiteprotection.impl.data.db.MaliciousSiteDao import com.duckduckgo.malicioussiteprotection.impl.data.embedded.MaliciousSiteProtectionEmbeddedDataProvider +import com.duckduckgo.malicioussiteprotection.impl.data.network.MaliciousSiteService import com.squareup.anvil.annotations.ContributesBinding import dagger.SingleInstanceIn import javax.inject.Inject import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.launch +import timber.log.Timber interface MaliciousSiteRepository { suspend fun containsHashPrefix(hashPrefix: String): Boolean suspend fun getFilter(hash: String): Filter? + suspend fun matches(hashPrefix: String): List } @ContributesBinding(AppScope::class) @@ -41,6 +44,7 @@ class RealMaliciousSiteRepository @Inject constructor( private val maliciousSiteDao: MaliciousSiteDao, @IsMainProcess private val isMainProcess: Boolean, maliciousSiteProtectionFeature: MaliciousSiteProtectionFeature, + private val maliciousSiteService: MaliciousSiteService, @AppCoroutineScope private val appCoroutineScope: CoroutineScope, dispatcherProvider: DispatcherProvider, ) : MaliciousSiteRepository { @@ -87,6 +91,17 @@ class RealMaliciousSiteRepository @Inject constructor( Filter(it.hash, it.regex) } } + + override suspend fun matches(hashPrefix: String): List { + return try { + maliciousSiteService.getMatches(hashPrefix).matches.also { + Timber.d("\uD83D\uDFE2 Cris: Fetched $it matches for hash prefix $hashPrefix") + } + } catch (e: Exception) { + Timber.d("\uD83D\uDD34 Cris: Failed to fetch matches for hash prefix $hashPrefix") + listOf() + } + } } data class Match( @@ -96,20 +111,6 @@ data class Match( val hash: String, ) -data class HashPrefixResponse( - val insert: Set, - val delete: Set, - val revision: Int, - val replace: String, -) - -data class FilterSetResponse( - val insert: Set, - val delete: Set, - val revision: Int, - val replace: String, -) - data class Filter( val hash: String, val regex: String, diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/embedded/MaliciousSiteEmbeddedDataProvider.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/embedded/MaliciousSiteEmbeddedDataProvider.kt index c4d6cd4a2d57..18c4bd7e38d0 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/embedded/MaliciousSiteEmbeddedDataProvider.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/embedded/MaliciousSiteEmbeddedDataProvider.kt @@ -20,8 +20,8 @@ import android.content.Context import androidx.annotation.RawRes import com.duckduckgo.di.scopes.AppScope import com.duckduckgo.malicioussiteprotection.impl.R -import com.duckduckgo.malicioussiteprotection.impl.data.FilterSetResponse -import com.duckduckgo.malicioussiteprotection.impl.data.HashPrefixResponse +import com.duckduckgo.malicioussiteprotection.impl.data.network.FilterSetResponse +import com.duckduckgo.malicioussiteprotection.impl.data.network.HashPrefixResponse import com.squareup.anvil.annotations.ContributesBinding import com.squareup.moshi.Moshi import javax.inject.Inject diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/network/MaliciousSiteService.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/network/MaliciousSiteService.kt new file mode 100644 index 000000000000..6f3fd6787c5d --- /dev/null +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/network/MaliciousSiteService.kt @@ -0,0 +1,68 @@ +/* + * Copyright (c) 2024 DuckDuckGo + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.duckduckgo.malicioussiteprotection.impl.data.network + +import com.duckduckgo.anvil.annotations.ContributesServiceApi +import com.duckduckgo.common.utils.AppUrl.Url.API +import com.duckduckgo.di.scopes.AppScope +import com.duckduckgo.malicioussiteprotection.impl.data.Filter +import com.duckduckgo.malicioussiteprotection.impl.data.Match +import retrofit2.http.GET +import retrofit2.http.Query + +private const val BASE_URL = "$API/api/protection" +private const val HASH_PREFIX_PATH = "/hashPrefix" +private const val FILTER_SET_PATH = "/filterSet" +private const val CATEGORY = "category" +private const val PHISHING = "phishing" +private const val MALWARE = "malware" + +@ContributesServiceApi(AppScope::class) +interface MaliciousSiteService { + @GET("$BASE_URL$HASH_PREFIX_PATH?$CATEGORY=$PHISHING") + suspend fun getPhishingHashPrefixes(@Query("revision") revision: Int): HashPrefixResponse + + @GET("$BASE_URL$HASH_PREFIX_PATH?$CATEGORY=$MALWARE") + suspend fun getMalwareHashPrefixes(@Query("revision") revision: Int): HashPrefixResponse + + @GET("$BASE_URL$FILTER_SET_PATH?$CATEGORY=$PHISHING") + suspend fun getPhishingFilterSet(@Query("revision") revision: Int): FilterSetResponse + + @GET("$BASE_URL$FILTER_SET_PATH?$CATEGORY=$MALWARE") + suspend fun getMalwareFilterSet(@Query("revision") revision: Int): FilterSetResponse + + @GET("$BASE_URL/matches") + suspend fun getMatches(@Query("hashPrefix") hashPrefix: String): MatchesResponse +} + +data class MatchesResponse( + val matches: List, +) + +data class HashPrefixResponse( + val insert: Set, + val delete: Set, + val revision: Int, + val replace: Boolean, +) + +data class FilterSetResponse( + val insert: Set, + val delete: Set, + val revision: Int, + val replace: Boolean, +) diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt index 746e8200a74b..a93b1392a9f9 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt @@ -17,22 +17,66 @@ package com.duckduckgo.malicioussiteprotection.impl.domain import android.net.Uri +import com.duckduckgo.app.di.AppCoroutineScope +import com.duckduckgo.common.utils.DispatcherProvider import com.duckduckgo.di.scopes.AppScope import com.duckduckgo.malicioussiteprotection.api.MaliciousSiteProtection import com.duckduckgo.malicioussiteprotection.api.MaliciousSiteProtection.IsMaliciousResult -import com.duckduckgo.malicioussiteprotection.impl.MaliciousSiteProtectionRCFeature +import com.duckduckgo.malicioussiteprotection.impl.data.MaliciousSiteRepository import com.squareup.anvil.annotations.ContributesBinding -import javax.inject.Inject +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.launch import timber.log.Timber +import java.security.MessageDigest +import java.util.regex.Pattern +import javax.inject.Inject @ContributesBinding(AppScope::class, MaliciousSiteProtection::class) class RealMaliciousSiteProtection @Inject constructor( - maliciousSiteProtectionRCFeature: MaliciousSiteProtectionRCFeature, + private val dispatchers: DispatcherProvider, + @AppCoroutineScope private val appCoroutineScope: CoroutineScope, + private val maliciousSiteRepository: MaliciousSiteRepository, + private val messageDigest: MessageDigest, ) : MaliciousSiteProtection { override suspend fun isMalicious(url: Uri, confirmationCallback: (isMalicious: Boolean) -> Unit): IsMaliciousResult { Timber.tag("MaliciousSiteProtection").d("isMalicious $url") - // TODO (cbarreiro): Implement the logic to check if the URL is malicious - return IsMaliciousResult.SAFE + + val hostname = url.host ?: return IsMaliciousResult.SAFE + val hash = messageDigest + .digest(hostname.toByteArray()) + .joinToString("") { "%02x".format(it) } + val hashPrefix = hash.substring(0, 8) + + if (!maliciousSiteRepository.containsHashPrefix(hashPrefix)) { + Timber.d("\uD83D\uDFE2 Cris: should not block (no hash) $hashPrefix, $url") + return IsMaliciousResult.SAFE + } + maliciousSiteRepository.getFilter(hash)?.let { + if (Pattern.matches(it.regex, url.toString())) { + Timber.d("\uD83D\uDFE2 Cris: shouldBlock $url") + return IsMaliciousResult.MALICIOUS + } + } + appCoroutineScope.launch(dispatchers.io()) { + confirmationCallback(matches(hashPrefix, url, hostname, hash)) + } + return IsMaliciousResult.WAIT_FOR_CONFIRMATION + } + + private suspend fun matches( + hashPrefix: String, + url: Uri, + hostname: String, + hash: String, + ): Boolean { + val matches = maliciousSiteRepository.matches(hashPrefix) + return matches.any { match -> + Pattern.matches(match.regex, url.toString()) && + (hostname == match.hostname) && + (hash == match.hash) + }.also { matched -> + Timber.d("\uD83D\uDFE2 Cris: should block $matched") + } } } diff --git a/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/RealMaliciousSiteProtectionTest.kt b/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/RealMaliciousSiteProtectionTest.kt deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt b/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt new file mode 100644 index 000000000000..65ab9fb028ac --- /dev/null +++ b/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt @@ -0,0 +1,125 @@ +/* + * Copyright (c) 2024 DuckDuckGo + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.duckduckgo.malicioussiteprotection.impl.domain + +import android.net.Uri +import androidx.test.ext.junit.runners.AndroidJUnit4 +import com.duckduckgo.common.test.CoroutineTestRule +import com.duckduckgo.feature.toggles.api.FakeFeatureToggleFactory +import com.duckduckgo.malicioussiteprotection.api.MaliciousSiteProtection +import com.duckduckgo.malicioussiteprotection.impl.MaliciousSiteProtectionFeature +import com.duckduckgo.malicioussiteprotection.impl.data.Filter +import com.duckduckgo.malicioussiteprotection.impl.data.MaliciousSiteRepository +import com.duckduckgo.malicioussiteprotection.impl.data.Match +import java.security.MessageDigest +import kotlinx.coroutines.test.runTest +import org.junit.Assert.assertEquals +import org.junit.Assert.assertTrue +import org.junit.Before +import org.junit.Rule +import org.junit.Test +import org.junit.runner.RunWith +import org.mockito.Mockito.mock +import org.mockito.kotlin.whenever + +@RunWith(AndroidJUnit4::class) +class RealMaliciousSiteProtectionTest { + + @get:Rule + var coroutinesTestRule = CoroutineTestRule() + + private lateinit var realMaliciousSiteProtection: RealMaliciousSiteProtection + private val maliciousSiteRepository: MaliciousSiteRepository = mock() + private val messageDigest: MessageDigest = MessageDigest.getInstance("SHA-256") + + @Before + fun setup() { + realMaliciousSiteProtection = RealMaliciousSiteProtection( + coroutinesTestRule.testDispatcherProvider, + coroutinesTestRule.testScope, + maliciousSiteRepository, + messageDigest, + ) + } + + @Test + fun isMalicious_returnsSafe_whenUrlIsNotMalicious() = runTest { + val url = Uri.parse("https://example.com") + val hostname = url.host!! + val hash = messageDigest.digest(hostname.toByteArray()).joinToString("") { "%02x".format(it) } + val hashPrefix = hash.substring(0, 8) + + whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(false) + + val result = realMaliciousSiteProtection.isMalicious(url) {} + + assertEquals(MaliciousSiteProtection.IsMaliciousResult.SAFE, result) + } + + @Test + fun isMalicious_returnsMalicious_whenUrlIsMalicious() = runTest { + val url = Uri.parse("https://malicious.com") + val hostname = url.host!! + val hash = messageDigest.digest(hostname.toByteArray()).joinToString("") { "%02x".format(it) } + val hashPrefix = hash.substring(0, 8) + val filter = Filter(hash, ".*malicious.*") + + whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(true) + whenever(maliciousSiteRepository.getFilter(hash)).thenReturn(filter) + + val result = realMaliciousSiteProtection.isMalicious(url) {} + + assertEquals(MaliciousSiteProtection.IsMaliciousResult.MALICIOUS, result) + } + + @Test + fun isMalicious_returnsWaitForConfirmation_whenUrlDoesNotMatchFilter() = runTest { + val url = Uri.parse("https://safe.com") + val hostname = url.host!! + val hash = messageDigest.digest(hostname.toByteArray()).joinToString("") { "%02x".format(it) } + val hashPrefix = hash.substring(0, 8) + val filter = Filter(hash, ".*unsafe.*") + + whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(true) + whenever(maliciousSiteRepository.getFilter(hash)).thenReturn(filter) + + val result = realMaliciousSiteProtection.isMalicious(url) {} + + assertEquals(MaliciousSiteProtection.IsMaliciousResult.WAIT_FOR_CONFIRMATION, result) + } + + @Test + fun isMalicious_invokesOnSiteBlockedAsync_whenUrlIsMaliciousAndNeedsToGoToNetwork() = runTest { + val url = Uri.parse("https://malicious.com") + val hostname = url.host!! + val hash = messageDigest.digest(hostname.toByteArray()).joinToString("") { "%02x".format(it) } + val hashPrefix = hash.substring(0, 8) + val filter = Filter(hash, ".*whatever.*") + var onSiteBlockedAsyncCalled = false + + whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(true) + whenever(maliciousSiteRepository.getFilter(hash)).thenReturn(filter) + whenever(maliciousSiteRepository.matches(hashPrefix)) + .thenReturn(listOf(Match(hostname, url.toString(), ".*malicious.*", hash))) + + realMaliciousSiteProtection.isMalicious(url) { + onSiteBlockedAsyncCalled = true + } + + assertTrue(onSiteBlockedAsyncCalled) + } +} From 627c39f59c870c3c36c8c0530f188b9f87df9758 Mon Sep 17 00:00:00 2001 From: Cris Barreiro Date: Thu, 12 Dec 2024 09:52:32 +0100 Subject: [PATCH 2/8] Update logs --- .../impl/data/embedded/MaliciousSiteEmbeddedDataProvider.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/embedded/MaliciousSiteEmbeddedDataProvider.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/embedded/MaliciousSiteEmbeddedDataProvider.kt index 18c4bd7e38d0..0977b2978211 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/embedded/MaliciousSiteEmbeddedDataProvider.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/embedded/MaliciousSiteEmbeddedDataProvider.kt @@ -50,6 +50,7 @@ class RealMaliciousSiteProtectionEmbeddedDataProvider @Inject constructor( val adapter = moshi.adapter(FilterSetResponse::class.java) adapter.fromJson(String(filterSetData)) } catch (e: Exception) { + Timber.d("\uD83D\uDD34 Failed to fetch embedded phishing filter set") null } } @@ -82,7 +83,7 @@ class RealMaliciousSiteProtectionEmbeddedDataProvider @Inject constructor( val adapter = moshi.adapter(HashPrefixResponse::class.java) adapter.fromJson(String(hashPrefixData)) } catch (e: Exception) { - Timber.d("\uD83D\uDD34 Cris: Failed to fetch embedded malware hash prefixes") + Timber.d("\uD83D\uDD34 Failed to fetch embedded malware hash prefixes") null } } From 01ae8d778598fca4f2155a808efd56cc1f2ed751 Mon Sep 17 00:00:00 2001 From: Cris Barreiro Date: Thu, 12 Dec 2024 10:30:09 +0100 Subject: [PATCH 3/8] Do not check for URL concidence in shouldOverride --- .../RealMaliciousSiteBlockerWebViewIntegrationTest.kt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/src/test/java/com/duckduckgo/app/browser/webview/RealMaliciousSiteBlockerWebViewIntegrationTest.kt b/app/src/test/java/com/duckduckgo/app/browser/webview/RealMaliciousSiteBlockerWebViewIntegrationTest.kt index b4141551c217..fca9273dd420 100644 --- a/app/src/test/java/com/duckduckgo/app/browser/webview/RealMaliciousSiteBlockerWebViewIntegrationTest.kt +++ b/app/src/test/java/com/duckduckgo/app/browser/webview/RealMaliciousSiteBlockerWebViewIntegrationTest.kt @@ -129,6 +129,17 @@ class RealMaliciousSiteBlockerWebViewIntegrationTest { assertFalse(result) } + @Test + fun `shouldIntercept returns null when feature is enabled, is malicious, and is mainframe but webView has different host`() = runTest { + whenever(maliciousSiteProtection.isMalicious(any(), any())).thenReturn(MALICIOUS) + val request = mock(WebResourceRequest::class.java) + whenever(request.url).thenReturn(maliciousUri) + whenever(request.isForMainFrame).thenReturn(false) + + val result = testee.shouldIntercept(request, exampleUri) {} + assertNull(result) + } + @Test fun `onPageLoadStarted clears processedUrls`() = runTest { testee.processedUrls.add(exampleUri.toString()) From 60adf85373647dd41d9ac39758091fe24afb0b1c Mon Sep 17 00:00:00 2001 From: Cris Barreiro Date: Fri, 13 Dec 2024 12:00:44 +0100 Subject: [PATCH 4/8] Fix pattern matching to accept "." --- .../impl/domain/RealMaliciousSiteProtection.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt index a93b1392a9f9..51e24c195535 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt @@ -53,7 +53,7 @@ class RealMaliciousSiteProtection @Inject constructor( return IsMaliciousResult.SAFE } maliciousSiteRepository.getFilter(hash)?.let { - if (Pattern.matches(it.regex, url.toString())) { + if (Pattern.compile(it.regex).matcher(url.toString()).find()) { Timber.d("\uD83D\uDFE2 Cris: shouldBlock $url") return IsMaliciousResult.MALICIOUS } @@ -72,7 +72,7 @@ class RealMaliciousSiteProtection @Inject constructor( ): Boolean { val matches = maliciousSiteRepository.matches(hashPrefix) return matches.any { match -> - Pattern.matches(match.regex, url.toString()) && + Pattern.compile(match.regex).matcher(url.toString()).find() && (hostname == match.hostname) && (hash == match.hash) }.also { matched -> From 9f3842cd242d1b73693d0a16285b2c9639921c5b Mon Sep 17 00:00:00 2001 From: Cris Barreiro Date: Mon, 16 Dec 2024 19:39:06 +0100 Subject: [PATCH 5/8] Only send 4 characters to the matches endpoint --- .../domain/RealMaliciousSiteProtection.kt | 2 +- .../src/main/res/raw/phishing_filter_set.json | 470184 ++++++++++++++- .../domain/RealMaliciousSiteProtectionTest.kt | 2 +- 3 files changed, 470185 insertions(+), 3 deletions(-) diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt index 51e24c195535..9440450218f5 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt @@ -70,7 +70,7 @@ class RealMaliciousSiteProtection @Inject constructor( hostname: String, hash: String, ): Boolean { - val matches = maliciousSiteRepository.matches(hashPrefix) + val matches = maliciousSiteRepository.matches(hashPrefix.substring(0, 4)) return matches.any { match -> Pattern.compile(match.regex).matcher(url.toString()).find() && (hostname == match.hostname) && diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/res/raw/phishing_filter_set.json b/malicious-site-protection/malicious-site-protection-impl/src/main/res/raw/phishing_filter_set.json index 2cc874fc6f31..e3912daff168 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/res/raw/phishing_filter_set.json +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/res/raw/phishing_filter_set.json @@ -1 +1,470183 @@ -{"insert":[{"hash":"71c32e04b288fe7ce1cdc6235ce50466869c9a05a9331d4b8bcff9986c785836","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"8810677bbd077b6c65662f873fd27fc87a209a1c532cd969c6478a0c1126a725","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+suataxa(?:[\\/\\\\]+|\\?|$)"},{"hash":"8810677bbd077b6c65662f873fd27fc87a209a1c532cd969c6478a0c1126a725","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t(?:[\\/\\\\]+|\\?|$)"},{"hash":"8810677bbd077b6c65662f873fd27fc87a209a1c532cd969c6478a0c1126a725","regex":"."},{"hash":"29993d444cab1afbfe77f11c760044a260fd70d7b59f55f2a0831ff022229f3a","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"c913826b147f1b4e79d45c781f415cf0a50ce0da818e0483703d2a50fcd75470","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"1d9437d4740fafd155d4db431d00e3e56f6c08adbef6801c25b832421b7c526b","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"5ecfadce5475c67e51c2acd58e4ab2a637afa12b126835290d89b47ff7ddc120","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"45ec513284e27631f71062005dac6b30355269c569d0c9781a0a6bc5c3467a52","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"41c62501cbef65f1f74dcc017496f1d3d93085b0682fdbbefeacb44a4e5d9102","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"a0c056cfee5cce3d2fe279f84a6981ae798c19256bee71df36d2ebf45d219398","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"0f58e52bcda682e358347e2b77796f7375cbfa7c4a39115ad955436d145de2ea","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"a5d6a5d17fe1f029947d48f5e63cf74e1b4e4c343b5b95ec34c4546380765dab","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"c478c0e7efc2861d5d591e23c582a26e3b9297238223ca5617a034bc46fe8ef2","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"4e8e7b9b69276b3d8d4afe197bb81417a232c1bd2be655df1f36aa39604cdf70","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"d2bd4ce56fde839910151774ed30452e81a7cfca95b21d4b4fb8c9f28e340f92","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"d0c5ab3c10153cf4aae6ffd37c90a16adc0f89fe64e9be7e4597233c6047343f","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"df1ceba19bb3404341554c1e1abfec1dcc50acbd5adb5a849ea23b0e801d6734","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|\\?|$)"},{"hash":"cc9f82a934c795d8dc4673519a5a0ec55713989073abc6b9463b55b5c83b3778","regex":"."},{"hash":"151a975ab7e42864d66fe447f5effdfdf5cc695268a0c1a4bfdae9ef67c12d5f","regex":"."},{"hash":"ce3d383e92f073330c9b46e941ed6669d011190268171761b6fe06b92cbf8b2f","regex":"."},{"hash":"33b8494326deb9bc4973e90222a75230cee31a667f146c54c6a78937edd7ab6e","regex":"."},{"hash":"57a2105fc6fe40925cba805961dabe6f01f36813aae7fefcd4343cd8b1041a8c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b\\.resolvers\\.level3\\.net[\\/\\\\]+www\\-reddit\\.com"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"33605d19aadc7acb3872b1d2a588809e01ac10c664a0c6efcd10a3691623035f","regex":"."},{"hash":"a96f76ed5c641e4b51076a9fdc4fea07b59b1ebff4b008469855bfb9e216067d","regex":"."},{"hash":"9dd86cca2f919f81a2207b0cc1790cc01d576e46261f61a7d537279c8c6ee8ab","regex":"(?i)^https?\\:\\/\\/postvert\\.pics(?:\\:(?:80|443))?[\\/\\\\]+se(?:\\?|$)"},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?CC\\=1\\&bn\\=35405429\\;cpdir\\=https\\%3A\\%2F\\%2Fcontabilidadenovostempos\\.com\\.br[\\/\\\\]+rdt[\\/\\\\]+\\?va\\=admin\\@staff\\.uni\\-marburg\\.de$"},{"hash":"999670d971e47802838945935176fdd44550725ec643ad076b2e7c02c201b150","regex":"."},{"hash":"b2e0b6113e2dfea9b68e2a73a82a2a210d0abcae677a75c37b62e936c4ad50cf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)"},{"hash":"b2e0b6113e2dfea9b68e2a73a82a2a210d0abcae677a75c37b62e936c4ad50cf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=hJ13J478k5u6OMHDzJPRCoES7FmHB7NYHR_PRRc_kXg\\-1736277292\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"3aeba9f1ae2163f1c81459bd2195bbbb53c93109357710cb73aba20994356371","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0994c8039d6d5e2e7629cc99c62c282c0259e6b0b304dd7db5345d5111f2222b","regex":"(?i)^https?\\:\\/\\/shaw\\-106277\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sports2\\.html"},{"hash":"94d782df9dac8b5fbd5db52486a7ba2c3341f0ae4817f64b482ca368c803489e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"94d782df9dac8b5fbd5db52486a7ba2c3341f0ae4817f64b482ca368c803489e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=\\.gRAA_KmW5gYLi_1_MJhHNvPQne1Pa364ltYf_am374\\-1736277404\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"f71109da1ffe69aa55528fb6a256719e9af2e552afbf1272fed7a7b20763e9e7","regex":"."},{"hash":"96a6cf5bb93afa071fc2c891335c0ea2cb4e0ed19c1e1683fa02fa5b8d981830","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywwm\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"2af794d23236548d46924e040ded311ff5cc4efbbcda71978753cb656d00d8a1","regex":"(?i)^https?\\:\\/\\/bafybeiejwl6qpco566kov5bx32f3xm7mn7jtuccolhm52rlvfxscclgeba\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"32db8b744c17a5347fdc6deb911278030b3ed2c36c3561f4308ee5ad9144940b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"a0c63e4868724a4c6d780193acaa28a3f576e1038c478568b3d8e3843ca32fdc","regex":"."},{"hash":"552c1208e2dae4a295b6e18dd612855cfe2d9ddbc77d0c6896dbf16c17061f1f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+glft[\\/\\\\]+991782(?:\\?|$)"},{"hash":"32db8b744c17a5347fdc6deb911278030b3ed2c36c3561f4308ee5ad9144940b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=Vfj1KSjMRfxHnXsezwBqc51JxiXsj1J1T13g6_O8PHw\\-1736277650\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sports\\-updated\\.html"},{"hash":"57a2105fc6fe40925cba805961dabe6f01f36813aae7fefcd4343cd8b1041a8c","regex":"(?i)^https?\\:\\/\\/146\\-70\\-233\\-27\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]*\\?CC\\=1\\&bn\\=35405429\\;cpdir\\=https\\:[\\/\\\\]+contabilidadenovostempos\\.com\\.br[\\/\\\\]+rdt[\\/\\\\]+\\?va\\=$"},{"hash":"92fbb9fa38b12e43027a087b41ba90d649422623d821f1b253f3cfdd10c79fd8","regex":"."},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]*\\?bn\\=35405429\\;cpdir\\=https\\:[\\/\\\\]+contabilidadenovostempos\\.com\\.br[\\/\\\\]+rdt[\\/\\\\]+\\?va\\=$"},{"hash":"a1a3d7559625fb18d437728c32b75625ed37d261e8a3732fb1f75d1c22e8744d","regex":"."},{"hash":"20ea193c5e5b6f34d3034b3bce22e44e8534073dc04329e4cc45744464012805","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cbc385fc6e9e89a8d95df2d161aaaf0b8789375b2238f5bfcfead8a7c5e65250","regex":"(?i)^https?\\:\\/\\/hello\\-world\\-ancient\\-bar\\-5ec3\\.hsmith6897\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"2fba6b71b0969c98444f0c2d21b178eabb2fba7c36660bb321efc158298aff91","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register62899(?:\\?|$)"},{"hash":"313ec5de9920b0d905737102fb12543512dd5c78911fd71b0a25fed712db4665","regex":"."},{"hash":"2fba6b71b0969c98444f0c2d21b178eabb2fba7c36660bb321efc158298aff91","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register62899(?:[\\/\\\\]+|\\?|$)"},{"hash":"054d3902e04acecaa28601944b6fff573bbdefbb1067798da8c8403b0bcce8d4","regex":"."},{"hash":"5a20151bf9a1a14908d7c233cb70334ca0f28c31445ec56695cfc4064c8b6bdf","regex":"."},{"hash":"0ab00c5cca415737fc5b644317f463e948b4766a7dc4110d45f29276b15fa15f","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"7bd1aa8f2fbd0cfc22da0461e8c3506e6ff744c4e616819f3fbb7c74db073214","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"fbf888e20ec258b7b8fddfa2d5540d981e3279a7341736e2eb4c563c89fe5326","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"bb220e2cc3c9a058b9fe5e1715e6ede53ebe5162ca5f9cca179608caa4bd48cc","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"855fe8b93217a83e0342db401004fde76f4c1d2111394cbf521add35676d1c79","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"7afb9c112cc39be3e91300790a1ad93ac81bae6a4e9675983c8fcb20b9d5adc1","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"e24113b00d9712605d41406b412e26ca26b8f66974667f4af706103a9de00dd4","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?"},{"hash":"d67b0263ffb2b4d07c3e07c991fa6a50d8883d10bf0fb81f1fab0069af701a64","regex":"."},{"hash":"128b0ecaf47fc455fada9d50dbc469b06acae76e66d268ad126683feb269e4eb","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"0fd5120d0ab51d040b5a1b83bc51d12190dcc2029aa05a34752ee7ef28468de8","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"7fd71e7b49d1c4f5c90cf08bd29aec85a721e894107c245e763f75e4b9c4dbdc","regex":"(?i)^https?\\:\\/\\/roblooss\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?"},{"hash":"4edbf3a1bef1c74bf9982f1b884a95a238c1b90b34cacfa593c4f52d74588657","regex":"(?i)^https?\\:\\/\\/roblooss\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"b13850796b1f07246af2dfb63199f69277cfa711cad7f07649b50407abba9af2","regex":"(?i)^https?\\:\\/\\/roblooss\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"7490190c863facfb8e0660bc10325cfe95cf7096acd2d98cf70324d08cdc5ab4","regex":"(?i)^https?\\:\\/\\/roblooss\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"7525da818737c98013b3807431796f02b82c97a7815c5288a50430f6508882c1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+catalog[\\/\\\\]+20(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c478117fa82ef55936c3e723da2dfce0bd96902dce5b28e03e448ca4a8548498","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register58576(?:\\?|$)"},{"hash":"96a6cf5bb93afa071fc2c891335c0ea2cb4e0ed19c1e1683fa02fa5b8d981830","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"6faae37510623946f0966925c5accfea59440345e1e95fb5260afc790bd72ca3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)"},{"hash":"c478117fa82ef55936c3e723da2dfce0bd96902dce5b28e03e448ca4a8548498","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)"},{"hash":"5287265e644d475bc7dd4b423a05f07e2b276c072dd8d45ce42e1fd4cbee7f01","regex":"."},{"hash":"c478117fa82ef55936c3e723da2dfce0bd96902dce5b28e03e448ca4a8548498","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register58576(?:[\\/\\\\]+|\\?|$)"},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?bn\\=35405429\\;cpdir\\=https\\:[\\/\\\\]+skinkaanti\\.in[\\/\\\\]+max[\\/\\\\]+index\\.html$"},{"hash":"c478117fa82ef55936c3e723da2dfce0bd96902dce5b28e03e448ca4a8548498","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0da36c6aed9bfbe658c1d236528c396509932080ad1175f83375d12a9459996f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home(?:[\\/\\\\]+|\\?|$)"},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?CC\\=1\\&bn\\=35405429\\;cpdir\\=https\\:[\\/\\\\]+skinkaanti\\.in[\\/\\\\]+max[\\/\\\\]+index\\.html$"},{"hash":"ff2dc12b34b4b738ad52f8ffc521ba0e65a5683cab8f08e7f90939fee5b30891","regex":"(?i)^https?\\:\\/\\/hello\\-world\\-patient\\-scene\\-f24a\\.antonio\\-cabral\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"2dc5d3f3bff358b99e6c4e2e6027218d553b2d9c56d850f2c65ccd9a3eadecd3","regex":"."},{"hash":"871ee1a518ccfdb53bba774e6a12153260a763b1c20b5072c980580b546c2fb6","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"ae1201bfe3346055239bbc4b60b6e50983b81e98a7d9eed8a3aad172448ab19d","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"ac2ef514f2e0371b005d32d793b1a099be9894080d88f421869415f234821a67","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"ffddbd6c795e36c420efa4e473a0dd33f5327cf88f42c412ffd98b63cce7a390","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"8236ea9678d2a1533263e172bb41088406540ac7665628bc5146638d2a883600","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"3f67925bdb5d6c7a0c4f9da9d75b74098b36993ffcafcc74af0880e24658194c","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0ef153d133807866c24f6d5ddd11b8336be219d0f8b728d8043f1dae72af1dd2","regex":"."},{"hash":"41f7648cb22a3828a29a8c3e553a5af60ca90f48a81f96f66f1c3a2bd4499243","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"183e0e728ac490a330d54c946ee068f0e6000ae4d8bfdae199a87b87224b986d","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"d86cc4ed8d5c868c92c7455a6a1872c51513466ad2de1679432a304a4ac8067c","regex":"."},{"hash":"3484ad0cb53c3c1a4843784ee71fe9faaf7f38b995928ec51c5b84453f978a30","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"7b5dbefd156d93b6a3d99db6faf3c2f97611ff7a2985b613412338c1556abd06","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"2ff092b063ee898a0f6def28ecd483a8d31ec1980b2fe2ea4a2ff36f3d201f16","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"003344e76adf4beecc4e8df004a876474533a8bff3d4f5976a88bc5e149342c8","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"25a541d9665197f3d1d9645e51fc05c523ec305fedcec23a946ad448065a50c6","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"1edb7feb72d8c05d907dddd77bf3bcd3217bae312c646151b678a65ec5d67662","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"5c48aa1af39f89d0e2c7fd611c2002290f8cfd03711cd21f95dd3d395bc68486","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"4f72edadcbcfd374456b5bc19bf576ec45d1b60e3cb179481ea071012a9708f1","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"9fea86c84b99c5b32dcabe577c389c28f87496d964fedbc9944ef4ae20d26297","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"bc34b12fa589856b092f8433925212224a895db10e8d5322969d0872632b74a2","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"4a990b3a195ee12362869805b487d3655c2c6407bed2a314991d4cad40916562","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"8bde745ff69b4a46e33ce9219586dab6fd40558c5bc15bb9bee3fb16f907ae5a","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"465c403ba3670ed559d42697e90940893e657555d276112794044d59bca9932f","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"96820062fc477eba098e03ff58b1dd570058f6b2a180d147279d65f3d1b3ec41","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"6359dcc227ab5bb35668fcc732f99ea3fc665b9112fffe009fb571a8f168ccd6","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"c901a3768380adc5314baabf6412187448540ee6f67e73a963fced27337906ae","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"cf74525adf750f9e4e72e447ce15418098465f4b19df029494f0ae17ea010d51","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"94d74f9d888a7251f0b69152a65a56715e36f87ab63aff6595b377eaf25c47ed","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"7c817285ad268405a29e5bf196db0b8363f81e74155e065b24e94fbec16effdb","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"226bcc6a85c5d1aeab805a702845dbe183fc393080cccb67f83881ff32862e6e","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"14f2cbd6319d400badb803bf2d23fd974eb94a64614b5041a2806f260d3236c7","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"c458e08143180ef271515a7611b9ebc5d74b42c84b51c641ea523212cd98817c","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"72e9d8fa55f996eb31c6f49ec35aa793051acc8ff0601034d5c1f5a5d8a51435","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"63d6b2e54422f294351824791212d2f11cf72eebe8889965ddc51a9705e25e83","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"664e5b2ea4b2f665541288825745b5e8c46a0f3a5d95c606d9e6c6cbfa58e380","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"90e1c1eaed55c8228949dea549263ae66a6b57503dbffd8befcf3c2dc4e317c3","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"88ff8f1c8b22a776398f5cdebb003e755530cb9d1e1b1591fd5bf3807f035ff6","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"97473f02e0d19f1fa3ab5677055247f92ce406a58c27a2c5414609e12b8dacf7","regex":"(?i)^https?\\:\\/\\/sign\\-in\\-att\\-109300\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"228373b2b0de67f97e2a913b3f8b815e7874dca038e2a2327b6459d7e26c9a54","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"9947ab4951683d460f58169be461d98fdf7ede2d8a87c0121fb352a7ce7f8348","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"3a2456ed80ce495dc1b081b5baa3759071162a0e535031d39b4327bdeb92b46b","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"5b841990fafc7a5b01ded04a4b16b6ae9f08ce325f61118efec5bb8c361215bf","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"ecbec8d76340f2de0e7ab0c2adf283b08eff2f0712ec66951c8600342d22dc24","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"979749df4c7b50e87eae3b341da2a55241d3babe2b7b2be6182a8e33e6f5f221","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"ea500c610dcf8d41912e986400f0cc361fe5db8b6d4c9b47d41af54406f16b0c","regex":"(?i)^https?\\:\\/\\/home\\-105055\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"e0c688f55f96edd7d93d907e836a597cec7ea19f8a5e329f9636816d71b7684d","regex":"."},{"hash":"1443c50f66b15e091b8c4ed86cdafd06c825853adb16cf196c4735e051a1e124","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f34a537f93ecc47b252dacbc61f94feb95cb65cbd381bb6d40fb9852c997db8f","regex":"(?i)^https?\\:\\/\\/qwer\\.ahgdkjaggfgdrfkjh\\.icu(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)"},{"hash":"85fc98cd0e244ce602fce3255a3cd04f3d71501a6371bc49ed41f9e037a4f4ed","regex":"."},{"hash":"a66edf336e13e86bc8aa790f6f0b7e962908d6670c678b1ca5f7c13b37c32e41","regex":"."},{"hash":"b4647fba8da5b4ebded84a296986934e05021cafa4dfb114a82f4fb0cee67dfa","regex":"."},{"hash":"0df4ccaa0719bcf8073e52873ca9f5b4644f6d81e46ee0c45dd990c07473273d","regex":"(?i)^https?\\:\\/\\/self\\-mst\\-login\\-mfa\\-365\\-authenticator\\.softr\\.app(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"31e22226fbc7ce6f143c8c8deb8b94c393ccb43c5bf6202b0e9954f423bd9998","regex":"."},{"hash":"0b35f05e53fa93fb700be54d2fc5889065508e9e0910a51f4a11ea6d8db5b58d","regex":"."},{"hash":"9aaef1f3b8abbdb8b649503d6e9fc105c2f92b010ee81b713446e4dfa3259561","regex":"."},{"hash":"59b65b1f29f6f8d8a0fddae6a1daa576784bae05dfa2a01ada9b295042252de0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"61d956e88ea7f3f3de29840798246bf8d66222a09a1bb2761e34d58e5ca4f67a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+personal"},{"hash":"c6cfa4f8d711124667652b44b13f76aefb08325810878d98e20bef35ced4884e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login"},{"hash":"7b1bf9ae22fa7299aae86a2f53d51ee30eda2586894f686df3798f6d3b3b9f1e","regex":"(?i)^https?\\:\\/\\/2s\\.gg(?:\\:(?:80|443))?[\\/\\\\]+XdY(?:\\?|$)"},{"hash":"531a6eb80ebb5c932c6966a996fdbac0da44dc2bc37005347ce78eed48c11a46","regex":"."},{"hash":"452a9601afecbdd54e980e333ea114fc2819368122821c794a3feae31e2d7485","regex":"(?i)^https?\\:\\/\\/falling\\-fire\\-5746\\.litaka105\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9fb08712ec116a5f09ec481f8cc59d7c7114825920a72dec3b588f39da72260b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+newleeg\\.php(?:[\\/\\\\]+|\\?|$)"},{"hash":"4fbfa885cd0f686949ded20e795f720f42301f087a02ca2fc2bedaa375671f40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+receive[\\/\\\\]+order[\\/\\\\]+pF9GD1jUHpm(?:[\\/\\\\]+|\\?|$)"},{"hash":"616e708a7195c4e40b0a58774dab6af874f8680b2133150eaa8e07176541a74f","regex":"(?i)^https?\\:\\/\\/matchless\\-buzzard\\-16db16\\.instawp\\.xyz(?:\\:(?:80|443))?"},{"hash":"d0b96ed9d1019fd85bc9e30759811b586e32c647bf1497d79c3fb036c4110d41","regex":"(?i)^https?\\:\\/\\/dfdfg\\.nfufywiomruf\\.top(?:\\:(?:80|443))?[\\/\\\\]+fir(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8a22fca65f5944bcc68f47c7156bd6134e26a1d60b82ed450b91c05b22b172c8","regex":"."},{"hash":"008dc1bde3cc246f57e9481989a27dec1f0223009f9e2bd2b1fa4ae60dad9be8","regex":"."},{"hash":"14766e46bb3a35d921b890c0081cceb88ce88b85bde49f3131caca345cd69596","regex":"."},{"hash":"9ad57785740dc8be10576fc3232b4ebfc7a65e6c4fd422dd4c774738c4df191a","regex":"(?i)^https?\\:\\/\\/w\\-updatei\\.top(?:\\:(?:80|443))?[\\/\\\\]+uk(?:\\?|$)"},{"hash":"2fbaa02418cc993659d75bff9707f0afab851a73fb821b509591d8f29a469bff","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+trr(?:[\\/\\\\]+|\\?|$)"},{"hash":"72bce900f93eff57712395937fd7fec5565e54550cd0b2ec5aed3a5317c729fe","regex":"(?i)^https?\\:\\/\\/attt\\-109033\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"9ad57785740dc8be10576fc3232b4ebfc7a65e6c4fd422dd4c774738c4df191a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e0ec908abc16f274e4a9f368f3e90742b18de1c4b551d7f1fb2463a883ff9fb5","regex":"."},{"hash":"7ea0317a3545c96bb76b76b82457bc8b0e0d90a9c23ae2dfc181f82561344afb","regex":"(?i)^https?\\:\\/\\/8635345her524h5k4dd8305d3b0d52a2616\\-dot\\-rising\\-study\\-290821\\.df\\.r\\.appspot\\.com(?:\\:(?:80|443))?"},{"hash":"787b780f9ef12f3a873879993e2d55f710315716ddac29b90fde779ab4539292","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"295f4988d6238f9dd5754b1bcb08557570d892fc873286b742707b2fa6593d74","regex":"."},{"hash":"81333c4f830842045a295efbbdfd86b182a4fcd6eb507486bc47f6a7ad3b529e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=1blacksea\\%40abusix\\.invalid$"},{"hash":"75c81913351d5c780316d21044bf546160a6fa93ae1f7ab31dee7b0b26744c45","regex":"(?i)^https?\\:\\/\\/jak\\-0019\\.jdwe\\.info(?:\\:(?:80|443))?[\\/\\\\]+chat(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"142019e8b2399c306f9826f9fbc6b48d7fd701ef7f756e42ae1c66c31891e985","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cid\\=506247$"},{"hash":"4b818b53ce20993be8408bbf4bdf07062f9e20c244256ef06767720d5a5081db","regex":"(?i)^https?\\:\\/\\/support\\-feedback\\-ae587\\.firebaseapp\\.com(?:\\:(?:80|443))?"},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=1$"},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=7$"},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=5$"},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=2$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"75c81913351d5c780316d21044bf546160a6fa93ae1f7ab31dee7b0b26744c45","regex":"."},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN(?:\\?|$)"},{"hash":"2d2dbd1a27ba092efb9c4f636bc36b332e3027453f5a4e84efaada5be4c56909","regex":"(?i)^https?\\:\\/\\/dg\\-64h\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e4b6d586baf050acf310489138810330e78321c7e3c10d1db99178e91d288c2b","regex":"."},{"hash":"07b1a9e2a95ee43dde1e9597b2b1e8cc059a49551e9d05dda74801b00bf67ed9","regex":"(?i)^https?\\:\\/\\/fitakha\\.tkj1mutuharjo\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"abb00840496f5fc282e73eb77f19ebb01c86a103e356bed0ed6bd6ac84e09e06","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"72e89c5a23e6c82e406f9ab5274b630b9a3efddf8e24206dda195ad33af3b6e6","regex":"."},{"hash":"7bffd4c67a06484c0744611b667b73f68cd09634274309dfbf9d6c476362d2f4","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"af51da9e897cdd5189d7a14ca84a82ca04656afd13f98c8e7d9484ce9f620d36","regex":"(?i)^https?\\:\\/\\/login\\-screen\\-104887\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"b3802d1af88ddbb71b75fb3f03bb4cff6a2848cdb9c1bf3134d788620dfab6cf","regex":"."},{"hash":"fb020a702fc04465c03cc3d803805ee52851385795f223015bf66ef06a2e894b","regex":"(?i)^https?\\:\\/\\/qwer\\.esdfdgfsdaw\\.store(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a8a9586decde21d3dd31738c1ebc3fced27aa1c5f6ea3dd3278bfbbf12ef0759","regex":"(?i)^https?\\:\\/\\/att3234\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"80dd8e182ee3334c674ef8612ff107696e334f372f749b1f466f2d5cdc27820b","regex":"."},{"hash":"90719239162e6fa3e71106b569da578b1f7cda637536fc8a139b72b3a2c74115","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+29603945(?:\\?|$)"},{"hash":"f5f5dbb883ad2b9b8cb8b1caa1ab54f2fbb23660096af30dde5f6ebd2713aaf6","regex":"(?i)^https?\\:\\/\\/usps\\-trackmk\\.xin(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)"},{"hash":"a4cb491d38698905f4b728bb18c007e3dff44bb24419eca1062cfef20b1148e3","regex":"(?i)^https?\\:\\/\\/usps\\-trackmz\\.xin(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)"},{"hash":"e64bf243e5d9bfa6e12d4795a346eabbee325b3a5a3e657f904a1a1a1f7c36b0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"61c3cd9bed1e2e36f1b470342828febe967215b9c610ece819c88d6cec149a56","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b66a59c3794471abb3137d917333fa13cb8bd17c72d26d745813303397ea6be1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?m\\=1$"},{"hash":"b66a59c3794471abb3137d917333fa13cb8bd17c72d26d745813303397ea6be1","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cd500394e8ec786f0e67d92bf94696bad957b53b2adc4e57a564aefcd2ecf9b8","regex":"."},{"hash":"b0b152631e63f948cc0c8c01f15c84f52971e74d50e1b371674689589d4c7609","regex":"."},{"hash":"bd14124e0fbf46d3a82c5c9fc728eb9a35f6c3b7d66d84e736afc195e9fdf71d","regex":"(?i)^https?\\:\\/\\/informed\\.updateiasdjhydw\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9aae9156f0924c2a02e4417f576571781c3b91954338b4f20f6158b3b8872976","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+main\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0662fb6ca39f6024d225b960b69715f1017d7ff296498299c6c8f18b05ec1e8f","regex":"(?i)^https?\\:\\/\\/postas\\-tasks\\.top(?:\\:(?:80|443))?[\\/\\\\]+sk(?:\\?|$)"},{"hash":"9dfe52e1fd8f2fad56d075744174ca9d55b8f3b48fed965a34226a673abf17a8","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"972f1f2ad4093389b0ed5502bc36294db71dfd62827f28aadd1239d28e406bc3","regex":"."},{"hash":"f5f5dbb883ad2b9b8cb8b1caa1ab54f2fbb23660096af30dde5f6ebd2713aaf6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"19bc0c4ead3a01b0007f012955a032ccc62281c4a483afbef78492d73f54f7f9","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"4392f69547ba5f457d4141d630282c1a430cf1465af594c5ef4a82000785142d","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"f929b65cf939555fe4d70e0662f74b76473ce3a06da5bb30e3e921409fad5f43","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"03a22a78824bf0e8e172a45b0629abfaba65ae251bbeded149d50351018c5292","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"3a7cfd2d8d44fa53ed6c77ddc384dc7f5f27da06b70ba0885af47597529651c1","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"5fee057c3050cd75b67a2410980064a7dadaa80f33f93c88bd88da23d9f4bf60","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"acb769a3804ecc3cac4923b27f707860b0fe1987816a63860f094613f4f0b4fa","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"a916ca0ae2df81bba073fb8c1da5973416a42a5b2cd960065f0566a6296e13bd","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"0faee87df0b21e05543fd24aef6dcfb9facfae0d7e52db7dd2dc32bc5454a8d3","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"704955834c150fba408b489320d8e75316533e52ed7fff41b9703700527475a7","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c8eaa8e2162b515fce329f396d9c6b5b7454dc404523e449e3d7a3b0f89eed3d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a4cb491d38698905f4b728bb18c007e3dff44bb24419eca1062cfef20b1148e3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"b28c76ebe6e99bdf2168b1bb859851cdcd37f2704588f52dddb8f62e80fcb3e7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+drucken[\\/\\\\]+credit\\-agricole\\%2022\\-09\\-2024"},{"hash":"c39785e98c55800e06d6e974bfc0bbff6d20871773eca09c39174bee77fcb6b6","regex":"."},{"hash":"ffd473d2d51aee17e1e67a5f5bb0728682ce1b6c8447ad310e02ff2f96e41bfe","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"ffd473d2d51aee17e1e67a5f5bb0728682ce1b6c8447ad310e02ff2f96e41bfe","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=kg7_KI2N8TT6Nyg62OvKWqFhQMtfH3arTura8Pw\\.QbQ\\-1736287461\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"5c1eb996e48a70a3abe1f6c8f66b361316c37ba66d4bba698ff6b447a1e2c826","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"5c1eb996e48a70a3abe1f6c8f66b361316c37ba66d4bba698ff6b447a1e2c826","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=nI\\.Xgyajp1nYaWrege\\.he0auc49f3Zkc7TcMyKDqE_A\\-1736287448\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"5ccfaa924e25d0091460ac0b78413f451d8c9f600eaa3c2f2dd91dd468d6cc50","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+P792q8T\\?utm_campaign\\=AA(?:\\ |\\%20|\\+)+[\\/\\\\]+(?:\\ |\\%20|\\+)+CH(?:\\ |\\%20|\\+)+[\\/\\\\]+(?:\\ |\\%20|\\+)+H\\&M(?:\\ |\\%20|\\+)+[\\/\\\\]+(?:\\ |\\%20|\\+)+2745(?:\\ |\\%20|\\+)+cbo\\&adset_name\\=adset5\\-2\\&ad_name\\=c5\\-2\\&px\\=1246473213320532\\&c\\=5\\&fbclid\\=PAZXh0bgNhZW0BMABhZGlkAasXchAopzIBplgvRD2ny\\-rbf7XwX_bQ0mk6Q4FJ7gOSKGW72FYarSQ3CXqMqQOG\\-jzmlA_aem_UYnjpMLo1wOEWvfG07DX1Q$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1f8a031b5548d2773f2890ca2767e0f28a3d2813333b6f185b17e9d7f49aa4a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"1f8a031b5548d2773f2890ca2767e0f28a3d2813333b6f185b17e9d7f49aa4a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=iPUYoyYYEDL9aZL3H9ayP\\.R5B1OR7FpGpLZI2K3nZ_A\\-1736287963\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"269c1a23d97dee37e46b6741e0fe44c2861374598213bcc5112fc86469610853","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b8977684c65202a24825e031cf7698b8015c371daf7d1ebe2393dc943f868453","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard"},{"hash":"bf2a269788e7c4e1021a705191bda4c023aa50c517e0cd6dd326f51a054df4e5","regex":"."},{"hash":"8c88238b2c4c2ea7ee3072ad838b8015dbdb0502cc4ac0763f7af02f2833d6ba","regex":"."},{"hash":"5ccfaa924e25d0091460ac0b78413f451d8c9f600eaa3c2f2dd91dd468d6cc50","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+P792q8T(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"60bddfb11f055ed3eb900304108689f84cffc5b755622de7c2a5a2469c018787","regex":"."},{"hash":"8d7ba347b8d3dd5b2a964911783cf4ea933c9605d21cbf65c83b5aafa5336040","regex":"(?i)^https?\\:\\/\\/canadapostpostcanadahu\\.top(?:\\:(?:80|443))?[\\/\\\\]+ca(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=don\\%40mactraining\\.com$"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=awartany\\%40emirates\\.net$"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=fexfusfaurf\\%40goldwarez\\.org$"},{"hash":"86c26148e7272fee23f2bcbcf8401c0cc99a15423e6ae6e80f85b41f73ab51f2","regex":"(?i)^https?\\:\\/\\/home\\-102037\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"130509fd185b3cf508f5fd08abdf8978b6288f3d065ae9c4288998978e46d615","regex":"(?i)^https?\\:\\/\\/bhautikr2409\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"8d7ba347b8d3dd5b2a964911783cf4ea933c9605d21cbf65c83b5aafa5336040","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)"},{"hash":"0662fb6ca39f6024d225b960b69715f1017d7ff296498299c6c8f18b05ec1e8f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sk(?:[\\/\\\\]+|\\?|$)"},{"hash":"1e9c24303ec503eab902d6c3d16ab916e4fc9815a31f309275cff9dca5abf900","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"8da654c74194b0cca3ea854f9c68fed02fb136bea7e89cbe9a74fae439d30ef4","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywux\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b649e47e91610f0fe9062586aebe1ea20ccd775515805bdb77c94686916b6dcb","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1"},{"hash":"e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ofh4ec(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=amreetco\\%40emirates\\.net$"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=1ajooba1\\%40emirates\\.net$"},{"hash":"55ac84b7c5eb03dc334c7ccab8059ba3a6c7e9cc5e04db0d3c200041fd08455d","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"4fbf0614423052f06777fbd3235225a02fc8cf6f442e3c75e8b992bab013195f","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"46ce25a1782c0c8a45fa46949d263dd984143aea77289dd3f5464e1246da63c7","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"bb735d3e52f73113b7f13161871f3cbeb0ab4c435edf53eb7f887cc39352a780","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"60425d5aad0d20c32d4ad615531c8fd436b67f5c3a089e8200043bb196fa470b","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"25f370dda5403475f9ae21e4e0d2412dfeb1d9d0b72a71108c4230ec8acd3e71","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"3515b61d988c0f0c77b3ca1b6e437592aac4d5b0b1443b772343dcdb6ef259fd","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"15e269f7402cc1c8d0f69ed6fcbb1d2e331adfbe999c4ca66f2d2a937a6ac56c","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"14013990d0d84267155b2664133de2f20d72baa7b71a995b699cacf4b6e30248","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"7732ca78a767fc3d8563ec651d16ea7a8e75344036cfc90ecc878e584dd00736","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"1caf8a9a34e377feea1ab604ef3c677987fc590f5e904b1d8a65c8c00bbf229d","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8da654c74194b0cca3ea854f9c68fed02fb136bea7e89cbe9a74fae439d30ef4","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"448bad510d92c68ab24eb3133384db89909fb895fc757a68d7deec97bf8c0087","regex":"."},{"hash":"711e6a84437d02afe31930b61ecdc98397e7f2a5b1489ec930cd6afb8805c6de","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes[\\/\\\\]+fonts[\\/\\\\]+suqhemol[\\/\\\\]+reenhouse\\.php(?:\\?|$)"},{"hash":"f66f777a33835768c082a4baca9755ca244287f1da9f6da96d18448393179199","regex":"."},{"hash":"28de51fd0f3fe2e76e7ac64ff7d737b8443697a8f98cb31e54c9259745ffb4d9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"16290d5f9aef01be6768cbee30247d37fb09b12573aa8a505cf769c0b4247598","regex":"."},{"hash":"2082a176d669ba1dab774435d2ddcab1236ffd0ba95d9e18c8a880292d703f92","regex":"."},{"hash":"403eda995fa117a300ba786955b5ea3ff4963eb59939f8f357c33b4457db217d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+juno\\-\\-\\-server"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8331611de8279c31bf6a346f5b072aaca9d18f076932a0f2f00f0047f388a288","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mxm(?:[\\/\\\\]+|\\?|$)"},{"hash":"49571a6d729cb9f864fde32382297fe126a6a0f75de009f1c850f91a2bbe26dd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+47825225045812659886XG3UUL3HL1Y9M5C074RBV1\\?XPVNRIRFLQMUKFCYKTQZT635599807658551988WLY7VWL1XFLA2CTMNYVYFIJ8"},{"hash":"6cf0c9dad6e4d761eacb78a9f8ccfa67d202c87e20da6bbe9e8d22a9a5e94347","regex":"."},{"hash":"41c66e992e905df2c3c58c454afc5e3461ea535f5a32cc348a2b660b985bfbe8","regex":"(?i)^https?\\:\\/\\/hello\\-world\\-icy\\-pine\\-f805\\.dinsdalelawrence\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"24e9c8243f03b28382e260d209aea821bdf9dad20cd11554ebcf04535bb31441","regex":"(?i)^https?\\:\\/\\/informed\\.deliverybat\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"a88b264c36c50400f39894cf3546be52f8d987b8906fcb070c1c703f7ead7a81","regex":"(?i)^https?\\:\\/\\/a\\-updatee\\.top(?:\\:(?:80|443))?[\\/\\\\]+uk(?:\\?|$)"},{"hash":"a4c66cb551abf94f36d432b25aec3d7ce7ea4418d29ce17244b8004403b37a0d","regex":"(?i)^https?\\:\\/\\/ubcdefghij\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1ea159a246255df3683e7404bc50103570c87d98703b6665e5de358ff16eae18","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"ecb5fe725ae95028a7d9c5f817f3e6af4879e25cea84d3da6f601079bc455bdd","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"ce48c22995158981ea24ca545b998b752028405732fc76bd9df18c93b0329d98","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"226b0c9b82cf6472dbda5d8be85bd4b5a34d54d0c3682b1109ed14e4908d01d0","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"ce164365dd3979c0c27f44620a6fa7ea89b10617fb31b7df224296dae1b94c9c","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"9c537031ca8b90a1cd9029083e92ecd1b2319665b1d59c58f3587fe7cc5c92ae","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"8f301cc2edfce2becd47b548451645161bc2c2a0d76e486e795113ece4eaf889","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"4f2b95b228183a6070b2f853f6ac46cb35ed7714db8c2a6ff04b056fdc207754","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"727a63d5b343c81e69b4fd42172ab48b635a931e9b6e50677a0a89e134258fec","regex":"."},{"hash":"984b4cde1396222316cb01b0725dcb8b2f96a5c8867ef38d3d63ed446caaba47","regex":"(?i)^https?\\:\\/\\/tools\\.usnengquwaixingfeichuanwanmaaddrs\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"c133423c668334091c9bb8defdf246f0d93577f2140e09bd9238cae30f8da259","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f4d345d402eb6aed2b183f37f61431c438b67f5a2c01065d929b25e5cb589957","regex":"."},{"hash":"a8df352c22882f13f6366cd4a843a4493f4e9bf1dd91c004a175331038583349","regex":"."},{"hash":"a1abaa4ce934482d2ab3aa6c4fc9db33709a60ee2318c274adae0043ac763317","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1"},{"hash":"208251a8641547527e4f6bb8ec03ea40bca7f8b541630b0310cb3429549b96d8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"a88b264c36c50400f39894cf3546be52f8d987b8906fcb070c1c703f7ead7a81","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f815e8cc8adf4df6b844dfeccc4431a5deb10f379c18f5dcf0c336ca24e5c8dd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"6ee5d51dd41c02a7c017a467944e8f27d5134fe3bd5269738bff080616d69754","regex":"."},{"hash":"17e4540bc1a611b7c4bee795cd6d04935682b41db0812cf32cf8d466662f448c","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"042b3bc7caef351b1ed2923da7704bc9e6c1b073d531135f1ff8a4f3465741a8","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"5b0be7646348635008581dcf54c96be504c2674034e1107f722a49b872b31efe","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"f7fd4fecd7c2f472ee280ac8e52abc64d32f986309724276b5d3aea1240a8806","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"141927208c5007024a37c61884a7f0579c56db63c0f848fac66049ebebebb706","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"c60a29afa2789291ca34774c2f581240792771b383eda0193fde91e9622d0831","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"322608f21cb3bf44412984b2182b817e881c571643d466e9003bf2cf1420ffcb","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"2ebd77a9af4eaba839e7ab6d48beacebde7718dadccc0ddd27a9e7a8a9b66770","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"cadce3d52fd1e3988e46916e725f481257b2e3897c7e11384b6f59920ba4be68","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"a9b18bcc8b8d3e3f3f5657b7d9de6ff48a33a5b449319672ada6defe5c00b1ec","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"34bad81304e6fda7e2d1d7f7749214ebf89027be5cba950761a27f07214dbb98","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getpayment[\\/\\\\]+200171971(?:\\?|$)"},{"hash":"20e89bd372f8a5f6fec47d57a6d3913002b4a3de814d89a713b70839e08ab81f","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"0e8ce6d525af67962e6569ce888cf0427c144083da21bd2fc9f79e035a59910a","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"5a94d85fce7ba8d0aa7538bfc7c763cfb681681d715466e328b20c0ce1f54ae4","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"512d3dbf4fbe6c21522c09811b1537159d678e309de5fd575370dfabc17a21ba","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"e17dc4dffb4bc91e8424586a992786a80bd13fbc23f5e64d8a2f34e89cc2072b","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"b22c25e026156c5f358ea0ba073cd45654321b7998e99af00b6fb3d47047321d","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"41590dfd72019e291caa6c9e7692d8d8012d52428071737f3aeb2be7b8a4bcaa","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"979c14ed89b3f284e18cfef773ff660a68ed9e9f8b561b9a8906fb583e64a230","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"6ce6285c75e323124cb23e170cc3cf3844d9b3a9bb40e3a9384ae9b9047440fc","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"71c304ca5945277cf94cbfcb5f526336557c4de8850ec1108d30a57b3131892e","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"c8b8eaca9b404635fe62eeed7222c97019b8e92b4e2b5f117d001510c1434c19","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"cfc941ece93b852c9fca443684f92044d432bc5918ab8134f598ae63e59ff668","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"5bfa3a2a3a1198b614a4ce080db5fac460a7f4adb077faef879a373506c47401","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"c88b9ebbbc170e44597bc59e53d8565f05fc516c563e4db4ea1451157d77d474","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"0068e2819a663e072b38506fd37bd37ce443b367103e55836d1f30f4e97dd343","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"fc3410dfcda74348deb531a2bbf389e98dd315de766c099d40f7e5d174f8c39a","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"60bb0c12dd5addc4b776dc7c3d3063f0aaa6c8d3534dd7d103604119441c88b6","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"399ef1419b496ff6b3be62b26aba907cef5317970ea04febd34b8464a083f760","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"7f439a7657c26d09692a6eb411a490a7d6c84931fcdec7ec3c645698b56aadb8","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"8a24e53c1c45a37261188932a9c585dfb9d55f71e1fbe60a1456d704028f0912","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"aeb4da39daea70b0b1f98199127e0a214f592c3acb28039bf7d26599dee7bdb2","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"862f212a9e904875ca3855c2a4bd36353018c469ad0db3c907e96dd4ff9200aa","regex":"."},{"hash":"559c0e495b33fb9b6c5db06db2dbecf8a744c941f1e9542de67e26e072cdf66f","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"07721090b8bd8b8afd6e8db652e5f44fe9c48158bb8e7c4a38faf6db1d77eccb","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"e7c511e95d19f64fc9872a245746ced3b588707734d1f52ec3e073c74ef408d7","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"284dda7dc66c23a85d7e7a92359a2c107d38c523061ab0f95df6f157c314e91e","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"72f4ac7496ae28006a60100ede0392b0b240d498bbdd6744d026577823972b8b","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"d28f7b2f37d8f54dd585ac3211acc1ca984b5d12b1172e3082e9a76b97d9049a","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.dk(?:\\:(?:80|443))?"},{"hash":"f6d2d49d2f0c7e6edf84a5807fe378f0cb3daf260c51cd2300acf991e64e99cd","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bf65c4167acdd4d3de3e001c635c1be858c8085eb25e9eff3d59db41ceb68827","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"f37a081f14436042fd3735d6827c379d6543d6594c6475a6d978f41b3c935358","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"7bc269fd5e140698a7e161f10b442492de13930cb0a963fdfc304355325b8d75","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"90fa75838ad759cdad98e1f00fb8eebe3364f324dd4039c93a018cad8b331696","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"13c8c6c9642647740c36305360d65a448dd3bb7a3c4ead5820b21fec746533c6","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"403eda995fa117a300ba786955b5ea3ff4963eb59939f8f357c33b4457db217d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g\\-m\\-x\\-server"},{"hash":"00e33f18ef59cb788c6e4399c3933636f4b78f4d561f80730289f6d2175cc049","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"00e33f18ef59cb788c6e4399c3933636f4b78f4d561f80730289f6d2175cc049","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=sivsQ8GJGIRbGp8vbrLUk2KBUk5Jrq5E36_3PFFTRzc\\-1736291365\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"f78908889b4f2b928caf846d7b65ad39198b403f325aec4499fb75c498cfa82a","regex":"(?i)^https?\\:\\/\\/bigpond24\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"880d87e8d46e498059cd36967942bca6e12325039aae17add85c3224832c54ea","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"5c02d81dd826c33a213cabdb8e3681e2248e2df254a865761b25504a54ad3ab8","regex":"(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"f214fa2fae2d5ccdd07fa11feb37f9a38353fee7f9a7c3c9c02973d2812b35b1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"450283b76df188c623babaec326799cad8793932be0d4737200c388eb7073f35","regex":"(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"ff822926e14be01ff7dd0666782668ac0e1a9eb66b2301ebd05f14e35ec9c9c1","regex":"(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"880d87e8d46e498059cd36967942bca6e12325039aae17add85c3224832c54ea","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=51Rsbsjc1aQagx\\.dgrPquKvhsy\\.gwcmvCmUI4Q3RBmc\\-1736291441\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"f214fa2fae2d5ccdd07fa11feb37f9a38353fee7f9a7c3c9c02973d2812b35b1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=QJ6TINH9Hk0cZsyCd4Ec_SEn6nqDBYIIiNv1GciE0No\\-1736291518\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ef7b9f6e09264325602ef3d2340e8cadb2941226f51fbdc41bc5654a2a1cdea7","regex":"."},{"hash":"1b115ba4881e7fdc355470a2aa5fa452936e512548700065be76a41f0088efa1","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"31793ec030d2c8edf32ea2c434376fad0e753cc6b53b6ed1a2e1d67c0b5589b1","regex":"(?i)^https?\\:\\/\\/aliatea55\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"c5e1bc0b6f4f68888ab2d2c298594241acf7a7906a5220e395d1de8875448dbf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+taragibleu[\\/\\\\]+pages[\\/\\\\]+region\\.php\\?lca$"},{"hash":"e4d5931b739fbe529862a14faf1d3d9554777320fd37b77664648b487f0738d5","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c5e1bc0b6f4f68888ab2d2c298594241acf7a7906a5220e395d1de8875448dbf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+taragibleu[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)"},{"hash":"c5e1bc0b6f4f68888ab2d2c298594241acf7a7906a5220e395d1de8875448dbf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+taragibleu(?:[\\/\\\\]+|\\?|$)"},{"hash":"a4b550c7e4942ce9bb2115f7ecb109dd6815186b9cee95779b5b24a8ce3e3074","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e05a7ee836a747edef2d9670133769cd216a3e5d2111e4c25e8bcc26bd63809a","regex":"."},{"hash":"a4b550c7e4942ce9bb2115f7ecb109dd6815186b9cee95779b5b24a8ce3e3074","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+passphrase\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=andreag\\%40fambi\\.com$"},{"hash":"81000903446fd64fcff1ee33d0e5980e36640cd1330108e36e7db990bc4abd5d","regex":"."},{"hash":"4d12e854d96efa48853337e63cdc633559cc6a0a532afc1faec6d327ce98b895","regex":"(?i)^https?\\:\\/\\/3992389\\.com\\:9900[\\/\\\\]+web(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"89ba3c9f303f4d00d5961cb0ece7836439e21da72a9ee43cc9cce2fa467e37d8","regex":"(?i)^https?\\:\\/\\/estasfetapost\\.help(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)"},{"hash":"5bd25e7d03591a120dc9993a376ea9163ae7396b1e8c9a457635fd68ba76aa87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login"},{"hash":"4055d4bd56bffc0e2a702ee28275fad142c73b6debd76c1b2f203cabf0734f4d","regex":"(?i)^https?\\:\\/\\/9075562\\.com\\:8866\\/?"},{"hash":"4055d4bd56bffc0e2a702ee28275fad142c73b6debd76c1b2f203cabf0734f4d","regex":"(?i)^https?\\:\\/\\/9075562\\.com\\:9900\\/?"},{"hash":"4055d4bd56bffc0e2a702ee28275fad142c73b6debd76c1b2f203cabf0734f4d","regex":"."},{"hash":"fa27708a48f1c2fc6d32f4e982fa690fffb51cc9f824ca12257e44ab63f1553b","regex":"(?i)^https?\\:\\/\\/cgvri\\.lsuuydsncue\\.top(?:\\:(?:80|443))?[\\/\\\\]+far(?:\\?|$)"},{"hash":"4d12e854d96efa48853337e63cdc633559cc6a0a532afc1faec6d327ce98b895","regex":"(?i)^https?\\:\\/\\/3992389\\.com\\:9900\\/?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"10a9996af54f3a237de9e85ec22ecaffc83ec3b682689b6403226aafcf9cd136","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e[\\/\\\\]+authID\\=TkWEX[\\/\\\\]+tracking\\.php\\?sessionid\\=b4b3808c61f3b77d4fd400c53ce4a77c$"},{"hash":"10a9996af54f3a237de9e85ec22ecaffc83ec3b682689b6403226aafcf9cd136","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e[\\/\\\\]+authID\\=TkWEX(?:\\?|$)"},{"hash":"10a9996af54f3a237de9e85ec22ecaffc83ec3b682689b6403226aafcf9cd136","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)"},{"hash":"5bd25e7d03591a120dc9993a376ea9163ae7396b1e8c9a457635fd68ba76aa87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)"},{"hash":"5bd25e7d03591a120dc9993a376ea9163ae7396b1e8c9a457635fd68ba76aa87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chat[\\/\\\\]*\\?utm_source\\%3D\\%26utm_campaign\\%3D\\%26utm_medium\\%3D\\%26utm_content\\%3D\\%26utm_term\\%3D\\%26xcod\\%3D\\%26sck\\%3D\\=\\&utm_source\\=organic\\&utm_campaign\\=\\&utm_medium\\=\\&utm_content\\=\\&utm_term\\=\\&xcod\\=\\&sck\\=$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c8ad0c3d6a9ccc354556799c627a0aa74c31e45ad1ef448386621b7b3f49dd92","regex":"."},{"hash":"5bd25e7d03591a120dc9993a376ea9163ae7396b1e8c9a457635fd68ba76aa87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chat(?:[\\/\\\\]+|\\?|$)"},{"hash":"0f95dcda2d41a4e7a9b17976f56506b6195430015f3ceb9919ecd40c5b916f51","regex":"."},{"hash":"b87e9f0cbdfcb544f63494553a9008c5548cffc480b465a57ce6f0f4f9581b14","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryuvn\\.top(?:\\:(?:80|443))?[\\/\\\\]+l(?:\\?|$)"},{"hash":"03670ff0a9055b4b382e9ac3e6f9b8deec3e40158a48e537468e1fa6ea6a6769","regex":"."},{"hash":"8644ac84d2a10264602eb2b9cacf70fd24ba5154b53c1ea0fb5470b74f68ebe0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"554cc91fdc5205b552bc6b6c26f4f8f653f7114fe07f75654d81cc4dd130a655","regex":"."},{"hash":"48943563367fcdc33195f9a9c7b91b1833b9aebe8e0e79b3045d114165ab2bc6","regex":"."},{"hash":"69eb7200be923190a0f8ad70722709d7dc3b94a7c0c20895ec04be8b6dd1ede8","regex":"(?i)^https?\\:\\/\\/home\\-100162\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"5cb1860c9ef047539f4e34d39dff04d547ec62f915b115a587286b3e92ff3da5","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+summerser(?:\\?|$)"},{"hash":"6a00e624691bd631964e13efb25034465129acddbb85750cab463af281103f23","regex":"(?i)^https?\\:\\/\\/home\\-109919\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4efd44fca28826b59a6106b6bee932932772db9f951cb7c641b00e33537581fc","regex":"(?i)^https?\\:\\/\\/9127876789\\.audio\\-securedocument\\-signature\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4a38393cb209f32cfa3464e776ed26c1f0ad2089bbbe7690e76c222adb804479","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+MSDGKRWIZZXPJAZTy2siuyisl3gvw6tpj0\\?qbinrzgeyfknsaro31976170034912776ne45230lna9c95i8$"},{"hash":"4a38393cb209f32cfa3464e776ed26c1f0ad2089bbbe7690e76c222adb804479","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gLvIb(?:[\\/\\\\]+|\\?|$)"},{"hash":"b87e9f0cbdfcb544f63494553a9008c5548cffc480b465a57ce6f0f4f9581b14","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2e3e5cba4e4fad3e5455864c34e18f19ec445af6528e06f4bbf4e5ac23db9469","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"19c1e905de391117121c665cd9f594a8f15bd711c189694ed873d6227f8cb19b","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"acce83c29761b20a03d2bbef8eec1afa3ed40df8254023a15c134f4baa933a5d","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"e2d0774edc1145c23189ddd13cd449baa4af0ab15d18f6d4b935c81ed842c61f","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"3f4372e14c4e10630ab61c781f7de5c1601dfa1876bd75b715a439aab581be9b","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"b32d60c20c3965fdcff2a44c4b5c15c85f6d4171d5dac533f796d3ab80c8465e","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"85c9dbb59162389e8f4ddf18b6a4875263d26a29172765893df3db8e93a0ccb4","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"4805e76aa454af984c75de1b3ffe48deb8ceb775391d490903401e6da59ab3bb","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"154f48a0b71841df88e8545e4516c221b774873806a502eed0e77bf041ff3e06","regex":"."},{"hash":"46677d4696b24c9260aee3ad70be21b94ef73b7687b9bcf85cf4598b1d3aca99","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"e51b836c50767596ba7083cb8dc262f187db25e14293f0229ee3cc6b75d26557","regex":"(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2996dfde67d03193afff122e3cc793867b10c48b7e48a0e067a3928995491c51","regex":"(?i)^https?\\:\\/\\/videoinstapornhub15\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"21a452325a7dcfa1dc18878432eb1e7504a0d1835509a5625020da6479ba9f05","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dc4cc(?:\\?|$)"},{"hash":"9490314b78a1cd27e02626ac8c9ea36f10a2f56bc05d28cf2241cdcb12abdbb3","regex":"."},{"hash":"260409544c957539843993e6e00be018f751f55f9bd19ca2d333c27462b4713c","regex":"(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?[\\/\\\\]+server[\\/\\\\]+indonesia(?:[\\/\\\\]+|\\?|$)"},{"hash":"619296f6094b7e270c8cc172a327dbd26c01872158830bed6a70a84e07fef124","regex":"(?i)^https?\\:\\/\\/servicefreemail5241\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3469145051347cfd434389e2851b1946b3c3532f2c367284a806f2eee1284af1","regex":"."},{"hash":"e0d101a1b06f43e5275d41a31a11b47d7ea2552da2c274e9edb2f9869ff0b1b0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bd3e25b20a3d6dd598a6bb2ee181418d892faf1ffd907349abd4e6c898048abb","regex":"(?i)^https?\\:\\/\\/smwh168\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5488b6e23d86e910ced66ccc16137bf9e65adfd879e2ac37891935c1822de639","regex":"(?i)^https?\\:\\/\\/01010o\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"a73e8a703170bd9bda738ae827ab31c823db38bb6f33a5f1fffb2cd0d89fdc8b","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9609b3a1a869be6227632f72300b0fee54f876b91e004ff2aaf6a3388dad01a8","regex":"."},{"hash":"382a5fe299f08b2be4c4e982f3039d07c192a36926977119586d4f7ed3ac310f","regex":"(?i)^https?\\:\\/\\/damp\\-night\\-d3ec\\.sharepointme21211\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1c433a60151a42c208a07d947e412e39b76500bb6d0ce2d1880c2fea0af665cd","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1bf4da03f641fc1bf3d37ff7865a5e33037497094c309b7fe42144d42e5efee7","regex":"."},{"hash":"f57878ed8799b143880e343b4ab7ce3d25fba14cec14541a8498f5b0df9f31fe","regex":"."},{"hash":"2d42d74f0b59e981a3e352642b2c1ea0c11951a82d84b8a63e4f86f8aac14636","regex":"."},{"hash":"609c35e3025d7bbb64a061c57e4581f62a16530fa9a2478aa638ea58285d4be8","regex":"."},{"hash":"ed82b548a88a0203e77c2ccd6490510df4e1b050df226ec528554869f4e0f1e9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"168ec475105c75ed1a2b0461d7cd85ad4df9c369b0a0b39220c0e2697bdee9d2","regex":"."},{"hash":"3e32f050316e013aa235d376f2f6808bb18dc451785e1d825d93f787833a823c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jsdisabled(?:\\?|$)"},{"hash":"3e32f050316e013aa235d376f2f6808bb18dc451785e1d825d93f787833a823c","regex":"."},{"hash":"400cd8b5216818ffce7743dbc047d3c3559a170eeb01d8b0b35072e6f336fbab","regex":"(?i)^https?\\:\\/\\/www\\.megadealsonline\\.store(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"75684b5b410eb45dcbef1c948b23c80f14502120a3d722acfff3db9a2de4ecb6","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f4459e56c460d33d6b9b78917a5bbc573595ecdca543774d9836c89eb8f5e478","regex":"."},{"hash":"5e7ec0111d1d7c55862a6342f8d8aafb766d36fe8e0b2f94e3a68180ab465350","regex":"(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8616844f0f0b447cf92cb89efd9eb4056504d631b2092233d90146287a9f4f1f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e6ab7e33b0fdd2d91f3313b1cf391fcbd8e0bee04c27491f4285111067ef8f37","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b4668a0d73f389b47d9f8d881dddd96fc9f1b1d56e78b9215990143d2a1fda28","regex":"."},{"hash":"0340148fc5572f32d5eeecc5a76c7eb119c3f73eeae7bb574efbe1e7e40438b0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6e0e1f72489168c294b567db2d21a3b254b8b0dd50fda523d81b14f3b0d3cfb1","regex":"."},{"hash":"6b2bdd8054210599dfa0cb0db86a790cc6cd29ba155f2934cfe3992d1af9b040","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=geoamiata\\%40amiata\\.net$"},{"hash":"3cf2abaf70f1ade572658b22295c5a50f4c0c8d931e849714a6057d973fc4259","regex":"."},{"hash":"aee686c292714d456c652777edad367b0bd572d170f25b1eb7c65d1b40632dd8","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"75681089dbc460a42cb95b2c215df56b9876ec408a8356281a832de64f8fad56","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"abb072e40e5c825dd9caf2bd94a4d35ccd130aed5b48d151ab4dc26c632556a9","regex":"(?i)^https?\\:\\/\\/signin\\-information\\.198\\-199\\-82\\-48\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$"},{"hash":"7cf3e1853c98f61c1c7c0b3f4b601006bceb3a775580dff5d21d51d2c3e9cf04","regex":"(?i)^https?\\:\\/\\/attupdate\\-100110\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8359ad72dba23d61fce2df077a8ecdf66f053e42ec2281d048fd79c9cf47a27a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=tarasp\\%40abusix\\.invalid$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c3c982ac37e5cdd9f91a740065140b938d94ac2bda88ca517555846aed294154","regex":"(?i)^https?\\:\\/\\/www\\.signin\\-information\\.198\\-199\\-82\\-48\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qs(?:[\\/\\\\]+|\\?|$)"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m(?:[\\/\\\\]+|\\?|$)"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7(?:[\\/\\\\]+|\\?|$)"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/mlr13\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+app"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+errors[\\/\\\\]+validateCaptcha\\?amzn\\=fds8dEbIjxYp4OrFvaeMgw\\%3D\\%3D\\&amzn\\-r\\=\\%2F\\&field\\-keywords\\=BNANGN$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ee61e9ef9917f249a6c34d78a651747d3db090e6b08fbb8557bfa0409f4f2bc2","regex":"."},{"hash":"4f74276fd9befd4c83b55057ee28c68bc0007e1029358dea1aa513ef5ca54387","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"747706b263c23b0b3e75787668201f662235ab7d317c6f982d5763b11cd6197b","regex":"."},{"hash":"e78daa88f71dac30b5515d90ed7538cd8f149409bbdb42c7c1a335027621abdd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6154801548$"},{"hash":"cc095526e88eaa3257fa221809e291d44866b62002e145def3e6bff1b5c7d0cd","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"0c0e9bd46d13fe3f118dc89b7472b24d387be516814314e4f9cd3e9d6ecd9f18","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"8c85c000d8a1ea9c7e6ca691ae5f5d9cce1b0456b48b176531a9693085d8db58","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"0dca1d6e151ad6f44b47835d25bb2d3bdd45a7259407ff58e33688771dc09102","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"e499061350caf76be45a366e5a927976e4459e177835e92bacdf229ebf67e889","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"3777944510f8f733c22fd5b9e611311985996d2d55428e7133dd5859a44c0a4c","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"0a1ef0f8ebd2135862813c216bac469dfdfebb7638fae9811082404028a7f3aa","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"937d65b8946f785f2fa4965482bb41c0b6e32958f7bef8d39c2745b647b5ff47","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"3334d27083d9f53271e34dcd1dc06786ad8c9733b64e48e07cc2ec6bf49852aa","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"4d523a77e0bda30527afa90083575f76bfc9111b684052064f31223ff4d491f7","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.li(?:\\:(?:80|443))?"},{"hash":"eff27cd6e0a7213f87964bf56bfd625446ff7e3ecc64606ac0052dc69de56db3","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"ac00c1dc9af7356d62f3493abd881400d64e0c08c86027d2b9eefe76179d84a8","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"77105351db2711d2319e534aa72e356d7208aa38db84111c71934c92f95b3f41","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"7c9824e6a9be55bc1b3de7e8c012b84f113bc64466523cf19ba196daa8718347","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"bc397c65d5535f6f2d14af9d6f6ae05d61ef64b5690887c2c44bec223736d75a","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"e525b92af06c9235f785200242548b3acc769362463c38bd52048a2b9d94f3f9","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f5faf456dc34c3f7cba287e4e4975140bc48d192409ae35c60356225e544e1c3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cent(?:[\\/\\\\]+|\\?|$)"},{"hash":"20bfcec5377fa21e66d754746f03d729be943a1d600441369687054f51e0a6d7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$"},{"hash":"f5faf456dc34c3f7cba287e4e4975140bc48d192409ae35c60356225e544e1c3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pagar\\-tributos(?:[\\/\\\\]+|\\?|$)"},{"hash":"457a6f573f3bfae05e2599278c7407b834d02463fbbcb25f4875bca728fb17f2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$"},{"hash":"0369823aa9b994de2732f5aaf6723197ee1547bbafe78ef20d2d767dfea49a99","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fkudsw[\\/\\\\]+uoclk[\\/\\\\]+YXJldGhhNDg0QGhlci53YXMuYW5kLmRl(?:\\?|$)"},{"hash":"78ad7d5f5d773ace24c5801d28e59d03e8b39bd43144f0480d676cca6c3d99a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+piecxr[\\/\\\\]+patnp[\\/\\\\]+ZGUucDYuZjAubjEwMC56MjVAb29yLmRl(?:\\?|$)"},{"hash":"8ce111e23ee5a8619403255a2b7bbba05db238b79e0c3373cfe8ed760b7b5e24","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wenyjj[\\/\\\\]+durod[\\/\\\\]+Y2Fzc2llQGl4LmRlbml6LmNvbQ\\=\\=(?:\\?|$)"},{"hash":"587f78ec5a2c61f8ed6909393f589aee0a3d2e0176b5d75b51f35e0e29d9de0f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+keqmfi[\\/\\\\]+qjqqy[\\/\\\\]+a2QxOTc2QHRvcG1haWwuZGU\\=(?:\\?|$)"},{"hash":"df608b3bfe7148745d8a6f4c472f21ed475d01c8115a5bb3bbefbbc486ae72d8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qmiuuh[\\/\\\\]+cbvmm[\\/\\\\]+Z2luZ2VycUBzbHV0LmRl(?:\\?|$)"},{"hash":"4972e880aa0afaf139892d66d6f9f122234e3ad838893a286f3b6b24e32fa8f1","regex":"(?i)^https?\\:\\/\\/qn85\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ccdb07b5a99b9d9f49d8a6e5e948d6b42905ea8ef2a0bf810b7237f130deb1da","regex":"."},{"hash":"9647fc24cafb5d20853d901e7b571a10a538252b11f1d1b836d5858f7dd51247","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4c28ddad728fbd55be13c482ff90a6012ce0a66567a301402beb59db6fd1d32a","regex":"."},{"hash":"0a22070d27f833bdc4ac27692b201306f63a22232f8e658c601c0fe39f821b83","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP8541[\\/\\\\]+GLOBE[\\/\\\\]+4369[\\/\\\\]*\\?dom\\=track\\.filaflots\\.com\\&m1\\=Wendy\\&m2\\=Woods\\&m3\\=447985581189\\&m4\\=London\\&m5\\=Fy1\\%203HX\\&vr\\=logo\\&cep\\=RFzQ28\\-LgErTKPNs3E5RzILIS96yDJTmX4hKvSv9jDDlUQad2hliAqap0l\\-F5BoDxpo3Dzi_k33abS9H3fLx2yxnLtX2sA8G3bmMOLit9rh1DklK3JZJJumWVbkoiR7ikwR2GMzYJLmQPF_xqS7qk8EJKerODCPH18E5EP_ZFv0_yUO\\-2Bpp\\-yrMfxijRRbdMROXcfcHcnPFnua1cw4RbrjAj8XKpxSao_wNJWHTndyGQrSUu5D1en6D_yt\\-Kan2FGORVcuHWO81Kq0ZwxJid3\\-ypJxBcAn1wl6XAZiufnjOnkq6s1jLtsl7mEga8Qiskl9DoeozhwTdI8\\-XBOXGpFywvpOdVerUGHlxYdEdy5SSmzWW97JMqWCqkcH0SN0Y6zEIgYYasBGC9nklz3rsMWmCi8U3_6ZFmAGuheYjpEbaDjUpFv2KT3wpGUiJGO46eYCQg7R27yKJzRPtCdHzg8wwZEBw6494IHv2chgVe249uu1ucCwrqLXjMoeWtBqaH8erUIzRWmbaugHwCZNQF0sbvElM\\-d8PW8EhLVKyoXtRVTQPZz5NoqTiuDfQfm_yqjXQwj47yDsQwGPldcBvj8jd1QFauyQZyuvDZF3J4Hg\\&lptoken\\=179a367831c810533344\\&click_id\\=fehptyo\\&var2\\=Fy1(?:\\ |\\%20|\\+)+3HX\\&var3\\=U675FFA39240BA\\&var4\\=29(?:\\ |\\%20|\\+)+Fisher(?:\\ |\\%20|\\+)+Street(?:\\ |\\%20|\\+)+\\&var5\\=2047\\&var6\\=Blackpool\\&var7\\=Woods\\&var8\\=Wendy(?:\\ |\\%20|\\+)+\\&var9\\=447985581189\\&var10\\=wendysmat1978\\%40gmail\\.com$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"55b68c652e91338f837471dabba8f963aae9ffe6be295c620b92b740fb9327f3","regex":"(?i)^https?\\:\\/\\/sr8487\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"0a22070d27f833bdc4ac27692b201306f63a22232f8e658c601c0fe39f821b83","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP8541[\\/\\\\]+GLOBE[\\/\\\\]+1458[\\/\\\\]*\\?dom\\=track\\.fridenhotza\\.com\\&m1\\=Oiiii\\&m2\\=Uoei\\&m3\\=972506291366\\&m4\\=Tel\\%20Aviv\\&m5\\=80200\\&vr\\=logo\\&cep\\=iRZ7ztqKC7cJjJlr69PBd_OWzgqzftAgWbzaANI6WNW3QW0bAOHLgm0zzOmPVddG5Q9xRPG\\-cLFyTYE93DjkwobEUbUMvFs_4Rde1AvDYIPSYSv4zyDubUTmUTJ9HFrO_Ud1MMXlH5Ahqvvq20LIoGVnZyQ6EvizkTxAdP7hxjEJilzh5zd\\-Qyh9SGiyCalFUMbzJ8na2xA2\\-BBLTXoSxxsipJjRf4BsxWeFBAlRieQZ0pF7I6NQEiq29lVcc7h6ADT2Iu0oEESitfFb7130lBF4T9g7lcDzpQPbwABxW86MAdpr2i1WSuVXorZjPgCWC4sXaEL4ISLwNAeFXYXYlXPP_hnMe\\-Fk8_H\\-UmTjmHAlSYx5ZLedY8wrK\\-pilI8P2hJiWJ_8n5eTUw\\-Ynr011g88SE5ebUS0\\-OpCAwlZmlEhcvTYo7k5NlBHDpeGqz_RQzqACchq4FM9zFC91LN_PeMoR\\-KHaQKh7G7yQolxa955zfbZT_DpoCTvhx2c39\\-7SwApPnsmog6XzQebUgcUgzr_QmzrPUlWLWvvSA1c1aWUfHKdm61tkLVH0Dqvv5y2Dlm0uAoP3KTsNFR8FOHXxZD5YrcRR8T9bPXD2sMocSyxxpBBZJhXCnou\\-ERAsE8Oece2\\-29hYSBFLt3gu\\-rUFw\\&lptoken\\=176e360d3119057a5973\\&click_id\\=f031ebn\\&var2\\=80200\\&var3\\=I677CE8C398C9C\\&var4\\=(?:\\ |\\%20|\\+)+Ono(?:\\ |\\%20|\\+)+20(?:\\ |\\%20|\\+)+Ioi(?:\\ |\\%20|\\+)+17\\&var5\\=1368\\&var6\\=Oei\\&var7\\=Uoei\\&var8\\=Oiiii\\&var9\\=972506291366\\&var10\\=Yehuda27384\\%40gmail\\.com$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0a22070d27f833bdc4ac27692b201306f63a22232f8e658c601c0fe39f821b83","regex":"."},{"hash":"a26e923b0e5b1df42634f29606167083dffa629252f29f69dbc72e92d1dceaa1","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f1e5b388393012d4b36858b9eee1b5a25aecfeb5852f99f329f24c2c183cf26a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en\\-us[\\/\\\\]+index\\.php\\?desktop\\=\\=\\&ip\\=156\\.146\\.41\\.81\\&key\\=dgyDFqyoTiaEmPxBXFVcZqckFILxQojeoeBbyMnhgkmpQgZVLtwpCgNBKlyW$"},{"hash":"8fc233df131d7be1adc2580d0ffb729440518f64a95b87fe39614e076ec09eaa","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"85222af112d421616ff78668f49c918ccb471572cb477e13baf75758b81725b9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+myGovLogin\\.php"},{"hash":"f1e5b388393012d4b36858b9eee1b5a25aecfeb5852f99f329f24c2c183cf26a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+detect\\.php(?:\\?|$)"},{"hash":"85222af112d421616ff78668f49c918ccb471572cb477e13baf75758b81725b9","regex":"."},{"hash":"f1e5b388393012d4b36858b9eee1b5a25aecfeb5852f99f329f24c2c183cf26a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"43d7d7c8f3b898b97d1c0aa4ec77fef39b43d5750458963c96bb3c6c165eef81","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cn(?:[\\/\\\\]+|\\?|$)"},{"hash":"43d7d7c8f3b898b97d1c0aa4ec77fef39b43d5750458963c96bb3c6c165eef81","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f7ae7039b8c6fa553aa8d9989200942a4bbd97522703bf32d93e4dd420aeca1a","regex":"(?i)^https?\\:\\/\\/shravya0921\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"55a38e78dd945ecda9e2e028dc3ee0b8a2f8048777b7c9821892f2cdc371c06b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+contact[\\/\\\\]+403830513593788(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"768150d8860a37837d198bc0912366759ef8468611ce8e96fa17f2a22f59503e","regex":"."},{"hash":"fbe620de0cdf9235aa8d130381f3c3b8ce8c8616e48b7c591d1c73d4918da436","regex":"(?i)^https?\\:\\/\\/zzung712\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"edaaf684770e453d886cd31e712e2b6e41cab8bc11278f0a1f6e438d8d7d667c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4eb0b56a268c4a818bcb5c88a450fdc69c080e1f35411a9c86a16b0ea99b8d25","regex":"(?i)^https?\\:\\/\\/lightslategray\\-mandrill\\-614937\\.hostingersite\\.com(?:\\:(?:80|443))?"},{"hash":"bcd1a29479bd133557629e9b15dca92312b7b5d7f985c051063341550d6d75e6","regex":"(?i)^https?\\:\\/\\/tusprocesosbdvapp\\.z13\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?"},{"hash":"b9d05beda4a544bf5b8b4b8e27fc695a27d46514d651fa023c38c3f2dfe865bf","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b7ab561a848d6630d94166556da89aa2c49f0f18caa448545f590fddd3bf710d","regex":"."},{"hash":"66276a9b82eb96c9300eb7ba798870e5ac5e5468f190e550f06d25a302a8cea8","regex":"."},{"hash":"e97331b9b0f4c3ec48aa643d9e871184482bad8b6f816721ecff67f10d8ffd1b","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"783b782a6c055d1da452df5f46befc8bf16063fb9b58bf7b0380e14044ced68b","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"702aea1bb5a4eeea4ced65e4d0393c4cfb849cb2b65e5649ac06b2a0352a4e76","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"bacf360b6694b9546b19b1bdcc3fa391aeb75a3871cccd7f92a0fe14a5370858","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"b49de446992a54698a23bc453e228c7604265b96252765270d69824bc5105488","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"d0e089ce1466a17c60f2861b2a043498760607fb63ff922c523e8b0d28ea536b","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"bc7901bffee191b9fb60e26ad9908c4d32a173905789a509fe91c3fb2f7e92c8","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"7e4b8d75e3cd5f963b2cd8e5a80aea342c5703fa44016eb6004fbd73d231462c","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d04848699cfa24ba12efe9848c0338fc4572b2a18b8d39e1f43cdd59605215bf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index6472899\\.htm\\?email\\=k\\.abanami\\@mobily\\.com\\.sa$"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8077deb4f1d9c13e4733ec38da448398a7a4e98e82eee98d93ab8091185aca69","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"ed4af9fa760bb29ba51da59de32db77422b38b68dd93e1f38489a61e78d324af","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"cf7457eec357a0aee275ecc50625d663d22709ea0037bcd63893fd1b5bd639ab","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"9fd8932c921f442d7e4f8a2f7a8cacdc5d83d833ae321d935d76a3391d531349","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"cf667de113916eaec2112de9439546dd9657a1d6558a0243806fbcdccbd4e88a","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"c3a48214e668ba356e8df15266557d8e9ada1b30cad344d83bce6758ef693165","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"dfc1681023e95ea2d29b72f49c245fedc2ae7e2defea8fd53686a50b4a5557a6","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"a3ca8dd56994ac620c20165c48f295190830d4ed9378038610bd358c379b0bbb","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"cdb0497e8d3dceb2726ba4685299edd9045a2520a33d20571caf2d0f7d7de064","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"f96448d2eddbaddc8cc2324ffa021b672b8a7cacb78b4144c922505c6739d5c9","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"8e921ceb204160bbe730e8180a18e01145e88dd177cfe0b8d67aa4f7d3bd21ea","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"049cd483268ed8a9cfd5c2f699e6f6e301b72a3f051fd4087acc2a313436b69d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ii1FDo03OA7pZtczvVjEKidMl9kRvoHRdvtQPZnOTJhANZ6So9lZoMiHVodie9PPnt8CIvl3gfjueuuzHOOnYRWKmqClub\\-KcgIfTrhOCS_sWo9BhPl6Lslb8vpmkg\\?kws\\=tranny\\%2Cvideos\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fwww\\.trannyvideosx\\.com\\%2Fuser\\%2FAdellgay\\%2Fvideos\\%3F\\.\\.\\.\\%20312\\%20\\.\\.\\.2C\\%22\\%5B\\%5D\\%22\\%5D\\&si\\=1\\&focus\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fwww\\.trannyvideosx\\.com\\%2Fuser\\%2Fadellgay\\%2Fvideos\\%3F\\.\\.\\.(?:\\ |\\%20|\\+)+312(?:\\ |\\%20|\\+)+\\.\\.\\.2c\\%22\\%5B\\%5D\\%22\\%5D\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$"},{"hash":"d0f39a7a8b745e21280ef42d3812dee79a1f87fe939b4d3e660b5de2c207610a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codeeng\\.php(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d04848699cfa24ba12efe9848c0338fc4572b2a18b8d39e1f43cdd59605215bf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index6472899\\.htm(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ac8a4512ba4d3cffcae81ded2d26e605c41609961697ee87e105c8fb59b887d2","regex":"."},{"hash":"d0f39a7a8b745e21280ef42d3812dee79a1f87fe939b4d3e660b5de2c207610a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codesup\\.php(?:\\?|$)"},{"hash":"d0f39a7a8b745e21280ef42d3812dee79a1f87fe939b4d3e660b5de2c207610a","regex":"(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?procesoderecuperacion\\.click(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code[\\w\\-\\.=%]+"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8c1b6c00a10ac61ed2d06861429871d5b4d028a48fe60e995f20c68cf4c1a589","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+q9oh9iV9ds7sU1rsew(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"72b06db3c790305766aef3ea372787c3b5b9d06c2a5f748ef9bc890ba42e10dd","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4c7f573d6b5ac0470470789f713661ba4d351514c10b5abce277a4b901984d92","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f0d2d5eb8246b2b7eb63845b72585f2e3e5886823ed2737a98ccba1dbabfe69a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3d68179b8103c75ac37dc309ec43458e53d91ed2667038e813887d106a6e3793","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"82a8eb5e38ebb5db2fff24d3b89f7bf6c83d3fc88178eb2ade5ecfd0ef6e9711","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"d285d6dc3bfdef9d284eeacb280eb1848787cd05f9609fc5dc20a5a1425f8eda","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"349a2c303bd4625f778d1572edb8cdc691ff51bef93090695e6c53f7b71e7891","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"1a8febd00d4c1e41092e815ff821376013d7c8181e6c9c1f5bbf3e1b2c4bf3d7","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"002718c83f7c924929bb0554026434368cc8414e957fb5b9924ed67cd386fca1","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"4ec9cae487525172a26e3cd085efd615757683930fa09f84d9437342e8c23fb5","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"02bb430e6924120d6fcc65a6be77212e311c57dd953153ff7bf90998d716fcf1","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"511b6b2ea97d7b0e48f5cd4dd6a3f58cac7dc7b86925804b734e9d1b4a9ddb37","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"95b4c8c4d0c690a6d83ce7dde64226e98f808f3b890cd8855846bff3554198a0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"13a782aed91910138ab7ed7dd685268dc58b831b49b1fd1490c84d1eae8d17d4","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7e6c6c5ef525b4b9fab67a76cc59c9ac117030be0e751528995372e7c5eb4b2e","regex":"(?i)^https?\\:\\/\\/honeydew\\-crab\\-342010\\.hostingersite\\.com(?:\\:(?:80|443))?"},{"hash":"7bbead6aa735a834e3a1598767dd27db534fae7006b23f7bab2ec9e2bddf9f01","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fbclid\\=IwY2xjawHrBNlleHRuA2FlbQIxMAABHTjmudRVLTevAhAdiOXwMj7y1DvBpNF9MbRfDZKxdWxWNMok7mbkncb4rQ_aem_jmlJnzaDkP6GQoGYUUBPuA$"},{"hash":"c6652ec9fb4433b827a10d75d60909fb217f22b78394d0f40ca36a3a52d7c75a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e9b920bb1a206f0d5d60c51cd1c1dbeef10ce0e6a3ecc6c2d88a478532988f9c","regex":"."},{"hash":"397f1bf65244cc5d32f89aa259b8b05881aae2e9b809b5664bfda67d9ad60200","regex":"."},{"hash":"f00634904933cf1f1df723275fa2f32c2acc542480e813d0366352b99e675866","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cmblns[\\/\\\\]+cm[\\/\\\\]+login"},{"hash":"f00634904933cf1f1df723275fa2f32c2acc542480e813d0366352b99e675866","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cmblns[\\/\\\\]+cm(?:[\\/\\\\]+|\\?|$)"},{"hash":"d7b0d048d4c6c5bc88ca4f655032090e5a027ee78890463357f7e5b840f676c3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7b1b104b2e9f890df153dfd4c8b1ffd70c6c25c54b08343269a8a8facfb74acf","regex":"."},{"hash":"fd167bd6bb7672d7138e6030f9b0c7b169c467be24413c5f003dde1f534899b9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"21a452325a7dcfa1dc18878432eb1e7504a0d1835509a5625020da6479ba9f05","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dc4cc(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0f554b7973540c46bacb2e073d7464024f1de961d3c189034479a0a89b1c5626","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+normal[\\/\\\\]*\\?cid\\=904693\\¤cy\\=CNY\\&id\\=883734028$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9f6ff6c9db271e17369f703b5563c71d8dc29a54ad2220a2b670b7657509516d","regex":"."},{"hash":"887ac621f6214b5aab70b39064fd3badeaf03ff781a77db1b509d3b48d18efdb","regex":"."},{"hash":"79b9fc21bdf3c2485a381686a55772b8e6b1a42f48d6f28c0371fab1687c95dd","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0f554b7973540c46bacb2e073d7464024f1de961d3c189034479a0a89b1c5626","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+normal(?:[\\/\\\\]+|\\?|$)"},{"hash":"2398bf5e6d5bb93550252f4eda4fd39e53feec9ca3f8642307f512d4f520a752","regex":"."},{"hash":"0f554b7973540c46bacb2e073d7464024f1de961d3c189034479a0a89b1c5626","regex":"(?i)^https?\\:\\/\\/homnaymuaphubay333\\.sumimk\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"3930bd9d842625805760163ebc28486587575d7310b567e18b9b744df63138f1","regex":"."},{"hash":"b2280612f2832baedcb3085877b50489f2e98ca9cf3d373c29daf0198d466ea6","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e554d4163a51179cb996fd3388afc1517dde63b16ca9034725f3554d5755a1fa","regex":"."},{"hash":"a79852a701fe50c313469298c04971b496d372fa2853514cb9311bb4960c4171","regex":"."},{"hash":"5066f495e287e4ee222af786d0b8bf7bafde2a7998422f5889c074e82b77a358","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5784ebfabf25d430d3b1da1a26d91d7cd6028bde7d380de1fbe815472ff3e8df","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+get"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8d3169859e9666f9d46e4eeecefb389c6fd2a4dda45f7483a2f7f0fabbd6bafc","regex":"(?i)^https?\\:\\/\\/zhyg808\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"abc8ba1b4b551790e93c1922d618ef964f41a5c72736dcfebf6ae472e83e718b","regex":"."},{"hash":"0ab0039dba53354eb72e633c89870ff470e84c94f3c2d8021d86e9d479841b06","regex":"."},{"hash":"5aa3b6e3314eb95b458f62a700e3250451ed83b26ca469a3df2463de81dcb005","regex":"."},{"hash":"9825a912e2031d5f22d621022a47507c083edb8b1b7ddf1b65fb6773fff1893b","regex":"."},{"hash":"fe0eee77ce20f73c5013401495e7de8c058d234ff613b5dffce5e4026d4893bd","regex":"."},{"hash":"b579285264315e9dfd55c0e874c8c71e52ef079b9fc789d151535cc17d1633dc","regex":"."},{"hash":"a34012aaef622180f46aa629d3ae4b3128c65296c832c4b8aad00ae29302350e","regex":"."},{"hash":"1224208a8cb0326c489695742826e00b1703d2c7cb8fd8087c2ed4850d651d87","regex":"."},{"hash":"d1eb1dbe446faa6c72cede8ed42033f8267e9f64fc2f9dba7673f5e46dd4e890","regex":"."},{"hash":"d1bd7f50aba79df73bc4bf6c32b21b48d3b79318f6a568b9a3c28bd1fac137d0","regex":"."},{"hash":"d8b4ed6f042a607f32d7fed91b9f0652cbb9103316c9ab928b4b94f665559d87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mark\\.html(?:\\?|$)"},{"hash":"d1a70de6bd2b6de0ef14f34ca5a1432c27d417584ed7d316110f57bfcda3c820","regex":"."},{"hash":"7c2c9b16741a1fa105986810c68fdfdd9ec6af183ad327c5702ddc709502d633","regex":"."},{"hash":"fa57520c4b8bb3b112a683e56a38e7a0ad5f29c336fbb1aa57a6cdf2f46fac11","regex":"."},{"hash":"5ef5d8ddc70077bd96d7225b8fef0b3eeb10a1b68efe8bacb6caa755f05b3ee8","regex":"."},{"hash":"bdd547551e46024d3191d8f13f6cb4aaea001d826db9f5fcf5238e8b186b994c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e8708292c7f69cc66727638c72d550021285c80e56ac3d6f44c6de618b2581b1","regex":"."},{"hash":"3c03bfd963539c9fc90045cb8354359a7d345f3c9a09c85b47beaef6eb3bd05f","regex":"."},{"hash":"1f9723dee20cbc8f41f8f720f57cc3c2767e488355e99b2d90752fe81fdfc302","regex":"."},{"hash":"b79b3d9ee98ebdec9ce28d47dddd3ad47a550bc5b063d4587300d127a5f440bf","regex":"."},{"hash":"021eeb8014163f742a112d1a44802dda19babbc88d23dbc364505a1fbd9244e3","regex":"."},{"hash":"e1c7eab003f7c6e17321976c73adb823c747a604d62d3e2b73a1009e1bfafcfd","regex":"."},{"hash":"8a03bb0833ffd724f73a30bfa00fe64de8ae93c20ad7ea524f0f485a5302bcf7","regex":"."},{"hash":"0dd740c2f5d1b25975e99825ffbcc61a61a6aa42ee0ace3f9f5183aa145a1ff3","regex":"."},{"hash":"f4eec44536ab6a9c2231b82060e309c7bf008c0188223bb8a24d46d3304f01c7","regex":"(?i)^https?\\:\\/\\/rimz086\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"d49d69e8a7459a92ec73142b3c337f0c94b8dd61827cd5ebce60edcac42cee05","regex":"(?i)^https?\\:\\/\\/pub\\-82179997020b4096b5cddca11755008c\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ebdf1f3251865bac865efa971105a0a9c90ab9bd7e0711f5f379dc1cafd82682","regex":"."},{"hash":"8f6c694a082f95319ab368dfb7a0addc52272f7600473440d608f6ab3edd8ec3","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"186e2803b96d99a36c15ad8215f24815d4333f564af5480086d8e0b953a07577","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?"},{"hash":"bd1445d2c362a89877049bc04c95fb68212714c37dc19fec4c3134710d961ec3","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.dk(?:\\:(?:80|443))?"},{"hash":"2637316ce4c561ef0b9d29c7bf1a9fc4d73895bb44c9b1e03bb161e0a0cec8d5","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"f4a8b98c875ef4f32336c363908781a2688f8a02b9f792170a8f25437a0c8c33","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"25c5861a8927de39d981d26f09e3bb13eeecc3050babeac57ba78ffba72f3467","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"550a08b3097ae8ef54fbf33a343cb68b9fa9396029451053443cfce740b8b948","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"22971e273d47e2ac8652c7aef3c751db4f5b191b2604700d251c74242f921064","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"383343fe288f3e5d39d9a1505cdd1a845aee31d151af71dae32f9456051c3cdb","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"91966422da23b394eb11bbd686785fd41969490e33493571c1cc617ed62afb24","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"a465310e931682c4dbde60428483bd59bc357e9e03ec08789e9d539cf6c40cd2","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"299941c14a4fe0b6156833a4ff71f456df52517edfb0567580d9bebf9899e7da","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"db2d1cc8fa9443fb5d805515d4427201fdfbbd6b442ecc74373a48f8c52e75be","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"07ab397d8112bf41926007aa528729f4a8346da224d280bafeef8899e5d28651","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"8f15cb783cd0ab0c4e22a1a3f85c9c5f32c71df684468bb631b00753ebc62274","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"476f37b8d3392b076e9781a36ad435d933447f6c779bffa96f896d2e7aa76d42","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"dd90fefabc334ab4eab1e65e298e4480a043f6545c1b4811895d7586f9b7a1cf","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?"},{"hash":"1be0508307a72f2806d2ed00e8f3ebfba9729cbe1e345e5627435b462c9a25bc","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"7893a8b16da7423e05950bd70a6bcae9b82ccce4ea9844d7fec782055ee05ac0","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"030d8ca5e37492b9c81f0e0711f28c529efd00de5e75fc87543985b8c1f4cc2d","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"de9e99d407ec6e5e1daef264682978b5e8017c8669864361caabae52414070a6","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"162388f34137ab6d199c4dc8edb3b4e67d103eab15d2907b9606c849c4409d67","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"9ded757ca645d329eb17f965a748afabdcf722186687655a1e8b56c04d646d4d","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"5268ff604c7c711ca6f42d9d3e38f5a2fbbb0c37ede8fbe6a19382ce40102da3","regex":"(?i)^https?\\:\\/\\/att\\-1094page\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"007ae94cf1d83d234c4d03fdf45f7fad9fd874c1af0ec0f1e5bf5f6689a11d82","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cae290cf5986178d3b33db474ca42287b4a672aea3f07236e623e5ddc1930f2e","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"130592df9327fcf56ab5afa246141699cf262476657ecf85b49d463c51d1c6d4","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"0fee3b9aa74ac42c53a7df938568cd351973ac182a2805a805bec75054b6d033","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"cfe82e797ccb5f11f57cb701efaafc4193f44eb10155a30ba298bb48f09e2652","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.li(?:\\:(?:80|443))?"},{"hash":"1c0e1d28d44e747286a992ae6d21835092a174548b9fc522ad15a57b0ca4de10","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+trs(?:[\\/\\\\]+|\\?|$)"},{"hash":"acff4741a1201a10a4a8a8aad38fdd1334b958726e2fc24713cd0867aafb8e5b","regex":"."},{"hash":"7db4db7732870446cd0d992241a7669a0bce38271ee5f9375723fafc24d10cce","regex":"."},{"hash":"95671ed58425f91aa055fccfd2addd302f0d71474a7d11d8173c66a861496438","regex":"."},{"hash":"f63b961230e26e0a4b2edb6eece4d55384a7f892fab86d59b6b8b7d9e573537a","regex":"."},{"hash":"158dd072ee1690887d071aef545998adad98c14949012d72c91c58a6d10b4a3b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nl3[\\/\\\\]+bV\\-M7NLO9ia8MYbORcrUTQ\\?hl\\=en$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"72ea388338bda8efcca11540686f6863ddc8374eb145e2274fd6324a7d99e08c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"25033bfd3ba0b879dac4646961706efc1f1d090bb570c90b4453f6c9fb92511a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d8b4ed6f042a607f32d7fed91b9f0652cbb9103316c9ab928b4b94f665559d87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)"},{"hash":"2827e60d0490b210289aa5995b890f44526379a276f6c2bf5ddb42338700214e","regex":"."},{"hash":"10d60f381a22a294552100839c705c980b0fd9c447d5aa42b5b4f3c69c3dbc60","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+visit\\?url\\=https\\:[\\/\\\\]+primadjusterindo\\.com$"},{"hash":"5199cbf60620d940e0cc13dbc4f6bdf3ccda30d9d134b0b0a41509dfd984a241","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+visit\\?url\\=https\\:[\\/\\\\]+primadjusterindo\\.com$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a33bbaba9c5bccdb658633879fde97c580b7b50d2de89d7fb7f16f61076297db","regex":"."},{"hash":"b2c1fb20dd6b54d30de299795e3a76b93ab50a937254e0e1b7a83be663774392","regex":"(?i)^https?\\:\\/\\/nhlasopa691\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"b1d6577b0914e006db39a25e2cd2d8ebe459341ec83c872d51c102c77f913449","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+smbccard(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"914dd276a34a661710a56e4f0a414d85a2b44a20864a6378f2d708b163039963","regex":"."},{"hash":"60101701373a1126dd6ba2d846a79adf98bd1cc56f8814fb0d2e88b4f9286211","regex":"."},{"hash":"548f0c43a8753163ae86ac76e2982ffff78e3c500a623cc840d086b0a03b0360","regex":"."},{"hash":"036712629b8b4a69e790ac6afb0c007a1b113b4294c9f69e42d5e21ab88b687b","regex":"(?i)^https?\\:\\/\\/bafybeiatjz2nkjsmwzwborqen5tqrk2nk2crsi4affsmmrllikvj3wvzgm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"455f3c497f78b034df475e2f3607d6ae858d4e8e38214a206d2b357bec6fceec","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a614818f022a5a8e860abaf349ba63b6c5f104a2c773597ba5000e5bba0726bb","regex":"."},{"hash":"6aa325e120c926b001b1fb469ec6545b79c1236b38ab9615b788e0900e200c00","regex":"."},{"hash":"4a809779b8f51ce3f1ae3dc91dcd224b2675196ffc89db32305727d2d3e92f27","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"378b819e5aee57c8a02122f813e1582d1e5b675d6ab39ba34e27668f33c0ea0c","regex":"."},{"hash":"b4468bb6c729ba206f2d3f8fc9e9b57f44eeb2196698cd9a0e483d722ae1b96b","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0ab0b35fc934cb039109b7c5bfe2f3cf06a80b215835bd606951f3f5821057e3","regex":"."},{"hash":"3152024f4941711b5a8e4f541aadc17db64725bafbdf3ca44ccec8a931c474e3","regex":"."},{"hash":"392883c0ac1f081bbb4cb5b2bbd4103ecf14a069bf7c517105cdf786b7470deb","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3aaf7fc455fbf47420dc702c49caf39d4534d60f44496c135ee501dc5e89a1dd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)"},{"hash":"ca4b6c78bb885fd20497197630468a04b4bfb5ace459d0e45c4b105939340382","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6e0cf213ac6ac94a85bdcf5f28a2b1f804dfb2e8306735df0e8f54c0b29f2b9d","regex":"."},{"hash":"3c64eb73340786da17c3b9e1abc20f4ad854e6476bd05a5e643178b927893a92","regex":"."},{"hash":"b7abe7ea9f815361dd8ffd4c82d41217a6a18989d9e01b977d9527e0a09c9708","regex":"(?i)^https?\\:\\/\\/ampj\\.xyz(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"83074690315f41bef237cd00afe9c796ad717cf838b07be3fd324363d2ef6025","regex":"."},{"hash":"ca5f65ba32b3798f6ceb703c44f01108867cf22c3eddcfe96072bd2e027b968b","regex":"."},{"hash":"80d89785553f7e04fe1625400607735f3fe72d5e5300ffc62f35a315f3edc78d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a4fa1b2dc0ee382ad191db677da917e9038ec3fdb4ce388bc7a4d5541f488238","regex":"."},{"hash":"6deacb6192544bfaf7048a95a4ad37f6a11cde12be9fdb4bc10cfdce0725a9ce","regex":"."},{"hash":"58b164b014c845abd963d0bb2d6c9e7b3672881a21feb33d737273995b3a4f4e","regex":"."},{"hash":"e08de5b82fa59339dd00a90a29c8be796059d40ecfdd63fcb1ede7ce189ff0ef","regex":"."},{"hash":"f04b648df845660f84a20d875f7a78372c72d8b2af3d605026b595bee842ff98","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydvgakv\\=bhawddn\\@hsss\\=n\\@v(?:\\?|$)"},{"hash":"8484c082e17f3e8e47b2c8ef1a2d5a4b484917ec2af563ab79449052620c4637","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+assuremaladie[\\/\\\\]+conf[\\/\\\\]+macartevital(?:[\\/\\\\]+|\\?|$)"},{"hash":"8484c082e17f3e8e47b2c8ef1a2d5a4b484917ec2af563ab79449052620c4637","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+assuremaladie(?:[\\/\\\\]+|\\?|$)"},{"hash":"0ab00022c7fa8c334daea17c2cbb4e25c42453e8998102b27f47d18b13e42c5c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b0ca29c5401f3ce5bc00c0ea3e44b0b85a54fca06909385c83855cf60cfcfd5a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydvgakv\\%3Dbhawddn\\%40hsss\\%3Dn\\%40v(?:\\?|$)"},{"hash":"2137a38196b58a1ac71450a1d5b5e9d3e3da830d82ea632c6005d6a7d45913db","regex":"."},{"hash":"cefc7d2a734e4de61bf416786d6f0a3f3ffa9670f43149226ac9f755210c0aed","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"777cb440978ad87bd1c4701cd56edff3f514e56a2c9b13372367f756af5b7037","regex":"."},{"hash":"51731caecfc32bad09b165e823beb25e521c5477ed964f06641f207b4d19b592","regex":"."},{"hash":"2e8088e3649ddfd8b037e1af582e8a1f1050d27b6f978c7906a88f0503519d8c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"58524f9dc5a34e38deb1d6f5c3b962e64227b3013697b3df6026a4fc96764870","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login"},{"hash":"58524f9dc5a34e38deb1d6f5c3b962e64227b3013697b3df6026a4fc96764870","regex":"."},{"hash":"2f4fcd8c646598d192f4ed78980c77ad1aacc93d6370f774a355f07df14c4913","regex":"."},{"hash":"ae5fd75fb2717e073425063abfaf751621428d249d8ef115b0b7038152c4e420","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"38b03ab23801bef614cdb6ff9441bf3faf2d8387ef7ce7837f13006edbd80446","regex":"."},{"hash":"bb59f776f2c0268425d89e1925f514d8acca0bdd3d90d41bbe8bb12fe8aee23a","regex":"."},{"hash":"403ac84870f6b79487b4b4c0bf4343975e9fc8b0cfd03256250be44c2a45b8ec","regex":"."},{"hash":"0a23ab56b0de28a9d50e3856a0b2613bb5b06f4992e012331a1dea3a3d445c78","regex":"."},{"hash":"623d9eb43d91908f6db8fe4a3d835da18d25c06b06fa3bd4cc47a283b1ec0743","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bc1dc031dc84a65df34b31ced978c660888b0aa57a54f25c103ab2b0eb95f2ba","regex":"(?i)^https?\\:\\/\\/enlasopa907\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"c3e602b7553123ca67065d5b8a62e50ef4312e62489957abf903ea9fc2af064c","regex":"."},{"hash":"520ec8d9a5b309a261d3b321886ff9e90a38d2f26e8039ba79c18168b95efc89","regex":"."},{"hash":"5bed2a26f4fafc53feb00e524e010bfa554e77cc50ca0c5d21204dc2945dab40","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c93d3112f4925fc1891bde57a59fc3ccba7b9680d26fc842a7aa83c8973cc9e0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"933e6aa07d4562e83e7285c7a0642f2f31c55b8b373a665cfadadc5ffe1f1513","regex":"."},{"hash":"52685bd238b8578c3307810d2fab2b1374604e6375e9ed383905e870e158642e","regex":"."},{"hash":"657504d8035b93e2a45d77c3737c8af4ae024d235a679a578602ca5f337ec517","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify\\.php(?:\\?|$)"},{"hash":"657504d8035b93e2a45d77c3737c8af4ae024d235a679a578602ca5f337ec517","regex":"."},{"hash":"a877c5e8c7391f3d1a8a862173bafb5a0321ea480d20c6484962ae56b0eb68d2","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f8c0dd4dc9d22bc33120d95313cb1b5adbe4f6b28978c947e6d8888d500455bb","regex":"."},{"hash":"01a5d40b6c6e1e1a0d4db049f765225426047fc09d02194568b6c24f7d7889be","regex":"."},{"hash":"819a7024788531cb13a2179a8d8bcb87818c26abd305aa86a9985d49007ae25c","regex":"."},{"hash":"18471b1041fa60a0d74d3faa2f6ea4d2a7215bc7fe53058d2656abf29cdf8fde","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+form\\.html(?:\\?|$)"},{"hash":"9376539d41a04ff4400f979dfe704eaa2d9f872a5332e641dc7180878a195caf","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f41f2929efc5839d3f82c9096d7c9b763a8fb572c7f3ff3c3af69118e579cb98","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"882dfee414036591ad79bab844d896c8f4c247b42d4162cc1b705c1b9719020a","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"7a5ce6ee99daed552146efda0377b66530be5f32f444dc0332fe8e40a4918cb3","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"45415f47b899e95a8e23827d98d05e79e15bda4625d17f5db929ba0d2ffc1761","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"e72e990ce956e67b629b8bfb5dbb0c62c541f132487fdc8bf436445c94da03c4","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index2\\.php(?:\\?|$)"},{"hash":"5c90dde7dd8106506443ac0be9eff8279638a1b2e01866fd9a27ae6362523631","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"6ebcef14ead6eb84e80c8d708cee1e6d2a88f8a6d95ff8563b2f1c04c4c5c9b9","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"dbc8ce5f58d1ab061305c28c6b11f7ca0b2baa56435535c522d106c13408b1ed","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"8cbbe8cd7933a96544be3ad8cffaf4ce311377d3ca4ad30a06ade38bbfe1a922","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"3886c3868adb76310186735836a0ecbf9186cb713ae527f2c3859efce898a831","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"66bc7f8f71bb7850f1b0f0da3b50408fd6a925fdc767f7bf220b370a045aaed4","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"aed81c1920931c7c21d219b2dd136fc699d1c4ed1f4c764f08b5906f5eff9cb1","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"24559dae93cbc202e3ad874b0fd2b154804c371618771d5c53d4c753528ab9ac","regex":"."},{"hash":"3131f230fc2134df04b3509885395ed5d7292736ac01a0ac9d16ec71bbebd7a5","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"25b6c2bd77b2df01d1967476642e8e3ff6a25026ef3962972138d51d8daa4d79","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+valid(?:[\\/\\\\]+|\\?|$)"},{"hash":"dd6ede3175b49a73f3e221146a5582af9adf46fe10c44c469370cd40e281522d","regex":"."},{"hash":"e72e990ce956e67b629b8bfb5dbb0c62c541f132487fdc8bf436445c94da03c4","regex":"."},{"hash":"b3c6081d5b2d3f3bde8d84ee6fd47e85df645cde789854298f85fd567b6ab69e","regex":"."},{"hash":"25b6c2bd77b2df01d1967476642e8e3ff6a25026ef3962972138d51d8daa4d79","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+leeg\\.php\\?session\\=677e58d7896be$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7cdae7d84352519b032e58d905c51052cb736275f00c0aac4a0408f66a5ae2de","regex":"(?i)^https?\\:\\/\\/pub\\-4e5d110e4d7e4d6c8f94fdb1ba300d3d\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"0a922f131e5bbd34195830b070fd72184e9b397ec02629e5f8d89cbcbb50a4f5","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5e71764122dde5f56adc40878e46e46462ebdafff06134943d93aa51ca73867d","regex":"."},{"hash":"0ecbf5c5064acd20e1568d6b55bbca3d7820d3a4b6fd1c097f7e5f6be3c7c689","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"94b130c7e8956db36c4be1f21c183e79a52142d22c636f353c16a2da9856073c","regex":"."},{"hash":"14b638d23161395152086edee9cb73d14de889978768c28874bb0a2ecdd853dd","regex":"."},{"hash":"a5434bf1f91f271380876b42045cc11b88ca0eaf0b1961d54634bfa1480ed4c3","regex":"(?i)^https?\\:\\/\\/coinspot\\-\\-logsin\\-io\\.webflow\\.io(?:\\:(?:80|443))?"},{"hash":"c9839906fc34f9d75a33ab631a283a68818ba24f469e1b2ad811ddf9549a2c42","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1e62e040ccc25f4746d22a42eb4cbaef9964ef4d6360ca04105e0afaaba3d6c1","regex":"."},{"hash":"5d3c12ad593e236563b3e13c52b3861227bec40f585e0e3bf3f18c10dd1443b7","regex":"."},{"hash":"c407784dff927968931e6ea87938f520806dc9ecca8ca8a29982cd037a342b81","regex":"."},{"hash":"b416991ab4a89aa929d74080557d9bf2bcf052a93360fc7a0ced27f68a508a97","regex":"."},{"hash":"47b6dc4ddb2f7356ed49d7de426d52e50fbc19c27cf69fe56f81c4d8cc9a4099","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"57aadf58bf714c168eef74fe453b96c53a4bd476f04c863295e7bb21d231ace8","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7aa558b4ff02f0ff497a4d22b8b6907f69bf63b94a9c1218e196ece05686d7dc","regex":"."},{"hash":"c6baab1d19b3b3965ba0703551b31706dc156d4024ccd21cea3b7cd18777ca0c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+basvuru(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"007944208309549ebbb24997db6750f7267e763a1e018d6f115b90da1767a529","regex":"."},{"hash":"26e50beb742afa165c657f5ae08e305f49eba7ca7a0b675cd12da1a0237572a5","regex":"."},{"hash":"1ccee1c4481c5b49e954f382a5ec4ea9b34abb4cf6f34c79b217fc65e6e69db3","regex":"(?i)^https?\\:\\/\\/kampanyabasvuru5\\.duckdns\\.org(?:\\:(?:80|443))?"},{"hash":"e1c7c943802010842f24a7a7d773e608a16cd2a0f1c60a7dfa2c340018a6f793","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+caspilot[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"13bda504b838d2c180dfa375e284a74b3760b39fbfdd9eb07fbb937ab3c55dc7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bbva13277[\\/\\\\]*\\?\\=jesus\\@transcontinental\\.es\\=\\?\\=ok$"},{"hash":"b6548077693b2f66514c92c0a5d862b90bf0bea0b0b5a8025a48354fa9284601","regex":"."},{"hash":"37df91dc7140c61541fd5c13ae2c078b014907db4de8b66294f88ce6bda62599","regex":"."},{"hash":"6c7011eb4628c6b95df9dc6fdb257242d1d8751aab7a6cf5d97e8fed098533e4","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d78d826b2dbba704e32d2d269a616d47de2563a6c5189fc042f8eda6005b87f1","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"2be83ad4de433df53dbf842f9fb01c26f62db118892f9397010abd8409d4310d","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"731954393f2c413c673f4e94f9153cfda5c45de69d8566c3bbc4957b608a0f1c","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"2e590677b285a2868332d9cb763efcd0c4c31ad6f7dede53c7fa187b3f1e157e","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"d26466c37216d4033bbf58a277535b25e84f6d52b601e6cbf7dd57e045604ff1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+druchesk[\\/\\\\]+pages[\\/\\\\]+region\\.php\\?lca$"},{"hash":"61166c701afb90bbee359e55dbd6430c29c1455c2d599a0c72329949d3adc5e9","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"3bbd286647d59e95745f11958918154a9f016ba5f695b7aaf304eac8f315fc88","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"d92a52e156832893bb06ce558cdab7178cb3916503a8a48f0450a044f28e6173","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"f81531ddb6cdf58f6c1317526bac32b842aa13be5de7d8ef83d9f92ad5116b42","regex":"."},{"hash":"d26466c37216d4033bbf58a277535b25e84f6d52b601e6cbf7dd57e045604ff1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+druchesk(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"17b3e329a184facc642e4da885ef767eca8e363d259c143cef2c82f68b4bdb1e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7bbead6aa735a834e3a1598767dd27db534fae7006b23f7bab2ec9e2bddf9f01","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fbclid\\=IwY2xjawHrQhRleHRuA2FlbQIxMAABHQ\\-Ya0P8v836q9yYkYfnzXixmNoEzY3SGmf9V0IDh4IhIu4yylm_EccTHw_aem_yV9T1lXtWgjLzJBajt3dVw$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0646dbf473bd97a992b8f8d0d52ce08119049c59b858848dff01e5c934949432","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+klikdisini\\?fbclid\\=IwY2xjawHrQ8RleHRuA2FlbQIxMAABHe5aGPScwQ5\\-WHUeI7AxH0k044GkBSOmEywXIgQcDY5SO2AgsZR1jZGcVQ_aem_IGot21\\-Yxnolr35RFMelYw$"},{"hash":"0646dbf473bd97a992b8f8d0d52ce08119049c59b858848dff01e5c934949432","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+klikdisini\\?fbclid\\=IwY2xjawHrQ8ZleHRuA2FlbQIxMAABHcTeln0pUtclTe_ErWeWC3TNj1SQsQzqX7f11p0eSf9_Xv\\-E8oWI6Toy_A_aem_qEx4b9qCHRvhZCia7iKO4A$"},{"hash":"8ff4e1292fb25224a22f0c9c45860068d6ad808b485eb962c319a187cbaa4b90","regex":"."},{"hash":"7bbead6aa735a834e3a1598767dd27db534fae7006b23f7bab2ec9e2bddf9f01","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fbclid\\=IwY2xjawHrQ8JleHRuA2FlbQIxMAABHU64xdhEfFwsSNxkeKr3H4I34UDLEVIY08SCvGY5EeKJxhBTHiyZki5fFQ_aem_UDXL3fwk29cKtMuuGw3IHw$"},{"hash":"e32e2ea546a167889cec6ba7a3c48cbe55a4d7f250d9652688e15d6be9f9126c","regex":"."},{"hash":"6a8d27cbddbae5e249e5ac4f613dcae0d149b0b93a6157f5a9388a6e9a816690","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+get[\\/\\\\]+221237177(?:\\?|$)"},{"hash":"6a8d27cbddbae5e249e5ac4f613dcae0d149b0b93a6157f5a9388a6e9a816690","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bank[\\/\\\\]+ersgeorge[\\/\\\\]+1736338064981\\.7244(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56e6128b52be908674138f26785f4833bcfd680e2fcab54dc48df030d50e09cc","regex":"."},{"hash":"4c43969f7e0046c118644fa5f7182b6be83d838bf23f6b8640ee6f94a89c2451","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+d1385(?:\\?|$)"},{"hash":"7062cb9ce17d1dcf52ae2bf464857a929ee88f140c3b0edeac1efe943f15a722","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"34757d02c867d7ca77a21dd43d47068c2fe473c7234ef504315faef0bc386377","regex":"."},{"hash":"aa0e4bca0cf57f7f9c2c1358f48e38c1a32c3cf9ff841d2e4973981047a2dd58","regex":"."},{"hash":"337e566412c688b7a5fbf163ed34ebd0263c85a92d2805935699586d0da30af1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cid\\=401941$"},{"hash":"81adae1b7a2ef2aec8148865c04de19e3f56eb7b491813ba3a7402bc999816e2","regex":"."},{"hash":"9908fc2ec56294cf87a34801f462da6efb2bff230faefa3b1792fa098e2e3cb0","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"f5bb48b425e1122e4420aeaad676ffea305eab44e1e4bf2f366307e7bb7b69e0","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"4f0d03d7a4d941d82d7b029d0603df1075f25eccad7387d62194013a3f4ef8eb","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"d7de4ed81aa2dfb468d8e2bc5bffd6f17767ef8d41116bc5c55dc75e733e9b62","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"5b159dfe365affeb2577f64d29c8fb2911c54c0a15343f257a1ba7f79955c15a","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"96e80edc1c2a7a0f5dd998014f9ac7a70a1602bd07876fe6aa16f41ea7adeac3","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"886ded7b0604bed24747509ea02d35384cae044d76b189f332e7abd51dd5b054","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"74d88ff022962aa4ab842323b4acbfbe3148923a2cd57f8dd578bf5ab8b7db52","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"96e8bc5ff243e9038cdb826d923ca6f8411c04cd2ecec705ced3d4d092a0f7f7","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"86e8bfc0eab0b23fa4e8775aeccf8bd5e821e62c3327b6d00780c9624c55b47e","regex":"(?i)^https?\\:\\/\\/inamzon\\-in\\.shop(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)"},{"hash":"01480ed65ce53eb1ea6b6ab3cf19a8874a4fb980e88751ee5982a2f1f2b2e4f2","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"465c9ece91846474e43a687af41d1cce1364af57db27c037bd019a5d61250e3c","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"22e838933b1f22a6d5d587f3560517a7d0b22522db96c4ba0e88399bd3f6c1bf","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"0788217469373c047e9d640c3b1480961150fb20703e014b5e9fd379f49c9e6a","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"0236f520f47908efaec2a009fad3c1a102cb42995b72215618b1f52941e1bab7","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?"},{"hash":"61739244e6402f3bdacf8bf32eb0d1881dbca227774a6c138863c776803d57bb","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"cfdec9f4c0acd4cff5ab8bf17f7cad65109368868f8538ca7b7cdafdef4f0577","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"7d1d36fe6e18db30736c3ccaa73f949168113051f05b23797a974594919698b0","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"8b662a83d14ae449624b135af885d620497140c0382b4d0c28a2172cc58bb0b7","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.li(?:\\:(?:80|443))?"},{"hash":"07b1a8f7cfc0995e9055870a00215cbd75a8b8505f971dd304c121e0fce8daae","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"a177ce218115c346cf03c14685ff522630ab5459e1ea8b8c8c8a29f5c3ff27d2","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"0d0a2c3941b926a53fe48c9a0433d20b8ed02ab4b93936b424f761c95fbe94de","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"66bc2cd86c0e6d696a14c832c36e2f9d63bce93f0a3bcc2b8f48c72834160e38","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6a8d27cbddbae5e249e5ac4f613dcae0d149b0b93a6157f5a9388a6e9a816690","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bank[\\/\\\\]+hypotirol"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ab3c1de8a9b9cdf768628b8456f53d6f15f1cbb37f04b370c7d857c9ba50d2f1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+proxy[\\/\\\\]+request[\\/\\\\]+39734366ce367568c661fc655a05e0a983cf3(?:\\?|$)"},{"hash":"05a0626749e003adbe1b013ebad0893a9e31198a72890fda0277e63c30504404","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0646dbf473bd97a992b8f8d0d52ce08119049c59b858848dff01e5c934949432","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+klikdisini(?:\\?|$)"},{"hash":"e9237965670636a1c3ff66638c6a23b25a76056123d01c7ea09741563405b374","regex":"(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"fbc9e691fcd079032ed46939a522866e0db85a0ae9d3a46806d5c4e44b3fb56e","regex":"."},{"hash":"5f44f9b922acf30e769a68e7727977a97ab174bd4f0fbbf891f1095d823ab97d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2b0f77c7256409311e8a36511aec01ec335d6f001b6a1f0f910c7fc86cc8d6b9","regex":"."},{"hash":"e0607d7961a41891d7bd7b83cbfc4a5a1952ccb2c4327cd24de2553bac4dffcf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"8ce0ec34c5943c3f2546026e8cd6f249da93b1d375e496ac579783e7a2bbba96","regex":"."},{"hash":"cd1b41933e9ba2544c4001fcb17c3fe21f4ccef6e3584537fe6b9ca38776bcc5","regex":"."},{"hash":"e1ea00bf144b8ea490c31fafe994ac78ceb253347f4b453a6161283d9d4c3c49","regex":"."},{"hash":"bcb091e87c0f1a06cb1cf064eae0a7a5644f7c1ac01777d00ddd6d7f8269c915","regex":"."},{"hash":"681fc301cb918339f2966eccbd7550efc9528f8676bd289dfc80dcd4a2b22186","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2aed3f72167f217d407ed4fa537fe200355a7a8fb4df8eddc7e1e0dafd539245","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9968[\\/\\\\]+entry[\\/\\\\]+register62899(?:\\?|$)"},{"hash":"2aed3f72167f217d407ed4fa537fe200355a7a8fb4df8eddc7e1e0dafd539245","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9968[\\/\\\\]+entry[\\/\\\\]+register62899(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ebd889a53dde43d768a0907ade97af6cfe784230b113bd519537a5c5310499ad","regex":"."},{"hash":"1fe201e711876a5378008603b3f16d2b2b2a2f2640ba33fa7ab1cc15aa60562e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+at(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4801ae5d44dbf82a6fe906941daa1cd55b49d521d0ad54a3cabc6fdf4197289d","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"42357ac66e5b365687a7f04bef8c8e980929253243d7f9ddf4e5509f157c04e9","regex":"."},{"hash":"ed1200de10372f381a830b556a24d0d24c017b495fec8cbf7c9112ba80a05a7d","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"35e09b441a7538537275a60ff3600688fe105c2428cdc3462c5412876e550bed","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"67f2b95f7f767c4ed758257999737e51f9e752dbabe1699eec70b2f29f0a5cba","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"d2eb68dfed70434e1646677cb262988fe67bc56647390edaf77ca3f2fe1d4b16","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"e79f5dd21adf1fb8379f870225f3bd13ba27bb6cfa728fe6d4dcd0c8fb6103bd","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"b576982203573cf5444acf7c4942e256c057739a4df67b2e09ae08215d9a0225","regex":"."},{"hash":"52be865862ffb64f3dbd8ef5ba51664bdda166e151c567f6c286bec716aead02","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"e8c59511c6030db91084a9e780c41b77df243b043faeacc4fa2f647715f5cd42","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"577283a3eac1c6e6b0f72ca59f6e422a6e90550b16e62bb80c670174400074e3","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"4df037f3711c64d6aa0c3f2d9aa3b01d3530680b48373c3cdc0a0cba1fee2116","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"bc3b825d89f896b2ac2e8667cccb63dbef1ff903f09262c41e1e4dd18fa69bed","regex":"(?i)^https?\\:\\/\\/www\\.livesupport\\-ledger\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"8da7cbeb362e5681b574a7b3376fc1e0d9d63958d0d874107f038ef120065dfb","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"817f07aff6d2192ccebb77806d19db573eaa03e5fb9ab408c2b99544d6304e34","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"91fc1c8524e6145e772f3d0e9ae6f3382fd380849da2d0b5d9d6b7e662111cb6","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"4ece03f0743fee059aa11c873b7377783fd70b9d386797385ef19de864f0c9af","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.dk(?:\\:(?:80|443))?"},{"hash":"9c95a42690914b276a03ad20a353b7b9f1bc6dab9011b14996434f8781f6fa47","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"e7d785665a82bca7db2ff8d06a8c05c1cec30ec26d9c9a68898e653259beb3ff","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"0a9c76f83e1760dcfdfdbc0f1ddefc6d5cf8909a819de4238e93fe45a8e6cbcc","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"6f623249f10a9e7064975da09419ec6f9ff4248e0c49adf1672e1169b6612e8e","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"eab974134455cec75ca329f30531247994a4a1000a44eefec1aaa64639e31f48","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"76db50c69e3e3c6ce191031d86640fe9e5ad063289dcc65c2fc12ea9457892b7","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"e6f0aa2aca7a98b7576e68fcde2eacd835f2ec78320ef9d5350017d8a2d3edca","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"e5544e4410365faeab0f984eba87e1c489c6022f6b686fe929640df8e88fef63","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"d5e49d871143e1428391e61f3d269c0cc160663d9770a66c8404a9137f9bfb5d","regex":"."},{"hash":"0baa98d1ba9e8b0cfecbd2807e1adce22a1da2f1be5cc21ea12b9018cb6b1641","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"d399ae110340be497ec7aa802455cfdd7d067e71c332d8dd3e63405cf56afbc5","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"ea50efa09711343d078a13197e4cdc19df5fc856243a76961ad85e256b61f751","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"c7f245885056b2078954d68f99d8f3f3a6b7098861d6f7084e64a093732afcb9","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"ed31692f383e87f659f1e9b8c3c3e550ec43e19edc247dce2e5b123e459f831d","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"42531974614b6472cb9d5c99894958f4fb35ddbf47e50f975be4fcb36c733eda","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"55ab3e3d49a412e936097e6c32520bea96a57d4eebde2f8ce30964e31748ea03","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"9768b9a53978406c450edba3af8d5996dc9b1fecbfa2272539481df0e2f622cf","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywup\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"d2c1e12bb04fd89a435516b5cc90b75001dccdc708f321051c5042ddc6e94b3b","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"dab496bae04658f66bc8953e7e74b599f46d317eb3cd4a589dc3309232ef3d47","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"7d35798e3f30476c4abe2fff28a169beea17c7f9851d28534bb29785e4552154","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"8e1a9e15c44b74f502095d4f6a7c410df9bade4977f468c68780b26adb84f6b6","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"babdd4d47186627d83ee44cf7ecbf8cc7856cb95ae9ce5a97e62fa60b26ff0b6","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"fcc694699042af2667347ee2c301ce161ca5788e774b6a0605d9e16af45f1311","regex":"(?i)^https?\\:\\/\\/sucrusabaml0mb14trfiere\\.firebaseapp\\.com(?:\\:(?:80|443))?"},{"hash":"aa0bd64658b4f46900817952250f0fc546ea860f9de415b770538ef42417b676","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"82c9083a870af164f48debcf3b31cb4e839b9d35317c5de28ff8a333c458e624","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"97721ca0f0e5cb1df7754ee0048e90d2ac77813653809226a17fa343f07793e0","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"291e96eda6e463cca459e5ff21fe816d52da34c7d4dcb5b841ee6b83d48252c6","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"c59a8a44633cd7980c864d4c58c2f8aa3a919b8cb0cfc324f0c064878e6975f1","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"b30b2665775f5560d5ddfa34af704275861d1689cb3f0fb31e96e2d15cee2c7b","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"1c5bdb3fa0c1bb1a2033530c5f569525a086d4e5e46c323bd46b96763c12c426","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"8429680de8e7bd383a951951a815c57109f098f7f278fb2c493a8a063efcc075","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"c884186d6d6f89538932685d846ddd4159fd134aaf1f3c16e17f976de24af21a","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"9f80e8fb4769ca74abcdd343ceb55c68733232799866df02dcb8ca8ecae1dae6","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"cbba6796c19a22a9f2d0aebd187e2b3366fd644cca5fe6946ecc90cb4d647840","regex":"."},{"hash":"2a24d117606d58d84469aee27fc0e2d2bd9e676b157b0ae2d414b731383a3f9e","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"2747a4fc69cd7218c43bbdf203a97469c96fa47391d501561ec8b5fa40146f8d","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"c7ae10f097ffa28bcfe12260ba1134ae028107196a2edb9717a2389bc39c1fac","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"c1aa90c7200556803377ea2ba005946e6663dd3e67bb43cab53cb15f3e995a25","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"6394e10477a21a56d8c0ca298e2a2aebb968412a09b2b61acb987a6ad9d5ca69","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"20f7c803231e99ccdb25f3f4f952dd61f2b9fba6aafb1a09e08a7ccf5da62450","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"7735d902f1d26508fbe456fc4276f29c5e88b817820ac3bc89b057c3cd70918f","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"f921f7f775e089c0f5ef8cf062d6bcab8537954cd7883ac4c2cee26d8bed14f3","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"4c4e78bf0a195a4b3806a0e049d1c29342f621654e8fbb096d53085789a34be6","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"add331eb6e71017eb88adfa3a5547da99dfdc270342461276437c0dd79da91b2","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"f3f76899e81d81c9728b0247afbd2f0cdbcf0eb6ea3300d7c1da5b473ad294ec","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"3e72a6236d76b56e41743ca012862c644cf5e0bc09c1b1a5dfd203964b7982bb","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"2f8f355f7fac6a7c1cc5f54da8509fd0b29a44b9060208dfd5ecf1e649feaf12","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"055dcee093a972a7f5f2f3f69b31d22880f2665a49d7fc0e53fbb96029847a6e","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"cfa56a701b40d091aa86c1e125394df6efb05587b27bcf9883263a1021d8d8c8","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"8dfc3855811358470113055587cfcb3af123e62afff959ef0dcaf5b016f6a7f4","regex":"."},{"hash":"13bda504b838d2c180dfa375e284a74b3760b39fbfdd9eb07fbb937ab3c55dc7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bbva13277"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5ec25bb811cc99e94b08b367ad91c15f93f8bb2bfec9109ebe3928384ada8eca","regex":"."},{"hash":"a17297842d1174111d232752617c03d7bfd96d766f3400df24da37b17862e85c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a93f37478717b48f1cc45944fc06e83aeed7e35a69af0569470bc8709252f39e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9768b9a53978406c450edba3af8d5996dc9b1fecbfa2272539481df0e2f622cf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"91ddeead2c6bb534d5bbbcc3e6452f24da00443e18e13be2ed9a878ad98197c2","regex":"."},{"hash":"6d4b9c6ddae0df9349694a570ff2f25d455c98b26cd51fdea0f0eccd625450c2","regex":"."},{"hash":"c0f5b7f690e3b077400f5fe6fa280db1e0be0c2e7b5c3f7b5628d6a2cbe787fd","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"3dc883ba8c0853dc37bb11618dc59a5e1de1daa2161bb191c1c10756128470c8","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"06c09145fa92dd51c1ffa89fa16f739faddacc80368625599403cce98a1c10d1","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"60f489d358033ef4cb501df9342623ec9d6d9a1298ade3f56c884e3eba1c3425","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"2a5d3fca9eb2036bf17ff48b002bf5afca5b8a010e1e173bc30f972991bbfa86","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"be30c7a656ec40f12d067802cf36808a19cc9ba15db19cd2fdcfbaf24e3abdfe","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"31bb5ef6f3f0d751fa16ad946c97ea1d8601ab01a29cd3f70993e891432c627c","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"02779ef537f26a93e8886cf7d60e4283009a14790f5e2482b941e339ef5e1b23","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryluf\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"91fd4b531f99c8088fc1864ad7994eca3f6c85195dfdc4fe23f62fb7a353791a","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"44c768d2e443b4fc18b9d18f7b302eb5bb3c402de5065cc371176c675aeda1ef","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"e8555a82e17bc056be46d8cef1c19df5d844e9d8f3b8dea26116c2cf160ebcce","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"6810e9062a8db27e685a2bfbef34946169207e59ed06bb1dfd848a0cb3d63299","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"b8bb4fe7c5aa17b9f990a12e5279636951b8313359450278ac8ccac6f6e9ff3e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b743248bcda566a97dd4e5809f4324697d87c738f67401fdde865b2890accfd3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4c6eddd9fd7419339e0901d8c93a1e19527db396b60cf47ef929c2767d476b16","regex":"."},{"hash":"1d02457cd6bf6ef656ade95ef5992298f6a8424c8d9b4cec21c2da694a5ebee5","regex":"(?i)^https?\\:\\/\\/informed\\.deliverynwe\\.top(?:\\:(?:80|443))?[\\/\\\\]+l(?:\\?|$)"},{"hash":"bbc68b3d85a5d87b3a81bfea9d5129e78f1979673303fbb3d381357930f3e226","regex":"(?i)^https?\\:\\/\\/n1qg0mtc3r\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"307eada0c5e3a46639da9e5f76410152f71ad275536ddbd89d372702cb5825b2","regex":"."},{"hash":"2a8e84f7198c59f6f423f76dcd619fb2191817ef035f7976e11e562235d367d5","regex":"."},{"hash":"16232aeb3561590326f746c95a57f0bd711cda59c030d526eeacd0eeb3f057b5","regex":"(?i)^https?\\:\\/\\/informed\\.deliverybac\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"1c0d83c45b3e3297b6a3aa09beee1eb536f0ea81ba2114e7d57fa27fdb6ee8e8","regex":"."},{"hash":"e61ae9cdaacd8b8655bb5c8ef5b008f6ccf2c7b0c9f23815b0d9bcbb996c8132","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"d740d8ee5e6b7564d33570e3bce56b34a12201f4e883502f788aea005aeb0ed8","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"1d4d65acb8f06cd6988700c42d3ac5a02d9d0088527f80b99f4d0d7324c75acf","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"7cd52cefcfb15cf7d1d4a1be147361a68b0734a3e75ffa2e5ebb5691b4e7bb74","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"da18e31669bb0b5f67407e3a89c7d0a7bc4f9246baef9528211ec710935bb363","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"47bee3235748ea1c9a770b70d931a2019dac85936f0dd3210ef73c246191dcbe","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"fbe68e74749ac8ef8f0545846a5fb319553db8d712eb5944c4dd36836ee78767","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"eed492edeebcd638750f30cc1a36785a36bce88ff8c57e0d25be1db4718b27aa","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"0fbb45433a04943a254a7046f34a31fd97014236aba31e6cb656f2edd164b0b1","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4254f50fcf4781a8a9c312548b27fae1878c11ba6b90f5089e5f96648fe076bb","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+(?:\\ |\\%20|\\+)+hW32467DQPMJ5YT(?:\\?|$)"},{"hash":"1b00e19d2edb5549395f07c5ba944e3cfeaefa5e13c6f3fcad5d79a99bb009b2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iss(?:[\\/\\\\]+|\\?|$)"},{"hash":"78d523be3aabc4127d5ee899e05f9bf9c1ad47aa2ef4f6476315a1e60e8cd9eb","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+formosasorteoshm(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"25c506770bb8d44842e9d18786bd563085a1716fc7ea5705f91920890fa61f2e","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywwn\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"51376dcb983f4ee979ac85c557f1fe7a1f0f27d196750383ceeaa154907edb14","regex":"(?i)^https?\\:\\/\\/micros0ftloginpage\\.netlify\\.app(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c22001765fa4058ff6b50a5bd8c85777163bba688013584ffe8e5afb89b3f02d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tvv(?:[\\/\\\\]+|\\?|$)"},{"hash":"16232aeb3561590326f746c95a57f0bd711cda59c030d526eeacd0eeb3f057b5","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"6ea861d4398a036f769ec4870f7a6fbf2da2a6e889a4c26caffea0880acf23b3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"fddbf10cdb83c924ddc2c4dbbb17c4d2ea207776b78a567194da58185cdd9a76","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"4d1f93af1b75b9b32d8038ea7e0ce53e45da4440dcc16c2070f29b063e847ea1","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"09a4c490cb1f29d5c8b25607e80e315df621127347cf80f6ce3ef9e66708f5cf","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"86e9205ce0c21e293e540c2680990ea608e2e083347bc68d55f70b82c232ca7b","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"248c5e8ee48c1a14334c78bff86b81c02a59fcbbbe391006bb6e0a1397d49c6f","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"fb5caf90655d3db1500996777f7cef611e2d9e2feecfbbdc6eb5ff3585e05ce3","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"cdbe3f73daf245fcce2e6b78a2d9feca193417e3ab9ed58b56fef86223570c48","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"617332208269837a256ec4bb9344ca7041816a815b278acfc91440829a4d8ff9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6007c58bfd937fb8d2b331143001c4dcebfb79c3177c05e8e9215fbe3011e7d0","regex":"(?i)^https?\\:\\/\\/informed\\.deliverylik\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"2cd4e1970cea799afd15fd0c336b9288b5e1d0ae9f3f6821827f5b0a30b427ba","regex":"(?i)^https?\\:\\/\\/informed\\.deliverylek\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c99a52e4f04d6074dd9f9c187297ee3f9afc24fdf9b18cca22ccad72acd4ed7e","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"4541ee6e336367e1abc3fe79a2ea63f2b35380fdc3543d53b44d6441356b8ff8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+atendimento(?:[\\/\\\\]+|\\?|$)"},{"hash":"0a1e8292645d8d425db33311fb503b62592e811c9d94fa8b9369a80df8519e34","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"ef163406b23b4bac97cffd0b99daf75379a83bd4cb4429686069ed1c99436af7","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"f006b0eeb6392f750aac46930bbb102f6cd1a7f4ed2ef37287503765562df855","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"3163881adfff2cb3f5cf76cea1a041022b61a946e6a86b1ec88b89cbc684d9d9","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"762725f6ab95bc4d89948500cf2d0203ed4a2b53271b703bdbfb79fe6d29fc1a","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"1bc1b9be54d72b8275cd27c8cb7b5745fd699240af04492c80254e9ead878be5","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e967708478649d8142aef4ff8697d402c106269675683bd1791dd11e281db41e","regex":"(?i)^https?\\:\\/\\/www\\.54\\-93\\-102\\-203\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"4fd72926ecd16be1609db457b8048cd892eede1cc4d42c573594c78cd01a1944","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=8mzW06oa3A\\.NCLk5JQvf986_qWWkqCG2_qXWt3vmvQ0\\-1736345347\\-0\\.0\\.1\\.1\\-\\%2F20aaa464bcfb127419b6c3abeeb8bb9f$"},{"hash":"9203ec7141c5ecbb7dd9501804ef506457eaf824fcc2fac3bd8c775c2f446793","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+account\\-announcement"},{"hash":"9203ec7141c5ecbb7dd9501804ef506457eaf824fcc2fac3bd8c775c2f446793","regex":"."},{"hash":"415ce77901a06db600e87c5f95ca054a7180f748a582e7358b3d12febcfd72a9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b460186670762f4dd4994460601f28dc057c7179ea09bb05e4d7f6c5db4b26a5","regex":"."},{"hash":"c116acdb563066086dbad26e21f818601c541a8ef8bd5ffe11ab9a3a847eb4a1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)"},{"hash":"0f19ebefea33489fb85ea90ef98dee494293f4c6f419c7b9ca1fd9af2c35a82e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c6e3cbc34af70e1337e2026fafdedd51d664787cc4d32bca09725ac3caa2d030","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"e54ec0b9524ed1efef2b489c28b68e77dc616a9201f0c1f3449ce10f0fc129a8","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryaoiw\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"9bf2e5842c5e45838b85eea1e283b3557fe79b99a5d30979b9213579e4ba8891","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryahwa\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"2182c3d413956845c13e03afa97ab0f5abe267b5ab3c586aefd41e2796c6f319","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryaoiy\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"287f57311598c94f9728abf475956dd6a0d113c1ec4260ab16c2a3ebb72d0d1e","regex":"."},{"hash":"22391d769cc42692393ec1dd08813213d11feeecd1c517a7c031987f8e140bfd","regex":"."},{"hash":"bcc06a9a14f66317f7d7a9f3c8b7e949d2192ef1bdfd106bb7cac4c76c84fc32","regex":"."},{"hash":"b2b97a3e0a6a33e2d9a6f5d27aeee705222d68c1a6e94e1e52181ef71df9bf8c","regex":"."},{"hash":"e1a190c48c9a2c0d530f4ed669047bbc7d90947b423041de57bab433665f3c86","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9bf2e5842c5e45838b85eea1e283b3557fe79b99a5d30979b9213579e4ba8891","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"463b1973bd75f0938254f59577938fb86419a7ab06a43ac9fbef15fd83e2bb73","regex":"."},{"hash":"bbc64a1749e8890704cd35e05f412f23961540c6d668c6dfb2f4d323c689a187","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ef8f236f7c5e796dc9e8a20eb89b8e59075d29814c840141165cead16869f2f0","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryele\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"191fe1fa0aefe38c0c894d5a8ad442db4228621a42edc06a47723bf3c87aff3f","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryleo\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"5787f2c25f12eff500140ba2c19b94f56c0e6c9ddd6fcdba826432eab6b11845","regex":"."},{"hash":"8b94ee689c96e4a34cf270621204902899b7198d7d918ba5428a1d258ccd2037","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryler\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"6007c58bfd937fb8d2b331143001c4dcebfb79c3177c05e8e9215fbe3011e7d0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"da12cc31a90fa1cbe9723c9389bfc9c4fbb5918e59a911b77221738b68e14b16","regex":"(?i)^https?\\:\\/\\/informed\\.updateiayism\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4d93a511b4ebc1193b606dc811b15940c1c154d4d4a22a22f05003a55ef14250","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryaskpr\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"2f4bd783b1f6492cc566f566870993d91a4714779267faa4033bb78fba9e3078","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"0c4bd72cbb14751960769aba40fa6754048e2c11833a5ce175d770dd53ac89bb","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"67178d633e836d7c9f0d02dc6a2426878f469b8ca3448d4b659faf73912b1850","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"ab9a7ccfe3d56d2c0bdd37a08faf22efe390824b102c3f6e9faba7591c2194ac","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"beeb7c89d717bea4c6465612c159fb9d14e2684d980cf565b9bdf6b82e0b2a6d","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"1cba7265b45f2625aa850f1d2990362827e239c25d1871f2e40f3a3316ad12c0","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"a0c0c76d8682ca0873e304d008c7fec36d9d4e66ed6816ed6f4565db7205b371","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"a1796c082371bec07ad24750e865becd0ffb93483a2778f77b427d68b61eac2b","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"3e5df23b2dcbdcdda420c8b3afdfa0043952e2f497828357086910bf1be93108","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"641baabb6d80f2e718d63585dd6dd9dbf1e45e3a03fb3b448eb4ac617110c47c","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"8ba14b0dd94129fbf3a3f5df1c105e26db039ca0403807450061731ce6a6d5ff","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"bf1b8258a9e02141f5b1ea401ad351ed15fb68f8b26fa750e8b396b7dc8272da","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"49f019385abe399df041c455098e62bce287ebaf5b6740c62660122ae7ef6429","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"3e9faf20147b3250536016392013cefa3891a0bdca18bbdabd971a97bf7ac192","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"c3144d94c7a409e255551edd724d9fdb8e5cc22c2aaf3341197a80d6fd82bde9","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"0a86914dfc1eecd2e4dd2375fddaf6d8a33812c2810904982b5b4eed54a2ed3d","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"3fc028eadfb22862487843dba4d4c5842dc8a06b153831cb2ed07d5a166137fd","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"816f25f36b0ac40acec59c139c27f2a7d3566c8205778072f50cc31d4c5545bd","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"f6d4406aaef9160f2dab1617961c6f6face81e36941b690808d4f1ad3e07db4d","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"7ec3be497d5991cf43b7dcd052fa90971040244baa6386c9a279b3208060e954","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"c1a34632d76e7bea438a177bb870a5a4a06e1f2f6f25691d51bd7cd6c891dee8","regex":"(?i)^https?\\:\\/\\/mangningsu\\.top(?:\\:(?:80|443))?[\\/\\\\]+pts(?:\\?|$)"},{"hash":"1fee14610152571be518d25a8ea51ffca63de06549bfde4e499c0a7932795e59","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"7420d1e3e5e2bbe5d1d125f40da3d97075c69c189d55eb1ad68af9b4c29abe75","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"5656827ab713e1d0399b219956c9ec6fc0fc52424c326350a79dbfc0314623ff","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"84de52d6fd2c4dbc02da1ec5437349f88d91975557b4616fa4de883f371f66ef","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0fa3805734720ad80eed4ee56c38502bd6a60b8503eb15b2c0234a44ec8177a8","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"eab9fe356a06c3c622a5988b0644785c46ba5eefbf693cc758169032fecdc2cc","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"f9035d2881816d5082b00bd9f9f236f459981241d4c5983ab286d45c3da98ec0","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"cafd282143ffd3ae09c2165e460cbfbc515fca6411e5aa3aa9689e3fda998a29","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"3188b27ab44d55141148acdf5473afbd6cc06c055466a960970fe73f1a18e9da","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"270c2a73aabd5c41a59ed6bf78471f4e27209de693fd5909d0b7372cb9cc3796","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"9f72cb92a1ce87dbde1df5368e83bed2d9091b9a5112952c888223783ca6d915","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"c27e2b210c1da822e758e3b1e40342e630ac17454c10b8034b024634fdc024d0","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"15b45385279f88b17436ab3429efd0a1380794cd7638204196883c8c432feac9","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"552c1208e2dae4a295b6e18dd612855cfe2d9ddbc77d0c6896dbf16c17061f1f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+glft[\\/\\\\]+77182(?:\\?|$)"},{"hash":"2cb21d4c7a31169c98d2177f1bca0565dedabea09c778c2d96aa84e9ae2eaa71","regex":"."},{"hash":"94585db4198ade89b6a9bd49aedcdb4c4dfddc09b9d73b28512b477a158349dc","regex":"."},{"hash":"b32899b34c64ac10eb2181cc89fc4e4fb2f2950dccf66f3811c3298b080730f7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1cfec51683cbd4237343d07c4979eb9925673158bda75cc0d5e9db6449fd1997","regex":"(?i)^https?\\:\\/\\/pub\\-2714b8b6683443cf807ad29f3d9c5a04\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"030f562fa7d1a412a5f6b3291a5bac46e67afb1ecd27194c16df39caa4154128","regex":"."},{"hash":"86aad265ba4133fb15defc34d6774f3adb9189b73bbad7565e7b69fa0ed0e6cb","regex":"."},{"hash":"47be1bd91f833f4d689fa0801cab3daab5e48d5aba4217cc0504121134553bdb","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywuu\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c7d1db0877f340bca816cd72f386083a72e12463e95a2f0eb6ee0a1f163ab415","regex":"."},{"hash":"907e09b1e6a6b012d04b75cd5bd67e47e078a4010676b3ee17e49ae2d9b00a58","regex":"."},{"hash":"4d93a511b4ebc1193b606dc811b15940c1c154d4d4a22a22f05003a55ef14250","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3e422aed97a31fa49f7de58b33a4926f173a6b5a0042ecb6d3d9d33b38264628","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"f5781a9a804cebd4bd314fd40a9810e91dfce19c59ef48a53e574e0bd85f3c22","regex":"(?i)^https?\\:\\/\\/informed\\.deliverysel\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"18aa4a6f353136084233b66bdb5097780952ae2446991642911317b04896c9be","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"0c6e0e7ee11bb135f4572d7fb1de375176e7ba6561ed41a07ea5bec2acc6b8ff","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"903dfeb5a66f859f8e5a6edd36447d649b9339d35cca12091d9e4ca59ba1e6e8","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"1e6a777ed65812768d0d7d606b20021a9ec3486e9965ac8f98ed24d1bdb9c8e1","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"1924adc0cf5a666fbe9ff1ff6f567f233843ed1082f1250effcc02cf659ac6ec","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"c20fba9948b07111ecd8d0416fa70187bcc5e6caa248e9fcf0820ab24507094e","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"a93c5d7da392f30ba43d71e3148ca45c90df9e8b7fdf096db214ce396c269b44","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"b7d4629ed5a1c9ad39c83c2e9a548c52e07fb66ed3cda5aee9afe93dc5225549","regex":"(?i)^https?\\:\\/\\/pub\\-ac9c422ce85c4c6e879cb42b153593a7\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"1145107c4a7292f670d66682418cb9364c096c0480e9410162062822c622e1ff","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"8cbb133840e9998a32261c857d0c1aedae8afa66cb15963a3b2474ab63ac723b","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"f6d484ea32d2c3469f59c21c5eddde42d1556be1e36ed353989169acc84a50fc","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"c1a34632d76e7bea438a177bb870a5a4a06e1f2f6f25691d51bd7cd6c891dee8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pts(?:[\\/\\\\]+|\\?|$)"},{"hash":"47be1bd91f833f4d689fa0801cab3daab5e48d5aba4217cc0504121134553bdb","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"54dc5348094ff8b56bd5207b7465d69fffb05505eb9962e4396d2ff4d868b4b4","regex":"."},{"hash":"9e0bd0345ac2863e41eb412d93637bbcea7c4473b4aab31e51cb0cadfc14b280","regex":"(?i)^https?\\:\\/\\/www\\.homeflskaesa1\\.duckdns\\.org(?:\\:(?:80|443))?"},{"hash":"3fa8d929273f6d712cc60992dd0355bb100c8309ec23b1e55984a439abfe3d45","regex":"."},{"hash":"9769129a4f56372f31765b01fed1491536fb06cf089870cd7d1f49d0d26bd71f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2fc390946881e2490f41a1167ac3a44f79273c0def1d0a4d572948e8d2f67495","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+WhNdGbwTlInkDenUh6eF\\.html(?:\\?|$)"},{"hash":"2c2118b6d5e608c3c7fd2380e7ce34cb2b55667189aac4eeb5e80697a4baa629","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codeeng\\.php(?:\\?|$)"},{"hash":"2cd4e1970cea799afd15fd0c336b9288b5e1d0ae9f3f6821827f5b0a30b427ba","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"2e954ebb56c60a1027d1a6b4e15eb75807085f76b80cbdf25888807d87002102","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vrcfdmr(?:[\\/\\\\]+|\\?|$)"},{"hash":"c9aff1caab369875e9d6f9d1fe92c03c16ce7bf24b1ea0cbd1281a3f978bf014","regex":"."},{"hash":"c3d833e3d0f78edacd46f91d349fe2c95aafa50d6f74c4a70bee4d2be20b8bf7","regex":"."},{"hash":"88b54b5ac3926f252aa8463f6e7ca536bdc2dc9bb8f69dcf512e82ff8a1d9696","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"191fe1fa0aefe38c0c894d5a8ad442db4228621a42edc06a47723bf3c87aff3f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"2182c3d413956845c13e03afa97ab0f5abe267b5ab3c586aefd41e2796c6f319","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c3d59abe9c421017d808ff8c98b3644f1b7939b7608328f6c7d16b5aa1f23089","regex":"."},{"hash":"344084dd97901eef5cfce27261a6ae3914f36e3dd5b67bf1fa09415338eb2c4b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+infospage\\.php(?:\\?|$)"},{"hash":"344084dd97901eef5cfce27261a6ae3914f36e3dd5b67bf1fa09415338eb2c4b","regex":"."},{"hash":"8f43239f98af3fdefb24880d52bec17e738b81033b06f435926753eaff04537d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+109235\\-92bfb0[\\/\\\\]+checkouts[\\/\\\\]+92bfb067df39d990b8a413d40df19dad\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_1\\&utm_mode\\=skip_if_exists\\&task_id\\=142598053\\&task_auth\\=662325befe6cdc5a5cde2fd8694815bd$"},{"hash":"8f43239f98af3fdefb24880d52bec17e738b81033b06f435926753eaff04537d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_1\\&utm_mode\\=skip_if_exists\\&task_id\\=142598053\\&task_auth\\=662325befe6cdc5a5cde2fd8694815bd\\&id\\=142598053\\&ignore_redirect\\=1\\&key\\=676c693fed91e79beeaeb56195354e3f\\&url\\=aHR0cHM6Ly93d3cubGlkbDIwMjVwYXJrc2lkZS5zaG9wLzEwOTIzNS05MmJmYjAvY2hlY2tvdXRzLzkyYmZiMDY3ZGYzOWQ5OTBiOGE0MTNkNDBkZjE5ZGFkP3V0bV9zb3VyY2U9ZXZlbnRfbmV3c2xldHRlciZ1dG1fbWVkaXVtPWNhcnRzX3JlY292ZXJ5XzEmdXRtX21vZGU9c2tpcF9pZl9leGlzdHMmdGFza19pZD0xNDI1OTgwNTMmdGFza19hdXRoPTY2MjMyNWJlZmU2Y2RjNWE1Y2RlMmZkODY5NDgxNWJk$"},{"hash":"84d841412d435dd09257245bea37caed8e23de384860658341be114dcb883199","regex":"."},{"hash":"2c2118b6d5e608c3c7fd2380e7ce34cb2b55667189aac4eeb5e80697a4baa629","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code\\.php(?:\\?|$)"},{"hash":"20bfcec5377fa21e66d754746f03d729be943a1d600441369687054f51e0a6d7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"35117d2f50ec3e2c271f139a87d61ba54203ec8285358b1f87eb0a07f72eb1fa","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ctv9fad3kl6c73dc5b10$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3aeb85c715cc69c70903dd311ec93a1758a09c903db6c26aa7a66d9cc6cd3a6a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1145819ea08c8dcb6353c71dee24e8d38585a07ca633abfe93a9b81f86f6d96f","regex":"(?i)^https?\\:\\/\\/ashutosh64822\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"4332e31395f0076340b31de4b57795d90d3ca204db8e977b90ab80ae06316d62","regex":"(?i)^https?\\:\\/\\/bossniz8800\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"1d02457cd6bf6ef656ade95ef5992298f6a8424c8d9b4cec21c2da694a5ebee5","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0e7ed6116f3f1d6d32e708e25430303c5c267480a6e8d6af814316db79b397a5","regex":"(?i)^https?\\:\\/\\/click\\-here\\-cumm\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"b71649bb642f034481031a125d0946792cf446e41aa8193c6e07f4b28a277e35","regex":"."},{"hash":"7735ceed8e04d00e7687732d62748a0bbb7deb77e3a8bd7475b9fe33332fe748","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f5781a9a804cebd4bd314fd40a9810e91dfce19c59ef48a53e574e0bd85f3c22","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"29ad21f6eb0f170c03026b2df1387ccf1299eee6c08d2cd04ec83d3497ac1087","regex":"."},{"hash":"0340a7a3cfbb4b88ee798b753e44024999210a9166614343c9b67764153848c6","regex":"."},{"hash":"750a6d4f3fc63664c3d667b7dda6483bf917c355d28b1e816a536975a63cd227","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+found[\\/\\\\]+ics(?:\\?|$)"},{"hash":"750a6d4f3fc63664c3d667b7dda6483bf917c355d28b1e816a536975a63cd227","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+found[\\/\\\\]+ics[\\/\\\\]+NL[\\/\\\\]+infos\\.html(?:\\?|$)"},{"hash":"c5a78dbf76921bfb308b61027def1961b7cbd4675fdc9571c3471fe6780b4454","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service"},{"hash":"750a6d4f3fc63664c3d667b7dda6483bf917c355d28b1e816a536975a63cd227","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+found(?:\\?|$)"},{"hash":"257c1d24629459150b1a7661f0972fb0d48622ed43f45c79083a962597a7dc66","regex":"(?i)^https?\\:\\/\\/joj\\-kelvin6\\.tumblr\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"af3d50d39f1fe73b10281f0904a543bfd4fc73622e9b32c0595e05e0503dac3d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files[\\/\\\\]+default\\.php\\?user\\=true$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7dd6d02ed10365e38cc6eefd042d30f7705e46cf643e4389e2284a3e775a55e4","regex":"."},{"hash":"2ddaabc819cdd895035f3be8f7b9a34c90b64baa8b0a4afe53fb2f81b517737a","regex":"."},{"hash":"2c2118b6d5e608c3c7fd2380e7ce34cb2b55667189aac4eeb5e80697a4baa629","regex":"(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?buysbtc\\.cc(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code[\\w\\-\\.=%]+"},{"hash":"af3d50d39f1fe73b10281f0904a543bfd4fc73622e9b32c0595e05e0503dac3d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files"},{"hash":"af3d50d39f1fe73b10281f0904a543bfd4fc73622e9b32c0595e05e0503dac3d","regex":"."},{"hash":"2c2118b6d5e608c3c7fd2380e7ce34cb2b55667189aac4eeb5e80697a4baa629","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+samsung_code\\.php"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"603d9d66d7510ad5fc767f158bfc7b22625720ab75f76b8a29747e247682cc08","regex":"."},{"hash":"676ad00f3d70129b867b24d8cad62a863a20e82acaf1ef930342374f148950bc","regex":"."},{"hash":"35be1aad3cf37e5d9c724aef68f43b6d3e99f3d714454135dfd2a3555cae81ff","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"57a2b89f554d3849b42358a7502d07fed65b05a0404ed186dbb52c42570b3f69","regex":"."},{"hash":"f68a2c3ba6cec27e2afb29cb143bf39869e01571b6bd8d16853aed6a5018158a","regex":"."},{"hash":"7e961c72d74de6e369bffecad06afeda1d214fd32388c2f9da29b1cce3e5b900","regex":"."},{"hash":"5ea19dd523fe1a1e3e5dab9e51a6e79f3efa3ac9388d242bb32c52848d994ff5","regex":"(?i)^https?\\:\\/\\/detecthub\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c7f2b7f2abbe8a58f8ea4495fd626dcff416e032d9f0afe758730b4d4235409f","regex":"(?i)^https?\\:\\/\\/bestlink\\.qpon(?:\\:(?:80|443))?[\\/\\\\]+39d6(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c58ed3b88e3390b7f9b428f0559023f4f37b813be3ae6c2edca56d0a463d0e5d","regex":"."},{"hash":"e0dfe4ba85fd9dcb5d7b8e7982a66fc60afaffd2bf1e544432d3e07ac1fb1f27","regex":"."},{"hash":"0a87afc3e80330f5213e312b532a5a4d10686a51115f4ac845fb18b55ee7730e","regex":"."},{"hash":"9ded0fa48292926c383bff429e7d7938c81f394d64014d91c4a612ed3f59b724","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdd33258a80c1627285bf31e40805557(?:\\?|$)"},{"hash":"499df616476579919131308bf41604ba0dfcc55c65c4638325095ad788776277","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f41d30e13ba3420afec209c9b7879206a9b3792502a124c0b6c3f3afd6cc39aa","regex":"(?i)^https?\\:\\/\\/coinbase\\-verification0908\\.40\\-90\\-196\\-108\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"0927b9f611b6ad6a6181328d7f29018355a9a182a0c736975f5c8ae5a89692bf","regex":"."},{"hash":"e9b826354b363aa6bf48e0211406b720dd95549c2970c13c472d154482443539","regex":"."},{"hash":"d4070e09bba12dced53e556cc2299e86a8abc7de9d434494ff243cd0bd3fe7ce","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"f4cea6aabb3052026af15337cb6c8cfe7a98f99c8eb811853cbdb57ede4e2c6e","regex":"."},{"hash":"97cac0eea3bbce07469fe8e98b4c86b3eca37cb1541e3bf11fa1e8fadd099582","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"8105db15b933daa4b1789a9882bf2a48f6e127eb0b0c86c35b771cb48d1a4cfa","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"5b9061bc36df996925c21dbc00ceb583c2e9e95e24a73a1147b597cfc2da63b1","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1d39baa3a1764f37ea26ab3e43b4750843794b77a910e5f4b432f4eece50d5ed","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"82a83d345ef00061e09b390d59d1ab6548e7a5404fd654469f15c08aa604ae1c","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"377e85fbdb364e3b2ef16b9c4faad01248746b6abbdf86ddb74f0d0f0413df88","regex":"."},{"hash":"03d3c1775df2d93d60fb6bc3ad74dda25227ab809f691d60b5999c895233a5bc","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"b01d66e34fc4fd6f20ba033c38279b0ae177ba62834f801e6c9a06500ba62063","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"e95c8d2d038992bc12393e7d4a371c6f48ccf8d43db852c6bd1451712ba3f1ea","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"8c7e318060229d36b112f04cbdc474d4f430267c95f4e87e99e53e1be4000777","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+if[\\/\\\\]+trustio[\\/\\\\]+clients[\\/\\\\]+oqzLth\\.php\\?verification$"},{"hash":"8c7e318060229d36b112f04cbdc474d4f430267c95f4e87e99e53e1be4000777","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+if[\\/\\\\]+trustio[\\/\\\\]+index\\.php\\?redirection\\=words12$"},{"hash":"dd739825218812a6b354f780f8d04410ec75b75d082fbcdf994f144e2cf183a6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1736354491[\\/\\\\]+solicitar[\\/\\\\]+prestamo[\\/\\\\]+efectivo[\\/\\\\]+inicio(?:\\?|$)"},{"hash":"7d0d752e1ff2c74360b2c7d5be6642873bd8f0efdb7dafa9eeba9e94aaf0d998","regex":"."},{"hash":"9ded0fa48292926c383bff429e7d7938c81f394d64014d91c4a612ed3f59b724","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2aec2051ea70ed1476fac5c7c4565dc3(?:\\?|$)"},{"hash":"dd739825218812a6b354f780f8d04410ec75b75d082fbcdf994f144e2cf183a6","regex":"."},{"hash":"c216baf78c4c14470b9de0c208e790accef7209c0009f045a810df775c98d15f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9ded0fa48292926c383bff429e7d7938c81f394d64014d91c4a612ed3f59b724","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"21319b474ce790736d86705b9150e93d011d1488fe296e4187adb8df6f8c28a6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+gbotiaromo(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c0f53192d24fe4beb8602da91ffe5cb5c3f1ad4882a4b8b1e4d6c6140848dc2f","regex":"(?i)^https?\\:\\/\\/fggds\\.top(?:\\:(?:80|443))?[\\/\\\\]+EVGO(?:\\?|$)"},{"hash":"ce90fc134027a5e218dcc0ae5e32a5e87df42014d6893898fa52f91577a72cb0","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"88032084a429e227ae77588a0f0cc8b35448acd5c725dc52acbc7d91a32db20d","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"7b2523b285db2d3102f38d0e093cf0cfc8eca7e1fad0c4fb64ebba5f6cfb91dc","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"fb2f90b83c99357633e8bb5077e3cf6e4cc49369d4357051b7dcaa2844768133","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"df4ddda74ff1d77a3e0d7f7d02ac7c9b283d7477b3abb8e30015ed3c30e99ac5","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"5406a600f2236d614835d91873960793ebc68651cc7d8df9b3f565080ba52823","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"660fc56b273e66c2eab70040964f4eaacb10930813f407d41c1382289bc8222a","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"67238c33b9449e0e88afa8a782812ce993cab618c71b43a2e39eb5117a3a7214","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"9d5819d64dee09169d7cc4ba6c9495d8e61773856ee4719ab53663cf7afefb06","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"974e8a54a1c2e974b96bf803a727a2602be429c424ea20c781cee4d36e816efd","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"8858b91052a645f339b635bb39052fbd443f8eddaf28aaea8b5529a6f7c57816","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"1dc687666d6810129a96771c9bb75a3572de1162ea234b80bbb24792af5608cd","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b3739dc6e874765d8ae0ffd328b847b08e223ec48d3b3766b07d57d5d6715429","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.google\\.at\\%2Furl\\%3Fsa\\=\\=2MS9\\-FMRB9H\\-LWG0\\%26sa\\=t\\%26url\\=amp\\%2Fthebeyoulife\\.net\\%2F\\%2Fthebeyoulife\\%2Fii\\%2F2MS9\\-FMRB9H\\-LWG0\\%2FcGRoQG9yZ2FuaS5iZQ\\=\\=[\\/\\\\]+1[\\/\\\\]+0101019446783659\\-6766a643\\-b9aa\\-4008\\-9de3\\-e98d7ca29f9d\\-000000[\\/\\\\]+gVArbM1DfO5N4RgU5Nw7VdvSvhM\\=409(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6ad51af530acb2d75b44d60d291b1ff915b1e8f1ea854e926e236db5af84eb9b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b3739dc6e874765d8ae0ffd328b847b08e223ec48d3b3766b07d57d5d6715429","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.google\\.at\\%2Furl\\%3Fsa\\=\\=3EY5\\-XPCP4M\\-IIL5\\%26sa\\=t\\%26url\\=amp\\%2Fthebeyoulife\\.net\\%2F\\%2Fthebeyoulife\\%2Fii\\%2F3EY5\\-XPCP4M\\-IIL5\\%2FamJheGVuZGFsZUBzYWludC1taWNoYWVscy5sYW5jcy5zY2gudWs\\=[\\/\\\\]+1[\\/\\\\]+010101944673af5a\\-fb2f5931\\-7218\\-4c87\\-a8cd\\-3df5ebe35217\\-000000[\\/\\\\]+byMnJlGkiJ_gjJq7oNely5wjOLE\\=409(?:\\?|$)"},{"hash":"b3739dc6e874765d8ae0ffd328b847b08e223ec48d3b3766b07d57d5d6715429","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+www\\.google\\.at[\\/\\\\]+url\\?sa\\=\\=3EY5\\-XPCP4M\\-IIL5\\&sa\\=t\\&url\\=amp[\\/\\\\]+thebeyoulife\\.net[\\/\\\\]+thebeyoulife[\\/\\\\]+ii[\\/\\\\]+3EY5\\-XPCP4M\\-IIL5[\\/\\\\]+amJheGVuZGFsZUBzYWludC1taWNoYWVscy5sYW5jcy5zY2gudWs\\=[\\/\\\\]+1[\\/\\\\]+010101944673af5a\\-fb2f5931\\-7218\\-4c87\\-a8cd\\-3df5ebe35217\\-000000[\\/\\\\]+byMnJlGkiJ_gjJq7oNely5wjOLE\\=409$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f92185104319bf420a6016b023e2ed2355d8cb7d0c3a7f0e8899ad61fa53b3fa","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"72d1e8d9258b1ec7910ecfa1445668ee7045b93c35768d69dcb6503b535ee597","regex":"(?i)^https?\\:\\/\\/homeattemail\\-5007480\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"3f6e9c337944acf1f01947a2f987074f4accb7c041559ec90c9beb2c25c927e7","regex":"."},{"hash":"9686840a7db2706c765967b0f2f4d486012c7c6f57b1129279d67be41a22468c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9023[\\/\\\\]+entry[\\/\\\\]+register62899(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9686840a7db2706c765967b0f2f4d486012c7c6f57b1129279d67be41a22468c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9023[\\/\\\\]+entry[\\/\\\\]+register62899(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"392234e5e796696fa6efbf0bc07642c557531cafca77573197cf7ec116355b9d","regex":"."},{"hash":"7dd7424841ba1d599a493091d102dfd851fde40906221b19084800beb0e71389","regex":"."},{"hash":"c39004dccc0ecd2465d1dfce61e069b4db9464725ca022d3535c512e3c4e67a3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0e8cd7798e0411f09c0b7d9b9e738f65e83d78416264b13178f731fcbeecc992","regex":"(?i)^https?\\:\\/\\/cioniobisasedcins876\\.azurewebsites\\.net(?:\\:(?:80|443))?"},{"hash":"b2c5c277e4840aa8620d446a1b0935a00b0bf9b9a2fe79725b370105f669505d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+webapps[\\/\\\\]+home[\\/\\\\]+signin\\.php"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"da735a07a16d45e87dc147ccd76326a32b9482f97d835e455c25dd0e100a43cf","regex":"(?i)^https?\\:\\/\\/pub\\-f9f549be93fe451ca3182cfbd208a50c\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"e07a8149c981da5e659d8ae9f00670630eecaaecb7003237cef12c18d294fd94","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+hamaneugleu[\\/\\\\]+pages[\\/\\\\]+region\\.php\\?lca$"},{"hash":"e07a8149c981da5e659d8ae9f00670630eecaaecb7003237cef12c18d294fd94","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+hamaneugleu(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"561bbbcb148d8500603f77aeb11798bfc05c72e545a6a451422760a1b444947f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mq0f05sld48l\\.html(?:\\?|$)"},{"hash":"c71272df33e09250d7be2f99468d78221aa20cd495e812f68f8b311f75d50a48","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+main[\\/\\\\]+login"},{"hash":"c71272df33e09250d7be2f99468d78221aa20cd495e812f68f8b311f75d50a48","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"fa725f40b3f4780880c7993ff9e445c3f48c7764eb597232194ce39e5d3514e6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dist(?:[\\/\\\\]+|\\?|$)"},{"hash":"fa725f40b3f4780880c7993ff9e445c3f48c7764eb597232194ce39e5d3514e6","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"578c8735af7ef3a4911e098bb911b14171a4d620d5d4215c1e2f9c01bb891bed","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tcl\\.tltyv(?:\\?|$)"},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwi9jJzgs\\-OKAxUCdH8AHfmRCOsYABAAGgJvYQ\\&ae\\=2\\&aspm\\=1\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIvYyc4LPjigMVAnR_AB35kQjrEAMYASAAEgIJZfD_BwE\\&sig\\=AOD64_1YDRyzBc2esaj7IKOSQjDGNy9TNA\\&q\\&nis\\=4\\&adurl$"},{"hash":"f951ed3ba8ae07a6430a030fbd3b5302203668e6acd7fdfd7c2d049dcfb37cf2","regex":"."},{"hash":"2bfc13459166a09bca754b4ea8a2eaa3b25b073d43a3119e36808a5235e1dcbd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwi9jJzgs\\-OKAxUCdH8AHfmRCOsYABAAGgJvYQ\\&ae\\=2\\&aspm\\=1\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIvYyc4LPjigMVAnR_AB35kQjrEAMYASAAEgIJZfD_BwE\\&sig\\=AOD64_1YDRyzBc2esaj7IKOSQjDGNy9TNA\\&q\\&nis\\=4\\&adurl$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e387d18aacd3e4d7cbcc872bca43b5ed568f38e14f2d9c8c8f6179b0af4132d4","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"040ee008530b6efc3794415f7fabecb8cdd00fd40c1173c14607dffcf8a2c8d5","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"bc83213c17d100f65c599837be2c05390616de637060c20be49579e74e7de19e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"12ac95394fb8a91366d511180d1bfd8f47d7ee194828ae81dd984c8b866afc3c","regex":"."},{"hash":"ea83b6a414f78a716999aa3cbd1a4acb71324c84fff7de92e5687cc877538b9a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"6f495af95b8830dd9b9b47e00c1423fd5f479aa59d2dce1fc4464032ba7b1944","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wc[\\/\\\\]+default\\.php\\?user\\=true$"},{"hash":"6f495af95b8830dd9b9b47e00c1423fd5f479aa59d2dce1fc4464032ba7b1944","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wc"},{"hash":"f04b648df845660f84a20d875f7a78372c72d8b2af3d605026b595bee842ff98","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydvgakv\\%3Dbhawddn\\%40hsss\\%3Dn\\%40v(?:\\?|$)"},{"hash":"6f495af95b8830dd9b9b47e00c1423fd5f479aa59d2dce1fc4464032ba7b1944","regex":"."},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"6d166fa89b93258b2ad5ad47d14c43f518ecaf99d2d0532a7b1976394feec8c2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwi9jJzgs\\-OKAxUCdH8AHfmRCOsYABAAGgJvYQ\\&ae\\=2\\&aspm\\=1\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIvYyc4LPjigMVAnR_AB35kQjrEAMYASAAEgIJZfD_BwE\\&sig\\=AOD64_1YDRyzBc2esaj7IKOSQjDGNy9TNA\\&q\\&nis\\=4\\&adurl$"},{"hash":"2bfc13459166a09bca754b4ea8a2eaa3b25b073d43a3119e36808a5235e1dcbd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"d02e2f2ae8a5abc5fb3ee37bca281eb922a7f2ce1d21a203bfe5b5daaf06253e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)"},{"hash":"9d34d321e4e6bf16de003c2b4b3c20e73ed87e08bf8be58bd1d30823c3b4dd94","regex":"(?i)^https?\\:\\/\\/sljfwpqzro\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6ae3c5c956dfc35eda97e4657bb63698155d2a0a516ab005ea5aa7c506d81e36","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"c038e80c2ac0f64cbff783ab72b2ceed7be85cd02e905fb80659c2232e452fd0","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"904bf5128e1be4570197c803837876ea2d800e748531dc2012a7a281e1f3959e","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"d0166b75c7cfd3f5a0adfe3aa8991c47e3606bacbc496a282c96ef4f098ac428","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"5e9fc64dabe4ee014207b14e39ec73ec90df2fbf7da1b655469a240e2d66c72b","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"bc825ead211e292239d19681cf4eb857b20aa3ef40224d7ced9470416f0dadea","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.dk(?:\\:(?:80|443))?"},{"hash":"7d1d9063d03903bac6ba12d2ad610147d4eac3e351960c3cddb9c1a5f9884b9e","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"6b4599d91ef98f999078a71427a623f5de0fa5fa86347d448b7dbb4aca33cdc9","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"57443e8d672199db0ee32157012d8c3f3751607f213dc72395988121a73d26a0","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0ce626e0da7c25a66287d791504f430e0ae11629ea15920ef6fbef61a68d9f80","regex":"(?i)^https?\\:\\/\\/www\\.022fangfumu\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"cca65429e22148b943757dacf2fcc90bc2821764475a4fc4308711b37a3b1125","regex":"(?i)^https?\\:\\/\\/022fangfumu\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"b3739dc6e874765d8ae0ffd328b847b08e223ec48d3b3766b07d57d5d6715429","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.google\\.at\\%2Furl\\%3Fsa\\=\\=6ZP9\\-ZVPZ6B\\-UCB1\\%26sa\\=t\\%26url\\=amp\\%2Fthebeyoulife\\.net\\%2F\\%2Fthebeyoulife\\%2Fii\\%2F6ZP9\\-ZVPZ6B\\-UCB1\\%2FZ2VyYXJkLndoaXRlbWFuQGViYnNmbGVldGRjLm9yZy51aw\\=\\=[\\/\\\\]+1[\\/\\\\]+0101019446761e2f\\-b7536af3\\-2856\\-48d0\\-b11b\\-2c6eb1df1cb3\\-000000[\\/\\\\]+yhuRLgHGpgh7ZPzqIgVE9azYouo\\=409(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bd6b77b7d9c79246e89e00c0706705e490bbd293a1b149503a697b14093b9f52","regex":"."},{"hash":"e9b9d509de6257d0a458956bfe1e665187d505cd9451774a5cbd23387ee43f54","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"561bbbcb148d8500603f77aeb11798bfc05c72e545a6a451422760a1b444947f","regex":"."},{"hash":"457a6f573f3bfae05e2599278c7407b834d02463fbbcb25f4875bca728fb17f2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e7ae7c28163f5f00683287e66e4096142f1afd2717462a5625329e2779056e14","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fujomaxa[\\/\\\\]+nehuhojo[\\/\\\\]+dejafo[\\/\\\\]+yoje[\\/\\\\]+voda[\\/\\\\]+index\\.php\\?rpclk\\=aKPHGcamovzrBz58HrdRDL\\%2BVjrzi6JtQ4oebqSzr6LD8FtbIpeupc0baMNX\\%2FC023YDMk7\\%2BEbXAPkslYr84o2WS7GIp404i3IjO\\%2FKDzHCwTz0BWPUPOIjGq1FrXlBEopbtu3UmBeLOoHmEX6Y0Ed8xbnoIKO46SqNMu5oT4z71Tm3ZnKApkv\\%2B7lJhzIhfYJxEWcsZKUnVakeeU4Z76aUvnrm9Iufv5j2JYh\\%2FOQ59s8M9kbw3l4xX1VAl2dwf9KnlIsAh5DqhWTIF\\%2BIVeQsYedeZ4HMMtM62r6\\%2FHRX\\%2BV35cbR2qMscahqdyfaGbb\\%2Bca1intIR5c97P8gfpBHyfbTbmbCMhMKnOfc7b3HSA2wJ6OnxNY4DsiEdwlSJU9KcJYfc0MeT\\%2FcLMQjqSSMysRCVgbBOkPjVvZiyh3YWEBZtAngupYM\\%2FwASuSKX5hRa1K6gAEYd1PgKo\\%2Bs\\%2F0LagiucrSrG3PTib\\%2FUOXyws4O8mzHVXhTpY8\\%2FrUZQJGQzDSoH0oYlAOupuyS\\%2B1jq7i\\%2FZu0ob\\%2BX6OQHF\\%2BdRdFZSivrFCxOVuNvc544BDaV2b3\\%2BiXgzejfYRLExWSgiQ5iYKhIh0LgNAZ10ilOjaSNw288OiReoltEurnnp8F3GxaUFlKv75uG7Fj4tuuvV\\%2BKY2IVMJxAOjGAG\\%2Bk5XO05Ca\\%2BeQx5H7hMw86bZcaM7NvD\\%2BJq0EEydqLYwdp5MvcoVEoP91bOYQEHxoWZrbcOu1wgTkDed90u5478hzIqbUc5pWcjz8ptmu7\\%2B0sTuEV0YroNniNfm4Mo6ObE4q7YuxoNwlrstOKxR7SkwZLko5v5DVghi62eNb3VmDQR0ZrZV1VN7v8YuvMw5\\%2BtK4juxLnhc0W1NjFrKhrlQ7UTOHLvkkSbMVj8bxHRszLncn4WMOax76ZQuFOmoOChKB\\%2B9u3\\%2F0oYB0lsuH2EPKmAh1uggeHpl7rVgBTm4aHCUTw1qUCYSLWf4jbQDi\\%2FPTpwat34L0hw7GnJfGRF\\%2B6OjTtpge8wJBFzB8PL7m3qDBy1363toJiyJ1M1yVHyBQbjrsXj2nQ\\%2B7cg0s0tFHv9m2Ca2aK31oFqgWqTMtNfoARbUuEVphXQ6NRs\\%2F\\%2FTmbjSJxjnNUb\\%2Ba7QQNCLDcIc29CnUaYMArKiMA6s8RtyNr036gQ6iaPnXWOdi9Vc6uJxoy4F7It80ENDlA4NSbR3NFnZnKynCAEwP9Ll\\%2BUjejNhr2AffBTpuR\\%2FJuqfSjtsqqAUBvBficxyepz1NbZsE2JdL6hSD6mrt72Qk31FuUjGTjvkVYkfukC\\%2FBEH\\%2BaFF\\%2FiVGra6Jf1mOf9aS55d8LpyTLsAptE5M\\%2BCN6Imfs9FZV3vATDhUYXjKfodBUTZjg\\%2BO5KgJqHznXkL6iyuB\\%2Fzi9ja5gjls8WY5kcqWY6nw0gcjltY5\\%2FFern\\%2B3Mou1JDwaDB69c\\%2BLSLI9HgngWa0\\%2BpF5EXYoepIhDQR2o9zqCgfAh2LLIjKJvLQFQEv2OzaWwIBS1jwmFcaXWmm3DNjO5Y8mFBMlnHQi9\\%2FuV59kIFJ0ZDtuWrxOcRwIfa\\%2BAJa99W4YQguFyE4ZiX6OCzIpOvmjyyL3Ai29cvhqOUQM\\%2BB\\%2BqpEhrgyGgmmBbjCo3q6OVkCSTkzBL4R5Btrc4kXWZscETrv\\%2F502k7nKYrKiIYaNUxt9HuX8UQb8A3c3gU\\%2BlPF8ZByVWYpfv\\%3A\\%3Ab471454be8f717c9d779373f779a7344\\&p\\=ArvvxFXeOI6UQBJ1mGtJj\\%2F4\\%3D\\%3A\\%3A11aa850d388914810f0482e222b6280d$"},{"hash":"a4ba47bd256db9d478a5d4133d98d54d8332efb75ee563594d1fb7a935090929","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiuhILIs\\-OKAxVrp4MHHdxZD9IYABABGgJlZg\\&co\\=1\\&gclid\\=EAIaIQobChMIroSCyLPjigMVa6eDBx3cWQ_SEAMYASAAEgK3e_D_BwE\\&sig\\=AOD64_3QY2\\-isRmwg0r4vbSBrRHQVBR\\-Vw\\&q\\&adurl$"},{"hash":"caf317a3f2e8d6a1d21243fdf3c05fd0897b5e4f76c7d51992b9842c60de44d3","regex":"(?i)^https?\\:\\/\\/gtrwds\\.jsgcydgsdbcsyhgrter\\.top(?:\\:(?:80|443))?[\\/\\\\]+far(?:\\?|$)"},{"hash":"75cd8e2eec6d690d65fb1a76a745bc27270399aa163266bdef0fdcac3f54a3bc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codeeng\\.php(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"75cd8e2eec6d690d65fb1a76a745bc27270399aa163266bdef0fdcac3f54a3bc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codesepteng\\.php(?:\\?|$)"},{"hash":"5d831ae7e82986e0d7e765aa13a56b029d01989c855bb0aff8437d368e7f05a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiuhILIs\\-OKAxVrp4MHHdxZD9IYABABGgJlZg\\&co\\=1\\&gclid\\=EAIaIQobChMIroSCyLPjigMVa6eDBx3cWQ_SEAMYASAAEgK3e_D_BwE\\&sig\\=AOD64_3QY2\\-isRmwg0r4vbSBrRHQVBR\\-Vw\\&q\\&adurl$"},{"hash":"75cd8e2eec6d690d65fb1a76a745bc27270399aa163266bdef0fdcac3f54a3bc","regex":"(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?opple\\-support\\.za\\.com(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code[\\w\\-\\.=%]+"},{"hash":"b43ea5edd0e392c5f2669666f45fc19df05bed0d27521e6c474498aec5208a24","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiuhILIs\\-OKAxVrp4MHHdxZD9IYABABGgJlZg\\&co\\=1\\&gclid\\=EAIaIQobChMIroSCyLPjigMVa6eDBx3cWQ_SEAMYASAAEgK3e_D_BwE\\&sig\\=AOD64_3QY2\\-isRmwg0r4vbSBrRHQVBR\\-Vw\\&q\\&adurl$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f0d23257a821cd84f8bc051b26debc92f8c814561d2ed3fd886892ccf7cd5f10","regex":"(?i)^https?\\:\\/\\/solucionderembolsosonline\\-virtual\\-sgr\\-cahyerfeefddc4er\\.canadacentral\\-01\\.azurewebsites\\.net(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"859356de2e812692f5aa8cbf56d5d5a78093ec9c91a8bbb1cd3fa505575526ae","regex":"(?i)^https?\\:\\/\\/www\\.meshopsale\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"25c506770bb8d44842e9d18786bd563085a1716fc7ea5705f91920890fa61f2e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2f126ecc36c06ed46920fc5cd04cf9e2b0224f7d5b743f2b641bb4a8b6a98a8f","regex":"."},{"hash":"c41aa4f2540c39e0289bc1364ceca1ab9670d77d00694152509b0b5f154fc001","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6d166fa89b93258b2ad5ad47d14c43f518ecaf99d2d0532a7b1976394feec8c2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiuhILIs\\-OKAxVrp4MHHdxZD9IYABABGgJlZg\\&co\\=1\\&gclid\\=EAIaIQobChMIroSCyLPjigMVa6eDBx3cWQ_SEAMYASAAEgK3e_D_BwE\\&sig\\=AOD64_3QY2\\-isRmwg0r4vbSBrRHQVBR\\-Vw\\&q\\&adurl$"},{"hash":"2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$"},{"hash":"0fd03639466a5e66388322d3f7926aecec81d3583e212a6390294b189a81d030","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"54067ff4f1913a05de74a8708c451d837b339f947e14b75efd2ca4e6b1e7fc9e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fir\\?COK\\=6397obhk$"},{"hash":"a61fb1b02628083483240002ec8df501f19aeb4bfb96f035e371ddb969041f0f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"be25b95bcc4294de443c3978968c2decdec614c71580d71842c29db47c280c47","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"ed8ce7c3456c260e36d34e97d2b8c156ba26f59ccca507837dbbdaeb6c93d606","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"be25b95bcc4294de443c3978968c2decdec614c71580d71842c29db47c280c47","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"e9d4933a9453acfe12a6edbbea276cb603888f38548924d4b67ff9a5a8f44cb0","regex":"."},{"hash":"1a48b23d4a494215df23a54bab20448d4d47f04020b66e435558e0b82c648b73","regex":"."},{"hash":"0a07b1bcddfffff1bdd33db76c6145462ef8a4c9d282e24c8cb90c055708d443","regex":"."},{"hash":"ed8ce7c3456c260e36d34e97d2b8c156ba26f59ccca507837dbbdaeb6c93d606","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"ea83b6a414f78a716999aa3cbd1a4acb71324c84fff7de92e5687cc877538b9a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"54067ff4f1913a05de74a8708c451d837b339f947e14b75efd2ca4e6b1e7fc9e","regex":"(?i)^https?\\:\\/\\/tuofgsg\\.fueiarfwhiue\\.top(?:\\:(?:80|443))?[\\/\\\\]+fir(?:\\?|$)"},{"hash":"ea83b6a414f78a716999aa3cbd1a4acb71324c84fff7de92e5687cc877538b9a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f42e565d505627208d284688f13c794b5ebb942ec4cbfa9a22e0cfef4bae1745","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"057f5875ee6d56ad87ccfbfe4699528cc1629f79788419ead933d2fa24230e8e","regex":"(?i)^https?\\:\\/\\/kloai09876\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"260e00041a4e193d7e64b643d0c1fa40efe477342d238d70d4fbfe208d694983","regex":"."},{"hash":"4f3561416268a3512e44991c648ff3664f97eaa765951742a310d74502589b8e","regex":"."},{"hash":"2bfc13459166a09bca754b4ea8a2eaa3b25b073d43a3119e36808a5235e1dcbd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"6d166fa89b93258b2ad5ad47d14c43f518ecaf99d2d0532a7b1976394feec8c2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"5d831ae7e82986e0d7e765aa13a56b029d01989c855bb0aff8437d368e7f05a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"13bd2cc1fb1d191ed7eea412a7f1f06ff5d338c655116be585a7f88119f1fc2a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"582cc9eab368cf88b33a5da942861515042f24f287e1576a4714ad0effb38f66","regex":"."},{"hash":"0a229a6ae119769c7cd9898eae94299c01345b06a9751df4394995f6cd27f158","regex":"."},{"hash":"10d68e52712f1aec124d22fc1ad48725160eedfed728bbb838f11f0ea67ffeb0","regex":"."},{"hash":"e638220bfc290db44288c0b8e7ff59dfe1609dc7ac71fa193ed174404f6f8274","regex":"."},{"hash":"31691e1c350bc7ad103bb8632af7efefbddc3a5079cfccd821b02449293107e7","regex":"(?i)^https?\\:\\/\\/ghost0robot\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e7b250a56e0c140871b4ba3199b5353d121f2709d58c61dfe4ceb637cf7740d3","regex":"."},{"hash":"b886883d82f45dff1e3cb1c6a62a68e71b728eb04b34ec6a32d9f595faa92cd5","regex":"."},{"hash":"a19ddb3c7a363e9e073ea707cc77700ec9a30891803a1082eda2f08529ec6aa3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Rxzr(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"389f6937a99b30ade8a7e466357806e1511a83bbf15c73c76bd1f39fdfccd392","regex":"(?i)^https?\\:\\/\\/www\\.40\\-90\\-196\\-108\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"419607805b2a89398b3d7b077f4d599f6554991e59ba96efe86ad6fc8ee3d77f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dist(?:[\\/\\\\]+|\\?|$)"},{"hash":"419607805b2a89398b3d7b077f4d599f6554991e59ba96efe86ad6fc8ee3d77f","regex":"."},{"hash":"28bbc8a64d8c5b073ff31613ecfb55bdc98ea4e4f622331c5e1c4e98c9ac45a4","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index[\\/\\\\]+index[\\/\\\\]+sy(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"28bbc8a64d8c5b073ff31613ecfb55bdc98ea4e4f622331c5e1c4e98c9ac45a4","regex":"."},{"hash":"ff75f3f4c1bfb9097f790043852c41135046e2d0c3610c0d77ec58be31f313ac","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"681035c8e1bbd4c1c1e5570b804105d79a62340ea375f57e6a646842ec723687","regex":"."},{"hash":"57d2267d1904c3e04e70c2e2778dcdfaa0a978ec01108e4e40c881c22fe06f2a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"900e5417a5a9df53585f5aaafa0b9ae984583402448c8a2c0a630f6b734c9a06","regex":"."},{"hash":"5b153ea4797bd77471540c41b593c02f12234ec71b4cbe391f241db11d1ac9c2","regex":"."},{"hash":"8146eb165011ae07f29c8786d5e12681b5dd4387e5437bfc39c76c5231ea28f5","regex":"."},{"hash":"ae995c82a5c7db18167afa967fa1385612af5f30cc7fb79db5a9acd8570e79aa","regex":"(?i)^https?\\:\\/\\/66kyty\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d14de64a15f14cbc160d8bb7717b5f5e65fe23babbb70bb213799f60588ad31d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:5763[\\/\\\\]*\\?u\\=https\\:[\\/\\\\]+45565eee\\.com[\\/\\\\]+\\&p\\=[\\/\\\\]+$"},{"hash":"4ae82796d469b0fb1870ddb2fcdb27cfec32a721dec928b461fd17f118bda6b6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)"},{"hash":"1b7cfadcc8a6049879a0989f7d591da9e6cd473dd1d5a848e82f9b5c9bca6f18","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Freurl\\.cc\\%2FyDW1Ll[\\/\\\\]+1[\\/\\\\]+01020194475b514a\\-b9c2befe\\-84fa\\-46b4\\-a2f0\\-2c7ee9fa85fd\\-000000[\\/\\\\]+G1ZQQ4_WPCVLd\\-R8nteuD9l0Y\\-s\\=408(?:\\?|$)"},{"hash":"1b7cfadcc8a6049879a0989f7d591da9e6cd473dd1d5a848e82f9b5c9bca6f18","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Freurl\\.cc\\%2FyDW1Ll[\\/\\\\]+1[\\/\\\\]+010201944767ef99\\-fbedfe23\\-b09e\\-4ec2\\-b536\\-f7733f0546bc\\-000000[\\/\\\\]+cdokR\\-\\-y2rR1e3LlbyA3dC6n6KA\\=408(?:\\?|$)"},{"hash":"c88cb8266ceb1cd9a0c3e4d8f65ef793dbaff1aee347a7d0407a4a056732d5b6","regex":"(?i)^https?\\:\\/\\/scard50\\.ru(?:\\:(?:80|443))?[\\/\\\\]+r(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"498f899f660bc1676abad3a1077ad0d88092a6c7ac4360778c2ed2848300a99b","regex":"."},{"hash":"aeb0787de92b7548f93bbae9cfdebd40d0e637b804ca92f4bb9cb897af61e3de","regex":"(?i)^https?\\:\\/\\/jczmskfywl\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d436eeb549804f6310f2849788bf65662ac3ecc242978ee220f4f1cce5f938cd","regex":"."},{"hash":"f08fbc2244b312afeb2ab0b333c4422141a258ae052ae96bbcf6d1fa515d2e67","regex":"."},{"hash":"46cecbaffce123693033d8977c0aa387725b68a759774e8e956ef58ed7ae26f8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"2853538604aefab20975c1100f8c46d097f0084a61e78527eefbf3fd4a85e6f8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+logo\\.svg(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"de9e8dbaa2f76a0f6df2f63b5cca9df1f32ba86ef3de49cf81f8366e7f4bb2e6","regex":"."},{"hash":"e493858a3a45264d567643c7ad9e5d79d0c448493503a0fc7c969deee7614e59","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c3989625248a40ed3926995d21e5db6ec58d6d853c95a4ba3b3bb9dc83648ea9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a660585d9f708fc9fc81271e3507acc0fca9410977ed13c797d59939e089f2cc","regex":"."},{"hash":"d8d5eedb98e8b9ca2ecdfbd95fe65cf8007a9389602b6308d328ac0ad987a3f0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:\\?|$)"},{"hash":"1f48c4b5204aeb2fdc83ce2683ffaedf77c5d55118fdaada85d583117ebfedef","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1a2f5bce9747bca4cffcbdada42e508cffb8d621703a2d4f1f4e8c69dddd7dfc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Lq7NgqWlWymjWiWwtU_HuTj3osBSVNfK7BzRciv66YDBYn8jY1Rdilds33aohvyhuk38MB5kOPqHZ1hiDwCEGQ\\~\\~[\\/\\\\]+78[\\/\\\\]+1024300_9[\\/\\\\]+3691_99018_13606296_0_md(?:\\?|$)"},{"hash":"e3ecb65b7afac0a939c9c7d75703a39d02e359c33d985f0d24e498f3c9f49edc","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a7d08598eb3705c191df69bd802ca764b36815fedf00d284dec51c348b0a7a04","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dcuorg"},{"hash":"8fcfc09a06fc0e2798bb57700ef26ef99b4be3a522fad93e86b9bd0d455f814e","regex":"(?i)^https?\\:\\/\\/xll122624\\.z5\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?"},{"hash":"c74091af6aa9ccbf7dbfc867c0972222a96dc5799a336ff7f34a87fbc5ef6aef","regex":"."},{"hash":"63ad7a147c0fe195173a657421acbffcdf9d6bd97f28a8f1430cece1de54c136","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a7d08598eb3705c191df69bd802ca764b36815fedf00d284dec51c348b0a7a04","regex":"."},{"hash":"de693bdb3f26bf72c896260386e405341406a1deb04926852fe1bfe4f2fa76ae","regex":"(?i)^https?\\:\\/\\/ipv6\\.40\\-90\\-196\\-108\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c4a5a2ad6a4c4ff9a51be4908ea4dbcb256e0c503141908622d0f43f788df5db","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CHASE"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"71d48c1b373c41b20bd788877f0fc90d9769313e0ab8e7e127881c825be3586b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+english\\.html"},{"hash":"d8d5eedb98e8b9ca2ecdfbd95fe65cf8007a9389602b6308d328ac0ad987a3f0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:[\\/\\\\]+|\\?|$)"},{"hash":"71d48c1b373c41b20bd788877f0fc90d9769313e0ab8e7e127881c825be3586b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+japanese\\.html"},{"hash":"b8b3af4b6d5901645b6188d19ea2f3c0536e1c57ba6cd184c0631c278339b728","regex":"."},{"hash":"c128b156918fad4010ed0949a86f9cce81b02153fafb24fc7e490529d00fd62f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2cd8d13cb389bda90d99ea2f925cbebdeacebc6d74d76d5bbb10ab0be0918c43","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cc4ef15e69d21107f74bcee48f070bbd4c96ccccd0dbe65d977308b4ad44aa1d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f9543d7e2b58342540d41131bf43aaf1095f01098c442ef8bb8e6633e8224e10","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+J2pFttt7\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=3$"},{"hash":"f9543d7e2b58342540d41131bf43aaf1095f01098c442ef8bb8e6633e8224e10","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+J2pFttt7\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=2$"},{"hash":"f9543d7e2b58342540d41131bf43aaf1095f01098c442ef8bb8e6633e8224e10","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+J2pFttt7\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=5$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d1734e660ba6f53fdbe39176665774e92b17fd47b3e75e626eea9a70880d96b0","regex":"."},{"hash":"b4baf0652ce42693a58cd6efe96f357eeffe4f3847512f28e560b15abb73e193","regex":"."},{"hash":"412db53643cf9402ff063850d459e0e9a1321f5623a9b92471a80a39ead83756","regex":"."},{"hash":"f0e4171215afe981aba26e9a88f3a6e94342c20123aebb17bfd9924146c092d7","regex":"."},{"hash":"6cb580cebf7cb0e8a5cf4119053a4ed741069b31079931a495e1953f53a71709","regex":"."},{"hash":"59ee8de7a221833b82c8a8d38e239a82fb902ea8f1e5c64498e165498517a44c","regex":"."},{"hash":"f9543d7e2b58342540d41131bf43aaf1095f01098c442ef8bb8e6633e8224e10","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+J2pFttt7(?:\\?|$)"},{"hash":"c1a3e23514417ce48bf3db42a5c2620029d32192bbfbf00b2f0fe2156ce4e976","regex":"."},{"hash":"e1bcc82c027eac864bbe08f69aef939c36d0ddb87185a78452d3e9110b0bd0f8","regex":"."},{"hash":"5ea1ae7c6fbed36a4d7e89a2978990dd3a4e18958589f859b870119316578c34","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"249b2c88241dac8b563a33e6a320e943d20617e9a5d409915d5fa9e033c9e271","regex":"."},{"hash":"9f675de551b5e5c5c2aa7768fe1204f4558f3747969a3a9690ceac617293462f","regex":"."},{"hash":"abc8790af8f51275d29f1b8e53d49515b49d648de87fd6aaa35ab0a9a48a46c6","regex":"."},{"hash":"fd44c603dd318098302d666a42c94b7ddbd7c27c395d5ab7f4491c3316802875","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"373137cff4f6508ed4a2bd5dddb413f7c0ea44d9495f17b7048becfe5b0e4c16","regex":"."},{"hash":"beebbfc4dd24f041c362fb49518c1772fbde0cc4835da7f0abba4a8b4c3ff399","regex":"."},{"hash":"2656fd4cd1927e758492ab6377f86f13bc9a405750dc6e4991596fdee62689aa","regex":"(?i)^https?\\:\\/\\/o\\-updatee\\.top(?:\\:(?:80|443))?[\\/\\\\]+uk(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2656fd4cd1927e758492ab6377f86f13bc9a405750dc6e4991596fdee62689aa","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|\\?|$)"},{"hash":"340c65cc81e6e495981f2fbeffa436b3a431b42e1011df3aee1a1b916ca54635","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a320cd37ede073c9fbbc44a13cbda3e0e75d2934fab141d21fe1cb0b8ed1cea1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cs2(?:[\\/\\\\]+|\\?|$)"},{"hash":"00318d314b1ade6e442f4544d115ec61083f69d855157cf89b824b90a4e7ac15","regex":"(?i)^https?\\:\\/\\/attcustomercare365\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"a445bc91a69343254aff4c4f0f8bc3f4d37e314882390910ecca55a8dc70d902","regex":"."},{"hash":"52c03f3833c080ab91f29a20bd2a47c77815345fcff4b81a6b5f7f0a108a79c4","regex":"."},{"hash":"a3e32ba59124036844fa30fa35e692a857274b6e14dfa9eeb3a4aca609406acf","regex":"(?i)^https?\\:\\/\\/signin\\-coinbase\\.147\\-93\\-43\\-60\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a320cd37ede073c9fbbc44a13cbda3e0e75d2934fab141d21fe1cb0b8ed1cea1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lpi4mmcat3j4\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1b7cfadcc8a6049879a0989f7d591da9e6cd473dd1d5a848e82f9b5c9bca6f18","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+reurl\\.cc[\\/\\\\]+yDW1Ll[\\/\\\\]+1[\\/\\\\]+01020194476ba5a5\\-783171ef\\-4df8\\-4541\\-9483\\-1e48a479a782\\-000000[\\/\\\\]+1t40xmSayz4VOBctr0to44ac32Y\\=408(?:\\?|$)"},{"hash":"0c7d92baf07737069e4296853d6833cee1a0a3dcf1fd29563e95de8c66816927","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c16a3d45c0b0468d34034290a3c818965c2e87fd736b3463ba840b43317a0527","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+far\\?HRJ\\=2333c9ah$"},{"hash":"a738483f319e0d782bbac756acc5f9b72f5ae11ddbf75343b04cc5cdaa905a3a","regex":"."},{"hash":"750a6d4f3fc63664c3d667b7dda6483bf917c355d28b1e816a536975a63cd227","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+found[\\/\\\\]+ics(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d2624e65f49a7c349799a9f68fd76c424e50d3739a7828cd970aafa60501151f","regex":"."},{"hash":"a66f62b018213ee63d0c92bbc339201629967cd67f1a45090292dd1efb9ecbda","regex":"."},{"hash":"84d4a0df7d86f11c8ea91b509481c281705f88e9bf6c7bb253dd90f4b9a9cac8","regex":"(?i)^https?\\:\\/\\/www\\.noreplyveriificatiionconbaseakk\\.67\\-205\\-169\\-96\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c16a3d45c0b0468d34034290a3c818965c2e87fd736b3463ba840b43317a0527","regex":"(?i)^https?\\:\\/\\/hjuyr\\.udfnvicuvwefd\\.top(?:\\:(?:80|443))?[\\/\\\\]+far(?:\\?|$)"},{"hash":"8b5d3c5a1be79cd5c6496f44ddc4502f40167226b6559e906e3c66c848b18a1c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"11951ca1b3f957230dff3b953612851cd35f84d97d6f047a378a3b8d93412df4","regex":"."},{"hash":"c8f471bfc90f0a863148f7ecadf17007e2dedb0eda84b65597d98c684e8e7fd1","regex":"."},{"hash":"2ce22beed5faa2df84d12ab636cc541e9f1592582844b03e795c8e82a0bf148c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3ccb8a28c3c27ac20993fd27a912b3a6eaa64a966cacb6b89180fe6ab2f657ee","regex":"."},{"hash":"d998b12d54340ad02fe6ab7eab69d426622e7327ce59beec5da85281213cef50","regex":"(?i)^https?\\:\\/\\/bafkreigrtnxkl7p43lptn4ullesgwny7bkjawufbqjg3idr6eca6grg6ju\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0b3aa9a897a7da93fca088192108a6e9a24b4eacace7cdb35b40899c769a5d8a","regex":"."},{"hash":"93a51f403c239141cc5cec48d82aa0b98c1b67db72373c38f2bab7ed5ca2dcd7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"086de92c6193a4514a09a73d8e5c1629b59dbf1fe8246fafb7eb4d1e5befd18c","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywah\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0d28d86aa910614d1d72e12f79cf8ca3c92499329cf56a2129d3259844596e0c","regex":"(?i)^https?\\:\\/\\/tracklfp\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"574f5c13fadfa260fa0014da808bff1eee536877f836a293b1cfd0a62e7376d9","regex":"."},{"hash":"69c0a891507e5f458d414bbda601c05043d8e41e860467c8981950b1dd2ed02f","regex":"."},{"hash":"086de92c6193a4514a09a73d8e5c1629b59dbf1fe8246fafb7eb4d1e5befd18c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"307584507fbd1d599cd54c06a0af0657fc731d0f0c70abea19b229a2a34cefed","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"d8b4ed6f042a607f32d7fed91b9f0652cbb9103316c9ab928b4b94f665559d87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mark\\.html(?:[\\/\\\\]+|\\?|$)"},{"hash":"2dfd705132705e7111d5229b614a4879e9b39df91571c89392169e4bf16f89a9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b9fec230f2a9e3cf6c1abc618e11a278131c26c2f96f93b9259309637c562388","regex":"."},{"hash":"2a7a62fb9810d07aa44a20d52eba7b789087f697f0e29fec1f0ca83de396154c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+themes[\\/\\\\]+classic[\\/\\\\]+\\."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"053721a89e8f877690f538301b001f9adda50d8b54dee621afdb239b095ea0f1","regex":"(?i)^https?\\:\\/\\/tracklfn\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"0d28d86aa910614d1d72e12f79cf8ca3c92499329cf56a2129d3259844596e0c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f49332566190f02a87acf10a92ec461c9eae97b3077d14b27594be24230e1ee8","regex":"."},{"hash":"3c8f033d5bf57d5da9d207f3c5a8ebe5957ca782361129ad69e010a3df2c37c2","regex":"."},{"hash":"7bf4e13fa8cb3468957e194a64c3ba292e463e77e81cd23823144c06e3cd74a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+WhNdGbwTlInkDenUh6eF\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ae9447751eb3ec6a5c87f6db827511d8a6d22e18d25aa2bb73f405f0ba0e7047","regex":"(?i)^https?\\:\\/\\/sites\\-de\\-rencontres\\-gratuits\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"053721a89e8f877690f538301b001f9adda50d8b54dee621afdb239b095ea0f1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"96b6325f7a9bb12acd40ef0fd6c6b62ee609ea809061b9ce5a1afc4c807b9039","regex":"."},{"hash":"4392e49df307f7c893d4e8e1f47ae93b432d44119c97a622687f72038d7e9c88","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bf37e4fc3d9cb2dd7df9e43dfd6f28f0820f3210f8284579a2fec59f9a72dac3","regex":"."},{"hash":"b2d920d91903c3b3875bdbfca905250101eb55d9bb514d48cd3f2fa552af4c6c","regex":"."},{"hash":"2a19df2cbc7d50b0f51453d05e271f517e47097d8f84fdccbcd7c7bacd8810dd","regex":"(?i)^https?\\:\\/\\/tracklfc\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"07112312673bc17b64afb620e85d8c1ea84a064cbfb83c776fdae5496a3fea55","regex":"(?i)^https?\\:\\/\\/informed\\.deliverysai\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"775b2a9e8217f6b2c28c842a7817b65cb6df8ccf16324129dfee6dc1a9b5462b","regex":"."},{"hash":"84e1e7a02c66b3c39fe659cd620a3fff6bdce72891cecac96af1df6a0a64934a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2cc6af479ab8ec8fbe74eabf95ae3f9078d39216f4432774f63a7215d9684dcc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"914dc73ec85f15c71549595ce21d208aa8d1b2fc949d365b9c18996b73f00a35","regex":"."},{"hash":"3091330bce89ef92e7e8945fd6e635e3062e2616ee023fdd547a9b4eab93232e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"df150777cec9912e4af1a5f5fee2499ed4ab3234a5b1babf7f92693338996d80","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yeldrhyx(?:[\\/\\\\]+|\\?|$)"},{"hash":"a19d489d52719aaf5a7e3a5ea2383769534d0f9bbaf055a0c498c8168a7a97e0","regex":"."},{"hash":"8a0131ca3391ead550bcea62029ba43d4aba4e11f8014a9a29c59b874406effa","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a7c5670f6dbfd0f5067e7c74162bd7a649e3843599ba912091189b0a80cce9a0","regex":"(?i)^https?\\:\\/\\/informed\\.deliverysak\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"b1c721c9cf16bca7f46ece62d252e9ddf26cacb97ce25b513e65b9bdb65c8cba","regex":"."},{"hash":"bb460481592f8867d3586a78d6e9d6f1cb86b11077b535c9a92e1869849b1ce2","regex":"."},{"hash":"369a6fd67370783a9d1dd69355fd0427fa95e39b4373f7cd0ac50fb51c1256fe","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"04e1e54a3ded70cb7d743239632155667ac6dce986e5612d668aab695313d534","regex":"."},{"hash":"17e5d4b8a12eae97084eb16d87fccc4c980d029cf06a60cc854b5db065019ba5","regex":"."},{"hash":"32ae52866364b7abaa9414d72fe780d509ad081b5d57c38c1091dba0eee41c7b","regex":"(?i)^https?\\:\\/\\/ishant63\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"3c6a772bd508a1b13d394537d9061a9502de5e3cd2f5da286a7b85dc6240f6d2","regex":"."},{"hash":"4a31129ce39e63a6916731ef6278a9d17f38697290d0e96c996335f9bd457670","regex":"(?i)^https?\\:\\/\\/tracklfv\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"9b87eacfcb9ae135eeebfe7a16f3de83748124fd14b730c599e216447b48b505","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"756965c6fa688ef29b9af989f73088888ea02b65d1c0b6cb7adf2614ecf587f7","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"ec883e0224b91714b6a5776a66d9a84af3a68c9007cc210cfdb67f03ad9e7917","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"2ec2245c2703fde293bf9062d8389b018642ed3de017af8fd8673f01f3305eda","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"3a04d862e34cc624b03e03b852be577ae774462307aeabc78049635a48196fda","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f720014ec12abf5a625655ad667dc54ed8b2d6f2965bada904bbdfce2b443466","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"34ffe465f62bcc2f5f9247ba4d5b2025a6383a0196b60412acc1bd160b2c4ada","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"5e11777e40c5d94ced79e03aee73ea3e7027eb01618cd7f8643e90064bf59cce","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"eca6883949727ef4957693b5ef3ce0cd82127c325147bea264a2fc3cc63c0453","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"709da50ea0e054008ef1cb6760a57b410fc36282cda80eda59e77665780e332c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f4ee21917ad97b617c3544eb8851264ce689d0cf12d9d946d80225475698ffef","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bandeja(?:[\\/\\\\]+|\\?|$)"},{"hash":"f4ee21917ad97b617c3544eb8851264ce689d0cf12d9d946d80225475698ffef","regex":"(?i)^https?\\:\\/\\/eneroregistrolbkweb\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"f4ee21917ad97b617c3544eb8851264ce689d0cf12d9d946d80225475698ffef","regex":"(?i)^https?\\:\\/\\/eneroregistrolbkweb\\.click(?:\\:(?:80|443))?[\\/\\\\]*\\?$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a08b148b481cf4d0cdd7e7130085dd3e7213a197dbce0d3d241d1d386d64571e","regex":"."},{"hash":"17cc40b16254d18152745c320b3252da9646ebf6c9664f3ebfcb054e39633185","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"76dd0f0ebd885c792f5eb542310d63940bc7a71a87f387392ddff6f8e8d2787d","regex":"(?i)^https?\\:\\/\\/click\\-here\\-105140\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9969dddcd406b61a40a3331eb9194fe6665e96b8e543163b0b42941ca27be57b","regex":"(?i)^https?\\:\\/\\/bafybeicpl5gbguyr4ngu4q23hylykwgvwkosymq7crwdfuean4t2wvtf6q\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"89ba3c9f303f4d00d5961cb0ece7836439e21da72a9ee43cc9cce2fa467e37d8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2246ad0c842b789fe9cbec119b23cf179cae9744d682297442510d34171d6f3c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2e8864b867267c3dd3f15f701d627caf6efa1b67cf6d0233529d93232566172e","regex":"."},{"hash":"68b2d1bd88ed6f761b04c5b76d4439ec2ae2bc19d85e3f5df4007064b87137a7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4531990b96604e1d003fe3b342b32df6322157874bae34198a86b48763c83877","regex":"."},{"hash":"672ab8068c65b412fa592772ef2e4b6ea293f6f4357f855862a11cea7119dba4","regex":"."},{"hash":"a01ef1c645033b4a5c747b338bdb9751f7d2bca33e8ce4579a9765523168c495","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2a19df2cbc7d50b0f51453d05e271f517e47097d8f84fdccbcd7c7bacd8810dd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"4a31129ce39e63a6916731ef6278a9d17f38697290d0e96c996335f9bd457670","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"86c2df98d1296667bc53af9c20391aaa3eb8fb8ad2dd2ad8d3545387cd39a322","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index(?:\\?|$)"},{"hash":"86c2df98d1296667bc53af9c20391aaa3eb8fb8ad2dd2ad8d3545387cd39a322","regex":"."},{"hash":"7d753a53612e353835af2fad7b621e2ccf0558b8ce330c57dbe39a653273cac5","regex":"(?i)^https?\\:\\/\\/pub\\-b0879d66c06e4547a6fe4d002fc9f88e\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"1a2f5bce9747bca4cffcbdada42e508cffb8d621703a2d4f1f4e8c69dddd7dfc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Wd_0xHiSz54_eBI1GL8TQspfR7MOtG8xLQmPMwHFlEalMcw8\\-XPTCo4Vb\\-aS7NCnqoLMGgYlDbSPTZvp3E5IMQ\\~\\~[\\/\\\\]+26[\\/\\\\]+506170_9[\\/\\\\]+1176_108347_1280406_0_md(?:\\?|$)"},{"hash":"d896794156122285aa265add8e7dde74ebcb2622470ec249a68ed9c4ad4d925d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d81118fc61739e83bda690be4e679aa56b6bfb62929159b75572a91670a28bf3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0d2850f8f6aa9ba471e4a5a02a9254ad0cf45e4122855dc436fe411d1d23f166","regex":"."},{"hash":"63ad9e3762d9df97426bbcdfb0bce18fa3fd2a840cd1b1ddd4341ae45e5a7813","regex":"."},{"hash":"8286cd827b189a675fdc68d5fad773190d87818574892625097e7fb3689c7bbb","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ff668fec99aa2cee81bc50073ec7632bf4c0b88e039857b2d16561298c4daced","regex":"(?i)^https?\\:\\/\\/atnxqsp\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"a8fca5e322423942715257234f12a66a5dceaa9b85493222434a98a76dbb4007","regex":"."},{"hash":"e78acc323e512793c58a0c7986da2e2a77970869b256ac40c628f09bc134a971","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b83cdddde6623c9878ed4f0a9e6092a6ef67b4fbb3b972b731b63c6679156949","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d16b784a68d2c3ed9f83988261f00da0b331b9bbd34baf9c0a732a04e2c229fe","regex":"."},{"hash":"b8c51b04149d60312f105bfebe73d243b765ae683460400c60a26adb46630267","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e1a703c73fcf104ca73a58733d969ce2990f5916b86a86adb840260382d46cd5","regex":"."},{"hash":"7b5e8e8051dbbd0817d51a2744ffc9d267b1e0276794d73a86e0dce91953c960","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"06466b96f4067609a720640ec29a75f93caedf8a439079810eada8e62444190f","regex":"."},{"hash":"ea5e66ee8fda5bb2d8158cbe8c21bae16cfcac8809b784093638862902d95f8e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"446269b4117732deb5bfe77338f4a85d97def823ed9f21d0b4d7e206c88e66a6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7aa035092e248c44125a7cf343399886c78c3b8e6da77c1c9523fdca7eb1e0ba","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"57da4b52b4ec6fd28a0b5fb60270b775319b35f4a386a041881210e47acf1904","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0e132778535eaa9d95386248d8f495af0bf6235f3d2944517705096704f620da","regex":"."},{"hash":"ef162831c9f3e2153cf301ce275f9b71f7edfcb0b613065e8a6c2a2ca901bea3","regex":"."},{"hash":"0aa094ad34dcc09b07c5c1c865760ff81d5c9578949ea26be492c84dc0acb7d7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)"},{"hash":"0aa094ad34dcc09b07c5c1c865760ff81d5c9578949ea26be492c84dc0acb7d7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xcimpr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c72255c3b4bed290721dff50503fce707b169d2c6c71b71f06f4eaf0e1f4d541","regex":"."},{"hash":"db6789ea37b8d1f1fad85f966b54bbcd6ac724476323e7380b9d769c25fb3cfc","regex":"(?i)^https?\\:\\/\\/linkproduktokpedweb\\.my\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"29adc0bbbf9fd9304abded61a32f3f2bfc2fe9c41c4856c9a21dff8b860d0d64","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cdfaf7a3715cfed01b73675a96d9496c6e9aa69ed5381ae47488a2cf6bc2955d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e9116ac17da78ec705dddae62a184b80ff5c2798fd52b8e77f0224203517a4f7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3aecb275d432663b341be18caa0321ac1d7de1053ca4fe877abb2bbc1c49125b","regex":"."},{"hash":"43c7122661f86cdaedfdc2b4a663b3e2dd862fbac6042fa5fd0ffb2a15e7af75","regex":"."},{"hash":"9f48cf0fa6a896ace99cb1f7a5baa227ae92118f131dbbf8b868929a49830395","regex":"(?i)^https?\\:\\/\\/dapatkan\\-sekarang\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5d3b215bf5ae724fb94ae1c8fbc3607d2ab21cb8493ed7b3f994f4e2bb9232d1","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"314e8e6035577f2da3c8dfba5b135300d2b6b75c345e1ecf8ccd33be4b90fbf7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"074e7fc31d5b0205e5eb751bd7d05a2316b3ce073c1641c03aa3fb0b76207dc4","regex":"(?i)^https?\\:\\/\\/bafybeigbklak72moga4abx5f7mwzssiibbzk2kluznzrlwdalupgirukaa\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b81f8a9307338ac23292c5dbb0808c9bea6faf07db00a69e8cd3847735f8a66d","regex":"."},{"hash":"d9fb812111a03ebd0d4708ef8b4fa92bd30b694dca30efa8de72b119948dc68a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ad631a8b882e240db387009fee27bc043245118c3a18c64db357287d69745720","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"658af31e42389223a21feed1fc384ce1edadf6f68334c6f7248f37995d77b229","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"1432c4296afb6284f10615eb77a170f094868ef3b3286a473a5c90226f002730","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"e1515e8eec6028ac56e30f88dc01dd6e60d03b294afd5c457ba2e6face9a438f","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"cb2f42f00dbaeecee4b44592121de25c575044898671ed5c17775a15885eda16","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"dcf01ca6d49f2129722a9673a938649046caeb2cc1491379e590ae5bb02bbc8a","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"5bb8ad1e97cfd5ef233d1a3768bd9323c4ce362aca992556f5c6410d36fd02c7","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"934d8d391e14583a4f33a5669886cc8f548afc89d1c664798a6abf61e2d2b113","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"cf4ae4438f52445a4855031dba171b22a962e2d8a8103810dca11bdc8b44c12b","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"5c927131872f396e8e92849faa3e9dabff7ead5d4c80c6ed00b82d5db3346acc","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"a8f6a0f9091260ef8b3114f2d6b05a0173352445b4da5007b93f7917e2aec895","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"885821abef34882525e4b3e70972d25a3081ecea44b3ab5c6222de5234b11344","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1bfe4e07479ebc3ea13397d91787e838fb8c79b851ab891c098df239a7b4d29a","regex":"."},{"hash":"d5e49d1853e593f182f0f48bbaa64c1cbaec9380274b051579c70981b8fe5ffe","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pages"},{"hash":"d5e49d1853e593f182f0f48bbaa64c1cbaec9380274b051579c70981b8fe5ffe","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8d3167d0177ccdb7b9a7bb69623e340a180d14501df48c652a33d16ef25df21f","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"5c786b28c59354bf51771c0989ff3640bd5ed4ad61821d69e1e3b55dbe45172a","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"7424cc669bf032419762707e96009b44c56e45a5adcbaf6265c30104faece6ae","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"dc045a08ad8a0ed0bd9084124e74a3fbde1773c050b0c2f31a4ac1005ec22422","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"ba67935ebc195e5dde964086ab399bd6e01511b99af345758db84bb841990083","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"8e8d1b5b35e90ffe08b0a064b582e729455a46dac89b19391d7a02271ef7b05d","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"631883dd11739720670bd73c06ded51bc5198ec7bbdaa4c79a9f74dae9985659","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"a8e6395303ac93c17231963176d287859eb7ad671bfe30203321ae214a7c5881","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"a0941a576ec16be204c83292f2c12dce790f2bfb4596738eae489d6298c5f8ea","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"36392f6f2b4d5385ba001ae89b6d202f30e68cda7c77052b52750d2ce79e5546","regex":"."},{"hash":"4de069dd4c75df472278526a12419c654fcce635be36f2960a51967e5a5998a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wc[\\/\\\\]+default\\.php\\?user\\=true$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4de069dd4c75df472278526a12419c654fcce635be36f2960a51967e5a5998a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wc"},{"hash":"4de069dd4c75df472278526a12419c654fcce635be36f2960a51967e5a5998a9","regex":"."},{"hash":"b033410f7b7fc3e5d9e675e4e2b743bd492212094dfb186bb380bbe1bd5460fd","regex":"."},{"hash":"7b1c1e8e0f942622a08dcd2153141a96deb1794dfd25def365f4eb3a3283dcf8","regex":"(?i)^https?\\:\\/\\/pub\\-4fd9e77129124c1d9e94952f32baeb7f\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"b377acb3d2acbd731181fdac32a82a366872e47b1bd9a5af3dbe4c4f1aa70f9f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b138adf64f9e9cb1068a9df8361e85533702adb0286081d9c8fb0e118651792a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"934de47ef3b4877f8a88f75c496fc44ad07e23c8b3ae99ef481a9eec8523c64b","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"73c421b5c9b3b86ecf2d5ee35bd73d5959449138baf1fee9da2c32d005e8a39c","regex":"(?i)^https?\\:\\/\\/emailsrvrvxvmxvmmxvxvmxwebmailsrvr\\.s3\\.us\\-west\\-004\\.backblazeb2\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bb4d4937c15d04dc98a17186e7cadaafd0ff3fc8e592cc5c82fdbfaafd6ff4a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jSZGBoczOA_iZtczvVjEKidMl9kRvoHRdvBQPsKaG5kWNM6Qoo9QpJ6OW9A2c9yTltwCdvMjgvTteuuzHOOnYRWKmq6lubCKcQQfT7lO7EVI4Zx5bt4\\-g_wRhfGkUQ\\?kws\\=most\\%2Crecent\\%2Cvideos\\%2Ctranny\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fwww\\.trannyvideosx\\.com\\%2Fvideos\\%3Ft\\%3\\.\\.\\.\\%20312\\%20\\.\\.\\.2C\\%22\\%5B\\%5D\\%22\\%5D\\&si\\=1\\&focus\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fwww\\.trannyvideosx\\.com\\%2Fvideos\\%3Ft\\%253\\.\\.\\.(?:\\ |\\%20|\\+)+312(?:\\ |\\%20|\\+)+\\.\\.\\.2c\\%22\\%5B\\%5D\\%22\\%5D\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$"},{"hash":"14fb1ef89f9b7015557896429a689a350fd7578f8d51a39a677871a329a90548","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+consume\\-sso\\.aspx\\?ssoID\\=\\&ssoKey\\=\\&locale\\=\\&enterLobbyFrom\\=0$"},{"hash":"a6c9acbee742fe15033e9387f14ed03b8c1237544e9b07dcfc8477470f016890","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"14fb1ef89f9b7015557896429a689a350fd7578f8d51a39a677871a329a90548","regex":"."},{"hash":"9e99c8f80f3e0217fd7349b7d4ba54286dd8083fff3927ef6aa8526fdb7ec5ed","regex":"."},{"hash":"f5faf456dc34c3f7cba287e4e4975140bc48d192409ae35c60356225e544e1c3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tributos\\-pagarhoje(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7f9b2f16707356dcb4073e593bc7425245a735ca8286121b267691ff71583992","regex":"."},{"hash":"ba288046910a9e04832f6310888818d4b845375287945b39a925dfb3d6ad59d8","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"22e343635e2f8eabdaf054865f5d5fe6cfc956a8ee12cdfa7121b455381d9a14","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"f4936edd31d56f618741a18f126c44d0796926485ed962cab827b45b92da1000","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"ae4809297ff7aca4ba901c1bbaba282d6be99555b785922e48d447923df1ce93","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"8405f76d36d0ffce59dc701641e02d1e44868600ae393f61cf6fc49e512b066c","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"abb053a0f7ddbfa77211604948c35c32b0ff0fb86475d8c5975bd98baa5b1c75","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"7b6d529fc96bfde65f9a4a41ae90388ecb2f38ff56e58ed6fb5eeb6e6864f882","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"24ed860a9bb680f7d55c186307a013a79aefc0cc61014bb54a308c976873b834","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"d9ef5a823a8b92684bffa3f3910955f35ba917ebc53e7bca0e8b3faea92e88c4","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"16d9fee76dda431ea9153b82cc5942c9ecc388d7a82a8a2dd1684911179ea820","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"7b066ab66eef3556ef116c18a1344068266209777925c77c1b35d29210fccde8","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"97b6f60cd182a6cf734e04d3cc18abf45072bf8d9d305da887c6beadc0483013","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"0cb21b56629076714e0342705f7366755d0a404876dfbefc2d60032344020f84","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"5db75900866472569a2d443efc0b5ce2191330d624eb4b70c14319e3ed88aa65","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cd61fd08c8d503c752b6e9d390f8a0c136e48989bf2967245fcfe6df8fcaadf9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+caspilot[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)"},{"hash":"7a4646e49bbf1a3d76a9046021c6ca0212601763d3adf412b8c5848d0df411a3","regex":"(?i)^https?\\:\\/\\/canadaapostpostgcanadab\\.top(?:\\:(?:80|443))?[\\/\\\\]+ca(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9a01430254a9378a33a6a610f014e4065267e12a3a6c9c2190d1ca8efc2842c5","regex":"(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ecf5dc2f93a04b3e16a1e7dd8651b1bcabcc8282bb3ff27e1ce94fffdefcb03f","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"6280aab12034d4424d16198a6d0096dfd11c3d5daaf48abcc12eea50670ad26f","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"4235b122d41db1a85d5c32fc6690a175d3e8708776b2a4f20a61c3ed83f1962f","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"c362373b54bf4c260ba07eafdd0e2df87c3957e4f0addeffbf626bfc398c299b","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"8f64960892a94ed1b13e630536709d91e8fa484565c7b71364fbb20aa6a7b7a4","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"30f98d74c9fd77f40b221803a66ab9cb4576b0ff49f86ede27a3796d4fddc939","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"9dfe5cd88a81e71713c4824b1250822bd52f72a0e54eb13c52c6ed2bf4c3d714","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"827b83f8f5c975a36a4b97db6da82537080ed2379abf5ca45110c85f9af16883","regex":"."},{"hash":"7a4646e49bbf1a3d76a9046021c6ca0212601763d3adf412b8c5848d0df411a3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)"},{"hash":"1b7cfadcc8a6049879a0989f7d591da9e6cd473dd1d5a848e82f9b5c9bca6f18","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Freurl\\.cc\\%2FyDW1Ll[\\/\\\\]+1[\\/\\\\]+0102019447653c8c\\-850141ba\\-d945\\-4c55\\-9bec\\-29ae5dd1feda\\-000000[\\/\\\\]+F4BDWAppXENeU9v2lSo9\\-9Jl9Jo\\=408(?:\\?|$)"},{"hash":"c72417c3f5b4c6052c73a6d51e4e8592a80dffbb944f1d8019e65eeb45609134","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cd2542eb316ddd52621a7c3b19441a17bc76f73133246f0866dcba043b182809","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"50ca4586c68bacde95edc2bd08ea187bacc068fbf363178cb3b5193cf66f2c34","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\%26\\%23\\%2B\\%23(?:\\(|\\%28)\\%24\\%26\\-\\%23\\-\\%23\\%23(?:\\(|\\%28)[\\/\\\\]+7\\%2B\\%26\\%26\\%23\\%23\\%23\\.zip(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8ede65b7e0c0c534d23a66a9f7e5a7c2934889cb30323b1f8ce650e9f3421cd6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+EL9[\\/\\\\]+l7[\\/\\\\]+bn72[\\/\\\\]+log\\.html(?:\\?|$)"},{"hash":"50ca4586c68bacde95edc2bd08ea187bacc068fbf363178cb3b5193cf66f2c34","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\%26\\%23\\%2B\\%23(?:\\(|\\%28)\\%24\\%26\\-\\%23\\-\\%23\\%23(?:\\(|\\%28)(?:[\\/\\\\]+|\\?|$)"},{"hash":"8ede65b7e0c0c534d23a66a9f7e5a7c2934889cb30323b1f8ce650e9f3421cd6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+EL9[\\/\\\\]+l7[\\/\\\\]+bn72(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5b29ec00871d615f2607d3cedfc43224e0e1561d09baf23c204931b243e9d734","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?alt_url\\=https\\:[\\/\\\\]+www\\.linkedin\\.com[\\/\\\\]+in[\\/\\\\]+grantfuellenbach[\\/\\\\]+$"},{"hash":"50ca4586c68bacde95edc2bd08ea187bacc068fbf363178cb3b5193cf66f2c34","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\&\\%23(?:\\ |\\%20|\\+)+\\%23(?:\\(|\\%28)\\$\\&\\-\\%23\\-\\%23\\%23(?:\\(|\\%28)[\\/\\\\]+7(?:\\ |\\%20|\\+)+\\&\\&\\%23\\%23\\%23\\.zip"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cf7557bb0d320d209b23efb26e6cf3e3757745034c29552cd3b08ef3b1c96bd9","regex":"."},{"hash":"4df0ea5a757c4c5b715b05e3a93d6d9d1cf0b46034e6dfabcffceb1381221f4b","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"259f33398a9d97930646f016ad490dece2e4b6e099be12200dd58f7c406fb2b7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Beast(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e83c78b1b7aa4e0d649b92fe4c92d8cc0b2d7728578ff79753d7eae2d1a9987a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7ebe85c6b59bd5dc0a53b7f6d8bd1ae976459bcd417dc835a49cc23886104689","regex":"."},{"hash":"a1ce74f28dd71133b64e550d2fe4b6ceb7fdcc231a0358b40e0336dfb7e0aa36","regex":"(?i)^https?\\:\\/\\/cinnamon\\-coconut\\-ncp3pf\\.mystrikingly\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cc216c550a7356821c47c5a4e13f812cd93b573a7159824981419fc6ddac9695","regex":"(?i)^https?\\:\\/\\/www\\.coinbase\\.com\\-recentactivity\\.146\\-190\\-175\\-173\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9392f76dcb4fe8a085b3fe6b32353feeec31a6a1ca418866b7c37053352c9a28","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a923cb146072cf649470499b4920e9d19d2291ba1465a8bd2687eb1e4f69af96","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Identificacao\\.php\\?SimplesNacional[\\/\\\\]+Aplicacoes[\\/\\\\]+ATSPO[\\/\\\\]+pgmei\\.app[\\/\\\\]+Identificacao[\\/\\\\]+9e549bb8\\-f45d\\-497e\\-a0e7\\-58b46c18859b$"},{"hash":"a923cb146072cf649470499b4920e9d19d2291ba1465a8bd2687eb1e4f69af96","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"03bd6063fa8025446334d90b24bede5eabb8a2a73d781cb1598ee5adb35912d0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codesepteng\\.php(?:\\?|$)"},{"hash":"03bd6063fa8025446334d90b24bede5eabb8a2a73d781cb1598ee5adb35912d0","regex":"(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?support\\-mac\\.help(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code[\\w\\-\\.=%]+"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"70840d419077f1d0d7dda4fd2fce09f1da85d80fd89f137718882ddb44be5b6a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a3207b07824d5c6fd650234b26f0b5c7ee02c13441e451ce61e55ba746d94dff","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7784ce3876c365f2a14504a3fa80878179edb3d45fa442a41007c7574c259940","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2e3e5cba4e4fad3e5455864c34e18f19ec445af6528e06f4bbf4e5ac23db9469","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"acce83c29761b20a03d2bbef8eec1afa3ed40df8254023a15c134f4baa933a5d","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"e2d0774edc1145c23189ddd13cd449baa4af0ab15d18f6d4b935c81ed842c61f","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"3f4372e14c4e10630ab61c781f7de5c1601dfa1876bd75b715a439aab581be9b","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"b32d60c20c3965fdcff2a44c4b5c15c85f6d4171d5dac533f796d3ab80c8465e","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"85c9dbb59162389e8f4ddf18b6a4875263d26a29172765893df3db8e93a0ccb4","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"4805e76aa454af984c75de1b3ffe48deb8ceb775391d490903401e6da59ab3bb","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"46677d4696b24c9260aee3ad70be21b94ef73b7687b9bcf85cf4598b1d3aca99","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register56136\\?i_code\\=84688356$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)"},{"hash":"e7ae46f12d47d2d4e7aa0e87348cb70c77b3126b7dc127e7bedcbedb8a7fc81e","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"4a801fda5340328623f9d40794a4303c4d0934f7eaa196e44e56409b2b9c82c8","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"84d6f452bd985da291c308c3d44348941858a0f180ae98fc0c015df568bd609a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9173[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)"},{"hash":"2935c8a87077b8495b81a11d01fc4b07aae9a45c0fc66ef087a10afc75aeb026","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"76e6456f84333074f6ca05b6f190f7c74fe0714b2519730783bfe60ec7a5dd7f","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"20baa4e4adb76cc05a74105c9218452033ff71a672f2bb86155eafbf92e2bb17","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"dd4ce7c0380efebe1061cbb497854d4724077d10d68f90a2c1ec8326ed6f1b31","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"f89bd4b657f8be03ff8a46f7597a324f35048f7b70be0494d4fe85bef36c26c9","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"a0b917540ae33ff45749865b17cf8b0a414895ac925e7aa6e4af15150c0182b1","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"ca4b6feca4b9b5ea8fa34446695b7e20903ba4049ed6778f14b79c39c98eb0ff","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"2281f25c6efafbad7b1d68694e31d0402372c7b8218bc7b82ebba02d27b6ad1d","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"e2ec76bbeb9de39429535ef835d79700c0d6dad890432ac08e3f0f4931823197","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"68e7f9b80fb32ba906399af597134a4c61d706ff989b1a511bafe7c8ce75e95a","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"94ea1a63bff1ade1c6404ec9a6e2f6150f46028746fa7e1fe7696780b32593f1","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"937d4cf8765547ba6007f3cceb29ecdad6cd211c7e8c56236313b5542069da17","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.li(?:\\:(?:80|443))?"},{"hash":"08e64513577437d40c5753d91775bc05adf4c24498ba4eeecc5146a9c8a3e84a","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"5c42710df8f14834902c128d61ab6904eac88c3709a187776454ec5f8be6581b","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"feab3128192eb28842cc424ff5451c54309847e03fa6ec8bbb15cc86e663dc1f","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"41bdd4fee0d2456c0dc16f7f9e0b0e31af43328052008c4ab157b14a16f9c7c3","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"626ff980c3e3b851eb8f18ee2971727600de8452228a093c7d8ca1a7e0d6d71f","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register56136(?:\\?|$)"},{"hash":"84d6f452bd985da291c308c3d44348941858a0f180ae98fc0c015df568bd609a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9173[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register56136(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e9782e1d2affd37e172a6438e7ea495b0715a4846a508a908bdedc75cda9e21f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)"},{"hash":"77d18bef0475f5b72870b6e47ef5ae0c4b924439e35632b2342c4963edc2d673","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"afc2c6015241d58833925e82fe41ca671a68c54f075491f719eb12f10b607661","regex":"."},{"hash":"9f6d850d15cd4dabf56a1dd4ba42a72386b5aac48530b0b03ca066bcc400fff5","regex":"."},{"hash":"8b9430bb64a628987804bca432e70e4a46dcbeeeef5c7c360d02c090e442ad48","regex":"."},{"hash":"a1b35fc51318dc66d526757ee57cdf2227b4f849144cef43c1d5756c343436cb","regex":"."},{"hash":"9c8698ebfe9206520026b88df63d7d6c2c91294b89e9f7b1c18181b42352a7db","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)"},{"hash":"304c4b6b97302a71ed03a1238d22e578798bf640491c60f2444b936d5188f31a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"99f03474f88143cd65315a43ff93c7817ca3be4f15c9d97455168f5d0cfa8731","regex":"."},{"hash":"9c8698ebfe9206520026b88df63d7d6c2c91294b89e9f7b1c18181b42352a7db","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify\\.php(?:\\?|$)"},{"hash":"ab3d0fea8f20590ceb939fdb8fa0ed5b68fc7bc3c4668d00bacddfa1b9c94375","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"3cb91fa4370eb03b930958efcfa4599b8022aae1bd628322168aed705c67928e","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"6092ae6fca9808e6f3676f340450c4c050f1bee3d233aff14887af7cead1dab1","regex":"(?i)^https?\\:\\/\\/www\\.pb36588\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"a90787195dad8211a1b1f37edde3d8e4d913b72dc7c6507b792ba549c8101a6e","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"24bf03ad11e9c3f03392c046356c431f1df3891ed2efadde1c98bdaa6af02c3c","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"07094b47528ee57006459cd2fc409b2dc4ff6d9d148085a294695c0aac30ea79","regex":"."},{"hash":"03c00bda29375ff0202dca76246c23615df74cfa30f48d1da96bb70625930362","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"1a465e03b2346c9c443062627b5da159577ec736c404bdf0dd9186656b3e3a5b","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"87ad95eac37bf90d725ea16660743ae99a8dbfbcc7e4d9b8413de30b4bae916f","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9c8698ebfe9206520026b88df63d7d6c2c91294b89e9f7b1c18181b42352a7db","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verification\\.php(?:\\?|$)"},{"hash":"c79a3b6531b8e77ea4c71fe762f7eed6aa004e73a795eb49f093897f54d4bc32","regex":"(?i)^https?\\:\\/\\/ankitjangid970\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"9c8698ebfe9206520026b88df63d7d6c2c91294b89e9f7b1c18181b42352a7db","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a6f94bfd5f1fcd49c43cd8594f23491e54b1b8614bb45b8d9aaa836fcf7ff4ff","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"66fb48f5cf9c6331afc8fe6dfc290a8e22185fe1d333ec263986d97fb74bf968","regex":"."},{"hash":"0eaf9cbc6f455a4e5854dbe5f049ef4b21e986c3d771ba9ca30676c277443115","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"}],"delete":[],"replace":true,"revision":1706229} \ No newline at end of file +<<<<<<< HEAD +{"insert":[{"hash":"71c32e04b288fe7ce1cdc6235ce50466869c9a05a9331d4b8bcff9986c785836","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"8810677bbd077b6c65662f873fd27fc87a209a1c532cd969c6478a0c1126a725","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+suataxa(?:[\\/\\\\]+|\\?|$)"},{"hash":"8810677bbd077b6c65662f873fd27fc87a209a1c532cd969c6478a0c1126a725","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t(?:[\\/\\\\]+|\\?|$)"},{"hash":"8810677bbd077b6c65662f873fd27fc87a209a1c532cd969c6478a0c1126a725","regex":"."},{"hash":"29993d444cab1afbfe77f11c760044a260fd70d7b59f55f2a0831ff022229f3a","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"c913826b147f1b4e79d45c781f415cf0a50ce0da818e0483703d2a50fcd75470","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"1d9437d4740fafd155d4db431d00e3e56f6c08adbef6801c25b832421b7c526b","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"5ecfadce5475c67e51c2acd58e4ab2a637afa12b126835290d89b47ff7ddc120","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"45ec513284e27631f71062005dac6b30355269c569d0c9781a0a6bc5c3467a52","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"41c62501cbef65f1f74dcc017496f1d3d93085b0682fdbbefeacb44a4e5d9102","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"a0c056cfee5cce3d2fe279f84a6981ae798c19256bee71df36d2ebf45d219398","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"0f58e52bcda682e358347e2b77796f7375cbfa7c4a39115ad955436d145de2ea","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"a5d6a5d17fe1f029947d48f5e63cf74e1b4e4c343b5b95ec34c4546380765dab","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"c478c0e7efc2861d5d591e23c582a26e3b9297238223ca5617a034bc46fe8ef2","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"4e8e7b9b69276b3d8d4afe197bb81417a232c1bd2be655df1f36aa39604cdf70","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"d2bd4ce56fde839910151774ed30452e81a7cfca95b21d4b4fb8c9f28e340f92","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"d0c5ab3c10153cf4aae6ffd37c90a16adc0f89fe64e9be7e4597233c6047343f","regex":"(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"df1ceba19bb3404341554c1e1abfec1dcc50acbd5adb5a849ea23b0e801d6734","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|\\?|$)"},{"hash":"cc9f82a934c795d8dc4673519a5a0ec55713989073abc6b9463b55b5c83b3778","regex":"."},{"hash":"151a975ab7e42864d66fe447f5effdfdf5cc695268a0c1a4bfdae9ef67c12d5f","regex":"."},{"hash":"ce3d383e92f073330c9b46e941ed6669d011190268171761b6fe06b92cbf8b2f","regex":"."},{"hash":"33b8494326deb9bc4973e90222a75230cee31a667f146c54c6a78937edd7ab6e","regex":"."},{"hash":"57a2105fc6fe40925cba805961dabe6f01f36813aae7fefcd4343cd8b1041a8c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b\\.resolvers\\.level3\\.net[\\/\\\\]+www\\-reddit\\.com"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"33605d19aadc7acb3872b1d2a588809e01ac10c664a0c6efcd10a3691623035f","regex":"."},{"hash":"a96f76ed5c641e4b51076a9fdc4fea07b59b1ebff4b008469855bfb9e216067d","regex":"."},{"hash":"9dd86cca2f919f81a2207b0cc1790cc01d576e46261f61a7d537279c8c6ee8ab","regex":"(?i)^https?\\:\\/\\/postvert\\.pics(?:\\:(?:80|443))?[\\/\\\\]+se(?:\\?|$)"},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?CC\\=1\\&bn\\=35405429\\;cpdir\\=https\\%3A\\%2F\\%2Fcontabilidadenovostempos\\.com\\.br[\\/\\\\]+rdt[\\/\\\\]+\\?va\\=admin\\@staff\\.uni\\-marburg\\.de$"},{"hash":"999670d971e47802838945935176fdd44550725ec643ad076b2e7c02c201b150","regex":"."},{"hash":"b2e0b6113e2dfea9b68e2a73a82a2a210d0abcae677a75c37b62e936c4ad50cf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)"},{"hash":"b2e0b6113e2dfea9b68e2a73a82a2a210d0abcae677a75c37b62e936c4ad50cf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=hJ13J478k5u6OMHDzJPRCoES7FmHB7NYHR_PRRc_kXg\\-1736277292\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"3aeba9f1ae2163f1c81459bd2195bbbb53c93109357710cb73aba20994356371","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0994c8039d6d5e2e7629cc99c62c282c0259e6b0b304dd7db5345d5111f2222b","regex":"(?i)^https?\\:\\/\\/shaw\\-106277\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sports2\\.html"},{"hash":"94d782df9dac8b5fbd5db52486a7ba2c3341f0ae4817f64b482ca368c803489e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"94d782df9dac8b5fbd5db52486a7ba2c3341f0ae4817f64b482ca368c803489e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=\\.gRAA_KmW5gYLi_1_MJhHNvPQne1Pa364ltYf_am374\\-1736277404\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"f71109da1ffe69aa55528fb6a256719e9af2e552afbf1272fed7a7b20763e9e7","regex":"."},{"hash":"96a6cf5bb93afa071fc2c891335c0ea2cb4e0ed19c1e1683fa02fa5b8d981830","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywwm\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"2af794d23236548d46924e040ded311ff5cc4efbbcda71978753cb656d00d8a1","regex":"(?i)^https?\\:\\/\\/bafybeiejwl6qpco566kov5bx32f3xm7mn7jtuccolhm52rlvfxscclgeba\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"32db8b744c17a5347fdc6deb911278030b3ed2c36c3561f4308ee5ad9144940b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"a0c63e4868724a4c6d780193acaa28a3f576e1038c478568b3d8e3843ca32fdc","regex":"."},{"hash":"552c1208e2dae4a295b6e18dd612855cfe2d9ddbc77d0c6896dbf16c17061f1f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+glft[\\/\\\\]+991782(?:\\?|$)"},{"hash":"32db8b744c17a5347fdc6deb911278030b3ed2c36c3561f4308ee5ad9144940b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=Vfj1KSjMRfxHnXsezwBqc51JxiXsj1J1T13g6_O8PHw\\-1736277650\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sports\\-updated\\.html"},{"hash":"57a2105fc6fe40925cba805961dabe6f01f36813aae7fefcd4343cd8b1041a8c","regex":"(?i)^https?\\:\\/\\/146\\-70\\-233\\-27\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]*\\?CC\\=1\\&bn\\=35405429\\;cpdir\\=https\\:[\\/\\\\]+contabilidadenovostempos\\.com\\.br[\\/\\\\]+rdt[\\/\\\\]+\\?va\\=$"},{"hash":"92fbb9fa38b12e43027a087b41ba90d649422623d821f1b253f3cfdd10c79fd8","regex":"."},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]*\\?bn\\=35405429\\;cpdir\\=https\\:[\\/\\\\]+contabilidadenovostempos\\.com\\.br[\\/\\\\]+rdt[\\/\\\\]+\\?va\\=$"},{"hash":"a1a3d7559625fb18d437728c32b75625ed37d261e8a3732fb1f75d1c22e8744d","regex":"."},{"hash":"20ea193c5e5b6f34d3034b3bce22e44e8534073dc04329e4cc45744464012805","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cbc385fc6e9e89a8d95df2d161aaaf0b8789375b2238f5bfcfead8a7c5e65250","regex":"(?i)^https?\\:\\/\\/hello\\-world\\-ancient\\-bar\\-5ec3\\.hsmith6897\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"2fba6b71b0969c98444f0c2d21b178eabb2fba7c36660bb321efc158298aff91","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register62899(?:\\?|$)"},{"hash":"313ec5de9920b0d905737102fb12543512dd5c78911fd71b0a25fed712db4665","regex":"."},{"hash":"2fba6b71b0969c98444f0c2d21b178eabb2fba7c36660bb321efc158298aff91","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register62899(?:[\\/\\\\]+|\\?|$)"},{"hash":"054d3902e04acecaa28601944b6fff573bbdefbb1067798da8c8403b0bcce8d4","regex":"."},{"hash":"5a20151bf9a1a14908d7c233cb70334ca0f28c31445ec56695cfc4064c8b6bdf","regex":"."},{"hash":"0ab00c5cca415737fc5b644317f463e948b4766a7dc4110d45f29276b15fa15f","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"7bd1aa8f2fbd0cfc22da0461e8c3506e6ff744c4e616819f3fbb7c74db073214","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"fbf888e20ec258b7b8fddfa2d5540d981e3279a7341736e2eb4c563c89fe5326","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"bb220e2cc3c9a058b9fe5e1715e6ede53ebe5162ca5f9cca179608caa4bd48cc","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"855fe8b93217a83e0342db401004fde76f4c1d2111394cbf521add35676d1c79","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"7afb9c112cc39be3e91300790a1ad93ac81bae6a4e9675983c8fcb20b9d5adc1","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"e24113b00d9712605d41406b412e26ca26b8f66974667f4af706103a9de00dd4","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?"},{"hash":"d67b0263ffb2b4d07c3e07c991fa6a50d8883d10bf0fb81f1fab0069af701a64","regex":"."},{"hash":"128b0ecaf47fc455fada9d50dbc469b06acae76e66d268ad126683feb269e4eb","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"0fd5120d0ab51d040b5a1b83bc51d12190dcc2029aa05a34752ee7ef28468de8","regex":"(?i)^https?\\:\\/\\/persibvspersijafull\\-hdstreaming\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"7fd71e7b49d1c4f5c90cf08bd29aec85a721e894107c245e763f75e4b9c4dbdc","regex":"(?i)^https?\\:\\/\\/roblooss\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?"},{"hash":"4edbf3a1bef1c74bf9982f1b884a95a238c1b90b34cacfa593c4f52d74588657","regex":"(?i)^https?\\:\\/\\/roblooss\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"b13850796b1f07246af2dfb63199f69277cfa711cad7f07649b50407abba9af2","regex":"(?i)^https?\\:\\/\\/roblooss\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"7490190c863facfb8e0660bc10325cfe95cf7096acd2d98cf70324d08cdc5ab4","regex":"(?i)^https?\\:\\/\\/roblooss\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"7525da818737c98013b3807431796f02b82c97a7815c5288a50430f6508882c1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+catalog[\\/\\\\]+20(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c478117fa82ef55936c3e723da2dfce0bd96902dce5b28e03e448ca4a8548498","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register58576(?:\\?|$)"},{"hash":"96a6cf5bb93afa071fc2c891335c0ea2cb4e0ed19c1e1683fa02fa5b8d981830","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"6faae37510623946f0966925c5accfea59440345e1e95fb5260afc790bd72ca3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)"},{"hash":"c478117fa82ef55936c3e723da2dfce0bd96902dce5b28e03e448ca4a8548498","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)"},{"hash":"5287265e644d475bc7dd4b423a05f07e2b276c072dd8d45ce42e1fd4cbee7f01","regex":"."},{"hash":"c478117fa82ef55936c3e723da2dfce0bd96902dce5b28e03e448ca4a8548498","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register58576(?:[\\/\\\\]+|\\?|$)"},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?bn\\=35405429\\;cpdir\\=https\\:[\\/\\\\]+skinkaanti\\.in[\\/\\\\]+max[\\/\\\\]+index\\.html$"},{"hash":"c478117fa82ef55936c3e723da2dfce0bd96902dce5b28e03e448ca4a8548498","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0da36c6aed9bfbe658c1d236528c396509932080ad1175f83375d12a9459996f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home(?:[\\/\\\\]+|\\?|$)"},{"hash":"6a9ade5b0af2c034dec0538ce36fa2d9d35b62275738fb7bfe0d9f28777eb1a0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?CC\\=1\\&bn\\=35405429\\;cpdir\\=https\\:[\\/\\\\]+skinkaanti\\.in[\\/\\\\]+max[\\/\\\\]+index\\.html$"},{"hash":"ff2dc12b34b4b738ad52f8ffc521ba0e65a5683cab8f08e7f90939fee5b30891","regex":"(?i)^https?\\:\\/\\/hello\\-world\\-patient\\-scene\\-f24a\\.antonio\\-cabral\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"2dc5d3f3bff358b99e6c4e2e6027218d553b2d9c56d850f2c65ccd9a3eadecd3","regex":"."},{"hash":"871ee1a518ccfdb53bba774e6a12153260a763b1c20b5072c980580b546c2fb6","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"ae1201bfe3346055239bbc4b60b6e50983b81e98a7d9eed8a3aad172448ab19d","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"ac2ef514f2e0371b005d32d793b1a099be9894080d88f421869415f234821a67","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"ffddbd6c795e36c420efa4e473a0dd33f5327cf88f42c412ffd98b63cce7a390","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"8236ea9678d2a1533263e172bb41088406540ac7665628bc5146638d2a883600","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"3f67925bdb5d6c7a0c4f9da9d75b74098b36993ffcafcc74af0880e24658194c","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0ef153d133807866c24f6d5ddd11b8336be219d0f8b728d8043f1dae72af1dd2","regex":"."},{"hash":"41f7648cb22a3828a29a8c3e553a5af60ca90f48a81f96f66f1c3a2bd4499243","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"183e0e728ac490a330d54c946ee068f0e6000ae4d8bfdae199a87b87224b986d","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"d86cc4ed8d5c868c92c7455a6a1872c51513466ad2de1679432a304a4ac8067c","regex":"."},{"hash":"3484ad0cb53c3c1a4843784ee71fe9faaf7f38b995928ec51c5b84453f978a30","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"7b5dbefd156d93b6a3d99db6faf3c2f97611ff7a2985b613412338c1556abd06","regex":"(?i)^https?\\:\\/\\/fssj\\-hbrjfb12\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"2ff092b063ee898a0f6def28ecd483a8d31ec1980b2fe2ea4a2ff36f3d201f16","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"003344e76adf4beecc4e8df004a876474533a8bff3d4f5976a88bc5e149342c8","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"25a541d9665197f3d1d9645e51fc05c523ec305fedcec23a946ad448065a50c6","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"1edb7feb72d8c05d907dddd77bf3bcd3217bae312c646151b678a65ec5d67662","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"5c48aa1af39f89d0e2c7fd611c2002290f8cfd03711cd21f95dd3d395bc68486","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"4f72edadcbcfd374456b5bc19bf576ec45d1b60e3cb179481ea071012a9708f1","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"9fea86c84b99c5b32dcabe577c389c28f87496d964fedbc9944ef4ae20d26297","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"bc34b12fa589856b092f8433925212224a895db10e8d5322969d0872632b74a2","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"4a990b3a195ee12362869805b487d3655c2c6407bed2a314991d4cad40916562","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"8bde745ff69b4a46e33ce9219586dab6fd40558c5bc15bb9bee3fb16f907ae5a","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"465c403ba3670ed559d42697e90940893e657555d276112794044d59bca9932f","regex":"(?i)^https?\\:\\/\\/signup\\-to\\-win1000\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"96820062fc477eba098e03ff58b1dd570058f6b2a180d147279d65f3d1b3ec41","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"6359dcc227ab5bb35668fcc732f99ea3fc665b9112fffe009fb571a8f168ccd6","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"c901a3768380adc5314baabf6412187448540ee6f67e73a963fced27337906ae","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"cf74525adf750f9e4e72e447ce15418098465f4b19df029494f0ae17ea010d51","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"94d74f9d888a7251f0b69152a65a56715e36f87ab63aff6595b377eaf25c47ed","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"7c817285ad268405a29e5bf196db0b8363f81e74155e065b24e94fbec16effdb","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"226bcc6a85c5d1aeab805a702845dbe183fc393080cccb67f83881ff32862e6e","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"14f2cbd6319d400badb803bf2d23fd974eb94a64614b5041a2806f260d3236c7","regex":"(?i)^https?\\:\\/\\/davecash\\-10000\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"c458e08143180ef271515a7611b9ebc5d74b42c84b51c641ea523212cd98817c","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"72e9d8fa55f996eb31c6f49ec35aa793051acc8ff0601034d5c1f5a5d8a51435","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"63d6b2e54422f294351824791212d2f11cf72eebe8889965ddc51a9705e25e83","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"664e5b2ea4b2f665541288825745b5e8c46a0f3a5d95c606d9e6c6cbfa58e380","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"90e1c1eaed55c8228949dea549263ae66a6b57503dbffd8befcf3c2dc4e317c3","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"88ff8f1c8b22a776398f5cdebb003e755530cb9d1e1b1591fd5bf3807f035ff6","regex":"(?i)^https?\\:\\/\\/suprrisenovemberwin2019\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"97473f02e0d19f1fa3ab5677055247f92ce406a58c27a2c5414609e12b8dacf7","regex":"(?i)^https?\\:\\/\\/sign\\-in\\-att\\-109300\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"228373b2b0de67f97e2a913b3f8b815e7874dca038e2a2327b6459d7e26c9a54","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"9947ab4951683d460f58169be461d98fdf7ede2d8a87c0121fb352a7ce7f8348","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"3a2456ed80ce495dc1b081b5baa3759071162a0e535031d39b4327bdeb92b46b","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"5b841990fafc7a5b01ded04a4b16b6ae9f08ce325f61118efec5bb8c361215bf","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"ecbec8d76340f2de0e7ab0c2adf283b08eff2f0712ec66951c8600342d22dc24","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"979749df4c7b50e87eae3b341da2a55241d3babe2b7b2be6182a8e33e6f5f221","regex":"(?i)^https?\\:\\/\\/mail\\-sez\\-sent\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"ea500c610dcf8d41912e986400f0cc361fe5db8b6d4c9b47d41af54406f16b0c","regex":"(?i)^https?\\:\\/\\/home\\-105055\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"e0c688f55f96edd7d93d907e836a597cec7ea19f8a5e329f9636816d71b7684d","regex":"."},{"hash":"1443c50f66b15e091b8c4ed86cdafd06c825853adb16cf196c4735e051a1e124","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f34a537f93ecc47b252dacbc61f94feb95cb65cbd381bb6d40fb9852c997db8f","regex":"(?i)^https?\\:\\/\\/qwer\\.ahgdkjaggfgdrfkjh\\.icu(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)"},{"hash":"85fc98cd0e244ce602fce3255a3cd04f3d71501a6371bc49ed41f9e037a4f4ed","regex":"."},{"hash":"a66edf336e13e86bc8aa790f6f0b7e962908d6670c678b1ca5f7c13b37c32e41","regex":"."},{"hash":"b4647fba8da5b4ebded84a296986934e05021cafa4dfb114a82f4fb0cee67dfa","regex":"."},{"hash":"0df4ccaa0719bcf8073e52873ca9f5b4644f6d81e46ee0c45dd990c07473273d","regex":"(?i)^https?\\:\\/\\/self\\-mst\\-login\\-mfa\\-365\\-authenticator\\.softr\\.app(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"31e22226fbc7ce6f143c8c8deb8b94c393ccb43c5bf6202b0e9954f423bd9998","regex":"."},{"hash":"0b35f05e53fa93fb700be54d2fc5889065508e9e0910a51f4a11ea6d8db5b58d","regex":"."},{"hash":"9aaef1f3b8abbdb8b649503d6e9fc105c2f92b010ee81b713446e4dfa3259561","regex":"."},{"hash":"59b65b1f29f6f8d8a0fddae6a1daa576784bae05dfa2a01ada9b295042252de0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"61d956e88ea7f3f3de29840798246bf8d66222a09a1bb2761e34d58e5ca4f67a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+personal"},{"hash":"c6cfa4f8d711124667652b44b13f76aefb08325810878d98e20bef35ced4884e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login"},{"hash":"7b1bf9ae22fa7299aae86a2f53d51ee30eda2586894f686df3798f6d3b3b9f1e","regex":"(?i)^https?\\:\\/\\/2s\\.gg(?:\\:(?:80|443))?[\\/\\\\]+XdY(?:\\?|$)"},{"hash":"531a6eb80ebb5c932c6966a996fdbac0da44dc2bc37005347ce78eed48c11a46","regex":"."},{"hash":"452a9601afecbdd54e980e333ea114fc2819368122821c794a3feae31e2d7485","regex":"(?i)^https?\\:\\/\\/falling\\-fire\\-5746\\.litaka105\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9fb08712ec116a5f09ec481f8cc59d7c7114825920a72dec3b588f39da72260b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+newleeg\\.php(?:[\\/\\\\]+|\\?|$)"},{"hash":"4fbfa885cd0f686949ded20e795f720f42301f087a02ca2fc2bedaa375671f40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+receive[\\/\\\\]+order[\\/\\\\]+pF9GD1jUHpm(?:[\\/\\\\]+|\\?|$)"},{"hash":"616e708a7195c4e40b0a58774dab6af874f8680b2133150eaa8e07176541a74f","regex":"(?i)^https?\\:\\/\\/matchless\\-buzzard\\-16db16\\.instawp\\.xyz(?:\\:(?:80|443))?"},{"hash":"d0b96ed9d1019fd85bc9e30759811b586e32c647bf1497d79c3fb036c4110d41","regex":"(?i)^https?\\:\\/\\/dfdfg\\.nfufywiomruf\\.top(?:\\:(?:80|443))?[\\/\\\\]+fir(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8a22fca65f5944bcc68f47c7156bd6134e26a1d60b82ed450b91c05b22b172c8","regex":"."},{"hash":"008dc1bde3cc246f57e9481989a27dec1f0223009f9e2bd2b1fa4ae60dad9be8","regex":"."},{"hash":"14766e46bb3a35d921b890c0081cceb88ce88b85bde49f3131caca345cd69596","regex":"."},{"hash":"9ad57785740dc8be10576fc3232b4ebfc7a65e6c4fd422dd4c774738c4df191a","regex":"(?i)^https?\\:\\/\\/w\\-updatei\\.top(?:\\:(?:80|443))?[\\/\\\\]+uk(?:\\?|$)"},{"hash":"2fbaa02418cc993659d75bff9707f0afab851a73fb821b509591d8f29a469bff","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+trr(?:[\\/\\\\]+|\\?|$)"},{"hash":"72bce900f93eff57712395937fd7fec5565e54550cd0b2ec5aed3a5317c729fe","regex":"(?i)^https?\\:\\/\\/attt\\-109033\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"9ad57785740dc8be10576fc3232b4ebfc7a65e6c4fd422dd4c774738c4df191a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e0ec908abc16f274e4a9f368f3e90742b18de1c4b551d7f1fb2463a883ff9fb5","regex":"."},{"hash":"7ea0317a3545c96bb76b76b82457bc8b0e0d90a9c23ae2dfc181f82561344afb","regex":"(?i)^https?\\:\\/\\/8635345her524h5k4dd8305d3b0d52a2616\\-dot\\-rising\\-study\\-290821\\.df\\.r\\.appspot\\.com(?:\\:(?:80|443))?"},{"hash":"787b780f9ef12f3a873879993e2d55f710315716ddac29b90fde779ab4539292","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"295f4988d6238f9dd5754b1bcb08557570d892fc873286b742707b2fa6593d74","regex":"."},{"hash":"81333c4f830842045a295efbbdfd86b182a4fcd6eb507486bc47f6a7ad3b529e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=1blacksea\\%40abusix\\.invalid$"},{"hash":"75c81913351d5c780316d21044bf546160a6fa93ae1f7ab31dee7b0b26744c45","regex":"(?i)^https?\\:\\/\\/jak\\-0019\\.jdwe\\.info(?:\\:(?:80|443))?[\\/\\\\]+chat(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"142019e8b2399c306f9826f9fbc6b48d7fd701ef7f756e42ae1c66c31891e985","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cid\\=506247$"},{"hash":"4b818b53ce20993be8408bbf4bdf07062f9e20c244256ef06767720d5a5081db","regex":"(?i)^https?\\:\\/\\/support\\-feedback\\-ae587\\.firebaseapp\\.com(?:\\:(?:80|443))?"},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=1$"},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=7$"},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=5$"},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=2$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"75c81913351d5c780316d21044bf546160a6fa93ae1f7ab31dee7b0b26744c45","regex":"."},{"hash":"fe8804db72d49e5aaf0cf19000974343d46088cec5e7008aa5c64caebe05d163","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8n3CWGgN(?:\\?|$)"},{"hash":"2d2dbd1a27ba092efb9c4f636bc36b332e3027453f5a4e84efaada5be4c56909","regex":"(?i)^https?\\:\\/\\/dg\\-64h\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e4b6d586baf050acf310489138810330e78321c7e3c10d1db99178e91d288c2b","regex":"."},{"hash":"07b1a9e2a95ee43dde1e9597b2b1e8cc059a49551e9d05dda74801b00bf67ed9","regex":"(?i)^https?\\:\\/\\/fitakha\\.tkj1mutuharjo\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"abb00840496f5fc282e73eb77f19ebb01c86a103e356bed0ed6bd6ac84e09e06","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"72e89c5a23e6c82e406f9ab5274b630b9a3efddf8e24206dda195ad33af3b6e6","regex":"."},{"hash":"7bffd4c67a06484c0744611b667b73f68cd09634274309dfbf9d6c476362d2f4","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"af51da9e897cdd5189d7a14ca84a82ca04656afd13f98c8e7d9484ce9f620d36","regex":"(?i)^https?\\:\\/\\/login\\-screen\\-104887\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"b3802d1af88ddbb71b75fb3f03bb4cff6a2848cdb9c1bf3134d788620dfab6cf","regex":"."},{"hash":"fb020a702fc04465c03cc3d803805ee52851385795f223015bf66ef06a2e894b","regex":"(?i)^https?\\:\\/\\/qwer\\.esdfdgfsdaw\\.store(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a8a9586decde21d3dd31738c1ebc3fced27aa1c5f6ea3dd3278bfbbf12ef0759","regex":"(?i)^https?\\:\\/\\/att3234\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"80dd8e182ee3334c674ef8612ff107696e334f372f749b1f466f2d5cdc27820b","regex":"."},{"hash":"90719239162e6fa3e71106b569da578b1f7cda637536fc8a139b72b3a2c74115","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+29603945(?:\\?|$)"},{"hash":"f5f5dbb883ad2b9b8cb8b1caa1ab54f2fbb23660096af30dde5f6ebd2713aaf6","regex":"(?i)^https?\\:\\/\\/usps\\-trackmk\\.xin(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)"},{"hash":"a4cb491d38698905f4b728bb18c007e3dff44bb24419eca1062cfef20b1148e3","regex":"(?i)^https?\\:\\/\\/usps\\-trackmz\\.xin(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)"},{"hash":"e64bf243e5d9bfa6e12d4795a346eabbee325b3a5a3e657f904a1a1a1f7c36b0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"61c3cd9bed1e2e36f1b470342828febe967215b9c610ece819c88d6cec149a56","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b66a59c3794471abb3137d917333fa13cb8bd17c72d26d745813303397ea6be1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?m\\=1$"},{"hash":"b66a59c3794471abb3137d917333fa13cb8bd17c72d26d745813303397ea6be1","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cd500394e8ec786f0e67d92bf94696bad957b53b2adc4e57a564aefcd2ecf9b8","regex":"."},{"hash":"b0b152631e63f948cc0c8c01f15c84f52971e74d50e1b371674689589d4c7609","regex":"."},{"hash":"bd14124e0fbf46d3a82c5c9fc728eb9a35f6c3b7d66d84e736afc195e9fdf71d","regex":"(?i)^https?\\:\\/\\/informed\\.updateiasdjhydw\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9aae9156f0924c2a02e4417f576571781c3b91954338b4f20f6158b3b8872976","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+main\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0662fb6ca39f6024d225b960b69715f1017d7ff296498299c6c8f18b05ec1e8f","regex":"(?i)^https?\\:\\/\\/postas\\-tasks\\.top(?:\\:(?:80|443))?[\\/\\\\]+sk(?:\\?|$)"},{"hash":"9dfe52e1fd8f2fad56d075744174ca9d55b8f3b48fed965a34226a673abf17a8","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"972f1f2ad4093389b0ed5502bc36294db71dfd62827f28aadd1239d28e406bc3","regex":"."},{"hash":"f5f5dbb883ad2b9b8cb8b1caa1ab54f2fbb23660096af30dde5f6ebd2713aaf6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"19bc0c4ead3a01b0007f012955a032ccc62281c4a483afbef78492d73f54f7f9","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"4392f69547ba5f457d4141d630282c1a430cf1465af594c5ef4a82000785142d","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"f929b65cf939555fe4d70e0662f74b76473ce3a06da5bb30e3e921409fad5f43","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"03a22a78824bf0e8e172a45b0629abfaba65ae251bbeded149d50351018c5292","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"3a7cfd2d8d44fa53ed6c77ddc384dc7f5f27da06b70ba0885af47597529651c1","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"5fee057c3050cd75b67a2410980064a7dadaa80f33f93c88bd88da23d9f4bf60","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"acb769a3804ecc3cac4923b27f707860b0fe1987816a63860f094613f4f0b4fa","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"a916ca0ae2df81bba073fb8c1da5973416a42a5b2cd960065f0566a6296e13bd","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"0faee87df0b21e05543fd24aef6dcfb9facfae0d7e52db7dd2dc32bc5454a8d3","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"704955834c150fba408b489320d8e75316533e52ed7fff41b9703700527475a7","regex":"(?i)^https?\\:\\/\\/100k\\-rbx\\-here\\-join\\-now\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c8eaa8e2162b515fce329f396d9c6b5b7454dc404523e449e3d7a3b0f89eed3d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a4cb491d38698905f4b728bb18c007e3dff44bb24419eca1062cfef20b1148e3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"b28c76ebe6e99bdf2168b1bb859851cdcd37f2704588f52dddb8f62e80fcb3e7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+drucken[\\/\\\\]+credit\\-agricole\\%2022\\-09\\-2024"},{"hash":"c39785e98c55800e06d6e974bfc0bbff6d20871773eca09c39174bee77fcb6b6","regex":"."},{"hash":"ffd473d2d51aee17e1e67a5f5bb0728682ce1b6c8447ad310e02ff2f96e41bfe","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"ffd473d2d51aee17e1e67a5f5bb0728682ce1b6c8447ad310e02ff2f96e41bfe","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=kg7_KI2N8TT6Nyg62OvKWqFhQMtfH3arTura8Pw\\.QbQ\\-1736287461\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"5c1eb996e48a70a3abe1f6c8f66b361316c37ba66d4bba698ff6b447a1e2c826","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"5c1eb996e48a70a3abe1f6c8f66b361316c37ba66d4bba698ff6b447a1e2c826","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=nI\\.Xgyajp1nYaWrege\\.he0auc49f3Zkc7TcMyKDqE_A\\-1736287448\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"5ccfaa924e25d0091460ac0b78413f451d8c9f600eaa3c2f2dd91dd468d6cc50","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+P792q8T\\?utm_campaign\\=AA(?:\\ |\\%20|\\+)+[\\/\\\\]+(?:\\ |\\%20|\\+)+CH(?:\\ |\\%20|\\+)+[\\/\\\\]+(?:\\ |\\%20|\\+)+H\\&M(?:\\ |\\%20|\\+)+[\\/\\\\]+(?:\\ |\\%20|\\+)+2745(?:\\ |\\%20|\\+)+cbo\\&adset_name\\=adset5\\-2\\&ad_name\\=c5\\-2\\&px\\=1246473213320532\\&c\\=5\\&fbclid\\=PAZXh0bgNhZW0BMABhZGlkAasXchAopzIBplgvRD2ny\\-rbf7XwX_bQ0mk6Q4FJ7gOSKGW72FYarSQ3CXqMqQOG\\-jzmlA_aem_UYnjpMLo1wOEWvfG07DX1Q$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1f8a031b5548d2773f2890ca2767e0f28a3d2813333b6f185b17e9d7f49aa4a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"1f8a031b5548d2773f2890ca2767e0f28a3d2813333b6f185b17e9d7f49aa4a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=iPUYoyYYEDL9aZL3H9ayP\\.R5B1OR7FpGpLZI2K3nZ_A\\-1736287963\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"269c1a23d97dee37e46b6741e0fe44c2861374598213bcc5112fc86469610853","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b8977684c65202a24825e031cf7698b8015c371daf7d1ebe2393dc943f868453","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard"},{"hash":"bf2a269788e7c4e1021a705191bda4c023aa50c517e0cd6dd326f51a054df4e5","regex":"."},{"hash":"8c88238b2c4c2ea7ee3072ad838b8015dbdb0502cc4ac0763f7af02f2833d6ba","regex":"."},{"hash":"5ccfaa924e25d0091460ac0b78413f451d8c9f600eaa3c2f2dd91dd468d6cc50","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+P792q8T(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"60bddfb11f055ed3eb900304108689f84cffc5b755622de7c2a5a2469c018787","regex":"."},{"hash":"8d7ba347b8d3dd5b2a964911783cf4ea933c9605d21cbf65c83b5aafa5336040","regex":"(?i)^https?\\:\\/\\/canadapostpostcanadahu\\.top(?:\\:(?:80|443))?[\\/\\\\]+ca(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=don\\%40mactraining\\.com$"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=awartany\\%40emirates\\.net$"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=fexfusfaurf\\%40goldwarez\\.org$"},{"hash":"86c26148e7272fee23f2bcbcf8401c0cc99a15423e6ae6e80f85b41f73ab51f2","regex":"(?i)^https?\\:\\/\\/home\\-102037\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"130509fd185b3cf508f5fd08abdf8978b6288f3d065ae9c4288998978e46d615","regex":"(?i)^https?\\:\\/\\/bhautikr2409\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"8d7ba347b8d3dd5b2a964911783cf4ea933c9605d21cbf65c83b5aafa5336040","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)"},{"hash":"0662fb6ca39f6024d225b960b69715f1017d7ff296498299c6c8f18b05ec1e8f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sk(?:[\\/\\\\]+|\\?|$)"},{"hash":"1e9c24303ec503eab902d6c3d16ab916e4fc9815a31f309275cff9dca5abf900","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"8da654c74194b0cca3ea854f9c68fed02fb136bea7e89cbe9a74fae439d30ef4","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywux\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b649e47e91610f0fe9062586aebe1ea20ccd775515805bdb77c94686916b6dcb","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1"},{"hash":"e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ofh4ec(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=amreetco\\%40emirates\\.net$"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=1ajooba1\\%40emirates\\.net$"},{"hash":"55ac84b7c5eb03dc334c7ccab8059ba3a6c7e9cc5e04db0d3c200041fd08455d","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"4fbf0614423052f06777fbd3235225a02fc8cf6f442e3c75e8b992bab013195f","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"46ce25a1782c0c8a45fa46949d263dd984143aea77289dd3f5464e1246da63c7","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"bb735d3e52f73113b7f13161871f3cbeb0ab4c435edf53eb7f887cc39352a780","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"60425d5aad0d20c32d4ad615531c8fd436b67f5c3a089e8200043bb196fa470b","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"25f370dda5403475f9ae21e4e0d2412dfeb1d9d0b72a71108c4230ec8acd3e71","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"3515b61d988c0f0c77b3ca1b6e437592aac4d5b0b1443b772343dcdb6ef259fd","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"15e269f7402cc1c8d0f69ed6fcbb1d2e331adfbe999c4ca66f2d2a937a6ac56c","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"14013990d0d84267155b2664133de2f20d72baa7b71a995b699cacf4b6e30248","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"7732ca78a767fc3d8563ec651d16ea7a8e75344036cfc90ecc878e584dd00736","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"1caf8a9a34e377feea1ab604ef3c677987fc590f5e904b1d8a65c8c00bbf229d","regex":"(?i)^https?\\:\\/\\/stellarvoyager\\-lightsentinel\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8da654c74194b0cca3ea854f9c68fed02fb136bea7e89cbe9a74fae439d30ef4","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"448bad510d92c68ab24eb3133384db89909fb895fc757a68d7deec97bf8c0087","regex":"."},{"hash":"711e6a84437d02afe31930b61ecdc98397e7f2a5b1489ec930cd6afb8805c6de","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes[\\/\\\\]+fonts[\\/\\\\]+suqhemol[\\/\\\\]+reenhouse\\.php(?:\\?|$)"},{"hash":"f66f777a33835768c082a4baca9755ca244287f1da9f6da96d18448393179199","regex":"."},{"hash":"28de51fd0f3fe2e76e7ac64ff7d737b8443697a8f98cb31e54c9259745ffb4d9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"16290d5f9aef01be6768cbee30247d37fb09b12573aa8a505cf769c0b4247598","regex":"."},{"hash":"2082a176d669ba1dab774435d2ddcab1236ffd0ba95d9e18c8a880292d703f92","regex":"."},{"hash":"403eda995fa117a300ba786955b5ea3ff4963eb59939f8f357c33b4457db217d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+juno\\-\\-\\-server"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8331611de8279c31bf6a346f5b072aaca9d18f076932a0f2f00f0047f388a288","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mxm(?:[\\/\\\\]+|\\?|$)"},{"hash":"49571a6d729cb9f864fde32382297fe126a6a0f75de009f1c850f91a2bbe26dd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+47825225045812659886XG3UUL3HL1Y9M5C074RBV1\\?XPVNRIRFLQMUKFCYKTQZT635599807658551988WLY7VWL1XFLA2CTMNYVYFIJ8"},{"hash":"6cf0c9dad6e4d761eacb78a9f8ccfa67d202c87e20da6bbe9e8d22a9a5e94347","regex":"."},{"hash":"41c66e992e905df2c3c58c454afc5e3461ea535f5a32cc348a2b660b985bfbe8","regex":"(?i)^https?\\:\\/\\/hello\\-world\\-icy\\-pine\\-f805\\.dinsdalelawrence\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"24e9c8243f03b28382e260d209aea821bdf9dad20cd11554ebcf04535bb31441","regex":"(?i)^https?\\:\\/\\/informed\\.deliverybat\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"a88b264c36c50400f39894cf3546be52f8d987b8906fcb070c1c703f7ead7a81","regex":"(?i)^https?\\:\\/\\/a\\-updatee\\.top(?:\\:(?:80|443))?[\\/\\\\]+uk(?:\\?|$)"},{"hash":"a4c66cb551abf94f36d432b25aec3d7ce7ea4418d29ce17244b8004403b37a0d","regex":"(?i)^https?\\:\\/\\/ubcdefghij\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1ea159a246255df3683e7404bc50103570c87d98703b6665e5de358ff16eae18","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"ecb5fe725ae95028a7d9c5f817f3e6af4879e25cea84d3da6f601079bc455bdd","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"ce48c22995158981ea24ca545b998b752028405732fc76bd9df18c93b0329d98","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"226b0c9b82cf6472dbda5d8be85bd4b5a34d54d0c3682b1109ed14e4908d01d0","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"ce164365dd3979c0c27f44620a6fa7ea89b10617fb31b7df224296dae1b94c9c","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"9c537031ca8b90a1cd9029083e92ecd1b2319665b1d59c58f3587fe7cc5c92ae","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"8f301cc2edfce2becd47b548451645161bc2c2a0d76e486e795113ece4eaf889","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"4f2b95b228183a6070b2f853f6ac46cb35ed7714db8c2a6ff04b056fdc207754","regex":"(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"727a63d5b343c81e69b4fd42172ab48b635a931e9b6e50677a0a89e134258fec","regex":"."},{"hash":"984b4cde1396222316cb01b0725dcb8b2f96a5c8867ef38d3d63ed446caaba47","regex":"(?i)^https?\\:\\/\\/tools\\.usnengquwaixingfeichuanwanmaaddrs\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"c133423c668334091c9bb8defdf246f0d93577f2140e09bd9238cae30f8da259","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f4d345d402eb6aed2b183f37f61431c438b67f5a2c01065d929b25e5cb589957","regex":"."},{"hash":"a8df352c22882f13f6366cd4a843a4493f4e9bf1dd91c004a175331038583349","regex":"."},{"hash":"a1abaa4ce934482d2ab3aa6c4fc9db33709a60ee2318c274adae0043ac763317","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1"},{"hash":"208251a8641547527e4f6bb8ec03ea40bca7f8b541630b0310cb3429549b96d8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"a88b264c36c50400f39894cf3546be52f8d987b8906fcb070c1c703f7ead7a81","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f815e8cc8adf4df6b844dfeccc4431a5deb10f379c18f5dcf0c336ca24e5c8dd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"6ee5d51dd41c02a7c017a467944e8f27d5134fe3bd5269738bff080616d69754","regex":"."},{"hash":"17e4540bc1a611b7c4bee795cd6d04935682b41db0812cf32cf8d466662f448c","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"042b3bc7caef351b1ed2923da7704bc9e6c1b073d531135f1ff8a4f3465741a8","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"5b0be7646348635008581dcf54c96be504c2674034e1107f722a49b872b31efe","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"f7fd4fecd7c2f472ee280ac8e52abc64d32f986309724276b5d3aea1240a8806","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"141927208c5007024a37c61884a7f0579c56db63c0f848fac66049ebebebb706","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"c60a29afa2789291ca34774c2f581240792771b383eda0193fde91e9622d0831","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"322608f21cb3bf44412984b2182b817e881c571643d466e9003bf2cf1420ffcb","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"2ebd77a9af4eaba839e7ab6d48beacebde7718dadccc0ddd27a9e7a8a9b66770","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"cadce3d52fd1e3988e46916e725f481257b2e3897c7e11384b6f59920ba4be68","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"a9b18bcc8b8d3e3f3f5657b7d9de6ff48a33a5b449319672ada6defe5c00b1ec","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"34bad81304e6fda7e2d1d7f7749214ebf89027be5cba950761a27f07214dbb98","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getpayment[\\/\\\\]+200171971(?:\\?|$)"},{"hash":"20e89bd372f8a5f6fec47d57a6d3913002b4a3de814d89a713b70839e08ab81f","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"0e8ce6d525af67962e6569ce888cf0427c144083da21bd2fc9f79e035a59910a","regex":"(?i)^https?\\:\\/\\/nebulafinder\\-solarhunter\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"5a94d85fce7ba8d0aa7538bfc7c763cfb681681d715466e328b20c0ce1f54ae4","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"512d3dbf4fbe6c21522c09811b1537159d678e309de5fd575370dfabc17a21ba","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"e17dc4dffb4bc91e8424586a992786a80bd13fbc23f5e64d8a2f34e89cc2072b","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"b22c25e026156c5f358ea0ba073cd45654321b7998e99af00b6fb3d47047321d","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"41590dfd72019e291caa6c9e7692d8d8012d52428071737f3aeb2be7b8a4bcaa","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"979c14ed89b3f284e18cfef773ff660a68ed9e9f8b561b9a8906fb583e64a230","regex":"(?i)^https?\\:\\/\\/universalpathfinder\\-galaxytracer\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"6ce6285c75e323124cb23e170cc3cf3844d9b3a9bb40e3a9384ae9b9047440fc","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"71c304ca5945277cf94cbfcb5f526336557c4de8850ec1108d30a57b3131892e","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"c8b8eaca9b404635fe62eeed7222c97019b8e92b4e2b5f117d001510c1434c19","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"cfc941ece93b852c9fca443684f92044d432bc5918ab8134f598ae63e59ff668","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"5bfa3a2a3a1198b614a4ce080db5fac460a7f4adb077faef879a373506c47401","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"c88b9ebbbc170e44597bc59e53d8565f05fc516c563e4db4ea1451157d77d474","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"0068e2819a663e072b38506fd37bd37ce443b367103e55836d1f30f4e97dd343","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"fc3410dfcda74348deb531a2bbf389e98dd315de766c099d40f7e5d174f8c39a","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"60bb0c12dd5addc4b776dc7c3d3063f0aaa6c8d3534dd7d103604119441c88b6","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"399ef1419b496ff6b3be62b26aba907cef5317970ea04febd34b8464a083f760","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"7f439a7657c26d09692a6eb411a490a7d6c84931fcdec7ec3c645698b56aadb8","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"8a24e53c1c45a37261188932a9c585dfb9d55f71e1fbe60a1456d704028f0912","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"aeb4da39daea70b0b1f98199127e0a214f592c3acb28039bf7d26599dee7bdb2","regex":"(?i)^https?\\:\\/\\/cosmicpilot\\-luminarytracker\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"862f212a9e904875ca3855c2a4bd36353018c469ad0db3c907e96dd4ff9200aa","regex":"."},{"hash":"559c0e495b33fb9b6c5db06db2dbecf8a744c941f1e9542de67e26e072cdf66f","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"07721090b8bd8b8afd6e8db652e5f44fe9c48158bb8e7c4a38faf6db1d77eccb","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"e7c511e95d19f64fc9872a245746ced3b588707734d1f52ec3e073c74ef408d7","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"284dda7dc66c23a85d7e7a92359a2c107d38c523061ab0f95df6f157c314e91e","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"72f4ac7496ae28006a60100ede0392b0b240d498bbdd6744d026577823972b8b","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"d28f7b2f37d8f54dd585ac3211acc1ca984b5d12b1172e3082e9a76b97d9049a","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.dk(?:\\:(?:80|443))?"},{"hash":"f6d2d49d2f0c7e6edf84a5807fe378f0cb3daf260c51cd2300acf991e64e99cd","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bf65c4167acdd4d3de3e001c635c1be858c8085eb25e9eff3d59db41ceb68827","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"f37a081f14436042fd3735d6827c379d6543d6594c6475a6d978f41b3c935358","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"7bc269fd5e140698a7e161f10b442492de13930cb0a963fdfc304355325b8d75","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"90fa75838ad759cdad98e1f00fb8eebe3364f324dd4039c93a018cad8b331696","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"13c8c6c9642647740c36305360d65a448dd3bb7a3c4ead5820b21fec746533c6","regex":"(?i)^https?\\:\\/\\/cometdreamer\\-skytracker\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"403eda995fa117a300ba786955b5ea3ff4963eb59939f8f357c33b4457db217d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g\\-m\\-x\\-server"},{"hash":"00e33f18ef59cb788c6e4399c3933636f4b78f4d561f80730289f6d2175cc049","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"00e33f18ef59cb788c6e4399c3933636f4b78f4d561f80730289f6d2175cc049","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=sivsQ8GJGIRbGp8vbrLUk2KBUk5Jrq5E36_3PFFTRzc\\-1736291365\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"f78908889b4f2b928caf846d7b65ad39198b403f325aec4499fb75c498cfa82a","regex":"(?i)^https?\\:\\/\\/bigpond24\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"880d87e8d46e498059cd36967942bca6e12325039aae17add85c3224832c54ea","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"5c02d81dd826c33a213cabdb8e3681e2248e2df254a865761b25504a54ad3ab8","regex":"(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"f214fa2fae2d5ccdd07fa11feb37f9a38353fee7f9a7c3c9c02973d2812b35b1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)"},{"hash":"450283b76df188c623babaec326799cad8793932be0d4737200c388eb7073f35","regex":"(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"ff822926e14be01ff7dd0666782668ac0e1a9eb66b2301ebd05f14e35ec9c9c1","regex":"(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"880d87e8d46e498059cd36967942bca6e12325039aae17add85c3224832c54ea","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=51Rsbsjc1aQagx\\.dgrPquKvhsy\\.gwcmvCmUI4Q3RBmc\\-1736291441\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"f214fa2fae2d5ccdd07fa11feb37f9a38353fee7f9a7c3c9c02973d2812b35b1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=QJ6TINH9Hk0cZsyCd4Ec_SEn6nqDBYIIiNv1GciE0No\\-1736291518\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ef7b9f6e09264325602ef3d2340e8cadb2941226f51fbdc41bc5654a2a1cdea7","regex":"."},{"hash":"1b115ba4881e7fdc355470a2aa5fa452936e512548700065be76a41f0088efa1","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"31793ec030d2c8edf32ea2c434376fad0e753cc6b53b6ed1a2e1d67c0b5589b1","regex":"(?i)^https?\\:\\/\\/aliatea55\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"c5e1bc0b6f4f68888ab2d2c298594241acf7a7906a5220e395d1de8875448dbf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+taragibleu[\\/\\\\]+pages[\\/\\\\]+region\\.php\\?lca$"},{"hash":"e4d5931b739fbe529862a14faf1d3d9554777320fd37b77664648b487f0738d5","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c5e1bc0b6f4f68888ab2d2c298594241acf7a7906a5220e395d1de8875448dbf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+taragibleu[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)"},{"hash":"c5e1bc0b6f4f68888ab2d2c298594241acf7a7906a5220e395d1de8875448dbf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+taragibleu(?:[\\/\\\\]+|\\?|$)"},{"hash":"a4b550c7e4942ce9bb2115f7ecb109dd6815186b9cee95779b5b24a8ce3e3074","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e05a7ee836a747edef2d9670133769cd216a3e5d2111e4c25e8bcc26bd63809a","regex":"."},{"hash":"a4b550c7e4942ce9bb2115f7ecb109dd6815186b9cee95779b5b24a8ce3e3074","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+passphrase\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=andreag\\%40fambi\\.com$"},{"hash":"81000903446fd64fcff1ee33d0e5980e36640cd1330108e36e7db990bc4abd5d","regex":"."},{"hash":"4d12e854d96efa48853337e63cdc633559cc6a0a532afc1faec6d327ce98b895","regex":"(?i)^https?\\:\\/\\/3992389\\.com\\:9900[\\/\\\\]+web(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"89ba3c9f303f4d00d5961cb0ece7836439e21da72a9ee43cc9cce2fa467e37d8","regex":"(?i)^https?\\:\\/\\/estasfetapost\\.help(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)"},{"hash":"5bd25e7d03591a120dc9993a376ea9163ae7396b1e8c9a457635fd68ba76aa87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login"},{"hash":"4055d4bd56bffc0e2a702ee28275fad142c73b6debd76c1b2f203cabf0734f4d","regex":"(?i)^https?\\:\\/\\/9075562\\.com\\:8866\\/?"},{"hash":"4055d4bd56bffc0e2a702ee28275fad142c73b6debd76c1b2f203cabf0734f4d","regex":"(?i)^https?\\:\\/\\/9075562\\.com\\:9900\\/?"},{"hash":"4055d4bd56bffc0e2a702ee28275fad142c73b6debd76c1b2f203cabf0734f4d","regex":"."},{"hash":"fa27708a48f1c2fc6d32f4e982fa690fffb51cc9f824ca12257e44ab63f1553b","regex":"(?i)^https?\\:\\/\\/cgvri\\.lsuuydsncue\\.top(?:\\:(?:80|443))?[\\/\\\\]+far(?:\\?|$)"},{"hash":"4d12e854d96efa48853337e63cdc633559cc6a0a532afc1faec6d327ce98b895","regex":"(?i)^https?\\:\\/\\/3992389\\.com\\:9900\\/?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"10a9996af54f3a237de9e85ec22ecaffc83ec3b682689b6403226aafcf9cd136","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e[\\/\\\\]+authID\\=TkWEX[\\/\\\\]+tracking\\.php\\?sessionid\\=b4b3808c61f3b77d4fd400c53ce4a77c$"},{"hash":"10a9996af54f3a237de9e85ec22ecaffc83ec3b682689b6403226aafcf9cd136","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e[\\/\\\\]+authID\\=TkWEX(?:\\?|$)"},{"hash":"10a9996af54f3a237de9e85ec22ecaffc83ec3b682689b6403226aafcf9cd136","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)"},{"hash":"5bd25e7d03591a120dc9993a376ea9163ae7396b1e8c9a457635fd68ba76aa87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)"},{"hash":"5bd25e7d03591a120dc9993a376ea9163ae7396b1e8c9a457635fd68ba76aa87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chat[\\/\\\\]*\\?utm_source\\%3D\\%26utm_campaign\\%3D\\%26utm_medium\\%3D\\%26utm_content\\%3D\\%26utm_term\\%3D\\%26xcod\\%3D\\%26sck\\%3D\\=\\&utm_source\\=organic\\&utm_campaign\\=\\&utm_medium\\=\\&utm_content\\=\\&utm_term\\=\\&xcod\\=\\&sck\\=$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c8ad0c3d6a9ccc354556799c627a0aa74c31e45ad1ef448386621b7b3f49dd92","regex":"."},{"hash":"5bd25e7d03591a120dc9993a376ea9163ae7396b1e8c9a457635fd68ba76aa87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chat(?:[\\/\\\\]+|\\?|$)"},{"hash":"0f95dcda2d41a4e7a9b17976f56506b6195430015f3ceb9919ecd40c5b916f51","regex":"."},{"hash":"b87e9f0cbdfcb544f63494553a9008c5548cffc480b465a57ce6f0f4f9581b14","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryuvn\\.top(?:\\:(?:80|443))?[\\/\\\\]+l(?:\\?|$)"},{"hash":"03670ff0a9055b4b382e9ac3e6f9b8deec3e40158a48e537468e1fa6ea6a6769","regex":"."},{"hash":"8644ac84d2a10264602eb2b9cacf70fd24ba5154b53c1ea0fb5470b74f68ebe0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"554cc91fdc5205b552bc6b6c26f4f8f653f7114fe07f75654d81cc4dd130a655","regex":"."},{"hash":"48943563367fcdc33195f9a9c7b91b1833b9aebe8e0e79b3045d114165ab2bc6","regex":"."},{"hash":"69eb7200be923190a0f8ad70722709d7dc3b94a7c0c20895ec04be8b6dd1ede8","regex":"(?i)^https?\\:\\/\\/home\\-100162\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"5cb1860c9ef047539f4e34d39dff04d547ec62f915b115a587286b3e92ff3da5","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+summerser(?:\\?|$)"},{"hash":"6a00e624691bd631964e13efb25034465129acddbb85750cab463af281103f23","regex":"(?i)^https?\\:\\/\\/home\\-109919\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4efd44fca28826b59a6106b6bee932932772db9f951cb7c641b00e33537581fc","regex":"(?i)^https?\\:\\/\\/9127876789\\.audio\\-securedocument\\-signature\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4a38393cb209f32cfa3464e776ed26c1f0ad2089bbbe7690e76c222adb804479","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+MSDGKRWIZZXPJAZTy2siuyisl3gvw6tpj0\\?qbinrzgeyfknsaro31976170034912776ne45230lna9c95i8$"},{"hash":"4a38393cb209f32cfa3464e776ed26c1f0ad2089bbbe7690e76c222adb804479","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gLvIb(?:[\\/\\\\]+|\\?|$)"},{"hash":"b87e9f0cbdfcb544f63494553a9008c5548cffc480b465a57ce6f0f4f9581b14","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2e3e5cba4e4fad3e5455864c34e18f19ec445af6528e06f4bbf4e5ac23db9469","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"19c1e905de391117121c665cd9f594a8f15bd711c189694ed873d6227f8cb19b","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"acce83c29761b20a03d2bbef8eec1afa3ed40df8254023a15c134f4baa933a5d","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"e2d0774edc1145c23189ddd13cd449baa4af0ab15d18f6d4b935c81ed842c61f","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"3f4372e14c4e10630ab61c781f7de5c1601dfa1876bd75b715a439aab581be9b","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"b32d60c20c3965fdcff2a44c4b5c15c85f6d4171d5dac533f796d3ab80c8465e","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"85c9dbb59162389e8f4ddf18b6a4875263d26a29172765893df3db8e93a0ccb4","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"4805e76aa454af984c75de1b3ffe48deb8ceb775391d490903401e6da59ab3bb","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"154f48a0b71841df88e8545e4516c221b774873806a502eed0e77bf041ff3e06","regex":"."},{"hash":"46677d4696b24c9260aee3ad70be21b94ef73b7687b9bcf85cf4598b1d3aca99","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"e51b836c50767596ba7083cb8dc262f187db25e14293f0229ee3cc6b75d26557","regex":"(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2996dfde67d03193afff122e3cc793867b10c48b7e48a0e067a3928995491c51","regex":"(?i)^https?\\:\\/\\/videoinstapornhub15\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"21a452325a7dcfa1dc18878432eb1e7504a0d1835509a5625020da6479ba9f05","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dc4cc(?:\\?|$)"},{"hash":"9490314b78a1cd27e02626ac8c9ea36f10a2f56bc05d28cf2241cdcb12abdbb3","regex":"."},{"hash":"260409544c957539843993e6e00be018f751f55f9bd19ca2d333c27462b4713c","regex":"(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?[\\/\\\\]+server[\\/\\\\]+indonesia(?:[\\/\\\\]+|\\?|$)"},{"hash":"619296f6094b7e270c8cc172a327dbd26c01872158830bed6a70a84e07fef124","regex":"(?i)^https?\\:\\/\\/servicefreemail5241\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3469145051347cfd434389e2851b1946b3c3532f2c367284a806f2eee1284af1","regex":"."},{"hash":"e0d101a1b06f43e5275d41a31a11b47d7ea2552da2c274e9edb2f9869ff0b1b0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bd3e25b20a3d6dd598a6bb2ee181418d892faf1ffd907349abd4e6c898048abb","regex":"(?i)^https?\\:\\/\\/smwh168\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5488b6e23d86e910ced66ccc16137bf9e65adfd879e2ac37891935c1822de639","regex":"(?i)^https?\\:\\/\\/01010o\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"a73e8a703170bd9bda738ae827ab31c823db38bb6f33a5f1fffb2cd0d89fdc8b","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9609b3a1a869be6227632f72300b0fee54f876b91e004ff2aaf6a3388dad01a8","regex":"."},{"hash":"382a5fe299f08b2be4c4e982f3039d07c192a36926977119586d4f7ed3ac310f","regex":"(?i)^https?\\:\\/\\/damp\\-night\\-d3ec\\.sharepointme21211\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1c433a60151a42c208a07d947e412e39b76500bb6d0ce2d1880c2fea0af665cd","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1bf4da03f641fc1bf3d37ff7865a5e33037497094c309b7fe42144d42e5efee7","regex":"."},{"hash":"f57878ed8799b143880e343b4ab7ce3d25fba14cec14541a8498f5b0df9f31fe","regex":"."},{"hash":"2d42d74f0b59e981a3e352642b2c1ea0c11951a82d84b8a63e4f86f8aac14636","regex":"."},{"hash":"609c35e3025d7bbb64a061c57e4581f62a16530fa9a2478aa638ea58285d4be8","regex":"."},{"hash":"ed82b548a88a0203e77c2ccd6490510df4e1b050df226ec528554869f4e0f1e9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"168ec475105c75ed1a2b0461d7cd85ad4df9c369b0a0b39220c0e2697bdee9d2","regex":"."},{"hash":"3e32f050316e013aa235d376f2f6808bb18dc451785e1d825d93f787833a823c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jsdisabled(?:\\?|$)"},{"hash":"3e32f050316e013aa235d376f2f6808bb18dc451785e1d825d93f787833a823c","regex":"."},{"hash":"400cd8b5216818ffce7743dbc047d3c3559a170eeb01d8b0b35072e6f336fbab","regex":"(?i)^https?\\:\\/\\/www\\.megadealsonline\\.store(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"75684b5b410eb45dcbef1c948b23c80f14502120a3d722acfff3db9a2de4ecb6","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f4459e56c460d33d6b9b78917a5bbc573595ecdca543774d9836c89eb8f5e478","regex":"."},{"hash":"5e7ec0111d1d7c55862a6342f8d8aafb766d36fe8e0b2f94e3a68180ab465350","regex":"(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8616844f0f0b447cf92cb89efd9eb4056504d631b2092233d90146287a9f4f1f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e6ab7e33b0fdd2d91f3313b1cf391fcbd8e0bee04c27491f4285111067ef8f37","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b4668a0d73f389b47d9f8d881dddd96fc9f1b1d56e78b9215990143d2a1fda28","regex":"."},{"hash":"0340148fc5572f32d5eeecc5a76c7eb119c3f73eeae7bb574efbe1e7e40438b0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6e0e1f72489168c294b567db2d21a3b254b8b0dd50fda523d81b14f3b0d3cfb1","regex":"."},{"hash":"6b2bdd8054210599dfa0cb0db86a790cc6cd29ba155f2934cfe3992d1af9b040","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=geoamiata\\%40amiata\\.net$"},{"hash":"3cf2abaf70f1ade572658b22295c5a50f4c0c8d931e849714a6057d973fc4259","regex":"."},{"hash":"aee686c292714d456c652777edad367b0bd572d170f25b1eb7c65d1b40632dd8","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"75681089dbc460a42cb95b2c215df56b9876ec408a8356281a832de64f8fad56","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"abb072e40e5c825dd9caf2bd94a4d35ccd130aed5b48d151ab4dc26c632556a9","regex":"(?i)^https?\\:\\/\\/signin\\-information\\.198\\-199\\-82\\-48\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$"},{"hash":"7cf3e1853c98f61c1c7c0b3f4b601006bceb3a775580dff5d21d51d2c3e9cf04","regex":"(?i)^https?\\:\\/\\/attupdate\\-100110\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8359ad72dba23d61fce2df077a8ecdf66f053e42ec2281d048fd79c9cf47a27a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"44b765d7f9f17bafe989287c6b2d0844be8af484d954f1e2309cec5d62065f90","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?umail\\=tarasp\\%40abusix\\.invalid$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c3c982ac37e5cdd9f91a740065140b938d94ac2bda88ca517555846aed294154","regex":"(?i)^https?\\:\\/\\/www\\.signin\\-information\\.198\\-199\\-82\\-48\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qs(?:[\\/\\\\]+|\\?|$)"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m(?:[\\/\\\\]+|\\?|$)"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7(?:[\\/\\\\]+|\\?|$)"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/mlr13\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+app"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+errors[\\/\\\\]+validateCaptcha\\?amzn\\=fds8dEbIjxYp4OrFvaeMgw\\%3D\\%3D\\&amzn\\-r\\=\\%2F\\&field\\-keywords\\=BNANGN$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ee61e9ef9917f249a6c34d78a651747d3db090e6b08fbb8557bfa0409f4f2bc2","regex":"."},{"hash":"4f74276fd9befd4c83b55057ee28c68bc0007e1029358dea1aa513ef5ca54387","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"747706b263c23b0b3e75787668201f662235ab7d317c6f982d5763b11cd6197b","regex":"."},{"hash":"e78daa88f71dac30b5515d90ed7538cd8f149409bbdb42c7c1a335027621abdd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6154801548$"},{"hash":"cc095526e88eaa3257fa221809e291d44866b62002e145def3e6bff1b5c7d0cd","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"0c0e9bd46d13fe3f118dc89b7472b24d387be516814314e4f9cd3e9d6ecd9f18","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"8c85c000d8a1ea9c7e6ca691ae5f5d9cce1b0456b48b176531a9693085d8db58","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"0dca1d6e151ad6f44b47835d25bb2d3bdd45a7259407ff58e33688771dc09102","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"e499061350caf76be45a366e5a927976e4459e177835e92bacdf229ebf67e889","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"3777944510f8f733c22fd5b9e611311985996d2d55428e7133dd5859a44c0a4c","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"0a1ef0f8ebd2135862813c216bac469dfdfebb7638fae9811082404028a7f3aa","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"937d65b8946f785f2fa4965482bb41c0b6e32958f7bef8d39c2745b647b5ff47","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"3334d27083d9f53271e34dcd1dc06786ad8c9733b64e48e07cc2ec6bf49852aa","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"4d523a77e0bda30527afa90083575f76bfc9111b684052064f31223ff4d491f7","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.li(?:\\:(?:80|443))?"},{"hash":"eff27cd6e0a7213f87964bf56bfd625446ff7e3ecc64606ac0052dc69de56db3","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"ac00c1dc9af7356d62f3493abd881400d64e0c08c86027d2b9eefe76179d84a8","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"77105351db2711d2319e534aa72e356d7208aa38db84111c71934c92f95b3f41","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"7c9824e6a9be55bc1b3de7e8c012b84f113bc64466523cf19ba196daa8718347","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"bc397c65d5535f6f2d14af9d6f6ae05d61ef64b5690887c2c44bec223736d75a","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"e525b92af06c9235f785200242548b3acc769362463c38bd52048a2b9d94f3f9","regex":"(?i)^https?\\:\\/\\/fdvxczdfvsdxdc\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f5faf456dc34c3f7cba287e4e4975140bc48d192409ae35c60356225e544e1c3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cent(?:[\\/\\\\]+|\\?|$)"},{"hash":"20bfcec5377fa21e66d754746f03d729be943a1d600441369687054f51e0a6d7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$"},{"hash":"f5faf456dc34c3f7cba287e4e4975140bc48d192409ae35c60356225e544e1c3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pagar\\-tributos(?:[\\/\\\\]+|\\?|$)"},{"hash":"457a6f573f3bfae05e2599278c7407b834d02463fbbcb25f4875bca728fb17f2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$"},{"hash":"0369823aa9b994de2732f5aaf6723197ee1547bbafe78ef20d2d767dfea49a99","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fkudsw[\\/\\\\]+uoclk[\\/\\\\]+YXJldGhhNDg0QGhlci53YXMuYW5kLmRl(?:\\?|$)"},{"hash":"78ad7d5f5d773ace24c5801d28e59d03e8b39bd43144f0480d676cca6c3d99a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+piecxr[\\/\\\\]+patnp[\\/\\\\]+ZGUucDYuZjAubjEwMC56MjVAb29yLmRl(?:\\?|$)"},{"hash":"8ce111e23ee5a8619403255a2b7bbba05db238b79e0c3373cfe8ed760b7b5e24","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wenyjj[\\/\\\\]+durod[\\/\\\\]+Y2Fzc2llQGl4LmRlbml6LmNvbQ\\=\\=(?:\\?|$)"},{"hash":"587f78ec5a2c61f8ed6909393f589aee0a3d2e0176b5d75b51f35e0e29d9de0f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+keqmfi[\\/\\\\]+qjqqy[\\/\\\\]+a2QxOTc2QHRvcG1haWwuZGU\\=(?:\\?|$)"},{"hash":"df608b3bfe7148745d8a6f4c472f21ed475d01c8115a5bb3bbefbbc486ae72d8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qmiuuh[\\/\\\\]+cbvmm[\\/\\\\]+Z2luZ2VycUBzbHV0LmRl(?:\\?|$)"},{"hash":"4972e880aa0afaf139892d66d6f9f122234e3ad838893a286f3b6b24e32fa8f1","regex":"(?i)^https?\\:\\/\\/qn85\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ccdb07b5a99b9d9f49d8a6e5e948d6b42905ea8ef2a0bf810b7237f130deb1da","regex":"."},{"hash":"9647fc24cafb5d20853d901e7b571a10a538252b11f1d1b836d5858f7dd51247","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4c28ddad728fbd55be13c482ff90a6012ce0a66567a301402beb59db6fd1d32a","regex":"."},{"hash":"0a22070d27f833bdc4ac27692b201306f63a22232f8e658c601c0fe39f821b83","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP8541[\\/\\\\]+GLOBE[\\/\\\\]+4369[\\/\\\\]*\\?dom\\=track\\.filaflots\\.com\\&m1\\=Wendy\\&m2\\=Woods\\&m3\\=447985581189\\&m4\\=London\\&m5\\=Fy1\\%203HX\\&vr\\=logo\\&cep\\=RFzQ28\\-LgErTKPNs3E5RzILIS96yDJTmX4hKvSv9jDDlUQad2hliAqap0l\\-F5BoDxpo3Dzi_k33abS9H3fLx2yxnLtX2sA8G3bmMOLit9rh1DklK3JZJJumWVbkoiR7ikwR2GMzYJLmQPF_xqS7qk8EJKerODCPH18E5EP_ZFv0_yUO\\-2Bpp\\-yrMfxijRRbdMROXcfcHcnPFnua1cw4RbrjAj8XKpxSao_wNJWHTndyGQrSUu5D1en6D_yt\\-Kan2FGORVcuHWO81Kq0ZwxJid3\\-ypJxBcAn1wl6XAZiufnjOnkq6s1jLtsl7mEga8Qiskl9DoeozhwTdI8\\-XBOXGpFywvpOdVerUGHlxYdEdy5SSmzWW97JMqWCqkcH0SN0Y6zEIgYYasBGC9nklz3rsMWmCi8U3_6ZFmAGuheYjpEbaDjUpFv2KT3wpGUiJGO46eYCQg7R27yKJzRPtCdHzg8wwZEBw6494IHv2chgVe249uu1ucCwrqLXjMoeWtBqaH8erUIzRWmbaugHwCZNQF0sbvElM\\-d8PW8EhLVKyoXtRVTQPZz5NoqTiuDfQfm_yqjXQwj47yDsQwGPldcBvj8jd1QFauyQZyuvDZF3J4Hg\\&lptoken\\=179a367831c810533344\\&click_id\\=fehptyo\\&var2\\=Fy1(?:\\ |\\%20|\\+)+3HX\\&var3\\=U675FFA39240BA\\&var4\\=29(?:\\ |\\%20|\\+)+Fisher(?:\\ |\\%20|\\+)+Street(?:\\ |\\%20|\\+)+\\&var5\\=2047\\&var6\\=Blackpool\\&var7\\=Woods\\&var8\\=Wendy(?:\\ |\\%20|\\+)+\\&var9\\=447985581189\\&var10\\=wendysmat1978\\%40gmail\\.com$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"55b68c652e91338f837471dabba8f963aae9ffe6be295c620b92b740fb9327f3","regex":"(?i)^https?\\:\\/\\/sr8487\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"0a22070d27f833bdc4ac27692b201306f63a22232f8e658c601c0fe39f821b83","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP8541[\\/\\\\]+GLOBE[\\/\\\\]+1458[\\/\\\\]*\\?dom\\=track\\.fridenhotza\\.com\\&m1\\=Oiiii\\&m2\\=Uoei\\&m3\\=972506291366\\&m4\\=Tel\\%20Aviv\\&m5\\=80200\\&vr\\=logo\\&cep\\=iRZ7ztqKC7cJjJlr69PBd_OWzgqzftAgWbzaANI6WNW3QW0bAOHLgm0zzOmPVddG5Q9xRPG\\-cLFyTYE93DjkwobEUbUMvFs_4Rde1AvDYIPSYSv4zyDubUTmUTJ9HFrO_Ud1MMXlH5Ahqvvq20LIoGVnZyQ6EvizkTxAdP7hxjEJilzh5zd\\-Qyh9SGiyCalFUMbzJ8na2xA2\\-BBLTXoSxxsipJjRf4BsxWeFBAlRieQZ0pF7I6NQEiq29lVcc7h6ADT2Iu0oEESitfFb7130lBF4T9g7lcDzpQPbwABxW86MAdpr2i1WSuVXorZjPgCWC4sXaEL4ISLwNAeFXYXYlXPP_hnMe\\-Fk8_H\\-UmTjmHAlSYx5ZLedY8wrK\\-pilI8P2hJiWJ_8n5eTUw\\-Ynr011g88SE5ebUS0\\-OpCAwlZmlEhcvTYo7k5NlBHDpeGqz_RQzqACchq4FM9zFC91LN_PeMoR\\-KHaQKh7G7yQolxa955zfbZT_DpoCTvhx2c39\\-7SwApPnsmog6XzQebUgcUgzr_QmzrPUlWLWvvSA1c1aWUfHKdm61tkLVH0Dqvv5y2Dlm0uAoP3KTsNFR8FOHXxZD5YrcRR8T9bPXD2sMocSyxxpBBZJhXCnou\\-ERAsE8Oece2\\-29hYSBFLt3gu\\-rUFw\\&lptoken\\=176e360d3119057a5973\\&click_id\\=f031ebn\\&var2\\=80200\\&var3\\=I677CE8C398C9C\\&var4\\=(?:\\ |\\%20|\\+)+Ono(?:\\ |\\%20|\\+)+20(?:\\ |\\%20|\\+)+Ioi(?:\\ |\\%20|\\+)+17\\&var5\\=1368\\&var6\\=Oei\\&var7\\=Uoei\\&var8\\=Oiiii\\&var9\\=972506291366\\&var10\\=Yehuda27384\\%40gmail\\.com$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0a22070d27f833bdc4ac27692b201306f63a22232f8e658c601c0fe39f821b83","regex":"."},{"hash":"a26e923b0e5b1df42634f29606167083dffa629252f29f69dbc72e92d1dceaa1","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f1e5b388393012d4b36858b9eee1b5a25aecfeb5852f99f329f24c2c183cf26a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en\\-us[\\/\\\\]+index\\.php\\?desktop\\=\\=\\&ip\\=156\\.146\\.41\\.81\\&key\\=dgyDFqyoTiaEmPxBXFVcZqckFILxQojeoeBbyMnhgkmpQgZVLtwpCgNBKlyW$"},{"hash":"8fc233df131d7be1adc2580d0ffb729440518f64a95b87fe39614e076ec09eaa","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"85222af112d421616ff78668f49c918ccb471572cb477e13baf75758b81725b9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+myGovLogin\\.php"},{"hash":"f1e5b388393012d4b36858b9eee1b5a25aecfeb5852f99f329f24c2c183cf26a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+detect\\.php(?:\\?|$)"},{"hash":"85222af112d421616ff78668f49c918ccb471572cb477e13baf75758b81725b9","regex":"."},{"hash":"f1e5b388393012d4b36858b9eee1b5a25aecfeb5852f99f329f24c2c183cf26a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"43d7d7c8f3b898b97d1c0aa4ec77fef39b43d5750458963c96bb3c6c165eef81","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cn(?:[\\/\\\\]+|\\?|$)"},{"hash":"43d7d7c8f3b898b97d1c0aa4ec77fef39b43d5750458963c96bb3c6c165eef81","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f7ae7039b8c6fa553aa8d9989200942a4bbd97522703bf32d93e4dd420aeca1a","regex":"(?i)^https?\\:\\/\\/shravya0921\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"55a38e78dd945ecda9e2e028dc3ee0b8a2f8048777b7c9821892f2cdc371c06b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+contact[\\/\\\\]+403830513593788(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"768150d8860a37837d198bc0912366759ef8468611ce8e96fa17f2a22f59503e","regex":"."},{"hash":"fbe620de0cdf9235aa8d130381f3c3b8ce8c8616e48b7c591d1c73d4918da436","regex":"(?i)^https?\\:\\/\\/zzung712\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"edaaf684770e453d886cd31e712e2b6e41cab8bc11278f0a1f6e438d8d7d667c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4eb0b56a268c4a818bcb5c88a450fdc69c080e1f35411a9c86a16b0ea99b8d25","regex":"(?i)^https?\\:\\/\\/lightslategray\\-mandrill\\-614937\\.hostingersite\\.com(?:\\:(?:80|443))?"},{"hash":"bcd1a29479bd133557629e9b15dca92312b7b5d7f985c051063341550d6d75e6","regex":"(?i)^https?\\:\\/\\/tusprocesosbdvapp\\.z13\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?"},{"hash":"b9d05beda4a544bf5b8b4b8e27fc695a27d46514d651fa023c38c3f2dfe865bf","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b7ab561a848d6630d94166556da89aa2c49f0f18caa448545f590fddd3bf710d","regex":"."},{"hash":"66276a9b82eb96c9300eb7ba798870e5ac5e5468f190e550f06d25a302a8cea8","regex":"."},{"hash":"e97331b9b0f4c3ec48aa643d9e871184482bad8b6f816721ecff67f10d8ffd1b","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"783b782a6c055d1da452df5f46befc8bf16063fb9b58bf7b0380e14044ced68b","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"702aea1bb5a4eeea4ced65e4d0393c4cfb849cb2b65e5649ac06b2a0352a4e76","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"bacf360b6694b9546b19b1bdcc3fa391aeb75a3871cccd7f92a0fe14a5370858","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"b49de446992a54698a23bc453e228c7604265b96252765270d69824bc5105488","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"d0e089ce1466a17c60f2861b2a043498760607fb63ff922c523e8b0d28ea536b","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"bc7901bffee191b9fb60e26ad9908c4d32a173905789a509fe91c3fb2f7e92c8","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"7e4b8d75e3cd5f963b2cd8e5a80aea342c5703fa44016eb6004fbd73d231462c","regex":"(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d04848699cfa24ba12efe9848c0338fc4572b2a18b8d39e1f43cdd59605215bf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index6472899\\.htm\\?email\\=k\\.abanami\\@mobily\\.com\\.sa$"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8077deb4f1d9c13e4733ec38da448398a7a4e98e82eee98d93ab8091185aca69","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"ed4af9fa760bb29ba51da59de32db77422b38b68dd93e1f38489a61e78d324af","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"cf7457eec357a0aee275ecc50625d663d22709ea0037bcd63893fd1b5bd639ab","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"9fd8932c921f442d7e4f8a2f7a8cacdc5d83d833ae321d935d76a3391d531349","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"cf667de113916eaec2112de9439546dd9657a1d6558a0243806fbcdccbd4e88a","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"c3a48214e668ba356e8df15266557d8e9ada1b30cad344d83bce6758ef693165","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"dfc1681023e95ea2d29b72f49c245fedc2ae7e2defea8fd53686a50b4a5557a6","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"a3ca8dd56994ac620c20165c48f295190830d4ed9378038610bd358c379b0bbb","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"cdb0497e8d3dceb2726ba4685299edd9045a2520a33d20571caf2d0f7d7de064","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"f96448d2eddbaddc8cc2324ffa021b672b8a7cacb78b4144c922505c6739d5c9","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"8e921ceb204160bbe730e8180a18e01145e88dd177cfe0b8d67aa4f7d3bd21ea","regex":"(?i)^https?\\:\\/\\/hotcliponlinetoday\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"049cd483268ed8a9cfd5c2f699e6f6e301b72a3f051fd4087acc2a313436b69d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ii1FDo03OA7pZtczvVjEKidMl9kRvoHRdvtQPZnOTJhANZ6So9lZoMiHVodie9PPnt8CIvl3gfjueuuzHOOnYRWKmqClub\\-KcgIfTrhOCS_sWo9BhPl6Lslb8vpmkg\\?kws\\=tranny\\%2Cvideos\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fwww\\.trannyvideosx\\.com\\%2Fuser\\%2FAdellgay\\%2Fvideos\\%3F\\.\\.\\.\\%20312\\%20\\.\\.\\.2C\\%22\\%5B\\%5D\\%22\\%5D\\&si\\=1\\&focus\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fwww\\.trannyvideosx\\.com\\%2Fuser\\%2Fadellgay\\%2Fvideos\\%3F\\.\\.\\.(?:\\ |\\%20|\\+)+312(?:\\ |\\%20|\\+)+\\.\\.\\.2c\\%22\\%5B\\%5D\\%22\\%5D\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$"},{"hash":"d0f39a7a8b745e21280ef42d3812dee79a1f87fe939b4d3e660b5de2c207610a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codeeng\\.php(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d04848699cfa24ba12efe9848c0338fc4572b2a18b8d39e1f43cdd59605215bf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index6472899\\.htm(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ac8a4512ba4d3cffcae81ded2d26e605c41609961697ee87e105c8fb59b887d2","regex":"."},{"hash":"d0f39a7a8b745e21280ef42d3812dee79a1f87fe939b4d3e660b5de2c207610a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codesup\\.php(?:\\?|$)"},{"hash":"d0f39a7a8b745e21280ef42d3812dee79a1f87fe939b4d3e660b5de2c207610a","regex":"(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?procesoderecuperacion\\.click(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code[\\w\\-\\.=%]+"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8c1b6c00a10ac61ed2d06861429871d5b4d028a48fe60e995f20c68cf4c1a589","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+q9oh9iV9ds7sU1rsew(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"72b06db3c790305766aef3ea372787c3b5b9d06c2a5f748ef9bc890ba42e10dd","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4c7f573d6b5ac0470470789f713661ba4d351514c10b5abce277a4b901984d92","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f0d2d5eb8246b2b7eb63845b72585f2e3e5886823ed2737a98ccba1dbabfe69a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3d68179b8103c75ac37dc309ec43458e53d91ed2667038e813887d106a6e3793","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"82a8eb5e38ebb5db2fff24d3b89f7bf6c83d3fc88178eb2ade5ecfd0ef6e9711","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"d285d6dc3bfdef9d284eeacb280eb1848787cd05f9609fc5dc20a5a1425f8eda","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"349a2c303bd4625f778d1572edb8cdc691ff51bef93090695e6c53f7b71e7891","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"1a8febd00d4c1e41092e815ff821376013d7c8181e6c9c1f5bbf3e1b2c4bf3d7","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"002718c83f7c924929bb0554026434368cc8414e957fb5b9924ed67cd386fca1","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"4ec9cae487525172a26e3cd085efd615757683930fa09f84d9437342e8c23fb5","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"02bb430e6924120d6fcc65a6be77212e311c57dd953153ff7bf90998d716fcf1","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo1\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"511b6b2ea97d7b0e48f5cd4dd6a3f58cac7dc7b86925804b734e9d1b4a9ddb37","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"95b4c8c4d0c690a6d83ce7dde64226e98f808f3b890cd8855846bff3554198a0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"13a782aed91910138ab7ed7dd685268dc58b831b49b1fd1490c84d1eae8d17d4","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7e6c6c5ef525b4b9fab67a76cc59c9ac117030be0e751528995372e7c5eb4b2e","regex":"(?i)^https?\\:\\/\\/honeydew\\-crab\\-342010\\.hostingersite\\.com(?:\\:(?:80|443))?"},{"hash":"7bbead6aa735a834e3a1598767dd27db534fae7006b23f7bab2ec9e2bddf9f01","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fbclid\\=IwY2xjawHrBNlleHRuA2FlbQIxMAABHTjmudRVLTevAhAdiOXwMj7y1DvBpNF9MbRfDZKxdWxWNMok7mbkncb4rQ_aem_jmlJnzaDkP6GQoGYUUBPuA$"},{"hash":"c6652ec9fb4433b827a10d75d60909fb217f22b78394d0f40ca36a3a52d7c75a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e9b920bb1a206f0d5d60c51cd1c1dbeef10ce0e6a3ecc6c2d88a478532988f9c","regex":"."},{"hash":"397f1bf65244cc5d32f89aa259b8b05881aae2e9b809b5664bfda67d9ad60200","regex":"."},{"hash":"f00634904933cf1f1df723275fa2f32c2acc542480e813d0366352b99e675866","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cmblns[\\/\\\\]+cm[\\/\\\\]+login"},{"hash":"f00634904933cf1f1df723275fa2f32c2acc542480e813d0366352b99e675866","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cmblns[\\/\\\\]+cm(?:[\\/\\\\]+|\\?|$)"},{"hash":"d7b0d048d4c6c5bc88ca4f655032090e5a027ee78890463357f7e5b840f676c3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7b1b104b2e9f890df153dfd4c8b1ffd70c6c25c54b08343269a8a8facfb74acf","regex":"."},{"hash":"fd167bd6bb7672d7138e6030f9b0c7b169c467be24413c5f003dde1f534899b9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"21a452325a7dcfa1dc18878432eb1e7504a0d1835509a5625020da6479ba9f05","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dc4cc(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0f554b7973540c46bacb2e073d7464024f1de961d3c189034479a0a89b1c5626","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+normal[\\/\\\\]*\\?cid\\=904693\\¤cy\\=CNY\\&id\\=883734028$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9f6ff6c9db271e17369f703b5563c71d8dc29a54ad2220a2b670b7657509516d","regex":"."},{"hash":"887ac621f6214b5aab70b39064fd3badeaf03ff781a77db1b509d3b48d18efdb","regex":"."},{"hash":"79b9fc21bdf3c2485a381686a55772b8e6b1a42f48d6f28c0371fab1687c95dd","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0f554b7973540c46bacb2e073d7464024f1de961d3c189034479a0a89b1c5626","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+normal(?:[\\/\\\\]+|\\?|$)"},{"hash":"2398bf5e6d5bb93550252f4eda4fd39e53feec9ca3f8642307f512d4f520a752","regex":"."},{"hash":"0f554b7973540c46bacb2e073d7464024f1de961d3c189034479a0a89b1c5626","regex":"(?i)^https?\\:\\/\\/homnaymuaphubay333\\.sumimk\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"3930bd9d842625805760163ebc28486587575d7310b567e18b9b744df63138f1","regex":"."},{"hash":"b2280612f2832baedcb3085877b50489f2e98ca9cf3d373c29daf0198d466ea6","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e554d4163a51179cb996fd3388afc1517dde63b16ca9034725f3554d5755a1fa","regex":"."},{"hash":"a79852a701fe50c313469298c04971b496d372fa2853514cb9311bb4960c4171","regex":"."},{"hash":"5066f495e287e4ee222af786d0b8bf7bafde2a7998422f5889c074e82b77a358","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5784ebfabf25d430d3b1da1a26d91d7cd6028bde7d380de1fbe815472ff3e8df","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"119adca50b6d5044cf09d8d82406bc1a79b20e9a4d83ca2a5622d83457b7ff4f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+get"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8d3169859e9666f9d46e4eeecefb389c6fd2a4dda45f7483a2f7f0fabbd6bafc","regex":"(?i)^https?\\:\\/\\/zhyg808\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"abc8ba1b4b551790e93c1922d618ef964f41a5c72736dcfebf6ae472e83e718b","regex":"."},{"hash":"0ab0039dba53354eb72e633c89870ff470e84c94f3c2d8021d86e9d479841b06","regex":"."},{"hash":"5aa3b6e3314eb95b458f62a700e3250451ed83b26ca469a3df2463de81dcb005","regex":"."},{"hash":"9825a912e2031d5f22d621022a47507c083edb8b1b7ddf1b65fb6773fff1893b","regex":"."},{"hash":"fe0eee77ce20f73c5013401495e7de8c058d234ff613b5dffce5e4026d4893bd","regex":"."},{"hash":"b579285264315e9dfd55c0e874c8c71e52ef079b9fc789d151535cc17d1633dc","regex":"."},{"hash":"a34012aaef622180f46aa629d3ae4b3128c65296c832c4b8aad00ae29302350e","regex":"."},{"hash":"1224208a8cb0326c489695742826e00b1703d2c7cb8fd8087c2ed4850d651d87","regex":"."},{"hash":"d1eb1dbe446faa6c72cede8ed42033f8267e9f64fc2f9dba7673f5e46dd4e890","regex":"."},{"hash":"d1bd7f50aba79df73bc4bf6c32b21b48d3b79318f6a568b9a3c28bd1fac137d0","regex":"."},{"hash":"d8b4ed6f042a607f32d7fed91b9f0652cbb9103316c9ab928b4b94f665559d87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mark\\.html(?:\\?|$)"},{"hash":"d1a70de6bd2b6de0ef14f34ca5a1432c27d417584ed7d316110f57bfcda3c820","regex":"."},{"hash":"7c2c9b16741a1fa105986810c68fdfdd9ec6af183ad327c5702ddc709502d633","regex":"."},{"hash":"fa57520c4b8bb3b112a683e56a38e7a0ad5f29c336fbb1aa57a6cdf2f46fac11","regex":"."},{"hash":"5ef5d8ddc70077bd96d7225b8fef0b3eeb10a1b68efe8bacb6caa755f05b3ee8","regex":"."},{"hash":"bdd547551e46024d3191d8f13f6cb4aaea001d826db9f5fcf5238e8b186b994c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e8708292c7f69cc66727638c72d550021285c80e56ac3d6f44c6de618b2581b1","regex":"."},{"hash":"3c03bfd963539c9fc90045cb8354359a7d345f3c9a09c85b47beaef6eb3bd05f","regex":"."},{"hash":"1f9723dee20cbc8f41f8f720f57cc3c2767e488355e99b2d90752fe81fdfc302","regex":"."},{"hash":"b79b3d9ee98ebdec9ce28d47dddd3ad47a550bc5b063d4587300d127a5f440bf","regex":"."},{"hash":"021eeb8014163f742a112d1a44802dda19babbc88d23dbc364505a1fbd9244e3","regex":"."},{"hash":"e1c7eab003f7c6e17321976c73adb823c747a604d62d3e2b73a1009e1bfafcfd","regex":"."},{"hash":"8a03bb0833ffd724f73a30bfa00fe64de8ae93c20ad7ea524f0f485a5302bcf7","regex":"."},{"hash":"0dd740c2f5d1b25975e99825ffbcc61a61a6aa42ee0ace3f9f5183aa145a1ff3","regex":"."},{"hash":"f4eec44536ab6a9c2231b82060e309c7bf008c0188223bb8a24d46d3304f01c7","regex":"(?i)^https?\\:\\/\\/rimz086\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"d49d69e8a7459a92ec73142b3c337f0c94b8dd61827cd5ebce60edcac42cee05","regex":"(?i)^https?\\:\\/\\/pub\\-82179997020b4096b5cddca11755008c\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ebdf1f3251865bac865efa971105a0a9c90ab9bd7e0711f5f379dc1cafd82682","regex":"."},{"hash":"8f6c694a082f95319ab368dfb7a0addc52272f7600473440d608f6ab3edd8ec3","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"186e2803b96d99a36c15ad8215f24815d4333f564af5480086d8e0b953a07577","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?"},{"hash":"bd1445d2c362a89877049bc04c95fb68212714c37dc19fec4c3134710d961ec3","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.dk(?:\\:(?:80|443))?"},{"hash":"2637316ce4c561ef0b9d29c7bf1a9fc4d73895bb44c9b1e03bb161e0a0cec8d5","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"f4a8b98c875ef4f32336c363908781a2688f8a02b9f792170a8f25437a0c8c33","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"25c5861a8927de39d981d26f09e3bb13eeecc3050babeac57ba78ffba72f3467","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"550a08b3097ae8ef54fbf33a343cb68b9fa9396029451053443cfce740b8b948","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"22971e273d47e2ac8652c7aef3c751db4f5b191b2604700d251c74242f921064","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"383343fe288f3e5d39d9a1505cdd1a845aee31d151af71dae32f9456051c3cdb","regex":"(?i)^https?\\:\\/\\/hotvideostodayonline\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"91966422da23b394eb11bbd686785fd41969490e33493571c1cc617ed62afb24","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"a465310e931682c4dbde60428483bd59bc357e9e03ec08789e9d539cf6c40cd2","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"299941c14a4fe0b6156833a4ff71f456df52517edfb0567580d9bebf9899e7da","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"db2d1cc8fa9443fb5d805515d4427201fdfbbd6b442ecc74373a48f8c52e75be","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"07ab397d8112bf41926007aa528729f4a8346da224d280bafeef8899e5d28651","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"8f15cb783cd0ab0c4e22a1a3f85c9c5f32c71df684468bb631b00753ebc62274","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"476f37b8d3392b076e9781a36ad435d933447f6c779bffa96f896d2e7aa76d42","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"dd90fefabc334ab4eab1e65e298e4480a043f6545c1b4811895d7586f9b7a1cf","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?"},{"hash":"1be0508307a72f2806d2ed00e8f3ebfba9729cbe1e345e5627435b462c9a25bc","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"7893a8b16da7423e05950bd70a6bcae9b82ccce4ea9844d7fec782055ee05ac0","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"030d8ca5e37492b9c81f0e0711f28c529efd00de5e75fc87543985b8c1f4cc2d","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"de9e99d407ec6e5e1daef264682978b5e8017c8669864361caabae52414070a6","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"162388f34137ab6d199c4dc8edb3b4e67d103eab15d2907b9606c849c4409d67","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"9ded757ca645d329eb17f965a748afabdcf722186687655a1e8b56c04d646d4d","regex":"(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"5268ff604c7c711ca6f42d9d3e38f5a2fbbb0c37ede8fbe6a19382ce40102da3","regex":"(?i)^https?\\:\\/\\/att\\-1094page\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"007ae94cf1d83d234c4d03fdf45f7fad9fd874c1af0ec0f1e5bf5f6689a11d82","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cae290cf5986178d3b33db474ca42287b4a672aea3f07236e623e5ddc1930f2e","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"130592df9327fcf56ab5afa246141699cf262476657ecf85b49d463c51d1c6d4","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"0fee3b9aa74ac42c53a7df938568cd351973ac182a2805a805bec75054b6d033","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"cfe82e797ccb5f11f57cb701efaafc4193f44eb10155a30ba298bb48f09e2652","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.li(?:\\:(?:80|443))?"},{"hash":"1c0e1d28d44e747286a992ae6d21835092a174548b9fc522ad15a57b0ca4de10","regex":"(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+trs(?:[\\/\\\\]+|\\?|$)"},{"hash":"acff4741a1201a10a4a8a8aad38fdd1334b958726e2fc24713cd0867aafb8e5b","regex":"."},{"hash":"7db4db7732870446cd0d992241a7669a0bce38271ee5f9375723fafc24d10cce","regex":"."},{"hash":"95671ed58425f91aa055fccfd2addd302f0d71474a7d11d8173c66a861496438","regex":"."},{"hash":"f63b961230e26e0a4b2edb6eece4d55384a7f892fab86d59b6b8b7d9e573537a","regex":"."},{"hash":"158dd072ee1690887d071aef545998adad98c14949012d72c91c58a6d10b4a3b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nl3[\\/\\\\]+bV\\-M7NLO9ia8MYbORcrUTQ\\?hl\\=en$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"72ea388338bda8efcca11540686f6863ddc8374eb145e2274fd6324a7d99e08c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"25033bfd3ba0b879dac4646961706efc1f1d090bb570c90b4453f6c9fb92511a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d8b4ed6f042a607f32d7fed91b9f0652cbb9103316c9ab928b4b94f665559d87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)"},{"hash":"2827e60d0490b210289aa5995b890f44526379a276f6c2bf5ddb42338700214e","regex":"."},{"hash":"10d60f381a22a294552100839c705c980b0fd9c447d5aa42b5b4f3c69c3dbc60","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+visit\\?url\\=https\\:[\\/\\\\]+primadjusterindo\\.com$"},{"hash":"5199cbf60620d940e0cc13dbc4f6bdf3ccda30d9d134b0b0a41509dfd984a241","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+visit\\?url\\=https\\:[\\/\\\\]+primadjusterindo\\.com$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a33bbaba9c5bccdb658633879fde97c580b7b50d2de89d7fb7f16f61076297db","regex":"."},{"hash":"b2c1fb20dd6b54d30de299795e3a76b93ab50a937254e0e1b7a83be663774392","regex":"(?i)^https?\\:\\/\\/nhlasopa691\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"b1d6577b0914e006db39a25e2cd2d8ebe459341ec83c872d51c102c77f913449","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+smbccard(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"914dd276a34a661710a56e4f0a414d85a2b44a20864a6378f2d708b163039963","regex":"."},{"hash":"60101701373a1126dd6ba2d846a79adf98bd1cc56f8814fb0d2e88b4f9286211","regex":"."},{"hash":"548f0c43a8753163ae86ac76e2982ffff78e3c500a623cc840d086b0a03b0360","regex":"."},{"hash":"036712629b8b4a69e790ac6afb0c007a1b113b4294c9f69e42d5e21ab88b687b","regex":"(?i)^https?\\:\\/\\/bafybeiatjz2nkjsmwzwborqen5tqrk2nk2crsi4affsmmrllikvj3wvzgm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"455f3c497f78b034df475e2f3607d6ae858d4e8e38214a206d2b357bec6fceec","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a614818f022a5a8e860abaf349ba63b6c5f104a2c773597ba5000e5bba0726bb","regex":"."},{"hash":"6aa325e120c926b001b1fb469ec6545b79c1236b38ab9615b788e0900e200c00","regex":"."},{"hash":"4a809779b8f51ce3f1ae3dc91dcd224b2675196ffc89db32305727d2d3e92f27","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"378b819e5aee57c8a02122f813e1582d1e5b675d6ab39ba34e27668f33c0ea0c","regex":"."},{"hash":"b4468bb6c729ba206f2d3f8fc9e9b57f44eeb2196698cd9a0e483d722ae1b96b","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0ab0b35fc934cb039109b7c5bfe2f3cf06a80b215835bd606951f3f5821057e3","regex":"."},{"hash":"3152024f4941711b5a8e4f541aadc17db64725bafbdf3ca44ccec8a931c474e3","regex":"."},{"hash":"392883c0ac1f081bbb4cb5b2bbd4103ecf14a069bf7c517105cdf786b7470deb","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3aaf7fc455fbf47420dc702c49caf39d4534d60f44496c135ee501dc5e89a1dd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)"},{"hash":"ca4b6c78bb885fd20497197630468a04b4bfb5ace459d0e45c4b105939340382","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6e0cf213ac6ac94a85bdcf5f28a2b1f804dfb2e8306735df0e8f54c0b29f2b9d","regex":"."},{"hash":"3c64eb73340786da17c3b9e1abc20f4ad854e6476bd05a5e643178b927893a92","regex":"."},{"hash":"b7abe7ea9f815361dd8ffd4c82d41217a6a18989d9e01b977d9527e0a09c9708","regex":"(?i)^https?\\:\\/\\/ampj\\.xyz(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"83074690315f41bef237cd00afe9c796ad717cf838b07be3fd324363d2ef6025","regex":"."},{"hash":"ca5f65ba32b3798f6ceb703c44f01108867cf22c3eddcfe96072bd2e027b968b","regex":"."},{"hash":"80d89785553f7e04fe1625400607735f3fe72d5e5300ffc62f35a315f3edc78d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a4fa1b2dc0ee382ad191db677da917e9038ec3fdb4ce388bc7a4d5541f488238","regex":"."},{"hash":"6deacb6192544bfaf7048a95a4ad37f6a11cde12be9fdb4bc10cfdce0725a9ce","regex":"."},{"hash":"58b164b014c845abd963d0bb2d6c9e7b3672881a21feb33d737273995b3a4f4e","regex":"."},{"hash":"e08de5b82fa59339dd00a90a29c8be796059d40ecfdd63fcb1ede7ce189ff0ef","regex":"."},{"hash":"f04b648df845660f84a20d875f7a78372c72d8b2af3d605026b595bee842ff98","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydvgakv\\=bhawddn\\@hsss\\=n\\@v(?:\\?|$)"},{"hash":"8484c082e17f3e8e47b2c8ef1a2d5a4b484917ec2af563ab79449052620c4637","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+assuremaladie[\\/\\\\]+conf[\\/\\\\]+macartevital(?:[\\/\\\\]+|\\?|$)"},{"hash":"8484c082e17f3e8e47b2c8ef1a2d5a4b484917ec2af563ab79449052620c4637","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+assuremaladie(?:[\\/\\\\]+|\\?|$)"},{"hash":"0ab00022c7fa8c334daea17c2cbb4e25c42453e8998102b27f47d18b13e42c5c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b0ca29c5401f3ce5bc00c0ea3e44b0b85a54fca06909385c83855cf60cfcfd5a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydvgakv\\%3Dbhawddn\\%40hsss\\%3Dn\\%40v(?:\\?|$)"},{"hash":"2137a38196b58a1ac71450a1d5b5e9d3e3da830d82ea632c6005d6a7d45913db","regex":"."},{"hash":"cefc7d2a734e4de61bf416786d6f0a3f3ffa9670f43149226ac9f755210c0aed","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"777cb440978ad87bd1c4701cd56edff3f514e56a2c9b13372367f756af5b7037","regex":"."},{"hash":"51731caecfc32bad09b165e823beb25e521c5477ed964f06641f207b4d19b592","regex":"."},{"hash":"2e8088e3649ddfd8b037e1af582e8a1f1050d27b6f978c7906a88f0503519d8c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"58524f9dc5a34e38deb1d6f5c3b962e64227b3013697b3df6026a4fc96764870","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login"},{"hash":"58524f9dc5a34e38deb1d6f5c3b962e64227b3013697b3df6026a4fc96764870","regex":"."},{"hash":"2f4fcd8c646598d192f4ed78980c77ad1aacc93d6370f774a355f07df14c4913","regex":"."},{"hash":"ae5fd75fb2717e073425063abfaf751621428d249d8ef115b0b7038152c4e420","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"38b03ab23801bef614cdb6ff9441bf3faf2d8387ef7ce7837f13006edbd80446","regex":"."},{"hash":"bb59f776f2c0268425d89e1925f514d8acca0bdd3d90d41bbe8bb12fe8aee23a","regex":"."},{"hash":"403ac84870f6b79487b4b4c0bf4343975e9fc8b0cfd03256250be44c2a45b8ec","regex":"."},{"hash":"0a23ab56b0de28a9d50e3856a0b2613bb5b06f4992e012331a1dea3a3d445c78","regex":"."},{"hash":"623d9eb43d91908f6db8fe4a3d835da18d25c06b06fa3bd4cc47a283b1ec0743","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bc1dc031dc84a65df34b31ced978c660888b0aa57a54f25c103ab2b0eb95f2ba","regex":"(?i)^https?\\:\\/\\/enlasopa907\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"c3e602b7553123ca67065d5b8a62e50ef4312e62489957abf903ea9fc2af064c","regex":"."},{"hash":"520ec8d9a5b309a261d3b321886ff9e90a38d2f26e8039ba79c18168b95efc89","regex":"."},{"hash":"5bed2a26f4fafc53feb00e524e010bfa554e77cc50ca0c5d21204dc2945dab40","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c93d3112f4925fc1891bde57a59fc3ccba7b9680d26fc842a7aa83c8973cc9e0","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"933e6aa07d4562e83e7285c7a0642f2f31c55b8b373a665cfadadc5ffe1f1513","regex":"."},{"hash":"52685bd238b8578c3307810d2fab2b1374604e6375e9ed383905e870e158642e","regex":"."},{"hash":"657504d8035b93e2a45d77c3737c8af4ae024d235a679a578602ca5f337ec517","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify\\.php(?:\\?|$)"},{"hash":"657504d8035b93e2a45d77c3737c8af4ae024d235a679a578602ca5f337ec517","regex":"."},{"hash":"a877c5e8c7391f3d1a8a862173bafb5a0321ea480d20c6484962ae56b0eb68d2","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f8c0dd4dc9d22bc33120d95313cb1b5adbe4f6b28978c947e6d8888d500455bb","regex":"."},{"hash":"01a5d40b6c6e1e1a0d4db049f765225426047fc09d02194568b6c24f7d7889be","regex":"."},{"hash":"819a7024788531cb13a2179a8d8bcb87818c26abd305aa86a9985d49007ae25c","regex":"."},{"hash":"18471b1041fa60a0d74d3faa2f6ea4d2a7215bc7fe53058d2656abf29cdf8fde","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+form\\.html(?:\\?|$)"},{"hash":"9376539d41a04ff4400f979dfe704eaa2d9f872a5332e641dc7180878a195caf","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f41f2929efc5839d3f82c9096d7c9b763a8fb572c7f3ff3c3af69118e579cb98","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"882dfee414036591ad79bab844d896c8f4c247b42d4162cc1b705c1b9719020a","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"7a5ce6ee99daed552146efda0377b66530be5f32f444dc0332fe8e40a4918cb3","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"45415f47b899e95a8e23827d98d05e79e15bda4625d17f5db929ba0d2ffc1761","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"e72e990ce956e67b629b8bfb5dbb0c62c541f132487fdc8bf436445c94da03c4","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index2\\.php(?:\\?|$)"},{"hash":"5c90dde7dd8106506443ac0be9eff8279638a1b2e01866fd9a27ae6362523631","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"6ebcef14ead6eb84e80c8d708cee1e6d2a88f8a6d95ff8563b2f1c04c4c5c9b9","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"dbc8ce5f58d1ab061305c28c6b11f7ca0b2baa56435535c522d106c13408b1ed","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"8cbbe8cd7933a96544be3ad8cffaf4ce311377d3ca4ad30a06ade38bbfe1a922","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"3886c3868adb76310186735836a0ecbf9186cb713ae527f2c3859efce898a831","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"66bc7f8f71bb7850f1b0f0da3b50408fd6a925fdc767f7bf220b370a045aaed4","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"aed81c1920931c7c21d219b2dd136fc699d1c4ed1f4c764f08b5906f5eff9cb1","regex":"(?i)^https?\\:\\/\\/letteriimarinolmo2\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"24559dae93cbc202e3ad874b0fd2b154804c371618771d5c53d4c753528ab9ac","regex":"."},{"hash":"3131f230fc2134df04b3509885395ed5d7292736ac01a0ac9d16ec71bbebd7a5","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"25b6c2bd77b2df01d1967476642e8e3ff6a25026ef3962972138d51d8daa4d79","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+valid(?:[\\/\\\\]+|\\?|$)"},{"hash":"dd6ede3175b49a73f3e221146a5582af9adf46fe10c44c469370cd40e281522d","regex":"."},{"hash":"e72e990ce956e67b629b8bfb5dbb0c62c541f132487fdc8bf436445c94da03c4","regex":"."},{"hash":"b3c6081d5b2d3f3bde8d84ee6fd47e85df645cde789854298f85fd567b6ab69e","regex":"."},{"hash":"25b6c2bd77b2df01d1967476642e8e3ff6a25026ef3962972138d51d8daa4d79","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+leeg\\.php\\?session\\=677e58d7896be$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7cdae7d84352519b032e58d905c51052cb736275f00c0aac4a0408f66a5ae2de","regex":"(?i)^https?\\:\\/\\/pub\\-4e5d110e4d7e4d6c8f94fdb1ba300d3d\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"0a922f131e5bbd34195830b070fd72184e9b397ec02629e5f8d89cbcbb50a4f5","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5e71764122dde5f56adc40878e46e46462ebdafff06134943d93aa51ca73867d","regex":"."},{"hash":"0ecbf5c5064acd20e1568d6b55bbca3d7820d3a4b6fd1c097f7e5f6be3c7c689","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"94b130c7e8956db36c4be1f21c183e79a52142d22c636f353c16a2da9856073c","regex":"."},{"hash":"14b638d23161395152086edee9cb73d14de889978768c28874bb0a2ecdd853dd","regex":"."},{"hash":"a5434bf1f91f271380876b42045cc11b88ca0eaf0b1961d54634bfa1480ed4c3","regex":"(?i)^https?\\:\\/\\/coinspot\\-\\-logsin\\-io\\.webflow\\.io(?:\\:(?:80|443))?"},{"hash":"c9839906fc34f9d75a33ab631a283a68818ba24f469e1b2ad811ddf9549a2c42","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1e62e040ccc25f4746d22a42eb4cbaef9964ef4d6360ca04105e0afaaba3d6c1","regex":"."},{"hash":"5d3c12ad593e236563b3e13c52b3861227bec40f585e0e3bf3f18c10dd1443b7","regex":"."},{"hash":"c407784dff927968931e6ea87938f520806dc9ecca8ca8a29982cd037a342b81","regex":"."},{"hash":"b416991ab4a89aa929d74080557d9bf2bcf052a93360fc7a0ced27f68a508a97","regex":"."},{"hash":"47b6dc4ddb2f7356ed49d7de426d52e50fbc19c27cf69fe56f81c4d8cc9a4099","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"57aadf58bf714c168eef74fe453b96c53a4bd476f04c863295e7bb21d231ace8","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7aa558b4ff02f0ff497a4d22b8b6907f69bf63b94a9c1218e196ece05686d7dc","regex":"."},{"hash":"c6baab1d19b3b3965ba0703551b31706dc156d4024ccd21cea3b7cd18777ca0c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+basvuru(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"007944208309549ebbb24997db6750f7267e763a1e018d6f115b90da1767a529","regex":"."},{"hash":"26e50beb742afa165c657f5ae08e305f49eba7ca7a0b675cd12da1a0237572a5","regex":"."},{"hash":"1ccee1c4481c5b49e954f382a5ec4ea9b34abb4cf6f34c79b217fc65e6e69db3","regex":"(?i)^https?\\:\\/\\/kampanyabasvuru5\\.duckdns\\.org(?:\\:(?:80|443))?"},{"hash":"e1c7c943802010842f24a7a7d773e608a16cd2a0f1c60a7dfa2c340018a6f793","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+caspilot[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"13bda504b838d2c180dfa375e284a74b3760b39fbfdd9eb07fbb937ab3c55dc7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bbva13277[\\/\\\\]*\\?\\=jesus\\@transcontinental\\.es\\=\\?\\=ok$"},{"hash":"b6548077693b2f66514c92c0a5d862b90bf0bea0b0b5a8025a48354fa9284601","regex":"."},{"hash":"37df91dc7140c61541fd5c13ae2c078b014907db4de8b66294f88ce6bda62599","regex":"."},{"hash":"6c7011eb4628c6b95df9dc6fdb257242d1d8751aab7a6cf5d97e8fed098533e4","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d78d826b2dbba704e32d2d269a616d47de2563a6c5189fc042f8eda6005b87f1","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"2be83ad4de433df53dbf842f9fb01c26f62db118892f9397010abd8409d4310d","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"731954393f2c413c673f4e94f9153cfda5c45de69d8566c3bbc4957b608a0f1c","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"2e590677b285a2868332d9cb763efcd0c4c31ad6f7dede53c7fa187b3f1e157e","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"d26466c37216d4033bbf58a277535b25e84f6d52b601e6cbf7dd57e045604ff1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+druchesk[\\/\\\\]+pages[\\/\\\\]+region\\.php\\?lca$"},{"hash":"61166c701afb90bbee359e55dbd6430c29c1455c2d599a0c72329949d3adc5e9","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"3bbd286647d59e95745f11958918154a9f016ba5f695b7aaf304eac8f315fc88","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"d92a52e156832893bb06ce558cdab7178cb3916503a8a48f0450a044f28e6173","regex":"(?i)^https?\\:\\/\\/video378246527834576634875345\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"f81531ddb6cdf58f6c1317526bac32b842aa13be5de7d8ef83d9f92ad5116b42","regex":"."},{"hash":"d26466c37216d4033bbf58a277535b25e84f6d52b601e6cbf7dd57e045604ff1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+druchesk(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"17b3e329a184facc642e4da885ef767eca8e363d259c143cef2c82f68b4bdb1e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7bbead6aa735a834e3a1598767dd27db534fae7006b23f7bab2ec9e2bddf9f01","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fbclid\\=IwY2xjawHrQhRleHRuA2FlbQIxMAABHQ\\-Ya0P8v836q9yYkYfnzXixmNoEzY3SGmf9V0IDh4IhIu4yylm_EccTHw_aem_yV9T1lXtWgjLzJBajt3dVw$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0646dbf473bd97a992b8f8d0d52ce08119049c59b858848dff01e5c934949432","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+klikdisini\\?fbclid\\=IwY2xjawHrQ8RleHRuA2FlbQIxMAABHe5aGPScwQ5\\-WHUeI7AxH0k044GkBSOmEywXIgQcDY5SO2AgsZR1jZGcVQ_aem_IGot21\\-Yxnolr35RFMelYw$"},{"hash":"0646dbf473bd97a992b8f8d0d52ce08119049c59b858848dff01e5c934949432","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+klikdisini\\?fbclid\\=IwY2xjawHrQ8ZleHRuA2FlbQIxMAABHcTeln0pUtclTe_ErWeWC3TNj1SQsQzqX7f11p0eSf9_Xv\\-E8oWI6Toy_A_aem_qEx4b9qCHRvhZCia7iKO4A$"},{"hash":"8ff4e1292fb25224a22f0c9c45860068d6ad808b485eb962c319a187cbaa4b90","regex":"."},{"hash":"7bbead6aa735a834e3a1598767dd27db534fae7006b23f7bab2ec9e2bddf9f01","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fbclid\\=IwY2xjawHrQ8JleHRuA2FlbQIxMAABHU64xdhEfFwsSNxkeKr3H4I34UDLEVIY08SCvGY5EeKJxhBTHiyZki5fFQ_aem_UDXL3fwk29cKtMuuGw3IHw$"},{"hash":"e32e2ea546a167889cec6ba7a3c48cbe55a4d7f250d9652688e15d6be9f9126c","regex":"."},{"hash":"6a8d27cbddbae5e249e5ac4f613dcae0d149b0b93a6157f5a9388a6e9a816690","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+get[\\/\\\\]+221237177(?:\\?|$)"},{"hash":"6a8d27cbddbae5e249e5ac4f613dcae0d149b0b93a6157f5a9388a6e9a816690","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bank[\\/\\\\]+ersgeorge[\\/\\\\]+1736338064981\\.7244(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56e6128b52be908674138f26785f4833bcfd680e2fcab54dc48df030d50e09cc","regex":"."},{"hash":"4c43969f7e0046c118644fa5f7182b6be83d838bf23f6b8640ee6f94a89c2451","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+d1385(?:\\?|$)"},{"hash":"7062cb9ce17d1dcf52ae2bf464857a929ee88f140c3b0edeac1efe943f15a722","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"34757d02c867d7ca77a21dd43d47068c2fe473c7234ef504315faef0bc386377","regex":"."},{"hash":"aa0e4bca0cf57f7f9c2c1358f48e38c1a32c3cf9ff841d2e4973981047a2dd58","regex":"."},{"hash":"337e566412c688b7a5fbf163ed34ebd0263c85a92d2805935699586d0da30af1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cid\\=401941$"},{"hash":"81adae1b7a2ef2aec8148865c04de19e3f56eb7b491813ba3a7402bc999816e2","regex":"."},{"hash":"9908fc2ec56294cf87a34801f462da6efb2bff230faefa3b1792fa098e2e3cb0","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"f5bb48b425e1122e4420aeaad676ffea305eab44e1e4bf2f366307e7bb7b69e0","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"4f0d03d7a4d941d82d7b029d0603df1075f25eccad7387d62194013a3f4ef8eb","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"d7de4ed81aa2dfb468d8e2bc5bffd6f17767ef8d41116bc5c55dc75e733e9b62","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"5b159dfe365affeb2577f64d29c8fb2911c54c0a15343f257a1ba7f79955c15a","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"96e80edc1c2a7a0f5dd998014f9ac7a70a1602bd07876fe6aa16f41ea7adeac3","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"886ded7b0604bed24747509ea02d35384cae044d76b189f332e7abd51dd5b054","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"74d88ff022962aa4ab842323b4acbfbe3148923a2cd57f8dd578bf5ab8b7db52","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"96e8bc5ff243e9038cdb826d923ca6f8411c04cd2ecec705ced3d4d092a0f7f7","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"86e8bfc0eab0b23fa4e8775aeccf8bd5e821e62c3327b6d00780c9624c55b47e","regex":"(?i)^https?\\:\\/\\/inamzon\\-in\\.shop(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)"},{"hash":"01480ed65ce53eb1ea6b6ab3cf19a8874a4fb980e88751ee5982a2f1f2b2e4f2","regex":"(?i)^https?\\:\\/\\/officialprize2025\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"465c9ece91846474e43a687af41d1cce1364af57db27c037bd019a5d61250e3c","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"22e838933b1f22a6d5d587f3560517a7d0b22522db96c4ba0e88399bd3f6c1bf","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"0788217469373c047e9d640c3b1480961150fb20703e014b5e9fd379f49c9e6a","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"0236f520f47908efaec2a009fad3c1a102cb42995b72215618b1f52941e1bab7","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?"},{"hash":"61739244e6402f3bdacf8bf32eb0d1881dbca227774a6c138863c776803d57bb","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"cfdec9f4c0acd4cff5ab8bf17f7cad65109368868f8538ca7b7cdafdef4f0577","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"7d1d36fe6e18db30736c3ccaa73f949168113051f05b23797a974594919698b0","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"8b662a83d14ae449624b135af885d620497140c0382b4d0c28a2172cc58bb0b7","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.li(?:\\:(?:80|443))?"},{"hash":"07b1a8f7cfc0995e9055870a00215cbd75a8b8505f971dd304c121e0fce8daae","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"a177ce218115c346cf03c14685ff522630ab5459e1ea8b8c8c8a29f5c3ff27d2","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"0d0a2c3941b926a53fe48c9a0433d20b8ed02ab4b93936b424f761c95fbe94de","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"66bc2cd86c0e6d696a14c832c36e2f9d63bce93f0a3bcc2b8f48c72834160e38","regex":"(?i)^https?\\:\\/\\/25happynewyear25\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6a8d27cbddbae5e249e5ac4f613dcae0d149b0b93a6157f5a9388a6e9a816690","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bank[\\/\\\\]+hypotirol"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ab3c1de8a9b9cdf768628b8456f53d6f15f1cbb37f04b370c7d857c9ba50d2f1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+proxy[\\/\\\\]+request[\\/\\\\]+39734366ce367568c661fc655a05e0a983cf3(?:\\?|$)"},{"hash":"05a0626749e003adbe1b013ebad0893a9e31198a72890fda0277e63c30504404","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0646dbf473bd97a992b8f8d0d52ce08119049c59b858848dff01e5c934949432","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+klikdisini(?:\\?|$)"},{"hash":"e9237965670636a1c3ff66638c6a23b25a76056123d01c7ea09741563405b374","regex":"(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"fbc9e691fcd079032ed46939a522866e0db85a0ae9d3a46806d5c4e44b3fb56e","regex":"."},{"hash":"5f44f9b922acf30e769a68e7727977a97ab174bd4f0fbbf891f1095d823ab97d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2b0f77c7256409311e8a36511aec01ec335d6f001b6a1f0f910c7fc86cc8d6b9","regex":"."},{"hash":"e0607d7961a41891d7bd7b83cbfc4a5a1952ccb2c4327cd24de2553bac4dffcf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"8ce0ec34c5943c3f2546026e8cd6f249da93b1d375e496ac579783e7a2bbba96","regex":"."},{"hash":"cd1b41933e9ba2544c4001fcb17c3fe21f4ccef6e3584537fe6b9ca38776bcc5","regex":"."},{"hash":"e1ea00bf144b8ea490c31fafe994ac78ceb253347f4b453a6161283d9d4c3c49","regex":"."},{"hash":"bcb091e87c0f1a06cb1cf064eae0a7a5644f7c1ac01777d00ddd6d7f8269c915","regex":"."},{"hash":"681fc301cb918339f2966eccbd7550efc9528f8676bd289dfc80dcd4a2b22186","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2aed3f72167f217d407ed4fa537fe200355a7a8fb4df8eddc7e1e0dafd539245","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9968[\\/\\\\]+entry[\\/\\\\]+register62899(?:\\?|$)"},{"hash":"2aed3f72167f217d407ed4fa537fe200355a7a8fb4df8eddc7e1e0dafd539245","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9968[\\/\\\\]+entry[\\/\\\\]+register62899(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ebd889a53dde43d768a0907ade97af6cfe784230b113bd519537a5c5310499ad","regex":"."},{"hash":"1fe201e711876a5378008603b3f16d2b2b2a2f2640ba33fa7ab1cc15aa60562e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+at(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4801ae5d44dbf82a6fe906941daa1cd55b49d521d0ad54a3cabc6fdf4197289d","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"42357ac66e5b365687a7f04bef8c8e980929253243d7f9ddf4e5509f157c04e9","regex":"."},{"hash":"ed1200de10372f381a830b556a24d0d24c017b495fec8cbf7c9112ba80a05a7d","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"35e09b441a7538537275a60ff3600688fe105c2428cdc3462c5412876e550bed","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"67f2b95f7f767c4ed758257999737e51f9e752dbabe1699eec70b2f29f0a5cba","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"d2eb68dfed70434e1646677cb262988fe67bc56647390edaf77ca3f2fe1d4b16","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"e79f5dd21adf1fb8379f870225f3bd13ba27bb6cfa728fe6d4dcd0c8fb6103bd","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"b576982203573cf5444acf7c4942e256c057739a4df67b2e09ae08215d9a0225","regex":"."},{"hash":"52be865862ffb64f3dbd8ef5ba51664bdda166e151c567f6c286bec716aead02","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"e8c59511c6030db91084a9e780c41b77df243b043faeacc4fa2f647715f5cd42","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"577283a3eac1c6e6b0f72ca59f6e422a6e90550b16e62bb80c670174400074e3","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"4df037f3711c64d6aa0c3f2d9aa3b01d3530680b48373c3cdc0a0cba1fee2116","regex":"(?i)^https?\\:\\/\\/video834562387452834534143666\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"bc3b825d89f896b2ac2e8667cccb63dbef1ff903f09262c41e1e4dd18fa69bed","regex":"(?i)^https?\\:\\/\\/www\\.livesupport\\-ledger\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"8da7cbeb362e5681b574a7b3376fc1e0d9d63958d0d874107f038ef120065dfb","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"817f07aff6d2192ccebb77806d19db573eaa03e5fb9ab408c2b99544d6304e34","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"91fc1c8524e6145e772f3d0e9ae6f3382fd380849da2d0b5d9d6b7e662111cb6","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"4ece03f0743fee059aa11c873b7377783fd70b9d386797385ef19de864f0c9af","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.dk(?:\\:(?:80|443))?"},{"hash":"9c95a42690914b276a03ad20a353b7b9f1bc6dab9011b14996434f8781f6fa47","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"e7d785665a82bca7db2ff8d06a8c05c1cec30ec26d9c9a68898e653259beb3ff","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"0a9c76f83e1760dcfdfdbc0f1ddefc6d5cf8909a819de4238e93fe45a8e6cbcc","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"6f623249f10a9e7064975da09419ec6f9ff4248e0c49adf1672e1169b6612e8e","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"eab974134455cec75ca329f30531247994a4a1000a44eefec1aaa64639e31f48","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"76db50c69e3e3c6ce191031d86640fe9e5ad063289dcc65c2fc12ea9457892b7","regex":"(?i)^https?\\:\\/\\/video8247563287456273845872345\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"e6f0aa2aca7a98b7576e68fcde2eacd835f2ec78320ef9d5350017d8a2d3edca","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"e5544e4410365faeab0f984eba87e1c489c6022f6b686fe929640df8e88fef63","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"d5e49d871143e1428391e61f3d269c0cc160663d9770a66c8404a9137f9bfb5d","regex":"."},{"hash":"0baa98d1ba9e8b0cfecbd2807e1adce22a1da2f1be5cc21ea12b9018cb6b1641","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"d399ae110340be497ec7aa802455cfdd7d067e71c332d8dd3e63405cf56afbc5","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"ea50efa09711343d078a13197e4cdc19df5fc856243a76961ad85e256b61f751","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"c7f245885056b2078954d68f99d8f3f3a6b7098861d6f7084e64a093732afcb9","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"ed31692f383e87f659f1e9b8c3c3e550ec43e19edc247dce2e5b123e459f831d","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"42531974614b6472cb9d5c99894958f4fb35ddbf47e50f975be4fcb36c733eda","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"55ab3e3d49a412e936097e6c32520bea96a57d4eebde2f8ce30964e31748ea03","regex":"(?i)^https?\\:\\/\\/video8347652384757238458\\.blogspot\\.sk(?:\\:(?:80|443))?"},{"hash":"9768b9a53978406c450edba3af8d5996dc9b1fecbfa2272539481df0e2f622cf","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywup\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"d2c1e12bb04fd89a435516b5cc90b75001dccdc708f321051c5042ddc6e94b3b","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"dab496bae04658f66bc8953e7e74b599f46d317eb3cd4a589dc3309232ef3d47","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"7d35798e3f30476c4abe2fff28a169beea17c7f9851d28534bb29785e4552154","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"8e1a9e15c44b74f502095d4f6a7c410df9bade4977f468c68780b26adb84f6b6","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"babdd4d47186627d83ee44cf7ecbf8cc7856cb95ae9ce5a97e62fa60b26ff0b6","regex":"(?i)^https?\\:\\/\\/video384725634785283745343\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"fcc694699042af2667347ee2c301ce161ca5788e774b6a0605d9e16af45f1311","regex":"(?i)^https?\\:\\/\\/sucrusabaml0mb14trfiere\\.firebaseapp\\.com(?:\\:(?:80|443))?"},{"hash":"aa0bd64658b4f46900817952250f0fc546ea860f9de415b770538ef42417b676","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"82c9083a870af164f48debcf3b31cb4e839b9d35317c5de28ff8a333c458e624","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"97721ca0f0e5cb1df7754ee0048e90d2ac77813653809226a17fa343f07793e0","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"291e96eda6e463cca459e5ff21fe816d52da34c7d4dcb5b841ee6b83d48252c6","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.sg(?:\\:(?:80|443))?"},{"hash":"c59a8a44633cd7980c864d4c58c2f8aa3a919b8cb0cfc324f0c064878e6975f1","regex":"(?i)^https?\\:\\/\\/video87456238475782348543666\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"b30b2665775f5560d5ddfa34af704275861d1689cb3f0fb31e96e2d15cee2c7b","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"1c5bdb3fa0c1bb1a2033530c5f569525a086d4e5e46c323bd46b96763c12c426","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"8429680de8e7bd383a951951a815c57109f098f7f278fb2c493a8a063efcc075","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"c884186d6d6f89538932685d846ddd4159fd134aaf1f3c16e17f976de24af21a","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"9f80e8fb4769ca74abcdd343ceb55c68733232799866df02dcb8ca8ecae1dae6","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"cbba6796c19a22a9f2d0aebd187e2b3366fd644cca5fe6946ecc90cb4d647840","regex":"."},{"hash":"2a24d117606d58d84469aee27fc0e2d2bd9e676b157b0ae2d414b731383a3f9e","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"2747a4fc69cd7218c43bbdf203a97469c96fa47391d501561ec8b5fa40146f8d","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"c7ae10f097ffa28bcfe12260ba1134ae028107196a2edb9717a2389bc39c1fac","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"c1aa90c7200556803377ea2ba005946e6663dd3e67bb43cab53cb15f3e995a25","regex":"(?i)^https?\\:\\/\\/video87435623874582345782345666\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"6394e10477a21a56d8c0ca298e2a2aebb968412a09b2b61acb987a6ad9d5ca69","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"20f7c803231e99ccdb25f3f4f952dd61f2b9fba6aafb1a09e08a7ccf5da62450","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"7735d902f1d26508fbe456fc4276f29c5e88b817820ac3bc89b057c3cd70918f","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"f921f7f775e089c0f5ef8cf062d6bcab8537954cd7883ac4c2cee26d8bed14f3","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"4c4e78bf0a195a4b3806a0e049d1c29342f621654e8fbb096d53085789a34be6","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"add331eb6e71017eb88adfa3a5547da99dfdc270342461276437c0dd79da91b2","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"f3f76899e81d81c9728b0247afbd2f0cdbcf0eb6ea3300d7c1da5b473ad294ec","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"3e72a6236d76b56e41743ca012862c644cf5e0bc09c1b1a5dfd203964b7982bb","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"2f8f355f7fac6a7c1cc5f54da8509fd0b29a44b9060208dfd5ecf1e649feaf12","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"055dcee093a972a7f5f2f3f69b31d22880f2665a49d7fc0e53fbb96029847a6e","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"cfa56a701b40d091aa86c1e125394df6efb05587b27bcf9883263a1021d8d8c8","regex":"(?i)^https?\\:\\/\\/craft24coins\\.blogspot\\.ug(?:\\:(?:80|443))?"},{"hash":"8dfc3855811358470113055587cfcb3af123e62afff959ef0dcaf5b016f6a7f4","regex":"."},{"hash":"13bda504b838d2c180dfa375e284a74b3760b39fbfdd9eb07fbb937ab3c55dc7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bbva13277"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5ec25bb811cc99e94b08b367ad91c15f93f8bb2bfec9109ebe3928384ada8eca","regex":"."},{"hash":"a17297842d1174111d232752617c03d7bfd96d766f3400df24da37b17862e85c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a93f37478717b48f1cc45944fc06e83aeed7e35a69af0569470bc8709252f39e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9768b9a53978406c450edba3af8d5996dc9b1fecbfa2272539481df0e2f622cf","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"91ddeead2c6bb534d5bbbcc3e6452f24da00443e18e13be2ed9a878ad98197c2","regex":"."},{"hash":"6d4b9c6ddae0df9349694a570ff2f25d455c98b26cd51fdea0f0eccd625450c2","regex":"."},{"hash":"c0f5b7f690e3b077400f5fe6fa280db1e0be0c2e7b5c3f7b5628d6a2cbe787fd","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"3dc883ba8c0853dc37bb11618dc59a5e1de1daa2161bb191c1c10756128470c8","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"06c09145fa92dd51c1ffa89fa16f739faddacc80368625599403cce98a1c10d1","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"60f489d358033ef4cb501df9342623ec9d6d9a1298ade3f56c884e3eba1c3425","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"2a5d3fca9eb2036bf17ff48b002bf5afca5b8a010e1e173bc30f972991bbfa86","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"be30c7a656ec40f12d067802cf36808a19cc9ba15db19cd2fdcfbaf24e3abdfe","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"31bb5ef6f3f0d751fa16ad946c97ea1d8601ab01a29cd3f70993e891432c627c","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"02779ef537f26a93e8886cf7d60e4283009a14790f5e2482b941e339ef5e1b23","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryluf\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"91fd4b531f99c8088fc1864ad7994eca3f6c85195dfdc4fe23f62fb7a353791a","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"44c768d2e443b4fc18b9d18f7b302eb5bb3c402de5065cc371176c675aeda1ef","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"e8555a82e17bc056be46d8cef1c19df5d844e9d8f3b8dea26116c2cf160ebcce","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"6810e9062a8db27e685a2bfbef34946169207e59ed06bb1dfd848a0cb3d63299","regex":"(?i)^https?\\:\\/\\/skyexplorer\\-galaxyarcher\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"b8bb4fe7c5aa17b9f990a12e5279636951b8313359450278ac8ccac6f6e9ff3e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b743248bcda566a97dd4e5809f4324697d87c738f67401fdde865b2890accfd3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4c6eddd9fd7419339e0901d8c93a1e19527db396b60cf47ef929c2767d476b16","regex":"."},{"hash":"1d02457cd6bf6ef656ade95ef5992298f6a8424c8d9b4cec21c2da694a5ebee5","regex":"(?i)^https?\\:\\/\\/informed\\.deliverynwe\\.top(?:\\:(?:80|443))?[\\/\\\\]+l(?:\\?|$)"},{"hash":"bbc68b3d85a5d87b3a81bfea9d5129e78f1979673303fbb3d381357930f3e226","regex":"(?i)^https?\\:\\/\\/n1qg0mtc3r\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"307eada0c5e3a46639da9e5f76410152f71ad275536ddbd89d372702cb5825b2","regex":"."},{"hash":"2a8e84f7198c59f6f423f76dcd619fb2191817ef035f7976e11e562235d367d5","regex":"."},{"hash":"16232aeb3561590326f746c95a57f0bd711cda59c030d526eeacd0eeb3f057b5","regex":"(?i)^https?\\:\\/\\/informed\\.deliverybac\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"1c0d83c45b3e3297b6a3aa09beee1eb536f0ea81ba2114e7d57fa27fdb6ee8e8","regex":"."},{"hash":"e61ae9cdaacd8b8655bb5c8ef5b008f6ccf2c7b0c9f23815b0d9bcbb996c8132","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"d740d8ee5e6b7564d33570e3bce56b34a12201f4e883502f788aea005aeb0ed8","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"1d4d65acb8f06cd6988700c42d3ac5a02d9d0088527f80b99f4d0d7324c75acf","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"7cd52cefcfb15cf7d1d4a1be147361a68b0734a3e75ffa2e5ebb5691b4e7bb74","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?"},{"hash":"da18e31669bb0b5f67407e3a89c7d0a7bc4f9246baef9528211ec710935bb363","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"47bee3235748ea1c9a770b70d931a2019dac85936f0dd3210ef73c246191dcbe","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"fbe68e74749ac8ef8f0545846a5fb319553db8d712eb5944c4dd36836ee78767","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"eed492edeebcd638750f30cc1a36785a36bce88ff8c57e0d25be1db4718b27aa","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"0fbb45433a04943a254a7046f34a31fd97014236aba31e6cb656f2edd164b0b1","regex":"(?i)^https?\\:\\/\\/video3874256238745726834587666\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4254f50fcf4781a8a9c312548b27fae1878c11ba6b90f5089e5f96648fe076bb","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+(?:\\ |\\%20|\\+)+hW32467DQPMJ5YT(?:\\?|$)"},{"hash":"1b00e19d2edb5549395f07c5ba944e3cfeaefa5e13c6f3fcad5d79a99bb009b2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iss(?:[\\/\\\\]+|\\?|$)"},{"hash":"78d523be3aabc4127d5ee899e05f9bf9c1ad47aa2ef4f6476315a1e60e8cd9eb","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+formosasorteoshm(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"25c506770bb8d44842e9d18786bd563085a1716fc7ea5705f91920890fa61f2e","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywwn\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"51376dcb983f4ee979ac85c557f1fe7a1f0f27d196750383ceeaa154907edb14","regex":"(?i)^https?\\:\\/\\/micros0ftloginpage\\.netlify\\.app(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c22001765fa4058ff6b50a5bd8c85777163bba688013584ffe8e5afb89b3f02d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tvv(?:[\\/\\\\]+|\\?|$)"},{"hash":"16232aeb3561590326f746c95a57f0bd711cda59c030d526eeacd0eeb3f057b5","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"6ea861d4398a036f769ec4870f7a6fbf2da2a6e889a4c26caffea0880acf23b3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"fddbf10cdb83c924ddc2c4dbbb17c4d2ea207776b78a567194da58185cdd9a76","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"4d1f93af1b75b9b32d8038ea7e0ce53e45da4440dcc16c2070f29b063e847ea1","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"09a4c490cb1f29d5c8b25607e80e315df621127347cf80f6ce3ef9e66708f5cf","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"86e9205ce0c21e293e540c2680990ea608e2e083347bc68d55f70b82c232ca7b","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"248c5e8ee48c1a14334c78bff86b81c02a59fcbbbe391006bb6e0a1397d49c6f","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"fb5caf90655d3db1500996777f7cef611e2d9e2feecfbbdc6eb5ff3585e05ce3","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"cdbe3f73daf245fcce2e6b78a2d9feca193417e3ab9ed58b56fef86223570c48","regex":"(?i)^https?\\:\\/\\/video9452398457829345892345666\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"617332208269837a256ec4bb9344ca7041816a815b278acfc91440829a4d8ff9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"952b538e5c12dd9d10a4beb0549778a67b32aefb173f07700a1019dbd063c992","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6007c58bfd937fb8d2b331143001c4dcebfb79c3177c05e8e9215fbe3011e7d0","regex":"(?i)^https?\\:\\/\\/informed\\.deliverylik\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"2cd4e1970cea799afd15fd0c336b9288b5e1d0ae9f3f6821827f5b0a30b427ba","regex":"(?i)^https?\\:\\/\\/informed\\.deliverylek\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c99a52e4f04d6074dd9f9c187297ee3f9afc24fdf9b18cca22ccad72acd4ed7e","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"4541ee6e336367e1abc3fe79a2ea63f2b35380fdc3543d53b44d6441356b8ff8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+atendimento(?:[\\/\\\\]+|\\?|$)"},{"hash":"0a1e8292645d8d425db33311fb503b62592e811c9d94fa8b9369a80df8519e34","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"ef163406b23b4bac97cffd0b99daf75379a83bd4cb4429686069ed1c99436af7","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"f006b0eeb6392f750aac46930bbb102f6cd1a7f4ed2ef37287503765562df855","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"3163881adfff2cb3f5cf76cea1a041022b61a946e6a86b1ec88b89cbc684d9d9","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"762725f6ab95bc4d89948500cf2d0203ed4a2b53271b703bdbfb79fe6d29fc1a","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"1bc1b9be54d72b8275cd27c8cb7b5745fd699240af04492c80254e9ead878be5","regex":"(?i)^https?\\:\\/\\/abczyza\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e967708478649d8142aef4ff8697d402c106269675683bd1791dd11e281db41e","regex":"(?i)^https?\\:\\/\\/www\\.54\\-93\\-102\\-203\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"4fd72926ecd16be1609db457b8048cd892eede1cc4d42c573594c78cd01a1944","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=8mzW06oa3A\\.NCLk5JQvf986_qWWkqCG2_qXWt3vmvQ0\\-1736345347\\-0\\.0\\.1\\.1\\-\\%2F20aaa464bcfb127419b6c3abeeb8bb9f$"},{"hash":"9203ec7141c5ecbb7dd9501804ef506457eaf824fcc2fac3bd8c775c2f446793","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+account\\-announcement"},{"hash":"9203ec7141c5ecbb7dd9501804ef506457eaf824fcc2fac3bd8c775c2f446793","regex":"."},{"hash":"415ce77901a06db600e87c5f95ca054a7180f748a582e7358b3d12febcfd72a9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b460186670762f4dd4994460601f28dc057c7179ea09bb05e4d7f6c5db4b26a5","regex":"."},{"hash":"c116acdb563066086dbad26e21f818601c541a8ef8bd5ffe11ab9a3a847eb4a1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)"},{"hash":"0f19ebefea33489fb85ea90ef98dee494293f4c6f419c7b9ca1fd9af2c35a82e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c6e3cbc34af70e1337e2026fafdedd51d664787cc4d32bca09725ac3caa2d030","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"e54ec0b9524ed1efef2b489c28b68e77dc616a9201f0c1f3449ce10f0fc129a8","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryaoiw\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"9bf2e5842c5e45838b85eea1e283b3557fe79b99a5d30979b9213579e4ba8891","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryahwa\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"2182c3d413956845c13e03afa97ab0f5abe267b5ab3c586aefd41e2796c6f319","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryaoiy\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"287f57311598c94f9728abf475956dd6a0d113c1ec4260ab16c2a3ebb72d0d1e","regex":"."},{"hash":"22391d769cc42692393ec1dd08813213d11feeecd1c517a7c031987f8e140bfd","regex":"."},{"hash":"bcc06a9a14f66317f7d7a9f3c8b7e949d2192ef1bdfd106bb7cac4c76c84fc32","regex":"."},{"hash":"b2b97a3e0a6a33e2d9a6f5d27aeee705222d68c1a6e94e1e52181ef71df9bf8c","regex":"."},{"hash":"e1a190c48c9a2c0d530f4ed669047bbc7d90947b423041de57bab433665f3c86","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9bf2e5842c5e45838b85eea1e283b3557fe79b99a5d30979b9213579e4ba8891","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"463b1973bd75f0938254f59577938fb86419a7ab06a43ac9fbef15fd83e2bb73","regex":"."},{"hash":"bbc64a1749e8890704cd35e05f412f23961540c6d668c6dfb2f4d323c689a187","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ef8f236f7c5e796dc9e8a20eb89b8e59075d29814c840141165cead16869f2f0","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryele\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"191fe1fa0aefe38c0c894d5a8ad442db4228621a42edc06a47723bf3c87aff3f","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryleo\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"5787f2c25f12eff500140ba2c19b94f56c0e6c9ddd6fcdba826432eab6b11845","regex":"."},{"hash":"8b94ee689c96e4a34cf270621204902899b7198d7d918ba5428a1d258ccd2037","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryler\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"6007c58bfd937fb8d2b331143001c4dcebfb79c3177c05e8e9215fbe3011e7d0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"da12cc31a90fa1cbe9723c9389bfc9c4fbb5918e59a911b77221738b68e14b16","regex":"(?i)^https?\\:\\/\\/informed\\.updateiayism\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4d93a511b4ebc1193b606dc811b15940c1c154d4d4a22a22f05003a55ef14250","regex":"(?i)^https?\\:\\/\\/informed\\.deliveryaskpr\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"2f4bd783b1f6492cc566f566870993d91a4714779267faa4033bb78fba9e3078","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"0c4bd72cbb14751960769aba40fa6754048e2c11833a5ce175d770dd53ac89bb","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"67178d633e836d7c9f0d02dc6a2426878f469b8ca3448d4b659faf73912b1850","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"ab9a7ccfe3d56d2c0bdd37a08faf22efe390824b102c3f6e9faba7591c2194ac","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"beeb7c89d717bea4c6465612c159fb9d14e2684d980cf565b9bdf6b82e0b2a6d","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"1cba7265b45f2625aa850f1d2990362827e239c25d1871f2e40f3a3316ad12c0","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"a0c0c76d8682ca0873e304d008c7fec36d9d4e66ed6816ed6f4565db7205b371","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"a1796c082371bec07ad24750e865becd0ffb93483a2778f77b427d68b61eac2b","regex":"(?i)^https?\\:\\/\\/video823475623845728345666666\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"3e5df23b2dcbdcdda420c8b3afdfa0043952e2f497828357086910bf1be93108","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"641baabb6d80f2e718d63585dd6dd9dbf1e45e3a03fb3b448eb4ac617110c47c","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"8ba14b0dd94129fbf3a3f5df1c105e26db039ca0403807450061731ce6a6d5ff","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"bf1b8258a9e02141f5b1ea401ad351ed15fb68f8b26fa750e8b396b7dc8272da","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"49f019385abe399df041c455098e62bce287ebaf5b6740c62660122ae7ef6429","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"3e9faf20147b3250536016392013cefa3891a0bdca18bbdabd971a97bf7ac192","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"c3144d94c7a409e255551edd724d9fdb8e5cc22c2aaf3341197a80d6fd82bde9","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"0a86914dfc1eecd2e4dd2375fddaf6d8a33812c2810904982b5b4eed54a2ed3d","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"3fc028eadfb22862487843dba4d4c5842dc8a06b153831cb2ed07d5a166137fd","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"816f25f36b0ac40acec59c139c27f2a7d3566c8205778072f50cc31d4c5545bd","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"f6d4406aaef9160f2dab1617961c6f6face81e36941b690808d4f1ad3e07db4d","regex":"(?i)^https?\\:\\/\\/video8562873578234523452344\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"7ec3be497d5991cf43b7dcd052fa90971040244baa6386c9a279b3208060e954","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"c1a34632d76e7bea438a177bb870a5a4a06e1f2f6f25691d51bd7cd6c891dee8","regex":"(?i)^https?\\:\\/\\/mangningsu\\.top(?:\\:(?:80|443))?[\\/\\\\]+pts(?:\\?|$)"},{"hash":"1fee14610152571be518d25a8ea51ffca63de06549bfde4e499c0a7932795e59","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.ca(?:\\:(?:80|443))?"},{"hash":"7420d1e3e5e2bbe5d1d125f40da3d97075c69c189d55eb1ad68af9b4c29abe75","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"5656827ab713e1d0399b219956c9ec6fc0fc52424c326350a79dbfc0314623ff","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"84de52d6fd2c4dbc02da1ec5437349f88d91975557b4616fa4de883f371f66ef","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0fa3805734720ad80eed4ee56c38502bd6a60b8503eb15b2c0234a44ec8177a8","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"eab9fe356a06c3c622a5988b0644785c46ba5eefbf693cc758169032fecdc2cc","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"f9035d2881816d5082b00bd9f9f236f459981241d4c5983ab286d45c3da98ec0","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"cafd282143ffd3ae09c2165e460cbfbc515fca6411e5aa3aa9689e3fda998a29","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"3188b27ab44d55141148acdf5473afbd6cc06c055466a960970fe73f1a18e9da","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"270c2a73aabd5c41a59ed6bf78471f4e27209de693fd5909d0b7372cb9cc3796","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.mx(?:\\:(?:80|443))?"},{"hash":"9f72cb92a1ce87dbde1df5368e83bed2d9091b9a5112952c888223783ca6d915","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"c27e2b210c1da822e758e3b1e40342e630ac17454c10b8034b024634fdc024d0","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"15b45385279f88b17436ab3429efd0a1380794cd7638204196883c8c432feac9","regex":"(?i)^https?\\:\\/\\/abccbv\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"552c1208e2dae4a295b6e18dd612855cfe2d9ddbc77d0c6896dbf16c17061f1f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+glft[\\/\\\\]+77182(?:\\?|$)"},{"hash":"2cb21d4c7a31169c98d2177f1bca0565dedabea09c778c2d96aa84e9ae2eaa71","regex":"."},{"hash":"94585db4198ade89b6a9bd49aedcdb4c4dfddc09b9d73b28512b477a158349dc","regex":"."},{"hash":"b32899b34c64ac10eb2181cc89fc4e4fb2f2950dccf66f3811c3298b080730f7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1cfec51683cbd4237343d07c4979eb9925673158bda75cc0d5e9db6449fd1997","regex":"(?i)^https?\\:\\/\\/pub\\-2714b8b6683443cf807ad29f3d9c5a04\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"030f562fa7d1a412a5f6b3291a5bac46e67afb1ecd27194c16df39caa4154128","regex":"."},{"hash":"86aad265ba4133fb15defc34d6774f3adb9189b73bbad7565e7b69fa0ed0e6cb","regex":"."},{"hash":"47be1bd91f833f4d689fa0801cab3daab5e48d5aba4217cc0504121134553bdb","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywuu\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c7d1db0877f340bca816cd72f386083a72e12463e95a2f0eb6ee0a1f163ab415","regex":"."},{"hash":"907e09b1e6a6b012d04b75cd5bd67e47e078a4010676b3ee17e49ae2d9b00a58","regex":"."},{"hash":"4d93a511b4ebc1193b606dc811b15940c1c154d4d4a22a22f05003a55ef14250","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3e422aed97a31fa49f7de58b33a4926f173a6b5a0042ecb6d3d9d33b38264628","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"f5781a9a804cebd4bd314fd40a9810e91dfce19c59ef48a53e574e0bd85f3c22","regex":"(?i)^https?\\:\\/\\/informed\\.deliverysel\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"18aa4a6f353136084233b66bdb5097780952ae2446991642911317b04896c9be","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.ae(?:\\:(?:80|443))?"},{"hash":"0c6e0e7ee11bb135f4572d7fb1de375176e7ba6561ed41a07ea5bec2acc6b8ff","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"903dfeb5a66f859f8e5a6edd36447d649b9339d35cca12091d9e4ca59ba1e6e8","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"1e6a777ed65812768d0d7d606b20021a9ec3486e9965ac8f98ed24d1bdb9c8e1","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"1924adc0cf5a666fbe9ff1ff6f567f233843ed1082f1250effcc02cf659ac6ec","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"c20fba9948b07111ecd8d0416fa70187bcc5e6caa248e9fcf0820ab24507094e","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"a93c5d7da392f30ba43d71e3148ca45c90df9e8b7fdf096db214ce396c269b44","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"b7d4629ed5a1c9ad39c83c2e9a548c52e07fb66ed3cda5aee9afe93dc5225549","regex":"(?i)^https?\\:\\/\\/pub\\-ac9c422ce85c4c6e879cb42b153593a7\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"1145107c4a7292f670d66682418cb9364c096c0480e9410162062822c622e1ff","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"8cbb133840e9998a32261c857d0c1aedae8afa66cb15963a3b2474ab63ac723b","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"f6d484ea32d2c3469f59c21c5eddde42d1556be1e36ed353989169acc84a50fc","regex":"(?i)^https?\\:\\/\\/hotpotheavena\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"c1a34632d76e7bea438a177bb870a5a4a06e1f2f6f25691d51bd7cd6c891dee8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pts(?:[\\/\\\\]+|\\?|$)"},{"hash":"47be1bd91f833f4d689fa0801cab3daab5e48d5aba4217cc0504121134553bdb","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"54dc5348094ff8b56bd5207b7465d69fffb05505eb9962e4396d2ff4d868b4b4","regex":"."},{"hash":"9e0bd0345ac2863e41eb412d93637bbcea7c4473b4aab31e51cb0cadfc14b280","regex":"(?i)^https?\\:\\/\\/www\\.homeflskaesa1\\.duckdns\\.org(?:\\:(?:80|443))?"},{"hash":"3fa8d929273f6d712cc60992dd0355bb100c8309ec23b1e55984a439abfe3d45","regex":"."},{"hash":"9769129a4f56372f31765b01fed1491536fb06cf089870cd7d1f49d0d26bd71f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2fc390946881e2490f41a1167ac3a44f79273c0def1d0a4d572948e8d2f67495","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+WhNdGbwTlInkDenUh6eF\\.html(?:\\?|$)"},{"hash":"2c2118b6d5e608c3c7fd2380e7ce34cb2b55667189aac4eeb5e80697a4baa629","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codeeng\\.php(?:\\?|$)"},{"hash":"2cd4e1970cea799afd15fd0c336b9288b5e1d0ae9f3f6821827f5b0a30b427ba","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"2e954ebb56c60a1027d1a6b4e15eb75807085f76b80cbdf25888807d87002102","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vrcfdmr(?:[\\/\\\\]+|\\?|$)"},{"hash":"c9aff1caab369875e9d6f9d1fe92c03c16ce7bf24b1ea0cbd1281a3f978bf014","regex":"."},{"hash":"c3d833e3d0f78edacd46f91d349fe2c95aafa50d6f74c4a70bee4d2be20b8bf7","regex":"."},{"hash":"88b54b5ac3926f252aa8463f6e7ca536bdc2dc9bb8f69dcf512e82ff8a1d9696","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"191fe1fa0aefe38c0c894d5a8ad442db4228621a42edc06a47723bf3c87aff3f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"2182c3d413956845c13e03afa97ab0f5abe267b5ab3c586aefd41e2796c6f319","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c3d59abe9c421017d808ff8c98b3644f1b7939b7608328f6c7d16b5aa1f23089","regex":"."},{"hash":"344084dd97901eef5cfce27261a6ae3914f36e3dd5b67bf1fa09415338eb2c4b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+infospage\\.php(?:\\?|$)"},{"hash":"344084dd97901eef5cfce27261a6ae3914f36e3dd5b67bf1fa09415338eb2c4b","regex":"."},{"hash":"8f43239f98af3fdefb24880d52bec17e738b81033b06f435926753eaff04537d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+109235\\-92bfb0[\\/\\\\]+checkouts[\\/\\\\]+92bfb067df39d990b8a413d40df19dad\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_1\\&utm_mode\\=skip_if_exists\\&task_id\\=142598053\\&task_auth\\=662325befe6cdc5a5cde2fd8694815bd$"},{"hash":"8f43239f98af3fdefb24880d52bec17e738b81033b06f435926753eaff04537d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_1\\&utm_mode\\=skip_if_exists\\&task_id\\=142598053\\&task_auth\\=662325befe6cdc5a5cde2fd8694815bd\\&id\\=142598053\\&ignore_redirect\\=1\\&key\\=676c693fed91e79beeaeb56195354e3f\\&url\\=aHR0cHM6Ly93d3cubGlkbDIwMjVwYXJrc2lkZS5zaG9wLzEwOTIzNS05MmJmYjAvY2hlY2tvdXRzLzkyYmZiMDY3ZGYzOWQ5OTBiOGE0MTNkNDBkZjE5ZGFkP3V0bV9zb3VyY2U9ZXZlbnRfbmV3c2xldHRlciZ1dG1fbWVkaXVtPWNhcnRzX3JlY292ZXJ5XzEmdXRtX21vZGU9c2tpcF9pZl9leGlzdHMmdGFza19pZD0xNDI1OTgwNTMmdGFza19hdXRoPTY2MjMyNWJlZmU2Y2RjNWE1Y2RlMmZkODY5NDgxNWJk$"},{"hash":"84d841412d435dd09257245bea37caed8e23de384860658341be114dcb883199","regex":"."},{"hash":"2c2118b6d5e608c3c7fd2380e7ce34cb2b55667189aac4eeb5e80697a4baa629","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code\\.php(?:\\?|$)"},{"hash":"20bfcec5377fa21e66d754746f03d729be943a1d600441369687054f51e0a6d7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"35117d2f50ec3e2c271f139a87d61ba54203ec8285358b1f87eb0a07f72eb1fa","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ctv9fad3kl6c73dc5b10$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3aeb85c715cc69c70903dd311ec93a1758a09c903db6c26aa7a66d9cc6cd3a6a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1145819ea08c8dcb6353c71dee24e8d38585a07ca633abfe93a9b81f86f6d96f","regex":"(?i)^https?\\:\\/\\/ashutosh64822\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"4332e31395f0076340b31de4b57795d90d3ca204db8e977b90ab80ae06316d62","regex":"(?i)^https?\\:\\/\\/bossniz8800\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"1d02457cd6bf6ef656ade95ef5992298f6a8424c8d9b4cec21c2da694a5ebee5","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0e7ed6116f3f1d6d32e708e25430303c5c267480a6e8d6af814316db79b397a5","regex":"(?i)^https?\\:\\/\\/click\\-here\\-cumm\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"b71649bb642f034481031a125d0946792cf446e41aa8193c6e07f4b28a277e35","regex":"."},{"hash":"7735ceed8e04d00e7687732d62748a0bbb7deb77e3a8bd7475b9fe33332fe748","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f5781a9a804cebd4bd314fd40a9810e91dfce19c59ef48a53e574e0bd85f3c22","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"29ad21f6eb0f170c03026b2df1387ccf1299eee6c08d2cd04ec83d3497ac1087","regex":"."},{"hash":"0340a7a3cfbb4b88ee798b753e44024999210a9166614343c9b67764153848c6","regex":"."},{"hash":"750a6d4f3fc63664c3d667b7dda6483bf917c355d28b1e816a536975a63cd227","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+found[\\/\\\\]+ics(?:\\?|$)"},{"hash":"750a6d4f3fc63664c3d667b7dda6483bf917c355d28b1e816a536975a63cd227","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+found[\\/\\\\]+ics[\\/\\\\]+NL[\\/\\\\]+infos\\.html(?:\\?|$)"},{"hash":"c5a78dbf76921bfb308b61027def1961b7cbd4675fdc9571c3471fe6780b4454","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service"},{"hash":"750a6d4f3fc63664c3d667b7dda6483bf917c355d28b1e816a536975a63cd227","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+found(?:\\?|$)"},{"hash":"257c1d24629459150b1a7661f0972fb0d48622ed43f45c79083a962597a7dc66","regex":"(?i)^https?\\:\\/\\/joj\\-kelvin6\\.tumblr\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"af3d50d39f1fe73b10281f0904a543bfd4fc73622e9b32c0595e05e0503dac3d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files[\\/\\\\]+default\\.php\\?user\\=true$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7dd6d02ed10365e38cc6eefd042d30f7705e46cf643e4389e2284a3e775a55e4","regex":"."},{"hash":"2ddaabc819cdd895035f3be8f7b9a34c90b64baa8b0a4afe53fb2f81b517737a","regex":"."},{"hash":"2c2118b6d5e608c3c7fd2380e7ce34cb2b55667189aac4eeb5e80697a4baa629","regex":"(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?buysbtc\\.cc(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code[\\w\\-\\.=%]+"},{"hash":"af3d50d39f1fe73b10281f0904a543bfd4fc73622e9b32c0595e05e0503dac3d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files"},{"hash":"af3d50d39f1fe73b10281f0904a543bfd4fc73622e9b32c0595e05e0503dac3d","regex":"."},{"hash":"2c2118b6d5e608c3c7fd2380e7ce34cb2b55667189aac4eeb5e80697a4baa629","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+samsung_code\\.php"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"603d9d66d7510ad5fc767f158bfc7b22625720ab75f76b8a29747e247682cc08","regex":"."},{"hash":"676ad00f3d70129b867b24d8cad62a863a20e82acaf1ef930342374f148950bc","regex":"."},{"hash":"35be1aad3cf37e5d9c724aef68f43b6d3e99f3d714454135dfd2a3555cae81ff","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"57a2b89f554d3849b42358a7502d07fed65b05a0404ed186dbb52c42570b3f69","regex":"."},{"hash":"f68a2c3ba6cec27e2afb29cb143bf39869e01571b6bd8d16853aed6a5018158a","regex":"."},{"hash":"7e961c72d74de6e369bffecad06afeda1d214fd32388c2f9da29b1cce3e5b900","regex":"."},{"hash":"5ea19dd523fe1a1e3e5dab9e51a6e79f3efa3ac9388d242bb32c52848d994ff5","regex":"(?i)^https?\\:\\/\\/detecthub\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c7f2b7f2abbe8a58f8ea4495fd626dcff416e032d9f0afe758730b4d4235409f","regex":"(?i)^https?\\:\\/\\/bestlink\\.qpon(?:\\:(?:80|443))?[\\/\\\\]+39d6(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c58ed3b88e3390b7f9b428f0559023f4f37b813be3ae6c2edca56d0a463d0e5d","regex":"."},{"hash":"e0dfe4ba85fd9dcb5d7b8e7982a66fc60afaffd2bf1e544432d3e07ac1fb1f27","regex":"."},{"hash":"0a87afc3e80330f5213e312b532a5a4d10686a51115f4ac845fb18b55ee7730e","regex":"."},{"hash":"9ded0fa48292926c383bff429e7d7938c81f394d64014d91c4a612ed3f59b724","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdd33258a80c1627285bf31e40805557(?:\\?|$)"},{"hash":"499df616476579919131308bf41604ba0dfcc55c65c4638325095ad788776277","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f41d30e13ba3420afec209c9b7879206a9b3792502a124c0b6c3f3afd6cc39aa","regex":"(?i)^https?\\:\\/\\/coinbase\\-verification0908\\.40\\-90\\-196\\-108\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"0927b9f611b6ad6a6181328d7f29018355a9a182a0c736975f5c8ae5a89692bf","regex":"."},{"hash":"e9b826354b363aa6bf48e0211406b720dd95549c2970c13c472d154482443539","regex":"."},{"hash":"d4070e09bba12dced53e556cc2299e86a8abc7de9d434494ff243cd0bd3fe7ce","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"f4cea6aabb3052026af15337cb6c8cfe7a98f99c8eb811853cbdb57ede4e2c6e","regex":"."},{"hash":"97cac0eea3bbce07469fe8e98b4c86b3eca37cb1541e3bf11fa1e8fadd099582","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"8105db15b933daa4b1789a9882bf2a48f6e127eb0b0c86c35b771cb48d1a4cfa","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"5b9061bc36df996925c21dbc00ceb583c2e9e95e24a73a1147b597cfc2da63b1","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1d39baa3a1764f37ea26ab3e43b4750843794b77a910e5f4b432f4eece50d5ed","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"82a83d345ef00061e09b390d59d1ab6548e7a5404fd654469f15c08aa604ae1c","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"377e85fbdb364e3b2ef16b9c4faad01248746b6abbdf86ddb74f0d0f0413df88","regex":"."},{"hash":"03d3c1775df2d93d60fb6bc3ad74dda25227ab809f691d60b5999c895233a5bc","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"b01d66e34fc4fd6f20ba033c38279b0ae177ba62834f801e6c9a06500ba62063","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.si(?:\\:(?:80|443))?"},{"hash":"e95c8d2d038992bc12393e7d4a371c6f48ccf8d43db852c6bd1451712ba3f1ea","regex":"(?i)^https?\\:\\/\\/video876523845678234587234\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"8c7e318060229d36b112f04cbdc474d4f430267c95f4e87e99e53e1be4000777","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+if[\\/\\\\]+trustio[\\/\\\\]+clients[\\/\\\\]+oqzLth\\.php\\?verification$"},{"hash":"8c7e318060229d36b112f04cbdc474d4f430267c95f4e87e99e53e1be4000777","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+if[\\/\\\\]+trustio[\\/\\\\]+index\\.php\\?redirection\\=words12$"},{"hash":"dd739825218812a6b354f780f8d04410ec75b75d082fbcdf994f144e2cf183a6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1736354491[\\/\\\\]+solicitar[\\/\\\\]+prestamo[\\/\\\\]+efectivo[\\/\\\\]+inicio(?:\\?|$)"},{"hash":"7d0d752e1ff2c74360b2c7d5be6642873bd8f0efdb7dafa9eeba9e94aaf0d998","regex":"."},{"hash":"9ded0fa48292926c383bff429e7d7938c81f394d64014d91c4a612ed3f59b724","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2aec2051ea70ed1476fac5c7c4565dc3(?:\\?|$)"},{"hash":"dd739825218812a6b354f780f8d04410ec75b75d082fbcdf994f144e2cf183a6","regex":"."},{"hash":"c216baf78c4c14470b9de0c208e790accef7209c0009f045a810df775c98d15f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9ded0fa48292926c383bff429e7d7938c81f394d64014d91c4a612ed3f59b724","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"21319b474ce790736d86705b9150e93d011d1488fe296e4187adb8df6f8c28a6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+gbotiaromo(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c0f53192d24fe4beb8602da91ffe5cb5c3f1ad4882a4b8b1e4d6c6140848dc2f","regex":"(?i)^https?\\:\\/\\/fggds\\.top(?:\\:(?:80|443))?[\\/\\\\]+EVGO(?:\\?|$)"},{"hash":"ce90fc134027a5e218dcc0ae5e32a5e87df42014d6893898fa52f91577a72cb0","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"88032084a429e227ae77588a0f0cc8b35448acd5c725dc52acbc7d91a32db20d","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"7b2523b285db2d3102f38d0e093cf0cfc8eca7e1fad0c4fb64ebba5f6cfb91dc","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"fb2f90b83c99357633e8bb5077e3cf6e4cc49369d4357051b7dcaa2844768133","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"df4ddda74ff1d77a3e0d7f7d02ac7c9b283d7477b3abb8e30015ed3c30e99ac5","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"5406a600f2236d614835d91873960793ebc68651cc7d8df9b3f565080ba52823","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"660fc56b273e66c2eab70040964f4eaacb10930813f407d41c1382289bc8222a","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"67238c33b9449e0e88afa8a782812ce993cab618c71b43a2e39eb5117a3a7214","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"9d5819d64dee09169d7cc4ba6c9495d8e61773856ee4719ab53663cf7afefb06","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"974e8a54a1c2e974b96bf803a727a2602be429c424ea20c781cee4d36e816efd","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"8858b91052a645f339b635bb39052fbd443f8eddaf28aaea8b5529a6f7c57816","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"1dc687666d6810129a96771c9bb75a3572de1162ea234b80bbb24792af5608cd","regex":"(?i)^https?\\:\\/\\/video89345298345728934589666\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b3739dc6e874765d8ae0ffd328b847b08e223ec48d3b3766b07d57d5d6715429","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.google\\.at\\%2Furl\\%3Fsa\\=\\=2MS9\\-FMRB9H\\-LWG0\\%26sa\\=t\\%26url\\=amp\\%2Fthebeyoulife\\.net\\%2F\\%2Fthebeyoulife\\%2Fii\\%2F2MS9\\-FMRB9H\\-LWG0\\%2FcGRoQG9yZ2FuaS5iZQ\\=\\=[\\/\\\\]+1[\\/\\\\]+0101019446783659\\-6766a643\\-b9aa\\-4008\\-9de3\\-e98d7ca29f9d\\-000000[\\/\\\\]+gVArbM1DfO5N4RgU5Nw7VdvSvhM\\=409(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6ad51af530acb2d75b44d60d291b1ff915b1e8f1ea854e926e236db5af84eb9b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b3739dc6e874765d8ae0ffd328b847b08e223ec48d3b3766b07d57d5d6715429","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.google\\.at\\%2Furl\\%3Fsa\\=\\=3EY5\\-XPCP4M\\-IIL5\\%26sa\\=t\\%26url\\=amp\\%2Fthebeyoulife\\.net\\%2F\\%2Fthebeyoulife\\%2Fii\\%2F3EY5\\-XPCP4M\\-IIL5\\%2FamJheGVuZGFsZUBzYWludC1taWNoYWVscy5sYW5jcy5zY2gudWs\\=[\\/\\\\]+1[\\/\\\\]+010101944673af5a\\-fb2f5931\\-7218\\-4c87\\-a8cd\\-3df5ebe35217\\-000000[\\/\\\\]+byMnJlGkiJ_gjJq7oNely5wjOLE\\=409(?:\\?|$)"},{"hash":"b3739dc6e874765d8ae0ffd328b847b08e223ec48d3b3766b07d57d5d6715429","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+www\\.google\\.at[\\/\\\\]+url\\?sa\\=\\=3EY5\\-XPCP4M\\-IIL5\\&sa\\=t\\&url\\=amp[\\/\\\\]+thebeyoulife\\.net[\\/\\\\]+thebeyoulife[\\/\\\\]+ii[\\/\\\\]+3EY5\\-XPCP4M\\-IIL5[\\/\\\\]+amJheGVuZGFsZUBzYWludC1taWNoYWVscy5sYW5jcy5zY2gudWs\\=[\\/\\\\]+1[\\/\\\\]+010101944673af5a\\-fb2f5931\\-7218\\-4c87\\-a8cd\\-3df5ebe35217\\-000000[\\/\\\\]+byMnJlGkiJ_gjJq7oNely5wjOLE\\=409$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f92185104319bf420a6016b023e2ed2355d8cb7d0c3a7f0e8899ad61fa53b3fa","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"72d1e8d9258b1ec7910ecfa1445668ee7045b93c35768d69dcb6503b535ee597","regex":"(?i)^https?\\:\\/\\/homeattemail\\-5007480\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"3f6e9c337944acf1f01947a2f987074f4accb7c041559ec90c9beb2c25c927e7","regex":"."},{"hash":"9686840a7db2706c765967b0f2f4d486012c7c6f57b1129279d67be41a22468c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9023[\\/\\\\]+entry[\\/\\\\]+register62899(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9686840a7db2706c765967b0f2f4d486012c7c6f57b1129279d67be41a22468c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9023[\\/\\\\]+entry[\\/\\\\]+register62899(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"392234e5e796696fa6efbf0bc07642c557531cafca77573197cf7ec116355b9d","regex":"."},{"hash":"7dd7424841ba1d599a493091d102dfd851fde40906221b19084800beb0e71389","regex":"."},{"hash":"c39004dccc0ecd2465d1dfce61e069b4db9464725ca022d3535c512e3c4e67a3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0e8cd7798e0411f09c0b7d9b9e738f65e83d78416264b13178f731fcbeecc992","regex":"(?i)^https?\\:\\/\\/cioniobisasedcins876\\.azurewebsites\\.net(?:\\:(?:80|443))?"},{"hash":"b2c5c277e4840aa8620d446a1b0935a00b0bf9b9a2fe79725b370105f669505d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+webapps[\\/\\\\]+home[\\/\\\\]+signin\\.php"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"da735a07a16d45e87dc147ccd76326a32b9482f97d835e455c25dd0e100a43cf","regex":"(?i)^https?\\:\\/\\/pub\\-f9f549be93fe451ca3182cfbd208a50c\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"e07a8149c981da5e659d8ae9f00670630eecaaecb7003237cef12c18d294fd94","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+hamaneugleu[\\/\\\\]+pages[\\/\\\\]+region\\.php\\?lca$"},{"hash":"e07a8149c981da5e659d8ae9f00670630eecaaecb7003237cef12c18d294fd94","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+hamaneugleu(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"561bbbcb148d8500603f77aeb11798bfc05c72e545a6a451422760a1b444947f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mq0f05sld48l\\.html(?:\\?|$)"},{"hash":"c71272df33e09250d7be2f99468d78221aa20cd495e812f68f8b311f75d50a48","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+main[\\/\\\\]+login"},{"hash":"c71272df33e09250d7be2f99468d78221aa20cd495e812f68f8b311f75d50a48","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"fa725f40b3f4780880c7993ff9e445c3f48c7764eb597232194ce39e5d3514e6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dist(?:[\\/\\\\]+|\\?|$)"},{"hash":"fa725f40b3f4780880c7993ff9e445c3f48c7764eb597232194ce39e5d3514e6","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"578c8735af7ef3a4911e098bb911b14171a4d620d5d4215c1e2f9c01bb891bed","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tcl\\.tltyv(?:\\?|$)"},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwi9jJzgs\\-OKAxUCdH8AHfmRCOsYABAAGgJvYQ\\&ae\\=2\\&aspm\\=1\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIvYyc4LPjigMVAnR_AB35kQjrEAMYASAAEgIJZfD_BwE\\&sig\\=AOD64_1YDRyzBc2esaj7IKOSQjDGNy9TNA\\&q\\&nis\\=4\\&adurl$"},{"hash":"f951ed3ba8ae07a6430a030fbd3b5302203668e6acd7fdfd7c2d049dcfb37cf2","regex":"."},{"hash":"2bfc13459166a09bca754b4ea8a2eaa3b25b073d43a3119e36808a5235e1dcbd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwi9jJzgs\\-OKAxUCdH8AHfmRCOsYABAAGgJvYQ\\&ae\\=2\\&aspm\\=1\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIvYyc4LPjigMVAnR_AB35kQjrEAMYASAAEgIJZfD_BwE\\&sig\\=AOD64_1YDRyzBc2esaj7IKOSQjDGNy9TNA\\&q\\&nis\\=4\\&adurl$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e387d18aacd3e4d7cbcc872bca43b5ed568f38e14f2d9c8c8f6179b0af4132d4","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"040ee008530b6efc3794415f7fabecb8cdd00fd40c1173c14607dffcf8a2c8d5","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"bc83213c17d100f65c599837be2c05390616de637060c20be49579e74e7de19e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"12ac95394fb8a91366d511180d1bfd8f47d7ee194828ae81dd984c8b866afc3c","regex":"."},{"hash":"ea83b6a414f78a716999aa3cbd1a4acb71324c84fff7de92e5687cc877538b9a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"6f495af95b8830dd9b9b47e00c1423fd5f479aa59d2dce1fc4464032ba7b1944","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wc[\\/\\\\]+default\\.php\\?user\\=true$"},{"hash":"6f495af95b8830dd9b9b47e00c1423fd5f479aa59d2dce1fc4464032ba7b1944","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wc"},{"hash":"f04b648df845660f84a20d875f7a78372c72d8b2af3d605026b595bee842ff98","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydvgakv\\%3Dbhawddn\\%40hsss\\%3Dn\\%40v(?:\\?|$)"},{"hash":"6f495af95b8830dd9b9b47e00c1423fd5f479aa59d2dce1fc4464032ba7b1944","regex":"."},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"6d166fa89b93258b2ad5ad47d14c43f518ecaf99d2d0532a7b1976394feec8c2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwi9jJzgs\\-OKAxUCdH8AHfmRCOsYABAAGgJvYQ\\&ae\\=2\\&aspm\\=1\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIvYyc4LPjigMVAnR_AB35kQjrEAMYASAAEgIJZfD_BwE\\&sig\\=AOD64_1YDRyzBc2esaj7IKOSQjDGNy9TNA\\&q\\&nis\\=4\\&adurl$"},{"hash":"2bfc13459166a09bca754b4ea8a2eaa3b25b073d43a3119e36808a5235e1dcbd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"d02e2f2ae8a5abc5fb3ee37bca281eb922a7f2ce1d21a203bfe5b5daaf06253e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)"},{"hash":"9d34d321e4e6bf16de003c2b4b3c20e73ed87e08bf8be58bd1d30823c3b4dd94","regex":"(?i)^https?\\:\\/\\/sljfwpqzro\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6ae3c5c956dfc35eda97e4657bb63698155d2a0a516ab005ea5aa7c506d81e36","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"c038e80c2ac0f64cbff783ab72b2ceed7be85cd02e905fb80659c2232e452fd0","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.cl(?:\\:(?:80|443))?"},{"hash":"904bf5128e1be4570197c803837876ea2d800e748531dc2012a7a281e1f3959e","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"d0166b75c7cfd3f5a0adfe3aa8991c47e3606bacbc496a282c96ef4f098ac428","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"5e9fc64dabe4ee014207b14e39ec73ec90df2fbf7da1b655469a240e2d66c72b","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"bc825ead211e292239d19681cf4eb857b20aa3ef40224d7ced9470416f0dadea","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.dk(?:\\:(?:80|443))?"},{"hash":"7d1d9063d03903bac6ba12d2ad610147d4eac3e351960c3cddb9c1a5f9884b9e","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"6b4599d91ef98f999078a71427a623f5de0fa5fa86347d448b7dbb4aca33cdc9","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.hr(?:\\:(?:80|443))?"},{"hash":"57443e8d672199db0ee32157012d8c3f3751607f213dc72395988121a73d26a0","regex":"(?i)^https?\\:\\/\\/shehehrhruejejeuwjw\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0ce626e0da7c25a66287d791504f430e0ae11629ea15920ef6fbef61a68d9f80","regex":"(?i)^https?\\:\\/\\/www\\.022fangfumu\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"cca65429e22148b943757dacf2fcc90bc2821764475a4fc4308711b37a3b1125","regex":"(?i)^https?\\:\\/\\/022fangfumu\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"b3739dc6e874765d8ae0ffd328b847b08e223ec48d3b3766b07d57d5d6715429","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.google\\.at\\%2Furl\\%3Fsa\\=\\=6ZP9\\-ZVPZ6B\\-UCB1\\%26sa\\=t\\%26url\\=amp\\%2Fthebeyoulife\\.net\\%2F\\%2Fthebeyoulife\\%2Fii\\%2F6ZP9\\-ZVPZ6B\\-UCB1\\%2FZ2VyYXJkLndoaXRlbWFuQGViYnNmbGVldGRjLm9yZy51aw\\=\\=[\\/\\\\]+1[\\/\\\\]+0101019446761e2f\\-b7536af3\\-2856\\-48d0\\-b11b\\-2c6eb1df1cb3\\-000000[\\/\\\\]+yhuRLgHGpgh7ZPzqIgVE9azYouo\\=409(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bd6b77b7d9c79246e89e00c0706705e490bbd293a1b149503a697b14093b9f52","regex":"."},{"hash":"e9b9d509de6257d0a458956bfe1e665187d505cd9451774a5cbd23387ee43f54","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"561bbbcb148d8500603f77aeb11798bfc05c72e545a6a451422760a1b444947f","regex":"."},{"hash":"457a6f573f3bfae05e2599278c7407b834d02463fbbcb25f4875bca728fb17f2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e7ae7c28163f5f00683287e66e4096142f1afd2717462a5625329e2779056e14","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fujomaxa[\\/\\\\]+nehuhojo[\\/\\\\]+dejafo[\\/\\\\]+yoje[\\/\\\\]+voda[\\/\\\\]+index\\.php\\?rpclk\\=aKPHGcamovzrBz58HrdRDL\\%2BVjrzi6JtQ4oebqSzr6LD8FtbIpeupc0baMNX\\%2FC023YDMk7\\%2BEbXAPkslYr84o2WS7GIp404i3IjO\\%2FKDzHCwTz0BWPUPOIjGq1FrXlBEopbtu3UmBeLOoHmEX6Y0Ed8xbnoIKO46SqNMu5oT4z71Tm3ZnKApkv\\%2B7lJhzIhfYJxEWcsZKUnVakeeU4Z76aUvnrm9Iufv5j2JYh\\%2FOQ59s8M9kbw3l4xX1VAl2dwf9KnlIsAh5DqhWTIF\\%2BIVeQsYedeZ4HMMtM62r6\\%2FHRX\\%2BV35cbR2qMscahqdyfaGbb\\%2Bca1intIR5c97P8gfpBHyfbTbmbCMhMKnOfc7b3HSA2wJ6OnxNY4DsiEdwlSJU9KcJYfc0MeT\\%2FcLMQjqSSMysRCVgbBOkPjVvZiyh3YWEBZtAngupYM\\%2FwASuSKX5hRa1K6gAEYd1PgKo\\%2Bs\\%2F0LagiucrSrG3PTib\\%2FUOXyws4O8mzHVXhTpY8\\%2FrUZQJGQzDSoH0oYlAOupuyS\\%2B1jq7i\\%2FZu0ob\\%2BX6OQHF\\%2BdRdFZSivrFCxOVuNvc544BDaV2b3\\%2BiXgzejfYRLExWSgiQ5iYKhIh0LgNAZ10ilOjaSNw288OiReoltEurnnp8F3GxaUFlKv75uG7Fj4tuuvV\\%2BKY2IVMJxAOjGAG\\%2Bk5XO05Ca\\%2BeQx5H7hMw86bZcaM7NvD\\%2BJq0EEydqLYwdp5MvcoVEoP91bOYQEHxoWZrbcOu1wgTkDed90u5478hzIqbUc5pWcjz8ptmu7\\%2B0sTuEV0YroNniNfm4Mo6ObE4q7YuxoNwlrstOKxR7SkwZLko5v5DVghi62eNb3VmDQR0ZrZV1VN7v8YuvMw5\\%2BtK4juxLnhc0W1NjFrKhrlQ7UTOHLvkkSbMVj8bxHRszLncn4WMOax76ZQuFOmoOChKB\\%2B9u3\\%2F0oYB0lsuH2EPKmAh1uggeHpl7rVgBTm4aHCUTw1qUCYSLWf4jbQDi\\%2FPTpwat34L0hw7GnJfGRF\\%2B6OjTtpge8wJBFzB8PL7m3qDBy1363toJiyJ1M1yVHyBQbjrsXj2nQ\\%2B7cg0s0tFHv9m2Ca2aK31oFqgWqTMtNfoARbUuEVphXQ6NRs\\%2F\\%2FTmbjSJxjnNUb\\%2Ba7QQNCLDcIc29CnUaYMArKiMA6s8RtyNr036gQ6iaPnXWOdi9Vc6uJxoy4F7It80ENDlA4NSbR3NFnZnKynCAEwP9Ll\\%2BUjejNhr2AffBTpuR\\%2FJuqfSjtsqqAUBvBficxyepz1NbZsE2JdL6hSD6mrt72Qk31FuUjGTjvkVYkfukC\\%2FBEH\\%2BaFF\\%2FiVGra6Jf1mOf9aS55d8LpyTLsAptE5M\\%2BCN6Imfs9FZV3vATDhUYXjKfodBUTZjg\\%2BO5KgJqHznXkL6iyuB\\%2Fzi9ja5gjls8WY5kcqWY6nw0gcjltY5\\%2FFern\\%2B3Mou1JDwaDB69c\\%2BLSLI9HgngWa0\\%2BpF5EXYoepIhDQR2o9zqCgfAh2LLIjKJvLQFQEv2OzaWwIBS1jwmFcaXWmm3DNjO5Y8mFBMlnHQi9\\%2FuV59kIFJ0ZDtuWrxOcRwIfa\\%2BAJa99W4YQguFyE4ZiX6OCzIpOvmjyyL3Ai29cvhqOUQM\\%2BB\\%2BqpEhrgyGgmmBbjCo3q6OVkCSTkzBL4R5Btrc4kXWZscETrv\\%2F502k7nKYrKiIYaNUxt9HuX8UQb8A3c3gU\\%2BlPF8ZByVWYpfv\\%3A\\%3Ab471454be8f717c9d779373f779a7344\\&p\\=ArvvxFXeOI6UQBJ1mGtJj\\%2F4\\%3D\\%3A\\%3A11aa850d388914810f0482e222b6280d$"},{"hash":"a4ba47bd256db9d478a5d4133d98d54d8332efb75ee563594d1fb7a935090929","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiuhILIs\\-OKAxVrp4MHHdxZD9IYABABGgJlZg\\&co\\=1\\&gclid\\=EAIaIQobChMIroSCyLPjigMVa6eDBx3cWQ_SEAMYASAAEgK3e_D_BwE\\&sig\\=AOD64_3QY2\\-isRmwg0r4vbSBrRHQVBR\\-Vw\\&q\\&adurl$"},{"hash":"caf317a3f2e8d6a1d21243fdf3c05fd0897b5e4f76c7d51992b9842c60de44d3","regex":"(?i)^https?\\:\\/\\/gtrwds\\.jsgcydgsdbcsyhgrter\\.top(?:\\:(?:80|443))?[\\/\\\\]+far(?:\\?|$)"},{"hash":"75cd8e2eec6d690d65fb1a76a745bc27270399aa163266bdef0fdcac3f54a3bc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codeeng\\.php(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"75cd8e2eec6d690d65fb1a76a745bc27270399aa163266bdef0fdcac3f54a3bc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codesepteng\\.php(?:\\?|$)"},{"hash":"5d831ae7e82986e0d7e765aa13a56b029d01989c855bb0aff8437d368e7f05a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiuhILIs\\-OKAxVrp4MHHdxZD9IYABABGgJlZg\\&co\\=1\\&gclid\\=EAIaIQobChMIroSCyLPjigMVa6eDBx3cWQ_SEAMYASAAEgK3e_D_BwE\\&sig\\=AOD64_3QY2\\-isRmwg0r4vbSBrRHQVBR\\-Vw\\&q\\&adurl$"},{"hash":"75cd8e2eec6d690d65fb1a76a745bc27270399aa163266bdef0fdcac3f54a3bc","regex":"(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?opple\\-support\\.za\\.com(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code[\\w\\-\\.=%]+"},{"hash":"b43ea5edd0e392c5f2669666f45fc19df05bed0d27521e6c474498aec5208a24","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiuhILIs\\-OKAxVrp4MHHdxZD9IYABABGgJlZg\\&co\\=1\\&gclid\\=EAIaIQobChMIroSCyLPjigMVa6eDBx3cWQ_SEAMYASAAEgK3e_D_BwE\\&sig\\=AOD64_3QY2\\-isRmwg0r4vbSBrRHQVBR\\-Vw\\&q\\&adurl$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f0d23257a821cd84f8bc051b26debc92f8c814561d2ed3fd886892ccf7cd5f10","regex":"(?i)^https?\\:\\/\\/solucionderembolsosonline\\-virtual\\-sgr\\-cahyerfeefddc4er\\.canadacentral\\-01\\.azurewebsites\\.net(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"859356de2e812692f5aa8cbf56d5d5a78093ec9c91a8bbb1cd3fa505575526ae","regex":"(?i)^https?\\:\\/\\/www\\.meshopsale\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"25c506770bb8d44842e9d18786bd563085a1716fc7ea5705f91920890fa61f2e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2f126ecc36c06ed46920fc5cd04cf9e2b0224f7d5b743f2b641bb4a8b6a98a8f","regex":"."},{"hash":"c41aa4f2540c39e0289bc1364ceca1ab9670d77d00694152509b0b5f154fc001","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"6d166fa89b93258b2ad5ad47d14c43f518ecaf99d2d0532a7b1976394feec8c2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiuhILIs\\-OKAxVrp4MHHdxZD9IYABABGgJlZg\\&co\\=1\\&gclid\\=EAIaIQobChMIroSCyLPjigMVa6eDBx3cWQ_SEAMYASAAEgK3e_D_BwE\\&sig\\=AOD64_3QY2\\-isRmwg0r4vbSBrRHQVBR\\-Vw\\&q\\&adurl$"},{"hash":"2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+requerimientosbogota\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$"},{"hash":"0fd03639466a5e66388322d3f7926aecec81d3583e212a6390294b189a81d030","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"54067ff4f1913a05de74a8708c451d837b339f947e14b75efd2ca4e6b1e7fc9e","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fir\\?COK\\=6397obhk$"},{"hash":"a61fb1b02628083483240002ec8df501f19aeb4bfb96f035e371ddb969041f0f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"be25b95bcc4294de443c3978968c2decdec614c71580d71842c29db47c280c47","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"ed8ce7c3456c260e36d34e97d2b8c156ba26f59ccca507837dbbdaeb6c93d606","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"be25b95bcc4294de443c3978968c2decdec614c71580d71842c29db47c280c47","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"e9d4933a9453acfe12a6edbbea276cb603888f38548924d4b67ff9a5a8f44cb0","regex":"."},{"hash":"1a48b23d4a494215df23a54bab20448d4d47f04020b66e435558e0b82c648b73","regex":"."},{"hash":"0a07b1bcddfffff1bdd33db76c6145462ef8a4c9d282e24c8cb90c055708d443","regex":"."},{"hash":"ed8ce7c3456c260e36d34e97d2b8c156ba26f59ccca507837dbbdaeb6c93d606","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"5c24ac75d5e4ae18ae4783f7fa2046558a77a7da28f12416f9dcc48163445a40","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"ea83b6a414f78a716999aa3cbd1a4acb71324c84fff7de92e5687cc877538b9a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"54067ff4f1913a05de74a8708c451d837b339f947e14b75efd2ca4e6b1e7fc9e","regex":"(?i)^https?\\:\\/\\/tuofgsg\\.fueiarfwhiue\\.top(?:\\:(?:80|443))?[\\/\\\\]+fir(?:\\?|$)"},{"hash":"ea83b6a414f78a716999aa3cbd1a4acb71324c84fff7de92e5687cc877538b9a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\=\\&nis\\=4\\&adurl\\=$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f42e565d505627208d284688f13c794b5ebb942ec4cbfa9a22e0cfef4bae1745","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"057f5875ee6d56ad87ccfbfe4699528cc1629f79788419ead933d2fa24230e8e","regex":"(?i)^https?\\:\\/\\/kloai09876\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"260e00041a4e193d7e64b643d0c1fa40efe477342d238d70d4fbfe208d694983","regex":"."},{"hash":"4f3561416268a3512e44991c648ff3664f97eaa765951742a310d74502589b8e","regex":"."},{"hash":"2bfc13459166a09bca754b4ea8a2eaa3b25b073d43a3119e36808a5235e1dcbd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"6d166fa89b93258b2ad5ad47d14c43f518ecaf99d2d0532a7b1976394feec8c2","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=l\\&ai\\=DChcSEwiOmd2DsOOKAxUdNQgFHf1ENIIYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMIjpndg7DjigMVHTUIBR39RDSCEAAYAiAAEgLvrvD_BwE\\&sig\\=AOD64_22Lshfuh9d8tcolUquitncITFcNQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"5d831ae7e82986e0d7e765aa13a56b029d01989c855bb0aff8437d368e7f05a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aclk\\?sa\\=L\\&ai\\=DChcSEwjwwMnbtOOKAxUZNwgFHZWsJOcYABAAGgJtZA\\&co\\=1\\&ase\\=2\\&gclid\\=EAIaIQobChMI8MDJ27TjigMVGTcIBR2VrCTnEAMYASAAEgLbyPD_BwE\\&sig\\=AOD64_22FNHq8wugyI1BHPp4Ti\\-g_YdOuQ\\&q\\&nis\\=4\\&adurl$"},{"hash":"13bd2cc1fb1d191ed7eea412a7f1f06ff5d338c655116be585a7f88119f1fc2a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"582cc9eab368cf88b33a5da942861515042f24f287e1576a4714ad0effb38f66","regex":"."},{"hash":"0a229a6ae119769c7cd9898eae94299c01345b06a9751df4394995f6cd27f158","regex":"."},{"hash":"10d68e52712f1aec124d22fc1ad48725160eedfed728bbb838f11f0ea67ffeb0","regex":"."},{"hash":"e638220bfc290db44288c0b8e7ff59dfe1609dc7ac71fa193ed174404f6f8274","regex":"."},{"hash":"31691e1c350bc7ad103bb8632af7efefbddc3a5079cfccd821b02449293107e7","regex":"(?i)^https?\\:\\/\\/ghost0robot\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e7b250a56e0c140871b4ba3199b5353d121f2709d58c61dfe4ceb637cf7740d3","regex":"."},{"hash":"b886883d82f45dff1e3cb1c6a62a68e71b728eb04b34ec6a32d9f595faa92cd5","regex":"."},{"hash":"a19ddb3c7a363e9e073ea707cc77700ec9a30891803a1082eda2f08529ec6aa3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Rxzr(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"389f6937a99b30ade8a7e466357806e1511a83bbf15c73c76bd1f39fdfccd392","regex":"(?i)^https?\\:\\/\\/www\\.40\\-90\\-196\\-108\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"419607805b2a89398b3d7b077f4d599f6554991e59ba96efe86ad6fc8ee3d77f","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dist(?:[\\/\\\\]+|\\?|$)"},{"hash":"419607805b2a89398b3d7b077f4d599f6554991e59ba96efe86ad6fc8ee3d77f","regex":"."},{"hash":"28bbc8a64d8c5b073ff31613ecfb55bdc98ea4e4f622331c5e1c4e98c9ac45a4","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index[\\/\\\\]+index[\\/\\\\]+sy(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"28bbc8a64d8c5b073ff31613ecfb55bdc98ea4e4f622331c5e1c4e98c9ac45a4","regex":"."},{"hash":"ff75f3f4c1bfb9097f790043852c41135046e2d0c3610c0d77ec58be31f313ac","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"681035c8e1bbd4c1c1e5570b804105d79a62340ea375f57e6a646842ec723687","regex":"."},{"hash":"57d2267d1904c3e04e70c2e2778dcdfaa0a978ec01108e4e40c881c22fe06f2a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"900e5417a5a9df53585f5aaafa0b9ae984583402448c8a2c0a630f6b734c9a06","regex":"."},{"hash":"5b153ea4797bd77471540c41b593c02f12234ec71b4cbe391f241db11d1ac9c2","regex":"."},{"hash":"8146eb165011ae07f29c8786d5e12681b5dd4387e5437bfc39c76c5231ea28f5","regex":"."},{"hash":"ae995c82a5c7db18167afa967fa1385612af5f30cc7fb79db5a9acd8570e79aa","regex":"(?i)^https?\\:\\/\\/66kyty\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d14de64a15f14cbc160d8bb7717b5f5e65fe23babbb70bb213799f60588ad31d","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:5763[\\/\\\\]*\\?u\\=https\\:[\\/\\\\]+45565eee\\.com[\\/\\\\]+\\&p\\=[\\/\\\\]+$"},{"hash":"4ae82796d469b0fb1870ddb2fcdb27cfec32a721dec928b461fd17f118bda6b6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)"},{"hash":"1b7cfadcc8a6049879a0989f7d591da9e6cd473dd1d5a848e82f9b5c9bca6f18","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Freurl\\.cc\\%2FyDW1Ll[\\/\\\\]+1[\\/\\\\]+01020194475b514a\\-b9c2befe\\-84fa\\-46b4\\-a2f0\\-2c7ee9fa85fd\\-000000[\\/\\\\]+G1ZQQ4_WPCVLd\\-R8nteuD9l0Y\\-s\\=408(?:\\?|$)"},{"hash":"1b7cfadcc8a6049879a0989f7d591da9e6cd473dd1d5a848e82f9b5c9bca6f18","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Freurl\\.cc\\%2FyDW1Ll[\\/\\\\]+1[\\/\\\\]+010201944767ef99\\-fbedfe23\\-b09e\\-4ec2\\-b536\\-f7733f0546bc\\-000000[\\/\\\\]+cdokR\\-\\-y2rR1e3LlbyA3dC6n6KA\\=408(?:\\?|$)"},{"hash":"c88cb8266ceb1cd9a0c3e4d8f65ef793dbaff1aee347a7d0407a4a056732d5b6","regex":"(?i)^https?\\:\\/\\/scard50\\.ru(?:\\:(?:80|443))?[\\/\\\\]+r(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"498f899f660bc1676abad3a1077ad0d88092a6c7ac4360778c2ed2848300a99b","regex":"."},{"hash":"aeb0787de92b7548f93bbae9cfdebd40d0e637b804ca92f4bb9cb897af61e3de","regex":"(?i)^https?\\:\\/\\/jczmskfywl\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d436eeb549804f6310f2849788bf65662ac3ecc242978ee220f4f1cce5f938cd","regex":"."},{"hash":"f08fbc2244b312afeb2ab0b333c4422141a258ae052ae96bbcf6d1fa515d2e67","regex":"."},{"hash":"46cecbaffce123693033d8977c0aa387725b68a759774e8e956ef58ed7ae26f8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel"},{"hash":"2853538604aefab20975c1100f8c46d097f0084a61e78527eefbf3fd4a85e6f8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+logo\\.svg(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"de9e8dbaa2f76a0f6df2f63b5cca9df1f32ba86ef3de49cf81f8366e7f4bb2e6","regex":"."},{"hash":"e493858a3a45264d567643c7ad9e5d79d0c448493503a0fc7c969deee7614e59","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c3989625248a40ed3926995d21e5db6ec58d6d853c95a4ba3b3bb9dc83648ea9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a660585d9f708fc9fc81271e3507acc0fca9410977ed13c797d59939e089f2cc","regex":"."},{"hash":"d8d5eedb98e8b9ca2ecdfbd95fe65cf8007a9389602b6308d328ac0ad987a3f0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:\\?|$)"},{"hash":"1f48c4b5204aeb2fdc83ce2683ffaedf77c5d55118fdaada85d583117ebfedef","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1a2f5bce9747bca4cffcbdada42e508cffb8d621703a2d4f1f4e8c69dddd7dfc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Lq7NgqWlWymjWiWwtU_HuTj3osBSVNfK7BzRciv66YDBYn8jY1Rdilds33aohvyhuk38MB5kOPqHZ1hiDwCEGQ\\~\\~[\\/\\\\]+78[\\/\\\\]+1024300_9[\\/\\\\]+3691_99018_13606296_0_md(?:\\?|$)"},{"hash":"e3ecb65b7afac0a939c9c7d75703a39d02e359c33d985f0d24e498f3c9f49edc","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a7d08598eb3705c191df69bd802ca764b36815fedf00d284dec51c348b0a7a04","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dcuorg"},{"hash":"8fcfc09a06fc0e2798bb57700ef26ef99b4be3a522fad93e86b9bd0d455f814e","regex":"(?i)^https?\\:\\/\\/xll122624\\.z5\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?"},{"hash":"c74091af6aa9ccbf7dbfc867c0972222a96dc5799a336ff7f34a87fbc5ef6aef","regex":"."},{"hash":"63ad7a147c0fe195173a657421acbffcdf9d6bd97f28a8f1430cece1de54c136","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a7d08598eb3705c191df69bd802ca764b36815fedf00d284dec51c348b0a7a04","regex":"."},{"hash":"de693bdb3f26bf72c896260386e405341406a1deb04926852fe1bfe4f2fa76ae","regex":"(?i)^https?\\:\\/\\/ipv6\\.40\\-90\\-196\\-108\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c4a5a2ad6a4c4ff9a51be4908ea4dbcb256e0c503141908622d0f43f788df5db","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CHASE"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"71d48c1b373c41b20bd788877f0fc90d9769313e0ab8e7e127881c825be3586b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+english\\.html"},{"hash":"d8d5eedb98e8b9ca2ecdfbd95fe65cf8007a9389602b6308d328ac0ad987a3f0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:[\\/\\\\]+|\\?|$)"},{"hash":"71d48c1b373c41b20bd788877f0fc90d9769313e0ab8e7e127881c825be3586b","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+japanese\\.html"},{"hash":"b8b3af4b6d5901645b6188d19ea2f3c0536e1c57ba6cd184c0631c278339b728","regex":"."},{"hash":"c128b156918fad4010ed0949a86f9cce81b02153fafb24fc7e490529d00fd62f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2cd8d13cb389bda90d99ea2f925cbebdeacebc6d74d76d5bbb10ab0be0918c43","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cc4ef15e69d21107f74bcee48f070bbd4c96ccccd0dbe65d977308b4ad44aa1d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f9543d7e2b58342540d41131bf43aaf1095f01098c442ef8bb8e6633e8224e10","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+J2pFttt7\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=3$"},{"hash":"f9543d7e2b58342540d41131bf43aaf1095f01098c442ef8bb8e6633e8224e10","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+J2pFttt7\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=2$"},{"hash":"f9543d7e2b58342540d41131bf43aaf1095f01098c442ef8bb8e6633e8224e10","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+J2pFttt7\\?utm_campaign\\=\\%7B\\%7Bcampaign\\.name\\%7D\\%7D\\&adset_name\\=\\%7B\\%7Badset\\.name\\%7D\\%7D\\&ad_name\\=\\%7B\\%7Bad\\.name\\%7D\\%7D\\&px\\=1246473213320532\\&c\\=5$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d1734e660ba6f53fdbe39176665774e92b17fd47b3e75e626eea9a70880d96b0","regex":"."},{"hash":"b4baf0652ce42693a58cd6efe96f357eeffe4f3847512f28e560b15abb73e193","regex":"."},{"hash":"412db53643cf9402ff063850d459e0e9a1321f5623a9b92471a80a39ead83756","regex":"."},{"hash":"f0e4171215afe981aba26e9a88f3a6e94342c20123aebb17bfd9924146c092d7","regex":"."},{"hash":"6cb580cebf7cb0e8a5cf4119053a4ed741069b31079931a495e1953f53a71709","regex":"."},{"hash":"59ee8de7a221833b82c8a8d38e239a82fb902ea8f1e5c64498e165498517a44c","regex":"."},{"hash":"f9543d7e2b58342540d41131bf43aaf1095f01098c442ef8bb8e6633e8224e10","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+J2pFttt7(?:\\?|$)"},{"hash":"c1a3e23514417ce48bf3db42a5c2620029d32192bbfbf00b2f0fe2156ce4e976","regex":"."},{"hash":"e1bcc82c027eac864bbe08f69aef939c36d0ddb87185a78452d3e9110b0bd0f8","regex":"."},{"hash":"5ea1ae7c6fbed36a4d7e89a2978990dd3a4e18958589f859b870119316578c34","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"249b2c88241dac8b563a33e6a320e943d20617e9a5d409915d5fa9e033c9e271","regex":"."},{"hash":"9f675de551b5e5c5c2aa7768fe1204f4558f3747969a3a9690ceac617293462f","regex":"."},{"hash":"abc8790af8f51275d29f1b8e53d49515b49d648de87fd6aaa35ab0a9a48a46c6","regex":"."},{"hash":"fd44c603dd318098302d666a42c94b7ddbd7c27c395d5ab7f4491c3316802875","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"373137cff4f6508ed4a2bd5dddb413f7c0ea44d9495f17b7048becfe5b0e4c16","regex":"."},{"hash":"beebbfc4dd24f041c362fb49518c1772fbde0cc4835da7f0abba4a8b4c3ff399","regex":"."},{"hash":"2656fd4cd1927e758492ab6377f86f13bc9a405750dc6e4991596fdee62689aa","regex":"(?i)^https?\\:\\/\\/o\\-updatee\\.top(?:\\:(?:80|443))?[\\/\\\\]+uk(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2656fd4cd1927e758492ab6377f86f13bc9a405750dc6e4991596fdee62689aa","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|\\?|$)"},{"hash":"340c65cc81e6e495981f2fbeffa436b3a431b42e1011df3aee1a1b916ca54635","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a320cd37ede073c9fbbc44a13cbda3e0e75d2934fab141d21fe1cb0b8ed1cea1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cs2(?:[\\/\\\\]+|\\?|$)"},{"hash":"00318d314b1ade6e442f4544d115ec61083f69d855157cf89b824b90a4e7ac15","regex":"(?i)^https?\\:\\/\\/attcustomercare365\\.weebly\\.com(?:\\:(?:80|443))?"},{"hash":"a445bc91a69343254aff4c4f0f8bc3f4d37e314882390910ecca55a8dc70d902","regex":"."},{"hash":"52c03f3833c080ab91f29a20bd2a47c77815345fcff4b81a6b5f7f0a108a79c4","regex":"."},{"hash":"a3e32ba59124036844fa30fa35e692a857274b6e14dfa9eeb3a4aca609406acf","regex":"(?i)^https?\\:\\/\\/signin\\-coinbase\\.147\\-93\\-43\\-60\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a320cd37ede073c9fbbc44a13cbda3e0e75d2934fab141d21fe1cb0b8ed1cea1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lpi4mmcat3j4\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1b7cfadcc8a6049879a0989f7d591da9e6cd473dd1d5a848e82f9b5c9bca6f18","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+reurl\\.cc[\\/\\\\]+yDW1Ll[\\/\\\\]+1[\\/\\\\]+01020194476ba5a5\\-783171ef\\-4df8\\-4541\\-9483\\-1e48a479a782\\-000000[\\/\\\\]+1t40xmSayz4VOBctr0to44ac32Y\\=408(?:\\?|$)"},{"hash":"0c7d92baf07737069e4296853d6833cee1a0a3dcf1fd29563e95de8c66816927","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c16a3d45c0b0468d34034290a3c818965c2e87fd736b3463ba840b43317a0527","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+far\\?HRJ\\=2333c9ah$"},{"hash":"a738483f319e0d782bbac756acc5f9b72f5ae11ddbf75343b04cc5cdaa905a3a","regex":"."},{"hash":"750a6d4f3fc63664c3d667b7dda6483bf917c355d28b1e816a536975a63cd227","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+found[\\/\\\\]+ics(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d2624e65f49a7c349799a9f68fd76c424e50d3739a7828cd970aafa60501151f","regex":"."},{"hash":"a66f62b018213ee63d0c92bbc339201629967cd67f1a45090292dd1efb9ecbda","regex":"."},{"hash":"84d4a0df7d86f11c8ea91b509481c281705f88e9bf6c7bb253dd90f4b9a9cac8","regex":"(?i)^https?\\:\\/\\/www\\.noreplyveriificatiionconbaseakk\\.67\\-205\\-169\\-96\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c16a3d45c0b0468d34034290a3c818965c2e87fd736b3463ba840b43317a0527","regex":"(?i)^https?\\:\\/\\/hjuyr\\.udfnvicuvwefd\\.top(?:\\:(?:80|443))?[\\/\\\\]+far(?:\\?|$)"},{"hash":"8b5d3c5a1be79cd5c6496f44ddc4502f40167226b6559e906e3c66c848b18a1c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"11951ca1b3f957230dff3b953612851cd35f84d97d6f047a378a3b8d93412df4","regex":"."},{"hash":"c8f471bfc90f0a863148f7ecadf17007e2dedb0eda84b65597d98c684e8e7fd1","regex":"."},{"hash":"2ce22beed5faa2df84d12ab636cc541e9f1592582844b03e795c8e82a0bf148c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3ccb8a28c3c27ac20993fd27a912b3a6eaa64a966cacb6b89180fe6ab2f657ee","regex":"."},{"hash":"d998b12d54340ad02fe6ab7eab69d426622e7327ce59beec5da85281213cef50","regex":"(?i)^https?\\:\\/\\/bafkreigrtnxkl7p43lptn4ullesgwny7bkjawufbqjg3idr6eca6grg6ju\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0b3aa9a897a7da93fca088192108a6e9a24b4eacace7cdb35b40899c769a5d8a","regex":"."},{"hash":"93a51f403c239141cc5cec48d82aa0b98c1b67db72373c38f2bab7ed5ca2dcd7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"086de92c6193a4514a09a73d8e5c1629b59dbf1fe8246fafb7eb4d1e5befd18c","regex":"(?i)^https?\\:\\/\\/informed\\.deliverywah\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0d28d86aa910614d1d72e12f79cf8ca3c92499329cf56a2129d3259844596e0c","regex":"(?i)^https?\\:\\/\\/tracklfp\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"574f5c13fadfa260fa0014da808bff1eee536877f836a293b1cfd0a62e7376d9","regex":"."},{"hash":"69c0a891507e5f458d414bbda601c05043d8e41e860467c8981950b1dd2ed02f","regex":"."},{"hash":"086de92c6193a4514a09a73d8e5c1629b59dbf1fe8246fafb7eb4d1e5befd18c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"307584507fbd1d599cd54c06a0af0657fc731d0f0c70abea19b229a2a34cefed","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"d8b4ed6f042a607f32d7fed91b9f0652cbb9103316c9ab928b4b94f665559d87","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mark\\.html(?:[\\/\\\\]+|\\?|$)"},{"hash":"2dfd705132705e7111d5229b614a4879e9b39df91571c89392169e4bf16f89a9","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b9fec230f2a9e3cf6c1abc618e11a278131c26c2f96f93b9259309637c562388","regex":"."},{"hash":"2a7a62fb9810d07aa44a20d52eba7b789087f697f0e29fec1f0ca83de396154c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+themes[\\/\\\\]+classic[\\/\\\\]+\\."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"053721a89e8f877690f538301b001f9adda50d8b54dee621afdb239b095ea0f1","regex":"(?i)^https?\\:\\/\\/tracklfn\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"0d28d86aa910614d1d72e12f79cf8ca3c92499329cf56a2129d3259844596e0c","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f49332566190f02a87acf10a92ec461c9eae97b3077d14b27594be24230e1ee8","regex":"."},{"hash":"3c8f033d5bf57d5da9d207f3c5a8ebe5957ca782361129ad69e010a3df2c37c2","regex":"."},{"hash":"7bf4e13fa8cb3468957e194a64c3ba292e463e77e81cd23823144c06e3cd74a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+WhNdGbwTlInkDenUh6eF\\.html(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ae9447751eb3ec6a5c87f6db827511d8a6d22e18d25aa2bb73f405f0ba0e7047","regex":"(?i)^https?\\:\\/\\/sites\\-de\\-rencontres\\-gratuits\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"053721a89e8f877690f538301b001f9adda50d8b54dee621afdb239b095ea0f1","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"96b6325f7a9bb12acd40ef0fd6c6b62ee609ea809061b9ce5a1afc4c807b9039","regex":"."},{"hash":"4392e49df307f7c893d4e8e1f47ae93b432d44119c97a622687f72038d7e9c88","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bf37e4fc3d9cb2dd7df9e43dfd6f28f0820f3210f8284579a2fec59f9a72dac3","regex":"."},{"hash":"b2d920d91903c3b3875bdbfca905250101eb55d9bb514d48cd3f2fa552af4c6c","regex":"."},{"hash":"2a19df2cbc7d50b0f51453d05e271f517e47097d8f84fdccbcd7c7bacd8810dd","regex":"(?i)^https?\\:\\/\\/tracklfc\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"07112312673bc17b64afb620e85d8c1ea84a064cbfb83c776fdae5496a3fea55","regex":"(?i)^https?\\:\\/\\/informed\\.deliverysai\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"775b2a9e8217f6b2c28c842a7817b65cb6df8ccf16324129dfee6dc1a9b5462b","regex":"."},{"hash":"84e1e7a02c66b3c39fe659cd620a3fff6bdce72891cecac96af1df6a0a64934a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2cc6af479ab8ec8fbe74eabf95ae3f9078d39216f4432774f63a7215d9684dcc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"914dc73ec85f15c71549595ce21d208aa8d1b2fc949d365b9c18996b73f00a35","regex":"."},{"hash":"3091330bce89ef92e7e8945fd6e635e3062e2616ee023fdd547a9b4eab93232e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"df150777cec9912e4af1a5f5fee2499ed4ab3234a5b1babf7f92693338996d80","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yeldrhyx(?:[\\/\\\\]+|\\?|$)"},{"hash":"a19d489d52719aaf5a7e3a5ea2383769534d0f9bbaf055a0c498c8168a7a97e0","regex":"."},{"hash":"8a0131ca3391ead550bcea62029ba43d4aba4e11f8014a9a29c59b874406effa","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a7c5670f6dbfd0f5067e7c74162bd7a649e3843599ba912091189b0a80cce9a0","regex":"(?i)^https?\\:\\/\\/informed\\.deliverysak\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"b1c721c9cf16bca7f46ece62d252e9ddf26cacb97ce25b513e65b9bdb65c8cba","regex":"."},{"hash":"bb460481592f8867d3586a78d6e9d6f1cb86b11077b535c9a92e1869849b1ce2","regex":"."},{"hash":"369a6fd67370783a9d1dd69355fd0427fa95e39b4373f7cd0ac50fb51c1256fe","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"04e1e54a3ded70cb7d743239632155667ac6dce986e5612d668aab695313d534","regex":"."},{"hash":"17e5d4b8a12eae97084eb16d87fccc4c980d029cf06a60cc854b5db065019ba5","regex":"."},{"hash":"32ae52866364b7abaa9414d72fe780d509ad081b5d57c38c1091dba0eee41c7b","regex":"(?i)^https?\\:\\/\\/ishant63\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"3c6a772bd508a1b13d394537d9061a9502de5e3cd2f5da286a7b85dc6240f6d2","regex":"."},{"hash":"4a31129ce39e63a6916731ef6278a9d17f38697290d0e96c996335f9bd457670","regex":"(?i)^https?\\:\\/\\/tracklfv\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)"},{"hash":"9b87eacfcb9ae135eeebfe7a16f3de83748124fd14b730c599e216447b48b505","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"756965c6fa688ef29b9af989f73088888ea02b65d1c0b6cb7adf2614ecf587f7","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"ec883e0224b91714b6a5776a66d9a84af3a68c9007cc210cfdb67f03ad9e7917","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"2ec2245c2703fde293bf9062d8389b018642ed3de017af8fd8673f01f3305eda","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"3a04d862e34cc624b03e03b852be577ae774462307aeabc78049635a48196fda","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f720014ec12abf5a625655ad667dc54ed8b2d6f2965bada904bbdfce2b443466","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"34ffe465f62bcc2f5f9247ba4d5b2025a6383a0196b60412acc1bd160b2c4ada","regex":"(?i)^https?\\:\\/\\/dkim\\-antibot\\-office365\\.blogspot\\.sn(?:\\:(?:80|443))?"},{"hash":"5e11777e40c5d94ced79e03aee73ea3e7027eb01618cd7f8643e90064bf59cce","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"eca6883949727ef4957693b5ef3ce0cd82127c325147bea264a2fc3cc63c0453","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"709da50ea0e054008ef1cb6760a57b410fc36282cda80eda59e77665780e332c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"f4ee21917ad97b617c3544eb8851264ce689d0cf12d9d946d80225475698ffef","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bandeja(?:[\\/\\\\]+|\\?|$)"},{"hash":"f4ee21917ad97b617c3544eb8851264ce689d0cf12d9d946d80225475698ffef","regex":"(?i)^https?\\:\\/\\/eneroregistrolbkweb\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"f4ee21917ad97b617c3544eb8851264ce689d0cf12d9d946d80225475698ffef","regex":"(?i)^https?\\:\\/\\/eneroregistrolbkweb\\.click(?:\\:(?:80|443))?[\\/\\\\]*\\?$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a08b148b481cf4d0cdd7e7130085dd3e7213a197dbce0d3d241d1d386d64571e","regex":"."},{"hash":"17cc40b16254d18152745c320b3252da9646ebf6c9664f3ebfcb054e39633185","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"76dd0f0ebd885c792f5eb542310d63940bc7a71a87f387392ddff6f8e8d2787d","regex":"(?i)^https?\\:\\/\\/click\\-here\\-105140\\.weeblysite\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9969dddcd406b61a40a3331eb9194fe6665e96b8e543163b0b42941ca27be57b","regex":"(?i)^https?\\:\\/\\/bafybeicpl5gbguyr4ngu4q23hylykwgvwkosymq7crwdfuean4t2wvtf6q\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"89ba3c9f303f4d00d5961cb0ece7836439e21da72a9ee43cc9cce2fa467e37d8","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2246ad0c842b789fe9cbec119b23cf179cae9744d682297442510d34171d6f3c","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2e8864b867267c3dd3f15f701d627caf6efa1b67cf6d0233529d93232566172e","regex":"."},{"hash":"68b2d1bd88ed6f761b04c5b76d4439ec2ae2bc19d85e3f5df4007064b87137a7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4531990b96604e1d003fe3b342b32df6322157874bae34198a86b48763c83877","regex":"."},{"hash":"672ab8068c65b412fa592772ef2e4b6ea293f6f4357f855862a11cea7119dba4","regex":"."},{"hash":"a01ef1c645033b4a5c747b338bdb9751f7d2bca33e8ce4579a9765523168c495","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2a19df2cbc7d50b0f51453d05e271f517e47097d8f84fdccbcd7c7bacd8810dd","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"4a31129ce39e63a6916731ef6278a9d17f38697290d0e96c996335f9bd457670","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"86c2df98d1296667bc53af9c20391aaa3eb8fb8ad2dd2ad8d3545387cd39a322","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index(?:\\?|$)"},{"hash":"86c2df98d1296667bc53af9c20391aaa3eb8fb8ad2dd2ad8d3545387cd39a322","regex":"."},{"hash":"7d753a53612e353835af2fad7b621e2ccf0558b8ce330c57dbe39a653273cac5","regex":"(?i)^https?\\:\\/\\/pub\\-b0879d66c06e4547a6fe4d002fc9f88e\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"1a2f5bce9747bca4cffcbdada42e508cffb8d621703a2d4f1f4e8c69dddd7dfc","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Wd_0xHiSz54_eBI1GL8TQspfR7MOtG8xLQmPMwHFlEalMcw8\\-XPTCo4Vb\\-aS7NCnqoLMGgYlDbSPTZvp3E5IMQ\\~\\~[\\/\\\\]+26[\\/\\\\]+506170_9[\\/\\\\]+1176_108347_1280406_0_md(?:\\?|$)"},{"hash":"d896794156122285aa265add8e7dde74ebcb2622470ec249a68ed9c4ad4d925d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d81118fc61739e83bda690be4e679aa56b6bfb62929159b75572a91670a28bf3","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0d2850f8f6aa9ba471e4a5a02a9254ad0cf45e4122855dc436fe411d1d23f166","regex":"."},{"hash":"63ad9e3762d9df97426bbcdfb0bce18fa3fd2a840cd1b1ddd4341ae45e5a7813","regex":"."},{"hash":"8286cd827b189a675fdc68d5fad773190d87818574892625097e7fb3689c7bbb","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ff668fec99aa2cee81bc50073ec7632bf4c0b88e039857b2d16561298c4daced","regex":"(?i)^https?\\:\\/\\/atnxqsp\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"a8fca5e322423942715257234f12a66a5dceaa9b85493222434a98a76dbb4007","regex":"."},{"hash":"e78acc323e512793c58a0c7986da2e2a77970869b256ac40c628f09bc134a971","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b83cdddde6623c9878ed4f0a9e6092a6ef67b4fbb3b972b731b63c6679156949","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"d16b784a68d2c3ed9f83988261f00da0b331b9bbd34baf9c0a732a04e2c229fe","regex":"."},{"hash":"b8c51b04149d60312f105bfebe73d243b765ae683460400c60a26adb46630267","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e1a703c73fcf104ca73a58733d969ce2990f5916b86a86adb840260382d46cd5","regex":"."},{"hash":"7b5e8e8051dbbd0817d51a2744ffc9d267b1e0276794d73a86e0dce91953c960","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"06466b96f4067609a720640ec29a75f93caedf8a439079810eada8e62444190f","regex":"."},{"hash":"ea5e66ee8fda5bb2d8158cbe8c21bae16cfcac8809b784093638862902d95f8e","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"446269b4117732deb5bfe77338f4a85d97def823ed9f21d0b4d7e206c88e66a6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7aa035092e248c44125a7cf343399886c78c3b8e6da77c1c9523fdca7eb1e0ba","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"57da4b52b4ec6fd28a0b5fb60270b775319b35f4a386a041881210e47acf1904","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"0e132778535eaa9d95386248d8f495af0bf6235f3d2944517705096704f620da","regex":"."},{"hash":"ef162831c9f3e2153cf301ce275f9b71f7edfcb0b613065e8a6c2a2ca901bea3","regex":"."},{"hash":"0aa094ad34dcc09b07c5c1c865760ff81d5c9578949ea26be492c84dc0acb7d7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)"},{"hash":"0aa094ad34dcc09b07c5c1c865760ff81d5c9578949ea26be492c84dc0acb7d7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xcimpr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"c72255c3b4bed290721dff50503fce707b169d2c6c71b71f06f4eaf0e1f4d541","regex":"."},{"hash":"db6789ea37b8d1f1fad85f966b54bbcd6ac724476323e7380b9d769c25fb3cfc","regex":"(?i)^https?\\:\\/\\/linkproduktokpedweb\\.my\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"29adc0bbbf9fd9304abded61a32f3f2bfc2fe9c41c4856c9a21dff8b860d0d64","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cdfaf7a3715cfed01b73675a96d9496c6e9aa69ed5381ae47488a2cf6bc2955d","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e9116ac17da78ec705dddae62a184b80ff5c2798fd52b8e77f0224203517a4f7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"3aecb275d432663b341be18caa0321ac1d7de1053ca4fe877abb2bbc1c49125b","regex":"."},{"hash":"43c7122661f86cdaedfdc2b4a663b3e2dd862fbac6042fa5fd0ffb2a15e7af75","regex":"."},{"hash":"9f48cf0fa6a896ace99cb1f7a5baa227ae92118f131dbbf8b868929a49830395","regex":"(?i)^https?\\:\\/\\/dapatkan\\-sekarang\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5d3b215bf5ae724fb94ae1c8fbc3607d2ab21cb8493ed7b3f994f4e2bb9232d1","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"314e8e6035577f2da3c8dfba5b135300d2b6b75c345e1ecf8ccd33be4b90fbf7","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"074e7fc31d5b0205e5eb751bd7d05a2316b3ce073c1641c03aa3fb0b76207dc4","regex":"(?i)^https?\\:\\/\\/bafybeigbklak72moga4abx5f7mwzssiibbzk2kluznzrlwdalupgirukaa\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b81f8a9307338ac23292c5dbb0808c9bea6faf07db00a69e8cd3847735f8a66d","regex":"."},{"hash":"d9fb812111a03ebd0d4708ef8b4fa92bd30b694dca30efa8de72b119948dc68a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ad631a8b882e240db387009fee27bc043245118c3a18c64db357287d69745720","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"658af31e42389223a21feed1fc384ce1edadf6f68334c6f7248f37995d77b229","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"1432c4296afb6284f10615eb77a170f094868ef3b3286a473a5c90226f002730","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.ch(?:\\:(?:80|443))?"},{"hash":"e1515e8eec6028ac56e30f88dc01dd6e60d03b294afd5c457ba2e6face9a438f","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"cb2f42f00dbaeecee4b44592121de25c575044898671ed5c17775a15885eda16","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.com\\.br(?:\\:(?:80|443))?"},{"hash":"dcf01ca6d49f2129722a9673a938649046caeb2cc1491379e590ae5bb02bbc8a","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.com\\.es(?:\\:(?:80|443))?"},{"hash":"5bb8ad1e97cfd5ef233d1a3768bd9323c4ce362aca992556f5c6410d36fd02c7","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"934d8d391e14583a4f33a5669886cc8f548afc89d1c664798a6abf61e2d2b113","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"cf4ae4438f52445a4855031dba171b22a962e2d8a8103810dca11bdc8b44c12b","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.my(?:\\:(?:80|443))?"},{"hash":"5c927131872f396e8e92849faa3e9dabff7ead5d4c80c6ed00b82d5db3346acc","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"a8f6a0f9091260ef8b3114f2d6b05a0173352445b4da5007b93f7917e2aec895","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.qa(?:\\:(?:80|443))?"},{"hash":"885821abef34882525e4b3e70972d25a3081ecea44b3ab5c6222de5234b11344","regex":"(?i)^https?\\:\\/\\/fresexmovie1020\\.blogspot\\.se(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"1bfe4e07479ebc3ea13397d91787e838fb8c79b851ab891c098df239a7b4d29a","regex":"."},{"hash":"d5e49d1853e593f182f0f48bbaa64c1cbaec9380274b051579c70981b8fe5ffe","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pages"},{"hash":"d5e49d1853e593f182f0f48bbaa64c1cbaec9380274b051579c70981b8fe5ffe","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8d3167d0177ccdb7b9a7bb69623e340a180d14501df48c652a33d16ef25df21f","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?"},{"hash":"5c786b28c59354bf51771c0989ff3640bd5ed4ad61821d69e1e3b55dbe45172a","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.cz(?:\\:(?:80|443))?"},{"hash":"7424cc669bf032419762707e96009b44c56e45a5adcbaf6265c30104faece6ae","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"dc045a08ad8a0ed0bd9084124e74a3fbde1773c050b0c2f31a4ac1005ec22422","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.in(?:\\:(?:80|443))?"},{"hash":"ba67935ebc195e5dde964086ab399bd6e01511b99af345758db84bb841990083","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"8e8d1b5b35e90ffe08b0a064b582e729455a46dac89b19391d7a02271ef7b05d","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"631883dd11739720670bd73c06ded51bc5198ec7bbdaa4c79a9f74dae9985659","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.pt(?:\\:(?:80|443))?"},{"hash":"a8e6395303ac93c17231963176d287859eb7ad671bfe30203321ae214a7c5881","regex":"(?i)^https?\\:\\/\\/chubby\\-girlz\\-clipx\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"a0941a576ec16be204c83292f2c12dce790f2bfb4596738eae489d6298c5f8ea","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"36392f6f2b4d5385ba001ae89b6d202f30e68cda7c77052b52750d2ce79e5546","regex":"."},{"hash":"4de069dd4c75df472278526a12419c654fcce635be36f2960a51967e5a5998a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wc[\\/\\\\]+default\\.php\\?user\\=true$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"4de069dd4c75df472278526a12419c654fcce635be36f2960a51967e5a5998a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wc"},{"hash":"4de069dd4c75df472278526a12419c654fcce635be36f2960a51967e5a5998a9","regex":"."},{"hash":"b033410f7b7fc3e5d9e675e4e2b743bd492212094dfb186bb380bbe1bd5460fd","regex":"."},{"hash":"7b1c1e8e0f942622a08dcd2153141a96deb1794dfd25def365f4eb3a3283dcf8","regex":"(?i)^https?\\:\\/\\/pub\\-4fd9e77129124c1d9e94952f32baeb7f\\.r2\\.dev(?:\\:(?:80|443))?"},{"hash":"b377acb3d2acbd731181fdac32a82a366872e47b1bd9a5af3dbe4c4f1aa70f9f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"b138adf64f9e9cb1068a9df8361e85533702adb0286081d9c8fb0e118651792a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"934de47ef3b4877f8a88f75c496fc44ad07e23c8b3ae99ef481a9eec8523c64b","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"73c421b5c9b3b86ecf2d5ee35bd73d5959449138baf1fee9da2c32d005e8a39c","regex":"(?i)^https?\\:\\/\\/emailsrvrvxvmxvmmxvxvmxwebmailsrvr\\.s3\\.us\\-west\\-004\\.backblazeb2\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"bb4d4937c15d04dc98a17186e7cadaafd0ff3fc8e592cc5c82fdbfaafd6ff4a9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jSZGBoczOA_iZtczvVjEKidMl9kRvoHRdvBQPsKaG5kWNM6Qoo9QpJ6OW9A2c9yTltwCdvMjgvTteuuzHOOnYRWKmq6lubCKcQQfT7lO7EVI4Zx5bt4\\-g_wRhfGkUQ\\?kws\\=most\\%2Crecent\\%2Cvideos\\%2Ctranny\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fwww\\.trannyvideosx\\.com\\%2Fvideos\\%3Ft\\%3\\.\\.\\.\\%20312\\%20\\.\\.\\.2C\\%22\\%5B\\%5D\\%22\\%5D\\&si\\=1\\&focus\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fwww\\.trannyvideosx\\.com\\%2Fvideos\\%3Ft\\%253\\.\\.\\.(?:\\ |\\%20|\\+)+312(?:\\ |\\%20|\\+)+\\.\\.\\.2c\\%22\\%5B\\%5D\\%22\\%5D\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$"},{"hash":"14fb1ef89f9b7015557896429a689a350fd7578f8d51a39a677871a329a90548","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+consume\\-sso\\.aspx\\?ssoID\\=\\&ssoKey\\=\\&locale\\=\\&enterLobbyFrom\\=0$"},{"hash":"a6c9acbee742fe15033e9387f14ed03b8c1237544e9b07dcfc8477470f016890","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"14fb1ef89f9b7015557896429a689a350fd7578f8d51a39a677871a329a90548","regex":"."},{"hash":"9e99c8f80f3e0217fd7349b7d4ba54286dd8083fff3927ef6aa8526fdb7ec5ed","regex":"."},{"hash":"f5faf456dc34c3f7cba287e4e4975140bc48d192409ae35c60356225e544e1c3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tributos\\-pagarhoje(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7f9b2f16707356dcb4073e593bc7425245a735ca8286121b267691ff71583992","regex":"."},{"hash":"ba288046910a9e04832f6310888818d4b845375287945b39a925dfb3d6ad59d8","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"22e343635e2f8eabdaf054865f5d5fe6cfc956a8ee12cdfa7121b455381d9a14","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.co\\.at(?:\\:(?:80|443))?"},{"hash":"f4936edd31d56f618741a18f126c44d0796926485ed962cab827b45b92da1000","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"ae4809297ff7aca4ba901c1bbaba282d6be99555b785922e48d447923df1ce93","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.co\\.za(?:\\:(?:80|443))?"},{"hash":"8405f76d36d0ffce59dc701641e02d1e44868600ae393f61cf6fc49e512b066c","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.com\\.co(?:\\:(?:80|443))?"},{"hash":"abb053a0f7ddbfa77211604948c35c32b0ff0fb86475d8c5975bd98baa5b1c75","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"7b6d529fc96bfde65f9a4a41ae90388ecb2f38ff56e58ed6fb5eeb6e6864f882","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?"},{"hash":"24ed860a9bb680f7d55c186307a013a79aefc0cc61014bb54a308c976873b834","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?"},{"hash":"d9ef5a823a8b92684bffa3f3910955f35ba917ebc53e7bca0e8b3faea92e88c4","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"16d9fee76dda431ea9153b82cc5942c9ecc388d7a82a8a2dd1684911179ea820","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.fi(?:\\:(?:80|443))?"},{"hash":"7b066ab66eef3556ef116c18a1344068266209777925c77c1b35d29210fccde8","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.hu(?:\\:(?:80|443))?"},{"hash":"97b6f60cd182a6cf734e04d3cc18abf45072bf8d9d305da887c6beadc0483013","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"0cb21b56629076714e0342705f7366755d0a404876dfbefc2d60032344020f84","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"5db75900866472569a2d443efc0b5ce2191330d624eb4b70c14319e3ed88aa65","regex":"(?i)^https?\\:\\/\\/unlimited\\-spins\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cd61fd08c8d503c752b6e9d390f8a0c136e48989bf2967245fcfe6df8fcaadf9","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+caspilot[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)"},{"hash":"7a4646e49bbf1a3d76a9046021c6ca0212601763d3adf412b8c5848d0df411a3","regex":"(?i)^https?\\:\\/\\/canadaapostpostgcanadab\\.top(?:\\:(?:80|443))?[\\/\\\\]+ca(?:\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9a01430254a9378a33a6a610f014e4065267e12a3a6c9c2190d1ca8efc2842c5","regex":"(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"ecf5dc2f93a04b3e16a1e7dd8651b1bcabcc8282bb3ff27e1ce94fffdefcb03f","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"6280aab12034d4424d16198a6d0096dfd11c3d5daaf48abcc12eea50670ad26f","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?"},{"hash":"4235b122d41db1a85d5c32fc6690a175d3e8708776b2a4f20a61c3ed83f1962f","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?"},{"hash":"c362373b54bf4c260ba07eafdd0e2df87c3957e4f0addeffbf626bfc398c299b","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.lu(?:\\:(?:80|443))?"},{"hash":"8f64960892a94ed1b13e630536709d91e8fa484565c7b71364fbb20aa6a7b7a4","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"30f98d74c9fd77f40b221803a66ab9cb4576b0ff49f86ede27a3796d4fddc939","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.no(?:\\:(?:80|443))?"},{"hash":"9dfe5cd88a81e71713c4824b1250822bd52f72a0e54eb13c52c6ed2bf4c3d714","regex":"(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"827b83f8f5c975a36a4b97db6da82537080ed2379abf5ca45110c85f9af16883","regex":"."},{"hash":"7a4646e49bbf1a3d76a9046021c6ca0212601763d3adf412b8c5848d0df411a3","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)"},{"hash":"1b7cfadcc8a6049879a0989f7d591da9e6cd473dd1d5a848e82f9b5c9bca6f18","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Freurl\\.cc\\%2FyDW1Ll[\\/\\\\]+1[\\/\\\\]+0102019447653c8c\\-850141ba\\-d945\\-4c55\\-9bec\\-29ae5dd1feda\\-000000[\\/\\\\]+F4BDWAppXENeU9v2lSo9\\-9Jl9Jo\\=408(?:\\?|$)"},{"hash":"c72417c3f5b4c6052c73a6d51e4e8592a80dffbb944f1d8019e65eeb45609134","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cd2542eb316ddd52621a7c3b19441a17bc76f73133246f0866dcba043b182809","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"50ca4586c68bacde95edc2bd08ea187bacc068fbf363178cb3b5193cf66f2c34","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\%26\\%23\\%2B\\%23(?:\\(|\\%28)\\%24\\%26\\-\\%23\\-\\%23\\%23(?:\\(|\\%28)[\\/\\\\]+7\\%2B\\%26\\%26\\%23\\%23\\%23\\.zip(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"8ede65b7e0c0c534d23a66a9f7e5a7c2934889cb30323b1f8ce650e9f3421cd6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+EL9[\\/\\\\]+l7[\\/\\\\]+bn72[\\/\\\\]+log\\.html(?:\\?|$)"},{"hash":"50ca4586c68bacde95edc2bd08ea187bacc068fbf363178cb3b5193cf66f2c34","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\%26\\%23\\%2B\\%23(?:\\(|\\%28)\\%24\\%26\\-\\%23\\-\\%23\\%23(?:\\(|\\%28)(?:[\\/\\\\]+|\\?|$)"},{"hash":"8ede65b7e0c0c534d23a66a9f7e5a7c2934889cb30323b1f8ce650e9f3421cd6","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+EL9[\\/\\\\]+l7[\\/\\\\]+bn72(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"5b29ec00871d615f2607d3cedfc43224e0e1561d09baf23c204931b243e9d734","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?alt_url\\=https\\:[\\/\\\\]+www\\.linkedin\\.com[\\/\\\\]+in[\\/\\\\]+grantfuellenbach[\\/\\\\]+$"},{"hash":"50ca4586c68bacde95edc2bd08ea187bacc068fbf363178cb3b5193cf66f2c34","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\&\\%23(?:\\ |\\%20|\\+)+\\%23(?:\\(|\\%28)\\$\\&\\-\\%23\\-\\%23\\%23(?:\\(|\\%28)[\\/\\\\]+7(?:\\ |\\%20|\\+)+\\&\\&\\%23\\%23\\%23\\.zip"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cf7557bb0d320d209b23efb26e6cf3e3757745034c29552cd3b08ef3b1c96bd9","regex":"."},{"hash":"4df0ea5a757c4c5b715b05e3a93d6d9d1cf0b46034e6dfabcffceb1381221f4b","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"259f33398a9d97930646f016ad490dece2e4b6e099be12200dd58f7c406fb2b7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Beast(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e83c78b1b7aa4e0d649b92fe4c92d8cc0b2d7728578ff79753d7eae2d1a9987a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7ebe85c6b59bd5dc0a53b7f6d8bd1ae976459bcd417dc835a49cc23886104689","regex":"."},{"hash":"a1ce74f28dd71133b64e550d2fe4b6ceb7fdcc231a0358b40e0336dfb7e0aa36","regex":"(?i)^https?\\:\\/\\/cinnamon\\-coconut\\-ncp3pf\\.mystrikingly\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"cc216c550a7356821c47c5a4e13f812cd93b573a7159824981419fc6ddac9695","regex":"(?i)^https?\\:\\/\\/www\\.coinbase\\.com\\-recentactivity\\.146\\-190\\-175\\-173\\.cprapid\\.com(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9392f76dcb4fe8a085b3fe6b32353feeec31a6a1ca418866b7c37053352c9a28","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a923cb146072cf649470499b4920e9d19d2291ba1465a8bd2687eb1e4f69af96","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Identificacao\\.php\\?SimplesNacional[\\/\\\\]+Aplicacoes[\\/\\\\]+ATSPO[\\/\\\\]+pgmei\\.app[\\/\\\\]+Identificacao[\\/\\\\]+9e549bb8\\-f45d\\-497e\\-a0e7\\-58b46c18859b$"},{"hash":"a923cb146072cf649470499b4920e9d19d2291ba1465a8bd2687eb1e4f69af96","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"03bd6063fa8025446334d90b24bede5eabb8a2a73d781cb1598ee5adb35912d0","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+codesepteng\\.php(?:\\?|$)"},{"hash":"03bd6063fa8025446334d90b24bede5eabb8a2a73d781cb1598ee5adb35912d0","regex":"(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?support\\-mac\\.help(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code[\\w\\-\\.=%]+"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"70840d419077f1d0d7dda4fd2fce09f1da85d80fd89f137718882ddb44be5b6a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a3207b07824d5c6fd650234b26f0b5c7ee02c13441e451ce61e55ba746d94dff","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"7784ce3876c365f2a14504a3fa80878179edb3d45fa442a41007c7574c259940","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"2e3e5cba4e4fad3e5455864c34e18f19ec445af6528e06f4bbf4e5ac23db9469","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.al(?:\\:(?:80|443))?"},{"hash":"acce83c29761b20a03d2bbef8eec1afa3ed40df8254023a15c134f4baa933a5d","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.bg(?:\\:(?:80|443))?"},{"hash":"e2d0774edc1145c23189ddd13cd449baa4af0ab15d18f6d4b935c81ed842c61f","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.com\\.au(?:\\:(?:80|443))?"},{"hash":"3f4372e14c4e10630ab61c781f7de5c1601dfa1876bd75b715a439aab581be9b","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.fr(?:\\:(?:80|443))?"},{"hash":"b32d60c20c3965fdcff2a44c4b5c15c85f6d4171d5dac533f796d3ab80c8465e","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.lt(?:\\:(?:80|443))?"},{"hash":"85c9dbb59162389e8f4ddf18b6a4875263d26a29172765893df3db8e93a0ccb4","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"4805e76aa454af984c75de1b3ffe48deb8ceb775391d490903401e6da59ab3bb","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.rs(?:\\:(?:80|443))?"},{"hash":"46677d4696b24c9260aee3ad70be21b94ef73b7687b9bcf85cf4598b1d3aca99","regex":"(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.tw(?:\\:(?:80|443))?"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register56136\\?i_code\\=84688356$"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)"},{"hash":"e7ae46f12d47d2d4e7aa0e87348cb70c77b3126b7dc127e7bedcbedb8a7fc81e","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.ba(?:\\:(?:80|443))?"},{"hash":"4a801fda5340328623f9d40794a4303c4d0934f7eaa196e44e56409b2b9c82c8","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.be(?:\\:(?:80|443))?"},{"hash":"84d6f452bd985da291c308c3d44348941858a0f180ae98fc0c015df568bd609a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9173[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)"},{"hash":"2935c8a87077b8495b81a11d01fc4b07aae9a45c0fc66ef087a10afc75aeb026","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.co\\.id(?:\\:(?:80|443))?"},{"hash":"76e6456f84333074f6ca05b6f190f7c74fe0714b2519730783bfe60ec7a5dd7f","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"20baa4e4adb76cc05a74105c9218452033ff71a672f2bb86155eafbf92e2bb17","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?"},{"hash":"dd4ce7c0380efebe1061cbb497854d4724077d10d68f90a2c1ec8326ed6f1b31","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?"},{"hash":"f89bd4b657f8be03ff8a46f7597a324f35048f7b70be0494d4fe85bef36c26c9","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?"},{"hash":"a0b917540ae33ff45749865b17cf8b0a414895ac925e7aa6e4af15150c0182b1","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?"},{"hash":"ca4b6feca4b9b5ea8fa34446695b7e20903ba4049ed6778f14b79c39c98eb0ff","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.de(?:\\:(?:80|443))?"},{"hash":"2281f25c6efafbad7b1d68694e31d0402372c7b8218bc7b82ebba02d27b6ad1d","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.ie(?:\\:(?:80|443))?"},{"hash":"e2ec76bbeb9de39429535ef835d79700c0d6dad890432ac08e3f0f4931823197","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.it(?:\\:(?:80|443))?"},{"hash":"68e7f9b80fb32ba906399af597134a4c61d706ff989b1a511bafe7c8ce75e95a","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.jp(?:\\:(?:80|443))?"},{"hash":"94ea1a63bff1ade1c6404ec9a6e2f6150f46028746fa7e1fe7696780b32593f1","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.kr(?:\\:(?:80|443))?"},{"hash":"937d4cf8765547ba6007f3cceb29ecdad6cd211c7e8c56236313b5542069da17","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.li(?:\\:(?:80|443))?"},{"hash":"08e64513577437d40c5753d91775bc05adf4c24498ba4eeecc5146a9c8a3e84a","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.md(?:\\:(?:80|443))?"},{"hash":"5c42710df8f14834902c128d61ab6904eac88c3709a187776454ec5f8be6581b","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.mk(?:\\:(?:80|443))?"},{"hash":"feab3128192eb28842cc424ff5451c54309847e03fa6ec8bbb15cc86e663dc1f","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"41bdd4fee0d2456c0dc16f7f9e0b0e31af43328052008c4ab157b14a16f9c7c3","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.ro(?:\\:(?:80|443))?"},{"hash":"626ff980c3e3b851eb8f18ee2971727600de8452228a093c7d8ca1a7e0d6d71f","regex":"(?i)^https?\\:\\/\\/video387562387456878563747653666\\.blogspot\\.ru(?:\\:(?:80|443))?"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register56136(?:\\?|$)"},{"hash":"84d6f452bd985da291c308c3d44348941858a0f180ae98fc0c015df568bd609a","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9173[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register56136(?:[\\/\\\\]+|\\?|$)"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"e9782e1d2affd37e172a6438e7ea495b0715a4846a508a908bdedc75cda9e21f","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"74ec5cee8c2ec65a9bf2ca1189ed5176e9d8a2dfa56fcb7fa33f46e70766eff7","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9966[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)"},{"hash":"77d18bef0475f5b72870b6e47ef5ae0c4b924439e35632b2342c4963edc2d673","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"afc2c6015241d58833925e82fe41ca671a68c54f075491f719eb12f10b607661","regex":"."},{"hash":"9f6d850d15cd4dabf56a1dd4ba42a72386b5aac48530b0b03ca066bcc400fff5","regex":"."},{"hash":"8b9430bb64a628987804bca432e70e4a46dcbeeeef5c7c360d02c090e442ad48","regex":"."},{"hash":"a1b35fc51318dc66d526757ee57cdf2227b4f849144cef43c1d5756c343436cb","regex":"."},{"hash":"9c8698ebfe9206520026b88df63d7d6c2c91294b89e9f7b1c18181b42352a7db","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)"},{"hash":"304c4b6b97302a71ed03a1238d22e578798bf640491c60f2444b936d5188f31a","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"99f03474f88143cd65315a43ff93c7817ca3be4f15c9d97455168f5d0cfa8731","regex":"."},{"hash":"9c8698ebfe9206520026b88df63d7d6c2c91294b89e9f7b1c18181b42352a7db","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify\\.php(?:\\?|$)"},{"hash":"ab3d0fea8f20590ceb939fdb8fa0ed5b68fc7bc3c4668d00bacddfa1b9c94375","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.am(?:\\:(?:80|443))?"},{"hash":"3cb91fa4370eb03b930958efcfa4599b8022aae1bd628322168aed705c67928e","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?"},{"hash":"6092ae6fca9808e6f3676f340450c4c050f1bee3d233aff14887af7cead1dab1","regex":"(?i)^https?\\:\\/\\/www\\.pb36588\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)"},{"hash":"a90787195dad8211a1b1f37edde3d8e4d913b72dc7c6507b792ba549c8101a6e","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.gr(?:\\:(?:80|443))?"},{"hash":"24bf03ad11e9c3f03392c046356c431f1df3891ed2efadde1c98bdaa6af02c3c","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.hk(?:\\:(?:80|443))?"},{"hash":"07094b47528ee57006459cd2fc409b2dc4ff6d9d148085a294695c0aac30ea79","regex":"."},{"hash":"03c00bda29375ff0202dca76246c23615df74cfa30f48d1da96bb70625930362","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.is(?:\\:(?:80|443))?"},{"hash":"1a465e03b2346c9c443062627b5da159577ec736c404bdf0dd9186656b3e3a5b","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.nl(?:\\:(?:80|443))?"},{"hash":"87ad95eac37bf90d725ea16660743ae99a8dbfbcc7e4d9b8413de30b4bae916f","regex":"(?i)^https?\\:\\/\\/video894638745633783458666\\.blogspot\\.pe(?:\\:(?:80|443))?"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"9c8698ebfe9206520026b88df63d7d6c2c91294b89e9f7b1c18181b42352a7db","regex":"(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verification\\.php(?:\\?|$)"},{"hash":"c79a3b6531b8e77ea4c71fe762f7eed6aa004e73a795eb49f093897f54d4bc32","regex":"(?i)^https?\\:\\/\\/ankitjangid970\\.github\\.io(?:\\:(?:80|443))?"},{"hash":"9c8698ebfe9206520026b88df63d7d6c2c91294b89e9f7b1c18181b42352a7db","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"a6f94bfd5f1fcd49c43cd8594f23491e54b1b8614bb45b8d9aaa836fcf7ff4ff","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"66fb48f5cf9c6331afc8fe6dfc290a8e22185fe1d333ec263986d97fb74bf968","regex":"."},{"hash":"0eaf9cbc6f455a4e5854dbe5f049ef4b21e986c3d771ba9ca30676c277443115","regex":"."},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"},{"hash":"56fbfbf1a85858fc3cc34c394e317ca8906e24d637b10b8f46c9641a4918a637","regex":"https?:\\/\\/broken.third-party.site\\/security\\/badware\\/phishing\\.html"},{"hash":"10363e73dd37f5906851804c97fecc0348832f1eb33cf213d877cfa0d5bb6295","regex":"https?:\\/\\/malware.privacy-test-pages.site\\/security\\/badware\\/phishing\\.html"},{"hash":"e4753ddad954dafd4ff4ef67f82b3c1a2db6ef4a51bda43513260170e558bd13","regex":"https?:\\/\\/privacy-test-pages.site\\/security\\/badware\\/local-check\\.html"}],"delete":[],"replace":true,"revision":1706229} +======= +{ + "insert": [ + { + "hash": "926ab2e5947402eb572f62c156083219f499377a7514a3b602b7c4cd8f75d967", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1323533034\\&rver\\=6\\.0\\.5286\\.0\\&wp\\=(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5a617272118a585a8c3f7dc3b591892bbfc7d3490f92ac65cc53837ad4bfa4e", + "regex": "." + }, + { + "hash": "a2d92120a929660c6d5186cf7f4890998fc2ce6db3742c9ccbbe468c7db00a08", + "regex": "." + }, + { + "hash": "2175c5a91e337060b18f640699e2c297845bca1fcdb0b07baffda4bc7e41fb89", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+html[\\/\\\\]+0d96cb_394f72948341c820e7c7acfab665a8ae\\.html" + }, + { + "hash": "76b2e06335a8209d4abb0fdc7a39ad9a779820b5545315d814e81c82a2bd1a0a", + "regex": "." + }, + { + "hash": "70aee649724e5f98d91423a4ea1b97c5b5788b1893aa70882d061f0e39fb4973", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+js[\\/\\\\]+1and1\\.it" + }, + { + "hash": "eeb4c0bdcf66a64431ae8cfd22dc3fadf2e57760ee13aad6e7f727c1c3ac49cb", + "regex": "." + }, + { + "hash": "ceb25dfdb09cdd302aa9f124ec233ab829e04e91031b8674a628bf1d34299fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+html[\\/\\\\]+2927c2_394f72948341c820e7c7acfab665a8ae\\.html" + }, + { + "hash": "e344546ee7de73be6e0b956c72b147f611da12958f30e813c29f325ca9f8e03b", + "regex": "." + }, + { + "hash": "2543d9563df004c745d215bd1c0c5d58e18b930ef45daf3a9cd5463d2efd959f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+HiNet\\.html" + }, + { + "hash": "2543d9563df004c745d215bd1c0c5d58e18b930ef45daf3a9cd5463d2efd959f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files[\\/\\\\]+bottom\\.html$" + }, + { + "hash": "6b0ba2985a4e454449a131e6ad2c99186bc2b5a1a51321949cc64b50543b91bf", + "regex": "." + }, + { + "hash": "e7968e22376f6c58e6e7a25220edece4ca8508df6b45850f30a7c9f19ee6c546", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+account" + }, + { + "hash": "1c2cc9fbc479bb37685861abd76243eea628eb6c99a09b874a8817becf6032b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chronopost" + }, + { + "hash": "d75f6211a59e9c3a6b7e4be388d6b03718e2ea4a4dd6e3059cabc87f67cdca1c", + "regex": "(?i)^https?\\:\\/\\/credagri\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08f718d32d5356ffc9e0e50b1040d7bd895458f803783ad5e7694e5664cea2f", + "regex": "(?i)^https?\\:\\/\\/credagri\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d07e27968cbadf26acac5783c0b17edb522c228622ed57bb7fcbeaddbc6935d0", + "regex": "." + }, + { + "hash": "13c6e27ead0e8448c282ec7169053080db8d57564246192577b6a12ccfdf4f4e", + "regex": "." + }, + { + "hash": "50ca92791fa6ce847d76038636201dc714ed03a486cf91d1602d3479a6e6b662", + "regex": "(?i)^https?\\:\\/\\/pplsec\\-services\\-redi\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a445531c62507c10e676da912c09d48cc16744d666079aabba980ba32363ee46", + "regex": "(?i)^https?\\:\\/\\/pplsec\\-services\\-redi\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc4c6dea3561edf708abd08649553ba1dc776b38fe85901ae64fe1226b312683", + "regex": "(?i)^https?\\:\\/\\/pplsec\\-services\\-redi\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "098f293ad0d8d425e7210607ba1c226ae800f3d2a9c508a1e920133ff1d8768d", + "regex": "." + }, + { + "hash": "bf575e53048b9b7959e78ae04b0911068db0e4a179fd61279e21e4ffe6a0dc97", + "regex": "(?i)^https?\\:\\/\\/ladyh0t1\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ad29809c3217cbfaeb70c222ffcc30519df0daf6d19bff793d720b75b0f88fb", + "regex": "(?i)^https?\\:\\/\\/ladyh0t1\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb1b15d0760edcc3188ea74f73abf5bd7b45e10dcb3360dbcbb74b3b3ee701ce", + "regex": "(?i)^https?\\:\\/\\/ladyh0t1\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013c5f9ed4922da819131d6096468aaf279a37975c92e49d22299124ea473daa", + "regex": "(?i)^https?\\:\\/\\/ladyh0t1\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddb8b6cc26a4e4d7a5481bd0c12ca344b0b912f763dc3aaa77bad1a9c94248db", + "regex": "." + }, + { + "hash": "7102e8a97aec0863efbc5f3d8899f8bc9a05f28bb25b6411d3f51e199d61dbcf", + "regex": "." + }, + { + "hash": "d0dd60e5fc3f97f53baa7e195a49b909614094308107fc9fc3a3c116fae00db0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=C78eXqp1nBAfRA58XKz2AL7jsgpJrO7mPUWfKBKe5yzGtvTFWeKDIYXPb6AEOshHRvDJcN4C1QeYOanYedr3Q924BnvZFR23DVK20zgt5u2MPsakQaJvnkKtitYWlCjhaQVhwoPR1bCGplAH\\-2Bz2LpXl77uAgfq0OAuAGyPS\\-2BToxAtOmDUZ0O1IZGGnRvmjpvbziK\\-2Bs4z5TIcOmFTV8ev4KzOi9QvWlRkPl9LsmUlCJu8z\\-2FxTQdgdGU76S63sdkUHAvncNQVESTAaQaBiAF\\-2BW58qBc\\-2F9KkV1VmgK191AqoSIX7vuQnaJ1T1dD8oWYzHm\\-2F1BN3wKnKjukLBfmDxMC\\-2FX7WoDCGQwRMV\\-2F8V4rHMCuQI\\-3DFIEo_34WV5s7L\\-2BuQqV2Tr0ttWJhZjkC30rsEfGfs6STDqAp7GZFf9Z8Zny2i7gzkLhktPjBP9H5OFEc8i0HOn4DI2rzML\\-2FcZvzz7gTnvni5Sm9ocUeBYeO3csED3tVYk2VNw6QyMEz3HUAcqHSh\\-2BcJK7pOp\\-2Be1yPwUQqEsuAR2aTLrZs3tgRjZEwIXtWQ9NHNmkN9C8LHOx6C03kPZm95VQvF4phCrqlrYTI736V7jnJbHwE\\-3D$" + }, + { + "hash": "d0dd60e5fc3f97f53baa7e195a49b909614094308107fc9fc3a3c116fae00db0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=C78eXqp1nBAfRA58XKz2AL7jsgpJrO7mPUWfKBKe5yzGtvTFWeKDIYXPb6AEOshHRvDJcN4C1QeYOanYedr3Q924BnvZFR23DVK20zgt5u2MPsakQaJvnkKtitYWlCjhaQVhwoPR1bCGplAH\\-2Bz2LpXl77uAgfq0OAuAGyPS\\-2BToxAtOmDUZ0O1IZGGnRvmjpvbziK\\-2Bs4z5TIcOmFTV8ev4KzOi9QvWlRkPl9LsmUlCJu8z\\-2FxTQdgdGU76S63sdkUHAvncNQVESTAaQaBiAF\\-2BW58qBc\\-2F9KkV1VmgK191AqoSIX7vuQnaJ1T1dD8oWYzHm\\-2F1BN3wKnKjukLBfmDxMC\\-2FX7WoDCGQwRMV\\-2F8V4rHMCuQI\\-3DTPtC_\\-2FlGCvaGegiT7R34HrzVZK012PGA9AHAAmOTs3EC2H\\-2BHLeMEhhxxk6hBbUfNd7kYwWdIzLxhmKuBc6elwp0Wm\\-2BRdxiVT1wFp2cgPXXuKlFDQtKF2jncjC\\-2BTB2yc2hWXUHyKIpDUwigK8ADUjmGvRm2VQeOKvK2OwlbmbQj0RwdHMQ5\\-2BPMBzR\\-2F\\-2BZhZDy5BfsmmbCZmWdHEJJnY1BuoyQugrsCVWhlVDv1GIRwC90kp8jg\\-3D$" + }, + { + "hash": "d0dd60e5fc3f97f53baa7e195a49b909614094308107fc9fc3a3c116fae00db0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=C78eXqp1nBAfRA58XKz2AL7jsgpJrO7mPUWfKBKe5yzGtvTFWeKDIYXPb6AEOshHRvDJcN4C1QeYOanYedr3Q924BnvZFR23DVK20zgt5u2MPsakQaJvnkKtitYWlCjhaQVhwoPR1bCGplAH\\-2Bz2LpXl77uAgfq0OAuAGyPS\\-2BToxAtOmDUZ0O1IZGGnRvmjpvbziK\\-2Bs4z5TIcOmFTV8ev4KzOi9QvWlRkPl9LsmUlCJu8z\\-2FxTQdgdGU76S63sdkUHAvncNQVESTAaQaBiAF\\-2BW58qBc\\-2F9KkV1VmgK191AqoSIX7vuQnaJ1T1dD8oWYzHm\\-2F1BN3wKnKjukLBfmDxMC\\-2FX7WoDCGQwRMV\\-2F8V4rHMCuQI\\-3DXLDl_NxZc1EsUwvronnt0AodH\\-2F8Iw5mmAhJERrjQALIr7ygTEBMTIEzUJFpAegNG0d\\-2FwHY\\-2FdWwuCZ1mclMamIm5vgu9ZeGTvNSMKs85EX6Cuply8PaiImV\\-2FEolw1wWn8ByLOfKLFdbD8IGmmMQp\\-2FTMy9rwBcQregdIiqrW7vAAAQtNZGDYvNXk5nivHM\\-2FQ4CbBSOuucr5Kz7YKGi4NKesgcMWlBKAxINMOrqzoP5raGgChuc\\-3D$" + }, + { + "hash": "d0dd60e5fc3f97f53baa7e195a49b909614094308107fc9fc3a3c116fae00db0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=C78eXqp1nBAfRA58XKz2AL7jsgpJrO7mPUWfKBKe5yzGtvTFWeKDIYXPb6AEOshHRvDJcN4C1QeYOanYedr3Q924BnvZFR23DVK20zgt5u2MPsakQaJvnkKtitYWlCjhaQVhwoPR1bCGplAH\\-2Bz2LpXl77uAgfq0OAuAGyPS\\-2BToxAtOmDUZ0O1IZGGnRvmjpvbziK\\-2Bs4z5TIcOmFTV8ev4KzOi9QvWlRkPl9LsmUlCJu8z\\-2FxTQdgdGU76S63sdkUHAvncNQVESTAaQaBiAF\\-2BW58qBc\\-2F9KkV1VmgK191AqoSIX7vuQnaJ1T1dD8oWYzHm\\-2F1BN3wKnKjukLBfmDxMC\\-2FX7WoDCGQwRMV\\-2F8V4rHMCuQI\\-3DJJIW_meEVnQ1u\\-2FnwX5qL1NlLeEXfL3asJlsNjj9GZ6qL1d\\-2B2iIlqhdLr2\\-2BGZfz17AuhRJPqmeKdJ\\-2Fp\\-2FiC7YzkdXWFsjMncTXxWCuGQ0N9aekb9vslWVHO61tJPQw8UtNRNdi0GKCygrP7wLyWyvgJwcDGIKd4SZQIQXvMbim6ibqxn\\-2B7R7D4jP1HvimQWn7dZKnUnRGFS\\-2FpFW2PQpnuJdl4bAUA\\-3D\\-3D$" + }, + { + "hash": "e10e2206a5f8b8394ad6353793ac9d8efe2625c8eeb5fe9d812e59e818624813", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?[\\/\\\\]+redirect\\?sig\\=5bf8c535a1a7908e0948037478faaba4e73f5d80066d0041311d32057cb63c51\\&url\\=aHR0cHM6Ly9kZWxpa2F0ZXMucnUvbG9naW4v\\&platform\\=app_android\\&brand\\=o2$" + }, + { + "hash": "b7f453822d902e1a75dcdd1b5a3c0b580462847ad5df9ea0c482f77de5f2d785", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+x213xewq(?:[\\/\\\\]+|$)" + }, + { + "hash": "be9aa899bbcc03752a46ea06cd5f70f1a1b4dc0129b9f35aa460c5841ee471dd", + "regex": "." + }, + { + "hash": "e466f2f062d144a3fdb41d9833a2ce4c4cf65055573c8794f8fca8729f5c4807", + "regex": "." + }, + { + "hash": "23b72a43049933807ce65402dba5887f567ff540037065d2c5ee1e231e34c634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2020(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a47c62b0b644a4fe4f7473fe7e0e2ec1657c232aa4e74a48f75e53a2684e1f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2020(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cdd3a3c6938d30ef508870f613ba25cf0cbc6c9e8fe762ecdde99d4c609e1e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2020(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7ae8badf0372d796cdbecde04fe7c7e7099c6a4138c5cb3bd62b50f9bffcd35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+contact\\.html$" + }, + { + "hash": "7a020180918131ab224834d02769a00d94f7b7e7588b59cb909761d753fe038c", + "regex": "." + }, + { + "hash": "fa9a6739ce99add40019fabdd4248fee6b25c2a8f85aa166b42e99d983d3814c", + "regex": "." + }, + { + "hash": "4f0daa8a3635a4b784151d1d54782fa91d360b3bf2101d4457ec166687f5248f", + "regex": "." + }, + { + "hash": "25c1cf033dc2932569f1eb2742d448a09cfdf0c2891f55386cee897e9af4e969", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+mifUwWfPydrfZqkfB5PHPHcwK5MYjIQQvoaAbGdb5YEZN_CjNRgTJaPXITOhq2jKpYR16\\-CLiIJznIcmeSGcQDnqVdNQ_4aIjtljHJW1cHRpG4995wb2opK2yt2r0C5z_MmzkhI8jX1NaY\\-we96d6Xj\\-43cB7WnR0nIqCFS7FQHI$" + }, + { + "hash": "1a7a7b8a33d1966327d612bdfc6e16104cb40fa2b1a07d7df0f7e978ee83d5d4", + "regex": "." + }, + { + "hash": "9ee82161412c8717472976070b09a7f5a7601a7384d7f9f2107d8878b8256547", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=JZvCQZSNx2FnvZ\\-2FmTHrMPEpqLIwAWr7uQSyrDO5rgxk\\-3DOj6D_MIrEM\\-2BrZpMRx7MPtwKpnFjEyP6QuYwwPVQ0ancKCPMo\\-2FkG\\-2Fo8HqAVmKt7UpJvDMktYl2ygsvT0x8ya3fResIhLq1E\\-2FCF9fQDGlzNmIwwxLdQi1pDkxJfSY99kGwM4oUbdFPromvHRXfy8J2t7i\\-2FGfMu\\-2B\\-2BmpErIS\\-2FI9YEWsBaTDIccV\\-2Fg0mEJIGaA1DdZRzkenARzNGne83lqKOI1\\-2FdVC3StsVeNFO1WQX2r5a5X72LM\\-3D$" + }, + { + "hash": "9ee82161412c8717472976070b09a7f5a7601a7384d7f9f2107d8878b8256547", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=JZvCQZSNx2FnvZ\\-2FmTHrMPEpqLIwAWr7uQSyrDO5rgxk\\-3DdPwy_L6zuFFtuDGTKYGXwbUb1mJJ3SodBiTiACz7yxsScu8JvclBaXcctK94F1Zx6g85VO0HJySk\\-2B\\-2BIJjkqURI0Oss5w5pbaHaqsLZWXQRJ7lZ9dhE1CYsIE6\\-2BUniQiPn\\-2BN9na8W010RkOwYvndI\\-2B0h8LnqWh7HtwdzwZDSFmueJYLVcQpgzK5Jdckus7DnDRXbU7yLCyxYt24lj5HQQUKjuv\\-2B6EKj\\-2FNJyOz\\-2BeplXF\\-2Bq\\-2FN3M\\-3D$" + }, + { + "hash": "febfe537be1387fd8e8fb1f65a19b17593096cabc006172f396c2a721af4ec97", + "regex": "." + }, + { + "hash": "1d7da890df44a8bcbad5e94be30478a07445ac7c8a46497a31cafe8ac155406a", + "regex": "." + }, + { + "hash": "94beb58dcb77c3629a2e4aa12b2b0e2d4e8de0d4a1ebf55a2a7202bf5b0ef5a6", + "regex": "." + }, + { + "hash": "5cc830ac7ec02183ee122aa0b0d709995edb2eac93567f35d2fb9d5cbbb97b11", + "regex": "." + }, + { + "hash": "4553ca588cd3975b9e443d34a37af732d74aaaad2c5de63338d37b183867b49d", + "regex": "." + }, + { + "hash": "6ea815cd200ac3e0001aa7b52dc249922950e63ee5eacecb132754aa605df76d", + "regex": "." + }, + { + "hash": "7789b3b135426a0096c7a1d2af5f0f57cb3f6eca40064009626dc76af15e6533", + "regex": "." + }, + { + "hash": "6c1e25e7d6b52582fd1d9df3c348f11ba4de2af557e0f1d37ad2b8e04cb7bd82", + "regex": "." + }, + { + "hash": "f4ee7f74e58c1e099e00b464dc7ee6ce99d93383536dc0cbce1a58a22630e679", + "regex": "." + }, + { + "hash": "d46ad29063fe8605451d41251d81b1e6b92d4efe93197803c29baa39e10ab0d9", + "regex": "." + }, + { + "hash": "e47c51d277f559c16bd3911a2d0c9bdfdc687cb8052105c7898d8b351f955e31", + "regex": "." + }, + { + "hash": "528b12b44b7b40422d873396158428576d9766a0ee41aacb66bb8509c645159d", + "regex": "." + }, + { + "hash": "374bfc36fa3db67c93ae338d32f719cf31d75b154ecd4c466c7d28e437b771d7", + "regex": "." + }, + { + "hash": "00f93ab3ca65e2013013314541dba1e5a0c7be66202b2e253b25896dbc4dc744", + "regex": "." + }, + { + "hash": "3d90f04bbc5bf86e0879a0ee1147f708c0ced59304f86f7e092c662bfae1098c", + "regex": "." + }, + { + "hash": "0e8487a6bf58b1bb00a5a65e808e6f98bd3a70d2a316be8badbbefc1726cb8c6", + "regex": "." + }, + { + "hash": "c487dc873796e8b38ea8bc2f80231357f324ea99e362b2ef68cb38d57a23e09a", + "regex": "(?i)^https?\\:\\/\\/stargemini22\\.angelfire\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ed0e3d95dfbe4937e409189a7613b10be5109cdb33e48f0d2fbe005c1f34d3e6", + "regex": "(?i)^https?\\:\\/\\/tantoroni\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5536dfbc2ab76ede1cf6fd70504918c77e855c1cb215036d3e94f7b7e29f4279", + "regex": "(?i)^https?\\:\\/\\/tantoroni\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cafd28d2143570f5662d03bba9eb772f5ab183ed67871a7fc15783a0ac147adb", + "regex": "(?i)^https?\\:\\/\\/tantoroni\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f47934b6f94eec915bb67323c21b6128d9d085a9246aed405ba3a34ebc3a83f3", + "regex": "(?i)^https?\\:\\/\\/tantoroni\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2510cd24c8c672b16f9da231b5054afdb314ab11795a227987ad6da9d646bad4", + "regex": "(?i)^https?\\:\\/\\/tantoroni\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f825d9c1f4a67666cbaa44a961fea8fad2552e686da84ca8291535ce777a71d1", + "regex": "(?i)^https?\\:\\/\\/tantoroni\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a822e405551fa0832956482cb5c8a7624b2e4e6607131eba83d8e17c4541f3c5", + "regex": "(?i)^https?\\:\\/\\/tantoroni\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8561a0475a88c5de02901443d7a7e68648207482448f55fd03fcfe759a9492b4", + "regex": "(?i)^https?\\:\\/\\/tantoroni\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cc61ac0903ae486037e90f639ed81e7e9021e1e2c4ba00ac7f38f95b268075", + "regex": "(?i)^https?\\:\\/\\/tantoroni\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb122075e195476d0af1fac85fd8850c33b7c44ca3c9d93fbc4d497116fb6a0e", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4bada7f9b4d7c99da30b1b9532a21f76485369b2317c4a75308eb28728d3e98", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b07013024d9f0d207ae3686bd728a9ff98aa8d68e5dee9450902e30d0664a029", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7161216d574a856a7ad0b026ca123e7baa4b8b63f519355bb36f45dee15d18ae", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b29bda541bb3b1b8f33fcc8eb9dc40a77a2c9ace8baca1ea80b62670b514c287", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbbe5b3cefe6be19e8327401940aaf1964d846c58a368add0186a2d7b40124ca", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3bcddf6a343949d7a3cf954a785bff50afb1fb2a113a5feb5b502cb2ebef921", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a34e0f2ba14f72ff4f9be749e1428e58e61c8da0f079aa387bde8c298472de7", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8974fcaa4ce6b37abae9902373669d63f76f839de5c4704cd7c3172b4efa67f", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71683180139a7ba2e7f15281486ac0c8aa104f28a5aefbb6da3d20c48378305f", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b9de0fe834b4e60a6fcc520e04e289c0ee6c24d880dbbbf5f03c39469e75173", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8962dbbd67cb0e528442304f91a0f0fe1254c50dcd4b66b52d8d2cb26f8fbd94", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2ffe7f9cc890a12533e2c7c5f6bc9945d73d657f03f533ee2fd012a7a31005", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad423f21c4ae7f4768a1449e2313f5aaf0ba4b557bf7bf9db6038f4a786520cb", + "regex": "(?i)^https?\\:\\/\\/viptransfer50\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65d0b5e68854062f3ace0f9ba72944a7f208a0f0ab91efc9a18bc42d6508d77b", + "regex": "." + }, + { + "hash": "495a5046c0d901b716fd8c79d488726d3f0d85f3ec302c8a62224232c4b9fb2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "48023744132f8be37f9307f5d8fa18d744fad54713cbc5a590fa3189ec3afa79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "bf1c2d953647086486d5777fc8a4795873471d9a396d36635384c8217d460ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "83a43d06a07ff60dba6648c5d584b41087f086e72f5303c8aebaf70e38bccb1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "dc3fa17c774e34ea256194c6b5465b1927f20723cd9cc0ef484bd99485a40238", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "defdbae8a329817e09ff44f25452a525dab69a6e91a115d901e71ffdadc7a64f", + "regex": "(?i)^https?\\:\\/\\/parklandswaynhw\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f12eef22808b0eea3089a08f2f26e488992a021b175fd4d86265682ac074576a", + "regex": "(?i)^https?\\:\\/\\/parklandswaynhw\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "406bbe888b1ef97fb572bfe4bdfa7cb31e23d53dd4e1617a0682fea49a527efb", + "regex": "(?i)^https?\\:\\/\\/parklandswaynhw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4bc343fe19d6114b266a4940771dd329563ec3f3c76c83e8e1386903e7d5adb", + "regex": "(?i)^https?\\:\\/\\/parklandswaynhw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fd77e089cf92beacd893901775868058da1eede397de3178b09bda13f681b2c", + "regex": "(?i)^https?\\:\\/\\/parklandswaynhw\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf116f63d69170c5e5826b3d98e957b4496ac9c3f73e3eb019683b0dfbb56d1", + "regex": "(?i)^https?\\:\\/\\/parklandswaynhw\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73641a1141eca9c2acb3ef60927bf0ddebc12092e4a1f653845c4dc931d71bd4", + "regex": "(?i)^https?\\:\\/\\/parklandswaynhw\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "506595999f387cf6b570f177daf09c26f99055be6f61e577e8b04eedef662379", + "regex": "." + }, + { + "hash": "f5603726626fb0316770dad5630e75c71471f44b41f10ee7a54bdde609ca8eb0", + "regex": "." + }, + { + "hash": "dd4ceeb6fbb1376b379d88337a74c7782dd03e1dcfea8d0da825971d19265c8e", + "regex": "." + }, + { + "hash": "75e865059e6664696353c447dfb8399a2abbe117691784f116627936f02b221d", + "regex": "." + }, + { + "hash": "9c284fa4735cb5a6677e35ff0fc2f34ae43980d0ff9585fd0988648d1e42c89a", + "regex": "." + }, + { + "hash": "b74e60582cecdf3f42df19dd24f0c5385a765176cba1230b948831b547a45ff0", + "regex": "." + }, + { + "hash": "092314c2b1260c31dbc719d443b4f4d594ae3569f9a2c364475b009245f3593b", + "regex": "." + }, + { + "hash": "c14df18cec4e622c7ef3657f935aa1f472a52f047492aa9612c7d505c3735ded", + "regex": "." + }, + { + "hash": "7e8a3cd2dc7fb219afc00da3cf007f3025620c319e2483a2fb06407b58d84af0", + "regex": "." + }, + { + "hash": "fbe1d75b2af695e50ecf35d6be3fda2f28561b649a94908c05c97680c1dc3b52", + "regex": "." + }, + { + "hash": "54a6c63d9f7786332b7eeae01635897bc918e511b5cca1337929adcd8ee633f3", + "regex": "(?i)^https?\\:\\/\\/3365714s21\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff93f05f365d2384428ac0928bc271954081a573c2bf7baf8f55d51fa96456f5", + "regex": "(?i)^https?\\:\\/\\/3365714s21\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "234b9ac89c8bb51605f6b17e18294e2b561982972149f75af9d02101b3775268", + "regex": "(?i)^https?\\:\\/\\/3365714s21\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "442fa5b7be35ed555697d7e947794a18a1a81fee58a23bb3018634fee1354de8", + "regex": "(?i)^https?\\:\\/\\/3365714s21\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b58d476a597fc31943d54ce754f7f4ef4f13582bbcb46d3c362a68bd894a70", + "regex": "(?i)^https?\\:\\/\\/3365714s21\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7333c71039f03bc0e4bbc006832afffc1d06a453ab53569b0f3d814c49c03d80", + "regex": "(?i)^https?\\:\\/\\/3365714s21\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0afbe87699e20e97ef39b26fc524d8fb3b3c4dd2510d0f7a3b5bbbc69b809eec", + "regex": "(?i)^https?\\:\\/\\/3365714s21\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdfba91088031cca5a72cb1ed4f0c0b714b18ba3b30382b8c2905451accdbbf3", + "regex": "(?i)^https?\\:\\/\\/3365714s21\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fba83b6061e0ecf1c51a9385d0455a924fd7de8897c19ea573c520fb0c317a5", + "regex": "." + }, + { + "hash": "c01e39c3b73e434b722c12600d2f558a705b78f9b4e137876c00bf2ef11361a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9feaf24856a190044df41f471fd09fac0d8b9149f67b2e6c95c2b6e88a47106", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6258fb2c1d367daa5c3379d669539e372071ea321b658dd42ae9c2d7b3e81bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021(?:[\\/\\\\]+|$)" + }, + { + "hash": "25bac7c174ebbfe242d9bee1eb1959144f8ee71ec8fab9eaf5c55fd47e2434c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8173c76b1598fb2f00bce2075cda386a32c41d12de53276a482d5f970991f21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021(?:[\\/\\\\]+|$)" + }, + { + "hash": "6baf9c721b2c8163641f3bdd836f1336a5611080cefa82abb5705d10309b70fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b40bbaa0915cac956f0db5a7f79bf067b322232112b761c078a5ff7a3e9018", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021(?:[\\/\\\\]+|$)" + }, + { + "hash": "893791dd8aec715783d8a1cc1b2eab0e7417da572453fc1fd9ac0a8a9542f748", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021(?:[\\/\\\\]+|$)" + }, + { + "hash": "667bf96d3eed47db113b0b4f40091fb27b55e87cca48a85b4c991cfa392d9bd1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7aef1e3afc2fc9086004acdc240ee3f4ca4e10d91ba2d3d04d372bcf4809821", + "regex": "." + }, + { + "hash": "d2d367346103316c6f837c387bc6c3424d13cff05abb7ad2ba21b4b2fd39cc3d", + "regex": "." + }, + { + "hash": "f8f8b5f1fdb167e1186f5f0d662d9b92aedf9da178da3b844dfa096b982af2b1", + "regex": "." + }, + { + "hash": "4eecbb2f4f9abc479aa579d01e67c1f607f238f24906386c4702c6f89c5a496c", + "regex": "." + }, + { + "hash": "1d9e55c40b43d3ddf58d4a6b2bf3eca29d660268bc3e71a2f3fb8cd77d7072ee", + "regex": "." + }, + { + "hash": "271b698f5c37f2d3d16d970b9bdbb55dc6003d1402f2418cab34a3cc800443d1", + "regex": "." + }, + { + "hash": "a7e38e2c37301d3959f5e79d93c1343f35e500095b90e600b942438cee66bfd1", + "regex": "(?i)^https?\\:\\/\\/augustussamuelakasweikume\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c29578a390a32895eae01ec13e719cfd60918c27ef8bd1b2826d909d43f6dcd2", + "regex": "(?i)^https?\\:\\/\\/augustussamuelakasweikume\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "237c21c7be3e13b1b0a6cc6c4614e10b7b0cbdffa356318ea55fbdcff92f7b70", + "regex": "(?i)^https?\\:\\/\\/augustussamuelakasweikume\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cebb6c9b538dcd185f7ea0dbde517ae73ed20485993387f2a55c1935eeb1dcb", + "regex": "(?i)^https?\\:\\/\\/augustussamuelakasweikume\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d8e499037d067e6e18a0dbf6f6b514c200cfe47c0f19f3ba186b2838b909235", + "regex": "(?i)^https?\\:\\/\\/augustussamuelakasweikume\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15043de668b3fd6c1d0ea982db4d19ca1543ed66da77575b3816eb2f85e25b8e", + "regex": "(?i)^https?\\:\\/\\/augustussamuelakasweikume\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dec47f21133d7bd0a08d3bb33e9398eef12db8cce5b7c02b3e69b7ae49b56c80", + "regex": "(?i)^https?\\:\\/\\/augustussamuelakasweikume\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8715172206f9a41f3be1e1eb6e0d2bd3e6352c5a6ba7cdab5b8d5fede2812b78", + "regex": "(?i)^https?\\:\\/\\/augustussamuelakasweikume\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d84d0783272943e6a4f33f881486ee3b307c84c9c272c9ec4af820be9a47a46", + "regex": "(?i)^https?\\:\\/\\/augustussamuelakasweikume\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afa1fbc004b805d8d90c55c3adb5969cde40838ecb6a62b7451f19280be7563c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "ea55e49ee4bd3c1871101ed63329a9af9237c0b8c0f5780d11a24ed235a634f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "a1935c6f0ecf780970921b421e7e1f48e9e983bc6c96aa99e37ba56af4185bc6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "5d9cf0d936f1033a7829e986d9a3b183dbda4348a2b270c5158f087ec0da29c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "6d24bcd60bd3b9c7cc1fcdc4436320a95c3b6ba8ac78f36f45f2189e370c6018", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "6d926fa5a031c8027dd56ed421441dc808bb501473eedad29bf7e18012c6fcb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "0ad2cf0f7842721828583eeeed7273684bad4dc19df035ed6fe7d98fccade890", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "28b30d8740d85824e8c12d48e7378db3a41c3026f715f88569f68e97f0f24232", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "65ac382027ae349a881a6cd5869c48d9e76f980ae0b6e84ab187b8fdc089089b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "705f0c7826cde658375e1c83653fb06751beb3b9822419a18a98777b51a72086", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "ef3fd6449b81f49a3d89ed277f5f68db390f703e4c42cd42c53aea39bd1062a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "078811757e90f4e1d25a1f5fba54bcc50d6f1dd5f9e030d7024efa7cad41baf3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "c0a37528d434cf71afd6a64f2fc0249d80c0d09168427511c781933ab2b320d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "07a90e4fed074679ac535977e76b830c64597d029883659527bf1b949dac5dcf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "e56f1a92e02e5fb7ae48f6abc612a136bcfd31ddaa43c419e3322d24162ef03c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+02[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "4eb88e1ecaba962c5467a92d9de78511af86168b031254cd735d000e95cb5fd2", + "regex": "(?i)^https?\\:\\/\\/blah\\-hotel\\-habbo\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1c85a9f7facc825f15c6d297aa0e431c35d23f02e52e8d927f146495633f3e6", + "regex": "(?i)^https?\\:\\/\\/blah\\-hotel\\-habbo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a380f17caf673df328fe791ec62512da8d7d28a4f14630d7c4eb4767008246fe", + "regex": "(?i)^https?\\:\\/\\/blah\\-hotel\\-habbo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad43922605a30e72558c90f016df25b5c25fbd2f0a0f5400b3b403c7c4d9c03e", + "regex": "(?i)^https?\\:\\/\\/blah\\-hotel\\-habbo\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c05cf697e5a0f18f1a4e38d9718fb9059a980fdff493e5639a7ea4cbde91836", + "regex": "(?i)^https?\\:\\/\\/blah\\-hotel\\-habbo\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba5962998ffb12cf9a4f9d4ede2f2eb5c6df9278d19233002c1ce3b09b0bd8d5", + "regex": "(?i)^https?\\:\\/\\/blah\\-hotel\\-habbo\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c0502714fd5008d41d06ab751ce002c08a722ab3c4de83c4c1a22cace443a1", + "regex": "(?i)^https?\\:\\/\\/blah\\-hotel\\-habbo\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc8297d4afd51abe29cd779f3420b064f4696ae48977d0939ba42210fd9175ee", + "regex": "(?i)^https?\\:\\/\\/gmail\\-account\\-login\\-blog\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17440cf871ee13e596fda38936db33d09e1545e298a4505e8768d450cf4b222d", + "regex": "(?i)^https?\\:\\/\\/gmail\\-account\\-login\\-blog\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d10aadcc89b133da8b253be5286af38f38c6950a62ae2246b3606a6b5fbea18b", + "regex": "(?i)^https?\\:\\/\\/gmail\\-account\\-login\\-blog\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38c50932262cf5046fa32bbcf13ec3d2cffc703e05570b82af7413ad964bb174", + "regex": "(?i)^https?\\:\\/\\/gmail\\-account\\-login\\-blog\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea65e74fcca3de1e6e4e70098d4ec6bded549bf69a8bee95cb2a58e95483ddc8", + "regex": "(?i)^https?\\:\\/\\/gmail\\-account\\-login\\-blog\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c0a51571b7b615c2857ec525ba065a86714436e2b04420928fff5db3e94de62", + "regex": "(?i)^https?\\:\\/\\/gmail\\-account\\-login\\-blog\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8f111dbfa04a2a568c7f60060f1997e503275dfa622e0b77d06e58d9a041762", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+03[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "fcac7f4514217a40b5be2a250f490c0b9a1cc82aa8beb1b1594f71a87f38e6ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+03[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "fe3c0a6567a5582a21ee194a88154c8fd3c2b22fef96e9d0fde3bf86724f9ea4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+03[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "8c8439b2a087a025a877d5b6250f87d637a775e0c9497d6dd2ce3fb6b9270830", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+03[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "71653fc6b2ac21b4b4181325cce964ca51a68a5bf0ec5c4d480b8ed1dd8041a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+03[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "132334a99f5e21628997f328c2f02fcec1ce19ee8ee412c8876e7e518d26a283", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+03[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "9586f53f2cd77ef506cc29083b326034df7a9fbe83cc8858e25be0f99e5d2647", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+03[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "0b00678dc7a6924a33ab0db984d0ad8161f72f7d1348e0f4b48bc59a65247392", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+03[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "8a309ad2a14adde1e6b65ae11a7ddcd06f7b9d744cb28e37c39d023af85d3c62", + "regex": "." + }, + { + "hash": "0f2c74b6141cd4e909b8f1c008c3cecb2b3917b9fb3799b29e96c062b45c85f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+indexx\\.html$" + }, + { + "hash": "0f2c74b6141cd4e909b8f1c008c3cecb2b3917b9fb3799b29e96c062b45c85f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html$" + }, + { + "hash": "3c96df562a299f78a3b9fa90dfe4b585d2d2d3c47d4ade28a63a59646b02c62d", + "regex": "(?i)^https?\\:\\/\\/56561545188\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9db8d8b190a19045f681b94743d237c9aa584d22d331472d3d3c04c81a8a221", + "regex": "(?i)^https?\\:\\/\\/56561545188\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cc5e8dd8a8796df2d3814b1af2e7f21e8d6ae5ccc8e252afdc33847b8e6be65", + "regex": "(?i)^https?\\:\\/\\/56561545188\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a63e00990bed3d97132b7582a39a8a76d0ce8364d56c8dd8d3e1cd9086e33ca", + "regex": "(?i)^https?\\:\\/\\/56561545188\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89ea331954ae676413bda83d627a8364dd487af94d696113dad4f6ceb44fc0d8", + "regex": "(?i)^https?\\:\\/\\/56561545188\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b92a2a7c89c5244518db2cec7422fb2b1c16168eb6623f3ed26cb9c3e3cb12a7", + "regex": "(?i)^https?\\:\\/\\/56561545188\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3228a0918e293a3cd221a762bbc3c65c3cdb55ff2b22c3be74e887fdd3b2482a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+event[\\/\\\\]+all\\-chambers\\-networking\\-31046[\\/\\\\]+sponsors\\.html\\?verificationCode\\=(?:\\[|\\%5b)eventInviteeVerificationCode(?:\\]|\\%5d)\\&pk_campaign\\=Event\\%20Invitation\\&pk_cid\\=43744\\&pk_kwd\\=43744\\&pk_medium\\=event\\-campaign$" + }, + { + "hash": "3228a0918e293a3cd221a762bbc3c65c3cdb55ff2b22c3be74e887fdd3b2482a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+organization[\\/\\\\]+2309[\\/\\\\]+subscriptions[\\/\\\\]+43744[\\/\\\\]+2309\\:43744\\:5029b2e3\\-15b3\\-4c75\\-8dbc\\-ea0e3e3d2364$" + }, + { + "hash": "3228a0918e293a3cd221a762bbc3c65c3cdb55ff2b22c3be74e887fdd3b2482a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en[\\/\\\\]+organization[\\/\\\\]+2309[\\/\\\\]+subscriptions[\\/\\\\]+43744[\\/\\\\]+2309\\:43744\\:5029b2e3\\-15b3\\-4c75\\-8dbc\\-ea0e3e3d2364$" + }, + { + "hash": "6c70ef080bc324dae5a0f374ec35f96ba685d493d4abe38dd36c2bd8f5704a3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+works[\\/\\\\]+support[\\/\\\\]+gmail\\-sign\\-up" + }, + { + "hash": "8feb6f74a3e4dea2871b3b468306dfeeec2a128b303f7aef7c585424aca71635", + "regex": "." + }, + { + "hash": "fa7d58474c03a8f4b66dae75cc1f29c5dfe823565f38b84ca386d3a97507d03e", + "regex": "." + }, + { + "hash": "61a46391e6b442a7c352f119df37e3ebcf398e430d6d54c888cca1e4d91a226c", + "regex": "." + }, + { + "hash": "bfef465e5dfc1109396ec49c10186194ca836bbf93f5efb8e0fb8aa6b318a6d7", + "regex": "." + }, + { + "hash": "d250d2ffbe6f44a1f4b203b962d175cd9796b9f8ff340814d4ac53620bec1313", + "regex": "." + }, + { + "hash": "ed802cdba5451913bcc983a6b3259945d6d3a34c3134879d9279bcd0cd148511", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "d650e08f8333a7a6b7f1bd3dde2251d2ed885ac345d7476f9cb9fe37e8d4f31e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "f006e322a30203d71e4fde5a4f5180da9232dabc0027e2ff4cf6863be7668531", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "9182d3d34f48361ed22e34442349919499f720d431eae9feee156e6ffddc80ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "673bee5c994dfc91ecbcc1ed3216b456a743e0af1d9ac3c1fe7f6c4aaf1d31a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "b481e1fb0f90fc185c2b85a44527253ae2dfd1a01ad5b4961bc1dcd64106cd21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "6359a5bf14ab111cd39916bcf80fbf5db71f00f6bd6c2cafc76198edb7df296b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "95b4cf4c6ed753d6f6f557325ecf31751a34b9a4ee5f3c6e7967c71c7bf77901", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "ce6253330182d1b2c3fab46b2c6fd9de10d4f34e4f01c11f07207e23679e96c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "5895d065270cc759368b181c1276024ac2864fb5568402fb31b0f94782dcb937", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "18de9fee31750175b33f2d1df8aa297eebcfc33719683628fc0f2bf52a788d07", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "8be0a8f0ec3e4ed299845aa980f5c329bd15db0e80ba8d0ba5a950fe345f1301", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.YmlsbGluZ3NsZXluQGR0ZWVuZXJneS5jb20\\=\\%20$" + }, + { + "hash": "96895b60f9e7193eb6d6fa05a406d0a28d932b4cc225b49b9379f31e5e9687da", + "regex": "." + }, + { + "hash": "e1584e22a9ef56762265d16eb650fcbeb0d8ac8bb5e574d209aef889c24a5eac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect\\.html" + }, + { + "hash": "ebba71e7f9c95802009df4f98a7fe51b571f598ea438d3914b362eaba168bc9f", + "regex": "(?i)^https?\\:\\/\\/684113c3c3\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ee364993aa2fb6d5d2193e40863a8d3b853a3d47c418e2e7eaa3cb33acd6228", + "regex": "(?i)^https?\\:\\/\\/684113c3c3\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8970d47e9fa887ea2d341ecac0e36eb23160797c4ba054501bd1885a89f3312", + "regex": "(?i)^https?\\:\\/\\/684113c3c3\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f129738bfc42d52d49bbce28688bc106afcc4e31ff761081fe2c0920566d9e5", + "regex": "(?i)^https?\\:\\/\\/684113c3c3\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de235712cf4a810740a60937f361b7c61b4f9b7d1c0ee1069d657985339991d1", + "regex": "(?i)^https?\\:\\/\\/684113c3c3\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05563e6d7462def4265ab848db96d1dcdc4eefcb4d81d2b97c47e85d52914c36", + "regex": "(?i)^https?\\:\\/\\/684113c3c3\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f803e7800c4b92dbb70484b0476e7cf904de79e9b13f1bb8062e8337c109b207", + "regex": "(?i)^https?\\:\\/\\/684113c3c3\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e96d36ac89b0f4058ca0eb85661dd3fd40d91a4f072aa433533267673c67bccb", + "regex": "(?i)^https?\\:\\/\\/684113c3c3\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fd2876e3279e96437451a2226363acc1ebf1f77a68b45315acff4f387260d1b", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "031fc9ebc3eaf23aaa2e0ffaa9b66a0edd9d8ef549a65d58de677936f39c2dc0", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a822dc1f2ad6f5d32d5124d2067a07dea062b0f743eda580ee2ee88821c2942a", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61634170c87bd888b6d4ee5f21ae3c1d7164487db3fbfe8a90ab5a74e1c7a45d", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "844f64b2c3014ee0ee5be105546df8784a888d085812bc7c79301933f6569159", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f424584a6eeafd95ac6f591546988ef7ee8724c7b0097490c2eb2d966ae5db7", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bece11462eb0ce5949ca17a7123cb7afa51fd1ed74de75d9d411d743009ca0e6", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7ae62c430c3662db6a90bc4cf0015d5651fc6bb7f9c4787a8dbac171bf4cf33", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5980ef32739dce93780b77686ebc46bc2ee7b79eca1211fbc14c10978df8340b", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a2a6397a5b2673c5ed552fc0be82b415d7e68e01c1808f00bcba3b7aec07fa8", + "regex": "(?i)^https?\\:\\/\\/cashappre\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "113b3b50499821383f640430de36063ba431ee64655a15bd9c95a35de4528418", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9063d9159ac3f542333a3d89a5bf8e897a55dc5073ff0583619eb2c226e36d80", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ec74187632de5450e75cb0ea7c022e458d9b124c0faba22be4dbf442cce4427", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6286b27d2b9b825f29fd40707851f4f78581784e2aa1502e89f91cac29f30f01", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1bc403c14eab2f7115220b51a3fb734f682aceb221f709d7597c0acd4118359", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56907fb2a959af7168ea3d23cb80202cd5762b2304f52bb850cc2e5c075a1b1f", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1e3d5d6cddf79fb143a9cd890c51b034cb3b75fce0ab32950e204f37c26384a", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e62890a42d9e9d982a28e33e0105fb1104249c3d9ea6d8711c23b80ec054372d", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f52b57ffb1c3cb3826c9178858f78e8871edb27654fa163471a92c05b03f653", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9f0e81770b613868d9659c0775dbcc5dd8d3295000b305562b0271bf160548c", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a56c197067b4967fba4a17b02482bcb80d1423defe548f8862024b3f273bcca3", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d3073773665962227a51225a0c2ce898d8ec943719242350bf84e04dbb7ef2d", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8313fe526ddb409402f742d43282ea37dcdce9a4752399ee0ac8cb6e924f250", + "regex": "(?i)^https?\\:\\/\\/twpassiveincome\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47717b8953e72f07277e19d253d5002db6ed0038601fdbf3f8c6005c98967311", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+rowan(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd333c91b5f98bd5c41872299f4b740d43c1e434e25cceb47c2db6d6a956903e", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f65d30c03cb08e98ba91e3103edf265efd44831323e6687d563473c5e25fdde9", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a872b2f8483096059c219d1c40704cea9237a943d11ecbac7dd7e5e00094e262", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2085fbfb357dc72decaa23220b473f650a132e2fb764e69b17c266f63748594", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86c0c483a35b436a56567e81fd95d192b28874a05c1802825ddf8fabd238fd68", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93b4e08f6d8777a1ab6e4fc0dce39ed63c003a5dc0add0d8b73240d8222ba9cd", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e17eaedf4bb6a078085c8bc07b12bbb891314113ff205121a74e212f8440a4c", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f11ce64986886fb3c83a8622ae579235b47731bb7a9f6e2c0359f6fdc1f03475", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b97e9e35230b4b52dbc10f09ec0cd1c340ec5143bcd842c1a2971a0469deddf2", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04381ad0eb52824baab8f6426c778cc811462bf973030889011dc369d1c12b13", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60768d117275ed62071b0d9c98ead596af321259ebbb015d7accfcb179a963c0", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c31f773d90be6f91c90af965c51c8f235842bf11e781db86a2ff1b246b3a48f9", + "regex": "(?i)^https?\\:\\/\\/dhlsservice2021\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19af944efce4c005ce1f332a3905b322222f7818605eb4eab7fd6948644b16bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix_clone$" + }, + { + "hash": "19af944efce4c005ce1f332a3905b322222f7818605eb4eab7fd6948644b16bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix_clone(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a6253fe0c873fbbf72028662188ee0b7241faedd9b0b7c4a731931d7f92a939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-frontpage" + }, + { + "hash": "af87870e521e3f6c60a806e244171b17c5bd6d9cf84bdf612f13d84dce937f8b", + "regex": "." + }, + { + "hash": "8593c28067b586e7dac8c5ef165b87bf6b7521e20c5d18bb82c022ce83de7810", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "2f8fcaf2cc6cc8015f2327fea1aaad812d15cf215ebdaa8856a34488845e9622", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "2c48dbb8e7bdd209f3b5ac90b9fa0e711257dec8b53490c6d0161f5bdda00669", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "38149d72feae7a63f0f21cfb7e274f4d50c88be2c171aef2ea3b6ac3d57dd763", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "94cb741b0d9ce26e511cd899a3d57939bac370b0ffc14e138da4b8b88a190b4f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "75679458573d62e3726571399e37cea1dd37636e84e41b21aa9cdd2c8253e995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "fab99977535ba84b78cbd0e913fb318bdc305cfee1c3e292168dfcc00d8e0043", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "e75486d9ae4b75cb30826c139014103065df0d4eee37759bcf5aae0c28b0c458", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "d785e9b937d7f2f55b94565cf4ac5da50164cfc0f1dd8d291414bbeca2de52e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "34046fc5a0f1b6c93c8a0fc55ff8d169b7759fcf6887f4a6f3ac3d263310b6bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "942d1f74edd217f2f3ebf110502e6c72dfcf73a986f35baed3b8c647fd5fbdb2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+06(?:[\\/\\\\]+|$)" + }, + { + "hash": "38149d72feae7a63f0f21cfb7e274f4d50c88be2c171aef2ea3b6ac3d57dd763", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+06(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1416908b3d07df068408d4e5c295b69ebf7e5e11da98bf111b03f1ee285c6ee", + "regex": "(?i)^https?\\:\\/\\/peningaverolaun\\-framer\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ab61035d8c0a70c099adfa54a804e9f5b516d023b48cf6aad34966a13b5b093", + "regex": "(?i)^https?\\:\\/\\/peningaverolaun\\-framer\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22986bbf63995f6531cd6db25120694487af27b18c6d155259f254c7b76abb1f", + "regex": "(?i)^https?\\:\\/\\/peningaverolaun\\-framer\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ffdf99ccaa192a516db5ac3f0ef1d00dbbe6a7955a967f841b4f671ee78775d", + "regex": "(?i)^https?\\:\\/\\/peningaverolaun\\-framer\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe6e3cbc7302a6ce1cd503db0393b5f39a1e405ff872a9c1e37c7b6e97faee21", + "regex": "(?i)^https?\\:\\/\\/peningaverolaun\\-framer\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3425a038b230a772e49dcc2efff95a57b7628e7932659ed8e1f950297e6081c1", + "regex": "(?i)^https?\\:\\/\\/peningaverolaun\\-framer\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70b0369c4cb62f2b94ec64131d81c0b82140bf02cee91d0669718bfceb9c89c1", + "regex": "(?i)^https?\\:\\/\\/peningaverolaun\\-framer\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bd147416533670a276b0f3f4b5c11b43be6e79c6b12c08ee7d516d1369b08d8", + "regex": "(?i)^https?\\:\\/\\/peningaverolaun\\-framer\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01e4fa1884b77886b0f93ef6c13ad5b8966d99c4a710b087920f8b5a665ab6bf", + "regex": "(?i)^https?\\:\\/\\/garenaofficialfree\\-fire\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d624dcc7e4132bcf7353c24d88d4e116e11a27bd5ceb438f7b90da4f63b16574", + "regex": "(?i)^https?\\:\\/\\/garenaofficialfree\\-fire\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45735f3e2613341b7d5170b7ca141781fe6985b0cee6184fee03661d79bec0fd", + "regex": "(?i)^https?\\:\\/\\/garenaofficialfree\\-fire\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00e4c61adcdc95875b8660e0ffcbdf00a1e704709b3a1ee598703fcbae88da7e", + "regex": "(?i)^https?\\:\\/\\/garenaofficialfree\\-fire\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09dc27a11ba4644353da8e1c43ddef020b2cce52af410c029f3704c1591abf04", + "regex": "(?i)^https?\\:\\/\\/garenaofficialfree\\-fire\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e18768b36b3b477eecfbe9fb1d86da0db3a19567d9db75f2d7197f7d43968520", + "regex": "(?i)^https?\\:\\/\\/garenaofficialfree\\-fire\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e0425d61a8352c38c9963c0f26e35a06d040402fc7071a78be9ceaa3b2c7748", + "regex": "(?i)^https?\\:\\/\\/garenaofficialfree\\-fire\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97479c38e8131870bef0585b6bbe903a3fbc014f4a0517d2893ca9728489acb2", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f84a56f98625cd2eea2d2fbf2e1d40a61d45960f34773c4ec8c4706934112cc", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c977bed1cd7cece6ea64bd6d1cbe0c958e3b167d1b9dbecb8a54c9887617e65", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acf462d077d02b5da9eae3f3bffb3e7e5bc06d25474d5c018ce7367a69de15ea", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "250ada796dd5a0c6b060b9b91ecebc1a488b851585d8b28557e300a2afcfe793", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cabe682ad2492d32b3235a763bd9151f67061af74ec0dba6ff003ffe039324f0", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03f6e15be4839bea8a882d65cb5d9f1ce7a11e248cea460a1acb0f75d6942bc3", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e31ebba612e863fe26911fb48161c204f9bc18b8a77c0d09742109673369241", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad836b80e6d6f514e203baaf31b05c32db62a399d0a816d0e3011e2e8f5ebbbd", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8dc535d78e133dc0fb7c6108d1ed382c7e0502f7afe101156de83dbcf4b7e515", + "regex": "(?i)^https?\\:\\/\\/fast\\-loading\\-page\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a671776e723e84e0cc4d23c189428e7fb45fece081c2e2e5340965e036052fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ado1\\.html" + }, + { + "hash": "cb9a702231ea17d04083cdde0a50c66324e7954e4681a5fd75534563c290a8d5", + "regex": "." + }, + { + "hash": "4d84091e14f24f2c7435df213390ee03b195dfdb022e966df4a49a6904919de1", + "regex": "(?i)^https?\\:\\/\\/transcash\\-france\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6d54832233cd134ea7f7c22aa81ed213636aadca533ca1ce7f85cb7e4f79f7c", + "regex": "(?i)^https?\\:\\/\\/transcash\\-france\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1ca5a2d3dc2083539b41fd22c100f3d9eaba41e599a59cf80bd00765b292811", + "regex": "(?i)^https?\\:\\/\\/transcash\\-france\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04f9d2b636379e02b296c5ea2d71f0746f4efc0ac741683d1e32db2ef0aa002e", + "regex": "(?i)^https?\\:\\/\\/transcash\\-france\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "164f2036be1108a62a4618f1f617a61d10723440dd748e119d5bfef6935a9be5", + "regex": "(?i)^https?\\:\\/\\/transcash\\-france\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fb83fe94c0cfb7cd7d9475638ea3ef38b2caa0511dd0401f1d5e68a8859c7dd", + "regex": "(?i)^https?\\:\\/\\/transcash\\-france\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "702acfd03ae8e9fe47f2ab07a10a75579e461f08555e24c517e410fe3f549a43", + "regex": "(?i)^https?\\:\\/\\/transcash\\-france\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4760a74ca07666d9e953efca280e5a21785fe587accde21e78b7b343465a78f8", + "regex": "." + }, + { + "hash": "ec0c7b286275cdab2ec8e6fa24c7405d116cd0c8499d3cca4b85c7f657144609", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4b53c722248f85df0b6d51b6a06b29be8105b2f20f08a2636fbc4424cd2d1f4", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8079df50204ec880605eb148af8ae8a3de6fa2fc4ad8981aa1a615788d28bd35", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94cbdea712adf1c8dff276a80d0cfb22b48c0470d4686b391bfc0df7a69be6c6", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c82634515ecbfca47bb7708ef2e6d0c40f0a76fad8c03c2c7acd1b0d6520dd9a", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68b239a43e19f03489c1c2434e5b3f988c78b4bdd2f6c65ce841692ac4a6d0d2", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b038340564cb5f4f12e756c74d341bc56144401bc515a0b3d1d0f964c6a38f3", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee40abef8ce2bee7768b632f950063eb8e54929e4c4920270b79ac4a9013377d", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e941ff62532bad13f1734970d6a984d584b2fcce7626a5f8ba6c59889ff5fe8a", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fee1ed9518c3452d3e568663d298ac4dcb716fe9cf15730ad03255fc5cb953a", + "regex": "(?i)^https?\\:\\/\\/buyneopoint\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6def3815850f92ad52e7f2160696f19cae661b888f48047ce54c7b8be6f82b70", + "regex": "." + }, + { + "hash": "74e27c62409446fb8668b08f88637e8d804c32e3ee6bd720cb56ba3b4756a45d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-project" + }, + { + "hash": "207998395042a9fd56be1b23e1ea077d998e1d8d8f154924bc85651928f47305", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Clone(?:[\\/\\\\]+|$)" + }, + { + "hash": "25a87ea5eec298b6ec89ed3dfd36d438831175e065c1efb6572741611d18641c", + "regex": "." + }, + { + "hash": "a7ea16a30972f3a5268a9fb582ae219a3054252f4438608f09ec0a7f041fdc46", + "regex": "(?i)^https?\\:\\/\\/m\\.4ivwso57rck1\\.com\\:9250[\\/\\\\]+account" + }, + { + "hash": "3e32200996eb9b2acc18432b1682a6ee3d298dd1b7dc463a4a935f35982e6b5a", + "regex": "." + }, + { + "hash": "6e546536993ab5457630e5bf1e1f1f0d8f90c833c1408f23157c573b18dd79a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Apple" + }, + { + "hash": "36a145969ef7a7256ec6d0462b053881aaa911782aa5b1a7d2e32e6373d95246", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Instagram\\-Login\\-2" + }, + { + "hash": "b9ebca58f71e9a9fe7d9bd4e23a3ec7893d18c84bfa39944e89d72eeb56d69b9", + "regex": "." + }, + { + "hash": "f6800b1a512cb0ac736f282bbdc7cd6377d72b35b7953f011b64daa9e1d9f57b", + "regex": "." + }, + { + "hash": "cd603000f59cc168468620d3c9c2a73a11996bf8b863c8f25d7ec1a4325753bc", + "regex": "." + }, + { + "hash": "88c7c23dce4df4da3bad977c16db8cce47ee660ecf370263b502b699fbe10cc5", + "regex": "." + }, + { + "hash": "a9ca43cb1707dba4cb3e123faf49c4704ac1bd3c8f2a671a4460d9dd125ffb81", + "regex": "." + }, + { + "hash": "c4700b4d9704ee9276c1a8af074e175ae22f8c9be5cbb279db450756b1633976", + "regex": "." + }, + { + "hash": "de50affbc7fd12ae53e126af49ca0dc8c9acd60e9f9d9b2ebb5d5cf4a21849b7", + "regex": "." + }, + { + "hash": "a96ebdcd9fc1d9bd2de886c3fa5536168585ad48b00e9ce6f51b47a6b347d6d0", + "regex": "." + }, + { + "hash": "6414b5e44998cf9310c24f0500dbeb251792e4cb9d19b784ff9fa682ecac1c28", + "regex": "." + }, + { + "hash": "1e3cf518fad93dab92577f7477e809e7e9abcb0ac603f674fd283d9e839462aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix(?:[\\/\\\\]+|$)" + }, + { + "hash": "21cec23c084c45f661f584ee952fbdc468c54acbef5e3600b33aedd047f9699d", + "regex": "." + }, + { + "hash": "2e0439ac2f284d6bbeea415038643f33ba0ec3e7558507a7d6bf77a72c769966", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e6106e638463b1ea5836a00a570495f61ed57e36fede28e5009470c808ef82d", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b8486363ecbdae3abf6cc47c93f41823f2c37f4c7603d972326d76fbf15426c", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa03260958fb0357ba2b76cd9feffddd2817f4d2ba4e85b27f19225fe85d5f74", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b8de203913ca6fa59393b0114028f143d89fe66c1e9731c20a3bc23d5c274cc", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "880943b00ee3efe9e06bf23f3532416157bdbece1c037d34aad37010bfd4d235", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ce602cc0f403984f4515d1adbcb6067292622a5c37ec26fcb45410f286377c3", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cc78f775a34dd28dd6e085be242f7a3c507caba65de66a0f0c55ad1ae657a23", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "204981adeaa975a1ea456efded67ff21529bac8d6cd7335fe5fec3a1f1efff46", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "597b24531236669d53fc543e59e30b43121f83a34fe4471eb95cf1c8aaeb525f", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60d9efc91e2f21d192e08c06b3905a735a3f301d45b59f725d7427d9f1100d15", + "regex": "(?i)^https?\\:\\/\\/policia\\-gmac\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c94ef35946cdcfa576701fd8a4a876f10ac12e2d3fa4db875448b21b8fad0761", + "regex": "." + }, + { + "hash": "7aad9ffa8a283e050426cc78ce48659212f010f85ef765132cdba6926af2e1f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "03181e46877872fae2fc66f4108ef94f7a2477c2952b7e0428b3d771cd556afc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "72139bd98f3b957ee3c5fbb1fb94e18cc6310bcdd5a0e67b4affa99d526e57d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "23f0e0f83f3bc2fbcbbbe16cc315f9244460e9c434730957aae976fc18bd0d7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "f7bef470d880094ce68dacb9b4d77b1da4a32873a3712485b937875e18c29c1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "f5c136fd927a1963d71def6bc53ec0927c585752a1ed008cb5d36810176c540f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "bb229747a50c543f5612748eb47c13b36c451dcce6ade5419013a74dd8e65650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "1687680b288e5ddf73777e2af601f080314404e4b93c927e30bfad0ffc99f7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "8fed68c942a1d561caf6cb5606cc657126819419af23784f114e2498774ec71d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "6d57d2b2246468bc294d36312d41c0196cf3c815c84ba46e0b1943d25777b8ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "4db761d3450b4a1aed498402a18d8b0b726d837337c061945f7757d80928c85e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "9d1e3074315c89017d1a4477f60c9678f40a8d4e780b932a91c568c5fa6fb04c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "8be022cd708229a6e98cea7f403cf05c7eb753c25ad6c1379bd3b598606a7310", + "regex": "." + }, + { + "hash": "8423d0f91bde5131f29b4e4394ffcc74c6809349dead5923d065201194932f0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB\\&m\\=1$" + }, + { + "hash": "d43ba232c7fc7e97f473d384f40b5dcc5a210e47e6eda4169e991da84dd2f072", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB\\&m\\=1$" + }, + { + "hash": "251e8192fbb50d70fb507e0a857d818fe6c617389f859d905b3d0ea721041230", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB\\&m\\=1$" + }, + { + "hash": "c4879701cc00dc490077a645a0e699e5d2f19065d7272cf53e4a414c4e98a6c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB\\&m\\=1$" + }, + { + "hash": "1eaf05a262868716d2a6b6888e7eaba1424c569796fe1555e6546c9a41a40dcb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB\\&m\\=1$" + }, + { + "hash": "eadea55e4100e7f361f526facd86ed3c9703b329216e7065f0a72c6f2faa14c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB\\&m\\=1$" + }, + { + "hash": "da7ac625c7ea67ea1e0b3db4c9dd9b2f099b7997b493ab886dfbf7f34829dcbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB\\&m\\=1$" + }, + { + "hash": "706222c05adbb3ebf865758c6b5753bafe9790a451854e8a42dbcc394d1e6a8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB\\&m\\=1$" + }, + { + "hash": "8423d0f91bde5131f29b4e4394ffcc74c6809349dead5923d065201194932f0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB$" + }, + { + "hash": "d43ba232c7fc7e97f473d384f40b5dcc5a210e47e6eda4169e991da84dd2f072", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB$" + }, + { + "hash": "251e8192fbb50d70fb507e0a857d818fe6c617389f859d905b3d0ea721041230", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB$" + }, + { + "hash": "c4879701cc00dc490077a645a0e699e5d2f19065d7272cf53e4a414c4e98a6c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB$" + }, + { + "hash": "1eaf05a262868716d2a6b6888e7eaba1424c569796fe1555e6546c9a41a40dcb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB$" + }, + { + "hash": "eadea55e4100e7f361f526facd86ed3c9703b329216e7065f0a72c6f2faa14c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB$" + }, + { + "hash": "da7ac625c7ea67ea1e0b3db4c9dd9b2f099b7997b493ab886dfbf7f34829dcbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB$" + }, + { + "hash": "706222c05adbb3ebf865758c6b5753bafe9790a451854e8a42dbcc394d1e6a8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?gclid\\=Cj0KCQjwpf2IBhDkARIsAGVo0D0vJu1_FOz0Howf4U2t5q\\-DdNP_od8xhLTkcejjeHtXDrpt1P\\-1PBEaApM3EALw_wcB$" + }, + { + "hash": "cfc84d4a5836a2de90bd6f8698e1094643d97e8386298e60a2006d7cef935848", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=kKvbRAEqWr\\-2FbULTumgLjWyA0wRolRMP5lYO83kELpwIwFyj\\-2FAa2\\-2Fy1cU7\\-2FxLG6VQ92PkHb13EF5fpBZumtONCA\\-3D\\-3DkeWs_K77VzW9arQa1KK0lxsbQ40OKq8OzkMNK1ix7kAEjQMVz2ft0smg6RPMNFWOLXYGg287p5NTPRx\\-2F3fT8JnImRsdRdHt5d9FUc68NKWRY8PINxRJtBpGNYFIvyMBuWaxiQDK2GjkYGQo7TAQ\\-2FxZDctZ\\-2F9pTDFx4IiXvc\\-2FKzDiVohPmFzokck5KkRYrF8B2LJLSrpQ79\\-2F2H5FTzBVQBn1BvOiusMqwOkxJdy\\-2Bojoy6IWEg\\-3D$" + }, + { + "hash": "f479cf0872802353bbcd93d1c8d271cd3bc7e68b59429fba2922bbeddd817783", + "regex": "." + }, + { + "hash": "29641f49fb80e60eca1e505105565076e44f8f6e3f2a39b43a8e49c6dd251b38", + "regex": "." + }, + { + "hash": "2a88b854787f81542608da4f4352a7311823feb880c1f2dcda1a21900640b3d9", + "regex": "(?i)^https?\\:\\/\\/www\\.konto452142342342\\.online(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77920fc0a09cf59b883e3879399947d3555adabd6a41e749aee33439a64cd1ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "e7879754e1ff3f03b1fe9b4bc822697065f01f87d507beb5312569ccfe1518b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "df887e23598672e531f9bea22b4ce0c762a018ed2109f9faf5aa93f200444378", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "d0280bf7e72fa559e194250a32461c4822ebd22c9301b1c2d634be30b4fe5366", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "bc464a75cee3d3099bb4af966e85bcb47d40ae9e7cc7e2dbd3f85e608f85952b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "befa29505842841b1a72c2e3d3bbb6cc94c8f1d3a82f63d0550523cb92f0859e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "a6cc3fdd7ff37dc24a244f84ca49cb4825a86e854110ab2a808c23f48a38ed6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "77920fc0a09cf59b883e3879399947d3555adabd6a41e749aee33439a64cd1ab", + "regex": "(?i)^https?\\:\\/\\/orgfra\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7879754e1ff3f03b1fe9b4bc822697065f01f87d507beb5312569ccfe1518b2", + "regex": "(?i)^https?\\:\\/\\/orgfra\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df887e23598672e531f9bea22b4ce0c762a018ed2109f9faf5aa93f200444378", + "regex": "(?i)^https?\\:\\/\\/orgfra\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0280bf7e72fa559e194250a32461c4822ebd22c9301b1c2d634be30b4fe5366", + "regex": "(?i)^https?\\:\\/\\/orgfra\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc464a75cee3d3099bb4af966e85bcb47d40ae9e7cc7e2dbd3f85e608f85952b", + "regex": "(?i)^https?\\:\\/\\/orgfra\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "befa29505842841b1a72c2e3d3bbb6cc94c8f1d3a82f63d0550523cb92f0859e", + "regex": "(?i)^https?\\:\\/\\/orgfra\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6cc3fdd7ff37dc24a244f84ca49cb4825a86e854110ab2a808c23f48a38ed6c", + "regex": "(?i)^https?\\:\\/\\/orgfra\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "476117c5a54e0d6d705efc35c878bd87e23a927f5df283feeb9818e61bf7b653", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "a54ed8149c153fc7fb7e03d95e6776d015ae8e5cb3ff9678439a8c02a572cd5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "476117c5a54e0d6d705efc35c878bd87e23a927f5df283feeb9818e61bf7b653", + "regex": "(?i)^https?\\:\\/\\/irangds\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54ed8149c153fc7fb7e03d95e6776d015ae8e5cb3ff9678439a8c02a572cd5a", + "regex": "(?i)^https?\\:\\/\\/irangds\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca051e542be18369a1fcbe1ff281021ff6820e696a30a4219ae9c2f0e345eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflixclone\\.github\\.io" + }, + { + "hash": "f0d46a98b749530c244a095078eb044018ff5351b8f666eaa3e2e1b8b24cb66e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "65ab4c72cb361a9c2ba6849a69baa6a3537bba993f39b2194408b0c5b20fde25", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "ac72f93c8c03c1729ea1cfdf8410c54eb47663bc2a2d355c71bf43a7504688bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "adaa9237a3fa64e59144ae647a13356502cf3e9a36cae15ca967a8a70624dba0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "3d557fa532470c6588dd7fa21dcd3b2d31c7f44d06bff68445e43f2a81bd90df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "789bbb5b384b81d98b1062a9aa581b4659687c19ba55e45f4ff7a546518c2fc1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "670d253524c9472609db74dbeba89b5ab55bb314a74f7f38aedb3b6de14144af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "d3c5d1bb856d138729e3fba2cd014e7703823bf10e744b62113d9701be3e119e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "e185b01a7cf1f30430803f66f49f20c5c392e3c2b78da4d6b0dd6a32b1427a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "e41ae3cfd5dba7daf7f83479e0c008da54b4a7927e764c8b59a29e4fd61538eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "c33a7974bba282f3d25de206b8ed21f89b5c71f2717e210abf4327704d3542e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "fc879ffc9aa098aaeeed451cb91ad3e088f78ffecac65d74cd191dd8dd4f53cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "edd1c778f21427fdf470c96f94b6e478b80e81016ad52d1c794b2396da619e6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "fe3c7a6cd4b5c15a25c025528e6c11880f2a2bdbc2fddb3f2f1771352b7093db", + "regex": "." + }, + { + "hash": "39bfe48cb294d2735ccfea8dfb7305401a8f8d293d2a6c38ebcf4e5fe6cce0c8", + "regex": "." + }, + { + "hash": "74ed97c679d136f0e32c621026da0c8fea278c7019e38f6b3b2d29db4ac0e359", + "regex": "." + }, + { + "hash": "f798518c4b95efabcab59f96ba8eaca7e5bbecb781a3ed1fd11eed2cc444ff36", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?oldps1\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "381945ef32498b765cb80d59b3325281b657c6551df3263c0c98a57c9b4d280c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auo\\.html$" + }, + { + "hash": "f287498ef40f971abd6a930e82c8e2bf3ed5ee211ce5eb97ba032430f3aa77d8", + "regex": "." + }, + { + "hash": "8c3b408bb6d7d2c52b2d78f195afb09786a75cda70fa65b868f0a9e49f627675", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AV4AAA7alL4AAAACenoAABPuUO0AAAAA7aQAANO9ABoZLABhUNme5W84x_qCQeekAlWUE2uZhAAZNQ0[\\/\\\\]+4[\\/\\\\]+ehPUKkzcK2a\\-SB49Ja6yNQ[\\/\\\\]+aHR0cHM6Ly90aW55dXJsLmNvbS8yeDd4bjRrbg$" + }, + { + "hash": "8c3b408bb6d7d2c52b2d78f195afb09786a75cda70fa65b868f0a9e49f627675", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AV4AAA7alL4AAAACenoAABPuUO0AAAAA7aQAANO9ABoZLABhUNme5W84x_qCQeekAlWUE2uZhAAZNQ0[\\/\\\\]+2[\\/\\\\]+T7tEIu65SyRGwYlZmP0YFw[\\/\\\\]+aHR0cHM6Ly90aW55dXJsLmNvbS8yeDd4bjRrbg$" + }, + { + "hash": "8c3b408bb6d7d2c52b2d78f195afb09786a75cda70fa65b868f0a9e49f627675", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AUkAAD2ENZIAAAACenoAABPuQQQAAAAA7aQAANO9ABoZLABhUNlT7nIZ9XjETcOigZGMbbx_agAZNQ0[\\/\\\\]+3[\\/\\\\]+Cz5wz93Q_hhTC1O\\-Ir1xTQ[\\/\\\\]+aHR0cHM6Ly90aW55dXJsLmNvbS8yeDd4bjRrbg$" + }, + { + "hash": "a7c6d63598a1d2492fbb05bf2f681671e412ebc3cc8aa0e2e46f4b2c26a88425", + "regex": "." + }, + { + "hash": "8c3b408bb6d7d2c52b2d78f195afb09786a75cda70fa65b868f0a9e49f627675", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AVMAAD5janQAAAACen4AABPu7m4AAAAA7aQAANO_ABoZLABhUNpaEQQYJSW_QXeONAQjD2G5mAAZNQ0[\\/\\\\]+3[\\/\\\\]+UTGjBjQ2COvTYpvd5CIqWg[\\/\\\\]+aHR0cHM6Ly90aW55dXJsLmNvbS8yeDd4bjRrbg$" + }, + { + "hash": "8c3b408bb6d7d2c52b2d78f195afb09786a75cda70fa65b868f0a9e49f627675", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AVMAAD5janQAAAACen4AABPu7m4AAAAA7aQAANO_ABoZLABhUNpaEQQYJSW_QXeONAQjD2G5mAAZNQ0[\\/\\\\]+4[\\/\\\\]+80SxKfp2Ow397P2qDMhAXg[\\/\\\\]+aHR0cHM6Ly90aW55dXJsLmNvbS8yeDd4bjRrbg$" + }, + { + "hash": "10fcf96669c969f0b3b1db5fd6a4fa41a3ecce14ab91a16f519f2fb0e3116686", + "regex": "." + }, + { + "hash": "9a4ebf90d6e79faa686e0e63bb49c0d717d8b0380a6922fc78c1a3812086ce1d", + "regex": "(?i)^https?\\:\\/\\/beautyskincarenatural\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627c500d2781fbb65faa64a6a5c85fd5a3bed9dcb5de41fa2fdb9800fa5903b0", + "regex": "(?i)^https?\\:\\/\\/beautyskincarenatural\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d2df6dd70c8703a110a96500ba309a381ed72542414dc9b6d1cc7fecdcc4eb1", + "regex": "(?i)^https?\\:\\/\\/beautyskincarenatural\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67e6d4e8dd4f9aed052986c8d40bf9c305535fc43ba91621691b7e44dd6b2c0f", + "regex": "(?i)^https?\\:\\/\\/beautyskincarenatural\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50d47df7faa7d627b2ff529b98eebd38a743bde2e7c9f8cf7ecaf2ed730dfd46", + "regex": "(?i)^https?\\:\\/\\/beautyskincarenatural\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17382e0e812a21d745b7bfc4bfe04aa4966191fc6c34da24813b5719cb9fa87c", + "regex": "(?i)^https?\\:\\/\\/beautyskincarenatural\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f04474d2ba7308b7e4c535e09ef295f446546e64484928a342a427caeaa3f64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+click\\?d\\=vqbHrMvbVg8Rw_SnQaYnMsemH8yGEyzzD0\\-uJRQdq7cH9CgpS2PPnvBdmISpjNoxCBUoFH8DIRs14eybJW8RT5Jp_J5S6l32xRg4DE3ErleyjNNdV3ytYJEPGDXQRb6DOkIx_XQh94vSLei4gKSGEH\\-9iZhYOh1\\-ogmSkWOxAtTuUMtWX1lI70wIfI\\-dpE_Tfq6UftnVt_IMdxn7uXMHrR925ib5Eti40\\-ulbQGMQZn00$" + }, + { + "hash": "9f04474d2ba7308b7e4c535e09ef295f446546e64484928a342a427caeaa3f64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+click\\?d\\=91a5bRzN9iw9_IhNHvFxUvJcJsLhpNiFI1jyzq\\-MCWSslRQvi1IUanLCjFFNMaAhRTvshRWu3SvhjN\\-E\\-ESK_HpfTyI7IQKm2PjzprtcRCnF4TUdQGZAijGOJRn4ccOpf5NIPhGO8jRvYMzG3M_n1HLqY62_5SJP5Jm8iuJFznQw8SG0VpE1H0RCFFx3b3LxxbJp_mxCZuJ6Rz6L_q3hUXTSHeNieT1djNlgrq_2zCmP0$" + }, + { + "hash": "88abd5da02ca747961a63bca431168aea701097ed55fb9912892d758b2b20c69", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?fraba\\.gmbh(?:\\:(?:80|443))?[\\/\\\\]+auth[\\/\\\\]+realms" + }, + { + "hash": "cfc84d4a5836a2de90bd6f8698e1094643d97e8386298e60a2006d7cef935848", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=kKvbRAEqWr\\-2FbULTumgLjWyA0wRolRMP5lYO83kELpwIwFyj\\-2FAa2\\-2Fy1cU7\\-2FxLG6VQ92PkHb13EF5fpBZumtONCA\\-3D\\-3D_tgq_uDKpAC0G\\-2F\\-2Bu82RbyMb3jdRiz0cnDL\\-2B1vrP1EFCQdBdXzlpQnu8t4JJKQ05\\-2B\\-2F32sJMCvt5bSR99eS94lH2nryatcoKVfCZ7KHgUcgdUpEYL5U6NZ3HjJVWbTS3kEeVfgkNYEuJMcPrdpwl7\\-2FqrvP82kYllprEU0UTuGd\\-2F\\-2Bgdrd0SMgXRCJK\\-2FTxBjPJL0oTPm7cyVSra8IllZK\\-2F54vGkulaw\\-3D\\-3D$" + }, + { + "hash": "4f91594e8cc2fffb3ef8d51a61765b28acf7ea8d5e2f3878d39e276c3d2bff46", + "regex": "(?i)^https?\\:\\/\\/supreshoesgreece\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12a6fca79d8eda753ccfbe4ed99b3702431159844f589c90a897fbc8edfc250f", + "regex": "(?i)^https?\\:\\/\\/ccleaner\\-customerservice\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3360ef1afc4ca95b070c5dbbd07b1a0e129662195c8ccaa7d61596e0e7a1104a", + "regex": "(?i)^https?\\:\\/\\/ccleaner\\-customerservice\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60014c2fcb0b6768c8f472855a16a5ef5b001278eb7db9f1e4a31e56f1c24644", + "regex": "(?i)^https?\\:\\/\\/ccleaner\\-customerservice\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0d22551551c688b2d680c62b9f5f4c427e5c9a77744421e1bc91290e14701eb", + "regex": "(?i)^https?\\:\\/\\/ccleaner\\-customerservice\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dee270e2c82b40cda80ac5bb98858cc87ab0cba6f5b886680e35d807ab845773", + "regex": "(?i)^https?\\:\\/\\/ccleaner\\-customerservice\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfc846243c7dd07ff657b6a69acd7126d045ac5ff6b478964f6f8f9c76d714d1", + "regex": "(?i)^https?\\:\\/\\/ccleaner\\-customerservice\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfc84d4a5836a2de90bd6f8698e1094643d97e8386298e60a2006d7cef935848", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=kKvbRAEqWr\\-2FbULTumgLjWyA0wRolRMP5lYO83kELpwIwFyj\\-2FAa2\\-2Fy1cU7\\-2FxLG6VQ92PkHb13EF5fpBZumtONCA\\-3D\\-3D6Hgs_23Ntf2lGWL4Pm\\-2BNh1MAEASM7qNM1X7Sv9bZERrPytqbziJ2B2qg7cQWlGMR4lcdZ7YxX3IweWTY1Gyhs\\-2BUjdqaOhli7QbPQVcMWX21wXgBGwUR\\-2FjqizcKh7rMork\\-2Fhyvk\\-2F9lCJ1wr0TknmiRuM4DF5ldMv7pj07bWr\\-2B07qk2r1p7oXbfYnw8daAUn\\-2Btif0McbiYM\\-2BAlLVoMUCGNpsIFWGE1hVPNIrPBkOwEDFYKwScI\\-3D$" + }, + { + "hash": "d7b7032addff4586978bab8ea3543b92e0f6ab32a3b919acd581d14552de3f22", + "regex": "(?i)^https?\\:\\/\\/somos\\-morb\\-1971\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b22c1f79174b0d2b40277f0c4f37d0363040042b8e4a29a879c8f73dbb0d7d29", + "regex": "(?i)^https?\\:\\/\\/somos\\-morb\\-1971\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d2e6f65a742cd4707e8db42e2b6fc114a29eac17edda7d4ecca588ba2731981", + "regex": "(?i)^https?\\:\\/\\/bitcoinsupportnumbr18883095777\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adec5baa9842874ac96a2c6ffcdc1fd2db59151cf4da0f9952a64e538f8c8961", + "regex": "(?i)^https?\\:\\/\\/bitcoinsupportnumbr18883095777\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83624ff55ed050632b89d4505ed21fd8b0f6bc70420ce640af5927b9e4021583", + "regex": "(?i)^https?\\:\\/\\/bitcoinsupportnumbr18883095777\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d9ae1e8e221f68ac6734799441a00a8df15a722a630053c443b3ead6458c772", + "regex": "(?i)^https?\\:\\/\\/bitcoinsupportnumbr18883095777\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07c46ec61bbeae002a5eb83d4a9aee433446d48d084b060045fd82a1c62fb62a", + "regex": "(?i)^https?\\:\\/\\/bitcoinsupportnumbr18883095777\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0796ecc43b4e96cc30ee0970fe291d0d4a527b409af2cefe6d1bcb2de00ce7a", + "regex": "(?i)^https?\\:\\/\\/bitcoinsupportnumbr18883095777\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5f3a6b17689f35600ddc41d411ed635054c696f004c091a78a3167b47734f87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-Clone(?:[\\/\\\\]+|$)" + }, + { + "hash": "b13ba6c1f2a9ea6aab53645e8b2f26487c45a27d89dcb59bc31865a26b81ca11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FacebookProfilePage" + }, + { + "hash": "dc4ab64f491049db9386bd4068f6c7d7853c16a768900826c32fb41967343e6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix_Landing_Page" + }, + { + "hash": "7b311f7459a69cb19f5fb74f597318bed06ceb3c557d5b6d20146a3f5d5601b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fblogin" + }, + { + "hash": "4433fe46996755c111e086397fff4d20fb535e985da422dd2c199576ebf6417a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ResponsiveFacebookLogInPage" + }, + { + "hash": "c7fa22e6f92b66bfaf14e7504ad1e2acdd78b8a2548cd7ab8ae645946cc508f4", + "regex": "." + }, + { + "hash": "ac14b04d666368cf981e1eb7f12e80baff6df2ab00a0068e51eae733e9846da4", + "regex": "." + }, + { + "hash": "495711f2049726cfb3758bf0a42017ed610a19accefeadb8ceb4974fc330a341", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+02[\\/\\\\]+bet\\.html$" + }, + { + "hash": "d6e73f455fc3ae615b42752ba6e3f5e95560115fa3fe7913f72b27997c6b6b57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NetflixLogin" + }, + { + "hash": "347f61e63549f95641ce7aaba8cffbd13ed4e00f35a86dcee40d6a4649ba06bf", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdg46123\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "698b0bc3105eafbaa05d2bc4ffaa57b110d9392b2d2a618c774b6df749a03912", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdg46123\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bfb9ad7b8d6b1808bb4ec06d669f68005b42746ddc3f1ca2c39fdaa26d84708", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdg46123\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aabc55dfc040c2970bbd2da2cbae3ed73fd595c9d11ea1d5a0415bc34ded7900", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdg46123\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f929cc17fcc4a3053d45923e11b93af0ef90b665057fc4216577701f664811cd", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdg46123\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72a45cb1485039e2eba5936ff3f23f906531a6ff2579e742ddc551702001d3a0", + "regex": "(?i)^https?\\:\\/\\/best10banner\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f859385273cee59031165e7de54f9774c8741716f31fefec4f40dc8269d684a", + "regex": "(?i)^https?\\:\\/\\/best10banner\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2fb53daedd8240694aada2d39294cded0f9829fe7b125b1b8eb8d363f723c5c", + "regex": "(?i)^https?\\:\\/\\/best10banner\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55308eb735f0929f2fb53b1bc59ec834be62d88501f5faded3d7fc0e800399ba", + "regex": "(?i)^https?\\:\\/\\/best10banner\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0cda6aed6234e90e59ced8487c0aa0c265b7c28294c417c06c0e70ce4900c9", + "regex": "(?i)^https?\\:\\/\\/best10banner\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf31a442c40cb9cd2d51122299d0cd25b31440f9358868fcddb50948c77e41dd", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f874334472b923c864405135eed2857da588e1e09d763e7ab560003955b8c7c0", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acb74c1488f963adef1fd36f28d28e3bc64bdc3ffa3c9d3e3db2fe1fa4802951", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cda1250f9372b3836c49f20de36f374fde2fdf82c20fcf095001e65e446e8a5", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f4e6de69aeb15ce76b33e75ac7fd11c2c331bbd5a8c12abd4024020af67db6a", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "783b4a3a13f6b57ca6ba88c4d74be5a93fe8c35b85f4e88f5ad4ec695526faef", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "108c7f8c68dda00520589662a5059c84fe3fc75e29711868276768659d55890b", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23b8c622d2b1f6fec9bdebf3ebb83d7c08a31a3a16af6e863803e00adb731e18", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f55f59caaa4190c74d75ca92dcfd53fbb47d37e79a5b5beee6451164f35f9ff", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "382119777b5e5ee5c92dc0d057e3453f71f86c5a148184fafb7339d6216f6416", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ed7e3e586ba007cd8cbdebc854d506a470aeb9898b29cae69360df78230cdc2", + "regex": "(?i)^https?\\:\\/\\/garenareward8m\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b08d8485f79762c210ac83511dbf01af0fde46e683e44ceab7cf95e1f82926b", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29ac3d69e3a2842d13751439a51b5a4ed0573f4f43d8cbd5b409674a29b8b5ef", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4620a1282337fb0394a681158e5b26d968d222686fffd4323505393ac66a5310", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52dca6da8decc196351d98debde3eae428e45cd983588b66a1c5c7a90549aad2", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3116cb2579b5281a3ffcde83f6072ac099024492354c72f6172a494ce5a4ca3c", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d062627d20f3e89206699431cb6ab14d3223f97e54d57084668bf1c2ffb7b01", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76dd5fcf8293e82917d2077710221c76d67c627d603c58a9e41f8a8c1078ecb1", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6527d0504f69b55a09458b6b361409bcfb3da824057731e963533df3de82dfe", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6faa535962c86cfcfa20013a7dcce44587dc481f7d46016024bad2cb4895c1d4", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b3fc45510750b3390dd0117507e6190a6d30606276e08c8964f835ff2d92c2e", + "regex": "(?i)^https?\\:\\/\\/login\\-pancakeswap\\-financie\\-jo\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8339f1215c8465a610747262aaf9ce3468e815b078e79ccdb54bd3ec5e9dba6a", + "regex": "(?i)^https?\\:\\/\\/pstrdra\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4e198a2afc921f5112f299870e6e1e52c141e38597c6393ca433afcfc51bfff", + "regex": "(?i)^https?\\:\\/\\/pstrdra\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb814b877dd0735989124d0931192f99d58f5ee3e86ca7c7b264089956fe79c5", + "regex": "(?i)^https?\\:\\/\\/pstrdra\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f11cd4273b36bc499b829c101a6a991d24611e8598f4b465a66f7c1b240d590e", + "regex": "(?i)^https?\\:\\/\\/pstrdra\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c85d1a690570d76c6a4743811f65b9257e1b68b156f45bdb233b5c888385266", + "regex": "(?i)^https?\\:\\/\\/pstrdra\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "086aaaee6d0cfed34bb7aeca486919eb478a873c297d87e0ecb481ce012fbd36", + "regex": "(?i)^https?\\:\\/\\/pstrdra\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11a6dc4949f85a377fe7795008f6c96b6f52e2698cda5ab62af7706a8b65cf9f", + "regex": "(?i)^https?\\:\\/\\/pstrdra\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a831b1196f97ad437affec36aaac4e539a545378ead13c76b0f4e77e63b5262d", + "regex": "(?i)^https?\\:\\/\\/pstrdra\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52c205fb4bf7875aa072609d7fd4fcff2b8bfbc0f8f1438f0f3580e40fbe191e", + "regex": "(?i)^https?\\:\\/\\/pstrdra\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "578c10b6780c66838dd4ca635543db1bb0d32daf1cf69145482f02ec204964b1", + "regex": "(?i)^https?\\:\\/\\/jawezll\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "380d899ad4bedf75d1f03c9cde31067b7aa41fdc682b76ee52969931ea3f0861", + "regex": "(?i)^https?\\:\\/\\/jawezll\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "459b550c051df861ed69b330dfa1589b0ca73398e0895a9581e4fc26afff580d", + "regex": "(?i)^https?\\:\\/\\/jawezll\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36ee7c4c3617261008e7e69343e5e547b82c2892b0d0751bcc14722a58addf48", + "regex": "." + }, + { + "hash": "e0a2bad5bf4b2592405ed1f22896eb31ca9db9add0e9950170c0e72b8ae10648", + "regex": "." + }, + { + "hash": "b1e15b34dfa3170b38531bc8bc71fc2315ad43e8761ade7e6a23e6d1a9b7f2e8", + "regex": "." + }, + { + "hash": "e21c37532567ddec3186bd9263d793c01c1aa628f0d54a02f560f95bec04ca85", + "regex": "." + }, + { + "hash": "9f887f7b94e5a5c42f118d2b48f0db65915518becf778137a3675cc352196947", + "regex": "." + }, + { + "hash": "a05f697108e85a7886c14ef79cfd18beac4daf48bdc29b601fefb1e83179e8db", + "regex": "." + }, + { + "hash": "6ca4d339a521a59cd5d8d40e9fc6e53a74dc0977c626bb0409e0830ba321212f", + "regex": "." + }, + { + "hash": "8f245ee5b15d1b51841d13bcd4799233441d33a90b37472254ceec3380f8b85d", + "regex": "." + }, + { + "hash": "f04bd7cb680877ec27a4fdf107b6addf6225c85761d4a4efefc8932c9ff89f72", + "regex": "." + }, + { + "hash": "e4b63a0a544286ab49d2f9d38014b0ff84a58323270e0717c64a372b9706e29e", + "regex": "(?i)^https?\\:\\/\\/neopetskeyquest\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab4d462f67a7efdcbc6afe4a64315a3587bb8932848a476486d9a0d57b8526ed", + "regex": "(?i)^https?\\:\\/\\/neopetskeyquest\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94e1f6508e9df9f57fbeb3d0239129e8fea9311e26c94c03a3ff13328cd09cad", + "regex": "(?i)^https?\\:\\/\\/neopetskeyquest\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "679c8619882e325e3ba8d23159c58264dee8b16ee61a05ce3d0ef4b08481b0b2", + "regex": "(?i)^https?\\:\\/\\/neopetskeyquest\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94cb0d648ab35b44b84eb699beee863c8d22d69f0e88f3fc94e8cbc1483cf794", + "regex": "(?i)^https?\\:\\/\\/neopetskeyquest\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "260607254c12d2b2ccc80fd7c7cd35bdbc25156674fb6b7f5be58f3eaaa4f47c", + "regex": "(?i)^https?\\:\\/\\/neopetskeyquest\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e0efaa75e2d4027f8fd0f243ac56ec5209f371089b37da5414f5be32bbfb46e", + "regex": "(?i)^https?\\:\\/\\/neopetskeyquest\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbf01c077268f57189a9f0ecf9b67d8646dc8c72598a2cf4eb4b70633e193df3", + "regex": "(?i)^https?\\:\\/\\/neopetskeyquest\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "983e76499bb2edab2b5ac5556003db05727217365058cf7ad941095e74b83342", + "regex": "(?i)^https?\\:\\/\\/neopetskeyquest\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e46a63de7d99b55eeed0bea24cfa1cf405d21fb9cd65d2822c0c02a5e512f3b3", + "regex": "(?i)^https?\\:\\/\\/neopetsapp\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d785a117243e92d4749d6ef7c8bf84c7914fa508930a41e41f48ce3af8f11bf8", + "regex": "(?i)^https?\\:\\/\\/neopetsapp\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af0d0090ece6398b6c48e141ff10a206c4b716ad727feb53030b23663b7afd4a", + "regex": "(?i)^https?\\:\\/\\/neopetsapp\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c478690d76529146b8829185e0e4032b983a6c2d2564ebd9fbc9f2ec0f8d4fe8", + "regex": "(?i)^https?\\:\\/\\/neopetsapp\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00fd08201fc442915bc653f9671a2933b9c9f823f7c401cfdb3c5ad920519ebc", + "regex": "(?i)^https?\\:\\/\\/neopetsapp\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17449adef48beff109efd439fbc5f1b212d8913c4052b0c9fa292bd7f2a44303", + "regex": "(?i)^https?\\:\\/\\/neopetsapp\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8db8f995d7194a729fc43ab8e27d078b597cd370c0a79aa39c8b8e7855837cc1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+indexv\\-vb\\-vau\\-ry\\-8b\\.html$" + }, + { + "hash": "ff6f0ee62daf81208c896de005721372315297fa8e02b74aad8b7db700752d8d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackcodes2016\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f3449fe143ec05fc838038dd37d4f9a4a3399999fdef19e10cbf002f80ec726", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackcodes2016\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3f71cdb4ee7f44aa2e5a18b2b196d8736004cea7f279a07100ec93e25c06606", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackcodes2016\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a25738e7e3c708058b340a4296c18aa2934272ad28c3fd89e4f2a1c804f9b80", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackcodes2016\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5690b0805562740ae10411240400e43478c71b69b0d1d34af1a1c4ca4463b0c9", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackcodes2016\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec189b2f17a13612607f23179bcce95596ae3b04ed9df7503a2a3ddbdc60a669", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+y\\-l\\-bldjutd\\-ihshulhw\\-r(?:[\\/\\\\]+|$)" + }, + { + "hash": "08c4c40a090a39c92399ae09b2d1828862f58939ce6f0141bb046ec2397cb328", + "regex": "(?i)^https?\\:\\/\\/pstsftt01\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e812f6e34f5400de85d0d114b6c429481080d9de4ed4c8307e795c5922b0e278", + "regex": "(?i)^https?\\:\\/\\/pstsftt01\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69441fc7b1d55e47af723881a072cba4416bc9d5d316193acd1f4ca023065324", + "regex": "(?i)^https?\\:\\/\\/pstsftt01\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9443dd14f1ed34466f80d6e2516dc9f142aaaf5012e77e8e7479acd5409d202c", + "regex": "(?i)^https?\\:\\/\\/pstsftt01\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "653d4e069a0f6ff40c3ca3c89976de2a705f6c63a8a24e90e9f579d607e1a5dd", + "regex": "(?i)^https?\\:\\/\\/pstsftt01\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d591ed7e8833742e798b20f7018390d1bcabfcb9b2936ee2abbb3cec667f797", + "regex": "(?i)^https?\\:\\/\\/pstsftt01\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25d29715f9ae3d2f5886eb0931b64e1237a8abe54e242645a2d75e8180dad99c", + "regex": "(?i)^https?\\:\\/\\/pstsftt01\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4f8d4d5d656568b51a83af91cfca52e60ee0f6b30e13c743fa6a1674a9af2c6", + "regex": "(?i)^https?\\:\\/\\/pstsftt01\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58c3af835b12d6058a02c98fb8f591e78a882bc1eefe2bff0eed18fec78b0aa1", + "regex": "(?i)^https?\\:\\/\\/pstsftt01\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f3a06ff455f7663a9bc175afedd1ebd8995946d33830bd8580461081aa30912", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Clone" + }, + { + "hash": "23e01452478b772132d50db648729960f6da885d3e971d3cbdc5ad6556a30f2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "dc3f10993fb798ef23c23a8503061a8636f53c3acd349eacbc1c4b992d776573", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "d652266e5ec32a0674d2d411c63971481fe480a6640de9b678e0b2272a368995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html\\?m\\=1$" + }, + { + "hash": "78235e2bd2fcd01d6412be4333fe93354b6b25018b5f376550cd52f38fd0eca5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "6b7c7dc1b59f03e3bf62520945d4f37e0ee0f93774e9158511f0a257b8bafadf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "6a201ce728df087fb791e5ccb8e2887273f1bb67dda436b0d9b1611705c1e4ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "23e01452478b772132d50db648729960f6da885d3e971d3cbdc5ad6556a30f2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "dc3f10993fb798ef23c23a8503061a8636f53c3acd349eacbc1c4b992d776573", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "d652266e5ec32a0674d2d411c63971481fe480a6640de9b678e0b2272a368995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "64d1e2514b2e49f69ddd25710f055cb92f6708064145f8329684c291854e11d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "bd4a4a1835aa777b38eab002d1ae437c5c1c465f39a2cd35cb7b21172a442d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "6f35c16d3947508bd5b2990bc80aaf8a4a2d97ff5f9e4f2811e80371d20f7655", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "baea2177c0ffdd985e60b1d044fd68f2257265b525043bb76a22bc1f02ff9cc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "4a762e3f1cd64bfc0febd5012cc66039caea2c3ea6e56743f515cd004833a554", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "97c68f1e1494558b4ccf9568bf4fa9c4c5b2b8c8a11cbda33e01c29309083106", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2021[\\/\\\\]+12[\\/\\\\]+blog\\-post\\.html$" + }, + { + "hash": "a1c0a8afc0b573f3e7aa778ca493f11725f029ccd9c4268334f495f891d1cce0", + "regex": "." + }, + { + "hash": "374b08b8a33c79f8dc478b01b7442b2c658e5810c860422cbf280a3a80cdd0b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=3fc14a99e6857ef7c27a51d85\\&id\\=4c2f4ac542\\&e\\=b264b8fa95" + }, + { + "hash": "d4f923529d9c94e887e3a8acf59e17310a58f2e6673e5bd3a2eb0220d757e6ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-second\\-ripo(?:[\\/\\\\]+|$)" + }, + { + "hash": "065ed6a7635f23e097873773cae585df30002762938a34fc632a8631f20f213b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CLONE\\-OF\\-FACEBOOK\\-LOGIN\\-PAGE" + }, + { + "hash": "67c4c357fb12429397a3a99a314b4b3b241a9e163508e54f07fdd3798bb983dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+instagramProject" + }, + { + "hash": "983feea84d3bc3d79cdd44235d36c3a7576ea7671f18f318f31871940e7aa258", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbc2f3d91913103c2e9191c4de042bbab47e42d601c1eae2b84cc1f62554f8b1", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7940fc30a21154a89d5d37b9cbe0e7cc6fe7077f16ad463d30350bcbf6df187", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "702f5b4f32584bc73fcf66a1a116d41f992bb12b13b8ae8632048ace636dba89", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e829ec3f74ce919a1c1c80150add7070935b343fff471f4943b04f646b1dbfee", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8259da86326f225fe22f8c7c83ada6464dcb761246e2bdbc0ade277cf8749908", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce70f91f570f32023cb92b831ae888b7079462823f53c644bb706eaa652d5351", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7263f4357a59db40899af6f310bd4317be295b5087c34de32111f57045695ca7", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bfee3b3d6e49005430c139e4a11fa64bcb312ae24dd84fc50c99b16f0dc0dd7", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6472c0ef8c2dc580c041e4e5bc1aaa50fcc5986d8499b439b535f00e674c5ae9", + "regex": "(?i)^https?\\:\\/\\/m0ssengar\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec5f7fd411aff27212bdab6377e3b20fd7f4bb4f70bf41499b5ab844b9d48fb5", + "regex": "." + }, + { + "hash": "b15ec57e5357008f503bc6ba6ff6002b13f87d0e5854c553410d9cec07d203d7", + "regex": "." + }, + { + "hash": "84658f6983e81456def6344114e2595883f2e7460a29669f672016c220627a26", + "regex": "." + }, + { + "hash": "005d124a26e4b4529dce7dd440a52e1f67e892b9f7861af753c23b3facb3b93c", + "regex": "." + }, + { + "hash": "d7cd83cb748991e53b2ba70a8e33caa387d779886be8db2e7b37f6ab9b80663b", + "regex": "." + }, + { + "hash": "dbd24eef63584e02e6095127da7911a91dbe136cb62c61ed9064fde531cc7428", + "regex": "." + }, + { + "hash": "32e52006cfb0d941a4bc4d1d30a9d5fa15e1ff0740167eef634543c877257375", + "regex": "." + }, + { + "hash": "d85256d9640734d83ae3df6f347c82852e98a2c6fbf4d2cd84e58ba47b636678", + "regex": "." + }, + { + "hash": "d1f8cf4775917fed3a07ecdbb968758c37ee8244125530683e2df1ee53afad40", + "regex": "." + }, + { + "hash": "86c007f45c0edabbbba28b7ea047f732828a7a5a27b31168598132fd43e55bb8", + "regex": "." + }, + { + "hash": "68b8adeac058d710a8a4f954c60396a6ddeca47975a00027e059f5d3a32dcbba", + "regex": "(?i)^https?\\:\\/\\/freefireredeemption2021\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9fb449178b630d226706247119b5a041b11033be5ec13ba27d1651bb34e0ce", + "regex": "(?i)^https?\\:\\/\\/freefireredeemption2021\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2f433326bf0b58b84691d488d480ea8d22de9042ac4a18964b275607b737b6", + "regex": "(?i)^https?\\:\\/\\/freefireredeemption2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "673bcafc9005849bfab07f75a9a471288138a0a290a5cf08c03d2b842adf35a6", + "regex": "(?i)^https?\\:\\/\\/freefireredeemption2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69c10cd50fa1d09bb4e2efe8ca1bba2b8fdaf7016a57e093245bbecfb170dc98", + "regex": "(?i)^https?\\:\\/\\/freefireredeemption2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "252ca223f6d3ff4f815fd56d3d57cc8a4f4a9ed87a7053b3907784d37324ce08", + "regex": "(?i)^https?\\:\\/\\/freefireredeemption2021\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb2922290c8335bd78f2e1be1c5bf1998c5213e31bf239c5c0f02b7ef4f0b825", + "regex": "(?i)^https?\\:\\/\\/freefireredeemption2021\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e70158552e380bdad3300833acfb6bc8f93ceff80f8efc2f660624e163e3436", + "regex": "(?i)^https?\\:\\/\\/freefireredeemption2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82bc3c044dca9063d5c55732f9d8eea092896c21008815acd9a50b9d7169771b", + "regex": "(?i)^https?\\:\\/\\/freefireredeemption2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4715337c26a066b2aae6e3ef4790cd760238719447b24af58d543e4234d37fb4", + "regex": "." + }, + { + "hash": "e504eb15713f70f972d05cb7f940be630f385d528c35c3b88f5429c436967c94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Website\\-Copy\\-" + }, + { + "hash": "184ae99c0fb029ed3260aa13ae842b09ef23bbb4777a9fc0add9825ceb94d27d", + "regex": "." + }, + { + "hash": "64035189fdc75beee204efb42f49ba52e8411f64a051d5a7bc0634edd5a27754", + "regex": "(?i)^https?\\:\\/\\/mercadolibrecolombiaventas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71501c2ac44692dcd49e7094ccb7e74e18363633f05be382161944c0c5675183", + "regex": "(?i)^https?\\:\\/\\/mercadolibrecolombiaventas\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5322f20c4a470ce7f93e82d29a29e0f39a4e43196b1d1d5e0fc8b9f394d2f2b0", + "regex": "(?i)^https?\\:\\/\\/mercadolibrecolombiaventas\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "695d7573fb6626aacd675df415ef463116e0f8f8ff3e96bd7c6596ad712a2982", + "regex": "(?i)^https?\\:\\/\\/mercadolibrecolombiaventas\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a22de982c5e4c8e66bff72a9e0b48b262247a9c4f0a7d8cd5194d8eeb3c7c75", + "regex": "(?i)^https?\\:\\/\\/mercadolibrecolombiaventas\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22816b672ca8ee73045b3cb928d35242bb98aba932646696fb80bb7916e8e2e0", + "regex": "(?i)^https?\\:\\/\\/mercadolibrecolombiaventas\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45539b5b19011692f5fb9fff7a48410c2388f52a9450a3ae2f05a8511688420a", + "regex": "(?i)^https?\\:\\/\\/mercadolibrecolombiaventas\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a78ed708c2caf3b530c6826c9e59185e37a9ad7ec1a4c3515ee96041f71d7e36", + "regex": "(?i)^https?\\:\\/\\/mercadolibrecolombiaventas\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c455f49479a5f5cc310896f4780ce2c06e7e345b495ebc087a0eceeb2071207", + "regex": "(?i)^https?\\:\\/\\/dandolaparaestarling\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2ddb07bd79bef1822ba031b25244d122bde7cd17a8dfd23762a755330a03f71", + "regex": "(?i)^https?\\:\\/\\/dandolaparaestarling\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d06aa65dd4e2e98162d5b76ff988c958a601ac7d2bd0d1b16d33a200deaef20", + "regex": "(?i)^https?\\:\\/\\/dandolaparaestarling\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "420a16f51dcac13d1cb4ea9f925afaccd1d7a1a59af53ed361460b34e3135445", + "regex": "(?i)^https?\\:\\/\\/dandolaparaestarling\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2116fb4120b83653668b4e47403e4cde28cd76f815566400093bf4e54d74283c", + "regex": "(?i)^https?\\:\\/\\/dandolaparaestarling\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ed2d5137123b2c0144c285742a47333ec12e9b17b17eacd33891bffd315cff7", + "regex": "(?i)^https?\\:\\/\\/dandolaparaestarling\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc211758009b42a926d7e0fd07b9b1e19b6448762ba6bcab3f38a37f7bdcd83e", + "regex": "(?i)^https?\\:\\/\\/dandolaparaestarling\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de23cf81fc9ef4c65b3874372841e245edf6cb9c1aecbb8b3b3e5f55c7943dbe", + "regex": "(?i)^https?\\:\\/\\/dandolaparaestarling\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f8a277210c346c4689000e14e57f2db4bd0ea9a066f8fca93e9ebba8eda21f2", + "regex": "(?i)^https?\\:\\/\\/sad2017\\-24\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "823ffc49e7eb8e312520f2e5d99cf034d8e8f7513aba16e527340f11c8641239", + "regex": "(?i)^https?\\:\\/\\/sad2017\\-24\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f6ad55083edc16727028c0f9505f2e6dd8b8042b9f0122ad19616d41d4d9a4", + "regex": "(?i)^https?\\:\\/\\/sad2017\\-24\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "623908f653a832a108ca1d5301f72b5c76e8fd45bb828435292fc7d6973d46cb", + "regex": "(?i)^https?\\:\\/\\/sad2017\\-24\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c768c07db54e85cd4d66a5bdcc3440156303c5ce0941610edd15de8ff17772f4", + "regex": "(?i)^https?\\:\\/\\/sad2017\\-24\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da3cc0a1996cf70c419a3a03fb6de1aa1da7025c843cf0afdc3c8f5c3e58df7d", + "regex": "(?i)^https?\\:\\/\\/sad2017\\-24\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac21699e8ea7c163a4a2a7299ec1587e1f383e74380da8543b7063e2bee60e88", + "regex": "(?i)^https?\\:\\/\\/sad2017\\-24\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eee4784ff92ccebf5a5e83e1211d8a612ae00d140f61f32a618fb64f156d034", + "regex": "(?i)^https?\\:\\/\\/sad2017\\-24\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1e89f052b287a43b756badf173c6f9653d2e86d3821c4c5e12e2bb90afe016d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook" + }, + { + "hash": "1400236b9751ee8e3aece03b3fb0f86a246cbdd7c5c8293c70ccb04faeef0bad", + "regex": "(?i)^https?\\:\\/\\/linkdate\\.d2udwdkra4fm14\\.amplifyapp\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1cffbd41c8f4e537c974196dd5dfb7cd42bfe61c66e4a98822f48e9a6d15fc7", + "regex": "." + }, + { + "hash": "f23645392af26ee1d9e7107b1c0ad38ca3efae166878093a0b974279002aceef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facetube(?:[\\/\\\\]+|$)" + }, + { + "hash": "b42b8c3da754f6733788feb53ae1f02ac1554903fff8d5886bf9a06840105e15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FbInitialPage\\.github\\.io$" + }, + { + "hash": "b42b8c3da754f6733788feb53ae1f02ac1554903fff8d5886bf9a06840105e15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FbInitialPage\\.github\\.io(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bbe0f3bae3780d81a79635725665cb9de2d85bd116d290abd5c00ed0f8128ec", + "regex": "(?i)^https?\\:\\/\\/maennger\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17aeefc0ca773ca4cbba15ea2f8fd75fdf2373ffda70509d44c002e8f359183f", + "regex": "(?i)^https?\\:\\/\\/maennger\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eb05b044c7e048f3736faac211320d6f6ca394820cecfdeec11374e99e51c90", + "regex": "(?i)^https?\\:\\/\\/maennger\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8abf89107ec1f4e298a390920b4937c529675ce9a123a489f83703784acbda7", + "regex": "(?i)^https?\\:\\/\\/maennger\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "628607ce4d0de71a1e071c3ee2d2671dbcfba4e78eb828f98b8ea45ca445fd44", + "regex": "(?i)^https?\\:\\/\\/maennger\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c76d948e827232a0f48e3fa57932d796f109cce7a9292fa3d175ded3ea5e12da", + "regex": "(?i)^https?\\:\\/\\/maennger\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e628e498e9836c3f64e062c56712b87e6a87142c41783d8bc54c2927783eadef", + "regex": "(?i)^https?\\:\\/\\/maennger\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "909e7243af2a0ef4dbf37a3262faa6607c65119750f77ee12c31a5a5386e203b", + "regex": "(?i)^https?\\:\\/\\/maennger\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab4d3e86b99da2ee43dacceb92ff88d0c3b9c9e28267258b2b35f5e1a52daaab", + "regex": "(?i)^https?\\:\\/\\/maennger\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b77852f7e1dacedf635be71cce2abb16c1e97c0514fe6f9e57f473a8c649cf", + "regex": "(?i)^https?\\:\\/\\/messnegyaer\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "214e3a47d1cad2ab854820e000b2237c294fca7f44c0f4cccad0565e562a69cf", + "regex": "(?i)^https?\\:\\/\\/messnegyaer\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd182d8b572f5030cf58dec2c131b35499451c6bbb08eee3079687713e556fff", + "regex": "(?i)^https?\\:\\/\\/messnegyaer\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1df782fca9452e59084915812fdffeda4928a8bb35034eef9b5708ea42759e39", + "regex": "(?i)^https?\\:\\/\\/messnegyaer\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2424b7e8801c330e2d6aadb01ef1e6825262667c876db65b4a99b33f8f6de211", + "regex": "(?i)^https?\\:\\/\\/messnegyaer\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8819ebf0cd15e70fd67e0d0d4a01d34b2f6c2c4f12821dc0dd28fe606c326f7", + "regex": "(?i)^https?\\:\\/\\/messnegyaer\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6e82f5f698e89b6bdd4d944c69b93f1b015d9aade44e2e44f6275e09ec002f2", + "regex": "(?i)^https?\\:\\/\\/messnegyaer\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e9eecbe4d65590c83e68196ea6f20994b6f063bd32d35e35cdf334e5600de0e", + "regex": "(?i)^https?\\:\\/\\/messnegyaer\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b3a9ed4c5d77f26f743f795b003d202c322127db08b4c32523276789a14faa5", + "regex": "(?i)^https?\\:\\/\\/messnegyaer\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2edc1b276e09601f62424ae2c7b6bd614d235b7c5988b135a1e6f7c62788300e", + "regex": "(?i)^https?\\:\\/\\/huytgftrftfrtgfgf\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c85fc716797e221e09a793bc0928737bbe3c67c478a8bc9cceb86b5b6bd53dd", + "regex": "(?i)^https?\\:\\/\\/huytgftrftfrtgfgf\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ef90e9565ba97155879a1d5081d3a4c1ed0ca9f392736848259646bd1a2d408", + "regex": "(?i)^https?\\:\\/\\/huytgftrftfrtgfgf\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b32c1552d4d779d3d034aa63030b60b1ad1b674e32c7bd5831d6fe0d415dc45c", + "regex": "." + }, + { + "hash": "c4caefc8353dd5f8a8c2db6f6bd062e66bd434aee854ab208efdb6c812ebf9e8", + "regex": "(?i)^https?\\:\\/\\/lexus\\-ramdann\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4beb64c301e2493e929f2b18c38ff0e3679e38e64adc6548d4fb45c2d67c4703", + "regex": "(?i)^https?\\:\\/\\/lexus\\-ramdann\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1ebf8789c932ac38477b513b1b2cb3e48f3a836cafc88e6a1c842ceca752701", + "regex": "(?i)^https?\\:\\/\\/lexus\\-ramdann\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386ad33c48b0b9795f48f9b526d56f2245bc93f95359c8bf89c03b0822845540", + "regex": "(?i)^https?\\:\\/\\/lexus\\-ramdann\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9758362fe0ee595a87330d3fb35a2d34993a8f6208dca9f35aa6a815e8cd57d6", + "regex": "(?i)^https?\\:\\/\\/lexus\\-ramdann\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56281cec930df41cac8850ef4405429adbefc52b0e4f73551f5a545cfd727242", + "regex": "(?i)^https?\\:\\/\\/lexus\\-ramdann\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0ef587aceac8075886b299fabebb7eefcca3604285769b6d39d4f6b93f8f664", + "regex": "(?i)^https?\\:\\/\\/lexus\\-ramdann\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e23684bcb01ac5373326416d5e95c2720873492574b268f1b19261786fc1183b", + "regex": "(?i)^https?\\:\\/\\/lexus\\-ramdann\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "882d897d1f48b637a9192506f5ecff68b7ba669ff2ecd1b244fac65e6571a6ee", + "regex": "(?i)^https?\\:\\/\\/lexus\\-ramdann\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a741bac70877e632a13b549c57805a918606de40451f54eb490d75ae5d75679", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5670f049a226665a5c15da955fc2317a94a788983b248e4c63ab559d5786e784", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2bb75aa44a5dc44671bcfb897d5a61d77c1033a91edb529baf888b4d5140fb", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ef94853197c6c4502b9759654127b21c956eb4f1f38aa05d21448b27c19f5ae", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf505a6129b9360713d6a45ddce88f3cb4080c5737567f08aa44c113a68e2fce", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c57057e03bf4bbeb8c2903a2b92183e645822050ae7f0fc15b451df0041010c", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9746f392d6fe0427219f199e78b4045f0f87d95344d266b9b4b4429516b688c", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cddbdcb9c29efa75a63f268ad782fd829ef858ee823e48659b3b69799229358", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14b8b5e899ac981d97f0e16d8104455221f793e3066d82341fabe757f86a585f", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5816c09c7a3d398207cd0b4418755d9d247d09f75d2d6f4666b76cd34ada2860", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2049a064e7f1587832d1ef033bca6892cad92374bba52d3bb9da6c3bc42fd7ae", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7349f3aa4f578a8e771d633d5031d80d7f9ad56c3410ec79a58774c594927875", + "regex": "(?i)^https?\\:\\/\\/jarirbookstores\\-ramadaaaan\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c81c0e289bc43558bf75a683ace30eee9b247c3ca7674ca8513a489e54e93f3", + "regex": "." + }, + { + "hash": "06edc1db191fb53037882ff9a92ee2f7ba631e32a4e16b75fec53171b959cba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site$" + }, + { + "hash": "06edc1db191fb53037882ff9a92ee2f7ba631e32a4e16b75fec53171b959cba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\?user\\-agent\\=Mozilla\\%2F5\\.0(?:\\ |\\%20|\\+)+(?:\\(|\\%28)Windows(?:\\ |\\%20|\\+)+NT(?:\\ |\\%20|\\+)+10\\.0\\%3B(?:\\ |\\%20|\\+)+Win64\\%3B(?:\\ |\\%20|\\+)+x64(?:\\)|\\%29)(?:\\ |\\%20|\\+)+AppleWebKit\\%2F537\\.36(?:\\ |\\%20|\\+)+(?:\\(|\\%28)KHTML\\%2C(?:\\ |\\%20|\\+)+like(?:\\ |\\%20|\\+)+Gecko(?:\\)|\\%29)(?:\\ |\\%20|\\+)+Chrome\\%2F86\\.0\\.4240\\.75(?:\\ |\\%20|\\+)+Safari\\%2F537\\.36$" + }, + { + "hash": "4b3d51bcaaf02bf7834c9dd4a09a9487f488ff38a62f0f0761fd9bbea9edf65a", + "regex": "(?i)^https?\\:\\/\\/awesome\\-hugle\\-7ef135\\.netlify\\.app(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37adeba29402fe39a93b2228f937c9f978317fc040fdb24b27cdaf76a17857ce", + "regex": "(?i)^https?\\:\\/\\/beautifulofluv\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5695b8c0596d64b6207ffb836ca0dade4456c1ab3a60a4bcc75930d53052133", + "regex": "(?i)^https?\\:\\/\\/beautifulofluv\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b80805d917309a9803ed1b1f1741049d57181ca5c2d638fc7dd88ba3416793", + "regex": "(?i)^https?\\:\\/\\/beautifulofluv\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e755b83222efdaa5fdbd28d8b2f4fcd58cbb09aa931cfc14f12f660575bb96ee", + "regex": "(?i)^https?\\:\\/\\/beautifulofluv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70e9c804d789008d08a676e695ca65d300f4465a092ce4cbd19dfaf59e6b56f0", + "regex": "(?i)^https?\\:\\/\\/beautifulofluv\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "609a676122ba396481bb90fbb2011e68700b186084bb06d4df50ca68c97a937c", + "regex": "(?i)^https?\\:\\/\\/beautifulofluv\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9296fab05fbfc0b15639aa20736fcef4e8da2a9a263d60d92f94c8d6d2e6444", + "regex": "(?i)^https?\\:\\/\\/beautifulofluv\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61faf131088fbd1495af92dd5755479b53aaf63bf818d4c36b892ff196178008", + "regex": "(?i)^https?\\:\\/\\/beautifulofluv\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7385f72a51044563602afb970a30c11b3e46bc08a548dd583f2b40008581ede8", + "regex": "(?i)^https?\\:\\/\\/beautifulofluv\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e4fcc871485350c634ee7cd979ad420182deb891b23a5f77d9e97dd9eba694e", + "regex": "." + }, + { + "hash": "2298a09845eb23c06932d9aed7c1627b77a2cab48ba4aa8280903620772f6bd3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-Login\\-Page\\-Clone" + }, + { + "hash": "0dca22b37ae4bb12a84a5545de89e1405373bb23a97cc722b3cd9fdab3416924", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix$" + }, + { + "hash": "0dca22b37ae4bb12a84a5545de89e1405373bb23a97cc722b3cd9fdab3416924", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a363871bba72b63d8ebcff97189ae5ba60a5da67238123fdb8e4933474f6616", + "regex": "." + }, + { + "hash": "0fd272bc5604e09fd8cf27dc4d5806bef8fdc4b47ca809ea793406fe86368841", + "regex": "." + }, + { + "hash": "53dc0957c1420486b276762ec39cf209c3d9c3a30df8ff07fe4e4f6a2d5e4d93", + "regex": "." + }, + { + "hash": "27c44bff6823e7c56e36fdb6f6506a012b73d28b7014899b2bfedd136d298783", + "regex": "." + }, + { + "hash": "b846f399c47a792d4a5db562997f5d1233c16f8096aaee7dcdd54b2b031fed71", + "regex": "." + }, + { + "hash": "ede96d3104c8479648405681c9b7fc990df7eb2b3623766f4624cd0a596e4ebc", + "regex": "." + }, + { + "hash": "5cd0a10ec27f58d00cdd24d3ef2baaacac33dca5bc7ff5224fea6c901b376a75", + "regex": "." + }, + { + "hash": "3203e465ea1ce84dfbab9183d00e83dcd4d7812e4a1e993ade9d66ffe9dac0aa", + "regex": "." + }, + { + "hash": "1be0d148dfdaa5f28c312070b1b331948969102e556bfc66db79034d3464a781", + "regex": "." + }, + { + "hash": "fc4cf2878771f8c7ddfcccebef76cd6d3cfdb823bf2496ae67366284ea8119d8", + "regex": "." + }, + { + "hash": "29ca6c5448615493baeed862b15ef722696e24745dc8cbb0d2112f95e877733c", + "regex": "." + }, + { + "hash": "30a2ac579e15a8717165747effbf4e919b2637c33a2bc125e8523b95e649ef32", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac83f2db194082e1a5f1b6044bf0b2c7ade9085c50ca622ac49cdc5e03892912", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92f6e2100884283d84de643f2f9cf1391484cc2136d2113b8ca9690e7abf9477", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe7c68fb84b176ed6f7bc3490f60722e79d74d9bff860c443be399aadf294f0", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e6a814d3d476472c6b2aa58b15fb4468f600ae0db18e9f55aed0b2c3a0757fd", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "390c74e3a4b34e3a1283baa0a2c6a6d435bc702f216a15ba72c21f8bc7833d2e", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bb1a5a5f2227d3ca3bb22ab370093fa86681fe99cb96503cf09dff82c28141b", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91fc442acef025d67fef9c7740c9646bc6a4d6bf77751bd5c040357e8b65bcd0", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2edcb3909f85179439e60da5bacf41b32eb582ef4690a3676686f106d847f6d4", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cb6d970d905bd1ff6e95b429adf0d0533b9b9edef7443db0bce00bd999cedc1", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44e070aaeec137c11869de974563376cece49cdd0891a133dd2672f8bd28a639", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cb2d81c44a8d0055fb9c519b3f0263dc38454ee5348b0bc8ac3b1d76c5c1001", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9365adf942ea2b8f5a3be2fbdba4128fc724b296ce149f9750a2bfbfb87d166a", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f1f1b6fb06f42ed6f45bacbb11529a56473eb153a24101bc17e7d3a068474a9", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodinsl\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe4dc2d4336857153185b08185f3870899c65ca0ec33a7ea4904fa936d48356", + "regex": "." + }, + { + "hash": "40eb379de5859619107b1abecc3333d232b34852f8213b63ddab26d06b88f836", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a219d673653795c3784caf63394c301d73ba02a0be16d11ff67da9fc92bc037b", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8b803598200556b700c2dc3c73ab7a880cc74acd91834f7506dfc6359851b15", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad0401e70a732d33cf6fcabdc87cc4fec41a66e23d4c04d1859da458eb5a4e1b", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4894bef8999699a302aad18d2c93007ecb774d6a05deed6ac840c6b91e9ace73", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fdea14fa0fcd5743085ad932251d7f41f442fadf27ee524b2656ac8ee6c5d19", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6dc72960d228f11eb73e0bd02fa0b9ce0bcd9d225158324e0e41324665b04cf", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8d1caf1061d55354dd2ac66ad3850f2a0d2ec57a4f152904fb166e265d2be02", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3a5658e71c612043ce18989cedca260fda089698bbd214623a9e200e2eea234", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2cecb93a44edfa3b3ed6916bab0b3915a605a902c9ad308fe01b1ee92367aee", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be80b0f05875fc8cf58dec676500abf5bdfab375099f08b704ebb01e76f6f865", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "680e8655d5e93852e85707a3f77c6bd54bc55d8453430014dde883ed7a855eb3", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8481bc6f8582c9320851afd325bf7afe8a2d2f9c188b060fac45db2930a602d3", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd43d1960606471c506d64d23b678382dd13e81166a90dabe294b3e3b47b5606", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d766a54fcf4b7048d79681f3d692ca5e7db973360c8792526c0d36650ebbabf0", + "regex": "(?i)^https?\\:\\/\\/massngerr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a83185b4d95498ddec02744b1ffc374aefc9979680507afbdce07b10eae19939", + "regex": "(?i)^https?\\:\\/\\/massngerr\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa729487367e86126813821a7672e4e62a7fd44e6d09e070427a56514f838c2e", + "regex": "(?i)^https?\\:\\/\\/massngerr\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71ed98a5d239102ef66c6dcc9e38c7d3ade0769edef19f3f64cc0ab12679a541", + "regex": "(?i)^https?\\:\\/\\/massngerr\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23fafa06e2e2fd7fd0cd747e87976654555cb5a3c266c41a8a862d981375c9cf", + "regex": "(?i)^https?\\:\\/\\/massngerr\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1e3a3b76882f27ce62af158f9446a2a8f7434bc4db73c25d1cc37558f2b3f9d", + "regex": "(?i)^https?\\:\\/\\/massngerr\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "214ef4f804da99383781dcc3d1bb6af36dd3fe5bbe7aea02458beb72ab099ff2", + "regex": "(?i)^https?\\:\\/\\/massngerr\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16733b11d2248c1c19bba923154eecb60c65ff99136a70fe68068bd3f2a8b1ab", + "regex": "(?i)^https?\\:\\/\\/massngerr\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "416ae1994729c3b0eb67796137e9be1fc30ddcdb0ae03102762517ffda3740cf", + "regex": "(?i)^https?\\:\\/\\/mssdngr\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fad7124631259080384245bb3c4de3c7820d8346f570d0d7ed4ea29ea332e713", + "regex": "(?i)^https?\\:\\/\\/mssdngr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9b179bd1b92f1d0e75593ddb59324dd62f7a16f1dd594835955f5ef1d85c681", + "regex": "(?i)^https?\\:\\/\\/mssdngr\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f5a6c4ef2046bb72c735cc7df86505272d41f1334d76a81140543b58920d70b", + "regex": "(?i)^https?\\:\\/\\/mssdngr\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f825878b2e1727d47dfaf9da4745e610130b258b31b780e1c737c4aa28724710", + "regex": "(?i)^https?\\:\\/\\/mssdngr\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f9dbe38263758914471462a5a03c58421d897d2c6894d5e51bf40fe6f43261e", + "regex": "(?i)^https?\\:\\/\\/mssdngr\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e21206375895c1acd86ba384eb15107c19378acf6b456d06752850fb9f6e7a52", + "regex": "(?i)^https?\\:\\/\\/mssdngr\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "476fc5b11e91501dae7a6e9cc794fe9ec5c5c5dea4863cfbf0412e31c0bbdf7d", + "regex": "(?i)^https?\\:\\/\\/mssdngr\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8991c151768d2c806272b48917417b0945cd087ac05e0721ee56bfc37165e30b", + "regex": "(?i)^https?\\:\\/\\/att5gnetwork\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2312ff999031c2f5af1398277958694aa0f9f5f753131e2cae985bb74d2b9da1", + "regex": "(?i)^https?\\:\\/\\/mandid\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729d384e59cdae4eb0f06de65241d120a75ae46cef266afee546914551501dbf", + "regex": "(?i)^https?\\:\\/\\/mandid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59d8652941e39eb1be412b67b3a46f02bee6e2266cae5a9c3c8a89f2cd5ffcc0", + "regex": "(?i)^https?\\:\\/\\/mandid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f141e1fb48607015f77ff961b0a9a4dc8b7138c480110b0379f9bee27f34419e", + "regex": "(?i)^https?\\:\\/\\/mandid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebae980b49202ed263e897a8ad0d2a66669a59776ed0cddc961a743a174e60cd", + "regex": "(?i)^https?\\:\\/\\/mandid\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe32a71cbb188ea07c8c15947e68197dc65a1d962bd6becadee6ac2a3106a9a", + "regex": "(?i)^https?\\:\\/\\/mandid\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2956151cbd036f02e8cf2da370a8fc296776c485a33dedec96ef2902cf245b61", + "regex": "(?i)^https?\\:\\/\\/mandid\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b83d0bbfac5d3812aa142fac0104c8bb15a76c7724e234cec8939de978747312", + "regex": "(?i)^https?\\:\\/\\/mandid\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49f398fdabab743481e14fa221c10b8bcb25782344b3fa63724f38f9a93c312f", + "regex": "(?i)^https?\\:\\/\\/mandid\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "824cf90fc78d62dd33ed959e2e4fcf8cbf3a620ec31934497ff07928f745b2ab", + "regex": "." + }, + { + "hash": "fd1c3bcfc5767480724e21e8859641fe0ee6ae82d8a76846b09e8116efc56ed9", + "regex": "(?i)^https?\\:\\/\\/messengercal\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39ccb5010e42899cf9e2d7c5634a091f301eb477dd176c2db1cc93f2bba1b772", + "regex": "(?i)^https?\\:\\/\\/messengercal\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63d661fc4e52de67982983f306d239e0377efbf69d3b90a2b901b5e74553bcb1", + "regex": "(?i)^https?\\:\\/\\/messengercal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09b3e10a5076b4710dda8251dc4dcd447c14c0ff8341afe04c37a9a743b254e3", + "regex": "(?i)^https?\\:\\/\\/messengercal\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb01fad5a2bf4c13167c1dbe6a5f906c6e6e2e53220251158f3e04ddb453b228", + "regex": "(?i)^https?\\:\\/\\/messengercal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "799dd7f08ad9c93f7043d8ea608dfd5fd0a1f4c174c82b5f2c84bb5d5fddab5f", + "regex": "(?i)^https?\\:\\/\\/messengercal\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c478183b96bafdb9354761ef52de4c2401f71e2b383c4a3fa3796ad2d36ff0b1", + "regex": "(?i)^https?\\:\\/\\/messengercal\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2baabaa44b259c161a36af7ee34da8a6abe822596bc19398c72013ead7edfe3e", + "regex": "." + }, + { + "hash": "37d482fba0b40072746fe2ca5d1c6e170d7d616cdd997d6ec3720c4a25e1cdfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Landing\\-Page" + }, + { + "hash": "3f1d83d50f95492d3dfbf9c4098a5c1e3bbaf58198a0b2182767bf76e308a424", + "regex": "(?i)^https?\\:\\/\\/newmessengerss\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48f0b777b6f5ddcec3063c23dfe81427d2d651dfefe8a04806cd10991dd99e7c", + "regex": "(?i)^https?\\:\\/\\/newmessengerss\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b416e84e616a28e5e6bb981cd1f4bda3ec495ef6c0b690ac2cf8ecbf69f5e49b", + "regex": "(?i)^https?\\:\\/\\/newmessengerss\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc30ae38c627b1130ee0e462a7d57c1f7d41b1dabef93c81b5b294bad922d248", + "regex": "(?i)^https?\\:\\/\\/newmessengerss\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d190365be425f708590f2c97d1d3a28abaf52e6f598d49ca7576e6cee12a4cc", + "regex": "(?i)^https?\\:\\/\\/newmessengerss\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a33cbe8c238072b207df952dce23a46caefe95ce645842e7b8ce1eb7c8cf0a3", + "regex": "(?i)^https?\\:\\/\\/newmessengerss\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5aec2e00f1879cd407220b6bed6060326d1151d4c6dbee1e44e67d228ba9b37a", + "regex": "(?i)^https?\\:\\/\\/newmessengerss\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36283cd0be79469905098ce76e60c0c88d3cf77425e4a743c5eb5b5b6957a811", + "regex": "(?i)^https?\\:\\/\\/newmessengerss\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2238b9235b7a406550b18fade7322111d94a58a88e1b2469df35c3a3b8f6ebe9", + "regex": "." + }, + { + "hash": "335af0545cc55ace841cb1dc3bb99e9c0da73c57e57dfc38d57af1aaf9fd9d47", + "regex": "." + }, + { + "hash": "085b7d77a8a16e7ea6e8fec8c3bbf7ccea922b4af0748c9af851fd1e4cc2ec43", + "regex": "(?i)^https?\\:\\/\\/iloveuverum\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81f504270a3181d4be8c1aecc6244e97ff645c819333cd29621debba1e896aa2", + "regex": "(?i)^https?\\:\\/\\/iloveuverum\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c530276cd1c06074852cfecee337cb504330f774984c34e3cbca251f58bb62a", + "regex": "(?i)^https?\\:\\/\\/iloveuverum\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d03b85ee1035560756cb8e2e84da4b9f08bcad846c72c2e402db3e2b5eab1062", + "regex": "(?i)^https?\\:\\/\\/iloveuverum\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4e4140561dfe583565e2dfb69cb907a1e6e992d2b89ab2a2490c9e4ddbd2125", + "regex": "(?i)^https?\\:\\/\\/iloveuverum\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3639448546979d5ef52b5306ce829f1ce8f9a1184eb37d4a5a5b274b5dbe4e4d", + "regex": "(?i)^https?\\:\\/\\/iloveuverum\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59ee77f4a43c660f3d3963729c475e45bbe5755f2dd09cc2f16eee518ed31fdc", + "regex": "." + }, + { + "hash": "96a6ffd6864af5c56ea67336e7fb9ac71164f7d45bb97911700c196e3e785f1a", + "regex": "." + }, + { + "hash": "347f5f52ef66b929b359e3fce3c4e44a12aa085e0ad114d64c149fe701a014ee", + "regex": "." + }, + { + "hash": "05d5e0dcbe7e485ebd09253e8e754528121887d024e38917c722149bffc7023b", + "regex": "." + }, + { + "hash": "0d6304e6f52822d95f63abf774b8c2b6ec7e0c300e79c7d738cecb3ca4986657", + "regex": "." + }, + { + "hash": "6c705abcf3c90ca064415db6f95b10cb0138a52ae4d169c915224c6fdfd28fb4", + "regex": "." + }, + { + "hash": "6dfdfaba6e67da2f1f33bc958a49950b6b75733bfede7874d89921260bca50c1", + "regex": "." + }, + { + "hash": "d40b406230adfade84e8c2e8e6923d20db4015256c741e8d632d167d8e9ea694", + "regex": "." + }, + { + "hash": "53fd979bb59bbef793993f329c709eea5c6d84f07ec8719950e63c51af7fc126", + "regex": "." + }, + { + "hash": "12d4b9a2595e4176b00acd5705ee38a7f5cc7cbd0ff8002032c50a86612bf296", + "regex": "." + }, + { + "hash": "ee2f2d8c9f6e3a3995c24eb52f0aafa7e1640d74d146c9b9863e2e2f217e3b4a", + "regex": "." + }, + { + "hash": "3473e2cea6fa370511b8d48e69f58f20de677e6937cfe11502c50655d1bd8588", + "regex": "." + }, + { + "hash": "c83f00bb72404d41d31ac9916c3c97dfdad4f6d11ec7de7e579800620203274f", + "regex": "." + }, + { + "hash": "24240b348a30b76978de986f7d96f2d259b5dae7f1696dee7e49060713c12253", + "regex": "." + }, + { + "hash": "9687e064c2120037efb8c52a97217de543c4568607114b5b5e0fc0302f88d103", + "regex": "." + }, + { + "hash": "f2a16709bdd44802dd9cf632b2a6259fea63e4d03beb38f501ffbbf0c90ac376", + "regex": "." + }, + { + "hash": "d7853b21dde39b79944ae762648d13840a2f4c7e29710fc1eeceea3f7c325501", + "regex": "." + }, + { + "hash": "f0ad833cdaf617676ec70a0faf6b46bced858cf20e6ebc7ac94f084ffe89f363", + "regex": "." + }, + { + "hash": "a73a706f289951ded8e0e75ae49c45c6d77a343f2a0cf493406d2434c38df2e5", + "regex": "." + }, + { + "hash": "6f38cf2a97f703ab7a7c336e7ad13e7616fa934e012ac15da3a2fd09280aa8d2", + "regex": "." + }, + { + "hash": "6ef904449edf6d8a0074530404025e9772560391b4e3ddf25ed9c243f23382db", + "regex": "." + }, + { + "hash": "e8d0034e57555545ee7d9f6c886f1863d5ca7d81f5351a2feed09667ab55bf23", + "regex": "." + }, + { + "hash": "b5d5ee4e5048e47bdb764aabf3ad146d6ab10d891734b9eb47ca83fb5edc3199", + "regex": "." + }, + { + "hash": "cc9a2c48a0671854ee739f951d4cb6612fabfd9549d0856f7d22d4b9915f6b44", + "regex": "." + }, + { + "hash": "2d37673d0384a6b9cd8dbe751da15c4477abf3d542c79983805199bc58331960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Instagram\\-Login\\-Page\\-Clone" + }, + { + "hash": "9c952eb45abe11a1a0ef09fcf3fddaf036997468d943dc0d37a5246d5fa6660c", + "regex": "(?i)^https?\\:\\/\\/bgmiroominvite5\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d7d6945ec230d3466a2735f8533200a68a53051dd038e68527b3524613005a5", + "regex": "(?i)^https?\\:\\/\\/bgmiroominvite5\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd7d3bbda94d9fcaaa9066b10cb3fd69a2a9f560ddee027f146a1e6119c7561b", + "regex": "(?i)^https?\\:\\/\\/bgmiroominvite5\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0167b7ec640be128700515a53d4974df78ddb8a0d3df3df1ee45999631d7eb6", + "regex": "(?i)^https?\\:\\/\\/bgmiroominvite5\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d70f15ee88b93ad8c509e9351c3dbbaa11eddf1fcc1443233c9c788248132909", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a727c6bf3a753cf5acf58fd579ff9dc2a9e86ef31748bc4f72d591d28178feb8", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aca566cab97484cb5d04da293290a7d89c111842794e177c492ca3d45bff6ca", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32e5f62668fe8e854ffc50b8db8d1318118977fd58303facdffe07cc7ab27c4c", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed1ffb845d95325789b19cdb010b964682c3ff56d9bb3a9c4a3e6d4603161386", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "818167466a12a9219fdafe4a03538a074dc7825bb1c972c2c32571598b5acbf9", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6c98c6a420aa649ebd1ebb3c5ef968c8027946994c767ce40f5778f09113057", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6f4db48cfd2e5fc854a187a8f10fe803972789e85bf33a1d240b83b342d9c15", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2c8258e6dba1f4e9824c1e061f31ca3294c632af2ce1ab85f8179178915e3de", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fc526bfaffb0d52f2ba2828b6eb7f9c3358434d736efe1324a3918889292b9e", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b78b835d266f889448e7cbc06788f6601a13af3ebb5a1209d7188a24bae911", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a22554113733ea1235722cb8c0697e691ddeee41a9edb69626e4f6510430a7d5", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88e16b987a0677b9732833d2d19ef05affc3f9fa4d769f0bf4c583681b5478be", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc0c0488850b010d9abfedf2d82215548f5cf272f4b98e117f4211ff0a6b9624", + "regex": "(?i)^https?\\:\\/\\/ezcashh\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a41ecb694a8f1318578acf03159ef9a7826c9f758d3ee734debdf1f729216eb6", + "regex": "." + }, + { + "hash": "428e245d653ac2deba6a9a40b8fe6e3fef90c042bfb1e7b24c171686cca2d24a", + "regex": "." + }, + { + "hash": "b5c81a708e3fb77123b5f13b0d91b4d4e6717bb94c1750581a30d5c72e323c12", + "regex": "." + }, + { + "hash": "39cc680ad47e3e4303b0a2661461ba3a5644f95ebe35d01126bd4cd5eb3a6d3c", + "regex": "." + }, + { + "hash": "0e5e2bfbb857b61283e8dc379ee1b8c2c5cc1dbfc2240f032ec4a4593eca926e", + "regex": "." + }, + { + "hash": "7cafffa9fd2a2279e3c73a3824da776e2421f66ef598894cc1da2303a4b6699a", + "regex": "." + }, + { + "hash": "149a9c3f6c05f3e4900e86ce8ce4de83684f896eea0fca7289c4c020a2ed2975", + "regex": "." + }, + { + "hash": "52395d9690b5488c2d69a15cb894958fb0499a5a1a5ac5ba43e23366e519d0d9", + "regex": "." + }, + { + "hash": "e2d4fa151f09195df59bde88051de8710eb9cc3db31c0800a69ac8812285d14d", + "regex": "." + }, + { + "hash": "77d261ff279a49086b8f6bbc89e1301479221182ab14defae01e77c4f1ba2bb1", + "regex": "." + }, + { + "hash": "df890571f0bf10e2e9e33abeb61e91ee9c8d7e1a44f05a9827583f1939c3733c", + "regex": "." + }, + { + "hash": "d2301539bb9f2ae4837c44328e53a67a8891931650723a21bb6784be5fb93a08", + "regex": "." + }, + { + "hash": "5db1dd6e1d35654499dbfa3a42a1f72dde989e01b6526fb0906f16ab5762e942", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e41aeeed49327293a4a248651db8d3a67ac0ad5b353d90d5a8811760ec38280d", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cba088c8cb4645a29c5cb52867126f99ee0e674283db2d23dc1e2d54c9559e0", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e222b7f9853b50e178469eaf71cd023d90ae751d687eca8a90bee01ca012a61", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c8500687e8844980b1941082831d42ddb1112e1845824f7135a83029183d8cb", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c14eadf15a2c322d586c60f919b041be7a9b52e8191b48bf4868e6b0e4240263", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1ecded453f51e56b71f48615624d6d3efbafb8c54ed2a8322c934125cc35e80", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18398f2c79978ce6d1fc57dfc8b4710e708428f13ab0bf2e2029b2533e15e89a", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7809e889d80ae72873cb6c82d374241d13584b02832a37d078444f27f14bd505", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc6a3e1406a156ab825c18be523dfd9d584652f50a4f4642143758a8cb569222", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73b845c80ec4aaa6c82d12055be4102e8d050c13cae1bd0f3b953dc64934566d", + "regex": "(?i)^https?\\:\\/\\/gyansujangiveway\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4bb027068616e68d62f29018ed1083cfe2c18485672c12f09b9fed86cebf94a", + "regex": "." + }, + { + "hash": "b2e4b1e22c81cb571ae291be3d9d5d4470548a2cb2a0ff49be2f782faa50060e", + "regex": "." + }, + { + "hash": "bae3085da2f345a5c8a09b19937d0e7c47e82dd8868c00d42f869dd4e5ba2a87", + "regex": "." + }, + { + "hash": "57116fd4e108b5b9b39cb812c696fb4d1b666f674e330ef307e19763fae20bf5", + "regex": "." + }, + { + "hash": "49c85b686e3bf55715a975d4a8fbfaee86f39530a85b9e04b8b758106705f238", + "regex": "." + }, + { + "hash": "566a668875278c8ae89c67394567319965998866060df64b038823d087a6bde0", + "regex": "." + }, + { + "hash": "02bb8402d03cb53723b5658e67bf5a4b7b3865468b7eef5179426e31a49c7bcd", + "regex": "." + }, + { + "hash": "e800822147e05209c4c9fe1596e9f3782559ffd377a473f38d28184b58d18c5a", + "regex": "." + }, + { + "hash": "c655e4f762d8ed9cb2be3efff405db462a4ecfdd08b1c2fced1203b733ea1136", + "regex": "." + }, + { + "hash": "10f117c1b2a7127b13d9bea430659b5f93eb4e2019d567da10abb1f7b99f84d7", + "regex": "." + }, + { + "hash": "27d3fccb9d6f09c04bd5240a4b156b36fc54e8293a7d50e27c9d6a0402757b59", + "regex": "." + }, + { + "hash": "7e094916054c57d79ac306e14261810e592a6ef44f9467a362218d53c8a6df07", + "regex": "." + }, + { + "hash": "0994229a8f3d8e743181caf2df83da552b42118a6a33bebd5fbccab4098b5815", + "regex": "." + }, + { + "hash": "8318fbec77fed3b4b6a7853b9c67a2d8680486d3e9091074c2a576d30b9fa3b8", + "regex": "." + }, + { + "hash": "5de88c7a3c3076ade78916e4691d480b93f691824d4ef296bf86606307c70eb4", + "regex": "." + }, + { + "hash": "45d8421d548fe669dd326aacb8bf42f5837bfe238f706635cfabc978b04324f7", + "regex": "." + }, + { + "hash": "52868ad6aef7c539c9eb9dbd07a565a9936ba53236ff69f5cc4d6825907d3d96", + "regex": "." + }, + { + "hash": "c017b3a21d1724b72cd7adbc1a3f0e789fe5e8639de86bdde534b5eca9219adf", + "regex": "." + }, + { + "hash": "81b4c2a75dedcc9a23fb6574a10c24810009c85cc42c82c414da2e8a8ebbf432", + "regex": "." + }, + { + "hash": "835c335d6a033f7c0b818aed5631fad5825aa7eac42b08258d95556adef164ea", + "regex": "." + }, + { + "hash": "1969608271d287d27bf762fae39b8540604de6abaf6c1fe7f7fb5b82ace7c608", + "regex": "." + }, + { + "hash": "1c5a68a7ca7810c72b542a9fe07fae4cf185cc437edca336d395cf4343fe21f2", + "regex": "." + }, + { + "hash": "ffceeaba319879d06eddb045150e9b509be10c944980c276f537c0c8b6d81755", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "eefd05f02db99f12fb3c97ae25831006f616d69c4b600aaf3a753a645493f2b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "502519f64b55822db81b184d31c968bcdaa59e5daf62a7dab0f132bdb576d23e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "a6fe1e388f8fc4afc44d83aa2deedf59c80bcd7a9508f3aca8fc2f8ab91f579a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "ffceeaba319879d06eddb045150e9b509be10c944980c276f537c0c8b6d81755", + "regex": "(?i)^https?\\:\\/\\/aolmailukhelplinecustomerservice\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eefd05f02db99f12fb3c97ae25831006f616d69c4b600aaf3a753a645493f2b7", + "regex": "(?i)^https?\\:\\/\\/aolmailukhelplinecustomerservice\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "502519f64b55822db81b184d31c968bcdaa59e5daf62a7dab0f132bdb576d23e", + "regex": "(?i)^https?\\:\\/\\/aolmailukhelplinecustomerservice\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6fe1e388f8fc4afc44d83aa2deedf59c80bcd7a9508f3aca8fc2f8ab91f579a", + "regex": "(?i)^https?\\:\\/\\/aolmailukhelplinecustomerservice\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "212acf1ce8f4d43425fee4575f2af5315b1dff4fec89998d0db941c0fd2d46dc", + "regex": "(?i)^https?\\:\\/\\/generatorfreeaccounts\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d8aeac3ae8bfafe9109ecfb05f29063f3454c147931480d3ddff51eb591cca7", + "regex": "(?i)^https?\\:\\/\\/generatorfreeaccounts\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc30cc5ae36dfa4fa08323e96f4d854dd76954d5fd892ec2ff30548ca27a7c1f", + "regex": "(?i)^https?\\:\\/\\/generatorfreeaccounts\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8f0772679e302a4814a43664544bbf1debb2d7f03ba7955f463671932967245", + "regex": "(?i)^https?\\:\\/\\/generatorfreeaccounts\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3522a936ffe3678e750ebdf0f25642b2cb148ee73dab1e0822c2d21f7de84fee", + "regex": "(?i)^https?\\:\\/\\/generatorfreeaccounts\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "317d7fa6fcd71258e3e24796f6dff3571674c1a1324b571cfe666dd4c865b488", + "regex": "." + }, + { + "hash": "e3973364c2ea48d3bfdf0184663e5688d8d5bf848207ff77f30efa64eb8cc0d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix" + }, + { + "hash": "43f7ee41335f0927d1c61cee5e79830b3888ca997a7a5f64c26c76ec17f15091", + "regex": "." + }, + { + "hash": "a6cbdcf9f032907773f4e66b7ff4e2108ad5979b4ab968e71e0f332888e6915b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2b157c2deac503610be0ff8ac38a6c05a79b3d4351024c4a1423ee721efe42e", + "regex": "(?i)^https?\\:\\/\\/moneypenny\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a88a0f0b392241f221f3bed84525b786587bffbd9e177b302357e238c33a58b", + "regex": "(?i)^https?\\:\\/\\/moneypenny\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf06d5ed6283701d07222c8f877b3996757a110f9bb5ec5e6371363f16652536", + "regex": "(?i)^https?\\:\\/\\/moneypenny\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab9fdccae0b5b2b78591f22c26b2bbc1853df9f17157a912c56cbfa077f0010", + "regex": "(?i)^https?\\:\\/\\/moneypenny\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5de85c058673a71acc772d4aa551ff5a1986415091f7fa6e19a864b9ec429999", + "regex": "(?i)^https?\\:\\/\\/moneypenny\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcc07001c6e3b856727e0dc218279fd3af820f9495a9768909da8eb20165419b", + "regex": "(?i)^https?\\:\\/\\/moneypenny\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b3a475c99fb88ab845f1f1ee6faf087b3a75e3e54907edad69e82540ab4be91", + "regex": "(?i)^https?\\:\\/\\/moneypenny\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4ecedbb382b57f39d89235fb46ebed3a0a32aca8465d4d6f0ee582c1295650", + "regex": "(?i)^https?\\:\\/\\/moneypenny\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "444352f29d76e35ca236b4cce44a67058e836f295a002754606a102b740a7f91", + "regex": "." + }, + { + "hash": "17388f23e5abdacff848f770ede908ef63c6ea856a1812bcac03d9af612155b9", + "regex": "." + }, + { + "hash": "942de29f0c58eea6412b7d719e4ecb915ca75eb1bcd00afecca714014dc37cb9", + "regex": "." + }, + { + "hash": "302f434360a5757f298fe5987a7f5b22cb7da18d997402d7fd853255b0366ee2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cerautheticate$" + }, + { + "hash": "e923aca37851dc1611d39e909716b6c68bc09edf87ec71cc3c708257bc022384", + "regex": "(?i)^https?\\:\\/\\/marhantudurian\\-cf34\\.czemarkojo\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4a4bf814351af44404f651b32281bfe06c7029a28fa9088a11cb29f848e0c77", + "regex": "(?i)^https?\\:\\/\\/hemalk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a29b601cfa1eafc8c2845d86f27414b3c87326ed7623926955e5db8fb7600f7", + "regex": "(?i)^https?\\:\\/\\/hemalk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfc8c830922ba3ee51b7866ae73a7d044868b738fbc54121f3f7319d5b91613f", + "regex": "(?i)^https?\\:\\/\\/hemalk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50df2ea38918fda7401f8001ffa5b59383e48c7801ab56577fb246bafcc95566", + "regex": "(?i)^https?\\:\\/\\/hemalk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d02eebcb5e29a53b8163ab069f70649be4d88d750d4c7c1c6a94309e4e6f8aaf", + "regex": "(?i)^https?\\:\\/\\/hemalk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bc2669e5a0a9eb855f8d5bbab63850061e887891f5ee2d9bd5991065a6654e0", + "regex": "(?i)^https?\\:\\/\\/hemalk\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd9030438f7b4503cfc7b3179b1e88efc5c8ee4cc1497ed9a276f90b2be99cb9", + "regex": "(?i)^https?\\:\\/\\/hemalk\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d5566754960f364f1433da672f683de2dd621a3e8fc869cf9090b74b9939be", + "regex": "(?i)^https?\\:\\/\\/hemalk\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33fb3c8ecdc223c1183a24442a4e2e9a8ea743e5000afd8505775a94358fc5b1", + "regex": "(?i)^https?\\:\\/\\/hemalk\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30db108f49c72a3bdaf431c6ffde882af3704510544596e1233ab5b30bd05fa2", + "regex": "." + }, + { + "hash": "8e33c30b2fd6e9d22b5b0a280441b904843d7596239d01e48587a87d232d86c9", + "regex": "." + }, + { + "hash": "2527f860579f56328a6075271af42f1163cdac51e4d9a5a6423a9dff7db00dab", + "regex": "." + }, + { + "hash": "eb7089d7596ca417cf9ad45e7f3d33506bb3adc1b6f2f73cf22dab895cc34b2a", + "regex": "." + }, + { + "hash": "f131f517c8cf233de19d27fb5b5b01272afc4ee99ce5c383399f46267ed0faea", + "regex": "." + }, + { + "hash": "194217a744e50c1f53a1a45624137e29083fef0d73646dd4c49bc6111b39cee8", + "regex": "." + }, + { + "hash": "9cc71c47732eaf5668e08eeb429dccc971203a70ba5856b62e09aefc08f319ed", + "regex": "." + }, + { + "hash": "0c274afa0980328aa887ea04bf8f93ef298a3a66bc00116f6c15b7d82ccb9a3c", + "regex": "." + }, + { + "hash": "b3239549db6a5262afc06c09fe75d5b5d38500e1ecbf1024d1670fa9288e5232", + "regex": "." + }, + { + "hash": "9c8a3d05032443439a88c1780a9b86a49cb83c1c007546e0670a0401ae823f40", + "regex": "." + }, + { + "hash": "5698c6edfa55b5754afc8517ef2acb1412231f745b347dbb7cd1825cd02acaa3", + "regex": "." + }, + { + "hash": "460d9753db87b4e415f6a764400e5cd2fd53e7b15ff8f700f70c7de4feebde90", + "regex": "(?i)^https?\\:\\/\\/socar\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acfb1f8f6f49c61fdb93b47099a6d835b6598cd5a68ec4d4ff37ff75f7f5cd69", + "regex": "(?i)^https?\\:\\/\\/socar\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54b0a0bd80b3d95150c02d9e38fe7b2bc2f527d84cea78a7811e84643475fb26", + "regex": "(?i)^https?\\:\\/\\/socar\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84906a6424707538afc1961b47f343306a64abb06186d1533915cd68790bb3b8", + "regex": "(?i)^https?\\:\\/\\/socar\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9a1e1545e55250fa6a1fa940904000f6c726a79891a36b891897c93c0d27348", + "regex": "(?i)^https?\\:\\/\\/socar\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f47ff472a89cc59b422b2bb520d812514e29a4b371470440acb95addfb6f2579", + "regex": "(?i)^https?\\:\\/\\/socar\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4bcae3bfe5ea8f046e4c179753022796abad1166d348c42f73aa1e672289340", + "regex": "(?i)^https?\\:\\/\\/socar\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8453fc81216c0d576545b762c433efe93e8a4cf06bc835ab07280da34d840828", + "regex": "(?i)^https?\\:\\/\\/socar\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "247bed424869b91725798aefb5577054934567c939370d4f23576f48d57f615e", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1893\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d531186329224b1a762396717f7a7c099a039fa48691f3dc12174e96ca4bd9f0", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1893\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e76d79f99ffd2483b02f96e1f1c118c526e9e197130b43c977833e66c5bf7701", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1893\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5c22ec12c811b3dae62122d958e6912cb7acfcc078fb2f5029ef60a6526eaba", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1893\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64fd90c391324994ab97f85301102fa09ce942b45d2cb6f6af30d1f95af87308", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1893\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a372102f6e61c49146e002dcbc6be8784ef83d68445cecaabc00d8b3ed12c19d", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1893\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc39b9765757a40c00389fbf6be99b5b2c32a5ae5656cd10fb4be9dc8f878b4c", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1893\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e4206a9b3f87829975c55b10bc7f34e8aa23b313555401ab345e17069f488bc", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1893\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45c4296e81d0eb7032c6b6a27cbb40a1b567bc2355554472b0bc2912f395edea", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1893\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3e7ae6cadc224789bc43a2d18a7282909d4a26a00fcf5f2abed7047f0414084", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d436527bc053698f76073b5ad09b95916c9bcb1f23cb7397fd81be9a597c2e5", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8b8cc0f0aac5e857fb74a3fb4b9e0c9e70bf8c744002e1fa7d1891ed29c430e", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb9df2c1dcb6c0ccb64e282e1753bf3854ec573c7a2856e0b878f0ccf748c975", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec8348e10a3f8120444bbe86afaf30283d17c00663b677a6a6a6023c9cad7181", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fd3297211e2963b9e3851aa0adb6a956b974b1deca47701812f5e6a51ff7d50", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "372782cec269ec8c31ea28c8aaf42eb242b01585033bdfb4a689d129458232aa", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "986970c32c281e64c4f1610e90180e4134c26cba88f1b08fe8df9c680212e415", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8e7802d42658cc72c0ba1b3e8158efa7a90505c7d467dc09b270f58f49c86e2", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "114d501e6b80a15d3012e4cf21cccb078ee8c86cf48569e894aa81dd03dc4926", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1881\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "932c230328ee4518212554437d00d1ca7230bcce80ae5f0b6e15625a01dff7e6", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1877\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b756b94052748d67f08a1ccea1140094d064092eaed1894a4b645c61d9f344e", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1877\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4e5f90daaecf48980371cbd1eb1415e81db3e0ea50e031e8412ba166d8a58a", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1877\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d46af00c466a54be3f32f03e7268a0eb26c08790bc767d513a1c1953142ab4cb", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1877\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "347f7010a7a0141d1c0911cf618506821bd18fffaa7281026ab6e07dbf877032", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1894\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75670a7aaf61b0ac8c8d3e0d99106d87d7f999c6ab202fb7412b37327e1f80c7", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1894\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8fbe8bb5bff88c90ccb2226841523f4d77fc096c889438840e0c74f8d633cfb", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1894\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b271b972cc87a0b12c4aee27e4e90013cf5cb26ff4479cddc084813ad19e34f", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1894\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1a73bcc9df0857934be8221d308b788af870203d38e7751c9f1f985e87fde11", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1894\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebdcd95682c2b16906d5abf226ea0e117285a006daed5000c08c94116f5242c9", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1894\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0833ea602767c1ac1b2a930da0ca9258c11e68c81302361b4a2da12708037af2", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1894\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb49d73d8772cb355e9a44f0d07b61f9b32c8e04872c3986e6f9a6ca8639c8c2", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1894\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88c76156b7b92ca281eb7f755108aae01f507f985dbe5f36dd93bb48c084b569", + "regex": "(?i)^https?\\:\\/\\/hot2021\\-1894\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef590ba04cf75f1c1bd82372e8faad15757ab8c968f5100a2aa00274d0f61273", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fccae66237570c463f03f7adc329ee318bec5e4846d966de30ff858b1ebf888", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "257c521d9d0fe06f734ff4b6682d57a332640376b5477a9111992c7663ac593a", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13ba6edba6f305f82cd5b1ba4face293cbe3fe44905cc4f8c2bbfe6b1a4d0cc4", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a6be168c05051ddfb195ee2a8a0560dff42d7c758d950fa558bac532efb298e", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7110454239ade68d3d14fde9936d26cfb885cb6ddf58b2f09600d013c4a5ce89", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3aa2f20752444f6f3efdd2eb4b746b22e3a7fe0d918da77aba8dd67fed98c7c", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c2b3fcb949336e64b7ef9c137a8e86ed4e4371db97fc7b4858d52301fe2ec1a", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "115cf16e094d26a44541c18abd9b6d4f4fc68fd6c11885a3ca04b4c506e1da34", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d862ba0aa6e452bdda9321452257ec6c7c4541790296fd02175bbadfc883d95", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fb51e0cc73d571036a58f36d233e45d99b0ba00a43c7bbbf3428221c632aff4", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5b4ceb6e72e6f45bef45981480a50af15301e946460c5c44b1a1625faa6045", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3512e285012d9d0a41deb17c4157fa5cde64d0b8560db79638b32811d8c516c2", + "regex": "(?i)^https?\\:\\/\\/doesjesextenderwork1\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06ed30abdb17afa910b82c01ac4c743cabbbfec650d1ea913c2938209c44ec78", + "regex": "(?i)^https?\\:\\/\\/abcdrtsggswrrfgdg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ffcf7e7faf746170ef6695a3b2da67321b0a7e5098445f129cc74a07d6590ad", + "regex": "(?i)^https?\\:\\/\\/abcdrtsggswrrfgdg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22e2d93acc5bee7c6fafb17afe8b6b1663a2809f421c88427281650a026457f9", + "regex": "(?i)^https?\\:\\/\\/abcdrtsggswrrfgdg\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1a7ae510711bd8da816e757f8a994be600293e77d8584ce036cad362c6146dc", + "regex": "(?i)^https?\\:\\/\\/abcdrtsggswrrfgdg\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75671972853f5d3bb5c40b40371c4681fa98c4a6894980fe5711d749ebaf66f2", + "regex": "(?i)^https?\\:\\/\\/abcdrtsggswrrfgdg\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93468681b61c9c6a1809d1c4b55586f8387e8cbe1620ab7c50b04f1c6ff17314", + "regex": "(?i)^https?\\:\\/\\/abcdrtsggswrrfgdg\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9836f61198332b53f559ef5cb7a6bbf0a8f144aeb0fc0110f6e8bbbd7a9c2558", + "regex": "(?i)^https?\\:\\/\\/abcdrtsggswrrfgdg\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4822f51251837e3b3a865dcb821bf05ecb157fe6b41d930b8b0ae8fddca9eb51", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b97e8d48cbbc9d7720cde8ba169dee499ed14ccc35932ce170fb263f75b32bde", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386648320a3c36c08133494444a080ada57ffa8220b582db20570d569141b3ec", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acd20fe028bffcce5f594157657042c8f75399ab8b19cffe18f99cfe3cdd16e9", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d44ca2ffcf52078b324648ecad670d57a5ec818dc0806d920a622516507b1b5", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c901d25377c1507b4cc2a5aced6cc17d0607333afe23b9411f75bed78c530dc5", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "612962e0eb6af62ce2c4eeb24c81472b82ae57a2c8f29cd10dc420c53e82ee69", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e7d82dc5e835db352abcec215391d4066d4e5e66287d3ed5fb5172d161e267a", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9c3fa76dfe3d7ce7b82c9dae23816df31542202c7a1c98f7fa6a14548ce3770", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e43ca72f971de926d69004ca0e94284dfb82d91df5c2b7d5745d7a62b454ba36", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d0b04fa840c197bbd73eb66239260dff9b72fac0c26b81e0565099c9d5b06fe", + "regex": "(?i)^https?\\:\\/\\/sergeantsodomy\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b6d8636aa82660823a64513fafab12e866c3c194f267a6f7f349f0b3f948e5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dwn\\-wefile\\.html" + }, + { + "hash": "1272d2e17ef29124702ad215293ca3fd7c5a07a1c85a3415abd7afb78991f521", + "regex": "(?i)^https?\\:\\/\\/onlinejobsindia1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "499126e1c816fc919651c5766b29d580ce00e4309dc2511f091fe11355d0f4ad", + "regex": "(?i)^https?\\:\\/\\/onlinejobsindia1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "087279ea8fcd615184f24cbd0cb5d4f2a16fbd65dbcc84ea3e5a9fb965b0f88a", + "regex": "(?i)^https?\\:\\/\\/onlinejobsindia1\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75e8cb111ee09de952f24668f2417a349b5e2941d9af8e534423ae1706ec3c32", + "regex": "(?i)^https?\\:\\/\\/onlinejobsindia1\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1be6c8918fade11e74c5c3b8801dafd6678fd668ca2ee803eb1c7e12d184db56", + "regex": "(?i)^https?\\:\\/\\/onlinejobsindia1\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0308bcb5869719e9eef913b8a20522fe1885aa661d71cb52cfa6c8a1a99b2a18", + "regex": "(?i)^https?\\:\\/\\/onlinejobsindia1\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4daa6cb31a8694f44a556fc29766920132d28f8a9c2372121b994da577aacdf", + "regex": "(?i)^https?\\:\\/\\/onlinejobsindia1\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a0cb37559cba3a0dfee2c759fc0c3c6c0655b76e8f5780f82011f7374fa2826", + "regex": "(?i)^https?\\:\\/\\/onlinejobsindia1\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "800cede2100b21f729ad99fdca9450fd76525c7b169c4757198ef5fa493366f0", + "regex": "(?i)^https?\\:\\/\\/onlinejobsindia1\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce550b9d4eb9ec9a8e12017c951204eac32e360a6be566d5f5db9d03620f4b02", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cba3401e763c4517dc3e3b88feea44be91f49587bbcfa169f9cd8f8821ea786", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea9f3d056977ef90ada7e1af8ade9cf8c8865260235a61ae8627d4b1c15a4ac", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7eea6fd10d4dc2dbfd7e8de8a338a679f5c0517430a6c03201fd1acfd6b500e", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7f06aa56a66036bb6947074c59da0afbc62485b628c1e76073b115e49d603ad", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2d2d88a7f0cf9460d7e8944105f5b1b0ba30fac2c216ceb0869a5b58dc766f0", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28de811568975c1ebb28eaac1bf3a85ed830eadb4d633cdcae109a8f57d057a4", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "325fc21e7519b8562dddf7dd3a2b6241af54c5f3e3ef2600de4e14cb722773d5", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03cdf6a45fdb222b083cab356286bca3ad71e82e36a937d9e2928d30d9644055", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2f9aaeec0adea6afe80447f232d58a73feb4f725bfd4d168a261491329ec4e7", + "regex": "(?i)^https?\\:\\/\\/rewardffgarenau\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12cc6ee96b40eb6de1dc911b80b8d9207a37c8349e63e0e6aca32eb917d8334c", + "regex": "(?i)^https?\\:\\/\\/letsmakeyourownworld\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "108ac384eb51a7e8b450a157ec4304f7c593e51a8ff488affd38beb53fdd462e", + "regex": "(?i)^https?\\:\\/\\/letsmakeyourownworld\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b56158949ee4f301f8d12e796988ec530c34f1bb813727c535b3869cf1bae945", + "regex": "(?i)^https?\\:\\/\\/letsmakeyourownworld\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84c29ff759c5f358b5c39c562fd4dd984bc80daee2fbd6262265769448144e58", + "regex": "(?i)^https?\\:\\/\\/letsmakeyourownworld\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac51428229e00707e0059a8648daa123881d761390090bc5033347629d47fb66", + "regex": "(?i)^https?\\:\\/\\/letsmakeyourownworld\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "201662311c20de5275432e2e007c12c0e70f17ea61b27b775d12fb14094af89a", + "regex": "(?i)^https?\\:\\/\\/letsmakeyourownworld\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf94c393ab4f2563820a205b9aab16bbcba8403ff85198085f8169782f2c61fa", + "regex": "(?i)^https?\\:\\/\\/letsmakeyourownworld\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "436bb3a7070c357f2ae1fc6875b86f44bca15156c3fc9d02dbbd9011a14fdedd", + "regex": "(?i)^https?\\:\\/\\/memberserviceatt234\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8f49183ac5673c7f2ff82eb945b2b1284f2ff7c7beeaba43dcd16725ba96df4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+instagram" + }, + { + "hash": "7054ae7a872529c321973b3d8f17936f751b64074adee76a698e2a0700f98f39", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f5de694600913471f0f94b3d5423fedccba0f1dc44d74336a2421e1e875d205", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce868e774ca11abe71755528f20b0500d0adba3f9e2cd2412c719d423e9f40a5", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c990f8de0462396f5167e00224712e58e9a00d0d23176395a00cb69f9719982", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "841961310f4725f4501367dc9156e970cce498dd2f54dcc89b4279380ed2a11b", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af54e1f182f33da41613835cb1a6f2dee1d3f7ebcd2bd854c36a7616e6a8560e", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cc5486d0c4c9493ffe211519edb6db1eca7d3d71df3ee4add355e9f9624956f", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bb9377fa10dc59153ee29f384c633d9f7413fdf687c8cc66c76ca14906fc922", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32b598bfc60a851e5c7f9873204496040d7bf72b9552c4abf7ab95ae216a8784", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0acd714ee4684ac7240fb65341c9a56fb5fc9afa4a2b3085672fdbafc285f8a", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ada90797c948b2b15b99a1c6511511d394a774f7fd692f46120830e0709d30", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45c84aaf45a1904293383b0b6c034ea32a545b17c94f0b96df8db5c8b29c28b3", + "regex": "(?i)^https?\\:\\/\\/ytgfb\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03400ba35d7332ebc7c7deff23781560fab857f8e124d626db04f4d9a88c88fb", + "regex": "." + }, + { + "hash": "9f627c33a3ed07bfaf034a730d2508c3af77a7660e4b8233b719882148aad547", + "regex": "." + }, + { + "hash": "d47a54985f77d98e048e6f3fb76dee4b87fd31ea1d4e70b24b0bfc407bc7e9ce", + "regex": "." + }, + { + "hash": "21d52ae0894067d7f9fb8cfb8e0997d4431a6fff60fd163608ab11a84d29c227", + "regex": "." + }, + { + "hash": "6d16cc502d21056ac487650f0ca2b0fabc369161518d4b145df34ed17a13aad0", + "regex": "." + }, + { + "hash": "dabda54cef9f5c77ca7669bf0ca9aef1a7b1d7fe96ed9af7802eac4f70a4ae74", + "regex": "." + }, + { + "hash": "10e9044c6245d373fd760c1db3b04e4baa3522408c9c6378aa44bb9b6f53275d", + "regex": "." + }, + { + "hash": "e7a639cc231464627b815646de7d10a93f1e4c91b1a81b5d2df38375f67f7683", + "regex": "." + }, + { + "hash": "fb615023bbed5e407b8f21c82b85dbedc4db0c4655a0438485311035a5137a58", + "regex": "." + }, + { + "hash": "d75d17061b45475ce913d54f9a998d8dcdfddf053b802fb1ee60fc4e338012ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+click\\?d\\=PX9ETUyUt6UOj\\-p6CzD2wB9I\\-HKbDSzIgx9uyTnpKnol\\-tR8RkV9vyMx56Zx5ppMlkL4AzU58HBRYmfLBiKFg_xJ3k0ECwcd_s7AlH0VeUo_l7MzmtdFeECMoh5txsqvM1DpxAIlNa03E_rG6HVcV5hh2FMrDnjmVTDCUbo0ZHMrI8mqHH0OQ_1rZnsW7f1Pp\\-fC5jB9yXAJnTdD6mb7xvB9ZyErOoroQ6le5_T2Xg8lDN1dib14kZLEvHsk0pyLktuLT6ZyA7vTlouCCe1Ymenmfc3Brosbz9VoIB4QcMk3kQehlHNHFId0mW2OvPJU96cAllLDdGl6QU9KDcgWYcm1seyCWIuy0rA36ROc6QBO0$" + }, + { + "hash": "d75d17061b45475ce913d54f9a998d8dcdfddf053b802fb1ee60fc4e338012ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+click\\?d\\=PX9ETUyUt6UOj\\-p6CzD2wB9I\\-HKbDSzIgx9uyTnpKnol\\-tR8RkV9vyMx56Zx5ppMlkL4AzU58HBRYmfLBiKFg_xJ3k0ECwcd_s7AlH0VeUo_l7MzmtdFeECMoh5txsqvM1DpxAIlNa03E_rG6HVcV5hh2FMrDnjmVTDCUbo0ZHMrI8mqHH0OQ_1rZnsW7f1Pp\\-fC5jB9yXAJnTdD6mb7xvB9ZyErOoroQ6le5_T2Xg8lDN1dib14kZLEvHsk0pyLSuwPDbs9uEujzAF4wOuvJSzAhmZdigoWogDSM0KPvvDfaox\\-Od7RoHZiqs1Fkw5muYj_B9sM2t2QJLHxY6MUzztLr4SEYPLVKi6RjWDwgQB80$" + }, + { + "hash": "f6113d7dedb428b9cebb70dfde454e81f59caa99385786a74a30b33e6a20d50f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-clone\\-website" + }, + { + "hash": "d75d17061b45475ce913d54f9a998d8dcdfddf053b802fb1ee60fc4e338012ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+click\\?d\\=PX9ETUyUt6UOj\\-p6CzD2wB9I\\-HKbDSzIgx9uyTnpKnol\\-tR8RkV9vyMx56Zx5ppMlkL4AzU58HBRYmfLBiKFg_xJ3k0ECwcd_s7AlH0VeUo_l7MzmtdFeECMoh5txsqvM1DpxAIlNa03E_rG6HVcV5hh2FMrDnjmVTDCUbo0ZHMrI8mqHH0OQ_1rZnsW7f1Pp\\-fC5jB9yXAJnTdD6mb7xvB9ZyErOoroQ6le5_T2Xg8lDN1dib14kZLEvHsk0pyLsoOVEXfY47pn_C3HWCJpLVjdJ0cmpoaVRdGyYdaC1NV7349hPGziqaU8vdOoHzawiM_3RcWGztI4qfFU7CLvOmwjm7DhYz8pK07VMuK6k6Kt0$" + }, + { + "hash": "5dbfb6fbb7725983cb1616c3cbf629efb321858897cb00b9d141a9e8cbcf609a", + "regex": "." + }, + { + "hash": "99f679bc1503bb15db5c1159d2430018cdec0db15d00e515b7761a55164dc918", + "regex": "." + }, + { + "hash": "e5222b3df6ac2d5814c51bacb7a00e3a46184851e3347537b37d0729c31009f1", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93523189317cfc89853b450cec79be93402f72e69ef84d425da94b9ef129a31f", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a72efe3df8ef0260622caada16737fc119c5dbec1986c9b30aa6215fa8c400f", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "239568e010fde0d9a4397fa6289bd80fd31f532ed22cbc2c85c39fb8876f683f", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dca8d199c7e8685c3a92fecd4db183308ce571e8ea733f1a100af4c4885b71ea", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99e44411d50e412f7d38e0ac4bd7b017890147d77e5e0a56609d3213af8bdb77", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be81a8f0dd173c732b9912520a871bb4ef32092761b2ced2a3535d852555bbd3", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50441cc04931594f3477e6f4565839d79c6375642e0cad48509a146b3c03e293", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8531d0191579ca22416d2f7c62002f0fd5e0dd158bf8a89a3af546c4bae0cb45", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d0d49f7b03a93b49aa49e97a6228ac7384b434ce76e18daf00fa711e3c4157b", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14c7298a3e3e96a0e58ff75f5bc2f4c9c5f584da9b8d72afe4b1061b6630d87f", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f67415698199305d1b186eb9b3176b4391b4ebc9885fcb3b54e43df1a4e924a", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ac0a03f01f5a228b32b5f577ff15a75a7779f4248ef4484c93cb3dd03f9296", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+veriauth$" + }, + { + "hash": "c3673ba52639636749b4654527eaf6b944512317cdee090f45ae5279640e4613", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+veriauth$" + }, + { + "hash": "bcd1684a8d053a06b00d64f0137913cbad9023ab986c7dea5a00362e3e042485", + "regex": "." + }, + { + "hash": "35e27547b9c8ec95036fad42e196cb9b9aea6cfe412ed26670ce66f15697c80a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-Log\\-in\\-page\\-design" + }, + { + "hash": "98a9cf61ff6d30e5e159669496eaaad599cf32ae4b6714feb9bdf6f769aca5bb", + "regex": "(?i)^https?\\:\\/\\/aollservice237\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd7a137c121a8b0fa63457183429cc6a0e2d5f6cf995854a467ce6cba6455127", + "regex": "(?i)^https?\\:\\/\\/jun0secure\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "877c4e2d615b6c9b65644f6fac128e027a910866112da7ca688941d9d017bd57", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05423ec145f5d984c921961798e4c7be90173702825f5f2dce149f34c3f5d5f8", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34d4b6d4c61095e1feaab16172f43f56806c4dcc12f0dd806e72f887ccdcb965", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82683638c777f7c1bd5f535fcbf2417c4250ce7a062c1a1ce6ff27334f8015b3", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7682959bd7e91f27b22c9b7fe36104bf391fbefac420b628382eb3d6ae6ec88", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "732e996d8acd73bd8c74b6afac3c2985c2096a6ea49b33ce88ac0ffc5eb12ea0", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d072a320964069e8a7c41fa726b863b4eb3269c70c851d23f1f2cf02ead023a", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814c84a12f2c09440486903a657a2cc832ab57ed0de75e24b519754ba77890ec", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8feda63329b353c75da06ca9b491a1df08580fbb8e83da65322f1d8f9e5838f", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74270d450f20b3efd6b76620e118f6e3c68dda7038bbaaf30f088207a2177b66", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0fa57cd59dadae4ae3bd239abbfaf8a9e217b09a7bdd25a98f5c2c5c4828b01", + "regex": "(?i)^https?\\:\\/\\/gotitcash07\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c243f0f6911b3658a52b62a60bc9669a3ded86c9c7874bb32330cc8287e3503f", + "regex": "(?i)^https?\\:\\/\\/msss49378489\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6f4dddecd948164445f17aff0ba0f3113731720e273e620f6290b7d870c4dcd", + "regex": "(?i)^https?\\:\\/\\/msss49378489\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "764472cf1d5594332f44585b65b4e0bdb1d140777d14e78fe75ce19dd6a96a9c", + "regex": "(?i)^https?\\:\\/\\/msss49378489\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b9ad68eae210986d7f9d1b75b8a22490f80f59bfbbd73206a80c0e8f2fd71be", + "regex": "(?i)^https?\\:\\/\\/msss49378489\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0a9f5246707741fea94cea2a72beddffee2a02333d5916ae44999a3df357d19", + "regex": "(?i)^https?\\:\\/\\/msss49378489\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c0bcce13b8482ab2c525fb5877ea549a4e08fedf783307c67ca04e819b63b23", + "regex": "(?i)^https?\\:\\/\\/msss49378489\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7a6c7a6b8f5baba59a18aeda26f4696fa1d37aaddc10d62b4da871271eccfa7", + "regex": "(?i)^https?\\:\\/\\/msss49378489\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "080a893a2e509be45678e36ae003e21bfc04947f3463446646189921c0c13ad1", + "regex": "(?i)^https?\\:\\/\\/serviceupdate435\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729e1617097fcc7edcb4c7fda7df2be29ddcd955ee5b5ebf4ef1fc014fc80e36", + "regex": "(?i)^https?\\:\\/\\/2ygfiuygfuiy\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8c50d0928494aa61039711d1f4dad63df7a0aade3fb22bca0048efc0d459c93", + "regex": "(?i)^https?\\:\\/\\/2ygfiuygfuiy\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e12e6d6b49d8bdfb6e036ab7ab45cdc62f034208191d83e8a19e23f97b1f877", + "regex": "(?i)^https?\\:\\/\\/2ygfiuygfuiy\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d872c459f5a29ee79b4813b60a9a0d0c80ba0618f69944faa94e30032f9e8ec", + "regex": "(?i)^https?\\:\\/\\/2ygfiuygfuiy\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d344ce7a40f8a1154c6b2227242517488733a2fa1f53d120c6ef5ed4b40a9dfe", + "regex": "(?i)^https?\\:\\/\\/ertyuaa\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7852d004eee165936b8097e13780293dab95e0de9fd162f814847976a71ddbb6", + "regex": "(?i)^https?\\:\\/\\/ertyuaa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa4dfa79c7b953fea4a9308495e27ee2da6d3be29bf8b5566e999b2925669db9", + "regex": "(?i)^https?\\:\\/\\/ertyuaa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff38bb2bda92a9662847efa55b532fee923000ded60e655b0dd786721918784a", + "regex": "(?i)^https?\\:\\/\\/ertyuaa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81bc7815dcb464d609dfe0c6b5b44c2293f4e4edbc894c4f11f358c6db99da58", + "regex": "(?i)^https?\\:\\/\\/ertyuaa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb2d3a3d8f31ecebea605a0563cf4d6686666b3aa11c5ac3977cd1045e9920b2", + "regex": "(?i)^https?\\:\\/\\/ertyuaa\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "449a437879d61bbdb83115a45149545f9a6758c87426e8442ff1c49f8565b448", + "regex": "(?i)^https?\\:\\/\\/ertyuaa\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aa4a1debd6b717ba6a12dfff38f12c7bcf39126ec03f0a65e551ecba9d3e781", + "regex": "(?i)^https?\\:\\/\\/ertyuaa\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "868dd960d6d5d19a72e4eb641a14e00c19836f9cbd1b7424a55fe8669eedcc24", + "regex": "(?i)^https?\\:\\/\\/ertyuaa\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8c14e8b4e267a2073d7fcaf7973fba6cb2bb6fff88cfd65133ffa470a211959", + "regex": "." + }, + { + "hash": "4f57f019d94612a8799a6bdafcf1dce84e47cf5504a2471b674793896e6f78c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "42fec5324c7503d37f950ff4b37846652a40719dfc430a8d1676edade09cb556", + "regex": "(?i)^https?\\:\\/\\/coopm014\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9989888ba3e451b2e7051c5a90c02d40906d0646c8e0acdd79181613d170743", + "regex": "(?i)^https?\\:\\/\\/coopm014\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6480aa307505dc073c9d11154e63d59a666483fe37be27dfef628f5ab85ead58", + "regex": "(?i)^https?\\:\\/\\/coopm014\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bd167ca06457adfcb633bd3e5a89019c7c2673dbca2905e7c71d67f09339405", + "regex": "(?i)^https?\\:\\/\\/coopm014\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc739c76055b05a47ed02e477c30ec3ea5640c4fb3628ac8093e35d9917aebef", + "regex": "(?i)^https?\\:\\/\\/coopm014\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8f2b6df7539059c6a6050cc7416ed4f5aa830000c20119ceb84c5a32d1867b6", + "regex": "(?i)^https?\\:\\/\\/coopm014\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a27d6a1514eace892b930d87021e0250784e169d73b9db9783afd138d5e53d71", + "regex": "(?i)^https?\\:\\/\\/coopm014\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4bcd4b3143f7836cadb50f26b18b87c169ae0df3ce08157d032cd1d12edc91a", + "regex": "(?i)^https?\\:\\/\\/coopm014\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7c78e0eb22c1c1970395f49be8b8bfa760142587899a7918ae1ff7f004480f", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3f771bdbe101d60976707fc573ae84d64508232f037fe9e5073d0bee1b3d6a9", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13b78890e4560a5fb9df8b7692f7674d81a120b188b6ba5b7a088a51bfb82d2a", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a5c8221ed2b0eb883f75f3113053ddd8e979dd73daf80cdbb3e493b8dd348d", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d90fa1d0c0fcbd38c634c53e2aec445dc65aed9b7881d1e31df8af6279bd352", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f94c78a2deb57149c9cdd232951cd4be4bdc364ef340ff5a4cef0e7757607fd9", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f3ad932e3cbe29da45e27d2770d6d7f9fe368d82f0546dee9d0776ed80b6244", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93e189006529d1e2e9d582a7893f054b01e9c2b105dafbad277841ad92383e4a", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53955e1cbe97e93901bb5ea2fb2f29e81b63d3d3e123e55c49432e2942064bc8", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1243e225210e703846f3b1aa3afb189e8bad40044f4a47b176626dab56045fa1", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab6a9989e41fd33314726bb956ce6331998d6e4bec29a4c64bf889021c528e0f", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f50dcacf203f3e3bbeecb7858dfda40e3909c638bec273e773b857d82e2d9d6", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a831df04743abad2cd87e4d5c8746e6c6bf4f747a2ba84261b1a1d8411e4b014", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c5acd6f58860da1071eafca0ee4bac98985bc020f9fe6721b90b88fb623c8bf", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3191f414b7f8865a2b7cfc5273d0516d3690a47aa414aef6bc1323b7e9bba0a1", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab17e122a24a6ef026da272a34e8e6170e1816e3115253c7c9f038e0fb9a18d", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd5f2d7029c3035a5a4858532b5e438deeba56909c817fa06944ec4661ebac43", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "528611d9aeaf51bdf26a4924762dec22b507b1c28c1d169d37527ef1b457c685", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df4931efcc4337cda9a981aa322138861d279cc72507fb69947e3b4128e02077", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2defc56e7812734f22085d9d502bd39cae98ca1a0b3f24badcaead53c2d9064a", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdf4a275efb25ef6c3515da1d05024fbf3694f10babd87e935278851f5ee93c4", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d1f5152bec007939d6990e97d65046dc2f87e0a3da2e357386c75d70254ad7b", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cd904f84f8a68e7f8b26aac810c4c88eb4922a7dc515b67c37e1687a32953ec", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a971565e07b8703bb6289826b155969630fca8075671389640923810ddb4ee7a", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e796267d60392f65676b1aa2a0be0486d2572f95f9779b8e1a940bb6279c7ccb", + "regex": "(?i)^https?\\:\\/\\/updatacolor9\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b4120446978a3e94aa6da7a70aecc435d3cc7ca6d87932c621cb4fa56c6ed98", + "regex": "(?i)^https?\\:\\/\\/amzworkhomejob\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0923719021a2d13317076a8f01c11a454c1360eb4473538af0cddae78f45cea7", + "regex": "(?i)^https?\\:\\/\\/amzworkhomejob\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1590385914ebdf4ec7cdb9e020c0fc5d366884ac4ec7e715b3026f049dc8da5", + "regex": "(?i)^https?\\:\\/\\/amzworkhomejob\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b73ea607de632fbc6ab158368928a5deed52a83b5f35ae505645a59c3b1a5757", + "regex": "(?i)^https?\\:\\/\\/amzworkhomejob\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d234e48e1d001f2764f94eabd58f24154643c1d91e8f2ad79870373fceba5d61", + "regex": "(?i)^https?\\:\\/\\/amzworkhomejob\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27d049af7b8d10e56f0de113b7b6a7558f9dc621dba971b6603fdbcbf735fb16", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a10e40ae87eb7cd29b3f91fedec654614d37d0e6ec19f894087d4bf3705fe751", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19732b038979f3ee7a359a277662d54898c2f5eb665bc75e688e3d862bd82138", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c85ae240dc9a4ade0495a4ab7734782a8c1ffdd75f4b388c85b2156114455a1", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b013f8b7e673889dd7f680a86342c40acd036dffd0a251f81fc76eca7cd4f999", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81b49fc0a9e92b06ec34a42d280d9d0a53822c5ee6099c526c2a0f51e060b139", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c3beb2dc352a03914bda1ba0c43940b2e2b4aed04c33084e81b70a0ba505de7", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5170e2b1e15be1038db638e6ef9a09fce95e4ebcfea76cff7339fb4fd957b37", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9d99ce9d5a1b6179641e34616cbe101c2ac721f208f376d2c2eee2594226756", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "344203becd8bd01e17949f882edcc6552717eaa00240e1c474e713a547b10d30", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62dcb1ff0f72d515f9715388f13127d7294b78b3e4c506346ad02236b70c7e68", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87c87c112b7e9b4eaf9f2dd5c46cbca0f9e81219299dcbece9763c084ce71566", + "regex": "(?i)^https?\\:\\/\\/poloniexcrypto\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89e84cf24e897d7903d0488eb15b64fb36f4040ef06f722a46cc4ee99a57b6b4", + "regex": "." + }, + { + "hash": "89a3e96a2621dd0737c0e290db8b07879cf1de8a1763d50f7be767b2328e3208", + "regex": "(?i)^https?\\:\\/\\/rfegd\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d92442301a716e9082dd55657cedebc8d168e66025b12f0f19781aa11d85762", + "regex": "(?i)^https?\\:\\/\\/rfegd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5da73031ac5b4deefcc6331a41eca7f62a6063fcca7d6cf4dab0c81ade4c9e97", + "regex": "(?i)^https?\\:\\/\\/rfegd\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36d75c3ac96ac180f8a52d472431801555209dc878715b2b6a43b07e0939d8e7", + "regex": "(?i)^https?\\:\\/\\/rfegd\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abafc7f9969c208a9317ff9bc3315b5eee4eba78a27cf1aa96aad749181d0c4b", + "regex": "(?i)^https?\\:\\/\\/rfegd\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03213d53a0e9c4e480554826bf3b04aa7fe7956a82bc1274ee6bde5f1f2e4ee0", + "regex": "(?i)^https?\\:\\/\\/xtisa\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18ef7fb4f1f707b9ab5616ae6eeccd4b99162da58ef6ee617e93e47afbd261ac", + "regex": "(?i)^https?\\:\\/\\/xtisa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2dd485b90b8c4114a00d06f4e23b7202546442e731625c9aa73af393302b53e", + "regex": "(?i)^https?\\:\\/\\/xtisa\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9e631b7a662b4cd9f59a178edbc321316ffa82129e9364b9555aefd6c6b73c4", + "regex": "(?i)^https?\\:\\/\\/xtisa\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b874ace679e23122b7ec5b8b326d79381b9a4ddceb23f72d47cd79f14c92a4e", + "regex": "(?i)^https?\\:\\/\\/xtisa\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13550860bc5372a3e83f53e5c0b198e4c3d2a9465c7aab4672de44142caf021c", + "regex": "." + }, + { + "hash": "3c18ba5a3856e5cbbc55ecb7233f70670c9948b1d3fcb2fa3ee633ecb7b72de1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=de195d8\\&e\\=146ae05\\&c\\=16190b\\&t\\=1\\&l\\=80749401\\&email\\=$" + }, + { + "hash": "68f51f760f99f52698d5a370aa208312ccd2007adb2a323f82427557193e7363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Responsive\\-Netflix\\-Clone" + }, + { + "hash": "5a350fbcef465297faccd3166c62c2a733a6d4d4fc585aa26bf08ba0f03a9369", + "regex": "." + }, + { + "hash": "3f961cda40c773091a290a71dd55aa45178be7a23d3ccc88bebcea93f9300762", + "regex": "." + }, + { + "hash": "f903648066b23033bacab145854b3badc4d32ff049aaf4a6cdca9de6d2bd2946", + "regex": "(?i)^https?\\:\\/\\/officialwebsite46\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a574d89ddc7180147be181c7e23bb855204a1514d1626a905ee45b860b45cde8", + "regex": "(?i)^https?\\:\\/\\/appleipad2colombia\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62bebabd96b75e52d462b9d25f0b7068cc7114b789adf087ce933530cd0ba856", + "regex": "(?i)^https?\\:\\/\\/appleipad2colombia\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a93ee2e7c9ebdd701e4f54520ae650abb77c4a32d7174506adc5057506d66a4", + "regex": "(?i)^https?\\:\\/\\/appleipad2colombia\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16cdcf1080849b8f7faaf6f8b6d68068fff28ecdad5fc2e9069baf36d531c4b4", + "regex": "(?i)^https?\\:\\/\\/appleipad2colombia\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9758cff0d5abd07806e44ea3b72e43ac1f181c63e4ea1642d0b935949d992afa", + "regex": "(?i)^https?\\:\\/\\/appleipad2colombia\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a11d19c7ec740f2cfbeffec992f45d73134570e1fcabf091d06f3e927bf2ae87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+LJ\\-Netflix\\-Clone" + }, + { + "hash": "c02c549fbf8f46b07589ecb1d3f67c68d773ff5e472b3cbf287d7ec7f8e445e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=cc1ad819502585c8f0d37f4a1\\&id\\=171276918d\\&e\\=0a1429c3d6" + }, + { + "hash": "3c18ba5a3856e5cbbc55ecb7233f70670c9948b1d3fcb2fa3ee633ecb7b72de1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=DE195D8\\&e\\=146AE05\\&c\\=16190B\\&t\\=1\\&l\\=80749401\\&email\\=IC1Fu8ngaNoWAW0RuCNnTm0vu1uUHZqJ\\&seq\\=1\\%23YW50aG9ueS5wYW5Ac2FiaWMuY29t$" + }, + { + "hash": "3c18ba5a3856e5cbbc55ecb7233f70670c9948b1d3fcb2fa3ee633ecb7b72de1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=DE195D8\\&e\\=146AE05\\&c\\=16190B\\&t\\=1\\&l\\=80749401\\&email\\=IC1Fu8ngaNoWAW0RuCNnTm0vu1uUHZqJ\\&seq\\=1\\%23bGF1cmVuLmJvYnJla0BzYWJpYy5jb20\\=$" + }, + { + "hash": "dbbe12a96a2efcb0cc77a17e6eaf6767bfc9774da44103c1ccf2d77cbda93fbe", + "regex": "(?i)^https?\\:\\/\\/garenafree\\-fire72\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d896bd4a75d285718a16d37fafa8757ae6df8ecc2fb95fd0e3843de465feb67d", + "regex": "(?i)^https?\\:\\/\\/garenafree\\-fire72\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adf6c7b8023a0b1cc9aa7542095d1862de7ba4e8f0bc5dbc8d5f7d8884e94333", + "regex": "(?i)^https?\\:\\/\\/garenafree\\-fire72\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a19c8fa5268a028f96bebe6a0e3c6b7ed0c1ffb9ee6ff1a29f622d96dc7d783e", + "regex": "(?i)^https?\\:\\/\\/garenafree\\-fire72\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4088b358cb3a246f4e03c0b6759b61ff838f40360f6b63ef77ecee43fce4b288", + "regex": "(?i)^https?\\:\\/\\/garenafree\\-fire72\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80511ec4109b719eaf9e7174376f3eeed993721759aab49c294da70b96b1bda6", + "regex": "(?i)^https?\\:\\/\\/giftcard\\-code3\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1e345f9138ab4253f5af2708806ea7c824f0d577acb209c5e305fbf0bc546da", + "regex": "(?i)^https?\\:\\/\\/giftcard\\-code3\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae2defee344e9895ce64b5f7db5139606dbe4713005247e0254f109ca59e52ad", + "regex": "(?i)^https?\\:\\/\\/giftcard\\-code3\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d24dc930f8f1ad12510c250b4059ae7ceecddda3a0cc2ce3279ccb9cdfeb844", + "regex": "(?i)^https?\\:\\/\\/giftcard\\-code3\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73c46ef5110d7d05482f825c66250c94187635017d20add6921e557c3f40192d", + "regex": "(?i)^https?\\:\\/\\/giftcard\\-code3\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06417544b714b38739c6c3fb55b75f9e0fbc329ece226ac81bc01a7d520e5a45", + "regex": "(?i)^https?\\:\\/\\/giftcard\\-code3\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31abcf97e6ea71f73571ac2bf6691ad0a4ff8862e668ef547507bd0b19750b32", + "regex": "(?i)^https?\\:\\/\\/giftcard\\-code3\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cfe2ad3a3974ace168dd9a1bb81b8e769359b4a11e9ebdf8938b67487d8c550", + "regex": "(?i)^https?\\:\\/\\/yaho2223tttt\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "335a4d45d62bcc3ee067a3942463236a140d0595a6846fbe63be6b25fbb6a053", + "regex": "(?i)^https?\\:\\/\\/cogecoservice101xx\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab948542be2ff0dec51d4185a93b6fc8b0c251da1ca1ef281239449b60b2d52", + "regex": "." + }, + { + "hash": "e83393f5ba318c08fa95b3f2a6706811155f68deca7e61e2b8a24cf33775cd2a", + "regex": "." + }, + { + "hash": "054dd3ee4fc511f607807c9ba53f1cfbf07cf071692ec1348321ab8099c1023d", + "regex": "." + }, + { + "hash": "ec5b1872c402158a1184e05a2caeae709904fc8833ab07d404627419307c486e", + "regex": "(?i)^https?\\:\\/\\/frostpunkroblox\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c763ce4c0c79fc584b459d9313da45f7824fd4eb43f2d280d9d738afa92899", + "regex": "." + }, + { + "hash": "8268959537dd50a961d4676ea0e28ad986e772f743921bc4c0ce587bfc62fc68", + "regex": "." + }, + { + "hash": "5adf7fe13bee457e599af8485f06fae73e2b303f1411eb52abd67124c5a69705", + "regex": "." + }, + { + "hash": "66d545b0f56b32f47c2b030308b85486e7e7aa6f58812c03f16c9bd4170881ea", + "regex": "(?i)^https?\\:\\/\\/century2022update\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f909d4c535c796e8d40df8039820aee386df6d839c558bf6465ce7424dd04b27", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4fcc3bf20ab617104d0cecf6f3d46fda4f52041c28435c832056604790cfbed", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6e74d768bfd107855d6488f975735ffbfda741ac3353a87fda1b541a325a938", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "582cb320d24d96a4ec506759fd41f42859feb3d7f8cf778ac32f56ba59327a1a", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "049ff13fa509ed7f7d21117689880d46a1cefb8a978b3b262286c14d4956eaab", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e749e10f1c2b8d439e76e6413d2770be2ba95a6a65e713d4a93c8cf6037395b7", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4433f868c0fd10ea09cf823da5947495ca5b91f711fd1cfde927a143c3a4da92", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2dd896913ad359f674260a084229aebc075dfe39a6330fa52e03f4a12df7991", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72bcc634fd47cf79c1e79db293d9af22d1e92a18b511052979fc5707aa490af2", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beffc8468de0e9412f8972e1a1268356bad2830c2bdbf46491fdd78225833a5e", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b4d7b0890563d1483331c37e4840add92ca6dda25af302f25aca2c00e5f952a", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d03b67a90888b5f690af8331247493c834b444e923f624f05e8bce6c679a0d16", + "regex": "(?i)^https?\\:\\/\\/cashapp1000doll\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad319a09ca57c7130cc1a220a850bd8df094ce686cdabdd86c9d424fffddffdb", + "regex": "." + }, + { + "hash": "ef161fa9a575e7b88a764196e2e7921649484e69196383596f500a5fccd72672", + "regex": "(?i)^https?\\:\\/\\/updateegypt\\-free\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd354a36d7c9bfe95f78292820f615ffdb6699cd2d42c7a9750b3f897932d10a", + "regex": "(?i)^https?\\:\\/\\/updateegypt\\-free\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4961f139ade60d45bf3d6ca8777ce7b8a7180ab567c229c26580d938f35232c8", + "regex": "(?i)^https?\\:\\/\\/updateegypt\\-free\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729de469bba09b7ebca276d9359406ce8eb14f565f155949264d54abe962b89e", + "regex": "(?i)^https?\\:\\/\\/updateegypt\\-free\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8339e56c788cdc4cf6432b61aa185a8e4c070313bb4855f0f1c2b4e81bcb1a04", + "regex": "(?i)^https?\\:\\/\\/updateegypt\\-free\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a6da4717cea59f5e368812730fdbddabff7a85c294f8a8721ab93aa5f025ef5", + "regex": "(?i)^https?\\:\\/\\/updateegypt\\-free\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d3c130bc142778c967307f3a759972fbe662511ec0ac125a12ed62591cf5206", + "regex": "(?i)^https?\\:\\/\\/updateegypt\\-free\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ec9c3104504441d1f33f6ff3ca896f2eac27e2d2d4655ebe8a9f037c4fec16", + "regex": "(?i)^https?\\:\\/\\/updateegypt\\-free\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4bb2a3e340b22fa74a93ea0aa26c1003868d05aabe3a5826b9c3367de3f0d50", + "regex": "(?i)^https?\\:\\/\\/updateegypt\\-free\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c18ba5a3856e5cbbc55ecb7233f70670c9948b1d3fcb2fa3ee633ecb7b72de1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=DE195D8\\&\\;e\\=146AE05\\&\\;c\\=16190B\\&\\;t\\=1\\&\\;l\\=80749401\\&\\;email\\=IC1Fu8ngaNoWAW0RuCNnTm0vu1uUHZqJ\\&\\;seq\\=1$" + }, + { + "hash": "3c18ba5a3856e5cbbc55ecb7233f70670c9948b1d3fcb2fa3ee633ecb7b72de1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=de195d8\\&\\=\\&e\\=146ae05\\&c\\=16190b\\&t\\=1\\&l\\=80749401\\&email\\=$" + }, + { + "hash": "3c18ba5a3856e5cbbc55ecb7233f70670c9948b1d3fcb2fa3ee633ecb7b72de1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=de195d8\\&\\=\\&e\\=146ae05\\&c\\=16190b\\&t\\=1\\&l\\=80749401\\&email\\=$" + }, + { + "hash": "3c18ba5a3856e5cbbc55ecb7233f70670c9948b1d3fcb2fa3ee633ecb7b72de1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=DE195D8\\&e\\=146AE05\\&c\\=16190B\\&t\\=1\\&l\\=80749401\\&email\\=IC1Fu8ngaNoWAW0RuCNnTm0vu1uUHZqJ\\&seq\\=1$" + }, + { + "hash": "3c18ba5a3856e5cbbc55ecb7233f70670c9948b1d3fcb2fa3ee633ecb7b72de1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?c\\=16190B\\&e\\=146AE05\\&email\\=IC1Fu8ngaNoWAW0RuCNnTm0vu1uUHZqJ\\&l\\=80749401\\&seq\\=1\\&t\\=1\\&u\\=DE195D8$" + }, + { + "hash": "1c513e11c1519f8b72f118e093ce329548fab8323164a7698e2ee68c5c3a929a", + "regex": "." + }, + { + "hash": "28b72f1edebc029c16174f76fdad5411916c86acc8298091b97d74702e618e6a", + "regex": "." + }, + { + "hash": "c76edf7ad437fe9ab3c6ca41333f519b04bbfa5a4c16b51ccd99d27608ae0eba", + "regex": "(?i)^https?\\:\\/\\/goold\\-free2311\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99a9400283aab668b07aed8e4f7e5ef7d23675b0d58932c30a809721b7d44093", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba5881a26ec73c1a8e6f9f6ed5a4c6183237df3c7236e7134ae03db038b4a156", + "regex": "(?i)^https?\\:\\/\\/programpestapanenbri\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68b8c7f957f30d135d485b8f852372099e1575adfb2326d3294078d3ba93af28", + "regex": "(?i)^https?\\:\\/\\/programpestapanenbri\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e805eacb1df217e843622bf04ba830c7fcc76c1bb662758b160768af52bc8448", + "regex": "(?i)^https?\\:\\/\\/programpestapanenbri\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b953f14090069785b3d879a2a8bf995ec781ce6fd5e519f8c458736ef4b64d97", + "regex": "(?i)^https?\\:\\/\\/programpestapanenbri\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2f151ebf0052158dfb5ac05bbc31fed5984b4c1d88d1be4af8fffd5fedac50", + "regex": "(?i)^https?\\:\\/\\/programpestapanenbri\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d492b6b71448f480534ebecb75be3f80ae4936660614e2f496de574fe7e7b0e", + "regex": "(?i)^https?\\:\\/\\/programpestapanenbri\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e2a807a1c01ba58337b37395e84ec0d17404db9140ef5a340d7d73f81d766c4", + "regex": "(?i)^https?\\:\\/\\/programpestapanenbri\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecedb3aae51fb938772c0a87952aaa995ba1da93945333d230f9270af926f009", + "regex": "(?i)^https?\\:\\/\\/programpestapanenbri\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc3e22c0eca5d3814b10d230a4ad172998299164c66d22aa841b59681fc9551f", + "regex": "(?i)^https?\\:\\/\\/programpestapanenbri\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "495711f2049726cfb3758bf0a42017ed610a19accefeadb8ceb4974fc330a341", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+04[\\/\\\\]+bet\\.html$" + }, + { + "hash": "0093e4925a833925ae8774af09b6bb99ea68b0bf837afcc16aa1917142ea0b01", + "regex": "." + }, + { + "hash": "b67f297e11c174ebfb2ec213564aa155290b148634ddab6b301bd697e983ca06", + "regex": "." + }, + { + "hash": "e193e4fb9bdc4eb22dd90f5693f511f67f528bc847f3e0de2aafc4363d925dbf", + "regex": "." + }, + { + "hash": "1d7d157d36569f8ecdcf60b69d952b8143e58937d6cf039f896a26ac74432853", + "regex": "." + }, + { + "hash": "c6ff45a4e44f8369a57bdb69b972ca008b2c6b486407e719fbfea8fb29eb6ee3", + "regex": "." + }, + { + "hash": "57a21fdde920ce4ae873c530bea3a1ad76684de4431866f0d35b61fc23206cf2", + "regex": "." + }, + { + "hash": "96c15ee489639824298fd55a834ddf473a4dce6de154a6ed0319ddfece568831", + "regex": "." + }, + { + "hash": "d805718ecc196ae45168ee2329466e5b5447e2605d7e2194c0e67f4aeef33957", + "regex": "." + }, + { + "hash": "4e20158efd2276f097dabf33505d4fe7e39b736a0c2e3b0d0cf44640b58b832b", + "regex": "." + }, + { + "hash": "df49df0ecc1ada778f80064cd3f4aae3455e0abaa64b46d6a6a7d4dba9ed9900", + "regex": "." + }, + { + "hash": "3833cca228530e7bf45d32acdf7defdde039da87ab4cad1f6718b06288e962fd", + "regex": "." + }, + { + "hash": "23ef2a75f9e1d1b15c817d3428ebc6c3881634162033384267a51d3a1747628c", + "regex": "." + }, + { + "hash": "7487fc08c855a3a04166f70f640e9eb2bb1ecdb908649aeb87111ed7587df919", + "regex": "." + }, + { + "hash": "55f168746136e9016ce5286c6c3ac3bcded2f701d573f862eb8e239cdb6c3297", + "regex": "." + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jElgne$" + }, + { + "hash": "f90e4023bf0c6951eb48edf30940beb70740cf24c54d0f6fbfb8acec7715245a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NETFLIX" + }, + { + "hash": "3e7dfad3190fb8103a479acec03b90de3a11277305000bb321f0f5121f9880a6", + "regex": "." + }, + { + "hash": "37d44f0f91d270846741d469f0d64e8e135a251f80391529bb72bd5321501dfa", + "regex": "." + }, + { + "hash": "8d1c1672b12a87e1834240e4e9998dc790473887192f2901ad6b99577f7e3c62", + "regex": "(?i)^https?\\:\\/\\/esquemascar\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f341578fc9a5043483a548ae67665d8a9901778a7525f89c14218e212d7da217", + "regex": "(?i)^https?\\:\\/\\/esquemascar\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fded5b68017d523a5fc3d406e5d3f162ba6c9876e20f9f463668973eb8a321d7", + "regex": "(?i)^https?\\:\\/\\/esquemascar\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "615fa908a01ff1c9a24c5c34719e7e4d04813e2fd1c6419fb101a5df32a1fcfa", + "regex": "(?i)^https?\\:\\/\\/esquemascar\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "735fb1a8a5ed961353036034244b132179e542d4988bd038f7d6d50418c47332", + "regex": "(?i)^https?\\:\\/\\/esquemascar\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebfab723ed4db57d00044e0161a690dbe0019749b1799b53dc6be96062b959e5", + "regex": "(?i)^https?\\:\\/\\/gamesanimestemple\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92a27c001fa97de87721059680169e652457f6ab319ac9a0741c8456a0984d9c", + "regex": "(?i)^https?\\:\\/\\/gamesanimestemple\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ff5ede879024f4628bd2a9f24132f32bf2ed5f5e016ea16ae7dedd0e2bd8a41", + "regex": "(?i)^https?\\:\\/\\/gamesanimestemple\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "607a3d0080c2bdd68c67bfb84d4caeaf9d865d2360dcfa6c002df2301d9c9ae4", + "regex": "(?i)^https?\\:\\/\\/gamesanimestemple\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95d13911acafa6d09883ce01911b803fc82f4891b23118a0bdd28c1d4a58973b", + "regex": "(?i)^https?\\:\\/\\/gamesanimestemple\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a9397237dc1ffb7892b5d5685529f38218af61adae44a2ccdfed5756d7d30e4", + "regex": "(?i)^https?\\:\\/\\/gamesanimestemple\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7426d75d708627fdfea7ecc5b8c48937f00bd671eec5d64222a760fb99dc1e9", + "regex": "(?i)^https?\\:\\/\\/gamesanimestemple\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "705a3bbb7c4245d5d1421345e8f03bc6ba67ec1471e9065393f6005947acda5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+finalproject$" + }, + { + "hash": "705a3bbb7c4245d5d1421345e8f03bc6ba67ec1471e9065393f6005947acda5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+finalproject(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d71047cf957e9d2a63ee3d596acb6f292f20e4b505139a93936247ab36fa157", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce1173256e2a6809c4f6205a4e45b8347ff5934bea2d71790e36581ee7d57bce", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be26be35cc1b4fcaed33bf0b10ef671693938d48bd6ffe9c1f7dc236f3b9984d", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6541ed35ad8ed5fcd99ce370b0fc4c62ec60fa4f2aeeec9f000a6d88e88dd2d5", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e43cf9499aeb1b0ff1514931e0f627b5b533dea0c9102e2658421054a6e67507", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5dd5b497659e8d594fb8242130c4bf1ab91498e32e4b19d40ecb21d6e32379a", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dda8c52fd11b43920d53e802c4a523323c69a44c4f53b6a686b16579d422a4a", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11f51326f2b455ad6bfb26ec99ceb3dc37018e544d515e6447e98423b29f898c", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37ea4440787aa36148ee509deaed1b1cb74054729e6afa3e476e3cf35dab51f8", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "230f32ea4a95cc7a495027965600b8e8c8dfbe502e74a7d8844458bc06ee8f5e", + "regex": "." + }, + { + "hash": "942d310aa60926beb658feec431de360e55e5b83ee77b7d702d33ca2a1214e8e", + "regex": "." + }, + { + "hash": "af0717387250b15c02ceed6463220b38c621113c74f90b6a9e8f8c800ec45b54", + "regex": "." + }, + { + "hash": "a65393a3a93a7a84c8a5333e225c0096550ea5686227ecc31e597afc4de7d44a", + "regex": "." + }, + { + "hash": "5d223a0f9a0e89179c1b3481d466ad7102f0bd7b8af84554e4f91d018db78477", + "regex": "." + }, + { + "hash": "8cd36abf860b5920879404f75271c8617174bdfef211519922c917a5bcf3ea1a", + "regex": "." + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ND57Kp$" + }, + { + "hash": "2c74b58ba2c1a2c979c5458063bbf0d84d5812a777b0fa69f35e17fc34901a15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clone\\-instagram\\-page\\-Front\\-End" + }, + { + "hash": "59654302c14204e5132a4295c89dd52172935d13789e78ae7db3c459a799f86d", + "regex": "." + }, + { + "hash": "1839630dcfcbbebf87f8aea09545c476a336065306c6eba7632c3cb2e16de9df", + "regex": "." + }, + { + "hash": "e17557448719ad7a9bea1b48973cf8aecac2b7367bf0e67d1f94fdefbc1e0da7", + "regex": "." + }, + { + "hash": "4b22f9186fc60b9bc159a35243c106b0dbf5f894ca60a8f922c573f7d69fc686", + "regex": "." + }, + { + "hash": "9d65857ce1215d04a972756aa828fcdf3e87261257670181212af727ca73bb50", + "regex": "(?i)^https?\\:\\/\\/concise\\-upgrade\\-354611\\.ue\\.r\\.appspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ce4aa2a4fe31b736770431ff22643373bfa4226bbd17634206908ee7b04f552", + "regex": "." + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+VoNZ0K$" + }, + { + "hash": "f8f0307c25217308be4ef63c4edc00959d3fcf227e655493d412297965c16afa", + "regex": "." + }, + { + "hash": "5a9d01ee943ed5f15379fbc0db96521dd4758232680ed22984722cc948017a62", + "regex": "." + }, + { + "hash": "6042c2041a700f936e811dfbbe33e1e259cf16e7280c56054716ce83e039ca55", + "regex": "." + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+emeKx2$" + }, + { + "hash": "4042e057808c357ead8ea6a6a1d46fc4624ec7fdad57d9bcdfae51126ebfc950", + "regex": "." + }, + { + "hash": "361eb0e1f2f65cf5db9d8b5fc5b7e3959c4975a95b7c51858f6487b13eaa7c9f", + "regex": "." + }, + { + "hash": "9141e054a10e695eb225d0acb3bb1e1dc7fafbca2df0b48d30684a3e5b87d1ac", + "regex": "." + }, + { + "hash": "e24178915eeadcb9e34ead49743095638efc6a4fce551c4794706f51dae26c3f", + "regex": "(?i)^https?\\:\\/\\/bonounou\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "529d3b16730c219dda9e1b9db8dc87b1af74251d649747694197b0b0ca44a0ba", + "regex": "(?i)^https?\\:\\/\\/bonounou\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5898cde0efe84a2d35e0f1e2e6bf53968fb4b2caa49d16f0f1044b91b1efb244", + "regex": "(?i)^https?\\:\\/\\/bonounou\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d178fed20d7c53fe03dd963c00d6874ef25440a133f07aec8dfb60c72c58b802", + "regex": "(?i)^https?\\:\\/\\/bonounou\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "976bd164511344412a4860ab415d6e29f53a5f79e2dd5daf31c6a1d417f65f74", + "regex": "(?i)^https?\\:\\/\\/bonounou\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f431381a3e87180d242dec608a46bf569eaf38a22794ef29a65b3a16e2a1a43", + "regex": "(?i)^https?\\:\\/\\/bonounou\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aabceca201e4622495d195e49bb599ae921c2d1c72b0bcef20974184f8fd2e5f", + "regex": "(?i)^https?\\:\\/\\/bonounou\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcc0b0cf7b52a2ebe5e5b9e8caa023f4d17676c24d1b3b3bee7b0855ac85759c", + "regex": "(?i)^https?\\:\\/\\/bonounou\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb9fc9052c22266bd86377d579c610fbd795249ab18b7acab707fb25fc7ebe4f", + "regex": "." + }, + { + "hash": "cac6e724fb79066636012189449e95fd98772a89af8100f41b265c9997694e01", + "regex": "." + }, + { + "hash": "1cdd320aa073df1b398c3bf3f3041b51547fb00b5406857482d302707594fb8d", + "regex": "(?i)^https?\\:\\/\\/invoice\\-attached\\-0110\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4f04c60d1d039301dbf933e82eaf15fbbb63842191feacdbb3f691a6a0b5a96", + "regex": "(?i)^https?\\:\\/\\/kolorfacebooka24\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2f69b0a82322882abea3be37695102427b4fdb2a13f26159efc5069f45f292d", + "regex": "(?i)^https?\\:\\/\\/kolorfacebooka24\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4c7464a0f517bc34063a7f676a6381155659f4fae3d2c32c682fb39ecf85853", + "regex": "(?i)^https?\\:\\/\\/kolorfacebooka24\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "404687d2c826e1983bbb0cc2a335135b00bd82c01dd5b11e61583d6cd4d0d164", + "regex": "(?i)^https?\\:\\/\\/kolorfacebooka24\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b138ce75a5f2ab6f954bc9a56a418c5daffd6378d70a9d1f124e8f6476cfabcf", + "regex": "(?i)^https?\\:\\/\\/kolorfacebooka24\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbb1e0ea3ff2abb53a3366d9520233cd17a1aba3e57012f8379d2e37f5717d62", + "regex": "(?i)^https?\\:\\/\\/kolorfacebooka24\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c86dffc69db889616eed46473bc88e8d3bc9f639144428d02b04c98725fe1446", + "regex": "(?i)^https?\\:\\/\\/kolorfacebooka24\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aec213cd54bae05074bc9da6ccdc6310c0f2ad9c298c82aa315cfa39a9aaa808", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4e772646ca85e5680284cc31afb8e7abe13c2d1161bd19ab46065d00b46302", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9bcb738b436672548dec7b0a62daaecaacbe7efc99996683f06b67d0253b581", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cabdd992fa6d49ec1adc5be2f9ad5689f67b0ce3370ca15929148cb3e08c5701", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f38598fede41f2a2434464f756134097bec20f12816729c58a39000675003e4", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2752329c0cd72526306dba5bf5a8b0f7e16746004ac26adb723b8e7f81b0903a", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3469c0877e44dd6f95d7965a5a135963a5807e8039094d769f1a997121fec15d", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "191a0eaa4f2866cb17ae4e63eabde081cfbbe2f8419402ce133eaa72331a6bd4", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1c076d729fe59a105d3ac52febc05e49c25af5129cdbb2a9db4edea5c4d1e4b", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56ac918a16dac2cbfd3126f829d1a880a9fb15b5f62271a4fa7b2709d0626def", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bc29cc80e3a0147fc81a97239e2d4d9ec56d60c966623a31547c11f26b48787", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71f0cf399f9fcb6bc4a867eca7c87a1eb1dcc971bbde8f89900a57423e5878f7", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea9b0d502137cd5a675cc6f651d809e8d2c1f701c29137ad5c490e92098b59ed", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37f9f18a98313a8f3722ea49f8fa42ac7bb2997fe570b894a49d291a567b6d53", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8940fd6ac9cd52188063d67fe60c71023f46e24bdf68305742d1619b3ac461f", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "448bf1ccf0b55e942fe7e197fa9ed0708d2add08240bd94971ca0bc484a7644f", + "regex": "(?i)^https?\\:\\/\\/sexyfootfetishlinks\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07e76132d12ba1ccd97fdfee45fea94dd0dec08fd307a21e2fe6bfa724440483", + "regex": "(?i)^https?\\:\\/\\/fb\\-kolorujemy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82f4b30080a1703a91a877ccf6400c8bc380e9683c04628822e48f4276498554", + "regex": "(?i)^https?\\:\\/\\/fb\\-kolorujemy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01c7e724010c528a81e6e616e5b1e96a6db5a7c0b8d8f33a7a331b88f32af44a", + "regex": "(?i)^https?\\:\\/\\/fb\\-kolorujemy\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8241005050d8340df294d5a6489d97d53a7da2ba5e0caf745c2296b4b9476c8", + "regex": "(?i)^https?\\:\\/\\/fb\\-kolorujemy\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a50c33574f87c8b3ec01b65e8d0eccdd9329f373f2575b604189bb719042b694", + "regex": "(?i)^https?\\:\\/\\/fb\\-kolorujemy\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce6dec8747028cd5306aae06387595bd0cf487dd1c0f0d793178632260be44c8", + "regex": "(?i)^https?\\:\\/\\/pubgmobiletronmmoenti\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5a0e54ed391f10aaef1a1cc2139490ce1ffde0fb3d924debb6de5ccd686f53c", + "regex": "(?i)^https?\\:\\/\\/pubgmobiletronmmoenti\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dab206c54e73a78f70721e6572226154321e2019f5e89108885027b95eb0f5f0", + "regex": "(?i)^https?\\:\\/\\/pubgmobiletronmmoenti\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7c69145196e1d263e861c2bdd1f46da8be17c558492f861c84b45210e7a804e", + "regex": "(?i)^https?\\:\\/\\/pubgmobiletronmmoenti\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da751869e7ae7c259593ed2129d12a8c06fb005e617c5f42c4956c0a27d80af", + "regex": "(?i)^https?\\:\\/\\/pubgmobiletronmmoenti\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f929bb3d14b03226038d542a58b4a5eca230aff0ab9c8c3243ba3dd2ce2d1684", + "regex": "(?i)^https?\\:\\/\\/pubgmobiletronmmoenti\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a3071de9233b8faca5882ac15eeda16c89aecab30ac926d34a3bfa6c270c130", + "regex": "(?i)^https?\\:\\/\\/pubgmobiletronmmoenti\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "576ce8f61cc12779311b893cfc2f6fdf69115dfa134a8f613f5a4fc4c10fdd50", + "regex": "(?i)^https?\\:\\/\\/pubgmobiletronmmoenti\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b402f0a4a93624949f1dc0e5352c0acc8e144b23f26d916f06e957462e607ef", + "regex": "(?i)^https?\\:\\/\\/pubgmobiletronmmoenti\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+XODE11$" + }, + { + "hash": "c80ec4b460116e37d5598156db3c3a54041da16c05ca16c0d0f904319f0f0ab4", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdd03dc80b221f7ac990c6c94148bbd77c2a3fa9ce5052709a441c41f65eec58", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "660fa4121fcc27e6517d0ac07fe46aa9e747348692d41d0fc25e9927635e0f09", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0e00c28a8a1d2ec3fb631d4ee94253d9d8178bd2f4bd08a814b66d677fb0c5a", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8362804112a25b5429ccd3841aef8640d35369014aca54bb7d8f7a1c12ae2db4", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0c8f35d3f9fa8579ace568603126ea047f204cc840c55d138be40f3a79f0580", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e66780835dce4c91c99e9613a28ab46efee164f08a3ec507785a74f76cd0340", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ede6154c5e524d02e436097aa0ae4801b11e3ddf1ee2a8ca85ac2bcb21a9b35", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d02a12d6382e953486004295f1f50bd766c1a904227440f725a25691f5f94c8", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc98fe8d46184579e2d58955c9a17c8629b4568aa746a1eb5e00eaa83c582ab1", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59f219b88d73dbe552c537dd99852ca7529c65949a90b5ab6d89fce0f19885d5", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c8f142d84fdef12cc2bcafce5f42dcf5a3638be008db12a5c78c52c7a005bc6", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c7fa6227af04764462cf2304369e89e4f45b4c3904df20a17a1e6eca9ae0774", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c82630f01e91688eb3d64559095eaf403b25183c1288e18a4edddaeb253d3326", + "regex": "." + }, + { + "hash": "6b420d208ad807ae0eb66fb4e40502a65142282543d5ceda7ae8a480a14632b5", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36fd46349a4139666c38cc18e1ca4e8ad60200254a4d2828e9b32bd3108a98f6", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae9e502f4020604f213b5d685c5746d4c51fc34545f7eda479f531a8de91a7c", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70b0e0de08b28158503e6bac5fdf8c0dad7e841f51e6a113610a4ad7ceeae118", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d9291547177168ebdc6ade7daa8a38dd7eea673362bf4c5edc3618a69bc5fd0", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "094080fa715f2a3dc950500bbf5e8e6fb9f54007747add7e37ac622ff0b2ca2c", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "670d427798ff890332869a1bb80b737450900d69c25cd808b6b4ca13cc2eef3a", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4763a5d9d1c7aa4e7d406a2a4a8cf46c877b0e872a7b6a8a0e536f6c5fc00ed", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aff120bae02b5232202b218e51600a2bcce3cde7202d9357684b43f397cbc74f", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4fa23f1fc0169906819dc5a423539dcb9bd4f2dd23fdfca58c4441253dec1c7", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bb9f93d1b846fc5aa68e0cbaa48338263de08bbd3f5d58c1b82d6cbf93f53ae", + "regex": "(?i)^https?\\:\\/\\/tajtcclubs\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a385eb65fe4a41c2726f99f4e345ee23afe5e0a1a63a826065743de3703c8094", + "regex": "(?i)^https?\\:\\/\\/shipping532\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5239c3143e0f26ad8793b460636264059e6edeb4f3e48ec91b2ab05db9135d61", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook\\-clone" + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Pm53d9$" + }, + { + "hash": "74f30b174cb0b1e5c7218ca0f59f4089739dd8ba2039931e5cf0e44fad8ac5b3", + "regex": "." + }, + { + "hash": "4c12b482e7870d155291b1ee115d531c79ddd94a63cdde91f34b8360e86e27d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clone\\-landing\\-page\\-netflix" + }, + { + "hash": "13c6c61ce35cf4172edc52ee5671c2b926edfe7e94440c82de3c63b8c45179cc", + "regex": "." + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meGA61$" + }, + { + "hash": "c10996b0b6493df81e67a72f3e991b79f7c20ee78ab71a7f198d30b7a204e479", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c9468b6ed6845530c750ff2102229e339dd6a4635d8d668d2ecf9adcb408c85", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7e98d6c5ff7c795569a4adb124c7fc227dd8f1346502dd6afd3dfb9f73fd09f", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dc63c8788afdd3a13758f7818849cadc12eeb33691e71b7e7de1a419e1f91ce", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3a4003cd05e91a3761f1f39c3b801182fd57f23d4b91adabc5a4a86513450da", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7367483a19709c5adac42ebe1ce63ebc6db84c89275188675b55d3e1d7f47e1", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20ddcfd4ba591314d9f79f09c15a83d88f0b1403504741f2c48f2d7168d5bf1a", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0e82734cd86ff62e9d795464e5b26f79e4a6ae4ed5dc5c56559d59238b2c487", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c969d3c02f83f6ee546f851b3e9c63e70c998216cc48c6999346c4e160a05a3f", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a619651fd92725919ae2828cbc5200f79ce3e5c09c3693426496f593d86f481c", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "931af44e121744af22d404ab1b64bed766389447e10327ad87f6c44a56e8a2fb", + "regex": "(?i)^https?\\:\\/\\/jakzrobikoszulkwroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7071vl$" + }, + { + "hash": "61098502e8c4fefeb7cef2df98236ca9380358223d6f0b328c576e9872e551e1", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a42b82fe86c41399709f249925db2225fe23f3170d42c7d2aa67ec0d6298541", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcc14c175b949d3dd3556f4b2f6c49f92d989db69ce2384c1687b382f4e35831", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4864a7191fb2872e4e557d6966e0de6a24d6516dff6fb0bb8533377b2cb8911", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5504f65c9d7b5c003e154773afea1b70f04282a9fe5c14bffe88ae42bca118a9", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca41c510a17478f8f23508806d2f7e1d26af2c47eb21b52014a855d92a549cc", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d33436f72fcc2745a9623a602e77e4c9a1037f0fed17584f0b9175f8e6711bb0", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a08dd175f764a3fc74b76d56374845bf2bd7095ad0688f4fe1166194883169df", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b509c1a3c2ef8477aa68c82f7f722d803dc925fdf0d7e75c7e43178880996802", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65f60595e6ab45f6b545a86ac13d3ed0452022981eb8c1e54869d5a24d11add3", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c64e0e8959e89f3c06c7f2b5a00acdc7773a1e4b3a427d52c8941f94d243d87", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c4418dc806fa70cf7ab6eec2b1518ac9d8f3e8c0beea3f7c69823d179d9224e", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36f93f48e889b7cae75b6cbc9e44fb573621d3f1c2711dd35bf7743c8e8264ca", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aea6db98eb3164db4bbc42546815eba115eb116da64f198276f014a55c5aefd", + "regex": "(?i)^https?\\:\\/\\/robloxarenafootball\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8923933693f62815c8dc2ab0b5135e8053ea953406df4994655df000b9015248", + "regex": "(?i)^https?\\:\\/\\/robloxworkatapizzaplacetvvideocodes\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd423df25b1ba4eb532edb58ec8c9354dbd8ca29ceab071571b67ebf4441c1d8", + "regex": "(?i)^https?\\:\\/\\/robloxworkatapizzaplacetvvideocodes\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6b737aa15d08e2251c480d35d59238df3547f9070956c082473c44a837a6b62", + "regex": "(?i)^https?\\:\\/\\/robloxworkatapizzaplacetvvideocodes\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e791ffc5a26bb4cbe860d4bca391dbdd6e03749e9db7460eacd4d26d649c6574", + "regex": "(?i)^https?\\:\\/\\/robloxworkatapizzaplacetvvideocodes\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa4432193d805d8a97fb7cdceaae3886f5ccc971f71812574267dc225ccdd62c", + "regex": "(?i)^https?\\:\\/\\/robloxworkatapizzaplacetvvideocodes\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d25716e3a913359ac152afcb16875bbe8c352bdb17093ef24cdeb229bb3eb7", + "regex": "(?i)^https?\\:\\/\\/robloxworkatapizzaplacetvvideocodes\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb376e2c11e3c40610fe3b6fcb678f1872c5fc2cc1f96fff07943cee273cf72", + "regex": "(?i)^https?\\:\\/\\/robloxworkatapizzaplacetvvideocodes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "744734e51802bbd8d4b8d845e85b73238bdbda8d0f05affbf62b44bbf8baa06f", + "regex": "(?i)^https?\\:\\/\\/robloxworkatapizzaplacetvvideocodes\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0387eac8b934f27761982b652efd90605e4dab6ffe52951079a0c43c199e9dc", + "regex": "(?i)^https?\\:\\/\\/robloxworkatapizzaplacetvvideocodes\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "872373cd22a8697c6083bde79c3bf48d6e275d5c8182ebd468e7a228c8d886fb", + "regex": "(?i)^https?\\:\\/\\/thefloorislavaroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f7ff22ad9876da2912217d312322957e6cde9f17f10c66a8ff5c0b6a0cfbfb6", + "regex": "(?i)^https?\\:\\/\\/thefloorislavaroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1f6b49d537c508bc00d40f2a470417eab3b6df8ebb8c88d66b1d327606f00ce", + "regex": "(?i)^https?\\:\\/\\/thefloorislavaroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82894cb19e10f2a0cb693fdec916853ed67cd405a9da90db21cd19a1a0d5b3e3", + "regex": "(?i)^https?\\:\\/\\/thefloorislavaroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "292d2e98d0140644618c9c88b23025f2f3345ae48eb08bb9aec13920a3c1dac2", + "regex": "(?i)^https?\\:\\/\\/thefloorislavaroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "093a57ad6b3ddbdc74f48d4ed335a533d7541c305c443d11ca1fae15f712eafe", + "regex": "(?i)^https?\\:\\/\\/thefloorislavaroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d6566eb2c54cdbbf7c181f72de4a64480c18a79456582603c3a0686f33d7867", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0e425f7adb41b7076f7c8cc3c265d15afba8a8ff361a2fd1af937af6aa8019c", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3209178393a360e69391ba2ae90fa3fe772edc6b98381609218f96007ac9c03", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581bd6df71f69bfdec314d0ec97485876b2e58d53a584e7c6517947ca30e396d", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e9ebd2bfb298607ed460ea396f70f701215cb7201a7613e861924aa57a4f129", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8927db6ccdea993bc21284c0afc1d7ad4189939be78b49041bf6b68a5bbc8259", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65a4135244ba1fc48544597cfac88abc68f38019e79cecc4202aa9ac436e3f5", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f62d518867cfde8409e3e7ce4c9084d1ee4404b69aa2b68ff5561857cbf0b3a", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4196553aa55199a9956a7db4842da10f76401d5b4c431daf0b2adc774e22518e", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae94e515e51bc98d7a268778743e6ea0d4f789a2f397e4ee0e58efee18dcd2aa", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85eb064110a59f35a90eb1280cf5d0e195f6107d16acaf3b8efbfef031011d28", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b8bdf8ce6712ca221ca2669f46cb71461e41c700ce74051f53f0cdf7184c05a", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "632d74a69fa8ace1d0e3df18a62316dbad9b9475fcdda132d9748567095ed756", + "regex": "(?i)^https?\\:\\/\\/doraearraperobloxid\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a1c04eaa2e67e40c8ebdaf5d1dd0a0f36cf25cb457cbbd669548d1539ff2254", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8b577e006031840341e31341e578182f0c468e204ba95915137322051194851", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ca6e1c226a5131dd63bf6dd7a763e71822557dd8390d134c34e155a4b578f74", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af9db63d160f4ce5569185a241ab0921a4f740a60108527b39ed4ec172b31bb5", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7f298ad562e517e6e6f2e410a22a42451342203b40a0fd4f1f4b240dc418d08", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e724ceaa0b52e60470de3b54738d848c906f45884406bda58d961f78e606040", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81fddc705793672157baf4e7c8237183170bf5ace368725db51ad19b4ad4eb56", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d302dfbf5ee62e11148d0ce0d9bf1be0a5609e190509709571956e683b474e8", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0a753296645b1f7a65804cb16760b02fddb6a642d523fc7686b739ae5bd2297", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d685615bc8914698a685424fbf5b54c8fab3489f72bf86a5c7540312f1d1b4c", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4cfaba7e1bfc80c48fc29e53d72c6ac5c18e7716e266e6c7772be55b26b328", + "regex": "(?i)^https?\\:\\/\\/footballuniverseroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83a47f25c90459e3d885d63a0cb54f1580f6c7db9bc6cd0623f1620baa62bb34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix" + }, + { + "hash": "243b93fb4fce39e64e8a589bdf2608d106c45b72ab82a5f55be8a2f6ecc69d47", + "regex": "." + }, + { + "hash": "22e395cfce406b335d730c12af883823ae43fd7c64276a8dc92bba6f486a2f3b", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9a0b75c6307b4ba9c8cc6e6c1406f57722a39b1bd0a85ef8a04784156954e42", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f14575701d670238a2d527186d3beea043c42d8d7bd20278ee0ab54be725776", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19e438015f66a63ef3019e92829214e184be53d8f150751c615420c7192a4709", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c19b45d472b2ca1a65f636afe9e2a17d565b3a5383eefec011f03cb30bad5d", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fedf165dfba8c0fa046a3ddb88b381ca064dfac453a05306927472e8ce738daa", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65c4193875a8fdfd8cd683417b220dda17844c570660a91b2a8836c36cba1ef", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d409075e4f0db2b0c90971d44aa76e7a1eff90e0a6e6ddfc012358b798c4bed", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beab713914be86e5b36b6ba8a9faace20a89929d185c66c5d5e2f912cfdc6fb8", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a3c7ba4a47e21475509728fc96c601bd6458b220dfc56e27256e7e52e6a5fb3", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50279f9d99d4441d5e2ab678d6e67590c757b0d1cd774c8e17cfa329e80df11e", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6856d6dadcf399a05554c2447b9772af9dec1ee71a115dbc650b9de14687caac", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d1d621de72e63f15955fe90f22dce395dbb23ee27cb235fff5aa9826e576e0", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70613858da33acd6eeca53659d631103dc78891ac363aa956c718b894ed03ccb", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "175067c698e883101fe13c64f62dd546dac4242867d761aea8a3478f603b17e3", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c093d8e67102c06c02ea95d836cf1aec992b8a168278578f3f40725433578529", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce92caf8b255d918ca392d1e4e0b8f9802cc849177fa7a7c4f0d1f8f6181427d", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0baa4f0535103bb0117ca30cd128c7f2ca83b63ff010fa32c2f0dcf233e9e037", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e522c5f0961b47b352d0c6f5cd76e160ff777f569b32f3d5223daca6f253b344", + "regex": "(?i)^https?\\:\\/\\/robloxcodeslistformurdermysterywor1\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6a93741c9e49011368265fe219bd7c33ac568597cad812515e0f5b9900e16fd", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesoctober2019new\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65c06a8a6681c5ba50bd194a6ac9e9b669991912982a402e6a1fd8fdf88ac75a", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesoctober2019new\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2dd19d8f9733c25bbd6881e634abd0f56db9161b9b83bb5a773e0fea2564575", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesoctober2019new\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69733d6c9b301bbf3d89616ba7d5cff3cff0600c29b39d9c855caa04e156a988", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesoctober2019new\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3524bdd80f522433a6b0fde47e816bf22c367c33236ef5a136b321cce9846050", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesoctober2019new\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3b752e8d9853ce1a29dfab74717b8e3ffd805f2d138e56e38689f139fd4a79e", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesoctober2019new\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6cace2c581bf63e48bb382b891c00ac0f1b3ca5acee30f7d66d810ca2b3510a", + "regex": "(?i)^https?\\:\\/\\/unkz2022\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd8247b7a2e0b17a7e000b817781989de560651e8e6d990f12e59614d4b5f9a5", + "regex": "(?i)^https?\\:\\/\\/unkz2022\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9891df1c60e12b9e1636a3cf1dec0be7544e2316c111ee711dd48ae8d142aa0", + "regex": "(?i)^https?\\:\\/\\/unkz2022\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f06fa2340e5ebbd8c4abd1df3f5c63f0fd5c1dbdc3b6dbae0a36fa3029c5a9d4", + "regex": "(?i)^https?\\:\\/\\/unkz2022\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8dc333bceba4fff000a8961cf735a0faf4ef066bc508a028c2ca7c613ccc703", + "regex": "(?i)^https?\\:\\/\\/unkz2022\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89ea2140560a3365f59216cee81a59ea1e26d9317a1a49ef404a14f6906db715", + "regex": "(?i)^https?\\:\\/\\/unkz2022\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a06113fcdd35f120372ad3c714782ce0d8e203ccebff27406d4b5597389d672f", + "regex": "(?i)^https?\\:\\/\\/unkz2022\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80859cf7be73a303fa54f2fa1109f45c2205562fb365f6f9301e20f85320563a", + "regex": "(?i)^https?\\:\\/\\/unkz2022\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+BpKQM2$" + }, + { + "hash": "ae000fc31d4f6db4fcc63448fbcdad416f41c203d0b87521391ba2b8aee14e12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+instagram\\-clone\\-frontend" + }, + { + "hash": "b40ca0acad1a5dac046199caba15560076d9e63867e190ca6940fe755a149d0a", + "regex": "." + }, + { + "hash": "2a9d3ea035211cb18c21cff72a575f8212636facd9b6b304bb0ed926afb9d141", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-Clone" + }, + { + "hash": "2f1283f9c4d4ad289c29d5cd58a99bdafebb5ae1a101dcd765bbe4191e09bdf9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=M8PS0IQuQrRTtOI8ZduHTR15NKpSKgJXpOe2yJdUCiE99FaJDtx\\-2BOOPdaLIlZ6DtxOSt_GXQvJJFI\\-2F\\-2FdFNJEm8mGAi1F2gzvrdRNPVnw\\-2FeMyDnzOc3yfRLNIwSGY87HTrPuO7FdKxCBJ83axR5493A6B98Lury4cxOjRLEf649yHsAgUYl3j7dZdWs942Dm9H0ddzQii06GehOFr0OWlBZMmsahOiFVqBTO3ZBdMqCstVz\\-2FAujdMSYsOSLGOVXpoq1aOKBHET\\-2BgW94sl8nZJUjnvD5jrdepnefy3Q8GpIF9q8vjA\\-3D$" + }, + { + "hash": "7c40fe2bf8fd476620a52b0d1aff26d85bbbf96df852a4b5cdbd3db267b183b6", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5656567ccc837759890f1b0c2110938485e8ef164470e282b444edfcdc79d62b", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca71b3d290d12169d0e98916d2233ee14efddbf35d886a1168c49cf73bb5e7db", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a74ec1c6021aff7ccf6ad23d809db4a0ddd39e994e21121a88461f15e27d4ec", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad6a2404e2bbbba0bad3d102aec378740e53a855c9455ec6d8ce6f79e9f72d6b", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f08d87d0ad3da31ae3f4f128230f6fc376a15254dfc2d5b512009aca1171c1d", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5adc9017ccaf7e0468c9891e6c57580e9f5ebd5a8b0120459aa10a727b4f58b0", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81f5135f9345e1ac1cdd1a076ae147d4db18f897ce13fab24781e6bbf96bc066", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d407758ea5b8d35ec7ec99e684b692a94f6caf29d11b98cc1681bfd3d92db2", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c093d5e6ea95d2e8295c643e69824562586abb8d55fc5fb0c343340817f37533", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1facb4a39ecee784eb3e3139ab9509a15756373628caf40f5ddd20a0210ce26a", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c1da1c666b50ed2762dc77a3049d85451d154222bf43734c44276c9d0e48f97", + "regex": "(?i)^https?\\:\\/\\/metamsklogn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "772baa41e69ce39d1f5c879ae96d2a8ac922676a36c8b7d9c56f3faf09502c3b", + "regex": "(?i)^https?\\:\\/\\/metamsklogn\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "282b3c8808a2ad4549b1ae96edd924e9e596386e2e6109ec6e0b5e7a7bd29673", + "regex": "(?i)^https?\\:\\/\\/metamsklogn\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e80c100229522d0eef95d506ed47c13bcc5dcac3755efd55a4c901004bed1ac1", + "regex": "(?i)^https?\\:\\/\\/metamsklogn\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edb2051cfd022ffb3125c99000d6428ce8c6d77761bdb292db1cccdfc8326569", + "regex": "(?i)^https?\\:\\/\\/metamsklogn\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "407352710ff00cabf9bec51aa0bbe6a4ee89490919ef2d2287e17594fe945a92", + "regex": "." + }, + { + "hash": "baab606f9a18fc91154f427e41372490f24eacbe14510d5b2f0315caad957458", + "regex": "." + }, + { + "hash": "e72e7b4c5117e7e8fa0d267e06000d32f749e9c01d814032aa5ad54ba1dab2e0", + "regex": "." + }, + { + "hash": "12a26b4ead258e6c3bfd8ba509fe02573b582d2199867616e272dc8aa3053af5", + "regex": "." + }, + { + "hash": "a9044eff608c5cd5f7bf55713e7999927436e8cd542dd916994acc4d0301d9dc", + "regex": "." + }, + { + "hash": "357a85d57419680b20625d27300072861205a3d70c6a18128722f3624d3cc8a8", + "regex": "." + }, + { + "hash": "e227897cad54382d5ecf29cf249519d48bf528cbb233fbe088fd38d0774a27a5", + "regex": "." + }, + { + "hash": "8315cf70a2724cec3430fdd1330f4a94490330e330667727d133329f0b5daaab", + "regex": "." + }, + { + "hash": "96f29c073a40ded8920c4472abd664180e4d5a79b91882596d18b539d9825857", + "regex": "." + }, + { + "hash": "fd2e0f90fca18eeb4fa445c2b8bdd5ea354abb83915d08626db2940545eb98a8", + "regex": "." + }, + { + "hash": "8ab92af9a783717ac54eae4ec3329e725b1da295f0e4670b2209beee073c8dce", + "regex": "." + }, + { + "hash": "7b286a31347b9298df11ac4d612d6c64dfdf6a2be4f6c9700221fa0a9d05b905", + "regex": "(?i)^https?\\:\\/\\/geminiamericalogin\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2f1283f9c4d4ad289c29d5cd58a99bdafebb5ae1a101dcd765bbe4191e09bdf9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=M8PS0IQuQrRTtOI8ZduHTR15NKpSKgJXpOe2yJdUCiE99FaJDtx\\-2BOOPdaLIlZ6DtzOe5_isjG\\-2F8F6quRdcR9qeKnPL8ZKGF2ojSx\\-2BrNVU\\-2Fo2iX\\-2FqEGWMr\\-2BXi\\-2FWj\\-2F7R9Zdan3KAOhUKSlyuh2zM7K2V8McTMNVOWm19\\-2FmpkfhnMOC\\-2BRzwCnZgRK0ibiHO1\\-2FayuMuvb110SdmNfGk\\-2BVtZaEQjKf\\-2BOOruZCcnuk94VQD9LKCfChpC2PZxqn3DaoXUrz\\-2BQssaIKRCyt4tco4\\-2FGZlkmyp\\-2FSAsQlxBPwnfkTR9\\-2BCXIl9xA\\-3D$" + }, + { + "hash": "1e60b09e101270fe6877e5c41780dede71ce808016363a873d70b38f17aaabed", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c39e7f07febdfd4aabcee43501d8729aa670681bc1d5deb60e2f288eb896c4ed", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffa2b991e82f84c5b4d307a1e79ae8aa1fa68d6dec702f422b1349023d9b9b96", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cb35fd16f07c4ea83aea99f7462d30dea093668b996a1f70661110fa6720005", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "914d386f4b679c580bdb71f8b7490d1d8d2710504342f37614cf15cf7d1ca92a", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0dfb93d2820560353782eb006ab2c9d40cc806472e2f54dbdb88bb15383bca3", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c02cc5679eb47934ff4613b3cec7cf98456a92affb64d18cfb41f014e58f4250", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a92c5367d932b91e0c0189347f22a6e921ccbad8499233617c2cb0ecc4dc3cb", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b190bc9b27b3b70c91dd0be107338f47caf3e844a60c7fc06e4776765a3db23", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a023f2020d54414afb6ad5a6928fc1abd3e1a42dd92b16922a628867629a7750", + "regex": "(?i)^https?\\:\\/\\/kraken\\-logins\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d3313f22e34dea55fc462a024520e984870e578d70dc2800d686b0527abdd22", + "regex": "(?i)^https?\\:\\/\\/usuphold\\-login\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e83c361d5156ecffcb950af0d8ac1166f9f1a5071b615f44d9faca8f1a7e11a9", + "regex": "." + }, + { + "hash": "acffb36813d153e14763971ce60c0838eeae488479cfef74a2eba7e3f3b00547", + "regex": "." + }, + { + "hash": "8bb9f8ead2b178cb263c76002d8bbf9a58a11a95eafdc0e66658e378b4e3eb74", + "regex": "(?i)^https?\\:\\/\\/us\\-uphold\\-logi\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0fae888eae7a86c5f86b5c7cf228b6b45ad3018894bfa7feb18686d31d670e55", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fc7d2e8cae0f37e6aa46030231655761c35c9297a4e5746fde2108d2882c78c", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c9f5f10e99afb21746f5513ec9ee9fe963b13cb7a7a565f0e7d8efc71694e0", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9eb8b74f367bfff7ae6da58c8d1a7429207fe8de8dd88f9e8dfaef960c2416d", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c76d63e1b8a6fda7e38af904458760e4461e385b0b479876390d03c5233313b6", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13a274d1d38d734ba03f30cc47e3e762887ec997081a7004d7215452324d657a", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d9aa78699415bf50f21f9e5bc5997eff3e5d3a158f603ed5c06396ae41f890b", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e2cde3805e7296435f736691699a01b5cc73dd499b94acd1bbe7bb25b5fff21", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f6c08655ff13fe712548c4b3e560ac750934c1d7c328ddf33d050cf197da61d", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85ebd229bc0a02e1918613c363c8835910aac5dd840c6fa77cd23c00d1bd8966", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "117c973f13cca48b53b5e6547a3fb0692a5a65ebf789498a3537c11dda5b950e", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c7fd302ecd32900794a99e24e314c520b2b5ad28b3b2fb734846e3a525eff37", + "regex": "(?i)^https?\\:\\/\\/newblogs360\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc751c708fc5225bfeb2f20e297ae90a07c4cda7b7d02f49a76ffec4ea4074ed", + "regex": "(?i)^https?\\:\\/\\/matamasklugin\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee8a508771ea435f34fe015c397038370c58206eb6e0fdc7dcc1b66e0e9ac02", + "regex": "(?i)^https?\\:\\/\\/matamasklugin\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "574c1e0fe20d783e9ca47bf783143f4c5344b6dd2821255b41dede797bd9ec86", + "regex": "(?i)^https?\\:\\/\\/matamasklugin\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a28379af7a5d60cbf5dc33fd57282500454c257149f218bc2abfc2579f13206", + "regex": "(?i)^https?\\:\\/\\/matamasklugin\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c86bd9ae901c8c82f18130416d0cc0e41817fbd59e51612fbdd1aa402d108621", + "regex": "(?i)^https?\\:\\/\\/matamasklugin\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01d5c9500804a549f14b42c9762d9c171f51b74f439bd29ba5b39df39c0f1661", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "834fbf90c447f1ad6b3bcfdc3e750736bf47b7d00dd1bff70c7b768f20c450fd", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4cb5b9d55b82bab2486b3e9ce43c75d950252da0d79d86e33f32d18c2e0bcb", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66f9d00e02c38642a7beb11ea15f8e5fc9bde5770d05302de92ef1671004b791", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96cef424c5c2dc97a630947c9a13f90e6e7b4cc0ef4df034d97859fe8d3544e6", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "102dcd76e7e72d4e23a0140c6ec3d0267d1b50f72e8c6169ff0912ddaa008f05", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d4d212a3a32ed034a99e633fb79280b661619ce972bdb1cae8a9d2c64d48fe6", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72af7d3d69b4c8acf500940670aeb6b004454087f96f77b80f8acfda53b38ce4", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab9e34e79cca291de4a2ae65ed09c84328d64cc10ca6880bb58407440c3bc050", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1750a3408e321f304a21107a0e1741cad66a6cc0539361b35b609ed40a07b2f6", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73f61bfcc152aa8e44a934cfc4034cc2cf61d6175b3149fa7483a22d31e4b437", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a340789a3c2b4561e49fb3dad9b9d61286df05492a3f023abb19869d9aa81c6f", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ccf441e4cc8794915ada588435ab50c729117a7ddefe213ded22d26a3f7e910", + "regex": "(?i)^https?\\:\\/\\/metamask\\-l0gin\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab3c1420628b49bcc672f65ed1f3293cd22821008e2a4c531fa9544a582309e2", + "regex": "." + }, + { + "hash": "54e49509d97c984aef57bd1a12c50df201046321df371952c17f45fffdd2b647", + "regex": "." + }, + { + "hash": "9d285a722904a09dc9cb1bf7e5b8e11ad349aec32515b4569cfe20a31c673973", + "regex": "." + }, + { + "hash": "85fc5c50b4f77058f074948ca9f8992802144dab208381aec6db8459d7a94d30", + "regex": "." + }, + { + "hash": "c82fe8b843a9bb73e186bd473b5b58302056dd79ca324e725a73b254a73c6eeb", + "regex": "." + }, + { + "hash": "9705f670982d0ad830ec7f33a6763f0aec2db40bd4fe37470f3e8473461e4267", + "regex": "." + }, + { + "hash": "130258c025ccae7f91235f2c8a43e1e2637f2e077fa71afcde58924151526c96", + "regex": "." + }, + { + "hash": "55306dce4443daa37d3d67bb274499c0d1947ab68e9b5e9e624b7e38495b94c2", + "regex": "." + }, + { + "hash": "8a03a7f61d47fa4a32646c0597e1504fde9002acddf716b51638102a22c64b10", + "regex": "." + }, + { + "hash": "ef5731a7b91c67371094488975cf24467d1e7b643610051eb133e4d858da72d5", + "regex": "." + }, + { + "hash": "967d007cc56b55c25e01ec3c33d6860067bac66d424f6af9ef487f7d5cabdcdd", + "regex": "." + }, + { + "hash": "2f1283f9c4d4ad289c29d5cd58a99bdafebb5ae1a101dcd765bbe4191e09bdf9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=M8PS0IQuQrRTtOI8ZduHTR15NKpSKgJXpOe2yJdUCiE99FaJDtx\\-2BOOPdaLIlZ6DtNL7l_VhD0TesqCVuiy1ix1nL8IQLBUuq50mhyb\\-2B2DJr8sBHc\\-2BWxV2MgWAcKWn1luNBs6CwqKqr7kIVPpfUY2xQYAN3KuzVQ1VjfZTDYxUUcbXjhskTXhP6vBfo8O8svfG1WO7XkyfTEgSqU3k247PIEmUm4c5uAmP\\-2B\\-2FjG4WC8wZEAW5kDB8BdZjthmfmtSd4rKWArygdODayM7u8yRe5bmg\\-2BlYgFP2FCSfqvJtJF\\-2BqltABh4\\-3D$" + }, + { + "hash": "94647b68a248fb16cda0e34c514e5d3686b111adbc110de868c1022335bf6f29", + "regex": "(?i)^https?\\:\\/\\/upholdlojiin\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1230608187c38bbdf6d6b577ebd350656300ae910acb912ee95bb635246596c7", + "regex": "." + }, + { + "hash": "ca4b6f8f63a5422d74656db533e2a5d36a3506cd72be228105f5eebeed811662", + "regex": "(?i)^https?\\:\\/\\/slopewallet\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3a47dcbea63337026e5f3dc707ee8c802ba1d52054d56766d231ab54f8a742db", + "regex": "." + }, + { + "hash": "ae47d925236bba90b41872fe232dd1e855200a8fc0d5a5e7c1888ca94eebacfc", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729b2f438b9eda824b574557c39e57acfd4bb6b80e9b96be8d6ff16a5ddf2c25", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2815a095d7f6b7c18d4e7ffcce7fb7224cb7dca26533ecffd98db0f58678977", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c375d3ce0892a81cd7629ec2d88e75cab233c48a208dab60973a2bc356043edb", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1d5d7558b33856dfdfbded451e411183df9a2778b2d97e7e52f11488641b969", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53beb76d478b15d05de736c412c11217ac5d400d2c76e27b39de9063db0496a5", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3514226ea621e2ecf2ca3bffc8ef080cc87c9af3529600d4e3018b5e13ad163c", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b84fc7f1e3b3973350c4e49cf0e1f496c4aa0cf5c72964bbf0f519317bd82a5", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "742b5ef210db38ad8c9ed2bfc3ad4a798f4b4ebdcebea7f016a25f7e0649e090", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0944f3d40c88cd1b2c1892eae5c03c222293a8e62bc9e95e0466fcf833e54c75", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be257ec2430d3107b72016703c3e3ed8e51523b35053b361cd0cec8169d86e03", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b246ddc8d54d61ee092bbf5b451351533d019784e1e9bf9844df7b19673ca409", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0916179bf6c2ba074a6fc7e1264c3dc4a9eb90c2b268822eae86615d2c8e07cb", + "regex": "(?i)^https?\\:\\/\\/metamasklogii\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f945c8a406d54ac3254291b2e1fb32615460b6692bec6eff01740e1334d48ed4", + "regex": "." + }, + { + "hash": "1c5aa856a7f821df2853ec7836ab7b194f896422ae3971e4570ca095fb5a4eff", + "regex": "(?i)^https?\\:\\/\\/robinhooddlogin\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ef88fbf0e0574f011835c4ffb9b8bfd4860f0f6c5e70cf70f753aab8b15aa962", + "regex": "." + }, + { + "hash": "a7acd1e7dce78fee3ca828e0356e7603377a49d4c49ddb5a5e2739143ced4e0e", + "regex": "." + }, + { + "hash": "34f5b6419774c6effd5a780891afe45e1541842358452f88c6c92329b50e622e", + "regex": "." + }, + { + "hash": "a1808e6dc87fe24b02903dd776d0d5ae8d280f6f4af53dccde7c0fa31c1b11c5", + "regex": "(?i)^https?\\:\\/\\/metamaskssignin\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a50ac155790db20d0ae6bb79b43e8ff6f2f081475fb32532edf35ee97b2e336b", + "regex": "(?i)^https?\\:\\/\\/metamaskssignin\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4117b0eace7f4e3686b701c68cf504967a973aba70f5129a7b4c91c3831157b", + "regex": "(?i)^https?\\:\\/\\/metamaskssignin\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26cca01f88bfabac54f8e4059418acd9310797081798de3e0ae8741968e24b0d", + "regex": "(?i)^https?\\:\\/\\/metamaskssignin\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68a3f23bfd4541e836ab2bbdff43d13ea6424f51b30f95f56e48be4298eb2659", + "regex": "(?i)^https?\\:\\/\\/metamaskssignin\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c0e972c613729571c5fe303d28010743c7a7db4eb33f2bb23d3cd5533252bdb", + "regex": "(?i)^https?\\:\\/\\/metamaskssignin\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b3c00ac9b5b3353d7a9f94f03f3a38adf2163b1877c51e6df64d05598b69eeb", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "186dba6b6a8cf2a184cdfab5a85bae8c9ae3ae2ed39db29050a7b32da2263ea4", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc93045e7f288f0650ae183e3b28fb984f1de6de125090260b31f2b9baaa926e", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7cf737e12cadbd9765e701a5f0ca31ec491709cb668b5788a17d2d799aea4f4", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21b8d9d05d0c80ce5e03116483420b635076cf1b1fddf41af0700f7ea6c5a37f", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "793b975311a0a40f1690a2c86a25c1f9b4852d01310489e54ab26330ea986ec2", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "748750e4ac33ee62e9d947f17b42015bc6a295c7d2e224efaa0871955615247c", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e5cc11e0d5950cdbdbbd5caad7ca507cd7f148115813f572c5e87ef1f9b831b", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea3b2f8b292e5fdd24f4ace166041f5ac754e623bd62773b4e854c438b03be53", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f75e4340b52b95670c5e1fc5dfcdad0905bb4f6bc49cd2a91e6fdf227471c522", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f08119ea5aafb9425b15fbce8944b03e999b64930e5f4c8647cfaaaf4e6b9b9", + "regex": "(?i)^https?\\:\\/\\/themmoneyman\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9035d1983f67da7041ee52c87b094acb528ad380139325ce7995d606e8f86c8", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddc54404141c8a82366a8c4dde9c920b923dd4fd9db353e88cb460165a232a71", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4418ae43e7ef13fbdf361ff25e583ff5bdda2ed81024c5eb40b61218b1e79b4f", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "debc52f136770d84161670a775b3cc27e385b8115bc0bc05567a8152f3f56f93", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a4205b466d04e4c8e7761b73859ddd77cf68039fee6d10033fe94861e7cab65", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c38fa8eb9f2e07c570c6f81197d012796576d950248aefa1fde9e670ba7fabb", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a8f616d913281ec045c8258a4812e18703ee64b3affd2ddd6f131c96a8c94a", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5a539f4f8a368120017a7fea8557e08f21e103fa9e7517b483a0981a196ee41", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "513d00d9da70d530eb34468f3e28689309b6a3066242db32d22d77613ac81633", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e32e948cb333ec421e160ac2367d6cf9c9a8efc5ed001252dd88f4bc74b2e335", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3e6c31d209ae6d485b6238f6f13d0d27e566120e0331b6accf1c6eec868cbe2", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ef9800d2bccb33404da12c36b39238a205bf53c5182d4fe66a23a98f6a62761", + "regex": "(?i)^https?\\:\\/\\/phantom\\-wallet\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16870c2b32af20f4f5c5a3aec4f511f422a60c23268528d156d5119d38e3c971", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "584d03fcb0bff70513f01006c1e00634a9fffe8dd6974eef171bea9dc33976de", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46ceb807455132e515b2d9967303a817c5952294f6383d22d5ec03a51746876f", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76180f166557361bea4abbfcbd39dae62de453c6cb9c2d0454937179e3ce6b64", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02f9b65199bfec0d1048d3b5e1ab7f0b02bb06be298d33b771128201e9986eeb", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "243bc91a5e0c13f7bb427a010bd1b11a007a1c439b178f2dd090e6c40730e731", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08f1516898c7f4de92e8a224727bdd01f7bb7655b3ed53a77208f03f1f76188", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ccb699071307e49707113b163f1c80bf3bcdc47af480da03cbeb324717bbbec", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d040975f0bf101723accccc2252c63a6f74bdfc6e74f70a8cbab4bfbeb1f2bd3", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1521fc171d549278223d4fea5c11ec7351a1e24534402491c61d5ead9097590a", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db756278730103079045b3d8a32a4436e21d9d86f49a4d31ccc01e4fdb2c895d", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70e824a5ae28baef23d31fc5f5aaed2ea6aaa40648bca34fc12b0bf0084eee49", + "regex": "(?i)^https?\\:\\/\\/phantom\\-app\\-wallet\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+20wdQe$" + }, + { + "hash": "1b01ec8a12287583c7b3f47caa2227370cf153eccb251ffaff36bdd9d5ea0920", + "regex": "." + }, + { + "hash": "fe977fca7a071f58fd9a56eb4d4f7a25cc9071d614f4ef9a16f94ca7371b39b0", + "regex": "." + }, + { + "hash": "09a0e86e10453f9a2aca584e9f16750254fa077d39d449325bdc744f8e0064ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Clone" + }, + { + "hash": "6be137982ae7142a9c4a1c551e7e1dc0eb13c99cfc95818622d5d7990e6ff4ea", + "regex": "." + }, + { + "hash": "128becbe0261b163e6d211caf6450ab9998c54fe8fd14b50a7710d4edce460ec", + "regex": "." + }, + { + "hash": "9a8d7dadf6f8e36f8a30584e0d7d9089021a6e55142d87dc0690e17966a57868", + "regex": "." + }, + { + "hash": "b22c5c75397da84c2b4ddd8237ec94d90a4bcbba261ddccc2d76e8403c6bdca9", + "regex": "." + }, + { + "hash": "16e89f4c44f89f1d2a577e879903cb0c56f523eb59eea33d914cae8f706935c4", + "regex": "." + }, + { + "hash": "bc3495cb715066c6c25eb2992fcc98fcbd6a202c58d2f0f432fe397e0990fe3b", + "regex": "." + }, + { + "hash": "d240ece83bfb83dab9d8dea5348b53886914685a85699574cdc8ae21dae3ceb2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+test\\.github\\.oi(?:[\\/\\\\]+|$)" + }, + { + "hash": "e26a3a8d20ef493bf1d0b949919e733dccf68a2caabe7444946113e5cf227168", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-Login\\-Clone" + }, + { + "hash": "7e8a9ff578fa5bb8f503e8849c73e1a60432ecc3da5b3a4066ca54f3f018b004", + "regex": "." + }, + { + "hash": "e22715d8b8124065b4961880d2def3e65564597cc46ab833329b13d1de619068", + "regex": "." + }, + { + "hash": "3a553287fce6c0027ff8115877cccc3fa41083c09a12dda55d00841e2628d506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Responsive" + }, + { + "hash": "5d5137bd58cb28917bc7f9be35ce256bf239564593d80e05042070ddc8804210", + "regex": "." + }, + { + "hash": "fc8282f79c8f367a76508121b66b67c3a512fc98d9fbdf6d102b7218fd37ed9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\.clone" + }, + { + "hash": "6d867410be79fbca33254bcbc128f1abb887c355190444655daddd1c06694e16", + "regex": "." + }, + { + "hash": "38b0024d15a07e185d70cc17a4dff760a6859954e81eaa755755b984b59d4051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clone\\-login\\-netflix" + }, + { + "hash": "b8c513a48375be9a1ac01777bcd6386860c8cbe1f5d7d1778acb044567b9d901", + "regex": "." + }, + { + "hash": "98e1e3dfaa720edf290fb4df04aa8330f01f4119fc0ef8da19b6e786d077deb5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+optin9b2t3sw\\?__cf_chl_f_tk\\=1TZzv2QejjUUPWtF\\.F6HQaoVJmy6G5biPqFWnmzGwdI\\-1661323827\\-0\\-gaNycGzNCCU$" + }, + { + "hash": "782f0642af8f294034280a29fa552ae0d4bc59910431d3b91dc67eaa2775d627", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook" + }, + { + "hash": "b4d9ad3db67601aa1ac5a73a77ca0ecb0952f91d0b1909e9467db5f003f5a50e", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0cc7c03ba4b8e117d58ad9fef81fb4fb1368d79818ded009d6cc82bacee6d13", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "331a12e7083d2331c83db4a9afe4ea1ee3fe728935d4bee9a09d5c5e2edad1fd", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "139b51ac763fcc6ea0fac9da001a3006a3afe8948166d7d07ada2bf72969e8e9", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51ca48fb5bc1eba8f6d48fa9928bce0732dd2d530c41b183ef8bd965291b08ea", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b22c0a165344a54167407d9ec89457bb80cf0cb692d7f1902623b3e6f655efd0", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "181f31c7b8611aca8e8b95092d11d98ae1ae3b065a51bc881848499e72d6668c", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae151d2b90932575b615c19fa1f1ef15583e0787294e29a28e4399bd4380a85", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da88f1408d0e8a5c41e273d343f49d851d2a0f69e9f609defee042a6414be1f", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10154b74d12eb75d2e24a63cd238e621db0539da19979e733052d9500bed39f4", + "regex": "(?i)^https?\\:\\/\\/metamasklogink\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d1980621958a442f77e825b1c9406fe98d506fc5757e8599cb0ec690dfb168e", + "regex": "." + }, + { + "hash": "0e9ee8992197623830fe3beb98453c7468663bbe6a665c1c5c80acd9351ce523", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+template\\-login\\-instagram" + }, + { + "hash": "102d6ee657d91c405b95962904645c11235e6ef3b91f8f187908467216e0e22a", + "regex": "(?i)^https?\\:\\/\\/inngist\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a03df8fae92dceb62deb348771464f48b1d53fda283c61ac45650de23130cd23", + "regex": "(?i)^https?\\:\\/\\/inngist\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0131538edea8d9f44386b9cec1a38f2522dd8f0715c71309a2951daf6463da8b", + "regex": "(?i)^https?\\:\\/\\/inngist\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f089a888b861d3401f52bc06277b1016e7bdf5746458f22b2d43931d95583e8d", + "regex": "(?i)^https?\\:\\/\\/inngist\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a34e761ef937e2557f439527c0554d940b652cb0d38b65b8d5e591d74edda78", + "regex": "(?i)^https?\\:\\/\\/comoqhlcher\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05dd0b4255eca1e15b98d1742f14f7d46544e3ca413ae8e43e5fc536224ae356", + "regex": "(?i)^https?\\:\\/\\/comoqhlcher\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d71bdb0592ca3e99ad53f75c6fc97717a41856218db9e30d646225e19186ade6", + "regex": "(?i)^https?\\:\\/\\/comoqhlcher\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "776e836a913984af6c9cade3ced34509a558b21fd28b82d87e4946c9ec5bae91", + "regex": "(?i)^https?\\:\\/\\/comoqhlcher\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40c897908f41ac62b9b8c4598922316cded624cdb328e040fe4a0cd49c4cc384", + "regex": "(?i)^https?\\:\\/\\/comoqhlcher\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6575ab6e28e33a0d6365d27278988e99d4ff9c69dc20d263facb9de4e1f3effe", + "regex": "(?i)^https?\\:\\/\\/comoqhlcher\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb40eadb022b9f04a89b5dd3afd05de5365beea39bb315eda3cc5c75e28ccc0c", + "regex": "(?i)^https?\\:\\/\\/comoqhlcher\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86c0421bcc19c4c8e1eccf3ee3e236bf64a56af59d09b80a8f43ff7ead136171", + "regex": "(?i)^https?\\:\\/\\/truesfile773\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28f8f767934876ec381e9ed9eaa7d798dad5e85d89a86697f8224d3c728c048d", + "regex": "(?i)^https?\\:\\/\\/newelectronic463\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2c87f6f5b61b53ba41c8fbad42e723718edf6038f44f30da0591208434acd11", + "regex": "(?i)^https?\\:\\/\\/vividrevizion638\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "813c22afb4b17d2aeb7dad22e339e890d2a84495f37979cb64f7719bbfde77fc", + "regex": "(?i)^https?\\:\\/\\/metmask\\-login\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e621a7e045500e1f7c903e3489e044737248c7c9140b2590de0c2785c2872dc", + "regex": "(?i)^https?\\:\\/\\/metmask\\-login\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e9e01049a0ae6e16559efa3215e8d4c405205c8cca06b5d97c360885096c529", + "regex": "(?i)^https?\\:\\/\\/metmask\\-login\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6f227911399ba374d13f2fc26c905ac4e61ccf548bb1ffbd81f9b13e0c12e4", + "regex": "(?i)^https?\\:\\/\\/metmask\\-login\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe35926bf4808c23f35b79e446eaf757a546bf616d6c6aa7394f93895cdb1fc7", + "regex": "(?i)^https?\\:\\/\\/metmask\\-login\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31a55d4ad64dca2b6b10342bb9ee11dfba1e0204bea346f2dabb1bda8b9480d7", + "regex": "(?i)^https?\\:\\/\\/metmask\\-login\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e558420b3222481f9963c8ba1da3e1198ea582c30adc2a187878426389518c0f", + "regex": "(?i)^https?\\:\\/\\/metmask\\-login\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad451ebfd9394d6d7e821fc16a74f91f0b93ff3fd095f2a038babeec141aa869", + "regex": "(?i)^https?\\:\\/\\/robloxdemonslayer\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0830e8440907557d8d41af2ea2543d6163786bcdd12e393c625aca903921b898", + "regex": "(?i)^https?\\:\\/\\/robloxdemonslayer\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "164a6514cffdfe6c3d36cfbb3333bd0008e9bd61e0ad784b9078afdfd66dd84f", + "regex": "(?i)^https?\\:\\/\\/robloxdemonslayer\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21d5497876391bcc6f94f19c9dac7079767fb2ebcb6864530b7fed2822cb4784", + "regex": "(?i)^https?\\:\\/\\/robloxdemonslayer\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f711e7a7f8d017a97c26e920fb65edaae5a265c8c234900ee234c83b57b239b", + "regex": "(?i)^https?\\:\\/\\/robloxdemonslayer\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d19d9a11edc6705a39bf14ba4e960a244d86d0025101d5f87f0c7c482a0a02f", + "regex": "(?i)^https?\\:\\/\\/robloxdemonslayer\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44682b180e8cf77a9839a08d94bc1531d172e121ff7cb772ee84a201f2ae33d1", + "regex": "(?i)^https?\\:\\/\\/robloxdemonslayer\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c44aabf7d63f9c90d38676b7379b926ee3fc52b70f8dee36eeec1c035612e04", + "regex": "(?i)^https?\\:\\/\\/robloxdemonslayer\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45af120646f6751be1d95aef5bf6fccce8f5635d419dc96b661b10f73472924e", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "162009ed991656e83e4f1848bc02374f72a1acd7270cfab9c75428565d7c7517", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae9c91ae8ef173ca62261a7592f4be0ea374e4398a15e601f135b965f3e4161e", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21851924da2cdbe7561f73b2425dab4011df2447efd3688c4920835390a31cda", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2b190d35c52ad01d7c594ea6a3cc2381d278fc4a11bac92092445a45a6ea7c4", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54ed4f2f0ac66bb0cd359aa551660a412d53563a060e86928fb3f1e4561e5cb1", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80fb35f06645f8125b0188e50d2fb4a7195c6a0a96afd456e3dc96525a4e1974", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e528d4c685adc7a70f3431e65cfc528133620741c576fd930cd658e1a31abf9", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7054d94249bc357ae2113557ee410c17bdfcf840899da8d8141011592ea75223", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3dd1df9991e65ce5f3f6ed9bea13a902766fc3a8e629d2f93208c693fb73b39", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efbbd833ae861d73b556293b896c7728237283f4dad14b544135ee11c448c672", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsmegaviphackindir\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "accea8055e86f4ae82cccab66174033bd026d1dd0b5ec8998c07c59c5a96fde9", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72afbb19cb9201e4270f7d2ae41fa78a0a83add9b08015d563d6ec5af7c7a803", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c258da10725c837837e1e26c4b537b3cadd197a931232768dc72df5b80adf20", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6edbd34dc589d7d2cac4d6aed80041f691d828cb34cce283f692839e4015b611", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a288d5de188a62a848221f06f9585f4b24323f63353a2a0fdb6b4c7ff5a5e3e4", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "280c453a9d0662b3cf43c1f8d9727e0ed9c7f3240ba04a73b36ab6a45717301a", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "942dbb6c97a883a0516d11779ace239792a4d2ad984099aef90c5333200524ba", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67aebccfc77fabdeaf5c3049f682e4bc03297037ff346f6b655a13d8fb7ac871", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10ea1611bbe952b8861d6c757977e44e4f3b5ee5b67dc444af36a1c7492e35df", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce9309de262950c9d02fd23272f0afe0bc89ff5a701f97ab7d02de331e0c55a6", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourownrobloxbloxburgdecal\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f92559bc6b2f7db85c2b94398829c2ca830c703c0821057a2d59ea0d3d37785", + "regex": "(?i)^https?\\:\\/\\/robloxsimulateurdevhiculecode\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17dfb54f670a438f5f577a4def603f5cef46a5410582cda5c78cd295035bb3fc", + "regex": "(?i)^https?\\:\\/\\/robloxsimulateurdevhiculecode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948aac769b5aab1c760d7fa6d5262eea0adc95be3a38e344e2532ceeb7be48d9", + "regex": "(?i)^https?\\:\\/\\/robloxsimulateurdevhiculecode\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99ad03c41391998db6dfb9ffbc2c96451d50cdeb6e67093f8dd5179c37428019", + "regex": "(?i)^https?\\:\\/\\/robloxsimulateurdevhiculecode\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11f5fb86ad6a6b903760b98d549325c89518197f3d65d363c53d11cb4e6357fc", + "regex": "(?i)^https?\\:\\/\\/robloxsimulateurdevhiculecode\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e7fef6d5c9ec1037931aa57e43de605a399f408bf9217e7191516aeade0f647", + "regex": "(?i)^https?\\:\\/\\/robloxsimulateurdevhiculecode\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da134f63b21279ffd3e29d8a0243f933ba1edc3ce488ff245518a5ae1b9ebde", + "regex": "(?i)^https?\\:\\/\\/robloxsimulateurdevhiculecode\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72f05fb9dca01893db0e8c180a8de08b80fcf83ff9277112eabe2b9c9a81d8df", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxfree\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e43d5f8005389484f1b314c239da7d7015a087c942dbe953b5db5673399ce3c", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxfree\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32e5e7c859501a44a4d003d472eda319a58822653e83d6fad5c500e4fc2fe72b", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxfree\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dec85aa37020225f9c6922fd260eea82579af23e859716e467a7d436a08ff12", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxfree\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b47b188f0ff6e22f62668f1f7acb5c2923ae0b4325c4f9b104207fe15e602d", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxfree\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20e83e71f1a3db85723e6f8dad011234ec7c7390b8275719e1b4de810fbe82bc", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxfree\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c3f100c549515a827d7ee506a32041961ac22fe914f0511d5f412ac758e54ed", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxfree\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "864c09925208aa51659b47c9ebb3893234c8cb3ee7e6e292b2734a678a02239a", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxfree\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "061b16bbf5bc6b0ad472cce9f0b76825c0793ec55158c1b2582a6a5d3c9bf0d3", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxfree\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d12be433cd9388a220e4a6cce1acf8a7ad800e639139bd22508e265320ad25f2", + "regex": "." + }, + { + "hash": "138725f31f0f4214b92ac7fbf7fa555570b87effc42994c3f411c33dc2eca43e", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f329e35442230a483da16ad52d83b84857ff530da5463ce820f0df1782dc5d49", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomlulucagames\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4b6b1af8891e33f49334d65e531c57dd0f5b0f1be892de9ba627752bedaeae9", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eafdbead53dee550308dae5fad109d7b832a41708e2c51b2984eed63849fd76", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7781d3e0a0c2c2a9d591d3adcf821136ffd5dc38d155286e8a45edec07bd93ce", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b772f25e3272076869827b84f1aedb99d85273baeb0e038bc3d76d7d30220bc", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c3b72e7cf77bfaf6f0f7ad083224e23ae42dd54617ed804c25d8ea622a64bd0", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a62b25d8119118a963ea4f7ba08dbc2a04397dab385cdb8b4511b9e3b6bf0c2", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1f8306ecd48a63e44e007b35b81af579a960405c7dfc2bc627fa15eca6e5d1c", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9677c989ba737c8da71d3c52f168ec50a779e57789e9e99e3a6f3a68cca577c", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fdda3469b228498b8e1d2ebff011df0811262b7c7ace92a680d9d41f2b9310a", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03aefcd06c27aeaee6282841c87a2442359cfebb9f1b27f7265c4765d238f393", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64a9493f17f1e95cc77af5ad769236294a93e6ed292f4efab783a17602ea9d9c", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b10b9505673b4ed1ad3c5fd1e6bd2c326ad046fcb825a7f14cce63e3de867d9c", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b3e7fcdc2b4c70edaa7dc48b256c344496b25d0844f17fdf3bfd057efe0b900", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "504428ac0dc36f87f6f697fc3a27202cd7ff76d0d27280616fa0d5dcc47b9e69", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19bf83862b0ca9e951be91a2e767dade189644596f4babe0ebae41b16fe10663", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxinfinitoverso2362255821\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67ae78d43a4731dbc1dd8d8f8e13407345acb014d5968b06bd6144128a3f3934", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee04193e6a5f751d2c4330f1459829b267ce342940b03247919104d9ac460522", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a1ad576e32e7b159cba126ce4b4a43f2b87dc3c478b9b3e3c66f9f7db98b40", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3b2f788e41d34ca007f8716f8e44d67ffec43e451c0241f856d38e39049f356", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "528c0a0339c413db1cee17cfb5e0a257172922167233e4ee82c83e9afadda06a", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62e4e3bb7891e275f6a670e0fcb2d538f1f16a9c29445b133b9d3e56d7488175", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e04e31b55877b9f178cb870f8d3e5acc3a1d155f43a49fb6a31ee899fb967eda", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9038237382423ca0e204eff0445b103ddab9199e6de7f1ffb5c0b292b66dec48", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1201bbf32ceee267b0003fe5cca93e2a5182bdc4abd5e9c1728e72c7a97c1c2", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f1fb362cd802744e7917c1e9b522f2b1240fbc5137f295e9aad18deec41f56b", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a87231c98e232b8c36ce825cac190524e3fd3977a6e57fa7af8b45393f5fed06", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c5bf3ceea9704faa95f3897cbcff50ea1c192c724a8de8ea6f14d0b052c8d3c", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87ad6968f800ceec5c4f48c701cb189b1cf8afe198c554e9e60962261e08e151", + "regex": "(?i)^https?\\:\\/\\/weathersigndecalroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "047c35ab97b51452765b5d0293671f79715bb9507c89bb18200d1dc786942f73", + "regex": "." + }, + { + "hash": "181f2cb4734cf8ba1e9e67945e17e18963107feb1d797b05a95bb40ee8f7c90b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NetFlix\\-Clone" + }, + { + "hash": "5724fd0ab55778d20216233049a6d17442a49390ef77c1bad31943516771f776", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxegravarnoyoutubers\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "275fad8bac1289de59d3960a262ff7511386dc7d7a0097ab0be7f6d00666bcd8", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxegravarnoyoutubers\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b6c4340602e978cbed777173d832898204c31a112e4db1090c7476db83d1c86", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxegravarnoyoutubers\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2c9a33314624f5f03c547bb68fc99666340fb1d38528e18c96eaa452ff75f6", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxegravarnoyoutubers\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d9ab36a4c8c6d327cfc3b78b9fb2d3be52735f437940a19f7d2c4ece0049b1b", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxegravarnoyoutubers\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01c711243e3d485eeb5ace70d8070cb9c9d5007d800e9d2070b134c595eb9189", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxegravarnoyoutubers\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6afa81877f0f4ccc3efbd994147d290f12447e3a8fb14f57d6fdf11b89fa8a70", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxegravarnoyoutubers\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56eabd5ba4545724db81496bb9a1c19fa5003976790b74f4c982602b2aeedaf2", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxegravarnoyoutubers\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d569f41dc426a86cce314b145c410374288003558b98dfd648e1fc71d7c24f7e", + "regex": "." + }, + { + "hash": "459bf8c2ac5833a7595e15e8ee2f12ddd298d413910079c477afcf5f7fc8463d", + "regex": "." + }, + { + "hash": "8d999c175d33fe5b5afd3af03745898249992a3bc42060688e99f7a1cc767bba", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicforlightemupxradioacti\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf0def8fc733a3b591c29e6dd05c7b9ac615d4d02174edd8e299648b5eea3547", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicforlightemupxradioacti\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "047ce3a34062abcd091931685c485d3eea35ed3af920ee0925f25c51ca1c15be", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicforlightemupxradioacti\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3187a6dd8ac9a332e84843acd4d4b4ee1150a300163b0f8198bd7e88aef39141", + "regex": "(?i)^https?\\:\\/\\/robloxlightdecal\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f445177d6f3cc8bda7323df7fa7068b99617208c1cf99a6eb5d7b01e022950fc", + "regex": "(?i)^https?\\:\\/\\/robloxlightdecal\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cab9f3f8690b8fd031a011babe21cbe427b3e1096dcd348bffe36d5ac12a1a32", + "regex": "(?i)^https?\\:\\/\\/robloxlightdecal\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6816837954ac3cb47df42b8f05fce894b28d67385b3a6cf9fd4a98a302de3aab", + "regex": "(?i)^https?\\:\\/\\/comoconseguirumhibridonojogodinosword\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e2a13994b5ce1cf7d05489415c2ac2175190ad39db7ab0c4955c5e905c939c", + "regex": "(?i)^https?\\:\\/\\/comoconseguirumhibridonojogodinosword\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2ca2f7bd61c49ea891746d9a56274000b5b8a231ae71027081eaa0ff97accba", + "regex": "(?i)^https?\\:\\/\\/comoconseguirumhibridonojogodinosword\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b08ff36ec25082c92effca0474f1b7f7071170d10eb9dab5b3616e0fd8510f9a", + "regex": "(?i)^https?\\:\\/\\/comoconseguirumhibridonojogodinosword\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd0efddb9fe62c029c669a16836b8307493fa652aee2b6cd224ec9209beb8cc7", + "regex": "(?i)^https?\\:\\/\\/comoconseguirumhibridonojogodinosword\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0d1a0edfee58692dcee5f9c59840cdb78d89d512238bbbb3514e71aec7e7ec0", + "regex": "(?i)^https?\\:\\/\\/comoconseguirumhibridonojogodinosword\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cd4591fff8005c5499018b76b09262b0eca15f0310654c2a8c3b131ed64a4f5", + "regex": "(?i)^https?\\:\\/\\/comoconseguirumhibridonojogodinosword\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a911729868ba5eb21f847f1080a8be80836299df2c4f878a6f0bef37009a545", + "regex": "(?i)^https?\\:\\/\\/comoconseguirumhibridonojogodinosword\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57c3445c0094fe8ec75314d8966d1ae37e2414642e1b4c327ff6ef703eeb5a30", + "regex": "(?i)^https?\\:\\/\\/comoconseguirumhibridonojogodinosword\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "226bbc94442312131fd402a1a0dd70d148e2836a16f05720e8baee3c3b8db9f3", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef35376dcfd3faa2d446f490ec0329237af143445df8e88eb4ce252caebf3680", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89a76bec04928675cfe809da678ed33196cf057d7977f53e03a676afe9cae8bb", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50252f93103c688b305706093c558b4f8688f22912e62eb2f82b9b8cbe0a4632", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bb804f5917ca09ce7c91731e667f961daa3d04c672f314581ad474fad05167", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab1e2a69dbfa7270f237913e2667238690a0cb589e6f73b36a899bff4eb05a4", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cc1e36dbb298f80faddcd87fb5f6727b963314e8d988dab6318139b5792aa17", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b12ce3ba779f09ad7111199c95229b95f7596d65dcd7ca0a49672e5be9cc79", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "606b9a80db24ed3393c4aa50f9086ed35d849674aa348157189bc094825dfc99", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15130fd5337a70b9dcb732b4271db25b2d00289169bcc329aa7323583d207b9b", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33654a2f4efd5fdf33ca0a56ce4d538c22c55ebc9d7fcfac24f605f260577119", + "regex": "(?i)^https?\\:\\/\\/semarakpoinbri\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25d6c7d393152d18e26fe5f97c5e935a65dcfaab4cbc2dccf5031afc5ff0fbc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+davidw_gen" + }, + { + "hash": "a2888532c4dc82a7c5e55afaea874d235e6477c48b17d61be91373794097f4ef", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2987f26d8be2c3fcb6387b8f806692409538eeeded1b2ec98dd21eaa73b8c76e", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af84995eb6bf073a62969b6759052db7a10820be8560f52fb13bcd7b4419348c", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8848129ee02ecaf6bf0e7e276f994dbbdafdb7fd9cb1781d528a8deb110cf4ad", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ab25dd3134cb0cd92d69ef2467c032f5eb6a20c3a9bf520642c97bbaa46da40", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7533ecd4662b427370d87f669b6e970065c074262f5df7342acd02a49483028", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29fa0367b79c356f715a1c3ca449d4ae097c5c42b474a5f974d9edbe04acd549", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6ff75eb96c4cc8e4db7e3fd06cea9a283d4cf03d5b62fe8f92ed38feb1fa4f2", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8e25f31566b1cbb9308dfa45c15b5d70a1358ff6570a7a15acf53e87ef3cd7b", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f75035ac5f7a838c15a02b66125e4dbd599297fe0e9599ce7a051c548c4bf50d", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "786d3cc6c861c699fcbfe7990e5d1ea6b3374d7208e65b5101faa7371f640270", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7424b51dd7d84bcb4ca25160878f8b0ce86a776a7672d6c56dc428b22d206433", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd3d3fe2ae0f8b4794d313aec022baff82e5246e788e95506cc59b52ad54b06e", + "regex": "(?i)^https?\\:\\/\\/best\\-lbankinfo\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "767e31c7564597345bc62ca3a2a16e113b4fd42edec8ef36d6fcdc4eb0c246bb", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f7f5a322f93a308366a37809507bb8593e6ac64d292b1edf01efd19d4c62e5c", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfe46f8e71f7143650a77c6a8da4cc92b61bae98240e869e8b43cd9c79b25012", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a862e22894ba63b51202d09f7cff9e0fc534cfd74aa0cdcccf8c67a362d39ba6", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da774355b3f47deb1a4a05192947f3faf4b1abcdc5fc13d6cb12a3560161e75", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b604378194e393b4480bca216af070e45721406b63db3119dccef9c45fc03c2", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "909e648ff5b09e828b270058bf300fc2da66e499f3f3f679620b78b173162031", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfed1a7bf621d9bf7e40d570fe9adf92e2f91afe93ab70c22f5d721e1a76245c", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bab0778dbaf092334c0389f19092b9028bfbd8b62baddad97756f8c7f6b489c7", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cb46e041d5d5790104b0209d93ee629916f795f6abbdec8b2755949788d1730", + "regex": "(?i)^https?\\:\\/\\/frendsterlogin0\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7413c8400259120a25812fb909c29d2440f57d7d66c0fd21f15a1317c4ebec52", + "regex": "(?i)^https?\\:\\/\\/cryptowalletextensionio\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "615313be65a33691a0f70ee4d1fe237f9c926b0bc2b19271e3f8b542d016803f", + "regex": "(?i)^https?\\:\\/\\/cryptowallettextension\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4c034d889b3bfce60137ffc45e5f57457df57d0061f1004f7d4e9015d8d1d232", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+face\\-Ahmed$" + }, + { + "hash": "4c034d889b3bfce60137ffc45e5f57457df57d0061f1004f7d4e9015d8d1d232", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+face\\-Ahmed(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aeab2d73316ec66d0de6db6e41f9739a1b26d1064f56d5cd4238c1e8f659a3f", + "regex": "." + }, + { + "hash": "609d229c6e3f34cd47f41fd11c85b353000eeeab00000ca3566ab7b1a6b16963", + "regex": "." + }, + { + "hash": "5d5114a5e59784e66a0cb059ad308fd077a6825c432718f2990a7a56c20c0614", + "regex": "." + }, + { + "hash": "2bcc96a1311900c94a1d67119f6b65fdc4c61b9bd764f31be8da3351b828c6f0", + "regex": "." + }, + { + "hash": "697b1c47c5bb390f5ffc614432e3546e796117160363d72cd65a05558eb698f5", + "regex": "." + }, + { + "hash": "afb695dcf5003ca97a5d8b194456e7edf14f82774fdc823c151ccf686ebcfa22", + "regex": "." + }, + { + "hash": "8bfb37d879a354274d232af7b460eb9f499aaafa2ec6f994e6e0c90d23adcd1e", + "regex": "." + }, + { + "hash": "99bc20ec9d25d73e519cd5d80b2fa62399e377ef4d67ae6782c1e7c8ea595889", + "regex": "." + }, + { + "hash": "3cd81e1faba15a1d2435eb1f6ccd4342eb7dc90cb090ec12eb5c3756f17926d1", + "regex": "." + }, + { + "hash": "b0d5f2868c9f660f78bf8dbed8c94681e19c699052e0a8c6aaeb6cfab85e8351", + "regex": "." + }, + { + "hash": "0f85b3404b866d5f49548ab194877f7b1cbc4237f1b707deb11b60533fb6486e", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8167077324f5154e7ad55db1f6f072d0d04b9656851192f59fc782f308d026e", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "636af4840030eb945407823de6f2e80e5a99c94bf33c2068d916cd535930d4f1", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "452a358506dbd067004718e72e558ae3a38d4b4970a0556e7332443d9f1796be", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3c8bf1ef4d776495a89cd103e14021d9a636e8ca5d4c95a7feb8e9f7a00b550", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "804afe23021b12febdf59b2b1f82f7d5028e36e51a6b037fa667ead62742ef3d", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bc7d8ddb76b061f3668e9f708886aefc4a5142db23b23cd02abeeda99e26883", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7084a43184677aac19f50453814e760b13d4cfda4b9469f78e8339af97c343ca", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4b2fbf26faa3db8131de77ec8fa2c973c09ee1d255cf68fc6714aaf7d9773ab", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d508f99107cd1b8a122d878a6add9699c8f8f65015e530fa8e43b02fdbb1776f", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10e0826a2a0dbaac501bbf172652d9ee81da44165d7bc90ded67ced649f2bf89", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3e58bbfb2fbe03af8e14314dc08e29229c36beb7a2038acb5dc961fecd418a8", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d45d4a56dac782388773ec7f8a06e5526a10543ba333da86869a0732ad04d11", + "regex": "(?i)^https?\\:\\/\\/facebook\\-pokolorujemy\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e8513723e12ce7c9231edfc025f6fa5d987a2b4f522aa73a7eec47f87a97beb", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ead74db26862a15f0400de77e14154c7b64c9ab96a7024a5938228f20ce80b03", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebeb50ac14f51ddd27110c1e5502313fec56f9526bf2e487841ff8909af47f30", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "448b000e89cd5ef24141387fa41eea5b8cd390c1ca6456df263bcb1de38150ff", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92389dd2174b8469df908bca12239cb02d30004262ccd3e776809b2d72f58e57", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef91972cd339010111559404e89f9e93d2b455ef382a48d6cc3c2edf40792869", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcb65891f1fdc3415c44f1ae45e5b30c14f1f5758c6227d16911c51bfd4caf8e", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8918b258575d4a8b287fb8336b0fabeae6caba9fe11531e5679ab470c3a9d2a6", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9686caf13e8b6cb296a149c29c0612689557b1582c92c6a5499b0bd6194bedde", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bccd0af138c3b55e91942f8cc5267e62823cf0493ca960a1142a10c0f3e5075c", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f269f514d4776643978e6d94a0e869e98882511d8d2d621d1a2f1722889320ac", + "regex": "(?i)^https?\\:\\/\\/kolorujemy\\-facebook\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3ec98e4e7deca0c2089b85fe2b54370f75e014dcc2bdc3b31eb21d8317f11aa", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panenbri2022\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb5402864165ddd4b6c05dcd4afddd518e1355fbd737c956f1c4e0ffdc94b5bd", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panenbri2022\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf5f35273bd3bcb89b8e753453650c34cf9a854bb1b8436c4cb4f9c1510c86fd", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panenbri2022\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d25ab584b840ed558fed0004b4010ab2a2abea950226cdc8ccb1153e2b06356", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panenbri2022\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "debc30b6784cfcf2e5ad570c6b9d100dd2299538283e1b11dd754dd9b0f71d0a", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panenbri2022\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c12d8c37663d44405d05c85ea787f62533d4a8305e89fcb80c0a0f23737784d", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panenbri2022\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94e106b5499213080aa2c87ef9e2a4b1d3dcdc198ea140c1da81bfa818189d10", + "regex": "(?i)^https?\\:\\/\\/gebyar\\-bripoin2022\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "482ac21efcd80cbffa185e4ff6abab1301bd9e344c5b9b208eb6c828afa62706", + "regex": "(?i)^https?\\:\\/\\/gebyar\\-bripoin2022\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29391759d106bf386f020581656b4abf822b1c4cd653a247d09fb1b278ce98cb", + "regex": "(?i)^https?\\:\\/\\/gebyar\\-bripoin2022\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc952e1732e14ad71e6c08ece2a6bdffdf0ab5dba8e93d95eb641dc3191768f3", + "regex": "(?i)^https?\\:\\/\\/gebyar\\-bripoin2022\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6359c8f19fa7eb3e6718e418889168666d9e96c85188308df7f458347538278f", + "regex": "(?i)^https?\\:\\/\\/gebyar\\-bripoin2022\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b84d0d391a94c7e1c84d6fe39452dfa877f2b2a3fa755fec69c780b0791058d0", + "regex": "(?i)^https?\\:\\/\\/gebyar\\-bripoin2022\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0d783e9043a7e5872964e7573abcf0ae1d811ead549300c989274b870cacb6b", + "regex": "(?i)^https?\\:\\/\\/gebyar\\-bripoin2022\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c5206379d9e507901072b408e462b05f212dd1192b1c2ec54697d239f989923", + "regex": "(?i)^https?\\:\\/\\/gebyar\\-bripoin2022\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7db796ad568936950ba0c4e60078be0d48abc15ae9badcccb6f10badd14fc209", + "regex": "." + }, + { + "hash": "6ea9577ce5faa69f38739f563f7edbc1f70a644a60901fd5d7a0ce2252addd4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clone\\-site\\-netflix" + }, + { + "hash": "78496bb1ff1a2f9c97606da48327a5a6fc5003dd76bc89335149fe3b3797b9fd", + "regex": "." + }, + { + "hash": "ea77f694fd8a7e39d3585723bc19374a0b5133d935e4a23e6d41bd8d37c5cf3e", + "regex": "." + }, + { + "hash": "69a24c874b05519cdab6272c66d9f8c2d842130488f0f5d344037588afafaf84", + "regex": "(?i)^https?\\:\\/\\/upholldlogin\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0f13df9a0ecc641639c01b9993fe0ee93d8d4ecb71927368e85388f22f995bc1", + "regex": "(?i)^https?\\:\\/\\/fasrproperties461\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94be2824883c06a64777cc9e23901d43d592295696567fda400f9eb4e1cc0ab8", + "regex": "(?i)^https?\\:\\/\\/geminilugin\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "13ecaa5ce8463550895d5978df3ade6792a83eceac96bdf6cc64154a18fe4fbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\.clone" + }, + { + "hash": "fd74cc80925a2ee1d034a04182576bfa4e88114c1370c1d9908017a3189b6010", + "regex": "." + }, + { + "hash": "f08960c4ebc205661b0367c93a2dab747d8697a34010083fbdc583b978266b5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+microsoftonlinelogin[\\/\\\\]+login\\.htm$" + }, + { + "hash": "17ca2674a27044aa092a096f511d3ce7b95a8ac6603b495fe333b999d9743c43", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73b32f108503b2c876c3a8b0fe8134fd8d4c92311b62de8ba97bbb7f650d2c7f", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d22f6ee5c53d74468feec68e3348415a28426bb051826ba3b47672a0819054d", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6bf3f72114afee626b1ab4ef7e7564587ebd448679797d3698894833109903a", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d436fa8bd3e031c9172704d24bc736a86776d4a7e1d742a89f4037aa1470ea90", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cdac259290962d7526f47fc33382079bcdfd4150bb61c3aad6b65370bdb9384", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c919827fe905ed21d09c42757cfed86b5ee888532811ff76e436222b642f6333", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58b2caf3016f45a420c3428042aac6f29899b5219c380dd95a9b81a054a7037f", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5db13ee5e0b57a684265349781bb8d83167a5908e6402f60ac16a78aa4ccbc4f", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a7a0392ee5567f18c60bca149ad58e990661896cd73d6e565fd5813e6039600", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d9b8255aae95b238ab07ce29c5fc9b44b07f5c4adfeb7b2afc6c856f06a845", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca4af7f922defc23011808e390393e610958cde099eca5a2c89beac67bb89a6", + "regex": "(?i)^https?\\:\\/\\/services\\-recharges\\-transcash\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f79870ce2474b98098397164fc08857252ea17da5188067076539d8eb4372775", + "regex": "(?i)^https?\\:\\/\\/izxit\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ab3ce66fd2734ee8f7ca1833cdb4d205a01dacf64e98b987c0ea88588f69da7", + "regex": "(?i)^https?\\:\\/\\/izxit\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2398930a023a4c02dd265390195228543edce707c668076c79541c8ee6e0764a", + "regex": "(?i)^https?\\:\\/\\/izxit\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4537bc059c45bec46eba7cfb5df08949cf7bb70066a694ab4245a1febfeb75b6", + "regex": "(?i)^https?\\:\\/\\/izxit\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10ea67665b39d53ced67c11467d322d14be95216dee4c59c92e76a1b509edd28", + "regex": "(?i)^https?\\:\\/\\/izxit\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c76ee5d10ba9c7d2387fbdaabb7ec22e121321935dd14bfab882147469387f71", + "regex": "(?i)^https?\\:\\/\\/izxit\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "361e59f90eab0ef2403223694b1ed5c765241e16d8b807e45dd435d10cf306e9", + "regex": "(?i)^https?\\:\\/\\/izxit\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0a3386a8a7ffbe672b5f6c6cb23b929a3b816848e6dc1049dfbc0f781c687c9", + "regex": "(?i)^https?\\:\\/\\/izxit\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b141e1cf8b2f77ff45641d9395985518240ba6acee5e17bd483478d3b68dc6f", + "regex": "(?i)^https?\\:\\/\\/izxit\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a4de1b0701819a2ece68d49eed7960c8e11025a8f85f16030c06953fc31f55c", + "regex": "(?i)^https?\\:\\/\\/zsyad\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4bcb2061d1f94334df4e322f5b43ac17f0af06281de2c230eeb3d42d075a231", + "regex": "(?i)^https?\\:\\/\\/zsyad\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b1af3bcd384f7b71810debd7539cd77a42e2f4411de93f6ec4e152d8801a029", + "regex": "(?i)^https?\\:\\/\\/zsyad\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee32a5bbe02dc3a9deadb9abd65da9053faff8bbb2abda8f744c87cd38b8445", + "regex": "(?i)^https?\\:\\/\\/zsyad\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8efd7e76d28ba7d582f7168110cf63e0258bcdc08c45e10f79142b78dceabc5c", + "regex": "(?i)^https?\\:\\/\\/zsyad\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01e338a03c41958a7869b6294c3fd209c6d0bb0e7caffc094d5ec6e7810b2284", + "regex": "(?i)^https?\\:\\/\\/zsyad\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46d9e3b00497880ed83a7031c61577f2b5c1116d7f3cc6033002051f87f0a267", + "regex": "(?i)^https?\\:\\/\\/zsyad\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb56bfd9f19bf4d628a555b4f3f3095f036e346fd908a391c3c0632d13d5eb88", + "regex": "(?i)^https?\\:\\/\\/zsyad\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf897121f3852bce059081932550a4a62557c205548e4a34af6f414d990d7c7d", + "regex": "(?i)^https?\\:\\/\\/zsyad\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4d9a93a1e8438ef3ca7d588484002db5ce36c71d28ae292df9d415e5d1fe01d", + "regex": "(?i)^https?\\:\\/\\/bitsau\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ceeb266684309ea4b4e5abccf54621cf9acf509c3fba26907253716b9fad3f5d", + "regex": "(?i)^https?\\:\\/\\/bitsau\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7e8b11d36ba1e8ac096217a44e620ce9823625864e639c52652348da3fc814b", + "regex": "(?i)^https?\\:\\/\\/bitsau\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4bac5d6c13d9f9f4d63e2616068fb6b71e8e925a063ce4ec30895e74c34d6a6", + "regex": "(?i)^https?\\:\\/\\/bitsau\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "970c10b5975f2ecaea734eb46e3d14b214a2c56c12b92d75de2fe94cdc6738f6", + "regex": "(?i)^https?\\:\\/\\/bitsau\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee153d08e9d0fc613250b27b6b918583e2d52f5938e1f0501b23028b93d4783", + "regex": "(?i)^https?\\:\\/\\/bitsau\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dac3779676dfd90bd8f35d1c5625249312cb7d0ed5532ee2fb6cf93ba55b775", + "regex": "(?i)^https?\\:\\/\\/bitsau\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1943ffdc076f8fc7aebdf3dc013f09aba12874ab87c24f26f1c4d8b4a93f7a6e", + "regex": "(?i)^https?\\:\\/\\/bitsau\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b2f5b307bf49a21d3d5e6f09092792b23a4d8fd480be441554bfd3f20cf99ff", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca14107fc7965902a252f09828ccaa01ba0940d0f9b7719456d45329588adb1", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6faba102c01fc437b7a6806f71aa66e6398c1e0cbfee7cdd5b057be60a71fd6", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf174c0d726fb848835ba2efce86280f1c01baf74a236de0c438b481f48a3bf", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0d3cc340229c0c0fcfc15e0e4d59c1fe731c8307c6b3b7e7bb797156ff55a9c", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a368f35b8e6d1c3714e1c737ddaf79b5f2e3a7f79397ed2871997ea0034e9f7", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac82dad98c663009450d88374a6e67783cd1dc556a6222b79c726fa43ed28fb0", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "403eb90c44dd4e8de4d072fbf924ef29796cdcb32b2a63ce115e56b8158e95cc", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7427d4973ad6b2bb4f729bd8f92795d618f2a561c965b2bb38ce0d0eb9e41801", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4215aa462629dd99eec887322f22fdc890e879e9defd0ca11b4f8d444d9c7ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\.html" + }, + { + "hash": "805c82f6954aa4218a03eff588bf2003ca32b8039854e80c133e484c17dbeef8", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "489709a3cbbe1da68329c792661ce042eaaa66de6ccc29edbb45873522201477", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8d6596a62b79795467d1bd05e431e92207de5f4ad706d1ddb68d3bbccee8dd9", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83a46f28a30861ce5bb2bbd9aef1c06273d72fbf476f872f49197bc3159379ac", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fee14402f5bff2fa662dcbb69c986ff0ae550753516733e31d3350f4949bcb72", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37df9f748491523a68bf403e0447143a271c89e579ead309d788eb904ef04be9", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c7140567c519f49c622d9b69203a9d71dc52b854d680eff3833ad3c795cd47d", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55b0a40e198c99716faa41707168944562e331dded53d96cb1be3f82c2acfd93", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a670d399cb4edab8d5ac918841fd778d33921cd142251f1962dc122067dea87", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f4e37fbc55a0c3bdc004912106050116dc2c10d79a96e18e627ff7f0f13e5f2", + "regex": "(?i)^https?\\:\\/\\/ppeihhei84\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a36a1faeb79dc204501834364f09cd634edbef114659fc6532550904a37d5115", + "regex": "(?i)^https?\\:\\/\\/amanduhhs\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6cb8e02f455d5cbd3b8a93c4b3c6fa0a19040e57640540d24e040791b45054a", + "regex": "(?i)^https?\\:\\/\\/acire\\-ayrika\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b7a456860d5379fad377f30d4532d77f791f3eb065d9c5af4e1eca069d1da4b", + "regex": "(?i)^https?\\:\\/\\/acire\\-ayrika\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7917a2a9402d7d8306141b69974e42463d2d56dd3a0b75869580205ed638b6a", + "regex": "(?i)^https?\\:\\/\\/acumagictiens\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c26d4d5e97c3cfa381b18cf57434ba5391154365f9b8b555f1a8964f71264714", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86f23a5095d5a8876760f986877d54166ccb725cfd6faf3eab672afe7a0b99c6", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "341c31d2394372ed8133f9682787d85e42bb21a7a49265019f5d45bdfbcec5f5", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b5fc9a723e2be1ebde5509dea9e6bfd7b61cea03763dbd83cc559aadeeadf5", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53232d627157acca1c72dff642172ebd0c652245c09826a59fc790c309f65a71", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d38dc9dfac6b1cb521c31861c7acb015ea53d4bbd8c1f31ff9a5fe24751f917", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d56e44932327c0f03280403a4539622c7da16c84be284d46527df058de2af4bc", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a53262faa7b6668b3decb9aa34a04dee6f0c4a8e0c22219cf2fb4d6aebea337", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3639361efe7ac20a6d6dba407a072b2b907e4019439e08b5e1150bfe32322e01", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95b57c4ce2a870c8541eaf7f9a63cb2134a679cdc442b9033f1cb60e95f7ade9", + "regex": "(?i)^https?\\:\\/\\/ardasili\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "680eece5fca9680af0bade800bfb0bf75207dd9f64841a170ac7ad06cc295f71", + "regex": "(?i)^https?\\:\\/\\/joycco\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86b93cd70f625815b61cb06732424421cf84becc365b30b0dbf900086791a43b", + "regex": "(?i)^https?\\:\\/\\/joycco\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cac0907cec1ef8c4d6a76bd19c6c6658a4f2a3d28ea1e702c308d33abd8dd9c", + "regex": "(?i)^https?\\:\\/\\/joycco\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf5d034df634c3592ae04a37bb339eb30655f868e464612bce27792fe78fe57e", + "regex": "(?i)^https?\\:\\/\\/joycco\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44526c653873ad1a82568e59a281290f1ff6e1ab460591f13930f3b6c2857a13", + "regex": "(?i)^https?\\:\\/\\/joycco\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7409a33c47b29c00be8adddc9a728a8469854945d0a57a44641d5ae60dfe437e", + "regex": "(?i)^https?\\:\\/\\/joycco\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a460725e4d3f750bf5e2a830551edf83faf6955fdcec2e5237a7c5a38f7e583", + "regex": "(?i)^https?\\:\\/\\/migeeelo\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a94137923cdbb86b3d45631dcfabd66a0b9743e2adaea3296146bd484cb2b79", + "regex": "(?i)^https?\\:\\/\\/migeeelo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13311eb55dad0c9e18c8e628da471c9802ceba88462f850fecab9a816264c578", + "regex": "(?i)^https?\\:\\/\\/migeeelo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c3146b816a4a7979603337d86d87f082152ad11612634a26ef0dd946c336a14", + "regex": "(?i)^https?\\:\\/\\/migeeelo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09c3e1efcddd617637a1dc89a65e9b4a0480f115547e9f17ee8217ce7ce1ea3f", + "regex": "(?i)^https?\\:\\/\\/migeeelo\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b1edfb217f689b6941c1bd7982f631811f823cb2531f0457874ec7b6f366f73", + "regex": "(?i)^https?\\:\\/\\/migeeelo\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29965876f43a5ec1fceacf2daf7e794c5673d17b297b788da68ec87527da4f97", + "regex": "(?i)^https?\\:\\/\\/migeeelo\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99af74763176f1cedd1e7887c22b8f2c20bd9f78ae187ed512d9f93f5d3e83d4", + "regex": "(?i)^https?\\:\\/\\/migeeelo\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5259533adfb8b02356b0696e95766086f6eae62ba88999fd69ed07120ffa9500", + "regex": "(?i)^https?\\:\\/\\/hindi\\-film\\-bollywood\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d2a6205794b8f0a04a28b2270a316b327d8b90073c09b8213ea92c42e8ae99", + "regex": "(?i)^https?\\:\\/\\/hindi\\-film\\-bollywood\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29b390bc0b7be4b10fe7b00d4ff67200f89a3056a309daf7d10b63f1a1479f51", + "regex": "(?i)^https?\\:\\/\\/levitrashelflifertw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5d697a85dabda3d062bc89b9828dcaf49c78efcfff6e7162672db43886161e", + "regex": "(?i)^https?\\:\\/\\/levitrashelflifertw\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "641f640988b1db2585a2d2b4a5aa33c47c3df86c1ed0fbc04e7e66d306353431", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2df48e066cafc67128f36a93ea58fb35e4a6ac0596f0f6c346d17ccd84b669be", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32df328e763a56b5b7bfadee010d70e44e8e0a018e85316263e8772fa6b7b003", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af2f6b17a259c6781e81c0a390dee69e6d35e52f62e108cec2c5e48ff690b659", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eea5af83066a17d09ff7f414c819bbaecee3e5ac50e3a16a102d2551d1f6fe70", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d43b9d5924310fc70867c9a4a6c83e7ab820c057ba3cca32b51e0e3abc6e511", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fb39c885b2c54cc08d36f6ccc435891b8e7fec23ddb8f7cecbf6ec7b96b21ea", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4412ee639c0c7eef25262c91142b0537e6f004233e1627ccfe7b7c3e740e27aa", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "592163f36832c9765cb1eb39ea3d56d85f5321c602658d4666a07ef246d4a1fa", + "regex": "(?i)^https?\\:\\/\\/gid4life\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06654484a2a23158f2742b2c97bde64d981a143d49a656329f7386cb1884922d", + "regex": "(?i)^https?\\:\\/\\/gid4life\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ba0cd4ecc9238e57044c992ed454b5d50df1f58da8b04fa9cb2ab21e6e21c27", + "regex": "(?i)^https?\\:\\/\\/gid4life\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7248166167a1eaf196184eb6ad2b3f3659035b341390ad875b7e467a4da80baf", + "regex": "(?i)^https?\\:\\/\\/gid4life\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4da0a3fefee1404f2071f5dbd2bc0adde67ca6a4f7ca93001618b2bc47e22b0e", + "regex": "(?i)^https?\\:\\/\\/gid4life\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8115631c3b0fe07ed03321d712f45c729b6a50c19b74015f6db27d15dd92a874", + "regex": "(?i)^https?\\:\\/\\/gid4life\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7e32a9e0365279ee8f3b800fc823a78142e15cd132883c9635a65542f1e0042", + "regex": "(?i)^https?\\:\\/\\/lovesyalun\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3cdfb97b23b50d085890a802c387d26205c90e4f98fa6713972b42dce0b425b", + "regex": "(?i)^https?\\:\\/\\/lovesyalun\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfe721939183250de810dbcf23bbcfc92c4a77bcda4e9d457a24582ebf57e9e5", + "regex": "(?i)^https?\\:\\/\\/lovesyalun\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5234951661ba3b672cbe84ff9b6b150a9d272fecfef2f66e53b626e9433ceca0", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc23bceb2a3cf5a40e586b5d453d97363d0e7aeb750bf33b0f50e92c90455286", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d6ce7d399850d7688fcb04bffae20f092d93cc1630f1f023411429a27be3bf7", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c920c074e5a0a9a0c2d6cf0a3a246e1d3323558a455bd0f27876625146bd3b", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1ad6cef40119268069183c121deaaa7c749fd0950190018cae9d710f410d0c8", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62a73c09e05398882ebaf5338f41968896e82bab2a8ecb9a5f729052c88760e8", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c930647d2bc8211ffc78a9c48e4fea4f6b7e4b8ee914a97e3f7aa2d930be41b4", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13be6df601299ba04b116df2f65ddf5fe3a249b3a09dd70934342501c07250e0", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0945fc29e76cf455497ccff6fad1d80fd113f3e9aacd4537efe3cbe8f421bea8", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef6dcabe0e948c94c598a1e109f07baed509abefcaf759e657fb50ef784bbc19", + "regex": "(?i)^https?\\:\\/\\/summerlearning23\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbc9071587821d7f7012166c9972bfea158c32b6097cb7bf0f3691015e2b2134", + "regex": "(?i)^https?\\:\\/\\/deenah\\-shawtyy\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8995287ef6d1f0cbd148a50f1b74e75a9d6d50a533e5ad5aa8035a14e3461b3d", + "regex": "(?i)^https?\\:\\/\\/deenah\\-shawtyy\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a794d3ab134ccf4563479dea33c2144daf67a6fcd6d10e4c2d411b3eb0a8ddbf", + "regex": "(?i)^https?\\:\\/\\/deenah\\-shawtyy\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fd5f24d5f50344ca26963f5f860293a0932813bc9b131f97d173882d94a98d4", + "regex": "(?i)^https?\\:\\/\\/deenah\\-shawtyy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d4d10120128954ee704dc29bed96350c43960e1de04909906e5a8f127b1fd26", + "regex": "(?i)^https?\\:\\/\\/deenah\\-shawtyy\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe91117deab26a380f59f95800c2983e964a91b837e25a9dcb7000348cdfebb0", + "regex": "(?i)^https?\\:\\/\\/deenah\\-shawtyy\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "175172ba951347b9dece8b2da60458e4c214f16ab2795bdd88227ef5f491c85c", + "regex": "(?i)^https?\\:\\/\\/deenah\\-shawtyy\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6414af606fd70d0ec0f25542ef1f6863f15acd4f67fd4b6858684286b145cfe2", + "regex": "(?i)^https?\\:\\/\\/deenah\\-shawtyy\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd33ed43295e963131f9b0afdd9671279ca7b891d220fe2ab292b4b6a0df2b5c", + "regex": "(?i)^https?\\:\\/\\/aciphexphenterminepharmacywyzh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d38cb120051ffb51be40680afc9fa43e6f1b32054fd2d1946a5472bd76acdf", + "regex": "(?i)^https?\\:\\/\\/aciphexphenterminepharmacywyzh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d67d168bf3cf31330590e8ca85ebc260413d18407d55f897681368d376da6d32", + "regex": "(?i)^https?\\:\\/\\/aciphexphenterminepharmacywyzh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e19698589e2541f35bf36c641a437710e70c93d95f8d5b2fbcd80a0557883e8", + "regex": "(?i)^https?\\:\\/\\/aciphexphenterminepharmacywyzh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d64faed30ec197c624457855416a52eaddf3c368b1c3d4a34a41224649aae80a", + "regex": "(?i)^https?\\:\\/\\/aciphexphenterminepharmacywyzh\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc238511ec12e859bde3c778922467e18e4ccae2b9c01f0381d8599f5c16306a", + "regex": "(?i)^https?\\:\\/\\/aciphexphenterminepharmacywyzh\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bf824b99019151778a5d9023896c4436bb6a6ce07a71cc9bd440adcd27f9551", + "regex": "(?i)^https?\\:\\/\\/aciphexphenterminepharmacywyzh\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aed535b1c2795eb985135a37dff536b4d5cbbdea6e9a47c0834653f773315487", + "regex": "(?i)^https?\\:\\/\\/aciphexphenterminepharmacywyzh\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edab76c23eb7307f2c74ec324b3b107463cb31383e7f003d9f47ef06507b4cb0", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f0e173a478d2169dd362e138222d45f06680afc53248bd84f9b7f35064edd94", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "077c075d2870dee80ea7d7fb389e10da2e5860d574ea134317b40e8e71cfa4f1", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "812d5c5e76599e559014f857f741c4cfb91dbd537a569a2baa4061e0094798b4", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be26a630b1b8fd5c5174a35b285176d9fbf4c8d511fed499289d51b54af47b90", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e8ecd622c83bf9970c360c4554d5beffd588676da3a1a2492d4588fa6137b7a", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad6a9aa7f258d9141046e01fc5af2ae77748dab1a7ea0edc62c7ddc387b5a3d0", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28557524200f73fd8a56192f6ffa78bbdc880b1db1cbb6956fbd6fd14dd6c5fb", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c06475ce173b7bddeb701e5a9e4200d72221aa25ba4c298456a523098373565", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0f57d43bb1726115a23432f8381396181933c67bbcabe7afe508c70a4025f8", + "regex": "(?i)^https?\\:\\/\\/rocktwpya\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07726336f8bcc084e83fb88c5e02b2df6652228e065b957136619cfbf899369d", + "regex": "(?i)^https?\\:\\/\\/onefours\\-twozero10\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccebca3af58ea981634e84133edf2bacef311c7cca2c81a9ffb97c8beb9215f3", + "regex": "(?i)^https?\\:\\/\\/onefours\\-twozero10\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77d9c62cacdb49139ba6625c0c63297833bf306c79657cd84ce9e9d05661a4a1", + "regex": "(?i)^https?\\:\\/\\/onefours\\-twozero10\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21ad2b97c3dee117ec4e40661bc9e763921346eb2e6617e52abadfd948877c04", + "regex": "(?i)^https?\\:\\/\\/onefours\\-twozero10\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d8844ec7f47a0e8ed225e26cff1b9933ad1517f17d6e12e337a38911d9ff44f", + "regex": "(?i)^https?\\:\\/\\/onefours\\-twozero10\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfdfca9df876b4f904294c3f3713cf5eca035b1d90a8907645d2c4823c72183e", + "regex": "(?i)^https?\\:\\/\\/onefours\\-twozero10\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ca26e2e8e5330efca47d7ba615dac3c9c77e2ec784b76acc6cfffc5167e3a46", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2dd826609e45ee5b6e865e33e27db039ceb4072395aef977be507e184cacf1b", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e46e2cd23904ded04eda706d84862fcaec4cc930a2adf9bcb739b1a5989a7a5c", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "351249ad9cb9ae12679aa3c85c656c2630b611ee08735d47531b35f834070140", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d02eff17d2fe2e096bea7b7119630098ddbe28af6e8dfd51e3791ab001790139", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6d72823878410372e52dbf051c5bdf0cf2f4f60894af8416ada309e2c124735", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4596fd9ed98f9637c8a2bfa37e613a1efdae2306ef78fd9f084fc82c223feb40", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f58b754f01a63caa2af1c4130646ff9e699cefb6bd2b4abaa1522fd35535c2f", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "723fad964536a8f02436c3cb7e1a3f5d0045832a83e108abb5d2c6aa84f83991", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "298bf761172e43ec6b86503288ab39012c5b042dde9f890cb3135fedce71c9c1", + "regex": "(?i)^https?\\:\\/\\/amicar\\-desc\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a14471a011678f6b9f13db14986a0c6a70a12632abf306b3466a6fe9334fe7c1", + "regex": "(?i)^https?\\:\\/\\/twgyasfricst\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82b4072ff5a6befff01fc7c8cd42aa5960a20f30980a97468a2f01eaf5c102d9", + "regex": "(?i)^https?\\:\\/\\/twgyasfricst\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea2081605e16dbed62982f85de54d2f744aab5e1bb52a3761237154210088b4f", + "regex": "(?i)^https?\\:\\/\\/twgyasfricst\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cc983e86179f34b3f492a2745b7b4c3a0c3d57ef2cde6c864b08ab80577de92", + "regex": "(?i)^https?\\:\\/\\/twgyasfricst\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84b6f41a996d1a69112c11e16e25d7816721312f5695c690d5a7b2c2f0bea894", + "regex": "(?i)^https?\\:\\/\\/twgyasfricst\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c48ff87485407a9a393a2eadec20b54a1758bb6eadcd1a73d39776c76f186b6", + "regex": "(?i)^https?\\:\\/\\/twgyasfricst\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac0043c98b8152c29f5413e7cf10dbed2d0935c260ef385a32825cbb03d01bec", + "regex": "(?i)^https?\\:\\/\\/twgyasfricst\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c23cb913c474e661c22070258f4ad3800043814f682992500a5cc35c602a9c84", + "regex": "(?i)^https?\\:\\/\\/twgyasfricst\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b14d8d2d51e8b86d386cf11b9a522f613fa00712a56d693ee114f816c253e256", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d568910a04a7061fcb97ee6433076b1a1ef04c07e71dcae76b48e6f0471538a", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27c64db92cc309df758acfc3e085624998f238f9bd89831a14f2092af0c10ebc", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c450ba919088ef7c0b7da4c44d5fd29055e12209d95a4ccb55a8231417735f2", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f71cbe98ef19a5fbd414510e7ee177f7b8da8d8c950b36c178f64e064d9d0540", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cb94657e1150ad023be20fc9e353bb52e22482ace8c7dfce239ccafc5eb4c70", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bdd231a24440c6feab0a9568847d9118fa14786469def3c82a84060045f1553", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88339548e9db50203b2778a9b0b65ccc5000dd42c694671cec5cde54dba2ff99", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd498569867a315539dfd982256219a74a3b9c12b0af57af42907e0e161d2f9e", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efbb27a8d877d45399cff37427e9df05b6c36e16be7473fe56ca4d2b33dc630b", + "regex": "(?i)^https?\\:\\/\\/semiciertas\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d19a067123bc37437c1d414a506c5bfbf15145ab572354cbe498048c98115e8", + "regex": "(?i)^https?\\:\\/\\/beautifulstarrystarrynite\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "054c73b2c81bd5735165d1ba890749fb9864cf365ab9f419564c03da50031ea2", + "regex": "(?i)^https?\\:\\/\\/beautifulstarrystarrynite\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17c5a9231b9364bf5d21539a6129c45f8b202536bf65fcfb699424cf9c4eeef5", + "regex": "(?i)^https?\\:\\/\\/beautifulstarrystarrynite\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c00038261700c7fe748543bff8fdbb2d940794f64f35628ab9659df4277ae6e", + "regex": "(?i)^https?\\:\\/\\/beautifulstarrystarrynite\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b4b3a7112d78a85c20cdb7f3c80d7be684205c615eda8594be8f612b960e71d", + "regex": "(?i)^https?\\:\\/\\/beautifulstarrystarrynite\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab49115311caba056af9fe160d47edd8f4df9c372c61b86277b08a418028b59c", + "regex": "(?i)^https?\\:\\/\\/beautifulstarrystarrynite\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21161334f85d1ef18b9f71681c8a8a23938f4ac9e01c5d7dc57667b7b515e5be", + "regex": "(?i)^https?\\:\\/\\/beautifulstarrystarrynite\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ef91f7e90b1d2c46705d4c181256a0e1ce8521aee92c0a7e8bf3075eb1d1453", + "regex": "(?i)^https?\\:\\/\\/beautifulstarrystarrynite\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ae883e85bfb828f3b5c2412e4e7af20e598cc116dfc09acdffdfea937e84bc2", + "regex": "(?i)^https?\\:\\/\\/ff\\-ibuxca\\-hu\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3998f2b6ddd7479c7b036e9e16c83e7a4fd6de65cec67f6a0d7b50d2dbc42c6e", + "regex": "(?i)^https?\\:\\/\\/ff\\-ibuxca\\-hu\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d7d2fa140099055ffc138ae7688d9e88986f1559d77f0d24f81e1295d1ab9d4", + "regex": "(?i)^https?\\:\\/\\/ff\\-ibuxca\\-hu\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f90e5e32a63aa00cb3c0c47bcb108156691f91f93c8bcb5b11296cac3e579f50", + "regex": "(?i)^https?\\:\\/\\/ff\\-ibuxca\\-hu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b327f7bdd2d0cadc135e659a12e252db8110776d613e45fa46a710092b97a01", + "regex": "(?i)^https?\\:\\/\\/ff\\-ibuxca\\-hu\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80ba20e71b40ee2a1b21d2ba659790c6afc4579dda3bdc4933bcb810e94b54f2", + "regex": "(?i)^https?\\:\\/\\/ff\\-ibuxca\\-hu\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10e4f1754222a1f55a1ca1521b42c3e746fb459c4ff51b771ac39b682341718d", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8390462f24a2ee494d8a5b729723e27fcb2382738725b8c7d864d51d087a8d1", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e2af683cc140e6f8aabc2de98649176d61fb8818161ec447e6481e578ef4c63", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aee6ed1de2d3135e1e0591b9930fc4f6407faa7f72e418ac4cd9f301c941e5e2", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab1120c154c852e2f04e221da6a925d4fb702a4c337f0eacbd928dc2f0ea1d4", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd66bf407163a273b4f17f2b6919bc61a0d4131d3c9495ac9cb96d8692771bae", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea150b47d4bafdf7d798452e4977c9da55fc3a70543ea8c20ccb74755e3e9833", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef8827c303256e49078269fa68b16dbf78033bf3280537b8a470439f078a5f60", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df8fb993e5f8f31776d3e2e73a6926c1739f6911f5d3f9617c65ccdf1ad41c4a", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c14e711ce2ae877b271d66e17274a878111eb3232c69e93d1ee5ee06a70dc2d5", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55042c74672abb4245801e6eb2ac28631d9f4fb5ae1d4500aa6beb5f26554ac9", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57bfa2cd072ee03d486a5a73d50d315a5b59a31e2291c81d0a55cc58ec07e688", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7a2807c8c0c383bc10190de2a0034558945c609cd6d041fca7e2ff54a2a8115", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e978cd70938b4b556fb2b8798114be2868f09806bb2170a4a83389aa7e8a5350", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "405282f0d90f236ba70b6c70e0dcdf8e36c5133f59199da4ee05d7f5fe377127", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89c088d6e1356c8eeade1b1192f7039250c97f8f05c189e0b0ffa4bd0e041bb0", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82d73b528ed42fe49cd93659706ac5092477bb1d455a2bb3fe474a75e81758ea", + "regex": "(?i)^https?\\:\\/\\/southpawpunchcomments\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74ed54c4059ae53d26af973b373b48f5037981c2448e465fbcbc049bb695a336", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20a893176ab53455db0b14bd624b1109d71e3d1d3d1c6defd91ba4be3208b584", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f897703fde2cb0c1ae0dd9896b0deeeaec935b2d60727fea7e81fa6803d6f1c7", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6a36fcc0b458a176e5ea5a0507d6bf7f5bfb572d3352cd8ee78d342faceb0ed", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "441392dc5605b196a06e20eed31eb6342771e5e9bbd269d116046a96962ae8c5", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd2953fa92f117ab7f7087769497a27c3e860440a5e0aea05057f3fdb6ba6fc5", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0292b79abc9b8bf0b0c99fda6fe06618359a55c47c0fb93a9b6c1fcf5a5f2fa8", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b2bb9479b0acf51e9d95ff41612ddc090189fe03f40d1f472eac5f1c08c13bd", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a2218ddcbf9f6ebb208ceea0e698f22b556a8bc150b10b686a36075de7b2b60", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f61f1cb8ac0450f0dd4b398772b4b200f1fe8441f898f280cb670e2f296330a", + "regex": "(?i)^https?\\:\\/\\/diehardlah\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0061926be13bbb2f14cece5cb94e071e163c80bb7fdcefb01373c904567d811", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf6b188835bb68fef04f1a7482a43b8d31e55b8849f02d5f5b52af0fcef5fc92", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dd2451e04cb46ef5dde36b9116b0615dc1ccdef0e58071a600e6c2ba50e0447", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc4a3fc419549407810add88669d2d60e394b992c49d7ad2f4e28dbe9161d2b6", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e9c079e1071ebad4c418723e67dab69f64b6c619d334234595076ecb755e622", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bf183f1648bbd56e61c67d1734b242c5e9bc66a240841a3cd904d59a41caa83", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02ed2830b762101b1724d088517b40984b00ecda53c9925efe93b60fbf92c7d4", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8058107fef85e3e4b98d560ad82bc8d934b34317cc7dc065d247395a1309c414", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c989f7809a2e1c12664e7024f6026dc562ff30d4385bc4a433f117bc7b367eef", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93a97061f68eeca22d0a529d00f98744f8b826da42f26e1e4c727eae2dc12c90", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f20523a5dbdd686913967d453347d1653af115f3350d3f01c9c1cef54e0ffd63", + "regex": "(?i)^https?\\:\\/\\/punkkish\\-life\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4147aa8afb60597562d8271a3d4c42d9da2a44bcd17f77b18591a401614a8f8", + "regex": "(?i)^https?\\:\\/\\/naughty\\-ones\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0890f91b01a7ffccf5ea9fc15e8463400c16c2f73bd452d2d3a2eec48bc20665", + "regex": "(?i)^https?\\:\\/\\/naughty\\-ones\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b585bb2f625b7951f4d0f4dd2b7f92fc0410198189894bea1ee7086b5a8fd4d6", + "regex": "(?i)^https?\\:\\/\\/naughty\\-ones\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9c64cd69a59d8af4ec5f1a1b23c842232d7bd333348ffab4eece1f357e93191", + "regex": "(?i)^https?\\:\\/\\/naughty\\-ones\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b242dcae7f85cd74f61c4ad4d9d3726a4b207e90b8894f6b75fe957175171a3f", + "regex": "(?i)^https?\\:\\/\\/naughty\\-ones\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9742de84f2dc33184d21c958b8043d66e2d62cea4b5212df5f4eed9dda06d108", + "regex": "(?i)^https?\\:\\/\\/naughty\\-ones\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eb0665c17170a07c7bdaa3ff7a75a2493028d4ddefd753a11f7ecb90e7d45b3", + "regex": "(?i)^https?\\:\\/\\/naughty\\-ones\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45370e9532372380e2a717aa6ff163ef8ecc4f5aac4ca11be468f746b79c31a3", + "regex": "(?i)^https?\\:\\/\\/naughty\\-ones\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d36b608988cfb7dceb3112d3eca7c53631b2cbcf9438404b484480911358d7b2", + "regex": "(?i)^https?\\:\\/\\/adingunso\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "794c1cdd006ccdaeb9b52fe923424b52ddb8b586893079e9a1af38c92d4ec680", + "regex": "(?i)^https?\\:\\/\\/adingunso\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbae3058a72701a2dd01e9acb0e9cf4f95df3fc63a41937686184950759589d3", + "regex": "(?i)^https?\\:\\/\\/adingunso\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09f7b4db0f6b074ca39131419051296c0e5eb0a391e6042a7f504aafe846dd14", + "regex": "(?i)^https?\\:\\/\\/adingunso\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66bc12d7f2597ee96780e72da0c67f1152a27b453c8789f1833b3f5e2a5a551e", + "regex": "(?i)^https?\\:\\/\\/adingunso\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6575dcd181cd609bf68565a27924d22ff4a0e527641651682803c45d397cec0c", + "regex": "(?i)^https?\\:\\/\\/adingunso\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7079ad2e28a961fae59f97dd680095e3d81b7576d473630a334b6861e792f33e", + "regex": "(?i)^https?\\:\\/\\/adingunso\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "804c61e9a449a17a418394b865300d0a89f03fea2f3b4b4015c36ebc43605499", + "regex": "(?i)^https?\\:\\/\\/adingunso\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28150ffa88bc7ae985c4b31f75fa3161868d4300d1ef9340804a902795ea31a7", + "regex": "(?i)^https?\\:\\/\\/adingunso\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca2bad82377dc033fb41c21f6134ef6dba303b9545fe76834a0159f5c7c6646c", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "047c513afb0ad789c38da2fd4254b89a0d7c0704c96ac8a180e69e27083e365c", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa037fbf65026b3e3618567d7e7037ce024928de80298898b745e7c02e0683f4", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3adfc0ca48e9a6a8cbec55905b99a69cdc067b25c84d9e30de73e1be02a79112", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c389e6fae086367209ff42210f786c2526ec8316657ca8d3abaa88eb71a4f1e", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ed0d3fc66bdad3d73484d68a7f2fb8aaddae5abdacfc212802942416e10a118", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "595d215f7e2968fa7ab79881655486ac6caaeab0e206c0330d1750ad1f5824bb", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d7eb76e99ef2554582e6279d2754fdccad4437ea61e4c6c47f3ca21119cdc98", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae7c7897eac23bf7c8544092748f35cffcd037292a50f71af3fed6404d330a0b", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ad46ab9f517d5288970ad33ab7cbbe60050e9c742ac555e2eb781f54e2206cc", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "049cfd3b688ed33848ebeaa46132800de43bf3a87e637beb31f9ad12d51d25e0", + "regex": "(?i)^https?\\:\\/\\/bvlrnhnkdvouf476\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe7bf18a29d1a9a54a7c20f0c4657ea820f4f5a7627d3f39fad4aa6990f1e03", + "regex": "(?i)^https?\\:\\/\\/comojogarserverprivadodebokunorobloxg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76167e015bcad718e6f6ed03fdcdb0431a31f3bd569e54d9e1086c4d58c84c67", + "regex": "(?i)^https?\\:\\/\\/comojogarserverprivadodebokunorobloxg\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f04bb9a1bc2780514cac32980a4fe97c4c66241e341bdce22dc8f2af6e66ac74", + "regex": "." + }, + { + "hash": "f7b44d212523c06004f2d60c9c39f885f999b75e816d7c1a6911e4e93e3f2ccf", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75ca4b32145b59a1343865ebff4bcd8ac8cb0935322880ce2964f8413f993a53", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67e11a7821f8fe0a53a2dad824576a1e90f393dac52c2a0478257929e67f539d", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8848f50d6274d5114d5e0b9b7408f8c1ad5e5d0374928e38e16945497f9107d", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b4c2ea50bc3b4a2b94cc33ad9d28ad4c597962b09e2c5daa145d33fbdcdbc6e", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e89c692d59f114b7d40093f943274c17a446d2148c5f0b8f0374ef83f51de7e3", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a36f637b1acda4260ccc4d6a6fa2c045fd90b540e0adcadf9e04b88f028eff7", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d476a947d9120d5b0014bfc35e60424b6b2df07e2b079f26038f7f794732d21c", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6e54cb9b3504ae764a3eaa5ef097ba25ff2fe3d4c9811fbc8dcf71230573a10", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a7e7e02ccbd334117a03b8e9aeffc565d7ffaae866c5384f6a55e9e12112ce", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39bfe743c2469cbd8c0eda4ca5e6f7eb81fd580b677b13a1491383fe6fb9ec43", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581b2c1bafb450a9a790400b79278310c7551e011ff45a653981b5042c079cc0", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2005b21216d550236618c6f1a0e7f5ebd39990b1a7464c81cd0b2c90eefa6d7", + "regex": "(?i)^https?\\:\\/\\/www\\-coinsbit\\-bloguer\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a2406bd390b1593a31f47027a7ee573333cbac122520c57bcdadd27a05e9375", + "regex": "(?i)^https?\\:\\/\\/robloxdecalhttpsgyazocoma137977abb621\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a65db20d0c20b76889fed5f595034e8cff1e5fbaac113b9e9014f1991fa409", + "regex": "(?i)^https?\\:\\/\\/robloxdecalhttpsgyazocoma137977abb621\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb5e845c94cee27ce859a97403eeb90f0b2fb4a9924dfbfcb0d012b5ea1769cf", + "regex": "(?i)^https?\\:\\/\\/robloxdecalhttpsgyazocoma137977abb621\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d43ebfc5dcabe09a8a18c8a8f5ea7afc8ce7a94f61f314081fa5ba9ca2eb6bcd", + "regex": "(?i)^https?\\:\\/\\/robloxdecalhttpsgyazocoma137977abb621\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+NB6uePLLIBGI4xRcPKQrfP4TQLdEFxeqGpRP5G3UYpYx[\\/\\\\]+kEbmi2BxoJYNWF7OqBslKw9gbdgWd9K9ojcY758Zai0x\\?targetUrl\\=https\\:[\\/\\\\]+beeflambnz\\.com[\\/\\\\]+privacy\\-policy$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+NB6uePLLIBGI4xRcPKQrfP4TQLdEFxeqGpRP5G3UYpYx[\\/\\\\]+kEbmi2BxoJYNWF7OqBslKw9gbdgWd9K9ojcY758Zai0x$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+NB6uePLLIBGI4xRcPKQrfP4TQLdEFxeqGpRP5G3UYpYx[\\/\\\\]+2rWfD9wsOKxAoL7uemywqjxcQLGBRepgTFgUixtFfFAx\\?targetUrl\\=https\\:[\\/\\\\]+beeflambnz\\.com[\\/\\\\]+privacy\\-policy$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+NB6uePLLIBGI4xRcPKQrfP4TQLdEFxeqGpRP5G3UYpYx[\\/\\\\]+S5SKUHBMA1qLtkt2xabRoeIoWQKpbGm5GZbQr08Y5Hkx\\?targetUrl\\=https\\%3A\\%2F\\%2Fbeeflambnz\\.com\\%2Fprivacy\\-policy$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+NB6uePLLIBGI4xRcPKQrfP4TQLdEFxeqGpRP5G3UYpYx[\\/\\\\]+S5SKUHBMA1qLtkt2xabRoeIoWQKpbGm5GZbQr08Y5Hkx$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+NB6uePLLIBGI4xRcPKQrfP4TQLdEFxeqGpRP5G3UYpYx[\\/\\\\]+2rWfD9wsOKxAoL7uemywqjxcQLGBRepgTFgUixtFfFAx$" + }, + { + "hash": "9a470428c7ee115d8c33949a931c8f36e5ec3836eeb792ece8418afd464d8d70", + "regex": "(?i)^https?\\:\\/\\/coinbaseprologin2\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "279fa1570714c717a7488965f3d1e084b95874cd2a71b10be9b09a9036ec88e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "acfb9a0bce85cb84f82415b6274f9d639d2618a47a271bdcb90035225cddf881", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "af074269928bc4a2765a26fdfa11056932459b8a6f61373663ec528b84bbb6a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "bce8740074dcad5a42c28f0d65c9bb1625d6b291c66d295116456bf1fc607ad2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "8f9a62dccb2a8e93a4d1eb5d0080a86243f235e616614f71f8f5eb2f0abed716", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "6c1eb1f8bbe336dba200cb733fcd56366ca27c756957bf116c511cad838b4e50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NetflixClone" + }, + { + "hash": "d02e4900ff2c0e18b7e9e402b885ba0b6ca12e6a2fa3a2f8c262fac2d4d01606", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ef23b05498a915c826935c11d5d896ec162c44d25e7584cecd047b9f7f92a56", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90337ef9fd770e1dd064c562f1e7dd84b794c027fa8b6e921e37d2ca524b2200", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d30686e1c6a3366fc1cf62041ad062d565b47dea04336d1059e523bb834509fb", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3e961538b604deb3b491d4153a04abbd8404560252d5b83fd8b04cc930a5657", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb9ac0f7c2771b608d706de7d0a1d6a7393bf74f13de9c7c6972c35de2f565ce", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb291b52da024be5ff4fc6c46802253a2459ee679a1db9a10cf54495c976801d", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbc9cbc91d109f3546419b16c5f0866487f52a900e006587fd29bb3e8015ef79", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10f1ff0331a63509a598ccd5f987da070309c2c88f7cd042eb5a2a2b6d806813", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad6a40b98c439935330d1bf09349dd561f92d53cbb81a80814e8d0b6426c8b4e", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75abf601d533a8a4e26f4ca710c30e95f4e8d1e9b3bc0fa7773dff59129eec25", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f90a2c33bdac13cfc3b321c1d8b6647c675a2e2421e93b7e646b2503000d3a5", + "regex": "(?i)^https?\\:\\/\\/japanrobloxid\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3a46ab53f398ac9588fb516e099c37a10adc9b242debe4e8ca2ffc59a17d15b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+google_page" + }, + { + "hash": "cd66799765496c43b4b46155adf241ca9e81b2c0ddd84cec22a809e3d07a1131", + "regex": "." + }, + { + "hash": "89628bd224141042ffdccd7e796ef6ff2ba4a25c4a32c5a442f35de1c795bd30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebok\\-whast$" + }, + { + "hash": "19e46cc8a05b8df108e7e537babc4415bfcc8d63c0795b8ff07bee10229e1cf2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook\\-login\\-Page" + }, + { + "hash": "89628bd224141042ffdccd7e796ef6ff2ba4a25c4a32c5a442f35de1c795bd30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebok\\-whast(?:[\\/\\\\]+|$)" + }, + { + "hash": "84a649152549f3fdfb2f3163b6be684fbd6031e756f20db6d8fe9c8229dd7c32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix" + }, + { + "hash": "0a1c80bd15e0a26af754a1799d32f0569d4490ec6bb4598de5ec37df5c7cdf9e", + "regex": "(?i)^https?\\:\\/\\/coinbaseprologinn5\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4537f0df116f8554bcd0d6d5a47d4f1a868b375809b34a3578c2950ef110fb5f", + "regex": "(?i)^https?\\:\\/\\/insta\\-hack\\-new\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae3a18686579b8b554732fb3e8a0f9cb7e6820605604a5165fc72b810ca7148a", + "regex": "(?i)^https?\\:\\/\\/insta\\-hack\\-new\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7dbd2c32f088e46944bb34e776b46daa37fe8f93638b6f9c42e11bdaa2cdce0", + "regex": "(?i)^https?\\:\\/\\/insta\\-hack\\-new\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d652e5e9fdff2af02a4f5a53cec1bcf6b42af90d9a5e031f9d3bf08a8c275cf7", + "regex": "(?i)^https?\\:\\/\\/insta\\-hack\\-new\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c440e1c84c5dbe81b9e93e73542e95f496f5252144a566114f0e4e6e93d3735", + "regex": "(?i)^https?\\:\\/\\/insta\\-hack\\-new\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2aa2c7bbd04700080bec1a07e29c5fadcaea04999f96290f8799286a5bf60c9a", + "regex": "(?i)^https?\\:\\/\\/insta\\-hack\\-new\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8080ca3eca7c35520ed1ed4ff99b928f7db4f4db0ada14ed04bf598ad7478c68", + "regex": "(?i)^https?\\:\\/\\/insta\\-hack\\-new\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "315f9bb742c672eba5e96b2fd3996cfac530c7d223d91b08539538a71175683f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Clone\\.github\\.io" + }, + { + "hash": "76b6f217a4a99dc7c70bea626319be0c349eaaec223515bfb000a8f51a893ddf", + "regex": "." + }, + { + "hash": "56ead067c2cdb44a7a265ac4ee10ed08085312fc908a8c27c71f25f4992dcc13", + "regex": "(?i)^https?\\:\\/\\/crazypantyhose\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b75b22909120d8bcdb9c740cfdf20a77bc220a70c839a20436eee387c726b1a9", + "regex": "(?i)^https?\\:\\/\\/crazypantyhose\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "591b996835f1ac41c39a172a22656cfa0ff3ffb4bcb348a5242499133dc2217a", + "regex": "(?i)^https?\\:\\/\\/crazypantyhose\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64f19ffe8859df638256edfc9299e6a36e0cebc14c9239310d34193ec27de420", + "regex": "(?i)^https?\\:\\/\\/crazypantyhose\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97ca8508396d46d9e8492f23aabbefffa3e791afdeea4561ec1505119c5cd388", + "regex": "(?i)^https?\\:\\/\\/crazypantyhose\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46bc99233f586cab70bca3e517ace685b0de169db24d5997d89ac563675b25c0", + "regex": "(?i)^https?\\:\\/\\/crazypantyhose\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86f619a7fd602f6534d92eaa152834bef62b18036fcd85cf32f2fac5850c36cb", + "regex": "(?i)^https?\\:\\/\\/crazypantyhose\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2271c77ed1f3305eed05a9ed044d2f319bc9167d78b74609fb2c65650939760", + "regex": "(?i)^https?\\:\\/\\/c0inbusdpr0l0g0in\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "05d20560c7db931eeb4dc843118aa0551d754496607f96887cfaee1f36afa292", + "regex": "." + }, + { + "hash": "2a8871bbc1a7dd5746ef465f19ca1437ab356b61a9e793ad4671f1695b44646c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-clone" + }, + { + "hash": "88e79ef2372ce00176fd1f523ffa08b3039d198232bafb89d2ff99aecc41c1bb", + "regex": "." + }, + { + "hash": "b8ab249c48e95c09bb5e4220990c0926307bb745105d497ecd4ac3494a0f8464", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f55bac58758c5ca5cfcd73c28169fe03746f2071c5470a6a2fe05849241a4c49", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e16007ce178b70c4062814800adc09cb394607efa65987f8a3145b9e8a10c67", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b4c7601e55e8ef90992c1953663f904e9dea1ffb97fc6b2744a21671213eb1a", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbffa6416168dfafc4e4f8371c5717bb4b5638c8c2528abca6274b1bf2809dd7", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4fc66bbea99f4d669e6ac47c90def453f55a79b6d9856b432d79d7a641c7559", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "357a3d340bcd25d97c5c713aca5877f7916c4337abc355253cdb64e689ee2cf6", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92090f47d9d7502f452dde4a0b35ae900d89673433bff0200c9b3bd9a390624b", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cda361660aa6b7c5b0a2787331062aeccc6925a6d7bbd6a86065b2216e6a80ae", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5440f79017c6b116c4e0f84e9beaadc70bfd36e6f4d7a846f38ee2777f7a865", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e505e8792f8b55b1160aa5fb8b5cfc8d20b13658d33916cc1f69b44b091e9cf", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8efe8a2492becd386a94945f3c17b0df3a2021136d39622fd59d3d4d56c0fd9", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb73465013f13c0a55be44f08b424dbe8ffe50afb14cf97224154f4f2b4dfd32", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a37db8c0a2c8d9ce6bb995c31ddaf9cf449975d4af8929aecda90ce671ce988a", + "regex": "(?i)^https?\\:\\/\\/solodebemostenerfe1661\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a8638385eeda771980c9a657cc992e83502a24e4239ca6f9bdc7564e35cabfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Ke7ADP$" + }, + { + "hash": "54b66f44d93b74952de3089fa953121a4ddcb5a2fb05ed15d6d0409a8c8492fa", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a35bee1f9bc78dc377a8e4087bfa256303bb0fd0d591f4c500bdef9de04f07d", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a053922137b698cf8fc055e897c5bc1998eae3ce85bc24dd901b4757e43fc8c", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36e46ee66b9310c41a95ea511d1140575fcc48bd67f788055abd1cb4b73c3dc7", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb950bb646d1e8f7d8cb4017adee9d7306b35bf4707a210a206dde1ec68871e3", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "852f022bd76ca55903e29894b2dd99cdc88f11ad71fa1ea7bbebce133a438f42", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a9492c91d7a375711e49e86ca27e91b72602324cc485cf7cbc7a8c2bba69b73", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bca2aa05f55cfe62a0d3d2e3b440384ca735846b414da51a12bd059b82a8cf7d", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0446f99c0ecfcf0d8a7b11b334aaf3fe0ae7e71487d462b974fcdc87aa9044d", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0945aa40e5c965c5f75f7e432f7c16d99568f7539552a357b25fe05fbe4e2ac4", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20f1cf60fd8a69c05cfcdd537a1a16897eb163700c1fec48d5cd1d5d0b4bc6cf", + "regex": "(?i)^https?\\:\\/\\/robloxobbysquadscodes2019\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2077b7b999883b50aaffb2798d8844eded0ba17e57d4c64ba802a0763d9a201f", + "regex": "(?i)^https?\\:\\/\\/robloxobbysquadscodes2019\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "593d949cb1f9076634e8345c3840d7e58cce099f13806f9b82bf8ffedae787d7", + "regex": "(?i)^https?\\:\\/\\/robloxobbysquadscodes2019\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61258c5ff7dae595caacfa7d22eb145df82a87c76950238735e8e69fb233401f", + "regex": "(?i)^https?\\:\\/\\/robloxobbysquadscodes2019\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "742baf292fb6a05fd35c31e5672aef503c0ca0457b5e43b4f12ddd095e1d8614", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68b21c4a1135cff53411da12176e4dc7d18302c05684446af4ff90bc6dfe0da1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c8305b91d8adf18331de24a65a66d2cd2d86810230fd9ddf51394826fd61dc", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ffb7648a2ed8219a3c11f1d3d19ee212b593ec0a457b9e0cea5d5b771376c6c", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7320e2851ac3a91e048ff9ec395d51b8f5b2e8a737e69fa14c0608b7191c915f", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3beff29521b7047dfaace62ad14db3af72fd4b9076c79262aa7385262407da96", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ed77ce10052816caa2dea14ade553246a25a9057b537303ca22f1b804771165", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "459b8398a2d692ceca6652f15472d95f45e805d759d3b5b8cc3ebb51d1b97c00", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6eb9a6a4794f952b157cb84a925111d95e2836f74cf3c7a2a6f9b41b38c19f0", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd5fe32a82a49d2cc2b528f9d5455a0c567838645cf0169cc5a20e98cabae10d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesredeem20191\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55908dfd196f278f388ce8af705387d0e7a45aa6bf9e6ba542677de7ef0bc337", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodesunused2019\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bc7cb327a5677111632c6221b681a61788d330187ee417ed56fbc7f46b050ca", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodesunused2019\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eb5016c2c5ca9407ed5e8eaa79458c5498c3e768e60e2540ddee48349f85da8", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodesunused2019\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e16b41d84b0a73b899ee60491dede2a2e6ab8ba77480847acc96e40114b9e5ee", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodesunused2019\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "480a33d967e4cdfbdfb5a488850aa7e87ed3d9ea64d073a8827d1b0c16df49de", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodesunused2019\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a670a9c578e7e3dba430afb68b77bbca9cbb0e44a3ba598da9badc8293392e9", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodesunused2019\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34738685f5af748025bb9d41935ae95cca7e70940a6881ed589416b58516fb85", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodesunused2019\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81979597d9299540dd334179d701696724e7cb20f54885dcde900403f52bf87f", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodesunused2019\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90814a9250d79e02302186e7773c96243b49b2d185896d82e48abc9234fd858f", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f44e122acbe2e1ce51abe17ace4c4bb4030fc2bc3a714955311d3021c16491a", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4a1428fd6aa7536568e39652dfad208fc3b0876e718e2dcd00647fa2a690edd", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b5e043f99fd7525891f52dd09dec4ebc8f115d3b15bc3f35120bc0f53193a0", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d24c1a7569e940d752634d797f7409dc71ce3ac4399e0a5a64c25db8ef76a8fb", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a941c27dac3aa76979bcc1a4307b0622b96810a49439106d33c80500d90276c", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99f9882783b44457a8dfa4f3d44d0d0a75cd334a76a0ff1ae6ce3f29d0693432", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cb49158dfbe92f28b5c366ac956c8ffd1fa6e7741bc53781b25e27a5f112bf", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08c494bbcf5e194c08a3ead378e6c73e18df3852b2ddcb9f781b0873f3506738", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e7b184aa8eaeb600358b0384339d5de37c3d7fe6012e2a60dfe4e6ceda74128", + "regex": "(?i)^https?\\:\\/\\/www\\.ens\\-domains\\-login\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1420cb18ec2f15de1be70b34174de5b1de6755aac91c1fdebfdd9882823554ce", + "regex": "." + }, + { + "hash": "435eb200ca8b313558914e72350ccd28182790dee6104091e9ec50abc76e0421", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "042d42556f44743838f8b40d46bab684b867cd7d8e9c9cacbcb69880d032e10c", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f96e145e5a4cecfeff5f582ff4106504ce17e8806a68ecc587f1514fea50e915", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7f08c0a5e2d5052a8ebba69d5f54df073479c8b4ea617afc993a19bdc0b7f10", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45c4318c74942251b4134669a60d69338bd0ca248eba911bfadc425ef65db4f1", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6541ac7b9e3216cbe94a36d10dd746ea27a915cbfbba794fb1712497d1e3bf28", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15705247202abd16a7e7841982f60c421c15909f5caa7ed7aaff2cb97c902baf", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebae50d5159b96a1d60b11081b4d31e23d9bbd8acccc88213d8379400ec21851", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ed2296fabd11283ce4c80cb615c4a5f7aba24e8bd02df9edc457ec6b6b7f8db", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a50f930b378bc385c468aa04af705e5b3e2949fbc3a3d05596edceb68edb4d", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d1cd88ace47e6c39a7e339aa526cc1cd5eb89d583c5a4a2c52f31897e3af200", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesforrestauranttycoon2\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d866b2a1f49684211782eeaa75a867fb4eec371957e343b6ade41a0bbdd588", + "regex": "(?i)^https?\\:\\/\\/hackdeatravessarparederoblox201\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9ca89cf5cb70b794a056d885101427a40b2278b9900a426149edf11aa2be19f", + "regex": "(?i)^https?\\:\\/\\/hackdeatravessarparederoblox201\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "710ae27aafe8011e3c47b2e34efc26d6df30722daf076ee6e9b850cb78cc12af", + "regex": "(?i)^https?\\:\\/\\/hackdeatravessarparederoblox201\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f84c61a480dfe7eb5f8cac50db4ffbcfffb85e6f0248e2b19138a0868ccd237d", + "regex": "(?i)^https?\\:\\/\\/hackdeatravessarparederoblox201\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a062b2155a86965a34fc419dfdcba930e5d74e6ce37a5c5e054a49b45ca9a4", + "regex": "(?i)^https?\\:\\/\\/hackdeatravessarparederoblox201\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6973cbafcc4f48891cf2db38a2570e5baa99fcd9663f51e1128ddc375bc08957", + "regex": "(?i)^https?\\:\\/\\/hackdeatravessarparederoblox201\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "670d268684411f81e6f307dbe5bf8ff55331fc7a004d19778f1202fe9b7a9a2b", + "regex": "(?i)^https?\\:\\/\\/comoter800robuxnoroblox2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26f06af8f009677c0c8ae5ae4202bb916aba15c5548d467b1a34b6a8c21bbe94", + "regex": "(?i)^https?\\:\\/\\/comoter800robuxnoroblox2021\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52dd59b9f8f3a708231ae606250dd8d8652166387a82a1cacd72c42efa93458d", + "regex": "(?i)^https?\\:\\/\\/comoter800robuxnoroblox2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64a0f94cd84771101e74aed763a2866479eb847b796370c091d890a1efff5baa", + "regex": "(?i)^https?\\:\\/\\/comoter800robuxnoroblox2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0672b2573e3dd98b8b36772b5f0ff202c61387e3bd6162027d4ec24d73e4d444", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxharcama\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bc2223abc965433000deba218bdaaeb56c040345cd1aa7ba6240efeac9af802", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxharcama\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "294832f3ff78c25568b1aef1e674aab7ad66e0ed22c861aa2a0de1694f72588a", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxharcama\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "758fe246b019ae5e9fef3ed4481b4a290fa4ee67986bf7a3ef9cd49e48f2da39", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxharcama\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bb87497ff546b093d50c938c34a50b2b02558a2d3aeae69eb69ccdb441e0b0f", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxharcama\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fea8aaa2ee186d2dd8b54d9ed13d778784d70a9d1b23f017ed6fa8a128551fe", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxharcama\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7501793a979f933a4a85adc09181a9812c91f46d9c66c57a9d566cf685b0fb6", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxharcama\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c28843211cf180122b64a8638c0d5ddc3f0edd7d6c43bdf7d02faef622a9ae5e", + "regex": "(?i)^https?\\:\\/\\/euquerojogarjogoderobloxquetemcasacar\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff6262ac3c6b2e49ce4b5a9dd324c8b10f235d522a007f1b59dee85bd02f7ade", + "regex": "(?i)^https?\\:\\/\\/euquerojogarjogoderobloxquetemcasacar\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c9a2114709106bd3917aeb8c8564fb8527ec249b38b11ed09bc305ab96f7316", + "regex": "(?i)^https?\\:\\/\\/euquerojogarjogoderobloxquetemcasacar\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3511ee059fea4fd95c953f0616f6c644dac4d0528c63fbb1224ae8f2d99e4d9c", + "regex": "(?i)^https?\\:\\/\\/euquerojogarjogoderobloxquetemcasacar\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cba3f1e628801dd54215b8049e278ab6d2787b84aa84232d722ed42471ef82e8", + "regex": "(?i)^https?\\:\\/\\/euquerojogarjogoderobloxquetemcasacar\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "313d61de5b4f1d008f33f7ff6b44f7c3702b23751d252c5254341d8373812f3d", + "regex": "(?i)^https?\\:\\/\\/gagnerdesrobuxsurrobloxpc\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c71a63b3c8427483a4af5062a7d99e5c4496ddb50435a6c483d68bc6ed6d451", + "regex": "(?i)^https?\\:\\/\\/gagnerdesrobuxsurrobloxpc\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd023c996c19a87daf29104b7c5374408ca949ea4e972df81bcfb4c9f60abf92", + "regex": "(?i)^https?\\:\\/\\/gagnerdesrobuxsurrobloxpc\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6541a17543652fd37d58984530f7f70f37b881baabef737a2f5710bc3998c714", + "regex": "(?i)^https?\\:\\/\\/gagnerdesrobuxsurrobloxpc\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f680b792cfc7aa4da566d4daf1d497ef01e7944f80bf63fbf2bbf7c609081e36", + "regex": "(?i)^https?\\:\\/\\/gagnerdesrobuxsurrobloxpc\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2992261e2213359ad27da46b93fa4b24507a963e626c1c8c33f43571f1e2533b", + "regex": "(?i)^https?\\:\\/\\/gagnerdesrobuxsurrobloxpc\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b30b6ce6f2253dd4e290b72de0972d319cf5be56b374d434c7321a38a16a945a", + "regex": "(?i)^https?\\:\\/\\/gagnerdesrobuxsurrobloxpc\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f401a14b8e276f575b17606911921615825f2f0daf01923397e83c4bcbe6d5e7", + "regex": "(?i)^https?\\:\\/\\/gagnerdesrobuxsurrobloxpc\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "031eac5e4e7c655190793730d24c0e14a3827bba19739686731373b83e6a9101", + "regex": "(?i)^https?\\:\\/\\/assitirojogosderoblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97056b95a9183a09e0c100fa19ccbc12a3e9cc69604a296229456d777fdabb7a", + "regex": "(?i)^https?\\:\\/\\/assitirojogosderoblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27ec31e2201972c65e084f8767ea6a4196092ac9b5cdc8a014a70919a9c2c440", + "regex": "(?i)^https?\\:\\/\\/assitirojogosderoblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "700524efeab13bab47f8697fd28b8243cf5833c624bc49df5dc0658b0011e12f", + "regex": "(?i)^https?\\:\\/\\/assitirojogosderoblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "257664f0eedac5755a10bd6bdd1917ea205d2ea9bfc31fbe005f9df94c0dc54e", + "regex": "(?i)^https?\\:\\/\\/assitirojogosderoblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18312943424e2e738793c28405807905b4e325bd0694684786492c05c34ad582", + "regex": "(?i)^https?\\:\\/\\/assitirojogosderoblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d674a12fdae5b8bd31eec6447393e6238630b28cbe490cbaf555fce93495a399", + "regex": "(?i)^https?\\:\\/\\/assitirojogosderoblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3998ffbbe6141380464c6a76d6dabb8e983153cd1ed51f7736b5b0aca78b6ad8", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b107eed6d9ec59164a872069bf30292167b3606ac027c78672b53efd162486e", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10ba02852d889185ba4dada4749ab4061fa2c3a86a4b703d9be249cdf4172dcd", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "477c1226c52174e1b4f4d8047fc6b1849653b9b96cbbc71213e9a1f05308f420", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86178c02ba8cde4d3aeb1b23cc4d9e7301198eb0e11616eef2d9dba097875689", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ad46692af48f11018f9b77c779a0233539f66950b13ea27d75388ce16de1a1a", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5605ecbf03f7d7f8e35ee4662e78b6dedc59b3b9f2e755fbef07310687d69fa", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2f91589c5e75943b0f4f24cf67c6a0251a9fee9382296e1934343d4b198e838", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e45fd75fdc4d1a7ba9bcc2172a4096233562f7d08e0d41b65e4a12b27cecf91", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cee992d427d23d3eba8d6c68d912acd8f8657548e1dfcac539b629de9d03a67", + "regex": "(?i)^https?\\:\\/\\/authenticjogandorobloxnovos\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8d6b94e1252450bf241cfdc3c4d40a9b4724377533265055a2daeeb3fe0a51d", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cabe432c400db9df2141e484d4ce4fc70395fbbc482750710eaa607ffe5a0df7", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8185dcd69a24448330d377f603331c0c31b282164025c8335e4fb9f1424edca", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f29a4db61ab5bd416327d24c8989b65d23e3cf680bdae8c51bbd7a2387384d0a", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a3612231e3f45dcf346614025fc3c70b3a2d521911ddbc70335cd93e9666f95", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2ccc563e6d7015f622cc49a96f0f8ee6755aafac83ff77d70bc7514e31e7cec", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf06b469106dc756f0c7bd0a3b3862c0951a3b2c91d3437cdda6d334ef4e0779", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ccadc745073178328cb7c79bb848a140c4f7dfd214e273dae50b4d823f3ef30", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6797a4abfbfda4ce364e98e00f5c51a8d608e44e73f6d69315657ed53a1adb43", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2a821ede84ede390716b74199d4f2e67e569d2356e1ea3d47a23521348667dc", + "regex": "(?i)^https?\\:\\/\\/jogoslegaisdorobloxcomdinheirolimitad\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65a8cb2ad792fcfbda00827f0807344a60ac0d7fe7b1c1baf5468b225d0c5b37", + "regex": "(?i)^https?\\:\\/\\/jogoslegaisdorobloxcomdinheirolimitad\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d8485104769fe084c1698f5448bbce5221aabdfa13a073ad90894ffc34151d", + "regex": "(?i)^https?\\:\\/\\/jogoslegaisdorobloxcomdinheirolimitad\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e8c60cbe8048ec94d0ac108c5b3b4bc5640403f2f9f4b38eabba53f1488a59f", + "regex": "(?i)^https?\\:\\/\\/jogoslegaisdorobloxcomdinheirolimitad\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0e7ddc9ed5c61322ea57cdca116161443b4e353b1da8c367c6ef275b36def64", + "regex": "(?i)^https?\\:\\/\\/jogoslegaisdorobloxcomdinheirolimitad\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92c1ab8989442a1e8cb2b68d05bb186d17461ffdf8e754b055a5d21c000b60ae", + "regex": "(?i)^https?\\:\\/\\/jogoslegaisdorobloxcomdinheirolimitad\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec645fab3d7cd11d0b510cf1bace9528dbe03bb41a35ab18604c8ef36addee7f", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd29c045bc86f36ad185e55438f2385c4be426cee8cbd2f691a5c5d14263d178", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70e88ff2d8f4d7a795848c3fb57e080cef95502abc1fb5dab1c7249f4d3a0d28", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78b50cf51b864cc949ee02b28d0562d72fbeceaa4c326fc1c02946aade0a64e1", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b915ca39994494bb33b907878c059cf3eddf83f217acee1d855e9d9bba4c5a68", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94a13ce3c5a76f26e4f303a029bfe3a2e5c7923efe31276c43fb5d4dc870cd71", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "024f6d3b36d10ce29a2c5bf7fdccb57f3654a5f21855e8f309829f71f3ab48f9", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72eaa64346f48b31f4c23512fbe3c8c7105d0f55b9d80b1196af05344b1b3d0c", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d021afb897a0f5c35252697d0867de395fa7beb7ddadba8de4a5d6ccfa570bf", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1924d915f27076a4e8e83202147a5e5bcbebab2a7fab9b9afdfa5d0548c29398", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82cc85ac00a6fca2878ed26cfa0b872552b4bc522d2ebafe002acbca2c1da0f7", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4b5985d109526a25801e79e63fb43370c98830817497d07353703a110339d71", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d80a727753c6ef910cf3ffc38849eb985467760dd0a663ff92439587e8daa6a1", + "regex": "(?i)^https?\\:\\/\\/donutdecalroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cf21edfe4ec89184c5e21f6b3b3558964ddec2dbabacfd43a6ea061b1eed4e7", + "regex": "(?i)^https?\\:\\/\\/comoterohacknorobloxeatravessarparede\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "792a0a453c00632cbcacce8378e18f102459c57923dc892e2ff73f02d720d633", + "regex": "(?i)^https?\\:\\/\\/comoterohacknorobloxeatravessarparede\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b25b9c50969c2e9f6a92def1b0795cf5c45e1aaf6cd85c413137e8b10874b486", + "regex": "(?i)^https?\\:\\/\\/comoterohacknorobloxeatravessarparede\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35afb158d8b09ba83843e0c90a402876dd4593d40fcd37d8ab54e8f118c3a4a4", + "regex": "(?i)^https?\\:\\/\\/comoterohacknorobloxeatravessarparede\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b16284bfc55043fd6bc22c2e8fc82d1aa9a452aba42993eac3e4dd038ae8b3ae", + "regex": "(?i)^https?\\:\\/\\/comoterohacknorobloxeatravessarparede\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95b4902c38ad8f61f40c837e30f2bd3288f922fe3327ee67c4b1e3fb3fceb41a", + "regex": "(?i)^https?\\:\\/\\/comoterohacknorobloxeatravessarparede\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e28b8791f84905597024a021256659815adaa7206a9592a99d51ed2cd386b0b", + "regex": "(?i)^https?\\:\\/\\/comofazercolocarcoisasavendanojogorob\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1efef1dccf44a03a5045c5e3bf20fe009fb5564fdb6646c5459c7b53f9b72d98", + "regex": "(?i)^https?\\:\\/\\/comofazercolocarcoisasavendanojogorob\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f6dcba17ae4e8e95802424c809b2df2fba5145a9d16337c2a151e790eccf978", + "regex": "(?i)^https?\\:\\/\\/comofazercolocarcoisasavendanojogorob\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4937813cd2a6c7367532014aceae70a3c2b98a6bc702e132784b37ce60caecb", + "regex": "(?i)^https?\\:\\/\\/comofazercolocarcoisasavendanojogorob\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a42ff6c8690d2db78c6e3fdd5205d27f4742832abba059928edfbd4b2d328b8", + "regex": "(?i)^https?\\:\\/\\/comofazercolocarcoisasavendanojogorob\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bd0dff26414fe543a12bac55405f9856502ad5521f7d82e0bfbc63a37fbc9b3", + "regex": "(?i)^https?\\:\\/\\/comofazercolocarcoisasavendanojogorob\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d38bf081e0266b4544d70fb1fb3ef49f682e5e4e4900e976e72751a17a5b9cf", + "regex": "(?i)^https?\\:\\/\\/comofazercolocarcoisasavendanojogorob\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2ca74c756ad0e15d5790df7a6880cf77447b679113dd5e346c86490b3390560", + "regex": "(?i)^https?\\:\\/\\/comofazercolocarcoisasavendanojogorob\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eb48d9ec774d844505aeb121dbfdb313d55f4283ef250589f39b17d79b71451", + "regex": "(?i)^https?\\:\\/\\/comofazercolocarcoisasavendanojogorob\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7acb983d82ba551fd93874d35a5c730333ad3f36effe9d2c537c5ce364a1f17d", + "regex": "(?i)^https?\\:\\/\\/howtogetgamesforfreeonroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2bdf79ae5afb0ca6c1c5e7b12ca55e2c6b88bbdd02b6d0e9b3ba713d736bec2", + "regex": "(?i)^https?\\:\\/\\/howtogetgamesforfreeonroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ee9fc60645e7c4a4dcca58f2d3fca2f83b5de51b9715084a506fb58b88dd32e", + "regex": "(?i)^https?\\:\\/\\/howtogetgamesforfreeonroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1251a9c18163f2473cb0d1de70e32260b00c98f0ed5c28808f9aadc4d86c7963", + "regex": "(?i)^https?\\:\\/\\/howtogetgamesforfreeonroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8288585a70c61b374885437d41eb3619ae7f2f6ad917160e72ffc40f84537c36", + "regex": "(?i)^https?\\:\\/\\/howtogetgamesforfreeonroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0659ac81c286ed4aa007d85817286541efb5f8f28a6cab348dfd97c6721bb740", + "regex": "(?i)^https?\\:\\/\\/howtogetgamesforfreeonroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "748107c6b6ac2988e8ecd62e6406189d4234194e2994ab4a292d177e115c68de", + "regex": "(?i)^https?\\:\\/\\/howtogetgamesforfreeonroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "659e590e7c0d7c03ecdd34adde6c774b0bb172fe47bc9c1df9b4c3feda6c6a64", + "regex": "(?i)^https?\\:\\/\\/howtogetgamesforfreeonroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea3cf6b73eabab365357e6395d3ea67d4eb295441bbd38020ab7db1ddaeddeb4", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxnofuuny\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3ddb54c1a18806914b15e1c58e28a35d69dfabb1a32d16a71b234050edf4222", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxnofuuny\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1350bdf3ee4f0b9d9ae6eaa7b9ae1dcfb7dbdec8d89698ea53c6ebbea3be72f3", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxnofuuny\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5de0163239ce32378d2d7d77ee15f5e91be5cbca11b32d2250099c5f16212b44", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxnofuuny\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1ab760bc005ff7429c120bef349a516caacc7bec6274ce68eee0d8b8ef90703", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxnofuuny\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ee4493ebcd9014629f4141fa9e61172cf01a3f61320e77815415c7ddc59d225", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxnofuuny\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4801d0377063db6e872825d86b290fd21b7b1eb671456288089c9aaa049f51c6", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxnofuuny\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb56b0517ed4ac27d045542cecb27f756475e722c8da7a5fe30737ddd51f5406", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cce9a0d93290826d5030131de5c8a965ca095f83c5a20054f4b81a1c2883d21", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bb9555ef7e31305c92994e616bb46e46010b6efc112d0118d878dfef2b71780", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19ac373e2626bef8fc51730a2e7ee145c9785ba21d2a7411997cae735193c209", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b73c7436a22cae8864938d64fc649d36059c4a5d966fa8ed3fdc59cd858a1cf4", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddc0d654f457c7c0aa6cade709f49acef77ca90553da0c77fbdf594e78908068", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4065c2774479f5c89aaafbfc090b7d9702011f58ae32093905ff10eafb2e2140", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff6a05e14049d3960279b87490c0ff0ee72c0b4185a1b627fb5c47ad8d29f5d7", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4cbb48293bff51575c0e827638f7023198f1eed340168b8138057383651a857", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d71fb55970a48dbe8b6d9e62e899d14bbdbb3ef8d3a66c2cb48256da28f6a7", + "regex": "(?i)^https?\\:\\/\\/comosalvarprogressodejogosroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47c0f844af5531643f6312316516c9f212ce82c9f78ea2df1ea7e971be1a18e6", + "regex": "(?i)^https?\\:\\/\\/shirtidcodesroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cbd5d3022c1141e9674a1cba21b369a3c53d651ea7aa9d5c960dbaad2c506cc", + "regex": "(?i)^https?\\:\\/\\/shirtidcodesroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4465c23e5c06d4624f4e29a52fcaf7716b2652990470cc8ce152ddca398beff6", + "regex": "(?i)^https?\\:\\/\\/shirtidcodesroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ac7ae732d0df7c659e9ee219b625a96f727c10ab945f3a3a9db78311ba75e1", + "regex": "(?i)^https?\\:\\/\\/shirtidcodesroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d822c72d4a7c13a31825c4bec49737e809ce1f58996865ff455a681b2413d34", + "regex": "(?i)^https?\\:\\/\\/shirtidcodesroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74f365194d254d6f19d272b8b2b6e6374cce019ec64b6893d83a9787392577aa", + "regex": "(?i)^https?\\:\\/\\/shirtidcodesroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf93ecc6fb2f289756f07b2c2b558869a977dff819c51f4283eafd0546dc127f", + "regex": "(?i)^https?\\:\\/\\/aprilrobloxrobuxpromocodes2019note4\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d9a760e6a1647b053cb707094dc3b6761683fac4a09db6f6580baf0c34fc57b", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b6c64b29d15b815067e18f8051f55fdcd191f783b04602bc51d314147f4f0a3", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxredeemcodes20191\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d69995e9df283cdbf100e8acd169af1a195438ebee17105dd533184efc294137", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxredeemcodes20191\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12d6d441d8f48328924d8fb490d6a4655bd2e43cf2d4f5f5ea2920a67b55b98d", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxredeemcodes20191\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41120f903d9492e1dcfc124f9081a76f73984f67a4ceb6dde8e009997741cb95", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxredeemcodes20191\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f678f806da78062b5830cfea76b5e56c9c5969554efbfce5b24f49e647b85f", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxredeemcodes20191\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "754714cb16bbf4ed3ccfd8d2459cb410788dc97c28fee68d3976db20dbd09631", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxredeemcodes20191\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ac2aa43731ffc252e440bf0ac620bb80324b99457088d5ec3a129944d79df0e", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxredeemcodes20191\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a8704f087e35ea421944254115796ce83dac18875ca383f486f28403ba30efa", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxredeemcodes20191\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ab07a204c22e7b916853651cb74089e4b80822d0e288439dc240e9252b082c6", + "regex": "(?i)^https?\\:\\/\\/aprilrobloxrobuxpromocodes2019note4\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "546c1914d351590bd7c243fa9a9a83c078685d121b3f326e790ed7f5053bd862", + "regex": "(?i)^https?\\:\\/\\/aprilrobloxrobuxpromocodes2019note4\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d91fafd82e6a732133c864dc88984851be117783e54f9578c1fc6c96c25840bc", + "regex": "(?i)^https?\\:\\/\\/aprilrobloxrobuxpromocodes2019note4\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c765b32e92244291631bf4de36e6b8f9bfac7b9f315f113bf324d943845dbe4", + "regex": "(?i)^https?\\:\\/\\/aprilrobloxrobuxpromocodes2019note4\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe084d311b95ddc13089199152d13b167b04e50e9c3f53babe4a76ea381c539b", + "regex": "(?i)^https?\\:\\/\\/aprilrobloxrobuxpromocodes2019note4\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45834ee5909facae1eccffe5cc004204e3505da026fb7d3b5ecd170c58295da1", + "regex": "(?i)^https?\\:\\/\\/aprilrobloxrobuxpromocodes2019note4\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9469a09f1ad4cc412dd396d66fd226e324464fc55b08d4467dfda1fd0eed9731", + "regex": "(?i)^https?\\:\\/\\/aprilrobloxrobuxpromocodes2019note4\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b469c7c9ea381b7a278464eb3c63c45aae16604e49d82fe54d0179aca5971346", + "regex": "(?i)^https?\\:\\/\\/iamsannaadoptmerobuxcodesredeemroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9558bdf9aba85bf9f19a7c13260c5cbca2812a19adfbd7cbf3c5000a6501590d", + "regex": "(?i)^https?\\:\\/\\/iamsannaadoptmerobuxcodesredeemroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1f0946b427068c9a19044cdfb3f577d2980ce710fd70428086bf9b3c1d7ec79", + "regex": "(?i)^https?\\:\\/\\/iamsannaadoptmerobuxcodesredeemroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f131f64a520ef7e9bc092660babc3e1f5a4a38735590b49ee35ba1830d9114ad", + "regex": "(?i)^https?\\:\\/\\/iamsannaadoptmerobuxcodesredeemroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50d49ecb458a8f9b310a41ec5835efcc379af77424cc787a5a17b71755b81544", + "regex": "(?i)^https?\\:\\/\\/iamsannaadoptmerobuxcodesredeemroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9675007b98cba1d977c050ca176ba9b1f1e9866b1f731acedf4efafefbae942c", + "regex": "(?i)^https?\\:\\/\\/iamsannaadoptmerobuxcodesredeemroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "178d3ca77fb0b206fb1d3f2b48ec96ee6a8a8c6bcce932f9d479173654dde368", + "regex": "(?i)^https?\\:\\/\\/iamsannaadoptmerobuxcodesredeemroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5286f519905b8b2d78d27e06d839102e8fc194b82b01c9b7ce24f15f4f410466", + "regex": "(?i)^https?\\:\\/\\/iamsannaadoptmerobuxcodesredeemroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6025688ad00c45965311e741410d9384914e8215598f63dddb4f90ecb2c08e4", + "regex": "(?i)^https?\\:\\/\\/iamsannaadoptmerobuxcodesredeemroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a7c8066c3975e70640dd46b302b6e18e46ed9590187d4953306fbc82c63fdd1", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "644d64d87eab31b2e102de3c06da1fe1c52c9f88a36c23fa61e7ad3334cb2f1d", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d814d902e8e7decf9cdc3ac1fa3e529383a5022e2da706464503d4471a708a3", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "885b19ef24acf6006dfcd9a31d7a75e869de9785bc79fca888403fc99e9ec7be", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe241abfbd68b202843085dde9070f664f941dbc1a3581ee3e581160ceb633a", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e78de535e7566f8dd95f13fcb230fe65dc8a48c34db3129d5c12461573fcc2fd", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "339ef66440a0f60798c3dc21b71bfa24d0f118b852627d5a8d22b8f33a142dd3", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8d0f967ece2265f859ede440c1fbbd8c95b115cc68eedc8c7bb8c0b2f084254", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7da0ec3ece4d8e6dfd91a909e835f33cac76e8e1862d6f1c1bb4f332b8683394", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4db4d35c1cb111419e399b268b939fdce5800dce728b17545ecaeabe54dc358", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f151823e85ce33e4ca8f9f698266b41e1dd37c3ad4d6d94353c12ce5f1760ead", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e557cae530c25bb57e87fe84ffe811141d0590bc657f325d148d461d5d73952", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "387da0e9d26c0f3188cbc76e78a4dd161b8e069787bea2b9ea0bd15c217fae27", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ded25d4e30268e4567454200dbbf37e9b1aa0ac97331870cc7fc6327ddded5ba", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8a3078277d5488cae977a84f137deeb4498b09dab1d51f6afae53da0806fc2c", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5d8d701a77d96c4b247c67566b625a6392c81b7fcad925deefbbff2e1573e9", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b67ae5ed6826c0da12b3ef0a3deb913288724b5b657de49b8b32aaecc147b12", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e45c8c270f84388e0bc67e7e6d9fe68e8ed602fb935bac61b35b79751c9fc2e", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b8768dd4b1acd0f2599f08d28b0ae3ed0f29f3073d2c94da74e740c35e9c35e", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c927f62c6cbd50ffab199553ec3afb2d0fc335e572126d290e047541b105b116", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fbe8148188581125a13a8b20a6f7b8b95c6dc99e3154c79f10f5fd0723b628d", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesforrobux1\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b58f0ee6b074cb1a4846ae67656c24ec36572fbb255072b29b695e129305e2cb", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesadoptme9001\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b65c4e7ce9d0d87c00cdd8de144e599537eb1372423038b0877d9f09d82a617", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesadoptme9001\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74967fb130a068f888d3d8030e72fa983928adbc10ef397b3e7ca5a89a580ed9", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesadoptme9001\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da3c5e5c16e58629cd9181804ca481bee699eee298ac5b8d1b35ea4008ab0411", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesadoptme9001\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "536328ca60cee218496f00b6eb726ec77f0100abcc749f06aed5c34737626ae7", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesadoptme9001\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb562deb1baa9e6df819a1be3daca9f7028c93131b89c4b4ce1f8266e7826f39", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesadoptme9001\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "710269e05e99c36b4f92d6888731b6dcef0782d4c6f4929c2d7bb6d0e3339f32", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesadoptme9001\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c05ef6650985039de6a32af88b3893d1549ee93d05cf900d27acee8e0b66de5", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesadoptme9001\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e160c9661cc8e2f409c317d82e003c29b9fef84be45522b36b5dc452b941f83", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesadoptme9001\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a81233125911e67c383f39949cd62374cd7ba601792350592465df61750155d9", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019wikinotexpire1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a941da8bb35cfb9b632362c3c2714e0dd62ab464e30b471e123409ae850a20fa", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019wikinotexpire1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa7fba189c684af1997d240a3e2094e5e6bdd0b592c0c0112a577b917ba6e05a", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019wikinotexpire1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d74ae36033b905ad55f1e913c8e9b5665e445346cebee97f90dc73a53b559fb", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019wikinotexpire1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea7220fb08077a8923f87ca44fbed29b4473c4f8453db0b782fb1e5f8c4c9153", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019wikinotexpire1\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bdd7dc0739a6495bcf3b403b42867f38bb512f958378caedf5cd872fd67bba5", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019wikinotexpire1\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f965233c53540dc5e91592013098322eabf17da0150073a8e702a3ed41969efa", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019wikinotexpire1\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1be6a0662ff375c6bce5ebbfaa30dd8fc3316b896ea9b0a81d494af54f9e6b77", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019wikinotexpire1\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcc6fa3b80e133dfc9d92bddf3157a3d8fd525c57925a71bb4cca9f096a23203", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "579874ba5794602f5626add1af548c56e3be512e2f122da11d9eb95ccf341436", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d650a5285a314390ad9d6142b38cfe991ffa13c6f5cbf4ca8080bc62abb16180", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f187869b7742949734fd0aab6f68c3a1c31e7767285990e20a36dd94d97d935", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25275ee58fcbc5c8970a4b63eaf33dbb801d859862ceade809740450114a2249", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bf6deadade53f896e43d8520ceda5c66675f96dbe2ab9f88d554c032699bd4c", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbb5097f929c4c1b4d17f04e31599e2b1ba7324d67137ccd5b80f31218012ba4", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5c1d3e5c1bc776d1c070f8b09b4fb22077943acc04c1169b180a965c80b9aa8", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3437161c2f3633fe4458a1267beb75e3637cca1d8c5a7d4a1339c514f9fd5c1", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dea7a1a9aaff5b0068805e597dddd9545d5f22290319fa08b85a08e54986211", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d8dadf960d3df206fb679c67476ab8c1b68b4d4b3e50a5e8855897d8117a9a", + "regex": "(?i)^https?\\:\\/\\/robloxworkingjuly2019codes\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22854520fac73631cd05f144b06b08d7ae458dc77a01d6411ee547868afc0e68", + "regex": "." + }, + { + "hash": "7153b2cebbfddd436e23bd7973f8f21f2202ab97c3b8bfb18f4b37f6f533937f", + "regex": "(?i)^https?\\:\\/\\/robloxdecalstheos\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e881327eca13f362dcaae7698e37906ecc6ebe9e447edb75c26b665da47f5b02", + "regex": "(?i)^https?\\:\\/\\/robloxdecalstheos\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfe7ae96364f7db1ce6b9ad6e03732f2adc8d17e9e59da47ac497d826b81a9f9", + "regex": "(?i)^https?\\:\\/\\/robloxdecalstheos\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ae194df1f07eac518abfd40034fb167ce8628cce85973b55f67a7eaa693d515", + "regex": "(?i)^https?\\:\\/\\/robloxdecalstheos\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55363655d0bad21403e2bd7584ae2250e958e4e4488b62151a6811b4480dae46", + "regex": "(?i)^https?\\:\\/\\/robloxdecalstheos\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7ea2528dc00ac614f82ac1573070cead4826dca03b1f08605c5b1d8d613016", + "regex": "(?i)^https?\\:\\/\\/robloxdecalstheos\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcfbcb9bfefb8bf2e4d5f1009ec9f1df5280b946521436f75a8fc11464aa49d7", + "regex": "(?i)^https?\\:\\/\\/robloxdecalstheos\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c0e82fc61d827c16f63f0887c13ca57ff4a7d2ee270fe6d2454c37ba2cfdba1", + "regex": "(?i)^https?\\:\\/\\/hackdorobloxskywars2021\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c665882b59dabe34057f2675cda15020ad7f29d8c71eef7d6a5b1ab0d754cab6", + "regex": "(?i)^https?\\:\\/\\/hackdorobloxskywars2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c1947ccfc3f9b8948f6ce95d71cc02cb79bd69f06b7ff16580c7695afa49d6f", + "regex": "(?i)^https?\\:\\/\\/hackdorobloxskywars2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e81222f065dacbd41be9f8d49956f0390b03ac295cb6d442cc64955353c726e", + "regex": "(?i)^https?\\:\\/\\/hackdorobloxskywars2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d1c5ea18642184642f417cfa2e00fc537f0d7799886fa6783a0bd4d3cbf12df", + "regex": "(?i)^https?\\:\\/\\/hackdorobloxskywars2021\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "670d4c4410914fceab48fc766e4705b2bfa661aaa590674acf5d91ec4fc8cfb2", + "regex": "(?i)^https?\\:\\/\\/hackdorobloxskywars2021\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1b5aaa98f9333fcadac50f2b0c55ebb5316ccd96735a0c64b0af44a05255633", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2543063123ebcc39d16c28872c12b8a3ff920e981f10a8817a96d2f4135ce092", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a515391c681e44de6d9183e18151b49c1bf23cd7e244414d42968130f76bf8e", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea81c5185eb8b8f1fb52e46e2a54114361a3cb637260b955336c28001e34fec", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4287d491af406ed0237a9c81cd2ba0166783ccb0ea5f0646dafae6b1085ff374", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66590a74fa594a4aebf67f25998172429fda7cfa386294bc3a2483ee3e1c9f70", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed40867deb1a48a7204fc4d3d6f569f4775fbc25337de59b8886a01c219369cf", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37ea02ffa7f79ba275872a7a268e260cd01b698599f49d75eebb6e5782e991b3", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8802b3f87b2ba97785c6afdd5b587af24e6aab2fc12ee930787527fb2751dc7f", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31e2065584bd421299a8c74ab6b1f57633ae97be5b4de6048606de05869e4f26", + "regex": "(?i)^https?\\:\\/\\/robloxworkspacescripthack\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f421f491ad8164c0fdef9f4f07ba63b43e67f9e5d2dab4f3a5fea916f77be1a5", + "regex": "(?i)^https?\\:\\/\\/robloxworkspacescripthack\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b16bb1a50410f343041b3354104e58ece8c8f7721028723666ef60a34097e24", + "regex": "(?i)^https?\\:\\/\\/robloxworkspacescripthack\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e3ea1597d15a5b536f1edee7b00db0d2685ffcaede2450d6aed90ccd5ac4880", + "regex": "(?i)^https?\\:\\/\\/robloxworkspacescripthack\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7388f584afd4bb19c9c75a07fa0eb86bb0a2adc8a329fb6e618bac07d7bd4af", + "regex": "." + }, + { + "hash": "8f226ea5f1c14d31876617912da25fbacf8b5c717fa8e76781385c826de38636", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fc0f6d98649e9aeef751b6edb883735b816828aa9041e3a0c64a43085b9e437", + "regex": "(?i)^https?\\:\\/\\/cdigosparaojogobeyondroblox2021\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "507dae4d348311c58d1e4a2fd42686580416c92370a893c85cd3a76e737ecbe9", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f72ccdd8b55b8a9fd35aae9baf3e9954895424184e376e111665faf715523e01", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b67d9e83d7af8d065a1e11cd215cd047d17b5a864501d041df88ca956471646", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013c6638b81c40246bee9d396effc9c368de5b59dc561036e55d4246295c52f1", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28dead7dca9a02d52b8927b8da58fa04e42fad997fc2132492f4ddf54e4dba09", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a67b9a9759cc1e357994e2fb43026e68d6b308c3ae08a32e8926a3ea459a69d", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d7c3cfca1e6d7b7bbce1b5568745f4cf7fe335a493dc396c714ba12bca55a12", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e83681dc6a8e0b66863b5a426b7bfebc8b35f942cd35234d1e550419b4ad36da", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9742fa935b926b417059620e5d4f4ea5fd1c178adb7d52b164c42add80dc053c", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4080cfb7a87b7cdfd4490f236989f12a162b847d8ea00a482911694a8678ab65", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b87fec60ec87317ec08786495d4cd4490d3939c505491973d3d13f2d5dfef8f", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aeb5c4968856a15bfa90d33ecac1beb03d92bc1d264a62e08a541fa273f9ee76", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63d6e867ad5c24ee294fa3ba73ed592973b0b9b9e66facf1ee9794e1236449e2", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae3ac0c5796a1b27c073ae44478324dd3bda404696fb7ec6cfd81358121c3b34", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cf2bdd57367e218045a2025b0b6a9369f520cb94f4846dee40222129ed8ce8b", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b32df3a58727ee93b1891d16841169690c0940a2dbd418bbe328af98997fdeb8", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9426424e2c927c3276b4be0600e06d2a908feebf80e1cd81c2e5fe459e5f8e9e", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "640bae589f30a85fffe8d0c31021674c3a85ba6179a6caec32636a366d609c78", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2aa299a7fc0d35d799f66dd00d0b4bbd674dd7b03bb6c85b8b9a4d7f0aed931b", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e88e6edd1d7c819e739ea33d6eb05229a2962f93840d985d3c0eaa128f64c1e", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dfb478e203629da0260a9c2db8348a1cbf44a2d0f6f22bf97b5fc16a7ed3c2d", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4a49c3eaec60f4af2ac93836406eb8869a4a58d89a7dcde76c862cf60dacb6e", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30c9d521f97fef715046b4a0e920460deeb52da786a79430ccebc389f73d5a2a", + "regex": "(?i)^https?\\:\\/\\/guessthememesrobloxanswers250\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a89a1d38be79b491273691dcd66f5ad7bf918f5d717a1803d4d3b91339d1c36", + "regex": "(?i)^https?\\:\\/\\/bloodsweatandtearsbtsrobloxid\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34c2c34ef555e9d920de09e5577ee8e8113cb90eb363dfb44eb1ef7bbb26650a", + "regex": "(?i)^https?\\:\\/\\/bloodsweatandtearsbtsrobloxid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1318e7f7662f1a829ca494912ef39e3ab210fd828e4373e4eb78ff99eed8cad4", + "regex": "(?i)^https?\\:\\/\\/bloodsweatandtearsbtsrobloxid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afc0e73a1d6e51caae36644ceda3689f392f4e0809774a33b23a2838fa29a202", + "regex": "(?i)^https?\\:\\/\\/bloodsweatandtearsbtsrobloxid\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96fa6c568b24181b62f4da57d1b12948ac22701a31b420cefcf61e92e9e93aad", + "regex": "(?i)^https?\\:\\/\\/bloodsweatandtearsbtsrobloxid\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "885b8c7ae45d3ce895f06c8e3519e8de5531c5b426416b9b476b00620f9c163a", + "regex": "(?i)^https?\\:\\/\\/bloodsweatandtearsbtsrobloxid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "832816fe8b66b0098e0a1c006588bd19a12b1d72d629b04639c32e211561a478", + "regex": "(?i)^https?\\:\\/\\/bloodsweatandtearsbtsrobloxid\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eef43b17ef7c3fa64c7775bdfc269b5d5c5bf0c3e52ea89df500c3e6c3453f1", + "regex": "(?i)^https?\\:\\/\\/robloxmcdonaldsdecal\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5f3ff90d0b5524a07d3c60c1a540918f4a874eddee4934ca5ae5b1189b995e3", + "regex": "(?i)^https?\\:\\/\\/robloxmcdonaldsdecal\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc566e55d382b45a36dc7f6fb60996eff076faedd5a38835bbcabcd4f187f119", + "regex": "(?i)^https?\\:\\/\\/robloxmcdonaldsdecal\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fae2ee0b89b7c5eded57482ef85b315e7b071d38aa3696d9004bc3a848dff3a", + "regex": "(?i)^https?\\:\\/\\/robloxmcdonaldsdecal\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cf3faec47c95fac11e2f093c04cd76138c4cffde04d71bffb451236d469ce28", + "regex": "(?i)^https?\\:\\/\\/robloxmcdonaldsdecal\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aa50048166c8386bb9c4c08ba9ff24109ef90f38eea0b64a63ee6675041e0c6", + "regex": "(?i)^https?\\:\\/\\/robloxmcdonaldsdecal\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3a16cf98633ffe47a2ce54ba8c406b5df241b3a1ad01787f096ac660bdd8d15", + "regex": "(?i)^https?\\:\\/\\/checkmeinroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d54caa45dfc9e119b2202b9a22d2146e212ed672f014adb6b102e99e14ee2a0", + "regex": "(?i)^https?\\:\\/\\/checkmeinroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efe8f3665bdd084d6fc1560a423d37abc7d40fdc042832ceb05a56ec3a00acdd", + "regex": "(?i)^https?\\:\\/\\/checkmeinroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9203ef612530df06737a0364c609e3299aa6f1ab4d1a7560f533d07e03e69a5d", + "regex": "(?i)^https?\\:\\/\\/checkmeinroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "779acd9c4533c4608dc92d05adc2060f2491805ae17b20d31c07d7c80d8d5ee1", + "regex": "(?i)^https?\\:\\/\\/checkmeinroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c45595709622e53a1365d40a1820eef7291a2d339b6ab325381d424a75438583", + "regex": "(?i)^https?\\:\\/\\/checkmeinroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "faa0786740e2788422a9e5774665221772ca398968661e46596c4d4fcc5e6c6b", + "regex": "(?i)^https?\\:\\/\\/checkmeinroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64d1c51fb83949013ce2a02f06deb49975a61cdf7f264b986d49b0119d1b36ce", + "regex": "(?i)^https?\\:\\/\\/checkmeinroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78a72b1cbe6e41a9131635f9ed415651d6827291952f1cae931249a00076864c", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e55b364064e1540ec767877b6af57faf80a00bf07805b3125fb2aacb944396b4", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45a4dd6e70cbff2ea8391ac575ed52af29f687ac5312c8fc4aeeb81fa7cf539a", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b2bf261906b51b8373ccd06b1111f580552e75a663827ece4687045d63b2b29", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a56cd1170f76402da34a3bf33d4b8cea8bfaed15ecba955851f7eb5032ecd5c", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c12bdc5b7d1d92221493c3b9fdfc7e38d27eaad5a8e5a8b5e4979755396ca1", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4145c3183cc238096a4f7534ef16eda95b8ebe550cef6f78c1e9f724fe67b7b", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91f52a896565c6df056af9dcb2bad7d279079813b2f688a5c1a5037316333b48", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7be49b5525b931c0c8e3e25ec7303ccff4a3f2aed04e44fc1c049441e62f3a5b", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "082449175435b4ef43f82d536471f7092472bee4b0ef9d69ffc44b4fe78f69ef", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea8cdf8b721ee7c456fed55048b53c8913546a8b9b5b73b74237d1bfea2d32c8", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9baa021887370c757cabd1b60a3065a8276d0583a64bcbf40fb88b54c8b67ac1", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cedf6e9395127e9c3f92f462776c934e606436a16032b0c687f0c49f01b058ea", + "regex": "(?i)^https?\\:\\/\\/hackearcontanorobloxsemimail\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "829e2d53d9fab56b1ae67025b659c411fe61d7f68721a2b2b0546ea33235cbef", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b06e7afb8287fb2373cc2c2a5e20e3e6b97051435e7fb85d3cfcc3eddf7feef", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5d39b939e2412fb76d9e24cd8ac3d21d691def7c6f4a31826c8670c6031d297", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c79adf5dd6bb1b48109d7dd666962c5afccc4ab0a6c62c3c3a8638db4bc7061f", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caca18ef5f9c0f5e4294820ee270d22d15796e29eec5cd1e65b0ea4b7f32438f", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efec5bbaa1c1fe29f41bc2abd28fb27ce8da5a91a453c56164a11f62b63f8495", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0608d95f97ec2d597b54349b2bfd3f5cf3de910644de15c4c36d5854d8599da3", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ce3c0ac4a59d3ed06bcf56fbd27ae558d3863b80ffa35ef1277a2189049df54", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5df907b088a7fd21750581a3e31d48659f7496cca66168329b7c024b81ef1f4", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f557f727c3b8f2e72ec4c967593f36a90ed906988b7574f7c255a3277227e94", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b19620a11cbe05b02dda33ef523cdf3ac04891ffe8efce077464738b6fb5f73c", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "578ce3dd36ebabff48b62a2b7621297642e4d0359b2acc99a497e327c66b411e", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardluachack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94a125e754da1a3a84293629852fea09dfa6a047b07e880e6c162c6965e39858", + "regex": "(?i)^https?\\:\\/\\/robloxaaa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0058fa9e8cb5929c34e89a441d4367e66c40c615a95f4f3a625e0ada303af6dd", + "regex": "(?i)^https?\\:\\/\\/robloxaaa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57d003792d86175396549030f1f14fecbb512a3eb89f49c9a1e3c21cfdf22ef0", + "regex": "(?i)^https?\\:\\/\\/robloxaaa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00334f7f05c54b7fced685997a2c62fd03175cfc1c096c848fd1e9cb55d911b4", + "regex": "(?i)^https?\\:\\/\\/robloxaaa\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cc7dd829b1d27806b90d07f3dff1e682ffcb1025889c0614f90bab62bb7f676", + "regex": "(?i)^https?\\:\\/\\/robloxaaa\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f9ab59259cb36c57e610c95a0b0a6ab2be162fbd43257e130020c798ef635ec", + "regex": "(?i)^https?\\:\\/\\/robloxaaa\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "655103bd0ffcf02183a881325530c86aa483fe1022fece884fe84f923524eaa7", + "regex": "(?i)^https?\\:\\/\\/robloxaaa\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cab99f455f755bdf586215e134ab9a1a3a3ca9cd66dc583cfc2901d449c1aa5b", + "regex": "(?i)^https?\\:\\/\\/robloxaaa\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7170fbb7d396030bb385681ebc53168cb05be133907d4adcbf4b20f551dc03c5", + "regex": "(?i)^https?\\:\\/\\/robloxtokyoghoulbloodynightshacksitev\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb612d176277f7373cbe91f1124f83e1771b626ae8b3f9b3461904289d9a94ea", + "regex": "(?i)^https?\\:\\/\\/robloxtokyoghoulbloodynightshacksitev\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2220033d3ae003f2aaf1a017466d4e14faffd5fb545c79e809744763cfe3122", + "regex": "(?i)^https?\\:\\/\\/robloxtokyoghoulbloodynightshacksitev\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22a15fad7aa5aa9a47d49b4d27786c6105f53a50b82427b8540917334d6d2122", + "regex": "(?i)^https?\\:\\/\\/robloxtokyoghoulbloodynightshacksitev\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7763fb2fd2e6ccbac9ca209421114a4fe9c1fe0738b976dae18bbbc758b87676", + "regex": "(?i)^https?\\:\\/\\/robloxtokyoghoulbloodynightshacksitev\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8e4a78feaaa471022b7aba2401800494b94d7937dad68c90060ef2b56b1eac1", + "regex": "(?i)^https?\\:\\/\\/robloxtokyoghoulbloodynightshacksitev\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f807eeb19f259a02a84061416f643d0c883cf2e480dbceaa10fcfe326f0eb02", + "regex": "(?i)^https?\\:\\/\\/robloxtokyoghoulbloodynightshacksitev\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "253feb791c77beb73abc9353314c73dfc26ab35808ce316b6f11aa31bed46f13", + "regex": "(?i)^https?\\:\\/\\/robloxtokyoghoulbloodynightshacksitev\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "815247b1e04fda7d60c76bbe5ddf24cc787a35562c6953cbc36b85e3b05df317", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64030da24944c5b3efadc431b74a9f42ae7e5978726a694c2108156375ffaee8", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05da18ff8c427e308804089fce53581b320246d4435f2c9f37827e71935717ff", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "550f0651ba83c4a3d4829f7b5713b28e7cb3bbb95f0ed94ba75594650ed025c5", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c635544318351591c280187ebd61045db35c1b9bb0cac3553cc0359cb617a66e", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e4c253ff031a2f3fcebeae41e76f511052b7f6bf64372c794a26ba1ed44bc34", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "257c0455d8cff14de31a6ae621a8f0fbeef881c400a7cc86df02d546d94b1efa", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fed48441ce3234fa598fb27a2029fe68b08480049c035492f367656d8a218670", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b584774f05c375ab36a0fbb60bbc6b57b39f2814dbf5eb2ac3c9aca445711358", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b00b8b07820527c9e2b348035aa99da613235e7875ffe25798f080519b70b542", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba8df5e717e9c93247041e2ccc65183d137b2e80105154b8098898c003e04149", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdemoutanharossa\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "049c2ead9dfb9456f8e9e212083c776f003724c8b145d622a43cbaf152ce91f4", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca69c1f9cd08c99b6251a29b34c82505777fa8d460eb3789c4c2f262ce9cb6a6", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "123055f76d3b29e6c68548dc1511ff0853ee20882d7856832cd5f65e8ec05231", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f724d23a2bd1f8b88b64fdef265c23d3ef4cb093c0933ac780499bce4bb0593", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f756aa319ef3d38aab3b45f7f59776689804e7d68053dcc8c4fe2949ec3032ff", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f99aaafc54337c742389f00da5f61ce2e936e41e52d82481a59d1721d4f234e", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e320670200c8c90395283b7081d076bd92fe39fc207df1dc94c7cdb127fcba6", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9694258a627618db6a962dca0ff802b93d4ecaee94b36077ea53db7b431618f", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63dd7b41e3832c46198dd3dc41d399734d98bd6b183fed248e5e3587b4b19a8", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6dbf8f2efd4967141a7ecd796fd8723a0d1a2d21f1f51da66adf0fb3e554170", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b90fffef037b777a3d1990dcfbea235c969228acae873c8f3134ac1e2b0fd0f", + "regex": "(?i)^https?\\:\\/\\/codereducaccessoireroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5f0bd077f423f5e0b9427926272b43474290bd21997e1d77bf3aeb94b31dcb2", + "regex": "(?i)^https?\\:\\/\\/ilumroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4c154a31f7fe2d379ce3f718eced7e7a3536c4591b1b4df9d3d19919c0d11f1", + "regex": "(?i)^https?\\:\\/\\/ilumroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fd791d6ceae455ed916cd6d9a5857c8c037db6f6655f2f4568955354ea97f43", + "regex": "(?i)^https?\\:\\/\\/ilumroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3e61ceac98582b3836065257454f6ce75c981103d8157662720b5b58a9c359e", + "regex": "(?i)^https?\\:\\/\\/ilumroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dba5ff0a2bf042a4a945cbc8dfe932b8e6f4804b906ac04a75291186fcac8e8", + "regex": "(?i)^https?\\:\\/\\/ilumroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d704cb3d653ba6b1eacff077db130b5ed3f72af0458fc2304c9ade5961e5563", + "regex": "(?i)^https?\\:\\/\\/ilumroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed0ebdda88105fa72ea40c2975cd4f95d969ec139122992d57d8c8c1755651e0", + "regex": "(?i)^https?\\:\\/\\/ilumroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59f20566ed3f768ade1ec7d8658f0a512937e6961038e2e01efbeeaf19eeab54", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bae320b2da405b5d8ca6f161ab1b8c5c6bcecd05b123991ad155fbbd6e5c21e7", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bf8787eebde3cdcfee6e7694731238ae3aab4846229636f8ad362b2a9bd5aee", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4398ff0c0a5873f6e5e9b0b1607f0883b845aa4637988273858365457d86765c", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52c6f3284ceeee88f11e75867b8a512a7145fa2e71e54fd5a3978f9b20be8e85", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03c0a62560e35e831ab463925ff921b32c7053df28d31d0d5878f1ad071921b5", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a80d41dd4f889b27bc419dec75c72aa5db1a8d266ff0fcafb5efd58eaca7c82", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41c6ca3fa01ead8eb7d14f75050b9e22cf9c8940730e44c3d0f168633f7d6cf4", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446d67003603ff2bde141238f3785aefc5bdd947d498f6b1772fab2147f7902e", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e5fa69c3a9432e62ee82b933d6ed47ade0e61cc251f1669250bec08457ab15", + "regex": "(?i)^https?\\:\\/\\/codesofpinewoodcomputercoreroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a2a75f3b71d1bda418770433fe4c39bcc856b6d40edbaa4aa32c2a258552b6", + "regex": "(?i)^https?\\:\\/\\/disasterislandrobloxjogo\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b1596d6b5ea1eddf264e90caea46c7b9c631934acd15ec2565b586e2c3d6b0d", + "regex": "(?i)^https?\\:\\/\\/disasterislandrobloxjogo\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04c42fb92f99b24869cf9918ac1eed345c055b6362e07de12ffaf588b7e703e5", + "regex": "(?i)^https?\\:\\/\\/disasterislandrobloxjogo\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03d93cb7d0a5a50c8d08a167ae2abc99b2a673c2d6b359b82b5a3a87f144094b", + "regex": "(?i)^https?\\:\\/\\/disasterislandrobloxjogo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "112d309a18803200402d254ad5038e34014fc38ae9a4f61683d45a193c7cda3f", + "regex": "(?i)^https?\\:\\/\\/disasterislandrobloxjogo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b25944fcb7836055476f270da2745e155b1526f1dbb143fce4cf25d3e90eba", + "regex": "(?i)^https?\\:\\/\\/disasterislandrobloxjogo\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cb7a8dfb7ef6a07031916a2d1258789ed2626ab47d93a4920c74d6afbcd2d92", + "regex": "(?i)^https?\\:\\/\\/disasterislandrobloxjogo\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c959c446e60d27ffc479241ecd1cf3b12324d397577497ec17c796857738e8f", + "regex": "(?i)^https?\\:\\/\\/disasterislandrobloxjogo\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c9886cfd30ed322ebf36cd36f50896e0bef9a0e8fd7ad3d649ed1d7599644a", + "regex": "(?i)^https?\\:\\/\\/disasterislandrobloxjogo\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "308da7cc77bda98f255b089333a31bbafa558c81bbbe42af31dfda65494a39e9", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforriseup\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcba071ea9566b47009d92a423fafeb158cfacdd468161bc4cf68a67eeb804b4", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforriseup\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d26122f8b4fc027587fb81926b4990266bfe288b60124057ad70f007ffaa222", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforriseup\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3dc698d08bb140610ad27e863eee6de690575ff3a513f3d2eb6f7c2460a2dc7c", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforriseup\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5623f6940b8f2062d0f610c3a6bc8d60fe65b4faeeef1a65185947cf6f4488b", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforriseup\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7d42f2affeed92c5775af69bf855e70e74af77989e7bdd1fa6668bf56dd7a7", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforriseup\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3df92d5ea1067d92025e6381684c796b22f04853598f487f261ef879ea47549c", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforriseup\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "548884064a09e74a57774e505a4867a2d9d417efde290a60aba173f4ed496bda", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforriseup\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82415ac00876c7dc31766b0a11826312e736690db5009a08d38def26aa588263", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforriseup\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01c87b9a6ad2c7f6487cdbd91a8a11a0e04f634dcfe2ffbf8db284fbe873b645", + "regex": "(?i)^https?\\:\\/\\/hackphantomforcebetaroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04defaf2f5e737a6ee1534c7348d06cda35611146fa171ada2c4625ee6abe05e", + "regex": "(?i)^https?\\:\\/\\/hackphantomforcebetaroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "862f7bbfddbfab72859270e44714f2502dddfaedbdfd49345490e84e5504f173", + "regex": "(?i)^https?\\:\\/\\/hackphantomforcebetaroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5137f25b624fad96cf312c78537dc7ddeb35ab8cfe0e67d8467070296ae5552", + "regex": "(?i)^https?\\:\\/\\/hackphantomforcebetaroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b27754d82067a599062cde7e83e6e982b642ef0697c4a844e90b81e6ef4d25fa", + "regex": "(?i)^https?\\:\\/\\/hackphantomforcebetaroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a923a09fb4de605f6625d13dae9a9b38912d2d955677f3aca8e715071a5b0f6", + "regex": "(?i)^https?\\:\\/\\/hackphantomforcebetaroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13aa2ace56883bf58b85e933059ecc4e1cee5a26422ece5467cc81a739bd5bc2", + "regex": "(?i)^https?\\:\\/\\/howtocopyremotefunctionshackinroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8318f870a52be85fb8edfc23067ebcf10049893548e6bd5e4f6434ca10f45d56", + "regex": "(?i)^https?\\:\\/\\/howtocopyremotefunctionshackinroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e7e1ac8266527e026089fcdfaf30e0572e4009036ff7e0c9676aea116b5b301", + "regex": "(?i)^https?\\:\\/\\/howtocopyremotefunctionshackinroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09bb13a65780f1fbf7fb5da0edbe4babb255e682e6fac2fb9883911f278c9492", + "regex": "(?i)^https?\\:\\/\\/howtocopyremotefunctionshackinroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f35c0a44966877837cf8fc8112c5159f52a70b8cfd60f7ef4766dfaf1a6f02c2", + "regex": "(?i)^https?\\:\\/\\/howtocopyremotefunctionshackinroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "161d04c65e763f0414778f5fc157f42eaaf57b1d08637cc525bfbe384eca68a7", + "regex": "(?i)^https?\\:\\/\\/cdigosparaojogobeyondroblox2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9030a5d687f4cbf806fd506e4db21327017a3fbf5a9b4f8be07e756a68ddd68", + "regex": "(?i)^https?\\:\\/\\/cdigosparaojogobeyondroblox2021\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f61724d0ee3fdb692bf988c6222a12df5a8de89ad7149649f1743a28005645db", + "regex": "(?i)^https?\\:\\/\\/cdigosparaojogobeyondroblox2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6674539b4f2ccc962b8ff272a0fb1fb2dcd30a4d76eae2cfe0e2b22ef159bdd", + "regex": "(?i)^https?\\:\\/\\/cdigosparaojogobeyondroblox2021\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "041e922f5b085d733025e3d6e9c724dd3f9ed698da6f5a3a18e55c7240ff0fc4", + "regex": "(?i)^https?\\:\\/\\/cdigosparaojogobeyondroblox2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9abab09476e0889342d7ab25bf530652db87cebb55618f68f5d1d6ffe4db3e7", + "regex": "(?i)^https?\\:\\/\\/cdigosparaojogobeyondroblox2021\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b45054900b657668c9a62ef6be58b8fd4cef6fa1411ff53e486d66adbabe0bb5", + "regex": "(?i)^https?\\:\\/\\/comoatacarafacanojogoassassineroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80773dc16e2eea26d5761c563984ba765b98d37006c7cc03ebf48a989588b2b8", + "regex": "(?i)^https?\\:\\/\\/comoatacarafacanojogoassassineroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b3d0976d28784805144e1b8528a23a773e599375c78e38e0812c48331d59d3e", + "regex": "(?i)^https?\\:\\/\\/comoatacarafacanojogoassassineroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d3d5b3f84fc9ee1d4e15222bdd1e9bb1b2117de83fd6a0a2c959ef27b75a5dd", + "regex": "(?i)^https?\\:\\/\\/comoatacarafacanojogoassassineroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b01cf1a7f06ddcba956b0a54c0a92c3ac193d5a69a5e7996c5095220e0d6555", + "regex": "(?i)^https?\\:\\/\\/comoatacarafacanojogoassassineroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3dcd9e46f2a884887d18f28a242e907e00fea72eebfdeaf7810ee18afdba24c3", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021enfranca\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05954a31f0c4b1b8ea861945d4f8c7733d4dfc280dac9553f893514163a9d6a2", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021enfranca\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3276e6fa98dd839fdab357695f867eb9dbe9abfbf0e61441d67f48d5ebd5eec9", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021enfranca\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc9155285e5ca9f5937351e2668ecd6a8af51faf937d55985aeea699b49638c3", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021enfranca\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1ff61e67e9ae33166396dbfe84123036db513ec8660c088a8892160f265e1e3", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021enfranca\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7be7098ad4581024c010548b7baf7071d6088ad74fc4da1dc566ae8924f244b", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021enfranca\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e29b88235cf9a101eb7ced433d5d42f853832bb644e76edd8a431129c00b85a", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21f7cf6a4abe68c5bf821eb2faac7fec0160066eebf6e2bcf08cdbdc7530bcc0", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6461c8ff5c4a14ced0296cc589063e9148fc5d6c57e80085f535d75d82fa21d3", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0897095d483fbc79e13618882f0008a68157912cb1b062cb9059c19fa180937", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dce125e6c7b978584784e6f2de6a1b4ea3e16878cb309a402f08dabd4c321e12", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ba2a38c7ad554c963676744605c3d51f7c8ffe769b81e574a687e7703ceff46", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e17438095e63744b168dd505946229abe7a13f681bcd119490f617a0aa89d47", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef1d0ce9f5c5aa0f8af831a60e323c60ba74d75d5cd78124a6d4f835475c03e3", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccb5d8b8b17772ff3a2a49760fd5f932dcf18322fc58488a5cb507db2ccf6d97", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d15debe84e1c0c12ed4208edcf994a678a8ea8ca723236a488cc16090a642790", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dda03c0ce9b9faf0b1c9ee6f025149dabf0e035112da18b65c9766b5120c4b0f", + "regex": "(?i)^https?\\:\\/\\/earraperobloxmusiccodes\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b40cd3d0926c31921f05925096edcaf9a95647822372767f1ee552805c923bb7", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa872391e5fd0f5314519a6e7ab2a0c8605201f6afbe006219e036dea7a53e8f", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae6c98808718d2fe09698d47d9750afabc461f1c1edf40523bb713dff82b6cf9", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ebe342803584f3d90e5fa5600df635cc21620dc3877c7f05aabd18afcfab4c8", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75df59f0fc073216d71dc3cbf4f648fcdf1d2a519778177249e1f57b33587666", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4f08b2019b946893bf9b721d1b0c8ba1e3b1e4c911bc2ec406bd5d9ab320b26", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b004a7949d17bb91408e19b7dff3a3ed2e696b22abf28562b02e61046aa4e58", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "090dd99fcec5943b32cf15fccc9491eac87d77e888cd0384832962e7d6d537be", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9bee01baeb683c760da139583a52f7b0d2535cc6c21961d63ae382784149cad0", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6ade9bb9131b99b2e69200ef8edeec07c83f4c54b7bff9d0e16c3bbb6628ca7", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31df257524e0c94b62313698a76635c18254c3a3e9129049c136e50b7659894d", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9658e77adf9d5f4f9d57edbc96e68f9853a146a8af7f48ccb242c257badbe0dc", + "regex": "(?i)^https?\\:\\/\\/robloxhackmoddownload\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814ad78092da784c5f021d0fd30c1f6984befec95e5f485c19739bd05057125c", + "regex": "(?i)^https?\\:\\/\\/robloxjoystick\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b07f05f088c12d7b2af61085f7dc21774c100be5f8a6ae29deb5fc35a23d2c89", + "regex": "(?i)^https?\\:\\/\\/robloxjoystick\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6e74ee2ae04c0685ad84f03459c3ca70208cdcf0405507b7e42ff9b165a120d", + "regex": "(?i)^https?\\:\\/\\/robloxsetprimarypart\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5858a6f989dff6e9162e13d024389bfc9a9172e77bc951eed400c195c6a284f8", + "regex": "(?i)^https?\\:\\/\\/robloxsetprimarypart\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "710a9af1dad9eb34966d1491b5e4389385f945e011679dfdf4d7d52494db07fd", + "regex": "(?i)^https?\\:\\/\\/robloxsetprimarypart\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c21dfc44700a195ac64f82b98d16324d519c6e17d86e3dd4c77355cefd9a907", + "regex": "(?i)^https?\\:\\/\\/robloxsetprimarypart\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd5b998b31a343afc4130caf39b89d1daa12506acd2b0c7e2423268b82537077", + "regex": "(?i)^https?\\:\\/\\/robloxsetprimarypart\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44ec96839752a9e8bf8dab2f280f631a9f1444dbfefcd01dbac6d01805085b4d", + "regex": "(?i)^https?\\:\\/\\/robloxsetprimarypart\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49efe28953d33cc53c3d04dfcc46af7c70d7b2343b72c1919202312b0668f0e2", + "regex": "(?i)^https?\\:\\/\\/robloxsetprimarypart\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccf97a5284eff67ed350bedd02ef8f26466fb9049f254e3833b46cc9cb2c4c50", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be5fa69fb33f3f519a9c944be0ed08d13a024c9accd41de1594d16e7e17fc370", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dee3a80ccfd471d11395acdafb8a9eb68ac99e94e396e8e1ca5e38d1e37f5ff0", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d47b4f8290ec18b5851e22891f764b64c549701a793825174d059570a945975", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9769be6d24ddd6770b97661c5aebf65cec0cad3472536439f3b62fd917cf571f", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "313998e1531394e150d8203a728bd5f75d8deefddbee50676e20f71315d6122d", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73b21e792de6d513e61926fcf150ecbca76bb2880b41e0c9da376cb397e10c72", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e507adf93510c9a9d36318b3783bc18b8b9ff3a590f40fdce504eaa67e0a0f6", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cce1a5a02b6cff66b9c2b0ae17923e240eb52c2c96a3133635eb56724e2d5019", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbb8275b9d5b965bbad2c981e991087de1ff52e43df824b1fb67c212c7f75227", + "regex": "(?i)^https?\\:\\/\\/codepourbeeswarmsimulatorroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "003e55aa5349e05f6f467b26f3916413b5bb82f27a8283c92073fde8b4b6e757", + "regex": "(?i)^https?\\:\\/\\/downloaddorobloxcomrobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1997d395c7ac068b95d7f3091cf9d5ad220023835154d451c48b548d606dfdd", + "regex": "(?i)^https?\\:\\/\\/downloaddorobloxcomrobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "322f0f9afb9c0970302a5a06ed88aa4f1878166c113becdf272268a394426127", + "regex": "(?i)^https?\\:\\/\\/downloaddorobloxcomrobux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "792061a856e47dbc0cc77d924b4589befb448ec27bfd243f9d795a0bff65f3a4", + "regex": "(?i)^https?\\:\\/\\/downloaddorobloxcomrobux\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65e8537f3c4551a1614d398beb1abaf2063503798091e3d6ee4729bf3dfde6e1", + "regex": "(?i)^https?\\:\\/\\/downloaddorobloxcomrobux\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dc9b08dd3ac6635bf9fd049894ce347f4d1f48e823be80303300e56a4fbc1dd", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopc2021\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6170d8350f2d68405dd1c90b7b92aa399e064933396d8bd48e37554c612c03d", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopc2021\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a153e2cf91d100aaa784156704cb6aaef50601f167df302caa68784347fc4bd7", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopc2021\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e8617de32638fbde8c888bf01877902c75a0d85155be8131463148e00025eec", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopc2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ff842e524094d626a956ffc869865b8f627a5b6493738d9513a148daf52fb4f", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d72d6bd4c6aae7671076a0099f5e0daf7be8876dd6e7a1d203a1b659b43089", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "613ff89d955a66550a0d92541bc382dca81bcb88ace2448968f66e58700ac4cc", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffbb700c6975c3cac7f821b81bb5e74e22e4ce902c8d109e140841d723af9431", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d574a1d1274e2aa711828dc60bf6f6bf451574e36f5e3476719df3af74cd693", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09456fbfc4a5bf14783213d7ecb6a08fbcf1296a186675de53ff679bd83c1b9e", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a32553994ede80c57cba2011cb05dce4273ea72edbf2b524903d67aaf6beedf6", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6980c82749b8ed0c4c90d15f6ae6477d9031c43339de26ff1825c80f249a6bdf", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba96de735d90185a7547b96aac8e7c4db96930ca062fabdf606d738916f07376", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae9623a2f64bf60a7bfc3cac8c2760d900f41346dd9bdb9acd98701f4fbdb239", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96a2d4cfe70da45f255c0e9302ffdd2587bc8ad6cf833ceab127acd0e47df952", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b024e8f42f665de1f1cf87cbbca4dd4e4bc7bdcf3e41577c75b82180a8c73672", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f087d6c33e991de79be2b89701047af460976acd03991bd778e8e45950d48e3", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97c67c8844bba6c4d47b90433b4c58ee0225d2e9bf33c061f1830e9c814adc32", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9fee29bb675044a8c5775f67ad10240ff68445733de28e73153c99d4c24b410", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c8e7c622cdc20453ab932508cc5bab950244cc528582c23bb14801f4615ce2d", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f75056df3af6b093141c9d91080c8cb7f42f9bdefb5a7e11ea872f7a6ef720ff", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeea177a6c3641e043607a73ffdf8a7ff09d3e1ed690c59128ec3293706df934", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e80f9f9825640d02d78aacace0b262311c78ba9920d56f9fdd21365fe380f4f", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e796a89f6aa67364040af1fdc0f00858eabeeea0fc4e8229d8d93e670f05cddf", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b18fefc59f9f820b0a73cde1cea526839f6c17625b5c0788942a69ab1cce7f74", + "regex": "(?i)^https?\\:\\/\\/offsaleitemsyougetforfreeinroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e16b16b4148c743cedd68b5956da56085ad7a1096dd4f5adbc28f01289adc606", + "regex": "(?i)^https?\\:\\/\\/offsaleitemsyougetforfreeinroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3993bbf6a50726dd378b8f1e69df5cdbf4ed0d596d4339920fe25cf09325d823", + "regex": "(?i)^https?\\:\\/\\/offsaleitemsyougetforfreeinroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "186dc9cab367a1b1e8de89d0adfd4ce443fecd70121a3c10e7bbffcc20cdb587", + "regex": "(?i)^https?\\:\\/\\/offsaleitemsyougetforfreeinroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c5455c877d83b3e09d2ee8e09f8fdf39fbd692230f99e7af82e76f00605b51d", + "regex": "(?i)^https?\\:\\/\\/offsaleitemsyougetforfreeinroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c069a9f8eac8f7a341d38126ae5a298f5e6817ea4e1cd3775d47b824f3e0f20", + "regex": "(?i)^https?\\:\\/\\/offsaleitemsyougetforfreeinroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4991201520501c82225a0c90cc993857b36478256fa914b212b35b03bcc9abe7", + "regex": "(?i)^https?\\:\\/\\/offsaleitemsyougetforfreeinroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "842f029a680f044c27f662fea41abfea7d492dab8368c528b3fb9e012a31e247", + "regex": "(?i)^https?\\:\\/\\/offsaleitemsyougetforfreeinroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57a6d8ac621780dedac1ed5a80fb864291f57a96a389bcf1a553c6f1490cc187", + "regex": "(?i)^https?\\:\\/\\/offsaleitemsyougetforfreeinroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b59194b1703a15e05a6bef12953ec478d83bf27ad5a1b724a51d0c22e31b059a", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e8595c272355ac5ef4f46e4a60b7094e8ce4b773ec64fe41a2517ec25065c55", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a32470c060d34191ef333cb857f03d0bf00f9fe5a073446a7753c4ef50c19017", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5e4f4389e4caf36975ec091165b1a5a8e101bfbc6360eb089217bbed7f6662c", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "916bebf0189db47f65e76bfe6567f08fa1cadb228c355056c1792c031ad6baaa", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7a5771172d7033d02c9ea1e9b4a2fba9b16edb89167e37515289b6d6ffeddf1", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4edbfb34af94a9015ac334fc330234c7ff4f7b95f27bb239305c22dde73f5e6d", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "877f1e9727ca84eb3baafebe51e42c229b353c6d43818cc17af4959c3788df2d", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d55104f219d6d57f794d12957e99463081f782b4ab3ba2a75867aaee2357cc98", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d99126ae0cec54cb8312e07410141275645812ac7c4a743e02f05251d5515220", + "regex": "(?i)^https?\\:\\/\\/freeworking2021robloxaimaimbot\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76d3b38278dca17680d58b4819623bbe1119cc52b732edc54d52ded49b21cfc6", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdbzrage\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9777476b9f8801b23fc113d6927b6d11f6f1faa0dbcabbbea69d85213e030923", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdbzrage\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6288d06df7c3bc88cb4d40fee503593718d203cdf11303286260173cc862da8", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdbzrage\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0c6ecc9696a470f7de8251d760fd92f1dd5bdb4d40b8f993a5e33ad2f2530fd", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdbzrage\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e4afa39b898f665aa871976f1d2295b0bd76a466c3a13f76f1d72a21cb8a573", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdbzrage\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "138464dd1030a622b7c1eb99a76f0ba1d05a5acb90b14561574c35067559daf0", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdbzrage\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c4ee3968b3088abc80877e6aa934c91d63918d6ab0b826a91f430450624eb63", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdbzrage\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c37564dee94c011227eb3e6c351ade58c2729008ad6c94775dea65c91c7f3cf6", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdbzrage\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f9bef0248407a7cd4994b9b791dde636e76104df564d3784fbc415a09d0f98c", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdbzrage\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cd854632a9ce83705446cbce725bcf22712f3501a033e513edbe5f02e0c12cb", + "regex": "(?i)^https?\\:\\/\\/jogodedinossauronoroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6edb60cf389167ac57c1006c166d0fd7c05fcf30fce82e147c9867a8276d61d5", + "regex": "(?i)^https?\\:\\/\\/jogodedinossauronoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1232c627a3127c4c88fb03d4f86c71f463c60575f625376c065da01af3c9aa5", + "regex": "(?i)^https?\\:\\/\\/jogodedinossauronoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbbbc0b63b28c26d214d6e86f66df5c8693e2cb9be9ae1532a9b2c493d833775", + "regex": "(?i)^https?\\:\\/\\/jogodedinossauronoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d541bf42f5cd63ac324c1c541ac897cabfae4e68f35d0d45ddc3a48bc81f7b56", + "regex": "(?i)^https?\\:\\/\\/jogodedinossauronoroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3ddb15e114b87d5119c462f28060a201e92b32df6172e74a7d58aa06484e0eb", + "regex": "(?i)^https?\\:\\/\\/jogodedinossauronoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b1a7c3c5cc9114168b1fabf6d9c67d9e22c3639d2d8ee8bb045742e63e2c6b8", + "regex": "(?i)^https?\\:\\/\\/jogodedinossauronoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c97450c3decc46a51d43439f40b8b9239e426cd3ed42043ff61f792a8ebd374d", + "regex": "(?i)^https?\\:\\/\\/jogodedinossauronoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5e3f54886d4af8b865d31dad2a42806b164ea4bf0a3c388520b5ffecfaad090", + "regex": "(?i)^https?\\:\\/\\/jogodedinossauronoroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09bd0621061ba7580f36bae1c3b91e7ad061a82f2ef863380816eda7238ca0fb", + "regex": "(?i)^https?\\:\\/\\/jogosonlinerobloxmacacoaranha\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "604b66a589f794eb5bd7908b1e04fe24575ee3c04bf70c8fe5b21fb6f309f235", + "regex": "(?i)^https?\\:\\/\\/jogosonlinerobloxmacacoaranha\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54c94059dbb1d519fbc98ec3af66e87ee035504ce71b023cb38b59dfbe9beb7c", + "regex": "(?i)^https?\\:\\/\\/jogosonlinerobloxmacacoaranha\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f7ce03cdb2a90f8bfec8d77aa90010926895a5d4edfa5ad01b910be7a262f9f", + "regex": "(?i)^https?\\:\\/\\/jogosonlinerobloxmacacoaranha\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c88e36e10b97550fcc33c2e5b569ba05c3542a3d5beee96e63562ef745e1c801", + "regex": "(?i)^https?\\:\\/\\/jogosonlinerobloxmacacoaranha\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd30073f8360488de952cc80d8961123287ec4b376cffad2f239595d1a6bc8f8", + "regex": "(?i)^https?\\:\\/\\/jogosonlinerobloxmacacoaranha\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09d17d6604b213b1bd3f395c35aa640e54163345eb0dc6aabeeaca9f76ec40e9", + "regex": "(?i)^https?\\:\\/\\/jogosonlinerobloxmacacoaranha\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab7d09d3f5012129356d2ba0ea34f2dfe3a5505960f34003d8b15428a3770efd", + "regex": "(?i)^https?\\:\\/\\/jogosonlinerobloxmacacoaranha\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a45a8e281c0f20f4918e5954099605afa8044f9053028f7f81500a52dfdab8a8", + "regex": "(?i)^https?\\:\\/\\/jogosonlinerobloxmacacoaranha\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d11d2455c657ffc6265390952f28654082818d6a26ca86ab95af7d83e6bc03f", + "regex": "(?i)^https?\\:\\/\\/comoacharaultimaroupanojogorobloxscub\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77d2b3f61166a231feb85b7932ac1b7ae8c405e56f386dc8a068cf86a6b72604", + "regex": "(?i)^https?\\:\\/\\/comoacharaultimaroupanojogorobloxscub\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ff5294d1e48c36660fa6d97734d4261b40a8296a6175c2b81b41cd183814c50", + "regex": "(?i)^https?\\:\\/\\/comoacharaultimaroupanojogorobloxscub\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89e75af97a60064b894305c6b56e4a4fefb6d9e858c9c35dd982e4a163f9bb5b", + "regex": "(?i)^https?\\:\\/\\/comoacharaultimaroupanojogorobloxscub\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e65f033270ef078c247914dcfd971c2adfb61d751637882cd8c1fc3f3fcc78f8", + "regex": "(?i)^https?\\:\\/\\/comoacharaultimaroupanojogorobloxscub\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e8c2085dea53491f3436c54a3dc9c9d70924c6054216284b27e07ff18148a19", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgcafedecal\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c2c4d7001be6bf98b027a03b0a190462967333be00aaefe3245ec76ee519ac7", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgcafedecal\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce703efa4099e74ce165fd407e22e7e4e1b6bfb5fac17f34dddc40e5c0389303", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgcafedecal\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21173b71ab1bcc76c15d0a5804ef1151d64d841428e7e5287d7afb4f26b2e6dc", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgcafedecal\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2763db627c7ded644510043a97c66d4546dd9e125061473c14ae4a7e2f476269", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgcafedecal\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66b0b1441b8995a9893c4dcd630bf7b0e788a60e0a22cfed14a5ff9cfef4a737", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgcafedecal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19d9aabca26b55ee630593788be11b28fd78a1495704c85c61e1c8b6e7978cb4", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgcafedecal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8b5aef9a5d8faf91ee964f98db63c926ba39b2a015bfe01760d48a74f8e3a4d", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgcafedecal\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4eef7d4644e9bfb71428209ebf5bb130e31f6c94fdf2ebda9d5bd1963810f7", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgcafedecal\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9c6d885d8a65277d78ee82fb060d40ca8a1bd6bae22a2fcb3a8d883951190c0", + "regex": "(?i)^https?\\:\\/\\/howtousedecalsinrobloxstudio\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a1669b422dc0e0d515adea43daaa222cd10dcc4f9b16255eb8cf5a56da91500", + "regex": "(?i)^https?\\:\\/\\/howtousedecalsinrobloxstudio\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32647d45655521b4439fa8928d30cfc96f35e774b65ce0042ffa4fcf2b802fbd", + "regex": "(?i)^https?\\:\\/\\/howtousedecalsinrobloxstudio\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8643799bbce489498295d66084e4ea0380f6e77c677f0618c8fe53cb22337786", + "regex": "(?i)^https?\\:\\/\\/howtousedecalsinrobloxstudio\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e2d293d1f571732bfbc0e0f7fc7865e4537ead45c78cb1e545ca3cc611aace6", + "regex": "(?i)^https?\\:\\/\\/howtousedecalsinrobloxstudio\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1bb0d4bbe815d6ad6356d0bd694bac21e27571ffef46c76de36246eb380f652", + "regex": "(?i)^https?\\:\\/\\/howtousedecalsinrobloxstudio\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b31bd23f590bdc247f2bcf31a4c1793f9cc56e349cb32d6757f567b4539b93a", + "regex": "(?i)^https?\\:\\/\\/howtousedecalsinrobloxstudio\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baf5cdf27d783ac63228f63d404e63a96728b4e4c8dee1e70d8049b70af77840", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30867b7dc9e9905168ba80f6a7b0ea92b606d952122e358e003499519320ec9b", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf49b565b26f015b8025b89c193ac9a3d5731742516d3bc68d10fb8d1e73681d", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6d4ccdf1c568875670a20e5cad03ddf58e30979d55f04510000c78ccce61e89", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e2b7f01c25ad8281a1c2311f82adee319fb25f1c7c8b82118420d2e18187489", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf6b219affa91221b1d4ec6787b12702cba2c59afc340861db62455533fbf641", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab292c268f6b6171250706e08e83ae3e677f9ca0dac9a490d9f8b38a5aab67f", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78b56535008e86fe550570bfba0a14d3ca112616719f9104c8c66d74266477d8", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ed00277357a67646718e48dcf55f12ca8b42c7b3a5927fad1721e0c1ce0d29e", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25d7ed22f157180a0b07eb4c46420fbfa19ff20e253c757cf25b2b33b4fea220", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a1b7169c3980016c0c41c22d6bc1491f43122d0724e2b24021013476cb4edbf", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccountrobuxfree\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a42f3b97650464cb853492517ba02ebfe00d5d646c8fca3efa20b5a9e1e5303", + "regex": "." + }, + { + "hash": "c76eeea8544aca4202917636bd52c4aeeda18f0ef8b619e05790956d986c64a9", + "regex": "." + }, + { + "hash": "945bb5457d43b524fa93883381cb07eccabb12e765eb933b9ccaf987f72b90ba", + "regex": "(?i)^https?\\:\\/\\/robloxdexv3\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fd266a4fa85b539752738cb53b03d64e552a6067b56c53c2c20ca74994a41c1", + "regex": "(?i)^https?\\:\\/\\/robloxdexv3\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cabf5df962c1e9dcdc50a22b4ac24d8107285b1063a71d0df659417bcae23203", + "regex": "(?i)^https?\\:\\/\\/robloxdexv3\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d387caaeb49263411c201173f77a6a869e1de5db4738e1a42b10656b670db5d7", + "regex": "(?i)^https?\\:\\/\\/robloxdexv3\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3064affea793260593822c05622950e3b264913887f3818aefcaac6751f348f", + "regex": "(?i)^https?\\:\\/\\/robloxdexv3\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8903b663861e9c131b469bb185a45785be67bd944361dbba0e1b015311a45c1a", + "regex": "(?i)^https?\\:\\/\\/robloxdexv3\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "202a3012de6b0800e6a570ae11e0d9974645c3a6ab5f0cb735709abb1fde1b39", + "regex": "(?i)^https?\\:\\/\\/robloxdexv3\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51d2b930d597a66b784b78518e03940d069c70ed559aa1cc6de9cee7c7b5b9f4", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4e13dd3d2251eb7297a3df4a4509088c268438423dd002075b1be36b326c257", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9b948533050b3914be389ce50dabf52438670863e1045cf526d203903789304", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce3a38b7f49d0663a6f5c5b83aa6fc7f5ace63390b3d26c050d5525d4d5ef7a6", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dabafd9ca5ad003f4c4e819a14719d3bada20b0b2a3be0fe4887b84c9cd5b8b6", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1671164b5ccf22f0553b13f53c31bc9fe01f9134866770eaaffdf2549651a1b", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b78cf3a3cc7d7256fa7ce52648ca4c1a74dc0db7fe568712db404cdf4c9b433", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446f656eaa9f288701d516e85be479f8fdb6e771055ee3709b60610397bc96a3", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d2caa59442382ac2ad07a095d605509a4971d290e55e41e564ee6a9bccfe54", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35edbf8121f1eac9820c9761fed5b205cefe886e8ba5917220d0d546f125efe3", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48f0836d7df373e38bc75d414899c724eaf21d667c88dc60fd20deb4b777611b", + "regex": "(?i)^https?\\:\\/\\/lifeinparadise2roblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1942f46b8b8c84abe88c0a7476018e5c6112327f6883624936d8ccb2baa430a", + "regex": "(?i)^https?\\:\\/\\/robloxheadphonescode\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe755fa7622104e9ed5dd8c112e814f959c8f99a0f365c935310e1e0fbbf1cd", + "regex": "(?i)^https?\\:\\/\\/robloxheadphonescode\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed8c7043134f0be19e9fe30e793e66a14b718da2de2a54aa6392f709f10b16d1", + "regex": "(?i)^https?\\:\\/\\/robloxheadphonescode\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a718321d0cdaa478f4ba54a98cb65b4f7137fc3391074d47bea746afd37dfcdf", + "regex": "(?i)^https?\\:\\/\\/robloxheadphonescode\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dab8efd8e2eedc17815d89e2c701d97ba017aa0c483399ac1e6c3649e858785", + "regex": "(?i)^https?\\:\\/\\/robloxheadphonescode\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76378445b49b081dc7145ac6a9979423a5f74389f7172c8aec7d89d84d47f49f", + "regex": "(?i)^https?\\:\\/\\/robloxheadphonescode\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "305fd876a3e39cc721b182e443ada2089dbc477c464473e41a457faeb69a69dd", + "regex": "(?i)^https?\\:\\/\\/robloxheadphonescode\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a3dcd4a6b55ea164448f9aeb2cc30389ad9f413bedfa8fdc3bf66e1ca79eca", + "regex": "(?i)^https?\\:\\/\\/robloxheadphonescode\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f2a9c8c5044218184b601a294951c4e79a049844ae833b4074dac09244374cb", + "regex": "(?i)^https?\\:\\/\\/robloxheadphonescode\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c11c8c9b3a261b185c82472c9cb3effa32540d78c6b7f2865725c54510a61fd7", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7be456ef1852466ef18c5884e5fede0acc9c3d9aba3330f613270bb073cafb7", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4fff8f7cb42cb55337c9ca093b62ef608b89a90d8c5d82c02df20505faf3aa5", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd5438c68ab8eeaf91c6ac8cda73430027f5c35befacead9143e4aa8ee8f86f", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09be2b5b4a3ec7095db73bd95fa642c9ead7baa2ccb5f21cbe8e43db357dc525", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a722a0e49185a4bc500095748616b7e292eb5905091435c1bb17714ff1309415", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cb6816f9581100af9761cd3af04b661f97c7276edab464799897a623aadfcd9", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6f7cc6f0d84ee16e612e347e037487112bf52e8062fd3f4d562059d09454bf6", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "323141bf34ae109187b4f760d3a8a8c9031079fbdefa9c96f1ff0f28c5c25eab", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f553436012514c24dd814c27bd32ece869fb77ae4c7ead8d35bd2d3014c711b", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fe5d292395f5fe232c17ba1f23a99cbc7e5329b1519f7f5b067ec6997878a2b", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a641744defa0e8b32f0c393b846f89335fe2d0a45240f50a09a94e067deeca8b", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65df3635361ae19154b55626f24feca8db64b5509fa96b46096849b8f5242971", + "regex": "(?i)^https?\\:\\/\\/charlieheatsunshinerobloxid\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "343c0365de70eedc1664c5249318186fe3e638ad57068c01647337952104661f", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b67841f7ea2a68dcfa10dbebf9d194180b6f2fad6bc0653bacb01f4ce23ba044", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c3f8f74244fa00ef6041a6c829bdb11186dc7adbdb2b93a3a2e1914755fee55", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8552095f5d1ce05fa1d22ba2c5baf88cd0bb24129c7b23cfca8dc96de3a03857", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cbe43cbe88650b93097a9b30b0bcb2a4d6000dc1e5b3fa6820d0405a767f08", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c33bb610a5e65ad0adbe3742c7976065571e431c0342326ea21c353480fda8e0", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "137276da94c6272985a94227bcf96172125a45768c5d6dbc31e6ebdd2202a0ec", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab95768492c9b0b50ba4fa90488b6c793ea2ec3e96b0e7c54c6c556970b2e5c", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be9a3f8232d9d86cb1fc292c16c6eda5214e86f7479add70b76436ba69a6535a", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7d2ea6196e27e7ab7873a7bff9a926730972139e97e2a59c54a9e5e7beb27e1", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c8134b20653ca3058bee0c050e29106bbec26df4845bcd365c2776064a5c98c", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5eb2e2eac66fc6476b1c6df688aad37e361f42fc9c70320ebea631676accf197", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4443d34721c43e382f1777ba633cb1e69d150b669d950a7ba8041cbc4054f89e", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc789846b51070b02d0bdf6963e93d419090be2f9da3f4c3285fe363c655d7cd", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69b94a870755936f2591761537e0a7facdb11ae743375c49c0c788884f04a0b1", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7784d3b9cab3d7ba6e24dcb267f74318b6762d380f9552af51edb307ca760311", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe1735f4bd9a89869c09674a8247d3b601c6ca607516730ce83959e3250042ed", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c0930e9e3d86bcdef61e5ec78213007569c577b7ad214b6292d80b11db4db1f", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12162109b6d5a4a7ad4552e81b67fda74a6289bd27941f97afb346e7a197fd37", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96ce09d12cd4c8c1ec4e22c7806a856e366b7250afdb52bb6ded3a86ae318825", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85619bde2f1c7f4196b2d86ed32303870d7d0c6a79ad309b35a8f2507a03025e", + "regex": "(?i)^https?\\:\\/\\/robloxsuperpowertrainingsimulatorwiki\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d68dc025213228e5bcaaaabb192cffd9165e8b1200d80706cc50d8df2d1b9b5", + "regex": "(?i)^https?\\:\\/\\/reedeemcoderoblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a9852ce37ec10ee7186a5cfffa2b0290f3305c88a1280bac5ad2ff56100db5", + "regex": "(?i)^https?\\:\\/\\/reedeemcoderoblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7066f38ce52b35e9011475d273465a73de3aecc72e7657e5cb90f1de99238ae8", + "regex": "(?i)^https?\\:\\/\\/reedeemcoderoblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3411525495d1c3856d83f6f728e0f58f0a4f2622b2f870d0d88af20b4b85b48e", + "regex": "(?i)^https?\\:\\/\\/reedeemcoderoblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2398a50d7cbe00a5059dedeb43cc77a4910e4a88d6df3f8b8cd445dd0fcc0de3", + "regex": "(?i)^https?\\:\\/\\/reedeemcoderoblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4af1740564794fa26aa05560616357613dfe991e310a4aa5c67985e5a89f51b", + "regex": "(?i)^https?\\:\\/\\/reedeemcoderoblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c0412573911409780907097f4a83d710a06c3dec573be0c7db483ad5d333505", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "163ec66ddf8f3259f7025fc14e72c5bee5e6e19a13158e612cc9925c0c113320", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8361a5b707e0c4e4838fef9adcf60f821b2de4a889a3ec4ccdb12af29611dacf", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84810d1a4b752bd5c6d1c7a39c7d93edb7558c91920c31e5e5d4558395dfb7ad", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3ad61f78c85f187b8fd664dcc0138e6f851bcad392eb0c16a1c17de5b779c13", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9bc1bea47f81c9faa9df10502daa7ccba2fd45f9e2818cdabd3f411fbc2528f7", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "585cdb88401075cf885edcc09b837bb15bdfb7068ba8cfb96ee211c0531ce609", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb9138e86ef051294a0b2b661a7a4ff03ceb51704ca6dadfe698cdf968a0070", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "610a42a85b1372b3594416161e4fa99dffdaeee320da0737b79516e16caf26f4", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4055e073e43890dcb51ef00b8f336abb959827e9b7d500c7836b05b63b4cc641", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa28db2d7df4a4c735d55bff1e42ee96ae1f9d184f62aa78d25d97f7b002894c", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "360f1525d7931f80d4eebb0fb25291a2cddfcd281ec0a8b9cf31627b2270ac21", + "regex": "(?i)^https?\\:\\/\\/whyismyrobloxshirtblank\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae004ed405c71c094bcb97e5acb0be7c981a5f3dbecfbe8e1e9e396b71a4a377", + "regex": "(?i)^https?\\:\\/\\/robloxunkurucusu\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9984210f5d45ebcf75b25a0542bd06652c839b01c9a98dfaaefe0da2e714b077", + "regex": "(?i)^https?\\:\\/\\/robloxunkurucusu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "accb4d5e4f9410d82595ac9083d6fc91eb022b5db79b7afc18a5f203116fbeb7", + "regex": "(?i)^https?\\:\\/\\/robloxunkurucusu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "160ef38b228f676e4761245754a6b4aa8d33a59857e35e645e746cd93a8e2991", + "regex": "(?i)^https?\\:\\/\\/robloxunkurucusu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10d63b34d2832751db79e04f9f99950a7098fa78e3ceaa58c00e12782bfc02f4", + "regex": "(?i)^https?\\:\\/\\/robloxunkurucusu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eaf7a929caff1b8a331b4f360b87ffa591224b634af897a50c5d4ba087d72db4", + "regex": "(?i)^https?\\:\\/\\/robloxunkurucusu\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d172267a1e8aa895dbedd0d06faf2c91350431ddc2eea3342868ff7f9090848", + "regex": "(?i)^https?\\:\\/\\/robloxunkurucusu\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50d497e802681240fa58e427e14eb297ee48faa60841624f7ef5eedd50663386", + "regex": "(?i)^https?\\:\\/\\/robloxunkurucusu\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8acaad730cffeaef32cff03d97b36bf5b20e3ccff60d7c98887ffe31512dd425", + "regex": "(?i)^https?\\:\\/\\/robloxunkurucusu\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c969e894f48e4f16fc014ecf83151e7c0382133d1209f639be5a923af2ab7571", + "regex": "(?i)^https?\\:\\/\\/alllegendariesindungeonquestroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdd07665dcaba651857ad719ff49224d594338e69432ea0c5c741454438611df", + "regex": "(?i)^https?\\:\\/\\/alllegendariesindungeonquestroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3551386cbd8fbd84f2b8af07fce8c8c6bf54f3259e53067a28b0da00ac51921", + "regex": "(?i)^https?\\:\\/\\/alllegendariesindungeonquestroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04415c440df43296ee675cfab2b53ff6dd67b686a556a2fb257e2395cd3eda12", + "regex": "(?i)^https?\\:\\/\\/alllegendariesindungeonquestroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bae836e42727b1fb0810112ff6a3fe28a85e11afdbfc77793cd61a131db3198", + "regex": "(?i)^https?\\:\\/\\/alllegendariesindungeonquestroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8ef5d41cf0320c132e61a31010d7d195da61a54b0cbb93b15e266e6036ff433", + "regex": "(?i)^https?\\:\\/\\/alllegendariesindungeonquestroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "604925de76d5041bbf9e71554cd1294d67d186cec9ecae2ef2ca9b3c4b80e003", + "regex": "(?i)^https?\\:\\/\\/alllegendariesindungeonquestroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99da76a79e80008ab902a2cc65307d0bf983e9c5a147ea9afe8936a0505a267f", + "regex": "(?i)^https?\\:\\/\\/alllegendariesindungeonquestroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e77165ba8bac89dcb9f0ed8d542cd6cd13642d3d5f98d03a14d7ab9a6503cf73", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlifeonipad\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aeb5cf6d399e17a01efecf52513b468004a934f35b066a59a64907accff3263a", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlifeonipad\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e8ba1593a271755013105598b8df1aedc7c3c685652184296545ff011371682", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlifeonipad\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13c6fdd45ac7aafa63bd6611581c069d6f6c06efc919f4dcb7166ba65be0c194", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlifeonipad\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6d45be1fb2ea2e211fd2016e85240baf246e6795f30304d0a516c12a0dfb147", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlifeonipad\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37ea445b101e46639c6b6e2965f62a82454962c15c2c6c06ea8579083ab3e872", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlifeonipad\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbe9725629650cddc4d2ab777fa1790593246ab9da5a9377f2f18952af77beb", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlifeonipad\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ff71355f50cb404f9bdb0ab8e9096d276ae7e3d5e9afe3798129be83619ff20", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlifeonipad\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a198dea97a34335eafd95628741571934881e7a56651316ab8b2f53b8d4b381e", + "regex": "(?i)^https?\\:\\/\\/streetsimulatorroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6495cddc8011227198562d67526f591e04674c93c3788a89053b35fe6893111c", + "regex": "(?i)^https?\\:\\/\\/streetsimulatorroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb3f64d8ee8eaf9b45ee9e210c20ebf6cb95e2b7f81fe0a8e10715499943f9e8", + "regex": "(?i)^https?\\:\\/\\/streetsimulatorroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08ded3a907e1fbea4253d197e4927c55f0e58f96da10c63e8ec9fc3ff3f4d2c", + "regex": "(?i)^https?\\:\\/\\/streetsimulatorroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d15b52ca6b029787904fa290aa40974bb2f477af8d7c761d178db06296f4343", + "regex": "(?i)^https?\\:\\/\\/streetsimulatorroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acfbf64870814fd2da84d9bbc9e5527503bc9636f144a4d7244d9a471e8999e9", + "regex": "(?i)^https?\\:\\/\\/streetsimulatorroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67b46eb612120a58114767907442009dd36016fc60df2d2824beba1b9214fe42", + "regex": "(?i)^https?\\:\\/\\/baldishirtroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbd4f8b9ef501c13b4bde072921fe689dfb9fcf0c3ebde1cb058fdb6f8abdf43", + "regex": "(?i)^https?\\:\\/\\/baldishirtroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a42e68c4ed6e4e93834fab5f945172d6ef4738b1e7c0030fa661650313f3973c", + "regex": "(?i)^https?\\:\\/\\/baldishirtroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a58e0abbe673d3d510f006ff169e2e8fbd8c9a6b8dc0b584ba8a79142391fa", + "regex": "(?i)^https?\\:\\/\\/baldishirtroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "194b4600c32408ae86975da93697ae556b28401df62fe33602afec6e66dea453", + "regex": "(?i)^https?\\:\\/\\/baldishirtroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcaced7c98604037d143ef0135b753b144920a0a77f4971ffa35d6024dcbd851", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d19926156984e7cb75dd743c287525c6313c6c75814e162ccdfc7337ab7f92a", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d388ba2c192df0463153b4434586cae74bd57a23a7dc220c71ebd6917b956c", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cd8c75538dc7e32905e9199ceb0aececb74fb971d41966c30a4b06542c0b336", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13232308b75a2bb1205711f0a389eed31fcadb3c246c9c35591c4622f6069456", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21b53775891f8848b3e82480ecfe4d24bee3d63482f2eb78868c9bb69dbba5b3", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02fec1abc6af1303cde9a33b90567ac2a517cc4ab2974e12fcf4ad4091b98abb", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "516bd8cfc0407d79f7dff88d0ad6c59136fffdaaf117288ccb54769b8b8ef7ea", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94e1e8e4dd834f4b03e533773ad867d31bc7063fd01afba4ae4c3ebf973e4c01", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28638c524481212a1b5ceccc3db25c68098d837b1fd03488072d19db1613b3b7", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed444ad787592d0f41bda05b829edc945348570b9a136b2ad47c5989f59b3321", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "874ccc80e61517c5a36be0aaf93579a853f312a40317294de0321f15dea03589", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c83f7a6a5a011714088b442227b39e25e882dc006f1d0bd8d49b095b6d68e9f1", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7135f41f73530526c2f2eb09ae4d7a970417547697d94ec1de94d2e93360fc3", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baab50df896583955c0b5172dc9c75b196b2e0104808577e7ec321c6d063426a", + "regex": "(?i)^https?\\:\\/\\/robloxsimulatordepolenordcode\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22855dd63e13d7571b7403dbfb7e0c21e767fd7a74c9cb8bafb5b19daf2259ec", + "regex": "(?i)^https?\\:\\/\\/dantdmrobloxshirtfree\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "252cdf66441f829032f7282840e6a68248fb11bd0294396535e5aa64088f0cec", + "regex": "(?i)^https?\\:\\/\\/dantdmrobloxshirtfree\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fb25cbf28076b838c2d01b8afab8c52ba3fcbdb7991919ed8dfbea161ac9e71", + "regex": "(?i)^https?\\:\\/\\/dantdmrobloxshirtfree\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad2dc1f51fc7c787749445a3b81eb26e9b2e5af80f099a0f78c443ee15f94fec", + "regex": "(?i)^https?\\:\\/\\/dantdmrobloxshirtfree\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f8a436b6e7b24151e7030a14401eab416cb0a254ef80f3d08a745fc89e9f558", + "regex": "(?i)^https?\\:\\/\\/dantdmrobloxshirtfree\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "471befa534cb9d563646bf86ef93ab8fa7c294e6bbdef949d90810a0b1fd2be5", + "regex": "(?i)^https?\\:\\/\\/dantdmrobloxshirtfree\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fca3a31b1009d767b40bc648a9152b3f2621f7d5d144fbdf08f4b3e38a351fb", + "regex": "(?i)^https?\\:\\/\\/dantdmrobloxshirtfree\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dfdd5cae2c2e7d3353fae0ac1bfcaa433c3bcf1fe1e9c32ce4fe3e8e7ec762e", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6336771d45858d437f7c292b5274384bbcf2072fec68badd4f37ec45b03fa29", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddd02b38751bf7cc320c28c9ee185f5a10b69d681e0e9680779738ab3c84a6c3", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "550a7cd8ab9917644390c22fba3f944959ca764bc5d9dd395c9b42a3037b7dc4", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd1d524140a1b8f562031a4406a7b6b1f1f77132db3a3130b84e032cc9e45ec2", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33cf02ab2f377790c653a09bd0b6aaa6f2faa32aff04df08ac1f2dde2d86798e", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "979702918d348c2fa78d22cec69b96a5d2d91b14914c6b7ec2cc945fe78aa0d7", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e554dd91acd02c77f5fbb0d8e1e66b10d142c39f9343648cf7ba2ac11e51aab5", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47c0942852551bb06e3780d32da0f0169000008e38880869f3198990813f4eb0", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28be377134fdff788a7822a2ae2eab46e1185c7c029c6808a8e6bca1a94e0456", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41bd1bf67d6e53f271370f32b07413dac52ff7016c2cc227788b71600ffd5e87", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxprisonlife2021\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3197d851c8514dfc63722423520bef35fd4510958171e6f634d06279b580d6b", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ea7fe1fa9d4287bf79755fa67c8bf27e44c27f57342c2f87ee98aad81f3fed2", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd3e81ee2a925933ce76f79cc69543ccdfb2c65e08339e5db417c44eab398a93", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eceb502a9c42f166b4b7b56d2bc9cb82a00b216627e47a01f49a717a0a1abfcc", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d3faa241f2999f3c33c727035dd1977f5606d4fa2e223c50cd6d18ce5da7c91", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0944b1d9ff0fb8e2c7810b48d4d373f2fc3cfb7cb019128efe0beb530bdae885", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff64fe6a0a971e786e105d4dc3cdf2bd1cd803ba4c2f42934f3483912c85e789", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "440ca23f27d9642a1ec8d641d3d7640e64ba272316c5da33fefdea5e506b1655", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7f4fdec54551aae9a240dc63944c0af475688e603aee479a280cace275a77b", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7be7936e97867a42f46853dad7f5c3a0516b98bb2e8dee71cb28e1a7197ce768", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3f02e2a31a294de42a691bd85b43774e147570fd7dc1fa399c94107f54d1c35", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91437fa29de0a7f4c1945315eaa292199bbeb8a45e0ef47483d8786fc3935b82", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d78c629d1cb9fa2f0be957f50cbd358dd2ef989e479cb57f4a2e2b492d54bed1", + "regex": "(?i)^https?\\:\\/\\/mapaderobloxquequandocompletaganha5ro\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12a2d382547f1398a861a9c97ec08efe112164f7e35f80a6197dde3c4c982360", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71fde091e45e5d60888fe1d985fb84b7db81dd02704d730682947b9c25d53de6", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4c8b4bf9b22d90d54dabd879b76f1bb02a751ba6df41a5349d09151406bbbf", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8079320190ec440a00379a4b584ba3c08b343f2aa26792d8d745f1733a0d1280", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3601c5cd2fea74dda0b5ab8e44ee714e8f0709dd55fcce0c0a38176368bb88fe", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "426d61883c2a322e6c8d50f9160221e2ad86fc6f293a251faab8bb38a5cec455", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cde73ae1536c51e890973925b27367f3d85aae3443044ed582c79e82c74ec941", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb9aee58a4091cf3933facda2dc91dd79e6e4530cad9473ffca4a53286a4af32", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fedfd7b809f92138e4e0c52dd866ef8a8c61b711137956ed8c740fb40eafc0b", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3714f146220167b801a9a4288eff9bedb64f1385ed7db472e89a62531037891f", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8e491808b8303c722c193e8984d89d9a326185d927ab979f6b060509088d4bc", + "regex": "(?i)^https?\\:\\/\\/robloxplayonlinefreenodownload\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab737bfd5766f28998565ec85de3ce8610492968b0a9856b4b82a8eca12122b8", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64e14a8612fe6e54981db9f34ee538df429d7aa560c0cfff1329e7d7b30b9776", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2d4d34914c092c3da7ec70632ef3ad6cf0b47e5de2d460ac46b7a369cf1ae37", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abd6346d167219b0b56ec6afb747baa4db9445eab478eff9f06b72f842c69027", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b96c85a37bebcf272fb23f0bf3c09649afeff3e7a5be1329781424033567bfbf", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1b4bbb4f348ce7ba5d6b9c3dab09adf6bc0d1f0e08bd05818fafb1ad00d927c", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14e896a371aa552bc7c2e26c602f0ac5cb638966f7602e80ed0910f80c68c758", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "772b0615b239b36778deafbefc51b537deb02d379f1a198832b1394b0899a2fb", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc9e3102f9b597339669d9050265bed305466d61aa5d43f6380e2b9c805ba28a", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4696a002810e3c7f7b84b52c1c686428a559e985e74cbfe388c679674aa111c", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f4e6d779901cf5c9ac3fe3a96f0cf6409d823d5e1717fe6ce962d51ada2a659", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c116e2232149c6d6b085e9ff165c1c9bfd71970ce0305b8575d84bcc48181fe5", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b23ebf40b0f3ddefbb5481c4ac79d1c9f33bc88feed7474579e86eaef1d64d53", + "regex": "(?i)^https?\\:\\/\\/adoptmecodesroblox2021september\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "199dc16c18054a944b0d48fbd192c7c69e538999c82cf7b84b7cc0b23a6541d9", + "regex": "(?i)^https?\\:\\/\\/jogodaharleyquinnecoringarobloxsojogo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0086d7c08e09a8bd2bf88b1bc42d9c1e26b7f35e2c930b14818695ffbeccc7b", + "regex": "(?i)^https?\\:\\/\\/jogodaharleyquinnecoringarobloxsojogo\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "855b46bf1963375008af1b0819e36dd1e34d6f775eceaab56cea5aa0d43d5f36", + "regex": "(?i)^https?\\:\\/\\/jogodaharleyquinnecoringarobloxsojogo\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bd1301d6eb770b2d39ca236ba7b967cc80382a768c7f6d9ce6c841ce38ba5d8", + "regex": "(?i)^https?\\:\\/\\/jogodaharleyquinnecoringarobloxsojogo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d8f675ddbb45b728e53c3067bd6d7d032fe8f53aa6b64e062b997396ead6f2f", + "regex": "(?i)^https?\\:\\/\\/jogodaharleyquinnecoringarobloxsojogo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b35aecce5b8be86edaec62c46405017c14508eb09ca14f25f9d5342153f2843a", + "regex": "(?i)^https?\\:\\/\\/jogodaharleyquinnecoringarobloxsojogo\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ad01f19ddc4a9b073a198cfa0432723b73c1329cbdfe571b2dece5b0f330a47", + "regex": "(?i)^https?\\:\\/\\/jogodaharleyquinnecoringarobloxsojogo\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "437e853bc32810eedf8bf0e91c5f0ff25690e89f0d84d0274b8ca5f06bcb2364", + "regex": "(?i)^https?\\:\\/\\/jogodaharleyquinnecoringarobloxsojogo\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29966ace1b1082ff917d69226c29118d6fbec87e7dc16ae03fa90d0777d2b4b1", + "regex": "(?i)^https?\\:\\/\\/jogodaharleyquinnecoringarobloxsojogo\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "252745933cb14ad6ece7a7764032051a23670827bcf8a80a3bce2858387e7df3", + "regex": "(?i)^https?\\:\\/\\/comohackeaumacontanoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e344c421e48f1c0a959ca6c92a3d833beff758440ddb6621742c02514f6fd06c", + "regex": "(?i)^https?\\:\\/\\/comohackeaumacontanoroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6ebcac21f9572d802d56e4df308a0fb618613556a6e94ea7ec4e72fbc95fa64", + "regex": "(?i)^https?\\:\\/\\/comohackeaumacontanoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25974e45ef3f6f5361511fa0178623e0890c6ec2fc60d5a391e28ddd88929511", + "regex": "(?i)^https?\\:\\/\\/comohackeaumacontanoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10e409d4440dba66a15ce7f2fc0a0dd235831e7b405161d0c9606f3546df9745", + "regex": "(?i)^https?\\:\\/\\/comohackeaumacontanoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3b2077005100f632ac3203559d8bf68563b63d7aea662c3879a0a5cbc5ba8b8", + "regex": "(?i)^https?\\:\\/\\/comohackeaumacontanoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2f967c459262feda747719eca7bf537774bb483a9d57a3484b6a8af542a169e", + "regex": "(?i)^https?\\:\\/\\/comohackeaumacontanoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "616924c6548a99cb83f4b9b1a891ce38d1456553de9a3713d971622fffc75765", + "regex": "(?i)^https?\\:\\/\\/comohackeaumacontanoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "901d7d0ffbf113036bbd2e5f97e6337b1035fda37480b36c723c3ddce68c27e7", + "regex": "(?i)^https?\\:\\/\\/comohackeaumacontanoroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "936369024a2aa4b630b7f4a598c4458988bb3fa9f0b73080006536d0c3917cdd", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45ac88c89e5acbdf640b63e1c660f23a238b2c8537deeaef897c043a6694f6d9", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e15397ae04ecf16bb2fedd1a74e3f1ec425cb9126660444cc2d9889e7b830b3", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "853c44c1b3cb59f81e809bd616a1ba313cb764377ddc04880bef56a8db097688", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a3a31dd64fceb1498a784091e14e8cf1d387d6730ff71c8e19d7a1e08f7d5f0", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a457a3893344789cfb21b85ef02e7a2d395320b5dd60ca8b9b522745aa419d0", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be805bb43006d935ddecffe88e9971da3514422c250262cb36ef9a31d3d77938", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d99860227de5703eb3fe5df35effd23aa5ab535c3aad8f60cb9fb06c17f04503", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01affb678ef8d00efd8ac66df0ffed474871679438c7217680db09d750a09305", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2f92f45ebe7675622451006813ec3a736671cd709c50cc9be0b22138779022f", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "288a516b3041bb08e47f790daec2c0c7e8a74bf177a698f567618af1af846366", + "regex": "(?i)^https?\\:\\/\\/sexhackroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6bf73c1eecf44fc5a65df3e5f8a207ca40137e7394751cb8a1409873bb47679", + "regex": "(?i)^https?\\:\\/\\/howdowehackinroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e26a7350a67985a6e4f7dabfe660359cc1f9ebfd8ab601d09583874d21009cc5", + "regex": "(?i)^https?\\:\\/\\/howdowehackinroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cae5c257010cb8f6b1299a9cf0166c46a63d8ea80db84b15a7f24d414af9f56e", + "regex": "(?i)^https?\\:\\/\\/howdowehackinroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd28b41795b6b1ab9ef818ece8614f2c43cf160eedb1c33afa51d703d4c74b40", + "regex": "(?i)^https?\\:\\/\\/howdowehackinroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "361e4b21b07aa202e126ad9d3ce01f51148edf1a05191b2242c8ccfab1c03bf3", + "regex": "(?i)^https?\\:\\/\\/howdowehackinroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caaa56faafdfb95aa91f79b6b3aec2bf946f6f8d28dbf0fe661978a007a76585", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b452c51a27f23ac7b9c13d3f907ec4018a03d43d99ec32292c831f6d2ff1566", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6f4c06dbae9fb9402125498f37e6a14e9d9e83bdf8f440dd850576723734aee", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5216f8a5411ac4bbeda66f232eb055f6427583ef825e754c369fb96f2325a26f", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dab649d65c31b3fd43a07644300f4d6acad3d7f2f186ce556cbac4be3419190", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "305cb7cc5a7302c6cc1071196f2d01753280b8fa3cb2f09fcf7c77c367801ced", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81132e2506919937e3d90d87c42e8582929364ebc91a794ac09093af960cc450", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a22c0a34172e6065717a886b957ea7080e759f8376f5f9b61e222f4e41209a5", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e02fbceb879f779a6acf874641aaf828ef4e05affef5daaed408520eed585864", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0236e80f7e628ec98bd6dc4e4d83e76b9bed059e52acf2250ae1e3877776ec21", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d2b056aa9fde20cbdbc5e376657023c65aa81502fed64d227cadd8e82a779d3", + "regex": "(?i)^https?\\:\\/\\/videosdecomofazerhacknoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd7a7f77ef70f07bac0f3df7f7b824829e30f83675ec6b970a2ea8b2051e038c", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70934c1e10c570ae442840eb5ab173157f41c5aa3c819b75b586200ee6117c4c", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90c549f121f8429aa6131c40053932fd7eb59fbc9fb8d9ed2257ffd2bb741832", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a167cd136732765a99065c35f62d630b604f1ab5606b9a770ed0a414f471936a", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2d3564184b1f4cc730cf9d2aa1e41480f1d33c0c06d32f709d252e68714b3ff", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1af7ee5f4e3c1221fcde7fd4ed1a4ddfb32db75381251b61d7116605fd01df8d", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a2b7a9ccb031f1990a6e28459835bd64171ea41e0a05ec43ff2fc14c46382cf", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ffca7abb6814749171665254f9672af3731a526b180292d0ea24ea9ab5bdf4", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0ada9f6ec34fd93dfb4c0fa3d2b78e38121d5cbb1692784a8f0a24c774d7321", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e978f451741fc99fef143a169839251b9c283868a26ebc676d57be998e8f5b2", + "regex": "(?i)^https?\\:\\/\\/bathroomdecalidroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9eeca744d47cb91d3be873aea7846c9677633f3b9df44b10ff41b3c9ce1f602", + "regex": "(?i)^https?\\:\\/\\/hackbread0kingrobloxsaccont\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c34d387af9ef9e0f5bb5a97cf948392936607b63089915fd01b192a5494608", + "regex": "(?i)^https?\\:\\/\\/hackbread0kingrobloxsaccont\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e7bd351c3cb511a62c291d691f4fda1f9821fa3afb13aa985bfc35e4e46c3e1", + "regex": "(?i)^https?\\:\\/\\/hackbread0kingrobloxsaccont\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb2f76db035fb7689e21c6c7f3a1e285a5bdcc2cb7a86c7e076db98f91ee8e44", + "regex": "(?i)^https?\\:\\/\\/hackbread0kingrobloxsaccont\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a43492365eb9eec5cc29db7c031370bae32ec4163d93e560fbf300c925121bf5", + "regex": "(?i)^https?\\:\\/\\/jogosquedaopremiosnoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "944699498c65781ad75787d20185a62256d5fcb549f0bd2819f7bc5ac50646ce", + "regex": "(?i)^https?\\:\\/\\/jogosquedaopremiosnoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d67caa25008f105047d186579d49ac63b31bb6fff84b10b47b02c37b02628a10", + "regex": "(?i)^https?\\:\\/\\/jogosquedaopremiosnoroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00f629576e80d9520a9087e1d29d256856fb89c47f6cb8d321beadf04812d3ed", + "regex": "(?i)^https?\\:\\/\\/jogosquedaopremiosnoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c298f68c80811a51fab77ddaf668afef117478a1ae635f01baccf48387b69ac8", + "regex": "(?i)^https?\\:\\/\\/jogosquedaopremiosnoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d1ba255dbee97db295a03dd5a7331834170bc8d44c2e58f4aa3ceb4c6b69638", + "regex": "(?i)^https?\\:\\/\\/jogosquedaopremiosnoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d5e561614b8aa99d43b9ded12fdc1ea34cc143df86173711d2fb4831d7beef6", + "regex": "(?i)^https?\\:\\/\\/jogosquedaopremiosnoroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be9a9524da32f8914fe022c30a5427999e7f29b4afe9ba2bf8015a5808ebc01b", + "regex": "(?i)^https?\\:\\/\\/jogosquedaopremiosnoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff5b62ee53500ab975e50b61d316fe66d11866ead8fc8bd39b8c242c084d7d8e", + "regex": "(?i)^https?\\:\\/\\/comoabaixarhacknoboogaboogadoroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa5308f02c8d6b5ecdab8ad29cd777ff1de418e7b967495aa7b42b674a8db68b", + "regex": "(?i)^https?\\:\\/\\/comoabaixarhacknoboogaboogadoroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4beb93b910a23bc606b7f3d7463152db1dfdc5247fdaca729ca2c608cf04c493", + "regex": "(?i)^https?\\:\\/\\/comoabaixarhacknoboogaboogadoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3797f2973951607d543b9e24f834ee21cfef60d06ce29c61a059a35cb17378fb", + "regex": "(?i)^https?\\:\\/\\/comoabaixarhacknoboogaboogadoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2b88de2e576f2f7bef11cdf793ab6158d5b8a095dce27630779c772a7f8aeca", + "regex": "(?i)^https?\\:\\/\\/comoabaixarhacknoboogaboogadoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b33b0e7131a98e534cafd2a654327bbaec91b60e4c149855015cf76193565444", + "regex": "(?i)^https?\\:\\/\\/comoabaixarhacknoboogaboogadoroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a356e065b763fae9416315dffb19a1a6ff27cfb64ebbfedbd893f3ac0061636", + "regex": "(?i)^https?\\:\\/\\/robloxtransfergroupownership\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86275908fe2ad748a6177bef12915a79513592895f5c6bd23e608a1a09d26c46", + "regex": "(?i)^https?\\:\\/\\/robloxtransfergroupownership\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29b1ca33b911bd8bcb66de3ea0ede0f83752ae0efdf5f9d01956137892fe7c01", + "regex": "(?i)^https?\\:\\/\\/robloxtransfergroupownership\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e83669c38ebebb1f0816c706541883d84e616bffa92b586a64e92f697a709db1", + "regex": "(?i)^https?\\:\\/\\/robloxtransfergroupownership\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b56212e26786ffb54cc1c7c55eda645efe1382676c8e726ae78479fcf37a4f9f", + "regex": "(?i)^https?\\:\\/\\/robloxtransfergroupownership\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf7319cfada7253b37f96d1639da0f2c243de2e22c78c5ecbce1d99ac4df79fc", + "regex": "(?i)^https?\\:\\/\\/robloxtransfergroupownership\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83be50ec26bdd95c5f6a829330754860f8b35799895ee272504f118c084caa8e", + "regex": "(?i)^https?\\:\\/\\/hackskinroblox1\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1a37cf8a3f1503efb1f2ddf02b9b8dca1112197e9401da1119bcf02842552c7", + "regex": "(?i)^https?\\:\\/\\/hackskinroblox1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "703861cf52b7a191a1e5094b589c3241ecd40a542f87af6bb67e26e910fef505", + "regex": "(?i)^https?\\:\\/\\/hackskinroblox1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c4a5d847759d5b396ad3ac053d1144b05e0f7dadaef4ca2138fb3c494f4103", + "regex": "(?i)^https?\\:\\/\\/hackskinroblox1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1eaf0ceaf31d63e56637ca3c91c5196f6f6e4739fbdeb454c8bbf143652358f2", + "regex": "(?i)^https?\\:\\/\\/hackskinroblox1\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6481c7c3b00b514cb081383922df26658732acf86413bab23150e2e015dd9d1", + "regex": "(?i)^https?\\:\\/\\/hackskinroblox1\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9538b47f879817b4fd6bf6dc7cb7701610dada67816093e927327c36fa63815", + "regex": "(?i)^https?\\:\\/\\/hackskinroblox1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deb66e705385ad1d688c09a9f7c2e13f2764b868cbd907e653ce8bfcc14e33e8", + "regex": "(?i)^https?\\:\\/\\/hackskinroblox1\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baa0119dee9fc29c8a859cbb5d0be0db8515b00307120d0e7b7dff55630d1b10", + "regex": "(?i)^https?\\:\\/\\/hackskinroblox1\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80e548e651dc1872bb79b4a26f60105ec80a8b5bd9990ac51855340b5da6594c", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b8011bd0818ee1e78fb5b8f70839d3992d67dadf9591e667e13323273289fb", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c86455830a99c5cdd905c6e8a59f4a2b12849fb0960b38642df666dd2d2663", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7271b6dee9fea5cc2cfbe0161a7d3d64a6c13aca44a1e5b13f14231a35c6294", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbf9292828d3008fba5c77a3aa808b8a4921e6dd3fae1c08b6eddd1cbafbdb8", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8250c514756dfbeab1586f2c4a93bab934914b61c009d9c9df047630a543e29", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a284530a9902cdb89a6e754a4254429845b2d271f3f5c71f25e827b0fbf95edb", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dec4bd7caebd6209710eb2aefd4e05453e7a4037cf7afd07289fc74aa5ef62b0", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2495ddd1eb8fd239b04d4c2c9650161a36d49c9be427eda507673d193e2778a3", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dc73c0d60c6762fa2c33318204ad876cc6589229529f0cd999a6c9b08c72923", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a7423986e412e48d1695cd83455fbbe7a1ce8b10a44db353b09cfaf01cfbf6c", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729e9202357b2c92a4968a421094e958809cfec4d18c311b4a5472458793e0bd", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fee6d7867730f7959d21aa2f8115676caf6d4a1c5489524ffd7acd285e7b2ac", + "regex": "(?i)^https?\\:\\/\\/flamingoearraperoblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cefc6a182fb217f7c08f43b03089006158ba2a7c39d8933a6781fab4f3ce7585", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxbackgrounds\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70761921223936c402b1c550860a0d8b0bd22d50234714ecf8d8ff85f772cee3", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxbackgrounds\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8903a4d003a7b2174ace92303bdcd763d5f8feb1d66127a15e1ca71d01ae5f08", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxbackgrounds\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1884525eca80938b40a87ed92948c8f4397899864ceca291acac5181cd416808", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxbackgrounds\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8884e162d33313527eb52924bfca25d3bcd532c1abcca3dac2a0f7189ecf240", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxbackgrounds\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4cb7c69d90f2798a4257621e750fe45041f29eacd1ecf4243ea6b73b95dbc5f", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxbackgrounds\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18443cdda8b6e1bd31f8580ab3922b51a3951106b97369161c005d682187bba9", + "regex": "(?i)^https?\\:\\/\\/howtopublishagameonroblox2019\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09c3de38524fc545ca3283341b0a5cbcb9b977b8d0171481a492d8469fb1a94a", + "regex": "(?i)^https?\\:\\/\\/howtopublishagameonroblox2019\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0fd65e9456b9fee8ba0cb61d79d094537afccc11801444ff2f7b9954ff8e405", + "regex": "(?i)^https?\\:\\/\\/runawaytxtrobloxid\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caca53aecd84dedc48f59e583f7afc5955d63fc7d497f780ac1bfb5698fc7494", + "regex": "(?i)^https?\\:\\/\\/runawaytxtrobloxid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "607a46baa5beb4591cce7f5e71a7d42970012b72d75a16a503274caec015ced8", + "regex": "(?i)^https?\\:\\/\\/runawaytxtrobloxid\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bccd7848a04a43375d0a28d09d905b268b8d1efb939d774d15434a1e08522bee", + "regex": "(?i)^https?\\:\\/\\/runawaytxtrobloxid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b118fa3473e1a81abc91cfe38ad17a6791050febdafb454cce085e170908f07", + "regex": "(?i)^https?\\:\\/\\/runawaytxtrobloxid\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b34cb412c640baef3d3d46e366229462099af9aa251b7025acfc87ec7890c9d6", + "regex": "(?i)^https?\\:\\/\\/runawaytxtrobloxid\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66c9a711e4ccdc9f7fb103a477f45aeb93af61899dd6d9488e8bc9db0a344514", + "regex": "(?i)^https?\\:\\/\\/runawaytxtrobloxid\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc41915c2f65acb34e73e66a0432ef40ca89cd16c1bcdc6825e381982115e3ea", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdemardermyster2\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ff2cb57a456ef56f5c0bc5c36167d2ecb1e528fb6c289ed2569485097035d6e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdemardermyster2\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2abb392a3e673079cef25b85ee90d3edd022e9eae5a607b1014f7879a5a5abc2", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdemardermyster2\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "615f00a2f4b9ea664ff3fbe96bb1b46e700ed4a0084e5cf96e10bcf4d30f3c10", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdemardermyster2\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "360ace4bf8410e158e428b36f8419b3cc0497f726aa7bae120b8ca9febcdcba3", + "regex": "(?i)^https?\\:\\/\\/robloxhackswithdopdeengine64\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9586d72b203a5cd1d6120ec171589a6a2b2daad5ee89557e7d7df762cd5c7205", + "regex": "(?i)^https?\\:\\/\\/robloxhackswithdopdeengine64\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c494915f7f2d077f88a1f0e4b81a3624f591884815a0f273959d2168baee3ffc", + "regex": "(?i)^https?\\:\\/\\/robloxhackswithdopdeengine64\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0cab09a17619e4d841e5a44ace288ef79fa45b93f9f9894de21733115ed90a4", + "regex": "(?i)^https?\\:\\/\\/robloxhackswithdopdeengine64\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7437fde5f8587d9ae1e47d87515d4f0b0ac8dd966ee6cdde2aad38639a39e27", + "regex": "(?i)^https?\\:\\/\\/robloxhackswithdopdeengine64\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e911661a7d446a7d48334101ff6671c6ca68171beae1ab87a60f6c698983395d", + "regex": "(?i)^https?\\:\\/\\/robloxhackswithdopdeengine64\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6382da03772ef974383fbe1b3562bf0b66d236d367e8b3abab745a240c0a0c30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+20\\-oct\\-2022$" + }, + { + "hash": "6382da03772ef974383fbe1b3562bf0b66d236d367e8b3abab745a240c0a0c30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+20\\-oct\\-2022(?:[\\/\\\\]+|$)" + }, + { + "hash": "7849524284b5596d458bc89403a813b2b7c03d31f7b1efa5440a937ff376375f", + "regex": "(?i)^https?\\:\\/\\/ramonhernandezperez2021robloxhackerde\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3af5f0838ed931626b21655852ceb30c959280b93f9b6146f1f757c3761b5d40", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakgamehacks\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f1195a3e20773ce7a5b3c9d7bbf8d43d2a84a3c021c4121ad11ae2e0f35c2f8", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakgamehacks\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2eb59495ab0837a81da5704f3cad925bc4922f89dbdf60430590aa018f0b13c7", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakgamehacks\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8ceea0533c8ab561835a9a5f20216f6749c66a28396f1e4dc4aaaac3ac7e33e", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakgamehacks\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dd2d3287ed4039ee62cdaa7d100b31a8c65bfcc9193cc75e2d4e877bc474d46", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakgamehacks\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af0a6c6c40f15eea85a13a2ef9f64853d3f7e4e6c780b45459a177f1ca5bf8b3", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakgamehacks\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09c9be6852a21f79cba9ec5e529bbc17b1becbb953ee232fb44257af40c4b627", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakgamehacks\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2821c029db4c66ede8c2663ee8559d1a749ab53493aa55b5f47033d883c61d76", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakgamehacks\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d1793c66ee5cfc3c5c64db2e82c5c89bd73f910632194811ebf7105c9499ee0", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakgamehacks\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a9d17acf629ccf223c2bdab9958edacd62441208aabd2980fab090c3fa72ba7", + "regex": "." + }, + { + "hash": "30414d72bff6a425892c8c96b7c982a02636e604fc73411a5f3e755130f1c4b9", + "regex": "." + }, + { + "hash": "01bc78280c8497f37ed70e6c0fbdb4b5e6a83ac193a081d77dfe4a69fd20ca9b", + "regex": "." + }, + { + "hash": "5b869b63abd1affbcbe56f0d2aa9ab2fe53b902d00371e2674c05a0d27f253f2", + "regex": "." + }, + { + "hash": "72893944c10003ea8a1ad0618417a12a8c06e4b06f1630ea4f503688cf815160", + "regex": "." + }, + { + "hash": "845f0a3750f9627642bf39c6241aed6f9aa84cb958444e39dd68bf8b76a741e4", + "regex": "." + }, + { + "hash": "cc570e56a3bd0769ef07b3577eb74e00a0984bc00e1f60b30e3100c714b2cb34", + "regex": "." + }, + { + "hash": "f15d198353f205224695aa4383fd92d29e3698ff6404b4f4a8760f3a539a8826", + "regex": "." + }, + { + "hash": "97b6821b8c04eb04b8533c978f85616fc1f421381e0fc2d03d86290ac1765616", + "regex": "." + }, + { + "hash": "3ce41f4944896d8c5e1fec6b0377a410afd9215b57d4244f4fb2dfe3da6f4486", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c526e3403abe664a87eabfd8f1dc63b7b552dabbf5182583f028c3fcd27a391", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7329d9a2269cc283c39e3efd8c944a34401150c2142c7816ac251eab67427882", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7150efd7740ab8914695b8a04ed5e39596e09eaf870504d4615c3d71dd1474c4", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba1847473cfa8ba0b9884faa682d80544da107f526025f5319513597921e5942", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "329d8e39afdf678948ed582f518e059629a0147e205ee988d4002bb4e3480a94", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "640390f1c34d04c81b016737fbfad79da9f76229a5692b047b62c66e0b905175", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0be69d1f35d66a551e95482ff9015ca6dc102e21e3fc9f060e2b41e6633bae92", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1a79f05c1f2854a7ac0e4a42fe743e96711919951b1ffadd43f28c79f7e5132", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d38685d22457aa9646039098966bb40bcaadf4847b5b39cbac9fbff8cc1a4d1f", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e91047c1c156a85397b2d4de8c2325dbb06f8d95d742498ae338a5aec139ae77", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodethefatratflyaway\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e88193de5b630439383520ccf47670459e1d41b2b3d18849f88a86ea6d73988c", + "regex": "(?i)^https?\\:\\/\\/ramonhernandezperez2021robloxhackerde\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "097328d1620dbe7e6e776b3e700108652f9f741643352bc00d41f5ca574b6c78", + "regex": "(?i)^https?\\:\\/\\/ramonhernandezperez2021robloxhackerde\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a0c94b6443865b645de96019c02eaa489b22042c6d27691702aeecd1edb2f1a", + "regex": "(?i)^https?\\:\\/\\/ramonhernandezperez2021robloxhackerde\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "862fab8d57d202984f31bb0837549799f129e01fd3d7ff1c259950c8dd24333f", + "regex": "(?i)^https?\\:\\/\\/ramonhernandezperez2021robloxhackerde\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d35377b6e86287b3f0f347e278fb8f78d96f2e5a37216c9a24fd59d7655a274b", + "regex": "(?i)^https?\\:\\/\\/ramonhernandezperez2021robloxhackerde\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ba0369dd959c0d55f608ac84f76883905db24f513d64ae01611dd81694cc87c", + "regex": "(?i)^https?\\:\\/\\/ramonhernandezperez2021robloxhackerde\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6f1f792f70823c051160fd46dadd0234eef0af1616f0a8c3416ee91d6ee6a8d", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4368e2f795d68ebdea9a89743a869301bd70e879b444e38333c5a999d570e33", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7acbef112631503c6c89c424a396d8306c5aa475832bd784276c12720a226d65", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd0e053f7ceb64a833f01d7ab0ebcaed6918353e65d731f36745aba31f5add20", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42a7a02405c84465cd1d7642577f89b9e114548811ae7370e633d0896cdea6c4", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c72677a139341f3b013bd9930fd60508238a3dc3482d6c7f7c8aa6e7e54eff13", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d638137447ba0ccb96f1c19ac473fd0842d1bb4939baaaf572f547760e0f5277", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ed34db49cc94daf64b6ecebf647757519d176ed3381c742dc1154e4c7dee0a", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c80f64089f2b3fbff96ccd067dfd8254111e6bb9182773a4c51ee8ccd1d778e3", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da3c57252d4b4712e39f916475a1bd7172a10d40c4972720f043073b6b1230d3", + "regex": "(?i)^https?\\:\\/\\/bigbrotherbrasilrobloxjogo\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1b579e1dde194f3b26c2176afc7c29aa3f8d50836aae4e4ed324d01f1601e6c", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59f7d9890c5f803a7fd54cd5f749cc4e78574e17f22003400c8ba93ad8925198", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa44dee1f608e16be209d183ac25e232cb7ae6cf5c2879fec008f61c4c0cedfb", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eaea3b181eaee621775ba03f7a4bd0250011f8c8378414c3de66819fcd74928d", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f2ed8432d83d39f0cb040c0bbf0b3e58c63b0bcb9d2085618293bd3c82d6b4e", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c54894f311771a2bd8b61a697f60b649bc0dbd6d69125ad3b4c9165c85cac504", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbbaab85fb77050507067f1b2dd4e7c8ee3ab2c8c4cee9453d5730e161d2b2ed", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "897459e95487cb74a7690a28ce47a0f2fead4823775ba3f37900f2506e01e511", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e44229bbb21d05ed21625990642ba65b00b2235e257d63d7a4be23cdd0443f9", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "886af03b3cec51f9affc4cce63eeff114e4acda9b10acf96177c675df9fa808d", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a1c20b1239ca92378c8367576fcf03aa64582be401d876ed6221ae7a2e122e", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fefd367fef48f286a937456c11f9de6e935743d7a316799a5472498d0a0728f", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxvehiclesimulatormoney\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9747e28554bf8ba40422bd69fd935a6d344106ec38bc2ed5d2f6070cf0f30ddb", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "054c3170813c64ed26e4ab914ef60eb2694a3bd53cb96c8b0bfe483d55f59484", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6e533725a6c97458f153257679f4f835a861574a97016c81a21e6d9e1190d1d", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6da26d6ac6ba613639d7e3d2b38aed8121aa329f282579879c561874ae31e0a", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56bbe7744d7780b4c354557ebecc930b698d9d3750c635b0d448c0e139f3f935", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c33b3c16b4d207f70c4b692a052acaea03e5b6d3ffc7dc3efe880054a9477b9e", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1342e840fb639b16a50e146a118b0bdbc9ba738d24e109f37a7b8e0feb23c75", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d4d6ceacd2ec6442792e1146192a2f39a313a7da917ab264d35088ac9bb15ad", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce33e6642d57a8fcc0be5d4cb4543073a30db56906693eff72ad9b13cdf52e43", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "291430280956aef54e5a951ded26f9ff4f1ef95a4830aa5076395f3f5e1e57e5", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe4aa62ad5681dc363c8901ca6435723f536a89f5703af84a66af9d32a837a1", + "regex": "(?i)^https?\\:\\/\\/commentrentreruncodecarteroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a0244ef2a623616679abeea8a1c894f1c8ed89a4d4eec3bf75e4aebe0d15a3c", + "regex": "(?i)^https?\\:\\/\\/formadehackearumacontanoroblox2021ago\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ebec9199073b7ab45c5abf84ed53d166ff680fc44fd8c8d080a13d04a7bd105", + "regex": "(?i)^https?\\:\\/\\/formadehackearumacontanoroblox2021ago\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a3fce55e0fff72220c7aae630d3f20c91221afbfe1ea505a4aa735973c0afb0", + "regex": "(?i)^https?\\:\\/\\/formadehackearumacontanoroblox2021ago\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05dd1a0160b574ba96fe81139061d9ba8a179955e86f09c0b0df9f7daa779f85", + "regex": "(?i)^https?\\:\\/\\/formadehackearumacontanoroblox2021ago\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "080a8fb5e62393a363805055adec5362c5f2d899662cf6941b278932cbe822a6", + "regex": "(?i)^https?\\:\\/\\/formadehackearumacontanoroblox2021ago\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "328057db4be13f3e78a4efb65471191d197591d35149518171a481a02de63c04", + "regex": "(?i)^https?\\:\\/\\/formadehackearumacontanoroblox2021ago\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a11c2fba9af43ad73eab0147b3025e3aec0b688a935c97cc7a1f170ffff850d", + "regex": "(?i)^https?\\:\\/\\/robloxwantedhackexpolut\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b753183689f881c66abefdbbe62994aef2f3d6946ba6dfcb90cb2929005484ae", + "regex": "(?i)^https?\\:\\/\\/robloxwantedhackexpolut\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "909aaafaa17a240f93ac1a767c26837ee6b7a32ece993cc904e191280a75ddc6", + "regex": "(?i)^https?\\:\\/\\/robloxwantedhackexpolut\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7bdec984ab6877b4f1c6544d1bb58ae61fdb8981b57a96b06a8cb4bbff4c971", + "regex": "(?i)^https?\\:\\/\\/robloxwantedhackexpolut\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92fb145b4ee1ecc7f9365e6af8fc7cdce6896ddee8404a2ff73398b0a2f3345b", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhack2021october\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e229429a4c670894ee8f7f9d93e4453318666609d95bd5648e72475928efc2e", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhack2021october\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "260e114cb5decb57e24fd73034da6c13316bbf2891788a1f2b0556a776937460", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhack2021october\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57980e87c98a703a374f8c277fcc1a0a16ac23c4011ad1bfea01b8d46553ee7d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhack2021october\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8296674abab794cb2c3f2585b89eecc1eeab62a339e9d47f9fd89772beb4806", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhack2021october\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06dfca02e43c7dad624d397be61c3594e232a81c54eace238fa9b00d0135ee13", + "regex": "(?i)^https?\\:\\/\\/comoconseguir15robuxnorobloxseminstal\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54fab4c5c9570928705cf656acd786b27d989d6aa7919d02237afb000eb19c48", + "regex": "(?i)^https?\\:\\/\\/comoconseguir15robuxnorobloxseminstal\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "768740ace2f6b8b71ab649486c96207ef87c8d0db761891df549ee072f0afbdc", + "regex": "(?i)^https?\\:\\/\\/comoconseguir15robuxnorobloxseminstal\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f269323bfde1872ce1e9fc849c8fd2223c00f304c3771058c98c41c9aa7b7c48", + "regex": "(?i)^https?\\:\\/\\/comoconseguir15robuxnorobloxseminstal\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c51e4f40fe98d7d90e2699d87826273403a197262267afb978e2fdf5411a637", + "regex": "(?i)^https?\\:\\/\\/comoconseguir15robuxnorobloxseminstal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c78ecb56f1ea79805d83142448da91d8a44e0d13d3416ee3e3ed365247aef4", + "regex": "(?i)^https?\\:\\/\\/comoconseguir15robuxnorobloxseminstal\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa5364ee4fa89bf97333f14cc26f1267850a7372ad6ea9364010a4f18dab4997", + "regex": "(?i)^https?\\:\\/\\/comoconseguir15robuxnorobloxseminstal\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ec2e54f72637a9eeaac8231d861acbdf35df48d231dba33c4aab3b460ad3523", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92d4398619d86bdff1bc5bde4cd1ed2603f498b828c1b65388af6cbca59d685f", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1bb59c4f473f689d9caafb1dfa381f0731a796729e967dbd706174ac465a899", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8acd454692d0b045d9ed109f8dcfe9c0132910fbd0d305f5df5fae8f6c4e6961", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ac56d7de4970929dd296816b121dbbb89af21171acce94fcd9abfd5816fe5ab", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70de100ca3f9a00e211f4775d9c84e762fb6d5898ab27ee8cfeab0fe3b121e30", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f1210da1dbf185cb9cde636f4163f273a6030e712f47d9629cff329e8d690e1", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d22cbe10e8a0a2718c4f30f53728849ff96ae5af04e6325f4d8aee4ca386ffe", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b7aab5aec5bc16661c418b22e946fc818987542f0a922d8ce18bdbc58372a2e", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f42e56d9404e7e1c0bdb1cb5a22d201d1b39c786fc6b0235fa8d70e27445aa45", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "381493639ad776eb9c992e8fc1972433a78fe00811f9ca89879f0ef4c179c647", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b0b764e0b096b2c7628753f9a20850e6ae2b9a7588165112a6a25c69a6e5743", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0e13b8e871b33190432bf21f0ea792eac26b39bdaabacc046ac971f1c3b101a", + "regex": "(?i)^https?\\:\\/\\/robloxmodunlimitedrobuxandroid1\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df2697781b5512f1904aa9dfe6224708f37efa6df9c1fcf3bf34c02c6c28c99c", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e951106f8e8d80a45d43f0a701ec2a15506202b8712576aa903fd4bd1e8b566", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a99c2e64ee0f2ca43ea47f286005bf13e3c8ff8e915face41a47b7bdeefe7168", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d22d9c559bc88b590b814ca42a301d4046457c733956089f0902ea0ddd8dacf", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "905f96e16eb1168f39a46b726ba67e57c4bdb6c191cbcc02e8c9a0aa4ec5940a", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c17d59a934a612a2925db0b6e1d824f844b6358837cd676677e7b4239fc233d1", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2b621dc350c128d45967d27568973b1e8d2c811eeaab8e8f8541ac38d3b6a9f", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9297c495c39b459f2dda5255d09f399397fcfb69c2f5412001cbc1021f45a048", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9540618526fd906567d44244433e22b98b498d599be3414eb336d578769fae6a", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d1cef85d96b721b42492fa753a1a69b806177f6934be54655ca306b14909df0", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb16a078a833de2292962c93eeb8e68fe2ca253724abddd9d30232cdd9d750d2", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a7a2b65da9a68ffe95fde3f84fb952219df6dbb5aea1e9566ca75f97a3035f", + "regex": "(?i)^https?\\:\\/\\/robloxwontletmesignin2021hacking\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "773268ba01f6a72ec5446655de129b7760c713fc3cab2935296b60f529bfaea3", + "regex": "(?i)^https?\\:\\/\\/jogossemprecisarinstalarroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a4254591012e44ed3a625a0c11789a00a7e24e2a9533c3014ace54355298582", + "regex": "(?i)^https?\\:\\/\\/jogossemprecisarinstalarroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "689d89f33615f069026ade32e9ad6c69d564af447918e9a72ee1d511a240cf42", + "regex": "(?i)^https?\\:\\/\\/jogossemprecisarinstalarroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3be5d4c944dbba24bc395f08703a7ab6cb6582b8469f2e74bc397f0e651a9c47", + "regex": "(?i)^https?\\:\\/\\/howtocreateadecalforroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f87c5f66b30d684f041eca158fa593f787d0595cc09d26500cadf4e92f9d8199", + "regex": "(?i)^https?\\:\\/\\/howtocreateadecalforroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beb9be75a9b842b474306915f556a979fcd810a7df17297e93e8efd0d2aef5f3", + "regex": "(?i)^https?\\:\\/\\/howtocreateadecalforroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c60ae5a263fb2013fd4f4465f7a94b991ebc1c3bd7ed7530ad4c1d3173b0ef31", + "regex": "(?i)^https?\\:\\/\\/howtocreateadecalforroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4bf625414bbab2ab4172e053a316e70997dab070d624ee3ed748efb9dc67dea", + "regex": "(?i)^https?\\:\\/\\/howtocreateadecalforroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce06658ac677111a6d6a8078c820a519cb57e792d6643dbdb76419a846af858a", + "regex": "(?i)^https?\\:\\/\\/howtocreateadecalforroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84e20c33696331d858c4acb4c9f99c3857645b4b8d4eed33bcbb7629c8439e57", + "regex": "(?i)^https?\\:\\/\\/howtocreateadecalforroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d8cfdd10de534038a86439a03f7a4403b2ed1411e83e506e0b95ab85ae2ab22", + "regex": "(?i)^https?\\:\\/\\/howtocreateadecalforroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fde065f9608795097e596901f2fe0cc75bc9f2b7f228956cf471bd1a346c5a6e", + "regex": "(?i)^https?\\:\\/\\/howtocreateadecalforroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4c9f4bccbe5ae17e26719d0157628be853e7bb1c7900a762aee145177d84ff5", + "regex": "." + }, + { + "hash": "a58abc9f1087c3d70dbfc4f0a2083f4d91de70824d316fbc2bdcf6a6b2205f73", + "regex": "." + }, + { + "hash": "7141447aa108793a037b7df694bb46fba69b98caa84d2409eea30d67121e59cd", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3470d2cd8f52f1f2902387bec561fd5489e134b20dfce98e93b1d8648a7b0df1", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f964137391d48cf17b171edf904da0324a95bb82b2973a31c33a3333715b9e5", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7ae2984931048b28b004d4f6ffd614378990e9f39c757797289c5f8641c71df", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a468a9cd99fa1e867a0869efca33b866c459c280cbe883742fe80c0f12e2e13", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "152780b90342dfeb67a1036b1b90f823a827d2cbfa43f9265cb87a0f66f90cf4", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7301eb83a45a1435e126e52a24d80bbc375e89d9a248a2c863eedad2e937aab8", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78096a8416df650449c15c2c13a6d76d803d4038e1625b98caf462c64b6c3fa0", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11562171eb2a66cb15bfb1f91a8ae923e0f28f3a1410a714636f7f781b4f7263", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b9c3cff70ff2ddac8bb656baa9c860ef86a924241a3a5224575128674dbb10", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff7a450cfd5a5e5980fa420d1a1fc6f98b7216bbe3939893396f89a6fc0e1ee8", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca8971c0ce8d88b5835f40a44bcbc759d5a06b806c4f4d5b13ce751e1d0217ee", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e04c9cb443c5dac904c3eb095c5f5502783df6f488cde0b9d560af5f6ad4a5d", + "regex": "(?i)^https?\\:\\/\\/codenarutorpgrobloxwikimomoshikirinne\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c99f536607f6b82ee9e6b078ba2ee10dcb963c4c5a2bfd2dbc39bd31a066699", + "regex": "(?i)^https?\\:\\/\\/dustsansdecalroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d1bced7d850c37f4062db0d898a1c04ce8b2551a3ef2c562e82debbe7d7ec1a", + "regex": "(?i)^https?\\:\\/\\/dustsansdecalroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e091a5424c1ceb875922902c412f2d364e460a07beb0beb80e4dfd1c6221f944", + "regex": "(?i)^https?\\:\\/\\/dustsansdecalroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40eb3019a8ec7bd649860e2da36f5288836f7225db1bcab003bc002446fd7269", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f303bec865f8488a499c56c5c6cc436967cf919ff330e702d79638ecc373f11", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9646a28e3e6df3458a4e7c40d2611f010c07ebd70aef5aa4112ea8c2f72ead5a", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d57515d72f334e3575699fcc13d7940fb1ce27817c732f2fedc712f89c27f52e", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac5ff3d5fca2fc76b8dc1ef3311c344bde4da3bd418cee40e7c4273871764ddf", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36e49a75e2c410e765163c93c53b6dcf2ef3d4386937862f21e2277d59e25bfa", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efbac31c17e99d7c999d3739436b61b18f61c9588377ecc9cf27eac5aad329eb", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ce22da7e6d32cf87c062f6096fd06ca8768d7993493709f904fec6045541041", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8612385c44cbb9c172a2355a11c04e1becbe5895098513206e82b11e912271a0", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b66a6e3ced7395c74b544b47a233c10491f4f64ad8774a622621c0d0e1608638", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "137f0ef73560a0524a4610ce0b1dfd13589be22478fe0b6914a7e3571aa1cc85", + "regex": "(?i)^https?\\:\\/\\/jogodemodelonoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad042cda0d254eee5731de87b68c8221c3293229e1d0a70677dd702ee5210106", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7a6ecef24bf2defc4dbfe8f14f818a3a7260e643d7a83f371bb0bdf206504f7", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6920ca902410a29a3288d8c6b0b685070fb7c6bf0312e3c812ce4a35b1297983", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c8b57a3b57604de28305c9e80e15c1f0e490b722f34a8467b6c8c2db323f7a6", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee6450e15d4161b947f7d9345751ae724e6bfa4110b53b98dcac44ea2d679361", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dedaeb589b645ec38221b5b94e090c0a6c032f17264869dcc0c37804634d67aa", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d809e1a2996b0f0366a6b95cf68e0402b4a8b6cd71ac0ce857f5a8da5173956", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d89d5619bccc33a7a56a2f9177aa71e78c74385ec7ba0e0aae7e0abd76ba4b", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8286e86e3ea7045ddf16389d6173f130dc4f1221a5f6289d54e42cc6c354ef07", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ab2e8c452c8e3cb5964c93c91564ca1c1cb78e3f10c7c72d9fe51840dce2eb2", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39fdd73e638e546c81767d07d05f878b7288e02e73750a7d90f43813c98861b9", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eeef878d90df182270a3aaa55f465248138b704c59874dba04148363ab1577f", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83399b9de8f7a5d6cc58d66419bb953b7ac1c71d835210ced9df481d1e798c7f", + "regex": "(?i)^https?\\:\\/\\/robloxhackporno\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab15c4a6c215bb33aeb19d3c5d03a6c3b3906fcb41b3d1cd9639839e332bbd8", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f67df45c5f334b0dd8e490dacb7a8e97f930fc6093f0eb96adb56c940839c2a8", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3512314dde3d02c2f15c7528429737c6df52669e530c63b2fe16bbcdef6e5f8f", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa447937687739913e1bd698004da6a2e48d5653e01cb19e427d4e79792221fb", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61924fd1c12d4e2d09b3981bad070026cfb2082e8ef317cfa08aa83e0c68aefa", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38142968ab0b882ca44403a73d36d50281d469b79d332b62ff9a844d11d1e683", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b510c5d79cb36874c4df7eabb8fd5f15013270bea15f96daa381ef8dfc01c6b", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "585c365ca6fcdd859a67a68c51cb0ec1772422d966c64b474845e3b4693c1554", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d47621443257086baf1bd0d467f72cffed4218ed0942ea9a8dfd0c277eeb737c", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e69a8482a1236d6df244b1f88dd87fc9ed4dd73bcd44614940b6eb3bbfe21071", + "regex": "(?i)^https?\\:\\/\\/carstripedecalroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03c0a327f70da7c49151d927c50dafae3bb9f8baa153bca8fcbeef18fca97939", + "regex": "(?i)^https?\\:\\/\\/usingvermilliontogetfreerobloxmaps\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f90176b0894b93268cf1ba922f235192545a445266b86cab4d69cef73b1c6e2", + "regex": "(?i)^https?\\:\\/\\/usingvermilliontogetfreerobloxmaps\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a11fe8d3e637d40b7737053dbccabd521143cea86fb5edbf3be83b971fd4cbde", + "regex": "(?i)^https?\\:\\/\\/usingvermilliontogetfreerobloxmaps\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c96b131d9f8381be1148618fc16413bcacbab80ce3518d726466095aa9288c7a", + "regex": "(?i)^https?\\:\\/\\/usingvermilliontogetfreerobloxmaps\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b44b3796bcbf77ebbe6661f5203162a9a2b9bf9b05f0b5fadcac3eb3a7e4999", + "regex": "(?i)^https?\\:\\/\\/usingvermilliontogetfreerobloxmaps\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "967778d27f6ba72b441f2887f0d08d1281750f2212a85417589e9f352a062ec0", + "regex": "(?i)^https?\\:\\/\\/usingvermilliontogetfreerobloxmaps\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbc06f3f7ec9add3f8337e7e59f9f9d389d5687891b4effc6c8fdddb839620d6", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesimpossibleenfranaisni\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca8915ab6a7d74885c19e5b09efc8057cebd492b7af26b42ce66477c8fcef8d4", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesimpossibleenfranaisni\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d10fb2cb795fcc4551fe439b6012cd384349016714a887d431848c491671ac28", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesimpossibleenfranaisni\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3c84dc575d803a9340efa05f72152b535c2e70fdd97bc9acfc7088c5dba463d", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesimpossibleenfranaisni\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ceefd672822ba4ac7878f7bae36b76154790957a7e3e376471d5c2134697294b", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesimpossibleenfranaisni\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b113fbed3ad2824f636c16a482974a8ce8df78d2f687a4a5b8c973ff02863e56", + "regex": "(?i)^https?\\:\\/\\/comjogarfonedeouvidonoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03238ab749aee874c170fc9027fad6885bb52c853f7e3ec423b4a1f01a9d27b0", + "regex": "(?i)^https?\\:\\/\\/comjogarfonedeouvidonoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a2b63e5d08664fe5b68d4c7719848cc521fdc98434c90c5b411412b72737a9b", + "regex": "(?i)^https?\\:\\/\\/comjogarfonedeouvidonoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca2198e1258bdf5f60264c4867d896342af022a39870e941d68dfe133993de75", + "regex": "(?i)^https?\\:\\/\\/comjogarfonedeouvidonoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64b168031052bba9f844b3bfb07c31622452c2381a81daa4d70aefad94b34151", + "regex": "(?i)^https?\\:\\/\\/comjogarfonedeouvidonoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "419ae845a8328e5127e14943d63c9fca3a164b5b0fa11d7fe34bf698d4067b4f", + "regex": "(?i)^https?\\:\\/\\/comjogarfonedeouvidonoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1afb7a17f8161dd94652a778dd5b2898f97cd9dd0e81b4daabe737bed8547103", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxzunbiroxo\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68652113446f3704f9258007ead8209c9b4c2864e7db728535fcd7ca76c76ac7", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxzunbiroxo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55b65ce4fd42509446a140ebcae5735edc747b0a76b8cf6665d22bc9d6ad111d", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxzunbiroxo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91be26175a479a01090bcf353ec570f479b33fa2866c136c9f95f4f8c04d21ee", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxzunbiroxo\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6852c341dd65ec96d960a0d7785cbdb5d0e26715a7d64450ce4eca409fd5d06", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxzunbiroxo\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb8e2ea3766d07b27b3b312e4148081bb9c8aadab07723c74278096a99b2d1d9", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxzunbiroxo\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abbc00fca08ef67d767eff33e06eb1126dbcc90caa3a3d937e3ef5cdacfad41c", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxzunbiroxo\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09c360add44a29127bce67c13718014c403c3a1089f7f3b186909bebaf64869e", + "regex": "." + }, + { + "hash": "46d072535c307b7909b8e65bc5f79041c37930970b934552087a9ed0a1d4ee7c", + "regex": "." + }, + { + "hash": "c77aab6d4eed4c00303b1c5f9e42782fe03fda12299296af8c6e309c3095c8de", + "regex": "." + }, + { + "hash": "0f3516ed210132ab6681ef30d63ddd1e3f1e6f81813dd112747dd07d14a465d4", + "regex": "." + }, + { + "hash": "eade837d0243a503d80d86ceb1f4bd3b6c1ad29f578d5a68d9e702a56d1f2948", + "regex": "." + }, + { + "hash": "4c4dae0e1a767637cfeeed91d4d03f95f6d3cac9eedbd5a299ca6b60d868c8a0", + "regex": "." + }, + { + "hash": "70bcb7747f473401ab921b2d03deb3704ecf5021ced3c256b701bae9faa5b951", + "regex": "." + }, + { + "hash": "25cc391f49077744b24357db18f37980b43342dfbb75a25e1c335ee015f687a3", + "regex": "." + }, + { + "hash": "b29bfa069e4a068b74651ece7852d41b84ab84e87a2f4cb789d6abef46b91809", + "regex": "." + }, + { + "hash": "c7bd8d2b96dae8e6bdab66dc3b180d3b90dedff6571dba343ae7e4a29014d62b", + "regex": "." + }, + { + "hash": "3264c98988281b0968450fa58e4ad48e3171a1d06ffc94e233832e908df0e1a3", + "regex": "." + }, + { + "hash": "5d219bc8f8d65298b625e6f9aab93e5f646242adeb62bbfe92a2c547bd3d647f", + "regex": "." + }, + { + "hash": "8d97c68c00537a76e7ed29b0d51beaaa7e06c8801ffde24ea6b32c16d7adf2e0", + "regex": "." + }, + { + "hash": "e0a216a5b2f663fb66451bff63dd5b6dd5e08a9e31f0124214382cd78884e0ec", + "regex": "(?i)^https?\\:\\/\\/moneyhackdownloadroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dfd87330355216c816e2288a71204d8695103d21dc8f3649fe7e320eae845c3", + "regex": "(?i)^https?\\:\\/\\/moneyhackdownloadroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "751b5942756ee406afea6e1058cb7a181813f0446cd02e5ef2cdd616a128d3f8", + "regex": "(?i)^https?\\:\\/\\/moneyhackdownloadroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5816b4a9e477d73bf4315a43382410254acdfa9e3a1e127b2343ef60337b3d1d", + "regex": "(?i)^https?\\:\\/\\/moneyhackdownloadroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aaf87a1ace1a29a18b61065ecfdce6946c88f05214b9b0798bd6a15657defd6", + "regex": "(?i)^https?\\:\\/\\/moneyhackdownloadroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf89a62f00ccfdfe7163657adc29eb42a7fc7b73e572d211ffc16f2cb3b68c4", + "regex": "(?i)^https?\\:\\/\\/caribsbasketballcomosejogarroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa282f305970c0d44a7b5599befb872e8ddd206e2aad5ec189184b7e39edc750", + "regex": "(?i)^https?\\:\\/\\/caribsbasketballcomosejogarroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6af35f30d2e96c3a1b296b449023176c337cd92540cbdb5fae49f13b52a9db4", + "regex": "(?i)^https?\\:\\/\\/caribsbasketballcomosejogarroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd02d843047d7526b63ab7d574981237074e3c180196a6eaeb95df7a2f856e88", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "530949bebfba2ec713fe32977becb18c12ccb426f105e6067f92111458530914", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0928daa0acc24131487d2013f3fc4608b189da54864d7bc51b970fd7044768da", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bf8115cfc7c910c8661f40b3fba2fe9016cd8e330350cd317348d66d4d15fe5", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f4307258c5d88b2ae698981d2f7487761ec8b85e3d0eb7024a5802dc20b7e83", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed7f575fd8fddf6cf0ed2265544fa30781ec8ee9e7a115f805033183a3b50f8b", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87159203abb71783fdeb4fc0f1ea6e7c473f86556e778c7bbe00ca5c870d48c7", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b80ec6e11fd06ddf3af7b963eadff1e2578d8aea1ec7a2c45d8e18596207a576", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "865ef4b12f30d0e33debc17f6f8571a7b5f1bab4883d8d129888ecfcda869a5f", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cfdc615febebb073da3be04e91ea990736cfbdaab85517dd2c76ce6891b9ba9", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e439a39b76781ca21338b897e69dfe402c6a3ec5d3875f405a9f614d5d0d4eb7", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanorobloxpeloc\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d933fce7d7584f1bb377155c47d1b49e53a6819c9697ad8f7bc9cb5c086549e6", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxhumanfallflat\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e414c9e9d9a0299901a898a3069c95c3b73540b6aa24ea8c58f154527734251", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxhumanfallflat\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85c99b71c4dee058a3f3ac92819e187115bd54a8039c37bfa039c5beacd39a01", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxhumanfallflat\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8a5bd755f677c00816dbab5987bbe36da95ed397fee9503cdbaeb24e160d3a7", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxhumanfallflat\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea15f75c0a21d00638ac0a7160e6a41ab685f6588857dd2571565764926bbca2", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxhumanfallflat\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe179d7f3e03718029e8bbf8608d5260a59967fd90b0c5e11c535934f4819457", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxhumanfallflat\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb3f8c0b3754b1d9959f9fbe682b84fca2e141b47e97a1263667b8d127c86eaa", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxhumanfallflat\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e89b1cf40612d897366feaa9f4e126c4438bd4034bd3c41a05f225d2ca053b6", + "regex": "(?i)^https?\\:\\/\\/poisonedlimitedsroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd1d1d237fd5aa3e60a165a69913b602c5e209c490ddae152a9adc6248ed9ef5", + "regex": "(?i)^https?\\:\\/\\/poisonedlimitedsroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a58f9d364c811de0c209155f5e53aa25ef77a743c2d5bc6101ea4ef7ebd485ee", + "regex": "(?i)^https?\\:\\/\\/poisonedlimitedsroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44ede693841419c166e5409d7ad70d5a993cb8210aa2ab6fe8a68ad6458e335e", + "regex": "(?i)^https?\\:\\/\\/poisonedlimitedsroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5db11305a3fd61ff7e288f7b514501113c7c86a4f00ad823b2182b023576cec0", + "regex": "(?i)^https?\\:\\/\\/poisonedlimitedsroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "906344a58704b141c9d816b68a5f43e82da70af42f89daaad7d3ee3a7460e403", + "regex": "(?i)^https?\\:\\/\\/poisonedlimitedsroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ee50a50090505a81cd93e62815f5dddd071df23b644365ccb229ed26750927f", + "regex": "(?i)^https?\\:\\/\\/poisonedlimitedsroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f55e846b661eafffd7865ac6a9e351101c2b1aa5f7c1c533e04167274e4f879", + "regex": "(?i)^https?\\:\\/\\/poisonedlimitedsroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5db1f0e1fef6cd35146241bf3d8643ab16ed56342198fa09307472bc5a22d7f9", + "regex": "(?i)^https?\\:\\/\\/poisonedlimitedsroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0996ac69b228a7f8309d3b34f486e469d6adbb941aad9563e77f0aac13cd4c8", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4aa12c6acf1401b6fbe057006305d08afde1fd2d5b4e4566e4b5f34af3b8692", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea8d8c13bddefc303f7bb0b9cfec5beedd511abecb0168624635a4f984e7c7f", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00e497cc14cd56176a14a0d6fa05ce9b2909710797eacb7f8f42f54d6beffda3", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beab170de66f296618b3eb277d9cfb0815de3756c2ddd32b55ccade7ae68a0a4", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6a220445e7a8650cdf9cf58222e5424205f7c9ff1553f27b937903c79b9ea5a", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6a11231268f7a78f8b179edcdd9f81944551feae3a05ae56919fa6c84b12dce", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43288643200b8ced24442df7e67c675a26d623425d025d3fa077427baec26a21", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd4a020cfe4cf55d90b0d420b364bb63db75ebdf4ac464900e9358b37d1216fb", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec0843552dd0c76febd6623529127565a7373db568958070d6cf04892b4e87b", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4351a9e1842a3bf1b458580ecfa132b41f9f64715ee91bac3b87829bdd6b13a", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f0802e6b6bd7242c969e97d850598f4c3c5faa9bd867e30317cb2a74e5a4883", + "regex": "(?i)^https?\\:\\/\\/codesforspeedcityroblox2019\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a1e01ce8bf7599945dca4de4848dd38c8ff9082ef5d9a8657dd2666eb2f26c7", + "regex": "(?i)^https?\\:\\/\\/robloxshinyteeth\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b57fc0c5a37731103d8a94dbf7fea9193fe3ebdc6a05f9daa4efd130dd9be0b8", + "regex": "(?i)^https?\\:\\/\\/robloxshinyteeth\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656ca72643574f8c2467d935594afc6954edc88365c31ead785700fb2f0f1ca3", + "regex": "(?i)^https?\\:\\/\\/howtomakeaclickabledoorinroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05423dd0fd20c158d935edcdc8160df55344ac9cc0f2deb249e91a0a7702d247", + "regex": "(?i)^https?\\:\\/\\/howtomakeaclickabledoorinroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cddfcdf548f51a78ef8c12b6303b1d5614028d2868196c8d3caa27cbd54fac9f", + "regex": "(?i)^https?\\:\\/\\/howtomakeaclickabledoorinroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99999ee893612738e1501fde54943420a8a4d9fb415352755f551d0ec1cdaadd", + "regex": "(?i)^https?\\:\\/\\/howtomakeaclickabledoorinroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81d4e33dcc3a83e866b46232938efba29597dc4799a748e27fbe5a46532f57fa", + "regex": "(?i)^https?\\:\\/\\/roblox7rings\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79437b658e2794afcc06ef2ba9725f1abcc6d6fcca6e542c3ee521d324c998d7", + "regex": "(?i)^https?\\:\\/\\/roblox7rings\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76dcbbf4661ccbc3d78d8e2ab3d3ae8da3db369ebbb5c19878b6d2ef243a03c1", + "regex": "(?i)^https?\\:\\/\\/roblox7rings\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5829723c47ccf2ce62677503b784480e4db65354ec4b2185e85bb4f7ac5af23f", + "regex": "(?i)^https?\\:\\/\\/ninjaassassinrobloxscript\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcbca33d9fa91195179f831c3fc63620d47c37d421b2b2e64a2d401121fc80d4", + "regex": "(?i)^https?\\:\\/\\/ninjaassassinrobloxscript\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a67f35f7b60f00fd1a5d28a8200d2352aaae4f960bc8bc1e1930c38f2e012bc", + "regex": "(?i)^https?\\:\\/\\/ninjaassassinrobloxscript\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17d7da7cadf81fb296d179815281e2712cabee2f297b4d3a16037846dcb1082e", + "regex": "(?i)^https?\\:\\/\\/ninjaassassinrobloxscript\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60265d7eff496fcb272aa0a0a1b7508dc1dfd5444d34b6a517a44e9f9f4f9625", + "regex": "(?i)^https?\\:\\/\\/ninjaassassinrobloxscript\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97778ca21af0b1746a7e11f8a5a4c529f9d4d71d6ab411c14381eb62203bed11", + "regex": "(?i)^https?\\:\\/\\/ninjaassassinrobloxscript\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e78703b490ec89d99540e9fe41455dc3d532e2804bf89f5ee94c58d0130514f0", + "regex": "(?i)^https?\\:\\/\\/ninjaassassinrobloxscript\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "119be7979cf3e826ccf7c0fd375cf3879b1a8bc164d52512242705e5e8477247", + "regex": "(?i)^https?\\:\\/\\/alexadownloadroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a02687bed8b55f9cd6386bf79f2992834e5bd1a5080deedb3d3e5e19ba196a6", + "regex": "(?i)^https?\\:\\/\\/alexadownloadroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51ee6d4c67277119bfc4cb697ae23937693d837aa2bfb6143b47dbf9e77064b5", + "regex": "(?i)^https?\\:\\/\\/alexadownloadroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85a1c2fbdb264db7ab435229452de5dc529843beecc73607ca9e9824cc68743b", + "regex": "(?i)^https?\\:\\/\\/robloxegghunt2020date\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c2f483442a13aca3585b2ddbda938594d2730579f122f1b32f5d3ff0db9a08", + "regex": "(?i)^https?\\:\\/\\/robloxegghunt2020date\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba0d4caedb3e7381467b808cf52620e43e54d7b0ca47ee67f5b96a2b0a49d900", + "regex": "(?i)^https?\\:\\/\\/robloxegghunt2020date\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66c997fb33d593358a6d0907ad914d0d6d2b8eef973370f6a89d19f4e6094a79", + "regex": "(?i)^https?\\:\\/\\/robloxegghunt2020date\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "914f1a10ecffd0f0e0a0d2c51ee7258031308d65fd47e18d896933b9ca3a7981", + "regex": "(?i)^https?\\:\\/\\/robloxegghunt2020date\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b260c7a6b67e141e012c054a6fe0439ebf65cb8c4e10fd298e45ddfa1a5a702c", + "regex": "(?i)^https?\\:\\/\\/robloxegghunt2020date\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0546d6156f2a640dc0317890dff67bb6998541af31ea7c44530f8b7e6c92881", + "regex": "(?i)^https?\\:\\/\\/robloxegghunt2020date\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1c82884819edef8598c0c649c52b60c676c87b4c2a035b47b5a988adf5ee145", + "regex": "(?i)^https?\\:\\/\\/robloxegghunt2020date\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34118677898b50aac9668580b498364bd75d048a474856eaca9a47efc8f69a2a", + "regex": "(?i)^https?\\:\\/\\/robloxbatmanoutfit\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66dfe3a04566c6710ba61248d0c78226aa4659ea40080ef636cd88bfc7f13c5e", + "regex": "(?i)^https?\\:\\/\\/robloxbatmanoutfit\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95aa6249e99c76970a24bf987384bf2c10ed19b7674c504de90f66c8a9d35365", + "regex": "(?i)^https?\\:\\/\\/robloxbatmanoutfit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5216999bd1a8b49929bdbb3bdef9d246226e85589e2a99ce3b3ec0f8c7b589a7", + "regex": "(?i)^https?\\:\\/\\/robloxbatmanoutfit\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe7de5055bf56d207c32400a4e870d85f1ea9eed5585ef801269b4ff2219adc", + "regex": "(?i)^https?\\:\\/\\/robloxbatmanoutfit\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebeb1e4176d517be0c9825ac7e390bda5465a4e60063feb77eb7096258d99271", + "regex": "(?i)^https?\\:\\/\\/robloxbatmanoutfit\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92a249214243a0661fc95346789f98b46321e16c5daf93d60f641b7f07b607f5", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2246862dbccf5fbf52df86c8d95e56a2091bc8ec2c231309e25a907845dc62dc", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da157ab5d21d7f9c30fc24f96b0a1e766f3bbb997e73e7ccce715bb6f94fab5a", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9127419401c61607d22bc77f5f10557998142c619f15c168afe14f17d6b5449f", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd17229f0097c30176634b45391be784cf01ccdc87108b6ef34944cb452d7ca7", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6bff10e27f43ac35e63ef9c62c0f947cf51e68343b9a799dae190df736876f0", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e23687908c5ac294a409b1b246de78c0f43b4948bee94de1577d7af6e42d2abc", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dbcd7c5e3e848645ad78536f8d49779c34dd68ea2d2739aed85a4027c8877a0", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04c421a3f6acb3da6aad1f31596024d0da9c48e358e4ae9d541aa09d33cde21a", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a76d005be51481927f6b296cf1325f22b8382b43fc06a67249a8d1eb92de4fb", + "regex": "(?i)^https?\\:\\/\\/boxingshortsroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7987100712880d4fe09e2eb5a711d2241ea73c747fab413a587595238cda01f", + "regex": "(?i)^https?\\:\\/\\/robloxbrebirth\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec1f5006a51930770cd59810f525f23daa70714d3445d67c97c96d51f0251f99", + "regex": "(?i)^https?\\:\\/\\/robloxbrebirth\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "551eb136e534623d1ad1dd58e13dfef4d70dcf7347089fb3a5e05db73001c36f", + "regex": "(?i)^https?\\:\\/\\/robloxbrebirth\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82b4948308cf31c689e2d284f5058e56d9ff3241cacdb829bb3c6d8d5816b217", + "regex": "(?i)^https?\\:\\/\\/robloxbrebirth\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "294b0e87720d67d24737c4a82f64f5d1be59749e796d941db917b32239a4a1b8", + "regex": "(?i)^https?\\:\\/\\/robloxbrebirth\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51ee45f2cb68040fa1381c2bd56d1c9fdeec4b4f155bdd3575fb6da6213fe16b", + "regex": "(?i)^https?\\:\\/\\/robloxbrebirth\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "643fcf000c97de1a3a7e9db4246dee5cf2a498b3af8641162d0b80fb0cd4cf12", + "regex": "(?i)^https?\\:\\/\\/robloxbrebirth\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72d49d83ae79de49f307fb46ccfbca4ee36e6002333410f8faf2fdf517767d56", + "regex": "(?i)^https?\\:\\/\\/robloxraredecals\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "052fb1045bc5aad7aaeced43a142adbce9ca48c63c0235d270106578ca3b3757", + "regex": "(?i)^https?\\:\\/\\/robloxraredecals\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c53b9da0370e4069e8c282daf9b43654a0e0a5d86c7f1864078c0e962d1a03d8", + "regex": "(?i)^https?\\:\\/\\/robloxraredecals\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e42d6bf0f0e55f0fbbda9a6b59872a68a3fb939fc899980d7a777b12f78ecc6c", + "regex": "(?i)^https?\\:\\/\\/robloxraredecals\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a2f8e4b4d370c57d8caab6337498cc7d9703953dd74bf45c89280412b731b37", + "regex": "(?i)^https?\\:\\/\\/robloxraredecals\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ce8d214204cbceea7d671a92ba160ce3cf8aa4bd664776d84e9f48610ed72a3", + "regex": "(?i)^https?\\:\\/\\/hacksparaprisonliferoblox2021\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6184a88c822ead36b2f6a8499e6f53a85ce1983758e2c3849982ba3ca10b368b", + "regex": "(?i)^https?\\:\\/\\/howtolookbeautifulinroblox2021without\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86b95a0e2021528c118e7fabf174e13fe066f35c5c7b87a56947b9eabd162906", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd5c199540963e4bb4507589db241db0508f61dc4a01c94f937f727e432bb8b2", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3c44aa3e20410cc7bc5dc30953575e5c149196e6b5b4b934301ed545169f0e2", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "defe60f09f7e2b1a8354aae7a1fbcec8a8dfdefc0321d7e12e26e1b999d236bd", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2acb8e6bbe4aa0bf64b6ce366b6b0e9f706545afbedfd5ff3efd4ea0e8b515b", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aec2d502805ca8316072d93bf3bbc8dec43a3000f7ae18d7469ffa3ee64a9bae", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ad85232f87fbc0e568408409a942cde398d177299d847ac9e1cff666296cb82", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7333c745e9792d6cbb9b64401795a2dbccf940cb86780dbfb53f6490b07afc29", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "567507af42c51a87cb35deae1919716860dd34f37c8c0ee5dbdeabce6bf06052", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a89458c8632fb7b6da34d3d09dc0fa0c64467deccb1e0e3a642df6d1453ae5c", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab1d50a59a7bcb83889c053a83931ac6ab7a88c77d70ab559643e37cf3ea652", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df73fdf1708b00c687d41f8c2050ae2a7a9a65dd830c532acfc6b530eab47be3", + "regex": "(?i)^https?\\:\\/\\/robloxdecalspepe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45d652977f0a47dcbe49007a8002cc888ef64e15339a29d33533ff452a1ac37e", + "regex": "(?i)^https?\\:\\/\\/robloxdecalspepe\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30d6cce55ec22eb5ab076e49bcd7ba43a789f67140810ac952cf3c1a2ac7e096", + "regex": "(?i)^https?\\:\\/\\/robloxdecalspepe\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44a93ebb340e676c338bc602121d8b22049f2818e8531563114cf9e23f18b176", + "regex": "(?i)^https?\\:\\/\\/robloxdecalspepe\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cd31603c52739ea1c8c2c36240a38d254290a8ade7f82e9f8d2e1f146a1e811", + "regex": "(?i)^https?\\:\\/\\/robloxcreeperdecal\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6230f7d41520de470a80eb3b80eb23c6073254d087aba7cf59286b9139b0ee00", + "regex": "(?i)^https?\\:\\/\\/robloxcreeperdecal\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "279a2294b030b16294af686790703198eab03793527822cdb92391a2dc37e375", + "regex": "(?i)^https?\\:\\/\\/robloxcreeperdecal\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "650e9e42dfa464d88ec78d4abf82f5e0d9653a0933695d11393a36a1cebf30f4", + "regex": "(?i)^https?\\:\\/\\/robloxcreeperdecal\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcaca2434d4e7f499655ae343fc1033c78a2579937a9636ae4f51f5eeb6c41ad", + "regex": "(?i)^https?\\:\\/\\/robloxcreeperdecal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cae9534aaf672b671f726c26d783d6755bd2e8232703b851b9a7899ad187460", + "regex": "(?i)^https?\\:\\/\\/robloxcreeperdecal\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f34a5ba642c27f809f4a919cd5e3d6d6b767909310c70e7579a332ba7dc034d", + "regex": "(?i)^https?\\:\\/\\/robloxcreeperdecal\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "473e839cf64f435f996228dfd23d396e8c676afc9e205edbc034b749b577218f", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35afe2d8a9328245ab5ea824eaea0920e8709b0e470671e0b09b27c777eb3f81", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8878ed76ee520ccae7511074171aab0c113525ea5ae434d7b107176a6216aa65", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baf88dcf4473f25a0e6d24ac3fbb1e8af0174ae53d4f33c412ac075244b87ba1", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "749615ce978ac0d03aea454fa96593e8d33a77fcf49567d84569d896c05c8ce1", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fc41a9fc79d96816636b6364c0ac08bfe97fa61f6596d9d0d3b2cf6c1bcbce0", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d078ee62395e70895dcbd497531b1c1a1a83425703c0b113077cdaa8f34ad0f", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d933176aa66143d16012d8d15bddfc4e4481cc970add131e9c75d271eb17256c", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4aa8b0259c3a8562562f72979b2804c2bb8a8ef85d599dc30c2d00e8903a5df", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73e0551fa2f4a762f74b5b268d78b6ea38535c537b64e83760699952224efed", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a3a96332c0f317d44c7ed13b17e3e7b794c979630dc51b2ac935e50f098fe0c", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9788b2fae27cbe9b71203616f03b463b20ff557f90d228c5c6bceaf9225550e", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85d9c694dc64750f22abfd8938aef08e27fe7fae5029f81a102cb3ebd9e815e5", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c89635247789f742d378fc4201199377c50ce3b1d26bdc96b6152a0bb016342", + "regex": "(?i)^https?\\:\\/\\/lescodesdrreurs524deroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d67402e5f55f7482243a9a4c58cf14ff0f3ee15d0ae856b1d50a10cf6333c432", + "regex": "(?i)^https?\\:\\/\\/hacksparaprisonliferoblox2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0d1ee1dc43141fed5eac8c3a67cd0282b7af910097aa6ded5a412fca7c892b3", + "regex": "(?i)^https?\\:\\/\\/hacksparaprisonliferoblox2021\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5658598bbeb4c88013340f538111a32aa9bd91b18e11321bfb9407f14cb667ee", + "regex": "(?i)^https?\\:\\/\\/hacksparaprisonliferoblox2021\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1eaf9881ffc2d7aab76d80ebf171d7b7e830017feea28a4e0926d977227d6088", + "regex": "(?i)^https?\\:\\/\\/hacksparaprisonliferoblox2021\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7bc26b4aa3a19c4b071c514a55deee04b0fc8bac652e98537fb60dfc7ccc9d", + "regex": "(?i)^https?\\:\\/\\/hacksparaprisonliferoblox2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c26b0c7ffca13da8b3843798310ecaccc456f61c7404d767fcf6bf1d631921a5", + "regex": "(?i)^https?\\:\\/\\/hacksparaprisonliferoblox2021\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "113f739b7f41d5cc6bb6a5cd57b062431748b0988dea418fe012085a1e2d9e08", + "regex": "." + }, + { + "hash": "4bebbd4b0b99b27bc0c271e27e8fb47e1cab7f5e5290756ec3e6088744e4920b", + "regex": "." + }, + { + "hash": "fb090b345ba199d88c5c0663ba2629016b594703c6f9dc58952f5a7bb6a53610", + "regex": "." + }, + { + "hash": "26c4347f160125716cd25e0aaf1acc12cf6a90c768da2c0452075b22b4699209", + "regex": "." + }, + { + "hash": "9a89768291a0414e18e71796a38c37c632f26ec20699fd8eda0eeaeac557e58f", + "regex": "." + }, + { + "hash": "154e6d6562796c61c35de7ec2f5f2607afe2fff23abbaf99e98a1ba2c9a9cdd8", + "regex": "." + }, + { + "hash": "406b6ff172f3a4d902690d0365f339fea7c797dbf7efdf1092169eaa2cf239ea", + "regex": "." + }, + { + "hash": "ac5f41adf5dcafbe548a9b0bc0dbda895a5376ef63aededff6adbc752fcc548f", + "regex": "." + }, + { + "hash": "34b922b62f331ffadccbea6ea2e08b4515f53aa3814516156d3611a7913b9a8e", + "regex": "." + }, + { + "hash": "6396a9a767d7f7ea9f3d685d1c5f08390f7fc9a639364091de736db15fd870cf", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4822c53bd143e6e6d56844aea32a225ea3657545484244415da99ca97aa524b4", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cab50fe6526d638caa76dca1259e312ec28d87defa9ccac30c8a8b1ceb216b7", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07c81e18a82dfb0db2ab88aaa47d2b9ace990d0010a8a82e403624cd5fc55f65", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b75daf8137372f00140a8cc284e57a1ef08bf8dd3f4b0b6d6c28cdad6aafea9", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e82d3181e2c9d5187edb898d5f0f40776cf6896c30490ffb45d5775b8f672172", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1471c3d71a47c25d7caa91cdbac09bacb154fdcb96ab92f2fba9303e34003ee5", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "016e75f3d5e3f037eb1884231d36c9ba348ef2bbfecfa4b7fa578100d5382632", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fb2dfd485c7f1615d74a96a0b435b447aa65db3c11311276ba7f6f57c150f02", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfe7d9f30646e763addb42533ac390e4fbc291d036d2c8e4a44fbb6c4d2b90fc", + "regex": "(?i)^https?\\:\\/\\/howtolookbeautifulinroblox2021without\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e699f8bd45d7cef4e8142e1b5b5043259ae23d87563f108103ad87b5778bb33", + "regex": "(?i)^https?\\:\\/\\/howtolookbeautifulinroblox2021without\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cc14a253ca92b9c28674d12039b2cda2b017806e35a1184a2a1faedb57a9d77", + "regex": "(?i)^https?\\:\\/\\/howtolookbeautifulinroblox2021without\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0a799e09ad955914b44dddf6ac8ecc5543e648b5cd5fc812edd44f7baf4bc65", + "regex": "(?i)^https?\\:\\/\\/howtolookbeautifulinroblox2021without\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a41bf792dc532af9b0c6e6dd0a1fbc83cfbe94e31bfb8ef650e3f720d3fec35", + "regex": "(?i)^https?\\:\\/\\/howtolookbeautifulinroblox2021without\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4ba2c37eceaaa9c25f30e8e7a2cb484aa3ded4eed85cd8409cce3497b12a6f2", + "regex": "(?i)^https?\\:\\/\\/howtolookbeautifulinroblox2021without\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5e2855215ca2e2a42c097952f7dea3d3f14ae7dcb0991652ad19fe22171eae4", + "regex": "(?i)^https?\\:\\/\\/howtolookbeautifulinroblox2021without\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5363651ccc37fa322c32abeb5a2c118c16052d94f653f98f888a338951bd2a76", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsshrek\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e57d190bfdad426ef022f75ee0e14abb0bde51b8787633fe41d3a27e6867167b", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsshrek\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fefb7b0d3cbb0eac66232d974c47846cf85e8e198e12f86f2ad6924cae867d78", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsshrek\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "914fa6fd70a2f9eb4866a702de29ecad39711307ceda9dd121652e0ff9999021", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsshrek\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e21c2fcc930e96cffd6ced1c0f71600086c08c0dc008b70d525c373de7d019", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsshrek\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caf3ffd9f3951284737917ef6294f44eba55c75e340b704c933e9b4b5bb30b14", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsshrek\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a509f1198959a2e2595cb184cbb589f7f346c1b15c199adad2aecf4f0096a05", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestleaderboard\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ec90ca3152cfdc48c839667c2f4e960b7252e5d6cf8164576f929f74b20e562", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestleaderboard\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d36e8c7760b6effc641cbe207c32b99171fc74c554a0cf5840bbe19d96ae7241", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestleaderboard\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d499e1cc13d9d7d5b7269f06b64021ca9c8537af752a010eb474c36ad1d6dc", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestleaderboard\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7409a032a5f8ca017ba48178ed47937066cd0b9616c73666b19593a42e0e3721", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestleaderboard\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0c2d1a038188f487eca36d977d702796f15ad0d5a00404d0e7df55e9664a375", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestleaderboard\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce3a58c707b25928efce4edb76c7907b5ad28d8ab2456c059f806452d7046be9", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestleaderboard\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "634611553b4f47d77e2655ec47113275546e01824c64e7bfcdc73c08ea5b7a98", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00ae65522910e478e1212afc82e04ad5542328e37480103b8d3ca358d1a9f1eb", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a2fd60bc2f14096a3f91dd3e8d70d713556782aa84f2e7c8c6452e048093fd2", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ede122b2406d1dd821c3d4315ddf47d7c33b73539e8682ba0fd6ebe8656806b", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "193c422179348c6a8fe8c0683a9646f830468344fb38440b4e6ec84f29f425e3", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4af4221430dfe6c39f0e7bef0d7cda4de3dd216c6b25bcf193a5cd01f0412498", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69b133bd934764c8e9718bc7939cdc7e488c829df0050d5bc24c760d99d33914", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84660eb4bebf1b5f1b5fdeaee73a8d1539520a8df6a8065bafdfa181d8bd824c", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aaaa1dde3df87586a4275f595c2b57c6c45c3ae0bb59497518c2d745ed59adb3", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "892778787c82628385661a62abe47adf7222ba3aab5dfd1aec845eb18e84b138", + "regex": "(?i)^https?\\:\\/\\/bestrobloxmusiccodes2019\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a359b8a76185cc65e94ed9ef0e7826a62fa2ab4034d1c5e7a40f2a8898ddc30", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "325f9e472ff25682e362dc8ebd6351fe5df771e0034d6ceb151f4eef7d31a2c3", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06a15df32d520df1d750c5c193f49ef0f7f9878c32581415abe17de9b06339ea", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "337e04d78ea85740e5804e725365a21d8b7ccd255073fb2c80b8345fca771580", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dd2abc0a1f9ddf6a284dda5a79c0d132f3c781f6133f543b13ccc5d7f24dcac", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dff51360719172b0620855003dff65f129cc5b5c9cd85d108014f2577c883a5f", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef1d5531539d8a89f7c5ce15aab8013df4e0ffd3b720ed9a0da51c2ffeaea35a", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c373714e80a9594d0ad262ffa29db24b7b977d58a473434f09475328c5ad0524", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a466dcdbdbc923f28a15adc68e0b0a97273ed4e4a2bef89def5c67879076aa5", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a94ee9d74c46c6385072ab99eb2e7666689b806f7b127ffe036de5380255618", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5064d9e7eebaee565dffa05f2ba55ca173bd33e6916d0ec03f86993089552b73", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf8d47d20c3fc4d193b556dda1f3d438c06b9c64899fefc5c2977327562c38ba", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "793339392536e9ab801eaaa0668f294886c315533f630411f145f6c1b074b9eb", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbc548a49da7a90b4d83879c9a104dec74eb500f11afbf15f278315f45b44bb3", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1880c7f0b51d70efc480c5b261caca47ca8b345806b069d3d1f1a06713740341", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aaf8744f1724c8a1be0c6b1714511b2a30d7b8ae596029a94881ebf59dd6dc5d", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9468f1e3c61be7e2d52eed8a0b80c27ff5983479a37ed6fd33d741d3711b17d4", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5547213ea89f3d6457bf85bada3f59d83d3711866abd595aa2a7f943e1c1928", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6406cdd4cd5404334f3defd5b299547e8d9b36148ac8bac5b39c89dafe235b31", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "427c9c471c41095c7096e47227c00eac2112736ad8bd6631041e9de7d29a2bcc", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4f88a710603cf3cb2f83c28b49f4a16248a7279821e3300eb968eb268582336", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0040d87fef4a09e9bb3dbeb04e7f49fb4e206913317bead3d06287fdd5f020e", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "793e395e7252678035c4dd525f5632387809260d53d6a78c0de4e67fa790c26b", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9836f1379b0baf0b21076cca8c8deb82ef498d351794bb5a5625839aa10ad5ec", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1751c75e4a4db5f90b659652618a1ef9ea25e32ff664d068fcf9b98dbe3a85ab", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019june\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a123bf7ec246b3e10ca0d35e33728fae4ca760aaf339e9de65ec25911f2678a", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019dominus\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "882b40b2eb11eb7dd2a70772a4f29cc27bad0037d6f141da45a4e093ce774997", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019dominus\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e4adef78c99a0f9737cb7e4b0e51d2f5979fd8e3b28b5efdf405ad56e109da2", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019dominus\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00910a32e85ec36b6e6680f82f81a2c66f9f6bfd8036647c327321221640b466", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019dominus\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdc9bfdc8a17e374c18546b58590319f252ee531a598c0c01485f3c54915b25d", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019dominus\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d9e92b5206c506cfd5e65a67692b394cbb65b5c79dc4393aacfa8845b90d41b", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019dominus\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d42623d7dd02088a211b79745a410cafc9babdde7701b8a2db4bbaa2d1c8aa6", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019dominus\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ab2bf324e201f34edddad261822acc5c97da15e185300eadfea802c536dc2b7", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7575bbac67155e979bf16b871ac3a7802b837d7c258df52a3041b6a9587bb16a", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a1e67e1223ef5e9ec9549080eef8940dbad461fb1139ddd373937744087d861", + "regex": "(?i)^https?\\:\\/\\/footballuniverserobloxcodes2019\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3aa988816fea7dcd3b9dff57a9dbe06615822ba508dbf84971af302f888fd13", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50be3886ca72253a80d327ba8bb8ac64bf6581af2e17da407c58a8a782647d29", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7eb42e253b300a5e262bab363c5b8b822442593346f2a76c0bd7fdc6df88441", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65af9e5ce80bd92137f3b6c831965e1ae9c185df92de3eaae32f3c592e35453", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0a5b07c9239d5ce1f021ec069bad1ea40715313eec0c837c6fa861855723d21", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b67cfdedf4e8088e5b3a83beaa70621f1d3ce4f5597c3818c75902d749a44f9c", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68197221b47a1268d7f66aaa05823498655592066faff3de359e703ceeba3589", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a17900d5197a58bb0611e0d418277916e470406a04d9394c9602711abd8809ff", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29f6ac1c3cfa6d1a920464513838159362001c9099b751c97be26da2063f028f", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75ca2cc5a9b2558282aa6a736188a80f4a660595f6e3581080d6b5e8cbeb079e", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50857659f390802db1de544f0f9ce02e7c808e38aece343fca60d0334e860595", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f0ef94ad74a62a8b014b3a08fb3f34604e2b212b8c5683f6491a1abed8b3ba8", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b08fabe5952c64b2111754d157ca78fe3bc17097f2549e6309e7973a4e4c7c5c", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17ae5fdb080f6ea6d2e5f6a434e6101a944b98efb48d85283395287b3806331b", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58e39c4d99f8e98547818495d9ca70fb20dc036fd3df70c70d079f5c0f7b1d32", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a07039e26aa0938515f003c32a739aebe4e64dbdbaad546bc0976c8a814f652", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52a5d347718099ea848164b0572d626cff01fc50c1c140ebe2d66956880c8148", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcc0433cbdc51d2cf3670788934852ac9aff516a65a9b3976031fdaa91ef479a", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3176bdf7c43dacc7f5a512843057ca2fadb64139f5a22f2a1b19198370276493", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ed2a38a86c66f2e7b618ca1106f362445e6c135de2c66ab7d6e540433fd8ad0", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0ad44bfb5548adfeeea8b5cd9ffce35dd6b755371e7d3902fa9ebd2123b06d7", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvideos\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "499de678e0161cd609f403367cf70f90dafa6021d1ca0fcf4029ef84a000b985", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab2dfa3ef248c6b48d8843f0fc04b6c45a16748e9bcf1cfd7eb3bfac4f63034", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9464cba723340e22dba21266a2cbfb572765b1b748446d0192cdb70a5eebe3ac", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b862d392605fd1ca87d44309aac7b8d2bbcdde45e567b4958672004db0cca5c", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b08f729e69af490dee91e1a357c115bdf4ab806eff69da924b68de2a05303698", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "182259ac8677a862206a04fcfe4127b843b99f96f06273b08a8852f87608e56b", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "418a0def9ecd87d0ef50d99b514d9156e01f9580b0d084dd6e1c4d717305b67d", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6e968a06a51d4e0e4c18cd6a0c8bd52aca7b0f1ec5b85ff53a9a2f019119d9e", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9337e698c6449d645dfa73fc662c91135eec2db1ec1964e0592ab9195182660", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7526917b9b477bc4d1c30983398df422ffcb1346ab1f9e307f87ba9c2fcbda46", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97557abb68c601df9f51628a9764362b4162fc44e5f11ed1fdfb39703074bb0b", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019june\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a33f37600056df5a55e5a3fe26e5cbf6303fba08f235e9a732dcd423fc5f744a", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "763b8fda577bce257113d7e6a26ce49230680b1e23b836bfcbe0c66ff29cd87e", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efce49a0628c9b25f325bbb4bb0dde3b1128a661a09997781b8721f40e4c8646", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72682c5b1af5d117d4dac1adeaacb8ebcb269d77f66e22c398ab0426ea4590aa", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9cc5c74d08be669503baf5d7469284a53b8170d8f27a0f66a547709b9f0fc0d", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a232d110c5801d8f7d59488060045015d8e00037b836b2b930e8b41b2713bcc", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89f8b241f13ddf325745e2b5880b393e854aa171a8740547b4ccc2648d1b2cd4", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72bc113941b06ccb622e997a592564c5f203da39fb1686b37068a22e120b5036", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd85b815bad160bfd4d6f7e75e615933b4e87bc4bd6b29b83101a250c136a2a0", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61fa50893ecffaa747464ee841ff0313e6b894dcb708b98970adfc7488c15a11", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "777c14df817f1d54cc3c61c95c7e3caad6cda1f38b8aa736df715c951f8494c1", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpotentialcalculator\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cce56ed914da328f6c348d2427cf376543f11506454dc4b85b6fde835865d43", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dda6e94bfd2c3c8ff3541b8f834ce85e86e1d4d69bd37f60244fee53967f4e7", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7534d400b64cc5a9f3945d9e45dbaa7a2f23bddd16c9032433303e88900ed981", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2147f84b5aa81388e6ce08731f9e705895381a1408217645d3a1a4261105669a", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3873d79b6d32bf644bc07e8363f229ef2c86ffe8fab348518d94cb9675963df", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8f79dfde0e7ef230fa3d82c9b019aeee991bd74b334f8e64978a058d2e74875", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b57c28062a5d23dd7d43035c86ed9a39cb0a3a85406431a788bc4039c1a104e5", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6a191b0a5681187246e5971cea36773379eea4bfdfbb09b6d6c81c011bee12d", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7061cfb85ab1ebc1d12206cb0c6262e36aeb55935857bd2ac94f2327e8d16be7", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b76be7c0e6766e98d5189e74559978eaeab17417ce1d4a78dfe2a5ea0ecd0586", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b02b0c9423007971e069d4af3d47a82428270f7e7bd2031b61e524c4986c4cd9", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ae46e896775df645c3277d8c45e046a1d927f2087e30fb73d1e92099057bfda", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de8e2d2b471f7803db5f2a381199d652fdc960e0d5d11936129d1002d93cda13", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d37ce542a28b85b2871c42415f12c71f29ff44ce9318800f68c08f6ed3304e9", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43333e231c4b6074dc97189f61f60d52c404775686d0185586a444737c42aa7e", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75cd1356c741fc82e8c8a15bfb310a212939e13bed28e1a56cf35a5a277d3854", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b00b787bd1d5e1619fa4aaca5744df36eb7e25a6eb4afe32be373a2953aa5a72", + "regex": "(?i)^https?\\:\\/\\/robloxcodes2019july\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e703b09e1f031795ff2deba8f2b058ea97938204cc0f60e03a2be065d505176", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bff57f6cc3d74df5dc9934fd3c36fb5196946b7bc4de2e6d7d0af5ebf7344779", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df730dcb22f5d63601d62ee7251fdc0ce538a58e8934d4d0509d7ab788c393b2", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eddb6d53fc49310eed0bb7b822426665d518b708974ef7c504728020a5daac83", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c97cf93355365f2d995bdb0ae83d4f10bd75f0003ac0d8f00847f18b28e6360", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8079a59b9b35146466306363db8cedbf406d19b123fa78e7dcba1e9a4a7211e9", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c33b9dde1f152922529b62e8dbe35d627ee9f14b88be8bb303293843bc6bc7fa", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de28bacb6ad2abd2c678179ea3286b3c4fe127ee5f1c481c9e500b8aff917f36", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c6a171536f80680c00da72a6a3563c7b43eecb7f425799ebf066f8d82de1bdb", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "140e0a4a6570b677b2f3fb5a9b44b7e231eb178aaff27a3a3dcf2861428253f3", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04c3ad01cd3497b467c55000982cbcfd75876e96ec84d19f7c8e28dff3133b47", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8be09c63ce66cbff865d16bc23055aa9d8b38b8b26765a33f93d2c751d2988d5", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83c4d956787c388ee06d5cb7b2ef09a03f996e0c2b76ab50535fa76fc11cd1ce", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestpirateislandmusic\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "704983229605c92c40c98db39471ef80cfef29e01a9ef53c5120402682cdee09", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019happier\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d716364c914a0fb624acf8cdf0037c1a3eba2e03d16c9bb6d2d14452cb97e24b", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019happier\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72af6d55374c0150c393c2cf6b9e4b3307c56f42526cb7607f703cb6946765ab", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019happier\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "effb9769b385bdd9eaf16bf3057415ca2059c611971399324e91f7eaf3aaf7cc", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019happier\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de507c2db1f83b60f798160c58dc67aa0c2205c2c7be4b1f26e51714b39f47ad", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019happier\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2f3925a0746549d21c43aa6b59b84a94d12b0bbcd6e9cd83af3ed38391eb7f1", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019happier\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19e044e190672bbb65befa5e7b77103bb69fd757939af6e7034b9d29c4718ce1", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019happier\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9151a867d84aaddccf169adc5072f746af394c929503eb9e7af4c6acaad63554", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019happier\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88a3bf1c3c19a0027441f2170d75ac6b35b01c51d47b8ed0efb3ecb78f2b99c0", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51ca11c72fb2c4cbb97d793c92eb01622c9f3a3549ce903d306bf9828a72bf24", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54f4fa76dba99bf9271ebec64b8dd796f8ebc77c99b604a03ddd9317a2523eaa", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49cc9d58d803f8964cf402ec319f03d984cbf3d5a28c493a3e94daf2f27c06d8", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a38b071c08e26ffe344a6e85cf7370c758cb57e402bc02feca4a1fc868c11a72", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bf61ce91111bba325409717825069ff6324489d2b65d85227957844963f33b4", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2869c7b206c7edc913eff806d29b1d5fea2016c9aa0066c3308645f02e44eb4", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b60332b1922c61415b52354de1237efd75696a58fd23fef312ddf1ea7eb2e4", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "077c680fb011c50def5dd44ff2a81f65b02cff725724d9d1d1ac95381ed0f03a", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "477c996d2886b6a675e418234bcf2e72fc9d087c62e9d2d712c2600d56657da8", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b390af57bc3756a305caf58ab4f0209f44865830cb552d75f00307181b7147a", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f05f84b3048f39e95f7e762b7f25c4128d3ad7aea6456484ab61c4d1c4c1756", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d1c100a99d861e1eac2fa2c41769815cd722aca32661672e8b8060e0f063cb3", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2248f546c308a1426f2eae0faf6d0548907411784c3e0a72c12745141202b830", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c70b6d0a84f4a5a1b3ce5347afb452319a3e43e95b9cd1a84520965570b5174", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthowtogetfirebomb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82483db160976be0e008e5438a04c2a4dca2e36b21abf258fcb3db84c276502c", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthowtogetfirebomb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "513d184d0451f1e1becd0424aef52a4f680217e2ef14dacd6279914310390801", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthowtogetfirebomb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20a84b4fd7d36ee6fe11c18b8170c41f7cd068c0a09d67c2259611518e87da53", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthowtogetfirebomb\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3289294253ecab8d02a01058c7d636bc328fb600e3849aaaaee663819785e2ba", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthowtogetfirebomb\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ba7c7a97a23e6b75b2d2b29214bbaabfda55ff72637a198550f0b457ee185f2", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthowtogetfirebomb\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69a0a5f7533b6e26833fa34adad21ab6ef65fbcbd8e83de4340b203dd89e66fa", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a6f3564b12e2d5055f2b59c2360b34a473c003fbda039fbb645a943064926c8", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5486b3eab48c610f88f5b7e822447232f74ab2afe9f221229e4f7819b2c6302d", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a39cdec836ff2259a7fdc34167033f41e7b6c0255135647b8f58e51584cd04c2", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c78497ec367a23e6684d0ef06d0e39998d3aa0a8c6d5499a9ea778d2d63cd8ad", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d717ecaac266e73e9a4db4746a47a0f28bfe96149d14a31634f6cd65f23f707e", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "297c5439360934f0f76ecaf7be229851a42103a9e057c5df42f04b30c09f673e", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4357fa3b10333862373bcf8846ffdc1ebb94daeda3ba0044a4c76bc194d5a50", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16e50a3a7e71d61b8e5c07df2dfe5ec16e40fc6172c1fa60a41674a234526df8", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa525ca6f48774c7f3aa74724d2d267dc50aa1bcca14a3a2b7f5f367dc4ef8c5", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "632de7f910ec0b87d4a51f68f9f6c7e7db10ffaf70910788f59347da73c37905", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxdeathrun2019july\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dfb16d75562eb62262d974f52ea321d42fdc12d83c56146e6ec2f45b7cd3b77", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxnotused2019\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b10bab51edcf67a4099b3ea05d5d17f45d7fe9678ba9bdb6fcb4649baa140b13", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxnotused2019\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1801d72eb3fd396b8ea42ba59f57ad4a3db0452ebcf853238531603bdc1b0df3", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxnotused2019\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5b1b7d944e6a13e5064c19ecded54dccf0416d12bb4208ec19a275edb9a7f9", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxnotused2019\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aedf0f55f38827f6be2b87b8ce27c59c0d610002bb2a8fea008baa8f89dba2a", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxnotused2019\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c8b0caef7076f639cf601f06e535e20facf4e38e788f8b7f4a15c0d2bc233eb", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxnotused2019\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "891fe8a0dc2efc7f84a65ff0947a88f23c332d40b6d51b4f613de570d2bf5bc4", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxnotused2019\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "750a54f68deba36e29d25253e84a11c64c3d977002002aad2f72584051189b3d", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019wiki\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b89ba88b140d2f0da5262176ed486bdde085e9c7f98a93631a488ff258e77fa", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019wiki\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c218d27e806709a385668f03e86e2a94e8f32162a8935f46ffaf4d19d7abe1a", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019wiki\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e397aca91c313d4de925480d2cdfb26643ec85308659e6dcc2e8c4ad89180258", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019wiki\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fda93c00534155bc70ebcdcb75ab6b40de1e4adfbe8d4219aebd6f24f20af5b3", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019wiki\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7683cdbe69a4a9c7c20fd63dbe8c7c5e8b4a51c592882825483379b6a5a9f65f", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019wiki\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8585444194d706c23d10914e1f90cf9c665a54dbf00409c95b11122c2bb31c29", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019wiki\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe3c0c22d77fc1a8905199ae52227520932d98b0b0c58a9434b3fadac205c63a", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019wiki\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "097567ff40ff702f8d9eda106940a3b710135a1f96c2c37ba462b07c3185c156", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesforrobux2019wiki\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c78e54050bf6ce9767b8ba9d76612a031d58621dbe99b3678c0766c8a0229ab4", + "regex": "(?i)^https?\\:\\/\\/codesforjailbreakroblox2019july\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aabb9800cb52967bdac3ecf16997d441f5aaf4c18f61fe92b5166950539d62b3", + "regex": "(?i)^https?\\:\\/\\/codesforjailbreakroblox2019july\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3dd954891e56fa7b34248fea7a60317a863bc4cc30378b4dc24fec9a009c1a5", + "regex": "(?i)^https?\\:\\/\\/codesforjailbreakroblox2019july\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f93082eb4555dba37b0f0d46aacf9ecf97b802425ef0d14c794dbaad20a75e3c", + "regex": "(?i)^https?\\:\\/\\/robloxfreecodes2019wiki\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23efc38693635f42c98f5ebe704d06120968529c77017871cb16165e791be7f9", + "regex": "(?i)^https?\\:\\/\\/robloxfreecodes2019wiki\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35f87b67d4b1ab77d3e37379cea7051e876a680de5b07f44aa52f7cbbf6170f8", + "regex": "(?i)^https?\\:\\/\\/robloxfreecodes2019wiki\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70346e34e564786c8acb2397d4d3adc1f7557b5a3878c46bcc1ec2325abb3a7d", + "regex": "(?i)^https?\\:\\/\\/robloxfreecodes2019wiki\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f251dd8902e40d9e7593c3405fd1e4b01e899a87a5e45b6a47e2b4244845607", + "regex": "(?i)^https?\\:\\/\\/robloxfreecodes2019wiki\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf84196f9b48f05b2e98976a47889b2924d9c0a9d34ab0382e3f58542350723", + "regex": "(?i)^https?\\:\\/\\/robloxfreecodes2019wiki\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "548f6cee46f95b282b9acf35d0059c1dc85f4a8a8a2d9cd359e460b14d28da81", + "regex": "(?i)^https?\\:\\/\\/robloxfreecodes2019wiki\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29e773b2b4b9c624e13f74b9da540540c7bbe3ab1126c1a8e16f1409b121e327", + "regex": "(?i)^https?\\:\\/\\/robloxfreecodes2019wiki\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adeb3f1b0caab7fc09d6e294dbdf4b7967a157f929705e27e81b1a3ffc6e433b", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b30b75eeda4d0fc4314626b51b2a685704d864a8c7d263800f03e687730dafd7", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6b99b6acba60bc00e83f88a97e11743073cbef123e17d3e61ec986e0514051e", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e810a17e088993230a5cf510acba32da05ffbc03d1327444f6b5f2222e408036", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3696a4fc93d3d067b2bca0341f30958f3d79c8593cd506608b3030b6ebecf941", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06594e80c73730f2540688a1f4ee3e9554cca20c05ebf4049b08ede51f37be74", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf029bf02d976028492625d3ebfc8692dd2a47a8eb629319e73341662226f5b", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52c0def7dcdcf5e2daffe7d9da27ae32cbd6fefd216160509c2ec993cb200790", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da19d6e1a9990e0d854b0a04ca8962d2552c9430e7dde55b49347a0cdb4861e9", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b9a60601d08bc9b599a910112b33730e7a0a049eef61f5beca0f5a9d5a6f5b0", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d19ffdebeb75423f933e6ce0db96dfa2ab3b31228d5a33f6a3b0b3a9763d050", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7364f08e487645c96a049d8673921c59f07edeadf51df77f1d8bcc31dc93050", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fc8945ce5c5a7df0280fba7ba9e6e76e363c0898015aa98fd36394200be86d", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e08dac435421edb5c901d33ea990e4d14b0a551d629aa0b324832e1bbee20a88", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec9b1745d94e0668715d5f0241c1485d12e84008cabc0de52cbce78450fa9ac9", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "648a0fa44e18bc2542b4c899fa4564261e55828fcf2f6f042f84d62a57829fc6", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fac6f19ee68626b5e03a4b7c949ce901467b6db0979b2301515f060a3266c75f", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ef1fec2c84168eec3752ec63614a45da32bb69e3ad98bdea5df11e7a2cef5fb", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d4d980c39eec04046e9dc86a364857f156b8d7ed32248d829a165978c41995", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba007fb639b885070a423bb02229a11f56b18da42a66f8a876a4e5c7adae8f6c", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08d300f677bc70ce1ef684352f911a4da08c1dc9d3e2a256a576181e8dd0687", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73c0de4dff7a4a872b0a78c0038b4b531d55aed1f2a2da5a189ca528ac02e40", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c86c32b79a9bbd6cf835c7b27c95f8e6dca675c96505e833ea78344627a3cfde", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019april\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7c64b980350d49d2fb3b035b7fdc38ed79558ac294e1a2f8163f73722aed71e", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019april\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c0bb76fe0e3023b49046f9ba5a4d8ea80ab004193efbd45767f16dd36e88926", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019april\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d2070244717298941194aae4637639896b8bbf89b579395e9c76fb58dbb517e", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019april\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8537e7d488c5092db918d0de220017fe548dc5b9bccbe30399d6bd9219c461e7", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019april\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fc0e0274f8fad8067eb8de41f6c3712e1fce777be667aea266ea44aa4bb9005", + "regex": "(?i)^https?\\:\\/\\/footballuniverserobloxcodes2019\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "165be90f7def14601bf25b8ab8351bc95fd91b3cd31c4a72138ff1277ff3e135", + "regex": "(?i)^https?\\:\\/\\/footballuniverserobloxcodes2019\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd5fef0df9000287ba7db9e8b4c74b9c2adecfcda0b04c6ca334eb7dc6e9be09", + "regex": "(?i)^https?\\:\\/\\/footballuniverserobloxcodes2019\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdc304b5153c5c33790cbee9fc8626cab9fa5442328489dceb4a1e47af4a8158", + "regex": "(?i)^https?\\:\\/\\/footballuniverserobloxcodes2019\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "252c0cc6cc9dcba50c3633281bc845caca3f5b2e428fb736f514815a2c532fa9", + "regex": "(?i)^https?\\:\\/\\/footballuniverserobloxcodes2019\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84dc336ddaf0aca9cbdce16da00ba77e82afbbd953fe0a9f5fdc2ea4139c716c", + "regex": "(?i)^https?\\:\\/\\/footballuniverserobloxcodes2019\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "361d44c99e8c8402818cef888c744e6cca547e380e29921ccebbd469bb944fa4", + "regex": "(?i)^https?\\:\\/\\/footballuniverserobloxcodes2019\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6becc9eb5e58e46fa71bb7e0cafe5d8748aa0b5819e1e96282cd339771708275", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesjune20191\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7cd8bf414c47e3ccb4d310ff90a1c473c55d37bde5ba070efc53b2a3e62a1db", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesjune20191\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10ba4b282253d71624e19e242017f46455dec92687fbba4df58aacd273199eb1", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesjune20191\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab1713478c4e1f48992f8b1645df5050045102b00b31f5ed40b6a19c1f991d4", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesjune20191\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a658e7a09db39ef276e9ffa886208cc2671e4e64712197563d96dde69af5d99", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesjune20191\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2be8e97be4ab8bf77f52414bc5a030bcee45111cac1463228e7f2d977f0319e5", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesjune20191\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d46a1b85f0b35256ef8f7dbaf85f6599c1ac9b022fadde0055d37b1caaf862aa", + "regex": "(?i)^https?\\:\\/\\/freerobloxcodesjune20191\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5536284444b5fbf7cb02107759c6aba3d363435420df9f01b0b765cf3f7de41b", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestxpglitch\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b6989d0622ea0698367bc8cffe4983146f475d4d5359e76dba539d3a4f7cf2c", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestxpglitch\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7085dc04c5924fe7cd2452c71e50704e3feae05181dc88b4f6a9325086470f9c", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestxpglitch\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c9e98f9c7c0f5efc5ca22e14ee75374bd85dcbf006ff95465b0f3335a248ee", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestxpglitch\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "762b065b957ca572608fd8538fa02730420b9178da96b731a2c59f4ca5609aa3", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestxpglitch\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7853249d15f29818032ae822a90aec129763c1b8cc2f0318db56a43df656e11", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestxpglitch\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "378968d5e980f1215718417098f55b1ef9d67f37880c9b75cac5012fe4315f0b", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestxpglitch\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdb0f9d15f1d361196733e160515d2ddc0f87906882973bbd1ebf8e0d560d880", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestxpglitch\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a19dc394d84bf27bd18b20ec0e92fc94f89091a3d9894c1f1961f4e6a71850c4", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodes2019free\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e13725a79e6f3344330d741632df60957e5b7a6c94aabce461a3c3e65d7b647", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodes2019free\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d53cea25a474f22763f1fd0efcd2836547136512393215f3136ad9e6b5e205d0", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodes2019free\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e5e11effb4115e2af51ad084c88e1e18f5011335d91d3d39e0fb8722b847c24", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodes2019free\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f7c7e93a82e9f745122e6998eedb0faf7d18639aa02eea846cb732203c0472d", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodes2019free\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2495e21dc22e54731d231c57a23c3cb6aa7a53c48e0f0983f5c2497b9ff90743", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwikicodes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02edae8d5f852fbad0e3e6444ccee46a7252e98fe4fc7f32ab8b9b499e5c86ff", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwikicodes\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7720f405b676565b9dfc9a2529cb6c77824ef819ae4d9872524a25ca2a4d8200", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwikicodes\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d01f2388043576b76819d37d0c6e3409d7778be876a16ffd3ba411ffcaa5609", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwikicodes\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d97078f101b70fa7c618685264820b834b5254fb12a8505b25095e3fe231486", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwikicodes\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "660f495ba72c3dd291a91f7a50c611118bea9ccde5549bc3735f42abe8a3b6f4", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwikicodes\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c45588105618d8d96a2d68f746caecd2286abc9e206121cb0a57b8e36148c149", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwikicodes\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94048ffaefa727282a66280be80e41cbc8a12ee7bde736311213a700a7c9f732", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwikicodes\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b13bd8b3040f4f799c17572f2e0f667ec33e8d6df748cc994590e4f4e9c6c8d", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwikicodes\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656c51afd3e9a6fa031cc438234b5a6e365d893689800cdb1084882ce51b316b", + "regex": "(?i)^https?\\:\\/\\/robloxassassincodesforknives2019\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d3fa24412caf7d5de3b33392115a578c0fff72678fb6afa0512b03f8c524f9a", + "regex": "(?i)^https?\\:\\/\\/robloxassassincodesforknives2019\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e77165d33006a5c897ecaced20e178899ebd74cf8c4b406d805a154cf0bcfc71", + "regex": "(?i)^https?\\:\\/\\/robloxassassincodesforknives2019\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c8b61ae4b7a2d2243c908af3bb9807d5db53a0d33cf68363fa18966085e983a", + "regex": "(?i)^https?\\:\\/\\/robloxassassincodesforknives2019\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99e6b2b1c1e7b4b45a350ea0e1f18eda516b6f95416a5a2696569eb9008638fe", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019bloxys\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2cc6a75b700160b87b90532362822aa3deeba1df433efa91afed66b3f48f1b", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019bloxys\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ed9363c1f26e117cb47d528a984b9f5a7c9c69261b6cc3981b322ac1d8707d4", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019bloxys\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "381bca8164896c1a65847210186e50b1c3d9375f2ea30b8fde389d51c5de580f", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019bloxys\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bcb4a37d2669cb554895adabec80873c56dd970715fddf82e397ba3b9eea0e3", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019bloxys\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "276844c54594e6b8c4926d0e01f3f75fcb8b861e8ddc0fdb73a8691f7808acfa", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019bloxys\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c6dec2fe04cae955470ce02a197662a1517a060af92acd61b58f25af5079fba", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019bloxys\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abaf6c02b694fbcb494a03efee137c0175834cd31b5c9817fa14287d8bb776ad", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3176bab4cf8b16d99671bbc755d0dc1e1468e133acbe7dc589d49c6022d4d1e1", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50152e30449d46d7f05487a3d0e9d9a30bf8ae10934b9780035fae0b7815bb2f", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3ab8dacb15325f93fa4e3f14bcce1c522d789e6220eb558527edf8654b24e58", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e91176467e83f8f9336a5a11d6260ef0d919f96b6c1f7933866374c87e7440f8", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81ad8583ed6c9c7fb3421ef61b839fff42647d5cc88246af3e331bed19ecef39", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8ef0ec55b5fc0acef2445daa211fb84670ac10f88593e0b8cf6fca3a568f9ca", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e18ad9416819f6007e0e72d66741350f781c3d02f922f06816b95f7d37178109", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1eaab5dcaa781487f3c820af5fac53d48a0536af8689ba5b2493ed70f1ec4dd", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13efd620afe1d787e6806597487e25b8ba50d5eceea783f78df8d7aeff17ab35", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcc0b21cf34ca2e1293f62e46500f4c16f16b84de6fce05f501ad5cd3ce68470", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eebb0b0e8e1a3afb9cb8c78a116a3e2ca332beadd30997b099a980fe97acdd7f", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4141b211f48160299ce8c8bb49535014a5e2cafd4ab781084d5e92881203a296", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c39a3cb7e53cf82384fb11d5e35fecf201f900758ef16f9db84c986495bb0aa", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestyt\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31abdf409680508ddef942743e1aa2ef5bc12488b9b2a719c4153b40d1b2ed2e", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3041215bed17daded285068b56eafce4aca14ad6f52ee1972f5ca81b617f435b", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd49a423bc7b926bbd6759ffb4093ca25e12c39b78ca71a364323b75d4dd0431", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4d8c60f9f2620651ecfed28a893ee143fc50e50015bf2222e71eb5f005c3da7", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd65682a143398742fbb8f1791f61bc2495a99baf1926b1cf5f7c99682a1996a", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e62981bd47bcd18005029611182e7490dcb30bee82a2f85fe454037cb2a25c13", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f54dddb942c89636148e9043c4978549223d93499bdcbb9a18ea176f4d7a99af", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb030c0f697473417afb6bf6b6c5f569feedda70253e05d5932e6a33ff7d4e49", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02a4c6bca22641f2aa16fbc7a3597dbad3e75c9e41dc4ef66d730721210d8484", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a1208827a409f0e3fc309d31d3679c428ac3e2bb941fd86d4604bb08a779b81", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7ec2516a4da6c371ceeb24d76a9ed70056d8a85861924638bcec52830afe43", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestarmorlist\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f689fa42f10c98746d02a176551eba703dd9048d2f448208914c38617e175c0", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1c03c72a8256beb19b5e1abd1cecc8288fdb060f2f23d1b7ee2deb922e1ed32", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c78ecf26371d70162f3fce525a503105075232f74fdd7d25102c4a3d9c27b3ac", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5b1dd39b0cb823c1b704cfd4a8223ec8965fc74555472775cd4db57c2276519", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36d7ae8750cc34100f0b8348228dcb8de2614205c4a39e944831e7e8a48a5a17", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "275ad034507a2477d2c52834dbc88a7bf04987b662062615b16e1c3baadcc776", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50be08704e94e74e2254c09781cc5fb2e981383deb84a989864d1d79ce300cae", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a16ba79d5af225c60b1f2bd94790dd6c1ae742d8ae9485caad8b2db274d73a2", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85548e7fd4679fa9c143a096eddb1d98e0b932261c30e64e35d1515e468edbfb", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "304cd142775a1c316c592c9972093e1098cf2ef6998f38fab939c19fc2cf52c2", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6db960abf382f94613b0e5283380a13a95e847c6a046617e8dc35474b76628", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77e3e52fbad85db8fcec3853e4166e706e13ad955aa66850da37e14d0a89775d", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "339cfa28c14b608c54b6e468c5d80877bc8faa62fc3e40dc275f803ac0f8a2fa", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019augustwiki\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32b1c03c12e8457c18a631371c338ffadb5b72a18045cbe793d331804da106bf", + "regex": "(?i)^https?\\:\\/\\/robloxcursedislandscodes2019\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "845f67c820c974e234aa3f7d30928719b361c7e3175dd982b82d08b11b265118", + "regex": "(?i)^https?\\:\\/\\/robloxcursedislandscodes2019\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b03ac7825abdec1bb36eb3e6688877ffc2412cb959b4870ca0657cdfff249b2", + "regex": "(?i)^https?\\:\\/\\/robloxcursedislandscodes2019\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a58b97d04ae4f4ab204a56211424ef5659852dfeeab6b05eb92d47e78fc15795", + "regex": "(?i)^https?\\:\\/\\/robloxcursedislandscodes2019\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11a604234143be60a6cf9c13f60aa5510505b2f8fc5aadb1de7e5d03af9466a2", + "regex": "(?i)^https?\\:\\/\\/robloxcursedislandscodes2019\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbb84630e82ef59403c7d443c71122ac1955149f1e95fb48400d199da21f04f1", + "regex": "(?i)^https?\\:\\/\\/robloxcursedislandscodes2019\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66c99d0d40ff01dbb24409eb3b40f2b73388375364a51e2aae05dcbb5487df0a", + "regex": "(?i)^https?\\:\\/\\/robloxcursedislandscodes2019\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1f00d28472d961d09028406dbb39f33042652148806bdfa5dd444f0321de1bf", + "regex": "(?i)^https?\\:\\/\\/robloxdeathruncodes2019june\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c86b8412145dd5b0d11ef4fdbbc90bdba385c61bb331fb5a061a700874b3a30", + "regex": "(?i)^https?\\:\\/\\/robloxdeathruncodes2019june\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc38f091d9d8259cd6ae562bc9ac9abc894bc54f695cd41268401e1ff06c551f", + "regex": "(?i)^https?\\:\\/\\/robloxdeathruncodes2019june\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94f22efe5845492eb473217607c2d2c80a80678c5cc4a67e51a3fa6d0e5d8bee", + "regex": "(?i)^https?\\:\\/\\/robloxdeathruncodes2019june\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eef639ab104337a65f9600f431b6b9a519e60f9f46dfa431a6728daf3b0bcdc", + "regex": "(?i)^https?\\:\\/\\/robloxdeathruncodes2019june\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d609f093cd747ef8bde617bcecc2ac094655a6ee6928e552105ad49bddb6137", + "regex": "(?i)^https?\\:\\/\\/robloxdeathruncodes2019june\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc8a654dab6ba7add9e4ad945116bbd0c664b5be3c2d3a817f3678ba9b7f2986", + "regex": "(?i)^https?\\:\\/\\/robloxdeathruncodes2019june\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b69c0ed8a31a5ad868cb237c9e83ddac92d1338fe36bde12c541bc3b5c9e863", + "regex": "(?i)^https?\\:\\/\\/robloxdeathruncodes2019june\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3157def8df2dbbb0ece377164e385594c511781761241a042a8c2444d96f1bdd", + "regex": "(?i)^https?\\:\\/\\/robloxbabysimulatorcodeswiki2019\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f040c9f1c8833aba3308817b5a0e80281f1947e6019ab2417d2e41ad439c921", + "regex": "(?i)^https?\\:\\/\\/robloxbabysimulatorcodeswiki2019\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93b8da13dfc9a3bfb427ac2e19ffe0f84afcb95d20465a3043d03299cdaf9d1e", + "regex": "(?i)^https?\\:\\/\\/robloxbabysimulatorcodeswiki2019\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "305c64141267e0a4bcf87daad1c68c93eb98461b6486befe25933176e46a44dc", + "regex": "(?i)^https?\\:\\/\\/robloxbabysimulatorcodeswiki2019\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1f1a6691ef5f5dc04d65feb8998f2d46a6e472bc7c7fc35dbf03449043a157f", + "regex": "(?i)^https?\\:\\/\\/robloxbabysimulatorcodeswiki2019\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26c0c304d191f102bb752104df8a4843a82b3182f406a3612d870038f249886d", + "regex": "(?i)^https?\\:\\/\\/robloxbabysimulatorcodeswiki2019\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cefcb71931a391961002f4cc22ad0ea7318ba814a10de6ac63edd9df3542212f", + "regex": "(?i)^https?\\:\\/\\/robloxbabysimulatorcodeswiki2019\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38149209b052b0f45c9a6c8cf378eab8348397aef45e166c607b1ceed3f0ea79", + "regex": "(?i)^https?\\:\\/\\/robloxbabysimulatorcodeswiki2019\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "280d966339decff6c04c0ef0f8927dfa08568ab584d1a1c109db1f18ed098455", + "regex": "(?i)^https?\\:\\/\\/robloxbabysimulatorcodeswiki2019\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36a6e9c5000034313109ca800957fc58bd6678feeb7ee4fccb220ee5987755bf", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwarrior\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15029a6e3cade05a94fffd39863b2887e66dba25b32e410b696764a4740e3fb3", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwarrior\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fa99be443b625c9bfae419a7d6135488d9f39dc06ed06d87e3675a9d036ef11", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwarrior\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57796c51800a07526c36ba8d1a14ef99f8f900f7cbad37672b7b1c00ad0481a8", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwarrior\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7988233244556809d2b56dcc6cf0f9991526e67bffc66100667b99bac2852acb", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwarrior\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "501a81ed083984cdbb9ad04ec27d123d8be3db7ed5dc89c94cb21a445428a68e", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwarrior\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3373f73d0b96420b972aa1f47724bb75464a3e75afe16db70d01ac750de18da", + "regex": "(?i)^https?\\:\\/\\/freeshirtroblox2021\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5dfd2618dc4685e22fddf52abe9db5d2fe74f9b5168a581d7eeb674075b0642", + "regex": "(?i)^https?\\:\\/\\/freeshirtroblox2021\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cddb070da4432f8d795996a56d20a4a8712a40a6e7a8cf23c7bc809b8423534d", + "regex": "(?i)^https?\\:\\/\\/freeshirtroblox2021\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e87997270699ea6720b9767d8207578c256090d2a86232158965237cf5fbde46", + "regex": "(?i)^https?\\:\\/\\/freeshirtroblox2021\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f2c70ac732e02a488b61272496285fab5cd8f93e5b3682e1ac2f8c352e2c826", + "regex": "(?i)^https?\\:\\/\\/freeshirtroblox2021\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5123daf6e99896d1a08c39e6ec52858fc4d574489946adf82839debc9a5761f2", + "regex": "(?i)^https?\\:\\/\\/robloxenginehack\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdec9112380462a3c4a253324b6b418e617cee5d63c89cfefe26263efe8cd779", + "regex": "(?i)^https?\\:\\/\\/robloxenginehack\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "140ef38816e9e282e91bf7d78a5d7ed817dce320af0937a8017d8705e8e9297d", + "regex": "(?i)^https?\\:\\/\\/robloxenginehack\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "136cd5937ec251e4c19fa504655bebfda7d0d9e317a5cd7fdeb4b8fb33e8df4f", + "regex": "(?i)^https?\\:\\/\\/robloxenginehack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8013ecbace1036fbd2942ab2ab90e2393505b6765a825c341e49f9b3519d7e8a", + "regex": "(?i)^https?\\:\\/\\/robloxenginehack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc4a979dacd8b91a9ef69e6b46f996be09a5c7ee968635e60d6fc42631e2a600", + "regex": "(?i)^https?\\:\\/\\/robloxenginehack\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f456c68c71abab6157fac09d91293f0f30b2ea6f4799b3a00285b65b4272b561", + "regex": "(?i)^https?\\:\\/\\/robloxenginehack\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a923f70ceaafa6159642795b270c7d6f001809649d863393f6ad361079696630", + "regex": "(?i)^https?\\:\\/\\/robloxenginehack\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "742b5e39fadfd11059fe9c126ebb2f3a54fa5bdea893ca3426e1b5feae370b03", + "regex": "(?i)^https?\\:\\/\\/robloxenginehack\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bff5b70908a1a8225dd3a0b273da730c4e7508e72e17099217a4577850386254", + "regex": "(?i)^https?\\:\\/\\/robloxdinosaurzoocode\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80563db8f15f5bae285d53765794b438570b1741eb379f331e7b680e0492964a", + "regex": "(?i)^https?\\:\\/\\/robloxdinosaurzoocode\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc876dc91cf44e1e3d00848b704d641ea0aa45e6d8ccaf5b23838df98e0b9ddc", + "regex": "(?i)^https?\\:\\/\\/robloxdinosaurzoocode\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cb4b8f954fdf787853f428e6e4ec76fb8e4a131c00c3839b54ebe8870c37361", + "regex": "(?i)^https?\\:\\/\\/robloxdinosaurzoocode\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4bbe9f251ecb5b0a7d4526e1cd2fee2cc2ad1a0dd5bfde338e77c6fb65ef07c", + "regex": "(?i)^https?\\:\\/\\/robloxdinosaurzoocode\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02fbd87d15ce301a5b666c9ef87757b1df11acf8814e106c931a4b52f53ff82a", + "regex": "(?i)^https?\\:\\/\\/robloxdinosaurzoocode\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b78abdc17bcf41a4fa278150d8772e665450b9eafbe33959a4427d857a0372e", + "regex": "(?i)^https?\\:\\/\\/robloxdinosaurzoocode\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c278c74371339efd5ace6e617a2adc656518042160d450164d03ae9c4df2825", + "regex": "(?i)^https?\\:\\/\\/robloxdinosaurzoocode\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e935839b7410d162e9b4a6232eb9d02689371346fa43a4da1b963fbe434b5dbe", + "regex": "(?i)^https?\\:\\/\\/robloxdinosaurzoocode\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab7d08b104391e7629f32d34f147f0e05c0142c74dc7cfff687391f60eeb403e", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f69f98b0f69d6ca9c4042e0cfc595005c1fb6ad7524d0ae5848786da23204377", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab76469710ce23ecd25f73d77d202da17106cfedaa6e3ab825befccfbbcdbec5", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32319352a822871d31be33519abb35dd4378422ee62e2afc4f4b900cff2f115c", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c859b8d6525822088b90b1612425fa631ab71c8ad25763da2eb5c8655083dbf", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c927d9ad7b22f137dae3efd7b9a837655fdae6d34b855b16feab7ea8768e17c8", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa41ded9c46ea1bb3b8640639a31b38f3977bda61794099a8387b72264b8d8c7", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fd4fe7deff8d0787472df7eb82fc6387ba97943f6b2eb1c21ef438b64ade45c", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f80e3c7fe0346abe9f5884b7e7f13c2088a84d3363e9c39ae02e0b4b8e92511", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f39ee56a5e5bf7379803e267b4a5c7595899b76427e494890143c8e13437e19", + "regex": "(?i)^https?\\:\\/\\/robloxtoycardsfree\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2ec63949973c743b81c3d24711ccec0101583363a544a31375bfa1ab810f4f6", + "regex": "(?i)^https?\\:\\/\\/jogoondevceumcientistaroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb56dcb0a65dafcdacf5abab1256189e9b119d0e4003f53a1d38211d6edfaf60", + "regex": "(?i)^https?\\:\\/\\/jogoondevceumcientistaroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af2f6f779f710cac97631e44a8284bd8a78d8729372efb38d2aac75226677094", + "regex": "(?i)^https?\\:\\/\\/jogoondevceumcientistaroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67fb8b43613e69fe200afe6b7af587de04b4d2e1506713537333694394f9e5e1", + "regex": "(?i)^https?\\:\\/\\/jogoondevceumcientistaroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1726456a1f5ed5001b5652196b79cc2948168ac1cad810714417e8a049576f1d", + "regex": "(?i)^https?\\:\\/\\/jogoondevceumcientistaroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4217637072ac581a303fc83b60c53a3ec60f22c959f86641745f233846c78ae9", + "regex": "(?i)^https?\\:\\/\\/jogoondevceumcientistaroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e35e4eda850f3db7a86982cb77acab79eee195581896cfc4f5d56358c6e6a75", + "regex": "(?i)^https?\\:\\/\\/jogoondevceumcientistaroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa094ee5cd7c1133b8a9390b26e0b39ee5843a8dd0b9592764fd69d3215574f6", + "regex": "(?i)^https?\\:\\/\\/jogoondevceumcientistaroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3a16beee86da8f695b9aaffa67ee0d57cde1d383908d6494a34c2f6d5b3f80b", + "regex": "(?i)^https?\\:\\/\\/jogoondevceumcientistaroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8d0c8339c343eee3268fbda739f05b29659e647dc4022fdf6dc19d77b73aa79", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpelaprimeiravezparteumme\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14d8b7b20c18bffa963f9d6b241ed7d037afdcb7b4013143a312119c1e93bbbe", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpelaprimeiravezparteumme\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d37f53fd61418bdfde94885be8aac107180c53827bb0bbf4384e21e5151829e", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpelaprimeiravezparteumme\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "825b14c0c5665a3cbe1918cd8c361db807681aa5ee9423afbde2f6a675501d0b", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpelaprimeiravezparteumme\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65f641c629c5b7404b34f6a166b984a58392e3731004bc17800908c25ad199b9", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpelaprimeiravezparteumme\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20bb4b0076cd37b06d18be1ea9ce5ec4c89070e20833cf93e8fd458d0df013ea", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpelaprimeiravezparteumme\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc41580ca950519adecf038d61ace75c7a29408f9699f43e5ee37bfc965e9f48", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpelaprimeiravezparteumme\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "049c88cb6d1c613ef9f6b21ccb192da34f4e58947d38978993cc8bf0ce58b6fc", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpelaprimeiravezparteumme\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e64fe426128b70f6f86e9cd9ebaff34930976afeb7e482ee2a867d974bab41b7", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpelaprimeiravezparteumme\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e628c830bd048ea04cd313283db9a3334c9809b852d23a7ead4c8d4c9625a6d2", + "regex": "(?i)^https?\\:\\/\\/codethenorthpoleroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f2e01896a98bdf2680753eaeb0054012057a27b2756d155973950273d702dc5", + "regex": "(?i)^https?\\:\\/\\/codethenorthpoleroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ff5dea3dabce5bb3429e634382bed83cfaaa1afa858ec305191cede1a5e5cdf", + "regex": "(?i)^https?\\:\\/\\/codethenorthpoleroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da169d703c58fe89c72de54cb7f2547f539d5bc98af02c36e28ea1376b0b0305", + "regex": "(?i)^https?\\:\\/\\/codethenorthpoleroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c16f8d8ee9b7058caec7dc890b682581d4f5b1ce20aaa6ba71598a906743db21", + "regex": "(?i)^https?\\:\\/\\/codethenorthpoleroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e19f51b7c03720b784d7147a1aaba57d3cf6e31a82941fe45c22bc6a423ebc5", + "regex": "(?i)^https?\\:\\/\\/codethenorthpoleroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b77ad41c5e1d633bf2dc7751676c96aa0b4c3be87b0f7e2ef2189bb3b528658d", + "regex": "(?i)^https?\\:\\/\\/codethenorthpoleroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fd529c50394330d592bf528fcb27cc573b287acba37683cb04b362484b48e16", + "regex": "(?i)^https?\\:\\/\\/codethenorthpoleroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3dc8f5cc32671f49f56455a194058664b7f9515fc59daa68e6a165467f80bc4b", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd4d3d4932fcd06df48220f0a41b307f4185ecc9798efd76b02f28ff21aecf52", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c88cda19b86e73eef896bb35d840634276ef93e09efdc31628a757c94839b73f", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7967930524b1103c6431896c5d3a318a382b969cc1e002ac1b1f00758e1f5f45", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5898b363f8ee004fff161f733f653f3e4d46a695cef572d3f07fb01b584d8be9", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "134458b9420bbfa41066325bb7d9c056c520ac9137d2e1037357ecbdc1701b72", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1bbb8ba7035e654be2f740e770557af23954e5f47b5318496b7814112a694b3", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0ce020c51ef91d7e020d9278fad74f46c704748ac4d23c15fd540fc545edaa", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76454c51639189d0e08d0d838d96f2a62b5e6d2433193c36461f55a0b1b42307", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5997f879554cff2d217cebc88c34777263e66e41b2a7dc21afecb9a140b90408", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ea5fcb226233e04d679b33c78af125c0c7d0275edd47e536b6cfe4d61cfd984", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fb2ad9e8442a72f595d1f0c563631eb7811073a02dc0f20b820b8b492171098", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdesrobuxgratuitroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f675f41bfa0703670ef9200175fb26621e476c46e36e834930f4221381867af6", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f5f07f17bb096b240ebb5f5a8de53db2a90343342a5d67bc7df5ffd827dfff7", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b274615272550003f1282a24b7fe6f571a56f01b2a390cbd39e2044ec237ce2f", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff80d09eaa159fc18271bc6de243a10ca05c93bf47a6376d34b742e966beb9d3", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ff752aaa2972cf7e82303e72738852f7d6b4b414dfe7e48804868259d36e228", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7973894e0753211f0db88a980ad95d8141522497154a0ec4512b7d11c8c97b1", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88483eb762e4c1ede761d6e41732f41884206f21e3e201f4c6c4a983cefbea6e", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "962be4ae357b484dda6a99b312d7d688e8f416c7aa5789f18bdbb10768c88d0d", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5bea69ca4b8e8adcc3fae3826756249273f66238f38202059b02372ca76a7bc", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a9d01629e84719a92f8111877a19f988dd85af8621fd4279a3b8823a074c8f5", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxgrtisgratuito\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4f8827218ee708a65e4c052fbdfe6de93c9dc521b0a7ff57e11dd57fffe5ee2", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxgrtisgratuito\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da1d1375a37f849fe37fefaa911a67a35f55250b5438a7950f59e00c8d3baaf", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxgrtisgratuito\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79431ebc758a7909a1508dc4567f1d353890d772d0bffcd07e0d1a1c7f755e68", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxgrtisgratuito\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "005d7bd1c9d40030a15cacf3edc455e348348b5e3f889015004298a73b024b71", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxgrtisgratuito\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8d16a73c893c41582b9d6a9f810ab616b6e6806af16d762cb0a9b5b06cb1c5e", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxgrtisgratuito\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "867eaa179468a172b07886a8dc2bf3f62a95e7d5dac0c04ef0f5dc5791a8c4fd", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxgrtisgratuito\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d0729cab443a030bd8594400a879429e19712868d8efafb0c9fca49f4f6e086", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxgrtisgratuito\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ac5faddb80cd341abdd49797bf1b200b48137f4d6acb9cd4d74699f572d1f6c", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab6af07e48a040eb2ef0f068b4c80f8247e6116a0a6cc02af71eafbe12e9464a", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "847772ebe1e54b1e8bd40c13f57a6ef13a814db0a6a47ebdab0cb3f14847b193", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f044307ad47859fefbf36085d7e3174e634870a28f4a512e8cf201175c9a67f", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d1b2c905d6b4ae5a4a71e464a10c13e3dfce37fa5d443f1bbdff71bfc4bbb77", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "670d6f60109391c746c4c5b226077e2210c81dde546525f4c077676e9c6e63f5", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae99233a384614060d851d1f4d8af6e1b4f5f17e7a74465d7586a6b2b1dcf74e", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "425c1491e0cbe5e59dd223ed8073f91900e32ec180c3d51b5c5b046a1cabfb67", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9fe8f0f84cddfffce0b9f5bc868af71dc9607bc5e168b71aa3acc00ae2433c8", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1a60ac8aad9446a55037cd47af32c4de2acd5c0be966620531817446da6a202", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5128229a1d05ab30ae17c7a1edfb8785187edc320ef99d7547bc410939bd041", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bf8d3d149c670d566c46c713c198241d186d859c38ed373f63738fb0a0b8606", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f35024f309fa6ae5511442a6aa47ba958971e47e3dafff22a6e6009509c5299", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c9c4fb43419eebe6130b4c3e8e381f34fc128641ccf36e8a30ba8b8bc748339", + "regex": "(?i)^https?\\:\\/\\/clownrobloxdecalid\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f954fc07af61944c4da5605eae4a2e06892936ee16f3207570e5afe5efa2e888", + "regex": "(?i)^https?\\:\\/\\/jogosdesuperherisnoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d285ccdea7997fd280d5587119b2ebb4c7682e71f5cbaf826c985e2fded051", + "regex": "(?i)^https?\\:\\/\\/jogosdesuperherisnoroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d4adce8f88e42839849afeb35c4a9bc39b6e03fb1c384f15e2d5e67af1ff3a", + "regex": "(?i)^https?\\:\\/\\/jogosdesuperherisnoroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3aaf17a54cdd3e92900c4302fe5774f0aa77586ae646b2022cfdcc734f163a6f", + "regex": "(?i)^https?\\:\\/\\/jogosdesuperherisnoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8c3d4fc0ac4a4b129639f5f469562017b532e3f5cda7d84e517655b9729c326", + "regex": "(?i)^https?\\:\\/\\/jogosdesuperherisnoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4aad6fbdd815d39c93c10633eb83afde889922276a0552aa40a3dd6f2fa1be2", + "regex": "(?i)^https?\\:\\/\\/jogosdesuperherisnoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "442f873773af047288c7e6d3665acc984d716e5a76480ef7df2b451ce982e83f", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b16fc799a5061fb2e4f18912c360e6d403136d5a48839bf6919bdc61bf802a70", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5ef55e4160bc324f0ccf9ec1f1ae217980dff1adf7135ce2fe9da14e504f734", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6538c44878aa7ed5936bfdcef0731b86c4897a286583ed3e5e6aa08dff90cab7", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "161dc0998193fae175ebe8bfebb6f1c5315b9f50cb7be245cd8ef5c826488200", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c13d40c7d821f086440cfb6ff31115d704aaa0884e1a8c1b157f04356299037", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b37c39da58d2833daed0cc45d30edcfd2b13d9ea3ed8aaedb1a22449d113f4de", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00ae8773bcd06beb7ce47578ca5e4209dd09458ff9661770e404b4fc38eea4c6", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "877f0a0679148afad31c18048838139d97e9adbaf194f5e80e3e164696deb416", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9190647be33a778fc2c8b6fe4230d8440b220fd227b8621b69e4d4e45fe16c6f", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8c39f8635610e9aac7fc1feee95260fcacc44e568762c149ba92cf4aafa80da", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7301dc4d0b0d2e57e9140fdb8259079c113833e5c07fbd8d35ef502f6f575176", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42096cdf618e56d1ed0dab5da202224d4f3b6416ad9e22ab76648b903ccfa84d", + "regex": "(?i)^https?\\:\\/\\/codedevillesuperheroroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41dd6f8d9cae4b6796055e10c4d43388e0644b3c37fa2bbb233dae90cc4e4160", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7e24df9972742626cc43f20bb90a896f4672070922e67de3b507c5e00a00f5e", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48057c8e0264ea9362558d80d134c7bc60f9b706fb67495a1ad7c76d9173db7d", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e284bceb643b80ea17e12b512ad22348fe1fed78095bc688cfe089547d1b6df", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f633bb5c02b6c9b06fd1f788780b27c9192a04dce59e865009af05505083e955", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b32c403dd54a462accd8aa59f21615332e52c65481c04d1baf0ed80eb52fe4b1", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a85180c236e474294d6e1b978b40164f9de6646ee43a925deea304a1dcea431", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d716ceac2bf7d430c628a0cdd151c157298d89145f9283975da6bd58ef7f2d15", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f80ebcb6add37101a77d7ec737ccc195da4ec9c049d918de3cde02f7165f85ee", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e59b18d3e5a471ba3b294c18e2d6c919228e27bea906b8dc69e220e4737f770", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodemhdpuissance\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c78bbe507db9cacbc7561d7aa57dca747dd1c0ad26c20f01a6f65e8322135654", + "regex": "(?i)^https?\\:\\/\\/whataresomedecalidnumbersforroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0027f799277ffb0210c73de8dafe7987dfbddfe0a0b2bc858dbbda1f6439b473", + "regex": "(?i)^https?\\:\\/\\/whataresomedecalidnumbersforroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f769254426ed7794cbc8e44ee2a9133a1c56529aa7a1d48c555f077aadfa033", + "regex": "(?i)^https?\\:\\/\\/whataresomedecalidnumbersforroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06841ee27a42bf99e357d0582ea8065097b5e66b0d1d6a104304bbde7ebd09d1", + "regex": "(?i)^https?\\:\\/\\/whataresomedecalidnumbersforroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4def98c66ba28a83e6e8ea47fef77f2c8149b092a99b868d9a3c2af5ee6bbdbe", + "regex": "(?i)^https?\\:\\/\\/whataresomedecalidnumbersforroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d89d6c67663f4b1de7d73aee4a2efaefda87ae41c4de08c37ea4d985ead77bbb", + "regex": "(?i)^https?\\:\\/\\/whataresomedecalidnumbersforroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013c34d4a5f4dec7b1cba709b64a65b483565b2ac10e7dabb3cfc4db1a72f8f1", + "regex": "(?i)^https?\\:\\/\\/whataresomedecalidnumbersforroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8c19fa579c7a2c06d5b40d6ba4c7a55576fc0917a0a961c9ab52d4ba4ec5dd0", + "regex": "(?i)^https?\\:\\/\\/howtohackintorobloxtogetrobux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "237d2b8de6463e4709ceb520323f5e24db016f524464970e88b0002acbf84d81", + "regex": "(?i)^https?\\:\\/\\/howtohackintorobloxtogetrobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1679a5b8f1706eb44fe81f88f139afc1539df8ab6cb0672a55c2f1cda4fc879", + "regex": "(?i)^https?\\:\\/\\/howtohackintorobloxtogetrobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d10aada4732475b71358dc11a4c94c1b5578c32310d598e1709b53e08daa4ab3", + "regex": "(?i)^https?\\:\\/\\/howtohackintorobloxtogetrobux\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbe8f6175c264d46c685bd08505e557dbe08a9d3554bfaac6f9c37d2241d36b", + "regex": "(?i)^https?\\:\\/\\/howtohackintorobloxtogetrobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66529588a96618d841ac616f7272c5f8121cf19f6119fa5a24ed9e38aedf91f6", + "regex": "(?i)^https?\\:\\/\\/howtohackintorobloxtogetrobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af9955895001ac1c50eea89ee63d465872ed6907f565ed94f4e45e4146a79919", + "regex": "(?i)^https?\\:\\/\\/howtohackintorobloxtogetrobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e95d6f748dc5ab0200da10aa212b9cb4da8d32bf3f3169627b330a434d6e34f", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4c7e08aafee03ca3cd9bbcee36feec9fed7267a6150a6e101c300300608face", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26ca98a3219226d2b3866378b12be0889627a779186b43e51a60c02bbac63021", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d08517f5a299323fb0e6515e7fec8416d1ca42db0ed0ec93265680672aff1280", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4451a0687f7e4f660f91c214299215322d3c3f5cf3b565802ade5893f475cd6", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca6e5238c5f7605f157fd741852ab59ea21edd0ad8e4ff6d12f9a2f43369e1cc", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b7a00a0ee5e020d681e4dd12e3c67d6529478d5eb162625cf4b2b68e041d8d4", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bbd9424639ad49b1fdbd4786f847310877c1b17a75e77f4c17105dbde8b076e", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ed945de902f9d3517bcad7329bd3b42af7486281b333879e95c4eae9014dfc6", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea15261eeadf89698b6fd9ef137656ab5ea454138e2b65b4a39ffabde84c6ab9", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08b7227e2a600449f1198b502f62351249f9ec69738a5d3d8181fff3ab72d362", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f76cea338604f753e9f6a363ea4d1301368a57d0cbc8e17f88bc3e5796607d9", + "regex": "(?i)^https?\\:\\/\\/jogosdenarutoquedapramudarseupersonag\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ecf98df67edde2410c9f397add46fac7d15a0e250bc1296b2fa5a3b19120f56", + "regex": "." + }, + { + "hash": "64a0b132c29478f3b354054edeecbcc656330f42723779b078accce5d97422e3", + "regex": "." + }, + { + "hash": "c8bb6d3fb744b64a9aae61f5f6e50e0f17e764d147c63961d44560177f855eb6", + "regex": "." + }, + { + "hash": "3c0979b175fda522d34b2b06188329736d921b751977db3b1775a83a632142df", + "regex": "." + }, + { + "hash": "2eb5dfcbe93eaf91670c3f8a5773c3454e24bae53d446f20fa603510b018fa9c", + "regex": "." + }, + { + "hash": "bdbe4eeb07501835172937d3023d7ed5938c7d4535693c476701f8b969217122", + "regex": "." + }, + { + "hash": "bd1941633a983d7ab9881554334433f837a7c359b8a1ff01217383145a3a8c3e", + "regex": "." + }, + { + "hash": "8105491ea707df7a46d26fae8d2c022e231ba743eefa3bba0b849428bcf66433", + "regex": "." + }, + { + "hash": "e65f464e2069ab35cf6a917a53d3a0fe2448410a2308e4b225e6117423bc8cd4", + "regex": "." + }, + { + "hash": "49bac0d7a982f0139d14067f24db886d16008c061fd4f8991a39924e92948350", + "regex": "." + }, + { + "hash": "6dd284ec2ddb9a2a38ca1b63c2e4258a94a71bad487f138b397f23e5de1248ef", + "regex": "(?i)^https?\\:\\/\\/howtomakeadecalneononroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "accb07c44f27e7ecc90aeabf6e6560824db655083c5ee3091a1abce65190bd82", + "regex": "(?i)^https?\\:\\/\\/howtomakeadecalneononroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3862c900c073846483aca9c7829ecdcc47d0e914f549be2548ed43d7d16c2419", + "regex": "(?i)^https?\\:\\/\\/howtomakeadecalneononroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19d9939c7d5b53511358f8ae262a21eba8940a30fd1e098772472dc81e5ea17f", + "regex": "(?i)^https?\\:\\/\\/howtomakeadecalneononroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82869896ef7c484b706d3a56d26df04115392da6315adfa17974eb7b17076706", + "regex": "(?i)^https?\\:\\/\\/howtomakeadecalneononroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29fa25728e1e3574c7bd7e56ee4ed15e3fbb22fa64c0aa7ae17940f91613f95e", + "regex": "(?i)^https?\\:\\/\\/howtomakeadecalneononroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581c66a52dc1f506f865bdfba53d26b78affbbb496c127814c28a486367cbd01", + "regex": "(?i)^https?\\:\\/\\/howtomakeadecalneononroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "077c754911485f7464dd7612c8e46df106455e39058878f4dfd82b2990563aea", + "regex": "(?i)^https?\\:\\/\\/howtomakeadecalneononroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "453723bfa1876155fed5b6a07eb536d2222dfb7126f003356073942338cf4ee1", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc214332e0bd8161be257b35eb9a6478a94f4176031020eaca0fe11b62806e28", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bb9be79bdaafdde7e99c26802e9f825f79d9cc0cfe7704773700487ceda7256", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e9564aaa6fe44ab8c4721c23c4cb2925fdc9c257cbd66b7ef07d6b0f2ecc529", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6e3dd89ebe069963b394b6fae8d9118cd5a80d0afe88001afe168948e3b080d", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e89927634b9e1dbbd3dfebaf298e1c22f1139d60919e172b6b66c6b6b02401b0", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b82da7141239c7895f3b31dc5e8a8301117d52f44d64c2ae7969adbaa380792", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01d55a90b2dfb4e29db8f612a8ab38d10401cfb938320fbeeb1d5fc2b1d51c7c", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ca73f5ac6cc69bacbaf1136cf8b8018e64d0402dced365cd01c76350df94488", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49693fb86efb267f96e010fdaec268d9137eeca06f4de24042bb6548c5593c64", + "regex": "(?i)^https?\\:\\/\\/xboxonerobloxhacks\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e41c633aae8aff2eee3f8f7e8cbe115a4000247406ecf01dc756a39aad6ae06", + "regex": "(?i)^https?\\:\\/\\/comocolocarojogokenoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b84dceb32c6b360f37beccb5685356c5434dd33a60481d9f5ecefca00585358f", + "regex": "(?i)^https?\\:\\/\\/comocolocarojogokenoroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bb01f69604ca82cd062fde8a4b13cee402f01d32171e24404c56c407ec82848", + "regex": "(?i)^https?\\:\\/\\/comocolocarojogokenoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9806049b6b2aea7228a3a0eedfd904f94e62c5bec054d0e68e6c1e8970dcfdcb", + "regex": "(?i)^https?\\:\\/\\/comocolocarojogokenoroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cbd5a8ab3c544fd2ce3c8e1397d76ff6ca0c3395e7f3d16b61b647a7fd715c3", + "regex": "(?i)^https?\\:\\/\\/comocolocarojogokenoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9ccc77ff4753e426c5a730d00484adc118143160acc55041e61f872d063d8ec", + "regex": "(?i)^https?\\:\\/\\/comocolocarojogokenoroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f4391eee019d5095d50de419ad64aded1eca9de6ad24ad429afc324171ac38a", + "regex": "(?i)^https?\\:\\/\\/comocolocarojogokenoroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0733dbc987dbbaf5d0a453f04404db037876db727f2e048471c36df0de7c10", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0078ed6609a73c02e8ebfbbf9eed2539a10cc9bfea6e7389c9158b182754008", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9352bee1202f51ce5ed83b6076c6d218fbc0515a4ae119c1f29e0b53ef6a4081", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30a2ba041c23963a7cbf9a50ca8048014f9deeb620ef9782d046f3d561935b0e", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c564f27699ff1d895ce534833b3dbd39bc8a5e3258f304ef0d2406bea9e77bb", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "944c77aae7008a3330134ed2aed533f30806d7d7d21a22ffdfc4d43b0e713adc", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "845f9757d396b2e881ce413e2376be51e990e7f67ce1566aa9b66bbe269d66e4", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b776fb0f8bc827df420345c48439abcaaac7169861128bdf1700652688e26a", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2117d83e7fa6ae8187948d17869cf2a050f18e27cd923cfb0c58715d762c1701", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e45667e82151b10fef18440106a4260d305752eaa19ebd401bcc81edb153e0", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ff8a34bfca9ceb981d1da64f6b2b9b4e8f0998ed32e53d497f26a347bd9baaa", + "regex": "(?i)^https?\\:\\/\\/robloxhackscriptscopyandpaste\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9bde26580db650f0a50e3d95fa0ab4792eda0160d4dff7a99a1cd9c4bc8652c", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxnapriso\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fcfbf03d51f8bd50a63f282eb446b0d0b5f59726de00820f59c117dadae5cab", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxnapriso\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58e3fab2845560dd4dd4b80474eeff3de1010c4b6ba884b2df579df5c185ae37", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxnapriso\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da6518a7f409b3f575f6cf15a67b43a06657cc9a45184ab51dd33873ca4273bf", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxnapriso\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d17f19cb0a01261dc81929bf87611a33ca6b6047775ad56f8266fcf823b1d69", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxnapriso\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b26e766a60ce671eeb52070018de1abc7ae50ed3c653ac7fbcff169a771ddb", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxnapriso\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e72c552ce1af5dc5d5092149371c349a0bf0c211821a40fe2f4c0b357d2d665", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxnapriso\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f214b486b07a24d4ce467a79fcdb93ce1e912409316c381d589b6bd11d843f0b", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxnapriso\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ee7d20906a8bfb834907cc202fb15544b784f2016bd339cb231931dbce5b744", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ef88b5a0470f09bb67964c269c39536863bddd851146446d96db6e7bdbfd530", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83183d0bbd6ae5c0abff2f036e0a7baedd458906df18519fc81d97c1275cd2e9", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9152fe955e62011ed0a2e31ed45210a35ce01d127b8b1047e4fbaa35073781d", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c671020d20e3536e773bbfa12b059780ef2d9674a589c261c548998201c0f63", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebdc217bd4af916f5aa75f61a9b81d960a2c68417f346a2f5a6cc79415d54fc7", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "517da534fbd365f4d45196e8894b9a42ce8a112022989dc1b056f220f1b7d15b", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4707857fc891f96e4c63e0742b02c76d4a48d832f375df3be2e4ecf21f63469e", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc041325ff90f57a66f70806ef6aff1db92edbcd19bdd0a7a044cc9a10c5f2e7", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c1ba362057fef5dd6a4d961e2397669b53eb3443504cbcd466e2cf1a416845", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5052225558e8f687e94dc5efc0a803d0a42aa4654ed1303e6e537147e0c95d69", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0033d2a4116b692f67f71516018e83facc8318667c6f6c4cad4b60a7d0ff3f5", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a008104846affa6f4389d2f6626592b078fe94d32e728e8b49d5496106607339", + "regex": "(?i)^https?\\:\\/\\/comocomprarjogosrobloxsemcartodecredi\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f158dd9929b9a07512aa2405195111dd795674584779e5e7e27760e1152c2c81", + "regex": "(?i)^https?\\:\\/\\/generatorhackrobloxonlinepc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6775ffc98aedb29d0f7d47bd1b2aecc95909840edb1f90c2ece8e51aafd6d09d", + "regex": "(?i)^https?\\:\\/\\/generatorhackrobloxonlinepc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d75ac5350e1ee955edcc457311a0016755a798df0dc2c967388053068bb9009", + "regex": "(?i)^https?\\:\\/\\/generatorhackrobloxonlinepc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bfe59e0d94beab00018495b9ad833f00ab1692a2aac3eb72aef94dfc96b5c14", + "regex": "(?i)^https?\\:\\/\\/generatorhackrobloxonlinepc\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce60d93885c4c714cb5d96feba03073df14981f7237bed251d52a66234a6fe67", + "regex": "(?i)^https?\\:\\/\\/generatorhackrobloxonlinepc\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3e60d3b591c51cf7e0bf742a95b628b5db70b7273786edafe01fd50ff996c28", + "regex": "(?i)^https?\\:\\/\\/generatorhackrobloxonlinepc\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99624d4d2078a9430f86f0e981e6f67f89035b4018cdb7fa7785d2300ea5132a", + "regex": "(?i)^https?\\:\\/\\/generatorhackrobloxonlinepc\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c7ca9ab53eb5ec2f733d2dd8457bb5094ffa67ee79e2134f8e15a81bcddba5", + "regex": "(?i)^https?\\:\\/\\/generatorhackrobloxonlinepc\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7434632013f3e7a3b34f0ace86761fca49781dbb91c75f51a0bc9645e4de60d2", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fb14624cde471dae095386ba18246a67bb070678bff3de0159e57a0e321504d", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02e7dcb1f93251205ea7262efb8273846fdf0cb9907b9b3bac45124c959ecd1d", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b830a9ed535f981e81b53a5ba323df9a1d5faf57b29b5f6dc58c6fd59a9c0d", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30edb08de655f4056d7f4144e50260c891721c1619238cf05aaed1023f54f52c", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5be1ff7411fb1f7361d57c3f52032b7c6b4efdfcbcf161a26323e69d3911510", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84ab548613bb4ec1ab2f0b726a033a3231fb5108acc29e00f2a69a04368b8e14", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a746ff778faf4c6937267ebb00dec42d05fa98cc8809dffca764cb856adc7c31", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab483fe8a9dbcff656c3f36950b3eb51c104ca9016b64f5e1a0137d1e5c0162f", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a8950a2e3d29e5a8f3667af7a51d1490d828d771590e3924f24ffbd119c0d3b", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39b730d1b1990179485bef715f00b0f34a520763057dd841f45efa459f564f2b", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f50eabc04562fb013c758c059be002705ee7e21838baa0036e4ce3a29083aeb", + "regex": "(?i)^https?\\:\\/\\/howdoyouhackandmakeyourselfbiggeronro\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58b0b801b8b75f3ef0b221d44ebae8c7e94e41cc659a83cea30d06cc0d5ee472", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15acbf27e1f5f52e28e9daf9dfdfb3e22a5160d3f4553f000fb5aaca9b659b72", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4edb518e049d573aecffdab3a63c86ddae44853cde6438b1ce811d5933eb7350", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e833ce53aa3fefe2c173b9c9d5b4229335e5fd8b3e6d361218f8280b1d44b7ff", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "083008897ae67c4f60bcc7ff3782fb6dd0e2d91c414ca8c65a5fb083cc39dbcd", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62047fdea5ffcb96352662d24e2fb03d92476744ff2651418f1cbf5ec1781b41", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5907979a3eed5487970dace148296e6f968b7ab8ffde967f419d661855f1400", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4e721a80dc00a896d5798da2336435e53f5988cfb5328827486bb0363177998", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecef07c301bd9656a26eb75b08730ca6ccb4fcd2945e92e61a015410e74034b4", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "968bad134cd0888532f6ecdbc89dd51949c3150baacef4f3ee45082d552f23af", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38563f30450e6ae501e0c5513a2eccf0e55b01c8457e553b5ca7561220f148ef", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1276f9f2b019bc2f001b498da58c25ee91bdc47325d18ec6c763527aeeb69506", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f371688640f87b8f2c050f964c88874139c7dbc542df1c192904e312cc9b00c0", + "regex": "(?i)^https?\\:\\/\\/jogosdeonlineroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c2c93506caa931b21f4a20ba18ac50449460f7765b743ab1bba16d6e06fe514", + "regex": "(?i)^https?\\:\\/\\/whatarecodesformegafunobbyroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfde6c3b301e15c1da1407898eb4f196416a6fc63ad445ec39cf7caa62647ed3", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2018april\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9918a1ef5410e40350c197bf4ff7955b5e6d20d6817ce0d5bfda0a0b734ea5a0", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2018april\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bebb8b84f1cbe46b432fa09c508c8d7f67ddb81ac3394d77d4b0181708085fa", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2018april\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "767cf3885f3a9a75b2e6660ab21b18a8b62d043986f7ce97fd543929b1eb23a3", + "regex": "(?i)^https?\\:\\/\\/robloxaminoenespanol\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9030069364fbabaf8bb54082e0899c20c6bd9480dba59e7e82230651a336c46", + "regex": "(?i)^https?\\:\\/\\/robloxaminoenespanol\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2789eba0a37e54b3f378a512e9ae0b2d9b92c742d591c33169092ae0468e5f9", + "regex": "(?i)^https?\\:\\/\\/robloxaminoenespanol\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef1ba88a63a4c2bff7439180094df278869cc5cbd3ac8ec3c54b6d6c5b12522f", + "regex": "(?i)^https?\\:\\/\\/robloxaminoenespanol\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb290b149a1cf78f4d05e039d4268f8f075a047490f3c25b2428c545b57ac0fc", + "regex": "(?i)^https?\\:\\/\\/robloxaminoenespanol\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e414c2c78ed27d6accd9f1de5b0772aac8e128c8918cd92ca3d43ddcce382ba", + "regex": "(?i)^https?\\:\\/\\/robloxaminoenespanol\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85c359e0c17296a3340291d3802b24e9374979f3afbe4ec1ef40968a642bac69", + "regex": "(?i)^https?\\:\\/\\/btoolsscriptrobloxpastebin\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b21fe1ad079cc3c2a306cf6bd5d4c6d82f85cdce205ed05dd2d4d9c4c064974", + "regex": "(?i)^https?\\:\\/\\/btoolsscriptrobloxpastebin\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccc206ad81272016a56f5122a354b91e0b282172c1f0b7c5d443d6db075b8e0e", + "regex": "(?i)^https?\\:\\/\\/btoolsscriptrobloxpastebin\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "957a5efa7a5d9a1e613f5462a7be7435715930e59e66bb722ce500bcea50c1ca", + "regex": "(?i)^https?\\:\\/\\/btoolsscriptrobloxpastebin\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f7f19706415a81b657565243b85ec2a27c5b695b2cc85eb1a15261d42a79412", + "regex": "(?i)^https?\\:\\/\\/btoolsscriptrobloxpastebin\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3ee25481918670d35e20d20bf78c40b346479b71c401565784d9547f6d4db73", + "regex": "(?i)^https?\\:\\/\\/codesfortreelandsroblox2019\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c623e27d63be545340f513864b4fcf45637ce4787cffda3a8d082a37e9a9ba7a", + "regex": "(?i)^https?\\:\\/\\/codesfortreelandsroblox2019\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c011d61598d89fbb63d9a760f6a01f2df8abba66f51bc42b6a073f1a3cf1821", + "regex": "(?i)^https?\\:\\/\\/codesfortreelandsroblox2019\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65a8bbc5f25c0582ba048e43942cedc984e5c2ac24f32634728ebfd70978ae4c", + "regex": "(?i)^https?\\:\\/\\/codesfortreelandsroblox2019\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fea67d2cfa2653fd45f1cf1baeb291a7501738997dc833d5a8655f1d79894909", + "regex": "(?i)^https?\\:\\/\\/codesfortreelandsroblox2019\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f823008edf8ac1b880422e6805c51f479e3a837509019976eb30283c6fa357a6", + "regex": "(?i)^https?\\:\\/\\/codesfortreelandsroblox2019\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ec521d1fc83d9180776445d4520ee05cc97986502393d1e55f8469c25e33fe", + "regex": "(?i)^https?\\:\\/\\/codesfortreelandsroblox2019\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aa52eb8bb5b8499deeb993c76e62a17cdc53aa5bc79419206b30b339d26ff03", + "regex": "(?i)^https?\\:\\/\\/codesfortreelandsroblox2019\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e00bdedfd47bc944def2931d83cbd6e0cea7cc6d00d4f8a9f97f8166bb03c9f", + "regex": "(?i)^https?\\:\\/\\/codesfortreelandsroblox2019\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a818ad0d78943426f67b8188c8eb38d2dd879ee63416fdd0eae1283902dacc83", + "regex": "(?i)^https?\\:\\/\\/coderobloxspeedchampion\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5c11c1ddbf28af4350cf20571b095cc10e5808d23203e46cea5b11987e81413", + "regex": "(?i)^https?\\:\\/\\/coderobloxspeedchampion\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71c6c6849dd671fc6ff106695fd03f56e0886363e79c4a0fd9d141374365c79a", + "regex": "(?i)^https?\\:\\/\\/coderobloxspeedchampion\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013c76137d68465681acd2c84c92a6c05e8c5fd93cf117f3a937176d01b8992c", + "regex": "(?i)^https?\\:\\/\\/coderobloxspeedchampion\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013d79c1a7ff0f5fe251f8a7f40157161c71ebd43408577b329551fadedab579", + "regex": "(?i)^https?\\:\\/\\/coderobloxspeedchampion\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5a61c0838af2fd564afc12fa7fa3142794f3c5f6494a72d4607cb1f0e5b1cb6", + "regex": "(?i)^https?\\:\\/\\/coderobloxspeedchampion\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d03b31e2f60185d98bd3da2122365deb6d75d42fa2566225b97d8ca043037a3f", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40fa51f5de369900585539a727cb4dd0beda12d7742473b2de314e2cc13146a7", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96618b4b1faf7626484d22f3709ea123c3aef02bcc68176a63156ead9f759a22", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dd1c01e480e8bb08ff6c693801b5645dbb809cd474e751c4d9517ab7b5e6a5f", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72a43e6b34f9a73f9c01d2194fa13488eec036002ecbf4c057d1478ccb0d3dfe", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb8d1b3ad3fe50e27d1796209a522a20d967326f17c40e8ab150b7d0b97ac325", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95f09742ab4b5cfcaddf39f1d567a023b2b5577400c0325f7344c4b752419451", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1798a9d54a25a21e1131db16b4358cbe3c3c665ff0912a2b1668d9d53c000a5c", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6650533e06c37699a9324fc11ae443d564bd7a5baa5a583fdf46813d349aee08", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a2beaa8a6ae006c83e2bd5fd6233ca8d069bd89e446b9e10d0cf6c923ba54aa", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bb24a1fe4af993c508dc7e8b8c293be18cffa205976abde0dabf59263366133", + "regex": "(?i)^https?\\:\\/\\/robloxstudioleaderboardscript\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cb0a7385e63040d536560d37ac98d355285c7f12b9d7e886aeae82043a82ff9", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2227634fe0ee28a7d5ed7d65d7296ca4fdcda22e6fe31c123d413296ff3b3180", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0bca56b2be4c57d8227cd554c67a3d6f83704cf43902d43eae396aa1f91c543", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "daf16cca6d0f02c40f0e76c26270fc36a8d439c7870391987b17acfe83c88a72", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f90d0a312373b9e7e53feb330ab02e322654d9f0421c626e4700aa00a227b6b", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ab25453d3169ec3eca1be8a84fd2cb778db4fe43b70a86af49fdc3c4a428ca4", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "508eaad1c5f44c76d62a610e4915ac6ebfe47fa5636dfe030c04b863f07ffa31", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a7b61c0c8f8cb0cd8f3138efe50244e486dfd4a15efa1758559b2cd5f14b7b6", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c5243de3a37da9aa68f70f198834a393ad3c22d6333172521ac94feccaa4e9e", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a935e9dcc06ad953d99103f4f636d85f5cf411cecb465be63110b8d02fcccfb", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "944361b3ccd6713a4073c4deaff58a4f2503818ddf82f8cc6bc7311acc191b37", + "regex": "(?i)^https?\\:\\/\\/hallelujahpianosheetmusicroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2b1d47d0b8f28374bb1e8f35a695191bddab01d7ce5beec05d86a448508adda", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2916c3108dcba617ccb657944f43b30758d6d12d3afcf99857b69780a2f004d4", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbbae9eb6331763b23d5703fe0c3669f12fa833d315e2526654d504a62f099f5", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e5928d4aea1abe0a1985d718159d660b2597208663d1eb3459753edaf660461", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82c4889d1c3088e55b763e42cb5955fe80a8c1fe915aa197a6bf1953a5543e88", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c62a60745a5615ee84b1a43826bec300483cbcf8a62a4d72baf92085b73d39", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dd030f5ca93b945ba8af9750b76563e07bb4ba4c323f822a63338e6396f5094", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "014a174f788cb962322640551826d139daa4867a8c5237105a3335a1367755a2", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "308c57959c008cd8da455f2760a9d1327d3cded85cb5aea239819d65d9020a63", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e797319a8a1b994e268dca0a5db6ecab9c3bff1f669d9c8af9f62cd35fb35c0a", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d20eba98ab14c88d4cf6300720b731df03e6ddd6903dd4ee96d7339e0052d0ef", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37271b0fe5cfd7de9a4328c1956405f1796d8213c6f7a86fe2fc3c18e36214b3", + "regex": "(?i)^https?\\:\\/\\/robloxskulldecal\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fb2ebf6f614fd894ffb81f291d2802f535d9ce155ddd9d41459a5987f774858", + "regex": "." + }, + { + "hash": "6f5751d0261e9ddb9b8c6c5d365fc43078a571cc94f219b4d410eb8293deae1e", + "regex": "." + }, + { + "hash": "b16faf5cb57bf67ce9be2d1eff6e9030c8c44151b9ce9cf4521726ce951df56b", + "regex": "." + }, + { + "hash": "3199043fbccef92288b92952d2cc5596c9f6ec26f8e99c8e5dc0cd61f9ee7edf", + "regex": "." + }, + { + "hash": "81bc7ab0ff3ea187b09be6d347b55bbd490bf01f03c6e2f72045c5ba484a6a32", + "regex": "." + }, + { + "hash": "d13c41120eaacbfed291355a050c8a2c15113c2f0801c4d4b1aab088f0a55a50", + "regex": "." + }, + { + "hash": "babd5966573589bc17e42194360ed29211fd7c2c826bbbd64e8c26a1127db203", + "regex": "." + }, + { + "hash": "529509a1fc7d970f1c31ebefc3b68d3287f6f3d278f5b6c067f2dda495c3f4d2", + "regex": "." + }, + { + "hash": "b0a3e4525be7781285e0b0fc4cf05e498017fd4d18c11ff9f5ab988e2b8c6403", + "regex": "." + }, + { + "hash": "a225ed25bf0657d7fb006aadcb5be2a2520974a7165d09605b2fcdd10553689b", + "regex": "(?i)^https?\\:\\/\\/bigpaintballrobloxscript\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e35eb9bb147fa897709d3106780df10c29204513d2163ce5e385b5936b1a8f5", + "regex": "(?i)^https?\\:\\/\\/bigpaintballrobloxscript\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "973e51ed421591a10b895c347bfebba2ec828ac611d18eb833bb4b5ede551312", + "regex": "(?i)^https?\\:\\/\\/bigpaintballrobloxscript\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d29865418701e3f315776a7ab2925a982bb051741eaf6be23df2a6ea89ba19", + "regex": "(?i)^https?\\:\\/\\/bigpaintballrobloxscript\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5f0833e58664e94d2b46be0fd9f8f445f290c1ed4ec7b1721ff478fc75b3b09", + "regex": "(?i)^https?\\:\\/\\/bigpaintballrobloxscript\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a7f6bbd51a7fa6ac00d02373fa27834f87b537a3a7543934673e3483493538c", + "regex": "(?i)^https?\\:\\/\\/bigpaintballrobloxscript\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814c6966052142ad47dfefcbd917e596cd4254aca1198dd274dbf791423a045e", + "regex": "(?i)^https?\\:\\/\\/bigpaintballrobloxscript\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26c4f5798120bae85685e804195d3979a02c1fccba413e2afbac953ab7e1ebf3", + "regex": "(?i)^https?\\:\\/\\/robloxfbiopenup\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4514ad6c09055e007df9e4990934be3a4b4bc9e0062af5431371ece7d185f75d", + "regex": "(?i)^https?\\:\\/\\/robloxfbiopenup\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cb34c30bb80eff5aecc82a24e0c963f6ff69d16e87485d3695699395e2fdf36", + "regex": "(?i)^https?\\:\\/\\/robloxfbiopenup\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ad5d236b97ab966e33f810831cf96e36a6c231a07204bf2200861caf0091ec7", + "regex": "(?i)^https?\\:\\/\\/robloxfbiopenup\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4e8f4a608e7a2eb40fadd66b57b23e14241d64f430691bfdd255bd041f8d31a", + "regex": "(?i)^https?\\:\\/\\/robloxfbiopenup\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5883c5bdf66534f47139ed66017462f47ea5ca198efce7caa11b29e4dea41df4", + "regex": "(?i)^https?\\:\\/\\/robloxfbiopenup\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f66ec383bbf32f84870eb4e75ca8ba7c0ba5be4c3068c322ec09f29f01579f8a", + "regex": "(?i)^https?\\:\\/\\/robloxfbiopenup\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa7f890bbc4e0d728cff4123f9f401d78a342f501a2e9ac191b16781f3f1225d", + "regex": "(?i)^https?\\:\\/\\/robloxfbiopenup\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50826b8b5926873bce01e0244b09b1a3aedf43a3625bcb3501f21fc9735e4109", + "regex": "(?i)^https?\\:\\/\\/robloxfbiopenup\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6476e1602479305cd7bbb809409e9da4e460383b63437f47f9eaaeb4fddb958", + "regex": "(?i)^https?\\:\\/\\/2019julyrobloxpromocodes\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c23cd2a2d4e6493b60f5c3677c54fc1b06624a6259974ff484ba8a576713d63d", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4de04a54f718ee645d1b2b769825b154c4cea3c63764d7ffad77cad7eb4955ba", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74e2f0a2a85df4451a2b5e601efe962a3d52ebfa643f1b327ff811d8503be761", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "763b8376ec1c7eef2cb59524ff33bca9f2768410950662d40595f863abb2917f", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b041083d695a38b86f239753cfe6e08c7c257a4e0b4ff0dd88dfe9794fe43311", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39f6930ecaa2d656c5accc2f9794f92e0645bfa44b742bc2174250aa324ebd0a", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64299f38df112b5c242827d91c9976164f4f037cd90ec563bea2f1e21d399d2c", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aab39c12cb2b8df6bce88ed3e3cbf153c5961dbfdf6a714c367911d8d0b1452c", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01a25060f5525fc15542778c1976b74d34a65d0cf5fd68bf4a1a5851ed009f8c", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab2ddfb0bda51146381ec704c222c929be77f1282d63e413506c1d439e514256", + "regex": "(?i)^https?\\:\\/\\/dragonballxrobloxcodes\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21a6c0ba857aa89384d876db78eb83d79e6e815f97b07007ba18833351def741", + "regex": "(?i)^https?\\:\\/\\/alienxrobloxinjector\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b02bdb54369263665cc0b4ba74f6f6bc8fc9cf7bc802150a73dbfda80c6c1c2d", + "regex": "(?i)^https?\\:\\/\\/alienxrobloxinjector\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "559b3b3582d261b24c10fde17fe89fdb3e1a5307d480d3e01267af50c3f962c1", + "regex": "(?i)^https?\\:\\/\\/alienxrobloxinjector\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4143892b4c053ff3f5bbe233f9908414e0f2b077fc85240c4c469908acbe253f", + "regex": "(?i)^https?\\:\\/\\/alienxrobloxinjector\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a4abec15fd49334e64fd24e376eaf042d141a98b58a3871439d3b630e2c1f1", + "regex": "(?i)^https?\\:\\/\\/alienxrobloxinjector\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da1c2963c1a5f8e4fe334773a0de7e8aa677fdb9b526c54b3d641229c38108dd", + "regex": "(?i)^https?\\:\\/\\/alienxrobloxinjector\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32314cd93f530d3ba6ad2abd8e650b3820627ff4c0c929255dade1af8489dea2", + "regex": "(?i)^https?\\:\\/\\/oofrobloxremix\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfde9bd42de4e55e520407a986563eb708b9d190b93caf6d98739387ca60558e", + "regex": "(?i)^https?\\:\\/\\/oofrobloxremix\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "584d8ed8ec7a7906c5c0b3cbdd7c83268efd150db192e14a1fce6a6b32f18bdc", + "regex": "(?i)^https?\\:\\/\\/oofrobloxremix\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "315226f8ccab047a37184fbc95e2c6f056d0b20818b76fb05ea1b3d887835896", + "regex": "(?i)^https?\\:\\/\\/oofrobloxremix\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dfc72d48a070aa53676620e63c8e661338a18ef9267b84f7b9687f65fc76a787", + "regex": "(?i)^https?\\:\\/\\/oofrobloxremix\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7ff72fca48c1b124f5abae3a3aa99b9d968f86695bbc66ce1185f214798bf06", + "regex": "(?i)^https?\\:\\/\\/oofrobloxremix\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d639b2f091ff554193cbd282b482244949b44a53ad6ff71ab2c9b2e4f62dc0e3", + "regex": "(?i)^https?\\:\\/\\/oofrobloxremix\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61d29f11b49805824fb7bb8221b6b1b3346450e1abd43d886e7bb89e950ecc2c", + "regex": "(?i)^https?\\:\\/\\/oofrobloxremix\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e30fe8a1a6031ae7c66418d1bd73e8aadfe629cd0308607a8d40ee8b0c4da5a", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cf55dc27d6f93862628981c3da4a3e7763c8abf35fce35cf32056dfefa5ef28", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b73dce6ea5672a282d2330b13b19fad7c4cfc17d98611ca5d140f1fcb244683", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dab1a318beb1a26e3f704e560a68386cddc497a8151660d4c1b95c3f5edbc40", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89d03c71de6fc72ef20e069f5e195e330d91a164e507b5b893deee42c2ecf033", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6f0579ab2eaf6e82200566c064dccd31efd50ff4a0b00f85795ea5777396bd8", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d79288aa9dd8fdf8f792e8542e2d85b73cdcc535cdd0136adca93b7773ccee2", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "322f601b7fc437324d7575dcdbe9b014d37149d0d0f97d99ec7bef28225d7295", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4284c2de400d130d759f81fa575e6dd2bf5a8dac04132e248b6b7843bf4932fd", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4beb35fa520e3ff7068fa42b035518d5e346a1fdffd6e92a8901183299051359", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "673def214c820bd6566e1ed09f2af09dcd9ab202869c17007832936a5e9554a2", + "regex": "(?i)^https?\\:\\/\\/robloxpalhair\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1bc5994960bbbb88e9ca09173f93003f7ab04ad20c24d33b77a9e23936d490c", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41fc3590753986a02a672b51c1a93f41bdcc1a5272bcb676471878d49cc5f549", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac6d4f08771b63eae594735fe058fd4d9e84dcae7b84d7cb00c984341f117e8a", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a14215d20c807ed4fd85567d3800968a44a86e530ec9eefec092d62c78d6fc1b", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3e592966fbd7032305dcc2c5a10122591cc3afb9a41c65a835b62e3fe069f39", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab9a73619b8e74ef8d609e0a446d327175c7dde3d24661ad37c5eef37bcf99f", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1243ba39083ac6e08aa3e63505a2c7eb646fa5cfb955ce6298a3d495bd44fdaa", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9037cfa5b1d6a12e74e9236acf84c0bd5b15eaf2e20576984f95697b41ebc05", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36d79b4aa3e01e5040c96db6068c21f8e180478304f206b08aa9e877ccd53f16", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96043e6217e9dce6800ad3335da649ac4df9637333ba7aabcec0c8b8f2a00416", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a435dcc361064b4ab257b757784c6de38de573c3bc4a311651647df9fc718c44", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f447550a541a15e2915e78996b34a14aeb1deffcd3cffbfbd598638ad787c2d", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c4e77f322b6e818674551edf1057dfa8a76ad0e6e1c0a15ec4a15bd380871b3", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a31ef4b6eef0648461e38849eebbac3e67532e8d790212e19b621385932735ae", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22b8a1bbcbf876a082e633d5679b1d296a2bbd3c570d8c2841f7cb9bec07e58e", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44c77e4d011391a7a6f7e6ceb1ee92ff73a91052446b7befad5ac497700b9b6e", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc8b4b2d8ba92a287a3e634cf96f32617a6ffc6bed59ea2bd93dccdc96961539", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afc9e793c00b67e5a1337c0487eca7040f5b0d9fc54cf27c87593f3e13c6877e", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ae18befaf1ad3edaf5db469455fa4c4da80579581b08c2d0d0af4e5f396c15a", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67c4605cd8f596f7390b262901cc949b7efdc5d92b51337a2ce67873dbd374d4", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f13dfdd072616cc2ba41765ac8cefe4e0eb4f99169854c4db6689d69fdb3afd5", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c888dbd7cc0492f776f6fb9d1b158c1b99a02fc6ca05a78f1e4949a3ecc7d3c9", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b460573aeb91798b874c1b7a532ec869aa202f9bf7c2842d3405aebf59be9cf7", + "regex": "(?i)^https?\\:\\/\\/robloxbedava\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7a61df85173171f4c47acc5e0ae932391fbc3a0eb8c673810628c4abc106bce", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b14ccab1deff11cafc72a73d230353274373231e3e865663de01a0bc0ce311ce", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d46aaf7404cd8ed737693f96cc4a298f310e63db35a2e61499926255f4252587", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e46adc9e1ecd24157fa38be2d61c6444602fbd99d66502727f45fbd1385081a", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24d3d34e6880f20de880c89fe7ebd7a08404081f92ed5c67483cbe3bc3e22cca", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd33ebdfb1175a1c22437b28fd511e6c9c2fba9320ec4fa693300b8d75a5b2c2", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07b042870f240e19055d4824e0ff0c4563434320dbd33214b4dcebaf7e20781e", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0901ffbe8c57fe7e7083d41d709da3e7bf20fc4c2a4717e534ecec357bc4dae1", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d7293934cad057caade9a6d4fdd5c13c5eaf25eaaa61b72067ffa839f428e15", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b00b40a0a891be921e8e9a8b373982c5a26408aa3e9f90b5e942d657ec70207", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1911a74e739751c97f41e4a89da9b65b7e7922f6c12fbfc324202fc5e58592d5", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "466ab47464a79a74297e74e0f30e3b3d972242bb7e1a4ee0e22fc6d267cfaa35", + "regex": "(?i)^https?\\:\\/\\/freehairinrobloxboy\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a239090ba80b2b3bb56a2642447bb073af98393cc8427149658c1e6e4478ac5d", + "regex": "(?i)^https?\\:\\/\\/robloxthestreetsscriptpastebin\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b990b69504610202e3b7166d0a4b6b5a2b1d3c32873b0842e71b4da54b54f90", + "regex": "(?i)^https?\\:\\/\\/robloxthestreetsscriptpastebin\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "014bcf30fd184d34f3c473bf706d5515d388481ab4b839d50ab2519127520d13", + "regex": "(?i)^https?\\:\\/\\/robloxthestreetsscriptpastebin\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83f89cb7e14c98c74f26a5855fd3971423b7b25097f798e6d1c0cf84f9e93c4f", + "regex": "(?i)^https?\\:\\/\\/robloxthestreetsscriptpastebin\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9666d7cf40cd639df5d5afcf1a1586114be8cefedca5c8231e82bf137fa864cd", + "regex": "(?i)^https?\\:\\/\\/robloxthestreetsscriptpastebin\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a42e51d83b9c8872576c1cf3e6bdc69000eb08600fa542104b6dc8d0b7dab902", + "regex": "(?i)^https?\\:\\/\\/robloxthestreetsscriptpastebin\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fdd533f4eb3bc3fe3b7f2f8dcdbfc41e210689513dc7afe24aaff689cb61643", + "regex": "(?i)^https?\\:\\/\\/robloxthestreetsscriptpastebin\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "735f3f67868131cfc88c5f29d6e54169b96e7164d4408fc236e16401bef4d1b5", + "regex": "(?i)^https?\\:\\/\\/gooborispoole\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33d366f53801c1af50220697d1ac1a449528be3efb287b2155e7605f49085ba0", + "regex": "(?i)^https?\\:\\/\\/gooborispoole\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db188e95300cb56c66d6fdbe569c0a053ab6c8a6d690b0fc9e32172ad1d6edd9", + "regex": "(?i)^https?\\:\\/\\/gooborispoole\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c732d8051b33270e727ca24d02a37d1cb576bb27decb7e09cd91d28e0cda44", + "regex": "(?i)^https?\\:\\/\\/gooborispoole\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3abd659776b713fb6230bfc8f6afab475d39d502ef187056589923f2ddf61f37", + "regex": "(?i)^https?\\:\\/\\/gooborispoole\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa44d2e06775692bed51d3420e64980d6280027c77c3bbf171c7e1b60279debd", + "regex": "(?i)^https?\\:\\/\\/gooborispoole\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8b2d175b625dd29269fa5584c0ecf878c476089e965652dc91f3edf9150b6f9", + "regex": "(?i)^https?\\:\\/\\/gooborispoole\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7d1f2eb69b3157506218e8ef1ee9657ee6e7c11bc0032e7724538dc9fa69494", + "regex": "(?i)^https?\\:\\/\\/gooborispoole\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ecca0e7c6f93e3ee8c34904135b1bbad73f08f6a4b327bfb500384271678612", + "regex": "(?i)^https?\\:\\/\\/gooborispoole\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13eb95de30b864040f6f1c733b44c828442cbed159a518544fcdcf4c07a94acb", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxprank\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4893a472af7b36db93c3e78d61df8bec42c4fb1c1f0ca7d8ee6ebdefefbb08bf", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxprank\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb3f40ad7f2c93f2c9974321a40c10504660e6fa3f1ec1459048065b93e242b0", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxprank\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "479948b6a6128361165759c31f7f2936dec89e73cb156bd17ce417c295b7b7e7", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxprank\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e91421dc5b84ef8e36c2a16d6acf6bf5f89b37c14f89ddc71d13faa1fd71d373", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxprank\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3efc995da74924ca19c7c05249730f02eb5c6e4a97796707efd9931fa21d07e3", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxprank\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2847f4af1bdf4c356d445c5d8b0a750a7bcb157bcb438d9565458a9f87d1c7bc", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxprank\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a921688b5180034f323918c33d0fedbaaebae2227263ef6b83e1edf6014a48", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxonlinetexh5\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "060fdb696ba6fbe511f15c150d5e59e110e81da57d91e1d9d0eba3ba1d64e906", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxonlinetexh5\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1fa0ddd7d447847c04ff71c2a184259c7ce39de4f9e1585d03706201e04faed", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxonlinetexh5\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8a37bd4b4ae72707c43ac5f7e3fb97fbf7a1b3dfa1e0f6e474f52afe2417a00", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxonlinetexh5\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28decb050b0821d5bdd8dbe1ba6638286e10785805dfddf21b31df4ac0ca6222", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxonlinetexh5\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb43af595a40e82ba8bc0a439b5a8b7f15454368deeee033e29eba01b0892766", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxonlinetexh5\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2421da5fdb0dec110b4407ea9a2d075ca08d052a5084f118c5f63fd7b8b5d09", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxonlinetexh5\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d79c480d7406db1c4d75c13448247fa70678c3c7102ec8fc3a85ed461af6cba1", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6053957f23efbd7a2a83416188453f2461c098df614bb4d8a3e474ce73f9112d", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c7c1b8010bb1c7062b1f7f765cf69b75e93e98a4b58a1ad2dfe52ae5c4d11d6", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93b2ef35d29e15fe6153e473990ed0039c8ebdf683ddc070a854b7991230e981", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcf2cfe539a6c59bcacb4e1e5f63e7baed3dfabe9dd5d0d7ffe83b48ebb0b805", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "771d2844cc56d5bbec1e28c6d8fd091912fd3f474ffa4c5f314cceb0af8ca84f", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc01d2a8cdedd7881007fb00f51a89f48dd5f441962de2447514627d49ae1243", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff934b45e431820e4dd5ea0d1a89f85e3169f38c13ac7a0a9f54f49979b9a5e5", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38b55a089f56f6a0a9a486cf1088aa727f4f4ab5ddb32029cd6a026796ca7701", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24e5d7678802f78a303b891793014eb8f27007261bc77e0a53d98e60d1609cff", + "regex": "(?i)^https?\\:\\/\\/imagensrobloxhacker\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3be1fb6e0243eeb300c86aa0d8ac30c91393d8dbb459ca38d3d5dd392a6c45a1", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d4035f4152fde8a959f6434252df40399de72fd404ff9c3c0aa23cd7349495", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8524199a0c2676a8a046ee4b51ac90bcce572c5eba7baff6918f33ccec38f8e", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54e75da52fd24376a0b1f6e7b69c35ecaddda7f13055d9b55471cf0a2297621", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd5b86ae68ef4bbf29285422d186424bd41f8bf8c043fd6223cc29de2a033b54", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfd1d588186fdfc98c541f5e341837fca0fcb5af0813ac004452d8b5f4348fb0", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db6b549b5fa2dfcfb565dfe7180f43ac727f7754836882427a474b602dab2f68", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e629d0f49473d57310a5c150df09e6bf7985e5efa2f38c61444693d6e242da46", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac70c180ee6e10d1f81086232c634b2787979121db3fb54c066952559085b37b", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4790d33711027e017a665f89a5ddbc6bb05fe1e0b6812370a9d56d8875cee996", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c889580c56ca7be7b37ab3c430318db20ab03d15333ddaa55f4d29bb5f9cf93c", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf6bd88ef01a923a71c82465e0edf2842d8373ac827b586dc84f7b2befcc1c96", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39f04518c125cf4e964505b46593cf4a6ac788f7c3941f57fb037b1ca5c56dcb", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "952bd9e883b31ff1195a6e8cb701b3e5283b3664e21fcd85821573c22215b780", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9ac2fe7801942950ab703905c812722d6b842152221db78343ac519b761d382", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "056c431647faa7118a708cc8e4daeff980a0b4b810e3521b677dfdd76cadf02a", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e628e5076b9faf43b4c31a15927dcb5e77e58b8f6784e3db87a0ede7de26e6b7", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a7090b93f938378a60ab0bf863a6ed38cb9a25f766f19d235cbd623ecfc373", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e9e88aceb4794d6349f8057683d844cd8d4fbd6424c221e4946dc6e05ff15fd", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8db819affa067a855dbde673905a4729382caea0322d4ca40e7668d3ec8992dc", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e7cb50c008a0993f2ce4a61c0f1a3b018f038c7c955abccc5edd83aa4a9b7b1", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a27dfa5a14ec717fb70186a979f26546c171c3d268d7e25eab1aab99b4bf7e32", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc8ed648bce55dab9ab4581c0509590d053078e01e9a91d1e3ac52b5f706dfcd", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f38be2b364c12ae6c64290f060ea2ed8d467809c4afc59ab26611534bfc4f970", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aa903d84db4e6fdc00cd86fa418fffd8c80340b0c3b3e7d738b51823038cfd1", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fded505ed1d9534616347d95846ea3040a9a8f675467ce5757f7fa75f63c2581", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegratisnoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1943d7353bfa87f69577ca3a583bd1713dc8784c1266d3104e126fa7802efdc0", + "regex": "(?i)^https?\\:\\/\\/wikifamesimulatorcodesroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2a8564fa335310cb477548eafff84d89e826d338a79e3a5423180a5b306961", + "regex": "(?i)^https?\\:\\/\\/wikifamesimulatorcodesroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ce86612c322d61b9be92a9d6b4946fa87a34190105cc1b356329d5699f42381", + "regex": "(?i)^https?\\:\\/\\/wikifamesimulatorcodesroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f93590e7ff405e6aff5320851660223659b64b93b11374c482afbf37cc6a7da", + "regex": "(?i)^https?\\:\\/\\/wikifamesimulatorcodesroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4282ba7e78657ec672f25b34a0c8ea82f74954f6897a0fe41a7bf401371ef9c6", + "regex": "(?i)^https?\\:\\/\\/wikifamesimulatorcodesroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d334b56710eb3356b71f97cbe7f6c331e44f32ef35f6b380fb1299d1495709e2", + "regex": "(?i)^https?\\:\\/\\/wikifamesimulatorcodesroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a84942fb52454742de204ef48738ee8320395fb356e5005415b3bab51abadac0", + "regex": "(?i)^https?\\:\\/\\/wikifamesimulatorcodesroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93d27ecf8721c0511d848a08fd9494a7dbf4322501df39ead76e5746d3895124", + "regex": "(?i)^https?\\:\\/\\/robloxhowtosellmodelsforrobux\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20164f7f21eca2e10077d0a3b692c38564d3794b045810495d5d91635bb52f74", + "regex": "(?i)^https?\\:\\/\\/robloxhowtosellmodelsforrobux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f7157d236a0488c06fc1c86c254f6030936aff7efdbde6f0730004eaed6e14", + "regex": "(?i)^https?\\:\\/\\/robloxhowtosellmodelsforrobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e926547e593db37d289f067bb6fb26c7153a1b8611cdbda64bddca829c20b3e6", + "regex": "(?i)^https?\\:\\/\\/robloxhowtosellmodelsforrobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fc4f72255108ff4d79574ccdf48f5138dfbaadfc5c58b7f389bfb953cb94812", + "regex": "(?i)^https?\\:\\/\\/robloxhowtosellmodelsforrobux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1ed58a681a8ac75f698aa17a80e42048bf361d694d47a64c81c5415fe95c086", + "regex": "(?i)^https?\\:\\/\\/robloxhowtosellmodelsforrobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ad0889acd45a7f91f03fd1250e63089acd5e12abbe31f60816b588bb82a4483", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxpelohackappdata\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "030832b946510c124ad010c90c7a603386d6126b55c445134d4427ed158495e4", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxpelohackappdata\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e33a32e2193432e93d702ffe557ccd6e155c5b94fe1fed5f53c3f0110db276d", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxpelohackappdata\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8307ec9e80b054e6ede773707182cc99ec8589a245fca84fa47ff73b050587af", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxpelohackappdata\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6538a053f64065130a332583d7b51d028547ef12ee4d553e74c05603a977a545", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxpelohackappdata\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a64116ed4529b498b95770b1b71b1a2cf0db8c374f61d6fa1c355053ad293ca1", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxpelohackappdata\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b03fd285fa366f9ab2dc6077fc6c1dc9bba9763adac5c2f459634e3323d9dfc", + "regex": "(?i)^https?\\:\\/\\/jogandofreethefacilityroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac8bbf7777140faf81a85253d39891933c67ceda07930bb23a3e72368f406d3b", + "regex": "(?i)^https?\\:\\/\\/jogandofreethefacilityroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b16fa0aba902028b03cee2a8631fa67c4de1c68994bb26f3c9096dea6fd4cab5", + "regex": "(?i)^https?\\:\\/\\/jogandofreethefacilityroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d3b7ce7ab489d2d6e4e8a3d1b5c3259f4047534e5f6f33b21648b75f0f3da38", + "regex": "(?i)^https?\\:\\/\\/jogandofreethefacilityroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75a4302e025f7ac8df48a0b0e2422b141d9371cf91f132793b0439623de0bbd", + "regex": "(?i)^https?\\:\\/\\/jogandofreethefacilityroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cc19814f4ac882f5b2fbdcfe1758114cfe5eacd7a671be9531ae7eb6b4ce8ed", + "regex": "(?i)^https?\\:\\/\\/jogandofreethefacilityroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "393a3d4c3fb4376bf81b7044f772c91ada5db27abcfe89e83e2cbb19dc35ce42", + "regex": "(?i)^https?\\:\\/\\/jogandofreethefacilityroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "425c21bccb2fdccd64df576aeb555394b738d6ac5e01b21e27df20fb73cbc3b0", + "regex": "(?i)^https?\\:\\/\\/jogandofreethefacilityroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74091710a08a5028e0b84def9f467885f1fc1870d63d5503080ad2cf75a12fe3", + "regex": "(?i)^https?\\:\\/\\/jogandofreethefacilityroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e53336451849d00af7da3c3b06a50a7b9c4e599776ce2e1fa13673fc573f4f5a", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveyandnohumanverificat\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88785cbe3f19c60d8682e0fca40de220c2e83673d436bb68f70a8730b990f754", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveyandnohumanverificat\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b50a70d050d0647a609639104a7ae428d33135d3a678d3c8887dca6490e34ac", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveyandnohumanverificat\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "642b61997317f3bea4022401d3e23386a9047516f9eb5ce223798c2706f0707b", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveyandnohumanverificat\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74e2831d5c3dd6f5319b196cde67ec7e87d4b785dcd72f9707fd200848f6798d", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveyandnohumanverificat\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba8069b9b23b0c758f97519b4b6f087b2e0a2a0cd472f02b43533c826196c00b", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021augest\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d9be50b4505d538650be9567994e94ce9f1fcae39d2331e3d4fa18d1bd9f536", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021augest\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "affafe36e7deeed2b41aea1136b74e7b0b6ddf260f4574f0fd36b3d992c360eb", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021augest\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc736ad4c3fa559ea652be44224021110a1aa1a918872d5a169d6ec4a976d512", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021augest\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37445c6c2c13a588ac1a2780fac7b6781c3bd4db9ce5909e2212901bdfc28c4e", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021augest\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9afcbe7b74055ba4b7a29bea96528a6fac8bd380382f9c58f04c765694d54c82", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021augest\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22567b9a40ee45d63c0a655e1c42e4a612565af81d206ca1e0e69a82c7d4cc60", + "regex": "(?i)^https?\\:\\/\\/coderobloxpourrobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54fa8980c1b3dd120e922de7290c6e4457fe9a57e7736d0f87c56ed66d612c72", + "regex": "(?i)^https?\\:\\/\\/coderobloxpourrobux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "757581c4b961b61a6ceba9c1cf4f2ae141941d523b52f7c3f69266b911999b92", + "regex": "(?i)^https?\\:\\/\\/coderobloxpourrobux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9b174a147b2994859d9e53b99bcd966f354131ea00fc4effab09ed691db69de", + "regex": "(?i)^https?\\:\\/\\/coderobloxpourrobux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bedf8c340b2f794e9cddfc120f8d11699eecb54c2c019a5bf820adfcc642d15", + "regex": "(?i)^https?\\:\\/\\/coderobloxpourrobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "077c89518869ea66ff865307ec17745d44372d1fc9b9c2fbe83c1aab9c8e0cd0", + "regex": "(?i)^https?\\:\\/\\/coderobloxpourrobux\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58b0a0e54d2ee1f4a4927f6350de05ff08c21c702e9d6aed868c33d7819ff4a3", + "regex": "(?i)^https?\\:\\/\\/coderobloxpourrobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ceef1cb8adda2961422ceabd97b94d439fdca77e69dc941567872e1f83f7f074", + "regex": "(?i)^https?\\:\\/\\/coderobloxpourrobux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb754d9964ead818f87764b910291061638bedf7fba9d6fa7d73cf455b36983b", + "regex": "(?i)^https?\\:\\/\\/coderobloxpourrobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c0ba53c59e52da907d145366dfa137eed15e0483116788fdf8c6eebe7e11bb", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f561dc89d873d0e70101500445b0700c7c4143d6e7a9d958cca74fe22e944141", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf894588db08307126ff98fa00786d857c34a3ca7d715dbb7c0ed2fe8d373fc6", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efbbe8bfa65aaa730b303b53244a16d2028e8c03898a05d7212283be95f53f92", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b01d5e7ddc12d50637bcc6fb349d7fbb0ed2b40c3b0a46b7f546ee149cebb135", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bdeef8cdf1aff526cfb800da7da953c669bbd6d67c09b9fc9d2399c2b69c103", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "976605120c725e49966865e076c45a5a7058ba4e671409bedb2289ebeebc21e7", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38b48719eb8f10f56920e3b983b51d8050fc18b14bd05a3520f76096d1bebc2b", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d87da31636c2d9d636a4da83f978e8b351a0668753c2525edac3d70808e498f", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0408bc040501aeda0be39879a51c683b849bdfc7f8b5cbc8e1b26242966c5476", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxemjogoensinando\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4af3d05594bd1842faaab7d1c11c339d45e3e339123e1e380ed62639dde5535", + "regex": "(?i)^https?\\:\\/\\/robloxcehacks\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d0ee65456acd4435be83ef554b90f7bfca141cf2e0a564d234bfa0eb28769d8", + "regex": "(?i)^https?\\:\\/\\/robloxcehacks\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "272602c3d4a32a6c539aee4936d1385b8981e7b758e0aa9b9c0f86ecb11f8bcb", + "regex": "(?i)^https?\\:\\/\\/robloxcehacks\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b610f6a69fd225be76483879b7182b2f2b4dc317f9fcca67e22b034190de1636", + "regex": "(?i)^https?\\:\\/\\/robloxcehacks\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e37f5c8cd425e925d52d84c7958cb9fe5cb082b3d073b9db731d09510004b32f", + "regex": "(?i)^https?\\:\\/\\/robloxcehacks\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a74249813de798c23d7ee5fc51b11db24580b51d9e353ca4967028e4a506901", + "regex": "(?i)^https?\\:\\/\\/robloxcehacks\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4421b32c25a6df57f4bebf07a631c0296d01c3afda7e1aa23abfbd56c37da10", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a3f0a46dfbae61fbfbc40ecbce2146845218303a14c005dea4070dcc817e088", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03370c72610ad16213f77245218e90c1b6451415ae1b8cd16401dee705983175", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7784f22c9a6a9a81ad7e157a74bc30cc2ffc6541c0913bdc1bf0f9e34875a234", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35f3f3af12fdc0ae15eceb7dba88a1ea7e37399b40fd4ac6b4b7da550f9a3a6e", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f930bd6b9bb02876de79c915e70a6c5e372aca4cc2714850860bbeefd2d6b3d3", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "528a8b06626b9638c8b42487779953fec702d8774d2d9e394e0b7d1738c4a7d4", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aeca88cb91cf85c1f5bce801f1146fda9d40c388aac54e0def8a624c95d8d42", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ede656e1c40dd377eda2bdfba5d573f2560d6b863ea91619ce1a5dde0feca8f1", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05a08156889c879e900345c34f956fbef44a6bb6767cea20a2ad16dcfa3963fa", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "625d4302f305b34da23f95aea935ae5adaa2dea5fcfa3b48f72f1f10818617b3", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "187ee3c3f517d07d0c7c1457d3a90250fc6bd754a736a187dc21a7354712c13e", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d8a2cffdf7d225d32aafa6002e91f8cdfedc7b24c1b6e5bb3620ae67f2c8f73", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef411540122b41935bacc804f5307c7ff0f469f4498073fd424c7f9564a22bc3", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f2be61a7050a101becbbe55c1c4b27c46f62e0c47a373f5404cc03251296619", + "regex": "(?i)^https?\\:\\/\\/commentmettrelescodesurroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ccd8d20256ae93e22e8ebddfe9d52a6b07df54d1f61e6e089cbc605a5074384", + "regex": "(?i)^https?\\:\\/\\/robloxcamoflaugedecal\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fedfaf7d4a4682420b85e3496ecde9ece693d769fa105236b67a09894b7cc09f", + "regex": "(?i)^https?\\:\\/\\/robloxcamoflaugedecal\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59668dd643b1b382e05e5d126f21ff78396ff7d00320cc7545b5972ea9a9cbfd", + "regex": "(?i)^https?\\:\\/\\/robloxcamoflaugedecal\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67b45e678a3aaff46c7261f7033f91ce585c9dc173c4340e687aeef3dc172f71", + "regex": "(?i)^https?\\:\\/\\/robloxwebrobux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4502805030caeb8b02c0efea9dcc84ed80bde50d5ab35608737d8194680544b", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a2db96cadf0b6e86821c3ca8574803becf27818199b8c2124a6c45e7ca45ca9", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75f466a288fed51b1c11be258a83b0723a6f3c9b6cc8ac2b4019f3d4fa3debbd", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21e134d53b08b6b765af33c1bc8a1913e2032e4a093e37deb1e4196a7a53da64", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86466a782488b8a1f8638ff8b78c9563462d2ed3d7259cf88ef58b4fca0a2294", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c153a0b2a5cb958853e146221614af28a6c5a9b949fbb7da7405d1083c5fca", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bafc284fa7eba3c7b87ccbbd732737834347c86765c7de6613f5985aad4b99b8", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ceb20a5daa459a5a765384913fd22aa0f00b2ecc7c7a9c1940c2ad5b9eae9efb", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b32c712ba8c6f801430107a18018ce06b05bb8587ab4c9481fc52ec6c3c49a7a", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59bd9a697f11ff9961a56417a60f2536206aa2f6ee57f36e532bb786bd6a37cc", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9b370da226d7da79aac1e252e80e883cb1e213cf9eb07a3e365e10dfe80f265", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7593e3de65704e057cfa8ccf644584082881956c58328af204e95c90e977449e", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3928bfa11a969a22c4e2e1c7d113b970c55cb77c0e88a7ba94d5852f4615892f", + "regex": "(?i)^https?\\:\\/\\/robloxwhichofthefollowingstatement1\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71fe1c303ddc3ff1ff7e899b1ca56170f9d8ad558213b7eb3a4795eaa203886a", + "regex": "(?i)^https?\\:\\/\\/comotenercualquiercaraenroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0721921c57898ed019a55bce3737148c81d353831100e94a5dde1ed06d602a9", + "regex": "(?i)^https?\\:\\/\\/comotenercualquiercaraenroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b135a0b6ef568aa1e4de19967e8835e3c95b651f89c851d5fa02b7b7858a47e4", + "regex": "(?i)^https?\\:\\/\\/comotenercualquiercaraenroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4767eddb30cb24c7e4960aa0f2445b8d7755b998d0318bb86c0a6c8ca91cb70c", + "regex": "(?i)^https?\\:\\/\\/comotenercualquiercaraenroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bc022a790e953600d4ad1224576d60209b27f1f749b1c7374eeda7bde45cbb", + "regex": "(?i)^https?\\:\\/\\/comotenercualquiercaraenroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "727b95ce56db482272d6f913edf87e187ef5374f18cf280d086d9aeb4c3cd13f", + "regex": "(?i)^https?\\:\\/\\/comotenercualquiercaraenroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae00fa73fd70c1531ab7e65016e6e59ebe1bccb37c65d22325db960bc353a777", + "regex": "(?i)^https?\\:\\/\\/comotenercualquiercaraenroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ade9b920aba44c405cab14cda3fae53b7dfba4261ac51c732b4362e13ea2e57", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df40c8748e1ff2d00056a0703848e6a7bcabe2b2d470bf1355bd75f8636d62b8", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b5bb736e2da6a31568d32bf21b1f9f98dccf1d4b6876c82da7b28c30e951054", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8e00298a113f8f4129d046e054677e0b202b11a8fe2d0e01d6e5da3e66287c5", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f088a12548f5f969b60d2aa15e80b66395c21189aea320ca76c4b56d017ef3f", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46f1d02b6bfb017f738bf075ef6f195a1fc23ba6644109aeac161b3053a824b0", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75b14142e7152d01c623262470eccad624682c05b40f48a409a5c9e83f88cedf", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ece53bb1a3ec28aa67c15c259272ec28eb9755de532a461782b668435d982e35", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f51e504cccb450454deffb3fdd8adadad8b155b5e8bb75e204b63fc84fff5c4", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3af0297f3ad9ed583f4d4a5449beb38e52f1100a7bd58597e266b0ec80eaa58e", + "regex": "(?i)^https?\\:\\/\\/trapargentinoidroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "436ee06e81391eaa8db837cf8fdb9f6509056bc6ad7f6793cc2a6facf78f8562", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3f785ea6c13691ebbc9284fdd5b643262c9be47276cab25723295fe65aae7fd", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c956c995859b06915b12186db2fa2f983304c023d2d5b1913a4d70896f04fe8", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de9ec0838d9ef4a0158a30fb6aa26ec96675363ea9a9dde23970728362f13d62", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73de643acb5e81ada416c899ad612164570a911e0a24dd2d1ee52824631cf0e7", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "258e7f0fc5bad2f252cc9bc41e615c434b15a89a71de50b165bb6102aea0f7de", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "965f8b6d0d5bcc3886d56b7074ef9e8ca61f77a82ca31a5f4e23d785d0f27a77", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4df040f6f519a5f7038d58dc31877347b05fc55bfa22f86f9e089191812f188", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba82abf3e725f2952b3a0210f06eadabef42e473ca27599d557d42894b6a23ad", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "febff54d8a144210288930c18c242e9e7a24d7fa5f64abba1a75bfa1cfff2925", + "regex": "(?i)^https?\\:\\/\\/robloxprivateserverfree\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b9dc051eb4b0136147208b0350897e625aab76e1579958e49a0e1ac15e32b7f", + "regex": "(?i)^https?\\:\\/\\/badvibesforeverrobloxidcode\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8858e64ad0be0de2fe65cc5266c5c7f2f6e1c85a05818b714b902d45dfdebbee", + "regex": "(?i)^https?\\:\\/\\/badvibesforeverrobloxidcode\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cb42dbb40085b549fcac9b8bd9d85de5264f8d96a310fa3357e2bc3ed5a79a", + "regex": "(?i)^https?\\:\\/\\/badvibesforeverrobloxidcode\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a86e5ae8264f22222493542cf1926469ef6436badf3c2d050208578912cf51d", + "regex": "(?i)^https?\\:\\/\\/badvibesforeverrobloxidcode\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9b5c34b19477f2e2c281f3c81bf5d1182ba0a2c943b84130c3b04d4c5215935", + "regex": "(?i)^https?\\:\\/\\/badvibesforeverrobloxidcode\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "777ac140620ae0ba7c873c5cf796257b3d31206bbdddd45613453afe8dd0524d", + "regex": "(?i)^https?\\:\\/\\/badvibesforeverrobloxidcode\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c27fd23399551d710c0594dc7f223be3357859ceb086954e4b063741f2bcd8e", + "regex": "(?i)^https?\\:\\/\\/badvibesforeverrobloxidcode\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d19dec61fbb0e9555d9b34a33bd5c1edcacbfe549064a402a3797c403df5989a", + "regex": "(?i)^https?\\:\\/\\/badvibesforeverrobloxidcode\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1a54509d7da7040ff9c10bc0299fc496c3abdb4d23b2aaa11bfc7a95dadea8e", + "regex": "(?i)^https?\\:\\/\\/badvibesforeverrobloxidcode\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b43ab73b9ee215d1794f32b5ab1cfcfde5ec3951fde68a3c7ebe9719b056829", + "regex": "(?i)^https?\\:\\/\\/alexaroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76ed85f1d080355cc3a448bcfe6cf2d74c88f62b29954463d719ff5efeb67763", + "regex": "(?i)^https?\\:\\/\\/alexaroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d2cc24dcf512dda99472394f5a5761242718febfcde927df632db9550d293af", + "regex": "(?i)^https?\\:\\/\\/alexaroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a02346d5836de31f8e166fd0b8419d15fcfffba9788a7e0fd3555c32ca6488a3", + "regex": "(?i)^https?\\:\\/\\/alexaroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c982189a1f7376f135de4481985fdd9a6b506e9af85aad4e5f74940e9a2bf8", + "regex": "(?i)^https?\\:\\/\\/alexaroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3a87c44b38181b66ce4e46c53e90cfcabf6c1d1bbefdb68f77ad8e841eefb20", + "regex": "(?i)^https?\\:\\/\\/alexaroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71d829fccae80e1913a5f132a5d1bf34f3fb60bc5fd309b3ffa651992fbb544b", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19903b8f14b67d710ec55c790d984ef20ba3b1e93b0d33fef93fc543c22b2d0a", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af516f539c2d99cd02a4e1af2f0ddae2764c71c4c6714deb3470811b11337839", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a46fe851756e618efaffdc00b11a6a45e6af7a244f598f5f95785f0144bd663", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bb1e0016aad5e9d5973303b1cf8cccf9527e536e9102476cef9399af9329d00", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25ba4ed2b53507b4acf5b818c30f2f9ae1d23de0e4abbc2f79892afeb583272e", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebfa90fdb58d37e8b52073b95467c95f8840430a6272a746a56d361e6cbc9c59", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75d86d09c5b84fe31bcf25757917bc5240388fae2ddb45920c3ac473c8dbb2a", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d47f5484cc8d26e5e14f8e27a0eecc39dc23d1e2ab17eaa0ce69a83966f4089", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c212ad2002777170df1874aefeab7d67e784f37af2977921bd1297f33f4a87f0", + "regex": "(?i)^https?\\:\\/\\/houseboxroblox1\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cb31f3726f2e1e5c2ca392de1e156584987d89c854cde503f5e6d7a6ee5a1b", + "regex": "(?i)^https?\\:\\/\\/robloxforwindowsxpdownload\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "320d6d6570f2e8afc80cd925e3cf20e0d989d42e68b85717d5edf0e9c9b6a8db", + "regex": "(?i)^https?\\:\\/\\/robloxforwindowsxpdownload\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e28f24d919cef1683ba8519b91768bb52cf7f97d53d350d6ee4354099535e0a", + "regex": "(?i)^https?\\:\\/\\/robloxforwindowsxpdownload\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9938233a006688502f2171d081b54270a434a4247c3277da6e6d695e15e6ec5d", + "regex": "(?i)^https?\\:\\/\\/robloxforwindowsxpdownload\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fe53adecaee3542405ccb06a6c0022e35196aae704a99f77f2471bab01f6743", + "regex": "(?i)^https?\\:\\/\\/robloxforwindowsxpdownload\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffe410d6f3d7cddb164952e3d5a598a43a4302bd671b6759a879231fab3bed07", + "regex": "(?i)^https?\\:\\/\\/robloxforwindowsxpdownload\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdaef1c3e915c4d343c7083f1d1905ee3ce8a30d85bd0e9e9d32e729c69faa9f", + "regex": "(?i)^https?\\:\\/\\/robloxforwindowsxpdownload\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d19d1d6005ccfee5b30c1476ff2656910900a07c378edfdd336bcec6bd7373d8", + "regex": "(?i)^https?\\:\\/\\/robloxforwindowsxpdownload\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a765e6a3ab1f7f29fe3824ed5ab4172d8b467f4852da30996514ee3050c375c", + "regex": "(?i)^https?\\:\\/\\/robloxforwindowsxpdownload\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41433fd854a16a5eddaf1f2ab39ede985fcca809ac2e01f08c47a64cf178607d", + "regex": "(?i)^https?\\:\\/\\/upholdloginorofficialsigin14\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "022ef8a55cb56ffb1d02b8df8ce13d990176a7b788f6b6a7e2784e6d71e7664c", + "regex": "." + }, + { + "hash": "6c1ceb6b3b22fdf9d39e1d5943c32e4720346845dd210cba8510f30c4a98107d", + "regex": "." + }, + { + "hash": "8331d1bee842058ae8ea11f495279f10c7cface90fb393d1c2c4621e97b25af7", + "regex": "." + }, + { + "hash": "7a0227ef6fbb18a005b7e78c4517879c0e498ce750f81d720afdd63a31328584", + "regex": "." + }, + { + "hash": "cfdd45a911dcd45273b028e478b9b71f24981d8f039d966f013b765313b661f1", + "regex": "." + }, + { + "hash": "be802964801c04099fe189884b77d22704c4a54199f0e3de74bb7d881d25c4f2", + "regex": "." + }, + { + "hash": "a619f23cd228277e1f7657acd6dc8388e15ef3c816851721d8e620451ce755bc", + "regex": "(?i)^https?\\:\\/\\/megafunobbyallnewcodes2019robloxgames\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a199ae53feb07df165c4eff31a59a8793b91f5cc73740bdc8f4fcd1ea8fb79f7", + "regex": "(?i)^https?\\:\\/\\/megafunobbyallnewcodes2019robloxgames\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b1753d3db8b845bcaef3b0b6eae76f5d26088f6d601275a9fd7b812d1443a45", + "regex": "(?i)^https?\\:\\/\\/howtoturnoffvrroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a8da8e93b5ec9d431eb2268f60afaa72de93711e934d46f679736c41ee20375", + "regex": "(?i)^https?\\:\\/\\/howtoturnoffvrroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "473e13aebf370d26a8bc4aaa4ce3a35ab1d4c8eb94214cf8657b9850864da53d", + "regex": "(?i)^https?\\:\\/\\/howtoturnoffvrroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27c6eaee2ad043f51449d3d4a38ea7a90e09a17c83d866a5a84748c7a5012db5", + "regex": "(?i)^https?\\:\\/\\/howtoturnoffvrroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa69eb416e5999b5a36349e12e47b668e68b99060c08cac70ee29ed71b2ddaac", + "regex": "(?i)^https?\\:\\/\\/howtoturnoffvrroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf06684a720d48df5226af8d17faa103577f562226ad0f4e6ff49967b5698431", + "regex": "(?i)^https?\\:\\/\\/howtoturnoffvrroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b7c02bd557634f20fa1064a5af18ac7f0e021fd69e5478611e9984f7f5c6ec3", + "regex": "(?i)^https?\\:\\/\\/howtoturnoffvrroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "008dc0075de13d989a0c93db9e3e66f1da400ffb0184b368cebcdd30cc5f3a96", + "regex": "(?i)^https?\\:\\/\\/howtoturnoffvrroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9baa7abf1aef43238ad45801013328583f48f609ab7465fc6ed1e7f48fae2e6b", + "regex": "(?i)^https?\\:\\/\\/howtoturnoffvrroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1bea662ddf147ad63a6bc435b05a1409864f49f26a00e548dc1b43afe5f2282", + "regex": "(?i)^https?\\:\\/\\/robloxanimatronicworldhowtoopenfac1\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecaf9063c39b7d51869ae093a610483be794c5b0709cec691877ad0565515856", + "regex": "(?i)^https?\\:\\/\\/8robloxhacks2\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fd46665a2f38a28efcfcf1a566e0dd1b198a102c483f813806aae9d3993fda6", + "regex": "(?i)^https?\\:\\/\\/8robloxhacks2\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7b5f1f1f825512c332ecac0c1d356895204ae77764c4ebe7b9e2a596cd2e00", + "regex": "(?i)^https?\\:\\/\\/8robloxhacks2\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd5e72f27d7006feb80d31c7c28b2881644805d23660905f19d5571005869bc", + "regex": "(?i)^https?\\:\\/\\/8robloxhacks2\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94906129ad6cb62acff96841b986b38cf61973afa472c1776ebcd7bad6bbbd4c", + "regex": "(?i)^https?\\:\\/\\/8robloxhacks2\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06ba4d721f3c9faa0ef3af5ec47004bdbb3d9d0472fa7c1176b6f4e4f024f153", + "regex": "(?i)^https?\\:\\/\\/8robloxhacks2\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27de81d27dee3085e895a8e664cf186cf90835978b0f5284f3c96fe3617b33d5", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "676e1fad00723b8c5f59e84a5625ed9e8e8fbc416a3f7055f7d9795c0d212043", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9401bdc1d616ae1fd318a55e43988cceeaaccf3451b7cb93a8fa9909ce97e264", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a06571cc6501ca5e99b7fd78afd690d68dce082c24d4502ca34821a6b8342843", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44c78ab19028b76ae7e9c0a45220a9bf3542303a6cd8bb525073a01b0166d7cc", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06ee14b60839a5ce73d87801a54d7afdc7375f3cf78178abddb36c9f10c9a205", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6422b088dda057564d27ba2cbe15a7cf5a4741aa745895d2fccf106fbba2d61f", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20b62203fdbec4a8d1aedac661b3713819b1ec00764e40c4b0b9557ce87e5a2b", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a66e42fcae03142a7f792409445846c17bb8cf52cd7e3e52f759312cea809e94", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2eb2976f6c3636c412a39be81343a8f8fa6f258013f6c8feede95c06216ae44e", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1471e9f80392e0cfc154d4c53b1667bbc724104b6e2a60921d2d7afed0930821", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d89dec9a2701544b10520117fb713deb7bec480ea6c29138c9dc970a8b69cbbb", + "regex": "(?i)^https?\\:\\/\\/robloxadoptmehowtogetshadowdragon\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1104c5d0eb6a23681a65013ffea002813233183cf7c620ef83c1b32741d008da", + "regex": "(?i)^https?\\:\\/\\/xploitinkbestsourceforrobloxexploits\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12299b57775e6312e74faea8379a2ab77c706daef9b44dbb4b6561d185edb1d1", + "regex": "(?i)^https?\\:\\/\\/xploitinkbestsourceforrobloxexploits\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb94467aa6ef5a2c10ce6ad4ae428edd65eec36a825e73a7ea4d0540fe12605", + "regex": "(?i)^https?\\:\\/\\/xploitinkbestsourceforrobloxexploits\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57aa1a6d740cf83586b11832cfc02385c6fb4c671eeef0ce0b534670a30ad1ef", + "regex": "(?i)^https?\\:\\/\\/xploitinkbestsourceforrobloxexploits\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7f0fc1b679e845c23b9d48b6b8163d004af0b664ce7168a7474ad2f605ef8e0", + "regex": "(?i)^https?\\:\\/\\/xploitinkbestsourceforrobloxexploits\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ff2c081d8e3f85aab643a763c440480cdad7b81bda9649959dc39d8f6dc0ace", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94a1877242ad2bac8879143fe138cbe19f13e0da9719734bf650cedd68c587e7", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbe78ced01305848ad3323855666a5d01cb79206b72753b94c589132be837dcf", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36db9cd01c645f3f768b3b8984a2c379ede981f32a9e527939759c313ccfc505", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3870aac01cebad44f2611546c56af8e47d33989bad75ebd0efaec47068d57ec9", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea827b55172c3df93a7bbce3639088bbe30c87f5e87522fbf7e5535b3d2c336", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9356cded114266f1306aa9ec12b1a7022584026d24d9ca4c551c5d0b07a1ea1d", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db346fe8a8cf6b1f51a8a229f8705faf6922ed12323d73901628b30f1ac8ad71", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3b27ae2ead68d4d1e5682e39697386b3e0c4557933d0be5354433b59731c5cc", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd7ee101e1e8c49c5dbf2d2b8e0ea95322003bd14166e2e65ec83ffad4e9aad6", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a14c7f6e863a7f492a57f78d2a41ae2a0ea80f6b5b2d00cd3c9707e05d4fe5b", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14b0c09453d69a08deddc91239258cbf651adbb40bee6c4396a71371aff87643", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac82d5333f382256d8196d0c016d22ddfe183c6cc7f91a5bf4ab0abd462ac435", + "regex": "(?i)^https?\\:\\/\\/robloxfishingsimulatorcodes2020\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f41f92bd918ea2e1876645db61c45057b4e9ec9d3b47092e2e5e790dbf4adaa9", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34428de9779e1d09a8e5619ce60ee23169742f361b7138e1b94edaf16d238b8d", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96f75797ea2df4754a46030e645d6fb98a8ab85af6e24836927335cd2824a7f3", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c3e5aaf66b40fc2604859392f9d748bc2a0ed78030f25868a7d2d365f0fbb2", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31c443eb1aada54528a4de138d306b7a9ce71912ddda67dde9e69c73d1c0e9f4", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e69a08a89b133ca717b476236cb49dfd23f2f54dcdb50e6ceb1e4fa495413650", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da13216bf066341021b2d1304f06f6b0d293fa231de60b5b6cd46ed5c9604587", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cb9a0b22bcbfc6b7f6f70d4a4790bc54146db3a458ab397bd0d555d2110453e", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13eb6b6c58d825daea3589aa943e4498e998d69a49d0978ba837a1fb1ceac95f", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f56d763727f17dd0f89e7359dfc6dac335bf91f30302eeb45c1867b6c9a36524", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d097b337c91ed50c1abf9540b5238e3c68b8af7b8562f482cb74ad604a9ed3e5", + "regex": "(?i)^https?\\:\\/\\/rainbowsixsiegeonroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "772bc6a10fd502cecd38ff8369e42c1dbb01326d016ade8b43129f58a1290b2e", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7f92cbfe706a79391fb6875fe2550d13ee762ae4b99db7874e057a63e12319c", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5796c96304f12678aa32cbd6b823be2b544b2e37c4bf6842e9e65b60eeac4cc", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae477b79e379fad562b6e09f8dc28e02be9b50f0aacff29878cb70a44e29f089", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76d3a309c0f2dc3564722cfb4cd3c5b7334cee56c8a5bce34271c77958e8658c", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "163e563a54b19ae6d600c652be22c6066fe5bc53f27dbf5b2d223dda1dbab3cc", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed8ceb101c699e19b8d659a2f990fbea88a2835e236af356929d84bd96e7de04", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf6f58548e663b8007611778416d8c71bcd58588cf578821b31c22fca7fe9fb1", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4e1017fa8af494584b4669dae30f913bf09b66028900d37be44a89584a310b3", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eafc671b3ca992770de5510cee7a3c5b0195c30c66e2217792d77429a10b778", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfc79eed62699fc4813d80aabcb9c5c42fb28992227a7bf341885bab7fd4d8e6", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71651d57b9a06eac384bdf9269c96830b555139c1d9d56f57d1a651e81ca442e", + "regex": "(?i)^https?\\:\\/\\/whenwasrobloxcreatedexactdate\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94d6a55a5d50b077ef69312031bb86cfd2e2a50422592e4ffc21493d1d813248", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aad899e5aa5b5d9341fddcddb685d29768a73f8a58a1aad4e889226689718560", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e771493171475b479d2a69eef3f6b6438d840c8b4c4ea34be12bec6ad9b65247", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf92fe485ea44adddd1c554da0ebad333139d53f34dabaca553d35636daa415a", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c77e1262e84a0f9c00fabf7c5093c311ad6a642f9429507807c9ed0963e1beef", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65232a51bf1794b1740357b4935ae90591b461bf75a7c5de1eab349994673b5b", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8146b77292dd56c57411a93560da92a7831af4c3c95d652df9008e05578252ab", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd5c5a9de6cffaf8e7c82ee38e672a35b9d67981a1b68b6d399a02a079095d4d", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24245de954899a247ee85d54afec934d7e5771fce740770170a60bfe486be15f", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab64d012e1cd834660dab51faf2117c738e63ab6c975b253c88615d29e7ef9ce", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffa9a3869352f915962f20e4935bd18bdff7b3c68fe08b3b777b7b62a6fa1ea7", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad159726f48e3c3de91c1d0c0a4a52f8c1baf4a4c59e1690e91e1b09fd633b55", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4597a7816e554190fde8223cf3753044e750dd4778f5f1642ae8db4c0f591461", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "752a248952938b210bbad391e4b10e34216a0955014cba0a57912a48103013e1", + "regex": "(?i)^https?\\:\\/\\/robloxheadlesshorsemantoy\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "003d8a17e30e736570e4550884679cec53144409a49ec7ce4322b407493af829", + "regex": "." + }, + { + "hash": "4573ba875d8afbe320ea46a78b48373b495c08245956f342f2751c01e6d01cbb", + "regex": "." + }, + { + "hash": "9033cfe423eec4225297e190f9a19b0a8189250c9e0edce0249e3acf04ec2db8", + "regex": "." + }, + { + "hash": "3fba905ae4ecd3d3ac1cd1e49d70d83d99bbe63c9d9fbad1ae5bdd62c5bb374f", + "regex": "." + }, + { + "hash": "30d6ab69db0d88e4bd7c7c0516f0d2f58cac0277074be88b1781f5dc6a604776", + "regex": "." + }, + { + "hash": "35f8ea8de5f74bc0b1be3fd9e094d190f52c40cab22b7184c89d8175d60c9667", + "regex": "." + }, + { + "hash": "9f1f84531829ca5404fd4f16113d00974c6218c37225a469f49b2a707c077864", + "regex": "." + }, + { + "hash": "d8b4edac1d5eeed38b6f07ee320499744c18ef0be1cc3e5eee886259e7db65a4", + "regex": "." + }, + { + "hash": "95d806503d12e7ed05356f81529f3b5a895235d6605247c23629cef37d2f95aa", + "regex": "." + }, + { + "hash": "a0a75e4d8b9e847067a36763ea8e20dbb1e87a7b2fa20dec9e3c341c64b5d534", + "regex": "." + }, + { + "hash": "7481cb194236833a708d001d03bd0d64f646e1ad7f22d456ada16ed15a7ecdbb", + "regex": "." + }, + { + "hash": "aa3a58554568a014b4eab7e02e6d8e15c310f45ffbc25519be147ba86c9d9079", + "regex": "." + }, + { + "hash": "d0e84da6b46b815054c0b484a54e342b5936ad011b5b843722561155821ee9ad", + "regex": "." + }, + { + "hash": "b4d92caf23981f17120e3d1506376d21f30dc3f1f7b55ab1abed6c0e0644c847", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e82f581efa53cc0320e364b599a2d12f9e0938fd300bdec5a83fcd765eb542d", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c768769159436e5b65ccb3f1dbeb2d0ff038a60ecb82a36e2940e8ad63577298", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cbed23562b67c5b3f251e76a024d249b40a2a4121be67de1cce26b1417a560f", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05da63ca2a56e3f077bdbe7c18d3c4207915b7e7952f96f8edafefcfc6b3a909", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8085ce860614fe9455e4a879f739ed197802f6ea35f06467ac37163291c88828", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d7a02545afc682e1959f07cbd25f1e5a3cb4619e6d1cfe1ce58e023ba4df952", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "691e7aec825a420a0c2bf9249859f906765ffc7cc7b36b47f616ef49935436b1", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "291d287b379d8687a010121747e8c5ddc4add77761e1926eedc13c761dafcb5c", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2297a872f9ab109ec28d0e79a6a3b418fb7f2a4234ae9c2bf85785b9eb73b309", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1b879e9c6cccc42410dbb5751f651fd1c4a522b5a396986c1850a21a8eedd9c", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce70007c69ad42037e6ea13feb6e1e60f96d4475173a97af3238fe05f0a1648d", + "regex": "(?i)^https?\\:\\/\\/robloxnvidiashieldtv\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa61d212f9b929db70cd0607040c0e82fa8ef2a8fc162fb8d1621840ad087f0c", + "regex": "(?i)^https?\\:\\/\\/robloxanimatronicworldhowtoopenfac1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b51738352d479eab9abdbce253f46ce1853889bbe5bffa82d2afec3cd2c3b09", + "regex": "(?i)^https?\\:\\/\\/robloxanimatronicworldhowtoopenfac1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c3d16aa3ba62e2975650aa2c2975804c8a57ce7298a7dc9b2584df4691a889c", + "regex": "(?i)^https?\\:\\/\\/robloxanimatronicworldhowtoopenfac1\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "631a7df99695cc13bb009f2918929f40461ce72091d5415f17a93df849c6ad1d", + "regex": "(?i)^https?\\:\\/\\/robloxanimatronicworldhowtoopenfac1\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd73ef0e606f0c04b7845df070731fc2c3598f34ebe58b6b7280fda4cf883c59", + "regex": "(?i)^https?\\:\\/\\/robloxanimatronicworldhowtoopenfac1\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3c32228728c220fbab0a04cbf2ba0d1de7360944e7a2753f8b9aa1c325936c9", + "regex": "(?i)^https?\\:\\/\\/robloxanimatronicworldhowtoopenfac1\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f214bce0244755f2ba7b61daf363398e34a4ac192067e5ebfdacbed59d1ca6af", + "regex": "(?i)^https?\\:\\/\\/robloxanimatronicworldhowtoopenfac1\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e0095e97a9a60d7584decdc178838a4463bab32107035c041c82e2535d5549a", + "regex": "(?i)^https?\\:\\/\\/robloxww2roleplay\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "570e32d2c0da4a2b8879f0f8a3fc001e9237cca6fa0e887b3a3bb42d505134b0", + "regex": "(?i)^https?\\:\\/\\/robloxww2roleplay\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "351119b33c04afd3f3b3693f0cad1686d26732271164e8f449ad56d84b6bc62c", + "regex": "(?i)^https?\\:\\/\\/robloxww2roleplay\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8331982c45fdf7814489df5726390fd90468b74a0d39511fc1559a67672aa38e", + "regex": "(?i)^https?\\:\\/\\/robloxww2roleplay\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa8cf867f1188f28b64a07943716e5ee6c8f6cfd297dd86433e9bfcea32f5acf", + "regex": "(?i)^https?\\:\\/\\/overhaulroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33cf0d85016e8e1c2e3e157b3df45f7e657f472359cdbd1bd08099ec10150565", + "regex": "(?i)^https?\\:\\/\\/overhaulroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd5bf2ee3273ce0f116e6c1802d3a73c00ff1ed671aa269c765945904fdda726", + "regex": "(?i)^https?\\:\\/\\/overhaulroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c06bfa375ba61db5ca9bf7e48e4bc98a17f9dd7cfc2f8e03a4b09cf5dcd2a69", + "regex": "(?i)^https?\\:\\/\\/overhaulroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f5e87ff3cf529b075c158c27a3df9d8ab493e3df7d0d32c268e9344316d05f9", + "regex": "(?i)^https?\\:\\/\\/overhaulroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecf107d957734a8c2697bfd3d7a57c3e41deb413cdecdb11e507280706c264e0", + "regex": "(?i)^https?\\:\\/\\/overhaulroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bde76a08d5bc37eb377f6a06afb426504f55183e5403958a3afe4881bac599f2", + "regex": "(?i)^https?\\:\\/\\/overhaulroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "115c64ea33f37ff75b935980344e1165b5422cfb263f36eaab08ab4e27c43db9", + "regex": "(?i)^https?\\:\\/\\/howtouserobloxstudio\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95de1efed60a1a3886d747a76fc97148e6705f34dc3bb637e9b37786e5b13b09", + "regex": "(?i)^https?\\:\\/\\/howtouserobloxstudio\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e82e0f00d3e6a1001b8ba95990f4d32a80490f78d2596b522115e2ed7bf321b", + "regex": "(?i)^https?\\:\\/\\/howtouserobloxstudio\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8434def3955e153bf182f98a9630d63f62194e8a62f1a21e78352aa61e910f7d", + "regex": "(?i)^https?\\:\\/\\/howtouserobloxstudio\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44ee52ccc63f3f15e032c09c2c4734cd8cb89f98a0afe822a0318ef648083b5c", + "regex": "(?i)^https?\\:\\/\\/howtouserobloxstudio\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "492b0fb94d5b47768793e0cd44ebe680c92464c1a821080d724ee4d607625176", + "regex": "(?i)^https?\\:\\/\\/howtouserobloxstudio\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "762f9b40c11349b9354d4e0d384ebf7925e2cdf0d332205e1b392f949e412bb4", + "regex": "(?i)^https?\\:\\/\\/howtouserobloxstudio\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fbea81e82a9a2a7aab3400edb19b92777f5cbace51dd6c5da2364bf51514349", + "regex": "(?i)^https?\\:\\/\\/howtouserobloxstudio\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dd0377802c01740fce2cf1a74569ca77a1abe720371346a1464d108ce16fbcb", + "regex": "(?i)^https?\\:\\/\\/howtouserobloxstudio\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71812ba7e0d225d4f7c20608bdbf6cbd63cf92bd3d9cbdf83e95457195cc23c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tela\\-instagram" + }, + { + "hash": "9c8abab3468d37efb07cae4e05396dc3dd83900afb68cb754ea05c354544655c", + "regex": "(?i)^https?\\:\\/\\/robloxmusicidforcopycat\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99e45fd5c88cb20aa59a9894c4a2433f7b88cc14546181e72b6ef49a5329222d", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80c1eb41c887783830e0a7043137e57375fc6d3314eae9b41e24c60c097ee24f", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f89dbe9551354fa36de128f1e5d1a9cf1ca65152574dd14e9445264f0fc9f273", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1aeb1d9aa373ca03b71f2a37ba7257c5f45a8662a39e7a8d776ccaf47615a8a4", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e364b516183c0c6d9be2f27f0c93659e76dc762b306df7343961f7e47a45d6", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93d2d3badee7440057e2f68417a80954f45390b8f2a0e6a2ef504045221924a2", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de9ae215277bf70110307f055831c7e31b4d9469d1804918379de9c9cabeb7a0", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa8f46f87bfc4efbc5f64f89071da68aaec8bcb648adaf6d7726c2b1b3f3aafe", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7672b67f140f0d780626936227bd7b2c169c0aebf4670fc9f30253f7a41bec", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40187740c43651b4f27485c179c003b7dbd581a455a72c77a341e9d533cde4c0", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7ebbcd38c60574a1f29ead2419f9aeb8e5a6adfd37473bf66406e78895e4734", + "regex": "(?i)^https?\\:\\/\\/elementalpowersimulatorcodesroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "230183b5c5721cc444d2668125739c52881b31630be1f3311a26b7cb53c12f01", + "regex": "(?i)^https?\\:\\/\\/robloxtheworldrevolvingid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ef92c45e4da1eae4a73cd7bbad08e22c9bea4cdf11ddab358e2171f5bea7f90", + "regex": "(?i)^https?\\:\\/\\/robloxtheworldrevolvingid\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31574ea111856be2d25ee653347d5b09bfc2167d26bf526c10ca4a50b79124d5", + "regex": "(?i)^https?\\:\\/\\/robloxtheworldrevolvingid\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0642037320e95465a8f7053273ddf3e4b7e8c465b1834a1131a30d82691b386", + "regex": "(?i)^https?\\:\\/\\/robloxtheworldrevolvingid\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "596693c47b1f747fc5d0843335043e6f4ed66c127bca3ef1dc4324bafad99669", + "regex": "(?i)^https?\\:\\/\\/robloxtheworldrevolvingid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ee11ef6bc6e822b2d29791837dc61de8ea13014224b46cca2d2df24e406ce84", + "regex": "(?i)^https?\\:\\/\\/unclaimedrobloxgroupswithrobux\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca8c7457be945d3bac4d60b3e124cb2b12483483abd330df2311e848996774dd", + "regex": "(?i)^https?\\:\\/\\/unclaimedrobloxgroupswithrobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c67ded0b055ee8cb4f66326fb28f2ae1beda08f67413f45f632ffe1948b9df18", + "regex": "(?i)^https?\\:\\/\\/unclaimedrobloxgroupswithrobux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b91f16e2247116fbce5a23e78027e7810b871171919158d8678a85d478d2420", + "regex": "(?i)^https?\\:\\/\\/unclaimedrobloxgroupswithrobux\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2239b65ded04c631bd89f312845f1484149574be304a3b75c07dfb0e11489ece", + "regex": "(?i)^https?\\:\\/\\/unclaimedrobloxgroupswithrobux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6153cb9f22b3fe462ee3344496a094c5e495de1c6d0bbb6e94ddd7ec9185908a", + "regex": "(?i)^https?\\:\\/\\/unclaimedrobloxgroupswithrobux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "903d1eb0dbd575252e8cea2ff2555aa98b7f88c00b44b45599cdac4ee1e26593", + "regex": "(?i)^https?\\:\\/\\/makingmywaydowntownflamingorobloxid\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90e1e477fe92f171b4cec23cc6910732c6e3df7075ec86d5ae2bfdcec2ce3490", + "regex": "(?i)^https?\\:\\/\\/makingmywaydowntownflamingorobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b43ec406c190de5da848c6855c8510bd2dd5fe32871b13f28267de0fd53b2044", + "regex": "(?i)^https?\\:\\/\\/makingmywaydowntownflamingorobloxid\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5534fa57a73bdf4a4c08c6bc2abece965e80ff9fefbf819ac338cf6032cd34c3", + "regex": "(?i)^https?\\:\\/\\/makingmywaydowntownflamingorobloxid\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54e90580a0ace23dea9588d2cd1215f611ea396128851fd497c1fee781c1b61", + "regex": "(?i)^https?\\:\\/\\/makingmywaydowntownflamingorobloxid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41151f2b5c809d857e05666fae46ec1c698cf42ea123e5c44e83a2f8ddfe5dfe", + "regex": "(?i)^https?\\:\\/\\/makingmywaydowntownflamingorobloxid\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78093b5559f23e8dbc2892babca21163bdbbea48280239fa4580e7b70596f9be", + "regex": "(?i)^https?\\:\\/\\/makingmywaydowntownflamingorobloxid\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57d231774cf941b6e04301f807142a35848fe5b48351b46c437eed79a583f348", + "regex": "(?i)^https?\\:\\/\\/browngirlhairroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a2d7bbcbf6617f70e784e9459931cd8191c115a2ebcff9567fbf9fc07c57b3e", + "regex": "(?i)^https?\\:\\/\\/browngirlhairroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d67b311a14f824ccafc6129337bf59b06c65ac149cbbcec8b501eee1c4c31ae", + "regex": "(?i)^https?\\:\\/\\/browngirlhairroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79882b9f6c17040643ff65477e15e5ccf247abdc0b79e6684314aca554c33816", + "regex": "(?i)^https?\\:\\/\\/browngirlhairroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aad8c9938ff1e072afba782b4024d1ea3b7f29b11a8020c6c2e3481e3578ae55", + "regex": "(?i)^https?\\:\\/\\/browngirlhairroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "545aefad95afabd960f84d92bd11d59462b1a5f2801b1612b8111ef0b528b0c0", + "regex": "(?i)^https?\\:\\/\\/browngirlhairroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb1605f282b7ad24e62a697120ff42ac8e4da2ed16db018405d4c1a5f8c57ddc", + "regex": "(?i)^https?\\:\\/\\/browngirlhairroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47be334a4204ae7b7b6733dc8a391084001ee6827e6f70060eb3f69132683440", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0236e597f0aa637747f7a119a1f7cb93fde2899b38d2c3675edc70994e2526c3", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e34468d2f40d9f9db327630465a0d9c4904b366c9330d5d196fd602bb9d5cf13", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "911f6f72614abf0d982f1b7421d4076835bbdf30af5f893caf6a6adc9a3ad9ca", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1751aa53a094bd3c89664d406f9edfc371c36ef150fa4b9365b23973b63b9477", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e60e3217a14e106b7830c3eb6bf0f2b4980eaf3417cb9699a2078fd024aaf0d", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4328e87f842581c202c184b7767216bad345fee2cc1263298a6cb9de899e0ed0", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94043957a2bfc15e9a2f2d66bfd4c2d89bd2bd580e0635e66a0db772823dd479", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f412302dec8290d35f2145818b133ccde13207825a90b5a07491ccc8b40231f0", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "414504e20ca7ee56115c7312c5fcd16f060365ce75c757cff4b7344526fa338d", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aab3da52f11be6b65f5cde8d8fee2e7625eb530a0c9b042517fa6ba83849ad2f", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9ee3f3259a322ae2e28a62ad310975fdd362cc7a1b4ddd553587000e3a3fe2e", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxpianosheet\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fca86986072f2fae394c2bc1fb28fadbaae99c0c7f461373b291878910b20cc", + "regex": "(?i)^https?\\:\\/\\/robloxwildsavanah\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1617d9026cb7ad1d9b9932e4446fca79074851e04e90c162a7a5f88ec89d6e79", + "regex": "(?i)^https?\\:\\/\\/robloxwildsavanah\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "585c5477028620247e305477f7a8c5f6e4f4f4d9210ce3b1548b123bacc42f8f", + "regex": "(?i)^https?\\:\\/\\/robloxwildsavanah\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e0a4ae123314f769fc76bd06241f8a402693635056e7684d5a4c930dadbe63b", + "regex": "(?i)^https?\\:\\/\\/robloxwildsavanah\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96fade7394c4d1ca091c08c7f370e2c9644f0536dda5966c248ff10ccaf769a9", + "regex": "(?i)^https?\\:\\/\\/fontchangerroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "959d403dd1c7c002c5e0df5732a208009196f9da03bbdda16c7892bcf9f9ea6a", + "regex": "(?i)^https?\\:\\/\\/robloxslayingsimulator\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "742bd0d16198b7ffd962bdfeeb23101182d9c8aac89ca4ec99ef4e3d8893e6b7", + "regex": "(?i)^https?\\:\\/\\/robloxslayingsimulator\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b74660ec72d9c5863c03eae8b6629151313e7c39fdd972e9c120b852627543a", + "regex": "(?i)^https?\\:\\/\\/robloxslayingsimulator\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8b85234d593fe0ef8e0fc41c4371e4863c06904e23a0beaa997aa0b8fc5ce52", + "regex": "(?i)^https?\\:\\/\\/robloxslayingsimulator\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be528a0b65eba83cabde4786830321773f8a6807606e94fb5066b46f00708fbb", + "regex": "(?i)^https?\\:\\/\\/robloxslayingsimulator\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b398779c312f75ee17543687614492640b8307153a281fa3ae581ac7dfd3248", + "regex": "(?i)^https?\\:\\/\\/robloxslayingsimulator\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95de5256a594aea28f63c5f18ab6d4b46f2b0f51d14a9702753eb152ed2c4d85", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0994f6b766efd5c9f5d19648faaba20dd4193e44d3975d3a9b3012589e9f7cc3", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e511f59881d5589b64cfdde96cd401f70cc7e788f7ff4e7de7c507e9b8aeb993", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d725bff4a73af03275ef57bcff40a437c0c342e4f51c84dbc338a1a8d911ee7", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17c6459eb99dffa908eae70d9fa4b44b4426b4ab5ae49399e5f3b992d02c3462", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13d3d084a722c0e10ad24c2e5c4cbd5b39612994b91318b22b2cbbdbcfae57c1", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd216578781ebc6a80a1874b07f1584bcdecbd6cc08a68a58db984b577383c7b", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f903e62be4f1e7e3f15ccd61cd602ada933cb73e8b81eb1a00f4896f06abcef0", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89f87b7d57201d8bb8d042ce33bad808aaaf626fb7c94c1816b295e70db0f630", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c0a50d4c28bef25b0349b3037036446f4b1e01d890df8e261b713c28994cef6", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "054ca105d42e33fb9afd92278b70b704f44ae0b398f79802c67d26184a92e6e4", + "regex": "(?i)^https?\\:\\/\\/imabananarobloxid\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a41956cf9a31f49e7d731120ea17be3f3828e646df76825db12cf41139910633", + "regex": "(?i)^https?\\:\\/\\/cubedefenserobloxwiki\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd28a4a0b860b979b67cfc07937ed03769b180943ccbe68bea3180b8b76acaee", + "regex": "(?i)^https?\\:\\/\\/cubedefenserobloxwiki\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b481ba0564863bfaef00b12f6cff36bb21a6cb21732b1f5d9cebf69ce421da3c", + "regex": "(?i)^https?\\:\\/\\/cubedefenserobloxwiki\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffbba0fa3f2ddca106bb29f49f4bda7252c5ef71df47a19f1218c04b85398a48", + "regex": "(?i)^https?\\:\\/\\/cubedefenserobloxwiki\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18a1f4ba61f5b45333c5366386e6244ed3b2f80fe2390d3359c3f72cd6fb3f00", + "regex": "(?i)^https?\\:\\/\\/cubedefenserobloxwiki\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de7906959a05ccd41c5a7d48b84c9f4e6d9b4570943f43ab3752fecc0432fc0b", + "regex": "(?i)^https?\\:\\/\\/cubedefenserobloxwiki\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be5226afb5499b57f142b93d54ef53f1f4d57db56f5769d2b26595dfdd178341", + "regex": "(?i)^https?\\:\\/\\/cubedefenserobloxwiki\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9404d159e908b707adf679c14f9161ca67ab3d7bd96dda181b8ce8285fd02182", + "regex": "(?i)^https?\\:\\/\\/cubedefenserobloxwiki\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83fab2da27945004e31baea695ba54fbb0b6bda5d93c80c8f2356edaca509752", + "regex": "(?i)^https?\\:\\/\\/robloxcodessurvivethekiller\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d10a65c7c87a5e855838e9d1642264da5f11f810e43d854117d315ea66f8fe71", + "regex": "(?i)^https?\\:\\/\\/robloxcodessurvivethekiller\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9ce2971ade5acb7edc6eca32d0d8b0fb6998b08ef82dfe06c0823df1861f8e3", + "regex": "(?i)^https?\\:\\/\\/robloxcodessurvivethekiller\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d90e7caa60f549150ae0d05db71d80683bb09919656bb15134b9b9545bf8371", + "regex": "(?i)^https?\\:\\/\\/robloxcodessurvivethekiller\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da03db8f813e5d22cb93b6f5cf72cbe85bfc6e0d55ffcf3ce76177de019424d7", + "regex": "(?i)^https?\\:\\/\\/robloxcodessurvivethekiller\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44135626aa0b46ea84db601e0b546188a4aac2ec8fd58533bd0598d912f8ea01", + "regex": "(?i)^https?\\:\\/\\/robloxcodessurvivethekiller\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dbaa6a25a06512f0f36472609e614d557be4ce06ce2fe452efd274ca0d0be86", + "regex": "(?i)^https?\\:\\/\\/robloxcodessurvivethekiller\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afe530dcd2312e6ede3462bbbab95e971f93bfc074c612a53c15d9ba46389e11", + "regex": "(?i)^https?\\:\\/\\/robloxcodessurvivethekiller\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74e64d05fe4052a40fb639f520ce4e6bf999caf2effa52750ec89a47612302ef", + "regex": "(?i)^https?\\:\\/\\/robloxbusinesssimulator\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e95364ef4bc84caa479264ccaae2307b78394da9379f1f8cb1ff0ade769d503", + "regex": "(?i)^https?\\:\\/\\/robloxbusinesssimulator\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88fc12174c19829dddc83134040dda36c90d2cbfd21373145ea66b44709c31ed", + "regex": "(?i)^https?\\:\\/\\/robloxbusinesssimulator\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acdf52e9b027dc634382d3e78e7a5b0b3b95b46f212afc4b3e95174a8ef92216", + "regex": "(?i)^https?\\:\\/\\/robloxbusinesssimulator\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aefe1918081e2c07ae200e4f2da9a07ff929374338b4a286adf2e64daf1e6e8b", + "regex": "(?i)^https?\\:\\/\\/robloxbusinesssimulator\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "728de6005c6b81662bfcb446acc80c8b4b1bb883d39df389f35e88e178a09c30", + "regex": "(?i)^https?\\:\\/\\/decaybokunorobloxremastered\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbaf2e1237b17023fad0f7730a5860113bc442701e3c692d13586e026110f5f8", + "regex": "(?i)^https?\\:\\/\\/decaybokunorobloxremastered\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9d8c78ae6ff86ba1bac650391a88808851e6797648da147257f65cff985fd8c", + "regex": "(?i)^https?\\:\\/\\/decaybokunorobloxremastered\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d454cfddd650e88e8a0f041899d3b91295d1883dbbc0f5c683001aa39d75c39", + "regex": "(?i)^https?\\:\\/\\/decaybokunorobloxremastered\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ae65de43f46c99343837f2cd88957b12a04146dec60695e77d3c9301307e90", + "regex": "(?i)^https?\\:\\/\\/decaybokunorobloxremastered\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad623beeb6b09ec2f30927dbcdbe522aa137aa0d76d7139757eb71d3c82cc86b", + "regex": "(?i)^https?\\:\\/\\/decaybokunorobloxremastered\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c08f97a1329665fb475b56084480f172479fcbb01f12b17e797d867c979f0e17", + "regex": "(?i)^https?\\:\\/\\/decaybokunorobloxremastered\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90d26c6751c8d0a8207d6758b4ea437ad75d308567b742da14afd9bc351ab688", + "regex": "(?i)^https?\\:\\/\\/decaybokunorobloxremastered\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f95649005f2e5a88729893c972ced9cb768827f302b44fb4a33ec115ea63c610", + "regex": "(?i)^https?\\:\\/\\/decaybokunorobloxremastered\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fcbfbcf37b04772d98d5ba6a63f603cd1eafa15202a46c962d36249bfd2f1ac", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxid\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "faa0adaf798956b888711111df93d881d4b7f74499556fe5cc37dd79ccbc51fc", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8db85d544ced6287b9cffa0ed442409192339ba6a5fa11a0a2b4e29c9f360a79", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb9d5d6009bfadf80d81b996a966d6354167d296fa45a87f6f463394226a3f4a", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxid\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3ca944fbd5b518fea010c21a5589bb092a77478fabf344c9ac4eb1f21ad2973", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446794dea4619359f9f7a9aa152f1e84c69250d7bf2b26ef544fe6f226dc71c1", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxid\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b37cc5389a664d71648e8e65e290e8c7d4ae1ac0f791e57cd6681d308f712c12", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0975519e9f8ba6e8512e76639e55f03580e7adaa05115f71e91319f077acc46c", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "800cf89b450d1e6ce5e46862c9e32fe31f84ba142c6ef6425a0f7785fe3f7eb4", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4377d8ae84913f50569af7f787fcb12f6fb963e1b80c2c0fbf094cef64451cf", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f227c415ec9cdd23f4669e4508a18a1ca79498fda60086d98582ccabc9bf0173", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12d4e90db7e354bc52480264dc95730cd849b94407b2e01e07a6a7f37e822137", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5e41ee8088f3786ecad91a8be21324f1ea14481e592cbdfab23ff96f95503ea", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bc75fbec0c195d0e766c81fee09781d77ab4bdefc809cd2e79da5502cd38fb5", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5112527acbeb52e2220b80f2d7dad491220600a01f77350b5b7b5e4aa99362b", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a426a7e02f90cfe23cc103901a00c5d0eccd6c9264c757915e4671eb60cb88e", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c138af6f9e390d190d9643fa101bee218462e1e1a8d02b4acb94ba3bb73bf8", + "regex": "(?i)^https?\\:\\/\\/robloxrestauranttycoon2codes2020\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "193cc5231941a83448f02e0dec32be1f5f53bad7cb7f0453c2aa87686a2d165e", + "regex": "(?i)^https?\\:\\/\\/robloxrestauranttycoon2codes2020\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2439aed322b0ec480c5de697fb9b69fc53e2811a401a110992943369cf1d866", + "regex": "(?i)^https?\\:\\/\\/robloxrestauranttycoon2codes2020\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6f18ce5a4e67aece0f0fecb7aeb362afc56693b44d4d241670193f77b044c86", + "regex": "(?i)^https?\\:\\/\\/robloxrestauranttycoon2codes2020\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01c5ee53d8ef57efb3ceb7070d7417fb008eaed493ab76da95d272d7d6ab4dd8", + "regex": "(?i)^https?\\:\\/\\/robloxrestauranttycoon2codes2020\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a12e06547d8468388a78740f755693eaedb22aa1a545d3d1aba32fc167028bb", + "regex": "(?i)^https?\\:\\/\\/robloxrestauranttycoon2codes2020\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5859a5fb72be155c6be497761573bc42ba4ece7a7d47ed72aa824c3ec562c18", + "regex": "(?i)^https?\\:\\/\\/robloxrestauranttycoon2codes2020\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba514487e3a64f47fca4959ecef5252ec02a2cfdf5c3116390a90d39549a8092", + "regex": "(?i)^https?\\:\\/\\/robloxrestauranttycoon2codes2020\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe08d927da974bc86159cc0ad5f7f366a99980265d9a07dac848ea7bef00643c", + "regex": "(?i)^https?\\:\\/\\/robloxrestauranttycoon2codes2020\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c9416a9d7fabe745154055457dd3f8a29930622595b482cc8d0e0ec62d0a83", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52959067d1da67fda08335ce52ae3099dc1aa984487419d8258a77f1894787d0", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b654482e9c9b1b6877c13e9817a1b73cee4cc7f3743cd0ec9cc1f891d29fe8ea", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2c74041699478647ed163d92a1266298aa141d33d8e075505047c30287e87eb", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "134c8f79f8db3a610b858bfff7090aa309f655b45fbe888b293c6aec0caa1ef3", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf97fb3b8925cf92f632b44e5ec345563ee5744fac454b8101e02a3a9908cbf", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a614b53aedacd2cf7a124277ac049c82969a34f635aed365291925f48db0f322", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b06b860596090d37eb9736dc7308708602a60493051f962d91f0eb6511625db", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b1581b5940e78dea594a86d8043b26d5292adff0eef45209fbe20d3a350a163", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cb75282d2b9c24882466e5c6872d943f48b86db1b0169f9a0e554108fd66f16", + "regex": "(?i)^https?\\:\\/\\/melaniemartinezmrspotatoheadrobloxid\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d8249cc2e78dd6d1f8aa9989f506435a515509f5cc3e58264784cf8b2caf1d1", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6052a244709841fa01922549a9372a3bf99a0a65474846f709a9ddf55beecb4e", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa09db55808ce467ad4c84160e5cce75c9b9530878dde5ff965ab0c08e47229a", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bb859e1b46f4daeb0573b8a6c73051a1d753cfdae713eef382586bcaad1ae94", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b770c4259602b4166c3ddf3fdcb8a1bb1fe1b30228550d877e3ec4ff7c09181d", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b195340fd8871aa16c55d1489bdfd8ac690b0c42f2fffe8ff4395dd1e76807b", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "298ba698d669a05485abdca4d84ea3eed8c0e9bb693b7820e01807394d20f6db", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2d6dbeb9af7b0c7db8c5e540a2d7d24335043b7c19897182f58ee1635cd4583", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0d140480f256a9b0f7092605cba08f887296ebf3ff9fc95135be2c49b9fbf8c", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d85c25ffb7b13c21ebf07f3ee83d90ce714a0fbf73334552ab0e726c93c80ce", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f17ecc185d45f859475d6a2baa6855b83c4a6bcdf06f9f2bb8a97a0314e9e51", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df948482288d5738734a8fe756575184e77e02b3e34fd77cd34b420173db7076", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90d1f4e6c2d69cd48ea6de4a4a5f2f2a851f43fb7dab854844da8f833e48c78e", + "regex": "(?i)^https?\\:\\/\\/howtoredeemrobloxcodes\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa233647eefd4a077a180e90bea7dbbbd8ed892fb56f42078d33e6cec70ec1dd", + "regex": "(?i)^https?\\:\\/\\/robloxrpguncopylocked\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23902e7d1188ec5ca345c8b177d4ee8738cf4a1aad02521129a183b3fb5a3660", + "regex": "(?i)^https?\\:\\/\\/robloxrpguncopylocked\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aac410601028b29633195632e45257247a4bf1e526619247c5b3400507917eb7", + "regex": "(?i)^https?\\:\\/\\/robloxrpguncopylocked\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3c8726ebcec11b9b7b8daeac74661d3b9dd417c15c5abc035edcdab1e1e8675", + "regex": "(?i)^https?\\:\\/\\/robloxrpguncopylocked\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a35db5eac986b344fc00262c2f2653183d892ef2c5d1dbb74cbd85f6ff057d5", + "regex": "(?i)^https?\\:\\/\\/robloxrpguncopylocked\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd018574caf7f971d4dc9f69f225a8e2bc9e2aedd9704f06d34863daedec1491", + "regex": "(?i)^https?\\:\\/\\/robloxbearalphabob\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc27ac776c84bc43abbc2f4608acfcdcbc608e4eef07a98c7494a804380d3f58", + "regex": "(?i)^https?\\:\\/\\/robloxbearalphabob\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "916b9f5812dda96a22e8e60a1760f14ef74526118eba733845367e75615bef16", + "regex": "(?i)^https?\\:\\/\\/robloxbearalphabob\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44ee4ca5c1583b611d9b7e97da50ca4237bcc00a126100fe14d16a407bddecbf", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d89460be8db1aeed007f24bab48e0713a71d93ba2097c1c59150509bdcb81f9d", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "226bc785361aa8319c8251a5cf07b139d86abfe14fdcf19711d4d7895bf05db7", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d5f4b352a6445f179b7fa1cab4abfd3df2daf94d82ad2e9f397d3054a2190a", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21e13f5e47d647329d571b7ec7586d5406f431e9d598cf2f150f954ea80b21e2", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8dc6c3c5f4f01f60a8068e8a776fd3ad2189982983bc0f1cc453207fdc63ac73", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "606b65f444e6a663ab487f8016eff425abff8c9b8577f2cd9711d5a691c6eeff", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82f0da53add52edbc4962b7c8b65460de52b54259c50d6dd58f49200506b8703", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c612a397ad6ea3bce3eeeef15c7470a216c326c9a52ff3d45a0f2f9a7983736", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "323cb2d10485c5a0d10b5a8cf6e011d8b2e1c2ff3e532fcb0eaf8a2cb410a0eb", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "641dcb1a1ba58c856046c3b878838d8e23d00846a61ccc24a7a9bbe3b0c3f2f3", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99da98257c64e91f4771942718383ef55707a16422a1007543dff1debad428b6", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "665a677d63e161e6713b9b472360f6f1ca48b5ea7b6a1a2a54c6a5dec063098d", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffbd9e6c3e28921cc690532327bc25b91e1809e9d99e65de812174d445d5e27e", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24ce9ff3850c4463e1506d2cd09b3c268b2b55d16c05ff60e0b42b192bb72abe", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4607e5a2b1ac208096529d2dc55a2e0e97cbdd1df48e09749455f990f3004881", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7918bfcedae8890fee2a0285222505b06f45c44cc189f490787b6fae27453c09", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e73aeb61bb8516199d0aee5811de8388d2fe37fed4917037a380e0004279be8a", + "regex": "(?i)^https?\\:\\/\\/jellyandsannaroblox1\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "339c1981a9eb4774d21e02b0dade474222159bf48f67661aae428e88571597cf", + "regex": "(?i)^https?\\:\\/\\/jellyandsannaroblox1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5c1a72ca147c60bb456d75a88564ecfb759e7b4f717c1f38938d7908d2748d5", + "regex": "(?i)^https?\\:\\/\\/jellyandsannaroblox1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34080820128f5b0c21f16f816481216b5b9f10476c3bbafbd59ecca96958f8f7", + "regex": "(?i)^https?\\:\\/\\/jellyandsannaroblox1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74fc68df952d81d633a738a5daa78abb2d868753a984e2b150e9643a95ec4b4d", + "regex": "(?i)^https?\\:\\/\\/jellyandsannaroblox1\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6e9e521d4026da1600d170dd40f2e128d78859e0c8d8a514ef37460a8e60c48", + "regex": "(?i)^https?\\:\\/\\/jellyandsannaroblox1\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7dce32add48bae7a8fd2e4e5d9a7ff52e425693b6968ef1ed50807ffaf6ecfc8", + "regex": "(?i)^https?\\:\\/\\/jellyandsannaroblox1\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3690122e61b5f97fda456daaa784ce317953f95bd2ae6720e1a0ca7eaea0d48e", + "regex": "(?i)^https?\\:\\/\\/jellyandsannaroblox1\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a43e0fa50599779d80233cc136f2be6264bdc694bb19af83944a248f84ae7e8b", + "regex": "(?i)^https?\\:\\/\\/jewjitsuroblox1\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49cce422fd5e71c29141ff77ca32979bd26b6949e156b24fc27fe5939e4a6706", + "regex": "(?i)^https?\\:\\/\\/jewjitsuroblox1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "010035a9ab59fee2dfa39e8b734afb759606f71c1d5fc8cd013d46e1f31573e1", + "regex": "(?i)^https?\\:\\/\\/jewjitsuroblox1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb5914ea381ba012be9ea23d6e4f006602e415ce87df3f330711b294111a4705", + "regex": "(?i)^https?\\:\\/\\/jewjitsuroblox1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ece106a83d532c5a66ed3709434e34a2c1c43798fee90d193fda22f0a984441f", + "regex": "(?i)^https?\\:\\/\\/jewjitsuroblox1\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbd2886f1bf36abf5eb53af792240082654a9efce16f46bdb412c2039d552107", + "regex": "(?i)^https?\\:\\/\\/jewjitsuroblox1\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f43b47f6f66889929ae5fcf8ea114880f2429fe7b04667cc6c9b409f366b177", + "regex": "(?i)^https?\\:\\/\\/jewjitsuroblox1\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86d3139e1c9dbf116ffc6aac2d96b1e093ca302d6fddb121519f3230e6d1276a", + "regex": "(?i)^https?\\:\\/\\/codigosparasobrevivealasesinoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627fa88e71cabbd272ab2640fc5c488eeff756ba811ae4924927b2914e5d3ce8", + "regex": "(?i)^https?\\:\\/\\/codigosparasobrevivealasesinoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5793396eb474a3de50551e5b1fdb53c4151eacd03580b3090b154fe112257ab4", + "regex": "(?i)^https?\\:\\/\\/codigosparasobrevivealasesinoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+QDtqtNcrccXSDpQjirRvh1sWhn1dgBfoOVfLpUAN1b4x[\\/\\\\]+15n3gFBxF012DPa3MU1okVOFxVS0HjnswFC7TYVMn2kx\\?targetUrl\\=https\\%3A\\%2F\\%2Fbeeflambnz\\.com\\%2Fprivacy\\-policy$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+QDtqtNcrccXSDpQjirRvh1sWhn1dgBfoOVfLpUAN1b4x[\\/\\\\]+15n3gFBxF012DPa3MU1okVOFxVS0HjnswFC7TYVMn2kx$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+QDtqtNcrccXSDpQjirRvh1sWhn1dgBfoOVfLpUAN1b4x[\\/\\\\]+HEyTruNRYzu2EBulUBxKYikjT7FrenVDMDXsKSfXx1Ex\\?targetUrl\\=https\\:[\\/\\\\]+beeflambnz\\.com[\\/\\\\]+privacy\\-policy$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+QDtqtNcrccXSDpQjirRvh1sWhn1dgBfoOVfLpUAN1b4x[\\/\\\\]+HEyTruNRYzu2EBulUBxKYikjT7FrenVDMDXsKSfXx1Ex$" + }, + { + "hash": "279fa1570714c717a7488965f3d1e084b95874cd2a71b10be9b09a9036ec88e0", + "regex": "(?i)^https?\\:\\/\\/security\\-page\\-community\\-standards\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af074269928bc4a2765a26fdfa11056932459b8a6f61373663ec528b84bbb6a6", + "regex": "(?i)^https?\\:\\/\\/security\\-page\\-community\\-standards\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bce8740074dcad5a42c28f0d65c9bb1625d6b291c66d295116456bf1fc607ad2", + "regex": "(?i)^https?\\:\\/\\/security\\-page\\-community\\-standards\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "226bda5d4fd6c704228f45657f45086e0e29094b926476f4681635f41e2fa4fd", + "regex": "." + }, + { + "hash": "f72c3c0f289df3d3570b129b2b661ef9a31e69ad9fa3a4038ffc24dc528f4e27", + "regex": "." + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+lAtxwBtp3Uq6bG1lRrsp1y7dBYlJrKhhbux5xcCRjiwx[\\/\\\\]+3nvGWEaO41K8cs2ywSgrhURGxGbDRXjVyDwVwP15IsMx$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+nDZNdz9vQr2OzTb8P6sove0TExdFW24blSulJXidKSYx[\\/\\\\]+3nvGWEaO41K8cs2ywSgrhURGxGbDRXjVyDwVwP15IsMx$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+QDtqtNcrccXSDpQjirRvh1sWhn1dgBfoOVfLpUAN1b4x[\\/\\\\]+3nvGWEaO41K8cs2ywSgrhURGxGbDRXjVyDwVwP15IsMx$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+HdAGsQ4Qxiex1ppyyCMxMgoNqsxZYyJ3GQRmW7H3hOsx[\\/\\\\]+3nvGWEaO41K8cs2ywSgrhURGxGbDRXjVyDwVwP15IsMx$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+lAtxwBtp3Uq6bG1lRrsp1y7dBYlJrKhhbux5xcCRjiwx[\\/\\\\]+3nvGWEaO41K8cs2ywSgrhURGxGbDRXjVyDwVwP15IsMx\\?targetUrl\\=https\\%3A\\%2F\\%2Fbeeflambnz\\.com\\%2F$" + }, + { + "hash": "460d5baa298b4e2b0124e1141c0fc742d98eb405065f9b1e83b42fd233f18f38", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a70ab9dccb68ef707b7c6b00fc62e7f9b70cad429fb19e2b077b3a80a0ec9ba6", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06a056d693bc98567aa165d34c0871235ebbc1b4069b66cde2ebddd904829242", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af7da9d5cef5de1165a2ad993de2b484b01fc2cdefa153fdb67161366133e039", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aec2328a9ff1c10464cde14983a929a51a523bb6e699603b40a07a69efe1a1a", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f8dd4f0517173e2ab21bf8417388832b843077aee40cd9292bc3225d6d8c60b", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "444a1afefad3b832e678097b67172f08c081961ad06418091f9d153c5c22ea70", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35c24c5882a201401947ac40b0326addcba7d06d5ca0624f868486b183d27e23", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d077c7f25e4bda3a1788c6819dc72f889410c3715f04298dec185e730896319", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7d76c6dd2cd0728f230ffc0e5c9d080c821c50c64ad980d9dc07a854895c979", + "regex": "(?i)^https?\\:\\/\\/dragonadventuresrobloxwikicodes\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c208432439f7fd42e64927e5c09f595764a5d67214c1001c07b0611d06e58cc3", + "regex": "(?i)^https?\\:\\/\\/novahotelrobloxgroup\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72eafaec669a2a8bf891c8123bad7eddef91a261d13b745cafe917698ede6cb2", + "regex": "(?i)^https?\\:\\/\\/novahotelrobloxgroup\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f42eb3a17a6e97f1ce5b490512e880d2562ed53f1dc38e3a80a90f427b0fa2e3", + "regex": "(?i)^https?\\:\\/\\/novahotelrobloxgroup\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74784ec6fae39bf1c2593e0c32d60e7067c6d87d21db801da0fb66e5dccd7c3a", + "regex": "(?i)^https?\\:\\/\\/novahotelrobloxgroup\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68b21c8df926756a67b0bccf4c489d25897fe7c30db48070fa8f564bc03ecd57", + "regex": "(?i)^https?\\:\\/\\/novahotelrobloxgroup\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "055d82787deaf604a696a6fa3d1a2cec3dbbc5899d78e6a69554bcd0537415c9", + "regex": "(?i)^https?\\:\\/\\/novahotelrobloxgroup\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f97132b6ca2b49f8b13d281d95d31e64f4c18621d107f94e3121ca31333e30a2", + "regex": "(?i)^https?\\:\\/\\/cheatforrobloxmoney\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67759e5e56a19e87abbe9469f7a96c1d24f2d073f47bab5394c68eb16ccd17a5", + "regex": "(?i)^https?\\:\\/\\/cheatforrobloxmoney\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1229b8a5c48cc8183a0c6fe09dc365086d55a2bf5512ca6219bb41fe56f8ae1a", + "regex": "(?i)^https?\\:\\/\\/cheatforrobloxmoney\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9947e0d85fbb1d48fed85705be5cc11294241eba53ef1a228631a2edcc95388f", + "regex": "(?i)^https?\\:\\/\\/cheatforrobloxmoney\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42f69fef1d3d918a7e104f4b2adbdc1f094ad03a21416669bce2065ce333eaac", + "regex": "(?i)^https?\\:\\/\\/cheatforrobloxmoney\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8c654490601449e95448b9a2427427c4f2abd73b022c73149e8afb1d8da0795", + "regex": "(?i)^https?\\:\\/\\/cheatforrobloxmoney\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "756fa05153c0c65ee41e26d625769f65b0ab977bcfaf77a8a69897a35bff234f", + "regex": "(?i)^https?\\:\\/\\/cheatforrobloxmoney\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a48c21df2d50200d0f31a3ebdab7543e1291955afbc4dd848478eb47094ee3b", + "regex": "(?i)^https?\\:\\/\\/cheatforrobloxmoney\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae145bdede315f4286103c985f952b81aab230f0d8e469d363ab5f91a78ff12", + "regex": "(?i)^https?\\:\\/\\/cheatforrobloxmoney\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d685d7225f8124dacec412bcf7b819684cdb47c97ad0daaf9408f75599d316a", + "regex": "(?i)^https?\\:\\/\\/freerobloxgiftcardcodesredeem2019\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84f709913c8983a27787d225eabcc1609159d9ac74ad49e2d0ef6efd491273fe", + "regex": "(?i)^https?\\:\\/\\/freerobloxgiftcardcodesredeem2019\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "226a4cfcea4f2b048adb6a5db009039a7abbd2e339a59e1a5b8d3d9c7c2f70ce", + "regex": "(?i)^https?\\:\\/\\/freerobloxgiftcardcodesredeem2019\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a948602fb1f499d54109616e6d6a79ce8cec6a5f413872535f7d1840e872ea9", + "regex": "(?i)^https?\\:\\/\\/freerobloxgiftcardcodesredeem2019\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad896b1ae9067135226096d1b65fa09db0588e57ec1de2d4e122b63bbeb4bcd7", + "regex": "(?i)^https?\\:\\/\\/freerobloxgiftcardcodesredeem2019\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "676e98ce26f4eeb76462a67e5f7724e9caa459a937508998b9f6fa16951651aa", + "regex": "(?i)^https?\\:\\/\\/gamesrobloxfreedownload\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1243cf461bdbdd8bec191c4960311d5fbd7a7a7e745a63cebb7cf809ca792430", + "regex": "(?i)^https?\\:\\/\\/gamesrobloxfreedownload\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2da19701a9ad5a5b3b5f5214fe5d7b725f2affab76fbb6d81f2d1f4df978f6fa", + "regex": "(?i)^https?\\:\\/\\/gamesrobloxfreedownload\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6acc55cdf40091025c48e07b54eff5f632b6de2bb929a0b19183793724e145b", + "regex": "(?i)^https?\\:\\/\\/gamesrobloxfreedownload\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4e4a15a5d040df357769b7a3a2eacd82b8a08e4e66d0836a96c00ab601ff6e4", + "regex": "(?i)^https?\\:\\/\\/gamesrobloxfreedownload\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b54965fa389ffcdd87ef68904fdf9cb798fe5b8f3ae925e26ea3a1f2512a57c", + "regex": "(?i)^https?\\:\\/\\/gamesrobloxfreedownload\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "449ca649fa77b0f3acd77cdc0c4a7e029e434a229133543643471d1ee04164d7", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxoficial\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d089a06f8cf450d31862a885fca7626da34b3f81064580c54183319458dc4264", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxoficial\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c7194c594de8930a336249b3d893afafcd164c45cd255a4bf185cd5ccd1a411", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxoficial\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c987354d42eb392c1d9403a4f9e3019328a9089ccd5be620556b6749ba663d22", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxoficial\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "632daecf67ba2dee4d53f5523170379b9e5d06e1f94bcd4a4df011a865f7f024", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxoficial\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f923604688f2f2c658045fc0478fde0f36d3f43df1a9ddc12672e3baca73e6a", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxoficial\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d64aeb6cb8824238f8e53ae4710bf0a3944caf44cfa2d084eeeb5bc380ae9de7", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxoficial\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d253643fb8ccb9af9f4d87eadd2d145a0bee155bc238a8bc00433fdddfadef5", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxoficial\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386ac6ea2cd696a0518fc6bee3aec4f83f4b0cab12d0ff5fb703902a7171adec", + "regex": "(?i)^https?\\:\\/\\/robloxhowmanyrobuxincirculation\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7637ca940ee90686f29fdb1d876c8c53918be71948591fe86c1d3a14a72b403c", + "regex": "(?i)^https?\\:\\/\\/robloxhowmanyrobuxincirculation\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "454ab5f67fd353f20770e78af7904cba0c0ac0259ab3b4c4bf321e04ec07fcc4", + "regex": "(?i)^https?\\:\\/\\/robloxhowmanyrobuxincirculation\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2855ef889a2a01fb47e92100da66dd842968fc3e7c3328f56e25cc4f7195a28e", + "regex": "(?i)^https?\\:\\/\\/robloxhowmanyrobuxincirculation\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae26f4fb04eebf11c617666cbd6ad62c4a44f1c6417e865e2a7be8518de87b92", + "regex": "(?i)^https?\\:\\/\\/robloxhowmanyrobuxincirculation\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c45facb5493cff9e2dd56c89b7b45ff758369fc75f6cd63e6be9a59cebf57bb5", + "regex": "(?i)^https?\\:\\/\\/robloxhowmanyrobuxincirculation\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a929d2c724505d8d0ff020c93cd0a2121b5eab0553a350efc549b0fa9fe6baa6", + "regex": "(?i)^https?\\:\\/\\/robloxhowmanyrobuxincirculation\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "550a9d2f2ac4853df4625b092e471a514d67f3309b174ac7e678d91c44bc6a46", + "regex": "(?i)^https?\\:\\/\\/robloxhowmanyrobuxincirculation\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb525805931b215e3670bd5dc205183a748b6a886d6ad1b2929fd9c8fcdfae65", + "regex": "(?i)^https?\\:\\/\\/robloxhowmanyrobuxincirculation\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44657a1c5bd46d11ccc7667f4870fcde20f28d766f1fa4269de9124d54509158", + "regex": "(?i)^https?\\:\\/\\/neondiamondhackrobloxpetsimulator\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4ae8ff3286be121b8c7e63c4eb8efe662a902a42f6d435cf73e63cfbeae04d6", + "regex": "(?i)^https?\\:\\/\\/freeexploitroblox2021\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dca2e201dce33fb72141f9a4399dc672cd96d33b8019abb3cf65f6b69fa6a10", + "regex": "(?i)^https?\\:\\/\\/freeexploitroblox2021\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9464307bb9a54630d76ea26a46fc2a05b101ac1be2cbbdbf0fa1b0e9c83125b7", + "regex": "(?i)^https?\\:\\/\\/freeexploitroblox2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "771dc6d017194a397e321740d89dd272028ed192be0be7a6ac4978291f737067", + "regex": "(?i)^https?\\:\\/\\/freeexploitroblox2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "626fb71efbb41162024d5e3e8efac58b300f3604bf9f3987c464f83f0f12aabc", + "regex": "(?i)^https?\\:\\/\\/freeexploitroblox2021\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0bcb6dbf6af607e4d205af54293ed84d016a77de6ca4e02b7c3e1ff5fc27f15", + "regex": "(?i)^https?\\:\\/\\/freeexploitroblox2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9f26c52f228696a78c3b10e14e83bf57d0ad1cd22993a58104920a4c76582b", + "regex": "(?i)^https?\\:\\/\\/freeexploitroblox2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5025b54121595bf1ee3d32c89fdd903744e8a66f255164da29e567c25aed61f9", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9766b82d8a1be4e63078562557c8fcf80d36551bdd9446a397b4d4d970ab7599", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5a4aa95c6302ee519bd4a9c1ff406332c6b144adb02f150bb8e4997115f044c", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "206c8ca824f5f398084bde8c824ae9f7516d0599a781373208516ca9496142c8", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3e5707d381dbe8088293ea68ed6ec589300be512487956c0248919f29a0d8d0", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658d07fc53c46490dc133f4edea35d140fb8b3b43e9f2d2b17d48b6d2b21560b", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a43cefbd7682546855ee17d4f31e16f6a403ba7aa12c5c810530d2b7e00de00e", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "697375efeac3d405603dfe30abd70dd7c0fc95739959f9d4bdd9696ab62e77fb", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e95d10cd21d47ef2fe8ec79cc4c6db54d2703a57fff8617bdd1f3f97648449e", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "843aa7b2edf68f983f264d4babdec6f22f7358e70281f55989e556c19b3ffd61", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxgratisquetemocarroparadir\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a368cf228e9f991a635bf7616792bd47398e4a42180166584da4a6e519e710f", + "regex": "(?i)^https?\\:\\/\\/robloxclassicstrikehack\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e2a3c673445ebd1c292143b20ff9ec0634b71910a387d08902b57a55abbfbbf", + "regex": "(?i)^https?\\:\\/\\/robloxclassicstrikehack\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a714afaf8582141545df3500a90fc8ab691607c1c929ef83191d2cab25f961c", + "regex": "(?i)^https?\\:\\/\\/robloxclassicstrikehack\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a94a8e95b9debe7cecc95cc9bd28f8207e09b5a454000fcd6bf20faf1a4d77c", + "regex": "(?i)^https?\\:\\/\\/robloxclassicstrikehack\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d38607974ad34db10923b1c78aa03cd8ddc761602d1c48575e0a1613edeacc7c", + "regex": "(?i)^https?\\:\\/\\/robloxclassicstrikehack\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84778615ebe6e5547e0ac2a86fe0391dc4ebcd5037a79495054812103cf9e8ca", + "regex": "(?i)^https?\\:\\/\\/robloxclassicstrikehack\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c797ccb57fea05436f150f1cc019dec4d376e2f2118fba501901253d1862cecf", + "regex": "(?i)^https?\\:\\/\\/robloxclassicstrikehack\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7be73076c8c7011d52575d945cce2f1ae5a9159d1efae35de94add05082cceb4", + "regex": "(?i)^https?\\:\\/\\/robloxclassicstrikehack\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b846f87ecdbf6a94c13e7fffee2824bbd685c1a022f4ba7b0a6b7947d07d718", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0baf3e7526580306a140d71c4fef823877314db3a06088ca59a452518fcf292", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63fc51ed97c37aa1568947cce861556a7ebeeb7a82ebbc5b18cff64ccfd9a723", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0329cc177cc3c694ebb887ad5afa9503ee0a782289e0708bb4fde46463697eb", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deff0e5ae0978ad6ba56ea8506cd81e27e964a853c685b259d0cea01b919e693", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f9047f17c8655175ecdb69060ee1656d12bcce435a473b47c8d6aed5141a78a", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61dc6d4182e4daa539c6c245ed21494b67fb0296441852a234921fb38d4b9170", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab9db2e5c91acd31bac9ebbfd6fd644ca5fd719c5ef5e30b9e2b340619a307a", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd8801e0c1af39a09579cb5a52533f12865b38f41b9a9850ba33755e5948df5c", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cacd48fc69818a753966851400a2b36a43f3b26d8ae7c0feabd773598d55f44", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73338605c3eec5029d61376e223d69cdc163a74386b0d05b00d84b0773e19eb6", + "regex": "(?i)^https?\\:\\/\\/musiccodemarioroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8aee62a882af13378db0924c788e82f9eeb854006372c82cc7551127a6450d0", + "regex": "(?i)^https?\\:\\/\\/jogosberoblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efcb3cc0e3105720119f46c84e35c84476a2771b73ebfb90a4f9da86389a821b", + "regex": "(?i)^https?\\:\\/\\/jogosberoblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94f20d5413002c6b7527eb793b8ab5144b619817334e04b36378a8466c13a96d", + "regex": "(?i)^https?\\:\\/\\/jogosberoblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54e76b403e1547611e1175b7d4b8e789d37d58426dbb4fd7debe5736a6afd7ce", + "regex": "(?i)^https?\\:\\/\\/jogosberoblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09c978520b8e1f2e96b282f94e8f31b54e708aad259a0917e4fe404f80b21fe5", + "regex": "(?i)^https?\\:\\/\\/jogosberoblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "117cc54a2c4b167c6101117aa4b2289f7e1955ea8c4a6e5a61eccba6ff9eec7c", + "regex": "(?i)^https?\\:\\/\\/jogosberoblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa67751c5554bd755a8a90599545b99a1e59ce825f1dba20e00dbbcfd78c9db1", + "regex": "(?i)^https?\\:\\/\\/jogosberoblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e236224801348f0875c4bf380e5b2c79fcd83d3855e01970da405e39f7aadbbd", + "regex": "(?i)^https?\\:\\/\\/jogosberoblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b819d78ebfcc414e3f3618b2f3251f4332e093684a72620c3d717a4f9e55e5f", + "regex": "(?i)^https?\\:\\/\\/jogosberoblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98906fe5119de7818ac98887b09479c22da8e8f85f96ff94ef158608ebfd7329", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eb4e9d73adfecfa74b78d967c120000c2c3393c3625a090efadaf561466f581", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32aeea3cea380c791f4b8f22042e42ee5d671e6a6b4f8a7967824c8c54860307", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2d463e6f476e4f93a01bbd4eba7f1c47d978c6ebc0c1b961d50063d55fd5282", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d61a6c7a100017d7949df7e865583e8521774e7ece891442765f783be17d19a3", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3585ddacca8975f12e83688a7e0ea13481559bf8027daaa86746a8b935199529", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58e4ee97dbc33f7eb497292018761b956533c94b9f4e15783c57223e4fe44a66", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "381975a803926e3cbeaddd41094ccc0b4128dea7cb861c341ff8c793790db987", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8288fc16357ccce94e7af10dd099d3c085841c48a5e0aac2d448437bb81ba5bb", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7ff74dc9653d7c2a9889523165562661ca78db4bbb01e4913218778f6d42f7c", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24e5842b159588c5b4664e6c6059f38635f9a6a7ad86f4f2e7849dc22a9dd466", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a5531af6f0eb8c56465f6fa9502491cdbfb669d45d590824079782a7da28c28", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgameusingjavascript\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52344a36dcd1fb79fc8e2ec3f8a935f4c13d613031284c198c2a9b11de68296a", + "regex": "(?i)^https?\\:\\/\\/contasricasrobloxrichacccountsrobux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03974e6b8d33bb2ea25a3de3f5c21f97d0e3c569fbea2faf8c115e693eb1ab02", + "regex": "(?i)^https?\\:\\/\\/contasricasrobloxrichacccountsrobux\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fb56971a62ceba19cce53b6d08a01d6dfb3a1d415d65e9b885b1667b708ec8e", + "regex": "(?i)^https?\\:\\/\\/contasricasrobloxrichacccountsrobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f27dc1984ebc697d2b1be1cac1f32700b4febd85b368b45d85f84f64f2f162b", + "regex": "(?i)^https?\\:\\/\\/contasricasrobloxrichacccountsrobux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9041248c87f702d36aa3854c79ce0a0fa782ff3d90d108f25927f2f798748518", + "regex": "(?i)^https?\\:\\/\\/contasricasrobloxrichacccountsrobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88ab602a9db9971be9985f404b830c0cd30111c61272287f2bdbb44df60e874c", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneratorhackdownload\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea0eb89fe08ad03ec0890a16232d698b52e6507d600b8cf8194dcd9a26489ef8", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneratorhackdownload\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c2e1168cf3ee55da66af5c48d9d19a340978cf78d38078f1cf3f9096a7c381", + "regex": "(?i)^https?\\:\\/\\/howtogetanyfreeitemonroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abda0bbf6215edcc4e7207697da9b9e5061c0338caeaddabb4119b96692cecc3", + "regex": "(?i)^https?\\:\\/\\/howtogetanyfreeitemonroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "976e49a120e11c4f0b82c0442a593d294b263d4fec2cdda02729a18cb0c01aba", + "regex": "(?i)^https?\\:\\/\\/howtogetanyfreeitemonroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d23b4acaba5745067e14ffc436b1e09e558222c491f1edd84ae4a1bb417ffc67", + "regex": "(?i)^https?\\:\\/\\/howtogetanyfreeitemonroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebe8d77410f94ebe8cdd164cd6e060c5def80d7c668d390ff75aff89bc9c9ccd", + "regex": "(?i)^https?\\:\\/\\/howtogetanyfreeitemonroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1015982fe28526b6291b5e1c7dc5ebeb15992f816deec901fb70fa0f4ce0bf6b", + "regex": "(?i)^https?\\:\\/\\/howtogetanyfreeitemonroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a84983e9d920ad9c35127e55982f694ed5931c6320dce724dbd89641ed87bf16", + "regex": "(?i)^https?\\:\\/\\/howtogetanyfreeitemonroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48edd34f6d43315d3962156159b767348148a96cd66a946e10518150bfdd655b", + "regex": "(?i)^https?\\:\\/\\/howtogetanyfreeitemonroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e889815e3770a382b0c364d5b5ce0b57c96cbe08582d2eb1346511467c23ab3", + "regex": "(?i)^https?\\:\\/\\/codeforminigsimulatorroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83107e577f044f743369f6e6641d487c0ff0514e55329ab1325d0388453dc203", + "regex": "(?i)^https?\\:\\/\\/codeforminigsimulatorroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "467359cdaf15cb595182808c880ad9944e3e60f5e3dbb26757b71b8621c6e8d7", + "regex": "(?i)^https?\\:\\/\\/codeforminigsimulatorroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6af0bfdac23dca0f2aba895a4aa66d00827bc0612f425a8ec963d00039af58a", + "regex": "(?i)^https?\\:\\/\\/codeforminigsimulatorroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94d62c6a52d44e59cb6c849bc10dcfad4fd6095ec18ff7737ee5ebe419a28e34", + "regex": "(?i)^https?\\:\\/\\/codeforminigsimulatorroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c6db7c298bd2292e4533fad0a8a301072db70089f949b12c044591b687866e8", + "regex": "(?i)^https?\\:\\/\\/codeforminigsimulatorroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c63d05f2c9dcd5f0cbb32f75bb58381d6b2a2597b9577e14a05a60ac2450e8c", + "regex": "(?i)^https?\\:\\/\\/codeforminigsimulatorroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f64b2b6b2a6b8d4a1184497b89aed7ecbe08f16c7fd3b7bd2174165cedf712d", + "regex": "(?i)^https?\\:\\/\\/codeforminigsimulatorroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96ce7f79855f9cb61bd55e9981435cda333b5969ad711b8ca6424a676c1456d4", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparaiso\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39da1e3f139139615ca1a4f6e9d1edbc229599e4d767d0b8a61438f514e32005", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparaiso\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54009ece70a36592deecbc5b40214a02fd917185a34c7dba866c286c45899b9", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparaiso\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e41fc34dc6dfbf158c25451d374a8e964914b77ae80db25b77bb5e02b2fad52d", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparaiso\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfe4765f4781ea1b030342a868898878daf4382a5a1e9a1da79634ff1a90137f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparaiso\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00077138d8bb74b520da375481803ad48c2792a6a084d174a4b2c50e16f5cf90", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparaiso\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96cbaafddef556e0811864e01a5020747858446ee3a943ee909f0406b77481a3", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparaiso\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10d6e0a3069da17542cf0836b3e4200199fa573cae1092389f050cb2930b4d9f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparaiso\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d86a2381b3f15309038603a1181cf71911823999e0c7e082606b7c392e1d830", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparaiso\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "014885fbc4e12450734d1132533ab1371983ed14a669895bf48836aa55058231", + "regex": "(?i)^https?\\:\\/\\/robloxpapercrownshirt5robux\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23f262c00345d5ad7f89822ce0df29d50cf6519e3b0682fd03c6034a14ebc7b0", + "regex": "(?i)^https?\\:\\/\\/robloxpapercrownshirt5robux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0340b6f1a3dc08b249a4b063679cb87bab14e18585d7443030cbaf0734404525", + "regex": "(?i)^https?\\:\\/\\/robloxpapercrownshirt5robux\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de5f588131569ad9d45ff98e79a23725b7bf3e14a07a5677ff4d46f6a2550672", + "regex": "(?i)^https?\\:\\/\\/robloxpapercrownshirt5robux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb29744c647f4a6fc719b23912c174f92d1cb507a014ed32ebbc1aa9e9aa4f61", + "regex": "(?i)^https?\\:\\/\\/robloxpapercrownshirt5robux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "665f3b273eeb9643f48f7cb208910462d51da8900e6b5a61a70ea77796db80d8", + "regex": "(?i)^https?\\:\\/\\/robloxpapercrownshirt5robux\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a12fd2c940066c718caf3ddfdcf5d9013d35dbdb991725fb5df907be6a15065", + "regex": "." + }, + { + "hash": "27bbd0bfecc1e66db21dab3fbe68c78f4e38f273bced7d70781a47744f80a6a6", + "regex": "." + }, + { + "hash": "c7f2e586b6af0d9535026033badd734ab2970f12ad3a30702f4d829a4fd897db", + "regex": "." + }, + { + "hash": "574c3de4594821a495c733a1d2947b2f481236f7683e20cd0c0ef870e928576c", + "regex": "." + }, + { + "hash": "d70c1b6efbd3c425281518f7f2b94e3614309cead464429a55f6d293c79c28bc", + "regex": "." + }, + { + "hash": "354fa15336786170877d86b5c75a176047bc615f860703748bf8a0f58135b033", + "regex": "." + }, + { + "hash": "7847b1f8d37d700714384431ab03b095b4bde6932eb822fc8aaa1cd13359da44", + "regex": "." + }, + { + "hash": "01e23341768934143ab393f1ad41e289a544525a0d626a1c916fa86a734ae0e3", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodes2019june3\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ddef4a90b6b1270ed442cb1418ba9ba8a6a7583cae6341d29c0e0c0d3088d3", + "regex": "." + }, + { + "hash": "1714ca15a044a372d158584a2fd0132c5efeb824ededff5f0ae4eb8f6930c227", + "regex": "(?i)^https?\\:\\/\\/recharge\\-suivi\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6582546eea6fc94e24b516d103dbfb655229f05e3ddbda0e60bb484b079090a", + "regex": "(?i)^https?\\:\\/\\/recharge\\-suivi\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37d0ee87ffd4eddccee6ba2f69287c63588c0591d96031789d23e134ba56d44c", + "regex": "(?i)^https?\\:\\/\\/recharge\\-suivi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b44f0676e7c53d486e660d269fedacb5bc5850f287b5a1f17f02474eff4da848", + "regex": "(?i)^https?\\:\\/\\/recharge\\-suivi\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb7512b8a0c050785656f4d70d6d2857b3273f454e531626f6d4199a022c87f0", + "regex": "." + }, + { + "hash": "6c062bf32bb70c58b5821252124c85ba2482e59b24ef64af8e8e2e9f56ad93d8", + "regex": "(?i)^https?\\:\\/\\/comoacelerarroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dfe7e7cbbce19996f8843a5aadbb64e4618b74b204e296f4b19137fe98fcf00", + "regex": "(?i)^https?\\:\\/\\/comoacelerarroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3bd7763febab9b5be45f6197dff088d05a8fb9942cdd6f3d17254984d5e604b", + "regex": "(?i)^https?\\:\\/\\/comoacelerarroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c12e2e40af9439d50b6bb6d54996a5ef6c917028d9a3bcfc9c0cb1227572b8d", + "regex": "(?i)^https?\\:\\/\\/howtogettrafficconehatroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c216520b320a708141054c63603c9b4d05f84c75793ef198a817d397f2ca2789", + "regex": "(?i)^https?\\:\\/\\/howtogettrafficconehatroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbd2edb5310c03e89a85edc5da9fe2caab8562aa936f65ee591ca52e9085a34e", + "regex": "(?i)^https?\\:\\/\\/howtogettrafficconehatroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a162d3c2d3cea4ba175f7447be7f6ff68493bb1c206e9e0440541b87eb6434", + "regex": "(?i)^https?\\:\\/\\/howtogettrafficconehatroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3741b77b9a94f79bf4827681ccc4b4df3e66aa3e25d2b651b5f5beae8d7e092", + "regex": "(?i)^https?\\:\\/\\/howtogettrafficconehatroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "672239c9f3247f5d0e14730e194f3883509b8a60b19cd5c083b45ba1b492c7ba", + "regex": "(?i)^https?\\:\\/\\/howtogettrafficconehatroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8995463e85d77c21bc8fb6385a664de1d6cfc79d9983b6003a62f91f38d97262", + "regex": "(?i)^https?\\:\\/\\/blackironantlersroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15945823a7541cfa3b749c1ef7c4b28c0463cc2b27cdba97148248cb6881df88", + "regex": "(?i)^https?\\:\\/\\/blackironantlersroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "858c029ea16391c6601d05585671105331cd9897514eca849cae0a56a051d9cc", + "regex": "(?i)^https?\\:\\/\\/blackironantlersroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98cd82ccce4a0f996668542b8e116eafa42898f0dbed9b4ffd57baf7ff10bea7", + "regex": "(?i)^https?\\:\\/\\/blackironantlersroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe913f45b99f2553fa17d356c8a52a88ffdd40e4bd47dec07ed08210e0298c7f", + "regex": "(?i)^https?\\:\\/\\/blackironantlersroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01796396392c3b95f223d1fae42d4c4ff17a1e1c31a5e77efd9bc7c0146ce438", + "regex": "(?i)^https?\\:\\/\\/blackironantlersroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c20bba4cc61290088643d673fc41c463f1ef6e48c72fcac231d819ff715eb6c", + "regex": "(?i)^https?\\:\\/\\/blackironantlersroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bec9c549d278f2fee638cf1b1d50894ff4a0953e5cc62fdab6147f8830beb7de", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49d9b625036c12522857be32c8506ebc8446ffce4fbce7e92dd3d8751c223726", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f2c4fce48bc1c0dc569b2b9652d6698924a3fb45be9ae919e351c447d1d84ce", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bab0e48370aca1731ada6969889f60b14d761a4291990f2eea0131f313f12466", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc212b4266a445bd09a3a91cbfe5ac0f08d0e957827f22e4d6c8b41020ba1901", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f19a2e0efe399683b7ed5f2dde9279b6aa809697b24d2afbce121d59d99cd05", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18ef6da93c545de844ae5b84e88a5783f1b4d58a820fca3a75d738a3ad619925", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fd8ed2f0fb1e7b44f995a9c9ffc1df3fa56f9e539e3d89edea8f74aa45d0c5c", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0a55b1eeb4c7d04b8f51207476288760a9de9b6edebac116fda398a406d5d4d", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da7f804209d690d4e9b31b9d7c742646c60fcf7a90af528578a498204688c8e", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2c5d00c861e065ff1cc95afc7f03e8b0a7ad38043f3b3f2702e2976416785a3", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6a0b969cc293d67adfa7411a6be64b3826b4bea7e153c44c8a994d1359529b4", + "regex": "(?i)^https?\\:\\/\\/robloxshinyreindeernosecode\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b481536d40086b57153d9384bb51616b7606832b9ae30a4eb95bf276541027f3", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0937d5b7a7602d3d4a579a85f4e48ac791e5491119d6055cb58708feb835f41", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6a2c1f47f156df9c923ad97e08b12414a9945b8f64080146e2ca35872f8c5bd", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f58995e0236cc78f1b7bff7481b93a9eeaf7aabb8e484846bbff4d06a0619b1", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb73e2062aa17890b2a132e48810b35611e138689cb019f3a8085721636c5488", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e34431ab04edc35a880fcfc2c419bfd38a7439876f7f193cce0adc691c92aff", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be9927653c2e198fede4d9b6991c6ac375637568b315c4f17d2a1c2d1c12eb37", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1880354ab847fdff7cd23c9d9dd8dda30733af7c31c6fc51d99a01903555c38", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17268a64a978dba5ae7fa0a00ebd556acfc30b8363f20fd3b94e4c6b64ace102", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8802ca1e4e09d9c1ce862c27bbb941422f57afbb898768d8a2b2ef6cdf3fe3ac", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a11d3b3f2a319aa64f1eca9a9a4d908e1e7d98accc323ec4caf6ee7fb6b3db12", + "regex": "(?i)^https?\\:\\/\\/csomroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a17282a476da7b9dd8db1d7af151eab0b81440f5c282b9878851cab874ca82e", + "regex": "." + }, + { + "hash": "0a1764316f5666a677cb11acf0669d7a8ec76a94f05ecc0944a55525420535fa", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "483a6b0c7d116f3b743cbfb27e7efcbe0ae289e9985b68005b2564eebd266b8d", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f270e3184dfebde5d7aece942168a2ea613576d7b4ee1059f0e9a01b92acae0", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd98a9037dce3447522d049891670982bb493e8e8dd00e027dd9c97398761904", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a21a1553643945512e2b42fb0d4f7cb553113a04f8553bf59c4cca4c14b0735", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "139b148c60bda25f4347b9bdf2d3f571b5f5a0ef517d53d722dfb20255a229bb", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c73ea37cc4954d7fbd10d75cadfb041da065314690399e3598188dc9f5b4ef99", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b92bda0bd782e5f31f460e6fdf40a2e45a4286b5a842df824e49edff5a5ac677", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd35056cc314b452670f4caa2722a3a7f9bea0e34c15768797f0204d26c0976f", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "488ffb9373da7569fe84f11ffb1d5249381a5cfd834fdf88043c9e3ca7ccf5b4", + "regex": "(?i)^https?\\:\\/\\/comoestarenelbuildersclubsinrobuxrobl\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c45f9acd2ae8de5d59aa46b3d7ae307e9a9fc437de1ecacf39ea74b3a842193a", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "324e564733bde22b7bce46dddf6831673b9250448fc83ba59911e1d5d1eef574", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a42e1f39e92ac52108995d959f12e7f5e90bbc23bba6b866e9ddce76ce4eeae5", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a12d79af1e9a32b2ea8313811b18b048656b6e788fea06bedf9e4f727d47bf4", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61573ccc0112125053db63d2d5caaaccdc3c3f6e631457f17299387df6b0306a", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81fd34e78654572271f28d449d92db693210a1c3ada1077581d12754353fa07f", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "031e4c00e1c8eeb6a5e1acb8696759eabb167f931c097cb37fe9368906ebf56d", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb3a07e01edb7330dc27500b33b75495414981cca74a4e74ea49f5d10f3bef8e", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abfa6b3088f588ca8d434b56f7b34af1816c7234181e52eb3fba316290bcd9e8", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a718517e4972f209caadf37c3d528d00b6bf031db9132d2d88ebb910375f4df7", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4e160ab9e4190dca5f0336f9ca0a3a7e61a7b6d495f86e2cff70cfa4ef31dd4", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f0683867a7d87cd0d338c056a41a0119947f0efce99ebcf85609221fd505570", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8edadc69f9a3f091330a4e98c2b12fc312a8502541baa6d5f2effd635656f1e", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5d2a3331752c4e29e4811071be0ac2cffe2df0f2d978884b84e7d1e6a08b57", + "regex": "(?i)^https?\\:\\/\\/robloxcatfacedecal\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec0acfda0588503ce60a8a0678b83242924ff32b89e12f37804581f3586cc440", + "regex": "(?i)^https?\\:\\/\\/robloxfastcardcodesfree\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac4f80df45bb1927acd4b2c494446f7ce9c15d2f707e81920a6788156b3eb1eb", + "regex": "(?i)^https?\\:\\/\\/robloxfastcardcodesfree\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1db5783474dfd3e0aae7e26469d66a1a9cb1e9573f1ef3c169ff62d20030a696", + "regex": "(?i)^https?\\:\\/\\/robloxfastcardcodesfree\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1420a1a1a0c3e26fc2daeab9e6ded66c5ac35ff60d75d1e244249624cb4a0a8e", + "regex": "(?i)^https?\\:\\/\\/robloxfastcardcodesfree\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "606bca3c84d8283eac6ef5f910425988b419468f24cec664145a661a9d4e836c", + "regex": "(?i)^https?\\:\\/\\/robloxfastcardcodesfree\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96b63a6497b3e1499f8adc488607f68d105a7ff5b05818006d8da156f4a535e8", + "regex": "(?i)^https?\\:\\/\\/robloxfastcardcodesfree\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db16c688b9e1322f1275be1dff1f5e0170d0efc525848aa53a811db42bea252b", + "regex": "(?i)^https?\\:\\/\\/jogodaparedevermelharobloximpossivel\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a57779c4002c6e8cbb38591d564ea0d857aca42eb1d6eba62b6c1d3db3520bc0", + "regex": "(?i)^https?\\:\\/\\/jogodaparedevermelharobloximpossivel\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "674628597fd5255b45842a9e975359060296c78b1e8563e8816d6840fa5bee7b", + "regex": "(?i)^https?\\:\\/\\/jogodaparedevermelharobloximpossivel\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c8f481ad9f7dc6f5de27b619e4af69bf9f42cbb73b6ae943f903e82cda2ffd0", + "regex": "(?i)^https?\\:\\/\\/jogodaparedevermelharobloximpossivel\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cae509ea66f86e452099eca861ccc77aeda49764d731732ace5f54ff604ad107", + "regex": "(?i)^https?\\:\\/\\/jogodaparedevermelharobloximpossivel\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b94174269026f5e62956bf5c1620024ad118b7c1f5a72b529ec6330c680898", + "regex": "(?i)^https?\\:\\/\\/jogodaparedevermelharobloximpossivel\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "640bd44d6858b39dca51f117dd1a01895013ecfd965825e1ddb9ff9c038772a2", + "regex": "(?i)^https?\\:\\/\\/jogodaparedevermelharobloximpossivel\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c03e5cb78a76ef05d0e3d7b6591577480f3c4a1a935a4000127f8336150e089", + "regex": "(?i)^https?\\:\\/\\/jogodaparedevermelharobloximpossivel\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc6a473b705ff160ab0e652db2087619c0f4d3a711289c48a14ff4391382b4e2", + "regex": "(?i)^https?\\:\\/\\/robloxcode2021robux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8522c6954d6059d2e91f9f51ddb4e725d0e49b43a7caaee571772abdd7deb8fc", + "regex": "(?i)^https?\\:\\/\\/robloxcode2021robux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4516282f93b7ba5f7fb17fc1bcd799b3d89dc0c70fbd54b3ba68811fd40809b", + "regex": "(?i)^https?\\:\\/\\/robloxcode2021robux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de8e5652286cae119a6f32f624d63c431fbd21bae6221830204c6c6d50f84205", + "regex": "(?i)^https?\\:\\/\\/robloxcode2021robux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "115c1d05cf781cb24bf5f41242f3ace1cc0504b58d9ea84215b847d22463bcfd", + "regex": "(?i)^https?\\:\\/\\/robloxcode2021robux\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "879d493dcb2ac07cf79d885a2472116a03b3ad49268878dd28fbd73288584f23", + "regex": "(?i)^https?\\:\\/\\/robloxcode2021robux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b35a39780c4e75a7c5274c3573fa0013708c313114d396aa1efc5d2b4712cc42", + "regex": "(?i)^https?\\:\\/\\/robloxcode2021robux\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfa82ae515312d51b5bedc4051cdc822fed339e6b529e06b9bf1d0af0b10a288", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33c548f38d2c0836910cc2082f3884bbf6843625c6cfb9d2ec9f8cd1cfafd871", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf15f5d7b2a4605a8967d98dc1b160c72dc383d547abfd2cea99aac9c5391be", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb9f0476983cc26edd9872866005bcf256cf2581b2c6d24d9d9eb8884e1bb911", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ce2f9c6a682b11b77efbd0c1dcb2b9e633b45c3e2f70f7b60e9aa0acd754894", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c81f452c56610568b931f70d100b8cd8416e90e904f3c0a35e041f31d91348d", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1e8357274e6d045e511d0db84c8257748acb6b41b4583ce0920a451c6dc454a", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf319799a10cb53b823ed4391f8e2ed1a5f6d0957e4964cc74b98d5dc4fe8cee", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1513ec846f579d4d586bba093a45ff107d55b5d2a236fda2447fedf0856a7ccd", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbbea3dc68451620411e9ca499a068ab293c397f903de31edbf9d5a7742325d4", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1331d64dc9b07829e448c5652ec6f59be0fde8ef32837ed5c82ab0697a19974c", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "971f28411a53b593e029a977b6f6615183202243895521575dfe061300b14128", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bde544f4f82bbc42a77732af160fef0da3a0bd20dc78c2271755e1813aadd1e", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a24b97493edf35470303f9d72de98ef52e8f11594e5464ff1e7bed1778f1764", + "regex": "(?i)^https?\\:\\/\\/comojogarojogodorobloxqueajuliaminegi\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2942af6ef3ce196d323f0564c7e672d1fab3acd9749e21979288d1142be91a97", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eb6f31ce137a1c17e4e77632c629f852e877bea82b382b00c2435ba7161e3a7", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36e4e03658dd9df80f9459c2e011adb0ac5140bb2893abbd90f02f3cca33d653", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22866f90d4d5dbb38dd3fd2a08a77f9e8fcc7ab7702e7bc19c7b43ea3fc70a5b", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "139bf060906da8136d3ba27e9ce3a6a9bf86665a0933287f93421e677b235dad", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2efb97b21f7a8401659b9ac35bc47b5e84154cc35b89e267cf0c41da142db6ea", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89184ba5795301020412651b747eaf8ef8a38ce18f2fc9ba85afa3139c532fb1", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a22f876e3cdcf7d8e86fe4e311ab874ae085fb8ad421bd6be941519a32c7343", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecd42fdfb64ffd9e1d53738919cd3f5ad879e2d5f3a6414fff15792bf48d061f", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc63a82bf4ecdde9e3a3b3b0a1ccd5cec6fc98e2673c3488408db9145154e43f", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fac68294117452644fb5926faae24f6a4d42d7605a38c78359991d5e38dcb0ff", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7e54a2fc0d2428fb2bd721b74844c5ff829363452c67d3220f5e1655cdd2f7", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3302a43ac5786337a73225b2800bb7b39ec0be535b53654530e56bb35ae32f33", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1dd95d064621ab67531306b0c4f39c5e33ae8b8885ab219811c3a80225ab4716", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d1a9660727e39a56e27de207859e1e621257e9a81abbdd153d8997909e6780c", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52beede072fb4a1541503cd3ee4cb1330b0b405d5720f4b8ba3824fa2d2e6eda", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobux2019adoptme\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "587f164ae046a192cbe82378cbb14da2c9428cd4187fe3a9478442d4de346b55", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodeswiki2019april\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb291eaaa9fe5a286aa56969437418ee303b1e4279862123089acada1ef722a3", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodeswiki2019april\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1e823224265c13eeac2ba28f53c3bdfddf863804b78e83cb5727763bc4c4761", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodeswiki2019april\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c76de090fdc0f3e208f4c5f878d166f4bd61529c434d08d9264bfb768401e13b", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodeswiki2019april\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70e836f9f91bfd900f31ceae960bd324f59a00ff3b5d893eab5266b1a8d3ad41", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodeswiki2019april\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8be0f67b37e4831ec94ebf2af330855ebf7775e0e2ae7e725692c0059403187e", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodeswiki2019april\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0091bb2695c029bab88994f67ca8efdfd3898c5e2ab8f146108e910c16e63d90", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da7519e752d8e27fa9dc2372b6177a8753c287869a8d1d60c8c01055b1efea79", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b1a8281a50b01f2f0167befa4a87b96cd8bd9da19ec10bfa6e6e4373a8f5ba9", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658df55512c795f6a955f221a761221a94e1015b1c5ea9ba8e795beafc15f07b", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0a6aa8c11faf19d94699414c7f4230a52a7cf76fc2d319aa952cd10fa6301ba", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b9131698bf67d02008752fac3e8f480467ca09e368717d3552366cf8fd05768", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e7299ddee2430ab886f95bab78e892a1dc642020851de276ada49186d9a7edb", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c4346b0b0337c280b033c1195e8e6d058415371463f5c1715cac7fbd71fa4e7", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54f4fe5380a6665f891677f9ee6e5c2b4d908418d3eb7e9841a9b983d540f63f", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c854042b0812a372dc5c9f343d3940f51c76d71ec48c75236177c1722c8ac73", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d842bde9c7088635e304135612a8b70d24279890da7055d0bdc6697a71a30ea4", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb3a211f58b27f285021c6e33fa93f40fd52a5ca89041e8ff9ce421e844071d9", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01c54b29de6370b61cf77abc1e4a6783594549853510481710e0bd3d3b8a4a61", + "regex": "(?i)^https?\\:\\/\\/robloxrover\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0e70a8b7ad3fec925dd86c294cefd6f1aaf279c48b7ce3ce00b9e769fc418c9", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b71627e492607c79bf4f217af4620e06c3cffab0a41c275073270c059c412f01", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a20a949177a6352f764e525734b69ecc0e83d31dae94b0fbd34b23f6c5a9a77", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba4d06c56c574b044003e9869baa49889026328cc98345eb1214da0fe0d5fe75", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6d50cad3e5451481c77eede696045941f1d12d81925f9eba814a74024baae32", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3c8d65afca92adc09f98b5c0d0533b97bb9519f5278e45e93c08db6490fa24e", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "904bd2bdd9c12beb03d681784a98d8dbd97a77f04e97ec6f41255e5981f47490", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "768357d64af28abb381396406c903ecc5be5c240e03e531d70bdde64d64064e2", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d45bb8f3e390af4b5fdd5ffb0855e3e080a539754ff2a94a2aa0abd217122a", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d49d168d6c145f66f5452fc61b2e5dd3c51461514f1e333ca2f6d1bff3bdb2d9", + "regex": "(?i)^https?\\:\\/\\/nommaa\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "210101b99c6e91ad5bcfd986e3a3c90991fb1f354086e735555b277f4afde216", + "regex": "." + }, + { + "hash": "2685b43a98663bb935c96420f15aaefc27d2f221bcd94df27a0697b5c3bd6bfb", + "regex": "(?i)^https?\\:\\/\\/robloxspeedingwallcodes2019august\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea8f84578ee324b6615cbf2af57fc62a4342309e4b8918f0e0b08c5621e19e73", + "regex": "(?i)^https?\\:\\/\\/robloxspeedingwallcodes2019august\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a259db9fb6f88305d7f55984f52fd10cbdb87bb9c224a928a3802ca09a0948ba", + "regex": "(?i)^https?\\:\\/\\/robloxspeedingwallcodes2019august\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6539eb80bdeee531407484613ef6e126393be388d9b7c3bbad23113c0873d45", + "regex": "(?i)^https?\\:\\/\\/robloxspeedingwallcodes2019august\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff75bdd421e66cc65dce68ecdd922d00f9f0c564ac572643a3d7e75b61be6402", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodes2019december2010\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ed0b4d76c135b98dbac275eb4e22931e4e3fb2dfaa714cc7192d5a9258b72a1", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodes2019december2010\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4d509198d2e6ac2ab5b446c705f385392f75dcafe3f82bd3cd434a668cc1929", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesfree2019\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26bc6e000f71994a070cee4d621941b3623540e07a36e33ee1c84f632f870dc8", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodesfree2019\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2462bf0dc79832ec737dafafcd58e7430de51aa84225612790f849d5dc596ff", + "regex": "(?i)^https?\\:\\/\\/robuxcodesnohumanverificationlate2018\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fe85406342c0a3ba134f75eee33895d062fe2f8609012c6acd5d2eb2db976be", + "regex": "(?i)^https?\\:\\/\\/robuxcodesnohumanverificationlate2018\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1a3d1baffa85f164138aa3a69397cea74bdce741f424d7869e683ec04b306b2", + "regex": "(?i)^https?\\:\\/\\/robuxcodesnohumanverificationlate2018\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d56ee4dcefd8551e3f9a4b7c4cc6787c906e80cbfa247397041d4e29b7a7efd9", + "regex": "(?i)^https?\\:\\/\\/robuxcodesnohumanverificationlate2018\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "040e78595d1163e0579b2302ef2bac72cce151bcdb21f27b9cfcfdba920e9707", + "regex": "(?i)^https?\\:\\/\\/robuxcodesnohumanverificationlate2018\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d46a83545e975a1aad43f95a5a9c9be00bfb4ad7633b2102ebcef65f2baedd98", + "regex": "(?i)^https?\\:\\/\\/robuxcodesnohumanverificationlate2018\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87addc0e783cf449ca9ceaf3796e0982f12681037fbf62fc4b0cb9e166a91a62", + "regex": "." + }, + { + "hash": "8f223a2cc32d1faeb2f647da95dac59513cb3e78c46237f1c1f2883fc2baf67f", + "regex": "." + }, + { + "hash": "7c81e17218d1e24ceb31e649b7400390d1615ad661368187348975aa42137343", + "regex": "." + }, + { + "hash": "b5248b8a716ddf809b8c5841b26a7afe51baafb8fd81eb1e07a222f81dbd3f0d", + "regex": "." + }, + { + "hash": "a8c376db0c673172527e5cfc9d908dea97ee204a409a3357bab2c0852e38164e", + "regex": "." + }, + { + "hash": "b2c82f95d11831322148d7ee73e0a095e58fc3528f872fb30cdd000e8bca69fb", + "regex": "." + }, + { + "hash": "e0ba48ba56471e00d6479bcac2215e71cdd738c217829c644c0a87445a52add1", + "regex": "." + }, + { + "hash": "144a02e0bf306fb98407fef363a342e57a4f3790271ea5f70396b332fd98a3de", + "regex": "." + }, + { + "hash": "9fbc4aa4b7aa303870983d4ff6c77297aab09c0a494cbaa5a55d45a427da008f", + "regex": "(?i)^https?\\:\\/\\/robloxmotor6d\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d59148aed18c82d0bb4a69944a31c8f10ab64d8f9607137422ec24a844b566f", + "regex": "(?i)^https?\\:\\/\\/robloxmotor6d\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3641bcf59756c5aaf6393fc2ca69756b4b552c7a342b2299936e40ae576cb85c", + "regex": "(?i)^https?\\:\\/\\/robloxmotor6d\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73f595578ee2c348a7f3880c8a80efbd16fa15125352afe5d070fa82f9733f6", + "regex": "(?i)^https?\\:\\/\\/robloxmotor6d\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "373a0c173aa1ce35363bb1fcf777efd9afe52dfbf7d89a95256f1f1af9d69a41", + "regex": "(?i)^https?\\:\\/\\/robloxmotor6d\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb9278b63b8d227d825feceb00ec99bcb416584c45a93538f33123e47145e198", + "regex": "(?i)^https?\\:\\/\\/robloxmotor6d\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0ca7f704bcabbc2c5f1972be55734bc5100fb814330f0e0802a9843bdf25cc5", + "regex": "(?i)^https?\\:\\/\\/robloxmotor6d\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fc4c47d309e6901a0612a75c27d30598d541affb353129e6e12d723dfd32b7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\:u\\:[\\/\\\\]+g[\\/\\\\]+personal[\\/\\\\]+osouza_tcp_com_br[\\/\\\\]+EfT5JMfBQ\\-pNvrHQH8JbCQUB2CS3cUUFby03OMbr5dGqhw" + }, + { + "hash": "85fc9e7753babb2b08c1000db93a96d07431f15b90fdff19c43548b0a8fc5816", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxaugust20191\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656cb070e9975af9794d9ac7e764dc3d6268851e8576927f4e4a69ba8b7b6b78", + "regex": "(?i)^https?\\:\\/\\/robloxbaconhairpng\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9705b5bfe5be349d4496c1c86bd7e32f683851c5400f5516ca8369c3d1a7b0e1", + "regex": "(?i)^https?\\:\\/\\/robloxbaconhairpng\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c4763d84003ad515dbd07838b0e5b1726460ae32ee8fa9eee18952f6f4abd0", + "regex": "(?i)^https?\\:\\/\\/robloxbaconhairpng\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a82d48e072f1ad3fa5f121761aedb6226d7b5720dfdd93047330ff308b56c421", + "regex": "(?i)^https?\\:\\/\\/robloxbaconhairpng\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9255a2667fca2d275c0c16e2c4cb2b2dc32b5160759774901bb684c69927752", + "regex": "(?i)^https?\\:\\/\\/robloxbaconhairpng\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd5c0f18dd3ed62fa186598ad939b70f634445576b52a73b03295bf70f659778", + "regex": "(?i)^https?\\:\\/\\/robloxbaconhairpng\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7f97cc350143fcbf0e5133b1be97ab9b6fc6f180491721cefe30dfb4d918ed8", + "regex": "(?i)^https?\\:\\/\\/robloxbaconhairpng\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d67db47e04ac3880fe64d381590fd73237f344a27133e6eb5fedc1867fc4d44", + "regex": "(?i)^https?\\:\\/\\/robloxbaconhairpng\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d2c6df720c342f24c97c1c4890bbd1ac1e37138c44fdd536dbc1fdfd7cda11a", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5db15ef01d1312b2f798f944f06e8e44be420784cda9555d1499c662eab2032b", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92fb04f47412bfd0455a61efad77b81c461f0a660492961000cadcacaa9f6b9d", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad506a1b0cbf90fcc174bc16bb4588f124e76449ab6b038c9029f2f9839506db", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd14f7aabf7647ad1de20bca2ecbc37660a19bd7e6296e370f6f0287e07b74d9", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdb7b64ae3e668903c47d10e1fdaf31e35b971b9022167967c5acde1d16f152a", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeb690c2560de23ea306e232c81d2357f868a95939bfe0acba7a9da7efa3a971", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da7a2b4318efeb31a5f785fbde2369f75a49f78e0a2b66314ea1b72b43c59bf6", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca96a15db6af1acb356621ce8af80a1b603c8d8722522df7bba4683cdd90757d", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0503aee9474b5e22910222ef6c76838339bf1f4d72a083444a025dc81b8fea7a", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "623002765246f28908adf3f2a24190ca344676f7c798f905b2a434b243bbd847", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0243baa122613a5c8a42289f32863e9a0d12916c1a168bb26d3c69ae369a60e", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00bd60edabafb67f41826574e0fb9cd31e726e9116257f0048517130c8ebd2dd", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3c413c1d2a7431c784dd7664396b9802d39574808010db143bb74d8691259ad", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a89983d8d4bfbf3dd8ab83ba8ca0d1080aac0b6f5812074f8f093a48f458181", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f080a5818a3f60a7fc386283bc25cf1d9a5fc3a56ff9be03cca6cf925082cbc", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21d5595a1da2f167c6c770a8a31b80c67a8f5fffd990232cd7a1930f2df6448a", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4ff04248c9d2ea28db3de6214e13087745ce97ff06976f0c7a70fd3a8bd43c9", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7720a54a0a488802ec69e34b32133eb46d6a49870d72c12c5fc5348378748e7b", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "570e22ba5074c387468dce97c3a81153d503455f08e01a0820e3acba03acdba8", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "003634889c3942b1ea25fa4ac6fd584eaf26b12003d46d50eb790dedf5038183", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c00a9b00c2293f178d6897344f065b9dacf6a93fa1a42e7886d703356a6eed6", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5003eb45c8876e1bcd3611f5b6712bcfdcd6b26567123879a3cb10cd7422e13d", + "regex": "(?i)^https?\\:\\/\\/robloxbarcelonashirt\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32648057b5739d9a14a3a07ff20bba9da13eab7166fa912d4c556487ee9cab73", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce3c8db547c72f2db0fa959777c6aac1e0dcc84b2d2ac4d5c88e132527c49657", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b8f2e0cf71350b6ef28c063773706b37658a6513787bba62ecf24bcc4898008", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4edb39f8e5fd10daa005e7878d3be36b497ed7253731de538163fa3cb739f1a6", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a1ebf8a98273df2fe20e67f4b122f3f2e0d2a0cdc742b34ab95e73fac625a11", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bbdbb1f9dc63b1b2f78773ecfc9e93be9fec4265162291177d36d75e6ef1d80", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b29bc8c09e6fe2fe0f754d01adb765a7bafa390e67065c8bfe4eb459d21287", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f5292c9a643250a75caca1e239b217901629072a69023699d98a941908a14d5", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61b69b81f30a918225043f39a11fdf837f070f446ef27918842836d76943e86f", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ebed6a5c704eec31cabead813395ba3aedc6c2e024adb2d2ffe8644d2fd1267", + "regex": "(?i)^https?\\:\\/\\/jamescharlesrobloxid\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba96b0d4b9162f8fb4b599c4a741bcd52eb33aa2ed936f0a4590d1b3f50f6c6b", + "regex": "." + }, + { + "hash": "7e5150acf1947771769868dc4407e6cf118d9c450af9cc0523d79cd65cad7b3f", + "regex": "." + }, + { + "hash": "b2327d54beed0bec0dc54b1fba3b5b808b80354b3fc6cf21d2b1d800fa1bc0d8", + "regex": "." + }, + { + "hash": "4c7c5b9b0c0a05731005fa16ad411a98cd9e1ae60a4309f90cb1b683398865a0", + "regex": "." + }, + { + "hash": "5bac3cee81b2c9cebfac560a37291e1b4eeb62c12079d29efb1f807a8c247c87", + "regex": "." + }, + { + "hash": "325b23094e1131856ece6e04fd634bf4c99451dbdd747e6bd60d1fd327720c9b", + "regex": "." + }, + { + "hash": "4cd86816eb85bcef4b40bdb732e8cd29c927bb9b22aef065b7c5e2520fc31a7d", + "regex": "." + }, + { + "hash": "f885f3d1c46fc4447dbca3d6d3fc8d2244177fe3269d2a6defbd62c2afea6d88", + "regex": "." + }, + { + "hash": "0b0cb7d042d3e5c12286e4f1883738414c327ec5db590535b52da4b7c04560d0", + "regex": "." + }, + { + "hash": "99478987bf13986b5255d1797d338d1aeff834fdb382047f1cef6a15c6ba1112", + "regex": "." + }, + { + "hash": "a6bff317aef733b2b2ce272ef77c18b601fd59f71da5e1c617a4bbad9316df0a", + "regex": "." + }, + { + "hash": "a73f82941ae51588f5eea42048e54c066a497a814e56d8a338ee5dbe1e910eef", + "regex": "." + }, + { + "hash": "5000f5a0c79af45489b10b62fcb74aeff46f56140d7d14179093b0f93d305d47", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57c3f64d56367c7007e2a8bc0e5de2d5ed41f837a22eda25969dc3e3ec17bff7", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b435ab292a94ae5f5116042fb35057895bcf9bf5a58382251dce91230b34aed7", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eee479553deb963adb81d4402393be736d34f4ae379e1a721fd30f8550744fac", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab2eee9982132f530c50d682a5b1be2e8df98a767949c35931f723ab230136f", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da197ad9283072f65ce1e40360b49c64aa28e78097b759f20906b7fbc1165745", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4890ea262d666b41bb795fd923c2644ea273ccf82fc26b64fca8a1d36fefd83", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "807d16bfe2edfc6e6798c10d51de81995e08602b84400072160604ebb24fa8c2", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8162bb8233d23951ecb70d4e605806ede020949bdae43a7dd7959f386c4b0ca", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8a4c36769b972a13dc5d75c8995184bada614dd145515f05dd2b9d718f93d47", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef574307529c4db23eb583041eb4b7e0a7b85008161a1905b334aac7b6306058", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24ce9b686b3bcb187d5756be25e1d5037bcb03b896251d85bded9a4cdb47eee1", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e466b7b363673c51e0231552e64924c715620d494a9f9011b6cd06c7760dd482", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bafa55eb17f3e9217a329071a2efc6890782189eaf61ea637a53534cfe1bd87", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "369f22f0585bd5b364641649ae81f46c238365f775d84f0eab9a4e9fa9f6625c", + "regex": "(?i)^https?\\:\\/\\/diamondeyesstarsrobloxid\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94bef0aea80c9d45b49fcb41087164a8d4464b86be3c5acb7b6dcc56d1bdf613", + "regex": "(?i)^https?\\:\\/\\/diamondeyesstarsrobloxid\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c25d5408f14efd24cb3d1809a0dd6b7201843d43e64368a51e68d5d9bf545fa", + "regex": "(?i)^https?\\:\\/\\/diamondeyesstarsrobloxid\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7020e72d285018ebaa14d2481ce5d91955b06bfe2261f11ded4ce23cf198374f", + "regex": "(?i)^https?\\:\\/\\/diamondeyesstarsrobloxid\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4159618b73e377e6bcaa7a847e2afb631441e333bfc92f50fc1e7afa711113da", + "regex": "(?i)^https?\\:\\/\\/diamondeyesstarsrobloxid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23dfb7e3a79c27a17ceb28b58bf7f65d035738fab06bbec325ae2dad708d10b5", + "regex": "(?i)^https?\\:\\/\\/diamondeyesstarsrobloxid\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cabd9f165a23dccb82cb985a544fc6a6ee80822aec592b486e06c91a64c7ff0", + "regex": "(?i)^https?\\:\\/\\/top10worstrobloxgames\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c927720a4c3e5d169a134cf8754cd8d7728de3dd045f2a93a2e5c2d020463538", + "regex": "(?i)^https?\\:\\/\\/top10worstrobloxgames\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8efb1f7e57bf65e80f61144aebfeb16ce8d56c69eae7055864e793354ebcda0", + "regex": "(?i)^https?\\:\\/\\/top10worstrobloxgames\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3315cb7420f9535809b7d017c91cf416bf8e59e4d9dbb4a6d5afadb533542a9b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "817f576a883da0754ea3d0b9840d23395d1f93cd32046df92754a0f94af4b86a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "58b23982946f51adfe12f1ea6f2bb75776d6a3c6ac695c3116aa44ae671e3f67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "cc4e8fc765dd096e547fff4a79c81670549d5a633c4f24ed57387f3e04b09ee7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "9584ed56455f7c140e84362e81b95274ff29f7c10d62da15ccee70b1f2ba7031", + "regex": "(?i)^https?\\:\\/\\/skywarsrobloxcodes2020\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1288e6f6ebca87bce17dd0db6748bebb2ccee515f02bd7cea007532720a5df1", + "regex": "(?i)^https?\\:\\/\\/skywarsrobloxcodes2020\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9666d2dbe496380663f61122a52c52ece1df24630034271e445bc2019a9e6be5", + "regex": "(?i)^https?\\:\\/\\/skywarsrobloxcodes2020\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a231901be5c42bf375638b9108da1b01debc292f417c1dfa0b835134a210c68", + "regex": "(?i)^https?\\:\\/\\/skywarsrobloxcodes2020\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cd8abbd7e62f517529ba9ce80dc7dd3c4631913d3b3aeb92b0a032c3adb7652", + "regex": "(?i)^https?\\:\\/\\/dabibokunoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87d5658f2d38f27a0be9ee68911854698c79874b772fbebffc926a90e29accff", + "regex": "(?i)^https?\\:\\/\\/dabibokunoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c987437dde969f12c7f570fa59b0503783faecdb2da87f8d87469bfee3060ac2", + "regex": "(?i)^https?\\:\\/\\/dabibokunoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac97b79373942ea7ba3bd361b7c0350e1e5559df5565d43eb395ef7d35094262", + "regex": "(?i)^https?\\:\\/\\/dabibokunoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec9af7040bf586e0952a89d049104810f94a4c44987e1dd42913b0c896da5482", + "regex": "(?i)^https?\\:\\/\\/dabibokunoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc9c27ccd062df69fc7da9677f91f29d4fddf2ca312215eddfb07ab01836551d", + "regex": "(?i)^https?\\:\\/\\/dabibokunoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4681c70f107d3703e2812408d52da4efef32caade4f8fb8a14b748a2b4ee35d", + "regex": "(?i)^https?\\:\\/\\/dabibokunoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14f23995c966817737d57dbf1d8a9eb4daab5e9831485ad2bc02a75df6e79df7", + "regex": "(?i)^https?\\:\\/\\/dabibokunoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e02f2abaf8ef117acbc1a5912ae22909e2d7ef2718f9c07ea9a9d8d24f475a26", + "regex": "(?i)^https?\\:\\/\\/dabibokunoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01d5b7801879618f9aea7541e2917a6ba1d6de65ba571309e4a10d18ad0ae963", + "regex": "(?i)^https?\\:\\/\\/unjailbreakroblox1\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee6842d05f48023559f305ec5801c57149cb3016120f0a0ceef88fc68428cb3f", + "regex": "(?i)^https?\\:\\/\\/robloxbearwhitey\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebe13e679ab837dc74be5ceaaf7bc6351f51ab1207642968c6988792157f64d8", + "regex": "(?i)^https?\\:\\/\\/robloxbearwhitey\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc1e7ad5ac2b4c5cc75056d2b3fae91e773e806fa76686d11c92f0c5cded3293", + "regex": "(?i)^https?\\:\\/\\/robloxbearwhitey\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40ab6e0884da219511eb41ddd10963fb3261879e9aaa073ac273614d11cc00c9", + "regex": "(?i)^https?\\:\\/\\/robloxbearwhitey\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb75a4f1e1d4bd3db0e5c65c5f741315f8dcfea62f40c889ae64853a7a8a64f2", + "regex": "(?i)^https?\\:\\/\\/robloxbearwhitey\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dc9ec5b403a909bffbff700610ded76ec577ed373e5cc7b5f6842c759eb4a19", + "regex": "(?i)^https?\\:\\/\\/robloxbearwhitey\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b07f5c18be822839dfcc8b23cdf43479879ff4616cf9199ba1f078e469132617", + "regex": "(?i)^https?\\:\\/\\/robloxbearwhitey\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "018fd5e26e7ddea859bc98da4b2ed4c7bd53fc211bbb4084113770405f23f445", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db1b87a13ed1fefdf2625a3509e966d8ba4f50557ca7d26959493b69b4b78de1", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5f590dc750a595ea0bf465bc2ff94f977fdbfacbc0b85d746caa03db9cb1d58", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c58273c244dcaec677a057ecd91250db4735cf8f1b4545b6ad5858bde806c50", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b8839006e63e8627fffb799be9361672125cd0b8210a5f98da91be07311ce23", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "763758ad572cf3a6551ffb75f99f3cf19739d2ffb57fca389666a51871de2895", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0656cacdaabb5204c55a4d7ab5ba24dccbc2a8a54661ff0a78079789dc527894", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f832cdce9cbaa6658f438c3a85da6eebb4a49ed79e7a3b5781ced216132c5b7a", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e796ec60ff2433d4bd430cbce6e1661215723f5486b7cded3560e939fb0258cb", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45a4633de10bd9f1586624eace80e24396813610b95b9fc86d24f4644391affd", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db756117b6180735367fef77ba7c71e8747259b0c595fb09097ee5e1f3523ed7", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386a27009483a50aaadfb4c1c7e72a4642fa5920a80d0c5ed565e89b013c9ce4", + "regex": "(?i)^https?\\:\\/\\/robloxproxylist\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e64ce83fa9b7a59274c15e986c6e0efe11782ece2b3a32fe5192026d402648a8", + "regex": "(?i)^https?\\:\\/\\/unjailbreakroblox1\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5bb2545a5e7c36d0bc6b219657f8ba68c9ba082b231c83014e9b1fc049327aa", + "regex": "(?i)^https?\\:\\/\\/unjailbreakroblox1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "770d92550d6d64986c07ef93281a4317434ab128ad25fb3a505c72ce94fc8b5c", + "regex": "(?i)^https?\\:\\/\\/unjailbreakroblox1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fba9922d94ae6ffec333695a01ba010845ce2f4b1f6454f53f69a9edb5bd179", + "regex": "(?i)^https?\\:\\/\\/unjailbreakroblox1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a90e88582559b3ee3c391ec0e4376deba92f179adf82615a6dfbae40f6c35926", + "regex": "(?i)^https?\\:\\/\\/unjailbreakroblox1\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8bbc71278ba090109d1c69b8372905e07550abb401b84c5f6a92e8848834804", + "regex": "(?i)^https?\\:\\/\\/unjailbreakroblox1\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee73a219b67c2d7719efb7328aa9a13d3a2d9d7498662cbb24d96d0689bfe68c", + "regex": "(?i)^https?\\:\\/\\/unjailbreakroblox1\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fa839fa547ba37f7e0fecaac244f0271776406b0044815148bad43724102969", + "regex": "(?i)^https?\\:\\/\\/unjailbreakroblox1\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "137206cd1192951262dad192d863ce29ead229198d734ff67ac8f6410ed82cdd", + "regex": "(?i)^https?\\:\\/\\/dinosaurrobloxtoycode\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88183213fe7e77dff46edc3d88378d59d458c3a295a085295a4a2ea83eb2b4c0", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e957c81aca7a1e6a6423305b3e3ab27afb9169d944745902c73c80e11fa8cef", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "098db78bbe7c6e4f97cc6200ed3bb69fce95b9bf1f012e989687e50320f562fc", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f350bb9512eec4e38c00cde44dba3045f6fbe2f909d58d2c77feff668903376a", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85f35f93de38665aeff3b93a3eaeb4a61680d603108928b963a46be3902320fe", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13ba1c91bf32b6b46890c72cb3c0f187ade51f44540770d50045e557c670757f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfdf696ba08cc3d4526bacc7d48a0999c7e43165c2e8475292c6d3f84958f1f3", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ffd60bf67f6ddbdbbfa47a3d71f30c47f230900599f3729e263e056c8fc9401", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8022a843b067773c103d3872972a072258c584f87f6658db31879df70ed3745d", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6ad7ce33e459fe69073c091db74af7e39be124d1870bcfaeac2ff7762a2edc0", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15a522c6d1f8222c9edb556329603781724051412f0b11f0b3c371af81a9d753", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03691dc5edef5beb7daa701ec4d711225ae61d6313777f49c682fb649f1c836d", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7dd7c4e9a18187442fbf98d19cf3e6f497708cd534905e9b30e2644253684e42", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdepegapega\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1913b01640013dfe75fdd310683fd47e1eff8157e7843a79bcf6bf76d24ef048", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94688b6ccb7c5ee4b5fc0e9cae80bd11dae67cfa6a2418cb3d43c99fdc302b3f", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d4b931d4e8026be1083c4085b73fe17a976c23fb99508cd6c2ea5318fa734a9", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f448e6212196ca363ef42f463d912ff4289381d206523f1a61f4649e0594c1b", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d40b6c42a7fcef0a61eb72d5924913ae74dee1c4b117cc53b1c730191b9bff67", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c53cc26050c60eddacc927fb632938ad8e1d29301e1dab0df47e83a11be2483", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35f8ff3f3e19d32ca011e2cbda01ca8d9ce1080d25c9ff03794fbeaf8ccb0980", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19331c3d5fc478e2e4a1f56c60af663563ec6a43fc6626de117c4e65e90a0735", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91068d2fcd397242782f3c06bb802449858d1122c3371f5d56de261dca194c2e", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6403b00f3aa09aed382be1080ffbcf7a48cf1832e4c00233360c1b7049220959", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxbloxhunt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67022afa2c45fa8fa5bcee592145f5fe3af9903113d92f4e2f578bda2b154584", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxbloxhunt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f1eb234bbbbfd36ea70af3dea0d5be2254c0bb5de20e62760fa5bd57444ee48", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxbloxhunt\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5814522062850faa9b85637a3dd9652b45a63fb9f0bff9a121200245bccf3eb", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxbloxhunt\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90fd473e24c3777752c2950c2a17a2c0e3449a7e077d064b9a874714de535d02", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxbloxhunt\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a4a6cc8fc2a8d992da3b9a563dbf86ec2304ece7d2d81d7c834a912ea0ef3f", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxbloxhunt\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65d0430abc8e37362398bb827cfbd5de39a91a05b828595d5417afaf3e85147f", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxbloxhunt\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0766e7d8bfc6ad85c7df006d7d0bab49622f1aa781c80dfeb278dc638e29ddaa", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxbloxhunt\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a40989856431ac211f62ac5ceff1fa4bf136de53a40dfa2c1390a8c03e8d114", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ba261cb70173decbb94cc079034f302bad9fe22a9c2d426b3c61a3879302c9b", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28be075066ffd91a653e8889b9c1df5a76d67f4570f1bc576f12888c9d26ae46", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a165b93c9285dbd30fe7f517120e7524436f2349cf21de2b212e15794bf0110", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbe102d0ce14932f4cc0e8dac51834782fc97e9aaf725c36d780099c90961ef8", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c834d6b3c922a26829a035be06884d3b562acfda20d0737bbb6948d1619ca925", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccbf14bfd18db6796585ecbb1c00c04d771928ba72fdaa5bebcd8fb27a5f704e", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc79bec04dc9d91f2fcb68199df149ec4d2f42cf9f5a69d3a026e9af90ebdc3b", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d60519cab5525ac6ec334d529a00d9198fe64c718129e14aef5d9b1dacba52f", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "532382f6d4cd609fbf521e70980e6c35fafc5ef027b960d4881adceed88b7195", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b82f9a099c3b519d82e4f9099ac14e606744d6ad8b2e20e9bc49bf9be32edc3", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45ac5b27b1de1aa9c249f0d281b1a487539c867e0e08fe53830f09d6d42cd6c7", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13bef703b1b15ddc280cb5bb566d5a886fe7dbe62604f8fbfe36989eeda3afa0", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40af672a02b54713c3671782643c9853e5dcaf5f87b9825ae223132a5ab50df3", + "regex": "(?i)^https?\\:\\/\\/robloxbodypillowdecal\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21ccf333be39df76319f3f0c8468c86d4ae8dca69c6b9059d0f27b53be052d33", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxobstacleparadise\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6836b5a77519d311c9e768d80af8ab115123f3e1040a6f7b5487665762968832", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxobstacleparadise\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "333416e7f62848954497c19fb08e2243bc96f7e2601d456c17b16df21a8cc59b", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxobstacleparadise\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80a782b91be60c7d32a85e2c3700c4721a0d65ca53bca11725549843c8fb7229", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxobstacleparadise\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1973eb302d839387d8de26c90fe18ab3244bea86a67b62d3cca14b1f4b14d880", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxobstacleparadise\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "715389616800dd84b9e71bec0f0f8b0e276315257ed212b667e209a011940730", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxobstacleparadise\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43925757c87b8884998f21f9eb8f1066a33a508e77c7b342c9ee41651b20dfac", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxobstacleparadise\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76e6a80dfed0e3c975e0e0a066d91be5f6c4e3c54c1608ac98a86b56d05c38d8", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxobstacleparadise\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ebad4ee92d591fb9413cd939649ea814a2bcef0458cf82931e111ffc380c716", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogettixandrobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8078b17cc2becefd001f1dce9f0d10cb4c3f233a9d3e8a98c68d40fbecbb2d79", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogettixandrobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5c2ce82eb56dfcbcd7b108395738af1c94310178714e23b7e90de18c2e400eb", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogettixandrobux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15acfcf76c1b5015f80f7b571c80988e24c6b5a14779d50cad61aec9b6876e3e", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogettixandrobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29f6729ced398d682639a2f76e242d252442e79a572ff892e9c72330f51a57ce", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogettixandrobux\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90d258eddef68abe3807414ac7e8e843b79c77b3852149503c0afc0540edfa45", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogettixandrobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0461c3f3b789e79d62667f3e22d08258317d1d1d962bbced9e873e3c2b1c5d5e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23e0801f912cfb2ea3bdd411f11bec18caa246018b5bddf50d488922f0456b4e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a6b513770c12e38b17e5fdb07c85843ca90439168f88302a336d20761359ee1", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9935f2d357b732ed0d1cc7be828a2b29e06be5e26ae4b8a81b5aef5d03a30d32", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce482f0dd0f276f43e5e85796796860ef0aec4f1755975e1834f424d8061d0ae", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d093d82e5e50676a02df9515e98a61f089cdf41e7ccb81ee8690303bde992b99", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5852480aba44d5351d6195dd494c393ce7c1e3605b624e3b61b91b4511d2ba1f", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f55f3b850ce0554bdc00b0dab53c4d07727a016707b6c6207575dc7259612ff", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb52ec4dcc27526f6dc916b3aa3a91dbffa9155eec382e85ef224bb0343893c4", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b0fd30490c2f8d5a6d659597aaf1309cbd22ad7a3d088ffae489f35b065814c", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8146aa4f6b7f53625eabc2023f537490eefd0fe545ba3054a86206e2307c69f0", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxjuliaminegirl\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21753ca4675083732611d420888b5a4d9db03777bbe1465f8e52ecc8a06a2e24", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af7dfb1cfd415b2fc300161609d758012be31749e47be74c97533e69a93321cc", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e3fed3b7aeaa94efe89b86bdb7a9daa678842dc52c9de8558663a59593fe802", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59bd4a5f91cb1e3442a3855189c69ad85bb49d64b7d6880cc11610589d0c4470", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6566ec0df7f7393de35bfdc9809398ee8624ae5d58059f7cfa1a0f16398c3c2", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "552c7da63e101ebf0486a24a6ad85e19c6edeb091ca5ab96a39ecd58316074e3", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bb8116bb8bae1cdfdbbb3917a77df2dce292e6483e9c24971150f2256d828c2", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bf81ed59a004db91fdde19b945026b58539ff2a3606b2652f9a1d843b181c2e", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7a2f1145dafd0dd74f6554f3101873c7d8b0fdc96b79f6200b3390811bcfcd1", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72782aabbdc580de8677f5a27e97364fe7768d72f873c37213acb4a1ac1a3866", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "807aab715707a9d265cb55bc2c240669f68bc5276f062f364107152cc7e02c12", + "regex": "(?i)^https?\\:\\/\\/robloxhackdepontosdragonballfinalstan\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5f2092823bb2d7a0bf42f580b6f09d7d4ba4f2ab3c19894f4d541bbe60527c", + "regex": "(?i)^https?\\:\\/\\/hackingclientsforroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d17be01c778322feca67fd710a4f3d165bee7cbd1b93fb5d2ed7d7b5774869c", + "regex": "(?i)^https?\\:\\/\\/hackingclientsforroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8f92abc3ce5e7000182aff43fadc8ec71f4338f7ec1208f855a4338aeb1d333", + "regex": "(?i)^https?\\:\\/\\/hackingclientsforroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a2a7a1a05c63c0605f5acb8bf521c41fddfcdc1bdc5de78652917d2fb9f06ff", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a83da46d63d6187254e54bd2f16ad5a72369df559f70444898f7a7c30bf568", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dca09f2b20810092465fc2423eee9b519e46605a9cec27ca39d016d81bff519", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00e4b66e2f079321b57896bdccd8d48aab928554fc6fb8a19498f3f0ac8579cb", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6a1ad8e31759f8d3cc92d5f68c97160d4bae1b1c7ddad850d09536cc05904e9", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c70a54d64898db9e7c130b085ce493fe583af993bd29a7ee34b5be637ae6dd", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b32d968bfd78ceaa3c07bf0ea37696d4d17cd81d0d84db07d6a0b6847efef1f", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "556d5e4a4e10a04beaea72659e0efb3f363a1d993d872a16125941ea3b1b6bf7", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4845eacbe41e95f0d6aaece3dd705d221f7263f5f8bf0dce17241bc9b939b8a", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43c2918a3d1e454cb34f647350620bfb56d13f73a22c1000fc44f30a66a183cd", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fcd49fa06f3a21863b056906b50ae57610818d335bd0bf082e7553fd50f0487", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc07fbd05c28f9c413480a3edf76e3344cef2269601d1ba75a88b884130d4c6a", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64fd2e3289d521994ccead03ccb417bc985d0b35a1a0a76adf3717763cc2261b", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "944d26051db1dcd9bb1f50c8cab85fc0ece8c864d08d02c5e0de878ac3ab7961", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93d76c39c1f6d0b7a334a3d3a45da9ae48ae7c722e9c87478827c0b5bbf61713", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0df4fc2e5f9db2cd9cb4718be98c86ae94e2379b6671ff9db8b59e8b8034fbcf", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abb14f0d6d261250e45b1e1cb8fa0060eb371be9554c4dc29433495517bd3cb9", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6efa20bf457f4020f0ae26b8001223bbb63515750c974759e49643dbb4284578", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d70fe5824cde516fa685ca2f9a6d8ba15ca224c60b0532eb25e852c0fa3e21a3", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f80eed80c1a38fbd624c3a3e43d5b4c42d89ec6538e90ec2d4dc2934b9c55fc", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac2135f0c0045c35ece50f0ca851e51da7a86ce5afa906b1b8cfac1844f575d0", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e461327e7837a48cef7e9b1cf402df20852f9cbc7b046874f0d45bbdbcef1098", + "regex": "(?i)^https?\\:\\/\\/sixpacktshirtroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78a7695172d5b5a44f27405acf4b780acd2fcae4ceea8d7a299bb678c8cc1617", + "regex": "(?i)^https?\\:\\/\\/jogarjogoderobloxmobile\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6c1d4e638afe06fe64691ab3c9fcd33a99a6c2ae19f914e7889b131c4b4c7b4", + "regex": "(?i)^https?\\:\\/\\/jogarjogoderobloxmobile\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2eb5c8a2194e642470e1efb426007ff318b58779b633003735e4f397f743ab93", + "regex": "(?i)^https?\\:\\/\\/jogarjogoderobloxmobile\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cddb22358e50be879a87e47fbdea48e83153a95d385e82edfb3005908206e0ea", + "regex": "(?i)^https?\\:\\/\\/jogarjogoderobloxmobile\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b1363fa7b83d233dfb4a913fd2a4181dc155744d9ac97cc1b5170fe30874940", + "regex": "(?i)^https?\\:\\/\\/jogarjogoderobloxmobile\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d51069047b92dca59bb606d4d69f3c583be1c7b772b4640e5ad4d7cc7d06a950", + "regex": "(?i)^https?\\:\\/\\/jogarjogoderobloxmobile\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "424525922e90e2ca85dafcf220fb56cd460520f2a6890a7c817b569fd7a4d542", + "regex": "." + }, + { + "hash": "778906cf62213ba4a98930384d7d79d02c57c80a84746c925713ff57e2fddc08", + "regex": "." + }, + { + "hash": "4b4c0990284a3213f64f3712051a0275db5e5115cbbd5d83569ccd5112f78ed4", + "regex": "." + }, + { + "hash": "154735b6f5814302ec2cb96b0277898fa7c40e169b94888a2b2c1221ea9cc80a", + "regex": "." + }, + { + "hash": "3ff76fd282cdd6242368417b4ba706930cb322bb08ace5b51a4d3d800eb1a271", + "regex": "." + }, + { + "hash": "763842b1b94595d8c834ffbbcede6404d8a5d17e2169ed26c585038828724ea1", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanoroblox2021n\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79db67b1fd9d15c228b13bb605a2d7cecd0f2b8f490ed406f3e9fee67f8127bf", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanoroblox2021n\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d61470c9074b17288d162cf0bedd598816364601d6d56ee4a272ffdcfddba802", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanoroblox2021n\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae51f3335b1958ae032ce517c69bcf577ba32f05fc7c8fadbe15b7510b11339", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanoroblox2021n\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d805de7965ff2c1b8245bc9de7231fa0337af0ef819d76c83e178e6eddd34582", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanoroblox2021n\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f499978c2cb6c310bdf2b3e8dfa497d0afcf2a0949a7b4864ff193636dcc1e7", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanoroblox2021n\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ed75df1e0a03139d1c4022980cbb10604fd0decd3ab66e8aec158fc54c08eb6", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanoroblox2021n\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23df1797416203ec5afc3be977f37bd07087499f2cd163b187025a52b72b7fbe", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraanoroblox2021n\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c340f3eb1dc2220b43b326e8726f96b314c57a5719a4752bec7d43adc64858ba", + "regex": "(?i)^https?\\:\\/\\/bubblyanimationrobloxfree\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6560defdc18285270d185ce70b3255b74dfdf80f2b3ebc869d66a4b8b89aebae", + "regex": "(?i)^https?\\:\\/\\/bubblyanimationrobloxfree\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce12ef4c1badc0abb770dc584831bd1ff506912626b9180fe0fe2d127f311c9b", + "regex": "(?i)^https?\\:\\/\\/bubblyanimationrobloxfree\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b753dba5fc33f541841e07b386ad8dde30fd05b285286d7aa84efacac1d2187b", + "regex": "(?i)^https?\\:\\/\\/bubblyanimationrobloxfree\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96faeffe8f6f1a966990df199a5fe213c66c50413ec754814128e66bccd7971f", + "regex": "(?i)^https?\\:\\/\\/bubblyanimationrobloxfree\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46f1080bc220b5fcefb447d865f0e314e62ce944b1b51fe5eb4f6120a84d9d37", + "regex": "(?i)^https?\\:\\/\\/bubblyanimationrobloxfree\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eddbf274ae9cde7fab57ed10a0da11f83d99e0f67bbd0fdc3d970fe11e06378b", + "regex": "(?i)^https?\\:\\/\\/bubblyanimationrobloxfree\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b75a85108f98844ddbd622bc722ae52f42bd9e2ccf4fd6cdb4a1a6552d0ac94", + "regex": "(?i)^https?\\:\\/\\/bubblyanimationrobloxfree\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f4804701544c5ce50320ac02b31d7dd234c59a3e62845436c78fea882ac4459", + "regex": "(?i)^https?\\:\\/\\/bubblyanimationrobloxfree\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a3528d9d8f4c604b56dcbe29d39b30095266f8b23ad16fe87a4b445a0b0bfed", + "regex": "(?i)^https?\\:\\/\\/howtoinstallahackedclientroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b3f4d4e93c985c3d577c0609f450e275a1a4d315d86f6d4c0550c873435762", + "regex": "(?i)^https?\\:\\/\\/howtoinstallahackedclientroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da3a3820f0c9f42db0a32b9462b61d1b226aa5200bfdd2a902de6d9f7d5f22d2", + "regex": "(?i)^https?\\:\\/\\/howtoinstallahackedclientroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "060f6c336ab18bc899954cd9018709e7efbecada738fd796aebf9a5ed0b15f9f", + "regex": "(?i)^https?\\:\\/\\/howtoinstallahackedclientroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8fcd42c7b6dd896ede01f5f798d2267b6e49b9a886820fc0f1ea9d9634a9482", + "regex": "(?i)^https?\\:\\/\\/howtoinstallahackedclientroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "349aa8d028bae7919821592aa5ca28465e7516694a8c835c736acf0c278357c8", + "regex": "(?i)^https?\\:\\/\\/therealhackerinroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a90ef0482d035103f6224b30611a5cd39fef28224b7fadcf1c9e09794344aba9", + "regex": "(?i)^https?\\:\\/\\/therealhackerinroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67fb9438211cc59bf8db1e7bfabed17b05c649a45e91e158f9cfa18abfd774c2", + "regex": "(?i)^https?\\:\\/\\/therealhackerinroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b06f5faa8c2f3dbcf0f6091348e1a46d68c67c3ec1d794da988d311c869c3ce", + "regex": "(?i)^https?\\:\\/\\/therealhackerinroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39fdbb00169502b704b0b67fbd7ba5fbd5a99973e8ad1ae54caa55e570f76a72", + "regex": "(?i)^https?\\:\\/\\/therealhackerinroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4c5dec170a0485c93d04f7a04f4c77e9525b358d47ef0cf36b6d16cab8e1ebc", + "regex": "(?i)^https?\\:\\/\\/robloxdragonslayingsimulatorcodes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14d941113764a159ed8cd6c1774499fdc1baf2643146c863cfa1c5a7e93ed796", + "regex": "(?i)^https?\\:\\/\\/robloxdragonslayingsimulatorcodes\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81d46a37c655539ebc8b959539c6ee63c77cc7519d9f150f022e09d979ef932c", + "regex": "(?i)^https?\\:\\/\\/robloxdragonslayingsimulatorcodes\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af2f6b128f67b47523f81cbdb4c95f527c79e62fa73ccfb5c1f51226602c155e", + "regex": "(?i)^https?\\:\\/\\/robloxdragonslayingsimulatorcodes\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b3c653324bf7451beac62a47d3b9682800837a79c1edfd370cef9cf526d3d24", + "regex": "(?i)^https?\\:\\/\\/robloxdragonslayingsimulatorcodes\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c9aae6eb4f30ba65442cb4a14323b2c2d9e51b3daa8b3a40b44de3490d0350c", + "regex": "(?i)^https?\\:\\/\\/robloxdragonslayingsimulatorcodes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9777f9f6e26fb556a8b2e0c162292aebeb2f016e61c2cf91a85530c0b2f408a8", + "regex": "(?i)^https?\\:\\/\\/robloxdragonslayingsimulatorcodes\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c76cd0b7488f7a896810c0f70a4c1c880f162cf580b14b57fefbe541d7e639a", + "regex": "(?i)^https?\\:\\/\\/robloxdragonslayingsimulatorcodes\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be0d5bf63f28cbaf71b27887f9532017378a399029e392df373e99e192253f8a", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8537dbfcf554e208c6b8a0bcc57bfa69caa02e5d3d3da33239ac20a4665728f5", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3832bf487c32a9b2b64acf1293d809c04d055321f67bcb78e822172369d2586d", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "195332c87dee166a0bb03bfcd09e3ef9aacd6db41f7b200bd541f61b0dd82c30", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7303306ff04f7098c84d53ec157f9383eabbed02aee04e43994225dd91ac367a", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13395c0059c7fb758f4d2fd0398e99f3b552a506fdaca42b31679ac3ae139585", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85613f66b63bf0cf739815160538e1c4236e227116a07fb33b172acc88227393", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b09f17834bc8124609c8a045fbf5fb2237b25a20b1e2b0cf453e94be77a8028d", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c19cb2302a3a6fdb4b332ec32b0191f6ce812b749c2ce78e8351822cedbc928", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aa22dbf53dbbd4f6455304dca11093a9c18bedbb894ef06b3646fa2d95d1eca", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeslimewingsinroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8888ab063104f11f50975940aaf0ed5e0f94587c35212ed66c09540fb291a34", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredlistfor\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "378bdfb0ba060a60500658c2d627deab711daefcf46bd6e016c12e52359991c9", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredlistfor\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "967796f29cf4e35b538d9a41a188900bb83a3a3dd102121868e5e6a557346581", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredlistfor\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79c716660194a201a5037cbe09044c7096f5b371960a96eb71b8705ceb713fd8", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredlistfor\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0f97c66f88314125566ca33ab13c9d5ba33bd33ce635e0dc64dfa3df10fc89", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredlistfor\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2256e5b6ea3af7f2b9348066eea1d8f1e35e1adc981cf89a6d875cfe2e54286c", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredlistfor\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "457b1041807fed31268ebdd57c6834b0dd00f83d2f0fd33efe7b874677a41311", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredlistfor\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d241eac209d1f28726a35e7179f8c615e71ec57e087d6b1ea59a42b4d55b61d", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredlistfor\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00934dae8139474e3280eaaf19a6d3870eef244cb047bf5008375fa1b9eb2c92", + "regex": "." + }, + { + "hash": "0c200a712a773ddd56b03b00776f668831e65dea65a4f7af4511827880c7e338", + "regex": "." + }, + { + "hash": "8051be1bade0289320972c6b33758a46d91fcda142b1baf697aab042d03d37c3", + "regex": "." + }, + { + "hash": "ff04cba08adff553abd7670ff874b1586eca9d4fe6f8611d4d90657f47e42c93", + "regex": "." + }, + { + "hash": "b62b36d484c6f7c9a8accb93dcb1d9948c581dbed5ba25d17b837291a93ba5cb", + "regex": "." + }, + { + "hash": "eac0fb080a95936492fb131153361a26dce42bbb9abf3da07116148150da0b3b", + "regex": "." + }, + { + "hash": "cd892c3a2dc645736035420b3cbe917b4e180b2e9ba62bd3faecf990a9da5391", + "regex": "." + }, + { + "hash": "650fe31dc7f1567d8b9fc48cdb5ad238f6e1b2e05d36f074361d20dc659671e0", + "regex": "." + }, + { + "hash": "b40093da46657b3d8ba6f5bc84ee099800a6f14650da06448534ba74f95befcf", + "regex": "." + }, + { + "hash": "f84c483afc5f177cd7a0bc9c5d35cebfa6bbb83d95cbc9fd4fad9ecd7d6f3eb0", + "regex": "(?i)^https?\\:\\/\\/comojogarcallofdutynoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c06d0433be24183baf921f5b4249a8ef0f8fe652a65c251d2381da7a8e9eeee1", + "regex": "(?i)^https?\\:\\/\\/comojogarcallofdutynoroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22e2ea0344fe305eef3325176eb1d18284cc9ac4b488782437e14648157a68e7", + "regex": "(?i)^https?\\:\\/\\/comojogarcallofdutynoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "823f0b166bbae9496e536e4897bfc136b99aaf40b6256ad50032543bc4c776b9", + "regex": "(?i)^https?\\:\\/\\/comojogarcallofdutynoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be5c668f8447caa6902c06070f794d1b6f0c7643705f08420ab72f83aba2fbeb", + "regex": "(?i)^https?\\:\\/\\/comojogarcallofdutynoroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5e3d7ad31a28fcbf86ffcc19c42fbd21aa4991f1be390a7a44a11c176b74485", + "regex": "(?i)^https?\\:\\/\\/comojogarcallofdutynoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "999ed6682cbff3da68713a4275fd29b0b5c8b1d68f9f4f2da5f846156c3f4e42", + "regex": "(?i)^https?\\:\\/\\/comojogarcallofdutynoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72891a37cff007f613ffd32a66675b19a6b8d470b70dfa34da9c1877cea7aadc", + "regex": "(?i)^https?\\:\\/\\/brickcolorcodesroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2398e1ef2a4ff07aab49074bb1f040a4e6750ac749e7f027d4e8e4ecc6fd4bd7", + "regex": "(?i)^https?\\:\\/\\/brickcolorcodesroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eac03d480b98299deb3f6832682894bd22491b9e2f19ca077eb0c1ea31858784", + "regex": "(?i)^https?\\:\\/\\/brickcolorcodesroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "431e456450e38f3b01afb359ed16855b602cd4e6b11ca080c2d76bdfa81f589b", + "regex": "(?i)^https?\\:\\/\\/brickcolorcodesroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57870a2219459ab0d6bb6eacceff99325a6277ed57ee303b59b91966508f7729", + "regex": "(?i)^https?\\:\\/\\/brickcolorcodesroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c109ac0d7438e7ade1b6d13bf716b2b9365c23d74a2f2351e4374a3f9c6e998c", + "regex": "(?i)^https?\\:\\/\\/brickcolorcodesroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ed57548de21865bc0a88f6a72b56f3ab06d2151a8e75e75cfb8fd48b0ae9b6c", + "regex": "(?i)^https?\\:\\/\\/freeskyslayerforroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b25f39d61bba2ce20c6299e2c7dbe9f9898c1eaa88ad6b6b4d42985b89ac42d", + "regex": "(?i)^https?\\:\\/\\/freeskyslayerforroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c08f5389ba1a5b3bc6321c08f9797a36aea1322d7e3ac7822e2b044b41879fb7", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04633063ceac663dc61e72f7b637cbd6d0b95e1b7b5f1bdbe872d3f24e79d8fe", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d847e538fb7c6e94de1c276ee2871fb1fd4c94c25ca9efe7cc54b5755eecf2", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "152199c31088b2bb0c7ba982eb090aa8ee736086d3451a6d2ff6fc48115b1534", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03a2c73becf99e8df13d8d626f40137a50d63c47bc4a876e0397d60c96d9a15d", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c35d772475df535ce75ec1ca628e8d7119d495692c8fffc30af6932dabbdf88", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6049d373cecfb953405f18c420ecdc597b2b2d59b1da75b10f4e6cf7c46e19d3", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a0f3d85b88ae68f3161b4eb494d3444d3e843f893e78747feb1545ee9d60b37", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24245cc76d36feb7e4e0cb7376d912cf087130a08aeaf3299df79207180fd773", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "095850f68f9fdf89838dbd73bb0c4cb03c99f623c5dd4f6253bed678eca4ab17", + "regex": "(?i)^https?\\:\\/\\/fortniteskinsfreeforroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2d85a3e537566cf6e510e112e0388e917c3f68c6105897e27ae11a613cea8cf", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae4f09dd5e67eb3bf63c2bfd25761eee99fa988370437556075f2d3dbd3e8f16", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "880205a32933d7dd06a34a28722db49b700e218478565629b4ccbcc05436dba8", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45f64470d402a049725effc9e3184d92d0cb3211b2a467ee772774d2c1873963", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42225e3628ae3aa2032da852591a8ff39f0766f9e14e4fb7cdc879ea14026967", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63c87c8b9daab2f6baa518ec7cdb8f5c8616098437ed5290db9eda22763503d", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f92faccedf030536fd3dedb29a339613cfba2d86a572fa3aa348b0240ef45a8", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23b315618b2f499cbd2c2f10160fb1bee428628645307945e5b26cf36213de0b", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5242195a7ccae4968746dc1378ed253c2b6c4afe97025cf35c7e128ed2b6fc9", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72d48bb13c4f4e59492d0a6fb561ed5f0078aac54e882375da5584283a58a0a2", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b0a98edd643cf929d690a6d29f926f0a2133a707b05d88ad555a9b98e104a65", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae26a706deeaa24d308cf84cb1c10cbac5751ddc429575d4a010c95412f1a512", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ad85e2b763ef3bd871fd12281501bf568b21f114f71ed44774c77cfd79424ad", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27472bd4951d7f2ff8a242c11ea76fe8fc84e012da2801a5830cced19d74889f", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a2d664d1fd635bd3b8d9221e692fb4f905ea0a5fbc25417d3d60e9e38dafffc", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd1eea01c4c81aeb8aebd6cd2c1645d4477ee4f025b4629d8a7859058fd007c6", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff05328612079b549bf5c5a32417594200119a3f1cbab99000f2e11e43e87439", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ce6a8b9a6ae05439fa3fc75341ffee6eb1b5e59fc4635f0255b59210b2494a9", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fa3e69cd98aaefe41778129480d331df42ffc0c847c2c488b4c1d3753d482c4", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27de3afd166dd08747f1f1984ef8e2124d6177ddc99676d207ee6bfb30b13ccc", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "999eebb70bd2ebf7d6e86b8da08f404d65c25bf37152afea6389ca49fb117755", + "regex": "(?i)^https?\\:\\/\\/buildaboatrobloxhacks\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca890bbd2d0bf03d32458cf9c2140879179d9b770a97401302db1b5efa2abdd6", + "regex": "(?i)^https?\\:\\/\\/comoremasterizarumjogoseunoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82869508ab12212b7256c17cf04ea4bb3d88803fd68d3b704eb45ceece976423", + "regex": "(?i)^https?\\:\\/\\/comoremasterizarumjogoseunoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e4a59fbe605e4dafd01e983783f2032396fe028cbae497fdef7032b104fe8ba", + "regex": "(?i)^https?\\:\\/\\/comoremasterizarumjogoseunoroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a2c0edfe4e845710e81176842a295a067297e4cbc16ca4dcf6a2ce3fffed9d0", + "regex": "(?i)^https?\\:\\/\\/comoremasterizarumjogoseunoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c6fd4e56f9ee9dcd61b3ba421be4bdc507935c46e727929fbc44595fd73861", + "regex": "(?i)^https?\\:\\/\\/comoremasterizarumjogoseunoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f35c8e6139c155f3a15f68dd86f6bad05f4077eacc727fc02d399b258bac44df", + "regex": "(?i)^https?\\:\\/\\/comoremasterizarumjogoseunoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b5407eed5083c2d36e332a327e7206774255cc2e03881ea52f729731fcd671b", + "regex": "(?i)^https?\\:\\/\\/comoremasterizarumjogoseunoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fe5930ac46909f022c0dbeea9f40617042005ea3926e501660e3b2869dd084e", + "regex": "(?i)^https?\\:\\/\\/comoremasterizarumjogoseunoroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "916417037c445bac239a09184329cab79760924f42aa7662b62a201421a8c9dd", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b06d90f9fcf89ea3da9dfa6c079d6743583b8b5b3f42e55ee3d76a19a094d0e8", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f21c423da194d0027b6750c1081356ca763b0803f29b022da3888fd3932b6a89", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77404dc6473f870107e99f57b6d2d9cb2e02fea80963f901d08d0c580094b70a", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ff2765fdf442c385fdd4ca7ca2a4558f46f2d8340e4cfdc37a5f4db782bfde7", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca28ce3dec9b351a9a37374d493a02efc8a330532ba62d37f0cfd3b938169b81", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2b1c96bb143310c5f5cebaf99527e9430bedbbc5cba36bac93951fcc1f4d47f", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb90e89e2e14d45796dc5072c3ab8c259f57ad791e1731abfc2ce1735b5b6fa3", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e22620c60951b68110dc88cf64f0a1a5e49c7fe62aa6f0cb813e8f23e4694eb", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b38fab3d568a639c40565234764e3ff14467345b7b5e59fee3b16f2b771684f", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07f1df28f19868b7e4c1a5839d0d922eee1c3260af9b23ff70ba49ef8f1f364b", + "regex": "(?i)^https?\\:\\/\\/robloxgetfreerobuxscriptbypastebin\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41972a5e8e048f32b7772aae58ed2633602b44b42d9347b4bc6b18240a6fb9fc", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnocomputadorsementala\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e875693aa89fd6ba786180424910578537c479fbcb67e6fc45140accf823c49c", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnocomputadorsementala\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8330715b06b4def79502dc78ade27761ead26e15d1ab963aa0719200b39223c", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnocomputadorsementala\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39e276a81d02d41dba792ca83d98cf8e8b1ca60abe31e765e6843dd8c18bd381", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnocomputadorsementala\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b782a36eec6fe121c6ee829b96ffa69d3be70ef5a22f6dd6370b534c19447bc3", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnocomputadorsementala\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9666ff925ba8f7bec54127504e52837e6c00f65bdd701af5abdf392c245e4a21", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnocomputadorsementala\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5e7432969f4adaff05ab27f7e1e7d168af4682778b767b35626ee40e1c21245", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdefrias\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96703bc17263d1aaed5e1cf2b36b0bd18ae96028fb3d7cb80d965b8d92840be5", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdefrias\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81f2801c18247d7e2422ee95688995e60efc257d159c041d0ae13b5edaa28113", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdefrias\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45e7905c9331bea44c0b6d0f7b3912d139c2755250c33b1bc75933f3ed01f1f2", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdefrias\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0f849f1cd0d67faa456c9d1b17fe224685e1e84aebea660ecda0129227a1a2d", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdefrias\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0646975f913336a42c2ac898ced56eaaaaf461f901cdd2c556fef8caa81dd5bd", + "regex": "(?i)^https?\\:\\/\\/robloxmadcitycodesseason2\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15166d29a645ba996784584c950c25779fda5be49ad28e6e49d30241a1184234", + "regex": "(?i)^https?\\:\\/\\/robloxmadcitycodesseason2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "688b6ba5cc15b42044758b01099108393911261d19c380d273fc853e587f149b", + "regex": "(?i)^https?\\:\\/\\/robloxmadcitycodesseason2\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c97f6fa42bef670213a41a24cb1413680d9b66e7ec4fe252254e98076c2ae4ef", + "regex": "(?i)^https?\\:\\/\\/robloxmadcitycodesseason2\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "852eabc9104ad3a2d79d4f068729b5c431548f3c7630039a2635e57ea1f4f6aa", + "regex": "(?i)^https?\\:\\/\\/robloxmadcitycodesseason2\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e4cf9d2276f45bf7a45573658319c9984cca39459c18f4861aacf331835b85b", + "regex": "(?i)^https?\\:\\/\\/robloxmadcitycodesseason2\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39fdf78dbabc1538ba984dcd4d4961b198dd28d1dd138f4a753cff4a3c94cce2", + "regex": "(?i)^https?\\:\\/\\/hackdedragonballragerobloxentrenamien\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ca94f2e06fa82edca784b5fc51f4d691bbdc9c05319901af6e38cf858574b48", + "regex": "(?i)^https?\\:\\/\\/hackdedragonballragerobloxentrenamien\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "643f964dd2cdaebaeea6c1319c0ba5591a20ef50bf4b1685fbc24d70ff92227b", + "regex": "(?i)^https?\\:\\/\\/hackdedragonballragerobloxentrenamien\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dc38a4a5f2a6808129a7b044667e392125a2e90960eeea0c43acc5cc320a248", + "regex": "(?i)^https?\\:\\/\\/hackdedragonballragerobloxentrenamien\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fe1186ada55267dd49272945ca79afa6bc27f959dee35eaa0a41684c9cc0dff", + "regex": "(?i)^https?\\:\\/\\/hackdedragonballragerobloxentrenamien\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ed985285410216c5cb332bc82e99cf9f18b00b5509eddf176ddd25a8cb519b8", + "regex": "(?i)^https?\\:\\/\\/hackdedragonballragerobloxentrenamien\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "823f6cf18281523f6b1cd790803d52bb5f16deeaff0a1993c758ac7525e4d102", + "regex": "(?i)^https?\\:\\/\\/hackdedragonballragerobloxentrenamien\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1ab6421eee3d238c35ba6728618bf1d445e871eb89435c26e26aedfec572c7a", + "regex": "(?i)^https?\\:\\/\\/hackdedragonballragerobloxentrenamien\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0033129323f84c2a66904957d941d77d6f5c3248e172781f940b889d61cb90d8", + "regex": "(?i)^https?\\:\\/\\/comotenerrobuxinvifitinhosenroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a58b3fae13bf2e6686ada6c29d88650b90eb713d19fdce86a1387a3c38710732", + "regex": "(?i)^https?\\:\\/\\/comotenerrobuxinvifitinhosenroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3dc56b2bc25c787404bc90db989f5decbf597cdd401a4af25b4041cb8fa0c57a", + "regex": "(?i)^https?\\:\\/\\/comotenerrobuxinvifitinhosenroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e01e3d465c3bffe10ad6954e07c85ac895efd2a86d18eaecb3ad2394c91e923c", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmeumalfatofavarito\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3ebf0db891437b89cbdecd11dd96c97a0181e7bb6abab01746e0e7a64ff188e", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmeumalfatofavarito\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f6f958a13be87109eb432ab73d2cdeb17a45d7e7fdd44656c9adbc3d5d9e392", + "regex": "(?i)^https?\\:\\/\\/barnevaktenroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cd9a93643e411bb0b9d4e0e017934e205648ad6d6a6a1956ccbde165c7f5bd6", + "regex": "." + }, + { + "hash": "94ea9089a832f000a260d01e7487e625d05f66ced0b85c0988fb0b3ae74d42e1", + "regex": "." + }, + { + "hash": "a8de55230d2227fcb9840a34ae28677b73f9a29e84a20c1d550c9c5f7ce7ed75", + "regex": "." + }, + { + "hash": "9fb262d2d5f8c9b28652fa2717b404fdfaf684cf826612f8c6a2d418d12ef474", + "regex": "." + }, + { + "hash": "079c81f93f4722d85fbd6cc3a789c4363aa191134743906dad8c4b7d3b957b14", + "regex": "." + }, + { + "hash": "7da94d60fabd905544ec0cd720d63d6b9993bdde82e8400596072e3d8fdca784", + "regex": "." + }, + { + "hash": "8b3a58ab265677340f7da9a0bb7b54300d51e8d4065a0d9237d4c073159b0ad9", + "regex": "." + }, + { + "hash": "b43eeda606291cd3246eabe8f353fa58822e5905389ab1473e5d37da90fbd839", + "regex": "." + }, + { + "hash": "87e1e48d1031e33ab3db07d9c5f2dad146298b363c30a16865d69419c6cbc85d", + "regex": "." + }, + { + "hash": "7d381b3e741884461ec8f9fd219e88a273703887e1f0a0cfd1cf09ebb9a070a7", + "regex": "." + }, + { + "hash": "9012d413fe2cbbffe1bed914dda11fe660ab1eecfc539e33e18d36527c27b386", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b55d3c8a662a2b486dac6bf8df30be6acabb80b86a5117d556c83516412f7797", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29f64b8e998aa6c011090c29ac64bd4894e58f996d4048d82844302994ce62b2", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d075866aa7daaa6aeebc75864d69f53f870bc51186d0104d17a48cacb20dc072", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2238e15bb589b7399b840e4db05521d7768da654e74d752c31e00934439306be", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f38392dd033ff7b3a71f3af0b26a28c9faea96cac18e97c7c66b800eb06bb7f", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06622c2d1a86e0e12137a1783dfb84c0c73dd6b0adda7bed3e2024d01a012710", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3243a32ad716804924ba9b0548de090060677e9b86f9df36773e9e0ff73da73", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e48481f0f280b7b805729659888555625c452edc41b377c270a3c538278a2f6e", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "997385cdcf245e29492957ec19f0f2cd9f86a8e2f4136f9c942d78e677c8d8ce", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83d131bf5b0383d26380b9b5a1c4d85b44ee604eb97fe605a57b44816df5a693", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c980688dae6f2f7c76d0aad70b2b62dd277a7c96e6306a2801c95573f8d176a", + "regex": "(?i)^https?\\:\\/\\/traprobloxdecal\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52c0c41eea22b4d5f0f62c951a4f980d455e3cfc398a77fee5fe88e29db50023", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27143aea0d3d79a6b523304882a805dd63b58e190d7cb1261c208a22dc87bc2c", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7752e1c8c92b27e792027b3f5d4762e5c2d6e650224a3fa432fd73cdfc3ec2", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f78925338509183878121d035ca19c0939a4cf612c09cd3b538a0d1fd96fe294", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e36aca6f80ef9ba0750ef2ad0267136bbc41d16fcebd77218b88107339e91999", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d369acfb16bf47f20095a55bd377c1c53e8a796375f0d1a2008b9ed6450c49c7", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4145f695a13919125a325fd72609e4204168b125532701c19ea0247082306be0", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03deeb359c83b5ea3714929749fbced9dc2e01aad5b220215c9bdead194a06bf", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea70676014fff9bb8598634571b4021fab704c2906399459266f79727f321d2e", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "313da6998657bc21608f4e3e9507035617057fa46e2c524a13dcf2061fd03355", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40afb49e0069d4051844ee70f68ee0fe7e5df28bda4fdf2ab34a7d278cb2d024", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4bf7db33215aa7d241a490f0e9814968778d5333358fa26734e71dba8ceb65c", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d9fce2ee73a126934cbba9460ec353324cb183628388065be578687600eaf78", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "331a8ced311d646734acdbc5eea1498e0e3a1dd35b8b3bfc1bf08535c1461756", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cabef9505ae410d269728f3ff6d03b8b2cf27c8eb11b9e6e0dbb15d81abe3c1c", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a4ad2a335e64ca3b5d808a8b67b48f8a8a90f1216bf7911b80b710a26563b1", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee043ba518b8de3e08f77fd3657e381d7350c815f3e238f0a94cba22afc3c6cb", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f0e7dee77833d2157948d7234381b709cd620dd64d84d713282965f33e75177", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d4545b5cc09f72f7182ce15d38d86de87bb327cabd72942066417cec8139800", + "regex": "(?i)^https?\\:\\/\\/robloxcutegirlfree\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d97a847a08bc7e18d93faff5b85143d224a8dd7e9ac0101bbd9687ac70ef264", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccc28586276092ec671d5af856ae7d2c4d5056761d5142f9fc2fad35ca86c7e7", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45345908b1b3baeddaefd4694158a679b60584e9dbf5a304fac9e0aceab3e390", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2547f356b8fe3432262724732f5fd5a176017d381e8d6527d643b9bbd491fb9", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f2c9960304c61ab8b6d61a1d07ae7eda9ed78f52f36e724bd42b4b2e138ddf7", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fc7722f687ff11b426a65d21d88d7ef2600da67bce503d690f671802c64a408", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0a2495374c169e9058eb37f5230f3de9fe166963b91e236e70b4e99965e1976", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2d1827c33767dced1894e654c92fa3fb67ae75ecf6c6e0b02eb1931bacb1100", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cad8c9b2be6f256ae3ee383946ff91d2948597d891ae4902b4c272fcfa578d5", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a24cf0d1ef04b04f385433ea7a70da75785676310a47b8b0837b6f6e78d5a52", + "regex": "(?i)^https?\\:\\/\\/freeonlinegamesnodownloadroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d7aa38467f4d5979352c395e9b44fe7144b8946fe26945c168714c71a5b9586", + "regex": "(?i)^https?\\:\\/\\/sharkbitehacksrobloxscript\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "544de9ad3011db96b6f8ac40ff483f4c474dd68bf4a43dd1d15e23400b5be989", + "regex": "(?i)^https?\\:\\/\\/sharkbitehacksrobloxscript\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac2e40ff4400bb831a8f7e4f66e6ce8e454283bff0441da50b6f91a1fca6080a", + "regex": "(?i)^https?\\:\\/\\/sharkbitehacksrobloxscript\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03cd4ed8d98f12be5827e7933fd31921cf7dd7275d2b97b81cdc236b9a297bfa", + "regex": "(?i)^https?\\:\\/\\/sharkbitehacksrobloxscript\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8712d149cd1f4ecc76bf2d2a3e18aa3f457f3546dcf56cabeeba4f90dfc08be0", + "regex": "(?i)^https?\\:\\/\\/sharkbitehacksrobloxscript\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6a1ff0e75daf202edff9e8116ead64f05c62df64042b1520939f3b4ab8fc6c9", + "regex": "(?i)^https?\\:\\/\\/sharkbitehacksrobloxscript\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9360a9b11612965e955a0bd109ade630bd702513fc303fb5ac94d34bebf5be2c", + "regex": "(?i)^https?\\:\\/\\/sharkbitehacksrobloxscript\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ead9e51dc2355122039e81c2f56a98873a4a90a29f7e2a55e06758629141aae", + "regex": "(?i)^https?\\:\\/\\/sharkbitehacksrobloxscript\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fd844351288229ac1be59be4746643a5e3177fe12f59cae6e1cc74b401df3ac", + "regex": "(?i)^https?\\:\\/\\/buyanythingonrobloxforfree\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a1c4b65a2c693c49eb72ff7be8b9d72d485db1fd3eb7df028fe09d26acdd734", + "regex": "(?i)^https?\\:\\/\\/buyanythingonrobloxforfree\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41bdc7e2e62ce6d33b294d28422a37586f672f2cccd2a7f19bce98ea1cd81c39", + "regex": "(?i)^https?\\:\\/\\/buyanythingonrobloxforfree\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "813c02e06bca69619c2f33612f86a056fcb07ed8145b1a60926968e82f738e6d", + "regex": "(?i)^https?\\:\\/\\/buyanythingonrobloxforfree\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d8ce81cc4adda703ee066c7ed06c0ec1072bd5f7af2e822cab5fa5223f4563", + "regex": "(?i)^https?\\:\\/\\/buyanythingonrobloxforfree\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdbe9768e7b383185435117bdcb3109ab6b4385e998f7e7ad2e68d28670c4c8c", + "regex": "(?i)^https?\\:\\/\\/buyanythingonrobloxforfree\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e4a7e7526ad75eacfbb8dadb9515952edf57f7fee6ac245a31eab446ee374d", + "regex": "(?i)^https?\\:\\/\\/buyanythingonrobloxforfree\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79c4db8ed10901538bda46bcfd5de9e38b20f949aad2886409b9215b3681020b", + "regex": "(?i)^https?\\:\\/\\/buyanythingonrobloxforfree\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0c20d28e80ee164fa28550ea561aa696a0d146650895b1aafe7cd42df979bd0", + "regex": "(?i)^https?\\:\\/\\/buyanythingonrobloxforfree\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60105833a84276b727d5e5dba79d33cc3bb1530b49cf07fe42f155a6ab0281d9", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesnovember2019notexp1\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49c06c1993e1f2e8ef797c02d97359002b8b0a959e2384207dad420eeb7772e1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesnovember2019notexp1\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd7afb33c2ee354533b5fd3bfcfc3dcf349cad050329978aa8036a7605e73da1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesnovember2019notexp1\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f64bee336d4d6aa42f794e2c4f79af0b51d94b06a74b62476889aed96af73ba", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesnovember2019notexp1\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a9d63faf52c02327f8d7fcf3013a8fcb3e1869a9046354a1cdb578a012d248b", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesnovember2019notexp1\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36c2fa9e2068845fc77ea286f8d84090449cddc852a37eedf3e5b8943f00b464", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesnovember2019notexp1\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54e3e478b195b37ba3d25f06b605a4ba613acabea9678aefa214a1de37cfd8d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesnovember2019notexp1\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c3948b9e44fa1f0ed923d85385f4766f9225938fda3ed772bf90fde0202e2e0", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesnovember2019notexp1\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2421480b160a3c5185ea427660ad4ccf6b1c1b1bbc388959485d1442b22fcc2", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxcodesnovember2019notexp1\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9f2e10341da758d9632243a2bdfca9164c168941686fc4189576b276c0bd44b", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad2dd929830816ff992e34fa179cb8fa5f789240425d36a73355ea68507df7d4", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8c3e5a1b6f1df9519b599210771ab434879b521c79d7557fa1265365a882ece", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f44d7926b5d20ce15d319c99a99290065e7c08522bb92f282491d70129edbbc", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d275fd30f0bd17dc54c28f829cc67fd24ba185f74abaf520bab9de54496ad1", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f09a91831eefc5d66cbafc713b4f2f54b93e0b0b4b4f4b0fc029d2476925a1f", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74c652189fde3d3bf763cdea856ac9fc6a144966d556d7f8395f3b860536b6ef", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03ae393da1150f227bba7d98c65077c3f200a83db73992ac4639ab57b8ce67a0", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2a822014f60c06301ace1bfac74bf110cda750e801b7caef83abec791c073d8", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3091e7fecc1e5fbcd9abad99c8415135793eaf107aa677992d96ddcf2133744f", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6461b3a433215a77441a953918af80f45f90891839d239bcd61b863a735a57c7", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c337e406092afdcf4265a64b9069bd84b3fd18b6f1b7f7ffe47b1efb14e6255f", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd75cc901bbbfbfc656a9d29883b408d9ce457a335cdf5dc2db1af093b089bdd", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ce2990dc3c29a7691d7816b13eade65305a313bcbeb0be059640e99b07bd6a2", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e83cbd77f41d38e6ecbfc21554b720b08a02425320aca6c7ffb3b954855d9502", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c080a0f1b8eeb3e69dfc4d6660bb986fa4ef94d248a001265ed4f241cb63d12", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxcodes2018oct\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8fce9ee806b93d4846aa2182ba0741e788682eff3ca359f162646f648b198f3", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4247c8f62e982cf96c24080a346439a4ce9c533f689439d3f4b189282ebc08d", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ffb8890c5bbca753ec448ffce42be801ca1e03cb03252c0bb53e0a85cbb7ac9", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5488216988c632ff26166de246f205efe03479b0bec2b7f6628892e0dd963379", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "698b06e105d5b53111c8a417b27769551bd14d7390b035a96d47a3ff770be6dd", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f15d3ce6423a74144f6dbe078a4c29c3bf2c6e4039b117c46ba745c85c70437e", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5286fc6a6b1ca68cd481499709c4a241926c25ea01cdbf97b8e97ba0c17ccbc2", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f498d8c3af2942004087555df8709a3869c9790eda833f8d77508d97c7cb0ec", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "138922758bd46ca6904edc613319d688f1e6d7635ffef3a1aa72c52fbb32d861", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce318886f84077717152bf8639875acecc0d1b60019dece91b377b57f1c2056b", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e345021a676e9c4c1e49e2049fb581a707deea556f9220138feecb75bf95fa2b", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f09ba34438e41a8f1c5543dfac2211a55fd9de95be46515568cd8647b6ac75f7", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c010ed592c643507310c11c0451b50fdd31da2baafa9d7dccb447e9f75d67c07", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27c6d2a00c3be46eef4529ed87d77d2bb220c5b0c5ce7436b0a1b6d641821123", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b4f37aed2b73a17647f0fd0d07a7e5886998db602bb3aeed10b6af370b9a8d3", + "regex": "(?i)^https?\\:\\/\\/transcash\\-suivi\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a5b161bfe4308a8c899e51ed3c188b134e25da57bd5cd95e1566d66adf1a570", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "305cc30dcebdae23dd6d70cd219401fe607f38ee41d4e03a9968751afd66df4f", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9045dafa0cf66830f711c6b83fbf73cc7d33372408ff9d645f6c91ea33a30fb6", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed577e563a292d8918e418f86ddbb770fa8161ddd60618e31acea06d13fd4e7b", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f099581ec52b311564fb65dafec4887cf635cfa11283557a40ed1c619dcd86a", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5534dfebc680bfa69c184f77e263ba18b55f017cff7f82db5b794ec42e79eb42", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7a6ddc2213fc7fe05200e84698d67d36a2b3841f86acfbae2bfdc535f9b2f59", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f0154b2dda63129d1133a9fa187423b1c00fd9a57eec0f2338ee2a97d612005", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67132da037d380e3adf429494d62e2822a3763850004ede64a05a5cc0bbc903a", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd4e3a6dd0fb23a86a537ccc293390b7329117e4c0dca789c35b550e8956e742", + "regex": "(?i)^https?\\:\\/\\/robloxhackcheatenginevampirehunters2\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3aafed4cf565a3f53a103c71c8168a9f5e251ee112c3838956350f57b57c963", + "regex": "(?i)^https?\\:\\/\\/shotsrobloxid\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3abd366e36f416e08c922ab6bc1d2dfbf17ddf02f6322f5daa57b15f01cbb1be", + "regex": "(?i)^https?\\:\\/\\/shotsrobloxid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1621be0b8ba09f2d8825277669d99cb832c4f31f8baa6d174059d5d152c1a5e", + "regex": "(?i)^https?\\:\\/\\/shotsrobloxid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c0e5013434f69dc3eeec244915fd45e2cc5c8de1ade729c5679a6450557fae3", + "regex": "(?i)^https?\\:\\/\\/shotsrobloxid\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b8f7d3eb43bf669e36017309cb78906433022c24c31d8c4dd11b0873ef5c9ca", + "regex": "(?i)^https?\\:\\/\\/shotsrobloxid\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d264c8001ed206672adc687fa806d9eaa22fb29890b493d19686e839f7787314", + "regex": "(?i)^https?\\:\\/\\/shotsrobloxid\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7d977112b93e6e2aad84654806322eeab877a707c507bbb9e523ee136abeea", + "regex": "(?i)^https?\\:\\/\\/shotsrobloxid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "060fb976d88350230968918e220ca35db7ba85940b29895d2698b05b652180b3", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12fec1a98378e0950ce4397a3cff847eebcccf1bb407199a40f609dffd88f109", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cdc3c4ecb822598bf17cfbd7f1de4d3388c26edaf3f9aaf9c44fba3f6444e72", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8451a735612caa3f555404d39416458d979815dcf76bf8efe0603a1103838c3", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fed4df7dc137fabd20974f826375439a814c0c39d611c5e488a9ce51b74be41", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eba948dad6a64899b0715f86c37b4d7faf813c97b691e10e524f5c466cf7a326", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da8d1bc538d76f60f82b953151a8e142251d557c72700697abeb32458e102358", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ea07d85e3062661968a46ed05697cc2cdb0f2340978cd5f104edb2640be3cb7", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8be036d96a9799aa4111c1c78e2357a3a1d2c4a70ff0a11e17994a223ca279e0", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ef119fee8edcb4dc0e782fe7a93d39aa2b5cd13ca2be91adbd27bfc9ee52a8d", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4760e0c49d82906cf88179414c49058477dd390a18814557cf6586d9d2c00264", + "regex": "(?i)^https?\\:\\/\\/giftrobloxcomfree\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71e3bf5ce8882c304b15a4d5d0f751dfcfef07b4e2232a1a3e1e3247dd7f662b", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7971db2b20efd3464d2ecd4e309624e547586de56014c2618269743f196d4479", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "186dbbd1ae4ffd0a01f9df63c342c0ecbb3f09ad74530e71c248f65bda964df7", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd7e5d0a2e2d843d29afe8e8cc0371f4b70283cb558e7980d54b8c04546ae282", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24aa3b4472fbca62f4a2c4c82bc9a42d9c0ae3093cac52cf504b61f87497b33f", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "757c3eab30af3dcf9ea0098032e2048d7ea923a008bc60807d715df276ff1808", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6a44461085141ed96d75b3446922ca5672ebb253ec7a1dcb4e2d5bccf1d04ba", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0709019245c0fbb98ef51a90b150decb790060ea6f12a37ac1108a34a1fce963", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1687a690d01c41375e089921854a2082f8d0f4d14c47f1ace858f06ef64e2448", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2caa35e068d87287364039eb43b9b7c2005f4f380307634fe32dc57bb46acb1", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellwiki\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95d12aa1d626fb11fe4db69de3a286e26956c9af3ff775649804cf5aea2001c6", + "regex": "(?i)^https?\\:\\/\\/personajesderobloxchicas\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96e5091894982c6f641fbeaf0e878bbbf0b5497587d26f3c70e1a41934239316", + "regex": "(?i)^https?\\:\\/\\/personajesderobloxchicas\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81e4eb17d356743ad1b1a678ddeb3d0bd01aacfa8dd3e4ed55c20d6a28311aa3", + "regex": "(?i)^https?\\:\\/\\/personajesderobloxchicas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ee71404b69385a4d4503f9d124d5bf7955a4c5e9921daf9295a29f8353c68c6", + "regex": "(?i)^https?\\:\\/\\/personajesderobloxchicas\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6a0cc7d76993bab099bb20b7a88dc66464a5f6d1781a6beba8632af941c08fc", + "regex": "(?i)^https?\\:\\/\\/personajesderobloxchicas\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "601e715aeb7bd336699ac28e13fc956a4e1333dc1c999974c8cd12f283c5267e", + "regex": "(?i)^https?\\:\\/\\/personajesderobloxchicas\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8467d8930fb22aa28afe6e1f084ee76f11ede7439e8394c3e22d3a348d5f9ee3", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0c668f9592e8bad4752a61e3a43a9137811c73fe3e58a90e90116a3547bd4d3", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ec2028d1f6409e5dfb95ea41b21e42ee27ce1d195543bad46bb88a71c1a2fc3", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd35b34bb07aaf3682cdeeef8ceef3771dfca21aa909130c06e38df45b38a700", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62e462baf15397d31c34a264d9376233c92959a0c196359bb892de784912fe11", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d446f6ee2d6dc687bc16c7fd92fa58ede7fd9b46fb584cad150aac97613d29a5", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05e862983603fb9f53cd364e97a34d4bee4dfd883675fd571a7237c53e412083", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "145017ae373743626649e8dda63a64d615ed3e17fb2e4111b65ba1133a00bc92", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "509a98ad4f74a9390ec6761a0bb638a63a1b974eba79c9c04fa97f0851498c18", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cdd3e60992cf9b0404a34f27dfc52af45b3f15469af3a76865dfdf43a5df627", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68369b532ee8e4b0d287996f79007f3e1d9e402d1f463838d8417af8bffabbb4", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a5fd0f922a990aa969ef0e9d46305cf545676d73219aaeec949d31bbf08c662", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00071a824b686855758fd8a7cf352f035be692e8ac0840dbc491ffac5513edec", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e585ffcb7f0a6e4c2fb279f0ccd41e0769c68ee56f6a75b430d7e7fd7ba245e", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4afd3d0a2d0c07d2c3bf119d2c3b7b28725b23f4d9faa33500d09f2f36bf6784", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa2fdbfea71f64813946204c3d963bfa915570c419f53ab96d182e9f957416bc", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b44d8b827f13db5d397711214e39efb5cfae589de368d7b7090e43afd05d3b6", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb2ff44f6e4fe12b32b73e6a65483da94bad575287910a48cced5c748e45f1d7", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a773e3a8ad2629b033ac600f54cb21f7add4d867d7630ddb33afa4a351046b93", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d523ad58fab71285dc202724b2b5d0aa94e73da1ec4f118be1e381032d6a1e3", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0222cfa4845a6eb733966de8a0eceecf3aeb50197a4c9e6880b097725ff3389", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c37503d31821dd96e513ef5faea37735a28a610b3fca826ede8c0dd2dfcc5942", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cc17e58deee18f59c413445c33090ffaeebf07ab93dd01cc6dab6fdc02b2a42", + "regex": "(?i)^https?\\:\\/\\/goldexperiencerobloxavatar\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cb33762bb9c5503d28d44f4198554ef9dad138127bc46f9c1ebddad7b22077f", + "regex": "(?i)^https?\\:\\/\\/firstclassbluefacerobloxid\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa2670d613af2b90c41dc66135f62c3ced6039ced3e6148646dc2eea8fa6fcd0", + "regex": "(?i)^https?\\:\\/\\/firstclassbluefacerobloxid\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a8039f2c20dd8f3846d34bf97d95cc4e2d3d7a6a9bde93956293dac488bc1c7", + "regex": "(?i)^https?\\:\\/\\/firstclassbluefacerobloxid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d46012a754d425e856e949b33808d771181d42ebfc02334f80d367d1fb924b0", + "regex": "(?i)^https?\\:\\/\\/firstclassbluefacerobloxid\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71737037536f3973197a9633e3b596bb1085e8164d95f46b7ac8780cbec8dadc", + "regex": "(?i)^https?\\:\\/\\/firstclassbluefacerobloxid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46aa503499bb2f0ee964699668802099293d7928c03253d0aaa39d63654c5e3d", + "regex": "(?i)^https?\\:\\/\\/firstclassbluefacerobloxid\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c069d6e9c4efe354bcbdd9ae143bf5ef2807a4ba27a269f781b469b53642941", + "regex": "(?i)^https?\\:\\/\\/firstclassbluefacerobloxid\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96c17fc4697b7f0ceaa96faf6924e78691304fd793cdaf505e430bb32b21d269", + "regex": "(?i)^https?\\:\\/\\/firstclassbluefacerobloxid\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d0e1759125e06cfc7865908dcc00815151c070f4e843c31a67add89d2fb8ee4", + "regex": "(?i)^https?\\:\\/\\/firstclassbluefacerobloxid\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d15cc74c1089062b9a4fc3c286232eab623a00be0ef8af75990cf7adb7888d8", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxwin1\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b1c5b2a524587e323a236babf2456bf66fce8832c32a0037c4414a81b5fdad2", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxwin1\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7ebfeb3f826362409de96a4d28f9321a3346b21c13a272c2e0dd4cfa9aafe7d", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxwin1\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2e67fd28dcf4dbf71e9f0e8da0a7c760c2debbc6acbe55bfc7bf43e9103a951", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxwin1\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ebdb7d8c747de3382c5c30ae5ced977bbbb4711ee5963e9bfbc074d50c490a0", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxwin1\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba1a04f11c80a17a51541f7799e5d7e5c0bba780324d0a11370bce6f3abe248f", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxwin1\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "465c9bd551ad39a34e8ad3fec9c1eb1542fedfde72c4081d2d8ba8a68a972573", + "regex": "(?i)^https?\\:\\/\\/buryafriendrobloxpiano\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93563339caa221b3b105ddde5bf034501bb02332af6fae8a856c7f40acc7e45b", + "regex": "(?i)^https?\\:\\/\\/buryafriendrobloxpiano\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adcff0da0f91c7b7824b3cd612f6c4c9f13d4a8f4ca7aa71dc4588eea42752e2", + "regex": "(?i)^https?\\:\\/\\/buryafriendrobloxpiano\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7cf7c9e7bfd5ac43cbc6af7dd1f839623efffc050a6ef9a5226d81ad4920283", + "regex": "(?i)^https?\\:\\/\\/buryafriendrobloxpiano\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffa20999f542550381dfd0f8fa2aff70e4629e02b44d5d22fe582032f4bd8156", + "regex": "(?i)^https?\\:\\/\\/buryafriendrobloxpiano\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c0668490b3dd0c6c7d7b6dfab3f34cb29be62c6a9f4512eb11de8620e57b1de", + "regex": "(?i)^https?\\:\\/\\/buryafriendrobloxpiano\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe3eaaaf4c4915dc2024d0938eda7019dd0f36f0123f6a69442a911c616a9bc4", + "regex": "(?i)^https?\\:\\/\\/buryafriendrobloxpiano\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbbb5a02787b36618bcacc5df5fecf0773d3dc953c86c9d066634b41392fd787", + "regex": "(?i)^https?\\:\\/\\/swimtrunksroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b490e71e5958a4dd482816d1392d9655a42bd6cafb4ed233734bc9ec07854e26", + "regex": "(?i)^https?\\:\\/\\/swimtrunksroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c208e5cbe7a1ef19fa34a47ac4d131c7f5d507a70c231c2022a0104804382f37", + "regex": "(?i)^https?\\:\\/\\/swimtrunksroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+f2sblFnVsUoi0sKFalfGXxwvatDEqZRjI7SNNkxk3kAx[\\/\\\\]+673Dx0Vh6hUsBaUsxRZrxUCsN07b4s17D0Bb68HAWEYx\\?targetUrl\\=https\\:[\\/\\\\]+beeflambnz\\.com(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+Q0Ogj9074dAs6dvFxp6u9i4sxUuDJH2AVIaEwqgyx0ox[\\/\\\\]+673Dx0Vh6hUsBaUsxRZrxUCsN07b4s17D0Bb68HAWEYx\\?targetUrl\\=https\\%3A\\%2F\\%2Fbeeflambnz\\.com\\%2Fprivacy\\-policy$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+Q0Ogj9074dAs6dvFxp6u9i4sxUuDJH2AVIaEwqgyx0ox[\\/\\\\]+673Dx0Vh6hUsBaUsxRZrxUCsN07b4s17D0Bb68HAWEYx$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+f2sblFnVsUoi0sKFalfGXxwvatDEqZRjI7SNNkxk3kAx[\\/\\\\]+673Dx0Vh6hUsBaUsxRZrxUCsN07b4s17D0Bb68HAWEYx$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+d4i0x2Dxbu7LIJD30G0V4QliyQzvTc8wXBONENiKSNEx[\\/\\\\]+673Dx0Vh6hUsBaUsxRZrxUCsN07b4s17D0Bb68HAWEYx$" + }, + { + "hash": "ba51fc0ec3ad2d915175b585348e5599780a242f9bb8ff12d67d345e7e3b6870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+t[\\/\\\\]+inXRxU3nx2iNCcCXn3K7WsYDBOWUkHDOO6nCz5GcCbIx[\\/\\\\]+673Dx0Vh6hUsBaUsxRZrxUCsN07b4s17D0Bb68HAWEYx$" + }, + { + "hash": "96cff3bd682b12389d0fa16121794c8e2e28c1cec1d7e6fcd8091a1af47375ce", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d152dbde340e3305928dc615b2f290499fb7c069365d5f4e7c037146a30ab5a", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83a4b6c5b5b971e4ad6a19cd51c397e18019bc8aae1b834e4b0e6af0a2812265", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99e36d9cdb66dcc72e9253b9f8a9f06fc73cb7fb7f9b163aa0db62b574a7d95a", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffa239bac29f3370f996f22555272578c00f34b05dfa58e36888b657101f61ff", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "474a42b2a91a8894eb73d1cd81483459236da7b2997a27f454182095a8c31cf9", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6884c3d97334aa9304968bbab323faf19fa9f9941ebaa49f1e299a4a74243c8e", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99bc9d929486e382fddeeea74fc500500f8da48b464b67b6ee2b9406069a2ce8", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51c678923f52b9585c83833f5d2a8da74ac48d0b763ecbdc90f35f5207340d30", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4d9540463a1f1a65ec38e049e87cb598ab7e610efa7e91d829284a53ad16938", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07881081d898f5b6660d2c24c9d7f9a7d9793a6c194ba5271cebf5036258f631", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec50d288ddc1cff2d235b230d43272902ddb5f494e5921499d9c385d8eda2313", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11bb10bfe2357613e82ebbb23560e605e7f647a91d63b3ee25f41797306a03e4", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd4e9289887843c8b51459dca86dffd436763580b2f189931d613a138407c9a6", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c58cd7431b75e78a1675226405e8c1f1015b94e743e8a7440524b0e99b7da2e", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "073fb09e77ad7a6fe79fc7551d0c8d7cb44f7089269a771f871a5d7923f390d4", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedohospitaldomalparajo\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57d079ce820b16cd4e43355dae0884361fe2a72291ed9175de5eba0fc1c31508", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b87efc27a23466cb74fc6aea6cfa0d12ab9da9cc7dd81e5adf9e37ea86178dd9", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "960fd673f9704dc45ad3a46b4fee3c669bfbaf41e89e5bfac2f5732bc7e17e9e", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6183e346a8404f22c50a139b057034d57ed5de1de2edbc7a6dede2304d5d2e20", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae7c990451975d7ea2743e3aa210496e883ab916c01e29cdfcecbbf5f95cf03f", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea7288216f6fba605826c7bb21ca13f9fc8b68471cccf0404d7e0e3aea7d836f", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5906ef37bcc27220f9154feadfb5fecdeb40732effcb8d7fbd5debf17256787", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f5ad534e9c6b1e0dc87f841aad9fa4a7405ea9fa39d0c1183e1815d2325d5e4", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64f23b0bc6f89b3126b8f5a4820d8ab2c231e3e7c22f6444e23b8f60767d9bf5", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccc23250a8476b82f59e07581de959ae89be8b23f10a967fe4178c308bd22aac", + "regex": "(?i)^https?\\:\\/\\/euquerojogodorobloxtrnico\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "063affabd66f756d7a741e5a3434e9812616bde1694c8e0e7ab4857f29b0c62e", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab9ac008fdac8ff1ed67ef28dd81316a7deb5ecee1e8831e6cf0d83943baaaf", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6993fc46c5fa2a26941458743bfb34585ba92269b6d44ac5af023871c8538db3", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0659930bd31359456b877720f0a8b11b5087d77d571665e66a989956b7e5bff1", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "226373cdd3ebf5aef1ed275246b63e403dcef41c7b564daa28823a95060086fb", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbd0decf866a83c0711520601c9e76a4bfe083448f31ff9d66bff8f48267b477", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7676139ed1feeed05b2c4d6f9bc1d2e89e07274c89a5752af9c659b750322fa3", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c8b95226148906e91f6a89e0f59de3d123727e154f5b8cc6786baede61c3d84", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84546b965d6d39ce5381e7f67fbf47b4d8ea54bc65892868e673d59c30b72f87", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f38f24d4ed62d166e7878326e5e83f3459f305b3251dcb02ecddcf9482aa097", + "regex": "(?i)^https?\\:\\/\\/robloxnationcomfreerobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36427a04691742652bcb07bf9b084d30860a05854bb0ca50febd1b706eb18ee3", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d3c569f53148537a5a82156f3952e070daea70b3da3f80ad74d6d5415b160bd", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7165cb5d9ac1eb481d86cde9ad4ecc3c3b32cd4b50110884a404feca80913f9d", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "633fb5bf97667a3b31c0fb002e4d6331db3f11d85055eecac2a6e5415d123830", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71df9f9e74653431d235a29e59d6ea350b6524ab213f41cf8a169cd31e35bbf4", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aac9b06751c413bdbb304cf413b3c56a0cb3d40454116e0f177496c7c890c33", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "852e7dcb84d5a93b5fc8e056f4014d13ce1ceccfe2beb9fbf8b7c6e06ffb6f5b", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5ef3146b2cbf67a3eb26ffcece4d0e35eec8b1033e0e66dbe114feea801e9d", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a491359c934d5c579597b81b364878c02ab7b7a8296a427a76019016e01fe820", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f611291fa73bf029c6a5ebfc2f997434da463acc35b14b31420febb15dd14c34", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c21d80750e2bdd3d07bd3061946dbb928b4fef7f05c0bf4bdc3fc6a18616b2a", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "014801db5c7dac7c3e1d0a5006563e337c3a4536b8daad7c1da82b3856b8fbea", + "regex": "(?i)^https?\\:\\/\\/cabeloderobloxsgrtisqueprecisaderobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "325c45f1aee39572e427e8189291f1d67f48cfb6c618e6c6fec5ee6775255df2", + "regex": "(?i)^https?\\:\\/\\/vdeodorobinjogandoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b024854d76331add60f6c5684a0f03bb62238ee2de6183692cd04ad97e844b9b", + "regex": "(?i)^https?\\:\\/\\/vdeodorobinjogandoroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4580044d4f2817ca3ddc443d42a3f037cc0677dfc8599ef1fc36ae8d5372e1a", + "regex": "(?i)^https?\\:\\/\\/vdeodorobinjogandoroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f828708aaea05400e550983a93a862223b94a157052f0cf15f0674b0076e345", + "regex": "(?i)^https?\\:\\/\\/vdeodorobinjogandoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0056c78cc18f5c9115bf08b72d12b3b8067dda198a988126eea45426261c8d2", + "regex": "(?i)^https?\\:\\/\\/vdeodorobinjogandoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba31226030766ac1d52a02ea203c8400f702414d0867d4c2625a71d2b0ff6e17", + "regex": "(?i)^https?\\:\\/\\/vdeodorobinjogandoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c72c40b47ce241c78cf9fbaf433d939947aaed81e19cdeffd6d8280feeb7c66", + "regex": "(?i)^https?\\:\\/\\/vdeodorobinjogandoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c88dbfe08401884b75ff8727bd76000ed61896db80dd64ab35329211669f4343", + "regex": "(?i)^https?\\:\\/\\/vdeodorobinjogandoroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3a57c58c07479d779498e2f10bf4eb5be5cfcad20e3e6c24d652047970fb28a", + "regex": "(?i)^https?\\:\\/\\/vdeodorobinjogandoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e816b291f0792192bcfa355eebc7b980314b2913150d93f56dd46978c3940c0", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclessimulator2021moneyhack\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a70fae8efe99613c543c0a098c9b812e33fba166801dc02a3dd3a290f9bafed", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclessimulator2021moneyhack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "daaeb99b089aa87ce43763c35e676b17a156b490a6f2cf43d8e824486f822496", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclessimulator2021moneyhack\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be367e8034fa55e471920683b3f7e40a073f8bd2e02fb240242df103b590cc4d", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclessimulator2021moneyhack\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47ce97b5f1c9f876569d4b8fd6ca8658c9f5f39e7dd88c12db8681ec87bdcdd1", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclessimulator2021moneyhack\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b96c516fb26ed1558853dd1e80f98639252e15bc3758fc797b5f904260ccc21b", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclessimulator2021moneyhack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0a7eeda10be923dc79ad25521c34d8c5b640bc27c5f5a42807a354170e731e1", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclessimulator2021moneyhack\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab5eea9ba94be217517d0878fe016def7021b49a934e9e7e23e004938b7c78e4", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclessimulator2021moneyhack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e606e1d18a8d5d34b429dd9c097b22205c0d289f14b0decc7acbe5391a4c09a8", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclessimulator2021moneyhack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26e68f720becd6c5a458343a7f97766858c593921773462ad776b9eda8476745", + "regex": "(?i)^https?\\:\\/\\/robloxcodigodehackpraroupa\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d590ba649fb6ab20de1c3034b5fad6e6212f67a8a55f911c357bef160a87373", + "regex": "(?i)^https?\\:\\/\\/robloxcodigodehackpraroupa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "317db62975804067b52b7a3092f6b3c7f13149ce70ab742f989276d986047790", + "regex": "(?i)^https?\\:\\/\\/robloxcodigodehackpraroupa\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddb77eaa6f59bc4428274bcd4deec1514b224cf957ceddea78230ee20dc062f9", + "regex": "(?i)^https?\\:\\/\\/robloxcodigodehackpraroupa\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e175491df647218da9bce09cc4cbff4c795d31c28afb3af209b5414b10b9f956", + "regex": "(?i)^https?\\:\\/\\/robloxcodigodehackpraroupa\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb2a0d8e4ce4c1a847ee38c10c2dc9dc45630318c5f798ca205ead31103941a9", + "regex": "(?i)^https?\\:\\/\\/robloxcodigodehackpraroupa\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "992ea91006585cd23144088b8fb2c2d8cf34897b2eb9230ecc70fc5d6db66541", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df86eb4dde55259ba0132d2c3b96083e2b8dd8e2996b17eadace7912711428a9", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0089b58d4313110af5d22d391c3a3828dfa051c5778fc5a0663f1a1feb10b195", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "799a414be5ae26f337230a2dd499bad802c9c0c32d640b95572275b83f127935", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e70c4301521f82fc4693654f9eccc18073eafd422a13bb6ffd88a1f90a230cf", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d26393e95b6a25fec74e99628edace8b16ceed2a77e348c987a9dbe5bde08d49", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7165905a5f9e430ca213d5d71220f9055302a09cd10e68a54128807b7c8ea318", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3d5313882b37daa1b708988f8f210f3d227bdf37480a6c0022b8f33912f5f9e", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fafe3f6dd1eda0c2dd3c29f1c96a481ccd152d1935615af9eb571d8fa357d8b", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd442cab0e777b3e664ce88edad711e87dd232c5ca339289b98f8ba9bdfcb707", + "regex": "(?i)^https?\\:\\/\\/robloxtowerdefensesimulatorwikicodes\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba4d00c8bffff727fc208c1ae43b69caf80c386b7234b642edf22ae62c1968a7", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11de7b87643ac6406e74886c5cc22e8f847a693fb4021391e13439c05b01cee4", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e22735adc40184fe4318cc768f4edcf9a4de591a8602fdf7208ba111c1591827", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5086ee7f09ef441e4d392e442bfbff448ce2f7621cc98199776f2a9da6ac245", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4412e9b7f80cd27080211753261141e6540182838383f8eda7a4b4836218d07a", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0179d7c16d35079cb78d2133b000e99bdd520e6a9dabf7ced940f0ee8016e771", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d36bc6387b968c6412a531d19e59a3c4da19119b7adfc75604a5d01a88b6d8a7", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc3be24014e2dc12694185c0244b44b24f446a869d2396d4f0f261557c28a76d", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e0435f5bfd8b3b019f54dc5d62d4588e007d24e3d1545ca44272ee92f6eb2c1", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa9c55182ca292328e51c2c31f14003d1194af22eea45fad6222810899d0b440", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee103a23afa3eb3bc6bd4d2a94f800d035ff594d8de6f5783c8985472fa4b04", + "regex": "(?i)^https?\\:\\/\\/commentgagnerdelargentsuradoptmeroblo\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8328bfa2aad3a0f921c1ebd83b526ccc7d1a924285a17949373eaa216e0d72d3", + "regex": "(?i)^https?\\:\\/\\/robloxrocitizenshackpastebin\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e5e042bbc92aad53883b7c812c70fdf52020d7f4e4efcc05dfba1c476bead90", + "regex": "(?i)^https?\\:\\/\\/robloxrocitizenshackpastebin\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66c9c1217abcf3779635a1c525afe4a84f232609205d8cd790d3c9449fae1180", + "regex": "(?i)^https?\\:\\/\\/robloxrocitizenshackpastebin\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f79ae484a2fac6c66e4c1faabcc518777658e0dd014b66f7531b635a02324926", + "regex": "(?i)^https?\\:\\/\\/robloxrocitizenshackpastebin\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08ed404663f41f4c11fc7fadc352451b699981d86a1ef91184262f39d1cc7f3", + "regex": "(?i)^https?\\:\\/\\/robloxrocitizenshackpastebin\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2a38e89c6f4c585a8c88ab13f0eb70cd789421c3c7e4531ecd60d01f72c8968", + "regex": "(?i)^https?\\:\\/\\/robloxrocitizenshackpastebin\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dac1c493ef1eef4e918e751ec38572cd7656e91377784c55fd79f8f403338e4", + "regex": "(?i)^https?\\:\\/\\/robloxrocitizenshackpastebin\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b23f7cc83514cb3afce384e84f9366460b50eb524474cc0205b2e5ef8d00266f", + "regex": "(?i)^https?\\:\\/\\/robloxminigsimulatorcodelegendary\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a96d457f1fac6a40455f3059e24999e88c3e375404a193857a0b237b85c3761", + "regex": "(?i)^https?\\:\\/\\/robloxminigsimulatorcodelegendary\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c211ca01baa44ffa639248a6af27a659b76b0e56feb5f58e9bbd4efd8bb8af37", + "regex": "(?i)^https?\\:\\/\\/robloxminigsimulatorcodelegendary\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1661b6c8375bfe2e6c7deb9b8e4969bf7cd69a4c6c187b3d8ff5917906ff020", + "regex": "(?i)^https?\\:\\/\\/robloxminigsimulatorcodelegendary\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbd595932e2464fb864666a1b58f8421d651b8b092c7ec030096e3ac5a03a9cf", + "regex": "(?i)^https?\\:\\/\\/robloxminigsimulatorcodelegendary\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a84d3bd22c4fd57006fabbb469bc4ef80d6238660ee53921c20b3b03526cb9f", + "regex": "(?i)^https?\\:\\/\\/robloxminigsimulatorcodelegendary\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c069ef755f8fe3951cca0cbec46cc2cf324ce14d043ce9d2948eaa8092c22ae", + "regex": "(?i)^https?\\:\\/\\/robloxminigsimulatorcodelegendary\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a677920ee2951615b4ff7cc3f1874eef3b93891ac1adfe7a170d65500d903cc", + "regex": "(?i)^https?\\:\\/\\/robloxminigsimulatorcodelegendary\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f5e371ef5a5b4b126fa73a39b81abc230b08b73560dfe50a02bd0d648f934c2", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbem10\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0726ac1f5905f8f2402bd630f2189ba53478a76dfffeab304d8730754127031", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbem10\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f113a263dacdc18b6cf64948124c5d39f827c15a99f0ab918bd0a07d63d0853f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbem10\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "457077fadda3bbb55183a1fe317637ee6ee469bf1048851482ee863001847f21", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbem10\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79e0a63a5c06bb29124b2eaefdf515490623b9fab84c7e4cc15bba5e16689317", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbem10\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29141fe8bfdb507d10fa69ad9417e39cfa4806cc325683ee3a28b10d96163773", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbem10\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbd3e1ca831a506b77a4d9c91516feb51c2a1fc2744a42f9cdd4e8940283f09f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbem10\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0efe99d3d184c09a9d2925ab7fbf447f5fbae76d38c82f012d243a51cb31f9e8", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbem10\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fdd4f7e3b028c18e5955720b32d59864117fdfeb9ff06a01b0e35ef9876feac", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbem10\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be4b051cd1538f7d8edcece1f23a676eae03ea5d90807b51095648b31bfc165e", + "regex": "(?i)^https?\\:\\/\\/comocomvidaramigosparajogarnoservervi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cb7769b484983343d10bd891b256782bb431a344369121bc324b81084cea127", + "regex": "(?i)^https?\\:\\/\\/comocomvidaramigosparajogarnoservervi\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61257092c60904a1ebed6d34ce52a7db5cc9d2e9a43339ed48a9e0ad0a9b4448", + "regex": "(?i)^https?\\:\\/\\/comocomvidaramigosparajogarnoservervi\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a3b7a9577dd30955304491241501d9365c81463167b16f7b8eaecca154c263", + "regex": "(?i)^https?\\:\\/\\/comocomvidaramigosparajogarnoservervi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "304b984aab7714132e8ced321c06bf445ad91966151c9171a877f67e2d9d8a30", + "regex": "(?i)^https?\\:\\/\\/comocomvidaramigosparajogarnoservervi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fed4bbb23e63a0288348a2467a0757222db04caac0853972f8d2d6d1afb7b868", + "regex": "(?i)^https?\\:\\/\\/comocomvidaramigosparajogarnoservervi\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4be322c9ac4a29dc9f78ebb49c04c3fef37f3c8f28f02121a7f671b331d8312", + "regex": "(?i)^https?\\:\\/\\/comocomvidaramigosparajogarnoservervi\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8624aa066217d97c01f555d7fe0d265a14eafa7617af516983a31b26a7025f1", + "regex": "(?i)^https?\\:\\/\\/comocomvidaramigosparajogarnoservervi\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8294720dfe377ffa4e56f719e5f41b0f8347e7e1f3d0a9137a46572f7b627b0", + "regex": "(?i)^https?\\:\\/\\/comocomvidaramigosparajogarnoservervi\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aa5d8f6293fda1ec88b546575d84c49180e0dcab704b5edda5ef58c16888be2", + "regex": "(?i)^https?\\:\\/\\/robloxdinosimulatorhack\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fea60f80fe6196c55431894c6b3ade8aa1b7d78e21d2d2208d9d6bf3e1b59441", + "regex": "(?i)^https?\\:\\/\\/robloxdinosimulatorhack\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "483c8f5d68fc8846f6a28125a2bc5341e0e873eacca19bee0b95b574afd58ed5", + "regex": "(?i)^https?\\:\\/\\/robloxdinosimulatorhack\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7609e5c89aa3838194926d3563b17a146b39676fcf0b81b721691f30dc8b0b6a", + "regex": "(?i)^https?\\:\\/\\/robloxdinosimulatorhack\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03cab6792065c4a10862a5e8c03928babf803514e958ad00a67371d188b0e9ff", + "regex": "(?i)^https?\\:\\/\\/robloxdinosimulatorhack\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627ccad7afed42e65bf091da5121665fdc39e317f69b90419723284975951206", + "regex": "(?i)^https?\\:\\/\\/robloxdinosimulatorhack\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a29007460fc7296ae57de153ecff06df5884f4b5befcaf9a9538414009caf883", + "regex": "(?i)^https?\\:\\/\\/robloxdinosimulatorhack\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4a0258b7d7e9660168bd2f23b8b40fa1624367110eb6e4c058ef5ad0fb11af0", + "regex": "(?i)^https?\\:\\/\\/robloxdinosimulatorhack\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "324e9f7293753df202a81254fc520e9184093b174068e5e3497ae2cdf90cf1aa", + "regex": "(?i)^https?\\:\\/\\/robloxdinosimulatorhack\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a85f998472c429caca148196d5974e051f10494a28141a027560e1d0ccf72283", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df57fa8b57881752f34a836bd06250d60d68f9f1adf076284317dd340aaa282a", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23986848e3242648bb6a4ae80574e3590db705d318d73a2802de633fdc99dda0", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a757e5f49ea10c0bd377dea9ff495334e57ae8200d53fed02aa0eb85301365f", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8cacdfb4f13c495c0b59da501cdfb1db747f114d1af7169ac59066cdb8e7dfc", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3905b2bcfaab34a982af07d5296cde3198d8a06d867569ab8ff71bc5652709da", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "851c1fa5560e29d9506724a0fd5bd59e5dacbd40e3306369d0f7c8266e051c6d", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96090f70a442038da6350fcdbaa94a1c36cbd7185054080c66b60f50f7a50ab1", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a87a32f0ba90da480aacd09568324489f96c3a27ffcbed62eb501cee3b09d83", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a7b330b00d6916947ea806445f553f7a30a2c608cd0c7e8987e82ea35b9d029", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24132ee8784e3361e6e5128ce7a347849b676161fe7eb515be257488a2078651", + "regex": "(?i)^https?\\:\\/\\/robloxfreeshirts2021\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "585c97011c107a6df81035bab9868a8298a35ccf2de93583e374ab4d41af743d", + "regex": "(?i)^https?\\:\\/\\/jogosdecarrolegaisnoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e51a02ef534072cc73ece358df1282c1a1c9814c2edb1e5e75aa53eaee1ee82", + "regex": "(?i)^https?\\:\\/\\/jogosdecarrolegaisnoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dde02a764c5d4efe8fe6eaec62d97fb9e1d87567ab71fde60fd1b4d46e7aefa3", + "regex": "(?i)^https?\\:\\/\\/jogosdecarrolegaisnoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bfd2a4fb52423f0eeead791deb599f32775417e603069b4008ce1b3d6e22106", + "regex": "(?i)^https?\\:\\/\\/jogosdecarrolegaisnoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0131ad0657e25357d07f0e18873a9fd2ca3130b0524f95a98746a2d54f45f074", + "regex": "(?i)^https?\\:\\/\\/jogosdecarrolegaisnoroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f79887a5000bc7a61eee76c5579a77904ba95ca6a9b688a6bc82fd6840ba132f", + "regex": "(?i)^https?\\:\\/\\/jogosdecarrolegaisnoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c87e50c8b284a919247ced256ae48e40135a47b3ea5ff1b1aaca378f22406b63", + "regex": "(?i)^https?\\:\\/\\/robloxcodetogiverobuxyourfriendsoryou\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32b381cbea6f4712f5a4f636d6f28b26b0e33c2b39233c1826fe1607169e8fcb", + "regex": "(?i)^https?\\:\\/\\/robloxcodetogiverobuxyourfriendsoryou\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c97c10c5a21f6a74596a49ac3d116dfc30781bd94bc30d0fc1e2dc146db59a4", + "regex": "(?i)^https?\\:\\/\\/robloxcodetogiverobuxyourfriendsoryou\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12861462255c5deadb120da37dec8d43f19aa0803d3b906319bf83be756ef4fc", + "regex": "(?i)^https?\\:\\/\\/robloxcodetogiverobuxyourfriendsoryou\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2996fb555efad46a1f63b57ecc45537c7e8f000ded219d1ff6ea1e1e06982ccb", + "regex": "(?i)^https?\\:\\/\\/robloxcodetogiverobuxyourfriendsoryou\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "202ac7d6800b214d0f51f7fde47ea87acf29a89f1b390988ed1eef86c174be1f", + "regex": "(?i)^https?\\:\\/\\/robloxcodetogiverobuxyourfriendsoryou\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656719ccf20c2a88c7190c74cefdce482ca95e4a84c31442ec47320bead0b668", + "regex": "(?i)^https?\\:\\/\\/robloxcodetogiverobuxyourfriendsoryou\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7c18f6af75e7ae258625a48e07b98574918a3f305560518b6b7b3082289e89f", + "regex": "(?i)^https?\\:\\/\\/robloxcodetogiverobuxyourfriendsoryou\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e31a94d12e216cf2583964d838f5ff4f2abfa5c56237aa40bf9f72253065da8", + "regex": "(?i)^https?\\:\\/\\/httpswwwrobloxcomusers295167567favori\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b3fd152a81f67acee5b38f8fcfa22683715b28c834b16206f973655f0cacadc", + "regex": "(?i)^https?\\:\\/\\/httpswwwrobloxcomusers295167567favori\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "897bf8ac933a101488049ef15428b08a9f26c7256e30dd63e0d3b5ebfb79a32e", + "regex": "(?i)^https?\\:\\/\\/httpswwwrobloxcomusers295167567favori\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b77b71643014c27bd97cf17fb6029cc8e659670687c0921863657e9cee17308", + "regex": "(?i)^https?\\:\\/\\/httpswwwrobloxcomusers295167567favori\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a8d05d6be0154f93b239bff66290ca0081fb578deda4da9706b99502ee6ce27", + "regex": "(?i)^https?\\:\\/\\/httpswwwrobloxcomusers295167567favori\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ccb7250aab136f59dcf158fa0831f0f8b5f2184a0d403486e84d5ef6688fe27", + "regex": "(?i)^https?\\:\\/\\/httpswwwrobloxcomusers295167567favori\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac970818ba1feca035099d99ddd2eb1c3dfdd27b809affaa2ec8136e698cac7d", + "regex": "(?i)^https?\\:\\/\\/dragonballzhackroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a6b1265d8217fffbe490357fcef682d9a2709be637d1c4189c83eb809841731", + "regex": "(?i)^https?\\:\\/\\/dragonballzhackroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5ddab37292cf635051eaddd89bd6d9f5acaa8167910d0b40f9a926f2a5459b4", + "regex": "(?i)^https?\\:\\/\\/dragonballzhackroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51bc06f8a88a5cf2bcee577618a52126304cabfc750daf260da1bef4c27d0fa6", + "regex": "(?i)^https?\\:\\/\\/dragonballzhackroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ba0b78988e545e58f640fec1cada4be40fe9e9f6b49f6997e0325e9742ab694", + "regex": "(?i)^https?\\:\\/\\/dragonballzhackroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8463fe7837581dc923e43cf0f8d130c0e981c5333b3db84e4e7c7fcdc5c9789", + "regex": "(?i)^https?\\:\\/\\/dragonballzhackroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96e68ae2f0b586d464a3c8e5829441e6517569ba0787d85bbc0d9d939a1f3c31", + "regex": "(?i)^https?\\:\\/\\/dragonballzhackroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "609ca8da9990eff39ae15330572325b2c112d4b3d2fff95a1cea2162313a945c", + "regex": "(?i)^https?\\:\\/\\/dragonballzhackroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe359bc82c3d54ebbfdd182226ec7770635ba9faaecaeb05a660524757d3dd23", + "regex": "(?i)^https?\\:\\/\\/weightliftingsimulatorhackroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd78377999d71a5c264a649ba1e4fa699fe4faba25ea3a85e0e9a7823c0fa711", + "regex": "(?i)^https?\\:\\/\\/weightliftingsimulatorhackroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b62c8b744a4aa4e626cd0273bf83eeb9f2c96725bc67da7a1f0f2b221111745c", + "regex": "(?i)^https?\\:\\/\\/weightliftingsimulatorhackroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df2cd6b5f62078fd5562e94ce6c8489bae339f5f9343378e443b93f83e645d56", + "regex": "(?i)^https?\\:\\/\\/weightliftingsimulatorhackroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c8836e3a52e4b0895e89647b01fd05d382439ed173fb77112e89666ef029024", + "regex": "(?i)^https?\\:\\/\\/weightliftingsimulatorhackroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72f0a22877b99f52b252acf37ea998658f6e3c225cb141faf86efe8b16db8464", + "regex": "(?i)^https?\\:\\/\\/weightliftingsimulatorhackroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c667262914f05b87b93c2d3ba02aa59d2bf47894ed2843b3162f074669a7b686", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd214a6c1806547e6cc020afd914e9c3770c23739a2c1a4325d2284c80540f36", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "171cb66d903cee8a3b64991b2299e4b9554647a0df2eb366c8cc7ae885073e5f", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b66536784368f109a2e4f87dbe6cfa5100c09cdd40d70b1cc8425d702923950", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e26a0e2506a6e28c444e369f36995ab1502551d959cfa9ba5c8688c4c78d545f", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dacdb67f4013e7eabc680b50eaa30bbf71401768e89709156b835b28d413d53", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39283814f66725edc7ae77a3d01e390e3e6a7eb03aed966e645d09d1b56ff9ec", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a31c10044826958566d8ee304a1a2cfabb31cff618bba11d2f086ff48475d25e", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11f54c310ae5ec6992443ddce03c47e223b5cb8138ce763687ce8ee5f379d0a2", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4781f99cc8a2059db590e70cd82acb7335075ce2d2ab113826f98b31e70e50a", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "250e4c7e6ac4ad44d7984aac1a6021874f4a5046481163a8ea2b758a7e87da95", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5d80e6e02b5ba49f9668dd68493555d1d8b175012987fa809404571458500f7", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30ed4cda82ac9b91cf5702b4041bc0a9297f10684ce10469cea6a2d305142944", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15c6dd18ad669ad894a5d072699ef1a9c968454ca99bf5056429fe13776b9cea", + "regex": "(?i)^https?\\:\\/\\/comofazerskinfodanorobloxsemrobux\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d682a547c2baca50d2ee3198ab9ae8764e0c2d5402977dd205ecbc1164575da", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "337c5f18ad575155d76d433061e93520ccf992eb2b5382382379f76dd360f3cc", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b471a829c4315ce9a34afc45bc717bd705267f7ed06bf3b06b9247bae32710f1", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75d2b4ea1dba7952a252db7a9ef366491d6ad041838ec916f579ba6674b2f60", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eda928842cde4014368bcf39b2a9102c5b5566b04829f453d0eb8a5f5d2df14e", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f08bd9d99470e63a8eb7813c721774ef63902db21c9309af6149e10c5c59903", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c33aa9e66b514e63ce1dfec8f1fb7a39687de2941c005512d29f73a08f196916", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06f103c0c1af8d31771123ef5465f15f1d5a7987142ac65b7d91d79408df6b9c", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "507dd35a2640e50ff99b2be6c61fe8de07bb18b5bd54993559507043172c605f", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e1234db717e2bf9ddb4d5628137f5bcf13adba16a71a40b857e9bda1d081abc", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f21cbb83aa5339d4f3f6982059dde00b814132e031e361aadef12665bd9db26b", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba3d159ae0a3f9655e701c0dcd008b36508cc736b7b4d27efe66966b4ffdb53b", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a42fa3ad5ab56a4904c42b3498552f8c39fd46a93142994c81d0afcfd4b800a", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxclonetycoon2\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8080cd6c80fc70d81447db40105e415d0ed9ee24380720faffa5917d61b46465", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AXoAAAD1bkkAAAAAE8IAAACK6pkAAAAAImAAABxBAB8iNgBjTmZ2frZZw17aRw2TEZWrvCGdBAAdcwA[\\/\\\\]+1[\\/\\\\]+Vu4ITuhZ3MSkKMtPrxyRQg[\\/\\\\]+aHR0cHM6Ly9lbGF0ZWQtcHJvc2t1cmlha292YS4xNzAtMTg3LTE5Mi01Mi5wbGVzay5wYWdl$" + }, + { + "hash": "f1139c6707aaaf2791c4d51ee313af66dc5b2566db6546a7f3f9a08bf3f16385", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c8a53c2c463b262e93f8d5bd12f5d2e1e6a204e27ea7125c1239d41a4cbd604", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "799a79f135051a5725aff81038871195fd1b6fb19c4611d3a27fbc9994220891", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf684ea9170139e25d69acc8a0b3010ada46485a6e3c26ba020475d44e4c135b", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0684db8e00e64932a7069ab908a5b66dbbd73665c36edcb31c8b3287da8ed541", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "892ad497074fbc58107688cf2f953c3a176119e51b5e40b26bca5baec07ba809", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c480312fc793740994efe6db8959f3ee99d36c1a469261eb961314ddcb434c5", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17027f6610b4ceccec75797c5b3b159a712efb7ed7b8fce06c683e3ebee31101", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8077581788af56f86abd4f8edef74b2102cd65b01daf44f5a1c6656bf4ec0e2e", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc819db8956f94a7531ac37e6f630b2ebaf3976ac8b40f236543098986934753", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d7b5b7e1645e843a3820f63ceaaa682f684869bca6a09a8d720f84b387ed4d2", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bfbbb5ee2d6321e27e93475abe6d94e8f26c60318c82c92426c4f62cd7f884b", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94894b51abf21d89c369ba99c1496d03963f32ed5793690ce9ad1965891ea628", + "regex": "(?i)^https?\\:\\/\\/comoseguiralguemnojogosemseramigodoro\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66df57cda979bffd1a04003dfcd9eaedf42fdcd88532778fa96dbe5284fcee0a", + "regex": "(?i)^https?\\:\\/\\/freeexploitsforrobloxdownloadnokey\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4980d4ac3761ef3bd5a6dea2ddf093906de2ac6acaf995068d4b4b66b806adce", + "regex": "(?i)^https?\\:\\/\\/freeexploitsforrobloxdownloadnokey\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "275face98d4cf3949cae28d0ee52296f85128f00344b38f419c23236485b84be", + "regex": "(?i)^https?\\:\\/\\/freeexploitsforrobloxdownloadnokey\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4799a36c0f75045fa2fcc270a6eec849c98186a1142c6b539608dcdc0840284", + "regex": "(?i)^https?\\:\\/\\/freeexploitsforrobloxdownloadnokey\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6e362a68324e68dc64db35178f1c135f7933967b43dfd02e3b2a673ac5d0a91", + "regex": "(?i)^https?\\:\\/\\/freeexploitsforrobloxdownloadnokey\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f001e30b8efcf163a62dc3a9faf2cb61485e06fbd17cf0fd05cf9d6e7b5a88a8", + "regex": "(?i)^https?\\:\\/\\/freeexploitsforrobloxdownloadnokey\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4e86b64737ef43df50a2b9fae4209430663bf0184d8fa401ba39e0fe98bbaaf", + "regex": "." + }, + { + "hash": "38629ecd736f076a8d68ecaaa73cf3866cccb2c04159cad01d73c20b8d023a14", + "regex": "." + }, + { + "hash": "b76b34bc6e74dce8aaaabc01b74e1f59b5c48c459131ea0d4b07ea1ddead2c01", + "regex": "." + }, + { + "hash": "6d72a5961d0930180d65da47c0054b703c9124f41b0a8d4491e27a8db7f7d59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook_Login_Page" + }, + { + "hash": "13a293fffd91df3cfefa4bc672ac7324690fd63aa28e1127a81a262e5cddb6ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dfghp\\.html$" + }, + { + "hash": "e38325cc653b56b9c79b6ba7b1e2bdbd2b0ba29e4ea57f7452abb9c9c4a2a523", + "regex": "." + }, + { + "hash": "4235c02c37a6349b19177dafe73b9cb59ea27b496b17c0edcf0d6841f165c531", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+veriauth$" + }, + { + "hash": "9777d9f1e9ca5a68bb15ea2166c46dca85b9cbc60aff1a70cb4e79286c8f8cc3", + "regex": "." + }, + { + "hash": "4e20a50648576d42c118feecabee62e028ee5d93d5455bb9039d640748478932", + "regex": "(?i)^https?\\:\\/\\/welcometotheblackparaderobloxpiano\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03cacbcc323b1ede6b87a9a90e323c5ec9f97aacd8a1e507c92ec679da07dd56", + "regex": "(?i)^https?\\:\\/\\/welcometotheblackparaderobloxpiano\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84f726b2d9e2942ae7895717b602412367076aaa606b5d38408e90dfb01e31fa", + "regex": "(?i)^https?\\:\\/\\/welcometotheblackparaderobloxpiano\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7b4fad160e01566f893549f477a2b509c54207b2ef7d09d430e0fff60f5e302", + "regex": "(?i)^https?\\:\\/\\/welcometotheblackparaderobloxpiano\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3a095f84fa7b23da7e9ea4e8629700cd1551b14ff809daae3118b94f4685447", + "regex": "(?i)^https?\\:\\/\\/welcometotheblackparaderobloxpiano\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3311ca0fbee74b44e18be8f8b7e536bb9de47c4112538b8cb79e20ba468ee461", + "regex": "(?i)^https?\\:\\/\\/welcometotheblackparaderobloxpiano\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a4212e6c1311ba00edb9e19307a0c26d2204876c3d2a20ec3970ae5a440ab47", + "regex": "(?i)^https?\\:\\/\\/robloxfrappegreetings\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7979ffc15c0f43b3c1b312a016727d0533d5f7d965304f148a51a42703d18df2", + "regex": "(?i)^https?\\:\\/\\/ejecutordescriptspararoblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f68969070ea4b01c2ea69328d3ad2bd3002f2a872505dae8c8a6a61a58ef001", + "regex": "(?i)^https?\\:\\/\\/ejecutordescriptspararoblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08ef85cac912f8f4c2113ce25ff0d62a513975668a09e7e93642d297df5cd3c", + "regex": "(?i)^https?\\:\\/\\/ejecutordescriptspararoblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb29e26871e3ef0c84e46d6cb182c255c1831d340d85879076bbec60b4c703a7", + "regex": "(?i)^https?\\:\\/\\/ejecutordescriptspararoblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4256308763efa7d938de0dccfef33b1c0012002577287d884f3b13981a7275be", + "regex": "(?i)^https?\\:\\/\\/ejecutordescriptspararoblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10d6a3bc90e8cd119eb3726c6abfb81441d7935d817287e2e4d844370fead257", + "regex": "(?i)^https?\\:\\/\\/ejecutordescriptspararoblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65452e04dcaa1bbe569b8b56b0017489f6d324d4709809bbdfc2196d78f8fe7", + "regex": "(?i)^https?\\:\\/\\/ejecutordescriptspararoblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4756324b35b5f5b62a427a4b54c1bdd8a239c72d981e683080dac3977312bfce", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e765f69a32a6db3fdbf8c3c24625851e0a59ad80ca33376f362389228699d783", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7a28aad3105dacdb503a80119976dba761e4ecf969c3191cc9940115c7adcf6", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f3ba578694cf85f2c5f505c25f75f50ce47926dbaf3bea8f6b7a6c524916886", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9bbdbc45be767faac45e040071870c8a79e74a9dd10f1b5dde4fa161baf44ece", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ef8920237345e772558b1cf12c4775bd9f82f7dd4e8e9fefb6bc31a00d51e18", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94a1b63ab4c1a7c6cec82c3fc8aee432c0cecf2f170939cdca9edb74085ed597", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65d0700a3774fc0aa78d6140a46192502cecefb1a5415d059159a575b466f04d", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a87a0315f44ff8a70bb82898a6d8c9baa41ee1997aa9aa6aaac7455e3795e96", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "105229e1356e8dc8e185f8d28a75840ca48ca764741b3280718fb47c93bca473", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0e02bdeb26689855592cfa2c05b9f2505038d69a29a825c889315d1e12732ab", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf05dcb0034b36b76c56cc111b0a1ebc7d2df00078592669612cc07a3bd07fb4", + "regex": "(?i)^https?\\:\\/\\/robloxbackground1\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adaa8d8477ff126c090ae0f2e201a84a0f2408f9dda8b29dc016f3be123c6aab", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf055d2be2dc6bdb79e95f34056a6feea08fd612d74b426055f9b12020b1e3c4", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92234f59a44865dbfb34b8a37654ea658e1c325ae6f234a13800f25bb7e9d3e3", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae6e3ce317c3d4511eba683c85ec6dc825378b2c945b4704ce6f2ae7543de222", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e816a2fc4313740048b98c7f168de0c592c6b928e57139f742fda6bf1c36c38", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fea14bd4570dbb4fb158f901a3f21d9054c33272631b2315252bff2fdd87dab", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb8158d577bffb62e40f8b04f0c6cdeb9c274327d05b23d2a8b4470d8f7c76bc", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aede9d0042c2d50d811819bb60b967c50e0272899ab577ea6fe80b9b68c34f3b", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe60eb6e61b75fb7bcce50e68fca828d0c9e0102e1f80cb4c1f8dfe74b1d3e6d", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0766c09ea4abbc8da4571150d40488a0f92a55774e29b774d8a5fad826b091ff", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef31f3298f96316c787149797f69168f88a8c49d1a82c8bc9ebcc824fdb83c66", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b92a3bf85f51bcb2901244c0f66d385b83dee387032e6ef99ec233aff388d51a", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30c7a6dcd0fc161846f1df0fb8af71bed1fa4b0863b97effb0a111fad7d4c53f", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3139b2ef29a4facc2bebbfab60b9bbae91733471109e0c8a034c0a01716db2bb", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd68863fc682911ad3d85427436b5831f6699eaced290fefc15b2351716bedec", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c2e2630d6a33519118b0aa0f0a9372bd609a343f6198d467c6f8d0e7aa77b44", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0542a3938fae702dec4a616da75f4bed044e4c0ae30b9b0da1749c06f374094f", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b8724cf61200e45f90e2064e95d242452b25ac30d9a72d215d712ee268148a7", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1b0e80a21e19228eabfd938574782a883264c878029a47d91b8114ef79c0fb9", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a5ba6dbd3e85aac60e8ad3a1baac44901041f228d9b9805e6ede322049a01d7", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "115c9e99feb6bb0706fa2ad25961bc85016c96f8d496bdb950cf25259580819c", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50b214a0279996074fc3ecea3094f63fda108cab4c2f86c8d0745ff9331a73f7", + "regex": "(?i)^https?\\:\\/\\/robloxcriticalstrikewiki\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d2503f656e35b47925a75f2dc069c02b074ce9986108b47b93901074b838999", + "regex": "(?i)^https?\\:\\/\\/robloxinsanitygame\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e66cbf55e01e279f4fa181a19fce939a11e33b167ba5ee63c166ca4cb6ed30ea", + "regex": "(?i)^https?\\:\\/\\/robloxinsanitygame\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b7f9b30ceba5a33f1a791c07ac18c03737ca41291a5c8b340d86d8795867d7", + "regex": "(?i)^https?\\:\\/\\/robloxinsanitygame\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c128d6e0c718a173186c159dc7af07b6cab80e3850faf6ca85bbbfc3e67c6e34", + "regex": "(?i)^https?\\:\\/\\/robloxinsanitygame\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57724a711090cd5a405f28e2fb80b8547883624ab6a6c7eed04909983fa23c79", + "regex": "(?i)^https?\\:\\/\\/robloxinsanitygame\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bf8d36ab21655f7a47b8ca3fdf25e012bcd9cf0a856ac9a890a08f01864367d", + "regex": "(?i)^https?\\:\\/\\/robloxinsanitygame\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7b22bf05742913307ba3f90c5e374cd356d9a8569c0fb1dc2fd6edd77a8baa5", + "regex": "(?i)^https?\\:\\/\\/robloxinsanitygame\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a127821910394978683dd33a69956d0da7ac6ea9dc50be110d3373c25f45c27", + "regex": "(?i)^https?\\:\\/\\/robloxfrappegreetings\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6184daf261bd42958864857a592ead10089e3612a111e90f4f2e861a2660cb21", + "regex": "(?i)^https?\\:\\/\\/robloxfrappegreetings\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ceef6dc68ead6da23e5c17309bd8789d51c427016eaecedc7e66c4da55c543c8", + "regex": "(?i)^https?\\:\\/\\/robloxfrappegreetings\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcb7e0b1d06ace948dc37525dea2717d90ee2fb798f01921171e2f1ff4091fdc", + "regex": "(?i)^https?\\:\\/\\/robloxfrappegreetings\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0545c8033f6ddc0e11a91c53fed815e280aa74bac73c5965abf710349328a00", + "regex": "(?i)^https?\\:\\/\\/robloxfrappegreetings\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6de6cfcb474b5e40df1b16c0879da7b4e353a6da5b1f86ca65cb4255bd1b2d", + "regex": "(?i)^https?\\:\\/\\/robloxfrappegreetings\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65e81a4dd7e0ff26dfb91b15340735080670e76a6ae15dac17380531c955337b", + "regex": "(?i)^https?\\:\\/\\/robloxfrappegreetings\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "995d93276ddfa536b523357bdee30947d06e7720574746b0ab349f598a423e45", + "regex": "(?i)^https?\\:\\/\\/geniusrobloxid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2db19dd72bef3351e7a54d6001b95d389504ad9af6c52bd594cf00e208e41a82", + "regex": "(?i)^https?\\:\\/\\/geniusrobloxid\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "049c07e893d86bea1186369565c8b35c5b561aad16a79eae1e65217807d71bda", + "regex": "(?i)^https?\\:\\/\\/geniusrobloxid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "419871d2881bfddfe7c7f511332014d692cd24541e257bb7540f50ae743d182f", + "regex": "(?i)^https?\\:\\/\\/geniusrobloxid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bde0d36ac00cf10a7689f348755590afe880972fda9b955d960bc33ff88c3bc", + "regex": "(?i)^https?\\:\\/\\/geniusrobloxid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fedf661d3b47ba7e59b63cf99e11a42561cb6ed2ccb41157b0e722a92fa5dbab", + "regex": "(?i)^https?\\:\\/\\/geniusrobloxid\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61ea22775a3ae129c5e9d713369efc418e32ac05c3e59032622ac8466ba5154f", + "regex": "(?i)^https?\\:\\/\\/geniusrobloxid\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddc5454ebc8a246ed48f4704f5b9b763f732571187f79a4a82f14ae8a5e11cfa", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66fe27ca7d4f1aa25559a8f90485fa2f5bf58387455fa38b8aec9583d9c6061b", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7e20c131033010d752dc75b68b9809d6c5b630ba07e3d2f82f7aa381a57b3ce", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29ac745bb9a65c3d8ed0219d40286398c7f09d98ad9092a9b39b3219f02c1b79", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dfe592eed30160743f48839d70529e0ef5ece44c70de3a4b931fcdd1dab479d9", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44ee1fc6a85190028e86a02870de08b6c90d9b1adfca5aa288a61cd69162ae91", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0e19f9298d4a87901a71c7de4d3e982874a8f4dc83904cd226cabe6192d06f1", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "252a5d7bc2b0aec190f307272029b7e449ae2e008cf68998f5a1e64ae5133bcd", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73f69d22f52cefb00f482d1a2995cb88811897e65e4d7be053f08c757ebf274f", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7ea4236d84d66e2e7e3292d618527bce087a94c7d74dfd2ee1138112a6219dd", + "regex": "(?i)^https?\\:\\/\\/minimumspecsforroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8b269a78dacd003492dfd340c918cb23f4f06fd12fc11ec61a66cb37fdebe23", + "regex": "(?i)^https?\\:\\/\\/robloxfescripts\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8558312422736f86169877825c9fb3e6361030e0330d477fe7cf9c0479be932", + "regex": "(?i)^https?\\:\\/\\/robloxfescripts\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b6fc93fde63c4a5b5f2822989867e06cb1e3da9d6b7c81a920045db2d019eb", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb9d7817ccafa78db4afac8650de0d9020ffd267ea7db127befc8d1c7a1a49d3", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e83c1d29151e059246e35ea32d8a383f4f2c5b73a27d61b9fa4486d24586d3db", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d592f9ee0052455bfa807f642ec7aa263e85e342abc0880d6ca4a47435d99c", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbc8156324cf8184e9ed091337ec93bf7187ffe1df24caab831c44a31191e315", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ec930fbd4cdbaa2995d9d6a3adf7cd3476982dcfc78e9d5cd88870b6dcacdba", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8637ed920f33e212844c6f9be94df98766d5633f962612863241cc85aa9631a4", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d40f77d609d314385af7bd12dc9725c941939fb00b4cf8d07f94256bb9810f7", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82cc3fdb8d6a925ec34c648346186c449469e7b43fbd6e58e7201953350702a4", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf0ac28e6bd1d059e9fe3126b3af5704f9b8d117ef55199c491b2ef86998b2d", + "regex": "(?i)^https?\\:\\/\\/robloxkeywords\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e714dc3d5bcdb345bbb83b2636da788a2085b58f7389ea30742a45f08ca3fc45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uniswapv2study" + }, + { + "hash": "3cf580379e59c60d2c52689243ba198ca59aa191b6fde91d79c6ea4f64da4ca8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netfix\\-clone" + }, + { + "hash": "2e9d1dd383a2cef58a4463d4870d6dc530ce78205540d86e052cb2337e52d800", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a5dd85d8c6ffc40c7a813a16f5c4876d6e91ef176e2af187fa160c35df41ecf", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd9b8b28521f59cf3861fb6e5f57037293e06226441025da66e46800cd5eddf8", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5441ae447460cfd2525d114cde49489b98264bfd53de2535b5dd328ae4c7cf8", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63d6083cc9cf542f047b624538c0333e202f56a87684550e9f8ce3f6fd5dafb6", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814a10ba3f35c37973955ecc571f815b94d6b5e8cf78d4e7514361345d7b20e7", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30ed1023d991ccb6b42ee66a02f80cf96c0c77db6b9128a4273bd9ffe53b54ef", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc4a2cc5c61466d4bcf7a713eec8b624522134f44862a03fb47e910e45c9b7ce", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ce2b97422d94c19672c07e5d658fd3f9fb57c97d339fd5dc4ae236818ac1108", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cf2b4d9296377e8ad00a69fc7fb6d2e7a0afdf407c904c6694fab59742c141b", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a32c2af2fc673bbec4333efec0c4a80ac531080ccbbc99c7e8e2e7d5152c7453", + "regex": "(?i)^https?\\:\\/\\/robloxolizigzag\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58e39220d63f0d81c1dc4f7eb0efa051e0a17f5a7485ad22a3f0ebfb17d43d2d", + "regex": "(?i)^https?\\:\\/\\/allthegoodgirlsgotohellrobloxidcode\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a2c3ef111200acb044969b471acdf8f9647f68010d3b27658520ff1653e03ea", + "regex": "(?i)^https?\\:\\/\\/allthegoodgirlsgotohellrobloxidcode\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ef9cc30affda5b383d25baa62722750c5262aa015eb517111fda69112709288", + "regex": "(?i)^https?\\:\\/\\/allthegoodgirlsgotohellrobloxidcode\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd16342bc6e6b8a5b78c650fb6abc6920b47f345922123c3d0993c53c7cc9b09", + "regex": "(?i)^https?\\:\\/\\/allthegoodgirlsgotohellrobloxidcode\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0c818c1cc29f3e8b34b6d6a1ff75d85dd9df94e1a843a0d788ad62fb7c5519a", + "regex": "(?i)^https?\\:\\/\\/allthegoodgirlsgotohellrobloxidcode\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "536dfc318fd8786b84b40060a8ddd7e88e289cec2e2c67f73d1322ba866552fb", + "regex": "(?i)^https?\\:\\/\\/robloxcomotenerrobux1\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a199255a10705b5f6cb2a00a63577c2ae3572de5d9ba4f8c6a912551726789fa", + "regex": "(?i)^https?\\:\\/\\/robloxcomotenerrobux1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb25f185db53c9eb5c4411c7ff187846730819f9308a52905a7f5adaae9aba56", + "regex": "(?i)^https?\\:\\/\\/robloxcomotenerrobux1\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ac639f7176d760baec28e5175be4ca8b639aa4490fae4e335b344444a434871", + "regex": "(?i)^https?\\:\\/\\/robloxcomotenerrobux1\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fbe619b407bf447fc557a819ffac11a650ec4b3168c10940fd18754b23ebbf2", + "regex": "(?i)^https?\\:\\/\\/robloxcomotenerrobux1\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed829e70df28f0681f1c686110041aceb787bce1a9196037fc3b0735ea18ff75", + "regex": "(?i)^https?\\:\\/\\/awakenjojorobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d7143c3d4ec877f03c1f040fd60eb663da3dfd48e083a1f8f8c55698527bad8", + "regex": "(?i)^https?\\:\\/\\/awakenjojorobloxid\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e7010f14dedca016686a4ad0e421620dbfe7f0d5be669783455f306240eb669", + "regex": "(?i)^https?\\:\\/\\/awakenjojorobloxid\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5199af56b2f24a449c939ff1a3663a2cb7fda7a5b143805a275e6ff86cfc835c", + "regex": "(?i)^https?\\:\\/\\/awakenjojorobloxid\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e611fed02f51f66b0e38f9c21d6bc03fa503b7fec82e09158c6526a3460f614", + "regex": "(?i)^https?\\:\\/\\/awakenjojorobloxid\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "903de9e8beda91011060b6e2fcc67bf714042c89cd09d8d732be3fbc50b1f77b", + "regex": "(?i)^https?\\:\\/\\/awakenjojorobloxid\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0efe3867cece001ed53b4435a3e15338f85c0379f27ffbb179fbc0e5cc9209b8", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxlevels\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7cfa617d7f38a88f3c68bc276b2a119f987a7d0025105e338377a59dbdfce60", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxlevels\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bafc6491b7b3579034280017275ceb4f3c95c21a4c3d4784298f35524595e56f", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxlevels\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f09b266b24cee8617c7a8af11cb4a30415d894482343f119d3c79e474f5e133c", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxlevels\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69a09ae21e632acf76d86c4fa409b2c7199b53149fe08ba0e51196155d8cc13c", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxlevels\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "031e6f9cba307ffd49b8e1ef3aae0fb214bec7cd51c69ae4e336a46428ae4d42", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxlevels\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94f3ab123055c9c5b055f75881db964e759f39b25338cd8e2ec37a68c8f3210c", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxlevels\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9a4d86b80aedc81ef257ddf6e0470f618d5a2ceb28d624de0cb79cf2f2b3f6e", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadinstallfreenow\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eec311498a0274f7aa3471bf0f03aae08fef2db1dcf3d954f70fa92d7f4bff46", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadinstallfreenow\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7be6951807e0cb82f56efd00be4102ff82d3c50b288a9cb96a6a6419860ed695", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadinstallfreenow\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2101af0becb30aaa1a2a7adfbc03fb9aecf8d6e1e8eab959c49f9a0959f5c225", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadinstallfreenow\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64b43a3ab253efd8cdaed57cd17e5edeb66df1aba67e1480af7e20ad3ea0ea55", + "regex": "(?i)^https?\\:\\/\\/robloxcodegeneratornoverification1\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656052700ca625fa9b666b0cb60fab2bf651e2571ae69cb64a69a3768d8d0dd2", + "regex": "(?i)^https?\\:\\/\\/robloxcodegeneratornoverification1\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85f711f5ab4e9b9e135a2075f62a7ec2a316205c935fc2405ab2cdf17c111999", + "regex": "(?i)^https?\\:\\/\\/robloxcodegeneratornoverification1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5669a91d920c3ec5d7b7ec31eadac4026b794909f1d76b8b4f442f73461c9a85", + "regex": "(?i)^https?\\:\\/\\/robloxcodegeneratornoverification1\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d71d311e4a57c5d300dffad782da5837ab8dab0859e9ae9b99bd46f7717c040", + "regex": "(?i)^https?\\:\\/\\/robloxcodegeneratornoverification1\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7ee396ca0aa91439ad10b6202343a0c0b7ca3c7834efbb4d3f9f065daa48175", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacks2018\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cddbc305bc01ac503491bb5a106840cab18c6313bdebe9897d8587e499ab8efd", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacks2018\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c08d31ff1d09639c59c151eb2af4f6aeec670c7df5df63177adf66c930cbc74", + "regex": "." + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+tKj3_4VgV0EULkm60vDdDKMdCD6sWlfhTWwRJXInnOu7kuC4i\\-D5CJFaPT0FnB68kaRpfFLaxEinrEMFcSm34ivLbfVwpakqaS1JkGHOAaV40NMf3wbiIjA1vIjkogUkuhNCsQwcSCtry\\-_u\\-GQwH6D3oRk_SCWxk4JzNVtgBaijcuEaf1HubbhKss5eArU851dAiJWqZQ\\-CwL2HS11tciLyXHpGYafDX7bH2GOo7vS8Usx0km5KxR9xswU3X0hrk1IeGBrgCSx5Xa6z2jJ\\-qWLfHji5X4fAbHMSGXxpLIEC4W8u8eNH5W54ZJ9fDVWbQSOioJFEYeE7zF_PqZncya_MUm029ymHUcxp1WUXZIEU$" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+IGPKE7JcTfiQNMzEa1VjO70UhHdI1OVpzZt5iB0GhPWy95NRQwbgrTjWQ7hS8p98lfjid31CcOxPMnGf4D2zA4y9tFfaEdwAcWQF2MzFdeB6aUiAnZPIVmEX7iBGGYQ7I4GgLuYADFaOjhraSLlZcfwgnjskR6OoA9LAdD\\-okzd1TAog_v_Z751oModdjfM8wTlON1cQlgdwS_AOKM4lvfjSWB0o8zMnmkS5WCTw\\-qzfEx3TSwqaP0LOmQaGBznffovIGWDVzTo13GGWJkCsGyJe0Ar6EgDxieVhF3pO1YAVe5WJHWbo1gkil79G9cQV8PJZQ9sD43ekOj5Ab8LvNgU927Guf\\-L_V6jVUwN1jX7k$" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+EARs5tqH3nYcP3DoQkJIaMsUI7HvRIwWeESmbDjDt20qAcjEF9LLJLByqzm32yP2rEyRXQNoWJpCMTyJLdsx1asdAGJF0g0DcQkCc8iVenBFFh7SOU0HY0_TyYs\\-bsprj4dSQrGRuoNnYCRL4bNESzMhN8s6ecZid33lkriF03lHKBympuw5y34I4UuHRwtFNZDzlkekAfIOhuhg5FMSQ1EqRFa6IOqomumlPCXHxWfOt5Sy3hsMjFKO\\-sWyuE8N0AF\\-GaXFcEKYVpmhIOcy_yGz8asjZqaPrOYMQ3A_BriLhGlE6gxkOsvLRL6yyeuCoEniSdH74JrqkuPI9Ry_Rywj244zqucDAO8dWn17hpAG$" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+3aGRWy3ezkHn2FkoyOTL50W0aUcdyP6HITGAzsh6dqw3kY_4fsVbChbaM\\-ENifxZE\\-Xg77AFuRYhqA4P53RoF31TpnkIx3YwBucYG720XB3NpUYl4O89G_6\\-E3yxEOr06d_0UC3os4wy3dGV2QtG7MMR3cjoB7NYfOazfx8rapC8iGBRmM0QbC8OrfvxxV1SMaoEjFiegvdKIEryR0DYFohRbJOaOyF2XyHNTDaHgk1IazRj5oJZ6lQJa2XinzLH__DthsXGWkFi9y4vacY7IOx_vTXl8agJL\\-eMhiX7CbIwm8VoUa3URcv1wHrLS58UOCKxvxNF10O_vtle\\-VspZzoBhhU5n8ph4LUJnw0XQ6y6$" + }, + { + "hash": "14716392d298f66c6247cf549361063ed9691e56f6904f6680c66eff8efec7c8", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a6d39db7acee09a32888f27f747c56cb2c247acf4dd93d6d46d99b6026f260e", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05a01481fecec6f795f502790b8e6f847e23d5e12e372907f867a2324460e2fc", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be58c372ee617d9c8f2d5e12f1b21bbc7e2bf3b6f2ac27856ecbc6afdb0c1bb3", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bf59cfaf5dabe96a2dbb4721b1d2e5f348c3bb4583c1de5a28149a5c9b7142", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2fb2e70e0b2547d2059dd502fc47e302e876b2d8abc8540a43ce968378557b6", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4079bcbe040431c0a0670b606cf2001c7ec3089e611019d5a77f6875d34de73a", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f7c94da32088be50d3a4c57e32e3392fe7d47f25ad7d8cac93f8220e56774ac", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5424b9799cddaa0ced59749b87c762b86ea02fde7a6875a3915b60144d6bb4f6", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68b88f3e491d3cd36bb7c3151abefd877d2992de62b3ce76b6178c1d9fc0f169", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ea6620261e6eca53c3f5f5b324dc4431f2354371b5c4c46164a175c7d39c1ba", + "regex": "(?i)^https?\\:\\/\\/pay\\-pal\\-slovenija\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b4b71d48c2e9b08063b8e19d635df5da48c89f8460f396e99cb93aafa100fd4", + "regex": "." + }, + { + "hash": "d0457f7d42b6f90c01bfa6ad1bc3a54bc18937bd7f3d94c9fefc16772b3ea730", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7760def19d07b4dfe2e355b2d2ffd2edd9609cad22e25df892958878bde5e67e", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec83a37300a36ac769070709ebe26b0fbca5d6d1d09b3e021ed1ff351e63a698", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99698298138dca4ebb1c92e6105362fcf71069b771770b030bbd8d39fd77e443", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70847f9c4b35e3a78bdda1679c1d7dc9fe841354df988ed71267a8d4e7225d96", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d552b34421604dece9e87bcb8501ec1325b98d224a625ecc96db3ec1eaefd5d", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b28f6decd36c0946aa22ee4949c95ce5aa581c8588b25d2d3f69f66da2fface6", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8152312e1ba89b321cd310713424b6c13a560c90e42954a8f3dbd07e14b7a9e3", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a63b35266b43cef81f9f9a2d54ab12b0116b6cbf34243a9de2ef9e40e8dfa7a0", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adbeb1e89cf8c99c70f682519a8c5094912fef67bc5a025bdf5c3ec379e7855b", + "regex": "(?i)^https?\\:\\/\\/robloxcheatingcode\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27639afe95a813381b633f52c7c0f97ab68f72aef8db9db79b0d1af845697287", + "regex": "(?i)^https?\\:\\/\\/royalsrobloxsongid\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff664d457bb6cefcba6c6cafc0cc4c532a2af23ea017a9b9fc3256a155d8dbf0", + "regex": "." + }, + { + "hash": "6819f5da9ac50f601b67e2a67710b3aabf360d4d4a2540213dea7d7849dd3970", + "regex": "." + }, + { + "hash": "67c4b8d5d3423e78c7ccea0e97ca53f56484f2da735d16c9861dc530c493a4d1", + "regex": "." + }, + { + "hash": "7a659bfbdf9bce907944cbac099d71ed00fcec435539555083e2bdd0e5a617da", + "regex": "." + }, + { + "hash": "0e7e41a82ca82ca1d843461c400a81a21c852bd27a72b793fd763475156bb1b8", + "regex": "." + }, + { + "hash": "b8168f90f2c3aca81019a32412de593fef6269eab6e9fbdd2c6dfd2cd08f26a6", + "regex": "." + }, + { + "hash": "890daed076d066b40b842842c8cd251b8b2fd7d91bd8e2c738e8b789504e2d5e", + "regex": "." + }, + { + "hash": "f2ec49376d6da085cc1f2a4db528dc207d8e40f71198e503b31d7d59e4402c18", + "regex": "(?i)^https?\\:\\/\\/royalsrobloxsongid\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "130afc01c78930b2997f13308a8dcfc8b675fbfe4eba1274557c81afdd34d7a7", + "regex": "(?i)^https?\\:\\/\\/royalsrobloxsongid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e34503c806e86641d3674030466988a79b44dfdc2e9127b8e4f7c0646ca8a6ac", + "regex": "(?i)^https?\\:\\/\\/royalsrobloxsongid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd307193d703235287ad758203187d794c48435ca52a5b7e9311aa5bc68e2c44", + "regex": "(?i)^https?\\:\\/\\/royalsrobloxsongid\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4aa4503030496172f632195f9ca97b68bf42d3c128eb7062bb36712c6be6349a", + "regex": "(?i)^https?\\:\\/\\/royalsrobloxsongid\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4891124c8994f57ec8a7936df02b05aa6a212abcf73b555115c7fde24a35f249", + "regex": "(?i)^https?\\:\\/\\/royalsrobloxsongid\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c10fb1ae15d7b6c97c95c086afaa07bd64b42611935d8a5175ed762f8ddebb7", + "regex": "(?i)^https?\\:\\/\\/royalsrobloxsongid\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49efa261ec9bd923320c5481b6fcd5310c2a3b96894bdf09707f928c7b58e3bf", + "regex": "(?i)^https?\\:\\/\\/royalsrobloxsongid\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef16257c9803c492ae5f2077bf7930789b4ba3d4711f2e021d8edf5975adaa9c", + "regex": "(?i)^https?\\:\\/\\/robloxfe2maptestbluemoonid1\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11d18b80ff729e1f1703a02abbe75dc37977a7d50b684685ac2be944bcf8e6e3", + "regex": "(?i)^https?\\:\\/\\/robloxfe2maptestbluemoonid1\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dfefa27cb22fc68dc408a49ea693ccbdc55e8ebd0c5ca5edcb79b7d122b908f3", + "regex": "(?i)^https?\\:\\/\\/robloxfe2maptestbluemoonid1\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "377e306b7d9f69c49a521a09e9b80e951c94856441f37fac076710af430498e8", + "regex": "(?i)^https?\\:\\/\\/robloxfe2maptestbluemoonid1\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cc6d4b93fdc76a02b99819b277abd2a5969b1167908d5d52a14eac1ae5813c1", + "regex": "(?i)^https?\\:\\/\\/robloxfe2maptestbluemoonid1\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64143658e88219a5958e24e2d7aa70eb6a8efd8ec5d7bc42cae9d374fdcebbb8", + "regex": "(?i)^https?\\:\\/\\/robloxfe2maptestbluemoonid1\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42405a7cb94803490e100b3567ff44e798cb56c1d79b7ae20cb7891e55257a25", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e5f529878d2ca2d60edd06797c8f678aaab984496f71f93d4fb4e57d4cb439", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f66ece2bb3fa4bfa48398ccbe311446932348309d626a1f3bf8b4a8b489409d1", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "879d9d583fb8789bfc75793be2c69663129b1718a3cc74333ce5553633d11fa0", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d048d457e7ff524e7accf8a3e02906e32bcc3fbdb678213ecd4354deb4c27269", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9443f4e44c592c7a527175179af77ea8bcd55c15c712b3f538413b88b4f32586", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77a02e51d6749a015b6135d1f5f18be69dfbbac546964df43fa8c9721d319f74", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cbedc305082d09520d82d5412169cdc3f0fbaa1db0ffe05cced355c821632e0", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26859656e7669a0294e15335bc61b295e3efd69f748c1b842754f59daf0c96d5", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca21d05f53fe88f76d907f9b2f9561cd6ffccdb3edc54576f2ee0766ba987d08", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42561bda2d785cb860148b9cc3cf4671eca859210cba82ccc4c892a8c6c850cd", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2833d54832509eac6d42cb765d76cff89ca903e84a1ec3ddd26ec1aad539682b", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0914eb746edd6fcd5370176ff04556cd6d4f8c1423783638551292762cd950fd", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03c3e940a2122096d062c92bf98ff8d3a7f6d2f9230fe7ca82116a990d784c5e", + "regex": "(?i)^https?\\:\\/\\/checkeredvansroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b18b6d79af3e0749f51428fffd0474084d022ac17d6ad014b36cff708d93550", + "regex": "(?i)^https?\\:\\/\\/checkeredvansroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4e137a77a04545089a88ed9add75b18f5068d22f338022a2f8d7d0100b857e7", + "regex": "(?i)^https?\\:\\/\\/checkeredvansroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73f90a012817a0c1037c348970a3fb904e8f639738b842d95998ecc8f6fc7f0", + "regex": "(?i)^https?\\:\\/\\/checkeredvansroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a5aae0dda37b73b04a5b2b0fccffed55ee9203421e6adf61159cdb49bf27c39", + "regex": "(?i)^https?\\:\\/\\/checkeredvansroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74d4818688d0522712f013800bcb797bed2bc6790ea3d1670698e9b6869c520f", + "regex": "(?i)^https?\\:\\/\\/checkeredvansroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bd9cdd15eac643cd22a67c52e2ba9256b967df7ceccdbc1e53ad19a903f998f", + "regex": "(?i)^https?\\:\\/\\/checkeredvansroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cb32a83558b904c161bb9d28175c90bf8b907843a933c619020fff0421f3715", + "regex": "(?i)^https?\\:\\/\\/allfreeitemsinroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e4ba935040bc5eb935005da8cce3b0a43625e695e1b8eab73bce693c913352", + "regex": "(?i)^https?\\:\\/\\/allfreeitemsinroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d220d593141a95f7a6643d3833ab0e3629dac920811e162d2680d0469b618e7", + "regex": "(?i)^https?\\:\\/\\/allfreeitemsinroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe1acabb936d8807657b94171174a62fa73e6c12ce18dcf83fee01a827563af", + "regex": "(?i)^https?\\:\\/\\/allfreeitemsinroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3b2499179973648eb3ea9c131d46297033a2a36ef942817df62a670f78f5962", + "regex": "(?i)^https?\\:\\/\\/allfreeitemsinroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ac60979c65cc45a8d49938c989c4adf4bae1d544c445f1c497979c5d2b29573", + "regex": "(?i)^https?\\:\\/\\/cachimtkhuroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62041619934fd32c02324e78a45cfc57dca34ca30703efc06dacf8549448b9c2", + "regex": "(?i)^https?\\:\\/\\/cachimtkhuroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b1a6bf14236de9d31867f04fb02701bdc9be35bc19078e51daa28c0a7b30b6c", + "regex": "(?i)^https?\\:\\/\\/cachimtkhuroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83f808abba2b61fa607d117da431a95e1b0c309170469f219d9bf9cb17e882c1", + "regex": "(?i)^https?\\:\\/\\/cachimtkhuroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a738882238f00bb849ca6a2b12b030f12f95b91969ddf78a44f86216b51998f5", + "regex": "(?i)^https?\\:\\/\\/cachimtkhuroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d0f1cd82025139daa2886cb6f65935774d399ad73f456e3bbda2a4dc145a3d7", + "regex": "(?i)^https?\\:\\/\\/cachimtkhuroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87152377ac2aac9faa8ba4390158cbac74610315db3c04da033b2aa77a0bae48", + "regex": "(?i)^https?\\:\\/\\/robloxfactorysimulator2codes\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc0e76e57c0bc8c3834a6c0090e996f5ac61ae14e291bb6de52c27b9eac4f062", + "regex": "(?i)^https?\\:\\/\\/robloxfactorysimulator2codes\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c08fdb45aa084f115c9564ce9f4fce2c10393b2c3d94142d2dd77c7ec9f545e9", + "regex": "(?i)^https?\\:\\/\\/robloxfactorysimulator2codes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74094c6978bea891b548a8c86db09e804207b61526bf547ad2b78845aeda8c61", + "regex": "(?i)^https?\\:\\/\\/robloxfactorysimulator2codes\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbba1f74618231153014b17ec865b178a97040add8b36fb5def2496d0efc2724", + "regex": "(?i)^https?\\:\\/\\/robloxfactorysimulator2codes\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab99c958ad6dccc1315b2bd9c66c7369378f35dc4294a7a03b13b354c1909d7", + "regex": "(?i)^https?\\:\\/\\/robloxfactorysimulator2codes\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b733f8b68e51a28da40c95f13222fe4dbca10f082b42aedc8c5a7aff43aae76", + "regex": "(?i)^https?\\:\\/\\/robloxfactorysimulator2codes\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0ade0463a0d9e5646398844a2c0e1252c3262e7742c141aeb76f11ffc1fd40b", + "regex": "(?i)^https?\\:\\/\\/treatyoubetternightcorerobloxid\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94e598289df1ea6d9b4f4216dd922ddda1a484c741d22d5bc209725d53d5fddd", + "regex": "(?i)^https?\\:\\/\\/treatyoubetternightcorerobloxid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "669c54c82e44ea4ee65556078d8dd6c800ae8f98dee433722d32848ab5ac4be9", + "regex": "(?i)^https?\\:\\/\\/treatyoubetternightcorerobloxid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "936513726904550304db71f38ace55bcc8f8cc7bcb2615d9a99bcdfb9738f6ea", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7804aeb3c98097cfaaf81931e89324b13caaa14267ffc12c94dbe0e5ed467129", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f47f3eb1ecb5f2303b24a10d20695e974c956092250c3cc07ec3ec3060ae4949", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec1cd0dd91c8478cbe33d659c04180547b7c4174dddfa0418c30193012546baa", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b609b9d775c92de735ff32c5c7d8b38083c9e010e525590a54524d3b6257e44", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f3406793ac38a8422522b7ebe9f021c4247396cabdd65c32e1cd13dfafe8e2", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "228c81f87422cbe015f7827a16d986a7a285bbf1ffb3c13e39e733bef456aded", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34a435697874cdeae476a47cec4e0b2a10c163681eedd442d4706dc0929795f5", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edbc3fb9e1e3cc3b002a83b0ebff7684153c396752a3e14dd89b75198664da91", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad431075dbf98b0ab84ad91e2096af960ddc08aee1501e63953a4214d72ec4d9", + "regex": "(?i)^https?\\:\\/\\/gebyarbripoint2022\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99ad00432f2f7aed0db7bce09ed3374b6805227996c3afa2abc5926c37d98b04", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxskins\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8058447601b6b1cb0daac0d9917d3acb055548ce3a58e8eaca6ad84136862342", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxskins\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cfa76d8f0d5fe65f9077970820a3cdd35c1a3f6e2fc85aa874627f5e4d7af02", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxskins\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d125e2c8bda4278cbdc5507ea72f6da2961b8942d3a44e61737853aa16ad5a1a", + "regex": "(?i)^https?\\:\\/\\/funnyrobloxskins\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef901d1a7bca9f23e193d7146479e197f54fb3fde5f151a7e579877658f48438", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "828739c108940cfcddea0d404998edb9b09beeb8d193831700edc26b431adfcc", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1a3637f95678699fd6309fc4f6c947063441406ea51d9846e073140f34b70e8", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db5e959bbbf2f5e72a28b8238d125fa732e28fca4171307647f2a66f4523bd5e", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0c520fe8793f6fcc9f46aee257dfb340f5cddcc9afe5fdcb8c9940bd9b3f64", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79fdcc0e7585cc1ecfd5f28957419d5e2460b0b12cf45193ee23dcf63244760b", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9806bf16c7ccf28d283d8badecd1912d491e5b9307dd748f77fcb54d822590af", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cdae3403a6df56ecf23eceb02140927f11fef7344bd3098d4b610bf7569cca4", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4bb83911ea5447f7e717fc8e133b4f3e2fc8f840f7d1d063c2cbf154878f08a", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fd8d74d2c50c62c8ed8b9978519e65ee17d9c5eb2e10bcd11d2afffac59e97b", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7ffe178a181f6b3387cae0ca517a1ee3b6623e80010ffb59d8f0c0ccc0b7226", + "regex": "(?i)^https?\\:\\/\\/lovelyidroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83bdd2802dcfa1ab3156058846711ff33afda4172e0f7430ea1d568e40ec75f0", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a7d7ebd41342970d36cf61c7a9ff63e6c124619d8af52b83ac422d10058c24a", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5200e7e6256d15665d52de0885b896b2baa47846471ba0e97666b52b9de04bd0", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bff6ab0f58ee13dec400330e06ea6f92b180f974d9cc96271a8c0d149ef7572", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ea10e3dd0e96be4f42f2cc782ab1e741ff005e4bc8cddaec3d1502b9be956cb", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4801776a3f8d229dc873743e46752293ea0c85e5219ef7f13c2ab02e1c255c3d", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "634f86f652166a1aed9fd105807c47b131b9df0df69d9ac65d3cfb02dfb0c662", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8df8d03be83414446d2096402037dd6ea4a52a478704a5890dc9663d813fd17", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4f07769f896bc4777209a910235d2ecc453f76dfb30d7340a9917e732817625", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a11dc0a790350e36df3ffcdee0aa8e1f44e97df9e8e59c20e9fa27415bae46dc", + "regex": "(?i)^https?\\:\\/\\/howtochangecontrolsonroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7c682e858a0ebef4b45b7cdfa43521e682802a91fc9b8043325b294b0111fff", + "regex": "(?i)^https?\\:\\/\\/howtochangecontrolsonroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ca54bf7ddfb8002ccb969dfadd0122f10c357131e30f5796b61f46024210dd4", + "regex": "(?i)^https?\\:\\/\\/howtochangecontrolsonroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "211668dcc894d634fed60333083d1d707ad6015ce1392769874e579d2e0ccf98", + "regex": "(?i)^https?\\:\\/\\/howtochangecontrolsonroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6cf185a2c75346da5eec6137de358683ac4ea13c589c42d11c5781049e459d9", + "regex": "(?i)^https?\\:\\/\\/howtochangecontrolsonroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b39c9560fcd2945dbd709131c91ff9fe4d88b3f5a39c7853805f4c28b7c123", + "regex": "(?i)^https?\\:\\/\\/howtochangecontrolsonroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "551e31b5635a601cace3a581c0679aad02042e61199e36951d6dcf26687a001d", + "regex": "(?i)^https?\\:\\/\\/howtochangecontrolsonroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8af48dd7f8ccec48c3b3478a876c9ef3e14e49414abfc1f853c04b0d77c3a5fd", + "regex": "(?i)^https?\\:\\/\\/c00lkiddrobloxid\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "291baea902738445a5731b24bedbbb2fe43e79d4f427515fe68523305985d29c", + "regex": "(?i)^https?\\:\\/\\/c00lkiddrobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6885a25f8fe3f27ac1e6b7124d9a419e90208d1c4b095fb196e22cbb9170671", + "regex": "(?i)^https?\\:\\/\\/c00lkiddrobloxid\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "493b30342f5f3185aff1276f479318851782700c0b37b618fc9b4c95e7f0f203", + "regex": "(?i)^https?\\:\\/\\/c00lkiddrobloxid\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a7e07383c31c5de9135c7f0ee28f4c26406f12ee69e464de4740a46c2a40d0", + "regex": "(?i)^https?\\:\\/\\/c00lkiddrobloxid\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9217ae6b09ea07035571177e167cc361a3bf69731156391ffc2045bd4348bbb2", + "regex": "(?i)^https?\\:\\/\\/c00lkiddrobloxid\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d4520c92d57d09dba38fee7e8003d24b3ba53aea3ce339d7b4451f911cb88a6", + "regex": "(?i)^https?\\:\\/\\/c00lkiddrobloxid\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1ab8ab164d8c16501597c53b2e485c67b395864b568520a6f30e93abb089672", + "regex": "(?i)^https?\\:\\/\\/c00lkiddrobloxid\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1a37952e9e7adac270194af599cc6d60d311ca91c04e8e2d83b1cb17cf3451d", + "regex": "(?i)^https?\\:\\/\\/c00lkiddrobloxid\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e37f0dfa9d9d89c1d51e6d2e2cccda715e787f94a844a1b4b1f794035c8d149e", + "regex": "(?i)^https?\\:\\/\\/treasurequestroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1421dfb524c0be5af09c8cabce902127b958dbbc1723be257e895b1eb64f5a9", + "regex": "(?i)^https?\\:\\/\\/treasurequestroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9515ccc78d9ce369c2530e08c13a90a88ec5c6a0e10c2059f9a41c3def45856", + "regex": "(?i)^https?\\:\\/\\/treasurequestroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d58e7ad636e10b78a15ee9f181784fd3af721a52de5b21a3555cc0cba250f6ca", + "regex": "(?i)^https?\\:\\/\\/treasurequestroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ece28172df49fa63a18c409f88f372746ff1d4ad3e4e9222fa82e9646daf75f7", + "regex": "(?i)^https?\\:\\/\\/treasurequestroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d88d52479b1e0704e66a2573f3ef7c44b66c63e576f267ec6f9f0baa58cbc45c", + "regex": "(?i)^https?\\:\\/\\/treasurequestroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "befb980e05edaca96e70751599b7d4afb90f664c0537161109979fb614a88f09", + "regex": "(?i)^https?\\:\\/\\/treasurequestroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fef3ddea784c46474309d1027d220382e262a7986c0bb2448113db5b7931131f", + "regex": "(?i)^https?\\:\\/\\/treasurequestroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22db217de8b848ea022897ed502c1caf1fcd05af1fc2432dc1544ce76f350ede", + "regex": "(?i)^https?\\:\\/\\/freerobloxclothesdownloaderapp\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "931d0a0f6e2359a0d72044746996c84fde0edbc27a3bd72294be66fcea3ab579", + "regex": "(?i)^https?\\:\\/\\/freerobloxclothesdownloaderapp\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ba06d60090afa9c2314722728d2625362ccd589ce6f5e9b9f606e8a668bb018", + "regex": "(?i)^https?\\:\\/\\/freerobloxclothesdownloaderapp\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59e2abf8eeb1e27df44702f942368c9fe3ba29adf59aff05960a2a621c1831a4", + "regex": "(?i)^https?\\:\\/\\/freerobloxclothesdownloaderapp\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a372278fa6e6b1154142b65373c1d17dcc18da827ab4146b9f32f3184657fc32", + "regex": "(?i)^https?\\:\\/\\/freerobloxclothesdownloaderapp\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1e6695f52f954bf23f89eee04aafae2111f857a9dd4138da0b3d48a79df2943", + "regex": "(?i)^https?\\:\\/\\/freerobloxclothesdownloaderapp\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdd328e1cb5361e510b810a41e2a01219e2d4f1f90eb7766cc236f1313f8c84b", + "regex": "(?i)^https?\\:\\/\\/freerobloxclothesdownloaderapp\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22399d8937c42bf2cfc153076e46e0cc6b1904416b690a8464a864dde9887b7d", + "regex": "(?i)^https?\\:\\/\\/freerobloxclothesdownloaderapp\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+3SvL2g8_vXNyEcPdo8uQxuCOV_Gc6ej3dh\\-geuXiJjoIWJ4LEewWs4yNMj5rSGnkeBolgt6QhCU_tcOgwyqGyE0xWH20vTRwSuIrvSgwHHX\\-Ln0P_yQY9NyfHLIauOvekwMbAFCxcXxFza2EdN1AYuAd3idsaPf0ZRm2b0DLE2bdeYsikVsKWdwhhQtONdnW1c0XxyDd0CE\\-epv6VnjHMhhilKjacMUE2jzpfjqx7wjWfR4AnF0xCA75jQhjKWfDZwM3mWDuqxsSjxoRtRP3sL62\\-cmyvbUtuqdqERCV0GAs2Xe_HYgdkmUE1pfWt3UspwSUp6D2yQoy2nleHRLe14bKiVs7t7XQ$" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+fzdXGdYQ_rxJpmZ\\-lNgIZE5jY02okS5q91k\\-JDv334VJRCs_yGaEvrk14h2QXgTw4Qk5SMp04mPNe4AHn0bISY6Ic8kdEbO70az0kia4LaJowKJf9rIPwrtZ_emsx6sbSBYwBO0Sgsdp81aeCSxfpT42zisVgVw\\-d_\\-rp4dvmpB6xlihmmc\\-XS1_71bNAkSXrlImDgSMTN6pCdjozJeWq1R9twsrum6Rv7gxnKDaskMATrsIuQj85\\-X2\\-saCsqpMUW\\-MF_oKtA0hoESDWNyTiAbl9UlYax7PQKnrWUqANEE6WxucrM9q597Gr\\-8aK\\-vUg8KoGVCd1IH0_fb515J9uD4GTl2y3T8pfgK6dp6G7ew$" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+niJLqzLUzL_g9SDNnZYgBtj899JbzTRdsjGhmDsQoQRtP1tB1ylRefEi7olA0ofXlRgKdw4JTB6_FU367unYqytViuheRtenXWaXoxeRuevCWAGEcXadGBlEiUaozZvpr3dgK5kahbmHH3kzAATd0fjKMBU32taucw6wtu2ksjJSxUvKFRpt9yqF2aG74qAl7QNDZF6M2DHDMkrLbvkK_5SVjDhJ77dIzhVmXohs9H6Tb6sqr96g8XWj0Ey1kdpn87wbeJ6h\\-VHkDnhGnTSKKwwvHml9Xx\\-pgZgHibPOs9EqYufZLp8IWXlIgTRZwCvw8uDJg1DAaiCKb99pJXb3vn5ZwLPrJp\\-7p2cs2fo5I80$" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+\\-cZX3iwqJnW0C6LSgxTpQCParFwUcph9kZgTnOieDY7g8_wFBgoGmE6KJuQE\\-aiIXGP72Qxa8BEWesrc36eZ8DAp8fOXGcgUasHN8wqYLaiTRNZZuZnl9YlPI2F8PPzrmz0CfrCqrpBYWsTS9QdEoTY2zp_94ipLMyb_DuR4kSmxQPTUav4VBhKrurnhBHhS7Na3IGmUUmXlmdCYQJjeCiOfCd6GfP_Rw04OUkRrIjGfLkWsTBEDpPa7nH3ZFiOUpW5ymVoAEYKdfMssXuqoHOnrWqpy1CSoSzzUEa6x_H5xYgKDgbmUXUiVPmEqxaMY9RXHGUp3_a\\-3dIyOmh96a5z5vQX7S6mRDLKiI0Z4K1M$" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+c6YyzOZHNwwGzxrsVq3pP1FZtAR6uwNmkpoXOf8WvaAitbIw75ieFZgNGKrViltWit_O1vvwz6l\\-aNYK2L416zVseduUN_6iUBl6pqOI6HQckQkMBddYdriXXW1VYogUs5BSjZeUlktuE\\-WjSBGlwWlx_fSqNbKNE918z8VdNlK21p1n8vPiQhjdmdAQvcf61_wY2I3Odmb5wcpcSGcavGX4hCCjJbF5usnV7TJrG3ixgIrRhkSK87zuu5oZVnBW6GXKJrNvLbr_faok8U\\-vLVZYn6U8hChUppG00UI0Qgk7DKJJlNZnZjht8jgrIT8\\-PO4Y0IxUTYIF2cziHGuYNmRbyY3GRzqiVRNf8TY\\-h\\-A$" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+aob8ZQ6\\-qzqe12fWv2hxETu9l_JoPiYGdfBjXM\\-coQmEYe6CEZ7_dezv\\-y8rZJG8HcuVxsoxom29B40Cl7yMRZE7\\-Hi5PtT5bsi_5qW38WAwbK4yQwSiYetcS5FvunIvLUy2R5uj0Cd7fsy8KhNdkGlzzoRY1G3sBq65mL2skEiLdD0bXcid9ZENoD8a\\-T3wqmnNO8b459Aji7LiRcs57THSChTR3tkx9\\-mufkrBPtVzVD7NKjOs92vjFDrckQvobCL6jLzdqwLp5y2RcmBrss5Xhv4haY7jkB1pG8d66ZlAB81UQGYS9XDpbpweM3MiWlP5BT3yMupRJ5Qlt76DjB60Uk7H3bAB8\\-s3Wct\\-Zz8$" + }, + { + "hash": "a794ce3d17be5404264014ad6328cdd157a6721a8574ad6081f6f5c3aacedbdc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook\\-login\\-dhanish" + }, + { + "hash": "d6f1f772667546ccd12c932eeda8e21b4974c45ffef941e570303af937051b53", + "regex": "." + }, + { + "hash": "7be68849562a92e1b6f56d3acd1ed1abe1237553b4d61d4e3e117075e063d927", + "regex": "." + }, + { + "hash": "cd6168f22770c083d7b8c6208d028b9447e8dfd97341b30e65f85b076b1f0491", + "regex": "(?i)^https?\\:\\/\\/geminilogein\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c9ebc39e7775ffa047c7c4f3e450a3a6cc796cc80b061d95bdb1c5f0a12f0d81", + "regex": "." + }, + { + "hash": "b1b23476773ea33e6520f2e6f0d43d9545ff0d1d9551179bc9a254692fb27e35", + "regex": "." + }, + { + "hash": "329de476f16ec965f6e3b8f8416d38524ce3845fb3a5184839672f1a1a4f648c", + "regex": "(?i)^https?\\:\\/\\/geminilgines61\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0cb33a9c90a3e73e25af6f79c2ca24636f92c44abf5c635a0991d0dfcf1dd1f9", + "regex": "(?i)^https?\\:\\/\\/gemini\\-useloign\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5292ea8b61798b618c7dfcbbdfaf58d35d0ca132bb4adb4f4ce22b14e4007f95", + "regex": "." + }, + { + "hash": "f0d23ea0668e97eadcbdfc2a6cde5e7cd34456b19d53daaa39c352af7bc7ac9a", + "regex": "." + }, + { + "hash": "76b6c3ee346537d0c00f6f450604a6b3879d5dec6c59df7e8b2b81dc8f0b283d", + "regex": "." + }, + { + "hash": "8923a55f59182c6793488a0ac2fd02010dd5d879031ce186c6962a269fac9f20", + "regex": "(?i)^https?\\:\\/\\/genimiexchungu\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ca89e89c09f2e431358b6067ccf39297b780c09519cf847e3276799ba5b1e4bf", + "regex": "." + }, + { + "hash": "faa431a2dbfb85ab06d9cb176359ee99850cb2065a70819f858bd2b953496bbe", + "regex": "." + }, + { + "hash": "a68ff6135568fac939a04a1ef6d324643f4a1d9605acf09999ede5a8dc97a385", + "regex": "." + }, + { + "hash": "b400d2c0291175bc4df6797d8c38d9155ca0e3577c9cbabda708e42402a2c3a5", + "regex": "." + }, + { + "hash": "bfdf62286091bcd2afa4bd3628b923e9fabbfa8c67632e577482ccbd3fdbdc4f", + "regex": "." + }, + { + "hash": "1953c709bd45fdc159ef706b9a6425221d570f9849a903f0d017dd1a70a64320", + "regex": "." + }, + { + "hash": "1cce8be8edfbb49215874c80e37743691a2674c7f6fabe2fc847ea984d29c5bb", + "regex": "." + }, + { + "hash": "843269311aef3db3b68ea7c6865ed86c991c1f3ae9f9e4ecf4f7f986ec55777f", + "regex": "(?i)^https?\\:\\/\\/gemiiniloginx\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "acfb4698c8cb113f6936e51c785de9ee1b8546cdc5347767cd692a8f97daf7a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html$" + }, + { + "hash": "ef3510a190d491ca908788508b96daedb1b4f34fb7c12d59ef909a423636475c", + "regex": "(?i)^https?\\:\\/\\/up\\-holdlgin\\-en\\-gb\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "47035e67984e1216a405b6f6a780635dfa54da148805b765c37dff41660a27f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+gvxKtEwJsdUz8PnJz3K3Jj98X2Mx7xOEgEAoVrrbz9hn6ZauEpK6J6ZM_u9fZhLLKBprsgisaeSmiZyAupgceero1\\-LyLhoM66_IzxqG6MK29TfjGzJRMj0bONEwHR3swN8Sg8_rMHfYbPu9d62yaYLBafD9hPa7Q7CBS8oGbaUARUecbEDr9yERASt1eCM4c9cwy4HkWbf7YLhsA2prmNReBQpeMojpfRDa2B6fjn5_8NZDAEnfXkhgzPOhQHWeqwQ9nj6napWHFhuYQNd_tjOUSYk3vrdrSui0BskFY3FyRxrUEkt30u0mM7J0YXbtKgQQP\\-iZQzDclP2R9BHry3IW64BJjiA3biFnCKuy1i5Yc7vH$" + }, + { + "hash": "f53cd9acd5d317e9b0b259da507b09d2c81de83fecacc08a4e1b749291a9f7fe", + "regex": "." + }, + { + "hash": "0541a4bc0f740a487a7cc17fca30582aa1a9a92d71805515b4fe41ab1de103dc", + "regex": "(?i)^https?\\:\\/\\/gaminiexehange\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a0f9f085753c89565c9b9a10c6100bd4f945145fb2d1db5413ddf741d063ee72", + "regex": "(?i)^https?\\:\\/\\/meetaamaskloginz\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4bf6c77261eef3fd6343740b18ecc58a4f95ab2b700620471700cd74f1bc0c72", + "regex": "." + }, + { + "hash": "717cb1c6e8aa9001d958332968e035c24f48608483ac3c0637abd260b98ffed1", + "regex": "." + }, + { + "hash": "bddcb455b3773fcd2e2b1b803c4b52533bae92b44ae48cd8d55ee1258dda9155", + "regex": "." + }, + { + "hash": "967deeae32b017a8553711fd042905a2d13e8145ecede61cc31eac6a5d4ae090", + "regex": "(?i)^https?\\:\\/\\/upholfdusalogi\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "66d449b2bfb616e63c2e119ba9c6f0d5ba8efd03df1e6257d1bc7d3756654ad9", + "regex": "." + }, + { + "hash": "b8d1bc551efdd1f3777d595e2b7d8ef67963bf28c3b536cb0a132825e3a178a2", + "regex": "." + }, + { + "hash": "251eda66e441347b8b1723e0d54667054cfd86364c92f0cf6c0f26486f464f60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AWkAAARmjrwAAAAAAAAAAAYVpXQAAAAAVX0AAAAAABxsaQBjdfil7GjgyVJ0RiW0Am1fyB07ogAY4SU[\\/\\\\]+2[\\/\\\\]+bnW7yaH76xGaEX1TUQ23rw[\\/\\\\]+aHR0cHM6Ly90LmNvL3U4c3NzUUY5VEY$" + }, + { + "hash": "0f50309157c2c715d7f873d9d15342944bfd795a49a6d753dbea93a2db8f15c7", + "regex": "." + }, + { + "hash": "dccbb64877a8bd18595856f71c05db000bc577e4d23463cab39dabc6495da646", + "regex": "." + }, + { + "hash": "0438d3563da22d3029d7a61484f1c5fac537ddf181372e978bbd0ce52fd0e8a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook\\-form" + }, + { + "hash": "408be672a7a81d11a83741b1e167976ee26ace7d89ce86a16b8fb805b5ed5c62", + "regex": "." + }, + { + "hash": "e185fbb19517047df9fb699884ff7833581625f903bd9f99434ad32f2b738541", + "regex": "(?i)^https?\\:\\/\\/bibox\\-log\\-in\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7a243779f03a19a1e51d4e68e88d0e86e9afc359c53137d0b6179ac1f0013461", + "regex": "(?i)^https?\\:\\/\\/geminiiexchange\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7f0a4fd64e960c7a872982c88c044b8aab58c601f2fe992618e3179291b43399", + "regex": "." + }, + { + "hash": "bc0cf5606e981cec34d41f3f052014a5a02194bee0ce27bc17b22e05102daefe", + "regex": "." + }, + { + "hash": "c76eb6b736c7e44cd6c21a782cc4bae6c60e72cdfb5b14ca8873a909d552c84c", + "regex": "." + }, + { + "hash": "7136a7803a9d40134a33e434d1d57d3efaaf89b0cffe170fa3985d7551df2f77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-landing\\-page" + }, + { + "hash": "d6247d8b71f27fdfdfbfe8e221dcc0d10a350c383d676b604a0c49480a2fbb14", + "regex": "." + }, + { + "hash": "3033e5502833823d09a8f505dcba4cfbb62287cca24d4ec43822be1bf8b1f8c5", + "regex": "." + }, + { + "hash": "06a1e15a50c14c500fb012641ca4726ac3ae0c4c5ac67de5eb9d4e39712b1099", + "regex": "." + }, + { + "hash": "ef3514e7d53071d27feb999646f380f44bfd579b3dfa2a2a6961bea413fc3bd2", + "regex": "(?i)^https?\\:\\/\\/geminjexcanges\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "21b83513587df71b3295b2725f6e48986305776c45b566ab109d0a4027f89aa7", + "regex": "(?i)^https?\\:\\/\\/gemini\\-logytn\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a7bef635bd64b98cfdc2c659f9de7eb6053b5b5c9602e8a0cc7e495477b92d2e", + "regex": "." + }, + { + "hash": "0d2a7675f18625ba07e1d75b8b51e815a4b66b62ddb2042d16e50cc57b8a8dea", + "regex": "(?i)^https?\\:\\/\\/coenxbassxproxlognix\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "34f2bf57ba5302102a144a41a6b1b03e15fa1c08e0e5a1b60480bf22d91773c9", + "regex": "." + }, + { + "hash": "064654dac873c76377e98b91b80aec4b1bc578fd9ad9fe56beeb2a4c3e3c5317", + "regex": "." + }, + { + "hash": "a6cb9518add0fddbe506a127e207dcb94f40328332af1f76367bc1d849d5163d", + "regex": "(?i)^https?\\:\\/\\/mettsmskilogi\\-us\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c90ada6875b92b36495d6ee4d93934148e87d578e263f14b3e9847791111cf59", + "regex": "." + }, + { + "hash": "b3ae865b68b25ff43abbfaa3d6adbeeadadc1f8a5bf1ef90485df1dc417d68f8", + "regex": "(?i)^https?\\:\\/\\/geminiloggibitcoin\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fe3c5dc461b28ea2f9b5f61a66453d20690e91877812d3d5945b3a054c823425", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ba750af571079cf5ffe1b9daa1fb5f1c3e80ceadc839dace46ac8bab6523d9a", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddb88a0862a95663b8b038a3f5c14c3ba0b3903858500cfecc5c6f0eaf19ea44", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ec74947258e9778f1b849fa09430caf0bb524286779018d5784a682dad98c9d", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79da1d95eb2dac8f1e9edaa5a39657607f98b5c1e9e3ce1147b4cc84cdfd5a69", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a66e04b2de9650d99fbac177cd7cc4927b793ad4c4333c721aae365714acac99", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76b60c2731518579bbf97e5d79445f73dd97cabbc5afdbf64fa3fdafc9c46279", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81b4cbd48133aa67dfefd80ca3ef967ba798e7ad6f018ab72932d0a7dda28cf8", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "275a6b32d72e22c4b7b916a996b0b94a2b3a86b82c27fe0ed65cffa5b4a6315e", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9ca2c61d2c67438cff29facc7465bc6638d70701b31752dc49fcaa0dcdd43f2", + "regex": "(?i)^https?\\:\\/\\/anserx\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31a56b291e3d38dceeba2ada1e8a9bd4cfa6217ab788bcb87881316b83b66b3c", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "799d13f39a43dd68171b6b3bfd8065c3dd82b1b25ae7c59d4014941555c6dcfd", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f1b8c923430a200900537dde53226fb1b63c07310fd71496709ce0e93444f79", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc05c5b7ed56ee5730635519a9fc0859001b016b20b6ab3fc9cc8240e3c6bd74", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54ed06147284b856b0fc86980f6c6bd26ba11e0d106198047f372e059c752bd3", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a2d6db7dd0c040cf67d6207b2dde6d2405ac81493f577d2eca569ca2c77d9fb", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0b9d51f4942ac034c20d8c2735fe5a7f2238917506fbae1a9379a3de23ba523", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03404958978418c47670a73e5dbec254711d665ba465ad852487320d9c6f4722", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cd5d310e8282921d0750bf0dd205a216009675318aa065f3c8ce2446f14261d", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c3ad4db9bb87c0ee02c8cb226c78ae0cee069c6adfc024c8445631a9f1232d7", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61e0cfd58111751b2749e34738679fe3790791d57ac74b29b6aa22dfbeca2313", + "regex": "(?i)^https?\\:\\/\\/etats\\-coupons\\-transcash\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa8b0fe88599fb3d1150c4da15b4859b3978c3945d97880bb69df6a3749fb64f", + "regex": "." + }, + { + "hash": "71ed8e0e706ecf6e6e8088df953f286018a779f8543f6c4a2bbdd732dbd93176", + "regex": "(?i)^https?\\:\\/\\/cryptocurrencylovers\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d739c19bdbcaf5916073d93d4168649f16389221c60cc411c149cf2ff13d6321", + "regex": "." + }, + { + "hash": "58455e9ea4ff673a90c686c284327c8a193fede5556287f8be5eb9b39ae151be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-lp\\-clone" + }, + { + "hash": "13507b5ffadd6688cc6493529d560400ed01f132efea2d39044e7b6158a24ab4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix_Clone" + }, + { + "hash": "d632a0788922fa01c370935da16b87b94d350782eb04d574ced75542587d7f20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa5823869cafedc1b167a95bf33aff958ac3a13fb805d19cb9e2835ad155b330", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-test" + }, + { + "hash": "941cdb37f004090449e18f86285ba104dc6f92c0fa0074951d1f8339f6cfa257", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-clone" + }, + { + "hash": "b0d5bf6faac8786b791737ee51814186579ea3a7c58d62d1b4863387564dbe33", + "regex": "(?i)^https?\\:\\/\\/roninwallet\\-logintomyaccount\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4f6ebdbb90951ee53eb8f12d0f7f49ded43da46e9a9e312a486ddd97b7361741", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-page\\-clone" + }, + { + "hash": "51c6da90d89eb615f834ea2015f56801854987bba8167c77a6f6573b085ecbf4", + "regex": "." + }, + { + "hash": "04965ea290f0bd9830ebfbf4be8a87e3ffcf7ec5a7000ebdc66f3d0fa7a04139", + "regex": "(?i)^https?\\:\\/\\/5eystyyhse5szey6y65y5\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51f6d86ed66b1795fab311c43f460fdfe8b1e3cf88c8c8a89c5569e5f8c63b82", + "regex": "." + }, + { + "hash": "b5a40608187507721f2a392472e0725a22d1b2b51887d5ea596aab0f71767f9e", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fa4099ff1832adcefa9c637b4ce4b8ee48f1fde58961d6b173dfe271e353af1", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2baa25693c8c92f4a4b9996c8116818a9b89bfd8fd6669b4d586bdae9609f880", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08e501507bc2cd72629087b7762b6aaa1521b5499b59f9915ad5e1a03a0763a", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00898cfb019f0c5718db2b36fb10fac4fcfe32f20c331470852bc09db3d54940", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ae322a2546b3012edd72c26f51718bda8cb4b1f0eac0c7be8ef91135ad5f7a7", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5793256dabcf26ca1b9cab1f6dbf23c194297ba8cfc3aa46dd76c1085c19e1aa", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20bb9a2f4000193e6156c41c2fa198128b4741ac8c1208f0846842238c6baf65", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4240b2f2af48bb0e13be107c41f2ed447af9e7c22bc56f6d18674b91fd39f2a4", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca1d99be9a99c568cbde1737221414b613b5d8f5cbe18eee6b888839162b2651", + "regex": "(?i)^https?\\:\\/\\/pesta\\-panen\\-bri\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e988b51bc419a7aa3387c5150b029d4b4c4ce47e3a497d3d698874be2721b4be", + "regex": "." + }, + { + "hash": "a4bcb63a38b1ebcd5c5889ca4edcee1340f5be61aebdbbaa4cb406e5ba00d3b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes[\\/\\\\]+ko[\\/\\\\]+Exitkorea(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e59e983db493bcb13d1459d2c621d3ecc6bae242fe4408e57670ef41978d01c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+SANDEEP\\-CLONE(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6d1b4970512a08e1708add1fdc965ffad393302bb668883dc8d5f8e5ab05457", + "regex": "(?i)^https?\\:\\/\\/recharge\\-statut\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c041c06d80a377695f5d59b5501c347c66b013399ff7de1eac04ccc3419bb51a", + "regex": "(?i)^https?\\:\\/\\/recharge\\-statut\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f8640b76130ec79b3bdefcdf75a39aafa5371a02d8fb85295c53695680e530a", + "regex": "(?i)^https?\\:\\/\\/recharge\\-statut\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f606990fda2652f19877f3515f6773f445b866f9baee4c31d6ac1461c1e8b25e", + "regex": "(?i)^https?\\:\\/\\/recharge\\-statut\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b8e8ad3ade43d7b27a386fc60113428cf237fb3e22d0639ec8cffef9e030ccd", + "regex": "(?i)^https?\\:\\/\\/recharge\\-statut\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "278919e06bfc67b165b461559084e3b823df0c85e0490b6a200a7858f8aadbd7", + "regex": "(?i)^https?\\:\\/\\/recharge\\-statut\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4a9651508a11abd7ab819cfebdfc7e1952835573b2bac5ef6ec5e63fa5e81e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "4a1a8634fa5ce24bcf9c8e4d04859d1835d150860cf6e7a3fd0e66e0d4468fe4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "7a0c33aa29ce5664103671cec50bf8fc414fa7d2e491adb46ac4a9b6bcf2326f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "e383b6420407bc6573b421785a5ed015e560df4eb807ea609d21d3ed0db350d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "643f1935ee9ee2d94aba24a2731a9a3cf172b3f04f0b16f90b7d434759e9169a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "892d9e7f0d28f98982110f1fc40c7e12c6d9a6a433ac3f11d7c2a60af758e0f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "7c7f62a57c20b50241375a5cf78c9392a0823f393dcaef7ac796df3a5dd30c30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "146ed465811e9038265741444cfc3f5257ee8c46aa5002485cd9c14264057509", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "1052314a457202854611fe7889ee80baf4d4f8791cd8794a8eca8f90f9b4b66d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "585224a3016646bd750a8011f10f353cfe689ef8087a681593698c56e4fff85a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "08301f6b12e4480897f7bcf2e08894dce448e7daacbdc4508ec14dc1cc6db1d5", + "regex": "." + }, + { + "hash": "4ed3d2d1386933911b592445752d25c85422829a4025a13677ce9c5a96fedf35", + "regex": "." + }, + { + "hash": "e559443d7797a70313b72d10192d45df4f39935c026519b5dbee52f89041c090", + "regex": "." + }, + { + "hash": "a601b5b4836810c831a85b1dc14ee2b2da1f69dfdfea56d87b744508fdde9a8f", + "regex": "." + }, + { + "hash": "ffbb2798aa430a8209629e29befdd9379f2e204e78381b3ba5dacf3d27b377c7", + "regex": "." + }, + { + "hash": "d8308aa4eefc2b154366c54f2d70797edd4eef95d5246b920fa9914c5220a37a", + "regex": "." + }, + { + "hash": "4c91753d876f610620bd65b855bc1333a1ad15d5d759f03ce3aa42e3e991466a", + "regex": "." + }, + { + "hash": "1764a5616b04dabfd64ac66f0c4e96b269899f76e15b1c858726f313e0889cd9", + "regex": "." + }, + { + "hash": "c7107b83807b9daf4e3ff2a65a6e0563fc1fc86687818a2405a28b1af6a9f9ce", + "regex": "." + }, + { + "hash": "a7e8284b034460a6a055d798ec90b032941a59fce63991cf066b7c41caef1ca1", + "regex": "." + }, + { + "hash": "cf0cf250963b8743e305f99d25141f58bc3e6b7d2d253dd457c8bd33735ffb70", + "regex": "." + }, + { + "hash": "3caef0aef8ee82f571c027ab720625ef2e240d224e0ed5aea381e55071f6b3dd", + "regex": "." + }, + { + "hash": "d418ff7b5bb74a8c3b4cb0ecc3ce83d5cd565e271ada92b36053a4ad9b5da760", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\-netflix\\-clone" + }, + { + "hash": "112087e2ebb8d73f3c11f1fba9211a7f82df6d0972e06e3b87099cddc42798f1", + "regex": "(?i)^https?\\:\\/\\/rbx2gen\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a39c1d756e4edf29f91aa4db74c3ecb5c57d2cc373214accb850842c098b9185", + "regex": "(?i)^https?\\:\\/\\/rbx2gen\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d70b2358b552e6dc3537a4baaadf9566c1715ed7829a8c34051307d665b030a", + "regex": "(?i)^https?\\:\\/\\/rbx2gen\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b277627bf9d0354ea456423076d5ac46501b163aef0d0cc0760edfefd0238b4d", + "regex": "(?i)^https?\\:\\/\\/rbx2gen\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c84a5c7f7405a5f1f39df9a4d676ba15cbf7896664f5cdefe1f439f10693259", + "regex": "(?i)^https?\\:\\/\\/rbx2gen\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ab5d3184559bc305dab71b49ce07964302cbda497d0eeb0b62c1337d0d7830", + "regex": "(?i)^https?\\:\\/\\/rbx2gen\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "808505e482c8c8739c14b01b83329913612fa97ff16e3beed2a513bc401426c5", + "regex": "(?i)^https?\\:\\/\\/rbx2gen\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98a9417c1ea140bb04ed1ee717f605273e8e6f0c2b0b2607f6964bb47d7639a1", + "regex": "(?i)^https?\\:\\/\\/rbx2gen\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "771dac04f179b777a866c8dcb2d2a9097357b70286b2349e5b4af555491ff575", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70bc855abef8ed1ec7fd3f3e883b200d98bc62af27dbd1dae426022ebdaf0046", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook\\-design" + }, + { + "hash": "9063c58f83490ddce51d86eb66264606e896ee7eda502985470eaca4bb5a2199", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nn\\.html$" + }, + { + "hash": "103912b0967f8badaf852c9ce468ebb0b73f3128665606af05f9f69b23da6cbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix" + }, + { + "hash": "5fa28146c1767ade06dcb1df8f75106282d2d344c622793dfe7ee437a093d35c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fac(?:[\\/\\\\]+|$)" + }, + { + "hash": "e75599f3728cc80e7a5e7437d8a4cbefaeac16447d870d00ad3c215c14459f77", + "regex": "(?i)^https?\\:\\/\\/puttykeys\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "de5091ef9059bb53e4073b28f6339c886edce81f11512005f77ecb9e8d49817b", + "regex": "(?i)^https?\\:\\/\\/ssomailt434\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814a108a3e5276dee2f7ca372ac0e21cafc9776c5bc94eb39da982d9fab6bb84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix" + }, + { + "hash": "2e59e983db493bcb13d1459d2c621d3ecc6bae242fe4408e57670ef41978d01c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+SANDEEP\\-CLONE\\-NETFLIX" + }, + { + "hash": "eee490420bd4a4c287e3f2774836d4f48cd560b4cadbfd1d46c61779a5f132ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-clone" + }, + { + "hash": "3e7420273de082d81e211e6444124028f873a66c0c2551ef69b3e43e3ab8ede3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Apple" + }, + { + "hash": "ffefd2b5915e497e23fa891bbdc5036ceb28655794741828ec558c7f02cd97b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-clone" + }, + { + "hash": "28552f85c9d4fedb448a39d209938f9c0a8ff0b9cdd05a107341c601c0f36d5f", + "regex": "(?i)^https?\\:\\/\\/upholdizloginn\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e8ee4cfc0a7be077b13111ca0ca49b40fcce94af12937cb6a793f1cf3256acc6", + "regex": "(?i)^https?\\:\\/\\/kinobaseprologis\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f56da0d69d893e7fec492f1648e9bc62817e0425262bbaf1a971bdb71c8d1827", + "regex": "(?i)^https?\\:\\/\\/quenbasspro\\-logz\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9d8eb322fac0349bafe85fc7fd31a72b9ffd43ced3518cd3c1ff964c49672cbd", + "regex": "(?i)^https?\\:\\/\\/upholdloginfo\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d4fabaa1407b1733683a6c006d410b25f921e8db3e635c43a473cff16dd20140", + "regex": "." + }, + { + "hash": "656c76889a703e752d77a6f5e1d49495becc00231aa147945728a141c5834438", + "regex": "(?i)^https?\\:\\/\\/uphbold\\-lloginn\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "60a17056d6f4b54447241e23867b08db7b7445099988c877546e714aee308216", + "regex": "." + }, + { + "hash": "04c438c2ddf4e2221465dab67ad9427138c27262158f92422c99658940012c32", + "regex": "." + }, + { + "hash": "a7f1f2e6d41602a965a56c61a5072d40c9a4d439bdf7980adf807399c6e93a48", + "regex": "." + }, + { + "hash": "635952675031e92c56aa8d819a4851a5c0a2c759202eae0ce528f8b6c9503f56", + "regex": "." + }, + { + "hash": "d9b2e4a39a8752854fb09eb9bc94e3e61d02b072b763fca4bd2773be487834f2", + "regex": "(?i)^https?\\:\\/\\/metmask\\-lggona\\-us\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "852edd39314841d4b1b3f477b6f34ac4a0b5798235a532364b4208328587d3f3", + "regex": "(?i)^https?\\:\\/\\/geminius\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5f89ddf1b7c5ad87fd018c1d30038d17ee88dd856a436964d4ea532cdf9fe792", + "regex": "(?i)^https?\\:\\/\\/metamesklagag\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bee1d3d5f1c06222b755b3c4384d466ed2b7d32cef984938e68ac33fb6686725", + "regex": "." + }, + { + "hash": "66df51c2a76be995250ca3950a28c6a259c3f59925829e7b22f51eb32ce9519c", + "regex": "." + }, + { + "hash": "9fd8d8b2ebbd0c0199f616fa1b2a2369dd90db714186ba1a5bc5507bb7d980b2", + "regex": "." + }, + { + "hash": "8f3b95cc7008edd2da7e22b066fcbbd887606af61f01a2d1b902de7f03bbe1eb", + "regex": "(?i)^https?\\:\\/\\/cionebesa1luginn\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2996da27cd9a2ce9a521c7ba65d8210dae214b95b89a423e828f3fde4d77ca1d", + "regex": "." + }, + { + "hash": "09a7014c773edc22ba0484a51a6da114937807514dfa62aff66e6eeee965a2bb", + "regex": "(?i)^https?\\:\\/\\/cioinabosalogiins\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c3b28ff5241206f7d5a902aa783bb4f1f6183155bf13bee82cd9765e89918f87", + "regex": "." + }, + { + "hash": "8eff83794ce7bcbad7e268f6acc47a704550b5867b2c87841f965e225242eb07", + "regex": "." + }, + { + "hash": "2b2f752885aaff171b3961ae8239ee7bcaec27f1a72fcfc3e11fd4741b59ed3f", + "regex": "(?i)^https?\\:\\/\\/cuiinbaseeproologizz\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bbd44a21a96798db102da24c8185cfa92f11c6ed124b6527763057992929bb9c", + "regex": "." + }, + { + "hash": "f29702bb3bef19be0f8392b8d97415462031061efbedb6eb5dde666daf0d8e71", + "regex": "(?i)^https?\\:\\/\\/upoldslognus\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9d937a0fdbb8d5ba16201343991136739608cc6866468af9ba0d3053ba060b99", + "regex": "(?i)^https?\\:\\/\\/conbhasprolgein\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2cd83dd4fd35975d3140754d4429182f6b66c8bff61be1d27ad4fc22fe8a47e6", + "regex": "(?i)^https?\\:\\/\\/gemineexchongu\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "88805f37c47746c58f59fecf65ec228dd9da461bf7d730fa1b8983c2a204406f", + "regex": "." + }, + { + "hash": "94be0fd7b0987288031da7e98f678b56ede6a7f310488e11e84179ce5ce20774", + "regex": "(?i)^https?\\:\\/\\/gemmni\\-lgi\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9ca03e715ff2e7e12fead6a82f94d2e58ee20d32a2cdc05e98c428783eb5e9e0", + "regex": "." + }, + { + "hash": "b3801d2b3fa72b577abe8c5bdc6915f9758e2f60962f89728e06025295dd495b", + "regex": "." + }, + { + "hash": "957a42c1cdde88810fc3b46ecc48cd33e7dc8a09912d88bef9e27a343416ae6c", + "regex": "." + }, + { + "hash": "1c40127044430367fca5ef569e4826bd9516b61d15c6b4711283572985512fe4", + "regex": "(?i)^https?\\:\\/\\/conbe\\-9prologi\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ff52cfb33bf16c7a3c29e8ae0f0b7f19dd58e4c3602f68c29134ecc684355540", + "regex": "(?i)^https?\\:\\/\\/giminiiloggnn\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "20e13af04206d6f550111ddb894b787d088ac8b4900141a9cfc897e90fc17173", + "regex": "(?i)^https?\\:\\/\\/upp0ldl0gin\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ce5ecf030aebbfcb5f4b4fb693ecb26fb91cfa6b2bc814b70f9f801315463b0f", + "regex": "(?i)^https?\\:\\/\\/login2geminivolete9\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e78d6d83ea28ad4e27962f0540d4b1b43b8450c27345411564283db5d7ce1545", + "regex": "." + }, + { + "hash": "245163c1d701c9ca50b167728fd6a23d6fad8a918798f53b08d36be3d2f817d3", + "regex": "(?i)^https?\\:\\/\\/conbasepro8logiius\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5a402728e5f6a65fcb394dc2fa04662c6caa3b664f2970f77746da6391df6fa8", + "regex": "(?i)^https?\\:\\/\\/loggupbybox\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9d0c2b7f716a01e10c6f2d00fcba547ccced7105666a5c21908e14f252ac9c94", + "regex": "." + }, + { + "hash": "578708b1d1c93e3c99cdf360578aff5be70f3bb45e7cf59fbdbbc2c85b177471", + "regex": "." + }, + { + "hash": "fde650f3d6723b4800884cf43b0daf66b01768ba6837bdf20330146d1cf02572", + "regex": "." + }, + { + "hash": "05b7d2edbf82fbf841890cda7979c5faffa48d65f0d70b00474f225e356e6735", + "regex": "." + }, + { + "hash": "aa9c824e1fcb4d57e529dad2f34b857938f20569fe9927a55ab1015631f0d2f1", + "regex": "(?i)^https?\\:\\/\\/www\\.onrunnersitaliaoutlet\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c96221106646867340bb06abcc3d5ec0ace4869118b5538fe34fe65f0419326", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "ac9711457c4d9256bf9db654d832b8577e05c42a9eaff28b8b8e37b173caa453", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "4e728c7d04616b64ac3d7b6607e4fe033d5ea3f8c2735520e7bf73c4c4535a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "a67cb3cd2545965d265ab49f79e4a336d9805e1d655d0fec30564941e46c051c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "6a6b4dee4cc5a5fa127093916f8c9c54e019505d3cd1631356b2a7cebad1e462", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "b8abf91f9dbfdc2248d13fb30c45cc9601d15448446c1161623a44b9a612219c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "1c3836fdb7f3bba7e069a856aa53201b0bcbbd10c8454783cd748962fc945176", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "a7e81a1d47b5575e7db5bac7958eea375a9661c147f97ed363e0d035856ddebb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+HTML\\-and\\-CSS\\-Level\\-2\\-Projects\\-M\\-22\\-\\-\\-HTML\\-and\\-CSS\\-Mini\\-Project\\-\\-June\\-22\\-Batch\\-\\-\\-p83sitk2s2lq(?:[\\/\\\\]+|$)" + }, + { + "hash": "64a916732f3f245edce0142df6afa4c69721ccbccdfbd9adf085892cd8e88eba", + "regex": "(?i)^https?\\:\\/\\/begenburda\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1bee45255b4287801ccf7c0a28cf46be09d9d96b72b5036b7f38efff5cbadd3", + "regex": "(?i)^https?\\:\\/\\/begenburda\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d71359682c6af44af6985333de5875810d9d48ccfc273397470e23620093c2cb", + "regex": "(?i)^https?\\:\\/\\/begenburda\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "945647ddc3deb812202521313e96ea15dbe166aab098664b543e4f30323ffca7", + "regex": "(?i)^https?\\:\\/\\/begenburda\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54dc30b8d5f886621dfa309032a5379abac383147d8543ce988b3b30b466f241", + "regex": "(?i)^https?\\:\\/\\/begenburda\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eab603c94d3a2b4358a9177db213a10e4020f426f916c679ba5fe75795a7762", + "regex": "(?i)^https?\\:\\/\\/begenburda\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b02b540855f5c7f780f8e83f8af0803c848256e32032cafa97ea6a4ab87a1a07", + "regex": "(?i)^https?\\:\\/\\/begenburda\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cca0770a3bad86c4d78a46d9bfdeb6083d1e9fb9e613eee8fc29cc3aca859c5c", + "regex": "." + }, + { + "hash": "9a32e901384276ee2d5199632bf0f65621aaf42ee3bf8e19b1b6d8e5f075c3c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix_clone" + }, + { + "hash": "6bb25eb41fab4d9a6c6ee396b9cf485a0609297aea49170e8c3a0999b35145c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-App" + }, + { + "hash": "53b2d844477f87dd38bb6ff539116bfa8710921873d0f978009bb245240292cf", + "regex": "(?i)^https?\\:\\/\\/mepsport\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf050f41b85fafe78bc83eef430d64c102baa1d36ceafb08b5f0eef6ae369fc6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fb\\-login_newtonschool\\-htmlcssProject" + }, + { + "hash": "0463dd53aceb2dbbe38811f963c457623ddd96a723a97ac002b7138493852ac8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix" + }, + { + "hash": "9baa8c8ca544c8ba383ccc40cf37b08368465011a9eeb9e0c3418fe77da44e8d", + "regex": "(?i)^https?\\:\\/\\/www\\.onrunnersnederlandoutlet\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae4da42309a8518a4c47b95e4e019ceebc04d4532e4e20a834cc722c17af25c9", + "regex": "(?i)^https?\\:\\/\\/www\\.facebook\\-messenger\\-videos\\-app\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "680ec6b81dd7276c51583b448aaefd39de0c5bdd55a29a92e2c42066c07ae6d8", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1066e5ad28cb0b090334fd5ed180300a4ba04092cc9e7ef59c5e7a5714144fd", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4e02b75738617c3f8a1226c2d7a9a33fa0f0c9e8a28139e0020e2094a06426", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b24659df507772183b279e426df5bcddc81e94a5a776b2829b2d90027686cdc1", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b299175b2bbcff5b5ccfe6a509427574e469a7548b9c0a0f004eb2595396fa3d", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fb305064635acb5699ecd5da3225ddefb8cc423dcaea786abb4eb2725579378", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f945c3ee3032827b9e61066e07571a3525a1c0f004c312f90b9a1ab6942b05de", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11bb85a52efa4e370e0943e5fd587638d2f92762f28891cfaee5a57c88b2e284", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe0e6a7cc1600429abd6c80d1abe3d152a2000686fa9d4f2e7a49cd1638840a3", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "859b4d6d105ed2cf467aa0f064e5bdc9693b3e9dd657230778a9092b83cbe6da", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66ee2e1f584d124a59dfb33a64fb86354839c95174aff956ff2ca7a69ea3c4ac", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09df0d7fd1297206f4c0305177747ffd7927877b7202c8c5eaaac1f777b00bb4", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4353ddd03d62ca22e80dd536637e8d885e51e50e8b2467de0fcdcf98503439e", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c097f5664ff17efa2e09a8637d08727a6692f2e2518d5f99ddeb4eacee5e667", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dee391918dd711a3132b80a562057af7d2dc3127eea442ec493123d9583281b7", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13841ddfe09d9d8eb5774fef8ac2a454db67ae96a1420a8fac46ae10486ddb1c", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93766a23ff45a007bf28caf2d60fa1d6e9d07da3a047a4f35fc529539f443155", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f34342ed5a9bc4a2d83a4c36d899e4d2d1551e0a7339b433c320ff5a516da14d", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65054856711f7e278d35f2870b6ed2a3281eaf126a040d0a85b223af6cff45c0", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80fb998dd6a74cc13aa8bd0128c1c2bd690adb80ef66c3e682468ebb0aa391c2", + "regex": "(?i)^https?\\:\\/\\/comoresponderoscarasnojogodepolicedor\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81f5c2d4cd0d0a345a1386c5eb2130376eb3912b0e74de0f7aca580d63957e3e", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackaugust\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e08f68c1a24de186a1b95c5e9315d4601b8d69d70deebda84807494693fef11", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackaugust\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c71f92a45ad2a7448d4d1b3ab48cac04f0b28791236f7e7f251cf561f1dd365", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackaugust\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0d42285c08421fa85a9e3e349a00af7de0943e05bc9a5eb2909d4a0c125191e", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackaugust\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24552132adfa14a80c149737f28df872040707e59207ddb269ae2c45345c3caa", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackaugust\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7049d849ae072283079de217fe968e203db3be30f8371a79c0f9ec6481d200c0", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackaugust\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8c32b2cec0b636b392ba9c045c33201c02a3098ced65e2f5605d3b9457380e8", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackaugust\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "112b7defe00c1bfa8f6f6ad1e8848397c4f236ff5f0290976f6d0b8c7c57e010", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackaugust\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebf24782e5794be4ca15c2b5f5c6bdd24dac7dc0643324c58939e4cd6276f112", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackaugust\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b8745968b7ca39674e60d31c26b860a2ef5f0f09063866b7ddf5179d5e66f95", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fae56543a221e3498ca9e0758148346bc6decde9d88d1c77117d54f93d81d57b", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34908993ad2034c64f6773ceb89eddd05689a2fad3c3271a2e93713ba41682a3", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c5d94082259035651d0feafe649b5300469d1da4e9b525ae96244b2ec1137a5", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "745437bc2d7222a2e015e9e41231494b4afb7d8f90d10cfa48e23d700c5246b6", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11c03f15ecaf1071ac71dc586607a69662724093e9cc904c98944359b7311cfa", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ef92d01072e687abed350542b393f7d909e45d23c34faa6d2be125c15de1746", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65050f773d96087776ad06e267645507410fd83b0d32d5e356ddfb3cb35beed5", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5845b34c62de3dc2f377389956e8105ae17e4655a7bdba18bc93a9f1836f042c", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0b6f2a6e0be7210f3d16742346919131df451c599e66fdfb005560ab12ff59e", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c68ab3e7fc1cf9d4fe58e929fe5665c05119e404a3cd4fc3580b780c52c57b43", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c07d855d140144936322f3b764d75b869654b211a1371eb26234f53663cf7e", + "regex": "(?i)^https?\\:\\/\\/jogarojogosdorobloxquecaioaviao\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6787d39f8d83ef965119aebd06ddabedd11a7bd575d3cf1d364f1b54a19dc9c", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f65cfe1a1daa7fb9c4a2ca87e07a11f4c542050074b0fca91764c742c6eb306", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d78de06aa70baba9cb3d4c8998c755585f74b89d6d2a65676230b033c1b94085", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe1744bc1574a7666f8247831729525396bcf5cfe82cb3fa9c4cfa01674f4103", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03c396469c429ece9de6b907bc27702323fe02b91289804b7faddff765bd7af1", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38da15c2fd2809b0270ccc5a1327f3e670842107e8fbf14ef79dbbc568d5ba4b", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "229e9d5b6254e687ea95253dcbb2502b56deda86e85c9aea2ac527de32eaa806", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a42e3ae20e43cac71119eb2284fbad4af4d24c2d310d23ebfb3e816a9b177f5d", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "936313b41e0e7745bd1f08e838b73014b79ba3629700ba62c3e2a65c76c5e92e", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a7b57750161c86ce2afb71f1930c23ec59fcff84d97683cf807b0f1bd0d2871", + "regex": "(?i)^https?\\:\\/\\/eleventodelpelorojoquequestarobuxenro\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43635557c347e55bcab61340c37c1eac992257dbdda26eeda4d17aa51c531e77", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "651f5a754cf3cc55b961b25150bfe1c3e84f54865c3007bf71cc49e9612db092", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a979f355a151612c4b8c59c7b4711ee11b9606a8b9ce1e2decd5e27d052a014", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4abac1aa80b23ca117cef70e809e356b8a3bc2128ef4e7dad2b25f8b06c42ba5", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "196201c0fa4caf2ed759fb3484666649e41f8f8b963d2a0d8fd4a9414ff5c072", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49ef8e9357bda20645dad0243ab8054ff033b5e9966174731770da67b6ec247e", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa8ad4b233f9c9457a71d81450e753326821a0f0527c384b502dc09f4271b6fd", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6567f3841747ea881d4084fdbfbb2977f5cf13854fee4e22aa0e47494424371d", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85d9acc714be85ea57b29ef7f018370437da7879a395c1be29986c5bfab6120d", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e81ccc84e99eb0fa78effafcf508bcb2f7a3e27a57611b1c082b3533dc0ed49", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31393db4528df873f090a1211dff9a21c4f3f85e97f6672b0a3b762d5ab17089", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7061c424b787cf2e6590e5ee814121745908101524a85b5e173d3672bcfabfba", + "regex": "(?i)^https?\\:\\/\\/tutlecodepromoderoblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9747b5f67af427bbd5f38a9044cf9bc831e7b5c491e9c4f6d61e8406afb5940e", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f0038cf2f688757fa21ec35cf765778bc7a1dd8af18bde78b75b75f9345aef4", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dd01d3f5ce7573b052fef56110847b3ab366cfb00f611c79e1c9a7b24123152", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb7358068cdccc6c2d33e907e298a0ab67c4e8e855363b13cd659b3b00021517", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fb6481e0ead151c56ed5d50ac7de306825a051a478446b292b3b62fe4cfbf8c", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729e40e11172fe36a47dbce2e8bd327e7bb7cd34be2ea4214cadb6fd558bc846", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc14803ec2cf33b7a3c8a49cb754b906b9a8a4436dc7501b60d705578fab5831", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "997c353b633e0a2e9779c42b4d3ee05bcf893e248117ccb9a982ba4e2f0843b7", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86c0c16510b14fe416ebfebf74ac0ad40aff04fd1a4bb5f74a43b30b525b4781", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cebdb745f62e2722181b267a8fb5acd4d88f7c655483419724d6d01400aa5f3", + "regex": "(?i)^https?\\:\\/\\/heartdecalroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c516d4881b5456b0300cea06c988cfe21fcb248bd2fcd2902bde9c7931a8d050", + "regex": "(?i)^https?\\:\\/\\/bestrobloxavatarwithnorobux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "705a399ab11b18269cc4c391fe0d535731c772145e2697d13ad8e65b9ad9c404", + "regex": "(?i)^https?\\:\\/\\/bestrobloxavatarwithnorobux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b18fd5a15f7be7579ad1a23af47514b67940313cbf1a42fc73798db898b7be66", + "regex": "(?i)^https?\\:\\/\\/bestrobloxavatarwithnorobux\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ef82def6991ea2a5cb07024ffd5b2a7c191349227ecb11e34d9bb42efcbd4d3", + "regex": "(?i)^https?\\:\\/\\/bestrobloxavatarwithnorobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d9d300efef5a5add92c9cd2ba99a3fd6058debcc11e809778686e2bbf543767", + "regex": "(?i)^https?\\:\\/\\/bestrobloxavatarwithnorobux\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f9f78e6509f8f3e1c9523e1b83643f7f00cba53359f5c3af94b422399f4d59d", + "regex": "(?i)^https?\\:\\/\\/bestrobloxavatarwithnorobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d806d0ef4cf1ff88655eb5a484ea7be795643a1245abf42bd59eb1cae8d34c71", + "regex": "(?i)^https?\\:\\/\\/bestrobloxavatarwithnorobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36dbb1502167effb41e13edfeb6e0bac4deba5139799277e492aa8b1ce82e234", + "regex": "(?i)^https?\\:\\/\\/bestrobloxavatarwithnorobux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68dee0f17eb90b42572aebd5bcc7e9eb4f2340239ca014c7497391ea3046b99e", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "074e5a248ab5be2ec2c37eeb7830ef616eb5697f924532a5a57974d5ca6f1f49", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c38413e34c5f34a68e829c673085590c54970e6f554e507b073000970d03406f", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2c4f8e204f646cc2ac9bf0c5d505e2fc32c3ea7e058eb7b912cac62fc4ed514", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54b0a26f5730b90ce4a681d6e12bcd6f38743270b5ba9a4006916608d371fca1", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9ae1d5fcaceaf315cd147e800605a50d7c6014f79c9836d19d570c6da1583fb", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d929f5132da148c09fbc7ab43f1dc79448517bfa870d19c18e4e18d8d4e0ce17", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dfd8cbf4a4e35a14f541939553bc2985d44f00f5a041a64e237cac2ac768478", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "022d16e2f1081ac5a0b7f6a86ca6a318ec508b847b51b5bbbf2a7287fe2ed2d7", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "905f2f86ca1871e2613ef986a2e720146e7813ee6b754fadf31b9b459a58b40d", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d83218a5a2ac60f5e92c37649a21db12396b6dc69fc8407d64e70c7325ed1fd2", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c8a2bdddacf36652a16ac71a66f5797e7b20869d9f32fcba1940fa1e2910938", + "regex": "(?i)^https?\\:\\/\\/robloxdragonballzfinalstandhack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eebb79d16e22c36ce41e15b3cf826b63a4837310e1763640689ddffe0091a394", + "regex": "(?i)^https?\\:\\/\\/freeaccountinrobloxreal\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "361852644f30a8e74ace4afc56d0824bef7b39324d91c940912d406965055e64", + "regex": "(?i)^https?\\:\\/\\/freeaccountinrobloxreal\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b10b2e4ef3416b9c00651d3a24e7c46756cf9da4a5e0c01966917566e25a015e", + "regex": "(?i)^https?\\:\\/\\/freeaccountinrobloxreal\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9938a6cf56522b43f38c7d6c0a6eb25c5673c05b43a80ec9d5be9e462b11cd76", + "regex": "(?i)^https?\\:\\/\\/freeaccountinrobloxreal\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bcfd63f132859660a06bbeaf3ee3e0df74558a237ca131cacb2782a7fc1b958", + "regex": "(?i)^https?\\:\\/\\/freeaccountinrobloxreal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aee63c29cb1e6207539ada5b077f082092343543e4c924d5fe870e2d5755a6c7", + "regex": "(?i)^https?\\:\\/\\/freeaccountinrobloxreal\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed0be0c0ce13b0ec5c56c01888085a42e28675df40e280fdf7d13cdf2c0ef9c1", + "regex": "(?i)^https?\\:\\/\\/freeaccountinrobloxreal\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bfc6e7a502bf19eb7900864812b8486224dad3e8ff3fd17d0c0468ef99d5f5", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhack2021newcode\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c2137b8b0735d890ac94fd6c7acb2398e3cc499ac75b3b4a9bc26455e6c9c77", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhack2021newcode\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f22dc171651948849be030cf216835a3f580444e2e624c2562fe213af0416c23", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhack2021newcode\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc600b75046e04f9aaba30e116a155e872340c09150bc91f07f85b37fecda18f", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhack2021newcode\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d307f36bf6368c60d061a5fc9e2a4bb8e6afaa13133d237ea73b4d9350f030", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhack2021newcode\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dade5a2c70b421bd5e851b406e290cd1d2f5700d0c9a36fdf3009ef882c60aca", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhack2021newcode\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "983fd0a9f8b87e05e3376211b00488a08d0cb355706b370c3fff8a7d5e0fc124", + "regex": "(?i)^https?\\:\\/\\/robloxucuzarobuxal2021\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bded23fa5269220920228566e2641ea36e17f22b53739f47ce9e84dea7a905d", + "regex": "(?i)^https?\\:\\/\\/robloxucuzarobuxal2021\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62394d3151889058c7f2fb15990003f8d57ba10e2e002c82c5e63314c6008716", + "regex": "(?i)^https?\\:\\/\\/robloxucuzarobuxal2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e5da2ac78db19cd56d30ff8a3674e3e54ea32183416a5e3b7c275fd25f21c9b", + "regex": "(?i)^https?\\:\\/\\/robloxucuzarobuxal2021\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ed7f4f0eb13e3584e8cfed4d84d6618196c3252e916b4e8fcb58b99b2fdcb2", + "regex": "(?i)^https?\\:\\/\\/robloxucuzarobuxal2021\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d22d93bd085742f5e5c65dd1fd7989503f72ec19f92b2da12a3adb6840bfbafb", + "regex": "(?i)^https?\\:\\/\\/robloxucuzarobuxal2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72aba0d7ebf158e11cbe6d99758338b693b916c674fb5fef852be459140e6782", + "regex": "(?i)^https?\\:\\/\\/robloxucuzarobuxal2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ce081af5e1c6e2499d9ac4d43c4f879a0234eac86350cfce023a6d6d3b5a70e", + "regex": "(?i)^https?\\:\\/\\/robloxucuzarobuxal2021\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d14c3cc354462925626b4ed81136c8dafd287dec6ccd2f064f9143a98358c02", + "regex": "(?i)^https?\\:\\/\\/robloxucuzarobuxal2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca02ae9daa7f044e29854f0aba8dc74c4c8ba019defad83cc17d4846cb36997", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f42b5f34ca0bf03cf4a6bb64d592a9e97be2de3cb2a27cf6db9a2dca8648904f", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aec256a5d8158e8bfa72430ebbbc23c13a1335b5ed2439f3f8cdb68305bbd462", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e66ca1b603cdab235890a1593671999e5a129d0c84d081b80aa71b8fe9ee2c04", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e55458164377558667f9a43533188aa9dd31915ab7210354347dd7931c14119", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea508a690f935e0273416fd0ae9bcc059d8f818043413435566d6093f26b1c79", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "449ad72f88dd9776581cb8be1a172a1319647034248d2c1ae8c8005348b79d4f", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01d66b0ec5565b4377874971af0c9a8a0ab221a92b3f6a30dc069cd8ee6fb512", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dfefef3aa58b7d04472aa702fe128328f8105c810b33b2674ba43987ff4ea029", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e160a70459653d23bd74abc978817947baed6d658e6c83b26bba64337c06f51e", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948fabd8751ae06cc79ca8e6745db13405794bf53adf1f82e409c1081691d3e3", + "regex": "(?i)^https?\\:\\/\\/jogandodragonballzrageroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ec22f10c66d14f43409129012140c51619309c878fcd19151e548beaaae7901", + "regex": "(?i)^https?\\:\\/\\/disgustingrobloxdecal\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fa2a5b2599f5ebcb903c86b30201cbb2360eeebddf6cd5ea9ae961097b17a94", + "regex": "(?i)^https?\\:\\/\\/disgustingrobloxdecal\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bee11a69349bedff1e81a27b65fcd4d6880099003dcd213b0928c36bf02fd366", + "regex": "(?i)^https?\\:\\/\\/disgustingrobloxdecal\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1761368b0cc750ea61d3c9b8e8f9b7b474c796a2414301ae9eb9530988861a5", + "regex": "(?i)^https?\\:\\/\\/disgustingrobloxdecal\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3efa46d0ca69c6266f643196cb6db97763dba8aabda1cdeb47063180a23a950b", + "regex": "(?i)^https?\\:\\/\\/disgustingrobloxdecal\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4db640b8d8777c68ea0a9cd982c872085bc6bbc3cdb26f7aeb5cf52c4b7447e", + "regex": "(?i)^https?\\:\\/\\/disgustingrobloxdecal\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "465435a699da7facaad653e9c422717b9c0045ca9c2cfdc3db58df866830283c", + "regex": "(?i)^https?\\:\\/\\/disgustingrobloxdecal\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "067d5ac04ca6627b893bbdb4846bb622d7b9c7d0b670e5690b7355c6515176d0", + "regex": "(?i)^https?\\:\\/\\/disgustingrobloxdecal\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75e2dfbc0fbbdc9dbd7eb0d653656f574f8324dada4cddf88d2eb7e01875d364", + "regex": "(?i)^https?\\:\\/\\/disgustingrobloxdecal\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cb9948e1b532d05e51739b720a1d8f163ccf2611495a0d2d48dd2c3a099ddbf", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8348540b9c9b68c49f747c782b479cecc4e6156d755ac0489ba87c3ba2ea02c6", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1c42ba31063206caaf5a1aa309a5984dc73b8f06ae7ec5f28826878fc74a6b4", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d68941f304a6d82b7eff4474913aac57528e53088b53a48a28871047b40944b8", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b32e6afba38439b1aa4f34b47c9b37bd62b1165446c7b4f38d0f848e286c61a", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a4658df2e4f6e574621238ac59e7d53617d605569a0dfd30640755faf264da9", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ef09a4d40f47e1927d07461ea68d1ec86e987b7818a2b2c6454f5a1ec38e2db", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32cecd22a317cd5ff379e38b2f8395e4ad228cd5871373812e406a7515fdf098", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "079cb82bec91540ea2c0cda242271cdd7d33dcabececdab56544855b17bb9ca6", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccf9a33bb6b7dc6996496e35b0e2a60ae2505e49318e2da3c90ea7eddb6b6884", + "regex": "(?i)^https?\\:\\/\\/buyfreeitemsroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa6993c443475c29530e7f61da5f5d7151a864ad41be3bd9ee75ffefd9e9de8f", + "regex": "(?i)^https?\\:\\/\\/robloxfreedogehat\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab092ba25278287c6113fccdbe9e8cd3ad27a08bfc491ec953d3da67046cbfa3", + "regex": "(?i)^https?\\:\\/\\/robloxfreedogehat\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d0a05e63dddcf2ce160c85ab9919556d0270e8dadcd7e5bb15010f5155d6e1a", + "regex": "(?i)^https?\\:\\/\\/robloxfreedogehat\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdda2aac4eb6bc965a637c3db9e859a43ddd24fcc64725ae21e442f60fb9386b", + "regex": "(?i)^https?\\:\\/\\/robloxfreedogehat\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b55ddbb0e73166d23d3a50dc680553462e324421cf0a8f4659440722620f4bf8", + "regex": "(?i)^https?\\:\\/\\/robloxfreedogehat\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "562884f921b059e55a743f0fc541470ecce1777f71bbe4170cfae460e5300013", + "regex": "(?i)^https?\\:\\/\\/robloxfreedogehat\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627c55d4beffd0188896f413e65bf977bab52b4a474c56568aafcd676238a017", + "regex": "(?i)^https?\\:\\/\\/robloxfreedogehat\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b69a6fff593e3febadc4b133d93607c587a355b6f3cbed6afa21aecce1b0d96", + "regex": "(?i)^https?\\:\\/\\/robloxfreedogehat\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d30f019829bc4c496b2d053556423ec775e7ef9b6d91ebc0973c70ccbeb5436", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-clone\\-static" + }, + { + "hash": "aea8504ccfd42f2f1c9d3b350e89e401b455719adbeb6c2218b23df11d12433f", + "regex": "." + }, + { + "hash": "501373341a26f5f0023a954eed3180b4c7f8ca6138d57c54b925b4497fda6713", + "regex": "." + }, + { + "hash": "e1ec208d5c66fe6e95c70b2debe6fc883fb95345e81b4e60b817b9243eff1c4f", + "regex": "." + }, + { + "hash": "8cd3ec2deac8590afe94ba0d43d5a32efad3aee9a1316aa642aecaece2e5dad4", + "regex": "." + }, + { + "hash": "94e19c909c2f126d474b0193542bbe89bd1bc9bb88e33afb0ceb4c68e111c584", + "regex": "." + }, + { + "hash": "461c5629bce4b94aca7d9d505cd920d782e212621d49d908d24ab78ad65000c3", + "regex": "." + }, + { + "hash": "31d4a6351d91e22e33ca192bbf25b4c93fc4a58b796c993d4505ed2db1d856fe", + "regex": "." + }, + { + "hash": "23090675fa1b114f4a92e64705a3d00e0fa492dcc9587caa275a6436d4ec6698", + "regex": "." + }, + { + "hash": "94b9b19e5e59cb8b84462de1b714726835cea59ad3d49f8748cf57b4e788f02e", + "regex": "." + }, + { + "hash": "90b591e36f01dab70d55a97860ed2877b1f42065ff8c6696a90d4bc6ae3e43df", + "regex": "." + }, + { + "hash": "9474018befa50b0727468af7f70604f2529645c4f9fb7f69710f14cf377648ad", + "regex": "." + }, + { + "hash": "6b87e08a119e5876e2586ed15b2ea0270ee30356c8a00e4158af942ff7d6cac4", + "regex": "." + }, + { + "hash": "d877d4ae6f5559fbadd03aebeb0b5a60849cc7067918d22467fc092fd8a824b1", + "regex": "." + }, + { + "hash": "3e9c7580f76acbadccf6c9408d88d5e718bf50b116230ab50f793829d1375b6a", + "regex": "." + }, + { + "hash": "9c571503d8f91777884748c528ec7671018714a10227fb90440a9c65fe26ff58", + "regex": "." + }, + { + "hash": "054d4fea78f28ab0411ecfec495d16d8f3aabe7d8921165c62d01d2930c5a272", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28b7af40c58b8a26073b3d6255d352c6f6f186a857a9305da1b68297207fc019", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f647df2b1d3c7397137f97336d3458dd9fb9eebce87886764edcc01f3ba3926", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4ee16da4e7a0205a0fdaeeb0a0dec095e8803b01515c453e34c9217b817c98", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9b905f0c603ed747cf444b8eeb9d70e3bcf0ff5889961d9441c79017cb91957", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37bfe7e7cf44fcbe0dda46fb8c703b970464d2185107e98db57335f5b77cd560", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d371e526b21c03a29bc88d75fcc234586532c4f760f30efda0b6bf42fdbf059", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e99e1cd017327959f8ed191375678033ab937df732039be40e3b43ac20b95c6", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a1659337651c01da8c6b875d3a6c31f352d91ba3ef6a469ca99ab08d52112b", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f13de1483c3a627c49d79843079d9e4a9b6dab728ff47d8a11db7be39cf88791", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8362bdad3e6eca266a75f213f9e9dc09a2852fda6c2bfa2e9f5d9161237cd692", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98a99bb2b00a63c3f6f78ad986c7b73b80ee583a95545ece3325b9681a58c6c9", + "regex": "(?i)^https?\\:\\/\\/allcodebokunorobloxwiki\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eda927bfaf0cbb6b66f8aadd98bdf04c8474ee08fade8728f7df649d61cb3a49", + "regex": "(?i)^https?\\:\\/\\/robloxvladimirputinridingadecal\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3691897c666b330dba31019dd94e6fe4bfa5d740283604e0f07a92eb799584e", + "regex": "(?i)^https?\\:\\/\\/robloxvladimirputinridingadecal\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdaeff6dc5e38f86a9198a74ffc2bc10917bc2caf7b86b70ddc551e060dbd503", + "regex": "(?i)^https?\\:\\/\\/robloxvladimirputinridingadecal\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28be3c947d927712bfb1588b5f940dcedc3186ee7087deeed633ee6d2d6e6711", + "regex": "(?i)^https?\\:\\/\\/robloxvladimirputinridingadecal\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45f60db762b52ebbb28d93f21dee44fc3f2dd5f16c078c64408c13454031b318", + "regex": "(?i)^https?\\:\\/\\/robloxvladimirputinridingadecal\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce3c5da52b54691bd53bb2ad2fb168f0ff6d8d55f7cb7bc0d9611d62719681d1", + "regex": "(?i)^https?\\:\\/\\/robloxvladimirputinridingadecal\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89b8f34fd81b4b4999bbc76d67fd00164b1c42b1db1f29a87961d3f9b0dca39f", + "regex": "(?i)^https?\\:\\/\\/robloxplayerrobuxhilesi\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ddaae3105c64e9c6a4793e0d354601e37eecee033367a8ae8031f633690d78e", + "regex": "(?i)^https?\\:\\/\\/robloxplayerrobuxhilesi\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "634f4fa2140fa5f433b54fec4e65fa2466cbd6db2d53fb3893724118a9171e1d", + "regex": "(?i)^https?\\:\\/\\/robloxplayerrobuxhilesi\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c957d344687411a2571ea1f5df511fdf3ddd222a4114b3d24c9bdc6a88b2df26", + "regex": "(?i)^https?\\:\\/\\/robloxplayerrobuxhilesi\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dea925072c3d3012a44a091bb9acdefac00c2063ab1af41c6f81bb55e46fa452", + "regex": "(?i)^https?\\:\\/\\/robloxplayerrobuxhilesi\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b7c1e9167d2468a8dcbad72313f5baf53d2161180ac44b7be9317abddf90eac", + "regex": "(?i)^https?\\:\\/\\/robloxplayerrobuxhilesi\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b8fc37ec776e89db7f7832f91a646017e5bcdf07dae99fc39fe2c033f5e9812", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1547c4099a2a663db9a66db2dac4a65938df779319e1f3c2daf6309e0f231c5e", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67a85abf3a471802dbc967e14c8d177ff39a4b33a671f93a2cc9504d33a959ee", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0426f6cf8580372bdd2949f6e55d797761e78a4efb740a2f83eb56f2f0f8f24f", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c0e5dbae8d208cf8d487eefcd6760f1e7e681e072f05871ed905ef4b7c1d73a", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b46445a113e9266f8c073cfd72ed45599b65fbbd9cfd34b44bbd4ed3673ef865", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7786892098c0413ffd4480849b67c2f8fd81c3c67409e54b65accab7f2729829", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7aba2bdfef2649ee17e9641cded04e7b6507a2db29ce85ac81a18c73c04f50b", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da75f858ba855066b4151b0b0d240ba1efff890c2f889c84501d18605833c914", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b32478749891d4036973c7939204d7efea271e56b2d93355d7a65ec089cce89b", + "regex": "(?i)^https?\\:\\/\\/yinvsyangrobloxhack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acacf9d767519fbd173241038d4b477bfe0144838ea7ebd14bc3d67dcf559903", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1b82ac6e645055a8cb95249fa98e1b093c3f41a5afd906d823f3565846b1e1d", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f0df8fd00762c5cce7d23bafd07cc40ba3213e2aba9d042f8494707a7318700", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2401ce6a5f872998431a249a7c0cbe91a4733b198ea1eaf1cbedf6aaceebec99", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84974afedef0f77f98e4780309c0d56b5fe9f9b8b851b0ee83304f669e256a0f", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8bf143d92ad2667abb35d8cd26a3fa459b7150c87f9323c01def29bd776c638", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f6de8efb1c308e0e7190544e8043bbd63cedb0212f1e173b7ecb9863070bc3f", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72abbd6666450b0ec920173b61e29e44cf4a3f50ba5f74dbf577662cff654e29", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d643b1d800da1fc0ae15fc3b323d6243b8e5fbeab9debc38d9a661f14a590884", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c90a1b1387809a24f351ba2889ffa14e8004a933a51e1d809c5a715e84a8a262", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf940e0fb598875d0f091e11e28bb3f109f8385eac5a4d245ca331102a61bcde", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d16cb04a67d63702bd31f1dd919431acce1c8df764fb03636c8aa19f25c2d5be", + "regex": "(?i)^https?\\:\\/\\/unoreversecardrobloxdecal\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97dab414b8f27a8b80d402dee7245e919c70fd5f3561b31fc4427b96ca9fac34", + "regex": "(?i)^https?\\:\\/\\/robloxhileandroidoyunclub\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2465f9bc5620e67a3771a3664c7ec62bec27c86ec657ac48f75e4f372d35131a", + "regex": "(?i)^https?\\:\\/\\/robloxhileandroidoyunclub\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4e1ef1170c2e912ae7cd7cec9025a885d0b6d6b7e27d080811d9f61767b38e", + "regex": "(?i)^https?\\:\\/\\/robloxhileandroidoyunclub\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "894afe3dfa943d3323427fd501030ec9a3f2b120da6382a5a7fc6f92a562238f", + "regex": "(?i)^https?\\:\\/\\/robloxhileandroidoyunclub\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28552363f796d95d05c11592136714e776caf920d32374ef7da5a9b5043a4f55", + "regex": "(?i)^https?\\:\\/\\/robloxhileandroidoyunclub\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ceedfb6a3d5edd1fe5eb0588b33fdb670c87cb3cf0b657a02c6e4505fe86640", + "regex": "(?i)^https?\\:\\/\\/robloxhileandroidoyunclub\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30a7d2aba46b212c3d43fd05fd4f726c8d82d32501ccb86a3e4d9bb76ccf6001", + "regex": "(?i)^https?\\:\\/\\/robloxhileandroidoyunclub\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62e14b584a8147a18af230fb3a46e81abdca97f1652ef6677c84fb92fd263f49", + "regex": "(?i)^https?\\:\\/\\/robloxhileandroidoyunclub\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f551112ffcf95ba729f90a9a1e796bd6ffae39866650e1c3656f727c019c227", + "regex": "(?i)^https?\\:\\/\\/robloxprisonbreaksecrets\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5d8358ffea0897870a263815ec09c465e79b1408ebc59979ee5196bddd3f39b", + "regex": "(?i)^https?\\:\\/\\/robloxprisonbreaksecrets\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07d743f0879f96eaa935ebac6fbba54775164d87392043c936af72e7a8d12527", + "regex": "(?i)^https?\\:\\/\\/robloxprisonbreaksecrets\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4018326854cfe127ec46467a822da93eb4355f73da15a41d0d5d60b91876f88e", + "regex": "(?i)^https?\\:\\/\\/robloxprisonbreaksecrets\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e911fc3603c88f662f88850855ab84f265705302286d5f91520c4279390544f8", + "regex": "(?i)^https?\\:\\/\\/robloxprisonbreaksecrets\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d02ebdddce776a298dd32718b77c73ba21401463a98ffafb65a9b6a36e7f18de", + "regex": "(?i)^https?\\:\\/\\/robloxprisonbreaksecrets\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b4be5284db013fefb7b7b2f00b72d87252fa1301ff2f23c085946fcb1f22911", + "regex": "(?i)^https?\\:\\/\\/robloxprisonbreaksecrets\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3627eb4d424a3b7ba67af465730d700df9ca6654eb91ed91f425e32069830988", + "regex": "(?i)^https?\\:\\/\\/robloxprisonbreaksecrets\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "634f821ee318bf74b2d2b7ec8fb4f6f2c8d9dc65e040f0e360e3c0b94b7d7ae4", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c011826f3c6a61b77ec4285e2c7d76ed9f8dbf1140fd837c3d2f4cc408b0772", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc87026cd59cbc7d7ebac126006fc085dffd575ccff0d932ba4025511dab25b1", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "160fc340fbca162a61dd6d7d2366cc11d99f8c2083c3b63e631d5c14640046d4", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c5b27214de0ae4322611d94dade4ad48aa1a9f6c1ddd03778ce42cde1774496", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baec708a9a156b4b93661e46735f157109e0026c733ca8f4b6416ab1473cad86", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95b81e858ae80b30eac41aafb70f3b0b53c6d67cdfde06953ad77aa3b92b91d2", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b13bae77bb1e3ce2f9667d85fa1cde0f536339481d400194e4ec32532808f91", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "146c124258a8304907708fd7fddf6b60776547a03a243d37ad4366eb90a05499", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a14439c295e1799ccfefc6f8d46b81e90ca8e99d16e00d2f73a77751bf7cb82b", + "regex": "(?i)^https?\\:\\/\\/robloxexperiencegravity\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4835425d90328e296c501d23f09e1f9abd4a28b52995e8577a347dc7c50df294", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxysagittarius\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8414961ca6cd58f99f2770ae3836720fb9636581459826bc1747cd446aa3fd7", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxysagittarius\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be5f207290e124989a879ebef587f2be5f34cd8168962e5aec412a2d140ba393", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxysagittarius\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f7ffb324e1e6fd947178f7f0d4e7cf00fdd844333ef9ad3360a06f30e52711d", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxysagittarius\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9d9447f81d4dfbc2f73b0d80c49110e8394a8b8cbde4a7115e1eaa39c31c47e", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxysagittarius\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab9292dabbb7540a976e479fcec7523a26bf14d56d072defa6ccd43e7262ff3", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxysagittarius\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "282a8394cd2da4b23ffa38c34348991a505cecfa7caf89bffd4a8bf3755bdfbd", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxysagittarius\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa26d5a0ff0b9474410f11d9982939f39834288da3b5c5ff5ca3157aacba70d5", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxysagittarius\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97de1049e910c16d4b0064c76bbd969b18fc8ccd83dc1f6bae243deb2c6ad701", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxysagittarius\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93a2f1875fdbfa9a9f821bf8017cfcf661f23cf3bb5af40565b9d813ea511c4d", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8051a3711fa2cd6d787ea75fdff0d4a65337c507162a92cf438f89a9a76309b3", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b434fc29daf3c6cbb80bfd7d391837e640420828ae933fcaccee8a26c0d9574", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b825050d8c37c47687591a18b62de4c70af1672257f382844ef3c95dec924828", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e35b8fef0139bc34f9712eded95580783b7d5f1bb6d8d21a2f661a37f7f5265", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e36a6425ae25c7599978038457b27b733a536e83bde74e5df550b193c9e926d6", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c315e1886d6945742b7785b038ee9cc4ed38123fb2da07092e3472b7f0bdf0c8", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3c3e1090b96fdfd16fb443707325a87b064a7af55022f7eddd4cb49b6cfdbd9", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c64d547ff50ca8330ecad6830055c65636abe0c4e41b9e14b82ed585e645fa2", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "212aa99d5a35ba0b3332b9b386b82af6fb4c58737dbe6d47cbbd69d40b52dbed", + "regex": "(?i)^https?\\:\\/\\/robloxbokucodes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b07953e08bbf1544e91d8903fc5f8a786dee7e52b336677af5bc9acfa8c9b63d", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "222abe30720272c36323ca562b2f9fc73a2d3a24fef2c969c73388ae9f5e98cd", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36eefc14e53aa97df6226b147a3b3a23ffbca30da0622f0c3b3a7a5ad54402c6", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7f1a326204b5fe9a69cd99438adbf710beeacf4a90f13462428b32d736ab00a", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b835c81953f688bef2d3243b9dbdca3e2cacb2356e6bed302d4b5258f6a290cc", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a91f0fe8f9e1beb4b1c80cf5074e44f8e0b626c8d90e7ef1e3a6581270dba43", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31c48c82fcb177bbb798dc94f0804bc6278a2e66e6eabacd0cfdfc175096f91c", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "856e280c60200a385f6596d2a814dea63fe5fc9d395c8089d2e2c6f3bf0b0aec", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7c68108e51c6b4b32ec6f64242c557d96de1fef908dedc493515720dba83ed3", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "164cc0df6524f0a2060dffbcb092f8f9c2a8bc938d287eb5f422f7aea26d9786", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9ad18a58a611bee8c7442ef8384d4386afb55826803ea4e79a7f2b8df58173d", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "106970d2305b8368274a1dd5327cb30ebd472c6aec8ed57d9b6debe3284e58f4", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb52c256faeea40f24cc9f716e02d3adaa7693837b478a275a6109b4566629b4", + "regex": "(?i)^https?\\:\\/\\/sitequehackearorobloxrobuxinfinito\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8797b8d4f251164c942802a1d8d98257f30f760d48857577fce7fa8a1c94e623", + "regex": "(?i)^https?\\:\\/\\/sitequehackearorobloxrobuxinfinito\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd5d25e004d8c347677d0d8d51d9944c3e7dc434305f29c818e9eb25be4cdf99", + "regex": "(?i)^https?\\:\\/\\/sitequehackearorobloxrobuxinfinito\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e72e394cc8f10ede2ce31511282c9bae7cfe742278232ab6c0c448c0cdcd811", + "regex": "(?i)^https?\\:\\/\\/sitequehackearorobloxrobuxinfinito\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "788dd9861159f19319b515a6b4ba64a7505a1c9034e05d4458526c6f305b60d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflixClone\\-nakul\\.github\\.io" + }, + { + "hash": "7e882b1d98cdea38df3d7e18b5b3b7da8c26eff2d92c46ef0f69e2131361a317", + "regex": "." + }, + { + "hash": "f9291a4a66d8c1652e0b459984c822625a2da2ed2736ae37dca56dc435ec2e8e", + "regex": "." + }, + { + "hash": "d6f751f72f7b64367aeae3f87e61d6243f5176bb91cc6c0cc9a36d56cfd3aadb", + "regex": "." + }, + { + "hash": "c47e45e47b108f21bd7a942b954469f100914ad604a60f2d63013fcdf40cd509", + "regex": "." + }, + { + "hash": "4c9117a5337ca5f41681215f250bc0f1f29b8fee1421f1009ec627763ca3c96a", + "regex": "." + }, + { + "hash": "74d1b94d3614b8e59efd2f6633b70ba6d7ada6c74d63a2bd9bea159d04d404a1", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "669cf4617a7657fb13592be7c9a5f47983af1567fddc9a712cae135f4993954b", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eecbb8d042fc638692a89d5b0e9dd61e2947512bb8002af841a7fef339edad3", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6c145c310030d5333576f018382992fe8caaca1a14fff73c7b0088e0ea4f6bf", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "874ee19e340abdbc69b8a11562d5efe6eeda667286a4c834e4896841db318d33", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96c16db09c99baf7ee79397c686630ed5a82ec5badacc5205c5efe9abfd0bccf", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6e1d63153bb49ffd0fdc24ecdf085715e9f39c054526e0509b2cd0bd0b3951b", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9696b9b2d56912974d7e6c3fa81f718623d87d272e2d54643df99989089e57a", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf1fb81a9d4c7175516c54babd77b314b66d5e5b1bbd83b74c0fe6941a1bfb25", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4ff0bec56013d2ee67a7c7cb1f763cba53a642dd5d16c0a5223afae6c64ee28", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0d3457c85d47e1606a320662428eb836c9a38184947788f701273b410a85114", + "regex": "(?i)^https?\\:\\/\\/robloxnewhack2021august9\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85f3209a15ae1a8357d21fe7b86b179cf66d94b6f61b1950c73c21ece4cbe2b9", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ba7aa25ff92ff96fe3f375557ca3b6558ebc68087894557fc8f6fb16ea9e6b", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b77f1026c488d94663cc6ae310e14894bf982f44d1f0049d947b202f2fe071e", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1b5cc1c89c6d240a63bc1f1d5a621fac54b4d98625abb71514127e2daf6fb4e", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a94cfa94eb4e6c4e726c098a37c9b83c6e3ec4b21de92bc1373dbd4867070f6", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d17ffb3956e792788650ef387934da12e1cc56429d7fe8776fc14ef03ccef17", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb9f757b03608fdd42f50d7d14c27d30df57f6c5314c83a8a9b608cd4c879b7d", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fee1963ed57a879fe3f006bc1bf3712a7faf500f5ff43ca1e4bfc5f3416cf4c9", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33907e62e399d2d146a55de2fd8565bac4155f65aaa8a30e0064669d133de18f", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "474162c5458205fbe9ac05aef6d238b1ce3eb3567e3df5a9e0151406ca763981", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "720603dc9c22cbd9afaf1b882f3f303022821f46cbf61629fe1e606b44c66526", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforshowandtell\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f798e07b8ee1e5e030be6619af351f0939e49454f2da37241dab3c083334c231", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforshowandtell\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "879d0ae7c14722d8ea9d125ccf17968675af8033cc7edd89f5c80eb27a2232c0", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforshowandtell\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cd98316e0d9236c6331e6429bafc46be0f01f7cc0c7fc3ed931988ff97f4e45", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforshowandtell\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "080a65c9f44d164bde6ae3a728de5a9a8a9e1bba18c5f72264140bece9127e61", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforshowandtell\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e1009aab4acb416ac7e2d4e427fac89342c2072659657211adedd3eb0d6ccc", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforshowandtell\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42457e8e4cbcb6294ed97b17075d5f55d29d13a9ffabcb8d034e90fd559b50cc", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforshowandtell\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729e14acbb3d116e6c98c5082184a3dd84f0873b8430fcd7f4c536d36d389d5c", + "regex": "(?i)^https?\\:\\/\\/robloxspraypaintdecalidcodes\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "931a2525716470438070744173c336c5e87b70906162f67e15f48807e936a33c", + "regex": "(?i)^https?\\:\\/\\/robloxspraypaintdecalidcodes\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75dfcf82deeb2b1953bd9e6040c6bd4672228ca28d6dd093e01da80c178249e9", + "regex": "(?i)^https?\\:\\/\\/robloxspraypaintdecalidcodes\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b5a4e129543227828864960747726a839c3ffc9e831ac097189b60d23ba0f3f", + "regex": "(?i)^https?\\:\\/\\/robloxspraypaintdecalidcodes\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4278d4a00633434beed03171555c4853f2e260c1862ee4d171b330a1a858810e", + "regex": "(?i)^https?\\:\\/\\/robloxspraypaintdecalidcodes\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f15107ec0a902baa6c5608bc565ee66d45b469d2bbfb5fde457ea81a75491551", + "regex": "(?i)^https?\\:\\/\\/robloxspraypaintdecalidcodes\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53ef0d752a4a70028a7c28da1a82ff39db76a1d2ecdb581156b6c38661588fdf", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogonodoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0df403baf4bc40d0ffb57298a12efd8f18243a03ca7f7c6fc3c6f3009bf65e14", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogonodoroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7061e6df0c151e8097f159dd9935c6279c78e8c19bb1db9256449bd9764cf105", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogonodoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07c80d3fae9f466d0531ad3b74e656ee418e6001a82449af8aa6d8abba4d7862", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+applyfb\\.pta\\.job(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd7317db5c84b91d3866cc6e0a2cb233026cce212972e5b9365c05095c1c8e1e", + "regex": "(?i)^https?\\:\\/\\/comojogaremergencyresponderobloxdegra\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fdd3f8f4b70bb0847f51344bda4e82181b21e856681117df53182c2f1d959f2", + "regex": "(?i)^https?\\:\\/\\/jogoda2guerranoroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cb579cb03b3851724b930891a511a77e9fc2be317d5e55853330051672f1d57", + "regex": "(?i)^https?\\:\\/\\/bestrobloxhackdownload\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2f821e9323cdbc911bb435c338f407a4ff56e911f51e460395273853ce18b1", + "regex": "(?i)^https?\\:\\/\\/bestrobloxhackdownload\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14007387f5fa06490c419ae597838bfc10a54e75c481511a0e24f0ce2680aa5d", + "regex": "(?i)^https?\\:\\/\\/bestrobloxhackdownload\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "158220c707d9923943b031bd90efc9e75706cbfd69e5ee134e0b363eb06dcc04", + "regex": "(?i)^https?\\:\\/\\/bestrobloxhackdownload\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d1f2bb5f86e8f13dced9fb4edb341f5659a5a7952ccaef3c335a3a514231d43", + "regex": "(?i)^https?\\:\\/\\/bestrobloxhackdownload\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf93c796bf0807e24afee68769c9a7238cea6d488b8196850a624409b40decd", + "regex": "(?i)^https?\\:\\/\\/bestrobloxhackdownload\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446d45100074e90b08b3746faae240c208783f1b57dd20026ee14a9e2fc20ac1", + "regex": "(?i)^https?\\:\\/\\/bestrobloxhackdownload\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a144fa401b519aec1af559aecf092da7a945a09ea5aa9fb27653418e9cb67171", + "regex": "(?i)^https?\\:\\/\\/bestrobloxhackdownload\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "080167406362cd6612d3e3605ff078e0ad93f1e46d01c0d4723c12f5ab83781b", + "regex": "(?i)^https?\\:\\/\\/barsdecalroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "023a684f5bd5eaf71cb5080880e2a4e5141b11d21efd7d622c5141474b8ac57b", + "regex": "(?i)^https?\\:\\/\\/barsdecalroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeb65a79f6b5de19b9bb0c3226d386f70287af6b6776577621c46216a51f6b83", + "regex": "(?i)^https?\\:\\/\\/barsdecalroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30a2b3faecde73e8c268c69d9d218207c7535d08c1b1c4d28845be69013a0ff9", + "regex": "(?i)^https?\\:\\/\\/barsdecalroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe08a04a28ea42141ef2411a1d21dda5f8d3b6dd4559afb497150b6e7e72cf9d", + "regex": "(?i)^https?\\:\\/\\/barsdecalroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7665bc0bc8e98def3ab17ebae0fa1730cebf4b5ae875506ff32e84b979bb09c0", + "regex": "(?i)^https?\\:\\/\\/barsdecalroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93d77b7f8938c2247e862ea171d8521967e323af2930503da198dc1b67b8ef0b", + "regex": "(?i)^https?\\:\\/\\/robloxyourlocalmechanichack\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d41d0e23ad0d9c29b1c8d6fa4c74cfd66202b678c8424b54e80211afa1d942b", + "regex": "(?i)^https?\\:\\/\\/robloxyourlocalmechanichack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bb1355224221ee5e5880c7bc54ecbb548f141c56d5ff429c0feea578519c24f", + "regex": "(?i)^https?\\:\\/\\/robloxyourlocalmechanichack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2058af8ca94886dd2dab3e987ca3b5c8a1d48b695bd1d1e45505f800d5e92f50", + "regex": "(?i)^https?\\:\\/\\/robloxyourlocalmechanichack\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9501a57e37c7ecbd45cdb0c2f3d575ce6ff94be4e57341ac97f9c7ffe19e3d3e", + "regex": "(?i)^https?\\:\\/\\/robloxyourlocalmechanichack\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ed7f7af442214bb0e10e2a4550d9d725f9fc124d2ce51e4cc14ba93d54ccf93", + "regex": "(?i)^https?\\:\\/\\/robloxyourlocalmechanichack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e55bb58b484d6c331ae28a0a5e3a03e3adedaa7d9707d899a3c4a787b9698d34", + "regex": "(?i)^https?\\:\\/\\/robloxyourlocalmechanichack\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c61b2e2b11cb2ad3e7438bdb53ac75a8a93eee80c7e31c8910b6d9eb1c2fb62", + "regex": "(?i)^https?\\:\\/\\/robloxyourlocalmechanichack\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fac5c776f50136172e4ae2f064539eac8805d7b5f4c628abba36dc51ecc6ce", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0c096ed7a0f652efc048012eef6cf65dcd5761fda143a4023d598c7a2fd9c0c", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6477cb834c16463421cbc71eb455ed053939548e8196c2cae6e84f0fa83c99d", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fbceb72c9f79149cc71657fbf3e701c40b65f5e145fa988c86b9161a958198e", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a340ab6a044750e3956c9ac6c763f66d46aa9e22f7142e55cdada567ca6bfe7f", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b25cddfddaaef5bb68db78a22527915dfd1b2b89c14cc7dbd5bfd6f099b4d7a", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9727f7de91ee42f3949f66da4fc76c7dab8c92a325d43aec6df89668c63ad48", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c384581e85d68a856afebb0f6ad8a2df3a7a859fb71c7be30839006ca094088a", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db7528aba41042b0bcc317fdce8693fa6440474392586f5079b73a1ed5a5dcb9", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df0cb3432bc0277be6ee70806ebb4b3b16fc38f2dd8d9f4061a48eef24389d69", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fefcb7a0d0401311925a5d3a8363864ea68dc812076ea307e55da3ad4fed56f", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fdf37d1e885f74b25767b485bb458f015e7137dbc11d7fde141790656deb5d4", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d596776015112a162aa79dec5ec68934b0b71a375c10139d8f5c69b4c3a52df", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e1e9c254dd7a393f0dbae56ebc81322d9299fc6c96d11341691f049213c9afe", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fba2ce016487f82fd4a014c90d2fb6f73c7baa0b6d23169aa397248a8e099626", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "107f4fe0e8045c36bd6838bf1f240f4c31ce7003638590ed22af0499929b3232", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ee74b6f1e240307d755f6bd40090938fc37d7c6407679079ce40a38c727bfeb", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "440c5ae156d01c5349c8a4dd38e740d1d479a0573385db33112d825f1bec225e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70e8e401fb719c33345e8353b967488a22b824a1e7ea5139c6efb56406469482", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21d961537c4eb54ddbea09bdc66aa82dd7af23feea3c0927899e1a3943dae31c", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffdd9f31863f419fdf7399c18127ba7dfa2e79c631214841d374f13313891b09", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsobreviveraolobisomem\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc77257f22ba72e090ccb23bdf94f71a467988af75a40a314391313537e0a0f5", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d54898ad6b7ff1bb84f5340582b4a50db9492b4cd4fc23d683ed145d648cf643", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a2e1710e4cfbfa73061cb543c47795981837f01bfa5061abddb9440071ec284", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5f588fdfa638b1b0a69195fd6500a7df3b5bad250db82dedfe37b7368961909", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d89df4699ea2955a23f3b504c1e16759ec5ed3229ab43eed04a67c785fd78bfa", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ccdfe526578aca801da6a6a9b977acd7dc1a4f14b85d6b69efa2d4128d80a30", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57937f623b60602d44c748919203e6522fa86942469def87b4723f26fb111257", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a729056e5e1fa648e5aa2170caf4e0c063d330af8a3e4acbda6dc07b63807008", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcc6f11788631321de924b361c997661b5df4785924016903cc139e0bf9399d6", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "710263fc1337c950cc6b3f42d46559e4054a99151e013c7503a62a273c77d1d1", + "regex": "(?i)^https?\\:\\/\\/camisagratisrobloxbyfreeshirtpantandt\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efa2d08ca3556df4804a7097c103230646f57e7a2b1f2be747e42d9025cf8a14", + "regex": "(?i)^https?\\:\\/\\/jogodobem10roblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d877f11e39ab8d8f0f42aa78e975f9fa5a38aae99893dae0da0bcc72cc8a2b30", + "regex": "(?i)^https?\\:\\/\\/jogodobem10roblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ccbc98d28848c1af1ee69881dcc97706f2dfb1c621bbb8e3b020c2753e0c881", + "regex": "(?i)^https?\\:\\/\\/jogodobem10roblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d96337c2dbab424d8b87a6e8d680a6115afc66802b5d22309a49816321133dca", + "regex": "(?i)^https?\\:\\/\\/jogodobem10roblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01ef53c11da63dd7f814ddb14bbd6951bc7156253f6a62d9895936635c1f251a", + "regex": "(?i)^https?\\:\\/\\/jogodobem10roblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a824fef97702359b83b50a69a515dcb2a93c0c467149bc9ad8eb5f625dc35c97", + "regex": "(?i)^https?\\:\\/\\/jogodobem10roblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a50748f28370b6b54a0f444640f9495ee219e6a4b72caa7dbe1245a8e05330db", + "regex": "(?i)^https?\\:\\/\\/jogodobem10roblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f96bfbfa4c218947a74ff9bff4d7ca8ee9281410c28ad25a5775ce28ae0ab33", + "regex": "(?i)^https?\\:\\/\\/jogodobem10roblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46e2e6f8152d9bddbbf26b1b6c776521ddda2a7d3242fe0088781d88eff195a3", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "218567fd6f64801998ae8796591e16830ffc967a0fc7a64e19ae77ebf9799fc4", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1899beffa4ee5030c3587bb5038abf8b48708ee9af6c12b61ee8d4c823eaaee8", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb3dc568dcccfef2234cb01fbb4840b1e72a5d1a45b702d9afe48c99500f8bd2", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4d41ae76f32ce1f475c781ba96aa1a458dc6e7de00099774e38caef279cda73", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b21f59c741cb3ea621542e56dd86ccef6444056bd6907ffeb8240b05e216503", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4270324e0005bea4f35b908f6c61a3d8cde0cf02a3251965cc3d1d49cc92d19", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3e94dd76c0af815edfc94ce3607ebf87c8a7fae2e3b9f48d31b4269daa33dd3", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "504a16c48c4eef32150f26399ea8dd2103564d6da41dfb5a232b8342e7d638f5", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18477b81681252f045ef0f469625d5be75e15fc1595ffad80156df1d105d7f43", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1be22be8b1df5f0a578d21e5d52809545e0294813680322e0da1e36a3dbb67c", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1181ee047fbac1ae3b1f9962706e8cf74931dc05e755454a65468385c2c681bd", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb00f86c35be36857752d9f70abf99f7f7b32f4eddf75503c4d87876a44ca928", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c698873cffadebe3c30b0fb90245ba5097bc6dc1a6e33b6f718e2a94c26d13", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e334e93fe7465e6167bd8fa15c7078b8aaeda83f3589405f6455a58b81464c44", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90fba8ba3096f8776daba3186d4e9c2681e1c17c28f22ec369fded1d2c7133b5", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0d263e9ac77d0dde68ec68b635f16731babb055aaf55819e2644a85c8f2da4c", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a49fe55cbfa989a10668084bbcabcbed464686a726a15d3899971a37a1f42310", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a2bc14d5d581262cd84369391aa33444a95d3f5b6e5fa0cb1ae71574e706345", + "regex": "(?i)^https?\\:\\/\\/dcomojogarrobloxcomodudubetero\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f9de23a52bb7a612140e2b97eb2aa0d0130720f29a6fb535aae603491031bfe", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxrapid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35725b4fcafde77aaf21c781c21a6cca152e5c9667dffb6ea5d79575b6738529", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxrapid\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cddf630976e21e02c11a7b145007ea3c069aea369798519392455bf889747460", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxrapid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95ad2c4c567427de8d29a828410e519cea2fbdac37e4c7804bbde963973760f0", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxrapid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdd544411198af74a59e0c2bbd90382f3f89501d88c73df3fa6f444505165cae", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxrapid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c482a2bd6ab5ad852ee56b7ea3ea5c562ca7d1f79d24fa4157590a5c214002", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxrapid\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f20f98efb737edc1bdb10a3d318eddaf85792f3278669400216a89cff8b69393", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxrapid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "868ea7e78511851a44fd95eba7bd9455a0bff166710aa99d5272bfc82239944a", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxrapid\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c37b752b49f0c03eb6ab49f3e83423fe63d1d8ef587df505c84231bfd407ab", + "regex": "(?i)^https?\\:\\/\\/comojogaremergencyresponderobloxdegra\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51e98c26c79f9f376ee2f8d3f54ac4bb0cc558e61c8befce9f4bd7881c87eead", + "regex": "(?i)^https?\\:\\/\\/comojogaremergencyresponderobloxdegra\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdb0c074a739392762e14de143c552ea1146f916a83572b01507907dcaadbcea", + "regex": "(?i)^https?\\:\\/\\/comojogaremergencyresponderobloxdegra\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "924f4a8d32b395e71ad712e6df932de5ec6430d895a8a15168558fdc0cf72eb1", + "regex": "(?i)^https?\\:\\/\\/comojogaremergencyresponderobloxdegra\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41f7b2301e2a7af83fff0c0f9bf4c763bddf2177200734d439a4ed9871d0498f", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffdd8ab7c85f532f5b618de9d915cd73f8633c5d53863fa204e61af050c4d97d", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b8677cf8f02430bce7d7c829f54515711be4c31fac767c3c9e5691f10431b4b", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8350a3f276851f9b5b7be51377b1777e462be8ee356a54e6f18324f824d97c8", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3033e319aa07e72a171d9a92dd35cce1233aab16165ad22a49757bbbcce1e5fc", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf576e8168d0b5c794d5e8473cbd02682bf8350f24363f49225edd2c835eb359", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fde15a9afa659b23bffc51922813fa6bf45868e3fb199b4e50c7d835a0ae2ad", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5dadecf49975205ed9d1dab4de8c24f70a78d9eb68fd65728ebfcc158d9ba0", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a12ec8a2bfd2960500fad7427dbf562b252a230fac4e77b401cc902ccd403986", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e42df0c663f1b8ef528e3fe01102d41478f80a0a7410693182f1c5d2c4476363", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8e14f7a2fbf8173ca33620b25d8ed143e44d7daa93066185c223085c9bbc99b", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cc582f6b929f09f48fe1c4b2dd011872acd5e4644ae4c706f91015fe3e30a3c", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adcf12ce2cd62cf0dcca7d11f02cc2af27096fb8cf4b2ec76bbdc99353f43897", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb78c4be977864920d7618da35879d82d4087e855f5f84f61b39f7c7464be175", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3512ef4d68ceb1b86df4f33605fd848ab2c2098c246eaea81e832913b1162181", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5d617f96eb053fe5514d266f1a41028270c1a9793f9cecfcf9457691b9442c", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c834a6ed2972f7e04214ca89e4f7513ae1d851aaecce585247be1d1a59716c88", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dae3889d7efba0f58f4bc864f2ddfa1433afb663bc2f40c50815e1501ec1b0d0", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d87546e5a9a1559fa0f2ab37b913bc43ce32b8054d7c2e8d478252f4df30c89", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7845ac04cf6fe4a8a190c289f944b6b057eecf8a66e66bc402092354a1f7a6a", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35128aa21e6659a8f68d73ecbd33dab34d7b43f6a373e256827e67ee9aee1035", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestdeserttemple\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7781cbd27a43f41946c9ce63f71e133ca8d7143c108337dea69ec48058eea171", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcac3bb26173803590d9e6025450688cedcce6e3c56a7ad7727979b330e10208", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e35b4bb91a8a5b0d070bcbf4e9f299d4a2050540488bd6784dab2d58632909b", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c97f5f6a8f7f101e59536fca16c1dbf3ee009869fb35ccfd82bf1140fb349a90", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf0d55bffe914f735134ab3885779efb0fe25ea002948f79bd223061a54aa714", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e5ce915f1a8d14c661c19f59fcc3793d94f388c043de4bf6ef97cffa14a5589", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23a356f7c718fa2f12b3d9adb04ba05e0e0b3c326f171382eee3541baf9ca726", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "973ed2fd34b9bcef3c89673cef4a96c20495d1e979299989f6f283a9e152777e", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7823e439194127615efbe701cb3fc5d7edb6d843f34472bd45e8dc0682424bf4", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7873895676506a8ecc123396810c815414f995d547680364ec087c2423047d1", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsakuragreatstaff\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fd7e10fea4cdb5d72832f6b521ab11baaa5d886c26a6fec68ea9c456fbc7d0e", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "116fa76f903e2a404bdce93a42b16f7e7bf968bd3a407e54ea63527e20f47116", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99625113923d73c516799c580c7fe5317b769ac8368f4555a1d08d20d31da953", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ad872b4e24304ac56086f519da1a48f30913fb30c1355bb9a3b5ab6ed2f7ab2", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1dfa27e00453269f3257e75f40833b6644c71a3a293ce0673706c195a20d550c", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "115ce5acfd2ca30a1e8871a3046f61621da5024eb120c3563a524f4b47fce285", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edd1978710365dad4386d3d6ec7324d78fc3b964693bdf283cde85227b494458", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "097c8de600116b29446b64bfe293ac7574670e3dd9801e9cf56698a6022206ce", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de9a24d5efe36b3d012a7c927bc4ff87e581c61e76c911b483a2c947d2601aa9", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c9a527b740d7834f21dffc62103f8108710657792a08ff570ed64a81e043dd", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestvoidbeam\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "959d98f0f7a3afd16eea2db7d091fe10693b25eec69bf952fc5f5cf9190331be", + "regex": "(?i)^https?\\:\\/\\/robuxgratuitsurroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "892d4a28ad17bdb64a163f867c4067be7370cdd5e08cfae25c4b60b9832b95f7", + "regex": "(?i)^https?\\:\\/\\/robuxgratuitsurroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae3c51c15b782350d202330f6586c2d5c938206638aa6962591a292c25fdb96b", + "regex": "(?i)^https?\\:\\/\\/robuxgratuitsurroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09e26e09697b8902023cb61bdc1fc3418086fd3d9647674af1ef249c4783f66f", + "regex": "(?i)^https?\\:\\/\\/robuxgratuitsurroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb3677febe5a89c5d000e7d8fe4360ba1a8c2654117c47b97a2643ec04b71e50", + "regex": "(?i)^https?\\:\\/\\/robuxgratuitsurroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4c9debb7921f57a4f79b1de63d9271a92e176476cd9bb4c373bf9d1add3c72a", + "regex": "(?i)^https?\\:\\/\\/robuxgratuitsurroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7434615e2dd6cb6a14a4323d6586b96bd22bd1cf903a6af849199c566ead50d5", + "regex": "(?i)^https?\\:\\/\\/robuxgratuitsurroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e48455f817230eea2e0f872ab52a9d0e31162e366cd0b32557f876dbd43edee0", + "regex": "(?i)^https?\\:\\/\\/robloxdecalidpokemonsimisage\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb6b341e4bc75165006ffd6cd8c26ecfd9da1ffc8b9ec0b6a1e6b7592dc9e02f", + "regex": "(?i)^https?\\:\\/\\/robloxdecalidpokemonsimisage\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cd4aeca9099379e7e66ba879801bcdeae4ff81bab991b976c3be16178ef0f03", + "regex": "(?i)^https?\\:\\/\\/robloxdecalidpokemonsimisage\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25cc162ba6a3bf6bdbab3f3ceef13f8c67f7627b34b35329e3bf5b070f27d8d9", + "regex": "(?i)^https?\\:\\/\\/robloxdecalidpokemonsimisage\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49cfd143291e5dc74a13f4d455613fc3267cd8e824c77122afae2c4bf47e2a78", + "regex": "(?i)^https?\\:\\/\\/robloxdecalidpokemonsimisage\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "467f984e26c40605cbe15440277eb5b2eb7ebaabd139bc8b90d6e3dd3ab9f67b", + "regex": "(?i)^https?\\:\\/\\/robloxfamesimflyhack\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc3425a6e03e4191e3b6d631a0cfaad1021e6047094a6ba2ad306a77854bf43a", + "regex": "(?i)^https?\\:\\/\\/robloxfamesimflyhack\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eebb927fe7e13f54522bd7e0d7a7c3f945851dbbc0807ea8355a0057a7d5024c", + "regex": "(?i)^https?\\:\\/\\/robloxfamesimflyhack\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c27a0f1ee3948e1cc5a7bc373b2b0764d4fe0e825dcb95ca42e00e8b643837c", + "regex": "(?i)^https?\\:\\/\\/robloxfamesimflyhack\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d9dd7755e5e837f9cbf126fecfe58bc3e838333b95b9304ccfe13fa2064e8c", + "regex": "(?i)^https?\\:\\/\\/robloxfamesimflyhack\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1798ad2bc295d6f8cf05d90b6bc3e5031001ac03102ebd172d2dc53c9f906bbc", + "regex": "(?i)^https?\\:\\/\\/robloxfamesimflyhack\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da749c60615446772053b023ebd56715252843e4bf6a1c3d980c6d43f8dbe982", + "regex": "(?i)^https?\\:\\/\\/robloxfamesimflyhack\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27de3aa92ac7f5271ca19f6f01dd01531bdf6500d39362d4d4089fb461ac0a91", + "regex": "(?i)^https?\\:\\/\\/robloxfamesimflyhack\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62862800a7f0fd06c623b994871e3b415a06a98bd65a465fb6a339dd52cc097d", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa9a615d2ae9f1703bc0eaec9b2a648580baca78c34949820e75c9f504815160", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd5036588405e99d5124cca6a2b84d4dd5d4e85652100e8e255b0d82381aaf74", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da72b94baf7bd630ec6d2db0f59f1c914b68f7c0f5df55c0e88465eaada44c0a", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d28fee53e9363a240c2f93c2cf1ce5549d09c2a1e055527110161a8f16d0fed1", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12d61560ca5b53572c4976656883de006c413a8500f97cbc0b447785b4cf2a71", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea25004e36b1c730c2d049ed03b50fa073d60230b9e41f01777fb0ffaeedc4c3", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5698d6aab42334da961cbf1b99c6703c6fa758c0456f589656bceab7085c686f", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5d5c54480c387b0ac0f39a46af074fd572d95714d7981cad4deeed772e6b460", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80ef3b3f10caaf33540f35140d69ce5511e79dd7d3b75a44b313469d2ad1315a", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2077f2cbb62c4779fddd87aade02cfdb253ed5b8c0c3cbbd9c89e8a14aaa23d3", + "regex": "(?i)^https?\\:\\/\\/starbuckslogodecalroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ed7e8b6a98c929502a6776a21a6e67aa1b8618b95b2470394955e0c277816bd", + "regex": "." + }, + { + "hash": "3c18fba9fcd37ee48741bdd068f9cb900d7f0a1ca7f802d4953e3ba60c5c9440", + "regex": "." + }, + { + "hash": "b585d60cfb24b1099f14b587a707dafdbebc4f43fbd37736784178bb6096a146", + "regex": "." + }, + { + "hash": "76d362503a0fdb1f04ce4048d1065a407db4901c5d10f3edf7c2501e75883b4c", + "regex": "." + }, + { + "hash": "9e86890fec84e21b04794995bdf7f2cd18c7f0a792b93f3d1cd3c2dd47732c17", + "regex": "." + }, + { + "hash": "84d22f733ea168587076ea076c9119b91487515d36b994ddb270f35fbf6c5691", + "regex": "." + }, + { + "hash": "3b3c188695818f6cf5eebb7628684b27b18d04eebdfbb4e9c565ea563b9f5771", + "regex": "." + }, + { + "hash": "e1c784296c9ff442ec48348b4cf740ddea985ca6dc49a343aa54b75a72a7a2c0", + "regex": "." + }, + { + "hash": "43bbf8dd91fb94179d3c63309c8d147190815b65dad278c8edcf95bdd5402de7", + "regex": "." + }, + { + "hash": "4fca3327beb0b81c45fec03f723d35688187c55deb8af2d8907a834cefe2855c", + "regex": "." + }, + { + "hash": "1239513aceb24c59442f828b3592ce3771ae2c9e318cf7ecfabf0ea7d4564556", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b0a4f7933fa11e7f1469d2a78208223f8a923cb133d8c734fe0be3a0f1fa95e", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "766934d764536b075513bdc993d89bb7aab9e58dbf79bf0bed5f3f5c558595a4", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4bf89d6faacfd4072f3faa0135905e2de46b84c15e5b65121ace34d69497918", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beb950ff166fc87be15bf8fc2ffb9859a7856b2fe5f383e51cd6cb64b7102c0c", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97ca6cde3c56097ed348f86848e1a498f18d398ecbcf0b50872dc925ad5a0a9e", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee5c9243d22b9f1c1438d3483203735fb695f4c1375eb520364bf9499b029479", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3e73e63f309076086ba1aa114af6ba33aa90bc4a5cb6540e74712069abd27d7", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71f029ef4ee46d40b1630e4cad48791c6768cc6f6fd979e3fa887c2f90511eed", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f68d42b7c24a9e6b1140d07c7284cfbf2456a6666b4951aed87c493d5bce9da1", + "regex": "(?i)^https?\\:\\/\\/howtomakeaportaltoanothergameinroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12797245847414ce99f1d95716c061ea68f1891c33ddcb0b8cf10439018e25d4", + "regex": "(?i)^https?\\:\\/\\/robloxodersoutfits\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6403791378d60ca388da11ca9a8681e86c558c69a269ba5f09e6a4de166b11b7", + "regex": "(?i)^https?\\:\\/\\/robloxodersoutfits\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7c59e0b96d597a84a541beb5d2785e26fa8600a2f3d5c978820bf6368391b0c", + "regex": "(?i)^https?\\:\\/\\/robloxodersoutfits\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7d79cfe02f7b504778bba00bb1d54b185d6ff5ba246b6e2aab212cfe25c1a46", + "regex": "(?i)^https?\\:\\/\\/robloxodersoutfits\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08a86ea5a8df47088e658a6d7d6a7802c074de16b87f1d509c75b56217ea3c10", + "regex": "(?i)^https?\\:\\/\\/robloxodersoutfits\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7feed4e99f133b13a886950e234507f5504beb001530817d5fbe5d78b51f7229", + "regex": "(?i)^https?\\:\\/\\/robloxodersoutfits\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da74fcb722441e46cc72c90d2e37eb69586f4fd81fbbe3d0d6dda5d00865dd54", + "regex": "(?i)^https?\\:\\/\\/robloxodersoutfits\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2e0086bdba1ceaeee51c69cc51ae46c75a45cf6bc7a1a4da1724871765a5448", + "regex": "(?i)^https?\\:\\/\\/robloxodersoutfits\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "314a72920a2370f56fd9300d61d66299475be706c1337172d1e31d483fbf4f21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FacebookPage" + }, + { + "hash": "49fde281637a5f637ad959f8a77d3114eed819241526a88ab19fb63f8af5d4aa", + "regex": "(?i)^https?\\:\\/\\/howtodeleterobloxfriends\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bb0f6f8f5412d4b3cb63b08e72b5baaf137945b561e04ac921ed3bb34bf3a47", + "regex": "(?i)^https?\\:\\/\\/howtodeleterobloxfriends\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15d74cbd62a87d27d8e1ffb7805ea10e47f6beafe59c94b94059ead2001cdc3b", + "regex": "(?i)^https?\\:\\/\\/howtodeleterobloxfriends\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "686297b5a36b04ec151e5c443f55230f912d683784b5eecd9842a44fc0c04de6", + "regex": "(?i)^https?\\:\\/\\/howtodeleterobloxfriends\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86dd1f0820a1a67fa3449e9c986a8d77a640b13f958946d2b2cf8794dbde9fb5", + "regex": "(?i)^https?\\:\\/\\/howtodeleterobloxfriends\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ed7212112d1751c209e8886650be12ffde18b03eb5fa2f4e581c7b0fb566813", + "regex": "(?i)^https?\\:\\/\\/howtodeleterobloxfriends\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4b690fe84e3dc5858fec462be5e321d03b62ea1b5c8b9208b09198264c9f367", + "regex": "(?i)^https?\\:\\/\\/howtodeleterobloxfriends\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "502509807473de4aea089feaad05744c3ac961cb320897ca2cfd790a14b14a12", + "regex": "(?i)^https?\\:\\/\\/howtodeleterobloxfriends\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "909438786189579a23aaff57e926fc15420a72fa7acd771b3b5a2df033a85a35", + "regex": "(?i)^https?\\:\\/\\/huongdanhacknickrobloxcuanguoikhac\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a225b074c419e581528fee2f5243d153de0165b2ad5867e2cdae1f598fea1fa", + "regex": "(?i)^https?\\:\\/\\/howtogetarobloxshirtforfree\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b45021ccc51fda31e24ef29e1e12fcdf2fe2d3b098dd6a8a84e4e9a8842a240", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdedanicapacita\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1eb6b4cdc0b9e2c553a56207dcb87e5de887c80e84cefc1e70d295ef162cf9b", + "regex": "(?i)^https?\\:\\/\\/medicinerobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a179a35708135789c9881d0363d142be337fe0c0972732c08288f5df05192d6b", + "regex": "(?i)^https?\\:\\/\\/medicinerobloxid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3edd806e46d2d8988cac0737c51960c3a41d1b3ea7ae57434d99dd7fac81290", + "regex": "(?i)^https?\\:\\/\\/medicinerobloxid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f77686012fcf92e0220ab50241a57f4466e11bc3f160dad70428b0dc6fccbb7c", + "regex": "(?i)^https?\\:\\/\\/medicinerobloxid\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e93ad23de4afd10e6e3c63f4f305e3933dcd8766598871abf4c828db22eeedc", + "regex": "(?i)^https?\\:\\/\\/medicinerobloxid\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658a6bcca1c488cafe47af1c28b141122668409904d95df5750990d7ca18bfd3", + "regex": "(?i)^https?\\:\\/\\/medicinerobloxid\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07d497dbe6cef35cfbcfa803b69a778a45c52cd22087d37d1673ab7fb4d1d667", + "regex": "(?i)^https?\\:\\/\\/medicinerobloxid\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b561fe5c65f4d8058e187a63db90b8e25997ed03fe0bdc787b881453e5c1034", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab48a913ae01a3163883477c558a64ebd87c1cc358d7455ff0e8cbd049b9ad85", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a83191b2f94ba5f2f720bf4c5eb641656ab9a2dae0dee85a04e2331b6a085233", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ea1c523260485bd54e53a6212bf7c6745decfafd65bdf034d330713d82c9053", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3627f2cd074d777b6f9979dbb7a05251a028b0211537796670e25eccc9cdcfb", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b561864cf8211bd6be44242814d22353b2bf1232444e338f31e39f4a58f9a008", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff861c911405ec4e0b2c4fa0777cf66c182863cca0cedb2ebba53f27021e7d3c", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbee2dac1830932df2132ef6e26fbaceb3bcfb23c40c10a1daaa8fd777f04966", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00ee615df69e1336fe9c5f92c43a47abc0586d87aeb16a9290c8af8460847273", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4a4d935d88a8fd6c7261a41956e7ecbe8ee52dfc3cdc393ff11b1e1676e7e97", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a20029fdb1045aa05c910313bd3a24055208ad8f6aeb87a15a0b18f695b019cf", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da4da6e9adc4421d775eb6eeadd851412d6d177fbd620f2321ce23f4d5b959a8", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11d10a69db6887acc6892653efe081268051b8fd4fcc9220361c6e1040b6e392", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a39c0a54ec6f1332793f37b574c9092e8a09b7ae6cfd095675405b4131d9216f", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "047c6e91e8cba51f4eb439a32639f14d37e0342839d4154f204474f6446fc132", + "regex": "(?i)^https?\\:\\/\\/transparentrobloxpantstemplate\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4412f2c39bc8a5cd1f833cc0d706b7f8f0ad037e24055effa9ed97a4c245347b", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a7e485c6849afd0bcdcdee2c40e28e50050acc84816cbc353856007cdbda86", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ddf8a912dfa9beaa5b419fa3efbec5ad273c61a232f0390f3f66234988a655", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a25d43b0b9b398fd85ccb1c8254a3f4135f38014dc4c5f6cb4f0a7c27fe0ed2", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ce91d85fcc7663110ebed5cb00121266ac0611415cea26fc4c24cedc0f3d52c", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d9d26e97500169d3adb2fbdc2d44687184331ba199dc4f1ddd115a78c05551", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ed2974159d735c01407defac21b19144a84a95bd205a5c5d7f3351b4213171f", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56b32f82e4e256d52dc8fa77a3f94098c013679ca96f19e9d7a56f3c7f3516d2", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb2960927df8bd39a345618b01a3f6ad2f3ec7f4449d6a5ad847792c564f36c8", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68b2634a342b0906e4ffa133ac93a7e10ddc6d46866d222028110e69363795c4", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea8153473d965c5afede856e1933f439a00e71c691af9b0d31553ab993bea2ed", + "regex": "(?i)^https?\\:\\/\\/joeytrapsesamestreetrobloxid\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9f0c0867da7fbefb0a26e52255d6fab5be0a6754d263bb6bfc0a83a4dd055c7", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cf267a6dbe647ee52be463030d4e5b8dd9bdbdd4aec0ec0e6d1de0be2b43b19", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af548b6bdd3a8fee92a0c97135f5eeb2bf7c8827f0634c0f6f08e3964ed4d723", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79630d67c8ce2ecba6e63a15994b2baa7d87ca6932b8ce6dad55d0c6e4e9e511", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a90e134ce7aff06a9bc575b90413864d97ee5d4282f7617e22ece83290e3820a", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f35670dfd179ffb23db9e7d5f454abb4e5ec5ddc2c859cd7b24f15248d71d07", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0542d5759a443bf69e575cb91c303a8d8a9be44db93eb9f4621b8387b80d4fba", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b4370be264a4cb65e1e255948f13e42d04daed3c2b95cce6acb2581f679ee2c", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1aae948e949a4f3528ac1b552d3c8505f9578e03af915def098e84aa06d272c1", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3554986d7bb189c0d79f505de0a4b6ebe1a4a139f3e72d5425d66f3e04005ef", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca8bdfb9f3bc777faa225417de4233ab3452cbc50d12e6a7d51e608710cf0e01", + "regex": "(?i)^https?\\:\\/\\/robloxtreasurehuntsimulatorcodesli1\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3407a8bbfa672641d14ebd5a5929413c1a7601d8f98f11750d26adea33ff5b9", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6daafd340053713d1682438c19d2686b80bef9771e4eba41abe94f5269a7866", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "689d6745782b74d5eaafffdb918416eb80b947b41376cb866c848f23ac7094ba", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cba38f790548528e64e3a3917c2aaedefecc251fc31a5804de614b8f24721f6e", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "160e844400c85c89f6ee7900c4315c642994c7ef5bd34ced9e64fde0a0b67fd0", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "895da98957c4910afb8464e4abe7488e10d6c075bb78fd97e4faf7edbc0574da", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eec676595ec14eb7051aaf44c78266578870ea55edc2e3debac4360f687b429", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f172429c686320cac4039cd59b14b2fa4fe17bdea1fe405b8d6b758f06df29c0", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658be6a9f51923ce434b4e727c761bb8ea05ab92bfed96904ccec3276459c3f0", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36a6fa31a5259c949ad66087aa2852915b12947e7fb593ebfb36e1206965fb40", + "regex": "(?i)^https?\\:\\/\\/robloxhackdoor\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a638d3c6a307dcdf24cff7b4c6920040ef475c15cf7a6b0f5d19427bddc4558", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f4ba779930f66982760415f0d6f0566dd06c92916b4848b803422118c830717", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4578fdf9864088b5cdce5d82b57bdae53c3d849e167dd931ac964a4a1d827c33", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bc7a5cbf311d8796d818e6b2f0c10b64e1eed84c146daf1495bfc60022516e2", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "470be82fbca6f5c3ff915c7ef98e2d5b9e8033fc2e2c94bc62b81c758d32ea36", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4392fac67657d76dc67390de4ad1be8629a8a483db820ea199cc8c6d07c6bba3", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae4d3749e259dd8fabc60a4b1fb87b0684034632a265973419eb4cace315215e", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad833d72804bf3c23b1e33d467137a98007f087c879369914007493d5b1d6ee8", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61258b4916c401d6719acc797ae53e6f96eb4dc7129118918dd61798297a1b75", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b756eebd05c3979723dfb176629395051fec416be34fc09ad11d06e58852a3", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f3be7f207894e1b4a3ba7e277fe27f965a0ac055a4e220bcf65e3f2165d5c91", + "regex": "(?i)^https?\\:\\/\\/hackcsroblox2021\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d53cc1c65c4142326a69947fc11bc1353d1571ba2fe78730ca588de72f2b57", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6bfc7ad96da65e7b2fc096485d6fcf407aaa76dbe5f07c43b4484fcfa43bf29", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814a378d4ceed1e1e602ffeb0e10314fdc590bbcf52b3fcabd1e1a47f3f7a554", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5ef4fc7a5e7a367eff57d4fc66a65d4bb485fe2b570b4fcf4375f3e2f86222", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "378b01ddb0590d44f1cc081a9b56d9b3640ee2425c3bb41e49a5891dfe103e87", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c53008115cd274757ec4f17add03686c9f0d0e515c6a1f6c1700803a881b2812", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e88031f5b088d82328e25acd849efb2cae7b8c53f9589d4570de6ea26fd4499", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbb2743aa4e81f9cec6a84bf76eca68a329c7cff5bd3924bc4da63bdbadb674d", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25b612fff15a4cb1e5821bd71ce9d8d9caac26c01b22406102d1896bee452849", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bc244d8cdded4c8861d5a97377e4d60291434e7de2cead36a9abe9544be2743", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b316e62cb4c405d5c50487a702eea13525dc30c12e396d7c85fdee891eb349b", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1be02e1348f67c7b3e64f16f204e663e94edb35e68abcc8b0d11931806ced2dd", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0284b6283a8e005d4b51d5a646929f12eb50ec32f778e8e2d0dd1f685c8ac2f3", + "regex": "(?i)^https?\\:\\/\\/comohackofarmingsimulatornorobloxinfi\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eecf4707a42f93de1af542765fe7b732a6ff9e53c2441d1af4751b3bcd82754", + "regex": "(?i)^https?\\:\\/\\/hackflyrobloxwindows7\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "793bc989297103700e448bdd5de39802c134780d493eb2ca04daca4667c4af62", + "regex": "(?i)^https?\\:\\/\\/hackflyrobloxwindows7\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bef5deb6cc48ba0465efbe0ee634027af7715c0072b714a263adb692d50b3d3", + "regex": "(?i)^https?\\:\\/\\/hackflyrobloxwindows7\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d784ce0087225e0f94f94307d8628780afb2d277ea36b06406aeb93ccf4aa63d", + "regex": "(?i)^https?\\:\\/\\/hackflyrobloxwindows7\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd1de998ca7d7ef3f6447162db37824f47a68209a1778460d60ce0c3f2c650cd", + "regex": "(?i)^https?\\:\\/\\/hackflyrobloxwindows7\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c122ed7b885f26d74c27e1dfa8e1c3e546e8c826e037f3236f80446ce6d373b", + "regex": "(?i)^https?\\:\\/\\/hackflyrobloxwindows7\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e73725fbd86a94482ab734a3ee1c0537fa295b57d3b117abf260f765510dbf6", + "regex": "(?i)^https?\\:\\/\\/hackflyrobloxwindows7\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e97f11fa7144002039497a712b341a3312a7faff357bd6a64eb8545fc6ed055e", + "regex": "(?i)^https?\\:\\/\\/hackflyrobloxwindows7\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "995fa41aea0f7711e289c978683414e36320cdf20b2dace8af3047fa6bd64a87", + "regex": "(?i)^https?\\:\\/\\/hackflyrobloxwindows7\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f60e1ac0adef21cd6eff88ee5a861e603b13aff0e5bc858da45e6261f235c029", + "regex": "(?i)^https?\\:\\/\\/worldzeroalphahackscriptroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b3942ffd3e14a34bae45081a625ef975646c63edf2f89eae2bcd937e73bdd35", + "regex": "(?i)^https?\\:\\/\\/worldzeroalphahackscriptroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3a0f24825250a2185f18928c8d4447e62d5fa7a14dab6bea0160f1ee502b3db", + "regex": "(?i)^https?\\:\\/\\/worldzeroalphahackscriptroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "828837d414ead00dcaaf2d1b63e3ebf4c325ad939286961bc1423ab61749b426", + "regex": "(?i)^https?\\:\\/\\/worldzeroalphahackscriptroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f99682fd1d4a6f1e23762bca5d9515b6750f12c8ee4145a12467847e42a177b", + "regex": "(?i)^https?\\:\\/\\/worldzeroalphahackscriptroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d045e83f743615ad04704f4c975ca32e220ff8a6d09f9bfee53886201a6b9f46", + "regex": "(?i)^https?\\:\\/\\/worldzeroalphahackscriptroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a1c64f7c5a55ae316c27b0081145d0cfd3a77c0c6c7c3c700ca511a9d10284d", + "regex": "(?i)^https?\\:\\/\\/worldzeroalphahackscriptroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd4297c970f20c26b99e53a77eb8e474bab8e52786e1817b27f52109fae21904", + "regex": "(?i)^https?\\:\\/\\/worldzeroalphahackscriptroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c0164e009c00975a190219aea666a4b3d2679ff6d214bbbab814cef2aa1fda", + "regex": "(?i)^https?\\:\\/\\/robloxhackfreegamepass\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3580fa36b6e9c22b33ae313cc6439104204498bf84d7edc26cbdaee1a856e84", + "regex": "(?i)^https?\\:\\/\\/robloxhackfreegamepass\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d548a898092aa96abaa8b37e7e0dd6f77e6497f55ad344a70d852ba64e400212", + "regex": "(?i)^https?\\:\\/\\/robloxhackfreegamepass\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "807acae671084dd511f0303854d170becfd7ef964ed58e12e37095d8a5697ee9", + "regex": "(?i)^https?\\:\\/\\/robloxhackfreegamepass\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "598a03cac7eb160b75404df46c1749b831046ceac366fd910ff272ed89029c79", + "regex": "(?i)^https?\\:\\/\\/robloxhackfreegamepass\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da8db5262d1e31e6c575197afe7076e5595ddacd692b97f1c66b1908a47d305", + "regex": "(?i)^https?\\:\\/\\/robloxhackfreegamepass\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1872d0b72d53a7ef180e42207ea688520633a773c5d2fb052d689030d624901a", + "regex": "(?i)^https?\\:\\/\\/robloxhackfreegamepass\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d63af279a5c9543638676a480cb77f3f15842cd1157e2fe74c262cb30b24a92", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51972cad5fca183b95e415b2e5258aa314db08d2688dc3007563f54ce4a543e1", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d686a7926036f5f6f1a970f0877e20940b2eb30fa6a5012c5105ae7f272822e", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd6023a87f36230f1f1a64f93b42d8b1d57bd56c0db0a15c62c9132050d0f0eb", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2abb89654a404e455d60396fbe9d53e7606d369b8c41b9f3cc990fb050085784", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff6feeef529e6f3c982e10b56fe232d0676cbda855b36fb05987faa1e96a2d88", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "348caa8b534c4a70b4619f2f0d5da387d70a4dfb7f601d8cfe353364409fa737", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e1bde1c40a6d79d63d714f96af521fd5fe2b091be4e4cbd8f34406647ff3760", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b114bc5d899cbabf9b61b1f0a661c5005b3934e87a7114ceeab897720565f12", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4daeb3b7b80a66504ff39fe78f7e97e65b9ca61378c4e7bf6f0b2e316c4d321a", + "regex": "(?i)^https?\\:\\/\\/rapfrenchrobloxcode\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "061b023d4b32407f5a9bd46075e337fb2b379f8b93935da75fb362ed40b23fd3", + "regex": "(?i)^https?\\:\\/\\/robloxadminscript2020\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6168df173065e0cd833d408a4dc15e58ac4a189ecfbb4a179b7f29eaa5e655e0", + "regex": "(?i)^https?\\:\\/\\/robloxadminscript2020\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6157b0badbe1cb35180281389e09d97b378085eac974d068d3f7e7e703c5e2e5", + "regex": "(?i)^https?\\:\\/\\/robloxadminscript2020\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e45f9eac91a93d8135e0e122a16247297b35981a048e48028ffd570bb5babfe", + "regex": "(?i)^https?\\:\\/\\/robloxadminscript2020\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca5f1d9dcedc3ca8b4efdbab0fd12b3eca68c2defa5feccb18c47be866c691bf", + "regex": "(?i)^https?\\:\\/\\/robloxadminscript2020\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14cd54a2e74d98a86b229a168e8e45f081427b908014a64af3e12af6eb9115b9", + "regex": "(?i)^https?\\:\\/\\/robloxadminscript2020\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf1f579ae910748875e6202cae2b7bf259b355985c1f6a8f55e6394f9264ced1", + "regex": "(?i)^https?\\:\\/\\/robloxadminscript2020\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df55133aa805eacbd6385e744be016be7ac1f32da644519919032ee38614ca2c", + "regex": "(?i)^https?\\:\\/\\/robloxadminscript2020\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64ee0e88a49a4c641b7b10a06b4dffcda475f51d8f5087533d5587dc5d04f0f6", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2949b3f84333d0010abd6e4b1a25e2b7e2b30927a6019688054f9e7a5aa6629", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourerobloxworldforrobux\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73f6bb9fcd502216cf1fb36d73832df3a54e71ea8304318bc4dfac4b69d04a0f", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxroari\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e385bbc2f1d72dd81e0137d08a5a1f263a6d3a90b1c76d50e390140e78ff128", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxroari\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ad282c0d13ef499a84de243dd09e94a13097695b2aed458d4a3f43cd79f5021", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxroari\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd31fa9d282418a66e0c3e6b86912974c380515aa9947acf9d4c0836cf02a703", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxroari\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee5c05819508891331bcec84d2516a428969b62b7457634c2d70ec444cd0f998", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxroari\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2e441d05fc8bd44fd47e42bb9a768ed09c6969b246f24c29e88c72fc9198e82", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxroari\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "640ee0b68d632e1657f6763aecc41e6aa67dab01100f5c7323d4295c499be76f", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxroari\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21cc590aa4ac7329478b9cdc571580dfb838e49a4c00b35b89907f0e726fb533", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxgratisenrobloxroari\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "874e7d884f2f6047b104598a4c4440e9090601a8e7fcb47414d254e4bbaa894c", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e0ff2c8f522ad56ff5a51007a48d693fb88e4b28f14444417878e226eeb0bbd", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c09d47c98da9070232376c539e489a2712c345d8a8c8378d2c484fc74797b72", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "353c34549a25877d43f98cb5bd3f1d322d6cbe5057fd5f5edbe68cded28762b4", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5779b1c64fa5e326bc9fdad8edaeed0c858c75454742ef22391adaf1f2266671", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74ed692a466c6fff60988894529cb767fb620e8e942e289f2a34335928f63528", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72593314ada646ab8a76dd8bd483bcb9dbbaf4aa6b10bc505ec0ed666dd3313d", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30f7cffb471bfd95469f27cc4fb17447d7215498e0200e2ae122254ae8404a92", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9102dd69726face576db2cea3ba8af5ce204cea9e57c7ea147d17a28c0df6d74", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b846651264571bd3b389870cf4135d32b169c334b3e9ae2aed10fae5d06fa0e5", + "regex": "(?i)^https?\\:\\/\\/oqvcganhahackumacontanoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b77aeda99d94f34451ac6cf8d34b584484ebefc3b4582d14efece775ad7bfe29", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3927ddb66ef873ff3a178e4dab6fd521a3169e5452bff121be701ff0f01b99b", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc834a097b9183e61acd70cab0f538dd55b1c7541893e5a4abacb6589f1f74b1", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "faa498bce5d1614bed8c82cf9d6a175b31c4760718a5ebe5b9c6ae9546ffe1b2", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d5932b24ae696444ccd716e3ba524430e34edc9abfe9392dc763030661835e", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93a2feb5d9e6027730e58c19b8b72d9cacaa98dbca92894d63e54a7afc59e17e", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb3f6c55a166dcdcaea0e1d705ff4b0212c17cab5f5d8a60b467ceefc82f0a02", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "184778f82ca0b34bbc00c04fc5792a3e519c336e06a3dbb9eb6ba4ec856ba848", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b41dfb5df651c123ae364afa1a48a3adaf78d6fa8b7e3fb2dbef9d4ee06f12d4", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebba4f333aa76801c6907a5363b2ef5d7182d3fece006938fa10658dff04d1ea", + "regex": "(?i)^https?\\:\\/\\/escapedocabeleireirojogosroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb1ef2fef4181d34ae0024563373272a411a56d5aa56cf59d06393ac2d143ddf", + "regex": "(?i)^https?\\:\\/\\/comocomseguirrobuxgratisroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b872f4945ad73442d34eedeceee894468c18be4f05079dcbd339cd4627bfc7e", + "regex": "(?i)^https?\\:\\/\\/comocomseguirrobuxgratisroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7b72755fa73484d813490b0f979e19d164d51afd74feb2ce66c3c7b845f2f22", + "regex": "(?i)^https?\\:\\/\\/comocomseguirrobuxgratisroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "921eef4f60e294e3550bb8821b2045513a1ce040e33f71e630ee324fb0dd3a85", + "regex": "(?i)^https?\\:\\/\\/comocomseguirrobuxgratisroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d785c71432dc26cb91e6785a91ed1ffc4d50c368a0cfe6b36ed4a40baee86d65", + "regex": "(?i)^https?\\:\\/\\/comocomseguirrobuxgratisroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b509209d5408e1e51ef5c18f56dbae07671d84e60beb4c043b08b392be823548", + "regex": "(?i)^https?\\:\\/\\/comocomseguirrobuxgratisroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2f3c2c08889f20f4e949140c99edbae0b0a6b71f3a5f347e98219a50ad36bf5", + "regex": "(?i)^https?\\:\\/\\/comocomseguirrobuxgratisroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe72794fc29911f87626c8b61c75aa3c0a6f4cbd697ca0a23c1e1822ef6d963", + "regex": "(?i)^https?\\:\\/\\/comocomseguirrobuxgratisroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5772caf8aa95f0f709c5b847398b10c6acb87b523f61fdbc1abd7319ad4863bc", + "regex": "(?i)^https?\\:\\/\\/comocomseguirrobuxgratisroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a945dd25c5bd7d9eceb1c4b1dea8be829bc88755554987a8918db102915c1a", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxaccountfebruary\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a1847a6f24c9882edaf43e1fb798558a7f13c91713ec21d74efbc2bb2d4d75f", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxaccountfebruary\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdee4bf86b45949da15d3809ee28fa995749e37c320ab729b51a7c28e3ce261b", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxaccountfebruary\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49322a9ecaccede64193085465c29327f64573748747366f322d80eefccc58a9", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxaccountfebruary\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25baa15fc58107166cd6db588f81d8309af7bcc3b15f29ed07aea9208ff60cbb", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxaccountfebruary\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f89b8a17bad0bd7737d328a1eb93b449f275f6a8fc8ec6e82acf57db7dd52a3a", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxaccountfebruary\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35beb24b8592fa8bb2ca4107d975960ee79794a1329f4185d63092e24b56ee84", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxaccountfebruary\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73ec132a027f1c22305dc9a74469335b6a41495cffb2d3e74cc3e8be6ad2438", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourerobloxworldforrobux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "914d121ac1f72e2d4d7a75aefc5370a448990c335bc526138afacda7601a0df5", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourerobloxworldforrobux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3aade62dfa57afa2e48f7fd8900dd687e270bdace0ec2b75cf3657fd943a1db", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourerobloxworldforrobux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd4dd3680198cb28e14366f484ef00ebe495e0b652e7180d49c56a1b6fccad88", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourerobloxworldforrobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bb8ec0a1f7577ed32671dbd3e5ba614fcf4bc0c54192c0a43552108d08e717a", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourerobloxworldforrobux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d21ca1391cf39e457042a721cb87a4fa048333754b0be42a2265a58f244e672", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourerobloxworldforrobux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "229ef0d3788fe07029c73e4ea7c6fdb7c59050d48e9b4c38f5be2d8b3ae7c97f", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourerobloxworldforrobux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1b375100d6eb4961d8a278356d65d9ef1711f95c6b4affac87a0b6e859c1ce6", + "regex": "(?i)^https?\\:\\/\\/howtomakeyourerobloxworldforrobux\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1ea6a24d9cb060d34df6f3107466715e0c9dde7fcdf67c292d1c880ea2ab50d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netfli" + }, + { + "hash": "cddb8f571e1fbb205bb9cb570d55868b77e2e9db632ba45438bcaccc6926aaa0", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c66104c833d099fe9c73d4f6ebf038ea835cccb81d27d060f158bdf5f10ff041", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3d1f501c9aaa1493004ef35a2c5f1e7c7dbabe12b65debe8bc5da140fd734fb", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e0e67a137f11bb07c95092358bf1fdddad0d88ea1f19c8a447b77dfd677cf85", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58543438af730d5168f5a84f7735d01f028277a95e82bea92d6a1c95be22ff89", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "683683ba075c485caa4663eb1af0fde0bf67f05050f43f6108080d149f80bf1e", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fee0692da95b024195bd0147ac798ae353184c05419439c84c3db0d28de68fb", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "862fa96a4b8e800d618b4d44f8f5c441fc4be688540203805593adeecc4a0f84", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d61ad56d2adf203218246e3a2f8b41afd3870640daac3ffa082a2384580668e7", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be52ebeabb9e0075d0ad4beb9402ab0fe84f7a0b4a14fdc75e90286cc3ccd093", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "180eaeb046730fed5a4c3f44f3a044108c719f9e414f3a829bc1ff0687399695", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf1c536417dba60a96b477de188a8c42182ae4f66c1ae841e7365beb477628b2", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4284e37465312615521d067e30875365d39695486afea489bab91d88f2bd9573", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e6c3126ee340d45f2fc6b090ef3c49509a2dfc5651150a9f1f34b7fce9e381c", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4b60959392b6b75cc6d0c2f1741b238b76bcc28a29281fcc97f05b9d4606ce8", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ce314bbd7fcb5fb2faa4e5a7d646a90c536a769352378581ccb8fb9fa6e9a67", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08c633c2d6114391d6da4f118e6b802e154cce20c309f464c13d1b6cee8ccd7a", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f1cfe60c7eaeb04bf8931ec401898b4a01b2d13a4d3cc787013574e155e641e", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d964db34ddf99554de8f40041d7256a92824ea2c86f325895fd4f98fd3d8bec", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f62f9ef0ae447db636fc2306fd251cdd990d29c4728479a7791204d150bc56c2", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e00f2d13de1ba934dffbf681dc7178ab7641aab4b7cbcfdaeb03df961d60191", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "777a5dde0e7fe30dad5c5c73aea1bb142714d3973a4e65916e6581662e323b2e", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbc0243fce6e56c09d16a6e66316f0a04fa4bf9dbeb13719803e8ca70e71ecca", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d23fc5e3218c3cfbf34364574624e411f6e706565c72a5a9050a731edf7668f", + "regex": "(?i)^https?\\:\\/\\/comocriarumgruponorobloxeganharrobux\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ddff46a9147869ab6aefff5c8a3bfb07e4231b2ce0b2dd6d1aca4f02383801f", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfdcaa340ba48501b5d59407f44f8767409bfa6e52d7d11fefa1b982e9b7b6be", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffd137b0c0b66ee1a0d3657151960777bd3b74bcd8ec970f78ef887d4687002a", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b11e88ec4122d8abbc4670d22b639870287a33548bb4a0e057c1a1325384878", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d832f99b6856a536dc8761510f71497be87592198483239460e4840931793eda", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "958606da1b9e50765232fccbfdc6efc429de39aeb518971bec5bc1da335e93e2", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed40d29514fa28d026479db78ddbf58e9c32916ff136977aac34693ac46cc50a", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74d1b4e08d29560f205f4ca34f3d2055b8888fca3d0258360be8a44990f63121", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb3da933b0da43dd750673006b838c158b3851ee772fcf2fdfdff8278127a9c2", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2d993588918bac4a12cc866e3733b907acaae786de18947ba49717d3385d6bd", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxgratisnorobloxjeitofci\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "052da8cc2ada7b37fadfd0011b7e9d881ddc968541990615172e181097e2d271", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "755326ef5ba94d941f89589cd0fb3a90749a596d41c077ee75d35a38f76de1e3", + "regex": "(?i)^https?\\:\\/\\/howtogetahackclientforroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9f6ee51274a38cd658025f59ff229237547a197457525eff03a03b3c1a32d44", + "regex": "(?i)^https?\\:\\/\\/howtogetahackclientforroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa8a7ea980a0f250b0e3ad7e896c6fec1ff323d93418c6ece535108d93a11641", + "regex": "(?i)^https?\\:\\/\\/howtogetahackclientforroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4412ea86151a12cd794e4e6e6ee54f0cc547896908d33bfc2dc681421afdf7f6", + "regex": "(?i)^https?\\:\\/\\/howtogetahackclientforroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b29b84d5e3be4dd888c0e578ee9820691c8b00c9f7cc94a6a6106b3fe1eefb13", + "regex": "(?i)^https?\\:\\/\\/howtogetahackclientforroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2f9bda0e3b3158928ae488b76eb22a937e302550619ad25437f1029fb2f2430", + "regex": "(?i)^https?\\:\\/\\/howtogetahackclientforroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61e0919dd31e47677636afc7ad51f30b5776cb6761f868a7c26a9fd28247a4de", + "regex": "(?i)^https?\\:\\/\\/howtogetahackclientforroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdf0b15ef156964e409a4ad557c3a9fe2126e9b483958d8b069fb8bbca64e2a0", + "regex": "(?i)^https?\\:\\/\\/freerobloxgamepasses\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1134eb8f52d213b339358e8147bea6b8441ee1e84745d763c0427d0f818afa9", + "regex": "(?i)^https?\\:\\/\\/freerobloxgamepasses\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bfcdb88a9eb73771582cc973815201cb38ac900abebc3a3423f4c316d83f62f", + "regex": "(?i)^https?\\:\\/\\/freerobloxgamepasses\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f38b74847be83375fd8403d281b7877df61be584ab7594d26729a421eae9589f", + "regex": "(?i)^https?\\:\\/\\/icebreakerrobloxjogo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "451c0a1b148581a89d95414ebec61be0d33346d3c8323e8f7bd21813cf80e2d3", + "regex": "(?i)^https?\\:\\/\\/icebreakerrobloxjogo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f66ecaa30065a04f43f521ef28202da8fe8f6286605d6da42d84a2d9c9fa8996", + "regex": "(?i)^https?\\:\\/\\/icebreakerrobloxjogo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e829fa7a9137719f52d694cf2c2618976eb8c419dba5965fa73a440f3e0a805f", + "regex": "(?i)^https?\\:\\/\\/icebreakerrobloxjogo\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f3b2915eb9992370f74952ec104ad757f822a76876c11e5ab66f0ebdf51b0a7", + "regex": "(?i)^https?\\:\\/\\/icebreakerrobloxjogo\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "983fc9e529bdcabbe120ab996ae556347f7672ddb6e1879a3b9b1a4dd962a134", + "regex": "(?i)^https?\\:\\/\\/icebreakerrobloxjogo\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13e2117cdc32925ca71dafab7dc825804c74a45d92d0fe680fe3ae7dd242ac99", + "regex": "(?i)^https?\\:\\/\\/icebreakerrobloxjogo\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8531db09ae3359c7810217c7445d667a3ebf4a987ceaf573b089e9d02e94659b", + "regex": "(?i)^https?\\:\\/\\/icebreakerrobloxjogo\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5de85501155851215d5aeef60b9b58b202383c958b5990de1e0b2c0b7d83c248", + "regex": "(?i)^https?\\:\\/\\/icebreakerrobloxjogo\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19bf6651ddbe9d650b1700097bdf598165fb0fa4c54ca9b423b2c6983637b402", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e1e8d0addd65a96c30b995d9896aca38478bab0e37899aa21522825b19d16f9", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a7d1266f1bfee6dbb53ee422b03aa840639bba098eb091a5f1eb5572eed1d94", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5829acdaeaaca69e83ddd27ccaae8143c8d119eb974cda41a57ec0998337df8a", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d2972c6749ae5ec7c45b7ccf0afbb1e594ba699c07058206734e9da459fff2", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "335a4cf1308a1089e803abbc9f5ca3fce0a12025cc09d70e55b680e7a04bd8b4", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a176f4c08190c8f547e32056bf72fd609cccb1f68cd631eaa944f976ebc418c7", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "721f78ee7a15a6a5274fd2610b8d8f70177d7cff64bd71dd61cf5bee9a5ff6de", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a793f33c77147a2e29c5cc1ba22e8ae94101e4c768a6e7bf4139ae04718bae", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5721d1321c8d0a18b49783f676ebe4993a01d530b485b44ad633e7259bf2cd9", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03e065df1023b79d63e8791020341ab1e81f078ce7a6b4a65daa84388ae5e813", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c80f84238d9ab981e9801caec01483e11f832750f754d062969551825fe621c6", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1798b5480ef5d6ee32449759e7311deb08e5c195db8a5391235306788fd34b17", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edef22be63092b6c1e8161c346a74d7aa40daaf239c0b42f7c629067fcbf69c2", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9768e8f838f6b8871837f764a2295de9c8648fa0bf73da0df96ff1e4ee11b376", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "544e2ba3573f070cae5fe3de871cc2cc4e68d47c243aa2d46afe4a8cd85b2b04", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8962f0ae250cf023ae16834e969ea9dfbf509b29aba7354e83162ad4efe00a64", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2049a39aac183bebc0714c1945c71222aaabd1e2cf012b686421d011346c1a10", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d2d5f524e31c7e0b7715213bcec1919fc3da287cca626a4d1304e75aac1a645", + "regex": "(?i)^https?\\:\\/\\/jogosengraadosnoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d36e1106ed3495732635fc5f75cd371f4f4b13b154fcb27b8b1afa34c8cc691f", + "regex": "(?i)^https?\\:\\/\\/migosrobloxidcodes\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f343c3191d6366d027c02ea669b62b0347a6eeb1d3b2bfb0d0a3703fceb0ef9", + "regex": "(?i)^https?\\:\\/\\/migosrobloxidcodes\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1697d2929ea76e3fee8eb903a627b8f44160bb9d2cd832485ca41ccd1efca86", + "regex": "(?i)^https?\\:\\/\\/migosrobloxidcodes\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c0e76bb03af82136c553cfef40d6d62245c7738c006110aa74706bf3cd73cc", + "regex": "(?i)^https?\\:\\/\\/migosrobloxidcodes\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40422bc2492cf81477fb1e610ab78b5c0d146444cae1d2a668389ced7f12eb23", + "regex": "(?i)^https?\\:\\/\\/migosrobloxidcodes\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a68592e58947e560ef5b4f9e0f775c6bd6a2cbd5c9f8fcc1041c7f3ef5e3adf", + "regex": "(?i)^https?\\:\\/\\/robloxhacknorecoilscript\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d370f8540a8c5bd2d1ab4f3b6e7d40e93aa283be5b20b1dec84a9eb3e26cdf3", + "regex": "(?i)^https?\\:\\/\\/robloxhacknorecoilscript\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b272293192eac68133cfd28c034c45385362eaf0309633359c727da0195e3cd", + "regex": "(?i)^https?\\:\\/\\/robloxhacknorecoilscript\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c79d228c9bd2f5f9f47b545849b6e70109c1b753a2385626a4aea30f3859eace", + "regex": "(?i)^https?\\:\\/\\/robloxhacknorecoilscript\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32642360d417c6ff42a117a16649b9cd89dcff378a1afeded8c508faa5c5382f", + "regex": "(?i)^https?\\:\\/\\/robloxhacknorecoilscript\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f183020299ce02abb544a8e7306c4225f9c02b2b2468cee66a6d164bb0a71300", + "regex": "(?i)^https?\\:\\/\\/robloxhacknorecoilscript\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7643e48a702e85331c1801e231c310d761e14b01a233905dd4e9979e0c96fc", + "regex": "(?i)^https?\\:\\/\\/robloxhacknorecoilscript\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46bcad72c15e7786f615aea281280a86a7bba3c8de63b4e0a00c4c67ec19a78e", + "regex": "(?i)^https?\\:\\/\\/musiccodesrobloxbts\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c062f28f79c906d2d6742484bff312f675d818b4d9efee81a6f290519da511d", + "regex": "(?i)^https?\\:\\/\\/musiccodesrobloxbts\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ea3851589e27f6a4230cbb2ec9ff2bd2a8344d2d8768dd0e46e789b8032a819", + "regex": "(?i)^https?\\:\\/\\/musiccodesrobloxbts\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd5fd6acb46b3391115219a85c4251fa90b2f52f541b0a2ba20470f82b981b7f", + "regex": "(?i)^https?\\:\\/\\/musiccodesrobloxbts\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "916be1f23e6bb8acf4ce9043d420fdc219c0a0cb2ae4751541a024ca996b1a94", + "regex": "(?i)^https?\\:\\/\\/musiccodesrobloxbts\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7d4a2faead82bc6f66e7f8de318684d7b7fc8837a8f8b244b6cfb61b4d3238", + "regex": "(?i)^https?\\:\\/\\/musiccodesrobloxbts\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5013f4512122fdaa50c2e228f19af89f451692435f27d31142df5048484ce8a6", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13a79fd7dcb885752f26aca82bc86e02272c9f3266401fb98e1cd18cff292236", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ebd62725c7cb3d89dcdd1909bc1ce23fbbe084ae5a822b662f7ff88c0616379", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c9ef541d5ddcefc121384f06e206597783d60d7477122b4b1e71e3845f17f2", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07479d645ffd9f301e5db93461f6c3602b590f3de05961c6e20aa0a890eaab5a", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c5a0c58a5c0e2e631a4eeace82c34174a657e712cbe003070f93cc885c3edde", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0337b9d1d13b745ef2400be78e94ba99cc463692f43c9302463db30f810828d5", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe4acf463a0f15a674c24f110e9cee884d235c2bd508bd5da4e0b9200c310f9", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1aeb371e030069b18874857dadd86f7fbfa96073f9bf3bfb36dde35a377e82f1", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ef2b87d7be32d2d9c762d80c115b82cba526986ab6ddcd880152aea5c5540d2", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a31f1af5262353e4ebf2f31642c91729d7d35ce756443f2b61f754fbb0691e7", + "regex": "(?i)^https?\\:\\/\\/ww1germanflagdecalidforroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a142e3f81ff78e86eedfb13600531263c4eaea5fa4bf5e78682e0abe7c54f4", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxilimitadosotrojuego\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b298cabd6381c33b4a856e2b7fe6948855692c1432ddfebf724d23e38cb1c3ef", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxilimitadosotrojuego\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb7c910925e6c2f78f1d74dfd2b99ef2beecf7f3da9d7e541905cde0041304fa", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxilimitadosotrojuego\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd5fffd1ac41c748a9a629d64fd3fcbd1de662708cc49b55d80922ac9f38a612", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxilimitadosotrojuego\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea839e32e04546ef1e916ad446305d4053ca4dd552ef9083f897fa24f5227828", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxilimitadosotrojuego\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3068d60e62c4f5febee2eef4a057171685caf8947ffe97092fad0fdbe420dc9", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxilimitadosotrojuego\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25155a1f4d4dfdc846809981d81e1f40d9d6a533f9b3434b06f96178914987bf", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxilimitadosotrojuego\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc9300cca6f7fbd4d8f2ce909c09d9b123c0599b8432eb26f57440f5a8e21e57", + "regex": "(?i)^https?\\:\\/\\/instalarojogarrobloxagoragratis\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "323c5e89a22ef9ad36b9185b7b13233895309445f653c960acb8b1c38174886e", + "regex": "(?i)^https?\\:\\/\\/instalarojogarrobloxagoragratis\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd16d86a420f293c7341efb4d452632118a948720e1b9f06be57b8b8ce76d544", + "regex": "(?i)^https?\\:\\/\\/instalarojogarrobloxagoragratis\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d11a8216f7a1073957b3e9e64cdda91c2ed16412926e13b69e1b1cacc5082d2", + "regex": "(?i)^https?\\:\\/\\/instalarojogarrobloxagoragratis\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2035d5803f04dfd5022a056b0a4165cf86444e87f6552bb1df4f70a35a772304", + "regex": "(?i)^https?\\:\\/\\/instalarojogarrobloxagoragratis\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efced9156ae5d2cfc90000d65d76127641b217efa04aa5e9115097c1aee9a5e6", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxgeneratorplacedownload\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "973e72d3cb56baa274031592a1f79fccbd40554885f30f73b73825049b1f288c", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxgeneratorplacedownload\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb5eaedb185d8bdb8793b3d2cc03980b688c752dde0bddb921ecb62959004d58", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxgeneratorplacedownload\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb40686df7b228411468e986a6a91c4ac01d01281c18b276daad34ec8014f2e1", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxgeneratorplacedownload\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcfb640142f64100b9daf3a270e2b65d8b798f53a159e824f7a7bac9748800f1", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxgeneratorplacedownload\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "008d9ac6de749142e1331179318f0129a138a82ea6d235b756e3906b3d96d825", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxgeneratorplacedownload\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe49bedae5c8c2aa8739b74483caf9e45b9516c5869fee10dc97931437aa622", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxgeneratorplacedownload\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c373c096f1b30d33c66a001cd0486a56fcc290e82f50a1f1488c96ce8437ecae", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxgeneratorplacedownload\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0b61828b644625eff535bb0e8bff120e8f9271d2c654bcdc01e6ffbe260cf5c", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxgeneratorplacedownload\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b90def4d0b4a30d00c956cd94b8f6b219d142626bd4c6f2a678d4955a1001744", + "regex": "(?i)^https?\\:\\/\\/comoconsguirrobuxgatisnoroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68164c094f13b2f2a7ada141e96ad5d2d24f04ada7399c6f37d5fe31d7df57e8", + "regex": "(?i)^https?\\:\\/\\/comoconsguirrobuxgatisnoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57b1b97a092f557e74a05d90e0cee799689370ad09ad718c5f77ea3a271b627a", + "regex": "(?i)^https?\\:\\/\\/comoconsguirrobuxgatisnoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "999eff6ae1d7da135c6568b1423cf2ad2ee92bbb4990aa035649dd5fa29a7347", + "regex": "(?i)^https?\\:\\/\\/comoconsguirrobuxgatisnoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1726c535e0e96933fb6a2894b294169999388c7c562e5e07b24573e427f97baa", + "regex": "(?i)^https?\\:\\/\\/comoconsguirrobuxgatisnoroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6872b4d0b98818dbd805a175b35aa776e72d8f40cd0b406065370038d84747a", + "regex": "(?i)^https?\\:\\/\\/comoconsguirrobuxgatisnoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9b9f3dd7ddcf42f1ad390a76b4e0382812c71b819d362c30c831b707f1516ed", + "regex": "(?i)^https?\\:\\/\\/comoconsguirrobuxgatisnoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9339dc12203fc663356b5ba949c143266d56fc9739c9c5d6e0df5d3aabc76d0", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c84c152ad837d005fa210b1049687912eb8670d772089b3a0a3015c5a9105b", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2fac22767cff3636cdc0e092b8368c59ba2ae95d94b418a9cc36ecc1bc41acc", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc0ff016c04de1bbdaf932abc265a6cae8f4ef4fa3f14a61c7b42badb814c761", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce1204e5d15f67d106019cbeb1f2398c27f861804e15fa4b51d7e1aae8766bc7", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a60109b34420f439558b0ab88ad911fe65e75182b426e7df816cac106b60ea47", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e2dd151bfc972fc0fac444d00250aa7135a26359fd86c740195ea68909951c7", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5922ba4a414fe9930db1402db1d4bb164ad588a0eccb541451fa4659e66ba00d", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99fdb8897ab4f868653b242016a461b6a21c6d7267ee18847863627e214699f1", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b1395861f6d95a514c1ba2bdfadfbcbf6155f20cd8a507f1f0e5b3a0f9b27dc", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0c04c0cb650e63568a6d0cd2eda76f52406f55d3b30420d60071e3376b803ed", + "regex": "(?i)^https?\\:\\/\\/coderobloxsurlejeubancktycoon\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "054d93e8a7ad84798d227e1da6d40009515d2512db19c95941cf081482b2394a", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "593bc9d908acc16fb7bc00c5d78ddb95157eed1210ea54e039be7dbc51eefa9c", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4762175e5d081f4d89f2f7aa434267d90472bd16c2f3ea2379e0c6897a8b697c", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f760737939077d01cc4bd0cb341f4c06e7ff628b4148504782213fbed87c43a", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e75523f1b3a4f9b9392717cf647c66271f7b735536fc17d61e616577b5afab3b", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2628f18241d28e7e2bce92043a03b947ab17b3325e060fd15c3dd51ba2605c4c", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8efe3a6af66b20258f93f07044da9a9a4bed8f2199fdcdf20f7637dc69d2a7e", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cfebb6adc38f1af226c7e7f067f8a3ebe7dbad087547137d8c286134a783173", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5c2151ca847ad3e62df5c9e5db51236b767eed93890b8a4e77ba7caa93ecd0b", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc9805a3d51c556f354c0a8392a3999a96f31349ef709bc62cf924d931486499", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b61cdaf0c3639a330b5efaaca533556e1a69c7a230e8c1cfdc73319e2e6ad47", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b34cb4aa74ff0f4152aadec78178a29e2ae4d9a70d64aa8a7da61ae1c6380037", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a2dd9ca3e64a776de0a322d0f51039427f0f2c747f98f0fa9edea035d45bb97", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef1bad2c26e41da907735ba1b3370a19b75354a79cd21e49a5cdff226aacff7c", + "regex": "(?i)^https?\\:\\/\\/hackspararobloxdragonballfury\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4cb38f83856e377f7977b4ebadb02adca665631a9f4ecaeba32d749c81deab6", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c5da047fefed26a0f85426238ae237e5cee9a6f21103298d302d9e043956c1d", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e300ab87f0b5c482a5a2763925dd448b79223c472c002dc8a3821faba72165e", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07b10b5ffeccdb69bd792b55d3c4fef4ea435d60594dc5708bffa1cbab3df446", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8927305aa4fef12f81d13f963334b17e106eb36a2a16a24df78d26bd0b3cfff5", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b66a6beb7ee41f00f371357d2c1ff382375ba3eaf86726bc023000554e795d49", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1fa93703cb8d2552361c9e58ec99206f62e7c105702dc968c21f4168ad6658a", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a994f28696c723c78615cb513de50031e6f4bd292ef5db8f825e88b5f228cac", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe4f7a14272a63135b4c8b88bdf731597ce5cf28b57a2a95d41b008629f7654", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3915a68a190392b0f4bc57d26e8972226a8214b13f1983b35722778323f3e9a", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b9e32a185d2dcde06b2a67cc2d6d960980bd4b7084370a4b47ecf7cd9d93ab9", + "regex": "(?i)^https?\\:\\/\\/thanosrobloxface\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "093a4fc74514d871d3fe30d9bd1d18c47b5a7d4bb0dd89ce8e6ab1128d280568", + "regex": "(?i)^https?\\:\\/\\/robloxtemplatedownload2019\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b839ea0710a0688679d399b6c8239464e5b111602032a4f514b0c5d80e5e917d", + "regex": "(?i)^https?\\:\\/\\/robloxtemplatedownload2019\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae6c66353164c7ea7b165e967990ef8f81ab23b8332b0e89f03fbfeba3219bdc", + "regex": "(?i)^https?\\:\\/\\/robloxtemplatedownload2019\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe235b45cf82fa9cfa8e334dc8a0a59bca066cbeed47cc3afb2f35010752b61a", + "regex": "(?i)^https?\\:\\/\\/flamingorobloxuglyface\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80e0da95390e7bfa9ed2420cdf81018a97f038f6a6f57d07955f9f23dd6fdc7c", + "regex": "(?i)^https?\\:\\/\\/flamingorobloxuglyface\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4a40ce7f698ed133e139fce11467b2208b8ab80e1d9990f349a8e4c16f1bda7", + "regex": "(?i)^https?\\:\\/\\/flamingorobloxuglyface\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13a2efa7f98c1dfa97204428a682ddf2c076c8ea802a30f3ff328b9ee53e4680", + "regex": "(?i)^https?\\:\\/\\/flamingorobloxuglyface\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "586b69792fdcc766c178b93639bc93ba10c067bddc0756f8cb174a78fda90c88", + "regex": "(?i)^https?\\:\\/\\/flamingorobloxuglyface\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efcb9a9550ac84847b30a3431611258d15030391f4d9df20f7836b955982cb37", + "regex": "(?i)^https?\\:\\/\\/flamingorobloxuglyface\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "966b63b4b5ef6047fda16ad210348d2a87509795639ae63708dc851b616d8e50", + "regex": "(?i)^https?\\:\\/\\/flamingorobloxuglyface\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53d726eb4f1e5c6dac1604b24c0a49ee7c232f39e0ff36a21ab55973f1b7dd4c", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f29a5aab9427e8e3eaee0820f7de67ae6a0a9669534cf4129f6babdb19a487f5", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dda070fbe16f8dd6c143c7676964cb2685dc84c731487fe0f2793de0bb65b58b", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d55df1cddd61d988f648a6ab22ea4a2238f5c5983e38909956cbdfe7990df0d", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "270420849bad5be6aec3cb88d23e2b8f03cf4dc715b3200f24e21f9e9a2ab5f5", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d50f78aa6a5736b70a8a85a516314955631adaa0beaf2bd5278d12b2ac876c1", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4217553e784a1900cf3d0b734458c9a3587e944b7612078bb915329112cde449", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f57e9caa04e1281851fef3bcfe733768ddff104badab490a0f9180b25fc1042f", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f8d21ac5b46145e0fcd769db303bdf047719eeecee2e130891bca9f385b773c", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad4725d57886bf78ddebe00759a6e6ac389d1d96f5a1a1f2f50b8559544d9628", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c133b9041a1399de9cb7770340c90f945966120d6ca5815a794b066616c46a4e", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9469e4ae3762a1e9c242a6ce56f9eb7d50fe4db9285ec054d8df08a2130c8182", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d122f1365daf64895a1d56a1f15a8a9fb6955bf0c0ef2a59b3bb3249aed49fd", + "regex": "(?i)^https?\\:\\/\\/robloxegggame\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d0261d99535f084fbf8f64fcd39b8be187dbec8f9c11e22ed91be626e9fb633", + "regex": "(?i)^https?\\:\\/\\/subcribtorsegasta10000robuxenmijuegor\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc8939bfd8a7572bf3bc8979f52828c1c8b1d0ef1ac82bf239ded450a0157e17", + "regex": "(?i)^https?\\:\\/\\/subcribtorsegasta10000robuxenmijuegor\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdbe251d14cf3554277ca8653028dce3cc3ac1ee4f2ce3e0f2a0bc9fea412e83", + "regex": "(?i)^https?\\:\\/\\/subcribtorsegasta10000robuxenmijuegor\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cc1cf78bd9586c76a17ffcb2fbd10fda9ccbebef49fc3d154e62f065d0380a7", + "regex": "(?i)^https?\\:\\/\\/subcribtorsegasta10000robuxenmijuegor\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25ffb8ce839ce0b4ba7ef39f290022fcb76d254cf27b3de59fcf2722f07190e7", + "regex": "(?i)^https?\\:\\/\\/subcribtorsegasta10000robuxenmijuegor\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "324ee4dd527b0edd92d11d932ad58f1c64f4e989183c34f478c941e671ff21c8", + "regex": "(?i)^https?\\:\\/\\/subcribtorsegasta10000robuxenmijuegor\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ffff956674f6ee46532c653aba7d2eb778b88ef3f2b454f0a208977115e986", + "regex": "(?i)^https?\\:\\/\\/bluehairrobloxfree\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7657d4298ae618d61127df58e21031d4b2e713c823c6713c1254dbae70b418", + "regex": "(?i)^https?\\:\\/\\/bluehairrobloxfree\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d4296eb7c27342e7e156084f41dd026e5ea2ec658ba4bde01009e8f26a8c7d8", + "regex": "(?i)^https?\\:\\/\\/bluehairrobloxfree\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37ea6106ddcd230af3d8ef5ea9299cfa918360f6a1d3d27993ed94888f5be5cc", + "regex": "(?i)^https?\\:\\/\\/bluehairrobloxfree\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e10b6bf338439509751fecde1166aed45e0b34b528aaba2eab8772b4100776d", + "regex": "(?i)^https?\\:\\/\\/bluehairrobloxfree\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed44c1e4f6402893f2ff19e81d60097f8f271b5f0a224f2cb5aa01f385ed363b", + "regex": "(?i)^https?\\:\\/\\/bluehairrobloxfree\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e7e6ae4b6176822431b82ce1b7928c25beab76adb8f8e585499e6942f29e337", + "regex": "(?i)^https?\\:\\/\\/bluehairrobloxfree\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14cdea92deafa618059623db5a9383a1af251b8a6a57960ceab85a95fa2e94ef", + "regex": "(?i)^https?\\:\\/\\/bluehairrobloxfree\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03cd2fd52edaacf062d054efa849e15bb8d401f56df147860cde4831f80c3074", + "regex": "(?i)^https?\\:\\/\\/robloxprisonlifehack2021mobile\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8ca6b2db8a4785bb358a20b6c33a626929f2f578a62730800c5ee6ca5c41bdf", + "regex": "(?i)^https?\\:\\/\\/robloxprisonlifehack2021mobile\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc8b940bd0eaf2a30cbff6cf94f9eee5ea196f4b6a8d67e8e9050fcde6800818", + "regex": "(?i)^https?\\:\\/\\/robloxprisonlifehack2021mobile\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "776000d417063a43fdabc623d649f3db6c66cb5c4c8a708148c1541e08c9b999", + "regex": "(?i)^https?\\:\\/\\/robloxprisonlifehack2021mobile\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00fdf45db8d4f1d66cd078ec1c3fdb42e83f170af908424b1dfc1940b6f56547", + "regex": "(?i)^https?\\:\\/\\/robloxprisonlifehack2021mobile\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bcb012cd787bf165db302dd82669e32132d3a1507b29e7099d3bf2cf9f11186", + "regex": "(?i)^https?\\:\\/\\/robloxprisonlifehack2021mobile\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae824c9b48976b74dfe8287396c9e65714a5e41547c4708914914acc5248e8e3", + "regex": "(?i)^https?\\:\\/\\/robloxprisonlifehack2021mobile\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2faafe496ec6797c55890fab0f3da3f53ae172ecb922154290a41318b6fa548", + "regex": "(?i)^https?\\:\\/\\/robloxprisonlifehack2021mobile\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9cafefd586ebcb2d78c2bbe65b1245222e89685ffeb31a72fc7cddee32f5d4d", + "regex": "(?i)^https?\\:\\/\\/jogodedistruirtudonoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "549c169c541dfe79731b8649b48e61863722238a9d99e02d144921123fd27847", + "regex": "(?i)^https?\\:\\/\\/jogodedistruirtudonoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658ce82d18b293d23fb09423315091ed96e9078ec7e2ffe511d78aaf14d73924", + "regex": "(?i)^https?\\:\\/\\/jogodedistruirtudonoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a442b2d4c188e417e5b40886608cd8354c3081b86a7ca3ae09c1421c020864e", + "regex": "(?i)^https?\\:\\/\\/thefamilyfriendlynoosesongrobloxid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2f28dc18cf1e008f5d66fe09a47ee51f2c261f092bd2a245d165bf5026b2bcc", + "regex": "(?i)^https?\\:\\/\\/thefamilyfriendlynoosesongrobloxid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0517a8d9db30e94db65dac3466a5ec29520b1ad1b8100846d523df1b532d78d6", + "regex": "(?i)^https?\\:\\/\\/thefamilyfriendlynoosesongrobloxid\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63cbfda370d1e87d22d24523c8f6385ee8828d75dda2a9cf60c9f286ee1cabec", + "regex": "(?i)^https?\\:\\/\\/thefamilyfriendlynoosesongrobloxid\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b4323700d492d8739760e9a255134591e6435c21dcf4b7b4607f18e8a1f122b", + "regex": "(?i)^https?\\:\\/\\/thefamilyfriendlynoosesongrobloxid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24fe4b0d408fb9d9da6936ee73f137241d9b1e47d332c91a33b8a05211641994", + "regex": "(?i)^https?\\:\\/\\/discordrobloxcondo\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5536d05309bda2037666be61189ee99f0f0cbc524337b412c23853e40dbedb7f", + "regex": "(?i)^https?\\:\\/\\/discordrobloxcondo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2789f79fa22a9c75de2af32f7ecab0dab8a1b09f94267d4c9f1a959b16f3a6cd", + "regex": "(?i)^https?\\:\\/\\/discordrobloxcondo\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffa29305e73d35733bbb6f0afc0b5ab14f3f726d8bbb2ee423da69382e500b44", + "regex": "(?i)^https?\\:\\/\\/discordrobloxcondo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9516b22c6e72750d06cf94036bef644d4ecbb92edd20d4fb0dd735e7835f3ccd", + "regex": "(?i)^https?\\:\\/\\/discordrobloxcondo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60e9473f3f2c4761ef8b1311e7c7b21d8e8c5044061d1f84a85f4e890cde95e7", + "regex": "(?i)^https?\\:\\/\\/discordrobloxcondo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "faa489ea016c048a74d2a9a30426c6c0a7113fd14704467d7f6d5a47624bbb10", + "regex": "(?i)^https?\\:\\/\\/discordrobloxcondo\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1aae44c7bf87543ac42b4e024368ba056867fba0f3da82f05488bac96a5f2e08", + "regex": "(?i)^https?\\:\\/\\/discordrobloxcondo\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bb94cbeaf25a6df53ab9650b0cadd5c65fb2ec233c7646f062df22aca581601", + "regex": "(?i)^https?\\:\\/\\/discordrobloxcondo\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdee84364ef98178184077e2f8e519babdd6cef97acc128905927dc7dbd25e4f", + "regex": "(?i)^https?\\:\\/\\/howtomakesignsinroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7173aa37a17abaf1c4d97df3ca01dfda7e9d4fc65b83da9d9a6d798d92e0033b", + "regex": "(?i)^https?\\:\\/\\/howtomakesignsinroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "287fd5e0dcdcb145e2e5a9f8cff502536b17aabede1c2d8237b1bd55d818c7a8", + "regex": "(?i)^https?\\:\\/\\/howtomakesignsinroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "555d382bc3acf7876163756845fff0e15599fb5a14f6c8b874027ff9438c2040", + "regex": "(?i)^https?\\:\\/\\/howtomakesignsinroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "818bd20d610e706cf15b58474c1b5d3522deee19b438a7cb2c7c433485e030ac", + "regex": "(?i)^https?\\:\\/\\/howtomakesignsinroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51b891995cd44bb7b4cd7bf0de6b194fc18d448cd13a4d49e0a3c02d237aedaa", + "regex": "(?i)^https?\\:\\/\\/howtomakesignsinroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03a24cd48c17db3c6bf44dea4db4849540bf5253c64e298ba8717e70c3fb49f9", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodesimagesofid\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29ac3eb2625073a1120eb838eac87017807c646c02ac2d31721040a30c5613c8", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodesimagesofid\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cdca6ae3b9b6976257335e3d47e823711d12af9302a54e95e6e9d3671f76512", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodesimagesofid\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83c4e9145549630671351bcc34e18b0a71dd90fbe99f9e259de984325c7c5382", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodesimagesofid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d553213d939010317aa777baa20269200135fdf6ea7dfe63904f4285c152e79", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodesimagesofid\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da8d5f5fad7b782e1a1455b2b57456e812c1dd8a24e48ae1c69a0bf032517d14", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodesimagesofid\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8581c2fe879e083965a91e7679dc0d4094b9da717476cd63fbd15ed4623d1bda", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodesimagesofid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bfe9befca930f10f2aa395aede22765c6e455a44ed28f3673aacb2f5527c528", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodesimagesofid\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fba7d4c7654e5d01c7699fed59a61b534c6d3b7f85fc029e7ebca1dfaf8be14", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxcodesimagesofid\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bf6a7d19c2d004f6a3ba9c06815e5ac107d15c0cb7c3ce798009ce1ea0822e9", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bd17571a59afdafdd6c31a07a54694648f89cf82481de3439e6528559750bd3", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aad0eee0efaeac0eb2782209bf854c7c1d9bb9288b1dbecd552709b095c9de8", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "164a4275dd30c040004341f3e61c7c489f12253dcf58f9ae2a72a26bc3b59a44", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "080f712285bde62dcbc6188c054ac9cd6458d916da3a55d57cc1a259bbf714c6", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09444113e99b9060d8e4840fda2e34889cc7a8beec212afb98165baeea6a2063", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07d275a5df1eb2e69f4cd3f88b0bd75438c25766cb85eea5e5864faf4e52145e", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f4d1e995d6980a1087dac833565de50d42c5d6c7ae28da44dad331a5ea691b4", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c0c9083bbc11a9448e327b7d44e10a106429ca8e4aaf49de44af979ea3f2fff", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "631abe3a01237000ca2edc83dd31d4d972551cbaced5de09e97015d3fbbefa7f", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "180db0b39755cb7fb6569ebfd80d0add012a92aa9c99be49ab2c02b966bb8ec5", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dccb8572221f09dc47fa48cf5e891cb9c2240ded82081306b901c0208a48f2ee", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aee06a02b104ce197e4a62ae05eee1338807512721423d1424eef916af0a8d9e", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386211072947efe35939372b2599a9253688bd0cbab65dc0b8362bc2f8c8af64", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea8b1b53de4680ecfb869e7a613ee90add08508075b7937d204de3a8afc84a33", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "886d0f1715bcf1318cf2898220cdd2ccc664cbb6d4abfae1e8f0fc110a57e9fb", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e71af6be337e4ee69657ec5a644a4243035a28af09e2664b92d54024dabc4274", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019robuxnotexpire1\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b481238c56793fae78fa2a15751838cf573585fd2e5cd4313a8867227d2581f2", + "regex": "." + }, + { + "hash": "66dfee60e43ca42b4938fe87a00499a8e7090466fc546953a5da2f9945308da1", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7413462e51948e32f4311348077b6da6ee6dfa7d2a183e5d6fda5ea0f12cbe98", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96cf8be26bc745d9beaac888e76fa17dcd326dda43d7c64d9514011632ee897e", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e941c46b4049e5c95eeb7e1f770f563ba8e35faa32468ba812d84957b2f7aa91", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1a1f6d2470f3bb2af1daa12c7d7c4418ef324c7a3ac9af8c0d19acd81c395f7", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50e0b74ba2f3aa3c8f20b8560bef829f165486e1dbddab315fc604e5cdb1deb1", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2b1d8d32dab7fdf0de7f27afb1483368861be0625969986a88928d1f7719d5f", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "517390ef565ea8e7290f07740873d4cd4aaac356790f423b302263307f6a7416", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6db89c9273d961a07c8103784f6b90c0896ae73ad30e01e1619189e6fbd905e", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ceeb1410f778d3b5608322a16b26f74538239b722736013ad4c9868e13c29f70", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "558d1a8d1b99bf217360a5953e615889cc82beebfbaac718b032191ca920f224", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbe798c1aa51a6f2ee47636a2ab93db3774ff8fbdf54390cd5c8f5fd541fad15", + "regex": "(?i)^https?\\:\\/\\/robloxbeyondcodes2019march\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e82de0044f0e844033f1e1c7697bc1d958cf9c0c3ede68e235c8038e9a95bd44", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d058dc9a1808beea6c4ade83fca4eccc5464ccb079071fb2fb32c68a6ad7c0", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57119e3d8e336c814863cf35490b56028262fc23603f631821e827f336396916", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cfa01ca1fa49752ec4fcc8dcb20c24d84ca28c571d773724b48801318efb6d9", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7e0a0bcb8cdcae1500e2a0021cf222c9fd4d3e77d06c3067dcd439b80518259", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "984bc80b660dc4db6c7a75de879d946d1cf9979a28b9262a029a019d6c198618", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "112d3000e01ddceb7f13b1c40d32ba91dacc799163fd715db6d8ad0cecc2f8f9", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad1bf98172b28852089362fd432d795f28195d8ade7837ea0a2054103e084ebe", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ffe08f20e1d2c2cd71b5225bccaa8e48b0a69277415e6f9db2b41a78c32b632", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9f6cdd2c31b288a66e13812cdea16b5b524be59d5845cdd31f7cd51fd12f471", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a74131c234abd801ec5616baaaec28b3fa2eaef553d68946e4d367b7000fa00", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6bfaf46d664d35c1d624c5dd8bfc22f1cda6120ecc5aa23aad64dfd8a012b44", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9e4c9cb6cd3edfe72ba18dd69fa66e6c0ff1158482143e514a823a9b2c90c01", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e24eec562e0b378e440e36a7ae4ef814476981f8f507e32b4018401a9bdab9df", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54c5ac3b27df6b8092c9369dae7e091ab99591316fd26b104dc7dde5e7cebd1", + "regex": "." + }, + { + "hash": "a66e51ff0f2a16200ac560204508e850bd4d78e19013f1924eb7ee896e28181c", + "regex": "." + }, + { + "hash": "d4f92b0688de70a2e3d95985289da8d2e07736a02833be48bdb3099165f26ea7", + "regex": "." + }, + { + "hash": "86c2147a842afa17251f4b01d20fead6ab301f0eae1b4ca154b7859a1124e7bf", + "regex": "." + }, + { + "hash": "cddb458b7213cfd059128ad4741e3b92f68bb7fdd56512b5519a9cd047e9a594", + "regex": "." + }, + { + "hash": "5858e3ae5089b98ce39a9030ec6e3e3d1bb884c8abbc0a5b803236e80a85ab01", + "regex": "." + }, + { + "hash": "28c13fcb1481ee0dddc33c80437f159bd149309fc7b30d86ea3eee4040cd21ef", + "regex": "." + }, + { + "hash": "626da8357b957dfe8be7a2f9057e338cb5129c4972452fee0ad55db0b74a7405", + "regex": "." + }, + { + "hash": "aa222344a87a95284616831093b1230282606042d084d9d6be730fc83a9fed7f", + "regex": "." + }, + { + "hash": "c0a98a724c7e53831fa34b543cda5b31f233feb49d66cc620836e21e8cb4c072", + "regex": "." + }, + { + "hash": "f3ddcec2c7f35cb863d8701ac6a56ef54c6576484947e31c21eb7263292c4f9c", + "regex": "." + }, + { + "hash": "0c873ab8e797b4b3370a2b45e14c02c4678ed58f8e8173a319df8846c67fc004", + "regex": "." + }, + { + "hash": "ba59994afdc40d005ac8a2baba1b2ca3c621c993c131b82c87a0f5cd4e4f5ecd", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a8f14022362a71ebda14f17b5a410b2e879cb45403cb07e970f9011b66c3b5", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f13deab20e0e5a4285d474f93f02000218487968580fc5f7f3c996622f6d4738", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef908141c73bca03478753606a0004f319b0e59d917631dc07afd2b383306c5d", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a217921924899c4809d482190f783a464b394c1435cd54a93d952adde3e0ced", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae127d4ebffde33442d1476cb95f3b50df4c0efe356ae34785dfb19bae45685b", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acdfdc0948ce90040cb3849eccdd49470a190e987aaa24ea31ea0f0374dd73cb", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "347c567c1ec2e13e632c7467072e2a8e84b56f97047cd12e15c74583188126b7", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82c475052375b3a23733dffd047f56f66fff363dfab2870b416bedbe96be9849", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8878f6c1accb44deeb43493dce8ec444404cc0014194cc8f3f8fcfd21059d1fb", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d37a59a0e0a078305d0e0406ab1873d6d93f93c5be34e730d9d29fd4423a5a", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestsamuraipalaceleg1\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31577b5eddeddee58c09d195e540f0ccc8d2600524dbe8327411cd01d8ff0e84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+MiniProject$" + }, + { + "hash": "03ea9235f1f43c84f7de6358c0ddbd10bf5b774e5ad469df50d42498c87af711", + "regex": "(?i)^https?\\:\\/\\/macarenaloudrobloxid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac5f255b662a849be393a05eebdbeefb00a40de79be6794a547decc0545e1f0f", + "regex": "(?i)^https?\\:\\/\\/macarenaloudrobloxid\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "178d045dbc5acd68302f53b4a84a5adc78a6c35341a0edb737b9c14e95138265", + "regex": "(?i)^https?\\:\\/\\/macarenaloudrobloxid\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "711abba964c22a0b813c6cdabec4374cc9cb3f2a702040921029baf81059b207", + "regex": "(?i)^https?\\:\\/\\/macarenaloudrobloxid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75621371672ef12f1ab38b0365b2e8fd202711a7aa80b1248d302a9879f75190", + "regex": "(?i)^https?\\:\\/\\/macarenaloudrobloxid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "202573f7df8307acc7f311b376170dd2ed02d1142c8c62bc23fc2bf468a5b86c", + "regex": "(?i)^https?\\:\\/\\/macarenaloudrobloxid\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35ed747de22aa056511b5991c15db9f35e7efef1fba4247bc40a1e25d4d1cfe0", + "regex": "(?i)^https?\\:\\/\\/macarenaloudrobloxid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3789d76357aae1d89837159261f70afb9f282dc6cf1807ae8fff244178ff9509", + "regex": "(?i)^https?\\:\\/\\/macarenaloudrobloxid\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d91645b2fb1e688df3c256fabaa42068b0d3a09a62b4b34a8078461d0e6b072f", + "regex": "(?i)^https?\\:\\/\\/macarenaloudrobloxid\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6a49d2e911d63351af674b15970aef7df08a7fab7d2c08d609f60b81f009e33", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c1996cec52e49489013d202a532930e9f793a2dec8110918b7c0da3882e7e4f", + "regex": "(?i)^https?\\:\\/\\/gnrateurdecodeforroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6375c1e422ae0ecd8e4ad698795f272b6e55151030641c7884f85bf05801ceca", + "regex": "(?i)^https?\\:\\/\\/fantasybazzirobloxid\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96e8ced0e9e282e231c1280732647856ac3c44b81b801144def4e801bf40d68a", + "regex": "(?i)^https?\\:\\/\\/fantasybazzirobloxid\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2788b38ded92ba3224a2c4a5a3ea762b9d82a3f4132b8391565243e342f471f", + "regex": "(?i)^https?\\:\\/\\/fantasybazzirobloxid\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bd12190c46bdbd31b812884749c7cf2fe32cb7b346c0d3dce06fe73bad9dc77", + "regex": "(?i)^https?\\:\\/\\/fantasybazzirobloxid\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5986f4bfb71191581b6988940c882b00d4f6dfe9886247e9458e7aac2b2caba", + "regex": "(?i)^https?\\:\\/\\/fantasybazzirobloxid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50d4a3242e91f1267a4f685984e69ae2f2a6ccf5700021977620543d9951768e", + "regex": "(?i)^https?\\:\\/\\/fantasybazzirobloxid\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23492677f70dd92cc72c9d47896d9a45f0d76fd1ab32162cf6fcc27fe39ce6c7", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc60b4511ac9190316279ace188c41364c04b7c7f3388dcfafaba01130f85267", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6e7671614371fb69200b50edd550abb57744f0988ee7080586dc72219daaa32", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeitemsonroblox2021october\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bc224000e86977b4dda5d90419558c54e9d7dde96b3c95456df1c23e177c6a6", + "regex": "(?i)^https?\\:\\/\\/codequirksanimefightingsimulatorroblo\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65d0b5455deafc3ff50c8a829c7466c5cdec290269a3dafb44702dd1f745ae6f", + "regex": "(?i)^https?\\:\\/\\/snakedecalroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ae6248ae74bedf8e3209f043341da964345936e367290012139db436e00c4eb", + "regex": "(?i)^https?\\:\\/\\/rocketsimulatorrobloxhack\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a5736a13018c2278b1b1f7ffb5196f10b89e2e66e1d1a3c247ed9ccec68c307", + "regex": "(?i)^https?\\:\\/\\/rocketsimulatorrobloxhack\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7178c1e45a4fb7e49c7fb5d6d23bdd13521887efedaac56a75f9dbef55c284aa", + "regex": "(?i)^https?\\:\\/\\/rocketsimulatorrobloxhack\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54c96e0e85e3b0a92b979a248257ccbbdf62313d262be77c1e4b857fb0c2f6bd", + "regex": "(?i)^https?\\:\\/\\/rocketsimulatorrobloxhack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "125ee9229a084864c1733e0433bd220fe4e5ea41f7b33e50423bef01efaf4916", + "regex": "(?i)^https?\\:\\/\\/rocketsimulatorrobloxhack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "960fae2037031b0f255437e6b9ef2ed0a1a301258392a2da24d6993ec663c6d2", + "regex": "(?i)^https?\\:\\/\\/rocketsimulatorrobloxhack\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a51360a82953b8d5ca5f8ec0883edee4ee4748a95a51e3ce90b209ebf71ec684", + "regex": "(?i)^https?\\:\\/\\/rocketsimulatorrobloxhack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b8b85b3a67130c99a2c9fe2fe8dfd7077df6741f6d2a083b75b521ebf49f701", + "regex": "(?i)^https?\\:\\/\\/rocketsimulatorrobloxhack\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44a9dd3472954517751737b598e0f8f909f7c7b7d73a9ee8e2c771c5432586df", + "regex": "(?i)^https?\\:\\/\\/lightningdecalrobloxid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e5505897d4246ada456fcb215a81e9acb49a51bda113901bc44172928b0c561", + "regex": "(?i)^https?\\:\\/\\/lightningdecalrobloxid\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b8e2628f67d8830918c3a1480c8aec23a4a7208acd45a43a31e696fb3d714c5", + "regex": "(?i)^https?\\:\\/\\/lightningdecalrobloxid\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fa1b117a299bc382447b76077e9a12c33307838cae4d17bfc67d3bdf60d0eb", + "regex": "(?i)^https?\\:\\/\\/lightningdecalrobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ede6a4b6bb0e48174b3ae8916bf10f6d59e1e79530a81cac11db0559f2737a52", + "regex": "(?i)^https?\\:\\/\\/lightningdecalrobloxid\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bbc3ecc23fe8c2cf64053d5bc9e6ca31824a5c734f59d257779d83d8a9f3d51", + "regex": "(?i)^https?\\:\\/\\/lightningdecalrobloxid\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42dae970724a70996f0a5ae2b2bb585213e48c3bd96adb1dc378348e36d3c051", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c035d7cb2299fb93416f8762bf9a7f056c793fae9c885fd3c7e414102d377b03", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca964c6c871cbf0d4dba79b4ace244195aab6d75ddb0350e69f256e87549c5de", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "756719aabfd97948ab7167fac862cbdc4c62f3fc8f4e0af52f08fbba16458020", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a35afacbf647f85c5e3735c6bb8765b21bf51fb851afd909c2030e7521496bb", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3e52714486ca92fb4a8c297db3088f4c20d237ed31da7b6015790942d02cefc", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d41901806d04c9e443fadc2edcd19f3d1f176d8a5ecb0515dde9d92e02a5909a", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cdd1b164a7fc753c86ec3fc5bb06e8b35a5c5897e1dcd747c7d9276edbce9d8", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5eb959574a3ca918da9f9cadd8e5014d632c90fc13e7c7d42cd59ce5da9d54d8", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad1b361f6787615da6f7980b04fb5988ce56de340d8a1395216b042d871a5710", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c86bccc1d25b799969a02fb17aae8a46531edbdf1be7cc8ffb3dcc9faa78875b", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31577b5eddeddee58c09d195e540f0ccc8d2600524dbe8327411cd01d8ff0e84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+MiniProject(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b896829cc739bd304dd7ce88b4c8039d4ab17fbf0addd38db49e9afa5871952", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c82fb9d42a8d2a45d6cb5158511decd84e0a817178ed743b6fe65670c05f9dcd", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f489bb27d59dce17c540a4f24d20b6e97d2b4a83e7f557306f0598e029d81a2", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "325cc290becbed99152a90dfd819d2e7e443a8b984223bf3b8df2382eae1fc9a", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54c9c3c29e427c3d381826f7cff54fb245bff21770d49338941a3d6bec299fb0", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52725416a31b4e3c6d34ca2a9ed86edead2dda7a2a4f2e1b3e88a100af033728", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c23c95adf8d3a12d9fafdc34e890d67d1a1c24588cc646bdf4d94c353484d33c", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71ccfa01b69546ae77a4f7ab44071e318db5cf9f1ab808d5c5d5b1c7a967f3f5", + "regex": "(?i)^https?\\:\\/\\/juliaminegirljogodedadoroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5e6c2cfa8b0a002c15e7f9902ccdb80e817402fd4c36054988148989f42f3ad", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9a91f13537514be5d690c88032ccb820a738f5674c465db6c8a8511e5d6dc80", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bbd10e74f5947f9a09b2c9c5d1dac2ef837cc31c2e67e8d4e33a934402aaf6a", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9d3fd7320dfde60decb6424d6e4e7a088adb2cb2cef9d8bdd1487108a5be067", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9c82ac4a9088743f8aaaef3090cc6b57c0fc5ffef24399ccf87cdcf138d172e", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73a62b95f553b2bcbb21a72f6ca35a265d62692e04ec5626066220e2818dab4d", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8462a40665a8003bd2916a59cc2e9c50df55614c6abff58d996d317ecc78e0f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8378d47f55f0032e139697a2e1d19b686afe41155b85f1ab62cd21d7d0f53688", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64060187a74a86e3267ef38c971abd3b528f769eee6f8c8f775b754138e86096", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e06a393ec6fb2076e96fbc3de6b4caa752fe27ab8026211627533b3ad54d725", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0e01f98bd231fe15a2bb3b9ffae804b3c5477f3f63ac7c7239c17d083659aef", + "regex": "(?i)^https?\\:\\/\\/jogorobloxmenina\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcebf4d631a7135745ab1ac233407b11f9d43123732caffb4f2e536dda1dbd47", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9622b78e4bb0b633c444e51b9988e1cc2cc0d62a67a9f609e5a34bf28154b832", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5123a9146accc823c712f1787d88152ef526c1e1a379f8946fc89435d3697aa9", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ba48b91df0daf6b67f319b83e10da89ff1b9b4815077ee9370baf2d7a47fc06", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6daab3b7e3b9388bb2428df63141cfb13e767433f4f48f92a05e6614b261d6e", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b49048c83691576a70347c482b964a0c4c060400e862175f78b93d85f2c37265", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f9d1878686e29ffa9bdfd7767a4e88ec3be12df3a5f6168ac4ca71db6b9d13b", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae1fe554f97c539928bfec0c6c92cf652cc2a80e525d0fbb90a767f4519d45d4", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0187d6ba1e436439fbc71e4b96622f6b9637a6e8e9bc390540698fe456b8d256", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "230180983d4b6693f8ed5004ff407569e1af4d03dda43557b3ef13c578d6291a", + "regex": "(?i)^https?\\:\\/\\/howtodonaterobuxonrobloxwithoutbc\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "577d8cf713a2b51e36f23876a73d5b0e8f77d234ad37691adf82bfadd36768f9", + "regex": "(?i)^https?\\:\\/\\/robloxtalkingguesthack\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04cb98b1d7012c02f13eb03a731f076206e78a976a68f24d9750549f788ba133", + "regex": "(?i)^https?\\:\\/\\/robloxtalkingguesthack\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb2f39a70069f1348887f7eca1b312bfec70cd74de3e91dbf89140aec48dc312", + "regex": "(?i)^https?\\:\\/\\/robloxtalkingguesthack\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85f7520151ce61f8818d5cb3fdb816a595c1ba07d178c77def84b4729fe34bd8", + "regex": "(?i)^https?\\:\\/\\/robloxtalkingguesthack\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87de3251493428ddf0aefb13011cbdffa4b107bbf376ea01015634efc35f3100", + "regex": "(?i)^https?\\:\\/\\/robloxtalkingguesthack\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7763c3630a69833ad44be257681ed1d69302148cba9a7d5b31db7fa2ebf21e0c", + "regex": "(?i)^https?\\:\\/\\/robloxtalkingguesthack\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "795481164b81cae618b59ab53dacda23d3de2c5ffa79b089f606b727b2d4d04f", + "regex": "(?i)^https?\\:\\/\\/robloxtalkingguesthack\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b8678e7494d579c30ec3adf518dc09a38544c8585ce4ba3db89ae2859de753f", + "regex": "(?i)^https?\\:\\/\\/robloxhowtomakerobuxwithoutpremium\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "095854672b85a4a34445450c707e8102a8f8dd97d2217306278031812e45acc3", + "regex": "(?i)^https?\\:\\/\\/robloxhowtomakerobuxwithoutpremium\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ad5dbb81de31a63fc96289a35bda2511e6b98651c913bc972de04d9ba75a0a0", + "regex": "(?i)^https?\\:\\/\\/robloxhowtomakerobuxwithoutpremium\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30f7b4144b7eb81d9acbed3d5f69c798c3e2c1020d37cda3554fa9ffb60faa28", + "regex": "(?i)^https?\\:\\/\\/robloxhowtomakerobuxwithoutpremium\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6d7f5e264309791b4eed3fc80d320cab4c872df0c74bd3e50aeb561aaac44c4", + "regex": "(?i)^https?\\:\\/\\/robloxhowtomakerobuxwithoutpremium\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "738120293e9829183649c9aa3a579ea503ab648b2fdd987c4147a52dbe4f093a", + "regex": "(?i)^https?\\:\\/\\/robloxhowtomakerobuxwithoutpremium\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "259f3572c8d5e4132c5c1e69d8f02cdba1dc07bc58d8497d4e15a4269e31e57d", + "regex": "(?i)^https?\\:\\/\\/robloxhowtomakerobuxwithoutpremium\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a220f3d558fb755334219d893e4272cd62e34ab005edb05cf6193de3638b402", + "regex": "(?i)^https?\\:\\/\\/comousarhackdeatravessarparederobloxj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3512f9a184c7737619757f15abcfdd61f87efcc912186b8ae3563315369f72ee", + "regex": "(?i)^https?\\:\\/\\/comousarhackdeatravessarparederobloxj\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "329d86ec3896667c4b1d380e439aede8dba3e5d07f480fcafc0b2a5cc1bb2792", + "regex": "(?i)^https?\\:\\/\\/comousarhackdeatravessarparederobloxj\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1af70e0a9e95d6bbbce09fda76fdf6eea7debfb6d8191ce1e78a8f3cac5bb46d", + "regex": "(?i)^https?\\:\\/\\/comousarhackdeatravessarparederobloxj\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53090ad0404399d033f4e8929854d0f732e3185fdcc7bd63c46d02479b668409", + "regex": "(?i)^https?\\:\\/\\/comousarhackdeatravessarparederobloxj\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0c50b5519596377619762950e2152b9bc56787210edba2402b6cac651c24da3", + "regex": "(?i)^https?\\:\\/\\/comousarhackdeatravessarparederobloxj\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e10e5824e1a761d7c65ece0d5f6d2fd0d2435f2cfda192e06507eae39a9486c7", + "regex": "(?i)^https?\\:\\/\\/comousarhackdeatravessarparederobloxj\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "967ab2faf3c846b908e7d985418e64f779caa9f84fa8f216824fafeba59d9879", + "regex": "(?i)^https?\\:\\/\\/comousarhackdeatravessarparederobloxj\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df89603db3d98f0e958a78508c11a7a2c1ea95ef42a83719949f21080bda02e3", + "regex": "(?i)^https?\\:\\/\\/comousarhackdeatravessarparederobloxj\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c4468ecd75feb6991ea7086319b863bd3b34bdb4f953afbb5f346e0db768fa1", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f80096e9d8ec906df51b9c75529e9a3a623c3b3d62e08dc7d76ab7dd4769aa74", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13be1917f421b989b4f659eb9d6f7000bc4ee0f5829d8fe14a1263ed751e929f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9847eaa1b3c7f4ef86b5beb01fd7ae6688c59a31ecbf223d258aa762c6535da", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d7699a4aca3d4cc8282d9d4de3e1603256795712e36fef5061bdc5c5ba4a4d7", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12e0252aa6b6d3eac3708d2f60fb2ecabaf854e7daed34ec2a2fcf05f5ee7e2c", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fc447fa805794a760bef056ff65ce1b8fc584605598dfac42016582e7a3ec6e", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96b64c2f16ce1bc9e27b2a68d017d89c2f559d242547022fcff87ef6e4a84c09", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e47985f798afef3a02c3809c7d610ad97108a2b80f71c1f18c1abf7f670941c8", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11ee334a85954d4c825527ca2d19a6fca97618262d3c6c088ba4fe87f1f9c5b3", + "regex": "(?i)^https?\\:\\/\\/jogorobloxbaixargratis\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec18798b0308dfa1ed3e4865629dde581bbded15a18068ca7e755aafa9051283", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af84fd82e6a0202fdde5de59def2ad2cb268c13acdf8e795fc181507f1b2f6da", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2d362eb19e565367c9bc2a8db7f5605438fb997a008b6645439842578838b7f", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d34957914697f0c5a0980de0fa85596387b4b5ba3285f0ad506c13e8576178cd", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31715c600a92791dc0b89e9c479e26ad8092ea27bfe704caad86e970ade7105e", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5994b37f90e7a3214dd463de9a8562274ae80edc1025d44b62f484f71f72e943", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ee7c6e11cf4c634ec203552d54167d6dd7fb3f1d10732a0a29014e19b2717d8", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42e88afa4b4000802aae5e8e12234b7163b3d3d0cf1586c5447dff1c9973a393", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84b6081fe057abb5496f1a6f914c282266fe727cababc533ac2c29e09658287b", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4822f2829e5a1409cd8e392c95a86d70a60d8ca5ffa02adaf67ddf16cd7a6f5b", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddf248f735502ad8aeb85430be11a3ecf20828b99e0b1f8d92bb706dd99c13bb", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec8f95b31aea3bea3916227556a7b69abe4c1f95befb9f5a008e0ff8d32797a4", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57d643db30f8f7ddb61a7309bcf3f2cfd4058be69f5878e50d4a262e461037a1", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2e6ad73f081a3a35d35b3b05736c4ecbf21cfebc1e3bb6b22fe6bc74899b39e", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10a1ac0478b44401faec884e3cfd28c313cc4ab562b1f7ff36bf47985866e841", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3e9d6e4aea6cf7821564da7cff1c94fd6cf9248d77fff6f23e0be53ec7210db", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a798e1ac8fc0b3dd88fb9200232717b5f6b2a2dc33cd69f05c7a84156823b480", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aec2bdd031beaf7ced48b43878662bb0250ee7668b47fe0cc336f486aedcfaa8", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6a44824b15755caafeb2c3ab6bd8fede0457df266ed21419b6f71b02d22c497", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5064a5386d6a54e1ad86155b5951c152a2d67c6d0a4e8f0632a1a59164488b81", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d05cbdd46440cd137a2727520d0ae6869baa07775a11902d7de67507b9251289", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa9c7fd6703f7781f6867647f3c6677c78e1a305f8a13d21d1f6fa1c17727d92", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "145b99a816c5b4d602fc13d0f00a287bcb9b8d44f67b7c28fd4cba517b80a981", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "065e7f28a30895a46a498916d5693eb465c108d0eb8d4b354dfeb5837b0df61a", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a756cdc7dcdc823ff33e988dbb039cbb5c7e4ce27847d9b0b8cb76c800a674", + "regex": "(?i)^https?\\:\\/\\/robloxhacknet2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae0009d9da8bb847ca8421d1a3f87af46a124e8a67a681888f867ff43badadd6", + "regex": "(?i)^https?\\:\\/\\/gnrateurdecodeforroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4175ec353029e11aff6b372912efdfdebbe45990981c7af26472e1d15222fed", + "regex": "(?i)^https?\\:\\/\\/gnrateurdecodeforroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0902fd26339fd7364ab598cece6b5a098183287b57eeaee4afbcd5e1714201c4", + "regex": "(?i)^https?\\:\\/\\/gnrateurdecodeforroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05314ab03fd9fd4f0bc04eb8adec47b5a8fbae2923facda1a2e7a41478229930", + "regex": "(?i)^https?\\:\\/\\/gnrateurdecodeforroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "549e9df8f2f7f94282ffcb77c462c8a2670b18afe29c54d174a1c27fa5b8adcf", + "regex": "(?i)^https?\\:\\/\\/gnrateurdecodeforroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "201d70ad4090154bb18f068b87d8cb4be4c4c27fa774c739116b2edb51ac6bec", + "regex": "(?i)^https?\\:\\/\\/gnrateurdecodeforroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7e1fa69b0106a1ccdbd528bc6dcc91f95eb08d3c2b7ce26d140ca100201fc88", + "regex": "(?i)^https?\\:\\/\\/gnrateurdecodeforroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9f237d82ba860704176e133f8856981aa7a9dcdd90e9be4fdf2bcca793b998", + "regex": "(?i)^https?\\:\\/\\/howtomakeeverythingfreeintherobloxcat\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a46853706d19943afc8868b6ea39de234f203439251eab2377c543984cdf826", + "regex": "(?i)^https?\\:\\/\\/howtomakeeverythingfreeintherobloxcat\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0fb9fceb58e75dd62526505e2650a3217a508ca37f12f2508001a50c87238c", + "regex": "(?i)^https?\\:\\/\\/howtomakeeverythingfreeintherobloxcat\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e4b327c3c9cb5f4b094da3de55e316bcb31925a734f2bb11ec2757e53e057bc", + "regex": "(?i)^https?\\:\\/\\/howtomakeeverythingfreeintherobloxcat\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd4378b14b9264ec14170ea49ac75e3e2e7edafe8bf1164c0eee03fb2c46602c", + "regex": "(?i)^https?\\:\\/\\/howtomakeeverythingfreeintherobloxcat\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dfb4a849655b63126d99a94535f90e90b3143fb6866fb58cf01b816c5bc19da", + "regex": "(?i)^https?\\:\\/\\/howtomakeeverythingfreeintherobloxcat\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e00ffd77c4a66fe6359ad930bd465a3c693d8d920f080e77c4f77d56113bf50", + "regex": "(?i)^https?\\:\\/\\/howtomakeeverythingfreeintherobloxcat\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "054271e75ad1cceb7ad323aa646126e58d227e27e8862baf255e36d877ed7f6f", + "regex": "(?i)^https?\\:\\/\\/howtomakeeverythingfreeintherobloxcat\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adec4b148b9e482f37d928d053e7fd155100d3005460fe1b3a631db73f5af112", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxabeille\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59bd45ddd85ef9ac375cffd4c5f3e0c502d6435ff2a7c56263a0011c18bc7c07", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxabeille\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9a7460bb77841feaa5abe1b09c58aaec8ce0029deb7a642a667243f5aabf7a2", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxabeille\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74cf5fd35a0ad9f3d91a2a61bf10f8f888093bc0817157af3d78c593d153a123", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxabeille\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a7911cbdf28fbf6f707aeb70533b4b08d37c1912ed615c39fa7e16766a6faa9", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxabeille\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df621e0c3cf7b079717532083496fd8928a2bf33add65d2c03e1a777216bcff2", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxabeille\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca709aede78bddd40796147fc1e8522bf41cae2d9aa08870fccb9634fd98f198", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "925b7c1e77385b2cf7a988bfe0b4808a30fda47ce6f707ea77286539a4610ef6", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74553158b9bb9fab34c3b21b70de89abfeabed1cda3936ca39272ce9dd297369", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f825fded596ee78d7c35a29a9fd4dfc35f751d2c9f5578a73e95a69a7d2b3dad", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf688558396cd46286fdab8ab68cafb25653bcbd434b85e247369780089a98e9", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c6f5220e4c0db1efb118e8b2aaa983740f93110bf6346f0ddb4b2a8a9b8a1c", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8108d6fcbc78d5ac701f616991f3579972c8f9a36c37864734752dcaf54f36d", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbbeb9ee4d3895a00978e193f81a7dae581ac5444cd4582d70c5af722255e3eb", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a540bfaaaff82040390295b771d02584c643ab5df5a3b00c57851ce8c412ebfc", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "706d7086bf30c893257ca433d28a0a4997d6567e318f60c574b5eff11d212913", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deff023684c364b56fd591c18caf9070d3d0ff1fe24660daaac399024f16c5a3", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec51f30ef70e8bb6b783f804b445d9d55d52059d46f5cb7fdd1b6b7e751b5909", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c8f2e46a4032e5abce2d7fbfbfa698db92301983680af2c32409656ab82dbca", + "regex": "(?i)^https?\\:\\/\\/coderapameriquiroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "304b819af6d5bd66bcb270d9d3cb44fbc28d5d43ea38c4d4dd592bdde9cbfefe", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c78227c8b2d1d50ffef0011c7d414a9b6ce0222870097f74b03267d6c19d0b5d", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e808833aa7147c3694ed7d954e2fcf0b1e92e7eb9c7600bd3f21e6437f9b8850", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f75e50da7210841ae80b0e2172f051f86a3d7a5841f24b8ab25b8e7ada535e8b", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9426fe0cf9a9b59c07673e3c75b2b0e4cdbfb01088d6863ca6d391c93e996e9b", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aae9223b33b4c598b7b7c8632c06e7f3f132d8e6aa1ab81e2335bc706a65eef5", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeb60b08b923a455da18f5d58019caa89f78c1c2abea4cb001351e3f2fafd864", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fe1d5ae0c7e0ea605b609fe14eb499a46f52f50c802a9a9992a2f95ef5e6d9f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "288a5db92bb5ede85f3563303401e526eec0ef7928c06db4f0600354dad72cad", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c17f2a4394c483c607c7c0ca26536e4556a7cd55dfc1dbc560d5b9d9cde520", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparajogardeque\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da3aecdb2071c7cfd926927ec459d0bc2d1a6a456d91b9891f63c31c15734a73", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "faae4ad9560309153a58c619c2f682314724601c6fc539cedb8e9bd66dc1b750", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e04f2023d5daeee285de2a372efb9f4b3dfa7de34b6eb1c48251373c5cd0b5d", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3caed07cfcb354c9bd0c91d5565d791b630dd33b72f31b98252aa806ccfad81d", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80eff221709620d4d1b24304d8ef45fbb6201f7aa99ad6f7e71982523c445e79", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29f6ca9567fd1fa83f6e25db8f43fad88cacede4a618c9ad55a4072e8352b99f", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28be3c7242ad2e9bee46e6bbdb6667118564642cf6249defca4f207d09b4c72f", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28bff213f363bb0ccc25a19181b996345d491954018db2e7d870f39040abb843", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c88cb3ebc0e58f43fd9af2cc8e67146f8c80851dcb70f5e5842408e4ece2c4cc", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c14d68f88605ab6e005c9c7e923d10498d1839c0203e6ac40cc9585131a4f2e2", + "regex": "(?i)^https?\\:\\/\\/commentavoirdesrobuxsurrobloxenjouant\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "391ec0ad2e4475c82f9b5d4dd104fcbaa67925e8f8a9b440a6dc299e5baafb8f", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxrobuxandroid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e5d466d12a31ae62cf155df0eff15f0e5632c6b566b85ed72f1e554930baa25", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxrobuxandroid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3f044f500eb854078b0d9da235522f54029955c22fb4ef23187c7e7281ba8dc", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxrobuxandroid\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7612389d899524cb7a23035f3e951701c0a262af73b490d3cb75f9dcfbb0ef8b", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxrobuxandroid\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e18af9fec2624baf9b04f476437b1c305b667e2c10be986b90978f5026c7bb2d", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxrobuxandroid\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b43579d1c350d57442da9478d58c40774223a5a73f250bfb07a52e8050e5624e", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxrobuxandroid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fdb856524a2ffcee3ac4a08c602d3c49ece5aef64b37e3d011adc3c9ff17afd", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxrobuxandroid\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78e03978eeb8e9133f9235cbee060694637f4f59178adffcc2a7f463b8115e93", + "regex": "." + }, + { + "hash": "0942ff8d8f3ce331ad6301b5cca4d06b9c833d55251027ce438c8b26b844a552", + "regex": "." + }, + { + "hash": "8ee15e1e5f8afc5f8164ade0be456aa0c0706e889882712a7bc5f662468948aa", + "regex": "." + }, + { + "hash": "048e33037ce5a54fb73bcaa7457b22dd43b331288bee73483e05a05137104711", + "regex": "." + }, + { + "hash": "bfb9bb56bab15657a097fafd1de0c987e935a7b6cb8d8437142851dd437d81eb", + "regex": "." + }, + { + "hash": "1c67eeec71f1ba8892de0865b3904107e5a5b336cf5e1f6a8469124c23930a8c", + "regex": "." + }, + { + "hash": "2d4603463a700463d819c6c38336197941b3d8ae521de63b3e9d6f20c849f4cc", + "regex": "." + }, + { + "hash": "8d850d947a7c8e852628d4a34064c1d4a31d32eadb317c3e5c5f2d4dc8216f26", + "regex": "." + }, + { + "hash": "a3251402f76e6eb71e2ca73cff9c4db230e4f111a3ff914040b695f9f5b1d9de", + "regex": "." + }, + { + "hash": "8cf764d80d3fa02e163e8aa17c60d4e9bd62ba1e4568ded802c37bd0e36b380c", + "regex": "." + }, + { + "hash": "4703aa47fec4905eb53ccebfa14c27a7b28f68e76977a091b62829622991515c", + "regex": "." + }, + { + "hash": "661786eb52a8b40808f8703436f111f2fbdfc66a0d2eded8465cca3c366bf43f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeterrordorobloxtitanic\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ccfa320123d1477ca91d9d5cf6161361577ba8a15c65746a0dc31b73511b26f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeterrordorobloxtitanic\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3620895bfcd60fad71a14eaf43e5e5fc77d7356a0f3509f2c3f18f604656219", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeterrordorobloxtitanic\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7168cd547cdb85ffdf77213af4923854f7bfa2cbf29c9515f94cd21e6984d86d", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeterrordorobloxtitanic\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec2d25e61e99d3b60e86ff698cf297cf9fae56d02c23ecfb0d769cd787ab6db9", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeterrordorobloxtitanic\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "771d34590fe919ba0999d08d308dca9ac621a17fa17e47f8a30abc458c6f2bf5", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeterrordorobloxtitanic\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56f90d9ea4c307c1259f1851c6afe12f2f0bb2657aafb40b3e5aab918d052803", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeterrordorobloxtitanic\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3d73bf60a0eaad47fdd8663f6aa2c954abd32d126af7ed230ed15bdcb38035b", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeterrordorobloxtitanic\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eee7c5e23b3ce79b247ebd5f85be367a8b43ca0790ccdc2c0a310a23cd8a6d51", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeterrordorobloxtitanic\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64377ca640f583688a228e68ed98968312617fd400052fba13a83db77bcf80ce", + "regex": "(?i)^https?\\:\\/\\/comocriarss1jogonorobloxparecidocomdr\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2745d3629033d62f008b8df9538a1434a873f0db6f0572af89951b0a0126c862", + "regex": "(?i)^https?\\:\\/\\/comocriarss1jogonorobloxparecidocomdr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbcea80524f6d6a4895d83d48d46ef8dda0725eb891d2fa0a58e7fd0bf3e4c75", + "regex": "(?i)^https?\\:\\/\\/comocriarss1jogonorobloxparecidocomdr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b753948fa83e5f8f7587dcfbcd594d47a1db3aeb099a3880c35cabad4b1239bd", + "regex": "(?i)^https?\\:\\/\\/comocriarss1jogonorobloxparecidocomdr\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84848aa700d5be75976ea3853b890bb60087b0432e0e7fec7783b15fbb6b4cbc", + "regex": "(?i)^https?\\:\\/\\/comocriarss1jogonorobloxparecidocomdr\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bb833ba62bd22c2a435c2ab79d22f8c8a778f2ce1c72a67de9c3d6da803b0ae", + "regex": "(?i)^https?\\:\\/\\/comocriarss1jogonorobloxparecidocomdr\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ceccceb4af09357bdbeeba443fbd005cde1ee4a9730d7e79b10a29cab5f220aa", + "regex": "(?i)^https?\\:\\/\\/comocriarss1jogonorobloxparecidocomdr\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1eccea046ea51dfdb1a7398fb7d4505919acfa4684d3cce734200e3502bf33a", + "regex": "(?i)^https?\\:\\/\\/comocriarss1jogonorobloxparecidocomdr\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15828239a2a73a6a20c0871b300ed89e1291472518f50f5ab6a8cfe91f5053c6", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69c1db3de2f69c4225143a014f8ba243fdb3d0b00daa4ce7e8c436cad63701b0", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e588e151c7b010d13373282b2b2e5bf4987f61bf6af70eb445330502e807524", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14c68f5c3e3ffd4b76b6d67e3a2c5d0b26958f4a620fa68dc395bd057ef05ba3", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "171ceecab9981ce57d49df10b3155a46feaf698a62020e7c704de1824bcc5dc0", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "347c8b1f795d0dbe3b99b51c32b5a0272ca799c6c4f39f6f75c906ec39d9eb42", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc0c99d2fbc68f5be559800e7ebe5897f58c2bcfcb93906b25fbe5e5dd9cd254", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d301b60dab3b8c86e77a16acb4833b31fdd4c400d0864156b2fa2be65fbb61f", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b7d81e0db0efd451bf31cbe206248164f3338beb2a2122f2595b8326faee53", + "regex": "(?i)^https?\\:\\/\\/newrobloxpromocodeoctober2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eedbf7b0e78efc863c529312c1a2ad7cd004ecd4b58cf7324f1818e232b3c737", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd33941b206bb267c0f1fe8d9a7ca1d409495cca7bac0b2c202f3b914657a136", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93993a3da2a2923aa7f5d94a3f3fadc4badbc6c783f20aa8a68d82f6dd6881af", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6aa6d682deae47e4596fd428850312d441686ea378cbfdeb32cd507564b89f3", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ab170d51a5117b5b3899e1b40af8d90e8983c1ce1a967ee8807e57e6e6550d", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26e5f6dc52fc9ebb7ce7ad57658116cb8f6c0eb7791e014178526d08e8bc377e", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff3019bfc8af0584cdc4dedf91979aa05b02565c6aa29faf073320bc33bb2b0e", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f65ed7e990e98b132a4ec725ec0f5c2c5350d7a64281d2919e26a5e945a52a4", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7eec2777d7a5093633b3bb9e6c1de401a36cc7cc0038ddada51a34ef24412d1", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6c1c51824a4c9efcd38b19662dc39c43843dca82dfc16a8dce8c254fa0d2732", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66fb6d988483585910fcbcab4960e7b07f47ab75fc678cd0f50c5254ed5255aa", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bd2fbc1059dba3c6c9209edf655b7d10f369345dfbeb479d2edc39fbe9fd87f", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e511958119fad941d57c6603630508bdc61ba802cd4ef63fb3598e0a323ed63", + "regex": "(?i)^https?\\:\\/\\/robloxescaperobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84e20042dc40e37bebd6e813682ff3dc9118aa8409b7e38faee2a3c82bb865f9", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14e8c94dd71f89c1492382d7258f1192fafddcebebff71dcc8d085fc38bd8b35", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14505c4299aed5883b5041804d256c44f19732dbb5a97f449ce46a3cdb56ff7b", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19d9daac6e12a591970da1103be85ade6fad69371b0c82cb0b971390ec5e9d7c", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfc882703afc886265fda5fae5279a77bee078f16bc604b81804cfcb4e3675aa", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4edb95a07580e20ee1b6d36ce1027541108f634c902205424cec8b666b35a52d", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b9e714209fb1877d1aefa1a6264a961441985d405fd6d916f8aba61992d6845", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3284eea6de1b11d1c2e4a409e0738cc488f32661f44fc77408acb4c57b9c0c2", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9265ff5311a5ad010b0b396add26a7c690bea1a1204919f50082d3a05892c88", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "866653c9af8e72b501806edf7409af59a40e3d8101fa3f2e9491c909cc157333", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0279a123cab24b52cb66d464a90e77a8b6c7405d768b72d178931848fd80c513", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b754846f136cc1c24924581175485725c41e0b5081caef2e8fd4b81ac2028cb2", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7c7c62b94db72519abb6e428206103bf1813d3a1c6dd98a88cdb5c80cd8987f", + "regex": "(?i)^https?\\:\\/\\/codigosdecargrobuxroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36c85e0f3fecd4d2ba5be5b954febda15032b71db2f1858dd84d3f96a6fea819", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ff2db5cec4495813f856e9a6fb89b093c5b2664757d6b2baf14e08584ad720a", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "544ef23e8979d960a9e26967db0af75d1fe41180d25c51c8d505ddf587cff7d0", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d345dd106dc1890054010b9d0a6512bbda02fbcbef5a300f3a330befb841c9", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f951f839225cab413cd4014b8f47888374ce512b173e305d82d30548a9d6cd7d", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d971fd8a896476e86588b3ceac43d7f234c7d4483ef8ec26a1fdc79153907c1", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96fe3994d514a37b255dca55202511dd566924e60e0d1c97d8f033a2eb0db111", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f620dd4b156b969300d4e3625ffd0da79159078ceae3c454691e50972c36d8d8", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c7f4acdb86774298c9a3806b0148d0c404179cd326ab1612b5f7a2478085cab", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7ca0164f2177df1393adee46ee1d477120d1b16406e48f9a8deafefe336f23", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa0b9a9405acec0f527f2ea9abeb14ca75d51f35db10223856a267b0bc3fc4b4", + "regex": "(?i)^https?\\:\\/\\/robloxmeepcitynaslplusolunurrobuxla\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e5028242a88d2aa7e82173740e1f4b8a5e7985be71c5afe4cc60683d436b30a", + "regex": "(?i)^https?\\:\\/\\/comoinstalarhacknoswordburst2roblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1efe4d102590e4393805d3eeddd1f3220ff4420c0f02c5d7bdd5eeba7c20a56", + "regex": "(?i)^https?\\:\\/\\/comoinstalarhacknoswordburst2roblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73cbf078777816dfa574389ac3d5695f6cd2415bbe17faecb6ed5241f8fbeb8", + "regex": "(?i)^https?\\:\\/\\/comoinstalarhacknoswordburst2roblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b6d5a7d826044b679dbbf3bdf248288a6800cbb5cb402f834feeecf629c2b93", + "regex": "(?i)^https?\\:\\/\\/comoinstalarhacknoswordburst2roblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b41d2be2eec1ca4ceccb52060286339ea001362adff6ae7a42c99d0857c4deb7", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f70d51e26a75769badb25122783e22a1ce51f97ceee325235f9df3b250ad557", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11bbe31206483ceee8a7a07e770e94a9e294a974a8c0a5d4c9062fd0cbccab52", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d80f42cc82cd52807ce41cc388e2f2332598854f4d664519cd9e2c6f6f7207d", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7e1f99c50ad85427ab6c91952ef5705e349e6bc3f18805e4a72e82e12a0a5b", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77a0c5cae0065d75d0d6eef9b6f623d91c483b8ded4d990e6678b9200d6be759", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57d053481ea3ee871f99f866ef64efeec759a7d6491f2bd25b150fbd6af66163", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe9419139a9d890d364df99289f4c2de4c864cd52fe6d359a5e34a90df264d7c", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1c00628abfd76147e3cb28c696319905f89122e0945c42a69d110658771a9bb", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbafcbd9826169ec8a6719f02b047dcd41e6ef1b372e7f49e2ce6ee1fcfc7d6b", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdematazumbie\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f6978336a5649af069d281cda758c0fd9dee37c6af728c0ae075c9d1783af04", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e5d635d6defbe3ffb42d1b0e822fd7ccd4b9878afe87ed433ed456d7f510478", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12c7e935a023321485f194f6d5d90b668c454ee567034b0cc197c8672cebfa48", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35fcec0a3445da9c5fb95c48e21f48dae9baa163bb5b6da1530b7df577426fbe", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee52c526a2106bf6382d0f023ac5bd37e52d52951d708e66d3af8233137ae1a9", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a441c80f6f20753a77c67110e80c81cc02f398c82d2da1c4dd84d9e3b3fd38a", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2b8710af0c9e96469e4bdd59902e968fb79335720ab55125176c62deb4adbcf", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45978b5db0d77c3288654135dea973131d956ae63021c36dfaee956fb9d41c7c", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aa5429407bf95da7dacaf3f3b793a1a83cf40ed3118abb024fed424cc2d3f97", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4dbd923ce6d4b1f29ce92a0603e0e0bb1e5229045d960935849db793d67f63a", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b32438867fc4f43b020ad742b9b3fb9556ed9f1cedc69ca9a3574c329562f9a", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2c1f1c5d66a0eaf477c3c53f3374ca24d629a0b81fb62f8b7b8ef3e7e82bf2e", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d407bc425a956c0956c130206276b5882cf35ab260fe28d0837b4bec13894d19", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d2e69f62be7a24656309fd5167d7966b10b0e4f19399fcfba911d4d451ff75c", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d545e05170a56beefcb75833102eee784642523cb6dc03dd39e1cee7ce98fda3", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "544e91d6b6da6f4a7370cc9e698de03a2c912bca5c646b8b2fb34be4edd30f3a", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df73b48fa44aef78ec4b613f7e95046d8d512dfc87c027787720db01596218b7", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67e64e656065e8b62851f69025607a54bd153580cb5f171934912af63b22f545", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea25e95fdb7c8878372569a3a0047ce6ef04d81b9fb6b7330d7a7412a78848b", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90ccf35717f5fa424246a14ee43def22634a5042e6f37bdd5f6c98033399ade2", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "317040df7f19ab8a41d0e8b6f0be2a3e02bc78289b1ab973bc49b597ad5623eb", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d57998bd5e1a795e61e127c725da13e39421523d5b74d2b6840fd9e17f959c9", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84f712b8d4562bf55c389e0aea5ebee813160afff64ba35d7aeb7be43e3b83c9", + "regex": "(?i)^https?\\:\\/\\/robloxwolfdecalid\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8e16f591ea921ce9527bc635c840df1b85733c85b87c92894560622e01f92bb", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ded20f186f5031bd32d8d212d93feb8c339047616302e0091fe8818fe7b06ab4", + "regex": "(?i)^https?\\:\\/\\/freerobloxreedemcodes\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ad1299d7f194d99dc0213c6492d5a3a49b68a22d3e81743e05c970f255baaaa", + "regex": "(?i)^https?\\:\\/\\/howtoscriptrobloxandhack\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32dba3969dcff98b940c94e131e56c203afb3e2abb48798ffabdfa388219d675", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdecal\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d963ef8abe58234720d8e350a87a02331405b6357aa1578985fd5c8d701c3573", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdecal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "021edd20f5b2f3b4171319b72d3d09a005757fdf384952accfec75eca15091d7", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdecal\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e0c048e74af1879370c4bb1525f642fdfadb5d7c3f63d6cb85fc7854e372aa2", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63eafb982bb4c804c48666b251257af4ac75bb810a0e0626d64784cf37c78376", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdecal\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96580bbcefb852ded59b93c4046799732d581e179efa4aa49961445ce49cc3c6", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdecal\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7fdd0ec733988b03bd056b04371554e9c33fb296ea55ba77ab569cd3724413", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdecal\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "546dad3407b61776e3a3e10f80ff74cb4fba3e3d808123fe84fb39f5fb86e545", + "regex": "(?i)^https?\\:\\/\\/robloxgame25robux\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb2d4b83fc6541ceacd22e632229ad70a711894632ec553f77b2b38861ae179d", + "regex": "(?i)^https?\\:\\/\\/robloxgame25robux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "452ae4c56a48b6c76c988ff28e635f12d8014409c9dbc0ace41e5b5fc3d36a8f", + "regex": "(?i)^https?\\:\\/\\/robloxgame25robux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90cba5a663f088228c770b11f6535eb27b6b1dda6858ab93bb0c3f7262915a09", + "regex": "(?i)^https?\\:\\/\\/robloxgame25robux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab9e12a6d1ec98667117de1a1618fb6b06d1903fa3cdcf3ae545257b14a486ea", + "regex": "(?i)^https?\\:\\/\\/robloxgame25robux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c0076adae4346c187067401fc502903c0f16f83c64e17fa4c74727328c9ad9f", + "regex": "(?i)^https?\\:\\/\\/robloxgame25robux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cd5aa6d03a013827784644a106db23e7b6c86adedaa3e3d62127b510dcbfa8a", + "regex": "(?i)^https?\\:\\/\\/robloxgame25robux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4709d7135488aff65060be5e6d53b0b333ba7c0bfcc2606834973c3b2500b73", + "regex": "(?i)^https?\\:\\/\\/robloxgame25robux\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39a3f1f125dab45ab7f695b9b19ef73bd7895aa8ca61f922bcbb27a6caeffeff", + "regex": "(?i)^https?\\:\\/\\/videorobloxcodebeeswarmsimulator\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19ee839cd6c30ecb2b39a8133e7138b3a8edf9a02fb097169ecb10a4107a2527", + "regex": "(?i)^https?\\:\\/\\/videorobloxcodebeeswarmsimulator\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edbc4861aa99c8057ebad7ce30112566f445a41944072f5250d2063658c73591", + "regex": "(?i)^https?\\:\\/\\/videorobloxcodebeeswarmsimulator\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "601344731786f14d70524304d2b66f59e230e6d2d0088968d7746836d33810e0", + "regex": "(?i)^https?\\:\\/\\/videorobloxcodebeeswarmsimulator\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e879fca84c67b608faed9149ef67e5e2a33fe6659d0f1d594fc0504aa3bc2a26", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraausandorobloxp\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "076c01ad43937320a007ef54b697076a4ccb8f2af3b89494ee7db6cc19be8d2d", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraausandorobloxp\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d195684acd5448f5cf6f12b619ca4589f9b0d9c0cdc279bff1fbd88be43defb", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraausandorobloxp\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccbf90a4426721d79d1c4f815bfece51f781a4390ef43667227ba559702cef62", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraausandorobloxp\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5076be476caa4d8056103773ce272a678524eb44744e8f0f5e59d64f6310ccb", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraausandorobloxp\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "732555e25a86c3c22b2ef76848ba9dfea10590a0f6aa46774dec94ac3b097804", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraausandorobloxp\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b13b4878151e9f26a48d018707ecc2f0b04c67c8812143570b0fb72e757c749a", + "regex": "(?i)^https?\\:\\/\\/comoconseguirrobuxdegraausandorobloxp\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65d1fd58ded891129b450d50d5e2207c543f3f5758110aa0e13cfaac2d91874", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "573fca10634e533618817ee68ecaed8692c5d60615d0094b646a4be519574d9c", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa0b045a23bb4087c6125f77c1a98df8d93d89a79b6d0cb4a45fe1f8d7f6d8ac", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54b64b466a66a16840b8830843229a1dff7710eb316fe4f85dd294e1f312b7f6", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd5f95fb21d5abd0af7bdc1e0d752e71ce41d64713eadd962d8280dd1ec738aa", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2cd0fe36499b8efa70a6301c2be0af52634ac3d6021b67d9b0394ff2ec8138a", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed6c2329bbb17d77cb45d385794f5514c529f0374d939aad1c0f3a848eb7bbae", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59970266541f90bd55731df45d53b7720c30cef55a06a2e0ecf841056f35005e", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b58dafe743850c4b148ab281b2a9b4fa40e81f5ea91e765a3710af5a5a5261a", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94e55d6018ca79a358e007b737f2ee2a076910e48953947b4daed063f3a4a7ec", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb9d8d15c3bafd16a547177f11543531a05ca3b8111bd988cf7a4aae6f62143b", + "regex": "(?i)^https?\\:\\/\\/robloxmonstersimulatorcodes\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18187bedb4ad7d847fc50d593d2e4a49b1c292d0d0f364f55e4e60c4a93c2df6", + "regex": "(?i)^https?\\:\\/\\/howtocheatrobloxrobux2021\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ef9b7a89d36eef59dfe504c094b4d11f60c60c302d997c69818ce2bb5979725", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46aa6475c35194fbe0aad306f8f81cfcf6c80f88255ae30ea9b49a02f3924467", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bddcabf8253cd9d083e76d850474c86458f75a7e3cbdd46d135b8862c3abe138", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "257c59a77d85fe9567dd703af5ce4c76e2866cf1e9d1fc67039653db976c1e6b", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f2ec99d25b0d4ffdb3556a1dfbadcc64130388e242086b8fee1bc59f1ba4877", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a2f50cbbc89a4a66215f8d1cdb3b17baa565f73ee3c46b482b92676a4cea4ff", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac6be398d0f39adab27c14356d684462f15db56a6ed3772d5f4e3f88ae4c86d7", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59f7154bbc5d5f00f7a620c9508b9ff74c5b15995b14eb5a90296b5b3c27d822", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b7c5c625098be2c8cd07fc2d85616569b53014f8f12ea6b0a08411091d13d5", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e185068748604fe1190407bcc81acf41375efc5f81daca326443d2c1b5c1b3f8", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1fed664072d20480c46789718835bbe5dd71e217e5a2f19940db42f9969e6b5", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de5fb8716681176205ddf9a801baa28c181dd6bea7b9f68685fee891da6ac440", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e9bd9c47b70ade0d26608f0758cd9e2083802787c0bbd8855d609f9755b2e5c", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3a17343a2745566352fc8071cabd609ade31213ff8acee5d32d5bc48746f57f", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b09854e25ef4d20fae86bd97c98e6122c6c73240d71e31b87b8c77b31534c14b", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ce210318c1b10114577f977965e6cc04ee5523785a777b1281a87ea4a10155a", + "regex": "(?i)^https?\\:\\/\\/robloxacchacken\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa90fae6b6b87f2d02303dfe951ee4dcda83216b09f0c385690578cdd9edc2e2", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec18f2a0fb2f844bd715ddd2f990542493ebeead1e5edfd309b7243714a07176", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ecb7efe400752b8af52b85a4e7b508df4772046fec254e1e1cdfd65e041545", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "961d6451a57a3390230329d5a2373c468c48e73c2d51761457f409adb6f6c084", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7a6033bd5f9e7c0110ce4ffcdbed3934b5afd0bf042ff7e86f0430ecab56a7c", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18d1ed094b9e06bbf4d59dfddcf100f276dec163a080d656f200723a3799c2da", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df88f8f248bb8180ea4d424461375afa3adc1a840c8f81963fe24bec0fc74c7c", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "671318fc061cae9a2c0f50d1426d3fde33cf8de219a3c501ff27570c00a0d192", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e185998215c2aaf08e877c08c327a4b71be588df5714737b47467b646b755cd5", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87adcec46bb120eb8349eaf969ac9466c67cd2507b171bcd310a614dc4023f75", + "regex": "(?i)^https?\\:\\/\\/robloxhackerderobux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06650151c2f338c3d1481a028ebf321e634a5ee1effe60123814292d96696501", + "regex": "(?i)^https?\\:\\/\\/robloxapacolypserisinghacks\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75fe45b7a700c814d3037a0a24c4453c76309da26226b2292500eec75045f36", + "regex": "(?i)^https?\\:\\/\\/robloxapacolypserisinghacks\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ff5bfa9fb5997a933afde0e8db0ecdc133a81bf33a6a1d51fce5e28890cb4dc", + "regex": "(?i)^https?\\:\\/\\/robloxapacolypserisinghacks\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4e179efb3d2f96b31321b405c9eb479327b104232c3abcf68aab0db937e9e46", + "regex": "(?i)^https?\\:\\/\\/robloxapacolypserisinghacks\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29f36188dc0230699ed21e1e370c36918fee27b445104d1dae19b31d8a3c06d0", + "regex": "(?i)^https?\\:\\/\\/robloxapacolypserisinghacks\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0d54b24979cb4907dbcf8b4b80bb07c76260a68bc480706d631d04bbd36e344", + "regex": "(?i)^https?\\:\\/\\/comocriargruponorobloxparapegarrobux\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff047da6f661c37103aa2c6ee7bda04c989ba111df270f415b602ae2f9d1053f", + "regex": "(?i)^https?\\:\\/\\/comocriargruponorobloxparapegarrobux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a55390788b970918cec9801e246002f47f87218fd283ab3ea808d0c6399bbb3d", + "regex": "(?i)^https?\\:\\/\\/comocriargruponorobloxparapegarrobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "088915f0c2e5baa93a882e68e8344d675c487332b37dfb5627507f90becd268b", + "regex": "(?i)^https?\\:\\/\\/comocriargruponorobloxparapegarrobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26c07dbf87fe18d59a900d1d9550427692ea4f8570892097a93a3c8e45cc962d", + "regex": "(?i)^https?\\:\\/\\/comocriargruponorobloxparapegarrobux\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a341e7c583155b18600ad6ba35be8aebd3dd107535ff133b0f4b568684243f0", + "regex": "(?i)^https?\\:\\/\\/comocriargruponorobloxparapegarrobux\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17e97477687ea3fe7fcee6986bc2d3cceb3e366ff521b658a5dab55bfb7ca277", + "regex": "(?i)^https?\\:\\/\\/comocriargruponorobloxparapegarrobux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d531fc2b3948602120c6225b04f2691bcce8a56c365bb34ed7046a1888f9cdcf", + "regex": "(?i)^https?\\:\\/\\/comocriargruponorobloxparapegarrobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d49cd42b543c0aba636a40f9c6136ca25cfc343947f41208cd0e2d35bd49a0", + "regex": "(?i)^https?\\:\\/\\/codigodoroblox2021pararobux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0765d72423c2c60d81d215d70b456562a8f36a4ce3f8c09266bc595cdbabb00", + "regex": "(?i)^https?\\:\\/\\/codigodoroblox2021pararobux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ce7b9a48aa44642c7448e1cb5b81e18c87013150dbc0a2ef25fc85d446c2eb6", + "regex": "(?i)^https?\\:\\/\\/codigodoroblox2021pararobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff86ae2d53db2600d9d79cb8df8bf20774e5fbad5b1cb57a9e6dcb71cbdf11dc", + "regex": "(?i)^https?\\:\\/\\/codigodoroblox2021pararobux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca2d636afc45416ceaa16f87705cf4b4266eb58a87a2f62e74f17d7c3755534", + "regex": "(?i)^https?\\:\\/\\/codigodoroblox2021pararobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf31e8e6ee04ef9f55052fa8bb71f0619df27c0fc75e7fc606e57d073d583c74", + "regex": "(?i)^https?\\:\\/\\/robloxfreeingamestuffexpoloit\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdfbdab7b6e40e19a0d4ada871a0f53d1bd8d332489735fc9f5e241cfd1bb5d5", + "regex": "(?i)^https?\\:\\/\\/robloxfreeingamestuffexpoloit\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a77502d2fc60b13f101cef8b736ede126520b66697f5fdb8cba2b78d02ee3e", + "regex": "(?i)^https?\\:\\/\\/robloxfreeingamestuffexpoloit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba59d71d756152d5f3e6e3a0e58bc5906ace4c9ba61322a124ebc38c7b8fb7cc", + "regex": "(?i)^https?\\:\\/\\/robloxfreeingamestuffexpoloit\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c8b33bd660f5732aa5c926a539e6a84d3792c687a0ce82f01b41256ed9e7552", + "regex": "(?i)^https?\\:\\/\\/robloxfreeingamestuffexpoloit\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd783c5eb2e13bcc2c6d1d9f8edda27699150077fcfdacca656596e27337fbfc", + "regex": "(?i)^https?\\:\\/\\/robloxfreeingamestuffexpoloit\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1744001745b4918c1f0c1ad50fa5a0f19c16cfee2f6cc7574f35300a64a0e3e3", + "regex": "(?i)^https?\\:\\/\\/robloxfreeingamestuffexpoloit\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a20083926de6076cdea536fe8361d073c0426e01257d5f69a3b988b418846d63", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc86b99ff444415b59d3065fe8cb065166ff33dc2ce0b1342bdbf963c1de8628", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fccbe11bd1ed49bf45c17969044e70f2a46bcdfa3daed5899f22b46ef7f4b8cc", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3830c517c6547553e8214c27eb12b428734bc2abb2cd7a76d1f6c0ef7049abdf", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c487529beff0e29d9577d6f46149d2244ecf426c21c34c2a0b9552873ff98413", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b95ad9f9309d1c9a66ded922c96d14bef78621370e55738ea907b107d2b21144", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aff3e66f1a4dda9455cfdc45005da0f9d23f6cfab03b04bd6655186629599db", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "924f91f816b24c8f8904b1dfa0f5896df2b5e3e2f6632a14dc9b7c1dfca5ae7b", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6496f5542595c2d86f8928f8e91672174d8d68c86cd6be4319a4f19a05af294", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbe47dfac0d75d18c48299be43484a8a3ddaa9ff41b9795f179571d987e54b70", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "954f871df1048ad26dd2658a930e8f630e2874159f30bc69ac1d65f35eda6954", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e615183271cf573e54eaf07ee25bda4747f840664537f27aec2f9fd508fe459", + "regex": "(?i)^https?\\:\\/\\/jogodenevenoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d67cae30856d0e6f48c23a5eb1aab46a21fa8485e9d672d0304cd8e399d3c5cf", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "478610444576874c60c83bf65fee52e87115d8e4e521a76e5d7a8d2f768f3577", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0f9e25ea5e26839b8676aee15383349825e9617ce1d8acb14afaf2967448925", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "073926cbb057e5fd9e3cbaa8a7652b448375807fa51748022c2941534bd5589e", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d873dd36f60c438d3a5e71baa9110aa0e5dfedd61d5fdef7ee258fd1896dd2c", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca0b0cea9ba04c74279a1e4563abf9120fa3fa45b71c9c1c2e168394463c6ae0", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a98747285ffa222a7002b0e25c107667fa7af1ac3a70223e5f5b6e263bbe8c8", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04c31ec20076668e971891325ff939cef057778b702667faf01e8949c2e71cfd", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deda5fbbf84e92bdfdf72ecacef49a9e9bcf0413e3fbd2682643ae0409ff1178", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "921737d48926d87b3a0d116cecee1af4e39bf74f64840a9200081a7d8ddcf5d5", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c01a498ebcd3c252556b2670160645e602ed601b9ed82ba3e96bd35d4f68ec4", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "744782c1dfb4c07935a529f75a9eee130f927c2d59bf5d7fe8e51bfda5429d61", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeitemsonroblox2021october\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad8c493cb0fd9fe3cd98553c469bec9a0a32ade5a645de3af3ec004b1bf76e3a", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeitemsonroblox2021october\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64373a3d4a6786faea7361d554c695e327ed7a105e7630e098515bcadf3e2dd3", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeitemsonroblox2021october\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d45d40cefb4d5d7d35d77e12250df252b696ceab4a60dd0a9cdee903960a8b8c", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeitemsonroblox2021october\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae6e5f71fccdb3c315c07a90e227ef4c0074bd6c883b356526f0369f8f7b28db", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeitemsonroblox2021october\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f67d4d1fd1564ca4877e7ea1fd0d18e9ad3fff5e822fcf0fe4c0301abe080c7", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeitemsonroblox2021october\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e628d4112fbf42dbc18b5aa8c5908aac4d19b71f7d2d70584709a5a20ea93b53", + "regex": "(?i)^https?\\:\\/\\/iddecalsforrobloxkyilejenner\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69806da31f82d7a4c0e263214cce27b36329febae3ca7aa4702004a047fff90a", + "regex": "(?i)^https?\\:\\/\\/iddecalsforrobloxkyilejenner\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4ce7143393d9deabf24bd165d8948154c4ca22facc304f74712412c9fbdc8f3", + "regex": "(?i)^https?\\:\\/\\/iddecalsforrobloxkyilejenner\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c77e672bcd1e700c512fcdd45ddf161a3b6815bbd9854ad2d17e2669550a6629", + "regex": "(?i)^https?\\:\\/\\/iddecalsforrobloxkyilejenner\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e334e3798c9f13cba78616610941fb313272ec1fa7b638010624cd5a1b48b391", + "regex": "(?i)^https?\\:\\/\\/iddecalsforrobloxkyilejenner\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d7d2311a5a65545ad077406bc27fb230958f8707b4b8d75164ee6b1cd8e712c", + "regex": "(?i)^https?\\:\\/\\/iddecalsforrobloxkyilejenner\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "488f29a826650b49a74a12d21d272daf6dfe2d35002fe9f8fda70494323da9d2", + "regex": "(?i)^https?\\:\\/\\/jogostoprpgrobloxgames\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "384cfdbb1bed68561fc507e15737441d004fd83b503826004f03b4b5d8b99fdf", + "regex": "(?i)^https?\\:\\/\\/jogostoprpgrobloxgames\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "027965c75bad742e311dde7abe2721ff96af8137674bb00e8513ebdfe2a83d26", + "regex": "(?i)^https?\\:\\/\\/jogostoprpgrobloxgames\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bb3a57a222c965bcc34aacf747541ae66e1e0a7566ce46421407d99ff265057", + "regex": "(?i)^https?\\:\\/\\/jogostoprpgrobloxgames\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe28f72ba3c66dcb2c8b0f4937fd12a3b8f4fbf2300feeaa793b25fb09cfd98", + "regex": "(?i)^https?\\:\\/\\/jogostoprpgrobloxgames\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "762fd40e1e6df800f2f5a3a570031607bc774bbd9a5bf0186a7894c65c2e7351", + "regex": "(?i)^https?\\:\\/\\/jogostoprpgrobloxgames\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41122e2bdf15c3c0485f83f1739672d362dbff6832a8f03cf7427a61f2b7cefc", + "regex": "(?i)^https?\\:\\/\\/jogostoprpgrobloxgames\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93bfa57c4c04c19e7b4c24682a6431fcf215b57f419a50e678fedba2871454b3", + "regex": "(?i)^https?\\:\\/\\/jogostoprpgrobloxgames\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45c88bc2a8485ea07bbf00a2344adf1bf1be71c5962bfedaa8c4cd31cdf85b32", + "regex": "(?i)^https?\\:\\/\\/jogostoprpgrobloxgames\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "124090cd6f2014c38b23ede0ddbd46f171642fc1f14305b12872ca3512cff28e", + "regex": "(?i)^https?\\:\\/\\/howtohackinbokunoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aacb6078b089f7c9314df542f674f2eee49114aaac9cd79fbb6131f1bb33014a", + "regex": "(?i)^https?\\:\\/\\/howtohackinbokunoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f753587e13bc7fe430545beddd936593cd82ae93f5a10f870ac6f99aa1a403e3", + "regex": "(?i)^https?\\:\\/\\/howtohackinbokunoroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71a4d8685b08ec0025e8b93f019c3d4014803f3e2e560412abe2bd6cf716a914", + "regex": "(?i)^https?\\:\\/\\/howtohackinbokunoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "864d79a986bf76cce8cc8cf1ebfe1134b5f0ed7ac6735d6b95e894e7b31b5fc9", + "regex": "(?i)^https?\\:\\/\\/howtohackinbokunoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1c036d0d46358e16e562536ed506b42de5b5b45422cb347d65f0b5c65d2be40", + "regex": "(?i)^https?\\:\\/\\/howtohackinbokunoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9304a28b47b2e1f0d4f08fdf5d296182d54f26b9c5bece6f2326fba92156c31", + "regex": "(?i)^https?\\:\\/\\/howtohackinbokunoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb96eb22898ae4e9b6c895e8ab73edc1c0c2555c4984c9b12f9b79b6f4a86dc", + "regex": "(?i)^https?\\:\\/\\/howtohackinbokunoroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a843328fe24fb92d66eefb53a26417531ee6a7df1f784b08d24a65109ce0f552", + "regex": "(?i)^https?\\:\\/\\/howtohackinbokunoroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3396bbcdcb6a2ca53d104e08068fbe2b9c11174abaeea5561685a7d75e56ab3", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fe1c6cc9123cd107f3a52975c3c06eeb603f818ddc2c05b54cef1c443b05993", + "regex": "(?i)^https?\\:\\/\\/comotirarobandejogosroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0f1398e0b05ff5e8a7c0ceb2f0b9495abd93d3732c0626cbb58d354f9f200a6", + "regex": "(?i)^https?\\:\\/\\/comotirarobandejogosroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f57f85e3a86b4bf8cb71bce3205a3c276f079d8667cbb9283e8bcdaff01b15c", + "regex": "(?i)^https?\\:\\/\\/comotirarobandejogosroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c21041c0ee9c2eee9bb8882b15bfb36378bbf708775cebec3644a81158a58cb", + "regex": "(?i)^https?\\:\\/\\/comotirarobandejogosroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0692715cf64e0d6a168597b83cf03abed4ce32394bc4ae30d8dedf10626c5a82", + "regex": "(?i)^https?\\:\\/\\/comotirarobandejogosroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "401befb6d4589c8a1a4ef9645336a8c042565250477d45bac62c414bcc1fa27f", + "regex": "(?i)^https?\\:\\/\\/comotirarobandejogosroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6853ee38f7fc0db8d8bec1a30cb3379e5688fe8f5fddc393cb6ec9dd59c0ac33", + "regex": "(?i)^https?\\:\\/\\/comotirarobandejogosroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df43087a7d5982bac4c1f2dbd8d378cc84a1aebfb3e75a74965eac9ad5851cf1", + "regex": "(?i)^https?\\:\\/\\/hackdevelocidadenorobloxenuncaserpego\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c79ad602cad2d5d6f484b04172a65eeb55c1730de80b35ccf5db0bb7b89dc7d3", + "regex": "(?i)^https?\\:\\/\\/hackdevelocidadenorobloxenuncaserpego\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed921d3390d2c7f23ce91bfd7a78344f96a95ba71196e099375c39b9b37d6bc5", + "regex": "(?i)^https?\\:\\/\\/hackdevelocidadenorobloxenuncaserpego\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "291ddd5f87acfab7d7c58097f4b6f6ebc015e7da7673b453675a331aa0044350", + "regex": "(?i)^https?\\:\\/\\/hackdevelocidadenorobloxenuncaserpego\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b3d1f95931decd69808c396ff2b1ba7980b01b3bfa1fd3d18a5246e8458a4e0", + "regex": "(?i)^https?\\:\\/\\/hackdevelocidadenorobloxenuncaserpego\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9836efc9cea6e25e433ea809349d9762629dbea0fc0c5418f37cf1f038249ae8", + "regex": "(?i)^https?\\:\\/\\/hackdevelocidadenorobloxenuncaserpego\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9828e0fd0c1b03bae6afcab85527ef7e69733676b0d6f02fdf986d7eadfab53", + "regex": "(?i)^https?\\:\\/\\/hackdevelocidadenorobloxenuncaserpego\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19e323044948f874020353b20f84e4761da7522b04a99f547c66a01f71b02e8f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeadivinharospersonagens\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b98889e20a1d52de4f5077752e62d857468c6cdea9fc284e842d3978c0d43c", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeadivinharospersonagens\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38df6c340a7b93c926f2ccb665f5bd107b2aa14064887b5cafb32f4a820524de", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeadivinharospersonagens\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9758e80a9e3f6913be744510f347ab6188fb0f4768a3c97fe77f3597726ec408", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeadivinharospersonagens\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60e17aea0a98b305863319bbc7e58fdca2dbf9f88917a4b1ea4245e096e10512", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeadivinharospersonagens\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c2e34bb96bf89219d6aadc2f121cbb6a70c8e57fbc9cd6d81404dd3db0d31c6", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeadivinharospersonagens\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "960900929ce5cf5eeced8e948025acdfb7e7308a0ccf4575e1852a483ad59456", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeadivinharospersonagens\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32e57d2fc5d2a75e1b53343f8c746627dbb2bf6250b6a94500e85c1cc3bae172", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeadivinharospersonagens\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9b1c576792a1c7219f5de6e068f0e0e40b78641c5f4479183997e5ac0b9a5fe", + "regex": "(?i)^https?\\:\\/\\/coolrobloxavatarsforfree\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95f02ca89dce07c9fc1a4b9ca33a835af094a84a034e0d7cd4f5392233ca3ac9", + "regex": "(?i)^https?\\:\\/\\/coolrobloxavatarsforfree\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7e26424f517770b8da48fab5756004b5392326bf7f856d3b47d0f97dc94d4a0", + "regex": "(?i)^https?\\:\\/\\/coolrobloxavatarsforfree\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "663e86d30cd97c995c818509d9d94aa788262cab4f9b87175652cbc112ebd07e", + "regex": "(?i)^https?\\:\\/\\/coolrobloxavatarsforfree\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5898bab8cdac39c0c46ee76880f62893858a6090b6ba7db97c339457fa9fe459", + "regex": "(?i)^https?\\:\\/\\/coolrobloxavatarsforfree\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02da265a37a628d1217f7fac86684371fce0f0fc5fa6bf0c96cc14aa7c9b081f", + "regex": "(?i)^https?\\:\\/\\/coolrobloxavatarsforfree\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729d294163998d42780db36d734d0dce120f2eb7a87d00a776bc95837aa95140", + "regex": "(?i)^https?\\:\\/\\/coolrobloxavatarsforfree\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09df2f097481fc2e2bc026725e8010145b3bbc2baa5c2d38ebfa06ceff37aded", + "regex": "(?i)^https?\\:\\/\\/coolrobloxavatarsforfree\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f68a5b8261b410aeae4cce81f21f0c96f7d48537b0ca8e9f6fa3e190210ee842", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae993837cd04ea43ef18151b24867bb2fdb13f9b78d093332cfa33b046052f44", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2644f5b7b722c5234eb2d2b8e814e86758c6015f762faf3f81a36b71f6212a8", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fe868142242c59c91f711452ebd00cb24500d4afc81d918e1cfdb81c0ea82e4", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d43600ed5e8c0875dd9f9c33a2b252866eaaf8145d2f65aa85751ebe4173959b", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50be1a09d3b5762c540c1b86a71b7c50d08964081d04a9e89dafa897a6ede27c", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "514298a3b774067f8cbfc4cfac6772e53e81de2c31bd13c8b26397ce392f530a", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e49df095f7278e119a9f0cfa3a6d1f6ee4776a4d3c150d17a22eec38442b89d9", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9196b5e36b465271a0798d5631a35645b822e38399a19687f92f786dd7bc3394", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f93ba689bc1a07cefbe1a180e1f67ead6048e2cfab264c671beb4afb86a0f441", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b76b24e8a4b3be2bf8add0e7183663e0727fd1ee47e7c794e94a884d55998e78", + "regex": "(?i)^https?\\:\\/\\/cutiemarkdecalidforroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8fee376bf980107423ddd4fd3d4ac3068b3bc0a0e9b49147ff47922063329af", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "353c0db19c68c93f1ede8ed04e9190926b076d19cacca74c6626b154b5c8034d", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e484d34ee87f232c0caf023a623e29328ec82b3a99cb8bfef27426141414de47", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56777c6b741498d2da0afa61acfa2b6c0a87f3addba35e55dfff857f580a4acd", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca5fe121054012a6694b3daf81d398b986805400a44369fec22be1235b620363", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cc8871a64de3aadcc264f2269a883f226bdec34048497d4a359ed8708e033b9", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49b734f92591a9897fc6149b3ec71e1ad4670ecb6d8ba393a8925d8feb6c2cef", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1318272b5884d0238ec3d55b123a34dcd599527b1a82fbcd3148fac097c4b678", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5e3d4e2001b2d9198f1726b5461bc102bc59b2654820f8562614cc1e16dee77", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d97d4440e0a5c73131d9c87a9c13427680d4e1fd560ce3ced937eb8ab38108a", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee7bcfe4164d8fb7277fedb7f20a2b99a395fa5da5c7c1beb9ec48c2d71b8b50", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c79aa3c944fc6e805eaceb6a32a76542683003a443ae281201b1f4e03a68d5e6", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6a8b8c34649bccd138b77f01d9e876ec51061cfef660f83045c5aba9efecc21", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorcode\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00ae5567235ceee1f7018a99dfd4436882936781b0558bf30dfec5879410d262", + "regex": "(?i)^https?\\:\\/\\/musiquerobloxcodejoyeuxanniversaire\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8894db8bccf000b38f1d3b81e40b5ab75306aee330a45ab8105b7d838e6d08d2", + "regex": "(?i)^https?\\:\\/\\/musiquerobloxcodejoyeuxanniversaire\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b92a15e3ea90c1fc3939e61fe91acef82effeb8e48f191029fa16645effd906f", + "regex": "(?i)^https?\\:\\/\\/musiquerobloxcodejoyeuxanniversaire\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "591b6e738325004e28437ed7fa40ccff2cf11b99258ece21a83b688f8863ef6a", + "regex": "(?i)^https?\\:\\/\\/musiquerobloxcodejoyeuxanniversaire\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76d3d56a3bb7010f723156e719b1e0bc1542f73245959e4c36151ca001d4f1ba", + "regex": "(?i)^https?\\:\\/\\/musiquerobloxcodejoyeuxanniversaire\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2b6230b902665fd0e1133e547be91060930da7ba87881ca37b3a171b04d7332", + "regex": "(?i)^https?\\:\\/\\/oldwomandecalroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb3a4ef7e2cd8a1b2b1ce37518f69ce03ba41b3f4b0f8602a2bdf085240acfbe", + "regex": "(?i)^https?\\:\\/\\/oldwomandecalroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05566f11751b8cce0e71a9e21ee7b0af5e6568be38dea5ce9f10f14565d30ac8", + "regex": "(?i)^https?\\:\\/\\/oldwomandecalroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "813c39e216b1d78717b1792981eb2c8d0ded70d23588dbc208809ba9e0ca4155", + "regex": "(?i)^https?\\:\\/\\/oldwomandecalroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3960585fd1d4dc7713bcc0f2a9cb18b59b46438875f07ba58454973153501d8", + "regex": "(?i)^https?\\:\\/\\/oldwomandecalroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00898d185f9d4c0ae4ee286cf867e4dc498a0529c44bc0fe6c6d4f83cac255cd", + "regex": "(?i)^https?\\:\\/\\/oldwomandecalroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a5123911164957e5f0b21b1270f5c7a41a5e4a62dbf1734180aae63b9e80dde", + "regex": "(?i)^https?\\:\\/\\/oldwomandecalroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52eb57dbe9911a5120a620474871bea76d222507cc526ed4ba6256bf55e107b3", + "regex": "(?i)^https?\\:\\/\\/oldwomandecalroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b782ff15979b741f6dee4d5551462eaf33ca6791d649b63e4526a452dd240124", + "regex": "(?i)^https?\\:\\/\\/comoentraroutletnojogodohomemaranharo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f7c61bf2afaef2e3c6c87ff6941ce6c3a6950993a6ed7b45838f5f7fd4f2e8c", + "regex": "(?i)^https?\\:\\/\\/comoentraroutletnojogodohomemaranharo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "091568c216318a241e94f8ae049b8ae24cce6f1e854994fb9d260cef71d85731", + "regex": "(?i)^https?\\:\\/\\/comoentraroutletnojogodohomemaranharo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "348ca4524584e9c07888a50b36a07a77ce02faa747bc7e7c13964ebba08ddb37", + "regex": "(?i)^https?\\:\\/\\/comoentraroutletnojogodohomemaranharo\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b60fcdea3b96213940b818e1b20514c10d9a2d89b417c9d1ca5756378da248c", + "regex": "(?i)^https?\\:\\/\\/comoentraroutletnojogodohomemaranharo\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "340c32df24fe125109458751c753a225e6bdb44878e6e50dc1b97cf48b0619c4", + "regex": "(?i)^https?\\:\\/\\/comoentraroutletnojogodohomemaranharo\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dd2f4beb14666fc99e5346fc47df1c0fc56d3a5ef4000f8d40a5357f8bec63f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparabaixargratis\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86d30ce8aa929d8aac4df8e4ea8b5945f63cf9e22ae0be63b018a533591a0d5b", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparabaixargratis\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8d1a73e1144c4094f24b4b1c3fafa9bc289afc3fe7a8a3be01ab925d30f54b4", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparabaixargratis\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b49d655cb76d4fe1ecc9568fc68860f3519af002caa65d3db4d262276ed5b966", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparabaixargratis\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59668f54cb86d389b43885baf86119f0f7aa7d1d6614f9a3df075f8508f6dd30", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparabaixargratis\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3144820945fc6779899ddf20c23e8967faebbcb4d2432bda2b12f6c8e7822a02", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparabaixargratis\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab73927a5948787441572950c017370eb768457fab7674a42c3d3e9e25207b87", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxparabaixargratis\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27bdde7b494bef0a64f2e8a8153402ad41b0bcb87589f6cd196e4e780652839b", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5db191e5f98e4216ab059f59d5f84a1467454f6c4db4109a8c3965833d703778", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "222a5df78513b79f716cba9b44ccbb68374c260e4b304fe663e384f544d95111", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d22d3adbf6a6d722c856d04a3d459ac8394cc2bd26eedf3974a619f4ffa6f333", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a08d18f4bc7b7c4765e88bd06aa46f6ebe8f52b469d45a88bb65001a4477cd2a", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be8034e2025ca967c87e5309062921248572d0971c0ebb4c7f058ddb8c39ec1d", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7ebf8577473df0e1be6f8bc8e01588e2e4b81ca3456f97a160b4d014a4b834", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e08ce94da2024864c4c076577f246c8bcb11c823457852f7524d119c3c9e9de", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7020434b2194346ececf3ab0291c85bfd63e49dc51b7b77f24c10d0ee5bbdfcb", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f72b86c5e1b3bb6ee576101759f5e928a81c2d31e11c59e0d5d437673f4e6ef", + "regex": "(?i)^https?\\:\\/\\/comosedesbloquearojogodoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c94872caacff0c2f6f8972f44db88d6a7dd91361ee28d1d535f8444035a5f27", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56f975c1b050068f0a2b16b221915f562861bb9c620a93ccb3faa7cf8161ce6c", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ceb22bb66860078a2a9fb4d6210b0a16e058b913b29ab95245b4872525de7490", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f31596cb61126dc1cde6b13e7c8d75e32e66e16d5cb45e5762d85e9d0866f845", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebb284d62d3cfde62ce0e9ca7be1ad967d890662d8afbf88a302fabf607408ae", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca21fe35fea6b35b6803a1d32e5aad8113783f0bd7795bbfd7b3f5a4db0bd86b", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b40502ff4e05ec419658472fa2f892e98858c79bd807c7109a0ad6ac3f7f281", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45acaa174e25ca468242d3bf485cef8b3a1b1decc3166b7402be2e495d67e908", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3fc1bf8c3602c2ad205387ef4c2a231ddedfca21a42b7de667a2e8a7730cfd1", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31395f5d78658071cec538ce22aa90ad0392e6f4b66114f1fd89e4dcb554e6c3", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3bd34d9bf339d82c185736721bd7eb918b7d452436415ea255e9bc1dc70345f", + "regex": "(?i)^https?\\:\\/\\/katanahackroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e83df9b77520a57edafc0ec71102a40fb44a2ad8de489620a7c43708b3bcd39c", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveynopasswordnodownloa\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62e41252da4d8ac4c8bcff810b8ed5b76ae6693e0ab07a3dce601b351759db97", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveynopasswordnodownloa\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4995ac701c6517ae63c04ce9e052d27482c9bbdaf2fd57c160143997dac72fe9", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveynopasswordnodownloa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10ea9176b83af8b5dd9cda894f4362f0547ec58b11c6664a6cce838dac54645b", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveynopasswordnodownloa\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdcc36d7d92cbce6d60e6fe8ef3eec2091a141ae724ceaeb5139ae722606477a", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveynopasswordnodownloa\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8484e3c80be4deba1e2408f948c8ccc3a4587771b1e03ddb918f27c604af99ac", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveynopasswordnodownloa\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4998f9b17651c5fd7c78ad894c019262542f8af1cfa704659137af65556810f", + "regex": "(?i)^https?\\:\\/\\/robloxhacknosurveynopasswordnodownloa\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57b1fe18626cd3e750551b07d6eb51f0801a0f3cf6183290173c4119c4d3121d", + "regex": "(?i)^https?\\:\\/\\/comorecuperaorobuxquevcgastouroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45c894afdf35701eec3c2bfa8da02f83c44a14e1805ac269c71b157294fb5d13", + "regex": "(?i)^https?\\:\\/\\/comorecuperaorobuxquevcgastouroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bd1ba35b2e809e01af49208c79fa17fa1d0b85a570a89b5b2b578fc38b755ea", + "regex": "(?i)^https?\\:\\/\\/comorecuperaorobuxquevcgastouroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75b12e1c3e3dd686f7373025932e8fbd1d992fa7b0bd88986028e2118781791d", + "regex": "(?i)^https?\\:\\/\\/comorecuperaorobuxquevcgastouroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b5744f556963dda3d5435e752c5fae475c5029ba2d7d00a1ec756e20f6b47ba", + "regex": "(?i)^https?\\:\\/\\/comorecuperaorobuxquevcgastouroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50137df0ea6735834c01ef210ce19db041d4a39bfed30ee59efeecd80face08a", + "regex": "(?i)^https?\\:\\/\\/comorecuperaorobuxquevcgastouroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5244803755b0f4dc2ffb6320e89430ecd9bbfdfb9290f7a33d176eaa9d4ee313", + "regex": "(?i)^https?\\:\\/\\/comorecuperaorobuxquevcgastouroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8585b114ea792ff6c9c92ecb26f2bf412ff6a7dd60568d1f67c61b160c3de804", + "regex": "(?i)^https?\\:\\/\\/comorecuperaorobuxquevcgastouroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bb10f4a1210cf4566e56307918f7c13afdc0a4dd1a15b90bc6de32e55a51d6d", + "regex": "(?i)^https?\\:\\/\\/comorecuperaorobuxquevcgastouroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1c3898776557f79fbc2bb4bb2afa0a381223b87a92eacea85878c1d5108c338", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1ef8872bd6092df2096a546a18e59485e4728913b7e46acb99d81fdf8c8ea80", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30336c82d9be52ba34c8ef02b82d4edeee1fd2299bc6643f871cf1c4b91592d4", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62a7b90028ccbf2df2ef339458003dff869b759a1ef6be70153ca0ae2fe4d428", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7211782bf3df9dd97428e5c9974029c7ef68d69b362482ee78f8d9056e8b506", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a04f9a3c5e1ab901a35a03bc27b516d9917e690651082c819d2877ebff8c434", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83f89fb781320e3e57a054ac446d11b4f591abae2c4be6675230ee480e453861", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18f1be71bffd02149e54a9396416a20f99ee6dc13625127933982a988057d895", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f21c54aa6ead129ae59ae7b037a57c543018acf4806394b750d2b6a381b03f88", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4ce291e8a7a558791cd752d902825fcb3d7b63754cfc239e86131057bb14e4d", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9879f22e33bda5ace3d72e6db4e707dfc315686731b73a95801f2d59be9e31aa", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6311fd6673310858f54f804a9484f78d91d456c86e08d42be3529a64be6ff6ac", + "regex": "(?i)^https?\\:\\/\\/undersidersrobloxcodeswiki\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce3cf40749eab559ebbac5842e10a795299862c007bc806daedc1a12a93471ed", + "regex": "(?i)^https?\\:\\/\\/robloxspeedracehackxboxone\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eb51b844dfe607e335e4081e552ad3d3c43a9224958a6c99b1c34d176bb1cdd", + "regex": "(?i)^https?\\:\\/\\/robloxspeedracehackxboxone\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf0c27cc2d3099f8c0d3ad052ffd5f9b3bc17413b727f1e48328c3dfea1e8c49", + "regex": "(?i)^https?\\:\\/\\/robloxspeedracehackxboxone\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "046cf762dbd00ffb0fbdb4aabccfdfa9616d11834897377fa954fa17420b8ad4", + "regex": "(?i)^https?\\:\\/\\/robloxspeedracehackxboxone\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9363400b58b572d31fadca25267a78e4a425ddaec10528c68b9ad072b082b3dc", + "regex": "(?i)^https?\\:\\/\\/howtogetfreegamepassesonroblox2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a02344c72d6434c3f2f10afa85788eafd1ceaf28607d1c9e605f8abc666b860d", + "regex": "(?i)^https?\\:\\/\\/howtogetfreegamepassesonroblox2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1673eb85ea967057e27e0504b18d1613e9fbb9da14490978c0a842deee218a70", + "regex": "(?i)^https?\\:\\/\\/howtogetfreegamepassesonroblox2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21809273e8a290039c34fecbc75602ad9b51235045296fe8481026db7a92e5ff", + "regex": "(?i)^https?\\:\\/\\/howtogetfreegamepassesonroblox2021\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6013e94f5b95a671cf843eeeaa081ead71fff4c1cc6ed1d56624bad90ae78ff4", + "regex": "(?i)^https?\\:\\/\\/howtogetfreegamepassesonroblox2021\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6bf92472d92e78fef022e35402de1118bf8303b047f2330c8f33ed59d4e8b37", + "regex": "(?i)^https?\\:\\/\\/howtogetfreegamepassesonroblox2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "412dc432cd05aa37d7cc25159b918a584e93f89b81c5b99388bb5b294c063fa7", + "regex": "(?i)^https?\\:\\/\\/howtogetfreegamepassesonroblox2021\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a762a8f4e839897eff5ae53ba38c2dcfdefd2b9463c3a7b3fcfaa2a6d42853a6", + "regex": "(?i)^https?\\:\\/\\/howtogetfreegamepassesonroblox2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c335e1f78ff38f0900c1f2a57b9d0516cd2f8ce4abc6d29bb5d703db84f2b14", + "regex": "(?i)^https?\\:\\/\\/howtogetfreegamepassesonroblox2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a34b07b720847ae6515eb84f3c659e1a3f4f22467093ac6fe1ae0fb01eac5d7", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "831d5c0d9a2f124b9ba14e8c47dcfbd9f2d0b652b82ed875f45500aad68a9f2f", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ef9c466f594625f9261a93b5bbf7ef975c1ca53937a44b4db7781b4341086ab", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cec7607b095fa6555ab2b36e2d02093b8da31229847891cc706234103fa03798", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4717a1c2f7095b71622b35d769822999d6f150c657ac46f91abce26b4ea6be5a", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "726a36a427b632592a6d9d5c507c279c21d5cb618aaed5365b6fe2ed5cfc3e69", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a3f87ab605e7e7ffc96e55822d5e1f604c9310ddfff3b296041ca9c64e2d9e7", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fee4e03172cdf14cf4af94e1f59e010703bfcc2208b51caf4dd0ec94ecf7808", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6f471c2cd4b6164b9427229b349f2ce29e7ab5846450ad313d3ee433c3467cd", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7afb5c2b480c69746e66337b775b0fa98db43edd3ea5aaf6c502ac7e1e63b22", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9652e06b95006db180c0f30079e44cc4832a2e2c3b8b9484eac17e8d62b646e", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50d411998e6ead5dcfddf9ee1b542cd71f85f6e948d171a34d218c2ca566eaca", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbcbe3e26451ba034dc147be83c17da43d64f8bda55a7de536a20c4a6e4458c6", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab9ae891218fb593cc9637bdceb46a5f4a84c1834277a6a6fb0753c37becaa9", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d24c2cdd34c8ca7e6bb0edfda98281614df200f489e472d8b7d25e7ac373de09", + "regex": "(?i)^https?\\:\\/\\/jogodojpemcflynoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aae1a785551b94d1d4b8827fc831acc0688c2568f56a144a420fe8e8863e37aa", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20ddac55d4e6435c8462f7a89d9e3b20db320572222f3fcc739c1e2c21b32a8e", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4bff96da80080e1e9483b59c300ed32f6673d49f87127ae97099649f02ea721", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f41fba16d04c98b30a57e285c8e78432e4e8e7d0db04362ad0c5d5c2a5c30d8", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e11d56ffc0d385472bbdd99bcd28c845c2a6831a7484e1561ec60820b831736", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7bdd1f4df4a795fcde3b45261ae992d186645d655387d67c13309a25c95ea1d", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "899540b94135f2125095cee63c829d57e9304411eacca116bc7fcbfa80f54554", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3a8fb0c2ed9f020d47ced8812e12ed267bb564530aae707554a5eaebcaa4fd4", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf2c9319354f80588b731be7f9a24d5123a07a38a75ec7ea3788420fd060cf2", + "regex": "(?i)^https?\\:\\/\\/freeknifecodesroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e73ac43e41c24fc65473eda91c03540a7ff50b955c30a716c279e6161436b024", + "regex": "." + }, + { + "hash": "81130e9312d92e298f15fb61432bd1fbe170bc80b02c28a7da64ecf1372174b7", + "regex": "." + }, + { + "hash": "9d8c20a0e5726806e5578b9889b0dbaf3bd8c3142d9869cfa3f12395e3f0bc3e", + "regex": "." + }, + { + "hash": "29560a4426766c8a0a2214c89c106aea1ef744063e8483752f4db61eb92fdfec", + "regex": "." + }, + { + "hash": "efe8193e8e5169f35e3851a15f14455b6be291adde0f8482f436f56a8eb42a64", + "regex": "." + }, + { + "hash": "1302bfd9d9a52c82125bbdb3fe5f47c9048ac0bb0ca1929350174783754eb4ce", + "regex": "." + }, + { + "hash": "7e8ac4424380259b41920887e36b49170b4cfea11ed55ee52c148001be711def", + "regex": "." + }, + { + "hash": "856e11b35cfa3fe699741b22e9667ab4bf4621f5960572ebee3169ded8531ed0", + "regex": "." + }, + { + "hash": "845f8f7de7745f3fe6d91112a8555e09a55838b3d47431b3bdac591679c0e45a", + "regex": "(?i)^https?\\:\\/\\/freerobloxreedemcodes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b14cf1faacfba29956b81c7d7bb57bdeadd3110f9fb82fde0bfb02db67012180", + "regex": "(?i)^https?\\:\\/\\/freerobloxreedemcodes\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e29035fe8e6f557678ed8f2361ebd37404a3693d289d22fef1648a8dbc2ab194", + "regex": "(?i)^https?\\:\\/\\/freerobloxreedemcodes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5c2a43683356542e563d35e8dbf96439f4de9bfdce73b5b00ddf61802d79c64", + "regex": "(?i)^https?\\:\\/\\/freerobloxreedemcodes\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3aa838f983b7af9d753d17dadc33fd5371ca84652fe7b009c67ef1a0d11e71c", + "regex": "(?i)^https?\\:\\/\\/freerobloxreedemcodes\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c97b16b4e77dedfaae532bb403d4c226fda134cdc9b31056184dd2905f7eafe", + "regex": "(?i)^https?\\:\\/\\/freerobloxreedemcodes\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a5d25c1a77e7b0e269f20407eab3185156dbf3b9a378284658bcdacd0cf2504", + "regex": "(?i)^https?\\:\\/\\/freerobloxreedemcodes\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16812413430b4ef8f9979f42e6b3186161b98eaa969d3337186b591ee729abdf", + "regex": "(?i)^https?\\:\\/\\/howtoscriptrobloxandhack\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deffd66ab50d1ec07a21bcf28ca01b3e67d6f7050a268cfdb21108cc010ce910", + "regex": "(?i)^https?\\:\\/\\/howtoscriptrobloxandhack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ae559c6c65284e769fb6f9b7e0f3a5e83805535960829b9b158302b8526e834", + "regex": "(?i)^https?\\:\\/\\/howtoscriptrobloxandhack\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9e6aad00e2b77c4f98febf13d3760214df763f94d273d0850e9eb677fc9b788", + "regex": "(?i)^https?\\:\\/\\/howtoscriptrobloxandhack\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26e3866c480a89dd37f7beb5c97d9e7612fc6910c6db884a6ab864a52318b49a", + "regex": "(?i)^https?\\:\\/\\/hackskillsdragonballzfinalstandroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1eb37feedf1a32145e2d2eb67938f48b96461bae12f33f697b8eb1898c9e353", + "regex": "(?i)^https?\\:\\/\\/hackskillsdragonballzfinalstandroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef3ffdd0614c9679f0493cec5585b253a9e1ee7e85123efe9ce6921cb9c83089", + "regex": "(?i)^https?\\:\\/\\/hackskillsdragonballzfinalstandroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a9f4dee263e0365b03733c8339b1a4e837588b481e43d9ae4bcc8680604ad10", + "regex": "(?i)^https?\\:\\/\\/hackskillsdragonballzfinalstandroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c83522824f67353041b106f8d8d04917491d3c69789241bb3bc4fd9c2ebe263b", + "regex": "(?i)^https?\\:\\/\\/hackskillsdragonballzfinalstandroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40fa21ccfe6047cde4bf8ed3e4c0622d1beeed34ea0d30a9e45639f9ad3d5cbc", + "regex": "(?i)^https?\\:\\/\\/hackskillsdragonballzfinalstandroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3948ae42616658e4eadef43f2fa62636bcc5a9eeee015a36d5a4027bc0a2a00c", + "regex": "(?i)^https?\\:\\/\\/hackskillsdragonballzfinalstandroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c54be00427d4cb4c490d888f2705188a24c818013e5fc7478867539add1a099", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxjaibreak\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d57fb6f34a893ce42b30ae6472b948360f9863b26e45d6e8d95b543e49ba771", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxjaibreak\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "897bf67ad5aa20d806775b894f8c7522f93c4105b1c01c32caf62c865cc48bd8", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxjaibreak\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0cc0ea4aa7ef59abfd380404981288e2e35430ba97aa635c8d62209828c2185", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxjaibreak\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "619229f6365bc31ae1fd7b6fe64264d37de9bdff65d656d470b8b341aa55aacb", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxjaibreak\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cda6a64e480e7644b9441595bcc1af147063e4b036b12bb97b383771f1becb04", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1f0067ec6b78ea8c30fe383fefd47fcc2e117ceeca838b364c369c53a558cf1", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a70aaffd95254f465d01c01ded18604f298e8724d7419a6e054104cd26277564", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "229e0669f7948138a215d6f80fb6bbe427bcc674cddcf230c96715bc9d93a60e", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f48393eac4558f64cccf4f091f990d980f77244ddb381077a24ffca8f5209b", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9fe61f119a20d6b029060eab75eec13cb29b4ecfb3285756e9c5465822301c1", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c3d02ec8396a0292ea3c66ab2aa4d6c36bd16dc5640756f5e5f7c16fddd7c9", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd90a6c61edafdad8ab5bbf0078cb396c7a7c393c19e81e7c089b69299e955a9", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e9c05a78125d46e27430bdde739daef62b9331ae32107abbd5f9d35be91cbb7", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5003b6c7062833b8de9f1bb6c87432a8caff69da63efe63042ec1ae3d17825e3", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72a48383914362ed5940df12bae79860c9ded13bd9007d95137087dfccd8ab29", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbb0c89f9e151c6dea2807d9d13456d74c641e65c86d32c48d786acd51e274f0", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbff94e4e2a31cdf432910557f32e236ca0526d280e4f7349ccee79fdaae0526", + "regex": "(?i)^https?\\:\\/\\/comohackearorobloxeganharmuitorobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f67b33d722b47bce05130d342e0928cab79ce9f04a667defe262abea5c78ad", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e625fc912c07649038da8c14c26b2af5606177df8dee895426b84ec581ef079a", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad42c84bd30df5e536f38faa064f865b993402977225ef62c2c352faecb5fa62", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89a94379f37b753df5138d171b6e5596cfe4391ea8f7c841cf20beb7ba4ff26c", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a18cdbfd05de6c756b52c1df09dac4775a176b8b40ce76bddce6efb342b2462a", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dac23e3affd2825104869ef23dbf83c6df77daefcd2024ce4013abb94343997", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87ad4c643440d01bbea48395454861ef069d07795a9da1c35a795fe5df41167b", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "844fa7031886485afaa3929458d8d828de4aa5478c5d7ae5d05704638c9b48ad", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffde0ba76aa62703d8ef34db45f14e75e55ae12cbac183f7e60e9161e32ad21a", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c1269d31d6f498834c0def6069afc4c71322d937e792da82998ea66b5724330", + "regex": "(?i)^https?\\:\\/\\/imhansolorobloxid\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "748f1b850a546b746cffab2d426d4bbaa45a64765ac770606ce41c1b584c24e6", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f92e4c311e358571f6e9290b7ab1b5d8ad7b0e5302b0138fb1834fa863d7e45", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17023abc11d65ff1cd1aa47da6a56f6e0096e74074570b79ef07cc7dc7962b13", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cf2d0d95fd9dbee8a05138b3a26de65baedbf619e6bec26f098e64b7e56635c", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80e0f6cd3aa51b70c80f4645080c01f6441ae3cb134833db135045a021427166", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77b55c0bbce79381734d8b0a7ce2596cc4de8e2ad6ddecca54cc1a6917d67ad9", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0fb4f47628557196f139097c4253eef6b2a449b470354d16dc8cead851fb76", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "727eed2a882db0d9d74c846643e1a4be4a4d830606cb8fb5129f3cf42cc0f695", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a654245cb41b2c0eb74bfd738ca2a941965c1dce5b290c206f23905d034b493b", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0013be47880b2d4a0c73bbc166f62214bb98206976ba7a71b19f0366150992d6", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f615de6a99e4365ed233acd1ad7fac0ae3a1c33d1fd4269327934be30c719ca8", + "regex": "(?i)^https?\\:\\/\\/robloxdefaultshirt\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9706117dd706b7e33cda8fc0b2490a1de6df356e14c141512c500743cbb9ed00", + "regex": "." + }, + { + "hash": "9b03c717858fbfaa6b57f9f978b1b147cfe2d25553ed2d56eeaa75d055505666", + "regex": "." + }, + { + "hash": "098f27df750f6ff571b44f8a2445a661d4a0bdc00653661144ece9b222311fd0", + "regex": "." + }, + { + "hash": "ef0e40fc56446b59aa430f00e68366e3ffd69a69b4999219fe2e3b4f6c21b6dc", + "regex": "." + }, + { + "hash": "c382af1810479783975869f97fde5ef435a7aa3be76474193e742308e7ef7d92", + "regex": "." + }, + { + "hash": "e8140f8e90e5495fb55cc253bd7e5aae51918b8f2f6d31f5108ebe7b8f81285a", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12e1060f0dcac3f53ad34cdfd91319adcec239d9bcf9425af4fb7d67e45e0c59", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3905998ef902374b403ae7c5b7907796ee5494b54920547255179f5125e7fdd", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e6257b165c954ceb6505ef9c67c086e4df08d3f565837cb63c5cc1c16fc5bde", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdbef23221333d88ce05bf5b42e204b3addc25a445eac7afd71d1bfca5117099", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e834a648b5f21c474375153d2a52aa03a1e910b006d3dc06559d4c2d9243c9f", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13729bc1a282a76b564d75051ff1dd0460dbcc5da5aef4ef02d305565af3fbf8", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9545948a29980656553299a74b3a344c5ef2786729db307dd62f2f960efcb0e", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64806ec5099d649a06d9331a2e01db55651db49fd31b733b6d4fa8709a447aa6", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb9d80372568d36ece17791c8e4d51897fd5724424026a02c18fe6a3b57973d5", + "regex": "(?i)^https?\\:\\/\\/tshirtrodnyroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b5bdebcca24537ad7e6916a5cfe75ed4bb95831e25b4a459a90aec77616c6d7", + "regex": "(?i)^https?\\:\\/\\/tshirtrodnyroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46a788f5eab47cefe48d7045dc20cdfa7b0e0cd19e26c0894f086b30b6275c8e", + "regex": "(?i)^https?\\:\\/\\/tshirtrodnyroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56ea6a82e99cefe9a5287f02c524e6c9fb8129868df808d4e645316644a5f318", + "regex": "(?i)^https?\\:\\/\\/tshirtrodnyroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f929355250403716a07192e7862b4c7db380c349023771b1a7efe590f450825a", + "regex": "(?i)^https?\\:\\/\\/videosdelinaenroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "930002c1ceb999d1367c63b4d4f2a4c6b3530f962a5b2327d072b1d46acc555a", + "regex": "(?i)^https?\\:\\/\\/videosdelinaenroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2466b65a7995dfd808f2a15b95e5dadcf4880e1405a0d88e836c9d061eebf32b", + "regex": "(?i)^https?\\:\\/\\/videosdelinaenroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ceb3475801aa61e8070a811cdfea192df905d63f2a04734068c5bb1b4b35df2", + "regex": "(?i)^https?\\:\\/\\/videosdelinaenroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3381bab0ec60d262a5f1e14c76dfe51e4700ca033642c0aeca892490e6fa8c52", + "regex": "(?i)^https?\\:\\/\\/videosdelinaenroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee4c48df2c5d9cc9c209f58769bb4e73ed54727e40afe48bab97997630ef4ea7", + "regex": "(?i)^https?\\:\\/\\/videosdelinaenroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6346909617717b840b95e0709ba428d26e61d88fccf2163d2ab92ddc9e2f04bf", + "regex": "(?i)^https?\\:\\/\\/videosdelinaenroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3abddf3067d70a4c00ced36dffd06584e8a456c22f6534bf58a5de4ba476705c", + "regex": "(?i)^https?\\:\\/\\/videosdelinaenroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71cc8aef83176d228e7e3696ab4fc578fe31eb8ff2045303402efce344257c53", + "regex": "(?i)^https?\\:\\/\\/videosdelinaenroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc5e029d631520e1cb9ac0f0d61efa7be1c9e29488ae1cd1a210160971850179", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e628cd7b2fab25eee37357e2a598c6881891374427d8d8f54b77f523b2e78eee", + "regex": "(?i)^https?\\:\\/\\/freechillcaproblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "818b56b279dd1cf5c22acac80832961e9a5ed6a5925f0da0491ed539f6587c2b", + "regex": "(?i)^https?\\:\\/\\/fotosdecarasderoblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81b462897fa37a55a25a852fdbe7a398e9d6fdeb96a227dda5f98b0644cd5baf", + "regex": "(?i)^https?\\:\\/\\/fotosdecarasderoblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "569845347b8fb7a35199fa5fbf5e2f560c5fc8edf279622069644f04b3ada373", + "regex": "(?i)^https?\\:\\/\\/fotosdecarasderoblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "231d4fc56b471a884e541d24ba266f85aae0062d5d4cfc13aa35f109febfd3ef", + "regex": "(?i)^https?\\:\\/\\/fotosdecarasderoblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae9c5baab1e1591ac40ecc22c84bc5b417c9a689c1a62d0a35d7f1660189dd0", + "regex": "(?i)^https?\\:\\/\\/fotosdecarasderoblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "931ae2aa1dfeb4b2368b17025f665935cba9e512879358c1ff9313438f0c7b33", + "regex": "(?i)^https?\\:\\/\\/hackroblox2021speednoclip\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37be3cd2bb419855ac0509ee8f12fb02ceb3e33d127def3ed442b7121db92c19", + "regex": "(?i)^https?\\:\\/\\/robloxbitchlasagnaid\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99f4797c13bf8924bd05f3f666c355c2dec230281e7fe92cd642e076e6924a5a", + "regex": "(?i)^https?\\:\\/\\/robloxbitchlasagnaid\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53093cc027326977693b18e57ec8668b3d6f6178165216da91ed7a21ac227cac", + "regex": "(?i)^https?\\:\\/\\/robloxbitchlasagnaid\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fb6bcc669fe6eaddd9bdd0e24860da4bd4f93b062031ce6193b8bea349cb936", + "regex": "(?i)^https?\\:\\/\\/robloxbitchlasagnaid\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ff2d8c5f8e7a26d0ecd69b859ce4ef25df2e198c9a4348bbedcc737bf1f2ed0", + "regex": "(?i)^https?\\:\\/\\/robloxbitchlasagnaid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b57f39a59a771c11524ed833d53512b268d25b77d7787e0f1b43a913f8bce8f0", + "regex": "(?i)^https?\\:\\/\\/robloxbitchlasagnaid\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f6ec38cc385326411a65c0670d8c46ddc5b0ce03571e9ca0b46b9584506c577", + "regex": "(?i)^https?\\:\\/\\/robloxbitchlasagnaid\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e74658fe74fbfa99c9a79d0b243846da16559896b37926b8cec3029bb5a9ae3", + "regex": "(?i)^https?\\:\\/\\/robloxbitchlasagnaid\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd20b12d50892ee574ba0b29ae304b64a080cbac4746f2ea7f3e4d8cd77039b", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtitanic\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b29b3e846c7d49f0ddf29148b0b85a6ae91995b7388ff54e2a2e24acfdd36cd8", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtitanic\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4bf632bb6bb83b448acb45be018c5a99d05bad2ff9f98e2765bde73644cc26c", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtitanic\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b5975ccf2c8d58c14aeba7302a656a7bd248f60c1e280f9a1676719d48fd12e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtitanic\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78b0fed06500870e6c99166df6e47bf9a4c9e1b39ae0b300bb67141377c41d0d", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtitanic\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8dc3edcaccfb37bd7852d82ebbee71160307a4b4f9c6bc9db109f4820ace48f", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtitanic\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9ebeb730b8137f845a65b93bdc207c7886cb3fed6d652411b3d7829da18adc2", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtitanic\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e26d2a92e636e18df97d37246476a33725e3845fa0d6781dd0b2d1ad62d3d8c2", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtitanic\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56b3cdc63f6aa483a19b79730679e4f784976e6e113717ab384613d70b56b133", + "regex": "(?i)^https?\\:\\/\\/rpgfreerobloxgames\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d3d39beefdcc4368fc3f44db03e8d480b6fc91402268c3050e15994713dbaa9", + "regex": "(?i)^https?\\:\\/\\/rpgfreerobloxgames\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f88596f8ac7b7168c576866c55c43cebf509df1a5b54ff5c47d4b8a95a58f172", + "regex": "(?i)^https?\\:\\/\\/rpgfreerobloxgames\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de8c9ae0efeeb98355712268b4ccb2140556e4f2c75925c7e0e654f3d4f8121c", + "regex": "(?i)^https?\\:\\/\\/rpgfreerobloxgames\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb01bce20bcd863e92f6eea1bc2131ca7b51b7ea3fb46d8a936cc0a9f906d489", + "regex": "(?i)^https?\\:\\/\\/rpgfreerobloxgames\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b13ad5e55a7403c9cb06e14d452e3524060979a87832d91921e9b5add530baa", + "regex": "(?i)^https?\\:\\/\\/rpgfreerobloxgames\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "858c38722e0b5cbdca33668e805ed6ea55cbd5010120aca58dbb93e5cd76a91c", + "regex": "(?i)^https?\\:\\/\\/rpgfreerobloxgames\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c9a8fcb7f6163986f06b24990fb4b201df689cf0b68a48db7caec5759e2ca8a", + "regex": "(?i)^https?\\:\\/\\/rpgfreerobloxgames\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be52459a4608fa143ee49adcb0dbafda1c4e98dec3fba128dd66c16cb7475d87", + "regex": "(?i)^https?\\:\\/\\/rpgfreerobloxgames\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0541cda4b0cdfd311a131457701cbbe49fbcd5679261dbb81d1ef561bbdad86b", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "120210b7f47e8dd97d60730d61314ec6f9b589b4df81113da2dc0740aa6de4c5", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8818bf704e30ba0c2487cd93511aee08270f374341a6c424167dd3f216a48567", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84dc85861deeaff3e2a0bb7f85e0211a57561d59e72b8ef4e62d462548e02257", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2a398251f895e0c79f5074ad5bfd01e1efc341aae6d1a5650345b75d6eed38e", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01a29480ae6f620f7b9889301becf7108b0ce3d798663cdbd90ffda12665f26b", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "885b7010d381f9803cc206e436385aba13397cc74687ea4e0dfe07a3eaf3f06c", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "505b0ec2df33539318e41eb24758b38b7aeb71ef4437e17b39b18b871b945710", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f651ee88738ed50231cc63bb2ad59c44063c292e6721f96e013f507682d6047", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3871d847ed070c548a92a0fe04c4b30534ca98d46932a788b4ab518aedf02886", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fb5a19efec4cc70a9a237608d5aa739bc5dfcbc778f2409dc01e762b22d21fc", + "regex": "(?i)^https?\\:\\/\\/robloxcomhackme\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "768717902fe1fb727c006e5dc07bd11bd1be4e27e43379ae108ac428e65e6285", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d91fefca848b83915bf6ceff1c0f6f09b022a1a6fe6e3e64979803d26ee3156e", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4781b24df5f4cb180409ee538411ddedaa81d7dacce15a9440fa1b0562847cd", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bfc148326ac4bfa0d764fc81d4d67c0afd12d5fc5463ea6d8f44cb6b1a2572", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac9714a194edd875243b19aea4ab5b1be4562d4baf093f635d2e57bc55ffe8ad", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49f6e8894ba712789de2305699f9941c717365ec891b21d5a2296a76b308cb70", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37d026bf8f0215fe9f73171cec0a79b58d6121afe3ffe8c429560a0597cd17ea", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a6bda1a3ada0ab9bc62e65dd9c4c3ebc1e15934ac9ee567ce2f94908cfa4a5e", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54cb50d795e9fb750eb379bfdbaed8cd17fb3333cb5c1921278b6d6fb3fdecc8", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7098371d212ccc2376e7af9984b43acc2c3d2c5a2a164cb2dfa50366b9bf283c", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66f93981dddc907168d9f8ce6cea89d5850e92edc168e29fd8832aeda9810c49", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxojogodocastelocoma\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d56ae66188c72f2d4e61c4483a25ffdadeb82212e5b457298650141fdb7fc22", + "regex": "(?i)^https?\\:\\/\\/robloxavatarestopderobux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01480459a834af078bb64e960009b2ef486a25e76431dd851e0cd80f06c9498f", + "regex": "(?i)^https?\\:\\/\\/robloxavatarestopderobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4980e4cd0e782f40ba94200b5074b7141524b36aa3987ecbc5ac9df1b41ccde4", + "regex": "(?i)^https?\\:\\/\\/robloxavatarestopderobux\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eef05294a7d47fed6d4122429b96b5039686c57d33a05ae0c570396f9fe9f51", + "regex": "(?i)^https?\\:\\/\\/robloxavatarestopderobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33152bf68c16f050f0c3da09dc97356ca1e8edf53929a30b198ffe7c92e562c3", + "regex": "(?i)^https?\\:\\/\\/robloxavatarestopderobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "340446633b21e84336717ffba099ef1404982b9397ed34b5fe18d8ebc611a5b9", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b35e7f37095412cf59ed13af99567e349c1dece4f5da4170b4320e927a4c9ed1", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e6b05db061e2e68b7ab1bd7ce3409685079fd584ba46d8a3f7994fbeb358c6e", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9743863de114720f75a61e0f86b3058ca39627c82f38d3ae4384ac6238b28918", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dec2a3a10bad94e08368096f9d3cdc0455587b7b280758c46169fe403112769", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "184470759a0edf6a4a735f6e8d350afd9a6a8f2e33e115927713bcdfdd9ba699", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2e5299b2bb4abc6e9920a0b8ad5bb3d99488283e3eda667019beaa728a3dfe0", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2635b781415d67cec10115c6611aaed734d981cdf906e5a9eb4b1a383bb9ce", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b9da45e5e56eb0fec49a20f356d820e38a6c11848dbb5d647994ad174226d4c", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7b473f665e14b3cfac22ee88a9a52a67d551465a8aa99a9c886124fc7e76783", + "regex": "(?i)^https?\\:\\/\\/jogosqueparaterumavidaroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b18848c22276f28e481ed85cb936e6ad44c5a0d045b941755325fc73b391bf8", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonoroblox2021parte1\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c008782ad9074f4971abffa70bc88a29676fa924d3b531ad0fc30f6f1153b2d6", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonoroblox2021parte1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f0e886388b460f5ec8ba427a3c48c58a2690e4989ed3b8dd8d26c0c0942a63d", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonoroblox2021parte1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0477f253fb82e132c905a7e01baebd18659dfefca3c9a5847afeb64b9eb072be", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonoroblox2021parte1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebba101317528c968891661e8efc5e913b75b40605850fea7bc692384a1b59f5", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonoroblox2021parte1\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96b6763f8c09a3001da505c37d34381b88712e7d29536f15e61d88c8ecef4821", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonoroblox2021parte1\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36c8398386c32cbe2fc15d3527c01069f54d6044e9f9428fb5adfc03e4047d4b", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonoroblox2021parte1\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3405f213c24a887e43599eda9aff66e6451d55f4b083c30800882e85f698d007", + "regex": "(?i)^https?\\:\\/\\/robloxabeillegratuitcode\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05e2faa788c9535c6cf025d698b4e54b8ef450bea0611477e8c15b78df71151e", + "regex": "(?i)^https?\\:\\/\\/robloxabeillegratuitcode\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20b119081e49af6d4ba53fa4fc4f929f17016bf20cfc0c549350a69ef5c2eaf7", + "regex": "(?i)^https?\\:\\/\\/robloxabeillegratuitcode\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11de3a92ef47cf95a2b9026dfd07684109c737beef2de25f10c31fb4eece0ecc", + "regex": "(?i)^https?\\:\\/\\/robloxabeillegratuitcode\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75627857a8702ebaf436ea28115db7a835f959cfc680d22e3682a726a670a691", + "regex": "(?i)^https?\\:\\/\\/robloxabeillegratuitcode\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d785c1d18c4bd085fb623185f054dde40d2813d0ec64a1d67f31b78f6b45acc1", + "regex": "(?i)^https?\\:\\/\\/robloxabeillegratuitcode\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d25afd3391872c814af21fd07d69b11829d1b57ccf0ad5f0aaffa13c2ab6c9", + "regex": "(?i)^https?\\:\\/\\/robloxabeillegratuitcode\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8dfb2a39b24436af2faf51683030227107786bdfb29ac01f74654cd9dd4bea3", + "regex": "(?i)^https?\\:\\/\\/robloxhackgeneratordownloadnosurvey\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3df952aab9c0a0df3e6cb77c321ff1b00566a79559eef549779d70bc412059dc", + "regex": "(?i)^https?\\:\\/\\/robloxhackgeneratordownloadnosurvey\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87e1a73499ec6f85d8e00947dff82fa270b94a3c1427f8850f30f9de29c27791", + "regex": "(?i)^https?\\:\\/\\/robloxhackgeneratordownloadnosurvey\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d824008bb67c148ec742601cbec0429f25a4986b709e592f4e7133a2105e479", + "regex": "(?i)^https?\\:\\/\\/robloxhackgeneratordownloadnosurvey\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1822e08fefdcde5e59a1ca9bd64730a86b34a8e666d6cdd1ea4312e07a211a69", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdaparede\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c017872ca2cf54fa99861699932f80ed5a80ae3137a8a578fe843a43c99a2c23", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdaparede\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e875071eb1c3eb95665275acc25103c2f5ac16b66ba361fd930d64e12613efce", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdaparede\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a8ce3c1bfb3fa2292ca45042b4ad3ed3755fb40f62736673d76aceeefdff383", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdaparede\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48973d1e30b40784fbb6c32c13b99d9790fe935d4b342601854c71a1e356f855", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdaparede\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc757ffb42f78654e54a93f76bbde337dcc24630513cbed89ee4ae87b36b4c01", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdaparede\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc7724635e4a7524f015813d3e143cf66049ea485886e41faddd4b038dd111ce", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c02a764ab91bccfab61ede63783332b0adc6d74e1176b1764ee580471f0597d", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a4694bd4e2016e5c615e5aa0ce52bd937ae7f0da173062cae50f16e3835d034", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0625edfcd16f0cf47e857426c0d6fde30af5c66c027d98eab2225b13a0308f9b", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d12b32da2ef7b12fa77ff15e97d0b8e8907494eff627cea70d4012294809e733", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f000811623383d0b80d7a0297346258d7fa39a9ee1181a82944af6e7750bf77", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d5a7196cc73e8bfb1575537c0442627b42fbb09e923440367de3f662b448c17", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f15181002d37538b852de5b77ba63c91af1ac1ba9581b6e4a3a8af57fb7642df", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8be7bc4e02c24ad769e2573150123a42f4f6796dbcc25625277a3349c988f274", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd629f8c296c16bb946b5ba1568eb14f078505686f2d98cdf887a05f4c089250", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c5cf3570a874dd1baaaee0c6d3d23d87fee9a17127fc9c5d0e72f1fe16a4517", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4da04b790e5d2b6d99e50abc57ae1404d1e7c472a8e29fb7a7a08242a5ab471", + "regex": "(?i)^https?\\:\\/\\/robloxhacklauchdownload\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fd8dbdca36deeff9309c539c32d9e48f44512280cfbf1571b1d9c3dde75d078", + "regex": "(?i)^https?\\:\\/\\/codepromoarsenalroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96fdc88730d1fee4b2c052100bfc1839182e4abfdbf161992b51e93d112bd7bb", + "regex": "(?i)^https?\\:\\/\\/codepromoarsenalroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3dd57ed9c6665c62338655f12580943664eb17b34630adf00f34d184a9583f2", + "regex": "(?i)^https?\\:\\/\\/codepromoarsenalroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50650454b42a168cdd5e4ebafc79bd7589f6e37ef6440c3c8ee3ff66fda9851d", + "regex": "(?i)^https?\\:\\/\\/descargarrobloxhackrobuxinfinito\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51f6f3fcdff89c3fdc7e324768e4be30e94d5703618ca77d40b66a88c282a8fa", + "regex": "(?i)^https?\\:\\/\\/descargarrobloxhackrobuxinfinito\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0cbf3a7862c0ce4b229f3f7a6eb1ff71befe65bfed6efd397caeb0fd1e33c56", + "regex": "(?i)^https?\\:\\/\\/descargarrobloxhackrobuxinfinito\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8943da8899480825ffe68095d82df2d4bd139478b6aa96954b15412c1060f27", + "regex": "(?i)^https?\\:\\/\\/descargarrobloxhackrobuxinfinito\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "677500aea4159cfc7b22806d7762f9a0ff20ea311af762173f02aeb7d3748ef9", + "regex": "(?i)^https?\\:\\/\\/howtospawnmodelsinrobloxwithhack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b66aa4e55722234a13b96fd365510e91c1db80b8c3e279464696246013e89971", + "regex": "(?i)^https?\\:\\/\\/howtospawnmodelsinrobloxwithhack\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e9b39784d14e7cc78cf66366d2e7a672364b25ae2cd0d9d06c7f70c0f67090d", + "regex": "(?i)^https?\\:\\/\\/howtospawnmodelsinrobloxwithhack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f433cc44df65a9b50f2bf51e33120f07306afc1cc59ef8bcffb9916a09c4d6", + "regex": "(?i)^https?\\:\\/\\/howtospawnmodelsinrobloxwithhack\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "247b838f0cadfe01ffd52ebf3b271e827f4d61e07135d52b2646d02a95b16f32", + "regex": "(?i)^https?\\:\\/\\/howtospawnmodelsinrobloxwithhack\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bd2f78bc598790a64dd69588487b8ca09ffe6a56b0141db50646af62573222c", + "regex": "(?i)^https?\\:\\/\\/howtospawnmodelsinrobloxwithhack\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa532658d8386ae040a437322bc0d93ec50df89413767150a65fc748fa3da298", + "regex": "(?i)^https?\\:\\/\\/howtospawnmodelsinrobloxwithhack\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b30be4e89a6f52a0333d0e53db200d12f575109bafa2a6690a1bcad3a43eb17b", + "regex": "(?i)^https?\\:\\/\\/modderobloxcomrobuxinfinitoverso23953\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16e8a3b661904142466adcacd2d93518563ef26b19e533ad5834766f6075b5c3", + "regex": "(?i)^https?\\:\\/\\/modderobloxcomrobuxinfinitoverso23953\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "550ae38e23f1dce189cce13721dca5d56ba766e48910192d33e958dedfe0ae7e", + "regex": "(?i)^https?\\:\\/\\/modderobloxcomrobuxinfinitoverso23953\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d15f9ff926906e329de58d756f0b28241c9d53bf6bc409aad6c1adff6f56cdf", + "regex": "(?i)^https?\\:\\/\\/modderobloxcomrobuxinfinitoverso23953\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0958e09973bb4f514f8242fae2f5885c75d11fa23e091d2e700748f02c2361a7", + "regex": "(?i)^https?\\:\\/\\/modderobloxcomrobuxinfinitoverso23953\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80c15d5208af2382e3b2a961d558b9064eaca6b8251028db6d690628cb88e3d3", + "regex": "(?i)^https?\\:\\/\\/modderobloxcomrobuxinfinitoverso23953\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6e6a5799a2e5c9e6118ae0e8e93c4b7d118af74481fb1ed76ca8b25a21ae370", + "regex": "(?i)^https?\\:\\/\\/modderobloxcomrobuxinfinitoverso23953\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12c7cde0b8bc56ab51139bf84e648cfc381b2fe46a8cb21d3c4c00f167331860", + "regex": "(?i)^https?\\:\\/\\/modderobloxcomrobuxinfinitoverso23953\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "779a85f1eb4b1a08a9291225c828a47b31b28f050ce1007bf55a99e0ce36901f", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aeb5542e9dd898a0261ab763523973423b8f72d41a3f169b7cba81d92281b48e", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "021e434a8e0b80346f2fdd43b872b92d07c23b20ce8a3d2bcff6c4689101d174", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88d88b54e60ed3c57da949956dfb965f9f05a3524ebecc46b064cd99bd98d22f", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8535e63c82fc46150e752547245479f57247834fe24bd9271e28b61c986f8acb", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5276d2d5324c8fada585dbcce1b8e67efccf837315ddcae1d57a90e039db31bc", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66164d09ca5d19657413bc50a6fdf32ca34b296022dcfbd9a852713e90765d3c", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "113b080c0204e4bde7f9f0a55c451d67fd999eb1c7b9f0f840a100eecf10cfce", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66927efce6ba13cf98c2693e4684b91bcfb4921748bf3776469a5a9eccb42c42", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ad0064bb3ecf2d35c25e3729f4ed20bb2327e50484465e9594ef7d8cc00bcb", + "regex": "(?i)^https?\\:\\/\\/jogaroldrobloxsimulator\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a2cc1e56d008d0bef0815863ba20a0dbc9565378b0eb9ddb7a2e33da9b5751f", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d784474b2e7c89a0cb0bb3aa5d010a5c9537b4a1beba57f8564714727f9b3ec0", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cb9262a15969ee9aacf56abc6d7d56b613499003c9da299f2ce774dbf52df41", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86d30bb0be852b814ce3da1c34dbb9be7fca8b8979a93c6d9aafb48d91e3f5c9", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38d5ed8ac785c2fa45d454367134b084bd71716452a2ad86cb3fac5874f3c116", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82870dfc611e33580d5dfb8334ee059f5368f546b662b44b1edd64770648dac5", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b12571d9f58fc06b723eea15e4436b3dbcb37bb1893fb3d2766ca2adba5bce6", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac2ec32f5fbdee841366910a490f37cbe19192b278572ef330b5f6fb7f66bc42", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bef3ef7c5901947429ac05ce0b6d9859c63010b142e5cc69d71140aa1aa08a00", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db1b932f887261b7557f18ea5c171ef5b25d4d54cfe79ffdb082aa59a1bf56cc", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b716779b117240a9652e9a31bc87cb6a9df927ff6317a0a0916c91d8ce061cad", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bab725d8c30ec8dbf3dfd39c7cb100160354627beb372c505a79fdf59b3f5e9", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbe41824c9e1183cb1245ec13eb550eb98c24d9c544ca14f95bfbddfcfb5615", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca2335846a6eb8dfad539a0c47028035e7364140da78c3542fcc2cc679d27743", + "regex": "(?i)^https?\\:\\/\\/storyshiftfellchararobloxdecal\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9fad6ec9b258d51b527a5d340d36308f45bc1b2b6cc2d74f7d4a38163e51cbf", + "regex": "(?i)^https?\\:\\/\\/storyshiftfellchararobloxdecal\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dee27b382160dd159035671c2183714734f203f175c89723ab487afc5d02b63d", + "regex": "(?i)^https?\\:\\/\\/storyshiftfellchararobloxdecal\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cd0b879aa5d02df2c28d86710284c446eab070dfa88263a61eacf37288cbc86", + "regex": "(?i)^https?\\:\\/\\/storyshiftfellchararobloxdecal\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40461ba4c542337c685afeb30cead6f0a593b706dea602b681cc129ef3ab9207", + "regex": "(?i)^https?\\:\\/\\/storyshiftfellchararobloxdecal\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0a339e240ae3657c2ddb7c7c1b67c3547195d1e290d37ea234ec4d8836a9469", + "regex": "(?i)^https?\\:\\/\\/storyshiftfellchararobloxdecal\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eebf43420e73475400dd2ead99c5e7d40d6c51fbc4115f186b014ae4896238a4", + "regex": "(?i)^https?\\:\\/\\/storyshiftfellchararobloxdecal\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ec2eac6ea1b2b4d8ab038a2df07fde99fc737cf874843b5f86cd12f00d36283", + "regex": "(?i)^https?\\:\\/\\/storyshiftfellchararobloxdecal\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddc07ea6f704476a98c5cabddc52cb6e5ca126a80a5b0e4fd23155f36f7b21de", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0cabf58aa9bd523062107e688c25160e2804f089f39b7b88485952814be3bdb", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "383319e9a1b72f9dd6c69dd1377e14aab5605e9b8bdcdf4e30d81079ec3695af", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7d5e46a7216ec490cc39782548d5c993da79a72d08a04ed02ce7143462607e", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06df449b02d21a24092627885834d389a84d687bf832a803a80112eda47d4047", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7456b0d9f541e52ee77589ef65e1cc77366ef427b0997f41b0250d42885166b0", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae012abc23c74e01524584aa1ce783c59a748fb5a6c5be44d2d03311f172de18", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4756f5a8aa8a3854065bd1c2fe1fd5ea5848785ac07edf8a83716837b24359e1", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52c2047843783342dc246ff992df142a84fdf69d22353dadf43e4782ce1d21fa", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36e4a50b277e99ca574ea47d0f53336665f28b7fbb7c337deb60cffa8a1ae535", + "regex": "(?i)^https?\\:\\/\\/comocriarscriptprajogodejojonoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac0b50c558e8c4380888694ee717fcc0a89738c9060423fa6033a1d40f7f7f43", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1faf54eacbc6faae2cccd06ab48a007b7e53accc7156ec12f97396185bb3cd7", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9426ecd07ff099943a8c9e6e3a309e47680361f7488eea70d4017a2d868178f4", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9722662437120e0f85bf872e24a2cb706db5968ebf3074e9621615dbd796b52", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7ad8670b98c83811dc728e1668e62ef454dcc762249bfc14df6eb521ec43b03", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47959dc82e18c353f12dac85b88de0455634f8b871a920cd6ca61ad109eb6662", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b27ae02e5da03a7fdfd7364a1183684c1e9b14b6a708e70bdc25fe73ec3d1f9", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddba9c91053d10976993d067fa92f0d6cd41ff31156d569e1207f5c3993511ed", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b7843ccab6d6f208535da8cc9928128c55fb8478e62b41be42b01d0ab990a46", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb2a82fc086031f4908d3d16e3eb6ddf6784e4acf69877e68a400b78eb5f3997", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78fdd4e74b3988985fa8f03edf4a10188c15e2986ebed0e60da0527a6ec32811", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "879475bc3ea4dd3ff5e0af961ab0ad61c4aa28642222bee64b8dc8bd2db54242", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14abab9005d545c011bba84e66008599d7d55a817f189d0563c302e3b891b4cf", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96161364747a44a2d3f476956b2faadb01e4a9b3289d7b57aa0e34f159cae953", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeredeemrobloxcard\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c499b4ae6888bdbbc2e2a86aac56bd19507f73774dc83b0f5fdac3e5bed7e63", + "regex": "(?i)^https?\\:\\/\\/freechillcaproblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc4d19125ebfca40c197e95030899af744ff20ace92554773f1c7ceb5fa74df0", + "regex": "(?i)^https?\\:\\/\\/freechillcaproblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "060f7fdb503d91e0804e0e71455e441f44e64ba8a6aecb32aa399e814a9bc0ba", + "regex": "(?i)^https?\\:\\/\\/freechillcaproblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2ceae0386f93a90e1a4590db297b37c01a0ad2a24c63b95e8b24f0a432c95db", + "regex": "(?i)^https?\\:\\/\\/freechillcaproblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "713bec13e22d8b9026c6199950f59979865650209b232abee9856e7e6f96251e", + "regex": "(?i)^https?\\:\\/\\/freechillcaproblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4115dff0c0df9faceb7f89a41b02ee15c009a8d1e363eadfb7b01bd3c972ddd0", + "regex": "(?i)^https?\\:\\/\\/freechillcaproblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "578511c6c9db3c9abad78fdd3b78503ae5d6d6b9a67784859241e9738ccea4da", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af500b8cd21c9409b2e3e090aaaceddfe8518655d3d40d21c41cae15041d184e", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e06ee9b33bb0cf2c0258ade5f58f66e86246d943d6f42887ae24425f8e59500", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe022c473684dee781ec44aa87386603087f82427f2c8ee879e61aa1f76f0b77", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28f82205107d3dab231811b2c1d8467ca2193eb368d6f26da909aa91057464b7", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61098f8d90d1ad4971decac60b2916d45a36621d49541edeac1a582051862bc4", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e3ee18cf39b136e4aef37e365b74a0a088dd4e262b97809845fd140c637efd9", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d77b5687f87af6778c93753c196de1677b5048bd9d1a2e3804013fa01fa2000b", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be81151d33e92af9d6f3130051fc4dc55be0430c852c96f520e24b0911941379", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07c84e2cde7ed810f66d452321f62ae72ded80f6ce9747297bb1f5ab0ff9c973", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "454fb75950b92aa4891a32917e6224e49087029c88a1c8590f01182d3cc9b83f", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c73ac73dc03896606b7c342e8db06807280f3021467d504c788e90b220fd55b7", + "regex": "(?i)^https?\\:\\/\\/comohackearropaenroblox2021\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76ccf7cb08ea73c54d4fa1aa2bf36744c11edb1f9c45c9ef5028b664872c845c", + "regex": "(?i)^https?\\:\\/\\/robloxwelcometobloxburgmoneyhack\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f945a69ec3ba77b4fbd06ab189c925d8b9be5d89b9a342086d7766f470bda9aa", + "regex": "(?i)^https?\\:\\/\\/robloxwelcometobloxburgmoneyhack\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e83db99b8b6e7b6cdc86a411cec3b23e81d4e3b6ae1beedc171b9ea4424c5b1", + "regex": "(?i)^https?\\:\\/\\/robloxwelcometobloxburgmoneyhack\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a00c9ad2009153e390e221843550d9a0920840f072f9de8a54fe12685ee654d", + "regex": "(?i)^https?\\:\\/\\/robloxwelcometobloxburgmoneyhack\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c14797f26722aed8a250c724cf26866c32c37cf1fb17d21f94aafbe4510d5a2", + "regex": "(?i)^https?\\:\\/\\/robloxwelcometobloxburgmoneyhack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dac46d2c1c22f8948d6a869fe27cee902214f2d6840d035f86762a5f874c4e0", + "regex": "(?i)^https?\\:\\/\\/robloxwelcometobloxburgmoneyhack\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb495156eb07882500d6497582656d2f422ced6f58bb94ca2695adc2d7e0880b", + "regex": "(?i)^https?\\:\\/\\/robloxwelcometobloxburgmoneyhack\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b3ae8a1ef9772b3eca3920f4217069f2ca1cdf3723b2e8b3e1ffbeb1dc6b6c5", + "regex": "(?i)^https?\\:\\/\\/robloxwelcometobloxburgmoneyhack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11f5ec9241b333c6e763984a65d4095706c808a317887e7370f2301f75b01a77", + "regex": "(?i)^https?\\:\\/\\/robloxwelcometobloxburgmoneyhack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15acfd91047083d0b94bcfd3e2116315817d8e4e617f94dbd78026e1d3c2d948", + "regex": "(?i)^https?\\:\\/\\/jogorobloxminecraftzumbis\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb683eb7ad98f2d9e1d8a552427bd7f3a7408f52041c58740c49474685cb2005", + "regex": "(?i)^https?\\:\\/\\/jogorobloxminecraftzumbis\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d2b4fb8398532e54b1ed9d7b61820fb782f056e5c9633a9d9a25f394adc7d3", + "regex": "(?i)^https?\\:\\/\\/jogorobloxminecraftzumbis\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d91fe116992aa430c258ea0c174c6d2701c87d8cf5f0e083693323af796fc0cc", + "regex": "(?i)^https?\\:\\/\\/jogorobloxminecraftzumbis\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24562db7d4a082de57ebc6fc3cacb7f5065d057c5e56fb25ef3dc216b7bd107f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxminecraftzumbis\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80067abf66779e6791d82b710e112879440f9594e3f9020066e467a90c090545", + "regex": "(?i)^https?\\:\\/\\/jogorobloxminecraftzumbis\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52eb106603d3157c6fa49631c280580aea2681b05e54052eaa4ad862e6e23cf4", + "regex": "(?i)^https?\\:\\/\\/jogorobloxminecraftzumbis\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05265b090ff9d8036433a145bdcd7a0aede1fc68f616a796318ed6b4cd5c3612", + "regex": "(?i)^https?\\:\\/\\/jogorobloxminecraftzumbis\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4514bab07185092bd3ab7e925081103cc8a571436d9b7ee27c807562bf968822", + "regex": "(?i)^https?\\:\\/\\/robloxesphack2021\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4202c32a39b6d442b239d09c341ff762397d477dfb7b08a6f18359af7a4bfde8", + "regex": "(?i)^https?\\:\\/\\/robloxesphack2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf8b25d213e1b934f7d4922a666ea3a08cb2ed9f43ef788d7378bfc521f9910a", + "regex": "(?i)^https?\\:\\/\\/robloxesphack2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85b0663db4bdb7928ab2a2fb37c47ccb796a8f95366a9b18fba0cafc91950423", + "regex": "(?i)^https?\\:\\/\\/robloxesphack2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d44173935e60aeeffc98858d294dc0324b07ee26e8b61f5d4dbd5394008280", + "regex": "(?i)^https?\\:\\/\\/robloxesphack2021\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2d11e442cf3e09d30b381a586079dc6e0b06f99541aa5b84bb640fe5840a1c7", + "regex": "(?i)^https?\\:\\/\\/robloxesphack2021\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76cc0471a6e5d51407c331450e0e3b6812674e5be54c3003c0fc6374ffbfe334", + "regex": "(?i)^https?\\:\\/\\/robloxesphack2021\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4246b6a7729500acb42a0e2bbff9c4660a142f15d7cb6a16204cdc7b317354f", + "regex": "(?i)^https?\\:\\/\\/robloxesphack2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbe4c095254c242d77be2524b341203e8e9fba1833cbe5a4721c1289bc63ef25", + "regex": "(?i)^https?\\:\\/\\/robloxhacksformoble\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "846654a2cd420efdf03142ede29cd3bafc2bf1c006fec216efe6d901a2aca7d8", + "regex": "(?i)^https?\\:\\/\\/robloxhacksformoble\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5eff1618dcc979355c4d151f80c37d7334feddfb2f12b413325eccd36683dbf", + "regex": "(?i)^https?\\:\\/\\/robloxhacksformoble\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2a11a099c717264c0b122ca7d48e3815e6bab41026b0c05d64afdac8b237636", + "regex": "(?i)^https?\\:\\/\\/robloxhacksformoble\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f436fdd7b08a9bb33a4d48406d573c3915c1d4bb60d8ca185fc7c5c5a7e42f2", + "regex": "(?i)^https?\\:\\/\\/robloxhacksformoble\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c785a80c47ea32658d6822d9dda9554078f7e8c35720b294f22aa2bd4dba16", + "regex": "(?i)^https?\\:\\/\\/robloxhacksformoble\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f00165e1b6e6e0feffb005c9186872e531edaaa622b3d63299174d62623584da", + "regex": "(?i)^https?\\:\\/\\/robloxhacksformoble\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9762901dd3c1b1f8c92884c1d5d73ac02e8ed17fb60ed62663d1fe1766a42e8", + "regex": "(?i)^https?\\:\\/\\/robloxhacksformoble\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a164ff3d08faf48f960fcbb663cd4134c9dee4e604d1a7c90103cce85ab966f", + "regex": "(?i)^https?\\:\\/\\/robloxhacksformoble\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f78cca1dbe6bc34f2a7899af2f14ab0d86d05e40bbc8a4e0f9b3c725a3fe26e1", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46aac39e803a218bcd22fa575bf7e93a928c5855a8e3d84285b2cfa02bc6e814", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c339076b25256ee7bfcf088254d454913c59d63ea8337855cf6f8370cb946a6", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6797db64179fc0ea301653b280af984b4e00555bb0c5a895b0624b9d097646b0", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3902c352ca72a08b8d957aa8b9f97515dbe84c8881e097888e2298cb53cca9a9", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7618d679d6e41fe9b8f40155c2339734aa50ea11baee0430ad43ed4c3ae27bfa", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcbf4fb744b474e58a6bb46b955531405dcca371dc7125e5beff7c78208cce22", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f0605dd687cc1c04801ba2d8994255cdf9fdda5828a8a74a5f76d9aaeeec5b1", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd77d34a253b6fa923dfc24275d84332c106120f9cc386ae0936b1e9c4363d3f", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aac4fbd816bf0cbd1f681992f30416e3ad41948cb016136982dfa20a4f1097cf", + "regex": "(?i)^https?\\:\\/\\/earnfreerobuxforroblox2021\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae30f17fe9f0944c0210ff0e742cdc709260f7b1024cea433ad84e4977a3ddf5", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d20e2972346bd90c7abc84ec4fbab7dd31a891a19979d4f57981e547bdc696bd", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd14a4b280c92ac3d9a182b71152ef223083d19b16111517ed314e4f0278e9a0", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e4c94095eb122c151cfd613210dd2f7be29c5dee58114da3a19b3ff7b45a23", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecefeb55e977ce9331ac1fa4bef0933f85c406b27a01000f9d77e7c8679fcc59", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96e8a272049071a65955d9f34c45d8f299e7c8237298cbd7b66afd5a9b151520", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ef1a302a2ed80e6880dac0065867ebfd22c0ad9318f88e34c5c3fbc57cbb465", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "206be68cdbca715ee03c291fabe3f338ff6d42a0902eb6081aee9e3094486a42", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bea7bc62b5efd9ef8c12c9c6d71af1139c039c87a4e62e1b3de0183dd52d5da", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8ab9b1f8eccf0af12936b4f522afd991d08f6e4de57fb15fac5b5d6ac861be3", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1389cad660ce0b4d3cbf75e40f12abb88b756071e9d5a883106a5047e655a456", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakbtoolshackwin10\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b32f5ac608cc2fe022ee415a146b9ca58616af6ff764bfe2d5bb734a2a5a5f5", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30047c6416cedb1f23e29736ef3f2ed8bc93f61e34beb561a069551f93254e3e", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a85f5f47947dc18f4dc88f5e4d6fc56427d3109be2207ec3350fba6c1a88543d", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c889acecb60f5e879273e5876233ed72f7d01b6aed42fe679a890ea74a76e094", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05df5307cd45026ff7e4fd2f2204dad2aa608ed863c1bb49fe945b8b2c1828df", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd14a2534a0f06d15f2d8ca0532455c0138dca86f6b1c8837df8b787f6d13993", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93a9986c8f4cbdf0fc2395001d91e72fb0cf3291ed8cd6beefdb1dd28ad0968f", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e3d5914bafc217b4f50aabf0602c9874c27e60bfd8d63482ff734c8c4ef801", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "defd8579ca31f6c520e50ba1c9054b18d7a392bd1ae619e72962d5e3bf2c27d3", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e96724a0476374a5900a083d7338c91548d3f17e097f8d330b795c25570ddf7", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5e3b3cd109ee80ed1e2348dad36388e7aaa8f13cc00aa889fd6f0365900872e", + "regex": "(?i)^https?\\:\\/\\/robloxgolddiggerdecal\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85542cb6fe83b814c56804c479eb82ea9b7b4ded7c0e67d55f8355e825bcdd73", + "regex": "(?i)^https?\\:\\/\\/dunkindonutsdecalroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9157dba67cf6ab7e70bf7f5a233c3e7f6e59a44d10d21ea18f7faefc750edaaa", + "regex": "(?i)^https?\\:\\/\\/dunkindonutsdecalroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bfa7610aea44fcb3057a4100745807e2b9f9a5544b661499e53c02c34e2266e", + "regex": "(?i)^https?\\:\\/\\/dunkindonutsdecalroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4880104bc05f99b9a172ab478b79b23e25075a77a765cfb6dea3932085552c6e", + "regex": "(?i)^https?\\:\\/\\/dunkindonutsdecalroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e3e1aef407cc82a50e12b1f628f4bd9d46d508537bcd20b5148c794a36bd1bd", + "regex": "(?i)^https?\\:\\/\\/dunkindonutsdecalroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ff426dc7416aa24e12d218f9ba23a23d27e5f7bc6351906ad31fee43b52a003", + "regex": "(?i)^https?\\:\\/\\/dunkindonutsdecalroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e3efd789ba37618a9a56963f62f800f21738e0fc559ef77ac122af0ad4c61b8", + "regex": "(?i)^https?\\:\\/\\/robloxcolorcodepink\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c117aeb8160261d197d6753fc6d8e1412f4579dc3a72908e8de3fd4f9d9bbce", + "regex": "(?i)^https?\\:\\/\\/robloxcolorcodepink\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a6829900b53fcdf7c7f97c57629ad6be1f2c483f8590c9ea5d94a1b0a2f2f46", + "regex": "(?i)^https?\\:\\/\\/robloxcolorcodepink\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c742aa606dcbfb1f8446ef592be50a69089c62d671064cafc5759cab0214663d", + "regex": "(?i)^https?\\:\\/\\/robloxcolorcodepink\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4afd8b22ee60b26ba6e21f7ba570729cd40bba5fad44831b792ca119770a8e8e", + "regex": "(?i)^https?\\:\\/\\/robloxcolorcodepink\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01877280a969652239a1b051fb14fbfa51f62a09115bfccb426737d6dea2e400", + "regex": "(?i)^https?\\:\\/\\/robloxcolorcodepink\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f68dda4e5ce3cd3d57d92f4c98064ed7e2c1f5a06f1a1565f26dd0910bc8189a", + "regex": "(?i)^https?\\:\\/\\/robloxcolorcodepink\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b1352b2c8d2716f92cc71dbce1a00dd239b46b641226ed74f2aa4f036da05cf", + "regex": "(?i)^https?\\:\\/\\/robloxcolorcodepink\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0155fabe76c08fcb7d07fa86af1ec803f0d39b9fd92410fd5fa54791e00657b", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdoloki\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3cff106331a9c31594ec53208bf9b3ae734714074e90d5f759f2dc8f79691ac", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdoloki\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8764c8cc3f640cee690e44fc1417427cd1b6737dbb0f011fc11078b20bcc8a9", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdoloki\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b69c7e11a0ab0d975ca9ceba3344842bd1ce4933a88576678d44f85385f0355", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdoloki\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dbfffb37cd0555c42304a46bb590eb933d232dc7d2f3b527c786f41fcef56fb", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdoloki\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca5ff2c1402a1b777561789251d8fb9db9edca220861be5eef47864ee1c586aa", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdoloki\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be0d956c02b2565863242d3cd3470ef264ce1b43f4aded631436de18d58280f6", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdoloki\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1138e9fa9e2aad38f0bbbd121f66173713304fccb3dc93c5afe8ce643702ae5", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdoloki\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "223c3460573f5467a56a2ec6821667f48b9f324e9831a3fd8bd4cc47d256379c", + "regex": "(?i)^https?\\:\\/\\/eliterobloxhackers\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ea5d1e74e45445181714294487a73fefee0fb9aaae12ad45e0f9f45129a6609", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b7cb47a068e453ed5d61b2372222bce30ce5ad287bbd3ea57a91295a95e566c", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebfa5d4dd86efb9524e1ccd900d715f572b0b934a7e85373032978ccf6791ea1", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84207f39b69c3c44ddd308d6f527e2fea07ac34aadf195ad24736f798612d0e0", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1edbb03d84be75c6a563d489eaed107550a31a23647be3cf9db518eb2933ec3b", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35f7ff4f62647f89ca59d10a2f2b295139adf17081a4a18ae344e25d338ac506", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "825916c01a090d2a77a0c98d5c4454a1f84b3c375cfa4313a4c546d4ec48e114", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fba51298d072cf7e80f5d37998abf6e15827813c9984c3ea7c385ab77dd217b", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8d183487a187fb2cb87432e8b29ef847b35de3d260b45eb87278e10ab6b7dc7", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4044590724664d4d8f958d7b7661eb77e27ab60f2cc91d311d34bd26b0ff054", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0480b72a8519eff5e765974d9db40aa785529821662de22506bfc8d6e682c65d", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25104b43ef2513bcbfc5bdde30bd9d321d01e3d1b52e398cdea5eef9a9e85a5e", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "966b50d582656e6540df2481141891c69c1f8eb5b62abf98b349fa73e60ddb0c", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e10eda733b5bb28e5784d72e66e33d92bb1e64aa1cde1a0c73e7101f1fe1cd6", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d43eff16ca705183a945634d882113daafc5f702cafe8a0ad7acf873754f6e7f", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cae18ad2adf75bfc5d8dea81148feed1437052f4841c8bacb3d37e4b98a9bd0", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "594992a33ab6cfa1d35db647e1cdfd06e5ec46a1278f6bc9a2313da4944a5d8c", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d7d97695ee34c2b0cca14b8b33e5a7b8c0cd23c50d6993a443f727aac81f47a", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d430e9d50239e35fdace363a997d97e22e2731b61a742c13fecccb57aae8f74", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b196c1609818794c4725d7a2031ec88e3671132124c14c03a2a60002c32ae71a", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8295671c3d614767d3bd1454889c5da1838c3468dcf94d6c24064d52cda1c0c", + "regex": "(?i)^https?\\:\\/\\/comoirparaumrank100hackerrobloxphanto\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c90e0e8b3c5b73bbf7ebe376d0425ceebb25a9ff69efda4fdfc05a36ac66b4ea", + "regex": "(?i)^https?\\:\\/\\/howtoinstantlygetfreehatsonroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e10e821e0d38930392c6480d58954cebedb2fe1966cc4a4e2fa8a3ec5cfb9512", + "regex": "(?i)^https?\\:\\/\\/howtoinstantlygetfreehatsonroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa808336b2731fb5ba4af338c167fbfffaca8a552573b943eadac76845deca81", + "regex": "(?i)^https?\\:\\/\\/howtoinstantlygetfreehatsonroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25691b95deb303b187cd8d13f34aa31f38379da3d18bbd392918994a052fea1e", + "regex": "(?i)^https?\\:\\/\\/howtoinstantlygetfreehatsonroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1e187f1fdae2cbad555c5bbadc9b31fdfdedbfe250edd0bed8b036f8f92ab1d", + "regex": "(?i)^https?\\:\\/\\/howtoinstantlygetfreehatsonroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8066395c634ba80baf3f7298180252fb2473a4c485a6a1e58c57ffd230d1680", + "regex": "(?i)^https?\\:\\/\\/howtoinstantlygetfreehatsonroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5138d54b42089774678660bb509d09e6a27c654307f86f366de867d84dffe90", + "regex": "(?i)^https?\\:\\/\\/howtoinstantlygetfreehatsonroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d30954bcf7c25ceb5daf9edb8a07ac4ce50ef3b0575a9453fe2c462447359b1", + "regex": "(?i)^https?\\:\\/\\/danielcretu10wixsiterobloxpromocodes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c7f55adc3e8e0e14049aa7caf25081fcf6c51ad4da7bd15c82475be4673d726", + "regex": "(?i)^https?\\:\\/\\/danielcretu10wixsiterobloxpromocodes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8454e445cfe3d73437d9da54bc7d3b961958c1bf83eae98a980198559c84ab0f", + "regex": "(?i)^https?\\:\\/\\/danielcretu10wixsiterobloxpromocodes\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd87f9ee7eeee8f4a6a24a3b39cdde7bceeb0693ac6238668f1251a0fdc59534", + "regex": "(?i)^https?\\:\\/\\/danielcretu10wixsiterobloxpromocodes\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33126a6e4bf81ab76aedf97975ac5cacbf5bf08ffa11df3d41b9d4672aeecaf5", + "regex": "(?i)^https?\\:\\/\\/danielcretu10wixsiterobloxpromocodes\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0665b801d568bad490eff10ac9d948e53330eb0bd0b5a0ae4dc46a0af76495cd", + "regex": "(?i)^https?\\:\\/\\/danielcretu10wixsiterobloxpromocodes\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0160e9103e7a2664791f953a80b5893150c076ca6c6151f20c52c07516eebdcb", + "regex": "(?i)^https?\\:\\/\\/danielcretu10wixsiterobloxpromocodes\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd5baa358da20a61eb113e232fee3c4d046ee13aa2a8f9b2582fec59c54f82da", + "regex": "(?i)^https?\\:\\/\\/danielcretu10wixsiterobloxpromocodes\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31524de847d1d2a4ad4e1533fe65486f7b2e95421f54b247d4d80fdeb6898d79", + "regex": "(?i)^https?\\:\\/\\/danielcretu10wixsiterobloxpromocodes\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b05dbda2531caf94eb3edebad5a0b4c9039f4ccdd6e364d48328ccacc9d2d3c9", + "regex": "(?i)^https?\\:\\/\\/jogandoprojetopokmonnoroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7e30e4ae3ec35b2f188fcd1397efac52e63b96fc0abe671590a24c77478abf", + "regex": "(?i)^https?\\:\\/\\/jogandoprojetopokmonnoroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f92a43e592db1c32a1a41af2fa80c58198c6e0ea36ddb9b5506252d0c99b2e0", + "regex": "(?i)^https?\\:\\/\\/jogandoprojetopokmonnoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b4ccc0377d22de103e0091e8516e75760ed17b9a8817e3d6d4a56269570804e", + "regex": "(?i)^https?\\:\\/\\/jogandoprojetopokmonnoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f952b4f213e4bb064c1486079609f3a546fd638f0d07d26039b9b15609db88c", + "regex": "(?i)^https?\\:\\/\\/jogandoprojetopokmonnoroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a53fcfae07920884a1f3e9a63edb795020fd59ed58a9f5056a1d069ea26b4936", + "regex": "(?i)^https?\\:\\/\\/jogandoprojetopokmonnoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1323ae180c05d0d6d0a17a7e5b5ef59c71d5772d18ebddc97e0c8440a22b1547", + "regex": "." + }, + { + "hash": "1d23d5d44a9b33cad6345fa71516d52501d153f36f349ed401b5d6f1d8acef63", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae75ab8d119f236a0c0cdcf7aca90eee9b55ec724d92fd19ebe29d35a99950e", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65df24ad012400a592024cca200517e3952bc08b6e70d7d4dd754548f894435b", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ca22e43d05b9d772f85a7a303878739b3ec7285c33aaa454b71de01c394b9b8", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7283f341e002c00f2f8db3093c9c9a4bd6db0ed6644effd1f0b3d33c2f307785", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7e42c3f276e28a03f23cac2800abb727b7bb911fc1b29d21dc8b43c87638fd", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ffb34fd855cf15e93dd16c9923d89b033aaa6cc9bcbf8c8c255a1f41d16ab29", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a15ab06fdb0d46b9c85888ff16483345cf33c904b999455bda49db444167e5", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "277aa05ba20520e65750c7a24211d15922ec30b84491354eb155848314802c44", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "069df47e6eb6a59890d7f982d4b46bc7af9ede0d5d1b19c9dfd1840e0113c73e", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2c3dc80c446b2e871550f6d167625dd3cb3db4d9c7c1c6ae00e91b8f88ae67e", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1c7b6b2ebed9479c7880c702454e5f2e7dea3de6687fbbca7d7b18a41cc41a8", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fcaa19829d703bc660ecdb45ae410d881b5910ecc5a4c1530572bd71dd7961", + "regex": "(?i)^https?\\:\\/\\/hackroblox2021speednoclip\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22e3e64c07444ecfe752c76f26224d2c457de7ab57937c3ccd7c1cc1d1bff414", + "regex": "(?i)^https?\\:\\/\\/hackroblox2021speednoclip\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "defd3f39a050f759e90b155529cf3831a41c9216631b27cd1b42f1c5a1267b5d", + "regex": "(?i)^https?\\:\\/\\/hackroblox2021speednoclip\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94211c9145f827272693e31fed649bfdb58ac5bc79c3b4ae3bf988ddc728e125", + "regex": "(?i)^https?\\:\\/\\/hackroblox2021speednoclip\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b397b83f28ac56c83675e126ffc6e3279faff8df97fc80c77edca28d09e4e3f", + "regex": "(?i)^https?\\:\\/\\/hackroblox2021speednoclip\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf7b28229a897655d4d25f6b330c504857861a037b67550a334acd077d0b9aca", + "regex": "(?i)^https?\\:\\/\\/hackroblox2021speednoclip\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86017f8e9cc25217de03fabf7de7da99a19210e4d5ed6d62fd3be159be2f3088", + "regex": "(?i)^https?\\:\\/\\/hackroblox2021speednoclip\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa45da1cb3e910159b366fee9dfcdb737d7a43e94043264f8fb57043690bb9a2", + "regex": "(?i)^https?\\:\\/\\/hackroblox2021speednoclip\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aeaf658c1c608f5ee1d49015cec4f397c755e795b876975a0de2acbd382cd5c", + "regex": "(?i)^https?\\:\\/\\/jogodedragonbollroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4073719fc776ed6d7b2138976000c9e2fdd532041c39f9bf86d3f42388e031b9", + "regex": "(?i)^https?\\:\\/\\/jogodedragonbollroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f6574efc4a4eecd70565fdce3760db0ad6caa449ae9957c90bf88068ec4a298", + "regex": "(?i)^https?\\:\\/\\/jogodedragonbollroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03c09db0a7368bfcd9898cf0c487cbf4a8bb0e41a252abbce815a9b5be9c934b", + "regex": "(?i)^https?\\:\\/\\/jogodedragonbollroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5eee55cd69abaa623b9e0dce22ede7c0435eddbe121f6f24e6d8f6c93569ec1", + "regex": "(?i)^https?\\:\\/\\/jogodedragonbollroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff05b779636ea7a856ca4fa1dad5387c596db3915dce948862cb12400c9b1f6d", + "regex": "(?i)^https?\\:\\/\\/jogodedragonbollroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5234e7a442680db8d858ba1a87b0a0b0c60228f6d1bdc07f71137fa418495fd2", + "regex": "(?i)^https?\\:\\/\\/jogodedragonbollroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f79899b516ab736ad31ce500d9f39b0321d6d750dacf528e8df4ee500fdfb079", + "regex": "(?i)^https?\\:\\/\\/jogodedragonbollroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9287aed4f6c4a6db387f984952c3a3d68bacc753b3251ec1057724eb476bd4f", + "regex": "(?i)^https?\\:\\/\\/jogodedragonbollroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1ef6625997b2694353a2e5ccd37890763a94415ec88573205aef0832546eaf3", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3280000abd668187030f1c9392bbc0e4f71a3c3dfbfcd3a20db2ba24376303a7", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25ff5bbba40e485ee88cb3af353f0760fd8f25be47566609eff22f6dc193b3a0", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30f709ad32e1e83d79705ca22b5bc4ab621ded7e2a99d7fbbba8f3aca7bc783d", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5190a954171b8bc950d4000b66c93e15ac3efd83e8b8cf5fb4806b481a13607f", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bfca12a618f2404a922acf1df86e415fcac3a59766287642b1865caedbafc1a", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9777a6a62d5c00214bd54ee5b8daf2c6944895fd071581e0022a44419c956c9e", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f35bc36f0167384da5e205ed99f07fbfb6c62196bd6757787059e6a2acf52ca", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd5d494a37b9af62ed1ea4f8faf57eac1e347e0c5143638ec1ce58f0cf6d4fdf", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80e58139080b67dbfd315f620b2caf1ef5e75044e5712e5fc0301702e4de3f99", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27c6133a695ac521a2c3d50fc7747f56a4d8de1f98271c24193f6e4b99ff25eb", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65d087427d39bd87dd173fe1dd765ec74530aaa4b236522c6040e0e94ba577ec", + "regex": "(?i)^https?\\:\\/\\/robloxiget7robux\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d3b169d842a674ed66f303e5ba597edfbd597bf2de78fd49b571bfc9e3678c", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e7f7d1ddf069c31769b93ed3ad2084473a144d7c4f93b6dc639958d3fac516d", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2d48ed852a620f163015acfd930cf5231f3e4e90a1cb9c5247c97537e56b3e4", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90de132dad84a965d48f2018edfac30a06e4e6c421c57416d28336860520746c", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe25782a83a29063927c0c90a56bde24344335516ca130c938ce1eed5e32c24", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d657d3f0a89a32a58e97ac56f681645af204d5c1b07121fa86ef2223473cd853", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b1760d284c678d393e8d47268dd013390ccab96d8799dd8625969e94fa9e656", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb9cd7cb05dc5ef2bbfa5f4aa8b25cefb57810907819a6be468e15c9b1b516a4", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e59671eaeed5d34d53afc933ec4e0ce9348243e6ab3c83ac2f66fd31e6bf5b70", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67ae557c4a30b99c650cd757392dc9126b2af9e3b1274b3e96ffc63ac6539f56", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxhack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b49894142f3380fdcd3d5d1f6fffdb6e7ebfeff9811e2f6f70260bf7d66849", + "regex": "(?i)^https?\\:\\/\\/freeserversideroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5943eb4a9cfb13e6d7cf6da4e499f6a94ea8c9b5e2212501003716e16ccb309b", + "regex": "(?i)^https?\\:\\/\\/freeserversideroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aefe0b93895d9ccb379901dcb1b7680161667fd555da72496b6254381d789d19", + "regex": "(?i)^https?\\:\\/\\/freeserversideroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95de60e479b7daade831cac89318ec92caed6c39b74292643681a63d9c042eba", + "regex": "(?i)^https?\\:\\/\\/freeserversideroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d71695ca59ce6a9f19677c3b5e5d6008206aeaa2167064f4885f7c15926786d9", + "regex": "(?i)^https?\\:\\/\\/freeserversideroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50cabafff4953f3f797880c8ed1121cb96df05c95d6075fd7f65d01577c3d369", + "regex": "(?i)^https?\\:\\/\\/freeserversideroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9eca9bc6f59f3f9178e1e9149799e754e1f2303c447c707275917a7f13615fa", + "regex": "(?i)^https?\\:\\/\\/freeserversideroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e43cd52b457bf3914fb35803154ee9bd191460a3c52453b69cadb576a171f6f4", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodescouponsfreeroubuxcode\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a1d9a5e2320483e7bca2b96936885f824fcdc045430a8591526cae9845c3cf7", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodescouponsfreeroubuxcode\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b66a936034b72b5d7fce46f404351dd23fb56cd914f58a54432054f05fe4baae", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodescouponsfreeroubuxcode\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe347e4486f3f669c70589606c83484d8ab7e213a12e94d361265c9a937d274", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodescouponsfreeroubuxcode\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b8b20eacc90fcf71dd188627418f80e1391aaa22c8a3c88639c30ca697a195b", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodescouponsfreeroubuxcode\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06252e7885df0c21aec101163cbc3f555dc4800c83051c1481559875ad2150c7", + "regex": "(?i)^https?\\:\\/\\/pastebinrobloxrobuxfree\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f30635fcff4bd54244c1509ac056ca6d18e777e8d46ada1ddee8d83fdeb790cb", + "regex": "(?i)^https?\\:\\/\\/pastebinrobloxrobuxfree\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06a036f4da69f6a95e212fdcd188b66a5b21391b5fece4c30aacb74102146dee", + "regex": "(?i)^https?\\:\\/\\/pastebinrobloxrobuxfree\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a57751ce18bb7c5c02bacf6fca6c6104bbd96b78c0fcf31881f6401fd4214f6c", + "regex": "(?i)^https?\\:\\/\\/pastebinrobloxrobuxfree\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b8e96f423b7438e4c4c94acd005ea400680296e2c42ee386d21382900451e6f", + "regex": "(?i)^https?\\:\\/\\/pastebinrobloxrobuxfree\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d0d1b4da632e1c720689baf139b0328304049f5e5f9251bdada423fac444922", + "regex": "(?i)^https?\\:\\/\\/pastebinrobloxrobuxfree\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4168e762986e55882a794648ae05b4f0163d88be0a21f8c511e7ee73b67242d7", + "regex": "(?i)^https?\\:\\/\\/pastebinrobloxrobuxfree\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0739e5fd2fbc5437c59e4f7be7baee4bb1d09cbbaeef990b8c7293811a568d03", + "regex": "(?i)^https?\\:\\/\\/pastebinrobloxrobuxfree\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40ab344a968bd49205edefea6c2277844374b460f20716956ebeedac1af9e514", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afd38d9eae0beaab03448a25a7f3f6a57c1eb7e84acd8f5114b432481622cc51", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca4b70ad22e174baaab9551739ff305de40c4c2048d913a95e9198681afbd7c1", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdb7cd4583d9d69ebbeea7a4f3159cfd41eda1b41922d85c7386cfb5cb11fe88", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0e08b2e9c4c3a830805b3f82266e54f2906c68e688efe89bd0a9225a56185db", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3be5ca9e2d689f49aa225a596d8d16a87b92c2f194c2656186ab4be55c84ffb0", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cbbc746f305f42459b95469cc70c50437a5a10e72278078334e43e9f462306e", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8aebc9b8259b6accb81b6aaf3c56bd5bef12718ba8c39b274332dcd596fee9a", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b85e9a78702ca9a0243468af48cf14750534fcb53f4fbed051b7fb470910eaa", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "874c06d3faf14e759d1f9056d559bf3b4021790263d66fa39249638dfb3080a9", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed1f65bb0c99c0b48ab1bed6e92a1ad75c094bbb22f6d3e383c98b29903ef07e", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a113a399244023c55be53f7e15c656cb0d3507b7a3b33d26b04c0a61d2321e5", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96cedc43f8db1f68a5a902b219f7d07ffe3e53ed1179633269376118d0dba01d", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpakdediversao\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1279ef38c00e41b8bc96fb47ee269f711a322491c9082351ba3ff865825d43b4", + "regex": "(?i)^https?\\:\\/\\/fastrobuxroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caf16247b32a38f1581f96ed095f6a782dfcd68c59b7ef9c003c25a19be3634c", + "regex": "(?i)^https?\\:\\/\\/fastrobuxroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7184fc784031cf84e94b2cdbfea356ae2cbe35a3acad99ad3334a44e760483b", + "regex": "(?i)^https?\\:\\/\\/fastrobuxroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1c01226915a6dfdff5c3d19ac1fe3087e5af6a2320adabb4eaa21f0c90d51c5", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e46ee8bd5dc3a0b26103998aff2182877884d562d7c5eaef4755deb8fe864e3e", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fcb79672d7d03590e1d4c4abaf619b0ce352b79da9e3f315bb812f064ac6811", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd2bd09da6b010874abb5c5d54a2dfc5a3968569f58804402932b0230f080d9d", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acfb4773a14b6c437e02396b365bcaa460b3677500b7945c3dda39d01a0b6a39", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "758f16d7cc7e2e0b0d935d17817bd5c80abc2f3b30c445a0c8a38da3e545bb13", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cac6e692e480baaf7d508e84a022c8f623d41eae09ad357f18cb21cfe1012592", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a8d9da9193d3d47474a70e087fd6b95f7a7ea3266385ed02dd4cd3004ed4adc", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb3fd17c13a32464b695de0577ab8a52f06cf6f68137fbdb5187710439b1b408", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fc507d745172b953e2bc54e7476ba5636ff4e0d9cd737ff0814660b4b26828b", + "regex": "(?i)^https?\\:\\/\\/robloxgasmask\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed6b2cc23857d9272fe1584e84c794c4e3f457f5541fd1ec000007edc3b283cb", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab19c78658ee201933bb7b59f7ba79d147d3603cd850ba2731230e3b9780ffe", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a33b360f17d408691d71c9eafff58c9e41134638eac8894b4bb7fd8eee87f4de", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a1fd9f0706edfa5ad112130504905332cb722fbce57a12442ef836be009da54", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58e3a87c5f12a817eae03ad74ddff73ad2f642031fd75712c241cd28848fed10", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1db5ee92b480c7b397d481d93bee68a888b10ff7dac0657d4cf79aa009170595", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "932c7065b728bc0bd939b3062a46a72e99924ab99c5378ee12814357ca493415", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "669c55a0f690425bab5019f23eedc900e6de9f461b0ae4f44e37d67afef760e8", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3624857ddf7ee31314682382167bf19f1b47e99b149ab9be7418cfaa8f12a86", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "578c06a6cc25b2dba2f78e1a443ab745939d074a2aeeac74b243b495111dca83", + "regex": "(?i)^https?\\:\\/\\/sevendeadlysinsrobloxcodes\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59d8282e682655316bdf4ff46735aabe94e2e9bdcd414a957c35d3fa7c5cafef", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxkazanmann3yolu\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96cfc11881166e30c19d9f97da06602ce3ef3c0c2fe67e625e59d708e72d0a8e", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxkazanmann3yolu\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b80fad9904a7d2d377e7a5e940b66252f95b44b3726cd2f6706a7f49bd064222", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxkazanmann3yolu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af9db86ef38c7090ea9808a42d6ef2bf4f580a86fd5553ea3f7ad63ccf71f30f", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxkazanmann3yolu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7ccaa5c2266b869f170c46748d209ac915268618aa6782fe89fc05d748a8529", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxkazanmann3yolu\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9eb99dd596f765c5b921808b7e2a482fca704d182bb7cfebffcfc0a1ea70c51", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxkazanmann3yolu\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b02b328fb91cd097dfc8834a07b6c49d3e6336f459188c35dc46f05a5d70afb1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxkazanmann3yolu\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eff4ac7e7e63e721931738b81e5ae3d6ecc53885ecd589dd551ab1b9847e7db2", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a04aafffde4144e6e1ee2037bcd4e2f170e4991e4e7b8773b587740c3e09431", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3f169c4fa1392f8b0ffbded0350585d6e6f7a4deb34112359e5cf3f7579acee", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1439e01cfec991edb192413bb7b8fe5a786faf802198843821e12cfb3551088", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90a947b363a2c99b56af40b9ba1bf3b2ceed6f8805e578ab5b5c0629f623f093", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a1ff34db8047e1367c3ac499efbb50cbe23fa3d0b86cee3f849914c74b04146", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c3b464420c0651f998872289f69abb6139d5f4acb793084ebd3b2055fd9bf93", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82c4008bfaef81ed273f337b0997e04618de1ee3bf4a01f09f14f6cf2b210112", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52591b31bda83c1ecb3529a741ca989bd8cf20463170a2c211c19eec2257e1c5", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a36af339fe0f494ef2dafd2ef6938d0c744ab17b8a40ff47006ba5f2d74e9d0f", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71fe93e9e5d9d51c081d8fdf019b4904ca3c5390ecb0776243f24e75f8602209", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopcsemaplicativo\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23a303491f48bd1b0e3770b6bcae9fc67a6b303d0d25ac7dac0584d6417c1c84", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d381d48de282218fcd66a4b98ebd7bb5f35a3f9b5249d06629338279e1e7b5f3", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec55d9070d5f000f90f46ea9dd045438228c7e75ae3cb8fc09c80d1184262eda", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a30f966b93c05abe4f4acea0c66dcd820e1074f59e44e0d30327656d0610b82a", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55a41f514ff9461ad7990add3ae94549f857710fd2f9ebc0df958a6f0d0b6677", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0788d49872a16e93bcaa1d97d53821f87a58917206dce8dc1b0fd9b0f3d78463", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f395091ec9fa41a7b8c2069e08f1b641c593c0f8dd7344a6c1ae1d61fa8cc7a", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ad19746aedcab0d09fabd0c8d23713fd3bae32f6d99f1043b067cc576bccfb8", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46202dd3db00f2228c32c9b7f41d53ff8121f8c7e5a5e50f94a75beae95c8ccd", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f18467b2ebd732376fff070d410f98b1535ddb712defc879addf5f8627697b8", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6eb00c533cc33df0de8f0344b3fc34d7c4d78d101b68d5e2d841bfeea02deaa", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxsembaixaesecadrasta\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aaf8814c0198db4e95ddb0dccc8404be93d9629bc9d758043709a5498a29e455", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db678098cee13aaa076137b9fbcb5454fcd7ccb289ad409325e58679ce6ff524", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2669ace30a73485f1a94942626d634b1f28a4ba875bb67a307d3997ba4b9e4", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40237db8737b6ed6acc420b988d8e7a848c0dd416349207ca33c2fc865308e4a", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2fda6bd1d27c83a43d2f5820a890272b2910a0c712d83bc7153f60ce95d7453", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be9a7e407109066fa08fd8a5c578fbef7413d5576485ab100a55648265d5a256", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c5512570884136674780b875171fc6fc7d5262a8654d2c8efa1ca8c1ad94923", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa7d9be6e29ad59baad449fa4ae90ceadd2d0fe9667c165836e504bc852a95be", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5231d92cb0aad9c1f45cda899660c4d5de2a00aa93918ee847cd68c76a80ab4b", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aafb0d24371ccf5b282178976386c23178cfe95840453d904e17b4d7c2ccc65", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d381af69d371582113bf252523849a39f85b0e719bc26af1e6ebe0a6db46d2e1", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b992af30ccba07b150af45c078c1d5bc2d1c99379a3f25a61adf489ea9dad1c", + "regex": "(?i)^https?\\:\\/\\/howtoaddmodelsnotfreemodelsroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "905f1d077c96d5c610a7a320ca498cb8d4ebf2da745d8d2ab4d5a42e63ebf2d7", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cc970f4fc04171c9715f5a6ca4fd82763c509791f2f07d3d2488085d5194336", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50529414cb071ef9a8c11e0d7d848196c473499ef54008761e63f5dd5fe7ed68", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b07264a869dc2303b88eddc30184e886201f0623dfcc06b25a445095d905259", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b581a7ab7d77fe246bf74e73c122af856f25a710821afe1dc638ef5ee06e5d2", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a36f9d2f784306c3210882adc32e2b0519cc1e802c6b260be2d71d19c58a744", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e0842b9ad8a0be0e8e365b25c23ee0b1761a326d2aa3ce1616d959531feb5ac", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "365f25220cd9c0a87206cba00158023aca075399e80e78176a34a73ec17dac60", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83cf572eb627e61b29b560cd436ee6cf4dee36f03b40629ff41f094496735ea1", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3924dd34779efdb9b46746b8a10fc462432d99627f6146a8a3e34d516218d77", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebc5cb8568e1c70817f5b8dc719620218805f9cc38d2a5f7efeabce3778fa47d", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba0d7b494d8cef4f951846b682436ff3df3bf4f1725a65fcb9741a0be9184989", + "regex": "(?i)^https?\\:\\/\\/gameofthroneshousestarkrobloxdecal\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8acd9b3cc6fa3166102aaef6b72bd131893dd8aa509900e5efb05e230251cdbb", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce930ebb9aa761cde699b648af505cf0421759b9978ab27863cb8cbb58dce96d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1f09327bdf1487bf6651e413b0ef0c12c1a129647c4bd265365028d6f96fd35", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c619415c44c8976693dbac724648d1f973bba040f0f25db36abb5ebf7002139", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b5643e23362e0afa1100ff3f4e19b8101972bdc23029ad0a18af4c7d076bcf1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3170f47b9958965f41c057ea6591752543b29a88ac4b3c34aafb5851fcab1db3", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c66ca36a43a5fd102178a23ca2c846688d0bd24ff2318d655f39bb8c7ad5e034", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f001375bf3f1239762fd0ac2e7d51f53103ae8bd82679b67f326f534dcc1ecac", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e2da0f42ebdb460d078d88f8fda3fcb0879e3acd813ed0ecd26907445496d2a", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0088aaa6108c6ef8be4c33e5f5a76928ad622ee34e968a59274892c2cb63e1d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96860e69f592cfb3542f59aaf3bf1d1872b30f538cb3c81da43206596c51e76e", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70846cde1dd103e33cb62855776ecbd9323bad347ba6a184080202f42d1ce264", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5adf015757c3b3b7964a09dce4e0b32c34e05635de6454ba03f72e7b565342c9", + "regex": "(?i)^https?\\:\\/\\/freepromocodesrobloxrobux2021\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4254059e84be9fe28ab7cbb2bdaaf6d34184f3e883bef71a865de1db7c9eac55", + "regex": "(?i)^https?\\:\\/\\/freepromocodesrobloxrobux2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c960df79f7e71d5f493323dc626b2de427a13f64f1f40147d0da7c47c8da02a", + "regex": "(?i)^https?\\:\\/\\/freepromocodesrobloxrobux2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f15894146fcb337e2520d5c58844a6ba0385250c1a9c61877692cb53704d1585", + "regex": "(?i)^https?\\:\\/\\/freepromocodesrobloxrobux2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddf2418ac4d2bd5a537de80e8127bc5fa535035ead84d1b6111009c63e4834c8", + "regex": "(?i)^https?\\:\\/\\/freepromocodesrobloxrobux2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cee031e0e9789aa7ce8cc2db0158dbbaa38f36251e5400f8a5777dd5395ed4c4", + "regex": "(?i)^https?\\:\\/\\/freepromocodesrobloxrobux2021\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5e2bdae8ae5429d8937c3a6c1a3d656f94c91c2455b658084304dc60a6343a4", + "regex": "(?i)^https?\\:\\/\\/freepromocodesrobloxrobux2021\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea23d9db2675fd56fbd45842b283cac581b7a47cdba08c4397be4ac52814f436", + "regex": "(?i)^https?\\:\\/\\/freepromocodesrobloxrobux2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5669ad0b85d93aed2074defcd0fe7f198d19adeec47f6086e237adb6f2bb8619", + "regex": "(?i)^https?\\:\\/\\/freepromocodesrobloxrobux2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0ef66c263b3b514f98d4db7fbc10b0bf1c1bf11378252f4bc6ccdc360dce706", + "regex": "(?i)^https?\\:\\/\\/fotodajuliaminegirljogandoroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fcb3cf62cfaa574efa42ce433c31955538e7aaf2fc896dad306f612d96a0b8c", + "regex": "(?i)^https?\\:\\/\\/fotodajuliaminegirljogandoroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "210a1cfbe54b0081f45584b383b5385f20cdfd36c5b62e42736fe24f26f2b16a", + "regex": "(?i)^https?\\:\\/\\/fotodajuliaminegirljogandoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c207da89fed9203e2ccf14ff68252a79bcc026ebe9708de48c7cd2de9768ce6", + "regex": "(?i)^https?\\:\\/\\/fotodajuliaminegirljogandoroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14001310ca3709f3c4c0198efda147ebecafb47a09739bba06ec04c5e1315792", + "regex": "(?i)^https?\\:\\/\\/fotodajuliaminegirljogandoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c87cc1d6c1ca04248fa45638af79fffb2c5312c6d642b6d6957a7e0dde3049", + "regex": "(?i)^https?\\:\\/\\/fotodajuliaminegirljogandoroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f43729e2efd944849d7d34b71edff2f6224cd6e0d6d1f3ce793c301b6beda1cd", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8f89411052442227027ef2c1b3d6c0518299218ece4dc63ec8309560df96d48", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a986f6a95e2b2825f94b0080cf5c2e83db524027a4a3732c7f97f3e6d48786d", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf5df873a1902385a998200a47d9cdb4b03ce43a0bfe1bbe3f9d97efa429d42e", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c93b3f4f3a86111444c0de43d41894fc69a9a02d01ffd2f4cbadd458558cf1", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "980866de31e68622b915125e6b4a926e3062292419b2c99c07ff20343576af18", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2401093516a3e299fc4bf4b5dd3380a788dcfb11ee90f6bf7fa4a7c49597757e", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f0931c171b5f9651a7fa29bbd47a7e6cde50f1472728e6f585cdd7fa2fc9506", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1513d9801653bd4e7afccf3578bcc3f5e7810333f06ca777fd38f729e64fad68", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "230ffaa10667fb0b6990d50e1517103a944bf5be955bd70a20b0c5c5f971c8d3", + "regex": "(?i)^https?\\:\\/\\/filmedefelipenetojogandoroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae7cb8096453d49c67f9f8fe9fb712ba4cc772fc210ad0bf78f6fea88b48a218", + "regex": "(?i)^https?\\:\\/\\/freerobloxcom\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658daaba212db93543cdc5b183ee402c8159ca6397aab074be5adb981fe7ba42", + "regex": "(?i)^https?\\:\\/\\/freerobloxcom\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf4bd439cc25634f77337359c0a95a25d8c49531834197f73a71556c572cf909", + "regex": "(?i)^https?\\:\\/\\/freerobloxcom\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5506002e6877df5d31f9726745d15e0123fd905d44394dbb7d99aaae853dd95f", + "regex": "(?i)^https?\\:\\/\\/freerobloxcom\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2f48cc95ffa2213b216d78e168575f21cdb04dd8508835bf107e81ef803bce9", + "regex": "(?i)^https?\\:\\/\\/freerobloxcom\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d46ab2e2d8c226dc67b0c1ed1413eb801b1d7992fc25523b8b3cae50d175f293", + "regex": "(?i)^https?\\:\\/\\/freerobloxcom\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee8e83fe8b4a315fe7e98907e23e6c9b7d04635fcac285a5e3a06dd007f417d", + "regex": "(?i)^https?\\:\\/\\/freerobloxcom\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d71a81ee1218152ea0dbca9683aec70047dda5ecc1e69c3b8ca2970d011ff2c5", + "regex": "(?i)^https?\\:\\/\\/freerobloxcom\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a193189a6c10abd3878766c5d5cece443effa3631452713e63716d3b68a08b78", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b4b588634935439210706695d6a7098da95092692447347a8cbb686613c78b9", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7830cae485d2f2a19a47e88c5066947891b05ca14397799a5e7b344a68ab7cd2", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abd658286e1cdfa150e3e4f89441d172e818900c1b7ee297defcf40c71526c9e", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dec397fb01b3ddec7474e8f0eeb60ca9112a6598c3ce163997aed72cc47d09f", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "418abed040b3d6e7a439f0200cc8538454033fb9fa38e325fca5506ad1a42e56", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a4e0c98ce0e1c8cd654a6afc82ec3a24aacf054800567474c07882dcc957f65", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35723175ed830bd0370631e41a2954ecd8b7992ad644d00f9918e508ede6cfbe", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb677e9eb595949bb76c1ae6313c80fd4dd699c772014e0aac5d5353dee121a6", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d15dce46907902e4ea00e938e114f2f51c1f0b6df912c7a4c493a662d58c4274", + "regex": "(?i)^https?\\:\\/\\/strangerthingssaison3robloxcode\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbf6ea3538630870562182972750822b2789c3806945fd0bae10fadab97e6ce4", + "regex": "(?i)^https?\\:\\/\\/robloxhacknoverificationorsurveyordow\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cecc453d840a0e4bee4cc3b4b6be802124daa9f6ac7b6385d078dacdfdee55ee", + "regex": "(?i)^https?\\:\\/\\/gcashroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6652486fdaac522b8a3697ee3e2765a2f48354ac2b70728b224d4b4100f7a208", + "regex": "(?i)^https?\\:\\/\\/gcashroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b6debddaef4ed55249d73ea5bde19f79bf55aaef2db7f435b5230f1c2381626", + "regex": "(?i)^https?\\:\\/\\/outlineremoverroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f21426e930b50c38e05ac4409527b71a9da858d645477aab28c6c8a972262786", + "regex": "(?i)^https?\\:\\/\\/outlineremoverroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdc007ccf6a7a2777aa1423ea14bebfaf1e80e2e34f462d57efd948a5f1fe3a", + "regex": "(?i)^https?\\:\\/\\/outlineremoverroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fc854283d6e42cb75ccf56a71634ffd38230569be1c74aeb18e29f7b87fe8e2", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2bda4f6919dcf9268a95a352dc2c08990b6d8047908139aca52c1af41c6d686", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6541ad000f747b862776d7511d78878417a696f273e2060c4340b49a47be466", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0f51b9aaf6497eb09fb8d04310d605ccba4c988212000d094f5c2c894e67f4", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae263ba29407281bf203d869013d12eb6b1676d17ed1b24286b6044068926a97", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "944d3ca63df0c15807cfe07289205ee81ad2a09ca33303fadea41da7e0e04fbc", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78abf6f62300177dd922593ebb40781cd8e71f12fc128a7a7ad20eaab132ed22", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d2c8d4ccae14de4cd1397a079e115c26623331d2c39ea1e223c7b92b74cac2e", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bd95522e0053926bacfb40c29a785c31c5bdfbbc3e91f3fb091e3838e66c054", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72a4b49b125ea3f36125e6bbb142e89de67f85bdeb9b54e9186f37cc8e5a2805", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59778be9448eaea93f387381acc7dffa0425c8d63f88802de465b245a3347f16", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d842f179647631a3af3da5d4cf51d98d08e8dca758af9b1b61b1f232e40217bb", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxwithoutrobux\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "587f76d37ca375887a76c795078f9fc09f0a733005d2394a5be208cd84fd1309", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxpromocodes\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de0fd2dbe54f1a4ad36d4358128cabcde38dbc3391b311dba9d6c4780a043fa6", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxpromocodes\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc348a4be910af3f9bbaa75649fda5252b2c66680241e0e9bc9c98cdd1ab11f6", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxpromocodes\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1671625118c99a8717290a245601e4fa2fa53103daee10f8d4b9ce4cf1ee68f", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxpromocodes\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab43fe1bcd16d56d24a701b58df961d259e959cc902d1edd49af97f10d9bbf0", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxpromocodes\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7548e55d287600a5d29177cff39f669b9a42ced5ad27f4b700690201d0db55b", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxpromocodes\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "084ef5241d820c1f7dccd6608deed18df9817734f5a5488361e9bdd9f3554a63", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxpromocodes\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15a87d78de688e8e173b8e6440a1e8a3e0765d7b06006d687cabe0dfcc0b830b", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aab25bbe9d22d2bbad230f5fe939fb28875815ac558892f102eb5a4812195312", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d010298d57d257166f9e352572de514422f8eab03a17140b8062473ee55d590", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6374c0de77ba5cfde7484ca1c20173412bedfdd69e27cc985543184cf32d47cd", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a41146b513a6873d9c44903221643d8de1c42088a61c14bb85a7193c73ff8064", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "642277e2ec014cd9798bf64348fcc0ecde6ecf734c562a4428c1263c6c9d0c61", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "867ecb2e673d0f93d073f02bc0c2a190649260e008a4811ce86eec41b5e7a0a6", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "879d33fbd276f3d7f2a6462bfb8ef8d9fa3fbe74a5c214c0f767025034445a69", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26893f61ac37a44a59653bbfc252b6a53246b582321c8e31c5115dbd6b60a0c8", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2ffbffc49a40c8155f3e450cb36c38b0a961e7010ab426fc247ac653332445c", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a81200a2ef41c887d98ab311e457318c21dc7d7a47f8f78ed7b71ad3c1be5b54", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4ed2b5325c67774a7637f2afe58d12e5f76e0d8d0bb04bb106ea09015348a0", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c3bf8247f5d5f76f0c27cae1ab264681ab9193732319960631a22d0617c33b6", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa8bf2946fad7c60b4800a56ab4bf669c43d888a6a6ff05a84bbcfc9fb78c97d", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5711ab3c7eb7de2885c2410f0e2b83f0a5c004bc3b74592bd2ffa8aa70c41856", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8effb2c1e1cdafc93485278cfb11eed174789249f92e089ed028b7e6014615df", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a35e1959944e336bed085008535c1673e5d443c8db3e72f394aef1f977a5dcb", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39da75ea5459782b64bdc1e96e0f536a2ddf104d6147c168b61dc1e33f24f3f1", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "393082ead087b0dc6ed779ddb0e3d0120afec643df074482c87fdc9b505f8e57", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ce9e0124e542b6e6cafd106a405201edb7692ce72e4068ef6c5b4a401d017f4", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1899cdc45ce0fc174341a37dd849d5a98b22a4acc521e0e95ef7edc63b5eb0bd", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c21f25f50f4d4abaf1bfe54c04e1afde0e0313b854faa8a6e538bf92418fa9e7", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10a1a82675627fd64bd05ac7fd0355689fa204e7e303cb3bd00c7269350bc505", + "regex": "(?i)^https?\\:\\/\\/nindoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a553b31f561f3951bb7deb0a9828d195c8b73d1341b304ff645d6d8563e7ee92", + "regex": "(?i)^https?\\:\\/\\/robloxswatuniformcodes\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe17a632e435c2f955c84af41ef4c14b48d737ea150947b457e46ce74d95edd3", + "regex": "(?i)^https?\\:\\/\\/strangerthingssaison3robloxcode\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f413c110b00537a7eaa5c6ada3a9d0fd2b70b71aab4aea4b5738e2c47ddf235", + "regex": "(?i)^https?\\:\\/\\/strangerthingssaison3robloxcode\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd1afbcc7d4b40b3d4f8aec927c395ec5c5515edcb7d0de2824864158352862", + "regex": "(?i)^https?\\:\\/\\/strangerthingssaison3robloxcode\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f92197e28d9de217c5ee87e98b03d808c2a7e1c05bad5a235b4b0e714e40025c", + "regex": "(?i)^https?\\:\\/\\/strangerthingssaison3robloxcode\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0827d8c736b6aadf1c1b1938a4f07303cfc509ad2c212e2badb8ea941bde425", + "regex": "(?i)^https?\\:\\/\\/strangerthingssaison3robloxcode\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b96c6d75098f6fa3f18892c35c525b1b087feae8a85d14e052531bd32d721a92", + "regex": "(?i)^https?\\:\\/\\/strangerthingssaison3robloxcode\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d97240fdc9f230befef7ffb887d67610144c9e033e13c4841c64163c55f2f737", + "regex": "(?i)^https?\\:\\/\\/strangerthingssaison3robloxcode\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3b3b3a75ca056d8f8ec9c6602ee6661681f986c37a87c83f5f60807cbd4b800", + "regex": "(?i)^https?\\:\\/\\/strangerthingssaison3robloxcode\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dffe05ce5b40f67bf88a5061445454a744e94f2ef695649bfe1ab89ab09fa9ef", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdeplay2\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08f57b39f956b661e2463ba962c630a45fcb445f176d9e4638d4f6d5be5487b6", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdeplay2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c601ef3cbf6cc8b9d361a97c4da09b2a83a6aa0c0dbcf211b7795c819aaa35b", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdeplay2\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1587a70504cb67dd1bfd599a1b3f7b155ad2683e2821d15faa0fffad4ab1f5ce", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdeplay2\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "444acd374007fb9a6af24b914b8133d69f735998c3b8e11e307135e16764cb7c", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdeplay2\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "322fd59f59f2bfd063adfb9c9df3dc7015b7d66fc8148b4e42831ddf5902f63b", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdeplay2\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e43ce1099d75eb931a4b2584f86e6ba18000b9dc0ac8c456523de1eb23fcc4fa", + "regex": "(?i)^https?\\:\\/\\/howmuchrobuxdoyougetwithrobloxpremium\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce2121a8d72d13044a8ee2df24052372f0e7a0817762ac5a65c184664eb306ed", + "regex": "(?i)^https?\\:\\/\\/howmuchrobuxdoyougetwithrobloxpremium\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6b9bc56b3a987546e6ba85f63d006b0c2414e9702284d9a85bf50753b97c0d7", + "regex": "(?i)^https?\\:\\/\\/howmuchrobuxdoyougetwithrobloxpremium\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4c5cf5267fba24f881a63e206d83efb1f284f63e08bb2941301dc6f405a726", + "regex": "(?i)^https?\\:\\/\\/howmuchrobuxdoyougetwithrobloxpremium\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15160fc5908c6db29db7a7193863e79c545b04ac20e9b3efda43418bde946c84", + "regex": "(?i)^https?\\:\\/\\/howmuchrobuxdoyougetwithrobloxpremium\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "291d0a31d4dcb914d499bbb92688c6b3d01f7f6602ec3b98c8c650384a78cf24", + "regex": "(?i)^https?\\:\\/\\/howmuchrobuxdoyougetwithrobloxpremium\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af874373a3db5da127325b95d2c3f6794f7c883cba794f327d55bc68a2c7e763", + "regex": "(?i)^https?\\:\\/\\/howmuchrobuxdoyougetwithrobloxpremium\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3e00d82d9ad8d14273398b11a67952abd41c190df008b37fa0b67b9d3ea8b78", + "regex": "(?i)^https?\\:\\/\\/howmuchrobuxdoyougetwithrobloxpremium\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45786632b5887689f7019c5f115f685cc8ab58981166d37760fdd2fc66de8e8a", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65418da94b8993a002641c689d27450629c9ffec065088561ff155fb4f122d62", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8077ad80aaf4a81dc1518233f08d5cc023c1a35cbb8d81441804dd9f7ad78636", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3dcd68432f43350d4c68b87d689b7c8b827b2894adc90750bbf4e48b8832441e", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b1f51e126f675861882f12e79a61c3c2b0f2f3f4e78be29bea65e1bc9eb72e8", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b39f59b579b7fec574e7a9a92b39ef3b14419a54db02ad27ae65d875ea88b6d", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f21eb1cbbca81987f8b6c6ea5834f4a239933b4573bd9cb9d715d812ddf38a1a", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e33bb9a4f4fed6ddf5772437f61e2edbd4651071ff436c27fdf0bdd407b7d86", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02193d119b7e08fb4acbfd0e697a7d2c660bca1f081b9460514108e76c241354", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b8f6c305b7c66d0ec870b839c129ab0c038cb6c2842677d8cf57d51075ac444", + "regex": "(?i)^https?\\:\\/\\/nlechopparobloxidcamelot\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa4d675877216800d1ce62b9bf03e7723b16c8157e3d773a5290583fc8c075a7", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ef1ae6efe673da3ced9f9ebad254fdde022164e321d9a8829a91608592fc379", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce60197a0d95b30abb76bf5684daffb0ab9557ca02cbe940c123b331504be74a", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7425fa886a7d149cfdbce67d384f13f2cf2e47b6553834cff50c4aa3406e257", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6def29afc3cbe40e04ba28892a915c55cfd795a26023770cb3259358543ee85a", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "868d738e245efa40b367faadbc5a25d73149d2b3a2026e8064a0c74072e81b89", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b22fd8e7de2cf2ac5ff5ee330b1aacc254fe73ab4d0d049dcb36aa8a9c64e04", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f188d8a4851444bfbd5d319fad58cd12d470b3c8a48a57072c4fc19dbb75786f", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbd1f935d73c77e255842baf9230e6eee5346ff51f08a3b2a17250f521f2eb83", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c0edf53e28621a5a84eac4d9016ba02b879582d17e0416a8fad3c9797a060f3", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfe7e5fd6c5582b48f52ff052b1c68b02f9ccc915d4a68ee2c7555d137a134c7", + "regex": "(?i)^https?\\:\\/\\/howtogetafreelamboinrobloxjailbreak\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12fe97f174c70441f58f11beafca86a2147e0291c095ab327a93021a3efadba3", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "897aa45b3be82b55fe1e9f2b1d15f9a9dff7ef2afb56b76fb9c4a57baaa5f5a8", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d36d2165387d0682bbd8aa62ca23df45420300d245d8ec212b33f775f3529ece", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b9ac65c8bfff03894fccc08a515014cc1d126d2f5c0e3489100df0ca16b9b9e", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a169d559b1a2cf0ced6242116df1f6d48ab39c396b49da1c5a4b8374c7e26a54", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e714388387b7e9079439b3b8f8674e4bf8834910c83ac07272059c3216fe77b5", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a2f773039bcc9c7680772c6816e00e9a09761fe8b3bf0a23376cd5f96e7f2f0", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8944c1d956ab64c59eaafba23f57ae91e019d4d298b39d398e157c47df7dee9", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0480ea054c1c4b87dc806fed49bdb2765eea5d3a2d9b7953e520e76ed745df46", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbd4a2daf4a133efdf620c8e6d501ec9d7cf4e4282c689aae5d83e4a9c0bbdf2", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3df55b7c40b7c76f668825fc7527f56f10581e17bd0688fdc7745bb92708e90d", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51bc7153d1d62766f27233c5650ef0229abeebf0c3b7f9176e9bb1c014096af6", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bb9b045e00de08cadc7926bcfde6a15c61f5807307beb6c59f59a86e0338c68", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a0ecdd7c16c9856acc4ad3438219a2171702c7cd50765c988d06079b1a177d3", + "regex": "(?i)^https?\\:\\/\\/cuteaestheticroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e08652e47e58605cc018368b3f99dacd0f2474f9930d16eca13c1388ca859ebd", + "regex": "(?i)^https?\\:\\/\\/robloxhacknoverificationorsurveyordow\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5da2bddb2b2e6d4f3acc83ae2832e43ff22c36f852fff49bf2456b3210b93b53", + "regex": "(?i)^https?\\:\\/\\/robloxhacknoverificationorsurveyordow\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17260796a14b02719f9a93e540fc3e196a89d2798fb229529865a4e64ba20620", + "regex": "(?i)^https?\\:\\/\\/robloxhacknoverificationorsurveyordow\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b583636e6b31580eaf5df9e0fedeec205742766a783e9b8defe12597100c682d", + "regex": "(?i)^https?\\:\\/\\/robloxhacknoverificationorsurveyordow\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "178d95182f24bdca6803d22eadc3199a0f257b012de965069252c4125d2b5405", + "regex": "(?i)^https?\\:\\/\\/robloxhacknoverificationorsurveyordow\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19693e7b263d16bb6cd22af47f681f680edb385c9c035d4187a5aa559c0e8513", + "regex": "(?i)^https?\\:\\/\\/robloxhacknoverificationorsurveyordow\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "defd41add4a49f71b1739bf12faac2034e8f3a4b8de8a993995dda71c2ec9edd", + "regex": "(?i)^https?\\:\\/\\/robloxhacknoverificationorsurveyordow\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3022edece82bdfeee9bd5a76b03412386081de1f45acad850a8fa7b30f377a1b", + "regex": "(?i)^https?\\:\\/\\/robloxhacknoverificationorsurveyordow\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a487d75f5ad310cd3d645b2c1cd40ca3d0609527db0b158d046fa3c5bc702443", + "regex": "(?i)^https?\\:\\/\\/robloxskylereedecal\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "573f07fa83c21ad7234aa23823fc58a90c7d0c7ae6c3fded78c564e33b313106", + "regex": "(?i)^https?\\:\\/\\/robloxskylereedecal\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2df4a749970b5d687c0104bc092f0fa0be00b09570ee8f27b18d08695102a36c", + "regex": "(?i)^https?\\:\\/\\/robloxskylereedecal\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94210c148b0c67692427a3c166b9f654ef51dd12a97cc91a673a0ac4189f575f", + "regex": "(?i)^https?\\:\\/\\/robloxskylereedecal\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "604959d8f4c2bc205c72b5856dc8ad319f026b6cfb67b23cafdf953a82b313e6", + "regex": "(?i)^https?\\:\\/\\/robloxskylereedecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50e1cb72656acc95950c4d22fbcf9464e0428dbf5f73315adbd1c14792231221", + "regex": "(?i)^https?\\:\\/\\/voohackrobloxcombr\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8386929e18052ab143bd96f1582afa5883fe5ecba288d3c4f7011b910fef1ec6", + "regex": "(?i)^https?\\:\\/\\/voohackrobloxcombr\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84e1c636091007859f30a09d9384485f916c342f09129cf15c006be08a88ccfc", + "regex": "(?i)^https?\\:\\/\\/voohackrobloxcombr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "822dc3d7d16ffd0006bbcf1922c86d1416a2602f0a261dc4b62b09a963401c4d", + "regex": "(?i)^https?\\:\\/\\/voohackrobloxcombr\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9e72f2f2df99a259b825f4774a2a37c2dba5f9ec69ec5441fbdea32c52c4c8c", + "regex": "(?i)^https?\\:\\/\\/voohackrobloxcombr\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "482a02940eb6f222446ea497377e66ce4f95d299f068af7b1de8b5d05bb8dce6", + "regex": "(?i)^https?\\:\\/\\/voohackrobloxcombr\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3111961802aa7b5e4ba5532a8845cd19e75ecf6cfd3740a734027266ffef8c23", + "regex": "(?i)^https?\\:\\/\\/voohackrobloxcombr\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fafb9e78c5110233dc9b7086b74ea4b07015616f6164ddc84ea6c9a63a54d80", + "regex": "(?i)^https?\\:\\/\\/voohackrobloxcombr\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e701c0b04407691dd32ee60d415814ba513c4ded2ead1afd5424f492ae7e4654", + "regex": "(?i)^https?\\:\\/\\/voohackrobloxcombr\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fca07f4ec97a2b95ff0b730be082ecde1f7ad0c861456cd3d4682522ad19f14", + "regex": "(?i)^https?\\:\\/\\/jeuxsurrobloxpourgagnerrobux\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f38b50218851ea32401b1108723150ab1fb87bf84d5d496401c281bcf68892d0", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1e94a2d305d9efe519b6240052bc0d00568f0a79602286b1041a245f74011a1", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d2529702fb2111927b6b80ffe387ccdf46ad5b04e1db56bafba09c1863f7123", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01ec59be7554bb6de1b71fd8aa4c5a36b82e12f84cb0d6090be43c031302f33f", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49cfbf774cde67467ae0033dad92bb5f457e419dcbc42bce543023be136b1e6d", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "daa85ebfb14b41f017bc856054b83be4d4795c3c0eeab5d831787cea258c0c9a", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2d3e261be9510fc4fe870c4a95f04117df8b654230a93b59cf7e0ced7efb178", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9ca5db4b3cea2a6b3a180d7a6ec06b7b71d4e744ab6ef63a5231ac69a811537", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aaaa58b9b97c5ab3df0eb699e68ec2fa39b1fef17eda0c4af039a07d538ed563", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a28f6aedc98b3de918f37b300305e82b2fbc818d137a8562c8d754ca7c19fd9", + "regex": "(?i)^https?\\:\\/\\/comodoarrobuxparaumamigonoroblox2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7263d87f576b723d673d0186ab6306d116239d6499bcb7c827febb37aa919728", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinpardise2vipserversfreeadm\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3ede80b21b1c80fd9c1aa6bffe3eaa40989e6a46a6e4a54ebe6fef370321a95", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinpardise2vipserversfreeadm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4287be34cea34102d4e228283750a0caaff3a34f60c9a3051dbd05c2122435be", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinpardise2vipserversfreeadm\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72783cb73557752adf4515b44abdacd061f126c294b1cc8387dca05a73caa6d5", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinpardise2vipserversfreeadm\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "232867934d32eefb6383a1899ed10841e024f758e045805006322afa4a581459", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinpardise2vipserversfreeadm\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fef3639547ecffb1e8aa4de8351df445407af5dc9fed85a7c554a9cae20ec561", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinpardise2vipserversfreeadm\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c8faf79a5e65c162d145e93cc0d61a6dd15c7b937c5976a8d7438cd4803240", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinpardise2vipserversfreeadm\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7676f3af294719a2ec9286ee7f33e8a93468e91f26eb7d046e7c9a1e106a69b5", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ea55b19ab04573ba1d56fadabaa19bb8f9e4f909ba3eabb110c8536900bcce3", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7f4272dd54ee3ea9324ee2e912d8820cabf7dca4e6e068bb9cfc04b33a73b5d", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a024a8f8cdc7c65acb6f3a4797816ee8702037715c19466f7c090cf076a3efb", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca48a6a24199e832d83ebdf60fc00fc69d6390f5e812e2c5f15f6c208b60730", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4771b6e1e179dc8e4e2987b30f84d90a3b4bed5fcdcf22f068ad9d9fb0ef0ac2", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3a19c5ac77db1491fab935c2d3b9ef4239997e408b7a803c6b2956e96629532", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86c2275fd9d0f4befeb0188c113ba818536a7c05351126f317a467bb736df757", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a41e736ecaacb159b91a5b06d581a12aadd8ee7f46b1d9dbb61eb9198daa8e70", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58ae96d6676a61939800e79007708df5e92d255c9c92ff984dcd8b9405adc1c1", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86d3ccb13a989d4a32ec99fdf3916e62b7fad5fbd69859a91d92a3a51d4cdebb", + "regex": "(?i)^https?\\:\\/\\/codesurlejouerocitizensaroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "047e902f0d83a754c765dca2bd159251eecbc17325b708693a15dd9c1e630ac0", + "regex": "(?i)^https?\\:\\/\\/jogoparacarregarderoblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb3c0bf378448ee4f8c97716b6aa0dfa8303346bc1a1754c56f598367ade91ef", + "regex": "(?i)^https?\\:\\/\\/jogoparacarregarderoblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3adfd14e9575b8645ace935a1113c91c2cd686a492a2f755b4eeca63b07693d8", + "regex": "(?i)^https?\\:\\/\\/jogoparacarregarderoblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9166ae6d0ae2037780376825c5e789c4e528c745e55d456a3e971b25e4ad2eb", + "regex": "(?i)^https?\\:\\/\\/jogoparacarregarderoblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d88dfa4f8028369ef9dd525d29da7e224a5fbc43b2e2c9a0b8109b6f6de36f2d", + "regex": "(?i)^https?\\:\\/\\/jogoparacarregarderoblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80a8229dd79f7d690ce8bb548b4f8a453d912eb7f2781686bddca51908993cd5", + "regex": "(?i)^https?\\:\\/\\/jogoparacarregarderoblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a226e7603d1c42963566e16c2eeff6e37f4ef3e7ffb33a4fd634b360a498c91f", + "regex": "(?i)^https?\\:\\/\\/jogoparacarregarderoblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7de5d13285341166f7147f396dd7de47a6307d74356d99b1d5a2cb1aecda83c", + "regex": "(?i)^https?\\:\\/\\/jogoparacarregarderoblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c045e07ed81b9721fb50713be94e540a051fc9802904e18b62521d137461bd12", + "regex": "(?i)^https?\\:\\/\\/jogoparacarregarderoblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea8ccf676a7c796b9da899b21daf8fd233e47aae34403e3ed33f9a1273531aa3", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeclothesonrobloxapril2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22db1666e1b7c080675e10bab5e76b1e166a5edfa89985277ede456b1f1d4b20", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeclothesonrobloxapril2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627f50de357b3de08de704472c091b33afb7a81728bf4725252ff429d77576f7", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeclothesonrobloxapril2021\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3e9796d1c3f9051f3381ef0f177c958a20fd359fb77cbb73a59aee79b2a29c6", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeclothesonrobloxapril2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60929febb979fa3e7adf17e50616633fc4686e0277d88da39267793508a5482d", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeclothesonrobloxapril2021\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eb6be9c851b500e07a03bff971e7963e61a134d762fc3305500dd68756b8f7a", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeclothesonrobloxapril2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2939c64b2f33dd8151c33747b87ea2ccd0c39ce48a1974e9d38a6942aee53c80", + "regex": "(?i)^https?\\:\\/\\/comohackearumacontadorobloxcomeditthi\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a20411c04219ad47205ec1147fe9cd103afeba8258c8b487fbe0153c2fa1a8c", + "regex": "(?i)^https?\\:\\/\\/comohackearumacontadorobloxcomeditthi\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d60c761489d7329e447b2c78a13c8d9e29e72e23bcc9af5b4cbe0465f8f1c7b", + "regex": "(?i)^https?\\:\\/\\/comohackearumacontadorobloxcomeditthi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dbc0b7189318b41cde6b290fa302db9adc5d7e9b11f1d137588b46df45f0f63", + "regex": "(?i)^https?\\:\\/\\/comohackearumacontadorobloxcomeditthi\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "201d1d3d8faf14bb1aec9d1c18129cd961f69694141ce6ee8e32ebd7c18da950", + "regex": "(?i)^https?\\:\\/\\/comohackearumacontadorobloxcomeditthi\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3b2d78cd96ac43bce30ef9cd900bf1dd7571ce9b7cbf8aa81d0f44164cbdf8b", + "regex": "(?i)^https?\\:\\/\\/comohackearumacontadorobloxcomeditthi\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51c607f482501284a6872c8f61236051f4423ea3e6c9c9b296bafec1b6d1a2f4", + "regex": "(?i)^https?\\:\\/\\/comohackearumacontadorobloxcomeditthi\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb27afd1e00fa4dbbd7953f6034619ddd6bc6cf4a8a48fdbbabf29bf5fc7fbc1", + "regex": "(?i)^https?\\:\\/\\/comohackearumacontadorobloxcomeditthi\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d0733bb86b7be5b630bfbac6454144e980395916255058f8a82d0050df71e1b", + "regex": "(?i)^https?\\:\\/\\/homelesspicturedecalsforroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e7ba4ab9938d99445b0ac84d74c7d468ad32d3d4b3f4942b3fb7c8be003cadb", + "regex": "(?i)^https?\\:\\/\\/homelesspicturedecalsforroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f55c740e366f6b0fd5d0fdcf06b285b7283122db2dae20a4ceadd126fef32e4", + "regex": "(?i)^https?\\:\\/\\/homelesspicturedecalsforroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6797b8b6beefb6552c0e10b39ad15ec9638489eb3561f189eb0d05d0c7c22b21", + "regex": "(?i)^https?\\:\\/\\/homelesspicturedecalsforroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "711a3702c52895cfb6e080f2a33c3f5a8291f3caad8b526b2422a099d56ef3f9", + "regex": "(?i)^https?\\:\\/\\/homelesspicturedecalsforroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab4980b7501c54d73e56a5072a3247dd7b7f32d1d69133c152bffdf6a13a9508", + "regex": "(?i)^https?\\:\\/\\/homelesspicturedecalsforroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80bb987b02303ec369061bd6d58b8afadffb53f492a5a35cf37053c10b937523", + "regex": "(?i)^https?\\:\\/\\/homelesspicturedecalsforroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da75b95906a6df6cf1842cff6fc0d0324e4a52bd31b727ed083b8a34888a7015", + "regex": "(?i)^https?\\:\\/\\/homelesspicturedecalsforroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1e1fdcacb25bd1a83ea8e69d33e7c9b53ffc661a88589a723ca2df5c21313c0", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "170a67f6f8b6f5ed99be43dcc87783821162a6add892e0428d938cc073c548cb", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ee0fffda3289b619ded847ec7fbc626b62374d778804efd89791ce570e92321", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d3846b0d37531fe8cf91d9409da2cb6c9fdbb22daa4d6444814de28ab4d27c5", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97b61c322738e4fe5909dc863fde1bf6390e725374e1d53ede935c8631ddbfe6", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41bd0c50ccd1b1d5df8ee2467b92afa36a5faf78a0a13c0fc574dcc6e3c0dfe4", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd21a4cd424b7444d654a42d82c2f8b300ed1fd3a51a9cfc22689eb707aaed76", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f6d8ad4af0900264553058e90006416bf4c110ccedc75e930c07d35970e5d30", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "916ecb5cecb6ac8f1401e030310019b7b1b4bfc8fe59dba18904dc6509c28182", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "153cfbfede852473e49db6643c84ee4888c77d2784cbd1b990cb7b156679ea90", + "regex": "(?i)^https?\\:\\/\\/codesforninjalegendsroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05986793d53516677f9866f8f2577d7271ae286ac77a706683c6bc6261cec5ce", + "regex": "(?i)^https?\\:\\/\\/codesforninjalegendsroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63d1d869a8eac8ca17f1225cb1b6b1b176e2f7b58cf00e224867281b6bf8313", + "regex": "(?i)^https?\\:\\/\\/codesforninjalegendsroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4216bd06fd083aba1c10f83a9eae03b7b1e993e6cc9e222cbf4d3da80b52da8", + "regex": "(?i)^https?\\:\\/\\/codesforninjalegendsroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae01b79b76c875213d1df22fc113889a614c718cb83fcfbe0d9888373dbf2446", + "regex": "(?i)^https?\\:\\/\\/codesforninjalegendsroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49981150353b40e12dda14d20575edde39ef335f7ea80fa5e93aa6484a3ede0d", + "regex": "(?i)^https?\\:\\/\\/codesforninjalegendsroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "936563b571af08576b905f389335c644c3a5d7eeb40ff56eff367f0f183d7fb6", + "regex": "(?i)^https?\\:\\/\\/codesforninjalegendsroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d1bb477215244d26003b0245816817a4bad76d57fd9d9e01501a4d66d68c778", + "regex": "(?i)^https?\\:\\/\\/codesforninjalegendsroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3389ed453463c885f216d19fd42e70c73d35967886961a94d3d0fcd07a3f0676", + "regex": "(?i)^https?\\:\\/\\/codesforninjalegendsroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f0636110bc2087526392f2cc5b8956fcd2c832b7dcdd425aa4f83eb5c93142b", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegracanopcroblox2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "483ad8d4860c244ce9fb5500f1452ccadcd5ae6c0fa43925792870c7a2949066", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegracanopcroblox2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7424c84d8e50a5b42edd5e35d8d78ee02c46ede006015b0b56fb5992c51f62ba", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegracanopcroblox2021\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa221d0d4b77fe3cf9943f5689d686b4dd0fef78166dd0b276d266a601662bfb", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegracanopcroblox2021\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "142071d54409f046fb9f73c44edc21d01cb24bb0082846c8c06e36bfcba37b12", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegracanopcroblox2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "137f67b113d66d4758d6e19e509f7828ec1cde50cfaeacf8fa7bbfa2caa1557b", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegracanopcroblox2021\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e520b2904955261629fac3056b8b8371af59066155cac4e70300aaed00830168", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegracanopcroblox2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a6a5e3130ff3e0b54ef29a0b38e8e55fc2d7de3b03d0503cdf1fd80cfba78b4", + "regex": "." + }, + { + "hash": "eeb4a9aba41a54fe63d62de2ae86b6b59a9948a2f42268c570c542a7280022c6", + "regex": "." + }, + { + "hash": "a5f5ef560470157972dd63fa9cb35b4891f76481d31e3de9fcd4659a33e201fa", + "regex": "." + }, + { + "hash": "6c5db59bfd3ccab27dfa6b4885d22bc90383be8043e78f3b3dd38e606f70c8ba", + "regex": "." + }, + { + "hash": "133175ad5d01fe1837c590c988f9a7cd0f5aebbc282f9cef6e453691fbfe114e", + "regex": "." + }, + { + "hash": "6b21b314283df216162e727883ead70eed078942952aea88393a2ffbf6571785", + "regex": "." + }, + { + "hash": "44edacbf53e428490bd9a477f56c0d28832d618fbd1d1baab04cbda59106a753", + "regex": "." + }, + { + "hash": "76d3de50668a94a640c065d2ee2748a0d851cb452e2e8cb07b300f6636302fbe", + "regex": "(?i)^https?\\:\\/\\/superherotycooncoderoblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e06a1e3454378e9217dba71aea13c131839ecd5d8f2e97ca0f14adf25a5296", + "regex": "(?i)^https?\\:\\/\\/superherotycooncoderoblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e57333e64c79f229b0c1ef6f32bfdb959584e9aba97b0888ad7b03914c72384", + "regex": "(?i)^https?\\:\\/\\/superherotycooncoderoblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97434c4cc7e533718e01102e2e1783e6d27ebb7219629bffee0ebb489c0fb48e", + "regex": "(?i)^https?\\:\\/\\/superherotycooncoderoblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c21a83e1d4f074802f963929aa54c2f56244fe18b19877beedc18d94a81841c", + "regex": "(?i)^https?\\:\\/\\/superherotycooncoderoblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbfcb819908336edd4aef90e89cd528d38925e0bcb0520e39791f6020c0bfa62", + "regex": "(?i)^https?\\:\\/\\/superherotycooncoderoblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89b410db1d27960a373e5708e2370288c96ec44e659d2f1bb2bc292908ccb677", + "regex": "(?i)^https?\\:\\/\\/superherotycooncoderoblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f6353650308b5349150d9136fcd4b1a8bca600219a59dbb52402dde05900e9f", + "regex": "(?i)^https?\\:\\/\\/superherotycooncoderoblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cbc3a594aa1d474757374181ca43668a53e259b763f56cd04501dc40a27d256", + "regex": "(?i)^https?\\:\\/\\/superherotycooncoderoblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbe7bcd47bdd2ae44a2feb41804b05147611426e02072625e3259b401e8d428b", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxhackquirk\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f20f3ed40956ce8c6d202e5fd66aee2142625cc7be0e1aa4f5922e926339f4c6", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxhackquirk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92098acd7bf14a947bc568e901ad4a95eeea12f9e080ef9ea604508faf51a927", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxhackquirk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5d3a998864546168114876bf1a6bffdf033764e84eb798421d8990a46616f24", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxhackquirk\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e5a99e25f8c5b75a4fb2e84e93815c6f1c9a8a16475852ff68f851c0de1545e", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxhackquirk\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65f3e14e2b96ee2d85246471519ce3860245e044b01ada804e1d1e4f19938102", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxhackquirk\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a2e69cde84b3dcac15c7eb5a7d276e1c826310931d296feaa08dde5dc5bf4a8", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxhackquirk\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96429cfaf4cc08114b02a2565ecf2c4005166683f81927f34af4fe5e4cd013ff", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a746c9c9318e5e5c021c083fafa3954860b152488329c17f5acf45907f17ae5d", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f13369f4a69c61d3b00d8e4f658eb50ef4eddcb72e28f6c03f782a3ef632fcc1", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95de54d95126dc104bf38cdf3c5045604b32fd29f4b56a4eefd736ff30012eed", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89e887678e7573931e6fec76fb08694433a5477a19383b5d0a3deee58d1bd045", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "480a2a17d37deb48bcf12c1b868030fbec43bd0297d09a74c1c19d6660533be6", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c60430bfd41a2b5c7028b440d2cd4913f66d923c5684d174ea949351e8a3d6d4", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1620152a8633b9c704297210688e6c834b014c9a4cd29d17bbc3bb7d5838c221", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b62c15718835a373f6fe6c14ba8738c0588b395c1492d18b3f8268e1b65291c9", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a577fcc45fb01abb522c2928db27a51a5c673d26ee10ffd911bddb69ad74d3de", + "regex": "(?i)^https?\\:\\/\\/robloxleaderboardhack\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4991a97f03edfbbb84ba6ea9f10ffc8fa7facf2cbf9c5144bf7307d190ecc2fc", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxnorobux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baf5e46da7e8d7921710a5fa4282d9bf592a47813a2e567229de20180ed9862a", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxnorobux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "010023717bee3028a1d42e9cb9571b9ee8947091422696c3cd3793582e73364f", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxnorobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c765602b2da42cc72424d864c2247623c05f5f6aec68224a9ec90af3a843735", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxnorobux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43c26e50af7fbcacad7b18f89ace6423895589c687fc26ba9cec88d98c2f3266", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxnorobux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "145b37009eb83c0e5bb9b88879cb2cdd8def3d633c0466371d5be2a14d8435a5", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxnorobux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2be8237c99ecaa534f483fbde40b73aa5170209420f33c9a2fd5d66e25aa3220", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxnorobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4c6997ea184f78b8f5f9e1da22d533b701cf673122c583cca9d2dbb7826b1be", + "regex": "(?i)^https?\\:\\/\\/jeuxsurrobloxpourgagnerrobux\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c624f9e7987c126106f1c761baf1a9434df6222b779a334adaa77f6f1dd880a", + "regex": "(?i)^https?\\:\\/\\/jeuxsurrobloxpourgagnerrobux\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbd60325fd63a445cfd3f72f78eda112de0aba11254603c3ec166cefa004bf1a", + "regex": "(?i)^https?\\:\\/\\/jeuxsurrobloxpourgagnerrobux\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfa3456213f36d6d6faed362f553e61b5f77b3d4d49228b8094e4c28d1a3e018", + "regex": "(?i)^https?\\:\\/\\/jeuxsurrobloxpourgagnerrobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7079afbc2c8940efc067f9240ba9797d668d242dfbf107a9958c5b027ac2bc87", + "regex": "(?i)^https?\\:\\/\\/jeuxsurrobloxpourgagnerrobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30f9f04e57d44fe7655ab531bedfb2768754540e993c529f8469add989e424c3", + "regex": "(?i)^https?\\:\\/\\/jeuxsurrobloxpourgagnerrobux\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "159449452f1b41736d7ddf11196b84d631db76fded9d9cf54281c55495a7d244", + "regex": "(?i)^https?\\:\\/\\/jeuxsurrobloxpourgagnerrobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1a63e3c17c97926fda729c304121459b81f8ab1e8ce11d5035d75edc7789b28", + "regex": "(?i)^https?\\:\\/\\/jeuxsurrobloxpourgagnerrobux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "204902c4533301b598e22ea2ff756a038dc2e3f98c42ce971c512612a8e4aeae", + "regex": "(?i)^https?\\:\\/\\/greghackerdorobloxnomenoroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eba3a8a5c92a2f8cbc904d16707c68855f83a35a764bd4097bb76f8833376cfb", + "regex": "(?i)^https?\\:\\/\\/greghackerdorobloxnomenoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bd50896bd649beb6f8e969a35f8f87b153b9e7a0816aa6a6a6fed37c2edfc4e", + "regex": "(?i)^https?\\:\\/\\/greghackerdorobloxnomenoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef1b99823559bb333e53de5eb2d88e6dd54e834aa973a28ae5f00a0d4986c2ab", + "regex": "(?i)^https?\\:\\/\\/greghackerdorobloxnomenoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "861217e0f7e3ca50f39623e78c6008c6813b3a1c9f3ccc729efb587726759d78", + "regex": "(?i)^https?\\:\\/\\/greghackerdorobloxnomenoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57ba719e150c812e7c489033a60839b8c430ab6ec7b81b15e399dc964748524b", + "regex": "(?i)^https?\\:\\/\\/greghackerdorobloxnomenoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4a1d43beed11699bea6ecee9265edc23d168fb79e267b48b8824092e6108cf8", + "regex": "(?i)^https?\\:\\/\\/greghackerdorobloxnomenoroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77b56e3e805b53f8b99f14a8f467d44ba943c2017c3ecf09218aa72150943379", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecdc3f03bb976bf70a4b6d68638a12bd50eac88a3eaf5268167881ccb04a534e", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b6d01bb0a336068b352e4737ccfdceb2c2a2ac59116b80ee774c154dc2a638e", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1d6714fe725c617d0a2f3aa9edaeb0a5745abef14c8420a833c16acd85b2bcb", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a356f8887d2e7ec6bbbf87c2b58203fd3a7206855aad5a562b356298a50b3b", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42a741d01c99370d6d0566ad0cf9468ae65a7d99d269e97585defdc5d55fdfe3", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d0da28d2e2cf363197ee0039be32da3496d3bb0c9da366b3ec698172dbc632b", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446844799b27b40af5c5ee3cdd7edcffb2ac9726defe1c31f7a0351df2f7d115", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38561fcd2c2bf9f354d07bd3bcd1157bca6364f9fa181dba75f3c5b6ba3f56e1", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d877c6acd8dc3f8124b205836a5477621a517f8d6bbb7dd19055e781a95c103", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01481942d2475b4d0b8918e0d612159263f3c91243b9528354f9531b286a0181", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7da0b55eabc8f8556bb577916cfe4332ac8a397245fced09ab96d291583cb537", + "regex": "(?i)^https?\\:\\/\\/comoseescrevejogonoroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2077fb7744588ee43e35edf35165d1c0a640d045d8f8d3211bbdea61eeb32985", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b00413bb32d23bc08bb58bc65122ab78c36509176fccbc584df1a3434ca9ce3", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b66a430bd3cf1c28f7ffac3a212ed9bbd1a920c10f97ac3722b2f15cfae2813d", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "941d6b198034c050067bdaa1521ef9e2fcfc5ce724c12ff4b586f9ba1478fc82", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "727e3470cbd9570c651edcd9cb5d610469d303ded8d4e812489cfdf8ab180b5f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7285541cb44c2733c35274badf898325c18a95a7b287761ff317e9bac3ded76", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cf1eb2c124b4989b63eb6260f2d1dc752dcdf7b55868b1a20fb53549f4bb46c", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c689853b519a3adec3666fe344cc658ac3eedc927e34430b1e3112ba500db2a", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ffe2f01436fc757958b0f359c64c4acae97fe428ae8e1e6cecf1206199cce80", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a22782ab985918ed5527ebd43efc90244dad671c2fb96ce69bfa0aa2a3232fb", + "regex": "(?i)^https?\\:\\/\\/jogorobloxplaguescoloridos\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1c7da79aa633fc521443bce518db0e3de83e7b091e585da8ed024905c391aeb", + "regex": "(?i)^https?\\:\\/\\/comopegarvariosrobuxnoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "229262e81f2c5f983fb30ae9ab4ff5ad14f537809730242d6ebb055000fe5f80", + "regex": "(?i)^https?\\:\\/\\/comopegarvariosrobuxnoroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bb2ace8d31f563f1e707d79800a15889c3a7660f0777275360113f8ae745715", + "regex": "(?i)^https?\\:\\/\\/comopegarvariosrobuxnoroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff86a9204c9c7d7f81ba9e0a7be4c36272d23e90b0b3eae4a51086f9e4294097", + "regex": "(?i)^https?\\:\\/\\/comopegarvariosrobuxnoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82c9471f43db79ba9d56f9b678bcd42bfb39fccdc0b2b4a9baed2849e060bbae", + "regex": "(?i)^https?\\:\\/\\/comopegarvariosrobuxnoroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7163f0e40b36eab275bfb8e30a39af320b7e47cde9b25f4c7d67c235a764384", + "regex": "(?i)^https?\\:\\/\\/comopegarvariosrobuxnoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7ad49684e47ca695609dba779415a95fd0736de4353c50325b5c0ec49863f7d", + "regex": "(?i)^https?\\:\\/\\/comopegarvariosrobuxnoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fbd3795b40d5c7c95fe08b84c97fe9dc4449a53d745c78373a72c60f4d9a6c3", + "regex": "(?i)^https?\\:\\/\\/comopegarvariosrobuxnoroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc3425336cd56f8237579be6b106833192ea003509ef7815037792c920dc894a", + "regex": "(?i)^https?\\:\\/\\/rbxfreeroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94e5cf9d43e0ac155492f4684d2cda8c1980fb556d65c006843315aa79db9fa8", + "regex": "(?i)^https?\\:\\/\\/rbxfreeroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25d6fb365e92905da7fe8ee30aa13724fc00261cc5bcda229130ba634d1c0c8c", + "regex": "(?i)^https?\\:\\/\\/rbxfreeroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a7a1c492ffc96c49860d8de4273aed17dc2d067b15ddccac1573ac97a5c6672", + "regex": "(?i)^https?\\:\\/\\/rbxfreeroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c9ab551bde9593948f40c4a6552a2ed2d90a931741d13717f5bab111f1dc2d", + "regex": "." + }, + { + "hash": "ccd80a145862b5000abc59a7a95543003db521b713ea59b2641856df6baa3fee", + "regex": "." + }, + { + "hash": "ff30f1e60f2047b6401c5278da4719102689526ca641c3954b3fe008ab8f76e3", + "regex": "." + }, + { + "hash": "93a2d7bd3a33e1d5fa0b1b7bd744a00cca3936788443564365830b5cf5651aa6", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxjogodascadeiras\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c8aec467de65648ccc5a26a086611d77b95c497d5cd9740d79c4612cb4a07d6", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxjogodascadeiras\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8efcdfbc7577dec4a20614f10ec46e5fae6fbc91a7b071c28dfbc30fb9b82d7", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxjogodascadeiras\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "640bc6dabd8f2be50aaccb0bcf38c09876457594021ed744a4bc93e2355c1dd0", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxjogodascadeiras\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e0610be2f11477ae64fdece28446c37a9037bdf46e53a0bfdc8f5a4521b7c2f", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxjogodascadeiras\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eef72beab02e15ab66cd8eb9b15113659176135e6c9fe705b7d397e46c70e72", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxjogodascadeiras\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65d9e3480581d4201f6aa71d456e6e852b76e2e4f506b677d809b8b9d3973bb7", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxjogodascadeiras\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f60eaa678e75f00adf48628f5849896c4d16e3cc1c5ed7bf65ebfd731ab57ac1", + "regex": "(?i)^https?\\:\\/\\/juliaminegirlrobloxjogodascadeiras\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d87040fe18cb108e7e7efbdcad5c94035f7d65f1c41c42e7f470eff06fd9b82", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27ce4b52afdd5cdab3705b8f522dbb60718e92133255e6251e7a85d2123da259", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1dd969140cba9d293547b980226cfb5f1cdf35f1d7c6c80496b87897e9331745", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc1e1693af26d9633079aec0dd2ed5629afe3139f7b306c68af5ad817168b641", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d58e4e42689156bbc220c3ff578c74a75a81a23c02089ab21541575de21e776c", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10e904916e78282ac895c9859ab443338d39bca12c79592958efe99e2bac6818", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3144147f8a3ba04334333584eaceb488f06c51f162ff4a41228748d80328d868", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9efbe05c78917a636acd518ad073300af905432c62e4eee1f5cd1e9cf697e012", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c53eb619d0aae175ddc53d6acd8d9abbfe2ac7c17d67779dabe757d1034f6ecb", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "711f792d76f880993fbb727b7166fea62b8b89037d417c419727a7056d9e9a88", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2b9b869a1663a987436a9cadf48f4390995c15a6c7cdd42e753ba30ce529dfa", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7ac92eb73ccd603c5647b3b4de1a44aac25108266404511c7e3c746f26405dd", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4911172490b4260786a2e10fae550df51a7e2af42102153a3408c860353f8b5", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5485fcb555f72070e256de7c467025a9bf655bc7fce345c036811139070f7529", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "615f1b723b5b0a4a0e65f4b7486869558f01333adfcea50c8955f2602bce604d", + "regex": "(?i)^https?\\:\\/\\/sgsdgshdsdgs\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d1b215c624b84481b6c86e0c7a34687ac8f1284f2cb056496beb2cb14fe27bd", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df6000c475a41bb13b2c21f65da7b24112ac5a48bea0ac1a0acbebad1d2d3943", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c02ccb340357ee6816b907b843bf812959d0438443b64af48d5a7f83d3e108e2", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76b66483d082f75693a85db57c37f4728290bf4930c7853bab05ec355449e974", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3dc6dec2579b5c58fe98f0519d4c612510b82019817dd6550a03add7f6f69871", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bb2d982706f8df7c8938088344599363d1d809ee2ef1f8589e4b2d6c0c8644d", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ef9466bae9c5081783384c1dff7755b60c2c9878a8bcc1868ac7d5a79154afb", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "393aa7ea478d35c3ce8d0205d7e83466b4ff8998b6791426d630d4c240319d1f", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cecc65e1bc6ddde4d8d94c66a0b84f6bebc991a0cc8127aef651a19ddc679d0f", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24e5069fdbce4393acd0429aaee8de2ad7c11d8fd36b9735c14923d95391ae3d", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96cf604266265e3d450a8a12b75cdfad89bdd6c05d4f844ae7e1e92057b8de98", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a93bb0f159ee79c562d28ae3f6b5f2374bd33ec3006c236498ccda8bff7fd10", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49f0d74bbd28aa8c69692f882ef5c644aeee7a5543b94ed22a42ef0a3fb91aa3", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a323f8098b56a04b54f03c6709a0c7b0dcd21cf59476efb7317d43edd50faf5", + "regex": "(?i)^https?\\:\\/\\/hjghjhgjhkffds\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c6a50b10f190b2d67ddfd38ef5f1d7bf3984e2a18ce93836dfeeb3acd3c8630", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7257386ff35cc01b75185514f838ce5798cccc9473bc5cfa4c2ca6f7483d10db", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f79301065c059736cdb2737eb10b560f47bd6652926293d1214cfb25a075a7ce", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c767c9f71dc1cfdf005b7f3d86a6a90d761aa1c994549ef6837427a5adc98e9", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3343fcc2a5ab8c2e2651897931c56648588a75a8783e2e81bbd09b236a5a6e0", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "837af651ba4da84f145ee2a67c446d33366fee13164491c805ba269ec565023e", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "343c4d473dfead46555df708b87e8a39b45b2334e44963d15267ce8e5e75e8fd", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddc56e6fe09de7eeaccb5066a6cb3df577715068863458f3fa51a29465d60b98", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76abda571939c2e9928dd4e0e60f4e333d9ba95436f9c4d064de3ca59a53d12f", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d93380f829d01fbab35b422675f551fff8acecfb4203d99705a2ca4060513935", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52e1339c1535f202c72a044f4433ff1ad65be5d08d27f23cd461a4f756d850e5", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18d1553f374e5ffd8c07e93e05dd00de77ce0a5342bfcf3e7c35399de9babda7", + "regex": "(?i)^https?\\:\\/\\/gfdgdfgdfgfdgfg\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5669f99684d5bb5a5b09b4b03a0863c66647522cedd4cff45c3f63b53b9f061d", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52347c827a1b7d023bf298d7a145b6d1fc1cfd32978541cee90ec495df471084", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35245d535c53dfff0f1257c11e33c7145a90d0216430a1536c7e035e655c66ec", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c4e5b968e1ac287a12595e004f1a74138538ed71936bbf97e299d1d19619b8f", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "332fd2c9c9cc06ce34b66be80f96a2b1eaf1888081e92a7a497e9db1881700a4", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcbfe27bb7354a9e280efe122eeab99643ca1510fa8e6e132878990521853cde", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "210a494c7f88b2bd0a30273cc55208aa5ca1f01dd47df6a06de2c18812e822dd", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c919bc1d9d6dd0d7585cdc5bb89793a9628221f966a32269bbe3c0de86bd8d20", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5df5d6c10d037afe18cf5eb93f679a4a47dcee47182d89ce51bc4503790fadf5", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "566a7b06599e4e779c493c2b52f4e19f2ece0be9cd5095a07db9e59cf5c482b9", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d91f6acc8d78e2f2f6c998987b912b91edf1869d781dcf8796b094ac41f49ff0", + "regex": "(?i)^https?\\:\\/\\/gfdgsdfsafasdsa\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1751df724dfe145312aa51d8d36bcdd34bbd213d3b4af25ab4b515e75717b12c", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a6fbaaf8914e328d07e4a3269270747842cc9714a44c645cf5cc2389d610ca6", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29420ee7a68ccc6da2bc94121e820243b7acab5b6d0d9c947a239296a43c2fb6", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c06190914e52876689ff85709008d6a052ffd4e59f67e6c88424937003223d7", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b6dd7e842a0d9e8f34a461c26cab09723134a7eeb2bbe73928a799201d95b57", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea774e20ad3dcd3c482cbdc6b739fb5ab4310739255023b1e8cec67137bf5f52", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd3163ea306b3086399ce5bd32195b1a3a4a4800e531eebe91da4e08ba404943", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fe57a898e55a0bd8aa9af6ab9228dcfdd1a7ee00186c04d0002da382f77c695", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79ec6012f66a6ed2f36da25a6fd7fe2acd7ae612f2f9adc1d987673bea86daa0", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bbea97ca3ba9af9737d27ba2dd82ed859f72a725440bd8a09408aeb6b3a3570", + "regex": "(?i)^https?\\:\\/\\/dsjgfdlksgjfdkgfd\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6416f37afc1091ec189538926fba93afa929fb63ba1828c072f58d1041213891", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e8194559314f8aa32d656bf0d761bfbba61af3466287c326c562b271ff80dd9", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "521b2b2153ba4578ca2742dfd890108a3b75dac414ae9b9d0c7f561efeb0ab0f", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df408b584fe08792e82e3f88b708a95c3c3856fcea05185e5a65686e7ee6fffd", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "042b1939a104abd91ebeaed15b0979a83a2d3f66b0ab45d37015d3c5abdc5a55", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12b4c070eacb97edc876099f868425eea52c8d3392ab478dfdf072e9dad11b52", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1c4fcc4b4899d7edc367b11d7152ed0b9d9171f8d0b708606267e280d23a805", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "061b32f243ea074eb1df9e79055a06dd70ef9bc25e9af3e10c0cfbd7a3dde12a", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35aff88221afb57146ccb899016230a798a5b50ef7416a8624a58b8585c9f018", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83f879cf8198de8ca01819ff674a456e521ed4e8ea8c866d5ebf6071f9d7b6d9", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdbee3b6e2951c2b891938b9597361f7a6f2134916ba4c345662b18946265a42", + "regex": "(?i)^https?\\:\\/\\/gsaskjhgdsahjd\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67aecad878500f310c8fa3adf674399ae0ab29c59f25b3f6e6035fc444ff5b17", + "regex": "(?i)^https?\\:\\/\\/sdsjdhsdfs\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "834f15e213fc7efbc12eb4ec8832d00bafbe39555319a68ef87f9437a881d802", + "regex": "(?i)^https?\\:\\/\\/sdsjdhsdfs\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d25d0744b54b350a124b47bf326828669cada3f320cb6adc7e2d37c3b7449a7", + "regex": "(?i)^https?\\:\\/\\/sdsjdhsdfs\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a435e141c36c226e3dbd61a70925b2cdec7f4ef7e04805cdb944abaec3b381cc", + "regex": "(?i)^https?\\:\\/\\/sdsjdhsdfs\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "928e1856e42aa89524cb9571859b5fe296a2c725c0788cb8a10ad44dbfdd5b01", + "regex": "(?i)^https?\\:\\/\\/sdsjdhsdfs\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e48c6eb6450a8978c668467ff0c6b0e1dc12e92e9d4df118e002d72f26824c0a", + "regex": "(?i)^https?\\:\\/\\/sdsjdhsdfs\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e7f34ca4ad81960afc0ce199b5c7b2634da188c26e10c9231cfe9e1c99fe866", + "regex": "(?i)^https?\\:\\/\\/sdsjdhsdfs\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "115cd9ccc7d73ff35cf11e938ec7ac6652e6c34fc115457244355180097d5fb4", + "regex": "(?i)^https?\\:\\/\\/sdsjdhsdfs\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdfb54864fcfbb0dd4efff5e5ba0d6837ab314b9b670d8edc931a61e7b9d0c8", + "regex": "(?i)^https?\\:\\/\\/sdsjdhsdfs\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fedc75ab448246db0687edc8c7fbce5e938ae7deeb5424eb02b3dcfa94c1638c", + "regex": "(?i)^https?\\:\\/\\/erraperobloxid\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "258eb3f0404780d137de6cffebe52da5a373223708c2226440d98d59c0747fc3", + "regex": "(?i)^https?\\:\\/\\/erraperobloxid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8193dc21db39861bbacfb14fdd5b3e11e30e787774b3e22e170f2f32a23c4885", + "regex": "(?i)^https?\\:\\/\\/erraperobloxid\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79db4c805f108ae6cf8ffb0d823944265be4a43a408bd2bd7eaeecb2ae5a817a", + "regex": "(?i)^https?\\:\\/\\/erraperobloxid\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5917e73ccad883843779e1fc37669895ba7d97eb63a78978539c2f299a81043", + "regex": "(?i)^https?\\:\\/\\/erraperobloxid\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e0e903a640eef6e8bfb71822560dfa1ca2834b615ad0802ec08725f92b60cda", + "regex": "(?i)^https?\\:\\/\\/erraperobloxid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fb255c3d03dcd17d8f860f47527982d22c60b2bad57767caebeac1444804b13", + "regex": "(?i)^https?\\:\\/\\/erraperobloxid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f75e166f149377bd8c371417c512bca3609c147715282e0371c1f64eddc91012", + "regex": "(?i)^https?\\:\\/\\/erraperobloxid\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a08d350797a7f0800a8037ae97856def7d0a698690b1e9c94070e4821ae152d9", + "regex": "(?i)^https?\\:\\/\\/roblox3dsgame\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33d37c5cd45c7b924500e26e229f1796f2c84eccc2c7a1a83a4bd9607a8bf317", + "regex": "(?i)^https?\\:\\/\\/roblox3dsgame\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60013d6da2b9260d35a1668a2aa41abe57d06c74e163a6719dd7e7582c6f8fad", + "regex": "(?i)^https?\\:\\/\\/roblox3dsgame\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8419026aabd1190d5bf6471f2b8a9024f6e2af208f24edc16337e09b38d40da", + "regex": "(?i)^https?\\:\\/\\/roblox3dsgame\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "318ab99788468b509130f7fdc4f2bda5b4601b55daf4b3bf6205863cd418a280", + "regex": "(?i)^https?\\:\\/\\/roblox3dsgame\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bbd3ae313b76dc50b19c752d897498b9be72842522aa56106f175b18f2d9556", + "regex": "(?i)^https?\\:\\/\\/roblox3dsgame\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d7c9e04c4f37efc80c829239afb9cd33673fb8d7f9f2aa6e81abc696ed1d72e", + "regex": "(?i)^https?\\:\\/\\/roblox3dsgame\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65c0793febcae68d20c34c4ae48f3f3245c6ec33b06c6aa8d8c11c8e66ce9163", + "regex": "(?i)^https?\\:\\/\\/funbabyjogandoroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26cc6d351ac7325f28df17413934525aa69cacfdfb612a34ce168da5af0c3199", + "regex": "(?i)^https?\\:\\/\\/funbabyjogandoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9af59388995330055b8bd8bd718d89f37b1cf8a980d980926485269c18a016", + "regex": "(?i)^https?\\:\\/\\/funbabyjogandoroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8484a8d9ee0cfc4954cc4e51bedb81bcc8216936581f4f9dc6e0a62b7ead6b9d", + "regex": "(?i)^https?\\:\\/\\/funbabyjogandoroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c46758e3361d5179b4b82072f6ef2f9ad7aec3e2c5837e570e2dfd64ae60af32", + "regex": "(?i)^https?\\:\\/\\/funbabyjogandoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6cb53257b1078bd4395be40ccc236cfded688a06b83fb7990334493a1dc0346", + "regex": "(?i)^https?\\:\\/\\/funbabyjogandoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdda2bd08fc56f159aff9ba4acf7f26c569ab318205023c5526485be68effebd", + "regex": "(?i)^https?\\:\\/\\/funbabyjogandoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d68e38f8ce12405194b15d08cda10236b562d748d83cac40d5becc7274335f4", + "regex": "(?i)^https?\\:\\/\\/funbabyjogandoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "226a9f40caa37436dbb2ccb418d12206bc6960245305c5d330258f6cac83b3b9", + "regex": "(?i)^https?\\:\\/\\/funbabyjogandoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fdbc85ae889feb5d10ea62823733780a0f02d982ab3a1d7b8a4db43ec698673", + "regex": "(?i)^https?\\:\\/\\/www\\.hieraktualisieren4\\.yolasite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "258abc85afd99d5ef871530958e0b00fa9a0c5799a556bcf039c2ae476241e85", + "regex": "(?i)^https?\\:\\/\\/mercuryrobloxid\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f401cb21f5c61b3be4c009c9c9d3f720c20ef9962f71d75611d543a443df3b7e", + "regex": "(?i)^https?\\:\\/\\/mercuryrobloxid\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab73e437c387444ab8dfc312b7e1381f34a595b9130818e0d1abd537a2f13f59", + "regex": "(?i)^https?\\:\\/\\/mercuryrobloxid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da12a6fd2ffe252404227da787ada912ec920fdd46b0a3d7347f2a6d886a38fd", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a2058538f0e442f8dfe3a4befd27816f4be46c9b121dc7338b4c611e98f5a04", + "regex": "(?i)^https?\\:\\/\\/mercuryrobloxid\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80e505d9546e40699214c946b7d00a061b53873cf3ab8d306a30b8da76a7c8b0", + "regex": "(?i)^https?\\:\\/\\/mercuryrobloxid\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65d04fb782e3eb3ba4ae217704814f3cdb95f0bf217aad4adab6c9a21d5b1e06", + "regex": "(?i)^https?\\:\\/\\/mercuryrobloxid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7c5e768529b050746543d1f9583adaf396e1d63c955ba536695eee23d48462", + "regex": "(?i)^https?\\:\\/\\/mercuryrobloxid\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d41fa566e1789cc1ae9b8acdbec3ef19e8aeedb8f314ff5a6f62f8cccf71408", + "regex": "(?i)^https?\\:\\/\\/robloxrmod\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b8614223b9afd255bd53ccd277941e60258430e57add71d0bd387de79558572", + "regex": "(?i)^https?\\:\\/\\/robloxrmod\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acd2b704e62a2acab3c68bff21709fdb5bb70aa71abae115d62bba4bc081e54b", + "regex": "(?i)^https?\\:\\/\\/robloxrmod\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4429cbc9958abca1b8e5d29601bb0d22e59de2c27aed800b9b74bc9c104f2236", + "regex": "(?i)^https?\\:\\/\\/robloxrmod\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a4154c00bd9e4b07c3aef96d1f69cd649730cf6d46d7cdae410255c56053f23", + "regex": "(?i)^https?\\:\\/\\/robloxrmod\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f81c2ca8cdd12bac564c4871918c46b0032b340dda2819d90058c24551389895", + "regex": "(?i)^https?\\:\\/\\/robloxrmod\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65a829e252eea2eb43f924443e4f08ce3c06a681b841a7ff1b382f2a0e8b46d", + "regex": "(?i)^https?\\:\\/\\/robloxrmod\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aed54872f90b113d1f0bc310e472351415c7769b035a0a97f1c2dd15f0e13a2", + "regex": "(?i)^https?\\:\\/\\/robloxcutecharacters\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6876d9f6381211a9a97cf4990cc546c952d2d6f61c8b0d0a083b4dad0923c571", + "regex": "(?i)^https?\\:\\/\\/robloxcutecharacters\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "803c61348d7f5e106f57be1ee51180553a526a1e813ffb195668b92af5fb8de6", + "regex": "(?i)^https?\\:\\/\\/robloxcutecharacters\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cddb19a9b55d61beec51fa10e87cff65b336eef9b9bf4f35067757c254f5feae", + "regex": "(?i)^https?\\:\\/\\/robloxcutecharacters\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd859a49ca993dfec305870395a0f7f9c1202eba1bd53f213816326ea0ec2ef4", + "regex": "(?i)^https?\\:\\/\\/robloxcutecharacters\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e56fffb41876bdd5f6f662a663becac79f331f36ff43c7d69e6d9c59399b3b2b", + "regex": "(?i)^https?\\:\\/\\/robloxcutecharacters\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61d859c2aaf658064c41b1fb0b7cef168fed3f29f7c226138c2215e9a6bb930a", + "regex": "(?i)^https?\\:\\/\\/robloxcutecharacters\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ff2592d6238da09e5d93078a700c12c5eb2de3db8936b955ca8e9b3dc0f75c4", + "regex": "(?i)^https?\\:\\/\\/robloxcutecharacters\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcc13f81e3ff3c38bca3ddd807943d68cfc2263fd1549b13762a7fea456fc800", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxonlisesembaixarseuapp\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "923a6fd5246850ddc350779374c2ddfc38b35a712ff46a815e3e4d9865dd56d8", + "regex": "(?i)^https?\\:\\/\\/robloxscp30081\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "851c08617598d1a7352aef006be4fc4802805d504c16d6b30de1778ad67b3f83", + "regex": "(?i)^https?\\:\\/\\/robloxscp30081\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "212a5717b7110f14cf0753c563661fbd2c9868429fac87cf301b20a9ae95e7d3", + "regex": "(?i)^https?\\:\\/\\/robloxscp30081\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c8820fd0508cf516435e8203c95c9d1882955a8fa300ba9891b262cda89d7ac", + "regex": "(?i)^https?\\:\\/\\/robloxscp30081\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11379cb517f4098b1ab85654957f95ecc3a23b1d34ef08a3cbfe1be450ddd582", + "regex": "(?i)^https?\\:\\/\\/robloxscp30081\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "663e4a4dd61d78f7b0552cb877265b2bc8e5479dd61f95254aecf3e321facebb", + "regex": "(?i)^https?\\:\\/\\/robloxscp30081\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1847b58ccb98698cdffd54609efd8dd37886e6f210370f6ebc076b55f2819c1d", + "regex": "(?i)^https?\\:\\/\\/robloxscp30081\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ad1b896f3ad314c106aaae137d149479c8e987b95fee3eee06f29d755985107", + "regex": "(?i)^https?\\:\\/\\/robloxscp30081\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e0654273246ed53fdaaab364d3b0a365cb3ede83ae84e326ff21bbb3e1c6536", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxhackgetfreerobux\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fde995dafb68411c59631fdd879e9d0ed7dc0ef1da9af9cdcba6e598664ae69f", + "regex": "(?i)^https?\\:\\/\\/brugnogrobloxumjogo\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f2da9b294a644f6377045ce1e43a93bed3890412d30a94893d16e485f38f722", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2bd77d19b26744f00396dec88d84108e726c50befd6f5caf896f64ff60e3bab", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25a403d30729486ec3097b1ff8a7fa34cdb9808a780360d84664bb5064c0353e", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71c35ff0767aadc884744e9bf0b0863a39eaa8927084c66d6e445745c63b75aa", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f38baa6d7e513332d47bb2099b6ab987c2b80d42d331ce7d293062138a50597b", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd50b69ce37dabe6d6b8049e510143e3af19244136e35ae8446e29b422cb96fc", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "507dbb6f33f257048629f658571c13ef51497c48e7057db473c948af1ce2c772", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20f723ad8ddc304453c6c8e2095a553ac8d001de15dbca60f0caddf97f74a032", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0c24bec278e6fcc8e3eecf08f1434f541ccd8ecea5365f703d59df34b6a8df0", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7ee88345b3a88534cb43b73a6c3a1c1ecbd23d7bab00d97d3a2a88a75560dcb", + "regex": "(?i)^https?\\:\\/\\/jogosdeundertalenoroblox2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386cfe3d645a1345bdf165cb18a328519f82541b2cccd83cd17b6392d97f248e", + "regex": "(?i)^https?\\:\\/\\/codicosdojogobanditsimulatornoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "043792986178bb8494e3565281e94dd683ad8f50a37f84e8090eaf61960aaf80", + "regex": "(?i)^https?\\:\\/\\/codicosdojogobanditsimulatornoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae9cef448e4ce5c4a832f8f881f29bc443720156478093acce53abc29aa6a43f", + "regex": "(?i)^https?\\:\\/\\/codicosdojogobanditsimulatornoroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4e17c467ceb94f3a368cd5f066c12db4ee398b027644cb70da63db3f3c1cf7", + "regex": "(?i)^https?\\:\\/\\/codicosdojogobanditsimulatornoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f02eea61e68a8f6bf451df6d040fdfa08ede70282e70fb04e3e7d1d6f7324165", + "regex": "(?i)^https?\\:\\/\\/codicosdojogobanditsimulatornoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0c5b8cc23524b9c929f91d895544da1c2b4c976258589dd6c3155c553ef823f", + "regex": "(?i)^https?\\:\\/\\/codicosdojogobanditsimulatornoroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "514236ee012a48d2665e2c852a3741584384ed95ced37a028bef2c53724cc2a2", + "regex": "(?i)^https?\\:\\/\\/codicosdojogobanditsimulatornoroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd603e4ef2c58e6f45413c533233e8f143e0106186de6321b1a983d73e8a0e7b", + "regex": "(?i)^https?\\:\\/\\/codicosdojogobanditsimulatornoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7a9777828fefd3741b246e1e0911ddcbb7237a04500016cab7a286799a714a8", + "regex": "(?i)^https?\\:\\/\\/comoporhacknoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f5834382989493430112b84b07f22172cb3c99bef17582fc95de5f1bc77c414", + "regex": "(?i)^https?\\:\\/\\/comoporhacknoroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe7628d9846b5e29ae11b2297cc37e845a628d62a8a0c406228b618fda42c1d", + "regex": "(?i)^https?\\:\\/\\/comoporhacknoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91be78f8b103c8efedeccd4c6754beccfa490494d96b5ff3bafd1c97cd787f16", + "regex": "(?i)^https?\\:\\/\\/comoporhacknoroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b6249f7a9235e32eddefc0984cf5179324199845d029a8f63fc45d35e8dbf3a", + "regex": "(?i)^https?\\:\\/\\/comoporhacknoroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29ac023cbe7dad6698641d0d2fc0dbdd4e351845704b4db53054c91e882d151c", + "regex": "(?i)^https?\\:\\/\\/comoporhacknoroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "648acda80d31551419f3f10889ee4ac9d21cec3b421e1fe2ae763c02c14994ca", + "regex": "(?i)^https?\\:\\/\\/comoporhacknoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d433a19d8e21eab1f546d8284f9cfcaeac2dd84698fd9158db7b24866153f1c", + "regex": "(?i)^https?\\:\\/\\/comoporhacknoroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4802735e154162584c2e14a432f71d1336a1afcdee2f943cc0e0c365f0617672", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f02ef55e08571e306eb59b4c640e895d624346eb3579a81def1ab8a7b3c4fdc6", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "904b5a563b52f77ad026d72c0ef1bdda710b9bfccd10b7c8d15e0f9f258cd2c6", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "855bbf44337824619166bf1861ba60fd29a4271892ebe77ab125323a9dca9c12", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "164abbefa17f19bc1329a9908d6387bfb82e21b08c7fa3c55c78472aae0189de", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "792a4b2b3006af6e36d51f459baeb3f88e5ec55b94850d1005cc59eb14b6e3ae", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1953729e3afca64d911e728a76e650b9333da410ba49b420030e533a89baf37e", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0397567199145be3b3ee7690c77dda61e8ff6c7292d285cfedd4cbc72a3e0b61", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9d9fb5a3c9b089ef9a7a9fee1c3f9c0e3f3aa429f1e780f5f2391a06a4d64ee", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5dffb0411dd385a68ec92d4399f95e2874274efa9b9f4cf9456718d1c2b5fcc", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eddc0bf7ee0a18040e9bd4cc818e472a7fe8f1649c9b4fea4358c977a7678460", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8e29ddb12e18e090f84aee57dbbdf1ffd0ebc94812ca53261255208830453ed", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9fb77428c1a028c450c592a94adeeb588e152e56b4e83f2dad21952641563c1", + "regex": "(?i)^https?\\:\\/\\/hackadminbokunoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a28103ad20376e305b3391b8e1279448be6245f3390d3a389fcc2b779010c71", + "regex": "(?i)^https?\\:\\/\\/hackadminbokunoroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "019d1489aab47602bc8c6a62ff5e43e5f276771ec6baec109d92874d5d14026c", + "regex": "(?i)^https?\\:\\/\\/hackadminbokunoroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c87eb2a1a5accf0e5e4f88fee1b119cf2b909ae8e88a28fb7144d477bb7a4054", + "regex": "(?i)^https?\\:\\/\\/hackadminbokunoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e653a1992756a5b7c2c7e9fa0327ce73441e7cf66841c260a2c76df38a8ad238", + "regex": "(?i)^https?\\:\\/\\/hackadminbokunoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ece4756d6ddb1150e2c46306f82ac6c78d8caa325f167aef9039298cb5e486da", + "regex": "(?i)^https?\\:\\/\\/hackadminbokunoroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bde4eeb43365118797263811e3e423356a9c9643505d5b0eabffc19fea2c917", + "regex": "(?i)^https?\\:\\/\\/hackadminbokunoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9a4bab42c68e9b7d32535406da480ea8ed573567c6518a12c119baa5dd85ca8", + "regex": "(?i)^https?\\:\\/\\/hackadminbokunoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1b899e049dd65ea7e4210b0b91251db4583ef1f6ee39d1a9895ab60e811a729", + "regex": "(?i)^https?\\:\\/\\/jogodehomensdascavernasnorobloxsparta\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83e84955a662968c3bac88f1f4fbd6a43b2ff3f3db25379ec61e941eb8fcd1e1", + "regex": "(?i)^https?\\:\\/\\/jogodehomensdascavernasnorobloxsparta\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "194ba7c739b33f9e9e452310f0e4f1d357597ed2ab6d4fc6ea3a2aedc3845048", + "regex": "(?i)^https?\\:\\/\\/jogodehomensdascavernasnorobloxsparta\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a1891f6a1d93fa86e00f08c9043a8a7e1638f6acbea44b3cbf88416ca6733d7", + "regex": "(?i)^https?\\:\\/\\/jogodehomensdascavernasnorobloxsparta\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "997321b162a303f9e20c1c59ab566475582077704ac097250723431830363e0d", + "regex": "(?i)^https?\\:\\/\\/jogodehomensdascavernasnorobloxsparta\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "997e5d022a97c0856bdf811e2d200c7c1164e41ac6d6a7e71017738a7789d057", + "regex": "(?i)^https?\\:\\/\\/jogodehomensdascavernasnorobloxsparta\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7d20ee1183fc63d7c9b5f2bb09dd51531d62d66349b57268e3037e15b1dfceb", + "regex": "(?i)^https?\\:\\/\\/jogodehomensdascavernasnorobloxsparta\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39f27b6c5e7a4cdb55bc6aa9eb848bad6285f09a84c8cf251209a552eb949661", + "regex": "(?i)^https?\\:\\/\\/jogodehomensdascavernasnorobloxsparta\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05fb985496af9c0d8bdae4809c8d330648faddd0f144ea0bd78828aecda1e2c7", + "regex": "(?i)^https?\\:\\/\\/jogodehomensdascavernasnorobloxsparta\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efe84d98374084de8098619a2bef5c0fd220874be12e7987999a184fe065defe", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a19c27601ae02f3f2ef195bd0db95458a39ed5683206ca5d6cf8981124b2191a", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a08690a9bd6ee50ae4f0f2ef992e619e8f8e446cc11f3dfc79e13da7125a04d", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0a7fc2947e39614b0c043c041dbf98b26ccfec378df032a2ef579ff9f15de5b", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d65cb848f19809194ce2ad2bc8ab10ff1d7557e4882e8664e9bd69b35cf88a94", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f02fcc0136d7b0bac5bcd805aea3af608e91354d639356316d31ce9bb9bda34c", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c8cace8fc57e1ebe84bb7b6f876f41844314f7c57f46c59a9aed96b9eb02d62", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9b07293cce81820f3fa97e8784b4f613d639579aa4d4a8f52b21fff686757da", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d56c7af5e79a84411c730b08e83db3e0a218bb184ff0ecdc5c159f22b5b6487", + "regex": "(?i)^https?\\:\\/\\/jogodeshingekinokyojinnoroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21a71d9a7b808169c7b931906a6e612a79a82d5fcca5c2283ae4619a5e49affe", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxonlisesembaixarseuapp\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d29610058e357ca86138e5d19d73f01df2d04f3fcb5b7ce81eb20fcc0f241f4b", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxonlisesembaixarseuapp\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "daa0f532e25a8a5dc584c5f0f4a1b36d0a3a890e8cdf2cbd6aa7a6ee4cb8de3e", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxonlisesembaixarseuapp\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7732e9643bfc2564748dbcc0106c33feafd896c38dd3181972a861e58f09edd2", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxonlisesembaixarseuapp\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3967fb9a0e1b0625c274a6e3545d4aafba1210c6834455cd6b7a0365fe14b0b", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxonlisesembaixarseuapp\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f68e51e353ed7d808c4b125d295e6b8626e9ea963741c815cf93fda61851791", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxonlisesembaixarseuapp\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0123075b31f6e20976b33068e528d50690e3836def57a57b018226fee8ab17e", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxonlisesembaixarseuapp\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "710b96e1759be9cb6015c057d436952dd4bfd6a22422f012e354c627679b6df8", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxonlisesembaixarseuapp\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9bd774189479ac24513d958b7361348dd6709acd0eb6400efa2b2f94e21242a2", + "regex": "(?i)^https?\\:\\/\\/codeidmusiquerobloximaginedragon\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d52e6d01d8fcd5da405f448c67519c91cb1f457dda7a3cc4e1a277ccf76bc86", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxhackgetfreerobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f6c2ffb67d65e39fbeae1c28f7d132eef1cdd931284bec145197de14f31647e", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxhackgetfreerobux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c092732f3cc4f778537936a19d56c06bb4471de5087200efbe20f44dcc19173", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxhackgetfreerobux\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf068ca6aac93a5e4c35f6391dcb1ea6f5283fadd291017c6dfef54b641efecb", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxhackgetfreerobux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b3f3bd4621c0a05aa20a2daa51af23295e9a7a40448a3d0652263359bf4ef3a", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxhackgetfreerobux\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70dee8bc8bb1be238df7a49aef61f7f02e899eb12145af097c51b1ec236e458f", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxhackgetfreerobux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75ab8bea44d2017a9d9a120e1e76a68f9a8cdc4220dd426579a5c3c466065ddb", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxhackgetfreerobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4afd0baab3e8028681bc5e0d2a8d37cf9abcba052f58f3f04768a39afbdc77bc", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78042d46dc220d9e94f197ada83634f686ac64ca3f2897f520eda80f741b79a9", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3fc3e879612ce4e28537d74c54673ff49d0283bdeaa1ed181e66e6dd4435d40", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88489ec301a6355c4760a90d4e5a5e4a056bb908e030b3973e7aa229526aafcd", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "316094269d57e675fa37e5702e751d2d28b40f4ec6c40083951527e2f949f636", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbbe1c11c1058ceae80466aeb88db57ee6b2f246801412cc40114fa8edbb6d5d", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f5a51bc67376256a71eb0971183ca0100879177e6ccdbf36040e6f16a40da88", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01ec6bba0478eeb6a6995e9e24f2ebaa226637ea6040c5a9f79f7fce37cf2fbb", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c76d542f34607e3ad0dbe2fc70ac292709c864f71c9d5c3321dca579532336c0", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "356790ea4b400e25216bc5539662ad888a431bfa099a6750e054fba9633e8fe8", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c22d18b6b0a1a447b47a0fca9d4f7370b4d7480226dc4c90cdf5f3fcf72c3abe", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc0f3016055413ea72132b7a78700b3291a9d5ed1740ff509d36c6d32227621b", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2fbbb38134b61a3d7ee7783bf25b42fc1b2fcbf0f084f5cb3a88c032f283c67", + "regex": "(?i)^https?\\:\\/\\/novohackerdeatravessarparedes2021robl\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80344f4c6a2235e449a064e922c06a5916ccf403c4fb3f314564628515824f29", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca8be74914aef688a104353accaccdcf730653c7d56551b4663113da37a1f3dd", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c36ac73242dabf2fd0eca360688d8f39af00658896a2b608e0cf115593d86d7", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "546cff9c93120807cccd258d622379287c968207436642aa1038584e0183cc91", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "213a3e84f6ee45d9424e675899758d292b0c9a30c77703f396d7061304a23f6c", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e434bf048a66b17f1596b4fbeee9dae7d6a585efd10fc6e9d1f7e18d175463", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06fb47af75ea00360e91ea256648afb1cf32ed474ddaedf4b811ab11c545b4f1", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00b3dff032775662e2463af0b294a193072d38c07ff4faf345b2f85a93526a1c", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a089ba08f1235bdf3437276b3fa8c6e3c20bb8fd307c3ae22632213fdeb4a6f", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab2ffcdc3bde30930a13c7f281d7c179c4a11c15eba732e175fbc471ef49ed3", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f104796fee9ab8aa2db3042aabdb32f240d4b131c0a65cb471234186842b70c", + "regex": "(?i)^https?\\:\\/\\/robloxduplicatetoolscripthack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4663c56bbd16d613f4959509f36981098b735e79a96a3814c52223cb337b472", + "regex": "(?i)^https?\\:\\/\\/robloxduplicatetoolscripthack\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99bc98b979d25ccae772dd230936b04490cbb7c10d92a9631170b0e1a9ed8a4d", + "regex": "(?i)^https?\\:\\/\\/robloxduplicatetoolscripthack\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8a0fa614dc6c6920df6b7e4bf8a48c91ae57df4ba9e03565a758fa128284c87", + "regex": "(?i)^https?\\:\\/\\/robloxduplicatetoolscripthack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46fda7c6dfdcbc8d12d417f17c31a40a6ca7132da6d10e3725b27005ed5b90d4", + "regex": "(?i)^https?\\:\\/\\/robloxduplicatetoolscripthack\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2cacc00e9f28b682f6c05b386358b89576b301ad22462a26813f2ba7cd4816", + "regex": "(?i)^https?\\:\\/\\/robloxduplicatetoolscripthack\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a63108da7d001c5b303888dbc8f1c22c79c839ca1a03380e526653d4a5679cdf", + "regex": "(?i)^https?\\:\\/\\/robloxduplicatetoolscripthack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fd81be76da7051988d65c92b85b22f72213256d66e304ff259fcc8ffa063957", + "regex": "(?i)^https?\\:\\/\\/robloxduplicatetoolscripthack\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c743caae5ea3c4e2b2c75fe17f576c9af44228ed377c442a80c92ea7763aa467", + "regex": "(?i)^https?\\:\\/\\/robloxduplicatetoolscripthack\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72d48654376cfcb4145b60d3e93f477f743d4b128ea670b5435ed16fe69b69c3", + "regex": "(?i)^https?\\:\\/\\/robloxjogoparapc\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56f9a7a329061bdf8c2c1dbd724767b5e097aee7f33bd9d091bcbc68c4ed0748", + "regex": "(?i)^https?\\:\\/\\/robloxjogoparapc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1620b5f005a95180f89511c1198fa4b7230647f92ed94897fe8f79e920e94a0b", + "regex": "(?i)^https?\\:\\/\\/robloxjogoparapc\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6523790b36e6b8f99f1a1eaf5fa0e009f939cd40d3facc3022694b62ed23c12a", + "regex": "(?i)^https?\\:\\/\\/robloxjogoparapc\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "115cb045481cadc682a8ac2c3d94e4d401d4570a9e8a80a5d8675adf6663aace", + "regex": "(?i)^https?\\:\\/\\/robloxjogoparapc\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46d0071aa76e5833f5f18bcfa702ba310064fac766112c3c1f3c1ce7a01c8cbd", + "regex": "(?i)^https?\\:\\/\\/robloxjogoparapc\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "048e84090e5b60b61571cf47cc507b14ef9390325cd363641313f2f33ec5e307", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd978c4fadc5c4433cbe2d9409b15eb8f3c397ca9076a7c0f6a2128add3f5258", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02ed7c5396bd48ea09b913844056fe9c04374246a5ee33a9fedfa549b287f35c", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c00321192de887063573ff8dff53201111d16702379e8642f687c3fb70060c7e", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57a27a908d7021bb23edc0f89737ec18b72014cfe5ce60642f616ff79b799c15", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cf84cf0d0834bf2681a181627735aa2b3b8f359ffc2d8ccc7c465803b71494a", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "500979b505c5d46d6b01758f581925c010f25d17189bf14232a791cb2d0a5ac6", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05071bdf798e431d4dcbdb82d487a75c2d01613392bb303be5b81065e14e3383", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a4d826b175f3dae3df16cc7d694ef2e0c546098e47d7417a3c7827af1e32d59", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffef7b9b9ffcc3b36a759911af231013946b9b1ed93fc67ac919ccd6ada14d1f", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04411a87b7119048286bafec8fcdbb44f40f9558b5806247aeb31f4ec656b13f", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82b421ea7435df27b4ba328bb236646bc53956e6edb1850301a8a32daa6e8c47", + "regex": "(?i)^https?\\:\\/\\/tinytokrobloxhack\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "147185fa22ae5ffb7e5a8865353efdd27e3b95cb5e512bd144873aa3f0272ad6", + "regex": "(?i)^https?\\:\\/\\/robloxapiratestalehack\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b876daec3b00aea4e4727e53731adc80c7a6b863dda87281be9e47606ce4f6", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a550a2a094f814062c5d66228656c5f49bd36762f3fc50684ad5a13a612d1b7", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c25440d14f1ce02c8c4aa47047ace65393a39e78c7253fa61b6a87d74c03300c", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19e0fe3db49c6fb41afe76e232b75b163f31f72b643a06ceeb0c011ca77da824", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e95e9f6ee747e5352c95d5a7ab7b0239aeed0108eda773f4121deb4d7d87ccff", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3628a7d34b05f85a718ec6e7c67e0f7c35890e7c599d3f1fc9cfd716d52dc64b", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a99d7a45dad4c7a1ea09ae99c3d5fe6fd31e2b56b0b9ec663945691bbd2b9578", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47332f0086ef1b91f43f8ba6e9eecd167acdf51261cc1694806d3901fc5e15c0", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8ab93f7ae820a1ae8ccce5479973d84b602cf6b9764855bc07dc1f890ffa1cb", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d544e64e6dbd0f3085a0d57c104a0ecc43abffcbede52a91069db9c1a79cf9bd", + "regex": "(?i)^https?\\:\\/\\/criarjogonorobloxemdupla\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "842f7aa8fda61fdb3f04609a3cc96417708f086be7db74f10ef5a9ce779515d3", + "regex": "(?i)^https?\\:\\/\\/thunderstruckrobloxidcode\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b33b783c1cdf12d3e4990d829ac397100c3a4bb9dea12266605e75f5d46340b8", + "regex": "(?i)^https?\\:\\/\\/thunderstruckrobloxidcode\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb6bf5c1de5fc5c0e746786222eef86499010c06bfab6a78465a548f98f2046a", + "regex": "(?i)^https?\\:\\/\\/thunderstruckrobloxidcode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "463b6f72caac1ecc88ade4b3686569cd93badf37021915bae6e6ee669eadc345", + "regex": "(?i)^https?\\:\\/\\/thunderstruckrobloxidcode\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81d41ed37c8f70c208c14f05ab4fab9e40be9b3a3b529dd05a25521146636ae6", + "regex": "(?i)^https?\\:\\/\\/thunderstruckrobloxidcode\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99157dc084c58fc3bbf0fadd5227388b6acca84c82a6257c81a0f3bccac8ceed", + "regex": "(?i)^https?\\:\\/\\/thunderstruckrobloxidcode\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd191616415870931e0b65186b4f77ce41a172ddbb1e69e968b2af221c87e7f4", + "regex": "(?i)^https?\\:\\/\\/thunderstruckrobloxidcode\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "119babe622e9f05c91cb33c92b60ec90332ad38135edc2fcfb80fc07a3681702", + "regex": "(?i)^https?\\:\\/\\/thunderstruckrobloxidcode\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0feed8c22c9fae300d14cccd7ab8d1951e49713cbf5a1693376d0aeab751d731", + "regex": "(?i)^https?\\:\\/\\/robloxinplainsight\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "191a450cfb244d2fd7d5a62edeaf9cc537266448b2346e6b2035bbf70b72c856", + "regex": "(?i)^https?\\:\\/\\/robloxinplainsight\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f569536cb8e6d07ebf3abe5e45be33e6c1400fd0407e068906c6b90a72ebd2d", + "regex": "(?i)^https?\\:\\/\\/robloxinplainsight\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "842fcf7d8782ad96d2fe4d40823601825d368ca6899ef312cb809139b3914cd7", + "regex": "(?i)^https?\\:\\/\\/robloxinplainsight\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03f6077187d037d0620fb508386b1019eef3135eba3ed45ec7302b3f5fa8666a", + "regex": "(?i)^https?\\:\\/\\/robloxinplainsight\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44c8d448bbbdb53a7d7ce240f42db97c7663318fb3cad52b7f782aa0a20d024a", + "regex": "(?i)^https?\\:\\/\\/robloxinplainsight\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84eeab52624b2c6682e37b988481b2b5abbb6ee4894c7693ca6412092f88e892", + "regex": "(?i)^https?\\:\\/\\/robloxinplainsight\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de4c010e9538acd57d102c31119fb8b068a9bd42894d312236a654c1b1886fc4", + "regex": "(?i)^https?\\:\\/\\/robloxinplainsight\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c53b8613715c16171077b135f80b55a531a875ba8c684d6b96d681ff098d15ba", + "regex": "(?i)^https?\\:\\/\\/robloxinplainsight\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96c164be89282e778b16822a33031fb46d88ac9ff379b4cfd09ed8a1dd99cfd5", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fefb38d7ab357c926b7f4e92d6651b41d7072438158d9d77de23d1e74ccb64f9", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61b6fe36aed64c7b0f7e9d6a754a8edaa5d0696d098ed8e4a0a29f8b5e73fa10", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ab030953284949dee82cb4736e99cff08ea1822a16a6ce01ed10fee3ad2fdd1", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9029200e178dad5b511272de8e21a40a7e8078dd420ba7202af615f3e2177140", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56561e6d72bd2aee39e3150cebcfe9de4b301798aa4b038df831b2a22f887135", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d45f6e781c90eeca9c0b398851bbfbe758da51a3ebcaf0c0883e00cd5b83c50", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "325c083b5cca3bb4ac312322ea75adaca35543e002f7e01c8ff103171ead2f3d", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1001d0cd203c73325197fc32522a88a3e982c8dc146db517c281e1fe9e29d998", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7789c3b53e807992ac23faa78232945856b6500387113fe2400e323214d80fd8", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28151af1f786d59a30e911096c5789dbe6b1c4b6809e1d338abd9809069cb173", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0c998ed69fe7f065cf7107c7ee9e7e8daaa72e3e0ad64db90ec9b501c5f8658", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fcdef3b4eec504abb78731c1e1d33253be6806334e8b1358cbf27c5391fc7aa", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5292625eb04ac4f47240e23415b2dd96a738fbf835027ffb84c8ebd45b794b16", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b23fd2eeb1ce39b6bdd8d554e77b27f296a3e57d209bd28901c88fe641c44021", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb015a00d49b1f7518ffecbec551f32a41a2175e4b0d58220e931bf1fcdd1b4c", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a31d2e46e8e9df230a1d533d9460fa73b07af35460afb2a1679eee34e7e76a3", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86f2f42090912f5fde22782731b66e0c2411fda60086cf3764cd9673336fc6f2", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e1e0fbfdbb902d7f466ecc73f88ad12327a3ab9f91045e136c64a08c73a3ea0", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fae52f64b1f1a278e6206d6653e683524c55950a901b2b1ff88dc0b1d9d74f", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f2ddaf4a8b08eadc239f7b0e985525c461e70ef319289e5f4d753c7d041875a", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2201951ffb7ed0f4aea1a9b6b86fecff526025ead8971b3d5544c228c82efbe", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "956213d434e8565e9ed13fe00974460e982500ae56a68416f936ec7e8c2f90d2", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f27cc9717654ad0fcf5af4a5b792210b92f2d02312aa4da5b294ad40e4dd7e5", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4789c604a0af71877cfd8a5e3dd60caa0285ef618810bb064597b690f68b891", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a232392756ae5a45f044cc692c14e7348f9fb00004fa51b3181aa3377afde67", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9999c316613e6a8442c74516e2792acfa901735338e64538297f79ff9c9532ac", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b18e330259e282bc4cd9a3c74c071f6ebc1ca3820052a06bccd6d2a6aac2d98", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0033bf7a4eba0d11301c58d15ef053fd2fafa8eea8c4ff4fc21cef025b36f587", + "regex": "(?i)^https?\\:\\/\\/7ringscleanrobloxid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9f648b412cb1dc7fc42ceb420adac33ca8853c3ee3e14028c9354037b2a8250", + "regex": "(?i)^https?\\:\\/\\/7ringscleanrobloxid\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "164fc48d355a4c5bc1e5356b7c370849a3846a91ee17a87e101ca7f9aebdbc7a", + "regex": "(?i)^https?\\:\\/\\/7ringscleanrobloxid\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab94a72d565339593cfa9461db62db6d5444fb3577c301c0a4fa58511426bf6", + "regex": "(?i)^https?\\:\\/\\/7ringscleanrobloxid\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d15cea8b4d1bbe5350985bb2b8e1251877b68fef3e45d604ec5845a44965dae", + "regex": "(?i)^https?\\:\\/\\/7ringscleanrobloxid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "897d7e91ef8c890aa634165e2c9dfd753c1b9740b1f4f8875163ba5f33b7506c", + "regex": "(?i)^https?\\:\\/\\/7ringscleanrobloxid\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe3eb8c71f5cb47b525e585af588bdc0dbca37cf51db396603c665242a259614", + "regex": "(?i)^https?\\:\\/\\/7ringscleanrobloxid\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0d721fe377cdea9ef4c37b83414a4a6ecec7c9761d89977b4b2845c55411af9", + "regex": "(?i)^https?\\:\\/\\/7ringscleanrobloxid\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00868100270c5a826ee5854bac030aebf3938af4f533d89e93008f877a8edb66", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\-instagram" + }, + { + "hash": "acacb379e311c01d3cb74fdd203e284e8f336db702973083fd27fe7da02fa434", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81b45e8bdc3da17122de013225ac984bf2b67c82caaabe2aed1d413083cff551", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cec064bb6767825362cee76ab5166ac5f8078cb9e58957dd7ef78270438e56f", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36c30b80742b21dca1f510ecfbf86b68a6032a4fafed868a1e2f1798750ebd63", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf10d8749dd64c8db392acc16a9d6e1ada4849a99df8b54cb514cb0ef0a84a1f", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "886dbb0f80d3db26f6aeaa3e6801d184f70463a647c7e2d700dcbae7cefdface", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a90e3dca775da31c4968b79fa43e0a862a468538b8800ba2a31312c73608f5d3", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99e39e8c34abd3197574d2896b76ce35de61d9e6c7daf2a6f9dcfb2e4146fbb7", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e6acb9463c2d4c60dfa663cae3d46db40bce70d3958cc865ba3a4486ab9336d", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2285e7b92443e55dd023ea54ffd55288e5836ded618b48cb35ac401748c9f9d5", + "regex": "(?i)^https?\\:\\/\\/codesforfleethefacilityroblox2019\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "710261a2e8e3bfb4ff7b4c6ab5f911a5e3a19542b6aa95597f4dc8968de73b0f", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37f2872fa6b279db5ff10a77093ce72c1e3198345a22840954a9302c7c330fc9", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc25a8191752e0e6d8a795fc214845c0f48def970dfe42a7b4ef6817b4d88751", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9646decff0b145ef7fbd596fe007d9e79997dc6f43455f27d9d3fc739dfaf2", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05c58068e20411978582d6c17743bb739dfba045b96d8ae334f39b7359fae29c", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e5ddb3edfcd581e6aef2076502348f089410f6bfe274778b3a071b1782c818c", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4ce98888873cbb1c7372202de5e8bb26c1ce85c24693405258d71582b9ad082", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "437e5e5e54a31df0f7da2e28aa23b87807b912fa112c5cfe203d8f37c974bce1", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ddf64cb72d35e38297093f64a9c47eb2ee153f6c2994ce5c74bf534ce764d75", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cb8f130ae10243fdd6b46c6de2c7de5a9db4ea6b3099c1a06e131bf12e2b2ce", + "regex": "(?i)^https?\\:\\/\\/robloxhacktool2021nosurveynodownload\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da61adb28023240cbcb314b8981d9853e10b02eeacb32579e6ba0ee5a2abaa1b", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8584cf2eb3dade06bc801816e5db5d829dd6b1f6ae1155283fca604332711df2", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee9af714fb2ccf78567a0bdc21b2b8ea34d79693b688aaf348853bc8e39a63d", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b818210cf3510698d7e245ef5bfbc9493a9eeeb6628e8bcca85ad32e875da7f2", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62e1924ca8e4946b202b1d90f7b123b9ba39e92f325ea400263453566224ae4d", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22b9c6bf856167e2ec1dc03536871abf4326b7f9f9f3a5ca28f9e101cef63935", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b4c1e591075f324d6d2109d951d02551a4e72d87b84fe452fa3e249c7e8e0c6", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a023e9610236780e666b79dd3c6cec9753b8f7d6e0e58a0921ca9f52f37ec048", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63132121dc81acef7e29b9c45d7fb2eac9c1340b3479c060519039c67dabdced", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95d1ba866ec0c7bfdfe1e7f7247483411ad4067e7d82f0c5e9d3b7faeeb60362", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1450d85db75dc675442f43562732b361d3ade18831dca06fc86e5da902a1134d", + "regex": "(?i)^https?\\:\\/\\/robloxjedirobes\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a94be0e116686a054e5dffcf9f366615032f538ecb114dc8898c54707647ecf", + "regex": "." + }, + { + "hash": "d41411296f4db484a583bb9c910cb01263462b3d4e1422c0399b0235d4dc0568", + "regex": "." + }, + { + "hash": "c835d81c601fb21b57622a78d6d7ea240cf54275a3e056f65cb96656315b32c1", + "regex": "." + }, + { + "hash": "eed47e3911ce444b4a98e827970a96708c000ddbfc38580b22762198bf60e0eb", + "regex": "." + }, + { + "hash": "0672dca473c7cb4b934bd2e7419e1116b49d489c7df2f1e1122dd1df6f557563", + "regex": "." + }, + { + "hash": "112b2c10b68f44992ad3be3aa4e4d09c63a88645f8ca95c8d36a63c8110f93f1", + "regex": "(?i)^https?\\:\\/\\/richgirlrobloxid\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "034f12d226f0210bd0b95040fadbe68b5dbd8de4f5e8f1e0e6ebeab11382d95b", + "regex": "(?i)^https?\\:\\/\\/richgirlrobloxid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "957a85a304750cf1ff8dcee2c8206015b08e812d66513e95bb77e7988aa357b9", + "regex": "(?i)^https?\\:\\/\\/richgirlrobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93498081b5e417bbd36e15acbbe37469ddb2d9744a1fc5dd698eba4993ed4383", + "regex": "(?i)^https?\\:\\/\\/richgirlrobloxid\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5a4627434d61b823db4487374a948864e873b2e9319e9652db6a3e9ca87c088", + "regex": "(?i)^https?\\:\\/\\/richgirlrobloxid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2025e4aefc47442bbefb2c9606d647c45b8c8b1a60e2b38472002464d084f8d3", + "regex": "(?i)^https?\\:\\/\\/richgirlrobloxid\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8a9739cc364d83c0a85d257c0103c91f7c4188f1063025db167668c11b62e69", + "regex": "(?i)^https?\\:\\/\\/richgirlrobloxid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0aca84a63d964d97d63305ed5379e6fce89669d4227f8e17099aafa66d87e54", + "regex": "(?i)^https?\\:\\/\\/richgirlrobloxid\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "862774f377ea42a7c30a1d3e0ce6075182f7c3b74a11df5baaff11258bbb3d24", + "regex": "(?i)^https?\\:\\/\\/isrobloxshuttingdoen1\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a30e562bc85a5270abdd25fa8f03dc77dbd66ada56028f93e93f9174419d26b", + "regex": "(?i)^https?\\:\\/\\/isrobloxshuttingdoen1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "276357abcb9c5c476c1c78ce624a2ee3e6b3a0e063d5651a02ecd82b1b31042f", + "regex": "(?i)^https?\\:\\/\\/isrobloxshuttingdoen1\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c54210041b93b1b9553f36d75d368e449b20b04516bb497222e51b7a1bc265", + "regex": "(?i)^https?\\:\\/\\/isrobloxshuttingdoen1\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbd218ec58c501907a03126d39f1f53bd78d96e2a573b530f9138a8e9c2ec9a2", + "regex": "(?i)^https?\\:\\/\\/isrobloxshuttingdoen1\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c065050305c0e51967e01ea0af35e7b88bb6b50d0628fcd7e1ee51701f34a2c", + "regex": "(?i)^https?\\:\\/\\/isrobloxshuttingdoen1\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cba348d6798a7b0f06bbed5d810cf9e6476ae1937f71af38aed7a614728c3f32", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67f231e1189e09fea1f94560c0c21a7a41775245b04d20418a22ae98b286d0bb", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e811e57738bd832c6cac7fef840e2faa6619a39d6d7e4d03cdb2373fea86ef9", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "529d04e0f93ad1acfd39e8ee9cdf72b7a81d9cd98adefa6b4d3882b214933669", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abaf6a2b14ab283870577a11494a1821f7390fd2a49b4d99e46ccf3d1f2f8780", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1504231e8b203c1953ad9057a2752799fd9e42f221c30efb1da7931367a493ac", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5ed981c6cf495f946c329702b565efe2c654da6b31db87bd7969c0053d9b5ea", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b10bf89d0ffef330af6571cff47f7f6ad37deec4544c46ab49225b56dc1df1d0", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e0453fab144e007980b5028792cce33886d1f6d7ba87309b913d59c0ef6c1aa", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c091f4ece47c0e4d855476fa6e5d5568735dd8e73ba8e1f8849da5a08f78a51d", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "407369ac72a21403a5fb438428c5170602abd72e0c5ab5591bf8ffbdd57db74a", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa220b249b7541d7321b73b06fd35d23c2ddafe40248a8f05f46ed3a2c09c5f4", + "regex": "(?i)^https?\\:\\/\\/inhalethememesrobloxid\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "246578830682b07cd87001a303aa759a475645f791da6c0382c1b1f98615c0c8", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxtreasurehunt\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8e46333de9cd59bb7a4544a374ef69481c12108a02f8745ef0367e05e213cea", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxtreasurehunt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "486010abb20046d26aa0ff21b82caf8b6ff80e43dbcdcc926fbd0a5ec18cd594", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxtreasurehunt\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "922303b209b6d005f4644d3bb0c465de1d1e2690ea335f6b76614d076ab81f35", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxtreasurehunt\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8a6f6eab032db1fbd8f587c7eac8f420e6005e2116d67bdd1eaca9de16fe7c7", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxtreasurehunt\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "235bfb486a4dbdddfcb8cf023b14f402163ddd9bb5310807fdb2dce59cdacc5a", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxtreasurehunt\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09dcf74d45ffd29b6ed864784b0c0bc50f3bebf0f6badf05ddb9b81862790129", + "regex": "(?i)^https?\\:\\/\\/codesforrobloxtreasurehunt\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54c601bdfdb158d857331e7a3e568ceb85abe4e3920955e9c92e44b477d1a36", + "regex": "(?i)^https?\\:\\/\\/descargarropapararobloxgratis\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2f29961f0ec33a996bb338b9cc157acf085ef9eb394675f115e144e12e5b28", + "regex": "(?i)^https?\\:\\/\\/descargarropapararobloxgratis\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "246db8698755e820ad3e7b34e3a7d692d4f8d16d5726ded8c09aa3f4d5de52ec", + "regex": "(?i)^https?\\:\\/\\/descargarropapararobloxgratis\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d07fa1e371978cfc46e0d73ba6162b02d7988df38a79b47f315ce498feaecdf0", + "regex": "(?i)^https?\\:\\/\\/descargarropapararobloxgratis\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bbdf3a7d5a03f32f004b459ae6f484f2e15fc64f12b50524d7fc8e2595ebf66", + "regex": "(?i)^https?\\:\\/\\/descargarropapararobloxgratis\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "632d3341f8e6a5cde86e5f1d38243f83b8e87ac022186170371b316a05afc09b", + "regex": "(?i)^https?\\:\\/\\/descargarropapararobloxgratis\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eca3bb691a745d2884bcd8134204d2f3ce262bf18ddd3679676c19d7ab3313cf", + "regex": "(?i)^https?\\:\\/\\/descargarropapararobloxgratis\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e96eb5406938f3adea0db8d56856c41a49fd9165cac3c53a45b1ea57e94c8454", + "regex": "(?i)^https?\\:\\/\\/descargarropapararobloxgratis\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68fc0a454df4daffde1f9af72241bcb7e9b69c742f31407c81f6381f2968dc99", + "regex": "(?i)^https?\\:\\/\\/descargarropapararobloxgratis\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fdd13a867a7575b50b9287fdb6c26d3220d42d70311e4b8b59d490e20e9e42a", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsscript\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "501352669b0a945325a45211dc68226d118dff53e8eb1efc4abc6559e20d2336", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsscript\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "968647c2f90595a62583713507258886f09f3e1e926103cb3f3ac2c8e204d5cc", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsscript\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de8c8f7f9e126acc085f45fed88f3d237216d0a213fa455199048b77f307fd5d", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsscript\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f2ee2668912639ed11cd60a99c9e9a6d7d867932a77af1bd33315750eb0d7b0", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsscript\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656784fec8a2f7f62c689498f74118e7cc88aa8740bbe44d5131d55e0bca58e3", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsscript\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9d2532c174025693ed0ec4d027cda3dccb8a2d846e77c77ff6bb86b5e65db32", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsscript\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10b9f626d94c9df8cbf738e5f840a1ad0af956fca9d1eef6c0671fb5cd5ff543", + "regex": "(?i)^https?\\:\\/\\/robloxskywarsscript\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f51bd8e1d7e79870c7075f68090d83304ee48bddf11244ca997f0f9f37b4b90", + "regex": "(?i)^https?\\:\\/\\/robloxfaceblush\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4388352c8a5159151de6536eb98d18302398a6674fed293c10c496106ccbece4", + "regex": "(?i)^https?\\:\\/\\/robloxfaceblush\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "314c5eec262617653dedaf102fb0b927721d790b0f845d13d378a77f3b1ac26f", + "regex": "(?i)^https?\\:\\/\\/robloxfaceblush\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20f721ebc8acaead0651b8a32c28f838f4362cb22738b4c34f23fd01dc7832db", + "regex": "(?i)^https?\\:\\/\\/robloxfaceblush\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f29448c5b6d8ddeb1f30eda6790ca77ac9b40d18ef4131075b1ce747576b2ce7", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "faa43023a856e4f5ac7303185ce25111bc0d6c0c33749a1a2a29efbdbcfe34a6", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0659623142ca70e2ac077072d87fadc7c5977a481df7348f1224f781bd81c416", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78fdbfb3473bc10e3a1da73c2a741fcea4e818092b0973028f96ce60e3c0fc30", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13bf4fc8236d822222e22ec659a99ca1b059e0bf045816c6bcf545b42be4efdb", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2035077120f69a5e06304e9d25708b76c2a65a874ef4141ccc745752ea09a0c6", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b130c9e49d9ab921dd90d1d14dfc8ba267ad300a7132bf20fc62685005e0851", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42564c2f08d89d08a51d15cd1415c8e2e3374a662ca689b89d77281594d171a5", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76adf0b63832682647415ade7555f02ce9519c218f17f1ec9f94da6a71e93677", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9c4a0ce0c10af0eb0429aab58276bcdd372b198dc2d33dc1f8fef015c91e169", + "regex": "(?i)^https?\\:\\/\\/criminalrobloxid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "068e38d4a1a779dfb0812ceb0d9d47043f392ca2351cfda4f24c895a49275106", + "regex": "(?i)^https?\\:\\/\\/criminalrobloxid\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab2d408a2beb475e2c85d9453c2a68ee89b479f8b101e7580736e78441403df3", + "regex": "(?i)^https?\\:\\/\\/criminalrobloxid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d830b6ce961a1da518ab0fef3a9bc2033dfb1743f87d9f7cd1a6b4fc30118301", + "regex": "(?i)^https?\\:\\/\\/criminalrobloxid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01e06e3769643e50eb6b9a86ac49a2add83560fed6a6970ea7447be3f16b2811", + "regex": "(?i)^https?\\:\\/\\/criminalrobloxid\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92cef983aafec47f0b8ebf25004b3747421a5198b8d0033052e71edadf6d2ced", + "regex": "(?i)^https?\\:\\/\\/criminalrobloxid\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6cb89ba8668d4e3bae33e09dcfab7f03e83d7fd1f35cf0f8a70f035c9074e3d", + "regex": "(?i)^https?\\:\\/\\/comopormusicanojogovirtualpianovisual\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94e5b0a100e4cd7004813b21eef33ee1961fedb434aac6179c722f6e5863744c", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsupported\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8fa1aab0457f8dd15ba0240c2abc826140b2bfcb27644e7c4f85d1d8a45157d", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsupported\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f81c16a0ee42bb5607b0f3e2a060b184cbd5e2e3f8c71a605976887cf9efeeb0", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsupported\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03ea015ce0ad8681baf8ca6ef4d062b29b9f42ae2b53930c9df12fa70a4c9228", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsupported\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7abe618b7e59d8b79910588f54c89246734b694926659ae80e2aac90a7f628bd", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsupported\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "496efbcef68e051eea556699914a38aecffdc5518faeb5d2af9bae963d16dcdd", + "regex": "(?i)^https?\\:\\/\\/robloxdecalsupported\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c6391881b6ce6a6306d46aeef19262dc2e864dd4016df86f975c8a2fba04e70", + "regex": "(?i)^https?\\:\\/\\/comopormusicanojogovirtualpianovisual\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02a8c329acc9530712ba33d1d588e00b9c4b1cf8d09820106ca97bfb98a93ae2", + "regex": "(?i)^https?\\:\\/\\/comopormusicanojogovirtualpianovisual\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "278c547911540c2d62453512cdec4ba4676fbd9c5e28aab86ead2b15fea6e256", + "regex": "(?i)^https?\\:\\/\\/comopormusicanojogovirtualpianovisual\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d461f9fab6b0f1281817679920a69a72f3776d7ff46f6610cf96dd11871eda", + "regex": "(?i)^https?\\:\\/\\/comopormusicanojogovirtualpianovisual\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "900ea6b53929608575679f7c88f796cded18e6fee84b2bd8793b4162471d9763", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9bce4d9214be35bfd09940f0c0fca681f2ef2554d549ae39367e852785ec46b", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aa2021320cc0063e88bfb40de33198408d7657acb5333e51eb9ab8cedcf5400", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a180eca340e59c9ed595f67f5c219b2a0d14703bcea575e5b367fc4835bd93a", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea28b35a9e248a094d60242ca4e5cb10f0866b9d3e620fb561926c6ad3dbe8ae", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eda64fa3d6573b1aeed319752e189e89204541008f28bfcd79c3d1ce8bc676f6", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa2329b1a497675aedbd5cce20b5ecc9c8740139345c1f4ee6dc5f8ff8f67a95", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f86c2987ce73e963b29e77c88fe903d2449c4d426fe0ba3acfb5ddf38ebd30a0", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4647f5fbded17b8f22555ade883538934723d7e3021e5538d478522d282f1f6", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7be6391ddef8ac22164003c71dbb030417d0b18113b85e2fa968b7ef29b03b49", + "regex": "(?i)^https?\\:\\/\\/prisonrobloxdecale\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99fdeb4cc761c4f2fbead5464a56aa8c0182d230086c56d2025e1baab4db9b5a", + "regex": "(?i)^https?\\:\\/\\/robloxshadowthehedgehogdecalids\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33112526b9fb6a9b67836bb8250c1459104a1e7262c2ff6e27055765c1ccd721", + "regex": "(?i)^https?\\:\\/\\/robloxshadowthehedgehogdecalids\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfe0375bbdb170e2816a861c80080fd156c2beea61b1445d55d987fc972cf4b9", + "regex": "(?i)^https?\\:\\/\\/robloxshadowthehedgehogdecalids\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a894d86b85e41febf10ff822a11289e57e4672aef717c7c92a478a957a4ff036", + "regex": "(?i)^https?\\:\\/\\/robloxshadowthehedgehogdecalids\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26cae1cef9cbec9d78c028b7352c18a7445e1fc07aa412c0d30cfb318501cd28", + "regex": "(?i)^https?\\:\\/\\/robloxshadowthehedgehogdecalids\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb7cbd30e9e47d60669c6650d420ba3956db5ab2cc211613401ee0b5885e46c9", + "regex": "(?i)^https?\\:\\/\\/robloxshadowthehedgehogdecalids\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57000bb3119849f0b4506b4b6e7fafcc80de371d139b03238c26e0021b7c19f7", + "regex": "(?i)^https?\\:\\/\\/robloxshadowthehedgehogdecalids\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "642e0966bfddd94f422c0825236f4a866af40d6dc0b3b5899913d723af5aa5da", + "regex": "(?i)^https?\\:\\/\\/robloxcheatenginecodeforrobux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10b16bfd9d6de5978a069318d7dff9dda605d5f654e415fc335d89575ede33cc", + "regex": "(?i)^https?\\:\\/\\/robloxcheatenginecodeforrobux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "448bccb551efa4ca7f2b09b4ea5af704d2e28bcc458512cfa80fabc702f817f6", + "regex": "(?i)^https?\\:\\/\\/robloxcheatenginecodeforrobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb7c823b3beced0835cb36e81665d7a7f9245067266f80507585731593934cb5", + "regex": "(?i)^https?\\:\\/\\/robloxcheatenginecodeforrobux\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fda9d832818b9406749821b55bc2acbbcf0c6654a65fee53a4d86e1c1b1f2c75", + "regex": "(?i)^https?\\:\\/\\/robloxcheatenginecodeforrobux\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe6bbac6a892ced5c3259ccea8b8cd0ca84e4a230ec6f6dd60f73bd4df58a0fc", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeescapedasorveteriadomau\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8dd4cb65bfae09bea0b3871d7d04228453bf2d1f06fc78c3390fed92bc4e767", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeescapedasorveteriadomau\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c04681bd9f3d7eae44c769f82008ac2b23a14d0ce8fb15652f43cda3ceadd36e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeescapedasorveteriadomau\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7409dff1a7a4e1082f585ec8d1face20457812a0f984018f09816125b855e4e6", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeescapedasorveteriadomau\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e0c2422ca0a292dcaec24c71c0259a5d75a7d6920716a4233eff115306cf991", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeescapedasorveteriadomau\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a032d02e540a7dadb0d5ca1e29dbe08ec217fc676a511744813d8307a0ab6391", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeescapedasorveteriadomau\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9e62966efcd6211198d7bdb30385801f5426c73e9412c67e65f87186d1dddc4", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeescapedasorveteriadomau\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "300488ba44ad6b53fef6b049654b625c84db0849fca4668c51f9ca366ab1faa4", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeescapedasorveteriadomau\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d2faa3b63b45c85f21ba6ba72192de2322e98fb9aa1190ad26e5a387d157a20", + "regex": "(?i)^https?\\:\\/\\/codetricherobloxdragonballrage\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "003d953246b8756e3b8c19157022f057c479f0c1e6767451b45255a66790abce", + "regex": "(?i)^https?\\:\\/\\/codetricherobloxdragonballrage\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76edb6f0bfa315129cf29517a188ce0e41e4ddaeb1249321cfc428f924bedbc7", + "regex": "(?i)^https?\\:\\/\\/codetricherobloxdragonballrage\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c80e8818f258742b8862805c6bbcd423da85bda55097a2da7c3233ac2022859c", + "regex": "(?i)^https?\\:\\/\\/codetricherobloxdragonballrage\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3791793f6d0b30fc1ff673fced426d853128dd0ff4d0bf102de4f6ae61d99c02", + "regex": "(?i)^https?\\:\\/\\/codetricherobloxdragonballrage\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e7ebc3c758d634b392bac11e739e69d3871615657a630cc8a749c230e37149f", + "regex": "(?i)^https?\\:\\/\\/codetricherobloxdragonballrage\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90c575940850a1fea7c9a24f04b8f52d519ed1e874154fb7dedf952834581745", + "regex": "(?i)^https?\\:\\/\\/codetricherobloxdragonballrage\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "831d708a90dea14a097db340246badd3bd10ef2266855bff53a94e0ebfbe456e", + "regex": "(?i)^https?\\:\\/\\/codetricherobloxdragonballrage\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe604d46552474872c99ce7dce70d600aa2afe1c438c6ea70ce0fee03b6a7009", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e808049d34a3fd1fb1cae258785c2a04effa4a8f6725ef3637c3fd0fcbbe8571", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90124855761732cfe09d02282bc8d7a531c50714030ae4186bdbf0551685f15d", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "565673bfc6a2a2a04e8aaa542efbe066df3cc2da36c92008e89a222fdc605e9b", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec14b97acd4ad507f0582c05ecdd7f5cc3b3386dc5cbf226565cc338f149b6a6", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e754c6d0155e0c3895a50a5fef1a2bcceb5ac5c29215a5fef737ffdedb74dc62", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1305fd2e3c539edd50c9b33b29cce6858a462fea76bf52b623001246c5e6f900", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1165e042c31120aa90a3a6c3a271bc12cddcbd05308d11d41dd315aeb8a0c322", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "110452ee839dcb31480586e4918966b8d2a8016c9ef11fe6fe5341d1c15666b9", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "817fc58034296d7bd194a3f1640e92e7ebde7c94ebfd1a5f6ce6099e2e7697d2", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad7893563b2ff2dc29315d12ffb26cd6d79b991f632efc9c4df4352571db183b", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2hacks2021\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40ec218f81af099b9530f6d75cb299bc1315214a21d65c7e0fa1bb3d066b4e1f", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc23dd329300b6072eb5c62e8b24aa77f1b1dadcef94ff667906313a6a93ff88", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "858c882a0a3d3218e28b775856997b527526fc4ce0b6c63ad6d45f7cb671791a", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "894a1e3e33212b38562b0fa7eaaccfd4974045cbe5a262ab8ed9ee760888a701", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcacb71861b14f2c15c8d674a881564b02a2e46be11b3d2c28518aaf6546df28", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f81c04297dfb7a2b02334f861dc5ee05b2d229a274b7a1d4de9d753492a7c8c6", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c78239a8b9b31d784ca26e20c07ddafe77ae29cbbee2f1061c8dea6d3fe3042e", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24957c0cf11ac0c76627231457d775abd2e2183e9273a3648fbee1c64c4407e6", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59658e944fae6930b9073dd911ba39ba2006493ab9027005e4ceabec11348637", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aefec97241a4deec481617a3978e07642da26baef85a50499287492f403d5032", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3060b4deb39d9a9153b91112417b087edaadb636cadd66e8b6414afd87137d1", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a65da72dc5d284e8ebd898896228d3ec26840ec5e4ca8d0d9c4bdfdb06fda629", + "regex": "(?i)^https?\\:\\/\\/hackernorobloxjailbrake2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d003072ba7fd41530cf6a71c5752d8d5f4cb53345e8aef3606ea6a70a1e75c81", + "regex": "(?i)^https?\\:\\/\\/comosejogaominigamedoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a36ca6d11328e109d69d16c864f0d775caa68d8ee552e107ecd82c132c9a1f7", + "regex": "(?i)^https?\\:\\/\\/comosejogaominigamedoroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e236abf8a8d2483c35330bd13665a58adead40fde8d4a24e5e7d8bc8f914f133", + "regex": "(?i)^https?\\:\\/\\/comosejogaominigamedoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2c360b1c94206f0223ccb5a38e2098fe90b9170ef92d3cf130c72a692b9245a", + "regex": "(?i)^https?\\:\\/\\/comosejogaominigamedoroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c16624f7e41821b17d88c9b88d31c2afa72717aba03c459acda21c142f1057c6", + "regex": "(?i)^https?\\:\\/\\/comosejogaominigamedoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a34105cc079e202b5a4b7b1fd3b95800ea4ca1d86437f307ffcd77635a1560a", + "regex": "(?i)^https?\\:\\/\\/comosejogaominigamedoroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4e85d43f766755138b19b9f9ec3347a6ea5185c43d243340ba2795dc8ef4796", + "regex": "(?i)^https?\\:\\/\\/codepourrobloxvhiculetyco\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f55babf88643a1108192d38b9c93f9ba24451f06524996df09ab2c728e2c104c", + "regex": "(?i)^https?\\:\\/\\/codepourrobloxvhiculetyco\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c39dfc9e1738b33eb3bd35007b3622d2dfa6a92e6eac11c878977e1385d15603", + "regex": "(?i)^https?\\:\\/\\/codepourrobloxvhiculetyco\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ec5e9525ecf1ae314c2c7b48fe46f7d925345dd70e70038232cf8424df4908", + "regex": "(?i)^https?\\:\\/\\/codepourrobloxvhiculetyco\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "061b1fa35f112093f68acfcb63dabf231cf1c394955daf8eb91d8fab8d79d14b", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdohomemaranha7\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be991754fddc335c85715737c44bf63ae25142d3fed661f028176beb53c17b5c", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdohomemaranha7\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b3a219f7a13a82a81237c7e97a6d85808fb184f7e0ae565479833e374d2b3bf", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdohomemaranha7\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14ab11f71d25958ec80884ddcde9b9a1205993335b829263d4b32d2569b8f437", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdohomemaranha7\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffa26bbdc4561857b58c33b4b83e3a8f6841a62d6c84ae705982fb508f74ed3b", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxsdohomemaranha7\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1419924046171ec46183c97a50777e6eb568d22723c35b94d3652524104668b4", + "regex": "(?i)^https?\\:\\/\\/metomosk\\-logi\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1c717f7f52547c2764dc6f244df9257175a2fb90469d37af7a913cf301ce35ce", + "regex": "(?i)^https?\\:\\/\\/earthl6328763uette\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f456e6a92cfe46d58bffd05c433769edc2816432e8559d9a33727419af1a80dd", + "regex": "." + }, + { + "hash": "b9fe0596cb95c9c261be90a64aee0ba79881854bd36f397a0d51e634f5a10f55", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix" + }, + { + "hash": "5cffd7f0934b9bbe80191cc9bed29eb984ac3b092293f1cd13c94ed49aa77265", + "regex": "(?i)^https?\\:\\/\\/freeerobloxrobuxgenerator\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77208eace172f89065eaef7f6aed4ae8ed85d39ac2de15b41827a41655de86f2", + "regex": "(?i)^https?\\:\\/\\/freeerobloxrobuxgenerator\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d9096291985ca208c0f953321bd57cb8a12ac7e3d6a09072a78bfcc121a230", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebe10f443ddb7ec481aa62c142365dcf84138be8d2590987e90faec49cdccb20", + "regex": "(?i)^https?\\:\\/\\/freeerobloxrobuxgenerator\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a68c7e20273557afc0eda8fa17ef70436d62bb32ca171f137cf368583c46126", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxfreenovember2021\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39a0c81999368be71e8c0bf9a0582de633960b18d8b3cf0f8900d7d1338cd4fd", + "regex": "(?i)^https?\\:\\/\\/freeerobloxrobuxgenerator\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bd13f696fdc6b837c8c1dfb4915aa47b52f81723d7a26ee003ffcf2a02f0ddf", + "regex": "(?i)^https?\\:\\/\\/freeerobloxrobuxgenerator\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff80d1025cb0a29b260d590417f9b97f3fedf2d9044408a237835fede66c7afa", + "regex": "(?i)^https?\\:\\/\\/freeerobloxrobuxgenerator\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6555fa08a8e16cb4b377209d848aa5e281f49cf3a34192179e47f92a649b9c6c", + "regex": "(?i)^https?\\:\\/\\/freeerobloxrobuxgenerator\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5670e0037cfe1b9205306c989eb3d182c12c40b355def6d7524d624fa5ad03ac", + "regex": "(?i)^https?\\:\\/\\/freeerobloxrobuxgenerator\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8603d4362a379e816dbe5ebbc8a483138f3fdc3dede7a8494236b1e9c5add827", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fd5eeca06ae4af862f8796613e6e830fd7d30371c587f783429686b5f73280f", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2c1da3413472a5c4962cbe42e66d47a9ba5093ae3f22f98fa408705edc5c31b", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14abc5ce151c569a1665fc6db235753160d054864ab7e6b59486c0aec1a57ff9", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f93039670b3ad1e0dc71a9d0d65eb437ae7125165cc1db31b4d279d6c28b111a", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd30db60920591415722b3af197e145309ec666b8844e0366486040d16eaf703", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb37c261712fd085d9806bbdc1252160d935babf7ae28f369291eaf0ad96fbf8", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b699b9d3a926d17791316b67cb1ae0035c6bb4c52dac6d0eb9083e22e740f5c", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7259a6ae1c73b3bad5db4cc0d6288953663f217897d5da2ed712598f813f58b5", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71a833c8b0bbfe1d171deb232c64ac7d189576808881ed37add99fd8de971c43", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd6213fb8e20e3ab6ed1c97c1a9782a5f7aaf33a445d6d10eb974b8f4adb163e", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0265a780a4c35ccaf8bacb412afa7cc2cc737e82f7143fa0f8a750d7f9df00b2", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxescondeescondenopc\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6c211e35c39c6b6fe1fe11f6d30bb41bf76bf81f20107cae354995644884243", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxescondeescondenopc\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e21ca9f6636fec4414d787db4566edfb0b9c269ed9cf5e09101de6b014b48a59", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxescondeescondenopc\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64d8bbd366dd9523ea3433126535aa3a6bfca9be8ed254de442b7a0411906b3d", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxescondeescondenopc\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4b97bc45606547ee7e22ac0ce545a4d30ba9b1d78ff94f35919e35af4f9db6", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeconstruir\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88b0ef281e141ea766d0591d1515e0e9a556e3c65cc06904d6db53204b3b5e89", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeconstruir\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73641d34cbd60931512142175322c44682a2a52e1d7d6ba879b60826e2793bf3", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeconstruir\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c2e9bb09f4eeeac115592431b6804f96e6030f12df5da8f93778744e4079c82", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeconstruir\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c21f127c6b2f1fd89be07ad53651059c093bef8e75c4df504521e3be7570b2df", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeconstruir\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1d6cf327fde4c601b64ec920c29a7f04b91dcad641920392db599c7d4a292bb", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeconstruir\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "813c90577780e23ae5422d8dff130df735b9c3fb58c16fb31eee522c05b4a691", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeconstruir\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f99f1d5c0e344f3d6332e3e31c665dafa28b7919d81712efd5be7ce85c370bd2", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3cbaa2a2be241e08fe62432e31f3c0816cec69c865ec5a1cae43ddb9434eaeb", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cd5ef448fbc34379b9a7104a3b0543f69b2df32254cf8513c539028e346faef", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7854de7d265a2b943418488aebe86fdc0ba9f7be604fff30e530182ecd887340", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eaea6c4bca68fe5143d4b8ff752c9b24cd36fb6aef9a02279a0c9924168657dc", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "916b3054b9d840124a7d478652eb55af7752536ff89db5aca7a1165a4cc57741", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6eb6e540025095de777620e8a280cfbeb2fcf62a0ac590da2b52a7f62574c6e", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0367006c34108e4e5e913ae4d9fdc5f70ce349bf24e35960a154d9cee8661e6d", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c4e5c66c05b5567621a951eabc1498e7a6efd6488327bead480a14d22f48e77", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ec9607caa9fb0a375ebe9469738c05c1362148f453bbefb76782a379d6ac723", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d07ef3bc64e2078a8e9754b7972a5f0cbf264afe63ff4855668eeeb8391cc67f", + "regex": "(?i)^https?\\:\\/\\/fireworksimulateurrobloxcode\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54fa47dfbc7b6b9bbcfc62e6ebcff17ede3eecd81da575b2b35ab8cea348d2c5", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d70f34004304c314dfe6b4c8aaa11ed38be5e4464bea7f669e261666f7d03b54", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82c9da1b1cba8e30007743482b464c05fea8ddfbc7a13468d21859eac99059e8", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b861d9a256ea9831a1ee4593612fe1150152e681e02cef4103070b8f0edc0d0", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd9b988d1da81bb78908d5d601298cb3e863f146a1e528a1b6980395340cb465", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948f80312bc02f3edb830045f5c4a6a88b9cc2566792d259306bbd4615871021", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29f316bf05c766343233c65a9abc4684797d03021b9744fc66211114e095ac19", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c07a6a6da7887e0a9f9d0801d2a98889f9c3cc532cf1699baddf260662609641", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7963729a24d63cd9e9409789b11ec80c26b4cbe64a99e974e6e3d9c60cd9e776", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e48c8cdde59dbb21c01555be5bd94e498aafe7d4ed70c3ae09fd3c1b3b3026", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd5cf82ba464aedc5fc7f7233363d87b7e480da41836ad3583bb03021f16914c", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "115c537428154d4c6bcb9e4c9b79d3dab4501c6b4b8972d1fd6f01238b178b0b", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5138e7b718e646e9c6cc5bbc362b30140f70af71f514ade953f81c1edfb0053", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91be60ccea7fcde8ee24486cbbeb7fdb85ad1a739944c578a07d12e180f3c765", + "regex": "(?i)^https?\\:\\/\\/spyclubgrouprobloxfreeroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfa359dfd03abf2b7d9691a38cf5f2e4215d7728973d9dee921585ef72129c20", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxfreenovember2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "884869b5ed1fdda7a14f53c11bebad2ba106ceb9e3cd39bdc82d8b92fd691a47", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxfreenovember2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1943059801c2c7c62adf2417d85561f156aa5dae1cc2f81db06a44b6f09d4101", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxfreenovember2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39a3cfe4c86fd4484e656a7ea3042551f60d0d0b820fd6242c4c529b978156ec", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxfreenovember2021\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec9f4c17886b10d74e0e7b850565cd13b85ce7b6cd34276a36af4278d65e4863", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxfreenovember2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0709b50acd47541040112281909a12bce7788cd5cd3dcb2812bee5713c645c3", + "regex": "(?i)^https?\\:\\/\\/howtolookcoolonrobloxfreenovember2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beb9e1c1c0225f190b06b73a11600ddd93925616a0f572627db25ca5af25fe34", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a01555c05e05aba090e55d3d4e6086dade974f3ec7c15d7da46b9c8f2f53800", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5d00f695416fbbd31824cc4ab9b96b0eda76e5567e55be8858fe0bca39d3f93", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd42ec9a2462a55a6fde4af43a77e70f17690f89738f410dcee6e3470f6b9e5a", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b3e2bf4fca58a5dd46fae53777fe9352e72399e7c1047c52b2b7634127c9bfa", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8beeea3edcaa29a04ee2f9e940078a5a4ed3749a3752c651d043625343d00151", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27c6ef833246db0b2e8962e8234bc84d0f1da2c0779b5bbc0d117ad4a9338cf9", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "084e00b34ae02c04083789138de98dc3cdbd64daf13972fcef1fce0196b8b998", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4af58743d801ec4108276dbe2a34a5d6ba3edb02882b506ab4e048d5c27161f", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d689c1dc3c763924f585c1062085b04c3ed03095b43d2c4daccb208ea6ec947a", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9f0119e4047306d4c59aa6c96c29cff82756d9f96502438c9bfa7e829e1d788", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7b1ca4451e8c69b3e8fc745ca7e271eb17a2c8abe427602fa939b7fefcdd8cd", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86c20d45e7ac2ba23f75bb7a12c70f7a3b028e26afceb9a577c86b4c5dd884db", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73f21543fa58a5c1b7f671ef5da3cb91fc0edf57c36715cba974be39a708e6f5", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49e9a4374a7c2f6bfadbd1bfeed2ff5c1a6edb7abe8eae00caee8d287e1ee565", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1286ad3366061db56c39fcb97df56422f9e3bd9d69484b60bcf8e92dd4838ab", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0641a78e0ad31c0979ec79dff8998a5cb1496199d7e22f19b8983bbacaeaba27", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d53cc116ecbd62f46894ebab07cd01f84323563afcb8c057aa35f9036cce984d", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e72ed9ee5e46c52a999724ecef7f43b951b645ffa8695eba8d03a223c624a526", + "regex": "(?i)^https?\\:\\/\\/hackdeitemsnoroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6da168811caa15aa85f87f1ee61b1c2cbf7f957decb01a682e156ac147ecd2a0", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9918904aa36de3ec15728784dd900b29d61d9e5035fa011868cf575927465eef", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b8d9a409e7d0640ec778bb45d3c4d50c85515c977ade45aa6f40b913c488379", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a8706e33411c470e4744e5b033583991b3aba037246007bf4374161f2e83880", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a8029dd34ac50083aa50031aa8e2a79a392ff118ec3fde86afb17eb7d445bb6", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb7890f93e7057f3a75f33633fe6f586113fead0a9676ddb36ecbea7aa500bcb", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8613bb228e63e2d18592f38d0cb9400c02dec52f6b49c1aed5f1900fbe44f242", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67b9b7bd6f5ee557ef65564b009e699e0fa3816e111b783be929e17d27240ba9", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebb2474cc4da3656cef6bd49ca2acd1010e133026589cbbffac7934f635c11b6", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fe87bf303477da57cc601fcfa0226723a0d7842cdb3c0fc75e919a8888f92f8", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a800676366b2db83d03d66fd3c05e4676c6d3fbbb94bfdee795497152e144e", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd883cb99e292d23e95a2ae57498d1a0cf118e8ec89766d533416e1fd771023c", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86c2cfeff8a15888360a515fe99134a43170b7187bc221ed9684d8f1becd365e", + "regex": "(?i)^https?\\:\\/\\/howtogetfreestuffinrobloxcatalog\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "825b26f4d6a380941aa425243bd8fc5b05ba15b852fd9f772951bce9ddcacf1a", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedagua\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ef21f9cb0c6e857f1ae438553e5f8cff14c74839fa33f2eb04851899d06b019", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedagua\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9b657238ae977c92f53d94bd0c30706b82dc2b51f1a4b27fb00e406191eb7fe", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedagua\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a46592a6edbd349edd42548b77a54b743d88caf49f8103afe1beb5d03e37cc72", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedagua\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b701690014fe3942977019cd874e5538e3e8b1da48b89824000632590b534a25", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedagua\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0a36005ef929b621320762995bbd6f7da2a74ace92f3877200e8454ec8e011", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedagua\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10ee7100ba197b39898b897e163427306d96fec0168352515e241be5ae9043e5", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedagua\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9f220454bc33e629c298dafb54df7b67749a2b69082857a6cd2e8ba685070d", + "regex": "(?i)^https?\\:\\/\\/jogorobloxescapedagua\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99a9e90b9d97f5d09bf8c78f9849e8d766c9ad9a9750ee1b367a4c04cbd5c87d", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5b2fc4ceb7b3687fcbcda41ccf295001ea13aafc4e72c4254cc2112d3b58104", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "742103391a22aa639bd0e159b2e88292443ccd48a9a5145c7ab2c7a20c1fe016", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4bfd4be480af7a8e5430f92e971e249210b5109da1b60e91f1ab5c1cf18ccb3", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f686498f21aad045a83baa8a1132087caa197b97d61cf9b936b75aea669b897", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a71ee6d83e826b724df19b80e67a3cacecd13e4ad5b9082e73bd57ead32c1f5", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ce2b8eb049b3a4e350fc08de43287e00e3bb8067abf957d91c13847006afa71", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d65c7d99515dd561609da45fd0392b1c4a390c18c2b3f64c190d2697b74e334", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05410db9f5e7650862bb394a51969abf36e5069c625132508d6de3b16408009d", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc6372e516fe907c274070dea6e1a743b1a3be93e7e24dd5bdd32a808f81323f", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d70ac455a83a270c6ee3e35403f979f490b7d1247a264d83552ff9e1ae68a6d9", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96a245d09e7b2266cb62619d3d3348b2e9021319dbd3390702ac1f7e957c0ca7", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxexploit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "438d2f45a34a3337e29b47e9ecbf4eada6805a8b4699c981fd8ca13c09c047c4", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxexploit\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72d4bde74b28f99626c2a96e4ee1a577b3eaacb3c608eb517740129c1673d66c", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxexploit\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd1a0cb96e59ce3b5c823f91e014d3717c48909702e3cba42c4ab8d9da775f6", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxexploit\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "876c795572b965e01ee98c35607e80afb667cd68978daeb7c1c06f657c198480", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxexploit\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "974331e0de0680d656e6082b39ba25181c9e9f7a8e3916066447615d71a8e264", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxexploit\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2465e15ee476e6f9ed940ae1f5aee265ac7769e7b840e89d6385f86387fdfe01", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxexploit\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae82f5d6bfdf8b416c9f36f35dce434b59a6d59d529378b950f5a0d5a4a72559", + "regex": "(?i)^https?\\:\\/\\/jogosdebeybladeburstnoroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2ddda8e07693de9fad94c2325a5fdcec8c43ee501396a3f20ff287439953ecb", + "regex": "(?i)^https?\\:\\/\\/jogosdebeybladeburstnoroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47994021bdbc4b9c273fdf60d6a098ccaffbdf534998c85cb657362f7266b95a", + "regex": "(?i)^https?\\:\\/\\/jogosdebeybladeburstnoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8991a6ad34980389db705add192ffeb7a70831e6923fa0e26f687fa879624aed", + "regex": "(?i)^https?\\:\\/\\/jogosdebeybladeburstnoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76addf8409f66c643c1968d949d7378233377c74a724edb0ed2915c391cec017", + "regex": "(?i)^https?\\:\\/\\/jogosdebeybladeburstnoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d652b8a3681d7a420e38c1fb2ac81aa35f806e5ca9a20baeb510b8e099eb4469", + "regex": "(?i)^https?\\:\\/\\/jogosdebeybladeburstnoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b55d9c60cdb1b24937f5594b8bbda08d8a21f369d3d05cb33fae7b06f5e4b149", + "regex": "(?i)^https?\\:\\/\\/jogosdebeybladeburstnoroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c94e86302e945ff1917fc67fe7d39e4e0f7c5f13ee9245f4e7628c412199146", + "regex": "(?i)^https?\\:\\/\\/lycederoblox2codes2021\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1135b65df05024b3734cd824f2d30a2316ce2697f501498af5ce08c4e090364b", + "regex": "(?i)^https?\\:\\/\\/lycederoblox2codes2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "598aad1153d7b99ed8555fa8d0e0531d2670082dbb4a5c91fe3eec58a3745f0f", + "regex": "(?i)^https?\\:\\/\\/lycederoblox2codes2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc36d1ec743f3e3c4900cdc425a17fda78f1f01dc8298de0f94321cd26e67c00", + "regex": "(?i)^https?\\:\\/\\/lycederoblox2codes2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b5358fd7b2a675f75632bfd90922afec83a18d3646035dc40416143328fdfa5", + "regex": "(?i)^https?\\:\\/\\/lycederoblox2codes2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc8bab0d48ed104f8905f6034ddac116f9ecdc662f56dd92422860f9b8d97683", + "regex": "(?i)^https?\\:\\/\\/lycederoblox2codes2021\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0bd240befdee85a3d4af079191ee80237bd8ea5c900a410531dcae3be64cec9c", + "regex": "(?i)^https?\\:\\/\\/lycederoblox2codes2021\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec518fc075bc72f8bc75959a8168b375d447cc190da3c2c4d7b1eb33cfce07ce", + "regex": "(?i)^https?\\:\\/\\/lycederoblox2codes2021\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9349409c8aa4f483dd08ffe723110e010722454b1e565b0ec92e3a6434875a71", + "regex": "(?i)^https?\\:\\/\\/hexushackinroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5628297edbfd085aabd3bcc408b9ce9b2170b45ca29dd0690707e0d1216d9e3e", + "regex": "(?i)^https?\\:\\/\\/hexushackinroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53efc77748690001295b21a81cd4d6f7a9c3b701d709feaeca504c18b6e94cd4", + "regex": "(?i)^https?\\:\\/\\/hexushackinroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f84ce3c9773fe64d152ddea5ad68ca1a6f34cc9975a044128a551d4fc0ddf84d", + "regex": "(?i)^https?\\:\\/\\/hexushackinroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "320d90e4b77fc002c09f2f8827035fe8980b02c95f46ff7c3917bbbb9867de75", + "regex": "(?i)^https?\\:\\/\\/hexushackinroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b037732937b875d720ad5210657489c0051ba212a7b8f211a819029e646f44c", + "regex": "(?i)^https?\\:\\/\\/hexushackinroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93993ef654bc7faae98b0ae3da0501b173027f1884ee73f9fdca30f1c67e4d55", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f10be225da374dfd43eb71a1a09cbec2580ef4f1b91cad2083eb2eb9fa32b2a1", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e685e51d22df43f45b7a05f43cd781fd5b0cfa800c21c30b4ad557245b4d2fb", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f0d1f153aa85e810b340f7e45733031faa7337b94cdbad3e00a473871902a03", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7612df2202d5b50a9248786c246907bb1a281aa62649f5ef602c4fbee9a81f58", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e86360f8b5d49d1941d9880725e7b3077da7282d14b881a88ddaa74f48f46cd", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b29b40305927c80af236c3711d409495ece5f205befd1890811a6f2569d7a713", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7e85ba21ebee33609350f6dea5455f230defce5621eacbab98a1dbc6b7db5ac", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd5cd205d9e20edf36f660a0826d65ea3585cc2e4c577e2b84c1ca5bee24ac00", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3f0e209530cac0c48098818887195fce6894d354858aea7ab24400dbf63ab40", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodearea51\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7437891ad0f13d89e21560974e77b4df7fffd2f6420b6f11727be10784441bd", + "regex": "(?i)^https?\\:\\/\\/robloxcomocomprarcasasemrobux\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a29a0bb150a00c0d0937bc079df34b754b97b8e4ab6dd3193cfb2757e0cae0d0", + "regex": "(?i)^https?\\:\\/\\/robloxcomocomprarcasasemrobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94cbec7a71ef0e906176d6887990c00a0569a5f0ef091a913ec8d5e83c2e0918", + "regex": "(?i)^https?\\:\\/\\/robloxcomocomprarcasasemrobux\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acff8a4b7943d7fdc50c6e35188fdef196fe658bc92b7f2f45d18a095c230a9b", + "regex": "(?i)^https?\\:\\/\\/robloxcomocomprarcasasemrobux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "308c6cef793f558e121020e5bf5cfb2ba714e7505f1e6bfa2e7644eb43336b15", + "regex": "(?i)^https?\\:\\/\\/robloxcomocomprarcasasemrobux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59949aebecc3b7d580e166829c5497229063b7a349b95c09248b1fbfab658690", + "regex": "(?i)^https?\\:\\/\\/robloxcomocomprarcasasemrobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14a300507fd579ce71a3f0020fa6f24aec7a40a0ed2bbc55bca60636e2c315b1", + "regex": "(?i)^https?\\:\\/\\/robloxcomocomprarcasasemrobux\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c91c503cdaf34afc4cca07c1bca0bbf727600ac8882a65611fb0b1cc5b3b550", + "regex": "(?i)^https?\\:\\/\\/robloxcomocomprarcasasemrobux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8051873d33cfa89b2a1a258cf4615d3eb1d3abd6519680abd94df57785b3cec5", + "regex": "(?i)^https?\\:\\/\\/howtogetfreemoneyonadoptmeroblox2021\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9ebedd955367ec6cacd3a8de949550b7574c6d138a9396112b8652ff7911589", + "regex": "(?i)^https?\\:\\/\\/howtogetfreemoneyonadoptmeroblox2021\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72068f01b2c03d7813cebaf598d883bd2f6f9611f1de8c74cec0619dba98a0ec", + "regex": "(?i)^https?\\:\\/\\/howtogetfreemoneyonadoptmeroblox2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49ef164f85cdeb48c3d0051eb87bb6f76d42ba9c4c744b8a557bcd6411964e0b", + "regex": "(?i)^https?\\:\\/\\/howtogetfreemoneyonadoptmeroblox2021\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7807e0c89fe498fd542b2b50dd5d6191f05790fbfce675ba8fde5de8e2bd94c4", + "regex": "(?i)^https?\\:\\/\\/howtogetfreemoneyonadoptmeroblox2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d603e8d5bc032307bd02f122a2711de732407b4e98dfc0df168fb168d6358bb", + "regex": "(?i)^https?\\:\\/\\/howtogetfreemoneyonadoptmeroblox2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13ba5ec300e4712661fa311d1aff1f1dc85bb3a1f2bc98e361cc05be6686e47e", + "regex": "(?i)^https?\\:\\/\\/robloxcoderobloxdominuscoolrighrtknwi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386cfc11979d24818611be2a50c13a9953dead89eb0366cd9696cd55ec254c81", + "regex": "(?i)^https?\\:\\/\\/robloxcoderobloxdominuscoolrighrtknwi\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fedf8d64f3dadd08b4d61299debeb0a326cf4723785dc39ae90bb030b0b9b543", + "regex": "(?i)^https?\\:\\/\\/robloxcoderobloxdominuscoolrighrtknwi\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "389f7e45dd379e925b2afca3cb2d039fa766f61038284f8087c8ce4898b2f07e", + "regex": "(?i)^https?\\:\\/\\/robloxcoderobloxdominuscoolrighrtknwi\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "868e6c3d1418378b2344e230f030db4ae15199b58d1e877ec9d8fc8be6f9ff0e", + "regex": "(?i)^https?\\:\\/\\/robloxcoderobloxdominuscoolrighrtknwi\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb9af87f1fe8ba38fe6fad9d1b3cf504afed726dfbed0e41a96c35d969de695f", + "regex": "(?i)^https?\\:\\/\\/robloxcoderobloxdominuscoolrighrtknwi\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52f64e62ba24285bfaeb935b4d1098d92617818021f41c53f8be835450e97d67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+HtmlNetflix" + }, + { + "hash": "5c339779e6f24c4d164bf2ef2e2f58d4dd08dc909197f46646f655efd835aebe", + "regex": "(?i)^https?\\:\\/\\/robloxcoderobloxdominuscoolrighrtknwi\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b2f4aeeb97b386c3942e6bb707dd115a382830fb2b778d282b1cbaeea1279ac", + "regex": "(?i)^https?\\:\\/\\/robloxcoderobloxdominuscoolrighrtknwi\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97686b7192fd96510d01b0263682a3d4f44b2f7554d43d69cfc77d4952b4532f", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "531a4a7fe97e3735dd3055630563c1d01e93b991043b72b267f2e08134064a1e", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b96bbb8da431e35d22bcd6c82f15cc09dc795834bdf93ad7318c74a01994fea", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03ae512af669cd19b1c409fc771afaba8c020d8d279c6050b7451f48026c725a", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "139b9d872a316ae619941ee4258c02a94f10f9f4f68faa6e48f69af8e70b81ce", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2fb1cfc3e3e0250107b673418c0a6af0b90c44ba5b20511d8ef4c0c32d8ddd", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8107d0d617e31b7c131f8ffe6c752b2730781a3efdbe10200506a4679c208d9", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca1b249e567d52997c42bcaeea3191fd0a1b9fdcb415336c4d05b9614e87616", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d3cb34b86901132c15e5b9e3d07ce548406423905564f8e748da1dea4d881b", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f5965c897d4d3049e4ac7de56165b7b15bfd76a6337766ae1c100aab4dc31f1", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14b25f06ade76ac1d137c6ae85c5064bb37277be52ce8ea9625e9ef60e16b3a6", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e56c7d534a72289b7d482f8bc3902dc23c70b841c3f1ec72fda453091fcf9c01", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d852a7131306f90fe4b6757a0eb9af7799d39b23d35c89e89dc982cd720e42c1", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e64bbc3578004d5314e588171b4b57db418ad650ea07c011eee9742bed487742", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81e154c5dfc4efe6ba32da506bf6ddeb8e60c37b7c2a99d4aced1c4093393a5a", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "749a3c7ade88c7125ab3f075b3e877a7c98747cf702773039c85b8abf5baad1f", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49957aeffe24ca63cf9c09047e78606c9af10145c28ab5d960315664da3a4797", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24a25d8d60656b1f12c18c43336d52a902cce80bb74ae19f05a57b56f13f50f8", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f67d5291426865c56a3024c581615a6b36cdecdd3fe2de3fecb9a2cafdadfa7c", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "735fc40e78bedcd35ae7d26a4bfc5d2cf292a824b97559d12e9cb88f970162ce", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6634fcb80e3a4024fc34fd32adc3c6575968c33d340095264d1feba4e21f135c", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95c5fe2baead185cf153af95678890aef2d84a92133a8422a18678de56ebc15e", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cab3729312ed1b52670c0793302871f33a116a5dc16b6df2bdbf0c3231562c2", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14719ee506c2f3a46559850fffef0d5609fd3ec61093bb5bb0ae4181da40ef25", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2ca8c17e5b8ea2ce33a9ca050bf08ae817ce01e741bddc75d520738352582f2", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29f64b1ad2f259d65b30674f53983d1422719511ce4bff69cc3fe0801643ff07", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgiftcardcodes2019\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d23dd7d92403015bc037e1a592b289f7a85da997c9076d0e5e3fcbcd31872bf8", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgiftcardcodes2019\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6109992f705bd67fc932ce0225b52f24a74ec89af37d223bf053438dc8ac4d6d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgiftcardcodes2019\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beb9bf0b98efcba81aa5dd261a950bc2e63efdcf3cab9922a748ab19cd527e5e", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgiftcardcodes2019\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c39558ceacfaf4eb97be94adcda3786816d9d8922f64c324ac9e9ed8d7658972", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgiftcardcodes2019\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3716aeea288e6c19fc39167934f1ac89ec6bd7a8b28dec2741122b0ba64afcf", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgiftcardcodes2019\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a721cb427ef699a7cf05c5f5c521aaec257aea510871d6f98e7ac4b8fe1c517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clone\\-facebook" + }, + { + "hash": "17cc1396bc96a7672d52f5e9af4e3665eb24b79c05d0010c66bea1535d0fdd65", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebd8f923a422f4a3c25aea32fa8222d1c37402fa8a1e97315238f10e1de9acc5", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c5d84dd2f750b6a87a347326240312b903730358050a356a3f478e85a0b8183", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef93d0c5e7d6d511b40221e39bdb0b3533aad6a3f4b8f9d91acea0f444ef35cd", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df864bfb8053778975aec28b55a0195dc46400a8d3bbaf91d62b7213b762dbe7", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06fbaa607d6a443d0a8f205e4a9afee4189041ce5556a599408751c32a9c3c77", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "589539cf42be5bd61d4563b3f0c0303848c1405922e16c8c08a534d246fd5079", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc57b60be4dc94082d0e1b6d5169be5b18558bc1288119ca85a3415edb8fd4c1", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c35e4d4815fd23fa53028f07380cb140b277c00e4d4b334c4810282ea4fa882", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc4614e4b9ce00917c5587274e2e3f4b20976f6d8a06637db5fcc812b141b591", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61faae2e6670561913c4b98b4de0f6063f6bc1cea58224c5f01ba976bdc42b99", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxjailbreakwith\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f09b020568243f45b79da342840de397c9aac602be5479c73ecff833320a18a5", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c91012012cf78e7c58d9bb953be6a8a13823b05b59a7e1aebd1d3fe87d68180", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63f2a1ae35aea610fc4aecf4de44d2dfba48b27928424d5d6ec38da53bb2836", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31396d4004d264e5d9dea230107e6e67773c0bf6d2e847f3af1e9828c9d08717", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddd03916b9f8a0ce0e844dc35eb6772f929312475159262a563994f31166b97e", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e08d207df12b12a7e40b8bba60393600f43a25c3dd164045e12a8fc00c303c23", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5ec6ef871ef3d805cca8a4d9a874dd2f8d250b3a61b26d1f24ac9b76781f1d2", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ee53929cf5006147392599faf807635eb2f522b1c6272821b77a688f5cfd573", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30a249ceec25f13d7c4733cb721607e6e15531d703158db98a1a4bba46e11fa6", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad624b56caa88f6c04619208470b997d4dc4521732d3d8e0138aad09319742f6", + "regex": "(?i)^https?\\:\\/\\/robloxbcdailyrobux\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c87def393cded9d153396d3c887b2da309009eab11c75bec2d038790f413040", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdenotebook\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12ccb0276f85bf58b6f1a45b9193cc75ae463aff2d53ebb429880fead2ce7171", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdenotebook\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "859e7554ee67e46eeed4b6ef50d854f4b9b55011eb1bfa34be1dd2878483fd4d", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdenotebook\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2d4901c3f4d39bc6f92e8c7f046da79e8268e7f851f3d8e574651989df31eb1", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdenotebook\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3a57a5ec1a42fc3f28b04e2ff909c30ac571847f7cbc796e224504e695fd871", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdenotebook\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce1150650573ea55ae189b168287279608ac568e72610918288563839ebddd30", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdenotebook\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00aefdfd05c07ab2982389e4063ddb7dc866462da616ebac264b75c246d287f4", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdenotebook\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc6a9bfd19cf8b0b31a9464710952cdbf2983b5497b99385abeb560c88875a53", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdenotebook\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80d8afe5048c928b7fafdf98f15cdebb733f8076cf9a06a62159cecf8adb8d3f", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdenotebook\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d87955444f02e4f9395d91aff1bd5477aa1f18673a46f4340793604b8241c7e", + "regex": "(?i)^https?\\:\\/\\/creeperawwmanrobloxmusiccode\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0c2be83c916d721a1ee1df2e4b1380223d876d904a311d86da9a64739152023", + "regex": "(?i)^https?\\:\\/\\/creeperawwmanrobloxmusiccode\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81f22d55beadea203ac1b570c0b74aa7c12fcbff310b34d4ee5d24e91b39f7dc", + "regex": "(?i)^https?\\:\\/\\/creeperawwmanrobloxmusiccode\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07570b5cbe7dc6ed4c4e8d24875e7c82ca20f249ac3b8c8757ccb8e8a0361a7f", + "regex": "(?i)^https?\\:\\/\\/creeperawwmanrobloxmusiccode\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "230cfc0812a8eda33794eabb89abae39e69d5e6b28eb923d0c732a230c5b5b88", + "regex": "(?i)^https?\\:\\/\\/creeperawwmanrobloxmusiccode\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66463267ceef8be8fa4ca65785d88894e1f7e4298fb748ed3bda53552916b4d6", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusicdanganronpapunishment\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2357971f126e60e523ac6f33595fa2124d9aeaaecae5d4f8a03043a684ff27cb", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusicdanganronpapunishment\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "895de0644ac80428f2e09dc19260b9819ea58bbccbdf57987cc13a4104b16792", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusicdanganronpapunishment\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d3d15d80c7d4b41c86582acc79158aa10673c952b29b521bb26fa68af069434", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusicdanganronpapunishment\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3a59f031d13824062af35a7e81f018bdd31f354946a7d89a0b2fdaec8014d54", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusicdanganronpapunishment\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6dc63468d9d2f370243803b9313afc3f3a1e9ecb136ca17e0550def1cd0ff2", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusicdanganronpapunishment\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af0d937ca59fb0dfd34857d8b03a920b00b954c6949d2a8301988700c444e1f2", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusicdanganronpapunishment\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a941cad6d6e334bd653783b25507e19ec7410e6cda8e674d48a4c5a9b020a5b0", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusicdanganronpapunishment\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42179cf60ac979026b9df353365d664670115fc80020735986a70e0c762e7d75", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusicdanganronpapunishment\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a7858bddd5dff290f834ae4e6043a122d2bc420cfd2c690041c3070ecf22a77", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a078ba4d9923e1d504b057c2760633d9633dd5e2abbda606fa5a18e188a1e33d", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2db11a1d7d86f8ad6653312dfff226f6e8b6eed6dcd04c7c56bfd3d016114b9a", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71b7e25c3600d55dd03e79390c7025767c865f81e966fdc21fdc2edff3a04b62", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96e4278950b8c95c8c1df3db10df53631a7f0fc546f0544334783a6df6f988ee", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acd2380c952440d6c34a74784ba2e572eb60ea5b475dd84e792c45a2f4560cc3", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cab6d700e400bc33fea70908420773f2b2980bce5daec2477c4d3aa8d57f0bf", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "228ce202800e3898c7e9825851251db57f5a627a0e26dfb0dab09e4cfc923cdb", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e818428c73be8f872dc0acfcce8f20fb1efcb35cd85f1e8ec65d7f453cb02f88", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d80d67a66c1af5e5abad7f93b55cae6a80cc3d016a5eb892f5dde7cb0288533c", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e098308531953a401c8fa72fb1ea98cad5e87daa9227c48c5d1257c4e1d34ca", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c024c7363ceefcee2666e69c4b75456bb932b39671bec9fd00d1bf342a3fc1d", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "097dab3b62cc42826106c433178776007730d5cdf9d5cfda7d7855b0fd3c95f9", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb8e3b9e580d8a2b3b24e0e1217226cbada0c1012342f5addf1303711824d935", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e6487caf49d58fc6031fa8a826c7d7efc57c991934e792962b89a2429bed89e", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a83b19f5d4973fd29d13b60161195fef442c8732e939e5af23a0ede9f72d51b2", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a1d5cac70ba0efdb4925ddd25ff0c94a2ddc952ab922f2f748de7cf7a660f1", + "regex": "(?i)^https?\\:\\/\\/robloxnouvellevilledefrancecodedentre\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73de7e5ffb44d3f288018bd6f24df787bc82f303814891ca9d6ba422a783d528", + "regex": "(?i)^https?\\:\\/\\/freeunusedrobloxgamecards\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c4e85249d01222b35c0fd5f1de38ba16418c6f2dfc3eba6a024a17b10b92202", + "regex": "(?i)^https?\\:\\/\\/freeunusedrobloxgamecards\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba587266f674918b5e213e46c83a23b992dd2ad4e90b8b2ffdb8bfb140d8ce88", + "regex": "(?i)^https?\\:\\/\\/freeunusedrobloxgamecards\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a20b1df252fabbef70ecefa24bb4c55e80008f6c7a69cedd8893705401e915ac", + "regex": "(?i)^https?\\:\\/\\/freeunusedrobloxgamecards\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "064ee8cffdcbf63dd6e0b0289eddaba8e213ffdc7ec12cdbe227f74e47980801", + "regex": "(?i)^https?\\:\\/\\/freeunusedrobloxgamecards\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d278472786a435b89c5a0b5d5aa495f8d29fc81849f83e6646398bf805501a77", + "regex": "(?i)^https?\\:\\/\\/freeunusedrobloxgamecards\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed981fa7af080e6f9130fa7cdca1d95f89f62921fe88566ac2f1a2df0d654ea3", + "regex": "(?i)^https?\\:\\/\\/freeunusedrobloxgamecards\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f036490092a97bbbbd5449a573913a9d5d8c6622fc50469c011d87d56cd8388", + "regex": "(?i)^https?\\:\\/\\/freeunusedrobloxgamecards\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7637fb1e7682fabb8ec6824d5b44ae47172d33338517fb9c472d34fb55ae7605", + "regex": "(?i)^https?\\:\\/\\/codigoderobloxnojogoghoulalphaparagho\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a70e1fb9047a8b59c19f6c5971456bcaac7cbad31fb840034f44467606aae3e", + "regex": "(?i)^https?\\:\\/\\/codigoderobloxnojogoghoulalphaparagho\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2fafcf4783c588a8a4b3818fddfe415f1e93f0826f5f96b3c39297c15e228fc", + "regex": "(?i)^https?\\:\\/\\/codigoderobloxnojogoghoulalphaparagho\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69c169894e12a2609f98cd74c57bb1178640b9ecf9093d75f6172e2d971054b9", + "regex": "(?i)^https?\\:\\/\\/codigoderobloxnojogoghoulalphaparagho\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75cde793fcc9770bef600b25489b45ffb65a5e3d642d96e5a8087e97f39d5bd1", + "regex": "(?i)^https?\\:\\/\\/codigoderobloxnojogoghoulalphaparagho\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a3c65b2e9bee955fa8f0e29a3d563d5756ed0e6832b0240293aeeb6efbff2da", + "regex": "." + }, + { + "hash": "8e6469292f6f5fa9d1cbec3eddc52f33baa823107bcf45853d71604ea81cdc1a", + "regex": "." + }, + { + "hash": "76e6ed7933c9b494859da23a9fb7bf7d6bead0f220ffbed9e508e00d42acbcc6", + "regex": "." + }, + { + "hash": "bfc7e0ef64483e279c233b8f69164867c1ed29af5f45ee02b9d92d3a77504ac9", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbaf57f3edcf49b82e8416eb9f1055e9abcaa7b57c7aad623751145cc8d823fc", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d081e34652fe5eec2e11cac66857bfa728712e46408857828bad036e4ef41cd4", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b1abe77a96769be03f93c083cb953cee5339bfb098932af63bb2c6d3204298", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec8d341f2053b3d6c9f864f493f7691cc0a1bb08d6b9fa3fdb668848d1401b77", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d353f2ed3f506433bcda4bb7fdb41093ea997bdbcb1d5f443e55905042dec7d4", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c62649fd0f21669719752c6a27292869defbcf005d3268f22be0baefe863990", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0f8394fa51a587f21f061fdb616839f9aded29a004485cb9fe9cb2018bd1c88", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a199e048e4ff9b41ac2d94e14fd1301d580c4951cd6e2c4221cd862fd1295b66", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8056e046391d7f6851fa575691a17a2f3f6553abaffbb973c8169adbb669bf20", + "regex": "(?i)^https?\\:\\/\\/hackparajailbreakroblox2021jailbroken\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "868d875f15983307daccf54ddf553e7b255750bda36d604402962a3e212304fd", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5535706804d4ad17f6d45a277c2c5111eec5ccb26740a9d793b2c1fef2f875b2", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be2887fae2cacb8f18c1fbb67d41c70db2b0c20672475327abf81a6074f65844", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eece3dfafca66aeac16bcb57fc57c43a9a4ca628101cfc49c5a2c3a8df5e5241", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33817bdfbbc5929df870ba20855d555ef85f15d0332e0dacaf70edbba60f9c9a", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d7a116a25aba94e243d22dfcd5c8b537c9a4f6522bce541ba620b290ee9bf08", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c64617d5e0431d4884b81a9b0434585fa5bf64a6652b50de2193d1d1fc00a25b", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e87efb7bd5c4561fdaa2aef1266b0eb9b4dc806000dea882503767311559976", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fe96dc0d73f3beb6d5684eb51cd8e1cddb161a3bfceb81c5a51f2eb1e3fd06b", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec641ac17ed95da533583769ff020a245abc501e4703a2935bf86d83c6b8c154", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d3b1e22292f9729f8f4fd711c769d630c13bf8c8e6cb45ac3ef04febbcaead5", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2dd21f787983f75fbb0c81b116d479bc20df613bf7bb4f9976d4e31e9c03f72", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2317e176058c2e871534285ba867b75ef011f56088813cfeb4c579fec9f89de0", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ee1df540682fd55ea53192a50e79eb95751018f93602045f817786e633e7a15", + "regex": "(?i)^https?\\:\\/\\/qualohackermaisconhecidodorobloxhojee\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34086ed5c2efced6142d31bb0b6120e811add670268e4bc4869c53f1dd073f76", + "regex": "." + }, + { + "hash": "7168c2d8a6d993ef7c32a6a6a8816271a80a366687e5dd501dd76660f13bdd62", + "regex": "." + }, + { + "hash": "60a933ad3a61a8f87c135c2dd2fc8465842c94c5220347633f10b880851dd4d7", + "regex": "." + }, + { + "hash": "609d824152b148a7e3824da547782c62261cdefffdba370224a9698bd792ad16", + "regex": "." + }, + { + "hash": "a264d5ebb885b506eb90e3e62a3856711fe94c1a7aab4e9d4c0b57f06e90c6bf", + "regex": "." + }, + { + "hash": "c035d5c0a946e68cae49a26445eb0b81bcec83872f62fe7e98ff686e164c62b9", + "regex": "." + }, + { + "hash": "06623ad7f56337ba6b9d2c1ab1b90061c0d91a2b6e3b0a8308629c568f7c4d88", + "regex": "." + }, + { + "hash": "a65390952635e93c5b609a425f1c00505811faf84493d97848680c4e3ac556f1", + "regex": "." + }, + { + "hash": "0503cf387468e646c60e581e9f5f8f29024a48de4e3f4141b95d0739305e6016", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac9731ef2dc60259035afeba4e012a2bad36f71c6172023a378f3d515c7e5643", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f5ad2510a4fc6547c4eb27ea302729c2782d272b28806d4a27b8fb1358ded86", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02fbb971770d269f891187719d8989fe645fe1324493de7f7ad8e9065bfbe668", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51c6e6366dd4dfe98c42b0201247dad5e251a46e0ddc435538566bbfa33c1299", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec27e3b0877226ee1ca2f8a3832837d0b5d81be3ad17b5f947df2d7b4362f370", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7428f3da4122aeff7dcd867ba4a227800ce4f1e360b18868933a850a0d8c6251", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67131b0ad8bc2f1900e5a81234b9dfbcf35b5c08e94cc050cb46919676bdada1", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c1e0d38547135464d6063a90464b49b79f2cdf6ee7058e307ef12c9384f559", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab41a79415691efb350ee78352d05f1e28aa0e177d03d0fa8cea67159fde9b1a", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a494121929828c000d3ab719c3b5aba5f43ef49242f2d34ab330f3db2f9f538", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d663408485803ff5308c92fcc5699fc73f073da274536a849e8a2f4f855193e", + "regex": "(?i)^https?\\:\\/\\/quicksilverxmenapocalypsedecalroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d458f81b50e21d7716112be8049b3b2bc89469a070bd59586a64b51f31c7c11", + "regex": "(?i)^https?\\:\\/\\/robloxcoolshackas\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bec8c1544f18d396c61dd86b1ceec967bbb207e49b44aa1ab9412fa57f8c083", + "regex": "(?i)^https?\\:\\/\\/robloxcoolshackas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddf227afa8a4d455a59b5592573a78175f3b133b5069872f69d6e63dc8308d08", + "regex": "(?i)^https?\\:\\/\\/robloxcoolshackas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9bb5ec8bc66b545d4415ded454da1f9befb231165880ee14c189d338dbf6d1d3", + "regex": "(?i)^https?\\:\\/\\/robloxcoolshackas\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec14b576048f205b40cd3d63b94dfc002c8e90d58b31590d8748013762bbb46", + "regex": "(?i)^https?\\:\\/\\/robloxcoolshackas\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80131cc8de8e83f1d9b7ae7180ab28f1b4aca8f622fbc7d15457b722ea422ea1", + "regex": "(?i)^https?\\:\\/\\/robloxcoolshackas\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9a98fa9f16fda0d71eee8216f053a857c8fec9fa19f0859eed22834ee04edd3", + "regex": "(?i)^https?\\:\\/\\/robloxcoolshackas\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efba6be71068d9697dc30f2024f20a6402661199eb5ffc54ba8da16229b30d4d", + "regex": "(?i)^https?\\:\\/\\/comoganhar80robuxnoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7669dda2a08e5aaf27d1e1ed355e0048bf43c56340223b4fb647fc32b6b29d7e", + "regex": "(?i)^https?\\:\\/\\/comoganhar80robuxnoroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0f84da03a4b5f235a7420a1e7048de3c46272ff0fef27ebf4a109ba6c0dedb6", + "regex": "(?i)^https?\\:\\/\\/comoganhar80robuxnoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63b0384a70d62dda1d08d18d3325052fd19dcfea650bb18d5df205eaa3e0d05b", + "regex": "(?i)^https?\\:\\/\\/comoganhar80robuxnoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "976972040735535b68a2c51cc827737fd28afb3c9ae5105283d757254964cca9", + "regex": "(?i)^https?\\:\\/\\/comoganhar80robuxnoroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f22a875451af6f27ec3e297d98bda044eb4e373126585f5e24afea2ac2d80cfe", + "regex": "(?i)^https?\\:\\/\\/comoganhar80robuxnoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c1b8fab2ad1826d385b3a52c14737f7aec26abb9294900f5e1c9311a3b9dfa", + "regex": "(?i)^https?\\:\\/\\/comoganhar80robuxnoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51ee73bd3439ecbec1715eb0c8542a1d081c162da6172b7ac5a437f389d82ab7", + "regex": "(?i)^https?\\:\\/\\/comoganhar80robuxnoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98903e801f3e5cce3ddf6f6e3b857047b35086e6144d00232c28649418e61e90", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "065e00ddfc7a93506b45e5db6168117294d75f90bc6498ecb5b2bb04ca421e0d", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79cd3805de02ab423436915ab920948b9c6e487074c113b700b209f3aae67ef5", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81adeaf5668bba9e04e2f7b322dac7f9d854908b40dbdb7d5923103c83d06825", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "554c8194e69c5dd824121cfeeed2a555d0c379763f9a147715f4e626aa1cef50", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "216ef83a20be98bf92d8977f7cf3befa520f8104244a1c02f65ba323abb89a34", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7421fdeb6d425455384db5c4fa8f44e6bb4fbd18e727e49442c24058b4a8cc91", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ab4b94b01ae2413bb277fe71c87779bab346ff4ed43f6ac83c07906b97d47c", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61bb0ed6e7b25f0ba09867849138bec68543f4d8bb83f372a36d5b059136203f", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0292d90f69fe0f337927f74fc9126de3a098b16395cacede55c1ab3a9a6c4922", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5db1b16d20b96b750006ea663c43972c4d2d476a486922924e202101dd19fc45", + "regex": "(?i)^https?\\:\\/\\/hackpratreinarmaisrapidonorobloxdrago\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cc1770c3abc146ff6ad3ce34f2641520a5bde3abb4a2fb35f8269740a93c821", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c148489220c6552df5ef71c6283f63a8989133cfe43db16494431539237cc2b", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99e4e968e26a03bf1fb24dd0b0d36091a5008f34f58e421bbb302d92749f1d70", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49806442f9d4e7445cf7abd8491a343be6704644c05e35ffc8af6ac0b3bd6384", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab046bff80a620d7a6ee9db64b62c5e079970b7d2479e5bde9ecb9f6cece562", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "914d49011e5a13de6426b83e1b93626cb3b799dad001a69e28f3d069a6e8fd96", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d419d4069ee699baad43961f559d53013a134416572547942b8f2bd72c5d2081", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb569990d6de6c15ddb0357b82f5eacdc1771f9cc4586fb4dc30f89652bcc534", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47612f3dda8acbd5921b2ef583fc8733a7a2f54fc5f6c7bde7b46f06b04b3d7c", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0496cde2cc1a9783667c3aff8b842d27b59efe1080e441ee742fece2e2afae54", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6311b0eb94c4b2726b644a90dc0e5b51ed8aeb3e3ad9b494c97ecab0eec38c3", + "regex": "(?i)^https?\\:\\/\\/howtogetrobuxonrobloxtherealwayyoutub\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2992f77c37c6b2888aa8ca429339aea6798306a0e3a73b825882ced96a28b6b9", + "regex": "(?i)^https?\\:\\/\\/jogosparecidoscomorobloxclickjogos\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5db3a5863c6a3d01b15188b9ec0c0d0704824b1f3d90d280bb8692a5296d0bb3", + "regex": "(?i)^https?\\:\\/\\/jogosparecidoscomorobloxclickjogos\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ef23bb3d3f406e369d72f7eb0df9ebb846cadf395bd17f2248446430404a106", + "regex": "(?i)^https?\\:\\/\\/jogosparecidoscomorobloxclickjogos\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e598df2b1b6b24ad629340ed365d732fdc2be432dbfae7b5ac2c8bcfc17e67e1", + "regex": "(?i)^https?\\:\\/\\/jogosparecidoscomorobloxclickjogos\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3aebeb14243d1c9621fbca1045443685ac97c17df72579273639d89d54fd2107", + "regex": "(?i)^https?\\:\\/\\/jogosparecidoscomorobloxclickjogos\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da41ac888e8b937e09b27323639edee31f41e1e8a174f6bb3a30b216e33dde8a", + "regex": "(?i)^https?\\:\\/\\/jogosparecidoscomorobloxclickjogos\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3727ad22c7b4b21261de66c47b204f79e190a3dc9c521ace596f4098b8eee4cc", + "regex": "(?i)^https?\\:\\/\\/jogosparecidoscomorobloxclickjogos\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac214dbccef65fbe6fb31e18b15406eef0e795afe5774724fc438f1a42cac774", + "regex": "(?i)^https?\\:\\/\\/jogosparecidoscomorobloxclickjogos\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf5f28a19f622f2ab0ddb5073d93a77343d8e36a358c6e974926ebff91ce3cb4", + "regex": "(?i)^https?\\:\\/\\/jogosparecidoscomorobloxclickjogos\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e158993a36691328c42da6e55b0d43f41c73dbf4ebc9665c016f677d1da1badb", + "regex": "(?i)^https?\\:\\/\\/robloxcbrohacktrke\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84539b71ffd8cbdc99324f9cf6e8f26ac442b4f8c70d389fd08a826badd00b67", + "regex": "(?i)^https?\\:\\/\\/robloxcbrohacktrke\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c0e799557ff71708a7c973bad1c8ad223dae97b23d047b2be126c6ce9bcd9ee", + "regex": "(?i)^https?\\:\\/\\/robloxcbrohacktrke\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28bb5614dbdd6990ec834e0f12d5efe490a36f257fee14b042113a8c0521e86d", + "regex": "(?i)^https?\\:\\/\\/robloxcbrohacktrke\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5beac2ebace6b1580643d9f5a737531f81ed1d0f96be04dd9db818268eb9950", + "regex": "(?i)^https?\\:\\/\\/robloxcbrohacktrke\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df86752b97241c7d36cb62e618c34215438fb0df0bb75957de030e01ba0e8321", + "regex": "(?i)^https?\\:\\/\\/robloxcbrohacktrke\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84665d57352ca3cc61fbfe9d614dac79690e9689f9e23fc844618fe95b32714d", + "regex": "(?i)^https?\\:\\/\\/robloxcbrohacktrke\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f767b658ae7c4597f53fcbcb78a8c4cb47b88c01329ea929b929a32b10e3438", + "regex": "(?i)^https?\\:\\/\\/robloxcbrohacktrke\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ef8d60ea9ceb136f014f45990bcfd351592400018355dc09660c5344580593b", + "regex": "(?i)^https?\\:\\/\\/convierterobuxpararoblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3029be57ab244c49ee7ed73c3c07d66d6ad531750cffcba60dd4f5d16fb14ff3", + "regex": "(?i)^https?\\:\\/\\/convierterobuxpararoblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "265c189895c25fd07708ba11a3bb03059c7849d788f1915a4944b19029ccae33", + "regex": "(?i)^https?\\:\\/\\/convierterobuxpararoblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eee49d53d18734c48abcc17f1738af88ff5850065606a92675f6057e34894490", + "regex": "(?i)^https?\\:\\/\\/convierterobuxpararoblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe940927f67b6b2f4d4b3cea748a481494d888cb31111d5c24a1a82f622750a", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "943cb635c245a9f4b3d97a2bfe6dec05a6da04332dfe737db23dc730d83aca00", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7247256e7fd2837e12d0e9f0ed372da7752d53f6ea5abdd005bc808ff1134822", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cda377ea6622d0b511e5b2a799c6908201681d81c9e0366651b42b1214e1cb5", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2df34ed116821a7af0ea8a30a689a1a8a999c759f9e88fc0efe73db8797ab623", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27149059d06c907bbc9d360b3038baceb8c6f822b7001ec932db0c61a4e2206b", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "914f79b55aa8a3b2916e77496ff16d54d9559c02b3b33915da65935b0b39a24c", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9cafa325cbb4fc472f3031aecd0fc722831a812a19166c9ee99e14e9f411701", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed6cefc764e06e95e645f784a0085bd9a4190dfdf2130fbcb7b912534ee00e9a", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d09ea3ceed3db0d7ff71617dfcf4435ed09b8ac2fa2f095c224313c475acce2b", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "976eb9a96d92fd806649e6417e096829662e39a001889c1afa81a767bc1e2646", + "regex": "(?i)^https?\\:\\/\\/robloxapkhappymod\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9547f2c9b0d0f7ca783d28aeea0bb1dd8cd3230945ad46d53131c028f0ec597", + "regex": "." + }, + { + "hash": "7c3f06a0c2e3d9b5fb5c05d5993e1d498855a285c92d9400906d28b34f40b5fc", + "regex": "." + }, + { + "hash": "1379a92a5cd841fde197e866d70034ee0d9b1f9cfb79c63e0e7dce3b77928836", + "regex": "." + }, + { + "hash": "38c51e32803d569f4b201d79592d53d4f1ae7dd4f94caaa132fa817901bf24b9", + "regex": "." + }, + { + "hash": "493210d3fd3db7774648d32a45de13df80e1f8fc35cfc49babc0306533fd671a", + "regex": "." + }, + { + "hash": "c1094ac7429748dfbf10f8c4317335fd2f4eaa691125744d05d9c5bc520c75d1", + "regex": "." + }, + { + "hash": "07f49edf58e9999e9fae74257dc1144b0894d294b49ad95ca040c0f694f79aa6", + "regex": "(?i)^https?\\:\\/\\/unredeemedrobloxcards\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d42d4bebb311da83209ea65a6cd9da576b3b7214526f2887696dbbc59ce238", + "regex": "(?i)^https?\\:\\/\\/unredeemedrobloxcards\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed3018ad236b102efbc814b94f40c3f7c30f864786ba1826a83c05d6fae92da7", + "regex": "(?i)^https?\\:\\/\\/unredeemedrobloxcards\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d97895ed148c3a01c65c9d39bc3e943ce462c806a4fd04268d3758fd82657352", + "regex": "(?i)^https?\\:\\/\\/unredeemedrobloxcards\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1822d892ca7261dd2491c1da236a4d00c7f69c0512857e5fa2d4b0f67f48ca09", + "regex": "(?i)^https?\\:\\/\\/unredeemedrobloxcards\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73b3167b60eada9e8b660a709ff4db39afc67c6d8d81317be099fd3fb4d5ece9", + "regex": "(?i)^https?\\:\\/\\/unredeemedrobloxcards\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00e489898b455905ed81ec07e56dcf8e3add9b9861bbc884055fb44fae3f2c24", + "regex": "(?i)^https?\\:\\/\\/unredeemedrobloxcards\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4ce0239b1f891c110b05915b46f1ceba1053a42a18b7f7e0c305614036cd67a", + "regex": "(?i)^https?\\:\\/\\/unredeemedrobloxcards\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16694921dcd84b62a5c9a04cb30ee3b66303d7766ea86f91daa97fa3a0a019d6", + "regex": "(?i)^https?\\:\\/\\/unredeemedrobloxcards\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48247557666f125b8626f4a9fa589a10f626fd95c6f7fd3ec17e6f393cee8930", + "regex": "(?i)^https?\\:\\/\\/robloxanimationsongs\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b8ba510586c74f117e51220b3f7b942d1076ab82957f5c993630e3a94a188ed", + "regex": "(?i)^https?\\:\\/\\/robloxanimationsongs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53b0c675debcf49a6b158b061b89640ab80dbd762d877b9378b0b8d586abf4b5", + "regex": "(?i)^https?\\:\\/\\/robloxanimationsongs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08712c219cd570c764e73910e2f4e66e265a9786dc7cc84b80e89c8d262b1e3a", + "regex": "(?i)^https?\\:\\/\\/robloxanimationsongs\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eda5cf22fd770542153760e46892d0a230a2dfcd68219d2ebc9d6ef244f91d93", + "regex": "(?i)^https?\\:\\/\\/robloxanimationsongs\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0928c41f136996c6162a2862642697b64fde4d213bfa941de0f2b779d11476d6", + "regex": "(?i)^https?\\:\\/\\/freshredbaseballcaproblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05c1b664841363e341fcadbd1706d015b118437855ad241611f742088b7e5864", + "regex": "(?i)^https?\\:\\/\\/freshredbaseballcaproblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c339bd737e69a9363fefd35b0338b292046acb26e4893bc73c009cbbc15473a0", + "regex": "(?i)^https?\\:\\/\\/freshredbaseballcaproblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbd24ff87774c2dadbc84668365f0403a90a98d0b45cfa9526b731f5ebb75519", + "regex": "(?i)^https?\\:\\/\\/freshredbaseballcaproblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0750382a5000caab2834aa77be8d385a43aa1a4a8c2a87078022a34ef2afc91", + "regex": "(?i)^https?\\:\\/\\/freshredbaseballcaproblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b21c912927325302055f217d60a787931a1cd51bc06a6441b45737cbdc12184", + "regex": "(?i)^https?\\:\\/\\/freshredbaseballcaproblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7963783fe1084bdc89ef776d1ccb3732e0a93a161e084e6567570d758aebc301", + "regex": "(?i)^https?\\:\\/\\/freshredbaseballcaproblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4e1a6d9f5ea0c2329a4ab937ab19c426897adb71ff74f489dc5eef2ffaea7dd", + "regex": "(?i)^https?\\:\\/\\/freshredbaseballcaproblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af259c883d92dabbfe84892fb422c515a07459d30d93aed2575a474da97f5cd3", + "regex": "(?i)^https?\\:\\/\\/ncrrangerroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9235b204d76fb73de4d26f23855cb28b4b5ffcbe6f76158ad990888ed4f5a359", + "regex": "(?i)^https?\\:\\/\\/ncrrangerroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c86b3c28aa3abbbd07b7c9562c6e557bd5a35fa82263961d81eacb95c1117aaf", + "regex": "(?i)^https?\\:\\/\\/ncrrangerroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06a1ff04a19552cf4cfa1dd64966d1d39e6a782fefc1edce05a9bb41005a0f47", + "regex": "(?i)^https?\\:\\/\\/ncrrangerroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c3f8d214104dd96bba04b427f8b21e107da14beecfeec2148db6a702657915", + "regex": "(?i)^https?\\:\\/\\/ncrrangerroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cbb4c19d71cfc471ef8fbfe88c770bb1e6ec3549b6c3be3ffce7c2adf054959", + "regex": "(?i)^https?\\:\\/\\/ncrrangerroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e158e0c2961c1dc7120987d6c812fb3d1ce7c5c5081f1364ff376c9e5304d21", + "regex": "(?i)^https?\\:\\/\\/ncrrangerroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "772baa32324639d194e86ef770b73fcadf9ffd85d837a6a9dd50eb202ee553df", + "regex": "(?i)^https?\\:\\/\\/ncrrangerroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7515229ccafd6316ce259f1930846f857f2dae767df1861bef4b01af361c91dc", + "regex": "(?i)^https?\\:\\/\\/ncrrangerroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21a66fcca05b6cd07f443d27e9731321ac789b9e647143df5d248a3120043ccf", + "regex": "." + }, + { + "hash": "bcfd15104be4d3b8f08f3f91dbb7f6d048cf262325b0aa966d5a065a511a44fb", + "regex": "." + }, + { + "hash": "ecf1c9bff4388ae07086cc80bea470dcb570c10ca3bee35687a022112676cba0", + "regex": "." + }, + { + "hash": "9832e742206f10ef6b4731d0566f2742ccd3719c999bbc03d68070e82e1b77cc", + "regex": "." + }, + { + "hash": "8b24abf0d441771046bf2e9b042ef2aa74eebc5e0768ecef7df625152743ce8f", + "regex": "." + }, + { + "hash": "7f3fc268dc83238db13fbd994cf08346b30e27ee49cbcfc8c1651462473f160c", + "regex": "." + }, + { + "hash": "6fd8f27d20081a2df4ae60f5576edcc369a58a5e128305124d1aeb8203ea93e2", + "regex": "." + }, + { + "hash": "5b481a02e89b579df3ec464b52c3f3db3413b4b2906752e531411c3b61d8524f", + "regex": "." + }, + { + "hash": "5bde433cf69cb9be9d38af206a418d12b72df6f7e569b6f9185d7ce233b8235d", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxnowindow\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c6d30df000d02c04cd2acededf0b2d7673e31cb4842b2fef806f7229280679a", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxnowindow\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ab304836d1927a90fa75fbe8f5ab2d59810b4998a40aa731a0ed0103c1b64c", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxnowindow\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "392882e7f2aba6c6a657c7cda4f5c13e28bf572d93362cbed77026cdb26ee5a3", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxnowindow\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9fba88e7dec1d65a9ba149fcaed6c1c8534a6f717ca436c0857c909767ca8a4", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxnowindow\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f19f71109d4f6da5be005b71b9f357beb0cf72b1819f09afcce813c4f83986b", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxnowindow\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b22ccf14c901a5c73fd7e22a6f008044aa1c228c23efa0619a6b34fe8f28357e", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxnowindow\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b7cb998f82dcdcd11f4323f901863f007c47a931b97f891f0b58267bc2697f8", + "regex": "(?i)^https?\\:\\/\\/comocolocararoupanorobloxsemrobux\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28de649b46e525d7b99214868a76c60417f6ef0ffca633dba5d73ad20cf0d9e9", + "regex": "(?i)^https?\\:\\/\\/comocolocararoupanorobloxsemrobux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7651b5ab52be39d1716fcf8de71f58e360281324ed78ef091fc2922983298a50", + "regex": "(?i)^https?\\:\\/\\/nhldecalroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a094f09e801015cd1c6848bc56b9f256285cfc1c4ab5e19addfb7df94df564f3", + "regex": "(?i)^https?\\:\\/\\/comocolocararoupanorobloxsemrobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d81b5df54ba7f3dc812e8cdcd86ddf8774f2a754fec34b510a339c59baf662", + "regex": "(?i)^https?\\:\\/\\/comocolocararoupanorobloxsemrobux\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "482ac66d2ca7082b2ff57f9f0df4f4733adbe1fc3bc8489e91d937f74366bb6c", + "regex": "(?i)^https?\\:\\/\\/comocolocararoupanorobloxsemrobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9190153fe13b145d67be26a2d0aae7bcb8ea0eb18e5947b3b2ee3a1bec103c1f", + "regex": "(?i)^https?\\:\\/\\/comocolocararoupanorobloxsemrobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "111e08ebbf7e7603ffd7fde514a8e07687fdbd34d802685521f4e3e1f96a6a48", + "regex": "(?i)^https?\\:\\/\\/comocolocararoupanorobloxsemrobux\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b82f800f60c798022a200e7e954841fba6dc651e8a29e5ef6969312ec2c6b231", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f43b09fae2601e226a2c1c8256bf0c4a68401939a53cb1696bac981c04157b18", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ec96a37892e9be0ab297699ee2dd3ef42bb97182e8b2ae9fc2ffad7a6b9aec1", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ac58238e02e90335e625ebaa95c341737d7b5677d65e13dcc88535621c0ca5d", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fce08980df455da48cf086805f624d961e5119180d416ae820620ed8c18e3c", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "642bd2ddfbb73362ed156df1a8843b70f103cd163db8ae8a61ab0d5493775259", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "995f1f349db91435108c76ae416efd77f42cbe0664a2df225daa94c0d7782e72", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b6231215e1d6ccf226a9b473b07b948bd8f0116b1ffd411a21081444e363232", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64d13a6103f7ac7ea1c6e6cdf839c896c3284b8a273e03e71db51a56b8bf2df2", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "064e8afa74bc4ee568f930e074e20934bc2cd7734ae6dc5f94e1dcd9139131e0", + "regex": "(?i)^https?\\:\\/\\/itsfreerobloxshirt\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81500deaa004df6f1e78e8ad828f1202c220b7f7ca3cd7a58524fc12372ca20c", + "regex": "(?i)^https?\\:\\/\\/howtobespongebobinrobloxfree\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18aa06e909797ad91830fc5f1df62ea9ac106fcdd6b8203462ff94ab41a4b1cc", + "regex": "(?i)^https?\\:\\/\\/howtobespongebobinrobloxfree\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06dff216a0084547b0bd4770e242e63144f5aa2064b825946865801138615c76", + "regex": "(?i)^https?\\:\\/\\/howtobespongebobinrobloxfree\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d0fe5ebdce6973cf39d00abf7c9df43b10d2e949fc2b762ce8b4ca3b4baf793", + "regex": "(?i)^https?\\:\\/\\/howtobespongebobinrobloxfree\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e06a085b38c0da69732cba55d1678b6f4f35edf805281ce56db73733d309847b", + "regex": "(?i)^https?\\:\\/\\/howtobespongebobinrobloxfree\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9bb54a38e293a5145c0acc27b17e663b343b64635a409caaec676475f9e4726e", + "regex": "(?i)^https?\\:\\/\\/howtobespongebobinrobloxfree\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "718108036a1c51bf6f6b9e81d2ce7e6a6c22a092ba81b949c11c8b262e8fc00d", + "regex": "(?i)^https?\\:\\/\\/howtobespongebobinrobloxfree\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7fbda2e7673311459c8d44f2251e7a0fd064651f226dd88eec1db046e90a20", + "regex": "(?i)^https?\\:\\/\\/howtobespongebobinrobloxfree\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ef46f1e9a32b33842d1b8843b6bd1f3af5bf4709ec8834c5398ca75e21cc97a", + "regex": "(?i)^https?\\:\\/\\/earnrobuxbyplayingroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6c2a7db13b275aee00a0f8fb4a8c4ae4f71c79fde3a46f6d214f555ae056064", + "regex": "(?i)^https?\\:\\/\\/earnrobuxbyplayingroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b313d707cdb3dd0cc60232c8ab8cf8ff0ee647bf356ebe8d591557421afd592c", + "regex": "(?i)^https?\\:\\/\\/earnrobuxbyplayingroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3aa8562d880ae421c0c82b566105bbd68257076c5b6257e724c28c1263ec4da", + "regex": "(?i)^https?\\:\\/\\/earnrobuxbyplayingroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4141984317bebfc147a9f540d5addcb16bfc19ad181c3fb10fd428ea3e63853b", + "regex": "(?i)^https?\\:\\/\\/earnrobuxbyplayingroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0d2da4a8fcb62968044da9fc5848278c2525e7dcde4e31ef77a5663fbd42b74", + "regex": "(?i)^https?\\:\\/\\/earnrobuxbyplayingroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17ae208550781d2fa6b304a8612b24a75fdc13630e368271ff27b86b7ba1d468", + "regex": "(?i)^https?\\:\\/\\/earnrobuxbyplayingroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85eb26883f886c946bfff93cc8a8421131c3b5fde16b89e101d263bd9b56d563", + "regex": "(?i)^https?\\:\\/\\/earnrobuxbyplayingroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a55ce14692cc5f542386caebe85ab2af33ad7bca885cba86974675a6244feacd", + "regex": "." + }, + { + "hash": "8ba1dd65c7f6c8ce5ab90c0756273992efa902417a724f340c424f402f802587", + "regex": "." + }, + { + "hash": "f18bc1ada07e6978d6f6cd166af5dc0bded742ae1a9eae85333d2bc904019c5b", + "regex": "." + }, + { + "hash": "f479aa7094065434fcb3cc5fddaf07f0a6ff6db4c2dd6f912582d6af5cc590cc", + "regex": "." + }, + { + "hash": "fc8b6138f243aea51d7de67a5c68f49717925f58344d1705799896c585f20cfa", + "regex": "." + }, + { + "hash": "c77a3321faae686d33e3d72054dc4a6fbfeb7343ca2b99dce6534d5bf3bbf954", + "regex": "." + }, + { + "hash": "63743b5e1d0e90f164c78f77611a31257f989c0b5504b20e7b16e8449961d8ce", + "regex": "." + }, + { + "hash": "77d95aada85936820099b9c459490a5a9f00d1b6ff09fee87657b8f8e52bc0a3", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43fb6c1735a220d2b8270fba7ec8baba8051498de19fd3eb89e1855fc0abf36c", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "046401e9f4d3c9b2c31d446166c633fa7b373a9a9ffc62f2ae8c8a921c211154", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4ace00051ad6a22c9d0a2569e4ad144bbc5d92728d5f403e26221d23e8b437e", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94113d1b7c114ac9fe312cc2ca1d28ce2e334e00ec6744bcfd10979f6c4b363a", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02a4e4beda98dab2613338d9b4426aff5c061ed031cae6a19303d6ba7d6e0835", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0435b4b0c449a06d9091389dcd2cd7665a87486abc57a94d658ad0254a6b34d", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4f948bc662b8e166f76d752e2e54ec55df032518859e137a0e4e9846eaadc77", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5994c92a50c81bc8449bf472fc6a95860cca2e137df4b47c39a1c1ad1647486f", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80e03bee0b6428a210bc997e263654c22ca32f9ad3cdb11c70f6db722c126095", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d9a16972cabf8e9eef1685e14f2f4b1cba758200ce02dd05485756f830856f6", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb7db0ea64a5972e64e71121a11def462cb53b8c321916116d15b74f72d0af6e", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04c340cfe0a2429ddd7c192aadd9028185bc438e295d8bd3aab7aba064ae3b5d", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe41b8c3c3326ac95b309b90539dbe1493ef762a12dede3341f6265ce34fa92f", + "regex": "(?i)^https?\\:\\/\\/robloxstrucidnewcodes\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "970c904b5fa66900a35b7f2416f93f8463bb036f09e76464cde8043c5a4304d6", + "regex": "(?i)^https?\\:\\/\\/nhldecalroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "282471731ace620ebf75e70d03c7239d469e2053a07f55b0b38f299c71b8faab", + "regex": "(?i)^https?\\:\\/\\/nhldecalroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ca49f3a273a3991dbe42234e7c0b9984337ffc3eaebed0861f9025d12b928d0", + "regex": "(?i)^https?\\:\\/\\/nhldecalroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcd58662450a9dbede816990a3f9f92d841460436acad24330389562f1c97b85", + "regex": "(?i)^https?\\:\\/\\/nhldecalroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ba2ce124db896265fab529ea5e2c4b303d78485b10432c5a66e8b87d7689730", + "regex": "(?i)^https?\\:\\/\\/nhldecalroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fb27e129e35b7c12b4f7caf39818a44eaabf9beafe4de69d1ebf21d0a2003e9", + "regex": "(?i)^https?\\:\\/\\/nhldecalroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "134435e30a24577f6aefa5ec054dd375c6e603f505116e3c6b4a44d09dc96a16", + "regex": "(?i)^https?\\:\\/\\/codesdegiftcarsrobloxparacanjearrobux\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c3420f9d85e96ed0663f00beedaecf328313417bbb9a426908a60bf57bebae3", + "regex": "(?i)^https?\\:\\/\\/codesdegiftcarsrobloxparacanjearrobux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "170a78aa12368ab3f11f917249f1af3750256e3c6f5491eb7ae786dbc2efc99c", + "regex": "(?i)^https?\\:\\/\\/codesdegiftcarsrobloxparacanjearrobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cab6bb89104a0d5b4a01202f117a0aaa853f25ed1da11e1b4917076c51c1120e", + "regex": "(?i)^https?\\:\\/\\/codesdegiftcarsrobloxparacanjearrobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fabb8c5534a8baa7170c7bbba4ae562d1bf68aaec45f92f417e1d2c8aacf384", + "regex": "(?i)^https?\\:\\/\\/codesdegiftcarsrobloxparacanjearrobux\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e58482ab49ac3ea658ca9e7b2b91b9326c964fe7fb4edf8995c7da4ac2af5049", + "regex": "(?i)^https?\\:\\/\\/codesdegiftcarsrobloxparacanjearrobux\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eff6081a7bf86c431d4c811f96d288d4e84b9867114d7f28adbe55ff7a61d253", + "regex": "(?i)^https?\\:\\/\\/codesdegiftcarsrobloxparacanjearrobux\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "507d68e4cac64327fcf70ffbd208edd9c8d29b766e9eaaa4981891a3e3b9b827", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdb0f34418e57d224fba11507b656c4320b9c32f04631e295ec3df9d5039cbaa", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0772201a1ecb95ed3247d65a5da88eeb68a4d9c0767f48cd8b4c1391da44ed38", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ab26f7ea6c6de7e9dca3d1cb7bea56cdfa94666c9dcca2e2640f026893d7e4f", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4465041e89bca959b180984299e1ee5462269b018718463036a888f9fb1ced89", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97474ec7936cd9f995bff7603a650dd39633016a8db2b16939eadcb19e17ff4c", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55d883117f0c7b66834caf3fdba6f3c8b95ee82c19e05d4aef25b7fdfbacc771", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8627e9c14022a0cf43314eaf47984485abd2ec25cbd3bc2bdef0888baa7270b", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "daa097a209a2ab2bdbb32acfd85b43addbe0f8250dd1a970fac28949e2ce9164", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eb366b5d94de797a8faf75a15be5b597d0de85af32814ae80e1d732a9498fb7", + "regex": "(?i)^https?\\:\\/\\/jogomeepcitynorobloxjogar\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c2814269213f9d35bd6c19b270543d3e69002be38318968bc699dfb493b7718", + "regex": "(?i)^https?\\:\\/\\/roblox1mrobuxhackjan21\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "621ffa3a6e8134b4dc89e6001a65d7165a0e6c25ed73ff9b560fd694357ca7a7", + "regex": "(?i)^https?\\:\\/\\/roblox1mrobuxhackjan21\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed0ba8e0f641fc643a1178d0bfdf796edb056be1d666659daf17f7982621c8e5", + "regex": "(?i)^https?\\:\\/\\/roblox1mrobuxhackjan21\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0973df9272b78844afe11d9eb114ed41b83c9f2fa0936aee954199ccbf88e030", + "regex": "(?i)^https?\\:\\/\\/roblox1mrobuxhackjan21\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd1383aedd85e7d68ef9ee8d91ab88c07552ade75775230b8e8d33c714889db9", + "regex": "(?i)^https?\\:\\/\\/roblox1mrobuxhackjan21\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7541e369da4de12a504ec9869c6f585ed3d255b43ccf64aa5a56a531ca12665", + "regex": "(?i)^https?\\:\\/\\/roblox1mrobuxhackjan21\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b306974170542d7ed2266f89327d8b5303a69bfd08d2ffec9c084e86c5884b6", + "regex": "(?i)^https?\\:\\/\\/roblox1mrobuxhackjan21\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f3b4eb615c8c85f90fe0dad28516caf3dfdca7b5cf5769e005a3045c56eb970", + "regex": "(?i)^https?\\:\\/\\/roblox1mrobuxhackjan21\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7946d03f9133d64d131873e3f984439ebfdf3d932613495068c31bc425ae7e0", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "520e94db02c2aade0047b81696023a19a692cbf0fc936bacf8a180f2daa1b4dd", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25e10b96a489795b70c4d73e0451a03614e86803acab0505cde19701f1e09ff1", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "476159aacfbf2bae7884f0648e6c04c879d08206210d33f3e279acd5fbf6f0b9", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3866170bd1842165d5db6b6d445121b2b45d45a64fe4a34b8a159ed43f7fe214", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80d97a2590003645fab2b1c11484985148f93fe7db376c774afe9d93c67722b6", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44124a9f4c5ea4cf8bf1b2e1ad17e25b11a1f372809c08aeb11840674eec8a36", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36d7d179c2afe9a4817226b1857c6f4ce9aa6dd6f004493ada06437ba4f98ed3", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb46664794a95dc96b85cf4fd5d6bf6b574ded68a2ee3a8ca36b9be9844f8ccb", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658dbab9ddf6e87bdf5ea587be845801e124fa09026e8c004dd3fd6731396ad9", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c6cb81dfd6dd5b282e7d2df9e557ef5210d172c348aee7602a8b430f90acc4e", + "regex": "(?i)^https?\\:\\/\\/esegurocomporarrobuxnoroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "644d3c0817f37f9b60b10ff138f736842ee020ad19f6a9030e2a2b7ea5dde200", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca300b0d73b7820751aee86d40e6f34848e859bf62515a9461cd12cf074520eb", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f7a65bc0325459f7ebf8a4ea669b1dbd951d371a8409dc9d2d804dd82677975", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7645f8bc043c8c498178b53a03685c1f1a9ceb5222554df6e5ceb39e6f78d8b1", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c34a88e3c3e12a28e66e04fae50daeed6b2d73a8906a455c655f36261f90fb7", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8fdbc75d042bdbe7a4a50a60918e7397e126b14f836e0421bdcd8a95c5ee4bc", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8acd7dd593268c3757e7edd0cd7b423ab03e16263a46ae7bb80745c0a4f37614", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d80a0b7476f60202031ca972fc8fcf66acc71d528773cb1e404126fb55f1ba3", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecf1a6c98f175654e4bea151fbf2300d82a184c10f1837a9e1756ba3598064d9", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1aa5ef27bedab6f6df2435fdf6352dc823682783cf13f1fd583ad1dfb635fdf8", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb256a5d1345d9f1913783b60d2c7b8d6a2d6509e0f0b3fa50e1b67398eeca04", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxnopccomcontroledopsvit\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4dd23425f948e38bda3e51c4106e458ba8006cbff55d5bcb87e7f935c4d1556", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8d1622fb50b2979115110e22d054058197703414608c9419ec949f195971196", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f421482d032bed76101c9e543c679ce6e927ecdf32d68fec6d110852bc9b48f9", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fef364676a9e05a45aacd44794bca66863298d39f0f26bf1bea49de1b8ad3a48", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5e3b0fe3f69e6903e1d65fa6d2dc104d0c1eb5abb64747b4a2429418fcb842b", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a370373ce5fb8631c6e67acecf4a68a857e61b2e97efd39c051808d980770f9", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5941878ec7aeae642b3c724e8c01eb6c9edd20fe296a40838494b82638bb43b4", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a0444f46bf6cdd8610e1cb02681002c2710027dca65cd2768db91f6ad89b9ae", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6af2d4efaa9f024029a037a9666727e271cdbc14c592a81d99730d6cc151c7a", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3f6ad98eea8b23550e84c888574827f3e62099ad4f06c7086329791586ac88c", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c661a998235025f2f3d264b3d9363fc0e40a3acca10bf306d71c18a81c45402a", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoredeemcodesfromtoys\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdf3111e4a5c5af8cdd90d82a74fc7e20c7e8979f37219d57325fd9efb669f4", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1f55b76e84bc8df17918def8a89468d839e0f2bbd79da0c5867143196005bad", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f8271bdcd56bf00fcb34d95c73273d19a88a3ae9a1eed1e886ca9c49f728bc5", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dea95d15c97e251de1f95e78a3dccd202c707eacaae38de417b150a3044085f9", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0c91326026a94c7d92f6ee3856e0cfae22d8163809e1fd66c97572600a9ec9e", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26e6f240d6196143817e45cdcb6d0814ee4097cd80582863e0493b85da50ae94", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4507896255da68571de7410a555b80eb96fd27c93e1aea6aa1f9a42997ef224", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa6fcefd8f8fbf3284729b1db30becdd3cc89b2333208083ffc2c1ff926469e0", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3c2ff002accc7f90b4ffc4333e06f8fb7c39bdd5d9d4bae83a4d25ce70dbb0a", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "047e5807f0af0d6a8f03fa1a7e74791e0d192dc669f8fc56bdcd8294416ffb2c", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a49180b13b15c4c78233ef57d9ddeeb1fc9fe5f3e5e6f64412d8de1e77e86bea", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56905f8187ac79462879b30c0e186056c9e48d9f5e308eefd77f44f151ea5d1a", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "300bfb9493451271d0dcfdd1a6e6d2fe6728e20cb6d12b5125c80ee5ff514c75", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44ecd5acfa63215561cb4b26ee9573ec4026f0f1f4696212bb9cbb27f00a4373", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a392744f3a9a4e8dc607c7908f4cf07fc0b118822b3de87f92ad271cef0721c2", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d35f613e7bc30c214f6dad04bdfad9eb4be5a229b093fbd88df73890fec8e26e", + "regex": "(?i)^https?\\:\\/\\/bloxwatchjogodehorrordoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0945d533cff2e995d7d8502594723f26dfe9454fd9e65ff0aed006a433666182", + "regex": "(?i)^https?\\:\\/\\/blondehairrobloxfree\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46fd8decdb7ea68a856899caa100f746ca25adffa3231707f5f7922faef7d2c0", + "regex": "(?i)^https?\\:\\/\\/blondehairrobloxfree\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c26bdc35e9928332cde85cc9367fe8c4e34ccc0bd909449486f378067a1c6e34", + "regex": "(?i)^https?\\:\\/\\/blondehairrobloxfree\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3b39da4a4042268a3fcd4fda0d729bfc0e804ce0931185b2c4ab18c4b48141a", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "706d2f0057bc75a0a9892d830dd4708d8877ad95436ce775f4d0c8b1ed939ae6", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12518d51ede6dc83170f9ca06d08ba38a383d4b6cb4c8ba798cdfd2aac06f0ae", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f58fe502f5b24ea8a3ee67bc669fc413b4104fab4d96c6cd2659186d2b838e2", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c381927328796224947e8b924d9e4dc1b525cf5d150e436cb38742354bfbf15", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e818b792ef3a650e4b6b6b258f5193989719be71fddabe4ae92c83f44f6d1c5a", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29e5e721c94d860c45f69b9f74eb5b40fd0329c5994cd11ee3a92548f0044132", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06627d7bdd0fdb950b24d597bed91588c8badc5b919ad0b51471c0dd41f3fae4", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d85f918b8f395d5a216e8b09c57108d4dbb0494e6380a7b6c9ff486cab4dd8c", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb8d1c43408b8b37bdea01fdf8962a42eccd185f65a96def2746b6bf9e60f0e7", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a4d002a94c0d2055bafe4f1bae61e766cc43258a5e322ba8bbd2b37630ae4f0", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52465430029ea93814bccde096586252236d22abba2e8e58c405b5feb1c84cf8", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f97bc53ea180deb2f8333a7d4e0ba660c8220f36e763a6a1eb0cab7e5563ef79", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80589bbf6f25d2206b0ed15f64e590d4c6ce7eed8c41f1b362f2a6921ed9d7c9", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a247326bef0db79ec5d5cddfccafae02d13ee0e457280175938550fddabfc14", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b621a7e0e8031178ac83c2f014e8a62f4494876ed47d97e63df2844d4fb73cd", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90e143d11a27d21513edd8491faababe3bedbb463282f38942c6c6dd03f1f8fc", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd0e7e6cb942bd50f682e29df32f11bf34e76f7e361540c106c8ad4c088412b1", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adec211c99c2dd95c01b218ce278edf31d12cbced2bfa7caa3b104136c9f01a5", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecebbc95d398ef73cee7ecd5ac25586e510ea8158e5cb7cfa106f5e6a22c3a3c", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6f10001c7b01f49ad51fab077ac4d0bf068a5b1ca8cd71ab9cb650763100ad0", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2016b3eac08f06be4338650fb2796ac4e504c7b520c866bf2221d5712cc6ae7e", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa65a3f86cddcd691d1bb7fb2b73021bbe82108aaf2359e46dca07fe0017d18e", + "regex": "(?i)^https?\\:\\/\\/comocriarumacontaparajogarroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c60a840d4982e2c139d50c7736fb06da31564f75cdc5c0f20404ecf6b3ed424f", + "regex": "(?i)^https?\\:\\/\\/jogodehackernoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31608ff9fe368ff6af3df9ab26bddf2c727665360766cb1fa5a4e32d95129d0f", + "regex": "(?i)^https?\\:\\/\\/jogodehackernoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a8c28f270802e45eb79d627161f7f8098c945ef8ac1c4316177e5ede64d93a5", + "regex": "(?i)^https?\\:\\/\\/jogodehackernoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13d2ecba18fcfc8117c4ac5edb2f874c265cb00baa8f9272978aa49ffe9ee46a", + "regex": "(?i)^https?\\:\\/\\/jogodehackernoroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "783872d8968b0b7b2972550b01b78426a791a4b93bed2f79ff1ec57775934511", + "regex": "(?i)^https?\\:\\/\\/jogodehackernoroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89a7f5b5170b86446acd7a2a58a1fe363d08a1588ec0fc241a5986ce48d065d7", + "regex": "(?i)^https?\\:\\/\\/jogodehackernoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be776c6e41fcc1d53b6464df9364e7f39545919042e774331df62cd4723510ee", + "regex": "(?i)^https?\\:\\/\\/jogodehackernoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bd36f62994568ff0ff170d78397d832b3c1b46a69fbd81b94b6df6b53529bbc", + "regex": "(?i)^https?\\:\\/\\/jogodehackernoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "172ebe190ed7a6ad36eec9e2bf251a0e08b88435121f520e99df74fe8d42a878", + "regex": "(?i)^https?\\:\\/\\/jogodehackernoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ea6ffa53ddede02d84b8f40fef4b128ea8f1676fe9b7a3ae14b671d01c6fbf3", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75f1d217f3e9a7d75072c899d2c1874b504fcda87fb735f4c2c6a8aa9bcbd12", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd472506c9bfc7a20fcde7d9d1c023afccab2488ee4dc17df1598b89d625c1ba", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9afc04f3aaaf152145137bc0edcdc02e33d453337be185ec376e6b495cd0214e", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65e78b6524ed53a70fb33223d66a845ecfbd63c0fa0dd71bbb0af1d71c228555", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74edf11d1b4df66ce74bdc380b45534a449eb89c50915fb0872b6640a6d9dcee", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59215c95efcb5b48ebefb01e740cfb2112a359bc4c130e70853f45c6551e3014", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2f3f03e93f7aeca193fec5720de688f525b37f5319a1fad3e8f188d98cb052a", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35441d7025736f7bfbf50462820b94fb453aeb9d83b1f770b4b5bbbd2999fa9b", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3196faed09ea3e6896e3ee886b2435bb317940e53d9b73c9585bed5d2d4d9e11", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfb9040554fa7af40bc2c309686d36331e3af426e4b670b9ac78f1b603295bd1", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d42cd4dfd49be1d17f0431d57cc39d9157b2b418afecbb08df2a38d73a679b3", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af87c23af9ffb3200a17d3b4fdbc68f7f689756b59c4c52ea15c30f76c9a50fc", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581cac1ae2bd24388d88fabaa1babf4914e333cb78ee187784f83a8f0bad92c0", + "regex": "(?i)^https?\\:\\/\\/comogravarrobloxeoutrosjogos\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ee009409f40a939654417d5c8028917edb386551e36feca23a9a39f8bbc6766", + "regex": "(?i)^https?\\:\\/\\/howtohackonrobloxplatesoffatescript\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7031b065f8a42bbe69e0befb946b1c4a43baa170bff2900e60bdb02700032624", + "regex": "(?i)^https?\\:\\/\\/howtohackonrobloxplatesoffatescript\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47953d7eb85f81f99625e3f72c6ee6ee590be8abafd9d3acc97ebed73173092b", + "regex": "(?i)^https?\\:\\/\\/howtohackonrobloxplatesoffatescript\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae479257ad75522f72681b9786d7ca1dd046c4ee395096dc237d431cf2cc1a96", + "regex": "(?i)^https?\\:\\/\\/howtohackonrobloxplatesoffatescript\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a83b10c82ac873d2e2aae68f63ef2e5c944324aa7dfcf7779718dc98469e15bb", + "regex": "(?i)^https?\\:\\/\\/howtohackonrobloxplatesoffatescript\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd7e496e0229c43ec1a6ef65140ac90ad1bb9d4876f7556d9fb564397eae5721", + "regex": "(?i)^https?\\:\\/\\/howtohackonrobloxplatesoffatescript\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d30ae9a8351d9f419d7d386fc39a6e962731cbb07288399db675491731d9e1c", + "regex": "(?i)^https?\\:\\/\\/howtohackonrobloxplatesoffatescript\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da7048272cb1316f4ee30b96d3168101db7ef268071c546284714c007af5a73", + "regex": "(?i)^https?\\:\\/\\/howtohackonrobloxplatesoffatescript\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e068ea2f5f79b2b1e19724c82579a805d0e8c14f13c32d02ab30bd1142b028d", + "regex": "(?i)^https?\\:\\/\\/howtohackonrobloxplatesoffatescript\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b16798cd0738c7597171541fa7b7d4df6fd037245ac4827866562a07467d95c", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d338dfb6ffe55234c8104f81b959240cee305633965847663fec0ca3161f897", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba84873466c0b2489cdb0bd9a7baf524e6de873ff1b6ab77c50257a89d80bcf6", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackv3rmillion\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9fec994fe2e0f4cc0bbb2f1b7dadfc2dc7b512d9f93572b403c101f6714119a", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackv3rmillion\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23b7713b9b15690b4410a4fe632f629f55da53f46e401be12dc4a4aa4a1fe86f", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackv3rmillion\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b4f8b251b778ec0c0dbc8237d30abec6382ea772d5535e2345b5bfd781aa4b4", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackv3rmillion\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e221c5b5d38d5767d1fd584e5c97e35b43953274f78d5db834e7b71cb49edb2", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackv3rmillion\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc306fbb0fc0234f73e3dd68a5fb1b960e386b0addf6c564903414a31d55f239", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackv3rmillion\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f58b45c39c4591894b623ff7686cc8d19c1a4b9d4e0e811cef60a58e097742d", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackv3rmillion\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb3a431304219615da9ca5a352bb8b9a26070c75a6d9e4e159ef5c5c269665ef", + "regex": "(?i)^https?\\:\\/\\/robloxekilirobuxcanl\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "445214a78c0373803ae6f485a6bf174b2cbf6b5b0f84b5ed40a5e4a2aa71375a", + "regex": "(?i)^https?\\:\\/\\/robloxekilirobuxcanl\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b6ee4902db17e6fd901be4ef0446954e1ff2966d80d4be079a0d4a8091aed4", + "regex": "(?i)^https?\\:\\/\\/robloxekilirobuxcanl\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b25b611b37059a545fe9cd895a8bb59480db8202d4195d16fd319cc08101ee", + "regex": "(?i)^https?\\:\\/\\/robloxekilirobuxcanl\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "334bac6644410f4cbd8aba3998ad74f7a4bfeaf184bd8a0340010efede7453e8", + "regex": "(?i)^https?\\:\\/\\/robloxekilirobuxcanl\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d93909b8a8c435217b45ce96c49b6289587a5f71f418d9d77a21f43dc3c8fcb", + "regex": "(?i)^https?\\:\\/\\/robloxekilirobuxcanl\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "055dcb9716a033b7993f9cede8a38f27c44e1904823a48e3b607bdc0d7be07e8", + "regex": "(?i)^https?\\:\\/\\/robloxekilirobuxcanl\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88abc34eac3d78194dcf4e9283de730c90f88fc56b5a8f405c4da7f697b073ca", + "regex": "(?i)^https?\\:\\/\\/robloxekilirobuxcanl\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "258a88cbde7ab991842f9d47a3b5bc6296f8564d4d61f25129743672699caa23", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxwindows10\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c17ea836e268afa93a62b9ad4244d482d2b2078d365b0510c502db21ff350fd", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxwindows10\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f46890800ea7b794f87d2fef79880404b03a3bf312be6a43169604a1737f8525", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxwindows10\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17c531da2767f6cd1e774a1913869bbf583e8feb91392c4735c7d8ad4bdab2ae", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxwindows10\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a9de7b4682be458fbe5c1b8f82ebe25d91efcf36e48d688316b5f9f6e488b46", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxwindows10\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a2f498b61886d4c2e14dc80e55c1c410d83ceba85488a12d61815fbdeda3f2", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxwindows10\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a92354d354f8413efe7024fed118fa9d9840e695af6b52ae829664c749c4a58b", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxwindows10\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70ae5280477d7e1e862108b87a0eabd2fa3fbbbb373237129b248126ffa081f8", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxwindows10\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1ea0452f77e464bcc173f774b121ac529869557bd10d4b10ac6be9fef3b195b", + "regex": "." + }, + { + "hash": "e6e119adb3d1733230f78d6218032a26f52ef18ecbc14ad68ce77d8075398606", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7abec4001a2c900ff96606733347a54fda99af58c58bdab888266d74a9e0e8f7", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50006188187e79ce6a6b22ba51a859803b8ced5a439503e7321523ab267683f9", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56e5100b991844e3fb09d23e08aa78fdcac34166552e5f91606f42175d659d23", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e59836ca5ee3ede7e59d6063b2c8cfe4fdeccf0fc9154a8f393471dc4a047204", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68768d12b703cc6752dadc6bfde99ede6017e9ab93016c5b0b493ca8ac5ea83f", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d306179513b3f2b3f30870fbe6eff87c15045631b45dea57c974bb0a7815a935", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea727eddb89024d67c33cb3731bb2ec0362cca0cde51c63dfa2ef208195c35b7", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e4afff6e8fd48399a30a162c2fd60f3e983262b17d2b27dad7386b8108a2a29", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8e4f1880900af1002a05006fb50b573dfdbdb3d9c196b7585253faf6c97b01c", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d1652926b4fedf2e2716b8d8e4ebf295100a3dba828cf4dd0841fc8648b1d9c", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cf39ba58108d20dbf27f773597cfcfc9e6638b65bb2e3c2894b7a26a8ce9b37", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e514839f39c9ed826f16e87bdd0dc7662dfa384cebce8d0c8467b5e2ef124df", + "regex": "(?i)^https?\\:\\/\\/jogododragonballzfighterzroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa3a64e01b09f720ebf6f62896849dd9550340c062ff5394a4f747c82be6245b", + "regex": "(?i)^https?\\:\\/\\/robloxonepunchmanunleashedlevelhack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dee203c80e1584fcebd63c8114772e387e02817c019aa352c2686a0206f9bb2f", + "regex": "(?i)^https?\\:\\/\\/robloxonepunchmanunleashedlevelhack\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f489484e93020dd04340ca00e9b3ac89651ed13f3a34496cab5b9918a75c635", + "regex": "(?i)^https?\\:\\/\\/robloxonepunchmanunleashedlevelhack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61ea669a9e5b1730d3b3b54371861b04e1dd546e5dcb6b2e1c0e1868060ed6b4", + "regex": "(?i)^https?\\:\\/\\/robloxonepunchmanunleashedlevelhack\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd298e427fa17a14f2c0ed77594b36937cffdc4a14567cc068514fc8cc7f3fe5", + "regex": "(?i)^https?\\:\\/\\/robloxonepunchmanunleashedlevelhack\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d83f1429df800b050f44bc9c322ec169c077d5beb1cbee9f2e3fe2fcf3beab0", + "regex": "(?i)^https?\\:\\/\\/robloxapirateslifemoneyhack\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e855846b3bb1f367ca9be37659424b59562a3de1609f826391ed5edaa201f3fc", + "regex": "(?i)^https?\\:\\/\\/robloxapirateslifemoneyhack\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1302257ce426ea473b8bc046e002dcb6d463a51172d273bad7e4bc9569f56c19", + "regex": "(?i)^https?\\:\\/\\/robloxapirateslifemoneyhack\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2cdbff2122d119f2f22d4a36eee8db38b5f77f58bc832d631c7cfc29468537", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "032aba612fbecfe522fd8e2f199bcac7035e1f4443e8a087c85b70166ce8a979", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c4092ef3814f238c69da1c84c5d4ca3f0807805bb558b9a2ee2cfc0f4b48769", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1bcb0029b097ca8894300c88f3d08d2d6044cbff1248548c9c3ed94091fb092", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eba9756b745cb5f42d4d975f9d80a81d8938a352ea1df729b9162f0c8cda6744", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6481d17f46504f550da1551d3b3baaec38740110fed5fab1d3c2bdd1586680c", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c891a537448d50e6a8d388937f77bc510c0b93449d15a61cb174ed1ddb6f3c70", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e2706e9b7f41504ea66a7b27ca7b474394a8f93cc7dad5f30917883f512871", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac4f658199a94e34fca965b2ea2f7d62b502b042bf5d7da774538e05d4c9fbd5", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8f85f9631ac85099f6f4d1b13cf9854da0448f75a4e9207bab79764ba1f74fe", + "regex": "(?i)^https?\\:\\/\\/robloxbaseraidercodes\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da13f160c38773489091088947d347bd70496accad8a44b8efdf78e436eac4d1", + "regex": "(?i)^https?\\:\\/\\/robloxingamevaluehack\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "737b500b5ddbbb20d26b3c9d3b4448ad6065fa64fb883b866647f7786b37d435", + "regex": "(?i)^https?\\:\\/\\/robloxingamevaluehack\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adfd0b624166a9be3871027a4125bb6562c63888a6238f603745db5633c5bbe1", + "regex": "(?i)^https?\\:\\/\\/robloxingamevaluehack\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d349368d1e5510c3dd28a3b9bd462f2c20a28521a426d78d87ca1245312d5369", + "regex": "(?i)^https?\\:\\/\\/robloxingamevaluehack\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e72163501f6fd605ad340e947abdca12508ba61ec1ac30d7da3cbd8cc18e318e", + "regex": "(?i)^https?\\:\\/\\/robloxhowdownloadfreerobux2021\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c2f3e909640e1ece0da12be723df46f08c722c0e2a064ee5d208b0bdf24129", + "regex": "(?i)^https?\\:\\/\\/robloxhowdownloadfreerobux2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9705afbe5dce8205b253d62059f0d1b70969370ffc6bc29f8cfccdb9e10f523f", + "regex": "(?i)^https?\\:\\/\\/robloxhowdownloadfreerobux2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ce8ab0f5f20d3a5da89e6b365fe455879ab7dda993eb779b14e80806fc62ef4", + "regex": "(?i)^https?\\:\\/\\/robloxhowdownloadfreerobux2021\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6238b168e80586491bef9fecbcb794ec5d769c359fb6da8ae3e5a9d1f7925dd", + "regex": "(?i)^https?\\:\\/\\/robloxhowdownloadfreerobux2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d511a3604828ae54c6bad24dee6be126154207ef85079916b80e3479911fc521", + "regex": "(?i)^https?\\:\\/\\/robloxhowdownloadfreerobux2021\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50250315a3d078393b5e9c03cc027d1290b5eb1840a28e531dadc365f81cdb2c", + "regex": "(?i)^https?\\:\\/\\/robloxhowdownloadfreerobux2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c39045b0912d9e709d38a94bf86b2169ed9908424bc9fe3238496cbd22239a5b", + "regex": "." + }, + { + "hash": "a43e130e7ce2b89d0cfde66222416481be07d57deeded7d727f2f2bbb99fc91f", + "regex": "." + }, + { + "hash": "31e2cdd0507f27ac00dbaabd65dd54b1c996cd6f23ca461c59c5d8cac3745c56", + "regex": "." + }, + { + "hash": "38667f8ec79d3d1d2c796a0c30b29e86997020d74c32b85ae0d0bbc996e67e5a", + "regex": "." + }, + { + "hash": "87972d229910d278f264e4b30fee8ddb93714e1a5defc68119e6c3f870fdfdb0", + "regex": "(?i)^https?\\:\\/\\/robloxinvincibilityhack\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d4017ab9d7c3c5fa072466b5519fb4aa44c45ab8bacd398969b43f9f236e6af", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxhackinstantproof2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67fb3428844376b41921d3df13b109adfc01057795f5035e509a6d032c413fa0", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxhackinstantproof2021\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dfbecf3bc531f8cb9aaeebb21effadb27e2cb7215dbb3a52855743eb68e8626b", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxhackinstantproof2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66fe1c43bbbd1f79ee72929301e040999ba1ff226f7273e9543726837a0171d7", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxhackinstantproof2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03c024a16506f22e1ef3b762b3f3b7f206f03ceb2e3242927bf18add4384de03", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxhackinstantproof2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20fa9fe7d1c8e682b23dfeee773b8f725bd4a1b28d18d6a1e0eeaa21034964f9", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxhackinstantproof2021\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "648c1a5a1995f185eedc964edc0cb492f7582790eb965fa88b407f0e56ef073f", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxhackinstantproof2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47618e81976fe8afbeea57b7b3765fc897325b9191e05fad37d6556e11272354", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxhackinstantproof2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb028c182b667535739ec1878b4b6754b9304b707885b60f62a80274abc15c53", + "regex": "(?i)^https?\\:\\/\\/robloxinvincibilityhack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b58fcd921e2eb6216ef3d0063870164692e870f8f43c2abda921c1e764d74760", + "regex": "(?i)^https?\\:\\/\\/robloxinvincibilityhack\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f4b7e5b048641e21341a193c5862c719be23c95e70e280de2411bfb2f9c3b74", + "regex": "(?i)^https?\\:\\/\\/robloxinvincibilityhack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e8972b133f51dcb01205b5d87b7a4de28cb493d245e7d74c0976731cfd9b988", + "regex": "(?i)^https?\\:\\/\\/robloxinvincibilityhack\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acb567ecff9a11815202239ba6e4352c09c2f68509c2affed6b328503b8f39a9", + "regex": "(?i)^https?\\:\\/\\/robloxcookiehackdiscord\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f71ce60cddda2e92b0d4f929c23c487bddc700425a171fe3175c59c938498a70", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "108a9fe658bada9198b8e5be22fe4115e3108272141f920699febe57a3c8edce", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxcarcrushersdocaos\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c03d1442dd3887748cc39f01283abe18142551c25a1ad249b51e70f03a4fb2f", + "regex": "(?i)^https?\\:\\/\\/robloxcookiehackdiscord\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e54f270b3348329a72e7782a18b29d1385489388d9fc7b6a65a383af5af0ab7", + "regex": "(?i)^https?\\:\\/\\/robloxcookiehackdiscord\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8622e001288ad902278eb8014dac2085460e71c0e7dae9aa4dfcae0a5f5ee1cc", + "regex": "(?i)^https?\\:\\/\\/robloxcookiehackdiscord\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86a6878e47829526aba5db9528f79593b99543c8454d867071141c2be3cf1950", + "regex": "(?i)^https?\\:\\/\\/robloxcookiehackdiscord\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ea5ecd67c80a6cb478491815a295b520ec5a71c28210137469717c70384eb6d", + "regex": "(?i)^https?\\:\\/\\/robloxcookiehackdiscord\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdc8795b942de42388367e8bb92c639ef32487a1a46b7407b7b0919e994c20a2", + "regex": "(?i)^https?\\:\\/\\/robloxcookiehackdiscord\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "644029e5d81dad9fcab5ad2a3463b6d4ee1272334ebc9c91e7df7c32fc5008e2", + "regex": "(?i)^https?\\:\\/\\/freerobloxstudioshipscript\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3be54252be3f5a1a6fe1e688f4e0f4bad7c7d161c6e5869820a67fc95816a39a", + "regex": "(?i)^https?\\:\\/\\/freerobloxstudioshipscript\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4894e2cc7734e3e18c51324d76f7214e32ac500135122ed26cb6b059e9055cf5", + "regex": "(?i)^https?\\:\\/\\/freerobloxstudioshipscript\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c77a96b9f52a248aba50ea637394183eef86cb3fd2eb2b3040ff7b43a7576ec2", + "regex": "(?i)^https?\\:\\/\\/freerobloxstudioshipscript\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cc591e114d071aaffae1eb7073aab16a8220c8949c3b58f98eda327557cba99", + "regex": "(?i)^https?\\:\\/\\/freerobloxstudioshipscript\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8fcc633b3c77812c06839efd778cfe4253d89a82f912fce0fa58cd0433c7900", + "regex": "(?i)^https?\\:\\/\\/freerobloxstudioshipscript\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6db734d64dd9380694213b37e1830df3e9d7ed9bf5d776b5f38a849d57cfb7c", + "regex": "(?i)^https?\\:\\/\\/freerobloxstudioshipscript\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d9a247214dc5da8174f272f05d82edb61da698adeb38db3a77834ae0c423415", + "regex": "(?i)^https?\\:\\/\\/freerobloxstudioshipscript\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecbed22e6d4004e04935de1284b2bb26590626151275e7461b5392961514c50b", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxhilesi\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76ed67c43834efb01d8333ed5ec6a6dd2397b6f7c1e66ace7a76c6d153ad994a", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxhilesi\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d551e0d13b17c186d5832ee12a9ed13e1be302837a85e95408135786f5bfc8", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxhilesi\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60d9bbd5bdda635c61f81769c11af1d4c60e254fb4bc4b511c668e93dfeae152", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxhilesi\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d99e8d29f63818b5d499f41fae64dbf1e0e541d26177a8b9130da7c53cabdd", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxhilesi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c88f78a3efdf555f43128da89061bd5dfafdd686175283ce68d94646d87e01a", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxhilesi\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "779a3b58fd67f7dac61950f32fb3976cfbe5422c81562614eca5377c6867f7c2", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxhilesi\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf4b17ffef3d496f39985efd0be1d26acb4b68ce4f020c051c0b42bf94b1de09", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxhilesi\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d407f9a4f0289961502af82f64bc5460c61e79f897834a23f2d86c9b5da37bee", + "regex": "(?i)^https?\\:\\/\\/desastredesastrenaturaljogoroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d14c2d137f9818dc435788d56cf605db9369196dddae0a9ff04ed67ce3a5be", + "regex": "(?i)^https?\\:\\/\\/desastredesastrenaturaljogoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27bdc8a176b2741a4f4774db2ef3ec8b4ac73a6ecc88a80349cc53aef3e4b4f8", + "regex": "(?i)^https?\\:\\/\\/desastredesastrenaturaljogoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "975583775021bc5b0db44c186cfa1f97e50efd89ad0a9739b9e07cb07fc5ef0a", + "regex": "(?i)^https?\\:\\/\\/desastredesastrenaturaljogoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2db1d902af1933741a99e9318a789e2b6a87957ad10a90c03b0626ac6554d7af", + "regex": "(?i)^https?\\:\\/\\/desastredesastrenaturaljogoroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05c173a8100b4249201558a0e7834fc763807bb13ec623a99d6afbf889694e8a", + "regex": "(?i)^https?\\:\\/\\/desastredesastrenaturaljogoroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70b05b6b164b109f17cf4e34b9c1fbdca69641898fc9f82ea18fce4011766b41", + "regex": "(?i)^https?\\:\\/\\/desastredesastrenaturaljogoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a57068bfd708b19f8a2b704a3fd758604f0c50440e647cf917f26d541e45de76", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxgratuitoboogabooga\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8474bc90c9c1b560d4114dcca864f423a4f8bd6eff100372b0a11ee146e9e335", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxgratuitoboogabooga\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656c53272a89b245903f689064a902beea3e0710d54408f111a1dbf2a63e73f1", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxgratuitoboogabooga\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05719cd445e88bfbdbbcd4643a0a7650cbc2f6bedf3a4fa996c4b804c66ad743", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxgratuitoboogabooga\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8acc5db6c879b4d19bda1502e750b3369987fe6a075c77cb79c805cdc70bdb2", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxgratuitoboogabooga\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57a2a60818cba3ef33c062ac07d04f30ea99fe0a22385521ec79c0fb242ee4b7", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxgratuitoboogabooga\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a8d72546fa89a7ca7e40e700b57623190a044db76df27efb20a739b704d102a", + "regex": "(?i)^https?\\:\\/\\/hackerrobloxgratuitoboogabooga\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1f04d5ab61685c9f06912f2c4294c2f5ba48a4ec0cdf701193c38c5a4e22d86", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da634110867e799b98018aea923bed5cf9562590c57f654d82bd12282778ee8", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70764aa6695a45521d9d799084cb90dd67ea7c5c6377c8a616526cfb7bb84190", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aaaba573d4e2793fdced870167a2fe0a1e56baba3a6407d312e8a8cf449c86c4", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b97e500821d779d1fad1760ff9eefa2fb9e5a45fb0cff29d14c0dd5fc77e4e5", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14f97e1ee45c8b37dfbcab828d7b4aaf5003b49858d39d45f91c879d7fff1f2a", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "493c96c28237f37e54f5317f1f5b0f0fe346db08ff6b9adee38f52fabc190585", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77a041a0d95a896bd596bfdd76662136113920e0221c92df1f88cc8f979d395a", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "837acf98fa645440bf2503d3d623eb270b46f2c3c3a36b5d5c9b2d6345a1d196", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a219226cdc408ff3e81a67451bcce51dce129732d200ae64b01ecfd64307b5c4", + "regex": "(?i)^https?\\:\\/\\/oshackersestocontaminandoorobuxoroblo\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1eb533dbff01a7fbfc2641f769179d036d5efb98a7a37e18c3e27b11a784f2b", + "regex": "(?i)^https?\\:\\/\\/hackparaswordbust2roblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22e2a00d943e7b48ee4bfa77791d79b55af69f28dfd99e6052155f443ab2a8cb", + "regex": "(?i)^https?\\:\\/\\/hackparaswordbust2roblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "626db5699583a3e27827deb94354a9ebfc6a5423aa4da7f825f6da1ce94e602b", + "regex": "(?i)^https?\\:\\/\\/hackparaswordbust2roblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c39046414123a67d52b48fbf3a514b9e1c6eeb887dd244567dc2106863c5c3fd", + "regex": "(?i)^https?\\:\\/\\/hackparaswordbust2roblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7b26d3a420cf44a04e694140497ad5281e50ca41e2bdc9561f71b7831533c96", + "regex": "(?i)^https?\\:\\/\\/hackparaswordbust2roblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb7dc25e6b8c9a93924b1728ce0b3003b7ece8eee292d5c1ca593db7d4e819f2", + "regex": "(?i)^https?\\:\\/\\/hackparaswordbust2roblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e829bf1ed9877ab105a463583e1465393938be669ea6b0419bd771862db81cb7", + "regex": "(?i)^https?\\:\\/\\/hackparaswordbust2roblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e69e347f96d025cbc8d3232385788b6bb34764adf38788e0515e914bec64dea", + "regex": "(?i)^https?\\:\\/\\/hackparaswordbust2roblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "610929455656bdcb9ea0c1da27c40aee8657a9c91c2ea16859d8f716c5406532", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f10e545820be2eb7c346d226da0ff8cf357b4cfdc73406466d1577854a751887", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "014853608df4d9dcf654440ad97823f5ee26ffc4c22dd86105af9ea4fe1f7721", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7b79d80ff90f64b5ad4b58e14a9e9d45c589612a99a17d68cc76b0a82463707", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcf4a99b6141899de00744c0bd0acd48e3fc405d70ee5d111f462825b9a9fad3", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4e629698402ec6b39802977bd5893ef80c65db45a492bea7d69d981aceb2adc", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0397554770a6ed3d4bcfed423b3dc0522499ef12bbeb8667472e4e3d716b5fc0", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76d7031deabe9365f3d13f14515ad7bbe7b6ce7dcfda932faa54390363e8ee5b", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfeda8ac6abc5320cb0a26666f1be5334085fab21d66bd38446d6a4169c7b173", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9562113049a87e3359adce376d863d01ebab8653a6d97142c54cbd884347c96d", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c88804cd4319ac67b03878ba131b41b556a1fa62b673c587352a08dd34f5b061", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18ef1250fb28d1755dff383b21188cb460047ca0bd0875a123de1e67db22083d", + "regex": "(?i)^https?\\:\\/\\/comojogarjogosdorobloxsempagarrobux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60e9dddb26ae35aada3b634f29b4d6683ac201fc4a5cd93264dda079ecac404c", + "regex": "(?i)^https?\\:\\/\\/commentcoderunjeuroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c3db743e5c626e9ab06ac59237414ddbd2ce209f4c0b0714ce8de660204eb98", + "regex": "(?i)^https?\\:\\/\\/commentcoderunjeuroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d5d686da6393e507a2e71702a75b75126302388fa93f8a1afcfb86587fe6700", + "regex": "(?i)^https?\\:\\/\\/commentcoderunjeuroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6671f08ddce1cb215dea329712799f19cbec3975e5a8dab33f667067e82e247", + "regex": "(?i)^https?\\:\\/\\/commentcoderunjeuroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77217c5f36f7d3a7a6d30adccd3dd71887e0cd74f5fba75c25d27733c5328a6f", + "regex": "(?i)^https?\\:\\/\\/commentcoderunjeuroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebd858d961ce7d8ecd4ce3b2ced8a566c330cd5c733b85e15185e1a8d4a667a5", + "regex": "(?i)^https?\\:\\/\\/commentcoderunjeuroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f6c47b74d6dd92d63460a86acceb6cebb97e58f3b4a34da4e8aec4f1c905cef", + "regex": "(?i)^https?\\:\\/\\/commentcoderunjeuroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b87fe3fe0502feb69a804f8fa7260ae3a5c1e11b61266ee15da026e3de51d4b", + "regex": "(?i)^https?\\:\\/\\/commentcoderunjeuroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a1993782d2a2a7e72aeef941db5db7f8d970f5d7c403353089e5020feb838bb", + "regex": "(?i)^https?\\:\\/\\/commentcoderunjeuroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d22d18aa1d15b9305b52093e1c5d322bbc9d4b1ab7a7c3c5c83b7fe62e8f6d2", + "regex": "." + }, + { + "hash": "349a4e63636d0cb285f959a7285113ea2f0a266cbf3d598e4b294b89731ac077", + "regex": "." + }, + { + "hash": "91898ab0eff76bd7ff7e85ba2095b9f82f3a838b58b66939fd557c9bba2cf0b9", + "regex": "." + }, + { + "hash": "8a7af4f13c77e5a9707e7530ec7788173b624aadd29305732547ad1582ce6bf6", + "regex": "." + }, + { + "hash": "596570fbdee538a8e85fb6da48bd0f82d87d9b1d3dec26681404317c728345b7", + "regex": "." + }, + { + "hash": "5b9091913ed875d3d1f1d0e86ac1fc36bbd26e87ef48c68c3a3d69ab7573d1ba", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "449ec26313896ca1e7f3619d84984675dbf451d1e5cdc060f365a9bfc7c6d349", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53b009a61351f83fa8dc21e715a5d55f1485d8f08fadb0314582ca50af501658", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb7d3574c07a1ed94c55da766f33ed29d9c495488e8a43152918cc7f4ea869dc", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72d792ff1f26035402279c6bd45b66b3d04b3a3b2bae8901fca3803dcc9f5905", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eec8685aad9cd85f710b1fb35cbeb4ab3833a01dec14c91de1b156f1f9ae10f", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a47486123d98f8c79d7e25f3bf805a26edc73663a6cad8d8db826b76036ad0a", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eda9df2774cddc3c58863dd102517f325215fba7a8ee3dedf1333849f8a99553", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e8e969a5f4e2d0b0410e9df94b4178a86f2ae023c82a532ae5ace1406b2c642", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cf1495b2f6e5c197f702feb320427b8a2da449a83ce6a6aac21490fc41d2a26", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "221ff422dca277c643202acebaa0a718b9a2e4d7e27fb8ae75c3a47b05046daa", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f13de21db7c6d6b60918247dd7b810885386c9ff293670edf20612ea19a6ada7", + "regex": "(?i)^https?\\:\\/\\/freerobloxhideandseekextreme\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "360aa357cea4bd25a89896d012e48446c204d734fe084cfdf0890e7f0d49437f", + "regex": "(?i)^https?\\:\\/\\/getanythingintherobloxcatalogforfree\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db732b0b1d62515e49ce73422e852eb299c21ab3405a377f8abf9cbe348e21cc", + "regex": "(?i)^https?\\:\\/\\/getanythingintherobloxcatalogforfree\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf0cbcf7085d65675dfefb860bd566a27f71d04a5997a628fe3ad5b0df809269", + "regex": "(?i)^https?\\:\\/\\/getanythingintherobloxcatalogforfree\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f6fd5865db156ef4c3b8db47b9157ca8058a545b58a0ef8f41dc26d3204463f", + "regex": "(?i)^https?\\:\\/\\/getanythingintherobloxcatalogforfree\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a288d24a0880ec7b38a5cc4030973da9d27a6666a74df3dc47ca201455319b0d", + "regex": "(?i)^https?\\:\\/\\/getanythingintherobloxcatalogforfree\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cebe890cf87722cff289dbe116b70047e9d01fd5082a7ffbbbb2f39e8eb3c8cf", + "regex": "(?i)^https?\\:\\/\\/getanythingintherobloxcatalogforfree\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "113701f99bed7a3903861721da001fd4870a20e0e13f237f506b8dec758d0060", + "regex": "(?i)^https?\\:\\/\\/getanythingintherobloxcatalogforfree\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c945505a4886f34fec84b3476b490229a9f444d7e70b4b2f0e83aae583744a94", + "regex": "(?i)^https?\\:\\/\\/getanythingintherobloxcatalogforfree\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3aebda089f665e20b347283abc019f48d4df42ffd209bdbfc415f275716714e3", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxfazendopizza\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9b17f90dfcde379c4e71c68a0f63f57c2e71c67e638e3077722409db445bae5", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxfazendopizza\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22a139cb6397ce0cba227efc5ffc218d2945bf5df828b1e3774d1669b67a721b", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxfazendopizza\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec3222b88ff336d61ac008cb7d4d17e9c1f92c69a10326633c3ba9b5a26b971f", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxfazendopizza\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f37195412a570b4e4399fa1d0cfdb419f60197e6b5850e992c1ddd3b59315453", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxfazendopizza\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce21b37380d8a29b13afb6c5e4a770ec29e5b190e5063a836d4c9a96272302a0", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxfazendopizza\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e1118b0cb274a61da1f34487b3d2bb1a75d2aa67a5262866ec637b042dc7206", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodemusicjailbreak\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "297c9d90fc9be53607531eb9342b3661d41e8a20e82a860876a5068b34d4cefe", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodemusicjailbreak\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "728dcd527ed4aadcb8bc779f6aeb0d3aeeae5dc822156c7764fe906e569b77cc", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodemusicjailbreak\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5ecb15d5a50f0ec327f2fdaad49745beefd58c837a7ec221d16be4b32c98014", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodemusicjailbreak\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "436b05ac197b63d890d1640292b3accd248b1d8a128c76f86b9d5cd0df914d6d", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodemusicjailbreak\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e9757d59c06d5137d536a96694a155cfd497852dee93797b67e437509cdd9aa", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodemusicjailbreak\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "983f353bd564f7470bc3e559f6a437b3dc3544509c3b5f5fb83a71aad8cf6e8a", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodemusicjailbreak\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eaa9ca6bc6d3636e07d88ecfd92a6c33b05baff45c9a1dfb86d7a2167c90ddb5", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodemusicjailbreak\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cfad5ba450cbfa3c04a1140b52105a0ca14faec601b34a93f7ccd52c478c8b1", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodemusicjailbreak\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79639632994992e2d471fcfddbb77dcaea439008db8ce854695d84cc03122caf", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fa3415131212e41c529268b9eb7ab82335534f018e4f7d0d6bcedc45ab7fa60", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "346930d177f6894b04798448693b527462cb333429b0e62e1ab05ba1330b8758", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6703b52a77de9aaf77d2bcbeaf491f69abc00687a7764fb1d6450896f06d3bb", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eadeeabdec75f90a3c02827cddacc9fe1a8114b0a2c167e30d50fda9eff52711", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db205ff97c3e6bf37573fa1cb55e9698213adbf2928385918967ff202f58cd6b", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62b5c0643b641d335cceb3ab0844b07cfc90ec853d5e4a4b194e51e4fd38db21", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49f3a1eddf0878f6c285bf9ee4fb37593b5e4af774a2eed6d7a5f0b6044b4f60", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adfdf9fef72e813c7621f13bd529c5c3c36942686bde3194d5853ea566fbede6", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14501cebc0ccc522e95a09d1b66eb4b42db617f2cf9726bfae610d393513b909", + "regex": "(?i)^https?\\:\\/\\/bestavatarinrobloxwithoutrobux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06179ff207662b03947714796645a13a5e5a9c7a82b24f977ed2ef3ea6a31c67", + "regex": "." + }, + { + "hash": "e5881597a56d6a07ac885ca649db953fc87a97d32e65375bd0cf19b3551b1a7d", + "regex": "." + }, + { + "hash": "957e5bfcc0257cc660c02d08c10711fd8f0fd2e5b6b7093f4010d90e3715a8a7", + "regex": "." + }, + { + "hash": "3ef0c8303d2cff865333897cdb1ac6f0bf0713301f882580359c92aa820c07a9", + "regex": "." + }, + { + "hash": "99b3c4ee1f626b222807bf6de5c1aa21f8e86d596b8d4af21cfd071a4ccb1500", + "regex": "." + }, + { + "hash": "a9d32b1b448de0e4bb4c59dfc3cce22ad43bf2f883392f76e68fe4337f325e37", + "regex": "." + }, + { + "hash": "89caa818abee84bc8fab898490ef070b65bd6120689439265ac55262832b79c4", + "regex": "." + }, + { + "hash": "267463268ef3db02c3aaba23f86a36e27b5d92f95651386fc2a55d6d36a212a1", + "regex": "." + }, + { + "hash": "7b2831e0c69f9c81f84c79a9403b299d2650847d161d2641de1eb51ac721da75", + "regex": "." + }, + { + "hash": "49b718e8d725c21a27430a3e1174115bef8715cfe672389d207f8b5c7c55150c", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea70814adf6468dd3cf5f5454550fb19d498b2181b9b0ccc0f18d531d3b7384b", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a722c37a0e727bc7415cd5ea79faf6d1a62fe171c78638e9038e3a9b497308e6", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71a8cc32fa7e9742aa7cf033732509136d63b835c7e0bd3e388f39571ac385f4", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ca211e1d6bbf903e333b3bc31effb61fee7c0e2c42dbff9e749e0e478f30fe7", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6844fb6fecad9231121eb1ba7a21d027e264dca49400d7f690ac44f093766ab", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "709d243531d98e66ba30420ea6bd349d1de38d73d97cfdf43ef7f6d7e8a46bdc", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a487b0a47428be901dbb291f33f7172871a3b8e1bc43298633b133cd3c401fff", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "838692702e030e7d0163ab7c18e41043133b1dc7c501200ca1811bc69b13560f", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92df7a0e13ff94543ec2262dbf0f898a30c9e95108f92477977a1ec500c4a3eb", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0efe3292f466929bf399dce55781b25949bd5fcc30300777ac2ac7a1fd7d22ea", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc39d6d0e6ad98e6c11d4cde6150d1a7778da69d4b5dff32c6af8bedbbd0de4d", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f55b47c75bd6150a75f68493f96869d96a82b558b5e12b0f41743731449cdc71", + "regex": "(?i)^https?\\:\\/\\/robloxgurubanaslrobuxgnderirlir\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48019cb869e3c0aa0d36e0c54e3978a7fab4d774a79101bbd09d087c1cfd98ce", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5eb90f7bd677dd5ff17b565c5f747d9853fc1ec52c4626c09b7443f14fb2e758", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b98abe11fc078166e3207124a3a2816b19b685b4f22487f4edb0bbd1c046facf", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b9a11aa463bb701a9996dddac99244117e5c4f2b8faeff21650abd5c54771ab", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67cdf80f8bda934400310b8108a67e21cdc6ae9770b0d31ce708b427950aa392", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4c993eb40c53dc48359649abd33bbddafd2a64ee0a1e522f0be6f9daa33396b", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdacb15c4453a51608b552ff8ae13fe78c0c83a2ea274a86d3178afd4caf2de3", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d407c2053a685cb5ce6eb5c4c6afb499f40c117d65115a25e269fff746a66c13", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e513721d4a383a95121915f2bacb1a035130e14d6454e2fe4ff270aa96058c84", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a82d9e6d77d871cffbffc54b3eabcf033d96754e188a482941f3105d0ca48a9d", + "regex": "(?i)^https?\\:\\/\\/freebrownhairroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aa03e1a4d9b237b4ff344989dc7a5d57b791975f522a255a617c09e675c6328", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6ca1a478525e1e16b39613e45c83d955aeb0038a1f65d3070cfe9a808007a2f", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f89d1a2ff1f885e887e3c7c4dbae3a3ac1dcceebfa1e14aa155b29dfa8a032db", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6baed3cfb4978859827342ebbf486d3cc187d603805d45ccd2e76850c35cceff", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3690b522ec3d340c94ea887e04403928bc3a88f971443e14a9200021aafe987c", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13ef9d76a27f48e909e77238657b5d244199021dcfa53686d418c364bf6a4c9d", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4e9f9a544b9dbd6195ab56a6b4164fe31510143eb5863caede947a0fe377206", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a8981516f6d3985e54bbb5fa59c2f76c3c4de01917963e1caad9294608bc491", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68bdcd9e0c839f35175ae69bbba490789e73a6a983a217d68424e9087c10ee17", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf27eed08226d6174667b5ba28253cfcbab69092a8670f4b78c8799a4bb8947c", + "regex": "(?i)^https?\\:\\/\\/robloxhowmuchrobuxdoyougetfrombc\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48911e41e48526ba827909f8716103bc06eff787368798ada36fd000b5d5330c", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e16bdb3fcac5c5527b3596a0f0509f83c2b0382a668f18ab9e1b5d2c9382a6be", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db66c1f35b246ae543e0554baacc70b8483399bc05f2d33fb1d9221716904532", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c14d72c9198df434b83d900c56d7074adc7bafd8798d124aae52d1b9e92c4a51", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad8c0b290d3b5fde81fd7ac78480b3375fd16a9e2635faca058865b02d86b764", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dab0dc333013833250f4e0566e2aaa3dc0c154fec8f51a0f94dbeb1957f4473", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b39b6f91b7f412d9f7b2446ca3f72ab920b4e518a38b17aa028e5c7eefd87c0", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96ce969f79a495af21f9e65f36de14ed59fb22afbe19e3842f200a3e68bdb5b8", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1feeb505f7f74529388f5652ca9a177af3d932ca82c55391077409930ceb51fd", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "420a4c3daaebec87087bcacb81be6a1d7d7bccf5f8e5701e1dd49cfaa47eae8c", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b18e8e181dcc4402247109a493a345520bf4e76d49a4fc6c66f3f4ba0d22e9", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e360c3b68df3d2cbeaaa36b8ddf283da3d415421e9dc9ad492ed186751a02cfe", + "regex": "(?i)^https?\\:\\/\\/jogosquetemviproblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cad19b9d352f91934dbebb740a8315e44106329d43d42f79e352f09fd7c98a3", + "regex": "(?i)^https?\\:\\/\\/robloxfreecatalogcheat\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef972c9a390d72baf8b2cd17f7f160dd084f1fbfff415dd945e41263629d1b85", + "regex": "(?i)^https?\\:\\/\\/robloxfreecatalogcheat\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b22809bdeb77b57e29c9d50d8611262425d04c346c06d3866d277da96b91b457", + "regex": "(?i)^https?\\:\\/\\/robloxfreecatalogcheat\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03c956495f0ed68c9d29d8241058dcdbf48ee8ee41d25f671acbaaf4afa96526", + "regex": "(?i)^https?\\:\\/\\/robloxfreecatalogcheat\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e96ae4e9f51b8a1a4a31ec43096fb4c97a9767ee2da324b515263b647f6f9882", + "regex": "(?i)^https?\\:\\/\\/robloxfreecatalogcheat\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecd42c72fbede941fdf8760c01a25dc7bd52c9eb5346a8ffab17bc74e0081d0e", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6e3dbc0e35cb0623e564dc3807ae34f90a04b0c51bddc3ce81cde30c30d59a4", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9010a9522713e969759843ccba7c49f108de351afae7b93ec2ce788b61977e6", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eba3058a38b5cf4e1d627e97bb6ecd7735d9dc751959569bb3b6471c29a15b01", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "246daad072790dd063ec2017418ffa7fbb990bb5a4e9cfa975e52a77208b9d5e", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba51b592169ddd112cbfb76122279eebed2fe8eb71dd49a06ac8de171fe08395", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f76813d3eb685644e2a7dd2120f1f2ed7af83e534a168231c614bb475d77208", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbcb70844980c81844ceeed563c526921782666739605e3e6af2bb29c3300fce", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90d2416431c25db1cae5557d47f6a8c63ddad47ed57d6b8b7a5b1c94977033c0", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cd54867a94f75272276342e3f3a04bef1ef15558d26f796fbaf2255161c8285", + "regex": "(?i)^https?\\:\\/\\/robloxaccounts2021free\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "449cfbd56134968399eaa651ff3d65d4231657fac2961388c09de6626b69479f", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "529dfda966addfcda2287ceae5b32f37ae37609ae13b76b81aeb2b5513ddfb5f", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "243bb7f55fcd62d91e4568a60c71091b0aedc5f34bf23d4c0416786258a0cd91", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d91fe7c01185db28fd1158828c234f97074001f96efd42d99e205a445343a1d7", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5a66ab9bc7a2eafb8ea4b26376582172c2c294c79209f8a0219094425ad443d", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87f577c055221581392c968001143cf3b5e668597d7ac94eb5b0c813119e4344", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d311e840d9f5f312f30b84219ef6e1a8cc6b9fdfc1fb822bf4687074afca577", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "440c444b6774c6dec46964ab4180405e94e41b79a2777852428181af45cb3e11", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "341c43ddf121266c90daa832d5c25263680d5c3a9fec2abf32eefa8718316ae6", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07a952339bcce22badc1ae53ac0d74f83ed9f0435bc197864394be04fabe919e", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f29420a1f2c9a131b447d9f32387f8d156f01e274049e7122f9d25a9fec81b00", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75073a2ae1b2d710c84d481d934675a0e1c34b761b879761e36b5b4f914418a5", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad423d6532ee3c45a707e5ad74200123c3751fea4b7699a17762394bf5055e64", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa903a018b9a30a36d56712479d36a0854b774f448093821814cda89b8b65b85", + "regex": "(?i)^https?\\:\\/\\/comovirarpolicenojogodahoodroblox2021\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8617fabddb784a2772537c831b2bb8d13d7cda59b8ac91d1aac7ee9ec0adb01d", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8feacf28541f8349b18852e46f3cbbf51042fb30b89e02434bd33321be674735", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abe3ac13f09a6bfc07af50f98eed1d3ee75bae6149d6e73ba671ada4b5339820", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4346fa3f93126c2bce37ce7edab127e40fa491e28ff1280af59aeb093537f19", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b97e4399baf462851d6cb580cbcb9b0009be31dd8a2bcf5c4c2c2d36659afb10", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4797ee0736e1bf3d6e88ca326614e6947ce6048f1257e1c5992dc45aaecdd2b", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4c92837e2d2f9a20f7686a5f1b8be8b2e1c21e9002f0b1a0f99c9be6c6d7af8", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "223c7ddeda358c5be66345c0923e00ae617aeecd2ff80427328cecf43cc86c03", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b38ad85f156ef25b8f15ec526ab32babc63e973277a25b5ed328d6be20f60dc", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d21f4de64e705cfc55f00dbd0c08d2f976d2b277a4587e222281d669800d098", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19857690678a322245c690004c3591273797e5fc7c64c2878ee032fa64fae0d3", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d26596577e31bad37351b3874f82b525a1bc85e1d0fa135f1850e034a3e17a6", + "regex": "(?i)^https?\\:\\/\\/johndoehackerdoeroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b9d844625068408bdf23685e25a05f2bd11c5404762cc6aeed6f45b21db670d", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efad72f0871c3bc47d10f2799a5334e50814c6c333bebaf09c972d0dcbaa3a70", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0255d47837d61fd99e16b423cba515f89350057ea738456fe7efb8834368e51b", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67b984163d002d2c71802392a6800f23e6376f0ced7ddbc7fc489ffbd4728dba", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a34f5c3d1a3c02434f3870c3779b6e04503f58b10ef29cac2918c1b58ec09e5", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dabb13df1a0224aabaee2ba1fe173fbb5858b40c899bbc40c706e64259b1441", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02192c3211e5b029acca97345c652c786a2fba91a151a9dfc4e93734cc460e5c", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f203652bc730fed04bead89b63fea4604db234428c748b0be571a23a8eef441", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c34d8682dd54cefdd1989c22797a6c5cbdf310a981968d67d7f5678cba0d106", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3835e42a876143bbde2b78c9eff3673b1f0e92cd886aec174e3edeecc66a86a", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "308c50ac36ffa5b676d18a6bf77dc8271d9d3f48f1942bdc6b1871e75cad06dd", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56dde00434feac0f2462adfe4dcb0dad99d93be3d38c088efff68500c7190d50", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96ba8bf9b6030b31518096fe295277d8c25c360b6a2f691f4e7204ef69a7a0ae", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f76a527d0f8448f10038ff0f60fc5b807c1f50baee29feeba1d182b05dce0c9", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f18aa31b6eb5f9547e0e1fdeef58ba6288fbc1a7abb7dd9dcf3a44fdbc6fa0", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "305f0424cc3c544fef5aa50c2e1ccd7debaf4fae9955709b6aad533b9261e4f5", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed7f423ead826db61e30125a3bd36ad0088229f829d6b68382d6ab3b79f5e5bc", + "regex": "(?i)^https?\\:\\/\\/robuxgamemadebyroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3c44b3b3ec8a0da0e350bd558767dcb92f1d5230b321abd6cefdacf61d9a036", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "626db620ce4d706d73b3772d08f0305cd872ceab58f9d688b13504645c59c6c1", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03e084c292a41cd66094b2504f43e29b4ae796a3966879a10453dee37911a757", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0218a3b82dcc56eb3caacc058d2e2e0b34e35da66873e702f473f65d4728c462", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c85af70bf473f5ed9f09b958aa291ae87c7561b80143dde127883c7d1a5f9b", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "759079030c6f62fc0a9c6db247045146eca04723f6b7d13b5b1df048bf6b4a43", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2466d3920163eeb2c7944afd71e5d102223a3344c54317157f2658996512ccc9", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b46e620e6d6c81737932b1ec5a25689c016d375856fdc89f0068f8bcf5c6f3c1", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bb1899e16879dd7728ddca710a746569cbb81b5f89683698ef8ef3599bcca93", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0c0deb3401c6fa8a8d1a33a7178a58a0f8c63061810653000439b95600ecb9e", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "711606e08f8679d30c3b21f9d693aae434e8854ea3b2e3cc5ca89e86993b2e8c", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c930672666cea7a10592dc83514d541cb82bdf2b903ed1b034ed9c12f6e3db3e", + "regex": "(?i)^https?\\:\\/\\/cheathackroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "721399dc529f04b09fe83bb7433be5fee13202fd7c8f94f141b4670460461100", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxcarcrushersdocaos\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "874ccbf34eb74d63a50c76c5fcd7d05ec3eb3d360edab8a3960e1c75cdf05e97", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxcarcrushersdocaos\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae99dd1ee007e06dc43a90f4fae0f86aa769bbee09ed5f486fb0abda50b2e24a", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxcarcrushersdocaos\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17e993040829cab59950bbff9bc47b27bc5a4dc9234d4c197ab4ca5ec24aa930", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusichappyhalloweenmeme\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79183cf5ff5f32263f75416f2827d4050703271b547d2d90f3e4a05cd86884b3", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusichappyhalloweenmeme\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6921c5bed09833e00b30229843b288e3762ab1ff21be1a5b647c1a61c08a11e5", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusichappyhalloweenmeme\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f87c445c6680243e847589bc144350940802ed102f057bfe63c5c0f56b833f42", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusichappyhalloweenmeme\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "812b581d4c4a56bd7c78f2c57196960bfa4df9fc6864209e8a233c05fd3dca0c", + "regex": "(?i)^https?\\:\\/\\/codesrobloxmusichappyhalloweenmeme\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "093fbff763fb6eb84a7b5ea536685a271b56b7cb63c7909a51241d42bebb2bc0", + "regex": "(?i)^https?\\:\\/\\/codesmurdermystery2roblox2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa560f87d060c38f8e93d0a7be0031eadd935c18fcd971210f25456f6c832269", + "regex": "(?i)^https?\\:\\/\\/codesmurdermystery2roblox2021\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8f08d38ed4dcd685234c777c9c3a7adda4bcc747483a14fc4b3f0fc2b6806a9", + "regex": "(?i)^https?\\:\\/\\/codesmurdermystery2roblox2021\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b242ad0f4dddc64f6c54cbd9472e7a1e6a999244364f5ca493046443478d55db", + "regex": "(?i)^https?\\:\\/\\/codesmurdermystery2roblox2021\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f5ff59a5bac9ea279f53ebcc7bfe572d54479d3d1cbff30209f2630958404db", + "regex": "(?i)^https?\\:\\/\\/codesmurdermystery2roblox2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2221565c600bbb9cb7b43fc21f10af6cd253fb93c3d67a75fb2e770e8ff105f", + "regex": "(?i)^https?\\:\\/\\/codesmurdermystery2roblox2021\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b23fabdc9dd5b0e8df01e634c9a9ef876c77068541a93d082f0baf61d12029ce", + "regex": "(?i)^https?\\:\\/\\/howtouploadmusictorobloxforfree\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7e8ffd97aac63e2ddc85f72e7dff0c89e2e28899694a2a63327f56c68121890", + "regex": "(?i)^https?\\:\\/\\/howtouploadmusictorobloxforfree\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c99acd0a817d3c6247bd1d09bfa33088730dccd85a8be4739fe5a44bb8cf4f1c", + "regex": "(?i)^https?\\:\\/\\/howtouploadmusictorobloxforfree\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c04103c318a107ff296de82e6a95e9292169d6e5678e2a2a8fa3278582e437e0", + "regex": "(?i)^https?\\:\\/\\/howtouploadmusictorobloxforfree\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5cd782f894450b60ab95cdf8012a403c98eb9d32e15a8e0588aae6a7a3e336b", + "regex": "(?i)^https?\\:\\/\\/howtouploadmusictorobloxforfree\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c444b9aa27359384136f66ca633ee3745948ad5aee7dfcc79d5585b4ab8c2d1", + "regex": "(?i)^https?\\:\\/\\/howtouploadmusictorobloxforfree\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b427c517fb6aca21c9114265b97a175a88838c87d00dd4ef1e71d526a7eb8f05", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99ba3d11a4c77fc4f486440ee0a0185faedc6f3d00c553cc78e19642fbab12c0", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6f1b9d0336c679e0ab09e7ff84105478e978e48304794accf9f7a959996a3fe", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0e199237f5d80375e067c413ca1ebf0cd037062cacbfdea46db5807be347b07", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "160e4e73839ca5e1f896deb2ef7038b0d6025438f2d8556d04425433f42e69fd", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94a99ade26df4311f77743531d972288b27b4a8e7a84866dcd0d2d420a345896", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "606bac333d558b1d4d196df7a0b3fc4eaa70adb2a7e17f61e6bdd00f0dfb966a", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b427b297a6dbb1768c067a0ec0468789141f6b3b2e1de8c00ff19f194a5fd9c1", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7be6065c58cefdc7614bb083b182668ec8678ded03b38104cbb7598a3252221e", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "411502bd45620cd4e6fb9cbce63f3156187113f9d574f2f04b1e05c263981265", + "regex": "(?i)^https?\\:\\/\\/jogoteamegtvvszombiesrobloxzombierush\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa094514d46b4c669017f394ee08f7aaef6232a0733793604a9e8e803e39bd71", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07abd134a5d3adc8226743a4f2789466f4d2fdb604a96f7d82bfb3dad25ffad2", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "943c0cf5b1f1d3784214711eda3b52ccd4803169d6302cc2043ec6c20e881a91", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a465c1033d7db9e3b638d0302e9c8bdf595185d8c5d8debc514e8af94cfe5d8", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae8208a213d89e18d3d086097764f2a0c0b763b411895320b98b69103e99a1bb", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cff70565b9512afc581dd6a620913e639f9ae067c93c5a1b2ae1057a5420442", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a768d884e6f0e3ddcfcb35e485079026e5e3cf1d95a22bfdedb7e1c5e49af422", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8a0dbf0b383ebaf171145b5f14a8afcafd6548f7424da2cf444f6cba8e1714d", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20ed2ebcb31cd178be5be8d6261c44b3863849e932a576da792bd8cda4b89d99", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cb5e905c055bc15961c65dec7aaa189d20014688d193d954944ba1bc80272f", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87365984c61c742d6b47fa8a2c233fc40b42f2bbd71296bed880b6be545cd5e0", + "regex": "(?i)^https?\\:\\/\\/comojogarnorobloxhighschoolroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21ebb3443f768170751162aa3c69533c6bd9a36beda9d21d91d854db18759ab8", + "regex": "(?i)^https?\\:\\/\\/hackcampingroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aec729e3ed628f31b9889f918ae7c93cd763f499327750e277db0106a4d7f98", + "regex": "(?i)^https?\\:\\/\\/hackcampingroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af50b3a8f979280786eec1c8323579c5e57415d8c4ac3e5ec7e6cfd2d157f42f", + "regex": "(?i)^https?\\:\\/\\/hackcampingroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cae0e0cf5185a2bff16dfdd358c945fdbf80073b915746a1eaac331364a62d5", + "regex": "(?i)^https?\\:\\/\\/hackcampingroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35534294eb2e4485ea0d2073718b96489f0caba1619cd624aaff2ed1d94ad3f9", + "regex": "(?i)^https?\\:\\/\\/hackcampingroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fed236924153f3c156b5158d48901f2ed74deeae00fbd643d922c0227465f52", + "regex": "(?i)^https?\\:\\/\\/hackcampingroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4edbd40bf4c5a26d089ed3707b4ac1de86c1906d8676862ffe6e0c66c90c628e", + "regex": "(?i)^https?\\:\\/\\/hackcampingroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5e20e83066bd3a650c526a8323f3d895a2295f859d2b2d2999202d53d002c04", + "regex": "(?i)^https?\\:\\/\\/hackcampingroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "845ddc029283ccc6d34e873247bbe24f942c8b55b3df920aecfa351213752c85", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce3d7ea92a5d5d7fd01c5e5692951109c45b0820d1cf7ad58421187d6c11cd3e", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f04bc221423c199687733408ab80d67ac855b76b5c2a8fff84e14de299501bda", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9699f228203e642612d781ae961a6bdf5ba0cd79bb5073cc32fe254f92de4b4b", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "804a77bb9d6341b08d12472ff25dbff1e93ffd8232030542d0fc14e16473552c", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc1a9cd25aa05cd773ebf6cbfd2234ce32672559a3c0a53a3a2d6f2581efbf51", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "292db39346a6169379e6bdab3213caae1a7c624dac2a163dd01f15e632ba4998", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07b159ecdd490c3835b67ad5fe6c1b51378d2c7a23752ed6adfea5e952a1fbb8", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73efe53aba79cd5d961c78f24b2c51753821920d640a417e6591352148b39fb", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d9f0744653cfde24f00afd3a858838fc0b4d6ddf49b99ddaa422d44881a3e90", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f6d172b3faeb3229df1a81ab79d5d30dead27b9ecaab79dddf4de99debc2ff1", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4c708babddf996039c7f573a57cb64804d2f4168f680a51b30d4e61591fff63", + "regex": "(?i)^https?\\:\\/\\/roblox4llcoolhack\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d551e55bfece06880e5b78124aefee21fa205cab014856532c0de120612f618d", + "regex": "(?i)^https?\\:\\/\\/huskyrobloxfreerobux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb0fcc59a3d914cb49ec5316ee7cf8676349c3182bd09aac17f2a4e7c0c2e12b", + "regex": "(?i)^https?\\:\\/\\/huskyrobloxfreerobux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc14618af910c3fbdc7de25cafbfba96797ac474ab9b1e6b15a92a2ff8f609ff", + "regex": "(?i)^https?\\:\\/\\/huskyrobloxfreerobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5e55e500a4b0b391e725c0762a2d3bee64fdb56879f9814286548864ae8304", + "regex": "(?i)^https?\\:\\/\\/huskyrobloxfreerobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f55a4b13e51be4a12f2b1101a890060e01baefc597cd5bb59e59b0c73709d46", + "regex": "(?i)^https?\\:\\/\\/howtoturn0robuxinto100000onroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce336df32433c5e60df1c8ec90b3eba0787ce1933bfecc2e18afdac3320b4155", + "regex": "(?i)^https?\\:\\/\\/howtoturn0robuxinto100000onroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a4e0a81dda7bfab5346f6def2b147fb00afaf9c61b86d59c7d719969d55c259", + "regex": "(?i)^https?\\:\\/\\/howtoturn0robuxinto100000onroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d5a648510112c85275a5a4392276fa05f900147b3996eea386db82d96d87fd1", + "regex": "(?i)^https?\\:\\/\\/howtoturn0robuxinto100000onroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b617122a03caeb64c39eca1b360c12dfc19d6f50a9161fcb03f9c5e72526b47", + "regex": "(?i)^https?\\:\\/\\/howtoturn0robuxinto100000onroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8287537301d3d7dc8704393b85154876bbe7466e88a6db6468c83cb40ce0b28f", + "regex": "(?i)^https?\\:\\/\\/howtoturn0robuxinto100000onroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bb3b40ab897c36cbdfee254a4c16d46e781c09c561c92a4d6916251d100bdeb", + "regex": "(?i)^https?\\:\\/\\/howtoturn0robuxinto100000onroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b35ac185c4d85d7dbc83fd41f6eebead5cb1ffd15c06b05184d9c1be147774ae", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2af0bf6eabefeb7fda1ee6748895ee9287ff6b835954043b30050836d9dfb5bf", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "893710c243603b1c4be7a7dd675e4d1ba6f48b98a708b835702e84e89af5e262", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8c64a2778186cc93a29ff55dae8eba16235fef183722dab32ccead7d50f1f28", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b313e01d0ed302e0ff6a3bc9a1be6c21f4b2f49671a79d6de2d05ef5546ada4a", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91be89c6d2326e89b51d410a6bb3f8529711d6fd17705e87b06caf246093f24b", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88d83d9a64a83bfd906aeac26ba78da60ba7df684b78afd8548f4a6656f1b248", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51f237b1a87351263f4758e2badd2b11cd7f61bbe350e0aa0daf9be98fefe94c", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b12633885a0a414c59c77ec9e834563d792624583c982b24f87fa0ba5afcb8e", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09946975709b1bb54565c5ab41e5855c67896f63d5e1bc5bb0c4c6fc38093ac1", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d80646eadf2ff06c11b4aa99215fec5aa0473c1611eab94522621c629187db13", + "regex": "(?i)^https?\\:\\/\\/robloxapocalipserisinggodhack\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f87c53e67071a8072c236707b598df29c20e175948c740924867b98c44ac8f7a", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxqueumbosta\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe05cb0220abbce943772e5ba6a9f6a7e795e19f9db605adbadaac237fc63973", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxqueumbosta\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "405569a55d0243d6d968e39e362c0915b842fab7d916894bede8726b0f63478d", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxqueumbosta\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5614daa7a3658d24d03aa0846800b4470c8ca030e4a18291c9b1479d2d5c5af", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxqueumbosta\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a687e9e809884073719244e94d888d90e0f84772aac4f221b811ad45123966bf", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxqueumbosta\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba82d4b0c419e529da3d6685329f7c07485ecb159b326514c8b5bbdc158ac3df", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxqueumbosta\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce771972c044fdcbbc72b877eb20fc60f39c24dd5a72ae405b98c881cb6eb1d8", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxqueumbosta\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75e82522643f3f9b4764ea22cc0e67b7a11f3f5569ede10c2231b5b2ee2f73b9", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxqueumbosta\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e721f17357ae46e851c8d3baad2354bccff981861e23d64b184620cf8f06990e", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxqueumbosta\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cf9f2dfd96cb4005201ea724d2c32060dc9ef76654f763067fbab056b4122d4", + "regex": "(?i)^https?\\:\\/\\/robloxpreventhackerguis\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d42735f799dbeecfc9e9a7f34643875d56c8263c4a49e23256eb37a1f0ab2e3b", + "regex": "(?i)^https?\\:\\/\\/robloxpreventhackerguis\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ffb506f9c8bc85241dea4d87a134962871b383f3f867be258e7ee01471fa92e", + "regex": "(?i)^https?\\:\\/\\/robloxpreventhackerguis\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6edb046732444ec1478598ed1fcc4db0c9cc958c0d47bb0e00e6b21a4ecf9730", + "regex": "(?i)^https?\\:\\/\\/robloxpreventhackerguis\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09259656a28590e5284d853581b8c7ca55d682d04db187db029acfc7ba880c74", + "regex": "(?i)^https?\\:\\/\\/robloxpreventhackerguis\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "554c858b8a478e6841107eb5852a09112d3558487fcf0921f0e4089f41df8cd0", + "regex": "(?i)^https?\\:\\/\\/robloxpreventhackerguis\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cefc8aacd06856caccec1e640ebd4eb2d5e8cbe187f788557069d5fb562cdd89", + "regex": "(?i)^https?\\:\\/\\/robloxpreventhackerguis\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21a740ec798d0fbfe8accc27d58a0251fd56c570c8b847099c9b48df8d213a6e", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a65740170849f9c81012084bb9d4494e25028049237c5d550e889dfa7a84ee9", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db79f5af38f547a83a1257ce95c373437666a8d790f304f12b038e68e5e99b59", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62dc93b072868eae7b4b26544155c22098cad4a4c7c51a9ab83b801d41fedb27", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38215d8be0f7be814b982a1cd13749604cbea763ea7c3b744734ab5df673aa3c", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06b5d77441c47b3f9f3a13d61681e94e414c8a92cf010fadcb7c903362ac02c6", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0033fe19f97badffa02a3a24c9e9700d9fd5f5b9dc08ff7b11eb5d72d2ea15b0", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd55763ef0254a0953bba751a053b915fef971604b8f0ac110b1b5d0abeab41", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e7f831fe023055e0c2186faa83ac7256b24a8778efcc75f93a65d25afcd03f4", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b35da01138d4ed0180589d1f5966fd822dd79ad09c40b7f68e9aa5ef8582bd6", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f431d14f57e211c15bfb78fdf169a33f92e20ee3f1ae13f39f6cf7bff54c561", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc2111e8c77c0e2b10a0e55fcd1242636b1f56a71873851d8f1a8af8ba6ddaa3", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0751d73a6ac17ba2cd2c2c106dbdb434b6cbe9f9897a98c31d06c1aa1e24527b", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cb9ce712f9e2c67358222c9cd6227dcbd7e4591861d2e24d209514985bd8ef5", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aec25999943c9159ce780655e8e0e06aa660d6aed884913203e4b5e3a5253507", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7e15cbdf971213bc0c2cf3fe52214252ae88497fbaed37a1fd0ab381acc640b", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "603d62440bfb28fc1b2d357763fff49e231455230630291f22d8eb9188fb1ca1", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9190b5dd0432f9a8a0eb508429f5522a61083fe4aaf8438d9b611f0736e0d364", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "665a0ac5a4e76f63cf439feee6dd7174bd0c16eed70cf47aae4891fca0c8e029", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25107cfaabcab7d03fa1da81b111adced39fc43b262ec1c2cd037bbb976f7126", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95672c5686305a5775012ef5a505dc8fc74c3f85ab16574c771404a906b5ec74", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19af6b29259d3452233a35faf0ef7063f5959b37d31d5f17bb3f81f1bad868d9", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "944330873b304c89ae0a0803e79a61762aaccea80b39c675ab1d4fca36df4359", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1ad9c2cc729ebc88177cf6eeff463918b2df58352438ebe42d66d040fa62ff1", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbffb0412725bba12b78c9da66b7c2452e696252916da989b6ed1ec1d94efcc1", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "016e3cbc151e88caf1de41e3a70511c2da7eb6d139f0f52d0af7739887fc26bc", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34ff3d56ade75f6ffe53425d423c16f0ceaea29da6f3c941d44db6d1c38d2eec", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d44271e0ab84afad39c8fd99fc6eae6c70ec59608a2e5f2937634d29d5c8e3a", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee1e55b9d28334f629f6264a6012033aa1c71af813e2f7e8429decc571a7ae5", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61d25adffa62e4948e2dbf849dd5a7d78064a26599c1c445734c87a16c53f448", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e50a8ebfa8dc95ec86199a2bec7d0cf0c08947368cbcc3718a1a69b990cd1e", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f03e60519f2d72934a111e6ad59324c08ac97c61913818982b2e1177b2c3c40", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a8ecffa7911a94bbe2a4a1d0272d880754bd61fefed8eddfac052a45c6083bf", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14a37700e922a2df2fcacfad79acd83bbabe128ba0561cd8e4815dff5b9a1e15", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakcoderedeem\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea8986847ab09f25e64f246d38e1c1125af3cf0c0a4c3b292026f1c8dc50f3d9", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84f7edbb7b4bdd6e9d16741c8fa38b3348a2f27d460ad1fff29a3489abc66bab", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50641be04580e4f724b14fc803d2fb58c3d47bf4426abf8828023d429cafbded", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59ce4d67d3bf5988424a14cfc935dbf26b9e9a023bd2387f6ee13b9e8b4adcef", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27d0d376fb70e2caca7c760d7fbe30283a7220ba7184725f41328b03c73648b8", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf1b4b8371ec6f14604ed4d3770aeb8eebb3187ab59cbb8e4322ece5b40f65eb", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0c5baa2afefcd9c0b2b98a2790fb56ce2ca77ec5584b99ca63997cd5a95c7c8", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1ef383ec7e8ee30aa969cad6a639d1326851a55dbeb804610a86eba9d6568c1", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fde6d2d3c385609efcd27e21b178446522a1cd41670c29570fcfc9f8dfe70842", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfdd9d2d09eae7f21fd8d4d8074baa5e0e17fc9e9f60d1c0927524345cdd6124", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4c63d2b200aac0a80651f0a68f8632447ae0dd7b2b4f37890a585ccc99be258", + "regex": "(?i)^https?\\:\\/\\/comojogarcounterbloxnoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c0e3aa8fba4ea2c390adf3b60b3483d0b05dd272804f5d8c8c4ff5401b539c6", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c13dc4be917d64a0d9da58b98007fc6334617d5a502eb3eaa5936ccbd2f9980", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f776056eb9c7c8414760f52e4e5efad87cc60349405a000a5ded3959e2501b60", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "299963ae599d9eda2126a8777c0e48cd4bb4ea2087a080eabf19c44d9ca0b46e", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8927fb3bf6a5a5a72e0d9c6f4ae9f8572c187e6c3a02522df8df84c461016da9", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84979924e92baaa766990352531b307529f9aeb9976ea2c0db9ee6bb41bfbe5c", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ae8887ec02180778d1cb75266bb36c27124f058fb1be8bd24a94ff01188cc9e", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a5aa4f04053d7fd4d8f7118117a4b697551170f5bebe7cf14a03488526eb148", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5b2a098c80f35f57ad4a90af37223538818fb29807388295db334bff3fd21e8", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d635cec4a0e0773462830c2ac7915ecb845c16176b3488e42a6d1931e7b2df75", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35af467986e2afe5459882228213d7eb77db9ff7f41af4ddf1a5e33f38cef872", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxcodico\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "771f89e51769231f755514716d09aee7ae07c5f0ff8e5f143c3a5d541e82e0ef", + "regex": "(?i)^https?\\:\\/\\/robloxshirttemplate2021free\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ee7616b31de1f8e02bd4da5d65296c325c78530ee576e52a6716af3cfdf8bc4", + "regex": "(?i)^https?\\:\\/\\/robloxshirttemplate2021free\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2bd1b225ce07d42a5d17a506c421a1c9d31d28bbef58270a627262206b1027f", + "regex": "(?i)^https?\\:\\/\\/robloxshirttemplate2021free\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bef388b27954f738682d9fc58b827584c13a7fa83607ee9b4ca3801ac10b1049", + "regex": "(?i)^https?\\:\\/\\/robloxshirttemplate2021free\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcc0ef8f10b8553599997ebe29cecbfdd580c526b7c4db5e18b4dc3ac6c03e6f", + "regex": "(?i)^https?\\:\\/\\/robloxshirttemplate2021free\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e5b563c07e8990f1b85c06a9368007216a665b8e36f85b6d5171cd229c06e6", + "regex": "(?i)^https?\\:\\/\\/robloxshirttemplate2021free\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "833bb67fe510746c99ff490f9375ffc0c5abd9fe72dd368658d0699962e7411a", + "regex": "(?i)^https?\\:\\/\\/robloxshirttemplate2021free\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6af0afad84a6bbb5a08e68d01ad78da095f2be50d3d7967d9c6609271150f9de", + "regex": "(?i)^https?\\:\\/\\/imagensdojogorobloxbatalhadeloocks\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a08dbb1dc5ab0681806e0d5dbcb48814d01be48610764acb8a1b475c3e60a6c2", + "regex": "(?i)^https?\\:\\/\\/imagensdojogorobloxbatalhadeloocks\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e022ead4e4ac94fa6b75e178a7f5b77912ee4bb80e0043e1055d10819da43771", + "regex": "(?i)^https?\\:\\/\\/imagensdojogorobloxbatalhadeloocks\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "065ee37ab9d2afffb29bb4cd81fa381151503ef8255e9988380878e6266a720f", + "regex": "(?i)^https?\\:\\/\\/imagensdojogorobloxbatalhadeloocks\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f768e9c7466024977e129872831a2160e8d10732c6d17bd5c5113ececa299092", + "regex": "(?i)^https?\\:\\/\\/imagensdojogorobloxbatalhadeloocks\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9744eb2343e9ce0a8a0864db2e0b2384db5c1bcd0799e1b4f1647097561de70", + "regex": "(?i)^https?\\:\\/\\/imagensdojogorobloxbatalhadeloocks\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d55997592bf1babd7e33168a6b711f1d34decccfb7483d0716e1b90d1840837", + "regex": "(?i)^https?\\:\\/\\/imagensdojogorobloxbatalhadeloocks\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba2a050450cd412542baa331fb48ff103b150e28876ccab414225f8e96dafc43", + "regex": "(?i)^https?\\:\\/\\/imagensdojogorobloxbatalhadeloocks\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d46ae00db1360764d2cad158d8f73d26c7de7ca911942dea647c5d033d0e92dc", + "regex": "(?i)^https?\\:\\/\\/imagensdojogorobloxbatalhadeloocks\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64954cd8f264f32e012d936cccb33e139c5ba4d56aeb3db0df3221b7cbf31dc3", + "regex": "(?i)^https?\\:\\/\\/robloxmodrobuxdownload\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca2a250b499a989a008859af686341b7d1c16e8f77053ee6a3d77fb695c4cd0", + "regex": "(?i)^https?\\:\\/\\/walkthroughwallshackonroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f951e8e330d8473675baaa24c7bb6929a4d70c81f7ce38135c7b27a973ed4a2e", + "regex": "(?i)^https?\\:\\/\\/walkthroughwallshackonroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "701bd32f563e679a193ea5d34c05187ea8e157c90ba0f0e2db54dfe1765a4ea9", + "regex": "(?i)^https?\\:\\/\\/walkthroughwallshackonroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22c238603d4a0d3924780ec64f3bb42b91c986dbfeab8da97f77151f813e0d5c", + "regex": "(?i)^https?\\:\\/\\/walkthroughwallshackonroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f89b55b60e7899f6e407da5abacd57e615ff301c634ce7add5449b5e396de12b", + "regex": "(?i)^https?\\:\\/\\/walkthroughwallshackonroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8eee1f1d27894797039835a5a955ef6d92f89afdcab1df9c5da981bc9fb7cec", + "regex": "(?i)^https?\\:\\/\\/walkthroughwallshackonroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a3c42bff0946a2cb89f2e2975ec2a8c610d4a24defb1d08adc3acf8ec44a908", + "regex": "(?i)^https?\\:\\/\\/walkthroughwallshackonroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea3bda34528a6cf152d2b5a175e34f97d3113bee30b92a7017955cf4ab8fec76", + "regex": "(?i)^https?\\:\\/\\/comofaserobugparaganharrobuxnoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8880922037f514ed9e3cf890ef7f0d62c843ed34af2964f3044bdbe8d22bb615", + "regex": "(?i)^https?\\:\\/\\/comofaserobugparaganharrobuxnoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a8496dfed8add407894e7599bc091008a756887753258bb2a00a65fc5d3acd2", + "regex": "(?i)^https?\\:\\/\\/comofaserobugparaganharrobuxnoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19b8c0a2e26569df4733be12f2297312d4fd96aea736b0c9984e217f1af417ac", + "regex": "(?i)^https?\\:\\/\\/comofaserobugparaganharrobuxnoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "112be8b7e4fd1b42525f70f565361b3a6f2d1e118151c0860af5e4d2b97850ff", + "regex": "(?i)^https?\\:\\/\\/comofaserobugparaganharrobuxnoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56ac2472fb97f9084ce20b5cdf714a47ce88bf4da56df6391d992eff23fdb678", + "regex": "(?i)^https?\\:\\/\\/comofaserobugparaganharrobuxnoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2dd65d2481c2b3b1d8b8a0640a2fb037fe2a8867e6287abc0ac44afe5eef9d8", + "regex": "(?i)^https?\\:\\/\\/comofaserobugparaganharrobuxnoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac140cd27a485292c45c28ae354acbee8b2dc3d994a8029f59b67e7d42dc2d29", + "regex": "(?i)^https?\\:\\/\\/comofaserobugparaganharrobuxnoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ff831e1338b17b249f0e852c0a137668b935c66b82c080a4053174b06265ad0", + "regex": "(?i)^https?\\:\\/\\/comofaserobugparaganharrobuxnoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c5c1494a800db7db50836833fd53db78ee23f28ff634993e60f2b6644ebcabd", + "regex": "(?i)^https?\\:\\/\\/deadfacerobloxdecal\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae26fb339aa9c2e9a77c53b3795cc6b96a178ac5c61270eb9508f96463de948f", + "regex": "(?i)^https?\\:\\/\\/deadfacerobloxdecal\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a33f773c639a3a02ba1a6df29d8816d7ab7a6595cc4365bed853784e022b9f52", + "regex": "(?i)^https?\\:\\/\\/deadfacerobloxdecal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94acf176b2e16cdeef48be1c9b0f5997a7e83f0e60cbcd040618da43b7738271", + "regex": "(?i)^https?\\:\\/\\/deadfacerobloxdecal\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fba29833c27bc0b8cb8a352dd6c6d9e91223ffee008114470870882cb581957d", + "regex": "(?i)^https?\\:\\/\\/deadfacerobloxdecal\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb298a018ff3f590bacd10081f22940e414961c0bc15ebc47b3e4277ba924720", + "regex": "(?i)^https?\\:\\/\\/deadfacerobloxdecal\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a74627b7d834a09027123c3cb0c94ed42d10a75735c85e9045f2a979e9a3a241", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "185bbb0a0448d344ab73fe5f0c1a9254a82721965f84a2a36a16d85fc727cc6c", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e58b76f5ee0b98b100a09db5999cf3664f17bfe3bfce2c1ade0b44afa66fcba8", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff6a7fe4ab019635b021c36f2cef8db49e41a42c255b9fa5a6b99bca81d0d74c", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07098af3e5acaa62916fa478296cec678eadecdb48da3993a81f5dd2637b4b3e", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31c47d0d92584350f794ac4e7e174ae84a118d6b907b39aeb1f72691a8914b72", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d12b4316b9d776c8a0ec4412ef66f80d3b5501857d315c2f46aa4b0e873d6bc", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "940193762254d07d0b561a606afc06113ef305465e5dc7b72e52986d59e35775", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49bf1f8c23edd75eb06ee9d5113717d0be198303beaba9f783e1afebc4d38095", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b324575755b13c725842ca5e0ea76bdcd2df9b7f949a17c785d4cd4d6227b94", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37dfa9d3c87d95d5e3de810f980cd2ad39047792b34f905a1726bcbc4dbc995e", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b69fb197fdd35b9267c38e84b6357902ccaddce4496d581f7f52b2efb96fcb5a", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fb40d68fc8b86651297e3a954ccb77bc42a3ff734f937ab2918637db756feaa", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9d9cf675778357cdf87b31db16136ac542e0badecb14f61571a973195455698", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0d70429051f1c1cac53027a6ece8550731b444a989bd2d5d1c477bcc41fb13b", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54d722709196095bdabedef62233c9bb5bb6c839408d8f5daaf149377395e124", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "184ccd4e85c35c6dfcf146fcade257085b7f6745165379318f96e438e335f614", + "regex": "(?i)^https?\\:\\/\\/2021flyhackroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35f8cd266d185edbf71c67f1b5ca5184191c9de9da61711c9520db9631a96c57", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3eaa5087d835c020c2fb58ab79ec5533d28ac98bbc67c89a7313e613e3efea64", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "968bc518a696bcd2a143a052eca115b1a4db8a020a4312c4a1b59fd71f2bac5f", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e1f0ee2cc07888d8d9ffe5c7ada65c09d1ba016b63ce997eeb87b8da41189c", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d54764c0aff9c5e7dc909763f2188dc8dd489bebc0621730d29eaf3c69868f49", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd8903988e68eeb6550c20286b345894bca7639fff2af55669a3233eec398a6a", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7be46a2ce2c1771b2fa4388591df6e6e626e0b46080b33115e0cdeff2d37ca6", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "888055920b458b3e093c6c7c8aa520bd7d15104f5e1c059cdd125f5683081c97", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fe5ef4ccb38bf68579c77b12311e2bff45ec5aab8479ffefeece506f3881f5f", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d926994fe45cb6ce42dd47390665523ca0ddb36f868b9665108506a1852d147", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e73a5b84af598c4c2f8cf17abc55624db7fa61d88f4eefeecff56aa852efe3fc", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8544a07fb373cf6b392710b147432a17bb0493869586809b1db4903f7e86f0a", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe60f10c914ab6d44eaa049d9a02bcd04aa825e16f8fc7b516d5a3532d6ae09c", + "regex": "(?i)^https?\\:\\/\\/jeanljogandorobloxdemacaco\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b712959d7ff94bd7ff6ef2eaab28d02b1a3ec1abcc5df8189ce0fbe1f1048645", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7c151d2e641341f543f67732d3e310c882f4337250c8664ae0644340431e3f5", + "regex": "(?i)^https?\\:\\/\\/cheatenginehackroblox2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f7bcb9b89de01227875024a8add0dbe6ff476a5863e2e9710158fbade74812a", + "regex": "(?i)^https?\\:\\/\\/cheatenginehackroblox2021\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5d9471fa642844283636395d7e3966d3a2e4499cb5c08be0df7154be723d02", + "regex": "(?i)^https?\\:\\/\\/cheatenginehackroblox2021\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ef48db0e6165f9fffcf0b30aec356218eb28ff8bf42b848c7ecba2b3320fad5", + "regex": "(?i)^https?\\:\\/\\/cheatenginehackroblox2021\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77d984f51d866f74bed4c1145167cc2c21a1bcce234fc85f4c841c69717602cf", + "regex": "(?i)^https?\\:\\/\\/cheatenginehackroblox2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "705f17fbc24df0f804175bd69f6474023c7caf14c3210383cb167f092387c037", + "regex": "(?i)^https?\\:\\/\\/cheatenginehackroblox2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8728359c2038e5c63b89c11bc72eac31affa8721ae58063942f22f407dd8edad", + "regex": "(?i)^https?\\:\\/\\/cheatenginehackroblox2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc27eafbc8cf2c826b11fbbf30140fa40bb64dad91857d7d804cebc6b8adb174", + "regex": "(?i)^https?\\:\\/\\/cheatenginehackroblox2021\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7487bd8c97418977399fde1185c2ecd64a1073d168058ac37cd8d3106c4757a8", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2wirearthack\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d89642c5f7b702ee4b68ba2a26a34011aa63dc95f2d029717bca3c1d89e39102", + "regex": "(?i)^https?\\:\\/\\/robloxshufflecodes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81502db5ce1b44a1966cd4eca83141514687d2d22b127b2d89b8e5b91acd63a7", + "regex": "(?i)^https?\\:\\/\\/robloxshufflecodes\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f823e26848754276019f1b3bfd2ae2d2a4387151defae07019854f481780901d", + "regex": "(?i)^https?\\:\\/\\/robloxshufflecodes\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ebd967e2cff17fc0c0e353d5644ab6e270856b691253c7ce2e181c3956bd962", + "regex": "(?i)^https?\\:\\/\\/robloxshufflecodes\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "616e1119f851a21f489f3069c613eabad1649c6177ee8ebde9efea0bd665e5d9", + "regex": "(?i)^https?\\:\\/\\/robloxshufflecodes\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7b70eb8549b908aab7cc97ed813f8ae6ad5625ac58a05d32f23c209df4ef834", + "regex": "(?i)^https?\\:\\/\\/robloxshufflecodes\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "541f78a15cb4f254bd4990cb043982d25a5f372909c24d6717055255c49b4ee2", + "regex": "(?i)^https?\\:\\/\\/robloxshufflecodes\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "093abfb164bb29a54cc25a770252418bb98aa7840ac9782a8a799b3d2f3a744b", + "regex": "(?i)^https?\\:\\/\\/robloxshufflecodes\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b94032b67f7ec64b964c8a6b75ea9fdab7a10ec87c8b788cf3810a3cb215357", + "regex": "(?i)^https?\\:\\/\\/robloxshufflecodes\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23f09b60d55066a0308de00e0d3865d8fa399e5acccace8a59ab7709dba12d87", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49d9acc6db926aea78809b56f6516d73a0e9bbac0863a613766809b5cb07e978", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "379135fc49c801868915ff460e5057907471e198163da993e3154621034cafb0", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9c7885c0c25b390dc003b25f46528a5d806fae94d382741dbac451a4b38c4a5", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffc3be8ca059fad0bffdcc74aee5bfa0da5a80c40a93507098b3ffb0779aa241", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "831ded85e71eec8966ae23ea0fef022cc02994a4ade57134cb0eec527c2e248e", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77212316a5cd2ec26a3102c6d032a233200f5ac2cbb18a8497d60b1faf375675", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d818246f44fc30a5b4520734c5ed5bb4c7f729a4c5915b10b6bc3f2e5441241", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5c2f7abd0a65d72e9e91c214897aac5532d08b3226d815fc84023f37ada9cd3", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "549ee95cd81a75a564cd992861c69cabc19d1f8b07014274a1781b0b3d4c8b79", + "regex": "(?i)^https?\\:\\/\\/buy40robuxonrobloxpc\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e59f657f49aa5366115877fe0768e435694047a7bbef7ee3d3f759f64d82822", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxwheresthebaby\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef9078d3ef4f41bdb573f64a468e73ba83bc59c8929ebf0c8a96555bf5bad497", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxwheresthebaby\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "762b441462923323f850635635deec17c6cbb5a3da4a69113b45bb8a1621be06", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxwheresthebaby\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0975873f9969992ee249d12a7c8d923db03046142b8e43d2f3a317e229ceeb77", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxwheresthebaby\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6af309e997a2619555b56145eef47694eec36d430c44e4c3653c7d20f160e909", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxwheresthebaby\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9950d36e320241794f85074326c3c8c9dc7744c24912273e6bd313bafac3939a", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxwheresthebaby\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf8de7fc76d20b11aabfdc90802ae886c71ca8d3ffc68bd365134079ba7e442e", + "regex": "(?i)^https?\\:\\/\\/imagensdijogobearroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdca8eef3dd03cffe7a70a27c0791a81755e1f697d507700849cf61d1603445", + "regex": "(?i)^https?\\:\\/\\/imagensdijogobearroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7165cdad1040a599c85a5cd1d360aef647a1c0b69e0ba48ed8c68d73cfb04452", + "regex": "(?i)^https?\\:\\/\\/imagensdijogobearroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eee4e635b8afa2ffc9541d51c78db177e247bf265ef795679426df10db45e1b9", + "regex": "(?i)^https?\\:\\/\\/imagensdijogobearroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c003d0c8dbf37ad4f939e922424502bde3da1cbf2289a57a250112ee89ca0764", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bf5d4a0ac3ce8d79287ccb15ef7b3231c54906f6d4a83820c43e40e9576a308", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7019bb3fb7a72046bf4dc5ebbd790cc5135bad06f5d0b0bbbdee7e1553f881b", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4468bc55a4d931baef9de8877971b0f6fa1f88fd5e24e6150ffab2160c1cd49", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21178619a6de3d574afefcc79c4fe0d5a91e9aefe3ea2d0bd6ea65e1fd6dcbd9", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e2c5476f11127e8cb3135c1719c3b9e16bad67ef80e4772bf07ede84805faa2", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01ecc94f0443b6d9b09e800a845d8a5df3397b5173ea524ee6d480a4afda180d", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b460de76e049232dafc444bca9f66b2b03f98a42f781fcbd2746eb21b2a98b6a", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80dd1fe7196bd428cd26488724d2d508016164da1b94e6eaf9ec43fff3d03330", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec76f87c5626c7b079cbb0bb0c0ed864b12fe4a11593efec02092585af0954d2", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74894c0cd9734e888541c259113b381c759d139055cbc215d8761afc04a69cf1", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aabb97f6563e995dfc5c25a3f9b401add293ee5a86ef43df38d4dda59ea8ee0a", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86d3401def6a3c6e08a05ab52717506a9f4209c310780547f6a0b4c93a546a83", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d269b127f4ef46f965e2dfb1e520e6fbb3b4f1912f4bbb52750d8936f7a1b9", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d13d5b9b0eb7478844e61e40e598f25e1f06748fa86497c35984c71f719675f", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a4ec13723fffb3662c4ff8cc39228315be92284e7d9edf37b68e0f3cd513c35", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6914bb8a074975511c8a00ed18a0e40ce7f52efb80493594eb4cd0de723ead4", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f90ee2585682663826a6eacc50f79d522efae47deddf3676e0fab44c152d227c", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca4140ba7279e07173460a687908ce97990171548cbeea69b0c4000ceb9f566", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4534a948f9993eb4a0a8ba1951da3795841ff4d0d995eb6898a8ec8362f578bb", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2389ec0ed5f05cf4f4f46f35d3bfc80eb2ee787079f7c3489702db14469962e", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f921a6ece4a5ccb66713bb10429dc65aecb802943dfdd230ed8bf862334bdcbb", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be384e2efb02eba939f288691996507d91dd1d4c101df7c3f346535d0a59d3bc", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e2d2ef0e064ca98b7b1b51dda469b995a34516e59a741f6eb706416490ed9d2", + "regex": "(?i)^https?\\:\\/\\/creeperrobloxfree\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "287f4b278f6a8decf444cc79dda866bda40457ab910682ad250708094c09df34", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da15cfe45442fef79c9cd167a574a1c1df64c58048dfd254b82e29d2c22eaf75", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66170b12041c033406ecfc27559d43a1eb696cd0ded4b7cbbeb0850f27751c5f", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd9b38f27f4a7a47dbde628729a345e43f29f2770e13c343c79622e547ad707b", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef9026427f3d94e70831fbbea142efb12a54a0f228a95a1486983c1bf2444ce7", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fea0f8026922dc173578cc0b7faab344cd0c639686f2575d836d4bfee8408c0", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f04f27e8813cffe73d92aabaf899fa619baea09d890486c148b4fcf475b1b16", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49ef23759ddb54a15e1e2d3d9a7ee3a09bf5d67be3b517eac6248b26e58375c9", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0a5c30d875d7b113e1c66788d135c4131affa125be1e10d821cf520bb8278e7", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66fbd9c9e552bf3dcf510cc7be4b2c2fe54eb3f77c69efc75a6dc1b51226a1ca", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7983c8904c0acf661bb5a4e92fc1ecaf8c170d39ba5fd4922bbbbf941b187fc", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6944917ac1aa40bd5065d999bc6d2c0665ff128e9a2a8fddf45f2fcba3751664", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae1209c3cff7ba1018bc69da619d93661278c98763924eea36cb105611ce8135", + "regex": "(?i)^https?\\:\\/\\/fnafjogoroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51bc9fa286853c60c3ed0057ba87b66e3f05c008fcccc977c85d1f80206913c2", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c41751439eff75f8d7892c854d1b01edfb6a12ca1134a4fecb92ee8cb26541af", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0507c03824f24e0297c76419ec0fe35ba9fa9c9d9999c5cc82e390398d44c240", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "365c80f2a877408332f04c15fa052d1b901c4b42c1e3bfb19c3fa7e352541042", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d76a9baab697376814a6c022c7b3a42d6116a30c59dea741a9c2a9d8a3214afb", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ab102b63a85fa83174f9114c507bddcdd95668eee9027beaaef7e865fbfb40", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bebc333a1eab5024d0d360784d4530fb7ca79704e73d46c3ad548f3dcc4ca3f", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc5a5701d49e63c81af34cea8a02ddad31dcce490a707800618e6a99e14ed636", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65f60b7858df0a4002e5d2912898fb31da7e1ba3bd6754e12dc8ade338d7dc0f", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71eb864c7a7ea4b7c450213a7ede82a7326018443314a9c381b79fb097af9ca6", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbd09e93db30e7e1d560960d56390d441e6c1f931aa833606facb00709eec0ad", + "regex": "(?i)^https?\\:\\/\\/cavamosomaiorburacodomundojogarroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "727864cabaf0c2eb0723c0fb2a9f31dc84af67e3e64e4c603f08193914ca8595", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "145b84affa2584afda92f586d4d8feb0398a9640ab425371b7676f3b19529426", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f8cbff342bf2178695660db969973607e91906c018ed38ac2d1ce215ef1f79d", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "752b841805a3c1cf84d1ff458053b77f40263c9085a23d4d24e97161c1bdd50f", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b8e992db3e366bf909e5bc54156c3c264736446b61bc0c5d04d39510847ebd", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdb7825064f5dd1695d910f96c7a424bc3e642698f08730c345343381f911b4f", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3920d657f2db4f8fff2d845f1119d4d60777cdb467db6197c33e140946ff27ad", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3228b836f97bc2f4252b6c561ed6880cf40706d1678b98769392a7ed0323b0ec", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6538be59af8bfd3ecf0f5c86f237959808be4323f6b44a1271177a6aec90da9d", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d9ab695c265c624741c4e4f225edcfe1e1d61f5fda0a648a8de4d41a38ecf4c", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41156038b5e836288c5220905098163f6b8ca28d7540cfd91f9571cbc122fe0e", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1229f0716cccf80305420fabd1208658aa521ba63a7542cd51e2b0a388ed9f03", + "regex": "(?i)^https?\\:\\/\\/cheatingonyourboyfriendinroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4123c62178bc5f1782d659640a8c551dfb01367dde565508fff58f9329fd152", + "regex": "(?i)^https?\\:\\/\\/metuamaamsk\\-lgin\\-on\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7161bdaf7cd89184f209af3ea8539ccec4e81858c45389a7915ae27a8dddd826", + "regex": "(?i)^https?\\:\\/\\/mmotamast\\-logi\\-ion\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1e804972619c23047e0d5a7a404c03c8a18b697b2c1a609fc878140d9d8c238e", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90197db0cdb57bae8c2099f8c4bee441ecd6436edc6575fbac079003c2b65c3b", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab497059b6f30e4313b2f1946bcac055df487a84d23ab66feebefc9b4b1a0492", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c2b3f9f988e6599f157217cc076fa470f9b7736da76955dfde0458f280b67e", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fddc72fdf66b2a208cbf999670c5388780c6fc93e1e2262e7086388e0099603f", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2e00ee7ec213b34578eeabd719cf6c9c02fc54a4b2ebe96ff7d2ec2210753dc", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "026f0fbcd315c6461ded386d6b9a5129a73bbbe71c14f289e34203df2bad56d9", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f2cf10e305a905f687ecb1981a21b110b70b692ed492c3d5c5e79ff617c726f", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "082455f259f9a8a15237b6d13e012dec85d9448ce1bf114a9a841b14a9d103e2", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b323694f72dffb9dfff347023aa75deadde107a10027534119a8200d4cd96d59", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodeforteenidlemaleversion\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3532e85dd0494cd3e576bf4129e4728e498fb7a880662d10fdbc92fba85e731", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2wirearthack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37d0e1bb653179662369a58edb7edba2184f25d3451be65fb7d83718bb37638c", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2wirearthack\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "314cc38904e3a6bb759adcebf3e44d935568f4f69fc95d913472b7c4ccc44799", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2wirearthack\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba60ac565c37fa7a3c067280fe728a355abac9531db91e8103fa7acefe6ce41d", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2wirearthack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b113a5ce6c71c8cc975496746695afdd53aa97e114f629ec818055edb26c386", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2wirearthack\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f343ca688e8894b6b0d844f646e4a1fb4cd1dfc336a8c1f8c1a6e119e724c131", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2wirearthack\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a38070c5804bb37bd5dc48a025e2467a24c5013ed2f0847eb0d49bf09578ce17", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2wirearthack\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e4d8c576e2a907a56abc960f3c1afb25b95a139bf8a17d16c220f6c4e9d21d6", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2wirearthack\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be816f09ee6db9e714dab04b737ae6277392b7e0776c9ae4a05c65a65f190340", + "regex": "(?i)^https?\\:\\/\\/beautifulrobloxdecals\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c0e33c1505fcc8b8330fda0111b62d73471f36899f7c2c65ffae51ddb888920", + "regex": "(?i)^https?\\:\\/\\/beautifulrobloxdecals\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b3035fc27d07f74a2106bd51ad02028f6035f4165b83f82a6112fc2f9cdb946", + "regex": "(?i)^https?\\:\\/\\/beautifulrobloxdecals\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b524d63916d347356e730ae3aaec92424957c61802bf096ecae6b5e77ed8e184", + "regex": "(?i)^https?\\:\\/\\/beautifulrobloxdecals\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e14717909eb4fe06cb785b0052fa1f2096f84fbeadf87d31dfa468be4f4c7e4", + "regex": "(?i)^https?\\:\\/\\/beautifulrobloxdecals\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8039b2efa6c1b0469b00550d9e69bb27ad5ab943f71ef4b2bd127b2835e9bf4", + "regex": "(?i)^https?\\:\\/\\/beautifulrobloxdecals\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "399333fa0d6a26e10976eddc515a98ed3ef3cd94321c299d7b58ed681eac4c49", + "regex": "(?i)^https?\\:\\/\\/beautifulrobloxdecals\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c525af26edd162f40ce047fe8ceed89416a58d01d8836826d7d397b8f9360d5", + "regex": "(?i)^https?\\:\\/\\/beautifulrobloxdecals\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98ad4d7de4ac007d004e208b6e31eb75b47318ad6e97544dd138ded4a77c669a", + "regex": "(?i)^https?\\:\\/\\/beautifulrobloxdecals\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "060accc60a63e009e999f2fe7055713fd88bffc71f45c452723d19ad200d2ef4", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bd0264f42f111dd4ee3282940abaab01c987ba0c2e7ba6d66845f795880f829", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acac60b7cc2f088710866b231e97310408aa0eac711d6b498b187c135c0f257a", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a37d11ba5930f8013d1b6251e98987a3cea25c2cacb38c6ad40b9c5cb1fdb49a", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38c52d812d736467adb90a3ad52530c9479a85341e44350e4c903d2ddfbfc985", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b3e0a5f48022eb4cda06387d80946fe86fbf11afe40b3484b86c64434c0e596", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59ecb2ec9713f040fd4299772c33d7e865839b97480a2425b75ebfdc17a57649", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2c40b99b7319feddcc5e16688b2d7566529507d225d444562304e531a4d2d97", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e829f5e223733f004fc36dea07c17ae472d98c3ef8ab78ce1368faec28c8f033", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "539c192db4c01a97c0f48d50b2146f961a9baec604da696acc18cba64d49ee5a", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4782d010943e641f2196c4766fcb1f1598ae9eaa1ff9ef144151ab8ff840b83", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df894bb0c4418e200c579d9e36d6c0214b2a6c5066fab953264a0cae8f558c3b", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eac4c330f9fa0a3c70080baaa39408d15883b97b9115c36f9c2bd774fdd56221", + "regex": "(?i)^https?\\:\\/\\/freecreditsgalaxyroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5d8078c1804b90427dfdc94e9bb7cf8ddb2e6d04a6b4a36f8ee53b51dae3740", + "regex": "(?i)^https?\\:\\/\\/jogandocomanomaatualizasaodorocitizen\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c976e70f1662d6e9293e8bb25c5966f47c1d70b452d0ab041fdb9c1e901a6be8", + "regex": "(?i)^https?\\:\\/\\/jogandocomanomaatualizasaodorocitizen\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a175fe281f9a9aebfb1ecf431f1f5e7408c47b9985b8fad013fd55977e5a77c", + "regex": "(?i)^https?\\:\\/\\/jogandocomanomaatualizasaodorocitizen\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba843576be8ec4e9b3a966ba215ab8e94294f86893543ea36ab01d6167b2fcbe", + "regex": "(?i)^https?\\:\\/\\/jogandocomanomaatualizasaodorocitizen\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8183c65ef4c7a58b10c10108af32052b5031cab740024cb30385106e3d1be9a", + "regex": "(?i)^https?\\:\\/\\/jogandocomanomaatualizasaodorocitizen\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5d668dfa6c4fb2265efab8d72ec0124db66ac610a3ef0ee3ed856b215829bd", + "regex": "(?i)^https?\\:\\/\\/jogandocomanomaatualizasaodorocitizen\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caeb816c4377124fd0ed1713d4e2715b1ee9aef4b2f5215c55b8e217c8852fda", + "regex": "(?i)^https?\\:\\/\\/jogandocomanomaatualizasaodorocitizen\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "069d60f73197aff9a65dd3dc0257bd403d7b2b74e7e8cbbf27429a60fa582c85", + "regex": "(?i)^https?\\:\\/\\/jogandocomanomaatualizasaodorocitizen\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce603068f68fbfc8a0e11d2731596ad54dc71f76a76515b1ae08174670bf378a", + "regex": "(?i)^https?\\:\\/\\/jogandocomanomaatualizasaodorocitizen\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54c97a043558d1478ab29feb7448f7fdfe6d5fe1baced6a924244a03224987e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-login\\-page\\-clone" + }, + { + "hash": "9001abfdbdda81cb8309b8d0339ae6a79d72a70bc87ad38a31326d49b6857a97", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89f891ef3df0d45184ada5d47a2412ec3ea22664a38af2320c92204baacfec40", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e87b1a4f44accc33cd07cf61ed9e263b11b5605ecc9bc9605996989f67ddce1", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "054ce7515622db3bc40ce9a81d2a0d5ced84d6ab9b0c0097c272c01043c8a2b4", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d5ca25a68ea4fe93f2e7bb1b8fc3943e91bf4c376f4b9cb678671d3bad5361", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7f9decbddda856f21f39493d81e5576b1004b948245d961e64f30303684065a", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ad88f430432c2c6b4d8d1e5f2f64faa518dde82da81f38ccf0316b6000dd711", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "542494521af60605dbec3314ed7b4ba13849866b07fed2acfe1e35c60c078aa7", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a38a457c60195b7f130a5ce15070234528772769858cfeec26acf3f1e779a3be", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d21b6ed0ef93b0b19e9ae2623d0eab07ca122b4ebb55439a0aed61890016980", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a495f1a55cd8703328171beb592ba0167d311bef9b8e43b250ee182a21b117e", + "regex": "(?i)^https?\\:\\/\\/freecodesforpromoroblox2021\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a23864f920e62be8b7997a3276cc9ca8ced4535f80fc55fe3eaafbf4a01b8d4e", + "regex": "." + }, + { + "hash": "56acdee5b3eb36c0b5dae2f12c4663614f9dc3cd2725779dc0823abb61698822", + "regex": "." + }, + { + "hash": "4f937efc5963ad0095bb3a5ac94b08b2930fc187c755cb8f3aefecd2d94d55c6", + "regex": "." + }, + { + "hash": "28b7b8356729cd0cbb0f44236f596397c2e701e79f762b40619a3e1bce201787", + "regex": "." + }, + { + "hash": "4c4d50b669f5d3e03ec6bda1a2c925e1a33864278b88fb8cdad311dde288e69b", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "979c01053de72a729e438a8649d2d47ee2fceea1bf6a2faecc7a501ce2e1753a", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd33a482832a576655505dd90fdd9099023d606ee95048625e8eef8662b2c235", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc386a1b5f791530a8ecde8fe4c223ca2fd9b5aae3a8e1804f62945d7e1e00c9", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1eb36e44d68789c3bc6bbc6c37e6ceaee9ec556420e1b49084d03abe9266fba", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9164c31bbfe62bdb6e2ad6fe6071d0b82a44e0777ad43fbc00aaab5016ca8a97", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cf35ca4f7aa4b46f6238972408257549a89476489c4e1e686121187d05946ea", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19e4b4cb506073046f38bcfe244ef9094aef790051952dc30a056ae0a9f0a880", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f823c1002b6d7eeb9e45ec6d664adb31caa0b8b8c754f21ccb4670f4a0bc682d", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4b2826c0c168e691be774a746146a46b9164d192c1aeace3d96a813ac8d34ae", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e24e875bd6bcea0397b3da49019b9165d23f691c30540fe99669b78582c84eb5", + "regex": "(?i)^https?\\:\\/\\/grouperobloxrobux\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ccff96387a57901deadfc5422337b1f1f7d79ebd8a7dcf67fa8c744abedbf00", + "regex": "." + }, + { + "hash": "f5edb2e5885a59e3e09e776f84740907c54ab92e82c764fe2af7864af71c96ac", + "regex": "." + }, + { + "hash": "e524bc38f692e00b67ae097b2e0cd35dd7d918a976a27f5db60fedf3fa859022", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d5e0441acdf573a131860da8c4dc03eb94ddc3108cf1e6832e641867ff23a13", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbd43f419de56ddb6d1ee3e313ab4f6384affdb8513ac1601b102e960d829e92", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71fd43454088411f81887b6b3d06ecaba458d65787ac6b2fed8ecd4d13884186", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3efa9fc56162490215c74aa4e1fe1d66fcb6b0df6be3e78d89752ffc4e65648e", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd7ac20b6e9a37798f9d6a475fcfcd00738706d9a793d085e296a438574b39c9", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2e4f1788b047a06ae67187d7b809ed3a393d3889238b877d07dba6dbd8eeaf", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c99a7614d81ce235f38e8c43831f03d63d7aecda12069db817bf24b4bfcc3a55", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eebb28cad02f61389721763d23e377da993dfa0b97a6b1720e864a767cd5cb8e", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57346320d60e79beedfce86f208e0f667a3c8aba0aeb6bccf7d7b8759c055f2d", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5826e16249c78fd645043daa2354aca0852692a235a46f50ca237f8185929de4", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc4c87cdc82b20b033a19d344042f80258694c981e535a921649b47b5c8423bb", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee52934754435f30a00c73822988127c05cdd3b262492c1c2e4d60c2d27081b5", + "regex": "(?i)^https?\\:\\/\\/robloxpianohackmidi\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c817b393bbc76848fb53eca45e6f6b083a8d55ee90e71fd4fad01a7ccad55d26", + "regex": "(?i)^https?\\:\\/\\/hackrobuxrobloxpc\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a046c9f065a0e4b8108c2ea237eed447f3c49cd7836b626742c51691b4a25921", + "regex": "(?i)^https?\\:\\/\\/robloxnaturaldisastersurvivalhack\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fcdaa73c86e08603ea7972a0973eb4e014a652c96c116e8885e625fb11dd22c", + "regex": "(?i)^https?\\:\\/\\/robloxnaturaldisastersurvivalhack\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08871558ababcd6efffab8db6c831d977da9da88b1a11f5e70dd19c9de8a43f0", + "regex": "(?i)^https?\\:\\/\\/robloxnaturaldisastersurvivalhack\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19b58ef808e34ffa7e1f63ea725a0badfb6468497b3f114be10aaaef34ab4de4", + "regex": "(?i)^https?\\:\\/\\/robloxnaturaldisastersurvivalhack\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed82fdc7496193fe8393ab354371e89c42f5a45e19660a3f240853eb3c4ad08b", + "regex": "(?i)^https?\\:\\/\\/robloxnaturaldisastersurvivalhack\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f889b369a534f28c3372ea28a392647528ba46b9342f2ba38dddf1ae512fe871", + "regex": "(?i)^https?\\:\\/\\/robloxfreeeyemask\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d19540d88f0cdb6229caf29e006bbddb36dc6d7516067f1b9eefd1544b42051", + "regex": "(?i)^https?\\:\\/\\/robloxfreeeyemask\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fa00e26a9167e526e87ec736963765a68b4f2e272fd1eced621aacad606da2", + "regex": "(?i)^https?\\:\\/\\/robloxfreeeyemask\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e56f7f9ab336b86a8304647f69ea11707216d23cb598e7d0dafb9ea512d0ecc1", + "regex": "(?i)^https?\\:\\/\\/robloxfreeeyemask\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "206cc1e79b30be075e53030a979c77dcad3fca0d4cc5a9c573a767bf95e80e5c", + "regex": "(?i)^https?\\:\\/\\/robloxfreeeyemask\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "507d902f2913778e25e3c41d32d4d43f027981ccd836547fb903595567fc2649", + "regex": "(?i)^https?\\:\\/\\/robloxfreeeyemask\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a125f50affcc64424b8481633fe0bdb3221e1e81ffd0a41767194f8c0210a6a", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpokemongratis\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c143606b7f25f09c92e60a8dd4c608ab7627ee5494d29ee586376b2079fdd9db", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpokemongratis\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96cbee6c670f0af4a9d2e4983fbb00bac192c9e16c68f885c733c60ce7905dbb", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpokemongratis\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b82bf0951c753d27c6fa95b7d1f604b1c35a20e3dc10a28dd30ef287c699458", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpokemongratis\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1687fdb8b08b095a147d770f83ea4c6ff1d81b9e2d6ca6ef9d99c6f2c16a3e4f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpokemongratis\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bddc168eda1015c234e5e9cbe6d029abaa5820a8f5595a011ebaf22b09021895", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpokemongratis\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b7a46858fbe53f58b6910e9ddc70e6ba1e595a57e4f64a3b4d39f6d47c08d07", + "regex": "(?i)^https?\\:\\/\\/jogorobloxpokemongratis\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d311c8e10b03f85b51a7104009d090f834064d502a808bd21e417c57f685a9", + "regex": "(?i)^https?\\:\\/\\/hackrobuxrobloxpc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20e83dedc2c2dc8edd7796abfdd077cb78dd9942b4dd9c342a0d8d266c37dcff", + "regex": "(?i)^https?\\:\\/\\/hackrobuxrobloxpc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae120db76b42756260bc9103dc53a2ecbdb3e2df9e7f57d760d3298d75169ade", + "regex": "(?i)^https?\\:\\/\\/hackrobuxrobloxpc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbece1656280b5aa7443e1332d08b0dd8ed18fe00199e5bd2ed9c81f0edacb6", + "regex": "(?i)^https?\\:\\/\\/hackrobuxrobloxpc\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "984b1a2bda77bc5498133061c5ef64447e708063a6d79a47c69be642da08c958", + "regex": "(?i)^https?\\:\\/\\/hackrobuxrobloxpc\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4412cd962b5ee1316045a10848aef5043f68a8e831e161931837ca400b46a84b", + "regex": "(?i)^https?\\:\\/\\/hackrobuxrobloxpc\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa7f76f8f584e06d8eb8681ebc98e3728b7269e781e663ade8a13f74347cde44", + "regex": "(?i)^https?\\:\\/\\/hackrobuxrobloxpc\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9794b35eed4596ada7ab0b30e21780017a9022ef082f7bdb79fb9aa90e84b2dc", + "regex": "(?i)^https?\\:\\/\\/hackrobuxrobloxpc\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b93b3628423463d5726e7c48cc12c838bca718bab10b53302ea7f702594ad579", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxwizardlife\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eba978ffa21462cd16af0b4b9eb91cf17f83622afbf19f821b51fab8857b6661", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxwizardlife\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cac24c00e842f97de549533a20a6e9b8f04358803c9cebd6f79da87373503449", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxwizardlife\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cafb508eda917882310a4e40d9346ed64f545647880b95dc4e1470e5f0ec507", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxwizardlife\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d648bc1fc909efe1960ad0c3d4e82fa93d6c47456513985658c1b56170ea8e8b", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxwizardlife\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bf8ab05072723b2fdbb135d88bc9e06d834eb5dd1c8b8190ae8587919dbb55f", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxwizardlife\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "250c295390b9028b8f762f9c37d449acca291e9957354f97450393d252a1e2d6", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxwizardlife\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70547a67426323c7941c325e9e2c3e9fb9e4dbaccbafa9ddef6992534f32507a", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxwizardlife\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "022e517335f7fd0fd56a42f230a13f431a6670b92f3a57a1aa7e8051da3de5bc", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "374b49b486f31cd1f4584dcd4322376ff4b06ff879df5667fbabfec3e0c830c3", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aca88bb6b4d64853be5b7b3423ac95853b45b021354961437f7683b14cc59562", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1240cb11ac6e2133ea7dd42eb5839d8c920dce186371b1976832e16a6e801a5b", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2e0a55688a37d5056ac562b442f15bf8269359992e88dc57b466ec935804614", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7aebfd2b2f7221af36c02998077cd5c59b692e0d1b62a4c9348bd92f5bcb2fe", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8e74bafd75dbe5406ac43b99ac82d2140af472f0038e97040e2ea2b306f3802", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eac4a3c6d27d3faaf674c3e2fbe685db8665d43ca33d2d6928bbdd90c25ba9a7", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88e1a5bb40f1c89ce985a069efe74ea21be0dc406ae07025e55fd2ec9c5c41fc", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81d4ca74b9be6bf0f822d0e82b081e70c73fefdd97d7e8145a73d775177c4d7c", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa1c3254976f783cb475ae74d0a3787dbc2bea4afb764b4beca98767cbac2fa7", + "regex": "(?i)^https?\\:\\/\\/videorobloxhuntingsimulatorallcodesfo\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cfe007e9ae95cf7c88096362000b71c9aba63a4857725b3b98b002240be0833", + "regex": "(?i)^https?\\:\\/\\/kinghackpararobloxjailbreak\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7373e9eacf39def445ad297431e37ad6abdc069c67895b77e7d7021521a96dc", + "regex": "(?i)^https?\\:\\/\\/kinghackpararobloxjailbreak\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ecf637e426ec74e4a8d7dead9f7f07bd865cf2470aa45f90a283a408c1c8f5e", + "regex": "(?i)^https?\\:\\/\\/kinghackpararobloxjailbreak\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c720af716f3853956c7013e9f3961dd0efd6e1be9200f68da794b2cdf8f32959", + "regex": "(?i)^https?\\:\\/\\/kinghackpararobloxjailbreak\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5949681046634ec5514605919d336f1a6da2319f7d8ad90ffd9fb7cd859a4974", + "regex": "(?i)^https?\\:\\/\\/robloxcheatstogetintorobuxgame\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ed2426f0e367b503b2a8eaa9563320b5aa146a80e6f86a56539c1d525788bb3", + "regex": "(?i)^https?\\:\\/\\/robloxcheatstogetintorobuxgame\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4a0c3906c06f00421a75e70a78e6148f06f4aeb4939619322421474949793d2", + "regex": "(?i)^https?\\:\\/\\/robloxcheatstogetintorobuxgame\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "889d211d362b2b1b146c1d271e9aaeec2cfeafe414ae4674979bafe861568f86", + "regex": "(?i)^https?\\:\\/\\/robloxcheatstogetintorobuxgame\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3961a0dc96fad9ff9b968dea07b9d23937d216dac7285acc3420f1618fb6a03d", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10f15e334cf9085d56fa8d5db8fa1083a02f87b134f5f3f4d7400d008d585de3", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2101c7e766cf5548572f714c84f7304c4c5d6a0eab2c43f1e40fe9e334ec618", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dd0a081b93591fd7241755d027106ee4340bd1d97c7a522aa858ccd19cd174c", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3265c4acf55ca41677f8eec793dcd2e54bb19300c2e3829071ac3b18a4d786ba", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d2fc933e601eeb70336d451bd7d5cc8644e3f75c2cb7fdd71bdf2a9ac5a4339", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c6b7453b9b1d82971f1b6bb675f8f0afdb713d09b21ed3f5a663a649babae8a", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "171bfb1c4f304dd8ee0988aa8876bc6fe61d303266c9dc76c4c15ecadd2dffc2", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14cd3a9346af73c8a3b04d2df47a66102632fb7ca8799a0cd1f1a1132a184953", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5711964c0e1d7829139409ab2f1e26ca4c7b1d78bed89cbcce330ce75b403dc3", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9404d3ed6ff5b6a42e2ccd0a07d3f51580267f800b21f6f157d6fa1befc23808", + "regex": "(?i)^https?\\:\\/\\/robloxteleportservicehack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6f90410bfa83a91f0b79d87f0a946c481d04b034a557cb8299ac3179fcc96f8", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeaccountsrobloxwithrobux\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09bbc8b02a7bd133fcbf91ceac89226502dd57b657d77dc046c613563e558ee5", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeaccountsrobloxwithrobux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c623a174fb78159d8a72df6fc13ce2b3d2890a508fabc7a74691bf251ce10edd", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeaccountsrobloxwithrobux\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e71a2f7cf9599bf9aafd9ad3bcf37c1e5a29ee648cf7a869a787757d4b25d396", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeaccountsrobloxwithrobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2569716174146ad8982eb1ed9fbdcf9df6eb16e8d315d5fc4ab96681c9b62921", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeaccountsrobloxwithrobux\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2e0274244e50da9717032cc2c41034671e9162fffbe0dad2ee6deaeabe72c2e", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeaccountsrobloxwithrobux\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "921e33202be8a06fd2cdfbd90c9774c06ad5a64c6ccbe7e871af76647052f995", + "regex": "(?i)^https?\\:\\/\\/pastebinfreeaccountsrobloxwithrobux\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcb734773a076bf3f7b5c8d489289f0fbf2dfc3ce0e02f4927481d8802795d83", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68ecae17fa211daa4ef1c3c6e353db15ca794b5b2a6789287492db015db4ea87", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4629a43008aaef172b776f22189e49aeeb7f406402fc1ed8098ec7ccf7e469f", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87bb887fb55e39bfb0ce2763e09ebdd8947270d2d1d4f552d5b0fda961360118", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c003ad3dac724949a3e4f74e75dcaa46bd7b98c92a047ef67aa092b3cced59f", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d7b92451b0064a9aa1cb777f5e6e5f7c76dce833c4fb15ffcb174aaecdc5f89", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a87d96e266abf6c265d1f8baaa4560dd73f5c01e2d34c2e16404605f9f82822", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d82dcbb22eb8b9aed17bbc513ce742b4f84fccae7fc5cdf9c028367fbfaec83", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93b42f7719b8e530893bc89dc7daa2a29d4f21f604d20b8aff25ef9d4ff187e1", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "800c541231ba9cfb9f3619f4848de63ddaf243a5020a86ca37dee3ccc0177eed", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d192d8b8619e02cb40ad34b14a4f579735fd7e7c6995eb4ca07753e36ffa7e2", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2233cab991309f0fa88a6e4c51b79667846230b22452f7bf232f7e0e13a0f200", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77204a22f0d64b78744e46813ca643bef9c525d0d15637fc3383c1b3cefa23b5", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c54021c63597865644d59b4c33eb88a4b0615babf5895039f61bb683ea5957f", + "regex": "(?i)^https?\\:\\/\\/comojogarferadamarretanoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6b2aabb289b6c8382a8b991569c51938321635b73b8fbf589c8799c4ec7748d", + "regex": "(?i)^https?\\:\\/\\/howtoputrobloxpeopleinyourgamehack\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c060af04b1315964493d18b4a92286927eb4067336bcb702ae080db98f489ce", + "regex": "(?i)^https?\\:\\/\\/howtoputrobloxpeopleinyourgamehack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "617dbdbce3fe47ad8398c04ead094b87bee6db3100f13e599af4e1e348bd731f", + "regex": "(?i)^https?\\:\\/\\/howtoputrobloxpeopleinyourgamehack\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ccbe6201e573ff6dc4e164750a2cf69eadad531f6ccfe582c3497791e0798c2", + "regex": "(?i)^https?\\:\\/\\/hacksformurdermystery2roblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "824cbcf3f83c6291cf4c3c95f423767fbacae880baaa74d2b404722bd5b7151f", + "regex": "(?i)^https?\\:\\/\\/hacksformurdermystery2roblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbb02205f60487ca0989587ddbdb012057aa88ff20e5dfb3634207361bd8c09a", + "regex": "(?i)^https?\\:\\/\\/hacksformurdermystery2roblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e660962bcd684c239c97a99b665595ed77402d3a4420f8938d209fd6830eb4bc", + "regex": "." + }, + { + "hash": "c9de7304bdf020aa6f3fe0281847420c98e83d27d9a531e16c8615c89f957362", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85b0f59601af93aa97d0c46219619fbab975c91fe4f0a2e51c9bf55ec87a048c", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf864a74d1b3fc5891db0f21f79e1743dfdc4d3a06b93959b083bdbcc810504", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a94321edf630318b6ecde92c9758fbf3a4e6c013e4cf04e5b39d2bbdd4b6139", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b044de9add5a9bf4e2b87b3e7bf53885fd216c052df649f1a896c14a8a046d09", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccounts2021november\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8666b7a29add8d2d72b10f77895f8385b428e21596edb0c38fb6f2b3c7b36c55", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccounts2021november\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3800f80a17207cfe06a0c0c09954b64baea48e4c9620eecbff1c75e0a9f7ded", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccounts2021november\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "786d2b1ff2087eabca043ef3d3415e99ad2cdcf530212a515fa79db4cb33dd90", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccounts2021november\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "533a90cc194c562ac55b483a96c64c0ed7d4fd013c6cce8c10ca79fb03dd8d01", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccounts2021november\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a99d1b8aa53123c3f214317fa9c9d527aa395ea4e47c778a9745a8d691ecc425", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccounts2021november\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f895d2bc941cffd2f985b05876f0ce62339bc9877deb47902979e3612a453095", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccounts2021november\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b62522dbce4e4d9e5a61331488cb3c2907dea4384cd336efcc2a9162df6c2afb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Clone" + }, + { + "hash": "d16dc0a0e2915be7271c4ffb14af852100c1ca3453b710617b5d157385679fa2", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c0e7605b8242f5c7e2746e3e90020884a3702b26507a60e56be34d05a030b9a", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c82e4eb5bf7fcb43e36f6b4bc92acedcf39f796844578ac0541553642e29636b", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df66fdceb5b34ad2a6b035cc20bf379c858c30d65f6474e86a74b3c095c07a63", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45e91a7d9f353dc5e53a3e38085dbb1434d1934cdea619bcc89b2a52162a97db", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf6b9d7d0b6a76bb81d0025153452fdf1e010ddbb4d067cd108b21c4ee849317", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4ceae240e7b3796c133280259d75e05954efa70c04d68c5bddbcb461c654bae", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2285bb246d3ebbc04a2790ca5316129671d6d466053b088dfeb884ea6adba188", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e660fe8dace104cef6b0b33213ff98b924d42af24d2c5e709414d1850ca630c7", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe0599d274fc91e01d66428f3628d17ed8b6ada9afeab94cc6970588b9009c59", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75df1aaebb2d38f916e0b8135cd9f851a791844b11bc6b0df9b246e18394a779", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b83d093b475143ee02ab21b32513c666f9c314b3172ffa92c9acbe2aab4c3914", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9e9b3d82b970219c35bb2cc2f0b3aef0f6e73a62be24c3541affc9e84a245ca", + "regex": "(?i)^https?\\:\\/\\/freerobloxparrisisland\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a583483e243e6ba3ffa1ac24ae330248d549b727fb9e4578366aaa39e88ab629", + "regex": "(?i)^https?\\:\\/\\/freerobloxparrisisland\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6b33cbcbbf2bcaed2a2611921df52aa9e31cb583f01c0d1e2efd45d6e2b785f", + "regex": "(?i)^https?\\:\\/\\/freerobloxparrisisland\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "047b1e18e9aa7b3d2f3f97e13464156129c883c0534d3fbacf9b52b719b9b389", + "regex": "(?i)^https?\\:\\/\\/codeskillingsimulatorroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb8249cf5cdb11eec221a2947b256d34445d8fbbc50ce0639c71b290f1707343", + "regex": "(?i)^https?\\:\\/\\/codeskillingsimulatorroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f53c6641102f799e12f5a87f55c8370539034532c47e5cfa915be9aa428a6d16", + "regex": "(?i)^https?\\:\\/\\/codeskillingsimulatorroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52ceeabaf45247bb02623a0adec1b9834657cdeec60e6f6d417bbba2de89722c", + "regex": "(?i)^https?\\:\\/\\/codeskillingsimulatorroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d9a8e2062777ebf24c34d743f5bf3cd51c9bd8cf80d6ebfea32f5a3c7ef29c1", + "regex": "(?i)^https?\\:\\/\\/codeskillingsimulatorroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c0124eeca2cce36c27aff009199868f1343e7021400bf5309eb4c26552224f5", + "regex": "(?i)^https?\\:\\/\\/codeskillingsimulatorroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45a48c7df35c0b4049f4d9c093f6832866059b6eca910d7147f3abde6b3e2ba9", + "regex": "(?i)^https?\\:\\/\\/codeskillingsimulatorroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9501d9fa9cbf36c0697333e3c3d00bac640ef4b488edfdea6ee2ffe73deec8b0", + "regex": "(?i)^https?\\:\\/\\/codeskillingsimulatorroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10b96bfcba6a45990152cc7097bf4af1c9233eb3cc380230f2020b6e34383725", + "regex": "." + }, + { + "hash": "19d9ef5bf1d77312090a48c8905aaa2ce12c63f37166323a3cc83955dc8a12c7", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d380488fa293a4dc17c6db64aebb54f1300813ba7503d530a462969b09f2b4", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5656ddd369a1036600076eb165b942c9eb3477a22ade0de1f0dcc53bf5c1d67e", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "340435cdac9597fd01f21b1e745d537517fedae72ea28db2c14536612a1a772d", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7da9322918dbf2c38963ea6e4ea3468b2efa9813556fa4a9de67a6e68b07152c", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ee11097ddf74f216475210de921c73b9f08615f3d1fd6a1c1e680dd812a8b77", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca284770b1bac314d713eaf2fdd34ce6083b169d3fd793590d972d1e36daeb8b", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d081abcd47c364a20f56c82c47130bc99ee01f1428e88dfe0e80e884e6e393a4", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a2e17d7ae979b655d14a21ad5ae1f3978f7a125a8cdd95ec8ca002b4473380c", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05985539ad377ebf5604ef2d70a9af930e0b3d1f01b2238da97ba0f1a4a7924f", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "250ad2bf725928deffbd7c3bdd3628ba98792c76149994de9418f31056150b86", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c0b45f6c4985c501fac02299831f0926845b2c74ae77f6a6a1643db9919e89", + "regex": "(?i)^https?\\:\\/\\/getnewerphoneforfreerobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "342555cac4af68013702bdb95e1ab5594c06b84255d4151dc2f9243ffb00373e", + "regex": "(?i)^https?\\:\\/\\/cooloutfitsonrobloxforfree\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6cb49378eb4583a7298531225941e3d0b692156d648992dd0f9c255844ad2e3", + "regex": "(?i)^https?\\:\\/\\/cooloutfitsonrobloxforfree\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "909edb2a39e44bcfe4b9fc7b1e94f1f2e084ef746850e35a643cc0e3f1970cee", + "regex": "(?i)^https?\\:\\/\\/cooloutfitsonrobloxforfree\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a40f545415b1a23d63d74b3bee735eb7b18a85f60537b20c258fc251babd4ca", + "regex": "(?i)^https?\\:\\/\\/cooloutfitsonrobloxforfree\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eee0f7909c6deca276110aeb29dfbe26f6e044e3770619b38b4f5bbb38f2b86", + "regex": "(?i)^https?\\:\\/\\/cooloutfitsonrobloxforfree\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccbf5dbb6696c4b7c76b4871b49441f9f34ec52da3ff373ee4554f1e48b99876", + "regex": "(?i)^https?\\:\\/\\/cooloutfitsonrobloxforfree\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "701b044176ed5b785d896b268c03c8c136dbc3bc21ea3ca3527d14b904d0e786", + "regex": "(?i)^https?\\:\\/\\/cooloutfitsonrobloxforfree\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe63db13f76bb7542ef70d3e4eb1a9aa67a223b7d1783940d404386eba5786b6", + "regex": "(?i)^https?\\:\\/\\/cooloutfitsonrobloxforfree\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "407363b90eab78b70149d00ff50fea19c34e86299f2314d2b2dfcf91c20c2db7", + "regex": "(?i)^https?\\:\\/\\/cooloutfitsonrobloxforfree\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a1018ff528ebdb110b35dfb763027bbcd3a51376a839e6fa94cf1c5751e345c", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdefazerbolo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88ffbc5f9dea429baf2f402585219b9f0a203bc40dbc0203326fc895176e2d8c", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdefazerbolo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1280a430030626fc9901d02c6327cc18109dd9e4d99ab91d0729f00ed33521d9", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdefazerbolo\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7110ab1686aa7f51b7ce538839bce2409fce2195d82512d5ba707fc7090e7a94", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdefazerbolo\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a12e208b12bd39277c47805708984d956ab1c308f0f21b3a99b81b10b766c709", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdefazerbolo\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c92724db9e094d00996881355b8a1f033d04677c13077becf14cde69bc0f1dcf", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdefazerbolo\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c44e3879c6c5f5203d35a674e75439ecc08e7a3e5b7ed3bc19241dd78d86fdc", + "regex": "(?i)^https?\\:\\/\\/trucosderobloxparatenerrobux2021\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d044907567d024e5af741db0a6b2789f998f54b4d7efc7233101e23af9b7131c", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05ddf973d324ee8cdb94b31a9af3779962f1241ad98f9801f1858ceceaed2b74", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46aac47968de4404ae78228da0e1164229f780a68151b31a73fe614426a501fd", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f0698a0ec3c4aafd95142e7bb785ae66e4bf792397b2a941dfa6fae52ec3e28", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1783b20aa8f96841d60dfa7a2f7a26dc2b8eecb5ba95c7e46a1ed97717d92ee", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c02ced70fb44a6a127c04b04a7dd8bb4811ace624b6ccd853e9e6ca3d5c18e90", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebf2efcff518ed91adce396b9c0b679035c33b0f4d2589b91e48e06a9f76108d", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffe35b251dd362a40c9bbdbaf2103482a137b561056813dd2a443d5b33c181d6", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93d2b9d600eca10ab0edb00121a81b39f11306965c61601d588a2a832f8fee6a", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae0160a4e5b41370c958b7e7bfbf063f17176dc23b9ab129529de5052d3b1943", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "403eb98910f721fbeab4c77b5ef7f7c943027955ae86101ecdd49b11e1e5ac94", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f00e65d5e09bfa597e3e073a3fa1c1801df906bd93d52f000f383bf3543af38", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a74f477cc0f49cbd0ca78ab437c6ee2bee6bc1f68540dd06732487f453f72c34", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7487709251d18048832f36ce9fc83bd599dc5b2868cac9a8071eabdfacea0cab", + "regex": "(?i)^https?\\:\\/\\/busstopsimulatorrobloxcode\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00e30520292e47edabd32249283159ad7841dfb084caf83df4233a28eb7d3a5e", + "regex": "(?i)^https?\\:\\/\\/trucosderobloxparatenerrobux2021\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfb9353dee316513a1f7225309231f0ac8cde1454cba8b218c19a15cd943a9c4", + "regex": "(?i)^https?\\:\\/\\/trucosderobloxparatenerrobux2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97de2acc2f231b7f5be5b9c80bc97fdf87cc9ec2b31546e59e1057feb69a1bfd", + "regex": "(?i)^https?\\:\\/\\/trucosderobloxparatenerrobux2021\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "411bc8266eb08b7e5666b43635cfea7e6f23bdabb6b01a8bea9801201166dc93", + "regex": "(?i)^https?\\:\\/\\/trucosderobloxparatenerrobux2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "404273d83f85ec9b1a0fa6261417c3665589b8111d766cd5fd1e50e3791c0673", + "regex": "(?i)^https?\\:\\/\\/trucosderobloxparatenerrobux2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a675c0094e448c19237398d9f9faa3a7bb3758565d1bca84602b50768e48302", + "regex": "(?i)^https?\\:\\/\\/trucosderobloxparatenerrobux2021\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1abb61918a4e0f280cc25d482c4eb4849471d494edc25218ec493bebfa5802c", + "regex": "(?i)^https?\\:\\/\\/projectsupremerobloxfreevipserver\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce60f6e49bed96ecbd8801e9f3370ae5d4e8c9eeb1e41832d09cd8e48080c95e", + "regex": "(?i)^https?\\:\\/\\/projectsupremerobloxfreevipserver\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffca3087d89769073ff6125de26491af8156faed66665b3aac452097c3ec864b", + "regex": "(?i)^https?\\:\\/\\/projectsupremerobloxfreevipserver\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f74f2d038c895cf8f38ad5241e6e3b2e168c28ef5a519e61434450acf092ad8f", + "regex": "(?i)^https?\\:\\/\\/projectsupremerobloxfreevipserver\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4e64b19f42b766ddfd3063223c02da133ac678955dc45c87a222b7f642586b4", + "regex": "(?i)^https?\\:\\/\\/projectsupremerobloxfreevipserver\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e554a823099823d163ad8f3d9331c994209a64860d6ae0eb9464b53342371cbe", + "regex": "(?i)^https?\\:\\/\\/redeyesrobloxid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4217b3c9763c88996bb8c61d5a4c4bfa3be353a77953d1cc018a5d50ea57f05e", + "regex": "(?i)^https?\\:\\/\\/redeyesrobloxid\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44c8ff22bd677dc30bd27de85e381bb494d2213cb718b4e949b2d61ad528dd5b", + "regex": "(?i)^https?\\:\\/\\/redeyesrobloxid\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6786330ab18075c2863c283be5a030a7676dfdc81e158bb81aeccead651cc11", + "regex": "(?i)^https?\\:\\/\\/redeyesrobloxid\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4694a0db188432f0604ccc434af6e9bb82496de8474362de33520084f5e84ee", + "regex": "(?i)^https?\\:\\/\\/redeyesrobloxid\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7c5dafaa7364524c235ce608c2cc7844c59715f970d11a9d9d23e1e7c870dd8", + "regex": "(?i)^https?\\:\\/\\/redeyesrobloxid\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e62b439f983934f4cd2b59688c052a243d342192da0a226fb2ebb9900696bccf", + "regex": "(?i)^https?\\:\\/\\/redeyesrobloxid\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e64f323e863d08c1a955e7b3b6d1f47473cd94f4105abd5ea087088f349235a7", + "regex": "(?i)^https?\\:\\/\\/redeyesrobloxid\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf1f28cb5103ae6dd64ac95a42d8a9e75e92c7d0c975482c1dc2e91b193faba2", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswordartonlane\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ee14100e9b3cc467cec8818183c81eeba4046c731a1b252d0b3293adcec0088", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswordartonlane\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d9a85e30ba9e604216e9f7295a658187d1e344db6f4d3ea112297437b76c85e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswordartonlane\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23476d03f6d73c430fab0fa61c77976f0fe43a248c8f6f93fb375edb1c9b6d3a", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10e0a51c8f9d0ea3aef0ade0c1b489348a82e7979fcc71ce36c5213edb39b4c5", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswordartonlane\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e92eccc0c86f626ee49be87588f70552d12a14364470f8d894a90ee6d33f675", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswordartonlane\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f55cb30920b4fc1e7023efa2be98ff32b7db65f2f6a1dea6ce5a88ebf284a4c", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswordartonlane\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b13cf5f6913ffc5ce864bf9fed736e33256fe1fbab1ea78368d3d7905bf5722", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswordartonlane\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5a6044af8440b3229062c4b0c506b0e276a500726990e0cfcb46063a73b8505", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswordartonlane\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "864d8cfa31db2040ec72c47c5340bb9463c6dbe5ca6040d8a30a530d2f5f43d8", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd515759d93c47fae00e029307e56f263f22edf9bdfbcc8c888b70f1899c6bce", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3588a0e798be7959ed1913cc914fa3e0fa9b2a2e6d7890d3c06f4b73ea486c1", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4452e74722d8748cebf0e6e1f11679528ef27880c6facff0f51936e300f152bb", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26288ca2026bf5516bc69f7c8aafba1e8e411fe57fbb0ec8899a3b6063625597", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9458f02098cad25d338ecec95b921826b8b81cbb517422e093797108fbb503fa", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b109854160ec95777bd16ea827866f5327db3e930f00892b4fccdcd8021a5bee", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39b7971f90c3262be99d629c779db2e73d4fc3d264e73a55de33366f7c7ac129", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb8e91400a8b43b587c9a017c9bbbe3be668a76255cf4d65a773c37b7a433973", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71785d6e21aa059dce845d2f97cdd4f2d3adfc5b9986d895cd0666a775fe42bc", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55d83866a7a511c6600a8381b12ec32dd8727f5cf50d266e01cd78bfe7cdb48e", + "regex": "(?i)^https?\\:\\/\\/codemadcityrobloxpourarjen\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "379112a9bb7ccb09fd7a24701479856df74ddad3899f41ae34ce15d24b92fabd", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07c4b8f38805e808b45726d787d6193d4473efd81046f8c69f934575f0bb4c64", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "032a6612608076dbc7a20c1ac01ba8d89dfdec557b55e65cbedbd88f5927e9ad", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15d79fe6c9bdb06aeebe68bff50ba49e2754c8751bebb5ac228cbec0f5943336", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4dd058052a5d3351ed8c6e7cafadc376bf98e05f8f4fd537e42cf576d3dcabd", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a506982bb63ee61bb06993eda1ec86e0310ec28ca2ea368277cafa87c162e00", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa2657e3040436ec7f2ad8d81149d7c866a14d3020681563a359309a6d5b90db", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0086c0b0df9d7381fa3da04d268f63f9bbfa107a13136ccf8685ac7cc3c382", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63c25e9fcddcf52f432235520be1bf20cf1492c89ed091b9f577d734674e6c2", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "372307e64dbd4baf31bea21a207a8e65012b306093e26548439716fb4f853008", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ffe33f2d198330d7ef1bf6f1cd13aca3c65b628e4276054d0e6c92d95e98e46", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b2cccbf8ad2718a9277078f564fe812666260f215ebac54a8be850928e08a1c", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0917cc108f90a20dbdc6093ab3592dcb06680901a1cf134a953c3e399a23b33", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "353c73ab26df1168d6ab2475628dbb09d1c1d114db5288eea6a49ddda1061086", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84a3c4635ae1a8aca4b407cc257df39868266bb92039a888c9743a7eaeca4546", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21c9ad389b4b1ba17c55de4ecbb73af163e66c6389bc11d2e42649b891feb001", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4edb88a9dca74b6ad47674f1c26ec88b4876cf1d057fa0052fd7177a87f2f660", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a9490c9b7996f24f3525064a7fa19e0dbc08ff80e892986a39ac87cb68de415", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "434abcc630e637b14cf23376b1d498c512f4f46d70f21e3909159fa3a8dc9805", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad83dd7526c8e77957e9e1a7c28c4a637981c008c89de4aad923668c364b2366", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39932a607244c83dca2bddee2511fa5d6879d28b7ed0fd19eb0537ca7491bc66", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "660f7aa51c026c0f4ba1ba844391242df824ca70e9df7a772920eda29096e96a", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2609380fac926e904f8edc246200bbdcaa89d6cd7c2037117b628ad517240169", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c043502b988e5b8abb65507bba128237726790c374b3c662d07a8eec455a465", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d10f6a6ab6bd6d3b7aaea70cf84dc27e91336276546011f7a7bcb531a14fe56", + "regex": "(?i)^https?\\:\\/\\/robloxsfreerobuxs\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6416921d295542b61c904b9202b1665993cfe0945aab1bbd598f09fd860db9fe", + "regex": "(?i)^https?\\:\\/\\/comogirarnoarnojogodoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71df2c7ce4ebb09ebbb8935deec14904e22d0f95b44cbadf0ab79408e690c4be", + "regex": "(?i)^https?\\:\\/\\/comogirarnoarnojogodoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fa3a3305c6e9cf64b6fca589643153531078990aa20a245726ef8d348dbbc7f", + "regex": "(?i)^https?\\:\\/\\/comogirarnoarnojogodoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e47c466a5c1ece3ee10eae88111998cc7b2bcdd8d89a925068c7ea0c31746baf", + "regex": "(?i)^https?\\:\\/\\/comogirarnoarnojogodoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8484e376cb48ccb2fa6682e642497b854cbeed4f4780a7ad95861e5ea422b71c", + "regex": "(?i)^https?\\:\\/\\/comogirarnoarnojogodoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "278c3f2f8e7c76f93152d7db428871117ddcb65e2337e9d5cab46c08e6da93f1", + "regex": "(?i)^https?\\:\\/\\/comogirarnoarnojogodoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "442f54e3c7d9b59e5d2f15f07d2a0b3f23904b4f818463cf5737d5e9bd8aeee0", + "regex": "(?i)^https?\\:\\/\\/comogirarnoarnojogodoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dca9f264fa6434e0fc424e43007917495dd49556246c63573d2089ae16300cd0", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acca0557bdffee01233f1e77e7ad2d692cfd5d5ddd2a0adcc159f5525a11e483", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afa12764d742aac52349e19ad55fad7f87a6f8ae6f9a14bdf50f40b149cef9db", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03cd697b4543add676a3a9ce19ad053696ef354fcd398716b596c829b46f0aa1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4bfc4b40f23d0a4a8bb66da705a9568a7416f3ee95906dbaba80f31d22bceb2", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6bf1a5de29870064463195d4f44e81b36e98f8bf7354648a95072ebe18b4cce", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15a5bd759cf144dc545073e1958f0106884f93ecc781f09664eb1f105f856d61", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "049590cabd9c1695add6be252682a3f51b47c226b06da774cac449e3033858c0", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71a48bbcf9803ab2e039e3fea0bfc0dc1da2d5852772eb8a07bbbada927e96d1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "becef9d6b8f96c3e6653f2e2e745db782d5d6606252c7579970185335775cd5f", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxfreenofake\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5edf8f22a9e711a3e84a81662c429f6dd1ca8b02f1ef63a20eb6288044c5aec", + "regex": "(?i)^https?\\:\\/\\/codedetricherobloxmadcitypoureavoirel\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73b31f17f3b5ff316b3b89fe2a33a361de1262cea57630d1549858a66ad37651", + "regex": "(?i)^https?\\:\\/\\/codedetricherobloxmadcitypoureavoirel\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5816fdf4c5bf2c6b661d6499f67f079c0c23b72491f5ec9f7d052a2cac488ddd", + "regex": "(?i)^https?\\:\\/\\/codedetricherobloxmadcitypoureavoirel\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce21b5b8033ed76a67f3b1127e8e5bff2ce12964b45bcd9f1975fd07b6beb4a1", + "regex": "(?i)^https?\\:\\/\\/codedetricherobloxmadcitypoureavoirel\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d56e99464ed7fab8207d25ab55dc9752b84d9777393480f9a0116a20eed5f672", + "regex": "(?i)^https?\\:\\/\\/codedetricherobloxmadcitypoureavoirel\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "633de40b1ed5e59dd015eb3d4f12030efd981af8dcc172fc1d4565f355e8449d", + "regex": "(?i)^https?\\:\\/\\/codedetricherobloxmadcitypoureavoirel\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a48a91a2895b195f2ede21615e8312d8c91dccbf052a4ab9f60f67a1421abf3", + "regex": "(?i)^https?\\:\\/\\/codedetricherobloxmadcitypoureavoirel\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95de7c5260cd422e8dc474b38b5d58ac3d08c31ad5fcddeeb838e303acddd9f8", + "regex": "(?i)^https?\\:\\/\\/codedetricherobloxmadcitypoureavoirel\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c0e82dcc6efeca1336cfdcccb54c974c999fe4aed04397c76752402db1b3607", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06ee22f758f5dd32e0b02fd9570b7b79f86823addcf69474ae544d62c5e08c15", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2e68a0a030f714344de0649de5d2added651b27c4ee2d6430727e7902f964e2", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aaabaca5b43e7af12945ddc2ec81bdb316705ee5b85415b702573cc9903a02e1", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46aaefb55830086fff9ae8bb7f91f91e6193199f886d8bf47ea6ca92162f0c6e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11044ff291492718c192bdad610edff85fe70b610ffdd6907269bac86b0d8474", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54df4359ba22d78df7976108a80770bd69be7401eb0ec8650373f69f3f915bc", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e884e65d27e7b0ec4d78d64a04dcc7549ac11a08eb47e36c4a533a679e39be9e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54c1eaabd8183a99d0e5034fec8ac60515f1aed15992c2584e25300229529c6", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a18cc2cfaed79eb4ebb4f9d89189d4dca648cb349cd5f858a81e4fa68ade5943", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxaferadamarreta\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87de2d11aeb6b2dbae510b0fd82aa657d0e19bc0e43a6f848ad27af3b1e46636", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab345204beb27705fb8e0437b4ad116550e6bf9b9bed7d28f78ff740f86f8cf", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9beed41c3ce843c167ad04989030eef3e6548ae5e62456d7adde3b84b1f0a626", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b2a31965e18b9860e554c20da1d65d6fa53addfb2694bf4b861685945671f8e", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "252a7bc9b2cd6aa9606c9efcbba7bf20de789fd1624c4672bb2b852c87c17069", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff90eab5946a7335fb7fc0166dc020c52cf8f2abf025b2621285106784889c45", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca471be9d99e1ca8c6d9a8dba4d1947684c6bd2cdb5377ce1ca91301c50fb75", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb669f67159c5ce13902b6529071ddbb578143662aea1d47798c7647ee3f5288", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814cfa4e719484dcee90a73fc58d67db9f847fcd2c47038aea29e3e002833e1b", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e721823883d9e055cc0cab1fc3c79a9c25d9f1b0efc9bea9fc3ba690a7eae0e8", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4a2226a4a644ee4bdb97315d94eedb5aed117ff833fb9212339783278dd1a50", + "regex": "(?i)^https?\\:\\/\\/robloxnocliphackoctober2021\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8887a2ea05faa0003cf529636d8884612e836da1c201a74ddd5b15983be29c2", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3fc541a02768ecac02e35b785cbeed762b5a9bbbefb2d28e752e79713cb8085", + "regex": "(?i)^https?\\:\\/\\/hacksparafullthrottleroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe23f795c3fd5bea075cffaf07ff6bd22855b18490f4b3f55018198918b2da99", + "regex": "(?i)^https?\\:\\/\\/kostenlosrobuxinrobloxbekommen\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cb986a917c90dbe7b5ce6c8f7c6ffeaa410ac9207ec73798e9cce1cc75237da", + "regex": "(?i)^https?\\:\\/\\/kostenlosrobuxinrobloxbekommen\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "390cc6b02d4defb0b278a88247b54f6dbee1bf6b9052e93dd6dac2560f240e28", + "regex": "(?i)^https?\\:\\/\\/kostenlosrobuxinrobloxbekommen\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ddaa4987ca0f084bccceb7b9d78176303b14cd0ac967e560f266fa7e3834b46", + "regex": "(?i)^https?\\:\\/\\/kostenlosrobuxinrobloxbekommen\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e70fc12a70a1aea60078ccfcb9e0f0b922041b17ceeb93ada286a329222e964", + "regex": "(?i)^https?\\:\\/\\/kostenlosrobuxinrobloxbekommen\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "452a9e08e39e0f10ffdd48916ca80a6a348860d41661dd36856285977488c12b", + "regex": "(?i)^https?\\:\\/\\/kostenlosrobuxinrobloxbekommen\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ee5e28db8042d8a1f16c26830aac05a54c3b3ea197c5a8ffc5cabf3dad2d430", + "regex": "(?i)^https?\\:\\/\\/kostenlosrobuxinrobloxbekommen\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1facf07ce219e339eddaa1ed506af7552d000f6ddd9c387ed331f5d90ee36ef5", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2faee19da9a1479ad4ab8d3cae51dc706d4650214af14adb855d1ce59d928ff", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ece138f65678919c3b301436fcca39145af362bb40362a66a8054139a596e79", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8b9854d9c2c286724e46da66f8493cfc336ea37b03225a8976e38c8725d82f2", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86a6224137f34a23b1db374a39ee03d8c226f7173491dd4d2268222c6a581eaa", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed98f94b071e4a6a9ef117513ce2ab8da5959aaece2aaa01dad7f062132a8700", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b04f103e3715968945022d4bd6ec49788f1313ee2de9995c1e197a3401eef7d", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aea0812ecbc5b7d2e8cfcebf9bd09835a5ef07bd3f63c01944884f8319a4e2d", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "973e9f807f2288787adc512d30aa18837b41bb3e68d39346ecfdda5209ec39a1", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2543e4011cadda6c384fa8e87595a83c15928187c961a384c6fc62e2105cd698", + "regex": "(?i)^https?\\:\\/\\/cdigosdorobloxjogobeeswarm\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f1c284688aab2e69711965ea90d3de6d18ed1345d0ab398e34c9750d2a0f0ef", + "regex": "(?i)^https?\\:\\/\\/civilizaztionsimulatorhackroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85850f24d2111e647b10189f59859896c043dc669560cc1506617e3771b9f418", + "regex": "(?i)^https?\\:\\/\\/civilizaztionsimulatorhackroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "761635d44cbcb39df91ae92cc00ee9c3602af097c8c74dfa0d786609f34f122a", + "regex": "(?i)^https?\\:\\/\\/civilizaztionsimulatorhackroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b0c2c5f45d5276cc6b6d1421f17823544122f94218c461a5388374c0c87c088", + "regex": "(?i)^https?\\:\\/\\/civilizaztionsimulatorhackroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7af6c0dff80ca62c3e5f0a9c13d5fe1209316ca45488d791e044f3f93c2a3f10", + "regex": "(?i)^https?\\:\\/\\/civilizaztionsimulatorhackroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6403f6184f9351aacf922aa481ea6ed2fb4f89b012a34ba132f08d712a949d69", + "regex": "(?i)^https?\\:\\/\\/civilizaztionsimulatorhackroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "102e4627eca44ece9314c2ae5a4a48e91c8951259abcd0c56a2ba8f1c8ded28c", + "regex": "(?i)^https?\\:\\/\\/civilizaztionsimulatorhackroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "843a7af6cb3e50aa4958c2e547b82c89cf1791880e5bd38452971112efabaa43", + "regex": "(?i)^https?\\:\\/\\/civilizaztionsimulatorhackroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "771fadaca1c13d1fd2401eae83081b3e3f97c019f0012ab81407669e952dbb46", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31985bd7ca095d30c0e9b364cf8140904f39c06d6b4a9dc252bbfa633f6c6956", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b22cd9a55c71cf5339340781a5d5bb332ab2b8ccce9fdb2d9a9947151c7e5d3d", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "436ed210cc568b2008064daa93c327e659f40f4ec03aad04e7578b5dadbba137", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a50c8f3394f640b01f5b1309c80a8771e13488710120b3eddb71e4cf693b6d86", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeac6e430f4922d615241a1da8b7a6d65e36b1ddd2c3090c6b87ba69623f590f", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b143674b98b5a2bc6472b0981ef11314c52f4d8b0f553fe82bfdf6c9588fb30", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0157115227e80d457332f7c65b38fd598f33a43a97bd72da4b372db8a395ca9", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24d347094a2d138bc86e2fff7628f1bf39e23b8092af91f1a4c973ccfaf9287b", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c01e7aff5ad94f2460e3b8bda065820a1eae5f6068afc3174ec3a4399d6546b4", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f8463f7089fef930ad989d4d49f971a9529ae34bb7c2a4fa25c386a8407c449", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "064ed441e273fca69951de3035f2fd8cd7ff59aaf8e3b0d31633b858561b9512", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80d93e8377dfd15381e95c50b2703c9d342bec9560d7ebb6788cc81696b26f50", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be323118442a1541a1fb0ff5eb3a1689b37e248ca3eb3766272898de89ec0033", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebc5d3a1c0d19918fcf1ad3e586afed02b43fee8952df3600c5f1cb7b360b78a", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4493ac0951bae39c59bda73bcd3ceac94d0985bcda2aff12c9a136c7dbf5be3", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ad02886912eafdf615917b15a17801ea8aec2d39dd07de4d5c50f81094731e6", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "977742af51e714b0838c5c750e628103aebd52322c1cf330da3d04f81985e7cf", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d7be034e33c37f18ace4abf534f7598a35a8827f5fe69fe63b95bf0655c3242", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86dd5381fd04f9ad44a831e5824491e40b1ef9618aed2b5484d17ddffcafdb4f", + "regex": "(?i)^https?\\:\\/\\/codefarmingsimulatorrobloxargent\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b7ad451f7f5fc990b5e18f3e02e0a8a62fb492cf351df1a5ab1fc1898331334", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeinfectados\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06465e5aa1e6e6a9af64f98ae4764014333c8c10e66469e0e82e8a943d538664", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeinfectados\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1b96832f3e8876d5f1974ed68ae068b23c1913f2e3bf98f2ffba9b0681a6c2d", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeinfectados\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20ddc54144484cd4197386f9a70645e66bb8999364c9661fcd792b43e1be156f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeinfectados\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dce9977410af09fdcc1995bdf46523a0a8d138f9494eec9e83c3151b6ee88b51", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeinfectados\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab48e240a7218e1c3ddbd4d9f0d3c6772238c36bf90b010d5fd8b30336c79271", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeinfectados\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58543c4600b4cde88ad32a2c0cffafe58a5eede73e56593afb854d2c51ecea75", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeinfectados\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a757723f446546bb91f52c485408cde63f6af9bf1cf2d067672984d19d4f382f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeinfectados\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9558cc04709e826773bd6c8edbd5da122172b522f3e2fed6c873a6fd01497704", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc86a3593954604e173c0712eeb0fa5bd0185e5ad10333ca8855fa6de28b2810", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fabbec265b034a9839ee61dcfaefae1d31e93c82af95f8f6f08f1b7aa4985c0", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d46a788d8f3a4413a9450641b194d6081d11fa75f8b87ff0c1c0716acdb31abb", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96a6219141408bb027f8e14f6dffada272d16765a2502c4fb541de75ea53460f", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "843c1ffb1f6cf7a9eb8e388a22fd9b4f3c710fc4906c292273f54750734f2f0d", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44c80f2b43e0cf76e7aa78683aaa59cc7439100da63bdd8b069e71c325d40a6b", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cc16e6cb95db54528d9532dfe1df123149d7f87dbe8eec61cb3d32e957925de", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4bcfcd02125d5fe55d8a31eb3378d113ab9366305155fecf86d52c6d9c7753d", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e8afe57ca7bad316d9f9366eb15affaa57c839f74f4b26b7c72b2c8fe9d64e9", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3334d8adc4060a5ffec1c42385eb5238f5db66712cf7c557a87debecd9f38b00", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b90a93efbc42244de046ea24bf0640efcdf127c04f520eba3f6d13cf634a716", + "regex": "(?i)^https?\\:\\/\\/hackforrobloxdownloadpc\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a633eda89b3a080ac6346bfe5ecfa4300bc230ac71fa1360dc92bd1d0c3abb5", + "regex": "(?i)^https?\\:\\/\\/comodonarrobux2021roblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7db072554a347f0a79d1baa24b4d947ebce8032c682cd0891778d7756c2ea5", + "regex": "(?i)^https?\\:\\/\\/comodonarrobux2021roblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "235b8efe052529bd6d595619a81d60adee2a136c070e879e1411bb90f3398c91", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f350e7e33650c57ef08711558a0a606f49324599f32b383e69004988fc4e2604", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "233007b57e20542b392e69348cd55d19d121d7d5539b23e6f530a8ff8d70adb9", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8dc5e758b8b0aa41650960150195101f601c481e650357da3b53f0cf2bed06b0", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c62e63dc5a49a46564410a0d6fd968121053b7a3a3b32d58ed34043054b8ffbc", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1bc0b182847a1059b119f51cb939530a9195cec626f10d4f49b5ffb83e6456d", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dc91aecdf12a4ab2c2c2d8ebd44e90ad9c0b7e663f38cd627561f6feb4dcf86", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dc0c9db0cb9c6336f8cf7bbc6bc28ea7d6eb9427de9e8eaab566559177dec68", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdbf4ec65a4d004a4b3338eb00717119f1f57be4145226e50f64237dbf0c0ea2", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50254ac0317922b2167760fd098d09cf03100f21f54a6272fd365f6483b562ef", + "regex": "(?i)^https?\\:\\/\\/jogodrobloxe\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1259cea0b5b51ed12f0d4a0a315be0dcca7319f037a8a5ecd4713ba4353c3980", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgamesonmobile\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4783c85fe0acfeb804ef9145b8dddafd73867c39e79672b9c82f4a04ebdf4f2", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgamesonmobile\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bfa913c84d4a538285f86c7fe1f7bcb0aaa889235039fc7ea3c19d4d5bab0fb", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgamesonmobile\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "828814e384e07f419ff7d89e750443f5fda96883fe5eb65d09d65e746d2592d8", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgamesonmobile\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e35168b0a9e457ca73448cdcc80a639e392aca3cc1d18fee845a7f542184e6", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgamesonmobile\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a159f4dcf255471f230e67971c5336261713c1abd91eabf82f55e00a205b357e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85520a772d2aa1007a4f3343f920683328ac6ac17d6660b47f886e20ff63cb3e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdce235e36b9cbde3ffe30ce6887f865efe053b56c0fb8a39301c8d88f1d46d", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4467762e4db34bc451f41e5c322f64a741dfcb5338a7f42fa5280220becbc5d7", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56602815f4fa5e52eeaf1ace30524b6332b90a2f9dd97301cd7f09b325587f69", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "966b3b9d4bcdbfd73316cfe6dc14e19eceeb4ea17ee3e512945a3df8b991cdb2", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8327e2f066f0782e6a781c009870243392a7436bea7a7ba50659a9337661cc4", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4388c28ccebbf70219022f7923ad76d9fe34f82abf509c41beab1014483a67a1", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea8f9a0945e5fa4b219c5dfb710def496177babacedb5d7de27a909363e05903", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6ac779218f5b82308b04c8a442464e945868a3acb0bd0ff93bce4ce046aef96", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc05251952759daa250a7aec8d1d2549629b4f029709bba50889d9be91ce8a87", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8af4539007959fd2c106474189e1e3e82df391759f47fbbe6b4a604f5c2e5f90", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxswat\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "877d902d5a5f085fb4eb3438eb5f0be7e6e24edbc25a2bf640c5723116d56b90", + "regex": "(?i)^https?\\:\\/\\/eujogandorobloxfunk\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c86db54d717d74ec12c67696d871b1facd6f474744b40c4753e4e9d58538768a", + "regex": "(?i)^https?\\:\\/\\/eujogandorobloxfunk\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7e0ffaebfaf68df8474272aaac30cd6b432d42194c7652d44979ff95538737b", + "regex": "(?i)^https?\\:\\/\\/eujogandorobloxfunk\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c499473345dff432b6773ae927b02f721f42107a5bb193f12575002c7edf5697", + "regex": "(?i)^https?\\:\\/\\/eujogandorobloxfunk\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "132d1796eb6d9574e548ba59ddd4585ee6735ec95568aa77b654722970f82ab0", + "regex": "(?i)^https?\\:\\/\\/eujogandorobloxfunk\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fbacd00c729c9ace34d496f816f5cdc3e1b33054b0c3f30b019f58d1664d57e", + "regex": "(?i)^https?\\:\\/\\/eujogandorobloxfunk\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814ad15917d5ab01c9f05988b06491190a049d644c1f530255667906cb976923", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c90e9eedd93a879bc27c25253d86c23239a728fd72da1b5554220ba5ebe15243", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afc0ba41dfc1a344f8a24c96434982db2c5630e1eeb66009095a11482259a96f", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abd66a9b2530a9982fbc814e3857cd7163a5964337226d107a3fc83b972480af", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f63d2b5be2a92bcb13dff3b150899298bfe59d0f5bd0460addf893248a4b12f", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a824ff5c42a61127fee6e625e457ce433711a77473378dab8d68643400ad897e", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb36a85ab663b689cef622a7860b44feda0df64d4ed1c7b70984c902855efdbe", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5adeb141fbffd68a72e4af0055f4f34d9e9277da758bf22f86b9c9b058129542", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e092569369c8f45b681338ca0caa655da3555f2b29eb48727503dbaca6d78d0c", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87284f2fb5939d2ac0b40a6128b1f619f257a5b5e99b20e16dd5d82a30c13321", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7fb7dab5ee00b2eb29d77932631b1e9b3f6677b0c6d35dee906a52eaa92e928", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c43e303a1bb38a836859133d8aa70c2374c4b664d507a23aa2a678507d041a10", + "regex": "(?i)^https?\\:\\/\\/thepurgerobloxhackscripts\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "febf89044d49080596d550e5959871df43f3c811c48fc435913ba897f9d75fa9", + "regex": "(?i)^https?\\:\\/\\/hacksparafullthrottleroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "919d58d0978bf14aac5697abe3d4683c1f5316cf51ce35896a6a4d894b9113bb", + "regex": "(?i)^https?\\:\\/\\/hacksparafullthrottleroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f254a72751b5959046d35f4774190d27b8eea3f4514eb549cf32762d94f439fc", + "regex": "(?i)^https?\\:\\/\\/hacksparafullthrottleroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e9e3fa17facce8e820130ae936a95bf238d5ad7be46607247f2f356489d2304", + "regex": "(?i)^https?\\:\\/\\/hacksparafullthrottleroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f4353c9d829c8b363ea83d9abbbdaac1815b39d4307db6da3e59eef0b8a8c4", + "regex": "(?i)^https?\\:\\/\\/hacksparafullthrottleroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7a6d1e97c52091803166730eefb20f02b69747da9af6ea1c6c7c696bb2bb625", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoplaybloxburgforfree\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6aa05c77a980022337bdd79b948fa7532890fcf2c42b92b824bf354bcc23a41", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoplaybloxburgforfree\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3ef5e71068cf1a900d6371857ff614b609d4cbaec1d8898cb71dda2cfc3aa75", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoplaybloxburgforfree\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a4c6e590b916754bef3ca13d9d849b6eda922ea98fd91a16779105c9fac1ba2", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoplaybloxburgforfree\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd5c34ecb0b5b64cf8c51a963a0aec8ea0cd9ca4d7fd394c8743d036248ab021", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoplaybloxburgforfree\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f6c3c04923a23852cb9cde48eaf2789c014ab8d40d3d12e2094c2e01a859894", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "413a51336d7d893b157f64911d6faf8d4536d0a750cbb1f1e0cf51330555d45b", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c015748049eb3af13302fbf556c03ab3c6ace672da5bd7a3360670223f7de13d", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9755f4cb9219f5f0c4fe8336ea944167b80692b56a571a4d9f6d1e03cb695e25", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "642ba4f1730c445fdfec4ce9b77ad49b571283cff07ce3e517f761147dc8b0fc", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "520572a5c0ef9e340879e8942f5b3f1bd003c3cddbc2533bad293c52f06547aa", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52768bdaf75e82919adfef4a5302041728486908682351e8b348c50507e28ee3", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a0726de7f14032f544361751fa230a9d4217ac4dc8439b32575db814b157bf", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65dcc0fd7bd35b7696067b4188061b0049354a984bafbd1ed2ec6383f1bff49", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29edde6ea6c9048adc01ad337b509d910397601d7aef5106714781ed07995a33", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54c5d45e874e3b323e974255886fef9eba30f7987f08e4318e17e9ead035758", + "regex": "(?i)^https?\\:\\/\\/meganzrobloxhacks\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2a99aa5862a9ac2d4506b0654264778dd2c97bca1f39af0f8f964efb6695d6d", + "regex": "(?i)^https?\\:\\/\\/meganzrobloxhacks\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12311e12ef5b2ade8539722c0c21ff25c5fb74fda570c6957772a06270fa9e5f", + "regex": "(?i)^https?\\:\\/\\/meganzrobloxhacks\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae1f55e0fe50138e03037c5679828a04dd621339b60042d5283084470c8b6fdf", + "regex": "(?i)^https?\\:\\/\\/meganzrobloxhacks\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbafbef63d1552526bad84ba3f551f4f46462cdd470d6f8df28b1525710a5b52", + "regex": "(?i)^https?\\:\\/\\/meganzrobloxhacks\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "576c98702d28e87d88f5b9ba28285f35d5139024fcaf2dc7d2983ae7e7db8ef8", + "regex": "(?i)^https?\\:\\/\\/meganzrobloxhacks\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70030543e10b66fb154f9efe57188d5277b14dc67dc197e73a0273a54cb0c358", + "regex": "(?i)^https?\\:\\/\\/meganzrobloxhacks\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d429835a08228cda70cf271bfd75d51b1ab686c94cbfaa0a4ca73948970b116e", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8951eabe0c5e5420c7a4dbaebda8a72060a4abd2bd5b7334fb1b88897663b90", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a41bac9586d6b3bede9dda6c9874833ad792d96ebaa620ebf78e54223d1f279f", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e95ca2bff16c09c99931f6b2beced275aabd0b8dc9681ad101de3ff025d6f74", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d23d488a03b3228aa5a51012f369dcdc37891c96a843314eb3fc188ea9dab2f", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "791895fefb0a64f19c7679df421ceb52e1b629aa770799a0f41ad8dcb230ba6e", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8419036515f387b7b079b9a3914a766177cbcfda13caffa2b70813e027131a24", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85a1cf54d57e3f137645705863eaf3801f5dab100954696366ecb0f135b78ceb", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c14e2cca74e67ab2356e46d1a3f10503277ea33e4f71ab5aa1a549904928a5f9", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f215b8b16eec78f5ff92a3dd82e7cad7b1aac1ac19c6670620c10549cde8e6c", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxscapeescapandodasorveteria\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2aa23c003fceddefc0276073e8d0e018546a634a511befff6c9b6e55fad47a64", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxscapeescapandodasorveteria\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02922d7b51f9f83b916dfc2db5fce0d66f05e50e83af104f6b379d8bbd5af7d0", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxscapeescapandodasorveteria\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa15d543989795a2ee679c320b941e37a91e0b1ecc71598cef3112d103fcb6de", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxscapeescapandodasorveteria\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9666ebaad54f2544a78fcfce43dfac41b856d436a0404ac3f8f348d208bec248", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxscapeescapandodasorveteria\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9447541d74b0ce6685386234f88944fa833df63d3e34787fe592c4c69d8fd5b", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxscapeescapandodasorveteria\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dab0ebe61012ef94cf8d36a546cbdd31522736a41b1dd7b022e85290198d7193", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxscapeescapandodasorveteria\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a37de36845237068ebcaf05c02e169be21fd76b09bf764d6270e23e701b63cb5", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxscapeescapandodasorveteria\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1fa17c15eb10fc3b542a8b745d0a1db39fd6687664ef4b6d21604df27193597", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxscapeescapandodasorveteria\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90fdd0037c0bc1fa7f76fbbcb3e7c64dbb01d1140acd5c53ac4c6c6bae8a591d", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffa95e06cc129e495dbfb987c6404bbfbeb44af995831887b5783453d58838c7", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03e39bd57af0acefaa7f66b341e50bab46fc9989ee535013dff9c2854627458c", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ce6895918fff2bf0f6f97872483027f33e890a043bb38d78520c47342c5b750", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cadf0e0c0a5c11c3d3b81a8ee23cc60424a0417ea6e391c96636563528510b73", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81bc7671068828f808a0b245d86c9773961bea03622c5c07245de2a35b6b54c4", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "603d72282f4332af3fe158622dfc442904ddd859d8a2991aa658de86d97b217f", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a4ef6760133c594a7ab4988d2fbe5a77354bad13b0507a38d4b61c7b60f9dda", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a764ebfc36abc649cb9a922eb567ba1a0d3192cff99728998f498b3142491e4", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4bf0a43d57f0a1a53f513c9abae594cedf7eb79bb37967960c96ac8e16556ee", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3321b588d9b966879ae6c4a5b6aefe9b951afa2607b6a141515ef1743ecec4f", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99af38a540aef06afa8ae06ca44fcbaf90fe80da288aac122e185ffab9f180ae", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0feeb837ce89787e7a7e3fc245f46f1850789e0f1c6ef20fa2e3311a4b39a4c4", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9a1d3a1d3056d1c717c9384739730ace07d4ad877f95c97ae1b57b4d25cad5c", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e086100700745ff6cdfd5b5d9801c9cd2cef2a3faf585685d0be49a39e2e1737", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbc1cb52e60af118b8b1ad58d3930e10f8554607b807cf1d66ed6071a046ee4a", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b3d74ae5f6f0d16bc3b0552ebcf0701386b150a18680e74a327b6caaa7ecfa5", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5243696cacf2a491239eb3daa3633f1c1509f2fc32d09fc7018eb709fbfcdff9", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed813de650e5ce69fd10e34af488719a1da7a0d78c696dbc8d09217800b020ab", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ee7858ea7e1f5f69ab57b697c66410fb463c9434674db3718f4782f9a9e0c7e", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a886352ca430e45afda51b15d941b6ffc4710055294ac027da180c7f3e8df39", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948a3db5666d17d0820ee594059b1a0f743c6ce933c0c6a5fdbb5d30d49ab7ab", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bd157fbfc37eabf1ff4ca5615ca35abe9052dcab39901e88ae229de7a89d93d", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d3588bdd584ed971ae3ee1cc782d7ccb622adbba254848b8d5374b7cf0bdcf6", + "regex": "(?i)^https?\\:\\/\\/robloxdecalapi\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c2396fb16978f8074d6d6741f39ccdafcc2b4d2a0e267c894bde3486c8f59f6", + "regex": "(?i)^https?\\:\\/\\/comohakearaalguienderobloxytenerrobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f818aea371a3e15824f75708ec383d502458300bdb44067455ae75f1fee3342", + "regex": "(?i)^https?\\:\\/\\/comohakearaalguienderobloxytenerrobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95a966372cb1d9b2e1559b47ee2a727912a5e7978166ae351d368d4e6ddf22d6", + "regex": "(?i)^https?\\:\\/\\/comohakearaalguienderobloxytenerrobux\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6bf860da4ebe7de6c95903f9431f27616710fd9cf3718a242085016c8af5eb0", + "regex": "(?i)^https?\\:\\/\\/comohakearaalguienderobloxytenerrobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b3d203d12b61b0e8e091c317eac2d1022b133fb5a7b50cb1cff6d2bf90115bf", + "regex": "(?i)^https?\\:\\/\\/comohakearaalguienderobloxytenerrobux\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf5d4fe843bf2ce848b845bd455bf78cb3ecb25ca159a2fb180ac0707b5fd109", + "regex": "(?i)^https?\\:\\/\\/comohakearaalguienderobloxytenerrobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c834f4a69c2150e4df414bd16fff84913ac6bf4fb47f41354279e78cd06d5999", + "regex": "(?i)^https?\\:\\/\\/codesforbeeswarmsimulatorroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd5e4631f49de10c620910feda53649eaca4716091a798007d6e343c7fa8481", + "regex": "(?i)^https?\\:\\/\\/codesforbeeswarmsimulatorroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3572d8f5f85a0f952e78a7caf2fe66c85e5422e4fc9752757d4516fd34f4de22", + "regex": "(?i)^https?\\:\\/\\/codesforbeeswarmsimulatorroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3e9c500d4b5945d937c57a9a467d3f68f0b5a577548f1aadaa2f9a96e518e98", + "regex": "(?i)^https?\\:\\/\\/codesforbeeswarmsimulatorroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7eae2ab706c0480220b015bf56d34396fc0c9bcad11231fccbd695f85856cca", + "regex": "(?i)^https?\\:\\/\\/codesforbeeswarmsimulatorroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b2f72226ad503111f454e5a0976c253624e96aed2766aa16e02393e7472767", + "regex": "(?i)^https?\\:\\/\\/codesforbeeswarmsimulatorroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7061a718dd584b15f2467735b939f6a6245e8de6d23031843688aedf44fb44f5", + "regex": "(?i)^https?\\:\\/\\/codesforbeeswarmsimulatorroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cf5c5c548aea904201b90d715338faf105e6b924ca57c23d71ad3d6bf684846", + "regex": "(?i)^https?\\:\\/\\/codesforbeeswarmsimulatorroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "819720740273b3c21a3b83e1b06311ae468b8bcf883c2179afc5568350cf0896", + "regex": "(?i)^https?\\:\\/\\/codigorobloxpararobux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e155096ab765d60f0794f6328c97f0b6217522040d6be656b1852ecaf0a7d797", + "regex": "(?i)^https?\\:\\/\\/codigorobloxpararobux\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b0afdae907ec18349922ee2409ce6d2cfd56d786bea8225db8188aa9e1aa3c8", + "regex": "(?i)^https?\\:\\/\\/codigorobloxpararobux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "320d3bfb83e07fd64b93cb91329ed9a4ed971c67591071dd63ecef9c8277f344", + "regex": "(?i)^https?\\:\\/\\/codigorobloxpararobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a37dd23880d1699bb068b440cd7e853879f7d6d157675eeb7218f42892227c2b", + "regex": "(?i)^https?\\:\\/\\/codigorobloxpararobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "106a6ff7481c81bd4c4d4c649fdc36a34cd39cbe459b9ff678cbd84ece5941c0", + "regex": "(?i)^https?\\:\\/\\/codigorobloxpararobux\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90e1c74cb261996f7c3b1c8b1be15a291adb8831bbe400fdacd529b9a1bc321a", + "regex": "(?i)^https?\\:\\/\\/pikachurobloxdecalid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13effcf499934a905a3cb260d9e1eae69db825db811a1fe5364ba56353b021ab", + "regex": "(?i)^https?\\:\\/\\/pikachurobloxdecalid\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc0df4a8e95b0849f22ab7cbc71dd357890a45675fa94b65131b3c79fc108a3e", + "regex": "(?i)^https?\\:\\/\\/pikachurobloxdecalid\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d0c7cdc3aa6113fe4e970aba407a449919892c557f95a5dbb303b26ba81893d", + "regex": "(?i)^https?\\:\\/\\/pikachurobloxdecalid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c3b8e2a5f1f4235c2a30ec7a894b2df6daa4b6b7b9982b17b1faf3d8cffd72c", + "regex": "(?i)^https?\\:\\/\\/pikachurobloxdecalid\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfe006819d1c5127f766a2ee76f5a39af8052dc60d96a23aab48962d1d6ebf66", + "regex": "(?i)^https?\\:\\/\\/pikachurobloxdecalid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bdeadcb17fec34a978e0f13c634fc471f3799b7442ea60da23b1108c5af7af8", + "regex": "(?i)^https?\\:\\/\\/pikachurobloxdecalid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c65561d0c21e83b05499cea4a396a57bdb7cac8ac68ea80dc4953169908ebfdb", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afc9fe3a3e70534ac746be057a7ce192859148eb59286c616eb3b0c82aa73b4a", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f27e1e9d6d1e78a7ee221560e6826b9849668326c03958990853a5979a6e38f", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ad4bc7fd82ac1369251d772f4349bd2d9f3f7cbea603b5a3a87bd1f8317ecfc", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b11b70aca2d2801ffdcc98494836a371a83ef91a18e50edad5eef4d23cfb5aa5", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4a05ea9c2a4802f9ba55df78aeb74231ec40f23b0f5aec559be9f56f359cc3d", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ee51095076302d1b1b90140c8ca1c69aadbe326853ac50079438811e548aa76", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70870281a19cd48cd9a09d304942d66771c869aff086d6dcf30813119e17485f", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5846d368972a88000a5be024ad04d0b2069726947cad09d3bb5e570ff35a38b", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e6ccbaa848d4f06dddfc38a47978e062b1fa82883b3ea01828333f431555fd6", + "regex": "(?i)^https?\\:\\/\\/robloxcitynamedecals\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8add17eb2f3f659f1c56f4151507effc35965ffcfe55139696ac875a2e18ce9", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9e7bd422d94a03d010fca5044c363c7369bdcf2706a30f5e69f07584ca898a7", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd192bf994cf7fa3b4f78498ce647e97455ea4459aba581511a4a8f19391cb90", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d51fe18b7215f698fb06b13409b57cc15849f846b130f71df1791a97de74ffc", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5ed8cbae8982e8d785845ec20e8805e7b33a2ad4e16769d1a075e9b94818dbc", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb0f15810df5e23f27c972c19576353049101bc32d38d0ae7e6658308bf91b88", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc4b2990b77dca8ee9ba4aa43aa71abd0b907b0abb2ebc08afe3fc9f71186f13", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f99247e83459e41ce13c77aa57b29535c51cac48ec611b73656f478d142dfc5", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c45cb7a1e69045bd04bebfa5064de1c575d6306865250505cce5dac000bf21e", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4b4db4b86a47b893905653d1e29046a8988acc9929d9b7fdac1282fd477d53b", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dec375dc1a2eca0be282d55b675833e50c36520bf725c128aeec3c195e2f73b", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec1a3043eee6003655838781e132efa94c29b8f76e5298cfc30211427dcf121", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e7e17f788081ec1a76fa62220e89fade733abdb4823ee8e81d872093337b3e9", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquesthacks\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea9bc8a080a8644d5e078fbd2cd9e04a43b9093dd8b179ac7ae2ba0420bff461", + "regex": "(?i)^https?\\:\\/\\/howtosellstuffonrobloxandgetrobuxback\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22c2d6348ad67c3aef8649cf2490a9380ce7398df879109adf830ad40b058c48", + "regex": "(?i)^https?\\:\\/\\/howtosellstuffonrobloxandgetrobuxback\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f25d8694866d11ed531b78d364e011b6d94693dbacb2ac35f2a7044e42c4476", + "regex": "(?i)^https?\\:\\/\\/howtosellstuffonrobloxandgetrobuxback\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f7623faa546ce56068dc86ff6a724264bc468d64071c57e8021909630802c80", + "regex": "(?i)^https?\\:\\/\\/howtosellstuffonrobloxandgetrobuxback\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d21c7026b86d95e58932ee1d52a7f86e7cc587ba9e987a0e610d380ea1ea58d", + "regex": "(?i)^https?\\:\\/\\/howtosellstuffonrobloxandgetrobuxback\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8080ecd28c9d1c72f33e056b5d16609d49ab1c6ae027787eb701e24113e21a0a", + "regex": "(?i)^https?\\:\\/\\/howtosellstuffonrobloxandgetrobuxback\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b35e301931d63f30faa7f7e7766d8ea5de331a40e24d9b57ec47c1f35f2cd13a", + "regex": "(?i)^https?\\:\\/\\/howtosellstuffonrobloxandgetrobuxback\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0baa71ef24e37353712f9f602beda09d6b0e894cb5f0bf69e54d705ea4f59542", + "regex": "(?i)^https?\\:\\/\\/howtosellstuffonrobloxandgetrobuxback\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57111cda8e45cf979e8809eb54002790f8e0f6a81118859d4ca2d159977360bf", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxtycoondenatal\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d407194e3473b5fa7010cb50acab8d01a581d35d60f0d527f024bafaef6f07bf", + "regex": "." + }, + { + "hash": "1cf81ddb397993b990972af1075780c0455b81291741c3e64f5fb40a46cfb302", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxtycoondenatal\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e653ec6d8a423771e26842940db77dfdfe5c7f046ab615a5fb7155d2277118b8", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxtycoondenatal\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "792078d4dfc23287e46d2e3507aef2747e454656e9a80a518ab7144f8278c4d4", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxtycoondenatal\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b04ed40ddffd2ff79d03915249b95bda132906c2dfc14f876a4c38de65bf3e4", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxtycoondenatal\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6a8ca5ccf4efc258206076799b20953ebe22df6b1e6143f7f1e4d7a2cfb0fff", + "regex": "." + }, + { + "hash": "1681dc6750f5378e8bb4e93706226a01f911785707b59c79ad9ab162561baf7b", + "regex": "(?i)^https?\\:\\/\\/rrobloxforrobuxrealgenerator\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab3c209b6b5e57333394b905a825e9fea93da98e5c7e259084b2c800cdef3830", + "regex": "(?i)^https?\\:\\/\\/gemiui_logn_gemine\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4def4e47f73523575d40430e219651e8584fa072ee6c1fa7f4e6f56d88d7f52a", + "regex": "." + }, + { + "hash": "513775ec81eeddc94602a8c8eb0a12da4b806b143ed08af6f9c84dbc275b2028", + "regex": "(?i)^https?\\:\\/\\/gemini_logn_gemcini\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "30d608a2b98cfec232861d019812041ce7bf719af2ca26dbdd9eb957e4c99be2", + "regex": "(?i)^https?\\:\\/\\/robloxclickfreerobux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "310fdb70713bedf5427a541f39414be08751a0428a8ce6a3b239f0615aeafffa", + "regex": "(?i)^https?\\:\\/\\/robloxclickfreerobux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "098dd7cc158313cd71f3235cef5951a94ef8a1a876dd70b21087d07acb3c7314", + "regex": "(?i)^https?\\:\\/\\/robloxclickfreerobux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cab9fbf44faa0f767dc459cac1a1b33d33dbd93b202169a1f154357687d0c86f", + "regex": "(?i)^https?\\:\\/\\/robloxclickfreerobux\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d3f5babdb00bd2d5a03837790c9d8b687157c5ede882196dbb2998dbbdfb2ec", + "regex": "(?i)^https?\\:\\/\\/robloxclickfreerobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd2b19340c937d75cdb15d303e335bad29f9d4f1bca7ce06de476afd5380d680", + "regex": "(?i)^https?\\:\\/\\/robloxclickfreerobux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8622de61c6e8dd63363460a032ea25c4630b1df9e2a735662aaa75c6353fbda", + "regex": "(?i)^https?\\:\\/\\/robloxclickfreerobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e961ae0a5815ee86ee9758654b148f40c86b19f4fee51d6c7b8b8a957176858", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34905bdb1fa54ba8f6b61ca6b1ed4efc0ab6b987d037fc3e852f38e9b235695d", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "accbfd71052246930baceddd677faf028117e06694b6ab6bc7e7564dcfc88404", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e7e98a9cd2cdafa6a77b2bde683b4f09bd6abe2980fed5bbb4570d586e9cb20", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c4e41857f37d5fe250ddc276282d2358aba00f2dd0bbbec083ab98471630e12", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a0bede081b938224bfe1312cea9af5030b4b7b2ebf05a88c169d7c17ed91af3", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f12297db47918af5887a65f046e07270b997e8ffba6346e499d2c5408023c27", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3d91f8d8d8ab65829e24d5b4e99ca10b54552393fed9fb7000072f322de24a4", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d2e220d8449d4d86035ca16c00568860b254426e0640d2de8936fa04f87c7dc", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a65eab5ed950a9bf4e11a1c6a248030bc0763085f30c95a4862a8c203f4b975", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74a8638c4ab6910559a1aae9a8448c3d11e94550d6de873e6dda748f70792268", + "regex": "(?i)^https?\\:\\/\\/bussimulatorcoderoblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94269526f9e81d31bb7a5e9ca53e7c74fd4f79b6b1ab9fdb3c52b3d20382b25e", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cd855f874a99fbe392a70f1e46984195938cb6a6c8ad6d6f7d07b266ad46940", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cb3b6a08ea8d90123b9ea59baa6b893ead427b3bbfe6260751458040d3c5b2a", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fedcc70d1c6b3f44ffec7d2c3d1ca86120466f4ef8226a853c261b2527e7f216", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf149ff3bfd0b638923c33c40a3a1abf477972e5447c8717d32d59a556ffd66", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9914350990208cb23d561a9636f8c44ef87a93926fd406430fbf4c697a7f1446", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c0e10f90af0f973dd80ca9a5d77e082c583328a833cbf6818165c653c7e4fbe", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f15360c51e94fc288622a2414d8ecba20e4dfdcbf29f8429337da7184febced", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffc4f74e21460f15cea4c2b55cc48fce3882df330c4b0fbbc659bcc834974074", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05249796de47dd436c1446010d1874380998a326bc357cbd00dd4ce52ae9dda2", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e123a01ea7a81f12d044de4f6fed3c8fa5496d5f89273bb134e99547b081a30", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6cfb9a763181cc19b94d698801a250191de1548ed4f0fe93846cabee66ec5f1", + "regex": "(?i)^https?\\:\\/\\/spongebobdecalrobloxid\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca2791adc1adc1bd73a57a689c107ff75feb62e38e336616e20117df7614a1e", + "regex": "(?i)^https?\\:\\/\\/howdoyougethacksforroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "492b50d56f12ea270de7f442286bb28ae400c9a80dd93b60b64fb0e1f0a2f006", + "regex": "(?i)^https?\\:\\/\\/howdoyougethacksforroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c343e41d75236021e2fff97f989de4bbd84b9c95d05d352c79be13e3fca6ef00", + "regex": "(?i)^https?\\:\\/\\/howdoyougethacksforroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "451df539dc28dc99cd2fd9d319aa7b5599572ccfe83ef85c29b7eba55531b44e", + "regex": "(?i)^https?\\:\\/\\/howdoyougethacksforroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ac2db70b1143feba68573f306cdc6a0d790b3d0aa5b377704e75e14883098ba", + "regex": "(?i)^https?\\:\\/\\/howdoyougethacksforroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93bff520ea4a218b1eb3e7ada0b3f184761a354b4d881b8fc8f995318ed0ba54", + "regex": "(?i)^https?\\:\\/\\/howdoyougethacksforroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8efcd4b66384af734bb3e0e2da5a99dcdc7a5cb652432a201c80caa2320d45f", + "regex": "(?i)^https?\\:\\/\\/howdoyougethacksforroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2ca583229788e76e8039747838d3083fb8cf68be9cff11a48da759da1a0d1ad", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82ce1c995879d8a6d5bc46d127fa9e0330b23e308d0564db519a35b9f77141d1", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccbc8124245d2983376254fe68c43d38cdd68e0f3294c4dfab7b86bca08cc3b7", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4287027a84513eacb34d25f5862379ffbadb81d3cd901982b5ebe9642246c6c6", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ccddb6fa3177195aeca71b9ec88b4f46718ae8092c29c0dc877c722deb620ec", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb351a41ec76749580c899e00dadcb4cfdffb95b8cc3147a2e09fe81d7862ec", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c0a9d60563bb183e444d4ce2ce0de129d03503461eb0b71233e8502db1f2c02", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5292f7294d85293c443c99746f0fa564322ba66345c0d284460dee9a08e67878", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6e1d60b13f2f0d082a04c044395c6d6eab8b45944a12fb2ba83fb79717f2404", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c53ca0929c741eac52d3ad54bcd798b02fd013bba1c29299bb5782ddb4456a5", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cae59ed0df68e9ee675eb59cd575c7abcd20331f66d82e5801f1dabb54b9a049", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7aeb4350c31a9a97457a419819aaa70ec5f4e27c0a1734fd95ca63243c1cfb9", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3c026a41afad840fae47c4c0e4c749181df244670e77309cd397b6aa8724783", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5fad475e246fec4ebb5b25217731dffd8cd1dc24fbf380ec308a8b0ba5b343f", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90936963994dc35513b4d84284912af4e695027ed3daa9e90fcf580a65a748ca", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b34c37ffa8357e58757def2e61398490964ac2bb2a3276cb1d8c8f7fdfacb857", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446709e3f3bfb5edc37fc4f2e6c8ea7d89ca9412ade32edbbd55b1acdb6bc0af", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3f7aae11f26382ca76f304c1acc8835ecc082bb1ab72631fed0832bb9d16e20", + "regex": "(?i)^https?\\:\\/\\/staffonlyrobloxdecal\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8241dcb8f18fe65f48979a6905540a82270f1f522bf8d4fc6f0e8c7179b3c66c", + "regex": "(?i)^https?\\:\\/\\/ninjalegendsrobloxhack\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "280dbf398480cfecdf490e3b56b6a3eb63bda73f0c82eb49c55695ef61137cf3", + "regex": "(?i)^https?\\:\\/\\/ninjalegendsrobloxhack\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94fce375214b84ff29d3d83a90cc1dcb85e20a31c116422d0e045ceca87a1263", + "regex": "(?i)^https?\\:\\/\\/ninjalegendsrobloxhack\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e266c574558aa8d6ee42858230c90823cad399c2b9b89b3bc68961edb8b4f0b6", + "regex": "(?i)^https?\\:\\/\\/freerobloxgui\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8a971fdab51b62cffbfc70b9de514c3fd51c2d6263096e4edf2e8a3e6fa7db3", + "regex": "(?i)^https?\\:\\/\\/freerobloxgui\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b1ef5feacb67fe5e8923018b98b2caf44417b0b263dc449a45d0472b631e365", + "regex": "(?i)^https?\\:\\/\\/freerobloxgui\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03e0c1e4a945e21c3a22c2804b28b1f62160f87dceb768e6c870812a910fd323", + "regex": "(?i)^https?\\:\\/\\/freerobloxgui\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fcc438eb3afa518d0fc9b793ea15913cb81254ae26ecdeb59830f24d5afe592", + "regex": "(?i)^https?\\:\\/\\/ex7robloxfree\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eebb455d5d5d387e6a4bfe4e81eee014bf3e9d7385b1ee53e0d67392ab3c7cdc", + "regex": "(?i)^https?\\:\\/\\/ex7robloxfree\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecbe11ed042c1873f487fc3321ac102aec54dd548e1bbd9b0c9b03e5f310c16d", + "regex": "(?i)^https?\\:\\/\\/ex7robloxfree\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86909846e6b49b59d8c1b1be8c6beee87c0ae101d0f8124b7336d6f33d87fcb3", + "regex": "(?i)^https?\\:\\/\\/ex7robloxfree\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8105dd527dd9f905fb737a7b24fe28277532fed5fc6487be01f806fe4db5c1bf", + "regex": "(?i)^https?\\:\\/\\/ex7robloxfree\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29fa8749c75f188c54d30b261424da191a520ebc2879c75b9fbeef6fc0ce01d7", + "regex": "(?i)^https?\\:\\/\\/ex7robloxfree\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9670a58df7530d415bed1408303317036c828061a619007045f6823de4be09f4", + "regex": "(?i)^https?\\:\\/\\/ex7robloxfree\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a700446bf552037b6e56327634bf9e34f02315788cc197e01e2ba294134129c1", + "regex": "(?i)^https?\\:\\/\\/ex7robloxfree\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf4ffbfdb59fc199274801b6934e0a58b182902aa0c893b967f0cd4d97ed84c3", + "regex": "(?i)^https?\\:\\/\\/ex7robloxfree\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "550f01106602d1af5bd3830eb3c6236e44ce7a310e383757c6f252bc0dfd5726", + "regex": "(?i)^https?\\:\\/\\/robloxdecalapi\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61647d591a6ad3f853d14b445a4f4c42f36be0c42ce2c993b384c3e03918a524", + "regex": "(?i)^https?\\:\\/\\/robloxdecalapi\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e2020c48bf7d1bd8bcadc536d765498352caa1f47dc0423478b3cbac2621c08", + "regex": "(?i)^https?\\:\\/\\/robloxdecalapi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da19618c9a3446dc06f2663b78acf50c08d5514e4bfeeabaf1be96d3fb6d1733", + "regex": "(?i)^https?\\:\\/\\/robloxdecalapi\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1504b2ce4cd611c12d6408f13f8037166c88a36e1a8d35a7a8f2e72dd64fe4d0", + "regex": "(?i)^https?\\:\\/\\/robloxdecalapi\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a17973279f546ed1cb83481ffdc783ea34eb5c4ef670701f3b4faa0304240534", + "regex": "(?i)^https?\\:\\/\\/robloxdecalapi\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "221f197434c99692b5de18b4310d5eb25c4d6d713ba32138d467d9ccf5fc0b9f", + "regex": "(?i)^https?\\:\\/\\/robloxdecalapi\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc6a6fe244b114c24c698844e3b25808eab58e5d759ce955f9f634eeb3124d44", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2currencyhacking\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1104e3840c6865e634293844e8c0b8d3cd1c7053a554724e602174469fa807c3", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2currencyhacking\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96c1eca5d149e42a5324f40719c1fb5671302bd9490dcc63dc44b02847cc4f63", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2currencyhacking\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b33e943dcc9097c8939135a5925cf7be5a3fe4fe10231be20b44b5ef3e8175", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2currencyhacking\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d16488913b1ae7b5bdba325042afe078452f22989b9007cf3c16f1d682db648", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2currencyhacking\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9c70da127e3271796a02a4b268b9cad53ba93301b590dd1bfa8b8d683ef1e3a", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2currencyhacking\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d4ce1bf6d1e3fcb1d320637cd66c7cfbeab1ad28262824563fb7fe7c0fb10b2", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2currencyhacking\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da115c929c8b42a78f6fc0644836b278ad4ba09a7ce46ce9ea4eafc0c197568", + "regex": "(?i)^https?\\:\\/\\/robloxlumbertycoon2currencyhacking\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b6d98212f2a8d7e2256b060d0ab1af1b479d65700d8551d54a928c4fc1971f5", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxdizastrenaturais\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a656d452dfe8116c07869bee91009b40da0cd2ed4f2f4fef81f5f056108428", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxdizastrenaturais\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eac070dcb04623cf5eed5fdd19ac0979317609207741e9725ebe408882e27034", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxdizastrenaturais\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "827bff6f70a0aa02922b9a858ce33dc887be894c1778ccedac30fcb15358cd38", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxdizastrenaturais\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ba9428db5d2f140be8b778a9709800f50fd61094243e7c5818ed8ec38cf92b", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxdizastrenaturais\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e77f25022065c98ba576a85f8a5180b81c6e79d046cbb8db5919edd61b198f46", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d37b7bd58a24999c58e4065cf50ee71de79c5a622f92676ea20c95be14ab362", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc7f7ea1d11fac63241ebe460224706102890ae5aca1e6343776069ad1779c23", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a19a9673d7712fdd4664daad5a64a5a295c0213fd5e5ae33d2b2f35fad46b09", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d0a58fee634c29c6c911de826f101593620775846053716d9714f0896796991", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2079fcafdd8dc93d47f4293b572560114c44d7416c571a0c0ec4a8f4eebc1a2c", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b06b6817cc5e7fd20d1dcfdd57d3d26b7b2cdcc62910b54830d7707b09b383c", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7f0fd1a855690713798e6d052ab0ac7aab564b19d10a60ee7cf266d41f628b8", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c826d2fe2254c90c23a1e6b2834cba8e7fee2cc1ec6babaf1a3a2493ba332634", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9c6d71f3a8aeb667ea4e4b40471803ebcf5bc69c333d890b35a40d4797328f6", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3797f5d9890fca886f3c4f7dc5bf20ca1477e4e6d237e4eac1a71424093963d2", + "regex": "(?i)^https?\\:\\/\\/contaderobloxcomrobuxgrtis\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddc50f35719e263ac29185a234a9e55a76d0ff7af6ac0422d11a50cb1ae717d8", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffddc8371d189d7ade598f9b0de12a6b0716834d7f9812859eefb0156e13fa94", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc8bd5eb1ae8eadb2b849613754cac2e5e75fb898bb2873cdee151a5bb5bd783", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dd12528c9a3485506c9b2fbaee0abaea24ceef95c18c7f3f7867720c6949a61", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b85cac1afa8ba499d90fbc677d5d44501ac11ce743d45c441dbc94310c27da2", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08723f574820278540f8a518d9852ebb68b7c929028acc0c805847dbdcbfb5e9", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b14227050ca50b65ccd78b33b922c42001156ecffe9d9ca5cbac6691ae68620", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c78a98ff649dbc1c6aaa971f2d0d8ee4168edac681342bb9ceb2e2cfeb85cf", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87e1d14fc89c1269e0425b8a441b77d597a720c94e5d4715906788171422a0bb", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46e893ab3556051026c52e3a4bc98791bbd0a647196dbabd93d4a522d0597c33", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "134c77de65fdddbe06da077a12877c55e8d1cd51c7f566d09490a48c62cb9daa", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4760b48da0f0fd7b24dc531c947d9e2a28318766f4faf124b7742e97b472fee7", + "regex": "(?i)^https?\\:\\/\\/codigodojogopowersimulatorroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10b40485131a4fedc3ffabaa04d44e685027cb3cabc8583db100bed194dc262a", + "regex": "(?i)^https?\\:\\/\\/jogodonanatsunotaizairoblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c11651630969f8c14f72b94e0e2130507f35609ce8c56c74937ecc82016a3303", + "regex": "(?i)^https?\\:\\/\\/jogodonanatsunotaizairoblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1abe6e971c5219eb2c4f550b4758bdb64220afc164b6c64bf50d51887838ba4f", + "regex": "(?i)^https?\\:\\/\\/jogodonanatsunotaizairoblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80836885f9c935105105a3c41f5159f675f842d611ff2b2e1f01ad2684fd76e8", + "regex": "(?i)^https?\\:\\/\\/jogodonanatsunotaizairoblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bccdbb1aeea10461b13dfd9bb46d52c7f5fd21816e77dd84c32462ed92d36b85", + "regex": "(?i)^https?\\:\\/\\/jogodonanatsunotaizairoblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d92742fe4c8c1a3155b756290be63cef9137b42ca2df5c820d0577965fb9931", + "regex": "(?i)^https?\\:\\/\\/jogodonanatsunotaizairoblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54e4a86bbda751da0f7d960a226ef40f44f903ed54fc87881dbff098990677d9", + "regex": "(?i)^https?\\:\\/\\/jogodonanatsunotaizairoblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8261bd42313afdd78c2c6f0013dfde1b06d8c86a3bb47f6e74e6af1878f02ca", + "regex": "(?i)^https?\\:\\/\\/piorjogodoroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a0516076a27026a1472b781509a9f7ef35736fb43386530f3ec2e9905e2af06", + "regex": "(?i)^https?\\:\\/\\/piorjogodoroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c6b04053ab3da793bb7fd997380a405de8c8f17faac2b6c8d9040ebcb043fd3", + "regex": "(?i)^https?\\:\\/\\/piorjogodoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23b843540dfb50235bcd359c2013e2d09b6b78f53723ea17c84f3266f548e2ec", + "regex": "(?i)^https?\\:\\/\\/piorjogodoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be32999918eb70abcd278386722a68c7d74983b6688118aa3ba399c3c0e0fd48", + "regex": "(?i)^https?\\:\\/\\/piorjogodoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb9fe453d130c7d00b2fd79dad34f82fa90d54b0b98fab4074b4e07df86f68b5", + "regex": "(?i)^https?\\:\\/\\/aranhamasterjogandoroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61297a173d1093348179bfe5d6b85db61871e04ee09a9de617e46b3295f31bb7", + "regex": "(?i)^https?\\:\\/\\/aranhamasterjogandoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3d95eabee982362f695cafc036b9d1dc1813bf65d743a824d7180095d2f7155", + "regex": "(?i)^https?\\:\\/\\/aranhamasterjogandoroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a30000b720f84bfb92099a112e906d16cba628abed64a473cf8cc92af68eb8e", + "regex": "(?i)^https?\\:\\/\\/aranhamasterjogandoroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf051815cd49eb285e4324a7c366733c195dd312ad9180de94d70b038e94655f", + "regex": "(?i)^https?\\:\\/\\/aranhamasterjogandoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64b43fa2c6f728ab4724638a85614552b716e9aa42fc0c2edafbb3ba8933c95d", + "regex": "(?i)^https?\\:\\/\\/aranhamasterjogandoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a180ebab32cfc463909159b6165fa090754f0ff76ee6909f9a031867428b149e", + "regex": "(?i)^https?\\:\\/\\/aranhamasterjogandoroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6abaf63bc4e8fa502d3b05183cea5e5b6d8700bb033f96f4e17d6bf2bed5b41b", + "regex": "(?i)^https?\\:\\/\\/aranhamasterjogandoroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea895a7bcfeac80c914049e2a805a3767ffd9703ff369571b937242489ea7e90", + "regex": "(?i)^https?\\:\\/\\/aranhamasterjogandoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "354b76543d0ab4674575156915de3b9814a730b797b12459493028ce125a2591", + "regex": "(?i)^https?\\:\\/\\/robloxdiamondstickcodeid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ed8c9150c13c708bd1ed4e5a4937be813db343d893b1cc97548aacb0c7fb5b", + "regex": "(?i)^https?\\:\\/\\/robloxdiamondstickcodeid\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcd5ae9f55d7311a4a057d9c63f6d1ba9d958e8b57cbc6bbf872f63e34b9b111", + "regex": "(?i)^https?\\:\\/\\/comovertodososjogosquevocejogounorobl\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae99f91b30dc5b3929ec922ffea623904dbdc812b080d68a090f9122d6cc714d", + "regex": "(?i)^https?\\:\\/\\/comovertodososjogosquevocejogounorobl\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf05a07b7c43ab24ba5de949cb3fa70d1f0318ac03e187091658de45633fa872", + "regex": "(?i)^https?\\:\\/\\/comovertodososjogosquevocejogounorobl\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a7baa9e7e08632b37d39aaab4ad44a1072aad5f878ba14e7e2dce40e80d5457", + "regex": "(?i)^https?\\:\\/\\/comovertodososjogosquevocejogounorobl\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2b577bbb3b717c1cd2bf8599b88009af083fa4a15e932138398a5a20338a4ed", + "regex": "(?i)^https?\\:\\/\\/comovertodososjogosquevocejogounorobl\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e50c904d3b1f3b06e81e2a2264acdecb86db12055430297a3e604f1d0881b64", + "regex": "(?i)^https?\\:\\/\\/comovertodososjogosquevocejogounorobl\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "347e8fd5d9bcad9047378b02ac590ec454a0fedff0635b22b8db24b1db9e8dcf", + "regex": "(?i)^https?\\:\\/\\/comovertodososjogosquevocejogounorobl\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7b471347ca58fb0d1d3399db5bbb31fa4f05dd50a0915381c7ac2d3ada93a91", + "regex": "(?i)^https?\\:\\/\\/comovertodososjogosquevocejogounorobl\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68b8d216208d9921057222ad0f08f1092bafe741c53368eaaee2f19a1c230591", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afb64f344c1b8a6cab45c9f5d4e0f05ad3850f4cc8edb69369f6a5a731b02e5b", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386c9824b7beb25a3ccebbfc45bc8acfa5b52650af0e38b423490e4c23f6d064", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51425295dfdb4ceefb5fdca0d550fbc226c9fc5ca4392d14d48fd362cc885fad", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c25454945c0ee26eb17e190018b5a4c480fbaec9cd8451aa5f4537774ed81c77", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d75b2bcc884d6b5e01f25325c0beaf55661e3f9bccddbb3daf5238170a5d031", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb559050892fedb0a24dc902f15a4e17e989dcbfd3f946b42a1f5dd7a16461e0", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658c0464b44ee2a297b634a1272d9c3993ce47756256d8f2e21e1bcfdc8b666c", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0be6ea49055a11e7f38900a65dbb1d32e599b67334b36f16f1f59957c7fe91c", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c316f9411824e878470253b40b4ae6edabaccde0850bc82d16f7b6191c51cca0", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f55eb3a68518b843f91d58b15650e6fe796bf22cc21383f180cb5f05678720f", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7eaee6400cdb71c6d8dfe5153f2151899f3a2ee2aa20e74c6a6933368eb550a", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e190dccd6c4bd6619e7a06baff3c7c01cd22c19fbcc19a5a3e2edc8a6ee5640", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7145f36eca7a4bd62f520e3f972a2a4a657e75e374359b9d289f03b33e40a54", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdf262191e52801fd19b214efd6a48165a4910a93ba1dd41809560227fa995cc", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe02d28e074e5569fe33f8eb755786ac99add0026fdced58f29e1004ce67a9c9", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88f15a86a50c39c58149fa70d428316a3bae2f186fbed97e9233e1f784b4a35c", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5883b76080f39098bbac687ce86ff0071bba7ae6bcfca513c5c066553db934b3", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05fa825d1b31624ff18adb6cc0e5a6fc9ed6bd9a7f35ef4bf2d48f7a16a85d0f", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7804d11b4c66987b0bc548d53d036657ed0fded176f0838cc15cc3ec1a6c96df", + "regex": "(?i)^https?\\:\\/\\/bypasseddecalsroblox2021may\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ea2fe247d128c4ed7af9817a9c4231ad59109fe276143b53b35dfa9b9e21450", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7cf2bf1f97d716d24febc0fcd1993517c987a8e8eff914de5b4e5a8e8babd13", + "regex": "(?i)^https?\\:\\/\\/robloxhackdev\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50a88558182d05317750199cbfe6d3b6f92c2bb65d7dd50be65ab0097e83544b", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec147ef1dc831aaadd4accd649e7f450c8f00c6947bb1c461a68b528e962fbed", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ad125e1b4f9f3311f33b6fafe560d86fb3a38f9ed7ff164cb0c7afad6b27562", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a904cf18c1e5195b746196ad61cd18ca352a71b077a563ebcf5371041263a6f4", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a923a414f91d026cef63a5a230525c270418d53c9e3b3498205afb93afa10d60", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c33a243aa464fce21f0dacd74505cb082f6f5dd604e9141ac1a8db37cf28a51c", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcfd0885aa8a300b8b8565ec761adceb5922bca26a191fb61645568fd86e83b1", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89233d601f5278dc3c2e126b0cf272c23f986c2da4c1b60e0aa1b43e9e7eab06", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "622045defaf72e3e0708872bcbb735d09d6b4cddd2fdbc3de12893cf2eaa9c57", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af994129a73a39df054acd440aac3dfd85f38a76bf2c2564e804d663d0afa063", + "regex": "(?i)^https?\\:\\/\\/jogosdedesfilardoroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ef9c3e4c2fd6821b5e196361ecc4a62896b95710b4cdd391f3daa6ddd0c64f9", + "regex": "(?i)^https?\\:\\/\\/jogorobloxfabricasuperherois\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c850d4448ebcce3a2a54abe5a9d7f109aef000287ab3261ee43463e1adea3e", + "regex": "(?i)^https?\\:\\/\\/jogorobloxfabricasuperherois\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f7a03d8b5725e3d24392478060730b913132d3220b2dc13b6a7d3c169cd3e73", + "regex": "(?i)^https?\\:\\/\\/jogorobloxfabricasuperherois\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cf349ca98d3ebfed3b820cd6dd6c2123540dd9b3cdae698e4615bd24df5fdd6", + "regex": "(?i)^https?\\:\\/\\/jogorobloxfabricasuperherois\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0890fdc41c8d35d92270394c31e0f477517b6a0cbeaaedf5f1fba247df711120", + "regex": "(?i)^https?\\:\\/\\/jogorobloxfabricasuperherois\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41fe6427aa40951a63cf687ff0c56b8265d3ceb8e3db462104ef6ab8ac69adf9", + "regex": "(?i)^https?\\:\\/\\/jogorobloxfabricasuperherois\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7be6179f025047e58b73b30051f6ad046833eba97f66cbc82a1f9c90dc4c3df7", + "regex": "(?i)^https?\\:\\/\\/jogorobloxfabricasuperherois\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae6cb1351da367208670de90a7821d3c6a258371c605e4e18e824d927df3da17", + "regex": "(?i)^https?\\:\\/\\/robloxhackdev\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7978bea84c796a3a77643f14f9fe56d9e9f1af2daf20b56a627cbcba1fdc027", + "regex": "(?i)^https?\\:\\/\\/robloxhackdev\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8eab01825a5044fc8a15a9efe4bebc16d5bbe64aa55d4c83c618884f16cb4dfd", + "regex": "(?i)^https?\\:\\/\\/robloxhackdev\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2c28fdc62598621596fbba9a8c3d77653e21f6c6fbf8ce36b4c87949ed028f8", + "regex": "(?i)^https?\\:\\/\\/robloxhackdev\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f151be476ad0bc26d1b75bce1284ef34fc572e13bfa41cdcb0546912639d95", + "regex": "(?i)^https?\\:\\/\\/robloxhackdev\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9f697413b1b5326e6e2063d1aab257044079c065bb2671c46c7dfd6835db618", + "regex": "(?i)^https?\\:\\/\\/robloxhackdev\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c785de51c1c6517b3d67192b2046f6b38ec04e41ebd8464667b4619c966acd64", + "regex": "(?i)^https?\\:\\/\\/robloxhackdev\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e80211e2c98b66ae0883ca02f4aeaf5043f5e501840ac84f8f6344574b07c867", + "regex": "(?i)^https?\\:\\/\\/robloxhackdev\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e1a6d00be52c2bb8ddd2afaae5a06b38d9ce814bb16e999562a2bafb317fa49", + "regex": "(?i)^https?\\:\\/\\/bedavarobloxrobuxkodurardosyatcindir\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1930ffc64da3fa38a02644171203c03e8ad084800814c4d25a021cd6e7b9db9", + "regex": "(?i)^https?\\:\\/\\/bedavarobloxrobuxkodurardosyatcindir\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c67dd25d292a17cc0ea0ff4a528ffefa55735b55e031f0afdce6df34f1ce84e0", + "regex": "(?i)^https?\\:\\/\\/bedavarobloxrobuxkodurardosyatcindir\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c17f48764db549a0216e441914a4d99b88806d5c5f813de2a4be1ef124c81a8", + "regex": "(?i)^https?\\:\\/\\/bedavarobloxrobuxkodurardosyatcindir\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0501e6d771f8536f7b4284c985d3522edb21d34f6e98738902ad87145e961d5", + "regex": "(?i)^https?\\:\\/\\/bedavarobloxrobuxkodurardosyatcindir\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cc5f570f59f806d6d2e44575dc55de9129031f64c1b8e0a10ed36a6086691f5", + "regex": "(?i)^https?\\:\\/\\/bedavarobloxrobuxkodurardosyatcindir\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dca9c15e8ef9ec912d6775f797328d4a26d7d7c3f119e9b4709772213673863c", + "regex": "(?i)^https?\\:\\/\\/bedavarobloxrobuxkodurardosyatcindir\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "437dc856549332950ef07048508d45b84df06cedc1283f69860187ee2be92e21", + "regex": "(?i)^https?\\:\\/\\/bedavarobloxrobuxkodurardosyatcindir\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cc816307a93748a110b649979e8512440a9242a15143699a241a55c2597a3b4", + "regex": "(?i)^https?\\:\\/\\/bedavarobloxrobuxkodurardosyatcindir\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7434c8c45c4b51f61dce46b7491e23fd518722099bf78db0c74d5466c69319ee", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxnaslatlr2021gogledendeil\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b4887ece65194a3c45e3aacfa7eeb4d3d7b57d45f362da2ee015bd90584e989", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxnaslatlr2021gogledendeil\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35f75d354999d3e6a481b8200ed2743ee583a6d0af2a40791cd9361fd0534265", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxnaslatlr2021gogledendeil\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9b68fcb28d303dd60f230fd36e3289776184f5c36ada7e81eeb8edcc48f2e5c", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxnaslatlr2021gogledendeil\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b92b2804bee0f83cc0b231edcd8cf41ebbbc96ffd24b7f8c4ae4aab42d645790", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxnaslatlr2021gogledendeil\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b2d4494041923f768ce08cd85a187bc5f5af4ace2270559dcf3d4c7cc13d8a", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxnaslatlr2021gogledendeil\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26b27c733ed84376f0ffff5e55cd730b72b2970a7b92d84f1773447b6de1ebc9", + "regex": "(?i)^https?\\:\\/\\/freeshirtsrobloxcatalog\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2853e054cb23dfa4f3b65e5ae90da8d73c6222803caa9aa88c97661cc2441fdd", + "regex": "(?i)^https?\\:\\/\\/freeshirtsrobloxcatalog\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99bc6e26c48833be6d2c9c4d7d2575ff08dba47792168e9faadc7c76e6c4b2b7", + "regex": "(?i)^https?\\:\\/\\/freeshirtsrobloxcatalog\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a00864b63b3a5b68afcdef2e7ec5be861be31c28e5e2d4405318614c70169201", + "regex": "(?i)^https?\\:\\/\\/freeshirtsrobloxcatalog\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d410228ceb4ab279216c0de8547249c9fd5adf143b965bd507c37cae1af394", + "regex": "(?i)^https?\\:\\/\\/freeshirtsrobloxcatalog\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f924b9617842c58ad9b0509ec76d11638fc88428e7f9eb1ededee14a886f44c", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf310999586b0c44e7701ca732df727055cfd457cedf286995b9a3b027139dfd", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99afb17fcc5c819961e8999c79b856efdda82996959a920d335a71d2e41f8a2a", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f756c5d1fe75b515445f22ad5b1a8f3c0c553a640d81678f087e68592b31aa0e", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99b33cf5d9b5a92209a04e48ff94e92747fc0234b5bec9edbe061689b173e52a", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32ae7262542f7180bbf7f5cf01d83a74e845a1a8d8e069d8bc90e9bd71dc37e7", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c8ecab8c600523dd9ebaac445f2e9635651794fd806daf0b962e00cb19425d3", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acb7bbb8e0282cd1428d4fc927375edfff1cb77965c655181275a46ff644ab44", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a460e2fb0194fa90f82f1c0ed80003a4cb02e62244d1904d7868dc8c6fd2195", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0df76cbb81bba5b6e6993313d4e17af5c5161b6febc9db2c1240e83601b62a1", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71108b9e81e5bceca8ac9e0372852c3976a37752801ffc650f0f2c7eb159bbcb", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc57d39b2c060d907366d74e2a574f5d5e2e04cc30040d2639dccae93c8d063f", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff468a5eca5f366cd7866b9ba492170e4f1c561934153a1c81833d8d6bb6be4e", + "regex": "(?i)^https?\\:\\/\\/coderobloxstudiomusicmachmalo2021\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4202a669a0fa0e010159ee316555fef963e9e2c23b81c3a7b799d27d59966d4f", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65af391fe3bb51ed88a5778588a41ee6b8a9b6cb47de4a40ce3a241050424af", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b448a178d1d396aff6b9ab326cbf869b1a6b1f23ddd57a24df2f98a57ac11d8", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81ee0b7e673d7135f6575f11f6342c2143d6df59a763781b450abb9471517fb8", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15dc59636096861f2e99037aae6aa2496f7b409cf9e3d966b4bde8ec063dfea2", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d6c185b6085f46dbebaec0ef8f3a051a99f34307d187ce013b951eb2e016aa7", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7be88ca3cc84a274c9770683173b4c2168bcf40ed2c614ae060fd84d1fd2725", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "702a2cfad3ba8c866373e02b66fd31df69a7ab67e96cb2c0356b52f29762148b", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc98f2c4fa39ecc883eadb61fb57a0faf674dcc54d570902059a77742a0d3d4a", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22152c8c67ce79f0b70796f48317a2a150e3fa57c70d52431eabda5d6ba861b5", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f8a7399fdbdbc3455cd5231bf765bef871e04e36677b328593686c6fc66a58f", + "regex": "(?i)^https?\\:\\/\\/howdoyougivesomeonerobuxinroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8036db0ac3f7606d65ca36dfac8017e9830c0e722e25a58153a2c8e4a57ab5d", + "regex": "(?i)^https?\\:\\/\\/comentdansrobloxlescodessurnewshotgun\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78fd573eb22f650a42315957aa5441d2a3d67507a7dcb9c059af8f6321aaeb91", + "regex": "(?i)^https?\\:\\/\\/comentdansrobloxlescodessurnewshotgun\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65e7c1615d5e58331740150ce6d4d4875b9af92080357c61e013215b4627f94e", + "regex": "(?i)^https?\\:\\/\\/comentdansrobloxlescodessurnewshotgun\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5f12731a19719b515dacfee9c0b070b1314c1827527e4aa8bc43fa8213d023b", + "regex": "(?i)^https?\\:\\/\\/comentdansrobloxlescodessurnewshotgun\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5537b77154f959850c562b046e540ab69018952df54b6388e166d17acc2498a4", + "regex": "(?i)^https?\\:\\/\\/comentdansrobloxlescodessurnewshotgun\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dbd970b913158733988761790fbec02cd06e2aaf0b37a5ba981320b55a68457", + "regex": "(?i)^https?\\:\\/\\/comentdansrobloxlescodessurnewshotgun\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b579feca2de2095c03206a63f6739869474a8bffbc39795202bc24d265714df3", + "regex": "(?i)^https?\\:\\/\\/comentdansrobloxlescodessurnewshotgun\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a67e016e1f856335932c94b3147eca287348e153a65fce342cfb5f6d444dfb8", + "regex": "(?i)^https?\\:\\/\\/comentdansrobloxlescodessurnewshotgun\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2fa6b09bb256df16d892d7c96fc6dd662becb72ff0cf9f6ed71b3613ca6990c", + "regex": "(?i)^https?\\:\\/\\/canyoumakegamepassesforfreeroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "391e4cda7aedd91fc7cfa4bb61cb7388ab9bea00c97d202482f70ddfd5ebe593", + "regex": "(?i)^https?\\:\\/\\/canyoumakegamepassesforfreeroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64e134471f33ccde43af9bc6a636ef828d8331107a2beee2f24cbac90dfa5e64", + "regex": "(?i)^https?\\:\\/\\/canyoumakegamepassesforfreeroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "615f11c8f4de143f3d9784e62fa86bea0a2d44b14524c0a5c303aed5b5e0bf7b", + "regex": "(?i)^https?\\:\\/\\/canyoumakegamepassesforfreeroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d53081ffdb943e8e22480f585aa691dbd4ddc79fdf6b0bc94e54dbca0d824d", + "regex": "(?i)^https?\\:\\/\\/canyoumakegamepassesforfreeroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33bbb077e69df2241cd73714eaed56f6f141379061b1a00a6757c79e3aba1ee1", + "regex": "(?i)^https?\\:\\/\\/canyoumakegamepassesforfreeroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d029700cd8e3d915b0973cb57170dad970f26e7e60eee141184ebac493f9f8ae", + "regex": "(?i)^https?\\:\\/\\/10codesgratuissurrobloxpouritems\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dff5159c4c7c9ccbf2b71ae947571dbef0852bc294cb8b0bdd72023c273d1c88", + "regex": "(?i)^https?\\:\\/\\/10codesgratuissurrobloxpouritems\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b41d179069068a8485ddb00300083158983476de6318c6c0ac034191d5ff71dd", + "regex": "(?i)^https?\\:\\/\\/10codesgratuissurrobloxpouritems\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4bfde857707256c19651bfac0b95a5777edbbf362f8ac717ce86b33328c3772", + "regex": "(?i)^https?\\:\\/\\/10codesgratuissurrobloxpouritems\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cedfbe9770ae21909f7a7688b4b2aa7f5b00e5839fc09a40b85fe438d2de8410", + "regex": "(?i)^https?\\:\\/\\/10codesgratuissurrobloxpouritems\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e8634210178658c4bb90ca6d870bd2b55c15a9da5763ee3d693f81f8b152b94", + "regex": "(?i)^https?\\:\\/\\/10codesgratuissurrobloxpouritems\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a424f28f8de192c06c9031eac6323d00baa2d80d4a3a3d7780991bef726ea49", + "regex": "(?i)^https?\\:\\/\\/codestarsororityroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bd35e023d3ee17fdfced4b6e7b2d0949e49bf7d38dbc029636acf2c2bab6bb3", + "regex": "(?i)^https?\\:\\/\\/codestarsororityroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f75e12752fe049a0948070c1e4e0170e2ea43150463ea6af21dd87f92409255d", + "regex": "(?i)^https?\\:\\/\\/codestarsororityroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "904e21c4f56f0948f28e02c59024747620112c4b1de5ae00cee68cb9cbfb261a", + "regex": "(?i)^https?\\:\\/\\/codestarsororityroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8f8ce27f5ac796d8c4fda0d4d8f11a8927539e9c20ebf09995069c4ab640670", + "regex": "(?i)^https?\\:\\/\\/codestarsororityroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "377a0f83258bfb3eff0e771790e2da3704f549b53f9e6d3b50ba7c7f892f6c5c", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d1743d70046d9561d79affc2b2e277c5324d93dce26e3811a83dba7817c8e53", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6414b1148308478e0e6f69392a6cb08c22c79ed37d010e36193b7b87fce6ede0", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61dc09872caaefb0c5129582ce79f0efad95764d3028fb5e9ea487f3933a3d0d", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1312a70ecddce91700d8e755af076142d36a523ca533898b2447a76ec0d676c4", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a2d06ec299f8ec123c29ff1e04df9979f21be938ecbe810a1e576449c38d869", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf3234bf33d3310a4612b446a468ff497690e97cebb724f163f59b6aa126c15c", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d01618a384a12f84d2dc9dae416c9e42915dc943cc618cc96c3f8881ca5f6e49", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7665f129a84eb09d32294611e24485f8412f2289fbdb69baf7b30e21d6cdc1d5", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d541cc16304925933a48e11f77abee3ebe50fa90abfbfabcb0711c793542dc2d", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e81e1bb71819d304558ee11ecc4460df3b4582570db49b78bee454d9ecee02d", + "regex": "(?i)^https?\\:\\/\\/robloxcomoganharrobuxdegraaluigiarman\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658b7313d3530420ebd4cdb05dd0bb0984733c66f324208ad9f9bc8a68fd9c92", + "regex": "(?i)^https?\\:\\/\\/codemoneyrobloxvehicle\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31df06d1d6583253b58d715b84bbf0a3989c020bba5e2ae3e0e71e6201db6577", + "regex": "(?i)^https?\\:\\/\\/codemoneyrobloxvehicle\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b4340deed283ebbc39d86ec5e04c4838770420c4c9d44f40127dfe67d3e2334", + "regex": "(?i)^https?\\:\\/\\/codemoneyrobloxvehicle\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8069d30999f30745d4a7c33d7891950897225c0349229117cf3d702b27da8c6b", + "regex": "(?i)^https?\\:\\/\\/codemoneyrobloxvehicle\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36b42e03c76902e0d7fe6c20c428273ca4a8c4a8636133fe636ef00e9aebcf53", + "regex": "(?i)^https?\\:\\/\\/codemoneyrobloxvehicle\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c55e1c92f35be85b2c0083b4e162ee4e9a85861c88ae1599f35820e8c6309c2", + "regex": "(?i)^https?\\:\\/\\/codemoneyrobloxvehicle\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74fc44307b60b414bde0b06862bdcbdcaeac6e38faf4eccc71844a2a73a68a22", + "regex": "(?i)^https?\\:\\/\\/codemoneyrobloxvehicle\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc83b8f60365ab37cdc2928055680edaceb233bedcc9b8510b6efd072a74d576", + "regex": "(?i)^https?\\:\\/\\/codemoneyrobloxvehicle\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4aea7bc05dafaf72788265da5b13d84cbbf2930cab375b928ff201a444f8e0f", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6deae33c777961359f4592b9a590235a8b3bec480ad1ef63e26a296d571d5548", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d8519f46252f540a1cf58b8732607cea57537de3e7339e87cc2bfb0df5e4937", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da3d6e16ddc64cafcd1fe0aca66f9c460da53020602195d3cc8619c8b0ada80d", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "defe34e9468978768e65f50c56fcdac596a2ea8e43d0bf92da1fcb0ac9e4d7ce", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25d755d1774f4ac6e25229b9323573236d2f36d75e4e49fe768a75e1cc1295dd", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a14265fb7ae1f328bb097b94951c168ba992bb2d06f46cd004dfce00cea3d56a", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8ff1c343b99e2cdfd8daee0f4b4de8b2298ca84b9f1fb68a2dd6c44ec6fde88", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e6add5944f8685388a3d81e96aaa1ef4ccb1ed8e4fd82f5c0a9e7de44805a99", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bac808c57fd0f121606706004fbcefb9545c304b4c0e34a8df201032c2e946c", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f41bb9664c4688b420def54bf985162f8a21370eeedb729351c931cb13dd5599", + "regex": "(?i)^https?\\:\\/\\/robuxpremiumroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d906a636b08ff9ce863b4ef5f654f4b7840fead59029cff91da3c4092b5d99d", + "regex": "(?i)^https?\\:\\/\\/robloxradiocodeimsomethingelse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386abf56717dfdab8b5c5e6057811e606413651e21227f36bb0a134dd5aed10f", + "regex": "(?i)^https?\\:\\/\\/robloxradiocodeimsomethingelse\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e712ee958beb9bf9b1d2a0033ffc9d908ceaa3b524fffdc61fed27c5a2fb8d2", + "regex": "(?i)^https?\\:\\/\\/robloxradiocodeimsomethingelse\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61b659b5ae7e72f950b9946d0869a8926b30e96342588aef0a9f95e711d76697", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5feeb3e55e3ad7dd9d31c2258af513f9801b37b1f50ea6db38f366d41a548871", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49f6b9f31eb79a2bfaf77a9101b0e80dd94addd064f63db4de5a7b81c308e3c2", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b57804d598c16775c1b5f5f84d11c65eec7683c6a4da9f78bcd78943138143f", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af87e374d8774f730f1940e4ef028ad5d6db8c5cd6f33903cb3d22efa56960e0", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83780408c18c90eb94c2647ba3dc8f2b929481abc64140646022ac583cb64140", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "829ecdb7ac015ca4c5ce3f40774347ae654ed6c89459e3e0d8c88f6f520b2f06", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b44f2e6c62817af06520273fb23f99ca42872958205e9ade0f60a4ffc2ddaa1c", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed4234170b38305f9d4c2cef417cf070e4b2a33023f5d500ba9da3f273bf501a", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77a67fffc96f5b01a9edb6d9fbc09b04d2c2e752c97523d5efbceca74f2e1e9d", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74d1e547116000541d8d652423ab4d76eb664caa1ea31bb02a2827576262a7f1", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxnorobloxdegraasemfake\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc75c9509cfad74c5b14e776328f2f754c38781b684db01a40fb4d18d727abaf", + "regex": "(?i)^https?\\:\\/\\/bleachnewworldsrobloxhack\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00aed4b8cb0c64c056a629ac303970d687225037b4c8215cfb510505410300e1", + "regex": "(?i)^https?\\:\\/\\/bleachnewworldsrobloxhack\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94d71b1f0ba50df180237277b66a77f9646f81ac60d5313bb650ac41f188d475", + "regex": "(?i)^https?\\:\\/\\/bleachnewworldsrobloxhack\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74fc81ff639dfb5e8366c8a9a0c3744d3a086ecd19a95aaee202d1a1d3ef429f", + "regex": "(?i)^https?\\:\\/\\/bleachnewworldsrobloxhack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3620e9733ca85e954c87dd069bd108fe4a9654bf7fbc31123052938bb3fb077", + "regex": "(?i)^https?\\:\\/\\/bleachnewworldsrobloxhack\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a574270fc6a802742b096e4728abb00593a1cba097ce98516e47b687b4740961", + "regex": "(?i)^https?\\:\\/\\/bleachnewworldsrobloxhack\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7792971a0c594f5d23e9939d3fe89f3ad85edf8e0dd0cb15e6e46b4b281b23d1", + "regex": "(?i)^https?\\:\\/\\/aliaintrorobloxid\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d4d1f88e9700d051f0d569fba2213b1b0cfa1062219ccca83d4d0b5f45b4298", + "regex": "(?i)^https?\\:\\/\\/kittybellaytroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d45b65d23f388d07c85c5b7df73f61e5394399b23afa1a1d68de08ea284e562", + "regex": "(?i)^https?\\:\\/\\/kittybellaytroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bbdac49a6594a67ba83c3a3cd6773d01a453e1a4997b6e46351a6edeedc0a4e", + "regex": "(?i)^https?\\:\\/\\/kittybellaytroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5065d103b902d31f2b37292c659099b387e4e1e84bb6a0129bc7843e025e6aef", + "regex": "(?i)^https?\\:\\/\\/kittybellaytroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffdd4881d64da8711b6ed83e6f5e32f9080a9f4f1fa2a8c676441aeb621385a5", + "regex": "(?i)^https?\\:\\/\\/kittybellaytroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea936ef33fc34b1bff0a05f200d15ed0483d61bcbdf77f5b7bcdba2066a4cca", + "regex": "(?i)^https?\\:\\/\\/kittybellaytroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0292ca5734d142aac422873778d6ab93dc315e38bf5f7a7cedbd813a21cba7e7", + "regex": "(?i)^https?\\:\\/\\/kittybellaytroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1419fdc2dc89e05bcaec06395ef72f0c70122bc178c91c19532ea6ff9d713d70", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49fdaae0ecb04c01f917365a4616409066d5d02e2cfded93dad126f466d50083", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f43bdb0fb94781ca3227dce89e3e6afeaa62e8b5b321918bb242ac4e95f0fac3", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ffbaac2d13bb9f1eb94d0c466a5cfd00f4082edc1e19f8acd10a6eec4b79721", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a9d6f29cdab0ea49a1868c2ab3bdac37b4af6502392a0656964e720aff64bbe", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0867ff11c2cb445a259bf7ff3388c75b70a52c72ec0c5d8e2f8a6d72fe39da7", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f22deb888a755790854aee6f61751dea2bcc8d3c35ae7abaa99a40e7e38d2364", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a50c43927ca4f4cc1ccc1251890a564122001aff6dee938d76a630337963763", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bb0832aed87f35dba6e2f97921d43fd8af4fb9db6f6e8438fce36d50c38f69e", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc1ee1a074bea2e92be2899aa465520fd8b1171818a2005d68948953b5d7bd04", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cb531e5c56aa29e78ff0929f63eea760735b7e9052dbd85a9125cac50d2563b", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "168715c0728bee489b0028b35c60a4c1e329a248805d5392d6f0fc33969b1bb9", + "regex": "(?i)^https?\\:\\/\\/robloxminershavencodes\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a45dc66e7bb95c8e2c129ff82af202e5b35bfb4c3fca341b2fa4e7b0db8c6d2e", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "125198e71645acab585d2f3f684925acbf88fa10969eaf13047f06f387edb9a9", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7c6c8d088c492d570f0ab82c10ac9a10a3706d5c7d823aea7e14d9366bee0dd", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0c8aa93d9d89ef04ca338ae673f2d6f35be620dd5f3e177caa4947a5ca55451", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "314a72cb9928b5cc8dd81bf4c61b69e22e3c04d0237dd56a8d414fd3d930c514", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00a9c0d378719e3c4e463782ee1ca737c56bcd9a0a85c45cc60a20262a99ed37", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7110a1cca2ba86a237c0eed2bdef739df70ec63c5d2a29edafa432d0bf3ac52e", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15120298b643861d9c1f595bdabcad6189497f310d13c22facde7bc3f1ed28a1", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b62bc8789dd92eb9affc246d934f62e9aa5ee1337d97c8e6bbeea8c5f8b9c3dc", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93d7b8c8fa27dc933ea167f9b6e3e182f6b753f2d76a725974f5a680caf30ff0", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1ef9500735d909b7611d7ac3bb2574e16aa2413c11e6da3993a40b5386b8a71", + "regex": "(?i)^https?\\:\\/\\/developerexchangeroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "687dafbef78e3586c41d58bb1c780a1a366922f24ca7dcf82bc748d5ee0b7a92", + "regex": "(?i)^https?\\:\\/\\/robloxmodmenudownload2019\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cd0127e18347b63b9f27dec9b4e2948cb52633c3a5adfb5d728bf9c330f46d1", + "regex": "(?i)^https?\\:\\/\\/robloxmodmenudownload2019\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1874cef197c7fa2fe9aee2515680cab3aa25a19136a7a67af221c404bd901395", + "regex": "(?i)^https?\\:\\/\\/robloxmodmenudownload2019\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b8b58d7cb959677cf40a463b6a94bb264349569ca7d42bab9b43391bcdcdf14", + "regex": "(?i)^https?\\:\\/\\/robloxmodmenudownload2019\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa9a7063d04cc90ef6579200512308dfacf52e0d546668f6fa8de087f8879e1e", + "regex": "(?i)^https?\\:\\/\\/robloxmodmenudownload2019\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "899e24a6ad8e3ce4f090374a6855b8bfb32ef51bcc58e056ea7bdb96c58fcd8a", + "regex": "(?i)^https?\\:\\/\\/robloxmodmenudownload2019\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad53978e70d517e3e77a9819e72b34a59c7dc0c52fdf051a13adde1f75b0a2dc", + "regex": "(?i)^https?\\:\\/\\/robloxmodmenudownload2019\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3af519907adcd572821b0e24b742467f7377a5548af6fd514fddec932e38baf9", + "regex": "(?i)^https?\\:\\/\\/robloxmodmenudownload2019\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9926f2af46e790af92ee695d36bcaba21b5ab51c7f4c45731ecbaed4b198876e", + "regex": "(?i)^https?\\:\\/\\/robloxmodmenudownload2019\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6ccb09ea9032c31fb809cbe0ed84f9e6cedb1c4eea4bce0820e43d16952314a", + "regex": "(?i)^https?\\:\\/\\/robloxdevforums\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44dfe4f7a2c6ec2bf747f4a9b83495bd1050680a2f3db1582489cb0da44fe737", + "regex": "(?i)^https?\\:\\/\\/robloxdevforums\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a360369bee27206b1acc1134f40e10e5d10edc34c4ec00536d7c28b1f4cd0bb", + "regex": "(?i)^https?\\:\\/\\/robloxdevforums\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bd912f1c9b94d049096158e6054d993ce2d374207e1e63f10237dc6a33f8b07", + "regex": "(?i)^https?\\:\\/\\/robloxdevforums\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96c15fca635c6656df1bbab24b6a3cc44ed550cce0ed020e9c442adbdfc5f5da", + "regex": "(?i)^https?\\:\\/\\/robloxdevforums\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b87e8f62ad13e47e54ab39fc0756183f7eea94411b30e58bbc909c55a99ab142", + "regex": "(?i)^https?\\:\\/\\/robloxdevforums\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61d26b13d4a7dbf24bbac130d90be437814271c0375019d20bda0abecb1d3e4f", + "regex": "." + }, + { + "hash": "067263f6002b468652ce257bdda331b13450a8314c88dcc214bc07b3e8db8d81", + "regex": "." + }, + { + "hash": "a84309937192be86d85e821b677e3924774f4df8970d73fe67e759fd1ed9a310", + "regex": "." + }, + { + "hash": "f55b5fd8885cf5e42d821e086f24cb664bdc535857e72503db6c892b039be8eb", + "regex": "." + }, + { + "hash": "6042318ce774c9feb872973eda595914ca3af0940e6317bf594d9f70bc4e606f", + "regex": "." + }, + { + "hash": "228e78f510ff5aa1cee2c6be994a719008765789a30846d6a396331d69b300cc", + "regex": "." + }, + { + "hash": "6ec73c32fee41372f09fa55dfee5891b0dccd3e2b776ac988d54bef2c15349d7", + "regex": "." + }, + { + "hash": "b8d1173acaa84a353d1bd65ebe8430aee156b4399a4505b918c2feab34a6448a", + "regex": "." + }, + { + "hash": "e3fa21d1a9f23e70849d966ea3c78d3a869c631c3dc13634c8dc028adc8baff8", + "regex": "." + }, + { + "hash": "a6ebc273ec77e17a39c93ee82272e648d2913698a0a73a05961c49832af5a31d", + "regex": "." + }, + { + "hash": "e628ecd88169391b3ea7c4307cc0540d33b8fbba9abf56e24d270efc6c1c2931", + "regex": "." + }, + { + "hash": "eb4c82de253f6ed86328553b7140a420ff873f755847d829e7b7097c96c9e3a9", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab3f429294a8842443918f18955f5d0f14a75277a6e430b4fb162a3a8ec8f6f", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4280108a11b0d471b413f863cc04f9a72d5ad7c8ecf4453f735ceddb6bc84ff9", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656080462f1ce44b83b46f601778aab4b45c63317680c73c97a260c38d1e8a22", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c54892110bcc447cac685f04bf59be5a380515e5150724afbf2874149bd36d9", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1abc4129296f55d23e86a918c0e614b3b2f10a70f6b2c02f4f97a67e644cbc4", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c01c4376351edbb6609ce7555a3269762d289d83e589714eaf08bb779bd94c5", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a1612aa905090b8c3ef10d1e84be576f88b62b1da12ccce2d964d622a2308d5", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab6a2ac41729f8b41a642dd004534e890ef176bd2d14ccdc7928e096e0bfc50f", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7823014707710d60d5ba05bdea9a2f354ea3d166bcfb3a404018556106cb7eea", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "723ffb1c74d3b936fbd582c1ffd5938d054571de3791fe1b147812d69435551c", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc952b2946cf7fd9acb727bf30dc9e8eb61f4c1cc96a78f442e9064a21d21cba", + "regex": "(?i)^https?\\:\\/\\/howtobecomeshortinroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "943cef7eeba130be0b442ae713d7925466c408eb2b81d936580e8a659ccee14e", + "regex": "(?i)^https?\\:\\/\\/moneylongerrobloxidcode\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66fb8adba939d61d3a9077d58a47f1c41b5c14b5936578a93c07cf2fb45fe1a9", + "regex": "(?i)^https?\\:\\/\\/moneylongerrobloxidcode\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4fbae90e2d5270a099f30f7a50f4a16fb9be70339738455f8ddb5483a36171d", + "regex": "(?i)^https?\\:\\/\\/moneylongerrobloxidcode\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ebe6bab8cead291407975e1e2b8246d0fb20c17169122d468570cd0e6092ef7", + "regex": "(?i)^https?\\:\\/\\/moneylongerrobloxidcode\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1419f56ff791a7237f4cb4908ebcd8565f59e4b45f0798b602770014e1ed9578", + "regex": "(?i)^https?\\:\\/\\/moneylongerrobloxidcode\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a88bbcba0a3803ebf0502404e89645248759d85b5aca27a5e9d8b2bf756ff448", + "regex": "(?i)^https?\\:\\/\\/moneylongerrobloxidcode\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1b555bef8e243279c85b4f15d0dcdf2ab98d39d272d7d9b61c82fb2d57eef21", + "regex": "(?i)^https?\\:\\/\\/moneylongerrobloxidcode\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a1c8f4fdc57a9b1b1d776b5ed3a9efcc0144f7d27dc400d4d2d966d50e95de2", + "regex": "(?i)^https?\\:\\/\\/moneylongerrobloxidcode\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e81074bbfe687f1160c2350edb7e14213fb9790f8f583ea5e3cabde8a14da573", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7034f7d7bdc3405487ae9f8365a9033ef024887d48e679ae4d965e6dace72392", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcbf9fbf616c2d7fadc83ce197c59f57d726ed03673b44e8b729638cfe64d88e", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cdd72fe9287193f9a5ded288057e0eaee3b4693ed625851d7f1ff794da884d6", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "424d04c396441effe6b092a767e738cea5297641bac21b9bdb6a74501324f11a", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "479008213d7b4a6e6937fc23ee04fd28b05c4a8bb53e1b73c15d10e9c92cccae", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c83f7a02d2def7912e80caf68acb115471a5210e16c8848d59db530879244c93", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60207bd8189a5037b96c6337129a60bf1f8c0b6759050a3e7f18c5eea41b51c9", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f6f26910ca5d053233c9aa1f40ce07cb896cd4e5a79dc673b2c25b044ab18bf", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e7484b16c604e56f84e3f79c9137eee3c4a70e3541d0422b04b0fb3e8a78688", + "regex": "(?i)^https?\\:\\/\\/heathensrobloxidcode\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4bc0fe0c6482c991cb21c33b4dadfeafdd25a58972582eb7b519b2e9ae3d197", + "regex": "(?i)^https?\\:\\/\\/aliaintrorobloxid\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e1122df4f80d65101e74af521668022f73f265c86b6eb928147bc3a495dc280", + "regex": "(?i)^https?\\:\\/\\/aliaintrorobloxid\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9e44776ddafb0ddeb680859794d357f557dc763debcbe420f207bd4fbd2d692", + "regex": "(?i)^https?\\:\\/\\/aliaintrorobloxid\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80dd46ee61df117ad54aee3eb53f1ddd9e32fd10afb9f9f66d7269f3f22c18b1", + "regex": "(?i)^https?\\:\\/\\/aliaintrorobloxid\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02fffcb9883ebd2b29acc7b8271c0e177f063cfe1067a0900b83edcd4ea35902", + "regex": "(?i)^https?\\:\\/\\/aliaintrorobloxid\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47a3d810cace3b0a999f043d42a2b41d0acb72df07ac28255fd86e81b4a8d06f", + "regex": "(?i)^https?\\:\\/\\/aliaintrorobloxid\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f88594c5d38f668c206d8f15ff06730c85e6b2ede04a58fdf985413c9f8efeda", + "regex": "(?i)^https?\\:\\/\\/aliaintrorobloxid\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4667e05845f2aa0d571406f8141793f167c546b4ffa3d2d7fb27b934f151baf", + "regex": "(?i)^https?\\:\\/\\/aliaintrorobloxid\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "369f756e955cfc99447ffc2222ab97c132d37bddbb7aac4fd209621bcb7b2a89", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0c5e2b6b9ef3a64b2685b2341890f582078ebdccd56c35492c0de516212ffc7", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814a42c1ca4be51a524f4699aca8a285672ec3b1e6ac62343d513fb2a509a465", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f42c85c4d4aa2cccad41af29b12abfee7ea72a088498314d4e93b981cf3d3d", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72bc4ef0fab360f87939f9939f36135f8886ffad30b584c5c3b96a19d77ccf80", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78d5b02e6ac9ec09ef039434be936b1a4a9d26fd46bb8768f30491ef411ebf71", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80bbc68ece83c9c61d26f1b0a3fba0bfa4b4d33f78fb21f3028df05af2ec4521", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a9244052974dc9c326b1f1655a5079eaf14f62b7594c7f300674b9ba6b87b55", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9aeb03dc0a43e0181ed76737f57efa58c0a586f4cf4661cf4c9f96f76f851d8", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71419432e766f70b0795f30e94289ad892ea1af54fadecb3fd7f1632069196ff", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6146155c900df55f5c3dac63eafaf3adce0c7ac66d48a0f26e1a577dcc9b2a4", + "regex": "." + }, + { + "hash": "4fd7e11a11ac511af19fe443dabf03d9f6d0d1bd7d6b8ff70bde81977d4fd887", + "regex": "." + }, + { + "hash": "8cce97c6518c8bbdf6cebc8c2aa5c6ea7989f367114e31988ed4de9562e8f532", + "regex": "." + }, + { + "hash": "40ff922d4a9257d8427d01400184211a0a9f3c88ba6bcf5bd757b395df1f0660", + "regex": "(?i)^https?\\:\\/\\/existehackderobuxnoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4178f56794c0d75ed18f8f827eda4088f12e69ed8ee833baaa8b3824e62a38ce", + "regex": "(?i)^https?\\:\\/\\/existehackderobuxnoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa5d3252f3dc127db1ee5928e146bd889004a1ec6b73b9a75bb6d987bf88e04f", + "regex": "(?i)^https?\\:\\/\\/existehackderobuxnoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f394db68770fac802fbbe47ef87ff4bfd610093e7d8511c6af82f42a558fc96", + "regex": "(?i)^https?\\:\\/\\/existehackderobuxnoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cd47beeb7a7ec655bac28a6119e4e80c28593bd65434cf436d4a3a8d45d22d0", + "regex": "(?i)^https?\\:\\/\\/existehackderobuxnoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2647ccf5aa87243bd382396769d942562211faeb705af7e19e40513a7faad358", + "regex": "(?i)^https?\\:\\/\\/existehackderobuxnoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d545140f0e60cce27f6bb617864d9f7226c95cb1bbb81e9a501993d1d3c36bfd", + "regex": "(?i)^https?\\:\\/\\/existehackderobuxnoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d230d9516c667b4b8ff82f2862efe45f74d6fb206989cc7883af8a471a4ec57c", + "regex": "(?i)^https?\\:\\/\\/existehackderobuxnoroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74e61123b19dca150bb2c1321c220c45893cda027a092f32e848cebd7c66a70b", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a93a600aeabf4d229c8f3671ad14038bf5948388d2b5af619bd0f7a1deeaf28", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2a405c05f2879d643c73eea3d4963bf31a122439ca4f73ed523536c7914df43", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80ba09e1b2d3a11a6a21f54573c3b465212f52d9c8d852f407411edf65dae839", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8a061cf6c96c9296d846ce1e2ecbf631481d27d01af553a295df3d360b66d96", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3392cb4a469ebda9bbf43a3e7605f2c0cb8059fbd7b72f6848bd536853c60a64", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a5743d63e2c97af13090c25b5beb224fd86f4606fb4e0552d24d6adb24666f0", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c6ae22c880ca80cf7181f359497cf3d8bcb741632f55e5121c6f4edf0d35b2", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4465b10d648971321d8125f1ee5908133f5c17e709ace7098bbff48318318f6b", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4d12b085660fb1d41fa5fd3d636c7e2161a3d1e4d4a48c5f04ca476a986c955", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77f2f2bac08ff9697f8b22ef2bc360837a7d5f4af13c5ebbc38733e14cfd3591", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c212be490aca9b4b6edb1b512f700816e764a40a7cfba93b23fa28029fe28318", + "regex": "(?i)^https?\\:\\/\\/robloxhackingvideoscitizen\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88949835ec056a6dde2d0d7fcf5ec3295a7851409dc84936696f47f897551855", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ad2d940bfce5de77c99652c669af6203194ea1162d39b45298994c6f4969b41", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8dabd2ba776ded7437bdf30c44a1c1de70614a168b14347284b0765fbb3a694e", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa44a455c8c740402ff99a62df45fce615f98ca11a4083720ca3faaaef80eb4b", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2843511eb1656398b816c29d2bc09816a584cf75f411fbcf01f22860afde217", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c384c465e5caad842d72541e58c970b72b57cf532e4df961f66a544c8aab51f4", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbaf8fb70c98e1d8c98ce7acf2ce1f6f235d7055c04586751b9f27188ea8cbf5", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76d3b407b82f1b8b3ce440c4618c197afcbcaeefbc5b4c444b0a5a9666a76e35", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93b2f85412973634d256d9c684ee621abacda37ace7deed7c858859b57262c63", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4d18988926821efdc639bc98e505a6c016e7f7c4ffed4bc1777303d42e3988d", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c85980b7ab98128718656742a83ba8a0bd0f312024d0bf87e42e91b88b28e674", + "regex": "(?i)^https?\\:\\/\\/codebuildaboatfortreasurerobloxfr\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fb2d2c676de49e459845e42d5db7059e11cb0d3f478d3271e0528c7ffc0764a", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccountswithbloz\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1570e9a4eaec04b885f546c91b95a9438d67a1811bbde0541c1b916e60484ef7", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccountswithbloz\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f1d2831123706a5b00896d756904f2bce7f5e23ebe0c53d4371cf39d9f17926", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccountswithbloz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ea340bb5aec34f7ee0dbfec66d26dbf6fddc3b6fae90c373c8473c4059aca52", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccountswithbloz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca70d117bd20b0726f20500fdcc02b7dfaa637df82ae0cd31d6ec29aa0cfb336", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccountswithbloz\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59c23e3a056fe59829382ab2e7b36e154950a207ac289206d185fa05549d726b", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccountswithbloz\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4a2f6aa36b6369798a640318b018453377c52e930b28b27d6ef91fbcd962d34", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccountswithbloz\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85c986e68770261df9a8fd4db38dbde16e247c3081bce73f97a86075ba568f88", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccountswithbloz\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "324e2888b4f2389a0b094c99dded013b50b26a8cdda396535cd0c9beb28e97c3", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccountswithbloz\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1104276717e5292ed91661b72aa005b7a1b6f52860c1d5791554bd1af5b587de", + "regex": "(?i)^https?\\:\\/\\/robloxhacksupertrainingpowerdownload\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4d14eaa704893a6a82022cc4c09fa9f1bb0ffb2f3135f9f8098538a846f9d24", + "regex": "(?i)^https?\\:\\/\\/robloxhacksupertrainingpowerdownload\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "babf739b44f532913d88530c163f6cea79a47348e1ba61c9689d623727382c80", + "regex": "(?i)^https?\\:\\/\\/robloxhacksupertrainingpowerdownload\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a22527506ef102ceaa5a9524d3ada5c4216a6e9632af6234ef6d2f34887fe7f9", + "regex": "(?i)^https?\\:\\/\\/robloxhacksupertrainingpowerdownload\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a142f2396f2e9aa1213021d7b3bb7d8c536b5f84003dea4fe2dc8cbbfa6b065c", + "regex": "(?i)^https?\\:\\/\\/robloxhacksupertrainingpowerdownload\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6242e3427c15f257381c1e13afdb3ce505d14490e5859dbcf03c18dad95e32b", + "regex": "(?i)^https?\\:\\/\\/robloxhacksupertrainingpowerdownload\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d067703bd9d102a0d3c9f84cdf21c9ed266cb66390f1afb2766a03f784786a9", + "regex": "(?i)^https?\\:\\/\\/robloxhacksupertrainingpowerdownload\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e870f5c6b3fdbf89834c72f2cd923788f87ce4238968981f3d923ee55b6086f0", + "regex": "(?i)^https?\\:\\/\\/robloxhacksupertrainingpowerdownload\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23ceabaeec6922627c3bb0320e9abf1aba8f615227418986a2ae520f014b8638", + "regex": "(?i)^https?\\:\\/\\/luascriptprontosparahackroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f984ed50a6800cc85bdaa6c051f201f59fcf5c6b5b3bf8f76b58e4b430d9a255", + "regex": "(?i)^https?\\:\\/\\/luascriptprontosparahackroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb00570915c14399d05ef47c71deb63f91e4bed5e52d481bfdc8fd920997c517", + "regex": "(?i)^https?\\:\\/\\/luascriptprontosparahackroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1ece5b19512bbe117e07632b4f99d0ed4b56340a5ba7c807c5d5ee91e3d6cb3", + "regex": "(?i)^https?\\:\\/\\/luascriptprontosparahackroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dce98b6921f7123adba208a2b8c902a31cf193fc2955896c36bb042f65fe7639", + "regex": "(?i)^https?\\:\\/\\/luascriptprontosparahackroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd909eb9ebd30cb5c1cb34d283f19fef44ba634db4536ae88790193f7449e554", + "regex": "(?i)^https?\\:\\/\\/luascriptprontosparahackroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f8816429f413a0c6c59cd155a01a9521693374e604c72f3b38e4b7bbebddba5", + "regex": "(?i)^https?\\:\\/\\/luascriptprontosparahackroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5de8c3d49ac9307d79de1e44e38df2553290f73516305d6f99d172ec9b8cf143", + "regex": "(?i)^https?\\:\\/\\/luascriptprontosparahackroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8750eb90050f303cdfdad279d5e1df4f22efe4ae77a9d1e8cf03a6eb72e86db7", + "regex": "(?i)^https?\\:\\/\\/luascriptprontosparahackroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1e3624f0cfd67a4b78415bbda437bcffcd77b49a1be0560c2184091c6d7ff7c", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e012ba2cb6f37804b5fc235c08534c29d7b65910ab568a90b3dbb44bb72aff13", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7b7799563b10692b4bf133da92f5782ab4b4c3464fef8039e683a9d0cb8d390", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf490e67c9db6feb23cedb3ea5c1853fd254e612603bc3955ab6e27844991d35", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cadf8340e7d35c16b85afbb82f47f25621892b92b2bb45cacd5957b74fa5fb57", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9aec05700436254ae79d8791364d9ebd33da2a9ad7c4c8a80f5df7a6af5613d", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4462b91619a797ec734a88a947a16a9308b9204a5454eaa6f521d0244659b2cf", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf313d05c3f6e4495746a636e99b86dd833ded85dfc0dfe3f1539bba5d56df36", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1b99872499628e1f74d129d56cb42353a9e555dc4fd6d3c8ff51d9c34894588", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6d5e84397c81ad581cac5dc362df08edca60db99e6b6aa8c93c280b35723d3a", + "regex": "(?i)^https?\\:\\/\\/newrobloxhackergroup\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4df3991a7f45afd32d033ece8cb6c43b76b735ee952cd1d34e1d9ccc63bddc3", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd463126c59fbf7ea7c97a542f86bf7314728768453e2e57bd1692f6e039f94d", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fa5d72a0dda215af0a70c4f88b45c5808df46005ef268d25d2af3cda2a2c46e", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2072fb81dddd1b81e09c1e570bd290722de4f6364fa02fbee93655e34ff2507e", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c66168ae8caf8166d7ab1455fb48ec5d4ea2705317e49ee39d82e155d3b0fc96", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ded23e74a0e582b22db54d633a13240adc46b7042dd8721b44dcce1458e35133", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b274a460655d46999b6b01504699cb783399cf635c0ff2f9febb1b9f8dd51f2c", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce332ee51098668af441e71ea5a8e85908923f0fef259ae39082a788cf17b208", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b974c0a21c7076ca89439283daa380e7aac0c4272d96f8a895d0a72be0e1f20c", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8497f2f200c030effa53c40f9dbfed0f0569d4d279f70f189b7d131996aee02a", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "875cd0bd043368bf9cc62b0b85df78068f74925c836a155caafe7f671f112995", + "regex": "(?i)^https?\\:\\/\\/howtohacksomeoneelsesaccountonroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d7d15c8ca39d365307b550bfc82db6dc8e30a194338ea78679b076497705b0b", + "regex": "(?i)^https?\\:\\/\\/jogosdedragaonoroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f1970c32a2bb0d8696ac1f21ac4b4669d58c5317b412acd1c0b935b2c851468", + "regex": "(?i)^https?\\:\\/\\/jogosdedragaonoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6ac3ba9765401c5cebad3b18e9d0a5df0cb3575923efbf2772b4c339ab5aff3", + "regex": "(?i)^https?\\:\\/\\/jogosdedragaonoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c5ae6d5f9611b203fdb6d30363094e37c3098bf49add4d9b131631a8c202660", + "regex": "(?i)^https?\\:\\/\\/jogosdedragaonoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6f4c248b1f4f77d146aa6787bf8972bece5dea3fb0c8b0fec4ac50c80e64112", + "regex": "(?i)^https?\\:\\/\\/jogosdedragaonoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "151bfe7ae15050d46f8904ff8cf324112bcd18e1d00444ec1e8a172d0445a900", + "regex": "(?i)^https?\\:\\/\\/jogosdedragaonoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae99fa29e86233e4d2272abdf929b5d7ebc432abe5ffb2de2a18e96706962522", + "regex": "(?i)^https?\\:\\/\\/jogosdedragaonoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ecfbe3915def9b27cce0ae6e70c031cc8d9df881f55495658fd75258ca0fdc4", + "regex": "(?i)^https?\\:\\/\\/jogosdedragaonoroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98d583be71d9aefe3b20c4069d25f0411d115e64d69cad89b50802d16fbe4b1f", + "regex": "(?i)^https?\\:\\/\\/jogosdedragaonoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a5ddeaff6cf60bd0bd38d47ea794977b5237a4139f3008dd057d27e11390027", + "regex": "." + }, + { + "hash": "3c6cb52c8c655ff27ea987966e4f40f9a99e91e34752a3440e042725ce142f8f", + "regex": "." + }, + { + "hash": "daa0220a3906714dc46416a1c9d90977637718871f7a4ce46582b5a4af1a5dc4", + "regex": "." + }, + { + "hash": "3bf9fcf267738c78feae62ef81fb297688ec23d6351aa375499021b19b809bdb", + "regex": "." + }, + { + "hash": "4583d9e91c3b06beb69424618d1811ac67a9b16c4fba9332e6c7f6d5c19ab0bd", + "regex": "." + }, + { + "hash": "85d9033c4b72f9a5b37423d5c11c0d2b422932783d1f151f803cb07efe0cd00f", + "regex": "." + }, + { + "hash": "32b4fcbe5423fa0662a3d29460638f44d392cef04e3292a2c1d99da6adbf890e", + "regex": "." + }, + { + "hash": "a142d5d443363cc34f7f8238f504b1d3d059abc0d134f202e57bcdc52c525a6e", + "regex": "." + }, + { + "hash": "6cb93ec95af3bd240ca03f96aa249a507abe3e88a4488279adb2fc2476460e45", + "regex": "." + }, + { + "hash": "a30f0d19d9c8599d696b7de5a646675fea3bf5d348f48ce1d4cc5f97a85b2dc1", + "regex": "." + }, + { + "hash": "f56182149b626243c7337bdaf50b2bd5f1f3a9f852aacb4afeb1aac1d822c814", + "regex": "(?i)^https?\\:\\/\\/hackedweb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "640edca892b2993e3c5e15c12f1fb19a33f514e3ca2ca9b726fbd7b51348a0a8", + "regex": "(?i)^https?\\:\\/\\/hackedweb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4e1895b8f230e471bf3f909a369cacb83818c292c67a07c4bd6e95a992203f1", + "regex": "(?i)^https?\\:\\/\\/hackedweb\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06de6f918c6e2d3f5eb8c08f9ea3bd92f434572f085e4a924ca4e7c7d68dd11c", + "regex": "(?i)^https?\\:\\/\\/hackedweb\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6e15b2df776b77849f467a275bdce32c04611b33bea584509f7c37bc48f2066", + "regex": "(?i)^https?\\:\\/\\/hackedweb\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c91307987968ebc2a3158a761b5344882d8c98562cdb2be3a18d941fc181b488", + "regex": "(?i)^https?\\:\\/\\/hackedweb\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "016e9fd35ec44343fbe864ad212decbd8a986b1d52c6357f04c53c7309e13658", + "regex": "(?i)^https?\\:\\/\\/hackedweb\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d648b08783d44aa77a091d2353e7ca3b47a395550640274b8735ab2061eb2e03", + "regex": "(?i)^https?\\:\\/\\/hackedweb\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b875a309e4d4b072ff36e8474e1ece14186c47175a0d256fcc6adc5d819a68", + "regex": "(?i)^https?\\:\\/\\/hackedweb\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32ae6888d6473ca14e5ab44eabf4f27883b3aaea107d6ace8559d48d25cc1521", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodepromopouravoirdesobjets\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3af0617e426a5d5ba0b4a002d939d12d0050a58631ed3d1bc860c09e43fcc8b2", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodepromopouravoirdesobjets\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d045e07fccebb7053bcc164c44a2c2347f63bdb38f139e32ff1e73beeb77851c", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodepromopouravoirdesobjets\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df66c51ae9eb0b36655094891460825195b84fc8e49222a680c289705293543c", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodepromopouravoirdesobjets\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1edbe69675e34f9a3fd3ebd762e835f1bf529d7c5c093082b6dd0ed31053040a", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodepromopouravoirdesobjets\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62e56495de8cc0931f6fc2317411019331fe7be4bceb45d310356a80cd8ca94a", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodepromopouravoirdesobjets\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13182b319dee39c14c936776b376d6f28c04451b3fd4083520a877330d671d2d", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodepromopouravoirdesobjets\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "010043be189ea564ac381e9d2472525208fdf634416157d22ec62395bf9fd6d8", + "regex": "(?i)^https?\\:\\/\\/howtoputadecalonabrickroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f1e6b1ba2ecd4f66298aa6a6c52330cc068023f4a2b94fd8cbed015ed0a91ef", + "regex": "(?i)^https?\\:\\/\\/howtoputadecalonabrickroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b9443e2cb3212def6de9b7738da826f2042587f3a60e8c42ad9f9a03c5132d8", + "regex": "(?i)^https?\\:\\/\\/howtoputadecalonabrickroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9690ffdec2cbf3ee03fc6954749a00382e77858973250112532347d830cfea34", + "regex": "(?i)^https?\\:\\/\\/howtoputadecalonabrickroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf93677a13e148331315bcd97025177f2197dc4acd864429f3e93126bac7d128", + "regex": "(?i)^https?\\:\\/\\/howtoputadecalonabrickroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bdcaa97e0ddd98c41503f3fcbab165b7f0740d601bafcd5c1df93f216a0f688", + "regex": "(?i)^https?\\:\\/\\/howtoputadecalonabrickroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e256b271e161ad45c79784dd4c1043235df65a9c0ea9fd74ad613b1504a94b3", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36dc88848e9545eba4da9392e4925187eb9e07f9a9e1659cc784cc525fac8f2e", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab4d69c87e79fa7c8f4423dd92252ed51bacfd69e5ac60324389abe15bc2f961", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8606b04ca4ed01701e400c01b6e48bc64f6c4befac012da40374a48c9b54596", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b00b6643f077a9b6db4d9d60ac028fcbfd8cdfe3a7fee1f4a21adebf8c5c79fa", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed9246facec68ae8ef99c965d8d5a76833c491b306f43bce33c1122e6a48ed0b", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "622da412a64c24454bedd1584812fa0bfe05db451df1c2ba96b022a5e21e90f8", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cebd3171d60670908396c44ddfe2495af99bfa8a4219fffee6df33e7fd3cfc3", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9baae606bf3c0ab6d3f087e471126feb93e39652639f8792a2ceb32d299dce3c", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fac672a1601e080473621ad672abb04277b0519694c5daaac504b0acc95784f8", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "298b25cf7597cec7da87cad03794e7315346fbfb37a5c50712900de4e49d6dbd", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "898725d429a5d13e0a271d719c0278ac415df65673081117f965e451516c1cb4", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf24426618fa47848683afbc0acdb8cff7824aa707e207b543b8a991c01b2929", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeadminonrobloxhack\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64d8b2b0570a757e5c1954c32d89afc73d1b6a94f766f1f597204df23132af06", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27f6cc9f7bae0133999ea0ac8461caafb4a58546033f52ba84b274ebe2c4cf60", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bae445b7825d46cb6b1c126371da1a191092f732b350e29b68c48f613519e6b8", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4be1ad17c1e635346a6b17a425ef1ec226f5908827a58df97810f5accc8e54", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e96acf14d840797e943f1aff229ec2139e4df176fe50bdd1af13b88b3d3c69b8", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ed279a97285dd8842ef62f4ee71a2cebd027d72ffb30c7fab261df1d314875", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1fef61419afa43f7c076d8e732c8caea5d34891fc04ff27abcb1779c5a2ee9b", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34ff7d83fd305ea4631dfa8bdf7078fc1c3166f79fd8828288944b4aa1a8d2c7", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1575e610deaaef6b4627976bb86adf54754b25ad875c3a0e523f633f95ae20eb", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4567ea9404d06ab1d099ef543b0c2de9b91ef91978eb71639455bec36c3ba88", + "regex": "(?i)^https?\\:\\/\\/banningahackerlolroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e39b64a5ddae923302c93fe17dc5ea24cac1a5239fbeb10ddfd9893b4dc3c76", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4c9edf66e3230a12f9847950b864835e6b19b33bf968d385bc77a330e499b3e", + "regex": "." + }, + { + "hash": "335a026db0d6de8b1dea67d4b6cd1a3c01c7d900e57b0e49de2f822cb950f277", + "regex": "(?i)^https?\\:\\/\\/lunowalletlogin9\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8fe206282c9482a622d244ed83ee3464d5a3dc68536d00345762b78824d68fe0", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ec5b715a8af4adbb80e3e86888fb38ccb580162f179c4df6d7326e352e75775", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62fc067a0eb7d7bcfe5968fea39ab6429d67ff67fbb6917274f076f8a78dac01", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92172abaf742d569218007741f14ce543a3a8c617502ca19678c74e8b5ed1d6f", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0994ea74b2a00c4894d9ea7c5f55eb8d1931bd367b3c20eb339aaea8567593e7", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18846809ea6b20426c92dccc11ff719c54ff3fcd7ffb32cb518dac8123e61924", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcc166ec68ecf3573f779a1b989591a6e127b8392f6e23c56c5398ec5b0191ad", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3791b7c9fcfddbaef5786db9ec286396ce6ff61f2a5c4593e40f0c288f86cc42", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a2faea60d4674cd74dc8cfa14ed122228d159739e826fc8e005228d0148dce9", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7116da4cae401b7584ef01efcb7b112cb53ebffa419cd9fe34dcb908078c1e91", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f845651c7fad64e52212a83ff8eec15ff7f9e348d95325d27c40857984652d5d", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c8f2b54b4368fc7ed6efe49629b76c70a44350d0f7cf2e0bb69083d47cec0f", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b7c08a0460690fe1d79ecd89e946c8739a57d7e0bbe37d57384b02fcd27843d", + "regex": "(?i)^https?\\:\\/\\/costaricarobloxid\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b298e49c7a9081cb07f6be3586167f8ce42d1b5ec8431d5f41e81d9541cd4d23", + "regex": "." + }, + { + "hash": "4980232724ded54e5cd9f0b811b3dc2db4c939945484e3ff671c87d202ac40e4", + "regex": "(?i)^https?\\:\\/\\/robloxredeemer\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bf88fb33878408e9d53760ce14ca19b83a8baea6cd2c3f9d562ea1e680e67d8", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "153c4750a2b3c8942f0d46441b3fc64b4ea0948f6d1ea2de16c04469d49916c5", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a2e6e83eee1079e2bde05ccac5ed1f9803a70272783a637f640770305c74dc2", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b7bf121e35bd869e1662159d345404cc9e646559035aa91e76e93dfabb28f32", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b09fab9b80d93a3c5c84e4e0e96d8cea2b49e48d79a0dea728239e0208f1d8d8", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ab311a84a0735aa98f342341e89545fd2c56211f28f6d6a8fa79115e971c4ff", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c2b7119277d731b8579fe6be4637c705c1e1bdfd53610f2b47d302fa1784bbd", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c961caa74e8739a4ac04a44fc66576b6afa7b5aa7670567c6f4f32f9a7969471", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d12d9876addd4c9395f2c07b397da51aa142bfb79e5ecf12e40137b0183a90e", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fca31e70afbee3453331720b6080eca34fd1c94df67052a187253eb4444639f", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6ff166460c360d87dc73dd030e124249551056fef08d344a562cbfe216b20df", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a701d544d36222c883e3e6c747a72079ba22f4c54a179610d28b4d39d7289cb", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d40b6e93857954c731e07887cdf7acce5b47afc4547e90055d0f46b218e0e09", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d991887ab4165384010991588a3aaaa97a09936cca7d34af6b0145bb384db981", + "regex": "(?i)^https?\\:\\/\\/robloxsurfcodes1\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "134cc350ca590dd1e5caeee10e69426df9748d856bc2a7740f459a2f0022c778", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af2fd1ffa7d633ac26b7675b72fbce6632a3aa3e5d737406ce62d5baf985c231", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8e2538d8b7fd1de2b841db05ddf363004705d8c506a97ddce35668c52f99532", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5759aa9c0a72e91033d16bce0206fa8402551e08481314565b5fafc064edea29", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2652947065de94d2e8c2c8064825c6c5b34dc3d9974cf99b58db1e65b761bfc", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd68e4921517c7dfb3a458a2f29747f2e55d00252d545cd80ec7719025fc609c", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed30e6f65b5e9b8aa9d6b903ad47670175da2f6800d8d7469b8ddfafa3c483cf", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3376c7e4a6b2a87656ae27bf5adfdf7bc6e92b26fd3d1a8a5cdc116383143c08", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1575873b71a8590471f396eb0fef4755201a05722b41b9f70800bd5911db7f34", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba969eb8fac21c618f357e669a42d6440a8da2b01a705fd9df1d263a30e68233", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c5dafe9528c8d8d4ee60fd2b16c2b633c891525c34e7f0b327c17a7451d49d6", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "293079311a2f663e52559efdb6084269aac009c54cbfaad22954a723fa8a7072", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7123bd440da05ca7d2ea2605712cb09e49507e002e07303b25b3b8b592cde4b", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61e0e9f273387ecf84453ba0207887dada87c9e53adc4373ae3b933f930e6ed5", + "regex": "(?i)^https?\\:\\/\\/error610roblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2510ab4aa95f25aa610b2dca0bdfece477918570e1eeefff97c22bd785c523c8", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ecaf28d519ed7a89ad288f1886862a7e23ff0bc97ade40660f70cd67371e2ca", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fb119a7d33bf03134208fbf1e420618c9f47fdfe9c7dc090cf763b5cec3404d", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9a7c8506ac39199390abef59ad12c135c26c320ad0d4c55f4f81d223497dcb4", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e8efa7931e9581c255feb2d17857b7f4585d81db7196dbadf04d3152ab388e7", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f67dd66b171178195999a7189409ae1fe7181d82b985c9560764d5b9c4e4afc2", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fde8b9887e6cff53979225895b3072a0199097fc237cc2bd856902ffcaf0796", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d739aa92d7c40cf7c7215754a573b615aa4d8071d4ca6c47da92d3bf16f4c7bb", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a43cfa79cfc1f871d47ac05d401714800bf0223e05dab3d30770075090ac9907", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a586e17573ad40f1fc0097c5d7f5f66fc8d4a5bbc96cc6d8cf5276b5e026df7", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a63121b292c92943156b64efb18335643c5a313b1119a3c3f53eb1fda94424b", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b94c8d77b8b945097fee445205001f37527b9a4eb6fa585c758605e3fa7188c", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f2c4892c8d0b351e3ad8d0b727b20b37c4ae4fe39bb6b28cb6d1f8458548f6c", + "regex": "(?i)^https?\\:\\/\\/starplatinumroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c133d02c3f5669062882359087d6799b5db952e6b6e857b615509a0e0b3c0ff5", + "regex": "(?i)^https?\\:\\/\\/onepunchmanrobloxcode\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3a16bdfdf4c4cd6c319ba41ec8f7b771ecf1bec05703686a55181d0a53e17c6", + "regex": "(?i)^https?\\:\\/\\/onepunchmanrobloxcode\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54fc6da31f997a78ae75a2e1f0e7d9b106915cf9f3feae3d6ed839e1c0c6bf67", + "regex": "(?i)^https?\\:\\/\\/onepunchmanrobloxcode\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1350f3abfa62549e8aec3f62340348c1b5ae3b6c73ea81ae9ce29c4d92e5e64e", + "regex": "(?i)^https?\\:\\/\\/onepunchmanrobloxcode\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dfef82090c5ded40827b657fc17d9839eb0ed285423a69004da246ec54a7611c", + "regex": "(?i)^https?\\:\\/\\/onepunchmanrobloxcode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70878dbbcf6a447658754a789217005b9e18a05cb89c2c4f2eac9c1bf59c25b5", + "regex": "(?i)^https?\\:\\/\\/onepunchmanrobloxcode\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10a46c92dcabf1f863b44732cdb642c1b054bda6e8d645003f0a6dff378d4447", + "regex": "(?i)^https?\\:\\/\\/onepunchmanrobloxcode\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93d2f98201a779d3076c7d465fb754aada39461bb0c404bd2efb394dfdb6d514", + "regex": "(?i)^https?\\:\\/\\/onepunchmanrobloxcode\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92098d2d907a68c2da17819f2086691a625c52452bac2780ba74111f3c125870", + "regex": "(?i)^https?\\:\\/\\/onepunchmanrobloxcode\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd500d5d076ba2e25eccdf3e482237474b0d77c6604712ab6c0172b94bd0718b", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c5ce6816f5fbe4a50caf0d3a4697f7f503c258b137d2d11a59a96db0cdf0b05", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b8653e9faaa0d3fb5821be3748df23dfc2dddaf03bf520f340672ce3372e059", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33d378a7054042998d410afd23873c2891e022c4858a33af843f41f3b1d3bc2d", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "504dd1e58f8fd7ba222b4f0d6fe12815db22b8bf7a817592cef52c70b98a2f0b", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7525e7d7ff2a21bf113a85055486818262e65d706412c0fc7b38a4250f1cbc6f", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78c5c4877e65e3dafd1566f1420848e59d679f731bea48c16eab5de960958352", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9b50829acf70ca2ccf71fa4aecfcd7f0ec78b0a28a92a8d2fe010143c081592", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f79a1780e3f9a5b4503f7558fb45deebdd344a67769facf9dd2ab08fdc88faab", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7150e4f73302e23ff9d2d3f897783324e2d08498ce5e4942bad47210d7b30db", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9a74b15fae31cd224ebd97da80d58a6da9e312b5e17cdcf61777919539f617e", + "regex": "(?i)^https?\\:\\/\\/patandjenrobloxfashionfamous\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df73d3a7b67484678df899ddba353d5bc8756785c88c3df3f64898e257339753", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3862521045745ef6db8d727d5cad54cd090dfc8843b040204a7575ab9912d575", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dfb063a06bee291e4563d5269ee6c50be7a75ecc6d4e4d907a5007d27abe658", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c172ecefcdb1f7e90e09a68c1013aa71c6f06b1aefb64f67f65695c6b357a5c", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a7c1181f937fce32898649ba7dda6def3b120e5e203df808b26fbe0a2f2ac44", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "115690fe8bf8828e1fccec3be32dc2b76f398d4f1626367b6ad2e3b92b1b5e37", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4da89e148bf532fad2cc81776db1699474fd8bd20e82f33c5480ff8e67388c94", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e55b6a9a8323679ba79e03cc1b54967cc5c9047634f2054843660a587d7b41ea", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af3a29cc502c4f998eb1d7db7abbc401514be891cc98234fb85535960e447301", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6329e1b8a25981cd745a19026b36908b4a5bc7756fb7815c97a3b36a8a8a7be", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "251e333913c926edceff3d64176b92a6f2a73e078215bb1a5e59739b6dae6093", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4d8b4f85f86cda8634867fc69e9e5aa640c4febe28b3d79d0817641cb812314", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "983f35fc54f53a90973894996d9dd6b011e1abf76c0fdd814b4143f84c971f2c", + "regex": "(?i)^https?\\:\\/\\/comocrearunaropaenroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e2bca3239e8a247e502dee84d33bd63ab66cf6709f0b14f1af0b709b62ced52", + "regex": "(?i)^https?\\:\\/\\/milkroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8e71b28993f0967d7d60881cfe5e1faf143cfce246462bb9655b24c608bf6a7", + "regex": "(?i)^https?\\:\\/\\/milkroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f6766dd98ca5059b926b38e7b660c05a1cf3d25bde2354c808574f0615b3443", + "regex": "(?i)^https?\\:\\/\\/milkroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f632e1787c76ee62d378e98e7c90212c6029b7366d0c700d3f3130910f6aeff", + "regex": "(?i)^https?\\:\\/\\/milkroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc7f10e17afc983e20a3cae17f52d8d2361ac95f08cbf0de044e691bb5a78e1f", + "regex": "(?i)^https?\\:\\/\\/milkroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9443562a48f0ac3b86074f45c392b82728c6e493221b719f18684551e7ae0c07", + "regex": "(?i)^https?\\:\\/\\/milkroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b0b041b46a1b1edf2397e78e986b56e370c1c22ace522e76620428152678b9a", + "regex": "(?i)^https?\\:\\/\\/milkroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca9b72341cae96e4fbf93c9f27446e91870f0e5e99401e6063f14ebf78e40947", + "regex": "(?i)^https?\\:\\/\\/milkroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ef827330713c7bf968f9e482f49650da2f016eeace95c873d5ea4eb27e228df", + "regex": "(?i)^https?\\:\\/\\/milkroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b825bd978b27599a8417f39273d181cae6cfbedb60435ff8a9d1b14e4e4b940f", + "regex": "(?i)^https?\\:\\/\\/codesforbokunoroblox1\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "913b393054ba5bbbd604ef30060b4580a04d180d78013b20a835d0e81d8d5067", + "regex": "(?i)^https?\\:\\/\\/codesforbokunoroblox1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "713646da50fe9c2a8a8ed0b6f7e1f10176b3d970a58f687c8ebbd52f2f172311", + "regex": "(?i)^https?\\:\\/\\/codesforbokunoroblox1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "229e81eee43263b74a7c194aaabaeccb70edae062a39f374349b467aa0d18de0", + "regex": "(?i)^https?\\:\\/\\/codesforbokunoroblox1\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "411d3d88cd32b211c4be990bcec8723b94c092bed6ae9961d66178244c1d29cc", + "regex": "(?i)^https?\\:\\/\\/codesforbokunoroblox1\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f6e2ee525fdcf4a63572544d0f0bbbb559955c6936da05fad0220a04212283f", + "regex": "(?i)^https?\\:\\/\\/codesforbokunoroblox1\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bca2b931c7ecc519c4702e3386ea57c5270b931012dc1180b2edede4bad95fdc", + "regex": "(?i)^https?\\:\\/\\/persona5lifewillchangerobloxid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73c25533f73a6fb8da0a9b64210fe89199f6d0a34b30eb0c1db51af52dba5d5", + "regex": "(?i)^https?\\:\\/\\/persona5lifewillchangerobloxid\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9fee25b0e77bd911a4bc5b7e100214a18575de8fe9eec87d8148f3036dc2edd", + "regex": "(?i)^https?\\:\\/\\/persona5lifewillchangerobloxid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c2a94f32bcd1a692c5f92f5098056db7eb649c3101956675a870691c9573ab9", + "regex": "(?i)^https?\\:\\/\\/persona5lifewillchangerobloxid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6892a5082474dfb6f46dac24d732aa0582d846f6c836d4b00ef55edd5f324d0f", + "regex": "(?i)^https?\\:\\/\\/persona5lifewillchangerobloxid\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c03c5cf7ec86f01641287949273d13789e8455ae58bfbb7ef3ad1153ee65446", + "regex": "." + }, + { + "hash": "9a960a537d4e2033c93c132ea3e8e7633282d60ddfe5e53a8489b4e219ba3fa5", + "regex": "." + }, + { + "hash": "8edee61775714ba3cd3f483b04c06c8ba1c0c1fbdbfa49fcb803156457c52901", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d7ede10ca773fd28b07b8c77627176caef474dc29886a51647c32fe23d6e0e5", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb9c63f1c2020a5960658410a7bb158c2a2caef5cbcbf132a89ac69b8c4e736", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94d715d76a661a0e9f1f166a94ccfac168b05edc625812cb477002ba4caa82da", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bc92632540ee26b06161d08700eaef1fdca6d9446388c4ae87e81bdde53ec3c", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2b922fb5b84da2772e5bdce515ed20c29ca6a989bf7d76ba4a840a7f2dfa546", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80300feb384735250b684e82db6ea2cd81fabd3c2cfef77a4c9f38194a12dda0", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0131f2df46a49d824deb7ac8bfe343ce8a782089a1323a1fe65cf41ab69d404e", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d7bdc9d82e6b7161bb867dc1b8c4b98758093305c3474b8c2a5f81bffdf6f18", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e414fc9ca97513528ed387ff81201cf45a0316d6c5793e33785a01c39b62561", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17789b37b12025283eb4026e355fc3a66c7a82fe61ac966496f75686bea79ab1", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c143f1f1d9c6e36ae1c5cc2dd29b8fb829b3b1359ea264c0cb58dd694ac01988", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e108237c241757adeb14c31ccb8be46bad7865c61fef20330268cffbe492c126", + "regex": "(?i)^https?\\:\\/\\/webswingsimulatorroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24fea9b828e45c020282635390810ec34f6b071117da853d4069c8197b811a74", + "regex": "(?i)^https?\\:\\/\\/webswingsimulatorroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4b2b7548f0567b42470942dbb337385cfef02a688a3b9e29b3f10a30becdc51", + "regex": "(?i)^https?\\:\\/\\/webswingsimulatorroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1b5740199f0adda953d116f1f44d3e5e3dff981d96063b0ed44ecc2794c81a7", + "regex": "(?i)^https?\\:\\/\\/redvalkyrierobloxtoycode\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d5cda7ed517c16a2dc0b53fa2dd2b0978d5a10e478196aeaf36c1646351d030", + "regex": "(?i)^https?\\:\\/\\/redvalkyrierobloxtoycode\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "964768d2f26b18e8efdad6d56e39a928f3aecdd2a441f21c5c6f43223b470b14", + "regex": "(?i)^https?\\:\\/\\/redvalkyrierobloxtoycode\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "448f061f59b2c1181747a16de6d05f8e26a22fc69342919eb663bf908b1183fc", + "regex": "(?i)^https?\\:\\/\\/redvalkyrierobloxtoycode\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "525726dc050cbb32b09c2ce32ee5caeed254b6b92bc4e1d8a766878ef67ebfa9", + "regex": "(?i)^https?\\:\\/\\/redvalkyrierobloxtoycode\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa8792b2316cf34b7ff4e45e2bc86c257b4aabbf373580d2ec8c6fa343f7ef8e", + "regex": "(?i)^https?\\:\\/\\/redvalkyrierobloxtoycode\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "163ed6fcb58219ad9aae32e60c7581ec613213c4a308fc9405a5ab19261db554", + "regex": "(?i)^https?\\:\\/\\/redvalkyrierobloxtoycode\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90957232e668a5ac6a2c1ef09a158698ad9b56d426dbff6d2d94d308a825e86e", + "regex": "(?i)^https?\\:\\/\\/redvalkyrierobloxtoycode\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecafb5ef742716c9bab8e55816f9229e6512a465730aab90ca4fe8188b9abaac", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ade9f9a484a3be1aecd56888a1a4e4af06e927c17279e39cb32f445e12006a0", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9fe178de52997db9cdc30ee6900eeaf895e49c5a71cbaca556d34a66cb24692", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7721ff3fa6f578b291bafccc56798838d14fd01c77f1b32502b65d63593d6bc5", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3c4041af039a12f7d976f55fd1928394c934fe354c455edb676103062098f19", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92a2a54d1c585a0024965681d2820de7099b139ef83913c2937137efc2c97022", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee3cf5330bed6380c837a02b0224aa677b691ca2310f32e2b8a314fa244d27d5", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76ab906fa913ad7ec1d97bf0a0634c2d60db1535b4fdbfbd6c1b9a089b6ab949", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6b3abf80679a3ba542e6ff334c654156216a76f87352b01fe21456f761edb2a", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6f2b06a952b2f510d679ee57ac2cc2cc48728d052457b67e70babdbf7df7d6", + "regex": "(?i)^https?\\:\\/\\/baddierobloxaestheticgfx\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73253f1251f983c0334f3bb80da13e296a02a77bb15579366a1eb3b943915ab8", + "regex": "(?i)^https?\\:\\/\\/aloha10kcaashrobloxid\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "871248026720c45116d79c3cd7921b0b6eca71d679a2352c9627e4f1d0555f8e", + "regex": "(?i)^https?\\:\\/\\/aloha10kcaashrobloxid\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2ec09536388ceea4518c78570f7ea42726d3f3e2d4f4e3805db37b9a59bc554", + "regex": "(?i)^https?\\:\\/\\/aloha10kcaashrobloxid\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74b0be69e4ae23b8225e4925154f9b4634dadde08c7db6f5383287268d05c738", + "regex": "(?i)^https?\\:\\/\\/aloha10kcaashrobloxid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75ab62077604f6dd6b12973d4311e3103a284e5ef101f3d41acbcb79d84bf31f", + "regex": "(?i)^https?\\:\\/\\/aloha10kcaashrobloxid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75dff85d699df2a8168bbc92a0e6e4ab654dec547a117b8c4ea9ec3270c8db40", + "regex": "(?i)^https?\\:\\/\\/aloha10kcaashrobloxid\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "591df2673f685729f093f110ef5ed205215048bf2d78135ae1d8ba17b9d21055", + "regex": "(?i)^https?\\:\\/\\/aloha10kcaashrobloxid\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba185b160f4bc7a729244cf324ea43fac5cad4a2f3ced58ac361638895c227b0", + "regex": "(?i)^https?\\:\\/\\/aloha10kcaashrobloxid\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf2017c1ce8f1f1ee88cad32b9d88cff05311dd326fa1a77aae984edebec276", + "regex": "(?i)^https?\\:\\/\\/swallarobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e95eeda9a77f30647ba3f6b3e07915d858dc8e476b31d83275dfbffd6a58c4b3", + "regex": "(?i)^https?\\:\\/\\/swallarobloxid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4462416af9920130b3a8b891928cde2216be7db3789638085f81f3555ce0b173", + "regex": "(?i)^https?\\:\\/\\/swallarobloxid\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b0d88539931e310653923cda2f934fc7d98d28c7f1f8016a40ef53c78cd200b", + "regex": "(?i)^https?\\:\\/\\/swallarobloxid\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bce8de8aa2a4a74eb60a6500e0c9567a9233cbed74c28f23c9e0b99440a72cb2", + "regex": "(?i)^https?\\:\\/\\/swallarobloxid\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "633f7df07f58e33bb97ed8e641167c52f0a2054f96dcb0c529607afba1ff900f", + "regex": "(?i)^https?\\:\\/\\/swallarobloxid\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "501675ec183591e9a6a75f2eb06bfdb5dcb4a56f72ad2e35a9015a265da003fb", + "regex": "(?i)^https?\\:\\/\\/swallarobloxid\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a56473f244809bfde79cf8d490703610a82b9e3f02e9c997e30605d2d1fe31", + "regex": "(?i)^https?\\:\\/\\/swallarobloxid\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "913636f13c0ce58977e723aa73cd7ac6fc9bc2e06e5f22576872f9bf13ab7366", + "regex": "." + }, + { + "hash": "6fc94ed0666f64563a8f37fa076c1a36f901d3621b6ac65226bf7b26e146c97c", + "regex": "." + }, + { + "hash": "4e85d8a3a2800d4d21938b15c6cae108b5d46a8c806dbcde1b88af1e32e19bb3", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6353ae853b15178b484716a4dbdec9c1a52716b4c2a4f27c2ac5392c1699e54", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e30d713696f0b5e41ae823a85edb5d154841e2cae51f27ce7b11ae3121d4c4", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "845d2beff0f7612a2104852093eb56a12490632105c38fc89ce617978fe88fe6", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3da03d7255588c04093eb4aeb8734cbb8edb81e6defcec0f1294e23434bc0e7c", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f682d945b78d35a285a294a6a0f038bcd7ea5ca5fd3a19b043fa4d9ec4ea85cb", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc1834875db3ad7b94b410d440f43ea76a8c6c2d493a4bd733646b091ac46397", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e484b091e2ae141935ee7aeda7e414522579419e086d14518dac0c2bf33f95c9", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fd2833a459303dc4af4dada6a1bab8c761cf8cebee66b7584fc02fc8c3ee523", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f39eaacc6b00e01d838176302480bf55220d5b53dff30f3561d88a8ab7e441c", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc384b373325dabccee0362635bd14d9be2536c3274b56ee9c39858df977de74", + "regex": "(?i)^https?\\:\\/\\/robloxgravityfalls\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41593229e1ac29660442484b0e75a989d68ba320952493a2d743add66b465b56", + "regex": "(?i)^https?\\:\\/\\/giveawaliys\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38d5daddb1eac1e2dace444a7703bc15987dfbd21f71ea3bd7d7ac1f96858dce", + "regex": "(?i)^https?\\:\\/\\/giveawaliys\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4bf8c46eaacb479ba7aa872adb0b8235887e1a622f872705b2e61fb47fb2617", + "regex": "(?i)^https?\\:\\/\\/giveawaliys\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44c76e5ad89dffbe286d7d256b3e11a678536be28bb70be0cd3e2721bb58dfc0", + "regex": "(?i)^https?\\:\\/\\/giveawaliys\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8b4528b673c70ab694d06d419e7d025ae66c192eb7b958c7b6187378b0daeec", + "regex": "(?i)^https?\\:\\/\\/giveawaliys\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c066c8b6062b3a98ace14db85106018a790666a52c67bb766fc212206a21a79", + "regex": "(?i)^https?\\:\\/\\/giveawaliys\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a68f6d76d53ef7a18a29c52bfec277eaeb117bcc1c1ee0c85837b83b3d8fe98b", + "regex": "(?i)^https?\\:\\/\\/giveawaliys\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c0681f9cf7a96926c2adaa7765206548c3a11ddfd36f88936384a6b3391bd5b", + "regex": "(?i)^https?\\:\\/\\/debitcointrade\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1fa8e4532d362df74730a2ab5f34ced07e393d19b0ffd1638e8a88839a1865c", + "regex": "(?i)^https?\\:\\/\\/debitcointrade\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56e56f2aed2039f4de36a655b1f03d6e83e408c4b14ff1b75b3cc9e84af31bff", + "regex": "(?i)^https?\\:\\/\\/debitcointrade\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f953fcf8e60bf202a7ff292e571408dd9593b6d620f104fd8942dd4f5b0a16a", + "regex": "(?i)^https?\\:\\/\\/debitcointrade\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4900b7e244e1852e9111439699e932b4e5be0e700eb41c16780f41737a7068e0", + "regex": "(?i)^https?\\:\\/\\/debitcointrade\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48052bd113603d85767965a4451141c5a378a4e0230bae4ac2550e4c2ecf080d", + "regex": "(?i)^https?\\:\\/\\/debitcointrade\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "842f13fdcd1c4a590415045f133c2f49a37b49105289d1e3daa0560ebb72672c", + "regex": "(?i)^https?\\:\\/\\/debitcointrade\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed8145216c8a1753e9f49133fae3405beeab41d22785393fe4c6508220d18aef", + "regex": "(?i)^https?\\:\\/\\/debitcointrade\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38661840742dd6b9af5c07439e0ada71f0046ac5a43d5034bff142595d8c951a", + "regex": "(?i)^https?\\:\\/\\/btcoinindeustch\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbf6d43c55de590515ba1ccc4eb78a3a6e67a07980ce54942933755f499de40f", + "regex": "(?i)^https?\\:\\/\\/btcoinindeustch\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1bff0d4fae46e36e4bedd057e28b65a518feb0c7365255c6cb615c340865f18", + "regex": "(?i)^https?\\:\\/\\/btcoinindeustch\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbe40e1ba9496c898c42ab850e4b9a746f995d4259a71a5c93f6fb85146a6b68", + "regex": "(?i)^https?\\:\\/\\/btcoinindeustch\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1faad741e589e0c8a7a0b2ad470f58d2b1db14d631dfd51470f5f69701a6667", + "regex": "(?i)^https?\\:\\/\\/btcoinindeustch\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d09747d285e9e7e949464d65f347e21bcd2056876fc33593d7669addcbfa72e1", + "regex": "(?i)^https?\\:\\/\\/bitcaptalx\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ba9ee66653f5f94e0c0ac3823079287d34a86abf91417190eb73e9d92d90549", + "regex": "(?i)^https?\\:\\/\\/bitcaptalx\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "252c1441f547b30c52af8d6af426818ffe2353da2a24488a361020e5900aff79", + "regex": "(?i)^https?\\:\\/\\/bitcaptalx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25d2d336defd57076393372d212624d09a4dc0e228ca22089e19ff953699cbc7", + "regex": "(?i)^https?\\:\\/\\/bitcaptalx\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9d261d9801428338618fc0b56ec6db5ab2382ff83c010d19dbadaadc4d1f00d", + "regex": "(?i)^https?\\:\\/\\/bitcaptalx\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1352483dcee40792ffaee4d55268debf99d33c81219332e5e4cc60dc4efca344", + "regex": "(?i)^https?\\:\\/\\/bitcaptalx\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "501342f6d32769e5a7a52cdc2a7e5d26221e53f9d0e6198a47553d7fc5f18458", + "regex": "(?i)^https?\\:\\/\\/bitcaptalx\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd30e3003cfe5d6854fc1bf21a49dc3b421805d928e65ab635052257bebb80ad", + "regex": "(?i)^https?\\:\\/\\/bitcaptalx\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "405545c418fcdaec3306a81256de48c1f419807be89938086636653fa11dadec", + "regex": "(?i)^https?\\:\\/\\/bitcaptalx\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dacd5e2cde268dab3762aa850719d64d56d676cf2f0ea9a89358cda0046054c", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbaf4944bfe1aa23ac7f98f35398a6dd6ce7565483b270443ef04c2536f05187", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cb915b36e628ab6eab60cc6ca2f74788b31fa7addfef3a7cc995f741a1e70f6", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe41e6f2f13ba76e5050589070f24b827a5346209ee0c296b72b01ffa741f312", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83df8d80b7ef2665b461490e8f475b158e94fbe5f39bb5bf485efa58856c4108", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46d9631a129872895c744e7bb6beec1997dee5509953e890094ace26640dd9bd", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e56fabb5363b8e5d2844997cf6bd553291a085315804c903de3de3abdcdbf53c", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ae67a7d19bde0cfad436e714ca54d4820233aa3550d9d1de4b4f80cfa5011cf", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99b35c94c2c8639ce44b0b88473acbd0667589d8eac647962dac8db4add123f9", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ca84c4053977eb2201075ae15b2a3da9c17935256296acfc6cd8daa4288460e", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a400bc2cc0624e61e101b1b43f45466f5032fd13db88685fb022235599091dcb", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c415489c77f0be88a6737a5bd26dfe4a29f8a7103b74959b6f4632dae3c7e3b", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f7a77e549bf9fa537db64ae0bdb6bcd16ea41b832f7ef13b42868a71c0be4a2", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7e1bd7c854e2afaf54a280c151a38033083e834c4a64aedbbc3e8d98fb5707e", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6bfa1897e605111859887297479e891764cb54df488787d8a794b638193233a", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8de3c4ccb208a3579cd01f8ff6207f3550000d676842996c80716742f579570", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99140de5bb761e345624086243734e6a209d4bbed7b580da744bee252acabdd1", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff3278adbd84e61c530b7ba6fedcf2ba9827d366e61c924fa7f7adf483627cfe", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ecf6b361615626def9946ace9218ef8a9f8cb999a0dc0cd5a1b272826e382c1", + "regex": "(?i)^https?\\:\\/\\/crditoparajogorobloxcomprar\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26e37916abb9f453d58e1d85a768b2b6b8eed2cdf77823cec06893abbb20a456", + "regex": "(?i)^https?\\:\\/\\/comojogaroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c60d18289fc9db46beea066f7109a649b7dfe45735d71f0cb0646d2b01620a9", + "regex": "(?i)^https?\\:\\/\\/comojogaroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb9ddda0a22c824161ae6a58783497394284d26ab991d386331ea8835ad11c26", + "regex": "(?i)^https?\\:\\/\\/comojogaroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccc02acb7ccffb7db6b42915fba23f982f5d9c60119a857338e01c1620cb6998", + "regex": "(?i)^https?\\:\\/\\/comojogaroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b862efe1d1b6f943f6fd98262eab0c8e23576f48969abf81884d4de4cb5d40e4", + "regex": "(?i)^https?\\:\\/\\/comojogaroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8a47b20ef4eab01e128ad7a9b43eb88c1a8c54c0ce49b1a9cf9ae2fd8cd8965", + "regex": "(?i)^https?\\:\\/\\/jotarostoneoceanrobloxdecal\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658a59d6add5eb949ecf41776883282cd0688d16eef40e8e51b275d11f299cc7", + "regex": "(?i)^https?\\:\\/\\/jotarostoneoceanrobloxdecal\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be58779d87d2af677f64bd2354eb2bd01a093958209087b4aae5650f0c6f0242", + "regex": "(?i)^https?\\:\\/\\/jotarostoneoceanrobloxdecal\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d98283569fa44951dc36781f7048e98d8904ae0704d2c3418f163848f206fb58", + "regex": "(?i)^https?\\:\\/\\/jotarostoneoceanrobloxdecal\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8405e5d440774a06a04fc8a4471e5c6c6795120fc1eac1ac285b956e3b4e02b5", + "regex": "(?i)^https?\\:\\/\\/jotarostoneoceanrobloxdecal\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "588363bc20cb65ed710818f5ad62330d01ebe2e8cc5071bfcdc0feefe2edcc1d", + "regex": "(?i)^https?\\:\\/\\/jotarostoneoceanrobloxdecal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eada53c84ab68f6efee0273746dc7bd67c6cbb35abfc7232793a00f1f2bae88", + "regex": "(?i)^https?\\:\\/\\/jotarostoneoceanrobloxdecal\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8736df74f50379c82dd74935c8f32632e4a0d2bffc1782c2ff8426a7e25f8f63", + "regex": "(?i)^https?\\:\\/\\/jotarostoneoceanrobloxdecal\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07c40f83ed6e313ddeec187e79a98c87f4fea1b3724b274934586bb2c70a2974", + "regex": "(?i)^https?\\:\\/\\/speedhackroblox2021lumbertycoon2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6fad0880d48db7d6f4417c08fe0aa2322649c21eea7e6dff80c978a5715d817", + "regex": "(?i)^https?\\:\\/\\/speedhackroblox2021lumbertycoon2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e80c0ecf7f792ce711d612eb1670afb3352a5da7cc1cc19105ed22dbaa88ec34", + "regex": "(?i)^https?\\:\\/\\/speedhackroblox2021lumbertycoon2\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c6cc6a494b83f0d00d3f78686e39bc59a4124744a7135560d47d27722c2d2ed", + "regex": "(?i)^https?\\:\\/\\/speedhackroblox2021lumbertycoon2\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3c5a4d378c1465bef32c1fbf3dca667f2a9afd3faeda357e369392e1b077dd8", + "regex": "(?i)^https?\\:\\/\\/speedhackroblox2021lumbertycoon2\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd663d92146a576bcedcd7010007ece4a345ebe462ebeb2000948ce3b415f37f", + "regex": "(?i)^https?\\:\\/\\/speedhackroblox2021lumbertycoon2\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2a4e95ca156f4d921b048544dd6196b8c62817bd1d8ee11172016c8068d1ca7", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogocompletonoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "479e48520b49d6a1752b64f19373a6085efa3aa435e4e7cd52027e0c2677b3ed", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogocompletonoroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b6288deb46525a0ee84ea0119da7fa2ad1322aef2b1069b91834f7dec44ab95", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogocompletonoroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce3de86d6423c90a72e5a9ef8923e7724db1edf4b1794d153c2fea6626e225d9", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogocompletonoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2433a2319378a424ddad5e0775c8343fb2e86a4fd6afcb7c1303e2ec7daf822", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogocompletonoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c0a849eed97ee858e3c6a1bc8b7d72478ebb6cebc83d6274eb99c69dfdcce25", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogocompletonoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b444279ea427827c1d68b566767bd1939e012a84cbeb7a2fa83f495aaa08080", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogocompletonoroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5339082815c273b99656fbe12fb0f8f7bd7f927d5cba1f4024f0d33f44e7933", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca4bfe6cbfdd063db03938bc63daa870d144613dfbe462b3240b69825eb02839", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3203215868dee63c3458b7e25bb6e36afcfe3ac8e5389d12ece743a61208b201", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edbce34ef482b7e22c5b38213e61cc5b038b321a09ab9699f880fb70a1f9bb3c", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da65657e496fe1c94ee27b1ac401942c2bd72c6303a3a4d0b10c02c5a688879b", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a38a4ab70b1d973ae3615164806341a5349edb8052b3493048f54205e7cb2b76", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "601ed4302300fe13ca461eaa5d67e45dd25b49ee5c6dca3c783ca06b6892456e", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6ca96d7ea2d8a707a4bd9b06e835a2be2f057c4dd8ad623ed2161b6c8d30e5b", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0824f92c4dfbcba2c931c72f6cc9689d5efca525687af799023e94e56c5a9410", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a55333b1eac344b07e0b33fe76d1d53fed6baf00d3468b9cfc2a3fa47b2a7034", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8ce4025b0f18020fed5e1bcb9226ee9daa15ab1240fccd78cfa9fbf402d737f", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7ffd7aeab53f9478026d4f624d8a3617bba596d6daee526884e989ef1f53cd3", + "regex": "(?i)^https?\\:\\/\\/autojumpforrobloxhacks\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9d39f921ce27b03734dac78cfd4094122745e3ecb757ff2010baeba64a1053d", + "regex": "(?i)^https?\\:\\/\\/jogaragorarobloxdemenina\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b35e3dcefe1c2cb9a4ef0985c28d656ccc036a597111fa0bae98eb8ca00aaf9d", + "regex": "(?i)^https?\\:\\/\\/jogaragorarobloxdemenina\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4707af1cc04365630ce35de561c44731f71d71e295d7afa9c892a06afa6861d9", + "regex": "(?i)^https?\\:\\/\\/jogaragorarobloxdemenina\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d044deae2413e26263c2d2fc09cf85fe258d34a990318888169cb40b9a7f0932", + "regex": "(?i)^https?\\:\\/\\/jogaragorarobloxdemenina\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90638b8fa86079c07d675227ad0ee8c8fe345cc5476dc7872cc30d8cd8103dbd", + "regex": "(?i)^https?\\:\\/\\/jogaragorarobloxdemenina\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "377e62b42a4f2a536b49097dd517b550178682d902ea9aafceeb6b47a407c075", + "regex": "(?i)^https?\\:\\/\\/jogaragorarobloxdemenina\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "384f901a4f0eba9244ae2b6a2b97c9e11e8f4c26f51a0c752e4532659eb6031a", + "regex": "(?i)^https?\\:\\/\\/jogaragorarobloxdemenina\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "800c326d316730cca9adf74993d3ccb69a638cb30a06adcde4076ab35e08ffaf", + "regex": "(?i)^https?\\:\\/\\/jogaragorarobloxdemenina\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46e897454912fd46bb6cadecdd939d7f1e0b45de20ef44014ec59b13904ede79", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f401d1196d1a1f06e4e0c02945d4f8685bb48b6537167a2e9ba56dc0f42b5788", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8361f141d3e4c23dbe386a372a6c20deaf134c9de2524464f22d721aa0365c4d", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "319ea81a6ca528d357d66ec3e85f0d2feec3ea4e5fd8b5bb590d79ffb73faac3", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28f5baf4b209b47569bc9740cb0e8324f6e4ed2dd95fd268daf80c45cb9c5f47", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dccb85c0d65353022d30442b6daed23bfb2136e822ea9f755d9bc2e496d7ce6f", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14fbcfdaba6bd0ac545c72365939d9deb32327011d08f8dac29b37fa15ac05c4", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49f6dc848a26b992c0ed7de53efcf7774a892d19a868df23ff53f7da5625e147", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d933e1158284c7487fbcf6af5a37bbbd1b7ce245b6f01972d2dcda0dbb437e58", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4145ab869ba0c2b4f0e4fcdb2531c6f7ba6cc34468682832bd7406dfb3baf1d3", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeaccountsonroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80bb998cdc57dbc12a31a3e5852262d93e17416a2a745652f345bf98a57a175c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "d5117a27e29154ed43e84fe2070a570af32a1ab45b64c0395258b26f9f83abc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "c79d3c08128a73ecee8f56c8bddf46b90c634876480fef9df2d2e82698245276", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "d075a5ef0e36c40da29da28f7fb123b71de02260e42b0b6078d782436e5500fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "f44575293f49032dd75893666c5e7ba3eaae5250d03edfdf2c9ae200d99bfb34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "b4e11be1aa53fa1a65b86551a50a0961aaa89af5e76e783c9b8a0928a580b630", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "3fc04b8c3730bd5c1c2bee2038ca327bfcde5e26c60ba9b291f240b02dff3adc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "d420754967fa5a38dfe4290f7c7b45f7f974f44c3b7d67c1d48fd7b8fae76e36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "60511e074700ed440a1d73bb312cde768e44e425509a92efd9fe028ffa63e366", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "3004da677d37b25cd78a1621d30edf08edf522c1f067a783b963c78d6100eab1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "df5592bac559ba2fa891c80f9351847d51aa72f0e44a70e9dfb35b22df1aa14d", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948f2c20a3a2869a4f8b1543f2871c95d9552a6923cbf6bbddfd5e47efe5198f", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5be950d202336402a39b68635bcf4fb219313e40a44600123bf389a6bafbd1f", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acf4ddcefbeccc4d976639ec8a0128cadc4af7a29601e9e03bb9d6fc079397b9", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc9ef18c38d477252a3caecb89a25ab18b47efe8c18ef318b781ac0cacbb4ee0", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5b159e8db2b3fbedf1aa41a17cb87511621491e98e2a3882c65ac6d221d30e", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0e17aaae640397e8e1415d3d03dd20f156ee450b055d293d72ec88d45e2aa66", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b55d7d5b338af2c43deb4d913e4b487dfca12af5719eea080c92d8030004c5ec", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7168be8e8a0121fc29d2fac6fdd192af6cfe61420bb98b1b3687783c762122e5", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93a2d737e670b7f7d6398a14c6c35c975b6c9fe865c2f81936ad9bc2a11f6ebc", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3727bce4416c90b102dae75af68c5dd677bac19f8828744a0cec3c85bd0194c9", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d45e9de9572a78bfac924cc696bcb20ba101f1e42b9ddb27048425f418740e", + "regex": "(?i)^https?\\:\\/\\/robloxmurdermystery2freecoins\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80bb998cdc57dbc12a31a3e5852262d93e17416a2a745652f345bf98a57a175c", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5117a27e29154ed43e84fe2070a570af32a1ab45b64c0395258b26f9f83abc9", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c79d3c08128a73ecee8f56c8bddf46b90c634876480fef9df2d2e82698245276", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d075a5ef0e36c40da29da28f7fb123b71de02260e42b0b6078d782436e5500fe", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f44575293f49032dd75893666c5e7ba3eaae5250d03edfdf2c9ae200d99bfb34", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4e11be1aa53fa1a65b86551a50a0961aaa89af5e76e783c9b8a0928a580b630", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fc04b8c3730bd5c1c2bee2038ca327bfcde5e26c60ba9b291f240b02dff3adc", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d420754967fa5a38dfe4290f7c7b45f7f974f44c3b7d67c1d48fd7b8fae76e36", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60511e074700ed440a1d73bb312cde768e44e425509a92efd9fe028ffa63e366", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3004da677d37b25cd78a1621d30edf08edf522c1f067a783b963c78d6100eab1", + "regex": "(?i)^https?\\:\\/\\/abaixarjogorobloxmeepcity\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c20caad7a7a753c3574345f98b0d891194a8f5c74f60bf093d2afdbd248f13d", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "113b93773bf3caddc59000dc709d161463b32ab0676896cd0a7483538621fdc0", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08dfd8a38ef90e6a77d30ce73215cde1522d4317c2578b47fed791b578175c5", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e4c2fc1eee23eaa8e121cf1611eb7e21a2f256926111dafd292f7b2cb424cd", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73192fa3701d1963af3cb9566247f735d90aa6da5140f504ed95c2a8af5e6728", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ee0e35d2b450a89c4cd2b2aaf3c53a0449990d235303b30e29293eec50f8028", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f3bb9dabc18005c1940f1d46057e6fb2055f960341bd3448913ee10f5e4df3c", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dfdde1b39637ac2bb49d75256a6d2593f9bf2246fd6f05a0c2139da015db705", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446783f424f01f347a7c0509c74460587120857a3db61d8f6e9dcfa69c9047dc", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a56cb9b4d113b2d0b581f630875a3fed556d8eea3f103fc7622f61994c89d56f", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d040ee2603d71695d28e2b8d96fd0f534b7a939db1c8503d3dd5f7b56d721dd6", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4209542deabc01d7ec3a003ed642293f8094cc9f3a18588ef4d37da6c4615591", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c8fd81cf9a9bf76ae454e1ca013f12e3347361251b1cac1d0dc027874b531ae", + "regex": "(?i)^https?\\:\\/\\/robloxbuyrobux1dollar\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ae55898c9e8f28e1813baa822d1e8da853954730b742c61106e7d7dafc2f4a0", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxstrucidbeta\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e7e1ac2a0f0c528bf7ef62b3426f212afd80a0589df5451a488edc2539f09b7", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxstrucidbeta\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "648c3019d62da247869791d7702780ee741ae5c18d7cb6f8bac4d88edd483668", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxstrucidbeta\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae472dd163151de6e0bb5236b24108d3b70bd91dec1b56c5b7e37ab0f939f9e3", + "regex": "(?i)^https?\\:\\/\\/codepromorobloxstrucidbeta\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcb60ca30e9c8c56fcf64d11a7b970b5491e987611cdd8fdae2089a070274ce7", + "regex": "(?i)^https?\\:\\/\\/parecerricoenrobloxsinrobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9a41bb73333e33cb251217d281f6b8a6d448272ec2e4394fe83ea8362f97b5e", + "regex": "(?i)^https?\\:\\/\\/parecerricoenrobloxsinrobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be99297377138660241e7bdcac71a969f2e48849520ea833b6ad28d4cf9385db", + "regex": "(?i)^https?\\:\\/\\/parecerricoenrobloxsinrobux\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd696570965b613502b15de7a34eaa06bbcb9b047d4c94e9ec1f9279d708b844", + "regex": "(?i)^https?\\:\\/\\/parecerricoenrobloxsinrobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a11fd0db9c1742fb7f2551f8788258375c0d8e161cd6b2b4d081920901193592", + "regex": "(?i)^https?\\:\\/\\/parecerricoenrobloxsinrobux\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6cb308bc7a80d95ebb6306384b0235c03b932219df7074c3f097ddc96923fe3", + "regex": "(?i)^https?\\:\\/\\/parecerricoenrobloxsinrobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bde3983cf31501ccc94a9f218869217e76d1c3d875b44a3123b5b2011c8f48eb", + "regex": "(?i)^https?\\:\\/\\/parecerricoenrobloxsinrobux\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edbc168851fc0f481821a7ca52f7a831bf0a9acfbbbee3cb33db0886f1a7db24", + "regex": "(?i)^https?\\:\\/\\/parecerricoenrobloxsinrobux\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01d601ae41e9999b9cccdc5406ac009827aeea48e2734e3c0c9f5d20abc587de", + "regex": "(?i)^https?\\:\\/\\/parecerricoenrobloxsinrobux\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b86ec2d80500f705de45d4bdc7c0c35659b7ad48f023bd64e452854739ef41d", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10ee4f84fd0b0200622fc361b383431de2082e20fb4d8d6d2e21de066ace80b1", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6049c1719417ba922b1b3089ccdc9ccabddddbf1e0020ab1740d2d371347fae1", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "697bc763bc34d169ffcf34c2dbfedc81e93fbd18aabd2782cfdc5046cb65a01b", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5ec24777576b79aa2bc6886efe2026ec7b208339294088acb1479d155d7994a", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d766e974a92cba9a907b2e538df266ab2ba84dab4020d0bdc209514e30b713f9", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ec7759d83de7da52a980247c1651818e9c4f5e86b62a029f93b858d529e55cd", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63949aa4aee5cc2d7ae081455a621c13b65f6485eeaf25dd97b8e4d03de0099e", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fedcead31f4fe781ba21be78889f2194277ad730eb75d7858ca9f4e4c5e74a36", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "314ab6d3d4de7d95838007f497416b6b66e839ffe0a270831007c6c456bd02e6", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79c7c08f50dc568d7957f6f33a9497339413ba79e5845c5e148eb602aba7c227", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d7e90b423b207567b4905b8a69a70f8b8118ff9a638cbbce131339baa8c5fb2", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec5079194c397f51f4dfe479ac2ddf0583ef00017e16f6b60e14c5307fcb1405", + "regex": "(?i)^https?\\:\\/\\/comocriarumjogonorobloxeganharrobux\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e82dec6fe1e7f834b3e03dcd8a4891b0828d3ea0dd3335b3e108bc9e2a91e03d", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09e2302c726969a37a920938cfe6378fc36bd8d67f73fa59c84d8f608f4d7fdc", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5d5623d5ec7e2ec658e2b20ad69ea85a5958df3553e8c55b82cd248d5561308", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87c84187c9534685bd2528b6f4df110a638425aff45db15e6de84dd9b5c01103", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73f1d14af505c943056430d1ac89dea21615b1836f0a1e702d4583df644d7f7", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f75698d6c89ec50ccfd8516366c9192e2c0dc22e769a14d3f463cacf8ba2b583", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "384b9e383f9fbfb7655ba628b86b7df2bfe7529a4c951babb2fcff3ab1dc57f0", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88b029516cb927a39ef241a813700e18b1d556756d0b7b1461098e4b96a53975", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c44da52d9fbf249dd4dd4497b906c172b39494e7528c5206ae3015887ec57f63", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8730b177bab8c486f238a56bc6c467b26fa4757e2996e73fa51ba69e1431f8dc", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "048e88f1867de7bba690f6eb0cb1a6f913c57505b5ba1ca411ff5e9f88fb2e72", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d7cb5185075a11ff4c66e3b6b5d4fc30bb8250cad74d5c577ed4ef475eb7029", + "regex": "(?i)^https?\\:\\/\\/adoptmerobloxcodes2021august\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2eb23697d5cb255434f0c1091ff6c2e6e4f879cde39a2c38ccf1a72d68639f74", + "regex": "." + }, + { + "hash": "faa0dd54fdb4e8bc82616211dd6cf544faa38895c9ae1e28cdc99dddc2461564", + "regex": "." + }, + { + "hash": "88bab00b06a6202392124e2921c937ec4f0a15124ba4dac32cb7e556ac9c10f3", + "regex": "." + }, + { + "hash": "7303b04ba01f52566978a3957f1a922f49128ec9eb2a2a31e32d3a9d2927e0d7", + "regex": "." + }, + { + "hash": "6c4e44c4cc2d89059cd15de96b9e62c2279941173511dbb296678bfd10ac0935", + "regex": "." + }, + { + "hash": "cdbf041f55731b08428b17910335a2108f542a87b6841c0438af34eed4ab8925", + "regex": "." + }, + { + "hash": "96e8a2832171f093fa14dd2e4fc41bdc245d053d74483e0c041dae9e58215b6d", + "regex": "." + }, + { + "hash": "64a01afb53c1c851d8d9bc74dee4fc3514d963ebc32ccf8ea9e6a72610825ac0", + "regex": "." + }, + { + "hash": "96ceb8e3abe741c810d7ac40f409f5ec92bdc111349b7edab4cfea61a852cc75", + "regex": "." + }, + { + "hash": "b252b74c0456d7fdc2f0ac37af8a8126386109e5cd0ec131e09ea341d66829c7", + "regex": "." + }, + { + "hash": "8419d0166ab7a0229181604eb54b4a7002468758adf45075d2746d86593092b4", + "regex": "." + }, + { + "hash": "43bbe9c0665626bb50922263762567832c2d5f2156659aded1f6fd5616448532", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=aG\\-2FejIoTdnLgZH8FzIXO6B4gqrkBMepRR62dtq\\-2B6P5Ak82mqh2kiINCoJT\\-2BaAPl4yVW2Izha1iKdFj30KogM5O3qa7TyEDv0PS2uz\\-2FngdXZDVFMPaiMovj\\-2BQdj0\\-2BwvUp3ej1H\\-2BHy20OX7Ii21o\\-2FYAPPHbGvH\\-2BdX\\-2BVUiZGRB4a8E\\-3DR1rY_OKEff97t8O3M4\\-2BQVuRfDjRcvtOc6vZoyWNOTjSP0HzTBIDrxiBwQEL7CfkZfa9LlCAXpurT2Ct3XZq9nZ5VIZdp3Lp\\-2FRkqfJi1KwOjwvaBNnswET6ZtVZg\\-2B0jLQL13HFV1UEyYykQBct0QXPDTpLBEjqUbkBoo\\-2Bpf7xzMcheDd1TqOSbfFmuyFBUByRMM1IscHvPfHK1XYevTzYVCs5GZQ\\-3D\\-3D" + }, + { + "hash": "43bbe9c0665626bb50922263762567832c2d5f2156659aded1f6fd5616448532", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=aG\\-2FejIoTdnLgZH8FzIXO6B4gqrkBMepRR62dtq\\-2B6P5Ak82mqh2kiINCoJT\\-2BaAPl4yVW2Izha1iKdFj30KogM5O3qa7TyEDv0PS2uz\\-2FngdXZDVFMPaiMovj\\-2BQdj0\\-2BwvUp3ej1H\\-2BHy20OX7Ii21o\\-2FYAPPHbGvH\\-2BdX\\-2BVUiZGRB4a8E\\-3Dr8xE_OKEff97t8O3M4\\-2BQVuRfDjRcvtOc6vZoyWNOTjSP0HzTBIDrxiBwQEL7CfkZfa9LlnzYakVGbWGbJ\\-2Fju6pnr4p1zOTb9NVMCMP6jy5ticOf0r9oau4\\-2BtYzROaYp5J79Wg5PKn3KvWxpS3uvtlcu6uaUoF5eGW3fx4Nss23b7ZFiJHw3H5L03BX04TMKSgC69j8WO8l1xafl\\-2FR84O3JUoqAQ\\-3D\\-3D" + }, + { + "hash": "77b5cf8285e24758573f0f7311ab2933b39e91d578e82de9356b854cedadb169", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxjailbreakatravessarpare\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01e3c01cb48143d9b8d4ee6747ba4d0914f9866642b6131615a4d234a38ff7ed", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa019c8f16a2462b32fc1dbe6e6f2e3d7e7c51bf2a229ee83867f47149c43b09", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09253debd6f0c95748e1d49153daad355091bedd50fc3bf233d590fffd9d3bab", + "regex": "(?i)^https?\\:\\/\\/freesaferobloxexploits\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a78c4b6340aea97578c3e63e70179408da39857b76b86e3c1caff12a020220f1", + "regex": "(?i)^https?\\:\\/\\/freesaferobloxexploits\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "337c64ecf1ac0fdb9aa632f3e5afc0f56d7ef6a9d9e9c0144f92490a1402db54", + "regex": "(?i)^https?\\:\\/\\/freesaferobloxexploits\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beaae8480f1d8de78ab8fb2199b1df24502d542946cc70f9de0a532d68f78d51", + "regex": "(?i)^https?\\:\\/\\/freesaferobloxexploits\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b82f5560745d6f7fb948fbefb3b9bb7426a6d10d7a275e1d3846d7f31a91213b", + "regex": "(?i)^https?\\:\\/\\/freesaferobloxexploits\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ea001c98a48ce99ddb2cdc39ce10465683920a7120b8710625dc645359907d6", + "regex": "(?i)^https?\\:\\/\\/freesaferobloxexploits\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17218a403644e36f1eb2f76f5c079097142e46aae55bc39ef461614b31e77aa3", + "regex": "(?i)^https?\\:\\/\\/freesaferobloxexploits\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a6d94726e4a589837872866f06073bd22f9ac795863cea9094dc64e717dedd6", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad896d206c7c7699eae463e22bdefd298eb69bc50aea3e0b381a6066d563cc15", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e322a5ff2aa42502186a4dd8e03223a52b11bc1f83e0eaacac63d92e53e3f44", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ca726cdfaf5ecef68ca0b1a0124b7797d287ea53ad9bd82e57ffb6f83af7b73", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3e3c0404f67d9579329ec6ff17dcd1e4d572b15e2be23daceff985c723c4665", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6915188b183dc1958bc3c282629af21bbf6b115c7c46c1b69dcfd1a881b2697", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca2bb0c08871c0eb24162d85a05e4c480ecd38feb637d04464f034daf9e5926b", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "570e74f8f7acc13b6e6ba95d081b836eb7ad83314ce2ebf0b5d25dcd126cfae2", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dff5c9c2c9f6355e73d554d2e9350a849c59f22a4ce5c1eeab73beda6405c31d", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f60ef6b1b869396d919356d1fa66ffe6e2eca4d7287873b4f890802a4d3936f1", + "regex": "(?i)^https?\\:\\/\\/nocliphacksforroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d83b70aff13f72393e38d78bbd30f403410d04c28fa0da5f3e9726777bb9b40", + "regex": "(?i)^https?\\:\\/\\/injetordehackroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1973aa4b7455edb91c629e1a4057e097dcfd61f2a6563f279d024b9d50048033", + "regex": "(?i)^https?\\:\\/\\/injetordehackroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e628351e9617feed7a97671d6bfa428dc044caa2ca81d33889f0d8b906ddc86", + "regex": "(?i)^https?\\:\\/\\/injetordehackroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dabc008316e029c307b55ede05b67cbf50b3992f05be3efc52531046b608e5d", + "regex": "(?i)^https?\\:\\/\\/injetordehackroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fd696b8c4a16f707b3783f0599bd3dc71569a8d3104e5ab3f385287188e0fcd", + "regex": "(?i)^https?\\:\\/\\/injetordehackroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6d5bfe67e209c6ed9d693eeef40ba3ec72c7870ee591d903253f264437eef57", + "regex": "(?i)^https?\\:\\/\\/injetordehackroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba595fbeb42c11d7ec300b3f3f1399509e06d42db25cfa13d0f25eff4f8181ea", + "regex": "." + }, + { + "hash": "260e65c240c2d34d04ba9464e4f9b104ca2d20d32c45eca44479f20f31e170ed", + "regex": "." + }, + { + "hash": "3f6e1968c9b6dec74b335b26a1d9679ade1d0485a68a2345d7563ff9c133c6b4", + "regex": "." + }, + { + "hash": "9ab0f756c0ec4a272fe12fce662a00d1455abb88683b9f19c33635e47b94da3a", + "regex": "." + }, + { + "hash": "b97e72c655c368041a170004b32aa22a4c7c0ac803955058340d6cf14d852fbd", + "regex": "." + }, + { + "hash": "a2870e6792ccd9feb4add4bc3432d929825c79ad5f8ee8dc19af796f74874a6f", + "regex": "." + }, + { + "hash": "691432c2391707a01c1e8b50d4d74ba2952a0def5f086504fe06994243a86db3", + "regex": "." + }, + { + "hash": "d98d30565135d1f522e677ec0f85160c3ee8d56b0b8940e4758f6ffea9e6dd58", + "regex": "." + }, + { + "hash": "a01e4be735968a758c98ef0bce3da0fc4be0ed25d3cda267b223c4a71630a1f4", + "regex": "." + }, + { + "hash": "65488568a5d3477b257884d0abb4a5f9221fbdd7fdedbf25883866811f8599a5", + "regex": "." + }, + { + "hash": "92d89cf4a7a9fda2c665fde329b8aaee2e74dc77e7544435327cc88f98f8c882", + "regex": "." + }, + { + "hash": "52a321fe204fe74344a738c039f80b72614bcf1ef9e9385757978597c2a09b2d", + "regex": "." + }, + { + "hash": "a4f6b6290384d95a01fdf4d35731c7b542085766bca05239766c24b3823a7d3e", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxjailbreakatravessarpare\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49e9819c5f9c1eff61d064289d0ebd8a4d53878ac1e612d8b0bdeac1c7721bfb", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxjailbreakatravessarpare\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d07fb1772468010b63491d2ce864556447f58614a6e62364c97d4347f9152b7f", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxjailbreakatravessarpare\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36283724a6c5eab0918cc554ad8eefd4cc2a96d497555555dd03b1a82bceb7fe", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxjailbreakatravessarpare\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d50858321dd600f85df7970f6d45720792ebbb954ef3fad6b0ca99e5d9ecc070", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxjailbreakatravessarpare\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abb1b194c6411e6f90f5ae7e9663446316029b43b28e3537ddda21158a4b3653", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxjailbreakatravessarpare\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d91f3d4ad7c881763553c57bdd00eeb1393b45ef29e4142d70397392867b17aa", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxjailbreakatravessarpare\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a78e9cb25180109d9b005daae1cae462582dc07b5cd06f4e78e59c99d08b5a59", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4e458d7d8f7b22cefc690388998eafe0ddc931ee5fb2d00ff55709d042fc70d", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cb72caffba9cd0ece626b42b09794f160271b4c0d0fe13f84add996c3108b88", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d825f80a39394baa0adc2a5d08ae57037f4162b14b71c31037e32f1080ae23ce", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0928406f5c0704734be2679c10aa21b1761ab8fde97de29032b939e80e9200d4", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53ea9926e2d79d2e0b8653116d7b90d2e51b418c60ff892c70303cbaf1893c61", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da184250a780794d2ef0dc5314449d67d28f540ee665d789e55478f6d7c45a7e", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71940d800f460d9962210d6a7d54326720fbe5334d747be0e331a0b932150253", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1942fee0ba57081a1c347b6e66dc5de8478e718bdc7d42a31c99c2afe93c29d5", + "regex": "(?i)^https?\\:\\/\\/howtogetfreebundlesinroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eda6ddd9c1ea5692895a76fe0cc839261100500379675d9f18f96b04075de0f8", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51c635a453d612cb41f7ea6e95039ccceed643ade5bcf491667a96ab473d60af", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edd13825cab3288bf98d916a1b3f222d4e4681108431605cab2c7662c62df5e0", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "136019ff7ac9fdff01a486e2710b602f7854374e011c4e952c38df8c2f3522fe", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0582267af039b37fb6d62d410d1f2e9cd15f3918bd76a2d00202cea6e2a91273", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6659b0c02c16999ebd23e4a7677df2042f9c40127b057e934af5fab4d4b03ee4", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4761b62ef978dad221f85b1e6798fde952a8464455be4b626607435edb9bbf92", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9517228ef1dcd9bb74dfad27f4a6038b0f0a251abc263e4fbfbbebd8129feb4", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca45a48a05548e43d55098a195f16e8659899fcb2fddb27df3fb8c73f57729e", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01d5ecad2b888ca5f068d4f51bfad0ece553f676d7177a3973a2adfa68e62b46", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2182d85b820533af1f7b0b7220b49c3c9300a3c7ca434f56f010867c516fa76a", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f91ead0b9b25ff5d8b8021b1a2f09e1238b1716b44f55b7f5fc53cb87d66dc4", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82defa3c597f6d67fdfdf15b53a2b3d2af75a3fbb2735c2b372d5a27ba131eef", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d9518098f26dfe1b93ffae03154e05911101917f18803859462b6056ec2e32d", + "regex": "(?i)^https?\\:\\/\\/free1wordrobloxusernamesgenerator\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08009b79468d2f32c674c1b867c4c952fb5364245d5587309f1a88fbcd046eb9", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6e13f3b2deea43948d641897f60d5ce13341ccf80afe53b62adcd4db85f60fd", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "debc98b499039c81163573e7ae085dba385cfa4c7c20bf93188d4e207a637528", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bfe0934235fbbf18f5fada0796352aabe09c883d925f1cf1139699646b36298", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b8aa39b3bc12d87c8b5c2c8731f981db1f429a4160d36e59336b2282a2ac768", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cde70b0220b39408c6bc1a36fa04f70c31557688c0bac2d20162bdcbc767acc8", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25ba7c6345ea6b8ed257a82a947b97f4f04c4e7b24e575b425668b7f92e05466", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cb0c43ede71e4c2ea98cb013420c232a1daa223dd30d4adcef7fc0bae6de26b", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7325f1ad595922063942d515d5f5319a69949f051f4b773b36c0dd1ccd7c1592", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13a77232018a96ae04354a3b23628cf3c543376c9208e8a5f6c3b7c184e6114e", + "regex": "(?i)^https?\\:\\/\\/hatersgonnahaterobloxdecal\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b25bf2d046527dac8fbea5277c2f17d455b740ba9289eb61096f917c54c6428b", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "becc2ee935c4ff45a5c4b92a4c2e071cc2765ae66fb99c266639f833a6febd98", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d326a06b40bc0ef7f680fa6f6b2c625cf14d3a8bf379ddfdddefc11154ac13ec", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "287ffd2e3119053037a52d428caf643522c27789b9c297bc7f1f3400be050d3d", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58b279f10f51922c2e938dd95cb7f22006b1eb77e625c361d4c387cf015b0057", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d70abb7c0931a807c7fc6b138d0db60d3236a7c441bdba831dc2af15e3843587", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d476e13655820eb0dbbce2d2c4d1d0b261a254da8e4e2353cf734f8e24ffca22", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cdda2a5c0c69fca9e6131d865a61b75df12f271266ad6a3bd39392dce9e1dda", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "628cf05c422293c5093941366acb586a11aef21a4bb4e8aa1487ebf5e85afa78", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "381402323c724171ac2fd394c781e67198212a52efa6554533f1fb5e71df75f0", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "302f41c07e30a91d226dd310618eb07f4588c8dbb9c7d8b0be62593fc0dd9b86", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxfivenightsatfreddys\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0887168249f3c24dded3d6e6a348f97b9d125da8731789ecee0bc69172548187", + "regex": "(?i)^https?\\:\\/\\/robloxfreecamexit\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f59a931aadf6a4655156be29685b81c48b7ea32889c8bf88e3cb5512d7047a6", + "regex": "(?i)^https?\\:\\/\\/robloxfreecamexit\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "593d5b154dcc617e97b0e2ba0571066cd56d0151940b8285fe9a2baf5da51dd4", + "regex": "(?i)^https?\\:\\/\\/robloxfreecamexit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae94868bad113a3600eeb00a8966f16d68ac88cb6e1799463590ec3b95743147", + "regex": "(?i)^https?\\:\\/\\/robloxfreecamexit\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dc6f5dc31acb3ce6e536bf7a62f48c18152ef94d217fe8ec0c2c4ccc2b6d24d", + "regex": "(?i)^https?\\:\\/\\/robloxfreecamexit\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d0dc4c0a23a50c0e35e80f1a01b70a043e4abfd49a85aef16a4d3469e7823c9", + "regex": "(?i)^https?\\:\\/\\/robloxfreecamexit\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bcc3019cf17200683dc3bc0aefe4b4e3a2c127f6bac66c13a96ea9bd53c5d43", + "regex": "(?i)^https?\\:\\/\\/robloxfreecamexit\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a083533b52142f0c124d350e31409e92895713b7dbd7758f465831c4522b090b", + "regex": "(?i)^https?\\:\\/\\/robloxfreecamexit\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19828215310bfa1fca27f5a7ea0fa2b9d7fab1287c6697a53396798f5a4f03b3", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "960f80295723713dee4c36dd438ba0e49eb81e80bad8bf11c17f08e1fc9a7509", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ae652cfa77955fd9af94a75c79e627e136377ca412d3eaa8a3e50feeee95b6e", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06251de4010f0284095cf56de0437070bfea31ca47af0ce983a527082a0845c1", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49aa8fe3bc3c12a40d2e6c733e660e391508d67d100ceae3a464f8b1c36df9cb", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bf836b36ad8a9df4ed9128b4dc77d409509d69582fe0f4ccfb597a8700f5b35", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e115fc0ce07cafe3d0397197c461206f7ce77524969a893560bbc38bcfd815a", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba21ef0886ae38e838da12b4078fad0f0ba514b406fe435386ab0d5bc04f9eb5", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e01ebd98882154c555a775b187260623d530e9d5965ba469929ffa7fc29cdd98", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd19d96d063c466f8c79367e9376993b90239b9e823409816224d54491eeccf0", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3380013cbcad8695ca1c47f215589bcc3f7c729b3fb8205fa0689858c7bfade1", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b5c593e401d14eb485c025dcd51e36c39186689a38d8689bf288ebc7dfe0de", + "regex": "(?i)^https?\\:\\/\\/roblox1000robuxal\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68deda73150cd254e4cec26a1b10d5a1808da5a0e35147f280d37a5ac0a84b3d", + "regex": "(?i)^https?\\:\\/\\/comoganharrubuxnorobloxapenasjogando\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "718a5183d8ba5ef4eec869012f4035523a9243d2d976bd30b876222890e31248", + "regex": "(?i)^https?\\:\\/\\/comoganharrubuxnorobloxapenasjogando\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "031fbc2566f24ef675804172286daf152cf5bc3969ee7ab89b33f6663ffdc421", + "regex": "(?i)^https?\\:\\/\\/comoganharrubuxnorobloxapenasjogando\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f8954c5e65eb73aa8e07234f288ec14704eab7fce2b9344812d1fb352ff8467", + "regex": "(?i)^https?\\:\\/\\/comoganharrubuxnorobloxapenasjogando\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "234b4c1679cb02320a56794f3a793a1dd7400e08b7c268d7ce3ab36808dd35a5", + "regex": "(?i)^https?\\:\\/\\/comoganharrubuxnorobloxapenasjogando\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "018f133e3ec59c11ac8d5d9fe537f3a06477f489412ebdb4082b6fceeb8ae912", + "regex": "(?i)^https?\\:\\/\\/comoganharrubuxnorobloxapenasjogando\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc8ba9cfbac8910eac6cb0db6c8a0f3a8424e7febfcdc29fc72ea64082173438", + "regex": "(?i)^https?\\:\\/\\/comoganharrubuxnorobloxapenasjogando\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf849f6d4152cd5032aadb8a0e09f9b571cf6385cf942abf965464d2c8dfdef0", + "regex": "(?i)^https?\\:\\/\\/comoganharrubuxnorobloxapenasjogando\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dd6a611f9dc3b16de3bc007309380d3f746d9751226047e79bde4a18d3b9bcc", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47bea9af17e720773756c63000da044efdfd6374e7b87e52cc17a026fe4a073a", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6d7fb7d00df85139add8da09b7f63dc0164f1aca935f0f8468be9add33dba6f", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "183bda67645f957c5551c970c8b8440769d57f07520c40be331403af6cd469fb", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11de4d4001b62d1897347422c4a3d3444b00e5702cc59c0922432891b5ee5ebf", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dc73f0c6c41678c9c9c99c70ee30da1ea7002626127ba620752bf7d8ffd9f03", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "913bd304b1614ecd405ecd6060fa5f769702f862d5dd8a12db5b9eecca74e8a6", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11d1dd06b8eeafa63864f38b9bc6f6b800ba5b2ef83b74826fae9dfd51d426c7", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c73a33561552a1278952073d10fb282ab7434cad6a5293c3dfe15ecf4878e5d6", + "regex": "(?i)^https?\\:\\/\\/codevacuumsimulatorrobloxfandom\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3829915b506d15f897b989740c66dadbea3040dd062de95d95778a84e512a13", + "regex": "(?i)^https?\\:\\/\\/robloxluaexecutor2021free\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1eb845cdc2cee3d3fbc995056137694c908086a82cba21b6930cde7b9c5bd465", + "regex": "(?i)^https?\\:\\/\\/robloxluaexecutor2021free\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f7220875402b054230a8629acb71a1b70c1838aae7e05c4bc59b090a823c4eb", + "regex": "(?i)^https?\\:\\/\\/robloxluaexecutor2021free\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c89af746cacabdd536ba09ba316c26d525542ccd84c59288aeac37a1334ba25", + "regex": "(?i)^https?\\:\\/\\/robloxluaexecutor2021free\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "022ee06cd6efcdfe9257ea20fe32a00fe780c48b39ebb14b832cd7f2a0ee5600", + "regex": "(?i)^https?\\:\\/\\/robloxluaexecutor2021free\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3d75167d8192bbb989433324bcb4c296eea176bbaad8eaaaa4720ff372529b5", + "regex": "(?i)^https?\\:\\/\\/robloxluaexecutor2021free\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1165c145f243ce62d2e1b925415d18c8a73fd1d2df46997af5f687fbfa50007e", + "regex": "(?i)^https?\\:\\/\\/robloxluaexecutor2021free\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "279febed5096d96d84f1408ed6478cdf278beba3f8efb755a6d1f04f7ff0fe4a", + "regex": "(?i)^https?\\:\\/\\/robloxluaexecutor2021free\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0c6c1fc7c7beb363f7ff519dfcb916bdee0cc02aa808b731cbd9e531410e230", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparkourtropical\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "900efb92b160c938ffffe22315c5d23b0e8dc041f25f36c96dbaa28658206bc3", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparkourtropical\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7af6436d7471de238685f8a1c16c402c97944e97b7e15dbd8a57b928a27e0d00", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparkourtropical\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76edc11affcd4183fa895121116f2ea1bcc97432810e04afbf53ae60bee3ca1c", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparkourtropical\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beaa4715b1145c635710dbd6a097c573bbfbfa736b60b153ef43737aa6abb6fe", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparkourtropical\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70988a629b309a49aadb4745ad019e0f6811f502c775ef5a172a842f61211055", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparkourtropical\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d63564d76290685b95914db350815566576b1ef85ffc51c340cc41e6a3a21cbf", + "regex": "(?i)^https?\\:\\/\\/jogorobloxparkourtropical\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88805911778f97f4701fb4b4f23e67ebd9d89cbac4dd78d5348672c59281edd0", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2444aaa09a618b1afe847d4ba70fb2c5eb5417fd5fb11077423ecfe896a15fb5", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a9d6b1804c2c6456b9520fc249268851b6987c1857afda61e48fc6cc9213754", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00f9f61911586b275e3585f3df9baa3e019cc92446cb8eee6bb46e2b6398ae60", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fb8a5259117836a6b602de3ac8976748e6eb3557e4a2660ac6325883073e578", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0c2266f1bc9fff1a25e60fb12c9b52506906d3dd2b3781878cdb776341fb017", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d78c00f5106b069cbe03721daaa2fc4cd27ad2ca9dd507c4eb21474eca7fdd3f", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10f13783a3f8b3fd6d6578ad832e431335fb7e4a7f8c3af75e66c9072a94b352", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b35a397b92430395ad4a48256023d839bfaf68f01f2c676d5a9f058d01e03ee6", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71618e7dfaeb8705dcce69dcd6a23228d163a2ea196b5e1e36facc898dde7ab0", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31bbcd8fac4039a458e5c7edb406b2982766a7072ac0b008405747cd3c0770a8", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c383bc69273257ac59857e1a1a34f7450f806a488f0ca6de4aee846e6637e0b3", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d825be74de03cce57e9fb749e2357808c9310f7d58dd3266e4f7a68eb8c0af", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "098f69770f94ef3ae4c8e0576820d8562a882f84dd9b111c1f3f208d1fe76a9a", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e39b9f3d39168fe7593de428109ecc0d4d592602a14f8f80387e5144915082a2", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d9333d473e4c996e147675e13c176128f677d244f6d95826faa5d95dc3a646f", + "regex": "(?i)^https?\\:\\/\\/robloxzergdecal\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d850acbe1b1e6087c66144d3ea5f13186f097016464e7915a634c8f45084ce7", + "regex": "(?i)^https?\\:\\/\\/megalostreaksonginrobloxcode\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f1f577bdee36e27000ee6098ccd916e4d6a3121104541ef5a30e659069036a", + "regex": "(?i)^https?\\:\\/\\/megalostreaksonginrobloxcode\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ab1fe08f60cffbf744ee804151773361f249c663365832795f5248ade131a94", + "regex": "(?i)^https?\\:\\/\\/megalostreaksonginrobloxcode\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d407e3460b701c98566358ce2c1538803fbda2008c74a3cc9dc2fb8208c79666", + "regex": "(?i)^https?\\:\\/\\/megalostreaksonginrobloxcode\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "483a8900fde3b105281af2e7bac23ef902f300a9f74b2c7e6dd0937f7394ab69", + "regex": "(?i)^https?\\:\\/\\/megalostreaksonginrobloxcode\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "979e2f98b185dfc3a5ebd49e50ec1cadef0d4f5802819682bcd669ac726552bb", + "regex": "(?i)^https?\\:\\/\\/megalostreaksonginrobloxcode\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99bc62d5e9342055f21a332cc2da9000150ae06eb21aba1e84c9d4d10a141489", + "regex": "(?i)^https?\\:\\/\\/jogoslevesnoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0d1375be8a67998759c79ba0b4883d92fc9919d161ea36cf2dc96b0ddbddc3c", + "regex": "(?i)^https?\\:\\/\\/jogoslevesnoroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e7ba99e4d5ee570e3f47c05262565db8845aa7c2f048be0620f1f8bce680592", + "regex": "(?i)^https?\\:\\/\\/jogoslevesnoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c10905b17e7269d0be203a29c5dddf433878b9bd7ee488fe8377e83ef55ca4ad", + "regex": "(?i)^https?\\:\\/\\/jogoslevesnoroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bb33e66c16a086ad43f4edecb3b8e2fd910cb378773019b12286e4aff78ac8c", + "regex": "(?i)^https?\\:\\/\\/jogoslevesnoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfb98264b886d4c657b1d971c997ac46959ebebae098f2b2772ea160261704c1", + "regex": "(?i)^https?\\:\\/\\/jogoslevesnoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5997af4d6076b91608aae377ecc144ba9942dfd4ae78ae8d2d0d52652c8c8cd8", + "regex": "(?i)^https?\\:\\/\\/jogoslevesnoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40ebc2d53e806845a73f4babe56eebc41a6019a9bf955b1e832d3ec5c2d23811", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a447895ed4783577c29aa01de433dc2c19c18a60e2e62e0d607ee8e81d3bc49", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54faf83e8f076f8103937677e74b32696f483139c147f353989ac61e0aabc2ad", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47be0c4829f64535653d38d075c3f6f0bf32b21dac864b57f4cc6e6d981f072f", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdc525473bed9dfb33f3ffea5ed1367780ba55f9db9f597f4edcbc7a536e4aa", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dd0103d961fd5bd424d5714b5c77636148e5a8a8e2e0839c02fed3258752ecb", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0fbace7b6dfbe4b7b94fbce840cb7b562e4f7276e32a60abeac618cc1c88b6", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37d0e50cb922ddd996ad6fa6f49c661a708a27e098a3513c6c4f4b93d33c8d21", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2930466b1ce136ebadf4fb557304b7268c7dae0159312a3c303d419fa4abb9ba", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "864cb45f1e09ae0e2362a69d51890d80a62ec85615de9fcca82328a3adf23193", + "regex": "(?i)^https?\\:\\/\\/lvl7robloxfreeexploit\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4af4819feed9ef0638082bdc035ba6bdb491f75c9d947180d0aa0d9ce6811c2b", + "regex": "(?i)^https?\\:\\/\\/untrsordebateaurobloxcodefanbdom\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f4def4b87a8e4bb4ec116c89d87b1d35918d638f699313a46cec88080c2889c", + "regex": "(?i)^https?\\:\\/\\/untrsordebateaurobloxcodefanbdom\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9ebb359001b1d5b5ba99fa73e244a21ede025fc89db0fb24b8afeae910006cf", + "regex": "(?i)^https?\\:\\/\\/untrsordebateaurobloxcodefanbdom\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "813c965869a91971a31ee9ccec3a6881d29126f38a88e2c4e19840986d632666", + "regex": "(?i)^https?\\:\\/\\/untrsordebateaurobloxcodefanbdom\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbd006972840bde014efbc8b1617b503ad5315569e218105774e30983bd48834", + "regex": "(?i)^https?\\:\\/\\/untrsordebateaurobloxcodefanbdom\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f75acce086c4069e96d21f7bab5f8bf45e72adc3f9bccf3870b40817e7944d4", + "regex": "(?i)^https?\\:\\/\\/untrsordebateaurobloxcodefanbdom\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cecce56a476b04097c972d436c84009a6411a9f2d4c5e89d74758dd22aa66530", + "regex": "(?i)^https?\\:\\/\\/untrsordebateaurobloxcodefanbdom\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa810cae3482231d782cd553e1c584bb67b47951b7d0e87c4cdf6995d19dc695", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxstudioem2\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67e15faedb2081595c5feaf191b73bebad0c0b92587f626ceb266b7ff09cae9f", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxstudioem2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c5ab1dd806f8dd63f17fd621dfd85c05660849228468d7aa7b15565d05b125b", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxstudioem2\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95db656086a8d121c606fe8a449df1cc85ba0aebeed0222e6ab9181a98e01355", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxstudioem2\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4628d112c9bf83dac1d1baeb185bdbf66bd902bc837f229251af1515b3fe168", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxstudioem2\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3af5c81aa80b76d8b8664bbc7a23a79fe49b067257a1b60160fd73e3a15d54c2", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxstudioem2\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcc646a1127b48e5515b0990f582b35a48fc190784b1ae1d97645ada40cb6d5f", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxstudioem2\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c3ef6af1af13ab5a59e50216af1fa42623b1987bfdacc676edf1cdb13d69c4", + "regex": "(?i)^https?\\:\\/\\/thomasmc\\.org(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db676fd6ed04b211410665ba7ba77f45b10f103e05fc8cd164c1579d161a6d6b", + "regex": "." + }, + { + "hash": "3b03a0295df3a9c574e17d6961e3b97e3ba54f929aa7e783bd9f3acf1b70c4df", + "regex": "(?i)^https?\\:\\/\\/facebook\\-security\\-page\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3639b1fd666e6aa865036e448d8f2062f6959486e2b71784f28d0ee9e598c597", + "regex": "(?i)^https?\\:\\/\\/facebook\\-security\\-page\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c0359ca18b1e9d4c44a2a0b5c4b673398b9dc178e137a8701c380b48cb368d8", + "regex": "(?i)^https?\\:\\/\\/facebook\\-security\\-page\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d281e2e036a214081aa6bd3d1624f2c2bc56db7134fa0e6d884cf37464561dc", + "regex": "(?i)^https?\\:\\/\\/facebook\\-security\\-page\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f628d6fad96989f4c4207dde79088da5346d5619dfe6a0e6988979bd7691777", + "regex": "(?i)^https?\\:\\/\\/facebook\\-security\\-page\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63ad3a851d78d792c905bdf6dfa346d90911f0fa98ef6e49c1ecc85770159f70", + "regex": "(?i)^https?\\:\\/\\/facebook\\-security\\-page\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d16b553d6a346be1d0a7006c9f80ce698a93bfede34437f035467be4adbff3f6", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6bf04776dccadaac7bc0e9345f3018a6aa8bd3631aa96460e016fdb65106926", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0367c70447f4c8c9f6923dac36acd920c872db450351f766935ef4595b3f6c8c", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "082c14c704dbbfd0014ef2aad7347e99ea6aa558ff79d90d8111834a60333dfa", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1078c9ed49a0d0f15768bc3cf297a818f34e90f88b8ac2b2a3ddd931844df79", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70849533e29f055805c2a26c8a97440fe20b8157d88a68d60c659335f9703a21", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2c486f14c0755bd541c8582fc0273394cd8dfefeeae9886b96bceca5d5ccd85", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0beb71265d5d6a5dec95659b8275dff4e845f2c723649835eae2efd3f56b8fe", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cabb9fcbc469867ba5b065c558e8071489fdd1111a7ef69e75e0187a9ecacb9", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc210c3e6a5065616e0969f7bbca0fd6d1b866b32c9f9597150d18baae7d518f", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bf904b6866810e2a5da9078c9dba271cc2a27c9477ae50f8f216041c07fd54f", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54dc166c9b91434252d79220f4320434903eb7c805bf163f4d7e9b537ed3a7f3", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc4b0032dbf3cd302ef475d40ca0a0c932238e721e05dfb438f09a2cdd58d5c9", + "regex": "(?i)^https?\\:\\/\\/howtogetanyshirtonrobloxforfree\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9446cb7c345575246a6ff71b64686067ba37bb0683b822d14eed408ec46136d5", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09bb70924c877ac07c5f7cd8ce26dc5c850ceb736e57a41e5a0bf921d196e8b3", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05fbff8436a59de66b7fe5f77649a09b071aebcd821581e4f630f48d2ba88c33", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29641bb9a9cf754abc1e8dec9b3d43cc30f9ab3be42be3c12b35a9328a06108b", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2297d01a72eb1b4376284151811a797a3eca22edf49ac0d703912df49f615529", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02c01423ab2b63192f6ef026b4a63751db464ff3502308c0e9aad8be5b0f6200", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98087064daba348ee0d3a59b0af4f44b1965e03a62edfc9a9a2f53db715aa9fa", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ed0dcd42a156c6b859f8d7513a404008d20cc58aafc3d9e3c6e48d53601aa80", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3004aac34a22d95f022c2360eaaba8ceca441d8352d610ad869dc85a52a1c5b9", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bfd88072d6dca5794b3112d0fdc1448963828be6fa6519b8bee51fc29332bc5", + "regex": "(?i)^https?\\:\\/\\/howtousespraydecalonkatroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff46a9de3ec9f590662ee8018948e4fea2b7e7d794c7fef467f2a70cb24cc552", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e7018c01974fc51b8c915bf2a149919017309cd189470dfe5b7e943c6f23f2a", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21eb0f209cbdfb17322d80842bf6e468c2611d5253e5cec0d0d16dfa5e749fbd", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbce1325236061b71b03e2d453c72ac5cfff2264e3d51931520486386135ed37", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "290209c85a4c8304ab23482e8f7ad9ecae5a354f22fd4cfd0fee3f0aa1b73e08", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd3e83fa6ad1f7d94d8f820e9fd02a6d0f2f2507f78ff0a4b3dee8934445d600", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31a6d8455e85d6b3c25a31ee2d138b6a8b18558ec7b5c5845c80b0670cb0fd9c", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5997e991679aa0ff56cf2cb728e982bf1ffb9fc7855637dcb946b3022d9bb31e", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d43eecbad9bb42adfe262f6c8e5975b6e8b75fe88561947196e285aef2821c69", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2d250af07809a42b2a12bd9c4456becd41123b593e280e86013ded9dd17565e", + "regex": "(?i)^https?\\:\\/\\/robloxhackprisonlife2021admin\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d02896da1baa6a5cbe01002434f254fd763acc355ec8bb8733b16859eecf9965", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Clone" + }, + { + "hash": "f3285d11ec71cbd7e48a7f33fde2f031dee1e1bfaa93a40bfac15bb00cf2ca75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fb\\-clone\\.github\\.io$" + }, + { + "hash": "f3285d11ec71cbd7e48a7f33fde2f031dee1e1bfaa93a40bfac15bb00cf2ca75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fb\\-clone\\.github\\.io(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc0cfa879f2b5289ccfa173da638288d64582348ad6332dc58b9f338aa0d416c", + "regex": "." + }, + { + "hash": "6168861e0b56ea361dbf35d4700db44da5704deb0f2d3a1c4c15cd76fa44977e", + "regex": "." + }, + { + "hash": "4e58c6182e3f1837aedc819844add0f7c9f16ac79107eec5c92e918ac0464561", + "regex": "(?i)^https?\\:\\/\\/dorobloxconsolehackswork\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a2494013e8b1d5158c5c98f8eba938f1588ec854b309056435fdb57795ee87d", + "regex": "(?i)^https?\\:\\/\\/dorobloxconsolehackswork\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6abab8c3f82f90618b977ac30babcd133c3bdc95f68b0602a1651f66def65aac", + "regex": "(?i)^https?\\:\\/\\/dorobloxconsolehackswork\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dca0d4c7e3f5176e3e0556c261f49a45e2916ca7e8f911849d53bf95040b0ae", + "regex": "(?i)^https?\\:\\/\\/dorobloxconsolehackswork\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a70bc50e14d26b00120a9d0276b25fec4cc2566e78e88319387cfb0288797a6", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorad1\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "886d7c73eac2d655141f57bb530d8f5a0e9acff403029edbbd5d355aebae9fe7", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorad1\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e73a5cc78b234fb94d28fba1a5b141eef775ae40196364e97820f6c669f7bddc", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorad1\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c7c0556c058cfdf67cb7d3de5c1c448a43931793db70e27aae5ec4c00601bd9", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorad1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a37d92347f2e5c982e5f608437c06c1e0e55fd14304439c5e0689ed2028b3bd0", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorad1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da7547e881abad78cdb3d7e8f0604e49d65ff8d00479eaf595946ad90887336d", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorad1\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b93b816ba4e61562666e8a07e05b835e372b12b79e9c463dbc964daa759fe3af", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorad1\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb9a6621a1bab84f2b409e0e796667e62386c4499c9f3194f016949840ceaf5c", + "regex": "(?i)^https?\\:\\/\\/freerobloxrobuxgeneratorad1\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d456574704c5d4edb8e6b61ae8af46becab6f1bd8cdf67dca9a6b66b5941d28", + "regex": "." + }, + { + "hash": "d9a06ae390eb675dc1584dcd5fae18344108f4ae6adaefc742e4e55b3ca3d87d", + "regex": "." + }, + { + "hash": "3ad17b460a9c5d28a26881d82d606cc43447d12a8e88e6fe881fe03e0b356ccc", + "regex": "." + }, + { + "hash": "94f283329f89a362d3ffe2844726b9dff45d02481873b444b7c13e94d21ecb84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook\\-login\\-page" + }, + { + "hash": "022ea1bfb68d80209678bb6635137f248a296531f792f19bdef409b7a8f7c5d7", + "regex": "." + }, + { + "hash": "0323df3b8a9070bd4d404083dd03ce95bcc56d2227a54ceae1dfc48c47a11ebd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f78c87ba41fa1ff6d6e075d9584bc7f15a574e43baa73a11900619f5bbbbfaba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\?publisher_slug\\=future\\&exclusive\\=1\\&u1\\=tomsguide\\-in\\-2620345246174741000\\&url\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+QmfQVTu7J49WyX88ETEXM2HHL6PhZL1coap37SwDZH6CTr(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f58fe41c4a63d839ece19edbc468716137481277f51c0d51f5ea6586cd999a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+account\\-login" + }, + { + "hash": "fbf672dd33890fb03468a07029ab2a12e50a2884095e1cd28e986c9cff009ee7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+account\\-login" + }, + { + "hash": "c78e0c40ba74b2b2df8b96e722c6958ba89555ba5613441db374ef1131b10a18", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "33114936a23c37b149d79df51a0c35c5c0d108318b7ea7451305b6f2dcfb07c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "eee44f836a441e8844e16b0e02fbe4d2b83e692b1fc11c759af7947843153dea", + "regex": "(?i)^https?\\:\\/\\/mant\\-bancaweb\\-cx6\\-third\\.azurewebsites\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77e334b4b324b302bfe54ce823f44cb313675f01c3b88106d1cc52cd9c184558", + "regex": "(?i)^https?\\:\\/\\/evinternetibaglat\\.com(?:\\:(?:80|443))?[\\/\\\\]+404$" + }, + { + "hash": "1c41ae925309c0f566afe7a438c59432a9d103f5db6fa647c9974c90d513f1e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d2658f5e001ed0ef61a5a977938f079579f4ac357af644a252214b15b3edd4d", + "regex": "." + }, + { + "hash": "7d203a513cd46f867bacad178b9a65ea8d09cad1527cdba6661e75808cc48d48", + "regex": "." + }, + { + "hash": "4c5b4f2f333e32e24543de30361795733d0535f7811acfab88a555820af31324", + "regex": "(?i)^https?\\:\\/\\/huldupp\\-lagan\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9100124b392d10e651326c41e2b1c86a90040aff067dde516cc0353abe78b9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Google\\-login" + }, + { + "hash": "ebd723e69adcbf298091a467e13212e26ddcb5bf2274b2d3cec0ff590a751636", + "regex": "." + }, + { + "hash": "a42f173a1f1fbccfb2dfcac818f22f1082af2c0a02b182510959ce76916496ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tela\\-instagram\\-login" + }, + { + "hash": "93b4893b8810cea9b7d1f0b4144f674ee51eaff1ce23b1f5ba27d69fbd8cb593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fbClone$" + }, + { + "hash": "93b4893b8810cea9b7d1f0b4144f674ee51eaff1ce23b1f5ba27d69fbd8cb593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fbClone(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b62d55dac955cac1ee4b6714e7a370fb62d60efa5caeb0269ca92884cb15d22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook" + }, + { + "hash": "442f24cf493a91b634eee5896b48120ebcd619cadcb45f6d33aae41f58150947", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxsemterquebaixar\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c85922feeabc27ce1fe0325609249c5326f4c25bb54dcd9b69667f33eb16ac6d", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxsemterquebaixar\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "addcd1364a30600f7fcb53e7004449eeee403c625fde8fe8567c2fe268495aad", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0706053ed07d1b09b643b3187f4cf24b67c5de030ca0ffca89c9a8a6007cbb0", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffe290aa53865f2d2bb5afd156dda0ece83d38aa2e740440ca7e1e8354b26f76", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca1a71a9c03713481e60b3c61a3ab5318336e8bdda5dc9326a20ebb95f274c0", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "845f3adefbd1976c13ebed67d8f685c444e0427da6ea4ef42e45dd375e7d8650", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "946469d33b6e415e2e74dbe55522e56b14601aeb9e77655aef107fc4f494abc4", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e7da35a9d0798b441dfa82d925a07e4211c6a5f07426c9403f0155d091de7c3", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1f147ae6eb1fa3a5f28fc6b7924565a160c8da69c198ffa82a1fa2946942903", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bff150c27e2cce0552be7b01043349d791749de1af2def3fefc00019857f2edd", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76d39b04b5e21a71e8f3187260ba0923bd19df0d13e2510c83d9cd017a9412df", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a72392ef39289ad1acae2dd660678a527f79ba39b4bdce93023d3e8ad61b489", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ec1f492399b6037df237b519f7c8b8be521f3f0396c06021fcfd9d2ebcf48d", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b32382d259acaeb9e1efd485a998357dd223907e99fa033e7a87a572cf10bf0", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6424448b8c368548ebc631d696e0c63538f9f2f4e64164a0f4967a1487e0b48a", + "regex": "(?i)^https?\\:\\/\\/contade200robux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a710b2c08393d70046897e34f544e609e22066daba61846a5a01e677576af4aa", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fb0f376caface41d807e0134d2b687847c26feb085ca5d518dac43cc49d646f", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "749670736369a2a74180312011d3d30c0eb141e191c46f34e5198f9ea896a68d", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "228e0159edb8271abaeb296607ae7ba986f037c1cb7a5c84f120b5757492a422", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fc717fcbe079b5cdac6d3c4275b9f924412e4f1259ce5db3758bc0effea0088", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8acd455ca7baf5c643012ace204f3d3573063e8a2e684cb94278e13a3f7d896d", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b3ccb584e76e2586c873d71bcc262da68be70914bb72fe80ed8267a89d94f6b", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15415b2b44bda91339dbb90c67d45e953f0ee364853a6c5911b9b9b3f774dd38", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9ccd4f4cb332408054833765c1d1eb3c228f4a14c716541721c64ad6abc0f47", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca8cea3ec8e033a98bfcab4b3cfe386c557496b58ec2c1d56313f00438f58ee2", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f27a7dbd428b63693a00b7ffc4ed9e6318de991e04ac9aed856191938b24571", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd7da6cb6defb68b300d411dfc8fb9e3e9b1f4cb73c8ce393979a9da6286f3da", + "regex": "(?i)^https?\\:\\/\\/gfdgfdgdasasgfdg\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8a008ef679d1da4bc7963b157b5598c650cc5555f9c15ef07ab60de1c9f8ec8", + "regex": "(?i)^https?\\:\\/\\/sedfrgfrdcx\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9705e47da6b64c532f9d9617de4e4cfa3f58b9717aa44aebd98ada47f9019612", + "regex": "(?i)^https?\\:\\/\\/sedfrgfrdcx\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b162ae90a640cf0d8bf5933977df2abf97ef08610e48b92f0de7f94b4e2a9143", + "regex": "(?i)^https?\\:\\/\\/sedfrgfrdcx\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f43b56f2e781eca081686317e1fc6752e935b77775155a1784644955225a580c", + "regex": "(?i)^https?\\:\\/\\/sedfrgfrdcx\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4c71b4940a0027b9e4917f9353c34eee5b373802c5f70d793e96ffe9332189a", + "regex": "(?i)^https?\\:\\/\\/sedfrgfrdcx\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18ef22980fc62865a73a8e27c94936133e3261da7bdc416aad5c0fc744711ef6", + "regex": "(?i)^https?\\:\\/\\/sedfrgfrdcx\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc6a8facd6f114a950fe9b9cc55db325da0e91ecf25c0bc48aa3acd4005d8eb9", + "regex": "(?i)^https?\\:\\/\\/sedfrgfrdcx\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb29468c2114644da5cdb4b46f527a89e54d2b87053cb3860f52d7b73245b8e5", + "regex": "(?i)^https?\\:\\/\\/sedfrgfrdcx\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a0705848bca0bab22eaa13de9e52050b9d9de1d6d234886ef173945b2a8b85f", + "regex": "(?i)^https?\\:\\/\\/sedfrgfrdcx\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04c40ff2cd3999bdbdfa40af54cb0d276ad734dae4c1bf6c8324b4e7c604f29a", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dca8ea7fe960909918faba848c08fb71d2c25e4b167be820e0e2ce82783cf208", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "247853bb56dbc45b0ea01e859264037882943532f87eb0532bd6c9638de8b6f2", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6168d30b4fc1a386ed38b3322d350ea948ddd33d075969b0c9eb5d7d0f0e9964", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bae3a451dfb0d6b4d857350d4a14ef546e473e80d8c1e6772126bd35616bdf4d", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61920a5839a3de7c26dd228b6ce7278cb009c5ca30a2ea3075d2fbacef7c1359", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95163d32cc694a7c09e04638a501a3f4848a74f8ad910784dd2c7d63e2749601", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b7a4c883149cd610c0584c0971aa67fc76bd8e4da039f5f3f00427b175e9b79", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "737528fc04cfaf1dfb0b50364ebb065c6a455564dc966ccf5b525cfff45fa0bd", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7a0d13d2486ec9a82f26a3b406cc2a11f41fb3f59aa919f89bae65feefb9981", + "regex": "(?i)^https?\\:\\/\\/sdregdrfdcczx\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c82919333a7c796f700baa427e02e2dfbf4c7ec42df0ff8b2ff032c98b056184", + "regex": "(?i)^https?\\:\\/\\/robloxwolveslife3musiccodes\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e392264740f55c93d1c3d484fbe7dd7632a568e908bbe3647304444f56b4c1c", + "regex": "(?i)^https?\\:\\/\\/robloxwolveslife3musiccodes\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "957e6c37a58f0123dd7ac518ba9460cda685f45b9e7504e639eeaa74b89477d9", + "regex": "(?i)^https?\\:\\/\\/robloxwolveslife3musiccodes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05faa043f1bacb81ee3832a0075932af15e68a092c7a5e6201a64509b25086a7", + "regex": "(?i)^https?\\:\\/\\/robloxwolveslife3musiccodes\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4994c324c384b2fd361726ab5117c2844163f53a0794f516753dee1f1f8743c", + "regex": "(?i)^https?\\:\\/\\/robloxwolveslife3musiccodes\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90632673ca6e181d2a9ae9a3e88407db5efdf22ab7204511ed1d0b4bbad73277", + "regex": "(?i)^https?\\:\\/\\/robloxwolveslife3musiccodes\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f1fc208c18af26fbb649cfe897da96b097ebd6abb5c15e157245bb9fd526398", + "regex": "(?i)^https?\\:\\/\\/robloxwolveslife3musiccodes\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c768d7655173b25bca12b469af7a78f46afbfd5df88892477f711751ec97f129", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+and1eqd\\.html$" + }, + { + "hash": "165f4d8b1fcd4af2697377e2cc2dcc191e5ffdb6b3a58f9ad6df21a45927c6c4", + "regex": "(?i)^https?\\:\\/\\/robloxaooni\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ab0c290cfad212ebb7235282f9a9ad23ac29ecdec261dcd5fb5444c21258f2e", + "regex": "(?i)^https?\\:\\/\\/robloxaooni\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3834f0ed9b171f7440e5866096885af6c606fb706eac7e529941bc89d4ae7b4", + "regex": "(?i)^https?\\:\\/\\/robloxaooni\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2031805a0d02ada0956b572490117bf1e8938c5b13c29322ce8df508d52b7bfb", + "regex": "(?i)^https?\\:\\/\\/robloxaooni\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6ac158c52006dcfede966a96b4ed59086ad1e9400f22aab4f7f0bcdc6619d2", + "regex": "(?i)^https?\\:\\/\\/robloxaooni\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69c197d14b5cc4af5a9e6e24e20fde9921312a81c1816cba53d08dda210ef69c", + "regex": "(?i)^https?\\:\\/\\/robloxaooni\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50e1fa8138c429727cc576c08ddf5d7224b4a64d5c3c502164f7667e2fdd8e49", + "regex": "(?i)^https?\\:\\/\\/robloxaooni\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bcb46764530c70eb077ff2c7332f11f8d131ba4c13e02f9fab6ee848eb423f", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da1640162f515ad8adf3a18142655a3d41a9fbe91265344dd72eb746099b0d04", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72fc3ca2641921d37860dd3e2e1dd060d5fd4deff8babda37e724820b763ea6b", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d4658a616bc6221699cfc4de585e82a72b59f7e4fa5f1a2bdea7c332c437f50", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e334221539918e35ecf2f14891c05bd1586cdf7baf774b694f7280cf7544a36b", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd35352ad84d297b2e331a403f1c1310d53eb7cf482f66e4f0a8ba2e7db8e9ae", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4dafd5b53e24337d5fde8adced86b56e594c43c7b468e5d03c138710affbe9c", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6edb10b9481a83a27d30aced5a6d73cb20ea9848f2a185a805e6898a86e9b442", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e52279afb32d90510c63dc0688a3b1d2651704ee2437b7d0527f2966cf26dd5f", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8ef204c15dbee5bebd1037186aff21a616ba75c39b1929606ec9ace20a57b58", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f57273f67d62999ce78975ad9ec65ca39b2f48a96b77e40df7addf564f329197", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f6fd1357307ec2535dc43728f24689bd4ae5238049b6f7000c8464d9d7f5009", + "regex": "(?i)^https?\\:\\/\\/roblox524\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b4550c1d6e011802c9d86a00a9712a9823aba782a016364b6a64e78934286ba", + "regex": "(?i)^https?\\:\\/\\/roblox524\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cb0d91386c13d67165d326dcd190a745aa8d2e40a418b8794c10c8fb739f9cb", + "regex": "(?i)^https?\\:\\/\\/roblox524\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86f6491a78adc533c111ab761d840c75cad4d2d67004fe882cb744097951172f", + "regex": "(?i)^https?\\:\\/\\/roblox524\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20b6f54c22ca0b042042d139135ab52de58e5466bbb131db39f2921bd322fdf9", + "regex": "(?i)^https?\\:\\/\\/roblox524\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72784cbf4285c424ae0cec4eb06e2e8f6db5960e6d4bcfc8649fdd72946da675", + "regex": "(?i)^https?\\:\\/\\/roblox524\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e09365abefd0c38d2f8a51974942387608c43f7d087521e2e524ba6dbb8c9ed", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8be0f3a938d54f74d58868769fcd067f1c4218505a051fec8585b2588abfc9f6", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3fc98fd53e279cf71e4c5365c3786e85ca97072e891c81c5604ab88ce0ef8d4", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b34191780ef9bf57122698a6ccef27593cff899f23e032d437ba9e924e20b9", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de5ff6c34615c08755c63b9bffe1ad09abaff8f8653c7c19b90474a81ca6a788", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "052498541b6b23e064915bb1096d57720a3768dbeaa71998bd1c391245fe2fbf", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "021e6526b6fe147001cee4067324dc3b6a190b257d5639253f8344ff319b50e4", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82deab3a4590d639417360209f3a90cff65b2f57b14d7aea682ab6ab74b4ab08", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "390c896a60e419450285a8e5b40433b55d405cec27a7256b0607312e749b5f78", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd2549ac7693423d0bd773a6980f29a13aaeaffa11747a437174de89026c29c", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40af67d25e951da1b138a8159806546440cee2803fe3bf741c695b87931db681", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d1284cd038e653a654a4fb57e9a0ad68e77eca5ab5e738225effb0ad2ccdb0a", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f4d997715ae5797aa7dceb0d14f42edd65f01f4500ecd98c924d769ca52edf8", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "799a8056802944c6bbf0db4fc3e8f6a662bc5dfc8bab82576c425ce7d90d34da", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e439ab42e4c165faca6da55733ad049435a827b45841fd2cbafd8ea37a0d31c8", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "146ec4d99131aced082c36aa82cac8b8feacf58a9e369554def75ed6733e9295", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aad209179b6e5019e7ab7a0f1c1ed76bf666e46877e452a58bc161b9aee22a81", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dde04c3581de7277fc066b70e70fb1f4c1d477cb1396e43a1a8e84a4055d6185", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a744259fbbfd24ca4f925bb770b7918fdf496fb8353bc8375b64f6f612ec87", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d2a92bb32232b2744f6b5e52c1303c058a1dc1c78954368240b8c8e01962fa", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ec15fbc93d51ec76bd737f249fd8b0a843be64bf9bf3c067614101b2a7c56a1", + "regex": "(?i)^https?\\:\\/\\/robloxbloxburgbathroomideas\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c1063e3e4b89b71e077242f88bbc810627aecc3e56a7a700efde7b18b3e7d6", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1b86a38519439a414a7da62ab3287c0acbc805e13482f4680a4cc95dd678397", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3be3b928de302c6ffc8cb1e81b1e52394605d4e3b19c264600b496e507df0340", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b0cfaac80de046a16f1d4c3926ecf0bdb36ca24fb7152d5cd206cbb9e9cf5f7", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7259e85f5c81cbaf37c811554d1885e1f7c49908e2afae2f4636bb9420754bc5", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a824bf1ce704f0211bf0e1ca5abf46364777e87fd9188dbb6c5af43620300bae", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d5501bbeb6db2135db2ac67aa1cdac9ff130a94033682f1c97a9f18076cbe2b", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c97de28e8b29052d21350d9e39c9ec416baad1d84b0959d0514c570c007e90c", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "904b71080173ad385ce35d820fe8c03b50f0ec88394f3426579b652abc6cace0", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ff3ae556a9306ccd8a6244dd092bb31b22ab5f4957d12c43f58860366b0df82", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f526e70473695aefe62eb7a044a1acb767f11a93e710262a750b67bed000299", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c203aa0fe820d6bb46c5b936dbdb55a4a3545d29939d4dbd14abf2cc8bcf502", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2fe9d34537da1a4cace2843dd6dc7f5152d00f6d875ca6cac4f22f0aa3874b", + "regex": "(?i)^https?\\:\\/\\/codebokunorobloxremasteredmejoress\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cf5994b7bc0db889c96120178016553ff4fd16b09fd7c7cbd947aa635c4f063", + "regex": "(?i)^https?\\:\\/\\/up\\-halld\\-logiesz\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b2f6e3ecee935d60ceb67dd47d160964ea48dd4ca530fe2fb7819ff407394c34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix" + }, + { + "hash": "708420ce95987a35a93372f0d8a77fd6dd332a4f5e44fec86b2b6e42fbc3f6e8", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d4d09629e54789d9bc7c9ccdd89a79356cf037c83ba74e1b217215e24ae0574", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c2ae923869228578fe5bd3b737de01431767e68eefc353329d5b8bf3abf1ea", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "709ebc7b3f8ab70db7db61d2b70151cf19344a3a95181190bb793d0aa1735412", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ece202107ac74e3a596ea2e02cfa3302ce3bdf32beb66c10f4926fcc1183073f", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3d7c1d02dac097b21f34128b3930d1e1fb329707019637a6546bf788eb16000", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f82c0353c0d7d958bb8b9f0c9f35d83858770cf208521dc5be72ae96ac5e57c", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d47a9892867047a0a78658b77937193c443497589e40fc83cdad13f9a1ef4b25", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1efe0bda60c56363f1b61ee003c6d916258f849f7cff403b8ebe729711cec6e", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8535ad9952114152bd3fd22237fe934eda81551d621d404fbedf3cff25b2f86f", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc601e9d68251f4c76cad7d738d50873c31c45ff4ef23976e329e2c4b727810c", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "113787911d4b23531cd2c4e7925172bcc676da905b96270572e7037ac5800639", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce160931756017881d33f5afb47460305d781bd9a0e3cf80594aeca751e4df82", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "260efbb268202e460cfe518efa825ba50087857086bf2a52563411570c27ef07", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93b2b6d7acbc1e9787f96a44c1405928d7b0d17a9c9a9e3febd4565b4f839e74", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae26b9cf20bb2062f8de78532549905b784cd741299026f226a522496d98efca", + "regex": "(?i)^https?\\:\\/\\/codesgiantdanceoffsimulator\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c42a9834e28fdc21a56eb068b886e27a4bea23c7089184517454156cb162c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "914d47a4b6bd1cf9fd872628e675c5040936266f5a7f3ea4cd1dbed8548b952d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clone\\.insta\\.io$" + }, + { + "hash": "914d47a4b6bd1cf9fd872628e675c5040936266f5a7f3ea4cd1dbed8548b952d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clone\\.insta\\.io(?:[\\/\\\\]+|$)" + }, + { + "hash": "3265eb63edeb279500ea110ae072bb0be67d11de82b3d5d72bf474b565abaeb0", + "regex": "." + }, + { + "hash": "4d463f489b2c7cc84459b2e96585abc071b6c330a0d80bd235711e3c7da18fda", + "regex": "." + }, + { + "hash": "a8180b52a0fb1324f1be2a639e2caa30bc72b0dd812d406a3a136e4ce2411520", + "regex": "(?i)^https?\\:\\/\\/losmaukriados\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4a2e6a64fd13e158bccabf6173ed9195f3f9f30e7161b70f70b1a0162fa8d52", + "regex": "(?i)^https?\\:\\/\\/losmaukriados\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8289102988e3681fabcd6acc1e77193a95927ff9c9e7ca13da3ce8ca6bed52a", + "regex": "(?i)^https?\\:\\/\\/losmaukriados\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c3f4605e6f2b8b8231b6ad506b5ebc9200da061974fdb273272ec8e85542ba9", + "regex": "(?i)^https?\\:\\/\\/losmaukriados\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "431e0d6e8884b2d5db9a3138176e51f452e67951827e5643a7c0c90c4ff93c71", + "regex": "(?i)^https?\\:\\/\\/losmaukriados\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cde7afc0cb2ebd3b58c0239404acfa5a9579de871dca09d4046deadb099a6619", + "regex": "(?i)^https?\\:\\/\\/losmaukriados\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0b9dfcea6c96059f3b10a3df43ca082b7dec02e958ab215855959bec5a5e45e", + "regex": "(?i)^https?\\:\\/\\/losmaukriados\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "111ec505d8aa7b59d18b8a97b36cb9ab4e3656eb8a9d4dd85801c437292b0931", + "regex": "(?i)^https?\\:\\/\\/losmaukriados\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "552cd67410c15cffe1c093434d53bd8ef026bf2e1754186ef170b14221f0d2c1", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca23b20f63cda457647062e27df260e218dc705e4de64964af2da78b01b0cc0f", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b46ab334736ddc90100fd77e486cec4b2c4696a4593dc887b1a3c41589af2d6b", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "852465392f3abef04cd6bbfe848f6d1fb0704d5dd75647f0a2a4b4d0b328eed0", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1620da1a212cf1f27ef845a41456248ce96dc3a4e6ded757bd4137242999d95c", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5fe2bfd8e0ae415ce525249e63b36b3bc7931ef98f9e3559f504c7566f1e816", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63ec013d5adc34b63c12d1c7eca7c67fb61df4637cd681712b676db67adb4024", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce110a06fe8991268af0311bae37c674e90fcee92b65aee70c3f3f7881f57f05", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85eb58e7af6056a935a7aeeede4b018c82d2a87724eea57ad20141c02c8b2753", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a39c6067e1f7f90a93d34c4bf48f5b6f55bbfaf6e89f43a47c2b2df88408f9eb", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4b6f821be77930a31721add1bb7b7d7d345d3f328159546be35186d0e16098f", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49432e7215ff8068c77bc765914135a874f955fade8a3b915134e18c7cb2c566", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3190bc4d42fb92632d673b259cbdf6100ca9db3017c13b9cd8bf34fc215c555", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aac641fc7cd1394e646d4736a70be7451c818f990ad9630be5c101dfd35ccbfe", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86d37257850f900461c790803d96e314a855f8587fc79e3ef82b686c73eef4f0", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c954b43f7439c2e7840caac25892ef43d8f5b11ff90b90b6fc6a7719f8ffa3a", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6659cac29d9c9310cfdc868ba88a1962bd52ea0046eb1f556240e69d6fd05f34", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e4a6c537011af538a45236259fc9d66da598789819ce0d9da812b81802bfaea", + "regex": "(?i)^https?\\:\\/\\/eqfuck\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8c4071272129ddf0839beae61bee2f11b45a6b615755dd768a519a28f902fd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+img[\\/\\\\]+usedcar\\-2022\\.zip$" + }, + { + "hash": "d8c4071272129ddf0839beae61bee2f11b45a6b615755dd768a519a28f902fd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+img[\\/\\\\]+usedcar\\-2022(?:[\\/\\\\]+|$)" + }, + { + "hash": "844fa9df34d175ef3d39606c8eebcc01086ed5f14bb8c01dd8abae015e992a17", + "regex": "." + }, + { + "hash": "ca63dbfae3f4365139f831b86d4385316d0c432ee63be5e278bbd3a8ff7d0dd0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae1fb4d468aea58cec356ddc411100bd9a284188225a755cb0d37043223c0b9f", + "regex": "(?i)^https?\\:\\/\\/www\\.urco\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff75a582ae848138db91b23c98e3747498600ffe2f2cb93161b635208ff3f8af", + "regex": "(?i)^https?\\:\\/\\/khaosrobloxhack\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2cd90b2859cba8652e29d3f66900dc5d998bc7ffa800c558a0661f986931d3", + "regex": "(?i)^https?\\:\\/\\/khaosrobloxhack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c58cb95b20d4cd37018397e68236297d82849f8fc8515dff465ef7eba1f96b46", + "regex": "(?i)^https?\\:\\/\\/khaosrobloxhack\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6f67753e3210426a8a54b34b9e7c9385a415d1e698c380e0ed47be79d37545", + "regex": "(?i)^https?\\:\\/\\/khaosrobloxhack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86123f9a8504f6b84a4004aad19d52315b2b5169470531ffe07f25bd96368a18", + "regex": "(?i)^https?\\:\\/\\/khaosrobloxhack\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4cbd7dff9642aa6cde5442270bd9dc5983db349497a1240f12567f3a3bb94e4", + "regex": "(?i)^https?\\:\\/\\/khaosrobloxhack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a17647ca9e346182b615e0e45d1bd1b3a599eda1c83c136ff9de17ce34bac818", + "regex": "(?i)^https?\\:\\/\\/khaosrobloxhack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80c123e44c349b3399a8f51bb625ebc71a645df11d787ee6a27bb3bfa51c6953", + "regex": "(?i)^https?\\:\\/\\/khaosrobloxhack\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2344c97a910d665771526de6bb4953921574d6917c609df5f8252e228ae51be", + "regex": "(?i)^https?\\:\\/\\/khaosrobloxhack\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa61c4850bd74a8976d6ae84874091b4af19f6363910d82667720255b1ac6a8b", + "regex": "." + }, + { + "hash": "eb92da53983c3092a8326d7511de76c4566642ff026a53b51d62b0e9ce0d8738", + "regex": "." + }, + { + "hash": "7206ea8ca1cda7039ce89844e17f353be6660ec726b2c0df727671a98e1949e8", + "regex": "." + }, + { + "hash": "04d3a266153ab6ff3a83119cbfd5e5f6e642918b52713f553092d237eba1de4d", + "regex": "." + }, + { + "hash": "8a3639cb18c7dd62f74a107f54a0e8349bffdcf1c48907ee9b0ac8f462456e23", + "regex": "." + }, + { + "hash": "428277841ff1b4dcedee5b458119cf118b0f452bdbb10d602cfa407ad8c5e992", + "regex": "." + }, + { + "hash": "f8ab441f40c7258268423747bf0e19364b17366f447e6c833b37cffc249f9324", + "regex": "." + }, + { + "hash": "f5122cde5124027301e8057550af35aeab879380c2371d6c4a75f7ba673c7c4c", + "regex": "." + }, + { + "hash": "2b4b9fd32840b5a6ec64b1be6f9b112bc8b73be61c02f64facca736c25487c42", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c97fd521d94cbad30916056b15eaff4db6a503aaa94acf5666b5418b9cc53440", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e7eb6909747483ac7527ad82ce02550ec5e6bf6ee188b1f2ce104ba77900873", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a0be3fc5cb11f4eabed8d12a57ccbbf9f18d3d041fcf8da3655c11ea5154cc7", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d577cc6417a766aeac39b7988cfd0b33892c4f9bf8d39fa6f99a86040257aa40", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c350cbdb0bcb6d339ef27cc3271d37cbfb79184ddba6675877fe721fe194c1f", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "864deb0ff7a541705242e13ec74949e5f3acb352e24d088c3cb1fddfd2e1064e", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c5330ceac0294fde21151a93de3b2f7c5ad19c6fca1aaf7edfaa39d525b5394", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d859f47815f3e40dfe10f573b72149ad8d58a15089995b944cfff3d85465d4ce", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d94ab63cefd850d72b26fe4596a362258ca4103af416d0b76f8ce250ee3faa4b", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4202a8cb692d9f34cc2ad3598146a71c179fabffb1b9c1e54ec1d46320d766e5", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9574352b8f22ab59fae9ad7a89d61596dad9fe2edb01a1b5afed7bc3ba6aba3", + "regex": "(?i)^https?\\:\\/\\/jogosdeescoladefadasigualaroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3fa7bd840dd6d2df64ac409f57c819af64f6200020b229a3a974fc0aca24611", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fbclone\\.github\\.io(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2d48bf0962c3c850e003a179f13446489a5ed5aa2da3df5998e7e5671c7d745", + "regex": "." + }, + { + "hash": "0279e5db83b761c9c72b8fc895f2c533ae9100cd35fc85477f7fa724dc1080d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign\\-in(?:[\\/\\\\]+|$)" + }, + { + "hash": "06f1ae80edb96f0e936e614a0b4e5781570b7ad3ca563292ee34d1f071cb0405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+account" + }, + { + "hash": "27047d3aa105b5a10250a501ba7f3e048c0af181d5c129894f67e07fab311b61", + "regex": "." + }, + { + "hash": "4a4655e8e5c35f23718b998e174371a55bf1313a07dd1d6bb6cb28645ef5affb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix_clone" + }, + { + "hash": "e28f0874f3f7c867a1a8e2c3d7245828998733bf42b16e0979b51a0a9eed6570", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plugin[\\/\\\\]+en[\\/\\\\]+biznetvigator[\\/\\\\]+login_en\\.jspcode\\=0\\.htm" + }, + { + "hash": "c26ba702a721fe7a0f555565f14c09cedeab950f8c0abd1e46087c6ce0f59de1", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ff29620399682d0797872ffbdbe4832a10a287005617c80e936cffb2816b77d", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d1cef02cad4ab8390048b13bf863a1c61add1eb30435e58c6fb49df54db76ce", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodegeneratornohumanver2\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c832004a78d0455c06f3ab08a1d19f8b637eff2266f671acc40cf9cf5c68a8", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodegeneratornohumanver2\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7c577ac01b78a1e40754443d1f519615151e12a323b8968bb46b5fbc6612681", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodegeneratornohumanver2\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe91c003490eeceb9de9ea688d4573e4bfa71292ac54e5974552d13bb49225e3", + "regex": "." + }, + { + "hash": "e6dc243f1a552a5f4fb55f03b31d231ee6f0c2b9f36edd47784762634d92ba91", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe9494684fb04b28caadeaa9ba5f54a53498f4ae65cf18e88b9d89b509919003", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxonrobloxmobileandroi\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a283cd9c0a7841be89dbc9e0f7128071dabf0a65edbafaf954741dfa620285e", + "regex": "(?i)^https?\\:\\/\\/jogandodesmipernozombieattackroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49aa202d32a5f46a34827e25cebc18e24b0d8d8148d2e26cb848818172da51f5", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da8720af27967f17dcf47aa0d99f9698ec12a9648e6bb936653624ad563a10a", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b164887feb2e360b4bb9e56fdfe2a1b8b50d8c8f79e9958c3dab9190f981f50a", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07a9bac87c390ba5d6201f8b7071bd2696efab873de1f253bed7061df7a04101", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5a6fe45bdb97e308d052118651a5028694c43662ce1d2d9152a07ebd376e833", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26f0abcfdad807c0139ca638043021f21b2eb34534cb462e0f02b6cbd2835fd5", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca10473d65fa0434eef2b9d8cb51086a45f27944f18bdfcd4d4e7f5a6a312ca", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54e443c0de4a0782931afde869b50f81f553dd4b3030ce902343941a8612d766", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b42cd8cf440eb6c3a460b5c495a40d9acb58be0b2b697e0cf51b5318d35cf49", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "116fae4efcc5ca92d25257388a9abdcec83600675c300c6de56f80edc875fadd", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf841a02445a5bbe52f3a9b104eaaddc9385d71c13d9970a880cf463c1864d13", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c9e27a752daa55f5b043d60cc44c7af8e618f311009ce0d1ae6b8ad707ca39", + "regex": "(?i)^https?\\:\\/\\/pgingrobloxaccounts\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c3e8482c6f51f390cae92aa3177b88286e77433afa188ff2c04d1f4dc0b2f90", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa0b07c1977ef9da2afb2b499f407a00307be32ecba08b6f4f9cdc2a4d7b0042", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f87f321bac902817811559b8257e1c5e1492c1f2b77befd13e6369d0ebf593cb", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fbdd38ac625a1fdaf3d19cb42c9ab8377876573239a6b8fd22adfe1f27c2600", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bff4318100800e7b94cd2bfa5ef38995e37f02aa5c7e6b2c0d012010e6cc5f4", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8715404529e31de4348fde7d51cdf61775af7df4fac16b65bd78ec5bb7cdae19", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcd1ce465eb7495b940b97163b98aa796403bfc93dc90c7e3bfb206d415f97c2", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7c1020fd5bc9e23f079fc6d8c39793095d5e476664c9d61976aae455c831460", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96668f8a404a9f11fea41af0e36dddea5857dcc00130f0f05e4c575731419cf2", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f889b6d16a4603584a2ffc418ba3a6336257044a4cfbdd7c78839f8d7a78ea14", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5ef87191bc91e1ca351c1eb732736fa1b2d9b1be59021d5072234ee1a1d3483", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70629beb96fc9a3a71e2613343ca71bce14031de1ca03ae9e9d977aa9f274c3d", + "regex": "(?i)^https?\\:\\/\\/srgtw4tewf4rtg\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a09a0e06c99c08a2c75508ac1d26db30050985d50094ea865ea6c3439d62e1", + "regex": "(?i)^https?\\:\\/\\/robloxcardhackworking\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60d9441984fd9823452baf7cda2da679c1eef7efeb1c352c9a8fb7c630eb97c4", + "regex": "(?i)^https?\\:\\/\\/robloxcardhackworking\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a19941b8428dd3027529af059f3ff66e80dd74718c85093133e9510dc675e11a", + "regex": "(?i)^https?\\:\\/\\/robloxcardhackworking\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfe787d45c8e8de4bf728f30b034760da9b259f647486bca02e98e9c1e792193", + "regex": "(?i)^https?\\:\\/\\/robloxcardhackworking\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f22a723d255cd755931a6554ddb10d2cddc1deeb122489fb25b1c9899a36d429", + "regex": "(?i)^https?\\:\\/\\/robloxcardhackworking\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccbf48c3a2adc14f08cf0f5be45f78d6945778c0de3f63a1f2e34c87505e471e", + "regex": "(?i)^https?\\:\\/\\/robloxcardhackworking\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1be7173027a91c1e5ba8a473dd1311b2d2a0daddc50c2221be69a00e3056755", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d895a7e4b9376fc2ee1bab31fbd3735161eae7bbea2a723caf07379091d59fd", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91355b2678303891949c6774aa24d49f70a30a4d292e774e0b60ce227aa61519", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b44941840fa9210d0ffcf421b063a8837a0a925de21bb89f181a460a8645ef0d", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e19b56f9986b987b61e78561b7bd48150cadc6591165cf39dc3505bb8b9b588", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2df6ef807553102a5c4b8b966d784c84fce9cc763e5be034e4bf94daff63d3f", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99182870983947bad36875b04c0ffe756bc59b4a3130e8e3153bcf0daceb7b40", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a923ba12ef75e3081a01981206197f749a53bd4ca900bfc41183ccb043e38fde", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc3eedfc877de6aea5f04bb8467ce9770152c3403e8441ca308ab7b7877925e5", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74a87343f06e89066f1ff5185153fe42e5249a2e336fc42ebd855ce7df57a10a", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6973dd1fe8dd639046ef5b6469f78e29af81b9d4f6c5a59c22896682e63ea19e", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edd18565b012e7f4a5ccad4c558643ed4af0fb9b6d4cfb78b51ff31fef6f8761", + "regex": "(?i)^https?\\:\\/\\/robloxasunadecal\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5521bac8d0cedc824e5b2d7d152c6bd3547240d381ca113d2df5cd828b02ef71", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "428e12b492a44beb3e2e12cfb8f9a52f899a483b47b06a6667403ccdcc374a6b", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d2df2127cb77d773aac164de8d75d2fea9e00fbd4fb804647a7d543e7d9699", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76ab23d16dc38a5f93fbba06c6ec86f7c0227dd2d3d64cbfd9dcc776267558ae", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95f308c6a09c3d51e708fe44f6b671a0fac047e6f06be17c6fd7973fe3233d10", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dd898c1bcaff72ef863a8e9338ed1b035c25e98a30c57b2adade232f5ca3a86", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8dc587c64dc669830a1b34f12449ad1dea88f5698de77a38f32223e3d32f783b", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01e0951e2bd8f495df3e9377775de67925b97b1285d60a61985cd1e1968734d1", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9093e44db355f72362a98ad331b1ba2b3110eba3a291f09fc708ac89a9dbe95f", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e96d19ebfb4d41b866aa1e68056bacb59501d61b103e76f07a33acb3ca3232dc", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e42daa90e7511b8260072888326963145c2450cd0b41617296e5efb3ee11828e", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c023220422a3871af4281824b8a5383bd0cb55c07a0c646e1fc61a2bbf000af", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16d2b5488b7921504d292855adb645ccad519f660d914494f3c77c90eec96034", + "regex": "(?i)^https?\\:\\/\\/robloxhowtouploadaudiofree\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc986413fe3cb6aa686965dad0b6a4dd576187aeaf2eb1f36893fcdc00cd16e0", + "regex": "(?i)^https?\\:\\/\\/comoinstalarautoclickerpararoblox2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cb95665c29853d49e5a74ec6315bc06d049f7531206aa672bdcddf3197ac620", + "regex": "(?i)^https?\\:\\/\\/comoinstalarautoclickerpararoblox2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a415e348cd1806abe8326f7964de43884cb00564df7ba4a2fbfbd318fa92a90", + "regex": "(?i)^https?\\:\\/\\/comoinstalarautoclickerpararoblox2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41dd1c336e8d3856f5560b278fa1378c3e67118d58c17a6dd9ad2cc24ceaaa9f", + "regex": "(?i)^https?\\:\\/\\/comoinstalarautoclickerpararoblox2021\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "817ffc986ce229be38b6dd88a14b2805c68a8fd0e5d42aded1fbf0be5acc44cc", + "regex": "(?i)^https?\\:\\/\\/comoinstalarautoclickerpararoblox2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a5b7093c97fc314c325844a9df7007481aff3ee551b9572262a4c38b7febf27", + "regex": "(?i)^https?\\:\\/\\/comoinstalarautoclickerpararoblox2021\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03678f943f1139ed0cec1e06572fc9cf5849bdf631dfec5efe2c90d167d17125", + "regex": "(?i)^https?\\:\\/\\/comoinstalarautoclickerpararoblox2021\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "578704bee9ce64b08b3170d54aa48c7aa11105bc59cdbac21eebb0cae7414979", + "regex": "(?i)^https?\\:\\/\\/comoinstalarautoclickerpararoblox2021\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9ebc0c37a30e72fe8961c36dd363b5b92c3da15afd9cd5b174154b79ae40c5d", + "regex": "(?i)^https?\\:\\/\\/downloaddojogorobloxparapc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02847e5917df69970d208c9e415607f6ee90b3a63d7b3ddd4d29d6987b42cf1b", + "regex": "(?i)^https?\\:\\/\\/downloaddojogorobloxparapc\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4159381e73d3bc399b3f8733f28749629b1b4e0e77c5162e19a7c9eca3d1fb88", + "regex": "(?i)^https?\\:\\/\\/downloaddojogorobloxparapc\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2361f2f327923a3244ea3a31c93965f0d7f3a1822bf3c49a437a4ddb4a0c5da", + "regex": "(?i)^https?\\:\\/\\/downloaddojogorobloxparapc\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12125807b6c07f858cb91b5bd325b2ed1a636d10c5bd798d02040c7bf89995ed", + "regex": "(?i)^https?\\:\\/\\/downloaddojogorobloxparapc\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d7cffe67d2edc108e3c5e5abb5c711a217adf5a72b7751d14423566a91c1ed4", + "regex": "(?i)^https?\\:\\/\\/downloaddojogorobloxparapc\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eece81a8e7398eca8247237401eaafd2a36e3ce8f491458d64f81725ec63fbf8", + "regex": "(?i)^https?\\:\\/\\/downloaddojogorobloxparapc\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "750a7ac4ee88b8200712226df00f4cb58080efb6def98366d750770a726f1a80", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8918751c317c5f6de331b496f030d1b93839f17652002e5a71abbd712348cc99", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4bb18afb9cb2a13362334d81fbcd946699603f7c4b7dbcd413978740c8be5fd", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68929e1b59d6c21fd8df56389d3038b43c9b92d25a63b755c386a912aa0af9b5", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6e531179708add57adbe45e6c7293b6431381c98997518a20c2a7cb15115ed5", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94e1699d921e85839173b0ba69911eaadab51c1119c981dca2554ea78bfbf4e3", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56fd26dae4a5a517bf8c9f33dc95d7c34cc36f616eb4b1fa6cd88730f5c78bad", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6ffac84ba032cebcd40708ad9658b4ef21b57eb64c813569378f459fbc17983", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a90e1cb86492b2d3e4fac2c539589dd13e1880e75d609257ac9d9d910337a0c5", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea8873261bdb3260ac3d081d2ae4a11ba1008d982bc925c894a89f15a1cb156", + "regex": "(?i)^https?\\:\\/\\/fnaffreeroamroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47db193c30eb155ca159957a5a3de960969bec46b8f39ada22c65ce5921b03fc", + "regex": "(?i)^https?\\:\\/\\/greendecalsroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b992d8e9d36cd0ffb2517664803992e1d3d7a4988d889cf2f0037aaae8d0c359", + "regex": "(?i)^https?\\:\\/\\/greendecalsroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f21e71f33785c3fc7910d41968b9b3305602a7fb701af44c11a17723a1ceac07", + "regex": "(?i)^https?\\:\\/\\/greendecalsroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "721fe16641a71bfc9158564196f7152d713214095b6ccd0d63af7493a38af010", + "regex": "(?i)^https?\\:\\/\\/greendecalsroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbb0f43bb99cca165401f3a26ed3f2ccd36238886224c8d6f54394fd745f28c9", + "regex": "(?i)^https?\\:\\/\\/greendecalsroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2c76dc634bb2254b9e7009d42f5204d204d72275757c05166fefebdbdd6c72b", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdekawiitycoon\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f11c6ad7c5363a5042ede57e047df1a2906c6a247115292cadeaffa8ce1888d0", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdekawiitycoon\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9ca97e5c7632e21526e3028866fdc3cf5fa643d8032193209f2216842e1a98b", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdekawiitycoon\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18a13fafd42c01b6ce460222655baf09baa45372eac4886f381a517db9cc948a", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdekawiitycoon\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52ddd208fe625da0ef46e18e3746d58898ea6f714c99af728afec292b1304b8a", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdekawiitycoon\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8efba81fb1a62bc466f54a3562db7699d76b698fc907a3b741a8a0e2c696b3f", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdekawiitycoon\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "653baeab1caaf3e0b279dac26ab093e1d4af34a6cbc657403f403372b344bc76", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdekawiitycoon\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6de078818baee617ca0fb13d3a606f5168e61698dcce121a0aa7bc05b9686e", + "regex": "(?i)^https?\\:\\/\\/robloxbeybladebitbeastdecals\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1aa5222f962ecd63dcf53cd1033e1b34d2683565d9acef32c929c167cd279b1b", + "regex": "(?i)^https?\\:\\/\\/robloxbeybladebitbeastdecals\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "298ba48429b07967ac05c5afc3498a97fc64f35572b8e5e8fb0bccebcdc2718e", + "regex": "(?i)^https?\\:\\/\\/robloxbeybladebitbeastdecals\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e7a45bb7a207fbd0006f3cb1c5b849e2ec9fd2aea3639844b655381689c9d4e", + "regex": "(?i)^https?\\:\\/\\/robloxbeybladebitbeastdecals\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15ac214871a425fba119bb382163b9eb28d823cef7ecc53b64ebe2d20f50c6e2", + "regex": "(?i)^https?\\:\\/\\/robloxbeybladebitbeastdecals\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30046b54fb61f9c17504b7aedc472cc1ce527f4016110cac8fa2ae35262490b5", + "regex": "(?i)^https?\\:\\/\\/robloxbeybladebitbeastdecals\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "228cc749e7201586796b77bb6c08bf6beb44ce5e1106aded75700fdb61385a35", + "regex": "(?i)^https?\\:\\/\\/robloxbeybladebitbeastdecals\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1e32fdf2537e8c6acaad6ac2f9c0e2431915c02a9f783faeceab74d456bd5cd", + "regex": "(?i)^https?\\:\\/\\/robloxbeybladebitbeastdecals\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94f3bf687b4858e73b071165dde9f95c71e1ffb6d1594de2c1c97c228fff0d50", + "regex": "(?i)^https?\\:\\/\\/robloxbeybladebitbeastdecals\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a33f2667cd72382e4c995c3a139329c56a33dc65922ae27b3cefda49df0b0ee8", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "136cb2035ffd7984952747c79053d28103291d8a4e687405b64d96dde6a95de9", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "966b6abd24cb59cd040ae97859663a9c94b83ebc5073e9ced30ee3a53f158e48", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbb00936ce324fc431a05d9824e3a3dd80e499f6a10b8462bb91710eba8bdac1", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c72058aaac7ebb4777e7bedfd4d2f59e5718b54bc653e671af57e5a57f13f54", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cb8d9365d0524c8cf0e70a1efa6bd2b831806d90fda1222c3256cc78a13e427", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe80c7fe512d19d623ef7f3467113ceb7ab244c84e9b47a4579bdc22ddcf4cc0", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d23d0d4b3e2bb7589efd246153bfc636832bc556d15e600e722041f43dea33a8", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6654098635f4f02d20c159c7684373c80ddd408b53f047295837d84d89ec11f", + "regex": "(?i)^https?\\:\\/\\/speedrunrobloxcode\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df3a8b928a7efbaab1205cdeb71fd0b3b873a27866d59d17a65eea77e1392a18", + "regex": "(?i)^https?\\:\\/\\/freeicecreamshirtroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c8f23e30d9379fee9adc5d66e7fde7cb8f6c92808d6a855f18de96261796a43", + "regex": "(?i)^https?\\:\\/\\/freeicecreamshirtroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "711ffc1f357b3e87e411b59bc353548a4939589b79c2e09211f7e064f92c4e1a", + "regex": "(?i)^https?\\:\\/\\/freeicecreamshirtroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7de5499d677215fbe4b7c6d1fb9532d2b3905929fb2c05203e21252fa4a74c1c", + "regex": "(?i)^https?\\:\\/\\/freeicecreamshirtroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9b1676f6d1abf8bc15a8e39bd6f1bd2db507963e1ca980df9cee806a13dccca", + "regex": "(?i)^https?\\:\\/\\/freeicecreamshirtroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67df7997ba6fd4d154eddc168c7c65802a3f98f9efdf835bf7abc4625093b054", + "regex": "(?i)^https?\\:\\/\\/freeicecreamshirtroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adcfa256a00508b604b98761c71300124d0e27b462ed89eb8f62c4eec5826a00", + "regex": "(?i)^https?\\:\\/\\/freeicecreamshirtroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4d8b3267ee6c3c85124143da38099ed2a296af9baf66ee46db5632c815241a9", + "regex": "(?i)^https?\\:\\/\\/freeicecreamshirtroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "762230d17e6df4105faec817df0b4e0170517643cc6022ae802a0a2d4dbfd639", + "regex": "(?i)^https?\\:\\/\\/freeicecreamshirtroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cab30f14daada7bac1d3b0b08a37693208f4b1b6c07083586ad3ebc0fccd166", + "regex": "(?i)^https?\\:\\/\\/robloxswordburst2market\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f31585c9cf3278a01c73326c7a33a1401ef10ba3afe9375ce3d325db9fe1cc51", + "regex": "(?i)^https?\\:\\/\\/robloxswordburst2market\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ff8b5f2fd3adc49eb36bb71f41b0a3b83d5eeadfd81208a280edbb3b73a7b2f", + "regex": "(?i)^https?\\:\\/\\/robloxswordburst2market\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "340583c30ac2a7f2c5fd833b358f220a48ccf785ff8862e668a1f05d9ad9f3a6", + "regex": "(?i)^https?\\:\\/\\/robloxswordburst2market\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3727296a3db73f9f2b8ed74ebeeda530ed05e9cac2b941505f47fa85e28c64c4", + "regex": "(?i)^https?\\:\\/\\/robloxswordburst2market\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78abefbeb9c476756a6f33fcb1c1e1b299088dafd7531474915067ad9b0e1956", + "regex": "(?i)^https?\\:\\/\\/robloxswordburst2market\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a6863d5e6ac3b86eb3c4c23cb90e9e6cac17ec7d288894a89667a380537aa4", + "regex": "(?i)^https?\\:\\/\\/robloxswordburst2market\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f889bdaaefa615d70aebde7c96c6d9ed8ce2316f5510e83783e58005d89296e2", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b14cfd08e2320ce72d17c1ea9c38efe6280d0cccaf38e3988247bcdeff9c6f5f", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b1a8f65d43738086093040dc4587e4277df77c129711cbf546e41e612ad2485", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bf6457bd3ca244bf1641b2cbc638035d3bea5f9056c1f58e8527a5519006d85", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "054da7e05a38b5d8b2f7e2315398dfcb012942fd84e87c3cad1dffc56d583bc5", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1352a148b2ba40c103d784c130518c75c93ad8816616d264083c323e12912226", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c4ed86ecbb9254697f52fc7903af6854407cc9669b92dcc8e411da99832ac3c", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e42107136254d40cb70125960538eb5013996e9001980b0fcf90f4e97bcdd5e5", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ebdaa1248385f269bbf4445ed42a5e52deb86e34828bee057b59b830dcdfd0f", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbeeee683af0741865168d1e3b8452fc7d2904da7c440012a382873598206338", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90c53a655c8fa0ab96ae855251d1f0cf4e3ebc0aaa74b1b00115bdc12f9fac6e", + "regex": "(?i)^https?\\:\\/\\/robloxtowerofhellmusic\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afd30f78022b6623e9bdf6b3d2bd1e5451d6b3fbc8c3cf0e589ae51a10503ccd", + "regex": "(?i)^https?\\:\\/\\/robloxmodpc\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7fc63e7ec564b2c3470d5e3fd4d2cec645a8991bc6896f3c30d0a72588e9249", + "regex": "(?i)^https?\\:\\/\\/robloxmodpc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee3cea2ef9052adf794ef096731cdbb621470378eb8b24fe321bda5fa87d2943", + "regex": "(?i)^https?\\:\\/\\/robloxmodpc\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0fbe042fa418e0185f49bc0a7f8828433ea70006bf767a84de47a4796b0e567", + "regex": "(?i)^https?\\:\\/\\/robloxmodpc\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c9dd90d5290cceda8d691e6b344a3e63f09d990c3e003914c38fc2247a5cc39", + "regex": "(?i)^https?\\:\\/\\/robloxmodpc\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc91b43e2dbffa85faaa23a05441022316f62891bee769ef1185b1799f0809eb", + "regex": "(?i)^https?\\:\\/\\/robloxmodpc\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bf6b5f7af8291dc7db4d96e81d7f0ff8e913689d75059d94de9c7a89b690b2", + "regex": "(?i)^https?\\:\\/\\/robloxmodpc\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "287f4e43806436bdb392fb3ea2d4ea7d53a1a80ced62bc0c1693a43dc3ad063c", + "regex": "(?i)^https?\\:\\/\\/robloxmodpc\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53b0306fb89b2acf6377413ec76effdab8894dfba0330aee97fc89c36088533f", + "regex": "(?i)^https?\\:\\/\\/robloxmodpc\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09451cdce0c1d1d5f60a6a3cf1de91b35c371db1ee298580dbbcbb1e5549a1fd", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c39298063d63582af36a78d2665c94c58d67009141979063b5b3c20a39ee4769", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "976e0119b9cee60a601c44efb12ba865ca3cd250df7bfdded49e9b02d79b01ff", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948ff543fb51571723f53df1b71de8d5de843387daec091226552e8f0ad41833", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48e86c0299e752300fa900b58a0b1170ce50193ad22cc2437bbfbf22890a7754", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68537c9496e535181f793c1c2fe43f3ea2e88bd7220ac61623cdae06cee22d86", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f59053b2a45029964df394ca7401c269841560486111ced3b23f23c4ddc9bedb", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "859bdb1363a6a2ebd65a6ee90d4f41ff73d14e63fb18bfe30fe7fcf98ae95dc7", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4babe28ab896ae260d0514fd5d75dc4876f8b2b8d10d8b196590f6a23eaefbab", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4240474be48128b158dff357ba05ad9afc756aaa23e0db2a83cf5020ac89305d", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aee6abbbf02004e0d82d53d71bf34e1776ed89c5947d89e97b3421ead0d966e4", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9182421400f95e8034624ca7f8d9d8d2dd616613e87d40a72c30e4a0b665b8c0", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ea0d2b0bbf474252fda52fb46447d0aaf18612bce4bc43b65943462845cb967", + "regex": "(?i)^https?\\:\\/\\/dragonadventurerobloxcodes\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a717f3bcfd274ef9b23fccc75203eb82ff0595e898d93784a404a9e215cb3d3", + "regex": "." + }, + { + "hash": "066fddc78800c87b192c840227807cff3b5cfeed890bc2e011b711014969bdf0", + "regex": "." + }, + { + "hash": "713615fcb9437319ddf82a9167809e7ab9a04053792731ac04b7ed2c78204e1f", + "regex": "." + }, + { + "hash": "ca6ed3be5e4400df2c25da39f7ae6a57eb9499de7995b5ad1a48cce62e80c855", + "regex": "." + }, + { + "hash": "2bcc72a0612227eb2054ad2667338a220eda8f10f7e283b651c0d6edba2de0b7", + "regex": "." + }, + { + "hash": "76de01239a75ef07108b4a5d324027ebc5579ee3d926cb7333ec76f384b4785a", + "regex": "." + }, + { + "hash": "99bc3939f2e36a80a19ac646c4dc3611a435fbdaf889ca89882a36d4c4759769", + "regex": "." + }, + { + "hash": "76d31361f39966f248f97b5bc6d6dc2c96aa16f568581b6edd314afab8a2cb8f", + "regex": "." + }, + { + "hash": "6f38535234bcead3b7388ba4748679651c59ac175ddba8fde873023ecb6f04d4", + "regex": "(?i)^https?\\:\\/\\/nastygamesonroblox1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ffe40673f0823883b8fbc8800551a4701ea92ecb014352d42bb7a43d8875c2", + "regex": "(?i)^https?\\:\\/\\/nastygamesonroblox1\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edcc4aefcab1887b28b38f9295cf1bb4ad60e09da6c054e5472fe25e14c14ce1", + "regex": "(?i)^https?\\:\\/\\/robloxcrosshairdecal\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "097dc6528a5b6af9a1a4393ac464b82d29bc37c769a8805a15b00df2fc54756a", + "regex": "(?i)^https?\\:\\/\\/robloxcrosshairdecal\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ed5095ef64d4b0db0cf81262cc6d85d878dd06f0c77163e1b11ef44df05329c", + "regex": "(?i)^https?\\:\\/\\/robloxcrosshairdecal\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffa22b92b276840b43cd3db4ca6f9fde3bb45aee8578c09531bb959ca635418e", + "regex": "(?i)^https?\\:\\/\\/robloxcrosshairdecal\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a2d198420492de8419c287f3d22ba6ce935ebdf8ab3d4c1154f57c5fb789da4", + "regex": "(?i)^https?\\:\\/\\/robloxcrosshairdecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99e43400f560451660bd8d73f5e284730a944e4ee98d996756d038e9a14932cd", + "regex": "(?i)^https?\\:\\/\\/robloxcrosshairdecal\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce31f4dea9608a2faf5a81cce0c96c1f5ea65f87564a7c4255b9249599dd122f", + "regex": "(?i)^https?\\:\\/\\/robloxbest2playertycoons\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd17fc2c0151d937bc4e423ed7e280a69df18ccb9b8335434f1a75a0c7977c38", + "regex": "(?i)^https?\\:\\/\\/robloxbest2playertycoons\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "134e97ee289133799261a65e204f6aa27ec2026e60679fd1840b096a75cbeba9", + "regex": "(?i)^https?\\:\\/\\/robloxbest2playertycoons\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f306917c0be5570d4c6d65fc93a0981e9f2cf517cc4e1772958c502324b4c583", + "regex": "(?i)^https?\\:\\/\\/robloxbest2playertycoons\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d71ba27b35a79a809cc5d2d8ec6939aa3fbfdcbaa723c763b4eb9f0c4d8949d", + "regex": "(?i)^https?\\:\\/\\/robloxbest2playertycoons\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1d64a4d0888caa638c1899d7b9fd77e7b4dc1aa5b5ac3bdeb050c7a6302cf6f", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7020b8741ec3d621b6a9a6fb8b53ffbab632776d18711a72a08cf2bf2313f929", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "108a2fecd70130693fba209995fb7b20c3acd81226e94339e99c924bbe4cfcf1", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad428025219883f12186449055dbf31bad48de49051ee0d45db68a5807f34c55", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1abef562afe552473a26aa2bd78f18c8175a41fa4f6361b644a737254a9be68b", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13eb4d2ba33615cd69f3a55eb8f98a8c98dd4d9ce50a4f23339e04d2926d8e04", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3a08f2ff526815bce7ed566d8713759ad53e6cbd89e776dd5f3d05e55013fb2", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e2fdcc46c697d8859fc63e1aac84fe03f09795102b1f8120a106cefa216dd73", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a51c6a331caf4d3ef8974c396ff94385e9fee098b1ec453a1de712464886393", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34ff583e7f53e22ec8f04728c255ed1d181abd7ac4515f9baaa277a8383071e0", + "regex": "(?i)^https?\\:\\/\\/oprewardsloginroblox1\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb553dc7a28eb6d631c17c4089cbeba999e7f3662a76a546ebd0b82983c437f7", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9c6913a5a96d090695fbcfcf193efde18209c6df02f231414a3ef4ff09b4667", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b6972cd27fae3a8b8e2fda783a910b31076aa19eae13874cc427b85e001e29c", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe3b53e5c100d81283f8e74dcf1b2fcc52ef8b4b1aa5b55638493387680499b", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5000def98d7c12e5afb633100ac9cbb88829d2a9e4dbdc304be1820151645695", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "517d2b94bf60ccdc4ffb3de1f9dbeec0ed7690133a434a78705c618cb216957b", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8fb033f22401195caf5119c3159c943f7132e7824ce0af8e6a171c8721c5c46", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1736eff84b2c67ef5140eecff389e0e3e48639db53980a6c47a2748ac64388fa", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65aff40c8f92e2a83c6929baa6f1acbce2c55e65c6d9302506485bc9c023366", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "444ac91f3147b8699f6f44d7f2b82b9ce79ba3cc7e3e4de5600af039a9ea83be", + "regex": "(?i)^https?\\:\\/\\/robloxkartrage\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a005e97f1ba54b27d3bab6896e613b7924c3c41677a31293b752bf1bed92ac2b", + "regex": "(?i)^https?\\:\\/\\/roblox00password\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "708587e3343586c405462c3cca86d9ca0890d049c55abe92a05e5374cf6b38e1", + "regex": "(?i)^https?\\:\\/\\/roblox00password\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627f6a30ead79c2894e82fd12bc31001e460230d74b87db56ff1de378a8e0b4a", + "regex": "(?i)^https?\\:\\/\\/roblox00password\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5eb9dc6067ac07e6e8e5676ca834f17dc62758f347b9eb94eb49446d94d8da2f", + "regex": "(?i)^https?\\:\\/\\/roblox00password\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3265b8482c0508b6ec2fadad2fbbf280da0cf29fc10bea041b5268025d3eaff0", + "regex": "(?i)^https?\\:\\/\\/roblox00password\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fe2194744388058ea02e55e53dfd08d5d613b38ba4407cf7870e1b588bb6eea", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2cc92be350ff18c2f7a3de548e4172d199b5fac00487ca4e0da9c5ec964c8b5", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53eae61dc2b018659f38eb1de67a3faa105e9173b9cac5d758667a10a7948290", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31698a69e65670683356c31b24a1d53adb32b08601d8ed0c227e2950136ca8c8", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4462dfbf0e536dae2b93883682177026c5b731e71a67b2e8ce638b77b0f433f3", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "450320d469c71092269e3b3b4cc8e200efaba7fe20d308ea8c19c39a00385e25", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70933f97aafb160eb5ec892d4b5c6dc58a017367b1c48417d4ed8a5b2175ed8d", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7165c86178e8710dd4468fe0416423ee75de4b7c5f31bf55fbdd05fcb6fdb0e6", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e28f1f72d3df894ada2d9fc89dd5d301ec2aa208a4335bab74f7078bf65baae9", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d81e85e06f1907885f517d233b06e7ab4a33b3bcab3f6ef8ce015d5d16d403b", + "regex": "(?i)^https?\\:\\/\\/camisetarobloxderobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5244b0f17376d548f271ea556d6a048ec641a353d928288c2339c5f285f211a", + "regex": "(?i)^https?\\:\\/\\/codedevtementsurrobloxhalo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99535c90bbf6dfca8dac9f0f2214b993873eb6217cf3509a7a8eddea96989b31", + "regex": "(?i)^https?\\:\\/\\/codedevtementsurrobloxhalo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "337e2412b52ac873c2a324b52a8b436a3b52e21582c0293a47200218043d2a0a", + "regex": "(?i)^https?\\:\\/\\/codedevtementsurrobloxhalo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deb98749ff11ae6524e33ce0cb54ce4030e35189f34744ebce0ed0aebd15a70b", + "regex": "(?i)^https?\\:\\/\\/codedevtementsurrobloxhalo\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da16e9796cdac2d66375b0c16cab90a66032f1ffa4565abf1061b2645278cc57", + "regex": "(?i)^https?\\:\\/\\/codedevtementsurrobloxhalo\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fdfc7f4c953f5400d2c051eb7fad9f9593b6baff855e70c3a6d4c560ce8bde7", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a9d8084b829544a32f291ca5b5677c7cc4aedd7c5dde271839e4a6a8a6389dc", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "825be5a64591872fe82c6f8929b3e1ccdc7899fbde0652029b04501e2cb19406", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e51687b7a01a038e1e9f7db4a0687f37959e8c97cbeed1f00d01c374ff55119", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17362225082abe8408b35b5cfff4ccf519cb0ea196ba382d14ca050027b9fbd2", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc9edecba130b7b6ef22bce0668240347d95c560f99753f75ca386241523c2fc", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "381478af05a64a6355174b565499f73a7e59cd55a72fecc1223b4da51d7e6e4e", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec8d5e8f64e0e8f973e9147814548e2e164d62600e15040dfde168be0582c353", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d49d6d5712311369d34acbcfce4a471e96107dfb75b25abf148f7b8836470649", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff38b024faf33efdf64847ea70be69320979869b13ed5935a0fa9b9eb1b089e1", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e892138458d0e2dd95b09abb30fcc5d27c0a8cb99d1137002050a4b62a08341", + "regex": "(?i)^https?\\:\\/\\/robloxhacksmodmenu\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4011cbcdee857a36756bb4e4a801f33a5e2d0bfee8bba714914c526e4b1e8127", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "772b734c046a57d4064aa6fc3f4dac5d1ec2839c135b2bb1d47a82b032072701", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1165dc89254b5a4e7ca5d79cb30b52c1fa3efaedb30a8492d34151faf950f094", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "119b98aba480bf482b09f604dbb632b3184639a853ad7706e2d265d4da3fbdeb", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b0b428a1df122ab1513363fe0cd1e022f34410ea0129735f118ad4f9c3fcc29", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd2d1f40caed4180178ec919b8b98605f13b113eb0feda70a866a584c1d0c9cb", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3ca871229b7a13a213634d93093a7aff6d4d2bf2eb2d592342a55639bad1cf5", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52569d51b54b68ae2b38b2a1d8f7c3b5c120f1af1b944ffdbdc3bd9d1a31d909", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f74fcae604f60a96c004227ff9b6de55446051754e32cf5212cf68d590299b56", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49a057f536be2e86da9b56312c9dc826937accd9cba519bbbfb3223e95725fd1", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14191d0887a74f022327e4a73c813b1e04283fa5fc0f9f32c605b8d74c8354f8", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56589cf8e51b7877efad20970ae4f31ec554bca025ccebd3cb852baefbe50a8e", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2e87d32e9103128cd68cb8af0bc073f73233c8c6f6e24625d9434969e7978ec", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e941d8fe7086f7c07a26df39c88a57ff4b9ae314e2f18fcd9a73751710cf7d37", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28b38a412d9a3b30897119cf4431b188a7527c62d8d331cfec1c3585d7bc7621", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59410545c6300c1736c2e8f4869c7c917b708aa2dfb7024be0579ab76c2ae9b9", + "regex": "." + }, + { + "hash": "a1f8d089b28e763c479bee79f1d13a28d1224634bac0d16b5d11b956a897120b", + "regex": "." + }, + { + "hash": "68c56574f18e41286b3581063c781a4e51395edca8eb3045e96b1fd079df6092", + "regex": "." + }, + { + "hash": "71537d0f6d42e0013e156b6c48d611fafc7c495b42fbb6da366269d274d5b9fb", + "regex": "." + }, + { + "hash": "be9a8db11459370f52566c80cc11cf902902e3fc65d9ce2600cb222ef61a835d", + "regex": "." + }, + { + "hash": "d59f3889932438d572fc5e3f4c932d5fb0c3d1427f647dddd709a09f82a5d953", + "regex": "." + }, + { + "hash": "0a18b5172193648b3b52da8ddfc6939046777e978954edeb2bc2d1d98808a1d2", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25ccf17ca2fdf3d3062f8c97706299fdf559515a3b731d2ce499e6d185587109", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b56fcd843fcf4590241b57ee9b4677267066f15b136c146d3b1e26169339061", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d36bcdb659ad26d61534be7f7dd634cf3b867dba8d0cc7cf75bf2a0437a67b17", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "153c1b90dd9439ea38e965fcf2e81030502c2e81f1ea0131ef9c05556748efd8", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4551f4fbf4529139db0c4941024b03f2520ce752b101e12037545697ab05634", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7259efa99b4321fff56f4a5c932a10ac10772f7cdbf6895edfd49ca7b177edcf", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc4a6a3e59daafdf1c0e3c895291ae3a4a563767092ec21f78480872cd578ea7", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d6ce047fc7bbe658f4b2d7312d818b0db051ca08f76502fe89c67e61aed2b7b", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7535ee1a242e0597101bfa377c3ff5aad5d05e9af66272fa98c10b3e9d7ce00", + "regex": "(?i)^https?\\:\\/\\/jogosvipdoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02d213d002ac7147660b9b8e36c10a5cd5acd4e67766224fb1fe9aa09cc5de61", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95b8d6c32b1a453fb07893cb1a06887daaaa953ca4d4f2b4a50c300c823c98b6", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc3877c76cf2af3f83c13a37366c0d0d3a946d38f391e3962749bee018793c4b", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "defede1f9e283f8a9e0d7ae826b5c3e1b473c471f60106717519cc10a076725b", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6af3c0c6740caef3c6b3ec9ce27f1ffe5efcb94e7e9774ad8e9fdd5456ce2def", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a24604f9f27f1d1448d6c607fa706ef477690dd13872a8525400dea3fcc4a4", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dce1dfd3516014eec60ab16b3a38ac6918a4260c76d0cea571c4b22fdacb2814", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a4efed303bf9b0f5e21e92fbde11096298ba4e9c1b03da1c23fcc5af483b18f", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c02e02007bc585862b88ef058a45905bdd759bbab249443724ae2016d6be658", + "regex": "(?i)^https?\\:\\/\\/robloxstrecheddecal\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47252c7dc26fdc0981325f355eadeefac6d7ed885d6f6ac747a0c5a695e30f13", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxonrobloxmobileandroi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd47ee3549b2234baaa79f01d6a9dc2e3203b2af89cc50ae38f363ba646d8706", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxonrobloxmobileandroi\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54fa367c7d41d9454d50a15b1851030fdd962ed5d5a882c539a87ed00dbcd745", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxonrobloxmobileandroi\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9376f7ef613b7976e596382338cbb9ea7758d1592c383ee998f6afb50233724d", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxonrobloxmobileandroi\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6125ff5b6cab0ad33b6632980ed0d9471d91cd97e0aef030bdb65d46b22e27b8", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxonrobloxmobileandroi\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b12e62cd48d695b458bfa65563aa3c0358df517bf9954306ec28f353b8fd085", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxonrobloxmobileandroi\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4d5fbd7a368734021a8c93b1603a99789d2dbec186bd3ec7dae9f8594a5249d", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxonrobloxmobileandroi\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a70af14cc82dc48b6866ff1ab16ae9899d251e0fd39539a26e7ce282bf2ac03e", + "regex": "(?i)^https?\\:\\/\\/peachesrobloxdecal\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47a37470b2b02856df8618773c46aa9edf0020efa0133c5031016a4212551ba0", + "regex": "(?i)^https?\\:\\/\\/peachesrobloxdecal\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5b0b744b2a064092a2e92effe0c24da693f3c4a459b1a27a0df128febed6e6f", + "regex": "(?i)^https?\\:\\/\\/peachesrobloxdecal\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c945231e77aae3a49b84584da6721ca64b19636501d85bf3f277838edd81e4cb", + "regex": "(?i)^https?\\:\\/\\/peachesrobloxdecal\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f6dc2a5eca808f543a9ee3226e8e3c4b7e07aa2fd8a8d7901eb059dedf800aa", + "regex": "(?i)^https?\\:\\/\\/peachesrobloxdecal\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "003371d66e2f07548affbb7b64f1c3005856753cb2d442dba876420b84a8eaa3", + "regex": "(?i)^https?\\:\\/\\/peachesrobloxdecal\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4429b7070c28a067b79f9140ffba323432a1fad613796bc10a2f7c4935730b12", + "regex": "(?i)^https?\\:\\/\\/peachesrobloxdecal\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5397d9cbad45909a197487393ccbe0914cd597c25449b7d2a4f33b993de1a091", + "regex": "(?i)^https?\\:\\/\\/peachesrobloxdecal\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7adf16206207d6383ebbb8696bf9393202ab52358b985c19415ba7534cd3a7f", + "regex": "(?i)^https?\\:\\/\\/jogandodesmipernozombieattackroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c255d1c77b2459c5571779b14ee69e06010a88aa688f9c94bb56e1328b10af1", + "regex": "(?i)^https?\\:\\/\\/jogandodesmipernozombieattackroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de508c4485ec090f2b132a26b1584be48cf1964f04b291ccbe2acbfcbb8ca352", + "regex": "(?i)^https?\\:\\/\\/jogandodesmipernozombieattackroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b113e99ac235af9609708ca6254f4bfca2d813ea2ff50e9d4cd53875f7bd0ae", + "regex": "(?i)^https?\\:\\/\\/jogandodesmipernozombieattackroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eece222c15fc2e8d2efe04d6a975391e02c4ab40afbcb95116d15ca43cb0faed", + "regex": "(?i)^https?\\:\\/\\/jogandodesmipernozombieattackroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54d41a0f8a3b238eb2454b59212ed1893dc68aa0686c268519e6d09d54fc9ad1", + "regex": "(?i)^https?\\:\\/\\/jogandodesmipernozombieattackroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5257abb99ddfbf46fb7c2ee16695cd5b0925866d490524768ab094641fd2fc6e", + "regex": "(?i)^https?\\:\\/\\/jogandodesmipernozombieattackroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d7d8f2d48871f884cc60febb95518bb03df78e9361e4075af4f51f133f6db5f", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a0756af3cbf7a8d43f3397b2cdca8a8d7cf98cc828c37fdeff4f2faf58247fb", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cc7c11684a1cc3eba7bd15e8152af9948f676591066cdc4ab25768fcff0bcf8", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb67b03d6d1ec4dc233257a3d2f8ec19887b825e2bc19f2d40520ebbabe8c128", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acdf78a237af564351296ef89645b3fa55b92289ea3e51a3a8e45dc8a5a6668b", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3dd5c0764b960ff55e0da71a0c64c4d9f9ebd25b2aa01ecdd8279fb775803f7", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "972fc4628b6c1467bc7fbe046929d136010cf05f9876fd9d6e52cb57e9e9378b", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e2d7d4730dcad4a517bee679bb1ad7e15f997eab1a77e5717ac2b104297ce8e", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b59181af8b707d4456d29683bceb94cfbe9fba9b35021f19d7cbdd69eec30d84", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729bac0cc5a79c8f8b0a49e1b4d9910714e330c0e41d1e990bccbd6b3eed2509", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37d0980f8d9001077ae8da35a53a177876e89a94f895222bbcdc2db6ce813140", + "regex": "(?i)^https?\\:\\/\\/gruposquetedanrobuxenroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "417c989322e8d83e4b283fedbdf3eb01020d0e9aa68a1584b35f431169f09b36", + "regex": "(?i)^https?\\:\\/\\/comotrocarpontosdorobloxorrobux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d79c977b6573535a58f0fc56ed0794432bd7eb83f39b5330d53037fd84842e94", + "regex": "(?i)^https?\\:\\/\\/comotrocarpontosdorobloxorrobux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ccb1d89771f9511fa681da56257bed1c4d8b812de8ff3a302c59893c7094fe1", + "regex": "(?i)^https?\\:\\/\\/comotrocarpontosdorobloxorrobux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8947030a9ea26b75175266a67aaf92ab00e91e628d5ea72b38f03a02e2532a0", + "regex": "(?i)^https?\\:\\/\\/comotrocarpontosdorobloxorrobux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "597c9ceaa915adf146bb525efd7557a0f06a16476db4601d2385e53bc2df4d5c", + "regex": "(?i)^https?\\:\\/\\/comotrocarpontosdorobloxorrobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6896ef580f63c3e82df79f447235701b788c9aa2ceee0fc302fc37480f2b53a7", + "regex": "(?i)^https?\\:\\/\\/comotrocarpontosdorobloxorrobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5da225269b217a1b8c5cbd651e32f42d9e5e538bda4d57cb141e5472312fd0a4", + "regex": "(?i)^https?\\:\\/\\/comotrocarpontosdorobloxorrobux\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aa0d00d2341e2c0edd0657609b23d2317b31b26a09847405007d86b89877e6d", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "588383c5be53044a82cbdc3dca41c8a688755fcb8b391e5cba7cb4696e9830e9", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4707ed1d5e712d4068b9bcf0709fb46920d7d1584cfec34b33238c95969fed45", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c6886390e6059312142d96853afb94afc44bb2784151bb20181455d9d686cca", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b56feb5dc1bf8d61cfffbc5fa446bdbe0f1c901b5eccaeb2ab35199ead0f74", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcebffedab8b1efa257172c43accfde20b98a1c0aba7d768d6e44435d9ae99c6", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad89232efeca9a3e4b3eed51e0b65918175dabb5eb0b6d4d76da4d2d5c5b920c", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8fddcbda410f6238b7951470c1621f04331af5599fc3598a692d0f4b487b454", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4468b1649b9f73a63f8f3a245a8b95971019a4bc4c84279aff1029aea25d3eba", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f944544db247d25fc7b458859066d146c36858cc040a3a2d30b8eda782e7ccf3", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab5eed6fa76b6affd96312131863e1fb345f4919fad09efbd8d3ae04450d4aa4", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodehope\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8348ab79266682d3fb7e61f1a2a931d37ade0e42cb19ae3e07fca076c643c26d", + "regex": "(?i)^https?\\:\\/\\/freehatavatarroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "967379b501c18d1d5791355a6d8022ea0e99c4e751172997034ec2a6c438976d", + "regex": "(?i)^https?\\:\\/\\/freehatavatarroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9edbd727399b0464ef90884fe541d6115b2a238e75ebd25cfc2114a3252761b", + "regex": "(?i)^https?\\:\\/\\/freehatavatarroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d46735982906b97e3868b258cf33097ed8b862d5b7830da51a76ffbbad76f9e", + "regex": "(?i)^https?\\:\\/\\/freehatavatarroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "466a60cad66b28ea67f06aedd1be65bab462e7f554e05f3a32ede82be11e9473", + "regex": "(?i)^https?\\:\\/\\/freehatavatarroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1ab1947f67c0a73ab6bd33a1e376dfffc90ddb1c9f5d04363c36074ee0fb615", + "regex": "(?i)^https?\\:\\/\\/freehatavatarroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f42d7957f49d54aab532cd140adad129625bd2d6829687e0be29c396b5974cb", + "regex": "(?i)^https?\\:\\/\\/freehatavatarroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94acdb2a1917695d36b0d7f6929e3c5145621071a9d26526c6590862be4afe26", + "regex": "(?i)^https?\\:\\/\\/freehatavatarroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "275abda2683a59bf05f7e7e0aa2ad8e3257dd7dfde1ff1d44cf07ed3751023e0", + "regex": "(?i)^https?\\:\\/\\/freehatavatarroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3765efb6345d3df3dde35ef5cd63c7cca56924d8ce5aab927168201dcbf17b80", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "894873bb0b1b8111feb928923089bad761d590e6ff27fbd82afa42085f3ca786", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "377a1338d596dea7a143bd198428c8fb99e3287b057f9cdc29ea9ab64457e5cb", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9e45a98d8e3f6f1ef0e253d0f24ed42c149eb2f64c3eabbb74f067fc2ced769", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f88903ee28130653911b4236dc021d6b53afe0cc1f2b7dd69815cc5d920ca1b", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63ad16292724be9aa7ffb0f5b2e1da0453a2c2194125e73bd099324920275741", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948940372c0569c1d914b2974018a536fe461d83ff140c79aad3944b3eb49b00", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "686e7b92e80fd7dadaa504f864bef0b19f3d777669938551eeb3722e1351c08a", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d548ebb76539eddba3ef43cdc8646ecc20861ee7c3330f6b999d2906d996c715", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb8d86622693462385d7c4f31ade88d045f269d70ecb071664ba08df88ccca80", + "regex": "(?i)^https?\\:\\/\\/jogosdorobloxquedamrobuxsempassarsenh\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df75814bcd7fd67827ff36d700a3059f3b0ab410c54febe33df4a3cc672fd760", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f267474ed293b3150428c9b6030234c1002665d808ec2e28ba78970dc5a346ea", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b588cc8da7872458f926a100978f3b58fcee66da5a696ad08683e6da5e87cdc", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf9cb377e52e7074ef085ac8dddb875526adaddb0daee96f8615c1ac72fa71d", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fabd919d6756c72abf8abed3c871eee0d57d64d72dbc44a090b7a044c100890", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c7673f798ccdd9ff66390d1a20e8942b2f5c78708f3d781a2cf8cdce6916ff8", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9456d822ceeeef64d67901c79f806cbc7a54001ef95ae999e225bb65d5c825ba", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ffe704d05f769db30d4e16ffc7862f50808b33af66d95d56fd2eb23ecb38136", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7428a88fe1fe24ae65865b1e029961ec03d07d185cd63f1a67a7897c27475c05", + "regex": "(?i)^https?\\:\\/\\/codepourlejeusurvivefreddyashokanfare\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7be85df6413cf867f98b8cb1338f85ceaec410786c0f9d7925557ece8d6d413", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1229725327009a1a0d60f06f32a7a7a059331a11a97ef51ea90e43d440577ffd", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bb8263d4f90a75e89069dfb0e36419ba172f590c8c4b2027d1a85a6752eb6aa", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b88ef7562f7530e84d831357d56d6a0abdd76f5d7f6a47ab3d4105f0d4000d", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a093e97637e00250b1c09a9cd726942a47bd6dc1301f3dc693058c4a7803fae3", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b449c4d4cb687635f3fc44fece86a41f86c1aa087189d2d2811862cb544eb11", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae55f5ef8e773edecb42dc31d6ef4173808ff17d567c4c1da3a6089072e57e2", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f639e25d4e114dcd48a1d88ebe2fb0ac8f6a870c1d8919c2deb6c70ebf3dfe0", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e6a6f86ca26f9c041d124954f33a036153e7e1bd3248207067ea8a3c19023ef", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a42f8994c230826abeb4ee1d4407eaa42a5e2e30a2f51409a93fae4ce23ba281", + "regex": "(?i)^https?\\:\\/\\/autohotkeyrobloxhack\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59941d2679190bd19f1ec1cadad9bb612c4ac6de2a7ea60a82de3cf30f0144d6", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71a8f86cd3392e979af50b0fa29f792d6ff52e27506b1f6991c6e92a993c6581", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "859b485043d1dbb59aa92e190bf7afc42e8e0b9f49c784f988e8e8713e2d7bc9", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc8293f0e416760994a3bfb54991c9442a8454354b097bc5bf728defc3e2ac79", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a729e974f5f36167e7f8c0587adf7156ab0bf1e0f2ca8ab6eeb1b251f077c929", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "042621984fc8012dec929a8d8f8b0fc7defe91f9353a7a2c5bcfa5315901aef9", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0352a7ee9ba28b0e0d7e8635acef1e3e1571a38228fb6ec4528f6119660ced9", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "171c5ab5aa29ec10d6735021179af82677ba9e6969f0ac099bc8219d7f6a4632", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12805258cc270ddd5538e4b2de610e93de772cfd4d8919805684e4218c3b5d0e", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a96efdef11f30446438e033ff7c5e75d04993a2acb9fc227d6c1a6ec81a8562a", + "regex": "(?i)^https?\\:\\/\\/ifyougethackedonrobloxwhatdoyoudo\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08c6f3066b96cf6f82312cf6c40c1b793952fa0d8e88392a449aca92d0d0d1d9", + "regex": "(?i)^https?\\:\\/\\/assassinrobloxhackfree\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c888c059f1a868ccac98cf752b618f936716f8c247c58fa4d5cf1c2f538c2e08", + "regex": "(?i)^https?\\:\\/\\/assassinrobloxhackfree\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f11ccb0ec4a401a920be2df2caf8fc54ca7a26e4366272d1569728d7fe7a489c", + "regex": "(?i)^https?\\:\\/\\/assassinrobloxhackfree\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc07c41cf842913cdb74c6d6ef4a29c3443c97f4a8583786b759d3f10a16c2f4", + "regex": "(?i)^https?\\:\\/\\/assassinrobloxhackfree\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbdb5118abcd4c3b74304e720cb2134f7a81a6fd9b70b95a95a42355e22d2cf1", + "regex": "(?i)^https?\\:\\/\\/assassinrobloxhackfree\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b13dfbba518d5824eae40efd1d5bfe04a64d2090c82e0875c60140cebd38127", + "regex": "(?i)^https?\\:\\/\\/assassinrobloxhackfree\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1c88a15a0a7031719953bb11251a80a4e3ce9be422be0c1280e625f80c86f15", + "regex": "(?i)^https?\\:\\/\\/assassinrobloxhackfree\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3ba2888b6eeac83cf16b0ef974a6168dde78928ead146752c854c5cd5a7da8a", + "regex": "(?i)^https?\\:\\/\\/assassinrobloxhackfree\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7062544019a15c16d62f28cea2301ba2eb43e30641e7312ad42263fe50c3ce91", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45e946e395030b6a293e48964a54d5b4f477ca25434bea876c77644a68d96d44", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56904509b3abf7384caae1318ec3c0763a36b550b6d0ed8c5ee7a2e11020ec6a", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a01d5420ec626abd9a7b18b277241823990fd375fce585184e15894f8c1b9d4", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d2ec4f4b3456efed015904b0ec41f640d6b07aa269816b4121df3a9e69f446", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d29a65f90cc415f72cd29e8722b5c29196e28126e9f9fb392c64c6b80c6ceb18", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d25021974dcf59eaa2aa052e6aa80c609f2aa6253a35556c9df5930ebc78a859", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfeecd09ed9d96871e93d5978fdf742c1290cf493faf1d4a32737e6f2dcdaa5f", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "866fe560611bc4ae1e739d1ab10351622c18c2569c08ca6282ffa24105e5cb0a", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c1f93a45e4bf03fdb1121c91a8521d87a90fcce6b814aa640f1035412176d9f", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90d2113123b4b3277543b94b03e9430a3a881c1b0c34ff3be3e59b9144b5d10d", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6c30b2eae9cbc1ae3bc428a5052da64c187e1feb396787196cabd9e7602f6e5", + "regex": "(?i)^https?\\:\\/\\/2formasdedonarrobuxenroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "014b0771726dd5780887bc207ef373bc4e59ea68442ef35131268f38eba0b93d", + "regex": "(?i)^https?\\:\\/\\/2formasdedonarrobuxenroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d243492eda549a81c8cdaf87711fdc21e07d06163be8d17a6207b2152b18c789", + "regex": "(?i)^https?\\:\\/\\/2formasdedonarrobuxenroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a976daa2b051e53dc6ae77dfd06d78b3d92710fb4ff5fa4b58c2fd4c3198346f", + "regex": "(?i)^https?\\:\\/\\/2formasdedonarrobuxenroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "970f89b38debe0d3c8ff779e0b697a1413e8fa45af724eb203a7b1e10047e47d", + "regex": "(?i)^https?\\:\\/\\/2formasdedonarrobuxenroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e8eb3ed7884920b11fe458b73887bd39e9be680eebd6c96aa0e4a86688a233c", + "regex": "(?i)^https?\\:\\/\\/2formasdedonarrobuxenroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e65b8e6cf6329546d90d331bdb8726abf6178fa26b126e5ab156ba691307818", + "regex": "(?i)^https?\\:\\/\\/2formasdedonarrobuxenroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2be838d7da6c907a56b1d081a4ec510c8f9fa9481db50c186a76be0c80416778", + "regex": "(?i)^https?\\:\\/\\/2formasdedonarrobuxenroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7e1ec5f605a9f1ff29ce628e7d140cbf8263d86d25d6b9a55404b91e1cbf744", + "regex": "(?i)^https?\\:\\/\\/ypholdlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "323c5c3157bad7244ff73df49331a22c380c441f21461e0735385760e0c31389", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7f213e95789d87288f734807591b0d98ae32b767a59040226c04ec6cfc9a79f", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2390377ce0c26e1624f1eb86995116efb216639b082c21cd2207be2e3e2b81da", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0dd0e4b5f43e5f72d58ec2b281ba606aa44c5e52d5faf42cfd617157bbe470ed", + "regex": "(?i)^https?\\:\\/\\/xyzhackrobloxdownload\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "055b7603989224938d485e55957b4ca762d443acb32d0b0e94e178d89b25c820", + "regex": "(?i)^https?\\:\\/\\/xyzhackrobloxdownload\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff64bebfcf5657bc875edf2a65475b0b088151e79da22785bffc279df387a006", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae530c35120970c3d58908dcc97a90f849303e1fe2fabf11b95f48a4e3e4b5bc", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6292b9bb2f5b68e76a1999b45516885368112265ac6e2c7e1da914d19106e15", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3dd458f5d690d56f75e0afa23f4da226ed8ec7555c0b1ea6db96472a4a601c0", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30eac02e747b31261744606aef07648c0af18310761d5427e07ca8593ecf49bb", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73a18ce64d42bb7c571707cf20f33f633aa557e2ca36d205cca488e90493df3c", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbd241bd4a0ca8d58081b635359e5699309be8320e0df8ae8bebcfcf634c246a", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e241b6ed34fb25297be6e2e40fe0864f8cf9ac9bb9bdda941968f1d9a99ea8d1", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "282a56610507db9ff0b50b6684c54f5e5aa68db6e4df2c560707d34bbbcf4b8f", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "111fc069a8e936b6cdb8b0158efdf97308278314552f99445ecf31c5cdc1eb24", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4c7f1a994129381b988e80622a0cdc85080f54f28b97e161baff81ffcb0d3ee", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37be285aec14beaedfab42ad4e9cde5476f170206e489525d8688ff7139dc378", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f680e9cc292999d2412bb725905bec1cab72be574da3ac96a081243f3e8392e5", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ab265aa19c38f6daa40dfbc1799ea9292bfdc84151656f1c55c459e834f3f23", + "regex": "(?i)^https?\\:\\/\\/atalizasaonosjogosdorobloxdehelloween\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a6a6b0ff3b4cc302e662676c918e5cd66c2dcbfc614153a04703184f4ee4e2", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e360017119d68526f379d5398f249cd7a1e3553f33f61839ea1ac7f92b934b09", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbf64e10c071dc00fa6444c813f3aa59087719074fc66f4a463c8e8ea84668d7", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e13fb13e1afd4b903c4d88b6297173e5085d3e33901f57511d54633734ac39", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c27e419ec853e672e8927bee031a05023a3163a23a0dac6daee3f287a04ea88", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac2ecbbf6c524c2f92d45dcfe1643680c1b5e58f8cf80a0d57d14c84c1a9b29d", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c8c5e63d241f96e9677dd2a9c18f40ed381d90aad44d24afe5405a919e3d6f4", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b41f8e4d081abd5bc26a5d45558113f6d79f281db94d7196b238d0e77dba3887", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "165b9ceeda388df40d188d5e84c922f668086a4f210d67583512b883d1b76d15", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe170cc39fdce0d62d5ea20cbba30e0bd7ddfa2d5e44de988f89dca910ab3bce", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32642d397df141c80d83eeffc2d7c912037cb584f17a6d1f119904e3083170c1", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ca602faed933bf7953f9cef66e96818e52985592f909fadaf0bbf9b660bb868", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhackkeybind\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c02c7eb6ac0a394a05bef14e18aba076a88133439507b3177647f4b54d4ec58", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6f102e3c8c136c0499cbfad47976f9d2976d4726ea4151a9bd72cf38130b77", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa8f9f4638ee8ae834cdbcb3e9bcb633534eae9492b300a6cd43053c6ca2c0f5", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a41e6096ca3d1fb9502d1983294b8812121b7c51f99d300bb528314f37bc26aa", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f56da179adab44de391bf428a736b6afa8ef340e2326b37a07c2f8fd94eb7f8c", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a57082714fc944312489d9018d3a92363339ac97719860b3e09dabd5b71882b8", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae0b8eb0340e0288758a8fe29f7371b04ca7a2391824a2de09e98003dd26e35d", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52f5ac412b7506e62a94d949d718d3208fdab2318b96e0970fa681908891be48", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63fe1c4b3904fdcd87875b61df6c55075d2c206fa2bd467a142cf26376f64e0", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70547e366e95045999c015d578082cf4c0cb45a64cd07a3dafbe182dbf759d1b", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8715ce18386c00a05034ada637cb02914c618ecb66282a7437b36c1ec958c507", + "regex": "(?i)^https?\\:\\/\\/usinghacksonroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c871cafd24880dca608ef1d8bc923d6db48cea6dd83823e0cd090f70ae316d7", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e899e17165a7caaae8589e57b28087ab666be27a0eb3bf36cda8fb060795814", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ef26be0a797e1c4faac7bda3da9104389d5864ef8cd6fc5582a9aa3aa7beb9f", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbaddea732ea5e937be07c566b20ac7c8542ba3438715f6d68a253d28a3b9c0a", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9b69a8e3983a0c049ffe2cdc3bef5b7d4b68ffff5cc9ce0ac751240e16bf156", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf927560460459bf08a93a6a205244134f2c66afed199ddb6d184b84788e6ad3", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baab1e840cea9bd9fc4617e648d2a7c49345ffc90b6521a2d608d70b5d01df3b", + "regex": "(?i)^https?\\:\\/\\/robloxobbyrushcodes2019\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f171a89cdab0c80513918e36f558c39b6aa395261321b47cd215b2b805021f70", + "regex": "(?i)^https?\\:\\/\\/robloxobbyrushcodes2019\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52394e1357c58740345e5dcb12a74e048d7182f184a039a2cf62e5a62625d512", + "regex": "." + }, + { + "hash": "d75f92e18e0a770f71d7fcb2c331ae686764aa7ffefe703f20b17f6473e0681b", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8f246ac59c749c27029a969251927cfc55ac2c0b1d8fb5f3ab19690ce3274b6", + "regex": "(?i)^https?\\:\\/\\/hitlershirtroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95841269fe8a208f817f77e047d7df4151c9eaba341b0107f5e2346d160e0760", + "regex": "(?i)^https?\\:\\/\\/hitlershirtroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29edda3f95c7631e6db97566c89a930762c78b3180f5701f79c3730bd3db96a8", + "regex": "(?i)^https?\\:\\/\\/hitlershirtroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82f735cbb221944506fa9a56af0dc2d953ffbc131e70df70a36f491bec262168", + "regex": "(?i)^https?\\:\\/\\/hitlershirtroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b416a805df274c980cfe52e624e686c47cb33b2f35ab54f2d3d8d4cab3678d05", + "regex": "(?i)^https?\\:\\/\\/hitlershirtroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b6106f9ab5857beab1e194c41d74399885af5ec8ff800c0b02bbe10748196ee", + "regex": "(?i)^https?\\:\\/\\/hitlershirtroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5256a3298fb05259846ceb2e962b39af5166b7a606b5a48dc53ac1874c0346ec", + "regex": "(?i)^https?\\:\\/\\/hitlershirtroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3743c36e2352ac68b77335ac8d6c6ab07a7fad751f588b863bfc1e9a8bb476b4", + "regex": "(?i)^https?\\:\\/\\/hitlershirtroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cde2a6ac4a55352d3d137a1c54c07b647790ca86c15d6702c2dce8d3688716d4", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e95f3879defec689a98a50c5a1a62d37f1d13658b19ee27c3bfa2482a998d4c", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8241778ee7fde01cfeb95b2995fedf93623c65b9d90dd108d6ea888d603ac07c", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbfc627015c95817c44f6111020ec436539edf333d3c8eedd4ee25610c1e0b5d", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3442e0e0a587ac25a27d72859bcc0dd0e40fa1b5625d5ad6de1fd616385fe7b0", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e558d1018dad1dca8f86a8474fd0509cf1a7cfe84b170176575f29134e435480", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c133e114edffa4ed3d4ce907c7a7cb15b11b127365205e5b6fc9ad8f3cbcf899", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba607821f11a7269af185b1e6097c54a20e8b0e2a25e77fbab2d9c0c83c82cd0", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "419705b4c25290bdd1cd3fa5edee5dfe10a689a6d4d2710ee0f977b881627a17", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27146b72cf9b05135d49329ef769fa393b7317ed354f8fae6b4f943cf1a4fc59", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24fe4140d50d2d06d754f67806fb86a4993d6d901b61eb677ab3c57d08d26634", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8dc6dbd24fa62cc6d7f25bc703ceeeb3a18ec2e39b33ba43705ff5773cb37d9a", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d8ca748625c87c35c60cf22ae7223387581c6c0fd464bdab740b72f0da853b0", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a45c9ba367f1cf7714c700b586de69b3ac937c5cac7b441ff5fdc83bbf6e4ac4", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ad4151f16334e19e122393efd6e750350575dfc99eb90b1656d7a5317d0d2da", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2824a7c322aad6432695cfecef9b833b48a27ed4151fd573f717228b51993acb", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7df5dcd9a5f2fe584c8a9787e3fdaa97529d4fc60bb318962eb1ab172fa231c7", + "regex": "(?i)^https?\\:\\/\\/robloxexolinerscript\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04c4bcc43f3c55cdc64d756c4c53ee5d4d0f96729c8d25746bf0e85eab9c50bc", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b402d388624764972c427bdcf031cbae38c21f9f815c2b314635827dc63aad37", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9710e7553e6d4df538b43f36fcb4ba80ce0ffb2c5d626e8d75102300d436bbe", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3156cd672b2c68cedde7cfa0d8a56147db265fbc1922fed950c9f434c7ded6c", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d41c2c1681bfefa407694742a776d702a4f560e31f2db3d6524f0ceec6254b", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a95a211ae97c774fd1ef5bf8d270c289f87f14e60b4a79da54c56e64df7e163", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1ab04521336643a89eeb1aa3e4d1986bcfcc0707cbf86991f39bd7731e05073", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e98f2441817ce9bf8ff21dcc095d65bb2b01b22a0c23298930e70dc2c2d2ae3", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b44c2b3e8ddf7970bc3d3d6e7a78392da74bab0c90f450a7b1fb6c6c445e235", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de9e479c4505b091c6f6330b3ee065ea84a3254fe0e9f26675a3f72e4bc3d3b5", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a42ca2458b9ee05d9ad86acf4143388726c0527e86bb555605d90cfc659df0d", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc012ef15f11a3e91f9bb5f1f658436ece812378d2cc991defb2a1ad4fbaf536", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "976e2e1abfe66c3390f9ef35d238f5dd0e77a69b7befd571d831392a275f12ff", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "706dc8396c2237ea70d1cdeec4dadfcebd50e6e758f72c636c4e68c1f7d3129b", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "267984410ad1b7eccf4e5b5e4c3234b248289216ecc832fd118762cb023fa69e", + "regex": "(?i)^https?\\:\\/\\/webrobloxcomhome\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "454f7fb109c4aff28f134c1a9caa40b09a156bfd01e5b60825a368b512435227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook\\-html\\-css\\-" + }, + { + "hash": "84e1d50658385d36a6cf6a8f74b650e7125dd0267cc6c4738b7943aaecbebc74", + "regex": "." + }, + { + "hash": "206c9715c1bdecea12f601214cf6892df0a5074172c9424efa5319b5385f5065", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-clone" + }, + { + "hash": "1b0bb291117b7ff0bd1a1039104240c36a65fdb95bc41056e98b02b3e8a72595", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+WhatsApp\\-Website\\-clone" + }, + { + "hash": "c97fb6b8a119c48975610a7f56ca3bce6e68d69df030e02da765e41715972582", + "regex": "(?i)^https?\\:\\/\\/jogosqueparecemrobloxdeflashnosjogos3\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86dd9f306224d84d3a0143d705bbfa082b2daff0043acbc76b36cacc44597514", + "regex": "(?i)^https?\\:\\/\\/jogosqueparecemrobloxdeflashnosjogos3\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ac750911246e4162148c57aec6451de649240a3c77d2e92d373e61425b598b7", + "regex": "(?i)^https?\\:\\/\\/jogosqueparecemrobloxdeflashnosjogos3\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5f0aa2472f679510a69e718aa39cf9de54ab9831a89769e759e7b64f5bada30", + "regex": "(?i)^https?\\:\\/\\/jogosqueparecemrobloxdeflashnosjogos3\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "180e1ee20b5cf766a7741fb6f8d7987190ce82309747d1d38a93cac9930a280d", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "030db76972c44c47f65c91b73bda60803e444ccd26ce06e7cc986997f9e092be", + "regex": "(?i)^https?\\:\\/\\/comojogardinossaursuimulatornorobloxs\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a8c3141e2f09f27c5e5a0df50466cc0437b0e9998b91fb3c74e9666f4155c2e", + "regex": "(?i)^https?\\:\\/\\/jogosqueparecemrobloxdeflashnosjogos3\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13ef0d05535bfb24820933c5f199a53a257aff7ac5d49078a59d2f380f302896", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edfaf1dadb9cc9b26fe90f26fab6d7a23d8956551145d34a33a7e784b091142c", + "regex": "(?i)^https?\\:\\/\\/howtohackfilterenabledgamesroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14c6cfc55d3c5b23882f131cbbabcf529e8067ee7db9c4bc3b73d472087b8230", + "regex": "." + }, + { + "hash": "db3fc6aec93164a6f5f31426abe37682bc99817af5d73ac1265f21b509eb0b57", + "regex": "." + }, + { + "hash": "d67c3c83cd1c205d83efe2fcf84c6fbd49e050217a9ce95144c54c4aa175aa06", + "regex": "." + }, + { + "hash": "6a06a17df02294f82251d6cc079e88f07fe2f079e80c697a2afedf7ef5de2857", + "regex": "." + }, + { + "hash": "8423b1ed4a121ac9e2cc5e883b68e913a135bf0c3a811133f56f51eb484a8bf6", + "regex": "." + }, + { + "hash": "e558daabbb8b6383e01551fe934f5f89f8a99a2768d6bb80be4ae65cac6cebcc", + "regex": "." + }, + { + "hash": "2cb9c5b18a2409a24d00c947dd3d09fb7f149878ec472b80de6fdb570f3e33e7", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aa2210295da2cd60613fdd27a42d9c91475590b8239eca715bf187b67f1e581", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84c24a88f2aa2dc59ac4d57ddd6962a8cdb8de29e2342eeffd6e526798d2d93b", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07886d3228e5984e215865c664da9abbd2b5d47311ebb3ff2823284a60d2a1fb", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8ef08139cf75c5aaa7c11e62d938daeb8dc7f38919cee0e34598ae906f4a10f", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dca80d7147e47f6a0ef8d3467011ed4b8225aaf7f1d909b4737d630710217cff", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ddb89ff0a90393b95c1ea9dcb5cc76bcdaab9b3b624a522980607153d23ed5a", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fd8cdbac4c820020d0705a617f0897afb32316fb75c854029c544f5e069387b", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e522cf7493dd6304ee0010d9ae56235ca9f2d1f833c202d17e9392cf95e869bd", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpizza\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5973db8665d1f0021f7c92a7b49eb1d26b7f68c70dbeb96cdc9b155936898b04", + "regex": "(?i)^https?\\:\\/\\/comojogardinossaursuimulatornorobloxs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f371ca4569d9e72705320039a87269eee4b0d98fb57562faef327ff20d43c299", + "regex": "(?i)^https?\\:\\/\\/comojogardinossaursuimulatornorobloxs\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1efe206ecefb48a8970c62de1757e6ea25f17c5cccf9c85c53cca0147b24ca9c", + "regex": "(?i)^https?\\:\\/\\/comojogardinossaursuimulatornorobloxs\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e0e1e53dc9be5a3c9b3300d70544dc2d7e0109d4f575153e71f7109b2a600b4", + "regex": "(?i)^https?\\:\\/\\/comojogardinossaursuimulatornorobloxs\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "788d3ad9fa6381bfd512bc3f350fd1da43ef71824defdd24502b8ce3d3155f07", + "regex": "(?i)^https?\\:\\/\\/comojogardinossaursuimulatornorobloxs\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86d3c9e803509f000524d36a86b42765996fb22a60eb8b270aaac52d0de407f8", + "regex": "(?i)^https?\\:\\/\\/comojogardinossaursuimulatornorobloxs\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02e7855e37963df0690c930caf01da5fe56473534832df5c6ea313364fd6e7b1", + "regex": "(?i)^https?\\:\\/\\/comojogardinossaursuimulatornorobloxs\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59495b7765b2a9069037054d2979040a3c5b7377611a927211b8a8a74512a153", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a00ad7ca0a436baefb0decd1cab890251b77f35099974c9d2245f16504053a3", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7061693774626d5df36d350106810c7d04a5f0b519a81ef4eb71db66fe9abc90", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "077c5d7e3d5c8c2e5d3ecba2f39b643613c8a89c0d1f3ed252099bd04ebdd0b0", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "966121beb4c1bf9ef883357e1a3df32fba8c1a4ab15e93083931fc9a6aa6ff21", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "932c0faf27d8170364b7a7e6a3fb3d223d208c96e8a14f64d98f29efe38d083a", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11902ec810f3141c873cf70c3ed328d5da830dc9bfaa6cb3991acea0d2f68a04", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c3e1ab646fa14c9277e618993c6ac070b34ffda8602de6138917d4e5b820b51", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92876da06a4430dc55bec825d4097468e07b2988fa95ef00ba1486e021eb1028", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dbdaf85321cefdd30ea873469dad94817756a6000aed40e750dfcf263052a8a", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d19dee474b5ab48e0f3b8d1987bfd3a825d133aea05b566407a4b4fbd6112730", + "regex": "(?i)^https?\\:\\/\\/robloxfreepromocodesnotexpired\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9356b4e6f3664727e0aeec5d05244c6bf73d4c9cd8c126424d7e96e697a715a5", + "regex": "(?i)^https?\\:\\/\\/robloxhackssirmeme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6f4449b180e1cb7e96ab2f3653aa5080124d1bb1ed7b0af3d4844396c18a7f7", + "regex": "(?i)^https?\\:\\/\\/robloxhackssirmeme\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f71754408c75a35691bfcf47f986899413a8683ec23258c237a9e401b1cf240", + "regex": "(?i)^https?\\:\\/\\/robloxhackssirmeme\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76448222e27293f158d7684d195811cdedbac01c14da3fababb94d5b726df9a3", + "regex": "(?i)^https?\\:\\/\\/robloxhackssirmeme\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a510e31c4ab4c7797fef46c2e0ede85ae431fe9c211413e84fecbbc881a7396", + "regex": "(?i)^https?\\:\\/\\/robloxhackssirmeme\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f320120dcff56bbca72a74f6e455dd88331418b2ab4e42efe9a888bfc0b3e744", + "regex": "(?i)^https?\\:\\/\\/robloxhackssirmeme\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eaf7ac46259d9029122537b03a27156e97addb9f2c42415b98dd842a9d59a4a", + "regex": "(?i)^https?\\:\\/\\/robloxhackssirmeme\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "587f1db59da1e20f4b24813e25e41cb036a8ba2671187cf9fba7daf11d2c6a70", + "regex": "(?i)^https?\\:\\/\\/robloxhackssirmeme\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a8512cb277c43dd9fd106e0445beb1908e85a05afa0a2fd3e83ea8e2b01c628", + "regex": "(?i)^https?\\:\\/\\/robloxhackssirmeme\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "657f4dc26badda54b101a486096fc3012b8b60bcad2d5afbcb2b26aa0db14a51", + "regex": "(?i)^https?\\:\\/\\/jogosmortaisroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f246cb73591a08ab0c413976e81a5e2ecb6584bf7b9adf988faf5fc44e59e12", + "regex": "(?i)^https?\\:\\/\\/jogosmortaisroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e56f08241733a3b73fa802a046032e0a210568dce212a65f704f729c06ecd6c1", + "regex": "(?i)^https?\\:\\/\\/jogosmortaisroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89a7e06a42ba642d0cee01f1331df3c0c2c6a9bc4776031ebd4bc1c6f5e93476", + "regex": "(?i)^https?\\:\\/\\/jogosmortaisroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c202a7a8236b2eb0cb080c7b79212eb695e84758a439568956d497100b1bdae", + "regex": "(?i)^https?\\:\\/\\/jogosmortaisroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4578350cec98e3bd942572e062dc62034e3eb6ed30cbdd152d4691a6a72fad53", + "regex": "(?i)^https?\\:\\/\\/jogosmortaisroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4dbb72cec63eb853a32320b4377993bdd14b063dec974450e2e602ae335caad", + "regex": "(?i)^https?\\:\\/\\/jogosmortaisroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6109a82e4a94cbe1ef1faea057d5d3c2c93ed3375f237cd6bcc4439b37b6a611", + "regex": "(?i)^https?\\:\\/\\/jogosmortaisroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db201fef761ee3f052b8cafa9162820d3b3d1aa0a9c9fb44ff51a02e6a7bfb17", + "regex": "(?i)^https?\\:\\/\\/jogosmortaisroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5293ed446ae5c147a03cb0828bf0c68eea702b7ffc5be0200239a375ff9f5357", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d097e28f15c1a6c633dd4df9cf5d80e608b04b964557ed21c469e5d8b50afd32", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4805c4dce149f5df32d939aca08c1f0dfcb8a5e0820968c1df6893a876e7e111", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c60a3519800aced8e29b81543b6a3ab6cf2ba2fa904da1c8d4fa09b253b6561b", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49f6f04786b5acf82de86241e7fa94ec1b79ec71462daef7cffac742e91702c8", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6c1302e4cb52363e5277d03c1c755a3ceefd190a02156e12e18d09643a3b85f", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2671e97d1a2d4134039c7e05d39315a7bb0355c58b66eaf2ccf15600910eae4", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627cb1a1a7b39cea11f7a338b584c16ccfa8c97ef9cb36e72687dfe9960d7010", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "268d970dafd1550b0ae27c1516f30ee1574b49bc007cc4fec2acfd04c9b57c11", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10f1ace5832600ab7005fde83bb13638dacc280fb3a0c098dcc7a3f51257c1ff", + "regex": "(?i)^https?\\:\\/\\/comoatrasesaqualqueparedenojogodorobl\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4933c5eb7e88e59edeebc116a6fb68a0346a9896caef73df72720c7d1a4ed03e", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90c53229fc1d4e99c8d130fb0596974b70da68c667ead15b9443139d6ded4b35", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56607b4605ca6130c8b209ae3d0367d88a26bbfe583e9df18fd9a48bcbf35144", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c7f06f21584f9a3bf20b734569a0ada938b1e4f1e06533904a2835dc433eea2", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1ef71062ae1c44be46d6090037da7cbf5dfb77e2050d259dd198ef9d5328ebf", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45044326f3d64ab9e9d3dcaa9b64af16654c38cbfcbc96089a605cde3eee4d7e", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b98ced8b1e1528cf502017602308b82e9d42892cf5d8b9717e287255a6d9c121", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf89114a1933e7176c03d07c3849869161217ef76da0fe796ccca9b8b18dbe8f", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3cbb598eb46c616b2270fe89a78e4ce67a48b94c0b12e4cb2efef88bc210087", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6d4b855eca8f4ba95775ee895f9f7b329e42f1b0e1d106642bf0e5dd10ae008", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "891f11d95172503c5dd4be5e75e76e14fcec3fdd941b24bcdf86f8d75b1e4ab2", + "regex": "(?i)^https?\\:\\/\\/boxingsimulator3robloxcodejune\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d420ce48f695ff41462003e5a52b485c45b793f8ecc14839c43f8458f2decb1b", + "regex": "(?i)^https?\\:\\/\\/howtohackfilterenabledgamesroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16c5235bbb24584df22672f9f4b312ba8048a20acdf0a8609e672afef7639436", + "regex": "(?i)^https?\\:\\/\\/howtohackfilterenabledgamesroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f512eef23d34b13ec815921869ef5170cde6f005037d7feea5b3bbd136b9a04d", + "regex": "(?i)^https?\\:\\/\\/howtohackfilterenabledgamesroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a13b573571dea2510d439ec49b5dd57fb42280c3be5c1193b097b0292430c3", + "regex": "(?i)^https?\\:\\/\\/howtohackfilterenabledgamesroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae6e556118623777dc58fae7d432971c648bffc5135997e939d5376ff4c8ba5d", + "regex": "(?i)^https?\\:\\/\\/howtohackfilterenabledgamesroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4287ad6186895fbaf0842551ba9db9958e32c899380ea0cc775fbaa6d5b24c66", + "regex": "(?i)^https?\\:\\/\\/howtohackfilterenabledgamesroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b041968846ec7005a237595d3a8c76ef6fab059c2e87daf518999f8f37e5aaed", + "regex": "(?i)^https?\\:\\/\\/howtohackfilterenabledgamesroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e74a816aedd70202f9745e28392ff762ef48317f057caad6e2e9397fa4781de", + "regex": "(?i)^https?\\:\\/\\/howtohackfilterenabledgamesroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "471bd6df6875fd0648fea66d5585fc2f94d673d6aa2d384ed13e45bf4d7b8995", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1240d3961370d2bccd893db7cbf41fb0b16e9e5fc55aae77d3ee2c873528dde2", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58e4a891cf69b14b0832f416d343b146a69c9c989de284f3b4237914df0d55ac", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0cb18dd429fd33dd0e536005e81eece7d915a110e248554dc9d5d385ca7f198", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "341c5bf123370dcf477c0db9f6c21af87d9c3c8215e956ecb6f82538bfa9a187", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e0419f5db9185654c43cce84aabcc1defed7ecb20493608332c866bdcd51a34", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae65970d2813853a7666150887bb4270d5245fac89fddc95344b70fee0ec2784", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bd1443151596668351f5ab5a414bff4980cca1329c88ebd16e91b8a56efff89", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c38307f903a1697b57e8472c0da59c8dab0650b0b07df82bca46858ebaf74e4b", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3c82fe7eca9cd0527e16fe622fcf6ecf662f371a4fe048bde2aa28ad121c4f0", + "regex": "(?i)^https?\\:\\/\\/robuxroblox202124denoviembre\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd449ea7cfa55f8ddb478cd6bf320bc90994ad0f98609517bb06e8845a572476", + "regex": "(?i)^https?\\:\\/\\/roblox\\-xian\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3490a2d350644010ac5f80d0806b548f32009c240fe02915dcb927932cb95da0", + "regex": "(?i)^https?\\:\\/\\/roblox\\-xian\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f4e7fc971f4421abcf76f507e12f9176008b1f72dce00ff1cdf19baa044b189", + "regex": "(?i)^https?\\:\\/\\/roblox\\-xian\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71f11aca3d45587285f1f0d276717002f83f4f3a0ec60ba4a7f20ad5d829ee5b", + "regex": "(?i)^https?\\:\\/\\/roblox\\-xian\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c72005d767860fc00cbc5a739e304b4e306488641f17b8e99b4e2d885ffe3d02", + "regex": "(?i)^https?\\:\\/\\/roblox\\-xian\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe3e7cafaceb141ce171ca535a9e1d82b832ddebecb045804dd7c4c359d69bbb", + "regex": "(?i)^https?\\:\\/\\/roblox\\-xian\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e4109a5d8c25b563bf4ba33cf5b3a02ec48781dd3b4e894f5b024849822b61d", + "regex": "(?i)^https?\\:\\/\\/roblox\\-xian\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ec153ca1e7b431b83eb09d34b1d5fc827992b645efde0d3403a0521c86d020f", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96b6543ab225deff7c1aa795ae2a22942b8fa26306d4d0bae83a7ff8c2d59628", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b67ce9980cb048cf11948d2a87a57a3383ebe792247ab23acb9f682c8a4f3644", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84ab1e50269b0ed91bdf0739b30be3f32f36b45fcb6e31ed4026630f206bc562", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e69a668446e7bf0aaf1136c812bd119b7be0710cd73a06738ad1adfb66f840de", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e44923639430fe3d5f396ce4d124debc2c5ba93fd147ec09a15a0ae1b6c6310d", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3b013eb4ac4619e9594364f3dcdf8dd96fcd658eb85ad95c0e5a27e5c9caf38", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed57e42af16bb966fbec24c8782d3666c3a03d46678034adce5237a504aea32a", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71ab04e4aac6c9a78c5db9a683690de28a8671f7189b98c2bb751965ec92899c", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ff8858dc6fa9970e3533ed55c352194da5c636cf0c87edee9ad9d10b5720520", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e36ac56404c05000439a1d3bf01bf80c295c3284447e8627c87cb4d36a8a28a3", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59b7482ee26e838612f13f7b107590959ea5015f3cea02099fa52a14631ea0b0", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c14eaff0343c5772420ac67ea75f7835db7487af18dfa270d918c4aabbc9a5e", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a23cf80a022c213c4031f596243824ba8173c4e21316b0e72acfe0132c54922e", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxemportugues\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aea6d9cd52f6e1a1fa6f44a7a036ba6ea5ec2f5def82945b691be5b3006a150", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93ab7c80ac16ec307a17ea59068e994a7d376b4b453765b2bb6087e3f9e8e755", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7066541d4b88fd25345d97666cee2a60ec58279c62045cd5374335cb09b7edf0", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f8876526c0b4b035e3d9af478a9534c9f24169ea164573cc74ee7e785bce9b6", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53fd17168a1d77ad6eda0e9bc884f66a56107e59499927b4ccaab0403c3ab05b", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22975275ab92e90234cb7a8654a3675c573b26d45cd21356ce58d9a883bb37dd", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ce02f780f096be9c23aefd3244272a7eb55e67d96a0ccd6d002cd57d1bc3392", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8dcc413d2b0a4f1f154e2e9909708105ec97e6bec7c6d8802c6693fcace1458", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9eb545a07251c99c32e4518016f417535728f893123199dc7f281ca77fe18e20", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "822debe56de5ffb8846a5ebff7b75bbc72ede3ba3bf22d580e3cefc59b5d9b6b", + "regex": "(?i)^https?\\:\\/\\/listofrobloxpromocodesforrobux2021\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a99d8506e2be52f309f4c397bab342fd57cc79f0021bf91ac9d7c3bc8f2b7e8c", + "regex": "(?i)^https?\\:\\/\\/jogosde2tiporoblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5dd376301ff522be9500165b2504749c398f3d2166636e29cd406002825a70a", + "regex": "(?i)^https?\\:\\/\\/jogosde2tiporoblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c118dc63775e6c2d3bbee0360fcfb4df6c27b2c3564525d7e2399695ec42cd5", + "regex": "(?i)^https?\\:\\/\\/jogosde2tiporoblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1a1cfbafafc337915870c052be96b2da133c9a0a832d17edb8af13c0a937109", + "regex": "(?i)^https?\\:\\/\\/jogosde2tiporoblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "066f77214dd54b738a599fc096a971f4b3cac3fcfc660fc1210cb2bda292ce21", + "regex": "(?i)^https?\\:\\/\\/jogosde2tiporoblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b40d2a682a31ce8287febb445bda159dc961cb7cfa93c86850350b8c18c84b1", + "regex": "(?i)^https?\\:\\/\\/jogosde2tiporoblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7c5c532b1fbe28c10ed68b90135505053dc5901325a81d3ee737ecf2ee28a3a", + "regex": "(?i)^https?\\:\\/\\/jogosde2tiporoblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58e482025d1a831ecc66a0d5dae498187e9ee1c1a12fe013e47e461cc355e5cb", + "regex": "(?i)^https?\\:\\/\\/jogosde2tiporoblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd668b9c037175b09c1679690b447c65b728eaf0ed0f8817751a2aae4c1245ff", + "regex": "(?i)^https?\\:\\/\\/robloxmusicdecal\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "475bee2e29b7c887549dda077c96266bf35724d69e0e8908cfa1c739895c0d19", + "regex": "(?i)^https?\\:\\/\\/robloxmusicdecal\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35c297994864129ddd38a73228b2ca3243fabfaab2a8856a52143152441c6ede", + "regex": "(?i)^https?\\:\\/\\/robloxmusicdecal\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8fa2f4e4d90696b1e33b71cda15442103ffc33d2dcbde99b8156228407a8a76", + "regex": "(?i)^https?\\:\\/\\/robloxmusicdecal\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61952c4dc09f3407d47a1050f0369f165ffd962117adfcc6b6b9765361e61ca2", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13897aba00c3d12438c1b1671e548099653f5b89526425a65e8725f467de4be7", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eabc401be79bec74de5d25fc5b591c0088aa23c62d5b7fa7001f3a4878da834", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c14d09548564444f5488a5ebef11c7e9effd5a773763d0d183c443900bcfae13", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3203fb0c99853bbc8482867dc05cb91c407f5df1168929ab22767bf80ea4efb4", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94a8aed31a4fd0234373cba1169a4263454cbf4fca1d9fe9c508801472f03840", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0a35e455f8c0cecdf15ee2a6895b7a98a92c3ae108383affeadb9b2566498ce", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "475b99ecb84d71c098ba25152fd0d37b22cdb8593a1dc2647e5c6fd52a2e7e54", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f47f5a52235c1178028c1ef24adcd570a6e966df6ae4b903721da3e98abdf4d9", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c421e36a824b0a91dad2ccb5d156039b05e6a3bc279d269fe700f0e011e9289", + "regex": "(?i)^https?\\:\\/\\/freeinjectrobloxhacks\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04de50dde342c9e3dece8bd0a99eab57877e99efe3cbe234a33170e60dbc8ca5", + "regex": "(?i)^https?\\:\\/\\/comoganardineroenrobloxjailbreakyrobu\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae1356cdaa78652dba24cf3b3c1c36775c2b628b56973a88d080d4250eed526", + "regex": "(?i)^https?\\:\\/\\/comoganardineroenrobloxjailbreakyrobu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f52415b11a399d09e668b2e5617b7bab926172fd815282c008c5442e6ee71abf", + "regex": "(?i)^https?\\:\\/\\/comoganardineroenrobloxjailbreakyrobu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f889862c54fcc8dfc8f19171925bbaaf3564b3202b8468a0002b8ce5e634ce2", + "regex": "(?i)^https?\\:\\/\\/comoganardineroenrobloxjailbreakyrobu\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02da8773a06b06dcb8e2da4cb90fda6125bde1b5ac7d69ff7063044ded8e6fc1", + "regex": "(?i)^https?\\:\\/\\/comoganardineroenrobloxjailbreakyrobu\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a9fe00af210d7b253aafb4021134cd740018fe25ca4dca0b29e07a949a5583", + "regex": "(?i)^https?\\:\\/\\/comoganardineroenrobloxjailbreakyrobu\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4372e0ef5c1ee39a9567d67e91b7761fbb4bdaf37782ef16b2e01a3d287b6de", + "regex": "(?i)^https?\\:\\/\\/mapadehacknoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0894b737a0541af79fac986899f0989353b395c59949346d6f348a7f053180b", + "regex": "(?i)^https?\\:\\/\\/mapadehacknoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a12bea3a5cca4a86f638e444ad7ec9719233b9a6634771f8f62d17f91685ba1", + "regex": "(?i)^https?\\:\\/\\/mapadehacknoroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "650d72f67dccd7966fb94be7bb7e8bea16181efc016dccb519ea47af2e2b4f31", + "regex": "(?i)^https?\\:\\/\\/mapadehacknoroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e3cf4efd7688553742c3435901f6436ca3858d97731726b0f27ff7e7830f30d", + "regex": "(?i)^https?\\:\\/\\/mapadehacknoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f4b30f7e6dba9844e392c9f508cac2a901e6b7e210782124be0cbf81e2cdf3", + "regex": "(?i)^https?\\:\\/\\/mapadehacknoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e469476a85c5353c00036d5d34dee47f5afccc68c0116a3bbc11b4030419b86", + "regex": "(?i)^https?\\:\\/\\/mapadehacknoroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ca9eda94521a94be748fdd050da491174415665d4d2f11b4ff3967494b44bfa", + "regex": "(?i)^https?\\:\\/\\/promocodesrobloxfebruary2021\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abbc571cc1150bcdb8577678bc5cc3c4aa1f22432dbc192e848770f54f3840f9", + "regex": "(?i)^https?\\:\\/\\/promocodesrobloxfebruary2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f05d796b2604016ae39a6bfed23f04add42fc6c2fa290faf470a76df497a79f", + "regex": "(?i)^https?\\:\\/\\/promocodesrobloxfebruary2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab49bedbeba6c17193de9061f113e1a0db5ad5faa0cf67f02d1d1d4cc8720b4f", + "regex": "(?i)^https?\\:\\/\\/promocodesrobloxfebruary2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f62f659ac06ad9d02d5500578b70371ed4757f26bb59e3a72b09e7c61948b9a8", + "regex": "(?i)^https?\\:\\/\\/promocodesrobloxfebruary2021\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1413a81a1ab649c9934078160f39d5d2e271b489c005a680d3ca03c4b026764", + "regex": "(?i)^https?\\:\\/\\/promocodesrobloxfebruary2021\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1caf48a4ed10556b6bbf8264200383a642ba959e203bc1c6d59fe6338f6de162", + "regex": "(?i)^https?\\:\\/\\/promocodesrobloxfebruary2021\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6be91a0760f13114069f298f91cf53a2eba03fb253a528fd374bde8807b30d5a", + "regex": "(?i)^https?\\:\\/\\/promocodesrobloxfebruary2021\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ba9eba04277ef2506875fe1400503a230e979985ccb47391e298862857250a7", + "regex": "." + }, + { + "hash": "362898fdc67ee8ac510aad9f02c3290c00f44c4645987e2fecebf0a7078b1307", + "regex": "(?i)^https?\\:\\/\\/robloxtoolflyscripthack\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "904542e79f80fcb8836da09151498619320ce505cc70d2522e2742e40c888862", + "regex": "(?i)^https?\\:\\/\\/robloxtoolflyscripthack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c99ee9d263d281ef680a278b3e44f552efb8f306b0fcc570ae006b057e00608", + "regex": "(?i)^https?\\:\\/\\/robloxtoolflyscripthack\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a4ed7eb2ed401d4d130e3bd6751d8354e4962c85fdf59cdd0a09baa4a47e32", + "regex": "(?i)^https?\\:\\/\\/robloxtoolflyscripthack\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f63a347ec572b91a7007beefffd4ae25a32aecbc063730a077fd3c2c50a0171", + "regex": "(?i)^https?\\:\\/\\/robloxtoolflyscripthack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb225da254d516830b873b521d1d981e5a962a0b9e3b33ee300af5b594c373fb", + "regex": "(?i)^https?\\:\\/\\/robloxtoolflyscripthack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f22e51791f23a018f2d73fca9f0a2d638c846d58c4914091f8741430deaf1d3", + "regex": "(?i)^https?\\:\\/\\/robloxtoolflyscripthack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b2b1a33994aa9b161903132e3ecf2bcbe65797f6b06cebf94353e3b370d4dd1", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b40c7225681be026ac244e56cf2a0c1c5f9e1e4a518fe87ea81ba7b42fda13af", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b06c222a5b2c3dd9b773972aa1993a7eaaacccc7c38500562dfc21fe43e0fda", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "addbc94f7a04d6f5bae5ba3b96c6c87a74bad7a9158537c4fd329dfc058d1ad0", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "222ac3f0ed474081b074f390e67db749eca0cf0903e7bdd9706cd27060d266ea", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "282afb05904a7d78ca42ce857e0d5a0525479de2947c9c08d058da69d7b01dfa", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a42f26aa6079504bd1afdb0f261b2cda08ecb622bf987e2c6b4fcfed4fd9b72", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d4f99c1b69ef599bcafba065b673f3020d07fbd1e2249e2de0e2004d43ee39", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70e8011ea1710c1444a39293b8b53470407bf45324ce81486faf7c2834a934a9", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be38eda2eb758f0a7fdda41825dbdb7c3e61c3213743caf7fd67b8bb91c37ce1", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83c00befc3615c3dced1fcbb1fa0b416f7dad0c21174766df99cb8cbb8b096c4", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dabac33f11821cd7b4a2d7c0fc28230fb1e598a992a5a4051ad5a964d225c1ee", + "regex": "(?i)^https?\\:\\/\\/hackadmindinosaursimulatorroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2298a643d9ecc8ca2b1ff490f8d10c44f17d1b8becf12286ef7444b299473b54", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beaa3ac21f33832c923e1714a522a075f7e30c0f87138ac6dc09429968ea6cea", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6d89f24956cd84d39dd7779c0bae32fad5f6c700a95dcdbce3d6f612c3ddb2f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96b6b65f949e17db4dd2bd5d56755db6ccd83aab35d4f27735b72d051247d3b9", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88ab35f9ee7959f7235c0a5bc2db1d3073ca23a0300d18c7feff913ca0eedd35", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d19916957d209586d06e70fe9c149829cffa8ee92f005b40b63252e2825f8897", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01ef8f7794e4fbeeb6389b1cb14730b9d0663e4a617aeae5693f305da3c59b80", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53be56e8f8ebcecea93011def580f137d1ea932dc2c5fecc432589b599cefbde", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a2072e6c36aaec111bea559d0cdc9b36afe73626387a420e06eb675b3d6c0c8", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6140bbaed55949d916ab04e6779bb6a68fb043b1f04f1642901333a44c7d680", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdinossauroesoldadoesoufow\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d045b88b3dbd3d526191658008a5cbfae6f97d710bd2c5b12ebd6f6a9168ede7", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4209ecab6d5753df0461481d653b419bc2616c479f3b080e515a88cc55c697c5", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75abd1fc76087f36f4df6989ed290e28b69e3179f1987694ec7b4050253a213", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f151d2d3bf2da69e57ef28952291b6a4f39d618998440bc6e6fb850f1834c4a7", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3627500f515f19230723114d12e923b6d84441147c19d43e139b6b48fd1430b7", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c776962243ba83c0f8c2ffa5f0deb463d3a3c70cb8afabdc5e0f19484c2eca8", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c8131a871f4d963c889ef2115b1feecbe29961b149d3b2b643677b95c73aaa7", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f79a2f258cd7a3c1c10009381d5572f191d80d94230b47c1c31a6af9d560f022", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74f342aace6677b7336f6d1053b93caf54168a14e769f79c6839cd86d5b5e4fd", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a250dbaee222add16d5d191fed5290de57032ac82ec5eeee8b21dbfe3db8c81", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8552749364f3d37e8e3085b0e2938028e383055df4bfcc720d34bc2c58c9e6b9", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f984d8751fcba537b120a71d699279ca347334cebd2ac888ef83f1dd708bba43", + "regex": "(?i)^https?\\:\\/\\/robloxsnowshovellingsimulatorhack\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4127a47d29cb0725d14d402e7dc2389b24e4d5664d31a37a3e355d27bb7c390", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d0125caa2845e8002880a3ece2906ff9fd8ffd8f566688de815290299f2f732", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3df906c3b16776718def2f8cc69cd4e45bddd3dc16d71c7d62b3d65821d1a0a5", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba4d909d7fa7c98456a219a5b453fb400b2a8e7af64338e207d2bd8038e8762c", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6541a2c0185bf095c0c9d9a458f09e5aa1df98d619c66ce141dc05960e05579a", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a031bb75574a31a3a68fcc512f0582f7216857adafbb26d19237b22ed4a30a2", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b524bca78acec4c1bbfaed5d9aa20ac868594aa9bfdaf8b6548c494e0b553144", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86032d622b367cb6ddbe280a2f3ccfd22baa61baad6ec0f264b7e1c3bf92b4fb", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33fb8522853ab351da185ed7ffacaee6f377ec94e16222cdd7e68ffd5fc3382c", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "565809f82f203eb01a45d5543419e02fd4b6e546a29be4b8ff1f448a3ded12ed", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "477ee860991977157496b65043538795521a6417bce4ab8c0a8868057dd515a5", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0160673cab5443d0c20ebd5dafdfb165183b503c93d1941658002afb7922543d", + "regex": "(?i)^https?\\:\\/\\/robbux\\-rblx\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79672255c7f8fbceb96469c619611d325f1d8a966b504984b43538eb5c241554", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "584d11b09ab0cd727ddd58f741caa912efd37bee71dfabb0ccae86a4b4d89bf6", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "531a94845eb9b2d558fadf4e46da3df2e64d32cedb08c6cd1d198ae34f99b560", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a21961f4a9d3604839632e5db18b00d83a75b7d4700aac6521774a87a17a9f62", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a7157adfc105759a4a55f817bbbe95d19d0c3cc21defc40fb14872a83c95e3", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e424bc7ff1a4a35a609f9d5d11ed2e37b5cfe9b65365abeb33ad54c837bbb4ad", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "419aacd3935ec05b745fb8d56dc961bfac681508ed235e43e7e9e014fd35ebd6", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c3421603d5cdfdfc8a208969a35f27a85b33a780ec45214e527d96efa2cc972", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1409d76011d32178b43d278e727d94b9bd5de83c11748eef474d75cb4e55d504", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1982dd4a442b9ec0ef0e079d4627633eebb978a76add05e5f88bc532aebf43c0", + "regex": "(?i)^https?\\:\\/\\/fortv\\-buck\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c3da2a020f5f22ee7deede1b3175159e0aa73860a7402ae720ba0bfe5166f21", + "regex": "(?i)^https?\\:\\/\\/welovefortnitev\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4046f6a0ebca6b5b184559c7653334ff36526c377083da01a04767dddda90dc4", + "regex": "(?i)^https?\\:\\/\\/welovefortnitev\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fd3c9c1415ab596fe02be8b379c2bfa13c8270268cb0b3877ab1801c0024ea0", + "regex": "(?i)^https?\\:\\/\\/welovefortnitev\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be287b19caf4b8320628d6a165469e04e394c3ae89cacc5fddf9bccda73f0087", + "regex": "(?i)^https?\\:\\/\\/welovefortnitev\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0914fae8ba9126b4b588b96b0f7d8801d652ac4c3480963be0994bd0ac9c206", + "regex": "(?i)^https?\\:\\/\\/codigoparaojogosharkbitaroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a176c02c9e9f6abfbc08fe4f7d8f0ad17c693ce2e142439d0ddfaf57af5326a6", + "regex": "(?i)^https?\\:\\/\\/codigoparaojogosharkbitaroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0a04e35c9c21002dc211da986210a6a31ebefcce9e7b98ac25d5319e403d155", + "regex": "(?i)^https?\\:\\/\\/codigoparaojogosharkbitaroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe6eb4d663881e1e2f90ec8237f889abe090ba19886f2ff4d74a1a46e9ad916e", + "regex": "(?i)^https?\\:\\/\\/codigoparaojogosharkbitaroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71d873933a877f56bf284070d3a05ca9f38562db07f37ea4dc0453b3ef03309a", + "regex": "(?i)^https?\\:\\/\\/codigoparaojogosharkbitaroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae8233dd3feab52cb72860c21090efbe982350e932e0c02402e45669405673c4", + "regex": "(?i)^https?\\:\\/\\/codigoparaojogosharkbitaroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5461eca50ed5e83d23c65da6363dcf67a23e691b7179c2c509e566f17dc4b908", + "regex": "(?i)^https?\\:\\/\\/codigoparaojogosharkbitaroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7178ba938db48cfc573e254f8b688189a2dfd8f30d331272cb5eb0b4fe6a3344", + "regex": "(?i)^https?\\:\\/\\/fotosdebonequindorobloxcomrobux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff4c55a0daaca8a42d22aabc5bfe213d7590e8670905667820572b9afe76d43e", + "regex": "(?i)^https?\\:\\/\\/fotosdebonequindorobloxcomrobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4a46bf1b9ee503b32fdb04c793ddd1f085ff638dfffb6fa1d6db29a2d1a9218", + "regex": "(?i)^https?\\:\\/\\/fotosdebonequindorobloxcomrobux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "084ea91170980a56943287b2bb2efe5a5215b63ba5e247a894c33fbeb2e8a996", + "regex": "(?i)^https?\\:\\/\\/fotosdebonequindorobloxcomrobux\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fe6a75dab4a0502198da3efcc1c0da4d160085a264bf97f85d12617b0fee35d", + "regex": "(?i)^https?\\:\\/\\/fotosdebonequindorobloxcomrobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec8de415cfe84d233afa7594ac9dd7fbf3ebc54b6d2b394e870199e7bdad2bb7", + "regex": "(?i)^https?\\:\\/\\/fotosdebonequindorobloxcomrobux\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45c8455b1cb9fb2648c862b953c50bcccdae89c3a22a3c6fedd10badf8968e54", + "regex": "(?i)^https?\\:\\/\\/fotosdebonequindorobloxcomrobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "528c3e8cef210a1d0f1b76d1734f7c42348926b2d47a21447d44b01970e8feb1", + "regex": "(?i)^https?\\:\\/\\/fotosdebonequindorobloxcomrobux\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a07a4358a3a97801f84c2f5fa829cd6671082e4cd273b5f34a7867e41f8c8d6", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57f04130b5d87c3a8e479b3d1c5e42d9aa00805bb0dc4781ea97d313638355c6", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c21d391937829cae46ceb8da51ad7063455badc8080bb575eb37fddf92f8cee", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69508baf32239cbf7f274b2e9b42869c823145c273198b039969fc92ddf6618e", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ffe235f6e5a5eaa2d320d1d9637b1a6c699bbdcdf562cefa2ac7f2806a1e6fe", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a58aadf71b54c3fe44b49db2f85335a519d348635fe27fbc50c2eb1200203527", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8fc02a37f5f5be21f111df30e1b3b7d69a28f1f7a2c969a8de2c7f2b151876e", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12805fd6eb2e754146dd8e8c897889755247dc2d89ec14041a49abca1c0d657b", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eea5b9397da85321948eec91d0f5f9933dbc3b2317c1fe82492b7c1305946cc2", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "011e0937ad04b50b898c9300511e8b63298ab0f3aa831668b3ee4af829cd68e2", + "regex": "(?i)^https?\\:\\/\\/loudrobloxmusiccodesindian\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04c4d5399b58574669023f387a42b3fd75016b4ab6486c1625a7cbd46db6c020", + "regex": "." + }, + { + "hash": "f88906bbdb7f2f29000fd339cee20054729601aafafc0f22fb35201ca8d083b8", + "regex": "." + }, + { + "hash": "957e23fd45c85b89070b6fe36cb67a57c10b855125f8e9e132001d683a144223", + "regex": "." + }, + { + "hash": "1a29bfb00ed8089e9fd24e0d52e470c92ab05159f0e371c2fea17a5b8956a33a", + "regex": "." + }, + { + "hash": "965f17210a5c9206d2de1f5103dd790b37f1e2907ed924c1e475aee0904c050c", + "regex": "." + }, + { + "hash": "0c8b3187718501916fefcc65c949a4333285d0b1e2bc8ec8c5a7a7fbf8bdaa86", + "regex": "." + }, + { + "hash": "2bd1ce02beb38a875acf7b47d42c4e7114596d73808fd84d624481524598f349", + "regex": "." + }, + { + "hash": "2263ff28a4ac962918375251c3a02c04ba87fa021643bc1b7e39346f14e5c45d", + "regex": "." + }, + { + "hash": "77f298f2760a10d367ed29882c423e250d4b52cb957412641a3feeacccd15334", + "regex": "." + }, + { + "hash": "6bf5488be5e771e92641c1ff00435a5cfe14fd4330549bc951de1db5d39e8dd8", + "regex": "." + }, + { + "hash": "295028b0095db6f6dbe8d3b7872b296d781a2cd1c80d0a40308e7d3176714d6e", + "regex": "(?i)^https?\\:\\/\\/decemberpromocodeslistroblox2019\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "146c22a4e4df2e0df4823047b33fae6d00af77eb98f328ec96c0a808a11a0d6f", + "regex": "(?i)^https?\\:\\/\\/decemberpromocodeslistroblox2019\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3e0303dfd35d63569e4d9636d028ad302cc62a19b1bf7b4e93d1f0be87379d3", + "regex": "(?i)^https?\\:\\/\\/decemberpromocodeslistroblox2019\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0957b5f027c3e371efa1862f8b80466b2eb25fc22e6eb349e05c1ca784c07606", + "regex": "(?i)^https?\\:\\/\\/decemberpromocodeslistroblox2019\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581ec0dc9266599bb895cd39babdf051c4a01675df069f135c1f17e7021afbb5", + "regex": "(?i)^https?\\:\\/\\/decemberpromocodeslistroblox2019\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "377dab8a793ebcb38ff7714ed479b0d70e1993dfff7b1bb4ceb950a2d75f61e4", + "regex": "(?i)^https?\\:\\/\\/decemberpromocodeslistroblox2019\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b40c7e4b08b97a51bbb730ca734d7057ee6be4abe4bb85dfb322d6a7bd3f3ec8", + "regex": "(?i)^https?\\:\\/\\/decemberpromocodeslistroblox2019\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1ef54e809749cc96a2fd340eab1547c1a4dd3f0c5ff1c880bd5c318e58403e4", + "regex": "(?i)^https?\\:\\/\\/decemberpromocodeslistroblox2019\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8584ffe3c0d75bc0d09a9cffcf4656bccee0162c9c156e1e2e6c2a1f63a27b03", + "regex": "(?i)^https?\\:\\/\\/decemberpromocodeslistroblox2019\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27238d1f607a5520b67ed244c79a0f74f430647600e4e278cf6d82efd3f421bd", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5003fd76f35759d65c3604c270d76fcd1bcc7e55fef6b68fcf830ce8650dad2a", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "857d55dfb893ee64f112e39642f141a656fdd9c98d999660b87297a3507cafa9", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeea36863e839b424ee44a693098de6d7c508009b6578bdd27ecbc4100ea163c", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f57e6d4f65684a495bb7b74dd481b42f2fe829768a9faa385cac1c884c584765", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cd5a31d188920e5a9d390c6dbec36910d5dde710b47de6d0b0728c666b7747d", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a2d049a7b25f762f18611a2b295ac6629ed7ee9f2fd218848dec28a98f18ec3", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ef958400c49ed3b28fcd142829d6fa6ce832dbf9a50a90d592ed66716351d33", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43289d018c1ee255299b4c522eba9845c5045b8bfea6e5463540d0ab291be3f2", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3ca2d779713ed775076eb419ad32c76015db9bfbc6b0bf2dc959ed05b7d08c1", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e1ad9786767d5c9bac5d99fe48c41f265fdd708735a7f9e963ceba8b983e0c5", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58167ec89e1019d7ea8fddf43196754dcf97fb4efc63029116d83f2ea510d189", + "regex": "(?i)^https?\\:\\/\\/lionkingsongcodesforroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c909a2c3142cbbf2025a2e9d099cdec1a6860cf08d9b5b3dbd2d0f48c80922", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxfreerobuxandtix2021\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d758a0023775bfecfedf009748769af47ba1ba791a62b033496079eb0033422", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxfreerobuxandtix2021\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e092f5bce31ec0de6fc5c8d34e8254a03560f846afc81ec2b7fd7cca165f3e49", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxfreerobuxandtix2021\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ef3346f5bc6a9bb1eb5c04d7afa3b1942b493bbfc3d3dc35e2784f9a0155c8f", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxfreerobuxandtix2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbe486d09a3975643f9d5501c86de4223a278980ebac4f916e82ebbfa73443c5", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxfreerobuxandtix2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec810cdc550d775be4d19a94345e53f72aae22d1d3ec3e0ced8dcfef00c50961", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxfreerobuxandtix2021\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7320b7670545966dc1816d9e47e2fca94d30d29d76341f7092868a7ff8d200a0", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxfreerobuxandtix2021\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a53f4ceee8dcb06c2e009eeeb2750ad6d0a99658baf0cfd89a2357d6a0df123b", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxfreerobuxandtix2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a20ba677332a897921ea0c2351e4d51fee6c5afefaafe59710035928cc48aaa8", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxfreerobuxandtix2021\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81a9ee8d80a8750d8ab4eecc7ca17300fd62c4f422b57693827fabe81bff22ad", + "regex": "." + }, + { + "hash": "319e592a57e3a32a2cc596de35b7880917465a759fd08da1e6f90804f8b77c4e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+microsoft\\-login" + }, + { + "hash": "83a47d66efe4f34491577710ac803d811b02d3318cf00048de0ce2a601ecfa5f", + "regex": "(?i)^https?\\:\\/\\/codesrobloxpetsimulator11upad\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f17d721b3e2218c45da9e866d4066f3b68c15df7bf70cfad6308c1cfb123f772", + "regex": "." + }, + { + "hash": "6156e3b2e612ab9f020e2f0fa583ca4d081353c7836e3c80bcf4920e04cfbe38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html$" + }, + { + "hash": "bd8253533aefd449b19428c2ef00cf8865ae68b0e6d40f1ed4722ab2dad18e78", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesforroblox2019december\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c038d32548f9684281228446c37a38cc1ee9b58f2028146a6de2e51ad758cd78", + "regex": "." + }, + { + "hash": "319e592a57e3a32a2cc596de35b7880917465a759fd08da1e6f90804f8b77c4e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netfilx(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d451c9bda584931bd94ad3415c215c3ff181768589f5f735e778e85b0f3c087", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc6e5452fe4aa265448530ec7a8988dc289f346ffab4242797f270a2be8472a5", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20def9dc9c023f96f7e5f89bf3205c62598ca478a0f364ecab5897db6ddffd7c", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ebd15a64a4713f46e69254f0b6f3d5342a458891b910d0e4f35783ecfaa7b15", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4790120e8c53dcc903ec3f9df1508b4ce54c7961bb29932235c72e24e38a48f0", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "786de1c3d40f6736bfda4085da6b7bebacf3a8d3acdc4fbd22dc66edfc2a27a6", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b0c82c11458b45aa65df95a082b55e0d993b3a6b2b0353bd8830e64ac8e1028", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99a92f4b81434c559b22f8788bc4a3070d2f65fa2b1d0c751899764c8c1d1998", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8413047a9309994d2a6b743bae7e53bea64fdafd87b72ef02856f4c25fce3bf", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b46a06fa798125f05644ef0b660d81ed7ae7714d55157c4ec550b796497a26aa", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af254507c72a77dc4f3296fdef00d0714e42bafafcadcc97f9efc9d74d449054", + "regex": "(?i)^https?\\:\\/\\/comoprogramarseujogoderoblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53416d670fecc2093989e35a600b8d5551301d25dd68f1602d4a74d87dd9bb09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook_Signup" + }, + { + "hash": "8ab9d1cf49f242ca79a55dd27dc9dc2d139c1f712e60175261932c24a13bcd25", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AVwAAA0Z0i8AAAAAAAAAAK4iVz8AAYCruEkAAAAAAB9rGABj9IU6972SjBHBRGK8Qs9P5PQeoQAdsAw[\\/\\\\]+1[\\/\\\\]+QGs1ALZXi7wcB1CZc_tKoQ[\\/\\\\]+aHR0cHM6Ly93ZWIzYXV0aG8uemhhbmd3YW5nMS5yZXBsLmNvLyNpbmZvQHNhZmF0ZW5lcmd5LmNvbQ$" + }, + { + "hash": "771d20d76af93a78a552ce4a706dacebcc2eb52a9d66c68a9003fe9f8b91dcb9", + "regex": "(?i)^https?\\:\\/\\/hackpararoblox2021liftingsimulator\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06c25399678b1c80a12b0f71add496e525c5b0e2d183b533729bce4386f08278", + "regex": "(?i)^https?\\:\\/\\/hackpararoblox2021liftingsimulator\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9421b1c34b77f77c970116b402f1e5ed5bcdc8fc0d59c327c168c7ca36b93f68", + "regex": "(?i)^https?\\:\\/\\/hackpararoblox2021liftingsimulator\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad53c73689ae596b453ebf2e0515c44b0432bd4fa98598631e698ae9c5bd34b2", + "regex": "(?i)^https?\\:\\/\\/hackpararoblox2021liftingsimulator\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa6944b6e9f7cbd82e0601b5b83edb308072dd01154a8c35e8e91c188b5fc911", + "regex": "(?i)^https?\\:\\/\\/hackpararoblox2021liftingsimulator\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cac2119aec68bca71567977f74d643cc9c2edd23b038c3ef237eacd55a80404a", + "regex": "(?i)^https?\\:\\/\\/hackpararoblox2021liftingsimulator\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0756cbbc12bb8342ebfa0bfa1981dc188bbcfd00a1c51d6f84c51e6577cc885", + "regex": "(?i)^https?\\:\\/\\/200robuxsakyafetalmaroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e824729f9062fa0825f3e77d92232b5ee245e4735cb794ee56f57fa6bcc6505a", + "regex": "." + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=1d27d70e58" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=f77d906c50" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=94336fe1f6" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=ae95cd8a65" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=2d843a0911" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=336a3be758" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=fc3ce4e2d9" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=8c8e82fce8" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=f667586db7" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=94336fe1f6" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=f77d906c50" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=0e0bf94846" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=90bf25cb12" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=ae95cd8a65" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=336a3be758" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=f667586db7" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=8c8e82fce8" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=1d27d70e58" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=2d843a0911" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=90bf25cb12" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=a06f839fbe" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4fa23402aa\\&e\\=fc3ce4e2d9" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=a06f839fbe" + }, + { + "hash": "ea508d15551751b7f2b29db71edce2345bfc15e7f99c1f4ea17a6a3c5be5acc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=0175806300\\&e\\=0e0bf94846" + }, + { + "hash": "680ec5facb989c933e9f6b4b69f95d2625a5b08a4478e87f13244f9d559a5df6", + "regex": "." + }, + { + "hash": "94b2cac73aea1d76c2170a9f7e9fcfdfbc4666fc2df0532a51a0d4e205d418fd", + "regex": "." + }, + { + "hash": "b35590b13030380143a38a7f6ada941a29e91bfd2531dc864d50ebff56df21c6", + "regex": "." + }, + { + "hash": "1714796cbb7753ca5cffe8bb377cd8b7c4b88c238b95f50282abaec7a376075d", + "regex": "(?i)^https?\\:\\/\\/robenhud\\-l0gin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2aee310bff013a41677523e424d71ad54921890cb3b8aec033da19f0ec08b08b", + "regex": "." + }, + { + "hash": "4ca41e7ad1f864cfa2f4d5ef9c0d0725602891097e2eda1b7f6f2ed9a08bc2c6", + "regex": "." + }, + { + "hash": "b1b229498cea38133bec43198ed1b852ed1230d98b01b0bd34fb18a292625cb5", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e39725563d910580d79c31023644266d3b195c341a7ea6c25907001f2121e5ea", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "041eb77748d8e200feecdfb673731e7983ba7f71fb6610f7316c6fc2d42df263", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a3559370519d0d3307326108edaead636505c63643ca3b5b140f9ec3721ea44", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a68f59c8903f87cba4ae87cc711eebdbb36abea5287a132edffa2f51e4190c3f", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9b4b15a4b2d9da1059c2e611f4292a68b224d9833627c3d28908d96409cd28c", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "591d8fd1fb2ba78f42df7c40a009e8a9f43ec9f5905fef0072382680d9329150", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658da4fd7a6724894ff9d60622ee669381969744651382e94de7f7868a8637ec", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a7403d2b86602a3965904ec7810cd6556229eb7af5c2ae3980b63a36542ba6d", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abb7a64fd3eb3276bca464f94942c84f7853f05419f6f8160a2563972bef83ac", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadfreewindowsvista\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8dfecb4a4b6cde7a5375f513055f6737739d304b5a8d2531288d97d043ac747", + "regex": "." + }, + { + "hash": "e1aba82a2d736abede7e5c823f45c201e2d1acbb3aac6264999102e67561ebcf", + "regex": "." + }, + { + "hash": "2d12a003cd8a9e16760cd5b92e3bd4befc76e45adf48009d754c9c41c3524d2f", + "regex": "." + }, + { + "hash": "e7a6e83bd4d40cf5f99257a3dac513f929557bfbd70fadc5c3991b2f770dffb1", + "regex": "." + }, + { + "hash": "78e079e01df435308c82173a9ff980061280eeb7e84fc59a72378013c915e9d6", + "regex": "." + }, + { + "hash": "b1b28db7c734893bbab788deac6506e6a909ae6beda76dcb727aee0ddcca3652", + "regex": "." + }, + { + "hash": "ea08c49989d9f618649213629c7062606180ea804610622410fd1618b1bd43c0", + "regex": "." + }, + { + "hash": "3e7037a4c94e5c9dca4371b25d5fc9e98e58aff5cac0d9e84ce06003e40d4177", + "regex": "." + }, + { + "hash": "a089911b5fd3ddc900ad6b1e450082cf925b8953ca9b1c5e95d7df4778deec9a", + "regex": "." + }, + { + "hash": "7194919cc0fed73b24960281c7a5660420762597d0d6d5cf60e57dbdcac1a39a", + "regex": "." + }, + { + "hash": "3a5b4977112d20e5dea82d6e26acb124d4a07337394ade016274ffcadf30bbf7", + "regex": "." + }, + { + "hash": "0fa39938a403b1a37b64ff6ef5ce1e393ea168c1b05e9ba4d105ed433876437c", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "750aaad158f16dc879c2d6d14528554da58c483781a6bc5db3f2588bf2b50a68", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b9af501d064b305616db9f4a5db841b0e0916f2d0f1533913b960a78152315", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d3f1c91925ac74b36af6d3f1ac4153567814a33eab963b5cbc63c2ec58128fc", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64177ac47a72e3f4768ebe52e303b9ebf375bf847c570d1f664ce39f381a6ac7", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "702fed53067ab2b85b15a54fb9b962c0b43a72cff5074adbc876a8981a3bd445", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92094d9f018d318f9f91440a3fbb3a81aa2e96a53c6f396777c01a83cc8cebca", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0549ec2e22c33c206ba3711c5fffef6198a48d205b0624f686913787049af18", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ac6bfe584bde29490ee728fcf0c3b9979e25f25324eb725e2f88b551102ec8f", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b7c0878d76078c5a06f256f9f4ffbcb1033c6079d997b508f7ada1d1e424ef4", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02575515f2337740d41003a521b8d1193efe6459ba01bb393d2e3b69f9e65db4", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a16f1489deec5b3b07badda9b702fde6ed70c86add18ae8617674671b26416", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebe862c1efbee6ec236386483908b9742c6795f393bf2dd61c79f50c8e7be02c", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforrobuxfebruary2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0c5bf241a6b393a5d67f584f90e8759adc85f9053b759325e149d95fc559502", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapetheflooding\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7d715b6b03747dec8a3c2cf1f931815d3bacce9b0d261ae553e6204d908639", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapetheflooding\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd5d170c73e27eaf476b52534001fa2ba2e1a7e8d9dc4abacebd72a4ada5535c", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapetheflooding\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a657ef7b7852a0c1b80e61a131d2acb3bb49832c08c0cdab22c7c4ddbbafac1", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapetheflooding\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3a0ffc3e8e9bcb380171572cc02bc7e422be37f45b47c35b1fa5bec68e158b4", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapetheflooding\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a97c0ef30b9a0c1cb91e5d8f9798a3ff4ab5fc46a80b9ba4bad74cfaf4ddc063", + "regex": "(?i)^https?\\:\\/\\/downloaddbzragerobloxhack2021paraandr\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c899617a86da504e9f7c63cb145e07ab373cd432cbc0f19a69f9e23ad64361c", + "regex": "(?i)^https?\\:\\/\\/downloaddbzragerobloxhack2021paraandr\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cba3c281d3ed2d477e14f500fb6f18eaa40631eff50253b08e04d0f828e916ff", + "regex": "(?i)^https?\\:\\/\\/downloaddbzragerobloxhack2021paraandr\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c494871e53a2ac64358946e5942224f792f02775226c60fa5363439062714981", + "regex": "(?i)^https?\\:\\/\\/downloaddbzragerobloxhack2021paraandr\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5fd98695312d962e88e96ffe43038ac4da3bb19f5190870df06a81f923c3704", + "regex": "(?i)^https?\\:\\/\\/downloaddbzragerobloxhack2021paraandr\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2d114c17bdf5061d700ffc8f7da6586c6feac15e7fc59285cb9e1eab463e8bf", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxjogar\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca21d788d7c24767ea5f70007051afd45fd6749c5fc1203584915c681c0ecc74", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxjogar\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "032afe70ff4174e408a5c089c6471c19947c0d80d7d6912519189a377eaa084e", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxjogar\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8712c165efc1dcc1d64ab3314cece9e1e1ec07a60c16e42fc4f395178796b837", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxjogar\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca1297d64be03c3384e84acd2732e42885d0f0b298bc7d33aaf43fd5cd0bd07", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxjogar\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c421ad11c298a84e7a5b5d890dc4fbf7a34ea5913d9d6b1966fbe718163b92", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxjogar\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbcfd4d7fe2b99418e8846f0b41b97e2e2ad825b7d69617f1b75ba63c23e402e", + "regex": "(?i)^https?\\:\\/\\/felipenetojogandorobloxjogar\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9411d0682c9c787eb11baa0089ca6c4d94ebb726d6611cd2f0896e538f31e54", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d9ed3a77fa200a2771eb7061dd253d9f3c409071cb569d52b56dbfc651a2fe2", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c854574f79b62287261b8736869a8b95322c0f6bbf50bc56bd92e8304c0151b", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a1f86a11a323b05208f9f4562d12c7d401213c667e1ad149e0f671cac668550", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea8863f523f53d5809f59b0b6643b8e90844cf34596eb8e9e46aa0241697606", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52c0a02eb04446114200bf6a1962aaa2942d9f288f317d1ff0aa90df9259a47f", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66fb9c8dc66d337b50d57745c276763d89070709126a4ba381014eec7ffcb309", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2f925fe3aa3862a0d2eecdf7694f422e19d47e7714906be5b7aa5bb58b41a96", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62dc7564f73d2b107eec59b0f14fb9ff673ab6dc43e28bb50ea6cf96b9edeac7", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30edfaf1a935547479ad1203d98659e95c17783597deb3ef25ed8fab2f130e84", + "regex": "(?i)^https?\\:\\/\\/robloxgamescomfreenodownload\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6f7a9198e23adb8f56b65430d26d8f7778dd0e7832d1ebb03efce691d68a797", + "regex": "(?i)^https?\\:\\/\\/codeidkhaptaroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f57276ce9503e20e581b8b4332240729ef0e700d47f2372e176797d5e5c0b071", + "regex": "(?i)^https?\\:\\/\\/codeidkhaptaroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96c1a6126a0c1c575d035e9e611cb147ccb3114466fa5459eb6b6e2227a349b2", + "regex": "(?i)^https?\\:\\/\\/codeidkhaptaroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "550fe53c7a212890adcc124092eeafd80d06c01b0bf51b7563db941cc4c2068a", + "regex": "(?i)^https?\\:\\/\\/codeidkhaptaroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b81d12fecefb91ba92b13ab92dc7cabc40455762c375ac33f834fb0590e8ef4", + "regex": "(?i)^https?\\:\\/\\/codeidkhaptaroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df55c652e135c65c6613caab2e3a6d0e1b8a5202e28535a5fd3cf78fab2736c5", + "regex": "(?i)^https?\\:\\/\\/codeidkhaptaroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "201543e1795c4ec261531e0f35286a4a9f0d198fb50af75564ec349fe1b5e87d", + "regex": "(?i)^https?\\:\\/\\/codeidkhaptaroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d716962809ea8b49fa9d9df1aa92f6941cddb022321f85521de42a73aebb2ad3", + "regex": "(?i)^https?\\:\\/\\/codeidkhaptaroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1471d1d7528af6e4cab3b34758f53ebba296dc6d302c09e5886673eac0ce71fb", + "regex": "(?i)^https?\\:\\/\\/codeidkhaptaroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8956b22bc3aa9527eef313b12406dc9d286c3bb4a97a0ff9786e6831b6c1c5d", + "regex": "(?i)^https?\\:\\/\\/dllhackrobloxphantomforces\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9706329fa8e40991693018d3c688f6998293379740e1375d58a756d9f99b611e", + "regex": "(?i)^https?\\:\\/\\/dllhackrobloxphantomforces\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24e5a5bd41eaa5a0f9ebe27cdf2aaf290762ba02313d7cd8184bbbf93e0b0eb2", + "regex": "(?i)^https?\\:\\/\\/dllhackrobloxphantomforces\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "616f8bb29174f3fbf0207930533c3429e4720e7a0bd4bb73a0e8cc59adaffc3f", + "regex": "(?i)^https?\\:\\/\\/dllhackrobloxphantomforces\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f97b4ced6ef909c22b2690c4ecfae42fe7c6b60c8233277edba9f95365a375e1", + "regex": "(?i)^https?\\:\\/\\/dllhackrobloxphantomforces\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d20f80367be810abb7ecdc076e5710c496b3b3f7e4f3a920fe7420730c840952", + "regex": "(?i)^https?\\:\\/\\/dllhackrobloxphantomforces\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72a6fc8eae7788f95e5b01f5b511114080d784b5867ab232d03a7b0e830b904b", + "regex": "(?i)^https?\\:\\/\\/dllhackrobloxphantomforces\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fc5c68489cf23b3abde4076c5500e597c28af733b510dbcb339c9a0cb7c6ca3", + "regex": "(?i)^https?\\:\\/\\/dllhackrobloxphantomforces\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3eaa9763906da8750bb2f9e3747d21a043401d77872c24c86355f2ae099a906c", + "regex": "(?i)^https?\\:\\/\\/comojogarempartynoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aa9f0978560de3473aa6773a2c54dd2a040016aaf0cf5ddcc6281a4ae55eb47", + "regex": "(?i)^https?\\:\\/\\/comojogarempartynoroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22e252920fae4f62a4fb1ac7eb1043c206761cbded9656d1f2796af57af999ec", + "regex": "(?i)^https?\\:\\/\\/comojogarempartynoroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a6bfe32d1abc2587afe06f467914bf35fb731298d7e0a2337bf9b57ec5cf9eb", + "regex": "(?i)^https?\\:\\/\\/comojogarempartynoroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a919d1260f77d1be9c73bcf0bbd6d57038c794e397f098091035bf7eb9d678c", + "regex": "(?i)^https?\\:\\/\\/comojogarempartynoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31915e1bde85e4a02f6ce9e109452073cedccd1da611b5dcf6652740640c036d", + "regex": "(?i)^https?\\:\\/\\/comojogarempartynoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df43014e0de2e79eda2e1e491ce7f2a5d9c712a87abad91a7d25c9a1f321f27e", + "regex": "(?i)^https?\\:\\/\\/comojogarempartynoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbce201e3fdfdb28d96abd9887034a1d5e72fb043814ad454fc970b067b5dcdc", + "regex": "(?i)^https?\\:\\/\\/comojogarempartynoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48f03f6f3ff0f76a059e3bfcad6b2ce2b75cfe7d9fb0a22d249de31f2deece64", + "regex": "(?i)^https?\\:\\/\\/freehacksforroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f71c50d0f65b5e267deaa742f50e9d4e49a96191ee49a7df92fb7a7bb04fbe0f", + "regex": "(?i)^https?\\:\\/\\/freehacksforroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d476d2b444392ce3e621f018331210fcf7b751375f0406a70517426ac63aeba4", + "regex": "(?i)^https?\\:\\/\\/freehacksforroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "392818f7c96436f755ab82566e9d3ebe9dfdd7fbb1224ac69fddd1da514994f6", + "regex": "(?i)^https?\\:\\/\\/freehacksforroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "323cef168d4c759adf24513fb7fb94426cc2119282d1df0cdaa2fb7fabfbab61", + "regex": "(?i)^https?\\:\\/\\/freehacksforroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80e0657b6a9bc945e77829e7400c746a906f130b1c4b5f08aaa2e47c964f422a", + "regex": "(?i)^https?\\:\\/\\/freehacksforroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6318b11fdfb9a3e56d0d0b4953b35010065f8fcd9628338e84395331060c4f7", + "regex": "(?i)^https?\\:\\/\\/freehacksforroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a42e07ef9a48ee52f22745e370910d359917ca888449a6ed8881441b1a5febce", + "regex": "(?i)^https?\\:\\/\\/freehacksforroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20bb9226b635eb2591d11e4839751779bcf429eddbe5e051c4a6479086e4b3f8", + "regex": "(?i)^https?\\:\\/\\/freehacksforroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "559b867ac904a6285d15513fa4f296a5304ba9b4bf3c8c64ba4d8059f543a95c", + "regex": "(?i)^https?\\:\\/\\/comocriarserviudorvipnorobloxsemrobux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ccd89e82c8d36e52ab7042b27f14d068d9e0be22befa8c7a1a0ee19c59a54fa", + "regex": "(?i)^https?\\:\\/\\/comocriarserviudorvipnorobloxsemrobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5f33b565286fe663bfd548e49e4e54dbf64fe9792302be73e8d3ca700ed42e0", + "regex": "(?i)^https?\\:\\/\\/comocriarserviudorvipnorobloxsemrobux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "199019fb8d72d3a78b2241763a75f9048e3925907b481fbfcc660fb55176169d", + "regex": "(?i)^https?\\:\\/\\/comocriarserviudorvipnorobloxsemrobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e606c4fb16c570cc92cebc9b6330f5f8a16806889526c2728f07a43de4a245a9", + "regex": "(?i)^https?\\:\\/\\/comocriarserviudorvipnorobloxsemrobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdc92aae2426772a70758a3ef420a11739cd6a2ca559f35acffb7e5f22c2a31b", + "regex": "(?i)^https?\\:\\/\\/comocriarserviudorvipnorobloxsemrobux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9468d4dba37cdbdc7e39b373e338f05298887213374a2efdbb5569aac4b5ed07", + "regex": "(?i)^https?\\:\\/\\/comocriarserviudorvipnorobloxsemrobux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "308cdfecc4984df50ac3d846a247249a3c295ca5a6d8eee6f4d0e7667967a761", + "regex": "(?i)^https?\\:\\/\\/comobaixarhackdediamntesnorobloxmuder\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8f7d1b3e7fd0f2bb456ccb840f77abe2cdb1cb7cb113a1bb300eb5566bf7549", + "regex": "(?i)^https?\\:\\/\\/comobaixarhackdediamntesnorobloxmuder\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca0e50c31bd7ed1236defaf088bd3ccd333d215871278fcfdc4aec522947947", + "regex": "(?i)^https?\\:\\/\\/comobaixarhackdediamntesnorobloxmuder\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a445ebeeb7d940a7c480efb1a4ead7945c6939bb65ee5018fd3fc20807f8a613", + "regex": "(?i)^https?\\:\\/\\/comobaixarhackdediamntesnorobloxmuder\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76d5e01169dca3325e6a4a986f38b8d1740037d511f7b4cda3ee810d3752d574", + "regex": "(?i)^https?\\:\\/\\/jogodeescapedaescoladeroblox2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d075bf065b2388d6d6a66848cb89e3d816077f68b80e1fe2e03ee5af956b9db6", + "regex": "(?i)^https?\\:\\/\\/jogodeescapedaescoladeroblox2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "845308c5178ba8d5823e03d1a0903e95c7ace0b5290dbe2e1cd33c9a22c0cf0b", + "regex": "(?i)^https?\\:\\/\\/jogodeescapedaescoladeroblox2021\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "246dc237787c799e59ed831db0d2fc038a3eef1a79d6af7e22ae8502e7078173", + "regex": "(?i)^https?\\:\\/\\/jogodeescapedaescoladeroblox2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4c69ed1f4a4d95d8048c98cb02ba44b93b542ac3354deb33051819377d1d4e1", + "regex": "(?i)^https?\\:\\/\\/jogodeescapedaescoladeroblox2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c5c18b89f4333fcb9b66a395e728b921fdcc321c8ef579e8fc7a9b1cf15cccc", + "regex": "(?i)^https?\\:\\/\\/jogodeescapedaescoladeroblox2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44c8f7567179d3df2d5c35f95a791831d60315361ca81ff52ade545024c5cebf", + "regex": "(?i)^https?\\:\\/\\/jogodeescapedaescoladeroblox2021\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35fcbc75436dedf248a74b5b6fe873c8b9fbb968f04e9c2408d014729d3fd8f6", + "regex": "(?i)^https?\\:\\/\\/jogodeescapedaescoladeroblox2021\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a88c24e553a9dc91d8690ea4f79c75cbeeaea25d2bd552bbcc2110b33fa79f18", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a19cce5ed8c759c4b428f1a4efb8d224424730f75135016198047fd7d6323871", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aec6b36ef2b67ebec288fedf40e0bf9bc282ef668b59020517eb9cfc5fdb50c", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60a993691dedd0948f5d876fc7f3b863734cb13e442b03c7b86d2c4772bfb3d0", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e553419ea9ae000f30da79dbcdddfaba69305646fc288ad2452f422c3f85525", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c71003fdf09a09ea43436f60b543dca6ff4e11fd4772849e14564350ebfa6ffb", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b4d21d90d5c0e74fdcafecb29a6123b92fa2387d759c37e6db011481f147933", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d093c5f3890ea8523e8833846ab81ca1ce180e9db4459b501e1b418d2b836cf4", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b1a8ac34043a4f571f676fb1e8263e3591cffbb531dc7bd6bda7c24b6ec1401", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cd91cf9c783cd6844fb6feddf6cf31bcaf609faea67b6bbec366e6fcfe189f0", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd73b7ed1850a6e5ae446d09686681805b6379db7c9395497435a2d2bc1b9562", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e009418e7557ff28a4e65eab2d16c1cb3c487fe9f029767a8f63a663d6d7c18", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eddc419ae30dd1cd854e7bc749b820467b61c4a5699483e80cbb62b72429419a", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5c1159d4be549c9f4a5fea741831a1c23a50e48b1ad2095a81cfbd37bcccedb", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c91846d2e46e5a9d27b577078de0c9f69588edd8a06140299027e9d3a2f4e79a", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61d84a4f6a38b0d2acdcb21d1d2785352ef64881de4471598772ea332e485e46", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96225a3097b01f4d29c1a5b037df88970673a894e533d0405ab277c1e1a4fc6c", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02a8f567603fb4f8e472b50a3dee52828446486b27c6bffecae1721a2e9fc3ae", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3fcd78f59fe4938275b6ea7d381ec8aaa4c07e229834183a28cb238e3154e14", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37df6b7fb46b0ec7c8a9ee9bd322e04b571f62342ed0be7dde6b9b09869c3091", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2c837abed7a0536a8aedc06ad260b22c258646ecb15a26cb203b1dc86bc0e4b", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b098f52f9640d6dc0fc2a351fb96a9de029ea8b34e303890f446e8ccd7959ce8", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d1bdc32c87de3e4e18b3852e628ae32f2f4b195aa7781bd415a65763ae09ef8", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cd9e0523c9c9d6dae9500273e2cb61880bd61af3892048e381c8c2174afc4e5", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb1624e96a6db79a551825ec374b8a815d863db0dbacb763370208aaef0cfc5a", + "regex": "(?i)^https?\\:\\/\\/area14hackroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f04791519395aac1a440003771644ac9f6f082f2c779eb68f89ba041aa90e644", + "regex": "(?i)^https?\\:\\/\\/codesrobloxpetsimulator11upad\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90fa9e8504da7c388eb7be4922c10aa717be6fff64fd90728a0d27995a6c223f", + "regex": "(?i)^https?\\:\\/\\/codesrobloxpetsimulator11upad\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0f8ea884468a9d66de17c9fa528a1737bf69d63aff05780fc7a6d29b65edc37", + "regex": "(?i)^https?\\:\\/\\/codesrobloxpetsimulator11upad\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a3a37d9da6cd270ba834643cf5b5215793014a915f80f25de996be59d14a849", + "regex": "(?i)^https?\\:\\/\\/mexicanyucatanflagrobloxdecal\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21ed29f18a85aead0a06a6750c95b6437941043f4343d1447574a98c4f48e9fd", + "regex": "(?i)^https?\\:\\/\\/mexicanyucatanflagrobloxdecal\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e51370654579280522d88f819d6f721e68c3fff18e4107cc2e261e128b2c4321", + "regex": "(?i)^https?\\:\\/\\/mexicanyucatanflagrobloxdecal\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0ddadce77ec1a2840db99cc2576fc785ff0cdd86d59abfaf29e1efc20057fb", + "regex": "(?i)^https?\\:\\/\\/mexicanyucatanflagrobloxdecal\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5d519d09fa244286c31e28e47ef8c773c1de0ccbc8b9cd17ecc1f5a3cb62947", + "regex": "(?i)^https?\\:\\/\\/mexicanyucatanflagrobloxdecal\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a923591c9f4453968a5b2712d2a2892e1aebf3ddb27b9cfe2af2d5c5008afa0b", + "regex": "(?i)^https?\\:\\/\\/mexicanyucatanflagrobloxdecal\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8fca673a298fd098c40b1cd89bf2820c9324652c9d412bf757cdd606cd73c83", + "regex": "(?i)^https?\\:\\/\\/mexicanyucatanflagrobloxdecal\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f96afd8e10f6a00a08473c455419f40615898341d36f5182d248bab100a0b5f", + "regex": "(?i)^https?\\:\\/\\/mexicanyucatanflagrobloxdecal\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f429cfda53fa78b9eb8b623d34ea458e3bd99edfd78a42f18e5528db95bb1e2", + "regex": "(?i)^https?\\:\\/\\/mexicanyucatanflagrobloxdecal\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40eb278fd38d69e09dd50fd047275081535dae22ea626b2d856760438e523151", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b062099e9485a89cda99d2d639f171ac0b1bf3d0753972e4d4de6e542f5c38e4", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c50f8a451122f377b2d3aa13d4acddda841dc9f2916ee41b3617e4da0d74ff4", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70795c6f98b3d195a459715e583260fd81ab76402f930c81f32d0745d7bf4c7f", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "068e8e17d0af90027df0ed2afc08600b2b8560476d4810ae76b89ea23e8068ff", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4db0e970670dc5f88a30784f90461ce49076f757245fc4cfb5b86a18a46311e", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66a77a68614a1910958699d6685202cb647fdd0a36086fe1e8447461e8dc5f6d", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85f74cd462bee005b12e2b6820efb0d612308097d145b9ca13f990a8f930b3d7", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a1c9225d79ce5e15b5d5ea127825735106714d48f119245ed9e9489a564e73c", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a76115df8f8c436153f2f41c42071761960216bf67a11d1a319b9a4be8811da2", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52b0ef86ce5cbd22e3fef2cb350196ebb23d28933fd5adb51b19df8747879c69", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e8b9d96ed35527244ab33b7bd5c17ba1e9734f4c95513b660bdcba5f8b99ece", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "daa8919ed40083456daab00286f634282eea4c2214e867dc69718874633ab5ca", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dcd34d07a058d5fdd5afb7d6a91237b32b222cc12ea898e47463f7fc6748bfd", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d349f29009dc6a4b6a8429612f42fac05662f38e8621f702be7d95ea4d595c56", + "regex": "(?i)^https?\\:\\/\\/robloxhackparaganharobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63758dc924164374b565f8a216cadfb69ca922a63e76ec6f46c7147d32161bae", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6819983acd992b40b2ccca6ec399053011f958eaed9deb92422a283e2763eee3", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a191ea7bac84d1d376ca59ad6e05fb833015311c0e6a8d7613c0f5919d91f671", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58b203f3e72b561dfb605967a0f84120fcd67dcb3dd2d986932d60b93e501ecd", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7d73e88ef78f8282e0e4a1f3db034b085a893d0e041c586174ad04a72ce214e", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7034ea95efb7d25f0c9e3cea79ba6e7fe60e12b24bb3e9d7824123457eb0d7c1", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8918d0a3edf2036b20df8d9b4830fc08028acda69098c15d0fe792e8c5026bc5", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9a7eebdad647c1bd2e1fe2d5700ee9d2ea9f6be7fa64c910348c68280d90be8", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bec07f3ac832cf19b1766152b08890f4c3cb8ae4e5269c6bf6f1ff7bfdee6da", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcbca15e8d2e414fb3da29076030cda8a86856c5349ad1760c167dde1f67d470", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67225ec3ed011920be35ad52e1d00dff1c411591c284c3dce574f5051fa9e8b8", + "regex": "(?i)^https?\\:\\/\\/robloxgalaxyquestcodeswiki2021\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37347ae11c4292ae96f0b1f933ee8848f62536aa2a215e70f67d4b72be89f558", + "regex": "(?i)^https?\\:\\/\\/hackdecsroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6eb886125d57c1e363f65b39e6e9b98520e94fe9784ef02f1b83b6514fe5400", + "regex": "(?i)^https?\\:\\/\\/hackdecsroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ae6eb9fa7cf83e824e19528eef0dd2a6b4da4ba448f11378df3a59fe29ba1b7", + "regex": "(?i)^https?\\:\\/\\/hackdecsroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7acd7ccfcae6e9020e636ecef25f33edd13ca7d5b836e6aa8ee708c9195d0ed", + "regex": "(?i)^https?\\:\\/\\/hackdecsroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac00445cd09f712079dadb2b9849b052e7183c53239899cfd93b778eab1044ec", + "regex": "(?i)^https?\\:\\/\\/hackdecsroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5c12d292a09ea793609f371de5eebf25b1a97e6d1fe9ec2315a3abcca7353a9", + "regex": "(?i)^https?\\:\\/\\/hackdecsroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b29775c490a76228fc42080cf3a25fe457e09a8b5d5fe04261d04bd1f05ff52", + "regex": "(?i)^https?\\:\\/\\/hackdecsroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ee7d93217d93eb9dbf70faea7828bea1394b4b1e26e817ffd5942ae37445c8e", + "regex": "(?i)^https?\\:\\/\\/hackdecsroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "603d1cf67cf833387d07118c9dec08679af154ee4af0f2243d70b090eacc950b", + "regex": "(?i)^https?\\:\\/\\/hackdecsroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74d1e68d17f43c12184753ca7174a3b1f2c09cf0b6efcc16d4b43ca33ea59fcb", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c166bbbe8e3d41de5b0fefebbb6b640581b9d163636060e9add876c516bdc3f3", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57b1c2058951f85235c3a5f4eb8ed7fff36014d2e9d39f10a6701e37ad052d24", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d80d10db8eff82e3ddd38b93154ea9e243cf35c6466f9fa1afdf2c0c3b9cf8b1", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1efd396ff4ae5e20b98853189e6007e09d1462d015ef25f201bf4712db71bf0", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d003d99035a0919dd1940338ac5e38f631270187ac95a612911b7f103c0155f5", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "941d143b746fdeac6d98fbe9a12f82cecc47bde6705f567efb6d518e2dd2bdbb", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffde089df34f27a33cea8b152bb176b4ce94d0d9be355e107a8c810f62a0a816", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0410ac6067d8e2b9c251a9f9382ea5909ff2d859b552b1a34cbea874e35ccd9", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f02f00923ee0402bff9753c05dcaaa89de465ed44ed8ca15b62354cd57789ac3", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12fe048385f87e2dda31f6c474cb2cb05e7f51f87622c092022d6a26c194be4b", + "regex": "(?i)^https?\\:\\/\\/prisonbreakrobloxhack\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d064a6cb0778bbd668226a8bee46ce2cb4ce92c997f55a10e1cec8b0e1faccae", + "regex": "(?i)^https?\\:\\/\\/videorrobloxwizardtrainingsimulatoral\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "245234fe0a42adcc08db079ab3b50eab1e97bacd0f0af055330dbf7163cfb1b7", + "regex": "(?i)^https?\\:\\/\\/videorrobloxwizardtrainingsimulatoral\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948fe0702c80122e0456fe722f211aee3d6c38ad043cd417299fbc70a91df410", + "regex": "(?i)^https?\\:\\/\\/videorrobloxwizardtrainingsimulatoral\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5ec7bdf15e2a50860caf93697cf18e5ba9f36bf7f0d574e96ec88fb2742d30e", + "regex": "(?i)^https?\\:\\/\\/videorrobloxwizardtrainingsimulatoral\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a46fb61a8212d17decfe86de6462afd1b0f3243aa034f729d38ab542160c6f3", + "regex": "(?i)^https?\\:\\/\\/videorrobloxwizardtrainingsimulatoral\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "751b147ab526725f328d29108e003d334f8a2ebd692474654783a7d26f289ae5", + "regex": "(?i)^https?\\:\\/\\/videorrobloxwizardtrainingsimulatoral\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d250bcf3d39368ec9d2b36b225e0d8383b7a78d0521dd33cc07b8ada5e95c101", + "regex": "(?i)^https?\\:\\/\\/videorrobloxwizardtrainingsimulatoral\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1be40bfe7b1d36c490077249fc44e3183cad0e2d89069a7c7ce588242868631", + "regex": "(?i)^https?\\:\\/\\/videorrobloxwizardtrainingsimulatoral\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a1880201d4868e5b2b30beb91e8d4009b50b755a4755ca1403982a4d94c5637", + "regex": "(?i)^https?\\:\\/\\/videorrobloxwizardtrainingsimulatoral\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c5285031cffa2d86407763eb0c0a583b86ea44fa65ca5d322b1e77cd5eeacae", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a372aff0fd1617d92944d72504b1c147a4f16109c2036af985d63e3a7caa970b", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10fc792a086007786db70d4c619f0595f5e64ed08e451423c46cf9f93390e9d4", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78e38f04793e3c81a331b0260d7b2e7f2d4f9d3f538c94da6b06bff5c088e9ff", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d554f8c35cf72ee7b18390f5a089e410975d6f2969995067e230d37bf33ac49", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f67ba8bf7ef23244832e7f71c76425931c4474b16ea045257c60b0c666ce957", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4dd14b8916ae1916e3969602c5d3badc66410b3131a6847481f109c9af38a11", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30d6e9ed1addae719410fd9d76913e92889438c79e2a5e378025e4bb1207d5f3", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a8ceea5074e8c2b1a1985cf43d1a4a4204085a4bc2ffbd670a857c448795fc1", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78b0da828bbf9715ad8262092cfb6f560e1d767efdd910229096ab74a572674f", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d57733b68bd3a30ffceb1c67877a7ecb039696834bda9f9cf0c84327b5402ad2", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a82f5456d153027651d8707899ff5094bee0701a5f64123c71bd5493afe37635", + "regex": "(?i)^https?\\:\\/\\/bnpparibascardif\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca69c7a6c037cf30bcb94b093a09a6fc447aea94811a9711ff631316442557f2", + "regex": "(?i)^https?\\:\\/\\/crowdcheeringrobloxid\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca14f642379cf9573be2fae58083bdf7efdc786cef2592df280c34d32a433ee", + "regex": "(?i)^https?\\:\\/\\/crowdcheeringrobloxid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85540f13d7d795572013e739e77edd321c7d651c8b9ccd1b90d2c2db881bdac6", + "regex": "(?i)^https?\\:\\/\\/crowdcheeringrobloxid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70667b48d869e51e345d9b61f9c5c1e20fb867a4bf74785f187180486303b544", + "regex": "(?i)^https?\\:\\/\\/crowdcheeringrobloxid\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eda7c0f3a378bc70712b1fb6b8264eec32e31d39c81bd9f5dae9037de97ebaab", + "regex": "(?i)^https?\\:\\/\\/crowdcheeringrobloxid\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7276048bf4af5ead9cb7cb9f1e436fb7d55ec959082651068ebf03989ca48e8", + "regex": "(?i)^https?\\:\\/\\/crowdcheeringrobloxid\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5db38f55a33145771fa031d9b51ad1032db854507c434b24a5e85b43ec01f197", + "regex": "(?i)^https?\\:\\/\\/pathfindingserviceroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afc998615fb742e3bb756ba846d68911dc044725035fded44e0da2089605117a", + "regex": "(?i)^https?\\:\\/\\/pathfindingserviceroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa4499b0af232510fed9eeabe6da080fe831ec5a6f51773e8a4748862fa027c2", + "regex": "(?i)^https?\\:\\/\\/pathfindingserviceroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02c01e10555825de907570e0fabbe15aec40b7ccf193b1bcd829197a8c1cac23", + "regex": "(?i)^https?\\:\\/\\/pathfindingserviceroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "544e6defc1e4417fe32ba5e930062c6bd285dce3e99c35252c8f813f198f45b5", + "regex": "(?i)^https?\\:\\/\\/pathfindingserviceroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e108dd796e2ed89affcd3c82233bdab040c02dcbf933de17a18507d3ef03b8d5", + "regex": "(?i)^https?\\:\\/\\/pathfindingserviceroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "632dfbdd4eb134dc7dde065d0745f8a495c6e5c9c78fea3eeee618a6fd4ecfbb", + "regex": "(?i)^https?\\:\\/\\/pathfindingserviceroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df948ef1d031f060c5bf39348f806debd1942028b06cb84be1474476db3eabc1", + "regex": "(?i)^https?\\:\\/\\/pathfindingserviceroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09026c1ca5c931ea4d85ecee0b0a9de73e6d57ac65638686f65b623a3d11bf33", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxmusiccode\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3231a5a2a022a775aa9d2d0c301be69fca59437ad9c24ffdb633a74bde28846", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxmusiccode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef9385437c14cbae1cf93693587f684ff7f142b473663006b9ac6bdd7a626bc2", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxmusiccode\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54e43ab7aedbdaf59bbcf7a122991947f1e6c6474df6bab795977790960b430e", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxmusiccode\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffef017b48b0358111e038e174bfa24c30e186cee1d7b24ff8573c3c87209027", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxmusiccode\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7283579edbc3f092bee220ce4bdce18b56e6e0db18c6bb952e8f5a249c127ec9", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxmusiccode\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f42c2c2d4c03f178bac8490dc336257bc726f432a24c427f9f8a4ac7c2836e5", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxmusiccode\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9501818bfc40f2fadb21469b664a960f9926a25fd5018a1d90da44a0af96f197", + "regex": "(?i)^https?\\:\\/\\/robberyrobloxmusiccode\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aaf89f123723cf9429c41ef654008b55c034e8be2daab852214fcaa1fdf3e4ff", + "regex": "(?i)^https?\\:\\/\\/rabbitholerobloxid\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1bf0e49da11b8eef0688808eaf59813dc777067a58eed6c8fefbd10697b6881", + "regex": "(?i)^https?\\:\\/\\/guccigangidcodeforroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6af3c4d64d1c486a2c257171dd8c0f925e133f8e687f00e2dfc51d7462b57603", + "regex": "(?i)^https?\\:\\/\\/guccigangidcodeforroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d4747ce6cb281ba73b32fd8826bfeb5515e157efdff3019c8fed220fbcb9edf", + "regex": "(?i)^https?\\:\\/\\/guccigangidcodeforroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85f3de3530c582b95e46bbb85918b15511e763758b5100f3028d35ef54e44557", + "regex": "(?i)^https?\\:\\/\\/guccigangidcodeforroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59b767e7d8ce763903f5c20979614816518f4575ce2b112c1d5897706e98083d", + "regex": "(?i)^https?\\:\\/\\/guccigangidcodeforroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "008da5731c77f862b1037148de25915d061850cd70500b3755c9df920508928c", + "regex": "(?i)^https?\\:\\/\\/guccigangidcodeforroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f603a37cb225908def4977e0bf851b935e1172d2ccaaddb7bf3075dc255385b", + "regex": "(?i)^https?\\:\\/\\/darkmatterreactorroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3157f0c77334a9b084931c3d1cd196d83c0c2c39ec08652fcbfd712deadcfe50", + "regex": "(?i)^https?\\:\\/\\/darkmatterreactorroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "372358cf47ecd407e66bbfd5fa1681e7f3aa9f9812c9d1d7cd465d4dd6bb1267", + "regex": "(?i)^https?\\:\\/\\/darkmatterreactorroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a43cbe09c2c6f42315255c97f09b173b9a72bc1ffbbda8c61cc118bcff6d1aeb", + "regex": "(?i)^https?\\:\\/\\/darkmatterreactorroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95aa8ff9f9985be2b1e311d1ab4d50ba1e88ff8231c95031720476f1f1e94a70", + "regex": "(?i)^https?\\:\\/\\/darkmatterreactorroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0a398ae3e231ba7481a6e3d9db899f38dfe2e2cc43b7552ecee3db95cd6d113", + "regex": "(?i)^https?\\:\\/\\/darkmatterreactorroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "357955599ad350d0f84cd0251d0d788130906bafd666a83fcb4db011a909fea8", + "regex": "(?i)^https?\\:\\/\\/freeclothesonroblox1\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba00e72de577949a67dff05150d88c44dbe32370cf3f0eb8978539112fa121fe", + "regex": "(?i)^https?\\:\\/\\/freeclothesonroblox1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a093a021510aa402ab9e60bf3168808d81c7602b6e8597f4f93c071c06b2c049", + "regex": "(?i)^https?\\:\\/\\/freeclothesonroblox1\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c207e3f7922c694244ed44c326a7ce4d3fd7f2404f3ae94692da7d6e60c41c2f", + "regex": "(?i)^https?\\:\\/\\/freeclothesonroblox1\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aabce261646a46288ef2a37148d8e3d5cf82246ef819457c1eb713f0311be54a", + "regex": "(?i)^https?\\:\\/\\/freeclothesonroblox1\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58073c7d64f41a02cc517b30b91c3d783e1b0f97a210571ec5bd6a44e4adac22", + "regex": "(?i)^https?\\:\\/\\/comojogaracordaquandoforomartelaoemro\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8080a1a6cfef7bd70d6ae86fd227c54fb43b2183fc1624d3ae02df3be9f64dc1", + "regex": "(?i)^https?\\:\\/\\/comojogaracordaquandoforomartelaoemro\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5142b9924c9ea530dda137fd783fcd5e981903a85d9f48480ed510fc8a738f57", + "regex": "(?i)^https?\\:\\/\\/comojogaracordaquandoforomartelaoemro\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9feaa75f2f6a0b54844276d154a5162b7c37b065ec6c32965ca6a7b61768f1b8", + "regex": "(?i)^https?\\:\\/\\/comojogaracordaquandoforomartelaoemro\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "035aea6f80c5cda6334cd520e33078cde1c22ff7a6c7f5878e3b27d517304e57", + "regex": "(?i)^https?\\:\\/\\/comojogaracordaquandoforomartelaoemro\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "869d7b4436681c0c8f881b5dc43d513e7d60862ff3f771d2f03e3da1a3cd3e0b", + "regex": "(?i)^https?\\:\\/\\/comojogaracordaquandoforomartelaoemro\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09443cdb5a3a6645346e705e56bad97600f5bb1187849ad6298b48813ef945bc", + "regex": "(?i)^https?\\:\\/\\/comojogaracordaquandoforomartelaoemro\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b57c112c81ad2f8c31c8ec48a9d2612efb5c9b4be9c34111f5164cee3f86de2", + "regex": "(?i)^https?\\:\\/\\/comojogaracordaquandoforomartelaoemro\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b10996b4b743ebeab0844696d80a7e9f8434075f8f1cbcad740a85fd2c4317f4", + "regex": "(?i)^https?\\:\\/\\/comojogaracordaquandoforomartelaoemro\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23b7fdaef94ea86781841410da90e09570bd36cff6c95f55bc7baf3e6d798fb0", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fcdb1a1b6536fd1b293d7d131f15a9df9b03cd62d58f581ff48b7f8763853a2", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9266d594410326b2cdb735b61947e1f8b8df8e5cf1dc30779c4be11e099b590", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6896e55b1509a667b225a555839d7033f6c2508dcdff44b293d714d1506fcbc2", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6489e650de53d1795704f63d3246187f5f05a1f47576f566c93130028f3c27c", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f5dcb356c331dfbe8366a92920cee2bf6a5c65c02c712846a4a978c276ec4bd", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fab45c9d4e7d421fb87c7fe078f654c728fa5508eb8f1ac2fd931125f6c5421", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c06d9d977ae20c38d708c12260283bcfd5586bcd5f10af403d366468f451e44", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "589527fad2550961406fe0fc567ffacb03416cd36aedc25b7c67c664702557eb", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd74d6e7aa6230635c90c2fb9ea9412b3d50f574aded984b76fabbf1e16a6fc3", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b19b784607d402de9731f9ba0d28021f0fca34276d5d6ea70195a4cccf1e5b", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "619278dc39657dea4d2e831ce9dfe83d874c9c7f02c4a7e09d865a7db667b113", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6cf87647c277471253e2e0d03ce3e17eadcd7a212812b97b837baf0905ce8c2", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f1de8053e90e582cb4587ac89de66f60e9fdcfae8b2da6b0472c432ee31901b", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb02b56226e714a7f64ed0da9314228d6e0f3a13233664a0ba4999939fed4624", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4996ea93bc4e10ab0446b22131a76e362cd3bfb5bba6f5ebd3a5fd317cf57b9", + "regex": "(?i)^https?\\:\\/\\/rpgadventuresrobloxcodes\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96c1aed97db18c228c7de424bb8f1cbd9b5be09761bb2a4f2215c48652e30109", + "regex": "(?i)^https?\\:\\/\\/robloxhackulimitedrobux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0c5939784a09711338a3986d21a78c33b32e9fe86ae53354c3f1e12058bc36a", + "regex": "(?i)^https?\\:\\/\\/robloxhackulimitedrobux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15ac409320b22c8d7273015db6bb90fb1dc879cfcc528377727f0dd3e441dbaf", + "regex": "(?i)^https?\\:\\/\\/robloxhackulimitedrobux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c083143cf32bfc100af62d433c33bfca06899e0138ae3b2924881ba13c2857c", + "regex": "(?i)^https?\\:\\/\\/robloxhackulimitedrobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d359c6b9a85b0e70d6e7eab1ce98865bcc6c2c01e62dbe440650e1f9559da77", + "regex": "(?i)^https?\\:\\/\\/robloxhackulimitedrobux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "390b5f834b40a25aa77f0b4edf0a9250beb54034563ec2821e869219ac44010a", + "regex": "(?i)^https?\\:\\/\\/robloxhackulimitedrobux\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbe3a14103d48463b5b6665bcd94376637e30a27ebd9f325e2a1dc498c90947", + "regex": "(?i)^https?\\:\\/\\/robloxhackulimitedrobux\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "965007642937329088dba442490e9a76db9b784e28896e92f145e42a7aae9a69", + "regex": "(?i)^https?\\:\\/\\/robloxhackulimitedrobux\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d5d4ac3826be412e9d4ff5eb6d8721ad4a404f0607260b2ee774ae634b6f68", + "regex": "(?i)^https?\\:\\/\\/babygoldieroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06a13e3f2b19c68ec7e0d1c02c64b057225f3075f1653151ea9836492a77c46e", + "regex": "(?i)^https?\\:\\/\\/babygoldieroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4ae6ed2f13649f84c48fc7614f57c2287ef63061e6966981de16f5e78949e10", + "regex": "(?i)^https?\\:\\/\\/babygoldieroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdf202241984de8b794c6181ab92fb86f32d159aca04c3633e53fe360e63d4bf", + "regex": "(?i)^https?\\:\\/\\/babygoldieroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5246492201ed976d3bc608733aff00211fe9ea8865c768d64976e9c07542ad46", + "regex": "(?i)^https?\\:\\/\\/babygoldieroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f6c1585260775702380264f2569344362acee9147079034ac9b2476c6e37c0f", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1efedfd1abf1c5f8f52fca4eeea523426a743025b2ce699fbb813e11d5c4e9d3", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20bbcf8977caf7d5558ab7f3e6e5d7526abd21029ffe4740cc74356296971c4e", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfe7fbd1b06557a6070660f715801baecef32b1c73ff61560da7c1f49576f791", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e549b1d0ebcac57fbc461430643f231001554904f883072029529c5ff8322bf", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a63b987b9451bcb747ab6d91a607062f96e63acb7ce01fa11ae9f09b8f7feb4e", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5de877b902e556bbf46fb144bf65884a6794c2295e81edbc8d7943be16d86e5a", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bb0f785cb1e3eea13adf7bb04f23428cd5dd9507369e04a50497b04540daf32", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da3a2ad920edf0ae27d63339a125cd15642ed833a4b4a39d3cec20786de4fd62", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8a6b6cbef84f1c9ead9dc8abaa4ac595910cb5836919f44f151807fe0e36e86", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0ba6c12db655f463148dbfd78a74a5a0e980e8b101c453728b1661371f69282", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cecd538dd59e4458ffbae42bc1e3d7747aa18f80182dfda0a56556ad035fbd4", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4ab668f9fe7135793860e257a2588439f6489f06497d8aa50f70acbe8b30d7d", + "regex": "(?i)^https?\\:\\/\\/gamingtechroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2674ccd2fdd7a12554802742c07ef3812d1e06ac43786644b384ccd49485c03", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0646d6e2e2ffa4b5bc1074ec0c333a04d688f9cec623b2a13907e0d8e1d61932", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "633da9703d03fbfc8bfb88958e549769fa00c1bcf662a05a6561c173c6202240", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a372fe66e0c5e92eed50eff6d3a08835cc26d197563ee11f898544d250c16693", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d876bd3b02bba54833aa38a4bcdff006cbe3dcc283735f8c9a10fac309aee1c", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f30d56808586a06f80774db521c2c6ec89b4155a115c9208b2ce380b4638365", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "239863da3c249708264d19a3d1376d6ca9816641872ee2f2ec0633cd6f1d4e56", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e239cbfd6b9bee8802f2083f102998513b7a5b0220e3b0c503964e0691c36b", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08725474a3dd4ed644d725d8006cac61402bb16f5140bba8a2483669d2e85e9d", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "853cb4924a9d9cc24fd1d288bc7f45280f4ac49295b93ea4e3a942c75283faa7", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cb9cdf42fd1f29ccceb50aedd74759fb51a8d96a4547744e79bcb91141a3237", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8af824022b4afc950405930628f2b1a527369a9bdffec03d251bda31ae375045", + "regex": "(?i)^https?\\:\\/\\/blindinglightsrobloxcode\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ce675f5b2bd08601e97b6d8bfafa25ea595710a498f60d02ae7f7e83ec07112", + "regex": "(?i)^https?\\:\\/\\/blindinglightsrobloxcode\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45af71b020936de948227c5ef538a4182a22bdb55f013a1b40ca0d4ba7ff9709", + "regex": "(?i)^https?\\:\\/\\/blindinglightsrobloxcode\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffbd61a36cc4d77d06dab950c4edcdb5564a8b3da07f98c3e4bd1830e9b2475b", + "regex": "(?i)^https?\\:\\/\\/blindinglightsrobloxcode\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52f5654a3ff37a55e8b1858e08e9b2071b6bd36795e621338489cba0e42c69ff", + "regex": "(?i)^https?\\:\\/\\/blindinglightsrobloxcode\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c94bec95950c67031cad20eb11d2481c40bfd3cf3ca167e1ad0ffa1417dd271", + "regex": "(?i)^https?\\:\\/\\/meliodasfaceroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658be5118c8e4dfd7f86028da9856cafa10175a6bceb26436a314dd19d4347ac", + "regex": "(?i)^https?\\:\\/\\/meliodasfaceroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57870a2b8564a0d84f6c47a2177bd63d48cd0520b84943ca5b2fb3c9b84d0e5d", + "regex": "(?i)^https?\\:\\/\\/meliodasfaceroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90639856d8562f319a6bccab3efbe3821d0f544fbafa5460dd909c0ec5d9e2bf", + "regex": "(?i)^https?\\:\\/\\/meliodasfaceroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac512e54aedac0f3caa41d4a7686f10e31ff25f043520c4cc0a36ff83467a7b8", + "regex": "(?i)^https?\\:\\/\\/meliodasfaceroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a6a162c45d5b1bcbde90eb6d5e11bd9fd525dd44c104f5d52946bb3b5f51b9e", + "regex": "(?i)^https?\\:\\/\\/eddsworldtrickorthreatrobloxid\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2503dc72f0b42d5ec995fb6487b5d9282d8307b0daffa9b5bd77d97c1cba759e", + "regex": "(?i)^https?\\:\\/\\/eddsworldtrickorthreatrobloxid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d0dcd2f7bd693369f88b47fd287f260b5f4ef28c5ec324d2d9f4e0ed8a8cc17", + "regex": "(?i)^https?\\:\\/\\/eddsworldtrickorthreatrobloxid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3176bfddc91b8484819aa8d5ec013682d94ff899ea081a123f0c07eaf22388e3", + "regex": "(?i)^https?\\:\\/\\/eddsworldtrickorthreatrobloxid\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbe107e53bdf2b04b549c9d072dc6b27a3c58a6365aa302210d052edea463461", + "regex": "(?i)^https?\\:\\/\\/eddsworldtrickorthreatrobloxid\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ca27a927d238fef5006aeb2154d842bb9e64a9945082f0c2735e3fc89f6cf03", + "regex": "(?i)^https?\\:\\/\\/robloxkillleaderboardscript\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd19731d73ea9ccbb4be246597c6b9960ff4e04135db95117e6a2ba0b2ea3a43", + "regex": "(?i)^https?\\:\\/\\/robloxkillleaderboardscript\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "888028bdc1be0de8c09724e05f94890b25846ed3a96faa79ceff176fb5a32b81", + "regex": "(?i)^https?\\:\\/\\/robloxkillleaderboardscript\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67b9a4fc7697475326d9805dfed52e57afc85fb9756e5b66374929162bc8c008", + "regex": "(?i)^https?\\:\\/\\/robloxkillleaderboardscript\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94048cd16cb6a84a093740fa7dfe04a013c26d68bf1d5392fc5d05636a3fb090", + "regex": "(?i)^https?\\:\\/\\/robloxkillleaderboardscript\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bafa641a90fcdc6b7ab2066073f35b66ad0ee63ed904778ca17edda43dad0cc", + "regex": "(?i)^https?\\:\\/\\/robloxkillleaderboardscript\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a229a2554f4779d81e4169a2eecd70c8cad0acec49a1a949fa3d90df925e26f", + "regex": "(?i)^https?\\:\\/\\/robloxkillleaderboardscript\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06a02fecae58272340542ad5c69215134d5ae9e0f1e084d5b157ab1c6870cb1e", + "regex": "(?i)^https?\\:\\/\\/robloxkillleaderboardscript\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6967aab162ffa30d798a67c47178e3bb5948288c7cbf7e857269588e70c58ce0", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08692afd3f56cc9fba298914a208d7d3e2cf40d13d459cfec4e1dcba10809930", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f6f192c903635dfda879573160173407df20465326544908a4dfa131c45d04e", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b80fcef207775bc20d19e14d124952199971f8c87dca3e562feeb347259c6240", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "565005672d8dd26bffd162d847308e0395deed9dfabedb50c3423f3355df7cc4", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "591d671120279e39a7d88c84a8845e222da0b876204567008cf7499065ba1bd7", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8d00713b9cb42ef425f7cb30e23d6aedf52873c8a8eb08b5a1c81bbf584947d", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdf43d74d8f5a254966f6880075dcc2ca81ce95978d95921b2b3079c11a691c8", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd23a4bfbb16b647faa6931b995db27a61b2e7e23f184aec271545e73a5e1edf", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eff631e7e6a944ad3c5ebf6a4e6c987536f6e9af9f7b6f8b5a9c0ab6ff29df23", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d84402177af1013a2e9f86a1f3aff5c6661aa97d90cf9871083c713d6ef0ad1", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbf1fe2461edf87ca0761720b0bf23141fe72b62c585c277f028071481f74bd", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7f1e81564fd5d0a302da7aea529637f546c43cc123b658eaea9e427bd5708b1", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4342c258d25c0843a950d6011f6f40ff59155b42cb1982c3c31c6f49227a2ae", + "regex": "(?i)^https?\\:\\/\\/robloxnetworthcalculator\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48bb73487a49cae398ddc41933cc2096510676c2283309bf8e5d9a83591d3f75", + "regex": "(?i)^https?\\:\\/\\/robloxdeathstartycooncodeswiki\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7d79e97d9a3639c14399d502731cc7171d1af91b39aef308cea940d1767a42d", + "regex": "(?i)^https?\\:\\/\\/robloxdeathstartycooncodeswiki\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ba222896b08957d037748e0b64fe60edca052d33a2d9fd8b850e2ddaba6b48a", + "regex": "(?i)^https?\\:\\/\\/robloxdeathstartycooncodeswiki\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d928f47ac8e8328bc2859083621cd99dea446a7c015837dfbc78f2a2057f94a3", + "regex": "(?i)^https?\\:\\/\\/robloxdeathstartycooncodeswiki\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f09583f96dae65509228cef28ad2df9ad2cfc1c661b94dfe852ea7d229f48aa", + "regex": "(?i)^https?\\:\\/\\/robloxdeathstartycooncodeswiki\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c97f90840a79411a4e2c1d0ae3b7007f2706499da1186b6a8e575066c6484d7b", + "regex": "(?i)^https?\\:\\/\\/robloxdeathstartycooncodeswiki\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c9912b33b4edf23fd59db027c39c0425fa8893d0994766adfc34583bde55009", + "regex": "(?i)^https?\\:\\/\\/robloxdeathstartycooncodeswiki\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3722e0ab4fafc714c4f59e8434a5303c7322854888690d0288649a3fa5366f48", + "regex": "(?i)^https?\\:\\/\\/robloxdeathstartycooncodeswiki\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "066f6e223d1642cc657efa0e65fab95cfc3f6c95ab7219c226e44f58808cb944", + "regex": "(?i)^https?\\:\\/\\/robloxdeathstartycooncodeswiki\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13184d80740550d6119f764b366623bc591aa88140ed6f2ecb36b0657f8eca3b", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c919906d620bd3ee4ea40bbc724505a635f163ada4628c8a4b40280a00951e57", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d13707ab7b4500c01761ff38cac03bac8c91081db558558770306d6f42f808f6", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5aee18660fe99e1329370f0bde86a7e68c01a02ff9bd1d398adcfd576782174", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "317d6ff76938292ed166b60a1353b99ca6ae5a013491177efceda23a94dcb151", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7bfa7112ac5bd55a3adcc504f5619ea04eacbc54b26364234232e9d07ea842", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffd15d4ce6589b2978a8fe8fd96390a001c623718a2313f7b963ff79861f2e37", + "regex": "(?i)^https?\\:\\/\\/contasdorobloxcomrobuxsenhas\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2e01a198cd81c9e475dae5b3cdff3256b67f543141b195c6ce58c28e4f5b6ed", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee5cdace4790cc4b0c75ca6b57e162d1c228e39f3b5888547ea69b4584917913", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b354a5d2572302ad1aba08c307cea6ab2f45e30bab251496d4836f9ac21e036", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ea73418384d85bd6ef9c39f3ee19675b2f9049adb9b181247adeb1175b3c910", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d0b520655edc2dbde242478bedf53ed84961e278390c2a1d008258794e8b4d0", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6e23933b0ec111f44f46e1b33cb8181914b2f8261392b0e9a19229af1eac73d", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e4d2274dea570f29011b67415403591292b1b8ed2813b12628e5d9c44e38875", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "493309064940b4bbafc156e417d983ed326b7b68ce056e4be1e64ec8ead67aa1", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6382c550a1219bbc7dee95a587edaa53c3cf142945c818231fcfb5dac93aa50d", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e04615e1c40ba4a713fcf9958ec8b4bf6be9ce849c58ddb1679b903eeb0e8ce", + "regex": "(?i)^https?\\:\\/\\/robloxpranksterface\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38cfe0bfb2abd15c02551c9d391036d8bc57d8a4abeb8fcc4777b105d4317687", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "892a3679b0a5afb8c4dbcd6c0f2a67e80728f7d4ccf12601f179ae53d0fef6c1", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50df61eab2cbb4ad5c67928a642ee3c7feb0253b0960655f7134563a69485d28", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c29f44c5698d3f3438e03c2c77e94ae36f18f002addd5918c9706dd9a0f3ca38", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b400d0c8e959b24c4b102f76b17a8b4603c524f2632a004717baa362cf129b4", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fb2d884a24f8889eb0e6a0232d743f37dfd28297f52974feb17344ebbf83352", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2df46c0d142ee5efdbc2534c8a815ed90527a9d1e95101fd986a29d6819e83d3", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7525f92930ae24d8dd9e4ba33aad3cf880c3ee2b6e4eafa7de1c67deff968136", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "897b134605826fb07571772af3978909ef404fd978b32794590093cddd38bba4", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e170c6c0e55b5e0cb0791e1dc1d6f4c86c4b9fe36f14d6f9116fa1b920fb7df", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b44d1fa7cf7b96eaa6e7cd636b16c9ac66ae1ae97d75072983b2417a07641bb", + "regex": "(?i)^https?\\:\\/\\/isrobloxonplaystation\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bff1b1c75dc97b8800a0547445643a813f3147ae7eaceff3411d6f5c4b57e948", + "regex": "(?i)^https?\\:\\/\\/asimo3089robloxpassword\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3289d375ca8cdef253854e26af6a2f9323c6c2245ca3f3a1f44fb1e7825eaff2", + "regex": "(?i)^https?\\:\\/\\/asimo3089robloxpassword\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88ab9afb1d6ab21393c2b8f3248f6a0e9a60075df6c07fbd2d70605b4f8aa398", + "regex": "(?i)^https?\\:\\/\\/asimo3089robloxpassword\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcb7d8dd2d8fc1c06ad4e26b41562162d705bcd43edecd910179b81779f0e725", + "regex": "(?i)^https?\\:\\/\\/asimo3089robloxpassword\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc9a3e0830060d93c6bdc96b083494e2f1e3e86757c8ebf219488949ecf31f7b", + "regex": "(?i)^https?\\:\\/\\/asimo3089robloxpassword\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "556d9c8e3a35697056b448fabfb5121326c8ff7d891ed56b0acc779667b12640", + "regex": "(?i)^https?\\:\\/\\/asimo3089robloxpassword\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7914c6b469528fcdf6c1383c9365459c6380ebe4943ef928bbaef339f51cbf23", + "regex": "(?i)^https?\\:\\/\\/asimo3089robloxpassword\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e524d70ed946df1b2ed3362193ed6a892d9986acf5709dd45c11f8fcd611868c", + "regex": "(?i)^https?\\:\\/\\/robloxhackdobobesponja\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fe5b3289ffc28a554bd88c6f0f31814420643925500f5d299ee3686d03abda5", + "regex": "(?i)^https?\\:\\/\\/robloxhackdobobesponja\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5df1b6c74881405370586fcbb0efc8162cc077213f796db47ff02b5634c390", + "regex": "(?i)^https?\\:\\/\\/robloxhackdobobesponja\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b78230a39261308ac53d4e533488966d33f59b52aeadc85e723e7a83da1eb61f", + "regex": "(?i)^https?\\:\\/\\/robloxhackdobobesponja\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "587ff4b19a2afb078fc7f6110a2da0ba2133a49416d4408c4dbdf156c12cbc5a", + "regex": "(?i)^https?\\:\\/\\/robloxhackdobobesponja\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f76766180e8185605e1ce060acb724f83ed976ef7ed41f0075c5d48dd208573", + "regex": "(?i)^https?\\:\\/\\/robloxhackdobobesponja\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f21cb88262cc93371da050b5511ed348c0af4a57747c663a305876d35f949255", + "regex": "(?i)^https?\\:\\/\\/robloxhackdobobesponja\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f95475d43b39ec76c60430b00e662a1d0a9262276c48d4736f65e8aaad9783d1", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesforroblox2019december\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e45cec598facac99956d4a4fed8a724af2fb1ea84ab03ca235b0e7ddc22738", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesforroblox2019december\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff64d05cbadb3184429f57381e48b2a135c06f4a7be59770437ab4c493e1d15d", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesforroblox2019december\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c093264a07f68c07860335c14e38ee0677cba777355ffbf8485c82903700b7a8", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesforroblox2019december\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6fe7280bbd1d9aa808136cb12f4f419f182f0de6beb62c6d433669854d67dfd", + "regex": "(?i)^https?\\:\\/\\/robloxfreedownloadnosignup\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba590074af8804fce0bc3ebd1d4c3e9254b2400dc46243026e7bbcc6715c1df4", + "regex": "(?i)^https?\\:\\/\\/robloxfreedownloadnosignup\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82d56a5679a9486e308c7a31c37324d75f7d983a8eda9a5902331c2ddda9f88e", + "regex": "(?i)^https?\\:\\/\\/robloxfreedownloadnosignup\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f79a96b7e4871d3ea9b4a47d249176c089b5d4e32d65b8ddff23e7d7ac5b61e1", + "regex": "(?i)^https?\\:\\/\\/robloxfreedownloadnosignup\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8069847c509f7b4821c2308356a8752ee85f00e76904c2cb68d345e8246c59ae", + "regex": "(?i)^https?\\:\\/\\/robloxfreedownloadnosignup\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c45522d008793b447b72b878fc3a32998f87aaa2098da90d95f6ec5750209ff1", + "regex": "(?i)^https?\\:\\/\\/robloxfreedownloadnosignup\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63c441eea825d832f6abc0cec8b958180be7bca737e41892972d71fd0281050", + "regex": "(?i)^https?\\:\\/\\/robloxfreedownloadnosignup\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0b41693eed4a5a0120a1c667763542574b2f3d710d9f466057623b0bae615e5", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17cccaef5b5db08061d745e1ccdfe54fdfc30f806dfda99b3d00dc227a475fac", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "221518d96dc16939a91c37869ecec7035c56e5a35033d45545ab45b7f0c6690c", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4daef0fd3a6cd290cb61d7d52ab21649a5f334a83f3a6e73b0d771d4f0b2e584", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13a733e7515037abb9f20ad18f5924eb22c6fd9a4d72f79a2a97d44c947e5f42", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe948d4d76bbf98cc6636e2a1accda52bd1142fdea39180a81363e9fd63f1549", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fb866f1d0a1cedd1c2ac18f8cb4ed56159fb127ef2def851388ae6a1eddf19", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40553dcb65799bcd7e7a8fc276133acc7011699ba449b49ca398f2d1df368211", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "419a8954a5b17565ff1cb23d3f86926d9ea7f28ea7abd4127eb043ec60b349f7", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc9ec5ff1a88600af93259d4fcd01e6d5ba39880a76243c9f9c1c5ced9fda960", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76abbf97cb8faab9296491eabf4745fdcb08e397793fb1d3cd0979f3969ecccf", + "regex": "(?i)^https?\\:\\/\\/bearalpharobloxbob\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf167905f8cb8b8289400a02bfa9f34854c9a80eecd0ec67b812b89df0be09f", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18be0c96c25e22717c152c406d7a0283f8f80d4d21c00bf9e07eec9158d46b2b", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "451c0d841f02e502327809c7b9635ad8708c697b932e2b6e9140f71eaee2444f", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b87afe7aaa5cea00b5be1418ef96cfe547bfc96c4f931f039c31dbc48780ba7", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73a2022e1bb454e7a697e110e2476aa3642c41588a2847fb0c3d6f8aede8707", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cd441371e25b841f2844e2aabe2e7dc67d35d60f980ced09a52ba7e964171c3", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1db5f3d1d29f0f848280f5bcc25bc534d6fba30406a8625ac38db33199d169dd", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20771f6431620afdb0996b35705168ec7d5ddf8290d16054394d9095e6492e37", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1973f3b471fbf965f7c13ec11dd932e2b527e6e6eac69b65d9d10e76c6712415", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "887a294f93beead0b59c092a3d4223c56f38274274652711870781b6c5f100cc", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd74afc4a9774deffa88aaeb3237ef74d9596c4cccfd13e3c7819e8cc21efde1", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96e459a143f5aca59b09504ede051bec73271dce966e6870e21213298536096f", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95869545026dc0e7c0341edf635cbc1575cee2118bf00f4c1471ee6908828807", + "regex": "(?i)^https?\\:\\/\\/robloxmilitarymadness\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cda2db01248d35cc91692098f8381fafa7f2d3e1499282ab8aeb4ea72624664", + "regex": "." + }, + { + "hash": "1052abeb2080be01e661bdc5bf6154f4f033a9aedbf68cececfc47d52fb56c12", + "regex": "(?i)^https?\\:\\/\\/ionesdq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27eb9ca2a543456bab49d705d0e9feeae46591cc5e4b2d51c7a843267f1b80b7", + "regex": "(?i)^https?\\:\\/\\/ionesdq\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecf1558fe879d520e6651bd00a5bed139424d991f829a1076107ad08c0e9b231", + "regex": "(?i)^https?\\:\\/\\/ionesdq\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eed8d67da596ba422a151f4612f70cfb3e6a21e92e8b16809fdc5c43e185b74b", + "regex": "(?i)^https?\\:\\/\\/ionesdq\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acfb632e4e56f001e1147b737dd1178d8ec3bde88a58d14c28c6a862b57e8f49", + "regex": "(?i)^https?\\:\\/\\/uphuul\\-lgin1\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "00f666cfdf30364a35e880b912a3bddbf92d44410adeb90a37df8c5a87747167", + "regex": "." + }, + { + "hash": "abfa007abc0e4d80329ea6f6983101ed72b7fb05fc3c050f4f7e3f508ca1a3b8", + "regex": "(?i)^https?\\:\\/\\/c0inbaseprologin\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e55835dac79f3adb5aba10e8b32a7983405184fa8a28f4721917495284ab76bf", + "regex": "." + }, + { + "hash": "addbd807b145eec6a31c6de92e7466b9c85a824a3be169b1a321d62150bd8c1c", + "regex": "(?i)^https?\\:\\/\\/coeinbsepro\\-us\\-logijin02\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6c61e562e9f646b1c751384389acc5f091dc7ad25cade23d81d4e3a7cb5e87a1", + "regex": "." + }, + { + "hash": "2569f9453e8ac8045852328222679f2b8555cc2ab4e3ff74737124883b192493", + "regex": "." + }, + { + "hash": "7b89ba1c132803ef54905a72662aaab1f7131de11e45847b3cae7f6c8e686139", + "regex": "." + }, + { + "hash": "ce124d40f53245e0d2ad3cc7c200e8d77bb8f4fb572723468516e07ede22dae1", + "regex": "(?i)^https?\\:\\/\\/meta4masskklo\\-gin\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6f35f1f40bf2ae8b88080c7712111b1c9fc144d3f050faebe3267e575fd7e0db", + "regex": "." + }, + { + "hash": "baf81e4b8f0c7a14759efb176a6f6959c2324d4f09ec9d5ecb7392e3932ccd37", + "regex": "." + }, + { + "hash": "325fae28cb3159518b6fe1cbd1f1ed81b7c3643c1ec18d8346e6f855d024ac3d", + "regex": "(?i)^https?\\:\\/\\/coinbaselogi0\\-usc\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fd03777e8da23348836c943a631c43b5bcdda3bbf806c6ad8afdfc8f0c9d6c4b", + "regex": "." + }, + { + "hash": "a4871ae0a980633b351f5c01da2672cfb99f15d13ff671ac2367e7b723815d16", + "regex": "." + }, + { + "hash": "5a9f5bd3db302ec6d9209c2d9a3e19305186c747e0bf7e22217692bc57359f08", + "regex": "." + }, + { + "hash": "08722bd8a7f5b4bd2626524a5dc7706471d083b547562d96faa0e4a2d5f8afc9", + "regex": "." + }, + { + "hash": "b10be0761430b571d2a5855d97205cfddbd69f241be1f31df1d7ff8cfd0b519a", + "regex": "(?i)^https?\\:\\/\\/itemshackroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c26b8db22c569bef88958189ac785ecc3501e52ee729d6083d7c7e0cb7331008", + "regex": "(?i)^https?\\:\\/\\/itemshackroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "047c1ae12420289bd0824c2242d289f075e9351a96927ddf5a695286996c146f", + "regex": "(?i)^https?\\:\\/\\/itemshackroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85590d95d9ba086fff2f9bb6bb5eb6b3dfe700a597fad5226a6057608f9e5ec1", + "regex": "(?i)^https?\\:\\/\\/itemshackroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f69b95e423ebac3d3b8d5f98208b97fb33117b2863eb3a0ac680bdb4e14f802", + "regex": "(?i)^https?\\:\\/\\/itemshackroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38b09c0e2606ff5203f101085743eb888cec14d3193ebdafa7037e370da5d6da", + "regex": "(?i)^https?\\:\\/\\/itemshackroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "727ef8b718484c7fb127ec1c4b5644c69c6757dfde740b2c37a4384c988a3cf9", + "regex": "(?i)^https?\\:\\/\\/itemshackroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "864c5a7abd3564a2bba3fcdbbccb548a096b63300099ba6e773aea47cca6b299", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed98c6033be3bbf62dd7bf48c01bcb899703ae29613308bd783416ba2f92af3d", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2da1b97a59f998dd8850be94b24597b78662e8797da5aea01eb1e13983fba357", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3dc6bc4d48a6c53fd2679c69197d2c10f436456add905ae65336d7f952a67081", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53388f0578037ea3c1309823566241daf3aef164362bde4c541a0ab5379f260c", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1e6d9f92e914f6dce99b104fed3974abbefabc1e243ee5e4a0f566fc9a07ebc", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e7e835d2d24e45987b16c932604ecd5cf84c544cfd7687b88609f00ae223edc", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd0117bc10ffc961e1d546040322cf2bdea60180d0478e05d2583a503bdcf363", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81bc947ac5f8c78ca091f21e070ea7d66b14744ac520e2a1663f13ddd60826fd", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa0ba61802c86429a2a5617b967a4899a97925e7104cd7815a3acc28e8a17bd7", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf19eed58a7af72120ae133e9a1d30088d3212344aa34877e2300a451b36152", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesfivenightsatfreddys\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2da1c68b95fa646b5388d8b0f814bebc0663627d969286f50c8855515061238c", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesfivenightsatfreddys\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c109eeb3cdda012afedf2db3c96da20b562bc5335e5f1439bfbf3a3dc7b0f00c", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesfivenightsatfreddys\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b62e38e907b9887fcbcf507326078ebf0bb88c136518ecd6fd819cee378c4d32", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4055174709da0f81915842284e4f9891b0d1e5f85f9e975302b051b201b89019", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b913fc90f7802217f19cdd68fb62ec3f29c0a7b2b529e1892c661565db30986", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfe43cc7d7eeb4c0d4cee6c8bfd14fd9786855a1dd398224fbdaadc64ee0f2c9", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65a8858fc6f8104614cf9ab30706ce1a924321a04229f1a3bfe844fefe8e7505", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b8a9f3018802a214c0b7fe23d04c86aa2802fb66db9bbeb0cb86d2d77626822", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4baced4ac6d81633f4cba3a4b1028cb5dbcb7a7ded80e7fd03b79f1c6a48cb9", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2f34146255b0ad47ebc04e3d0b59314f0e1ab9f64c3ed5d7a216b34518c00b0", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f98426663e27beb436c81e71e2eae4bcf0d4afaec513a10a0b0085309d52516f", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5610620cf0310f8a55d6fa24c92c9774c7bc6b29aca147e97e12fd0b0121214", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a08de5811dca31914e3ce95677cdcd0b2579844b930c4180df86a74d376db1e", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "291b7241180cec45a093b189934770f8fce83909d526360ed680f54faa4862dc", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb925a0b585dd22cc04de9e98d4209de6b7a79a073f6f90e9f7755afad098c7", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "748372cf17872043df9df45a49f395ed258f784f1a7178461c1150dd2230ca36", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5769dab4014990420a78384c222e341a174fa7f1d529dcc20f5692ea6316dc", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "768368e1b96225a07f0f9db9432dd9c1bb7e3263d92d65d198eafb6cf9ec17ef", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d38b550b0f4f9a68eeda87b5c1b2427f8438303506ac5e326eed19049ebd80e", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3502c335dad930cd35608fc57c5b0d4594599468ba0051fa58a2e0f9634c188", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33802537f5e4491f320a8faba6c2d9c625c494a377a15cd5e8a8c3ad58a9a7d1", + "regex": "(?i)^https?\\:\\/\\/200robuxsakyafetalmaroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64a913bfe0b288d34edb1f0b51c5aafaa89a5ae4f162c29657c3a4d4ab35973c", + "regex": "(?i)^https?\\:\\/\\/200robuxsakyafetalmaroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a46411bcac51e503a2ddd1fcec6f4aa08abb8a9a9794722e79232d56b81dbf2", + "regex": "(?i)^https?\\:\\/\\/200robuxsakyafetalmaroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6578ec3d56b1968b3ecae877c3e4051680a8f988c7df3d84308496c246f5c0c", + "regex": "(?i)^https?\\:\\/\\/200robuxsakyafetalmaroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78c5e1e5617b189bd396216b5c7483e1eceb9da9b081cd0182b23b64b065ec61", + "regex": "(?i)^https?\\:\\/\\/200robuxsakyafetalmaroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37f236fb8d3118418ab4a7a15e3559ee4741210283c46a16195ca105d0d46bd6", + "regex": "(?i)^https?\\:\\/\\/200robuxsakyafetalmaroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d387caa6afe5f9773dfa9097620a629c23d611cf611964289fa93f9c68dd5e9c", + "regex": "(?i)^https?\\:\\/\\/200robuxsakyafetalmaroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d8625d463dfb992a51c98ee4bb177bbe0954ba89e029683dce1bd00733ede9f", + "regex": "(?i)^https?\\:\\/\\/200robuxsakyafetalmaroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1744291c9b4a3081a59db4977767fe286642b2ca66a3016c4cb7d7d038bf1897", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baf40e7501b249616a8a061eb97c361896d0db786dd453fefae47e529c75b709", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea51c9e73f954d32787e887cdd6609df03a22517bdbe6c70edbe7cabea98d727", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da8592eb775993a53fd0568f96d1ddef0fdbf983f1114b5e9fb3311dd54c8489", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e8050cc581afc6fc3edde7a1e508796194a5678a69e1c5ae82e79cf7a6d397d", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a99a0f7d3646d2d671f576302e92032bcc7086cb4731044bf4e4803953c07dec", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9e7f3d9588d3d2e84fc6ff4caae281e39ee1f9eb13ffa007e55c5a77dc05c99", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82932895c482fefa27844cc18d0622bde1f7f0e8804c5a0cd14e81b613766708", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d1426224250b410ebb52966ebf575332abd5725089ff1805ca52c5da9986f05", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d901edfcf03205b9d91e3f7be4e8c31a341243c766a22f640c25079e8455d24", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53d9832be0db7c94dc4d5acc0ec957700c1dde26ddd776e50641303e35537d13", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948fda12ea28d1c06d1a544a070769894a614111e23984605ebf9317063439cf", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a577a8ae2caea5ae6f4af00a09e694996659784217293867e0b141e9aeea2a06", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15076230e0e5601eaf8770ebfaf782e0b6748f742da3d3885d9e16f838c45824", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbd673e92ea26550ac70731ee15ed28a531f9fb752000e3f106a24e5406a2252", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d17e0bbfead86075b27acd768121d3a0baf1488affb2223484a5ae4655a7724", + "regex": "(?i)^https?\\:\\/\\/codesbokunorobloxremastered2021novemb\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60e9d0cb06e76b6975b3fa970efdc24512fc90861e9d7fc285f7096e950bb144", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba859b663af96f0519dd5e766bb19b7740bdc3403d14d23af84126c967905ec4", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09f7722e5468fd4a556a0e0e2ea8f66be2c7a8ed6ab64a17b52703ed9b21483f", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71e3d2fc6cddb7a3f9ee9d3ea548d28bba40a1eca450fda35f6e368ac969bbc7", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04770d2cdcf9f34fef0f8d48ea336d99d35e3f0994228a6bbeff276c2c5c2bf6", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a3d9daceb06c2f17534d7e39452b3b670ceafd1f64a825564f60943c5f2bec2", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e64b5f2d67c82a1b903b147d6668dc676ff2d60d6c89e29fbdb3632d36dd32fd", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a02d550af3111387271e30c6d412674080244755acb8f693e37a7c052038891", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3856704d830c4285a29d871c2443b56b1c99c37604acfedfff7e228b24652e2e", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cd480a866f8302b1c7364fe525b7545280fa2676743de3ce23ad73def682f12", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4e732f3e99820c50d488340dadb22c3aa0f76f23aa1735326465ddeb18a7b8a", + "regex": "(?i)^https?\\:\\/\\/hackcontentroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3545dcbf4113df315f2983cc1b5311f26dd36557917636f30e69fbdb357f9f7", + "regex": "." + }, + { + "hash": "92c18e703fc3e6b3efa0dcdd2f636ba9d42428df4eeedd4628e6ede79be4e63f", + "regex": "(?i)^https?\\:\\/\\/upgoldin\\-usawall8\\-sign0nn\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "53972e730d100a580cd72be5b8128bbe286b33f88054518b6c5beba8ec2d8082", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdefreddystycoon3\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32c4c7108a120254ee8440f3ce911a365b9cc02fb01a9a9bae3b7cd6fecbf847", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdefreddystycoon3\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc3ecbec4e9fe79c596bae90ebf66208fa9e53982f4f93ed7f3841b54837300c", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdefreddystycoon3\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdc9f843d0b38bef7f74fcc15a53e335762770b9c9ac7acfdf3a28a0690d80ae", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdefreddystycoon3\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9bd77b7ebf5e855ab24afe18d3e5da6369a9baf7ff2d54348752c75cad00a160", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdefreddystycoon3\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a469c85504696363ba9a15062d72aa7cb7d89392137e9b658a93007df89acec", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdefreddystycoon3\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80780a3360ca318044221fa44344d21a1e86a65e28ddfdc0d98302aed89f51c4", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakhowtogetfreevipserver\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e910f72f75433fa38900be6b6d5b25df1e5535fbdcd71f48a5bb1065c0dc2689", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakhowtogetfreevipserver\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8214e30bb1ec8701014c08a6e0e55a9258a38cb9213527b07a409332d684b5f3", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakhowtogetfreevipserver\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e185584345fbd523e4f14799c757e03b958c8fe8c2d1ad174d673a1b189fe5b1", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakhowtogetfreevipserver\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0a74ea84c7812351892d72cdb5280cf4eb2c362978cdfc6a74b84ae9ebfed0f", + "regex": "(?i)^https?\\:\\/\\/robloxjailbreakhowtogetfreevipserver\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecf1aca2cc51e3609abcf61fc414fa4f89ed822f4b71500a8908b8e4a124276d", + "regex": "." + }, + { + "hash": "28f0398700a5a7e21038560c3470b6088af3f5e108c2ddf5924f4a392613f51b", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f97b6eb8f0f5692beececc4dbec709a6534734b1bf7bbf3435c37ad393480b61", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e43e721477c591304a23ae61e596d05c204f54ad8ecf80e60aebd70c25ed45", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a411c9d7ab8e0b8ecc9157b74d0a57a786e353e72cf16853bc9074dda184816", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baa0c3328f767741cfb1951e0fc2fbf308511debe5cf97a1073c976669849c4a", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3023aad45697406426595579879c16963b2e70376f0c75259e07b9490c167aa3", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "723f783acf92da1dca1ce3698793ad4bd9f1986e7373c96a46afc4248b7a49e5", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90b5f349014cc2dfd06e15166c6a9ccf225085285f3cda28f174e73f4e8fe78f", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a05fd35cd1851ecf5f88107afcaee67a06cfa1dbb974fb8251d621d3c553e427", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f82665dfc1b9f7488c49c8806098ab50a66cac249fb07042d60a002be430a5e", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgame\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6374a88ae78a893ad39f726699b69b5470961677d0129c54de78b6ae432cc474", + "regex": "(?i)^https?\\:\\/\\/rfsddrsdgf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44622014ac67b888aa65890b9aa5aba49d84de27da4fc675b20e3b5fbf4288ae", + "regex": "(?i)^https?\\:\\/\\/rfsddrsdgf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ac22e245d2d7cc5c1c40283f3b07b6eebe6853b4477af601af975726f789990", + "regex": "(?i)^https?\\:\\/\\/rfsddrsdgf\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a20bb230b4ad97ccdc0fae5ed4c2f71b338aa8c21534149c5020a809c261c5eb", + "regex": "(?i)^https?\\:\\/\\/gdereffeas\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2493d9e979031b9fd92bb7f90b26eeab4e8e502d364ff905a3dfe3f5b5856f96", + "regex": "(?i)^https?\\:\\/\\/gdereffeas\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a188d30d2b70384257a55ee7df02bbe11e7ceee4a21b8d53a8f5bd2643b9ba7", + "regex": "(?i)^https?\\:\\/\\/gdereffeas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76abd79531df2a5d7c3ddc3c3f5ae0f58d34fb63ca9b1bf57873b69c842dbc36", + "regex": "(?i)^https?\\:\\/\\/gdereffeas\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03f6826d593f61d38969d551f69975e7930f22cb5e33e15674148df82a998b53", + "regex": "(?i)^https?\\:\\/\\/gdereffeas\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9a07efdc5236eef99b4f180053b385a420c1feaf9adc629a68a5f0ff8fc8498", + "regex": "(?i)^https?\\:\\/\\/gdereffeas\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0dd5815478312426bec11c5e420207718dc0189800574cb2cf8c084ebeef9a0", + "regex": "(?i)^https?\\:\\/\\/gdereffeas\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "842a1b214bc1edff51f0531db579fdcec0c3be0ce1b3027df260b6b4922d6b34", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdiscordbot\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bea10879d52c0ca6cf03728a3d10cdfa36404ed94e2b32fa749cd05585071cb8", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdiscordbot\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19422d1764a39d7a2c473d9f8aa9db7936d5aede961feb4e95f32002107aa225", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdiscordbot\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b06d0c510ed626b8bf8ba5dc5ceca3da64feff845368e15d0db6666f567bf7c3", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdiscordbot\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a5566a46c09566f817fcd871b5878c89be59606c08b8eaeb54aec1ae71f0803", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdiscordbot\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d677d1cb407110b8f06f3c85b51df719c68dcbfec555a51a757ef9eecb8a4fa", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdiscordbot\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a443b975a87f1863b7976493b6908da99f91f0145678014c234d51b2c44d02ef", + "regex": "(?i)^https?\\:\\/\\/robloxclothingdiscordbot\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e45d451fd1642884642463db4630c4467ca971d92afdea1dc4680f190e6cc42", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d0b5d38617ecb0b56946cd2c655cad39fb77f4234326b075c699ad36589a943", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e9d9d9498d9c384fec58a4b55d53b398f7fce8ef789b515052b38796ea9d045", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00f64440476a69c0b5bc0216479a00860657e6d5ac8c57e2a731a21b6c8dfbd5", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8810e1ce0ab7a35fac08b886a7c9a0e4ed8380ffbc0225cc6225d96d892bdd25", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4aa494afe27f5e586bd94ea8a4f152430b0148fd6722227ba80727febf625040", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8603937b0049a2acfd98dbd841c57d39081462f1a50cd3c393b29fa3914e9022", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eff6af26caf24960571aedef7c30472be9b6bb9ef082ac79c59516b492b3f699", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9cecb0875171ece4147d4ab59c9836400632159b48e25cfd45c099a96b23e74", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f726c0e905ee5a45a75caa60a4cdc17a4788e2e3b57dc7a610ee2795808a11b", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "448f5f60ca7b1bb430543327bb3e06d2ea3437721227a95cae0e05b70824dc25", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "634fdbeb27b276df44ffecc5df2d82882e6176ca74da05c41320b51f50ecbecd", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c8ba9eb21cc07ea766455ff3a4ec1756b59cab8cc219aaf3cf49b1fe3cf5222", + "regex": "(?i)^https?\\:\\/\\/robloxfasttrack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c94cfdf75c902ef580eea4b026e8ae90ecc9e688ec7c4305e7343621777ef4", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d298aade5a38d9c4d9dd0df602f875b20f61d6f9c319a4432e6a2f2e1d4f0e0", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5b12823257132aef6028b7cfa1720e5d0c045a92fc56ac68dd749dcf0219b8e", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "793b143beb8ddf44fde1b644032446d01e2c6a4aa1bfccb578b4539c4a542538", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54b0dc409223b2c8be64d69a16ee0d020bbb270f3f8bff009a5380e0003967c7", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b506916e3ee1289fd151caac6798e7f8ef1cc5f3179394df454feae9e255145", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b825abcbd58d16820ce9764bcabf1cb74098195ddd1a75b3dcf26528524c55cf", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a6ac217352cddd8b200bc68129879fa6936f4bdf41aa1014fd92cc656681365", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ef9af208cf475f7448e25f2e3470e5124079ca39436c05a18ec03b59f6d1e2d", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89d981f365b3fa0f1a2d993759adf9db66b331e8b220fdb53f9a1e3e59e94a2b", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d7dfd659f44882ea870731f4468e620fd65755cd503733bd3d9c62fa858ddad", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "653b575408527ef68d302f079b639af93a9e1d0845706b40304047c03f0ccdad", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "485fdc2b61ab071fdbc316b73ae12698eb7eb5a11a2acf262cda91e8369d237e", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71fd6b8675020652e33368d9d87d8fac9c6ae51f0d177b5182d7cd58614bb68c", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ebcbbb3d479a1f784f7fcf7680e02407eec63d2c8698ecdccffadae73dca902", + "regex": "(?i)^https?\\:\\/\\/whatisstarcodeinroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8f2274652cdd990423ee651495de4b9dc5b1801d57f1253c59ec94f7e83e5b6", + "regex": "(?i)^https?\\:\\/\\/robloxguestvore\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "441533d0465c1e075666c536397095c020d0342c90646f33b8c18527eb05c5c3", + "regex": "(?i)^https?\\:\\/\\/robloxguestvore\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66a7ede4b1b282429140b9ae29c70e6e94f4faaef0b4ac1d9de614ecbb9d9b8c", + "regex": "(?i)^https?\\:\\/\\/robloxguestvore\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c0e3a18a5c667d3bc1c4f3ca5c2f14ed2abc27419344fb2e309bcbed49d64d1", + "regex": "(?i)^https?\\:\\/\\/robloxguestvore\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8995bd2b8c62c0606d5745612f6cc7b2c6cdc76aec96250e81d249ff2954e78e", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f622522a80aa3038aac5055e0c229bcd329747a0b78ea097a03bbc6d33f2c64", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "378b525da9c73169abbb77579b7f4363fa2c99460d4c9fa056ac6ad9ccf82085", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "556de5ba2dbdbc1e4dac44906ff9338b922045c6f09081870fe726abd2abdac3", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f5f622432eb4d937bb33528fb25b552355b1468753e65f82b16a026129dc050", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "953d368c846dc53eeef2e08269b46a4fdb237d81caec10527581ad0109e75318", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d366afde6f8085bd18d0c1edc2472ebfbf0a372c2fa21e36325629352cda4345", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78d5542f0d63c97db3d62764c40699fc53a2c1419d1c9fd7f0518a3f6f8f1e01", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b98d2611f887b6c8a322496079369a49cd2fb0f453a67e8e8d9b05664a172173", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42405fcf7266ba055a5d57faca23672c62e973d184d1eacd3c522569a75c1e46", + "regex": "(?i)^https?\\:\\/\\/loadingscreenroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c889a7a366c6a3091235dcb38b6e5181b55de588a2c2cb5f311d1831c0b0e1", + "regex": "(?i)^https?\\:\\/\\/codespeedingwallroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "294b241d99c4379aab0ab45bb78d1e916d735c915b8cbd8919ba6f896b8e2cbd", + "regex": "(?i)^https?\\:\\/\\/codespeedingwallroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a31e7e46355f101d222d6afd9453985e278502f1fdb613ab5f70cb8c4852f8b6", + "regex": "(?i)^https?\\:\\/\\/codespeedingwallroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d0298cd7afca04ffddf457d7815cc83eb9fed9fe060166ed9362584a613e19c", + "regex": "(?i)^https?\\:\\/\\/codespeedingwallroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0440dfa11adb8a61b438098fbedff6222bfc251cb113c09f313c5fb480fa21d", + "regex": "(?i)^https?\\:\\/\\/codespeedingwallroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e8152f1cefb8cc1a639de3b23915f788f7756e73eea2dc82acc078591f3da33", + "regex": "(?i)^https?\\:\\/\\/codespeedingwallroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df0cfdc26dfd5137d9153e164ad6905340ca6b2b9de1f45d939ae95056a49ac4", + "regex": "(?i)^https?\\:\\/\\/codespeedingwallroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "317f64a986b8dabbaf3b4202336d917f699e68a30155de59ee33ca13dcc2e70b", + "regex": "(?i)^https?\\:\\/\\/bornwithoutaheartrobloxid\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae1d0271c0cb103bb4f04849d76fbf61a1e5f9cd8c7956d87823d8fbcc6f10c", + "regex": "(?i)^https?\\:\\/\\/bornwithoutaheartrobloxid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e911e7a45c12e8afe9938b179c3998acea2982f25f9e3408d07475686e146224", + "regex": "(?i)^https?\\:\\/\\/bornwithoutaheartrobloxid\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c31f2da836671d0f142893cadf78b5d47b84be81c2d980e897ffe25d8c08f2fd", + "regex": "(?i)^https?\\:\\/\\/bornwithoutaheartrobloxid\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e7aa47c01c2f05dc55b2b85ac63c3f61b4f78670f08c814449b0ea819338eec", + "regex": "(?i)^https?\\:\\/\\/bornwithoutaheartrobloxid\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56e5ceeb648b2b7a301d1603574ad5be214d3f3c14802fe4e42510e44689cfbc", + "regex": "(?i)^https?\\:\\/\\/bornwithoutaheartrobloxid\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "191345ce33aed460e0d19552881614da7bf73d9481612742d015161d633111cf", + "regex": "(?i)^https?\\:\\/\\/bornwithoutaheartrobloxid\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0a32a9dbcfba8b1ee0fa1cfec8c569238b9f53d1149ea1ca5998166e8cac853", + "regex": "(?i)^https?\\:\\/\\/robloxhairtemplate\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a68f96dcdd619d0750e6022370eaa21034fa76e442c25060dc895727cb2fa2a", + "regex": "(?i)^https?\\:\\/\\/robloxhairtemplate\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2379871314971387691c717c62e32f07e926f031c15937f420973f9f26e4f2d2", + "regex": "(?i)^https?\\:\\/\\/robloxhairtemplate\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49aaf95874bc5331bbff53efba9464d76168e70aebbef05d1e9fb62404fde1bf", + "regex": "(?i)^https?\\:\\/\\/robloxhairtemplate\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e0687a4a521e267100cbea9b62caa5e1c93444434857938a39d8bb4037bba8f", + "regex": "(?i)^https?\\:\\/\\/robloxhairtemplate\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45c41c71ff316d4a4e39bc2daeae5e337c781dde1da3e82fabac39adcb5101af", + "regex": "(?i)^https?\\:\\/\\/robloxhairtemplate\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0f22c96a2eeabbb4cd686e571c7637927044e3c928d2efbdbae4438b525982", + "regex": "(?i)^https?\\:\\/\\/robloxhairtemplate\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627c7907cef9ffa7dcc88fad0f5d2a3aaf385204aade8d93c7fdad9da3660bee", + "regex": "(?i)^https?\\:\\/\\/robloxhairtemplate\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2834ad28248a3cfd6ede902c7e558943a33157493e0f448a11d9cc778c6d7375", + "regex": "." + }, + { + "hash": "85c2a961e7216a33d12c40b0fe1cdc1ff4ba2a7712735695e139703b799c6817", + "regex": "." + }, + { + "hash": "4957875b4a34986199d7a127916fb87247c8069eb204c2254b17c59f714fd3f1", + "regex": "." + }, + { + "hash": "9190053283ff013ca73dd8bbc7f5d08653e03fb3097bd39b99e1229bc5a6d902", + "regex": "." + }, + { + "hash": "2bc74dfdec88afa316ebf7ffb4ee66c4c516b9259e47e356fbda25bb6cd0bdc9", + "regex": "." + }, + { + "hash": "36e492eb8412645806bd6c8d2ae67ddd2870b39b6ede29c7d8d6bedce283f261", + "regex": "." + }, + { + "hash": "c784c314b7def05526ff8a21c5af3a05ed8cee82511f32bea9b6024d454eede0", + "regex": "." + }, + { + "hash": "5f19595c7feca354aa477f6fa70e83b07a896b09f44104f240b3bdd8ef3bfc94", + "regex": "." + }, + { + "hash": "a9ad71a7d354a763236f5b11e3ffe72d263d9eb0680dd0aaf235bcf1ed276866", + "regex": "." + }, + { + "hash": "d4d9169ebb92f6810fda4c6ea247decbdbba7283557077abae000e15eb45356f", + "regex": "." + }, + { + "hash": "803c8ae1d7673ce5a1ca91bb59123db264471d6fe745fa1a1e01386288901a92", + "regex": "." + }, + { + "hash": "8585431961b350c8148b87a54a1eec41c749ea6c2ec81527d3384eb5ecfe888b", + "regex": "." + }, + { + "hash": "b81d34640dd2db685607d9b51107a438d9cdae8557c4dffbc520954f94e973ad", + "regex": "." + }, + { + "hash": "bd30d7dd129464c7df0a4f022cc3aa289cda9e58cecf899e05b2ff065fbc5be2", + "regex": "." + }, + { + "hash": "496d898c83db0aa3aac12cd3803dbfc420adca9e90a46e8483b23bed3cc36036", + "regex": "." + }, + { + "hash": "162083677e033e414db549f891495943082ff2f7048e3f25b683fab3bcb3a36d", + "regex": "." + }, + { + "hash": "4b2bad5c0e3047cc2693ff8b52f34f2dd57be19689256973e7478ef582f37851", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8734e2bac0d76419e772d2188a0a6b703f735d78ddf2d0f81698492cb9a95a3", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fc2816fb77f792a7db4a9c1d0c9bd9a217d1fe857023fcd47da7bc5592bf4f", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "533817d785992b7f520355ef83af15cdc9ddcec1b87b11b14a2f2e200dca3111", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25a4e6c533707a6ad079438a30dac7e395ca38aca9f5266c9ad88bd564a821ab", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "384f33b556253580387d7044dce1e9b1d3e673f308eb487432449449778f6852", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1f8f5964575f85d4326ee00b80cb4fb34a260d020601cc21d2f6de91894d27c", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "209e87863dca7c9f913a9e261f452a17949f68137a5b2a0d428f6f67731fc942", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eba3801a145d9647c2a668c7c64c13c1fc0f1b58ad877365df0c06dca6a89224", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe6e41a375707fe697ee0dc8ed0ad44cc5cb098ab90a0c9a9ab3c6da599486dd", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5aa5737479c5cfb0a4af0a1d15e606e0df367d65204bb3d3dc7f3dbd54a4f1ed", + "regex": "(?i)^https?\\:\\/\\/robloxlifeinparadise2\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "615f9da2e496999d73f28c4463a6e3ca9a92bd193c86541b146fe4c699a9d13e", + "regex": "(?i)^https?\\:\\/\\/henrythedevrobloxcodes\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "339499c29a6f3a9805abcd1f317d27c4685dfc126a2b7cccbf4fd1bd87c02828", + "regex": "(?i)^https?\\:\\/\\/henrythedevrobloxcodes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec55a2a7e5df354f5344ca283cbf52380e40e98aaa890353209128065d309fee", + "regex": "(?i)^https?\\:\\/\\/henrythedevrobloxcodes\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76dcf60c48bb6d7fd02759d4bfd966ba3ea364edce68b9ecf08699353e6a9655", + "regex": "(?i)^https?\\:\\/\\/henrythedevrobloxcodes\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53ef4cb80b9838dd42f9f09cd9187551091b682e54b1f02a480cce5158b16b10", + "regex": "(?i)^https?\\:\\/\\/henrythedevrobloxcodes\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d089f118542891b4b05b21a491adf0c69e3e1b1ea5b7254a2f317b75c9f5ff4b", + "regex": "(?i)^https?\\:\\/\\/henrythedevrobloxcodes\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "253f7461762f8f7fa78efd5b1e6cd342da0e6599ba39742440198c71a83de5d4", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a34352ce35aca8fb3813c293bd6f8c3977c5df9820adbee17e82daed2c7754cd", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2301df67d281a690204070a9d0c64c671323537179b51b2cd36e09c1d030e832", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5b53554a8b95392491a9c947ef6712f5d832cc90a20f4655d01a7c5814d544b", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2eb7b5e7288b787e942f0433ac7ef7c13caf07194c348ce3cd19f152fba730c", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf664c022b8a96cf3da0f1f2a0130f95cd24525706e0af2974415c278cd1b1cb", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56f9b30d8039cabcaf2d4d1de8588b693c5f3a9e829a3650ed4f288ea84fa931", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a2fd8c764b1e87d297bb5ef11f4f527745d8547eb045931e9bef8018b6cb5e2", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbfc0fcba5706a7ef058ce619bde291fb147d7457d288ba9d418bccdf68bf414", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c918f98976070a40424c3cb1fa19b58493c013496345e7e4d7e95453e36b2b61", + "regex": "(?i)^https?\\:\\/\\/canyouplayrobloxonhpstream\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8287ccb8397b2b3ceaa9fda07872e83c8a343335056256c6458636c818f1bcc5", + "regex": "(?i)^https?\\:\\/\\/thomasandfriendsthegreatdiscoveryr1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29464de31af3933dd9bcab2b3ce297acb0a187df54ac4ef44528601456f68c42", + "regex": "(?i)^https?\\:\\/\\/thomasandfriendsthegreatdiscoveryr1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70e805e9e80484e57f60f37331a7a0a06bd624d008eacefa8032ac3b32a9e43a", + "regex": "(?i)^https?\\:\\/\\/thomasandfriendsthegreatdiscoveryr1\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aea2952e3fd2fc99a7609a4fa6156a7453bc9a6887d6812cc92487fa62dc805", + "regex": "(?i)^https?\\:\\/\\/thomasandfriendsthegreatdiscoveryr1\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e82d58f2f09f967ca391f94244a225648ce7b1030ee7a324d4e598509f55f2b3", + "regex": "(?i)^https?\\:\\/\\/thomasandfriendsthegreatdiscoveryr1\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8f00089efb697f1227a66f3bbacb2ee7e730341f2903bc9d288c7b0ce63df0d", + "regex": "(?i)^https?\\:\\/\\/thomasandfriendsthegreatdiscoveryr1\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39b7f9b885d05ff499633410fa98a82853812d59d907efdb8c0b7abc379f946c", + "regex": "(?i)^https?\\:\\/\\/robloxlexus\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae3a08136b4719dd02e5f90d0034cad75432b2e24619c2ee5172aad1329d3da4", + "regex": "(?i)^https?\\:\\/\\/robloxlexus\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caf3743b8234f60fa98df65b14458633b852edb3b4444816c7719b5b3fd56026", + "regex": "(?i)^https?\\:\\/\\/robloxlexus\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "618f36201b0e21421714ebcc0e0e49ceb08e067765a49b476fd7970cc2b5a9a4", + "regex": "(?i)^https?\\:\\/\\/robloxlexus\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5669efda0819a4625f90ece0887a865958c31443c217b9f66123fc7997843c73", + "regex": "(?i)^https?\\:\\/\\/robloxlexus\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a03284539d1874e5d5be81db6b2d015124f32008ba133b6fc46d77518bdceedb", + "regex": "(?i)^https?\\:\\/\\/robloxlexus\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ac60ad346a4ad43d79bb5911514e806a564ccef8d674e488e2c972a1c033527", + "regex": "(?i)^https?\\:\\/\\/robloxlexus\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cabf88f2bb2f753462379173f486cec4c19d7919f1fabdb1caf6c03791c4bfd8", + "regex": "(?i)^https?\\:\\/\\/robloxlexus\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68bdb8223f0ffe9fc44dde19a0ea66cb4b77fcc9b5fc7c28e5ce8050118bfd29", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47a832aca7e59512ea94c24ac9508974420f1691e61afe9be14be55777db1e47", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cce1aba6c34dba6900aea520df009c36e32363f8845bdd03b8aaf50df7a02e7d", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1dd80f6c4d69003d44ccac38b957e0e62af4e679af092ff5b9c381b101672712", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21a6f4510cd188573c92cb54cf496f25b33271119cc1b4f3d8e016e19f35bd91", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c06848becd1fe92826cd57d1984ef6a50f2d2fc951dab65bbf6a534e68fb016", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a87faa0040d50e0b0154d2709676ff5fad6d25cd61934422fb88eefbb726b1e", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3280d285c6c5a5274905a14791445ee392852d51f1b0fe2ae87a77febbae4b73", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4662f074a00e91444feb809943284311dcd39f3d0c17f2cdba7fb21f53023f76", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da7a168c0ad2c1869e0ab7b92a3de72ed5a5006e5783ff1adfc72e49201a88a1", + "regex": "." + }, + { + "hash": "407399a7a334e7be01914d9c8a6f0291b848b2c86a64862cac4a47818c9c5142", + "regex": "." + }, + { + "hash": "fd426e97f22c61d3ad9c234b44c2bc3f2042cf11c82f11ed0bfb2c8103bd8400", + "regex": "." + }, + { + "hash": "ac5110633d9f0ff406466c720f5f3ce8cfc1f734139a81b1acbb08d167dbd4fe", + "regex": "." + }, + { + "hash": "34dcaea43e767db34e8075685cdce38bbdfd8c5f53ce1ca633a454907b63092b", + "regex": "." + }, + { + "hash": "5b5d885b3ad0f5ec14ce8e3d9cceaf5f2288c8ec39bc69a2eb2f1cd1dad05bb1", + "regex": "." + }, + { + "hash": "553724328ea0ae9211c498c8ad4c0288bd296c189453983b539ec63c02876387", + "regex": "." + }, + { + "hash": "bd08e883ab262757baff849ac4042deddadbe3fc698e76b3aa811be2c40b1a4e", + "regex": "." + }, + { + "hash": "6eb3fa6dac0ac2bb32df10594339c32ede9e045d7ba58e955123e87bf6c951e0", + "regex": "." + }, + { + "hash": "18aabcf48cda7c587f0c5ac9e3fe64bb5e707b8d7b1602a52fa60b7bc2b06ae5", + "regex": "." + }, + { + "hash": "3bef29fd212ddc2613f19f382cec93b632f9d23b78a8d3cbf98ccd55f428943e", + "regex": "." + }, + { + "hash": "b3dda4fcc92bbdb6c0b72267d0d0f4466397e51257a40c46d2bbf579b3a30a49", + "regex": "." + }, + { + "hash": "6d721c23ea3ceb52382a34ccb300af2f746ba7bd37ded2d6fb3df67305167502", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7cd21cf7b19628314a815efcafaf507f38ec265cbd17abfd667a342bfc61267", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "871e6600667017e43ac15be56ce92f350a4433d680f765b4506e0ae83be31fc3", + "regex": "." + }, + { + "hash": "bc6e36e23f75bb56a187adc28265677bd64657d00c645fe4c1ea9bd6e500c387", + "regex": "." + }, + { + "hash": "9f6fbcbd6ae2cbebe9e0e38107f3c499dd8d5e32f1b48e052c710b260c3207ec", + "regex": "(?i)^https?\\:\\/\\/www\\.app\\-ens\\-domains\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96504f19153458271e00a7a2128fccb02c21ac20536ca377f2a31f5d29f083ea", + "regex": "(?i)^https?\\:\\/\\/www\\.app\\-ens\\-domains\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94ea2a613934c8ac745b87ece01e724914c1e7177eca8d3d7bcaeaf6e657520a", + "regex": "(?i)^https?\\:\\/\\/www\\.app\\-ens\\-domains\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10b4779d971fe5eb8c22d8902bfc98a95fead5188e2ada16574069248eb3ac8d", + "regex": "(?i)^https?\\:\\/\\/www\\.app\\-ens\\-domains\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0d1f1030116a3257b2227602ac8068720d0ad1bc3f6341541cb273449074329", + "regex": "(?i)^https?\\:\\/\\/www\\.app\\-ens\\-domains\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f82294b042333f2ae7d71af7712a76d822ef5389f5b82a7f49ae2575ac744aa7", + "regex": "." + }, + { + "hash": "6cdd6b63d9b13d3f45227a9b112a6123cb34741daf7db39f1b2c39b119da56d0", + "regex": "(?i)^https?\\:\\/\\/altranlonline\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f84585a2dc48ab76a654afa58f6b40d131e9205e0cd2549fbf8bfb3b33beaea0", + "regex": "." + }, + { + "hash": "1a2455a8d465fe24ca14eeb7ad308382a103c3658486859071dc542d0ce99ec5", + "regex": "." + }, + { + "hash": "1ba0c601b4b23012fcf00da9306351e356c1effbd46f27962d45582b0eba4b2b", + "regex": "." + }, + { + "hash": "235b33aa0099d3b02b3b30fd06c271928b2b489132eb129e60feba671dbb8fd5", + "regex": "." + }, + { + "hash": "54fa3c67d2eedf034d7e9ae3d81b6b74f415753575ee5a3efe32385aa96365b0", + "regex": "." + }, + { + "hash": "f0433ccf2c2bb03b5e05218e712c36cfa90f0aa2c085a9603f7344084a21dcef", + "regex": "." + }, + { + "hash": "b753f2116db8172c40c83c97099d0d6081a8b48d794bf41c3c9226e2a8baf66d", + "regex": "." + }, + { + "hash": "13b4346a19038b5ae79b0b4bd3b8158952f9a16df13f623a2b1b38dd84275583", + "regex": "." + }, + { + "hash": "cb563c3330179528ab941c7a5c00725daf559e20abacb7f59274fd2d4c56ebd4", + "regex": "(?i)^https?\\:\\/\\/bimcell\\-net\\-\\-com\\-t\\-r\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "877d45de2bd12cc8044a6e5fb9f5ac6d3be36fd9614d86b9b89028e5849befe2", + "regex": "(?i)^https?\\:\\/\\/bimcell\\-net\\-\\-com\\-t\\-r\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aaaf1c5988bd53a4e3091847c24dbb2f876e42af84b298fbb2e5b13d3da88574", + "regex": "(?i)^https?\\:\\/\\/bimcell\\-net\\-\\-com\\-t\\-r\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c880603b5760212e21a3a28eb4c5ce850938b2ff27b3e52a996a1fee61d590", + "regex": "(?i)^https?\\:\\/\\/bimcell\\-net\\-\\-com\\-t\\-r\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f93337ae2f854ec24810618a1f9827d587df521c13064b009a436ab508f137c9", + "regex": "(?i)^https?\\:\\/\\/bimcell\\-net\\-\\-com\\-t\\-r\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "887ad65f85a0ca491b451da01a6f2535de191cf2638f76bc5709d98a3eb44541", + "regex": "(?i)^https?\\:\\/\\/bimcell\\-net\\-\\-com\\-t\\-r\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90fb8ca3acfe7f0c46c6d48966491d9b46846c991abaaf264e9643416a625819", + "regex": "." + }, + { + "hash": "31e2f77cf71ffb5575e9b0bee91fd64a5175b10e99741a0e5b7be10b09a9679d", + "regex": "." + }, + { + "hash": "18c8facd406178882bc277527fb9701055f1eee7a8c844c3eb8ebee30674cce6", + "regex": "." + }, + { + "hash": "83e8b29adfadb4897f1a42c533ec4c76286b5670b5183c93b1d1306343be2df8", + "regex": "(?i)^https?\\:\\/\\/gemini_logan9\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ee53903b1452d4b057fe1856fccc7c8878015148449f23f7a8df0f453be32da5", + "regex": "." + }, + { + "hash": "a9bf0583c28afd91af32cdb12f0ab32dfe320524354ea562d2b598950a00245e", + "regex": "." + }, + { + "hash": "4ec5b3f3e69938b7696e47b4795c767ddec7bd9665b595535365694d1c1d031a", + "regex": "." + }, + { + "hash": "d89d200e8aa417887ee98e505b73b08819a40b9d4aa5b7a686865ff4d63c0cb4", + "regex": "." + }, + { + "hash": "1ef4d432e8817f6cc88bc30344cd1aa2ba0e0dbaa4af27fe1ca55a0720f467f2", + "regex": "." + }, + { + "hash": "564e89c60f456dc50c8dcefaf4e2d3a8f24f906b01eae2565905f312bfea908d", + "regex": "(?i)^https?\\:\\/\\/pro\\-coinbaslogen0\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "01792aa5c5f7d0a5d63e266ff6205003ece81385458e00126311b6a54d3d11cd", + "regex": "." + }, + { + "hash": "6f6dc5a5001e0e9a0d5b6034075e6341eff29adb9f6d0a7b70a7ba3dcaf8b181", + "regex": "(?i)^https?\\:\\/\\/c0inbaxeprologin\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bcbff724d54187d64a1fd0b99e26d647b09c383f14a4c8ac78131e1a13f06925", + "regex": "." + }, + { + "hash": "18f16c100ad6f924f99bcf4c1be6c65dcdf7f63256db0f8be9488203e2d08856", + "regex": "." + }, + { + "hash": "60518801bec8666679cdc7d5819857731ad110d9ea697d977f352492f5ae8d96", + "regex": "." + }, + { + "hash": "f9449df27412976253e9df666b200fe3cbf71be17ecfcb2e84a921a465dd3ce8", + "regex": "." + }, + { + "hash": "9063f0c22931219ccc4f739b3b3893e8cb44ceae5056bea7325c1700552eb5c6", + "regex": "." + }, + { + "hash": "d9b93f3d2fffd22de8a0169f2ac40d771f11488006487c54f7b562923ab435e0", + "regex": "(?i)^https?\\:\\/\\/motttimask3\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0cb2d1b6183206ce40c4f56dde404a3d056e85886d61ecded2cfc485314495d5", + "regex": "(?i)^https?\\:\\/\\/meti_mask_us4\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "09a5b60b584251074a5d9f4b6b87e71f1ba8afaca244ff438095bd5f148c1b96", + "regex": "." + }, + { + "hash": "f617892dd6ab7bf6f568c6ef3d0d4c9faffe31c6643b4ef95399e660d2540b28", + "regex": "(?i)^https?\\:\\/\\/mettaamask_login_u3\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "85a174fa7e0c4a35db2cd63a49113561b9d24a01ed8d5c0ad9b5b1384e91607b", + "regex": "(?i)^https?\\:\\/\\/mettamask\\-lgin_1\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5cf2e551c499639999a2aaabb14c945fff5813c8b350afb906771641740883dc", + "regex": "." + }, + { + "hash": "777198c70b87424386607c88501431e78783bef72dc3617167ad4b44a4c9abea", + "regex": "." + }, + { + "hash": "3389af03cc1c65920c3325ea42c71c3195da7b4f80542738bcc6c31f2012b1f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d4b0793162125b381f4508b66e35224117ff4b6c08fbabdb19af4818ef62614", + "regex": "(?i)^https?\\:\\/\\/uphild\\-loggii6\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4e4dc461f65025caf627a27ee748491cfc46aaac0ccf794ba8998d6ad46c921c", + "regex": "." + }, + { + "hash": "b3ae748ea87670f838287298bc9400cd94670adb0530df558a97abf1d5a1c3f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3ae748ea87670f838287298bc9400cd94670adb0530df558a97abf1d5a1c3f1", + "regex": "(?i)^https?\\:\\/\\/metamaskwalletsss\\-2\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77920e9c6110da5aa3197f6686bfba2550cc227842e8f36f15cd97e15aa77566", + "regex": "." + }, + { + "hash": "3d08a758921eeb6b1247e0c33288c769b3dcfb37e6006c32a8b9f014182d9bd5", + "regex": "." + }, + { + "hash": "7a246b1bac1fa9f80d7c91daa30cfcd5882fee16de6ff2db228547141a3588fc", + "regex": "." + }, + { + "hash": "a7c0a9c00bd0cab6657a07f21b5cb2dfe7421a05bdf31926d0426682badf3f27", + "regex": "." + }, + { + "hash": "c7829a1db0248332e740527e6190bd658b2372795619baa08245f488f855ce50", + "regex": "." + }, + { + "hash": "7676c99955e0536e9c817147ae052d61933795addd58a107320d80f9174ad673", + "regex": "(?i)^https?\\:\\/\\/all\\-inkl\\.com\\.kasserve7\\.flexiserver9\\.pcbox\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "406b7f64cc2f329bfa152bbfa20ef0214f4410127665f26a35f906a53215182f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Clone" + }, + { + "hash": "2def089409499860a15fa91d8baa2e7e92a1332a487ff37294a88d5e12e21507", + "regex": "." + }, + { + "hash": "b4dfcad296c3eabcf08d9f86352ee2c2c8aec87baf48eac05d51902dc0714214", + "regex": "(?i)^https?\\:\\/\\/coiinbaasprollogi23\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ad450bf9a49948a8fb2120ea4ee18fb38849e894717f868ec83bfd9d80fb1741", + "regex": "." + }, + { + "hash": "d8ff98c47192e0dfa46540fcb57e150eb8f4e3ae7a403c4c05bd6404adb5bbfc", + "regex": "." + }, + { + "hash": "1e80db65f5b6b4bb84a721db445cadb0db72dbce93e8463f75608af3d32a7bff", + "regex": "." + }, + { + "hash": "d09370ef00b119901b4c175115b238085b1238a4c55aa327567cced59e751a8f", + "regex": "." + }, + { + "hash": "8dc5d04cea773f8a975c90c30359e454f8cc46e65c63394a5be9035a57323ec8", + "regex": "." + }, + { + "hash": "1212a3bff816fb7b9bfceab435080ab8873647afb317298a94f4cfdf2515c7e3", + "regex": "." + }, + { + "hash": "6d3f2dcae0f0e64ecb250ae6f7c662e288cbf03fcd1c3de30c47d1915bce9e74", + "regex": "." + }, + { + "hash": "32b1bffd2a79a3494655952b6b4a6bd299c5fabe0d8ae3ab18e329315f0fa026", + "regex": "." + }, + { + "hash": "94b9828da6da420f702400d33c00033b6df8d72b1e75f19a7b87671a9d1af9ce", + "regex": "." + }, + { + "hash": "a1cfae8eca04dc55a59204190f370fc9a1ec0e88ac346aaa79509874baf98705", + "regex": "." + }, + { + "hash": "1c974747f0ea20557e6c29b951db54eb131b85ecb76c3c70f12630e717a47bf7", + "regex": "." + }, + { + "hash": "b5c8a46f356597e3f332017018c669b088ae81c26fe1c94ae307ab90579aa695", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b775a7fd1b89286c76322f50489445990f0aaf9218a4b21568e1c5ab45e71fa", + "regex": "." + }, + { + "hash": "a6c95639585c12c3ced7c4541d97465ed970e9254c88d0917f5bec90308f79b5", + "regex": "(?i)^https?\\:\\/\\/metaimak9_logii\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "93bf325c1aafc1f7b1806b8ed3fb913a0cdb682eec0d527eb09d2338a4d66d6f", + "regex": "." + }, + { + "hash": "cd22a84e0dfa65193430157538bd49d518aba20d327df0a28f9245203344f014", + "regex": "." + }, + { + "hash": "de1153a731510d4093210805c18b0c829803aa8f65dbd4c918e68c85cccc574e", + "regex": "." + }, + { + "hash": "8ab9d1cf49f242ca79a55dd27dc9dc2d139c1f712e60175261932c24a13bcd25", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AU0AAA\\-ap\\-gAAAAAAAAAAK\\-syTgAAYCruEkAAAAAAB9rGABkESUMIutEZi6\\-R_WGiFXiHp6xZgAdsAw[\\/\\\\]+1[\\/\\\\]+ooto6IOw6a\\-T1WFUHObxow[\\/\\\\]+aHR0cHM6Ly93ZWIzYXV0aG8uemhhbmd3YW5nMS5yZXBsLmNvLyNpbmZvQGVuY29yZWpldGNlbnRlci5jb20$" + }, + { + "hash": "3c055813114ad9e9ce7c1348affa5f6aa815dadd05c591c51403499d8ca9143d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook" + }, + { + "hash": "77f2d13c9ed4e675b065ed47e7e84aa0930ce914a08f2ca972f4376dea26c006", + "regex": "(?i)^https?\\:\\/\\/coinbasecryptocurrency\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "782f97779090e8d7fadd145c198adb60938808c7da6c74be0dfb7be4386bcbf7", + "regex": "(?i)^https?\\:\\/\\/coinbasecryptocurrency\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d989b28ac976c870fcc080f909e42224fc0d039517cb45b298663621b8ead0", + "regex": "(?i)^https?\\:\\/\\/coinbasecryptocurrency\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "291be1766a08f2711a6a0d6afadc8960516cdb988f48fce7e2b6c61280043be0", + "regex": "(?i)^https?\\:\\/\\/coinbasecryptocurrency\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3ee55498b47acb22c9ee7194a074243c53988b45c7f04da1cafca0b862b1207", + "regex": "(?i)^https?\\:\\/\\/coinbasecryptocurrency\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "364d1f6f1f3ef8818c72b862288f9a64cf5a0c1c63770b5f81bf74c1474244b0", + "regex": "(?i)^https?\\:\\/\\/coinbasecryptocurrency\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca1d01c91ee5623fee0e9c0d5a838d3f632f2428ca4637a9d3e8cfb1ca499b8d", + "regex": "(?i)^https?\\:\\/\\/coinbasecryptocurrency\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3e3ff332f8faccf253224fab011643fcd36e8639c9b3fdb98eea29eb63daba5", + "regex": "(?i)^https?\\:\\/\\/coinbasecryptocurrency\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c421e9ff1cc72b20d0a8ee477327ddeae9f0a5778062ae8c3aad37a6e3edf45", + "regex": "(?i)^https?\\:\\/\\/coinbasecryptocurrency\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0b93529be6561b9514c7d908a092339379cf68e0f7e794215e500a149547a6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e814252eaabdf420adbac589749c3a6949b6368548dd54237d98e574593890f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd60d561d8519756d2142ba4c1d16fc8395deeff0ae2f3784c5cbc5d3834ac85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "600152449ddf4b7f1242d25a311917a87081c3496bed07f639923719a17a3986", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+serve[\\/\\\\]+MUIEAN7jDBeZ99YcxAKj7BWWIF\\-7dTL3COY0v_kvpBvdTemBPvIiPm_U2M25ZplOWsrdd18EXCylF13unW\\-lUId1tgzQO\\-eXuKu6Bp_StE1ncNcXWRYmvIKkUzj2wWkRh8enazEAJF\\-2D7GJaF4TJsOgwLLFufYAgBhF9zdXA1iGPcEj\\-YmHX7xqatqXh75wmmuOuPV6SUKQc92J$" + }, + { + "hash": "ecdc8465562c9417d906c134d031a871404c258134ae0885b44dd0753c8badd4", + "regex": "(?i)^https?\\:\\/\\/robuxroblux\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "793ec2eacab7675e1132a15bda2f0e59ba2391ad9e7e0f65df4e49c84ec79e9c", + "regex": "(?i)^https?\\:\\/\\/robuxroblux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "862796873b5e4d42ec69ccdc22ec5e850b8f36026ff84b2479535c19057c4296", + "regex": "(?i)^https?\\:\\/\\/robuxroblux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea0e93fd6e34432b2a1f1ff18ac0e3a62304fc81118b68993136173f57cdde76", + "regex": "(?i)^https?\\:\\/\\/robuxroblux\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1280de23e09081c0a9a048ebe719e6a8e3267277ab5884ca930e69934f5c88ee", + "regex": "(?i)^https?\\:\\/\\/robuxroblux\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49331ae3fd8dab72e0571e76094a511e4bb89a3bb2adc2f7c6fc492741e110d8", + "regex": "(?i)^https?\\:\\/\\/robuxroblux\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e56fbfcc6c3f7c3a618f16e94a485eca6c46e34dab72388b9afe21f813db867e", + "regex": "(?i)^https?\\:\\/\\/robuxroblux\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "454fa83ec7cd347c57e387334f5f1b7307ea8cc8453107ac571bbbefdec9c5fb", + "regex": "(?i)^https?\\:\\/\\/robuxroblux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "164a1e7b1aad0a702dc67761e78fbfebc1bb0b75c0d908361745f663b3b9d317", + "regex": "(?i)^https?\\:\\/\\/robuxroblux\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd075b529aa4bd16a4b19009fb9619c083f893872e0577a60832c29a63de72df", + "regex": "." + }, + { + "hash": "8c995ef38ee1851c392cce42796d077a565d455d826cb1aa50524ef3083fa89b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix" + }, + { + "hash": "853741d11927122947c3dca971054a85620bba9ddf952ace9ae1e1bfac180d7d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "853741d11927122947c3dca971054a85620bba9ddf952ace9ae1e1bfac180d7d", + "regex": "(?i)^https?\\:\\/\\/geemimilogin\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e95a500e7c48a5d8b64dd9d898738ede3420351856aacfc62b500499670129e", + "regex": "(?i)^https?\\:\\/\\/gevminiulogiz\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab9d1cf49f242ca79a55dd27dc9dc2d139c1f712e60175261932c24a13bcd25", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AVMAAA\\-5pRoAAAAAAAAAAK_DgpEAAYCruEkAAAAAAB9rGABkE9uEJUetL598RuGeySUC8cYQJwAdsAw[\\/\\\\]+1[\\/\\\\]+5nbj6g\\-VqSvQ03hI3DDipA[\\/\\\\]+aHR0cHM6Ly93ZWIzYXV0aG8uemhhbmd3YW5nMS5yZXBsLmNvLyNrZXZpbmhAZ2xhY2llcmJheWNydWlzZWxpbmUuY29t$" + }, + { + "hash": "197d484506dc07ef7833d45e105da623be700b154fd186943b04b320d4c36019", + "regex": "." + }, + { + "hash": "bbdbc0753fc0604fb178ce28179cf92375562afd4f2168dd0b9d40d5fee50ac0", + "regex": "(?i)^https?\\:\\/\\/rrobbinh0odnvloggi\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69446f196f52dcc80e641868b16b1da52c96e96520c651374281628049736b99", + "regex": "." + }, + { + "hash": "0bc132aa60816d5a89a128dfd86baff4cfe7f78c7a3e25ec1d449ee7671ac5ae", + "regex": "." + }, + { + "hash": "e391866cd3857be0a269e36780ce942604103553eb1d5703e4612b355e5ec6a0", + "regex": "(?i)^https?\\:\\/\\/metamask\\-wallett\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "364263925508866206fce6d1fdaf5be9dc1e2536dc3c78933a3effbcbd48d0ff", + "regex": "(?i)^https?\\:\\/\\/metamask\\-wallett\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d2e69c9abec79af4b57a2eddcfbf7d765002eb7753de7e156d6fb9be150c20", + "regex": "(?i)^https?\\:\\/\\/metamask\\-wallett\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf1b0e7b367478e4435a5cb2c68d1c9d9980b9bd4abed3d7f1c8e31703fac6d0", + "regex": "(?i)^https?\\:\\/\\/metamask\\-wallett\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d3aa04240c31097f7c9d3fe72bd73820840b946d8d5c68508850084d394208b", + "regex": "(?i)^https?\\:\\/\\/metamask\\-wallett\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a32cc7f4c9d042576c7e250ee39da54f59e17af6f0aee222cc2064b7388e72f7", + "regex": "(?i)^https?\\:\\/\\/metamask\\-wallett\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bef41ecf45cabab3462f75f7de4edeee9fab8ed9e5f721862f1ddd499385fb52", + "regex": "(?i)^https?\\:\\/\\/metamask\\-wallett\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "426d6ff7f103f9eb4ab7a24045e4f37c6644fb6238e2aacfa50ca2fdf90b5451", + "regex": "(?i)^https?\\:\\/\\/metamask\\-wallett\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "892d286f22bdf6148916a46c634b07464e4c2e648d58e22431fa53879ca0dc92", + "regex": "(?i)^https?\\:\\/\\/mettamakwalles\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27c67da8f7d6d9aaeef9532e5bb2cf592c8e55efb58888df71198635f2caf62f", + "regex": "." + }, + { + "hash": "b3f109fe448a4e462e680d98a6c90587b1eec535daa48caf2aed1d376c5f67a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cryptotech[\\/\\\\]+post[\\/\\\\]+troubleshooting\\-tips\\-for\\-metamask\\-sign\\-in\\-issues" + }, + { + "hash": "f9248b1b8bb8cb43d0b358f15bf6523da1d9de6673dba323323c8182bb14a4fa", + "regex": "." + }, + { + "hash": "71b2cc299a43d196e014d3cfa1b50157874bfb8103ffde1003b6cd47d5f84d6d", + "regex": "." + }, + { + "hash": "1ad6b6828ddf64fb60be9cac5165c284b06d5d822302b973662a68c1e26a99f2", + "regex": "(?i)^https?\\:\\/\\/metta_missiising0\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a649ad8cec190e26234e88396492326aa5ee029baff7d58599e30ad10212c91b", + "regex": "(?i)^https?\\:\\/\\/genmnilogni\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19732b001d5efc8c03409f14fdef5a0ff4be8601b2cf9063c81030522f3584e1", + "regex": "." + }, + { + "hash": "44ee5795d053f0bc1788c2792e3244c6daf20170cea5a277287100a3fd592836", + "regex": "." + }, + { + "hash": "c6c3310b85996c5dbe9ecd9144370952ce53fdfeac381ea3bd7e7495a47bbb56", + "regex": "." + }, + { + "hash": "d23b018a5393de0a9d499bc195977ee2aec1c21b67d3238f41e980cb16353573", + "regex": "." + }, + { + "hash": "8e5d47b8b78ddc2c688778317a7a4ddf0f577487039c707659ce61baf801358e", + "regex": "." + }, + { + "hash": "bc30e77542c1bd3972e941c0fae1c3a8b31cb672d3730b5b41ac8cce719f1899", + "regex": "." + }, + { + "hash": "9db1a830559fa74abe45dad3afacdf2c789d453d02f50bec3a6c9172ecf17439", + "regex": "." + }, + { + "hash": "6ab34c103233442da6a0fd3b1dd4f0a56477f89c929ec2667fa2618b0b628e5a", + "regex": "(?i)^https?\\:\\/\\/uphold\\-l0gins\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b27789e14b689eece4388a1085468e7afd964b32f17532b172c90e9afc0372da", + "regex": "(?i)^https?\\:\\/\\/rrhobenho0d\\-loggi\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e4f31dfbf965717d3ec45036784791a77a8ed16e4ef190c693bda844e7fe5114", + "regex": "." + }, + { + "hash": "504475886c72d35ca0f52b81166f0ff4458469c4686b48c171f5af219c20e3a1", + "regex": "(?i)^https?\\:\\/\\/metsmuas1iklogoiinu\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "44a975833ec15ae3dbedd03c6f26229038b9d0f3c3dba79972cca55abb0627f5", + "regex": "(?i)^https?\\:\\/\\/gemini0login\\-us\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "28bf5ebf5579a1e3dee85028799c43705931c9856a3bfc0fd403992a844136d6", + "regex": "." + }, + { + "hash": "a6419197add173d8fcaff5e682012cea968127468098a8e802adaeaa42f4e80f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa09b1441d3bd34f9316b46a54cab66746e4c5ec0aa79bb082d48aae7be3b872", + "regex": "." + }, + { + "hash": "a6419197add173d8fcaff5e682012cea968127468098a8e802adaeaa42f4e80f", + "regex": "(?i)^https?\\:\\/\\/phanttomwallet\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29fa78533ebab24eacb5326d0dd6ceb87f4847646b567ab8f3d22c9ef70a9ade", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "87cd2c8d58dfac84c7f5da6577e43e616a0c4dca493c407fa548b55979a9068b", + "regex": "(?i)^https?\\:\\/\\/gemoniahlo\\-gin\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28b71dd11e7b003daae08eba905a49339142806ec7fdbb8750b9843f9564f262", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflixclone" + }, + { + "hash": "35f7cf8dc0a857b7168e8a41ead07e965ddabe2ab51b97c45ffb733ac6fef7f8", + "regex": "." + }, + { + "hash": "5537774110261ee742e4598b4865cacf027fd9682f760037b2825bd5afa523d0", + "regex": "." + }, + { + "hash": "2058cba4e7937deffac070dcb59771bd391d736144594bbc268185f1420b283d", + "regex": "." + }, + { + "hash": "58c0e10f0788316ba44b5697258477cfc9dd9f40940461429cc85f28b5025d10", + "regex": "." + }, + { + "hash": "a31cc0342f08210374b209049d1f7257af79b618c49c3b61c3c2a2cd937c62f9", + "regex": "." + }, + { + "hash": "897b80c1752af3b5014fdb278adc230639f908517f888add789c575607b8ac75", + "regex": "." + }, + { + "hash": "ad3047bdd327217ee238d4bd148e034aa276efda26a6a17fe52723c44898e2c8", + "regex": "." + }, + { + "hash": "cfdd506380f00f7a952456c54b13739d6a78cca505e4d171737cfec8158a7c1f", + "regex": "(?i)^https?\\:\\/\\/coinbaselogiin\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bff1814b8150ab7629d215a1402572806cdace9ac2e4537117c1b0b5bea349f9", + "regex": "(?i)^https?\\:\\/\\/coinbaselogiin\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71b79061044efa93a4ec669716e947df887d07ea2fb8624c583768dfd496189e", + "regex": "(?i)^https?\\:\\/\\/coinbaselogiin\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "631a5db17a2aaa5a27633cc1dd67e5c60d10729b2e349de4d046125d8850e76c", + "regex": "(?i)^https?\\:\\/\\/coinbaselogiin\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f6f7989b684c85cb604d9973587fc13dbece88d29ea91249614a6dd517c17b0", + "regex": "(?i)^https?\\:\\/\\/coinbaselogiin\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1251c61be7f48603723c53933ac2596d2c1ea9631cba8ec05d34f9dee910c7b1", + "regex": "(?i)^https?\\:\\/\\/coinbaselogiin\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a25990a764c6c2997bd856bfdc1e235db9c387f35f4f0e841186e4d249f17e0", + "regex": "(?i)^https?\\:\\/\\/coinbaselogiin\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1669cd7a8a19fdb17272a524b64775821f688ab127ac986dd08a1bb4b7b9345c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1669cd7a8a19fdb17272a524b64775821f688ab127ac986dd08a1bb4b7b9345c", + "regex": "(?i)^https?\\:\\/\\/kqucinl0gievn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99a9a086e7f5cb150ab0f3c24b2bb4071123f8e18c7d7814bf853ab71f03e0f1", + "regex": "." + }, + { + "hash": "5f991281f423482b2e4cd32a7bc7065cbf7cdc6adbc389010add1cc0a47df9b9", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?[\\/\\\\]+marcjacobscz\\.cz(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb8edd60d30bec2f7a1bddcd02b2631e7d8f0a78d6b9166000b6fc425d388c79", + "regex": "(?i)^https?\\:\\/\\/mttmiskwaltxtniius\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66fab839dc89b396f43090b2bc8d5b4fd759d373f0d924b81f34552bd1f9cd5b", + "regex": "(?i)^https?\\:\\/\\/att\\-107437\\.square\\.site(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c12834e24ec37d7d1cd9bc7877decfa0913dfe108e1c4935547440cebd023fa3", + "regex": "(?i)^https?\\:\\/\\/att\\-102354\\.square\\.site(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad62da9e77bdc7091f0f68b1eff045b100512b25fa56c610d2f49305aea546c3", + "regex": "(?i)^https?\\:\\/\\/aktivermitid\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f453f0c08f9a6a7bdc6ce01f89977c60022d45887f329654c906d33f9d0a62ae", + "regex": "(?i)^https?\\:\\/\\/aktivermitid\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72b5996e6a57800823dac7a90d0a705d9f73f03ff4c630b6c1429f984b99ae51", + "regex": "(?i)^https?\\:\\/\\/aktivermitid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7aadfa1416350079baf364129905efdde30f8e24e6ec96551747bbc696e566b", + "regex": "(?i)^https?\\:\\/\\/aktivermitid\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b6d85b55cbfa2ad750a1d78db54f53fcd2ea807e08b96c88d43d7c3ab59611d", + "regex": "(?i)^https?\\:\\/\\/aktivermitid\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7303744a5eb4c5c9c49d8472cab48b922dc1505a97a9ef1558322894d9fe2be1", + "regex": "(?i)^https?\\:\\/\\/aktivermitid\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce12dd8a1763f862efc6ef8b6345d728d46764fd72622a4ac53b3697ca9dc83c", + "regex": "(?i)^https?\\:\\/\\/aktivermitid\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cda3904f6d315d69c9bdced2051d16ac5a4bd77e03deafb0068e30347e4c9e92", + "regex": "(?i)^https?\\:\\/\\/aktivermitid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2515ebee482333dfbe45b7b5a5ceb11c0a419cd1bfdd8a35afffe8b83dbc117f", + "regex": "." + }, + { + "hash": "438d9d33ef721bb5ec5a30db4bb2338e7e75b3360c5e33fc63e4dd083bf626e0", + "regex": "(?i)^https?\\:\\/\\/att\\-102193\\.square\\.site(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deb6e529d9ba8118f9d47a3937175048a535561c2b938546f4245c9fee8a14cc", + "regex": "(?i)^https?\\:\\/\\/att\\-102336\\.square\\.site(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dfefd0a9eb8eab79bcb40384e6747497381f407808636e294deb2cbca480b9f1", + "regex": "(?i)^https?\\:\\/\\/attcom\\-105831\\.square\\.site(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bf5d803b9d12181c5f38a213ddf3e322101c077a512c7cd0aeccf356e0a498a", + "regex": "(?i)^https?\\:\\/\\/att\\-101336\\.square\\.site(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c681aef62d38c000ba7bc0b163fd9fed341c67c39f1a88119764c46b6eb00bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html$" + }, + { + "hash": "55351522c128fd9597bda3037fe5b012ed75e9118e9861b1805f50f23c7b048e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aolmaillogin" + }, + { + "hash": "873095881b3a6ffcb7c7372edc2a4545669d153fe65e2200272be371cf102694", + "regex": "." + }, + { + "hash": "63b47fbaa4c315b065fa44fa11b57f239a3eb3c4db83aff6352a6c6a91644c04", + "regex": "(?i)^https?\\:\\/\\/cpanelroundcube\\-t6ty7uihtd5ee4ftftuyauthprocess\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+w$" + }, + { + "hash": "64162821dc1ecac6f4adf0c5d54cf859cbb6fed306741c7d10b0feb26cd07254", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "72ea9488659599a7865a3c31352550e9b2c90f6a5fb38c481b8799ea61f394cf", + "regex": "(?i)^https?\\:\\/\\/uphold\\-logi\\-us\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e80e2a61845aabc03fa72dd4b08bc1c2326242cffdd24b42e493c7805a7de90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c51cedf2783eb1dc46725f24ba817d062627a4c6791554a351c0029efeb1cecf", + "regex": "(?i)^https?\\:\\/\\/geminihfd\\-lgin5\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7110a2300f26f1ae0d012faf9cea130f3852a72c0ae57fc222e20d0528dea064", + "regex": "." + }, + { + "hash": "edebf369999b611a2b34e522843dc377f3c759a4afc51211795270295eb0e7ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\.htm$" + }, + { + "hash": "4a380288acbb7df3e66353c0d6d5c5600481e079a38ac862cd37631cf7a7bf08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook\\.html" + }, + { + "hash": "e2ce497b2b2516fff30586676eb08c844be5f7a68fdba02ae019c9e2dc5bf19d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2ce497b2b2516fff30586676eb08c844be5f7a68fdba02ae019c9e2dc5bf19d", + "regex": "(?i)^https?\\:\\/\\/phamjtom\\-wal1et\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a53fb6a9f8147ca5252d184c88524d31ed5c764ecf00680b209337313f5805b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+publish\\-project$" + }, + { + "hash": "a53fb6a9f8147ca5252d184c88524d31ed5c764ecf00680b209337313f5805b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+publish\\-project(?:[\\/\\\\]+|$)" + }, + { + "hash": "77b56e5539c9618263d7d1e6a54c0572be658ab0e6d5665883ef7db36584289b", + "regex": "." + }, + { + "hash": "7df4862220953b78fef77c9bbfa0ee0faa8017f7acf4571185baaa4089637c77", + "regex": "." + }, + { + "hash": "411a8b9d92a83260a07588b83b9c5ecd81a8753511c7038cc690b547d699b5bf", + "regex": "(?i)^https?\\:\\/\\/coinpr0base\\.onepage\\.website(?:\\:(?:80|443))?" + }, + { + "hash": "d013d30eeefeb653c3dec7705502287cf2766a2a6a3a5062645a4dd447eb9194", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d013d30eeefeb653c3dec7705502287cf2766a2a6a3a5062645a4dd447eb9194", + "regex": "(?i)^https?\\:\\/\\/gumexinilogii\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39819ac43e629bafdbd2c53b87b7212143f7d93967cebe46389fd3d905baac76", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a53fb6a9f8147ca5252d184c88524d31ed5c764ecf00680b209337313f5805b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fb\\-page$" + }, + { + "hash": "a53fb6a9f8147ca5252d184c88524d31ed5c764ecf00680b209337313f5805b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fb\\-page(?:[\\/\\\\]+|$)" + }, + { + "hash": "dec3ff0490b63243bbafe0315be505b9ca822ae1664aaeba687d30d2144376d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Landing\\-Page" + }, + { + "hash": "031fb0320b072c2d452530b73a4f35265ec3da63c35cb9cf7c0deba88094d71f", + "regex": "." + }, + { + "hash": "8b4d86c405c7f092016aadaef935cc04b832529f8e8926ebc87312d2359e22bb", + "regex": "(?i)^https?\\:\\/\\/neondiamondhackrobloxpetsimulator\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "222a075961c1469a446042586dbf5d3ede6264bf7177206f4d52fbce24518322", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2049a4c9762ee13e7715689576f8142262b9a965e384ea0cbb2ed942540edba9", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc5a1a55e9b6a2be1b988c51210b5b0d31bbc8bc4639fee8ab840b5e08353402", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d90894120bbc8df903b550c2ee611ec5c877b22f5ea601b97f3b2f48deb6f0d9", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1818556005a1a4b2330bb5800bc091c755b94814cfd1237f7286eca77d7df260", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bab0180863d6afcee4eed5a9e1acea1503459484c1380a5383582b510c8878f9", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b1c5cfaeb097033434f3923abe81768387c9ba3b250f5d491538b66d08a429f6", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbdb4575541893383420919b5e0a278d4cfa6d2b2123da546164686e377960fa", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e46b7a03420f265c4ca7b86165ba92abf5da91aeac4dbcd04d2df21896218b6", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9af5af6fdb0e6e8d0e9413b53ca7129487243b178dd410f75f650190cf0f1e7", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab641b0b309cf537abb0682d903c5833aaca06814017a82db0a9ea037fb9ff6c", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbe45cdddea3ca57cd1e38a150baad20ffefb03dc633ec0aa5e075c7be4b54b0", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19b896a8b0f10b464cf062dda346f0c95c96df5cd2db395795f054dc0944f373", + "regex": "(?i)^https?\\:\\/\\/amogolnes\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d07e5c6544b5bfd07ced475138fe78486d423155e413951d4963a26ca8c709e7", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbfd4c10f19d5068edba4457f74d94d72aa86efaf5cb8a305fc8ef4e969edd1f", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodesthankyounext\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de1acb1005fe586f4e775535feef814b869ed6ad8551b9f36c6a2f8bce40258a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "51b88574b19a58e1f7a96d594921b3806e3ee28b371714e37aa5341d91af872a", + "regex": "(?i)^https?\\:\\/\\/flyhackrobloxnovirus\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af3a2f4d5d267fc8c384a295d4da90153a5c775b60e741c0c5984a274b3a8283", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9947cb7b0e4ff54d60b14a8e442aee48c37cecf52aaacfe6247ff3a689a5b7cc", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80d9125d383c66cb1bbdacd7d2eac86ea22f9c649c4dc17eb28c2c28804006c6", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b770dde538ce7581f1a7ca8ac8abc2dac612d2dac9ced01f710e1263ded1cba4", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ad62418e81d22f1ead377ce5dd3363d4380f6c1656a0a2d2467748534a99f41", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05dd05a9f0894f2c1d2ce85ce85f51480e406aca7e96106563af1b5778eaf96c", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b271eaa522a58eaed262d5cf7c233fd5429a596587d6068d781a6bdbebf97b1", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c364797f23477faa0a00806db8118074a8c1026b9ffffa24e548df8baceaea0", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf31cbcf1f2bfc72b9a1277b6694eae34015e1391236ac233d72a3565966e61e", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39b5f4687bc41864027b409ff9fd26db0f23f03791b4f32c05446f0792ad3cf4", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4145ca5ddd6398c652a8857455ad478d6048e8328f84794d9743734eb553f561", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2f4bb1fe1fe346539c0f611d2ff105ac97e5a08dfc253b63afcb66377145fe9", + "regex": "(?i)^https?\\:\\/\\/fgfd6gfd65ghdf65ghfd56ghd6f5\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3ae1a3f304370b4d562d960fc7d619411e280ab9a79beec36892a989b7c7831", + "regex": "." + }, + { + "hash": "2b077a9fe7f60fd805a3db0e2c6c08823834c71636d2ec6351c639e35152ce0c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "3d3396043b401196451d263cd1ab1c2e6f107b7ea0aa6444f80a6cd01d9dd286", + "regex": "(?i)^https?\\:\\/\\/galaxybetarobloxhack\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "322fa48ac93444b12d09e490a22f9c30377900fa018ec146bec05b5a7bf04a97", + "regex": "(?i)^https?\\:\\/\\/lgin\\-uphoold\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4c91508cacc0fd97015e0101afbb5683ea53db8f8c3f39adcb5942f63caaa48a", + "regex": "(?i)^https?\\:\\/\\/pentum\\-waloits\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9745779483080b9db138566b6a7ea29ec8ab58123614751405c6ff2e7b716e08", + "regex": "(?i)^https?\\:\\/\\/digitalcrptoasset\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c0c0fb8342e97185183336749f416801da3bc3dbfbcdcbcd8e45b050d170dd8", + "regex": "(?i)^https?\\:\\/\\/digitalcrptoasset\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80bb2c0c0d3df815d6721c8de86ce2048d61140e3be0072c341a58ae96a3f24c", + "regex": "(?i)^https?\\:\\/\\/digitalcrptoasset\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "582633aeaba08a0096e9f79adb08cc38968118cb72558cebce1b487f76edea57", + "regex": "(?i)^https?\\:\\/\\/digitalcrptoasset\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f59ce0b046c706323426862b31ad950f7f53e6adbfc7d416035f7a36f894d37", + "regex": "(?i)^https?\\:\\/\\/digitalcrptoasset\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9223452cffe801f3839f16aa9ddd4837f43efdda815e9d36fd8e0e981f2bd642", + "regex": "(?i)^https?\\:\\/\\/digitalcrptoasset\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a47aa530a548a0a271fb8d2f74a94721478097a7957aed01445a2e276b70103", + "regex": "(?i)^https?\\:\\/\\/digitalcrptoasset\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc3433e719d2e60e45b2f57737e46ade5d103210f90ee3663cffa7b41c138613", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc3433e719d2e60e45b2f57737e46ade5d103210f90ee3663cffa7b41c138613", + "regex": "(?i)^https?\\:\\/\\/upxihold\\-logih\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0824444fffefe1fec4c1a1f77a906aca4a450bfd34b071706245a1356f267aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uphold\\-login" + }, + { + "hash": "881827eb2289e59a4de17f7cb82360b7a97bea2819d54f95be32c75ed6706507", + "regex": "." + }, + { + "hash": "9ccf1bf292528d8d2b8420545a67e1640affa409ed9304e8dbaecd1e2f90441b", + "regex": "." + }, + { + "hash": "136c2de990da028c46a2a39e97883b7db5234547bbbf5d5b4e238bef1e37018b", + "regex": "(?i)^https?\\:\\/\\/uphold\\-login\\-uk6\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "86f601f7f763b64a75fc4c93bdc2ab3dfceda238d7ce7b0879f55092d5fed691", + "regex": "." + }, + { + "hash": "14f9ec9ba71df0404bc9e6769f1fa05fa9207608db9753a558f2ddfcb2cbe351", + "regex": "." + }, + { + "hash": "778474d563c70a9b91552fb2403d5ac06a664b13ed03ca1a4953b259c0de83e8", + "regex": "(?i)^https?\\:\\/\\/robloxwebrobux\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc64984d2fff859ba391d13a51068409e5c63e7da22f1fc8b86384c7efe6f7bf", + "regex": "(?i)^https?\\:\\/\\/gid4life\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98a94284442576585ff970563d8982ef67bf931ecb292a36bf89a3d85ef09e1a", + "regex": "(?i)^https?\\:\\/\\/levitrashelflifertw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71f14d2dcfe4852513788e535697e6a645458b884987d4d1b19d3ff5c1255371", + "regex": "(?i)^https?\\:\\/\\/gamesanimestemple\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95622b74a968ceccfadaec7ee416c7aca914d785dfcb4fee4076cf73a6082eda", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=87395ad39f\\&e\\=a06f839fbe" + }, + { + "hash": "95622b74a968ceccfadaec7ee416c7aca914d785dfcb4fee4076cf73a6082eda", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4defdc132c\\&e\\=a06f839fbe" + }, + { + "hash": "95622b74a968ceccfadaec7ee416c7aca914d785dfcb4fee4076cf73a6082eda", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=87395ad39f\\&e\\=043d9b9cec" + }, + { + "hash": "95622b74a968ceccfadaec7ee416c7aca914d785dfcb4fee4076cf73a6082eda", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=ac25c283b42e96b4aac135043\\&id\\=4defdc132c\\&e\\=043d9b9cec" + }, + { + "hash": "9a680cfb1803b070e1239f569b256e37e5ecb912d7d59d00c35b24d4bd0adefa", + "regex": "." + }, + { + "hash": "5b0d9097d8c8bd1dcb2a96de3a008a529e54a72ad0ac8e541a941d63b393ae8f", + "regex": "." + }, + { + "hash": "60a17d52771e341f457d77e624f578087d4ff3d302e1178e287c5ad3ccae7dd7", + "regex": "(?i)^https?\\:\\/\\/fghr6y54y\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c86cceaee789a7c770377c79c65a194c62fcde53012b8507e211f840516fe5b7", + "regex": "(?i)^https?\\:\\/\\/fghr6y54y\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c95d156636163856d167a8aa8e8d96685feb00bd838a45fe1247a1fcc11b16c", + "regex": "(?i)^https?\\:\\/\\/fghr6y54y\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "174469bede3b34f4d41a058650bd3b689a25347c8d5f37a81f6f337965a0ebdc", + "regex": "(?i)^https?\\:\\/\\/fghr6y54y\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d847ff6274c55783eba939269b7cb5eab0b1aae46d8926ace550c6bec33faf6", + "regex": "(?i)^https?\\:\\/\\/fghr6y54y\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4961b392fb76f3c749f152384bb9273e4601479a0646ad124b8d0c4693b139fa", + "regex": "(?i)^https?\\:\\/\\/fghr6y54y\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627fd02f4829e4db20cde53fc3c4c3c411bd2ffabcb8c5100151b22939be7d85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "627fd02f4829e4db20cde53fc3c4c3c411bd2ffabcb8c5100151b22939be7d85", + "regex": "(?i)^https?\\:\\/\\/upholdh\\-uslogin\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c8a86ab933cd1518a559522a11fd7bed24f68196013f5b5577a34427882b1f7", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7a29dca3659ee4bf34fd337156c998190d8204743646ad2913c0a566085dea1", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7f1283439ca31a710391bccaeff20b9b3227d1b70260955d744928d54954630", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f5735c8f7396f18ccbea13fe9f269a0445b1b0100f44a9398bb2458bebf3a04", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b69041368f2f1d5cd247faaaac9534c43de69db8d04fdad0c381ffbba5b5ae8", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01e399d012194ad097bbe4b5eafbac96797c387f87d9907c6bcb092411b249bf", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b469029980f79447da3d711fe2afd8647a6d9a2e215b6aa00f3b42e225bab5a4", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07b0c6bdafabbedbbe05a92ba8c292711cff6dff8f8a545dfcf9e2d3cdb85de7", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "181f38bc389f8951f4e225c6acb3cbf17cb35f71f0700cf447b7c6f134e33a44", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a425aed94773273dbd78004a2df248c965bfed4c0bd64a4096d9fbf3dd4a9c8", + "regex": "(?i)^https?\\:\\/\\/xczxczxczxczxhjutruyr\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e96d3d7ea085328b8dd04c5282e3a78c32fe964bb663bbc69469e95f5d1ffc84", + "regex": "(?i)^https?\\:\\/\\/dsffdsfdsf9879678678678768\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3797faa483b98d063837f20b7bf643cb0c1dfe522b7ed28223eef5e8fa0e9e27", + "regex": "(?i)^https?\\:\\/\\/dsffdsfdsf9879678678678768\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446f1d4baa4cc88435d024181cb960dd57c66dd6faccf1976fe7e8b8ebd34703", + "regex": "(?i)^https?\\:\\/\\/dsffdsfdsf9879678678678768\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb00e8ac58450620e61ebbd6d9a81a90a30429be70bc03483eaeb860aa47826d", + "regex": "(?i)^https?\\:\\/\\/dsffdsfdsf9879678678678768\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc0b657b56c43ee8fcff5bc96334a1945e1e9cdaf098c7a3131d733528a21c5c", + "regex": "(?i)^https?\\:\\/\\/dsffdsfdsf9879678678678768\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32dbbe1cf8e97faaf1dd4a9faecb4fb07c110a856daec23e362226b51e9e041d", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d50cabb9a13f27089489c520e46afba2a69aca184d37b5bb365950c96196e3d", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec0771534347b9e12136e8e7f0c9186e59834522cb2fbb3246cc9d0d90c4e01", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6eb342f94164a594f7441f2f3252ffe617ea9720445de7b374915178f2db7b09", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d188cd4937c4c23bef433c8d7faa2127eca42dc46c7f3e01ec39f58f47c03dc", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "180188f94496f32f317b41363d6da92f57339336ecbd1130175c78b2ae25b023", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9a90c11a453b001eeeb96b5703372e9954178a80eaab370ec20ad59835b7c82", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0efe9f881e81c86edf41136d2b07c95b43b8c4a631d381231e44906ec3b13c39", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e653aa4f4a76d149a68fd927a8b4aef6448d7d9a584b16fcd3b9339bb1b884a1", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "913b2e3e79d0b2b5989069e82abe9f9a7d410dbd01cb4fad7b5035cd2ab95709", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb001489f1f31fffe1b66502d6064071b10adc928a11914747699e3d6e3a80df", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfdsfsdfdsfdsfdsfdsfdsj\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd2e6d1953a30ac4250c8800c92921c16230a8e5c7843ded648825e2d7e4d0f4", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10f1539ed6b43efe26f9172b9777a15b6c0701bc047e98162c9935b485e356a4", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1caba86c9cb9a5135d1631085950fa64b75f2526c1297bf8d9461ef1b8fb26a4", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80ef77d0909a2be3e854bca21b6b4634cf436e0d4fb77a0b85c76621f2a9ec9b", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39f02ca028ce0cc5b42e72c9552c83c25a5a9a0beb324840874e992a33462a8e", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2685579b567cdeae785955ea5ae5e59f443d4bce7fc3ed6f9701eb3cc8a410c9", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a9721224d0859266c0df8a0cfbb901f1e6ad59cbe821febf3530ae519d9cc83", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9abce36e96443f1dadfd35578d32221202a03236b052b1bb3ce7f315de13381", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d07e137963660e525e4cb500d15cb7c689f8d525b84197d41d16add16b7443a", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84e141a439dedade16f6979336ed655bc11ab47af933a9df4d02ca862ad5cd07", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4e21b35fef9d442e9567f6ae0103172cf9a26d1d76a3e1d8535d446929dd7a", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a6f8f1dd84867ca59a185fa548fb4922333f39c0fb4993b5687135c819ed8dd", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a05763d20d71e546ff09114a07015f72b8733896052d5a5fab98131bf931523", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "308d83e93b235abd6ab0a0a035a32500e4937fde52a61bd10aa35715f325061d", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013c91587c76db056fe71f230369015e49abb8988f689ba15745a3b23abc5462", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac0ba28c2fd33d3e05d0ead6d56a542a8d2ef84b23bd5726bdc17175b9dff838", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcx212344567467678\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efecc4b6842942dfa7d1657b242c2e00920213c8406d245ef7f5f92b75588939", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfdsfds121324432432444234\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97ff6cf1f9523d6764002924507e363e4df3ac792591aad9d0a443e1bd01472c", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfdsfds121324432432444234\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a7ea4c907658ba3646510398d5caa4a94b1d7f88bf618f6b6f4e272919a5d2d", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfdsfds121324432432444234\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3fc21009b1133e7f600aed2d110217e6113f99dcbceec81b118d7df09b7ede6", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfdsfds121324432432444234\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26cf0cd32a3a08f23fa0301ea0033eba5651f490d6a02f53ad3c0baad555bcce", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfdsfds121324432432444234\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05fb5bcf0d843706edfd00d62dad0a20d1d13afa1dc1f27c7d2c179d793a42ec", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfdsfds121324432432444234\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "101542087038dd96d32491d63049b4868db064b2ae2ef408f170e711a35602ab", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfdsfds121324432432444234\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fae937997ac108ebe6caa2f4244044f8e9e45a77af7e93307674e5fd80b2d0c", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfdsfds121324432432444234\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac0b58dde333cc6460cee910c984869656873ac46d3a3f46d4add55b7a7cdc71", + "regex": "(?i)^https?\\:\\/\\/dfsdfsdfsdf323132313576878787\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f56d71b71e77df40a01e2f3c3c8e8addd7fae5228101ffe6c6a511cb206dab48", + "regex": "(?i)^https?\\:\\/\\/dfsdfsdfsdf323132313576878787\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57bff64bf6a7a055adb6d26900b17fc7aae48ab22f33039392cf7540f387305f", + "regex": "(?i)^https?\\:\\/\\/dfsdfsdfsdf323132313576878787\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef1b9b2d5ad16d28c275d4c0a021d04e669547da4df4c599e3d2aed975352a7d", + "regex": "(?i)^https?\\:\\/\\/dfsdfsdfsdf323132313576878787\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39f2b0382c1f0232da240b3f779cc824459b88002c4c0f153dc87d976e137ada", + "regex": "(?i)^https?\\:\\/\\/dfsdfsdfsdf323132313576878787\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "688c0c700d44264966383e43e16c93ab53c97358bde22e764ea343c1ba3af3b4", + "regex": "(?i)^https?\\:\\/\\/dfsdfsdfsdf323132313576878787\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e9b3326f5997cd0702ad95abb1af770962593405af852eea4e9c0db5abf4517", + "regex": "." + }, + { + "hash": "39d2c9cffe6b811c5bce8a9eae496de6d98b8c89a1cb391e19becdb0b065817e", + "regex": "." + }, + { + "hash": "7631773ded87b7079d50474d63a2f74954868e6d6d1745b59cb68b6423285a6a", + "regex": "." + }, + { + "hash": "969038a2b47aa7106cde5d18fb328ef80b4e407ee46f00273449203793a95b1d", + "regex": "." + }, + { + "hash": "4c3ae97e217faeef233ec980c827515ffad0517f5adee48382b36833ea96f105", + "regex": "." + }, + { + "hash": "b319c863f70c2fb0b8bd40695d07b7d1f9a610742ec8794dd05c01ea11680ff0", + "regex": "." + }, + { + "hash": "cb957ef4521a30c74b30555ecdb784098a40e1bd4434fb79596403837ad22ac7", + "regex": "." + }, + { + "hash": "4ccb72e663deafd77fbbfc92929058207e3ccf969ede8498e5106166c87b50b3", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsfdsfsdfsdfsd211\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f9a634dbe63e0701f1c49fe1f1215680fc0da25a17178b4eeca6625d2d45fcc", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsfdsfsdfsdfsd211\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b355413b58a2fa20fd2abd01641bc961d0f8da27582eb29285e2c18a065840b2", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsfdsfsdfsdfsd211\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2008eac5273268cd894f7026138dff3dfcfd7748142cb35aaac1884bcd194b1", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsfdsfsdfsdfsd211\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c47fd7c48aae4d9849d4f7569e052f3b934976fc4009582900bddeea8f35e254", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsfdsfsdfsdfsd211\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32df868feeccbb5cf58810dbf2b09bf9693b8e579136b45b615b218be8dc2624", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsfdsfsdfsdfsd211\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9456967719f0f8632cb705d380ebc7a1fcd9a1e4e63db60b34e9c274facad53f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsfdsfsdfsdfsd211\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "003d429f1ac19c651887e87aed5a5ebc0bb4ddaba638f379bc04ae62d8fec501", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsfdsfsdfsdfsd211\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5eb78c1a0afdaf9760f93f191b7ece5d367384a7c7ba7efe73f92a3f4bbee9a", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae82160d75fec5659af08f5e979718f2583505417936fc6d8f0171f428d9e735", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "648015a6a4f827f161894cff9ef4406be00e51afe661c40752a62e36cd019fea", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f01c1572b62ec353adb53b161074ea61327043ff74bd4653618c8a2508848f4", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3734f78b82dacc22429bd9c051de3ca828fcf306d817c1370c19f5348a341107", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb198eb19396a3ea56f6b776679ee4995654a4b670d54c5ddf26c7a2a73b16f3", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2982e0b29e12bc07da3264225b4eae085e74ed46e38f075fccb2e85a86bcc1a", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f8d74af4c9927355f5b504744c95fa3cd75ee2b0819e6b2b3fc5fcd53362f96", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbff2286cbb1781663d9d6cf5454413bc4db2f6178bcf60d8d08cc2b6fc13e04", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6c1ace63ddd7da53739d90b6aae97974a325f49e62c04341642ef2ac8124b9d", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsfsdfsd321367887688967867\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a90eb34342041d9873cdb2be2664673f8bde88e5d1677ab1ac563f624c3bd5d3", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec15cf450fadc8e4c8d6255e9ecd13c0e241f0b2ed5c8ef958f9ac84bcd4ca4", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1137df43120abc8379ce15eaf088aa1a422f33240d9f7ba0f1ab690686f9bf13", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13795d402006d6f7b6d8074fddb5a96f510f017d145b05b51c382d9d909b017d", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b3f6472a4dc9fcd7d8cc3273d25a26e77afa03b01393c204fb1019effc6d888", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7543cc1fc4d01296bf22c2815a42f804b820f4f6d445db7f553635af4622182", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "316960752cc303496ae2303e7cb86b5b284014c23f498a98562340184b5252f0", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4932a27528961eed2499846fd23f8940c2ba4e8a7898c545828866c673171a53", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efce70b8a262abf20e154f4c5e5b8b8be02f3172be7e86bf1dacd1d141f30e0d", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5904ba70314471067246f7befa8f8364fa91c7ffde0608f066ffcf6f7e173d7", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79c496f5c8ddf3d79c9d9310f28537cfbb06bb6622bab410497b238bd1ddaeda", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdfdsfdsf1123123213565657688\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "901d85e102714db64636458604b262a3fbe2500795af5d7db223c81664787f0d", + "regex": "(?i)^https?\\:\\/\\/dsfsfdsfdscvxktrsfdlhi\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7d2a9def00720a0c72d676e2ead2426523d6b9137a4b2c0dceae7de4cbe2c55", + "regex": "(?i)^https?\\:\\/\\/dsfsfdsfdscvxktrsfdlhi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbf8bb5f7c94db3fed3cdbf4ed9355920e31f369f54814f107aca6e576bc7fe", + "regex": "(?i)^https?\\:\\/\\/dsfsfdsfdscvxktrsfdlhi\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51e9e5f7c8fdd01fd881c6a4b3646a5b18af1211e154605dc9095a9c5a71573a", + "regex": "(?i)^https?\\:\\/\\/dsfsfdsfdscvxktrsfdlhi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e43918712a403d80e97b0d775317976308438f2d63d7274d1e29d0d5a31ccf3e", + "regex": "(?i)^https?\\:\\/\\/dsfsfdsfdscvxktrsfdlhi\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69a07f84fe0eebb84c38bfbe87d9ed5569eb7baa9dafbbdf6c7e23f737a8fcbc", + "regex": "(?i)^https?\\:\\/\\/dsfsfdsfdscvxktrsfdlhi\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d643a2ef153028360c6fb8cb8eb33d640cb106eeb6e677c63aa03b6e406ef0ae", + "regex": "(?i)^https?\\:\\/\\/dsfsfdsfdscvxktrsfdlhi\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c60a9a9d9ad63bd859abfc1683e35ea242536fa72d05bc5298248b97ce475592", + "regex": "(?i)^https?\\:\\/\\/dsfsfdsfdscvxktrsfdlhi\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd5ffc95145f83a4f9871176cdcd11898d29b6dc9bf1910a8cdc609c00232147", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1594d0a2b03068946e40b6e0e0e83383847d156b0b910796109c8896f9f0178c", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca707c12963cebe00737875056863408ffd2e1a23eff5a9b941b9d8939091478", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61f1452a2ab9caeb2e6b65a94980012d80e9c4a72e31d1d13aec91de6241eb9d", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88f1e59fee35decb73f5e0550b5f1564493c320b5150ce89c2c89d61d2fddd55", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bd9cd25f9124ac3edc923fb3d70e34e4c68d3cb4d8cc716593ddef707a97011", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "723f62b50a616c7fa92b41b01930b13f2b727ad199595eaf3cfcecf7ad175140", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "192675709f32a4b09c0e019324ab5813159488de1244382771f0b5ef78256b73", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7da89ceeee8a278e771f47b2295de7ceae2f7bb1babd7300f389745bbbeba8da", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6481cc7f20108b9a1f84202f9f212cc626c31c0fd25fa4c1374e6c3626462e89", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba0dfd5efe5272f3aa3520f37deb89e16e71b2605ff1b6a3e0670b6eebd3630a", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ef2f14f057da6956dd7ed94490cd4845b9f80bd3a8c04cc39a7a3b71975574f", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e8d892cad74f6648e66808e5d927506e1e863dd1b92f2a47587aaa66fee294d", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "438d1fa1084ac6d9aeb6a1352d637f07bc8e1a8479454032b07402e68a6a039d", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1088b6e9f219039bc12cfd0d625ef3d00ffce0c6d894e445b4adfa5649bc7a0", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f611ebcc754dfdb1c2be5252f5eae413b890c036278c6b9bc8f313e0771f3789", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88ffe11cefbeda4ea7f17355206087dcd848af69b5541bfc2ec41fa72f8550f2", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "914ce196b555620eab10ed3f95867b3585581f789bd504eaafa7e8c4363a9d5d", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32b904c0e95daf5b43a49cf83761772007c19dd50c9f236c3188800bf00c0034", + "regex": "(?i)^https?\\:\\/\\/vcbcvbcvbcvbcv786575675677440\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a03faa09b342cd1f28d1f0984b94f18db5efd45649e1d4b8232980d9212da84", + "regex": "(?i)^https?\\:\\/\\/dsfdsdsfdfds213125646756787687686\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10a44369bcabf75eeec7bb241fca411ea069b84dc198aa1981bb2df27ec87350", + "regex": "(?i)^https?\\:\\/\\/dsfdsdsfdfds213125646756787687686\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07d20f572f9d88d61688452e40bfc92860eedb7053532106e8c02bd64fd2c14c", + "regex": "(?i)^https?\\:\\/\\/dsfdsdsfdfds213125646756787687686\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dfb54d6718e3d2163b3aa253daed0219d704729cf1078cf5ab16a056b3d24e6", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6388757eee6935b1c50cc17c3cd359e8328b20c9996e964e93f812e9eac3d48f", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12f043a388cdb769fd9c04eba837974174f05befa4c4b4ff4abfe41af65c74af", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca0b673e276bf15988af986821ad3154ba96f896afc63a95d1ea5d6bc0969a62", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57d6628d1d20dbf95b860b152685a676aee7dc14911672fe66cd462fb6372230", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fa1b6f3d2177919d00da0ad1345212dac55f7ff5e63a4dca4192f163a83f04", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57aafbb3aa7db951264a1a673ae4d16b378a28e57e7d6c88011cf1fa1f725ae5", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "221e06614fac8ead1eb8346d831d40612cda985ba128727223e67ee35df9bd61", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58b2632c48801b212e85d2a9ff33391b0aebc0c8432dccbb6d90660709046ab6", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff7aeb21769f794e9f262ad8e8ef2438ca1ad6b99fd2dbe4a6756b3b928b9456", + "regex": "(?i)^https?\\:\\/\\/dfdsfdfd45454545\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "478d15d4a31a985f4dfc335c3f43de688c1af181fc55c38e3fe820076ef377c0", + "regex": "(?i)^https?\\:\\/\\/dsdsfsdfsdfdsf1213980980980\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc20514af3bc035c7252705816730e9d40321c7650ef81059b936e045741c535", + "regex": "(?i)^https?\\:\\/\\/dsdsfsdfsdfdsf1213980980980\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a219e7b72783ed6b860cbd61d14cbe867643c0ff0ed6e7d5c963098d514125a6", + "regex": "(?i)^https?\\:\\/\\/dsdsfsdfsdfdsf1213980980980\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a43597bb063921ea4c4b944afc72d4e591cf486b7c2dd8ba142280127c1f70dc", + "regex": "(?i)^https?\\:\\/\\/dsdsfsdfsdfdsf1213980980980\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a0fb5134c619d0f3c54035615594cb9efc01814b3a17ef6da9d131796f77c0c", + "regex": "(?i)^https?\\:\\/\\/dsdsfsdfsdfdsf1213980980980\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca706fc284f3f9f826ad466c2a0f650cff82e380a88e9ae5abd9c15472509ad2", + "regex": "(?i)^https?\\:\\/\\/dsdsfsdfsdfdsf1213980980980\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d6534e014c01c321d5ecb4e654097c1b806751c2d0ed6aaf3d376874999ae45", + "regex": "(?i)^https?\\:\\/\\/dsdsfsdfsdfdsf1213980980980\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a7f8746d7224e681a03a88e6862b98f18bfbfea6e3eb096fc63abd802d4e43d", + "regex": "(?i)^https?\\:\\/\\/dsdsfsdfsdfdsf1213980980980\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e46e444254a7a84533d3971d2942fd97b3edda17155ed10bb3a44c4dae82c80d", + "regex": "(?i)^https?\\:\\/\\/dsdsfsdfsdfdsf1213980980980\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47606557b94f5edc1a6719c9ef51f963468b2dd63b8e10d0bc546c3945db235a", + "regex": "(?i)^https?\\:\\/\\/cointextnext\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13b7f7a22bdea3c821c7cbb2552a9e5c467b827b67148c0cdfede452a394fd9c", + "regex": "(?i)^https?\\:\\/\\/cointextnext\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7577de388da0cfc64b21ea9ed5a3090ba04638d833a825200625c33b9f43dba6", + "regex": "(?i)^https?\\:\\/\\/cointextnext\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89d5738c3e77f6a8abb5223f46c70720865cbc7e5a11633f2eba09a7ecc0f956", + "regex": "(?i)^https?\\:\\/\\/cointextnext\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27893b5de3f66a88530c634c2ec08e9c15af3cea5e9bbd1e5c7c98515b4767b5", + "regex": "(?i)^https?\\:\\/\\/cointextnext\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49527c8be90902e57cb7172a546a8b8de159536251acd57a1bb59a90d251c593", + "regex": "(?i)^https?\\:\\/\\/cointextnext\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0e45deb47a887e85b7d56d95b4a2c3507ea1194543bda766f15bc94de1e948c", + "regex": "(?i)^https?\\:\\/\\/cointextnext\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20ed39dbe1d634b29406e3a84394ed6b4b806d821e0f1490d9b1dd4084ab162d", + "regex": "." + }, + { + "hash": "79fd44ae65b06d7516b36b0bcd67a0bbfb5ab59e5637fc3508509e0091e3e98f", + "regex": "." + }, + { + "hash": "6980a0e1e679db7d799d55d50622b3f93727d249879520d79cf6a21101ad1d69", + "regex": "(?i)^https?\\:\\/\\/jailbreakhackrobloxpt\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edbc78933b2b99209b90e4f50975fd5a4274995a8a4756331dc5c26c47395a7a", + "regex": "(?i)^https?\\:\\/\\/jailbreakhackrobloxpt\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1096eb9e4c4505e7df868cb1ff7367511848f3b25c76d7b3c94054974606cee", + "regex": "(?i)^https?\\:\\/\\/jailbreakhackrobloxpt\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aacba129a07fee78ade5a96f6969b548c1553824451d97792eb42300d5787049", + "regex": "(?i)^https?\\:\\/\\/jailbreakhackrobloxpt\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1754c1cd842bdba32c5aeb75f041f55717083f54c1be61bb5c3d2176beb7acec", + "regex": "(?i)^https?\\:\\/\\/jailbreakhackrobloxpt\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1229fbcff5ca0332b6e70d3cc16f88d53b7a53a9a0b407e9d399330a406c0124", + "regex": "(?i)^https?\\:\\/\\/jailbreakhackrobloxpt\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d0f7cdf86521a4faff79627c23603461e8f8820bd0e141b121e412b483f2333", + "regex": "(?i)^https?\\:\\/\\/jailbreakhackrobloxpt\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bb0d1a8dc91e59f144c303112d314839f45063b223b78324a9b548fd6c1d2f0", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d67d4c3c49dd428a307a8d7d8a50d637b90eef657312398c7186b4831bfb36a5", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa714644b04a66a249b962d6b9cfdd10c8d450b3c7f257f8c801e63d42c902eb", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "499d67e88583c5965adebb7a414f724501da3692489976e1a2e29393bee8b423", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29993d2bb015a1d495a819aeae02053878b7844ab17f8b684ccc1b65448407fa", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c97fd5ac85deca80dd330fe90b3a77bfa8b2db749d30adc723bbe946da25ad93", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2fa20d9f8ba135e75372f6da784fb443443a61c5d8d84c77f95a754ff495457", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce62fbc34aa969b2c795c7d28f76b27fdfe51889e2bfbc6edfeed5d0a98d8cfd", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8944000713b92ef37906643f698f18c96245226c187987ba604fd2acbef131c", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e121be221854b14814fa3dd8f02d0dd18058140c27c3ccedc6513708c2765048", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbe36d8fbb752549dc5336413d26387e8e289e6019d25afda17612266ae0492", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63c7dfdbc97f8ff366e3a60675156bd5de0cba1fab70d3e7bddbfdf1308c8c5", + "regex": "(?i)^https?\\:\\/\\/robloxhowtoequipdecals\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3f7751483faa4971a22a94dc877964f01edf443d1c7e9b860b592d130ee4f54", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "090103e794a7b5d790e0925784b54e6d78a15f0b10a57fa6cedc5fc427f437fe", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00e4c598b31de8cd21681c9b886c29c83f505d063ef681600ae1f08713d620c4", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd225357234b97c5432d7fac3413b92b742f5847e512a6a79d7bce536b354606", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7289a7af5f6843a7a3d52e7753df5c9123c62bd3c7e2417d0ce8096e09eed4ab", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4df03aaabad27f4aee12a38445c53ebd0da1bd48e12ae6886a901247b6ac63f2", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb9f8c64ebc1fe33944122db61777ed0ca4843e86bafc92d2b1b08828ab28495", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "076e7f8a75914ecdcb78a8431ad3762a8f51aef4ddca6d9c5d08cce5d55102ac", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d075161ccbcd54e10105830057c12b2c2bb8efe08634c176aec31c360ae57d4a", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b891b0b7ebf888d989644c5cd6b556fe68739836dca6730121f5d00e4058f799", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fdd711541010f4d3f4529bc3acaad7d88b730e44afe95d430e00bb38cd2a0fe", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bfd1e2b7499bb870017ec4b5a4d956392a8d5d449d2b8b80c07ad5d0ca426ba", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbbaf22c152eff839a721a0fc551e508b37572b1b68a53eeff8ddbcedd84ce4d", + "regex": "(?i)^https?\\:\\/\\/hackspararoblox2021robux\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e120413adb79b5fc653dfe68bb170c13a1adb463bc8ba74e3832fa3a687b7933", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhacksandteliporthacktelepo\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7084f96541015738cd3c982c847c8bb1edd1036b038c658b0220f585c3fa7602", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhacksandteliporthacktelepo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16e7f9d040262f8bda86d3b2df7b485b18e09fe45bd2935c9d1b5dc1d390ed9e", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhacksandteliporthacktelepo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6283879187bb5dd67fa6a7cbeb154bfdab025ffbf72ec201e0c42e29ccbd66d3", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhacksandteliporthacktelepo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe96bb6407de55ceb6431c8f3aa3e6f63a4e9e95d731c1e62a9702c6f69524f", + "regex": "(?i)^https?\\:\\/\\/robloxspeedhacksandteliporthacktelepo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "770d7e3aec19fc430c7d66d6531af51c84a8b4966f5ddeb210e5f98f0261d90c", + "regex": "(?i)^https?\\:\\/\\/codetwiteurderobloxultimatespeedsimul\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09bd7ac3df6c9dca71d7b4c9ed2b1a3705bce7b19fd65463d5907af0a965cfa1", + "regex": "(?i)^https?\\:\\/\\/codetwiteurderobloxultimatespeedsimul\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d65ccac951c24902b80e3faf349a0936142b90094c0ac4d0f475762a75362cc4", + "regex": "(?i)^https?\\:\\/\\/codetwiteurderobloxultimatespeedsimul\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8c37be9383efb8aa9ff2b62b4b668fb4aa1c25f9d55899b2e17db153e4929cf", + "regex": "(?i)^https?\\:\\/\\/codetwiteurderobloxultimatespeedsimul\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9915bd919a3e3329a5acb5776e584483b36c5c65ab202f6d337ab3c409b51624", + "regex": "(?i)^https?\\:\\/\\/codetwiteurderobloxultimatespeedsimul\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc2131f90ea52368fdaa8b68f2c32ce537ed3cf54ef8d3f23627716f7f510549", + "regex": "(?i)^https?\\:\\/\\/codetwiteurderobloxultimatespeedsimul\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44a6c218c41db697294b8a54521fcbf7e93189890d38d06ea71b4c0f793910c5", + "regex": "(?i)^https?\\:\\/\\/codetwiteurderobloxultimatespeedsimul\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bffcfc7ce61abae7512956719aaa00caf6df6c14c2ed8f08064075bbe3c5221", + "regex": "(?i)^https?\\:\\/\\/codetwiteurderobloxultimatespeedsimul\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d8749ab51da0001782215cff3a8113a23ceb21c155ea05188cc155e180438af", + "regex": "(?i)^https?\\:\\/\\/codetwiteurderobloxultimatespeedsimul\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39a0ab95c521ada4cbd19267cf28e121560e54fe38abc336fa2ba7b0a42caea7", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "906332ebd6f5440d6b5a3b5cca6e16ff98a25221e3ac94e6b66f815d66fbf1b8", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd16ffedd8a739c92897dcf23f1d47fc7546f4d1bb8d7566bc5999b29119e924", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "485a5d1bc50f00128fbfce5a0e9e61a278f69988452e821492034597afe0efc7", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcce5a642d12451b5f933f5768c854d9d3e88538d078196022ab4e64140251a6", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "069d5013a929006a9e78108faacc0d3202e7d29b04d1595cc6340da36962e526", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd51ce0d6f9fbecb8aaff08b1a77f609e3641d51e1171e22650912be1aaf7860", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4669b8a2d170bb8e21ce15d509e68fc72a64ec12fdcda06362b9bc22fabc7ec", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c344e589670411ea8ca59c2424a2ea9cbdb512b0028b409972f44354c6ebe761", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4acba66c15395f5a2de9475ed784a064f9f2161084e0b8a712f2dc48766ebef", + "regex": "(?i)^https?\\:\\/\\/superdestructionsimulatorcoderoblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b56dc758b4a681b5df2528f15b7213c296fad91519dc26e4e62ffc7575458d1", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c656d6299ff36a540760762a066524616ddcbe7d83165f53f377557f0a0c0d90", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ac20d529a0e0bf2cfe9c1ffeede5d05d656382f258385ddaff253d2dad4401d", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05fb6dac75d80d6ebc6c9438247c2c091aac1a31389c76326ff51c6d84789639", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b0b7ed158d4e4b094e8de91662353b51a2755b4417bee96e542e87b24653ef3", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd5cd23b91ab0ebe9569adc50b3639b5b16a5465e46afa3a52c30a0db3a2066d", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57f08542cb5debe0dc77480552b4277440c83524d50dd8bbe1c3968f9178fd7c", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbe152da72d17b4d927c6271e745d6b5fd6ed845f51fd6a9170f0be792b5d790", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e8d3871c2fa2a4101e51dce8c9b01fe51b9969c8f70a7d943130fded24d8f1e", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c295e3641c195fe40208f65ba920db8248fb8668d116e48e8749eefcde3b0b85", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c868ed7ac1bc61376f0b5bf652c4c2f5782f1153c033bb06e462c8487265655", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81055b93b9e242e9ee44f47bbd2055da8f6396a31cbcc88139fca528f819e419", + "regex": "(?i)^https?\\:\\/\\/furiousjumperrobloxbeeswarmsimulatorc\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a8d173d8b68f7ec6080c436675c47f167b0130fd5f28b03debb0a1bd2e51eab", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapedohospital\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "777c07487d396de3973e611aee08d29c02ca6fe01b8a6b55eccc9769cd7ec352", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapedohospital\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d740e0e44e306a9d6c07f9cfebdc05e0494e57e4f9878563dbd19efb5888f36e", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapedohospital\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d20f5303bff4a0ce068d72d1be6913279f4fc93d1e1d17b2654e234160582fe4", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapedohospital\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95f3f1a0faa1c144c791561da78dc8e4c23b32ba6b60a2aef67f6d20b2bb41e9", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapedohospital\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "825b0dd49c8cee7ff822eeede7e28f857a8f16ac22e0ba82410c0be680189cfb", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapedohospital\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "762fde86fa17dbd91c0f93c9f6d096dd5db309f3b5858ab326cfca3303512e77", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapedohospital\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1ef492bdad62dd83493f3a86b8dc25a883045242fc5a64b0d3b1f5ce64ca1f0", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxescapedohospital\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cda3e077fa8eeeec5825495753ce6ed3ff9b0e23d7cce378d4df7e152d4d2f2a", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d903117d336862d104b918a3e8657dad2bb18c0ad3d9d005d302aafd8d2dee1", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75f04191390c439588c16dcadce686e0906243a73ef2ea78bee98c7fe1abb49", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4e99c30d48ac73d261b62df0a5dcd653c6304ee97c3c9440b47df3ff41ca94b", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef0a314ab037e0d91e129e5e96e552b9a1b5196b626f21dd000ad8c8a8a33a9d", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c9e68d701900aa589f32f0ff10563ff6819a76b18f1c9f19d26961a38fd5c1", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe3e173c2c456ba106bb51d877659e9ecb93f79a2dc18ddc9baa8ed33de113b1", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cddb4db2635d7ee29bb4e61bd7e4d6f326518ac256f1d3946df5b88ab65892b7", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b48f78a41775d239d8a17c51a3afd005920e5eab882d642f5bc7d002a61620a", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c19d6a71cd723aa9b689df387656d53790185ad6ad89c09beb88ed94413756c", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f144456cef47ce1f780a372fb0e42180daf99bd43db74308c70f1e55353dd83", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0526fb88ba68c605bee6d9dae633567b092c3e40b868093bfa8606a2bb8a6d92", + "regex": "(?i)^https?\\:\\/\\/hackparapegarqualquerarmanoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89ea8fbb70c121436c8b59734fe342d29da1ad56bf493dd36169c3efb874117a", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxcodescomwikia\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4578249fdfe53fd49d41b3bda8a097609d9b95e81f67125fa523effeaa6276c6", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxcodescomwikia\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23015af6fe5ae795304f2615928188e75bbec647f98d49de14a62efd48b8b6f3", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxcodescomwikia\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "890d63f0179c4b8072b2061f841118bd587d23d3e21648fb09c01ec78ce7622d", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxcodescomwikia\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef97122b249c537cc6532274971aee603f8b75e3dbbc3e7258a980826c251a70", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxcodescomwikia\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8fc060e9cef85c511c9b3a965371b5890e65da91e3404520cc8bfb9fd16bdb0", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxcodescomwikia\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92ffb02aa9fd55e3231c8ce2b298818b86de67e19f80449597460e21e30df256", + "regex": "(?i)^https?\\:\\/\\/roblox2021robuxcodescomwikia\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49fdc96ea30bd4cf9040a6b7af39a432671097c61624a3e9e7a1642565c09dd8", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2863fc9b1b1e860c47564922ba116e65718d96d9ac4cc0a3f93bb53f20fdfce8", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50e0be28fe27240c0fee7162cfeb0aac5ce858b258001bdbd3d9cba2d278e2b7", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e504556eb292f2019a2b1912e4f433fe16a654fc6eee88975199748d934aefd2", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446762d9e07dd0b8b7a88ea3454eaa493ebfe47d94120ebbd5da388c90b781f3", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a24b28e1e49cdd0c5dabfb96e877c507a7125575d79e0e316dff8bd4516dc18", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f1eaee2db82915eb1429bb5b2a072b4bb954becaac7d827638a10597c390ace", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cdd8de19d8ecd8cb39515810e4134a41c7a8d0089fd5cb8fb80a53b42ccc75b", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb6cd37b61991baba7dca14c8f4dc166ff7e52207c533c09c0ed482390330285", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f50003ed55fb3e78d69cf1245e9602a5fcfe04bdc629b3ff59381dd510c5767", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38fa4da4605f31c2be5b1ed420a221cf3ddba57bc1f0c2e55bb03e204672efa5", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e362e46d2f9f80940b2874939000e0b547d0c0cdfa19ceee5026e17161d1090b", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6af0c70bc810e6d3494ce68062d02def34a3a6889f05b8db5e6803719f10d990", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9565cec5020c8227f475397377c5be6bbd7634dab16576d85d83bc3ef2ed1ff", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38cf966ef45df10b8a5b04f3fd4cae44fa79caa320974db88d489c4dba5ac746", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e06ac39859a90b44442dd4cce70a1c93dff2ca1a67aa70339f88a993ab13d46d", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f889885ca982e5ce413cbdcb6eff8cd9525f0bdfef3063abb4d0843e91e00760", + "regex": "(?i)^https?\\:\\/\\/codedestructionsimulatorroblox2021\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd613f68ddba773406d15d6997ec37ef8ef64b458588c29148a59ddec7d10ef9", + "regex": "(?i)^https?\\:\\/\\/bimcervergodemen\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fe8e6e2502b82e2f0bb833be0b27dd21008c8de07b90d8568e9aa0bf9c9fb6e", + "regex": "(?i)^https?\\:\\/\\/bimcervergodemen\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a40057dfbcd05c8a50438b75908310aafe840ac9b470a4a771a735ed97e5c6ad", + "regex": "(?i)^https?\\:\\/\\/bimcervergodemen\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5242d6c415ef2aafad2071d12454bd1fe2e458726ec852fd3831c8bbe7bcc2c", + "regex": "(?i)^https?\\:\\/\\/bimcervergodemen\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba31646e4d152650b51f098e848725221256a315c17d4e85902cc973fe8f99c3", + "regex": "(?i)^https?\\:\\/\\/bimcervergodemen\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "228e65c518a3145f1922bc1d2ac82a4508fb90397aa8d5681b559b7adce9baa6", + "regex": "(?i)^https?\\:\\/\\/bimcervergodemen\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b11377b67be1229dbaa7b2293cf296e9f3eaa1311926253dfa8a8310dc099e61", + "regex": "(?i)^https?\\:\\/\\/bimcervergodemen\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68c58f8ef8a966aaffa3de136f24d51ec3d953f8686c6971017e18d37b329547", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneratornosurveyorverific\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ba792ee56b9ec68af121815a9f25f20c38089b9b11283913de56554914eae5c", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneratornosurveyorverific\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a89a7ffd8e9e94fb6e1d0c8b31e8e63a11fb23cc62ed3bb5e0a2191346cd3cc1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneratornosurveyorverific\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b7cc8db343d2df6cc09e2605c676b9fa2f56b193d41f258ac79fb62ebf346fd", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneratornosurveyorverific\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "641f7f913d0360f60a779c55eb57984dd902171f9f162a3d917241265c9a21f9", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneratornosurveyorverific\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "060a7600eb9951ed9661804af170a049f2b6b52cdfcce2283ca012c57d371b89", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneratornosurveyorverific\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0a336d348575bbe57ab7778d5ab98493c272e60776c4a0a8d74807072649091", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomlulucagames\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe0ef6e0d6df4a3e9f5a348fdd318903c792f9a564f814925de1b2e21a27fc3e", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a193aec54396a9b1a8f7ca882909b485f872eba03cb3731b39a45f675d07aac", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4846d8efacb978f20946463cf0a2726f443a99fbe39991a87082d59e815edf57", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f57ec380778418d4c45e60ac7c95168343d9a8267dfdb3a460e0a9a6678cd463", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec885c126909ec389554fa8df83b6f92400c2e454c726c659310af111e316297", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f242843c73e2cb1fe79aee4b8f549468b897592dc9982fadadfa81b7f397992", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e5cc3b51c5ec0aeb14a05236f197ce6ef0aaa426107cf0b4477609a00cd432e", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d853e29c1a441d5728caaae34ddc710911ba4cf34a67b83041b7d62d7f37862a", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b6cf010c400d66727a167179cb942e47aa7fa1dd56e263a1afe348d33b9e495", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45a445a476f0ff8fba2769d6a5255d89dd84e84942186a8838c30444bc29aef5", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd4ea1bc7fad143661c71333e32b28d4889b73ad8c034f6c8d63a03c0d4267b9", + "regex": "(?i)^https?\\:\\/\\/comousarhackernojailbreakdorobloxpelo\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e466f08834f98eb8a1d2adfe60d23756c426ecca03af88a60787b61928712949", + "regex": "(?i)^https?\\:\\/\\/robloxbypasseddecalsjune2021\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bb87acd198f691ea4a9cbaf257f9af73a480a42f1c0afc1b9e51e13618fcf8f", + "regex": "(?i)^https?\\:\\/\\/robloxbypasseddecalsjune2021\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4392a63ed5dec946baf8c5e052e690d4cba9eb81cfc3fbf8f1d63476929bfb8b", + "regex": "(?i)^https?\\:\\/\\/robloxbypasseddecalsjune2021\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3c00f6886ed84b8ba39d888743d809616cbc9bf46fe58282d4b700c71964a1c", + "regex": "(?i)^https?\\:\\/\\/robloxbypasseddecalsjune2021\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "343c9eec145b9f38f81fc0760c2623394a4e76813fdf1ed067caf3f64c12fd85", + "regex": "(?i)^https?\\:\\/\\/robloxbypasseddecalsjune2021\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a862fae9fc6e1c4cfc14194b707197ddffa1208c07c6de3a03dc6f47c9065699", + "regex": "(?i)^https?\\:\\/\\/robloxbypasseddecalsjune2021\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02e70af19c736d9eaa7c052eb27e59dfcba0b4641c60b2edb6e8dd996a26ae47", + "regex": "(?i)^https?\\:\\/\\/robloxbypasseddecalsjune2021\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e1e61027908f9c78152f43964f3c18c2b51573abdd8f96b9e74d309edca063c", + "regex": "(?i)^https?\\:\\/\\/robloxbypasseddecalsjune2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "448b9835384b1cc64f09c1f3cf4ecf89f7d2fe18cfeb37c56658f26f27fe9a7d", + "regex": "(?i)^https?\\:\\/\\/robloxbypasseddecalsjune2021\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "471b210cd202125baee3553754464c9617dd26a05ef0e3335bfe1f9a0ff35407", + "regex": "(?i)^https?\\:\\/\\/codepourchrystmaspackrobloxminingsimu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a7ee33a5ce78c70100a4a64f9061037c79f1dbeb6b4ee1df291d1b3173350b", + "regex": "(?i)^https?\\:\\/\\/codepourchrystmaspackrobloxminingsimu\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55fafc1a8bae4a50b0857b6a37aa6304a1e5d905b7b746254e74c0525d201e16", + "regex": "(?i)^https?\\:\\/\\/codepourchrystmaspackrobloxminingsimu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d9f3af971f55aa94640e465a25d33e72bb58573b470c66577ac704e00830646", + "regex": "(?i)^https?\\:\\/\\/codepourchrystmaspackrobloxminingsimu\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c8fa5d63f0bdb84d6adc2374dfe0fb813355855ae85b32ac5275f8eb4f48a04", + "regex": "(?i)^https?\\:\\/\\/codepourchrystmaspackrobloxminingsimu\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec8869acf7331d3b1ed9db96fb93fdbebbba532bed4007d149e396899c1e9335", + "regex": "(?i)^https?\\:\\/\\/codepourchrystmaspackrobloxminingsimu\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aea5f2aa44fe91436576613be6ef3b942e98a42fcf1e6426dfa17c704cdbf3d5", + "regex": "(?i)^https?\\:\\/\\/codepourchrystmaspackrobloxminingsimu\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8253d2dbf255c92be9973522e58279a2ea60c79cbb5e777e557c97a714aed0c", + "regex": "(?i)^https?\\:\\/\\/codepourchrystmaspackrobloxminingsimu\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3bdcf0dca562f40b7d9f4f5b38ca49ff4ac73027132743c9c009a1871aaad3a", + "regex": "(?i)^https?\\:\\/\\/codepourchrystmaspackrobloxminingsimu\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac6bd6cd80aba58b8c4d5c23745e53ab299c40bf62a225d4f3f12d01d1ddcee1", + "regex": "." + }, + { + "hash": "adaa6b06377f19074f398767d2e3037a8383da80b420b42447c83aa7245ca21a", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c445dfd8392c6938d1fefdeafb37a32b10330e222b18baa7271879ab4f52eb5", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd6685a753224e988007ec5ae250a3b9fb6ba88db5a8bf05874c18e985c02198", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f91e7f96b4af96d99309b62db763f81834954faaa8bd2beeab912c5dc247bfc", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a368da89d1ab23e03864294880ba85373b7adb0523bc32fd76a0fd459db577a", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "856e38e9cc61c84df0529b38e67f32b774e8eeedf7147eeb46fc09555f075d63", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eceb9f56251e52c55b28cfa2613aa3b4296921b9f9a7fad6207f37bf401c81d6", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b06d9bf03413be10488448f623c691b5d4699e894c964b6159d1ef169ffe9323", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "524395db6028d11e54b1b55a38ed6952a36ea1991a7339de901a5f94321ccbd1", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "231d358751ecf767b196313fe20e8932ff1e7309e9668d1100d856dbbc3e9014", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be0d4e31138d06c665725c9288cfa7ab1be0f11093b77e89b6c2b46ad27dd0b3", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5535a1804a507e4d570810ec2a61305d2e0333db77c53130f4e65aa99a0e895b", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b16f4c2285dfc89c768bef9cf2b162c987f0831ffbc5133b44f967925e96fa67", + "regex": "(?i)^https?\\:\\/\\/robloxpantsdesign\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17df364ffa0afec7caea3e815d7a704704e9b2f4f79d56188d9c945f6c92db20", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21752fc5ac40d2c59ad488ec8e1b4eb1fd126c0a90faa2973fafcaacf3536017", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f9db0440ffcb0e3f6f55d0edcf08b6552df585a23a7aad6e6de06bc043642bf", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49f621892dd02ff4a70350882f50fde38335bcddb9db3fa0a9763dec0b499306", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e83d6715433f7de40838b0c36e357af808562d8ae93ec46a345b1612046692a0", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d821c6d6f157fffc013997c738c447a50c71a17b7fd2d777741d49b0475213", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "727e39d82f04d168b3ac8f564110e7527e9861aa6206a03bc30dffe166af365d", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3dd706f5fd3aba6f4837635c8f599d43234f98a4b753589ac12e65a5850555d", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b20982c4135858940d7b6907ed1790a9b80b69043663279a95bdde203e801a8", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bd19baabd106f3925425f0c8e5a021c63de05ff533480791d60eeb41690af5b", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "842a8dfde0a9f22cc6012b7f239d95a4283828bb7a34ead725cf655d57ade658", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd5c0182667e835510b0398a988c65ff77fece19a141a2fdd6805a34a7ee511f", + "regex": "(?i)^https?\\:\\/\\/xxxtentacionhairroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3ae3a12df1a21c03678452d9de0324637456f25e8f31e3d8b12b7714fe7edd9", + "regex": "(?i)^https?\\:\\/\\/robloxhitleruniform\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0605b36e1e8fc1481fc5b5df989f7c2239e3c5dd7e791421f8820269d581779", + "regex": "(?i)^https?\\:\\/\\/robloxhitleruniform\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "278c550763355bcf660cea84ef30599ba63f92920a1cf55960f6db2fdba4c696", + "regex": "(?i)^https?\\:\\/\\/robloxhitleruniform\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da12dcbc45cff38abe4b34be6d36e1b2fc5049cdd8b04774222f8877ad33f97d", + "regex": "(?i)^https?\\:\\/\\/robloxhitleruniform\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebc59d9258e6f9973bb1939781790460bd1f221fc7aea00d7cfbf8a59ae14ec7", + "regex": "(?i)^https?\\:\\/\\/robloxhitleruniform\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "979427e4a281820f6d8c0e57c15f51470976adc9be9310438a80cd48508d4c46", + "regex": "(?i)^https?\\:\\/\\/robloxhitleruniform\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "361e5dc39cbff6f0a5b1f69695b53abdd882aea6ddfd2958525905ee9dc7b23e", + "regex": "(?i)^https?\\:\\/\\/nojogoroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a965ebfcaa492a0327db783719ff71a653af9cc218255f51ba5f6ccc39df6932", + "regex": "(?i)^https?\\:\\/\\/nojogoroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b0ad873d230acfa1e4d745640dce5edfab473dbff1fd9d13430a3d3ade0f66b", + "regex": "(?i)^https?\\:\\/\\/nojogoroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2f9f524591222a52ce90f99395cc7a35f2cfd0fa9db031be7047e84d39b44fc", + "regex": "(?i)^https?\\:\\/\\/nojogoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34a482285124632bba71f143d3936801b59d964ca983f871833dd5aaf0c67d17", + "regex": "(?i)^https?\\:\\/\\/nojogoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01b93fe1b53534a747af09a2d1b141461d4388f93c33336b63994e915f1411e6", + "regex": "(?i)^https?\\:\\/\\/nojogoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84545db7e0bab524e642d416ed3cbc4712c44930952b1bbd8ce1018a2e3c9a50", + "regex": "(?i)^https?\\:\\/\\/nojogoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "451c591e8c6a7fbd306fb9ccafd08c8c3eea207f11d08fb48bdc1312423f19be", + "regex": "(?i)^https?\\:\\/\\/nojogoroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93656e29a94068da005b5d805d5c3117fbd323d1d2501ffbbb31777038bd8dad", + "regex": "(?i)^https?\\:\\/\\/nojogoroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e065643801cdc4271456720373c1979354e0a98fddef1bc4a95692d842eb0f0", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9300acb6a41ed5b0e0f4f98bd3dac6aa56f6e41bbc248074b117c286cd201073", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33024607eb2fdb5f0a454c9c902f0a6d35092f39a5bc4aa0f210b4075ab83479", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9ad4ae652f29866a7703c12c737a3373f4c51126ba86708823277e5e5479242", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53d7754418e96280686d808ae9e5f338c5ca178a4580e11e1e1516f6d982660e", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38df9f951948b8a798b8eef2c3e300c553334f39d4a4e18a4e320e8b7ab07c0f", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7455a6fc94d27bada555d626504084f445ec7db7ef5116bf620c484e6e6a298c", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "794397024e0de77e2723151bb42ef85448ba89ee4e9347716e74fcfd046d87fd", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b9ebdb6078914f8ca1b930b95e089eddaca9121a758367c1383415f54a64e3c", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c9904917fcc960e1ad97ce9d1befe17800e7807310b509126818b40fd5f66d3", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a3e0cb450ab9389ae966472892ac445487a2b6b4e6eaa061328edf9bb61eb17", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82146448daedc9c0a7f37c5762a49870ae3610405a7897e56332f7c4f970ec39", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "151bc7531a282c85af511204296529071dc90a235db8e4f8b20836ee291b9c3f", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f71cf140ce8d5d227c0a30c9644b12b8a624c2d02b218c0dd67578a89ca2732b", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxaccount\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb9fad35eee5d83d05869bf2bc25aac6c29e4257887b4e2b8bdba00ed379bb6d", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b83965823627958a0fce9a47c659a33e3c0e777bd78418afb3ac64e541e667f5", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b58c836f5c06486d9e4f0ae2d05cebd5820e5d6d7923099d51aea4ca4dfe02f", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37915ed93d8bd57ba10291bf519d06a136c9860ec9cf6d5e3f6ead8469cf44d3", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77a67e749761887d5f2663f0e7507cf01e1c6d52aae7eed51d6c88302273111c", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6481d71c5a92f639f5fa6b6117178eb7492ba0bb6a0c6de561d9d3a732654fe", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29e5ca8ec49200ac00e9e9b96278805827a66a2ade8386df02208ccc373eea3e", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f711b80789fb76521f617e2b30390056ac6c56ffe231b478a883b8446033fe68", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e60311af3bc2395bb12e5e88a7c76420c5e2afa6118095a1e371e7c3afc0c48", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a46828c1d9ee11a48fa570cf402a75474b53800cf6beb1ad9b160dc48054b87", + "regex": "(?i)^https?\\:\\/\\/scriptinjectorroblox2021free\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e2be7b51331dea73894550ab82a2e95cb1aa503a3c71eadcee04ecfbd77ef81", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e1fe8707d63d36f9456973f9cc95e4a7113b91c7d008ae03b2b20dcc65f9502", + "regex": "(?i)^https?\\:\\/\\/comoteadmemqualquerjogoroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d10fab6618f678605a76e18ad45ee2abb49b4af5bbf85db26702ad23a63c7f7a", + "regex": "(?i)^https?\\:\\/\\/comoteadmemqualquerjogoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27a2b579108b0b45723ae6a38a0df516041593ed4246433f8be2dad3dc795eef", + "regex": "(?i)^https?\\:\\/\\/comoteadmemqualquerjogoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13847268995ec8e9fa55426377f89ab40926abe2c129c65e81ba3adec4464514", + "regex": "(?i)^https?\\:\\/\\/comoteadmemqualquerjogoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "546caecd6684a19a2d61a80727a9f57e7fc4a63304a53f017d5e08ef6eb59a37", + "regex": "(?i)^https?\\:\\/\\/comoteadmemqualquerjogoroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96cb4401c8c3dc4a5db58070f189b4e3cbd60aa4d96083f65afc6d4d4c762fd9", + "regex": "(?i)^https?\\:\\/\\/comoteadmemqualquerjogoroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b8adfa1141cccfbd56a12674bf88b6be4bbce7cea75df251832d81226500a2", + "regex": "(?i)^https?\\:\\/\\/comoteadmemqualquerjogoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1389f898b878f58b8778db62e5ffff66e9a611c9a7f5736bfcef924d56ae7e1b", + "regex": "(?i)^https?\\:\\/\\/comoteadmemqualquerjogoroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd774487aae11393b83809d239cbf3a0daf08c4449f07969e5d2c2df718bff90", + "regex": "(?i)^https?\\:\\/\\/comoteadmemqualquerjogoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fb2ea10bc52d3317d41c8aaf14318f101eb814c6d0e00f5d2a4b4a44c91943e", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca2a188b7900177866a10669cbb5dbc3019136b8daf8637c8f030f1de2a3408", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03ea4e66afcca8ea8ede8452bd150784eda6add68a6c6f318529f5f8ac5283c1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49c8de4feb91dbab96ed8f7f75198bb2d41b728ac3dfbdfa81fa40a00e4bae81", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09a78b6eba0913f4cfafc287637610b8e27b551762f53624494db1afec07d364", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "841f7037bc81f98568d9e29ea1d300d104ca3077d07d0e1c50c2955226ea47d4", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e70e988e2f47f6ee0e40ce3118a09c9fd02de00a97deedaf6f6f1f9e4d5eadd0", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "171aad6965a2ba3fb0bbbe2e91801ed3e460fb9eefaf8b02b4ff1ac8e6a6077b", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63d15edb4add778c0e8e06328b98a5ff284f262e918573ea21b7a05c7f67c9f", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhilesi2021aralk\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec14b9a22ace3385449179a50b5481249e468a3536e0b9558a390003e562655d", + "regex": "." + }, + { + "hash": "c90e74e0b1c455f20b14e04e3d2038598456f292a29f5b280702dd480ac4909b", + "regex": "." + }, + { + "hash": "9869c892a23f0cc01fe60ac55d038b4c0aa783f7bcdbd4a49a8c2fc6bb945da2", + "regex": "." + }, + { + "hash": "082ed1a57f71a0cdc6e99e130a9e8c597b17ecf9ab0438b39e5e9f7502e4991b", + "regex": "." + }, + { + "hash": "8feb0523deca8c190b813185aa51c91389385deb14eb10327bc53cae91209432", + "regex": "." + }, + { + "hash": "ef1b4f6d1d4dcd9b762b1bcd7714d9d8c49772881a63ecb56142d07f5ddc2305", + "regex": "." + }, + { + "hash": "5016d22b8398c8a01de3d91e9eb8809e2570f55b68389ac5ba991e2566988a34", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a972f74ae0066b0ffd072dec470887d2ffe493af2de53cbc105f8305b13c7bf", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4972dec263f3f2bd2a68f29c0c79bbab2a5a3357f63ab3c89630c0af23bfa8", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb71d95ea973cb9e77897ac4484dbb8d8551b26bc410700acb19d43f7b5cfd95", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e504082de9c1bfc1643d047d7b033ad7847495e86753b2ea5fff69a8b48a4fa7", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f04b22e624e03532d82b3027fe620bf4bad917101fbb6bb31190b80adeef3ea4", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c22d70675f9c1bdbef21b18f18815776bb870ae13b9ea259f4e80d8ee2247a91", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41fe7749492b3f427114f93b9058e3ba426b1048cef55e0f986561cbcbb0edef", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2147c7f37794562a27d1847cf682d5991c21d00c335439e6f65dd93def9c56bc", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01482c522a3d990d86eeda6edc60eb39f049e27ae54fe10a8f52bdad541d8765", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d71ab73abe6208ffbecabcc01ff3c8c78c5946d1a1f57e23af076183d5d18920", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce55556c88fc98c5a1fc4396b72cb072d09fe860dfff3d6b082140b7650821f2", + "regex": "(?i)^https?\\:\\/\\/robloxcodemusicfordusktilldawn\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c8b7c2b2d30372b6bde3980604e7a984703ecebb665cf5578eae613cdb711b0", + "regex": "(?i)^https?\\:\\/\\/jogorobloxflethefacilitysemfazerconta\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14b82a4356d269badd5dfd54278ad21d4075d59f9875275d72a8a8fb50359ab5", + "regex": "(?i)^https?\\:\\/\\/jogorobloxflethefacilitysemfazerconta\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87deb84229573fe539704ff960bc779f15eee1b3cede0412313d1a340a53ace4", + "regex": "(?i)^https?\\:\\/\\/jogorobloxflethefacilitysemfazerconta\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79f8a7d3abed00dc1d6e497e3b2eb2b3917362cd3f6ec5de1c7a547ca7b5da69", + "regex": "(?i)^https?\\:\\/\\/jogorobloxflethefacilitysemfazerconta\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ad4e6555652cb283057745ab8bf5f8aa26a59d6d3be3d79d0e703971da63ba7", + "regex": "(?i)^https?\\:\\/\\/jogorobloxflethefacilitysemfazerconta\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d1c8124b57282242a0cfb6b4654f202288eb0b2be821797f4dcdd70fd352a3a", + "regex": "(?i)^https?\\:\\/\\/jogorobloxflethefacilitysemfazerconta\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d70ce1eda52f7250d354bf9f759e9381b9159aff3d99dc29e4de0e51d4e1445f", + "regex": "(?i)^https?\\:\\/\\/jogorobloxflethefacilitysemfazerconta\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dab035c0c90b7fe499bc64000253d3e34acd09427aeaac80e90f591061ba94ed", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e09125418e2e963df119a5603918855401cbe110cae5ce0b9cd1224d782e8a81", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb19a4fe11d63266ea070642f172dbfa753624e30d3674b75d50ae665d7dec28", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66c9a66529d8e426dc7a761b341f1ae903f69c1bf64a4cb1e4947ded5cd3442c", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aadb801a68fa2e26dd19c8f22cc3da95273cb068bacc5e343ebf854289aaa55", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8348d69cfa3a05bb80abd50214cde94b4d95774a3df37cd4d4e895e33c68a76c", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9636a276b2f26af886155df631107220a48a6a57f2d19f5c47cfbae17bc635", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56ea56fcd1b7921935c8e447d43d7445f9edc64d5a6d1d9597f0914f63d37295", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c01506a476836b4163ccbe1223c67c04cc79c3634f4a1add7222700038fba88d", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8b2c7129c78c3c4e80706ebfd919b72c64321750cbe7daf698239ad07c84385", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e839f16f4694d8ed9e0fb2c7c45e35f0b5f3e522ee9cc818073bf753cbc49a0", + "regex": "(?i)^https?\\:\\/\\/comofazerumjogodedinossauronoroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee0ceb91f7be2f29e8c70f86c0ed9ced3937720e45e5c476484456fe5c6ce98a", + "regex": "(?i)^https?\\:\\/\\/robloxcoolsworddecal\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81bc06487e20e6777f770c6f4c19c8d5bf7aa6fbe4491a4246210d84046e9a74", + "regex": "(?i)^https?\\:\\/\\/robloxcoolsworddecal\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7031fb3de1ffed66042acf9d51a3cd39d231313374a07dfc5581d1cc51da55ff", + "regex": "(?i)^https?\\:\\/\\/robloxcoolsworddecal\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94eb534e8a8c8c87eeb42cdd4d686adcc5337903a1f6087b173970a2e7cb90b7", + "regex": "(?i)^https?\\:\\/\\/robloxcoolsworddecal\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a3389cad29de891f55e2da558b3ddd85722c3c4fb540ba2b8aa487d97db00b", + "regex": "(?i)^https?\\:\\/\\/robloxcoolsworddecal\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f7c6d49c2c35906149a2243bbbfba55c8e9647ff60548eea6bcaa7782e0f580", + "regex": "(?i)^https?\\:\\/\\/robloxcoolsworddecal\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eb0720147c65ad3d907b50c6d1b3abcf4beaeb723723019b20d6392b91f738d", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec1443f5e41090537fdd1b48ab10f99115df301431cc2ebf7800b619cdf181a", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0091f3c2fa391dc4e7988aebb5e5330d0321f6facad1df04e7a0603549e8d6b7", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10522320cb72459c924ddd79b895f3d72e1ab4c1612232dd2df082e9bdec038c", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83bd2c354fc1ab56b626b33747f6eaa84846737996e08e1b680317bbdfa99712", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c11657f59ec38f1bfec9c3a80af5435f44a932718c4a259a729cc3ba593e4852", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4dd3b7c5f5f22350a885bfd087cd2490e51d0d1f6ca21170fc784ec9ac9d5db", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39a3933d13528d48f981b6808d8a193caf2c743175e6eb754d380a5383e095e9", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab9955691dc7585b44fd5edd85513337fc12bcbe496a8511287f66ab14c4d46", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d423c1d9e4fa91490b8041b4c807bc65df52b7a3a13c8c634181d72ec2a132a", + "regex": "(?i)^https?\\:\\/\\/jogorevolverrobloxefacaquadrdos\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "474a445e9de2b66a4668de6ddb11eeffd2888dd83de31c908a0c0653cd1b1a90", + "regex": "(?i)^https?\\:\\/\\/robloxdeurobuxprapapilesemelafazernad\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "384c51b231c4ef5cc31d0f89013317ed50c7008d42656513ed838bdbf65dad79", + "regex": "(?i)^https?\\:\\/\\/robloxdeurobuxprapapilesemelafazernad\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47ce92667c422a2342de000d48fda90cda9c88a71909d4e18b9df5ca81c882d2", + "regex": "(?i)^https?\\:\\/\\/robloxdeurobuxprapapilesemelafazernad\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f87fe9ae4bf019bb645c48c5ebeac7189c74dced839a5bee03e17736dcc3ec7c", + "regex": "(?i)^https?\\:\\/\\/robloxdeurobuxprapapilesemelafazernad\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d6c808224d9f2316341617116d1bad5d2d978bfab98d3f42845d5b2d5973586", + "regex": "(?i)^https?\\:\\/\\/robloxdeurobuxprapapilesemelafazernad\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acffa6c5f74fee95568b82c1a8f71a81da5db35fae846890911bbd9e244b9883", + "regex": "(?i)^https?\\:\\/\\/robloxdeurobuxprapapilesemelafazernad\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b1223674032adf9eee01d5279c6e0acb3a7f98918d32385a794127a7bfb9ef3", + "regex": "(?i)^https?\\:\\/\\/robloxdeurobuxprapapilesemelafazernad\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c390dcbe0b6ad69e0109b67dc2e2de8a401d153e39f2acfe4a96bd38d412f1cf", + "regex": "(?i)^https?\\:\\/\\/robloxdeurobuxprapapilesemelafazernad\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d0299663948d2d8410963874ed7a03ad6f338baea24c06824436c98365ef12a", + "regex": "(?i)^https?\\:\\/\\/robloxdeurobuxprapapilesemelafazernad\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f954f7c65b4855e30c99668c9181b43ac9c3dc0f7f8a6b89bf415c270b1f6120", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdllglider\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0507d7cf953522da34eb59d05d717fb1c3528086b09fe35e7ceaa66eb0d38f01", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdllglider\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "390c6fd8a82e2d7571bfe6392904af29349980e429746bbf71c9ac13cd8db5fa", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdllglider\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "845f7c7cd462e323c00c82f20959802cf5773ea76bdffa0f555033de70355554", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdllglider\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "616eb5210bed3f036b7d6bbe894c0ce7f32e279e8855c4be7af34f9650abafe9", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdllglider\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "476fab8c3f40328c7ea6761cd3b5708b399179004e1212b37a62bf4cdeb12be3", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdllglider\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72ea34ec05f694758b4672c3db9c6a29665bc27f478d65ae86b6a674e4e0aa9a", + "regex": "(?i)^https?\\:\\/\\/hackrobloxdllglider\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fcb948883ed8a955e72b772720d44a6325f6b85272399c2b5f1d606f7dd7ccd", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3311a4b42d96b3c8e853114f7f571e770e3912c8a21b03a26c52e954c1763944", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a99c1f1a67e571e62288be4236f6d37aef2798fb7d21cb81e130c17779202c74", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d94aff799419e9c88983fe699b9669408f349819a2087feadf4f05361cbdd748", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77a68fb2d5c47b3bef090370c909882db81840f509bd97be9d1eaf1869e6d3d4", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7fb55ecc6f0a8e8897e09ac3de1a9a0859125081cf9307cfbaa360e48b8e09c", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57ba116ecf4ad92a1143ee6effd556d29cd867ed1b2cb2743446fd347f852559", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe1106223d7aef39eadf92c703cf79ae0c182ae2c09fc9f7b494de339f643d1", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29f6f9b7f78286a6424fba56ede100ab827d961703f5ddbd4f6646a20ada35a3", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4def92e7b80c8c39776e62aeefc76224641d98115fc2e8666c09cb12d3b3d779", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2117e885a4c41bb0187bc5547944a7c88ef7e4028951f973cf7272bf65fb8f59", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "315fe4661876fd5d46dbe013dfe0ebc5f142e639b9fb93dd8f39a12f7fc0d562", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55b0ae7ac4bc8647cb4e66306334a34f891209d485c70080c4c72d2658fe9fdc", + "regex": "(?i)^https?\\:\\/\\/allcodeforinfinityrpgroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecd4195c491213750517324ddf5d7eba6604afa0937907cfa78739f7a687de99", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6eb8cfda77c11d1215d42d070d0112f60546873d96ad48a3478f8ce37f2c0518", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abdd0e826f998ccf1cdc8e345a6b8409c3be6983c44ba62b31f6f847f24ca55e", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "521055af447b33505c443047fd535abb2f40a09b01e4b42a6e3431fa7819189c", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47715e24edc79de7c60380513bad0a3d9e81a679e6ad21ae52cace42227349a6", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eced8d3201186acc6e11164442d8b4190fa1d64a41c832056a8bcf20f37def08", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1dacb1f9ebedf0057b9297326bb140568ac1cc5fe191aa097eb380c9f98813b6", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "151a0252422de861f9419c5acb75cb44d2c77e8ea5217fb39181c3e251d6cef6", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c76b235ff3ea0962ee0b59467f132767c1d710150df1a348b701f27f560a14e", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "273e30c5d173ae4825912bf2f9b7c249c5bde860c851c37b3a9ae5d29afdedb8", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f89b957511a9a4f95fa513e9e57bddc480eb1ae3d0347165b1f29f1b6d6a936c", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f412e587d456d3c12765241a0f4d73697acc3f3d54e5c8b2945b43cd7763c0d6", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "074e2e47732a06491a9a4327d79958189212c13113d1186d2f47ff5563d1a174", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "650da6565377ba565cfe00bb9e3743c62960e467c6a2360adc92b43337200d45", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cc7804cdcf3ba408ea724af5a38f13943072a5b2bc8d30f36821d939887be64", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "719430e466322550e7a23370bd0a3ccf965352257bfffd1b832943b146a2e92c", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c4a93e65434da73d18276ec665f3f8f7efe065f77b318fbe8a96fcfedb5fb5", + "regex": "(?i)^https?\\:\\/\\/robloxvirtuelcode\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36b12af31c38b648a8a9a2bcb966afb3bd8391bbf8d431b26bb5d3c7e8e35e6e", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxomapadomundo\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ed0cca7e19ba3df293461cbda41f9908d496022f8dbda2c2cc75041ec52ddc6", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxomapadomundo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c61443ba23580b6cda76f87a40953ebd3a220ce2ab665e206e0ba971e94f76d", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxomapadomundo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84aba1b1ab5b132ab9e3039966f314dbf4f2562060305b00b0f7b51df089e7f0", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxomapadomundo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e59c4899ecbbdaf50c6f40aee857cf731a56ef2e7fac776d01d1bd6b9410fac", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxomapadomundo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8133ef288fd60401edad1c506634594c0ceb3d042e7021d3de7aea64a9990967", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxomapadomundo\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "561e649f019ed12891fdeab86a6671f43b997a44c6bf93cd0b6790fbba26d465", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4203b695a85e9b5033dae3cc418787bffe451fb344194c33a6e36e88fe5e2c6c", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d58ef96b5af6e7ae4fcf5a6cb0182cebdff8aebde7b9c93761ee8fa6ee0df4a8", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23f2f4b63aeea5e962c5f27ebd341669638d880cb189f87283c02eb1d974dc82", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb7d21c5a8fd1c56bcf4ed76a6207f24e3cff51568d1fd8c80c5ba969c5ba6f6", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "054d5f48be1babe662f139b99d3cad3ea264d9ffc41926858f7913d9acaf4b6c", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "579a611f68f1f13fd74f0b70dd8e4fc892a79f602437e15cc6120dc9f70f18cd", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34f559672201c2bdad88dc5f6fcffa64dcbdc2793c5017f922f645ba49feb1f2", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6d8d2eb932d03730ca5fdfa1e953d9b5b25ac73ea1e468028f5297b37c2dea8", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5162f7b852d4959e1f1b35b6ca5ea8435e0a4f48f58fdf34e06a9119414a1cd", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f58b5fe2d497dffa6102ec059fb2f95938c64001b2e3f7414599c0b1ffef0ac", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b1af0865b3b34a1587c61bd6b57bc69c25dc0aa69de984d2c3c3de830d16dca", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bd99e6ae22cd0849028197925aec4919411827ecc1e2192cc332ed52ed1adfb", + "regex": "(?i)^https?\\:\\/\\/dorobloxadministratorgetfreerobux\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdd3ae8aa3cebf6fda7619368590cbeb61ab8358e1591c5bb4134361f7059127", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c83533991ce810dd126e7d6628e55c6ef0b6994c48a5a4b6478fce5a87ea4c31", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbba233721dc6029d5738dd414c3336e990111b53fafd4dd66c616a5eeaea414", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd47491d0fecc54b2447456677e247fb878668a338090acf7e6789e389c938f9", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dabdbb9c36fa334b3374a1911009292cad225a87c20360694a8b565b9d5e5df", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbd440bff48ef4a4e178eef1ffd2f3a34f4d4ba78629945360558246b46aca78", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff624e3ad1aaa73c03bce4568f4b85def5ef9ecfd21dd6d35b5f565042ec93cf", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc412bfb6246e1393724057182049eefe9b7040ec0dfa782af1e1146f0cea4c3", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ae5af8beae6e21209df78fa70b429fcf1bec6a25c33379238e4a6dae6d1a154", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b2c043da3fd865257a4c66d96410f3447ebbf4950d04a7eca002b9068440e32", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae478e70489a6331e23f8031ac645d1353b8d4b013509ab3ae8da51d21046be8", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cfa90bd99e3aa32fc11dc53a6d8a20bfa3bcc04e88e4f63b43ac18a557c8a81", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhackapknohumanverificat1\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6e1c61fdbde8445974ddd0dee184198445a721d0bbb5137a4d2eae974742f75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix" + }, + { + "hash": "d396355234851a1ba9c7395cd77a360c21608af3915d4c601b014499fb4f040f", + "regex": "(?i)^https?\\:\\/\\/oprewardsroblox2\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88327d02d79d0967ba40c49842aad251c82e430b63413637d1d0331b5569f4bf", + "regex": "(?i)^https?\\:\\/\\/oprewardsroblox2\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89a957686359514cfde53cdabbd7a25779d36d1687ff5a1aeefc4c5b853a0010", + "regex": "(?i)^https?\\:\\/\\/oprewardsroblox2\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6e17f5c0c93057ce60f37227009229474323a93d1630ca920d967aceca470f5", + "regex": "(?i)^https?\\:\\/\\/oprewardsroblox2\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4aba8ec1a6835a7860564aae510d07ea8c937c8a89b14ecd027e2bb65ee2abd0", + "regex": "(?i)^https?\\:\\/\\/oprewardsroblox2\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "048068337f578fb783cfae4d0c868c02f170f50e095599c577b5cdb32ebb7dfd", + "regex": "(?i)^https?\\:\\/\\/oprewardsroblox2\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65f3202010cea50a60042e49d8a1692b687ad9456a08028de7c812f7e179be32", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef1de0c3d60583af9f5265183b9e35b5f849fc426a89ccdd496c0b7ea4f8fdf6", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c352397907521bda8fff8d623054c1618330fa7d192eb8fa10995148f2df83c", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56bb211c2a1bcee511e26952637277946204ec14f338ca5d2a7f8c74fa704517", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6132c5bc214618f8f5c3493f660286f6d5bcb256b0baab2e144a962eea9260a9", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "067370e9e2227599bed61d6c8bf028549fdefb25336fb0a47121da913461fed3", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b1157361b1cbb95d476c58a0b34a565c2f35e70addeb8b924de73d4f5d73f2d", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85540d71368651817fd910efbcacbd9912acefa52011b6f50916480e509f103e", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b10ba4b5a05b974399db6ee4ed6c9fb78c5e3eff9316a2b1bd2836ff3dc1eadc", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b23251f0c7c3d8daca9f54b4bf12c7b6b86448246bf1d8ce74e89e4a8f854132", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72506c1e1a63ed9259e78a620de1e02010cfbc3a0531205b363bbeb576e5dda2", + "regex": "(?i)^https?\\:\\/\\/headlesshorsemanrobloxtoycode\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "134c18a0f51a345e5944f32196045adcb3a99f1ff5e3d9bafadc0b7eef9fec59", + "regex": "(?i)^https?\\:\\/\\/lifeinparadiserobloxadmin\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce90d2a6419b68e679e993c39d7d720cd25b29d8598826efdc4626ae7b7586ac", + "regex": "(?i)^https?\\:\\/\\/lifeinparadiserobloxadmin\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3196880b527ccf0d02f7eab7dd2b4e2f24bc8422a8f654b20e1ab7a109225060", + "regex": "(?i)^https?\\:\\/\\/lifeinparadiserobloxadmin\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b24646f7ca0c15ec556856ae3396e4057feb6a12ce1e6755a06524a53d3f895f", + "regex": "(?i)^https?\\:\\/\\/lifeinparadiserobloxadmin\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b770aac3ce3f74c36a1bc01f4fb7d9ee43cca6ea6063d402537fc161353a1cc0", + "regex": "(?i)^https?\\:\\/\\/lifeinparadiserobloxadmin\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a49b2b40e945a2d36fef65c2704cbcd48a3517994e0df950b8f9514fe063adb4", + "regex": "(?i)^https?\\:\\/\\/lifeinparadiserobloxadmin\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8ff1d26333ba656a316afaa01c4ceaab7703381218ba026bae57f8bad01f263", + "regex": "(?i)^https?\\:\\/\\/lifeinparadiserobloxadmin\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "793bc28fab014ea2bba2d5ddeebb81042062bc2ee3cb6ca962a3a55f3f1a44af", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d12bc403b4d235a8b865467e665877102289c084888ef5c39e399ec4e0042df7", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe3c411ce1c0c73beff57aa89711624e50e9caf03db44c26dcb82bb8d5600d51", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33cf529eb5d7f12d5be142b196fc67139cae4081946098f5cbde2e98cce43ff2", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10f1cea05a0e031e3a98fabd8c66a3f4cc1ca602e8583567c5d7fabc72b03aa7", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1eb830271135eeb8cf0a08d1b7c3647cdc3e689422a3dde065013d93bde3d11f", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab76e4ff31aea8d45fbcbff8dcd121c1f4c58a9335a67bf613ee013a62562514", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca309718aceda8b704e39fa2be04e40ad9a2c27f9899fe77839d902763671e7d", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9cef6b5b47114e06b6e0498f10f6949d432950cea43d093a50856892f801a19", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b854ecbe2a732e724b2d9450e682cd24b29e36d97610a0af65254e33effd2d1f", + "regex": "(?i)^https?\\:\\/\\/superfastox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "114d580dc8caff4609a7c0b773a4b86d2e20594884a08509ffed282aaa933662", + "regex": "(?i)^https?\\:\\/\\/superfastox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92fb5508016b9d0957fe91f0d000c711405758ce93f00bf43d1b5e8499c0fc3c", + "regex": "(?i)^https?\\:\\/\\/superfastox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2815a4feb09748c4306dd1824ddc8fd84a6af45072ef5788d7da22d94761e194", + "regex": "(?i)^https?\\:\\/\\/superfastox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10a40bf9fef43ca62b06239957b11af6370c0fe4fa104f8444b8e6fa29a2b9e6", + "regex": "(?i)^https?\\:\\/\\/superfastox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13a767619f8fd47c8f07ab7d41ea134f6fa9b747956b9d76de1d191cbe74d825", + "regex": "(?i)^https?\\:\\/\\/superfastox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d512be4ca27e19b0f0aa4da0e35ce8f214fe9d860f2641319eea0920e12f18f", + "regex": "(?i)^https?\\:\\/\\/superfastox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b4c8604be8918365e39cb107a3ee54532c5ace8cb77a27ac3fe063f693ce1c7", + "regex": "(?i)^https?\\:\\/\\/robloxrthroisbad\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a31e4a65502e0f867850889800be4156a2645adb677c9816516baec69e753e53", + "regex": "(?i)^https?\\:\\/\\/robloxrthroisbad\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4846ce9b92de9eb4314efd1e6dbb512775cd9e4f3e6f898465994c3046142ed5", + "regex": "(?i)^https?\\:\\/\\/robloxrthroisbad\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8de5919b1a0e1f9ef218c7d0be75e67c259c533dfe0f4861278410133a3572f", + "regex": "(?i)^https?\\:\\/\\/robloxrthroisbad\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fddccde6cbc322a5b2ffbd221806343894d4a8a74b581b18e00c6afcbfdb2b29", + "regex": "(?i)^https?\\:\\/\\/robloxrthroisbad\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "627f2ae0d624977502a985453bd89f20d5906946de1229d3416788a2717f28cb", + "regex": "(?i)^https?\\:\\/\\/robloxrthroisbad\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3e9c29efbd9d109ab3302ca0f153bb8ed9730c858c815b0401b51ec3b151383", + "regex": "(?i)^https?\\:\\/\\/robloxrthroisbad\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "357132cc566ce2d18d93f239393138879b070d9857653ca7a96cad77eb709306", + "regex": "(?i)^https?\\:\\/\\/robloxrthroisbad\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20a0270e036589dde2c92a83e43689ec34c3504b6119117db3900003795cff55", + "regex": "(?i)^https?\\:\\/\\/robloxrthroisbad\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d199a3dd406d30c8638166fd1e7a2f7d241a1e4675086d9adfa1522a9b9425", + "regex": "." + }, + { + "hash": "320191827c3757f6a8473636fe3984d4db26bef216458b6ee4b73df98e675b75", + "regex": "." + }, + { + "hash": "d7d074ff344183a2f77dbf475389a629158366f9aac59b58e09d658c2bfea236", + "regex": "(?i)^https?\\:\\/\\/roxanneidrobloxcode\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e168e3ee87d50f2b11f1e69194dea2f776a2ee9603ed30f4d267d13aac10cafd", + "regex": "(?i)^https?\\:\\/\\/roxanneidrobloxcode\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d2ca42176ca369f002946ee5644601d037f49e58e8c721e182496ea0deda99c", + "regex": "(?i)^https?\\:\\/\\/roxanneidrobloxcode\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec1cc47952e58f0633229f08b62e2519d08602b5a749310deb294f80b7fe482e", + "regex": "(?i)^https?\\:\\/\\/roxanneidrobloxcode\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "807af0c2b545e1940abaa7cdde52b1ca385b22a36fd715f341d8099afa1c9d45", + "regex": "(?i)^https?\\:\\/\\/roxanneidrobloxcode\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e4f98d5cbd0d856ad308c5785fa5ef01794337737eb0139559c860a9a179b61", + "regex": "(?i)^https?\\:\\/\\/roblox2playersuperherotycooncodes21\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08d904b4839c2f62192d5a4bcd7eb32ccdb089e092e1956c49480ec9092f74e", + "regex": "(?i)^https?\\:\\/\\/roblox2playersuperherotycooncodes21\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1b9703438e65aa7549d1613451d786773c57d210b0e5d64b02e7192c57da79c", + "regex": "(?i)^https?\\:\\/\\/roblox2playersuperherotycooncodes21\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89d9a4e4ed3ff3ef815d3c83cc634a86eb61538cd161b19ecbd8eae0a47ffa41", + "regex": "(?i)^https?\\:\\/\\/roblox2playersuperherotycooncodes21\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11d12b500f1431f02b26dd687a7eaa03791083814df0af934d5bd6f21249f2c7", + "regex": "(?i)^https?\\:\\/\\/roblox2playersuperherotycooncodes21\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64efb94e45b5350c998fc8e1b484f04bdab87079b11a84d28579240b6a75eaf1", + "regex": "(?i)^https?\\:\\/\\/roblox2playersuperherotycooncodes21\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f13465811402c2941d0ca2adf09852438f756cbef2bcecdb19b125b79fe4936a", + "regex": "(?i)^https?\\:\\/\\/roblox2playersuperherotycooncodes21\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96fa34c71c66dc4ddc348b4f1b5288faf6226229a262305b8bbe39e22ba05f93", + "regex": "(?i)^https?\\:\\/\\/roblox2playersuperherotycooncodes21\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2a8294c7ed69923ae9e8ca69ddbb459f1ed1a8aaa322c0cd6791754215566c", + "regex": "(?i)^https?\\:\\/\\/roblox2playersuperherotycooncodes21\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5ec199c3a03fc66b87db91b6e480d3a61ffccdce6f951836e41495047a68da8", + "regex": "(?i)^https?\\:\\/\\/comoraquearrobloxparaganharrobux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ca2fbebccd58f1481f03cb24bdb26da4e38564bce20c2870d17dcec269dba6e", + "regex": "(?i)^https?\\:\\/\\/comoraquearrobloxparaganharrobux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f83bc0532b59911bbb7f45532660e2092394c9d69134ced450f3f77ed329b8d", + "regex": "(?i)^https?\\:\\/\\/comoraquearrobloxparaganharrobux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c82fd96e8d0d0aeb3675f89c752f13527639b3ddfac7eb2e5753983015076bec", + "regex": "(?i)^https?\\:\\/\\/comoraquearrobloxparaganharrobux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8ef123fd729ec1ceb6242ca664612fb8e2daff4c185487649a71093d415a298", + "regex": "(?i)^https?\\:\\/\\/comoraquearrobloxparaganharrobux\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6472ff44961ef31910f16e2a40fb46e04ad310245529607978e8cb13d1d8fd8b", + "regex": "(?i)^https?\\:\\/\\/comoraquearrobloxparaganharrobux\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dad6454811bc84c820aac09e8ee01f925670e9e14d326cbefb8fd46bd07d27a4", + "regex": "(?i)^https?\\:\\/\\/howtocopyrobloxgames2019\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d23d2e8347dbc2a38d3465c85791aa52d49cc5ce0fc60efdb2e0f70d192245b8", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f99f33aee9a47542b63bbc114a2561ec9ea52b1543798567d34dc0b83fd1e28d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6492f8c78749febfe23bf4c70c8094ef5ead67ff6f71b140d2c04d786d9fe2b", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a61fec56345596730770c04aafcc609b6fc920378ee43aa2d5ac69baa3c540f5", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1eb11f88c9ed911fe1906d7b2128a8bcead6527b98daca238494f1d6b2a5c10", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c2b74136fb7841af66b477c34f1c96fbb23012cfc4edd9eca9d6ad83e5812c6", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89a35f625b1a0e6f223e56261730c4704ca40cad3cdbfc7261e748e3b740d39c", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac4f09b3aca6033a7f8d5ddc65a78d5ce390da50f364a3302ea047faefe2815d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93a5026fdba69685e1fbe5d4473ed0dca861f765f5bf9112b460c40724f9a121", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00f982df9422520cf77883e63332553a37333d25f7d6edd7d99046c85d215c19", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76ded9754f73569167e8f01ebdab46240837f8e4e73223fe00c36347864b8edc", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxedithtmlkodu\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63118da863cc7773de36a47704ef8f0a5d8c6995bde98fb281ebe731362c0dd0", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aea8a08b5216e48b9196e0d9979e47bdb86ef441f032fdc591c4f51680eabbc3", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a36f8e6e102b2e259bb607a73169849b49de219e496315d52fb6eeda230a339", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4bbea01f065697250b3387dca7c9850213171ca0186eee9a6deecd35f7a44c2", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0826c299fe4ba7777aa4d71751485c734eaf0d93b5b3c8328778dbeb7e98702", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab0e76e8220738da616c9f32cfc8d1ec9ec7014166cda2bfd6a8a11cc7e362b", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74132cfca405978d45cf2619e85c51e30a8a2962633dee4c1c667afc08eee026", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5fa718f3644c01763b9b25b109d1ede3e65733e7315c0d2521349548514b827", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca287db01cccc85bdad92f9ad92c4d8b08dc277af4d2ee70cf2e0d4f190dce36", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc3f11a1665da0a2913e8044e6bfdd76b9b15b62d56a2351a5461c05ed300141", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4cb9dd6b84434505154646b330856f40d05c1570498ab549d74635b387e1264", + "regex": "(?i)^https?\\:\\/\\/getrobuxtorobloxaccount\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c05be27fa4c9e2e30b1ec9def4b3d2a096b5559118638e4a0b1b3498cc1e430", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxforfreeonmac\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a064136dc9229ccce3f06877b80b7eb54608ec353e9c33b12536523a7f668ac", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxforfreeonmac\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa6522560fe78c75d9aefda9832f8d3a175da9f7a0613e972c10d589bc16b48b", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxforfreeonmac\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f06ff567dcb6065a5cbd331a85315a95509d1941791cd261dbc8fb3f502f59fc", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxforfreeonmac\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c7d0b0efae9f30c36e58d5c91c6c47ebc1b00774d508a15f61cca714ab41441", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxforfreeonmac\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b40e808167e1b85e8d1131fa66343f92741fb48ae1034a26c2dc93be03fcef", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxforfreeonmac\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2041e80f6de282e34fca5009e68629fec5a38c781508cf3f94c644c53e2b97ff", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxforfreeonmac\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4893b44a6342f4f7c195b38b71214dfb02cfd3f2d4d0a78bdbe51ff9ffa98916", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxforfreeonmac\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7732d51d8ba3759cb9b25faa990fae6fae3d8777591b80971e6420e98c5132b8", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxforfreeonmac\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0db07b3ef080a291c5ca6017f2d864b0d0cb1e0465847c66033941508399acea", + "regex": "(?i)^https?\\:\\/\\/fortnitesvbks\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3e302b62a263eff6d9d60c431a304e4b97218491b290357cbef1871f3231305", + "regex": "(?i)^https?\\:\\/\\/fortnitesvbks\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31f62ef8eed3b275e0f2116f91c89f059a701775b8c3ba3a43a2797dbc4f5abe", + "regex": "(?i)^https?\\:\\/\\/fortnitesvbks\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f08f09624ec565edfd05d2e521bcd3ac28c6d6cb0ae426fa63428c31c7ec2ad0", + "regex": "(?i)^https?\\:\\/\\/fortnitesvbks\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caca9748c9ceb957bd39bb5934a44824355c77a5348a7a93d7701dc3c631035d", + "regex": "(?i)^https?\\:\\/\\/fortnitesvbks\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e2ac99d8fa554c0bf4981c666ee632d3b9e7ecae17d6325522960800df8f8ca", + "regex": "(?i)^https?\\:\\/\\/robloxww2roleplay\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd74057aa7c6332106df607d7f2e0220b4ec66bb0abee2c1885b285fea736e14", + "regex": "(?i)^https?\\:\\/\\/robloxww2roleplay\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cd8ca1f1dcc2094330cad05ab6e6dac17c305acb1af4c9e802f41a9058c4baf", + "regex": "(?i)^https?\\:\\/\\/robloxknifesimulatorhack\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c848401a5da013f4d1b26326d11744507a915953458d6347c20179b42b202c3", + "regex": "(?i)^https?\\:\\/\\/robloxknifesimulatorhack\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b98acdc4faa38e4425479d454e53be4ca2cfdea9afd0775b39e66447fe84fecc", + "regex": "(?i)^https?\\:\\/\\/robloxknifesimulatorhack\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27bde096fb68925212443ea1dcffa77de9b2d26123f348908adfc8205252307c", + "regex": "(?i)^https?\\:\\/\\/robloxknifesimulatorhack\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8f23951bfd40331021207e2ffd8e37a46bd124744e114a9e87b6e87fffd4968", + "regex": "(?i)^https?\\:\\/\\/robloxknifesimulatorhack\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26b4e1664d86a16970db0087a3178d558e4ede051d1da8b83630588f5aadeea4", + "regex": "(?i)^https?\\:\\/\\/robloxknifesimulatorhack\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f87c3e5e9d8dd75f70a7b6abcc36fedf6191059029084b2655dabaca40646cf7", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d8c866550aa0322a9610e0e37dbaaef08ccad205dcc8b4bb162797bd9791327", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da75c8d58ad5b9bc0887a8bc111826c5adb1fbce2987829655760e411a24928b", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15cf17c33dce780d3be52d742d092280619480e712daaf3a40bbf05ed9f0dd67", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "504427ebcf618f67b7ebc132d7d1bcdaf8f2e5daa862f7496af0ccdfe0884502", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a5a280cc3268c516ab056f4867759ff573b4c99d8d6090fad3f79a878c461ee", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdd3d0bb29124612a1b2e2437aa93a21f8460bfdbe1a7dc7a87846d4274caaf1", + "regex": "(?i)^https?\\:\\/\\/hackpararobloxde100000robux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f43bd9027e941f4927f5a595184aabe60eab5ecd9e075484cdf95a89a143b3f0", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5ed7e8a1e8cd94867de512732adc38046800a3357abd386d59be52baef444e", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5eb9bc0461850bc9d4ffeaec74d899cbffdd33be5cd6d11d057dc3c929658c42", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9190d3e0b9a222207b0fe78bd2161179635b4072ac1957022561bc66992b9552", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68a396086bff383ef200faf58c205b933a5bddadcc98db6512ac94fd650f5a1e", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b66f58c9b1ed334716b2ba6068ae9d47bfcd6409d84f0dd30bfdd91ceaba11d", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b57465658d797e73dbf35ecd056b6f9e094adb7601be66fcf796cbbff82af76", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d908033815d5eb37a454599166ddce61750c3043ce3d24b47f5611aba77646f8", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cd31c5ac86b87098a3dc1d94cb880d78d0a53bf6fc81e3f35705b1872331780", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "356736a11d14cb636a0add3a308c6f348d71b7a6d07ada0a007c5f262e515c1d", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adece797cf9fed5b730b1380f41488caad8da2971b6f8d2ad6d3e926538f93b6", + "regex": "(?i)^https?\\:\\/\\/robloxsystemhacked\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33c522cdb4967337ac91ad6fc4433b152532485cff3c90c8fcff7a581d285e24", + "regex": "(?i)^https?\\:\\/\\/codedestrutionroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7954286c0ff51a2670c9b55645f79cd135bd45fe06e717a4ff98010784715f45", + "regex": "(?i)^https?\\:\\/\\/codedestrutionroblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "448b771953faffd144ca3149a048317da83d027bc865b6d1e9e8029a851c202f", + "regex": "(?i)^https?\\:\\/\\/codedestrutionroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97d5dc0befb9bbf5f4b0dc85842ed93452d9730a2c641e9f4e6ffcca17004697", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtrackidsp006\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb9f42a49c7c853be060b822d9a178a57cfd01ed6ee7f3f4428363664ae7863b", + "regex": "(?i)^https?\\:\\/\\/codedestrutionroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d55bdd3c526967c8392ed9dc7fca579eed55916bee07433f01c9e90999c3b2c", + "regex": "(?i)^https?\\:\\/\\/codedestrutionroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1a51267718f177dd76a1147890acbcf243be033f622f316c95fcebf5e2fa842", + "regex": "(?i)^https?\\:\\/\\/codedestrutionroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "691e96f66930aca751a3ae0d050336c50ea52603ee5f0174772b35ea190ca614", + "regex": "(?i)^https?\\:\\/\\/codedestrutionroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96cb23e7878c2b4342d17cff340fcb3d69b7a74a364b69ea71397e0b8ad94911", + "regex": "(?i)^https?\\:\\/\\/codedestrutionroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7da05aa33a8fc17dff17a78d086dc68ff6b74894376af5b99c8e59cc85352440", + "regex": "(?i)^https?\\:\\/\\/barbourromania\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "049ca12a98281a4e92b23543131f8fe1e7236cbb53997d1b9ed664b00725d976", + "regex": "(?i)^https?\\:\\/\\/comovirarcriminalnojogocentrumcityrob\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a768090094fb2d3e27b673514e86e36c4b45a1ad33dc77bc7b1cf99722090928", + "regex": "(?i)^https?\\:\\/\\/comovirarcriminalnojogocentrumcityrob\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c01650f8ae994b29e0b1a4203a125ec358143fb427efb852bbf5367e6917c2", + "regex": "(?i)^https?\\:\\/\\/comovirarcriminalnojogocentrumcityrob\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b09fd300e330fa88e6d6f7795c601b13460069e20d63905e0825615e764cbd44", + "regex": "(?i)^https?\\:\\/\\/comovirarcriminalnojogocentrumcityrob\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84a6659a30465ca6d12e58e0966453f6bb47da47d12029c1e4554f7c8d7d7860", + "regex": "(?i)^https?\\:\\/\\/comovirarcriminalnojogocentrumcityrob\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2ec3cc476650e10f68748f02694232d8164f3fb4c7d62c7ce43ec59306437cb", + "regex": "(?i)^https?\\:\\/\\/comovirarcriminalnojogocentrumcityrob\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a967a6bcaab6d3ff38740f7db6b811fd68923aaccb51ff478aaecebc4a4d62d", + "regex": "(?i)^https?\\:\\/\\/jogosdesimulaodevidanoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae30e9e93dc62f64fe23760351fd6e8a036aae8d40702958f9d59714468dec70", + "regex": "(?i)^https?\\:\\/\\/jogosdesimulaodevidanoroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57aa5476b5985a261318bd66e56981cbdc1b81929917e0949f0c0d68e9ef9944", + "regex": "(?i)^https?\\:\\/\\/jogosdesimulaodevidanoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "725756de7da47be87b5fb0f3a6ca1ba6ccf39a4f73af3d7efa8099a428c83938", + "regex": "(?i)^https?\\:\\/\\/jogosdesimulaodevidanoroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3a1926d67e3dadbc932eda7026db3e284daef737e990bfc66d98b2f54cc0c83", + "regex": "(?i)^https?\\:\\/\\/jogosdesimulaodevidanoroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "966699c3a2c551970d64f64ec3e7961266f4e0a87abb0c0c5160819b711b7799", + "regex": "(?i)^https?\\:\\/\\/jogosdesimulaodevidanoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca0e19070003af547187cbe5b03bad03043201df8a1be8a28e59ca9ebefd95a", + "regex": "(?i)^https?\\:\\/\\/jogosdesimulaodevidanoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7cc090fa25c723f610b06dc03cd1358c222dc0d79a8dd89ec20e5a07360d55", + "regex": "(?i)^https?\\:\\/\\/jogosdesimulaodevidanoroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b919ed2b47a357e3a60254713639878315632174cea86f37b3a0089a8e314cf", + "regex": "(?i)^https?\\:\\/\\/robloxartmoneyrobuxhack\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05dff56429c88d3bf36c99423a3b06fb40817de377d40b582da9d059f8039ff5", + "regex": "(?i)^https?\\:\\/\\/robloxartmoneyrobuxhack\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3920b9b5ebd6cbb5458f4ee491165a76046385be49d12d235e33d2c608a74517", + "regex": "(?i)^https?\\:\\/\\/robloxartmoneyrobuxhack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f93f1ce0b4abf90a5106e303fc127d5eec589a32c3192bdca296a896bdff645", + "regex": "(?i)^https?\\:\\/\\/robloxartmoneyrobuxhack\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48e866ee134bd0008d4d631bb4525211ac35a96e7f660020d1b16625950a2ff4", + "regex": "(?i)^https?\\:\\/\\/robloxartmoneyrobuxhack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f6db0f60ceac34eb48b2f76d952c2aa21d96c8929373a83182ebfdf5ad69582", + "regex": "(?i)^https?\\:\\/\\/robloxartmoneyrobuxhack\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d7dce1c015ba284746217e5ec65d055cbe1ff0199cbc5f70fb19824b79c7a76", + "regex": "(?i)^https?\\:\\/\\/robloxartmoneyrobuxhack\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b15b9ac06f6ec7e692cb41e9e4d68115c15a36ec0198f21cc0ba8f79604b86a", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e5e9c0a25c6e832ad215bc33fb21728dbac3ca720f0285ee7b6d6eb441ec771", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "687689c4fb02eb661a7ff3dddee828944ea6f2928c25b77b1ad03ad075b9f601", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f581cf88fce1877e94deab26d076a70b01d559013ec827d662d67d77a186077d", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9953da4e2951cbfafe43e5a747b2077bad49edea0e8d2a88967528390a4dbcca", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad430432bc88d9a3fbc11da380b822e716b9e139e6d005b98957d639e45f0484", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1de7bac454cbc0270c295d525f345ff6ab7ccb891be5d871057b074991802d1", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29edacac788cefb505c3425d0e4a4f26ea6cfa7c61f48c8834a14dff0ad2b402", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4e1f1ac97918029f0299c1663d476647c88acad8880b21dd59e0708f800c77f", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2435831b3294fc265620015c00af2ea1e594ccddf0a82ed80ecaa97a6a5d374", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3aeb697f0537a3a36e229a55f085d40671cce95ed47e9958ec4736e862f74efd", + "regex": "(?i)^https?\\:\\/\\/howtogetfreecarsinjailbreakroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b52439786e7844b853c40d5f2ce9ff17a2cde4f20767222e226fd6633039f0ca", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a74a7b9d5835ab2fb111d747e40bff8013a03c414922ddf5c6d63dfdcdf3b60", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581cdec559656d07938aaaa2f96e8b30bb0b265ae749c54b0b2772e9049a5f6c", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07d77b6ff02fd7fbe962feb7b46365e1f6f94dbfe41a75cb898b6ee124eb7083", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96fa84a991c46cb56aa2fb5962376730b2214f4ad7b3fd041a5694585f5d407b", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "709e05b3c2c05e81778389121fd08670ec06295c24b65bea88be9ecabfd70d9a", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "941c8462f6d9d7f12615779baf17951065fe944c92d349bbdadd2706056c8fa7", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8e803582c7890567ef9094dc05af008b80cc3eb11ad474d4f842d75867d4382", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d269f9007fb1b00ad5f62444cd35224d698cb84c66aa7d928875c62b2bdaf36", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f76871ecf749df302dbf39692ed52efbbce4355c0f369606c9d03ee48c23efb", + "regex": "(?i)^https?\\:\\/\\/robloxonlinehacktrainers\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f8220864696557441c38bb97aea3c08006130538ae877443199bc7b86bea665", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2bfa18f05c6f44baf0f19ba4fc9436c6fdbd5fa835f58b531d28713592774e0", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "823f20dae25319e51acb467267017f0193e98d2d26f86520ead7dfca5687ef30", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb9ce41f79d099889f2641d55f0a5620786ba4774f2df0c650156b99439c57b", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "609a86bec4f9fe93cf4e28a17c05ab5757b82dd38117f1343b4820cce062e4c4", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dabaacba559dfaa3dd1123b7c644069a4c17cf5812b1a9cfb574fb5036c123c8", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71cc0c5370c43ab7987fd2df0c0a8f852fb36610673bad1102ae883e77ab5929", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee0c86429643dc17051241d43243548dced4d6c9ad42b393115264fb10b827c4", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42a70f893731418f7f298de0af89ed1f5522ea8f4a7536cbcbdb0324e264bd82", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6a864a92b9b2794c2904531381f51a5eaff8e2b9231c5c067883927aeefb46f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxeusouumbebezinho\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4ed512889421b3c6046c6c5f5f9138c6da618788f9e3e99e1bcfaac4eb750e", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtrackidsp006\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9794fa7a29b1c15e675eaac76442f07e08862a11a4194883918a71a68fe1e5c1", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtrackidsp006\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8974c2e70823cf4f7191ad0629192304ec8e726dd6d9ed282140c4ddca8b184", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtrackidsp006\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbba1e94f835cfb92beac2c69557ef53b2ea5f0901b8cfe8ea00453b3f333e10", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtrackidsp006\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6df4906e79e80e3ab3162201bc5cad883dd736f86e014548025883ebcadd37", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxtrackidsp006\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2cd18de4405de68f7a959cf3d14dfe94db1cc517ffc0a55496e31e481cf0489", + "regex": "(?i)^https?\\:\\/\\/robloxhackpastebincom\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c3456eebab56a7a4de8dc1d9e92750bc24e7985d3a29ff008d5f3a545815f72", + "regex": "(?i)^https?\\:\\/\\/robloxhackpastebincom\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "223cea1399b15d36315ab86ea18bb0f77b95c9023b7b7fbe4a74e118b0f8c870", + "regex": "(?i)^https?\\:\\/\\/robloxhackpastebincom\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a553a4ce7cdf70945e1df4992e22d7ddceead28f369304e0111400e293e28e74", + "regex": "(?i)^https?\\:\\/\\/robloxhackpastebincom\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b890bdf352590f836a532bc48c0bf2824845b165f5036ef88dd6c3a5ee99b92", + "regex": "(?i)^https?\\:\\/\\/robloxhackpastebincom\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b80f483580ffdc1df3e2ebe59677955334998f56a759ebad0533e7b028eaf6af", + "regex": "(?i)^https?\\:\\/\\/robloxhackpastebincom\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b712c78773d1c41c6816383ab8e543bf185deab5d0c7d49bdc90b357bdee6749", + "regex": "(?i)^https?\\:\\/\\/robloxhackpastebincom\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc04184a9d0b13840555a1696bd192e7501bc94d659cb35b577afb42db5dd74f", + "regex": "(?i)^https?\\:\\/\\/robloxhackpastebincom\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeb5710eddd240dfaa797ca7094d724a18c7672732d533518e52be838f8d0458", + "regex": "(?i)^https?\\:\\/\\/robloxhackpastebincom\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fdd31b7a6a9e3a46cf4c3461ef2569a016c65a63d20ae11287a7bdb2668c743", + "regex": "(?i)^https?\\:\\/\\/howdofreerobuxgameshaverobloxadmins\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a81883259af9b7ba493576a9ec1a5a68f305d2b2f61f0913f86377a1c7fa8da6", + "regex": "(?i)^https?\\:\\/\\/howdofreerobuxgameshaverobloxadmins\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad53e5a78b651587d39d06fcef863ab784b2ba3ceb2aa766e9d4b59f328ff0fd", + "regex": "(?i)^https?\\:\\/\\/howdofreerobuxgameshaverobloxadmins\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3389a56d28e472c1e0d5956e1728e9144e7e7f6b3c45aa96b3f9582530c971d7", + "regex": "(?i)^https?\\:\\/\\/howdofreerobuxgameshaverobloxadmins\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be2899b8cf91bd7f47a9fd9921c1eecc906facccc3af7bef8032958fbda8c013", + "regex": "(?i)^https?\\:\\/\\/howdofreerobuxgameshaverobloxadmins\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bddc1f5c985d951e7a2678c010e5a934e54b3679c6df0c222e0fb5f4d243f123", + "regex": "(?i)^https?\\:\\/\\/howdofreerobuxgameshaverobloxadmins\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e45b2c6d1b9a2b50ad565c0b93b474f323352591955a804e13419c41c95b348", + "regex": "(?i)^https?\\:\\/\\/howdofreerobuxgameshaverobloxadmins\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "286725fcd9d0fb514d9246e619400a2ffaa92f67e117d6450817f26d4f95cc8f", + "regex": "(?i)^https?\\:\\/\\/downloadgamehackerrobloxpc\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd0144bc6fa944660d8e55ea4cc713eb04595c8d2415bc78e36e402fbb36baf6", + "regex": "(?i)^https?\\:\\/\\/downloadgamehackerrobloxpc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2b9196b57a6dded6f71e099b0a582ff4e1d6f936f1f22485d35006d0e95cafe", + "regex": "(?i)^https?\\:\\/\\/downloadgamehackerrobloxpc\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de2587805e7b5a491e63b2277e1d09c7342258a82cfc38c29cf8cc2fc27b0f9e", + "regex": "(?i)^https?\\:\\/\\/downloadgamehackerrobloxpc\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c75714508b7cfcda0aecdd5538af2e51f8ee90c77403da76a432f0548a7c209", + "regex": "(?i)^https?\\:\\/\\/downloadgamehackerrobloxpc\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "041ea6aaa9fae0321928d0856a335dc5ff8a892bf8d3647835714a593068e14e", + "regex": "(?i)^https?\\:\\/\\/downloadgamehackerrobloxpc\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6d1f06f201bdb5e99f6cf7b2fdf15767c79cb4cc8ec8958b46b74453410aa71", + "regex": "(?i)^https?\\:\\/\\/downloadgamehackerrobloxpc\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4bc02242d675025df2d2370f5f7a3b5ff31a253438a1f6db233e8ad71486f5c", + "regex": "(?i)^https?\\:\\/\\/downloadgamehackerrobloxpc\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84230a7b2a74f4deab36c9ae9d92a9fc4b7dbd3bec2eb33f58f17ce9446d90a3", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e46ab7102f91cb174c5a7c3c530b8319405160baf5310e126cefff1ab70997ac", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7b7ad4fbed47f890be9f8cc568338260399142dcb62082531cb44f086544539", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bfc2e291ee7895e9eb8db9332959a27998e7b56518ee2d8cb04e56c08de63ec", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e35ee31d2751a7a813db3a95595292eb2aea9b769bc569a4d119e1609a88a65", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42025f2c743bd2948c7961713b273bfcf5969283078ec2f27c2b3fe5cd12cb98", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c6216e3199ab6b4a8ae0f96aaa50d62d979d977e3e722f8c78e5bfa8978240d", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be73d4439b4dd115296338d766564bf43796c03020bb4804303b7456e5f47a13", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c3f158cad685338f1bbd222ee4044fe3de5b11410f9722c99461d28ec4c054c", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a200018986d787f785fa1a234b0cef67503147ef12a68d3ac076938f6c3c8037", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f11251b5a2000cd7e7b18865e5b588463ebaebfb7309d182b1d777f202904188", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dac74373e5e9981f8f1b80b0fc78c7d6c861bcb90147c71de5947c622a1d0a5", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a710ba16400a4c457ddcd8d581684269327be5c99e67e5c78cb987821d81f774", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6991e952a2d15044f259db30af34bec998ed42c992d56cbc381ada390d0ae952", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9aef0f61dca4435ddd83faa40f54dd17783f71de24217c52629db050b59d3be", + "regex": "(?i)^https?\\:\\/\\/comodarumjogodepresentenoroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03219e4e77707e8696befdbddde761b530dcc23f93aece8204bfd8f9bf6a56dc", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5f3a63ab7aaf9664b6faebf6559340fb78630f9f502645dc8e7b2fc6f131d6a", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21ebaf3eff292113f2a73fcc1dae876c143c3b42558396361a374621ad38fe01", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbfd388842b887ef10355adeaf926fbe4f582e6affdf1f9990a4da225d79b542", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b9bf9ed9a82cc351e25ba9b2130386be405aa64c403251419b69b63f56d6d6", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e2de31c36d13acd268bc69ea3cdeaf444c39537fd957c0442ef56fae35fc770", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "044a0e13d81f37f90f14aa76421803338be1232607c34ebc40704d271eb006d5", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb9fa2fa6f595bf0458dcc6a29dc6cf884e89f03bb8ecb92e6f654d3411a5faa", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5aa5bac489781e568bcb0010cb2edc74a63beae242ad70805b587d1e9dae3ae2", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b96af23543f0bb1133e414f7336981899755fc303619b1172427ca86cbeb5dbf", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c41776ea40d21369f6d949af019c526997fafadf413ac628cb253f284a4ecf6c", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "299279dac59321de0b80e442b1793c649b29765b02d533742440fba6ccfe5dc9", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76cc6745f622b40517e9df9c519ce2c6610201824cc370cdcf65971922aded14", + "regex": "(?i)^https?\\:\\/\\/jogosonicroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82a88745b6e2f8e0c01de2adfb7e1e95f0a9be056672b90524953d97b6f751bc", + "regex": "(?i)^https?\\:\\/\\/robloxgetrobuxgg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06f1e0f00ee122a5de0452177aeb0d08e1db80197c93ef620ddb7531792bc5b5", + "regex": "(?i)^https?\\:\\/\\/robloxassetfinder\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be25212491a356e38396394fa1376203ff17e430f3129225ac77c8db9f672eef", + "regex": "(?i)^https?\\:\\/\\/robloxassetfinder\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a9fb659433f3327db6bd91e95c35c438ed0ba5bdcf403d9a254943238ceb1bc", + "regex": "(?i)^https?\\:\\/\\/robloxassetfinder\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0524542c25681edf58fd743ba07d038757c949ee3341d11d14b4c9761103d42d", + "regex": "(?i)^https?\\:\\/\\/robloxassetfinder\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "505298a97d9276e8b4e7926a098f3aef4da877963ad21956b15960eda1c33f25", + "regex": "(?i)^https?\\:\\/\\/robloxassetfinder\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "805c036a671ee2ea327f1ad5079f0c371f026af57bb7002fe2ad47db99bca6d8", + "regex": "(?i)^https?\\:\\/\\/robloxassetfinder\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b8ff43f6070ccc22d4fa1596418a883c4ef5e13f362d0cd865135f202003cde", + "regex": "(?i)^https?\\:\\/\\/14bloxburgrobloxdecalcode\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8537a236bcc10150abadae52dfb130a57b0d542bc3400f8b693ae3d8b6412002", + "regex": "(?i)^https?\\:\\/\\/14bloxburgrobloxdecalcode\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ac237e4e07d3dffef7e0edb197959076c725a66c06e6cc8b91278e1ac5749ac", + "regex": "(?i)^https?\\:\\/\\/14bloxburgrobloxdecalcode\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f69cdd6db3d3b7c125d7b78bd50d003e36605d99bfce302cd95a3dbbc1e719", + "regex": "(?i)^https?\\:\\/\\/14bloxburgrobloxdecalcode\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8f03050c38605212b09d86288afa6218cb69b2a08388098552d0bd3b5529580", + "regex": "(?i)^https?\\:\\/\\/14bloxburgrobloxdecalcode\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5ba39e922c076629c8f3136aa7dba2a137e9aafbe872fff989aded507fbac68", + "regex": "(?i)^https?\\:\\/\\/14bloxburgrobloxdecalcode\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78e063ce7406507728e527c0df9b837d3715d322db75ff365c799202a95e19d2", + "regex": "(?i)^https?\\:\\/\\/14bloxburgrobloxdecalcode\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abb10c01c73496e0486dff85ce182b054c8e870d89b20d33e775f1bca0240b34", + "regex": "(?i)^https?\\:\\/\\/14bloxburgrobloxdecalcode\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c930119ef6c57f59edc1262388ffed88aae52248b534034f791ffe2dcb264f45", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7247953b8e10ec1e632d730627b2eddc84ce139422e3377432378cba4f6b5e79", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b354cadd82afa7f9bbd50d7eabcdaefb53ef1031bb312af65b441daf0e893981", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "081da26503c8bbd19cdf934aa0b329244e78a4237b9e1737278ac5769b4fe66f", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d92928b826177d25a38c37b7c74c0de5a4436407d9959ceb0e50e363ed73f696", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d7b24a453d430c7eabce2f4da442e93efcf0b203f9ed7265c1941e45c5ed902", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db18016859a748ab299f18bbef342a01b2a69a20eee6ccb1bd9caf39d65cfc27", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "085ba82f405a20d6ab6aad9d7b28666b2159d19af492fca05e0ed16be13b99ac", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76b21207787b6c44a37c6df3b848740be0937ea8820021302346f488aabeecd0", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0da41fd26822e078f313a4a2b8e447628df228477465fa3e58f8e71a567c7d0f", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e04eeabd868226b7153180658cc82bcb6ede7283a545c4e09eddb4230b10b8a6", + "regex": "(?i)^https?\\:\\/\\/codepourspeedsimulatorroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4799931f97baa1cd717ed3f40f122ace0e12481b073d24003380c2ce86257159", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16e88773b5a71ccbf3e1842252fd471dc0b7141b738779166fbe3fc38c873355", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6209cdfcf0760d0d996578930764e1d4d9f3867d347e04f6537b0ec003dfe0f", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf8507439d5b54ebe570f2d8dc9bc34a8f5c9dd8b2fa85d882e026da94796c7f", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8dbcaeb932597c719d075242e87993be31605ce8e9be00f4ce01d59ffab6c8f", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f62ffe276113e36aebe2d69d2b1fe405fc576d9eb8a59adb2839701efc414ac1", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0baa786af16accb51476782b4bea7bee4e9d6bb3a550f54080354b8739c43333", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "323cff898dce4a56ede6e581a4f06cfb22cbe6633f1690a3231d48c4768dccd4", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abb73542030af889c0e57bd75a95dffc4182abca5ee6418c45c8f3df2385a9ff", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "607b8bd3930c5af5582ac71e977985cca5334d6e71f5195f4c795d70aa36d1d6", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "168117cf833815799d04634f3292ed38ff4880da88fbb0430419cd275ac9fd62", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "921ecc3423d46da543dae775ebbbcd8c021d82d324083a6ed372e984824b67c9", + "regex": "(?i)^https?\\:\\/\\/jogodominecraftpocketmapadoroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ff2516168bd6061bbadcf079aed84eea91d70606b14b7132acfe4a33c3dd5c4", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgameservers\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a895450629436a8e99c213efb064ac24ea7e2830802d8f162fb60060b1924ba3", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgameservers\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39b710db182611917053ae9e8d02ff6b25da80ba43f6f7877779f4717036a1a3", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgameservers\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83fa96e261e8fcd9a181219a450b530d403822fd362d787a25732032263123af", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgameservers\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "833b0fe0c441a2d1848b70f87260ab92a0d90c2717cef43bdf4c2b91036d948e", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgameservers\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f1e7496e6ccb0197a3ee57a8512376639215352b1894458941efaffdc035674", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgameservers\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6132a42886dc9c237288730b0f4c085f14e2831c215e854d931413021a7d7ce9", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgameservers\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20eaa8f6a67e85784934ba8105bcbb8925a469fcf8a4820cc5187fe56bbcad73", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxgameservers\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09c9594b4a6200a68c4b24a470dab046874da671ddc991004b49e8b2e3f569ab", + "regex": "(?i)^https?\\:\\/\\/bluegalaxydecalroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e7d8b91b467afef82bd0d4682c55bb0067ae0d7fc8b9e956d0497e867970848", + "regex": "(?i)^https?\\:\\/\\/bluegalaxydecalroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab6457691de5f45a66b77e048681e8209f3bfc752132768d26c115458fdc7df3", + "regex": "(?i)^https?\\:\\/\\/bluegalaxydecalroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7424fc8aa7caaaee930a6fddb7930b11c9e91acf9613d3324c5b4476a206459f", + "regex": "(?i)^https?\\:\\/\\/bluegalaxydecalroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43f7b8a414ffa0410bc69c683c30a31ba226c13f2e7daf1d2d2492333c3119ef", + "regex": "(?i)^https?\\:\\/\\/bluegalaxydecalroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c4dac479bfb7f0755c085abd7f481b0592b820fe256db9eafc7a82afd01d77", + "regex": "(?i)^https?\\:\\/\\/bluegalaxydecalroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72af8008fd082b2563a3b12aeb6c0fde003b900e1756c91aadb39b4428faa274", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "addb1404eac8532e67ef3f478e8034335e3d58ca4f8e5e1e4bba07e63b4267f7", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b14da00be4f2cb0514ac8980d07472963ad742bad33cd3ab18de9ba134c6a02", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "923aee646451e92e7d72f1425c09f8cae6cf1440fb89dd66a34ba9ab234c9741", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19bfe644071d4730dd242402c15752f7110c199365cf2132065dcb9d5edc1630", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f001be606f6b85d93b45c863fce00403002ce9e296f9d6a37f73766fade90af2", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e12e41e796e3bd1178c6abd83f9cc323f84ee0195f2d56b1f0e80719169b9ac", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d5907dac7a8f307c04be4abd1dc009a5d335e6db134d5c5c0dc9009e8a7a5be", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814ac93ecb98dd1794426ebbbe2c4b152da684ddf29e2cd9bce2c7d8a53e83a5", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffce8c11b6ba54e47a30e5068f7866a732cf7bb422279b893dcc5d751a28722e", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd1e935ffc4a6799c15c72fa9db6d0371a40113a7f393225e8ccb3525b07fcab", + "regex": "(?i)^https?\\:\\/\\/robloxsansdecal\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "396973e32a883d22ff56fb7b42996bc6201c3483811baf6bef8fcd1ebad1ffd8", + "regex": "(?i)^https?\\:\\/\\/comotemroupanorobloxnojogocatalogheav\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f164199483c65626cdf84fcad1b79d27a6be33959308377e2586c92a4705afb", + "regex": "(?i)^https?\\:\\/\\/comotemroupanorobloxnojogocatalogheav\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97946f489f0003ed9cbaf2dec39e2fb6addeb71672cb8c3918a479145e0f5288", + "regex": "(?i)^https?\\:\\/\\/comotemroupanorobloxnojogocatalogheav\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f59b6bd58ee178373f36696e820d3cf938907702aeeaeef7f7071bbedf653d3", + "regex": "(?i)^https?\\:\\/\\/comotemroupanorobloxnojogocatalogheav\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ede6288559d5b781f5f8831f22cc6f8a98fd243a010bbf2c2d4cdacf452a357c", + "regex": "(?i)^https?\\:\\/\\/comotemroupanorobloxnojogocatalogheav\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04be00a7f742bcfb68fe548f0b5601a4f7cbc812b350bc1d77b87d7f56bca4b0", + "regex": "(?i)^https?\\:\\/\\/comotemroupanorobloxnojogocatalogheav\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9a0a18970ac1d798cb3dc2e11040d98a25ecb9d53e51ca767b20d923ed2ee37", + "regex": "(?i)^https?\\:\\/\\/comotemroupanorobloxnojogocatalogheav\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d19af0b7f4fc90afc822be14d4876407911bc11d1ad6682534420f3c3e7f369", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxcrackulimitedrobux\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeeadbdc3b2eb12e95a5a128baf59d636d88d73e6948bba968a22daca7127e22", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxcrackulimitedrobux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a63bf5588bc81c0cf38fc774a0afdd9a9c5c1f4d208e109496fe485f067369e6", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxcrackulimitedrobux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39e249b48274c77187cb44fcdcdbba74449bd03cd22b3585fa42ce371fd35311", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxcrackulimitedrobux\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bef3e30763160533b5d862a71447c7091b8c78e1671f21c5a7fabfd468d130c", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxcrackulimitedrobux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96fe06c4579d6dbafb07d8a9b2da8d0f7eeb7f13e073dbae88728585458ee23e", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxcrackulimitedrobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "574c33447d32295a189db250327580aec3f0a719089d0b6dbbf8f3537239074b", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxcrackulimitedrobux\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814a94b97b406f5fbf575e263171d5ede7973ab60624072208aba0fa9f0be568", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxcrackulimitedrobux\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6aa694208058b576139a9fbb72164f8422740327ba19cfd5c35cfe2a2353f02", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxcrackulimitedrobux\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa8a071bb1e49bde881caf2918cc9ff2954941599909692911290060c8b680d6", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b259ff9f83d44473558c85b8bc3def6f17520b2304dec909b7d879b67fe301c", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1a40d948f49c47bb37a98b8b080ce7f9a85270855e96b38446144f927ed0329", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "479e0b2957c2df8067cfb74b05817ce914e40632d1bd7cbe4a50c235f5392890", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b17f841ec9b8044d0f201bfb44d648268c4cf96e6cfc65c3343a4c8e0e90c096", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47c09c5d03f44f3b20edbc963a31cc25cee6f16d276b67c95970711663035213", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6856d9f2e03e804e3e3b994e93f56054b262efa1dbbef9051bbfe0ff0b27d91c", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abdaf7255a03664c2691cd963977375e15b95cf6d97bf9417d34c7eeab34624a", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db6b4fa126405870fc0ace1a833866d8bb58c0797835a748d5335cdae872843d", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "131247104b3181ae4fa2f573f75c84478a0be3ae7b3c75473232348027362147", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dfdb4061246778eb255112b474be9849cda1a283bc362089c0f50df1fb23e04", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5d3a1ee59e870a0571a5d76c9db413d15bbbac11c31381a0298430a0aaa6a30", + "regex": "(?i)^https?\\:\\/\\/jogarrobloxsimulatordinossauro\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d0c081a1176429fd7cde044d072626f725a3997ed5dead8edb5efa8fd770985", + "regex": "(?i)^https?\\:\\/\\/comoganharitensdegraanorobloxemjogos\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1c0c17e12a6ec1c194bfde2a31b04ce30cf8a6c0ace282090b889f171462109", + "regex": "(?i)^https?\\:\\/\\/comoganharitensdegraanorobloxemjogos\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "401c2267e432ce9483f53676fbd162e8a5b852d67cf58e70eba70a2885e7826c", + "regex": "(?i)^https?\\:\\/\\/comoganharitensdegraanorobloxemjogos\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1afbca3eee79300902183e0009078ae3ad6fdce8e8e044791966d150d5b2613c", + "regex": "(?i)^https?\\:\\/\\/comoganharitensdegraanorobloxemjogos\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2f98bc968bf8798c1aa4f1844298c46669d994abff5cf959a4793c97911d89d", + "regex": "(?i)^https?\\:\\/\\/comoganharitensdegraanorobloxemjogos\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f32c4cb636c0720b99d62ac03bb934ced3b2d0266632de53b768c736605166", + "regex": "(?i)^https?\\:\\/\\/comoganharitensdegraanorobloxemjogos\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b39c522fe5736b05f9b81ee518a334814478260786d9facc84f52f8c5841eaa", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "184c951f7f5625fc9eeb39b12b82291dfbf68aa57d016fad4bac8f6756b5a3d3", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2666c92877c745634f3f5334de8f3f78a7806505b4f62c263377530b0c15e1b", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd16415d8405002b022cce11fd1b313b99905fae79e2fca9167082144a8fa38c", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f414bad791e7b1d1718fccdc486a8f92329e10e908dff25527b028769e1228b2", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33274cf8f8b0409c1208fe9314d47fcd399dc78da34a0a5ae20417de1e138457", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b62e74cdb3a87d00d4a99b66d5e3b0d2f15b00ffcd27a99b6ce2065609d51b76", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a36d7649dd38da7040f66f80a45b35a0b50b08f279b76d45ec5509ff4a5967f", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef0e1defc24999d76ad929add6f77f9867078e66da24529c8fa89cba89569a04", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deff9810141e7716552e2df60ced11d6934c0415094ab5927242da4fbbaaae65", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88189c3520a888c20c5ae24f3dda6f688f533314bb3bc2baa8ccbfcbffd9bcee", + "regex": "(?i)^https?\\:\\/\\/billieeilishrobloxcodebadguy\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d43bafd9bc033cc064d1f6a5b82144a70500fe70b7c1c38c5705c555359b585", + "regex": "(?i)^https?\\:\\/\\/arquivoderobloxderobux\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99bcf751000f30d34a716507632aa6d617ae5ac472a2fd80d36f5e145f928987", + "regex": "(?i)^https?\\:\\/\\/arquivoderobloxderobux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49807c83097fed173abea34c4bdeeb332e03b75040500d6b6f83b3a7a5115120", + "regex": "(?i)^https?\\:\\/\\/arquivoderobloxderobux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab3eb56103464e37dab279778738dda7a2b337b55849af5b48f830ef9c2425f", + "regex": "(?i)^https?\\:\\/\\/arquivoderobloxderobux\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a2d4add1e3055e5f57c80ca7028793a69a4945a01c99951b6c4a95051f1e176", + "regex": "(?i)^https?\\:\\/\\/arquivoderobloxderobux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65552618ddd5f4c6aa8259887def394d55cfad70e73ed4b8fae0fdd4194bb104", + "regex": "(?i)^https?\\:\\/\\/arquivoderobloxderobux\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e26b0f1274221a29e0bcf540f451f973c3215e0e535a55989b9923839960115", + "regex": "(?i)^https?\\:\\/\\/arquivoderobloxderobux\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd9b1199ff8616702b7c1470d09d345b0016ab8627a900a85c653c80d1194599", + "regex": "(?i)^https?\\:\\/\\/arquivoderobloxderobux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac6bf5e44912cd38734071a6b908ad030a320f89258c924fd895af0a8ec94d9f", + "regex": "(?i)^https?\\:\\/\\/arquivoderobloxderobux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b34c7ad8e8868d2e3b44c6542a4985173119ba740d6b562d22616a311d317c41", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33898b01237b665c4138fd49575301b5914ad994ca37940e1298eaf7197ffa0f", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b977f79e68089659a5bcda6174c2ab327d882b7378732c0669997bd5e9fba86e", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23dfd2d9c7373b699119fb453fa10fb907b88a0319bad707fc5e2cb925c09f2b", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c8b470e5aeae4ee7934dcda2a0ebae1b3165d3a8fcb485e4727d090c8a7174", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3442f83d1ea122b52c600d65dcec8b7ec6a7a985b34b479cc5af6cf968746746", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0a362805874f64d8684f43c156c71294d863d203a96b657de9c2ccad2db56ed", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d387572526c2d02366cf2500ae2e8ab29f84848ede66a247345b956fc39ab290", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "876c6b6944ab477dd70589cf4ddfdc57d340a685660163c7a4ddff3a949a17de", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8d1ea590c729a168f8f7af2a29ca097ecc4995d0416036467a175ca40f9624b", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxgeneraror\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ae822a12a69c54f87e9962b9320db445e706654f19e9e183c38c0ba30f11c72", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d5edb9e68329d57fe5021a773d5a831e3d88c27b84e38db15ce0b392b9991f0", + "regex": "(?i)^https?\\:\\/\\/howtochangeyourrobloxcursor2019\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "264edd546084f6a2b578a171dd8fc3dfacb7e2f7010a87df4a0f352c85eaf031", + "regex": "(?i)^https?\\:\\/\\/aimbothackrobloxscript\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f574ce4c7eb4261c9781442b6b1bceaa8967c6670bd1bb57a8f40596afda8f7c", + "regex": "(?i)^https?\\:\\/\\/errorsansmegalovaniarobloxid\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1419356d54c68b574bb0792b9e363bdddb006b002ca657111ae89456353aff0a", + "regex": "(?i)^https?\\:\\/\\/errorsansmegalovaniarobloxid\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50097a5ccfc4891dbd30d519a2fdb6244f93516a9d75024014cfef522146e0e3", + "regex": "." + }, + { + "hash": "b7aa88e9522006360452b61ac023446e022d0f6de8a80a55590d55707be9b1f2", + "regex": "." + }, + { + "hash": "a9c77bd4b81fc70e4776f5d9b0ee35936d365b5f5490a91bc070017d34eff695", + "regex": "(?i)^https?\\:\\/\\/comofaseumjogonorobloxdecelula\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e085ff2ae84154c3474c538327fabf872c808b4abfee1fc60cbb1c83d8cee41", + "regex": "(?i)^https?\\:\\/\\/coderobloxgalaxyarcade\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9584038f7aea38f3c2c9e5698b350636e9eca70ee39f6f84cd6c975620d5f90b", + "regex": "(?i)^https?\\:\\/\\/coderobloxgalaxyarcade\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c83518fe985c1c1f763777704468efce648cf2e4394e1bdbe775c8b4923d88bb", + "regex": "(?i)^https?\\:\\/\\/coderobloxgalaxyarcade\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c5f05a278c513cc3fb97ea43ccd2b6ff8f9e34665a157bc1b754988afab8007", + "regex": "(?i)^https?\\:\\/\\/coderobloxgalaxyarcade\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1165163dae03176d6f72f70c9f2791cd246173f2e33bd18cb684bd8de9ace28f", + "regex": "(?i)^https?\\:\\/\\/coderobloxgalaxyarcade\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d5b21938680bf142c572d6d2bebee6ae95df6a0e4f99e39d21e91b2dc35e11", + "regex": "(?i)^https?\\:\\/\\/coderobloxgalaxyarcade\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9be974a7e8afeb8ff350414ad7779ee65b6be988409807e361e0a8c162ad610b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+BHARAT\\-TASK\\-1\\-(?:[\\/\\\\]+|$)" + }, + { + "hash": "faa22f6a81e96423ed25bd2eb661a29974dde73b489d3b5640303f1aa819e2df", + "regex": "." + }, + { + "hash": "a32490f93054f1b27d6a90e47fff5753a296d1dfc0e95073a064fd4897a9a32d", + "regex": "." + }, + { + "hash": "ee2c65931e759b9608d458c3998c592fd5def48609961ac5dc4604e65d0278e4", + "regex": "." + }, + { + "hash": "e8362c78facbc41a4883ce08266e09bd39faab5a24eede046c6dcb46146f69df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+IGLClone(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8362c78facbc41a4883ce08266e09bd39faab5a24eede046c6dcb46146f69df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FbLclone$" + }, + { + "hash": "e8362c78facbc41a4883ce08266e09bd39faab5a24eede046c6dcb46146f69df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FbLclone(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c89af7d1d2896afe3ef9d5f5d479f80aac234c5171bc349a8b8ba4dd4ac398c", + "regex": "(?i)^https?\\:\\/\\/metamaskssignin\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2abb41b2b0b4406fe9b7767a643ed9c4104f639166135f4263bfc54c3beef780", + "regex": "." + }, + { + "hash": "811580b4348fa2f0b1e5920ea2f1a6f615d67332fbcbc6a9aef41e83bfcc853e", + "regex": "." + }, + { + "hash": "0d0a3a12008c193461eedfe1c9402a186da643ceaca75da4f6c1c1b06c6b1e5e", + "regex": "." + }, + { + "hash": "d0a21cac21d4c765bf3dc9c15b14c66ce188fbca1301c75c56351e4d47d96466", + "regex": "." + }, + { + "hash": "155bc205eee5cf68f5d54613464d8cb13ba6265233f8d7b24df2e70d3e8111fc", + "regex": "." + }, + { + "hash": "8b213932b8fae2e3d41c5c19c78d1a1fd97f964ecb251822940e08e9b0149da2", + "regex": "(?i)^https?\\:\\/\\/samehboules\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99186b6e2c41fadcff05537de65e1fe1f79645b816b934f061bf8a98be09c34b", + "regex": "(?i)^https?\\:\\/\\/sourav416\\.github\\.io(?:\\:(?:80|443))?[\\/\\\\]+fb$" + }, + { + "hash": "99186b6e2c41fadcff05537de65e1fe1f79645b816b934f061bf8a98be09c34b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fb(?:[\\/\\\\]+|$)" + }, + { + "hash": "01c8b4bca35d85b9cdb60d888b0e15e61f9d641c00a41b2b498020aadc50be3a", + "regex": "(?i)^https?\\:\\/\\/galaxybetarobloxhack\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a0f806d1676080c3767247546e9d39d8ad5b99e9f007ed6cce9c2f0a3c0071d", + "regex": "(?i)^https?\\:\\/\\/galaxybetarobloxhack\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26069f34ed64da552f5531887bcb9bd708dec935643422a0f5ffd85aebc00b5f", + "regex": "(?i)^https?\\:\\/\\/galaxybetarobloxhack\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3ca0812c3e3bf19e08e01bcae5b0059ca7031f4b49e4c51ba417a4c4c92a2a7", + "regex": "(?i)^https?\\:\\/\\/galaxybetarobloxhack\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0e194f8f76c2524536de35b0ada34bd09b24c43384251667dbbd2bad1097b3c", + "regex": "(?i)^https?\\:\\/\\/galaxybetarobloxhack\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "470b1fc622a7412be957794d0b0ff62def6823c32243b88187f0bfcbe646a123", + "regex": "(?i)^https?\\:\\/\\/galaxybetarobloxhack\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee5ce2828199651ab41e832cf70be0035ca8fafcbd132f76e2e6689a4ebb9f03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-clone" + }, + { + "hash": "0eefa52c06b547cc0bcc2f7d9c8b882a9491a0c4927aca20ba8ac23d2fb84327", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68f576d9aae11f36de8ff32cd9c519fc584f644bdd3174f1931c0a2cf9de757a", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51bed2c08595db676b3aad680986a7e6da730cdd58eb8879dfbbe2aeeba695ee", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d476a3f2b9a167f07419d20122a1a3abd5438b1db31ebdcb78441fe3c8a87c9e", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "582ceaf37f86ba5345f6eeecda80676fee8128c5eb35993e97196ea4f40ef890", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f214d54a9eb6b193981e20693774aa0b86467f0725ccf1bda22b43a1fdc280a4", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "561e8d90f9374bea6e5606cf51e62cf7a62876b68832070e5856d0130050f235", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bb1e66c1119ba58714f7730cb2751ce42e60da3175ac60c4e315c15f70219e8", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1f5e99a86f02389524eb3d82b197f0fc09372265bcd36faee87a09d138b4c9b", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "066f9d03e3f797fda37efe7d222ece96181ed1b7b26753e49bc8bb4d33039455", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b753872ad76b6da2178b7fbb97f50e30be3177ab32b73676668afc7837930dfa", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beaa79443fa8f005eaab66652f52c2e592fbbd98e99d04c0d03f10414a9a39c2", + "regex": "(?i)^https?\\:\\/\\/robloxhackaccount2021free\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e64b1d17bcd92803d46eec50eff46c35d73a93bd4a6d19446b398b141232cafb", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b35a450cdd2627f3653b80be1623a2304aa8ea73f232420dccbb7dc376d257b0", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "641b544fac5f2bbdacfdbdf2f738f9f1a02e733d32a62cd20d19886a11864fa3", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ed7c8f5d7112ad31917e2f4ff01763e35cc4abfef2637fe22723fb155cfb8f5", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9a791e735d09b459277624f999812f7b2a425883afb64a9db447f2ed0f06e1c", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa1ce5379e0abe61ed9d127e0e19d454c411c29b810911e8bce39fba3e10876f", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b23d90563fc9ae6250e29b50fe490eaf1c49f60a01b75f776a0adf01524ce09e", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c22c49a7fbc4618d4a5f2d0e26dcbdb2cae8d5ffdf1f76d11400855c14408f43", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c92b23822d72e865bb2be3eb7ab129c2031c811f3944f45b31499a85167c7f4", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "033bdc3ea79bfd5951fae0fb29149483f3b91aae8852637e78b2715dfea9fd47", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "923a72e81a170b054768e7af0bba067cc8e175f05f6990db862bfc41a5768ae0", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b46abcbaaa535379e322ae819b2707a5c34299d524056a33e1bb940b8c7e294d", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cb39453fc08e204ceec292ceaed1d7cc5283588e7d7f484bb4012163ac308e3", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "508200e3622e943f4882f14559ee88469887bb25d68f1075b596e851626dc799", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79ee5fb09853abb358aa4e7e3e9a8f4c898b142080d48171b8f828862da6dbed", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a84a2676fb08859537fde54d97473ef58bacaa85bb620f9ef23a3676c8ec90dc", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eb51e18f946649833fe2296ed805b7f6791c63efb75698a047086181c1436e0", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13ecadf4746e082f45f8d1276badf2ca2c5c85876e3ae59ad024f47c7ccbd623", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c718790fe76187adb6a62bae61a2f2a14d207fa447d5b045697963e5536dfe72", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "928eace5891edaed6d1550b73737fc453e245ea7ab85ab19b4061d1afc6071d8", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4f930f8d147b0f3b226c11d4cc1ee4b3c627d30734b007287e88ca7976a813d", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "609a19389d39ccb36a28349485fa26133a909738899ed168eb7928d3702175ea", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "451e3f1a38aadca21858b35959532df5443be7c03bd0bbe06e9a889dfefa5f5b", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf1ad255d449a6e0892bb4cd8db7903acd94425d9bbbb5e6270a4f7b1b55eee", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e66c054a67064590fd3bf2da86a79fd48f0a87f9b546002c46dd9afc40736b34", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df665191e2ee948fc2373b59648823537bae4166398a8169fcca4915f169e7cb", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9b6b371b33bf4fe64720fdd70cad3ca843c65497705bbb167cda999cc2e1a8e", + "regex": "(?i)^https?\\:\\/\\/howtomakeatshirtinrobloxfree\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86f20cb208d1017b8ac0d41785273251933c9e6bda08a52a0401da3314ef0e4d", + "regex": "(?i)^https?\\:\\/\\/howtomakeatshirtinrobloxfree\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0091ff532485f63315110d670d5f8b8a49575f8ee818ee499d86986a56b8389b", + "regex": "(?i)^https?\\:\\/\\/howtomakeatshirtinrobloxfree\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "411a182dacd068fc818f38591d9800dc650a78a653f53e91f9e94ee36aa01e2b", + "regex": "(?i)^https?\\:\\/\\/howtomakeatshirtinrobloxfree\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8328c2b4dc1382c11c58d78b6c5c0b1421aea00359cdb82ce566acd66991d4ef", + "regex": "(?i)^https?\\:\\/\\/howtomakeatshirtinrobloxfree\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29028d4b9c9ad1d3b4a3ba17b87bbbd81c6d19916115e924a52165306ecf0d4f", + "regex": "(?i)^https?\\:\\/\\/howtomakeatshirtinrobloxfree\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5740495cb31ff4cd93d86c0a7670439c0c1583e58fcf9016875642a124a301e", + "regex": "(?i)^https?\\:\\/\\/howtomakeatshirtinrobloxfree\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5534052a222e6b72c749085e03fde66d32d4bf28522c98df3b7b10c7f1f93539", + "regex": "(?i)^https?\\:\\/\\/howtomakeatshirtinrobloxfree\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb2a0f30bf0ba856be1a93fe60bec1692eac769850155fc799fb2694f9db3704", + "regex": "(?i)^https?\\:\\/\\/howtomakeatshirtinrobloxfree\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8f14e83e14b9b96fe43bc97203d64cafe7113caa22c6b6abe9e94a6563b20ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-login\\-page" + }, + { + "hash": "216e506e7a33f939f4c3b7c5ec3ebf8ef50184a749c969225d381bec72869f81", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+optinh9m3lgfs\\?__cf_chl_f_tk\\=Mexdb7bNIWdP1jjYiOHCk_G2Z\\.vMrlMnWplnBDItmdQ\\-1683103802\\-0\\-gaNycGzNBhA$" + }, + { + "hash": "cf316c6f9d74f887d5a76578429f4a9aa215a7e074fd16a8eebd58feaefc66b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+AWoAABXV68YAAABMK2QAAFYyTp0AAAAAsI8AAcCOABjWzgBkQ22RJOcK9qKlRjWs9VEo3o5degAYNPM[\\/\\\\]+1[\\/\\\\]+bSYag1LJ_w6A6760fUfPeg[\\/\\\\]+aHR0cHM6Ly9rb3kyMS5jb20veXUv$" + }, + { + "hash": "216e506e7a33f939f4c3b7c5ec3ebf8ef50184a749c969225d381bec72869f81", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+optinh9m3lgfs(?:[\\/\\\\]+|$)" + }, + { + "hash": "82326a88fb99c0f230a32d616faf980fe136fb9a29f62dca91c11ab43a9e0c04", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+prettypets\\-buesum\\.html" + }, + { + "hash": "0218b12415453a4aca99b7a70194438d5f8b9057c4193ef87d5c053ce9939a93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-clone" + }, + { + "hash": "c7bd163a77fdb3b3be7d31e34091f545a491812cc9eb9d57f7f18bf6e816ce9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+attachment[\\/\\\\]+2298958[\\/\\\\]+KmUCdloQHnPAVbvE4owuG4d0i" + }, + { + "hash": "b81ffacb3aa0dfd3211fa787224bde60095517465d6c82bd9a244f333c82b83f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+800\\-yahoo\\-number" + }, + { + "hash": "77631e4422175e5df46fd3e127cba59dd0c1318bffdc2dbdcc55554f930fe24b", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b3985f81b33393b05e153c0dbc3748d9a868c158799e0acc8f02e850941d635", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eeb845ef814571a25d916dceda8741781cec6709a528081c076d6cfc308f9f0", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e28f36727f6f55b7e5ff2a1c5ec56b90038b0c59a56f3635cf9799a558c56382", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a34dba019c4ddee6e45a139ed748e398cf7689ca7eadf9b34b6112269f02708", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59b75970f7d88870750c91f7a2531fac9490719ec9f53e3f1b5cf1223bbe8944", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d64fe0f1ea5f45340ce3656d1b2dcd65e0281c2e9e79f7446d3c6729f2cd6e89", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3231e13af01cc136baed36873cdfbebf125e05ce5fb2a18e1fbf049803bb974", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "570e5e801a754c88e510edf754373c5c027716f7cf2382921ca96e52e32fb48e", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d5a42aafa7fd3ed69e6645335761936b8d73a650f60825592ace3ee526ab13", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b05dc19446843070e575b5125ddf95477cd1d474411edf1924ef08d1499e02cd", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30f77c627f4699963e06061e5c185ac52d82752512a24b221b1b70810edbb52c", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b74ba76d17d903a7bcb6a50615fc264b76e14bcb8a8a6d9b3cd32cf518be9a9", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e02f7cda433521edb5e97bcba5614702a8f41dcf28a5999fab971f315c618885", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d381b017b147407083a45018934de65d2d5db8afe3013f5998d501bf24686d77", + "regex": "(?i)^https?\\:\\/\\/freerobuxhackgeneratorclub5\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43eedf5bcd161cebbd8abc3b282e5fa4a82fb40fc883022a80b20061a5b9df4e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NetflixHomePageProject" + }, + { + "hash": "5246ce680a7722173000351f2bcc1520fb07493eae5987df97605ca540b210d4", + "regex": "(?i)^https?\\:\\/\\/www\\.kim237icht\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e2517c7c77b3af288821df218d5df7c29a6dd9261d31188c2987baf0297b5c8", + "regex": "(?i)^https?\\:\\/\\/www\\.kim237icht\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbd6dfb4a5efd20a0b75f9679a8a5bf4af6aa389d11c664fe7a5939373d84385", + "regex": "(?i)^https?\\:\\/\\/www\\.kim237icht\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ee9a58ff57f9904dd03752ed66d437a8f5edd51ea16a4a1fbdb0063fa93a3bb", + "regex": "(?i)^https?\\:\\/\\/www\\.kim237icht\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2815dff1bd7390d14ce660729aa3011bebf2a9c2c31c44d1567c0e6205301815", + "regex": "(?i)^https?\\:\\/\\/www\\.kim237icht\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71788dcc7b98e96a9726cdc05fb81f4e3abf2b2a6df3630073ca00b6a0f6e701", + "regex": "(?i)^https?\\:\\/\\/www\\.kim237icht\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b3c2a7537f7e58dcb1094900c1f5e0749d645bd98d4425c7bf5c5aaee9198a3", + "regex": "(?i)^https?\\:\\/\\/www\\.kim237icht\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7e9697ef04649be6433abbf68faa73fd59378b4d0cb225b2498ecab5fa52674", + "regex": "(?i)^https?\\:\\/\\/www\\.kim237icht\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fcd8c5c029a9149a3397612f798b21a5e9972687fb0d72f68e8dbd26995dd64", + "regex": "(?i)^https?\\:\\/\\/pakfasr609\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "610a822d16118e7a481977bc8e711f1b6129d3e77f9cd5c4f59c8a68040a4bc5", + "regex": "." + }, + { + "hash": "a691ad3b94eef536c6d50631fb20db47bb04c6f64e67037bcb01d16b7521c262", + "regex": "." + }, + { + "hash": "b5a5737ab3dc63668fa6832c85417983df394e57c5dff73ecfbcfd5f10c12c16", + "regex": "(?i)^https?\\:\\/\\/shatteringofclouds\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7268018c5980882fc159ec9eeeb9d51aa2ff0e914a43ddb47efd87755de2194c", + "regex": "(?i)^https?\\:\\/\\/shatteringofclouds\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "295095c4eaa8b03e2a3ec7dcffcd7ef89e4704b54d2a3d80362885db325fd17a", + "regex": "(?i)^https?\\:\\/\\/shatteringofclouds\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d414bdd27bc1a651f26c81b1909c894192660f38c2f0734577ef448cefadad1b", + "regex": "(?i)^https?\\:\\/\\/shatteringofclouds\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55d830aa3fdff67318e44292d9c168cf4efe4e6028fbb3941288a2906daae884", + "regex": "(?i)^https?\\:\\/\\/shatteringofclouds\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6422fd0d6e550a6c75052944efd323c85e4a4080c540e30c7e82e2bfa5946728", + "regex": "(?i)^https?\\:\\/\\/shatteringofclouds\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54882826377fc430abfe3f890932b1c13c70804b2e0338be6059040c5e7f2556", + "regex": "(?i)^https?\\:\\/\\/shatteringofclouds\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fb30cf0c194e3c863c68863a5746cf8fbb312340f9a5fa9d2f4196df915dac7", + "regex": "(?i)^https?\\:\\/\\/shatteringofclouds\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f18f632388cf9e1fc39ef1146c6268e1264de187076cf19f4b7a9fe9773040", + "regex": "(?i)^https?\\:\\/\\/karinaomgrobloxaccount\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5c1e56060ac3c0bf667e47bc99f03eaa665666e31569ccd03502290168725a2", + "regex": "(?i)^https?\\:\\/\\/karinaomgrobloxaccount\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bdd707852a32ab86be47b7ff8a677cb37bb5ac7596a83ec43fb0b69121ce584", + "regex": "(?i)^https?\\:\\/\\/karinaomgrobloxaccount\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "779b6e9621422f066488034af98afe956578b7c3b4bf251aa0a0ce262518a896", + "regex": "(?i)^https?\\:\\/\\/karinaomgrobloxaccount\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a2428f9a7acdc84d19b3f78c04560f1be584066fd14fb4817534ad3f9dd8e68", + "regex": "(?i)^https?\\:\\/\\/karinaomgrobloxaccount\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79ce014f49cd1c0624440866020b6ce3ded2c6cb2c600489bd2b2ed593d4dd2a", + "regex": "(?i)^https?\\:\\/\\/karinaomgrobloxaccount\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f04301f39bf84e94a94097ec0f961bc1eae99e8d0af4fbc1f1ec80f47433ac01", + "regex": "(?i)^https?\\:\\/\\/karinaomgrobloxaccount\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73a8d31566934c064daf8396c7d3e92938a0a2d0be892a61251b1cb75a5e8ef", + "regex": "(?i)^https?\\:\\/\\/karinaomgrobloxaccount\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4defa02bd1a39f90a337595893fb2a73328e2df840484f9c6adc206ac36ff48a", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e06295954764628ec75efc2daced2cad8cbfaba6e0d90ba57137007fa77ac39", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2347e945a557b8bbafb8ebfa573364b4e914c5ddd5fd7eead09aff34f991f410", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2f9711f9e5beb5e5f01d94f6350a813865a30da457b5210a327aefd0aaa93d", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c2066f9424f5e361280ffe3071391f8da7d53532f028876c30b83732797c459", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c5b1d67ecdde7abbe08f10a6f5f2d382f651d9640644cc4d7afe276280d77af", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4bf2682c6243bee841a9920fff5dec48cdadc6ebb1c252b0329150373478726", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bb73c688f1c4c3a108bedfd8539e35307f92570ccdea3820a87b7136f0f45b", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f793194f857e233d362cbcec04b84257f565540630a83cf8cdc9fd51af42c36c", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5eea4096856048e14985cfda87c495809c3b9e027ca153a7d56801dbc02ca2c", + "regex": "(?i)^https?\\:\\/\\/dogpaintingdecalroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e65469aaf7bd4bd4f0333b04450bf5a5e94894a6055415a17a7c73b90bc48be", + "regex": "." + }, + { + "hash": "6b312de9d56d1a2f925424295e73a9c4986d1ad3bf121d9e68aca16d1c754a50", + "regex": "." + }, + { + "hash": "a7d7ced00197a350a76344e0601f5456e925544c9d0779455848a8c64a3e3d96", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1722a4510f4a4ca483efe8b77daf3fa47d0cfaa310ce5837e03c8eadf44496f", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a08d2a9c6b6b0d52556bc41ae4aac556aa52d972ff23e3d31cc32dc30fb185d1", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b3265f3710aaf5ab340b5eabc1095d084de59b839d5513c8e6e9d7233ec07b", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cbd33ef51d62518c8b0ea2639f3c4d61c0a287b972ac754d7bd4b22827ea101", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f2a8fc4e1f86b049f2d2348d49dc407c928b553c8539bb53772fb43063f122b", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06596208d3ad4ce3006aed47a177ead6a022752ec3ef018ff43d8e808ebbfbe6", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36db7339e37b5e361e0a47ebb047f02cc31451de03beb5316f7fa6ab98715249", + "regex": "(?i)^https?\\:\\/\\/codepromolistroblox2021\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03cd52993546eb484de34e3dbaf40b4ed4c0f32a02cd8054b5c39cacf4945fb4", + "regex": "(?i)^https?\\:\\/\\/robloxcutecharacters\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7016c2f7b4d5ad2ab2edca411c5dad0531689f17b742c34faadb0c9f346f357", + "regex": "(?i)^https?\\:\\/\\/losmaukriados\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1257b944be13f9a53f58e3d0e6140bf8b7e030f7a0e7535c4d25dab380c18eab", + "regex": "(?i)^https?\\:\\/\\/robloxwebrobux\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf1c2ff6532ea646f99ab9f5b2900f1f2107208474d6d1677ff1da2bd758a492", + "regex": "(?i)^https?\\:\\/\\/robloxwebrobux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "521175718e03b3457bec21464c104e086a9f4c66e22b7c706a7844b54a9a1627", + "regex": "(?i)^https?\\:\\/\\/robloxwebrobux\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d288264735ef5bd1edb21e6549a2787410084c7e7454b91afaf327515260a2b", + "regex": "(?i)^https?\\:\\/\\/robloxwebrobux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "789b9c7e5db1b6ff7ac4b665b1e9739f8b6a55cd7ffac82f008bb2c983953c79", + "regex": "(?i)^https?\\:\\/\\/robloxwebrobux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b90c966b71d4f00c7677f7273f465acc87685d8cd9f14f9bd75d71edd496cbe", + "regex": "(?i)^https?\\:\\/\\/robloxwebrobux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc2cabc917ba83197c13adc8a1fc3d785729c1287c81722dcc2f90f5c7f8d0f5", + "regex": "(?i)^https?\\:\\/\\/robloxwebrobux\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc0c17f5af0ec7d718ccf5527200e48fa984ba1e89a26537d54bb6f54db6af8d", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a22642415a358cb768350f299b56f90b1752f8544ef37b5e1db7300895c40df1", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abfa41464adbd80494ef143b27ff85fe857e4da05f12df8a03026d6fefa74d28", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f7699d6aa50ecbaac503ad860f238df1f00f73a6015abc1cedd5838593c487d", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f9a68e2321f659a27bbb19c4ab8bceada18c77b963e66c16609d0f4df6fb299", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36c3c1ee07fa0a271f57cae06dc7013be5944af2ae6c91fc00fa7b48dfc709fc", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c0995985be1e54aa76dac7943204664ae154f62c2ae1b303c978b60d3ef4085", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3196a6499ccec6b7b2473bac9eff66a6469e5c7d462f3b0970e29c635a643389", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9ce0f00441ea10d3939621da53062c57f4fb65c7934d4445ebd63384b4b9c30", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2117c0024c467297ebcdc0178c9f7ec53f7fa7a5be2de9e68147a82c189d815e", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2df349e876efe28b4d82f7695ddebb1279b60eb93c935d533cd888ca4607d3f8", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0fdfa84aeb544d90c62cd7ba74c8b363d3c7c9a849c4d9f99330f8acf6fc0fa", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3bd0f65109191a20ad8eb132989555a4fb4b87fe3337f38989e1c7f17932e1f", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c467d9fa184e36cbcfd9f4512eb23868d3986ad8b9690031d0b4639a9450a861", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0c811b05e3440b6eaabe7e55cb64c0b9578a80d39fcab7690908ad1cabb7dc8", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4gh4h4d\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cf331531af4b018f7aa3edbdfd5d8ecfb43a90762ae40d237180747ce83d27d", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4gh4h4d\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4f9ab75e27426df23d5e9f015607bc3994b8ec29b791fb01dad5a726e022a3e", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4gh4h4d\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcbc583ab415f6e075640959e22b372247b6b16c6446332e919e36428d58c5ed", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4gh4h4d\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd4efc222934f45ef93583f4aa445af871495d2f51ca62ddb0e8ca11c0656024", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4gh4h4d\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d0dc43c20fbb230c4ef0d9335846ec1b1add057f644d0ffb27feeb6d2cde43f", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4gh4h4d\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cda664e1f103b062e11791a8163d283d31411a9c333a5a223ce76c617cb75047", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4gh4h4d\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7e095fa37945edb5a5d41a52e43d7d88ebb973a8c00243ba1394eb2bfdcbdfa", + "regex": "(?i)^https?\\:\\/\\/5fhfgfgrrg4g4gh\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "100191b5e4f059e4bd2796453cd3e06e33e870f66a6c424ac5af3cf80d1d159d", + "regex": "(?i)^https?\\:\\/\\/5fhfgfgrrg4g4gh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d2409ba7d25ac8f390c34b023bb9c14060dee5dba245b705dc0c7e20a07174", + "regex": "(?i)^https?\\:\\/\\/5fhfgfgrrg4g4gh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d991092a37b87f76f1790fd4d70df6d6b84a4ce3d1a7a4bb65f1ab775f9b7207", + "regex": "(?i)^https?\\:\\/\\/5fhfgfgrrg4g4gh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b3ecee3263d98914506a80fd421e1c4f5e65d4715fcea7d90be4588e8ec2cb3", + "regex": "(?i)^https?\\:\\/\\/5fhfgfgrrg4g4gh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32b93088c4c1997e33ad1f7f7d86fd409c66687efed2e32a2ce9dfa4a56d58bc", + "regex": "(?i)^https?\\:\\/\\/5fhfgfgrrg4g4gh\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16429993461ab7ecaef998f6c9d79071e8aba8bcd47b77ab3104c9a12a95b61e", + "regex": "(?i)^https?\\:\\/\\/5fhfgfgrrg4g4gh\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd6131b1f80be19849d1314e87552901153d255bba2ea157e6d533231c97da10", + "regex": "(?i)^https?\\:\\/\\/5fhfgfgrrg4g4gh\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a060b671d0cb8f90554668ad8729c1aeaca4dccd683d675f2bd1d2aa73946d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+s[\\/\\\\]+www\\.bets10uyeol\\.com" + }, + { + "hash": "19a098c5c8a921fdcde98ff6869bbaea4625894aca32655afe0ffa9df4f58b2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kilode\\.html$" + }, + { + "hash": "cafd48e306c255471a612818c783e7cdee7c730bc680c548b0fa2792de51ceb1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+drop\\.html$" + }, + { + "hash": "22ed68fb71f235944493b5eac02bf9b1129812dcb5806edf993f7b425c8aa82c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dosas\\.html" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+index2\\.html" + }, + { + "hash": "2bdc982ef8e7936a64cdd4c279aa3f9fd9be3086d33b130b9fafa06c2d6a928a", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgfg4g4g4fgfb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdc9fd253d8a781b1fdd1486155673ded91c462ed7e46ea392ea976535c3a108", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgfg4g4g4fgfb\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e12b2ac29cf667841ed0fbdc60c3c8be895826f576a65ebc6e897580d599609", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgfg4g4g4fgfb\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a9daf59052c9e22067fef1785d7d1fda5060a5792e08dc87329ad1147243d28", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgfg4g4g4fgfb\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f44b62d2e72eea22a7031f93bfc291dc76bfa6c361097e929ca0cd4db91dcc1", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgfg4g4g4fgfb\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03c323fb47f4b388ba70292dc6b1a4f5e870400223510c7fca05d7a4e54ed220", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgfg4g4g4fgfb\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb8ef5d1a724196d09b4420ea927a58dc4c1cb414807b9e2a20c1f6a3d55b072", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-login\\-Page\\-via\\-tailwind" + }, + { + "hash": "892d3c2bb87be8666f84f4caf36eb2c92c5629151ddb7473a68e719d6c54197c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-clone\\-" + }, + { + "hash": "95ed9a14babb6bb54604d596435bff424521f38d8156c28dbd8ceec279b22b1d", + "regex": "." + }, + { + "hash": "4a7c192e12f47067957638d36b329e4f951c5a660e16a48b58699ecc02d67e16", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccefadc34adf25258dc70b458d13f3a580558c2dfdb8b3c21a74dce5557d6a41", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+instagram\\-login" + }, + { + "hash": "9850863a8d736ccb5ebc1e5bb8785d3b00fd755efb2f3d29958ff5785cd22eb5", + "regex": "." + }, + { + "hash": "07d24c362a902469f80ec888002c8648d53d360496e9dcf89431637f6a2bf534", + "regex": "(?i)^https?\\:\\/\\/fgjhghjuykyukuioletrw\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a2292aa5fba1ecffdc9393a351fc68c1c497f6d1cd84c7879e8510ce1f308a", + "regex": "(?i)^https?\\:\\/\\/fgjhghjuykyukuioletrw\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4da7cf1f645e7abbd130045fab3fcb79e20cfa08fa934b2c071ee7509ef0a27", + "regex": "(?i)^https?\\:\\/\\/fgjhghjuykyukuioletrw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "603d28602471b96df02d8bf2ea7dbe99faa704195691226f0dc3252dd3d1b676", + "regex": "(?i)^https?\\:\\/\\/fgjhghjuykyukuioletrw\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa4d96a865b72dfa2a053f413c816fd8c817726d0ef96c84b5bddd2d683d3c34", + "regex": "(?i)^https?\\:\\/\\/fgjhghjuykyukuioletrw\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9136413bf80c51c8224b721a5f4b4b23f42aa24c4404d00d73eeb08fc1356939", + "regex": "(?i)^https?\\:\\/\\/fgjhghjuykyukuioletrw\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc78eda8af562776537a8122b05fbececac96a5c45e03c268fb5b8b5b02d6099", + "regex": "(?i)^https?\\:\\/\\/fgjhghjuykyukuioletrw\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3425157b6ef14bd7250e1003afdb12cca9e642009adaae8feb5be644f8a8cade", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e25969d7d42164e8e1bddac2f0e3992674bfb0f53afdebe00861c5292446711", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abda1b96b3d1a0ece533338ea8069c5b54d90dcf46dee109cfc304e0c31bbc7a", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad45ac5efbff11e80cb820422be469de955c8da69bb63f02b63334e4440b402a", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c47e8338244a298701b95149fa4d832ca666c5bee8efd38b14b7fd42baa3c713", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e96cc96fb43b0197d34c7150cfbceb619e6d7c2feeb1f89a21d619a0da70ca78", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49b721199ce8fd50fa26cd56af774d38fadf420d8a2d7b080c3d23de70e2bb28", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "addcbb80f8c39b045b16eedae98be50d4416853a5fe5194748fe2cfa8c89f69d", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1212e6efba2ce7dfb8a6432744b9d0e8c4563f33519196aa2015753ca94ec62b", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2824f1e9ca95ca64a51c95897017ba1b1bd44cb1434e8e1f2812a37efc5c815a", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "586bcdaa879876fa0bbad8ced7fef2936f7a7bf3f084533bcb9b5a05f346c542", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d434320ec96e53876aa8741e797bb74d689e2e9c8b94dce9e2c5fdb68713b7a", + "regex": "(?i)^https?\\:\\/\\/fdgfhgfjhjytrej\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e491e3b1216399d6cbad601c6b045a9caa42998fa2a29e30a5ec3cf98e845e25", + "regex": "." + }, + { + "hash": "c8ab190ef5783874ef069f6eedbb39e79f359479d9137b32cf9d279ba6b275ca", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92ce6a184d8a7aa53e4211770c94ec2e408d10befd1c47157ef6af4ad74e6f50", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bfed7c35a731858d29624578c3ff067034f58979f10c6cada948d75361cfa07", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67718d0bd7a6c44ae6c07f57ca27de33b97bbc40b426433c821f1cd44763651c", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06414741c1fb6858d73a6e7c505d301b9067a6743136d4331d275b26e030686d", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9af7448713d2639c7ea33f093190cb658fb8b9ce5de4cc82ae0e845a0bad24c", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76ab63004e5006a9253f23255578b1404122ee18c4b657d0b791b54f669e1142", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8dd2085932fc6cd1960f5160ea4644d365bb599fce462df850fd056b2c7f8ae", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a66db8c477bd37380da591fd180de992c45fac4f5723992304b1bc72a2ce7207", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71ebbe17067305ff29b75971867c9921e98effbe7d80aea3b96f4479b401b7fb", + "regex": "(?i)^https?\\:\\/\\/oilpastelhacks\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e50549f44280671fbbd077d510c6e94bcd9237503ae26b055eb0e431b9060880", + "regex": "(?i)^https?\\:\\/\\/practical\\-greider\\.170\\-64\\-130\\-21\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "58c0b11a381c9fb10ce8eadd6989df3cbc247d5dfff5c75c274724aff30c6f5c", + "regex": "(?i)^https?\\:\\/\\/newversionmessenger2022sc1911\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e0c1268168a8f740def370d1da1e9ac987759efc7330e4efc56decd110a792a", + "regex": "(?i)^https?\\:\\/\\/newversionmessenger2022sc1911\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a70e352d7f5ce03b4737876ef8575f5b3ddc7671c3fe072f45986b706329e9c", + "regex": "(?i)^https?\\:\\/\\/newversionmessenger2022sc1911\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09bdeffe5bcf6b46c65d4532715324dee2375e4d6372bb5871579480e757d294", + "regex": "." + }, + { + "hash": "fa9ea1f69fef66f4103ebd5b9694f6370ffc36de16775780b92f5ed28aeef75c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-Login\\-Page\\.github\\.ioub" + }, + { + "hash": "c604d1d8d7d6cb8f849095754f9f9fafca2f56f5f6ce15cc73da4a6462dadc23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-making" + }, + { + "hash": "7d47d17ed9daef458e2411b94a7bb59b27d0327ee19e4fc41d224502f132a2e9", + "regex": "." + }, + { + "hash": "6b2172f06ff4d3631fba98be27d3c7a37d1d7dbc5e634b57bcb5868397f8511d", + "regex": "." + }, + { + "hash": "c62e806c623d90ca4fe40c72fa80c40900b598241b507a48b458f6109390c239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.gw\\.html$" + }, + { + "hash": "9a009f55b2a1840d2d9409356f3ed69d1f18f36c35d85059d7208998b54def05", + "regex": "(?i)^https?\\:\\/\\/tyertyufgdfghdfghretywdtghfdgh\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae40436e2db0c172dbf7d5f38c7d4aa231e2b6c718d3e7bbf2ef0de096d58d57", + "regex": "(?i)^https?\\:\\/\\/tyertyufgdfghdfghretywdtghfdgh\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24a2c6133b6b01824b8fa16d5561fac5da456d5a29852123ab5fec6242783d92", + "regex": "(?i)^https?\\:\\/\\/tyertyufgdfghdfghretywdtghfdgh\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7cf9675f2de62dc40ff356df912c6a39b794dbc1aa5e83d06ed210b77253178", + "regex": "(?i)^https?\\:\\/\\/tyertyufgdfghdfghretywdtghfdgh\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "184a85d04d6b4eef7df915aeeef4954548e26df6c11d6fbf807cde6efd373708", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df4552f254e91c9fa5fbe09d1773f4fdaa803f92f51aa6608a153c43bcc2dfbf", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6e3680cb4d56c258a173d49fedeb03b02b79722e090bbd9b060e003d679f278", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e72ecbd6a6d4865435d3aa8c9614178a51296ace85038edd1427413658c39b4", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87a1223495e3cc6c1db89af61a0c9e6b18517fa43814e3c075950ad04afcc74d", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec55b58092c63eb24c8df98f5502a3ac51bf761e195725eb0ffecd5105ac42db", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43014dd389b43edc3880afad7ec43794a989751b33d87361a9e79482314b2f3a", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c01556d371dd33f0118a7dc3c83c93342a6b0566241cfe89d0efe61e312f7ad", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a101923585d849ab2ef38b8be5c19450d3b86c78987404b52fbc898cd86ac92", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658b4b9a9dfcdaeb0c4e4a0aa3feebc6a41606d0e7101de7c7e0634ca745398d", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1859b37b830ebf1a886cd8d405f4b488b0c13b16cf858b554ec3f68560f9184", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eba37b6331090af696f3c4db261f3682f7dc123e276f11a38f4c6d33c116a575", + "regex": "(?i)^https?\\:\\/\\/fghdfghertyrefdghdfgdhj\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c4815e76afdaaf6800fddd33b5b46d218b067ca75d2cd99d4f5f030a415d72f", + "regex": "." + }, + { + "hash": "cf06e9213e8a3fece3c81ca4900a3a54679e1bd2cfc798a86681320aff39936e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb5609e0a1d852a0c2416fffd5775f3498ec78e833f81378d745da76e48d453e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "78d552c3a6e9259935dd530084d828ba045732d2a0deae0480dc516c20bbacd0", + "regex": "." + }, + { + "hash": "26390b3b109d54253881555d2d164462d34662ca0c0652198f9e01d951b6bf11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffbfd1f4de527a93a03817462e4ccadb1d8789cb12c123417006d0b8e1009d4c", + "regex": "(?i)^https?\\:\\/\\/smartmonitorassess\\.webnode\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "642ea120c48c0ca227eea04c66144692dfafbe63b1d565ec5bc2733d0d000dc1", + "regex": "." + }, + { + "hash": "018f5526ed76dc910ed88248ce34a52c4c50488a66a5e8e23b9ef87c4995560d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd4d2a7ed92b52cf9274161903b439feb228d9daa419e760872a22488721202b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b16fd5a59d5eacefe2a2e7b2e4d0d3c6bbf02c6d20a46f40d1777466fdeacf92", + "regex": "." + }, + { + "hash": "ff042e2eb660e831b585c7b83960a8027504ab6ee8a55b9675cb70acaaaf5831", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "85c9462f6c7dd5335a0c497bb86900c51e4cd5f608aa94ad4c255b56dc1135fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d39b9fe18e5786a1139752a4b708a7ad322033c55db08836757fa14a1b35483", + "regex": "." + }, + { + "hash": "f7a0cb4a1da2f8adc1185c23739e8b961c73480668392838e6af2273b3701d88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff042e2eb660e831b585c7b83960a8027504ab6ee8a55b9675cb70acaaaf5831", + "regex": "(?i)^https?\\:\\/\\/c0inbsaeperologin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdeda3252ed012f245ec59e8077af56a2c82f2daa9e078867de211af1265ef33", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8a6b0d9eb06e5345aeae56909d90aab09c7f52980a6860f086bb5172a64a454", + "regex": "." + }, + { + "hash": "fdeda3252ed012f245ec59e8077af56a2c82f2daa9e078867de211af1265ef33", + "regex": "(?i)^https?\\:\\/\\/crakenluignx\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab41f21a1284edaafb93a366653d29419ca0bf065eaab7e460c9b1bf6218214c", + "regex": "." + }, + { + "hash": "9ef0e63181a0dd5079ea1229f5eaedf22b98a55222997465db84ee6c205e863b", + "regex": "(?i)^https?\\:\\/\\/support\\-metamask\\-iou\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9670b388fcdadbb493c3eaaccc00150714438c1e5311b4d0f22669f07ae8ba96", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4976ddf7b59272483798ff0a2254b7eb8e9acafed6f7909366638e9c415c7c67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "02d20f62cefbffd2ccf6cc25d1e65b579c5921cf32481886d7bdcc85a3279d81", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0100a26cbcd2f3ea98a5bfee2372859223de63f2442a716b4f4d0daff9df67a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "83beda7f8bba55e370622dacf1a2abb99518b5c9ffae206c75f32bbbfcc06933", + "regex": "." + }, + { + "hash": "02d20f62cefbffd2ccf6cc25d1e65b579c5921cf32481886d7bdcc85a3279d81", + "regex": "(?i)^https?\\:\\/\\/upholdlog0din\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01c88ca6bf35dca26bdd3838dbab2a6f6987affe727476ea3f37a42feb6e0625", + "regex": "." + }, + { + "hash": "3b86bd890f2b5faadbf6462ff021af9028091105776e0e7251447f4a84b355bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "39b558322c767407f7ce5c2a4a946cce3e4c70a165beed35320506b626cc4511", + "regex": "(?i)^https?\\:\\/\\/conbseprozlgen10\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "577210c8c33558b9be17e544ac9ba26aaf2e5805bab3fe45abe33df9923bf2e4", + "regex": "(?i)^https?\\:\\/\\/conbseprozlgen7\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8748065ad423dbd9580ce6514d9e5810f7463c342cc5df7f57e42354a6f8f5b", + "regex": "." + }, + { + "hash": "f7a0cb4a1da2f8adc1185c23739e8b961c73480668392838e6af2273b3701d88", + "regex": "(?i)^https?\\:\\/\\/matemcsklgins\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99e425a888812f311b654062c3f3110adddf1eb5a67d8da0a2a8676c37287498", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+away\\.php\\?to\\=https\\%3A\\%2F\\%2Fwww\\.bing\\.com\\%2Fck\\%2Fa\\%3F\\!\\%26\\%26p\\%3Db1685dc2cfed6c5dJmltdHM9MTY4NTU3NzYwMCZpZ3VpZD0wNjJhZmU2NC0yNTg3LTY3NjgtMTJmMi1lZDQ3MjRhZTY2MzImaW5zaWQ9NTE1Nw\\%26ptn\\%3D3\\%26hsh\\%3D3\\%26fclid\\%3D062afe64\\-2587\\-6768\\-12f2\\-ed4724ae6632\\%26u\\%3Da1aHR0cHM6Ly9sb3BlemNhc3Ryb21pbC5jb20v\\%26ntbLVE1CWy28\\%23bWFydHluYkBjdWx0dXJhbGlubm92YXRpb25zLmNvbQ\\=\\=$" + }, + { + "hash": "0c202cfcc038d886cc63db358ba2416a84cb260836a3c805d323bbb770f888ac", + "regex": "(?i)^https?\\:\\/\\/appleipad2colombia\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8c32ebf65189f36ed97d43cb5445567892c1c98db2d8c68576222af4c7f58a3", + "regex": "(?i)^https?\\:\\/\\/fhbrtedfhbgrtedfgbrfd\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dce627f8c0bc4d2fc5a462e6424761f68478403b269234893ae09bbcdd2f7daf", + "regex": "(?i)^https?\\:\\/\\/fhbrtedfhbgrtedfgbrfd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae4fd38c15da793c77681a2d34013cbd276773906e339755d04981c11acf15c4", + "regex": "(?i)^https?\\:\\/\\/fhbrtedfhbgrtedfgbrfd\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbcf66ec02703568fedb469e3cadb7c5662f4185a321c3603038826de0e47732", + "regex": "(?i)^https?\\:\\/\\/fhbrtedfhbgrtedfgbrfd\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c521f07b68cdfdc524f0859fade1a0d953188209c6f319a8a0d48db589e1ae", + "regex": "(?i)^https?\\:\\/\\/fhbrtedfhbgrtedfgbrfd\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffcea930cf1df480aff0ed9b090c2011a669368329028fc75d0f60deaee8b8d3", + "regex": "." + }, + { + "hash": "8c216b0f733dc475e7b0fdffba3302526e46c79900def8f1000e59a1e22ff1b1", + "regex": "." + }, + { + "hash": "e01e3c679a3ca0c00f0dd92d0d6cf78339b700ee52a9ccab4fcabccc5cf9fd09", + "regex": "." + }, + { + "hash": "9041678db9af513c97ba28fb880ac8ea8eb9c641c96bad30998f022b32230d1c", + "regex": "." + }, + { + "hash": "cdaecfcff2b5b587262d9c6bf5102d65f96d4c2a8a50210e519f888cdab6a63d", + "regex": "." + }, + { + "hash": "1516498e35fe8c024d90615cab32d2cb7ddb46777b190d505aff5311a6a982d2", + "regex": "." + }, + { + "hash": "7189e4ed765b02ade58e4a389b2e3d44759172c39fd099072b676e9c5e1b8d8a", + "regex": "." + }, + { + "hash": "96a4e501195582d9bb8e6116933c129fbe38d6130d086fc53d7585a12cb6e2ad", + "regex": "." + }, + { + "hash": "f07f7d32761bb4a49216bb2a0a896357a58c74089483cda247af1b5cb30363ed", + "regex": "." + }, + { + "hash": "3e1e554777df215b39612fbe573c5cef28018c73f403abffeb8272cdf88bd878", + "regex": "." + }, + { + "hash": "78d572598adda2fbf7d555d5c6f174f3a796eacadc4675c287214a51c0dadf2b", + "regex": "." + }, + { + "hash": "19a14f83951066824028edc97d9a4160c62c0e9813b23f5b4cd3f9d976a89e07", + "regex": "." + }, + { + "hash": "99adc0a5e14485ba2d712801407a6660aecdf4756f7eaf723b81f0cfb135797c", + "regex": "." + }, + { + "hash": "09a496685c2ad40924c87956df6bdc8ec0b65e6226b0968b07c8f129b43310b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook\\-sign\\-up\\-clone(?:[\\/\\\\]+|$)" + }, + { + "hash": "96b17ce3e23473e4bac34e8bb2ed2061dd1731da3ff2a389db16966f524c109b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+OWAOutlook\\.html" + }, + { + "hash": "d0434fc7b0589d9cfe98a40275b6d8b426933d651c07de3f3dfdb032b817f117", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b1ac13b6e3355733d139c1909698793fa38da488b8e4b60b319c44aebf766f6", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fc1e6dd98af8bb1eab9f3f3907ec07b177e61304bff13114ca32ac85b77efeb", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2215f47530d49e1c4a0c2881dc3216e2a4d2c3f0cd9cf68b3d434a75f28f06e2", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a88470c43c6f7caea62f2269a7d95ff44f31b8113c818dce3a489a52a1c354", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c033fb229768672f2dc217d89ba614d3987849dac1fc29813b35ea1b2aa35f5", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "995df5b8b57a0cee1d1c2dbe2016193f00abea0563ad2a7b9e673e242c2c49a4", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c89f7821789abd6167bc3d24c08e9df5f0d4582a3502c6fbd71a8987dffbb4", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b0352bebaf19126e2822ff462076d223dfddfe90544740dd9ae9954a2314aaf", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c008513fb6295a9c8a90be0558f0247ef299babcc59e8119ce65ab4423851d9", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc4c171aca68db4dd2f282ddf44f38c8fd9263c529a0dc362fe64b68dad792d7", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c4554e0a596d9ae9e7194b6145770498ed48c8fb7ea6837d4d70cd05f1553c1", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9eba4866c1f87171b41932ec7fe8e224dfdc150326ba7ecc0be5d7fa7789072", + "regex": "(?i)^https?\\:\\/\\/agirlmys\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d510f89253e964c87978663444fe68afa76aba3d526baad470d3e9ad066ffb42", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bef33145f10a4bbb9b519c65e095441aef64b6cd320067194e9a39306ed4f324", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d511a37626b218b8b962348609a8718796702072779ad2af5d9e93b358e694d", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1be03f58eb938051b9ed8c974cc290d1a01b8028d1070fc9171e08da18e08704", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01489094cff3e997712827b5428ee1923c54b9fa67fe558ba9016ad601f29e73", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a85147f3c180c266b1e615745e6d5ef61918f889e269ce7998409213dd9c3fa2", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fae221021a91926b1c6d616d5e51a377350c551ca5cc219237ed5670b6ab0791", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa4881f342b8afee4c8936b1966fab102e661569af9ae1602c6d76376c068282", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "897a6877129b64e8f42f35b9c7e01cea8808de41c5c291a09e096cbae2f3f794", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03d50b9823f57bb4238cdb7fdf63faad6580567b2be331fa06d6ed83891dd21d", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d0b40a975d52a0400af11b967bbdc9ae66115208bd732f5b697721c8ca89827", + "regex": "(?i)^https?\\:\\/\\/wowgaiviet\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1be65f291b23636ea3b1d5b9ab92626dad1c3d5163cca9464f86251f9c126e1", + "regex": "(?i)^https?\\:\\/\\/news4rbx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30292d7bad8b1222731ab3e79342d84d4ac1c934b2f0315e2d2b6fa1f48cd678", + "regex": "(?i)^https?\\:\\/\\/news4rbx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d45686e3408ccd51130eb28ca540617b1161e060bd01510014d1cc3d3746878", + "regex": "(?i)^https?\\:\\/\\/news4rbx\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c207b56b6162be373acda56679d978e5a3509d7c7d1a15fdd3272537a62aa9c", + "regex": "(?i)^https?\\:\\/\\/news4rbx\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4b6596b8eff02df0ef29c595cbfc5a7f2db0332b1adad8fd97563cb82049318", + "regex": "(?i)^https?\\:\\/\\/news4rbx\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed0ef9ba71df032818e326745ca179d9c01ee1ebb84c60d92d893a67dd72c43e", + "regex": "(?i)^https?\\:\\/\\/robulux\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03284e405e006723775189bef100825335bf18173f59f1f31f6f6c4b59165c6f", + "regex": "(?i)^https?\\:\\/\\/robulux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5ec65f99f494db0a9dcf64054a2d492e1984399095f21f3b5040916c213a1b4", + "regex": "(?i)^https?\\:\\/\\/robulux\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df1a6b9e7d026a898f1457435c849b7429e188728828ebfe97d9144b4cf17408", + "regex": "(?i)^https?\\:\\/\\/robulux\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ca24a6867d2c686025d8d5d04231af00ee541abcf6b5e5fb6f02c85e4c45a2e", + "regex": "(?i)^https?\\:\\/\\/robulux\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "083099814b7a31af2696929358cc64ddb4a7f908406a455a60159a92a9d434c8", + "regex": "(?i)^https?\\:\\/\\/robulux\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2cd0160a7e31f49285f52b67270b614690a62a347b5a663828c895dde88cc53", + "regex": "(?i)^https?\\:\\/\\/robulux\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58b01c1f27a0bb7cc52149db26a925dd4dba133d74180d8dff41f13a250f6394", + "regex": "(?i)^https?\\:\\/\\/robulux\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42da45823f771d30ddd88b161ef311715093c22804e925694db77a786a409c4c", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab3cd3a37f61590ef93183f3377fe525dbe5152edba0eba06c12b2e739cf594a", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e22f2757011538e040affced5a28dfb377cd5729e0757c408c6ba233a63cc55", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dbfd45f28e786a0972464ed338d8de8ca2214c99e6d33f9b6eb0c7d8a7c5a87", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89ca773d52a75969c9b739730cb3bc0667b82aba4de7c631944e34411165fbfd", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8bf2c9f8637288ff1414e62de2478b28db61aa730bac62472b460837ba8eb6d", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8378921594ed2b746b64aa2249d9c65c2b27fe8f8300d436ae2623abac6bcfac", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edb2ed07cdc6753d0206e81dce7bb0ca0768a097140530c3d9589354ac3f6c75", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d333daeb017fbab2e6c5b7c07c33439861c1ad614b636b902c46fcbcbd3ee92", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab88435ed842c9f422a1003b0278a91af4b3a380ba8aaca597863d9b1ef04a9a", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9afc60eaa7a111ef5dd938fc35c4f861657c909b6f516398e9cb0e9fff911e94", + "regex": "(?i)^https?\\:\\/\\/r0bux23\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "674a7fdaab304a24a6f70987d5af5a672afafdb278c7335524a9b208b14ac99b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bthndrmn$" + }, + { + "hash": "674a7fdaab304a24a6f70987d5af5a672afafdb278c7335524a9b208b14ac99b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bthndrmn(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c53d22f0c249831acc80b6ff239daa834483ae7279e030ae5922390bb9aff2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FB_Login\\-page" + }, + { + "hash": "2baa388b9afa15e4732d865d06b3ff991bafda5125c5c6d6cc0f77bd355b1edc", + "regex": "(?i)^https?\\:\\/\\/gjokjiuhfihji\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b32da5208daf4f9068be945ffc37e816c8df383ff1fefe7d5b79033398a500e7", + "regex": "(?i)^https?\\:\\/\\/gjokjiuhfihji\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f44482fcf2b24e0208f1eab3c361e00401cbe7226358acf5fa0ad42612e5024", + "regex": "(?i)^https?\\:\\/\\/gjokjiuhfihji\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6616fdd061d160f281a2c9b0f15ab0257eb9c8f6f4747103b18bcfe4ecfedf3", + "regex": "(?i)^https?\\:\\/\\/gjokjiuhfihji\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75e287d069a6724dc34c9abe7c377c9453c42f5b2b8d30caa7a4cd0559addb87", + "regex": "(?i)^https?\\:\\/\\/gjokjiuhfihji\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0247b10b978bc278dfc55e923bb401108778d2749336347a8c87c84597d8e17", + "regex": "(?i)^https?\\:\\/\\/gjokjiuhfihji\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52c6083e3b0080576572ef926be48f46a5d5fe947a6903824fc678d9e4de1185", + "regex": "(?i)^https?\\:\\/\\/nbfhnbj\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8948d3083a1725354adda1dcfe0e85cb581d95ac01a0ccf86d32133a1c629f14", + "regex": "(?i)^https?\\:\\/\\/nbfhnbj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b584cba97be06173741ae34ab3fb3758dd581661a9b1331e64f8dffc0dd39c86", + "regex": "(?i)^https?\\:\\/\\/nbfhnbj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa6f5073ca65bf3e0328f29df89dbd15742b7d95dc48ac399f41d682f0c16134", + "regex": "(?i)^https?\\:\\/\\/nbfhnbj\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abb16b5edcb2a997bf073d2f99aa9a73c6d3f779e0b5a8f84c7d20eea592dfe2", + "regex": "(?i)^https?\\:\\/\\/nbfhnbj\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2e0c7a290ec7c4debe6b5f60fa1842ebeca615b1c6a447a0526d12942a235bd", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b15edf2decc5a7d387fd41522f82a5d9dced7025f03d279daeea2fee206f3bb1", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9a34b50190429fd10933147953c3cf32bdcb07cfb97a207bac08d69e5b53028", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0127337f0ac16e65d3c76de1f6fc12e872302b45c9eabf8b95a695b1f8acde2", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed30baab450262171ff97cabc4866c935029e4751886ccc73dd4f3a53c80f9df", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0d402367677fbf7b6fe108984e77bc21052cbe5f686681dc7f1bffd8555521e", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f287cc35badf1421a13b43bb3116a62bfcaffe5467329d5bdbe1047972d0851b", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f76941e0a51c2742cf625f181b0b6fbac3eedd80cd5b30c8bbcbc3ffeb79747", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aad23dc6bb4dc9989604cbc950234bb4f7aaa2de952504105988df1d3a575557", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80783f6b53e532863ad0e96e978c5bbaf6dc59d0722494ea4b5d6c809530e7b0", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74e60f4334cb9dba3943d937867d64d72173e0979aa3858d8f0cfa232cdbec82", + "regex": "(?i)^https?\\:\\/\\/gjulifyjeqdrft\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a68b8ddfb81d213c8dc424a7e5a58d4354985fbadd886623ce97cea7ef6e35f", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46bcfb3c1d3d0677780bb8c758ed1d9c2e4e641f7973dc98e9c1a8c3a565e142", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e357b00a50d7500116f9c856e7b3b8ad3a4c4d66a92f4fdb9f3a1c30b53547a", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ad56465ab62e50706146453f3e5f01c42019860d08513a7a05f85d85605cee2", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "835c51dcd01291ba48c95d9f734d526c01ebd5f95caf440d2b8f8b7dc63045df", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb61dc7302db196f7cd5223036cf9fadbbf4c29e98ada949b5df008ce43831ce", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a7e4a2d54739849d5086af12b8c4d691b82ce0e610ba6020280721cf5d2900c", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b15ebca72688dd66eec22bfd9c3cd4bb532fe3ff50e8b81e59a8b8b2128b7e62", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce1ae380915bbc047758e3bf4f8491717e11770390757354f53db99743c75fbd", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb9c2e8bc74d9280f63ec6c9ec25ba1e9a32b2545341ea6a3f29c48ec3b494c2", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b817f8eb2f95d80ae659e923bf806299cfdd34095d42a5fe3ab0b188b9130d05", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fb2396cf10cea7457f1ce436ee497f7c6cbe5ef4387ed6a3d22775f6fb70b1e", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdcc8db61ba1aca77fa2edfc6ee7b8f7afe4d886d1685a7a9cd1fcb13057122", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1331f883c29c360a2e69aedf6221a42942294f91e3a6ceff5838a98453c2602f", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99ad0472d3fb547b0fdfb875f372c78e67030a3fad9f9353e0f9a25a3ded8627", + "regex": "(?i)^https?\\:\\/\\/xhgyfjkhutws\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70de61c1377990a61de49158b35655b296447f47d6f8b7a0aebac08cd5a13aef", + "regex": "(?i)^https?\\:\\/\\/fhkghdhgjb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4ff6afba48114e0f30f3a6ac41a4c43ef00f9326bfa9bda0feeb366f82c4144", + "regex": "(?i)^https?\\:\\/\\/fhkghdhgjb\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e155bee1dcd6a024ce08c98abecbb63996ff60286b09d6718f1ff84f25111c38", + "regex": "(?i)^https?\\:\\/\\/fhkghdhgjb\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b44e3abb2cdebb93b13e40a1323cc5971b381850a362a2b994e12ed4c8c5343", + "regex": "(?i)^https?\\:\\/\\/fhkghdhgjb\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5ce79ae23643cc4c4698cb9e227eb9ecd3309b36d0c98e6c237a9691127f551", + "regex": "(?i)^https?\\:\\/\\/fhkghdhgjb\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "651d67bed2e4d7f41d8512166ab2a82775c2a577a10803b26aefc08c11ad86c8", + "regex": "(?i)^https?\\:\\/\\/fhkghdhgjb\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8ee7c5c8739b88c484a953c0ff5c6fd4dc3537e0f541e9c124efc78454ec05f", + "regex": "(?i)^https?\\:\\/\\/fhkghdhgjb\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2db19a50d00e1274a2a1831e275148e762cd327b95cfea90bf592e9f036a1f23", + "regex": "(?i)^https?\\:\\/\\/digyrteyrfreyf\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58210e900bbdde503c247a8c74f0ac689ec29d9315b8bab7050a1fe25cfa8718", + "regex": "(?i)^https?\\:\\/\\/digyrteyrfreyf\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8fbe34b69f72ca622edb8df480f28832b6ca077aed799f27e5874e2ee547329", + "regex": "(?i)^https?\\:\\/\\/digyrteyrfreyf\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f3121f6d29616ff13ce51a711af0fa73929694cf04de873e03830d4cd6847f", + "regex": "(?i)^https?\\:\\/\\/digyrteyrfreyf\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d07571e83d73a46ac9baf23c42b97d9dd7de4e8cb001bc4963609ed1639e22c5", + "regex": "(?i)^https?\\:\\/\\/xcvxcgsgsfgs\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ad6e27a0ecf5bab524956dfe2e87cf261bdfc20e0e3cee0248d6ed7c0e5139d", + "regex": "(?i)^https?\\:\\/\\/xcvxcgsgsfgs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f30640f6eef058e977e12fe94c7acf0b23a615f250256934ec61621a0bda3321", + "regex": "(?i)^https?\\:\\/\\/xcvxcgsgsfgs\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "862f009d2d3cf2411c170e0c2368a96624b2d8ad12b1ebc555b74cd954a35706", + "regex": "(?i)^https?\\:\\/\\/xcvxcgsgsfgs\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7e0158689144798d4d999e2c0dc6358de31d9324f892918b8bdaa9dcac087db", + "regex": "(?i)^https?\\:\\/\\/xcvxcgsgsfgs\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6533feceb0fd603b8a923fa0bd2c4422be405dbf0d3e48456f80b09ff2701b2", + "regex": "(?i)^https?\\:\\/\\/xcvxcgsgsfgs\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58e40eb44cb331656321ece886dd7d74c0aa0a825f1884b591fd118196562f1d", + "regex": "(?i)^https?\\:\\/\\/xcvxcgsgsfgs\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97da8b340f651fa7822997a4003ba93889ff10d0cae7f9c4c163d1fd038c5251", + "regex": "(?i)^https?\\:\\/\\/xcvxcgsgsfgs\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99fdf3242dc2fb6608f4618739f4dadbf2ed4a1c0a4c45a95d5be07577433b26", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8429e390107927578e6dc1b3515c1e0af4772c76513cb562011cfa897048aa5c", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77207f69bfdbb9fb93692fd3ea4d5efec841e5b1dc307e5e03a58b32ae1648bb", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c2a06bc385439340152467964eed23abde59fe1378fcbb118b57ef6723c6bf3", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c9cbccc07aa43ae3a521d7ff48a16ad0c041501ab0151e0ceb82e02af0b9527", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10a12701d730f22e4e60d3d2a70673ab8fcefb0c81903a50c9950367d02cc1f3", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfeeab4baca2b532148cb507052860cfd25c7f0db99439d880241d25e189da57", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c891f72b4871f9c03d1971255b30ff430bdd8e6609997e97eff0d2af908f4820", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99ced49abd279d5cb1710e685efb641d764e543efca1887cdcdbb44b09340eea", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "495a99aec0b1e38887d473b8a3dd5b9868a7a2aa738a3bb93e8e1bc17f3ba31a", + "regex": "(?i)^https?\\:\\/\\/sdfxzcxzsfsg\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ee13b9d62f32aa39a78fa5913ba2fe39e88d384f26980cadb81a463c8cdfb82", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbaf23c12b307bba98c4dccb863593af315bed47d8c69238f5db7665d9b8f355", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ed715e8fe73555a75686a19a380a6c07031e5414f482b572f1a03aff7b9abe5", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5de87b78a1b52e871aa988951e06f1c93eb1c4d4529904f99d40c9a39a2deda8", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68602bc6d38a3d9a5364f81378b3406cd20c1a30575ff7203871bffd84f4a075", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4ee450a599938fc97cca82400fbc3a3380ba84c3f0e5086f87f8302d85d746d", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3af9eedebc3c24e14f6cfb541feabceae1f06942bd4c4a2150e8999d6ee6366", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30d6b56a5fd1e846f567cca1d0bacb130a3e51ce746f8babc96f98336a7a9044", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2679a7d3887a408431fd641f090355c666b649d38c8f20eed5b1a881f1d02b81", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4c141c83fe78cc97eb23109f22c31cae160265157ca325efa10646bfa7d991c", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a2e9b5a149e11b14e3367ca286848bdba6584e41ded636cc6c641e79be3d17a", + "regex": "(?i)^https?\\:\\/\\/sdfxdfzxdsdg\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e49ec2269faefec4d06d4c0a950fb38e4facd5486412bc62c38297d45df033", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae004f7989e5a33b3177e61000c502411bb82f49b2ed609ac8e251a3b38db9ec", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "902fc11f5682cb411f47e2f75ee25ddba0448b67f276db4cc4e2e66c335cb96f", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "353c3f7204b8859b231f1b9cfa5f1ee69c4cbd0948d52896888c4e4bf2505bad", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386a94da167e4bc784ac7ecd000b41b54aac8cffe19d7500b4918e705aa89940", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dfdae598655471091f9dc983b11b6af0cbcb00383f3a468295bbdf8504196b8", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "549c24d3e120d16dc8ed319b85bd2e606017cbcd7e338f077b180a8148771395", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "011e2f81f64e9de271e1cfe9e95dd73af4245d667649a43a8adb23e7ea8b6e65", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83ec6cf939728af3b15c3730c2bb0cd1f5c38f09d38f80895ce781bc89b46695", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12c7f1f863db33403a0a40235e0f2ba7c0ac1b1f8d0493ae0ce2e580839031b7", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8298363de794d34cddd585475bf7adff64810edd8e6016ff3f40f7ac5eb1ba1", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c67db9ba7beec51fa899566a05e1b3da3b486da24c6209fd5d7aad26ef441d63", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55b0db253e34ccd312724b6da00e3ad236ca0dc78964caddaa35bb40b67a6ef0", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx747\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee3db0ed90071b57908f64d65329bf67d97af37351c131bd41cc244f96d38e7", + "regex": "(?i)^https?\\:\\/\\/linkvideosex5236\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f0965f2ca3616fd11910d4700936987380362897dcf9d6b4123ef20e53c4797", + "regex": "(?i)^https?\\:\\/\\/linkvideosex5236\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45e75b3642806cefd2509a9dc4023fc6abc1404fed091ca57be9b4e1212ffb7d", + "regex": "(?i)^https?\\:\\/\\/linkvideosex5236\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "941da27410af108a4720c78f0bcafc832bdcd6fa87ce41a6d91c3198490cb69f", + "regex": "(?i)^https?\\:\\/\\/linkvideosex5236\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "246dc27874fddf157260d2e276e5fecf2b81294246c15147684a175dbbc1532f", + "regex": "(?i)^https?\\:\\/\\/linkvideosex5236\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bee154b97a8ba9e67052f62c0388507dfb70b939878cfe8daa29a9c712a7bce", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx65875\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3473b63fb7979b89ffc160ecc1c3f7473e4af5654547235d4aacc3d431348095", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx65875\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18449e68cc309eab04c854e4d5155c362066480bde392cd2b3fae964a2849a90", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx65875\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ef95b5e2074f33f5f772a3f1edcb73671ccf1b05fece79d1f097b992e329d52", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx65875\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb545c20a8550936763861430bb71e2831a1b30a46231654a7118fdc1bd1eabc", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx65875\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "476181868451787812a6f540a425c56cc40eb8c5d2bdf67cc2f1b396d63db4f7", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx65875\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76dcd58b70526639e46f9a9620e9f352e828902654ee39e2742996b01045dafa", + "regex": "(?i)^https?\\:\\/\\/linkvideosxx65875\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2c27eca80fe3c0d4a6394a718a02a885b3329620ecb94853fb766f413de988d", + "regex": "(?i)^https?\\:\\/\\/fgdfhgfhfdgdfgfdgfdhghf\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9d84da18b1dd15d0bf731dda0def79e8e21c5ac0b8f6a30e2a4dece81eda019", + "regex": "(?i)^https?\\:\\/\\/fgdfhgfhfdgdfgfdgfdhghf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3cdbfa80297b208c8e831901f293ddd0c758d14e33d8f9d34b8080e63509925", + "regex": "(?i)^https?\\:\\/\\/fgdfhgfhfdgdfgfdgfdhghf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3caeb009bd3eebf63cfe34a805cd9d147b467b74c8df3c91c4613231215ac0ac", + "regex": "(?i)^https?\\:\\/\\/fgdfhgfhfdgdfgfdgfdhghf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dba2013256c78216469c87689a165857dfa3831f5e6682bd21be0a41a997362", + "regex": "(?i)^https?\\:\\/\\/fgdfhgfhfdgdfgfdgfdhghf\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "845da1f1a9f439fd808cf8e7ee71713d13d488e9002e3fd608481815eb257e82", + "regex": "(?i)^https?\\:\\/\\/fgdfhgfhfdgdfgfdgfdhghf\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f01c1f0b15d3953be26c4e389ba97cfebab8a80089fa527e043bba4f5f1bd97", + "regex": "(?i)^https?\\:\\/\\/fgdfhgfhfdgdfgfdgfdhghf\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5798d14b39ce241d642d5d91af9b5fbe720ad1c262a14bda5f07cae07c6b9734", + "regex": "(?i)^https?\\:\\/\\/fgdfhgfhfdgdfgfdgfdhghf\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c885c90a30498a412a8f1ff7fe8be14a0c114ec83a0d439d78f12d69df4fe5", + "regex": "(?i)^https?\\:\\/\\/fgdfhgfhfdgdfgfdgfdhghf\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63adf2fceb7a1723aadcaf259093f51c3759bfa272c287be2f2d49a8d66ae3e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "51926447d3c60ec4a2cb0a1593fb53c0e41b89cbdaef9c197a4e1154512c67fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a4d487c50395c1943cffae25d8e851bab0ced70f42302eb751e422888fac94a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "26b495d46108a632845cd29cbe5d603bd955880213a6ee3a5e2a0eff3224f62b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a10fbc7f4c1bbcadcd6d8835776800718caaab24f5da704c5831344665ccd0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9aa7cc628ffaa3e2eda0d27aaf945198d3045a33a3e94da187f734bcc9eb2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3c265dc864c528f2c804ca35945d4e81351e8e2706b18a92fc1ff37a82a2738", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7329a9bc1d0d27fa8ced035d7876333ed7ce06230c7a0ba8069dc3fdd6a053b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d048040cb8f4ebc23ad5105a7de708803e5a4d30ce89899ad37cff18b11a6c87", + "regex": "." + }, + { + "hash": "e818ac150f5b4bed8faac686b254f94897ded170733845d8d9d955214ad216ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "00bde47cf8857d79584e78e365e902dc28afdf1d089e9aa68d584be8b4530a18", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a654d72eb2acb25095048d43dfa1085cd58b0c0134346a14424c588670e0a5af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad9faaf7c878446fae9029eafb779de30386330526863a70c3eb2f74b94bb685", + "regex": "." + }, + { + "hash": "f50cf9b31b320e499b5533478da5064b0d4107e6cf5410ceba8b2802ad68c2ba", + "regex": "." + }, + { + "hash": "d47a639a737cb4d3c7e55e519af8f8e9ac44765fd5cbe9b13435525d5c8a05b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "7a46c3b2036c9dbd1d9722db37eb27d420c24ab8df64d62be90bea668f4cf2b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eef06fe00d2b1af692d7fc88d4e3944c239a254d0a6e574277727b813d2f65a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0255e4b39f383c29572fbf9872c2df446fd128271863b38c32aad581560bf24f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cee0c40ce83dfcfed6cb6ad9cd042b7a35fbde559146f94e10fbeb702d96ed41", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d67dd48e992edee9fa3d4f9b971fd1edd3e6627671c05f90aeb60141832ac190", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "77d2e96130dea27ea60185e1a3d238805bab5204661fa3fded8e10bff85b6bb2", + "regex": "." + }, + { + "hash": "86c27cf813d3626859843447f8ddfe991308e31809557d830d3d303955093162", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffe2e732d8340a701c177281b9b52e2a0172f17161de073e62429b5dce1da0c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7d18e866a59c01e9726c2fb3e216ff2c08593be8e0218fc99ba5c5778448134", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2f544693ff9b433cce4511b91cb33dd682debe32095b029cd03fa4ec3ec583", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0709456c146cb4fddf1d45904178db3eec998cdbf84f920eafafcca64820a70d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "532302a272642489e541dc241f59646f5dd40c32ef6b745e6918f115d46e69bf", + "regex": "." + }, + { + "hash": "e818ac150f5b4bed8faac686b254f94897ded170733845d8d9d955214ad216ed", + "regex": "(?i)^https?\\:\\/\\/coinbccxeprologio\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7da9daaf2f570f2d04e2021328259d3496765d05ccc97a1a5c51ebb8440f25db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb3a7f35b9bc233b67960233dee60808216ec70377abea9c2deb991748fd529b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "8434b654e8ff18cbbdf5675cce5448c98226a2a8d188d6ec7f9991d364fc09bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6e6a101860004317608fe4cf8bb1a662ffe0c8c9bf3ea4eb6eb402b943d8bbe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "17c5dd38e54430cb58fc4c689fa826df3fc2a52f5c840cdd399efa6ac953475a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a10fbc7f4c1bbcadcd6d8835776800718caaab24f5da704c5831344665ccd0e", + "regex": "(?i)^https?\\:\\/\\/metmaskslogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca1de80ae7b262d77b41066c782479acbf80b0d404a563b788dc64a95670bf89", + "regex": "(?i)^https?\\:\\/\\/kuucnlgen7\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "724839a6005b4a00e435056c28cdc1e1b796c588d40dc5e0ede05e835107d281", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b57c469b4bff15775adba5ad8e86075b31398694e545444cc7e52e59b54997df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb3a7f35b9bc233b67960233dee60808216ec70377abea9c2deb991748fd529b", + "regex": "(?i)^https?\\:\\/\\/gemnivloiginm\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0255e4b39f383c29572fbf9872c2df446fd128271863b38c32aad581560bf24f", + "regex": "(?i)^https?\\:\\/\\/coinbsewcumlogi\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7da9daaf2f570f2d04e2021328259d3496765d05ccc97a1a5c51ebb8440f25db", + "regex": "(?i)^https?\\:\\/\\/uphoiiudddlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78c7de3c1a0c5dd1d852c828e1a67d7203c3b2c2e894ea0ff9170d3f0ab208cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd3a572ef7e672e9e386a1639e3f0824f4d6f5362f2635e3852c5a15451fb06a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c80a87db1a227953f63e1b174347980c1173f260e1046d2013bac7f1b5440a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9d955ad9c30782156f975f76608b647f335d124077cd78b3288bd65641d59e8", + "regex": "(?i)^https?\\:\\/\\/kaocsewoinlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14865da582fe0a158934e28757ba17952d8048d8387b9d61efc54d5afef39d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6e6a101860004317608fe4cf8bb1a662ffe0c8c9bf3ea4eb6eb402b943d8bbe", + "regex": "(?i)^https?\\:\\/\\/kuckeunlg\\-ne\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3c265dc864c528f2c804ca35945d4e81351e8e2706b18a92fc1ff37a82a2738", + "regex": "(?i)^https?\\:\\/\\/krakenoeeglloin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a443ab594893ac18b75ffa48a24356ab56d8fa76cf906d50ad23a0c637ed4a39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "92036da1a9876a12f07bc26aee57ca8b2f4d51f7c6eeb89027dec82d90f28c5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "494382d5eb38a73f34fd733ecf35db27ea281b5f72c0c50f771af2facf4c28c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b013c1952ee592ba0c3bdb625b53c564cc8c2a273b041fb8c37e7dd1df2f9bd5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a61883fa685afe89022b33eed6e8bf43ce9e3d7073fd5acc35e7df23be02e10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a24859b38d038bf9de8d7b0c8f0025bf2997355be9dcc26cfdea608118f5aa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7329a9bc1d0d27fa8ced035d7876333ed7ce06230c7a0ba8069dc3fdd6a053b6", + "regex": "(?i)^https?\\:\\/\\/geminiloguis\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "034f8fd5d2c607a4602c2ac39d1eff44b29808063c78dd80e4d2dd542f0a08c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c55b543105ab750d39f98890bb794ad40deb0cc8ddd47719d24b80a77a8fbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "85931276f74679f428abf63967677860ac98e8209b1edcbe1c3796b6b6ecdf33", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcba23b5dde7df90b17b8d5550a7d70b9eebe5ada56c1961ad4373a402d5e5d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e3e0358a63159925d1c5f414ee1187ff2414b0a7cc63962d6dae3c9453bc269", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+investing(?:[\\/\\\\]+|$)" + }, + { + "hash": "976062cf501c633e2c002057ca6b73adeaec2a82d9c727d5c7c72f6d9628573e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "513de72526a794588ba3a17f023c4c0efde8f09d8fa8c2558a963f28968fec35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "814679de729be9934c6023cbd5c069ddfaf74f324de396f3d80b2d15edab5f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d70c2a6e24e55b07a8b1fc496f0ec2ecfef0f6946e485e45d6e762a23549073", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b57c469b4bff15775adba5ad8e86075b31398694e545444cc7e52e59b54997df", + "regex": "(?i)^https?\\:\\/\\/mctaxaskkllogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "377a1c118371979a1b95ac9d44340fd589426ef658b9b2f1aea6c27a5e2ed031", + "regex": "." + }, + { + "hash": "4415f9f7e22babd8f4f0db6d891c1026b686f97db3eee76880cd39fa5d1bde36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "de5f1ed4251f5149ab6aecf1bff4c7747713a62f9d0d0510ed8d6bcb002ee809", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "807934fdaf977384a0cfa9d46617c1e70ebf3905dbb6446d100c672ac64f9cb6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "89a996e163b1ddb85e1934b3f28ef0553009787fb8066702d584aa9775e9c1ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d71333ea9f246a92bedfb8db24b99e0db65fef7d38ce095a22664b33d91c8a23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "868db0246c00c188381efa4b7d241e92d84e3cec9e0848808f9ffae0841c18bc", + "regex": "." + }, + { + "hash": "ad47c8434319415a7440588f3edacd5ae93f62bb5184bbfc880181b3f4555747", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a58bcce534de07a7b8890a19a3c0dafcafb6d78ca3cd5113e99a0849ac8c8d74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+untitled(?:[\\/\\\\]+|$)" + }, + { + "hash": "0100b9b36e5f9fb3d139ef89b1d31b8d3b1dc66007a9ee3081665e84a7789074", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ae436e7a2de8ae2cb2abb450ddb43fe3a92bbec90efc990108fb72f02802389", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f41bec751546c8e3ebae1ef6ebeb1dee4540e9ea18d56f154004e00fe98e9cd6", + "regex": "." + }, + { + "hash": "d089a74bafb99ca223f7ac8a5796af7450af22d8cfeec52ca15c3acfc32b3810", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3be377124e98994e115f2e6ae5ba6185b95176659e25dda8ca5e9c83e7988bf2", + "regex": "." + }, + { + "hash": "c34472ee126b37e456a00b34d1b0d999f671f753a6d95cb6c73c1f45300f5d36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c278e233d46676398ddbfe09d317b56912e57f4877d4c185ad1a571f633e56e9", + "regex": "." + }, + { + "hash": "46bcb2b8eecbca38fb67b1b6d0da5da91d01c884216d51b7dd74998a81583ef0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c55b543105ab750d39f98890bb794ad40deb0cc8ddd47719d24b80a77a8fbf", + "regex": "(?i)^https?\\:\\/\\/coibsesxngiini\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c2048c09db0ddbaaf5654ce236bea4d39809621b10b7715d786ccae489e9570", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2b1bce5cae2479b6db21b2a8ac5c4d2b9f50f773d8ef412c0a112855d3aeb57", + "regex": "." + }, + { + "hash": "1e1718e19cbebf199089093db8b4bccaf5b1ee78d1c89149bee6604d20f70778", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b62e2292d3ce8b627e7943fb5aca26bd8e84afaefbd00045f81aecebacd287b4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+in(?:[\\/\\\\]+|$)" + }, + { + "hash": "92036da1a9876a12f07bc26aee57ca8b2f4d51f7c6eeb89027dec82d90f28c5d", + "regex": "(?i)^https?\\:\\/\\/matamuskwillet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70bcfdae0510726835e1f56982107f1c3f470749f378a71613baecbe6e9e252f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9690b8e732ee2faf296aa40cae46c3b2476d4afb9ca1ff02f49551614c5d6947", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bd1da89f1a5e325790e5b5f9da63bb1230ab6123f653a9a9aded4cd1f5ddb10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "21ed8c6cd8a5bde069f16d6ed56484cfe2099843fa0ed0e643055c636b8007a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "85931276f74679f428abf63967677860ac98e8209b1edcbe1c3796b6b6ecdf33", + "regex": "(?i)^https?\\:\\/\\/c\\-bascoinprologinus\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2f544693ff9b433cce4511b91cb33dd682debe32095b029cd03fa4ec3ec583", + "regex": "(?i)^https?\\:\\/\\/coinbnaseicomsignvn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28e799025f92b76d3fd07d33f12ce44952dbbd95b9301bbf6b98d92342da8c57", + "regex": "(?i)^https?\\:\\/\\/memetamskwalet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d71333ea9f246a92bedfb8db24b99e0db65fef7d38ce095a22664b33d91c8a23", + "regex": "(?i)^https?\\:\\/\\/coinbaze\\-prvo\\-legin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5faaa79bc62015a5f133d369a0c2888b85311b9dce90ea1274d276af82b8d41", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcba23b5dde7df90b17b8d5550a7d70b9eebe5ada56c1961ad4373a402d5e5d6", + "regex": "(?i)^https?\\:\\/\\/peentm\\-walet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f0a60ef238f0b80afe3c4bcc2427f7f3b881963851a16bcde8501184717b624", + "regex": "." + }, + { + "hash": "494382d5eb38a73f34fd733ecf35db27ea281b5f72c0c50f771af2facf4c28c6", + "regex": "(?i)^https?\\:\\/\\/cainboseprologgn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21ed8c6cd8a5bde069f16d6ed56484cfe2099843fa0ed0e643055c636b8007a2", + "regex": "(?i)^https?\\:\\/\\/colinbaceprologm\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e9ecf194706a8f6ef46de541daff6a1e648003f72fb36eb19793a2ad520b0dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8c9737da1f364c6533a84a5cdc42e442bfefefcc0a37303126eb86187d4eca0", + "regex": "." + }, + { + "hash": "07b0256f7c292e0d41d3151393b81ecdea3704e2e995354b1b84ff37cf5f3202", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "13508f9c643805ea6993b6386f67787f0019cbb83ddb1d5ca15f9dcb8895b074", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "8715c017873e89253ecb329443541e8ad9572b209bc1b4ff91596d2183af37b9", + "regex": "." + }, + { + "hash": "776026d3c6430d8448ea0822e124bbeeba6c64a3868813724937522fc075e1b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a4d9ea8c017aedfe91acb6a8b2a42ff3b1438f28ff06684d1baab8e7a8ebdb8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e10c3f5a6734b039838f783af884c1679c1d9a4bdb2fe78c5f28058601e75b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a90e47fd41daa84a2e6065b53788334655eebbf5938b3e5b45094edaca9b6f29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "02553a8a51af4fce180ce48c681eedf3d8408cb2323deca293974c51abc9b9b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b9a45b0a6a8dcb21a4aff7d4ac03c3f1e16854a69f9154687449b7baee5d62a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "52b05dadb050553f0ccc5b8815ba320eecb93bbc2570553d25fc2e2f73e2fb75", + "regex": "(?i)^https?\\:\\/\\/coinbisaeprologiin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62a05ed6356559ebd46ca921d07a6aa05803f6a7482daca2357be83f54dab5fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ef434c47c100d8d98292798ffdb5076030fcf6330d97da862b0c37bdeac0ee2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc98198b8ac3793aca9f09ce41a19a0bbf8d701fa38aa164763124ddfe98c3fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f84c6b2e110b6baba11e4f0664ea8e237da92794f96bb39a6f67b13c701eecaa", + "regex": "." + }, + { + "hash": "ce8616f04a32e6a5671a22be60536b3a6e307ad5174f0ed01687129d3dee2444", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9acc61a9f12a8f69c2e8f1b44819ea60a87713988f655909f4609726273c272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4cbaa14afa687acec3f5ddb4acbe5b08d7587c21ceeb4ee26e7a6515df73191", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "54f6f379066f867481cbf925819ac2dd8b34e15239e1099c3e70e0110b0257a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0ca016b79fe82ad938b9fe32db2769f1d4aad2851b7c835c782fde5b71adf10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "724839a6005b4a00e435056c28cdc1e1b796c588d40dc5e0ede05e835107d281", + "regex": "(?i)^https?\\:\\/\\/logoncrolingken\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a61883fa685afe89022b33eed6e8bf43ce9e3d7073fd5acc35e7df23be02e10", + "regex": "(?i)^https?\\:\\/\\/cvinbisefcomlrgin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "814679de729be9934c6023cbd5c069ddfaf74f324de396f3d80b2d15edab5f1e", + "regex": "(?i)^https?\\:\\/\\/geiminilogoniu\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0989887da1eab0f7724ee7a1aaca060e1aee1e568b69762be67d6aa16d3f03c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb228514869fb3af206e84ccf4521dff19606f97671bcfa89c4740ec965fe797", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "587f83433329f3524949d5151c69ca9e986c90fe5606f3759f0ac6ce2f674209", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "25f7a02da603e54ed1956198baf37a394287502f1c5c7651048e3211107f6f41", + "regex": "(?i)^https?\\:\\/\\/matimsk\\-logi\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7fc5d1b555b1fbbbb2bd790fcd9fe306e903e00d04c73d56299de725a96c07c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d402a97c4eb3d64c2a1935dd2cb67dee5b011e1d7376cf84635c4c22d6202c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea08ff91235949287dddaeb6051c86faf2423007f3a56cca608465225e02ac98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ae8650edfef7fc5f5fb769faf37b65278efb72f09da9cd527fda253904b6483", + "regex": "." + }, + { + "hash": "cbba6084b5b446604717dc0937a878f5aba7e44726602b2dbee040d5a7ea452c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "23ce31ea46809bd8fdc9e0cd9a52575200e2012d0b1d27cb7603ede37addb265", + "regex": "." + }, + { + "hash": "3a8425546aab1e51c513d1a82370ae0bfb18bb673314cef8b7a8e29e8bad0bc1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "93a5a251eb897f59cc12fb523bc5ac6819e78bf740be8caf257eab4e2fcb141b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "329d7741ec1856c2da97e1a176f3c69ac6e4d4e8fc435682240d0eb2411a85d8", + "regex": "." + }, + { + "hash": "35b6780db3f36c0e80f582b8a61da80c2d52b4cc05cd90e0117ec5f31b4334f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e1718e19cbebf199089093db8b4bccaf5b1ee78d1c89149bee6604d20f70778", + "regex": "(?i)^https?\\:\\/\\/meaitamusklogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e645c5d79992933e48c9db7cf80431bcef5f6e5af9917d2be52de6fdfb68295", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "92095a6d6841ac5417dfbb3b3295b2ab280ca7c0ea07d03ac2f4eb2cfd097c84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "199d57a335f967940d42c4f9963d7a6c23bb0088a5d6ba899ee6143e6525da99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "15c657dc18ebc6d19dd69fa92d198d235bdfa1c4be4a2b6a37d257bca375efc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "24445ca27c8aa8ca12e3e2c2debb34aa14e5d1b96ed73a35691a3a0278a390c8", + "regex": "." + }, + { + "hash": "d88d715a82407ce487101682dab89ccd45ba6eb89dd2ce3342f81c142ccb89e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "94f269fa4c0dca128f6d0b1251f0cd33881c7661d9d21df1080732ea561a4d53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "777a9284dd7b2cba17286ff4ecb963573a4ffd46c32b1585598ccec4bbbad246", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "56a88c622bdbcd23df5bf02b9a5669f376af5e0f618688efa9da5a92833f3f3b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ad1eceda6d130008604cfa7a4df9f35e631e1ee07efa833069c573808f7783c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c55b7238e6de88dda04ba6d98d6e9e922225bfc7e783f0a9862a7ce39763c32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f1be62cbf31f08d622489114a8341a912fed71cd2bfffff748714ba48365124", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c00c0dbd30bdf72a6cca7e2de8acba74853c085eade82e6c501363301ecd0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "646144f05726db396fc50d85129d89916896d860cd578d5f37ef0da380951bca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "68210c870741f3e3e7881dfa28e35c2605232e354aaf218fa54ea5181b831aba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a733b95171b9a41f4673f7721e04e610e46de81457414431908ffcbeef8b1a68", + "regex": "." + }, + { + "hash": "66e1d24422a2a43af93501916c413b779cc05965f3d8792b9e3e1f01c370642d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "566afa31e4e7a1317f00ff79c39e7d3067b95e67ece4a5d07aaebf945c21ca66", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "64d16d5ff344fe457c97d3efedc36fff42a7fda7f6d4bbc32c9cc2911d584f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "77b526e5231165e0271d47cec87b5ca2fbed1a0d0ab813bb61517d7732fc0086", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4a1d4b2692810a9a5284764ec58731f32cc960039c9af6b9b2b4a767d03562e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd78014cfc30e72915fa4e60928b79013351eaf12352adac7fd98d089f988fd9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "07472024a0db9aae5cbe6987cfc00300d3e23c5079afe91b42653295cd9853e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4891e1294fb114f2bb17877affc3dcbeb34703f47020ff6d080bc6b35e0f837a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7e0b4043a624d3651487b004b653774028e4680825ce275e0ff7b80e84f47c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a49ec4a64c538a08f99c589ec808536d3d87120020bd1d25c811c08744d8643", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4da8295ff59490a409825e4ffb2f2535ac3a88e4730d340da63a1f33d8ed96a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b446603f241484521c45458c5af5f78175ccd1613168f22d445cc36f09b5b2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf258f4006085eac08f046e744fb937aa56c29b0966a8a1c6912e316c04e1dd3", + "regex": "(?i)^https?\\:\\/\\/mitaxmaskweletlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d59fec4599a7c4c88da3977faf4e3b17db4e7141604d50926562a2714bf2be4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5f0d1cde723aa3e0f48ea2a47ae727c9db86a7f9e0ed85ef2e8323d13ed1fa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "eebbca8b549b4f28ce37435921ef0c08827dadd9b0a174af47e8c79cf720630f", + "regex": "." + }, + { + "hash": "ad47c8434319415a7440588f3edacd5ae93f62bb5184bbfc880181b3f4555747", + "regex": "(?i)^https?\\:\\/\\/conbayuesignin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01e20093aaaeb48bdeb606785650ee1ec9f0891385157527addde15b08144db0", + "regex": "(?i)^https?\\:\\/\\/geiminii\\-zlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f0a5f4f6387b67ac9b43a9c2b640bc58decb516440e0cf811d197cdcc59362a", + "regex": "(?i)^https?\\:\\/\\/mymetamskwalet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e9ecf194706a8f6ef46de541daff6a1e648003f72fb36eb19793a2ad520b0dd", + "regex": "(?i)^https?\\:\\/\\/conibsecomlogn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33654116400d6df09733b16a16ba850a6b568ff84c15c7dc4cb8059ca0ef9632", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "63fce062da03dbeb637081de1e67c7111982905fb4fae8802765f8ae7354febb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d23d8de380650357cca6dc854d7fcac9c757c01eeb38790e7dc39b291dc4ab51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "35b6780db3f36c0e80f582b8a61da80c2d52b4cc05cd90e0117ec5f31b4334f6", + "regex": "(?i)^https?\\:\\/\\/geemineilogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d59fec4599a7c4c88da3977faf4e3b17db4e7141604d50926562a2714bf2be4", + "regex": "(?i)^https?\\:\\/\\/couinbseprolog\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e10c3f5a6734b039838f783af884c1679c1d9a4bdb2fe78c5f28058601e75b1", + "regex": "(?i)^https?\\:\\/\\/atmicwlltio\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a90e47fd41daa84a2e6065b53788334655eebbf5938b3e5b45094edaca9b6f29", + "regex": "(?i)^https?\\:\\/\\/kocinlogincclogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec033010f664a38fb7984956322e6374cbaf63ad58375b9586c6316c7056625", + "regex": "(?i)^https?\\:\\/\\/atomicwrallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56a88c622bdbcd23df5bf02b9a5669f376af5e0f618688efa9da5a92833f3f3b", + "regex": "(?i)^https?\\:\\/\\/trsezorwalate\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a4d9ea8c017aedfe91acb6a8b2a42ff3b1438f28ff06684d1baab8e7a8ebdb8", + "regex": "(?i)^https?\\:\\/\\/karkzeixnlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc98198b8ac3793aca9f09ce41a19a0bbf8d701fa38aa164763124ddfe98c3fa", + "regex": "(?i)^https?\\:\\/\\/trezarwallwllte\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93a5a251eb897f59cc12fb523bc5ac6819e78bf740be8caf257eab4e2fcb141b", + "regex": "(?i)^https?\\:\\/\\/gumenniloge\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce8616f04a32e6a5671a22be60536b3a6e307ad5174f0ed01687129d3dee2444", + "regex": "(?i)^https?\\:\\/\\/gamunilloggi\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a8425546aab1e51c513d1a82370ae0bfb18bb673314cef8b7a8e29e8bad0bc1", + "regex": "(?i)^https?\\:\\/\\/coinbxcseprelgglg\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ee143a33a44c77ce1e61dd03ff5a12d109d1d77e4a124463b60762fafdd29ac", + "regex": "(?i)^https?\\:\\/\\/coindaseprroluon\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0989887da1eab0f7724ee7a1aaca060e1aee1e568b69762be67d6aa16d3f03c", + "regex": "(?i)^https?\\:\\/\\/cuisiensbaacosignin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63fce062da03dbeb637081de1e67c7111982905fb4fae8802765f8ae7354febb", + "regex": "(?i)^https?\\:\\/\\/maltiamsk\\-wallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e1787902ab59bb51abbcbcfd9c9afdc8ddd99e2ef8d55436c593dbff77d560", + "regex": "(?i)^https?\\:\\/\\/memetamskextension\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c384ea8b87b5a7a5fd63193efdf950741087b1bcd2f89b0d85e3c691f8d0aad5", + "regex": "(?i)^https?\\:\\/\\/metaymaskwalet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0be17da83c7105adbbcdce7d986b09eb8197ade57bd401f6c7efc349115493b", + "regex": "." + }, + { + "hash": "fb29967e064149dbcbb32790d27ed704ccd888a5a53d0607035a2951bed30de5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7ff6e1e1d7d12d277a3ba1dd2d4d4d223bd97eaf4bc81b12d2070095a82ac6a", + "regex": "." + }, + { + "hash": "00ae4393a4246db087e4dcc206aac23e6ea248712fd8f260998c814d1554fff4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7aeaa17770152b8b5f7e2d93c9d6574e807c88a5015d6a15ad16f59ecbeaf1e", + "regex": "." + }, + { + "hash": "1b9a45b0a6a8dcb21a4aff7d4ac03c3f1e16854a69f9154687449b7baee5d62a", + "regex": "(?i)^https?\\:\\/\\/coinbsecmnlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d88d715a82407ce487101682dab89ccd45ba6eb89dd2ce3342f81c142ccb89e9", + "regex": "(?i)^https?\\:\\/\\/uphodlyrgin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07472024a0db9aae5cbe6987cfc00300d3e23c5079afe91b42653295cd9853e7", + "regex": "(?i)^https?\\:\\/\\/treszoriaawalet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "631999d9c650e5b6448ff18808559cbfa0498bf9a1d558b84bf796c48d09975f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "490c3b9235726deaeef84b4373bce6f1dc22a340089fd6add8937d7f9343acf5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f822315614ce544340c60fa2590755b947a5ce2ad2a9ccbca6b561a231ab95d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6990e1f920b8441b4bbfe9af05e80eb2b885d380b7cdc48649eb34a93d6a6a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "02ffa1dd880164d8cbd7eae48e0ef8e41e63ffc5274c42dff0de1e62da9544da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "916e876961634af807f55ed8f23201bfc500d18eddf5f1a3c94f9f66c0f845e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "64d16d5ff344fe457c97d3efedc36fff42a7fda7f6d4bbc32c9cc2911d584f48", + "regex": "(?i)^https?\\:\\/\\/koiicinglogidde\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7e0b4043a624d3651487b004b653774028e4680825ce275e0ff7b80e84f47c5", + "regex": "(?i)^https?\\:\\/\\/trezrwalltt\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c00c0dbd30bdf72a6cca7e2de8acba74853c085eade82e6c501363301ecd0d", + "regex": "(?i)^https?\\:\\/\\/kucoinloginao\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9acc61a9f12a8f69c2e8f1b44819ea60a87713988f655909f4609726273c272", + "regex": "(?i)^https?\\:\\/\\/metamis\\-kugig\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e809af828a6875ec139e74f9b125be06998cdde095bcfd64985147bb6abe10f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ede6ae9104592889d63219066f7d2b7383ebf855f9dd98a17de70eab6f9e7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f2c7d9b14182be604e8421b897f8554bfadf852eb9b6aa4dca85d4ad0a7f613", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c9682eea67198d02d7bd7460a8fa73a3b60683c17187b772aa6e9436df8fec0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d1c79931f3439127af41e315d7848256751036aad623af8eca1b1462cf8bdd3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|$)" + }, + { + "hash": "e26a15c407fd91ab9175a5e932a53a56b8f46ae7571ffb294dc5fa2540735428", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "03657032ef7bc2e82fcc0d22df78aa828931ca7a465f21022fa7f16abceb8977", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "835949e08c6760aa06d4ae8cfe2aa682e0db23f7d1f47d24b5b588b80953a0f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|$)" + }, + { + "hash": "192674baeedefc435b6dbc973ce2c5743e0cefbb04703d5f2f2d23e299f6794c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bbddca9363850c685d842d77f9f71f84ed21dfa911ac033848665ca00b9942a", + "regex": "." + }, + { + "hash": "7954a836edaf61d612d9fc2ddedb29ad5063fcff12c7648bacfe93f60b9e30f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5497d58d85f6c3f6c52ddb9afa5caabf44ff66a1fd5c272d7a53bc51a8dd1d1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1eacf6c80c14f2e5c8bfe9ff8bdcc94d2c40ccd3b409d1171392fbf322ab182", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b4c06e2c3ff07c85cf4ad05dfee263559b906c3cfaebd37291e092c3d2bc312", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|$)" + }, + { + "hash": "eda5530f52bc1c9a5a9235618270d89af431ad7244dbd6401d42478e877aec0b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d099cff2b6109c9db6d0743763882c5c946c3bd5b4afd70fc04671ea87327385", + "regex": "." + }, + { + "hash": "a324c3764873540eec398084e329c4c779c166d4e6b2d6954fcb302c4cdc8059", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "66b6e2a45f5db8a8cb629abab8e812f00f82af438a781162c253afc9790d8240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c455e5ac59c9c89115e7d40ad3102ca488868926051883e9f4a1dc42efc7468d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0257956951988b5007885f02b434f7b57903ee91c804a4fef83634da6840016", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "58aee9ec393770b0b6ed773c9d51330b6b065c62dba94768867a64f6b221e39a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2292998971d8101e541bef0cca9a2a9fcc9657e819bacc671e6163a80f002be0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e645d6d7c112128e5aa86df05c144a0e4c8bf6e04d5569025b351d1d05a68c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5173f3d225f993402604534b2a7e4a54ce2e2b7d4185c4b3c6c48792a98e0a50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee64b7d16afc5a2d8940e7e0fcd5337814ed81ce1f7d644e25629836ba8af692", + "regex": "." + }, + { + "hash": "b0a706142c140f273bdc0fbfe98cf1ceda6467b4237b6801944645d228dcca9c", + "regex": "." + }, + { + "hash": "92233c0c3663b2a7b334bc8cfca1c7dd8ce6e36e8c9812a33c7c351ee99eba4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5a02d45e6a96fc6270c5eed613a626b91c28529597443a249557738c9d8c398", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "613253b6b30cab26a1c6bb199e88758453d5eb8934498cc569bc81853b4f0bd5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8ff5dea3157e5a6a6c99f258dca4acdf89eeef06e5ff2a84de71dc7346e2567", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a56c1891626b9fa2a72547cefb5a961788b4c54ee458f86911cfdd4fde273161", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en\\-us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c957225f71318cfa6ea0a82a823a08e7f3d8e904386cab6e0725089748eff0b2", + "regex": "." + }, + { + "hash": "616e3e060020e1180b5b0ee4acb975314cc709199b1950b8ef9158eb9dff78b4", + "regex": "." + }, + { + "hash": "300bf54d4e007f3bd0be289a1024eea23435abe38bbe2e7bbcb0323c641d71b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "916e876961634af807f55ed8f23201bfc500d18eddf5f1a3c94f9f66c0f845e6", + "regex": "(?i)^https?\\:\\/\\/phanotamwallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27638228e02ff94d568bd16062ea332989236018570af34999c8435713c29729", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "06eed745ab6db889ce181c192743a5fcd0c157a26b184a108ae580c399e3af1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0c59f905b00ad529cd4565a808e0deae7afee7bfd0b0524a7b9643c072f981a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa0b9f8db8e2f8abc9caf1dc747327cf45bd0d6ec1aacaab6a889aa446103b9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b11d02ea441856b1c9be03a57d1f77c5057199d31c4b5a72a8015ab0ee923cc", + "regex": "." + }, + { + "hash": "323cbfc4fe83ec6be241e593d1417dcfd9f033a6d3d9755fb1593e90d42f46a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e881b2d047aa2609cbe88c1763221a083a14615fa0f82f8131ec7c3090d18b55", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3276ec33d9197c4bcd87f108798a71e7d200ebbea0c2da491111cff99658a094", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ad78c4353052ea0161661c446a4a5d293f3697102550acd7de15d71df008ff2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a12c1365da0f25676cf2125a929123dcbf52881b6a73882a2d6f7ea7cd14f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "354b2fb50abe996048b18c7005c3d570836cc6b5d03c2508ad67c707346f73bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "37df5893d6282ea30cea7bb31347261d8594d023797fa1ef159631d55769bc70", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "64e5beedcea542d5be34a3d51242e3d1f2b34cdd5898cdc78bff0269d4d2863d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f20f055337dad61ea0fc472f78b468714d0563c0d8f3e49d31973f4b7eac2322", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a344fd262016a9ddf9cd9e9fa68295ca63ea5da88512d50c0ccfb4f891abd56", + "regex": "." + }, + { + "hash": "4b19500fdefa25017a8109fc40adb5d39035bfaa2039cc9a420d6de144bcc90e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd4cb33d3050c3be38bce9dd133c0b68d7c18da56d538ead266fcb00378815b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1eacf6c80c14f2e5c8bfe9ff8bdcc94d2c40ccd3b409d1171392fbf322ab182", + "regex": "(?i)^https?\\:\\/\\/loggcoinbacedpreor\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba3df1f08b390abdbe5a4f694192a27e285db834bfa8d7ae1906e9b49cc32f4f", + "regex": "(?i)^https?\\:\\/\\/robineehobdloegin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5497d58d85f6c3f6c52ddb9afa5caabf44ff66a1fd5c272d7a53bc51a8dd1d1a", + "regex": "(?i)^https?\\:\\/\\/metomesklogu\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f822315614ce544340c60fa2590755b947a5ce2ad2a9ccbca6b561a231ab95d1", + "regex": "(?i)^https?\\:\\/\\/itrusxtcapitallogxn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e35aac8da4a7daadded206c3288795f70193cabc18c2af3dd7db0a44c241145", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b5310d4a320afced24857bb520f8bfe576d38528c3a37bbba35a9e8145df447", + "regex": "(?i)^https?\\:\\/\\/metmaksloginsignin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a85111df0fec1d52c2a4adb55b3f58ed5573bc224244f5a8f6036ba0ef275b04", + "regex": "(?i)^https?\\:\\/\\/mettaamaskwaletss\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92233c0c3663b2a7b334bc8cfca1c7dd8ce6e36e8c9812a33c7c351ee99eba4a", + "regex": "(?i)^https?\\:\\/\\/ggemiginsiu\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a92a98c1e55a74193cceaa4fc1279f2808301d92486363d16773e25e1e1de97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef88a80ff3e581c5f28d95f052c532e8d2f4a54c2fcb1a1638da6e7d7a2178fd", + "regex": "(?i)^https?\\:\\/\\/atonxicwalletix\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99f0733e0bcedec9be48e3e69b9e4e9f9b823e6b1e0b5e4e67bbdc98521de51e", + "regex": "(?i)^https?\\:\\/\\/metagmaskusav\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0328521f6445c521522eb41818360f127d48ec619a42a20d4275f98a4446c5ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4d5f1b4a63dc519aa6fc5b943e9c11e404c72a7338a3c851d1d1317c11ca66b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2292998971d8101e541bef0cca9a2a9fcc9657e819bacc671e6163a80f002be0", + "regex": "(?i)^https?\\:\\/\\/coinbascmmsigniin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8423f88b2da16680d037c7b4dfedeaa5395d6cf0dd95b3459d5681a3982e32de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "07723efc3907ab8ce3313669efb1e095962a647139ecf420d4cb661d1d30c04d", + "regex": "." + }, + { + "hash": "7d61221badca9e56862bd3749820a59e0caddb08ad01b0d3da6427b4fabc03a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "41975d86f02c5231bdfe058fca835cd2be484b64f774dd11ec2070f5ff179c71", + "regex": "." + }, + { + "hash": "6796039b17fcc1dd7b326d3f310cc21e4b7e7c89aeae82c1d60566e90a5bf354", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f90e61dc48af7fb329cdeb475605d03f6372d9bcaad1257500ba090077c6e779", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6145e1bffd7e047b97a0abdac33fcca19b27b4c77ec11a82aa51915ab74a72a", + "regex": "." + }, + { + "hash": "e5b8ea40a1032ca4de5e32656f9355786b126b1b26c88ae5e998c712d764e008", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "541f25e5cd23bfb8dd0119cef442747c94a49c2c963220a8b832282bf9072bc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bb1e45f0579b47a08dcea421dd530da7bbb807bf9831d15e74a8f5950473ff4", + "regex": "." + }, + { + "hash": "3a496aaf444ec40ff2453e5687ff88001ca86031cd77131aeab8cbbfc0f55392", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "555d2c348caf35a3acb364289b11385f15325c35050214d4c816618e6cc8eead", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "56900217c7b9bf51ec74f389b95ee7769bb45f9f49aca86cc0004340aec28831", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e72b1fc01315727e19e6878eddcad1667a3f419f5bdf990a7af493076512301", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "59bd579550914f81a753b94874e4b28128229e9c9ad94937cb5201448e1632c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "354b2fb50abe996048b18c7005c3d570836cc6b5d03c2508ad67c707346f73bc", + "regex": "(?i)^https?\\:\\/\\/koukoinlogez\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54fcc866a235951a0f006f9a88ba79413f8ba29ceecbb52dc5642031288b2b35", + "regex": "(?i)^https?\\:\\/\\/lsginrodinhood\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d61221badca9e56862bd3749820a59e0caddb08ad01b0d3da6427b4fabc03a8", + "regex": "(?i)^https?\\:\\/\\/terezurwalettioo\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "904be7b536aea98fd8880024ca8e23e178cf7fe042a71c411e7aa798f50710dc", + "regex": "(?i)^https?\\:\\/\\/phauntam\\-uen\\-wullat\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "323cbfc4fe83ec6be241e593d1417dcfd9f033a6d3d9755fb1593e90d42f46a7", + "regex": "(?i)^https?\\:\\/\\/phaatanewallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ad78c4353052ea0161661c446a4a5d293f3697102550acd7de15d71df008ff2", + "regex": "(?i)^https?\\:\\/\\/coinbasoxprologin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a56c1891626b9fa2a72547cefb5a961788b4c54ee458f86911cfdd4fde273161", + "regex": "(?i)^https?\\:\\/\\/zeminnuselogn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f20f055337dad61ea0fc472f78b468714d0563c0d8f3e49d31973f4b7eac2322", + "regex": "(?i)^https?\\:\\/\\/trazariawallt\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa0b9f8db8e2f8abc9caf1dc747327cf45bd0d6ec1aacaab6a889aa446103b9d", + "regex": "(?i)^https?\\:\\/\\/gamineniloginen\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77dbee7e999055d0ad41bda56936b17dd65c904cf8aa80ac9c142875915e0e4b", + "regex": "(?i)^https?\\:\\/\\/sprtmettmask\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5eb9ce29d6e8abed2426d4c52bfb360df83c82e6f107146e551e542631fc8acb", + "regex": "(?i)^https?\\:\\/\\/metmaxkchrometsion\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4bf17264ba0733164218952bfdd4d1de23e60ed4f76a0cbc6d47b0e16039a23", + "regex": "(?i)^https?\\:\\/\\/metamewallet\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb29967e064149dbcbb32790d27ed704ccd888a5a53d0607035a2951bed30de5", + "regex": "(?i)^https?\\:\\/\\/logxingemnini\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59bd579550914f81a753b94874e4b28128229e9c9ad94937cb5201448e1632c0", + "regex": "(?i)^https?\\:\\/\\/uphlodlousloginn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27638228e02ff94d568bd16062ea332989236018570af34999c8435713c29729", + "regex": "(?i)^https?\\:\\/\\/mtamsoukwalllet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3276ec33d9197c4bcd87f108798a71e7d200ebbea0c2da491111cff99658a094", + "regex": "(?i)^https?\\:\\/\\/mtmackwllitt\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd4cb33d3050c3be38bce9dd133c0b68d7c18da56d538ead266fcb00378815b2", + "regex": "(?i)^https?\\:\\/\\/uskucoinlogiin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a12c1365da0f25676cf2125a929123dcbf52881b6a73882a2d6f7ea7cd14f5", + "regex": "(?i)^https?\\:\\/\\/coiinbaseprologiin\\-us\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c3349493bf61d013945e500e8e5e58f6462b7a21ffa2d8c5f3f2309d7b05ca", + "regex": "." + }, + { + "hash": "9458510ad284f4818ec69080b87f19f03b3ad0e345ab4e369fcc26b9e8e3fc2c", + "regex": "." + }, + { + "hash": "6eb8c0f49d54bd94bfee7fa442b0752d231b264710b75700cf58577d9f2f43bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7547a9fe3252f5e71fb3ca2d443df6f376a78f6e4be23686dae92d51d4354b63", + "regex": "." + }, + { + "hash": "80c1f74b7eacb3dae8264456533b598e4bdb9275bff25c8f2f27c7357686574f", + "regex": "(?i)^https?\\:\\/\\/methaask\\-loggein\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37df5893d6282ea30cea7bb31347261d8594d023797fa1ef159631d55769bc70", + "regex": "(?i)^https?\\:\\/\\/zgeminilogouins\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "916bc4abebbbf65832a30f2238249c449158922ae3e18a0f0aa5b86f70dcf99a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "302e9b4431de599588486ab50e7624edf6cb82070d0fbcfbcbeb9feb40a5a9aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "026fa3cd13bb9f6dc6ff94ce90a766b8c21978cc1a513b46a21719bfdbecac0f", + "regex": "(?i)^https?\\:\\/\\/xtensionmetamasck\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f90e61dc48af7fb329cdeb475605d03f6372d9bcaad1257500ba090077c6e779", + "regex": "(?i)^https?\\:\\/\\/cunoprologggin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b8ea40a1032ca4de5e32656f9355786b126b1b26c88ae5e998c712d764e008", + "regex": "(?i)^https?\\:\\/\\/kcucoinlgoin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6548e9a9ee79ca69acad703993a162ba55d2aeeec505b19a88d75989c8eb16a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "62dcc359a7f864ce18a79cbb1e4e45bdf4571765a0012fefd68e002a33187015", + "regex": "(?i)^https?\\:\\/\\/meramaskwalletlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6eb8c0f49d54bd94bfee7fa442b0752d231b264710b75700cf58577d9f2f43bd", + "regex": "(?i)^https?\\:\\/\\/phat\\-wallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "916bc4abebbbf65832a30f2238249c449158922ae3e18a0f0aa5b86f70dcf99a", + "regex": "(?i)^https?\\:\\/\\/oinopprologinnn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ce0cb6de735eee1f5a002146518ac05b01761ae05e88d4a835343396c34d820", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7674b8dbd2c65e71873e22c36a1837df2bef13c5031fb82f7bfd3c99a3e77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "108c678ed3191005971f66f36d154ed9d77337de14e0a201119613447bb0d64a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6548e9a9ee79ca69acad703993a162ba55d2aeeec505b19a88d75989c8eb16a9", + "regex": "(?i)^https?\\:\\/\\/mthamsluogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4bb6dabade2350699643f4df7d27d42622f4123c3bb7515f8330ea8df1b230b", + "regex": "(?i)^https?\\:\\/\\/mettameisklogins\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f929cecda71c8f42efa0b92f14e56679e8af237e0156bfa11d0967676f4542a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+emini(?:[\\/\\\\]+|$)" + }, + { + "hash": "d71a186021ebc322fda33022d0e2ab49c32779f8483baa32180b39e6bfe2e601", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+au(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b78dca869c2a19c1a2187a6a81319cd9d53dbbb2de3398bbf5fd4758900a13d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "90e19e6e1dd8cd42359c528dee61639a24399aecf3940390259510c49f55bfe0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0007f26abfdf15a689889f0d2a114b2f5943f26f169cc32609b7ade00175e81e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b3bfff4f61440ae76ec96643e4842e42e0ebb880fbc2534b2799c7e1015b981", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ab962f08c582096739a4f04f41a9db522f8a0b50148596f580c80ed41859ceb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "79eeec20e60507e1fc03f9fe84c0e385916fb3ff8b128cc02ca7dae5dec8aa01", + "regex": "(?i)^https?\\:\\/\\/zymynilogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cb98e93805f1bc99b7ce5f7b589e1b7a9bead215ab6bd199768a80863dba60a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b1fa2f0c8b2600ee496e1d59bbdffeab589fd3076fdbbe4d23d0bb0d17e3c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f09580563fd967e07022723ff777ba4b0e192dafebe47f9fbdbd3055657d367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b3bfff4f61440ae76ec96643e4842e42e0ebb880fbc2534b2799c7e1015b981", + "regex": "(?i)^https?\\:\\/\\/ateomckwaillte\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ce3febff493b9ce61defbad9f0a63638a01e4e9045c6c81898df1d30d6df99e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "de0f33f57c785e29de83f2e90b407719a4ca18eccbd630e7c22c4bb71df81cb1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fa2d754a34ce23b7e1ef48f73a99678d283e3e2ef51716abf26f214a9afff71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc2714b1e8f1e846bb583f28ed42391d3c98fda9e2471e8302113e3556684b2a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ee100acd041047ff9ed29aa6caab7165caeb3d47ab1ad2f08f7c1ab1df9c642", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "017d680566430fb7b61302dac6797f1e46c14c897ee8c60110975312ddd5f3e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccc28d04390e204992930d0113adaac2906dc423736004ebe69b0c1846f6cdc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cdd94217c33b55dc8751d8b587db497554426765dd0e8b45762bbc3b086b5a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "626dca4419affb85e2a8b6e3a466a1b5ff34dcddfd43c4d1a5de3e748f2a17df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee2e57d7bc0ae1d5d7a93be6ce072437e0a4ff28823deb2ca1539ba3dec24db6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "59f7137ce54aa34f9a7d8594fbeed867fb3b86cf34c1604910fdfea5a43a5742", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7515243fe2f0d522f4fbc329c65bacb6d1edd35e1c7d0b5ae26daaf4004e1864", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a6355a1b32ff96d912dd2b1830dc55d0922282329a390e846e0cb41fb26802c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "bddc596ff2a062742eacfc43b61111b390c7f3c13cb044ec9d5f89998a9dc916", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "459b0c6509c52950af011c12ecb362b8f6ce9f2620ba74621831398dbbedd9c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+untitled(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f5e858625ab54cd6bdd450e12f544454a8bc3289bddea06174a43cb1777ef51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5c64bc69b02bde23ba63fae60a126126b19d82c083119b9a6dcf6c3abd44d56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "11deeaaf9f41262f3ad915148c35e8fadb362663998299902a6bc6aff6be2d86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b44907a2e110e720d08f6283bf7b25a19e1aa8a1b5b663c96d38ded4f03038b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7e4ba75c3ab87de4fbbe110d68f6a59e8dad01413e0837d2152d2bcfc6ef730", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3bc604afdfe8f45d3be0013ff0b9a42cadfeb0dc2dab5aa8c9ca0bd0647f5dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "28e76f6106b7af9ad39c67f9fa5e89519c7f9b8fbec4654677c2c20e1c77ea49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f9b82ed7876e8e591f10fd1bf1d40e041c1f6c818ddffdb7503aed7b1c748a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "c68a22bf8dca3f5d29616ed5063b2475a46593a39a9d81dffd1f07d90b00d249", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "221e3d23842cd015ea909a7092bdcc213640e837054c7f72e706113a81ee03a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c85e377c3687a34d67752bd0ce14b13e3a82acfed7f79de32a447f82dba6abd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7de58703d1f927b318ceeaa8a71c3a596e46b2f2b3bbcb1821fb4c4bc9650d41", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff46e2d84978d25985650f269c531f02704a396c10185d178d4b83a69f98b713", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3600f89d4b0107b7fa9d385f8a08004bbb3a7a59e9644504e8773781434837b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc34fbd464cacd2a85d2ac9f6f13739e67389ea2626a82a9f87afad3af90303e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign\\-in(?:[\\/\\\\]+|$)" + }, + { + "hash": "60fc4c86b19b1c621919e158dfc2692f427c32c2c0c3186bda97bb353b0f1e5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "221e3d23842cd015ea909a7092bdcc213640e837054c7f72e706113a81ee03a6", + "regex": "(?i)^https?\\:\\/\\/logoiupphold\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ee55ad33f438c482c13a69688ecd39c58bd8a2c000ae16152edbc034c7e9d56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca45ff5f5c279e7872ff6a24a7df2134d3124ba47816e7c39ecd9c43169d33e3", + "regex": "(?i)^https?\\:\\/\\/phatmewolt\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c68a22bf8dca3f5d29616ed5063b2475a46593a39a9d81dffd1f07d90b00d249", + "regex": "(?i)^https?\\:\\/\\/terezr\\-walat\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7515243fe2f0d522f4fbc329c65bacb6d1edd35e1c7d0b5ae26daaf4004e1864", + "regex": "(?i)^https?\\:\\/\\/gemmnilognowis\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "459b0c6509c52950af011c12ecb362b8f6ce9f2620ba74621831398dbbedd9c7", + "regex": "(?i)^https?\\:\\/\\/metmskloginx\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c85e377c3687a34d67752bd0ce14b13e3a82acfed7f79de32a447f82dba6abd", + "regex": "(?i)^https?\\:\\/\\/kraikqueilogon\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "debc4cb5bd8238e83cb4bab65d0afe1f45740c444e88ecaa8d37ba8152b9091f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "60fc4c86b19b1c621919e158dfc2692f427c32c2c0c3186bda97bb353b0f1e5c", + "regex": "(?i)^https?\\:\\/\\/koinbassepro\\-login\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3600f89d4b0107b7fa9d385f8a08004bbb3a7a59e9644504e8773781434837b", + "regex": "(?i)^https?\\:\\/\\/koinbasecomlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11deeaaf9f41262f3ad915148c35e8fadb362663998299902a6bc6aff6be2d86", + "regex": "(?i)^https?\\:\\/\\/mentlmassklogins\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc34fbd464cacd2a85d2ac9f6f13739e67389ea2626a82a9f87afad3af90303e", + "regex": "(?i)^https?\\:\\/\\/kuceoin\\-loigin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bef9142e72ec3f113396bf6a23da314f20523e7b852a8c6e4b4c9756289b404", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73a215e9a9628ce1c4ca2e21be7402e81eeac486f005b9e70e2d2ea51c2884b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ad7f08524c6f59cfd34455c8956214cb247e21b0740403c87005028c0d8425", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|$)" + }, + { + "hash": "06798459b6dc1c2664958083b94ad82ad817db8692480ec931b4a6cac5af8d0f", + "regex": "." + }, + { + "hash": "823fda6ea67a44a73f553e7949b4e3fda911ae7f7cbb581289cd64ea0483da24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6007e599038183b0c24a4d48255e2ea25b792b271175c32e2151dace9ebfcbe0", + "regex": "." + }, + { + "hash": "65513792f7b17a34e349da2edb011e0803e7b3ad965bdbe52a1f722e330d9599", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e97f3dfc7d80374171a127236d952f4ecddd041d39297c6e39b216f76a6bac06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ad481100a909f7a4b5297e31b8cba4f794c1fa315feed4bcc9c39e4e80231af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1936c8e595678fd5cd3974cd5a3a646bb1ea17261f29e8760bfb28a840522cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "13556a819fad678e3097fa46cc0f1ac6dd10953e0ac7e9fa4e716ea633e1cee2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "11de876a6c8265507ecea3e2e8bb735ea38581309033c1599fe52ac05aa19a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8526200d92603d4866e1cdf6ceb87585ae1ae2f225e152418fcd1edcff01c9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c927f6f0d3ed6b165439c9a6335f2a11622033c32d5dc8b2f0d540869433e974", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "e8cc56a67da731d48af3fb892fe240220b0646d91cddbf89a5205ecc19349467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9febb1ccdc929df11e27688e9c61d78eb92ea15b04083a6e1ef5c2afa5dd256", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "27d35d28229c1e8c19449f3cf7cc60f45805bb404c8ea2e3168530e2b64219ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb90f1bc7f191a104bc3f97439db5560de2093e13b46b7db3170fadb5d7fb290", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "974e23f26739c1a5a67e0f029732476dda5c2403fca8f551093c8d2492fd4e12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a73f90b552e53a619ce24b5221327595a1004923ab6cb576cf6d83940bae1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4e7bc6a829666706a89acdd0c3b1742c87836e4f8f62ca9da33a958d436ac6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0079f757511282212736b591e6be956ba398c121b7767b03a101ddadbe917855", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca5f8b8f787a995ff4294d88254400c9f12edcf7c9dda98ca3713ab51ca804b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2fd570604c94307936455ece1a6f29e860fe0274335910c5c494e3676a12a10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "99ad1197a3c83a1942cd75d99a6b02882f731ae352f1d7bd523b04abf4b16674", + "regex": "." + }, + { + "hash": "23cbb345a9a8ff0d7ebb351c333a977e8db83bb22ae1eb5a2587aa521b155db8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "17c6bbca9182839e92380612523d03b13c082851c143c306cb8516fb4012ee35", + "regex": "." + }, + { + "hash": "86129f264a10e085d260c64da8e356413c9340f9de2c6c38504dafe7267886ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ddb26010616d23752cb05bd5ace42f9cb9a943fd50a8df9b7afd72aac3d5c27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d26ae6a057ff6efcd12585b6ddee26a6841224798954ba58ca1666db0c91381", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fedcd4a048e3347cd708cf8959f5d7e7e878a1d76cb3b17127612aa64fc4e8d6", + "regex": "." + }, + { + "hash": "cdae05bb13b81e9374bdad416872b5bcbdfcf8a4dd933ebc0e92836797cc4480", + "regex": "(?i)^https?\\:\\/\\/metmecvallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a4eb2acf8df4708479ec62952ecc044851c412c5c582ef5e4d2ce0e028c4fba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0e8ac54656535ee2bb2ec57db626d7462ff06ba8964d4d62857caec21d1dbc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "36280f00b9a4c177f47df835c5d9665e369c4089c25d86f187d089231495f89a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c333fc7ef41e043cb13b08e79cc807b719b2b4a23de192853836b3aadb4cd5cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "108a14f65951f5add87ba71ef417474a405e9849760592b06117158a3494c67a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d9a2dc73ee34458d3c6284573757330c39e7e1cce9973b8a8fdeee44096f335", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8d0efc39f19345738686f057749161fda7b8c5747d3a838ace1a7f2d5d49319", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e79b9cc9d344c04ef91ff79dd3a19d04c55df24f148cd2f09802dc110358a344", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "04955d5f74ba6cb9c4b66d37a5a6349480e989d64b63db6d243d260b0cbb83dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2feac5bb92885276f4ab13c9047f51df7d54e55c8219db84db410df1a061bec8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "afb66b3c8537430ee0b221a3cb32fdf36d5dfe5cc43151396636d3f527d1395a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebc15c190763871627be3e1caeda2fcffc10a4f494ae7e03f743d72a930ffcdd", + "regex": "." + }, + { + "hash": "a7c6d72ef831177d8aec7c99b82aade91c97944e1487d6d46fe98df64f520942", + "regex": "." + }, + { + "hash": "ddb75e3e5a39d2cbf6b3772c7cc4e4bee3ffe0db6aeb0f8ee5bf6d70ddfbd771", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a2d903de2fdced59db2103fac992dd5c571f24b0c748909f0d5b43e4786cf7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0d4a922480c6b7e67ae6b0fce013fb526a7f90d9801c2cb2298cac448cd854e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c927f6f0d3ed6b165439c9a6335f2a11622033c32d5dc8b2f0d540869433e974", + "regex": "(?i)^https?\\:\\/\\/basepro\\-login\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84b2e2012ee5e84ec9091114b7ef0a0d80c4154b5b65624299be7931590e4bba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3e0c3a522244edeb75cfd94fdf5ed8228961c67a23997bbcb9ef0d8de128285", + "regex": "." + }, + { + "hash": "14fb33d65e3e2b11759fda5cd830a7d42214d737b6b11304c15f81e683bbc15c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "764509c8b24bdc1cda27b974e2234be8e81bda4428b80f4effec54154da86d40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "32809c5c8685538117d3edff4942a6a83ed5f5215d3ad05d0c7b0f25c2478844", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "299cbc0873cd9dae5d8b662817a13b9a4d163535afa1bfc3add1f5239865b3e3", + "regex": "." + }, + { + "hash": "3bef9142e72ec3f113396bf6a23da314f20523e7b852a8c6e4b4c9756289b404", + "regex": "(?i)^https?\\:\\/\\/coenbasipro\\-loginz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8cc56a67da731d48af3fb892fe240220b0646d91cddbf89a5205ecc19349467", + "regex": "(?i)^https?\\:\\/\\/matamsask\\-loginn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a73f90b552e53a619ce24b5221327595a1004923ab6cb576cf6d83940bae1d", + "regex": "(?i)^https?\\:\\/\\/coinsprologiu\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27d35d28229c1e8c19449f3cf7cc60f45805bb404c8ea2e3168530e2b64219ed", + "regex": "(?i)^https?\\:\\/\\/conbihuecomlogiz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e97f3dfc7d80374171a127236d952f4ecddd041d39297c6e39b216f76a6bac06", + "regex": "(?i)^https?\\:\\/\\/coenbasspro\\-login\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23470f0c7ff481b12d3564615ffd5bac064572e2ea496bf50c22eac79189ebd8", + "regex": "(?i)^https?\\:\\/\\/matamask\\-walletz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ddb26010616d23752cb05bd5ace42f9cb9a943fd50a8df9b7afd72aac3d5c27", + "regex": "(?i)^https?\\:\\/\\/consbise\\-sign\\-in\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79fdd1807ca38a1fada909752eea5fd3cfa13afd7a75c5a61801261ba201f95b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2dd8f7df993068230c360840717d5b0d171d1d624ef1c106ca8eb1c04c2755b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "63ea4e120378c42dcf5525dca5c40bb81272976a958640e4637096e9f122cdd8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3641de483db01df9a3293b79974d981055345249161347c7a95e67611ac08d94", + "regex": "." + }, + { + "hash": "892774428022be2f5beb5291912fdf498adec247eca2dc3bbb5450088f02ff86", + "regex": "." + }, + { + "hash": "28c16d1b218595d4d456db1df7e4ccc15af9db697ce0f3a713214903dcf14358", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0757218f0ab7a87d2f3198ad90aa3835d939d457a7a452456a4ef7109eccf306", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "21f725c55dfd02b2778780e948c6e078edc10482d9f895fc71293db70982ad06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ad080825d8dbc14173a3da96207a038f89f1fb3f2e6c122147c65537632a194", + "regex": "." + }, + { + "hash": "8aed8e21df5f7f8e1578e71ef8f5e7e571f49feec13d604727fb59bd49fef5d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3a4089573eab29195b0ee1a74f1d10b613e45981aa312015a07bd2dd5b782b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uk(?:[\\/\\\\]+|$)" + }, + { + "hash": "91fc802e92e58ea7543acb87678373ac8cc1827008397ce4b12472cb4e7185cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "afb66b3c8537430ee0b221a3cb32fdf36d5dfe5cc43151396636d3f527d1395a", + "regex": "(?i)^https?\\:\\/\\/coin\\-pro\\-base\\-logi\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "764509c8b24bdc1cda27b974e2234be8e81bda4428b80f4effec54154da86d40", + "regex": "(?i)^https?\\:\\/\\/conbisecom\\-logiz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d26ae6a057ff6efcd12585b6ddee26a6841224798954ba58ca1666db0c91381", + "regex": "(?i)^https?\\:\\/\\/coeenbacecimsinhuin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40527521617f0d61309f164cc7cb70c1d324a06c1c55d2d62c9baf8a61134564", + "regex": "(?i)^https?\\:\\/\\/conbsepruxloggne\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0d4a922480c6b7e67ae6b0fce013fb526a7f90d9801c2cb2298cac448cd854e", + "regex": "(?i)^https?\\:\\/\\/wwwconbasesign\\-in\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f06f51f11f91f60bbe226839401360a980c76060218a054c97f363073528d6e0", + "regex": "." + }, + { + "hash": "ef31942b77839d406e6d5f73b01d80b8c5b2770c86f110d7be3407a93b9d9574", + "regex": "." + }, + { + "hash": "d0e8ac54656535ee2bb2ec57db626d7462ff06ba8964d4d62857caec21d1dbc9", + "regex": "(?i)^https?\\:\\/\\/logiinconbacecum\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8d0efc39f19345738686f057749161fda7b8c5747d3a838ace1a7f2d5d49319", + "regex": "(?i)^https?\\:\\/\\/coinaseomsigeyn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91fc802e92e58ea7543acb87678373ac8cc1827008397ce4b12472cb4e7185cb", + "regex": "(?i)^https?\\:\\/\\/cinbasessign\\-in\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84b2e2012ee5e84ec9091114b7ef0a0d80c4154b5b65624299be7931590e4bba", + "regex": "(?i)^https?\\:\\/\\/ciinbeseprologinusa\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21f725c55dfd02b2778780e948c6e078edc10482d9f895fc71293db70982ad06", + "regex": "(?i)^https?\\:\\/\\/cuinbasprolggn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27eb02329916be7c1534687ec7e0bc816bcdadbfb46ad6f74c9afdbb64c15c8d", + "regex": "(?i)^https?\\:\\/\\/karebkon\\-logeinz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3a4089573eab29195b0ee1a74f1d10b613e45981aa312015a07bd2dd5b782b6", + "regex": "(?i)^https?\\:\\/\\/coiunbse\\-comlogeenx\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca5f8b8f787a995ff4294d88254400c9f12edcf7c9dda98ca3713ab51ca804b0", + "regex": "(?i)^https?\\:\\/\\/coiuybnse\\-comlogiin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32809c5c8685538117d3edff4942a6a83ed5f5215d3ad05d0c7b0f25c2478844", + "regex": "(?i)^https?\\:\\/\\/germiniginus\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deef7d62b700b44b4227014b0524ff28f8f1f5c3bd04faaf06f345c844b56efc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a1d69ccfafb71ea80cd41cbe3d24824af562940b070a3207e5c4fbb6ec7c2d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0641df15cd886cfa93a4f59886446cbde6800e9bb920ff7e96b216fce441e320", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "579a10039b707b0de1b659b243be85f2afdbbfd5f37a816cd52358a5107fed22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c9698b02d9ddc5d1a136d8fc39b952a89064053a6534b50803c342308935048", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea0ec070e91158cea073886dc98fee429b9649764b404b60c434d7c79335c826", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "95f8d347f5746b27e6b80eeccc121e82780b5b8e963a21da7fe72c76a3b7375c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a33bc39980388a8fde1ce650b2d0c0ad87dddff24ec8d751f2ebbc428bea6c4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "46e837e620ff62e56a1666344d4d66b59fd82d002895979545748e65ec82225c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c0e737d438e5846bc048050c04a4ac7d5dff61c1e3105fc0c5cbf4821a61f88", + "regex": "." + }, + { + "hash": "ac51f9e7cde9b5e2eeb3fdf9f36f25699c4ba996b843d131602456d04c8f05de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "46e837e620ff62e56a1666344d4d66b59fd82d002895979545748e65ec82225c", + "regex": "(?i)^https?\\:\\/\\/krekienlgnjusi\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69ec28bfb0588cd0993c1c4b90950abf8834d8c7d4b7b6960a9838a2824dea08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2d801166f27742b7af94d152349dc4a2a8bedf58aa5b9e9f76e3c6daaadb7c4", + "regex": "." + }, + { + "hash": "2463cff1b0ad6c2e39c40581c2cd21278d39811c8beeeadc86f54bd82ddf4233", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "69ec28bfb0588cd0993c1c4b90950abf8834d8c7d4b7b6960a9838a2824dea08", + "regex": "(?i)^https?\\:\\/\\/couincsebasiesingniein\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d31edf0433e6dedb546cd8c3ba55a9820ba5382ac03f3c6a599dacf78c2ed9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f04bc10669ef20c1d0034b3256ee31e4824a1c60c67293cf22ddd8e1ab6132d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9d655d5e138d0e12fe0e65d6785275277e683feabbfa7304825a5ee830b78fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed3f7423cb4e6b7dc62affee1531ecfd13d04d45cc4b412dba30736ebb146067", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c9cd119b2196908a8b41225715b4bb64b05c1d926db23d8d7acd34f372e4882", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c0733aa5df4f7596145ab7bff2560cbe1351478f9861db22c5b4d10c16705a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b58f548d90dbdb41b4aaac62d5756c0fcde89ad40450b6ae406706559a4415f2", + "regex": "." + }, + { + "hash": "61d81a1b0fa5fd1aaaea002dbb7ec5feefdee67fdcb5456281d2af463abe4fa0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5994bced7bd386bcbd40dc7a2ab8157c6d0e41e2151058c39bdd85d32bf77e48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "83397726798ffd015f212d53d628a479c63a28442872edd1e135213e00cf12f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "c83563d5c482351873d7b094a34878c9bf0f81b83257689d6a547f6b5a463172", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f04bc10669ef20c1d0034b3256ee31e4824a1c60c67293cf22ddd8e1ab6132d8", + "regex": "(?i)^https?\\:\\/\\/maskameta\\-zwallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "294bdc07051ba47b1e83c207c7d8b80d93a8258bad673b3fa0e2da89fb6a72c9", + "regex": "(?i)^https?\\:\\/\\/finewsunniswp\\-exnhge\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b9d26097232a7dad568c168fb12c968853cb377b63eea148bb26492bcf13199", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c0733aa5df4f7596145ab7bff2560cbe1351478f9861db22c5b4d10c16705a", + "regex": "(?i)^https?\\:\\/\\/metammaskwaleet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12291e02bb75cb01fc3b24d0d211c37fc96e3edb2243c60cf25b73501fa43c44", + "regex": "(?i)^https?\\:\\/\\/conspottlogiz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed3f7423cb4e6b7dc62affee1531ecfd13d04d45cc4b412dba30736ebb146067", + "regex": "(?i)^https?\\:\\/\\/metamaskerlogs\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8ef041d851600fcf8c21e35f4a44063e2a89d3493c1f2eeed7e6e01f0d39683", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ee935f2445f91f8e82af363892768af1120c2c644721fbeb8aa38d968a1d1f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f91c7fb52f84543f245ec651e7b794d7cf8b052b62bbef583fb2cd0ed47a3c20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5c2a9db16fcecd9ed253b15d061762f71126aa0897b80bc89f63afc199271c2", + "regex": "(?i)^https?\\:\\/\\/procnvase\\-login\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c46e950e19fd1984603b7ee830ed8e3ed61248daad66c0025d8b548ce28153bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f6dab8988ce989dfeaa442ec6c961a28ede9fb2fc12ba3f9041f3bdbf946a35", + "regex": "." + }, + { + "hash": "086ac09749710ee98fe39f92cc4dddcdf9572232418cd650cc9d909e4dcfed95", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3b2a5cb0f5fe111bac1dd904d26488b46bf42dd929b88f1cc84c59111a8dece", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "47ea3ce044efd8d19d9c465bc73d2cbbb2e6b560ad9713119068bedaab1d0c43", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "31a652835762bd4a03b528daa9548daac6fb8ccfaf67b819c5de00de7017e9e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9436b367d3ca1c893c91734b73a0a51b6951f024ec7525f2957ea99ef0c7d82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a45da7aeb5c6ec68b411134ff13133dedd392e59441d22efe92f543fb2e3a9ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "983f88b339b79d26fc2b224a9ceccb53a5c8733c4b9aa2dc5fa7980459139df2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "20413194d80336fb3c88e996029822f4af1b87a50d5a7c535314fe1c022e56af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gemini" + }, + { + "hash": "5a87d921ffe1eb3dfcb480e1148d82743febf9dc0e399b9bbfd4f0db5d4488ae", + "regex": "." + }, + { + "hash": "e5050f0779ee78754e34020f97f9daba447e956ad61cc25210cc7de52a432004", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "41fef87f5a66b8bb9ddc9be89d0bb653ec16c473494edd730456ad86dd8dffcb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "47ea3ce044efd8d19d9c465bc73d2cbbb2e6b560ad9713119068bedaab1d0c43", + "regex": "(?i)^https?\\:\\/\\/uphladlogini\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8e8146e46cf75aecea5dd8455a9ab0c3093ebe18ebe65185b27d705dd9625c5", + "regex": "." + }, + { + "hash": "c3b2a5cb0f5fe111bac1dd904d26488b46bf42dd929b88f1cc84c59111a8dece", + "regex": "(?i)^https?\\:\\/\\/logxncrake\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f69b9a8a1ab269d9c54cacd74b6bd8113494a380be9c56d012b8e31dfcbbf362", + "regex": "." + }, + { + "hash": "9ee17866c02c04b065b2ef52d5b4ab696910b266715cca87f27999b725800442", + "regex": "." + }, + { + "hash": "41fef87f5a66b8bb9ddc9be89d0bb653ec16c473494edd730456ad86dd8dffcb", + "regex": "(?i)^https?\\:\\/\\/us\\-gemi\\-ilogi\\-i\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1387e0a76c15a80dc1d0b0ffff8f78623abf51e181936d3d390b633083a96591", + "regex": "(?i)^https?\\:\\/\\/www\\-coiunbse\\-cmsingh\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a78705e211353e52ff8bf2a8b1f7ca3cca1c5a453ed83eb5e23f25f82dbac78", + "regex": "(?i)^https?\\:\\/\\/metamaskcromeextsns\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff4cab8a0a69244a71a5599a2cc1d9906429a97f7c337e240100d67b98feacb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3c489ceb1f033690081b736c5836186118f914514e9d6635da1ccc3cfdfc335", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b2f30b995429100f1fc441c4fe2de20c3b76b42b1befb7388c0bf1ff8bbcb35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0bc655e442ef62732771b4ae091fdb8757c30fb5914c9e411f7e88192a291296", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ie(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b6d1917452a5a6ef8367426fdf09f82ea5b09ddf1843704c4300e07cb370cc5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+share[\\/\\\\]+8623487[\\/\\\\]+tmtl23urv0gvxoo1la22$" + }, + { + "hash": "14c2bb9b1c3394995759aab688d9ce77699270396ec7bd088a2ef9b00caf4a03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lus(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f5af1f0a498771482c1310d12ac5adadcdb204d5cb9f06b231cc9f5cff5b1fb", + "regex": "." + }, + { + "hash": "80344e8c5f96218e4ade6c89888b4346592df8d58d84d67aba2b67e7809ff6c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c35c196f9c4df16ac7f40e188433f5d21ad593a16f2f0233190fee6efe4ae51", + "regex": "." + }, + { + "hash": "2b2f30b995429100f1fc441c4fe2de20c3b76b42b1befb7388c0bf1ff8bbcb35", + "regex": "(?i)^https?\\:\\/\\/turjasuvjrwlert\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f55bf230ad6b60009a2012efebf1f070fa9e9912437d0424ecc308340e836f35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d21c29352b2ee009a9920306ded15f720d247e569b6742887377b189ef99fc3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c68fa4d088cf8749344ae72a0254e0f57c83914c5f06d8e809d859760b02ac9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e227dd2aad7267632fa8791cfd2cf907c5f451fea7100b5289d924f2a7655dc1", + "regex": "." + }, + { + "hash": "dd4c06b23e810669f635c080d725de3bd067d023540e554450d075c7f6b5b8a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f7278193530d331ea04e34c71baba024ce7e0016b80c8caec7823a6bfa2a315", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "36ee4b8e554464df2b5579b4e77b880783ab42b6abd102e94301ff529f63aacd", + "regex": "." + }, + { + "hash": "da72d93cba0f69e895ee1fa5e480965a6e6d7bde73b4dccdb69f9bec4f35c278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "60010fae1d10aa51020bafcc0f2539b201bbbc897fee9a0614cea832c9db0ca0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7da025f6449a7657fcb7f09e15c5da13a51d710930359b94ee3707c489e7455d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6464e499254d8bb0c16964cba8a0b9f2eab8070fdd706908f3bbdc9224d7df64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1156909ac061b10da42a20c669492a180bde39f5151811aa37ef0e8302caadc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e22738a86bf254d48b40f638111bf7ff90488bf22940daf74e0ae96ddf117ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1302fb5f0d0ae8ee1fa6373ed4a2568b399f2ba7a3b166fd90ce563c93f91b21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "304b1000728e752911d33b6e63e4e99812a6263bfb49940e1c1d8db0d716b407", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "228cf032cff17e46205738f628f4a92000e0220d18c83ed89286114feae2d041", + "regex": "." + }, + { + "hash": "c1481aa3745b00683cbb4fdc3f25a89c0cea2ce14c7c25b1175b4a389f6a58ce", + "regex": "." + }, + { + "hash": "e3ec95c19e4fe40a48e8d6538cd1ac9e1f6c84c00dd36d59748a344c3515efc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a33b74627ca4ede038becafcd7dd1e0c5e9923d06c9fe99bbab955ea3fb34683", + "regex": "." + }, + { + "hash": "f41711c850677e36f5c48e9d688b16bc22d30bc78557382e80dfb1aac944c364", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1844df1dc2daf0f003d7e8f41eb73b3a2875502923213ca134ea787a5d287635", + "regex": "." + }, + { + "hash": "1243ea49a48f1c64fe48c7787664dbe07451b439172e9d870d4b727fea3d3c18", + "regex": "." + }, + { + "hash": "fa71a229119b6cf9efd0ee243280adf69e9231ad60e0a8f04e0c2b865a400892", + "regex": "." + }, + { + "hash": "54dc6206be95adaafd14bd07f8c3add54d901602eeab8a63f7408ab4eb72db78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ukk(?:[\\/\\\\]+|$)" + }, + { + "hash": "18de0980a81c718ee41bb52efa6ec5cbd4394dafb544aa383c2e78eaf06f7b51", + "regex": "." + }, + { + "hash": "280d77d868993d56acc39a0b6d49fcf9de445a058ab18e392b610bcb82ee0669", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "dce1f278eca04ad1259103c1cbdebedba6490053dbbb0a9141852d51aa149bef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "697be983969b2b691d6887aabd7cbaa698c062578b1a01cf775f3dd5be190515", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "78af73ac24403e7cb5ba02010a6632ae6b81d0241c03c2ad027fa9ddbb404d8d", + "regex": "." + }, + { + "hash": "a53f43731462c04758aa09382f1eab3bffb78248f3022145e5d335a44c640104", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a812df61249b9703ea8b754a3a626d811811068a1245e89af1255559f0bfc5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5c97e9aef53bcfb08819afa791830853bbdae0c2df0a34c61494b3bfb1ca851", + "regex": "(?i)^https?\\:\\/\\/phatomwallett\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd85c2c95423f74f2722047942a1a5c636e8dc4be8df0524635fb1269f1acbd8", + "regex": "(?i)^https?\\:\\/\\/metamsaqcvaestension\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f55bf230ad6b60009a2012efebf1f070fa9e9912437d0424ecc308340e836f35", + "regex": "(?i)^https?\\:\\/\\/metemusc\\-welt\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0a9465341153535adcb64e472d4b626f008048d88d6e096ac29f59707212ba8", + "regex": "(?i)^https?\\:\\/\\/metamaaskwertly\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e22738a86bf254d48b40f638111bf7ff90488bf22940daf74e0ae96ddf117ef", + "regex": "(?i)^https?\\:\\/\\/geminnlginn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "932b8ca80ce46d2354a01420e98ddd3ebc9c005fd9c9a68e706442cefd4ef6d5", + "regex": "." + }, + { + "hash": "a6e35eacab6608b4737ba284d7e5ce50946e198e29a4fa68ae75b572cbfa0d30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cc7bee88c8ad9b4be9829c3095ea0cb296c305acbc3cdb00e0a4239027d7d34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff75cfe3018685d1fb12af5d1ed128af3201d239a6b82eb4f486d0c2ba8f2f41", + "regex": "." + }, + { + "hash": "3226fcc81a83fc424be9ecae18228c2cd3d23d8c85d3d3387afad2d0a6cf9ac3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b86222f3286fd270c01d33c200729455ffd3b782e6b98f3e824fee3477f39bea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c4d8b054cafa8bfdf8d8c1aacd668293c5862648aa3cfb63e00959ae2d1cc26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6115b750500f766c25a88a75790131de9058f3226f76d0ee798f85d7e6dd2d6", + "regex": "(?i)^https?\\:\\/\\/uobinhodlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65d9f2510920cb09aadfb229df74a37c078f04107b23c80b2c4fd78a13826fe3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+es(?:[\\/\\\\]+|$)" + }, + { + "hash": "80344e8c5f96218e4ade6c89888b4346592df8d58d84d67aba2b67e7809ff6c0", + "regex": "(?i)^https?\\:\\/\\/krakeenlugiin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f0834aee72ae6e352353499c69100bbadbbecf36be73ed998a30993a8d86b7d", + "regex": "(?i)^https?\\:\\/\\/phantomsawallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c4bb334a64af57e57a08d518e21d7aae68164a7cd6215ed0d16e2c8db9f058", + "regex": "(?i)^https?\\:\\/\\/medetamaskllgoin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe17e31ef5fdc14725b977ca9b34ba4bbff23ce03f7b191dfe4f38245c3c229c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b992000516892ca5506424c832d59e36b4ed1b1efd94745408dc052b8842b1cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae5342fabc1a6233ad51c6a64ec0e505b5903a12ea042f6be04abfe2e3fdcbcb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2fb03bcb09aef16e8b2fca04a06326c7bb4f61042061a979e93c7154d2f171a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8ef3529c14bfee4b027fb283f3aa1b90e371f01449ded0f0e09654e4c653e4b", + "regex": "(?i)^https?\\:\\/\\/methamask\\-logien\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62a0f1541175d2c0edbd2c23af3310b5d587085ef42ac5917aec62d6858dbe5d", + "regex": "(?i)^https?\\:\\/\\/phantomwlaletus\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2fb03bcb09aef16e8b2fca04a06326c7bb4f61042061a979e93c7154d2f171a", + "regex": "(?i)^https?\\:\\/\\/atomicwaleits\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65d9f2510920cb09aadfb229df74a37c078f04107b23c80b2c4fd78a13826fe3", + "regex": "(?i)^https?\\:\\/\\/geiimeiline\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cc7bee88c8ad9b4be9829c3095ea0cb296c305acbc3cdb00e0a4239027d7d34", + "regex": "(?i)^https?\\:\\/\\/metamaxextensionz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "545a6d9952eaae68bf850042388b5987104403e3e3b304f11ae21baefd0ee86e", + "regex": "(?i)^https?\\:\\/\\/metaqwemrsklgn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6e5d296dbc59ffc98018568e7193e6ba8fe1ff549c5e038621feb75c0e5d52f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3f1adb04b5970788584fefc0e258bd0e0c4bdefcbf4bc6f8be4f9bf7e580108", + "regex": "." + }, + { + "hash": "72a4a9ec87c2d9ae15ff0ab5b324a7b8a80b0f2b07eec1e72f7f8a03c8c8879c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a3ad1c460c27b12690152aff8792256938fbc7208b34f967ccd49e2663e62a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fccb7fc914fd459dc0fba2fbdbe803fe3ff2ec9692eaf573696002945e95f7db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "531ab46b642b936691d328f7da8a48b28ff6b8efb4d6b3a978fc679f51c93925", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "21a0974a94d14d78ca3e191aba8678237b04d05eada3deda9cc56ac6ac9a95bf", + "regex": "." + }, + { + "hash": "7eef4eef0b6c1749189e6647945672ba5dcf1fb7b85e24599d86f5c85417b40e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|$)" + }, + { + "hash": "f630ee7f01f1c11cc637e6e85b6404e75c451d70fb3bbd922c985be9e14cc8bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ecf98e28cd43948a1caa67dea9f79907f0d2b6ec8323c65839505583d6eff51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign\\-in(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9a0e19cc805fd448f7a09507e0177e9cc57112db4d48cc1f616d7dd5ad2032e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign\\-in(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2bc6c8815cc6f97d75dd96bd1fb3335791eecad6ed2e5daabbd703fc82feaf", + "regex": "." + }, + { + "hash": "a9d21528a083d1c7f316a5a1f651c75ca30e8cfa5a8d0aebbf9f1f9134f42c60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eef4eef0b6c1749189e6647945672ba5dcf1fb7b85e24599d86f5c85417b40e", + "regex": "(?i)^https?\\:\\/\\/geeminnillogiin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ecf98e28cd43948a1caa67dea9f79907f0d2b6ec8323c65839505583d6eff51", + "regex": "(?i)^https?\\:\\/\\/upholblogem\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4da8907bdf5d552101c807226517665f88f8e5a6cb78d7c5c8153d6d79c73486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "87de0f54c9162249a48b10de0c0b71f02cb29deda6bfe37d8b4f23f22fcd740f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cd5557ded2cc059f5bf1a92e2fe8f28b17399c52d8b36d09a2ab483436e178", + "regex": "." + }, + { + "hash": "ee7bdcc4544c3bc7a548261c4cca2799b3e3e5bd34201c0653e06ac087502397", + "regex": "(?i)^https?\\:\\/\\/autumik\\-walat\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "894aeb12f8c193c0c3ae7c1a1903424f15766f970940e74b728ac0e894698886", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "87de0f54c9162249a48b10de0c0b71f02cb29deda6bfe37d8b4f23f22fcd740f", + "regex": "(?i)^https?\\:\\/\\/metamask\\-us\\-5\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9d21528a083d1c7f316a5a1f651c75ca30e8cfa5a8d0aebbf9f1f9134f42c60", + "regex": "(?i)^https?\\:\\/\\/atomicwaleit\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4da8907bdf5d552101c807226517665f88f8e5a6cb78d7c5c8153d6d79c73486", + "regex": "(?i)^https?\\:\\/\\/coindascomfogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50158a2ce088439fa6989c803ea2d11bd3e12f6c85f37a45075322bd956e8980", + "regex": "." + }, + { + "hash": "3d26796f6b0ee5f5992a5a0e18c4e1c54d002cc47cc0976fa07e1153ac31ab6c", + "regex": "(?i)^https?\\:\\/\\/gemini\\-lloorilx\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d0d6b569d81506bb8f507089da5c7abbfd5e97298cd58c498b05333f8cf6e7c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "31446881367c091c65b4bcd5b2711fec86f03e7dd9b228665fec18540ff07ff8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b5cb029a0ded3814e1ea00cf7f4b39e0a841db3ff0d24feb2d44ecd719c6de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d847918f723f890b864577b78f2897139ecdf6af98013af90e49164e6a13df8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a9335b676e11b2bcf237e993a0ba42585d527479b5e9e36a01ce5f6993677ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a3db1e339d24ca8dcd1dc16e10194d3a5d7c93f87c060bcd981cc9a781714a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "83a48e3686ac1bc9882d7559663762189c5918c33ee2e8bd9058ab39ff83c81f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|$)" + }, + { + "hash": "4801fcb9ce89e2bbe1da97cdc50d913c2eee317cbc72071cddcb9fc121b4774c", + "regex": "(?i)^https?\\:\\/\\/meetaaamskextension\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bb3030841353310cfffd338e3c2da0c5b1f840c28d1c0e267c17c5f2878ea15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ae17840b7ab7b9adb9c9abd91c17fa7623d18c79839ddca3e928984b3a83522", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b5cb029a0ded3814e1ea00cf7f4b39e0a841db3ff0d24feb2d44ecd719c6de", + "regex": "(?i)^https?\\:\\/\\/kuccoinlogin\\-us\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7c492a434910bb7cfac9432b3e9a91d997707552b98754d2d5dd391bac8472", + "regex": "(?i)^https?\\:\\/\\/metamaste\\-logi\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3848581024bb8bfcf795355346749887b3e16ded69968b68421e572d6fe5aea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9bb54f506b3bc316077261d6fdb1da361de06bc9f71b6ec696d2d016ec95a67e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ba12fd7f8ffab95a881245e264efce835be7395935cab339d43b3fd24d6546a", + "regex": "." + }, + { + "hash": "83a48e3686ac1bc9882d7559663762189c5918c33ee2e8bd9058ab39ff83c81f", + "regex": "(?i)^https?\\:\\/\\/kecoiinlogzs\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "846617409ffb6414e356847aead90be6f652f8ad1ddc91b9cc947208bf66d6ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf0c77410843b11e4e77f250e1e0edc13ac24a39d296200026684027ce719a3f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uis(?:[\\/\\\\]+|$)" + }, + { + "hash": "438da4d39236aa5c7ad5aa5784c1bd123a83111adf0e8b79dfc50fb156c97d49", + "regex": "." + }, + { + "hash": "49bf482b563b7fa404ca116485994e08eebe488cbb61872db13198832fc65f68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f006a2162a5b641b861747d85b2793de6ba0291df951433e44562da8d7721dfe", + "regex": "." + }, + { + "hash": "504d26cf4dcb7280ec55f6663b14ac312391624a41f6dc25662ee7fbc4b8f4c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "61958a330c30fd870fd8064a2dc5aaeff9b4174e06a571d3981a6fcabd09227c", + "regex": "." + }, + { + "hash": "cf0c77410843b11e4e77f250e1e0edc13ac24a39d296200026684027ce719a3f", + "regex": "(?i)^https?\\:\\/\\/uniswap\\-exhcnagel\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b062cedec590a04331ae701f5d76b2287559e78e98d6beb168a949b2f1d1baef", + "regex": "(?i)^https?\\:\\/\\/usecoxduswallot\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3170e03b09f1bb2e26dfc255509123343fc28fdb256984361bb909fc3bfad957", + "regex": "." + }, + { + "hash": "c0bcae324515dada907b9936ef4bc2d3733c9134c1054068e5ef5c9945a1c8b7", + "regex": "." + }, + { + "hash": "1bd1549be70f299449e8ca474425840c2a5ea056626ee81762ab5889fd7726a6", + "regex": "." + }, + { + "hash": "d075143fcc97a31affa71efe1a351eb45432b011d00a094018873ee7487371f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "49bf482b563b7fa404ca116485994e08eebe488cbb61872db13198832fc65f68", + "regex": "(?i)^https?\\:\\/\\/uskirakanlogunz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "504d26cf4dcb7280ec55f6663b14ac312391624a41f6dc25662ee7fbc4b8f4c0", + "regex": "(?i)^https?\\:\\/\\/gemeniligid\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c6792116b65b1f72880eddeb7e14ddbed54e18f7b0c1b3287af48f53fb9e366", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "9135fa7c140dea633d300c74b757597078e495127d8f09335ae61c9c8e38ca98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fddc1243c7efdb491440c8dcdcdb1efed8ff359d8c97cc6af4e10bf38626740c", + "regex": "." + }, + { + "hash": "a8df76c78c9c2091a0a44198c4edf38fb6240f4ad6d79bc7d8c1a4fa3db8021f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8308a394dd63897f75a637ceb25f50f700ad769845b829cf80a85f4ab7cdca5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "9f6ca74d783f731b2ce26c84a6020cca03b69ad45bf8ff13426ffed4fa16013a", + "regex": "." + }, + { + "hash": "aacb1becd9faf7b408016e0881c863bcb032641aac4edd754ae5e1764e04de08", + "regex": "(?i)^https?\\:\\/\\/rounninwalleat\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c6792116b65b1f72880eddeb7e14ddbed54e18f7b0c1b3287af48f53fb9e366", + "regex": "(?i)^https?\\:\\/\\/coenbaaswee\\-sign\\-in\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d075143fcc97a31affa71efe1a351eb45432b011d00a094018873ee7487371f1", + "regex": "(?i)^https?\\:\\/\\/cyoinbse\\-his\\-wolaat\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e125136dd0dcb8d39256130c3cd0bd84d46ed5055439011dc34bffadccb5f03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "640389131bbee1d94513ac93a8d62ad0585d648529c319cf0d5f9790d5711a10", + "regex": "(?i)^https?\\:\\/\\/mtamaskloginsignk\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8308a394dd63897f75a637ceb25f50f700ad769845b829cf80a85f4ab7cdca5", + "regex": "(?i)^https?\\:\\/\\/metamaasklogins\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec2763e2f8d5c00487757f234081bb300298a2cb75a5aee3217f9277b7b73750", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a01baa2c414de4e31459d3d2e0c3bb69f0ed9fa2e938ba075e8a2d3b98bfc28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ff5919ea5c7acb082efdfb73142d2a084b82dc2d6b19702b4eececcd8a2c054", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2dd5c000227e0c8cf3e1212f093cfea942f9e22093161be2543825a12697558", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d8e25be9cce366790b488fd79db4179e4dc0cbef4063173ed50f29b2847f476", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "94a8e7e22bf29100ed7a7e023625131e87c6915bca1b2fc69f2c668ba57a23a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2dd5c000227e0c8cf3e1212f093cfea942f9e22093161be2543825a12697558", + "regex": "(?i)^https?\\:\\/\\/atomecwallettet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b712f28d0fac80e928de75103ee414b503707e42ae54c96d91fc5359380af0e4", + "regex": "(?i)^https?\\:\\/\\/crrptoocoloinn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5088223a848f6984da9bbe7dec8a0662b4d9c1ad35c96e78532522a391187b46", + "regex": "(?i)^https?\\:\\/\\/phaentvmwalletro\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec2763e2f8d5c00487757f234081bb300298a2cb75a5aee3217f9277b7b73750", + "regex": "(?i)^https?\\:\\/\\/atuumicwwallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ff5919ea5c7acb082efdfb73142d2a084b82dc2d6b19702b4eececcd8a2c054", + "regex": "(?i)^https?\\:\\/\\/coinbasslogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65f64d8a5723461883d903898079ea544dad3a3993e885444db90e0d4b5328c4", + "regex": "." + }, + { + "hash": "da16e5f8d2aaf139296c5c7ae47b952a7940cb380300553ec3bc7eacca3b0192", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "803cf91107b8cf180e5a6a81345d07c16b075edd04990106b2c7365fb76004e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbc0c927f5f8148387ac5166dca3cff5020650eb762db85817f36aab662a996a", + "regex": "(?i)^https?\\:\\/\\/matiezmskloginm\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "277ee833fd18d3f697a37611feeb6395a9802269b98e7a051dcbf36e1028d830", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "846617409ffb6414e356847aead90be6f652f8ad1ddc91b9cc947208bf66d6ab", + "regex": "(?i)^https?\\:\\/\\/metxmask\\-wollet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bb8ece3c7c263b92a5127019c3b5bbeaa4f767983a3e587bfd6dca0a16fd8ee", + "regex": "(?i)^https?\\:\\/\\/mteamsokwalluet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "394918aa7b36460c2835ab5078e954183bd33c979b910752c8c07dcf42f9bfa3", + "regex": "." + }, + { + "hash": "5b320f2fd3af08b1fbcc081953aac5d83195403f8acaf5e84d9da47c32c1f67a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce1a45b2684991890d732fe08b091ed242e53ff0157e99455451a9184780eedb", + "regex": "." + }, + { + "hash": "8cb8d2bcff8230761f6f375bbff0a90404cb419774c10f57164a04147ee2b663", + "regex": "(?i)^https?\\:\\/\\/metamaskwalletr\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c81769d9513d1aacfc6cbd61dee2964f8d7c5ed60d0ec0cbbd569c6e9c15cd0b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "36db88b68cf23beca25caf2fa51e0bc52c37a9d244ebcac63df9f2e388c80a3f", + "regex": "(?i)^https?\\:\\/\\/upholed\\-logi\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c81769d9513d1aacfc6cbd61dee2964f8d7c5ed60d0ec0cbbd569c6e9c15cd0b", + "regex": "(?i)^https?\\:\\/\\/giominiloggk\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "396133e1351495f0390be408b0013dd501107a176354d544f4608be6af69c3d5", + "regex": "(?i)^https?\\:\\/\\/ghfhghgjhghjghjgh\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71ccb5d879c9008ed189d9e85dc21a87183d0da9d03b08a926b215167642ff25", + "regex": "(?i)^https?\\:\\/\\/ghfhghgjhghjghjgh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdf0fefb749de91477b9cc2a2acf8cf032605c298ab5cf6f9f7e7744262a9971", + "regex": "(?i)^https?\\:\\/\\/ghfhghgjhghjghjgh\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ac9c07089a2a988809ac55bfa3f4bc755bbefec48b2ebee3f064adb494058b6", + "regex": "(?i)^https?\\:\\/\\/ghfhghgjhghjghjgh\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91572ec9bf9a5ab49e61c2837bd80e22951078fb6426925a43de3afa02dc91c0", + "regex": "(?i)^https?\\:\\/\\/ghfhghgjhghjghjgh\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b58f71e0d3feb8062132ba3eaca82e0d6530484609619605476930defc77c91b", + "regex": "(?i)^https?\\:\\/\\/ghfhghgjhghjghjgh\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6650077f6acf97515041fa79df08618cdca0995070af6aaef96a08eac7586ae9", + "regex": "(?i)^https?\\:\\/\\/ghfhghgjhghjghjgh\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb370cd0a88fa066e26dc6ba9b262881a339dcbd5a59a654e800c6013161a50d", + "regex": "(?i)^https?\\:\\/\\/ghfhghgjhghjghjgh\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96774ab5f0c9dc52cf2630c274dd481f20a18198ac4c1929c643c8333cc22dce", + "regex": "(?i)^https?\\:\\/\\/dzfsdfgb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27ef0f4e1a06e933c2218ed3512fcb2b889d0d2e14f799468013e6c95b6f9b2f", + "regex": "(?i)^https?\\:\\/\\/dzfsdfgb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a949193462e07de189b8387b961d6f010080e1809cf5f515f6751bad5ab812a", + "regex": "(?i)^https?\\:\\/\\/dzfsdfgb\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c0053f290696a689df9cdfa42aa35ce4e400439adf33d5f970da6372c8bd163", + "regex": "(?i)^https?\\:\\/\\/dzfsdfgb\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a170c7f587156dac6f0328e101749da9b946d537722c81b8d7bf914ad5bf73b", + "regex": "(?i)^https?\\:\\/\\/dsghhjhjk\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a0bd1018dc9889eabf0b64daae79c94ed403be6b7931dfa084262405bda619e", + "regex": "(?i)^https?\\:\\/\\/dsghhjhjk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "229e0fe120e544df194909ae8cf2fb5c8e470883b685785f39ddf009903ce2e1", + "regex": "(?i)^https?\\:\\/\\/dsghhjhjk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d76e6bf68ee821fc22956bcda145f1053b89cafd7abc8a43533cbcc1c70c29e", + "regex": "(?i)^https?\\:\\/\\/dsghhjhjk\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e455e84df3fe66e4500a5a738dd162e9554028e5a6de52d55f6e51c6d2e05d7", + "regex": "(?i)^https?\\:\\/\\/dsghhjhjk\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4209e2bb574dbb4c373e07a05ee37baee2ca687c11e303ba6fdb04eae90d789c", + "regex": "(?i)^https?\\:\\/\\/cvxbvvbcvb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "448bcb5ae394fd2515af6eb3ac30002657d08af3cb948c32385f4d95437e0456", + "regex": "(?i)^https?\\:\\/\\/cvxbvvbcvb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0889a0e4572b94e8b73cda52e87fd5b25eb1b91d46497c9e8b3f7555d842e3c7", + "regex": "(?i)^https?\\:\\/\\/cvxbvvbcvb\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8aa47149f820514fc22c52c526d025eb688359c66afa847db336defffefda70b", + "regex": "(?i)^https?\\:\\/\\/cvxbvvbcvb\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "202aba34b0e4f0d98ebc76c9579a2ea8edf9166975f5045f879eda540c53f42b", + "regex": "(?i)^https?\\:\\/\\/cvxbvvbcvb\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba4de8d22b04462a582900e1d3d097724a0a6af58a839792bc785867ff09c424", + "regex": "(?i)^https?\\:\\/\\/cvxbvvbcvb\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e2a47d25c7c2a8da2690ab8984e127b3fafca7d6b4a94a34b8026916812f29b", + "regex": "(?i)^https?\\:\\/\\/cvxbvvbcvb\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "052f1afa87b0224c11b30c49d0012c9ef22770a1763a57a4acca60d9f39570e2", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a7d4ec9d6403ba8d3b8eab2673e21d8b906d24a10223d1ab4151dc70b5d3fd4", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d7e4d5e2bdc2239b99699bd9f1c439606aa8bf0850283a3f6e8a7559b46fc43", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff66317a4e71326b4961d4c0cfa336d647147429408c478ff98724f4831c09c4", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d428d1a54db8e3e63ac3f06a6a9f71c5f6784c14b910b4c9c6b5e756f715f7f", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4805480c3397829c816a378758a9a998354d79d79f6cc8a4d5efc4f2e97a30e0", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0fc1b949b83b39d674474c6e643e144a5523d7affffb6cb0518d73bc64a0793", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0f92fa4e923c3418065cede34d98fc1c8f3042855f89722a6d9c0a50b3c5e94", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "709ec79384bd3bdbaa20ef58a13b6f5113515f3b970772e12d773d2520f84553", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e825d5eed83b79d386bc408407cb58bac8e3ebb6ed822f6f69c9b358e16212f", + "regex": "(?i)^https?\\:\\/\\/xbcvnhj\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7753adf56e40b087ebed4a641ccc485c1ef861b9794edaa5f3763266a744aa6", + "regex": "(?i)^https?\\:\\/\\/fgjjmjklhj\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "463b952e2a158009209f48cd539e99ae2f496947d73a0e7506639ec590795f79", + "regex": "(?i)^https?\\:\\/\\/fgjjmjklhj\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9926bcd50427a5334057dc90ea175a0962b2418fe16aecda2d5f2ed46bbc0626", + "regex": "(?i)^https?\\:\\/\\/fgjjmjklhj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b04ef660e53f4906810e82721296619a2428939b421a3e9530e22d5dfeaf175", + "regex": "(?i)^https?\\:\\/\\/fgjjmjklhj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ec996a10390b22559506c2ac3bc59085f1d6a452179fc85b78f00c15bcb0796", + "regex": "(?i)^https?\\:\\/\\/fgjjmjklhj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eee232775155bc8e4cfaa7252b3ffb5adcb766e77a686ae5181c92f11c70209", + "regex": "(?i)^https?\\:\\/\\/fgjjmjklhj\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21ad28ec9d3043c69ba3d5ba7fb48602823c9659ab54362cda3ff4cdbe0eade4", + "regex": "(?i)^https?\\:\\/\\/fgjjmjklhj\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c14ed11a10cb0c881a5dbff1156453c9c30f0fb79cee6fa78188b21aed7b5151", + "regex": "(?i)^https?\\:\\/\\/fgjjmjklhj\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9bad827b9913a5aba730cfd5f4235b8ad9108ae2013247664f92cb306db1d69", + "regex": "(?i)^https?\\:\\/\\/fgjjmjklhj\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7490778887c73ec8245ec547284c12757b32cb4d2f039c8f16ab7675b8d788c", + "regex": "." + }, + { + "hash": "a0c23309aa4c77543ab9ea5080086ac3562622f963a5221189fb29f04675d9e4", + "regex": "." + }, + { + "hash": "c86b7347add5505c7e006d376407182a731a0b4315eadcda3e901d4aafca21ed", + "regex": "." + }, + { + "hash": "e5d95a204e452c552028135737cfb3fcbffc715e60c1ae534fb0f25ea37d46cb", + "regex": "." + }, + { + "hash": "fb8d5a7bae2aa5808c91129125236bc642286a62cf92e2d38d80cd91c78f9d83", + "regex": "." + }, + { + "hash": "b69b9d5b804e872e8e307f9f0cfc6611bd1e9e9385d231f0bb1aa851e6d70247", + "regex": "." + }, + { + "hash": "3a97669e40a50411f7ffc74d546522f6df0d6d4638e094717763b2f1c54d6d49", + "regex": "." + }, + { + "hash": "fbf0ddd7184794c96605d86bd7e5fce64538467b3c1edca361ca6193b7691d1d", + "regex": "." + }, + { + "hash": "a30f03d8e072d097ebccd92cc93a5ab27b11baa5ffe7620703e77bf18e4cf33f", + "regex": "." + }, + { + "hash": "a1f6695890f3aa748176996aba34389f9899d5d2b2aca7b6d5f97c63ed1e5025", + "regex": "." + }, + { + "hash": "72482d7ea06bef687fb81b86ab413fa7b7822ab58f8de41c4ed5c4ffd24e6325", + "regex": "." + }, + { + "hash": "8f9a14460c49f7a0e0e7ee799089369c1cc1a5cd5d8efd1359cb997af943cb40", + "regex": "." + }, + { + "hash": "93d7e227c5b5e1850a919340d87b75b8e137a35f4d5660be72568a0233a7c2d5", + "regex": "." + }, + { + "hash": "c22dd87afbb535f7963ea1ce12d1c5df5fafdc4199b1f1e683054ba632c3eb26", + "regex": "." + }, + { + "hash": "65a88aa981e3e34e167391862d13486e943724f33018ac9f5b7ff891719b2c7d", + "regex": "." + }, + { + "hash": "480223bae01530e300e6723430a6d37dd923a91963932980076deddf6d83e74a", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656c5da50224d80c673c445baaa34f9a5c658f80f0d7464fa30e5259befc37a5", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdbe8ca2cf7391aa3152fe9b10294d57175ee4c163cc71a3c809f6d81fad4fa9", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6bf237c1879b7365d14927a33c8bdaed1864112ea12fa5e5541735b9d8aaf2c", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d81210a0fff79129c90700314f959c0aab5a5c8153cf1a318fa103e207f38a96", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6f11b23a8ea3e4dcf38589d578fa028b71a1befd62ef373d451a2764e8f18df", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd309f77585fcb87357ebbbf20f5f83d601e3a1bd2abe7eee895062ca1472f88", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7be707242396367f5111ceb2325af046bec20bf687ccfe3a47c2b105e3b5d25", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12d9e6bc2d835c1d76dabb20af45695dc7b12f101aeef923936b56ec8ab5a0f0", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec1517f065129b119d59b0b721b380e86a46ef867b1bc33e8660bd465d3838f", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5734479f019bfc8226291695d158ce189fc3b8f42fb8ab9a8bb47a7f7308d546", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9203a8e527f6f2548e1c7d53017455c156b507a63504dc45183fd827d999e1e6", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "411bda5bf6b7516bd2467a48753b72918e35bb67f447002af8c06b942f7ffc96", + "regex": "(?i)^https?\\:\\/\\/xxxxdeo\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f15d29fb9ffa22e036340db439618b923813d36b99ab32d8fab632da9cf5551e", + "regex": "(?i)^https?\\:\\/\\/fw3erq3r\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36b4c144a1e8973f63ccf5127c4552305973f3498d8fc56f3b40a55a8520d61a", + "regex": "(?i)^https?\\:\\/\\/fw3erq3r\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f54d52dfa3847f5fb84c0dba90c14058bd807685ab4a896d683897dc539eeead", + "regex": "(?i)^https?\\:\\/\\/fw3erq3r\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2db18b7bb2e7df6a31513ea2cd8ca6259fd2faa84a58060be5a39a33b093800c", + "regex": "(?i)^https?\\:\\/\\/fw3erq3r\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f933d191c6f0da07f5256258e28adf8ce5ad5c9b3ff50e31662cb01749221f8f", + "regex": "(?i)^https?\\:\\/\\/fw3erq3r\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc04159dba414d990edc001bc40d9eee04400a676248d39961ea843de74743ab", + "regex": "(?i)^https?\\:\\/\\/fw3erq3r\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0df6d8e5436b1681ad200f6cd27c791b0feb7f024ba1c8338dce5e2745c58e3", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "974e37019fdd005a18e9f6a843ef40c258efbd021f32594b27475f280d38b96f", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e9c79859ce480f5bba4b53e9dbafef80f3950878c88ad163beeea9be9d4bb41", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce3a3d8f2c60c3c9a6d3fa6f31ed9ec019b0357691e9d122aa197866f61ec4da", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89cab3190410ed5116e9253e9512c751edfb196ea15b875130fd5ac1b33a6d99", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07c4b190c461ed68b7b935f0add0f740d1f8d30ae26251039c646fe9ee8f6588", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38c54da4adda4b0c9397fc7c85371ab78d9503e6ed98fc7949b9ad589abdca0b", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "268597f6482b72eebb3869e5a60ef611cdf70d8e1da52f7f56b1ea822d8fcf5c", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28270121ff9a1e35452b3465a7ddf992392494d879c80b3046cd7f332655e472", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42f6f50a6845f289a2d76efcf7fd225fc2fe2cc7075177671111856d3a45eae7", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae6c0f1e3d04ba8d9125311c365cd8d814af6f9bed155823b86eddca1e1035d3", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8858969d916bec1568b380bbde87c02f6e403ed5b71d8db0fd94f2f3aa6e40ca", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14c7ab2f703269118685c7f458502e7c48c509e45c7ef35d3f084a29b0dd6981", + "regex": "(?i)^https?\\:\\/\\/hgefdwghfvartyfesgfdtyefwd\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7263df000d362cff0885a9b34e1b506eb9f5ed16c22b65249bbfdc000d67bb17", + "regex": "(?i)^https?\\:\\/\\/jhghmhmhmh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4e163d6779b4cda222e0fed4cbcef516cd6dbd5d5a2ac9223ce0ef44d2992db", + "regex": "(?i)^https?\\:\\/\\/jhghmhmhmh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbbac7eb9dbcd62aacfc94459e27cf2f840179dba96592e7d9d9bd05d6973ca3", + "regex": "(?i)^https?\\:\\/\\/jhghmhmhmh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f55b28000168b5912cc8df3498c978ef117901baf5b56d993d2b0bef1231d938", + "regex": "(?i)^https?\\:\\/\\/jhghmhmhmh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "780753b205a0efee9160389104285f1c57ecd043800a3097a07cbac14125361f", + "regex": "(?i)^https?\\:\\/\\/jhghmhmhmh\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "609c08647abaa11da29772d3e961753d80e77d33ac8a98c6eb5364fea771f7c7", + "regex": "(?i)^https?\\:\\/\\/jhghmhmhmh\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5256c6ea91a268f49bc0546fde939bba4040b323e0007dc3c8283a552d6504a7", + "regex": "(?i)^https?\\:\\/\\/jhghmhmhmh\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0a7d0eb846ff266349baffc38a9c4ab150157efba63a35e2da4e64d3574b801", + "regex": "(?i)^https?\\:\\/\\/jhghmhmhmh\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d23014698742fe202b05d27b2e73a870c04924dfaf0f4ee6bf46bb2f826e420", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7abeaebaf66f1befdc716ba4254551d9ce5916aa9e32d35b22d203dbb1c13eb0", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e691b7efeb01781144ea6e6ee086e381e7c9269113c0c4e85e27716ab481af7a", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e84e9689e98f18568bcf9e95037d01e1e736a5c4babdd617670c6bb8f588727", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d740f31a5bb39e4cf281e978b1a2fe101e90748db3d14bb7d25f5710b62a5fae", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51f6f476448480d15df822b564204055dca0a5f49816238aee7b3b3bfd63eaf2", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013c2012ed86286aa6209b00247e230c1e4a8af866ae7e4292ae954155b8df15", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "609ac0607860fd51d3262f70ef9ecfc6ddbf4c65d2eaceb6c88b2c42dcd3ba1a", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8afa21ad23270e833ff2895f3e8b89f5e2e1df342da330b6116ea42997fc0b66", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c646229b077425e2ffc7b1ea1df8db63c8abee94edf9fd4b9d43121bf869f29f", + "regex": "(?i)^https?\\:\\/\\/hdhfdfd\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0079a45c4e4bc2d8d64b3086df084270ca771d36e74986914b78e1fb9f4ca1c3", + "regex": "." + }, + { + "hash": "b23f03990e934da7ec5af64dc888142adf0aec8bde583c64928edf5a834320bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca09ea4ed80a8bdb647e826ffb6998c85fc7d0887a82edd77039b1d6af854de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb96a41f2ecf70be1595825592ccef133fc9c0cdb5d3a8857baf2d49711e5af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b274147c0d212c31d52581ef6a47ebb4265632b215acf75c3425886675eecdba", + "regex": "." + }, + { + "hash": "7967a4307f285ade47032c581e259ae2eb8cada399d4861328844f7519e3fc99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+essss(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba7bc1531ad5fe6dc141d94d62ae3ccc1c703e2b56f430f4b0c8d9beb83fa9f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddb7e54bc8ddff9f2f27690073a25bf83bfa1b5325677177a016eb00880e46f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf4fe37e5ea2111428b09b08d9d060b2fe10430981f3b882249bb03da6352ffa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d383dd4d691e9f5c447ecfd01144ad390ef26b489d328af9285149dd7731254", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cedbebb2fc3f0d887b571be74e7f1bc4bc261abc7296027a7bef82d5c398641b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b00042ab1f427423bd4142f51ff81dc76a696166a31b83f127f32023ca6a761", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c1d23e91bdd58e7272e201706ecd0a4cc0ea72f0525d21a02111da88be6ea5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7fbbf7f506c30eba3fed2d759b2e15e455e848644c6600520c0e292a3b980ef", + "regex": "." + }, + { + "hash": "a88a5ac0407983e0aaee0fc4f1da275dfe4b4d982a76d3f3d153d69de9f7d05e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "080feca3d567a387cd625ca3243dc7c325f3302c27e81f27aec0b77d9d154fdc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "43f77e229948ee4fd34edf803883ca00bf8b4289dcad3df51cb80150dedf2ad6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6495d48b122eb4a88ba97b5cd4c7d83aa813ef4578951720148a8c748e1e0f1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "96c16fcce6a4ef11c05dec3c1c611674936e7eb960eda13d5a1ad4f356b220a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7967a4307f285ade47032c581e259ae2eb8cada399d4861328844f7519e3fc99", + "regex": "(?i)^https?\\:\\/\\/metammaskwalletss\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66465decad9733e2ef733a0d7bf5bb9bac6c365ae614bde8ae650f16e0c3fac0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8f004403f428e9341f171384b6c728c8873e106bf582aad428607790e818abe", + "regex": "(?i)^https?\\:\\/\\/gemeeinilossine\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "477e1d280bd7ab17b9b2aced8f02bc92ea238d618f3f304043e44db9461ea867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "054c89f7c6cb2d115a9b0939f266ede2328c50cab4877ba787cb57cee0104f00", + "regex": "(?i)^https?\\:\\/\\/phabtommwalett\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d16c7ffc147f5d0a300d24c6320b9a041e3187d5c3d13fb55cc041d509d9a68f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b00042ab1f427423bd4142f51ff81dc76a696166a31b83f127f32023ca6a761", + "regex": "(?i)^https?\\:\\/\\/phtumwalet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6495d48b122eb4a88ba97b5cd4c7d83aa813ef4578951720148a8c748e1e0f1a", + "regex": "(?i)^https?\\:\\/\\/phntmwiiletallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2ed362aba1c28446ecb6bee31f4f346cbf597f8bfd6921b904843a94e909629", + "regex": "(?i)^https?\\:\\/\\/phantmwalete\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "950c710b6076a2a84d35883504b3b2659ebf21a8825b4e05bd553294a5bd13f0", + "regex": "(?i)^https?\\:\\/\\/phantohm\\-waklet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "080feca3d567a387cd625ca3243dc7c325f3302c27e81f27aec0b77d9d154fdc", + "regex": "(?i)^https?\\:\\/\\/metamaessaskestiom\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57bf05b639d48d2f5598a882c5b2983c49c00177efb05835f5bd2e7a22d1a0d6", + "regex": "(?i)^https?\\:\\/\\/pheenntum\\-waloitxz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d16c7ffc147f5d0a300d24c6320b9a041e3187d5c3d13fb55cc041d509d9a68f", + "regex": "(?i)^https?\\:\\/\\/wwwronbloninhoodcomlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b40b0c023e21e3175329bb2219619352cc1c137e15e71e2aaab96b9c77b9484", + "regex": "(?i)^https?\\:\\/\\/trrustwollet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83beded7f625cef01da1bb4b1585cc7ceab78165da34e8ed5dad099b883e2a6c", + "regex": "(?i)^https?\\:\\/\\/reobinnhoodloginn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4710ac1843bedbf22841b62eb3c8a0e76a3776580c346ea86bbf4100a62079f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2674aa11f2851a1ccf60f216a1032eed22065d7e2b6184b79c3747cf655c9563", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "831833ca6d1ccffa05db82b09064f14f56dda70ad8c08fa3bd9733f87a161b94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "08f52ccc4a013ba403337dfc15f1911fec9ed0ae7f9c6294bfd259e499864914", + "regex": "(?i)^https?\\:\\/\\/tustwallit\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3af06fab79e31f0eec6ff685a64ede6563197bb7281f5cbeae8eea7b526f5491", + "regex": "(?i)^https?\\:\\/\\/trusttwallelogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "983e83150d31bc461a641dbcbd2055a79d8629bbd56feb77d98a53d4b7c0f710", + "regex": "(?i)^https?\\:\\/\\/paentum\\-wualet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "909adaf9805c0becd28521cc25ea429ac90930d79da7e11e274ad1ae9c6b8daa", + "regex": "(?i)^https?\\:\\/\\/phanuntomwallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81ad335b9123a952c3bad65e77dfa8a06e6bc637d9f258186f5b72a78dafff16", + "regex": "(?i)^https?\\:\\/\\/bitter\\-mant\\-logi\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "01e2c6972f1f7859aeee00fa84852efbc9957d64dff9a0caec68143797484b64", + "regex": "(?i)^https?\\:\\/\\/loggen\\-basecoinnpr0\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fd7827319cc5a023818b70722e80ebbcb17331272f7a6be29e1567e11c4b5b5b", + "regex": "." + }, + { + "hash": "9c28a142892b95ae812e7d847f6ea677bde0fe09b6eb8c4876c8730878115612", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b58dd58f082dd685ae095b570f6b666e9111b6f7ea908c88320e0935ed67cce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2e054c0ee82deaa088e41c482d44057b3e0cc1be8911c5146869146e4e0636b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b633418f40c5ea3b6abbb05adc00bda9af649209a1b0ed1462dc6c2e1be13e3c", + "regex": "." + }, + { + "hash": "3e06ecc4f16102592d0750f35ef22e1ea31b6537ac8427c2e2b7d29d48df92b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a024423ef1218a9b4f21f7dfd0fd826881140608bac8d5b015d11e9ab4156f38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b58dd58f082dd685ae095b570f6b666e9111b6f7ea908c88320e0935ed67cce", + "regex": "(?i)^https?\\:\\/\\/cionbassprro\\-logiin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc77738fedc61d84813008e34eae5d436017611ecc09f728b689e7d71f7e8256", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f0e876f455ef8543f805503f1949b12c351a0a0c06135f6baf2ce6c91d39a1b", + "regex": "(?i)^https?\\:\\/\\/coinbasxxxtension\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b80e0e17704d46ab12351d4c24698a8edaf0898fcabdd62592aa45fb3bb6ddaf", + "regex": "(?i)^https?\\:\\/\\/coinbasxtensbsxion\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "228e71bfc867c9fcbb71d2d69f87117e9f43d43859d5e2cc7e90c40283421160", + "regex": "(?i)^https?\\:\\/\\/phantoem\\-waletap\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75776af20303a689c90c90528c455dee4eae0a2bd8c8b8a4ea2b3a556099fe5f", + "regex": "(?i)^https?\\:\\/\\/phentuom\\-waaloit\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70f339c6f110e9fd05269f4dfe4926dad226b46d971b97d38d247f33f4bc2755", + "regex": "(?i)^https?\\:\\/\\/coinvaibixtesteun\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c89a7a3ae5d907e7143ea65501879eae6f705088b19de64fc27f04c1e3fc0be", + "regex": "(?i)^https?\\:\\/\\/coioinbaseesxtension\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b992292f16e8fe38781cb8a85cc8a2479651522bf0ae194a22d42d8f68580c9f", + "regex": "(?i)^https?\\:\\/\\/coinbasepcome\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a66607f56ca69eac479fece29469cb81cd8fe1e8d73adeceb4cc45d59d39226c", + "regex": "(?i)^https?\\:\\/\\/cienbaszestension\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e9568ddd481705e3875b530e2553dc86e9bb2a1e9e7bbcacf05171379f3d577", + "regex": "(?i)^https?\\:\\/\\/coinbasxtensvstion\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3081fcabf4bb1ed1ac7d3d886d2ec731544f1ac9455d9bbaa86972af9d841f6c", + "regex": "(?i)^https?\\:\\/\\/coinbastenesiuenan\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d64a07453e53410a6052cbc62d6bef913d830b27250ebd1c8f69d329a4487810", + "regex": "(?i)^https?\\:\\/\\/bitermante\\-uslogi\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53b07123e892f94d7ecb03e0ef90c957db7142e98280ba83a5c2ffde08fd494d", + "regex": "(?i)^https?\\:\\/\\/coinbaasewalleat\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25f7f1dcedc50c44dd9b770f1976fb1eeab53d55c964d01d74db31b337ad8f59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "158d6d62949fb3092b20c89e7275ee2dc5609f01c2736cd867f53f3c3f4243cd", + "regex": "(?i)^https?\\:\\/\\/phantomllett\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed44cce109fd5c3f16f9f161799334de78b675710fb3c0d6a4c25ee2fc960de8", + "regex": "(?i)^https?\\:\\/\\/metaamaskxbollet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26ca347558f3d276d65962b8e24827e98c433bef0d30758d46939eeb42790629", + "regex": "(?i)^https?\\:\\/\\/coinnbibixtesteun\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c86dd39f0bb6b31e041f2b3ae56e1e97ca50e23c390dc2a8d1c373681da038f", + "regex": "(?i)^https?\\:\\/\\/coinbasasxxtension\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba00d64b9c0b05dc475e587741eb649ab9dc8343da46c875531d9e6856ca3fa1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "25f7f1dcedc50c44dd9b770f1976fb1eeab53d55c964d01d74db31b337ad8f59", + "regex": "(?i)^https?\\:\\/\\/phatummwallot\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7a56c730f9e5b6a29ce36a07bd53521e4248e4a9cf9b1b089b3ef7a8ed9bb6e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d2362da858f4af4c2872b4ec6e497975e6b484d2edb2f530f997a85bde62ab9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2d960502869a8a675fdc7799f69db66fc01718d64d542564a398ddee9705756", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "54749d1698128968965875627a28f5ca7c96c1c2eff2d6bc003f19c47b751fb2", + "regex": "." + }, + { + "hash": "1645277db7350a06cc698082ededf61d406d9d651df3920dd766ad511235907d", + "regex": "." + }, + { + "hash": "7189e230d7c1d53d73916a0cc70f498027e69cd274b5d5e0030c803843514330", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7a56c730f9e5b6a29ce36a07bd53521e4248e4a9cf9b1b089b3ef7a8ed9bb6e", + "regex": "(?i)^https?\\:\\/\\/coindasprougun\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d67ca3bb4b23c5a8fbed500a26ae0d8e6693c0b53caf25e9e5c4b61b4d3e17e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d551b322c6f9d79441ba2c3d953f4581177ad59152b5e50288d47cf6b096b921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "936340928b7efcf8547eb87cc612d060b9f71d66e8bbaac76403d8c5e096e241", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "24aa0672c1c7b478b54b979501afac17eb102156cc93258ae420bfaaf80a9b33", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7189e230d7c1d53d73916a0cc70f498027e69cd274b5d5e0030c803843514330", + "regex": "(?i)^https?\\:\\/\\/trezurejkrewalet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4141b15fa6f19a967b7fd40526f92b2e97bd0dba1c4f343675f2ce6afbd8e695", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2d960502869a8a675fdc7799f69db66fc01718d64d542564a398ddee9705756", + "regex": "(?i)^https?\\:\\/\\/mettaimskloglin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ec251c0bcc53b57d8b11681019b76427b4db5adfc7f962e6089141c0e9e52d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa90529067bd95d18c0653718668d032ad07707d047887c07caf27b9352b0bbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a167c5a5ca34576a67f1504cc949386a6a000f511e82c7119283bdfbab01b49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a87a9bc6be428610ee20cdbfc7de5a47c80172e0c96828d869409bfddb924b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "43fbcb97e636ca9a80d22d870c2350d1cad0a7d75cc9808aa0647739993f66f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2939e52d65f916bee233d9f27a37f31d78b0ac71b48a5483b2953bebd508cc35", + "regex": "." + }, + { + "hash": "706d4058539c45b64d56bc7a19cad95b6109f5718fde8df8809c109b42d58b31", + "regex": "." + }, + { + "hash": "1063fdfee5406bd3fd433856c095b1e8d365a49724cc1f3805b40e85d1dff43d", + "regex": "." + }, + { + "hash": "e9022c11479f4ac44a3234965f1f4a6ad1a882d8460ead6f4943edeb9fece858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "57857e7a3c145590640c9c6efbcb05a9be8031beac81b8b0f88a69d0d08d6bfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b277fd6381270abe2112684b6921f50fabeb14b8b170130cb6c8645bf99f6de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "24aa0672c1c7b478b54b979501afac17eb102156cc93258ae420bfaaf80a9b33", + "regex": "(?i)^https?\\:\\/\\/conbasyprologhe\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2fec6ffc200be8fd7b6a5019a1d1e51874085785af4229f8c0851534a1d222b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "13be71d9c1d73b9060f697a05221c24dee1be8f123210223c16dbe3026a29cb4", + "regex": "." + }, + { + "hash": "4141b15fa6f19a967b7fd40526f92b2e97bd0dba1c4f343675f2ce6afbd8e695", + "regex": "(?i)^https?\\:\\/\\/geminzilogon\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43fbcb97e636ca9a80d22d870c2350d1cad0a7d75cc9808aa0647739993f66f5", + "regex": "(?i)^https?\\:\\/\\/mamtawaletesusz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67f4b71c2bab4ae2f10d70ccf03cf06250d13deb5ab2aef611c38f6327ad5ece", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd31abc2633547cf1e063c53a4bc5a66ec7a4a02f3ec42e29497de99cce2007d", + "regex": "." + }, + { + "hash": "a39c9fb7036ad4070ef214b606b69d6f4406cf32bbd2b431061413375950c0da", + "regex": "." + }, + { + "hash": "d5c2831e737424c125659ad3665fe7eec779065000291f95b26e951b7b32b85e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a42dfea4acb024dd059a32481a08d223bff5c4bf662c1ed7fbf4699984e9a39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f5dad5d792d4d670ee62c767bcb90c31b9778e37ed46d8f672ab2d4b08265ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "975cd23d545778c38f458b21b02229dc230eba2537bc0d06439f71abef4e8439", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f5dad5d792d4d670ee62c767bcb90c31b9778e37ed46d8f672ab2d4b08265ad", + "regex": "(?i)^https?\\:\\/\\/atomerckwallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a42dfea4acb024dd059a32481a08d223bff5c4bf662c1ed7fbf4699984e9a39", + "regex": "(?i)^https?\\:\\/\\/kuvmcioinlogon\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22e33cb27b0ef0ce97dc0f54f22593579fa265413c8919b4262262d7d0dffe14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "36dbdf5fa8c36016408516bcc9634f59dd9cc1359779ed22dbc77c98154a072d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a3a480c6850522b2cde284c9e8e3aff2d4b2290d013c44c0396f0d6d5f36520", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fef301e359c28a74e433a0d7c11065b7cee51611f77aad20fce2dc4de8de4b38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "18aadca637b1e4cc8b2c9a50ae66d563e04c2638398a58856e943c771daea583", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfa8066d8371631ddc7b5f15c7b6a2902070a64c359674b3c9fca69fd3d8d6ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc0d36bf820519fcfff69302dad8f71f18565af922e84acf35d26cdb52b3785f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+coinbaseloginpro" + }, + { + "hash": "06a0b9aeb98f7fe31366705792ccc8610c0747c243bcd283c788897b83ba6f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "30f9c2cbc815013a965bd76e1fc8b238680980fc6a249af85f76eb0468a29118", + "regex": "(?i)^https?\\:\\/\\/meattanmasklofgiinz\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f014d58fea11c5a388a3fb2dd89f5ca2ab9e1e00b16aa3515eb4340975a115e", + "regex": "." + }, + { + "hash": "22b867af1d6f7eb00ec2f78a6abc17b742dde31d4103761eab49a3a43132dc56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7b02ae78d15d77b1938fc3ecb49a3b037f468d58bbb3907232d7bddf44e1239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "665aedc892b95931d9c692c7b08ccd7cf3663ca4cf8442b92971fcf69b6a7435", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba316398e8bb7a1e7d956596b66f8e2a105aa832a9b69903a928c3990d8fee49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7da300ae752087b26be0c466212e9e845ccb2966d7c529d0519526c7c4aee9e", + "regex": "." + }, + { + "hash": "a969d44e97a3cdd7697648253eb75f3574b54a209ea38a8aff4772a5dca7c1b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "8181a1e7c728f1b50f7a0f3921c9f19e256a16742a0aae5bfe7f728bef0aa24d", + "regex": "." + }, + { + "hash": "d4194ad485add3a33a354425b108d77448ce26119a97e6019d986a0fbe33a592", + "regex": "(?i)^https?\\:\\/\\/mtasmtoklogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "976e12b5dd06bfefffd518879be53c7be1857dfa3a3f1af5769fdbbae5e29843", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee13d3e62ae3436c1a78d49a229dd1a69944d6da15fe845b4384cd80453cc2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "315a2214d147e3febda0a9dac6c84bc888b329962403f390822ec658e80fde20", + "regex": "." + }, + { + "hash": "88489f81b62074c3c04c729b6923b1bc966ec63f9fa96b7f47fd95b6e0a956ac", + "regex": "." + }, + { + "hash": "e6fbc34334d50b3aafef38fa13306b0100daf593436d22e17c5ae9f405eb33de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "665aedc892b95931d9c692c7b08ccd7cf3663ca4cf8442b92971fcf69b6a7435", + "regex": "(?i)^https?\\:\\/\\/coiennbaseprooleogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22b867af1d6f7eb00ec2f78a6abc17b742dde31d4103761eab49a3a43132dc56", + "regex": "(?i)^https?\\:\\/\\/metam\\-wallet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac6b873e5afdc0fcb456bff379aacd30644d9e17fadd043a40874d4a377b6e0c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "413ac136f2c13d855de1a33991b0f30548fc1cadb442b974b2f8327360b4b759", + "regex": "." + }, + { + "hash": "8b2c5602cd22a516a8fb028f0efa6e1a7df1deae31cbb9da32973727f2ff3009", + "regex": "." + }, + { + "hash": "ba316398e8bb7a1e7d956596b66f8e2a105aa832a9b69903a928c3990d8fee49", + "regex": "(?i)^https?\\:\\/\\/geminiil\\-oginip\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aab2ecf009932204f76b638879e58e78a506601f4e9cf8ffc66982c082c5dee3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7b02ae78d15d77b1938fc3ecb49a3b037f468d58bbb3907232d7bddf44e1239", + "regex": "(?i)^https?\\:\\/\\/metamask\\-walleti\\-login\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aab2ecf009932204f76b638879e58e78a506601f4e9cf8ffc66982c082c5dee3", + "regex": "(?i)^https?\\:\\/\\/coenqvsesignnin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3a109a87ec264de2142d85af043a6e0b665cf9d23b6e955895d29da96439a36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "02fe25ad2f8188bb86c5f66880c6ec36cef15cface3d275c3e51c0fb874f1a50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fcfd0f363bf648c6c11626c190a1f7bdae2900b6e3fd9c1ca4d508b30e572e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1c763c233e2eb5cca224e559661a5fd5a55732d0bf1114924fa5a4e191f6687", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+es(?:[\\/\\\\]+|$)" + }, + { + "hash": "28033d653bfa37b28bc94d876755593666c86a673ac3a8c2a20bca253735299c", + "regex": "." + }, + { + "hash": "a1c763c233e2eb5cca224e559661a5fd5a55732d0bf1114924fa5a4e191f6687", + "regex": "(?i)^https?\\:\\/\\/krakeeniiloeine\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15130b6212469fc6e7a59f9de58ac462cce39356372c518e8cf017cd2c864c49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+eng(?:[\\/\\\\]+|$)" + }, + { + "hash": "a508e045e723b6684c6c1f2a35efdd253ade1e4dcaca37e9bcf33b238af42a1a", + "regex": "(?i)^https?\\:\\/\\/kucoinsecurity\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc38dc771d495125c5f978734326415afe2dac68834f5fd6e687c8f672729e55", + "regex": "." + }, + { + "hash": "ebba8b1d7983835c0d045dbfcb30f6cb1a4ec5f0dda96647eaf15035dd681385", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d64a40e59374416b7ea940a514b7540cf47425e19cc937ff600526409541d4fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad6a39742117e91959edfab36ee051dec19f5620d725d64ff779eba90acff450", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a3c462a01eb21ebb95ed2b783a3222786464cebd36f879d6a60e1aa0fa9b46e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb299e810fabc32e03de0434f73787a7f1f13074b5bca2d1105fb7952ec1957b", + "regex": "." + }, + { + "hash": "f89bbd2af7034444329557e2aa48aa44ef02bf131571581c4ed65e1af5524b71", + "regex": "." + }, + { + "hash": "604bda8059fd656fd605e79494021eb179b605a68a576d26d03c3b05c610d2b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "03e23fedb06d9e4464c1f01c7f49ec1ed72669076b6c26d96139ab943de3b09a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "786dbf06d50b003ebb56a780ff6344714dead543fac0fbe4276f6a0469b6d896", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe63e815d85a85256141025a84387db861c5be7d11d386b544de646b4743f3c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2023[\\/\\\\]+05[\\/\\\\]+25[\\/\\\\]+learn\\-how\\-to\\-swap\\-tokens\\-on\\-metamask\\-app\\-extension" + }, + { + "hash": "0a872fb19263b397bdf2f13f281bfe5d3bdf4c77e08f3e12e687c0e8e66b5111", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|$)" + }, + { + "hash": "44c7029094a24f2c62698558a643c875d9a3dfadd93f1a2c06b2752091aae76a", + "regex": "." + }, + { + "hash": "bb81c88ad6dc6035ef30e99d0122aa38dfd1e6e132baa19663ec5fa9e76a66a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "f17233ff74dc4393653a97d2deacc4352539c4e00983f2510fabfab390dccdce", + "regex": "." + }, + { + "hash": "4ca2643818f39542cc2892d33d0da3e15221454894a0d9c19333bc5614fef8fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "25b6d8c3c2e7ab7b44cc7edcbb10099aa32cd0fe152ab08615ce978982e234e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f874a7bf84280728562b738119c929b1273ab8061404be7e7a927b57de7c5ece", + "regex": "." + }, + { + "hash": "d48a4baf43f1c2122f1ccf67c685c4bea2dd481031753d7f0dcaa42b10304b77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e5583f3a3512cf2956fd8f97cca6780b2a79fb08ff921ebb21df88eeddc67ba", + "regex": "." + }, + { + "hash": "0e57efc82d582b12a02c3d62375224864b3b4662f9efafbc49d9bae4c7611387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "730bd990a731f2b26f360c8c2e168b0c70511af38f6e6604eae8c50b3839643a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec8dade616946dd30fd7244400a05633ff3eb583cd22811eefe9003bb692d5d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+exchange(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2a7dd2f9a90c6ab006a21e89b912f4892529c4bdcc665abb3a24e7b7a9239b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdc8d0d1d7b9722010b6d055d1a556542bc63ed70642b969c9621321c7d519a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signup(?:[\\/\\\\]+|$)" + }, + { + "hash": "c392b58f9b6fd2cc727407a4eebe116d2e874aa3b7908c4510df7ddfe2456206", + "regex": "(?i)^https?\\:\\/\\/bitmarrt\\-loginsp\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25b6d8c3c2e7ab7b44cc7edcbb10099aa32cd0fe152ab08615ce978982e234e1", + "regex": "(?i)^https?\\:\\/\\/capitallogin\\-itrust\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1181ff2b353aeae2fb78bcd9f6d7093165349b0317d6f6da305e41655156b8ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2a7dd2f9a90c6ab006a21e89b912f4892529c4bdcc665abb3a24e7b7a9239b6", + "regex": "(?i)^https?\\:\\/\\/phantomwaliet\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec8dade616946dd30fd7244400a05633ff3eb583cd22811eefe9003bb692d5d5", + "regex": "(?i)^https?\\:\\/\\/gemini\\-logneii\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d48a4baf43f1c2122f1ccf67c685c4bea2dd481031753d7f0dcaa42b10304b77", + "regex": "(?i)^https?\\:\\/\\/walletunriswap\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "112d3e69da3ecd3c337cdb18b9f2e31267ffe0c75a0357c1b190ac9ce9f154fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a494f856dfb921420aed9299e2f0b3c1cb49dd8a2c8e346677400380691e70f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "493c04600ddc421675eb332455a8234f62ab0f86a084bf8a4b5bd597074a9b9f", + "regex": "." + }, + { + "hash": "609a2f3ca42b8777e27cb6f56835ec13aa2f4675e05f96da55bcfc18bcae1e53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "72d459861f7b38d5a09749151b7e4a1c8638ea2f50edd26dbe37d97ea594a415", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c0182dbc8f5dbe6f8f9d6aa77109bf13b3239a39c2a2b237a7259fc14738cca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3572dcab82407fa5281e93c7704299b1fc6a0e50da99166a247e22d3ba75521d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0975f2e5f06df17cc0953efaf6599628caf56fcf930081080a77c5e4b45be12c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8267c82545c239939be4fd71fe0eb0965494181134804981558d7a7ca251d31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a28d420cf71b4f69c9e2082572e3de456254c23f079bdd2f9c6de21dd9950a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "514fcaad58907347030b246d792d9114351be553bdad5503c7513829a21edbfd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c31582502d757fdac4af969ab75034c418aaaec404bd258c81a65a8b809e2c23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2c5ee685491e5ff843311b9205dc63e8578047f98efe0a467507a411613d25a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "12f0d559b748bb988633ac4829be406ccfb5dc0e4a92be66cdab3d37f0e6663d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4bf658b7bfeb3f232d12f39ceef6ad278fa6ebe2bc0d9945f8710ea1344a964", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "59434d028649f1bf9d33fbffcfcc003df89459162bebcfbfbfb84e471cdf6dea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2c5ee685491e5ff843311b9205dc63e8578047f98efe0a467507a411613d25a", + "regex": "(?i)^https?\\:\\/\\/trizor\\-wallt\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6464a9a84287709fac5e864f47e2a1c82fe340237c953c055d1f28f47e38e121", + "regex": "(?i)^https?\\:\\/\\/rrobinhhoodllogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a28d420cf71b4f69c9e2082572e3de456254c23f079bdd2f9c6de21dd9950a2", + "regex": "(?i)^https?\\:\\/\\/roobiinnhoodlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a4fc13be58f739747f421f9fe3c73bb1b45e0c8c905cba44feada6f98a8f6f", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ca70b565eecd797972ed3e1652742cb1e2f8add08ce29792b4f388b135ef830", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae011c709c46e5184b43b13d121651c4ad29b3e0c0141aeb8252538cbbe78893", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0a90a6d5fc71f5e876143f8e99f5c06d8760e48ea51589e54b1c295fa207cf6", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "970c1aba0a6963b8d665453e34f70eda20c6bd4de6b888fdfcc5b74d057b2680", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa95d3f067259041cdd7cfe48b97581720cc03f09c030ad3a7d72255d381d3fb", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3152aa48fb7f07a275d76d86cda4ca967491f3bcad12aab48390427b3a65a7b", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b28f2aab7e998c7dbeda3e8f8566f34e11ce28b473c219baa7879954691fb319", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "393099ebfa75adb4a9160ff5165c2c077d9b0647f7706cfed2f168b139c259d4", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c71655c5a477a938b8c61ec5c25d6f8e0d528de3c0d4466b4ab43ded6c31881", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f8c33cc5e1490d10dedf384daa7d4aa3698b1c62e2e472f67d3853173a520db", + "regex": "(?i)^https?\\:\\/\\/perfectvbuks\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f306edf35fba6908a8e31f10511eda7d46377fa5aa313b0f5d02a26ff5afca82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ba099bb71db31badd5ec7115115634e494ad8b6935e9cc4df0291e2aa5cc8c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "113f73916f4246022fcce13b96941f4598ff8b2bfb7870197537df42131d6ec8", + "regex": "." + }, + { + "hash": "9be4373b47b025639b8228cfcf78c6cae55c73a8b842f58cf113bba0f1572f56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "f306edf35fba6908a8e31f10511eda7d46377fa5aa313b0f5d02a26ff5afca82", + "regex": "(?i)^https?\\:\\/\\/kuckointloginmt\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a1f4043becdbbeb74586d057517e8b0379ed4715bd943c984cfa000b4819a0", + "regex": "." + }, + { + "hash": "4042fb269f52950105f1576b93901da46905bd834c48cb59c2b4f6fb5af48333", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb2908c29816cee7bdf60c88c2b3b70912733fcfd817913be6cea256d6417438", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a2f7f9641182d41273b534cb0ffae79a76252082ff8fa4e58c84d65c2fa2ec", + "regex": "." + }, + { + "hash": "7eeec0ad13f5d4945d38ed5f0e16b9d1bcb72735d88a93d12b255b7b26649897", + "regex": "." + }, + { + "hash": "d407a3a025ef7adb5713083c3f60c971e945bea69ccc5bc080f1905ae9a63692", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb2908c29816cee7bdf60c88c2b3b70912733fcfd817913be6cea256d6417438", + "regex": "(?i)^https?\\:\\/\\/kucoinlggenn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1181eb176f027e9031668bd54878bef11b78af7a7f64cf82dc5e3b39adbd267d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bfe649a749503271c5326d50a997dd34d5fb1cc0d681721f69119eb6a46bce2", + "regex": "." + }, + { + "hash": "fd2e58ef9f76a1b4a14b53220ad8b7a59e7e0a6390c78160aba30aa3d848f0ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "24552c4c70926e84958ba19dee00ca3bbf8368e544a6977ce7b21414a6d8636e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "2da11a8feb554d1a4a567966966f44461b4a030e504493dcd41eb475b98527d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f115fb70923016d290e1740a5b5d5e56508e75d87db18f4ad78e47d5884d7c9", + "regex": "." + }, + { + "hash": "582c6619869c9fc789bb0f34efd5ce588db51678cbb1a824f5d2af6db0db824f", + "regex": "." + }, + { + "hash": "6cbe2ea485a9dfac2d8e106871a3a8a5748eeb6789e13a97f8914bf36c752ca4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b561704c5c43b0ce89b6d5df08992e2399ad6ec44cb7c56f6810ea77e310e7a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1181eb176f027e9031668bd54878bef11b78af7a7f64cf82dc5e3b39adbd267d", + "regex": "(?i)^https?\\:\\/\\/coinbsceprolugmx\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24552c4c70926e84958ba19dee00ca3bbf8368e544a6977ce7b21414a6d8636e", + "regex": "(?i)^https?\\:\\/\\/coinnbasezellleoginn\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cbe2ea485a9dfac2d8e106871a3a8a5748eeb6789e13a97f8914bf36c752ca4", + "regex": "(?i)^https?\\:\\/\\/ceoinbasseproloegiin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b561704c5c43b0ce89b6d5df08992e2399ad6ec44cb7c56f6810ea77e310e7a3", + "regex": "(?i)^https?\\:\\/\\/uphouldocmlogin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c2c30f6ee89957ee18ab39e0bd54184c940149b8bedffb30d9d844fe7162202", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a4e501e40a015227a3c73f6abd25c8a8f86df74a189acabdca0eced10c35bbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4ca8f12ca079a2a1792365c383a6519763cc2fd464d0249496980644a196a43", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "c97f0c9e910c230eff02300926d7a9ada8fba14695b63f7d9bd3de0f2f84416a", + "regex": "." + }, + { + "hash": "45736efecac24dddaf760bef00d32a877e6832680b0f612a479d41611fee2ede", + "regex": "." + }, + { + "hash": "5941c04e74afc27ad29bc5a3cf0e8cdca0e28425d8e8b324c9fa254b1fe475ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0c64800f0acb52c506b8046bc34d55aee9a42115a4a68a8c33ec238185c65b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebd7f1490e8b878af36594ac1b30fd8c0e3cb4580bba9843034201422f644cbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6737f5c3ef67d288bc87f2296aba65a1531ac75ff1c4d47a6184a27e0ce0826", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c3a6f7bd01528d6cb3c6fcb1535158ff5a3b83b9bbd6483d2b0d8251775d2e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "054dd5cdc028100b2e034fca84642609eee586f56c1c22fae520b15c81a093a8", + "regex": "." + }, + { + "hash": "ccbf924e6ce88043548b4e8b22c485fc44fe00766a31b403a3881ab0f7ef75f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea917ddd77464b3993990318ee8bd2b06d0de9f3528d7634665338829358c30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a11097f71ee51f8609ac2921fc330aa10c608c5f7226ba042ab03b51d02d919", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8b91b30c1b9b616ef0930cf8fa555f3a9bf08d0fb02da867f3d6383f2d69927", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "34f507980eeda062a6224c2a2a10e3da94783be8c26907a19c27a8c638fe6dbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "34f507980eeda062a6224c2a2a10e3da94783be8c26907a19c27a8c638fe6dbf", + "regex": "(?i)^https?\\:\\/\\/trezzorwalle\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b4bf0e39a34c0f718ca57281fd8025b210c49d70ac0dd5a890cab8fb8473039", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b4bf0e39a34c0f718ca57281fd8025b210c49d70ac0dd5a890cab8fb8473039", + "regex": "(?i)^https?\\:\\/\\/mettoimskloggin\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ddbbc5f9b5dc1a56643caeb4763729ecb43af88428e38b4b2dc28b5dec09d2f", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4465c2099aec1514643d1fc067ce742971a7d738da1471dbff6de778cd9ccba4", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "234949049ba7062062dd15e4318b1ea6156688504c6fe8fea866d946c5b48a66", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e141ad67e3b022debf7b58a8c64e40eaa7dd64c72f0e10877cbdd03caef48ec2", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3bcc82ba6c54a7dc67627e7bb2289f775a1bf53a9a1634204dce472735d008e", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c29f1c5234a4940d4277b32bf5bd6bee6fe58f6c3f41584a1f6ce74426cfe453", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "783078aa34350a6510487a76dda0f8d8d8f5061cefd7b4eba36bdbe567f23c17", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba4db4476856cbf852245ca0513ad8a8938d865403b378f6c6d5897bd43045a6", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "787be2040516cdba4084ea8c15f61b3fdf409a8fe0b0b12b60a894b0aa30f5d5", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5aec8e53fe5f0a04de29b22fa76a64c32da69b3ed6a8be50782a52c086b71522", + "regex": "(?i)^https?\\:\\/\\/firekirinfmoney\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "298bad35b35b7d42801f4d6c0b7dd114abdf5a5f3c53603d7104cc1ba83cf994", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f95f8b755872911012b2d3b7aad4475f2572ab1df6e2d46803b197fcb32a6bf", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "731996f54fb4f1272f0166214a4380598c9ac782c6aa39bbc883e32f4a45da12", + "regex": "(?i)^https?\\:\\/\\/corbin2121989\\-joyce19196\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2b853bbed611336415ea453acfc8d985b1f03cf169a0bf648c568f7a5498e0d", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4287a0675020dfd41782929b18d6cb2f5f98305fd871acc87ccfa1af1746ce56", + "regex": "(?i)^https?\\:\\/\\/macrobid\\-leje\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e81f1902420b7f2a9940097658d2f9c1664865d66a7bbd277446d3e1938ba8f", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36415da346380536ec087380db2cc432420eb827c5c83fda212c12beaf7946fe", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86f61965d80bab9c4b84e44e9246b423d8f8cef446b579b0937265616c23caef", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e87946a891c1746f93c7e25cdd6491d226552677fc0094f9bacad7e4b6103071", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f586ca0497573edf98fe17dfebfe0106a37932ed35a0d4300cd551e248c3ffa", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "974388e573871af333aec73956ebbccd50d634b9f8e4eb8ad4edd9b1b1d869e6", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1587a951638d3aa6bd9efbc4b19eacf47818d858e2af40bd5a11e7d58ddce804", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77c46e99d049da044760b5e3b4af27f20d44236f7a11dd7c81e360feabf23b09", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca45111da641d66ad0a97671ca6b88bcf333db17d76585262e42290c2e92c6e0", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e74959dbfe9b859157b1ac1b44ce4351b5fd56e2513e5e0883e38a1b0c221fb2", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b94484af2cc9608694393a37b77993a7ab5a207ffbe0baa1237c88047f61d955", + "regex": "(?i)^https?\\:\\/\\/goodbargainseikowatchessportura\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6e3b044c05b571a4a6a5de3dad4ed821d861c40ae157888a385f51778e0adad", + "regex": "(?i)^https?\\:\\/\\/thebadcreditcards\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32ae1a62d4a74fae96f8651b7f8f6130d03180fcd8960671a50b8fa53a20db05", + "regex": "(?i)^https?\\:\\/\\/thebadcreditcards\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "702078b5c7937b3b3e940f206af9100a520e570e757ce9d63fb693af527ed1aa", + "regex": "(?i)^https?\\:\\/\\/thebadcreditcards\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9aee8cc80bc909f5198ce980df5b3ddadb098d606f298e843ec876baf1154d", + "regex": "(?i)^https?\\:\\/\\/thebadcreditcards\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7556c83a1a71e03c58ccc48f4ab56c31cc2ab87e4ce004ceb51f62164cdd6228", + "regex": "(?i)^https?\\:\\/\\/thebadcreditcards\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ce68e94add1ed7e1e9e208459f8e042d406574f17363a8c67ae66d7c76b9d4d", + "regex": "(?i)^https?\\:\\/\\/thebadcreditcards\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30a714bbedc215695137669469bbc733b38e39c44e73b4b6461dc75c4a64f13e", + "regex": "(?i)^https?\\:\\/\\/thebadcreditcards\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8802bfb0036235fba9f5686e1938405980442e2d8eba46ae37f14fd73033b3c3", + "regex": "(?i)^https?\\:\\/\\/thebadcreditcards\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7dbfff7b48ab0e8b03f9bce02c77f4549b305b473f072897d8844d32ee0152", + "regex": "(?i)^https?\\:\\/\\/thebadcreditcards\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd2b9728df239c711c238cd2180159143b00c4d500c7cdd7e5c508ffd8971775", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "651fa7e179426c752372f95ffdc9ff6c9e2e3be0b1fff35b611d53872fc6e994", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efec35f3fbf1508d90e488e8bb2c3940b109cdaa2f208b4cf1c5fe4b03f8f677", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9eb5ce5acb2c7ebde311511e0208186734c23a8b0aa966b01d1e48f2dbc3c841", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b76bea3fb8fc0fcf3081248bd3abb3485763bfff043e54c22161e65d56c28315", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d7ec09be22b267564393f1dc0257abba17d893d3c34b65115fc7b4af671143d", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "078513074077a4623ef4c5de0cec324ef69f4fc11bdb67fdab5464778ae1e71d", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fac88048eed746954e873b201a4a9f13635508b67b27010eb092a4cd8c538e5", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b11bdfa1fbd12af104470645d1ca32939bbb461ab17a8ed1832eab0e0c3541ff", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dea48d6b56cee1af2f6b2ca98859dc61e50c340e12c35e2675eb7b316b9e230", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4cee91df26770c8c1958455f9c88166248d0d39d3fb56bf0e2e152744338938", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebe8d8eca0acc15e22cfce2beb8d502d017319c124d3932608289aa0d478d006", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "533a2cf2673b7eba7cd02cde99ba312634516397b0bd061751109ecdc9f1192f", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26ca14936e71bc5828d89742537867599d56818df236f8f84931047736b937c7", + "regex": "(?i)^https?\\:\\/\\/thegoldencrysanthemum\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49aa6069273638d32d8f5323d4719323c73cbe79358401749b24eaba7fe18e0d", + "regex": "(?i)^https?\\:\\/\\/thegoldencrysanthemum\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "766972a392dee892f6ca3653c1f2b0416aaf70ab2b61fe01c8890d8de7cd5a4c", + "regex": "(?i)^https?\\:\\/\\/thegoldencrysanthemum\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6407ab1e1c5f6ebe0838529006fb535b2b149d33943587aed420b99d483c68c", + "regex": "(?i)^https?\\:\\/\\/thegoldencrysanthemum\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbb2d5d79274c19a09000a62325fe3b50a614b7634b8cbca489f0484e1957be6", + "regex": "(?i)^https?\\:\\/\\/thegoldencrysanthemum\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb5ebb6519385ca9fe75ae437a8605763c4772179441d89f86c0d4eea967d410", + "regex": "(?i)^https?\\:\\/\\/thegoldencrysanthemum\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b40cd5c51287ebf01318ffc1ee0326683702e4d860a862069ad4f9950570944f", + "regex": "(?i)^https?\\:\\/\\/thegoldencrysanthemum\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d691f1d706fb6bbdf304f8c26a5c7b232748954bd59dab4f9dc3385617be8fb2", + "regex": "(?i)^https?\\:\\/\\/thegoldencrysanthemum\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdc32cba4d10920e843569b93013c8652e67b4a182d1b497efb51e290db88040", + "regex": "(?i)^https?\\:\\/\\/thegoldencrysanthemum\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29f6bded8fe8bafccdfbba6084e93c0bf5bcfeb3f4031af99e31c0c58aff8aaa", + "regex": "(?i)^https?\\:\\/\\/undviagrathat\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d1c5180c698773fb96dc846aa86e3a4fe83a7fb0e5598d364c4dab4489611bf", + "regex": "(?i)^https?\\:\\/\\/undviagrathat\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "771f14132de4c96411ec6eb3c26ae466bb64d13b57db5151dd5b8a442b42a504", + "regex": "(?i)^https?\\:\\/\\/undviagrathat\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "451a09d18ee83530c7754a0dc96a92a35c3c558aa1c274acc709b861810e465a", + "regex": "(?i)^https?\\:\\/\\/undviagrathat\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "067d493ea1edb2fe51ae2bcc90333ebb2f7fde0ef762a02fd7ec189feb84d31f", + "regex": "(?i)^https?\\:\\/\\/undviagrathat\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eeed1eaba9846ccd0a7ccd6ab0406811728978d885ea0d683bc118b18b26f58", + "regex": "(?i)^https?\\:\\/\\/undviagrathat\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15213ce957dce2e3e7f62b92ec635851d392638f495ae6488f4f955d6e96e3c0", + "regex": "(?i)^https?\\:\\/\\/undviagrathat\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60d9482465092e1265cf1100ddecaf3fa90a815860cb2cc08083badc9afb544f", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "762235e51a54a422a728939a9abf5e1050da5c1a24e7ff88bec8081dc6474c35", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14b561da358520ac66a3a4a353109b4b20bc6b726c6affb736eeca7094951585", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af99945094a8a9c3438d0f69a3c787c4d730682d0bcad317dbef4462609241c2", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a91a02e3b87629f2b6102dc0c83ae2ed9e4e851a0e3efef7947522f96aa822e", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb9d41c3f9dc707c8975a0a3298bf82eb891786d5a9c42af4fa4a6d88036accf", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b35d18cd75462bdd1a2edf310798671c8e55e1d2c9d2586cfdda20d5438705d", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c78242fb6632a202129188a1a0a4bdbeec5c29406ab29e05c099e604bdb1c11d", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a51dd4a9de9a69a10d2c2ee0939f6331a51211e83643b3383a50c395599b692", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b7c96e331a2aa39faf238ea277e5fd7e51b61a8303b87a6d77654d3270bc36c", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa6751ef1d9d712751b100e54f00658de55eec433b8c2ef62921eed8c998ec8f", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "259fa00351c34a7564a2787b80c42480f4001bbf524450da802a52d5427991c6", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd4d505c04961cd99a799172eb6d18225c00a1d61aca675b2150a6a50ca36a6c", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec9bc8176a169418992719d1fd218707b81cbf67b70a7776363526ab4539b773", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "964285b5f71bf6de7953128daeb1b08a9c7e0f97ee69c0647ac020d504d41666", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6860d2cfb69be01a0ebe26b35dc5dd5dc1240ca7a4a5ec2fb072a3b945c19c94", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9f638605fd47480859e9fddff50f6e76392a723287b8be590bc36261660d8e1", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae9981e39524ac1b3fe71a0aaf69611d74c0051cd7f1b0ba6b35a25be87fcb9c", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71532511d0c974ebcf872fdf0dfc74ee370c2dd40a32428eb84c3887d2f1ed9a", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d24a7473463b0c57c2d4fdb8eab85bb616739037d99a502abed91bb58dcf1ea", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "762bc40f174ccc2a07919b9f11ab02b1877c682c42e13d17a37770e98d6d7264", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "748f92c43313a358296b92856ca7115c9c1eb25a214d8240698ea5ba62e6b45a", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b7c6373d1f4f253bed362a79a02e1823860bee4ccaf5e743f714e524dea377d", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6076b952f7f10454007a1499f843348b563acd313fecf23ed6f2c7bce401611e", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae6c930474691127ea4710326205823ea52d899be2b43e5ba255f43fe50f928e", + "regex": "(?i)^https?\\:\\/\\/silascosasfuerancomoyoquisiera\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a29a9e06ba599d8c847c1d56fd6ea26b0dd77ab1432f7521469966b046894ff4", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56eabba66fe3f8e899104c66ddb6d713070e0f8d2241793389541a42f3600cb2", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e81f1d83501646cd4370ecd31e43d2d5bef6e3723786a7b0ef7afab52f09739", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6e5b878f32449d2bd07ae82fd0393352e2c7767d5e7fc224303c06bfa0e84db", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec51ae8aefd91e60d966d73d058045e69271af635565c1ffd5a63375f29c2adf", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d380d671bce81a7aaef856baf704d065541b1470a0a146094e9c54a7b6412e2", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "282afecc99da888e16c7a3fc0cbb6e57d46a26a269c5f85d86ffa30f205c119c", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "711248982b69c3fbcd04326c7f42d3d76fbdad72d551e6e98b8bcbc35be23aec", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3830a4dcdd9f77eacf08c1d247c031ad851d9dccd3b98eb91c851296f46cd46", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "764203304471b0d9c90add167e07f8a1131a5066c84b7cb6b646b1229a24ff23", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c2c99d004c433f7df18db76866297c76403f5b20ab5fb49c43f9ad27eed7b50", + "regex": "(?i)^https?\\:\\/\\/98blogcontest\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04f926200e69ddea2401b6dea46f22103b01adb6c94294933aba1c93553df617", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8511271f1d7530cc4ba8e938c3d27778abd5434d0d90d18c8e0e5176d0a7ea9", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef1b058e4735f0fb031ba3f9cf8124fd46a04ff797da4a0fadaddd8e4395acb7", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d9ae78755c774c11034e36f1e18cd7397638041206b03c527c47b75c6dc870f", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c73a68043948a92c48b04471a501093cf709bcb085be1b5c7756bab21e1d7e4", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d72ef3c8a4e1a64607ab099bdebf5e87e0c72278f02536f8fc02c670c442e2", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "228c0e4863ea940795acdfa4c71be8e07c89a36cd5c84166ea9288398caef161", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "394338b4f85bdcecb22d95755145388be3fb5a16d0185428b77ccfd73f4f301e", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8d1e88b68cc220b9d4612cce419921df0af15e1abe07234d93ee23633e84e17", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c33a13e6e9f9f49f3fc17c8e0c050d45aeab4e39277e61387be9c516a8763267", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09dcc345abc62876e889a29611b67a4bbef174d5273d39b353aa12b6c61672bf", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14b8142e83cecb019bccf2b2bde7c9688ce32cec19330abcd26951ae14f219b8", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e0696b73c8605bba7f171836a27229aa13af7e993412ad2c3fe46ca994f7951", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71416750b2e78930e3f6d0658e8bc3da6b9c10c43fb638f428ecd9f1fb1ff96b", + "regex": "(?i)^https?\\:\\/\\/townoffun\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a88e72a9cc26fb5876cb638795415f9d8db9a346dc85086f2148e7389ea2238", + "regex": "(?i)^https?\\:\\/\\/fotos\\-by\\-nadine\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18aa81f3f6b1b4e234fba2d18151f2b9bace10bbe1ab56de0e37a3aa5e9b05f3", + "regex": "(?i)^https?\\:\\/\\/fotos\\-by\\-nadine\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c3ab57a161b0292064b927a79d1a4f6f9ea11dc1234aafc60d90ffa8855b315", + "regex": "(?i)^https?\\:\\/\\/fotos\\-by\\-nadine\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42a7665ed20660524a267f41145fb07c29fb2841ebe4522c74e13225edbe90b5", + "regex": "(?i)^https?\\:\\/\\/fotos\\-by\\-nadine\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8288fb8c2cb5a5b10428dd8f89970450d86a599f53bb9bb90ca215e6b842b4bd", + "regex": "(?i)^https?\\:\\/\\/fotos\\-by\\-nadine\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21680250add7b4b7d1ec08800a116cdd3511d79d41d5539d14e4ec7e06411f6a", + "regex": "(?i)^https?\\:\\/\\/fotos\\-by\\-nadine\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "701b40b0222215779f0c45fd845673369dabf48a2fcc9eafe6841f9bb5a6edc7", + "regex": "(?i)^https?\\:\\/\\/fotos\\-by\\-nadine\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b693a7d3153df5b5410a0c193f026e64ff1cd3accc7201c98df4ea1267f450d", + "regex": "(?i)^https?\\:\\/\\/fotos\\-by\\-nadine\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67464198d3951c20816a23f8176c0b8438e63f571dd955d65d1d88dd54a3f4bc", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32ce6b052487948dcc236f09d8efe7476e9f25b75630db1ab4c1b6760dfd23a1", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f453553dde8b6428e79c9ee678ade05e2002c659d7c16acbe03f4afe17a4c78f", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb271d8957b6d5d465edebc61d6fae9dff8ab782962e9141124bd0c4639d40c9", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5037bf1a2c09a9a5a39b367be0f8e10d5e10058bb441728b2b87cf7c4d45a0e4", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0211c2e02c6526cb7223f8781da877e9517314b42e336abebd42d9a141f16df9", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de11071470f5523c023bcfcf7a1231825df2cd7a9120a6413d14229f3c8394fc", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f26c6eba3168226f9467b4fe9756f7f0c8b186be4dd13354abd49a52372a4e2c", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b673d04cfb7721f8e489e5a72474a8dc410a83a61da45d4604f6d81e7060746c", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eecd007bff7a259ab95b0d6da4290794a024e964d8bf766b680be4f251047213", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38562167fe65d5cf9efac0e8b33821432423177b1743b7b137fcd9c5bb7a589c", + "regex": "(?i)^https?\\:\\/\\/zovirax\\-s\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0e0be6d065418fb590e79bf1a7f3c76ccc2e42682276ca34ed7d08eab404269", + "regex": "(?i)^https?\\:\\/\\/corbin2121989\\-joyce19196\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a564fdf281ba306b5f312a8754b4860fbed34200f6c6555bce8100ebac1ce08", + "regex": "(?i)^https?\\:\\/\\/corbin2121989\\-joyce19196\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d6c79a598adcd7395d96e2f6f1dbb8dc6339f197a5d61858384123aff68965f", + "regex": "(?i)^https?\\:\\/\\/corbin2121989\\-joyce19196\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01e3b581006d817609e2833b286fdf05473a56f4e1dade7930de2404072100f6", + "regex": "(?i)^https?\\:\\/\\/corbin2121989\\-joyce19196\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49aa41bc8e614a61db67e157fe7f1ad94d22c850983ee6c7dfc24aa3afe5d6da", + "regex": "(?i)^https?\\:\\/\\/corbin2121989\\-joyce19196\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec0a818cb65bb7889c55e1e72cf1818708ff1b4d43d1461ec2f0e301c9fddf94", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a2bb7f64b611711b99b0389e52d150b8600356366edf4909b8bff4f6c0697c", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abb6c0c67c5ecd49866ad2aa11a1887e1283bbd25a9d70b9a5451b4f6bb4f8d2", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74092c8f344611bbdc99e6f5c48e8cc44f3a0da8d56908e7f239d2f146513ab9", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59b7a204d39e2a21e91259b573269b60f3adba971521f6b582f33b70d4aeb4a2", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "106955ab9014d9f4e445e9894bbb5a2a1d83af5c9ed56a8d71bcca24d7819833", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11bbc67c01f3d5dd370f8492d0250690422460f4eba1095b1dce5108621c3e28", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fb86f1b066b1ee01b1aea6f3c645634fddb8d4ee71af3edae724bce97b244ee", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fef31b8949fec4b443ef67a78a5557007f42d9a89c15be422161e57ffae0261a", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c0a89603ddcc976b8e41584fbb4992794b25ba388b1e0e52e31e2899e485d94", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dda0cfecc5603c44a5baee2912db62c36ab3350abe297667d11937c851ffb0cb", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c6a13d603dea83494665900779b9d2bb41509997d7f3a8ec180c4343244b57", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6359a18118689f3d1887876f4751c1b0d61ff5813b3df176832755ef194b44b2", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b895f1186aea7c26e29f10798dc76e80b46c14649fd1edc1826b373ff7579db", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a508ccca8534465556f5f46137e4024aeb621ff1e0d2e3c4f9976fe44d960f0c", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b30a2736bd7c750dfeb2f4e3a9a91a677ff60e91e585f8d328fa1cdfea7bd50", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f5e6ae8ee13dd0c498b0ca9b993cb3bb9a134bc6f8fdf5ef4c954500668ed34", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d120115e018e2f1867225eb1abd8c9073c18ec865cdca2f54439445dba585d19", + "regex": "(?i)^https?\\:\\/\\/subintelligiturj\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94049ebe91a9871439edbcfbe9f363bb8d856fb62f26ea192ffbc682d043d1bf", + "regex": "(?i)^https?\\:\\/\\/macrobid\\-leje\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cabfeeeb1095041bf7dbca78f7f36b7e681744b14bfb74dcf6bd53cee8f4a4aa", + "regex": "(?i)^https?\\:\\/\\/macrobid\\-leje\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec1c199ecc01d7da8905bf35989d99f75899785be098e8f5869f2786afcacab", + "regex": "(?i)^https?\\:\\/\\/macrobid\\-leje\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a727329eb4ae58d3889039fe8dadb74375038b2a94e1d2471727b7de560adfa", + "regex": "(?i)^https?\\:\\/\\/smac\\-shirts\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a27d9445654c990c264ede2dfa652d02204780734216293b945fec7bbf122a31", + "regex": "(?i)^https?\\:\\/\\/smac\\-shirts\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "632dd09d043e97f3d1ae94df10e0a3d06c15a9cc46157bd6bce82d6699d8822d", + "regex": "(?i)^https?\\:\\/\\/smac\\-shirts\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21f70bae0402601f398f91f020c6559e730b47e30d6b3457db1e41aa441f7e57", + "regex": "(?i)^https?\\:\\/\\/smac\\-shirts\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bff01de506d7683d78e23575d303bf3df924ece8890d164449a782bfa63a1fa", + "regex": "(?i)^https?\\:\\/\\/smac\\-shirts\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f91eefa75fc2694546fdba26c2f8703da36df0312a8010fa2039c38ff9dc65f", + "regex": "(?i)^https?\\:\\/\\/smac\\-shirts\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99ba57b6137c8e005a68ff1e78e876ee107f28213f4a6c1f1b54662829602ff7", + "regex": "(?i)^https?\\:\\/\\/smac\\-shirts\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6eaeae1c9a1894a6ef97619c212a938c6af6b907d9561e6ddc2e949b62181142", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7651444c023288c3368d172aa654a0100a4d57a4f42ae91e45f36a24fc2adba4", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bfe64e2d62a1ead594cfbb6d00d20f3f6ae9afc4eeed5a1775761328206b8ed", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c5312458c215b4682b6c8b438b652b2a5aab54a0b36974da995f8a5c1c43457", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aabc3924ee1df46a9541d52c142274ad84dcc922de9068a0868b2a0f578dd22e", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c2100b3e0f4c18d3f186bd73c12c601c29887e1d180a224fd8c623c4371a70d", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8724278fcc4920677e367eee48c260525bb8c7d3229bc5c610987708eb1e244", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2fd6e5226143650de4ce5ef2c565b4ff34b32d38c4a94efcf6bd5f30897c3a7", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ed0c55b6db61d1fed6443ec5f0c25468a8b681254448efe4f7c91535ce19963", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8197fe70c542e976b217d282041026f97c18aa00645de36be8d0142f16645d4f", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57d20e699848fafcbc5343e045e01b35a2004e2699040aab73c9511042a616ad", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0937a44ce7e0320724c8182482ec1cfe3a8c81c91732fc014d9f9d244792892", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6144d97b9cd02ffe0d80e38af512c78ba5cd134a9d1091f13f2c95d2663a8ee", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "673d95ac04c50ede78da69e2d209da9af56c8a7459b37efdef3cef29f779d329", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "876c2e326eeef728e09572745ab1f78209bfa93c20b8d6e43b3bca2b02402381", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73ce63d7e53774b4420394cfe017a771e28bfc93df50e3829de2a2827d4583a8", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "024f164c208657a2fa2d43f1409df6adc99873d8d067e8db7d97312c6af14975", + "regex": "(?i)^https?\\:\\/\\/hdmimtodvimcabl96649\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "689d0da442bbb858e38e15593ead9584be481baa0a543573ce39c2910f355042", + "regex": "(?i)^https?\\:\\/\\/justlikemyfeeling\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "766912f6ad89498cff7a4b51694af52b87aa3e463adfa4b4264394f09982a626", + "regex": "(?i)^https?\\:\\/\\/justlikemyfeeling\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "785265c758c961bef96cb2617af2f0bf7bfb72f4503eac9b6cd9e5d1145385dd", + "regex": "(?i)^https?\\:\\/\\/justlikemyfeeling\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "071a7d42dff0d7a5c31b677e46e66b4689e78bd8cd6b50a69a95a98e719a9a3f", + "regex": "(?i)^https?\\:\\/\\/justlikemyfeeling\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2657a64d3e6f856f0bf26c444e721608aab5b3c4153db678018b932c2376765", + "regex": "(?i)^https?\\:\\/\\/justlikemyfeeling\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e81ffd4d3eb290313f6def13a7ca85e7843108a051b06b5fefaaae730e0b655", + "regex": "(?i)^https?\\:\\/\\/justlikemyfeeling\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3c4cf777d8bbc6e111e42b1364491c0b3506d3da3b7fc33a17a01441a687901", + "regex": "(?i)^https?\\:\\/\\/justlikemyfeeling\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ed025a64b3056c35682b71c54cfad12848cf96ed1a5dafc6241f666922f0827", + "regex": "(?i)^https?\\:\\/\\/justlikemyfeeling\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b10b2665fc2e84652a21e4bcad259713a43ce06fc1c9b0c6da5985fb7723c01c", + "regex": "(?i)^https?\\:\\/\\/justlikemyfeeling\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f547cdfefdb81f36c03872a4c1a19c9811927ec1ad94ec24a78d57bed7166df", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cafd0475c279c2b141d568409ff409c09ae0f5c5434b561d997a8007340b52a4", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d10a37654267561509f79c6b2c44a39d240a262642e243649857d89b9831142c", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fb3990fb7d6de7025d429ad58d56dd3ac1677a95e9647ebf5a66709ca49d18b", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cafd1ae23f5be963fd1bd190651e9489a850d49e5f0cb25e4ad1db24ebfc353", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45d8187b93c068baaa2d93c3ae65cbdb1b7106dff28e519a718afc31888dcd1a", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "643fa4660df176031347934060eb2c5ff977dbb15ab603afb4d2db163f941c41", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdae25fb4e102a80f0d7ddb96595a54f492e1cb9886e0681d8094b96b0f2d6d7", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dc0fe848647c22ecb4c24a2a05fda96da59dccf13db0226a43cfaecbc01095c", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccbfbac64b3a8e63e9f1e21f67cb4f264f7031788b068f7a848e3796b2977cce", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41f7734c825e8ea7d0cb8569ebefc621d3f83a133102ee1ace5d7b4136823a8f", + "regex": "(?i)^https?\\:\\/\\/cindymarielyrod\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f6effe0ae5fe02f1818c2d8fa351ef476779f5891732137aef4edbb6e51396c", + "regex": "(?i)^https?\\:\\/\\/metamask\\-log\\-in\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c7858d9d17ecca75138a7aec4e873444cafc702e89a5a13e4f094ae0a9a0ba", + "regex": "(?i)^https?\\:\\/\\/bestsignpb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2eb8929a70e5cd604c7498733a442bc4918321dfdbcda00606c63eeceec1784", + "regex": "(?i)^https?\\:\\/\\/bestsignpb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7771d57afa0d5b261aee98636690628e4e53f159ae0934bb0cf221b33afd3e10", + "regex": "(?i)^https?\\:\\/\\/bestsignpb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37d040e15478c65001d92252413c6cfb50b4cd43b664ccc1686650a99f2bef6b", + "regex": "(?i)^https?\\:\\/\\/bestsignpb\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8e1b9df6f74690ac93b6b67b0108eda085c3d26e072e94342e293ddca57dc5b", + "regex": "(?i)^https?\\:\\/\\/bestsignpb\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee9d37857dfb3a2c1e10f92d4d29f2a0453908f8712e326b89c17d6b0f073fa", + "regex": "(?i)^https?\\:\\/\\/bestsignpb\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b54f2bc220216adb8d581d38618d179bf2591c5f80911ba1269a41cbe17b690", + "regex": "(?i)^https?\\:\\/\\/bestsignpb\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be0d9ebb54c4cf9f2e6c44c000ab715e54e5cebc15d3d72d924bb4a6bb5cb288", + "regex": "(?i)^https?\\:\\/\\/bestsignpb\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6437c3c8b19682f3049657506e3d569d0a804c64c6f08fa4d9bd82c8e8f87fff", + "regex": "(?i)^https?\\:\\/\\/bestsignpb\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a82f62bec69e01e1fb052665673f60b5a8730225634b345c321b15644d766799", + "regex": "(?i)^https?\\:\\/\\/rfegd\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c86dd8a676aaad81fdaa61be916b60cb4f95b693b666b5446e66806d38339c0a", + "regex": "." + }, + { + "hash": "cf7b383e093627d382e0dc79ef52d03b7a79cb0f00ba632707c2fc86a907678c", + "regex": "." + }, + { + "hash": "92df89e104b645fa83284741e40cb98b4e017a4fb0a30822e0616c9e10204be6", + "regex": "(?i)^https?\\:\\/\\/www\\.biznespro\\-f90cs3df20c45e72bf898s3\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45f63672446d2b6ffcfdcf407b413e1aaafd6c84fb16c4e22c85d6db1b7fd3f1", + "regex": "(?i)^https?\\:\\/\\/xvideophilip20\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd2a3aa30185d744e66fc74dfdc1cbe2497ee9f7fa122ae4cbfbbb658d04dd0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix_clone" + }, + { + "hash": "b4166e6373e0e0a6f62e5d095356b1f49045b6404b9d2a8e315d7c044b83eaea", + "regex": "." + }, + { + "hash": "10b43dd18aa84d784c40abd86875803abd712c76d67b6090b457b4037b1f411c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wrate\\.html$" + }, + { + "hash": "e923a8490bbc4c289015af4e5e80b6d2d66976da1728099dd9099ce4b92bad3e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netfilix_Home_Page" + }, + { + "hash": "7112345f3c97420e540279cfdfb1a8cfa54fa482d38d0c9c6b8cf22f1ca90e85", + "regex": "." + }, + { + "hash": "b3e83b6719b7162b5fe3e6e6a8a1d940b79206fe993d7dd31113cc27d11a7a1a", + "regex": "(?i)^https?\\:\\/\\/theytestify\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a577f1a40b35492c9cf8dcf68d16dfb55fa52b18c09962f06b78baad2384e738", + "regex": "(?i)^https?\\:\\/\\/theytestify\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d84671e97166d636fa24cf57c0eebdd8f7460b1015318d5f1362142b222f30e", + "regex": "(?i)^https?\\:\\/\\/theytestify\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "386616d62e23aed97d7a4ffe8ed5586009ab50cf0766d79bd7ee38b62926b257", + "regex": "(?i)^https?\\:\\/\\/theytestify\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c128c7ea0ee9997934203702d7487f44a7d55ea3685c55c9814f091b0d8e22af", + "regex": "(?i)^https?\\:\\/\\/theytestify\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef59aa6ce80ace0f28b0636dd98ac7462378d4a89a9e86707d73d8d8eae5956f", + "regex": "(?i)^https?\\:\\/\\/theytestify\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f49e35ba038a0249924fcc2527db9bea5e2a975531deb18ea59ec6a3cd0ed5", + "regex": "(?i)^https?\\:\\/\\/theytestify\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee53912977d2fc516e5505516290d73c0788dc7130c4f34edfd108a258f6f4b2", + "regex": "(?i)^https?\\:\\/\\/theytestify\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68b201da22fd966ba8bc21b379057a62029000e66a41f9a6aa907e9e98e354ea", + "regex": "." + }, + { + "hash": "bab37baf39ff5d25089bfc3957295a7a918f55b780fd655cd1ee8e4d7cf655de", + "regex": "." + }, + { + "hash": "46e242b32cdf1ded8e5acc5afe31a970ff253ab1172b18dc08b5f20528ba96f0", + "regex": "." + }, + { + "hash": "9287d431ddcf2fa3c9aaba2fb3422b39981d8f37fab2c79783af9d91160903df", + "regex": "." + }, + { + "hash": "1ff84248e63d0d16a303bc72450f38639d85af092253bf8d2f3e6c901f63d9c7", + "regex": "." + }, + { + "hash": "f29a5973ee67fb95f8c1484f7740230a332f8c1ddcd22f69b70df5ceba7f157a", + "regex": "(?i)^https?\\:\\/\\/gayphilipcom\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beffaef2dab676c326a037968067cf0b6be223c0e957010e991f22b3105f39da", + "regex": "(?i)^https?\\:\\/\\/gayphilipcom\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "977767b5e4b1a91c6ce978aa7872e6202fc88298c694efe3c82623866924d4bd", + "regex": "(?i)^https?\\:\\/\\/gayphilipcom\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47ce10c1d9e350686c8f16e28b604d4baa52a642070e603bdad3f41185386c2d", + "regex": "(?i)^https?\\:\\/\\/gayphilipcom\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ade6e671b835af2ec4427a2c3c22be79d0bf1ec3c4602c6b4f2759f1c46adfa", + "regex": "(?i)^https?\\:\\/\\/gayphilipcom\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e5da108e3dd4de623ae7cee1bccdfa875d343905ec96f30b4786311cc2231e1", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8991e84fcf367e4e1911773d46f65044170cc97b325c69a7526769f68c0efcd1", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a23c5b569479cb7534bbdbd3ed5a0a4b3333a80b6c02ca55a33bfd4509c1e2f8", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40fa83d66829f8ba18c1ce650c20c35a4da155128a21d88a25ddde16ee4e7fc1", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3b29670a05e2ce3f392b6383a23877e89770a857302543534a701ef9b4b4d62", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6edca886331e44fd57a3c05b442a3e8df6953da4bb3e6f4291d94ff960990d2c", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1665f7511b1ea465d3237cb01811ab78959ea7cae5f9dbf10ac6841eb1137bc", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "474a57d92a85a13cc508f99776cbcfbc9c70451d69ff1cdc059368f4420d3177", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f624a4a5d1b3bd0a1c2e78b8349dfd0af25995deb0aadb70041ed6743b511a2", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e79f3c533eb8990663fa7177ee3c049810176db8c881f9b7a98ee0b4b1b50d07", + "regex": "(?i)^https?\\:\\/\\/5fggfgfgg4g4ghfg4\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73f2f0b5b7626b479fda0e1795650407c3186e42866bbf5fcdc711e3e675176e", + "regex": "." + }, + { + "hash": "9e170a9a8f8dd364c7340fea1e97abf66623932505bea39e51be79a11958f149", + "regex": "." + }, + { + "hash": "616984cbf5624aba458072fc72f07b2a06a215130b3c238e4f96e651d0127f79", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9371dcfd62d9450bc68cfbee7b6bcaa11840de3b992f498f16c84bda25c06249", + "regex": "." + }, + { + "hash": "fc317a6ef1a095f4764e0fdd026862f1185c46ed05a0f9878e2ef030c4d4ccdb", + "regex": "(?i)^https?\\:\\/\\/sv468s86v4s86v486s4v86s4v6s\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c14a339eaebc99031b380ace6328e01ff8ebd6c47472e75bad3f85c2c4b24e94", + "regex": "(?i)^https?\\:\\/\\/sv468s86v4s86v486s4v86s4v6s\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f822ae07308de0ac83da2e43c2fece6168ebaafc1e04f9ce008df2a9c0589b74", + "regex": "(?i)^https?\\:\\/\\/sv468s86v4s86v486s4v86s4v6s\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcfba231cd8e33cb3aa3d417c0203c466f0521f8cd0ef4796e27ff287efdcbff", + "regex": "(?i)^https?\\:\\/\\/sv468s86v4s86v486s4v86s4v6s\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0a930719a26ab637c5189eea2cb355efbefff8152fbc842d2f6f4becf16ab4f", + "regex": "(?i)^https?\\:\\/\\/sv468s86v4s86v486s4v86s4v6s\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a01e90ae1707657fe3d5b858ff88c30d32cde8a404d7bf5ed11e510572f2d6b8", + "regex": "(?i)^https?\\:\\/\\/sv468s86v4s86v486s4v86s4v6s\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0480844d2764c47e116acb6eb727decb20d9d7e5cb142117e595673662c70a05", + "regex": "(?i)^https?\\:\\/\\/sv468s86v4s86v486s4v86s4v6s\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76317004c877753e01e34b3c4eaccc81015cf75e2a6698cf7bbf77e4db07b440", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+movers\\.html$" + }, + { + "hash": "7c13b609cbe236a3da8c3b78423238bfd82851285ef1598689116d323122e6a6", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0e1ef265b48317834d6b53a0881c117c9ce65e00540f05956056ba1a749e0ea", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a493ce69859859bccd09c1967c3543b451f67bf23a5ff9960a37935a3d5d61e", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e089505b5774976e94a70bc3cac80f85923f9ce0ef33e4f07d2df353dbb4e19", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e5e23677caa4b9df91630c2cc2653cd90b6e1dd1aec3d5987a2224f7ab20082", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9136ba446b0c0f553e77253bb3bd9631f28c5627cf679ffe2e235d990cda54c4", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a70af6d841efe4bf99fdb1220c27e8e948765af9a787bbb2de5ec4c368c8cfdd", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013d84b137eaee461d2869dbdbf958da630d49aa901eeab30813c8a887678722", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa870d65fea1df5dc3e6a63710d5fdb50178d1a79a8cfed819c8b67438087c63", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ee75687023a1e4f28f0c53a8c78ecd1e2af0b8e63867e5b17c7ebda77cdda0c", + "regex": "(?i)^https?\\:\\/\\/roblox\\-20k\\-roblox\\-20k\\-roblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4649adab9bcc560e42ac50431ec38bad1f79073d6d122a625e96e42794d1f2a", + "regex": "(?i)^https?\\:\\/\\/vcbrfgw3er\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "582c741056b2f9330314c191a269983d39a0908e4555f41383a73e1b84f76ac1", + "regex": "(?i)^https?\\:\\/\\/vcbrfgw3er\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48934f631d5972487b647fbc494558d021a9416f016a731865c4085f4f29dca8", + "regex": "(?i)^https?\\:\\/\\/vcbrfgw3er\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe3d5b59886fc97484e5e78c6db014d93cb2b07924908ab4b5a1fabee32e0e0", + "regex": "(?i)^https?\\:\\/\\/vcbrfgw3er\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccdc5008f522121ab38f96309f73eb609cef0b716d21077080ddfb226a8f412c", + "regex": "(?i)^https?\\:\\/\\/vcbrfgw3er\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0fa861cce9f21e4c331851324586ce2eee3e399026dda7f0c2d77847dcefea0", + "regex": "(?i)^https?\\:\\/\\/vcbrfgw3er\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a754b3e565794a927f32f0d4c59f3ffdb09e8ba5cf278223bcb133a7617c6e0", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed3fd22ccfbd479820d10bd81ec465d1d4b06fcdfa4fc4b2b1cf2cdd7a1c46d6", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51bef6960c019e072bc3d1963121ab84c60cec0a3bcd32cb712424d1e3f3e261", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "028e5e3b5e5bb9889ef23fb3a7b78ccc1e8f241b5a0f87e6e9b9ecf5d7ede9b7", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f56d86c369b4d99580633b4d40504177cf781b6835fa2f0fb26728b393b5b779", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7642bb114d623dab303f560d4e14392bd1b9e52d4daafda346718cc3b381da54", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f6e093d0bcf5af0470331f885883306b5a94a5d9e1d773223170f4a54ef9877", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48e5084a271a9d50c998e842525e53cf6c18d7f7c4dc2e4e8664a95733bb8418", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9686d23ee3622af08829dafbab0bd716e6d36242432fb05655686ec54960134d", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a64025bc9ae08a1f74b5444fe31629bf656005e87da4331116dfcab5f2b5dd2f", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eece23184d422b100c47619046daa683f9cccc0c378df964ce2cad8fc6f8babd", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d2f9a449ad84240c9b1f1a3bb80dc3befc029fb10e0998c414d177c4a045d57", + "regex": "(?i)^https?\\:\\/\\/rtfghrty4ewt4\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "782f9ddbdd79b9c76ca3da1ce806755402d1f8951415dd1812c0de6da22d3e55", + "regex": "(?i)^https?\\:\\/\\/rtfghrty4ewt4\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a8df04dc09846f8c2b88064228da24cb9ffd9f0d3af5082d8c4c1501af2a390", + "regex": "(?i)^https?\\:\\/\\/rtfghrty4ewt4\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8712059e43f0b9a6d80db3b7e44cbee845478d94aa2a4f0086c4097e82c6ff7b", + "regex": "(?i)^https?\\:\\/\\/rtfghrty4ewt4\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "903820f6b5c79d8aa763d44d5863fef883ed7d15b7fe50c61b4518518e64bf78", + "regex": "(?i)^https?\\:\\/\\/rtfghrty4ewt4\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38378414ce6651a4cbbaa360492731ffb200f1ae8e71bfbea889f0fec31884e5", + "regex": "(?i)^https?\\:\\/\\/rtfghrty4ewt4\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6daccaebcbee21e05ed8047edffd67665e31f64e863ce1dde9291f077d5df3c", + "regex": "(?i)^https?\\:\\/\\/rtfghrty4ewt4\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a9195f5e5c5302014a3c9c8b2af8a8542ca1f7c0cbdcb8f706a8657fb039601", + "regex": "(?i)^https?\\:\\/\\/rtfghrty4ewt4\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa0ef1b31857469f6e079f945d7f4b3279426173b40b9d0ff78f9374b2ec8598", + "regex": "(?i)^https?\\:\\/\\/rtfghrty4ewt4\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3b22375ce608ef3d39f7915cc778ff89846960a7f65fa0d007e118c1057dd18", + "regex": "(?i)^https?\\:\\/\\/rgewstgete\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc4c709817ae0edbdc72112c698786e0894f60f2405e9fc4a926fa75fd6eb775", + "regex": "(?i)^https?\\:\\/\\/rgewstgete\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4fbbce8e39c09efbe464f7e17bf4a788f1084110205dbab060086cf94571822", + "regex": "(?i)^https?\\:\\/\\/rgewstgete\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c21265dac8b799eae5d83ea6360f2daa0759c0aa1481a59acabdde4ccbc6feb8", + "regex": "(?i)^https?\\:\\/\\/rgewstgete\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad2d9af2e8a61f0fae9d2445d2e1d998df190893851ced81251d34377aa3f237", + "regex": "(?i)^https?\\:\\/\\/rgewstgete\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4d5aa48692281a0da7bf26b1123a81b944b79705ab783d8f0f937246e3a26ab", + "regex": "(?i)^https?\\:\\/\\/rgewstgete\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16d21b061b0d1a9ec6e31a456a145647256940502a3c89737e98bb5803ccb35c", + "regex": "(?i)^https?\\:\\/\\/rgewstgete\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee4c0cdf82aef9f6799ed0c85bc171b6155f320407e3740034a72326994c2a82", + "regex": "(?i)^https?\\:\\/\\/sdfgwet33r3\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a242ecda5dcf0a35af557150f2ead37e70ba9430f3076d46d7af050f2afb3346", + "regex": "(?i)^https?\\:\\/\\/sdfgwet33r3\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd664df780c44b5e776da1085c7622fd9357219b45ede6fb3799996d65c25aa7", + "regex": "(?i)^https?\\:\\/\\/sdfgwet33r3\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "276b5a91853bef367b58866b53a37c3241a7c3bf90fba7f6a6bd2bd35e75ce77", + "regex": "(?i)^https?\\:\\/\\/sdfgwet33r3\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c61ceda6aaf1216e8152d2b153c673a8d500d4746f92986588031c51e865975", + "regex": "(?i)^https?\\:\\/\\/rfgwsegfterf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74e296846b1d953c1631250f4045beaa21b56fb9251d7277e9b51e713eba17f9", + "regex": "(?i)^https?\\:\\/\\/rfgwsegfterf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "049c8637938334a2ad909f128d16e795e2ffa15d9fa1ac9868076e50f1006644", + "regex": "(?i)^https?\\:\\/\\/rfgwsegfterf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aee0f14a190bdf3fee0e3a1a6203b83c79e9ab9e41f0f6594828bf8e4212305e", + "regex": "(?i)^https?\\:\\/\\/rfgwsegfterf\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a26ba1394d9f2df62d7732f9b915e5fbea54cd32b1ebb0846c1bb6c52f1a7f", + "regex": "(?i)^https?\\:\\/\\/rfgwsegfterf\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "470b70896d37b77335a74a5a526b26ee1c7e5ca7d213dcd0209aa8631a7e05aa", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cae9a0330f4450181949ff66ba583fba31f34b84b1942e2aff81535bc663384", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0887a47670f6e46f921d9bd3f0f5704c9d834c4dd1325e6657b046a070f6d792", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c8a9bc871a6d0b892ed6d8cadce806d0590973ff353b5b562b893eb14145d67", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c930a937e6adf5f94ba02b96083adb60723f3b920517a77fa3188981119544e8", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f88d6b52a3c3cf09dfdf13e1cecc3e3ddaf80e6b160163645ceb6beda315195", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d776215914c80907ea0664f75a0f7f2a0cbe2507612a7a5e17b080f07dc391f2", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df68d80c6bb5ac8236303645fb77cd65a7679150a1b04f90fc34866adc969b47", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa906e4544e0a483f359e3fe1a7937e100c8d73171b3f54358e4b5ae40b95356", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a73f728b67ee8d84f8d9c8bc43f99bfc50f8aea6ff46de5397b924b9549ab72a", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72d7223bc66af74e3cc3a2d4d83666c957a466407db389f43327dd1ee43fb071", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "551e73dfcc97af49040772613419e23fcdd26ac3a30a02327ecef137bbad4c62", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2d9b0e906a2fd10bae7995f87fcf297f7624ddb716ccac9feb7a4eea2401a73", + "regex": "(?i)^https?\\:\\/\\/fghtyu5u\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a12a70dac0e9748ab8f60aa92481bccc59bc6132cef8e3a56254d9fe0738add", + "regex": "(?i)^https?\\:\\/\\/fghtyu5u\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b972a03cf290974bad408739bff8cca7f2b670e72feb83c0fa62ad1d6d2f14c1", + "regex": "(?i)^https?\\:\\/\\/fghtyu5u\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a4bcae154973f5d41d3451183a06e3ae2ab7267ebf797517703b4b2da964074", + "regex": "(?i)^https?\\:\\/\\/fghtyu5u\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73087d9fc30796a92eff28a47fced042f7e71d5a87936ab4c003261dbe7aa632", + "regex": "(?i)^https?\\:\\/\\/fghtyu5u\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9164f6bde7a0a37db1c9f7d3b0a3f3a243f5499e39defa91ea391a27fb20fe3", + "regex": "(?i)^https?\\:\\/\\/fghtyu5u\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a7297e35de50f9053debec397aa7039b9ea953d1e434bc8f556c61802f5f2ce", + "regex": "(?i)^https?\\:\\/\\/ergwegw2e\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81f5ac18731bc1e1a6119af5388655510a2e584fc647524ba2704b40fa15637a", + "regex": "(?i)^https?\\:\\/\\/ergwegw2e\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7d2d82e7aa4a939d56ec6bf6536d950e30f97539c9d9353c4ff24a6bbe5568", + "regex": "(?i)^https?\\:\\/\\/ergwegw2e\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36285fa0595c6a1ab0690bb3f8ef078e9372febedc1e1e9e4bbb338cae0f2304", + "regex": "(?i)^https?\\:\\/\\/ergwegw2e\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2fd21b1758875ab47dd4d49bc8051ea09012a81de2a6d17e8306736b9932b26", + "regex": "(?i)^https?\\:\\/\\/ergwegw2e\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6c2fd4a7f7cb8c2ea20ea645957ab2f0d38f5cd298960a72f15cd53b05fbe24", + "regex": "(?i)^https?\\:\\/\\/ergwegw2e\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3690b2caabb7bc11edd49601c942f2055482c7bbde4abcd36047726f4ad4fe0f", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae53e7e9f59d3d00204f8e8cf069faa416ef21a5bc90230d37da0ab75617a47", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5898dc83e80e8d70f6e002651b610728fb8ec166c0a039928033717df725fe70", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6faa24033b87a0876c397881747be8dca3f96bd4ba7e708cbdaf0026ea743ac6", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6816a328180c540b033b27cd71a488f235109e598c56a9ead60e42ff5f025874", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dd11ec7e194814fa3522aacba141603d6e2134a39c45de5e567ab820683722b", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d18c75cb1ce0b3d5e15c0fcb6985fa3536557b1cada901001bdd5409e5398e3", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94c5dd9919f583c6b26c1b09b4a2aaa46776511d2b5693c3cbce6f4e3e80d1a7", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffceabd0c59f41d9f1ed9c3a2822c93bb8fe592fd376a11eb055e62120951e9d", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9db103483ee61d6072bfb7c2e69a355efa8033ccdaa1974ad764c6c070320cee", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52576c1a2cd974f2013ceee04121149c0f231a0c0ae9ce33648b6fb757a7718f", + "regex": "(?i)^https?\\:\\/\\/xcsdfdr2e\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c11c9b54e67602268e06c8bd1e942a4fc14117b2294fef2e3500af72b04a6fbc", + "regex": "(?i)^https?\\:\\/\\/rgyheyg3e4r5t\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd66cec5d697fbee3e5b09016b2dad64f79e7110703232727c02c5d64eeb03d6", + "regex": "(?i)^https?\\:\\/\\/rgyheyg3e4r5t\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "becc584ef7b7dc447fedb216a261af2eab3eeb685ece7cb4c17906e2c6eda666", + "regex": "(?i)^https?\\:\\/\\/rgyheyg3e4r5t\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c03818477abfe04bfe89ad625ced456499a536ef12204f68fc087f12d134b35b", + "regex": "(?i)^https?\\:\\/\\/rgyheyg3e4r5t\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c45bfffcea6b93b91386a11b35460b6235b12158fb1058e6fdb9ae129634cda", + "regex": "(?i)^https?\\:\\/\\/rgyheyg3e4r5t\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94f2d9bc8a98801bd816ebf443f4402f52f02d5d34004a2e55bc7fa1263e5d2e", + "regex": "(?i)^https?\\:\\/\\/rgyheyg3e4r5t\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e0fd181e18f7945ff457f3a2b5e217a8b61ed650d9d35b66eeb45d0d395749e", + "regex": "(?i)^https?\\:\\/\\/rgyheyg3e4r5t\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1a773a41947b1cf36248f62c7137332dae72e4a6961800515bf21f2bd2bab32", + "regex": "(?i)^https?\\:\\/\\/rgyheyg3e4r5t\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "565698d6731882e7050b6a77715395201315bec481931df25078ad7ee8b2e798", + "regex": "(?i)^https?\\:\\/\\/rgyheyg3e4r5t\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cddf2b2ff6bde9eb3ed08a1546e66b7de4d9f006b2cdaf9dc092ce2fa7ceb61", + "regex": "(?i)^https?\\:\\/\\/sdferfwer2w3\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8fb4c73b0b650a3622d7e1d2079e22ac806f7149861167b7eb988c66b409b08", + "regex": "(?i)^https?\\:\\/\\/sdferfwer2w3\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9ee9e55da6d96f70d7ccd10a05b6e6156e046669ad0dad7a563ec62bc822560", + "regex": "(?i)^https?\\:\\/\\/sdferfwer2w3\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9e47e7362a8e3d66fabc3629e83e5e466850730356627845bbdf1bb47d189fe", + "regex": "(?i)^https?\\:\\/\\/sdferfwer2w3\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f2c3d5a867c02aa84062fb2914653c12c1f6009a3715c787da260b2868499ff", + "regex": "(?i)^https?\\:\\/\\/sdferfwer2w3\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ede99dadd92c233c2ee5ee955f0df17275c351c54e99787fedad6569906db33", + "regex": "(?i)^https?\\:\\/\\/sdferfwer2w3\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7f6400225df50e6994d48684b5c40f57b2d7b0b3d40b277579458442e5c87c", + "regex": "(?i)^https?\\:\\/\\/sdferfwer2w3\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41f7f2aedb012f48ec61ac92574884a47f9b0405cfb6dfe033184cd82b82e01b", + "regex": "(?i)^https?\\:\\/\\/sdferfwer2w3\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5323af5ebc844e897db23f5bf3848804956e6f7d85409ab90a94dbb7a806d0a3", + "regex": "(?i)^https?\\:\\/\\/sdferfwer2w3\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b58f7f3cd80b0ddee77d503c7a59f7d81588ff29751aaf173973fe9a3c41fcd", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64fddeb05ec7173a768a744d949b15928e2b5441571ada8cab9d623124019c14", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34751e5563627f19e9d7388878d29fba0d283612c7a60d2983f0689aad4c9998", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33807a28ee57bfd5d80f93bb93aa5acc9b6e09e0538255d6993f4f59bc1e492d", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca457debf0e70d66f2d3b5f5e9cd5c08d91ea66fbc9213f35f94511b239b35da", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be381709a3292e9c2182e5b03a67df088f9192b5f62d658072d1b3178459b25c", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecafbd6b30dd1861d8f931ce949af7b8a21b43eb691b7a6f58e413eaa32c0002", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4aa055e6cc6ab2e87c34788f16ade3632119f5e2cff4021dc7ad48f82c198b5", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ecafa829fff23e57804ee11fda6ec1b4a8cd57839274a3f57dc5cde722b4b9f8", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71780fc43d62c28a4e1d8033268c49488f463de127d2558eb683e11d3128a82f", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2cec04ab12a9569c797c0ede997de7d922ddc15d386cc94e21c8a29b10aac64", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c1177eef68006c133d6070ea0488ba270a706cbef8d429d7d1645a0a7976cf2", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c2025a4f36649ed5b5d59afb0bb77ff41ccd4d18bda35f49a589eabaf2f7d42", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a315f412ddbdb6efa9f37497d1701fd2a0d3f1b40097365f469d6674a555d4c", + "regex": "(?i)^https?\\:\\/\\/rgrwsetgwerftwe4\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "305fd55dfb4de55f6ae2e14a71185471452d0b22be352abff2ffad9c2bba50a5", + "regex": "(?i)^https?\\:\\/\\/dfghrther\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04f918a4789e1cb8d59614550dd3a0c08739d5a7cf889a5e443bd5c741fa3b55", + "regex": "(?i)^https?\\:\\/\\/dfghrther\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de29c2e63b3839f2afb764c04e284d7e44d06709fff4fe91ab7de0f15598ba46", + "regex": "(?i)^https?\\:\\/\\/dfghrther\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae65479564b53b96272cce08b0a043b544e030bea8da643854ce9ea3545bd88d", + "regex": "(?i)^https?\\:\\/\\/dfghrther\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebc57891be53976101a2c0f5b234ece00811e2c4a97bae97e85993665c1fa135", + "regex": "(?i)^https?\\:\\/\\/dfghrther\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2147bc77271b0519dcbbd885b739991b1f2b859adce5f04939fff921f787482d", + "regex": "(?i)^https?\\:\\/\\/dfghrther\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f44acd080ec0da5a5422cd10ae408b2a04dc830b1f591df84d300636e95d274", + "regex": "(?i)^https?\\:\\/\\/dfghrther\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e22dfc28ea75746196f00455e63a263e546a37ba57e3c95cf2902c1b1faa12e", + "regex": "(?i)^https?\\:\\/\\/dfghrther\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ea9c2ab1b2413c41e0c93b3d9be893a6fe5228ddf883697f284b290da7e901e", + "regex": "(?i)^https?\\:\\/\\/dfghrther\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9666199e899265454fad9d7db07df3f9df3ffb688eeaa4949bcace22b0ac8a7c", + "regex": "(?i)^https?\\:\\/\\/dfgdrg4t3r\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07abddd3c0500a6cf61959ace9da5d87dc7d2ba10c5ab29bf6abb57c5492a36f", + "regex": "(?i)^https?\\:\\/\\/dfgdrg4t3r\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c198d61907c1da53a97e12dd610b9703816a87698723fecc8ced84663a2f612", + "regex": "(?i)^https?\\:\\/\\/dfgdrg4t3r\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5016ca500b225df0cfcdff3b624357a36b36039a81a88ab7865866dbe3206766", + "regex": "(?i)^https?\\:\\/\\/dfgdrg4t3r\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1dd8b0941156ba3c93983ab1119b9dd563807e3231484ff54bbdf318bdbda2dd", + "regex": "(?i)^https?\\:\\/\\/dfgdrg4t3r\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1eb8f9508cdbe45cd2b35d70015bd737329dfd40549025a578728720678f03b3", + "regex": "(?i)^https?\\:\\/\\/dfgdrg4t3r\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a30f5fc0223f783cf554dbd8f5fb6a6427f2b91055e597df2d738ffb30d14d68", + "regex": "(?i)^https?\\:\\/\\/dfgdrg4t3r\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b0fddb4a5cdaef808f6a3a3fa8bb7594864e36804616744089fc899e177b8dd", + "regex": "(?i)^https?\\:\\/\\/dfgdrg4t3r\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abda7d5e43d616a2e0478a35e96ac5d64c86cc219b963e96a02d518d22c6f088", + "regex": "(?i)^https?\\:\\/\\/dfgdrg4t3r\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72d7c51d3b2ba639e22397eaaee4eb56a2a756eb576e9134ed5a7c943b958d36", + "regex": "." + }, + { + "hash": "7e4c60b0e5851c45edeb70291ee8a5ffb026f56e445667d2b806c60738c7ddf4", + "regex": "." + }, + { + "hash": "ee528396d010bb09a46fab0e8b35a08f7030165e9fda0f6c55983e832866b4b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qlinkrt\\.html$" + }, + { + "hash": "ba2ae0acd7c67e9eb41c687ec62d7cda3a52b5b7e28d3720343a50d39ab5ae3a", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b32400f16f23747adefa8169c7f85784bf2ec5d8365db7a3808b4ba6567c7304", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "943351275f3146902e4b45654375c9eb32b440bdebc4e1622f5c0ecee0b68cef", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c919dc6619164a82611511d6c57b3811771f81b89de89adbd70c36779b68c7ac", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9452d939eff69a865baf14005db14809291ca3efd31d9a9ee438268918a7b0b", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0486cde3da2654cf2a30f30babb4ba4f5edf87e1c761bb95e0ce8298719e030", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfc8d2e0a27e427c3869db4adfa76d4119bfcf956028ba55c6c68668e737725f", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0ee954066136210990a31955839c2b0499cf9da56199734709c205bab7da7cd", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dec47cc3304253d9cdbb5e6c3c6f1a6a7b249d89f562d2dea6bcc0c3764d7d70", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af60f511cb5dcf238c94b7573c66ea885abf0e08deb6827269a29f60b353f66d", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50030e23e121ace80e9f191a0ceb5ac6d7d5d774e0ac66ee2eca912da6b19bb8", + "regex": "(?i)^https?\\:\\/\\/fgfghgjhggfdgfghghg\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b162fab63bf922f9aee97923ae83b864feef2db17466349b9354f198cabe8f5b", + "regex": "." + }, + { + "hash": "003dd56b7e1c621c25938cf5f0de6b1ef7c4b5164daf8c444c021c5a95f26cb4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NetFlixHomePage" + }, + { + "hash": "a49fd14049aa9bfdd28108a3f3f8c48dd1e676b5217eae596439d882fe4e6c94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "2fd24ea34e574e53edfd8ecbb4a9b705c90d111d445c988e6ab2f4d7331f35d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "25fe39ccc198c0935a3891481e18210528b08325958aaf9f8979e60f312c0999", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "794c4f9f8bb77778c5f69e2293d9e1c4eeba53c5e518298fdc9815042776fafe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "27d04c999d80394b9454ed6b5249456ebace11621161a370144176f4ae4c8e00", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "0fd28973c71024ce6c2da80ddfc4b0717b2bc1fce6c695de25e55a5cd27696e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "49aafcf46b474a329e145107b495b41d388cfb520c19758c8b79c55dd5734cdd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "3ec9c4afa87d91313a0be99366c3509add6b0f2f48bcc9ceae43ebbae10572a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "a465b54132652d8d0af07d4c8036bb61f99864d4a008b14fe0924b9a7cc19e1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "8a36d81c45c07f574e31bbf36412efa7fcf8f5ec2664eceed9a3bc2000d1e123", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tjiyq7_fteyma\\?deep_link\\=vivareal\\:[\\/\\\\]+\\?destination\\%3Dpdp\\%26id\\%3D54831706\\%26isDevelopment\\%3Dfalse\\&fallback\\=https\\%3A\\%2F\\%2Fslmmarketingdigital\\.com\\%2Fredirect\\.php(?:\\]|\\%5d)\\.$" + }, + { + "hash": "d045f6eba5efaf9fdd6498f3bdd90102bfe2d66312e1ec0106ad7b5ee9807c6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix_clone" + }, + { + "hash": "9102e49772de708b6b2d7f02e31f2db413f2b0f079a3fcb4d6643af8016c1375", + "regex": "(?i)^https?\\:\\/\\/jffasdsdfsd\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "066fab243c0b3869f99b3a13c1cf351b8ec29839e90d2690d756312188dd04be", + "regex": "(?i)^https?\\:\\/\\/jffasdsdfsd\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c7f4f78499bb16f2bd51fe0bae182135777463244b015f2519b4cf9bac64b6c", + "regex": "(?i)^https?\\:\\/\\/jffasdsdfsd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebd81c21b5a62243f783ac790a4aea049e71d5fd0953a4453b9d341068e748f0", + "regex": "(?i)^https?\\:\\/\\/jffasdsdfsd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "952add0825694ecb5d0ae0b5f08b7759d0938eacee83b3ccf6d9e832a0e3d120", + "regex": "(?i)^https?\\:\\/\\/jffasdsdfsd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd9772fd2b1bf16bce2cc0e860331e5928c2a7b1182eeb9bc1da803b6f71ec79", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "106a28cb107f916ca78639a686cd3ceb6c59529cb1804fb788773923130b9212", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c29f26092cebe5f870036d896c1263893348cffc914912494a1535064daa0486", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f7a1383f5d9a8e107c44d287f364169bb0dfa0a58c3ef12260b8dd62e0f33b2", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b88be061c0989a65e54cf535098b90dc7651611c2d607e4e71e84b54dcb096a", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fda6efa03bfc624c3fe05eebcae859219f816b0805d1202a360ae59f6d72f15f", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1486605620e8b7a303175ac1d43184c96dbc95a37c7a0355474b06cc2ffc0784", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e46edb3b1b8f8ffa47f7851bb68e0e15245512f2fe018efc00014ac84f0a8d7f", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb432c1e7e8dc4d08ad3131e0e9710163c7bc78a50a5254fa4f9d5ee0019c8c4", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6172413d90bccec3841a61a6fec8727b6d606356331f083ca5506fd0ff12464", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80a83404b38c75b24c6fbe4b26db2e8e4e03ff3488699bdfe0e154c1cef16ae5", + "regex": "(?i)^https?\\:\\/\\/rtyuivdsfsdyugb\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9a9c612dacf26a0e4f9d9937ace030abf01106f412b64f87702da1c74532a1b", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "237932cbda7fc03ba061a380bd98a3d5e1523f2cd491bf835220778941c8f5c7", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a221b472fc459054ad69a2c2a7fd8274d304728870ba0d79045daae6b65b6de", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "117f7e3dd096d03c5a5f63c33d3cb49298ed22ab222596d875fc0593ea952cdd", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d776f41016d1012f61b9a0ce7b034844f265597eafd8e16f0203550ddd6cbb0d", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9035dc6047f0f379a3effb19c2c0e1f1a8c7e9eef6abe9e9b180b5e7dd98f60", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bec408188507cb694bd5e410bd6e1689225ddf33b1890ae464cfcfc8b16d4d69", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446f0250243769afe1875fa3c98288529063279442569ca7bffad4a0a969fc77", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa1c644122a08e699f8f83711dc5d466ad0a41ba4806c6783940e8c2b24ad4ee", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f9004e26537468d730be7c1ea18e545dab69d3413ef5a0f02f443bd96c98f07", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87d5ba934b24c0abb8f16e35f37330f4c811fdebd82b7589c03634b2fb69aee5", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2bd0274d7ff30861153d9cd637fdd0ae41d91320d5a461c53a0850056a408ba", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e29a48795498642fc7026dbd3c096eec10e78c33ac7f1ef4b6c71ba1e749a4", + "regex": "(?i)^https?\\:\\/\\/mghjlsdftb\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb7cb969bc46b351374bf6e794f9d3b06652e4cc5b25da452b9210258e9f9090", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70e8ce3330746a9faed6681b52db6123c33ae2b66517dd801bf3acf23ec84bbf", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69804e0bd7d244837f11cf9e2b1b000e843e69b7062df89dbfcf7326ec17a775", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49325a3a772a154a8a445186ceaea89c8ac8267cac1561afea553a0d4db22b82", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d68916e67e434b0d97e2ff82177b2899b14010df858cdbfcdd7e04dd9659d0d", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07f95646ebebe1de44ea69d766d8380b778221e6ce68aec25ee40a90710efb2b", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "942d289cdf6cab47431d8533b8ad30e294048de8eb1bef105c3f50e72a58779f", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56fda1672140b9d79956ed5e9afd7434d27ea851d0071102c658b5b84caaee06", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22c206a339c713d15d79de31f8ad37c69d8fee07cdfa4db47b5752e850c83491", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3c4fb236ca4e6a56c23ed54a0736cc5caffd991eefd477d64665ac9c39870f1", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ca5d967749793655a9191ddf061371fcc71f473b9bf9b34c5e45cd7bf31a655", + "regex": "(?i)^https?\\:\\/\\/yuiiodfsdwer\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb9d35b2c2b7c5800d359a9d6c2b58b8d6badc3538d43de26ec408241289ec14", + "regex": "(?i)^https?\\:\\/\\/yuiiodfsdwer\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d41545e6dadb86252ffb72e6ebb3476d185e9cc160cc3603a44aaefcec1e5fe", + "regex": "(?i)^https?\\:\\/\\/yuiiodfsdwer\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae7c02fa8f54d041e9eb49839a81bf9ab4869e90d37c2f4e021e8ac629ded289", + "regex": "(?i)^https?\\:\\/\\/yuiiodfsdwer\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "979ce1f89fc821bb01b4e7d0448c76c0ad1a461e3db3088f2cce81b57ffedb6e", + "regex": "(?i)^https?\\:\\/\\/yuiiodfsdwer\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d67371756d2cb736be6f0bbbb022adf47531979dd0cb155a7082851d4db6103", + "regex": "(?i)^https?\\:\\/\\/yuiiodfsdwer\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1f4831d6f04d290654c990ff0342a029a2a390b9b282f8faff8415bb80fdb2fb", + "regex": "(?i)^https?\\:\\/\\/yuiiodfsdwer\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83e82c92d257e3d0af0fbca0bdf6345b2962319ecb08ca8133ca50e292164bb0", + "regex": "(?i)^https?\\:\\/\\/yuiiodfsdwer\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d64ae372046cb0d1785d3f8eef65afc104c00ade77e35c066b47b76743477e58", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4aef3b1681e160f42c0e28f9fc7883f810685cde5a3ebf5822e6904caf03480", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b0c79b2f17865dd01ae12e6224130d156e8cde8076a50bfd8d434fe0870727d", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b63cb26082406be326cdcb179d7a5aa9569f9f9103979186d9467de504dcdb07", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e063c4485f0ec4b9a49a6eb558c07c5034b8418be483c7205850e72ae7d9b47", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8083176fd6b96be2dc09613062534cef004c76dcc6d8ae16c98f65c429dfcbb7", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bb8edfc5a0c923729cc9495a5159b7bdd899eacf08a57c25c76fae9485bf530", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "416f0bf9839846378537fcc6cb37c049da58d3039c6039594342d55128018e4f", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb58dda98d349969a1059d5ab8ba4c1c4a67553bb9f3a0271e488c9bbe84536f", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "597305df3126a240cb6a01e4376803f1a4c3e16170767c0f0d8c88fec67da239", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ebd089c3dfa9b5f92f5056df98ad808c4581f3a88d1d45a9dc1dacec13290f8", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9bcf9598aae098d020d044d2ff027d01e76913b3b8fe67b580589900bfbd9f2", + "regex": "(?i)^https?\\:\\/\\/fcfggfgh\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a89817b0f5d04eedd2b43d0d41d41eef7521d0a0f0b4db4dee6b9316e0e003d", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee1e42f09b8f0c826c6226ed456868831246db7e6d74a75720778883c2070757", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "066f01b14905f2dbb21ca700a867c5951741c30f11f66218644cfe76e4a6a6a2", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbe0f3300e58a846591fdca089b749051d76d732e9cb79ae91b7eae2c7beba6a", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c8d0ebaa89411e52fd2aab6204d3f92bae8e93698ce062e6b2efb69e4084a89", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a9ddf623e354757f4eb5dd879366365fc53bbc3d4496c3b661e0ed7537e1bc7", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d32f52e2dfe5fcd2b633fb9b84f56dfab5321f09ad12408f17867748c65b062", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44bd9c84c1ea5d160989f44d8ce592b48a4402cbdfd10ea30c38f0a10a151ff7", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0093ac8b82abf2eeed9411ccb4d591facc604d095a09cad1f176e0e1a640f76b", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "793e78e70466f42a802790490b06611417afc250104cff09ddfece803022a4e4", + "regex": "(?i)^https?\\:\\/\\/bnmjkdxcfrgh\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b98c3440b735f5add193f8361002c408994f80a47284c12750bb555d3f477135", + "regex": "(?i)^https?\\:\\/\\/fghopiurfgml\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013167867150a32922fbe674cd00e027ef8cc0bc709a056d9b28f641d19bedeb", + "regex": "(?i)^https?\\:\\/\\/fghopiurfgml\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fe201560419f31670ae76548b8cf38184a4823e2e69b072d4787a484d7d36b2", + "regex": "(?i)^https?\\:\\/\\/fghopiurfgml\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bef3dbbefef60d6606c982c4d6b8082b20122be18158ec13adbc6e16ef160b19", + "regex": "(?i)^https?\\:\\/\\/fghopiurfgml\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab712d996fd6c1542c0521c6d257d106d25d11502d086072d20294ea6c496af9", + "regex": "(?i)^https?\\:\\/\\/fghopiurfgml\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d70e75b07c09b3dd06d9db1f55266108c550466df0d341eebbff70dd6940d7d", + "regex": "(?i)^https?\\:\\/\\/fghopiurfgml\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89ea82c3af7ec5eaddf3c52b327f387dcfaa2b4fa497e8d833e3bf2fc0432933", + "regex": "(?i)^https?\\:\\/\\/fghopiurfgml\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf4d2238a948615257f4277962ed6f5bf042fa72c2ed499c55234a1495e005f0", + "regex": "(?i)^https?\\:\\/\\/fghopiurfgml\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f96eeddbb96f5c32d29783dd55565a95949b4e1f3347206705df076ca0e2e106", + "regex": "(?i)^https?\\:\\/\\/dfhfdjhdfjdj\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61c337eab76960565198657fddfba06b4ae7ca7adfca61c255a8271ec9a85066", + "regex": "(?i)^https?\\:\\/\\/dfhfdjhdfjdj\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9a5e18519f1f4a83ccb4bbf230519bc44e83b7b1bbd9fdb7f4852ed6506dc2", + "regex": "(?i)^https?\\:\\/\\/dfhfdjhdfjdj\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f65892908dba443f2721fab5e5c7094a636e5a3b64b747fd902557790f4cd7c", + "regex": "(?i)^https?\\:\\/\\/dfhfdjhdfjdj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1de519907b8434768313ba9132b67f33bdbb5588ac25076b6f28100bde0cc9aa", + "regex": "(?i)^https?\\:\\/\\/dfhfdjhdfjdj\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a24f88da7fec451eb247b1d197ccebdfa958e25184905cbe602904c2ad1557f", + "regex": "(?i)^https?\\:\\/\\/dfhfdjhdfjdj\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80d8a9ed943d1611d063c5d0c3d6d29468fd73a4dfe41169f4586a2107e14d5a", + "regex": "(?i)^https?\\:\\/\\/dfhfdjhdfjdj\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da13f57f929e37830f88c02691fb8f3c424d5688fa33042ae5b2834c69e17bf3", + "regex": "(?i)^https?\\:\\/\\/dfhfdjhdfjdj\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8df0629b7c7079e3cb9c83267ef8ee1827efaaf6963aa836652d8767b685794e", + "regex": "." + }, + { + "hash": "7adb455a712cb9db3aa0540fd3da93aa2d10ce1d0b13b4d39e4cef2d3017ea21", + "regex": "." + }, + { + "hash": "e55937577cf1c52058920efad8f9a1b2d0650c1f7109dc228e53353d703c2e5c", + "regex": "(?i)^https?\\:\\/\\/facebook9985\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "243b44378e17478c0c52fbf9206fcaab801e64bf206fb84676f1d86369e1674a", + "regex": "(?i)^https?\\:\\/\\/facebook9985\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf0d7f0f72b5467596cb775b8d998e237b21c7bf275961eedadb967717ed747", + "regex": "(?i)^https?\\:\\/\\/facebook9985\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5ef3d105e56182d683eddbacc950bcbce38136bfc8bb5fac584d5081e37e0ae", + "regex": "(?i)^https?\\:\\/\\/facebook9985\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d17d55b3570bd900c51ed85a64bae20c67dc7cf68eabe0c20950401eeb74c9e", + "regex": "(?i)^https?\\:\\/\\/facebook9985\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b942e9df252c0f872a8286969427a0bb41a08ea6560b5ad38f5cfa2773cc09f", + "regex": "(?i)^https?\\:\\/\\/facebook9985\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a38be8ab62479b71bd02619331b2fbc30b05a2b876e3c94a2bd997e6387e1afe", + "regex": "(?i)^https?\\:\\/\\/facebook9985\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4217c2f136751ecc306ce8ea91ab03686752b92e491b731d0b62bfba15d7d61f", + "regex": "(?i)^https?\\:\\/\\/facebook9985\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95e7d7bf52fc8b696c64093eff1c72490270488be7a2c08842aebcbc04a11ee3", + "regex": "(?i)^https?\\:\\/\\/dfdf65s4dfs4fdsfsf4sd45fs\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c8a139b2635423bbefbaeef4b3732a164ae873c3fab8b20937c3d19ccb3a7bc", + "regex": "(?i)^https?\\:\\/\\/dfdf65s4dfs4fdsfsf4sd45fs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4003d269b7b47e455aba78489a2b67084be8778f1352a44c9c0b90f2e559d6a", + "regex": "(?i)^https?\\:\\/\\/dfdf65s4dfs4fdsfsf4sd45fs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c2b0908a5ee5460ef0f2d748250b3914016875a6c3401dda8e5a2f7a0ce1e9d", + "regex": "(?i)^https?\\:\\/\\/dfdf65s4dfs4fdsfsf4sd45fs\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f49e3876a6d506d8f2dd639ce28c19c70149999756cffade9d77308c1c940d3", + "regex": "(?i)^https?\\:\\/\\/dfdf65s4dfs4fdsfsf4sd45fs\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c0e48fdf68c4a1bf7029f0d212ee039e8ded42411e13a7ab0ecf4ba0e6461a0", + "regex": "(?i)^https?\\:\\/\\/dfdf65s4dfs4fdsfsf4sd45fs\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "133939e5ff77b8aafcbd25acc9aef9ae73ac63fd35165d9ba3307983bd6575f5", + "regex": "(?i)^https?\\:\\/\\/dfdf65s4dfs4fdsfsf4sd45fs\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d7bf52aeab33021a1ade5da7787d937f4b611b1bec0032d42414a5eb9170ef5", + "regex": "(?i)^https?\\:\\/\\/megauploadlinksvariados\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a121b6dcc96dac9d9d131078e844636758e68853119087d10f17d3739a0ea43", + "regex": "(?i)^https?\\:\\/\\/megauploadlinksvariados\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74e2f702b3db4ffc9e2cc127558dfe00dc15e9e796fb4e5f5078fd2f5b9c61be", + "regex": "(?i)^https?\\:\\/\\/megauploadlinksvariados\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a5f5649d5eba00c216457f4502368298a0fced98c18f4f7cf4db0d125ab1c0c", + "regex": "(?i)^https?\\:\\/\\/megauploadlinksvariados\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b81659ad56295297b5e772acb920cbfa2c69f18542b805d0fdbf1de9b73fe0f7", + "regex": "." + }, + { + "hash": "acdf15d78a3f7340b14763ea65a4e2103b7f086b7601a9a5a99cef5b675388dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NetflixClone" + }, + { + "hash": "d8cfb8d084e93d64026c9b78acf46252f870db3c9769a69411d4308cd4fb7064", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9be9eadbdd3c459f5a88f5269ed0036f716a62d96ef5b5602f0c73d6f60aade2", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c5d88f274a68e4aabc5a04fc674b06adc7fc8d68b05903bf378120818897352", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "364de48424bef609596ff54a447ac6b5dfa904a2246438c650dedf1aac3f4c4a", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d6cc3faa37e108512cc997e563e81abd1b343ace3442f26349e8604606e08c1", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89d5e20c551ebc2da27f2cc905aa9b2540a8d38db61f22e699c74e6d1c60e69b", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1ce4dd36fca2201d98423f908defabdcadae966f08331f3a6b35f463961fa1c", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f69d1399d6eab91536a78e16b8e4ad323780a848ed972e00857171b0eb412a1", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0369efa4cc1458ea9bc1d119e89b5edf30b1ecd7210f6e953ff4c707b55ef46a", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "730163d8e1e88ee3b6b8c1efe54b8da013c1e6bf03fd8a6ca83574f6dd879a87", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9446ffa643631382cc15c033ce3a077c2d040c6a2507c69be6e63c07bc15c460", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52a5d05c4591ecdb83d0c708bd804f3512fba37b0ddccee5d712cd63d278532b", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "042bf3fb9d1a2e83e089ae0504bc4ee756e75d353453996fbf2d0fdbe8e8f1c0", + "regex": "(?i)^https?\\:\\/\\/sdsfdsgfdsgdscge\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5af6261713a50f94212ed9420e1831715713c96e36f2c70578c78beb9c09a59", + "regex": "." + }, + { + "hash": "b65428e9e84877622b738db0a53d9cb4b25e6f21c274087a3e6abc1eee7f238d", + "regex": "(?i)^https?\\:\\/\\/videodexiomara\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "793e5423ce3adfc9f5657f3edd98e1ab7018ef2a33bc878f9c186efe0df13edc", + "regex": "(?i)^https?\\:\\/\\/videodexiomara\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e73a94f85550dbc1d38733da782bb29aa90e488e6a8ad0033e1be8f6d44b05fa", + "regex": "(?i)^https?\\:\\/\\/videodexiomara\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01bc962220359b8b13ee1953821e2580aa475276116f36e9d03386820a301bdb", + "regex": "(?i)^https?\\:\\/\\/videodexiomara\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f134d615b8ae3bd2106763f8ee1062126e360bdafbd7a1d13f841c180b1971c0", + "regex": "(?i)^https?\\:\\/\\/videodexiomara\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f306268ec7f122ffcf6be63b0c67310bdc07702561716868509f31f42357b9df", + "regex": "(?i)^https?\\:\\/\\/videodexiomara\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f40d69490a919bbd30a5bcffc10bf6f6459828358c1e4031ad3a9ddfeb91c43", + "regex": "(?i)^https?\\:\\/\\/videodexiomara\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8251589f4baea1d83a50ac45d31a29e9ff9315513b3088743ea33c1da196bf8", + "regex": "(?i)^https?\\:\\/\\/videodexiomara\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12b4ba9478d6d8fa0c5d75b2c14d6c39f09b641ff87b8c7fe306372a19ee5961", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+AJE2\\.html$" + }, + { + "hash": "bd1ddf024a2936a7526b21501c6108af6d6a5f113995aad805e6c66e34d9e607", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5980d621f51e3a2aeff5422dc2e1739a2082627aff8255be4c7b1950c3d64cab", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60fcc5c14031cc7fae60db07f0007b2681fd74764063a28da9c1a366cc002c13", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e5735bdb9cf3a520607d5e06517603ddb4a27a9a0b26fff3a15bff87437a7b5", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2fbca04d992b09d61701fe422c8bc7dff85ce0609f614b4255dea7e75defa22", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4a307957e0f84efb109a902d7c6d29b8842457aa50ed6dd7f2efc411f56a481", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bee130934e6e49a6a4084535b92512d03521cf5e3923462f07409dcbebd770c8", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "060fa3338231047e4cbe3faec2976a3c0e93b37fa429c92ae4d55ce0703c55f9", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "962f7d5495e0f8de81dc1d85a9bbd9e5c703b0a4b5c3e037a161635ec657a70d", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ed0b243dd0adf2d5b10af79ebee75aaaf0bb98bd0ba9cad17bdef2ff6c1ba8", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e160ddaa57363df2a6aae80e8f1a4e3902c1fa44ce76d106c2525c923042a09a", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5497379c1f3afc1f67abceb87d215e3cd984f03703ac72ec733c642aada3e3b3", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32b51cc71f1eb3e5906f39ddf72a8f6d0dded3bb1aa87a8d06de023205637659", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+ncn(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d25db95cf33c047ba0feadb46c94c018e312bd672c419f1987a01bf4a923335", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home_page_net(?:[\\/\\\\]+|$)" + }, + { + "hash": "2465e70820f4c7925464305e33fd8420adae6a032229e5d3a6e9bf054867a033", + "regex": "(?i)^https?\\:\\/\\/videodfgfgh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44e0e46961585fa5da916e792a1915cb842841eb217552fc54e3508b87e4b251", + "regex": "(?i)^https?\\:\\/\\/videodfgfgh\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f445dd3964bb7c4e5fef19f2fd918aec9d9679153c91e96a9f6df7ccadb5990f", + "regex": "(?i)^https?\\:\\/\\/videodfgfgh\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab48fa7b740b4e6e630daa56723c8a7cd77355e834149c3263c0da74add18a84", + "regex": "(?i)^https?\\:\\/\\/videodfgfgh\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3813b094320f62d06cc489e2adab03fc57e073e7416ab0b6459c8b2bf5d53d18", + "regex": "(?i)^https?\\:\\/\\/videodfgfgh\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66df65aa91279a7ac051620ac176f59ffbbd1e91bebf37cdaaca20bdcf4ef456", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd68b210a2cb5b30895be94d497163af8601954e38e723582c2512237b3b35d8", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29482f45e57549e773688ca5e9aed00e5e6e4521067748a9c4d1ea39328d8f78", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbe1e5b2e5eddbd1af0ea5684d8850079b398e0d7be433cf8ee2d8da53d7f921", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "151a892431ee6bb2634d74c8e185044b7af184b041d48ecad0951ee8a1350d12", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdbf276eb5d9bdd9006ef691d17217988bb4fa780dce6ac139a3bfcc3b2fc576", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36a604b3e964220682bae6d0ea19205a13171938325bdb540317aba71fe815b8", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2939e1fde54510aaa5c43752af27a673b35ce52f9c206dde8581e314e9a168b8", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0280f9c8e7bb3362ef3ec1cf1c18064620e1b8b05f8984e2bea723ae55cb0405", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f83350d68f63f88bee4e7e7b7e365d1c2d426dc6395abd8d5a270d4adc30acb", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9033be1e6dd9d97c961c914db558f4154718f425448c6f1b9e74a3faacc53f4c", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b656c6fa49dc02fe356b71a4107ed1d17627b95b21da7c83520330ae59550fe", + "regex": "(?i)^https?\\:\\/\\/videodfgdfgrdfg\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd5baf6c50ee50f10d2e060d943b1176238868c38ceb723e51de80d53e30f6c1", + "regex": "(?i)^https?\\:\\/\\/bafkreid2ti2xg757cvg3fxcycxb3nvhebr7dfinnzbjla6ykw3rnb4y3du\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "adbf47ffa04aa7c2ca45c6db699f2f96dd5562c6a96dc34f81feeb2b133e7d09", + "regex": "(?i)^https?\\:\\/\\/careqb\\-customer\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c68f42cf3a81e0ae674addcd6332550ba7ec8ae13e1f789323d6860db567dd91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link(?:\\(|\\%28)1(?:\\)|\\%29)\\.html$" + }, + { + "hash": "7f7b31a4b3066cbffc8749582f748c9eb913358732249470d1b7f87870be4900", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-4u\\-2023\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "635bef3b9d46ad9b906783814910f2229495dad98a9d2e3b44323bd6b305734b", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-4u\\-2023\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8262b540aed16a942ae4d9cfcb8ecf8fdcb2453e8d755658054c7f805c772cf", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-4u\\-2023\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "528bbe55574c61278f4528829923c5580ba0adca138ae4d840b9e16fd136b8ae", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-4u\\-2023\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "113f18fc3a1f8db7530a19933b794ed9879573d83ad4775f41e201f6918d0b8c", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-4u\\-2023\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1410ebd5a6b31e8e89598d14b5e0f56abc7df4050ec0c4009ba16c05fb1e615f", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-4u\\-2023\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ece5ec050e7deac633d1e48c4c21e924e04fbda8544ab4615ccc3aa8f1268764", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-4u\\-2023\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5009a19546a0b428445772817945fff4a83580feb4080ddb56709e29e0113e", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-4u\\-2023\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a50624b78f182a68861fd6c7b354510fdf4393cc1f4fdf4bc30210b7bda34a0", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b43e618d1bd743f4bf24cbf332b73cf5ff7ad4f49d894ce2a2ca8a3ff978a3da", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "164c47a6d6adcff01ca73847af8080df8b673b432e2ffc4b54b666cb2e927b81", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bee1a78f52c368a66089a0fbcdeaa12b672f75986cce1ba759b9392e25941ff", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4e13e08a3f3b79aaa2b068592ce9882f25ae171c2b4f9102073cd2d4396749c", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b0312e15306e3ecb1b60a0f506196780d33821d7cd86f322d64fb6b2baff775", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7248bf6506cd53d549c694c9640a970d94be1e2de6f068a576a1e42c07ad119e", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3265bf73ffe7e099507f68ad7696cec67fa6a9479ee6cbbbc73be3b674688afe", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ded29539e98e37038a145796e434f392a57928f5cba560fbfa662855a73eded2", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb564fe11918457cd0eb6cdef25e0d5232b48bf2da22cb32ea6287af5c2d8b34", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1702cdbaea8f61f1f5a9ffc245718ef8837cd534c3330df9664ff6043e76901d", + "regex": "(?i)^https?\\:\\/\\/robloxgift\\-\\-cards\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fac1a49239e497ae1c9c4746de3781658f9890162744d0b14b7b8ffcc38f5436", + "regex": "(?i)^https?\\:\\/\\/acumenswanderings\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "faae42a71ddb3986ce96b89e512d408e58f96acce112915ab91268428b1a5be3", + "regex": "(?i)^https?\\:\\/\\/acumenswanderings\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96e8c67d8707b2a5232372af3ce28c4c22b52f3b437b82b27b3032c04b517106", + "regex": "(?i)^https?\\:\\/\\/acumenswanderings\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43c2a83dce7a3a5e0000cf17cdff550d0d167d986bc2c66088fd17a8e58d5292", + "regex": "(?i)^https?\\:\\/\\/acumenswanderings\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6437bec0741622cb498e9eb6a943bce9e831250acf6a99e578871bfebe2017aa", + "regex": "(?i)^https?\\:\\/\\/acumenswanderings\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fee0b72cdddf1a233df07a87918bbcd92bea17cf887d70645c53299b526689a", + "regex": "(?i)^https?\\:\\/\\/acumenswanderings\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f18b78535c9b4f6a9c736b160da9c7cb82a9192798ea99c2a564799038d31746", + "regex": "(?i)^https?\\:\\/\\/cryptohelpbox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc867ed89ca5f634790c61c268b1bac293be808a81eadc5d1a59c293f789e23a", + "regex": "(?i)^https?\\:\\/\\/cryptohelpbox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9973fdf3fc2c3f5c650ff99f0ce560848016d9604a85585b6d8da987bc20b5b2", + "regex": "(?i)^https?\\:\\/\\/cryptohelpbox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47867688629a2c295367a1cc21ff4c2a5bdd2440002d88e1e8b16bcea0fbf93b", + "regex": "(?i)^https?\\:\\/\\/viewnow324\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a497dfffa812c3a0cfe6063ad3e969fda52e18bfaf6645f82c475aae4034adc", + "regex": "(?i)^https?\\:\\/\\/authy000\\-ssomail354es\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd13619fd2a408aa579b022de84a7ee53c8c2791310ff8d4c633df3779038a75", + "regex": "(?i)^https?\\:\\/\\/authy000\\-ssomail5ee5e\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "368f70952933836440d7d71b918ace2f45a1af395b4a60e67c13e1e3734742e2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chirusfbclone(?:[\\/\\\\]+|$)" + }, + { + "hash": "642e993ceaf7a8f88fb15da5bf66977a3474d10cddc68a179a49dc9b018c2837", + "regex": "." + }, + { + "hash": "5fdaaae37a2acaaf928885d147eec81d89ed00a1d68e4b87069e1a72f631f1e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iiindex\\.html" + }, + { + "hash": "a43e91514d92ab99e2c05fefd5b6ffdc8dadbc1e0cd0fca2afeefeb3d76c80ce", + "regex": "(?i)^https?\\:\\/\\/phantowallett\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "695dc6634d11e0211f68507a9e4188d10fa1b7982bc548224c57e5a2e79a9891", + "regex": "(?i)^https?\\:\\/\\/phantowallett\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8fc2ad4110e7c0c84adfdd6632e5d41009189eea72dc35372dacc1258cd53e8", + "regex": "(?i)^https?\\:\\/\\/phantowallett\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9782de39688a60344a6f5b4c3a20ea500ca38da580f3ab67c19c9b4b78ea9d7", + "regex": "(?i)^https?\\:\\/\\/phantowallett\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ed07e88605d28beda5b70858190a0653a5ffd768e18c7c424cf771b5e698ebc", + "regex": "(?i)^https?\\:\\/\\/phantowallett\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a390d8758fe9522e6c4e253baf111f3479b4ffa9b800ebeee1ca2a2406c253ec", + "regex": "(?i)^https?\\:\\/\\/phantowallett\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c04a228196cb92db3559c660016b692d7ed739704a74646ccd9e9f0888762c", + "regex": "(?i)^https?\\:\\/\\/fgchnfgkjghkhjgsf\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9431bd3483585457a4226509b1ab22865dd245c79ebf8e713651a7ac3d34a679", + "regex": "(?i)^https?\\:\\/\\/fgchnfgkjghkhjgsf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4478e1229c3a7841f820afec33cb1bdcba61b12f1f0e5d594a801ee36e574020", + "regex": "(?i)^https?\\:\\/\\/fgchnfgkjghkhjgsf\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7f1d9edcbb38b07814cc3ed8c5df5051ff51567a0b8c4c99b9f676d1d95ef49", + "regex": "(?i)^https?\\:\\/\\/fgchnfgkjghkhjgsf\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08005697410c02677928a76ec7058108b97e5e010c8db0264496b8bf42f88093", + "regex": "(?i)^https?\\:\\/\\/fgchnfgkjghkhjgsf\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea8cf4a7bd3885705928a35299c83e888c526fe2e2f68484bb1cc421426cb3a2", + "regex": "(?i)^https?\\:\\/\\/fgchnfgkjghkhjgsf\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446748fd4e4a076841120f40a0eec34ae538e4c9bc4ddb69a1a445a1bb91e99c", + "regex": "(?i)^https?\\:\\/\\/fgchnfgkjghkhjgsf\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69216059c95733183992a4bd86a6571d937fffc71db1f91593f84b6cdec4be1b", + "regex": "(?i)^https?\\:\\/\\/fgchnfgkjghkhjgsf\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "382141b945fd8c6711b61c70f348a93733c307547baba9c58bfd63e7106f5dc6", + "regex": "(?i)^https?\\:\\/\\/fgchnfgkjghkhjgsf\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d05c35d5e31d9751ac64c2d581e80a867c1771809f328660274a03e971f2e8cf", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "164fcea64870e4da19c77f8b6936af7d87d2dcf41cfcf98c968312c4e75260fd", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a4ecf2950e6bb727c44d786eed11074980bb63d62d3cb9d667bc99c8abfa4d8", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c470ed9829c539dc8e499b7708471d5637337e9ba18f7b0707c6df611a0b2a25", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b85f023df07afb4333e8c53b028886603cb0c8323b0518f631c22a94fd11c5a", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3c8480c0e048bd109221eb93f9e2e742e377bd5b348e45995b1a34b25bdc6a5", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25de446dee59495b9ed88d5222b01af7d5bd1784e6f7a15b0da9f53e9f6260a9", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4e1f82a7e86c75d2fec03a0cb6d0e9f21c17a667fc9b425937775f50d974e97", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83397fbd0ebbd45bce80522fd0f204d735e416d1414d107f4c018f296455c1e0", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cc7f816aa0ce14fe41904e66a725e1925c4c16e128c49bb4f7a377e6b60121", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4c69324be489ac0e700e0e5a147b19f05c445f2af83e5f89bf8ae2f43cedb81", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa15ce2f6f32a94817e7af36b1b638b7573fb8b3e66b475e8e9cabfcb02d65c1", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d36d46f690b71831ca4d4c8730e09926a872c7e4667d2a9fa687689d2a7bcd11", + "regex": "(?i)^https?\\:\\/\\/ghhjjkiio\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bfa9bbdfcf025cd8ff47d61299a8172772ffc176de027b0fd1d311cf7f517f", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef5722dfa047dbfdbfe4b3b952130c12ad14937b80c58a28ff7266d8b1b5fa02", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a37ad9191092ffa279f60f52e7d8ffacfbb1bae790c4d5dd52a71bbcfc94995", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6950326fdea19fb602fadb3e529b2779de9339f402599dbd8839868e3a318df3", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06ded19fa4a49c97945dfb80394d72efe494f86016d542bf1e5e06af0c1cf1d8", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87d83a9379dc57c5e1420d2192b528d7d89fb9137765a5c9b244cc9346f8eee4", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44bd02984851191a00a7812c7f517dbc026ba804b2b60a84e037d21628fa49db", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cb3f0944dc10708b9cd916745aa9da6b51f0e45f85d81b1e8cdf50721cbd8f3", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b71636c88f4675cce3b636bd9cfeb6a94eacde8098cc89e31354783b7599495e", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15270e2aba365b61c500c855c60382a2fb1da34a2c1df1f384c1bb7d8d94eb93", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c98425738761abceff6491c8243757d30eb140d6d0d7dc497ffab14263b6f113", + "regex": "(?i)^https?\\:\\/\\/gdfgdfjfgkjfgjdfgsdfsd\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a67bc39c760aef8943da8999885d5526a0a04893fb956e2aa465af693f24f62", + "regex": "(?i)^https?\\:\\/\\/jhgjghkfjdfhsgsdgs\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9fbfb3da4a1c02fa563f67c20b04528cd58ed2d8574d1f360e9d7ad96ef9178", + "regex": "(?i)^https?\\:\\/\\/jhgjghkfjdfhsgsdgs\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "875014818fe35f719b812f4a2f3e6bc0de67fe050e11c027d876531d222520cf", + "regex": "(?i)^https?\\:\\/\\/jhgjghkfjdfhsgsdgs\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3821d4c6bca0b12a849377bcbf82a074046559ec7fb0f93fef6f2fa2566631ba", + "regex": "(?i)^https?\\:\\/\\/jhgjghkfjdfhsgsdgs\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71b88a1a1a8e9686a1e8e86381518b3343bc2d4f3b368252cd57102f4b54f6b0", + "regex": "(?i)^https?\\:\\/\\/jhgjghkfjdfhsgsdgs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83eccf28d84e16f62cce69411e64364bf22c37ee3c13ef0b6bb5d68ef46f6329", + "regex": "(?i)^https?\\:\\/\\/jhgjghkfjdfhsgsdgs\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9a018bbef1e55b666afc13e36c171533e060edc5d7b256f0fa03ab88c07a8c5", + "regex": "(?i)^https?\\:\\/\\/jhgjghkfjdfhsgsdgs\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21eb2e24879acbaa18e8b6258cf5fce0a709978b45a0d45564174fc1932eebee", + "regex": "(?i)^https?\\:\\/\\/jhgjghkfjdfhsgsdgs\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c1e46c38de70d670db9587dcb176fc5f7823e5a7a9bd76859bf3540d3f548b6", + "regex": "(?i)^https?\\:\\/\\/hhjkjkkiuhjj\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b02bdbfe35278daafa8c740e63ef34301b98ad3c9aaaa6d301e6f18e3416ff13", + "regex": "(?i)^https?\\:\\/\\/hhjkjkkiuhjj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ec2db1307c22c534c96bd2416104b08ba123f1641d6aa438fa521763eaf4867", + "regex": "(?i)^https?\\:\\/\\/hhjkjkkiuhjj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd9b4980a5c5020e372be781297534a834ee3822d68694ca0e8639b51dcea833", + "regex": "(?i)^https?\\:\\/\\/hhjkjkkiuhjj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3dd60d1f1a19f508122bd7e1f67282a3f101913d9c747e651d7640010fc38c7", + "regex": "(?i)^https?\\:\\/\\/hhjkjkkiuhjj\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75d793e0d27d1ffbf7366b3d5fb068367ebde79dd1daabdc7353fdd2fc823af", + "regex": "(?i)^https?\\:\\/\\/hhjkjkkiuhjj\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f9ffe21a6bf8f1ae8cc30dd4cb9014bccc61893379a8b12ca7cd096b8f313c8", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8be0ad7e93cc430fee1bfec7d3e4b72ce2f487d2cea93f73180d06eef151f8dc", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68c855270b3f92ab07ddf34f8826c0cf33d3a58833c11c2cd6d78d94be86d670", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f7a066b2196a9b76d290091baddfad1a1d6e67b7f695a5f6664ac3b839be406", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e81bdb07b456ede6d1bdacb69adfc642cb3a05fcbd4e6ff94e8aea2cf785219", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "302f48b1f535fabe3428de8209c078b45a7b211f1f859e84075ee0b8935fe503", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a238b7c3fe6f41513a66e3beb3460d089065483acd1a0ab5ad27a17e53735df", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec9bc44c5238df96446c3610d9ee1b5e0f5c1754609263f9bf36b2e088a38a52", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d813a306afdb8db32a49202f0cd45cef8713b6536da353e0fead77450804138", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63198c57acbab5231c0fe8db9b2144f547818dc70ef7481beda1044aff1e6cc4", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "865e50a50ad5c96e73782a88f486abf3d68d1cb7d46b959ad09d4cd9b052d751", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bb5d84dcfc8a66025ce6164a3a58fd79eca779edc120f0ca4a89d9cfab38ebb", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9b146a36b33d5f52d6c0a879c607ad8b92549563e7906af2c79c399b84f1800", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96b1ba1ab0b5721fb7fc6c7497f964f493f5bb1ea169079b891fc03f582a9036", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40658998231759630396868b83da82e124e616140e8d7e25ae07950998ac7bcd", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "673d7921e26a342a7769e08d8f285eec7e00e60ad982ddf2d3a5a276b39735cb", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c3904e571b5b578ba188ed8a1eefd7a1fa66f83df5fd2f47db25da2b2db0955", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "985070800e3dc8c8c6b5dcd15e93c18039c561bf466dbe25b46b9d0abc24ea11", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "178b14f1fcc4cbda01ecd42dee90e5a4890fa86d1bf207770dbdeee8edfec8e8", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01ef7e34fae106d3f7d4f513a8748c9b0b8286ca49fce28d204d3028e0395eef", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95f02f737cfcf59fc29ecfdca8762e4dee1614e597778f1ef8a0eec32fa5f7b4", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b610cc7e9f935d288ee489fd3876825173741d56e9890321617fda0795065cb9", + "regex": "(?i)^https?\\:\\/\\/hhdjdfjdghfghfghgfjfgjhfgj\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5824f8910a55d09f555d5d103b44a8eda720f8c520bda97a56d61dc29f3ab568", + "regex": "(?i)^https?\\:\\/\\/gffdhgfdjhfgjfgjgdjhgf\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a42fad971728943111742e56fddc9104bfbe05cfdefcf4314182a98687af39ff", + "regex": "(?i)^https?\\:\\/\\/gffdhgfdjhfgjfgjgdjhgf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0691378417bbb8f0d323bb17e522a4a69a737bb310056b1ba86713fdb07c07f1", + "regex": "(?i)^https?\\:\\/\\/gffdhgfdjhfgjfgjgdjhgf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f85c9e7a2f51a5a40f3f3692876b282b77e5f65d75f2e455e9bd338b6ecdeaa", + "regex": "(?i)^https?\\:\\/\\/gffdhgfdjhfgjfgjgdjhgf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2cda85f85c2ec4b6270cd9085261afa0205fc4744cb9819690afeb60d705284", + "regex": "(?i)^https?\\:\\/\\/gffdhgfdjhfgjfgjgdjhgf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "408837a6ac8fb40393bf0ec3f630e02df1a50da9d354b823e0961885594ecb4a", + "regex": "(?i)^https?\\:\\/\\/gffdhgfdjhfgjfgjgdjhgf\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a238aeca4c331fe96dae5f4866913b72df0bbc0fb6928978da4e613cee143389", + "regex": "(?i)^https?\\:\\/\\/gffdhgfdjhfgjfgjgdjhgf\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe919187ad21beff40a711535bba6248eb0c2724608f259ce94e6719607ede9", + "regex": "(?i)^https?\\:\\/\\/gffdhgfdjhfgjfgjgdjhgf\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9399067ba9acac3e5ffce4c709436928b3d55273166b15defc5938113b0b4d68", + "regex": "(?i)^https?\\:\\/\\/gffdhgfdjhfgjfgjgdjhgf\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76b20ef09a9051d16bdef26addbaee2c2ed8c6f1707c0da47b7382ff5b57cc30", + "regex": "(?i)^https?\\:\\/\\/gcvhhjfggwadrre\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed92afdaa34fb5b10bfae22700a3eb1e043c64a505e57cf657894bfbe1b4d4f0", + "regex": "(?i)^https?\\:\\/\\/gcvhhjfggwadrre\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c08ff328ea6c2383e938dd54f1035a63f20d2bd3ec2f3697a1f65e3dba970996", + "regex": "(?i)^https?\\:\\/\\/gcvhhjfggwadrre\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c6b40b27e45f756bb69ef83079e43d726fda21cd638ee185ff6502aa2dfcad6", + "regex": "(?i)^https?\\:\\/\\/gcvhhjfggwadrre\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b977d015af4f649bb74caa4a0d235acf78ceb8bffc2f971649dcf3b89240e17a", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f6d62e709d3a4b99ffb32d755568dfb0d0d2459c50c9b822a4962fc98ff1e00", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "504d0d702f2e3542fb367384789af7fa84c0bfab284f276657533822c3c67251", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69b1025dccc995cf3e1ae6dc394df41b96ea386dd15d554850b580d9496084f2", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72a40a15070f1522a6c052db200cac3d9baeb8156347f2e5a08969ff3c54875a", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c913d97ff9adae57bd525d95355066579a0cabef450317d2d7265433ba0bd7c9", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c9ff1c8e534efc617782ea74c88e1da59a8dbe6dfb497b217d29b3e1ef83bb9", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c67c7f372a9b7ed1d455ce45257af9401e5da789115e95c062270c654ee2cc8", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83cf8c759bdaac923f5c25040035ff7da97fcfed49e1ff8f0d71a8ced91b2672", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14b3635af064a72137ec9b17676e898c0007804bb2ea626b8c8552402be865b2", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "249344a69e3e76c1a7a615ebf07f24da7b4e0bf87ed95c0804195cb80e3a462c", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0f12fcaa4c2e5221c499d302b6a49d2ee220a2e3b125feab6fae2a0e8047cee", + "regex": "(?i)^https?\\:\\/\\/hfghjfgjghkjghlghjfghdfgd\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f6ccb77bb6049e7ae3a84457b189dddf68b134efc8234602346e7a47d42cddc", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eea51b57b9c14683928ec830ebc4bf6c2ded5ac1b95d2420dc06e1fb56295022", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0608bd83b95fa741fc61b5820825ab3b2e0ac1c97e22053382c317f7803ab90b", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5205d9ac4c878724f2eeaae677354c75b9da42836a8fceb5d873bdac34844eb9", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3e5cf3195f4ec119535643e549d1a36fd5857f9723555af5141cb69743859a9", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dae349472552095b073f749207388ff15ef8fa026cb8391462b5a3b6e0dd4963", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "578452d928c7eccb8031fab7be66cecdbf449fc54d1c2b4936ebc17415fe50ff", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "097f7f1ae9734f64dc70904408cf60299b80632ebed2fbd9e61e501c4a242d25", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5256c2f7030e2356ef3eccd4e629967ef9f79093968799f37f2267c05d876a3b", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ad6fcd6866b70948e2e60e7ac39179a2e97329d5b633d67ed2307e78afae107", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20350858cb98807b92a5b1c03d381ef949ba0e759361301a30feef94aa3c85ab", + "regex": "(?i)^https?\\:\\/\\/fghghjhuiuoi\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "975cb6b7a7974e94ad579dc579e3ff67f542e9d8c6bdac54e4afcdfa0466d771", + "regex": "(?i)^https?\\:\\/\\/fghghjhuiuoi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e46ede01c6725c7103370978f22371e08e1b1325e8397abdd724b5c53da80caa", + "regex": "(?i)^https?\\:\\/\\/fghghjhuiuoi\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b753a006d4e5ffeebef811ef55fd17343cbdc28667637b6ea00621d57a730ac2", + "regex": "(?i)^https?\\:\\/\\/fghghjhuiuoi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee3e05fe1bc164a7a12322856ed2154ae65ccc128e0d1cd221782b3af8447bcf", + "regex": "(?i)^https?\\:\\/\\/fghghjhuiuoi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47cef7d00fd05f22757bfe41e198abfa4a0d45787f5f906b1959e4eaff110446", + "regex": "(?i)^https?\\:\\/\\/fghghjhuiuoi\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2f9d70911c9275fe15f083d2eb6903f29ceada8372dc71bcec82ed97fd13a5e", + "regex": "(?i)^https?\\:\\/\\/fghghjhuiuoi\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7abe22817c86172bf28e04d84d6f66aa020442bc205ef2b335a7c58f297e38a5", + "regex": "(?i)^https?\\:\\/\\/fghghjhuiuoi\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7669ac6541aa550d50ab685b813d45495dd866311e7fa3d9b420e8b59003fe76", + "regex": "(?i)^https?\\:\\/\\/fghghjhuiuoi\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1ef125f3f71df01f63ab8640366efd11d1926ebfa3f1b0eb2e3d8fec06d8d54", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc90f24175f0ce4365395b11d12c957f9de60881bdd1e48d00a175bd2c14f643", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20b65fdc18834639c6bb239fa05c323084fb4711f9b2e48749ebef9f35a9af35", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a794b00201079fa2822dfe88aba1c1edbbe4be6531a0c27b283554bf13d0568e", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c5ed104a8683bc7e2b7c51d060c252053d64b0630253b0c02f3f4be549e968", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d7d331ffb420d91f273d21162630cf0e4b8f3d0c6927850bd15f9dbbefeb81e", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "327e37f7105928f8115ecb72c1c271cf3cc615b56082ebb321da06947c8b15e5", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73deb3b8e845c4bc166c82e35773cd6b665d42618a3c967eb9dc840f44151156", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4503ee670f265f8bf84fd84888a7d68e5da4d0f181c33f76d677a60b3b49f61f", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b2b11ba97eb7872c14bb4f5eac99ecfba6ccfc1cb6c4656c0e52b567e740084e", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "361dfe42ec4e6b8e373165f168babc66b585fb12dc429cc0c6e1c9f03183eaa6", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3634eda888d86a316dcb22d8f5d78da80132cadcc4abef0fd344a6f07b2a32cb", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5de8d4d461168b1002fab10d04f0e3be88f6bc23a33b15274552bd03049f2c53", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd1337e2454d18283cd874b12d7775ce81c1c48fc8deea018e1693021bf4df7b", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5474326d7ce1aa64a34435a57df44a9754edea34bca46c24e882a35919dd2a41", + "regex": "(?i)^https?\\:\\/\\/freevideohotgirlsexxy\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf1b1284fa7ca56fa1ecb8a294a490658a4f0688eeda12c6a76847545c033542", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1251de95debe6b78f1fe3ce591efd7486c7110d2891e2a670e3d4a5e8c32f270", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c31877fa951bfa31b8220be5d6a32f7d618ef421c51b4fb7136a393c90426ba", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d29a1350a8d1ee58aa981531b618bc882d82d62dc8d7fda30176f22f09c92a9a", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae4f19c7e057d381b02b14bec4868a9a6c4128d1e92b314520c76b0078d6cbc4", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe3ea5faa86c0b51a32ce2e998236f95c5b9e121362153f94b17941c00bbdbfb", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6cb9634ddbc1c8c0fe80730b6fdd07a307105b42962702aa717219621e96dbc", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adbfabcde689f3a63d6f405cfbb48e9651221be31a0071147891d45e9a3d9966", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e091584a3f76dd11d6942d7af4583e5cae2a826b7c207c805a9cdf312f2e926d", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe9479a9e641770fc6a39145fa57e8ff5210c2f837ca8f294ed375226b047f95", + "regex": "(?i)^https?\\:\\/\\/sgdfhgfdhgfjfghkjfgjfghfg\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "daba89b9f078c056a7cc98c7a87ee01ea22c09ae673c14ad7936617b2f249c1a", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4707767ff60ce8ed061cead8ee36a56b6cbd00dab2aa95dbd0b9af18c15a6c38", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aa2c833498605613f50acb138e0f02a8a08d191eb1f348c90d7fa68dbdd837f", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a6de0a07fc9b12faf4ee89ca293a4033957978680467c930540717eaa84e6a2", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aea266bdfb66aa978de55a6f910a684c3ae71439cec2fe79d0e46db5f6fe1ba", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66b68e71f4af1ad96425e38292ab57886b597adf0cbd57b29809c2c5b0427215", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5aec97abe1f1d0cc389d18cb4f3f36eb230e52bd4db06aae52ffdaf3c36ba0fa", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "615f6e4b5000b7da213f81eea991c750bd245e6a500aad6edfb844a9c87e6150", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad6a088b8ffe7e520906bdb80bfedaa37ecdb5e13d2a254a0b1717bb1804d28c", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa71145b4e02f3070972dc0ccea861b3a40a0c42140a23a92c60e22412656148", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b43fa43528fe0ffa95045b67fc774c9f46a8a6c93b56690c90e51674096a3ae", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc4b837dc08956745e6510452146f8fd8a8e414b5b89e9c03a8eb1a647d529c6", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11344b7a83fed8dbf27458eee7fa7347d2dfd46c06a3b93b9800a8d02f8250f8", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50d4fdfbebe7f12c38a06bf412e77a0b63155c62a67db633601e10079dc5f77d", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c038c83ad16d35835a4f8e5bb58224880209c7640fc8ec3b1e6a4143f7b59a68", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ab71d54901b1253967c93f01b24ce83550b1bfdf362eccaf34c6cfb136c1d7", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d6cf6144cf88ee17895d25b43a41927aa1b963ff25dd9ba31ce017faf758cc3", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a01d833ed56ead76638d8a91b633b22622adf23041ebb8e4d140ec0fc29fe142", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ed50ff00a9aa369db859383ec056964c36c286fce57623e124825cae36b41d7", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7be75212c55bf5160228009dd4d10e35ba9069f236e57a77750c73c208dce229", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a7d24b4a013b1359e94532fb3269e02673c3932ebe9d5ea1b8335a277ad47e3", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9afc8c69f19048de47f98452016c399ce9104530f63787f75aae9ff63c15a1c0", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "844fecb8fc526666cfbddf6e752f5622f087e894b995df358c2535db152b7f73", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "896299f9ca260d48708fbf6deb2fd25660ec7d53aca20f34efa55fe9e2f7f45e", + "regex": "(?i)^https?\\:\\/\\/vipvideohotgirlsexxy\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2eb1546208fc38b8c61407328f3be76e568a5f23f2faf7b52b991c23e159e19", + "regex": "(?i)^https?\\:\\/\\/vipvideohotgirlsexxy\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a28b6af9c576083bafdb73665ac1404b881eebd710d56085eb93babc91bd284", + "regex": "(?i)^https?\\:\\/\\/vipvideohotgirlsexxy\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86c2d4ac4573717b0a85a00ff206342a23efc8ec732d65bddf60f31871bcedec", + "regex": "(?i)^https?\\:\\/\\/vipvideohotgirlsexxy\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dd24023091e1a6b64b57bf4830edc04c29050c21908b6b1656561ff7315f8d6", + "regex": "(?i)^https?\\:\\/\\/vipvideohotgirlsexxy\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cba6d016347bb21e0d8554b8463888e1972235738d6d23320715ad40fa139dc3", + "regex": "(?i)^https?\\:\\/\\/vipvideohotgirlsexxy\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc7f319423528965807bf7cfae217214121878b76276f32f3a35b5fd6d93d46a", + "regex": "(?i)^https?\\:\\/\\/vipvideohotgirlsexxy\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5d00bc45d58f093c9bc6cde19c1e0e123006aa68a47473cd07cee6c079b2422", + "regex": "(?i)^https?\\:\\/\\/vipvideohotgirlsexxy\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "944c052233cdf0dff271831559b0bd2317f68fd3b98d7900854d7f0d56bd6cf1", + "regex": "(?i)^https?\\:\\/\\/hjgjghkhjljghjhgjhgkjhgkgh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5824e1cc2d8e9d403268835a873bb7c1bdc2e63b4cdad494f61aaf44789a549e", + "regex": "(?i)^https?\\:\\/\\/hjgjghkhjljghjhgjhgkjhgkgh\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e80ca7e23b65fd336bce4d2623ca376f92d0e413dffeda83647d7b4ee79a8f29", + "regex": "(?i)^https?\\:\\/\\/hjgjghkhjljghjhgjhgkjhgkgh\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cf934ccb80823900624845e026df7b13b6de86237db749a6aad2a59c0bcd04b", + "regex": "(?i)^https?\\:\\/\\/hjgjghkhjljghjhgjhgkjhgkgh\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9ad51ede3ab0752eedeed0d369c46ac7b45aac451bf9537b5bf439c36097629", + "regex": "(?i)^https?\\:\\/\\/festgrdhfgkjfgkghkgfdhdfgsd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1caf00501a0caff4f66775e17b40c0342801709f9c76a6acd48ac882372ee62b", + "regex": "(?i)^https?\\:\\/\\/festgrdhfgkjfgkghkgfdhdfgsd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93760029f724e84fbf460aff5bfb289dadea74cad383b3f75ee7cc66bbb534ad", + "regex": "(?i)^https?\\:\\/\\/festgrdhfgkjfgkghkgfdhdfgsd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29e5d8e1d541c75fbd2996526aaadcab22cc79f5cc199ff018e06e83eb051abc", + "regex": "(?i)^https?\\:\\/\\/festgrdhfgkjfgkghkgfdhdfgsd\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "777c985fc70da50b6f96be7248255c1fc3fe618c2880b92b0c631675a73a7db2", + "regex": "(?i)^https?\\:\\/\\/festgrdhfgkjfgkghkgfdhdfgsd\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65d99dc2b5591a7319596523f68837eb7cc575678161538ba744b083fa7a2db", + "regex": "(?i)^https?\\:\\/\\/makahuluganongsneakynavideo\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18cdb669f20bcbca038efe82c10030be73da7fa4e093e4041674ae6fd43ee026", + "regex": "(?i)^https?\\:\\/\\/makahuluganongsneakynavideo\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c0e1315607b64f8f3e32fc3ff678e0c9da5446c43747c3ca6f67c7e23e03499", + "regex": "(?i)^https?\\:\\/\\/makahuluganongsneakynavideo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65e892b9722799d73e22fb82b43ad852976df3b2cf4cedde79ed3d59fbbba9cc", + "regex": "(?i)^https?\\:\\/\\/makahuluganongsneakynavideo\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed5165498e66109a17a3b220da57db78a06a1caa097d3a5e62e3baa99ceff1eb", + "regex": "(?i)^https?\\:\\/\\/makahuluganongsneakynavideo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cfa7076924e349c4aa0f0d6be248f7794b59b6c119d651e67e568562fe366a8", + "regex": "(?i)^https?\\:\\/\\/makahuluganongsneakynavideo\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "256913d8a2772dc7bd0a6bff200e9e971bc4270111dd1a912c226a95e22e9383", + "regex": "(?i)^https?\\:\\/\\/makahuluganongsneakynavideo\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a43cad73058072bb1a07f47b678b73033f997cdf1a2034eba66a10eabed5ef23", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7e9938acdadea85c58ba312b4d81b187c36b088cb18ecbad0ad382ea3cb27db", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea3ba481e7815e528f149a8793c0d13060433140f5822489a11b6d417df447ba", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccd2f75458daea87551ed9910b46cdf417b7b51f61e7409be7b18073124efb8b", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d25039c2a1ef24849019a80fc97e6e51b3a6d475eb2779c99b9015b18b4d6b43", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed8031b3a09bc8af0e774f99c79f74b124329c28fc8429f50460fe89a736dbb9", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7556b87795b2e4ad72f2af6f93663e5cf779a758df84dfb37a2ead584a0a88db", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be5ce299df2af2694c40d6e435b6e2244a7554eeb35009ad72483035528cb9a7", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "16cd31dfcbe98b6ba3892362c4ffdb965582abda740bf20aca1713c19a8166ac", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "776e30df9896714849268e0d5e12bf692548a7443f92fa7ad3b83b0cc995e6db", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffe30c843569141071c13a53738838beea94159a1597c3074e824fb20c0ae8a0", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1e9043fc01c63d33f1cf8a9cbcd61b87b863ef3b85cf3d24817170b09844177", + "regex": "(?i)^https?\\:\\/\\/videohotgirlhot\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aab2018b93bcae73d7c7c044643957bd4d743d1f2345723ac38c92b7677c19a0", + "regex": "(?i)^https?\\:\\/\\/2k5hotclipnaisambulat\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b82f69f18dec6a637786c48844b65af074cbd314be4a3b50d5141846f8cb4dd7", + "regex": "(?i)^https?\\:\\/\\/2k5hotclipnaisambulat\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13180c57c1e07e51d092ece5b1e1a1cd86d09c845a13cb9e25ab426883d1bd6f", + "regex": "(?i)^https?\\:\\/\\/2k5hotclipnaisambulat\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ede5f5f0cf993dc5c50f230b66cb3c3f8bf9423c09b8b236369b693983a53f6", + "regex": "(?i)^https?\\:\\/\\/2k5hotclipnaisambulat\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658de1c661e12b0ff30671b596c8d8439cfb748d547e528b614ae820f0d8b5b2", + "regex": "(?i)^https?\\:\\/\\/2k5hotclipnaisambulat\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aac698eba990faf6834078eedfd96b75868fe6ad34d9b52f94a7437c6e3d124", + "regex": "(?i)^https?\\:\\/\\/2k5hotclipnaisambulat\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d589a0c6b116f08b51646a6c49664e23ad8c5ef335c8584685025874aff3b19", + "regex": "(?i)^https?\\:\\/\\/2k5hotclipnaisambulat\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ee1d83d021e20cfc175dade8396e550c2f4dd6a934f2b2657ec735f187d5c8d", + "regex": "(?i)^https?\\:\\/\\/2k5hotclipnaisambulat\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f83206f1eee59a8cf3062a74a2bc1fe416ccf6f5e3bcc230ff773364557d7115", + "regex": "(?i)^https?\\:\\/\\/nilokolovesinglemom\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6aa563a18201e531abcb58c7b65767874a56513cffc5ce58e922abe6bef6a77", + "regex": "(?i)^https?\\:\\/\\/nilokolovesinglemom\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c85998a9df4205df34ed2679a26a900ef710eff7d180109e302cb4985baf17da", + "regex": "(?i)^https?\\:\\/\\/nilokolovesinglemom\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75e2ec6f042df2b0e9272aeba07e6e38ab0e504a3493e07e1e402a502fe8e20d", + "regex": "(?i)^https?\\:\\/\\/iphone12promaxxxxxx\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ffbed2f072526458856e05d4c7000dd14616492cec37c58b3c9e23ce6167663", + "regex": "(?i)^https?\\:\\/\\/iphone12promaxxxxxx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0ac655157c977ad069cc8a82d901d48e8a39508744ead5fad0e012e5dfb21a1", + "regex": "(?i)^https?\\:\\/\\/iphone12promaxxxxxx\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcbfbc26c7ab30ed2dd32f2457f874f41eb0b7a1c1a565957b8ae6ce013c59e2", + "regex": "(?i)^https?\\:\\/\\/iphone12promaxxxxxx\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76b2d4740704509730b5b239da5e0d16cd0d309c60e821ddac7d1f11691755de", + "regex": "(?i)^https?\\:\\/\\/iphone12promaxxxxxx\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37dfed191f7d257c341b7401582f61086083e91ec04008d8b11c27fed15488c2", + "regex": "(?i)^https?\\:\\/\\/iphone12promaxxxxxx\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "886a234117c4b51b1c741ebf5939696a4e1c0d0c04b5e43099a53e9dfa9a89cf", + "regex": "(?i)^https?\\:\\/\\/iphone12promaxxxxxx\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea894c70c4be13e87389e6a92f0d411e6ea6bbdf0ce5bf35d707c9e67e5a3b0a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ment\\.html$" + }, + { + "hash": "ee0c41cffa903b628a167819274afbf0005501da92d344dbf777eb9a737d96a2", + "regex": "." + }, + { + "hash": "544e84101de3f03e900ff64561e1bfcb50c399622ef39ae0b879812e91d6393d", + "regex": "." + }, + { + "hash": "028e223bb19c1cfe169f798e9fd8a2aba7299ada1a66aa98b0608c7a3f215b30", + "regex": "." + }, + { + "hash": "644d7f78c49f67815e66725a2ff45d066d58795178a19c8a2b16468e5a03fa46", + "regex": "." + }, + { + "hash": "2ac23a5d736d51e054c04a61287938b5e7e262a38188cb6606e381e3e2eab4de", + "regex": "." + }, + { + "hash": "56efc416f29897e6e798aa47a7f99ddf5e89d18f5dd9ad9ebb0dacf61cb2cfdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "b07230a5892a84a380d3c7504ae6bcda7b0e005e486e7945a0fbbf72043dfb0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "5e7d82b23bf18ad3fda296170f18657a411bff787b33ac0dc08e00cfe4f2c439", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "74241cba76e2a3194157e5decdd0b7d3b0c23649342635505004bd746eb22454", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "d07f1acb8cebc23a97b9b9262ceb70fe413eebf72fb9199ef03c57def2b7d792", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "3ec9c4afa87d91313a0be99366c3509add6b0f2f48bcc9ceae43ebbae10572a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "25fe39ccc198c0935a3891481e18210528b08325958aaf9f8979e60f312c0999", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "d2bda71ab4cf4efc067a40f7cd863cc4d9f188f4dd82f6c02cda20b9facd80a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "a465b54132652d8d0af07d4c8036bb61f99864d4a008b14fe0924b9a7cc19e1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "e37f6e2985bd39a4a17199d3fa9fc9d72c3d5f0d477d5c01cae3214c029483a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "4f038cf3d1f67c042cdb87ecffe37900b3d1661847896ae5fd8f1c8633acaf29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cLOUjDP3wZoQh\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "544dfa383b937ba5920c84a61bba0e9adb23d471966e27232a3a0da158ab1bac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "b90c8b0d317e8c88064083f5659c1792f1c0f0d2c01187e5c11c97adc319f69c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cLOUjDP3wZoQh\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "30f7eb777ca8e0723ca2aad65880b6c2af6087fedc24c430deef7feb68df521d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "49aafcf46b474a329e145107b495b41d388cfb520c19758c8b79c55dd5734cdd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "e8846c3b9f703fd4d3b62200d502f504b7f033a91c6e4ddfe124491b7406018c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cO7Px5zp42yyh\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "ce3d532d0f92f45930f4a20c799d1841d5a7bdd64a797f1a42cba76901612b9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cNvfQQ0CAjBqw\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "0321fe7eb05c138ed3de990d96f10b114cf597418d56ee98918ad05afaecf591", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "6c73184368d7ab22871c35bce26602535ad30511ec4e685ed823c2c783651dbe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=ca3KePa49lYOY\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "137998301e076d19b475e963bb6e89c7ec5a36838e5a2377c0620eee1a6cb481", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae38vy_kw5p6x\\?campaign\\=AXESS_1313040_291018\\-\\%23\\%23campaign_id\\%3D1313040\\%23\\%23\\-\\%23\\%23merchant_id\\%3D561174\\%23\\%23\\&adgroup\\=AXESS_1313040_291018\\&creative\\=AXESS_1313040_291018\\&deep_link\\=hopi\\:[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\%3D1313040\\%26campaignType\\%3DPOS\\%26campaignTargetingType\\%3DPUBLIC\\&redirect\\=[\\/\\\\]+bit\\.ly\\%2F3JQueCg$" + }, + { + "hash": "bb7d44bacfef8fa9ea9eb2a598ed8395e4b9500d1dbeebe26cf71bab20665307", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cniLenQUgA4ct\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "50886622685b5c9c67455d0c7ab97e41ec26be1fcd02d889ea53e8669aa93b49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cniLenQUgA4ct\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d4186a28b8c1c6c035dc33a6566992394d7b46253e3e7a0b01248b05373a8045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cniLenQUgA4ct\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "4a7a7830d6cc96f373500aeba16099202c2fca9aa166c46a22984d190b0a6c34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cH7xwcpc4OGl5\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "faa572b823a76b0f41a7400f24e1cf462a788b9d6e694393f0373d89c091b75d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cYcTxSpYt0EPJ\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "076619366ddbb7c85b70df5f7e4a54def18d07452ef97e944631c62dee3b51eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGvTPyHrj6QnQ\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "bdfbef1945e55ae0e7c4f72e9ec9c9b855fad5df4b2a56824da73c7602bacfe2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGSEVUeKhj86l\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "b8a3efefa1366884f833b170c40db876de5bc33e7dfd45e6223d7eca80bcec03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cJf2ftsUyrOwg\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d78466cb7c3da0414a67440a635f9207243a1519c2e749ca980d70991c2c6bf9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cOpKCyDg1l8Ft\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d8772b628a285c18904062ca080a4e397ae568b98633b00c410eb70044f44b06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cvTTrGyrEr09I\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "7f0af30a4bef95b4a957b47e76849fd7b8f05d6a8acef68b3b24ded1c8c4d342", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cqK8Y6hF4pnkb\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "86d33cc5b1d0e946312267be6d732e4d811bab3bc5d998645289b8d04ab68892", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cBYk9p7MJ8aqZ\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "94469381cea2be849b89c1dcaa20fb5845f0a4a07d42c1e8985d2e3e1d446e91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cQLOxsf2hjZCt\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "45e92b37f594bccf00b77c3d99953e8c5fbc3c88b60598d602fae8fe13c979e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cYwwPI6s3q20C\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "b90c8b0d317e8c88064083f5659c1792f1c0f0d2c01187e5c11c97adc319f69c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cAWQ9p3srd506\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "bdc30b3089e50b1dfdb27739da5b33c670d8bed8719603f52b5aa0b9ac3f43b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cvTTrGyrEr09I\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "a9d332f7429be571be85a324bf2fec0bb435cefa3125894baa8641d31da780e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cvTTrGyrEr09I\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "34084a80dfbac6c7b715e2919f7bc5225f1311abf8b48713de9b63a22f4f3738", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cBYk9p7MJ8aqZ\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "c4ca3b0d7edb662d51f0a599a0676c69979314253c593e1172896d891116c137", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=c7BoQ3sug4IRI\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "8b54895253c6a1b321028b6b95684559de92c67dab131b7346bae83e3442667f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "1b8fdf5ae8d8bd0feef117a5113d96a843d68c493c5a8952bab6b9be97cf9372", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "bd1659c0c91f8ca0a3662bbe9ef8ed9d7f15f5a3148c44ed4650e995d919d190", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "298b73edd0238ec70f373784c8188b6b733c5111fd37d2f89d214760ea8f9cc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "26b2d47943ed3dba2feebfd4bbaaf4f444d9cc9b8c4abd34a472e085bd739af0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "79c770aefbcea981e3b10d0fae2b08db03337230a148e177fd03d0d7c069390c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "5bde81728aa54e27a3c35314322d2bd3afd48bc690efba9d32b08d6ec8e32c0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "e16886b6135d131bc7cba816501fff5e5336293d2d7840bb511eb95ac128ded8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "e8186620b205541c60028347e9ef2f143b0f04a6417e810db261475d69c1d79d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "b079b0342b374dce53389bd2fd924097e12ef6c2b2c7b5bb6bdc8ec9b973ecf3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "fa1c5f3f038ad9729a3dad85f5926811e1fb2296696016ec671dd388513e3e99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "e0fc0ecb66ffa16efc0de3fbe2c03ed24b4d916210665d2eb798e9cd29034dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "2fd62335619d949866ec28d6dbf9c56be1cce56bccde0c0773e632057e722ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "ca637a208b2100ac9e53d76ad5ca2f117c0c1de4177506a301a20ccdd7b84887", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "4fbf4fb248345a297b7305e5b4e2f510be634a05e5363d74298ca570479ed7ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "45e92b37f594bccf00b77c3d99953e8c5fbc3c88b60598d602fae8fe13c979e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "7283d225be87ffbb424612b5500d3317aa87ace2d21d155dfdd97f49e5ffc0b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "be99319177ff55d970b38c5907b884931cb8b9a1a3189583adb18975e7262b96", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "6ce459932cd3c1aa8e321f21c7464faf5e1a8a0feddb2bad5643afc157b2c0cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "8ae2d7d2b457481213a04e353beb14b830462d34781344fc116e3a60f39e669a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "9afb1c0e17e1bfd20448620169c46c415850c05babc847ee92cae708637777ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "32b537f7bde42722b6481ab9ffea9145319760543a9c5da2541e7c004293c10a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "e8a37395391fb648b0c561591e97aa31d49e3358888354a0bec52f5acfafbbf9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "70664a72e9c173c4ed89f30addbf6de5e3bb67fb37eb2ceb1adbf726604d7668", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d92add69aa003037d45416d2b6db8d45480e0ceafa89bd227240e35d8e923380", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "86d33cc5b1d0e946312267be6d732e4d811bab3bc5d998645289b8d04ab68892", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "3743ec18319af10f61d144bcfd06de4b8c19dc135abb09d1aa2c5b410fae4d53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d78466cb7c3da0414a67440a635f9207243a1519c2e749ca980d70991c2c6bf9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "34084a80dfbac6c7b715e2919f7bc5225f1311abf8b48713de9b63a22f4f3738", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "3e1127196dc80faf175bb31cce07a3ef2475790a0486e70f49a792839b6f868c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "34047be010297fcca5c71550ec775bc4852665d04cefd1bc2214197d117dcc64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "85f30c11d69af1486e6b1e3687270a59ca467a07e7b0089c02cab9190fc89ce4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "e8846c3b9f703fd4d3b62200d502f504b7f033a91c6e4ddfe124491b7406018c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "af4e7dc7c7431c626ca4da43f7384b726cb5dbf2e246c3949cd148753a6c54ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "894a95ccf031df501e8eb481d9cc82d978b9f5bf064d9a7ee98f17b1b9f89f25", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "ce3d532d0f92f45930f4a20c799d1841d5a7bdd64a797f1a42cba76901612b9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "7116631c3b8daaf80dc3b0c7ef796b77d8ce3f4733bf969c3701d01179c1ead3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "b7dbbb90814ea06e8704a049a600a2ecc34be20b08190e81b976a9ea267d5e59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "046c58646e06604e5ca9cd1dbed28133bed249e5d13dfaa01b294899765e2514", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d3a1bd2b9ac4030a2bc520efb3501548a17af23e62e0f241e09b089d18b935c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "e28fab69e5aad42381f20f59b5edc6ee809888f1daf6e0d8d53d9826f9615d12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "52c227a728a24733dd4803f08f24400e9c29953fab4aec9b00d7801cca1ffede", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "885b8bf1095f7170f1edd38db2eeaf1e3c3f1ea3142c3b9eedaab00876c383d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "89e8855991d45663d8e21969b6f370ab6c2fa88c95c71ff7c014283ec8594340", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "013d8048028e7e3f8b92dd40beb69f9b109f3d653d4c25295c9c40b8dd94769b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "a2e51bbd963145d80af9aeed9615f145a6c8ff0e374b565e7da8826225d391f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "6f0a98135f3147ed79e107e0a3cca50181595c6046730c6c5545a674d90cfe3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "08243f73ef107c6adccb4a3a0ef70ebb7e1da54697ce7b63d354e788ecd09c81", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "f5126429e2b2a7a156d5209a82c6c78ebab6ccbd7cd246afee656f5f02888baa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "ef97326b5d1e012970188089a5e94098f70fb1c32bd25f2ed94de35644ae6afc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "8b15e874d95014c50cda7de163fe3268357bf7d8aa2675c9b58388fdaff05760", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "18d7dd6d00a8f3764614da34ca7963c70480042b19ed550a0438bd885200b305", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "4b3dbb872aa753f71a40dd25f465f82de25032a0377ad7f4c557c49aa81a2bc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "71fde939e472c4cd55fc9cc0de3e6e4c3ecc6f8106185f4d2afcf9c2831441fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d4186a28b8c1c6c035dc33a6566992394d7b46253e3e7a0b01248b05373a8045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "7f0af30a4bef95b4a957b47e76849fd7b8f05d6a8acef68b3b24ded1c8c4d342", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "b35ed1f40c02ee8364ff0eb8a0708791667249a6066272291f795bfa3c2dfbfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "b90c8b0d317e8c88064083f5659c1792f1c0f0d2c01187e5c11c97adc319f69c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d029ad58b4dbc0ff847bf810bb2cb2b91db762ff38c5c1778cb78b3ab2ff50b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "e091f438d6d3b78c9788ed831bb2a66dd506e93b432fffcfaac0e4d8f83192f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "24135c48065e16eb79b02d00fcfbe87ed7adcd431899c7c389f54d713837a84d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "250e80b1925ae97d754059f919ccfc4ed9e40c6ff7c6ef4984e875b9a4e0781b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "2dff160cce76bbb2b605897b274a88cabe3e27c9d085115cee86b915743326a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "bb7d44bacfef8fa9ea9eb2a598ed8395e4b9500d1dbeebe26cf71bab20665307", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "13a2b7813e7408e426aef6d0d3bd38dc8e52169bb9e467085fd8c6177275d621", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d0e0179db034e1292e6048784aeb3e622c3fa57a1b612098c5f711839546a575", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "c4ca3b0d7edb662d51f0a599a0676c69979314253c593e1172896d891116c137", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "88c75a6129891359a43b7efe8eaea3346a23392a849a3e5fc451c76c5e011bcd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "dc1a23b729cabe7efc8b875e25796c541f35e2de41e3c5e4d47e79ed96b5fe78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "95fc008f34e0d24bf142815533db0dfcf43909445fe84f6f02fb7b5e92635bbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "50886622685b5c9c67455d0c7ab97e41ec26be1fcd02d889ea53e8669aa93b49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d3bc94b29337aaa50e7dc3de612e7ce6634b275f8c5f7795446e9c45136ffcb5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "1b62be919444fa168c1b0ff9bb974cfc0969ef17b05edcd49c9d2bc913328b64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "c2f9cb0b3cafe8aefbcb289c87e407290bb010ea14c8f330bf761c09d332eb45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d8a52b52a6df28dfe182f077c76d2ddb0f3ef908f5ae19f6fc7ff4c3911e196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "4254ea4632b84fb279bbe3c020a2cdd06184abca26f71557f8e9d0e60e654a84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "45b29528ae90630100fd17bb2ef7d2ad5c4d036943a1d20debde3c9df7bcb223", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "197360773637d2c14370f338b43916ce362774fae769257aadf0a902b4930998", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "2246bf287606aa485dfcc721262b22f02cfe2f67d9e284558ecabd1f3c964a0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "1c671c57bfbf6cd1c91538e5bb7844554eebf63b7f1e71cd47f6e04bc1db82d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "6b67f71004ead6ab1480df94f64c48b6351c7a13a69d81dd02c92aeff7914b8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "962bd955de3ac75a889effc96dd9444e96f7766caa02667116051fea5921b732", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "eda67bbc80c44bf5d27481a633c56bbba9be781eddc7dab82a11864c38e25dd9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "654d81fbc539acb6200d7b1ca545484ba510bbab56d850132decb6023b0a9723", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "dfef86cece5e25f6eec3913ff1afc3b5a9faf406af322a884f8ebfe6163d4456", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "84849b215a6c63f538fa5589cd01e1b48e3fdfad74ba655997a2721dc734d038", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "bdc30b3089e50b1dfdb27739da5b33c670d8bed8719603f52b5aa0b9ac3f43b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d7a73cc9a8a3c3e4459f5d2485b2b9a14dd7f13d6b7be79b4a37bafa44c109da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "45afd9986fceee8d6c4c48b532b822f0246d10b975fdaf8e921b5a88ea970423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "6c73184368d7ab22871c35bce26602535ad30511ec4e685ed823c2c783651dbe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "610a7db6a65a7a421b251617bbe23c4ee48c9959e4337b3fc4ff223edba19ebe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "c77adfddfedfa1f45b4447534dd0cf1889659f25a79c85430d442565e5bbc5c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d8429618bceef137a445e494ce72d018aac53deb14ff309b34f803fa8b333bc6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "94469381cea2be849b89c1dcaa20fb5845f0a4a07d42c1e8985d2e3e1d446e91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d8772b628a285c18904062ca080a4e397ae568b98633b00c410eb70044f44b06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "5706a50de17218b2b37ef43b5a1fc457d6005103ab75c80276746456f0a91eda", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "0f2cc811501cc4aeb9f9c32070a6b3a3791e658daac972c5fb5dba9ae92f3495", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "5c90f21102a961f033637384741a8ea59300ffdf87adde8b3d601c185f54922c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "1389d05b529ae466d353b5b5c26164ed5d6f56aea6a3281bd0c80ffe2497f8e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "435e8ff8e958a5157a9176ae27b2ee4ff7496a3d899d3a44cae66dd72873db4e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "8694d643a59f6e21919f84e271e65341f4c43b80561f9367cbc9bc882484cb97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "faa572b823a76b0f41a7400f24e1cf462a788b9d6e694393f0373d89c091b75d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "7cdc4d0b40ae9dfac9828ad800ee5ccbd08f3efb63d49ffead593100a3c59c4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "e236bf0628a99d337440c34fbe18921cfa70f32b53e0fed30dfd0b5d8984c5f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "049f8e3d0dd45ea85df4d3a52cdb23f34f98e2da9c94336a81b6ba0e6bf28c3e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "ca59a19a297f678f30825f748eed7e518a4af5ee950bb60778aac5ae6b0911ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "66e11b47a88a16865acf37329d42567d2c128240e908109159df42eaeafb738b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "f236d8434edc429bb73ddb4b75e837b5e9f798b79fbd8cf0b499276ea90ad1eb", + "regex": "." + }, + { + "hash": "1f55b2129ea5b07f35b7df54d9d7eb28364c79a234863597be34354555ffa0a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "ec55e41fc130795a03db1e04f0e228ef996ab9f864530bb4804b68059a2fff5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "777ae7c2aa0f9dd8462ab8d4b2c43354c2c7ec8713fa86582a53ff36c02d9753", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "2285b16a94676646844f9fceaded0abbc1b3f15c5a3aeb7f3dd577cea4178358", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "79dcd69ab228e9ae8ef21c66c65f7fed4bef41321fe812e41c95b72940c01285", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "d0288bf2a5c1fcbc144c19c4f0b1e5f8fd588deea3f5605203bc5e02676b7880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "de9e9e9802756122be970cf5d28c914ef5a92ba6e17d2e87c62a4dfc33930c61", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "04c3bd3dc66a50f54616b2545b1f6956079b324f8b7b7981287c5d54dc8e7bf1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "2999e3be2d1030704d106c0f89e36f66109101f118880e29da3ee1b7b3e7c7b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "faa239345eb47e45a8e13e0e5d06b0c12a17cdf13b8ff0edf84fceee87764112", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "bdfbef1945e55ae0e7c4f72e9ec9c9b855fad5df4b2a56824da73c7602bacfe2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "92c19f091d6484fecb34655eed6293d2cc861b9098ec47f4cf00ce4cee0694df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "711f42c25dafaedbfeb24d166afb03e17a2db7910b80b0b52ae4bb4b51a60a73", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "c8c3ed161581f02ef055979d039251b698e34e2958d58ff857f49e1beb6cce91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "93d742e2a3637d1229d4f667af655b5baec5a0623ada22b9340dfd2a71b67f73", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "32885b47823c86872e1081446b4e7e7459dfc93cbf0b127321904018ed3938fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "18c882d69bbc055db9de1bd0309ac27be0a927653c53f06a7553c2c831537046", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "a4004717fd09971f9bc016e01b0327b0f86c939e6f1a3953b99cd5882beecff1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "3b5b8cb40f0275e7b7f606ab776981bb4f1cd7bf36242e35cd1e579229cfb3e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "8f51fb3b1344bfed2a0b912e54e92944ae3d3706106451d26dcf3adc796f59b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "18d74fba18efdb146ea391b20c1ac55e23311f1f28c227a47bb301923bebfef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "f57293745e960c928e6edbbf7063953a6f7ef34160072da0cdf88d042ad88807", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "4760662e59e49f88866d3347c1d92191744d4c5c0cbddf8ecfae627cd68d570d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "b242b97865067fa90a35164433ef486587287f68b37307b1c96d290a67038c22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "5961557eec61794e75e8f9952dfb381428f52b9f4e0465143b791c0ad600278b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "814a644f66d6267f0731398c80d88ec05f37ea078f494f4869de76266fd5c12e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+campaignId\\=1313040\\&campaignType\\=POS\\&campaignTargetingType\\=PUBLIC\\?adjust_reftag\\=cGf9HV1suXEYC\\&adjust_t\\=kw5p6x\\&adjust_iredirect\\=\\%2F\\%2Fbit\\.ly\\%2F3JQueCg\\&adjust_notrack\\=1$" + }, + { + "hash": "291dfc1b86fef40f429416f182fd9c348c1af1b883eaf1c11f397db649ec4217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NETFLIX" + }, + { + "hash": "dc0b2097a631e8cee01126b2af3ac0a811c499f4f0357acb19392d8a5b742f05", + "regex": "." + }, + { + "hash": "2b9a1f729ae6aad8afcd56f6ffa22b214b434bacde8239f7d009e9ece67ea33e", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a242bd44b03bc3a2415ccc682464dea0c687f3e95c7972bc7f42cc755fb48613", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61452c7c16f2c2948e424fad6bbaee27931d445034fb738879aa0a7692eb6e85", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69b15d947eb14b69aa6064d916a04ff8f5ba2fca2013241fe26a3763833e2747", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6734d957e81fc16b788c51bda4a5433ba63c6c0eb46f0a4539ded2b996d7f8a", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "501d4db05c65232973326094c53104ad01d008348402276672f1e6855e741b63", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ca4ff2e35321fdd5f05d09cde8430934ab5a5d284d4684265dd48a1ce6a230b", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84c2b1a256bd10b95834ae54df66bd991021d6e341a5aa3901bc1d1da358f3ef", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "710b3fa049d4b087efd15768f304f425392f2fd9e2de260f853ef8b8f13b3661", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "957ac262a395f1face0dbe3ab524ee74c3d7b9cfc6be7b09510c5c87a60bcfe4", + "regex": "(?i)^https?\\:\\/\\/sdjbsjdbvsdguoivsdvs\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07d7ea70325b8a8b833f18539da0d707352d7d207a57acdce9fc052e811c8a39", + "regex": "(?i)^https?\\:\\/\\/videodsagdfgdsa\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9b14ab577be923885832b8b02101171b8890bd77825bb69f04846dc3114cf1d", + "regex": "(?i)^https?\\:\\/\\/videodsagdfgdsa\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a24ac36a1b3d26f8fa9dce7c1d54ad20a8d1b591c9865489d84611dbe8f0615", + "regex": "(?i)^https?\\:\\/\\/videodsagdfgdsa\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfb9b21faae3fa40929c2fc08f7e8bd67fc25ff33cb544008ce1aa23ce1d961c", + "regex": "(?i)^https?\\:\\/\\/videodsagdfgdsa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e7f997aed65f7d86abe3adc3732c37fe575f576db841f3c939c09900c7a489e", + "regex": "(?i)^https?\\:\\/\\/videodsagdfgdsa\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bae4190835dd9048caee29a29eee31ab79eba21b361d09714e220875540e9d1a", + "regex": "(?i)^https?\\:\\/\\/videodsagdfgdsa\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c93d881d7989782d1a3a341948840f2de70f569e491d3d2a5d25995cfe3e1bb2", + "regex": "(?i)^https?\\:\\/\\/videodsagdfgdsa\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1f03e0c4e2e8aefc6f244443a0da73aef5f35f9f78d8414b6df17306d5505fb", + "regex": "(?i)^https?\\:\\/\\/videodsagdfgdsa\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "609d3b3395d461a9642fe4194084bfabed5ac54b527bc0ee1a2759bf420524fe", + "regex": "(?i)^https?\\:\\/\\/videodsagdfgdsa\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f20f7a3c0c6133adb09d326e629701ec3a07d06f0cecea90b14de35384de10cc", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2645b3b8d731bf635b2317d05e595e9a80fe3188360d112c0285ec72eb61fc02", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4ac189baf4b8b63c920d2d5dec593e57f45999dc3f4d57e2eadb5970577190b", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66dff41a2656cd522fc864623c26cb9f243c5806bf9da3aa467a403821382353", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f6f19ba643a03e1c049b8f4d7ad07779d654149e0e447308f3e4338927e566", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e988b46707d91ae70005f6f9634dc3089a226cd664cc8aa4352c0f7a628b6b2f", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00ae05f5563c687dc6e716e49c1882ea70a5e411ec94de81167047ba320d0850", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dda2564a7c447d49708adf872c9e6a34152edb9b8ed88e00857052c8ecdc9c4", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "246d16c0df7e0f0f0bee8c0b3e6146f1149ed1eb8a2929e75c9c350c8b210b25", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a09410daed061eb32d15f816dfb90e1d9d5f00e6e4db4dcf88e9d3993d5e9dba", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bd5fd85bc2cdfd5a39d9b72ea44c0ae78469c6b6311f7f3596ba0a84d126fc8", + "regex": "(?i)^https?\\:\\/\\/videofdzny\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "04d364a523100d5efe384decf82fa7e9651364846e524df5f03ba94d4230e20f", + "regex": "(?i)^https?\\:\\/\\/videojghfdnfj\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39430ac4685134d9919b4d5aeae2986399b53be8848ac8f8f30d017943338a1a", + "regex": "(?i)^https?\\:\\/\\/videojghfdnfj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "017d18119d0d9fdec66df7acee3da2165a0cbf55540158827ec57831b56acd8e", + "regex": "(?i)^https?\\:\\/\\/videojghfdnfj\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fa23a384d629d28b48093648aca2e616284b20cbb9788d74ee3adf363edc903", + "regex": "(?i)^https?\\:\\/\\/videojghfdnfj\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a11ff9506e76a633ab6740f0a2ca1a2c6c505476db9da94112a9070b31f85fe2", + "regex": "(?i)^https?\\:\\/\\/videojghfdnfj\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42785e3c965ec685b9e5823861ef2310fc837bef84677077015e131366619bba", + "regex": "(?i)^https?\\:\\/\\/videodsgfdabbfdgg\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f758da9ce041e89d2f833e5d74944d05f8641399a985e4c08e92b4c5509bf27", + "regex": "(?i)^https?\\:\\/\\/videodsgfdabbfdgg\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0f317f884ccb76c2a30acd751dd53a17e2df6696fe8de831169e4b82b41b2f5", + "regex": "(?i)^https?\\:\\/\\/videodsgfdabbfdgg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36a1c348b8213db86bf56366c28ce1ef5b4ac3f20690fe82c7fed30564892341", + "regex": "(?i)^https?\\:\\/\\/videodsgfdabbfdgg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f72fda85f03e2483786d2a1a8428a6d79bfc5daa455198d50890282d0ec0dca6", + "regex": "(?i)^https?\\:\\/\\/videodsgfdabbfdgg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ad67d93aa733dcb91185c67492279f2e7f2f496da9926f12d70799f0e2ae6a9", + "regex": "(?i)^https?\\:\\/\\/videodsgfdabbfdgg\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed985ae89d2558da1dc0f0d5b1d2d933dc585ad6f67e1815a2907910f0d6042b", + "regex": "(?i)^https?\\:\\/\\/videodsgfdabbfdgg\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "869b3270bc0733e73f6ccf07aeaf8723db59e5fe55b85a049ced51e9d088edad", + "regex": "(?i)^https?\\:\\/\\/videodsgfdabbfdgg\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1ad962039b63e2ecd1b61f7e1ece35d6973d1fb6033d2b490fb71c833758253", + "regex": "(?i)^https?\\:\\/\\/videogfnsjhdrts\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b2572190557a1bf0e463b9c1aa6de5403ed40f33236f5fc308bb3e77d15d97e", + "regex": "(?i)^https?\\:\\/\\/videogfnsjhdrts\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd9b22c12a4ce66f1880dc4a343d7657ec9c265166ffec4a8c81e87b569696ad", + "regex": "(?i)^https?\\:\\/\\/videogfnsjhdrts\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "813404199b8d2432e2f7f6c961c737c61c3d05037dfba527334a974b0e2a66ac", + "regex": "(?i)^https?\\:\\/\\/videogfnsjhdrts\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4d9c9a75db467059446ab07fecb8e8c399fd4fd664ab209f8160f2242ada0fb", + "regex": "(?i)^https?\\:\\/\\/videogfnsjhdrts\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a43c4fc5b1ed51876e28fc8db3c16e22247a939a1daa4b97faec2baaeddfc73f", + "regex": "(?i)^https?\\:\\/\\/videogfnsjhdrts\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eda64434889d65b1decf359d29612658338cc14f6e82ed61886bc22b8133e6d4", + "regex": "(?i)^https?\\:\\/\\/videogfnsjhdrts\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a53fae454629f55415261deca6143fe79fdcec07b4558a7af90cba1c3151542c", + "regex": "(?i)^https?\\:\\/\\/videogfnsjhdrts\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f8654ccdddc96d98ce21688ab9a2a62f009c3f2a883073b3dbf18e15b4bcf1a", + "regex": "(?i)^https?\\:\\/\\/videogfnsjhdrts\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "858c4f9e029de43982f38c6b6b08dbf4f60c0db192a35f9eecf7db433913a635", + "regex": "(?i)^https?\\:\\/\\/videoxxx18hott\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af3ab7bf14734305637398ab848f38d9dc33c21168d39a05433365b8e5ce93e3", + "regex": "(?i)^https?\\:\\/\\/videoxxx18hott\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7c5aecb8b72b44b87c69881ba6132b29b5d1790d918952ca59dacca80eea803", + "regex": "(?i)^https?\\:\\/\\/videoxxx18hott\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c78e3e741d481d7277e760206cd7484d7b6032ff2524114a64e43b8728730b76", + "regex": "(?i)^https?\\:\\/\\/videoxxx18hott\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f1e7c56782f074eca000f36643fe9525486796a47a0d43a2243565d6055249c", + "regex": "(?i)^https?\\:\\/\\/videoxxx18hott\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "326fc0968baaf50dba53410001536eab9686e95675d729b9974385139cda4109", + "regex": "(?i)^https?\\:\\/\\/videoxxx18hott\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56f9a8b950b06269d2089ee9fbca64b7d1751703da8aef95d228a3f239a14dfb", + "regex": "(?i)^https?\\:\\/\\/videoxxx18hott\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7ac8fc9ee647eede2a9b39f52eded2174373678a4eb37f3b4c5820596313d98", + "regex": "(?i)^https?\\:\\/\\/videoxxx18hott\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dccbf4e37c2d13c07cd224a631615ee7264f01ccbf970fae440485d82d0cbfb3", + "regex": "(?i)^https?\\:\\/\\/claim\\-vbucks999k\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8f0210bb9713585169eb7654cc84da5dbd367a0221406b22f1da9fe9d917324", + "regex": "(?i)^https?\\:\\/\\/claim\\-vbucks999k\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8ab22abc95e5fc9d3672dbd9da2f2e234970d7990f9489081d41bdc88fc9270", + "regex": "(?i)^https?\\:\\/\\/claim\\-vbucks999k\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6e2963977a76863312bdc10e4efeff2b9249d131c09c36dff69d7520faac7fb", + "regex": "(?i)^https?\\:\\/\\/claim\\-vbucks999k\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ccf2e8f7e009b8cb2462a6bb4e0c5ba2e48a59b410747a4ae1b84d401a30891", + "regex": "(?i)^https?\\:\\/\\/claim\\-vbucks999k\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c20ff5915c785a480c75ec9192b97a37f14dc50cd03ca9f77667dabd1c2830cf", + "regex": "(?i)^https?\\:\\/\\/claim\\-vbucks999k\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdc09543cb451bc8ee396470862978006ebcd12726f0d2fa63e6ca12055ad0b", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "317ff799a2fe7ae9e6cefba82ccb07eeae351fe1ef796cc45f3b9442da85c32d", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5f3f9a516f03f217409875cd5a6589613cf3887803dc9e76e7ba873ea6adea8", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b481114e03ad4bfd1e813e8a099f8e6224567036c9005132c2a549884180f3b", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "197da25276ad17a6ba89f8d243d1821f654a5a4fa6a30ab2bd384291a881d1fe", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1a1b8525649fd836ed5be8122b1fabcefbb7ede3543dcfa02251956221fa16b", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c8993c00834125108bc20ec90dbb24281c93f381d3fae35270eb0e9138ba03e", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0035b37d8f8d0219b71335d368d828265fad8cbbb1759156fa3e4f638d807d8b", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5afd919802a31354cd07d84df2ffcf608d8aa8d1299fac4167d2c7e0a7cbaae", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ee4cbb009b5fbc9866c208948b41f3ae64e2b7e9584071beae523cc10189170", + "regex": "(?i)^https?\\:\\/\\/claim\\-fortnite\\-v\\-bucks\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6374c4344bf6758e0a9457898e0ed187f1ba1e3db1c23f7f67a703433495789c", + "regex": "." + }, + { + "hash": "6852b5302cdffd9e661f9d1dc994b88164dd8960d8fe727715ce300717fb7a73", + "regex": "." + }, + { + "hash": "114dc49ca5bc665b86e3a2be6490adebda502bb7bdc08dc49b1176e953633160", + "regex": "." + }, + { + "hash": "41784ae0393c437c9be8e5e7ec513cecfb39a854b13245a0870513b33a0a9140", + "regex": "." + }, + { + "hash": "50651272635e2cdad79df8ec107241e95a2a50d41e1c66698369cc9f59ace9f9", + "regex": "." + }, + { + "hash": "5776964812fa796ab43c115e1967f046ebabe69a50638d2a0f86d8ba5921489d", + "regex": "." + }, + { + "hash": "971f345ea96f02667a33282b8e1dba8d5d0bfa6d9ce2cff2c8b8d3e3073cee9e", + "regex": "." + }, + { + "hash": "092349f219b8ec435dec9ab57fc5b3ff66cadc95d6c848980821ff4585c921d0", + "regex": "." + }, + { + "hash": "82c5de42868a487d8001cab35a7afadd16f1097940291929cb23ada2ee1f934a", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b449fd8fec9c1a19ea5286d084569f77cd9c1e9316cc16189325f51ef82ce045", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e484d488dcf46e990358e63af15cbdbaa90cf47d7d41d9ddd8e200f76630e5f1", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6145143862ff780b000576f034d1846951bd08ebfbbbf8a4b64320b3f9369ba1", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11ee811c14635f746e7b9e322ee8ad42216e7a5c977f5b4380f195431754b2a8", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4f6b4e97b12a444e63692263c3988e6ec1774d8bf561a84a7c1c22895410fd1", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84e2d13eae4e3cf23c7f65bcb64d91218cc70811e5e880cca3b4b166723e9aa9", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7f1ba44f49c39a1db5645d00dff9e7a2f8fd350d5a00d8f69af7254740ddb41", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10d66ed60c07d3af95ee0249980d5d07cbd63e0211dbe5e41abf445f7cf49304", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f7312a6e3c004e4f1e1c1906387971dfe590156b0413ba7b4bd687b29863330", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19b52859f3c88511a984cffdaec57ddbb30914807457181fb063efe6c798bb3b", + "regex": "(?i)^https?\\:\\/\\/sparca15051\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eed8e8e994080a7f6f022c7fa05ad73ccf448d894cd3f2a84ab583fa0a15b244", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+telberia(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c0024ec5c6fce025f43ebd896152b691f0176448ef88e7fb12cb8b808dae8e5", + "regex": "(?i)^https?\\:\\/\\/getdiscordnitrogift\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df6277d63ea3e2df1386aa0e67509f8127463fea2705b95fd593960898e2f3c9", + "regex": "(?i)^https?\\:\\/\\/getdiscordnitrogift\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d2b35a7e6e9695e4618f486a6cc9f5cc4b625ba89d79950aaca4488a00b291b", + "regex": "(?i)^https?\\:\\/\\/getdiscordnitrogift\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed4be287d16d37af223226ca8ed3afc2f8abbc918706e7fd42487facf83bd2fc", + "regex": "(?i)^https?\\:\\/\\/getdiscordnitrogift\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a3cab008c1ea89a444e022edee7f2036c535bef117d3bbe2790b0ee43992953", + "regex": "(?i)^https?\\:\\/\\/getdiscordnitrogift\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a38ba5f0411d6c749c9168554519336647d2f9d60de49633e3c17f44d949b908", + "regex": "(?i)^https?\\:\\/\\/getdiscordnitrogift\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46aad6ea6123673a83e8df5756975bbafa5e605cb53a163d0d1ddc7c65405cd3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intensce\\.html$" + }, + { + "hash": "f20f092e20b5200eda1a728dcd77547eb52742acf1087227a2c9f966fc6c9feb", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e461cd016d3d55dc0304f4ed2717c5bd741b9fff73a77b84ccde38ac848a8abb", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23ef32da15661923835385d8053060e02b89dd500c1a9bec4fb551692f9bbcb9", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b69fd4513bbe5e1e8f46de3380df8d74d91133c8c62bd291a87493bab38c84cb", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b7a9fa83a6eff3515b793f7855b924cc48a1ca479176fc4de7f05d0dc9cc15c", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28f5c14ddf1b61bc03920dfe5b0d88f5930abb4b2e535f8b718b1d55a9fa3acc", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dff53621486b2520fb653a404d2115f7ce8a0fa1e8bf71300f72464639e56d90", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fed7e2e95741b379b4dcea5cc39279f7a2a15fc0344c86c779dfdfbbbf94a37", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4696828fb11c7973b6aeb90272efa8f6294f8b6430df723b16eceab740cf331", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b99554caf77d5f7e1b008914082593a4b2ed3690e0c6860d89b1bfcea42b1bc", + "regex": "(?i)^https?\\:\\/\\/phantomwall\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f14fc26cd95061f3ee22028254e424be25754c5fce6ad1810a4173692b37b95", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpaintball\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "165f5d79a38b5d05183ff7fdbc99eb6daef1963a153c230c06344d39a23a7974", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpaintball\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e012a2ab1f194075f7bc6d877e8669e8102a381333e3e97b75ac0b2d3321f4df", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpaintball\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b20dfcbed9f1c9325a500127bc677a3a085897a02d8424a956a849d5b7ee064d", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpaintball\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e64f8a7e667cd8049fb86849e5781551ca53d7b45731643a007027178fea3bde", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpaintball\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06edd1e20ff4f2bb6fc70b52ea5bfd4fd5927aaf821e9ca97c8c224a6b125cb2", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpaintball\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a61484eec8205f1674c8af24d5512d43bb56b948bc43f300a4e618eb557eab18", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpaintball\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "048cb0e4cb98d94278de1d51dbd6b8cbffa2b4b75d23b3eb491d6e95eeea861d", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpaintball\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "270d183492305b819350df154f2e6a146931c7b6a6353ea4c78b7872f37d6114", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxpaintball\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c8507685bb5ff6909ee53a0f6905e709ddb09d8a1a82d761becdc1e86c3e427", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a6705fba23e983ffe5eefced641a97a5a7bd5f3b72e71f6a25563e5ae446b3f", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1436620eef565d62723d72a8586b68e4afdc69317448b03abb747b9f78ea84d", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dc0eba84e05f976d353179e75a94c5d3d0ab546b5ca05aec4267c351f77c0c4", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8991d6f862391bfd0c5f219aa454fd31c9a570d52db0f85fc54c6c97ece39b1", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65ded1e79abbe95c252ae21efd0e85395271852c6dc98ccaa91ba6b2e671956b", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9041d3b98d6b5f721117d3e01220c49294e4062c6e148e93e3fb45c292d59798", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb3c3bb423efb2a43796bc20dab344095e30036b759874c316b01d1a594b6171", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d045cdfd0d57738fd2be15573086aa967b9b006314b214b55b1fd2e35ec6cb35", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99b3da77485625ebe8cc1f32fd06c615fe7341aaae910398f38f4af327d33566", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ece941c5d94ad6b1a8adc53955dc918e4ae2328887b92fca15fc63766c9284f", + "regex": "(?i)^https?\\:\\/\\/howfreerobuxgenerator\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4f6ce68e3e6944b4598bd1578f25f3fe6d3546b1780c381d327d442f1935bc0", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eef7ad34bbade639f8f5d12c562502f01e0d91e4d29c3b94f78173204a055b4", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cc73e8d1d7f4ac427130eb6ec3ffa0395fc127fe74db50edc67ab4870209c5", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aa932c18d9e0908b763d878450de96d38f72b4e24a3b0152e0f7c8745257ae8", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2ad950f16d83108ad7ec2f97fc87ae866ac0e4f00c270b2bc4d7e0cba10edae", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8da63ef9fb244027b72a9f08269b3697fede08b3b01d055ebee20e604d1ef45b", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec0933d8884c749215d41f81b5c01dd7c9a4ce4dc94a91f29f7f65e6b1b21ba", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63880e5097191ebb263164f02f9d898f6d27483e37be311f25949c9160ad60e6", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84663abf09e6babb06588fcab5f2403ebd63cbb3a01f226a46d7aa69d24c3d29", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b51fdb8afab5b89fee39f7602a56f556f37190047943997205ddfd165e7ba7", + "regex": "(?i)^https?\\:\\/\\/www\\.5fgfgfg4gh4h4d\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ce2182fc58084ed7ca1d5c97566bf34556bb3c6e3de5a8ec1cc4377367f68dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+efcc\\.html$" + }, + { + "hash": "420a1f2d32be665e8cecab985b62b59dc697aeafca4a1cd2c46345a6882e9608", + "regex": "(?i)^https?\\:\\/\\/baggoodsite486\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cf21c694b620189badeba153065a76d6c8ff7783fc9937a313e0a17eaac5fd9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cpaa\\.html$" + }, + { + "hash": "a60116646309ca01d7749b7869ea3021cdcb4780a9c59913c1bb71c0600ae11b", + "regex": "." + }, + { + "hash": "d0401a5f7e08623288dea4de4667b1fb9f1dff640fe255474a90649aa50dd159", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix" + }, + { + "hash": "4ee307833e2583b74e348eac40fd704a98e25f2a1a439f1ac345f4c66ddb7a28", + "regex": "(?i)^https?\\:\\/\\/rfrgty47u7yhjghj675reyhgkjuk75\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38c53f1936f3bba83a6e94e9b42e76819b718a115adf6875c089cfe172a58067", + "regex": "(?i)^https?\\:\\/\\/rfrgty47u7yhjghj675reyhgkjuk75\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a8ac9cda40c4b83e27970a368b7dfd1a52869542bef317cea41a1b34da97e4b", + "regex": "(?i)^https?\\:\\/\\/rfrgty47u7yhjghj675reyhgkjuk75\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "709dfb4040a4d59101defe21967c059a27fb3e98e1f750e290892f79c1c402f4", + "regex": "(?i)^https?\\:\\/\\/rfrgty47u7yhjghj675reyhgkjuk75\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ff32ea4b9f370da176de1b18ac67d1c85444e72e62f34a86fb2da559bec7035", + "regex": "(?i)^https?\\:\\/\\/rfrgty47u7yhjghj675reyhgkjuk75\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63ec3a2482dfb63a9bac65c5bbf9045bd7e78ea17fd8c7fc4551cb39806bc13f", + "regex": "(?i)^https?\\:\\/\\/rfrgty47u7yhjghj675reyhgkjuk75\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08c4f39d8b656e0dbf638d735d9b5ab96119ac3c4da562ee8cff0cf8891dfdb6", + "regex": "(?i)^https?\\:\\/\\/rfrgty47u7yhjghj675reyhgkjuk75\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbaf9fa89f9258a0050ba868ebed3494c00eae6fa06033ad652e786f84b6d5d6", + "regex": "(?i)^https?\\:\\/\\/rfrgty47u7yhjghj675reyhgkjuk75\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdbf280cec2de68bccafcdcfac7ec475e0926b8a7099c6a27d0e9d8d28bb9580", + "regex": "(?i)^https?\\:\\/\\/rfrgty47u7yhjghj675reyhgkjuk75\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6afabcd63fe0d1146fdb6f2e3c88f835e615f18b86ecedaaa8eef5cd4afdeb49", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fda6a2d392d0461be31fb03d89aedcecc950d809ee3d1367b4f00271cfc35744", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e887d2d97437c6c7075cc0337df5489c899a7ffb03019ddc3ffaa7836082861", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9de18bfb424d675ebfb2513dd3b5cdbf9d778631e395711d578d128bd95ae45", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a1612b406f1ebd02c28002af4c5d8cecd532d1ed2445f6d63988d2b199b2cf", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70843fccc37b8e66663862f60de9f09a5815eb274d0fe35414d3a3108eac5cb6", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4932af8814e4e047f97e3a202457fb590c050cd38c1539197ebe7b2c70df4568", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4ddedd611d4122a215c4a40de02c6285ffe6f8d0c9452b20b2f5c2e84f80017", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffe2960d2873ebfc38438242ddca170b1a5346844acdce5cb73073da4883bb5f", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a109a12f3dd61b4fc599d4cefc6354f13d5a4dfb7848c190a28994c261ae2774", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7a512296c7c85eec4d30db13d7f140bd8dc3c0f0d8ff8c409dca3f6b992a0e6", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00338593eb76fbd129e29c85a72d39620e6934c9470e20c7f0dbcb6868b9124e", + "regex": "(?i)^https?\\:\\/\\/rhretw465uhjgfhgfww34tgj6ryre\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7385f115c5f1157538f6a298b3587b096ad8df73d35356fb397d70e6b1ea88cb", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a68734c80040c2d344e281e331df9d04e1f8515476580864acc157dca5f8396c", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7807945decbfc6c1b9f70b95265dc3c59758af035b3061a4fcbd4b86479f61cc", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5966f2111703b7f74f6ed4c4a62a797b53f17bb52aa89680ebcfd9dcd9c03bd2", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6588e75528cf78519323dc7edf4af04714cad8f3a7884aca541b2f2e2520404", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afa11e51978aeba77b2f9f29eafd4227c8433382227019e880a7f1d1c68e50ae", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40ec4d4e946ec91dacecd3bb34089701d66316a3d839b7998fe34c409e950d79", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4900009ed8ecb049309a704a5270dd2a67f2e753df03eea1a3501d8b20c5b2b", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c668ac6688dfb50ffe42a9db2dfe09d72c70e4b9ef16438bab04a355fade2aff", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13bede386adf7caaf97b239ce7dfd344ed479a8230efd935b2be79831f7890dd", + "regex": "(?i)^https?\\:\\/\\/roblox45229\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e95e2cd4eec4122e5d541f87a533642df6dd4fda1e554dbb787699933ca52a31", + "regex": "(?i)^https?\\:\\/\\/other\\-108839\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58ffa9652a1743cf38659841ec0525f09688a480d87b240f9b27dce2d94224fe", + "regex": "(?i)^https?\\:\\/\\/videoseyredin3robuxnaslkazanlr\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "183b4f8dfc352f1a984dcca068b05a036b3f721fcced6453519456d849f1f8ec", + "regex": "(?i)^https?\\:\\/\\/videoseyredin3robuxnaslkazanlr\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8fdc15ca1d7386ba11aac06b44acdbcc693d9130de557b86b0cd2f2a9f94884", + "regex": "(?i)^https?\\:\\/\\/videoseyredin3robuxnaslkazanlr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9fa711bf97365622a6e372bf775d994cf025b623bd0c4227a45e8fa66809868", + "regex": "(?i)^https?\\:\\/\\/videoseyredin3robuxnaslkazanlr\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdfd92c716e79e2043f4b88799efb2ca110bd0ee9bb12dbe717c0d780253603", + "regex": "(?i)^https?\\:\\/\\/videoseyredin3robuxnaslkazanlr\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63ad8ddbfcca88094050fe8a3706a8e043ce01eda918ce5420d1ebdff8f0f496", + "regex": "(?i)^https?\\:\\/\\/videoseyredin3robuxnaslkazanlr\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7ff774d872ae75eb38d9e1318d7129c6accf67cf6c3c7d5e77f96792663dbe6", + "regex": "(?i)^https?\\:\\/\\/videoseyredin3robuxnaslkazanlr\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08009b0b61207dbab23a7a8f97ce028d24ff4f4f6c7f4e7973aaa6950f8451fd", + "regex": "(?i)^https?\\:\\/\\/videoseyredin3robuxnaslkazanlr\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08893084a1b841a6407c7df199e4f8f180da1b8ab9e2c26566a88edbded3aa26", + "regex": "(?i)^https?\\:\\/\\/videoseyredin3robuxnaslkazanlr\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "750a944dbd42f2f5f3a84e2071a2f8d2e3b15bd1b4ae0eb69a815aa8dd24549c", + "regex": "(?i)^https?\\:\\/\\/comodroparocabelonorobloxquandoestouj\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "434a6271c7b58be8731e3fe59b68f7ab4cb8147c610797154f256e2bb92fb682", + "regex": "(?i)^https?\\:\\/\\/comodroparocabelonorobloxquandoestouj\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc25c0a9226329d2f28b3ef4d32da470a4852d9ba71ce52e04ebc51839112d54", + "regex": "(?i)^https?\\:\\/\\/comodroparocabelonorobloxquandoestouj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a58f41aac96a4b7493f9a8cb7056c35451bf29fea64e9cbf71bf83c384fbe34f", + "regex": "(?i)^https?\\:\\/\\/comodroparocabelonorobloxquandoestouj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7111ae9b71315e8dca795b84395a87b06537401f2880f7632d6d4b1ffa1e416b", + "regex": "(?i)^https?\\:\\/\\/comodroparocabelonorobloxquandoestouj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd7893360197f52f27a63d38b64ca28a8764df3b04c91a577084dccec3ebe781", + "regex": "(?i)^https?\\:\\/\\/comodroparocabelonorobloxquandoestouj\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e410f1bbacfbca13ed8a004fc63425ba9824fefd5cd254600a06c7bd61bf488", + "regex": "(?i)^https?\\:\\/\\/comodroparocabelonorobloxquandoestouj\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82c5e7e6e4731f27db17ac7dc907a6ba5f2ecd7d8e9b11a460790557007d8fda", + "regex": "(?i)^https?\\:\\/\\/comodroparocabelonorobloxquandoestouj\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "354a297c90e911fc08aa5b77392a3f859816fdb07363419b5794af30b35daab0", + "regex": "." + }, + { + "hash": "ea839c9bda95ed3dc9dfe3b1b000609493fed6a6e6a92679fee76f7a2e234b79", + "regex": "(?i)^https?\\:\\/\\/robux\\-free\\-2023\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b8604f098422e0f323c87c027d656a2584492a662038446f422be58958e0a74", + "regex": "(?i)^https?\\:\\/\\/robux\\-free\\-2023\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "241ba09c33e95c4e93e2cb2ec031bc7da50981ba5a59dac015f9489494caf15c", + "regex": "(?i)^https?\\:\\/\\/robux\\-free\\-2023\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a1194f5933856c4da0111b0ba2cfe19b000c9763a8241bbb22fbbbc94e196bd", + "regex": "(?i)^https?\\:\\/\\/robux\\-free\\-2023\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eee7d6087fe1dc97f8ae7bcaba292555c42ecf28a91a5b77803002d4d90b105b", + "regex": "(?i)^https?\\:\\/\\/robux\\-free\\-2023\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18d10785d7c88927655382ddc90f2e5a61d63df833dc1f4945117b8c475094a7", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f2506d27ecd43606019c946ebd1cab1944481e956d006a0e62a22b9d8eda823", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bac1ccdd64faadcc952b17c24a28742d65b772d1f7a8e80de3eedec20e255d7", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6d8874b92902a24e6c36b8220c62b43cfb1054eb5673755b5deb397457a78b5", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94f28d707cf601376ca37fd3f42f3729b74c02546271ee8f04126824ad575be7", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf10249110448d85a0bf52bd13cc2bbef824ca060bf95723dd879be3acc3d351", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6406fcdd10153a81e4e77c178e45c97d3c3d51acfb516a52f6be76d134abf28e", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b468050170062b0862e7f0dddd9d7c432a8bea325051d668247ccfe27a814de", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9ca95bb6452a8749b44a9eb7920d17dc118eeadc54b6659a3e3acf298f12cf6", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fed632f2ee3def38a444e46727098fb86cc0083882612346569c72ec188c6026", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-\\-robux\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9d2a89f272312fe0135f1ec8de3d37462a2f3869869b9b9eea9387b4b4ae36e", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-robux\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fd859e7c3934471a1a4ec39df35212d369d6a1d1ae28783ab1bd822087e574c", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-robux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c143971e0897b255345e8ba52b00999fc00d8c841e669da88a9d05780ab074e", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-robux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "539561e6f2bc26c7af2bd89ead50d4844266186ac7c1f8497f1d2bb060b24aa8", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-robux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fc46443c6fa21a212d8f476eb80c4ba5d07f3f905634a6b9ed36deb530b930b", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-robux\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f421fe6c84bd51d003483c93c0e7a9fbf31f468639bc4238e620a8c674ca56a0", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-robux\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1287ae098d08b232a7177c471d29202ad7e55fe122e093cba445af4ccc2ad35", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-robux\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd18e39525c35d53a8808cc3de04f4dcd5a7d2997bd75911f83a92e91df2cda7", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-robux\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60e117a0591c767fb2f5116a6464b025283c2e6afb6abfd0c9cbb5d43dd494eb", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-robux\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "502787e85d51c0968aff4827842418a04b6e62f07e5cc3f15d00e9e26c79ecb9", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-roblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a942e4f9b28a206bfa101d9bac0d16af98dc771dde201b28b048242d46801aa", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-roblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "184444e72d9e24ce665f4c053adcee695cb1c604257e88e630d75902448e3da8", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-roblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "827fbf6c646228ea5ccd830f671d344c1f52625f97748d4ab7e175d5a361cdc6", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-roblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cda61f2950651d1889942f8c3454d4980efa8aca3938df5327ad8411fee51a72", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-roblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f5fe1841d474693cf66492f3f6b0721f929b018bf556290dcedf5f371f4bcc8", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-roblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0d7e9bbd1851704351400aa541475e00a6c15cf57c4a3dd08d4d17f7bf09354", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-roblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2d404c8bd05904f75e82f258757f5394037c022fa09dd3411cd0dbb59fa9dbb", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-40k\\-rbx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "216e5842b9ddfa46cf9052c52a7b7ed5a26bf6a1e4f588a2aa0940e02fe12181", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-40k\\-rbx\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d8aa5d2282198c9a522b121a38553c0ca32cee0ab94d13ced91393d22d217e4", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-40k\\-rbx\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adaa324a43fb08ff471e9b0a987d407b18ab78ea4ab3cd4754a78dd77011a532", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-40k\\-rbx\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "352276ff611a4043eab224c4001dcaf7c401d50e4622626d12b5e31b0f734ccb", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-40k\\-rbx\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34b9fb1f167edca6dfc980850a0abe47f37cb22add7bb8ad2cab7965ca3a1ab7", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-40k\\-rbx\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d967a7222e686b6bafd87fb5bc2730da7e32da5d08094f8b21222433c04aea9", + "regex": "(?i)^https?\\:\\/\\/robux\\-rbx\\-40k\\-rbx\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a2129bda14bca20c8e4c2fa1315577bac3f2d660c4227491bff2372a2ab2b07", + "regex": "(?i)^https?\\:\\/\\/rbx\\-\\-robux\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b2c7ee611e492ec38b002730570512426f719ef416b2e3719f717c0d86d78f3", + "regex": "(?i)^https?\\:\\/\\/rbx\\-\\-robux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5dfde0a5d5a7146ade794aa574ccf6014ce86a050f00489248af2ab84b05a479", + "regex": "(?i)^https?\\:\\/\\/rbx\\-\\-robux\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ae6ec01fd2ff624529cb921330c91b10aada37ab192b6f38a3e259bae4f374c", + "regex": "(?i)^https?\\:\\/\\/rbx\\-\\-robux\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e9573d92b4db61ec94299161054f0d39f1015a9f49af6b2f1b9753f2b9cb1d0", + "regex": "(?i)^https?\\:\\/\\/rbx\\-\\-robux\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7637a9dbac7513c9f29ee25dca80cb9864e68923197a1ad2c2e1c26d39d15af9", + "regex": "(?i)^https?\\:\\/\\/rbx\\-\\-robux\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50ca77c1efdc87c9896c0a21b3a1afc268ecdedb23388d9865996ac8fb0dc8b3", + "regex": "(?i)^https?\\:\\/\\/rbx\\-\\-robux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43fba54bdb9653bcb90b99ddf674edf6c8735187ecccee8456ac6807828a8c8e", + "regex": "(?i)^https?\\:\\/\\/roblox\\-\\-\\-roblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d53ccb6a78c10cdcb26320bbb994a95fdcb1a12313132dbede034a7535610111", + "regex": "(?i)^https?\\:\\/\\/roblox\\-\\-\\-roblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73b81d79651e9fb2624c6976a704278ce0c08657a9302ca2478ed7c329f28fe8", + "regex": "(?i)^https?\\:\\/\\/roblox\\-\\-\\-roblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88ba02ecf731069222bebc048b304156f292696c472d2355f8a86007db7a2d93", + "regex": "(?i)^https?\\:\\/\\/roblox\\-\\-\\-roblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7e42d9b98e8f4bdefb63b1bc4866409605b597b88ae7ff544ad6bb906a06d32", + "regex": "(?i)^https?\\:\\/\\/roblox\\-\\-\\-roblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3634061914fc5b45b6bcef528250296e9c1ef5149fd69ef8de225472fcbe1ea9", + "regex": "(?i)^https?\\:\\/\\/roblox\\-\\-\\-roblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f11d53b12298ed13b535b217304f887ec2c60c2ab7bf229ea494f60685de2fd", + "regex": "(?i)^https?\\:\\/\\/roblox\\-\\-\\-roblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1931bfc1068fad8e1d7987cbbf08779cc04ffbbac377d4104be1c698be08fb4", + "regex": "(?i)^https?\\:\\/\\/roblox\\-\\-\\-roblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f13d3572f7d1e3bc37b6fb1dd5ce52ee4ab185ae5cf49647f5c1047d3ce72c68", + "regex": "(?i)^https?\\:\\/\\/roblox\\-\\-\\-roblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "544dc3f5e028f47ad002bdff030e06521f56113550611a96c0a5e4243ac56151", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-rbx\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "495225bf84c73f619967d06196f1dee01ba30ee99cea36e61822c6afad860616", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-rbx\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c5d18edf1410379c9feac313675d4b2090d8df9e7134ddf7abb384525f21b9f", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-rbx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a43e0eeead25175b8661c84e1b747d3b8ff1ef142588748d59cbb9a3f08709eb", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-rbx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81f26ee6c130f0fee564e0e39a2426b13676cd1cb67668e2e0a2b0bbb7d38969", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-rbx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b11b07cbd89a1c6681bd6d8effb15e673e886f7698f96a0d69b0c102e59ef506", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-rbx\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "983f710d9de3d2108e4b879fcac919e615c42ea4aeda75f211e41d4c0085d879", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-rbx\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82488ff915a1869b4c54f9a002fed6f5cb9b9eb1525c542451602077df6a32e4", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-rbx\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1bb69b37ee8ef7c07a247ae7eedc9e5a5d66854402a176990af76fe7f137c1f", + "regex": "(?i)^https?\\:\\/\\/robux\\-\\-rbx\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc91761a74879959c3c5c6b48973c4eba054dd3b76d6d648df555569c34b9747", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd600314540c9f0aca4ab8fc2875a904b05cfa4fe9c764fcf03a86e710bfcc70", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65295c64cd8521398b3d34041e04a26a01168feb3cc3af2b54ffbe07e4789b60", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5a4493266fc731726e2c79e3ed707669299f51895829c2bc3bf3281b45f145a", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb4c14e7db0054baf43789168869eb6796ec182f39fe031c2db0ee924e342ff9", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb3f36c588088abcc027f12122c2f2e14855f28a7a472a87ac4a673b70d066c8", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "264e1ffc4f56c13abb825c6439e1989e71238059acaf3e0db9ef00670f835b92", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95163d40e9e70277e1b7bb7b4c9a7c7ce3ebd72b562e9b272c39c0a4b4b07c6f", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cf5c1a2247c40be8291c4924c7ec0d1ca4f8922380ec0b9215407fa2264b1e7", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f6406a7f1b984d119157ce90972610dbe54715f59366fc0ab78f4310ecb20e2", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47611010a0e597c3eb2f0da5697dc8497fe99a2e238777ba3dc8203e732e5dd8", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e1137c32f910343840b0878aa0b7030e8cfc68c7f77449160647b9110257571", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4afbfdec39929dc0786b2891ac28faf59f1ea0ac41aedf25a5d311fc0728269", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3195b296deeeae5cce8823df0b60fc4a62ed2e3114cbbcf217928f43cb18e8a", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08a8660708645f208f03a5c580390da6a099e6f96286ee93cfdf5a5850fdae81", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf4fd1cee8fd9530b293d75104302e9e210379382e2dc7978de5dbf19b360f47", + "regex": "(?i)^https?\\:\\/\\/40k\\-\\-\\-robux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d578ee981a040ef22c13b5304b74f56491b241b3ec063a17ea1902defdd91ca", + "regex": "(?i)^https?\\:\\/\\/40k\\-\\-\\-robux\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb73851c243255b6c9948940993d479dc650856a43ab92c1019077530b041289", + "regex": "(?i)^https?\\:\\/\\/40k\\-\\-\\-robux\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b445f2659bca32fa559091f7a6f20130cb0f9584d2bfd7c03654639a8f04791", + "regex": "(?i)^https?\\:\\/\\/40k\\-\\-\\-robux\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef57d5ec675a7a4e24576507537bed6636fd20263d81cf6eaedab12847e6368e", + "regex": "(?i)^https?\\:\\/\\/40k\\-\\-\\-robux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3381a64b145480c4c93313c5eaf53b96b60aecc22606b1dc754714a2e4bf01a3", + "regex": "(?i)^https?\\:\\/\\/40k\\-\\-\\-robux\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ea64333bfeb35672dc3ed18878e3c60c3e36d7c787e25fea45a80ece4454633", + "regex": "(?i)^https?\\:\\/\\/40k\\-\\-\\-robux\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab496b5e9b3ce74930a5a584e36a03dfaf3146d042ba493a0e6adbdcb65b18ad", + "regex": "(?i)^https?\\:\\/\\/40k\\-\\-\\-robux\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1372676500b6a950191bb37d27cd791f020561c8c274c09c73d334212876ad19", + "regex": "(?i)^https?\\:\\/\\/40k\\-\\-\\-robux\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea8b65c2423e8d5dfa9ff845be43b865d51b52b2682c91ca8863ecc33d4097ff", + "regex": "(?i)^https?\\:\\/\\/robux\\-robux\\-roblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "782f4787e2effacea69889c7e274e46941c7c5ecf41df65e2da259469d6213fa", + "regex": "(?i)^https?\\:\\/\\/robux\\-robux\\-roblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2ced110fd0a3d81c35c6f670083419f398277e361e6f22b682f61bb386bd253", + "regex": "(?i)^https?\\:\\/\\/robux\\-robux\\-roblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f92dc1f5730cdb977c5f8625c09bca332af41c56eb08e3cd75a10b129611336", + "regex": "(?i)^https?\\:\\/\\/robux\\-robux\\-roblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ecc41df3700b0f34c723a2c20bd056343ae28553f6c8d47020589e537c44dd8", + "regex": "(?i)^https?\\:\\/\\/robux\\-robux\\-roblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fe5b403c23ac586d35b7e940f4c503d8fc3cee3ab7f6d3846225581188ad880", + "regex": "(?i)^https?\\:\\/\\/robux\\-robux\\-roblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50168d767df7a7a669e1f715b1969a17265713ad86200f8ecd09460f13c2a475", + "regex": "(?i)^https?\\:\\/\\/robux\\-robux\\-roblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e48caa6c67df978232a10052d7c175fc11b87333be8f66ee50ac2a494c98d97b", + "regex": "(?i)^https?\\:\\/\\/robloxhacknodownloadnoverification\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d5e50fd732f7b3b65e97b09f15d538e4529c589696cab1f62494dec74a2111d", + "regex": "(?i)^https?\\:\\/\\/robloxhacknodownloadnoverification\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5da74cc1a54ececc43adeabbd3637f45b1f637a10bb0777129f16ec7ae1de363", + "regex": "(?i)^https?\\:\\/\\/robloxhacknodownloadnoverification\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e62582ac68321dc85efea5b1774ad39af16ffdec8e94aeef1c12c58d005f5572", + "regex": "(?i)^https?\\:\\/\\/robloxhacknodownloadnoverification\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "295f14e940e0eaec7a5bcef82afc3268aad716e021a3913d11cb1e1ff783ae29", + "regex": "(?i)^https?\\:\\/\\/robloxhacknodownloadnoverification\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84d4aada887a7a59c42e79adc397d7d9e4f94a68841fcc838b34a4bd87a6def8", + "regex": "(?i)^https?\\:\\/\\/robloxhacknodownloadnoverification\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b1f8ae9aff39d4cb8746985ce4876ead42a9798c5eb16724b93048ced47dd73", + "regex": "(?i)^https?\\:\\/\\/robloxhacknodownloadnoverification\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8c1227544b70944c8967b67ac73152b996ce406dfda83c8c42d737062661dba", + "regex": "(?i)^https?\\:\\/\\/robloxhacknodownloadnoverification\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d1290715aa8b6b1a9928c6064ba0585a846da68aea5a3a8f0c0a979b9e46700", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afe5032e3430f229778abafb89d619894a960eb668741b74bfa69ba3a2702b1b", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e79b89a9417bd225a5eefa9f1b6a13fb581212d6414eb3a8e262c970e9fb9db1", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cb3f55b81871f598e490210acc316eb7085493b96b4872cd514787cfa82bfd3", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f1d454a119c9d13f7b040d153783aa12cfa81e807f54211dbf7f16ee1711201", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a8ea8dea06ff51dee80854f4444c5fcc5c2b8fdbb941aae77c3d04837a29f84", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc07c9564b79c0b4526f4de1500ea288c2379c4355b13caae33370134ea8fe28", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa56203e45fd3341da72a705a0c9882204aed8d6950e3a6739c16eae07f3980c", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b699def71245e986ed776c338e2d315bfcb79c79a9d2ae07eeeb2b70eb87586", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd01deccb44be0c050a8dc4890fbaf48e655055aad375f221f20ddcf5d6c03dc", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8f8407eb50c33e7e5cadf343da30919991ebcb23e193e7fbddf8a0b60987c6c", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffd1aa5bd0fc92d5ddf4d42725d9be37fa6e3c00c98dc29fb341906540be56c3", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7644a273b67b545c7346e09a94ace35916bdc1f705e4ed9bd087568e67cbdd34", + "regex": "(?i)^https?\\:\\/\\/b4vc56bvc456n4df56n4fd5645vb\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f60ea3740ae31804b38193f18e1a9dca06bde1fedcddd47dc665cc56244b5853", + "regex": "(?i)^https?\\:\\/\\/bvc4b5v6c45n6fdn456df456dfb456d\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6ad5e340b146cf3468711ea4729ec4bcf2aac54c59e417c8e11b7756b20a3d8", + "regex": "(?i)^https?\\:\\/\\/bvc4b5v6c45n6fdn456df456dfb456d\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caaad0812564d6d1b5d33350dcae6e081b274bf8e6f2a58b321332bee5f5c60c", + "regex": "(?i)^https?\\:\\/\\/bvc4b5v6c45n6fdn456df456dfb456d\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61689cc32f8042466808e3272bca23738df02a7dd6d1170c925e8da228eb6aee", + "regex": "(?i)^https?\\:\\/\\/bvc4b5v6c45n6fdn456df456dfb456d\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9676f916fbe9dedfe5d0d3b84991e997433edf5c3bcd2305d987265689ab26", + "regex": "(?i)^https?\\:\\/\\/bvc4b5v6c45n6fdn456df456dfb456d\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a2dab965e41afd72b0f39a7ff899641431faf2b4f07b1ac6a448ad2e603467d", + "regex": "(?i)^https?\\:\\/\\/bvc4b5v6c45n6fdn456df456dfb456d\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b29df53b64ed45d4f3c4ca678c9c54b5f9ac608bcbd180f2561cf66231d830c4", + "regex": "(?i)^https?\\:\\/\\/bvc4b5v6c45n6fdn456df456dfb456d\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cd4ba677e118ece8e5f57fe1a1072cd15c1415f2e0cc43163dcdc49d78381f0", + "regex": "(?i)^https?\\:\\/\\/bvc4b5v6c45n6fdn456df456dfb456d\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c3470e5f2cfbc23e3221d8ef08f550c7bbba300d957779bca5f64f19e11b47a", + "regex": "(?i)^https?\\:\\/\\/nbv45n6bv45m6gf4m56fg45645n6f\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc57f9e9646ff179ff967dca6edf8cf537dda677dee81cb27604d5f7040217d7", + "regex": "(?i)^https?\\:\\/\\/nbv45n6bv45m6gf4m56fg45645n6f\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52bec8890afca042af64772354cd8be49ff0d8dde44c38ed42c5a0ea8bae16b2", + "regex": "(?i)^https?\\:\\/\\/nbv45n6bv45m6gf4m56fg45645n6f\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c83f7f3f7c485b07c0f7b068fe0d0fade07a1c4f7c299b49f8bf4ea3f591d9f6", + "regex": "(?i)^https?\\:\\/\\/nbv45n6bv45m6gf4m56fg45645n6f\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82b44603f426fd5f203371871976a5f42c5e3041100490be5d8a0e01738b7bc8", + "regex": "(?i)^https?\\:\\/\\/nbv45n6bv45m6gf4m56fg45645n6f\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e55027b8fad84af667252114c9aaac186e1de69ef25a4e68bd2fea6d7ab31c3", + "regex": "(?i)^https?\\:\\/\\/nbv45n6bv45m6gf4m56fg45645n6f\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c49160b3e37719cde505d7b887327c46afa59aa5d78b55da51060eb654ebcd6", + "regex": "(?i)^https?\\:\\/\\/nbv45n6bv45m6gf4m56fg45645n6f\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18ec24e1c6a30b9cdc68d0079ee4c5056553fdbe2d8bd340dbb3f542bc6a8f8e", + "regex": "(?i)^https?\\:\\/\\/nbv45n6bv45m6gf4m56fg45645n6f\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9b671bcf76e9f813b7bf4b00d6c9e0803e14ec1b8273673bdd765c32f47baf9", + "regex": "(?i)^https?\\:\\/\\/bvcb6vc456nfd456ndf456v4df56bvf\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69a2237de6e963c26957cce16e9d0c935b0bdabed68203723137bc403efa45b9", + "regex": "(?i)^https?\\:\\/\\/bvcb6vc456nfd456ndf456v4df56bvf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d04860a85b4f0062505aebcfd010228c4f072f46f7383ec76f984d42d2f882d6", + "regex": "(?i)^https?\\:\\/\\/bvcb6vc456nfd456ndf456v4df56bvf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ea6b15a6d9abf9cef8a33888aef075f23c54e4e6e08101bd7b71da99f244e1c", + "regex": "(?i)^https?\\:\\/\\/bvcb6vc456nfd456ndf456v4df56bvf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7de9fb952da3b9ac981cbeb002a114c56a123e3b2be0379f92bbc80c4d8df608", + "regex": "(?i)^https?\\:\\/\\/bvcb6vc456nfd456ndf456v4df56bvf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a3e55d463840c21f3c1650bb2bb1bfabe8268aa550116d9e10b7d17c43ad3c51", + "regex": "(?i)^https?\\:\\/\\/bvcb6vc456nfd456ndf456v4df56bvf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77896dc4d1fe786b998db62a738b6cef3bbe17d132122275c7f97ff1db9538ef", + "regex": "(?i)^https?\\:\\/\\/bvcb6vc456nfd456ndf456v4df56bvf\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77dbb803e09e97299aabbd7aedc001c445c42c48e7e69b25de9ac9b6881b5b6b", + "regex": "(?i)^https?\\:\\/\\/bvcb6vc456nfd456ndf456v4df56bvf\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d29a0f05ccde6ebe56b98de23e07f204d7d194ba8d54cff73e800c1b4e6136ac", + "regex": "(?i)^https?\\:\\/\\/bvcb6vc456nfd456ndf456v4df56bvf\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "315fc835b2a3e07935b155a699223826189310ab5db529f3b99e28e5b1a58cd3", + "regex": "." + }, + { + "hash": "8e5d033c92c528252aaff97caec98a10c7bda4bcdbbe190facfad57d0daad5ae", + "regex": "(?i)^https?\\:\\/\\/robux\\-40k\\-rbx\\-roblox\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c804bdc7fe114b84b7b226be84fcc691f94608110e883c67f20bed3cdf39b7d", + "regex": "(?i)^https?\\:\\/\\/robux\\-40k\\-rbx\\-roblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70d88a7020ae6472dd294c13195157d7c2d6d9fa8c5d9096f619f9ea5328fc3f", + "regex": "(?i)^https?\\:\\/\\/robux\\-40k\\-rbx\\-roblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b018c73f50a2d8eb9194b73c852e3dda4bf5bfe69fe6860c1b6b93d61ec7ef6", + "regex": "(?i)^https?\\:\\/\\/robux\\-40k\\-rbx\\-roblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d02bfa74cf35f3ce935c25726f0c308feee3e4311023823498fc7967ab482fb", + "regex": "(?i)^https?\\:\\/\\/robux\\-40k\\-rbx\\-roblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b66a1370231cb9b1a81791e92776e080df9c2d1058b28854b2cb0d2e2da9c34b", + "regex": "(?i)^https?\\:\\/\\/robux\\-40k\\-rbx\\-roblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f38b01955fc15189462b609d90bcc91cf2ed4e45a514a5838b94c50f785be5bd", + "regex": "(?i)^https?\\:\\/\\/robux\\-40k\\-rbx\\-roblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fde912ba7b2e19a14a1b704755f772253eac87f5f9aac42f18f2e305eccd050b", + "regex": "(?i)^https?\\:\\/\\/beokfdisufoioieywuoufewyfhsi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9670134fe63343ef448a896005c6fb0d99f8c3090100e60f7aa393a054fa4569", + "regex": "(?i)^https?\\:\\/\\/beokfdisufoioieywuoufewyfhsi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "800cfdc33671673ee9740207ac0a10630f2e1aa750853c64bc203af71a181997", + "regex": "(?i)^https?\\:\\/\\/beokfdisufoioieywuoufewyfhsi\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab127c037e1768fbfac8dcb9af1e06f369ec742014eedcf35a39f86b6c667bb", + "regex": "(?i)^https?\\:\\/\\/beokfdisufoioieywuoufewyfhsi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fdb6debabe64ad517b27ac9595224bc84e17288a6fe9fd1ebca85f5463b42ab", + "regex": "(?i)^https?\\:\\/\\/beokfdisufoioieywuoufewyfhsi\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84a3da664ecdf09dd344e2d3dfe9bbee75f5cf67b2755b82f10deb8cfc6c1953", + "regex": "(?i)^https?\\:\\/\\/beokfdisufoioieywuoufewyfhsi\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1582dee2ed88363b438d0e2fe6ae72bfef1d2c95144048ec089ff6c1e8a2b563", + "regex": "(?i)^https?\\:\\/\\/beokfdisufoioieywuoufewyfhsi\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81151496e7193d22082702d7e1f0d84b540a3d9e4a9eec495816f904cf90fad6", + "regex": "(?i)^https?\\:\\/\\/beokfdisufoioieywuoufewyfhsi\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a66e9d32f6a3dac3997d7c045df54ccfb14d88652f8dc65e8023b9e739099655", + "regex": "(?i)^https?\\:\\/\\/beokfdisufoioieywuoufewyfhsi\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec9f71d2e22b5eef7406437a36de5c620aea2b902d77c5e3e4d26bf0275fdde5", + "regex": "(?i)^https?\\:\\/\\/fasrshine292\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d366b031c39f2d44d331d8c16398212d4c8ead3630fca2205824b7f5e5899384", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+indexnotification\\.html$" + }, + { + "hash": "2b46be128d4c43a79411fbdd7b2cce4ccc04b6558223f1d9f4721422d3f42782", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+result(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d85c07e0c1ae69c78dabb9250e56231880514b7984614550a287bfe51aeea5b", + "regex": "." + }, + { + "hash": "c6c2866925d4c829fbd49406ca4e96f2e41f0f2414bfe14ad0707f4e8846204b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Abufbhjuj484999wuhbsnhnoanw7384\\.html$" + }, + { + "hash": "474abae260c021cf41630d3571561ade2dca983cb3d17d2eb30dadfd96722f02", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix_Clone" + }, + { + "hash": "09a2de90f1f1a8d315d80461d8e23626e8dbc54f28125ca4d6fe643f4f3e7aef", + "regex": "(?i)^https?\\:\\/\\/mercadolivre2022\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a25ef94e1a1eb1e49bdf0a8225bc0b32f64c9e9813e57185b13d7af9771d85b", + "regex": "(?i)^https?\\:\\/\\/mercadolivre2022\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d099f53757440360454bf6755dc33e3b42f702c9099b446fa07c8429cfbe2c5f", + "regex": "(?i)^https?\\:\\/\\/therobloxiankid\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "652335da47bbd72a9b45eed8bda9ce78c7c599dcf1c206cb5d479a0d74d61b3b", + "regex": "(?i)^https?\\:\\/\\/therobloxiankid\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a2f145b6add8c5fadb0f9ea5f01ea86c99d9a32e0f39a110ac0940163725f78", + "regex": "(?i)^https?\\:\\/\\/therobloxiankid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9fed87774bac976d2bd13fa2576bf2bbc1b4d6cb30a4592e131b9bed7387a76", + "regex": "(?i)^https?\\:\\/\\/therobloxiankid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01466647e25a1c14ab1d18b0588c9a05c5bc6b2e4bed5a32f5296924d6748c5a", + "regex": "(?i)^https?\\:\\/\\/therobloxiankid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "617dfbd53e3e267b7996cc2e9d4c502955eb0bba352c0e39a32b0b0ffc053c8a", + "regex": "(?i)^https?\\:\\/\\/therobloxiankid\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01e28815d9b72b79b3dd549cbfaa78138e3f0bc6a741429332eef53ec8b0e714", + "regex": "(?i)^https?\\:\\/\\/therobloxiankid\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fca1a3278ffda43c7ec0ea5a8dbf1e66a63f024f3731413c9264218ee095284", + "regex": "(?i)^https?\\:\\/\\/therobloxiankid\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a9748ec19f8d0dd54c2d190d83fc1c88f991e6b39e7a117dd053ff39b1951ab", + "regex": "(?i)^https?\\:\\/\\/therobloxiankid\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23ef437fded385f72b73776edf34659a2ca0d7527a86f5c99b59832c6a13f09f", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b75444f5281d340b03a2af3d8c1b6ee50da13445dc5714e039408c5c24b4e0e7", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7332808e7db47cde52c3eb56f7d2c2a2ae21971845c2ca37319998a87551e464", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5df291dca0291396af6a01a616701d48e09c1f542deeeed41fad72990251f2ff", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac82ffd798255d0304f0c5762ce3d5c7f85b6dcabb0d9f8dd81b839a95403d58", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d7dcbf70221b8c0b11f5e388cf19a9e478c6a92ad71a8075d0d4302bab05f6c", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7716a8598ccfc70eec3b1180c69203a99ee46de2b05edab079954e946bbd679", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3886fecd3c5dc73042ac844949df113ce047e68ad4b3a2a1755a9cfa7b2b2440", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9ab9f70d3977e2ebbdd9795cf548fedece2402b53cbd0bf87faab8ad3e14f49", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18d1b2fce06a6ce367feaf272b3a9d5921e0daa6a40b7658d75db87b495345c8", + "regex": "(?i)^https?\\:\\/\\/njkbhsduihf743tgjbuidhsfgdrgh\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bfc4d22cf5da9d7b945f8f62d8a07e25b499823fdb4d067917693a64e468c31", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22d26e39e0890e94f797f6ef99cfc19d9fe15850abe8fa43ed219585e03c3c78", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a5df0a24b9cc57940ddc9a16c55463b4ee18811d22ea86483007d15a1dc0568", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98d55e7a5f11d22c74225c0c222ac02c5c9a431d618cf9d4f06e8095f5682586", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "776e853fdc00048161388a80ee355d32e01d11774f2d6803f95c993ea5c61bc7", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d8a5c467ad95a924e1693e99a017fcb91bd814f5857a623b8c67a85d1013725", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58262c0f100330b3db7e0646085674dcd718cd41083d277eace04bf78d5bf7bc", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efa25c9e1ce3851b024a7d89e002dc5bb0e538cd9e127acf3c5f89b559883cd2", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f6e53a9cc36ee644e6d228bb57a4c473883c1ca8fe0045e8de6a4a9065558d5", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "177df5bdd81ccbe90a7d6a6d5bf678d7ed098510277ff6d8ef06eb888379763c", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a4ed9b4d7f1acea965109bff1a1a70a3e60a250a20e891d4260f076e397aed6", + "regex": "(?i)^https?\\:\\/\\/fgdryte5rhdgsdgdfhertdfgfdgfg\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc306c544c9ca68dc7c4843b1d876d849933941230bebadd318f5d77cdf055ee", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa52a6b553df2b9bc6f1850241b897f0f28c2049316ba4e3c0aefa3c84a5607a", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "993845a8020a7e8c58280404d1486e73e87234e7a8e5b7445d85dd9aeda93185", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37a58dc1326e9821feae83ea01098157d71800f76ef366f62bba5fb2de9da34b", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "536dda7a8d4900ca620d12e6a4971acbd8ddf49bbf0862311fbf87078021cee6", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0b446a0a295f0cf7efbaadb8facec130d443fec88f3421300ad70fb83ec161a", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1feb740cdf84ffa59699b92f03bd61baa7ae8c5a4abe19c091dc6c352375357", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6389652225e785ca299b09c3af6c6ae7660eab83e7ae226cfd3bd3e0e5363b4", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0871c7f7d4e6764cadcc9d5529bddafdc761556e449e355548ad9097eae348f9", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a2b939b8e632faf80bab358148084f0a92febdae65e79d6f309b1c1b8cb9720", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93008ceede6fa52d684155b34f09b6c458d26a40d0fea64a387d3da8538c8def", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7e9913a2203552ff211bd43d6f7023df4ef799a5b976fff01cba1f8cf5a59a3", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7129b9593a47f681c29c827790313bb90224337773b2b87e35ae67f1a7e08d1", + "regex": "(?i)^https?\\:\\/\\/ghfgthfrytjh6tu56uyjtryu54yhr\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d28417f1180a31867f1ba67a7757b3c7540143b5daed3a8b34631840368950a", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "300b00cbed39d2a9c6648746c610e8c81778df7667ffbc649d482d6dda1b553d", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58ae5462f07cc83259fc6d144a04202eeef128811d334fc518e657e449a0bce5", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab489d38d8bab2e1e507997c7fa34336dec534a525fd83a76dc1ba5a6e5d7846", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e16b16da5bc207cab74d824a0f92faf0f4323f38a1c727714cecd9028b58cb2d", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8f25589f3a367d1efb152f75b7b5c962926362b1ca69c974d1c738735fdc4e3", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab67ee5e49c5fc93543a86e4fff1d947f664d6feb29719e0451a9033fbd0a4d3", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "843c34300e174f2088b3458f4ab5688f9e80a2e2c100330fd3557be569e608c5", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e9b6b2620908f428d59aca312d1b0ab596ad6934b0843868f200fa136468595", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82f41f92e6b4cd4f198054ad701f9d56f6af737836c8fc000f54304b67a2e8a7", + "regex": "(?i)^https?\\:\\/\\/robloxiandaddy\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c58cdd19dd81adf577ad7d3d888e792214d082e95427f25c028cef452a2e1c96", + "regex": "(?i)^https?\\:\\/\\/uejsjjes00\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "923095d853c185287eec0dcb16c82a8d05c090cf26b92306d313de94bf5a4714", + "regex": "." + }, + { + "hash": "7a97317e327dc0cc976460df9c420fdfe5607aae798e459cb7ab3fb727dcd899", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-clone" + }, + { + "hash": "451c007993532efab1f4b1b418c3de6f96ee097d9118f50bd65f953187ace257", + "regex": "(?i)^https?\\:\\/\\/raporobuxy\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f959195d52b6c5422b45a8a06518983f3838428cbccbdd1b1bd94d125defc60", + "regex": "(?i)^https?\\:\\/\\/raporobuxy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "711f56581cd0ca27930b901bd279cdb9e78186e6108581b4b65115896e1d7331", + "regex": "(?i)^https?\\:\\/\\/raporobuxy\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6d56f7827d1c5c56d43765d102fd691f8e3f8b53847c26804578942ad12c3af", + "regex": "(?i)^https?\\:\\/\\/raporobuxy\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07b0add6dc9d9ce7190a9f765bcb2976c76723dd7e7105caf61392e265b9ce63", + "regex": "(?i)^https?\\:\\/\\/raporobuxy\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "280d87fee517a60570450a804d293a9ca90f3b820afce371a3fb23ee056a449e", + "regex": "(?i)^https?\\:\\/\\/raporobuxy\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d65cbc886ec9d8ad8628d7536895e9b800ab3fd6b7ba3cf72ca87f054eaa2c4", + "regex": "." + }, + { + "hash": "c8e43fa64f83a17030d55c9d8dc45c980bdf2733d727e47a94e458962f55024e", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82f74fbb12c9042f4d6e3e4372aac08a65cfbb44534b34a5a8ad98c22e91e2bc", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a85fb164b9cda80068ef08de8d87017908a32086b715da5203416c281a5ebc48", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13ebc5e3433cae338dd399f57909868c47b252443c475cbec530a5a053e45896", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "030dc31fbb74037122e7b4c3560b2970d6e2dc695564984db0ee65ee842f99df", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3981c0e0540bf0b37c62c8ec2b58f4125d795d966c7b455cfcdb91f1cfbba28e", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64a021811eb3ac55b5856fb0b0eb7a5a14651871c0ba585b9ce789f3e76b3e89", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5309e415b25737c4a6903e80c0041dcc1dfcb3e59e56de9341a2aca30a233c7c", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dec26f8798c323f9ca3c3031f966ff373ad96d5681b71a0d0a954bb3e75f285", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5bbc3e807e872e13595f6344bc842ea406b0fa0e2b89332adacda090eaf13e3", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12af56eb10f877f4ebdc40498b82e18033d58b9ebe12efe01aabcb0eb7a7502a", + "regex": "." + }, + { + "hash": "4ddfd27e7c63881c3af65059a8ac0bc4ff93b5af443518c267855ac32f4e4d68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app[\\/\\\\]+redirection[\\/\\\\]+rdt\\.php\\?track\\=ph4s4ms5qdjieshvo0ee2ecqo\\&id_campaign\\=\\-1\\&id_li$" + }, + { + "hash": "277ac428ea0b46eb9143bfbc25d405e7bca62420d33d6ed9e3d5b7cc12cd8f1d", + "regex": "." + }, + { + "hash": "8848ce7d4bab46ada97fa48b3ca1fb0a692488ecd25d22cae20bd3b7914b7cab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css_assign1_hw$" + }, + { + "hash": "87e279ea5cc1f4bbd748cc8fcbe4ef06c8396ec4f7e3599e04b67ee9538fb62b", + "regex": "(?i)^https?\\:\\/\\/telephoneorange1\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8a0359b25fc97045c3af2bb270b21dbd637e0562926b7c964e5ead629537cd61", + "regex": "(?i)^https?\\:\\/\\/rbvxtogo\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b51f6e09c37e9c80981bccfcd653ffb6e7241edfa0fe3552e0fb2c8db1a1a9b", + "regex": "(?i)^https?\\:\\/\\/rbvxtogo\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b8905b9e0a143ba51360a696970c395df9d3c4632a48a957c69ed68487843bb", + "regex": "(?i)^https?\\:\\/\\/rbvxtogo\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "378ba4e5d12dd82d8476065a65c6ee09d4096c81cd77e695aa25efadca409872", + "regex": "(?i)^https?\\:\\/\\/rbvxtogo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99f6148ce0eae7eeaa9e699a8fb24ace70c7181a863410bc9c6e1eda69361407", + "regex": "(?i)^https?\\:\\/\\/rbvxtogo\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8efd2de936529da7a4af2e0cf6f3ea68c2a3d167dd060b492ff11568cf809d9", + "regex": "(?i)^https?\\:\\/\\/rbvxtogo\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8651f82d526987ef7c621abbe8c5bb45857be9b01c7a741828187d084b51f32c", + "regex": "(?i)^https?\\:\\/\\/rbvxtogo\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02326a5bc4f67dc8b2048d4356870c5ef86a8215e23075e67dd944d8b864a8d5", + "regex": "(?i)^https?\\:\\/\\/rbvxtogo\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b864605bc7036bce239d533ca1a3e339ec8475a61bb73484fa7c80844a9fc58", + "regex": "(?i)^https?\\:\\/\\/tagarobuxy\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10017e9250cd4927a84b82cde3c8a06cfea8f5a035f61cec587ab418cacd670f", + "regex": "(?i)^https?\\:\\/\\/tagarobuxy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eff468a046893225a80ef133b7b17dcfe340c59d51d3f3ae8f39f3602b4622ff", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38b02f5e950891e565a89b1fad9a906c42fc745187657bbfb88b2b76f92702b7", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4a2d9209f98a2815bd168cc89d336487b7a58beb027289d40e052b475aaad67", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "428076b761d44f7c51c9eb5ffc76072bcee659bd6946ed316db50585723601dd", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e29364f78dc315af386edeef25f665ff945da07313ac8fc309cb03fc54242a3", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2ae0abc49aa08fb18560015ae94a84395e30eaf926c303be6c45742e079e979", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "077cd93c8e8805c853d7f10bdcc484b09eafc256df748c6cc8041584ff5b186c", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "adaa36b94326f7cc9282676dd6b545a5ab450bd1d794f5917b2ffe8cb10651ba", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e0049944ae8f8898408412e03a146da649b6701dabbc95ed73d7943b8a9b028", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff4655f4e38890fe0d4dc11b6a2aaef1c0155ea331c7afb83402928ff960fb98", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43e4585fff67f4cb7cbc380eefe24e1065311318b398b1471733a09c75622d02", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "837ac90a1ee5c0dcc8a98ca91d651fef9f824d5865be569ce18c3d1d3251683b", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3442ce20abbc44ff6e73ddeb315058fc40466b9c36a06d4d37d966a009048fff", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea9bf76a3d19023b633d12bab43502765b2f8a0fb85d3a29827993eb6121b6ac", + "regex": "(?i)^https?\\:\\/\\/rbx50kforall\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78042c13dcb972b646e6ae62bd3a11a317c47e41979dab886a7128b9c6344485", + "regex": "(?i)^https?\\:\\/\\/raburobx50k\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c997da7fe8308056d4b71aac4a61acf88b2a9b66aab30578973989e4921b63d", + "regex": "(?i)^https?\\:\\/\\/raburobx50k\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f56d3f860a997a3c5cc17e5592ee694c5a07941c428fb4f0f16acdd970824ab1", + "regex": "(?i)^https?\\:\\/\\/raburobx50k\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fbe5c2037a9869cf321a812ff95f395427567a617f6837542aa7af44ca283a8", + "regex": "(?i)^https?\\:\\/\\/raburobx50k\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f9113cceb1b991494178efc59fc426f7c32a913e6ea7173444271a7d8ef6375", + "regex": "(?i)^https?\\:\\/\\/raburobx50k\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55a4c16ac1180462afe06643e60dfd014df031a69f1bbaab11ae31f80a4d293c", + "regex": "(?i)^https?\\:\\/\\/raburobx50k\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f341463f8f9b0a4ca8af669f675a23e328435cdc1604e8b5bfe2027b58b6e8b1", + "regex": "." + }, + { + "hash": "d67ccc88ce6c8fd0cc5686aad44d042e91d9155e274b7ee1b7083e7b2304036d", + "regex": "(?i)^https?\\:\\/\\/aol\\-mail\\-help\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5da7566df44a85eec81d7e360bcea802e58d01af0ffb74782ae1e6c4b884b56", + "regex": "(?i)^https?\\:\\/\\/aol\\-mail\\-help\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6cbde949756e2784b376570caa2446327a8a205597b7b929519a1d2f1c7185e", + "regex": "(?i)^https?\\:\\/\\/aol\\-mail\\-help\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d94a9e335c03e09494ae9bde69e43b91048a68c47a67f8c5bb04540f84590bff", + "regex": "(?i)^https?\\:\\/\\/aol\\-mail\\-help\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee523a44506eac5690f7b80c72111b8aa577f9de2bc611d7240099cda3e72325", + "regex": "(?i)^https?\\:\\/\\/aol\\-mail\\-help\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f99fce6a9f12f2adcb9264d4706e24c25a6105ffcba9562a2eeab193b5db6259", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9879ae0753c7d161138c95e122b4a191e05f87e79ba7d7f953cf7657c2822925", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a89a7312dc21fb3e2b14dcc5300bc0638a2f71836ec9e3c8655a776045ae5a91", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6f9e49ea4025de3e2215991000f9f6df4d1757adcbda89098626f897eeb896d", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a2d17c2ca0996e80704bcb334112e6704c781df6f1e60d18152be26fd745009", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a862c6b892112991b896920e68f620753723b1b7f143325f850649787ce54167", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "591b2b383375ecab37f72e021dffefc176b7a3f08ff4635564f5b2b19cc0d213", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0f89e54fa50d2929c7f67487efbdb297c8c481a8872832b4f9030c1ed00a870", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "184aa4b1ff40c8137b84af091fbd30821bbe5fbde6ba5336ac4dac43bcfb576f", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45acb14d66559398d90496a11f9175e6395e0448e8963b4c67e8ef95151d41c1", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "449e543165c628d69d608f54d50f05c097d7a8cc8c1db2279717d11090951c0e", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "812bcb1571b0ccac8e4b7b6c953a9ffffade28277460d51b52d5ef4253357b36", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4ca1dc7ce479edd22e3cec87969ee53d9239782199aaeb5b8f4555bf287048a", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96a61567a53dedb6b9108d58f04fae2a6b0f346494ea528c9604227ceb9eeeb8", + "regex": "(?i)^https?\\:\\/\\/lorbxtons\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9afb7e4cec82da8c9d67a29914d64422afc24f546746aecf46b760c755513039", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63b4f8411b5f8b7d904a08f40bd2b8f9be901b7d1c080bc4c4ec057ce16c5bf3", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3288d213ed70dc91a635e67a4f3d008c5b5b41b65923b099c9f05bc1349009c3", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a244c403df9b0127a30ef28c11cb3027019b661c1b41eb8acdd52845e8bf7ab", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9914883280fe2b3d740f753a166b4d1475be181d323e24bbdbfe180149689d07", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6def4e78d984936753760c1baeb41765dcef57fa04ba0e18135a8ba935642ed9", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a35ec962833ed8d67eb003424cf3d4b2c7812e225936f9306c730ad7cf4c575", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c90413dd639db3acef061cc265afe6f712705f1d676d34ee7f9e61e0f73fe48", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f581ca6f999a56b8688a2037876c69df2458988e47cd32675bd4203e503ef4f1", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd293b4c01cb39a6e98c8f4762000e58676272f39e4aeaab6b8b5f2a35328c46", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65de78a3e19241675d8d5bd1db0eee1a54a3a69a2de950a40e0e77a66f919bad", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d29a8fc21dbba6fe2fe2b4ebfdcef340836ac0ee8eceb0a1e3e24faadd49c138", + "regex": "(?i)^https?\\:\\/\\/robloxably\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d90f1be811a5d678cf5f177f7c08023272ea9a03d47333578e1328d447e7995", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9019a3e54f0f99f9ce2c2971453a3a2086f248218df174b6b16e9eed28d0b9b8", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "042d7851ddf98c3c9b77a11d579fe3fa256b3b020ad9585f4b0d0386df346840", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5c23434d9ec0702d1d828d0df4fdddc2ce70c698d5c3a3dfc93bcd16f010a11", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b46a89fbe85fa2884b9831c7c647b76e4c15a449d939875e881c525cdd7119", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c26bdaacc35fb30b46c93d54965b3ccebea8a48e7b827c0827906206b7f6bd45", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8a3dd2a3d4a8102907e9a647feceeeb2e3f9a1770278b28a50e1bc90cc8c6b1", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31a60b51b196d469db1e9c872409f55f8e74262de96719fa0b0aeeb9fa942087", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39f29696309e8a0abf3969f04d463b36c4323706a6155e1430dbf757b971871d", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e95c7a64c5f3c4c701e1c4a807ea0e75aab7d0b0b8764257527767b98ced195", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c206b5b4ac584632f5a8403830b768e9e41b2e89d49ab470f009cd60aac0e69", + "regex": "(?i)^https?\\:\\/\\/vbcnc654bn1c5g1f1vbn\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "931d409d01d7ebb6fca8f637ab22197d9e57909e64f1c4c9f0310d35a21d832e", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d39932415bdf75189f23a98b79f2184fcf25ba5feb0abceceeee5a219e71bca", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85f2c4f8a5c42c000abfe44664dd02cd794d7a59bbd8e818712de6566a8a7e56", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "602bf4b0b3a8750c061f0d457456159bede6b00a132ed6c4a07b619911374aed", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07726e4710b1d3e35f8c00d878a9875bae514915ec205e2b389c64848ebcee3e", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "faa522b04f10fc9e39fdd1d908c855b42e15ffce76c3806bb028f144413a122e", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70bc5d5d942ab92d3d9d08611dc63aa38b2d19d1e0f697c920832f26ac0ef4d6", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae0095d46882012898dfdccd7bcf7664b2d4bf426881e9d6580766732a7495c5", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "895d001c3ec8c0e6ee691a36bf4767b916d2d62487e596ac7ac94590ad548481", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb3522e5eb22a00a32bf3e27159623f0e6120e80f677965af872796c0fa95eb8", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9469d585345de4794c96b695290b48133d0ec4db3e4d7f7f974d350f1fee0953", + "regex": "(?i)^https?\\:\\/\\/bnmbnm21bnm21bn2mnbmnbm\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a11adc5f7d312102ed24288e80c99e1707b342ad756e62928eb23d67909a59e8", + "regex": "." + }, + { + "hash": "f8ffdeeab065c9c361c6d30263e2c34b35db8032ce83165dfa2cfb168f818260", + "regex": "." + }, + { + "hash": "a96934104275a14dc8e78a2552599f60d1405467e49a8f27876f2c490228d9b1", + "regex": "." + }, + { + "hash": "74cf7b4fcfc0041c8df9555ddebf2eaca091e20f9e64dcedc5beeab799dc2046", + "regex": "." + }, + { + "hash": "78abb47692b771c7a662e154f00672d9cea51353c74b9244d1c811c390b08032", + "regex": "." + }, + { + "hash": "3c61d908b5cb397438b5208d1857f9f5a0438f352f6c29cd4dc5e9675e0821c2", + "regex": "." + }, + { + "hash": "e4919ba94ffa3871bf585f4f04d9888e245fa7c1f8b61c6a4769a785fb0eeba2", + "regex": "." + }, + { + "hash": "9a2ac449ae0a4328e6ea79dc491e77d4ab9d4c9ca14c78df0f857d0917a442b6", + "regex": "." + }, + { + "hash": "8690004bb7934ef5c8f159c0ae8c264be5a940022b600709cbd8e5c93277ffc3", + "regex": "." + }, + { + "hash": "217519452b9953b99b3c613be5fb6e993a653c0759352aa321149e1fd9ba1155", + "regex": "." + }, + { + "hash": "cd600fef9a86865b77bce48ddcd7baebddad90ef66a10ebaccbe7c98755c16d2", + "regex": "." + }, + { + "hash": "e38f496e18c28d05494b0061d0364907beaada7e8aaebb946a3a3dd1d8fa78d6", + "regex": "." + }, + { + "hash": "f45623585165d1b431cdac3bdee21118146b0b80e4a118740bcd4492a98a3726", + "regex": "(?i)^https?\\:\\/\\/ghfter54ujyjghdsfgaser3wtyhdf\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53fd5794eda7fad1ca392e7afdd7b3ac736f650d69bf2335c93df625844a59da", + "regex": "(?i)^https?\\:\\/\\/ghfter54ujyjghdsfgaser3wtyhdf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "786d24ce9884dd793a3ee1012683394c5facee9d8b022f7d0b79ba6a4424c7bf", + "regex": "(?i)^https?\\:\\/\\/ghfter54ujyjghdsfgaser3wtyhdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82ffbb20d1794b5cb4a18440189df3604813111ac17e8b4b0c3d065ad1b63d36", + "regex": "(?i)^https?\\:\\/\\/ghfter54ujyjghdsfgaser3wtyhdf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "380c413b7aaf768706c89b298fd6966386fee92a60ea6a2613e7499f7755d599", + "regex": "(?i)^https?\\:\\/\\/ghfter54ujyjghdsfgaser3wtyhdf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4eb3291c04bd5823033c39f2f3bc7eb993df87a238a133ee3d22c32abb1b7055", + "regex": "(?i)^https?\\:\\/\\/ghfter54ujyjghdsfgaser3wtyhdf\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccbc60e930bba8aa1d1cffaf15cb55857105f6f2d253654fafb8b5f378f4ebe4", + "regex": "(?i)^https?\\:\\/\\/ghfter54ujyjghdsfgaser3wtyhdf\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "665fcfde0cfc0c8f1fd052275a2341d89d63fe36b69feadc9feed66fc8654bf6", + "regex": "(?i)^https?\\:\\/\\/ghfter54ujyjghdsfgaser3wtyhdf\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59c22cb6ddc3878289ddb84b40c92ff9f20a681d88e4f49bd4944ea157e9b957", + "regex": "(?i)^https?\\:\\/\\/ghfter54ujyjghdsfgaser3wtyhdf\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17cfa51b0656b3a6cf933b4a9290adb22d8e442b8697f2d41c49f4b94e1649e1", + "regex": "(?i)^https?\\:\\/\\/tghfth5456rtgweryh2345tggsref\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "acc80cb4c6417584f88ea1717f1ab200046403fa6c75cc02b985fa01c4d402d9", + "regex": "(?i)^https?\\:\\/\\/tghfth5456rtgweryh2345tggsref\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "243b236b55e0cfaedf2a2e3c33b602317c097c9cdfdc10f30e878aad0d20c118", + "regex": "(?i)^https?\\:\\/\\/tghfth5456rtgweryh2345tggsref\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79dab406e4b2037b9e3d86354b5522631c100bc4c673fb2c5982b59e32e61800", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NetflixClone\\-BharatIntern" + }, + { + "hash": "b1c5077c811a58f624a211ae23b302089cbf4e6c59790000423fe2c47351a5f7", + "regex": "(?i)^https?\\:\\/\\/vnvbnvb56n6v5bn6vb5n\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f5ad49998645193d0e6b1a1c7c7d68885e5d9d52a69638253da063755add934", + "regex": "(?i)^https?\\:\\/\\/vnvbnvb56n6v5bn6vb5n\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ac9a26f5f5e16ac2a5b774b34c7bbd9d145efc226ad65624d51adf29eff181b", + "regex": "(?i)^https?\\:\\/\\/vnvbnvb56n6v5bn6vb5n\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71c3ce8e181728985360d100336273a73fd60f2fc71532bb96621d97a4c3ebcc", + "regex": "(?i)^https?\\:\\/\\/vnvbnvb56n6v5bn6vb5n\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96d22334ddb2b0c7d0b996b0c4a3156c369c49ce5830f6454490cf877be7ee6a", + "regex": "(?i)^https?\\:\\/\\/vnvbnvb56n6v5bn6vb5n\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dad6e49c1c8393b41c0fd632dde32f5c413932cf0e2806c2354c6c4ff833ff76", + "regex": "(?i)^https?\\:\\/\\/vnvbnvb56n6v5bn6vb5n\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7e2bf83d1bf69168e16ee7bf7dfb00c90d39631ad1e76df27035bd4ade3afec", + "regex": "(?i)^https?\\:\\/\\/vnvbnvb56n6v5bn6vb5n\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03e3530e1f6a95b00872a9d05e072ffb85b655a91dbeb53421d48c1edbc2611f", + "regex": "(?i)^https?\\:\\/\\/vnvbnvb56n6v5bn6vb5n\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7210332cf6923bd49c877dad6e81fc4bb8f5bf6ebb09ed44a282846119b224b", + "regex": "." + }, + { + "hash": "b648e2b58b1c32f06e9e3a75bd48420797b4108f1bfa6d96270147fb2b8530fa", + "regex": "(?i)^https?\\:\\/\\/mycryptogram\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b4622fc922304b0a4eb47f6ece5bae7c1c9e81ffc8c5d2b0f565841cb3773f2", + "regex": "(?i)^https?\\:\\/\\/mycryptogram\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c1608bc84eedb53bf80521ba9fc2aa48402641b28899596e1f7c0a45f6ef1b", + "regex": "(?i)^https?\\:\\/\\/mycryptogram\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "890362d389363e9ceedef90c1e20b9c600e34e53a301fd0663e154148204407e", + "regex": "(?i)^https?\\:\\/\\/mycryptogram\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "615f94c9558268fcd5975e6af9785b75680e984f51e980b3402c3e3d20af27b4", + "regex": "(?i)^https?\\:\\/\\/mycryptogram\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8a0602df466beef1f12bbb878e3159b0039903e9adb39044410c3fc210cd6d6", + "regex": "(?i)^https?\\:\\/\\/mycryptogram\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beabaa04c419a19baf14f2224f74da48f3222ba9acbff333279c46b6f179f0df", + "regex": "(?i)^https?\\:\\/\\/mycryptogram\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1fed62d8baf0df7973f85b5bf108e83a9d8a85f93a020e44bb950e1c70216a9", + "regex": "." + }, + { + "hash": "1c494665a0011e8498b7c5c1c8112b8ccce2778280f4f4dc591ce0099eca7dc2", + "regex": "(?i)^https?\\:\\/\\/symiotoroa\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b21d2fccc9eb63fa7551117fb824fc6675e59c96d7899264f0a0ffd17da6bab", + "regex": "(?i)^https?\\:\\/\\/symiotoroa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8ab2fe605b320788ca9ecb4ab8150caffd9a0d11bff0b290a5e9b346a2ebbcc", + "regex": "(?i)^https?\\:\\/\\/symiotoroa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ed96d9d9e5746714c63fd044e925c171e9298ae245c7a80f291e9c89a784b06", + "regex": "(?i)^https?\\:\\/\\/symiotoroa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f0850b35dd8ef04c5331db24dfc8802692801e99f36952adc25a6c2d9c94e1e", + "regex": "(?i)^https?\\:\\/\\/symiotoroa\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0e4cfff57a0a05af1182a7af044231e386e1df842caa701e82535d9bb650e4c", + "regex": "(?i)^https?\\:\\/\\/symiotoroa\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9acbc688cba8cb4cb8a1d94e4f1ac78e7e2c8888f6afa8292edd9b101ba8e29", + "regex": "(?i)^https?\\:\\/\\/symiotoroa\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f140a4a487f1983d240f3e2b87714f06a8203ed3178bc58b272745e368c3efd", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f04342915a82f5732a7de878e6210bdee46ec13abe2420c1153632bbbdf617d7", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67993c8184d8ff9a76e02eeafbd75e357d6e192c493de3e16d229b4c78122632", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf060e6471c97970b1688bc8858567d37ff2071356e557a6217088b15f2f77ad", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8b4f9b3a00592b339c7b95a89056d0957ba67293f14bae91dad84914bf89a5b", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d72d38f77c93b594730da14d60f43777e401e042dac6867aed89336020da2a6", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66ee3ab553c5fb825cc3133bec50d7cde67df52922408666d181b82f19f87246", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a4bc2d537a2931de5f45d3de01c2b396e14f6c90a1324a071e9c9e7b944576", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7363ce1f591f3dbb1588660c27dfafc58074f7d65fae25ac2861a61a2c6383fb", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "128603eb2591f9c09df2e95aa9476cbf0f17dbc7431f2ced075cd4fd2f8c703e", + "regex": "(?i)^https?\\:\\/\\/suburbiask\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ca1c7420d4ba1162434e8a2cfc6a179f98b5007f63c7d030aee247a8ca87c3d", + "regex": "." + }, + { + "hash": "5a9fc49e7599d77e2e4df382ce62608513e62cbb3edd21da67d5dccd2649d21c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Facebook\\-Login\\-Clone" + }, + { + "hash": "bcc01e2e9cf5bf37c270813172364806f43f96ce4e055ada2795a9bc68c6ca0a", + "regex": "." + }, + { + "hash": "90b52e6159e18f1e29b443bad512c73fa42c57a38a964a7dde2996c4e5c3b836", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20e86efa927c69df862f8d83d2ff3b1c56de38dc49823bb19e24c7b27d6eb41a", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cbc3c5366c7ffe90206ff0d2d67625c69231c5b9b915cef07cf877cd1727315", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4065caa8375cd7c5746d088ad0b836135cf4a5401d3f1e0437a7a04a86605140", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33817684cec0beb5b816089e27d2d534d2d76457eff81970e8e07a85dde6088e", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e120cee8198b2e6aab7f06e1c6aeef0c790f041510c806801bad27d0c464fa51", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14a3cebebd53200259381906a729d659be7a76ac7e7caa789832f972755b77ab", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fd8fdf8e703073e97a0168cc89f4944e6caf470d8ffa0426ae7713b44431c65", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf7b94f8ce53459609e0d9d36432a3df6934baf646bb6d45db63d18b63fa4171", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37e425470319b5dfb7140a6512ef8ac61cc69be9f09af7be7f67663f6e40d8bf", + "regex": "(?i)^https?\\:\\/\\/synerirobv\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "727ef752ec11f4602dfb753d77e9eaed263a1545ccd1fdcc34a4065f688d2879", + "regex": "." + }, + { + "hash": "082802c4145f7a7dff6b8316ef437b93361338d1b9b24f93f7d536f929e8b3f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook" + }, + { + "hash": "8848ce7d4bab46ada97fa48b3ca1fb0a692488ecd25d22cae20bd3b7914b7cab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css_assign1_hw(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f811bd05ddc0ba865e3e246747621acfe8c4923ca46b11f85cf6f7c41331897", + "regex": "(?i)^https?\\:\\/\\/robuxserver555\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32b1a03cab3e0b52038ce4ecabc0c8ace300bad6e7bea5ed77646aba8d1c386d", + "regex": "(?i)^https?\\:\\/\\/robuxserver555\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0035a0b422fa9b825b57e835182b5df14421fde8b15771d995c4ea6e93294dc", + "regex": "(?i)^https?\\:\\/\\/robuxserver555\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fb1644708cc1a841e5e7d785bc89ab1e98b00f16fe3f55c1c56651feb0448f9", + "regex": "(?i)^https?\\:\\/\\/robuxserver555\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b74e85766060b93babbf7ece11b4ad021a51a40c1675ae3a669346032b3c7955", + "regex": "(?i)^https?\\:\\/\\/robuxserver555\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "904bd9f277e1ef1818341982d655e0cc166414d93d1e04c0570255b2a2ad83ac", + "regex": "(?i)^https?\\:\\/\\/robuxserver555\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9afb14b271d3b1bd27458869571c1756d2cd78c66a999f5f83b6be3f85d7ba17", + "regex": "(?i)^https?\\:\\/\\/robuxserver555\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b0dfa404e80fe63439fbaeb9bf4bf55d8845292b46dd6bfec684c6dc4879e1e", + "regex": "(?i)^https?\\:\\/\\/robuxserver555\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c7bd163a77fdb3b3be7d31e34091f545a491812cc9eb9d57f7f18bf6e816ce9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+attachment[\\/\\\\]+10711740[\\/\\\\]+InCJojXfDXLchQip3d2EKV1is" + }, + { + "hash": "bc0dfeacc5d7085c54157580913b5195877e9066506077d98bac5f4bb2ef3b03", + "regex": "." + }, + { + "hash": "f7e282506225c35ad9a206499376e2ce68f416f131c1e51f7da098aab181343a", + "regex": "." + }, + { + "hash": "1d9ec5c99a1950d1013d96cbc4d8f4146bfc525b965c78e65d8d22198a97eb46", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Instagram\\-Login\\-Page" + }, + { + "hash": "7943b7e184ad69dca8fc59c04d7e7cea68466a30ad78b9a86adde8f8317b7eca", + "regex": "(?i)^https?\\:\\/\\/www\\.apsrackspace\\.dns05\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "357ac09243b81d832372f172ca3001ef88271263ef5e71978834996bff0d45f5", + "regex": "(?i)^https?\\:\\/\\/robuxserver\\-121\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8caa7f7527feaab85918e3ff0bbcc7c4c5b006f074e96413db3152405cb0d49", + "regex": "(?i)^https?\\:\\/\\/robuxserver\\-121\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2128768d75ced7d54f2408f7421ca036f3676752619226fecbeabfa7e62cacf", + "regex": "(?i)^https?\\:\\/\\/robuxserver\\-121\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6164c21bca96b039d618454c7970e0ba1d34cea96eee0c8a797f657645b0dcad", + "regex": "(?i)^https?\\:\\/\\/robuxserver\\-121\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c34899188507243521338b51663733505d8ff7a14ea86afdd579fe1d3006e3d", + "regex": "(?i)^https?\\:\\/\\/robuxserver\\-121\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "befa3602e4d14f393164bde34c697f2bf1baf9c99194c276ba46257105d04893", + "regex": "(?i)^https?\\:\\/\\/robuxserver\\-121\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8474f5adf7eec65e7ac2c835de2f552261d86af61853f62ce89034c87717f0db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Clone\\-Facebook\\-Project" + }, + { + "hash": "f09b88a02c8c28c8d4289a7501e6f5a72722bb022ec066c092dcb893e796902c", + "regex": "." + }, + { + "hash": "43ee140465650fb99d0f546173a334c8d0851078a8e8523017559c6396f829e7", + "regex": "." + }, + { + "hash": "62305121722a44b0cfc0f3fcc6bb611e75447132e763362c44087bed5d0367a7", + "regex": "." + }, + { + "hash": "4d17f587bfda69e566f69c87b7eaeeb55b669126dee7066d7805a59c3cb305af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mail\\.com" + }, + { + "hash": "a851761172586be9d6bc300cafc777958dd568836e94ac249f10c7e779013958", + "regex": "." + }, + { + "hash": "99bce7ca1e04323bf495e0713a9d534e74b34e53e5bb1028c2f19abac89ecdcc", + "regex": "." + }, + { + "hash": "4bab4195313088359cc3cb6589c2291ddf87396a8f5e194160d31c4fe3322026", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix(?:[\\/\\\\]+|$)" + }, + { + "hash": "7abe39da8bc0e76870959802479dde1f51bcb2c277d2e12163735225bb9cc687", + "regex": "(?i)^https?\\:\\/\\/robuxlive776\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "412ddc4bbe3f2a7f3fd32c457823dcb84105ed1f36ecb03dce5fd892ab739449", + "regex": "(?i)^https?\\:\\/\\/robuxlive776\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca282e9c5cd6849c12b7b7423fc7d718b9ad6725bb72eb8347278b1637d2d9ec", + "regex": "(?i)^https?\\:\\/\\/robuxlive776\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f620f3215c26f703d5e1f05869475743151ed3a50d1db5248aa735de74d5e43c", + "regex": "(?i)^https?\\:\\/\\/robuxlive776\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "172ea77f0148d56412a720aeb8100a1747d33e9eda86a720278b7a4c0926fd9a", + "regex": "(?i)^https?\\:\\/\\/robuxlive776\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57007c193b7eafacaf0f653a2b32d7c458306bf6f5b2221b92df589951172ff9", + "regex": "(?i)^https?\\:\\/\\/robuxlive776\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "360ad1ccf4daf97883977c79c25f541d23ea7405663659908dadd24c4714f3a5", + "regex": "(?i)^https?\\:\\/\\/robuxlive776\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59eee074928a5fa8613700e46b13d53baed5a8fc9d0c9232dba6aa9109df5ed7", + "regex": "(?i)^https?\\:\\/\\/robuxlive776\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dbcfd92abbb0e2b88e2801af14feb4bd347f8eb96d2d5bf7e5d1052203380b2", + "regex": "(?i)^https?\\:\\/\\/robuxlive776\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a5f9065c6492cfe807cb1fb227c881702808fb64a3321848e447c881b13107b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b\\.html$" + }, + { + "hash": "7b2a66d312f801fea86d2102fbeae5651225dd9d50fa83dac38bd7332a0dc60a", + "regex": "." + }, + { + "hash": "a7d73d0a400efd82a3ad164e2dbed932c34859077ce8305f25167323d05b5d0d", + "regex": "." + }, + { + "hash": "32e53470ddad096a0d2b041614449f21db81544c2f659555c8a8bf0f6bb6010d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Clone" + }, + { + "hash": "1a5321a81e348ce8d42e55647089e617f49194ff2ad8c58ee8ad89a1c63c0c11", + "regex": "(?i)^https?\\:\\/\\/gidusyfhgsd7ify493yr0e9s8yfh78sd9\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae9c0bc0c516a924c949921e007fbfe6222e194338565e4298501140961dcf5a", + "regex": "." + }, + { + "hash": "4a5518a9b2ed12c446a736030a7e88adf5e07ed97ea6aaf16c37f39194836ec4", + "regex": "." + }, + { + "hash": "33fbc48b2cc6dcb46243b3f821af02c26603557b3301199edccee44354373a2b", + "regex": "(?i)^https?\\:\\/\\/decalsforrobloxstudio\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebd61c824a1b506adaf3033ee9203e3ba46e2aadeb29d83703262f5631e20508", + "regex": "(?i)^https?\\:\\/\\/decalsforrobloxstudio\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06eda1c31dbd7bf21fa04cd5de4ea4978dd2524058e712beecbc35c77eac6269", + "regex": "(?i)^https?\\:\\/\\/decalsforrobloxstudio\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb59dc6efbe0224665a169d98e4da8c480ea63052efbd9faf2cbb4aeb360bf89", + "regex": "(?i)^https?\\:\\/\\/decalsforrobloxstudio\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7dfbd486fa581109e49dacf52e6946318271b25bf8609a6cc892a4161065618", + "regex": "(?i)^https?\\:\\/\\/decalsforrobloxstudio\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "692132a4c12f934cc575df4b0002e5b7c38d3bcb78a673d502b45e7c04bbf641", + "regex": "(?i)^https?\\:\\/\\/decalsforrobloxstudio\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e4a2b8b3397d8d8ed938bda3c53d2e429363d95f2fad10ae82cfbbb87459bd3", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxfreefullversion\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "887ab31b4177d8be90e96949fe3b60cab74dc2c6104c6e0dec97350909ac1c82", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxfreefullversion\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef75d15f5acc200e86e7992ca80b39b863fb573164679e9b279864c124928dd9", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxfreefullversion\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64d1377fe740c7f1e8f39c7e38607fd1dc780817781e3359793b7312351bd023", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxfreefullversion\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec6469da04e48e3f3351ebc7c2211f8656c9cdb3d251e7a1ffc7078dbc2ee365", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxfreefullversion\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb56558987bd537db8ab983c004e46e1d48eb42f25938a55d2b669660c4c695c", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxfreefullversion\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ce2f5c5c8cb915d59c4abaecdb8674bcd07b9170a186a3ee7586f989bc6ffb1", + "regex": "(?i)^https?\\:\\/\\/downloadrobloxfreefullversion\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb37b211b376617b249a60397a3739823146c65c2b1a6c41ff478319229c4993", + "regex": "." + }, + { + "hash": "78c73abf83b5d70a1847cee83cb19ae5c165f537af4ed0b6466c1330fd84e620", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clone\\-nettflix" + }, + { + "hash": "baa09b249024ca535617a6dba0164853e26b8833c0ae48e41ecfe3c0d4b2f4f3", + "regex": "." + }, + { + "hash": "e786c56a428ec3658bf6cd938e4c0d9819d8527cc69b03bfabad4def3285089a", + "regex": "(?i)^https?\\:\\/\\/millenacolchoes\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8ff4ad967fa6a6eba6491ac2d0a20e32a900659361c77178dbf501419ce4139", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7b7204c427933d675754b7fd99709a2aef5287e4e80a7c9aeca4a9d74a2bac", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cdd61f4696940648c6f56845f1caa6cf65d1a8fc00e264b6f9fda9001866582", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05d2714f56b7716240888735e64f5d1d8efa47ab4ddb434612a5de1eccfc7910", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fccb9327b61d13d0e5ceb867dd56c55e6840e6581b2f9d5d4a76a01b2f78789", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d66d30f5b0ac1bd7ceb7d2a770e61d2a6ed9f3c896b3e098e9e7f8a048164bf", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dffeb5af9d6a5fd16c9df6d8b0165ed665fbdca5c2abe07eee1c0694b59626d0", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "899edd1ec2cbf2bfdf7f8cf0c4d35e47fea8f816320164de748c03e0694a308c", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96ba4b88dc0ccf1403e507bad0b582bec4dbf1364ccd830e88956c62052b01b8", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d23de2bd95a9b043b2e58df579bca9ede3ee406df27426d328730400bc2943f3", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "803000413e1f27609c5b6289e93a10a7dc99f8ae959873a18e847c56e91cb1d2", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb7cb328c55df8d33eed29de99feedb8497d253aa5276db18c3888321e82cf3a", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0526bad4d77f822a00f2864ff918c3145217fe66e1c624ade6c0d6b15e6f22a0", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "890346d3215c1a5076cce89622733b820d50138d1beb89af478eb93011644243", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4bb7556c5ee7ac620f72aa8605be2b3bef60aec568d7230abdf72b5e18ed434", + "regex": "(?i)^https?\\:\\/\\/jogosdeconstruirmansaocompiscinanorob\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e5588f779c928ef65e82695b14a415aa6762b049f18ec48da649e741413bfa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netfilx\\-Clone" + }, + { + "hash": "be28b5dfe15de3a304f46a37a15664dd5837041d2ddc1146d184817e9712f3a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Fake\\-login" + }, + { + "hash": "3ec9913483f9a1643f6b82f18fa243af475b1fa60a7b718c3d6a77655979bfef", + "regex": "." + }, + { + "hash": "bea17793a0a93b50b5506889505e7052db38792e2248bddb217f9c98bf7959e9", + "regex": "." + }, + { + "hash": "dc6aa76103512ee3cf509693a2dcb15588dd51353fa10b008a42adbbd16b1295", + "regex": "." + }, + { + "hash": "7eeefd38a2a5cf4f2c42685905c72f3ef9b4d8784374630656672f7b02017b3d", + "regex": "(?i)^https?\\:\\/\\/masterrobuux21\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab88c1bfb2fb03c0ef2f24f21877a556aa2e6985592cb921b5ce3e20a8c03a36", + "regex": "(?i)^https?\\:\\/\\/masterrobuux21\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5eb41d55282334f94735079627943a2a8abdf31f9bda2f747d2ec8998a2e45e1", + "regex": "(?i)^https?\\:\\/\\/masterrobuux21\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f25140e5638408101d057097f41de6bd1e0d851bf43b62a56b5c0efc43a30f60", + "regex": "(?i)^https?\\:\\/\\/masterrobuux21\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc7f76caac610d888a3f042f58f32b57ab885b201022b7697e984ce3c285e439", + "regex": "(?i)^https?\\:\\/\\/masterrobuux21\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe0e3882f968e67909a54fd5321c70fb5b5e5d4e0fa8a05afbe47181943f8896", + "regex": "(?i)^https?\\:\\/\\/masterrobuux21\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00b219e01b47e5ebf657f74f73712a0ca69aac6a0bd77d63141e4833515d166e", + "regex": "(?i)^https?\\:\\/\\/masterrobuux21\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd2b852380b911b8b0edaebb316ec0cb0a34afe51d10c9582aa33d7f2101bbb2", + "regex": "(?i)^https?\\:\\/\\/masterrobuux21\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d71623dd31c06e5600a6028e1af4afed7e3144a9666c9089bf4ba7b492019291", + "regex": "(?i)^https?\\:\\/\\/masterrobuux21\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "331147cce4e3df183a8b107b8544f03a2bae4a125115e12d402da73834866e02", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c6b4defd36a9e23ba77315ec2e0c72721b86766a7dc2a48842af786b233a28", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebc18bc065213c2db81412dea5fb2d1db23f710b74b24844c502278c7bf14fd4", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0d4631d2b387831afca73989e6f4a8f15c8569911e81ca2a1093f91d3898847", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09e2d3f33663f28050970ce05df515b45fdaf585a363e4bd30f9bf8f194e9c0b", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd07e4b6fb644a7d2df6f7db19ba6f768554987517f4fd018608c11fec40765c", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b671686168d187ccda234a8d5f61f10aa4b241b8b4a8c59a613cf36cba6e81c", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2360ec5b8f2a6fb0a157015d4e2f57159e2170d02f4f4e049ab1eb393c65ce2e", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1661fcd52562000cbd79161e3c8e07a8a80eff02999be01bdc2e9ea14a15ff7", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f60eace142593641ba28227f4c7d40316c77d749d95db01d0c162f20cc04a0b", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51a8233222562288ddaf6481709aaef1f59d68efeb8bdfa158e809da8263025d", + "regex": "(?i)^https?\\:\\/\\/rblx800kgowin\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e92d058beec3d33707cc9c32ec1878b0416020a227b9d814c8212e42cf9cbd8", + "regex": "(?i)^https?\\:\\/\\/rblx300kgowin\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eece011eeef9eb032f11d4626fe302e6aa16de2319bb1dcacb7790d8beb71cf4", + "regex": "(?i)^https?\\:\\/\\/rblx300kgowin\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79247f2ffea54d43b6e11ae26798999e6a17fc8088af94cc52045b7fb13d01d6", + "regex": "(?i)^https?\\:\\/\\/rblx300kgowin\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b41da84bef8b50e1b3d19713a839523caffcbe6e76e809a623659d5a1ee1825f", + "regex": "(?i)^https?\\:\\/\\/rblx600kgowin\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21170500a7d3673f4f41e02624648b132285eaa75324ebbc473eee0457639615", + "regex": "(?i)^https?\\:\\/\\/rblx600kgowin\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c03ec5d85d7104dbe810fa50d5549ab12c94ca1803efa05e13b773d3f7f1052", + "regex": "(?i)^https?\\:\\/\\/rblx600kgowin\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fea18dff9e1fa3df861832486cc79e683bf6189b27cadfd7606f1914e0336b9", + "regex": "(?i)^https?\\:\\/\\/rblx600kgowin\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "222a9ab54a58b5917839b01b40fb52fc8d53335b01fc788aca33fa28e0544fe5", + "regex": "(?i)^https?\\:\\/\\/rblx600kgowin\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1a3d2b00a769a2b52a33cd81823baeda16194b50e61d5f62daa5ffb601da1a6", + "regex": "(?i)^https?\\:\\/\\/rblx600kgowin\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5577998ec41057b60dd29b327525453189d5b9843d0dbec05ab551718495b5b6", + "regex": "(?i)^https?\\:\\/\\/rblx600kgowin\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35716cf0cd176cab5e27c4d511c72cd6ea7d4cde43865832c43bbfd86ecd0506", + "regex": "." + }, + { + "hash": "99628fb78ff55936a59b0b36fd94483f2d708957f5e1b259948d3950f4aad609", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+60z8l6y7xbrwje1x0bfm\\-b5678c1d5v0i2bw4qkwlmj1wvqpaz3628p1k90x2\\-7bbtpc5rpq54rl74hu95rxkfnirqddcdzuuri17h\\.html" + }, + { + "hash": "ce3a2d2b13e3cfbf3db9297e231c19fa99f43b852a923632e6056f3376cad42f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\-landing\\-page" + }, + { + "hash": "249359aa15b3fdfbc4a56ac0e1a3dc78fc6cdf8fa15e4ac19d5081c6629acafc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+click\\?d\\=Qmt4fFV76MtY9PgiBJMQZjydpOY2lM8zVHAtWPrhtc4YOymjJYwVZV_FLwWZPhAFUNF4kJNEcs1fzz58r\\-fE2PLV8OX7iNQww_CPvi1M0QMCgbs3nUTokHTAuqLcld6ItD_yHokof\\-\\-ykr8982UWb4wQfW5fWTGpuUqucX54Cnanmz39bTWxltHL89bxQOXcoQMFSpu9\\-7Stw7ODQm_5PWjyBl41t2BhhTG4ERmpXssB0$" + }, + { + "hash": "6340279aadb1d10d4130c1e45c775fe354351fb5ddcccf64ad534da8cf2d6652", + "regex": "." + }, + { + "hash": "8bc2aed590508d7d8858381494bacf2253552e7e3e0d0e2cfd033794cb3dc8a4", + "regex": "." + }, + { + "hash": "a6f9368b7c7c73b71531548772cbeb08361704b2d2b41af39e592a8a79133759", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflixold" + }, + { + "hash": "d075d9704e63812a729c4f6089b381c638426afbd0564463f9d68fd98bd55474", + "regex": "." + }, + { + "hash": "afc952a3592e78ceae95aa55ea18d1facb403de5b29b2b1331c13cf5aaf0c5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cloneinstagram" + }, + { + "hash": "b02bd4c60b7076d8aeb828291407715528ddf611e7f60fba380cad5cecbeed97", + "regex": "." + }, + { + "hash": "698027b29b34158ee4569de1aa2628c02f2614b7f4df5e1c6bdeff8e3bd8654e", + "regex": "(?i)^https?\\:\\/\\/healthyeatingforteenagersar\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8fc21c281e85af0a2dbcb50db313fac10f19c67a736027e8b5e98978cdce170", + "regex": "(?i)^https?\\:\\/\\/healthyeatingforteenagersar\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42fe3493820577774921e1061ad353dfbab5a0a943a566abbaf53525aced2fce", + "regex": "(?i)^https?\\:\\/\\/healthyeatingforteenagersar\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeb42e8c62fe2701f34415cfb163a76ab8bb2a57758b2f1bc8072c8fa2a9dbc8", + "regex": "(?i)^https?\\:\\/\\/healthyeatingforteenagersar\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e554535b551ab4e218a352f450fc577f6d1cd49340f2eb794de37f922b645dca", + "regex": "(?i)^https?\\:\\/\\/healthyeatingforteenagersar\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cdbba578893c2ba43345981560992d369192599304497dbfee6cc2f8cadc250", + "regex": "(?i)^https?\\:\\/\\/healthyeatingforteenagersar\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df70e1424fe73bde1028a6436875d1bfccbb68f3d360b6b7faf0f368894dea1a", + "regex": "(?i)^https?\\:\\/\\/healthyeatingforteenagersar\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3436294ef97b3d3f23938215fc65dc360c0410305c4517dff0a888a57e74191", + "regex": "(?i)^https?\\:\\/\\/fashionclosestoyourheart\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9efa26f24549e098b4e3e0a808f36bf871eca2f54ddd08609faf1be4e0a7a42", + "regex": "(?i)^https?\\:\\/\\/fashionclosestoyourheart\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a3cd2da0f58f502594e6efc067cacdf7af68428b971e30f79c113e567818edc", + "regex": "(?i)^https?\\:\\/\\/fashionclosestoyourheart\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb37cffcc447b35a19b762029cc20be849dcb5153a5dd0fa58fd4b7d75242af0", + "regex": "(?i)^https?\\:\\/\\/fashionclosestoyourheart\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e22c64a6bcc3270fa6adb33d95d5cf6cc8452d6814e8aea0cff9a49ae97552e", + "regex": "(?i)^https?\\:\\/\\/fashionclosestoyourheart\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c530d1733b37ad545324bb98bc18c6d046ae5ddeb5ecc37bf2b9d8b63a3944e5", + "regex": "(?i)^https?\\:\\/\\/fashionclosestoyourheart\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eaf7166dd5d61dc177903cc346245e0050407930a55712acbd52b89446f0f2cd", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-bhagam\\-bhag\\-1956\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff5e0f9864e815bbc3caac45ef9a2e49783a101a177c9672a6f85e2675df0ce4", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-bhagam\\-bhag\\-1956\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "165fd12fdf0ea3850ccc207c1d297320eadf6e59166d1d63ba20417b39a3b890", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-bhagam\\-bhag\\-1956\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a640ce878fdb72f358241678be1672945f8a0e389923ba7128490e933b868914", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-bhagam\\-bhag\\-1956\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "165fa5dd74533d4127a9d6228285061248c8d641bc601134f2f3db24b212503c", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-bhagam\\-bhag\\-1956\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c61f41a18587488eb5cf0a89de84c32a26360c58d10685b8b43eb92e7ac07d6", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-bhagam\\-bhag\\-1956\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5776636406f38e04fe5c6623729f2566d7522cf6e82d82c6545e02b3646a98e4", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-bhagam\\-bhag\\-1956\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "201590d63198a68d7b954f2635265f033e7d2c828d74ba74d998fa6c554a0eb6", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-bhagam\\-bhag\\-1956\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a76035cc21e424187ddd4a9c2a54b152af8faffa53bdeaadcd929e2620d0bb5", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c3b183cf33b1a08e6eb6916e352d078f2565984b49efc8853a36227800fcaa1", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf152bd9968b5313fdebcefdcd08c631a9883a68d0627112106efb76f891d669", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ac72efb4e7e44cffb4c719be852a0da3092d354976e996dd5a3149670521f8d", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4200d3ec8e7be934669d3a60753ad74fdb03aab0d39bdefc3bc753a6605f5d1", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a66ecfbaed89fdef698d407d9b32c4b1e808b1494d6fc6bedd6c33c169d87219", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1ab4d9d3255af3035de94dedb3a18068d56e24db16ec62c5c79e0eda0d47089", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cb46b9b8445f234359678d12ead38ad3a1020204fb22f89bc6e88a97f530b4b", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "165b0063085f3852bae112847bc1277364b2b8d0d5ad10945a3dd4024ee4e516", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fb59d301238f865f3fbc0b4e321a178c1d381acb18bf25be5f4e3f1c874858a", + "regex": "(?i)^https?\\:\\/\\/jogosdearmasedesobreviverroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90298a06d270ac5819b7970a643de8a6bad0c00fb550de6c2b3e4718491d8ca8", + "regex": "(?i)^https?\\:\\/\\/comojogaremserverdorobloxemuerdo\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "277ef222ad6e90adb17c1c3cca0c2804dd9afd0ad7693d2862d75f5e33fedc67", + "regex": "(?i)^https?\\:\\/\\/comojogaremserverdorobloxemuerdo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14b8b467e0bf2446fcd7b8dd43b9f9c62a688596fd7d1fb721e75824ea623f9b", + "regex": "(?i)^https?\\:\\/\\/comojogaremserverdorobloxemuerdo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4654d2161bcb2ae649cd0971b32a06d616deae35ae6ebef1485a6a0fa6674f63", + "regex": "(?i)^https?\\:\\/\\/comojogaremserverdorobloxemuerdo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b40f0de18bb8524c575cb1cfcadc7eaa9fce9af638dab2ef03e166f975a73cc", + "regex": "(?i)^https?\\:\\/\\/comojogaremserverdorobloxemuerdo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ff2bc54fdf736283adf59e1b53e789691cd958786360e7c2ee24b3c732f0ef6", + "regex": "(?i)^https?\\:\\/\\/comojogaremserverdorobloxemuerdo\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9c44902bfb5e22ebc0f52192fd61b2f2b52239ee921af47bc96e670e10f8629", + "regex": "(?i)^https?\\:\\/\\/comojogaremserverdorobloxemuerdo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b1a52512866bbe556e63b85d9e0310dd07c78fe9ce7b13254574f5eed3acf55", + "regex": "(?i)^https?\\:\\/\\/comojogaremserverdorobloxemuerdo\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64d1fbd69fd354cf8cdcdf2f975ff7d0bfa7b79ee41af8eade54cfd190e10e11", + "regex": "(?i)^https?\\:\\/\\/comojogaremserverdorobloxemuerdo\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f55eec27209d0de544967d9b3daed73b883e9e1c51269d8130fb0f8aad2c860", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e86056cc9566781890bf185dc4d8e529eadf60d4e6f5e0c96f8056e29d30271", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4751385c2115d8b73528bda6620933d42493f36badcb388445042b32648fba3c", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "319eeec07f7ecb335b40763bfe00fd4711fd0a3668d8387a989f51cfeab4b1a7", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96906c45c8fdea0283ce17b7d90850fd4e730e8180623bf2f74f291ff53613c8", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec63cd5c9366eca142a52cc319d03fa9b67c6a2fb22d189d58fad02e19fea9bd", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90d122bdd80459b23f14e8e0ca60cbccfae34a71fcf58e3cfbcaeafe12136bc9", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05c571af6e36039b088d506ea8fc421b2f1d6150603df5f6a9469c4d9edd8e4b", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "014bef63083d929d04d2a0449fad732cc0a3758fe9a6d35735f02cbef23b925a", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d3f4ca2d621e428037223521e818fe5cd7ec6f997f42d353ef629851e908df2", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cd3f52c789e891c4404237ac22a046a7efbc1b79aacdc390c6b82f943765107", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49cf54d325281b0945720dbe9b16cd91c283475a40b3175265f01d82c9ee957f", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ce0bcd19e84022418d35e5caf9f6d378fd8f1c1f4e8f2cd8c8c93ee71ad167a", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30eab2e7eecb396764272bf6bcef3b7a2ff22b3460dcd0f0569254cad804b60f", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "babfc118bfd01b0d8cd87658f925788e56c3eb569fbdfa1e3deead6a022fb1d7", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b972aabef7678b59aa09c46f4398a4fe5999f6264123f4b01faa49d78bcadb77", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7d4604709f9e284b7d581eb9ca5fc4077daeb54edf95bc29aed8605b594f87a", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8ad1ff567d893401b7fbcec3876fac9a7d7c29d29b9ae127f76a66c5fc2f317", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5b089b082299e15d33a8e9eb54d153b52e56a59f3a8d896d679d43a7ee06086", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27efcca2a37bbf90865ecc6b63852bc266b6ce7b49b5a4fef19f152ec8709fda", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8bbd0fea802d3883b89114202080cb345231ed8374fece16e249511f4b6883c", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5d5144807c070b95fe534e0a26dbc8ef796b5d1967322e47bd9a37bf1d211891", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6eb1806a323a929a43d724dad635cf8b05a9eb3d89be28a34e1d42cc2b53ee3", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4be29a65469cb5e0c0220a6eb6396cefd43fa925190d7cab46f558266b268dd", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3690e818b6eea3de9d76c643e2d4d5073f2baca6dedb0c6024ff7cdcc8cdc374", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6e9ec7ddf688a3edbed13ac1c3cd168132b58f3829a8fa6acb7b326a7b738fa", + "regex": "(?i)^https?\\:\\/\\/roupadehackerdoroblox\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef354b27b147bc494aeecfc583f7c4fcacbb18058cd132ff24911a98a3293520", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-victoria\\-no\\-203\\-1972\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73644ac630e210a0c9e365812e68a21ff9a6264c4e8e63c176ade0044836c035", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-victoria\\-no\\-203\\-1972\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d36b0df5130909835ac3df411b011fae1dc5e25e0d329c031a3da0b45ac6f99d", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-victoria\\-no\\-203\\-1972\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2855d4f3f67dee23618622a43b2887cdb1138fef40f1fcf7d6d41e70149be05e", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-victoria\\-no\\-203\\-1972\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5534aad7cf738792ec86b6f34cb601f7d5f8466eea6b949ae757390720257bd8", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-victoria\\-no\\-203\\-1972\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73f6be5bcdd54ff3743a5e6f8ab5bcc37cac46e7903aeb16c8fe74005725f80f", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-victoria\\-no\\-203\\-1972\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "614591e35cb6fc13afc4e4bd3a7485d60ef42968f185cbb0210983b37ba3a9a5", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-victoria\\-no\\-203\\-1972\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5b0d60b824dc39e721bebe23694f2eda4a94c11f2e1f3d5f18169a531594910", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-victoria\\-no\\-203\\-1972\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "addcd222596d5e85891151fb21896e4ce42b8f1db0945c344adac96ac292bed8", + "regex": "(?i)^https?\\:\\/\\/hindi\\-movie\\-victoria\\-no\\-203\\-1972\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fba5477bc3e22cf09515477e79dc38aef3986cf937a6294264ce8ac9cedb863", + "regex": "." + }, + { + "hash": "42e82d6cb196dc5ab6c62280cbfaddbe1bf0194bcbb988950e3c450e66bafd62", + "regex": "." + }, + { + "hash": "4ba4ee84dcfd6e47628e2692c89ee89fbe80ae6c981441d92cad440cdb0934d7", + "regex": "." + }, + { + "hash": "1409964473b73953efdf1d739407d7fb1a4fad00fd24c819fd2c89ce4b65dd5b", + "regex": "." + }, + { + "hash": "66ee0a68406772a6d842ea62f750649dfe74ee3991adbf6718c5bc1830c67c5f", + "regex": "." + }, + { + "hash": "068e75675eca8c494775bd471b31a894908501657c82e85811473e491837a740", + "regex": "." + }, + { + "hash": "b9ebc583d31daf9902e3efb25213f79fb070fbf25f496c3852bf12d9f4bb83c9", + "regex": "." + }, + { + "hash": "c8e4ef651342b3454d00f495ca2fab1fcedbcdb30261381d71cc38520df2cfb8", + "regex": "." + }, + { + "hash": "e1e2bb76b544afc1123a1b410ce0edcfdc83d6d48ab4f84d5f497c69768d3da4", + "regex": "." + }, + { + "hash": "cc5a83688e4bacde85fac5b20ca05820840fce088421ba24806e796054efd3c7", + "regex": "." + }, + { + "hash": "555d4eef117be5ea44fdc34d4d5045d9c6dd4ecf6b62837e667b9feacbb36575", + "regex": "." + }, + { + "hash": "dcc6ab835d4b63e76fdaea526bef266d3b90a2c21775c434aed688ce708c3f7a", + "regex": "." + }, + { + "hash": "93abd0eac8211620e3391a5a7f28421947e57c0f05d9129bebae0a332ad5d5b3", + "regex": "." + }, + { + "hash": "11a71522d5c74393fbe84688185ce51de926b9efb94d5e3632892f3e3963ee40", + "regex": "(?i)^https?\\:\\/\\/getfreeelite\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c1ba009cbb0fbdb324be0468c5d5e2f762b1a71ffa0bbf9a0b09e850766672", + "regex": "(?i)^https?\\:\\/\\/getfreeelite\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a87eaa299450b8d5195fa5c5f129eb8a855246dfe3e4dff85527748278f0580", + "regex": "(?i)^https?\\:\\/\\/getfreeelite\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7f4df7a817691b0d40aae37d9068ee70598cee23745eea4696742c04a0a3584", + "regex": "(?i)^https?\\:\\/\\/getfreeelite\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "406b117477d76489769caccd195c530aba73488ed14f8b7eb8ea20d0fd49ca56", + "regex": "(?i)^https?\\:\\/\\/getfreeelite\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "499df6755fc61a115766d7308930b76a129f5b96f042873132867ddd31859bc7", + "regex": "(?i)^https?\\:\\/\\/getfreeelite\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b0cd183fec26dba195c65811937e16ee45131be6c5c9d41a9e55dac5b10fd3b", + "regex": "(?i)^https?\\:\\/\\/getfreeelite\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55b0c462d682b406a6ed77305ec4f4c21d8bb743c15f5d9bf3d5e226b1a096b4", + "regex": "(?i)^https?\\:\\/\\/getfreeelite\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "532383529a9d23eec7be7d427285d1d0ae831e2e5b2105ae651fd4bfc74c1065", + "regex": "(?i)^https?\\:\\/\\/petitrouageroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03f2cd9986c60d5e015ccf5b18fa5e50d7885a00a87d6519f87b7b81d8b6b7e8", + "regex": "(?i)^https?\\:\\/\\/petitrouageroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bce507d703621acd79a8d451779d87f12bc5576623e786487002884ac08882d", + "regex": "(?i)^https?\\:\\/\\/petitrouageroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "656ce837a10056a926a5ce3942e7e152fead3150ac8fdc9686beffddb06627c6", + "regex": "(?i)^https?\\:\\/\\/petitrouageroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85d91d13d884fcf0b5e3971c8a85845591684d1c5b5a59e353766f89b766bdc1", + "regex": "(?i)^https?\\:\\/\\/petitrouageroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94312b824f2f9a97adde629026c8f1f4e51c17e4edc03be76f34d883b8103738", + "regex": "(?i)^https?\\:\\/\\/petitrouageroblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f315d9e25eaf2bcf90193e3f0f3600ab58b020c659cfecb0663e0401c48802cd", + "regex": "(?i)^https?\\:\\/\\/commentdevenire2dans\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3aafb56121f2cd32515c4ebc5f194d7f13e13c20196505691fc845d0082b1216", + "regex": "(?i)^https?\\:\\/\\/commentdevenire2dans\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42a7f442c8545deb1e05f6b23a283201711e8c8126d1da110af8f0a454002e6c", + "regex": "(?i)^https?\\:\\/\\/commentdevenire2dans\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26ccb57019c6cd9c06e0733f4f864d2802a8a59253a4c7d1e480ed0e3fc63268", + "regex": "(?i)^https?\\:\\/\\/commentdevenire2dans\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd7d45147a8bd4ebcb92ddad4b7060c754ac3d9a6ec54bd29624f606467782c4", + "regex": "(?i)^https?\\:\\/\\/commentdevenire2dans\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68213c7781d3c1935a685ffe508c57927a556409b3316faf11c11fa48c7c11d3", + "regex": "(?i)^https?\\:\\/\\/commentdevenire2dans\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc4d4a6c06790f05f2a8de945ccc9f0160e6b24f8af726e66defd201a50d171f", + "regex": "(?i)^https?\\:\\/\\/onjoueraroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b061524e740a2ebf33f180e4a7fccd3f0c5b35773e14bca5d92415c34df2b35", + "regex": "(?i)^https?\\:\\/\\/onjoueraroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "41feb59a4c84cabde916523e9163bc638336d757fa4eed4c3265be00a76df00e", + "regex": "(?i)^https?\\:\\/\\/onjoueraroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee555103dcbe31fbe3f0b49cf673d98aee6e9e23b1003026ec1618474ce2ff84", + "regex": "(?i)^https?\\:\\/\\/onjoueraroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aabcd4b11ca41156ee8562c418e553fd5c44a37878264099abf9471c14ae5d50", + "regex": "(?i)^https?\\:\\/\\/onjoueraroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d20967a09ebd62f219fa86aebf99890cea5d552976f0a4673d36786d12fb4a06", + "regex": "(?i)^https?\\:\\/\\/onjoueraroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e092f5a967457718ab7b9a19fd2a8caac6f88f47502fd92a2986d2a722a76fdb", + "regex": "(?i)^https?\\:\\/\\/onjoueraroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfc9e7219d5ebadd2bd781aef006a4f3bfd3ce0711946825eaa59c8576ec4643", + "regex": "(?i)^https?\\:\\/\\/onjoueraroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef1bf28e01d945a6e081e760198931499529bfca6b5a9c61a52b5d016c205d89", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a2a7cd5943cbdaa490980f3ccfe201d675bd2a33fe06d2241bc1e310707bf0d", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9689b90fe339dd7a452b1a35b3e9c30650aafefb45e79fbaa0744ec9e6f9eed0", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2807181e5d438d51cc720a6c6dda0dc35aabe7f22ef6f07fda2dd629dac1222", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e7220394121428ae50170295e22fff5f59ec3493e8eb8727358ba45da7a6eb7", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d2b456fba0f0d4c5cbc9aa3ab233a515f9ff2ee40e43d2727dd4704d716bb05", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f0ebf79f58af4b1db46fc58b58ba9b5b5f0a4d80d74f897c9afa3f5b05baa44", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1de5d0d563c733461535f8733116f2e7491b88f56c2806759035b2f053e04242", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8c4d048bb7ea8bc7bd28cae483f204ed5384a91c1241b5b4dd2286be731710d", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a66dc117444730c822b3a8b37cb34fcde06475ea90eaef8679ef54fe86ac90fd", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "348cf71687f605c34bbfaa16c3583c60bf77da9b50efb9da67d2e1fcf5fba942", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90c527d98b0b99c44b5b20c5dfdc32f1960fe7712444a3ec3d74e6783bc1264f", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b01dae9581e520721a6da2a130459088f9be6f82c5187132bbc8e88a5368cc86", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e976030ca492167a396f0790c3c4d699a13a807826ca4c8abcc4df6e3afdc21", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34f5a189b202126357cdf82964387ba0cd8913933e17ce14686fa7d46005c300", + "regex": "(?i)^https?\\:\\/\\/unsubscribetoroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25c2a708ce1e32136e7305bf85e58a83782b3afbde7cd887d8165a55de058bc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auth[\\/\\\\]+login" + }, + { + "hash": "25c2a708ce1e32136e7305bf85e58a83782b3afbde7cd887d8165a55de058bc8", + "regex": "(?i)^https?\\:\\/\\/getdoc\\-bi\\-env\\.ap\\-southeast\\-1\\.elasticbeanstalk\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "654871e434edd1e5b607fe8a028ca0f10e0a2bcbedbfe3103efbd758688fc25a", + "regex": "(?i)^https?\\:\\/\\/hindi\\-guitar\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63d681c8a2d8dfa62ec8e2672a52533e664bb17bf0b1c440a3775c06173aa4e7", + "regex": "(?i)^https?\\:\\/\\/hindi\\-guitar\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea339ecf7a38d78245ed15720d9c0e24732d316d6428688de2834d9f9fcf3ec3", + "regex": "(?i)^https?\\:\\/\\/hindi\\-guitar\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8524a6e4d83997ce08766d8f2782526cb12bcad5545d6788c4fec3230690ffaf", + "regex": "(?i)^https?\\:\\/\\/hindi\\-guitar\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "213af434438cd18ed806d0fd3c5e6c6beb916db6c1bf64b929ea6579f38e5d1d", + "regex": "(?i)^https?\\:\\/\\/hindi\\-guitar\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c6b988dd95d0ac2e6069b76c5a38a345fef53d76a02c2cd4881b579cdecf2b2", + "regex": "(?i)^https?\\:\\/\\/hindi\\-guitar\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63b0b75dfb27ffbbbf6bf53dd3daa4fdb761c14a41819ccd63dd1ee827b4c937", + "regex": "(?i)^https?\\:\\/\\/hindi\\-guitar\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "864dda824e9c8502e3988765db7b0c77d122675e048d7c244e5bd142d0367047", + "regex": "(?i)^https?\\:\\/\\/hindi\\-guitar\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02a8f03a961aab39e6c17288e30b44018c3b06fd4d7d9350dec7fbac40ccde1c", + "regex": "." + }, + { + "hash": "6be93ee97578bbe813c9b1387076542f0e539ec34b8fde8c9ab77dcd1878c33a", + "regex": "(?i)^https?\\:\\/\\/howdancejbilation\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0036daa380dff3627dfc860a1ee451352de2d617380ebaf8d850e1d6ea03de68", + "regex": "(?i)^https?\\:\\/\\/howdancejbilation\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "554c8199aec99a9c835815c93ea67a4d3552d7329a65f477c2eae439a1a7636e", + "regex": "(?i)^https?\\:\\/\\/howdancejbilation\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61d8e86ad67a3880982df009753bcba5ea2af02426227cdd763eec74c193e93b", + "regex": "(?i)^https?\\:\\/\\/howdancejbilation\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "477c2747babdac2b4c3cf40c09ba5edda88932888b7fb5ea9716ea13834526e3", + "regex": "(?i)^https?\\:\\/\\/howdancejbilation\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ae8587055401d093ff0f12ca829949de98e269437349ec447595fc1d49b07a0", + "regex": "(?i)^https?\\:\\/\\/howdancejbilation\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cf24fbda8cd692377c2219261ea19a307b1303497beae014111c38483dd2b7c", + "regex": "(?i)^https?\\:\\/\\/howdancejbilation\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39b81a1c9fcf1ce9995ddf898abc30d2ec381cf97b6ebcd16218ed34364cee33", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b30b370eab1b9dc6f131dbc533436e07c5cd97d549cf7298ba22f2621cdc7728", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd02280ac8d3d8b889c003dda13b5084e4d8978a3481940611309829c7662e33", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce86c7b59413b28e4f22fbcfa47bf9c6ab7eab89cd7e219ed9b728cc1d1a4347", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b4dfb0630a3eee23a733703b74396c69e26d3ef5597af6502cda30d4efdfa40", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6382cc5afb554070981452ef95433b2c9de6cae78adfb70b06973141583b60e8", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a969e8b5dc6f4e0bc05291aa4836b1a6d5a242458643fd30140b29bbabc96f2c", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7830aaea9ac7d9d8cab5b1e3141e83fbc8b5d67f6d07fb7550a54c679f51a3c7", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb7dc9f630ab632b603e81b8b5efe31e0aa4eebce85250c8c5413ebbe19c98b4", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d436de506547612f28ebc41333d0e6e240ce98e8264750482eb604da15ae9d53", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8c6a0a5aeb8d0691c768ec0d35f8cb69bfb26350978a81b8957e4b058694858", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3ed623bf0e6e791eb9c6701988fdbb4a4147848bbd0f9c1857a613615608b29", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7ed9788a1e1dc9a17e2f9258ac41cac1d48d2103b104afc5b3be607a97919dba", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c002b18b92f42b09e8c014b005bdd705945774c980bebe08b682af7bdb888ab", + "regex": "(?i)^https?\\:\\/\\/paintterrainin\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6f7ec8f37999df2b9b647e97b10f3e97cd3d1326928b707b96e6f0a7d1d91f3", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fbd23acb8d68f280fbfe141a08766f181efcf4b9231710284bd0ee6d70d210f", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34699fbb5cafce0dde281d8a19490bf73af25b647fec996d56e8b3ff86220b76", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8bb482416a30babf2f110b9c71b27890ea156a7702c3370ac5a1b1e2bd0f4b0", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b52973317a725ee77d91fb60b8c3533726baca2c437a6f2b54d4d5fa84dbeaa9", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ecee27fb542e06beb000a4c631bf71c05d3f33766fa69fdda3495d895a7481b", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45c4c0555ac888182c1d6c0d50bd0fcbffa840bca3aad42ad45d7d41278a776d", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d9d6305e2140fe3323756466d260f87cddc567d9a506e2b503a0b8df5b207c3", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b320fa7d19f8bcc37060750d5e9fd4f6a54eba6b00836b0c8acd9dc345ead67", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1911e6bdfd61f8a40f5b65ede5422a477e27016680fc248f98e7fc4de14500fa", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d09eeaf243f2decddbe6afb93b91c5d2a7726ce8da8f3b02d157cc5a45677dcf", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12805607fcb481f56751a5e1c8d82077da7ba9d1a66482a6da3a7f90917472ca", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b587829d76f464885dba067e13a801e710bd5382aac842c879381e194cee58e", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "904d23746ff8d7005a2f82f8484762531e3aa0ef92440c649e4ce057c147899a", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c87e50a258e315bcdd5b2e9004a3a09cb20c4db192dd43db193e3de4565c26bf", + "regex": "(?i)^https?\\:\\/\\/commentdansersur\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25d6b91c8311d5d3309b0d3c77c953d1a75cc6b47e68036b8bef2a13583af9dd", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25b6444a307066988675db9d7c610780113516fa4b25044d86b401e72907160c", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b860d442deaa37c1d0343af85388712cc02b03865cbd1df81eed43600f17525a", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7381506e1dca3b29c5137a7b32643d7580ec0e84c5429b708b2d7d08e619ed1e", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a67c7722698c0a3097c70caa199ea2ce279c65d73183bfb0e254bacd9758b34c", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f96e9945e34e9984a3f7c377d5e3e8a8aeb8a71eb4d5466961679717f8e865ff", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d1203c6865a49efda53c06517afe39d42a0df6fb7fb311567c9ede5bd2afb6e", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c52a0e37af98386e5963be50c4abf42b40756892db336214231659df7fadc32", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e4afccb4f2d2a317310ab54263ac2804bc08e2aebee2814941ace042b6c0c92", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cb88da1995683b093b09ec9158320ea2293f75c37eddfbc3eb69e943e515c3a", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24d8ec1c1b2252252474e3e292392a7c711f1712637e9145b9193223a9472ac3", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b35505cd94cac2c7dd8c341c23c63add86d3d53b39c27882205c8a9f18d7a6ad", + "regex": "(?i)^https?\\:\\/\\/animationlab20roblox\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "408b37cb2c6f79bed59e758795359d4bbd1fd4f8977487772d9aa9d2d14543bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+blog[\\/\\\\]+newdocuments\\%20(?:[\\/\\\\]+|$)" + }, + { + "hash": "5293af6595dab902a8b3af4d70df307991cd8eac96df596f52b034b1ea150888", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix\\.github\\.io" + }, + { + "hash": "e8cec4589d92d583d86d2cdcffc659685c8865c687d456c33ea04e7572dca040", + "regex": "." + }, + { + "hash": "a923677443ca981642789591795850feab501dfe9f45ff614b5378c2f8fc8ac6", + "regex": "(?i)^https?\\:\\/\\/adultfasr104\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6f1a893f85324d275fe09b8d7aed321218a81378455645bebd89f374f7b728e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+horealmole[\\/\\\\]+post[\\/\\\\]+real\\-valladolid\\-vs\\-ca\\-osasuna\\-online\\-live\\-stream" + }, + { + "hash": "edd1afff9a8e9302ec4d9cb688955d77f7250ced18709b5b5d063a5f63f9d2c4", + "regex": "(?i)^https?\\:\\/\\/webmail\\-107599\\.square\\.site(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fccbc7db298c6757e749fa4efd3dc6673ea480c809fa00994fb98270d2a3562", + "regex": "(?i)^https?\\:\\/\\/att\\-109933\\.square\\.site(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3efaf76628110a32cbe1c31adf8c9145dfd4365464afe1ac6657afa5ef874e27", + "regex": "(?i)^https?\\:\\/\\/webmail\\-106831\\.square\\.site(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3aeb2df9c78297230048f4debf56e65b8862a2a717c5f24f02b30023842f1aa6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix" + }, + { + "hash": "e2fb810cffc9961291dd638ad4681ec343915b2c0170126db910eabe9b92ae64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2023\\-03\\-21$" + }, + { + "hash": "ce92f5a5d0ca7b597b265f3d8df34b08dff3c319a6f68401ab4cd38f8f2b05c9", + "regex": "." + }, + { + "hash": "42dab3b62aebc5156c30ed06785c278dfa1b353ccd0854e116721395b5a9c604", + "regex": "." + }, + { + "hash": "1516209969e6e330a573a509120e334e2f71012edcb5faaff3282849c48e1a2e", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9190d70fffcba6abbaef430b9d524db1f5c449ee1da162ddd07275c19cb490bd", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a37de9f050d2f559e54c306d98cb84d6189510ea98b8d1c95feff3aba403ecb", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa9078da63a470a8866ecc0bf130ab2e18d068710dfba921742ffedd1414da0e", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "782f2ec131a823b3094680d60aa43d09e281b44e0a64009622767afd7461c204", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fcc335858fec451607c056f8b3b9f7ce6ee982b51fed645452480d621cec418", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ff2e962c782e32651e26736a1d31e62b5f04f1e3b3803088ada123d2278f70c", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a50ce2b890d295342c91ac8820efa4d5dd0688a0928e116168127c34a460e210", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64c80742234f7ae99c0d13e73ffaab7278ab43b6d3c33540aaf8649d7630be0a", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e30b3aaa758c20d7b1a778101357ae329d3d26a8686246c060513c574dfb110", + "regex": "(?i)^https?\\:\\/\\/allysontestes\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56dd8f658310eabe8d89182c25ff902195965635601430421da20264c9b511b5", + "regex": "." + }, + { + "hash": "ec9a7565495cef85712b02cdb351ac046f7436f6126918d40891239006aa615f", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d7c6c0a97c8c474639adc567c53361b20ee1c2ce1a0b6143a9e24a11c26f777", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fa31d89e3d97277d967012a4fa6dccd4e627f159fdcb18afc766af3e0659bef", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b00b9dab7bb863edc99556a331e4c7a5ff8bc605b90d88aff1b8f0d6830136ab", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcc04aab574d08afc2b2115b059a675993a977e46ac5842acf6b3ab636dcc617", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cc5e38087b027848d08af28dd2dd7535c30f494a45dd8f9a1c30c402b016c26", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "295672c9e3195b746d10da40f81e2e04462cd37ea8c23f4c46532a9089812be2", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ed546cc1ce0d0cade5bba8ea2496a84a8ffd49025af410218c777ee0c57251d", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "090d92e57958ecbb43b388d195cdffea78395905a368914ea51b13a6ecaa29ed", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeac0d1fc499561885ff6ba44d176f493cb0817c21214299e7824f073971bc60", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9e94da896b9dc6111b52fac7772697674e53d32c9ac90c188015176f85aa39f", + "regex": "(?i)^https?\\:\\/\\/realhackforrobloxrealcodinghackforrob\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4583f64bfd82635a5129135f690f3fedf11245a222526f7a9ce9cf0abedb68cb", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8c5b9a9f04f97aaf4293ca11bb5004cf1beddb6524155b8b310c6ab18ab18d5", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b52460183ff4fac733a3fcea15e58a296f4ca3926335f4b01280e6979fe6ffd3", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc91b3bda3efa46341a4caef4fab8451bdbca797093136dee0d1b0c685a034b2", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38faf6d2c5f841ffc59366577020103374c10d6bed56c9d381c2138429da96fe", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da1295bc978612f0eff99cb20bac1be6bbfe60299b4f4f1e378cc9d66436c0b8", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "83bdcab189190768dc3b7340db5f27fca63d16e3a152f5a3a94bb2a3b3a0cfe5", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf31e4f6af014f3278d2daca2359c2c8c19cdb9615de021eebe0ad04a7db9658", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4280fcd0889f9241f254873b0269ca241065386d1696d23eab547af3d2cad049", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0a3fa17eb7f38f7a963a1bac74b3409d0dc5d30c18fc08af96ff27324883727", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "339c44c7c536f0f3fafb1c766614c2fe4bf84a92c181020648aed210341f2487", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d17319b7d73c8a7da7a439efeb7d2b906e51a5db33341237448ac5548a1c953", + "regex": "(?i)^https?\\:\\/\\/jogodetestaroavatarroblox\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ee1e9def491ab51982e7c98f449ae2e1519f1f08073d5da7bcbcc5ff9dcb1d1", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9781f8d9833d2399039bd2c8fe04d98e2aa2c274d371cd6a523fe868bff303b", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50646e729cff7227a591431be2ed597db12b1b16097732ffa3ffa6774ba51836", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6ac42c58d3b209fa6c6f8ca1c948a553ec0091f126e297f2872583cc2416c14", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b3f186a02aad5dd1ea9d1a48897854f908d4f8598d24cad140d52096a03f787", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea55a98d9a09d751200fc966ed294c340af9d2774d5060f80917a3a334a79288", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98e1588d641a98cc55defca52d5632de35b783f1ec03c7fe7115d6ed20df3765", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c1ef6b16277b69c75faad6f737b94d6b81d6bd60cdc672d055b6747e26231d4b", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5e40f26096842b9bfe830a226b04e22b3008dc3f87095115709cd4c90bdc328", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2465ddf784bb598120624736099c3248a0aaa3d704838695c50d32a6a2b0a517", + "regex": "(?i)^https?\\:\\/\\/jogosderobloxdemagia\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73b8c70c14da314228b490c55d27ad15d351f76f94bbcbe0bd0ba6e8a351ed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bharat\\-intern\\-netflix" + }, + { + "hash": "63d65a5f5da2441edf6cffdff8a8089e83cdd5226dfda752885a08ae993db402", + "regex": "." + }, + { + "hash": "314ac7d936b1001e737b91f143db7f7a054abf28d8a0f39dba332e1c59a169db", + "regex": "." + }, + { + "hash": "ec1ccb4a9f5bad1d1ea79e9d1cd45dcabb38e48d5eaa347bc1780c8e87270c65", + "regex": "(?i)^https?\\:\\/\\/robloxrmod\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f62e57b123bf321c055e357ccd7687a962a8172511ca7bde452dfed7030de5e7", + "regex": "(?i)^https?\\:\\/\\/cleverclub636\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44ed7b86bd18476ea6f186202ae30c8ac657d3de26e1bac060c6d362642f36b3", + "regex": "(?i)^https?\\:\\/\\/oldever783\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2fdca19da42585e7128a1ca4524e96c857c27c7639d0fee48a23df722dc5591", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb63457678bd5010d40db4729e580393fab64bacdd429981c7b53bd32482b326", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bde6c94ff89a129cf7278d77146bfb0a5d9e70b9daa822b2509cc92a46a1477", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb5fcdc29da6775e04184b71065ee870f718f32953d9084ac2e749dc78300872", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "640eaab9261c04a7bce39889c6094e5c518fe9adc327d9f0e4156f1aae980887", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aad217c3a69f67df4b6bf5aa90a6cbd8dcd19d7206f9b49fab1a2d80c9592a41", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6bf8b1be889d5cd9c198bd540a4686aca6c90e12239b16281a675dd9d21b8a95", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac8bf47e505145d01f2ce632e1bb002f372e0a7b93dc0907672a4b1e2d5fc71d", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87153f75ef76df423a8b4c5a3eb9d4489012a0a1c0689e28f8cf0a39fe425627", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d209b06a7bed0f336a6ccbf555bb5ae331274f1df771eaecb4e872e8b76fa1cb", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d25828dfd641c9bcd08ebaeafe2238b129d7fd42a7443161808c624ba6a0affb", + "regex": "(?i)^https?\\:\\/\\/kanjoyuwu\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c2b79b75736f763d600b42dfa68981ad4232ad4cb2e0a7bb50d3dd03e79cae6", + "regex": "." + }, + { + "hash": "04f97b15a235c4410e7a05076a748e39f6c3275d13dcaba2559cf0381c8f5c22", + "regex": "." + }, + { + "hash": "dab22ec489a9c1db663769c70405c444bf2f3d1bcd1a36eb94a7ab3cecc4b8a8", + "regex": "." + }, + { + "hash": "8db8f995d7194a729fc43ab8e27d078b597cd370c0a79aa39c8b8e7855837cc1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+indexv\\-vb\\-vau\\-ry\\-8b$" + }, + { + "hash": "c873f66011be50f93af9d2fd8bb017b1fcaf77e458a89e69bec9235c2d2c073d", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9db2b9afb57442976b75cbf7b21da21851d42d35cc24bbe2c80f884e924a36c5", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8476d16d7c4c6c1e4ee7ceceaac921a9f593efd878010e56d2f6e0d6258b1d82", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df55d1ad4e42ab4eb3835a3a269be8cfab26ed3841008a5983fcf9f7ef6bc255", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "499d76430c762d0d52e0450aa24b2e815fbca5339ca1900549a16e1225d46c14", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f650b629b9b30b7401970fc4b9352c98a1165d30ffb253d11c27afaea251cb8", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f93066b1e391000c4faa468ad0ee63487dde17adbdc65aab982feb8ed28b941b", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cca03c295b3b132f666d8e1cafcf07e47a620ae19ba4f530367efd618360cc7c", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a80fbd2f2792e8d071b58a529bb72f73fa308511db29b70be752f36360689e8", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e810de8f715ec270e56f7234378e726adfb43a5a16d52f62a36bc256d29b5742", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11352d317818bd0d397a6ef145ca12da362e253cd5520b4e93b632a476168765", + "regex": "(?i)^https?\\:\\/\\/raidshadowlegends\\-codes\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a93bcb2cf513b40532a1a064cffe19a28578706db180a6340464ab9767cc43b", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae12f9798a2dd609c38b74e750e14da04b49b85120843a05344770ef0e9b8323", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dd87667bcb9ba0d76b29652c4b2c05feb95ea9bb5f3e5257b535cc7f3186c4f", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eab15c42dda96ebff494332e22e20ef7728a122326f12bb982e4823d04dab512", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffbf9e44b36d5e755e52b8f0d1b6668d6824997c048122606140c8a38af38d0d", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64b1ae2aa62cebad6dc2e25071a0313477433fa0639c156f61629820e75f1ea6", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "191182418bf8c8825e18bc4129bcbd4c64207e050d7c987ef5d689e82a4497dc", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fe5aeca044d867931c46eb2a7074c6ba2b7cc11933fc9c3f21bc5e91a369ad5", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fafe8cc7b56568af7c05948afff1cc80f581f8fa1be316f5ef62758ac8bdca2", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35538f05f8135abb0549618e59acf219687adc4fc3c3ba8673d77873abc3f4bb", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a99cc4844eef74f022f22e0889f4dfb5e0ad920c0d53df9ef7ba0a14b1e47adb", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f22aa653cbac2a3580497593fdaf0d83958f87143cb59b36594c0a4cec99a876", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bde9d8017818d207e46b68cf4c9889ef7874a0bd07a3c92ff34b6d643367cc4", + "regex": "(?i)^https?\\:\\/\\/comojogardoomspriebrickbattelenoroblo\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "418ad0241518e9e8d17fc0948894076214d18c352d1b43af5d72e75633b2a621", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "514fcc19db5211a31afbbd7f9e681db506b6eea25ce24db2808ccc4988ce15a7", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "201d0a5fa7492686226a7660c03d1804cd0c01fdb2d7f58bf8bcd3c87761c740", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19a0cd173ddee02f4a197597f54b3d5ae8be20bffbe040356130b8149839cc2f", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c08ff2b1a336803a90128b641b945adcf3b3d15d22214795e96e071632d77aab", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2309e3a9f2e377755660b7c9be24a40c858d9548b4a451819073574a397a426b", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "57c3979706da5eef73763e5ff297a647d50c397034e2798570751f7f50df9e97", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7e99d1a2615d795ffe3ba7a1989dfaef702899d28133801f841ce623cf67ed6", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79c7017bedf7f9618358baa9882270a123e129135759ff355efdd56d751a8d49", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2af0014e7df06ee0fb496ea867012af6b0ab83ed566e0b1f158a20a6832b212e", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxpoliciaeladrao\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7e1469856a7f87e8081a1cc5d3f35256c4363681b9b0552104e1d1649ea90dc", + "regex": "(?i)^https?\\:\\/\\/hackerhatroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad45f00fdbb189120049da3a286056b18d703ac1a33630fe25b62d450e1ba4fd", + "regex": "(?i)^https?\\:\\/\\/hackerhatroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "206c8c6c49014bfb72c22c01f829db52ccbbc3a788b2f4901ee07831972c185b", + "regex": "(?i)^https?\\:\\/\\/hackerhatroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2330892e95b43e4eb3ff3093d35fba8b93e311482c8ad081bc4102c230670081", + "regex": "(?i)^https?\\:\\/\\/hackerhatroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a194e54cab97677fddc43aae72eb3a575fdc11902afea0eb0efc7909df1e866f", + "regex": "(?i)^https?\\:\\/\\/hackerhatroblox\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43e4a21c20272054937704072b66b1509635d08e8ad69cef700867f9cbcfcfb1", + "regex": "(?i)^https?\\:\\/\\/hackerhatroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db6b45f0d43aac253457d8cc6f455a0873e9c94bf76cc992f0a5e8fc1b7607c1", + "regex": "(?i)^https?\\:\\/\\/crazyknivesbetarobloxscripthack\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "013d9c9ae62320d87eb102dc18ba1c49ddc911f37845916d117b781da3db8ba0", + "regex": "(?i)^https?\\:\\/\\/crazyknivesbetarobloxscripthack\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f1359d26ce9f47d3acade44f96af2a695b130e950a3fbc14c4fded7d55c446a", + "regex": "(?i)^https?\\:\\/\\/crazyknivesbetarobloxscripthack\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76ed4c896c634e2f41baf46d220a191e1f9e048f9ce9a63cb22e5e75323daf11", + "regex": "(?i)^https?\\:\\/\\/crazyknivesbetarobloxscripthack\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20ddd098095569555a9f650998b17952ab8cd1ce5a1a354b4bf92ac8bb6cb9a7", + "regex": "(?i)^https?\\:\\/\\/crazyknivesbetarobloxscripthack\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b4f403873276e6d0d780405c90dd2def3696a4dcd9731bde3fb60d32b3a9a0f", + "regex": "(?i)^https?\\:\\/\\/crazyknivesbetarobloxscripthack\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6abad5f2ee126b349d8cc1e7870126625f9e4228f5743622f0806487223cfeee", + "regex": "(?i)^https?\\:\\/\\/crazyknivesbetarobloxscripthack\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c8194e5337fd37b3a3fd6510ff6bd7dfca3a4cd032362772f65777cb1fddc8b", + "regex": "(?i)^https?\\:\\/\\/crazyknivesbetarobloxscripthack\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13bf9f11bc9aa255ef2e323e54a532d919f64a93a1e1196babf306178bc7c851", + "regex": "(?i)^https?\\:\\/\\/crazyknivesbetarobloxscripthack\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2472436c2dc11ebd262ca572b86ff091ea89cbfe0d595ad751320c33351662bb", + "regex": "(?i)^https?\\:\\/\\/freeandbirdsheadroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a165c18c04894e627d53502305ea86ce9f409af0ae08165574e728727bec822", + "regex": "(?i)^https?\\:\\/\\/freeandbirdsheadroblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "06fb8f162829e0e6bd2df980bf1be27cd762c196f644cce8d36253ab79262787", + "regex": "(?i)^https?\\:\\/\\/freeandbirdsheadroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e18aadacf7a6aa2c47b0807d4dba952e6b48932c54129c8422e4cd8f84694996", + "regex": "(?i)^https?\\:\\/\\/freeandbirdsheadroblox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4606f3bd3ad9b53e28f7e55b58e950ea7de2f36455120609b7c821c7b3bcb2b4", + "regex": "(?i)^https?\\:\\/\\/freeandbirdsheadroblox\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "754752a295e36d4e3f00cc84d8d20033d469310456c7363d716fc4f55be92289", + "regex": "(?i)^https?\\:\\/\\/freeandbirdsheadroblox\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7980b1a8d98d26b57f9a77a285d8e027355519e7faa4b00fa6241ff6e0e2893", + "regex": "(?i)^https?\\:\\/\\/freeandbirdsheadroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35e09603f4fbea0f3240e17b7d2e4e56d63171a972ae16b2b41bcc713541b289", + "regex": "(?i)^https?\\:\\/\\/freeandbirdsheadroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b909b53c1c5f3d68089c1351ae4da6b875089e4af627fbb2c6a738b8632be68", + "regex": "(?i)^https?\\:\\/\\/freeandbirdsheadroblox\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf6a655bd0254a6e9bcc191b8daa64822c288b664dbc0c72d5990be9b484ae38", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18a1dbeaa8f68842fe4925389c70c6c1687bfb25d4c03fa42c9b9bdeb9aeba12", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fb4b5914a2d5d114b4718cb059a7256dde38f1dfd1ddb5a35503b73651f2ac9", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd7393e80e9135136b23c5e0857391effd5168bf52e6b01e82a0715687806a17", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c08f4ef9bcd3ba902dbdff436a5581fbdabce3a6916ea2b710744942a5e9eec5", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f4f44590603bd948c9daae78085e4239ea3a4546c4c44956b9dafc966d1d64d", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a11f2520c4368867ad4158b7f6ccb031f8e4e46a7968218ec421ff5c8c957e87", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef5957cab9ada36fd450e19cca2db30734c79249e51f5f6044cd17035583626b", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31f631987a5bf023b32391da8bdbdaeb36efa2cfb622c8661d1917a5c219d3c2", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1eaf752bd3c28b191aa5d1190e783a068e307dacef963e2f2ff49863c919e20d", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12b4a785a219217077f2d2b8a569ba33fd82ae7540746283151498af86fcef69", + "regex": "(?i)^https?\\:\\/\\/goodlevel7robloxhacks\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ccd83cb82dc76a981cdc3c6e23e2d2fb457d175b80369febfb750254f19ab5e", + "regex": "." + }, + { + "hash": "d8ff7892d39084fe94d83029c83cf0f74660bedcda772baf14c0498db890b126", + "regex": "(?i)^https?\\:\\/\\/tiyt00ht890jgtt6648hfr5\\.z13\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9bfbbdb832644692902abe0aa6b9b5205729ee4f63f9c3e1a175ebdf9238356", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+facebook_login_page" + }, + { + "hash": "4e2c029b205aeb75b8002a5459c2c2301f788e00fc0553129a6721cf892f13d2", + "regex": "(?i)^https?\\:\\/\\/lasopasound359\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb9c45a105b3f25d891234a122da57b07887d3a2d4aa6ab8b4494f4b6b66f95", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-home" + }, + { + "hash": "aa095e5b3239e52eae49db13a9374b41793fc5652bfe456231e358eb6899c129", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "37a72e66c31d10ae45c7d0a63390a00a35e44cd9b72ca9aa85a5e834f7845010", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "19b8a6f24fd28f992a17bfb1c793d68316dd1714bed307073dda31f429fd2eb1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "3d08ecc9a393135639cd1c5b581b803f37dfcc633ec3cccc8086e7b6233f2202", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "73cee1ec4c96bd19146358966187171360bd6c965d60d8622648ee6cdd4562ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "582601ef628e7a047678aa0c724fb4fa20b58a6cf6608e3fdab18e7047f57315", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "ab3ca026a0b2b2fd95d3d9329ecdf96139ecd0a4d13303a058d00e8868d68a1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "df409771e29083d75cc835ae45ed548acf28ac5249df34baa0cd70f605f15058", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "ea81b5e80ed0b0d6872571e9e9e357dbdbcf4fef2fbb7b96044f59a7bcc01256", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e3f63abaa2bb85ad7bc092a09973d601cea08ae7884e1d12b6f28e0923d2d0c", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4042141701a432012c2e8d10789a5f36e51305f78787df0fff919c1462d0bbb2", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "515900310894865450d6a0afc63689e0fb6baeb0e425077923f9c23697b0d02c", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c0d6456b7bb2e28d71d5093cfa6e45a22e368ca360d1c7ff63d9c162662186", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "095e0469676dba11a9f0abfcda81ed9786ae5c16570e174905dfa4ed4200b023", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fef3968b25ad4e16b1f3131f926f23eea9ba1af2d522915d0f92b4cc6431433b", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ce23533a21cdfd11090e711ed9d56832d7b2652a57e090360a2206282b4b87e", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4761377b7371be8e7b54d7a33ac8be2660aa9e10e8b3fa22e4d68f250db89a15", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc89d8da63965076a3af9ae4d1153385e873bc14f71b2a6f9c6575b98a305c24", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b23fccd465e7f9fd4184445c09f4ed1ddf0ea335d520db811bbfb850d0f82a6c", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7ffdfb75a830db63028c44e8702c431372151b0aed2cbfd89ec2d609541a3c7", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fb2924b5739ce9abc4875ce01fa39e17ee8ad9a464d9776ed16179f762fa4da", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97b6e78b67e4f39dc5a9ea6534d8ed1d0a8253a3c0ef4a7e7b82339f9c837a39", + "regex": "(?i)^https?\\:\\/\\/myclothes666\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00b2fff446d7c90750a4c2a1e4ca7cbbd13a912fa92dac3e44ec3b78efc78ca5", + "regex": "(?i)^https?\\:\\/\\/maryamblogs7\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "412d65d39746048d16324479aa8e0f573e7341daacd473d1da7e4d83fd497cfb", + "regex": "(?i)^https?\\:\\/\\/maryamblogs7\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5adcf3a79e0cf0205c543375b27c615bed60c77d72c5bec5bb50bbecb9b2e1fa", + "regex": "(?i)^https?\\:\\/\\/maryamblogs7\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bbca38b75f51ea91399d257ee1f65a8001beb51636d4fc6e4dcd854d597aff6", + "regex": "(?i)^https?\\:\\/\\/maryamblogs7\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8105f8c6de4556b11c5a6cc0083004c8577558979184771ff51e30625725878e", + "regex": "(?i)^https?\\:\\/\\/maryamblogs7\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd94a7acfb2fbdcbd739e569366d30252ae865c0305f77f5a53e5ebea852c541", + "regex": "(?i)^https?\\:\\/\\/maryamblogs7\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae126c362d9dafa9eeaae96681ac58b49f462a4b8feb13ac18c74eadef966350", + "regex": "(?i)^https?\\:\\/\\/maryamblogs7\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12d61c3fcb48adb4ba0c11214aef86e7ba75a57437f334cb2f4fb674a0095705", + "regex": "." + }, + { + "hash": "6394e91e3427070c52e33bdf7d436d440045498ca7b5d2fc07a815b3737eb8a0", + "regex": "." + }, + { + "hash": "0a2f34e5d3441dfedb34a7c9397652b3e5699ae0fc9ef92e39f25443dae3c98a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix_" + }, + { + "hash": "c0089f62b625545bf77fa0b3e1a28acbf44aafb5c028074a97ef0f94308d2a30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+untitled(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0089f62b625545bf77fa0b3e1a28acbf44aafb5c028074a97ef0f94308d2a30", + "regex": "(?i)^https?\\:\\/\\/terzorwalet\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e83d73dd0b5c418a60e23ae49043af642cad6fb910d8e5605af1f733cebef97a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html$" + }, + { + "hash": "8362c92c60bd642046f0e6b5f6b7d7f9a8637081325e0c349296c73a7da13dbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix" + }, + { + "hash": "146cf18d0586775922b0ced8cf2c3c96e4d9270e9c7ba65419908c253393e0fa", + "regex": "." + }, + { + "hash": "c2c3d970d7aef97b95916521aa97129d0fe201f4d20cd24495ed138b1f74f5b9", + "regex": "." + }, + { + "hash": "1818e152afea3079726b93dc927bdb8589c622fe7f493759245338c9cca2202e", + "regex": "." + }, + { + "hash": "b4492236c2316a0fe3a7764d9333cdfe8a58164eabc023382b6b9e79f384bff3", + "regex": "(?i)^https?\\:\\/\\/robmhoodlogin\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29acd7c63201aeb146f9a8dc36d629a45112809e3f66b4a7a7af7060c8454bc6", + "regex": "(?i)^https?\\:\\/\\/robmhoodlogin\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d76a0b9cb7247020d83734f950d966ba6ddea2a9cb58d8e773d66ceeb6823cc1", + "regex": "(?i)^https?\\:\\/\\/robmhoodlogin\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4197bafea38f4369812f9dd2a1348c65f8f814e2130cd2c12b67f03c9d11fde9", + "regex": "(?i)^https?\\:\\/\\/robmhoodlogin\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c443b1b103042d8e57559c7eae0f0fc8081385ac9ea1df5ebd5c4d12a5a8c61", + "regex": "(?i)^https?\\:\\/\\/robmhoodlogin\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e2931bf69fd057ff8c162fdf419719fe9d7b512266a56a72f12fa7da350c509", + "regex": "(?i)^https?\\:\\/\\/robmhoodlogin\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6af288e48d203bc898705ecff6b57bd89f05587461c4f578b93871e08f3bdb94", + "regex": "(?i)^https?\\:\\/\\/robmhoodlogin\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53d94d8ec376c9820353355f7d80d917520dd74806d456641cbd37745a055a00", + "regex": "(?i)^https?\\:\\/\\/robmhoodlogin\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1409d12eec3c1360a2a93c0e4d3750c2a7002a38eb152dd0063726b325ad8925", + "regex": "(?i)^https?\\:\\/\\/robmhoodlogin\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "313e8291a699a1367a58b0690ad21285865c5eb4b7adbeca2c6f3b2cb504ba31", + "regex": "." + }, + { + "hash": "7c525a8e8877b5bb76d2c972d0f3b6fe67bd972aa7c7173ce091cc8245c5f3e0", + "regex": "." + }, + { + "hash": "c09fae553afac80807ed1c3107f5c9e1fa4894ee4cd5d3adefaaa4befc496f84", + "regex": "." + }, + { + "hash": "8da1cf24268ee0c713b3091ab73a57e666cad8f06f37fb770cfdb01efff0263d", + "regex": "." + }, + { + "hash": "22562ab84b3100214f7ae9b18e88cb0346ba8cbf7001aa962cd0424d75aa8e33", + "regex": "." + }, + { + "hash": "0fdee24d453a4b9b06955e4a412624cdb7120f034f155248cc28f7437fffc1ae", + "regex": "." + }, + { + "hash": "41a65f43154a32295a4901536e095f53c80936c6f9b1dba3577ca63c7171b671", + "regex": "." + }, + { + "hash": "bcc0cb1c4d99e829d48b0ada9613551850bf2adaf493d14c8b32c3be39b43254", + "regex": "." + }, + { + "hash": "192f74c303756a94d859bcd1353492459b28c8ed383c24bc8f8930a0bb2e9e49", + "regex": "." + }, + { + "hash": "68925f8c636f17a27e33c78a61611c5bcff958a11dcb841fb5a3a1f4a8ddfce3", + "regex": "." + }, + { + "hash": "78b09cd7525a2b466fc00d55352bb74511fe74ee6fbb471973630c909cdbb5fd", + "regex": "." + }, + { + "hash": "132dfb4def5acd210af995a4a7f7d9bed79ba308c44b7c3376114335c1b56fe3", + "regex": "." + }, + { + "hash": "af0d527fb1893933e2ea6ba9ded1897723d5ca03a8aae491278063d12bc261cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "10b9304c3df14dd8d7b0a31e0a33c934f457f494193d6491e2e92c0b7497559a", + "regex": "(?i)^https?\\:\\/\\/robhnihoodlogin\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48e55670be0a84f0f0d4593a6ab7205e10705d27849c0288f6931d06b0e14349", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "b23b2c01bf709df72dc7534f5cd8de39bc2c60da58eb4813f57193d6468442f9", + "regex": "(?i)^https?\\:\\/\\/metamasskluginn\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e10e572c9324e392579b72bd5b449ef2339292aa57041c126b204f2b63068dd7", + "regex": "(?i)^https?\\:\\/\\/metamasskluginn\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1750b880e373d591624e276ae6ac76272d2ce148a43522a143954becca64b4c1", + "regex": "(?i)^https?\\:\\/\\/metamasskluginn\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "967a77592db3d566298796286e7449807a752fa9604e75fd1b32c93b184bfdf9", + "regex": "(?i)^https?\\:\\/\\/metamasskluginn\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e2e1246105cf680d951351dae6e851b00d84de75a083639b8280e4ecf2fa30d", + "regex": "(?i)^https?\\:\\/\\/metamasskluginn\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "467f89a1a03e16427373679c2e25969001b1bee74d3fa503dbc2034f601007b3", + "regex": "(?i)^https?\\:\\/\\/metamasskluginn\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b7b9ad87f49cca96e05794f0d0aa385f3783b235c3e1a161942420cd5d424b", + "regex": "(?i)^https?\\:\\/\\/metamasskluginn\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4b19a0b2f81cdb27961590c13be6398af91b273a7c1b0f0fa2049a93664e362", + "regex": "(?i)^https?\\:\\/\\/metamasskluginn\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7652dab14406506882564316a2f492bc9b491e470664c64625578762a825d12", + "regex": "(?i)^https?\\:\\/\\/metamasskluginn\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f767e93b18b749bb05333d7630e4d0bef33fc1269b99947776990059058edfc", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9fd887df8fc41ba6f5bc9b5720a31c49b67dd5e532bbc59c0b789fcac460704a", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aeb5ff4983a1de14791ce15644be571565d2b51c3141841840893fff97361fa1", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6560ef1976506d041460b42b289aa9efb82fad1c6f5878b87c6f4673a57b209c", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c3fac6cbd1e497447a6fab3cab45401d29f2ff33ff1b55a8ac44b9dd5ab08b7", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ed0b017d6807fe2bde4b113e760361fe87a04af5a0927310596fea6097844fd", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "098f49b1e39857292c47cde121b1dbdfb735e72cab80380fe682233e1215fd33", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7823cb5b7f0fc203b0e4a4c43f8870e09c8a3632cf4cb2c49884e3e8038464dd", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d687df44ce81f25dc050446aea51462f5c6714c85562369201d3003b9a3ea7c", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cda69ce2a5e08559c1fd6254b5780cafa18be87f1c545fa70fd6d1f2e4e2e296", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8797ba56d8a2ae1f3242d1b35eefd35df5e73c26fb5393b50f89a84b1253ff45", + "regex": "(?i)^https?\\:\\/\\/meetamaskloginn\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3018adbb4286ab00402f96bda98c435fb461211bc1af7c3df2641bfd96429a1", + "regex": "(?i)^https?\\:\\/\\/metaamasklggoin\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94b189ea8609410d79ed96ad8b31ba80e671050c6281067a1110905d51b7bedc", + "regex": "(?i)^https?\\:\\/\\/metaamasklggoin\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d76678be12cccd475cfbcb362e47124fa9d7f4719d522a672e21ef587c191297", + "regex": "(?i)^https?\\:\\/\\/metaamasklggoin\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b875ff0cf8ab5a26c950e96b577d7cc0e5a7dc0605f63c17459748d8fdded2b", + "regex": "(?i)^https?\\:\\/\\/metaamasklggoin\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e95ef6ad1a614414aa05f83596ceae00d7d467c1ba4d76d40129103b19408e7a", + "regex": "(?i)^https?\\:\\/\\/metaamasklggoin\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4957ceb0cea873fec237798472b73f252ac2e8032ac3ac1d941e675beef9c4f2", + "regex": "(?i)^https?\\:\\/\\/metaamasklggoin\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd032337db19bce30d73d33c0f46d230ead7a9fdd0eae97b68e20ae1f26bf2c7", + "regex": "(?i)^https?\\:\\/\\/importantinformaionns\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0058fdb91575b287e47b8c99dd848e810e9d5ab26965ea2b9cad2d2280aee0a5", + "regex": "(?i)^https?\\:\\/\\/importantinformaionns\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f047fba141795e5263a289c1fde21a1c0b04285386c7665457128dca96ac8da9", + "regex": "(?i)^https?\\:\\/\\/importantinformaionns\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c373b6ebc45f8cd3c23e39233063991106ee5a25cf2d010a83965bf061eb4db7", + "regex": "(?i)^https?\\:\\/\\/importantinformaionns\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23cb804254cd9003c8f8deff6ae245b40af205adcb34cbac8f7fa7193a8bf658", + "regex": "(?i)^https?\\:\\/\\/importantinformaionns\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "648c31004b7d95c70dd73c5620202afbb3f00ee5a94e41539088ab558899d7ef", + "regex": "(?i)^https?\\:\\/\\/importantinformaionns\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99b3b3329b5046de8da8d1e1366fbc6032b41b4acff8bb248f99f1900ff1eda2", + "regex": "(?i)^https?\\:\\/\\/importantinformaionns\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2031461f9c80990eb0499ae91b961f484ff1df96333fe1cda4d4eaea47432a63", + "regex": "." + }, + { + "hash": "e46a2e1aa367aa499936365bcb6af2d0aa05244b5c1c27c6bfb448147b34e5fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "e46a2e1aa367aa499936365bcb6af2d0aa05244b5c1c27c6bfb448147b34e5fc", + "regex": "(?i)^https?\\:\\/\\/kucoinnlogini\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "910245e4462be739eef996b0031c9cfaf08d1a4c0551d4f21695bb31e6929a1c", + "regex": "(?i)^https?\\:\\/\\/ananthu\\-dev224\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d7d2cebdf38a318b8cbf6a64d52db293c023d2fc13da3bc923cf2d5b79b80f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+share[\\/\\\\]+9115277[\\/\\\\]+32mbex0i9ryhpo0ee6zi$" + }, + { + "hash": "6a72d8fbdce9375a49205df3294e3d5249d5954d2320b5b6ead4a7aee1863520", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+untitled(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a72d8fbdce9375a49205df3294e3d5249d5954d2320b5b6ead4a7aee1863520", + "regex": "(?i)^https?\\:\\/\\/gemminilogin\\-3\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3901895af08de29461784d81ac33ca74cbddcf3a5abc5ace0b731e7b4c90a50", + "regex": "(?i)^https?\\:\\/\\/karan0617\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a0b640dc0a6fa304a12f7645d5b4c6ba359cdb729d25b1ec41d8fe26572d21ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "eed41d557132d485a7b2b9623e2063e67916555367300d18e166015c1258eeb1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usa(?:[\\/\\\\]+|$)" + }, + { + "hash": "eed41d557132d485a7b2b9623e2063e67916555367300d18e166015c1258eeb1", + "regex": "(?i)^https?\\:\\/\\/uppholld\\-loggiinn\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66f9871435400dc9f73a28ed8bb9dc5f06f31d7eba7e0b3aa1a1af363df228f2", + "regex": "(?i)^https?\\:\\/\\/upholdkkklogin\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "676e5de76f0463f834c5105fcc2890571474e92d4361152c91011454134cb84c", + "regex": "(?i)^https?\\:\\/\\/uiophold\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "315c3c515c75f0fa9696e0cdfcde08d961e879ce3e603dd61639b6f41d1f6567", + "regex": "(?i)^https?\\:\\/\\/shubhranshu2023\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a90e4fdacf61ccee493f95f7af9892b84984347a1d1d6a23b63b75c91caae7aa", + "regex": "." + }, + { + "hash": "8bc521b80ca36c47c953556b5788d858005e7e7c6531eafb845ae8d8f72a5cec", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2147817b890a2de667fb5be45ad45d9e6da26771f64771c9e53a128588aadc54", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "98cda779386f7694c6f1cef4bd3bc127abc711887ea26d260b8454380f23c10f", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe91609fa2a30832ecf1559ade2ca8d52dc4154319de0d9bb22fa2bbd716bdb2", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1a1c957c518ced713808e6bc4493088e67c9e1d3eeefbee35b669b34c4fe38e", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8caba406a3668cf118013311deaa0c970ba0d3ef782cba2a961d667a18ea31c5", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dedaa687dd644b446303358ffe380cc7da159e54f35b73684dc474d072e36e2b", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9999f987b5dd1721fadb38d6ee3b8bc56d45c2c0651b6673cb636577def916d2", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c093677ae3934aafeba9d83488faf7f5fbe8694c350f669b02e01f5d8a0abb57", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec55133719ac9c84a3dd0edd90eeb7a77c1b16afde7ced60f26fe527a0ddd720", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4e9fddca89af9abffd2031c6a5e2d649f77f46d7cd14a6f624ec860c9b4ae59", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccef42b60948e74d7b7060db47aee2babca047e28ed350995b02a71b676729ba", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9999f3394201369d37bbde91bb5738188e502affeefec94c90f71201e2367eea", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c409eff877553e5073709958c24bba8f6d8f895733d4b3f5529c7561e73e3965", + "regex": "(?i)^https?\\:\\/\\/allalvarez\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2adc853e6793e47bdb4cfdb7853a4abac039e390fed04e8f907b17aa190ee4e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+opo\\.html$" + }, + { + "hash": "6ff2168ec44a04446aad1d8939f0b0e35804e157ef8c04284f96277e0e83996b", + "regex": "(?i)^https?\\:\\/\\/nakayoshiyume\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca6383571e62116e17849d02d4110dae313b11db428235b75081fcddff4432b6", + "regex": "(?i)^https?\\:\\/\\/nakayoshiyume\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a12ddd5f309b355735deec83490c581df6c41ef3c583b11772e89b83a0b5708", + "regex": "(?i)^https?\\:\\/\\/nakayoshiyume\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12d4cd8d27b649b25581f0bfb00212f06624868fccfbf2e6b0e98e11b3a11efd", + "regex": "(?i)^https?\\:\\/\\/nakayoshiyume\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b6d8a79ee82d3a1926ccd0674a1cdf385aea691064c80d86caf3bee67d0310d", + "regex": "(?i)^https?\\:\\/\\/nakayoshiyume\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "641d742573b0a69aaa46f97453700fabc8a381d371f355e5a5720c2ab1a4c4a9", + "regex": "(?i)^https?\\:\\/\\/nakayoshiyume\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34757821094833d43eb1a006ee7103c4973f6ebee40f857431a0b67d91992b02", + "regex": "(?i)^https?\\:\\/\\/nakayoshiyume\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bfcfcfa22e5d471385477671eb72dcd14909e871d19d425cb5fb22a932f9784", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a\\.html$" + }, + { + "hash": "3baa97b98ace5874e5c09b3c60c25614ac023b8bab0bb7013d3f89615023ed19", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "451a7e5a369a26e151fa547f2dd6a2119c3d4d61ff84d146b5c3397b2fc7bfb6", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "308d1e1bea9ac7afab83ec9abaee35f83cd68ec1e6509456375e374d50a421ce", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9190e95e397ff3ab51e2ccd4507844e2d5957cf333caa6a9a4f2a6a12e4c795d", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb9de9d167c674b820f74918703bba45328b0942be12cb2a62907b72dee42b56", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0bc16f764d6d47c8309790551c7d9a8dc7c18f38e08dcc9fa4bf1d7f37aeee82", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a2e4d9ebe28ed67323102c18f2fd381a4e9fc5f15e9293ba1d5c9c250f0b61f", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d369ce75a2b13c6e4752777a1a5a3f0739b85d91733d5041fefc1126db3b2361", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9b3daf6526763e97d15cc0d14d03cc9a9c88ad54576b7df84cc40397476d48c", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc9cd6955c87cc4def72724aa219775f97d1801f241e59aaae250382410ca44f", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ec00fbebec701d0a25e5d31739c32ac51523e84232499df34146a8df5a5376", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8811f8b0932919cd2f19c7ae72c985062c1847013d5088601bb180fea90679a", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23175b99668871a4f5f8cf48369b84865144ed2284f1d606615e5f4694404c6f", + "regex": "(?i)^https?\\:\\/\\/jobopportunityforyou\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aa24d300b5b50d0abb684227c6dd4d73cc752c8556ecc616b50ac39bb92b1d9", + "regex": "." + }, + { + "hash": "05e2742a0c29bf835d9960743fb1d52fc6920ca49f883f9a031d1527fdff0c57", + "regex": "." + }, + { + "hash": "02f97d33414b867add9888249854be14a24cfa2e92b104cbd8b036925a0e7f18", + "regex": "(?i)^https?\\:\\/\\/thursdaybootsfr\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cbb0146a5545d9a70f8ec1e0120484139e0259d8799fa0bb1662ccb759f1cf", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07d73bdf8efbd3fb45f47ea7625ceb15d597cb7187322e82316c0f3425b9bd8d", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a499fe750f266ce40718912a351dafbf60a041938332a803d9427f5d296e68cb", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b14c011493548ff37cbe782a44ee3e41ee5cb1554aed8b027528534451cf5868", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "521144e92c613be88f318e09c458327f588dac95ad52951079d579ba590fde62", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba619c25f4369abb92624e78d5853d3d19f4a5defa979e464677215ad969caec", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76384ad76f82512df970553d3096838644da09fd5c17feede50e83bb2f8c6451", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8abe12b432739f0d0f5e1da439b82dc7b1044bee199830ed9aba16e63c23820", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00ee69843c02f1008ebc48d231f92ecd98f69ed165096cb0636fed54ea398bf4", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f09916260389968b5930bfc7f3ec95ef34571186db42ce010bb91f974b904d4", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "750773a8335736b9ee4134973ca22e08f11eb3b8a9e2c246583f42a5672ca1a6", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1ea9109d7df5dc482b44e4cc8de3fc57b6969a471f6c28002a97c54d0bb77cee", + "regex": "(?i)^https?\\:\\/\\/pavani2110\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2b0445dde16592018ced1da382b22a54bcc09b373b0dfd1d81fd7b6df15703b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6e7d8f03728004ae87d8be08586d2ae3c973482c7f1ad1b4f193f0e6147418e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "767efa1e8767bd9044b0a5a890372b1a4c15ee1c383e5a03461751bfcd80db5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6e7d8f03728004ae87d8be08586d2ae3c973482c7f1ad1b4f193f0e6147418e", + "regex": "(?i)^https?\\:\\/\\/walle1\\-metamask\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0445dde16592018ced1da382b22a54bcc09b373b0dfd1d81fd7b6df15703b1", + "regex": "(?i)^https?\\:\\/\\/metamask\\-extansion\\-1\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec2d723926da18b0346740d2854b4c8484f42e8493edd846eac02d8accb59802", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec2d723926da18b0346740d2854b4c8484f42e8493edd846eac02d8accb59802", + "regex": "(?i)^https?\\:\\/\\/metamask\\-walle1tt\\.gitbook\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1b4b19de4247585fe67f2e837b5cda762937fd42e0319c1a16c121b7c9e97e4e", + "regex": "(?i)^https?\\:\\/\\/webdev12023\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "628cc776de1dfee1cf79ebb79192dc299fecc1e39b9a90660e0a7beb9257c220", + "regex": "(?i)^https?\\:\\/\\/phantomwalla1\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4462187caa7f90cfdea5adf2fcd508697a5e47a9f226e1e84385e227e550ef4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddf2919af98c02576f15495202e5a47f4bc602ba355b0882ddfb414e6029612b", + "regex": "." + }, + { + "hash": "bca24ba5a2aaf974c9c2c53ab7af2839dc25f03e3f1f1d13292cbfb2191d8dcc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "0679fdb19a84d29dc5fa26f280485145f01811439f024356669df25262132510", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0469a7c07d3051919d086dc9efaa8fdace99e2823466fae3fda971dfef7f23c7", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8e0a7fc109c7c35df40ef928bc1abdd69213600907def515c6738b3d6fbb05c", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a23853c69e950d360bcb1a3d0b3eed505577c0b7d2f614a154346b833892dfc7", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c961ffb3ca73cfb108da77e02f0bc049dde038d01cc534565c684f8212248812", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e9784f0c95edc95cd67630e453b9e72e22ca16f094f0373d6f38ef18ec0a199b", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a965b349adb5189a651c8999410cf40d3563feb72f039decdb516dcd1b6f8bbf", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60f430b1238575e56b375308065fe975b8c582fcaa2980992b3ac9b4e999d5ce", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2855552adee60b888da000440aa11946c8f923c8f4e7aaa0a1ba3faec565bc0b", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a58f1dd0656ff79cf7c5a7b1af7f209b7b1433cc842f0aa2b364b8854eb9679b", + "regex": "(?i)^https?\\:\\/\\/roblox22215\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96ba74e477326a31c5819dc611418a7d7783a8bb6a40e0360698d23499fb79ce", + "regex": "." + }, + { + "hash": "c5b5f1e351bf7abd0ab6aad2b8878967d60e7051fc4c4bd91495e89d3180bceb", + "regex": "(?i)^https?\\:\\/\\/arbabhassan1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7434b2e815dabb9161662a5c354735bad61cdb4a758fc32886957f09fd2be113", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ron(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f1102edc138b6b67fcc92beac04f8ff4786c1674f11c045f53c649a7c98b5f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "1202cf8276ecaf1a3867a838ce2a62b6bfcd649d6250d6261a1c4cdb50106da3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|$)" + }, + { + "hash": "78e09cfd152771eebca7f44ad690159faebf65cad39867d84b0f9be8d1170601", + "regex": "." + }, + { + "hash": "ee4c61bcc3086b665ab77c4a2b5338d5ee823eee46981f4fc731406e3c83780a", + "regex": "(?i)^https?\\:\\/\\/vikash6265\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "223998e47dbc907f718d6843897b0afdb734e974da3ea0fa19dc046d8642f4e3", + "regex": "(?i)^https?\\:\\/\\/upholloginn\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "faae44607efc010d39ac12264466e276367dd519991ec68994ef440753d92b8a", + "regex": "." + }, + { + "hash": "6fbe27ab6bb8b5eac6c85d82ddff01643f30fd6eab94659106221127c8fa1a5d", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4df615b2ba15d3fbee1c1c60ae4427cbcd5069664906da5d0937cd557c3f90a", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbc30c619c2260e4fffc9448d29a90e73e1b2cdaad3bfd4bc63e285d008b0ad4", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01cf1e42cebb2c7ec481705040bdb5ac9dc668fcf4b797bef28e0f1262edfc32", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24652e65597503c4a57757349bc79f28672a0714edb6ab1e668a59ec5886a484", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1541364e4c5699c36301f9bd907aa0ebd0283538bc65bca19d58604ebcdf6646", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d09948e09bd347d7c933e8754f47126a85a948ad14d5cd23357fada116a8b061", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c86f5c40ffb1c7b9fbaece2dc8ce6affb57e426fd4ec2280d1e41df1cae0037", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cebdf43b2b5ce4f29af5bd3649592953c75c646ff7abc37db14684768b57e125", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b69fd77339ca35b4f9c9d5ab3ddd438a6a18bddd04f30454eea200f0c7cf2360", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f07f096ce9e38e1edd1128f793f9e0bf814bb549b9a13f8d634a84ee5a0add07", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1206bca56077b28bc83e94ff564923d984b389e0f4b459dce2738d90bdc2d271", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "30f919cffd86188f4648cb0972e6d16c7b9a1a776d0bce37039617ab30b8d681", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbd64da8d133b485c97d90747d489f2d8b645c8f5a6e694358abcc156d90f1df", + "regex": "(?i)^https?\\:\\/\\/ca\\-now\\-30\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "401142583da699d2c7298f2d49613a56c23e686e8f4a1f7e80886af5a59b5453", + "regex": "(?i)^https?\\:\\/\\/bafybeihapzdffbvyylmoxclaxszrg4ooxotcice3cfxd6cqmkkhha4ty3a\\.ipfs\\.infura\\-ipfs\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a98683e9dbdc8fd76b49cda83b029f25e8fb134b1082508a4ab74fc91095ed7", + "regex": "(?i)^https?\\:\\/\\/jmcclung3509\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "73a1ba3e27f3012ed37481b8443b6448af7b0baca0efc34204a4bacbd57ab33b", + "regex": "." + }, + { + "hash": "6f4996528776af9805917b537d2ccadeeabac832a7413e0f165f7979f1687abf", + "regex": "(?i)^https?\\:\\/\\/sandeep4118\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1594a2654268a5375b96315cc4fb241ccfc63452d1fc7b6efed4190c7ddaf211", + "regex": "(?i)^https?\\:\\/\\/smart\\-702\\.ddns\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "8712d2e84986c37dcdbb337632af76af35324b8f2641d3735d84aa9a11a08fcc", + "regex": "." + }, + { + "hash": "79630e8f5d51e80a9557875d7abfca8631512e4213bd25753f3dc72d964ee3a1", + "regex": "(?i)^https?\\:\\/\\/rahul240620\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b67f654bf6aca7ba9f3b2810822ce3ff544caddf93c26e94cf99ae3611c827c7", + "regex": "(?i)^https?\\:\\/\\/seunelvis1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b583188dbe3b2d77766d02de5077c6cec1a0019bf9cf8a708136b32b22838333", + "regex": "(?i)^https?\\:\\/\\/vivek7d\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+sys\\.html" + }, + { + "hash": "0fa395ff21e0bc72a5a6c3fbdab798e97aa66b54d5ba031ac201fbdab2152ba5", + "regex": "(?i)^https?\\:\\/\\/sakshii15\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3152572ebaca2474aa6b0df1afe3e9bbd0a77cb657f3ac70465898b42164ab8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+s[\\/\\\\]+pub\\-085e23c033ce4edd99e37489757447e1\\.r2\\.dev[\\/\\\\]+nmonday\\.html\\?usqp\\=mq331AQIUAKwASCAAgM\\%3D$" + }, + { + "hash": "3152572ebaca2474aa6b0df1afe3e9bbd0a77cb657f3ac70465898b42164ab8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+s[\\/\\\\]+pub\\-085e23c033ce4edd99e37489757447e1\\.r2\\.dev[\\/\\\\]+nmonday\\.html$" + }, + { + "hash": "69ec567e073e39d33e5feefd84518250441d22d65f4da140556716fa20d8b5a8", + "regex": "." + }, + { + "hash": "10ba6fc009a54a0fd130bc78e70e88c04447316228f33eb32f8b5926e585a036", + "regex": "." + }, + { + "hash": "2726a7ff155109ba5824fa0418fb11a0ccfcef4796dd23d101f2babc926d2aa6", + "regex": "(?i)^https?\\:\\/\\/devshubham123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fee1068bf8394e813d56bfc168eca30fe066513a49c8bd0354de19967be77373", + "regex": "." + }, + { + "hash": "cc056860a42f39cf24eb9ef02014f67eceea1214aba8c6699296749bf4510681", + "regex": "(?i)^https?\\:\\/\\/obaidullah1209\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "85eb334f5a00dd49c9e83a4fb3d96cc6b690f0488a105cbe85ac73896751859f", + "regex": "(?i)^https?\\:\\/\\/senura2007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "68163c58ce99e841243e4c29406e4f77c2f6d4e1495372aaaaa974966de28edb", + "regex": "(?i)^https?\\:\\/\\/rakshaj2002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5ab2af3900299429b9994ca82384786fe4d9454510d5a0fdab97e1da1c2b3b66", + "regex": "(?i)^https?\\:\\/\\/chetan1305\\-lang\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "683c9a2aa8b626967e9faa37fa27acc90cf5d6efa5c3d7fc8f1e5c3426441a8d", + "regex": "." + }, + { + "hash": "e62556417df2a63a1eaadb3729753655066b5dd54995e053c102cfdb3592b030", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=32b91832920a56212b9d1c18c\\&id\\=a403b7f5d8\\&e\\=d7f79f90a0" + }, + { + "hash": "10f11e9a45f4a662091b5bfd0d9a49c09dcad1c9c68eadbc1d01bfaaa920b9b3", + "regex": "(?i)^https?\\:\\/\\/ligne33\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7da867fd833112708b9163e9a1532e74f4f0f8857aa59a3f43520d2d6e165096", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=fe819b23916cc9824726717ab\\&id\\=fbb0625715\\&e\\=3a1caed376" + }, + { + "hash": "3df9500a4d5f400ad5b6ebbbbd283ac4bc314c9d611e735364e6068d28398481", + "regex": "." + }, + { + "hash": "7da867fd833112708b9163e9a1532e74f4f0f8857aa59a3f43520d2d6e165096", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=fe819b23916cc9824726717ab\\&id\\=de77154bd9\\&e\\=3a1caed376" + }, + { + "hash": "7da867fd833112708b9163e9a1532e74f4f0f8857aa59a3f43520d2d6e165096", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+click\\?u\\=fe819b23916cc9824726717ab\\&id\\=c4a67aa013\\&e\\=3a1caed376" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+ali\\.html" + }, + { + "hash": "079ca346e9f77948e01bb58cb7e601583988c64e2f3bf683971a962ccd29dca6", + "regex": "." + }, + { + "hash": "3be3ce0834013509ded66f03d23561bcb45e130c25ec4a7bc2b6c29bbdcad992", + "regex": "." + }, + { + "hash": "1eb88c43a0770ce8777f5574b16b06b1d96d228e556a81154cb8db1abb356597", + "regex": "." + }, + { + "hash": "9c95fb9e479ec362de91a879bfe1766b547423fc047756eef51d817ff7642adc", + "regex": "(?i)^https?\\:\\/\\/nisanth2590\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "53dc807850ba64699425deb06164fc427e812c43848d9959c0873ff2f93bab34", + "regex": "(?i)^https?\\:\\/\\/tarun385\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "36726bcd75114b3d577aeefbf21e0e3fabcdecb634e2949bc961d20b7a7ba001", + "regex": "." + }, + { + "hash": "ae82134190b174283731b0ff822f74efadfc04dd61e1870ab583275b69ec741d", + "regex": "(?i)^https?\\:\\/\\/anee769\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "05d526f129cc7d70c494faa6b7b0cf6d584af93c8db8deffe015c5f033697740", + "regex": "(?i)^https?\\:\\/\\/jayjadav221024\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "44e0e31363d557a4c8594e8926fc8aba5bd5494a4c044ff8c746daa5f7521cc3", + "regex": "." + }, + { + "hash": "a7572cc3c530afb1d1baae2a5902761cc93893a218c95e8502d26cf49566baf1", + "regex": "(?i)^https?\\:\\/\\/chukajoseph99\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "14e81c5e569a99932d8067b77cce2472ef03517d7d0deb748c8cfbdd748b50c5", + "regex": "(?i)^https?\\:\\/\\/ayus1234\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f15d812faad21d3d52408370879f0b9e29ce744b6bc6a5a8d445159c59be27fb", + "regex": "(?i)^https?\\:\\/\\/identifiez\\-vous727\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1df52f514ff3841e11d1e9dd263a97793931d01917d64bd448c24aa7fbff6837", + "regex": "." + }, + { + "hash": "f2c1b2943718e767001d3c3bb3cff9ec1d7babcffc942a2f04fa9f5fc015ee2f", + "regex": "." + }, + { + "hash": "f0efd8e15ffec6495f6e0a4b1de4b6414cbc776b06920307855ac87dd387bf48", + "regex": "(?i)^https?\\:\\/\\/shubhamdwivedi7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3ea646a3c4ac852970d4a09461cdf0257f1c7c13598268233f8d561b309beea6", + "regex": "(?i)^https?\\:\\/\\/sani01234\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "69ec6164176f3331a712cda21feca86a9608219c7b617744bfbd1cc9f1131b90", + "regex": "(?i)^https?\\:\\/\\/lixiri0\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f3d169b082c2edcf42c516b464a603d00175e8ae3b7068e286176425a7927153", + "regex": "." + }, + { + "hash": "18f2156b5c4ebb4affe175159a63976038902601cc67e876a553d6cdde2f378e", + "regex": "(?i)^https?\\:\\/\\/prasanthdeva18\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e42d625b3b09ab6b706acc88275922dbc9d5d5cc57282e1628bbbb8e66e25d34", + "regex": "(?i)^https?\\:\\/\\/marcuscps19\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6f5aadc96c5683bdab97aa551601982f7e764d9cdcb0732be96423b4c5529e9e", + "regex": "(?i)^https?\\:\\/\\/makananku\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de11197b2dc238abc541642f2068b55b2e84a957683f5cba32f2a2b4c580a157", + "regex": "(?i)^https?\\:\\/\\/dhemz21\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "caadb757845bef1fef9f2300dcc1abfc3e2f790fd13beee3e5d689e53d2cb7b6", + "regex": "(?i)^https?\\:\\/\\/muhammad\\-alley1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "af51f129fc3c129ed8b405bedc451a5d1c4c18c088fe187d54624a92e65dbb35", + "regex": "(?i)^https?\\:\\/\\/dhananjay\\-23\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "00ee0a76fb7752a4f1b2d2da431f82bedc62eebb826fc9b9803025f49d6d5b69", + "regex": "(?i)^https?\\:\\/\\/mrhemanth2002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fe97e774e8fe883aaa50e398a696541162dee24d08e3d2dc7d5989aaea9a95cf", + "regex": "." + }, + { + "hash": "bfdf1d47f5e916266493d654b2d4f6a1e2ace8532562732416a3eec5c4c0977b", + "regex": "." + }, + { + "hash": "ae000fc31d4f6db4fcc63448fbcdad416f41c203d0b87521391ba2b8aee14e12", + "regex": "(?i)^https?\\:\\/\\/sunil14701\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e387326840a39a1ce3a8e527c85e704dcdf588bd9048ddab7598dd0202a423fb", + "regex": "(?i)^https?\\:\\/\\/rickymccallum87\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ae40d1ac720341298159e58790a537c500c259dde9142a2c4be1a2d712bce53c", + "regex": "." + }, + { + "hash": "e3976add0f1cc04a43ce50e3f8de64259b120bea4a434d4abb18df56678034a5", + "regex": "(?i)^https?\\:\\/\\/kumaraman14\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "dae374962c6fc83aeda7f868ec505fa0cbe310704b5583c88e9d1075e0285164", + "regex": "(?i)^https?\\:\\/\\/sravya6991\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "24555cf74ac0e93a05b32a059bb51c868430053afd43c368465544f4eb1788d8", + "regex": "." + }, + { + "hash": "e62bbe66cf507ad61846497bad4728732f0e3bd203292c611e0036ed140bee2e", + "regex": "(?i)^https?\\:\\/\\/ahmedraza1234567890\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7fd8b87a86a5092746369083f728c400a721d2a418d0b18092046ce57c7ac058", + "regex": "(?i)^https?\\:\\/\\/gauraryan1502\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "aea552c0b7db8886f7922bc4ee8bfb3611ecb585bd0a4c2dd5d59463698e8654", + "regex": "(?i)^https?\\:\\/\\/identifiez\\-vous2711\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a226646efb93ab72bea92ac49156e55c080fd962285da35ec4cd96dae2ae79d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bitrix[\\/\\\\]+blocks[\\/\\\\]+bitrix[\\/\\\\]+aa[\\/\\\\]+wetransfersharp" + }, + { + "hash": "c7d13799ac95ecbdc36becd6b95f24460dfe50c2383ccf39fc381473046f7be9", + "regex": "(?i)^https?\\:\\/\\/shubhama0\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "abfabcb7d97293bf140d1f8be686155ea19894db86a2b36c31cd9b9ecf661c30", + "regex": "(?i)^https?\\:\\/\\/ykp9\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+Os\\.html" + }, + { + "hash": "3b034d96f418926301c883377355020398850cbc68d197a1187d1724ef2db7de", + "regex": "(?i)^https?\\:\\/\\/teenagoyal21\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0973c15568827143ebd58f9ebc8c8b0ea763ef7dcc90f74f821343d89ee1793e", + "regex": "(?i)^https?\\:\\/\\/lifestylez007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bbd6ea3291d3d1fb6e2b626af560e481f173dcd9a67a6a2c117bad11b7c48128", + "regex": "(?i)^https?\\:\\/\\/th0921\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ce93c93f047ebedeceba47f9ebd5f03fee68dc4b08ac2a6bd295785ac747c8c7", + "regex": "." + }, + { + "hash": "558d2d24f5c662d7a440aa69c17383abb2b5405a5bed42cb6be2dd5add33407f", + "regex": "(?i)^https?\\:\\/\\/trustwallet\\-upgrade\\.catalog\\.yampi\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c76055d9d02ea3193f6300088d0cba0bc2eadaecec197f1058c5b818aa30d5a", + "regex": "(?i)^https?\\:\\/\\/kandan03\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f2aaedda8eacf822c15748b9dee41bb8cd4d0600c77f910af4bb22a84b95d016", + "regex": "(?i)^https?\\:\\/\\/fsdfsdjhufgufgyudydfhfhdfhdh\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99d49e0d600939999bd7472bab9c0aa01dc9d062e21cc01c901c2af0efe1bf0f", + "regex": "(?i)^https?\\:\\/\\/samuel1313s\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7567a6aece54a831183db25bcadaa9b0f7758e3c95d972feceb891fc3c48ebc3", + "regex": "." + }, + { + "hash": "9fc8159aa350672f733838f461e5d467bb7c1faf4984e04a9982e67467931419", + "regex": "." + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+gi\\.html" + }, + { + "hash": "3265c44593edf87662b10b93760b05b5faae9ae4b5b1f56192743583e535566d", + "regex": "(?i)^https?\\:\\/\\/morningstar\\-93\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1a3fd9fc5e3bf153504f4719c33f05f89b866768530bcdcd1e863d43f8b8f640", + "regex": "(?i)^https?\\:\\/\\/comoterrobuxdegraanoroblox2021novembr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5173a5bb7d9a05214850d120d43492a50e29561910aef404af1a9302872246f7", + "regex": "(?i)^https?\\:\\/\\/robloxdemovillecodes2019\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fde678ba2f2e4eac1a4fa8d37da3c7b4c6d99dbd460518ec0907171b22695afa", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d18b3c6f80ae6b31c9b56c8ec470835f846d162f3a49d947d5daccab121212e", + "regex": "(?i)^https?\\:\\/\\/howtochangehairinrobloxforfree\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73f68400a9f901fb35c1162b2f35d96072a8f6f44481bf295f599fdc2162d96d", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da229502ac13d744d3e4c4cd5e5b4293d7404006cf49cdd3722af8d271547b1e", + "regex": "(?i)^https?\\:\\/\\/comoentraremgamnesdorobloxquecustarob\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2daee3c292231a7ee70cf97a7b012b3762c52e11086b95448dfea07b125f08e1", + "regex": "(?i)^https?\\:\\/\\/robloxigotrealfreerobuxfromgenerators\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f2e7f8f1a4eb746a3d8eebc61c84f0cc6d90efbe6267c311ab1700f6af83976", + "regex": "(?i)^https?\\:\\/\\/robloxigotrealfreerobuxfromgenerators\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81b4487cffe793ea54656d99a28eec79219605b3d9d9a8f4e29d0b52e4dcab74", + "regex": "(?i)^https?\\:\\/\\/robloxigotrealfreerobuxfromgenerators\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3226cd30e8f907655f22f529e2b94d4c815c8466f844a2d3949e1c4ebba8c076", + "regex": "(?i)^https?\\:\\/\\/robloxigotrealfreerobuxfromgenerators\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2613fdc44b592222773a41bfea37fc2f122e2d4aa32a9e6bc9140a651e724141", + "regex": "(?i)^https?\\:\\/\\/unjailbreakrobloxjailbreakhackdownloa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0887c144ade2c5e4736ca892c0c454aaff032d0639fb3d0b41eebd8cbc48934c", + "regex": "(?i)^https?\\:\\/\\/robloxminigsimulatorcodelegendary\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbbf0ed20ae1feda771c15c893e3dbee62e9a30a295740e93354cb81d8b180a6", + "regex": "(?i)^https?\\:\\/\\/aswin531\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2ab98511f875a8e927930f7adab77a6addcd908b5524cd95ddd37b9ef4986caf", + "regex": "(?i)^https?\\:\\/\\/trynottolaughrobloxedition\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebf247f1ddd7c2b4c4c4af48da943e4718e57b8ce7eeba537c6873837cdfa5dd", + "regex": "(?i)^https?\\:\\/\\/robloxvalentinesgenarator\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa81fd9f7ba8ac834e0f93765217d396cdcab16b0f182341454e930205c90e56", + "regex": "(?i)^https?\\:\\/\\/jogorobloxtheincredibles2\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ef20b031163d29ca06f7913ef4ca96f5f4420ab6ae278cdf6d0213182ad69ad", + "regex": "(?i)^https?\\:\\/\\/harsh\\-616\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+uig\\.html" + }, + { + "hash": "94b2bf04666a13e7b64458ae94a27c19a468c294fdf1394cf6ac8c78da07af50", + "regex": "(?i)^https?\\:\\/\\/isrobloxshuttingdoen1\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b8de35f2112cbbe74a30b7a7741c1d33fd0e340558ee11a0f63736463dd57c9", + "regex": "(?i)^https?\\:\\/\\/robloxfor22555666600000robux\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20fa863ca79d47fc3949b10c3468b21bf28f606c118b0cc17aa0b9ac6847894a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "2a7a60153e8fcf9a624d81b98d58caf251737be9c4c2aec8920e18a7c4db2a37", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "cfdc0cf3eaa38f9922c2c19e8f86db248eb0c2cab7d7db0129fe117d98affffe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "37655dcf0f721b7db8f8758972b3df2214e6d8a71ca70186fa4dee4825071969", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\?m\\=1$" + }, + { + "hash": "31a64f3adbf9d7612d7ebf6470907577ec8f0f0b71361dbbf9ef99819096fba5", + "regex": "(?i)^https?\\:\\/\\/decalimagesforroblox\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "745494b3627032a87803617c2bf93cb5f2432415055fd88f8723e053868b5bce", + "regex": "(?i)^https?\\:\\/\\/decalimagesforroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "547a90a5e5e6b6a4738ff305760662a638a6e83d19c233c4e72b1d84745e53e2", + "regex": "(?i)^https?\\:\\/\\/decalimagesforroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ad706abae7254bbb9a9221831f0ca68aa75476808ef7cfe672170186d8dc13c", + "regex": "(?i)^https?\\:\\/\\/decalimagesforroblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a13c1cf581c1f58655402f997620d5651fe5e703cbf521af4d4c6534b9fc6840", + "regex": "(?i)^https?\\:\\/\\/decalimagesforroblox\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0408db3ccd587c5dcf50d2793bac4d38e31a08d7b000686f4ba47dbe2b3f69ec", + "regex": "(?i)^https?\\:\\/\\/decalimagesforroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90932448327d7d9a0d327384878cb8ef55ad69bec7fcdebea4ec66363210ac5d", + "regex": "(?i)^https?\\:\\/\\/mohdjunaid55\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9584589938bf0679d3919b41c1af630eb00f4631be3de0a7f14fb94cdcf71cbd", + "regex": "(?i)^https?\\:\\/\\/gautamsingh139\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "46546c0ff9119aceffedfb5b6172d8ce4517b365c49291da87620f1906ba8868", + "regex": "(?i)^https?\\:\\/\\/vignand29\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3d219cc987ec40efc5d47e124d6f233ce74b7d5624ac67e7071483cb84a52072", + "regex": "(?i)^https?\\:\\/\\/kirito130\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c96bddfc2a80bf1aa39338a8fa1d060adc51d2d60833786b0fb61218a4be50a8", + "regex": "(?i)^https?\\:\\/\\/serviceorange7\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bcc0fa57390f1317400a17a97ac297c75818c3734dba1670ab4cc8a7baf56e78", + "regex": "." + }, + { + "hash": "7ebc42913c4e5832181b723b73af4bba85ff938c2c2cb42e7b11b59c845a29d4", + "regex": "(?i)^https?\\:\\/\\/dineshk3012\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "98d512e9be82ba612745ed6807e420fb2f81dd4669e1640d456e85145ed263a0", + "regex": "." + }, + { + "hash": "3a47d9aab3615102f587464f944295390dc88394c8ab65c1bebea3397651b0c1", + "regex": "." + }, + { + "hash": "d0e0e0a2f04bccb1d8762c1111d6642e6125ea61896e4bc6d2de0bb89cedd6b9", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d547cfa2ef1a329ae122627a0c103cd13e8e836711fb9d66573f28ffc0014fd6", + "regex": "(?i)^https?\\:\\/\\/gautam5514\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ad62a8aa7f9f970b5bed5fc84354717cfaec21f316b96cc7ae3d1e24740ca65e", + "regex": "(?i)^https?\\:\\/\\/laxmi0501\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2d42cb7abdffbc2c3e6a1fb37d63eb3c13433652ac8a339aa8df781df2c63301", + "regex": "." + }, + { + "hash": "a1b3d50058ccc88dbae90a82df19290e192a797aff3ec4173c007376bef04bcb", + "regex": "." + }, + { + "hash": "6fd828899d975372f9ee91a8f1061ff12fbd3d903dff05d0fa24f4f84591ed1a", + "regex": "(?i)^https?\\:\\/\\/pranali2624\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "57d2a28c54bbfc26d4fef21d5d150b3f77e297ff292131670b2a8a85eff2effe", + "regex": "(?i)^https?\\:\\/\\/asklasopa816\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e3e77aaa5b2aa465be8a292b66b918391804f713a95332d10386017166a9fc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f20401b56a23707541553a6a339d24dd383f13456197712b77b2d8a0a3d0a37", + "regex": "(?i)^https?\\:\\/\\/mercadolivre2022\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c90347b6b4f14a01114413dcfa64d4ad9bc1b0f282b4a74374f4c0460bdd103", + "regex": "." + }, + { + "hash": "c3921aaa59b9e85d6f09242a053cb134a50c806de561e056c31298ac456ad71f", + "regex": "(?i)^https?\\:\\/\\/neerajshukla29\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "667be6bd8681c34e44f6b8ccd8c6e0364121371cb27cc9b6b87473d61695a420", + "regex": "." + }, + { + "hash": "bc0d76412d05ca7daa4be9075c9ef3ba12a20b24c1b30a87226f10bfc89d6d99", + "regex": "(?i)^https?\\:\\/\\/gracegrace23\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a484b388182f2db871ec48b1040e094cef20f42d3f91cf7d5b75c4422acf353c", + "regex": "(?i)^https?\\:\\/\\/aravindakumar0027\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+login\\.html" + }, + { + "hash": "b33bda48dcce7339b6080ff629a1d64999efb8757f72793201e71226fbeeae87", + "regex": "(?i)^https?\\:\\/\\/cmslasopa928\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69e603b1e2da84413bb1cbaa0acfe5fc026812fb57b11a1fb38f35b69246250f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site$" + }, + { + "hash": "e3f759dde2002a6617721ef82ee0d3e7cf0901d436a94aec8aa4680d0b70e87d", + "regex": "." + }, + { + "hash": "604b509fe71cf2c38d5436c8a2eed2791ebf5c12cf0cce57b6a46191eef77ce3", + "regex": "(?i)^https?\\:\\/\\/sreeja\\-reddy\\-2004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "df0cbbabeebfe3bcd2b0b573d0c01f3cd1d68d577a810b442447e904a514faef", + "regex": "." + }, + { + "hash": "f4ba878e42aab88c3da76d7381e941ca9b2591dfbc40d83a7953b0c0a39c1846", + "regex": "(?i)^https?\\:\\/\\/geopaul94\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7454e214a70226c0136225084d6d7b14ac958785bf4855cbefd2a470768263e7", + "regex": "." + }, + { + "hash": "86516ac5c67e39372cbca394a18e54f0da84ca1f2253aac35b36ce4c0d22a4c8", + "regex": "." + }, + { + "hash": "0a6fbe9ba64b1d8916010b3013b08c232a1a0bae6cea400bc707f75898eb57fe", + "regex": "." + }, + { + "hash": "5c61574332b1e883a2fba4029ab976419dd07886d964b9752d47e54edba08621", + "regex": "." + }, + { + "hash": "efba3e6b9ed281ffd39c4d5bc2547f33c92bdf978525bde04ccf57af5657741d", + "regex": "." + }, + { + "hash": "b0138bbacda0a7e2e535124d4fd41b74908c41d6c17253a2aca6c92ee7cfa469", + "regex": "." + }, + { + "hash": "94d67a1a2e3d515f3bcd2861f9bfa8d9d4ed532cbe0007439a04bc37f59515eb", + "regex": "." + }, + { + "hash": "a7e323d67b25837528fddf1c170f2f7b3bf98b6d912b712527e2c9480634129d", + "regex": "(?i)^https?\\:\\/\\/dai2dai\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2c1310910e77f452f4b40ccffcbb69e6b795750fbf63079a01a930e2de15c280", + "regex": "(?i)^https?\\:\\/\\/ligne\\-orange0\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a19db9c56a97e180336a70a4ad58083d446abb8b9312cdfc2f22a4c97f16cb67", + "regex": "." + }, + { + "hash": "0f7115ec7cb1d9e3957556fe6de49ba590385ac4f21c905e859c3ae25e92f24b", + "regex": "." + }, + { + "hash": "497650ca1c01ae49906e5241bebfab9b3b39a9fd93ea4e5077dd36e5fcc870b9", + "regex": "." + }, + { + "hash": "b90c2883e734713de1247373618211266adf207391898b1b75751c17b7a069ef", + "regex": "." + }, + { + "hash": "6a48cda37a92e112ccee404d756392da778340acae8b3fea74ae57daa8274c06", + "regex": "(?i)^https?\\:\\/\\/rakib00\\-dev\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "54a6af5757f3bff9de3e1ad507c63a4429af6a38148d416d8e127ad2b52e88d9", + "regex": "(?i)^https?\\:\\/\\/adithyavishwanathulawar07\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "221f5d13b99b8527437f9060fcab915fbe5855147aca0e3c678812cefd5783f4", + "regex": "(?i)^https?\\:\\/\\/rohitselokar15\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "680e07f2a37108c21a4bc1a579243eeb0c6d85939862b84ff2bc228e1c85c924", + "regex": "." + }, + { + "hash": "45ac4081184ba91283bffa568895730d3906f7a66f48ecb3cba6c1560309ab7f", + "regex": "." + }, + { + "hash": "8603eb251ef6babbfd0b48bfc9e14b9567ecb640062a92e9a8a4067600279b93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\%20(?:\\(|\\%28)19(?:\\)|\\%29)\\.html$" + }, + { + "hash": "a0c034f7edb5557341b6a1b8a5debd6f2d0d31a03700c5cf3f5295f3afbc21d7", + "regex": "." + }, + { + "hash": "00b38c142c04c823e61739af917e93826a9b00306cafe716678f8650273d10e7", + "regex": "." + }, + { + "hash": "180eeecea0ab2a2843ad534f4f3f763092de106d3bdb51a7e1120962f6b9d8f5", + "regex": "(?i)^https?\\:\\/\\/pedroendrich100\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0667304745a81f8350919681c5cd14f71da2ead7f48849216fa79688cc409220", + "regex": "(?i)^https?\\:\\/\\/jogoreddressgirlroblox\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "493b01e4982e90ce8454cd7f2f561da851f9389c876a7b3ad011e7fd5064468f", + "regex": "(?i)^https?\\:\\/\\/jogoreddressgirlroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6f7e87a5e871d2df762257e47db8851859c48ab315a6f721dd2c79d927ba33d", + "regex": "(?i)^https?\\:\\/\\/jogoreddressgirlroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d01e3ae1ad3d789238236d30d9727a6a69de1dee5f6ee767948754aea5d99d6", + "regex": "(?i)^https?\\:\\/\\/jogoreddressgirlroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93b8fcaddc874e275f91386f96bb3ceab316ba1bf761aef8dd9e0ce162e1f602", + "regex": "(?i)^https?\\:\\/\\/jogoreddressgirlroblox\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e9b1ef4111d6e8f749cc62d364901e1cbfe579bedf53757b4c54bb520cbaf92", + "regex": "(?i)^https?\\:\\/\\/jogoreddressgirlroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12795ed58731f4eb40c207762658ff99257234b9773f89d831d901137c09308c", + "regex": "(?i)^https?\\:\\/\\/jogoreddressgirlroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de50045d440d9c8965723928067d3e7614979cfd146421c042363679aedaf002", + "regex": "(?i)^https?\\:\\/\\/jogoreddressgirlroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca5fdc9ae4bb8ebe54dd960d3e325b95941ca0b9adb627c81f2b820cf7b5cbce", + "regex": "(?i)^https?\\:\\/\\/nishantn78\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "65a8dca9ef233bb9d8c3d64a2114cd0b20fe95fb5fc12286e5390b0f20a7e010", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca06c170c1449bcc0d553d00df3e72e1130c811a13607b64a13f00bf60ba6418", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78a7eb47b1e98c1de3c04ed613a8e4dcfd9a5824bfd22c07325859438e6c06b4", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "090200048092c61b8eadd6af6a45fd81951fb3fc2c9961b99ffa69ca4e9305c8", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5612e769ea5f28d9f392e95bcfae39cb798d5ed381610abe122c281ed680bb5", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3360d0ec4ee948a3236976f68f2519131814a26e5a25f9f04aa04078d657cec2", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61697443543f13c13fc8b8b151458d4d4792f75844af274bcfdaf9ea15976ded", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beab2ceff47e66a9846b421ac8b92b99cf94a5e876471a4cdcea66a183c4a124", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0582af050dc109a0b8c295d0bcfd973f99be976d1f0a09b18c84539ab4334c1b", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a7ff9679b9c6d52afa93a14cf9ef053d80280035ab9072b0630143ebfcdf8c8", + "regex": "(?i)^https?\\:\\/\\/ngllellomci\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf06bfca5e88145a27e3ef7715312ad1919610d9a6f43a573b6b054e45e27db2", + "regex": "(?i)^https?\\:\\/\\/robloxcodeunboxingsimulatorfuriousjum\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "948f461803c5c93f8f7b3bdca190d55a9f46718cfccd27375cde6652f4c4960c", + "regex": "(?i)^https?\\:\\/\\/robloxcodeunboxingsimulatorfuriousjum\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "055dda24151c7862543efc4cf85e5465ea6e3e5cf97f2ee1ee328a8f65c5593d", + "regex": "(?i)^https?\\:\\/\\/robloxcodeunboxingsimulatorfuriousjum\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8db81ce0c568ddf0e6a1e274f5edfdbfbf73ec1f6be9c58fda586f175829bca1", + "regex": "(?i)^https?\\:\\/\\/robloxcodeunboxingsimulatorfuriousjum\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6e5429b93304545fe1e3b81c3f72ff9be2e37aaad7c1ba2d3d6834bcc9e8edf", + "regex": "(?i)^https?\\:\\/\\/robloxcodeunboxingsimulatorfuriousjum\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fb3ad8bfa5f3ada03568109fa468a03ee7b8317eb6c8453036c7c24cf5a43af", + "regex": "(?i)^https?\\:\\/\\/robloxcodeunboxingsimulatorfuriousjum\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdedaf4c8279ad2e0ee7c7dec5a66184fd9029ca46dd9b0db0b8401d21163fd4", + "regex": "(?i)^https?\\:\\/\\/robloxcodeunboxingsimulatorfuriousjum\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffda2b8d5738f789638db769e72144b10ed78824f80f88bf3938a8d61dd23997", + "regex": "(?i)^https?\\:\\/\\/robloxcodeunboxingsimulatorfuriousjum\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3553e538e051e2ca7b6bb41cbd83d33690c615a4a8152687f324bc6dc688d803", + "regex": "(?i)^https?\\:\\/\\/orangepro949\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4624df10b4a2dce9592760d666fdef3770df4760badf195471237145cda685e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sandesh\\-s\\-hegde$" + }, + { + "hash": "63b012b4d8be58157d4bc7a81aa72e3a95e36fa384149c9d4d58309b0724062f", + "regex": "." + }, + { + "hash": "9fe18dbd72fa270243d4bba29f89182d4f9e09423e38af6384f6c75be983ad90", + "regex": "." + }, + { + "hash": "d713c739d302ce409c179125a4a67befba6d6d03084c83f770064d93f69e2196", + "regex": "." + }, + { + "hash": "7b6d2ef59d7d1dc8d29fa682b26ec103d5e286e63cdd5885a22a45757cd84474", + "regex": "." + }, + { + "hash": "99354415bde87b99dc239ec450b52712fd359c33494b54247b5d002badf144b6", + "regex": "." + }, + { + "hash": "5ee76b7020cc233beecfb9500214cd0e4e9e7be18a1a292d7a149b9bc1a4404a", + "regex": "." + }, + { + "hash": "f8d1d7d8c4a96d60b14cfec71ff7f0dc169bb735c0166513535936d47a2ee639", + "regex": "." + }, + { + "hash": "63dc04b020167f9dcd65a8f1502f30ea43915c2cc15ea30fe960f1bf3dca0c60", + "regex": "." + }, + { + "hash": "cb951e22797583f1d7f7bcaf3e0e6036ae4f237d72a881e0951f48e03194f192", + "regex": "." + }, + { + "hash": "28479ccbc40f833866bc7a618de73ac7bac7ff74939322fa544a57d37a44957e", + "regex": "." + }, + { + "hash": "41dd919551b627a16309ee54ca8119a410b010e67f3e8bddec478c3877cf49de", + "regex": "." + }, + { + "hash": "39e2e6a9cc05bf93053434d964ff9d547eeea82b5f27c570c64f9446a618920a", + "regex": "(?i)^https?\\:\\/\\/feresheten\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8809451bed74308e13a667a4153700a146750215f051ec5762e6dafe43c9557e", + "regex": "(?i)^https?\\:\\/\\/feresheten\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c92a225214143964e7322c37366052f036c049aebb8aff76bd1b552228941c4", + "regex": "(?i)^https?\\:\\/\\/feresheten\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c829fe1282d14aef11615d2ba2152132132d0d8ffc9f0a8beda509b244c69d24", + "regex": "(?i)^https?\\:\\/\\/feresheten\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "914c5f9898ca522caf9ce35618453ec7a62855d9b2ebcf56d56765994a5619dd", + "regex": "(?i)^https?\\:\\/\\/feresheten\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f71c912ffba05d5bfea91d3731857d3a406b8327384884de668322a785a415e6", + "regex": "(?i)^https?\\:\\/\\/feresheten\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bfa8b6b232492a6b28b2f307d9954a22d4b66ed36e20ce61bf615053d0f78cc7", + "regex": "(?i)^https?\\:\\/\\/feresheten\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "178d215742f978ed85967065302c4410af3539d46f4390594a40375e40e88fee", + "regex": "(?i)^https?\\:\\/\\/feresheten\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b07fb39701067eb9ef01a21f21b48330a719dafb73693a8e544e446a15a7b0b4", + "regex": "(?i)^https?\\:\\/\\/feresheten\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7173f20af7345184f42824e928cf996ad943d6c4440f0c0e329c84afa227d7af", + "regex": "." + }, + { + "hash": "d064cd31ef9eb7d41368e7068c3d662ab3e8d9b90eebd9515f4850c5f68fa98d", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ec8dae7afe096e199a27ca4006b495f32f81f8ed70084f595f4d22a590b5fb1f", + "regex": "(?i)^https?\\:\\/\\/adnan1998\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fd42c0ea529925db995a28a1f8f177c70ccee8e8c05219c233409c47b43fbc8f", + "regex": "(?i)^https?\\:\\/\\/marceloferreira39\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "727e8eb4e157a1fc785f26442157d90d302aef6d436ceaafebda8a7f0d3e55aa", + "regex": "." + }, + { + "hash": "57d0cb461a0433f7e001b61efe1f21143e4dd074b285c89bec9c6b6e20793925", + "regex": "." + }, + { + "hash": "408095233aa2ecc2ed960a510e5feda4c91b6102a544365275e97fd54a523948", + "regex": "." + }, + { + "hash": "7a851a35c636a314c82b5667f8e534dd7fda3b9dc739af07d09119c5807f263a", + "regex": "." + }, + { + "hash": "0747e6eb48e92220384e6d1d9d0123ba6d3aed7041af3bd042b4b1ec72ece1e7", + "regex": "(?i)^https?\\:\\/\\/manishray07\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3b3aaea639f84e692304051360abc1d25d8254437d4ebfb75e5b9d249cbfd09a", + "regex": "(?i)^https?\\:\\/\\/rshashank28\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2c175cb9bb0a3efbbb1300ed34ffb3c02bf98a996c32eb5ebb5db62116f11d6b", + "regex": "." + }, + { + "hash": "f16859bfc28ee69a0c15ff688c68664ef070d106084296f3baae9012445423ac", + "regex": "." + }, + { + "hash": "508593883c3e23b0926e936a1aad58ef823696322b79992c227d347a7f65c1be", + "regex": "." + }, + { + "hash": "39e2e6a9cc05bf93053434d964ff9d547eeea82b5f27c570c64f9446a618920a", + "regex": "." + }, + { + "hash": "8809451bed74308e13a667a4153700a146750215f051ec5762e6dafe43c9557e", + "regex": "." + }, + { + "hash": "7c92a225214143964e7322c37366052f036c049aebb8aff76bd1b552228941c4", + "regex": "." + }, + { + "hash": "c829fe1282d14aef11615d2ba2152132132d0d8ffc9f0a8beda509b244c69d24", + "regex": "." + }, + { + "hash": "914c5f9898ca522caf9ce35618453ec7a62855d9b2ebcf56d56765994a5619dd", + "regex": "." + }, + { + "hash": "f71c912ffba05d5bfea91d3731857d3a406b8327384884de668322a785a415e6", + "regex": "." + }, + { + "hash": "bfa8b6b232492a6b28b2f307d9954a22d4b66ed36e20ce61bf615053d0f78cc7", + "regex": "." + }, + { + "hash": "178d215742f978ed85967065302c4410af3539d46f4390594a40375e40e88fee", + "regex": "." + }, + { + "hash": "b07fb39701067eb9ef01a21f21b48330a719dafb73693a8e544e446a15a7b0b4", + "regex": "." + }, + { + "hash": "f4a8d3bda761d1095f58552fbbaad7f566ff01f0ad969f437d67db0624cdc04f", + "regex": "(?i)^https?\\:\\/\\/williamdavidson\\-02\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "63b4cf5f419acb30abc57d18411fa2be5afe03c04dd8f63cb7a5250cb811be75", + "regex": "." + }, + { + "hash": "deff6820979a0da3e4e7af04ee47a7201a81aed3196358380ac3b113bac06860", + "regex": "." + }, + { + "hash": "7a857a49371a8605e0a43e3f0c5eaf761503eb9d40d98ad31399c73867031ff1", + "regex": "." + }, + { + "hash": "27268dd94dc3462a63eaff1c31e12e4441f6e371b58141f99ea6b92b1fe5b578", + "regex": "." + }, + { + "hash": "65a8dca9ef233bb9d8c3d64a2114cd0b20fe95fb5fc12286e5390b0f20a7e010", + "regex": "." + }, + { + "hash": "ca06c170c1449bcc0d553d00df3e72e1130c811a13607b64a13f00bf60ba6418", + "regex": "." + }, + { + "hash": "78a7eb47b1e98c1de3c04ed613a8e4dcfd9a5824bfd22c07325859438e6c06b4", + "regex": "." + }, + { + "hash": "090200048092c61b8eadd6af6a45fd81951fb3fc2c9961b99ffa69ca4e9305c8", + "regex": "." + }, + { + "hash": "f5612e769ea5f28d9f392e95bcfae39cb798d5ed381610abe122c281ed680bb5", + "regex": "." + }, + { + "hash": "3360d0ec4ee948a3236976f68f2519131814a26e5a25f9f04aa04078d657cec2", + "regex": "." + }, + { + "hash": "61697443543f13c13fc8b8b151458d4d4792f75844af274bcfdaf9ea15976ded", + "regex": "." + }, + { + "hash": "beab2ceff47e66a9846b421ac8b92b99cf94a5e876471a4cdcea66a183c4a124", + "regex": "." + }, + { + "hash": "0582af050dc109a0b8c295d0bcfd973f99be976d1f0a09b18c84539ab4334c1b", + "regex": "." + }, + { + "hash": "5a7ff9679b9c6d52afa93a14cf9ef053d80280035ab9072b0630143ebfcdf8c8", + "regex": "." + }, + { + "hash": "18d1e0000a96b4e16a2d0c0b4ce402c06b5a20f41ad9d0fccd88d0e3d878ebbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "2fd24ea34e574e53edfd8ecbb4a9b705c90d111d445c988e6ab2f4d7331f35d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "56efc416f29897e6e798aa47a7f99ddf5e89d18f5dd9ad9ebb0dacf61cb2cfdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "6702156c3d0933199ec47e9849adf128c5d1e6a382e5e4aa3d2baaae2aa34ef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "de110efad2f6203d7be4aab5a89c1b17ebf174925342927a28434fa0af205216", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "30f7eb777ca8e0723ca2aad65880b6c2af6087fedc24c430deef7feb68df521d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "941d284ec13608c7a223d87c6a385409b6dddbadb46959b8d4eff3c331ba8284", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "a49fd14049aa9bfdd28108a3f3f8c48dd1e676b5217eae596439d882fe4e6c94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "d2bda71ab4cf4efc067a40f7cd863cc4d9f188f4dd82f6c02cda20b9facd80a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "b07230a5892a84a380d3c7504ae6bcda7b0e005e486e7945a0fbbf72043dfb0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "529b99254f500be0147ab5f8cba8ec9d522dc17640fcefee713b204f51bd7b87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "f55b2e9e261c825078a92210807fcb93e17df9da30baa0c16e42fcd0ef46cf50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "25fe39ccc198c0935a3891481e18210528b08325958aaf9f8979e60f312c0999", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "49cf910a3150cba98046adf09d23fba8a44e710decb254bfed9fee95aa1862ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "620481b0c982eab3c656b0d545b32c47ab4bd6262c9e2a841cc83725cf0321c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "544dfa383b937ba5920c84a61bba0e9adb23d471966e27232a3a0da158ab1bac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "957a28b36370b080f1e478ffa9d66cb2bcc211034f8f3b0cfa429526cc5192be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=FooterBanner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+pub\\-400bc37951f547a5ae17fe8b56d4d871\\.r2\\.dev[\\/\\\\]+direct\\.html$" + }, + { + "hash": "ad45d854c5f3ff676955c061edd86cf5be42ba8c9f2fb68ec9106c5734b8d0fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+center(?:[\\/\\\\]+|$)" + }, + { + "hash": "77e98576123d5d2194ff72006088d932db8ca2cafc376ebc157b09a4e24f389e", + "regex": "(?i)^https?\\:\\/\\/aswin22244\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f60e084788769054202d7f1eaa977228caeb0d7741e8c33b0fb23d4c76e22d33", + "regex": "." + }, + { + "hash": "6a72e4c00f5e87eb3f374aca8afc154e6605c17063fa61f62585cbb7ac733a59", + "regex": "." + }, + { + "hash": "0de65d6f67985d1d5494e1f07db30c6c0673fc393b6bf6b3017a1b92e729a533", + "regex": "." + }, + { + "hash": "05da3aac75e6e5ec2774349313818529ae102e710a83b91c8d806dbe2d04034d", + "regex": "." + }, + { + "hash": "093aeb8710ab3eecf24509daaac23d6a9c3b57e55c6cffe5948b3871b232a285", + "regex": "." + }, + { + "hash": "490c73c8aa3edf8a71ddba4acb44c4f91328a9a0cbf06e739f920c5bf5107e9f", + "regex": "." + }, + { + "hash": "461ce9c6170f7db3d866ae9de1cd6fa862808cfde3b600fd2ea54779587f49de", + "regex": "." + }, + { + "hash": "436b9e6ac09426dd79326e2eb63af4d2524edf251089a9415c03777e2a24caaa", + "regex": "." + }, + { + "hash": "ab5ef9adcd5694b552a630fe0ef6934766308f5ae31c99cbf9aacb88ee073d20", + "regex": "." + }, + { + "hash": "de8202a4e9012caecd0f48e4c735d3c737b0c69e3aa87db70f3a5cab7abfb930", + "regex": "." + }, + { + "hash": "2d46490c36e2fe8e796e4493eead9b7cc0993a10f8aaa1b4debd6fa9bd3f0205", + "regex": "." + }, + { + "hash": "aff1e487c34f2ba50a6041ec8a117e25368c2041c9f6ec64b77fbac223014e76", + "regex": "(?i)^https?\\:\\/\\/heeeeeeeeea\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "47617ebc217daad1dee23cc7c5c4640d337291bdff2cff88a136d33983f42818", + "regex": "(?i)^https?\\:\\/\\/heeeeeeeeea\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "749a2c263cc6a3bfdd347310e18a94d5a8afad57c6e5d685d6b5fb4b5861324f", + "regex": "(?i)^https?\\:\\/\\/heeeeeeeeea\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08c671533446829653dbaf185d226c008b1143741a2cb919f42188ec6277d1e5", + "regex": "(?i)^https?\\:\\/\\/heeeeeeeeea\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1251641120d15832dd47f27a635a86cdb5f1ccbe1ae90bc4cb5c14423d737040", + "regex": "(?i)^https?\\:\\/\\/heeeeeeeeea\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce92a13292c88a23aaa7f68f84c6b978c5ecc4f2a186f152c706709b38dad34e", + "regex": "." + }, + { + "hash": "a1d57e47a43683c3d1339111411100afffb4749b1f8bec52d4b39f7ed1e747c7", + "regex": "." + }, + { + "hash": "69e6886a5bda00d10f55b4900e004a7b7ff963dc2ed9eda14f946b91c0445522", + "regex": "(?i)^https?\\:\\/\\/dfggfgf6757878787\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fee15834ba043677219cdc61cf23c02c1ef2de701a0720e7559d85bd37f0ee88", + "regex": "(?i)^https?\\:\\/\\/alesson2903\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ae470030d9b5501d03443148113e69f0cb6b822ff9dbdc1cb5069e4d7aa3a728", + "regex": "(?i)^https?\\:\\/\\/anoopanil413\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6ff3a3b55e9e04eb3e56f3f8d590473f5cfa74bd6468276178f52984cd839ff4", + "regex": "." + }, + { + "hash": "61a4c27819fb8d5e393a52240351c8e0d6937ab3fcd4f8114196ebc4e4e0ace0", + "regex": "." + }, + { + "hash": "dce6c4d576f8aa34c33822d99f407a176652ea6b649789e32784360e4bebc2b8", + "regex": "." + }, + { + "hash": "6eb041ccae2ed7b35495c1b3d11c667f59aecb088e510fdd4a08c7e1618dc9ad", + "regex": "." + }, + { + "hash": "871e217a88c6d5fac9c47814395445a0c8d3c4878524b75384ba18a0c047868d", + "regex": "." + }, + { + "hash": "c04159796ec648103322051587e0f0a2042e23558af223deec16d8a31e6215de", + "regex": "." + }, + { + "hash": "d828d795dd9a7890594215b0b1a8d9ff435b948885f8ebe1d2872ada190919bd", + "regex": "." + }, + { + "hash": "098fa0539b5b6e673e9d7a93401394674f92e70b9799c19a53fcaf6e027b629c", + "regex": "." + }, + { + "hash": "3abd8868a08a81613fd85b6a17dfc0c26d1db4a4953d38ac3a42d89337066ea4", + "regex": "." + }, + { + "hash": "3d6c51dff444772c4e61db3b84fd671185d2b8111a1fbec4ae6a4158e4449aa0", + "regex": "." + }, + { + "hash": "9666192df8359226fd1daa90abba1bcd4b0397f878bd32a6c26e9982f0e641f7", + "regex": "." + }, + { + "hash": "97ca77d8d4ea048015756227148737424dc0e7c172c2d35e1a15a039a3b8be42", + "regex": "." + }, + { + "hash": "b90caeb74ae4afaac9690b74b34102f6462cf9100f8802d80570593d70db62b6", + "regex": "." + }, + { + "hash": "8d193cad7403224b908115e30981657ace5bdc9f40268705aefb03a46b9a43e4", + "regex": "." + }, + { + "hash": "47be90c90893ba8a190a777c67ef1dbc27645eb40a117a0f13e6c7167b8e8d5d", + "regex": "." + }, + { + "hash": "83c47f15ddd59719304cc1ffd0ea60779803819e31a8241d56d73515e64d695a", + "regex": "." + }, + { + "hash": "be264c51f1b0ab07a520ff1fa45388a414cf07f33cdfc50ce7ef0254bb9a52cb", + "regex": "." + }, + { + "hash": "b2465cc2663378a21141ad283e967ab25c0de8470f70e4252e169ee7ad8ebdd5", + "regex": "." + }, + { + "hash": "6a790228ff3635e47fd2ab0bbdf621ee69a8d7f6c608fe7683af4edd3584a785", + "regex": "." + }, + { + "hash": "c73acdcf6d0de7e6de9b87c727a97ca0bf7d98e07edd90be0ef4e7ebe696821d", + "regex": "." + }, + { + "hash": "a419dd53ca2b765b582070086c231074ce3e9b152cf4b25c6847b9cf22fe5adf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-2(?:[\\/\\\\]+|$)" + }, + { + "hash": "979730223c0faf40bcd3297c5e8c779351a3bfff63e5b43345125a2bbfe3450c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+xuEeXETGgUyEeDB2GvBsSX4FLk2uHpVC14yLC8mFQpshM_2l3kUc6E89FaIviuqF_eC\\-5F6Fso5f\\-Yd9iY1qxKJ86QA8NOmmTRZNLSqY8\\-NcCNVperioz_Ua80Q74hb1hD9YLA_Qy8qKqzdE0KrtQOyiS0rvmEnTgTHrt5m0CoQ8dUNrr3hptn1zvbOnfNohRQL3sBI9uVRhVwVKReOVm4lC1X9UO086Ws6sfP8KRQ_mTOmdtm_Tdn7hj2JmQ3ItrxQBIvvkCAGMGQqEvgXDq89_aAJ2OxUR4y_0ZEOhItRUut8QezqbBk5On832UEDqedvJRznmc0kptULX2XFPOFolxuHcCulODPl\\-YAQ5NQ$" + }, + { + "hash": "96226d843e602eac8b7b2ce7bfca6ae7bb26d1aaa5900bda81a93b79f9af4cd1", + "regex": "(?i)^https?\\:\\/\\/www\\.bet6405365\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e8117222a80b065a041b965772720ca7ffceba9f7c4205305f77fea4ce0a150", + "regex": "(?i)^https?\\:\\/\\/snapchat202\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12867cf23b06b28c3d8e6a06a1759fc450cc95a5993e99958e0fbda02be080fd", + "regex": "." + }, + { + "hash": "eb6b52f377cfc930c654cafefaa9164341a881602262c93e55767c17b09e4a85", + "regex": "(?i)^https?\\:\\/\\/ac10ceab\\.dachdirekt\\.shop(?:\\:(?:80|443))?[\\/\\\\]+fr$" + }, + { + "hash": "d3c5f0491cda4e4e902ea3db8de87316d61a661f21b1ef56d28e03f32c1ef4f8", + "regex": "." + }, + { + "hash": "628c1f5a85acc1265366d40ab8e330c035cb3f652665e603618cccce3ab82fa8", + "regex": "." + }, + { + "hash": "35d12d3c75951f4380b15c1e51f9c6d236e9aec47274d299f9a4dc023c868640", + "regex": "." + }, + { + "hash": "206caff5b0ddc6c5fdee32d00c4c08502d08ed146244a7746d1ecf328e7032ec", + "regex": "(?i)^https?\\:\\/\\/saptarshi122\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fc8bd5347415e83c98f327c272072db9376f578d1e814641b3c6697917826593", + "regex": "(?i)^https?\\:\\/\\/wedlock10\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c87f0973ca37933956ad65c2e192074fe5abf24c8ee6f6890a878965cfb50c07", + "regex": "." + }, + { + "hash": "eeb754b2794420b5137e1e54b8a412fb5402dce346bbd8a44a41a303c82bc72d", + "regex": "(?i)^https?\\:\\/\\/urbanwolf1804\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "79ec8c3cab92572afc61aad0bd57db741a61bfdbe9bb8971205bdcb49b1d87c2", + "regex": "." + }, + { + "hash": "78235e2bd2fcd01d6412be4333fe93354b6b25018b5f376550cd52f38fd0eca5", + "regex": "(?i)^https?\\:\\/\\/info\\-marecharge\\-transcash\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b7c7dc1b59f03e3bf62520945d4f37e0ee0f93774e9158511f0a257b8bafadf", + "regex": "(?i)^https?\\:\\/\\/info\\-marecharge\\-transcash\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a201ce728df087fb791e5ccb8e2887273f1bb67dda436b0d9b1611705c1e4ca", + "regex": "(?i)^https?\\:\\/\\/info\\-marecharge\\-transcash\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64d1e2514b2e49f69ddd25710f055cb92f6708064145f8329684c291854e11d4", + "regex": "(?i)^https?\\:\\/\\/info\\-marecharge\\-transcash\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd4a4a1835aa777b38eab002d1ae437c5c1c465f39a2cd35cb7b21172a442d5b", + "regex": "(?i)^https?\\:\\/\\/info\\-marecharge\\-transcash\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f35c16d3947508bd5b2990bc80aaf8a4a2d97ff5f9e4f2811e80371d20f7655", + "regex": "(?i)^https?\\:\\/\\/info\\-marecharge\\-transcash\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baea2177c0ffdd985e60b1d044fd68f2257265b525043bb76a22bc1f02ff9cc2", + "regex": "(?i)^https?\\:\\/\\/info\\-marecharge\\-transcash\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a762e3f1cd64bfc0febd5012cc66039caea2c3ea6e56743f515cd004833a554", + "regex": "(?i)^https?\\:\\/\\/info\\-marecharge\\-transcash\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97c68f1e1494558b4ccf9568bf4fa9c4c5b2b8c8a11cbda33e01c29309083106", + "regex": "(?i)^https?\\:\\/\\/info\\-marecharge\\-transcash\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a38b02316d5ec663ff41e03a7e524abf8419fe470abdd71d5bcf3507fe9286c5", + "regex": "." + }, + { + "hash": "f26ef9397d8c1c56381fdf0649e67f51cccda48a6c583df37edaa5330d2df192", + "regex": "." + }, + { + "hash": "77e9c6decd8770d3827a7084d42d2b09fb623c53be89cc5bb708c1ee1c41d7ae", + "regex": "(?i)^https?\\:\\/\\/paypal\\-gutscheincode\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10b9f40ad037e7da424948496e83f4a08402953045da6a1561a63b750cfe5f44", + "regex": "." + }, + { + "hash": "ef411cf10f764ca544f218fe4f09357e6eaea3f51d332842a143c11178736100", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ve\\.html" + }, + { + "hash": "e62555f0710b721eb3a7257a565e413bf23100a7e608c64e68883a91d5da107b", + "regex": "(?i)^https?\\:\\/\\/fasrbarn492\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4168394fcf83ede3937dad9262b0370d383695fe9a2856635e831661bcbf605c", + "regex": "." + }, + { + "hash": "09e22b58e4411d1686cb65e09fd76b47b625747cec8582e8f3596e5d576528da", + "regex": "." + }, + { + "hash": "761286d9c4962747ad0a90df8ecf03ca1851dc98ad753a9fc71d59bdd8ca3db6", + "regex": "(?i)^https?\\:\\/\\/sumi8899\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "446734ec0d11441ab07bf1d0688abc52436e464e21a6c6ecc048ad0346c4a0c1", + "regex": "." + }, + { + "hash": "8c1b1d3ccf8a78722537eddc789ff6a49dbb0bd01159eb40cae2b43a3613c8b3", + "regex": "." + }, + { + "hash": "a5b206c5214eae3918a169dc6e7c27d9808ffb9afd969250ce27999f69a91134", + "regex": "(?i)^https?\\:\\/\\/rexo77\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "134cbc0be735650f366586f111f3aec27f75907cd6dc10c5dc89f2cc4fc1f947", + "regex": "." + }, + { + "hash": "0dbbb13a5b44d05a7e028d4009b986011596743618412fec0a7054f97901963d", + "regex": "." + }, + { + "hash": "2fe80507e3ab101b4f57c7d1f10209f6e64152ed38d30616daade4c719432dab", + "regex": "." + }, + { + "hash": "8a2f1682d85f97946595fddba7e950af9825fa82c7e84c3ba7ac7ec29ca11520", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f[\\/\\\\]+a[\\/\\\\]+CMcisOwh_TW9LnpX7FMejg\\~\\~[\\/\\\\]+AAArHAA\\~[\\/\\\\]+RgRnJMp_P0RuaHR0cHM6Ly94bHJpLnF1ZXN0aW9ucHJvLmNvbS90L0FNQlNZWjBWdzU_dXRtX2NhbXBhaWduPWNhbXBhaW4mdXRtX21lZGl1bT1lbWFpbC1tYXJrZXRpbmcmdXRtX3NvdXJjZT1jbGllbnRpZnlXBXNwY2V1QgplQYlFQmXILtjHUhNpbnZlc3RvcnNAd2FsYWEuY29tWAQAAAQm$" + }, + { + "hash": "8a2f1682d85f97946595fddba7e950af9825fa82c7e84c3ba7ac7ec29ca11520", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f[\\/\\\\]+a[\\/\\\\]+_FjN9wsHhpmlmsgjDIeOiA\\~\\~[\\/\\\\]+AAArHAA\\~[\\/\\\\]+RgRnJMp5P0RuaHR0cHM6Ly94bHJpLnF1ZXN0aW9ucHJvLmNvbS90L0FNQlNZWjBWdzU_dXRtX2NhbXBhaWduPWNhbXBhaW4mdXRtX21lZGl1bT1lbWFpbC1tYXJrZXRpbmcmdXRtX3NvdXJjZT1jbGllbnRpZnlXBXNwY2V1QgplQYFFQmXMs0\\-CUhhtYWppZC5hbHNpbmFuaUB5YWhvby5jb21YBAAABCY\\~$" + }, + { + "hash": "f267accf4a63970e5b401030a53bed6afa82881786be18e0d605c3ad54e675c1", + "regex": "." + }, + { + "hash": "8a2f1682d85f97946595fddba7e950af9825fa82c7e84c3ba7ac7ec29ca11520", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f[\\/\\\\]+a[\\/\\\\]+Z\\-pKJFxedEz35nKntISMdA\\~\\~[\\/\\\\]+AAArHAA\\~[\\/\\\\]+RgRnJMp5P0RuaHR0cHM6Ly94bHJpLnF1ZXN0aW9ucHJvLmNvbS90L0FNQlNZWjBWdzU_dXRtX2NhbXBhaWduPWNhbXBhaW4mdXRtX21lZGl1bT1lbWFpbC1tYXJrZXRpbmcmdXRtX3NvdXJjZT1jbGllbnRpZnlXBXNwY2V1QgplQZFFQmXMs\\-XQUhoxYW51anB1cnVzaG90dGFtQGdtYWlsLmNvbVgEAAAEJg\\~\\~(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c41c05f1e0e46e1d399c81ade859d9dff40ba72f7e89bedbf4a8150287640ea", + "regex": "." + }, + { + "hash": "b070fe643d665a0fa61103317cdbf165b6f184fe2df8b738eb2c78fd532d8af6", + "regex": "(?i)^https?\\:\\/\\/cloner\\-777\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7fdd5baf5da16049638dd40a72b81f0314788af200aebc8bfdc71eeff97dd27d", + "regex": "(?i)^https?\\:\\/\\/sathyapriya235\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e4b6cd5314830872abc0509196080b8874bb5405ba5585e9dab9c9f648b719fb", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredlistfor\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "585c8f15a59e6f46f10dab0ac041854f977e26cf93999fc209a6b38f7a427c80", + "regex": "(?i)^https?\\:\\/\\/bafybeiflqutvmaa6lfod4llb6csk3ahl5p7lyv7l74hpfenig27of6irim\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "a6cfc51ae31ea258b72835a6b5cf05cd6f438f46a64521fa83b6dd84e42ee10d", + "regex": "." + }, + { + "hash": "7a8e0e0d108e159ad11d2010a3fab31c8c09bab1e4cef5c60f6fce2e39746130", + "regex": "(?i)^https?\\:\\/\\/92c26fc3\\.dachdirekt\\.shop(?:\\:(?:80|443))?[\\/\\\\]+fr$" + }, + { + "hash": "d569c0b24cf63dedbce2832f9743ae37e48345e565fb3e44586a2e3f012104f1", + "regex": "(?i)^https?\\:\\/\\/saibhaskar2004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e1fe5b863f66298855dc16f01d997758c19bef45315af21900181fe57f8d4ca2", + "regex": "(?i)^https?\\:\\/\\/messagerievocal72\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "69ece5a2befbb588b966faa62a8916a15a8305404f5ae9b6bcb93e8b393827ca", + "regex": "." + }, + { + "hash": "8a2f1682d85f97946595fddba7e950af9825fa82c7e84c3ba7ac7ec29ca11520", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f[\\/\\\\]+a[\\/\\\\]+8Jkx3D1JLz6fqWdroa2NOg\\~\\~[\\/\\\\]+AAArHAA\\~[\\/\\\\]+RgRnJMp_P0RuaHR0cHM6Ly94bHJpLnF1ZXN0aW9ucHJvLmNvbS90L0FNQlNZWjBWdzU_dXRtX2NhbXBhaWduPWNhbXBhaW4mdXRtX21lZGl1bT1lbWFpbC1tYXJrZXRpbmcmdXRtX3NvdXJjZT1jbGllbnRpZnlXBXNwY2V1QgplQZBFQmXG05_TUhRpbmZvQGFyYWJpYW5wb3dlci5hZVgEAAAEJg\\~\\~$" + }, + { + "hash": "df687188d43e00f3f3e14ad259b9c012705dabf73efa767748546c81a4fea681", + "regex": "(?i)^https?\\:\\/\\/mohitpatidar002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7be430e57a8c98060bfd8759804f4ed16919ebd291e3d1ba777bf27e9ddc93e6", + "regex": "(?i)^https?\\:\\/\\/puppybaldcircle275\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "641659af61ba6d4e382a112aed2a3bd6cde206be3c45e903fa5da82486ae6757", + "regex": "(?i)^https?\\:\\/\\/alexbrinas523\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c0076b02231945ba77bf83533a57f1fe63005de9ebcf7c8fc8076f80dd609e0", + "regex": "." + }, + { + "hash": "b98a8caff69c9597f8937f795724bda4d893397887b290a8795c0ebe677752a7", + "regex": "(?i)^https?\\:\\/\\/aru\\-25469ba\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a426cc2c76a7232de8e159b387926a8eec349df86d388f9a583aefb7a307829", + "regex": "." + }, + { + "hash": "09bb8cb97a9ea62cd91adf081c87bfbf3576bff73d4352cff97ff4fa82ad757f", + "regex": "(?i)^https?\\:\\/\\/jahid8878\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6dd20af905d8c258a1f2d3c6303b70b2a4000390c09a0b19f1b21398c6b09681", + "regex": "." + }, + { + "hash": "f9ece11464ef5314c493b194546fbe7a38bee97d74f71b3ec4d7d8bbc38e0e7d", + "regex": "(?i)^https?\\:\\/\\/ralphc0des\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "288a0c64c9f3bd34a9bf92c11bfd0e156db8efc8b406331818522dc5ed33598c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gen\\.html$" + }, + { + "hash": "d614c5e7b7472dbb7bddf37b0f80e19bda05751bfcaf103eb7f6000f5deda2d4", + "regex": "." + }, + { + "hash": "3228cfcd02eabf505e969f0ca2b4000544ce02ec25ff1cb2760757c0e4cfc121", + "regex": "." + }, + { + "hash": "bddcb3399c74e331f8a0a3e5478d5a6286a496f142d3e515eceed08ebaebd807", + "regex": "." + }, + { + "hash": "cfae9338dbedf1681945b0905b6e7aa5ebcb41c4fa7270a8359cd5be2f6a47bd", + "regex": "(?i)^https?\\:\\/\\/ybsaikumar1051c\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "087255622a1c1bd4f8a877774ea2660dd6cbd5dfc0eca2d452bb3151c9477ce4", + "regex": "(?i)^https?\\:\\/\\/kathi2003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "cb3fec04e6d5ed43d620245a6f2e0270e36c73229def82626612321a72c3baff", + "regex": "(?i)^https?\\:\\/\\/diljeetsingh123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a08d8b70c3652645b360324fd939860301849338497455155d9b18a02422b998", + "regex": "." + }, + { + "hash": "1caf8886b9198bf5c254fb4d85dad622c76ac579afdfd38115f540d0a561a588", + "regex": "(?i)^https?\\:\\/\\/suppohttp\\-saleriouna542439\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9f80e2fd2310dd0982fc831957424cb1e60d16947c799d400dbe1ee2e52edb55", + "regex": "." + }, + { + "hash": "3adf28a2a093d27a43600ac2f6a6f18d3b63d3aa39e11bcd97a629c37ed4425a", + "regex": "(?i)^https?\\:\\/\\/lishahemanth06\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "36ee6a43738064e0bf7ba6546637bb0eac6b1a5b4e6ae6d367cab65e15ccf0d2", + "regex": "(?i)^https?\\:\\/\\/divjot121\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3e70eb2b01d0065b03b6400421085a2fba6e69d900367d1f5406c4a82d1b9355", + "regex": "." + }, + { + "hash": "bd49779bc21d1709b2af016eb4b36688111113f57e4b1b00fced4af1d1b9b7f7", + "regex": "." + }, + { + "hash": "a1f792bd62ed4f34106cd4e1104ac1676d0c4dd77dcd4d452c644579899c0f5f", + "regex": "." + }, + { + "hash": "b23d23848edef49bdd1b693a05cae0bcf1c9c7ce0654e678a10dad8f6853ce87", + "regex": "(?i)^https?\\:\\/\\/sarfu786\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "289637854cf92551a62dbda51e904ac664961ff00f3ec0ba3bc6b409fc1a7e14", + "regex": "(?i)^https?\\:\\/\\/hackrobloxhackfloodescape\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81f24876e0870deb21d0ff0d81fb1c00ffdba41aa4f4c312ec50bf25b4c340ce", + "regex": "(?i)^https?\\:\\/\\/hackrobloxhackfloodescape\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a27db103e38caab94ffb39cba68f2107d794fb81e538c61896cad54a8834dcb", + "regex": "(?i)^https?\\:\\/\\/hackrobloxhackfloodescape\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4c941cf185a6cce01236460ac55f434742f63b61ce2c9b04228d7d9354fc03b", + "regex": "(?i)^https?\\:\\/\\/hackrobloxhackfloodescape\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "048cd1c0e35cbffd5ff96d438491e17d94bedecd209ad882c8f368eee1b61a96", + "regex": "(?i)^https?\\:\\/\\/abhi805153\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7dd7f236d5831eafb0793f2922f547b8825346133de50fd00fea2531d467f591", + "regex": "." + }, + { + "hash": "9d8e6625cc8b85a04da2cd33f8e9e7963019bd3286d752133867922745df845b", + "regex": "(?i)^https?\\:\\/\\/caballeeeroo\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19ac0ddf365e109053a5be5637526007140115bd92627fa8cd72cd22ee72cfe5", + "regex": "(?i)^https?\\:\\/\\/caballeeeroo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bddcefc68c1c3020542c40230866025885892ed77be9a6339102a26fef58971b", + "regex": "(?i)^https?\\:\\/\\/caballeeeroo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64ef5fe71439faed55295f32df24b1dca238b0d71c4121215d322df6e6a13518", + "regex": "(?i)^https?\\:\\/\\/caballeeeroo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf6f4e10ded64d9e54bf3291d611af360b74dbe95364ba98c54a8e1b6ecdfcd5", + "regex": "(?i)^https?\\:\\/\\/caballeeeroo\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5c65829b54b3ac8cf28116c7877735dd07b3d060b324419e5619f2b4529fad1", + "regex": "(?i)^https?\\:\\/\\/caballeeeroo\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff5e1416a64cfba19327bec5eca31364580da995c891ec25ea499ba110c028af", + "regex": "(?i)^https?\\:\\/\\/caballeeeroo\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff04c91b247bb45e664ca0a3805a7948e01b9819f5314fc365218b6532fa5e2a", + "regex": "(?i)^https?\\:\\/\\/caballeeeroo\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1669b057b4c9e07f943d2736010eb1b033f495d3e04a4b6d6ec577add4d518e5", + "regex": "(?i)^https?\\:\\/\\/abdulla183\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "323ce251695746cd1a037c07182fb04f6bfa9ba7a1f1457510b1ad8dc56299c7", + "regex": "." + }, + { + "hash": "4d9388a8dc276b8acbbe935e15045be5fd0faad66f4275834d1739f9ff999db1", + "regex": "(?i)^https?\\:\\/\\/reavathi123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "82c93d805d64c1be0070184644375a013ce734be77d7c518c3f08275ab5fd44c", + "regex": "(?i)^https?\\:\\/\\/freedraw2robloxscript\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f45efd41ad9b76a9dc2d4f5bd1c167329cf3e623a9315a5c72f69d02804ab96", + "regex": "." + }, + { + "hash": "0a239a08d5e775f2e1b5354e646905a2abb74ddc3dafe0c9012eb2c0282a3b80", + "regex": "(?i)^https?\\:\\/\\/funsurvivalgamesonroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcc1523f9a9d694bd7afe4f718814825cc45e2be30f1fe478422b2202f4d9eb0", + "regex": "(?i)^https?\\:\\/\\/eshwarnaidu2003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "519295d2fe5d15ff96bed1600d178605a1151cff9afffb129923f0c4a25a3b73", + "regex": "." + }, + { + "hash": "9b78c90a4bee31aacbff33d29a279c834d7db61f5db7a6c908d5862c381027d0", + "regex": "(?i)^https?\\:\\/\\/namecreatorroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50822ab79a46ea83a35dd4abfd99c4854d03ca549840c884bf5895977dacfef7", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwarrior\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0b4c495db6552c08dc292150392a2a879b59c4df026fe12efc1ccad9eacc20d", + "regex": "." + }, + { + "hash": "445261c25a3d3ba359869ccc69a4974376331c354d73afe6a1f54e0cc9ffa9c1", + "regex": "." + }, + { + "hash": "ffdaaf752c3a633297fe6e0ca0e25a7f1c2506ca5f37fc82d3051967e7e8f468", + "regex": "." + }, + { + "hash": "6debb8735a22ae215120435b68dfa218676dc42b1c4c808d6b19527507d3ff15", + "regex": "." + }, + { + "hash": "8bc7a16641fca0546b5475ca1c4f5dff47a24bfcc30f6a3aa41fdc772a08741b", + "regex": "(?i)^https?\\:\\/\\/asialasopa656\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d56e954ef10cc77b3f44f4dc38fe63f776a13191760691ca417250db90ced9c1", + "regex": "." + }, + { + "hash": "71b72946e3213ef1ab798cd2e2d7b36763b7af621295153912726f6351f65d58", + "regex": "(?i)^https?\\:\\/\\/maria18\\-ai\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0eebc9ccf7aa1aa6eea6e2381b56632f8dacd6940302de3ee19ca68eedb19a27", + "regex": "(?i)^https?\\:\\/\\/hubfoortn\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "308c8bdb2a671ed326f57ed40b4bf196dacd470141804c364bbab50b90bd8784", + "regex": "." + }, + { + "hash": "62beb00d684d623de278cc0a598c4e978494465e321f169afbe5f2df2b3bd806", + "regex": "(?i)^https?\\:\\/\\/crimsonel658\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3068a02c20b5ee99e6aa107c4aab2a386402c81202781545e8cdcc19282cd8d", + "regex": "." + }, + { + "hash": "718e8297f76c6a541ad453607104214f5fe652877cba19ed338f437d32375145", + "regex": "." + }, + { + "hash": "59a66d2d24bfb16c0426433028157d37ffb8a8a17f7fb818c6bceed4f09f0ebe", + "regex": "." + }, + { + "hash": "b2e46fa9693527a0dc9df0457394cc322b082f398b9f6ffd37b071047cd9ea2b", + "regex": "." + }, + { + "hash": "e520b3fc3bc5785b5e116c5f265032488a4f88a42d60c752c5c88700c93c8052", + "regex": "." + }, + { + "hash": "b36763466cedfd63b5157a2c9632fd0263358e6056c8251bd28c73670ccf8767", + "regex": "." + }, + { + "hash": "c3901c402b9bd50f38c760c8f2b8bb6f514733419726dadd0e2008c59a316c8a", + "regex": "." + }, + { + "hash": "0a21425f1caf545bb572d476bc0d7485b87206d5819e2fd05bad210dbe35f20d", + "regex": "." + }, + { + "hash": "af99376aaa6d87eabcbcbc7e7c07f0ab251b9c23e12c799567831f6954e02c7d", + "regex": "." + }, + { + "hash": "bb256e5f34de45cce07242cdaace7d229734d7df844fee8a29e44c2d8495497a", + "regex": "." + }, + { + "hash": "27f6ba18cb093ffbf5f159b93ef55092cb85025e068d2cdb8077f3a880ddb127", + "regex": "." + }, + { + "hash": "ad31c671f56a27556dc14b685095500ea5b7bd5265472006709d5b9512885fc6", + "regex": "." + }, + { + "hash": "e923207fd022917b6de46cf0e3555b9a7b09d446af20bf4f1e0b1e512e0ddb98", + "regex": "(?i)^https?\\:\\/\\/nalbandnabil1234\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0952aaae63943c276a26d8c9dc587c56addb101b524326e682eab03ad90bea93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jap\\.html$" + }, + { + "hash": "d53c617f9e644dfa96196863945820cafa04f5e854ab8672bb119898d48e1d18", + "regex": "(?i)^https?\\:\\/\\/bsantosh0610\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e8bd6dc3d187238c97b1c4e8b5f1eca692715c27e44a3ff98ccfe1c2445c66f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+co\\.html$" + }, + { + "hash": "361e3d2d46826a76f43f41cc64fa8c7b8f3bcaa16cf2a46fa5a4e4bcd60eec43", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mag[\\/\\\\]+include[\\/\\\\]+click_counter\\.php\\?url\\=https\\:[\\/\\\\]+jobswiper\\.net[\\/\\\\]+ovicethx\\.php$" + }, + { + "hash": "2e2ac852ee1fc6b7bd6126e98ee80bfc2a991f1b45a449d6bddb448e50e853d1", + "regex": "(?i)^https?\\:\\/\\/asifsalim0000\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d26480843712eee20902b3f7e22c8e167f73269061e00c794dd58592015b1517", + "regex": "." + }, + { + "hash": "74b01e0b2b3b6b0880f1b2b683b291b599ed055b9cb5bbaf2b2e950528f84e5e", + "regex": "." + }, + { + "hash": "2b4f90565a8cf6e0df37629732fc887cb27605a0f0787f5274424c3e64dbd254", + "regex": "." + }, + { + "hash": "5044b427fd22c3c2588196900570e8d266bf25fef57657fc7d2122ff0ebaaab6", + "regex": "(?i)^https?\\:\\/\\/earthlinkis\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7bdfb75b558974f3271b8e839176b2b363612fb2b5bda7c946c08eed2d761d32", + "regex": "(?i)^https?\\:\\/\\/fasrrules438\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ceefebf3384bb03f3cc9d982dd5749d865887e3f493ad6d2b286976a269ab8f5", + "regex": "(?i)^https?\\:\\/\\/unnati110302\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "aab332283be6dece638a0a536f1fe8295bced8eee6e9dd5270decd0722b29eac", + "regex": "." + }, + { + "hash": "56b313a3fa1bc89f7fcdb4f2a848648f7863cae97348d95d0f970568771a86e7", + "regex": "(?i)^https?\\:\\/\\/luckyali1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b34cdb9fba37c958f37cd2aa69459e35917648415c47d7dbe3baeb1b6a2153af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oo1\\.html$" + }, + { + "hash": "77a0d05b3dfc93f057b3e555acb7b31226e55b714732e8a02f33e7e0f42121ea", + "regex": "." + }, + { + "hash": "8328f41a4d609e2dc2c190a7c1b44ce82f0e00933f6cab0793aaffc79c9a8517", + "regex": "(?i)^https?\\:\\/\\/therk420\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6b86bcdb034df12e16c37844600ef181151c07cd1af75fdca086c81163e06cd0", + "regex": "(?i)^https?\\:\\/\\/signin\\-att\\-109181\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9ca5d9d7b4222e3ea51babc9e6e40830a10f58fb09e726da7cd8abe8db247e6", + "regex": "(?i)^https?\\:\\/\\/att\\-103275\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cbc15512bb43296a0452bfd8157821602bc4135532661a72571e4edfcfb197c", + "regex": "(?i)^https?\\:\\/\\/att\\-104223\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "014888b4bfb982b9f4a4721f7c367ce66ef840d18a8ba1030b2b161f78eade63", + "regex": "(?i)^https?\\:\\/\\/att\\-100669\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ceb7e48bf23606bb3c0a24c99c9eeb1c6847bf1e015ff3684d111122845e624", + "regex": "(?i)^https?\\:\\/\\/att\\-100491\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23019ac82cb39bcf4f3af2aed406853b6a28cd8cf5a47c7375dc04220e2d3bea", + "regex": "(?i)^https?\\:\\/\\/att\\-104402\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5c478bbc268ed84e749999740e59284f73ca40f4af8bcb1d548ecdd2b3fde41", + "regex": "(?i)^https?\\:\\/\\/sign\\-in\\-102339\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "debd64281a7485fbc26f2e3493087d23dcd5c8df2690fe6e0ef53a259f88c45c", + "regex": "(?i)^https?\\:\\/\\/att\\-100907\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d92a6b11b623a097add595bcbe0f4d4695608ef9959728c604c4f60d1d988b0f", + "regex": "(?i)^https?\\:\\/\\/att\\-100215\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49bfc9dda4c87bc13ecc4f96ea74d05b4e31f1861a8887ff21d1baf27cf626c1", + "regex": "(?i)^https?\\:\\/\\/mail\\-103556\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f97b4a8e225b689b3f2a3f5bc600865f63d7d427055069076d3db7420851d0b4", + "regex": "(?i)^https?\\:\\/\\/attnet\\-105004\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4f311737074423daf074584720a89f8d2cc8a367f773a18aaba4001cff52fff", + "regex": "(?i)^https?\\:\\/\\/cogecowebmail107508\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2768cbf2ac5bd757945a72bca7de96964a7c9f38522fb051dc78f078c423e61f", + "regex": "(?i)^https?\\:\\/\\/login\\-screen\\-108648\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed4bc63733843ded50ff4156ad7751f14fc08a918a3449f5fe6b83dbdb780f48", + "regex": "(?i)^https?\\:\\/\\/attnet\\-105025\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf6b56c2c0c68905d4109bbce5d539f78e16302dcfed351ad2f798fa8da23d33", + "regex": "(?i)^https?\\:\\/\\/att\\-inc\\-100974\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446d23f6c248d97051159be27bf282b56054fd70ae094bc07fed7fe4e0d713bc", + "regex": "(?i)^https?\\:\\/\\/netzero\\-109787\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddba919445dd63d737112e6ce3087c98902c14fb9f0f4b9434dab9c4a0352f76", + "regex": "(?i)^https?\\:\\/\\/attmail\\-100815\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eebbeb37cf1f23553bb64bfd06850d24820db14b51d9dfe62bc370ed66ef76f8", + "regex": "(?i)^https?\\:\\/\\/att\\-login5718\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68763aae0ed9d74c3c45c1b1ad62373d751fd3002cbb5953fdd576a82824205a", + "regex": "(?i)^https?\\:\\/\\/att\\-102614\\-107040\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5613cfc7b33cb9a13f53ac9b3cb1fbe9e05b949998b35abcac660bfa05adc81", + "regex": "(?i)^https?\\:\\/\\/att\\-login2060\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc5ac84963151239591950e297f793f6bd0e143efacf69c911b1df78a5e9ae8a", + "regex": "(?i)^https?\\:\\/\\/att\\-108395\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8eabc24fc373258b7b80e304eaad15b1ebfccafa31a24dce52bc50923aa5759b", + "regex": "(?i)^https?\\:\\/\\/att\\-yahoo\\-mail\\-100086\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d167c9200bec253a23c719564f984b503415bd7467f32e1727c00fbfcb5e9f0", + "regex": "(?i)^https?\\:\\/\\/att\\-106409\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c90df73fab5a6f1a005a8a483e246162e0c6cead3496871430f2cc949212ff", + "regex": "(?i)^https?\\:\\/\\/att\\-106690\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96e4796568172eec2713fa4592c29229b1d1a3c8a7dfc9dd8ee48e5178265b6e", + "regex": "(?i)^https?\\:\\/\\/cogeco\\-100828\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cdda41cc942860aadc37a6983c2c01a8a7e5c56874056afb2e8abf45cbedc407", + "regex": "(?i)^https?\\:\\/\\/att\\-109928\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "218567b4653dac79d262a0585e0ade84238d682511c4c1cebc462ea8ec833616", + "regex": "(?i)^https?\\:\\/\\/att\\-105804\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae4f1e3be040f152cb6459a323e0abb221b26e1de94960ae718ed92203861638", + "regex": "(?i)^https?\\:\\/\\/webmail\\-104147\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef599c7343d890d283ff987c452437059cb65b9faa888a385f483950a5918902", + "regex": "(?i)^https?\\:\\/\\/att\\-104532\\-101816\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce7b3e1bbd11cb7a4d022106f00522f7c887cc102eb5771f847951c8f3551d59", + "regex": "(?i)^https?\\:\\/\\/att\\-100751\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10b96749e949474db8126a6b1d363050d5e024ca9e746a291f0c8eee7a22a27b", + "regex": "(?i)^https?\\:\\/\\/att\\-yahoo\\-mail\\-105789\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "492bef313c16536474ecec53113e1f34cdb886f19bab896a056b4616a8b10f13", + "regex": "(?i)^https?\\:\\/\\/att\\-100159\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5fc4a62eedbb207ef826a357ca198f9f39ae45b279a6714390dbc899a00ecd8", + "regex": "(?i)^https?\\:\\/\\/att\\-inc\\-101921\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18bea86dc59657107752e26b85d9e5b913997a445b83322f5ffcc2211e3ffffb", + "regex": "(?i)^https?\\:\\/\\/att\\-109570\\-101787\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3470dd5941ea6b08277539d0d19965fd52f1bf327cfd55ffdba4fe11a62238e6", + "regex": "(?i)^https?\\:\\/\\/att\\-109064\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5231b4952633ce42eb0cd330e3d5dc062f65282acae592677a98466fbddaec84", + "regex": "(?i)^https?\\:\\/\\/juno\\-100246\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ccbf8cca1aeb0941d886c82d20280154baa284baa6e4efbe6dca5148ae47dcc2", + "regex": "(?i)^https?\\:\\/\\/att\\-100679\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c121081a9d23795b4b405c194ac494859e08682d2074a7497fe365cb6e81248", + "regex": "(?i)^https?\\:\\/\\/att\\-103446\\-103201\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65055ee710f39571d73d40347068405b6fbd78335fddaa6cfa1d020704c94ea5", + "regex": "(?i)^https?\\:\\/\\/mail\\-108953\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74e694a14c045ba2b31f8c15910540dd4438fc71956443b82661b5cbad084f61", + "regex": "(?i)^https?\\:\\/\\/att\\-mail\\-107515\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c86b5c54392be66232c85e0ee2ad53f9d63b8ba7bd0b29ed12f977175c3ba625", + "regex": "(?i)^https?\\:\\/\\/att\\-108830\\-108826\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c80e942d8cd5cbc266e4aacb93e4d6d4dbac8cd81a5dbe07a924b019fce107e5", + "regex": "(?i)^https?\\:\\/\\/att\\-101104\\-103738\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6f7a9e34ef437fc320811bb1fc6ed4553e7a31062b872d11b8d1be120b3a398", + "regex": "(?i)^https?\\:\\/\\/attcom\\-103522\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fcbc3a2d2715de2499fdf0982d5ce2e0a5443dd26fa1785da19e9df0e747748f", + "regex": "(?i)^https?\\:\\/\\/att\\-mail\\-108718\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b11fcf7ee0aa237b1600c03eba8af1293edd9c6155400a8b9ee4bea5c124f90", + "regex": "(?i)^https?\\:\\/\\/att\\-101114\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e87460367807d27ee29799fb71aa68a2c7cbdd1fda036ad325c01e999d96899", + "regex": "(?i)^https?\\:\\/\\/att\\-login8524\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a8736cdf24b62779c06c2336fbcf93684113b9a31ddd76ab12ea5d9a47e4455", + "regex": "(?i)^https?\\:\\/\\/ahmed\\-7amdi\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d77b8a0eeca4a44c68b2db961531752007d7c2cc77db4a401ac1e52ed0120a73", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\%20(?:\\(|\\%28)20(?:\\)|\\%29)\\.html$" + }, + { + "hash": "df4585ac2a35a7054825255e4c3674965989be2ade3fa11113cd7a80e19cea82", + "regex": "(?i)^https?\\:\\/\\/fasradvertising477\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8214ebd0872c5d25150bb6180942ae6d3819077fa962ac09e49b03283fce6f89", + "regex": "." + }, + { + "hash": "d0f3399d9bdb5195e8d59bb397894509ee37c7d8ee36d6abac0de29cac645e4f", + "regex": "(?i)^https?\\:\\/\\/talentcrimson445\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f26c64f108cc78c141a1692b00df36f02c09ffdb95f6cb094919dc0bb79bd43e", + "regex": "(?i)^https?\\:\\/\\/divesh2201\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b45cebb05bd770f0556e81c353d2f20664dafb897b10f89231a5ac59c845dfa8", + "regex": "(?i)^https?\\:\\/\\/ansh8955\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "79205d5b444ce2954af23ee6813ea0741997109b88598aecb84b01a54f69526a", + "regex": "(?i)^https?\\:\\/\\/orangepro6\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "522f1d37694ead3ffe5c3cef3b0b75ebc68d9464deeefc9becc903b9ddd20c35", + "regex": "." + }, + { + "hash": "e75517f5d2722b581bb5d60d8fa178ef52f7a7944b900086d1ab14a3faf51d57", + "regex": "(?i)^https?\\:\\/\\/iamsurbhi1503\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "317f345983e46580d60ff6f9328d08e364b788916600411bf3b9e49cf636a701", + "regex": "." + }, + { + "hash": "8aa4dcace6dcf18c503bd7b70bed8a7d884be586ecbefb22cac28b62dc22ac33", + "regex": "(?i)^https?\\:\\/\\/prajwalk\\-07\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fc36341c78e6431590ee53645a97457e5475cd84eaf6078b4f1e2bdf6fdccf7c", + "regex": "(?i)^https?\\:\\/\\/nawfs254\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a19c7f7ce651fcf7cb3777c5e2d813c6321faa07e30d3809f48243f79b1ccf21", + "regex": "." + }, + { + "hash": "cf6632c7c59cb37ed66b7038d23c923c13091fa83094d2c3f8b5e816e1c4bd32", + "regex": "." + }, + { + "hash": "ce90c90c35cd2047e0cab0760a7b4032d5ad9f9e7dd79338fd103122eff856e3", + "regex": "(?i)^https?\\:\\/\\/indo\\-pornhub1\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf5d7cc7be61e921d91d9af41bd1307c56cd3c92095526f7288ccba75ae54600", + "regex": "." + }, + { + "hash": "2f76c04ebddfa53dd20f6c0f5dc54cad64d215f44d1ec8ce1ea1c120a8d6c293", + "regex": "." + }, + { + "hash": "d23d8cac52d56749bfe18c2c20365fa3ea68537fdd885a69a81142c87edfaa4e", + "regex": "." + }, + { + "hash": "cc1ef0f989b7846f1306f90dd8df7836fe799d33d766a82945b3d0d7c0f4ffa4", + "regex": "." + }, + { + "hash": "831e36febdfc8abac8b4667046394a4aa3e01046c9e360486c5f5f651124f828", + "regex": "." + }, + { + "hash": "72714f89bb64a08d0f2d574ec16b7429a5cbe1a949ce8dfe23b32635cdb520f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+OWA\\.html$" + }, + { + "hash": "eab18141b3f443d51b0ac7b4e3b6dd24d31a4f41a89651a8177b0d2a538104cd", + "regex": "." + }, + { + "hash": "b34cdb9fba37c958f37cd2aa69459e35917648415c47d7dbe3baeb1b6a2153af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oo\\.htm$" + }, + { + "hash": "ec5bc1973960a91e901434c6ff2abbca167e5dd6f12b99697045c78df64fe0fa", + "regex": "(?i)^https?\\:\\/\\/byever128\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3690e43f790a6a9ab681a2c3b1d46531eb8f5f337665bdf952ae19fd6d464db8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Parking[\\/\\\\]+Parking[\\/\\\\]+Parking(?:[\\/\\\\]+|$)" + }, + { + "hash": "be386fbb327533e3a009a65897e6d52c5b4c9df646da8f060c26c8450a52afae", + "regex": "(?i)^https?\\:\\/\\/unitedbaldcircle607\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d859b31c635fd0d8d01fc76938494c450a8a01eda048414fb6e78fa845fa52c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+parking[\\/\\\\]+parking[\\/\\\\]+parking(?:[\\/\\\\]+|$)" + }, + { + "hash": "090243af1186f2b3d58ea948606b84905a74c81a57429a8b13e1276c8be9b88f", + "regex": "(?i)^https?\\:\\/\\/guille552\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e287ad2ecd70722363ab0df8a59dcf3c79c471824176791738f2965c9062c", + "regex": "(?i)^https?\\:\\/\\/metamaskinc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5ec8b198e3382e21f28a5389fcc376808cbba9ca7191de4f4a1b4009f7aa93b", + "regex": "(?i)^https?\\:\\/\\/metamaskinc\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed42b3d8df37ff8f6ed64bfa844dd3fc6d0dcab724b89ca04229e6d86f36d2d5", + "regex": "(?i)^https?\\:\\/\\/metamaskinc\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c93db7eeee48f6b14057338b4e5d1d3e33a4be984e24071ac76272b3d16c82d3", + "regex": "(?i)^https?\\:\\/\\/metamaskinc\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97556a61104c17d525f421bbe9f0b20f2d4504c4c978933f62fa183f2dd78f8d", + "regex": "." + }, + { + "hash": "4df5c621488defefaf131a2d43e07ce46212fb50fba30905f435ddbaaebaa0f9", + "regex": "." + }, + { + "hash": "133690f6c21e46e2120d8f2541ed6a07dcb51825f1d92c8e7b2d1eca6d7468e8", + "regex": "." + }, + { + "hash": "11e59c831a2b1fe2cec4562b2a9d408383297a43888ea77d9f2f054b585c746e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk\\.asp\\?o\\=25084\\&c\\=918277\\&a\\=419315\\&k\\=6BE4B6A7DAFE69C3A6B759BA14439BEB\\&l\\=26230\\&msclkid\\=5fe41f2e38d91514dd007a71c31ff9b5\\&utm_source\\=bing\\&utm_medium\\=cpc\\&utm_campaign\\=Consumercellular\\.com\\&utm_term\\=Consumercellular\\.com\\&utm_content\\=Consumercellular\\.com$" + }, + { + "hash": "11e59c831a2b1fe2cec4562b2a9d408383297a43888ea77d9f2f054b585c746e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk\\.asp\\?o\\=25084\\&c\\=918277\\&a\\=419315\\&k\\=6BE4B6A7DAFE69C3A6B759BA14439BEB\\&l\\=26230\\&msclkid\\=9b026e3d88fc139d13630b5cab8478ac\\&utm_source\\=bing\\&utm_medium\\=cpc\\&utm_campaign\\=Consumercellular\\.com\\&utm_term\\=Consumercellular\\.com\\&utm_content\\=Consumercellular\\.com$" + }, + { + "hash": "550a38424bcb4c62133c84dd637d89db964cfbf6a571d404f8c9e2202aca35ab", + "regex": "." + }, + { + "hash": "7da0b9f3639f4c6ea477b42a8673b389aedb53f1b5bcc45b942d8f296f9ee49f", + "regex": "." + }, + { + "hash": "327efc7e9702d58ae579ff546ca51da04cc238937f6daff95af6469fe17cb105", + "regex": "(?i)^https?\\:\\/\\/karaj368\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a3245746b55e94d719a9ab295785b96adb48a52438a30cc15e3fdca30da8549d", + "regex": "(?i)^https?\\:\\/\\/registergoodsite820\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9e4549cc4f2128bb916c4b7b45d8987037ab0e04d76e39988f97f2531c7b589", + "regex": "." + }, + { + "hash": "d2ac418174b1ad5de99d3bda9c687159134bc2e05ec094b27a754966b74a2ef5", + "regex": "(?i)^https?\\:\\/\\/ayushsingh20050\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "258edf5597c91e92341c0333a8344543dfce8e0a7900181b76bb23a90ca532b3", + "regex": "(?i)^https?\\:\\/\\/shivi1122\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "47ea23182fc11e249d2702bfc34c82f8fc4abbdc4c181e3cf515b4a55f80f183", + "regex": "(?i)^https?\\:\\/\\/roblox\\-free\\-2022\\-1\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcf4b9fe0757a0ef5ba047ba351aed27237a2a368a2f7167bf407ddcebe0deef", + "regex": "(?i)^https?\\:\\/\\/roblox\\-free\\-2022\\-1\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d23b495721d91c8d06129ac112671ef57d0959d95bf82d0c5879c1badbf4a80f", + "regex": "(?i)^https?\\:\\/\\/roblox\\-free\\-2022\\-1\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a773d7eae3dad82a43aa294c37c73cf3463aa4649c3a1a10d48b6ea43a0f6062", + "regex": "(?i)^https?\\:\\/\\/roblox\\-free\\-2022\\-1\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baabe5c0ea122091be430a199be527d9356fe4de4feef478610f88611c1d07be", + "regex": "(?i)^https?\\:\\/\\/roblox\\-free\\-2022\\-1\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ebe8dcdc254ff962b6be3bbc288a5af4613636c77f669a136dd33987d5f0ece", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site$" + }, + { + "hash": "02d25a4b846c866136c3e53fbed6ba3df022dc3dc0b2b93f41fc57d3ccff4365", + "regex": "(?i)^https?\\:\\/\\/anujtomar1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "941cf90523920e68758fb33efad0a8486c0b532b750c9760f4d0c386247c87bb", + "regex": "." + }, + { + "hash": "1bb9d05e436d8d1d394841c4a5ee04a33e99104fcb2c3e8211311b4b67452c17", + "regex": "." + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+1\\.html" + }, + { + "hash": "11e59c831a2b1fe2cec4562b2a9d408383297a43888ea77d9f2f054b585c746e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk\\.asp\\?o\\=11503\\&c\\=918277\\&a\\=396349\\&k\\=A93664D958DEEE62C21D1B53C3333DA7\\&l\\=12996\\&s1\\=portsmouth$" + }, + { + "hash": "c8111d792f8e71938d9a582777c40a4e3763212950f02f0d61a21372f7ab8b68", + "regex": "." + }, + { + "hash": "cb8771831c62a3e3d1a2cc06c6de919f505610b77dccd97c37d605e4432b2e40", + "regex": "." + }, + { + "hash": "bcd1ee3acd72b5ce8fea7a0a199a4a0fce50a55ddb39efd3d1d0812bd6c1a312", + "regex": "." + }, + { + "hash": "6cbe042f87cb575b2181de0568111087714e179231f9ed0cd2ef888523c86fc8", + "regex": "." + }, + { + "hash": "295fe898db87e24b0fb4c5e65b2425b7d83967cc3ca840ef1ec6f8d6dc8767b1", + "regex": "." + }, + { + "hash": "12d636542b7ef489c5c204358076c1c9e260f4d9f785e1bc4b8cc27d276e08c8", + "regex": "." + }, + { + "hash": "2b85a5072e81df74e7690208c3175ba13f1aa3649edeb87c047a70796eeeb1d3", + "regex": "." + }, + { + "hash": "7b18720c633d05bc3f8c4a94fd7fdc15bb9775ab4d7a9bd026888a756967fb7e", + "regex": "." + }, + { + "hash": "8f55ba2e9182779c43448a018e6a5d4fdffb534ee85691b372307c4538b9a5b5", + "regex": "." + }, + { + "hash": "4c124742b313a24a56ce8c7c05b7df93fb2cfe76f3fed47623cd4a1936f7191c", + "regex": "." + }, + { + "hash": "a2e07158523323716ef6d2a045bd50ac442b5dd13ef9b412beb6ab475d94e97b", + "regex": "(?i)^https?\\:\\/\\/girlthailand33r2\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0079930bcfa17f2d0e5bcf6274fbc077fec7bad2619e6d530948bc72d50e2bbf", + "regex": "(?i)^https?\\:\\/\\/girlthailanmd4t\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10ee8af5fe770c9308a8d6e04ccc552ec3e554d157085acd4fef5ca1abe20170", + "regex": "(?i)^https?\\:\\/\\/girlthailanmd4t\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ebe8dcdc254ff962b6be3bbc288a5af4613636c77f669a136dd33987d5f0ece", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|$)" + }, + { + "hash": "26065f135f729b0c54fd2babe649c6169a1832de6a828315b1201099e562db6b", + "regex": "(?i)^https?\\:\\/\\/xnxx3messenger1group\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "909e03fbdc6105610b7dea5d3e2c18d13c4be73490abdc7e6e6d7eec2f46745b", + "regex": "(?i)^https?\\:\\/\\/xnxx3messenger1group\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a056e5ae9f36bbf8f6163b9de41659ec63839a805653f359e0f91903fe0e3ad", + "regex": "(?i)^https?\\:\\/\\/xnxx3messenger1group\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44eee8b17f45a1a0f827a2660d2796c76e93e39cdb8a48a76a48a1e16571b6cc", + "regex": "(?i)^https?\\:\\/\\/xnxx3messenger1group\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c9716847289c3245ac20ed1058d4d76473871ddf905d3e6dd46625efa0a367d", + "regex": "(?i)^https?\\:\\/\\/xnxx3messenger1group\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b62b562c63f1f749d9a2f48d2fd917239b7513adabb57a8d82e3dfc92d0ce4eb", + "regex": "(?i)^https?\\:\\/\\/xnxx3messenger1group\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4717fbb0ceb5d9473a3fd61196eb45d2fa5321d165035d353f9a8e8242824d75", + "regex": "(?i)^https?\\:\\/\\/xnxx3messenger1group\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "915127b994a8815e2c4bcdb5bc601df63831bfb4009ea21087cd9b4c5756f570", + "regex": "(?i)^https?\\:\\/\\/naitikhoriya1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "01d60e5c5bfa84615d7dad7450e39ec70ec96c22ecd2d752f1862445926a2a91", + "regex": "." + }, + { + "hash": "6799b1ac0b500f328f737ca2759773794afc858b4ba00c0f738f269cfde7efb9", + "regex": "(?i)^https?\\:\\/\\/rishabhmishra007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c2ad09b3720589e50cfe3bfa1ae370cc104e3893a88832114e752c4b4bc79c9a", + "regex": "." + }, + { + "hash": "e1083b5d0ee7fa0823e7030b2cd57eb5a24b76d4c0f00304c79bf894aa0c72bd", + "regex": "." + }, + { + "hash": "0ee47e54bdd8fef87c382d1976c94cd8051bc396a262b5bd677895ee19d5f2b1", + "regex": "(?i)^https?\\:\\/\\/girlthailand31223\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cd5800f8568f215a754c2e71c5d31d1e8f2abc92e490dc69b42f92b4cee414d", + "regex": "(?i)^https?\\:\\/\\/girlthailand31223\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a2e2bbba19b26468cb9343fc231d83d6f8d7410b694dda206b155756d2f7fa3", + "regex": "(?i)^https?\\:\\/\\/girlthailand31223\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae96f351abf53354e6634a3bade1c1953580d7e7c9548a33f57d288de36d301d", + "regex": "(?i)^https?\\:\\/\\/girlthailand31223\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b0c989d6f73045c5df1b868680627faa286063c0d44085e451b95c14644f29b", + "regex": "(?i)^https?\\:\\/\\/girlthailand31223\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ea355a59d0d22e261744422e34452dde55e95cdd2b10f2a8830aca3b2a07a7c", + "regex": "(?i)^https?\\:\\/\\/girlthailand31223\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0df413e556a4c684e35c2deb93b108130c7ea55e57c01cc672c5ca1678c4a507", + "regex": "(?i)^https?\\:\\/\\/girlthailand31223\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e32e1414c4e4aaaf7a3c87a203df42cf510910272c2006c9fdb96873ac5d7bb7", + "regex": "(?i)^https?\\:\\/\\/girlthailand3er4f\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8344813f99008ba0619ebb23e8346938e1df338e96daa0cf63e07f7fc530daae", + "regex": "(?i)^https?\\:\\/\\/girlthailand3er4f\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11e59c831a2b1fe2cec4562b2a9d408383297a43888ea77d9f2f054b585c746e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk\\.asp\\?o\\=22801\\&c\\=918271\\&a\\=461795\\&k\\=62C20413F98E8D70FDAA61DCAF19D864\\&l\\=23836\\&s2\\=N5HSh7FMETdH9NpNmJ4RN3$" + }, + { + "hash": "d49def3e4fbcd3125655c6de35355359415f5c5491f4ce107e22a8a9dd581198", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site$" + }, + { + "hash": "adaa180444e3cc5c8ddd0cbc4c1897b1abb3e0f71923e20ecff27b38e9cc6b31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0\\.html" + }, + { + "hash": "6eb86ef0efe09dd00a8158f8b52d172ca4e3581eb131be97d2bf25d28eb19056", + "regex": "(?i)^https?\\:\\/\\/arjun777is\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4209deb09c809fae328ae99e87489f7338e221b49aa8825d8e0fc2d4b44f519b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+html[\\/\\\\]+d03b71_c3c3cd7b284cfcf12d03d4283eea215f\\.html$" + }, + { + "hash": "7be6832a51e575e78c93d0a22d4a48900c109a1940ce46fcd62fa58fb07bd602", + "regex": "." + }, + { + "hash": "99264ee31c3b20872523206445eeee759cb07f4bf2c2dc48d4f80a9dd58dc83d", + "regex": "." + }, + { + "hash": "d0a24f4a9189db96b8a8f5df74db3ffcd3e0ad4f5e0866af0b5c1ed957a60218", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l[\\/\\\\]+25395385d5c005fba839\\?code\\=invalid\\&source\\=nojs$" + }, + { + "hash": "13ecdf402beadc1576c000e271c1b01f4c43f25d92cffcb0d1c8d181c9db311a", + "regex": "." + }, + { + "hash": "272829844a463a33e9d164bd4d91278fadf2d8e511c0a734390a41b9709a1c67", + "regex": "." + }, + { + "hash": "ce6d9d338c15a87aa036d945a0ef2bfd8bb7a3e1c94f8342aeae3b9ffe0c8d04", + "regex": "(?i)^https?\\:\\/\\/erogonroute791\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d381fcb993a5486801fc4cd96f50b48747b65fd7f9d000c9fd55d5ba7ab069ae", + "regex": "." + }, + { + "hash": "d49def3e4fbcd3125655c6de35355359415f5c5491f4ce107e22a8a9dd581198", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e11e3fca5862d8802dae8040d70ab2cde557977b218c7cde9174a67a96c9f44", + "regex": "(?i)^https?\\:\\/\\/sanlasopa564\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc1aaa67997ff9b5ba679d53e419e171fe28d20a6c2f41ab0af58d41bd618ff3", + "regex": "(?i)^https?\\:\\/\\/bloggerfasr828\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "539cb96337eb5171255198be714fe804081c37957f45ea05270eeec284ddfb1c", + "regex": "." + }, + { + "hash": "cebe16f4152b882c35672b07531b68fedf2ae77bf8ab45710e55233ff3ee6884", + "regex": "(?i)^https?\\:\\/\\/saoodkhan1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "dce152fd7f5cf1ae8c9ec1314c0467d612272c3287a4b9e06bfd98f52f495a20", + "regex": "(?i)^https?\\:\\/\\/19a41661\\.dachdirekt\\.shop(?:\\:(?:80|443))?[\\/\\\\]+fr$" + }, + { + "hash": "10fcd4e2310bbd21785e2885873c279758b234d3459cee55b8f56babfe6a076c", + "regex": "(?i)^https?\\:\\/\\/www\\.machinerypro\\-63529856\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b94a58b49cd4446fdfb1fd25acaed9d1a4f97119f83edb2bbfa9df7be3c4e7d", + "regex": "(?i)^https?\\:\\/\\/shreyashharsh01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+index\\(1\\)\\.html" + }, + { + "hash": "a56c393c40993d9f588115424750827b6124750f4fd827ab2a1ca1d8e91c229b", + "regex": "(?i)^https?\\:\\/\\/sso\\-maiwebsrvr\\-5t4t34\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb7c7a7b83894fe4385065e868be32dbca7aa976e48565c295b77d8d41a8fafc", + "regex": "(?i)^https?\\:\\/\\/amanv3105\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "196930ea3a660d95aa241bb0a592a99c06837cd6ae73a55b1186f6b544df88ff", + "regex": "(?i)^https?\\:\\/\\/wayesls\\.skin(?:\\:(?:80|443))?[\\/\\\\]+SK$" + }, + { + "hash": "1120cacdb6466b002c43de7e8ef03442f79240e3cb49253ef78a36697df9d4c9", + "regex": "(?i)^https?\\:\\/\\/419e336c\\.dachdirekt\\.shop(?:\\:(?:80|443))?[\\/\\\\]+fr$" + }, + { + "hash": "2ab962f7ee3c891bce14be6f456aba2947129437770fe5dd581c99cad974d51b", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b52668d009934f212c5aa33cda14eb4a1918a18cb9a05ac735a1e5a798fa345", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fac149ec97573da32974ffbc3967b2330f604459f56d516470811e1f3d8ad02f", + "regex": "(?i)^https?\\:\\/\\/fglkvsdfoipv0985r4t5rtg\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c8e0bf73b1686da1255beed1a8ca6784fc25501529353e851c580b1866f540a", + "regex": "(?i)^https?\\:\\/\\/fglkvsdfoipv0985r4t5rtg\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "117c694034cb9c4cbbda73fe74613e716cfd800e8a2a792321188062a7c7d9da", + "regex": "(?i)^https?\\:\\/\\/fglkvsdfoipv0985r4t5rtg\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d70adab70b4c73c51d0faac4fc5ea80d31197b74f43efa3798524436484224bc", + "regex": "(?i)^https?\\:\\/\\/fglkvsdfoipv0985r4t5rtg\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.facebookofsex\\.adultcrowd\\.com$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.facebookofsex\\.adultcrowd\\.com$" + }, + { + "hash": "7bd13175d4082babc4c1f9b6ddaedd2a2f685bb9d1c130aaa2553c3bc3d1bc68", + "regex": "." + }, + { + "hash": "da3d61b6a4d119a27c5b7108803cb9caef1c77700d5c97fda2be3d2b05ddafe8", + "regex": "." + }, + { + "hash": "1e3c947a9190aa515446d6e61ab43ff14718f0a5d7f4d2ca162ab7be86006f0a", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+\\:82[\\/\\\\]+him\\.html(?:[\\/\\\\]+|$)" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.facebookofsex\\.adultcrowd\\.com(?:[\\/\\\\]+|$)" + }, + { + "hash": "5c54e6543d64e23e008764276fa553cac590bd8eb8f10a14d33c2e0689767ebb", + "regex": "(?i)^https?\\:\\/\\/5ya45ttg5s4rta334r4twt\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "852f6b5d0dde40033e3277675bc534d679b7a60bc8032ad6c897d725ba6c3766", + "regex": "(?i)^https?\\:\\/\\/nb4m5b10m5bn4m653b142mbn\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db66f8b376572348caa7d50303483b6478a8cc1de7ea937165989a9cc8c5b6f0", + "regex": "(?i)^https?\\:\\/\\/qxcfe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff4687e901162c8c58ff4d928077e93e5d69f9432d421db0dea83e0a186624e5", + "regex": "(?i)^https?\\:\\/\\/qxcfe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd2a5c80037fb98812a67c02c0e9018c836dab8bf8516ae074ee66659a927485", + "regex": "(?i)^https?\\:\\/\\/qxcfe\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b46ec8118b0b032151fab700a6b9b6fa98e7d0dd6e1a8a1706f27c25b0e78360", + "regex": "(?i)^https?\\:\\/\\/ssaas1\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "340c2965a732341943dab6ac217d37f77f52884d50a819b42f0fd740bf9dea18", + "regex": "(?i)^https?\\:\\/\\/att\\-101753\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb5e82c7e007ca7a9adb4273d7fbd32f0aab6e9387e37fa8113a74cac8a1fce8", + "regex": "(?i)^https?\\:\\/\\/authoritylasopa739\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c817ad118963f8f8ea957ad4549bda37a67d2d6be275cf86e10a03456c545c3c", + "regex": "(?i)^https?\\:\\/\\/bafybeihsdlc2rkxn3e3wxfrk4vwudprisoddz2jtfrue7g2nz4in6ugrli\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "e7a6887eef4409f32cff6c01343bef4193fa60d142cab2d14099a4a3e85d8110", + "regex": "(?i)^https?\\:\\/\\/buiooisduiofuieuowefuuoisdvuopo\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e86a93351207528ed734aeb3d18c18ad216a95c2e7a825320768530edf196aa", + "regex": "." + }, + { + "hash": "bd81ea9e16d0fad5f79c0bffbee4094fb8853295b0dc001a5e054b684d469593", + "regex": "(?i)^https?\\:\\/\\/ksdjfghksdjhlkdfmgjh334\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44eeb749c65014d287debbaba1e1beaa583808bec7df6df3cb4fb9c873497901", + "regex": "(?i)^https?\\:\\/\\/reagan\\-109787\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9094040bdedeeafee8409195882d7330664e206484bd55b53839658c65094176", + "regex": "." + }, + { + "hash": "38b495a5039e01e63e255468137ad100e507840dd497444eaf487e288349f059", + "regex": "(?i)^https?\\:\\/\\/reagan\\-mail\\-106150\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b610e34104126faf3e32dc8db778fe6e0a19b6b460977392fe9ef67f2ac27c6b", + "regex": "(?i)^https?\\:\\/\\/robloxaestheticcharacters\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aabc1df89fc34aaf85c5306e1f8231849b65882b6e5290b09a2d77d139b6d43e", + "regex": "." + }, + { + "hash": "9d8ec08c5813878dfcaa5891b2467cf94e9e65b5e07868c1d6b134153032e25b", + "regex": "(?i)^https?\\:\\/\\/dfuihuighugugdfhdfgh26598fd\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "607aa1294c90e1c01e78a13e27a6e4de366d8e6bfb1ca5c2e74655e7e216b323", + "regex": "(?i)^https?\\:\\/\\/dfuihuighugugdfhdfgh26598fd\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7acb1762f5aec6be34fcfecee7810bedcd59a99bf4542f14c3814878c46ba186", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\%20(?:\\(|\\%28)4(?:\\)|\\%29)\\.html$" + }, + { + "hash": "d016c5e3484dff718cdb6d6e2a9ec4ba2990c8937d8f493e4feb782b39af0c20", + "regex": "(?i)^https?\\:\\/\\/dgergthudghyudfgyudfgyudfgyu\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e55de164634cd658b62838aebffce31a66f5742d9229afa3e0cf500dafe8a56", + "regex": "(?i)^https?\\:\\/\\/noob2911\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "507d2efc312d44896e8481d41dbea0abccbf0e94b86cd4abc3270acd9b421334", + "regex": "(?i)^https?\\:\\/\\/dgsdfjhuggyugyuudfghudfgjhudfgj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d043205519ec05f49609c48fc0de4cb144fe6194ec0c007bf558e83ffccd458f", + "regex": "(?i)^https?\\:\\/\\/dgsdfjhuggyugyuudfghudfgjhudfgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f315cee83ccc6fda46c1bc4146da8d6f46c09c34999df983027d7339819890d4", + "regex": "(?i)^https?\\:\\/\\/dgsdfjhuggyugyuudfghudfgjhudfgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ad2459524bc703f0f1472cffca842cb42543b843a94da74cd2c8fc7f1bdb234", + "regex": "(?i)^https?\\:\\/\\/dgsdfjhuggyugyuudfghudfgjhudfgj\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a6b0a320462d11a434f9491774b737b48c836887a9626839289c51fe95ac63b", + "regex": "(?i)^https?\\:\\/\\/dgsdfjhuggyugyuudfghudfgjhudfgj\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "033b09b353cf90eef7e5ae944d1f1fa4a22f91264f813e8b328d124eded951ab", + "regex": "(?i)^https?\\:\\/\\/dgsdfjhuggyugyuudfghudfgjhudfgj\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "342524eb45d67200099d85bd71977c5be9a8c8f59ca7ce6b1f6ff9624b548108", + "regex": "(?i)^https?\\:\\/\\/dgsdfjhuggyugyuudfghudfgjhudfgj\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "111f795d1886bf989bf411cb963fe3c7cc4fae938b46703ed0ccfd2208e0e182", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bf61afc47651d9e43a54a36ea22faaf91563cedc394b5d4aa69d52215019677b", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8fde70e81f349e535e076ffa66bda050e4e73eb9694c2bdd18d2649951586a8", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0c7dadcbbc8bca2969be7599d2864d42913d37510309e9113e5b257350bd2fe7", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e7a9a27743ee29c31afbcc891b11411e883485799b81752c8153152ed74c516", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9f8a7ad98b494815bcba2ef9d3754fabaa2aa27382e1af44bf33bc535f744cb5", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "222a0f192bb43dae5bfc8ac1713c51cb0dbe6c3363418723418e140e2fabd3c1", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "183bed0e4ac0f6cb7de34196368b72c2c4243e2b5fbaa6078176245fbbdd8ebc", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38b44d15ee303d28866c5eb2542a5ac4999bc08004b5c5c16bc14bd0e41c77c0", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1323d707b69d8387a4783af1ef189d0c64c66347d1a45f94b2013f1802491f5c", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df9af986701e29ca730064fc4cb8d09249514c5eb4a0a50b5e2850c20d904439", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1a3965e34bc6ca99bc455fb8d5495c17a364828586f3ab65157ceaf7462371a", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd735fb9fdceb21d16800ebc824b83373bb023f94ef843910d9855de0ffba09a", + "regex": "(?i)^https?\\:\\/\\/asdasqweqwasdasdsa\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d531e4897c3ac31fddf2cc716b4104051dc66bbb3f672bef1cff854f9980d14b", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5e1de7237d42966d4e5356c141a1fd7923018251a57349e7a6c7ede6cc54ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\%20(?:\\(|\\%28)26(?:\\)|\\%29)\\.html$" + }, + { + "hash": "887a318a7646bd0781e31a091e87ab86b4bd2b2c3f4a25fad64e4f2957550937", + "regex": "(?i)^https?\\:\\/\\/kesh015\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c77a8a9580427f9b9919b07309d2e90f3a08249afabdfb75da0b04a3fe471f7c", + "regex": "(?i)^https?\\:\\/\\/www\\.w1580\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fbe7aa53a5b113ff8a617b2cc150d59936da41130e5f7e7b6f5b59b4c2bc539d", + "regex": "." + }, + { + "hash": "ceae2a661764369961ce7f116e51042f738e19f21e70f4622c22f5e5a68951e5", + "regex": "." + }, + { + "hash": "3111753f9bbb61047d7ccc95dc1a6aee39f947a9a57296cd4fcba9b95573d59b", + "regex": "(?i)^https?\\:\\/\\/varnisree06\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+AMX\\.html" + }, + { + "hash": "da1cf228a1efb50d1bf3d8748012cf33ceb22bd6007df08a6df3c9f05a1ee5b9", + "regex": "(?i)^https?\\:\\/\\/wisoft\\-russoft690\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c877c20ea3310dfa552b5b759fc18bedadb3aae18e1831e4ae19c3f7c70340", + "regex": "(?i)^https?\\:\\/\\/bhavesh6007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "09c95505eb36231bf58e841c30cabe7c2351ad5477cc376c4bd76a7367bc01f3", + "regex": "(?i)^https?\\:\\/\\/top\\-2003\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad1510efc2a567dc9b736b64029e94048833149cf7bd679c5ce940ed09c0f8f6", + "regex": "(?i)^https?\\:\\/\\/top\\-2003\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8dc3adf07c587948fdc09a99dd84149b1d231e1c8e38e1ff54ab2724876e607", + "regex": "(?i)^https?\\:\\/\\/att\\-104849\\-109710\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9296f46c2582352010cbab98ed02fad57e30e068eae0a71011183d44d28c2f3", + "regex": "." + }, + { + "hash": "249baded63a60e4d23e19f7de7dc20d697b4b5fa9818dbe07a07426625b59156", + "regex": "(?i)^https?\\:\\/\\/sumit9348\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e8f1032929c01719e1f169b075278210b57857f7bdc203b8e985305ff3efdc41", + "regex": "." + }, + { + "hash": "a2397cf2f827ef798641f3a957e40280924ac8da3ee77bc6c924d7257cc9f93f", + "regex": "(?i)^https?\\:\\/\\/dyuagsuyhcgxyagd8iasduhasidhuhuu\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "843c167890505a54c610446a33a64449acb5fab73691f79a96544ecb3b63d560", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0a2c8d50daa5004014b74c4bc82e08bd12051b92f28a9b379076ad8a366237d", + "regex": "(?i)^https?\\:\\/\\/hsauihohxczoicoihsdohasdohoiausdho\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15a8b2f4e1120926daf42be299d919233672813eee92e0ab144d00cf812ba2fc", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0c512c9cd576c0a9922e815fcda6e1cad32c3e8facd5851489d49414859ea55", + "regex": "(?i)^https?\\:\\/\\/hiausduiyhiuhadohasiucozijzjouooooaa\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "96c190a65184f064fd52c59e5278be2c7548324488d9feadb1dbea42f421a3e9", + "regex": "(?i)^https?\\:\\/\\/gioschxoizhcoiashdoaihoihxzcohaoas\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a798b7a739352ca9f6a65f3182155561c8b9bdcf7288a6a31b1854da56100c55", + "regex": "(?i)^https?\\:\\/\\/dausoyhcoixhzlczuxcoihaodhoihxczozh\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfdc01e3f37276dad1004a18b339dcf3446338e0b455b3fc940eca067f52d81e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "a53e38fc7f7f2c8ec6a745659797641a1fb9ee91519cd8d8cb76571e7a728204", + "regex": "(?i)^https?\\:\\/\\/robloxredeemcodeme\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bb9b71ffc68842ddea33b274523cc7b42383a6dcd46eaf495c9b6578054d78b", + "regex": "(?i)^https?\\:\\/\\/comofazerjogosroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4715c320cdd62a63e3b7ab4078f4f7b98e53a979b4ede76ec8e4ba72f9c84d8a", + "regex": "(?i)^https?\\:\\/\\/drfgweftqw3er\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49bfd47377150e538701d0761859e7d786b7174364458c9a7542798a64318bdf", + "regex": "(?i)^https?\\:\\/\\/drfgweftqw3er\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "732ee1155557fcdf0e1bdb3f18980785ede2193ada8af9e30e2d40c08b161f35", + "regex": "(?i)^https?\\:\\/\\/drfgweftqw3er\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ce438196cf7aa911f32270e7b4fdd08a768b2475163b937f51734f455e8a514", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4bcf4bf7be7975e971dec0dbaf259a9e447ae66d736c8086eaa385a61c09d7ae", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a6502977ce2bb0311eefdbb9e6a236b3aaee8929ba20fa9f373d1eee877bec4", + "regex": "(?i)^https?\\:\\/\\/thailand25offical\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bc7cf80fe63f601aeb8b93055d0ae43012c0a755fd4a36a9e30f915e94ece2f", + "regex": "(?i)^https?\\:\\/\\/thailand25offical\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0e550216a987867f72f0152904933019bcf12a2323a0cdd40ec37b1bbc13d58", + "regex": "(?i)^https?\\:\\/\\/fffree900diamonds\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efa4e15437c78f74d2ffce87d66c0d85c53a4d8e1e5b2d097acf8299d3918fa9", + "regex": "(?i)^https?\\:\\/\\/fffree900diamonds\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53971cd882f311d140e6824dc7563e566e2f5a061c62e749559ff6b1f660be4c", + "regex": "(?i)^https?\\:\\/\\/fffree900diamonds\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e55c18973fb2e7de3c74421bf5f9cfb315534478c85c90b2addf3b09c0c5e95", + "regex": "(?i)^https?\\:\\/\\/fffree900diamonds\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9291eef19d4379fc7fd5d8a519c33e3ff0c585296dae454cd66b8d69d1d3477e", + "regex": "(?i)^https?\\:\\/\\/fffree900diamonds\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4b5ae9e3863f7d89fd479be1f56ebe7209886055004d324735f5b970016e5e4", + "regex": "(?i)^https?\\:\\/\\/fffree900diamonds\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "585c6eba554967194dca3a36773299261ee626abe1e01c1ebc92d11dc04149c6", + "regex": "(?i)^https?\\:\\/\\/fffree900diamonds\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "db20d92b73edfc512a33015b2d2579ecb1c13757ad59b84fada383e537b6d4e0", + "regex": "(?i)^https?\\:\\/\\/fffree900diamonds\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25d7bc855bf2e38a325c9055ef8af0d6069ff13a0fda35211a8ca172bd6ae211", + "regex": "(?i)^https?\\:\\/\\/fffree900diamonds\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7487a8b817a89ba100bf9ec288de53ee7e16d787e0e930d335ce932a234eb072", + "regex": "." + }, + { + "hash": "61ab389bf8ee53564b16ecf76b812ad70cb1a40d7cfee8f789579c0b4640646c", + "regex": "(?i)^https?\\:\\/\\/freefirereedcodesite1\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc7787ef9f8cf5f0c81e477c34659b1f38d35105c0b82c99ba9b942aa719ed04", + "regex": "(?i)^https?\\:\\/\\/girlidol1435\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18807e7230d8726c72624e6c9b137ef8dd73c2899fd0656efa32aafcb789d6d5", + "regex": "(?i)^https?\\:\\/\\/girload123\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a23333fb0be40a80de04526c4451fda5b08be93d9efd75a2f0f42c61a8e6aeb", + "regex": "(?i)^https?\\:\\/\\/girload123\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5ff0b5364a00dec9193776f82c77d5e973423f48f06a9e3c8f0c036708d47c5", + "regex": "(?i)^https?\\:\\/\\/girl1ssw\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6403c5e06e55166723b0be367d0862ac97388829265f6ff1a747c02e20e63c02", + "regex": "(?i)^https?\\:\\/\\/girl1ssw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73f23f883d591381f2a2aa88759c27be0820985a26d57f585cf1aa8921f04cc3", + "regex": "(?i)^https?\\:\\/\\/girl1ssw\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f02efc3c1d3a97bf7b2074641c34a34d77f2ef78ec556afc5aad750263b6fe8d", + "regex": "(?i)^https?\\:\\/\\/sieunhan2ew3\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b39121290c7cf5f4fed5efbce74ece5beaabd2a2593b71464fc69a1b2444979", + "regex": "(?i)^https?\\:\\/\\/sieunhan2ew3\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "69e43679dd4f5134a388948d6a3dec318d19bc28c6ec1d41fe07c19525f4e063", + "regex": "(?i)^https?\\:\\/\\/sieunhan2ew3\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42fea090cb79e80a5298b58bc62ea925b7ec2af015c2089022aef884a271819b", + "regex": "(?i)^https?\\:\\/\\/girlp0o9\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f9a609863d225f432a72c7375b3901d2394b67f52112d110892fa55e647bb6c", + "regex": "(?i)^https?\\:\\/\\/girlsexsy212\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eee8ea47d7ad51785a9d0def206afa92053fa0671a1624ef569c81c1062769f", + "regex": "(?i)^https?\\:\\/\\/girlsexsy212\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bf319cf39d92017e55d97c16d95e423e2749558953f3ab400f5c28ded2b828f", + "regex": "(?i)^https?\\:\\/\\/girlsexsy212\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a4d413d89f2bb6405ae88aa0b3a95b460e1c508f1b2224812930979f10ddf82c", + "regex": "(?i)^https?\\:\\/\\/girlsex1232\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c5a354960ebe4047b5b6d9bf843d32bc577537f65f413570748a40e51b87ac06", + "regex": "(?i)^https?\\:\\/\\/girlsex1232\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ce62f9aa2094311b0c3f5f0047a28640f8bfee03af29091674a10cbc8857c6cf", + "regex": "(?i)^https?\\:\\/\\/fremaroc2023\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e344e10b159720472cc6be73da6b744c5b405671659204ec0eac54a832c1eab2", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4018b53f3853d97b827ceb8168bed0d5a77bc1f11b11a9e665950543132e973", + "regex": "(?i)^https?\\:\\/\\/fhdfuifduigtdfuigtyuigtyugfyu\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71f0fbaf7c96dad002a1b143f169c8c51b80ff10f585897a95209e69492523cc", + "regex": "(?i)^https?\\:\\/\\/fgdf36565gsdgsyudghuudfg\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e5ad8cf24872413ce986b4a322c9e2ddcbc2e110d4751a00531f52910d5462c", + "regex": "(?i)^https?\\:\\/\\/fgdf36565gsdgsyudghuudfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5ab8f661193f7403e8c0478f826ee858a7a79060e2a1714f0682ed748645d7b", + "regex": "(?i)^https?\\:\\/\\/fgdf36565gsdgsyudghuudfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23b8ab649ccb7a9deef377911152976fb22c06754b28677976f36ee2a8e8f3cf", + "regex": "(?i)^https?\\:\\/\\/fgdf36565gsdgsyudghuudfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9caef6ea49bb3c8edd75c615a6e378d87e7ace2bb34ced129a946227ad17796b", + "regex": "(?i)^https?\\:\\/\\/fgdf36565gsdgsyudghuudfg\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8022d10a59f2d8aaf00ef011af79e06ad531df7f19c69c34a94cfbf98b69f8a5", + "regex": "(?i)^https?\\:\\/\\/gdfjhgtyugsyudyughdfgjhdfghdfgdfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a30c3b99984b1b669d61d544e6024149f0d0d8590a31e0fb573d1b02615be30", + "regex": "(?i)^https?\\:\\/\\/gdfjhgtyugsyudyughdfgjhdfghdfgdfg\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89031fae716547e27c9144a8705ac7eeb633ba6bb853eca9ea0fc032ff8c110c", + "regex": "(?i)^https?\\:\\/\\/krishnapratapsingh44\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "debd0802f60b6fa9992953dd4871489b5a6c490257441161da8750cda3d1fcbd", + "regex": "(?i)^https?\\:\\/\\/serviceorange1\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7c5a793f74163be6c84cc545f71cc1a78bef729cd0e2f9fdcad4be7d33ef256c", + "regex": "(?i)^https?\\:\\/\\/dhhairya5\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2fa34265596633341b4f33e832e729805ba1ac6a57d688f0da01f870403dc90c", + "regex": "(?i)^https?\\:\\/\\/attgp231\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dda0e61c96b25c649879a11f6ff2ef67f317b1d66832e2da3f6671ff6729b60d", + "regex": "." + }, + { + "hash": "517dfe0ecd6605288b051474d379d10a764700d1434f0b4c02e9fd83816798a7", + "regex": "(?i)^https?\\:\\/\\/join\\-messenger\\-room\\-428611\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff7a5cd3ee1b97d7a810b005944528aeee6dc2c36b126b7d8a627619cb190fd0", + "regex": "(?i)^https?\\:\\/\\/join\\-messenger\\-room\\-428611\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cddacb9b371d54742533a02c5f8f283147a8bcd9c28895652bacf36fcb8aa631", + "regex": "(?i)^https?\\:\\/\\/join\\-messenger\\-room\\-428611\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "641b2a06c2c4310c2e52b4350e20940c000e3823c72a63ece8a3741958f58af3", + "regex": "(?i)^https?\\:\\/\\/join\\-messenger\\-room\\-428611\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa1571f05fe78548fec35d08a358120469c34f5328ddef785d0ab664925f43cd", + "regex": "(?i)^https?\\:\\/\\/7rishov007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6fdde734dc4b04af3961f56c9c9340dd6322ab54b9774674d16fdc531c136d7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Pa[\\/\\\\]+Pa[\\/\\\\]+Pa(?:[\\/\\\\]+|$)" + }, + { + "hash": "151a54f48250edeff03a8a06eeba37a376e9fa1b3d0ae2033dbb3af168512eb9", + "regex": "(?i)^https?\\:\\/\\/www\\.259365\\.xyz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7507688d2ce4097e22655c4ea76c9d0a0e04cba2b7ebbd5c07ee2b23f4ca7821", + "regex": "." + }, + { + "hash": "1e4694b03c4571e6d05243fe7381cdd7a16b6f2c52e8ca3b621531cc892f0cef", + "regex": "." + }, + { + "hash": "7ee94c23b9b1a807a9e209a4045fe8ccfc9f8ae9d7c3d39105af1766a5b4b887", + "regex": "(?i)^https?\\:\\/\\/albin2207\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "09529a55b1d05466474c532e0157df30440384d655349367c98c16a08e183a4b", + "regex": "." + }, + { + "hash": "da5aea49deab4f2b85e147dc428d36a7a01973846b7398619cd51713e6e68030", + "regex": "." + }, + { + "hash": "92f68ea34ad372a3001e6b90e101b420698cf7a5d1d52762b21f00348d2a65a2", + "regex": "." + }, + { + "hash": "eedbf9b69d65a97f7851513b46266770f2b001ddb22d0e8b07f192461a510209", + "regex": "." + }, + { + "hash": "ae53806f0ca6669df7b94c901e611fd37e2ffb4bd9bb16fc9c54395d23b050b7", + "regex": "(?i)^https?\\:\\/\\/examprostorage01\\.blob\\.core\\.windows\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "fa6902bae2a97b1c8b2903072a1306541d69705321f9a8fe60f3c86649d62a49", + "regex": "(?i)^https?\\:\\/\\/mail33\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "34c2f398ede43fb476242c1ccce9e692aa2cbc2ce9101fd8959870a8b5da8643", + "regex": "(?i)^https?\\:\\/\\/juno\\-108752\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "867eb39d308f088473e569927129130ab1441d64d79c828a4bd18c0d75d609e2", + "regex": "(?i)^https?\\:\\/\\/attinc\\-102134\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+ll[\\/\\\\]+index\\.html" + }, + { + "hash": "4cb9d538558da5acb66daf0b96a4873de53fc88505bda71db7896e5e1f679c1f", + "regex": "(?i)^https?\\:\\/\\/girlthailand3e42\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "96fa6f631a1b567282b98c507fe0c5451ca4e36c19c8abf9df6e0efb88f29503", + "regex": "." + }, + { + "hash": "947477bf8fecc71b8d4fe1256dd394bf13a4acffbab650f61841990e4113fa36", + "regex": "(?i)^https?\\:\\/\\/girlthailandq223\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "38626cb332b53c52acdebfd7ded13264748017310d7e55faedee644daa9a1d70", + "regex": "(?i)^https?\\:\\/\\/girlthailand3241\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "931daa03316688bc5e2c392ce41464c7c30acd465cf2db104e938b5c9dbc1e1f", + "regex": "(?i)^https?\\:\\/\\/girlthailand3241\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a9e4d5ff328c08cece6d8cbd3adc447c972e3a159dacf921c8d5092c7c3fd993", + "regex": "(?i)^https?\\:\\/\\/girlthailand3241\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "730b75a57598214f72a0df24d5695aac4f80b4ba9bd5f7104a7257b2b5031042", + "regex": "(?i)^https?\\:\\/\\/girlthailanmd34\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7763db5b213e6e8e77e32ad2acc4edb47f6f19f0d763e41913073f72d8b2b4d7", + "regex": "(?i)^https?\\:\\/\\/girlthailanef24\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bd078c386035248dd014e3ccd397828c99d49ba6e9eea789d0ed8c90c83e5265", + "regex": "(?i)^https?\\:\\/\\/girlthailand3422\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "58956805fd63155d8cabb08b020efd0f219177ca61f2a8d457d98cd352535950", + "regex": "(?i)^https?\\:\\/\\/girlthailand3422\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1239bb8d0cfb7a94af500e5b5c465079789b571a32fc0fe3ecf70c36e26df8aa", + "regex": "(?i)^https?\\:\\/\\/girlthailandw213\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "709d5a532be08fb9938b0cdb5438952303e45d33d3004c8414ee502b1df20633", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "500943a220bc11555c835bd79ef26a5e04171a73aee9e837d088ad9db2f88aa9", + "regex": "." + }, + { + "hash": "2fbac93e26f6c64bfba9cd85d6ac04304fc325614ffc5c708412d84990bcb64b", + "regex": "(?i)^https?\\:\\/\\/alvi\\-05\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bd498db8e3608115519d17f791833e80cae2ecb5a7def9c03817258767cd414d", + "regex": "." + }, + { + "hash": "277eca3a7dcddbce0c2264e54b121906bd2d0e6d09fa65010a6d975e2dded451", + "regex": "(?i)^https?\\:\\/\\/vickyraj11\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "172e795b83c7871ee80a257f613bec6da0c45840b49b6a380bfaf97a97164d11", + "regex": "." + }, + { + "hash": "96f2abdf791cd72af38a7648715a31e211ac99fde55b0ab524aadde095fce31d", + "regex": "(?i)^https?\\:\\/\\/messagerieorange\\-fr\\-baudet226735249\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+at[\\/\\\\]+acha\\.html" + }, + { + "hash": "c3e6c63b9d2d945dc9bc6e649077abe3be02c42cf38e81a66a6518c37b2fb18d", + "regex": "(?i)^https?\\:\\/\\/getfollow1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "069d3eab927df5173a74d4965d80061359c8ab5e9a4639fec17cac3b20758736", + "regex": "(?i)^https?\\:\\/\\/steam\\-card\\-available\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "90af3bd6c37fa7cadf16e6d320b7029d5a29e7959855ed8a12aa5fa5977e88be", + "regex": "." + }, + { + "hash": "eb90bcb3adc61d7239bfe5736bbb1e874abbf19364df3885aea9788b7c3d6db5", + "regex": "(?i)^https?\\:\\/\\/ssaas1\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a1f809f384a668a1f3acd63fda11e5a801eb7160540e7ea8eb0598a0920d84a5", + "regex": "(?i)^https?\\:\\/\\/two\\-oneo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5778842192f5f45eb011edf87abe4db48d0da7dafacef94cbeae02b5917541f", + "regex": "." + }, + { + "hash": "5f95a5c42cdb53b0c4353a6b131eb4fbe89c972f13f54ec56ae97c93c1a39197", + "regex": "(?i)^https?\\:\\/\\/shushank357\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8633aa676ed0d7bfa472136c729325a6eb4bca6f285770ce617ca40c315f94b5", + "regex": "." + }, + { + "hash": "466758047c88ae8cc08405efdc7d993c5d842ea0ecb72d8c195e4dab5aca9784", + "regex": "(?i)^https?\\:\\/\\/aayush2870\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6a1751320a71adbe2b5bb3c664379b2e457e903ed81cbf3c746f7effe8574d6f", + "regex": "." + }, + { + "hash": "1b4b1a50aaa90b418ea535485e4fa7df5162f7edc9dd2207998c9d745b2e838a", + "regex": "(?i)^https?\\:\\/\\/login\\-screen\\-101539\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5c42d0f349632c9ef4903b9d786984ea956aac8bd874fd73fcab0f8a4284c14a", + "regex": "." + }, + { + "hash": "f12e92f533f496e3d71e311b2083df3ffc7cc1f5aab38e7c5757e231da7f4047", + "regex": "." + }, + { + "hash": "18a7ee59557b54e964fdde3742a196b065c8f6ec598b328e0b03bd571066d173", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\&\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e71a89fad0cd07f7a0dfd0478730af9a3b4a2c7e9e8be478688a05ecbc183c6", + "regex": "(?i)^https?\\:\\/\\/prakashgoyal359\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ba187e359338a4d745cbc8b0d350d17d3c5026380649b7885fb48560df7ce78e", + "regex": "(?i)^https?\\:\\/\\/dgsryhdhufgjhhryuhd\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2344d431478581c7537b55a25f4644f8859a01f4018aea250da6bd38dae814d", + "regex": "(?i)^https?\\:\\/\\/inc\\-103481\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "09573c6e37d859764260d91c5bb42499b054df25c149b132803f018abb68ecda", + "regex": "." + }, + { + "hash": "53464f48c38620e15e45b9c55425af454cbc2e69ad7c87cb974464b7ef3abc47", + "regex": "(?i)^https?\\:\\/\\/sbc\\-100377\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cda376c5ed3cfe8dbf4bbc5a3cb886ddf95f06ebdfc0b1686ff65b47a0c3f742", + "regex": "(?i)^https?\\:\\/\\/att\\-sign\\-in\\-105184\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "117cf344e0aa17dc16a8cbecf3f82398d6ab34d4492e253ea490e90c2819a89f", + "regex": "(?i)^https?\\:\\/\\/att\\-service\\-104200\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a1e67feb7a1bc8f61967aa30e0baa93b4154ad1d235deeabed2d7b43b5ae08e9", + "regex": "(?i)^https?\\:\\/\\/telstra\\-107060\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bc2d7b9fb71b95312c32c0e5633114fedd385028b0bc7a568f7d11decdc6c4f6", + "regex": "(?i)^https?\\:\\/\\/telstra\\-102379\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "246db40d900911740bfd4bb145817e0f1894556a44f903593331f949855bfe6e", + "regex": "." + }, + { + "hash": "9914954da5c5d187751d6a2aea1e9f42d588ed200bfd2d2f05d79f1a2db7c433", + "regex": "(?i)^https?\\:\\/\\/telstra\\-103248\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c88e3dfcd47f42c4442e2782b247df86a48c44f2fa245847456d5c77e57c9933", + "regex": "." + }, + { + "hash": "96663d7ad96839cfcb4d3e0bd8aab4c66addf6753028f3dbe86d66132f433249", + "regex": "." + }, + { + "hash": "628c0bb4c2fd68868aed667ba1f37845ce7fc3dafee7d4ac79b4c46057105c71", + "regex": "." + }, + { + "hash": "a45d218c82724320100019813781d9176780de46a0f1309fad320ff3f36d3556", + "regex": "." + }, + { + "hash": "1e1185404926c68cbfce175dc6a6de86425ca79adfe91f539b2655bec86b46af", + "regex": "." + }, + { + "hash": "33c5250c3129d03c9eff42b9e9b97401c86d7d6030b748b6535fc1b6d6d9109a", + "regex": "(?i)^https?\\:\\/\\/authy000\\-ssomail45rtfg\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5c313eec4c55f0362674e76c190731ce6c1b794fe64f1e6a0bb80fd7c1138411", + "regex": "." + }, + { + "hash": "27ef0e965069a9738d6c47a9893913a451fd8f21de059af831193602433f3f60", + "regex": "." + }, + { + "hash": "4a6dc4eb2fdbf97730255fbfc3f8f1969229719217fb4f451dac74fc1e0998ae", + "regex": "(?i)^https?\\:\\/\\/yatin222\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a6dadef894cf3929c1d9602cdd24ad0de0953c4935b3c8d2ae26cf27671adb8e", + "regex": "." + }, + { + "hash": "af121aa755c4a6dc146b8befa4c9b9ca0fdea66ec400e0956d9ad651c06cce28", + "regex": "." + }, + { + "hash": "e7cc9df7d8cdec44807aa89aa39565b65c3748dcdb90c954dd2a47a4fb0e7083", + "regex": "." + }, + { + "hash": "7847e10d7dfd43f291f319e7c07fba3758a242965f667bc798953a10e514c1b6", + "regex": "(?i)^https?\\:\\/\\/hsyy6666\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b57dafd7c809737de2c979dff5b0dcebe5e025befdb7890222bea79508816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=gGjJ0LHNgn6u9jiLqTy1\\-2BJvlvdI520\\-2B4DbpOlDm8sZjTkuskrOx7S1Gpb3ztgEP4anJqKtskmh5\\-2FepCNoKqazPXq7P6uaaIknJgY27p7BlnsZXn\\-2B5d8DbTi64EMguApAgVL\\-2FWxOw\\-2BT8Bd37Im8kmb3khdVWPpOV4GyHvxREPj82U\\-2FyTYgfbdIAsdWGr1jQ\\-2FjtlLAhxGCmpmUstzMj4KEA16M\\-2FUworvHQlHFsj42AsUZnlEGf0AwCcpOJJ\\-2BCIjdoknoPt\\-2B05PxuZ1SnCN1speLCxTiLJsfzrbzb1TzmZKVumLNwidZQTyYlyN8EQbJIeFNfRKhGMg\\-2FM5uWA3CJECMK\\-2F6jmta2wkdoxKC\\-2BgNFopV1xKHr0gtDoDQS7WaUg8FO3Mhx08Z5DmrHe3ageUQQMTSoqjuEVRzEhv4zwJaIm3H9bSea1aNCbohyRKI\\-2BkC81p9qdR\\-2FukcJsJ4juNnYZ\\-2BFuu28fRoHjODzni9IU0SOFH\\-2B2deOKqBx6Jx1zvjksWXvhKyYif0FBQt7JsnxzolBTtS0AlDDwkOMD48qF9n5Y6hk\\-3DhFZg_aTdYmYCDXohj\\-2Bh0QIwN\\-2F2W7bFotoeQKu1XVwkzm5H5JTm39QoQSLPpiu\\-2FhMnBYyBIRIG6XykhyMBS1P3XMA\\-2F\\-2B0s2qnoqs0VUbfneDfbcUcO\\-2BboOgjDryWOttATomXnUt2k7WKp5swyO0I1V8v\\-2Bj7RCgJ4PKOZAo\\-2FAhwSve9E7kIgLhIYLv89LgalFKq0PQkG0KlUjHNyPLlHzwSGutqzWg\\-3D\\-3D" + }, + { + "hash": "1e9b57dafd7c809737de2c979dff5b0dcebe5e025befdb7890222bea79508816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=gGjJ0LHNgn6u9jiLqTy1\\-2BB2\\-2Fv2LGrggJu4VEUZNCWJNCjDq523Ho21qE3jdna\\-2FOpTS9w_Kc2v7xaCoy1Km2NrpLt6nnrT0t9OX4TEtxZRoKhJz8ihyx\\-2BeWbMOQvVmoByjjirNcAMFpLcCgA0lizIMfgzjP7I09L11IEafIt198XELfNoA3Llwe\\-2BM\\-2FnNSZ2o45\\-2BjzPBHxvQ3YDn562WV\\-2F4WZf0sTLuB\\-2BanRp2GKR\\-2FOhlAsfbArLzaTAy4YGIaJEosJ\\-2BIl3\\-2B19C1VKwghe0xOnxvWrd5p4FlG2goCrhg1aSRZ627Mc\\-3D" + }, + { + "hash": "b5627d65b1b4555bbef29366093bfc43eec98bfda6df1c943622c19033398e53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "4f25a42121d03068600d63712d452368a22a26b4bbe8d2610225b5a72e4876bc", + "regex": "." + }, + { + "hash": "710e406a608938c902622e640e1c92c1da9b5713123b80c745bbc0eb7dbed470", + "regex": "." + }, + { + "hash": "05242f87ab0ee51583fb597b3271715963b56c2b1e898c96a977cabdd394b9e2", + "regex": "." + }, + { + "hash": "13a2c791f4a37e2af9cdeb7b0aa7de15c39cf8085a611e55499fe79e2a2e2727", + "regex": "(?i)^https?\\:\\/\\/suryanag9966\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1e550cb6f042788f4697d03cd59eec19fa8b47532bfcff7e97156541198eb71e", + "regex": "." + }, + { + "hash": "64fdd799b3188050ef8aca5c7e400dd91bd78cff2725ea8e17b394ffcb36e2b9", + "regex": "." + }, + { + "hash": "d9d9e0c6744c31198d6ecdc6b9714aa7ed856c70b83a7ecf080cfcf7b0e5b1dc", + "regex": "." + }, + { + "hash": "cd741b6013c42bd2aa133f4591d625e18147e864cb81ef73eed0115f79accb02", + "regex": "." + }, + { + "hash": "35795ac9caab8a29a2880edfc2d390fc885e2bf8f7def703760eabbe840533b6", + "regex": "." + }, + { + "hash": "77897be9fe8e07d2d6dac2c40669e2d9071b4331bf11e237c7af6cb4300ee7d7", + "regex": "." + }, + { + "hash": "1e9b57dafd7c809737de2c979dff5b0dcebe5e025befdb7890222bea79508816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=gGjJ0LHNgn6u9jiLqTy1\\-2BB2\\-2Fv2LGrggJu4VEUZNCWJNCjDq523Ho21qE3jdna\\-2FOpIoi6_xBnWqB3lAzDukuWnL37RZWq5dh1Y0ZfT6ZhV9ztAB6ASPUl6KZw80nWOtqug4lqlY92GD1LMTQBEwZhRCu3oLw2patUHNH\\-2FENGgmuGz1n9QOUplPLhbPnsHoQ06pVa6mv\\-2B\\-2BGXveb8Cmyq88h\\-2FPXRwy2Gavo68Se\\-2BftVZ37CjS4Y2oWkhJMv94TApzzTty56AMmUTDS0fEvC4X6Uz5dQ0LWc021XMOfkD2vF3kZq2Z1Y\\-3D" + }, + { + "hash": "1e9b57dafd7c809737de2c979dff5b0dcebe5e025befdb7890222bea79508816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=gGjJ0LHNgn6u9jiLqTy1\\-2BB2\\-2Fv2LGrggJu4VEUZNCWJNCjDq523Ho21qE3jdna\\-2FOphw5l_xBnWqB3lAzDukuWnL37RZWq5dh1Y0ZfT6ZhV9ztAB6ASPUl6KZw80nWOtqug4lqlY92GD1LMTQBEwZhRCu3oL5JIQzw4iJf1IWz5kB3mmYP8JW0doGlmO3R\\-2FRyLTXyj73C7XHxo59\\-2FT6xSERSbFDZzA24nUrE8m1xqJ4LGkKDylvK2YvP23oNNlYRMVvre6dxOlqFeL7sfIpgC8uzpJo4wiIZ0UbS73yWD\\-2BU0oPlr74\\-3D" + }, + { + "hash": "701430b787514ef8ef9192e890dd4b302cca70ec5df652b787990e0299987082", + "regex": "(?i)^https?\\:\\/\\/avinash6817\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a508176baebf1667c73835222c2cb878f5a9b301a7b1f5c0a336235450599668", + "regex": "." + }, + { + "hash": "701442d16cf3ca03a5522b737160683a8770de7255cfb8e08045e957571825e7", + "regex": "." + }, + { + "hash": "1312f2cda5b48cfebd982bc2eb6755b2ee239a4285b23f08d5762528f7cc418a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+trezor\\-suite(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f90e92b5801affb5c546538e9ad432efd761871370b5970b7ecf5e47f67b977e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+V\\%20I\\%20V\\%20I\\%20N\\%20D\\%20E\\%20X\\.htm(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1e9b57dafd7c809737de2c979dff5b0dcebe5e025befdb7890222bea79508816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=gGjJ0LHNgn6u9jiLqTy1\\-2BB2\\-2Fv2LGrggJu4VEUZNCWJNCjDq523Ho21qE3jdna\\-2FOpd5k3_hy5rjVhQjpFh0bLKzj\\-2FNG0pE6RjX2K0JOSDdwpP5cs3TE2mBbo\\-2Bk6bQlQ0yWKDAFK\\-2FlOs7zHQqrPrSBRLyW02pqYVVYbvKr6uhQqRV2ov9vL\\-2BVZ1HFP2EDHn4bD35TphGhGK9jQ1cyI\\-2Bmo59jKMUOGH\\-2Bwk8\\-2BVuaVai49J0U5Okfd7n32thArci6Z1FXCfZHXEU2ZNp2ulMZJr7EV7V7nipQOAiX4k6M3znqRfqbGR6c\\-3D" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+mail\\.htm" + }, + { + "hash": "12a10e5ccaa2a4392c023be3fce7220712342cc6caf56184223d5a1c539db4c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+doc[\\/\\\\]+cow[\\/\\\\]+nl\\?menu\\=c3VnYXJiZXJyeXM\\=\\&q\\=https\\:[\\/\\\\]+nid\\.naver\\.com[\\/\\\\]+nidlogin\\.login\\?mode\\=form\\&url\\=https\\:[\\/\\\\]+www\\.naver\\.com[\\/\\\\]+$" + }, + { + "hash": "5677ee61904cb3dc876371f5f27763591d668e2dbe558279e7be865ce4eb922b", + "regex": "." + }, + { + "hash": "f412becdc50b88f05cf903167210fbf78f7829bcc9db5aa92c43fb2bcfaa6c6c", + "regex": "." + }, + { + "hash": "d766c3759768a78877e97a14e1c4a6e25e85f0f78156e02a03dde7521a406fac", + "regex": "." + }, + { + "hash": "95f0e81f855a3733841821394040c1848017cb92db3845b97fd7fc53701b1bcb", + "regex": "(?i)^https?\\:\\/\\/mufeez18\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c7604a1464f14d3c1ce30d549336b80b26cbdb8c8766c04a6b6b5eb737bf364d", + "regex": "." + }, + { + "hash": "7c987d4e64754a50102b91626def3b55acc8d307b9b91529fa83a601d25ff9ad", + "regex": "." + }, + { + "hash": "57449df9dabf8a401061a8cf9b9423d09567a9335f7164399addcb15f8130a73", + "regex": "(?i)^https?\\:\\/\\/officialfreecoinmasterspin\\.w3spaces\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "20deca3c21ed228651feb50f261a8a7f8fdb6c14183973b4a6690d0d810135a4", + "regex": "." + }, + { + "hash": "a53edb7754ba6bc23758fa18ab9c1e5f3617962331342ba97373ba0a4aa7ff08", + "regex": "(?i)^https?\\:\\/\\/adarsh27a\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "09e26a13fb684961dce091bbceb073387918558867d34354fd9a20182b1a984d", + "regex": "." + }, + { + "hash": "fefbd07bf3d15ba8912c1ef4f571734449a5bf7d1b6e2dfe910ed06dd5348c0d", + "regex": "." + }, + { + "hash": "428e41053c20ecb323fa2982817723644f1bdb449145b674ed7e8596b7b1738b", + "regex": "." + }, + { + "hash": "deefc2a11b7649186ab65c62fcafccca54ea35433b4ba308c63967ac8b6d2de9", + "regex": "(?i)^https?\\:\\/\\/juhisingh12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0f2c897ce9a2cd04303393433ebb3e8e4f794f6b61ed257a5dc7b81e48f852a3", + "regex": "." + }, + { + "hash": "eb4ad9704c188bb610e078693e80b5efa1fda8b8d9c4e6ef1f0ef9c0d0a86a37", + "regex": "(?i)^https?\\:\\/\\/sam7836\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "03f67f422412dd096e5a96dbfd66834f13aefe61e1f1899fde1f156d7696cab6", + "regex": "(?i)^https?\\:\\/\\/utkarsh9973546694\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0265f328f687f3a35296c18de0de7951b28c082535b8568c8d72b924b79b7f1f", + "regex": "." + }, + { + "hash": "a3098b89ceaa4eb6c09d892d9d3974be51feb2500a77515e078ef1ff58892fa8", + "regex": "." + }, + { + "hash": "070920b5794264364d218c8e0b705d3cfd14bc0f0d55db801ea7fb3b9d9e020c", + "regex": "." + }, + { + "hash": "22edc34f3fd1846ea5319d889950d837abbfa9f567641fe03885bdb7009a7c26", + "regex": "." + }, + { + "hash": "75ab29da6ed9ae46f1a30c9847d769e5c3d2c3c558554eef32d90b52539a406b", + "regex": "(?i)^https?\\:\\/\\/delispam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "aa3ac7b88ddc448c7e51a18f1dec96487ac847dcadf1c4b1674d4b2f6b8f63b2", + "regex": "(?i)^https?\\:\\/\\/delispam\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9d8c5eec84c0fe82e57c216f897e10df4db95d07ce09ad189c23f2f6d36775a5", + "regex": "(?i)^https?\\:\\/\\/delispam\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2e2a0d113dbf8a0737911dcf972654f3d162581b3fa76037e11cd1093c4c502f", + "regex": "(?i)^https?\\:\\/\\/delispam\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f7b0d3a7b809e6b5f0d808ab8d8dbb7bbe91ab2dd3ca129db2ed6b6e6579eaee", + "regex": "(?i)^https?\\:\\/\\/delispam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "caf1fdf2825bd4ce80ea023954b9e49b7817e3a7d2d441e0e07c7583e271a4e3", + "regex": "(?i)^https?\\:\\/\\/delispam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "55a42b12c5f8a123785a952304d16d3f2eacb7f3d53200a70e448a141aec154f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service" + }, + { + "hash": "8c5d59f4dbd9ee189a04e78a6513ba79ad9dc51f26070dfe0c2d9d8504c3fe5a", + "regex": "(?i)^https?\\:\\/\\/saiteja0987\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c3affaf45e5210ce285e1d0f619f933e573a48804b16eb3f0cc62e24a2406820", + "regex": "." + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.facebookofsex\\.adultcrowd\\.com\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.facebookofsex\\.adultcrowd\\.com$" + }, + { + "hash": "31c404d14b9a6b5d686a5a4b7df2a99ea914f2f00d3d22757afdfae57e080a63", + "regex": "." + }, + { + "hash": "51e907846dac2f5e04d90c0ec9ff03f68288eb72da98efb278d29de871393995", + "regex": "." + }, + { + "hash": "496e7382fda27e1483eba69ec5ef0f1f692229103f7b5537a286f472d1920289", + "regex": "(?i)^https?\\:\\/\\/php\\-lemon\\-wolf\\-tiyon59541745962\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b57dafd7c809737de2c979dff5b0dcebe5e025befdb7890222bea79508816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=gGjJ0LHNgn6u9jiLqTy1\\-2BB2\\-2Fv2LGrggJu4VEUZNCWJNCjDq523Ho21qE3jdna\\-2FOpFn2t_pDgDdUlw5EdFcxJuNvKAROsMnglTI6C5qtU\\-2Fav8uaUoRH7aFqPwOi2paMJ7SJK5O0Q\\-2Bv2cX0QOGCIXQPHDJ\\-2FCJEyq9kuQBfPMS2gVXQo5LU3K8Ys0hnfbomtVXIigUifKz1Ge5fcc1oUY9cM3zB2D3TMxk\\-2Bjhr5SRLoH7t0WXaJFhzkzFGkulTRn\\-2BMNSVpmpwhGI5RajjUZ5CO8oxVj8qg\\-3D\\-3D" + }, + { + "hash": "92c5aeffdd0b7effc67536d27dc2254dbfc4a07972296370cfbfc5040ac1b7e6", + "regex": "(?i)^https?\\:\\/\\/ayushtawar13\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b816557a3e18c68eda9087e87273854c10c0f6a112b3cb2f8abc3a98d0aafed1", + "regex": "." + }, + { + "hash": "d2ac54c4429f0ca9365c702502b0b1f2d95d34cdf84feedc697b465bfed2f36b", + "regex": "." + }, + { + "hash": "314ca710facafb70f00eb8c9411ef37e8c9b52ea510d668980b9e2818f256012", + "regex": "." + }, + { + "hash": "1bf01bf980a8d6b2bf170bc0c393d19d16b9a88480c7f1cdbe1f5b342c1bfea8", + "regex": "." + }, + { + "hash": "942623b5b9f2cb8072635462693453885bfd3f887f7df782a3df1dc9a92f4be7", + "regex": "." + }, + { + "hash": "ed3fd588ee01022a43387e9fe3616ddb61199d497cca90dd2b4957b77146bd1c", + "regex": "(?i)^https?\\:\\/\\/dgsryhdhufgjhhryuhd\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53d703587de2c098c3b566cf048af91a923c5d0fb6026474dbd5c534d21c9134", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjikdfghuidfgjhdfgjikdfg\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31c4dc9c00fca195c5fd5cf24c69544060e1b5a64eb0fb0435696b1fe1c7dd34", + "regex": "." + }, + { + "hash": "591b2ec5bf86629ee125b4396eefea338fbf5a95b58c309de64f619ef56b6c64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "13c8d70eaf92f934a460fd6bab4eb0046ba9172b4dac7c9e856218d13b76fe08", + "regex": "." + }, + { + "hash": "5246f7ebbfd729cc031bb73e317f733f3ed379823b8031fd52a2278e7429eccf", + "regex": "(?i)^https?\\:\\/\\/sadafkausar2025\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "852ed770eabcdc871f15e6dae3510256ac17b3c94b2193a51eec2d1542bec881", + "regex": "." + }, + { + "hash": "0a93ca66a0c90c96fac650c06d4d89eb2dc0e230bb47c556f141e16b5f2260f4", + "regex": "." + }, + { + "hash": "2a8c377b87456bb3664e1d824915338fcf4a7e80da7b85888efaf972a91992d6", + "regex": "." + }, + { + "hash": "a899a224d0ef53ebc21e2e0a7ba5c31879d0c3fc9e854cce08915cabeabe48b2", + "regex": "(?i)^https?\\:\\/\\/att\\-yahoo\\-108010\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1caf8609fdfc76d2d1ff5bb5510afcfcc6feb394fdac5cc2777376a09b2e3239", + "regex": "." + }, + { + "hash": "a06546e8b4fcf0fa861ee672ab4213ddd4b441945c1fdcc0b91d1aed3ebab219", + "regex": "." + }, + { + "hash": "16e79561eaf5ba0994ca6ab011884d1c1917b1bf6e0091d086416d6f84031b39", + "regex": "(?i)^https?\\:\\/\\/jorgesiam96\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2c9f7b44a8e73274d3aad6a53ab3b7c5513dfd1601b4f02d6b544ccc17c8d12a", + "regex": "." + }, + { + "hash": "6ee97600cae04ba60e1e6fa1a1031ca4812425d1aba1f12aafc89afaeaa8e635", + "regex": "(?i)^https?\\:\\/\\/piyushgoenka2005\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f3151c3241ca76d6b77f42b728420d8a705ee569492c77635e1b98c4b297440d", + "regex": "(?i)^https?\\:\\/\\/khushimittal001\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7a02912c02c629a9f6c6b2f960873d014b4a4d7731cace6fb143d24fdae879f6", + "regex": "." + }, + { + "hash": "c5a7f9e506fb253ec86c4639e60750ca036217362cfeb8237b0bab260e896686", + "regex": "." + }, + { + "hash": "1535808cc2e7f6a6699bf16fe1d842c5bf034e542b30382c30763000da7453e5", + "regex": "(?i)^https?\\:\\/\\/appleipad2colombia\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2285a2e0c5cbb0445ddf7b955d6d5d760eba9eba29320f68edcac0cf3f4a941d", + "regex": "." + }, + { + "hash": "cae5b4fc3f2c7c2d9bec6ef5d500a7548939a23e660e47c6cc9d14f37852766f", + "regex": "(?i)^https?\\:\\/\\/annuk123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2451a216bdd68378aa5d153c98ba6a8b004dd92f1701ff37d5160f0788a22351", + "regex": "." + }, + { + "hash": "fa530dc7a9a07f8937c7cfbd6d5e4d185aac547e2b97651025f1ff4c1c8a5b30", + "regex": "(?i)^https?\\:\\/\\/hfhgfhfghgfh34545436\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "181824761cd20d83daeb571e5afedb4ee36895c5225978766b3439b1f3635c72", + "regex": "(?i)^https?\\:\\/\\/www\\.hvqlab\\.xyz\\:7700[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bb25911e5ce22372334a2c4962c97473b8b9f529ea001c3f87896ffdc163cb1c", + "regex": "." + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+js\\.html" + }, + { + "hash": "deda79c28941ec460db5fbde21b278b7fa388240ed722385ccff541f540688a1", + "regex": "." + }, + { + "hash": "02d2d06fa10b48cd24a45d10044cd2d710fd17f54cfedad5a831aef2dd39d269", + "regex": "(?i)^https?\\:\\/\\/buoiksdoiufoiyoiewyoudosuwe\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "29acf7b40e58b8f3be4d51b7b2dfc2a7428091c0ce0494d68f9288056d42e8f9", + "regex": "(?i)^https?\\:\\/\\/buoiksdoiufoiyoiewyoudosuwe\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "594a771268ee546a852f0dbe43d98c0dc01841b41c129fd4c228499cf191b2c2", + "regex": "." + }, + { + "hash": "5da2fdbf9ce3cbc449a59ac7b783d5fb042e82c39ae9ab54aa9485b176c4313a", + "regex": "(?i)^https?\\:\\/\\/nitin034\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c5e15efb51b15742b4acbf6a6d065e7ca03eaf5c70e110cd60deb8d74374267a", + "regex": "." + }, + { + "hash": "03c310025056bdce81c881a3feebbc18d5a69d9bc005551d2ce44c24f203ad7f", + "regex": "." + }, + { + "hash": "7e4f691dacaff89c2f4ba1b182e5cdbeb2f6e26fdbd12242cd7a0dd653aa8eff", + "regex": "." + }, + { + "hash": "5b0b75acd99937f7b66412edefd23eac466820afaf976f4b677c78471e80a2e6", + "regex": "(?i)^https?\\:\\/\\/soorajmohan01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b1b00d8843f47f5cbe5b34a0bb9740a84aca3edac0957b460d957d6c0d92aaad", + "regex": "." + }, + { + "hash": "5706f06c46c0cb75bb5b0ed583be84e9d714a6e4a539bbbafe5f1e9639720b5c", + "regex": "." + }, + { + "hash": "eda53e42d9eb62ff8cc7ed52a1cb14565dd8fed1b275ab1d96b5140dcbcc145a", + "regex": "." + }, + { + "hash": "d2d444a53a0d91f116e18b7acbbccb458c383015e554546dda7762dae986e140", + "regex": "(?i)^https?\\:\\/\\/dfgsdgjhsdfjhusdfjhusdfjisdfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "024f2aad3562b3f56b8db51737b14a4567208ede1f98c4c215439c8cfa17cfb4", + "regex": "(?i)^https?\\:\\/\\/yutruetser5aytryrtyujtyutryhrhjturu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bf92ef98eda3e8d4649485958fe3d2374e18be2e447baac7b8618e749580bfd9", + "regex": "(?i)^https?\\:\\/\\/yutruetser5aytryrtyujtyutryhrhjturu\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "313d86877894bdc6cca1c94ca90151eac8a39728a49c14943e4eb9ce359fc5cb", + "regex": "(?i)^https?\\:\\/\\/fdgfghfdg25325\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2f4162e82eef68e5dd1bb6a129c2f853509e045f8839a8fc6402fa2325d017fc", + "regex": "(?i)^https?\\:\\/\\/fdgfghfdg25325\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "10e4f5e220fba8af94c008bd57d21749b50ea618ea46cd0dbfa5c1409c9f2091", + "regex": "." + }, + { + "hash": "78ad6259b8e74a0530b6c092af3c0f4018cb8dd5119efc931292c662a0d61415", + "regex": "(?i)^https?\\:\\/\\/kingslayer458\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4467b26056f263f0ec7a839da090afcb0dc0c7183cce59b4ea2d4f4828bb1339", + "regex": "." + }, + { + "hash": "6853b29e21595d96c7ef77e7313ad03dd786ff2e6ead01e27e16e316a43351b1", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0916a09358e4f6b5a55b5fe705b7a0c6f5d2daca1c72895f951c34672d906356", + "regex": "." + }, + { + "hash": "4e6d1051701f630bc1bcf498a71008f19f7b19bb1dfe5d4e76435b99d4c8ff71", + "regex": "." + }, + { + "hash": "a1f69a5c4f8722c7b7d405668f2b55400edda81b4cdbcf818e51e29b77120e77", + "regex": "." + }, + { + "hash": "f08e8e5025f094cc0f4941a0e83f3251eb7dd3d376fb84fd91c6f6e308172744", + "regex": "(?i)^https?\\:\\/\\/homecnfrm0accslog\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "81fd4c653029edc30e695413303d3f1f8c8269a03516a50fc63498f4054726f5", + "regex": "(?i)^https?\\:\\/\\/sherazahmed520\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1504178f6acea633112ab5f2c64457ab0f113083106d8b522d2f38bb2658ac41", + "regex": "." + }, + { + "hash": "354b856def336a4611a8be352948db6f8f700965ecaafb1ada2882487851126c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=WO\\-2BqpzdR3gshPIaA7Qd7rJ8rUp0W2NoAuVSh27Po5A2pqy6oQp3iorDYFIFsqjwnhnJhmSjk3Wl9LbD3St8Vt5AxeIqTC0KrPAFQAEnLQG7icm9gUwK1JJPeVz5z95t1cXXgfqy6lezmp09rpzPhMtlJiLH2b3QADqFaKJH1wZh\\-2FtQO90tPsdr2DaEmqUJpQM02VxLt8mziNvtUucoqw7X7nPMRHtGrQk\\-2FjuuX\\-2FtDs9uyte4ouE7jqTdRkkllwEWMW0WkmyAhYAiQtBbAvylVBndE4RX\\-2FxDG13FvFAWnYL4uFRTtQOmsOjrZ15xVbQNMMIPi370aP8BXKO4841vzbCeyRArxnJL7Xt3h2\\-2FmPv1a1AhX5B1moUWZ0t1euI8qPLGpreoLAaXvQTX\\-2BtdZRsetiEd49ZU0cgfJfjL2oU\\-2BgZ4BawGbn6dsmIz\\-2BJiqMewTnGJjDmFt6ziHIONeEGNtuIsjRn7sDdgR1YvaTiqngPerEqWiKEb9An8VdABXUZBVEp6HIenVor7YcuCEg3R46upQco36fxLp99GNGmwdGc\\-2BzCeJT8K4\\-2BAUIvkrFfMcVzrFDc48MHcXeNIuta3kAootbTYummS4ec5HiO5QKq5LdhWysabC15UKfdeUkNgt\\-2BUSa2xo2P23c7KY1ywj6AHID8\\-2F\\-2Floo9CBYX3v7\\-2Bbd2hKDjm8zhnKK7H4OEVYxmtkTj\\-2BCKpVhBs4XcZ3BcNVdWyF58b9XcFDgAEWHNcoP3ccoaPhIaKxT9SpqgJg620z7omhvNRTgydIartr2uFzm\\-2FSiJU0kXJ0mt5kI46YiWcoYnNaWLXXMoLqDhlk0nWNvtDsTcBCE5\\-2FlTdEteC6vomDZNaDod9gK9E5jdfBed\\-2BlysnQem3TNYxCiY8pNpwahGVm1EQV5oQDgWE4iJ6e4Tf5xSTjM0tnMRptoVie\\-2F3kNg61SAttxSPSULMdQhMm0c8P5saveQwNGLTZjFV2rk4XCrC5jXBMlOme0IhHrbTi\\-2BumpxXhrrXJhp0SPi7KjqZ6aG3C0ea0pYOokSudijZ0hc58M0Y93NEkXT3MitKeWfbr4ym8KLVAiMhoeSjvc7w9FXKhbDyVkxhinsRzZm\\-2BdJbsF3SejgwmAyJhBpNnDcauO5eNswBHTG9dnnAkFA\\-2FYazc2ao\\-2BJqZqjrFjKeMhpJkGzOyNdclL\\-2BE7t3s4RhX1tXPAxEz7DyKVGdDBadYZiNpJnuKAY__7vqUrtGaIHTnsgFQbQ8gqIRpH0mWv2B6urSHM0\\-2B4WAG1g2sN\\-2BCI7ttXfXrUAfmZxW1qbSXd7CAfTwVQChQv5O1VqXNULclUSaNqljFDBlFM2OPJuexsWWcIeOKChNV\\-2BFbCiGVRPsGlU78cBCp9iJwm3Thji\\-2BpbQOVO3DPQ\\-2F\\-2FQxnYCGXI2gnhDyOXJXh8ZlKCYw\\-2BXPw9TY2mtbHuSzDBtrONm0xSM1GAO406pqwZheCU\\-3D" + }, + { + "hash": "0ee1de4ecb307ecdf6314cf871b2c24e5076002b6e59027060f7825268058da4", + "regex": "." + }, + { + "hash": "74875fea158c07ac9287ac3eca31f6ba0e86e355811f288281303fd05571f790", + "regex": "(?i)^https?\\:\\/\\/creditcardfree576\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6153ca3b6685494c81e89fc1b094c3c85c57e658580503f9b70721b6bbece352", + "regex": "(?i)^https?\\:\\/\\/gdryertudjhfgjfgyijufgkh\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2728be3a4a459de4ed8381d50d24fec329ca37d5b455816af15344f190b2d05d", + "regex": "." + }, + { + "hash": "5854c9e8c1811a1497ef8b79e29fcd3759a4bb9014ed4a71c79a44b28ab5eef9", + "regex": "(?i)^https?\\:\\/\\/bhavesh193\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8aff7b60b5cba81afbbcd3a45b6a5dd3f008cd652ef6efa65f41ff94987f33af", + "regex": "(?i)^https?\\:\\/\\/sparth3011\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2c80f0395d9a03471869d790eb502ae485f76ef83c0aae2f2a8c49743d6e1935", + "regex": "." + }, + { + "hash": "06fbb6b889a21d32f96c7a79c5e1820e0f9e6eb4105bb1c46738003a7b62c43b", + "regex": "(?i)^https?\\:\\/\\/bafybeifwppvs45dbzu64gl2ddg4f2arjsunyfmvnxlf525lxouftkyhjpq\\.ipfs\\.infura\\-ipfs\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "504d040718cc905dea7ecb245bc1b2bf0716cf93ad811d1d05489208adcaa814", + "regex": "." + }, + { + "hash": "84f70ba607c79b9cbce9caa1694b753c4ee0402ad089f54ce287608bfc9c58fb", + "regex": "." + }, + { + "hash": "1355008d153ec9414ba2b8a7c41e74d0a0e3014c7fdf21d3fa6bca6934e80708", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "354b856def336a4611a8be352948db6f8f700965ecaafb1ada2882487851126c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=WO\\-2BqpzdR3gshPIaA7Qd7rNWScYyAir\\-2BmUcCus4c7xsF56lRVySqaIzwNXW5Ioj9RfArKioCIeY\\-2F75I9LUjcYksI9RWDrJSu0T\\-2Fr0IHNpoKKM144qtmiBHyAYy36lA\\-2F811faVbgrtM0I3E9Ni5MX1YX9fc1K4JlyLx1x\\-2FqQ2XvG33PSw0S\\-2BwatX3jAX\\-2B7zTtXI0NzByAiIOd4AHy2ijIJ9qi3oznQg\\-2Fcm\\-2BJ1w\\-2B\\-2FUNNx2kGcf4GzjJOGr5B\\-2BlulNNvteImYnHfSUyv7LSBbgM0\\-2BFkykFkFFs\\-2BdGCTGhGwNdkbXCyobBmzm7wE\\-2FdNdTzdUjHOJwar0RxSIpD874nUCQqm4pihUU\\-2FlmSVA0x\\-2Fgbe58BGn0t\\-2BqHyhfBZ6Rm0Jt7Ow6mT8\\-2BFFkvqKrxLLURT7cXcnz3A5521EnO0e5c2csVP0Hr7eHj89vMb\\-2B9I1OazMmSsX6eayrT96OCYCwtg33\\-2FRswlYvUK2H16IwRNgFPFmcF2EhfezetwH13X1lUOroT0GgzfWfHcTu5WNi1euQ4JBGSKRinXuOxQpkWVF4LFki9v4HBm4zVXsuul9qoZOj\\-2FjKTH8Srnq63o\\-2FTUnphZilE124At1386nzvplibmYM7umMuY7kTN77SWTA4rha1PQzqYO4VLO\\-2BeYWj4DvfiHwxD8R1tRzhfoI1PxdjuOTr\\-2FCdh5PIW6JnneUnzgZdbs7H3vZ9uun0mHayPlUQhVRTc\\-2BHGNmAVzKDJOBH\\-2BcNkJDh4sqDe30mzBPZAG4gMGrXjT6cg6raV6A1lwa\\-2B8d3jLJ94xmGmX5KOP3WVf\\-2FgS4skQuJDw6P2oLe\\-2FO95SNRL6PtV3\\-2BJFampNRWuUnz\\-2FRO4wqRMq1XHK7n7vvznfCE7jK7SsLknH2\\-2BjEEDP8xj5GLBDFOFkxDwAEOIcQbymwNIWJ3x6VuPxDGiAnWpIkzLUgZ5xT4MrUdP2wSb7ibcl2bLR\\-2FTNaMcGbNeDnqzI1Mky4\\-2BOrrpUhiyRHsFGU\\-2F3n\\-2Fj9WJ97Y0\\-2FUITATobM2js6Wj\\-2F00ukKIwo\\-2BcQuqIfsdOdtwMOxX1PtMH1BsDqVigOrl8\\-2Bkv91A5Mw9TAk6q8gLzTcTp7e5zgSpULmp3hjkXq3OzODnBe7sUN3Bt3ueo8zOZQmbX3RzMzHEih4c3ERvO5GsBRGkVUQm3tcI13FNsW684fwjJ5ILsd3qIGxVCFPiWbyuIVc0yPA0h\\-2Ffl4DLXZoFhvHTDRBWTGja4AOM\\-2FuZV0CW49LXOF5hd6fhFlU3HXtKr6EzHkzB6K1GOX\\-2ByWrQbamEUS3kD0oQRbJrK2V3EKwXxMKq6A1JTNzRnkUjL58SgAU\\-2B8SgKqVjlBb4BXitwiYeu9Yzgw2vc0x89GmO3rG7HUJyZ3Qxhx3cNpKLhWKDfj21ptKNV5gr\\-2FsIqpw2iz6X8V1PItcQXjtLrgeZpjgONZmqpSAnI45pih5F\\-2BfPlrQeRZ6BQPFx\\-2Ft7w7IUZaxSfO8MKoE4V\\-2BgoS3ZyZX3ubzU5WFvLRzPSZx3UeIcWPUYwp\\-2BeI59Hf78fY\\-2FKKcV8gbOczSEmh4Gdyrv8vbsIxh9K0RaCQQdAQ5JvETEoU4Z3jpvM\\-2FxBr8DclHsDsz5pBRUdKco22\\-2BAyNUj2PhSM1\\-2B1BrhYuFXmQhVqixovRRn2Cq60DyVBM7fseYkmRCC\\-2FHo0IGC6CYMOEY7NI8\\-2FhO458jvGP3GR6OoPBqH5gOpeMBg5lSp0scMnNNcz\\-2BLbR3KsLmKnfBmc5zhLD8UOD\\-2BDpp35ZMWMdwPLL2fQqJcHohQhvHM44sOvjzRgz3CMkuhpdLXZUWvti\\-2F6dLmzslkQB\\-2FOaNuvan9VVpiGKkoiMKjY6CyxzycQeDnIzUcH9JX3HoNheReoczFwZIytUtafOFZ9oY\\-2FhFIvmzkGtHG9P11n0E2bAoVHIdm6xnzqxHB7O896JHIFDDNXTdZ3rolsy37LsswVRO9OaqvIC7eY4RTtcAoxYYm9qZBJEO45mAAZ64h9RtNALXc\\-2BlEbqUF6Ouyk\\-2FRhphJusU1PORmw82jqhKD9aHtSO40AedU70NLyayHrUAVQuMryYz6nsu3M\\-2FW58o\\-2BZLwRaZg9\\-2Far9bKeqOL9e70wfz6TzWWQOo6F6K0TVa28nUp81Q6j6bG3oem_j4b5tSPSxGDYlLXqPATRQbkhlPc4t7oJnxanomirv0yYqfcs25pNc8DPPQCnGqoVQRqk2zZKPVe8oWI1Z4FsuqzlR3YTUv19FcwwlOIe58JtEQtgd09XuYM5uOJxTcp\\-2BnYv9e37TxRpC9zOfHg\\-2FzgP5HYpeV\\-2FmYrYLcssoVjc9sXGf\\-2Blk7WNP\\-2BOJier5\\-2BAQwnCYa9NEciyzh6\\-2BmbwgfCOFt\\-2FElB34vA2F242hcdanEI\\-3D" + }, + { + "hash": "354b856def336a4611a8be352948db6f8f700965ecaafb1ada2882487851126c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=WO\\-2BqpzdR3gshPIaA7Qd7rNWScYyAir\\-2BmUcCus4c7xsF56lRVySqaIzwNXW5Ioj9RfArKioCIeY\\-2F75I9LUjcYksI9RWDrJSu0T\\-2Fr0IHNpoKKM144qtmiBHyAYy36lA\\-2F811faVbgrtM0I3E9Ni5MX1YX9fc1K4JlyLx1x\\-2FqQ2XvG33PSw0S\\-2BwatX3jAX\\-2B7zTtXI0NzByAiIOd4AHy2ijIJ9qi3oznQg\\-2Fcm\\-2BJ1w\\-2B\\-2FUNNx2kGcf4GzjJOGr5B\\-2BlulNNvteImYnHfSUyv7LSBbgM0\\-2BFkykFkFFs\\-2BdGCTGhGwNdkbXCyobBmzm7wE\\-2FdNdTzdUjHOJwar0RxSIpD874nUCQqm4pihUU\\-2FlmSVA0x\\-2Fgbe58BGn0t\\-2BqHyhfBZ6Rm0Jt7Ow6mT8\\-2BFFkvqKrxLLURT7cXcnz3A5521EnO0e5c2csVP0Hr7eHj89vMb\\-2B9I1OazMmSsX6eayrT96OCYCwtg33\\-2FRswlYvUK2H16IwRNgFPFmcF2EhfezetwH13X1lUOroT0GgzfWfHcTu5WNi1euQ4JBGSKRinXuOxQpkWVF4LFki9v4HBm4zVXsuul9qoZOj\\-2FjKTH8Srnq63o\\-2FTUnphZilE124At1386nzvplibmYM7umMuY7kTN77SWTA4rha1PQzqYO4VLO\\-2BeYWj4DvfiHwxD8R1tRzhfoI1PxdjuOTr\\-2FCdh5PIW6JnneUnzgZdbs7H3vZ9uun0mHayPlUQhVRTc\\-2BHGNmAVzKDJOBH\\-2BcNkJDh4sqDe30mzBPZAG4gMGrXjT6cg6raV6A1lwa\\-2B8d3jLJ94xmGmX5KOP3WVf\\-2FgS4skQuJDw6P2oLe\\-2FO95SNRL6PtV3\\-2BJFampNRWuUnz\\-2FRO4wqRMq1XHK7n7vvznfCE7jK7SsLknH2\\-2BjEEDP8xj5GLBDFOFkxDwAEOIcQbymwNIWJ3x6VuPxDGiAnWpIkzLUgZ5xT4MrUdP2wSb7ibcl2bLR\\-2FTNaMcGbNeDnqzI1Mky4\\-2BOrrpUhiyRHsFGU\\-2F3n\\-2Fj9WJ97Y0\\-2FUITATobM2js6Wj\\-2F00ukKIwo\\-2BcQuqIfsdOdtwMOxX1PtMH1BsDqVigOrl8\\-2Bkv91A5Mw9TAk6q8gLzTcTp7e5zgSpULmp3hjkXq3OzODnBe7sUN3Bt3ueo8zOZQmbX3RzMzHEih4c3ERvO5GsBRGkVUQm3tcI13FNsW684fwjJ5ILsd3qIGxVCFPiWbyuIVc0yPA0h\\-2Ffl4DLXZoFhvHTDRBWTGja4AOM\\-2FuZV0CW49LXOF5hd6fhFlU3HXtKr6EzHkzB6K1GOX\\-2ByWrQbamEUS3kD0oQRbJrK2V3EKwXxMKq6A1JTNzRnkUjL58SgAU\\-2B8SgKqVjlBb4BXitwiYeu9Yzgw2vc0x89GmO3rG7HUJyZ3Qxhx3cNpKLhWKDfj21ptKNV5gr\\-2FsIqpw2iz6X8V1PItcQXjtLrgeZpjgONZmqpSAnI45pih5F\\-2BfPlrQeRZ6BQPFx\\-2Ft7w7IUZaxSfO8MKoE4V\\-2BgoS3ZyZX3ubzU5WFvLRzPSZx3UeIcWPUYwp\\-2BeI59Hf78fY\\-2FKKcV8gbOczSEmh4Gdyrv8vbsIxh9K0RaCQQdAQ5JvETEoU4Z3jpvM\\-2FxBr8DclHsDsz5pBRUdKco22\\-2BAyNUj2PhSM1\\-2B1BrhYuFXmQhVqixovRRn2Cq60DyVBM7fseYkmRCC\\-2FHo0IGC6CYMOEY7NI8\\-2FhO458jvGP3GR6OoPBqH5gOpeMBg5lSp0scMnNNcz\\-2BLbR3KsLmKnfBmc5zhLD8UOD\\-2BDpp35ZMWMdwPLL2fQqJcHohQhvHM44sOvjzRgz3CMkuhpdLXZUWvti\\-2F6dLmzslkQB\\-2FOaNuvan9VVpiGKkoiMKjY6CyxzycQeDnIzUcH9JX3HoNheReoczFwZIytUtafOFZ9oY\\-2FhFIvmzkGtHG9P11n0E2bAoVHIdm6xnzqxHB7O896JHIFDDNXTdZ3rolsy37LsswVRO9OaqvIC7eY4RTtcAoxYYm9qZBJEO45mAAZ64h9RtNALXc\\-2BlEbqUF6Ouyk\\-2FRhphJusU1PORmw82jqhKD9aHtSO40AedU70NLyayHrUAVQuMryYz6nsu3M\\-2FW58o\\-2BZLwRaZg9\\-2Far9bKeqOL9e70wfz6TzWWQOo6F6K0TVa28nUp81Q6j6bGCPV1_j4b5tSPSxGDYlLXqPATRQbkhlPc4t7oJnxanomirv0waFXMnHoRKTnpYbxBVLARkDJZ2KvhrH7zU2sRnU4rPznxtsp4ebre5k19GYoNibxD6Ue6ivpV9PI9m0EXzvVo5YsbYzcq70oXmwatoHcoAI8tWfjiMajhFk9TKBlEWrGo6G5WNG1AUIVAzoLvhQDvbFIGazO7aiK1pDxVwdOqtI\\-2FHSb7\\-2BqC9gOxUFYL5HQnBk\\-3D" + }, + { + "hash": "8143cf2a458337264264cb03d9f1a7a54f90a91de86fddb121b70caae2d0aa88", + "regex": "." + }, + { + "hash": "c33310536dde2750d8aa37bcafa512ce37089c7a8414b2149954d1c5720995a1", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgdf342434\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7c98018ec143ecd85fe616a1af614f813f7d9e25732dbf207b0f30f589a81e74", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgdf342434\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "354b856def336a4611a8be352948db6f8f700965ecaafb1ada2882487851126c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=WO\\-2BqpzdR3gshPIaA7Qd7rNWScYyAir\\-2BmUcCus4c7xsF56lRVySqaIzwNXW5Ioj9RfArKioCIeY\\-2F75I9LUjcYksI9RWDrJSu0T\\-2Fr0IHNpoKKM144qtmiBHyAYy36lA\\-2F811faVbgrtM0I3E9Ni5MX1YX9fc1K4JlyLx1x\\-2FqQ2XvG33PSw0S\\-2BwatX3jAX\\-2B7zTtXI0NzByAiIOd4AHy2ijIJ9qi3oznQg\\-2Fcm\\-2BJ1w\\-2B\\-2FUNNx2kGcf4GzjJOGr5B\\-2BlulNNvteImYnHfSUyv7LSBbgM0\\-2BFkykFkFFs\\-2BdGCTGhGwNdkbXCyobBmzm7wE\\-2FdNdTzdUjHOJwar0RxSIpD874nUCQqm4pihUU\\-2FlmSVA0x\\-2Fgbe58BGn0t\\-2BqHyhfBZ6Rm0Jt7Ow6mT8\\-2BFFkvqKrxLLURT7cXcnz3A5521EnO0e5c2csVP0Hr7eHj89vMb\\-2B9I1OazMmSsX6eayrT96OCYCwtg33\\-2FRswlYvUK2H16IwRNgFPFmcF2EhfezetwH13X1lUOroT0GgzfWfHcTu5WNi1euQ4JBGSKRinXuOxQpkWVF4LFki9v4HBm4zVXsuul9qoZOj\\-2FjKTH8Srnq63o\\-2FTUnphZilE124At1386nzvplibmYM7umMuY7kTN77SWTA4rha1PQzqYO4VLO\\-2BeYWj4DvfiHwxD8R1tRzhfoI1PxdjuOTr\\-2FCdh5PIW6JnneUnzgZdbs7H3vZ9uun0mHayPlUQhVRTc\\-2BHGNmAVzKDJOBH\\-2BcNkJDh4sqDe30mzBPZAG4gMGrXjT6cg6raV6A1lwa\\-2B8d3jLJ94xmGmX5KOP3WVf\\-2FgS4skQuJDw6P2oLe\\-2FO95SNRL6PtV3\\-2BJFampNRWuUnz\\-2FRO4wqRMq1XHK7n7vvznfCE7jK7SsLknH2\\-2BjEEDP8xj5GLBDFOFkxDwAEOIcQbymwNIWJ3x6VuPxDGiAnWpIkzLUgZ5xT4MrUdP2wSb7ibcl2bLR\\-2FTNaMcGbNeDnqzI1Mky4\\-2BOrrpUhiyRHsFGU\\-2F3n\\-2Fj9WJ97Y0\\-2FUITATobM2js6Wj\\-2F00ukKIwo\\-2BcQuqIfsdOdtwMOxX1PtMH1BsDqVigOrl8\\-2Bkv91A5Mw9TAk6q8gLzTcTp7e5zgSpULmp3hjkXq3OzODnBe7sUN3Bt3ueo8zOZQmbX3RzMzHEih4c3ERvO5GsBRGkVUQm3tcI13FNsW684fwjJ5ILsd3qIGxVCFPiWbyuIVc0yPA0h\\-2Ffl4DLXZoFhvHTDRBWTGja4AOM\\-2FuZV0CW49LXOF5hd6fhFlU3HXtKr6EzHkzB6K1GOX\\-2ByWrQbamEUS3kD0oQRbJrK2V3EKwXxMKq6A1JTNzRnkUjL58SgAU\\-2B8SgKqVjlBb4BXitwiYeu9Yzgw2vc0x89GmO3rG7HUJyZ3Qxhx3cNpKLhWKDfj21ptKNV5gr\\-2FsIqpw2iz6X8V1PItcQXjtLrgeZpjgONZmqpSAnI45pih5F\\-2BfPlrQeRZ6BQPFx\\-2Ft7w7IUZaxSfO8MKoE4V\\-2BgoS3ZyZX3ubzU5WFvLRzPSZx3UeIcWPUYwp\\-2BeI59Hf78fY\\-2FKKcV8gbOczSEmh4Gdyrv8vbsIxh9K0RaCQQdAQ5JvETEoU4Z3jpvM\\-2FxBr8DclHsDsz5pBRUdKco22\\-2BAyNUj2PhSM1\\-2B1BrhYuFXmQhVqixovRRn2Cq60DyVBM7fseYkmRCC\\-2FHo0IGC6CYMOEY7NI8\\-2FhO458jvGP3GR6OoPBqH5gOpeMBg5lSp0scMnNNcz\\-2BLbR3KsLmKnfBmc5zhLD8UOD\\-2BDpp35ZMWMdwPLL2fQqJcHohQhvHM44sOvjzRgz3CMkuhpdLXZUWvti\\-2F6dLmzslkQB\\-2FOaNuvan9VVpiGKkoiMKjY6CyxzycQeDnIzUcH9JX3HoNheReoczFwZIytUtafOFZ9oY\\-2FhFIvmzkGtHG9P11n0E2bAoVHIdm6xnzqxHB7O896JHIFDDNXTdZ3rolsy37LsswVRO9OaqvIC7eY4RTtcAoxYYm9qZBJEO45mAAZ64h9RtNALXc\\-2BlEbqUF6Ouyk\\-2FRhphJusU1PORmw82jqhKD9aHtSO40AedU70NLyayHrUAVQuMryYz6nsu3M\\-2FW58o\\-2BZLwRaZg9\\-2Far9bKeqOL9e70wfz6TzWWQOo6F6K0TVa28nUp81Q6j6bGztaI_j4b5tSPSxGDYlLXqPATRQbkhlPc4t7oJnxanomirv0xFuQb7mx44ChJ\\-2BVzaHTlsOBCrudOOt8ofjhpZri9YIMY0AD1eXMBqPSFYamzfugwGHyKblq8\\-2FZw58ubMW877zqHhuEC4MlsJOvVRkXhXLMLAEFHc48HEmYzsfkWl7\\-2BvA9C6D8rtFLa6NMhMlbhs\\-2BVrx9Eiebl\\-2BEdoyuhNPUfn\\-2FfSF9YHboicsXiKF38uUyxo4\\-3D" + }, + { + "hash": "354b856def336a4611a8be352948db6f8f700965ecaafb1ada2882487851126c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=WO\\-2BqpzdR3gshPIaA7Qd7rNWScYyAir\\-2BmUcCus4c7xsF56lRVySqaIzwNXW5Ioj9RfArKioCIeY\\-2F75I9LUjcYksI9RWDrJSu0T\\-2Fr0IHNpoKKM144qtmiBHyAYy36lA\\-2F811faVbgrtM0I3E9Ni5MX1YX9fc1K4JlyLx1x\\-2FqQ2XvG33PSw0S\\-2BwatX3jAX\\-2B7zTtXI0NzByAiIOd4AHy2ijIJ9qi3oznQg\\-2Fcm\\-2BJ1w\\-2B\\-2FUNNx2kGcf4GzjJOGr5B\\-2BlulNNvteImYnHfSUyv7LSBbgM0\\-2BFkykFkFFs\\-2BdGCTGhGwNdkbXCyobBmzm7wE\\-2FdNdTzdUjHOJwar0RxSIpD874nUCQqm4pihUU\\-2FlmSVA0x\\-2Fgbe58BGn0t\\-2BqHyhfBZ6Rm0Jt7Ow6mT8\\-2BFFkvqKrxLLURT7cXcnz3A5521EnO0e5c2csVP0Hr7eHj89vMb\\-2B9I1OazMmSsX6eayrT96OCYCwtg33\\-2FRswlYvUK2H16IwRNgFPFmcF2EhfezetwH13X1lUOroT0GgzfWfHcTu5WNi1euQ4JBGSKRinXuOxQpkWVF4LFki9v4HBm4zVXsuul9qoZOj\\-2FjKTH8Srnq63o\\-2FTUnphZilE124At1386nzvplibmYM7umMuY7kTN77SWTA4rha1PQzqYO4VLO\\-2BeYWj4DvfiHwxD8R1tRzhfoI1PxdjuOTr\\-2FCdh5PIW6JnneUnzgZdbs7H3vZ9uun0mHayPlUQhVRTc\\-2BHGNmAVzKDJOBH\\-2BcNkJDh4sqDe30mzBPZAG4gMGrXjT6cg6raV6A1lwa\\-2B8d3jLJ94xmGmX5KOP3WVf\\-2FgS4skQuJDw6P2oLe\\-2FO95SNRL6PtV3\\-2BJFampNRWuUnz\\-2FRO4wqRMq1XHK7n7vvznfCE7jK7SsLknH2\\-2BjEEDP8xj5GLBDFOFkxDwAEOIcQbymwNIWJ3x6VuPxDGiAnWpIkzLUgZ5xT4MrUdP2wSb7ibcl2bLR\\-2FTNaMcGbNeDnqzI1Mky4\\-2BOrrpUhiyRHsFGU\\-2F3n\\-2Fj9WJ97Y0\\-2FUITATobM2js6Wj\\-2F00ukKIwo\\-2BcQuqIfsdOdtwMOxX1PtMH1BsDqVigOrl8\\-2Bkv91A5Mw9TAk6q8gLzTcTp7e5zgSpULmp3hjkXq3OzODnBe7sUN3Bt3ueo8zOZQmbX3RzMzHEih4c3ERvO5GsBRGkVUQm3tcI13FNsW684fwjJ5ILsd3qIGxVCFPiWbyuIVc0yPA0h\\-2Ffl4DLXZoFhvHTDRBWTGja4AOM\\-2FuZV0CW49LXOF5hd6fhFlU3HXtKr6EzHkzB6K1GOX\\-2ByWrQbamEUS3kD0oQRbJrK2V3EKwXxMKq6A1JTNzRnkUjL58SgAU\\-2B8SgKqVjlBb4BXitwiYeu9Yzgw2vc0x89GmO3rG7HUJyZ3Qxhx3cNpKLhWKDfj21ptKNV5gr\\-2FsIqpw2iz6X8V1PItcQXjtLrgeZpjgONZmqpSAnI45pih5F\\-2BfPlrQeRZ6BQPFx\\-2Ft7w7IUZaxSfO8MKoE4V\\-2BgoS3ZyZX3ubzU5WFvLRzPSZx3UeIcWPUYwp\\-2BeI59Hf78fY\\-2FKKcV8gbOczSEmh4Gdyrv8vbsIxh9K0RaCQQdAQ5JvETEoU4Z3jpvM\\-2FxBr8DclHsDsz5pBRUdKco22\\-2BAyNUj2PhSM1\\-2B1BrhYuFXmQhVqixovRRn2Cq60DyVBM7fseYkmRCC\\-2FHo0IGC6CYMOEY7NI8\\-2FhO458jvGP3GR6OoPBqH5gOpeMBg5lSp0scMnNNcz\\-2BLbR3KsLmKnfBmc5zhLD8UOD\\-2BDpp35ZMWMdwPLL2fQqJcHohQhvHM44sOvjzRgz3CMkuhpdLXZUWvti\\-2F6dLmzslkQB\\-2FOaNuvan9VVpiGKkoiMKjY6CyxzycQeDnIzUcH9JX3HoNheReoczFwZIytUtafOFZ9oY\\-2FhFIvmzkGtHG9P11n0E2bAoVHIdm6xnzqxHB7O896JHIFDDNXTdZ3rolsy37LsswVRO9OaqvIC7eY4RTtcAoxYYm9qZBJEO45mAAZ64h9RtNALXc\\-2BlEbqUF6Ouyk\\-2FRhphJusU1PORmw82jqhKD9aHtSO40AedU70NLyayHrUAVQuMryYz6nsu3M\\-2FW58o\\-2BZLwRaZg9\\-2Far9bKeqOL9e70wfz6TzWWQOo6F6K0TVa28nUp81Q6j6bGODBO_j4b5tSPSxGDYlLXqPATRQbkhlPc4t7oJnxanomirv0yJ\\-2FPunpLvdjwTcTg4v9wdf\\-2B\\-2BWshMyE6AJQbGU5mDm02GYc0cxaxapnlfgmSCUD0m8uzseqH0Bv3NIWJJiPM3Vt7C1pp6RAgJpn1gZeB6XD80N3pIuVcXfJsoLXiBgE7mZa3SKFbTNsKNfhVleTmq1Yjn7hndokUc60CtQ3R\\-2FI1jGfN3fw0idcEDMVpaLZvTug\\-3D" + }, + { + "hash": "191ad19ea5a31ab17bf6cd28c249c89525f659a0195124af52ec2eb6fbaef1e8", + "regex": "." + }, + { + "hash": "7b38416991609afdc841a3ea4e217bdd0f780ff5dbf220f327eae54440fe7847", + "regex": "." + }, + { + "hash": "275fc72072ff10fb605fc5f98a97eb895f5f2160ab4954b0fb925f803f2d8dd8", + "regex": "(?i)^https?\\:\\/\\/zero2\\-infinity\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "354b856def336a4611a8be352948db6f8f700965ecaafb1ada2882487851126c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=WO\\-2BqpzdR3gshPIaA7Qd7rNWScYyAir\\-2BmUcCus4c7xsF56lRVySqaIzwNXW5Ioj9RfArKioCIeY\\-2F75I9LUjcYksI9RWDrJSu0T\\-2Fr0IHNpoKKM144qtmiBHyAYy36lA\\-2F811faVbgrtM0I3E9Ni5MX1YX9fc1K4JlyLx1x\\-2FqQ2XvG33PSw0S\\-2BwatX3jAX\\-2B7zTtXI0NzByAiIOd4AHy2ijIJ9qi3oznQg\\-2Fcm\\-2BJ1w\\-2B\\-2FUNNx2kGcf4GzjJOGr5B\\-2BlulNNvteImYnHfSUyv7LSBbgM0\\-2BFkykFkFFs\\-2BdGCTGhGwNdkbXCyobBmzm7wE\\-2FdNdTzdUjHOJwar0RxSIpD874nUCQqm4pihUU\\-2FlmSVA0x\\-2Fgbe58BGn0t\\-2BqHyhfBZ6Rm0Jt7Ow6mT8\\-2BFFkvqKrxLLURT7cXcnz3A5521EnO0e5c2csVP0Hr7eHj89vMb\\-2B9I1OazMmSsX6eayrT96OCYCwtg33\\-2FRswlYvUK2H16IwRNgFPFmcF2EhfezetwH13X1lUOroT0GgzfWfHcTu5WNi1euQ4JBGSKRinXuOxQpkWVF4LFki9v4HBm4zVXsuul9qoZOj\\-2FjKTH8Srnq63o\\-2FTUnphZilE124At1386nzvplibmYM7umMuY7kTN77SWTA4rha1PQzqYO4VLO\\-2BeYWj4DvfiHwxD8R1tRzhfoI1PxdjuOTr\\-2FCdh5PIW6JnneUnzgZdbs7H3vZ9uun0mHayPlUQhVRTc\\-2BHGNmAVzKDJOBH\\-2BcNkJDh4sqDe30mzBPZAG4gMGrXjT6cg6raV6A1lwa\\-2B8d3jLJ94xmGmX5KOP3WVf\\-2FgS4skQuJDw6P2oLe\\-2FO95SNRL6PtV3\\-2BJFampNRWuUnz\\-2FRO4wqRMq1XHK7n7vvznfCE7jK7SsLknH2\\-2BjEEDP8xj5GLBDFOFkxDwAEOIcQbymwNIWJ3x6VuPxDGiAnWpIkzLUgZ5xT4MrUdP2wSb7ibcl2bLR\\-2FTNaMcGbNeDnqzI1Mky4\\-2BOrrpUhiyRHsFGU\\-2F3n\\-2Fj9WJ97Y0\\-2FUITATobM2js6Wj\\-2F00ukKIwo\\-2BcQuqIfsdOdtwMOxX1PtMH1BsDqVigOrl8\\-2Bkv91A5Mw9TAk6q8gLzTcTp7e5zgSpULmp3hjkXq3OzODnBe7sUN3Bt3ueo8zOZQmbX3RzMzHEih4c3ERvO5GsBRGkVUQm3tcI13FNsW684fwjJ5ILsd3qIGxVCFPiWbyuIVc0yPA0h\\-2Ffl4DLXZoFhvHTDRBWTGja4AOM\\-2FuZV0CW49LXOF5hd6fhFlU3HXtKr6EzHkzB6K1GOX\\-2ByWrQbamEUS3kD0oQRbJrK2V3EKwXxMKq6A1JTNzRnkUjL58SgAU\\-2B8SgKqVjlBb4BXitwiYeu9Yzgw2vc0x89GmO3rG7HUJyZ3Qxhx3cNpKLhWKDfj21ptKNV5gr\\-2FsIqpw2iz6X8V1PItcQXjtLrgeZpjgONZmqpSAnI45pih5F\\-2BfPlrQeRZ6BQPFx\\-2Ft7w7IUZaxSfO8MKoE4V\\-2BgoS3ZyZX3ubzU5WFvLRzPSZx3UeIcWPUYwp\\-2BeI59Hf78fY\\-2FKKcV8gbOczSEmh4Gdyrv8vbsIxh9K0RaCQQdAQ5JvETEoU4Z3jpvM\\-2FxBr8DclHsDsz5pBRUdKco22\\-2BAyNUj2PhSM1\\-2B1BrhYuFXmQhVqixovRRn2Cq60DyVBM7fseYkmRCC\\-2FHo0IGC6CYMOEY7NI8\\-2FhO458jvGP3GR6OoPBqH5gOpeMBg5lSp0scMnNNcz\\-2BLbR3KsLmKnfBmc5zhLD8UOD\\-2BDpp35ZMWMdwPLL2fQqJcHohQhvHM44sOvjzRgz3CMkuhpdLXZUWvti\\-2F6dLmzslkQB\\-2FOaNuvan9VVpiGKkoiMKjY6CyxzycQeDnIzUcH9JX3HoNheReoczFwZIytUtafOFZ9oY\\-2FhFIvmzkGtHG9P11n0E2bAoVHIdm6xnzqxHB7O896JHIFDDNXTdZ3rolsy37LsswVRO9OaqvIC7eY4RTtcAoxYYm9qZBJEO45mAAZ64h9RtNALXc\\-2BlEbqUF6Ouyk\\-2FRhphJusU1PORmw82jqhKD9aHtSO40AedU70NLyayHrUAVQuMryYz6nsu3M\\-2FW58o\\-2BZLwRaZg9\\-2Far9bKeqOL9e70wfz6TzWWQOo6F6K0TVa28nUp81Q6j6bGLnpG_j4b5tSPSxGDYlLXqPATRQbkhlPc4t7oJnxanomirv0xJ62eV2ngJiUcrRzQWbS82vPsrUaW3F8QQnUFeWArpSIFsjlYYTI47\\-2FsBHkbSp4VyXkMJu9x6sc2Fv\\-2B5HEZ6Fxx8WyIGG0PGdy6BZJ54La4Qve\\-2B6KGPNenmRvCoi2fHqJiEMk6\\-2Fsf12bD48hd0DpYpiyIUC1V7q9gh8qD3G8iRKFGoaay93VJ5O1bYSNqInCE\\-3D" + }, + { + "hash": "01c8c71f71b514d05b2273e7a703b76b888a6228713c7fd70bccf7524031d2fe", + "regex": "." + }, + { + "hash": "958657c2d3b7ec68ef306f88f8fe72ee4bbd0c09d754dc89bebb62f78f6532b5", + "regex": "." + }, + { + "hash": "354b856def336a4611a8be352948db6f8f700965ecaafb1ada2882487851126c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=WO\\-2BqpzdR3gshPIaA7Qd7rNWScYyAir\\-2BmUcCus4c7xsF56lRVySqaIzwNXW5Ioj9RfArKioCIeY\\-2F75I9LUjcYksI9RWDrJSu0T\\-2Fr0IHNpoKKM144qtmiBHyAYy36lA\\-2F811faVbgrtM0I3E9Ni5MX1YX9fc1K4JlyLx1x\\-2FqQ2XvG33PSw0S\\-2BwatX3jAX\\-2B7zTtXI0NzByAiIOd4AHy2ijIJ9qi3oznQg\\-2Fcm\\-2BJ1w\\-2B\\-2FUNNx2kGcf4GzjJOGr5B\\-2BlulNNvteImYnHfSUyv7LSBbgM0\\-2BFkykFkFFs\\-2BdGCTGhGwNdkbXCyobBmzm7wE\\-2FdNdTzdUjHOJwar0RxSIpD874nUCQqm4pihUU\\-2FlmSVA0x\\-2Fgbe58BGn0t\\-2BqHyhfBZ6Rm0Jt7Ow6mT8\\-2BFFkvqKrxLLURT7cXcnz3A5521EnO0e5c2csVP0Hr7eHj89vMb\\-2B9I1OazMmSsX6eayrT96OCYCwtg33\\-2FRswlYvUK2H16IwRNgFPFmcF2EhfezetwH13X1lUOroT0GgzfWfHcTu5WNi1euQ4JBGSKRinXuOxQpkWVF4LFki9v4HBm4zVXsuul9qoZOj\\-2FjKTH8Srnq63o\\-2FTUnphZilE124At1386nzvplibmYM7umMuY7kTN77SWTA4rha1PQzqYO4VLO\\-2BeYWj4DvfiHwxD8R1tRzhfoI1PxdjuOTr\\-2FCdh5PIW6JnneUnzgZdbs7H3vZ9uun0mHayPlUQhVRTc\\-2BHGNmAVzKDJOBH\\-2BcNkJDh4sqDe30mzBPZAG4gMGrXjT6cg6raV6A1lwa\\-2B8d3jLJ94xmGmX5KOP3WVf\\-2FgS4skQuJDw6P2oLe\\-2FO95SNRL6PtV3\\-2BJFampNRWuUnz\\-2FRO4wqRMq1XHK7n7vvznfCE7jK7SsLknH2\\-2BjEEDP8xj5GLBDFOFkxDwAEOIcQbymwNIWJ3x6VuPxDGiAnWpIkzLUgZ5xT4MrUdP2wSb7ibcl2bLR\\-2FTNaMcGbNeDnqzI1Mky4\\-2BOrrpUhiyRHsFGU\\-2F3n\\-2Fj9WJ97Y0\\-2FUITATobM2js6Wj\\-2F00ukKIwo\\-2BcQuqIfsdOdtwMOxX1PtMH1BsDqVigOrl8\\-2Bkv91A5Mw9TAk6q8gLzTcTp7e5zgSpULmp3hjkXq3OzODnBe7sUN3Bt3ueo8zOZQmbX3RzMzHEih4c3ERvO5GsBRGkVUQm3tcI13FNsW684fwjJ5ILsd3qIGxVCFPiWbyuIVc0yPA0h\\-2Ffl4DLXZoFhvHTDRBWTGja4AOM\\-2FuZV0CW49LXOF5hd6fhFlU3HXtKr6EzHkzB6K1GOX\\-2ByWrQbamEUS3kD0oQRbJrK2V3EKwXxMKq6A1JTNzRnkUjL58SgAU\\-2B8SgKqVjlBb4BXitwiYeu9Yzgw2vc0x89GmO3rG7HUJyZ3Qxhx3cNpKLhWKDfj21ptKNV5gr\\-2FsIqpw2iz6X8V1PItcQXjtLrgeZpjgONZmqpSAnI45pih5F\\-2BfPlrQeRZ6BQPFx\\-2Ft7w7IUZaxSfO8MKoE4V\\-2BgoS3ZyZX3ubzU5WFvLRzPSZx3UeIcWPUYwp\\-2BeI59Hf78fY\\-2FKKcV8gbOczSEmh4Gdyrv8vbsIxh9K0RaCQQdAQ5JvETEoU4Z3jpvM\\-2FxBr8DclHsDsz5pBRUdKco22\\-2BAyNUj2PhSM1\\-2B1BrhYuFXmQhVqixovRRn2Cq60DyVBM7fseYkmRCC\\-2FHo0IGC6CYMOEY7NI8\\-2FhO458jvGP3GR6OoPBqH5gOpeMBg5lSp0scMnNNcz\\-2BLbR3KsLmKnfBmc5zhLD8UOD\\-2BDpp35ZMWMdwPLL2fQqJcHohQhvHM44sOvjzRgz3CMkuhpdLXZUWvti\\-2F6dLmzslkQB\\-2FOaNuvan9VVpiGKkoiMKjY6CyxzycQeDnIzUcH9JX3HoNheReoczFwZIytUtafOFZ9oY\\-2FhFIvmzkGtHG9P11n0E2bAoVHIdm6xnzqxHB7O896JHIFDDNXTdZ3rolsy37LsswVRO9OaqvIC7eY4RTtcAoxYYm9qZBJEO45mAAZ64h9RtNALXc\\-2BlEbqUF6Ouyk\\-2FRhphJusU1PORmw82jqhKD9aHtSO40AedU70NLyayHrUAVQuMryYz6nsu3M\\-2FW58o\\-2BZLwRaZg9\\-2Far9bKeqOL9e70wfz6TzWWQOo6F6K0TVa28nUp81Q6j6bGPaIs_j4b5tSPSxGDYlLXqPATRQbkhlPc4t7oJnxanomirv0y7JMx\\-2BxlaDpN\\-2BuwIX5LUSZiQYuIBgABU9CF3BdyN2x\\-2FmQsx\\-2BzlRQV6ud73\\-2FdH90BmZF1cM40uhj0Eh\\-2FQ\\-2BaKXyH0BZwQPHrDZATYq3xBIlHcAqbg6u9dlwNwGocJt1T8gwvfrNxAA04q5iWUTIkLuHycT7AIsouYKCbGSdeqK9\\-2Bp4oAwB\\-2BbEG\\-2BAs5S6FdJiSl8\\-3D" + }, + { + "hash": "72594b12b5f250de00bd79c89aca90602773b22f48aca46cd99828ae5b06336c", + "regex": "." + }, + { + "hash": "cceb2ebf75220c8134a7549dd711974a10988610afa2f5a674826898505ddf44", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{4}\\.replit\\.dev(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "d82684eb7ecf20f3a91a9d4ff6b88fbe8cd7e783027b161a18ee739370b30132", + "regex": "(?i)^https?\\:\\/\\/gauravsoni1280\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a8dba8fdb4853348a387a7e7130a7ed4e16af1c9b042e30a57aa601caf6bce13", + "regex": "." + }, + { + "hash": "615731a57fb25c28e04bc4519461d21528acdcbc35adb23b023ecac5963e24ae", + "regex": "." + }, + { + "hash": "2e817d9872bcaea41a2e2f3a8b4e7ed7e25376053cd1a7fc21fe1922e64ec43b", + "regex": "." + }, + { + "hash": "ccef1f1482590698b066c8142c67300d66e1d0b72d0d317aafe4d195be165f64", + "regex": "." + }, + { + "hash": "900e43c22a3ffa6a66acca8ce29e8d0991eca03f8fe9a698778a05213ee5b74b", + "regex": "." + }, + { + "hash": "2d455d8275efaeaca6bf993c813d5ffa8092b9dffcc2dd4b62a295aa4f67a94b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pa(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b3e2380c53cd114292d2fbd391cae8770ac929c7b26121a3c12e65fcd1890dc", + "regex": "." + }, + { + "hash": "70a9b70506bc9bbc17dd259fb112e607ba8896f61817953bdf0261b94a577680", + "regex": "(?i)^https?\\:\\/\\/indr0802\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "cddad7d854620b60fd9579936fd28bdef1ce08387e1a056d25b15d91a2f69761", + "regex": "." + }, + { + "hash": "d2033219417ffeae736aaa207f9a41f11db6f26ae29c1d208eb1cba84d73d4be", + "regex": "." + }, + { + "hash": "a0a77501a6cc0fd3b23db8fed081db85b13128dfb27a92dca5582f7467512fdc", + "regex": "(?i)^https?\\:\\/\\/fgsrgtuidfgdfgjhudfgjhudfgjhudfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "15d7491ac1b1c973f82685ed3c35b9a9c99b16dedc4b479335298f415cec2ba2", + "regex": "(?i)^https?\\:\\/\\/fgsrgtuidfgdfgjhudfgjhudfgjhudfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2992d209deddca2740f5fbae862f6c9bf0040c7499e2e3c66d9aa6d8fe928118", + "regex": "(?i)^https?\\:\\/\\/fgsrgtuidfgdfgjhudfgjhudfgjhudfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "083188762caa337548f9ffd56f7dad2533ada89ea0a90009a3f33251bac9d9bd", + "regex": "(?i)^https?\\:\\/\\/fgsrgtuidfgdfgjhudfgjhudfgjhudfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8cbd80dc7eb1ed819f1c86611b5c1a5d3de43b5ea31aa92a2714eadf5a5125dd", + "regex": "(?i)^https?\\:\\/\\/fgsrgtuidfgdfgjhudfgjhudfgjhudfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "64818ece029f1f19b1a52fb532d3cb6af8299ea1b4aed4514f8d1afc8e7c8cf2", + "regex": "(?i)^https?\\:\\/\\/fgsrgtuidfgdfgjhudfgjhudfgjhudfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e754cac1163f28e44be14a98508299266660fd42fbc7521365f9fd0a03cc2c21", + "regex": "(?i)^https?\\:\\/\\/fgsrgtuidfgdfgjhudfgjhudfgjhudfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2eb25dfb9fc790580c41b0f077e7e496b648f444f453550fcefdf0339e7aeef9", + "regex": "(?i)^https?\\:\\/\\/karthikchary2003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "794c18230b50246cec781f6d0d55dcdcc6e5d657f9bad3d3c3867fcd4e85f701", + "regex": "." + }, + { + "hash": "d1991c68009d435dc9ebc98bf98789c8bec51c0919ad3c4a6169313e8f17af7b", + "regex": "." + }, + { + "hash": "673b2cdf649ea2efcec07850c79d03501450c1dcef18b7ec1dfdbdbd56f43fa6", + "regex": "(?i)^https?\\:\\/\\/domwin\\-rkkh82ki\\-3\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "70e9b3bf46ce2c3eee858fe5edd014dc15e649798625a80a69c596e2a7de2711", + "regex": "." + }, + { + "hash": "7ce20358094cf92fb55b41919cb40de95bef854a7adf09c6828c5a130c20661a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+espace\\-orange" + }, + { + "hash": "f6efabd7a2e8129d94ab5d76c04c1705f932d0b6a7c66775b50d77ab96009e04", + "regex": "." + }, + { + "hash": "6dd21eafdf95b2b588ad5414e381534b48337d88fb3314dc736cf3c455d82a0b", + "regex": "." + }, + { + "hash": "411de0ac04d4c0a04661f39cde99d5fd92c9d18c1bb1bf130b3d960ea30a9e77", + "regex": "." + }, + { + "hash": "76d38200950cb07f5ea35ee6e0a8d865f47952c463cd8fdfee4b5478aba2856e", + "regex": "." + }, + { + "hash": "64d1dce4337c1853a22a6c6fe7cd5954fcbe51c44287f0dc0687d56c3fe66457", + "regex": "(?i)^https?\\:\\/\\/exciting\\-lovelace\\.157\\-245\\-206\\-202\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "f87f88a9dac9334e5b92eb6824ba7aa39ac206a7f8f429a83acaa6495beee5b9", + "regex": "." + }, + { + "hash": "74ecbedcec2acb07e132c5407a8480944c5ff6476cb30b98bcba85e1e31b85a2", + "regex": "." + }, + { + "hash": "3022f67ac4864b2dd3b2c5456c3b8716d756c09cc56202791391357926d62dc3", + "regex": "." + }, + { + "hash": "6920a6850c32a3d8091a35ba8b79ef38b810c313cf53ad73ab232334d3b229aa", + "regex": "." + }, + { + "hash": "5ed26f4e0834bb167747bbc9f0025f225876811cc02a005641921ce26396581e", + "regex": "." + }, + { + "hash": "bfe0f334102acf1653062cf90e5c140b5f42820cd497573546ded164fd82ce50", + "regex": "." + }, + { + "hash": "56eafa18dcd3647f15156e148629ef36daf50a64cee69a069fa226f841b19d7a", + "regex": "." + }, + { + "hash": "cc0f50a1896b1afca61e83e233be57ed4f8851fe186ac095f9465653b044d59d", + "regex": "(?i)^https?\\:\\/\\/okey14562\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "54fc76ea7e5b9572e51e08287b982c7b52a641d7654644f928c27f5577a720ca", + "regex": "." + }, + { + "hash": "16cd2acc7e2dd9c0e4d584c171ecea2aebdcd5cb6e0e99c10f8d686545c2fa42", + "regex": "." + }, + { + "hash": "5690cd6018ae77de37593fac3e2c899fee3cf3ccd72aa68e1862cdabd3d7483d", + "regex": "." + }, + { + "hash": "d648f4966d4341278514ecfe7b555d125e13672f7b9f864f2bd5bd2c85e24d38", + "regex": "(?i)^https?\\:\\/\\/ttret453geewr4wy5\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0fa9254a2c3b0b4902483ff8aef2b4b48abedebebfed0e393e07a41b661ffa1", + "regex": "(?i)^https?\\:\\/\\/robloxps3disc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f93e649bf728959cb302a518a6bac79fcceaf8d8d3f9ad92aec64c2134ecbf3", + "regex": "(?i)^https?\\:\\/\\/negisuraj080\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3e81fbb54dd6089323011de1df5bc16892cb45a7c1d298de7dddd646705f614f", + "regex": "(?i)^https?\\:\\/\\/abhash29\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "80852045309bec822deb50dd0cd9387d13fa435a3886b894f86e378da947a7e6", + "regex": "(?i)^https?\\:\\/\\/okeybro2012\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ba9040ec5bbce7e9ae9ef32bf82fabd60399c161f19830f0db69be1e8de4cd2c", + "regex": "(?i)^https?\\:\\/\\/vrdededevr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8ff45cdf844c3003c82e01008efe3d968d7250a36d014cea31a2a127f3fcacdf", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "19859f9900a345764b9c7720f4192166cdc16c993dd72716d495b15f54d56d82", + "regex": "." + }, + { + "hash": "65292545b9bc5e2c267c8310dca98a367769318af29a477c1850f1456856b01f", + "regex": "." + }, + { + "hash": "8c3bb01dcc601c6a177c4e71d3eeb2b07490f1510a441c5b6cb4aec97cd3f247", + "regex": "(?i)^https?\\:\\/\\/tuesdayfirst\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+mix(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df57af608e180c12793d05c9680bf2cb867d47bde7c298dea31a59889470e528", + "regex": "." + }, + { + "hash": "f60eb9f49a73adcd36b8049f2069f9216ab1db26a32b275a3c8db305b64962f1", + "regex": "(?i)^https?\\:\\/\\/rahul\\-dalai\\-2003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "10e97059fc996b649270e2bd9607d93f89352485a9911c8bf77cdbee5b34a614", + "regex": "." + }, + { + "hash": "4a7cbca7b05b616347f64d87a32178c27478dcf8f6dffe1c20391a7abae49476", + "regex": "(?i)^https?\\:\\/\\/bammist\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+bans(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a04ff5f27369d7426214eb41bcbe0ac410085166bc329303d8cd365f8371bcd", + "regex": "." + }, + { + "hash": "19725ffe1ec4ac7cdb9daa29efde378d198cb6d9c1bdee36bc4d69491db89fb5", + "regex": "(?i)^https?\\:\\/\\/misticasma\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+bans(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "98cdcd82e4d24877de8573798e8f1cc4d928e5510d267e93c4867012b5aeba2c", + "regex": "(?i)^https?\\:\\/\\/rojdingserijridhsjbalsisgser2\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a3660b2b45326fe218be882f83a2ffb9bd1e7874ecb8094bd6c8dc89d796a9d", + "regex": "." + }, + { + "hash": "0b9a4235b63a49a22b2225fb86c19e0cb47d55c2e7f71762bc72a99c458ebaa5", + "regex": "(?i)^https?\\:\\/\\/faccrackspace99\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0fcd611a47172bffebfc3a29542fe85a3d52b3d76404ced464716dca0e5add99", + "regex": "(?i)^https?\\:\\/\\/aksh\\-ay007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "631a1e6bf11f35a632bff8c8ca67e2cc443d9b00b9fce075efcf3dcbea6742e9", + "regex": "." + }, + { + "hash": "d0289045637a2ca81121b2973e1b594e155dc1f66499ef92f5f3c76067c197cd", + "regex": "." + }, + { + "hash": "82c926065807f388110741a92d09c5b6292f6434ae1e297855e9fa3990af4927", + "regex": "." + }, + { + "hash": "95670d75caf4628d6fded96f649dc20f380b1c54746d1f5808d01b9d1411ff2e", + "regex": "(?i)^https?\\:\\/\\/howtogetgamesforfreeonroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "360ab071cb442ffae5d4ddf1af747d9185c4465ac63acb105e6007e3888e7527", + "regex": "(?i)^https?\\:\\/\\/fdgfdy456414\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a0336f8daac2f898320d11e76adaea86d7a03f955d410b2ae0212690609891c2", + "regex": "." + }, + { + "hash": "0ee43c491b397a55a0098cb6fd89db32ed01e9c277a10eea57e48e24ced10dbd", + "regex": "." + }, + { + "hash": "8c198127cbf460a29aa7435b721b6cc08af45ced0d7976ea5ce16c2ea9595d1a", + "regex": "." + }, + { + "hash": "e9eb3e816cf9e94be963194ae20e163795be3b63035cac2cc20f4142fd714fe5", + "regex": "." + }, + { + "hash": "58073d26779675b43465066bd863733f5bbdc63c81d455f7654cdcb066a0f0e9", + "regex": "." + }, + { + "hash": "85eb36b1f44d3c368aefcfb098bcc0e97f070e55b393e0689e3a90062e3281c1", + "regex": "." + }, + { + "hash": "8069be16d252fa3ff1b344d596b481e4ed1ff90102fba015cf0e23dabbe98e1f", + "regex": "(?i)^https?\\:\\/\\/polarspecr5\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "626ff51edab978acdd6b7f35a292c4556a4aed154d2a4244d4681ab6e1d5b84c", + "regex": "(?i)^https?\\:\\/\\/goodmornneg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "43bff39e9e9e35940fdc5441ec01f27c4e0f64d7def70b86608811fe21400dba", + "regex": "(?i)^https?\\:\\/\\/goodmornneg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0c196f8ccc46c0948b4a3844bb14d240e0d4341581b84f02eedcb3057a09ea42", + "regex": "(?i)^https?\\:\\/\\/goodmornneg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "874e2c9bbdd997f0154bcfd7d6bf5dc5f71a1b3d2bd8a63bb9fa5cd311a8530a", + "regex": "." + }, + { + "hash": "85b0cc543b8c3c4ec3ca683ac7dcc09d664db97af8660cee0ef742259ab6386e", + "regex": "(?i)^https?\\:\\/\\/login\\-screen\\-107572\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+tt[\\/\\\\]+index\\.htm" + }, + { + "hash": "f36902ac740fb23e83097b49dcfcf5e296902d80fc31bc9b43eb1cbd14da76ea", + "regex": "." + }, + { + "hash": "68c5d96919b1c54e6295e7c5a65bf54a652b26247e41f451c627443a27d20183", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+user\\-microsoftware\\.html" + }, + { + "hash": "f1e33a6e77486354718c189e7f0dd9b23159258509b70a230a5e61b2780c9756", + "regex": "(?i)^https?\\:\\/\\/event\\-top\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89d9c327f39936e7309eea3ea1f23b292303e402b844d9c5990a98eb0f3d1ac4", + "regex": "(?i)^https?\\:\\/\\/event\\-top\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "319883e4f19f2eff9d6a127122da5b29e4d4cb3954228659c68dc3479135d587", + "regex": "(?i)^https?\\:\\/\\/event\\-top\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6481706ffb6708a1fa2c0379fcf0459c2c0017b097afd24aaecb0137eeecb159", + "regex": "." + }, + { + "hash": "a0935a80413a358784ed38126bb77362d57771a83cc6b89a39a01e03e70a9419", + "regex": "." + }, + { + "hash": "8d30165e8b2bb8e6f291e167533b077d70de576a2d3c069f849e46543ee7a535", + "regex": "(?i)^https?\\:\\/\\/fo60krbxhere\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b8b64d14107c04926d4dfa40e243507c715a3a96328ce37ae0dec762436e60d", + "regex": "." + }, + { + "hash": "f26c94c12176c913c4e54508383cacea0b2cd0e6ea7ad26868470b2110ec1626", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?justns\\.ru(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "8937ce372718ecae1c83f1d6897dbc9f52a69d9b7e971fbb8c32ed695ea86ad5", + "regex": "(?i)^https?\\:\\/\\/sbcattbellsouth22\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d91fa54f4360784ec9c120522a9c4339f04dbb1e06a7695cbb50a3f8fdc0057c", + "regex": "(?i)^https?\\:\\/\\/yutiutnm9709hhkkllitm689898nbgnbgg\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b80ece85f8f11af1f9d28d3d023db0b06b02aafadd90663408692c00c6324411", + "regex": "." + }, + { + "hash": "89e886c6ceaea432d29a3d74d7bb3b929691163cec8d6c937cf1ef9d4e1c3aef", + "regex": "." + }, + { + "hash": "6c702df6037a7d05b05a4cc40b6835dfe06247f3726dd470c07548e3eab10287", + "regex": "(?i)^https?\\:\\/\\/ankit192001\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "884840db31a89bfd748ce1a2514fb4824a450ab7751dbb037bd24e842358dcfe", + "regex": "(?i)^https?\\:\\/\\/home\\-107119\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/www.apple.com@office.com@outlook.office.com@([\\w\\-\\.]*\\.)?r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "bece579b3d5880210eda5517fa0c929c9327914f30a0d0ab66db67dc958ceda2", + "regex": "." + }, + { + "hash": "0a6f127d1744618b5ff38588d5994aa20c22c59000ec26f1b77ce849ae224c37", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "ede9fabb6c0ca68ba04762519874cad98939ac96b05146ead9c2581fbe68e02f", + "regex": "." + }, + { + "hash": "2839e4670f8ed8fe61f0af1d8daa7a9188711842993606e57fc24a0a89a6395d", + "regex": "." + }, + { + "hash": "d75f38261f76bf9cb4c06980a06381e5a00cb4fb120d2c4be967d73cc3638d65", + "regex": "." + }, + { + "hash": "a50aa0a5cc1bc9f97f4214d1bd7a70efe264dd6d755bd8b6d1e72ba10778a95a", + "regex": "(?i)^https?\\:\\/\\/amans09\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "28b40223d37cb2a7deefccbb264e03130bf36d740e0714d65096a38cc2d584ad", + "regex": "." + }, + { + "hash": "ac979966f01c84df6d3fd8f8d6cc8c515d9fad5a203ac1770fede7975649fb29", + "regex": "." + }, + { + "hash": "a7e46ecc95eaba6139f33024e55eb533cabde0153b95b51c114aa4a538300539", + "regex": "." + }, + { + "hash": "df8fbf83610d98e3bdc29757b2489085ab3616a8f47cdabf3a5493b429121393", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index" + }, + { + "hash": "71783b97b5523a0e53065fe1d355d717516a2ccb3c53417056163b1fe50a3ceb", + "regex": "." + }, + { + "hash": "b71680845c78ae54e556257dbd4f0cb888d2a33c99e724bd93c4323d621f75aa", + "regex": "." + }, + { + "hash": "69440eb3b85b05f02f621c5a1a4b5edabd73a39e8552e1f370c36b403d928624", + "regex": "(?i)^https?\\:\\/\\/ankuragarwal130702\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f5d3d04dc6dd57475f3e5c4aaa9f07c36acfadf4e6d19c006d2a9b4e9215fd7e", + "regex": "." + }, + { + "hash": "95f0a4e8181976b66dc83fb1f7db7121164e1718b5c7e8d13d6d7a9510b3d350", + "regex": "(?i)^https?\\:\\/\\/greathockey939\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b35e6c334cb98b6709f1d42d06649d0ba0733aad8a45cbf9d5ffdf463a86f8f3", + "regex": "(?i)^https?\\:\\/\\/lasopadown178\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "90d2430a618815e3a3a75daf886e80cc1c4ea60ea7b0b7e55f4375f4f5901364", + "regex": "." + }, + { + "hash": "ee3ec319522dcd23e98e1809a2178997557565578ed34866c00d36b1933a755c", + "regex": "." + }, + { + "hash": "102ec2993c85db6a706b74bb465061aadc4c652dfc951b68ea345ae58f0fa19a", + "regex": "." + }, + { + "hash": "42174250e78bb6c4b466300e3e45917f84021485afa6c55cc59890758d07cbb8", + "regex": "(?i)^https?\\:\\/\\/piyushl337\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5b07c1be0a5f2f1f42c697b77ecfb87ed6fe5cb450af64998699d72fca200a44", + "regex": "(?i)^https?\\:\\/\\/trezor\\-login\\-1\\.gitbook\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "95f03906ccbb4c2b4dfd27e5b79d12c362dd998029b7ae31fdb9d3e08e9d21cb", + "regex": "." + }, + { + "hash": "6b4d3395747539e3d0c2aa5dc4f92b464bd266c35a8746feb337684ef971dc46", + "regex": "(?i)^https?\\:\\/\\/payus7\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2bfc0afc11a5246acdd256059c504d70da87d0d5460d9f0e2ba1c0a3335e79b7", + "regex": "." + }, + { + "hash": "c9c36ca478e4b7c9cfab46022a6305fd4e6de1f6f752926337642dd2baea0822", + "regex": "." + }, + { + "hash": "8b60cea13032e78148cf1ae8a4a48ec0f4627758c72081b8e51f35fd9161b268", + "regex": "." + }, + { + "hash": "2dfdc699dd5b7fab4a5d750e2f5d50e25b1a94ed93cff52c67566a64aae6439f", + "regex": "." + }, + { + "hash": "d07e12b19d63439516e8fde261267dd6633941dc6db573cd74bbadcb690e84d4", + "regex": "." + }, + { + "hash": "373a71519b45a006e0a0fa046cc57029933958537a9521611ed9b3872cd46558", + "regex": "." + }, + { + "hash": "3b6dd393bcd80e30ca8242d30650fd2fd15ade0e88f1490c347e07e2b8c27e46", + "regex": "." + }, + { + "hash": "3e83ca436b11f30e3258bead112c3eb95ffe0c1bc5e797dde2f8119567799e7a", + "regex": "(?i)^https?\\:\\/\\/midwesttree812\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b6acf7cc4d1ffa7831dc484d4dbaa9b543f43a20f403e7e01d3b9618a23161c1", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "62dcc51835f5198c9ed2fef043a6b1b5130b296dc8d14a078c707bc59c184332", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "711a3f7e9b2d56efbcc6bc0dbd769f865e1f525c43f55cd026ac74b12153553c", + "regex": "." + }, + { + "hash": "0cb60091b7a8e77d75c99f548ccd26501316b0c4f99969eaea1754e748d248ba", + "regex": "." + }, + { + "hash": "c9b118d712d2de951a815c0c34b9843e0b07d8ed2f32af73e0e6b9b0b1136b3b", + "regex": "." + }, + { + "hash": "433378ca3cba338032cc39fe599e47022c7fd684252b6b90ad3a19cf2be5552c", + "regex": "(?i)^https?\\:\\/\\/56azcxasazxcdxzczxcz\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45e757926de4333b343ed4646282e93a35dff0841d3f53cc5ea7919d22c4b8e4", + "regex": "(?i)^https?\\:\\/\\/56azcxasazxcdxzczxcz\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f4b5d366542cbaf444bc8337fdf0e898e80f20cdac8ba7777b6c6fd1f3643da3", + "regex": "(?i)^https?\\:\\/\\/ersdf654s5xzxc6zzcxcasd\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b76bc21539b8c0e8adec5984fe5e97c03ac3019dc2ae54667ac4debd625c250b", + "regex": "(?i)^https?\\:\\/\\/654sdfsdzcxcf56as29zcszxc\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9550173444e7bd2ad379def93992fd1f24e26526d942f0dcf26cd6bdf9040de", + "regex": "." + }, + { + "hash": "5e88970ac610e85054457efa196dd5fa3da1ce0d4fc4fb4bdc641e09135b3ab5", + "regex": "(?i)^https?\\:\\/\\/654zxcrzzxczxczcwc\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e80563bae5566a0c60146b9227efe586f719d979c5899ed7e2871b09da48350a", + "regex": "(?i)^https?\\:\\/\\/dxvzss\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ba6024162b1d5422cca964ad8023d58ff25df6309be8d3c377d5a4f61238f265", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbe102bf398f6fa6c851c4fe647b764135bc17252d1622183ff04b531d876e60", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b52b3176d86d38c1fb2373199d4f7c13c529f0fcc6c4b139870d15cc0e9ef2da", + "regex": "(?i)^https?\\:\\/\\/542vsazzxczxczyrsazcxesdfasd\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e3eb1a7feeb6669bb8f92b7b82df5af39c73c7ac143c3b1b513e9d59d46832a", + "regex": "(?i)^https?\\:\\/\\/542vsazzxczxczyrsazcxesdfasd\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1936318fe850ad676093791542e640b437320c731b8b574d16e90212ae5f20e", + "regex": "(?i)^https?\\:\\/\\/542vsazzxczxczyrsazcxesdfasd\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c9fb2a078ebadf9a57c5c8eefe0e42b2d7a8360282196cf6852a8e1680bcd9d", + "regex": "(?i)^https?\\:\\/\\/zxcwxc6s2zczxcxaedzxcf\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c760ec70166dc1d5692687603e8cf582d352426b36389b4db2a1466d772c92ae", + "regex": "(?i)^https?\\:\\/\\/zxcwxc6s2zczxcxaedzxcf\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70c3a297db169e28588fdf4f159ee26f6957a18778a2f1f30cd465fee3453655", + "regex": "." + }, + { + "hash": "84ee44e49763a2e480537213ae2f7abdc79da3ee871d7ce71075a587e12c2c14", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2021notexpiredforrobu\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f5eb728f17ef7f95fe5f1ddbe837eb2da4883fed788161d283559ec25c79e6e8", + "regex": "(?i)^https?\\:\\/\\/frf121\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f6d5177433e7fde4046046fb42485b724036e44a71c527bc2010f8de6a7c1e0f", + "regex": "(?i)^https?\\:\\/\\/frf121\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "34699ec3d48b1f649dbcaa8e25364669b85413d46ac6021c8ed980bc6482da23", + "regex": "(?i)^https?\\:\\/\\/hkcgyf65fdsd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2a1261d246a59beac23c716452b8a27b44c7375ebe6aa106b6a2b6c362ae602e", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c19878a27e86f6aa35efb99d854caff344f2a9a7837c620ad7e35483c32dba6", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc051db0c9dad625ac525b65c20dfe83742a70525569f03437529f9ff6b6bdfe", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c9a341d1d59738f63df6ccf13fcad2f2fa16821a3bc39f465ba130b4188f9f9", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6aba764d6fd8f984b7adab4a70c6ce9dd64bce3232505aeb249b33f5a67b1c7b", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abb1ace26f6b5da5fe430b13cafb5acac27f7c63911c25b874b9effa5abd6910", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21d9971ad7f635cb9137e6f744624aff11787e43b1e4ef56dd16d8b45bb8c9d8", + "regex": "(?i)^https?\\:\\/\\/vfort6555\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "352264c99e11cb2ffd9292616d420f53adc5b37ca8786deb7875bfa2a7163e2b", + "regex": "(?i)^https?\\:\\/\\/jjsploitrobloxradiohack\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26a4b5ba37034735aeda78bddb31bbf68c15ce9bc5316d9932c94c0ce3d13d16", + "regex": "(?i)^https?\\:\\/\\/jjsploitrobloxradiohack\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d349c5a95e93f598ed0342a41b55862d7892279947bf451c25e2efeba7f26e7d", + "regex": "(?i)^https?\\:\\/\\/jjsploitrobloxradiohack\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81f21f591b9e0a8fab775871a3d085e50afb4ffc334eaa95f964eb52877f8030", + "regex": "(?i)^https?\\:\\/\\/jjsploitrobloxradiohack\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49c099b48629b78bf1b01e83b1a85b83ac9c2fea32bb0b1d74774aa0cd974b7f", + "regex": "(?i)^https?\\:\\/\\/jjsploitrobloxradiohack\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "340862f29f9bce0c89d29b174a1b49fbf8faad3081d6262c4b96b4181ef4c2e7", + "regex": "(?i)^https?\\:\\/\\/jjsploitrobloxradiohack\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e15511c3dd357f49a368ade152fe81e07e5c24eab27925ce711e0b5a3c0459c4", + "regex": "(?i)^https?\\:\\/\\/jjsploitrobloxradiohack\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d2f7c9b0349f2b5e2ed31e10714f9df66b5b030d1592ec89f4f8397e51f3a39", + "regex": "(?i)^https?\\:\\/\\/jjsploitrobloxradiohack\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2bd3ad0e5319a37dd1c396a6dec50ff8be1f7d9535ef40fd79b7f7172f99939", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesandgeneratorforwindo1\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a33f911644e6b27f0603f979cc4f5665cf2dde594b4b100964dd283d2f0419f2", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesandgeneratorforwindo1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "10d6b03ee107f687a73edbc29b0c7d6029b2d196bfac0ec7293162d28d3521d9", + "regex": "." + }, + { + "hash": "25de4582dfcae6cdf2090495dcc91f025c0da698554e9f1eb553d8e453395f7f", + "regex": "." + }, + { + "hash": "f60ea7017ef2b7ab9248a0055da71c2edae8f1d8a2f715da9e3e04ebf241d8c6", + "regex": "." + }, + { + "hash": "01c5dbcf76cc4aef5d2596c8e8deb3ccaebcd57ae3a113f001ca8ff304d52e38", + "regex": "." + }, + { + "hash": "e9ebea3b03fa1b960df1239ad152ef298939cdc687bdcea3dfd340141c6ab165", + "regex": "(?i)^https?\\:\\/\\/syedjawad7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c1defc54d23a5c870596c284c54ba81bb36eeb0b06d9b248e52c1f373500451e", + "regex": "." + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+ll[\\/\\\\]+ll[\\/\\\\]+index\\.html" + }, + { + "hash": "b232252cc4074310b7b65779ade9bf4a982f9d51531ff08a38bc307bfba780e6", + "regex": "(?i)^https?\\:\\/\\/mehak261124\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "411ae8832800667d601db0a32aeea77da9d092b3c686a9ce6225b63512c6720a", + "regex": "." + }, + { + "hash": "a3246c20e4b86dd3c499394547aa55c76343387b72e94c37394dd5eec0bf5170", + "regex": "." + }, + { + "hash": "b862bcd68c0152ac8e8ee4220259c12122a250ac51bef1890fc582b862fc510f", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "97f1a3be493979ebe345abcfd173cdb1e3e6dd6b81bfb6e615e12a872ed162da", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3091b1c97f08887d92b8c716e4fdee8e3c934f62f6e5f0c3c5ef0f83ef47b277", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a8db54768aad1c20c0143cac9cccf7de9e26ef21570e890aab34a45afc11e87e", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e3998f0ca63892e3af7929840366354365e91ee216d8c60048d59f8ee5cf1ef4", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "97a2110c2b8393ef1d8bce10a1c9d08c633447505373856f878d6e4b9a23a42f", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1015bff3b81dae5254148c39dfcb1a89f1623829cf1f229b5bc9350de78fc436", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "12b4df0b49600e32a9bda42284aa00c721a12c2e73218022e91e10a35dc135a1", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "35444b682824794444c5f19d373e1dc28f35c1a190250772d9ac82864f3dd74b", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7d1ff72a3f1049d7bcb3acb305927a796c831f9a7350c44e8235c0194bd757b5", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a54c5e237e639d8a1bf2baa109142ce54b6b174202985116202024612e9b801a", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ef16e76f3ae68092b412e0dbbab0fc5c7d1a96e56be83d81f7dfdfa4526518a5", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "76ab2f25a781df6cfaa6834650aebb9029430b42f353be7efb361599b9a5d9d8", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6797b982b56b8e141df18c33b3dc062bd003a06dc0c258b1a44d523be00cc5dc", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2b00bf528b2acc685320c24281edbd9d504bc9701452c56e149e141a0aeeda26", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c207a65db2b3a1d270e8f905c0696672a96d9c0ac85fd08ccab614d5ed3dca70", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "aaab67ca325df4127d41e179f07506b9d4c90a986ab15526df95facc1aeb0f84", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?download\\-soft\\.xyz(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "711062c9c460e77847ff009f66238ef340e5e054ebd77759489e229dcc817a22", + "regex": "." + }, + { + "hash": "cd73d131df39f1d27f9a638dca88ed1e93c06108637f69dafe07cf38ed0f1029", + "regex": "(?i)^https?\\:\\/\\/amit\\-rawat09\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "cd3de5e4076162c5079df51d6d01843f3947ce79a4808540f3098eebcb944e93", + "regex": "(?i)^https?\\:\\/\\/khandelwal24\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3e7d63c62697e508e144af3790ed0f9df95b713d9dbe03316cdfa6cc3f39933b", + "regex": "(?i)^https?\\:\\/\\/ayobami23\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "59f23e86179ea7e21d7b311b627a4f0a2e2a28c7345882a76022ffb27fdfd8e4", + "regex": "." + }, + { + "hash": "e4ff1785fade661c3068b1f9311e56eab1a4f51a0a77412d28839a1f14fe6ec5", + "regex": "(?i)^https?\\:\\/\\/luvkush8789\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2714a54b1e6130aef27b107971590cc8a9104515ce942850e3fd3b392d9dd221", + "regex": "." + }, + { + "hash": "59f21a3752b80b9a70c3a664426a78723c9e7c9fe17cc954d6adab862347a847", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ro\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b34750631cb72f85c55adbf0f5618d857e3e7d38d4eee6d06ed3dc9328400109", + "regex": "(?i)^https?\\:\\/\\/peterh04\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f69c1df784472a431ecc7a9beb746dee7ea43bcc34458db75c56ab84f8850aeb", + "regex": "." + }, + { + "hash": "04be149c1e85b274daf96eb8999d55a41b22a94dc389af38f7b93d67259bcee8", + "regex": "." + }, + { + "hash": "89a7b47e31bf91fc94161956fe386be1825e81e3fc19ef39bc6a222fc95f2340", + "regex": "." + }, + { + "hash": "711a152191d6d7b684c1fb2588405857da5e432e206fd7da1c405109c1fb6579", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "b854edcbdfbae83204fec287219872aa9b87746591bd13546ef298a925563855", + "regex": "." + }, + { + "hash": "8cbb7306cd095e9535a95b0b8ccb4544a281e104c595df1afe9e9c99b423c1bf", + "regex": "." + }, + { + "hash": "8f64bc26437d6264158121e0ada3c91253ebd58074f535de6306147fc27f9034", + "regex": "." + }, + { + "hash": "5ac6ca51c1ed411e47a4a5dc27f2a9c3cbf982dbb21611e0d105e4adf3f246f5", + "regex": "(?i)^https?\\:\\/\\/secure08auth\\.e3a2d9726c9530155\\.temporary\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1754d0adb4f5587509ff5f31aba463ca2388b708149e80cea638e120d9e40", + "regex": "." + }, + { + "hash": "2b32e9a734ea7a47cf005514fdc2ca0a19e8a1b6e82ef629b77c8385dec448a5", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "67f2e6c806edc9b41b709042a4328119777dddbce8df06a77c7bb2783756a828", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "280d60d9e20161dd085458a20a17e241c6a19cad0e867385a3718164bd3a0503", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "65ded5b843713510833d65ef4ffadc70edb25e7969008e8c7c10bf07254c58fe", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b76b17f39ff7c253a424197ee974abcda98433ad9a25492cedaa43fd90ee28cd", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4ddfc3db002ccfd836c9e8315b02f6015756aef46828b52271cd64722f639bdc", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "728d29c02d91950c25443f953b9448a1bb8fad13ca5971cb0f68a33a226d4615", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "49eff5edc90d18d20d454233db4facbda2d3de0a567e32f14392a850fcd8a65d", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2aa2cec867049990d21191e5bdf696a872b63044ccffafbe6c27608de40c22d3", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "054d77dbb84ea5fbff46b3fe822d49279485431ddd09a4711fdbe117e9dc19bd", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "32b1cf42d4653eeed82f291ff7424ba16c7009b81ab1d37192d0f0fd993c0e79", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "901902504fb928e1a42d4243e05767b64d1e5c876a0ab003850fdec3f86dd7b0", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c43e33e1a4f3aaf914a6a91d79cd2531b4f589e6ac99e945193cf8d964f3de41", + "regex": "(?i)^https?\\:\\/\\/codeinvacuumsimulatorwiki\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5a8782125ecaf3584ef61558d3d72666055209a9a0933a6e26f8a4b2348078bd", + "regex": "." + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+cpu\\.html" + }, + { + "hash": "5b869ff2132a56bda4ef3a36aada9cbbcf5586379d8d041f70818d69011ade46", + "regex": "(?i)^https?\\:\\/\\/adarshsaxena11\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "66167ade1a34d0db9d6a8d208b701c3797192c7a609b41800d922375dd869036", + "regex": "." + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+jg\\.html" + }, + { + "hash": "476f5376969d581aca0f77a492fc72dcbad7ef4ac6a28abce502cbe95f582103", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+demoslot[\\/\\\\]+images(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4ffbbe13da1e3abd93e950b6832814b34ef2fd06647eca39a1d666a37368486c", + "regex": "." + }, + { + "hash": "f5dfd6ee2b592dafb31ca08229d2618890438b06f77d1bd4d32a5a71526a0445", + "regex": "." + }, + { + "hash": "d830900f171fbfae3f5dc9ad514482e9aab018e55a3bac95bb5c9f855eba2ed5", + "regex": "(?i)^https?\\:\\/\\/att\\-service\\-106628\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3902d41c5be3b8f3210b18da8e67eef6e98e4724deaaa374514955a182fff90d", + "regex": "." + }, + { + "hash": "70ec3ec0300e8c699bb74a3462f5bc3827344b5701bf2743196a2e9cbe3bcf92", + "regex": "." + }, + { + "hash": "2bd1c66b24f2c2ffc632aad057b0e63cf5bbf5736df0c778326092657a4300c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sk\\.html\\?\\%20ema\\=$" + }, + { + "hash": "2bd1c66b24f2c2ffc632aad057b0e63cf5bbf5736df0c778326092657a4300c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sk\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2bd1c66b24f2c2ffc632aad057b0e63cf5bbf5736df0c778326092657a4300c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sk\\.html\\?\\%2520ema\\=$" + }, + { + "hash": "7aac6b9e6fae133394ed2732daeb20cd1c20b8ca830978f93b73c73f32271523", + "regex": "." + }, + { + "hash": "5fdabe3944512b95ec342b66ba753a150d2c53f32da682c80e5f8776e3d9b432", + "regex": "(?i)^https?\\:\\/\\/rajarnav0906\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+00\\.html" + }, + { + "hash": "976b826af9ce6c11a3a4cd000a9fd5b38e410b870f808b1140d95923acac9ae6", + "regex": "." + }, + { + "hash": "304be49b3d1f55aa1d4cf43eeee7367719d497d8254454b85dd6648c6d5d096d", + "regex": "." + }, + { + "hash": "2ebe8ecb4f9db76ddc6f56e1ab2eed899e94a82c252cfa9e8258aff1a73f9c6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+brd[\\/\\\\]+brd\\.html\\?email\\=$" + }, + { + "hash": "2ebe8ecb4f9db76ddc6f56e1ab2eed899e94a82c252cfa9e8258aff1a73f9c6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+brd[\\/\\\\]+brd\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d2bd5de466644a8073912718769ed9bb6bc6575b9bc4494e37dc95370e677fa8", + "regex": "." + }, + { + "hash": "dbd23fa4f8c5203259ef01713187dc228da4945008a34787c89f104626c16290", + "regex": "(?i)^https?\\:\\/\\/att\\-109297\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "08c49981f05cd8f8656cf1392e2bdaeac69e744ce2e1f9b144b8012457d3c7c6", + "regex": "(?i)^https?\\:\\/\\/att\\-107394\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3e3255f38c3e0872152849a179908fdf5bcaac1cbb211d877b7426bf87149a36", + "regex": "." + }, + { + "hash": "b7018537f59740ad3ea335331db3e2139c9e4284e717114b6ee9717c9fd55bb4", + "regex": "." + }, + { + "hash": "6407273bda49562baa828c2c1b4413ab4f732741a03e43d1f9bbf4e7119834db", + "regex": "." + }, + { + "hash": "1ff86291c88588f9ebf7fc3c7b7abd6635c25bd339e2fa30d5a967b5d21d98b6", + "regex": "." + }, + { + "hash": "1d4d3b71ea7a3a5239da78c3b879b819b4f866ff1eed6e107b61eeffe9693662", + "regex": "(?i)^https?\\:\\/\\/att\\-yahoo\\-mail\\-107090\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fb0349c0f04aabbd527aec411829680c462a65bd3292a0d05d3e20302d87c8e4", + "regex": "(?i)^https?\\:\\/\\/att\\-mail\\-109849\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a0b9ebda29f36d93b884a2fdc4a300ac04875d7408413fbfbc1bc9e018844fd3", + "regex": "." + }, + { + "hash": "d334dd9700829572d412f84bb4135ad5043e00226933aca04dfdccf7d8ea0642", + "regex": "." + }, + { + "hash": "6242707d98d33d6d7e0b8c7435e9e67ba9e41f606f5b53439314b1e320b4bf26", + "regex": "(?i)^https?\\:\\/\\/tushar\\-agarwal7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ed8cefd6b0ffde209a602298c98eeb56c3f2524e21daa17b3eb4877d5b9957ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\%20(?:\\(|\\%28)10(?:\\)|\\%29)\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "73b265b8bcf79735d5a51fccc9c1ad06f97d949a63ab4201b9878e39373e5c6f", + "regex": "." + }, + { + "hash": "3bf0dc599a6be4b00fa4b8cb31df7cf372418937194f53de1a7b6c571d4d346c", + "regex": "(?i)^https?\\:\\/\\/9199sk\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e7c5e974b3fae15a84f67ed4794c20cd3de7c7342114244ace065bed09ff01c1", + "regex": "." + }, + { + "hash": "5d9c68486866373e856910c413d7d36cbb5cd177e32e518f631ea8e1e97e1b2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+29[\\/\\\\]+items[\\/\\\\]+formsparkcham" + }, + { + "hash": "fb61d09964e79bd58f64f7bb0c5028264f65f01f7558f3101e035cb3394815f8", + "regex": "(?i)^https?\\:\\/\\/hsaid7ty93y4hr78dstyf08whrfdisbhf9s\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "714176c782cd261f6836cbd2b03f5f5900e09ce3edc993af1552752c2e083bc6", + "regex": "(?i)^https?\\:\\/\\/hsaid7ty93y4hr78dstyf08whrfdisbhf9s\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "50ab8687685dc4fe36699d54242b2a1215055a5cac4d028f4f0ef2550ea4e1cb", + "regex": "(?i)^https?\\:\\/\\/hiausdaushd739y4or8eyh68ftg3235r923sd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "efe81d0a9370e7fc478e3f8fc6099f1c49751c01639f28c103c57c62fac0a3cc", + "regex": "(?i)^https?\\:\\/\\/hiausdaushd739y4or8eyh68ftg3235r923sd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8a2fdbffe91dbee83ed53bcc00bde22d35de31e9e1c3ecbae4f6af35c318e67b", + "regex": "(?i)^https?\\:\\/\\/yugsdre87ty39rhasasdh86stgd79yhread79\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c4708670223c7ad8d63334659250e75efafb2aac93bdd197d7091c9f1c0dafa3", + "regex": "(?i)^https?\\:\\/\\/hdauishdb7934y9hdasiygt8762y3o94rhd8s\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3b9002dcc8eef7a20f127b4a93618cf36124e39f082497f5ffedb6d6df62ea03", + "regex": "(?i)^https?\\:\\/\\/hdauishdb7934y9hdasiygt8762y3o94rhd8s\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fb8f490f1475e1f49878513e35e20e59968d67fa2f56b08acdf573d74305acfd", + "regex": "(?i)^https?\\:\\/\\/iuyr78q6y3ohd7astyd9qyhe78tad9y3h879\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4433bef7812381b2c04fee72627dbd206641f5215a6bfbe99f223e3e1ec2cd24", + "regex": "(?i)^https?\\:\\/\\/yeiwr86723y589ohfe789w3rfh79f23agfoi\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6d162feb7e8146a86b5f4e5a35dd7f4298a437100043ad9db45682dc2a045f47", + "regex": "(?i)^https?\\:\\/\\/yeiwr86723y589ohfe789w3rfh79f23agfoi\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6af2d5858891608b51791ef2db784c67d3b0e54bc2593dce94049c2911d8f6a8", + "regex": "(?i)^https?\\:\\/\\/gayusdgr6739gd236tr79hsdgas8dg23rgaas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3029ae40808dcc0fd7659043cf53b9613b188eec695f47aba7e96de2a3334fe1", + "regex": "(?i)^https?\\:\\/\\/gayusdgr6739gd236tr79hsdgas8dg23rgaas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bb4676ef1ccad7fff0c58471340cc93762982afc8ca7e9b008f0d621a89ff704", + "regex": "(?i)^https?\\:\\/\\/yusghr9dy8fy379dysf9o8r79fhewuhfd978\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e21c5458fbda16acc58f6331f46b7f89c8daaff65636ea4cf1b4de3dccb3f890", + "regex": "(?i)^https?\\:\\/\\/vcx45\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3813190c13296624cc4be0919acaaab42520870b5a6b37924c3541754058a854", + "regex": "." + }, + { + "hash": "abb786cf2a3a40fed18a7a53d54787da936aa751e95483474d164f6e3f821767", + "regex": "(?i)^https?\\:\\/\\/stfasr988\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e3fa6978e510e7f88456bf20512bc18c1af3b6bec6508c78771a0e8e09a4fd78", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cceb4492fc5153048dd8916b144db6dd05b7085d7eb44608ea0dbf705e81c74f", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "098d3af86b46fe4625ecf1689aebb384be6b414252bcfa2f203ea3bc22b11e22", + "regex": "(?i)^https?\\:\\/\\/gsdft34d\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6053f1ecdef3c295c157feade1e0d201bf0e034c618a2a59f51859c1fc290865", + "regex": "(?i)^https?\\:\\/\\/gsdft34d\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "57bab76201a2f50816429bc03307bdf72e77a9f2aebcb75ffebbc69f53f4f466", + "regex": "(?i)^https?\\:\\/\\/dsad23sda\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "61bb199f2af1dd9d87b6dba9e2079b8553eeece3c42a13851dea98d75cd1ef87", + "regex": "(?i)^https?\\:\\/\\/asadas34ds\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e38fba8dbae56e8e2992756208aa4a742bb55ad0efea503b83d029f34fa74784", + "regex": "(?i)^https?\\:\\/\\/asadas34ds\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1afb22b9ccc33c1e3d440786bc391f5934ed87777df3a03aafd300de6f4eab73", + "regex": "(?i)^https?\\:\\/\\/bnmghzx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e0225d6aeef9c95c7b6ee824bd692a62ece09629256cfd1f1f3515842abe0ace", + "regex": "(?i)^https?\\:\\/\\/cxzc242c\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "52e136e3b93a8bdce887578da9f7e1b69f91f147ccebdc61126aaa2a8e5218c2", + "regex": "." + }, + { + "hash": "e6da1a7ffb41510419ad785142546d69871e0815858d9058c3ec1e5d3bcb9ead", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+docu\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "799d11adf575500b5844213fa7c8fd37697ec20e4914f3bb4c56549b38cd0116", + "regex": "." + }, + { + "hash": "f7930bee782eca1d780e893b3de0e0add946888c1514134e5439f851b4b65534", + "regex": "(?i)^https?\\:\\/\\/sohail81103\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9b1144436a4642d8155fcf3730251d5e62a0222e58429f4efa1be25c1707ef1d", + "regex": "(?i)^https?\\:\\/\\/dsfsdffafsdscfsds\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0ac403c6ba3c602e6dd402c8facd273cbc6befce8e57e3395d92da1f7a55598e", + "regex": "(?i)^https?\\:\\/\\/frhfdhshse\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8d1ca12ae7249a0eab78052bd184953d1eaebcfa32a04223677f1244e2367226", + "regex": "." + }, + { + "hash": "46ce7c7b3cd42086c3fcb6cb7291f5751b74bff96ebe61c923e61181b51b4b4e", + "regex": "." + }, + { + "hash": "f0698ddd3c37d77e02f2101c41f464f514a8235675fea295c0e8e64446a47b05", + "regex": "." + }, + { + "hash": "8778503be5f69d22671a557b61e75c86ac17a51a1417113ef7389d88b174cf5c", + "regex": "." + }, + { + "hash": "4018deaca9b37ece9a785119d7704b2452c82c90dfa95b51648ec93e47ecc786", + "regex": "." + }, + { + "hash": "5190fd07a6e68dba1cdb2a3d111934fdb32eed16f8b67bb5c60d1a4a35c555c5", + "regex": "." + }, + { + "hash": "48e57f47c2e86fda2669c7080e5c109f18a586d3a4c8458a2950df06bac4ed9a", + "regex": "(?i)^https?\\:\\/\\/jk7u785\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "730b4a6b40814c2a50f35367d9fbd9dc0e1d1aafd20ae9d7b1455d7f23eb79d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ipfs[\\/\\\\]+QmecSFtYpZdFViS8nBQuRWgzHNYpnYgx7wd4J2D9s8fneo" + }, + { + "hash": "aaab225e7e74b7122d3826ee9aca4f2f5cdab9de1acc344ee8f81294aa47f8ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+public[\\/\\\\]+webmail[\\/\\\\]+index\\.html" + }, + { + "hash": "ed7fd0c7b2c65a84d72a0fed6eaaf6e49cb265ed947ba9c64811901e43a71f1b", + "regex": "." + }, + { + "hash": "18de1f88676f9e3ccc91f9eed759aba398abcffde4ab40bbac244df843d9c83d", + "regex": "." + }, + { + "hash": "0920751a01f8d1de2bed45cba6af6fdb4efe6ed74e9a8d0b2dc8f4eed3d756d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+document_\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c8ca9f0deca85f17899bc924c005cd5b4e0cb140c4012eecc260f9900a941daf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+user\\-microsoftware\\.html" + }, + { + "hash": "b367c7a4f27aec1062425706982f3f1545b2fd5c18088b9f3e4911f0007bb7f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ipfs[\\/\\\\]+QmZMTtH4ecfB7GXo2ma2FGkRCpePuo3wr4DqBQwiMS5MU6" + }, + { + "hash": "6374f1b5c1f41049b3ba44c9cde4d7e9fc0d1d99f3e0df8c7e486d5396d828b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ipfs[\\/\\\\]+QmZMTtH4ecfB7GXo2ma2FGkRCpePuo3wr4DqBQwiMS5MU6" + }, + { + "hash": "326f5957c52ad29bd956960f51a6fdcb1d326d7b308a462359565c97488235cf", + "regex": "(?i)^https?\\:\\/\\/jk7u785\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+dd\\.html" + }, + { + "hash": "c605e6f635aa75f7ef10b048bf569e278d77277965b50802f216ea16ded8c494", + "regex": "(?i)^https?\\:\\/\\/la\\-bella\\-vitta\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f653e59fea626376c61620f4678b8d8483e58abab136dbf1a53bfe823afbfea", + "regex": "(?i)^https?\\:\\/\\/hackedsiteroblox\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "729b7d8f917b695b2282636656cc4360e6eb45dd7cb0ea8e39e7b3b7ec8142b6", + "regex": "(?i)^https?\\:\\/\\/hackedsiteroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86834595585396e2669ccbda75ed06dcfb36e2c27cc5375302c75967852b98a2", + "regex": "(?i)^https?\\:\\/\\/hackedsiteroblox\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52f573030e7df54808b99d94be79f63b4bcd0a0f793547e07bd522bc3e6f7f25", + "regex": "." + }, + { + "hash": "561e82ac0535af0bbf9bfa0c9c22315eedaff5779116599c0960ab3d143b6462", + "regex": "(?i)^https?\\:\\/\\/tokiuhy7\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b3a0248e726ffe628e23b92353411e0d80744296147ca4136496cdb4225dd15c", + "regex": "(?i)^https?\\:\\/\\/prakhargenuine321\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4a93891364c09366aef127a03b2f404e80cf478e9722c32f0c8e36043d2da157", + "regex": "." + }, + { + "hash": "64fdc60de33237e192faaae6a8c642f84b1e16001b618e69305ac37b98bc603d", + "regex": "." + }, + { + "hash": "4d2fff28757ca7dc5c3a9f6caa69ca532abb0cd8ab36037bb84ea9d8d5e21c72", + "regex": "." + }, + { + "hash": "d5443d3a413a468201b76156058756e844156feb6eca5a8329e4fae55c2de3f5", + "regex": "." + }, + { + "hash": "ed51ad5755930e57f107f1477b5fa8f40d110fa24794e5e39e9b01b1d5e1f681", + "regex": "(?i)^https?\\:\\/\\/pubbaldcircle100\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ec5502453920b6dce58340845c105bf1104d5405d946e457f4b3e45d8dc39e70", + "regex": "(?i)^https?\\:\\/\\/frequest\\-case\\-002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9fd8eec706724abd868c70ae4256ada8d66ae185f2ec10ae7af777d391a18de3", + "regex": "(?i)^https?\\:\\/\\/muhammad\\-umar125\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a54e8b2539edb56a638599ba68023331b18ab57970dae02cf3a36b7933c54441", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f4a1e02b5def76d3e753f3d4a7c1b700a40c081503e4ec4a19c322e123f61dae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-2(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ede6adefa31f5917ea301a61d24703ab3d54a3ae798334d1c59f37b4899a8f53", + "regex": "(?i)^https?\\:\\/\\/robloxshrektheforceawakens\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d71b9846be590f2411bab0d37a8f126ed4b7cce3cf023ab5337ee5fdd22076e", + "regex": "(?i)^https?\\:\\/\\/info239483\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "10dbce536006633cfe6f3a013db23db8bc1d1b6f38b70fc3ab2a4b315063198d", + "regex": "(?i)^https?\\:\\/\\/howtohackplayersaccountsonroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13c81fc2e902f7e4690f470369219a20ad461c0c570def250022742b5010a474", + "regex": "." + }, + { + "hash": "adecc1cbd15827d8462d6561156a743053e07ed892d407b2ddbd7537187ac704", + "regex": "." + }, + { + "hash": "2d3ca15cb3d83b71897954ae046d90ce6cf6ab6e4e7bdc24e6b603dab293a7ba", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fd7cbd5cd1a734840ac008b13518056fec8b6f8fab10375fe7721131aa9a8c4", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d34939f50a8d98ad60a01569b3d48eaee149b74e484f6a060eab4af2454e430b", + "regex": "(?i)^https?\\:\\/\\/omrana2004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1cce9299afd762108238cb3b8fa10bbe66d2fbd89653e7c1123b10ec53eb092a", + "regex": "(?i)^https?\\:\\/\\/att\\-ex2\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cb1664561bb9a8a503bbef276789c58e7ac189d349e3e0f881cefc6485cea9ca", + "regex": "(?i)^https?\\:\\/\\/site\\-5832047\\-524\\-626\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fa1ca9f54821ad17e7f9442db78a8a5cd8939220df4a33e80ac8ad30a6c21640", + "regex": "(?i)^https?\\:\\/\\/bebseoi\\-sadf0\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a9318e8f096fe57a3bf078db795c46a0c77d9f85c9f66f232e27f9436855c07", + "regex": "(?i)^https?\\:\\/\\/nelije8048\\.wixsite\\.com(?:\\:(?:80|443))?[\\/\\\\]+attm" + }, + { + "hash": "4a2ded2a44502412fe99d0c1f6c8284ee064a15a76045d03223f4c15ace03ce5", + "regex": "." + }, + { + "hash": "e32e8a316b87dd98c02eae7f82d740b1a5c2784f88c0dcdc7a41b53fe084529d", + "regex": "(?i)^https?\\:\\/\\/jdarch07\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "20dec9e4d1698e92636a908827d152864553a11c72c5166c8cab68da00848538", + "regex": "." + }, + { + "hash": "a7c6326a055e3f3333384ec514df8b5ff22d6d3375e82d918973981b711052d5", + "regex": "." + }, + { + "hash": "ce11b53954ff8766ef952b5256214200dd5534eaff82a12c58d5de2786995c07", + "regex": "(?i)^https?\\:\\/\\/akash1211222\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2ce22855c60b8eff249c0df93ae72424e9b017f94a43091ab9a5a307e4e9b98f", + "regex": "(?i)^https?\\:\\/\\/mayur007coder\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "350ea3fcce8fa85b19f85a84a336bc5551f3aa0154a1e8e18cae772a448c863d", + "regex": "(?i)^https?\\:\\/\\/robotshara478\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "20bb4c35da339af1cc38689a681e94693a275f75938a182d13bf9e2ae578cfa8", + "regex": "." + }, + { + "hash": "8832d484eb826a90ddebcaa37a774a7a7a052a04d1905a6854476ae5c52079e6", + "regex": "(?i)^https?\\:\\/\\/girlshow1304\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6d24020bfd3ddc2a2af08f566fcec6dc93cbe2a230c0d11705f51f7a24f9c52a", + "regex": "(?i)^https?\\:\\/\\/robloxtoycodesunused2019\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9cb84ea276746aa51ba1e93d58496128fb06fbc8b5f8d777c4615fe9947a29e2", + "regex": "." + }, + { + "hash": "f72feef96694cf839408e954b2fb285cb8f99e5823441e6390c237c347d8e5af", + "regex": "(?i)^https?\\:\\/\\/fghfdghfdgfd678678\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7bd11fca886d77cbf5f1c7d6e949921e2bcd8f1ea8245fd5f869de94b3a15bb9", + "regex": "(?i)^https?\\:\\/\\/girlshow1304\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2ab9d05e6b34aa04a876177d242228fc40043caf5e9389bf29da2fe4176581be", + "regex": "." + }, + { + "hash": "aedeba25a1ae3b2a3e51bb39dd6b07ebac1769f8dee1b7a098a5f8af043fd7b1", + "regex": "(?i)^https?\\:\\/\\/swapnil\\-cs775\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "54d7c07b64282a79dbc51bac9b7e7f1407f8d996a7540a2b996100f866afc67f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tesi\\.htm(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e3d738f567ffd8874b76c390adf26f306c6e8f4ceb041b33ddc467d76033e0f5", + "regex": "(?i)^https?\\:\\/\\/cxzc32\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c90e2d56371a8599bc7ba921fa85c53c7d25e35dcad66022cc2ea64165ef9853", + "regex": "(?i)^https?\\:\\/\\/ubaidraza612\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5845cff719d728ffe76fd29f15158670eefe6c7dd195f6292296e4fb9b5e108b", + "regex": "(?i)^https?\\:\\/\\/blackdragon690\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7c893d2ac8b28c8b3b8bce03ea847161acfdf6398ca944df02119d7cc15c3377", + "regex": "(?i)^https?\\:\\/\\/clickonvideos4\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "373a2abfafa615e26c92f965934f2dc7ae1207a4405453d32f904033a23a6311", + "regex": "(?i)^https?\\:\\/\\/clickonvideos4\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a6aa944a158b146f5d46c045da8b67d7b670ded9f9ea510de4a2ddbddbdb08cd", + "regex": "(?i)^https?\\:\\/\\/clickonvideos4\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "787bfc660e9c0bcf3b021230e051722661d2f4967ca4f43d26e1ca698f8ad071", + "regex": "(?i)^https?\\:\\/\\/clickonvideos4\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a82d271aa603b94b5f994b811629588ac49feade05f9b6a41c63560dba161277", + "regex": "(?i)^https?\\:\\/\\/clickonvideos4\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5537ad9ca2427482ce07bec370c4a3ad75c56b6a86fe09675cd24eeeb161656f", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d40b281d641e0e4c0b2457a7a6d1e73fc8eaf2fbf7ad9767d654644f5af22f6e", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e0a3c93adda8203db25507d1be67111aa903c1b8b0f7e1cd526d26d37eeb9bc7", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5259317c551e57d10daa22782ae21ea6b95e51901c6737beb5db17bab5e1aae1", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "117f96e568e85decdca74407a70bff05e012f835ffe176d5ec39753dc2d9eb21", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9c2ad92585dc46f197b6af259f0b4bb57d2de1e63128698b1227f966432a6473", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "53be2ebee80d1c021cd35361266ea998c53081be7b8f1063f674a4950791c0f2", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2f2709a5872ecee0e61f2b71f8334697de25d8243cfa2ea534e04c7c7789bcb7", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4f40e0852776093ee11e4176b5e8334c448cde9f70d139f9072ad997a3b8faf2", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e72bd909f34b5646c74243280db68415692815b435a323d53cb1ae3627ecb156", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bf576ec61aeeb020f1a178c7156524096b0ec742aade8bc515076cfaebe53c16", + "regex": "(?i)^https?\\:\\/\\/allvised\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fc730757b114f7a88d6c8745992c613aa2fee1899ed091453a3a03fc7b7d6cf5", + "regex": "(?i)^https?\\:\\/\\/2nesma\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "64634ee7150a4680cf0c889466f03aea8c3fbf763b2005cb8685029e2aeefe08", + "regex": "." + }, + { + "hash": "90811cba41a47851aea1fdcc8737e7e754beae18083bd3f6babfa71d69a832ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ind\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95c5ca842dd38b9fa346c107530c8c43cd8c2665a43d8fc317aac29474c78068", + "regex": "." + }, + { + "hash": "993ca1e39218417cd8568cacf72dc84e18d79a0db6a760034ceb44a91faf766a", + "regex": "(?i)^https?\\:\\/\\/dasd4a6r4ef324few64rewr1f\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a191fece1625b60bb14350de3af31d5d4da5adc244769eea44562f5565ac324a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "178a441ba08a848123d8bbaf8be0dd06b1a1a3897e31519edf70132deb58a97d", + "regex": "(?i)^https?\\:\\/\\/att\\-101428\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "35e2083a3e4fd819cc1ca515bf87aec66995fca1db6290ed4a82b1dfcbfc3a3a", + "regex": "." + }, + { + "hash": "2915a2b5e45d68eaa50daa96bba38fa32d0895b0887b71ecb7b5845b32bd575e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ch4\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cccf342bcbf55065897e01d2eaa26ade44aefa3a88244b35a39a4ebc80dd055c", + "regex": "(?i)^https?\\:\\/\\/videofullhd15\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3139f7a071394b44a2638975d9ff9021d217266c96c5ab5c7a20b53feb0b7bec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yin\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "47a82eb6ee0932407688bdfbc7ad2b5d8fb59ec07a41ebfa9c94ea858cac4682", + "regex": "." + }, + { + "hash": "21ed302fc1f5badcb168c15a9bd54351c295dd495c7bb980e13cfdfd61cd91dd", + "regex": "." + }, + { + "hash": "390bf7e393326cb0fe1b29bd52afb3d0bd7e9e5a865d502c3f75d292ac667c6e", + "regex": "(?i)^https?\\:\\/\\/sdgteyhgy6rhdrtfghdf\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4cdbf5a7a431b3d3d5335f3a678ee13e194c643b5302ca44a0c606d744ac744a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+eng\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bc558af1803bc5b2494757139d3415696e5ecdc6d5b078e2e4c19edd42b21c9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dT[\\/\\\\]+tf[\\/\\\\]+tf[\\/\\\\]+web[\\/\\\\]+login\\.php" + }, + { + "hash": "85f7c122694e960e734094d8ad4bae67c75d033d152225c957924357e78aefa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+apostle[\\/\\\\]+billy\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+lgh\\.html" + }, + { + "hash": "7809512a1bb8199b9e516137f93a2ab6c06338c6f01e5d0003efb4b8ea905010", + "regex": "(?i)^https?\\:\\/\\/ayush45anand\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ca5fdcc2e40621b59a01ffd57f8d9308dbc8b5db66b565946ca34a39b6ca351d", + "regex": "." + }, + { + "hash": "f89be31df361127ce52a742fc36d16cd218c68146b0fa2dbe5d39f5c9e04d141", + "regex": "(?i)^https?\\:\\/\\/videofullhd15\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "804c4851ace43c1a948b8028a21ec8175977f027d0ac98efa17625dab9c187e7", + "regex": "(?i)^https?\\:\\/\\/videofullhd15\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8730113319a50eeb38918e14de8e7de7a59f916d23fda4a79253a310a38d17b8", + "regex": "(?i)^https?\\:\\/\\/videofullhd15\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "38b003289300155f2ebc09ae320e741960a3e22815efb0f6667859f40fe90702", + "regex": "(?i)^https?\\:\\/\\/videofullhd15\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "faa0d3bb3cb4e84dc5acd74ab4efb460f686c47284e9e0735122a86a2060c7dc", + "regex": "(?i)^https?\\:\\/\\/videofullhd15\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f9ba90ec46c8f261afe8337f59de8ed0bb16370a13ade3768d1a4cb5203f963d", + "regex": "(?i)^https?\\:\\/\\/videofullhd15\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4aba56575238887fd9eb6bb9a734c6b87db09b4872dc52ec99bacc4d78301f39", + "regex": "(?i)^https?\\:\\/\\/videofullhd15\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "91fc9ed93d376c0e0bb56e9bd8dd11ca16ac6753914afc3476a6f852eb68a2ae", + "regex": "(?i)^https?\\:\\/\\/videohd1305\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6eb349e284ae4f09694addab8a3a0aed29638a0c85243b99915c5d54151f35bc", + "regex": "(?i)^https?\\:\\/\\/videohd1305\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3b5c0bd818b1778e1988316f4a720f0103f41212d08f3eb8f5e131239aafb4b8", + "regex": "(?i)^https?\\:\\/\\/videohd1305\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "34d42add407bc333f1d6779d082faa67e82a099da9bcca38ea0ce089201cdbfa", + "regex": "(?i)^https?\\:\\/\\/videohd1305\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "95ff92c306451e235ae2d8ee58f905237b3d41a3f1612854a9a853b5bec0fda1", + "regex": "(?i)^https?\\:\\/\\/videohd1305\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d58e82f8fc9ddb40e8a7c70f3007e4353bfff2a06cc274d3c852dbf1c9b9be9a", + "regex": "(?i)^https?\\:\\/\\/videohd1305\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b3ad19f45396fb446fcdfd68617e05c1a51c394794f24d55e758d92268aa8712", + "regex": "(?i)^https?\\:\\/\\/unusualactuallyaccountpages12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a8d0b2301b003bd4d5c813ac1c5d7da3b770add5743f6265f63abe1896a67cd8", + "regex": "(?i)^https?\\:\\/\\/sreemonth4\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+nb\\.html" + }, + { + "hash": "873010c293c7ec78b6126dd96db5a892b9abaff9d7d3a8c81dd93f7ce65b9a6d", + "regex": "(?i)^https?\\:\\/\\/rvbyuhf3reu209wdiujvdefddef\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "862f67f6ffa8ecc299c41f53f98aefacd737b4640f600e526320490f2c144188", + "regex": "." + }, + { + "hash": "7d4d99f568932becf8d296598c43a41599186923dc20917084a69ad0f55af0a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5ab26517973ec66b830e6ff0c3c485dda8adfa68defa62968c8cf04e8d59c0c0", + "regex": "(?i)^https?\\:\\/\\/shivanisongara27\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9a93ecbd89db5182dcde91d45156a8488012f15876c245a25b16b2e5cda4db24", + "regex": "." + }, + { + "hash": "67f424eda4e165580ed74534b0fb0ce102eb5dfba95d40e44aa6595e58d23d2e", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?i8ks\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "21a604ae6a8517e6700eb150bfe5a28ff8f918fee4ebba3b178ce1d03458493e", + "regex": "." + }, + { + "hash": "85f7c122694e960e734094d8ad4bae67c75d033d152225c957924357e78aefa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+apostle[\\/\\\\]+mhor\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5f08b9d8ab0301139b08ad0ad8c1fa57c8d9fd0bbed91eede0656313c27a1033", + "regex": "." + }, + { + "hash": "2a24543ed6c843fb854adfa30d2032deffc2dfb9584385e40520244910d1be9e", + "regex": "." + }, + { + "hash": "b4dbd7ef486a1848b2977a04b9dc19779f6b7527b5eadb579211d5b55c05b048", + "regex": "(?i)^https?\\:\\/\\/robuxiu60kclick\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "80a8da770d710b976725e234e2c4476ca415716f33103644a135065b57a103ab", + "regex": "(?i)^https?\\:\\/\\/sdgteyhgy6rhdrtfghdf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8c50af40aef8b773060b79e508936d547eac6530d9f8359c80650127893cf767", + "regex": "(?i)^https?\\:\\/\\/sdgteyhgy6rhdrtfghdf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c070771a96b7525000cab3b25c4a900b99898aba641b0c16e3f8df39fa0e32af", + "regex": "(?i)^https?\\:\\/\\/sdgteyhgy6rhdrtfghdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "354f41a894f504160f2b23cf834c4e3c668f33ed4500bde976b428959ba01bcf", + "regex": "(?i)^https?\\:\\/\\/www\\.crosgov\\.xyz(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9b0ad5edb95269acfee657a986eb2c0907f1090b8c9daf10c01217cb403d739", + "regex": "." + }, + { + "hash": "7a977262a26414b1145787da18f8dee25015211a5ec9719f9f4cdbfc07965db3", + "regex": "(?i)^https?\\:\\/\\/alikral12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a67b6775ecaa011e4a9d4e65dd23175fee13663238324b62b972e0ef01447810", + "regex": "(?i)^https?\\:\\/\\/dfghdfgjkdfgdfguidfguidfguiuidfdfui\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3d7ce1bffaa0110ba836a7f285c92aca3cb0f975bda46078e501f090a9d0a6b", + "regex": "(?i)^https?\\:\\/\\/dfghdfgjkdfgdfguidfguidfguiuidfdfui\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2cc4466a8fbe505afa2aa9c12f32dd5b8077f1f217348b08f2f1964e2d2105c", + "regex": "(?i)^https?\\:\\/\\/dfghdfgjkdfgdfguidfguidfguiuidfdfui\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35678e19dc0ad67d0856b27eaf39bd7ec0568a45c5b219931b7998a901206b9d", + "regex": "(?i)^https?\\:\\/\\/dfghdfgjkdfgdfguidfguidfguiuidfdfui\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dffe3f02882bd1754323520fbdbb7dba5d5584878f3524c7e28aae756fa6899d", + "regex": "(?i)^https?\\:\\/\\/cyberimmortal7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "048097be46ad9343de5114949aa28ddcf498d1a1b16f17c6b6197efd8e573e24", + "regex": "(?i)^https?\\:\\/\\/shashank09012003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1a243ac3a1cb9b934ffad5fe9471ff037a5fbd0db4d51174eec7e5b5c7bd7a71", + "regex": "." + }, + { + "hash": "acac4518e7b8373b2af0fd48133c0e3446d39bd606cf54b0262358e37ee5be44", + "regex": "." + }, + { + "hash": "47ce353d1151ddf98186cd26f2b4b136463daa22f17d87d39f661c3e4b921344", + "regex": "(?i)^https?\\:\\/\\/telstra\\-102556\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ec5bca515e9a0117ffcb925e205834b72f99d143700856141888d5612c66ad90", + "regex": "(?i)^https?\\:\\/\\/aledmc3\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "36960c6f38cf1eb44bd82d8896644bf01a2aebeb2c2fe5d9bf7af870e012c4e0", + "regex": "." + }, + { + "hash": "327e498a45ad443a140ca590e594df20693bac407c2d498670735e65e30069cc", + "regex": "(?i)^https?\\:\\/\\/robloxhileandroidoyunclub\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2f22b76079de124799872ea1800996b8721bc4fdf32f14ca040b486c28f1cb0", + "regex": "(?i)^https?\\:\\/\\/aseem2004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a9946f5fb28e5c21237fdc2f93bcf27facd3ceaf1ac56ca1d5f2be88ffd124a9", + "regex": "(?i)^https?\\:\\/\\/rokan108\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "64646988e018c037ddcd9ff34ff5463a1ba78be453a9978cbf740e0755fe866b", + "regex": "(?i)^https?\\:\\/\\/geethanjali2023\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "591da35d09a279eb644189ce62f8d85b1c11f9b76261c403ac38dc92f185cd8d", + "regex": "(?i)^https?\\:\\/\\/satvik123\\-creator\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "09bdd2391879daf98ab9e1539ddace939c2fc0ad248277ef5948e46323ff1a61", + "regex": "." + }, + { + "hash": "7d61e4b151b892696cf3d7271ff3341074e4a338d085c0563f5713791af45d71", + "regex": "." + }, + { + "hash": "0a3d085003a40e6869adbe985eeb114d18c97597b4c6b0863a98294a48eaa02e", + "regex": "." + }, + { + "hash": "a31faa7f95f7578f21514be327e26910a03775b5e1939323bb5c77e24e0ce2ab", + "regex": "." + }, + { + "hash": "2a2464681fdb1ba0d45600e55988e8667d3cd0da7e797e56e25eb5a48d9c2433", + "regex": "." + }, + { + "hash": "6168c67e462c365b98d4ec93dda98d067a851883147654b4c74cc5ac19910ca7", + "regex": "." + }, + { + "hash": "3c2ad45c15ea387eed7d54885984ae89fbf9d818a10c6b3dfc41c1146ba07c13", + "regex": "." + }, + { + "hash": "a05f357d1ff9603c343911a3c4c748afe5f16655aa3015ff954d58f46492e392", + "regex": "." + }, + { + "hash": "e629bac00c1104f066b96e54fda3957c67e343468b8a940e47b86b0a58f5f225", + "regex": "(?i)^https?\\:\\/\\/kasthurisivabalan15\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d3ca3165358dce3ddadab6cd8559c7a0673fed75d800f5fe14eb5ffad388dfcf", + "regex": "(?i)^https?\\:\\/\\/richardh4sh\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fe602edd90aefe79199932a2fad4af2a48d16bc57da5d275eb97f8f118b0be27", + "regex": "." + }, + { + "hash": "6d9ad4a3ffb1d2f5727f069aa1b5d0bb55d9f62ad2e99c1bce1de39ef7844407", + "regex": "(?i)^https?\\:\\/\\/yahoo\\-att\\-mail\\-102334\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "63d6db901f16df8f69fe73b4fc368feaf2507b99aafdfcdbe51bb05c202d7638", + "regex": "." + }, + { + "hash": "851cb6482dda01e5d7e4c882fda765215ca70197e6b545c81332e6fb0b112809", + "regex": "(?i)^https?\\:\\/\\/att808\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b649a7476002f0d18d6d0356e53a3c407fd54907f28634e04dc644f7c925c284", + "regex": "." + }, + { + "hash": "9be935fe213df4749118786295310b1c1257eaf33628088040ad05a0d5ff7a5c", + "regex": "." + }, + { + "hash": "914c43231f56815d5b242d8a9e73c474682932cbc96ec6850742cd468c1628a2", + "regex": "." + }, + { + "hash": "b9fac6ef785d280213927cc9835d00d0f776b60da4920ef7775ce225af6bab4e", + "regex": "." + }, + { + "hash": "4b58b9e8be1bdd4d5e41c1cdf8ebfe8a869bdcead16eec8823826e216e531849", + "regex": "." + }, + { + "hash": "70a9412dc56f7a88bf408b22e215691bf4621f05a56355823b33684d7ebf4e48", + "regex": "(?i)^https?\\:\\/\\/att\\-101107\\-103805\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "be812953293e2917b281be85f73dd3667d8368500f959a0f350d5fbc8cbd5a43", + "regex": "." + }, + { + "hash": "225682cb9e833e2c6970ae721d77489864dd77e9c0c52366b62e3dbea59d6865", + "regex": "." + }, + { + "hash": "6baf3bfee2a57c4b0f9faa2b17fd3febfb928717e5f0195872ced6a84b6e38c0", + "regex": "." + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?pub\\-[a-z0-9]+\\.r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+cc\\.htm" + }, + { + "hash": "bf5054c57a0dbec4e8310d489c8f3ca4a9ac5ac82aac7332fb451539353e9238", + "regex": "." + }, + { + "hash": "cfc8bfc798b458c78408b4c0f9df0c8a39b8bfbd26e46d6508403ffdb45c8b81", + "regex": "(?i)^https?\\:\\/\\/soumyarmishra92\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b58fada3fddeceabded73f13718cdb88e4c39c430e2bb20647e3aad7af3f095e", + "regex": "(?i)^https?\\:\\/\\/hazzaaman2023\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9e064ed3843f936a1e162099f241f01cd8a523b5a51d8255313e725d9d6e885b", + "regex": "(?i)^https?\\:\\/\\/paypul\\-login0\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f1688adf70d547defda115b651857614d518767f494a0c5995d4ba53d2888f01", + "regex": "." + }, + { + "hash": "710e702ebaef5a254a774fe3227f065e6f0c697bb0b5514d09ebc4d0a649b540", + "regex": "(?i)^https?\\:\\/\\/mnbmnbmn456465\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fab9256da3c1768d927f1b2f69ea36dd24c5232a402e09f970df8939a46eb1c5", + "regex": "." + }, + { + "hash": "b7ffa32fb61c872456bd09ed8c928cbc962ec14720653bf070863f0b0c6be05d", + "regex": "(?i)^https?\\:\\/\\/jogoslegaisdorobloxcomdinheirolimitad\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f6493173f94de867ec9320af68da20acac45886f3b04df598df33a97b98cbb5", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "377a413d8de9df73e3609862752b75cc3764f701dc6872c775a0cbb09e10fb51", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "08335aeb62b06677a51b7fdaf86a7846c4e013301d1b40c9e5c71970e6655b9c", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e491d3da913890a903ac37b6d47c6811a07cc1bc8d637f9401a61c49027268b8", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2fbdbff32cd707fc382d4d12debe97ee5e0efddfb7640f22be1b7b0845fbf75c", + "regex": "(?i)^https?\\:\\/\\/lljpijk7777\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ab8eda13c8d9662842b8a690ccf55e8b35473c88ff1a7de8e6518f7920510f88", + "regex": "." + }, + { + "hash": "a7e20d03f1b044b3b2f174b6e0f92099b46aee176e2392fdf8239c5d0d3543da", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0f93414653db51b96f52c075d4b008432b38c6f8ea5205ab3045ad56a4b5611", + "regex": "(?i)^https?\\:\\/\\/happi0nearth\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f82e1cb8e1a7bdc8d1bc8008ff7163d4552f9260d250b333ae10613b15bed98", + "regex": "." + }, + { + "hash": "eddca26501a6ef501fe036b38931a2dfb8b90befbf44fce2773d60703ea0e3b1", + "regex": "(?i)^https?\\:\\/\\/cxz34az\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d36e6f24355b8df68e5c57d4096094c57b10bc43a29d82ac40c5f03dfc5a27fb", + "regex": "(?i)^https?\\:\\/\\/cxz34az\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "40eb5b815d99169174b2037625311b6fc9fd47ce1bb0d01251c7661a1f581d34", + "regex": "." + }, + { + "hash": "4a1a0bac867266c1f3dfa8734a4c8da1e60969c848ce1d0740109faadcb3f48e", + "regex": "." + }, + { + "hash": "adaa95698d96a8c7d08a2b216d462db2782b1c1bdebfd0d0c179a09a2a0d1725", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019notcopyright\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee1eef80ce3dff74effca5a00f201294e0a77b31280a56a8fea41b453d86aaeb", + "regex": "(?i)^https?\\:\\/\\/coderobloxpromocodeswiki2019\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "028e6b4793a7c8e66c2921fa84a9ef99778c0f4be02e863ce8dc9a5045101e27", + "regex": "(?i)^https?\\:\\/\\/bokunorobloxcodes2019julywiki\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07c86b7828982b0543cb1507411fe1fc36fdb813b31bca5c27f1d685be441da3", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e7297f2f7ed98fb5d742ec72ca0682768d3b0a66861a10d987bb7f910027c9d", + "regex": "(?i)^https?\\:\\/\\/coderobloxminingsimulator2021enfranca\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c07a7613221f37af4ad1b45944e3a139c97eead0c7f42ed11e808bf49a45661a", + "regex": "(?i)^https?\\:\\/\\/robloxassassincodesforknives2019\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fce88a0eae325bce7b4445f25548bdf8ceba9641894f70e6be7af5785871eb90", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019happier\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8a9b6e79633d121cd29c224287c2e0ae91c8c5e7c04d7e539aa64800af11c7c", + "regex": "(?i)^https?\\:\\/\\/codesforjailbreakroblox2019july\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70aee9c079e03f213e392d80b213b974a244ec87fdc1ce17a69e04b6addf5856", + "regex": "(?i)^https?\\:\\/\\/hsdfbfssdf1245\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d8d66b626e1eb07b966ee9c50bc79d3deb7b9944e72d92e6437fc4dc5b0b9286", + "regex": "(?i)^https?\\:\\/\\/njdgfjdfgjdfjgjjki1555\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7dd732d2a32251f594d2b6e373ca0ca52634c94d4bcd6c209e24288663bb14ac", + "regex": "(?i)^https?\\:\\/\\/dnsfdhsbudshfui655\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "06ba5a3dc600e9d517b3b00298158195c0621a4a94168e45fad61a30ed014617", + "regex": "(?i)^https?\\:\\/\\/dfsijnijdsnfijds54514145\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a225cb1213a84bd459f3b22e0de1fe615f4bfd90e13badc84a1d738d02c9e83e", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfzsdzsf323\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9237b05f8ba7133437e9c715fd89ca93f3e46e45379e41dd530644f913eeb001", + "regex": "(?i)^https?\\:\\/\\/bhdfsfjdsnfjsdfds774744\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "71c64540e9835fca1b799bf3947ba22b2dab273673ea324395fc96bdf1540621", + "regex": "(?i)^https?\\:\\/\\/215574962546\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "268d409ba08aad904ed7a32db27a5c058f0f31ad48ea9d2ffe8ac04235e5ec74", + "regex": "." + }, + { + "hash": "49f3836b02ed371d9479b3837af1307f160ecb6f032a1b7e0f94222f948795b9", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxhacknosurveynopassword2021\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8819be72c44362c036fcca390c57379b3285e7c41d19abc6ff284229b829fae", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1f92df5e8def21b32e86cdf1313ab8e48dfd6f6268b502a01b70b5d557a1da14", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7329a128ecb9ed8b310d81f3ec8602084052cae9a11dfa9651c714acc20e94ef", + "regex": "(?i)^https?\\:\\/\\/dsbfhbdshfjuds454\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9d6623d63751b881df9e0a4faa0f90e5892559af755d812b54a8c2f550537cde", + "regex": "(?i)^https?\\:\\/\\/dsbfhbdshfjuds454\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "beab767a72e4ba598752ea6f928ace6c9d52cf79b68a73061e41dbb2439fce72", + "regex": "(?i)^https?\\:\\/\\/dsfiuisdhgfuh55455\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a761aeb387e0ee37627a67c1c6041bc60e4a6e5186e6dfe1086b6117466a4035", + "regex": "(?i)^https?\\:\\/\\/djnfgdfggfh595\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0a7ec7c73d7da790b46a93bc2570ec18210205a863e3b4436d1f8cd708dd9d81", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfdsdfs123\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b5c41a8df1fd11e0402835983c874f5fe473babdad8b53764dfe3734cc7fab79", + "regex": "(?i)^https?\\:\\/\\/bhsdfbsdhfdsf1245\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3c6bb5226ddfb663d3c40b8de0dff5e26a8d869098a552e20423a01c691b8420", + "regex": "(?i)^https?\\:\\/\\/kjsdfhbdshf48584\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b3802a45e36cd6a452dcdc719292bb1f0192a47c2ada125b7d4df6507cdf0133", + "regex": "(?i)^https?\\:\\/\\/dfsgfdgdfggdf58595\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "50138a57fc46cb5bfb23428d9cb98ebe767ae862ed16571b0449d4e204b1d9df", + "regex": "(?i)^https?\\:\\/\\/sdfsdfjusdfij4848\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8690aee70e1964ad7036e403f00ba594f7aa378a552eac70b99f4eb8b4ddce8f", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdfg125\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fbe14a3a922a31ac8f7d7d6f62b90259853e5e98896e08df6ae3eb2a78af2da1", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdfg125\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c7eebaf203ad7737ccf8b5c9f986ece8d849f95f1b0d5c8e7c03904131a95faf", + "regex": "(?i)^https?\\:\\/\\/dbhfghdfghdf4455\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "25ff3ff19e9d877148a68e1c59f6ae8b99e43ec50cd52d7084319f74c1c6ca4c", + "regex": "(?i)^https?\\:\\/\\/dfsijnijdsnfijds54514145\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "96e581c4132ddcf2f7cbcc67facd0fa9700f3ca1cadcb82fc49ae5786fbb99b4", + "regex": "(?i)^https?\\:\\/\\/sdhfhgdsufdyhs1555\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3d087f0f75d818d8f0cb904bb6c648076d625335999bc02984e206c55fa2eaef", + "regex": "(?i)^https?\\:\\/\\/sdhfhgdsufdyhs1555\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "24651a8063dec2eeb4a5db1cec9a65ca1102467f23cbf851b7ee1d90e2a17cdd", + "regex": "(?i)^https?\\:\\/\\/jdfgjfdgndfg1224\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c9893ce16780a18539c4e91c8f63523d1faf94b6cfb9de0c5c2f9f2e170c5629", + "regex": "(?i)^https?\\:\\/\\/jdfgjfdgndfg1224\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fab3b23643241117164e8a61ff7edc6d972d60e4f981a2739dac136c4c1ce979", + "regex": "(?i)^https?\\:\\/\\/uhdsufhdsdsf5558\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2c8bfdc35c46a083bf367da3b30d3b96a6aab3e0feb63f6647cc32cc697ea4f4", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdf9595\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7d6119490260f2929d3b140c22905c2d42d5fa9de5079253dda0c31e81107555", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfzsdzsf323\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c6fef82437dcfbe7dbebbb147b60c7a77addb2cda753419af93373e2657f423c", + "regex": "(?i)^https?\\:\\/\\/jdfghdfighuidf55\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "db799a2fd737e76befcd50b4a720c6bb6197d6d2a3fdeb99754318c58239defc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+express" + }, + { + "hash": "f3f0cb8c2468e08e8af1d4b0e15aa965c398bef492b0ce5162e46006f32ad052", + "regex": "(?i)^https?\\:\\/\\/bdfhjgbndfjhg555\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9675a94c942dd1a4f5cea75395cce9669e7e0219fb90fbf01b63cd287f7cb208", + "regex": "(?i)^https?\\:\\/\\/bdsfhisdhif5444xx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1973074e44050c8b15405e7624f8477388194c8585e1eef4ce597c4d06583360", + "regex": "(?i)^https?\\:\\/\\/jdlghjdfngji74777\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "136c3ece66c5806eae1c7a736f7de8ec0150d5808040dd7f95a5cfe0833265be", + "regex": "(?i)^https?\\:\\/\\/dngifdjughdfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fda995a04a8a06f80d20bf7107a65452e60d8890724ac1edee81e6c3e724be47", + "regex": "(?i)^https?\\:\\/\\/bhdsfdsbfhbdsf145\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7c35ba85f3ed6fdf06ba07c19a33287309c45079971abc22729adf40238ebd16", + "regex": "(?i)^https?\\:\\/\\/bhdsfdsbfhbdsf145\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6b132125e5ad48147a2569d9cfa5079a691986f543b1fcbcd2c09470ce687730", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fe0ee99a8753f8233ee9df4baa38931f864f2a26bc943004677576d7f40ce679", + "regex": "(?i)^https?\\:\\/\\/dsgefgraegsdegvesw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a4ceb5ad02c7a0f657e38b58d7be300fbb8658da8336e8d39afa425e1cf86fee", + "regex": "(?i)^https?\\:\\/\\/dsgefgraegsdegvesw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c9af59a5a4bb2aab17d9edd29b783e9fe1a0dd06d2be9398c887161e3749ae38", + "regex": "(?i)^https?\\:\\/\\/dsgefgraegsdegvesw\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e70e10bbe2e914a3ba96a90ab8f3e16ad1a7eb133e3cf3364371c5dd90be4390", + "regex": "(?i)^https?\\:\\/\\/521265662323212323\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f21cacd26825b411923dc8950d0263ecdbf028a5d3e8c3ae1cc953e7add20456", + "regex": "(?i)^https?\\:\\/\\/521265662323212323\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a969de40f52485ea12c1012e2e86787b03ee7161f82501d931dc54981f9491f9", + "regex": "(?i)^https?\\:\\/\\/215574962546\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "70054606c906a3f47ffa75a91968bb3bc4bdf0ffb73d9d403c5711e560ad4e20", + "regex": "." + }, + { + "hash": "067740107baa9aaa6d282db2cc4de7e3ae80e56ca94cd7756b5c65441f276262", + "regex": "." + }, + { + "hash": "5bb8448d63ad2f8ebe47e70017764ea8c8c7714f341b47876aa07e17bc80ca95", + "regex": "(?i)^https?\\:\\/\\/fgfgfgffgfgfgfg8878\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "446fa2532a4e1fd5e5b4889992ecbc545e3d426af5e98627796fbbfde7fa474b", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "46d90edd0535487fd92fa700990da203f679d11706d67e1f28ee4b17feba3767", + "regex": "(?i)^https?\\:\\/\\/geniusrobloxid\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b27b62c9a4214f3af094e21e96f36d31ece06e84aec6c7eea3b332cba0a7eb3", + "regex": "(?i)^https?\\:\\/\\/geniusrobloxid\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e8894a7d4ff1fee6a61cbb5d9425d89e92f6ff5af74d8e3779a5fd7b6d8a047", + "regex": "(?i)^https?\\:\\/\\/gretapotgieter66\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e21c1b1c58710b2a4035995735a4d37907d1a63b3ef674a13febd43e9729766c", + "regex": "(?i)^https?\\:\\/\\/gretapotgieter66\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ece1729f27bbdb8e005a0921d09af0f4cd7b62ab4315689a448da68febb33e70", + "regex": "(?i)^https?\\:\\/\\/gretapotgieter66\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7c3d1a34c150488fe054670a68df19a3a9be17029006da50833fa19398ca0e62", + "regex": "(?i)^https?\\:\\/\\/gretapotgieter66\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2637e630ac3ef290f09b745002620cd431c514fdbc806d099c11387dd1cd1f59", + "regex": "(?i)^https?\\:\\/\\/gretapotgieter66\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6f18f48eff437c89bb9f4ec397f8eccdbb4177efdeb893723829d5c0c0be6326", + "regex": "(?i)^https?\\:\\/\\/gretapotgieter66\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bd7a50e797899809560b3cc00ce2c04900deb30191ba7a9fe3b2074494c608cb", + "regex": "(?i)^https?\\:\\/\\/robloxcodigosparaterrobux2021\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f4e82d8127766178a48caa275055d3e3d8b53f20b78680ae7162b8afee8a986", + "regex": "(?i)^https?\\:\\/\\/dsad23zxczx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e6858592d20f834c4410ad2eabfaad152b91400d396ce44300ba078ce2cd5e33", + "regex": "(?i)^https?\\:\\/\\/daszx23342\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f4dda65dc029ca812c95af4a4cbd2599d8454c204a38fb221fd19e0215bd2d62", + "regex": "(?i)^https?\\:\\/\\/bfg5c32\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d24c731222ce148ec1b858c7053e733d9dea9144bf306a3555b14e1f80b0bbd2", + "regex": "(?i)^https?\\:\\/\\/vbcb3\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1e7b8fe0225591c3de627acfe25da2d9acb9eced8ef8010b1185c7afdce83b30", + "regex": "(?i)^https?\\:\\/\\/jogosde2tiporoblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "586b07c4fbd8a72390bffcebfa04a80b9538512d5cb665e36f2ba01a4ad03455", + "regex": "(?i)^https?\\:\\/\\/care\\-update0\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "65c0baa19651471cdce5fd7c746bedebced3a1c5353b38536c827fb3f0836e8b", + "regex": "(?i)^https?\\:\\/\\/robloxshirtshadingtemplate585x559\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa44c34e02ce51c0df9ac8b40b6c95c8b90b9cf8e8615f38dc592612c326402d", + "regex": "." + }, + { + "hash": "3af59c41d71c0cbae074bd5a2768536fd5af640710c70c0de2c3f43e9a0daa67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cy" + }, + { + "hash": "2832c81519c840321b57250a76b40d79b72a1589408268b1de09f5bea703e671", + "regex": "." + }, + { + "hash": "326f8e6659f85a1543cf74db1b3edf9bfb2c4e251dd5e752b4688058b75eda48", + "regex": "." + }, + { + "hash": "2561c8e3c48043bedb56cd9ae4c0b5eb00ecee7258f2b35d867fe4eeb4e8cdb5", + "regex": "(?i)^https?\\:\\/\\/girljanda\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "af5142e1c5c337fc2f44d7112ce011204d7105389e932f1787c5699e3fc283b5", + "regex": "(?i)^https?\\:\\/\\/howtohacklola709998roblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c21f762fc460ceb7a9957243e955ca9b436c4eaa3a9f170e0bba23cc753d06c2", + "regex": "(?i)^https?\\:\\/\\/vbcxvbr4\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "84d45222c98efe8f6896c792eacb96a6580dd41f14b70a44cf1790e7c405655b", + "regex": "." + }, + { + "hash": "dc3bf0f377acc0b9de76a77d5622a2b8da4850e558b8f6613199a2d37befff6b", + "regex": "." + }, + { + "hash": "919d45a2394f36bbd7c4660200a26a6690340c48fd84f2fc153cb749e83205b7", + "regex": "." + }, + { + "hash": "39cfdf2d74579e6c03faf5996bc15214ef1df4a5950b6888d17a1d78be63d032", + "regex": "(?i)^https?\\:\\/\\/dos\\-pagerecovery\\-adshelp\\-282\\-en\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b2f1c5a5233341ca6cfef703627bea2b7f515a0ac49ab6229718b5ebb37f941d", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3c8f0555856d07820e3abf715256d4f40ec2b8ec102b43fbb9650c7ed6d42e6a", + "regex": "." + }, + { + "hash": "4fbf9af7f4ad211f8f92f508a1a94dcc11c09c531d0aaef836f82764f1f50226", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019wikinotexpire1\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9352158251c0ec5ab014b5d3d8a8135c22d2aa15ee0350e1e62bb28e6f7fdd7e", + "regex": "(?i)^https?\\:\\/\\/d7s457w457\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c31696acc5b3d7e7547989f8ae1b63d83d16f926330bd1ce71e7576567a5850c", + "regex": "(?i)^https?\\:\\/\\/eye6uyeru\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "983640f623ba83c06e3d55fe3641c11250cf7d3626cb8728290ff66ee6eca01e", + "regex": "(?i)^https?\\:\\/\\/zafar2664\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a715a30494a6505c52b1d09b682a4e20996082ca8239cea140cd15998f3f8980", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chosting[\\/\\\\]+login\\.html" + }, + { + "hash": "5364127ab01c246d6c74d79a70a78daba5fc05833ba454fe4781661945c186ec", + "regex": "(?i)^https?\\:\\/\\/tdyhcyh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8fed6658f4dba5731e2a07cfe0bb3d382b2221ff9a191a40184d121bd1bf0f2d", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "be5fff956992697cd09e7d424e7d927b02bbb0ca08ca74053c9e6711df633b51", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1778bc91c1841419d890e3231657dabc3f1d9c6e848cd9b869d9edd3f76aa34b", + "regex": "." + }, + { + "hash": "066209abc5df25aa47c232158530f53a29b56fe13372fbb2bf9e4121e38cfdba", + "regex": "(?i)^https?\\:\\/\\/s9926030\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8b5461dd5337ac7e2f5d4f29e7b7615294ebd09d5ade8110b6616fbd0dae7c7e", + "regex": "(?i)^https?\\:\\/\\/chahieutaisaolaithe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2915fdbabe6114a0221edbd569725f862fbbe6acbe677e86a186907e1fae9c90", + "regex": "(?i)^https?\\:\\/\\/135467sdfv468sds4z\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d09956fde0488b751c686bdad5e9085d49d58939515c658e0f7eb1a3b35e6f08", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7c402021da4500a45c8ed03f26a065c454396c09a97a89c2c9e981a03bd46a1b", + "regex": "(?i)^https?\\:\\/\\/fdfgfdadfg955\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f9bcea5290929d9679dfa828502698238af0f60918e3d26f9895026fe4cf5f9a", + "regex": "(?i)^https?\\:\\/\\/dfgdfhiudhfsi461\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eaea1586a5c45ff365a5b15c67203c7215c1e5869f8d982c6ef0a4cc3eed6a22", + "regex": "(?i)^https?\\:\\/\\/oka\\-pagerecovery\\-adshelp\\-282\\-en\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9aae64c514a297c12c66c6d64d8504f287977b5284368b61fb6878c339ca18d2", + "regex": "(?i)^https?\\:\\/\\/fgffggfd1\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1a7df82162f01e959455bde4c658706b22daa99a61dfab7dc43cc1b616535397", + "regex": "(?i)^https?\\:\\/\\/ayyush08\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f62fdda3bc50b8c55365516b33087513169c22c104cb99d0b2d8457dc5009c19", + "regex": "(?i)^https?\\:\\/\\/soumodip002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "473e5c1095b420c80a7dffba8af6ba8b5554d56442216260e9e262a2c1f66813", + "regex": "(?i)^https?\\:\\/\\/dfdsfdsfds9f\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3be5df1a2ddc70d1cb1beced8f63321e1ed15ecff02602d86869a8b525824944", + "regex": "(?i)^https?\\:\\/\\/dfghndfkig562\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7b43136b21e059d0cf6cd138383de7d68264d2089a43601a60443fcc6ebf2169", + "regex": "(?i)^https?\\:\\/\\/dfgdfhjbvjudfg9595\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b7fb44a23b57732b3d0bd6ded1cb3ad561d08ce034fbbd1c31ae3c5cfd7aa9b9", + "regex": "(?i)^https?\\:\\/\\/fgdfgfhgud9855\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "04d5e24d07074cf7209102c4d7a124554d0d22bea0292c5d54d61feb9d508b41", + "regex": "(?i)^https?\\:\\/\\/dfghbdfdgfhfd545\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4d7c8db58dec57211623bbe552967aa61d453aeed707ca3e6c88ab128dd82fab", + "regex": "(?i)^https?\\:\\/\\/dfsdsfvudfsvd744\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6796e205dc95d45a9cca0df2b62220339a38aee2645e17ffecd2db9119e0c788", + "regex": "(?i)^https?\\:\\/\\/tgfhgfhgfhfghgfh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "87d54561ee84d508faaf8c6254a3f9f896699ebf7ee9e37b05648907fd364e1f", + "regex": "(?i)^https?\\:\\/\\/sfdsgfdfghiudhfg51514\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "aad89b7c61cc88cbf49aaaf7ed5a2e0e9c1db4249d4a6816382041edc75af4e7", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3302451e0ffc123993ce18609be4426ffe57eaded5e31946943849d6440d7dea", + "regex": "(?i)^https?\\:\\/\\/gfhgfabhdfbbnhd55\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ba4d51c187f73f8d582f4e4eba2b7cc3506f4007884ee4571539b8197d8ba03d", + "regex": "(?i)^https?\\:\\/\\/dfgdfomgkphfg58\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "627c1b452c884fd86a4819d07b1be76efb5a0f55ec5df56974762db214585a8f", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7129eaddd985224819a0ede27764eb06978f6fb5c05a1a587ad5a7a2ca1abca8", + "regex": "(?i)^https?\\:\\/\\/udgidfudfojuhdog78\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "efcead4c408e63731fd3177573ded1fd731208a176cd2032454d4c515f11af02", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdndfg161\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b242e40a3f8fa4346144202d238f89c1006589e7a36c48957a6802617432eb9b", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdndfg161\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4e205275b9dad3ffea5ff47ccad3fa3caf91881b8bb9eac7ab090039f021304c", + "regex": "(?i)^https?\\:\\/\\/dfgdfhbdfyhufd55\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7849aa54ed056d5e40a3d6efd5999562bcc0eb1a8390dfd3a39f224f63d16e5d", + "regex": "(?i)^https?\\:\\/\\/sdfdbkjdfgk4558\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4bebf8fc7faa020bcaa9deb2c03c37769eb7d99014b45edbd7c5887d97155063", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mnm\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a8e7c5717111269de7b5f50d1c9156c188d289f966af2d1a9069b0b600ede8e8", + "regex": "(?i)^https?\\:\\/\\/sdfsdfudyfgds565\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "16e539ed45ad187dba842807cfd54518645d1b57ebf831056e3c3080379021e4", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b427bcf6787e8f7c8d88f96c4d05900b9daf766e2c834746ebf793f35427c9cc", + "regex": "(?i)^https?\\:\\/\\/asdasdsdasdaasdasd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8f5f0beb34724b89a33662eb98214fbd755722d6cc3d7e820575f01c0b58afb2", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "67df01bc1fe340f821ecf008af107461b68e711be24ddfa9a7612f02e6f7fc8c", + "regex": "(?i)^https?\\:\\/\\/jamesya28\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "735ff95e9751fdc8013199c784c61764f301a8c21f2f74c746e97b953327b330", + "regex": "(?i)^https?\\:\\/\\/dgffdgfdtgft546546546\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "eaf79ecaa1536a06f6df2619d214750b1606ced081ea19bf45a346e7539fe425", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "714b0547f59433a8aaeb402e61fefe0fd9d324cba4d5c977d02f10bc820b396c", + "regex": "(?i)^https?\\:\\/\\/hjyjuuyuity\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "84b6645cf2514917da2f483703e2d81551af77f3658911f0ce269c3f422106c7", + "regex": "(?i)^https?\\:\\/\\/dsvgdvgsdgvsde\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2dae15ca219ef743469a3012c577e7a9712ec4288b6efbd21b0a62a4e7ce7891", + "regex": "(?i)^https?\\:\\/\\/feftfffhhe\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8fea1af21c4f5d7efa826ae2f04b52ed7febff4b8fd56d712ad08c25242a118f", + "regex": "(?i)^https?\\:\\/\\/fgffggfd1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "713617a39c426e1fe3647e433d8bdc551e987ed98d9fd1e4d382304aba52bab5", + "regex": "(?i)^https?\\:\\/\\/fgffggfd1\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9ac62f9ec37716fb1033b0a5788f16335e842436e0ba0360d041be0d0bff37a1", + "regex": "(?i)^https?\\:\\/\\/edtgfrewtrtrgfgyr5\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0b30fade97b333348783d828ca90a20998409cb152f3023fd883d16f76fff94e", + "regex": "(?i)^https?\\:\\/\\/56496518965\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1913cf33b9368739ad66594bf4f4fa75769424235a758aabe71038efaac7a853", + "regex": "(?i)^https?\\:\\/\\/2347891564\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6e97ef6de937b7740906861246a4cbdbe44aa109ae9298427243b94c5e0713da", + "regex": "(?i)^https?\\:\\/\\/123867981566\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4bcb6bf2d50123599f67a2f7ad606ad57695b8009e05892c734b48e80f71aedb", + "regex": "(?i)^https?\\:\\/\\/dhfjgbifdhgidf9565\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "61f100b6605f476c78b243516cd3a3ff0f12c23ba44bfe976d5300f2421f9c9f", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9e95e17d0d276e3ad7b08ed12e9851c1a37aa26a748bc2c1cdf0d3cdee21d700", + "regex": "(?i)^https?\\:\\/\\/31648619846\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a1bb3aded46d7976e841c1ce51fe3667ec0d5d344692bf4ddf865e986ca8c082", + "regex": "(?i)^https?\\:\\/\\/sdhbfhsdbfhsd555\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "827b7b4f5154029013b97e0030992d7b27f252db35a07374df5fc0a4517b2112", + "regex": "(?i)^https?\\:\\/\\/dsfbdsfbdshjfb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7e815a537f3e705789ed218fec8d9e2686c5adcacae03f00ddbc3afa4634acb5", + "regex": "." + }, + { + "hash": "82f01ce89f3fb9747ba9d144ca1d81566d574fd330674b8ebb950786f8ade054", + "regex": "(?i)^https?\\:\\/\\/sdfhjsbfhjbsdhjf565454\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "079c4b7e0cde57dd4f27f6d0c7a74962d247ed0e1a89817a66ba1430ad9ece2d", + "regex": "(?i)^https?\\:\\/\\/movie18\\-vip\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e70ebdff867da5e46cdc0894f324f862320fabf2ef050b823ad889c4fb25c8cd", + "regex": "." + }, + { + "hash": "401e471ce3c7a25f6119d2ec22f2664e3741a494ebc41e8fc8bc5e8a6879f426", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e1555833fb69dfd0aaf6221837ff74ea2fad424a9abdaf02f8d6593a737f181a", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "322f7a4b1b5f21349b92ce3e908ebaddc972a517bdb4c58c9ab7eccd1e6dbad5", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4df564759a3f380f2b7185f22b1bff54af2918338db5cc10a10914f9dbce11d6", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1e60ab264a7313e6d08f9b9a4694942fbaff52bc3b2e92d354d2761e659aafd4", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "05c5979ac85a599f5e4f2732bf9fd78c7aa9c833a5f07de0709fbf4905be084b", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e10818a1824f43335324e65d2a0874d7567d3c16302a9b311693a3c5bdcff383", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6541f7f3e85b59b43c313d1fa9c1ae0680678ddd4acb404daebc1df333b77941", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "24513306acae07b6daa266834c21e133a1da297a6949876a4960dc5b47fbec06", + "regex": "(?i)^https?\\:\\/\\/aaaaaaa4455\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e688a0fbbeb11aae46dde2a1db6882863089c22e465498e220202d652058f", + "regex": "(?i)^https?\\:\\/\\/aaaaaaa4455\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4a66027d38eb698f945401575918146acf70a219fee78f91e011f149d653c3c9", + "regex": "." + }, + { + "hash": "7fddba104e9c8c495241b9acebf5d3166be0f5a245897a44a809c17283735c07", + "regex": "." + }, + { + "hash": "3bb882936e18becf7a464c9fd6d6e814fdfe728384790d30f7f7147302a5af0a", + "regex": "(?i)^https?\\:\\/\\/hotphiliphhtiktok\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ac147e9614ab3d5f7559656a61e83fbd1f6df0b4dc251026bf90a284e6b85050", + "regex": "(?i)^https?\\:\\/\\/hotphiliphhtiktok\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "28216a164e45039a133ac9110253ee18220cfd98baa7f3772b9f82d72f87aab1", + "regex": "(?i)^https?\\:\\/\\/hotphiliphhtiktok\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3c52568acad8c0e7e3411b5ddc3353bd5fd4536dac0f63dbb534443e9541953b", + "regex": "(?i)^https?\\:\\/\\/hotphiliphhtiktok\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cc05bd96c78d7443934c2056d07f38b3180c3c75eca93377115c015ab8fede93", + "regex": "(?i)^https?\\:\\/\\/hotphiliphhtiktok\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2424cccf11eec3fe634ede351b3f7b90d629fd7720bdb055cf8bd7d3ab575012", + "regex": "(?i)^https?\\:\\/\\/hotphiliphhtiktok\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c0388232e0668221b2fe1be8057d3c582ea30069e231fbd431ff7724a924266c", + "regex": "(?i)^https?\\:\\/\\/hotphiliphhtiktok\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "792455b26d4652d397af0fc880b728bef7066be5ea09ba75c10b7ad0306cb998", + "regex": "(?i)^https?\\:\\/\\/hotphiliphhtiktok\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "967341a0f781e42e43561f3427c4366801ca73f90a347377c5a44f6ea55846ed", + "regex": "." + }, + { + "hash": "b1bf393369a85aaa81f4c006ad3c9d765bf38d97e7383af4b30ea726a3dc0ca3", + "regex": "(?i)^https?\\:\\/\\/rakibmondal2507\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d20fd7689a6b1afaed5b16a012a1a8ed56f74825b52e06aae091af0e2ecec67d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+REG\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "35b628d755f8c7a25538046efb81c32a8e56f901468a525d42e48a89bebd69a0", + "regex": "(?i)^https?\\:\\/\\/aaaaaaaaaaaaaas1\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8736dca7d9a00ef794aa6d8ba3e2ea40458640f1be8e499dcbb1ccfd61066365", + "regex": "(?i)^https?\\:\\/\\/lomtuiaredaktomxagafreza\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e3299016e4e8aba4abca13683fd9794232e33e86feb84bd00b0ed4979e512e8d", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "76ed30c1119816299f16e0bfadb875f139d43fb59b4583d1531c5e5d250fb683", + "regex": "(?i)^https?\\:\\/\\/aaaaaaaaaaaaaas1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2baa13ea08643313f54505bfc053cff4aa7cdbff2628bbaf493a13bca746a5b9", + "regex": "(?i)^https?\\:\\/\\/jgfijodgfijndf966\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2914113c8022d9553dec48058eea4b35cdf2357e8efa53e9e8c508275f3b4909", + "regex": "(?i)^https?\\:\\/\\/sfdshfuijofdfg9589856\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0d3fb88013cc9cacb2d17aa6930cbc3fc9348a475a132a052dd80e08e2c8348b", + "regex": "(?i)^https?\\:\\/\\/dsfbsigfhdkuidfghi7485\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "85eb6e4b85f417630176f7d6cf190a87f4fe7ad925abb6064f05a4ac8a547be6", + "regex": "(?i)^https?\\:\\/\\/dfgdfgbdfkignd55\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5534bf3941093fe8d94c5ab91fc5838d1876aa1656d5a70abf84b8e6ae5e1500", + "regex": "(?i)^https?\\:\\/\\/dsa343fitmemay\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ff66a63a1c03ba3b3ae88367e355ef11aae72fff5d52179d165b035ca16011e4", + "regex": "(?i)^https?\\:\\/\\/asefidhusfidsh556\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "925b25c55275f3deb0d77891da07a13a1c63d3e0d4c9fb152983357ada97a49c", + "regex": "(?i)^https?\\:\\/\\/dfbndishndfkih256625\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ca4b5814fecb789c335bd60489e6d4f1a5a7a67ffd07d97d1a8ea89332b88b97", + "regex": "(?i)^https?\\:\\/\\/dgfdfguhjifdg4848\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ba969dccd772ee813f1b60a6dc1b2104cda9d9f31feb7ebcf019dd88df49d9b3", + "regex": "(?i)^https?\\:\\/\\/dgfdfguhjifdg4848\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b28f68db4613cbafd32c7c68b65d5512e35ace7a1b95475b908d8f2917d7115e", + "regex": "(?i)^https?\\:\\/\\/sdfhsdfdsfihn7477\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0c270b92e005ace29771ac6b901b617fe679cbc138eda691bfcef6ccc586ba4d", + "regex": "(?i)^https?\\:\\/\\/sdfhsdfdsfihn7477\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d6bfb44642c8f020114919600e4905493dec164beb3057248983cd6de2c26c87", + "regex": "(?i)^https?\\:\\/\\/sdfhsdfdsfihn7477\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0b00c78ca3b9867a919b61c8c92633109241f5e5454b71669de71db58648464f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfghdsf55\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7173930f3d8afe2ca57a6c9be99ca93f5ee2578b5197c5ac0cc6b3d035a8d18d", + "regex": "(?i)^https?\\:\\/\\/sdfsdfghdsf55\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c2fb546cbf7857fcc5aff309342c76e1f9e9b1e03e55a6e23857ad58b3020277", + "regex": "(?i)^https?\\:\\/\\/sdfsdfghdsf55\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d47a71eab03980a8f7b05c14819f38f5d74fd34f35a5c93a76495e59293695d8", + "regex": "(?i)^https?\\:\\/\\/dsfndnsj5555fgdfd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "58986baa693e2a57136c93ef03c75b23bb429c5a07f0e6a7ba033178a3cd2d43", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6f67834077d038c683dcac3f3e3e7023501fbd3da985ff9fc067f3f0b451a3ec", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ab7dd25dd8c9439a0f10c1f642da8f03955c53ae2f01f4048c357396cd571ece", + "regex": "(?i)^https?\\:\\/\\/dsnfihdnsifds5958958\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2ebe6c40c32d8286097cc32909383c1519a022530e62afa9a86faf7be69917ad", + "regex": "(?i)^https?\\:\\/\\/dsnfihdnsifds5958958\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ba84e559625a8d5cb8939123ecab6914bd77172140bbf9168675369d9a2026a0", + "regex": "." + }, + { + "hash": "04415647c4813481199693aa79322d2bee8abda62c05bae9864921b520e3e6e2", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d8125a36b11e585284857668dc2ceea377c7cea64a826655f34429f1fde486c0", + "regex": "(?i)^https?\\:\\/\\/dsfbsigfhdkuidfghi7485\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9d938b9e4763340234a4e033ad631bb0fbde3b3d2564b500bdc0fa9524fe6cb8", + "regex": "(?i)^https?\\:\\/\\/fdgdfmjolgfmhjfg66\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ec277f66d9c2e73ca0814bf82dad4b97c1670e5934c7cc3faad9f6ff0bbe9b37", + "regex": "(?i)^https?\\:\\/\\/fdgdfmjolgfmhjfg66\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c2fb3ea9925c41fbe63424f7e1ffc50ab0bd58018b7d55ee4d09fbd5e92407a5", + "regex": "(?i)^https?\\:\\/\\/dfguidgfinjdgfu58854\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f945b7b05eb547939a2d59e3b45d6ba272c5201f2814ae31f534eaf6f4b1b9bc", + "regex": "." + }, + { + "hash": "13ef8e98997ce18987773873b62dd8816b4f13848b6379ac3a88294fb515f7f0", + "regex": "(?i)^https?\\:\\/\\/dfgdfgbdfkignd55\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "09d14c8e5191dcc5a1b2336050de9d48b4df2754262ad5059559b994b8838c49", + "regex": "(?i)^https?\\:\\/\\/dfsdfdsdsfdsf5858\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c4f2333a9c4ae386869c2825c2cc11e821eb603a237ccbf5dc04d33f45a6ac44", + "regex": "(?i)^https?\\:\\/\\/jshdf89s9difhsldjfn\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a33f37b637522b44158aa444dcf2bc284226ba05febdef23ab77db878275f8b6", + "regex": "(?i)^https?\\:\\/\\/khhjkhjkhj46547\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0957210ceb37ee49f9daa2e494949a2a6904d8add8c4f5e7f7740cbdd93ceb5b", + "regex": "(?i)^https?\\:\\/\\/jkljklkjljkl546578\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "091446e1c59546e58fc3cfbca943440b51db81df6821d8059af5a01b760680ae", + "regex": "(?i)^https?\\:\\/\\/dfgfdjdolgfji4664\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "41bd8b50db14af2eb7eeb80179de340ec8c4b9ea4854626a582b1e51c476373f", + "regex": "(?i)^https?\\:\\/\\/gdfgfd4858sgdfsg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "af122de4f98dbc9610c11332f3fc6c4aadf2ba4e8f790928ec1b26d1a7116e17", + "regex": "(?i)^https?\\:\\/\\/eroiwero555\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8e64fd12a0ddaecf4344c541a5aaa670f08a070dfd06d1dc6bd5f8aa01ca92fc", + "regex": "(?i)^https?\\:\\/\\/eroiwero555\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "84533f997161951f7732d2a1428102c4580ceb4b8a6a7f5198ecf073dad2438e", + "regex": "(?i)^https?\\:\\/\\/eroiwero555\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f1b8560d3afea4b1988d7ff795bcd1c47f1269bb8b64b77248d181a4b79a42c6", + "regex": "." + }, + { + "hash": "7cb9ca58fbe9eaccd01e109c5db5eed2f328f29232c4963edb5c6721fc38b32b", + "regex": "." + }, + { + "hash": "26e52611eb4cb871f83f53e6947c4ede893ef3e4f4204ce3992a950e163aa172", + "regex": "(?i)^https?\\:\\/\\/sdfdsfubdsfbndsf995\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b669c1f572f8b967024adb947a793ce18d74e79bc2347cbccfefa1949fa3c477", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfghgfhgf875278\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ffbd08cc692a4f2693d3011d146b97af5a1c20e1f6400b8b6bfc13bc055c6363", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfghgfhgf875278\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "11811a70ba59b78bc80e69ee40c27fad98ab6e41ad7b06a43ba6499f35eead44", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfghgfhgf875278\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8e397086e4f5934049aa87e64fa0af21a515fe685c28e77d757b853e1b514dc8", + "regex": "(?i)^https?\\:\\/\\/wassi1nix\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8b8bd8fe333fcb2fef550b17691a19ca2db6459b533be718b6d8f40df62bc081", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "943c014ee851fd2daab55866e214d91b34c257257300d4c2c9d62ab886f73775", + "regex": "(?i)^https?\\:\\/\\/tuxlaormthuoqwrbxasu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a7e88bc887ea19d6c221a96ff7eca73b631a449fc925f641430577d7e065d6ad", + "regex": "(?i)^https?\\:\\/\\/dsfdhfuisdf955fgd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fd39930bfad2196779780345ffc9e915f8d46de6397a32b080fc67f64f180fd6", + "regex": "(?i)^https?\\:\\/\\/dfsgfhbjdfbvj5956\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a8b5fdf6f934a49be89f90b8ffec1a123b2249f4d4882b4f78bda856c495c94b", + "regex": "(?i)^https?\\:\\/\\/dfsdsfdsfdsf99696\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3d45bed1370bc70133bb926fea3e0881aedff6a0a3c1ef8901de7c8e03df2229", + "regex": "(?i)^https?\\:\\/\\/dfsdsfdsfdsf99696\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "df68d883a2f72a104affdc7387713ae13fa74501050ac4901a97c72596f1e51c", + "regex": "(?i)^https?\\:\\/\\/tunomnzhakodarectunza\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e800b3296d8c4fa08bd07ee12708a56c9ff15d0df93379a0f557833ff6574190", + "regex": "(?i)^https?\\:\\/\\/tunomnzhakodarectunza\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "febff5c4cc1142197399f959491794bf5655118505c927eb668b906dddc02481", + "regex": "(?i)^https?\\:\\/\\/kolitreyunzoamtion\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7a130e748d9c6c084008c1a0b90ab187cf38e16aee0fd16aad29ec2aa2c1e7d8", + "regex": "(?i)^https?\\:\\/\\/kolitreyunzoamtion\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3a00482bee9e8ae3d1af02004842ea160a3f4a99d938b9b91295bc460c4f7a89", + "regex": "(?i)^https?\\:\\/\\/kolitreyunzoamtion\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b469dbb89c608c9493708bc67f059552555c6c78f983a79abb1362d3583c0e32", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "20e1535f54e6af47292f8936c088d0e29666220574c7fae8236d5f532acd70c9", + "regex": "(?i)^https?\\:\\/\\/tkxoma\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "431e87dce99f24de40a61113bf6b7e085efa9c4db9e1e4cf18cecad8234133be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+17[\\/\\\\]+items[\\/\\\\]+to_20240227" + }, + { + "hash": "650f04dcb2832c99fd921beabf364908369b540b40fe45fb430c160526b4045b", + "regex": "." + }, + { + "hash": "ae013f3f49c15e3eb5ab37148e757f900bd731bc495f13aa9c178314dfeccfea", + "regex": "(?i)^https?\\:\\/\\/romutikozamtynlaohtra\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a5b2c9760338c15d7e27ae543e48b9a50a506d2ba0f2c03c50c7032d92b0b5b2", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "066f969301187b4e57b2c73f42d764ac3fb79da0d44ef66f9d4b7e3bc1624de8", + "regex": "(?i)^https?\\:\\/\\/huntomzkaloqwertfavre\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2dfd1cec317fb2453ac4b5be5a223bfc208e6b348e9c65493a9c8913cf4b6615", + "regex": "(?i)^https?\\:\\/\\/huntomzkaloqwertfavre\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "95fcc2b7de24b3e11e87e6022815a6aae62eec4d46a740f0054f346954ccf9a6", + "regex": "(?i)^https?\\:\\/\\/huntomzkaloqwertfavre\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f680cc87b2fd7fe21be90bf85ed01419379c3b2a961db7cff7ebc2ce7fc57070", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5e4ad2b7a5ed376eb595ceedf43269d52258cb562f1b83936f1916cd56b6bdc1", + "regex": "(?i)^https?\\:\\/\\/trolumityonudasecrexolame\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "96a4623de5f7605eb83544a9cc0da039f03eb3916f44336df5df8e6315d53831", + "regex": "(?i)^https?\\:\\/\\/tunxmaolthuvoaserctyu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8f754154506aa87db12f637bda7445030a9f3a2e0d31a8b9f4922917be04a4a0", + "regex": "(?i)^https?\\:\\/\\/kieulagkiuelaolvtionza\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "799d9d0e172209fb788409e9e7df8c1f12c7d9b66a36c445348af17c558920d5", + "regex": "(?i)^https?\\:\\/\\/komtnxhaokedreybzail\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "73421dfd39721e0f46d3753d3c81dc1fa8ffa9516723b3596f1611d97297c8ee", + "regex": "(?i)^https?\\:\\/\\/muokayrnavdtaremkzhua\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3376d553e09931b40c13268e920d012a29ccfae319315d41c702f40ccfb65ab1", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7c40e208dadd303bad45f2ab22fced308bd9193b253d4e64e22a859aac19e807", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "182216475a6789b07655215801d04836578d3295c5b2f094d77deca6371bdef7", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8818cac7fdc2dfde666932fc17b681a3b13637ec7ebadca471032055b799eb1f", + "regex": "." + }, + { + "hash": "833117cc62ff1079d4cf119c7a9fd2428396d135df49367fad99a5d08c8749ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gov\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0c63f30e4bbf75e43e36b962f77ab11d174577392f3e62cd4b9c856464feda93", + "regex": "(?i)^https?\\:\\/\\/shivpradhan2904\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "184c81964d682c652e267ade5b9272c7f4dda168e78cda9196707a7e8fd918b0", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailand445\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "948a6cf29e145d713f48c9c540b89c2a603274101ce8887aeea5fcd118edd8b1", + "regex": "(?i)^https?\\:\\/\\/kontumzaohtbdadacroza\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a8c6c1c170edc3d6ae809d4208d2ea7651cd64ad5e59ae7d557922e1458f552b", + "regex": "(?i)^https?\\:\\/\\/beasthg0\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "cf75e7004beb851d6b1a0688f8493d8c8154128f2d3ad0281eb165aed255cfc4", + "regex": "(?i)^https?\\:\\/\\/gdbfshbdsfuih9585\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5c4297024cb6c1890621f07374da21ffc35065e1fa414aaa141dbf8f713b9abb", + "regex": "(?i)^https?\\:\\/\\/gdbfshbdsfuih9585\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5c317a126e089d8ee4e78e1d6de9388dde5f06545446b24e2b1ece6013e0eb87", + "regex": "." + }, + { + "hash": "31d4bf1dc46398e96de2c7a2fac0dd0302a0abae46a23ea11e12177ab3b00e53", + "regex": "." + }, + { + "hash": "6f5a77914040db920f1f7cc7b3a18efad3dd0452637ab0a95539f8e1e6fdb4bf", + "regex": "(?i)^https?\\:\\/\\/achyutthapa7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "aee08303eb2e0b2c4a854bb762fbc43079128c83b41f648e7cc86b6710a3f452", + "regex": "(?i)^https?\\:\\/\\/authy000\\-ssomail2q2\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b1b5743eb4ac00b78d749b3eb38ea14e076eff91c809e1b8495b8995d745690", + "regex": "(?i)^https?\\:\\/\\/mail\\-alert\\-109629\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f8e4fce387918a873a03a4ae11692c98aee73f7cb47e8af4dd1c8d374a77b9b7", + "regex": "(?i)^https?\\:\\/\\/hukolmnbcyasejastuajvasodlada\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5b8a6b0c3306ead9450c09be1ed025b558745bfbf0176c828276bb1d0980fcc9", + "regex": "(?i)^https?\\:\\/\\/hukolmnbcyasejastuajvasodlada\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f07f4be58f217a0f6bf1a2ab89272bf90cc0cd4129d757a638147d996d48bb62", + "regex": "." + }, + { + "hash": "2df4c3ec99fcccf6b523e15da506c991a9b8a5d624d75c481a8db95284058e90", + "regex": "(?i)^https?\\:\\/\\/vishnushree7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "74e3c12fbaea87ea6d4f2c43ee6bffd9ee5175234d7bf7c10733e366f8982a21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uploads[\\/\\\\]+b[\\/\\\\]+90bce7164e7d3d1f4c607537bdb34f890867fb44d1a66d3f0ebdb7b89ff6d32a[\\/\\\\]+ATT\\-Logo_1704302747\\.png" + }, + { + "hash": "bf573a2900a794494f81c2bba3ef7e22c4be2034da84019fd5448481ed0908c5", + "regex": "(?i)^https?\\:\\/\\/ansovu131\\.blob\\.core\\.windows\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "8459ccee4f684786eefe8647201f1631c6c39adaf4a0174bd0b10dc69f15fd51", + "regex": "." + }, + { + "hash": "b80f46954b09ae79be47fd04428098f2e69a36f67d65944f591a34b4e46d2e05", + "regex": "." + }, + { + "hash": "23263821c39968d78f808f380c445308203b475a6ff8a22265edf93c21ea81bb", + "regex": "(?i)^https?\\:\\/\\/rajendraajay11\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e9cc074c120251e107f609e242b75d32c70072a80b8cf8832dcd916c1f6286a0", + "regex": "." + }, + { + "hash": "6c52a79baeb1bf103686b30d4c3d65284d5ac44daba616810cb7f3b72db6e624", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+n[\\/\\\\]+axpzp46rxrr0[\\/\\\\]+b[\\/\\\\]+Voicem98875764736vm756773762844mail94784733543567em947563859930mic7746736374473\\-20210528\\-0036[\\/\\\\]+o" + }, + { + "hash": "d07f872f1d9ef58dd9c4ffdfaf3bb5d06486ae3ea0f7f3776e700786580b2e00", + "regex": "." + }, + { + "hash": "a4cbeffe7962459e6a77ddd9dc9dcd9fbfbde0011f3de243f8da2cc10d870a34", + "regex": "(?i)^https?\\:\\/\\/ramanverma02\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fe6e24abb91693e10a412287a687a67cae6c1ef902768f6bd4958427fb86783b", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "328813ce55929bc3f7e8b538e16a1260937ad170212345108a6868a70fb9cd13", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "be3887b31716ac7f60f8a6e7eafba071fcdc7b5e064d29eb0b894f9c1afac910", + "regex": "(?i)^https?\\:\\/\\/jksuhdfkjsdk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3360385bdd3ac569448d80684b21de436dfc320746d9d681c590276463cda691", + "regex": "(?i)^https?\\:\\/\\/jkrlgksldfsk\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9bee7aed59dd25fb9ce0c1ba2bdb291132c616e0a61a4a84e6c6c051adde12f9", + "regex": "(?i)^https?\\:\\/\\/jkrlgksldfsk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9feae465bc2cc22f49d542a98fef99a7e75d455f53e00e670c96d41aa5ab501f", + "regex": "(?i)^https?\\:\\/\\/jkrlgksldfsk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "457883ddc4c6dbf3939f5e746da21012b0c69178d5e6566009e7192a7a02592a", + "regex": "(?i)^https?\\:\\/\\/jkrlgksldfsk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6f5a9745938b5097a9e0e678b1f2e07e7134d7244f497c6439aaac690d02e9d0", + "regex": "(?i)^https?\\:\\/\\/jkrlgksldfsk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f5127bfc3baf9dd76c998bae24075126583d7da1b09d83e4efc2748fd5ea0f68", + "regex": "(?i)^https?\\:\\/\\/wirelessvoicebtpaidmailinfoplay047\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a1a9b61c863383e62dc0617e7100e9e8e51ff1b9344d3d69995385a96d5575cf", + "regex": "(?i)^https?\\:\\/\\/aug8btcomms\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "96b1d1fbc27db7cd1eaa167a28806fcb2c9a9b05c1cee37495f3680bda95e33e", + "regex": "." + }, + { + "hash": "6c238c2523315d943eaee2b7113577bf3cc053c3de0e0ccb62a5b891c7b401da", + "regex": "." + }, + { + "hash": "e6919476cbc28f69300027da4bd891bd19567e77cc3cc10a1f174e603568efe4", + "regex": "." + }, + { + "hash": "01c53a659f2b4bfa1e6ff74415fd2f0581e1b3da75a6d2001f1e4b557a5fb423", + "regex": "." + }, + { + "hash": "3d0e602e7f6e5a06467f8087c4bbaee1ce6f03733291dee9ce2f70aabf9df883", + "regex": "." + }, + { + "hash": "f7f024c2e252b89e1c220286f11006ca2e178dc580deddb35d90a7476469f52d", + "regex": "." + }, + { + "hash": "8b7c3b511293c956f97d883e906a5d26f278ad894a21f5846d63864b4fae89df", + "regex": "(?i)^https?\\:\\/\\/wirelessvoicemailinfoplay01447\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "463be3ed067b33f0f71a8398524039224b231595fecb92c50aac0ecb7be31ef0", + "regex": "." + }, + { + "hash": "6deb1e5f9464234fbfb460f26e3b1b73cc4df342f6014954c89a6b1bcab99bfb", + "regex": "." + }, + { + "hash": "7150c849345f6413666923360f78753e60c20795b5da8194bef3d6fc20b86a6c", + "regex": "(?i)^https?\\:\\/\\/gan\\-pagerecovery\\-adsinfo\\-956\\-en\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f2d83bd1f3b1d1cc5fb697c170cfbbfd39ac68a7bc00a09eec77c1fb81ed1def", + "regex": "." + }, + { + "hash": "5e55dd30373e052e55d72e6b031d46448b1e9fb84b4345b11752aa939129a6f0", + "regex": "(?i)^https?\\:\\/\\/myblog\\-og95rf8a1k\\.live\\-website\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "07720e8def7982e7e138eaaa7da5a7c1232cd720f06fe4f57864bdabe36fd243", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "85359d711f2ef102604ed99128398ba2bcd1510f20051dc7017aaed75fe45e7b", + "regex": "." + }, + { + "hash": "2b1a3f86a02f4c3e8ebe5c08f9015237734ae65a70c8b5554c64c2270733c68a", + "regex": "(?i)^https?\\:\\/\\/gkkgkgksk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "51c67f0d7558be95d38a175954e2825ebe6ab13bff471ae94a831eee81e2194f", + "regex": "." + }, + { + "hash": "cec153733376ac9deb4b511156a4427f74c25c5200a2e399ed361bd25a7d3aa3", + "regex": "(?i)^https?\\:\\/\\/mtfdyfiukgki\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "75563f53298312fb692a646ed1ed1b69fbfcad4bd873975cde63537b7ec417da", + "regex": "(?i)^https?\\:\\/\\/mtfdyfiukgki\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cb19555c309e657383d400680e153f25e347fcd1ba0ae0a66983025599d67cea", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "00f92c14afc982752ffdf13700c9ac6466ef560c80a8cc6563754a8cc86329d2", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "08a0c23fa14805e0050e595e8e70ada5b3c57efa1afcd140ac38a0935c8833ac", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f965f461513b945d1c368c4cfa5f299b4e25d5c6e0e33655891fa6df5f3bd61e", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "88ef45905c3b22a10fcff70cb65b7af625041a06c6f936029ff94cfcfa967c90", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7c52a016b122c1053a8a7a3a0c52845cc4255e452b1a4e4240157d72989d4711", + "regex": "." + }, + { + "hash": "521148584021601af4ae0a26869d9edd8b571df53fe3a61f45816c33bb49181e", + "regex": "(?i)^https?\\:\\/\\/att\\-103141\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "84dc5e5b992c674de9242b64ee881545969810a2f3c17796866aa26f87123c20", + "regex": "(?i)^https?\\:\\/\\/att\\-109076\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d8e175a02988535c5c8a3e58a96c7d4a28151c4d21163c96e7b2841941346c72", + "regex": "(?i)^https?\\:\\/\\/att\\-107534\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "98cdb53301c5bea65a8ed38a7a5600848e0dffde0ab37da0968f1e8dbd9ac491", + "regex": "(?i)^https?\\:\\/\\/sbcglobal\\-109097\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9fd80c93756ced85b2434189e4e81fe515dbd237b40d436b20965bb55a3086c2", + "regex": "(?i)^https?\\:\\/\\/att\\-yahoo\\-mail\\-105061\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d1a4b346dd1de01b6ec7e72d7482587a3b115f6a1d3882b544553610526a14e3", + "regex": "(?i)^https?\\:\\/\\/att\\-108495\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4ab6c1b711af0dda689e5cff1a651b527431022d0824db6006ab310085eafe66", + "regex": "." + }, + { + "hash": "cb9aa4248bb60d3d7a75480143aac8d32eb5f713e82782882c37ba96b78a3621", + "regex": "(?i)^https?\\:\\/\\/telstra\\-100001\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f776c30853e9790d759a979627488ec48fba78e8ef915457fc00c93c4067351d", + "regex": "." + }, + { + "hash": "86178daff6e2538fb07ee98772743dbd5747e5a0f3b8b458d85f581b1ff078e9", + "regex": "(?i)^https?\\:\\/\\/harshitnegi841\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6920f37018dc04a8fc9a78a0f98671603c8e07528801231b2ac304b677b1eacf", + "regex": "." + }, + { + "hash": "84e1dbe95e7ad8f0c86cc0002a086b1b219a5922867014662803a33c699ce71c", + "regex": "." + }, + { + "hash": "e660366acb7a274a9987b4da2037dab1a8d6d8ed2e20d1701ecb5a2dba5b82cd", + "regex": "(?i)^https?\\:\\/\\/luckyever982\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bef4b16e42c6d6307f42cb8ad2af8a432045125c9d6203d70e8ddfd1e5224ce4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+adl(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "33943c93adcc10f0f04a77fe4d5e6b2352b8880176a2cb78a776788f73e412fe", + "regex": "." + }, + { + "hash": "dc3bab36715cbdacac71615cebaa8bcfcb85e41b2e7c2e79eb8e5a9a28cb2eba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+earthlink\\.html" + }, + { + "hash": "adebdbf97ab3bba340e424bf1880fe67ece833d6d8c3f750c5f32833cc61318f", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesforroblox2019december\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "da137ac5a0a483550468e4448b269692896151d15daccd693d72269bdd9198ab", + "regex": "(?i)^https?\\:\\/\\/jfghvkgkghjl\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "796385ca1f814fbe523a3f9e70d2127f87ff55490ad487b083e3f59037e4c786", + "regex": "(?i)^https?\\:\\/\\/ganeshpawase95\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5798e3524e6fa3b1a88ab239df10ef5fea56eeec08b157469ccf200ef5b56b9e", + "regex": "." + }, + { + "hash": "e493a5fc055ede5ef9d1a5440d10426dd2ac564a7f193d5506cf6903c91c46db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+adl(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4d80ae152af282fa4726f39d3ce276ef2cc700236bddc0c2f4085632b585ed1f", + "regex": "." + }, + { + "hash": "b0706f623df45cc92655640b8a1348d7bcebde6d2feb5300401b5f6f8152af77", + "regex": "(?i)^https?\\:\\/\\/pub\\-51146b4f49d14a64a7ad94dde3b32478\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b34cdb9fba37c958f37cd2aa69459e35917648415c47d7dbe3baeb1b6a2153af", + "regex": "(?i)^https?\\:\\/\\/pub\\-9d425aa9335c4307a502c0721d499bdd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e79964a14c5790c3afdbc8c3fd4643c88baf5c2409ee84ad07303b0bfa818d9d", + "regex": "(?i)^https?\\:\\/\\/pub\\-9e11a359d213455e8ad57f733583373b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "69a2072ae6c4d860ae3d7e04e1056fc230078c5d5946d2d2bc1a0da9ca4c2cd5", + "regex": "(?i)^https?\\:\\/\\/pub\\-1d6ebb65113346658cf0b7099c9ff699\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "778165a8dafc29d4fc573183fb92a62b86ef3bed9887491e35923feae1f848d1", + "regex": "(?i)^https?\\:\\/\\/pub\\-8db8b86988b74f6bb531723830a2b2be\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3c088d745583a48662aa0bec0691fedb8279c304c80c60bdfa07121200909e2e", + "regex": "(?i)^https?\\:\\/\\/pub\\-0380c9c7274c411cbcf31264d3dc73a9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d93335329f3c7dba1a83145ea88f87a683e89b38790406c7a4746e79a2dd2965", + "regex": "(?i)^https?\\:\\/\\/pub\\-dc658de53c8e4f62a70c76da0e9f2f39\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "114d6254b425d351e75c206413b6e9bcf09c8c2362f2c46fae7111f6f973a5a1", + "regex": "(?i)^https?\\:\\/\\/pub\\-7afa845768fe43dc96640dfb339b567f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ca0ba1141a212656d1a5c7ca4a8a947a1520f7d297b7c83c027c5ad944d6e25c", + "regex": "(?i)^https?\\:\\/\\/pub\\-5a71043eddef4e8da7a1f04c38c8efbc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6e810fd458392ac4153713893911067e379016e4c35aabcff3abcfd989de821f", + "regex": "(?i)^https?\\:\\/\\/pub\\-e8a165a3d2f44ed6ae1ee20b35cede42\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "aa52482fdf211f4c84ef1a22e28d23764958272db6cfd9b5e31958ce09ab34cb", + "regex": "(?i)^https?\\:\\/\\/pub\\-9498f25db4ed451f8fe2513b3e94c20c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7f431586b21b2a973568d3f761fbbd8c3e374ddcf1f4740cb0b3e3788be82415", + "regex": "(?i)^https?\\:\\/\\/pub\\-aa5e389b33054da5b39d933136c79181\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb1292df29ad7a54102f8650b31fbb9325d44dd074926c0e3f1e6a5ec953269a", + "regex": "(?i)^https?\\:\\/\\/pub\\-e502a8c7cd3b409cba5ede4960471e31\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9e7bbf12689d4903689cbef8394619e1a89d8d1820a35659fd77e411f1c8d525", + "regex": "(?i)^https?\\:\\/\\/pub\\-46289c1c81774b178aa444fa817cf819\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2422e93cb0f0d195e9530139ec9725b61148de5fc4656d016fc5cf5cfc3fa8bc", + "regex": "(?i)^https?\\:\\/\\/pub\\-256e7fe59b7e449b8801faa7e9905fe7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4e510c5d1f7c041ec817300542f52de0723ba9f20cc692c0a8334d2543e189e7", + "regex": "(?i)^https?\\:\\/\\/pub\\-08181fa25ee345c09a7dd282a4edeeed\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4eb0b2878db74be20495e8c7244097761644de9cd7958890762b0ff54443048c", + "regex": "(?i)^https?\\:\\/\\/pub\\-1eeb6ee60df64322bccebd160cd78888\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bcf4de413e5794f3ff8cfb6e651ef9d5738dfd728748dd1fab6e20df0a7b87d0", + "regex": "(?i)^https?\\:\\/\\/pub\\-331069acac904c9490fbab889f44375d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "78c7efd94e27122bec511b6485c7c91af6d6ae5df6c950efb70501c48c6e388e", + "regex": "(?i)^https?\\:\\/\\/pub\\-bafe39275c1943a99afceb1c251fd2f1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "32381d099b3aba9d6f46bd8744d89aa4cbab3cdbad34d7008ec18d2d8282790f", + "regex": "(?i)^https?\\:\\/\\/pub\\-3ea31b0ba2b64569a24884d4a7257288\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fa9ed52f62e3f81bef223dc71363979f93fdd9579a1391bf48ac930620e37f92", + "regex": "(?i)^https?\\:\\/\\/pub\\-ac1928721b9242e69b7897211e91dc05\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6ea2d277d541daefc822459029feeaf5145c8af9df2a4758b315872429063257", + "regex": "(?i)^https?\\:\\/\\/pub\\-7ed1e7dabfbd42bab218b78cb833c625\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7f86f39275a3a399239d07e98db1fcdcb39b7d3090b9653127bc68ea5df82c36", + "regex": "(?i)^https?\\:\\/\\/pub\\-92b885a1b4004f87ac2bae070130d57e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "054d7985de808d2de30d2b3cdaaea651458e50b2137b695c399ca05acdb8e3c3", + "regex": "(?i)^https?\\:\\/\\/pub\\-e916f87c012b4726919c157d2d7b5e84\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "49769be3383e8b6b34c58eb4f956716116bc6ae82592886d736d1df0f7414f28", + "regex": "(?i)^https?\\:\\/\\/pub\\-e759eed0d7224f72a298ddb675ab0f59\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "aa9c9419437ad39e06224dcc4d28a1c296a737ea7c4cea0143fc02996228f1c5", + "regex": "(?i)^https?\\:\\/\\/pub\\-12593f612a3248be91e520847ebf8634\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d16c43bd583f9a81d03dfffaa1e67046a1b1d2ad7981b0a41dcebed38c90024b", + "regex": "(?i)^https?\\:\\/\\/pub\\-d47b751a93814a36a98f000e1519f114\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "99fd2a15d2f098f01615699ea58780950bbc03c7688dfddcc4fbaced37beb84f", + "regex": "(?i)^https?\\:\\/\\/pub\\-e1be10175c764ec29ea1355efc95f7fa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5a225cb74e9e1f0f89f3c5a0da76a225a64a47627df8f7cdf6f39ba67c511ec0", + "regex": "(?i)^https?\\:\\/\\/pub\\-6f8862df40f94e26a355d317a1c4adb2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c97675060172eaf7e8160a09c1584a8af99cda44645971c3545197de15720499", + "regex": "(?i)^https?\\:\\/\\/pub\\-83839f7d419f4815979180c2ade65e95\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "52c08f2ea9593f496636dcba61e24f41dc947c30fa9b63001c1c8129c1f8ce9a", + "regex": "(?i)^https?\\:\\/\\/pub\\-e53cc04a927f4e4bbf9ea4618c99892f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "023a3fc448a860f6e2f887ac65fb821983d76d247144b908306ac2a0d5852206", + "regex": "(?i)^https?\\:\\/\\/pub\\-9fc81ea79fc34f4d8aeca23c4db53428\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b9fa97ab26b9717e574d315435a326228d5d0c9562f642871596dbcc47380c8b", + "regex": "(?i)^https?\\:\\/\\/pub\\-b434ab051d394aee8a5dc0c2408cafd4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7852980a3bb109aab11d6edbff39f03b0eaa6952bed0161ebacb2b35901b7fde", + "regex": "(?i)^https?\\:\\/\\/pub\\-9ee42db8121548b18dd215b5524c7cba\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3176dfcf5e663750a8b41a0283dd06ede6b1b834778df6548bfb3d9df95b7bc1", + "regex": "(?i)^https?\\:\\/\\/pub\\-43c0167f273d4521accbafaef2801ca7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "efcbeb09fab2f6de04b0b85aaef3d785e3c767e94068247477e6aef54c0c7743", + "regex": "(?i)^https?\\:\\/\\/pub\\-8f6b82f9ae4f4d99938f897b495afdaa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1a58ffb443a773ef25d40a672a306c8b33fb0318222f1e900655b30323627110", + "regex": "(?i)^https?\\:\\/\\/pub\\-ec21c38ad5864bc9a24d582b8d5eab93\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "87de7d9bc3e6db5a348db35a91a228867f5b97253b4179f5e1c15e6fc7da1a04", + "regex": "(?i)^https?\\:\\/\\/pub\\-fd0d7db1e32842eeb29370a948f15d83\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7aacbbda0dd3cf58420426bce592cac843f7544b77ef8fa710e80de9af485a40", + "regex": "(?i)^https?\\:\\/\\/pub\\-cf2bf290166346f785fed40a85aab609\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c3927a5132f0f075caf3590443704cb3c92f181ba37cd45f3c6b1a94aee9a909", + "regex": "(?i)^https?\\:\\/\\/pub\\-64493749ee1f487985cbe16277fa6ddb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d43eba4eb1411ae800fcdbc43dec251edb7943cd7ca78b7d0872a62b26feb203", + "regex": "(?i)^https?\\:\\/\\/pub\\-a4c41c071c234a2184da059565a233ae\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b481bdbdc454bef739e4c65b96f10937261552210a3be220d16866f58e4bdc67", + "regex": "(?i)^https?\\:\\/\\/pub\\-3f9314a9e1044395a126b7b8e48c5c23\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9c76dd2c50cd79582ea8a2e7d42ba0bfd15b2880129e2d489af38d3381d60f31", + "regex": "(?i)^https?\\:\\/\\/pub\\-38f23c224dbb4b49baf5f7b1b2deea2a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a078befcd44e56d55110567df4299dfa01be397239c1304ffe732ef2d6bd493b", + "regex": "(?i)^https?\\:\\/\\/pub\\-df9f5a922b334a6dacff591618b88acf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "055bf15517f9f2d3c195813749a3c7029efc6066919a124bfb9e3b3ce7b34fa5", + "regex": "(?i)^https?\\:\\/\\/pub\\-70cc179b99f942809d7c72c6dbb9a53a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b01384b92cffddbfe5c8b37b49e84be3ca14bcb7e91403a095625bc478ce967e", + "regex": "(?i)^https?\\:\\/\\/pub\\-0106ed6c8d4246469581660364ea7d91\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a3e562f3fdc44c980cc5a3fe679175c358857f81e9894c1fb15c8f35969d6236", + "regex": "(?i)^https?\\:\\/\\/pub\\-78c47add246a4c5e8d778d9800fe6c50\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b4165e189339b0fc74d5e44e783ec7db4b06162d3df667919afc71ef5df94976", + "regex": "(?i)^https?\\:\\/\\/pub\\-927635e914fc42ea988fcb616d93d254\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "097f5ce6faa3783cc34b3010a356aae5492ee574d15f62f800c5dd01aef4027f", + "regex": "(?i)^https?\\:\\/\\/pub\\-4b8b141fccd348ab8c20b684d7fc274a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b9d4a2cab6d9f17445c26f9aeb93bfc98aaa436dcd0cb2d118827aafa3aa3487", + "regex": "(?i)^https?\\:\\/\\/pub\\-fcaa24b1a46f4e19a44077a1e8434c9b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2286000c9317f5daf9b85341394bb9203a8817d714327a8da7a2b2f79c60700a", + "regex": "(?i)^https?\\:\\/\\/pub\\-3f3fcc7f960f4ad399964fa5c373e278\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8a1b93535d6f731a970d6b5f10e2af28da3ec85ac4c76b21b4a6581e231da0cf", + "regex": "(?i)^https?\\:\\/\\/pub\\-76291edc96894703b428ddeb3f1bbbb9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "02570f12e67c59e2a30d766eba9cd7069cca0f6604c3d53f3c7456af1ec2f223", + "regex": "(?i)^https?\\:\\/\\/pub\\-dcffe4ef262547c5888e628e606d407d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "71700f03af926538bdf5e9030f9cf0ea371c27c241922c214cbd14c9361da9a6", + "regex": "(?i)^https?\\:\\/\\/pub\\-51581d7f050444fea0913c5656e9f743\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d8ffe955b1cbf578f57c505bfb3d0dda43d5016c80c9696fabcf06dc3b258284", + "regex": "(?i)^https?\\:\\/\\/pub\\-362c90875b0b428980c59ffaa1bc4f2b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fce8402551bf89d9b860fb4c4f704ac25e1fa0c32d353500def083f43f540894", + "regex": "(?i)^https?\\:\\/\\/pub\\-153de81a0b524737abce588f5b286e69\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9dcaee837c87b56305e02eaaa55cd31ddec5538184e95e603a6e0097088313f4", + "regex": "(?i)^https?\\:\\/\\/pub\\-6a0767ef6ea141b4a27aae2a880bea35\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a540bfdebf093b6d4e157d83e18783b617fb85b1d114ec0d737381554c0b0efb", + "regex": "(?i)^https?\\:\\/\\/pub\\-d49f68fe30944a3b9634450950c9c95a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "27eb02efe80587dda819425c281363c53817c4d84a27ad1d4bc5d5d43be320c1", + "regex": "(?i)^https?\\:\\/\\/pub\\-00a2ad7fd61a4ece8d6a0dd5f113b614\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4cd384b56cb0f3a625a1c8b582e07ae153d49801ec6ae258e340b7f750c0c498", + "regex": "(?i)^https?\\:\\/\\/pub\\-f8bf6afc2de04d649a60888699ce3635\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "09023daa0d159c52eb2bfedf0f18d08d7dfb6ebd03cb57662ac4dc88d7ad5e46", + "regex": "(?i)^https?\\:\\/\\/pub\\-e7e451c657c34ca49fa097f69331c065\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d3414308004b2d14b034450e29a29249cb064eebf96953d31aef190297370f5d", + "regex": "(?i)^https?\\:\\/\\/pub\\-4d64fe777b4743e4a3a4ee49677f1134\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ad1cad4b741e0405f9e0fadc8aa3c2931e44e72062bf396dcd6dcf0ed0736839", + "regex": "(?i)^https?\\:\\/\\/pub\\-6c94a32f48a8442687ef75ef3f84c7cc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "932bafe08b4247f1f738076d37da881235f0bcba3df4ffdd9db88c58e77393ff", + "regex": "(?i)^https?\\:\\/\\/pub\\-713c37cb286148939e562ea25546fd9d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0cfdc051df419fc14ef8891104882b674e27322db06aabee25b0e6d84a86d6cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-2dceb100d74f459db99f3836f0df180e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "15028511f7b2555f924497a86516d3bf4f5f9b1920383df2f483d886dff30a20", + "regex": "(?i)^https?\\:\\/\\/pub\\-4d91c26a627e4db3b594b3b029651df0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "acdbb86ce30b42a25cb5204fe88457adbb3292f82732572114f16dfd18cc6717", + "regex": "(?i)^https?\\:\\/\\/pub\\-79d5d1ad9ad64ee48bd4710f68933cb7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2b46be128d4c43a79411fbdd7b2cce4ccc04b6558223f1d9f4721422d3f42782", + "regex": "(?i)^https?\\:\\/\\/pub\\-b6c548563f7a4d8e9b44092976be18a5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f04b4e1e4284c16a49c9614ceaab0e1e58407d61a8d5c1abcaa79c403356020e", + "regex": "(?i)^https?\\:\\/\\/pub\\-633b876c675c4a15b52fa383770ae6c6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dd3a2abdd4bd85f0f246ef6e64615c3e27ada48291df18a5d18c8ec2a542278f", + "regex": "(?i)^https?\\:\\/\\/pub\\-c557ca8309a64d70998264df205ae700\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "135599fe3ce004335d58e91c7b4f04e47a301f72ea501d59c6082c76eaab8881", + "regex": "(?i)^https?\\:\\/\\/pub\\-2e8f7a3c19e44640a37c7ef0465a066a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1a7a5090fb77189489ba93ba72706fd1683f71b9947d0ca2f322b2833e6c3c15", + "regex": "(?i)^https?\\:\\/\\/pub\\-709b0d9656424e08ab9a7426c46b5669\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b5c76c55336dca80d1d392a4e1407497fc78598f913281beda47d764dc77a879", + "regex": "(?i)^https?\\:\\/\\/pub\\-c613903628154b7e971252c962071102\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f874e5ff92e949f7b3a98f388cf126bc128fbcdb30e7b994502540df3b413fe4", + "regex": "(?i)^https?\\:\\/\\/pub\\-e9b02a7cd4454d188d68a9bbe9edfd9b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c5a6e92503aa477aafccd62c76c7bb4c635a273d3cbf0d16c1a63608dff0cfb5", + "regex": "(?i)^https?\\:\\/\\/pub\\-c89637694ef84619b8853f66dc50ce61\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d53cba8b20751c703406fcc2e7d75bf1b7208a56e84528ddb35503ace8d80954", + "regex": "(?i)^https?\\:\\/\\/pub\\-ed5be960cc794195834f3d2058c2e12f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eeb6a3ec706c091f1110e9caf80429c20a224eadac46936f398e4e9bf4ec7ea2", + "regex": "(?i)^https?\\:\\/\\/pub\\-c2a1ce7519224458825cb083b9f11adc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "974ede1c4c42f5edb575c16569129e9e78acfd390bf076ab17b240eade9d1711", + "regex": "(?i)^https?\\:\\/\\/pub\\-31fbe386f48b41798159cc33205a5e91\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3d1c4354e400456f20d6984e7c0bfd5fc8dab85249ee4192c5fc0ce3be832cb4", + "regex": "(?i)^https?\\:\\/\\/pub\\-f8bf95bf11e0405490be8d6f90864425\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e1c716837373359c9f8505c3590432f1abfde9309451de46721da157f5ca4aa0", + "regex": "(?i)^https?\\:\\/\\/pub\\-3b34c4e5b4004f6ea5098259311ee9d9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fe802650c75e9f1529d48bd13f5aa113f6416928b05dd37f6c2625a8fbc22044", + "regex": "(?i)^https?\\:\\/\\/pub\\-8a7c765093964545a7063fb9568c5bd1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bdac898f051bab8106bccd76aae007f5baa7e8e88f27d2668de028df0d636783", + "regex": "(?i)^https?\\:\\/\\/pub\\-c3cec8fe96d949f3a86fc76df88f30b5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0f3cd06fa05d0b14867579f7c431ec3b97b9359ef4470a4c71ce030771a36372", + "regex": "(?i)^https?\\:\\/\\/pub\\-b5d772c1dc84408f852817a34cdacd6e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6183bb3c2d8823c8b23290919a4db0d5376aa9f2fccc1d08a7366541f4c76d97", + "regex": "(?i)^https?\\:\\/\\/pub\\-eb9712cdae1b4060913112da3b278a1b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6a802e842ee403523ea7dbcda319be072e59c95f44395f5fd7becc7d70a06223", + "regex": "(?i)^https?\\:\\/\\/pub\\-bea9ea6338c244ae83be9daef65c1ede\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "49f6dd151f7b876e2ca5289aa0ffff1d1318d3732c94eccd917b31362f4f4cff", + "regex": "(?i)^https?\\:\\/\\/pub\\-2af9861a7e9e48a3b45c657d7f829fad\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f22d0468e32216e7c155765825ab86c7131342605436519f2410872ee0852b26", + "regex": "(?i)^https?\\:\\/\\/pub\\-a7e55adbd5644beeba19f1191adef659\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d0adb05f193aa2bd36797666ac7d0775b4302fb80382b34a9bae4f777872dd1e", + "regex": "(?i)^https?\\:\\/\\/pub\\-452323b8032e4a6cb302fc5aa9fdd43d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a4aa18a5a336cf29c8a6c32a9bb9e8f4fa766227b7cf56b5adec959b27d64351", + "regex": "(?i)^https?\\:\\/\\/pub\\-cf02c83a386e45f68dc7192394e2cdb1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ca8e056cee3359f9391dd53b8df162a15dc52da7e0e4110a8d1d347b8fe939cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-d1646ec3f3bd4d7da221532aa5cccaa6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "670d5bf985d7b6e3051b2fe292daf27cae8668732077dc13fe1d7b1b9b008f86", + "regex": "(?i)^https?\\:\\/\\/pub\\-30db2671c74741b78e0be4569920f752\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "991501bbb2c1e45fd8877f703b56e07dd4b1ff024246e2c565a196806a7aa878", + "regex": "(?i)^https?\\:\\/\\/pub\\-a017bd9f9dc6498183af41770490c482\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3bb8f5563e8db5827e22e1d4a6dde89a7f767af89be9b227d026e98ca7b57564", + "regex": "(?i)^https?\\:\\/\\/pub\\-6d73e0d3c34e441fb2a44db20a7734d9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f5dfc8c2c8b73ebea9f9748022c160962916c24bfdf89e7dab2a7d3ba370114c", + "regex": "(?i)^https?\\:\\/\\/pub\\-a813a19496764064ac75fda177993132\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "27de8223eb90032481ae4e00eaf3451bac201bc0756077508d76a545799d966d", + "regex": "(?i)^https?\\:\\/\\/pub\\-98c9bd341c1a49809d1b15ae411b8d59\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f7532c7dec00148529b22a831620954a406beedfc2525c45898ef73e30d7902c", + "regex": "(?i)^https?\\:\\/\\/pub\\-7a8817cc706443b8bb71d78922192c8f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "acca8369469c40b0fa01cc83ec3fc7f4c00e58d2fb5eacc359251109675c7d46", + "regex": "(?i)^https?\\:\\/\\/pub\\-3c60d60db50b4a53b87d34beb566c580\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2fa36bca743352944e91e5681ec5d067be6a3a89e93d1a3f8f735a8277046a41", + "regex": "(?i)^https?\\:\\/\\/pub\\-350b11c492db416e976b8ea8729cdf2f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "412d48fa3df700ee73c1dcd272b33bb3fd1d30b0efd0a0d29270d3f948670d25", + "regex": "(?i)^https?\\:\\/\\/pub\\-2f7152d1c7094d54b6954821e7f1b050\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "036fd2e17298dc83eb188f6b92188d77ec3f01188d424dda84e90c12250c4c6a", + "regex": "(?i)^https?\\:\\/\\/pub\\-aa72f3d83fcc455387be1c4babf50f93\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ee6459e97e89254c4ecbbdcc51c4fc49e09a1541ce83c209abf3614ce0457cdc", + "regex": "(?i)^https?\\:\\/\\/pub\\-f881673bdca94f08abbd51639e988b6c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9206ef816d245fb710586c7d2689b92573a34478993a2d9cac809309f56f24dd", + "regex": "(?i)^https?\\:\\/\\/pub\\-b92dbf754d64473591cf389c93e60817\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ea0e8dae258b8fd3e0454d3ab2da34ab4f80a99c4025f7da112439c3e2d9070e", + "regex": "(?i)^https?\\:\\/\\/pub\\-c02f572a0b7647d4b5ce0642a9b6725c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "86c2b068f66d6f847ad48ca07e48f9fa473527cbb117db0137f86fc1c3e07218", + "regex": "(?i)^https?\\:\\/\\/pub\\-93447d52bbd14ef0872d9ebe64bd09eb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "87a3631d89bc5fb6a3ff01f8e4fa3657fc2ecb0e558413f55fe84c2bb5ee32d8", + "regex": "(?i)^https?\\:\\/\\/pub\\-cc2e0c5f6ae94db78b0ca3c7ce4c4848\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9c9debf0eadd08e2c181f0831907911ceaf0f31d8c15d15e8b16519762ec0950", + "regex": "(?i)^https?\\:\\/\\/pub\\-3e0e76f0ef6b4b958937793fdb47ce52\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "745619e25dcbd607983bc47a2fef22ad1186fe2be2a24b73aa4478cfd212dfd2", + "regex": "(?i)^https?\\:\\/\\/pub\\-7dc1c489915a435dbb45e2cedd73a1b6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d199879a3c01b7891e00b524c5cfb617f19331aa2a9018029a6cfbd4a1d79f8b", + "regex": "(?i)^https?\\:\\/\\/pub\\-a5dea08759934238bd2363b86fdeed1a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "59e2b23a7530f8324f5a4e1ee308b4005e9863a959fd4a1a1dc139700597dbea", + "regex": "(?i)^https?\\:\\/\\/pub\\-93bd771473c24746860b98ace628fe91\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f7becdd607c334eca1634dc3a480a9542ef6e57ddf6e397e79e9a11e4f02a53b", + "regex": "(?i)^https?\\:\\/\\/pub\\-957547d1ce004872a23b6f189fc617f4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c2a3f7a817375e14013a13e72b135db790e1f07f7fcb7d595410f9b34b4d46f2", + "regex": "(?i)^https?\\:\\/\\/pub\\-dd9c6ac2a8d34c5185032362e81063cd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fb09fab26100f354f6365c3d1509e94992d9358927d29f9d41b6036486fb1994", + "regex": "(?i)^https?\\:\\/\\/pub\\-57dccb7d84554e249a65ad7103285e5c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e24e99453b3c84cff06b0aa6fedb3641ae2c5de0a6b0ba071864df05325c2bb8", + "regex": "(?i)^https?\\:\\/\\/pub\\-53678e8aa9034b51aecd137f336f621f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a925e01544a3e84dd1d4bfc06a07d0a3d02b842005fef35b77e7c30363c99af8", + "regex": "(?i)^https?\\:\\/\\/pub\\-572a024fd8cf45fe859a602f43e87d7b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "65f3a1b903d85fea9222ba35b10a47d2065ce77028d01e844c6c57a7a331699a", + "regex": "(?i)^https?\\:\\/\\/pub\\-724860db1cc744d68f746bade6c2daf6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "42bcb09e5c2e27d67575d768a0455435eda664c20eb38bb7bf6c2cf3e05eec0b", + "regex": "(?i)^https?\\:\\/\\/pub\\-1900fea15b79446ab2d66ffb731848eb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1389213846c0d12e41b31ed18e4f1ed1e6f6f91d51d2797fcd187cb1ce4007a8", + "regex": "(?i)^https?\\:\\/\\/pub\\-275833c86b004c11b295389f4530e198\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "55302b14c2209a768f5c3e56829cd8c80a62542ab3bbf319b90f023159977b64", + "regex": "(?i)^https?\\:\\/\\/pub\\-e05ebc5fc5364830b93d0719a51c7261\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1b2145fd545a1cde9a2f896127d2f7b8b05b1ed2aaa2bfd5d1efe57ed0435d1d", + "regex": "(?i)^https?\\:\\/\\/pub\\-f24bf3fe72ea4ae08cbfebb34818efdf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "226aaadaedf4e40a6c25da9c595a0852011f7307d6bdcc1b0e0af5889a2c9c72", + "regex": "(?i)^https?\\:\\/\\/pub\\-24c17749b70d42d8b2b5534e6ad64fdb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5658e66ba09d5f8bcaf28753773f049f5aa93e9788cff34c1aa0de8c957a7ac7", + "regex": "(?i)^https?\\:\\/\\/pub\\-80e45b14561c481da4c99ffe563ed44c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cafda758987c5476d33d6c8cf68cee0fd91a56e243fdf2081a70d183d7c3cab1", + "regex": "(?i)^https?\\:\\/\\/pub\\-6e46bbba1fbd47959878827172c48cb1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "15419b75e82e0beccf5e68a685282c0550d7778d460b3c30047b1a64879662a2", + "regex": "(?i)^https?\\:\\/\\/pub\\-04871078dbd140409f36a2213ef76a50\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2fe8790ff947830309f3926514f1d0eb3ed83f0f298ebc0f286cbf2671f59e76", + "regex": "(?i)^https?\\:\\/\\/pub\\-78a7928e96b64b909e96d0331cc0b953\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f574f696a70ac3e25bffe361cfabc9af021f865ae04e2f40017189eb79e2c72f", + "regex": "(?i)^https?\\:\\/\\/pub\\-de59803496c8489585895b6917266e7c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e56c132139899bdb35ec57f9ed6b037c0091a584d6187cf32aac31e0d192f4a8", + "regex": "(?i)^https?\\:\\/\\/pub\\-bbcb68f5c2564793ae92dde5a3c396b9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "29e1d31372598b888e7f2f19d607a8998af663bbda45beda67fb5a882e50de50", + "regex": "(?i)^https?\\:\\/\\/pub\\-b45bf5906ad14a889ee97e46d6ca0bad\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8a0baa3ed34fceb1d163d1c81cb52096840aadde1cab15b1873903294cec2a4f", + "regex": "(?i)^https?\\:\\/\\/pub\\-f3922f20d4c74ba1869fd3db906e3295\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1409ed0706cb6cac7e7be22d1171eb1ea6d955aa6696e7878a54e7f21a443f46", + "regex": "." + }, + { + "hash": "2bd1c66b24f2c2ffc632aad057b0e63cf5bbf5736df0c778326092657a4300c5", + "regex": "(?i)^https?\\:\\/\\/pub\\-92fa8e61bf354f759b2deaadcd14ba05\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "12d97ec91fd8645d39388c52da7cb4f7863b22ff3029cfa70d6c57db94033c3c", + "regex": "(?i)^https?\\:\\/\\/pub\\-e93842b8061246debd992c50b3180e96\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "aab2a87e203db8a1a1471acf8967b95ba3849ab2617165b9ddec372e868e42c5", + "regex": "(?i)^https?\\:\\/\\/pub\\-823a4056aeaa4f2a9722284c0d2ce5ba\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "513800dbc76907f4dce6a51984e4d854af9a1313a68f3a4e1c540d8e3131717a", + "regex": "." + }, + { + "hash": "09730a3c1f2f160b6666f1c6c3313f744c7c1c9df6f8684e2fb3da7a8fe034a2", + "regex": "(?i)^https?\\:\\/\\/pub\\-2cad41ac6f8e478aa1bbd007917474df\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bdc345a6de0fbc7203658142528ed0368319ac54bf71e6576f2ed0051b5a745b", + "regex": "(?i)^https?\\:\\/\\/pub\\-5fb92cb47f4a40adadd32fbd40959d88\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bd30c662bcc93c7dd93b44dea1ff51886aa7ca6419b5610b47fe4a065709d1ad", + "regex": "." + }, + { + "hash": "3930214c861d218326ee48bb0c3a6ad05c66b17405a0f638526b9b1de9a6b18b", + "regex": "." + }, + { + "hash": "202aeb22ac606c75370a0e7684077433dba2385a1097a35ebd827bcd47a4769b", + "regex": "." + }, + { + "hash": "3bd031f72f25b3288c0bd429ddadf619feba5cae35ff903fa9fd64a9dd56098e", + "regex": "(?i)^https?\\:\\/\\/pub\\-7e61671291b64c718c1dd098aa80dc0b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b29b77b96bb7653fd6dae02df5d1057ab733219326a8305ece4ae15c3132c77d", + "regex": "(?i)^https?\\:\\/\\/pub\\-a5d007633c7e439581937fea56c527b0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "73f214a424da05d899f4ed5ced3ce7fe7ebfe3328da1638ec888af60a52dfefc", + "regex": "." + }, + { + "hash": "82e563334570f245deb44da31262196d37ba5ed08409a982d432ddb51dc743c0", + "regex": "." + }, + { + "hash": "eba9be5bfc143d0184806584acddead32df780401343e0a129f90ce6b307483a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rtdgsdg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b10e2de2492c197844b556c75c3b7e41644f35bca6f5e02bcef84aaeb68b5d6", + "regex": "(?i)^https?\\:\\/\\/pub\\-537eef8ea8e4421fbc65b68f7d2c81ca\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5123638a91eac10d9175270c57e7bd32d9153527eedc4576c6e68a4c1f2cf797", + "regex": "(?i)^https?\\:\\/\\/pub\\-02cafa38a7be41348ec4b7c73615a533\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "52050ff38a61a7cfc3ee5a8140211f043c9330bc3fb1ed50e9f734056e3bab4d", + "regex": "(?i)^https?\\:\\/\\/gourishankar00\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "691eb50847b903e829087c7eff13ce3cf56c12afa6aa5217aee2badc099db679", + "regex": "(?i)^https?\\:\\/\\/archivebaldcircle225\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b2ad76f5195b23f9f02e1ceeec8d8f2e73171b99a7f26d83fc11972f2949f5e0", + "regex": "(?i)^https?\\:\\/\\/pub\\-38f9ed1fa7fc4cba926a3736af2015b0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2cb7ab997b5397716c1096766225f3d018f4a7b61965f8b2158e812b689ce9ff", + "regex": "(?i)^https?\\:\\/\\/pub\\-22b9b93abc3c493b8189d55e37089d56\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0e1269ca119abc33756c7abe52824b650d54cd31e12d3eefac31c2e5a3cb7054", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Netflix\\-Replica(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ea3bf1e462187cb57b9c2d78d36675b31c61fc967b5cb8442fff217da577c522", + "regex": "(?i)^https?\\:\\/\\/pub\\-b07c1327977742d6996623b5c2d28394\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "237cfab2127bc836c6d36b154558a0abb6dc05764be3a9405470d6eb22405b06", + "regex": "(?i)^https?\\:\\/\\/hfghgfh5345345hgf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f9515192da899fe20fa92c713340ecfb7c12ebf84ce2c63e44fc651f3485512a", + "regex": "." + }, + { + "hash": "a715d7819552a97660351840cb40b9a98aa5417a7b2a0ceb6a51970187f63193", + "regex": "(?i)^https?\\:\\/\\/dryrt6gdytry45yhtfyht6rhgdt6ytrfhdf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "435ecfdd565ac24b3f837a9f75980a4122ad753bf45fe40c3b34d48baa729521", + "regex": "(?i)^https?\\:\\/\\/telstra\\-101978\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "43eee3e187a6eb1ff7f582679511fb273d96a74b590bc857ded16025e38eda5c", + "regex": "(?i)^https?\\:\\/\\/pub\\-a8634885e85741b19497f7bb4099e38b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5c5c2ff4343a7ff3bae872049c122cdbafad93c423897d7ff9a37175ce107f4a", + "regex": "(?i)^https?\\:\\/\\/telstra\\-104158\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "68a3b26a7d04f60bfbd4e2a142d97bfa6b1815d4c221302edc4aa9c9ef255585", + "regex": "(?i)^https?\\:\\/\\/c0nfrmpgsacc\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "31ab1c7faf2c737f5201df9debb2a28c5256d8e1c42b3e049232597ddbea745f", + "regex": "(?i)^https?\\:\\/\\/d3nk5of52z35ro\\.cloudfront\\.net(?:\\:(?:80|443))?[\\/\\\\]+hg" + }, + { + "hash": "00bddd90635d5001e35d3b9772160ec7d41724369dc50e224ebb46135c396b85", + "regex": "(?i)^https?\\:\\/\\/telstra\\-108485\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "95ed6e0080bbbcae87769d9cfe7dac190b477653f225db401215e0d8d00e4095", + "regex": "(?i)^https?\\:\\/\\/telstra\\-103910\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0408d72e70dd66b18422f87211fefbe82f6f84dbf285b77e598638545add829c", + "regex": "(?i)^https?\\:\\/\\/pub\\-64e2cc5b39974f31a67934a659b2c1c6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7f7ca84b57df58c1a3472cab4741b9c845eebff51318bb3381347881669ffdae", + "regex": "(?i)^https?\\:\\/\\/coolqload236\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f9242a44fa9ad9efe1bc16abcfb4fe72e25fc6f83e2ded250466cf2ad01b9433", + "regex": "." + }, + { + "hash": "7434303d25d802de18ecf0b9042b05345371e83d5bd6d64b6acaa8fe5cd06b7d", + "regex": "(?i)^https?\\:\\/\\/pub\\-cae4ded32a464f59879d1e8d6cc6dfbf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dadef237a12597b997f59650564563914d6bbc33e4a979238709f16b308b4cc4", + "regex": "(?i)^https?\\:\\/\\/kiran9563\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "298b4c7c98928daffd7fc3ff98ceb149fea34f675eda74484bcd8e8e77a9cd77", + "regex": "(?i)^https?\\:\\/\\/fahmida024\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8e95a0de24b601a89434ece09a55157f87929cbfeda871038eca38eebe9a999a", + "regex": "(?i)^https?\\:\\/\\/telstra\\-109487\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6d9adf65d4fba8e7f20a58e54cad97e913a3c04614a3270910ba8de8286f302e", + "regex": "(?i)^https?\\:\\/\\/telstra\\-107766\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "757c8f59b929e03c380670710ef63f670c617b2d80a44911fec17853415a52d8", + "regex": "(?i)^https?\\:\\/\\/telstra\\-107855\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6092ce06080fad95585328ffc2880d53431ca5f3b51ac0e21dae4f19ccd1fe85", + "regex": "(?i)^https?\\:\\/\\/telstra\\-108123\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "65670169a8eaea2e60640126fa529236adbbcaed6a7369924b8f83d1064fbc9c", + "regex": "(?i)^https?\\:\\/\\/telstra\\-109219\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2378edfd9374aca83449ac7be33dc0e0853ef2d46ae8177d960bcd62885fe500", + "regex": "(?i)^https?\\:\\/\\/telstra\\-109517\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2fea5da65622fc3a5aa869cb117d47d9647e7d1479e48ea84a70e6962b0ff17f", + "regex": "(?i)^https?\\:\\/\\/telstra\\-106113\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "93bf9d2d43fafddb97a61f0e2345869641ba4e93e9cd738fc97d3af98d6d85f8", + "regex": "(?i)^https?\\:\\/\\/telstra\\-101370\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a372026b88f7f15596eb7bbdd2e06eadd46a41fb354ac95626c10f74e26f5b49", + "regex": "(?i)^https?\\:\\/\\/telstra\\-107132\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "94f22e7343e5844110cf277ecaf6225ccd59d5c3a07f98c9fe88e5edc9911298", + "regex": "(?i)^https?\\:\\/\\/telstra\\-100097\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "91cd872a99b33fd6c1840b071464768bd46f2227aec0adb47bf3be2f5a3e4016", + "regex": "(?i)^https?\\:\\/\\/pub\\-225cbb86e7fd4b02804f656993ebd586\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "536c2b02408c09b4d186dfc64b05f0e78592db7d5fe1ceaae14b25c81370027d", + "regex": "." + }, + { + "hash": "ef594952f9bb6ac9b92c4d00afd3b183d3ca2729177f68d2049f09e9f6aff5a5", + "regex": "(?i)^https?\\:\\/\\/monstersyellow329\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e5596f5d1e8c71916f12107974c7b355cba4b0e80557908f97681c2cc66749bf", + "regex": "(?i)^https?\\:\\/\\/had\\-pagehelp\\-adsinfo\\-sec956\\-en\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8dcb0a4135e308a7f558ad4124aa00a6a4d278a224f060021a5f929b08680aec", + "regex": "." + }, + { + "hash": "1c3beaa4419287c0c1547264fe30d451ada62fbf594252a69cd98f8274582e5e", + "regex": "." + }, + { + "hash": "a0c27ee14a490738954b54fed95b22834ecdc8626d4537217c0b1398bc81a80d", + "regex": "." + }, + { + "hash": "577264b439d5b5b150d3aa4215b06b688d7542e5ed599ddd5085eed3158f469e", + "regex": "." + }, + { + "hash": "05df61a710ba63e0705b1f69ec6203682f39383b012216847a6a2a2422c5624f", + "regex": "." + }, + { + "hash": "7a07a7ff12e30453d64244c1f594a96ef7880e01b95795f904921a39dad0dcb4", + "regex": "." + }, + { + "hash": "88eadf61a32286ee874d499140d504a8803e2ef544a231940ed8ab514cb92685", + "regex": "." + }, + { + "hash": "50a8ec8cc9a36bae552b55308357c45a70bec6dc2a891101739ab0e8e5e26a20", + "regex": "." + }, + { + "hash": "fa27602530312d60e9c81d938c59988bce7cb015b0d28eb1c1927db3b7ba63d3", + "regex": "." + }, + { + "hash": "2f962ce71d942c9bacbb774be282b950357f59879efcefe2496fff890c5b6103", + "regex": "." + }, + { + "hash": "81bc7adfa525cd4094b863b6631886dc1499b2d14ca9537efc4cddc95c682551", + "regex": "(?i)^https?\\:\\/\\/att\\-101030\\-103903\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3cf1386a97cf69f8e0768087eee3b7d8028dad3007465dbcad77b106bec76b79", + "regex": "(?i)^https?\\:\\/\\/urveesh28\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8f64417a1648c2222d8efe2c179ebb98b394afb235b7df6eb2cd7c944e3c1a72", + "regex": "." + }, + { + "hash": "bd196a58a7ad3333c52e42bbfe9bc5118817f7528fa7b96dbf4bea927c797f03", + "regex": "." + }, + { + "hash": "c8fbfd2d179583d0b339f46ed2d386097da94f74f64dbd1add7c89950e261e95", + "regex": "." + }, + { + "hash": "779ac2ca2d33f3354458e0e7b289965f53cb715adbe4716004d20780e8973414", + "regex": "." + }, + { + "hash": "03ca82e332ed94953e8452d81fe7311e1da661baff7f1a5793f46d2e056c60cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-95cf35943bc54e2a9da43fef5494bb93\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e9fea0754e3306bd5482482f0a9c44541fb1d78a9f5e59c00f7fd92cbf3f0d84", + "regex": "(?i)^https?\\:\\/\\/supportgeminilogies\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "273eb6cbb65fa94b5e1d887a18bb47b493adb5a161826e49c4ced891aa6d36e9", + "regex": "(?i)^https?\\:\\/\\/gemiinii\\-logion\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "23f0e59c67e4cfa872f9609b690f173056f4dc2e9ddc0120bc9bad0c75a114f9", + "regex": "(?i)^https?\\:\\/\\/shreyanshsingh940\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "794cb4bd7402fe281ed5539ce8abe813f6e31adc5de99a65fbab2acb24e5a09e", + "regex": "." + }, + { + "hash": "3ec910a4e6bed3effcc52d5228094d89dff1db7e9b32d3e6debcc258f5f8331a", + "regex": "." + }, + { + "hash": "38b004b9d9d928f1351c63eebcf4be374696b3159a9d9a077c8b1274163ad468", + "regex": "(?i)^https?\\:\\/\\/6262abhishek\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "98a94193bca7994474a869eb6ff2d38302beb26a4229acac4c2cc94ba5c04d6c", + "regex": "." + }, + { + "hash": "64d1e5d164959f9844484c52b7cdbc092f00a939ef8dca6e3711c6ff05af8237", + "regex": "(?i)^https?\\:\\/\\/kshitij730\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7849d144f5d77c9cec6f3b7dc34234215e2f7009a2e1d4f1b429b414e7014787", + "regex": "." + }, + { + "hash": "4eb06313e3c389fb1daa99737e5dcaf45a9cf4c646c9700e047f9cbd805c4fd7", + "regex": "(?i)^https?\\:\\/\\/pub\\-5c4730f7663443339e4782de813e2074\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a91ccbd4a86074753ee9e782c37acf02d79490703c9e44fac790a9cfd55fe", + "regex": "(?i)^https?\\:\\/\\/pub\\-63ff6705ab194b8ebfae07fc42a442b5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c98316da20b07afefa93d01084781a1fa79c6f8a1bcfb06794e8a6f5d59d1c2c", + "regex": "(?i)^https?\\:\\/\\/pub\\-39988de8e81b43a9be7230345bf977ad\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6cad9c445dd8ac08b1517148f6f1c9b2163dd938a6d366c480857310fe4f988f", + "regex": "(?i)^https?\\:\\/\\/ayushc29\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "852e3f9fafc8009f154f2509e4de6a76fab4e4e134267f1b3b5b9ba88ce599d4", + "regex": "(?i)^https?\\:\\/\\/aryanagarwal2504\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "cc64f79692b1acd0647e503d045a1970979fcae1b63668b04e2a7d47e6114c27", + "regex": "." + }, + { + "hash": "64c86fbb517ecb0df241d35fe4c791a95cb9c64959a3341a67a1bfeea899b963", + "regex": "." + }, + { + "hash": "14f9509a7658ec55a4d3eccea69fa9ddc0f684fbe81edd2a9518fe9121f74ecf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c\\.r\\?v\\=4(?:\\ |\\%20|\\+)+paaslsclb2ccaecf2ecxllcqd5an63uuf2jr4kagod7w3yxe43sgvvraicvrxnl36rdu7slp4ab7iy24snigtp6r7x6ffkihycmyhbufm4qywqb57x65dixsf26c2okzlj6towmt7lwel3ipkacb4mi\\=suspect\\@safeonweb\\.be\\&u\\=https\\%3A[\\/\\\\]+tinyurl\\.com[\\/\\\\]+yc2zv5e7$" + }, + { + "hash": "05c5311024ba64adeaf725a414613f607c3985933148f92bcbfcef96cd666d16", + "regex": "(?i)^https?\\:\\/\\/pub\\-76967ff99c8d4938bcb2ccb589ddc7bc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a42ec084cd4acb4f94c21034423bafc3c5161aeb3a13ef2b62e9f33a869ba87f", + "regex": "(?i)^https?\\:\\/\\/pub\\-7df2ffbf380a45a69ddff48de1f28c3c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "45d6a8833e907fb168254dd771628e37bfbf3ebf45af40186a199dc9f33289ed", + "regex": "(?i)^https?\\:\\/\\/gulam1288\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "47ea8a12ed149230777cc2913fb75fefcbe16ca77cd0c6a54d353abd4d4a1a1b", + "regex": "(?i)^https?\\:\\/\\/manpreetk24\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "63adc4f982f64d580f8729941348ca6fa1307b2bc825861d63fe1dd685c25df5", + "regex": "." + }, + { + "hash": "5bac32be2ba6898f780b94ee9ba5cff7e9c249d5ad54ed8cd8ea96fddc94ef57", + "regex": "." + }, + { + "hash": "8b1502fc64cfe12b3cbc820d4330681fb4e2c13229544112ec2912da42603306", + "regex": "(?i)^https?\\:\\/\\/balaravikumar000\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eade6b9ca52cea8735ecf4439a74ca50b47929ade8c102a00fd748d9a583c34e", + "regex": "." + }, + { + "hash": "d442170b02e05390623f6d3d1536e4c3c8e22168be5568c3459ee1786e46c23e", + "regex": "(?i)^https?\\:\\/\\/pub\\-def48bfdcfa04c8a99aea1bba71f35b4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ce4831d12a90ced75fcb29930c4d2613cc2a7e7a91cfb11ca1ecd61dc39ffe3f", + "regex": "." + }, + { + "hash": "1409b7d3775f0edde52673091aacca2f093ad4c4f925ce0f087d4d5980375286", + "regex": "." + }, + { + "hash": "0efeec7383fd15bdf5c06047db9b2a312dd903236c9e6833b18b9e92174b9a0c", + "regex": "(?i)^https?\\:\\/\\/bidushigautam55\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "165be05e7889ab2744a0fb34ef351bdd028140deffa39d63b3ae194876923071", + "regex": "(?i)^https?\\:\\/\\/yashch01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "24528b1d0677591284a110a09edb0c0ac4bab5f531322df27479cddaf640645a", + "regex": "." + }, + { + "hash": "c80e375b8126858dea107a0d4e207df283c43d699e27533b974d8488635378d9", + "regex": "." + }, + { + "hash": "e3e4b5d18e83f69a757bf5e392399f0d65f6f3f8f14b3b2a41a0b78783f9adf3", + "regex": "(?i)^https?\\:\\/\\/pub\\-bbf1f4811adf4e07af5c929b82c849f5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "160e6a6fe8095243f5bc93597a8ebc3df224b1c6fa7b941b483295ed8fb68ac4", + "regex": "." + }, + { + "hash": "eda6cf5042be53b6219aa5dd44397e277d5e1a0905495eea1825c77fb28d6ccb", + "regex": "." + }, + { + "hash": "21f7953b0e76d3674502b5b8823f3ebc2a9eeac2d47604214bb560f20197942f", + "regex": "." + }, + { + "hash": "646188f42a1bf2b4935db562189018b8c5705f7df5810222e8472f729754c817", + "regex": "." + }, + { + "hash": "c3e01cdb5ef2259b423e6422aad05cd8719f6b9d3f8cce738a30abeda3b3ae83", + "regex": "." + }, + { + "hash": "253fb7a5ebcc48097fc6f32a2cbfc9dc39bbcbcc0ec2a1cc0527b2b0483ec2d8", + "regex": "(?i)^https?\\:\\/\\/rajaryan37\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4570e23ebb367978cd6a568a47ff6ed52218fcb551e069c0496fbecabfd952a6", + "regex": "." + }, + { + "hash": "3ee7b1202c76cb896bbe47e17777741378f1a72204cb4d248196d8dc6453438a", + "regex": "." + }, + { + "hash": "50e066274efd7297314112c56afcfc56d9e1e78523d24264c1a1f2cd0a89f790", + "regex": "(?i)^https?\\:\\/\\/pub\\-cf62a492046f491aaa1a4e2410651d0c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "49b7489f075ee1e525fa8b2ec833292fd35255c6cf8cb09c9907f8f1b9c9f08c", + "regex": "(?i)^https?\\:\\/\\/gdsiiii8dzz11hfdh\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c983bc71879edab269de854f673b0cdf0a8c1b93609816f4a90832c3169a12bc", + "regex": "(?i)^https?\\:\\/\\/ajinkya0021\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8293d5f769e817cf84c929ab0e2bf2677fdb8e5b97cbc9f150edf51f61cdeb7d", + "regex": "." + }, + { + "hash": "b69b73cd317c21318d2e657c1723bb3e7b79a0ca2b877ff21a107c14c211b465", + "regex": "(?i)^https?\\:\\/\\/gauravchamoli1997\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e499d208ab301e84285449616b38daba2712f894e80a431f08f312e85d58aab0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+211[\\/\\\\]+7273176[\\/\\\\]+1350[\\/\\\\]+0[\\/\\\\]+2554193[\\/\\\\]+1[\\/\\\\]+34400[\\/\\\\]+ab351f19d8\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3c20bb38f7346b3e74fde52500ea82c898a41b0a01a55d9e31582062c489300f", + "regex": "(?i)^https?\\:\\/\\/pub\\-ee8713613bee432e924a04992a65e235\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7cb32fec2846a61ce5d578a46143a9981086a7efdd922fdefe99b0b9d18447c1", + "regex": "(?i)^https?\\:\\/\\/afsiiid025d111gdsg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b9429715b63c205aef33cbbfa3def24df4d52ce876f302e38bb1d7c32641728", + "regex": "(?i)^https?\\:\\/\\/afsiiid025d111gdsg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "761698f420b4999346ef622db66d9179ad246b1f1c087c4015836ccfd9d93e92", + "regex": "." + }, + { + "hash": "89271382557509226f8e98e50220e0e2e0809cf1de19a0ef1eaa8737dfc0ba11", + "regex": "." + }, + { + "hash": "3672b9b7a450470362edf191865a38fca2cb595193bca92ac6ee179c78aa7bb4", + "regex": "." + }, + { + "hash": "dfe50dbcc1ecc33bd83afd376e68b12ade6d77ecdb13931edc31300b2180f1e6", + "regex": "." + }, + { + "hash": "13efd2f0ad79ffa161f91bcd0dadff73c3c1ac32a98c4fd2c6c773b7a71ed4c4", + "regex": "." + }, + { + "hash": "00c9d9bf74a5c37430964065a7a2c7f4009a16860d4a47c4fe84a1b364d1c292", + "regex": "(?i)^https?\\:\\/\\/abhisheksince2000\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ad31a9e60c13d3f8aa93669d37bbf29f9dd610785c02d570eb669f0a6b31a189", + "regex": "(?i)^https?\\:\\/\\/pub\\-1c014397d0a9425c8f2f8eeccb002d9a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2c0b989564741cb9e77bd3c417512f3df14824ee17d5e83bf872390d2f597e8d", + "regex": "." + }, + { + "hash": "08337059dba3e0e3e7a300ac137816d0b464cad7457a3115f66c485bf9cab99c", + "regex": "(?i)^https?\\:\\/\\/dlcentro_case_dhi\\-exp2447\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e329b4fa1c51fc89876d7b1338a07e2e46e3cfd5cfd5263d973edb126646b5cb", + "regex": "(?i)^https?\\:\\/\\/pub\\-aa25e14960ae4f09a8a7afc94fa4133e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "74099786203547adc4f840fdf923520caa06d50ea7015f9467de5196aa119fac", + "regex": "." + }, + { + "hash": "09dc76fb27f177ffe56398b916435b3c205a69d981ee0e1abc0f2e3d602e9435", + "regex": "(?i)^https?\\:\\/\\/gq91\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1e22b88d682a7b57153e7d1875335aba5bfe989fd02ab94b7875d9c377ecb770", + "regex": "(?i)^https?\\:\\/\\/yogita725\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ea2094b23524102a636e027761b86ea3f58548375a3e38d226fb3c5f4b9f8a51", + "regex": "(?i)^https?\\:\\/\\/pub\\-709b8e961b414b90968474306449c63e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0d7a7a8078970772f2c4886e21749f288e381868d348c55571e2c8ecff786343", + "regex": "(?i)^https?\\:\\/\\/pub\\-a85e6940819342738de244fe269e5ad5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "14bf94f24a78804e1d41be0809f62a1c95d4ac2b7d3bf701ceb1375fce07a5f3", + "regex": "." + }, + { + "hash": "b5bd18727db4fccb44ee0feb54c2aa95de6361bac4095e3cda6d30e3c4b7478d", + "regex": "(?i)^https?\\:\\/\\/2003revathi\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6d0bed16dc743f969a78d1bd93ecbf4885a81dd776a48ea2089f8fac18078fc4", + "regex": "(?i)^https?\\:\\/\\/pub\\-477125b71e0a48128838db694db7245d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "35f7b28979738031ac1e4ead1ffc6c2c58f836ad7d752965f2e30c6b09d28b26", + "regex": "(?i)^https?\\:\\/\\/sakshi8447\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4a98cea01bdcb020ff4bc94f758bcca62d731800811a85c4712199ddc830636a", + "regex": "(?i)^https?\\:\\/\\/kyin2\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8aed286db0741190a8561d79052ec3dd310051eb03de653738e35c3ee1ae7bd0", + "regex": "." + }, + { + "hash": "38a4177176e2004d09b2ad8d10eb9156e722d85d99dc5a18df22a6204c0e8880", + "regex": "(?i)^https?\\:\\/\\/velpucherlasravan16\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fb8efba59d8b459edde856814888cb1e123c4de54e481b7641db957231539bde", + "regex": "(?i)^https?\\:\\/\\/praveen0525\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b3d99369ed874db43db9606b824b62a9f0fa5294092cd247c8ccd36b81967c26", + "regex": "." + }, + { + "hash": "fb5e3d8f7430aa959409ef8f2506ad53ce3e399bbd7452acea96abbf02c48fb3", + "regex": "." + }, + { + "hash": "e46a321a98d1a32a8155bdf589fd9662036ad7aece2c9b3850bb79f4c08ad171", + "regex": "." + }, + { + "hash": "20dd1b980805c78a6cd4447c57d773882c23e00a5258d50dd5892298eeaa82c4", + "regex": "(?i)^https?\\:\\/\\/lickvideo123\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "aabc4ab16f57feda0a483fc0a3ee598332dba026c4ff386f059bcdad91c02d22", + "regex": "(?i)^https?\\:\\/\\/pub\\-92e622909c824402a79c6e92330a5c1e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "160ea1fe8487973a3bbab72344c369216cff2c50ae4a2d1a8bdc44cf9a19da24", + "regex": "." + }, + { + "hash": "eab2eb5c02d364c1bde1ff1a95110ad4941ab3c7a4546a70213c9e311500ef68", + "regex": "." + }, + { + "hash": "9d8e08ab9d074c681e0ef5329d0251465969b5c78e48967a19d589996405a258", + "regex": "." + }, + { + "hash": "0b88fd23f2c33c839b954961f841e8f649d6fe792f735f4bc200f8c213843fc1", + "regex": "(?i)^https?\\:\\/\\/pub\\-2ed83afa976346668bd0c61b5c083194\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "063aa81bebc6a90f7bedb9134b4ec966eaa130876816e5ba329f14d4c1fffe2b", + "regex": "(?i)^https?\\:\\/\\/pub\\-753c91e09cc64c469b21143db9d32e6f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "886a8023eff56f7f25c4d2371c560df2c2f5effeaabb8b90c0efe6b37479ff01", + "regex": "." + }, + { + "hash": "217593d3ee06123a0820e6cc01322167da1d29f1b7210ab1d2e445b530741b21", + "regex": "." + }, + { + "hash": "1bacd081eeb3dee1987c078fcd593c766116550075f10f1e1d5cdc661b4dee04", + "regex": "(?i)^https?\\:\\/\\/rahulkumar0180\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b591afe7b6fd6310440d5d3dc9c096956826ca333bea75942e3b6e209193dcc5", + "regex": "." + }, + { + "hash": "c2c2f75b4db9bc48bcc319cc24f604b127667d4af5404d6b7dc0feded0c164ca", + "regex": "." + }, + { + "hash": "0ca76cc835bde5711e082445325fd6d91c30702e4592a4841f8f927e16dfa12a", + "regex": "." + }, + { + "hash": "5670476798d2d2cd7d92f9961fadd2b88101b86bb74b12604c97f8f3d7c0561e", + "regex": "(?i)^https?\\:\\/\\/naveenkiot018\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "71ab4262cd96b80edb65cf323abcc80d2d8aa1adf3027c63e109bbefd209cb20", + "regex": "(?i)^https?\\:\\/\\/pub\\-d1cac75d8e0f462e8ef72f2007998ad2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "64d8e706533ed798f6b228c4ba901402bdf4fc34666adaea76f22c7a36755f4f", + "regex": "(?i)^https?\\:\\/\\/pub\\-50afbe76ec364999b432a00bcdac766c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "be7778d791961320bafba079618362abb537c0790e0a178bc35bfdea55512479", + "regex": "." + }, + { + "hash": "3bf68eff7cc39aad8fa9cd18b8e7110ac5baf695a90f242db02a1dfa0fd090c1", + "regex": "." + }, + { + "hash": "a2feeecc1392b6f1217de3d040848f953c9cc14790ebda8cd8678508efb751a7", + "regex": "(?i)^https?\\:\\/\\/jkhgjkjkkhk5\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5dab0d1937e9a2005fdfb61df704008dadb7b85c1cd3b0b5bc490d6e9a9ac74b", + "regex": "(?i)^https?\\:\\/\\/abdulsaeed123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bb1edac5a9f5021f18073e586b1beb3bfbcae48969a3036fd6c0c20756f27629", + "regex": "(?i)^https?\\:\\/\\/mayurip\\-05\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e2ce017d0bb5d08defa7d2fbd8055dd1a31ea55a9773faf7c5aeecc075bf5fe5", + "regex": "." + }, + { + "hash": "5dfd782e047c87603e1505609d496f56562115decf94668ce0f5cc27e3782043", + "regex": "." + }, + { + "hash": "72ab3bd57cc131c5adb1f8ea937811728516f51896f9c8a4a54439abc1664fbf", + "regex": "(?i)^https?\\:\\/\\/keplr\\-link\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d1e95944f0c9ebf094e83fac28699c50414f1ddf580738119aa50377829a3a4", + "regex": "(?i)^https?\\:\\/\\/pub\\-8194603f32824bceafe068b49d3cabd2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dad60af71a61d08fde44029f5790db988aca6a865da8c72a1cfaa64d3beeb95d", + "regex": "(?i)^https?\\:\\/\\/noname968\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1e172bb0537d3874893124a42ea0f3533a706cdb4aa7028245890aa3be1e781f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+adl(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "baeae032e01d2647612de23962330cadeb38828513b86f977159dc869df3f890", + "regex": "." + }, + { + "hash": "07b0b75d52d76c1892d7acb393e2ccee1256052a40fe4c34c30b2fdbde12df93", + "regex": "." + }, + { + "hash": "de9e32857c1520dcdfefad568fa2983e026bcb0feeb6a34052da6ed893bda3ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "63945761451d08d68cdf7dd07e3bf679eac38c8db10ae459c41ef19609be140a", + "regex": "(?i)^https?\\:\\/\\/pub\\-a89205edfab14c8b92f76885d5348240\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "060aff67f0da16b59e8066f1cb83b24e8fd91b3c6801f4571d9e71902f54e5f8", + "regex": "(?i)^https?\\:\\/\\/fb\\-support2\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7f05d4a59b616cda182d1777190173558330506c730e18c45ffe820ffe694fad", + "regex": "(?i)^https?\\:\\/\\/mhgithub01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6e0c926bd8fed2f37c5cad9b570ecec6abc289a5c5792a5cc03c70e3f6d9aa9e", + "regex": "(?i)^https?\\:\\/\\/bipin3214\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "949581d60ceb8c98369a751dc9c810452ae06118cc6abf446ea9ffe93692ec61", + "regex": "." + }, + { + "hash": "c208665d4a715df690be4bd4e474ca9ef9680680b4ccd767da8a4bfea03d16a8", + "regex": "." + }, + { + "hash": "cd907d4da839c9b42e59bde0e63caba3ed03e7ce97aae7d301803b7c255631d9", + "regex": "." + }, + { + "hash": "af601775273f09785ca301061cc62eb4c069c0d1a70e5bfdcb5c3ed3a8317177", + "regex": "(?i)^https?\\:\\/\\/pub\\-be292318e1c041dca8db52f959c7ca12\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0031cf22f854dc34ac83688d08fa308db135aadcc2b40379505a88c8f2da5548", + "regex": "." + }, + { + "hash": "23496f0a0675352316588bd16572551ecc894328e138c083610eb7a78ebee794", + "regex": "(?i)^https?\\:\\/\\/telstra\\-102998\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f72ca111693831c3008a6c4942aeda400c8014a798b99ad6d77a548e320f5b5b", + "regex": "." + }, + { + "hash": "2bfd83a67769a5c93f541e1e7e21dbcb5b13831015bdd955ffe90535b644d7c2", + "regex": "(?i)^https?\\:\\/\\/cxnbdjsj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1e9bbbb71de4addc6713b3c32c1c9f5b69cc35d37a12dd06284a1738003600e8", + "regex": "(?i)^https?\\:\\/\\/cxnbdjsj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8e641937cb59976d3dff768f6ddbfa67dd7892ee24a15a37a0e087b88ed7e22d", + "regex": "(?i)^https?\\:\\/\\/cxnbdjsj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bc9e2abd03f4da224b479a74e863b4ac65a9db6625eae6cc454b255a704939f0", + "regex": "(?i)^https?\\:\\/\\/cxnbdjsj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bcf268d1e9dba17de0ea12bf8daddefa6372079f5d5834045e4335a2703b820a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+212[\\/\\\\]+7273184[\\/\\\\]+1456[\\/\\\\]+0[\\/\\\\]+1891449[\\/\\\\]+1[\\/\\\\]+57745[\\/\\\\]+fca79c351e\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f4354d9aa5d70265f350f77dfd4a702e2d247de478f7f8a4ceb7c3885dac006f", + "regex": "(?i)^https?\\:\\/\\/idorangefr7\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f2c1ee5e1b232720afe6fa7280d75d200807d7a27d654136fff9b8050256acbe", + "regex": "(?i)^https?\\:\\/\\/pub\\-6bded165fbc247e18c68664182ef0427\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "73256018f2d02b7dd4693cd1ce38294b5b62d6c3e8d9c8725a08f2ba423e0de6", + "regex": "." + }, + { + "hash": "c2a363c0692779a63a2a194ff53cac12baac70482d3cde6fc182acc439fb6545", + "regex": "." + }, + { + "hash": "6b779da712993b11f3f9d28e453033636c837f1255a8357e93556c274082afe4", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84a649152549f3fdfb2f3163b6be684fbd6031e756f20db6d8fe9c8229dd7c32", + "regex": "(?i)^https?\\:\\/\\/abdullahabdu786\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e1b4c7917e1bd00c2d89b86d564ff31c7e739e280896580b58050d20e0684e73", + "regex": "(?i)^https?\\:\\/\\/pub\\-08937d277b40463591895488c8e849f2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "10636d212994edd0b787c3dbe865c748d9003e5e42f63e111fc6c2c4729c46eb", + "regex": "." + }, + { + "hash": "a01d8ca9b11181e87dd812acce58019177c5e5cd021ef4b1c15ee4b5f9576f07", + "regex": "(?i)^https?\\:\\/\\/frf121\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1a9f58ecf2124f4d934c357cde14d4cf9935e2db08e96842270f57da01341a14", + "regex": "(?i)^https?\\:\\/\\/telstra\\-107250\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e7688602c71cb9f3fc6c8d3706b2ca9ae10ea7456e61aeeabb15d23f3fcd63df", + "regex": "." + }, + { + "hash": "6d2f86a619346dade316408b770465d838d2bdf3a0ca0248a77f19902c31de6f", + "regex": "(?i)^https?\\:\\/\\/robloxbloomeffect\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "626d6de6f222bc121839e34087b4289ae7833116cff48e846f3552d606727256", + "regex": "(?i)^https?\\:\\/\\/robloxbloomeffect\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "44ede06ef2a97bdd51c1bb2997e4f3930d8c9e813466ea2cd33ab4cb480c1020", + "regex": "(?i)^https?\\:\\/\\/robloxbloomeffect\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "277a3729c062e5b01bfe2abc11200dff6df183da5071605f07bfc6db4a7a0873", + "regex": "(?i)^https?\\:\\/\\/robloxbloomeffect\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "364d9d09221ea74c50c0742d6052aca5cce78d52e4c3cd43768cc4003fada39a", + "regex": "(?i)^https?\\:\\/\\/robloxbloomeffect\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "26e3c5b81d112bd729fc7c7c737a19a7401af66259b6d6719dded846eb4da652", + "regex": "(?i)^https?\\:\\/\\/tgfyhdbf6tbhhgedf6dbdfyhtd6rhbgf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "35120252c4ae360ba9f9ae9c35fe99569d5c7aa05e3273c64beec2aa86a391cf", + "regex": "." + }, + { + "hash": "38a8e3274d8f7cc26a786ff5b767b244ac5c796e76925a38a14b9ef2080adbfb", + "regex": "(?i)^https?\\:\\/\\/pub\\-5dad2debed104bb9914c5010f4e1b91c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "852ee9a8753bf8b0b6e971702e8352b0a73bf48fb80bbbfbec2461d8e4032ce0", + "regex": "(?i)^https?\\:\\/\\/britama002\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "476065b8f38141424ceed31f06de87b4a085e1fcab4bc459efe3ca25881a5ca5", + "regex": "(?i)^https?\\:\\/\\/pub\\-0d71f69fe1704188af1ff9f11c4cb8f7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54032accaee278f00d77a45f842703ecf2e5239ab157a14308167e3a8c11b7", + "regex": "." + }, + { + "hash": "68848a7fd96134eff3a6e8ca04958f07251af26a0b26ffee3c516a0cff897478", + "regex": "(?i)^https?\\:\\/\\/pub\\-62cc9ea9d96c4161a594a6e20f3131c4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bf931a6ddb9dd3b79cb08c30679e1e2d220dc11cea61c0630021273b7a8d44a5", + "regex": "." + }, + { + "hash": "032a529f77cd6e15134647118705b7084ab04e4f58427236780a81b21b0b6973", + "regex": "." + }, + { + "hash": "99e6311922194f3233118681a98af70ad058cf9dfd6d7b8c5a2bb1123c710866", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeclothesonrobloxapril2021\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71684cc78bf65bdce21331cbfadbe50d60464b95295721726747870a1d179533", + "regex": "." + }, + { + "hash": "e0bacfed99b057d1d6cfc49ec44eb5af2713a98b89e50e7e27b15b641568dd3d", + "regex": "." + }, + { + "hash": "2fbdbd00ab9f328f692fb972911b057f901dd95d3cb4199aeca5886ecd8d598f", + "regex": "(?i)^https?\\:\\/\\/alibel078\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fa4139d748d9fe1cadf36668baf1c5a9d0274ef84f2a3b99fc7c1e056871f396", + "regex": "(?i)^https?\\:\\/\\/www\\.firstcreditsuisse\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "70c3e6d7ae6c62470a6899edd6b7835c60356e61e184aeedc0b6d36024244950", + "regex": "(?i)^https?\\:\\/\\/pub\\-da0890dd4543473aa8e84f5a3c6e45bb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0f9181b649bee4cbfcab0714c531437fb920403c40c97c3edacfdeb6da24bab4", + "regex": "(?i)^https?\\:\\/\\/pub\\-2423de06b8844c9baca73ec84809ebd1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "288a85a04f1e534122d8008bbede3e3fba9d68b275875671cb69af172a7fadfc", + "regex": "(?i)^https?\\:\\/\\/pub\\-b9983a360cb7429bb9b7ffccb598f10e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3a95b353a2e4d1d6309c6810af67535e5956351805b37bfbb64bc5a461a9b04f", + "regex": "(?i)^https?\\:\\/\\/pub\\-ac5f9217332e4d1f992d647a505244b0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5df58aaa05fce558d43c3f5f42d39d0fa3f7855a44322fb00b7e7bfaa8b77001", + "regex": "." + }, + { + "hash": "9fd4addd33dad549f0aca5e9e512eadfb234d1ab2fffa6a8c43ea36a7856951d", + "regex": "." + }, + { + "hash": "31a617c4ea5a22a8401fcdec0ed9e83643478aed7e4f36f14ebc6dee6e9f148f", + "regex": "(?i)^https?\\:\\/\\/pub\\-22d5ffc54f724a5787cb09e31d83ac25\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9f63b529fbd20bcef75bc7816af674e995d497f2a89f9de63db37e02edb186be", + "regex": "." + }, + { + "hash": "08724bdf6a6833a603861e4429601e887740e69e7d9060aa7f62cdbc598807ce", + "regex": "." + }, + { + "hash": "06f1a461558c5e9753802398163dc72e34e90dd7c2541ebc9074da9dbd97ea01", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6b7caa3977372df522ec8571ef86905eee6d580c454d2b4ca5d44e48ddd7ffad", + "regex": "(?i)^https?\\:\\/\\/robloxmoneyhack2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ed81adb5019f766b859993d167bc3f93aa2b3a367bc4e9837f0903a61d3ec4dd", + "regex": "(?i)^https?\\:\\/\\/pub\\-04836febb1fc46fca4a8c225ef7d2a38\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d0a20f714433465a549799acc3360fde974e3b2e6c50635fe74b4b0321666214", + "regex": "(?i)^https?\\:\\/\\/pub\\-9d4718694da04aeaa856a25b7d8b1642\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fdec7e626915a32dd17c1c4518ce8d2422242728da3284583ab920d54b1bc7bd", + "regex": "." + }, + { + "hash": "c458716075a5f65551c7a6f5f8978a0a3f419dac5f19177e28da831a2d4f5b7f", + "regex": "(?i)^https?\\:\\/\\/everbio371\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9c77645624a095acda28e8d0cecb8cb2d988cd760db823d0f6a671b8a6471241", + "regex": "." + }, + { + "hash": "84546e65e67ff4792d1a540e93b649506743db6791b43329dba535280bd62bad", + "regex": "." + }, + { + "hash": "0aa9fd070c416ca128a4b4c188d8d76c14db3c88e279769559eb825a0c410448", + "regex": "." + }, + { + "hash": "f1a34bbd569a3540e5fbefd27c0246e9d130097d3044da2d05b132838f113f97", + "regex": "." + }, + { + "hash": "22d3eeea4956c213e3579fec9f9e589ae5949916358fb54873c32d4be0250953", + "regex": "(?i)^https?\\:\\/\\/pub\\-8afc6024bc964352891078dd9c3c0c5e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "25de702a864bce3af44e91225803a229e52a060faa2c36fd115a9f0b95a7b595", + "regex": "(?i)^https?\\:\\/\\/robloxmoneyhack2021\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d003ef5f90a08e2b2481b34e845723cf8585e06b9381b48516c5e9b1c7bcdfce", + "regex": "." + }, + { + "hash": "89e743278bd158d0711a62ed938e9badd8f719afae3c207794557ab321bd93c1", + "regex": "." + }, + { + "hash": "df8233fce34a3048f1d3372acf38f42c4834ce2e1245ea5482229162a40acdd5", + "regex": "." + }, + { + "hash": "6dfd79280fca71b2a36c1b4694857b52c999b443b93f90e17c958e94fe190cef", + "regex": "." + }, + { + "hash": "b228403353e3638003abb5942664dd68365e4a677c1a7bc82283b1bd424c4ce7", + "regex": "(?i)^https?\\:\\/\\/pub\\-9b0d2a1c72aa45f5a657444bfe375c6d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8f648dd0e7c9f76f3d9516c52d61f241b1b5a25c9bc57fa4f2e4cfc6ac9e7421", + "regex": "(?i)^https?\\:\\/\\/robloxmoneyhack2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c30191e9731a0cdc71613517fdfe50b656f0732f1a03836102b87385051e595c", + "regex": "(?i)^https?\\:\\/\\/jogandowolveslife3noroblox2021\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09285bb44a8b3a3e0e07ceee5ce7924a572c27dd8feac6f5785110ef3795a6f0", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e8105fb847f085df0861adc8ea214cf7c944e205b3e90ba810c85f7687ae4a8a", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e1b4764cb1dc728e4503344edbfdd878339579fcb65a8f8cbaf7f8c40efbc515", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c6d4d0042851104cf0d9fdb4ebfa54e12126e140e91180301925d59e75b33b67", + "regex": "." + }, + { + "hash": "e8e0e4ccc37fb0cd565ae22765d1c99a55a1a20779358c04a3e666c8dede4b2e", + "regex": "(?i)^https?\\:\\/\\/aprilrobloxrobuxpromocodes2019note4\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "817fcdb410993d7e71e0dcc33327e4ed0fc49e8597056e2a2e922d44d9b91d81", + "regex": "." + }, + { + "hash": "03972fb223e69e35212f47c70e27543c8d4c631498ac3d43047fb1ac800a5d02", + "regex": "(?i)^https?\\:\\/\\/howtosellstuffonrobloxandgetrobuxback\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f1f996ab704b6294eb8ff93d94299d72faee631527f7e602b51ad958631ab21", + "regex": "(?i)^https?\\:\\/\\/preodopremiumroblox2200robux\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ddd01ac372b60b32a25a31ec78652f6c7b1bebe4c06099a3d1a66d3d2bf4b983", + "regex": "." + }, + { + "hash": "1ea9259bc56585b1322ba2c82ab456a00c1990d22d5da2c1cd3cdf26dd31df4b", + "regex": "." + }, + { + "hash": "ec181e3d2eaeb376031d920b80ebad42aed362c885f09cbde4052b021e530c4f", + "regex": "(?i)^https?\\:\\/\\/pub\\-3ea1fac02e8243e2b20226b9aa87b6aa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e4ff7a1481c423fa86bb27b6c0b910936621ad0035050958df984f5e9ff8703f", + "regex": "." + }, + { + "hash": "14d9f1d44322a573efb62c547364c24dcc86ad4fc047eb26bdfa66cb8d02e067", + "regex": "." + }, + { + "hash": "9c5779e7db3be7b4a1a8cc5f4c0121ab93a7e20350a90a01773e69bdfbbba000", + "regex": "." + }, + { + "hash": "dd87b557fe5410071194f0d1fff6ab45f2061d1af3c81969315e3dabb40112f2", + "regex": "." + }, + { + "hash": "fb8e3b58e6f2c77dbf1a0cbff440eb4da018cb554e592aba6dcc9d8ec0c94110", + "regex": "(?i)^https?\\:\\/\\/www\\.xn\\-\\-krz\\-8na\\.de(?:\\:(?:80|443))?[\\/\\\\]+4d(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b3a0a885d2c8b35a0e872be466e4b8883b6233ea38ce48dd38db5b77a7066dee", + "regex": "." + }, + { + "hash": "4cd9aefdf022f1fb0e1363ff9dc0e62693e19137aa4e2ecc46b42080e3ca8ea4", + "regex": "(?i)^https?\\:\\/\\/pub\\-b8a366efd8534f168e9df9a4272905b9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8ea58cd93240fa2e200548e958583d96d43977aa1085abfd5464ca0ffea0ea2f", + "regex": "(?i)^https?\\:\\/\\/pub\\-e57e33d1b602496e94f2f1c2ce039846\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "23a3edc8eb14d996f71414b6edea3926f262e662b6eec5aa25638c5fff17e275", + "regex": "." + }, + { + "hash": "36e41ff5d94a4dbd433dd118e6a8b25334490bbefa86518188bf9283d3715c44", + "regex": "(?i)^https?\\:\\/\\/chemyellow382\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "264efc07052be5654405239bc0ff178bcf9d85f8040bbb79d1c8910bdb71c1fe", + "regex": "(?i)^https?\\:\\/\\/995532\\.top(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e0860714b2904a72faff9ab3163ae4f639d7feaab24cb91e5dbb16997a814d23", + "regex": "." + }, + { + "hash": "286797992375fc1c0f7f94b29a46571c0b81b6480da534ab0dd57838a15c1c3f", + "regex": "." + }, + { + "hash": "25152f3af317c203580a9fb94a9d6cda785be5e369ebc9fc925f10f7a49f9062", + "regex": "." + }, + { + "hash": "8c45ada5e7b8ca56baa94afa384beb7fdcae4942e638e742318f94b04c63d3f3", + "regex": "." + }, + { + "hash": "7ce208819e9b3c23a3b5958800ed0d0a65e8b38c65f07d8d789da58b407e6de3", + "regex": "." + }, + { + "hash": "1e7f3eac28ee91ce84e09ece7c55737fd45b9d4f9572e12edd48054982bd7302", + "regex": "." + }, + { + "hash": "ec5bbcb158b7d2e13f6bbf2551442194db3a2bafe358b6a6a466ffadfc217c8b", + "regex": "." + }, + { + "hash": "8378ffb05e5429700ac26e7d590be227ef5315f832e02047f7717b0411da87c2", + "regex": "(?i)^https?\\:\\/\\/pub\\-397237e34fed48d392fad0a56fd8dc2f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c655198e751d9cdba337d4ccea552739d6381045bf2131b8a77cb9a12277df10", + "regex": "(?i)^https?\\:\\/\\/pub\\-65a391e462e149e6bd3def1db0f5f32b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a2b63494f2b3583fc4e0c59a7f539d9b62c26e0df23af8aaf39d42d5abd51f7b", + "regex": "(?i)^https?\\:\\/\\/pub\\-2e95d5a5fe25437ca49019ab989bedd9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ed51e9fe894195436fde829a21d17aa27bf60c5571466ce7f0ff69b6e8416b63", + "regex": "." + }, + { + "hash": "5f68e4572d1605540d0661515136290ad3feaa6279f0fe073b90ba4ce6e028bc", + "regex": "(?i)^https?\\:\\/\\/shokeenk741\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "70bdc4e9c50eacf82bdb20ebf9c54727586cf925a889eccc0629e694d0051a21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+indexedu\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6538d2a68fd7bf119d05005d348bfe930e8af4f415e240a114d98c3346bf28ad", + "regex": "(?i)^https?\\:\\/\\/robloxpopularmusiccodes2019\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "107fa1a625c21f8c12d6d46ca4fb515e1688eb9129ee582ad2a9b04963f35e05", + "regex": "(?i)^https?\\:\\/\\/awanisha67\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "212a374c4887f29b148d637510621c5d7cf5504b708b6313a4eee80812f7ce0d", + "regex": "(?i)^https?\\:\\/\\/paypa1\\.webnode\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "cfe7b84289230a526fc25dc54eeb880482003a789fc2df9006476d2d2c8b6836", + "regex": "." + }, + { + "hash": "ce16d6e7d7a56ff236c490fe5b26a5eafd789a09179e3237f66ae5d487e0b88c", + "regex": "." + }, + { + "hash": "b27437c2753d8dbaf48e7bc918d22c002d197f89c258d4ce5432cc386913b541", + "regex": "(?i)^https?\\:\\/\\/maxly20\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b55da1725b37271326dbc8f84775d98c280dbe63ff509cfaa88425f6c2581cf1", + "regex": "." + }, + { + "hash": "fda60fd4ea02110bf1637ecf211fecedc24bb54f2c927f93587c11fdaa1b033d", + "regex": "." + }, + { + "hash": "6fb174152077a23f4c8815a55b22e3a6e1c150a68f8d9bd4b9fc2117f99c255d", + "regex": "." + }, + { + "hash": "6799b45ba73a675fb32d1bd368160a822aed93385a63a6b62c9a89918de0e3f0", + "regex": "." + }, + { + "hash": "90afb8e720b070e1b5bfbe767ef70d5aae5449f98d1ab73722015d788c40423f", + "regex": "." + }, + { + "hash": "d1efd4f65982e8fc0f3a95f5b6569741b5e2dff357f99853f5953a6918108478", + "regex": "." + }, + { + "hash": "506445614c47adf06efde325345239c3abb13f23deea7386952bdb320592e5d3", + "regex": "." + }, + { + "hash": "cb82e3fb1bfc975c0b5dc065fe9f4929c83ad1f94fce0d8b22dd7da33bf8c362", + "regex": "." + }, + { + "hash": "bf1b00e1ee0aaf833cbd9e72ece76322dbff3d0665b1dfb4374f32db128d583d", + "regex": "(?i)^https?\\:\\/\\/maine619\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e4f3e70cf19a1682a4f2787c672c631884b42a99cfd11080dd22e49ca3d32c68", + "regex": "." + }, + { + "hash": "6ca86f71cbb466921b98fb4bf9c6d0d6d3ca129da19d77c14438fa6e052974be", + "regex": "." + }, + { + "hash": "381bb88fbcbbd50f05c264a52e3a1b22628aa79de2b031313161ea054689d122", + "regex": "(?i)^https?\\:\\/\\/codesnoobsimulatorroblox2021\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab3cd87b457106ca76b94230d65c13610a9afae62f88d9a8f737937d9ad20f8e", + "regex": "." + }, + { + "hash": "eda6a8982673dfbc45b828be5d9a601a561fd4595ccdeef6a5e4b6e7a6371217", + "regex": "(?i)^https?\\:\\/\\/pub\\-bbce5433ebc04fa2910b732c58b6fa97\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8ea53f901ee83b33362f3b9c3de28f8caf65689b593a9da6382353b6a6fb1a1d", + "regex": "." + }, + { + "hash": "859e5b5f50042a4a15fe0184239bf621aac83be834e72dc0b2b1e0b2bf4ed805", + "regex": "(?i)^https?\\:\\/\\/pub\\-5111a2802caf4e8b90ecf3776f9c6294\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b45c716d4d9d0cf9f5bca1f90ec5aea4cfbcd9af010cd203de0a538ba1f1e575", + "regex": "." + }, + { + "hash": "ee680feffb82ab7bf1f0f8b1b9ea7cf0aa09b76e17b1998ace0f3fb3f1f16c4a", + "regex": "(?i)^https?\\:\\/\\/pub\\-4541c230bb1e470ab22337adb234f76e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8c84dd61af2f43574c7a80afc0c04165c9f4a3294f1d6b8fbcaad44da5c99816", + "regex": "(?i)^https?\\:\\/\\/pub\\-7666a6c5b3b442e89677afb4bdfb95a8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "54fac7f368465844f5978e196e7059ab7fd1ab5c1870dccea96b375afe45a7c0", + "regex": "." + }, + { + "hash": "034fc77f64902c3ff86d14366362f3890dc532d607013b2fa242b317e1c41251", + "regex": "." + }, + { + "hash": "5ef230974f22cf741006a083c4bc234c29078b357fa1f0d091450c7732ab417c", + "regex": "(?i)^https?\\:\\/\\/pub\\-ac5df07ae088404c91475727fad7a254\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "90817d183000a9b6040273faca7175c8bd8f3b1a465e4b7ee83354d21f3d2da9", + "regex": "." + }, + { + "hash": "4e5a5b9da64948249920b501d7e40bfd831e336490f899b7727f9be69c63c0e4", + "regex": "." + }, + { + "hash": "e22d75471ffbd4938cd159a89e9aa69342a98c2d246aa398b21fd852788edfdf", + "regex": "." + }, + { + "hash": "c969548328bef07476cc48e7520fc88302065aaa48dad2ac8c6af9d3580b1bad", + "regex": "." + }, + { + "hash": "f1ce510ab309d154b56744c3ec86f523aa2dfffad058a77fae63e8e36bc9a26f", + "regex": "(?i)^https?\\:\\/\\/mrx1812\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "595756b7cd4e999ac3f6710608486608c52d7cb34dcb63e6c29beca796b158b7", + "regex": "." + }, + { + "hash": "eb6bc89b4bff0e63915e42100eb2c777e572d2ec642143d7ca5de3a4e6fb15ce", + "regex": "." + }, + { + "hash": "1d02ea3ef589947bfe7402fe384aa770a6c4b6493215b683d498d7d00e637ba1", + "regex": "(?i)^https?\\:\\/\\/ghfgh345\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1b4ba02d3f5ed2d73607bc13c343c9d2479a3a53a6e0e95652b5c90938d57974", + "regex": "(?i)^https?\\:\\/\\/saniyagupta373\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b754def5c62b374b7b66a0d93f12b940879f31a1b7668a5ea4726d36c2027574", + "regex": "." + }, + { + "hash": "a4349056e73c31c57839a313593cc898d203a470b4502a9c45a8de25e75f6cee", + "regex": "(?i)^https?\\:\\/\\/jcj02\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a089b69c626210fbe0bf8fb8257bbca6da5cb8d5df96fe08a96bd9cc5e603cc6", + "regex": "." + }, + { + "hash": "b5092c882887dbc05dee6dc2cc91384c5fb44a23f1c5aeaf3c9ad81a3365e5e3", + "regex": "(?i)^https?\\:\\/\\/pub\\-a81aa4bbf83846b8a892985d5bbc3a6f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8d31005e6d24657172a9e14ad96a1f7a9c57928a67b2eea60b50157a2cdac7f1", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxhackinstantproof2021\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "95679bc80a0551f997306957706552a45ead9cdefe44e651371b29904643a1b9", + "regex": "." + }, + { + "hash": "00f6fcd80e4587848db17f8ffe0f42c6a2b3d68984c109389db5dd41090cc299", + "regex": "(?i)^https?\\:\\/\\/pub\\-30b8a72f221f4b6baec6b3d59b72d2d9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a93c1cce5ccb1c6e2d32c3d284e09301773ea63852e5eabb2a8b5b469d548db7", + "regex": "(?i)^https?\\:\\/\\/pub\\-9cc406c2bb3a444abb3d2d01d6a3a9bc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a729e0ac97036e6e24601a56bbdf33a1dae430fd127757e148f5aa331598289f", + "regex": "." + }, + { + "hash": "706d1b72df9d8804991193ab2e72be29187e57b36aad9b879d1f97a12551c019", + "regex": "(?i)^https?\\:\\/\\/elwazir\\-05\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2da3c824ccdfeec205eb3b928c37b425fef7821a4ac2240abe92d61bfd853e5d", + "regex": "(?i)^https?\\:\\/\\/khushik9105\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7567a5977dc06e25f476b9562ab8f6b21e38c2faf7ecdc28f5a513e41a3aa7d8", + "regex": "." + }, + { + "hash": "d4274d76c6598a76a05bf9ce8aa0e7f7f99b344e370990195e03e2036bfd2b4f", + "regex": "." + }, + { + "hash": "ed5786e1f20955a192ac06224029acdf18725a3454bc18762f53349cd0efbe2b", + "regex": "." + }, + { + "hash": "bf1fbcb774e419b3340b9a7a9db503ced716ad66df3539aaa5f0efc317e2bcd2", + "regex": "(?i)^https?\\:\\/\\/pub\\-736653a431ce4659be5941b9aa21ffd9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f08f502c8cd96c9fc333b1afc905ce825d6c94d38329c544d2c416a898a1bf11", + "regex": "." + }, + { + "hash": "cbc3522484667f0b87bd6a495792416c9ed7e1feeccbaee1566c72f550b85a4f", + "regex": "." + }, + { + "hash": "eebba076f905d28a0e70ad1124e9b46d62dc421af0d77a0cd44a5f1950e0933e", + "regex": "." + }, + { + "hash": "161d0389ef26ed4bf4ca2a1cac7f254094379d15183fef80675a842449508f4a", + "regex": "." + }, + { + "hash": "032a671a5e1d2a5e3c2e01082c1bd2f8363570ee7c93c8e55b2cd6521f6c26a9", + "regex": "." + }, + { + "hash": "559b0ceac1c7decda79bf22db3ecb8cd137a262dd68adec2367193e4e6120f9a", + "regex": "." + }, + { + "hash": "a4b558b148714d81868793a0cd22c1cd04e1a632c5326e1b49f52cf6d811bab6", + "regex": "(?i)^https?\\:\\/\\/telstra\\-107033\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d36d2451d8351480c21392222ea506e28db5dc26ad74c763a9a5a01ed9921166", + "regex": "." + }, + { + "hash": "251552492171128b4f85e5b828d8760331eff8b1796422a9bc486006e9ed4922", + "regex": "." + }, + { + "hash": "7d3563ee5e7c42b7d88a82e71f5d1f4fc8488d62eca70906afd97e04ef7bb289", + "regex": "." + }, + { + "hash": "33bb5ecc62490b0605bc6b785bcf1225ab6955837e69549db174a6af7cc14176", + "regex": "(?i)^https?\\:\\/\\/telstra\\-109893\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d81255d2e49571706d41c3de0cded7b9050bd5b332573201c942eaa78b06eced", + "regex": "." + }, + { + "hash": "d511e865a1b005838aa2762daeae61a1a6a1cbbbed4b453877b64bee4192a890", + "regex": "(?i)^https?\\:\\/\\/pub\\-f644c107c0aa4e55b7c24c5273160d6e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "082e218b3db455391f3c46ce49f9fc0839c90e966da67aac54fd22b9173cb23f", + "regex": "." + }, + { + "hash": "476fb22318e8c43e57ba8f27ff6aa537c2d12608e86ffbb6fdc3c047b48d6870", + "regex": "(?i)^https?\\:\\/\\/rakesh799\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "02550bbcbd99d521f4e655eb997326132e230946d1b48441f68a5fb2d66857e6", + "regex": "(?i)^https?\\:\\/\\/khushwant\\-singh1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c5cdd8375a48c7b6657450d60c6dc4498e36dea54ea1805a1e4bbf441fee68ec", + "regex": "." + }, + { + "hash": "4bf60236f8d4d1ab4d3cbaebc84dcb0c88d841b9c290583a4fef589ab18e06ca", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c7adcac5fa4a5d6bcbfd220ab19d62e2533aec5d891e13273d1f8f044b095af2", + "regex": "(?i)^https?\\:\\/\\/31648619846\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9a2f87638567c1137ae4b079f6b4bd5cb28011492e55dab57fbcaa3f515f5314", + "regex": "(?i)^https?\\:\\/\\/pub\\-e6aca7d4cf40481b8b5395ee48dce8cf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ff62817741be9a9f48fc60d99d36a983512de51cdca49fc24a4ea29744d95665", + "regex": "." + }, + { + "hash": "ff0405c8b7349b2911d8512e83e68b7dbc3765808c3b9af1345b51635f1580aa", + "regex": "(?i)^https?\\:\\/\\/sdhbfhsdbfhsd555\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a0330248584ce780ce5fd01ff076fa97417e765b42f6294f50ca2ba6c19a0f5d", + "regex": "(?i)^https?\\:\\/\\/sdfhjsbfhjbsdhjf565454\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b8d6e7baa4b7eecb11566ff40490f82477c52380def69ad9a63ad4a4ff141509", + "regex": "(?i)^https?\\:\\/\\/sdfhjsbfhjbsdhjf565454\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ab36cf43adb68c9defa71cdce557db2a10e62f6cae85dcd0c734aa40aa23e8bc", + "regex": "(?i)^https?\\:\\/\\/argha200\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fe4156b80c8ba56d66af900c4adbe2e34b11f6eae4ce1bf4e743ec69367f3d78", + "regex": "(?i)^https?\\:\\/\\/5ghhrhg333fg3\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0e841bda8ed0c0e6c82ed5e818a42a9560827310169a196772f289a1c300eff5", + "regex": "(?i)^https?\\:\\/\\/pub\\-2a07c333be1c42c18cd4cc524d13a579\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "db34deaf5ffd289e1c4139969e3956877514a63d6b4c151e531100dee8195ffa", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailand445\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b4608cffc35c060c670cb4c1659d6ab24f1c89f5e9cbbc679d536b3706d497f6", + "regex": "(?i)^https?\\:\\/\\/sdfdsuuhdfg665\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6e972ea317fdd860895e1a81eb2f827dfa1c7a11eacc32fccd3444557249bdcc", + "regex": "." + }, + { + "hash": "77baac4fc0cd0c904042601799212ae42fc397c9f99f4421141735797aa547af", + "regex": "(?i)^https?\\:\\/\\/yenzx0\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "807d69cd7edb0a9f92cc0e07b1712529b669838865ff4d9b9dfdb4209ae6b248", + "regex": "." + }, + { + "hash": "b648a8d0a48bc82d4843fda28ce028abb51ae1312982973961b7af6907b27209", + "regex": "." + }, + { + "hash": "875c7a12ce3dc8bc055eaf99824c721db67d7a07c8364842bb642780aa0e966d", + "regex": "." + }, + { + "hash": "12b4efb8913016cc3a57480dab2cb1966ea25266b4d52aac08dbd25f67f1867b", + "regex": "." + }, + { + "hash": "a641666618a544261ce282f3dbe36076d03f560d6969d196ed573c936c1cf7bc", + "regex": "(?i)^https?\\:\\/\\/bafkreiac2ku44rdyperhpqwxrz6kfl4a2ygnpdvpxgafsw6kai5sp2m3ni\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "d02944404602ddc9ee805bd940c551a7cc262771dc00cb54c42cdaf64af9089e", + "regex": "." + }, + { + "hash": "8bde1bd260b4264f75d8107bf26cb737e1d5b082d421057d9f78b2f7c23865ff", + "regex": "." + }, + { + "hash": "258ea637282cf6a98f961922542feb831a6c491ef4779ebf33e99268dee1a83f", + "regex": "." + }, + { + "hash": "34a492ad6427948c8693a9f16cd29963782ac5f29dd436795d392ab70e9cc566", + "regex": "." + }, + { + "hash": "6980ae65aba4b285479fc632544d335486e1505f2a31c0d2745a8288b8d58652", + "regex": "." + }, + { + "hash": "7d24f88cf6a43909eb0f4743ec8f74a11a178a569bb537a131dd9317eb5d3852", + "regex": "." + }, + { + "hash": "9bb5f2ef7097e68f8aefcd6388797dd96b337223cfeb0a7b4fc65f4cc01eb364", + "regex": "(?i)^https?\\:\\/\\/nikunjpatel2411\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "417833bb1b113572fe8d4f4b6389d6b2908dbd255d723e75ac817a88aa0d36f4", + "regex": "." + }, + { + "hash": "0c876121c4dc6c8b846c5958be5217d4baae65f13a6f892c215b8f629dfc9d82", + "regex": "." + }, + { + "hash": "b1f0ac1e2f9abf75c9d47e403dd8086792f647b0868d75c661a2322124c1db4b", + "regex": "." + }, + { + "hash": "fbb28d6f0313c5afea5ba6b70b6847e4e30816568aaae85caf0ecf89b380f5ef", + "regex": "." + }, + { + "hash": "f951b81c7d01cde9dfeadea21639b2cf1fc39bb417e1a0d8231f7f372cb317f8", + "regex": "(?i)^https?\\:\\/\\/pub\\-d721b3c010bd4e619e1700a9a5ded1c5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9ca4d568b9da5a57f21c99f395031e52fb13b7cf56f43ea03bc3834d6199c92c", + "regex": "." + }, + { + "hash": "8622736c4f04ce845f15739480ecbe7908c8abc8ad7f8287fe8bd22b5f0c875c", + "regex": "(?i)^https?\\:\\/\\/khushir21\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f7f049bcb91dd44b1af7859eb1839931ed0fb1042085556c2cd709d5ce0fb0aa", + "regex": "(?i)^https?\\:\\/\\/pub\\-4fb7055a85a34096a12cb0057fa5009e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a3e3b5b23b4273cb481b5d62429fac2b8dea225f5900fefbc1cc91686f2e8dfd", + "regex": "." + }, + { + "hash": "028edbf3d73944edea88e02cc3a381ae77b682a7a874ace4dd09bd7c1c3aacfc", + "regex": "." + }, + { + "hash": "3fc0494e7ff44bbe5ca6c3420291252028772212f9d3e7623d00b89a77d43353", + "regex": "." + }, + { + "hash": "81b412635873086506dc44da39ae43a29509ecfc5af1091ae1948afd3e134935", + "regex": "." + }, + { + "hash": "3a6a5f659e96e21786fdc0236d8ba4d1b96d35547030dc50e6af986d6e86c8e7", + "regex": "." + }, + { + "hash": "3524537f20ed83ae69b61a9a2d5a7c5b6f41a652c1fecf4d167a84824be7af59", + "regex": "." + }, + { + "hash": "77d9bb81abb7bc2d3fbb2030625f1d828c11a89ebfa0525aa3971a70e38a5143", + "regex": "." + }, + { + "hash": "87aaea9f946ea176262df5a5a77a7bca587598a6173de60a5dad17c70e6a7c25", + "regex": "." + }, + { + "hash": "b4699ec33c89aba01f35e04ba194a1cb82557bd94d2f7a5485c74e31aea6c1dd", + "regex": "." + }, + { + "hash": "948fc62a5e874d3433941d41c239a4f936a423281054a95f50ad0a0a21f7191e", + "regex": "." + }, + { + "hash": "8afaab6ea44d48eb371dbcf2a9d0b00f354d70d8c36e88c4ef058f604c4d2c17", + "regex": "(?i)^https?\\:\\/\\/pub\\-04376d0ae7cf4fa6968923b7597b9cc0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cdbf47d502b2a67d4ea4fed985f35d8a792be80a266bb5e52639073146cf42df", + "regex": "(?i)^https?\\:\\/\\/pub\\-bf773cfe2d324344b029934dc51cb61a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f752b3bf4a06422ec25181cf8daa70665f7616fde2899456305c85d737d7b", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4g4gh4hv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1bb07e17c43bc5eb7e9e3d27425dc2fd251ef8f2e57ff8691516a2a3f62ed858", + "regex": "(?i)^https?\\:\\/\\/pub\\-aeb41c0022fc456596cb2440c0de5a7a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "81bc3546c14a17277c0421465486e8c925eafd1d261de6b485fa89182fe2f712", + "regex": "." + }, + { + "hash": "fda6c2ce1bf93247dc379aaa4077687b69108c9640a1c95d44007a35e02dc8ab", + "regex": "." + }, + { + "hash": "13bff541a36b798b7eab1d027c29a0546fb9c5249ee868b43d43dcf0463da3e6", + "regex": "." + }, + { + "hash": "84a6db26822bdf04c051dc1ae0e09d9efc3619e6c85a1d13deadf28800a53c81", + "regex": "." + }, + { + "hash": "e8b9dca3a7ce0d6db6e04b91cf67d7a36cde43514423ab9d775d6795e8a1fe34", + "regex": "." + }, + { + "hash": "20eac49e269c340e316d840f424b552411751f7f48152ccf0268dcd53bb74add", + "regex": "." + }, + { + "hash": "cf06bcc1a822839361e383aeb8190e129b72bfd6d763be9b997b124fe78840bd", + "regex": "." + }, + { + "hash": "42da8e7bbe6c22ecd047737dc5bc674b9b633cc623907a2ea9b13fee8361b619", + "regex": "." + }, + { + "hash": "5957466f81ca53bc2f378ed7a8d4100d7c20d216877f76880c1bc0fc16b7b7a3", + "regex": "." + }, + { + "hash": "fb5cd5c3bc0aed287d0d889811ecb2382920608385f01f825b89dcddde81c388", + "regex": "." + }, + { + "hash": "f128f349decd9125e949fb5c4d4b639050509b0c152dd91d4a130aadd3cab93b", + "regex": "." + }, + { + "hash": "322606952759a25a1f0e1b7205ddb14b40cb16a2dda66381537de4d88197f65a", + "regex": "." + }, + { + "hash": "a66d452dcccde3761f83731a0d8277b6eb39105ba2cf8a6326834b4323efa44e", + "regex": "." + }, + { + "hash": "5e70a57d3c53010c310d5a545c425b7d95a722a88099c1b7fb05e9947c2d5841", + "regex": "." + }, + { + "hash": "57247325eb5d0ce436b9630a0f7ef0f0a4b6b8ea6cfdc27b0e5eca7d7f496699", + "regex": "." + }, + { + "hash": "0dfbeaf0211c52bf513a539c9dbad5df394ce650cf566bf51e655342b734573b", + "regex": "." + }, + { + "hash": "78fd82a9c21e9f5795b5949c30bc6aa97d75b621c27f75880e37f48c225ce1f3", + "regex": "." + }, + { + "hash": "dadd5539742d76380902fb62160c6914820d8bb4ac2925a6bfbd820003ddf15e", + "regex": "." + }, + { + "hash": "a1ebfc975690ccf6dedff3d8859a3ed852295636593eb0b9b915f7711d8193e5", + "regex": "." + }, + { + "hash": "828900c25f7a474b19f8d1cf22739ef9e48d860dcfd18a599496a8714aa070a3", + "regex": "." + }, + { + "hash": "ec6485307d96c640f6d00dd097a18b7539418eb4a340d36cc106c8045d10fd29", + "regex": "." + }, + { + "hash": "a242c5f1c240a5665d6a787b80e5ba4e4210b86be811b4f46b5e74c59b62082f", + "regex": "." + }, + { + "hash": "a5b008659eff0ff1ca245d699fe0a02d34aa88541c4661e9fb48d5b086895f6c", + "regex": "." + }, + { + "hash": "f524c81f3381baa4bd5db085f6766b0f9653f98c8d6f3c01070ec92ee4682d01", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "98697ec8680851702e5264bb8af0fd82360c541a2475e3df1e80966fbc0bb095", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cf758f184e8ccb72db9b519aceaa191042237328e3f9cd1419741847ee130df3", + "regex": "." + }, + { + "hash": "6ed7deabda12ea349604166da38996b6635f59949fa3aa423e770c9f9fac55dd", + "regex": "." + }, + { + "hash": "e7a667200d3a756cd26928619641827f8d6c605584e71eef31202bdb52052bcc", + "regex": "(?i)^https?\\:\\/\\/zzqqxxzzqq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1069063ac2938f2461cca7b3fdf68fb59b045a5e77d48b4fc00804d17cbc1e3e", + "regex": "." + }, + { + "hash": "c2f3c13e7b865c40c3c5e2620c95a119a8868f41296c684c177391d2e7184e28", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e4911fac11d530f3024c4e0165dabf37f5a3981f6a437ae9b92d308220d38aea", + "regex": "(?i)^https?\\:\\/\\/xxdingxin\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a7a68e5dd61078d475d0fd15d948ad187f63f1c58af431903a0f18054cc6497d", + "regex": "(?i)^https?\\:\\/\\/zzxza1cxz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6039f6f391efbbaea00a3d6d1bc12933aeaf26cd98ce9423177eb954b32d9375", + "regex": "(?i)^https?\\:\\/\\/xczzvznbmgh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f15de466b07f2ebdac4f23b150ceb6667a89bddba32f0da67fb56b4e1c5c3437", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify\\.html(?:\\?|$)" + }, + { + "hash": "a1764907e866b1ea229e51ed9f2d2c2ed6fe3d4be5544c3ef8173245cfa423c3", + "regex": "(?i)^https?\\:\\/\\/ekta1211\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7622a208a6d8c48a99cb68504d68caad15ff09cf48b3474abfd5305d9047ca58", + "regex": "(?i)^https?\\:\\/\\/bafybeidq5gndun5zosdvgjnvoeitwkq53j7nmlsmvskwexdtslg7egmiui\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "eba37d704603cb2432e1ae4b742c95879b1a0b7bffa3d8b627a2edd35d33fcb9", + "regex": "." + }, + { + "hash": "529dade97af4ebc19a30526b1c494cdc7f2426ed804a9c7c6c843c3025f98e2e", + "regex": "." + }, + { + "hash": "2d8532a5b8a3e8862de7329129dda09edbbe6dfbb21e85e6481035c45b2e0d9e", + "regex": "." + }, + { + "hash": "3765b1652e353a1a1393d9e719fc4dd583fa5da261319e6fa4d2ddf3955e0024", + "regex": "(?i)^https?\\:\\/\\/1231146469849\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "47904103bf7739a2c7deee3922ec2520be9873a331d6ba64bfa48450cd9656b1", + "regex": "(?i)^https?\\:\\/\\/1231146469849\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9a05fc42ae3cef115036a79ec54d6eb9b7901c98433b1385cfa826735f70cfac", + "regex": "." + }, + { + "hash": "b9ae92d0473dcb2c427afbb7befa3b8bfca2fec5dfa743c8d737030c231b735f", + "regex": "." + }, + { + "hash": "64d84e1af2c2edac6cf07756c776b9a528bfa31c97e6d115f6f9b001721877b2", + "regex": "." + }, + { + "hash": "fa1c875d4001cf945ce03d5a1b936837d6623fef6b92360c946a2dd8149a4f64", + "regex": "(?i)^https?\\:\\/\\/pranshugupta28\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7c3f2d8793a84d95c354dd3c34508dd8df1b6741305db02e1c72b86a144d2193", + "regex": "." + }, + { + "hash": "c3159e85ee879c5590ce74f8e190f689ed903a077f7aa72e4b0381acc96b0aa8", + "regex": "." + }, + { + "hash": "5db148f10b667b872c15d8b67beacae5c6c3a231c313923e6c9f4f3540cce5af", + "regex": "." + }, + { + "hash": "6775529763deabcd9097e29c28c2369d1a9c5663a24055f252a5846cbbadd64e", + "regex": "." + }, + { + "hash": "7644c0f4af1087f06b7792d9251bce6c8f094c0e80aa12a075cd8ad20fa3beaa", + "regex": "(?i)^https?\\:\\/\\/fakeserhelpsreivew\\-facesonseriengoies\\-16837\\.io\\.vn(?:\\:(?:80|443))?" + }, + { + "hash": "db201601150ec40bc62c0c4ba57c172dc74d0dd370f8fbe357237b34e7628d6b", + "regex": "." + }, + { + "hash": "27d031f090ec88f44c888bb2910ca6a797b65b7312e9b22457b25f958185dcdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "36c22d0d91ce51f894db8606decf5c0830f67c584cd614048872e9238f56bb32", + "regex": "." + }, + { + "hash": "df604d8c05c1ea40a359f58fa963459b3b0b89d4532d9c8e6c863f6445c30478", + "regex": "(?i)^https?\\:\\/\\/riteshreddy2000\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9afbd478fb68423df3db2e918827dd63334ea4f831d1585a5fe31cafbfa486ae", + "regex": "(?i)^https?\\:\\/\\/pub\\-20cfdc3c226149f1ad785b63a8a97ca6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f78cc7cb14ca06697b5468a43cae68f98587a2672dc2d742d788c2c57b11d51a", + "regex": "." + }, + { + "hash": "27457bc0098cd6ebc8704e4de8fedafc9324ffa46ad8a362500b5e8883a1a514", + "regex": "." + }, + { + "hash": "9019fc85bd64c2e152d500c0c8ed01b29b70f55b9b8fbd866f00bc2c5c96c5c9", + "regex": "(?i)^https?\\:\\/\\/mail\\.fakeserhelpsreivew\\-facesonseriengoies\\-16837\\.io\\.vn(?:\\:(?:80|443))?" + }, + { + "hash": "85713c51a4d9e5cef420b709f0369c533e98ebe86be41354a9946300f158589f", + "regex": "(?i)^https?\\:\\/\\/www\\.fakeserhelpsreivew\\-facesonseriengoies\\-16837\\.io\\.vn(?:\\:(?:80|443))?" + }, + { + "hash": "c961df025ddeb30cf25dd6bb8dd9d314d0728f480e23f5ad7ce0b58f01e42887", + "regex": "(?i)^https?\\:\\/\\/pub\\-99ce03a791664004baccaea9761d25ca\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "db5e3cb1af93a23b37dd1093d1167208e66241eac9c02d0e3000bd1760e3f92b", + "regex": "(?i)^https?\\:\\/\\/aakashho1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c5796e98538ca0618a27c6ed39dfecccd25d58e07ea2668315f3316e88fa88c4", + "regex": "." + }, + { + "hash": "5980d8961611bb87fe6c35b3db534efef14b9b890ce26a971bf4ea44b1c5d925", + "regex": "." + }, + { + "hash": "e7148aa2d7b804e6052b2f646d877977f1ca884c1eb106685d7767627cad4c6c", + "regex": "." + }, + { + "hash": "ab6543d363c54c7ad5980f0054570a7d3dbaff21a075934234bedc55dd1a6314", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "683ccd5b72c864830054cf1e8550da0d0fa17fe6dbb524babca88187ff4974d3", + "regex": "." + }, + { + "hash": "71a4f8f68a6b9a6ab43fa46a1ab46cce29e4cb848e5e4e1fc7bfe180c07c19aa", + "regex": "." + }, + { + "hash": "4b52f2a6df30998861a5a43eff8cee5c98ca0f623a7ba6577d354b1bf846876e", + "regex": "." + }, + { + "hash": "6b78d2f0be0c2068cd6e20af84955056326526c5c2bfc2b1a43c22d8938a4fb4", + "regex": "." + }, + { + "hash": "71f1a3ab341515763382418a8c78ae4ef1ae312afdf511498e9e4088f0669458", + "regex": "." + }, + { + "hash": "9cb8fee7855b4b7176bcf6519d11d8dfd4d21df1a9d2f62859dfb44a1c6e80a7", + "regex": "(?i)^https?\\:\\/\\/dgfdgfdgrt454\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ea3c92b95a3a0bb1cd296fd2e78ee55be5f0e183567f30ed5d12b31076888f45", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c20fe8838165b7554d58c04c2ce6b676aa4edc7ea722192b2961f2a82e3ed2e6", + "regex": "." + }, + { + "hash": "4e81a6409da80d361ee58e46a16f26de2f4f9322f12397bcee40e3e21b66db43", + "regex": "." + }, + { + "hash": "0f2cdabd552d8a087f0ce318d59bed727a82c7eadc0a0ba79031fc57f076b0e4", + "regex": "." + }, + { + "hash": "52f6c9aebfa1f4eb41484d7268d492052790f2993de81a2365839f9ba120cda0", + "regex": "." + }, + { + "hash": "c343d7ee41872d34cef608feb5a623e4f293ff1750832f0c006578170b63c3d1", + "regex": "." + }, + { + "hash": "23266f1a9e2876e4d2c922c91f2e9fd025369836195f071919b31aff4f01f803", + "regex": "." + }, + { + "hash": "5c03f1482464f2a7a16f1116d820ed7b71b4e8b7071f0393cc23bfc710547c9d", + "regex": "(?i)^https?\\:\\/\\/navneetm07\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "72a44911763bebcd474a9206dd9d1f460d5be8739e1a570527f9f2ec683ca9d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "56422e518ea7b1be39d627825a805fd3571ecee809169933ecca25b30a39c7bd", + "regex": "(?i)^https?\\:\\/\\/pub\\-9cc99857ee2344f4ab85fe64b893c4fe\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "99dad330d5d730c673aadbe3aae2e608df25771187e306d9bcdf9f3f5171e206", + "regex": "." + }, + { + "hash": "f17d629dea6097cb79f7b169e7c7e604960f2637c70d6b3acf999c8ba30b0b34", + "regex": "." + }, + { + "hash": "c927b94f3246da183c319dea9c669629c0694225163cfabb06824ff56232d0a9", + "regex": "." + }, + { + "hash": "f93bffa9ef4a984713f482db54d5fd8bfdc1b04c336f2c264dd6fc9c77e0693f", + "regex": "." + }, + { + "hash": "c5a889a71741cf1c538da3dacfab923e5b52544a5aabbba259b18c8c63b88760", + "regex": "." + }, + { + "hash": "a55361675b3544e52d63940d02b3f0af5061c445987b52663772012d5e72190a", + "regex": "(?i)^https?\\:\\/\\/minhaj4me\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "05b5aea11a890785dcaea985601dfb960b2a667e1186c265eccd6065ef692b9c", + "regex": "(?i)^https?\\:\\/\\/anujmishra94666\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1b00d2be714641188fe2579bdd17d079345d0e13a495e004df9e0633c89aeb59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ab\\%20(?:\\(|\\%28)2(?:\\)|\\%29)\\.zip(?:\\?|$)" + }, + { + "hash": "1b00d2be714641188fe2579bdd17d079345d0e13a495e004df9e0633c89aeb59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+abv\\%20hosting\\.zip" + }, + { + "hash": "819368492c272fe337a01cb9e7760b0bb133e73922bb6c84f4aa841a10365406", + "regex": "." + }, + { + "hash": "27bb62a4e75a8ec7fa25c43a9c5a9c4e881b2b1c09e58dcf45727eadc612c0a6", + "regex": "(?i)^https?\\:\\/\\/meghzz2004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "67f2ab360cb8eae57dd5b90d6b732ad145a73a4732066a61720691fe95370b39", + "regex": "." + }, + { + "hash": "426de843c6e1422d010b89bd9c2cd6c9b3cac7fa9baeb5741d5d65726d2015a1", + "regex": "(?i)^https?\\:\\/\\/telstra\\-104701\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2cc568f5f5bfa1a76125d373fd269998f9a70ec96965789a173d2a3ea1caed3e", + "regex": "(?i)^https?\\:\\/\\/telstra\\-101819\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3442ac2f429cc435acec1df229579b06c9de81388b42c67c9116fb14339f3cea", + "regex": "." + }, + { + "hash": "9ca13f1d3e0f66d303813cc36f97c96a7ef1fa645d89453dc6d740d54ac32030", + "regex": "." + }, + { + "hash": "49328e82e5b6d0ecf801db4c333c491851c0e0a5081a127ea9b3edf703992e35", + "regex": "." + }, + { + "hash": "4c43913f6eda762d9abc04e7482a44f196273005e3f8138c80570bc96f005e12", + "regex": "(?i)^https?\\:\\/\\/hacken08\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2cd836aa3fe6471e06d61ea5a222dcdb51d25fdc310704d5bcdefda7203f6314", + "regex": "." + }, + { + "hash": "b3ad66f1995003d64c395f577a4af5f5d162d478c9956883fe1768943fd0714b", + "regex": "." + }, + { + "hash": "82cc3cb451c9b466aec411a2e6fae9f74a79642130240273f5001b8c17281d54", + "regex": "." + }, + { + "hash": "6a83f3266a76084db5df6961dd19d48b5d0cc951ce6823bda7f6eb0c1b4bf248", + "regex": "." + }, + { + "hash": "5ed271213bcc1645f5c59547e1481d0d3bbcf53dc05ce72870612d8a1e846362", + "regex": "." + }, + { + "hash": "b113843ade54bf694c4fb7d3e15b998336be2d5c1ab0e25ebdb100324866523f", + "regex": "(?i)^https?\\:\\/\\/pub\\-60aa6c4fb16544cbbdd32ff4151d40f4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a73a02f9e0d4bc2c7947eb16510cd26f167e1dc574a68b307461ec2282aaa6ae", + "regex": "." + }, + { + "hash": "cdb02749522d2ed358b4313cd7ba1e20986e924bf492aa36e7934ded2745ade8", + "regex": "(?i)^https?\\:\\/\\/ajith369369\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a9239f03ce26665f96229c4966af6d0df89476a683080be7c44661f8aba9d774", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8b15b8eba64ecbabc290473a63cfd346d9d3144bac02f205da747f1fa31a5c2d", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8ce9a71b503dcad1a953fb276ff12bc3f2147b6c5ffd1cd8d46319fb2b62a0f3", + "regex": "." + }, + { + "hash": "5256c35bd515c4c93f364ea96b34c79ce30dd9bdf98fe483db5b292d924a3469", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a4d42097acd832e45e4fc8d79e4cb14683be890f3ee2f017c993a22e1e224989", + "regex": "." + }, + { + "hash": "1cf1f2ec3603824b5dd6eb816abeca2357232a21b48eda8d16748ab087305846", + "regex": "." + }, + { + "hash": "452a26a504b7018c2de2914ff05dfbe7b7ba4cdafbb944214ed0c3df5b49d767", + "regex": "." + }, + { + "hash": "91fc4c0b1ce576bfcb8c052513d440e6bbaa5adcbf6ebaa595cfaded064fc606", + "regex": "(?i)^https?\\:\\/\\/voterenew337\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "28bfc88f3236a0b09b04e2491ccde595f8486b05ebc5439f3e58693b2548f332", + "regex": "(?i)^https?\\:\\/\\/robloxgginfo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a7a93fa61ed6e441f7b0577de5076018a08a670959e1c92e881cdcc6067f642", + "regex": "(?i)^https?\\:\\/\\/pub\\-e3bfeaa6bcd34e0dadf2c3380a0824f3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "19ab3becbdc4279989d9e0863bcba52aed894962b4cd49e39ecfefb7a6b3662e", + "regex": "." + }, + { + "hash": "e57d648aff9debe8bbcd5116952130b9ce8fbfe62fc16a49b06552c99f3f6dac", + "regex": "." + }, + { + "hash": "8dab1a1226e0ed6f7d68c903c6338c2b3aaf5d061ca6041283804ee9cd2d11d5", + "regex": "(?i)^https?\\:\\/\\/pub\\-65fb3d2811214c428554cb0cbb3e8b7f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d8b2680208f6f35e0c87992409aaab3802b1cba2739e7b75bb0b153f87206fcd", + "regex": "." + }, + { + "hash": "772b3fa90393e3de1a08450afc853416025b4f6e03dfffdcbcc10a4f5677952c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+av[\\/\\\\]+lp2[\\/\\\\]*\\?cusOfr\\=avg\\&cusLnk\\=1\\&s1\\=hs55\\&s2\\=198247003\\&s3\\=ts3859\\-international\\-non\\-branded\\-us\\&s4\\=92329\\&c\\=0\\.0\\&click\\=GVBXKOKGHS3A14D71Z8PS4W9$" + }, + { + "hash": "8da824e13c5e64ec264ed8f950e9c5dee0c5d53c6eb2ec12a6874187a3e0adcd", + "regex": "(?i)^https?\\:\\/\\/vanshking30\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "86ddf5b7c6cac3c0f1961243e4a0ce5f31f526e12b34a5c9f80231b9d9522b68", + "regex": "(?i)^https?\\:\\/\\/karthiksanjay23\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "97d5b6259119db9ad2981628f4b25ea0fb82beb486dae8f0e60277d0dda566da", + "regex": "(?i)^https?\\:\\/\\/gareenadaimondloot\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6020520fad3e309650edc6d1668ffb2e129d58d2558ecd5bbaef730818182f6c", + "regex": "(?i)^https?\\:\\/\\/gareenadaimondloot\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6a6b24c865e0d7f20f10100b57074df96bd425c2f0d8b288c45cf4442e597b09", + "regex": "(?i)^https?\\:\\/\\/bafybeih6guk44jqg25fqwefb3ekemxbzkdfdbutqr65lzlrmm5smlbjkeu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "ed44d293e7fd465959a77e8ea13b39e1966d9e5f7a8a7ca73936a6f805b80e92", + "regex": "(?i)^https?\\:\\/\\/pub\\-c2a17aacc43840c9ac4490b9c18ff0b5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3b9a8bacc841261d195124fc9420a12adbb3d6bff05e0d843f92093c4e374862", + "regex": "." + }, + { + "hash": "bb8694fa1b7f0f7df9fe0b6dd8bde4f9151b70074f3657d5c38441e1a62aec50", + "regex": "." + }, + { + "hash": "9646a972c0ea1214bf577ae494f01db74ffff1586e57c6fba0fea153614eb326", + "regex": "(?i)^https?\\:\\/\\/bafybeibcguhznzp2gk4xws5k5tzcmec4d5sjlxa4shrzgmmr2o24fo5p5q\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "8aecf1decbaaa607a38f1eb8edeb684c652013644d82ce2a3b1173d22b5ce441", + "regex": "(?i)^https?\\:\\/\\/bafybeiboqh3kcecadu3bydhcqdhnixlelu4paxzagsz6njrrrkvmmvmsvi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "a727b3e9a697bf1f2b19d1a3166c8bda27b3e5fb1b6d95af06dcd580a6d2a283", + "regex": "(?i)^https?\\:\\/\\/pub\\-0b103ef0edde4505a41fa18159f2b985\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4333ef2c064059f9761c9e0f6ca1237f936bb133700ccfd82f67bc3256fa3962", + "regex": "(?i)^https?\\:\\/\\/www\\.bet6105365\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "44654e74769beb5f546350dae3bc75c8596bd535a71261aee46cb778cb686544", + "regex": "(?i)^https?\\:\\/\\/videohot2021commxx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "efec6c5f0dea8eae00b458f15fa23dcf20f696436e60cb0cebddd03287fbfb87", + "regex": "(?i)^https?\\:\\/\\/ahsanhabib555\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2250f18697cb16c1492da92856333ee5514796abfbe62a06dbc7310a1ee7c654", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodesgenerator20181\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "21c9e87d66d25e2f6be8ab87cfc4e669171f89029efe94e9b6ef3821327e7762", + "regex": "." + }, + { + "hash": "3dc827b6852a7f34809bdb4a067b2dfe9361d4911a1e1a2ef458031fc1afbfcb", + "regex": "(?i)^https?\\:\\/\\/athul21eb\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b69f0bcdefb6c4815a3a2374b3138ad26e4b8359ef505b423dfb2d26d2fd58f1", + "regex": "(?i)^https?\\:\\/\\/robloxchromebookmouseglitch\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "86c0c4c938d141eb7d6dda0f3cad955e711bc72a6611d06903f45067eff480de", + "regex": "(?i)^https?\\:\\/\\/afgfg4545\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "eb4aecaf58aa197bdf24fc723378e0a07474913c87104230292f87e5f5a24ded", + "regex": "(?i)^https?\\:\\/\\/afgfg4545\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5adf049f8b2f00757c03f6f9dc73c5fc52678a2d73e38321a2d4693494a468e8", + "regex": "(?i)^https?\\:\\/\\/afgfg4545\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a6170c4c23311bc1970c680f82442dada3662f0416ce1ea7e783f78288d433ba", + "regex": "(?i)^https?\\:\\/\\/afgfg4545\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6896fd6c5e839eae7c1de63e142fcf2e1e8d613702e420fadbfe9b43bffea8e5", + "regex": "(?i)^https?\\:\\/\\/pub\\-0287087404fc4d8e9e3dd2c99ff50c53\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "566af5556e5f416c73d031dfee8c4882a0c94c313bf4f0850f5e4ebd269c4919", + "regex": "." + }, + { + "hash": "0463d38d9352f05b5cf91cc8d714b2f050d82788165236d5ca95824c6a3d9f60", + "regex": "." + }, + { + "hash": "221f24c74e42b0b5b715886a66bd77a00cb18565d39a3a46d1e4fb2c7a5b0ee6", + "regex": "(?i)^https?\\:\\/\\/pub\\-f4487d9357c048dd8b2b4cf3f6017fcb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e7e9c06b9fb771a71181b477045ba23f8d2feb6263ea1db40d92b860bc295b05", + "regex": "." + }, + { + "hash": "c4bfbbd48d5178b8d703c842da178e494cfbac78e94f05519c010648039916b3", + "regex": "." + }, + { + "hash": "5d5121b0035fbaf641f575d292d8908b229dc7fef5fecdfc2c244e20f34a87cd", + "regex": "(?i)^https?\\:\\/\\/pub\\-3f71b6ab25264c77932d62afc6ca1f21\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5a3152e494f224fae53a65fe27f41d7116763b1563262ade5d8bfbee04be5f2a", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6184fc6dc90ca64aeb65e24e20ba99fa42554e33525ab0d372f3477168347677", + "regex": "(?i)^https?\\:\\/\\/hdtfdfhgdfhfdhdfh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "66ee3db48db2977d887bbb90a12cadb152219e2152dacfbf84fefe911d763455", + "regex": "(?i)^https?\\:\\/\\/hdtfdfhgdfhfdhdfh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fbf0e87c2b14b0840643ee2c38fb3ba1534af628b72df64d6d77041ae69f911d", + "regex": "(?i)^https?\\:\\/\\/hdtfdfhgdfhfdhdfh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f412d5f1019957ad9b50a9cc51aaf005f7ef4b4b738f525f36cd9e38393bab5c", + "regex": "(?i)^https?\\:\\/\\/hdtfdfhgdfhfdhdfh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ed0b8444a95022de1b37efdc87c8feb83ff94211ec4cf6ff93b332eea97ecc2a", + "regex": "(?i)^https?\\:\\/\\/hdtfdfhgdfhfdhdfh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c1e81815674e311748bb191125b74f5069d36a6404465c64bf5887f5bef82045", + "regex": "(?i)^https?\\:\\/\\/fdhdfhdfhfdhfdhdfh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "26c0c1295e55585290de463a3f85b7284ffd04a63bb7482b6599eb52e8d573ea", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4d22ae9a50bb7f3033d22ba6c6609d2e7b754279c894c6103f25ead685dcf40c", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d1253e0ca2fe00adc4e969932370c343029dac427dea2a114f0f3bee0d81207e", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "09bb33dabff99487985261c5194130bc7bebda858ea1cfb82ab7afcb08e7a59e", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a0c21a3c017c4070378690c6e55ccf29edaed5df3cbcebfdb4e61c0c9f6d2456", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8eab9d5a5f082735f7646b7de796977d459bc01b77b47a7706606c7c59c6e683", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2f1241b7ccaacd7163e90025dd3718cc44722a06b79a0df540b8025ca205866d", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d652651fc2417e2c7c8fcaaf88f959a14769c101a0252b002af15d6132e0425e", + "regex": "(?i)^https?\\:\\/\\/hdffgderrfdvdaaerreggf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "19e373902de7d507df17f35f1d6a58b8f398829dc98082bfb04f986ba444122b", + "regex": "(?i)^https?\\:\\/\\/hdffgderrfdvdaaerreggf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "25c268e713564694a6916b51d265361a1a7ec506b85c6087c3f4aeddcf8b8686", + "regex": "(?i)^https?\\:\\/\\/hdffgderrfdvdaaerreggf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cd5b80731e0dceed5460ec90c64f3aaee94a4a2e77a12212fc8eeff02d936e79", + "regex": "(?i)^https?\\:\\/\\/eyhreuhtjsujhtuhsh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b57f1a664127ec241ce31850165201da4aae05e9df5a973e62cc7a9065623ceb", + "regex": "(?i)^https?\\:\\/\\/eyhreuhtjsujhtuhsh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "615fcb1aa31d55ba9fae7614234170bc94f8dc2947f568b43051bdd265c8d372", + "regex": "(?i)^https?\\:\\/\\/eyhreuhtjsujhtuhsh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5a897769cef234bdee29fd7cef817669746d41a7ad6341c2e635cdf3d9993fff", + "regex": "(?i)^https?\\:\\/\\/eyhreuhtjsujhtuhsh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f65dee370c63417e575e7a590d1c416192cbfc7826772806a6205b02905519e7", + "regex": "." + }, + { + "hash": "6c61d3937d772bbb21be480d45ad78ecb974e8e99d0706c0c4cc622c7e6e8024", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d25829b2145aeec878f9c8286eb21da75633c34a05fe718dacb1d468dd2a3d25", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "62bea3d4900d2e12acef88ceb8296b91937cb64f6e2edddd71344384a916b658", + "regex": "(?i)^https?\\:\\/\\/rhgruhjgxnthtrdfh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5e1beff1648218e32cbe4ac49868037579f7c4024951ed630076c9751136aec3", + "regex": "(?i)^https?\\:\\/\\/rhgruhjgxnthtrdfh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fd033c3f24b1be67f5f04bb900bbb4161cff7ca054d04b56672bdc7db7ad8204", + "regex": "(?i)^https?\\:\\/\\/rhgruhjgxnthtrdfh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8d9bc6c53f9bb4c7bb3c4bdd5d8cda52903e6f1f71e376820bddb333304a60bd", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b8a9a3d393d56c5838b3e26c0cc506abb0847a96fe04ec7b9b52bc599324c", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "845939e1695bce49fd444a4a407e2c7a799eb83065e0c43853cf190b07f5add9", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f13d67db81106d42f74a380a1ba9872cbbc57a5ffb3f370021fbf4484c63dcb1", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "babf2cdb1782dd4749489ca6dd0da296eac45c341ccf1e33b0437c753d07f8d1", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cdbe6c03af4f43a96f8f1d2cc966bc686c00a6783f4b9b67b232b26ae06630c2", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c4a474560421189a4640da472cb7ba35c808aad4a2bb5f2554a93b7e3da44793", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "83ec7f47e004ace3ed5776c0d60832ba09494c33211d6216bee5e6f485b2c481", + "regex": "(?i)^https?\\:\\/\\/reyfhsrjuhtrjgfd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bd60dea4d31e0e09950f7715c8703c01b39215fe4a35f5a2970a44e6963d506d", + "regex": "(?i)^https?\\:\\/\\/reyfhsrjuhtrjgfd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "96e6b512d037f86b55a303380f893358d7160a4c900b994005df0137783b6abb", + "regex": "(?i)^https?\\:\\/\\/reyfhsrjuhtrjgfd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d5fa581ecf741e2a7ee49788ff9f383efa813cfe8a340bc4df910312691c47e5", + "regex": "(?i)^https?\\:\\/\\/vxcbgxhbxhgx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "24137c670b04dfe68f7faf15fe0d78b4eefbd1f2d3130af16c6f8c0e93956a72", + "regex": "(?i)^https?\\:\\/\\/dfuhjdfjhtutrujfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e554df99d5da0374b8cc7a2097fef0cd6f8e4ed6791935918b9f07b2af4c4e63", + "regex": "(?i)^https?\\:\\/\\/dfuhjdfjhtutrujfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f93b8ffd7c65dbb9b14722b9931561507bdb7dc244b9e0bfd17ff6da9f49f883", + "regex": "(?i)^https?\\:\\/\\/rehtrhhfdhfdehdfhrhj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ed3f879c639f401b00b76b42870e2a1d42d0134e3cb657716d2a2a3c4af2e271", + "regex": "." + }, + { + "hash": "92033c5ec3ca74f5c034a3da574c36c5a9e4e17a6f2bdb7896a02fc68d505d0e", + "regex": "." + }, + { + "hash": "b2f6f5eb82a87c7299de4eb19c846a7b88d83181837d0839c8164e5d9b10393d", + "regex": "." + }, + { + "hash": "49ba942b370d0ee422cda16e1cd8da6d71ee18261037008618ec2e49ef568446", + "regex": "." + }, + { + "hash": "ef3f95ecf818191ec9c2d244f2c30801e46afcded0c57c383700f4a45792072b", + "regex": "(?i)^https?\\:\\/\\/pub\\-76bf011f31344f45bf2356e9005ac465\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a7c544fb0c55a239bf20ea0fd9cff08a13b45c726e087ec3e1df6426e8466db2", + "regex": "." + }, + { + "hash": "c2bf513dc56ba6b27d37501467d86e1172e1157b634500066a88dad333c16ca2", + "regex": "(?i)^https?\\:\\/\\/aastha\\-8\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "71abb7b4269dfc67620ee3c9a1f790b61ff77e12f2ac22b0fb5333b975cda407", + "regex": "(?i)^https?\\:\\/\\/ujjwaldalal7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3ba01f8d90d7b39a2c8e6e6fd86ac2b7bee2dea5d382d3da58bf1280eba6b276", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdeconstruir\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da3cc0c755c09fe494eee7a5415974ff9f1d2988d7d619ec76f3cc8c2959f052", + "regex": "(?i)^https?\\:\\/\\/sedy4w76e45ry75er\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bd98bb5225799472bf76423ac80ba8ae52ce73d7954dbbb7e035751c57fe4ae6", + "regex": "(?i)^https?\\:\\/\\/ui5tuzyjkrtydjtjf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4ddb6751982b1e6a1b5344b1cfff6332e5a2cc2aa8a4aa5876724e21692bac55", + "regex": "(?i)^https?\\:\\/\\/d0cusing\\-com\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "00356afbb1019e5271d5bdf418cd52935c241707b93387bfea17d391f41a6ba5", + "regex": "(?i)^https?\\:\\/\\/ui5tuzyjkrtydjtjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a7183820078f1ec5079d755ce0df3eb7337a51390d3cf832ba7a937bcff05a87", + "regex": "(?i)^https?\\:\\/\\/ui5tuzyjkrtydjtjf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1a4926369850804ed94f104ce71a5f0964234637ad3119bfccfbeb32d2eec5d1", + "regex": "(?i)^https?\\:\\/\\/ui5tuzyjkrtydjtjf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c3e034919a3da2803f9563fcc9e8d667ad73ffb08224afeddfc8522be49ec516", + "regex": "(?i)^https?\\:\\/\\/ui5tuzyjkrtydjtjf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "93c95c5bcb90a93e352d7d3c3f4dc23bc45e8c535342df32d670cd800a11e686", + "regex": "(?i)^https?\\:\\/\\/ui5tuzyjkrtydjtjf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8febc68a9e310c2677bd19e30ed1f897b43a9377250a506c99476dd5b187742b", + "regex": "(?i)^https?\\:\\/\\/ui5tuzyjkrtydjtjf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "879414a7e976b472326a06a6b76bce226a88e976882201c84dd4c4c3ccb07b07", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "505200475de47de8cd10094ade39cfd53130a2cacbc75c8088337aeadc701cec", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "752689b90ec60c6a713f84488f89722eaffdacc1958e1db1d0a1c921ea036981", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cf6adfe3cba4c8824ad3ff9c686926ac16597304daf75653d01e70935ac67be7", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6f59a77c25a621acd28f9f5728f97dff0ad60d1c0d9abbf0c309cfa9e06dec50", + "regex": "(?i)^https?\\:\\/\\/video18\\-new\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "77064bc2ed64cdf9c6257bf59444e6e3b0ae962e6cc2e41a7fab518c79591d2a", + "regex": "(?i)^https?\\:\\/\\/video18\\-new\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f2d6607ee270d6717abbdb548b89e7611845e6e06ed907aa8485406d91572168", + "regex": "(?i)^https?\\:\\/\\/video18\\-new\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "609a5598ebe6884d051fe0b574d28b4ce3c9ec4dd908ba091b20d57d8f4d6409", + "regex": "(?i)^https?\\:\\/\\/video18\\-new\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "547fe6e67b97df5f84fbbcacee21d82a3c8114d05fe8167f6a1dce3e5cc69fb1", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5772173660efcaa387b84fe43d78abffe7db84a3ff1e9c66218c67d4512a874c", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c2c37d1b8fbcaa79bf3eac243da25296110ca250d172d3b5a45ac3414bfbd438", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "94a8d329b20ee90c120a94fb10de36a6090231ce1df988844622cc905f401536", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "73427c3bb8eb2b248dbe04ed2f2343e90295fb9e17ad355f143d389c023c5ff6", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e78647b1937835122e40e8046f329d1f60337ea3a4a6b20e71a14f2afa90f707", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ede95d6b26e5d03324683b00e7f3a0abaed55c4b959f9eb14fa394f80ab88a4c", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d8ef3a1f62badd6d4f627e485e9058f35e8a5ebf1cf07588dee6275787635d91", + "regex": "(?i)^https?\\:\\/\\/tuokmnbxyausokdacrexa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3e310be7845da5e3b5043783d839d23d72f74911ba228b12db7add70105b1cb0", + "regex": "(?i)^https?\\:\\/\\/olkutnhzakreyuzngrebztau\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f9aecf378e8715ad93955a63b3eb485f815477c11e42146fe884f0dc150379b0", + "regex": "(?i)^https?\\:\\/\\/kolmunzbavtryzoaka\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c8f74f9d84c7582be24a4e9c9de640ab002bc9fe20d234db843d99e982a70a64", + "regex": "(?i)^https?\\:\\/\\/kolmunzbavtryzoaka\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "648ab0e930783fef68f09b41681d161bc229af04cb058505c18fbc73df73ffb0", + "regex": "(?i)^https?\\:\\/\\/kyhubgztarshckasoema\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3a2ce36b73cdaecc4690ba28ab02d9af7b2a0b0da127de73f7b9b2a259da8d48", + "regex": "(?i)^https?\\:\\/\\/loznagctyasieoatafavraza\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c3c3cd96faee2618bbf2ef413f144337ec9201c216568520200ecb5f8b737180", + "regex": "(?i)^https?\\:\\/\\/hhhhhhhhf123\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e97805dbae3f40272b72606a34ef8f6754d2bde95e0538ff30a4719d529d00fb", + "regex": "(?i)^https?\\:\\/\\/oklimngtzyasueokldae\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e18a1da3d9f6d25cd3b0d6de9cecaf611f63850f41cf28559b220c5da77eb080", + "regex": "(?i)^https?\\:\\/\\/oklimngtzyasueokldae\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4d46ecc8b3f954c01f311a21e4f93c9ca60f5656c748122cb8c2bcb890c996ac", + "regex": "(?i)^https?\\:\\/\\/lomnzhasuoekatbtyuxajsola\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0ac87e26d73e1518cfd28f651b12d3317e81550fbf13814217050d01f6462", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "817ff5edff2ab31f2c810ecd1235d3c61a7d21f511fcb58c6f721876277bf06e", + "regex": "(?i)^https?\\:\\/\\/lomnhuktoinzbagrteza\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b13b47955d254eac78dbd9fcb6a81f76344d1fba20d6c81f8272580af6bd8d03", + "regex": "(?i)^https?\\:\\/\\/huabvreyuzaoigarenbza\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c945ae229505f5906a59a8614014329d9b3b53576638218f8331dcc12d1bc6db", + "regex": "(?i)^https?\\:\\/\\/kolunzbgatsakeaotnada\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "036fcddf55661c29b832ba405fe9c1c0e7c1b694588be10c88e7c7c1b2dc1a84", + "regex": "(?i)^https?\\:\\/\\/htththhththtth\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "858c2cece9fcdf799e942f4f5be426b7123ef7fb2d3c87ea7176c846cdad00f5", + "regex": "(?i)^https?\\:\\/\\/oklutnbgzarecasda\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8cc9879f034294e7a2c002f01476c3b82030cefdc2390e036cb95d87207cd731", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "06914a162e8cbfdab92e60dacc29735d79e18750c8875e1a13d6fa801c1c976a", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1be60a3b2bc4f773efc4e811032c0fbfce96e58295815d67f441bb3e1f7806b8", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "968b052036bf1678e7e9e4f9545ec11af8b17377419434e853784468f04f1464", + "regex": "(?i)^https?\\:\\/\\/xnxxabc123abc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7b4d895bf4d71d5cd5edf0387a81c2a5454861debda6ac79e1c74c48b0568a46", + "regex": "(?i)^https?\\:\\/\\/konhyuxaoskatgryuzhasbfa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "70918421e5e8a5fe38611205b0ad6766a9a0d87158ef9509227eea42d072b0ae", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7bfff21b878b5dfa54776c8160bcc7508ccc5bca5afaed7faeb11051fa10636a", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2256104fa539b3f3c2cbd56e8c7639e4b6d6d762036b3e52d7f67cfa68433717", + "regex": "(?i)^https?\\:\\/\\/tuhnzabetuokavretyzaua\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "14f9b02bc0e2eeb80ad6eebe4e2ae38159fda0a9c39cb0d488de2ef32344e2c3", + "regex": "(?i)^https?\\:\\/\\/konbzgasyhubavrezalo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8481935ab60519ae0f28f296e739bf8db181cd32bdde1dabfe7e8a203131bb44", + "regex": "(?i)^https?\\:\\/\\/konbzgasyhubavrezalo\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "167368614287ff4088b3ac0d696ae99ddf02ccb9a3808461084e466065e54ed6", + "regex": "(?i)^https?\\:\\/\\/koliutjozmoekeaxaz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a41e1e7d31c0f85e0db32dac103bd26a9a13282dfa4223c72f254b2997b6e39b", + "regex": "(?i)^https?\\:\\/\\/kotubryuzavregopada\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "092859eab4f2d6d5b5b27722adeb251f4bb098efd263d769904c228c1592b943", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0eaf5d91e4af9683839c6bc1ade8ecfc45796e4de9350fb9138cd634aa0fad0c", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9141fae051460bd548a47fc09902932b76640f35c748765fccd19949b149abdd", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "76381b65dfaefd1f0f12641dbfb2736958f31d8dc7b26682d50bcd1993b32ec5", + "regex": "(?i)^https?\\:\\/\\/gayhotboy2021\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "abb763d149caa5fb6dc14741e7ab69d4966999e92930c3fd3218c35358296b20", + "regex": "(?i)^https?\\:\\/\\/hothotshow\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1d5e37a8324d264119c735c590a2da7fb7b62b11c04c3de0b3dc51957c398549", + "regex": "(?i)^https?\\:\\/\\/hothotshow\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5997d28e8455a43dd0c80598239c79c086a316be04f38866b48120177a209fef", + "regex": "." + }, + { + "hash": "37dfa22bf3098ee366717e9e67a6dcc5bdad4f4896f9bcb16942b0e7e4cbdf0b", + "regex": "." + }, + { + "hash": "dabab149c3b089e08ab76497f0224b04ae3378acb3351503d17757c3e35896e9", + "regex": "(?i)^https?\\:\\/\\/wankhade\\-2002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eb367c66ef8dfc50df94516aedf64237f440add617ce1f5a91182e5b55110d63", + "regex": "." + }, + { + "hash": "d3669a522876182c61ff32170ae7aebadbb1d16b2eac089ea2689d62fde85324", + "regex": "." + }, + { + "hash": "8858acd972f81d25b31d8c10a3f7c1bf5b3f2eb97e5f33463d9a8f8c84481431", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "758f4bbac23818e8f2f4e34d07fefbb6e2f19bf71a54c45e4b308f2d18630b8a", + "regex": "(?i)^https?\\:\\/\\/fgdfgfhgud9855\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7a531f3470115fddf529be3ffd20c49eb169f9f67d035088a3e53c6a11e99019", + "regex": "(?i)^https?\\:\\/\\/gdbfshbdsfuih9585\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3ef05b767791560f126f14fe900dfd5157a2afd1ab7969de4c82962773d7e3a0", + "regex": "." + }, + { + "hash": "9238162b2182524c58ee8a76861c5dfb70a57736f24eb33a834b2df958d093ec", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cf6a49fc3d4ed93b26cc18a66804f9587fa299f439b6ce1a0e0b4039e36f44c4", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c7976a4847eb307a801fd090ece73ddac83fc30b30613267c216f734baf6463e", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "71c3f4b27fd46f131f9b4230e9b3d7a3c8e1047ac64acf692e25e4adbb8fb8b4", + "regex": "(?i)^https?\\:\\/\\/pub\\-e20838d5ed3b4103ae0bd6b0b04711ae\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e7a5ab60df3122b30cf2560b91ded9ddb3b1d1a612c0167008ac31ca2334c1f6", + "regex": "(?i)^https?\\:\\/\\/dfghbdfdgfhfd545\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c392a53b757c395466725c348f2c681a064067a10d7e63aa417c6444c0bceeca", + "regex": "(?i)^https?\\:\\/\\/dfghbdfdgfhfd545\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f10e78b59491cd93b4339b1f5feaa69c3f23d60e6fa0ebb8a0cfdfb5143788be", + "regex": "(?i)^https?\\:\\/\\/gdfdfjh6346\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8da8a79e7f93956ac67a14152b904d2b4bd181b64eaa4b7e1b48c12abfaa525f", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f69b98987961535d17f4b85e386355a5d088d8183745a53d2f8b5dcfab42ffef", + "regex": "(?i)^https?\\:\\/\\/fgdfgfduhiuhdifg564\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3cd82c98d53815cda33f1f6bd644914d1e73ed12c9b2385535faa4a8a8961675", + "regex": "(?i)^https?\\:\\/\\/fgdfgfduhiuhdifg564\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7918abb4a485239094d332a7bbdaa380c9a4685eec9cb4be7be2c619b65869ba", + "regex": "(?i)^https?\\:\\/\\/fgdfgfduhiuhdifg564\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1d9ec2ec1e90db922f4d074bb17e5dfbc6c3e5026a2526b616e49d5f8fa96686", + "regex": "(?i)^https?\\:\\/\\/fgdfgfduhiuhdifg564\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "206b2da04e1658da1705bba506af9f45b26221fa4833854bef3f6b53f608b406", + "regex": "(?i)^https?\\:\\/\\/fgdfgertgdfgsregrdfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cc6a83a277c402a05a88e8acfa7bfdcf8501858b8c9e6668660b7b1ab41cc024", + "regex": "(?i)^https?\\:\\/\\/fgdfgertgdfgsregrdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "624aef64f7798483049be7ab5676a347c41386339362849f0c24312f95e747d1", + "regex": "(?i)^https?\\:\\/\\/nhdygfsdlrjnjk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7a18686f5fcbda2f298347ca396ba57eaa5b4e7509f1d40c313d9f7aeb8c4094", + "regex": "(?i)^https?\\:\\/\\/fdtydrtgbgfujhrt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e688b1cd01d1c50e328e1e64af2d33056af1713eb320c6f2851f36a26b6c4909", + "regex": "." + }, + { + "hash": "136c2acb2bf796d9b9ec3fe1174ff1c0c4ac5a71b6b9acf5cc737207c00c1902", + "regex": "(?i)^https?\\:\\/\\/hahahuhua\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0274e4534c8283edb599461bb943a121d597c66633c8e150728569e3c65a95c6", + "regex": "." + }, + { + "hash": "f49ae4c3fd7d2c0d9c481ca96d37c877d9eaed8aa1b15a00fc3090b99bbc5bfd", + "regex": "(?i)^https?\\:\\/\\/fdsefdasfsdfdsfds\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "076c2713b663972ad945fd8baa724df1be600dc722f0471f3fe8d0277f21a010", + "regex": "(?i)^https?\\:\\/\\/sdfdsfdsfdsf95995\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "08a0104f917f4c2ab2a9d197914abafeda880be4cafec9f3faa33d18302097c8", + "regex": "(?i)^https?\\:\\/\\/sdfdsfdsfdsf95995\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "550ff9b23225af49f0210ef143077dffa5b6a4b64bedbfc70d77061a851b9233", + "regex": "(?i)^https?\\:\\/\\/dfdsgdfhsedrtjhnvgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fe23ffe643554ae73ce986b969f06de4f230ac4474a4d9d37396570b298317be", + "regex": "(?i)^https?\\:\\/\\/dsfgsdfsde\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "abd32794ce1f55205f200cc274d82935b7e364df8077bd0c0b0390a22ba669bb", + "regex": "(?i)^https?\\:\\/\\/dfgdfsgdfsgdstyrtggd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2abb9984a868f9d996f1e6af70df26def3896e5c5fdf7aea17cdaace033011a1", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bb5fca543eb0c9942b6b0a042d8e4d64e2c0517c0efff3a29fb701519a45e058", + "regex": "(?i)^https?\\:\\/\\/buioidnhugdjhhdvideo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6340bdc6e76d0b26e6b88da288de76bd475be429c25f8bf7cb307779f077b182", + "regex": "(?i)^https?\\:\\/\\/girlthailand0965\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4c7f8a459d7f8dcd79bbb9db0a105f776d21e20186216e9ff2a81d01cfd77793", + "regex": "(?i)^https?\\:\\/\\/ghmghmgh112\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8a7d0b70642fd0a370ffe7fa59442fd02a892ce63b8582e248608f91afafd2e9", + "regex": "." + }, + { + "hash": "5cff902f6ed060fbf4becda0fe8b0d2ace78d9fe4db8e506947b67ae3b2643bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1(?:\\?|$)" + }, + { + "hash": "7d2cf00e7ad0ee643a5c170114a81f37bd37a3b7af509a5ace26ee0421e585a6", + "regex": "(?i)^https?\\:\\/\\/howtoget100000robuxonroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7b868802009f2d1684a88165f419507c8f89a1dfd2e739830e031220446ba869", + "regex": "." + }, + { + "hash": "78e0479898ee57111f3b168f9503d2618aa9063c7102c0fa9e52d1cf5849bef2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pl[\\/\\\\]+james" + }, + { + "hash": "84d281a8e09db26cdb23433e9efe071e23756fca6d91606757e5605997daad99", + "regex": "." + }, + { + "hash": "6ed737839de53f4b263c990a7e0447cec758777dec2e51a28bd6d07cdc761137", + "regex": "(?i)^https?\\:\\/\\/pub\\-e4333b0bb67746bb9b9dfa88c6ca2179\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2e9cacafee3910a4911cc73e1482b6ed69a7b7a0411f0f4de26ff273d836afba", + "regex": "." + }, + { + "hash": "5cff902f6ed060fbf4becda0fe8b0d2ace78d9fe4db8e506947b67ae3b2643bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "615f9df76f0f115d77d33d92525543df1864e52d55ecf40c5c49b4ee78fa137b", + "regex": "." + }, + { + "hash": "a13c15f9d9b0d3bc7639110878ca91b7b0490df1d14cd1244bdb9b0637fdb3ce", + "regex": "." + }, + { + "hash": "4ad7547a4aac16969788b169bc8e8f2a552c985893f39d3dea0a54ace28e4a0d", + "regex": "." + }, + { + "hash": "087296bfb01699615795a977895f3a591369ac42b412b4fabae9f206198e8cc6", + "regex": "." + }, + { + "hash": "5b07d962b9cb91367d341772b6c0b11c6128ae423c3565225ec5db2bcc254842", + "regex": "." + }, + { + "hash": "67fb9e19c0d2dc188aa50d30ff533ebe1c1e9313802d1c10f1adc350e8e12422", + "regex": "." + }, + { + "hash": "81d40f95251f3e1b286dadcd0ab8076cf320bcedb8fde2ef53fbe4a5a44daddb", + "regex": "." + }, + { + "hash": "3ad1e9361f65504a2b8bb86493d0bdba03b11b957796e1ea912fbdd682026131", + "regex": "." + }, + { + "hash": "4d4460fa4c5c7a5f932eea2890202180ac20f9d971240f803e1ba422f5b69121", + "regex": "." + }, + { + "hash": "85f32767280cc10ef784b85ffd76a1ec2cfe00cabdb8b63b4ffd8a1a9f698b15", + "regex": "." + }, + { + "hash": "650ebdd3a2e1932b03d48adc89b3809be6a4453546668e6aaaffae8cec03254d", + "regex": "." + }, + { + "hash": "2b1acb1c588230477b89b65b82930d9bf7440746e7aa3bf80c338da926c56f31", + "regex": "(?i)^https?\\:\\/\\/ghfjgfhfghnfghsd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f3ebcc5983643340de691ad7ab1fba50d74cb020c44c729074ac5a23207a50c7", + "regex": "(?i)^https?\\:\\/\\/ghfjgfhfghnfghsd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d6f14951b1635dad565e1d74b71300d17693e866653eae5ea9c2f384fc873fa3", + "regex": "(?i)^https?\\:\\/\\/ghfjgfhfghnfghsd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "108a6c11b4ad539aabe7570e38a8601b0b12411a22d808de6748533953e644d2", + "regex": "(?i)^https?\\:\\/\\/hngfhjrthb6bbyrtybtb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "85cc560e801bcfe97213c0fd78bfdab79283a3cfc151cf60d2a180669d6eecfb", + "regex": "." + }, + { + "hash": "128b70879a936c7aae119e91d9aed3a4952606d3f1056c228fcacc0b802299f4", + "regex": "(?i)^https?\\:\\/\\/dfghdghgnjukjigkmc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6a6b43396f81630aaef11da09fdd475485f36cc59f2ddba03c07349cc2f7aacd", + "regex": "(?i)^https?\\:\\/\\/ghfbfbcvbcbcvbcbc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "09a08d819f7e7445d83fc3dda3411ac78c62688145c04a494cd2818bd88f1b56", + "regex": "." + }, + { + "hash": "437e5a8e14e672b99b84619db56cdf8533f6feac0b083ee41f60fdca2293eeef", + "regex": "(?i)^https?\\:\\/\\/fmdnsrjikhbjes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "644de3c55d873ae7cf163cca0abf95982afdd013cfe4ece48cc7a41852ff8b75", + "regex": "(?i)^https?\\:\\/\\/cvhndtfyhghdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ab8e22e3233b890f7c7a7e4d94bd7dd211148f12312a9f49453ecc6427436fe5", + "regex": "(?i)^https?\\:\\/\\/cvhndtfyhghdf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4ddb2abd8505129c4dc3ab85bfd19e7723c4e2a00d21915c768b78a80e435b79", + "regex": "(?i)^https?\\:\\/\\/dfsdtertgfdhjurt\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ece4934bc2e5d8555688a0b5aaed355cfc1f945ade7aa13d1f0a2c1a6d618452", + "regex": "(?i)^https?\\:\\/\\/dfsdtertgfdhjurt\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8f52edaa170434a98d6f516e7e9feda6c28b00b5cdce9eb3f343de2e74d6fec4", + "regex": "(?i)^https?\\:\\/\\/dgfgdfgdfqawe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "addcc86223ff35b658edbe086c428bc37bf60e764a5f79712ccfb14aa567dc10", + "regex": "(?i)^https?\\:\\/\\/dgfgdfgdfqawe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1c3415eb241bd4ec85255cadb1414975bed423e166624cf34a7b6073bb2abe1c", + "regex": "(?i)^https?\\:\\/\\/hhhrty6htfghfggfnbcv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "31877e74ad506e707f77e01c2b26297a1ebc5c14aa8532a2c924b31b4f27de45", + "regex": "(?i)^https?\\:\\/\\/dfhgjdyhdfgbdsfsdgsdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "03d510cdac3c650b34f72031e931a7a526740eed24d30b9f9f33288975852e2b", + "regex": "(?i)^https?\\:\\/\\/fdbhdrftghfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1d026f5954f6d61164ce5b7f7d844e72f6ea64c46f7ae1b0f0a4e184c21f6454", + "regex": "(?i)^https?\\:\\/\\/scdsadasfxvx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c2151c7d2f39ee52acadcc8c9b31ec9dc9008a25600f7ad13789f7be7ac28945", + "regex": "(?i)^https?\\:\\/\\/scdsadasfxvx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1abe1835a219d12bcc7ca85d403885668aa933c1dfa347eae8953a19547fa84a", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "081d77e9f2716529e5c8f47ec70a3cd7d22370ee064864131f22c84113beba6b", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c927dff9909a5472bd880ff14544454d5ffee973b7a483e0a6e36b84e0df4a11", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "017d528f7cffaca3d30b63c20526acaa98027c233abf55fc00f60aefc88799b1", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ccdbdb3f48400154cd24f3a98fbece6a55f5e720a68ca3cd602a0a833ca11938", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "accb348264bbf263785e6a1e525ae85e6cdaaab6926e2e64fae6d659bb7f4416", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "315757ad7c4e47d74f657655fb74a5f744356485d817bdb0eaf8c1d8f7bc57d3", + "regex": "." + }, + { + "hash": "7b6cb9f70497482af89d6dbec691fb3b3cec45a15cc2c9561e8a7a614e4dda7f", + "regex": "." + }, + { + "hash": "3f80bb934db444ff833e8e93ef4fb45d753ce0333de8bda897d126305fcab95a", + "regex": "." + }, + { + "hash": "c1096ae5aa3541ebb2de4d28729cef06ebecbb2d16c4336ad56ebafa06dde0e0", + "regex": "." + }, + { + "hash": "e39bf525fe5d1a19642c71b7b9ead3863b86f23801aa941bae168c04c086ed72", + "regex": "." + }, + { + "hash": "0eab6d962d1f465231998a9d7a61598b41cd18df90e2b44b71e2945607e361b4", + "regex": "." + }, + { + "hash": "8c012783ea2ff6dd7532278f40fb206c3f4925f2b133a31eb662d847f80082bf", + "regex": "." + }, + { + "hash": "ff1c22102a2c0683cd5305c78660673370776ed36b12cff4fd33d349fcf44c84", + "regex": "." + }, + { + "hash": "9675223a862fdb286c1d8633bca0d75c6b945a45d7ae094d8efd05918f54e797", + "regex": "." + }, + { + "hash": "b1b242beeaaff141585df6ca311a67ebcba03438b93c8a091730cde73f47052d", + "regex": "(?i)^https?\\:\\/\\/7000rakesh\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fa9a3f62d96cc4e28631b337b80273a5c6918bba42090d2b9e679609b50cb13a", + "regex": "." + }, + { + "hash": "5e11b01a15a2aa9e1b18803961727eb384cf79d608c014bb374864c2a1cd0564", + "regex": "." + }, + { + "hash": "19ac4bf44f34d514fd5d1db60c5bff2df7152cf78c90098b24f5f6b2399647b0", + "regex": "." + }, + { + "hash": "065edcec49da3d8a4731ed0210ea171cc02678c0b87702315c915a6cda1620ce", + "regex": "." + }, + { + "hash": "7031cf79be14bf24814b50026137185e004b316521b478934c65b7ae8cc64248", + "regex": "." + }, + { + "hash": "74d46895fe801f77d4bcbbde5ecb59fbb24efc41ef27c1caa0ff24b96f07b04e", + "regex": "." + }, + { + "hash": "d7ffc9a1faf61a8c73200a302c8472e20cd1a2243e112ce27629ea0f60b71f0a", + "regex": "." + }, + { + "hash": "911fe4258d7249f22199b0d5797e2a4e2d5cce23c8816cc21c2bfd84be79c85a", + "regex": "." + }, + { + "hash": "6d74d52529b67ccae8beaa9ad8ba7df7a2dfee882c645e96b3b6110d6f0021fb", + "regex": "." + }, + { + "hash": "c9ca76263d582078c4288505b0ce1ff848880c3c67ac42d52d70bb4a12cabdb1", + "regex": "." + }, + { + "hash": "eeecbe2dc6af67c6c9dca21092fee4f5abe1a716ae9972386895106e7ab601ab", + "regex": "." + }, + { + "hash": "dae39212cda25ba535736a18b4540bdcd4513da50a9c0b47e8030e96c5063d61", + "regex": "." + }, + { + "hash": "a1a3f164c65a552bf05851c043024c2c0132ce8825b532734be7f7f0d4096ad2", + "regex": "." + }, + { + "hash": "551ef4e04ac29fe5db6a1fb3aa4c1c9fb061df4e78d9836534613a1eb704db0e", + "regex": "(?i)^https?\\:\\/\\/xfieymsjeuennlsoe12\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a5f59a49f1cac176bb31c995aeaad06f88cced3ed3d099132362b87ec22c0125", + "regex": "." + }, + { + "hash": "31c41a94ceffd21e5119b2c5930219a30562b40f2ec0d5ec1b79ee9021923808", + "regex": "." + }, + { + "hash": "259700d9f9bcee06e92a577a6925f9e687b5bfc97dc5fa0b3c3df0db33b26eab", + "regex": "(?i)^https?\\:\\/\\/akshayraj789\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a0653d99e3f3b3353c14a2e7b4e55eb585fa0cd4144aa53ac5de135a5f977cd0", + "regex": "." + }, + { + "hash": "7ac50a130675c10091c8212afd9ecf8e05b4d5f625515709c2aa6aedfea63cbd", + "regex": "." + }, + { + "hash": "436b8b79ddcca79493b8f13d818e3fe993c01ba9b44acefe7f3ae34b27f30989", + "regex": "." + }, + { + "hash": "da38c85953a2edd08bebc9eb3c07780f4848bc4395123626315c60728680daf9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iduuu\\.html(?:\\?|$)" + }, + { + "hash": "046c17bcf688e459cbdbd73f5ee62a039e14fe708a583034597a797173485c9c", + "regex": "." + }, + { + "hash": "6a7d8542e31a3103b6678ce81de328454c64ce497dce49c6d32501f01ab7886a", + "regex": "(?i)^https?\\:\\/\\/pub\\-c15bec44554f4da592529028e66c1f85\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b6b31ac6aef78604af265a11680c5cd7a14f833489b2558e64f303dc7ffb50fb", + "regex": "." + }, + { + "hash": "7da9e5f03ad485144875005ddc3782ed3c2059a57760b207ac5cbcd53d294efb", + "regex": "(?i)^https?\\:\\/\\/lomunarydasecrevada\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "372765252a0b7c429996400ce6eec9874c991af9776f3a0c9cfe4362a9761e34", + "regex": "(?i)^https?\\:\\/\\/lomunarydasecrevada\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9918a42a93c47edbab2e7840d05ea58f82fd0c89fbd760833ea2b0b807107b57", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d8c34bd8ca1d4e1f9a63bfb74650aeac3fe74dff1a84894a8ba829a4e4e8616d", + "regex": "." + }, + { + "hash": "ca9b294fd101aecbade4c3044da4bf5a566aca4f543c86454869f2cee9211bd5", + "regex": "." + }, + { + "hash": "5213fab9d9087f8caff7189a0256d7c9f0b528776d1c66e1809349527c95850c", + "regex": "(?i)^https?\\:\\/\\/breno\\-oliveira98\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0e9ec56800e25db536656530a48cf35b5ca091022e1fe5f722aea5bc34c4e301", + "regex": "." + }, + { + "hash": "b0df775f95da35209c5e90ad978f0744407c2753f48f1b841770d118d5183903", + "regex": "(?i)^https?\\:\\/\\/843300\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "73c0855bb0666a37d7a1fc5b03742b0cce53900adb7bbdc85968b06bc4279bff", + "regex": "(?i)^https?\\:\\/\\/pub\\-ccba02bbc83e4f21b9ac11f1f6983be8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fda1b9b16749778428c2b3208cdfd95f806648bccde01a8616a0645aa5f1b237", + "regex": "(?i)^https?\\:\\/\\/logissessiondhl8792396832\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "490046ea075d49b91ebe7caa5dca7fb5c02eaf5b751ef6ead52b1f1c6b0c6cb9", + "regex": "." + }, + { + "hash": "10cc0dd95d92cff476adb34d87a36450cef0019dd2d4ff0c1197c37401f29615", + "regex": "(?i)^https?\\:\\/\\/twitterrenew884\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9c05e89c8164bb0b7939862bf8277b3369498d857c89f1da927f967269aca9fe", + "regex": "." + }, + { + "hash": "e771be3809235b9721b26f1237d27a30b89f02c7e4585712240f83bc5d89d94e", + "regex": "(?i)^https?\\:\\/\\/allgiftcard55\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f9447c793cf371ed0337ebc0929aa8e45ad9bc20d059abf3425d50d0fda85a86", + "regex": "(?i)^https?\\:\\/\\/allgiftcard55\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d49d46543ede39a336cc2f69e3ad097ee232a811328df790e23e9caeb59fc2b9", + "regex": "(?i)^https?\\:\\/\\/allgiftcard55\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c39e14d864aa4ce1ed9214e974be3a2c6017e05dfb77226e4e4c976c3f340499", + "regex": "." + }, + { + "hash": "13170f5da4e4e4862b83cdaaa06d78f7a7f0c08814c0dedf89743d877f882c01", + "regex": "." + }, + { + "hash": "f7a83857392af67ce4914d3997d4df360344a34d8d57d2295bd9f8c7ca7dcbbc", + "regex": "." + }, + { + "hash": "07f47e4f1bc758fe73cc81b4f4ac12ebf2af94c67d9fb0d5d5c1172fd48b02ae", + "regex": "(?i)^https?\\:\\/\\/hotgilr2001\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c5d49aa37d09e8c17094cd391562d8e553ba2f97e1250cbd6b2f9ad282c24a61", + "regex": "(?i)^https?\\:\\/\\/hotgilr2001\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a385d37cefa71118acf297bd942d332d1df54974fa8aa1010bb781e8621b5856", + "regex": "(?i)^https?\\:\\/\\/hotgilr2001\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e8c54186819319bdb812c1070eb44c574a3963cdbbcc85caec9ebacc364da2a2", + "regex": "(?i)^https?\\:\\/\\/hotgilr2001\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "177da895ab476f0d5c2c2db6b77bb81473a93bf07dc4c342c67eeedeb7914252", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fab9a89681d5195014b6dccc43dc15c7381ac9ec495ef24b1a8a27e23bcf2335", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7d2412e08e896a8833d18bd3f4d5801c0517affe9103bfeb5204430ae72f78e0", + "regex": "." + }, + { + "hash": "2cdad3117135a7cf031256f23106442037c47763c27789b5f136ab69941e3819", + "regex": "." + }, + { + "hash": "45f6c0c15e6f3ffa63f0afd2529eb509e4c8fdbdb8b2e34b08eda506660435f9", + "regex": "." + }, + { + "hash": "deffab76d79c693524dce06eff39ae79dd4662fa95b97177d5f690ba263187e5", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{6}\\.acidcentre\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "54f4fb59a39cd7b8dce2f1ac58bc9a82e6db47737e7e5a942b1433ca53ef7503", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9ef0a6df857ef94d03702ac7e9e7ba6eda4bd7bf4a3ad1b4f7bc72dff658db17", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9fedb9ff777deb5dc065550c4da197cf785ce584f2fc740c5fa84a38151ed238", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e504565347a366da218cc29908ec17a2dfda70762886f2adea91fed52ee45a0c", + "regex": "(?i)^https?\\:\\/\\/pub\\-d410c59fa57b46f0b8ab2e04e54dd074\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3714cd0c5c6b39ee017b072fa4ea9d9a1de923f5c6c04cf368b2ac1088cce8ff", + "regex": "(?i)^https?\\:\\/\\/fvgirlmy\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8268326a083a0fc550c8ba7fef65aa7387238771bc686134a78f000467598837", + "regex": "(?i)^https?\\:\\/\\/fvgirlmy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9baa586f796acfdd52bafa5eda3ee43696c5e5a81c1e9edf50b03a82c2b7dbe7", + "regex": "(?i)^https?\\:\\/\\/fvgirlmy\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "34ba79a80f93cd612c1b9c1e7c124837936ee77e9355e582de63557ce6fa9c55", + "regex": "(?i)^https?\\:\\/\\/fvgirlmy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "49525e5021ece6c00a22ec89f5a094938dae533f890bcf41f550fd538d474905", + "regex": "(?i)^https?\\:\\/\\/fvgirlmy\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d5c2786b7773d20e196418be57f13e5c8e9920bf0782f9648056bcf96682eece", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ba8d62146511c01b7eeeb43921b20043ebc5fbe179b74177c91a917d9ee4495e", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d4185131f01141e6b804a56bb7fa79d99d3a088aa975b6e98560a06408aefc46", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "77ff80e8ebf18ae0e9c23ab1ce3e40cf7402de49cfa693f689beac46f7aa2dd9", + "regex": "(?i)^https?\\:\\/\\/xcutegirlmy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fb7dd3e5c6acc676dd0b1683c1d60699432450458e2ad9ebf519eededac88dbe", + "regex": "(?i)^https?\\:\\/\\/xcutegirlmy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "70e98d9ef44d25a84066131153b6d93303acd66f678b77bc4b65abdfcc0730a0", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1721db80ef63387a9b2de3ef9da3bc4e713b958c38b07bd91ca10b5ad34935c7", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5a22c7fef39d9de514f5985d53fadf56deffca4b713dd3c3c7d75f2d9c20dca5", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "28f89dfb691f14d0f226da80437f411d8d3231121e3783f7f7255132a3472dc1", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "85a1f94f6b7a73a383790be51255c4291bc54378a0b48f242743e410b883ced7", + "regex": "." + }, + { + "hash": "c3e0b2c0e79514acccc67b5a454a3273c1de7ae5976289823bbb67c827cd00de", + "regex": "." + }, + { + "hash": "8fcf61cc2f8851c968ff6a87e7bbf1533210aadae565fa82495e5e402c0f93fa", + "regex": "(?i)^https?\\:\\/\\/toykoghoulhackroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a0238cfe929d7c716e7f9de392245d6bbc1718602bbf41d0671e9c6b8d91acec", + "regex": "." + }, + { + "hash": "5149fd991d854d459f0078acb3215769609e4f2f72ca78d29a723b135b98198a", + "regex": "." + }, + { + "hash": "2238d1926e7de91933e3981713f965f48f47e73975a41088ceb44f3ca75aa10b", + "regex": "(?i)^https?\\:\\/\\/pub\\-9d0c5437aa504bf6a3658ba8ae8b61de\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "26a95987739fb4b3213568e9fcbe93ea3b144b7be799f2c65c67c8ba00fa2e07", + "regex": "." + }, + { + "hash": "c1de5f879e5dd936c96ebc368442badaf3f25232e676e54c5e75b551a805ccc8", + "regex": "." + }, + { + "hash": "e46df37a97b28b7488b79262ee381cb41e4e051bcc85ac4bb2e4acf13361863b", + "regex": "." + }, + { + "hash": "0f7151271cb7b3703892b100824193a53e0143dfc292165593534f6bc4a09e66", + "regex": "." + }, + { + "hash": "613f5c299b614ae797aaad1e29d5a1d57726d08c09b2033955a0b06ee9802ca9", + "regex": "." + }, + { + "hash": "1575aafc653863a23ed4e96887bfcafc48e9693e7abbeb3b7440ddcad511ce30", + "regex": "." + }, + { + "hash": "088792f77c402b9df3f527f37715bdb9df71fd4ff4d361ea5c5b0b659b450fd6", + "regex": "." + }, + { + "hash": "b712e7b53bcf2ddd0508d56b01328eb4a45f6613cb243708430cc0e304f8e5b1", + "regex": "(?i)^https?\\:\\/\\/rftgujtyityj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f6809303a6e159e708eb38a1160422658a07ee885b6c76e314d8276512003ba3", + "regex": "(?i)^https?\\:\\/\\/rftgujtyityj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8391ae4c7a5eb16c2d3baef3f0cdccd26a0514044bf30694dc0753ff565f5d73", + "regex": "(?i)^https?\\:\\/\\/thfgjiurtr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a8dbc753d67f7b9a992b6b5fda75267d6733b7428dab11b0e093bc1c48336c10", + "regex": "(?i)^https?\\:\\/\\/thfgjiurtr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c0354a707d7311f5410044ce4a9dca20e34fcf7eb150ae238221cd13bc6c1137", + "regex": "(?i)^https?\\:\\/\\/thfgjiurtr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4a7c3add476e89b5280eb0664ff950e58e25c4036a52dcd0c53a1421708c8c2f", + "regex": "(?i)^https?\\:\\/\\/gnfjkfguitg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b1ff45d2bb754e97f198e61cdeedb4c6c6373308f28ba40ec2923053dadca02e", + "regex": "(?i)^https?\\:\\/\\/gnfjkfguitg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e88c959dea90eb3966b8d11113a105001253ca0f9244fc638c7d919c51c974b0", + "regex": "(?i)^https?\\:\\/\\/gnfjkfguitg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3994ac57f683ad43ae3ba782e1319e99afc2c3138c7086a90f888b8466bd495c", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "374b365c9018f286a89cf873b948d7ffbc61b20c868e21382ebd16e7b82390c8", + "regex": "(?i)^https?\\:\\/\\/ghfufghn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3b9a8718adbbd2dacc9d13a86046400a3ba75c4e5d0d9dd3c26f3dfb132750e7", + "regex": "(?i)^https?\\:\\/\\/ghfufghn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1c3464e20de09e346636a35346bdb6d04759997ecac02bad286ff51512191659", + "regex": "(?i)^https?\\:\\/\\/ghfufghn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7110d58cd4e639a05cfe015e7db6bc7cbab6510e0171adb55cc563d97d7299a6", + "regex": "." + }, + { + "hash": "a9761b54809d8864f3e4ff464efb216ab2c6c8bbafe1220c2fa4eaa425d42bb3", + "regex": "(?i)^https?\\:\\/\\/sdgfchrtu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "75253329de01826fbc58208e2f470fb25a80206011c5361d0e72e50e01fc7404", + "regex": "(?i)^https?\\:\\/\\/sdgfchrtu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cc6a382d7c625f13f56e67a773aededf5f3b36d79feb34dea0e206e069f0ca15", + "regex": "(?i)^https?\\:\\/\\/sdgfchrtu\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b839a5125791ced4d392e9a295d4e8977a492274e88c1349290198ec9dd419ef", + "regex": "(?i)^https?\\:\\/\\/ghdfyyh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "18c099c85e7bcc5ff10ea4b5898a9f31c34c72f81aa007295bcd46ec3b8ddf93", + "regex": "(?i)^https?\\:\\/\\/ghdfyyh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8f758ad1ee4a253c3b6fee223a824606206760cd626d99d59dc4e90b40566c5c", + "regex": "(?i)^https?\\:\\/\\/sdfgxdh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "051b072aae39027bfa41844dd8a740325651e93840a1087a435d4a59ca3b1eb1", + "regex": "(?i)^https?\\:\\/\\/sdfgxdh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2bbdfeaa5a3279318af5e6b1e90d55ecf6bb9ac6f6b487f48c9c5349d39a871d", + "regex": "(?i)^https?\\:\\/\\/sdfgxdh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f82240fb3e563eaebd26f257cae176484c83b36a0bc187dda24a06ab2f2dc3e6", + "regex": "." + }, + { + "hash": "f8895b037d5043955799bf63f773c5bca7251955e1eb88a2e5c9ee53a5ae5b14", + "regex": "(?i)^https?\\:\\/\\/prasuk44\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "793e05b7c734401380f9047aa8b37872468859eef25afa1cf38679ecffd0066d", + "regex": "(?i)^https?\\:\\/\\/pub\\-fcfe79bc79754ee3b8560bfd85040236\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "78ec6a6b8f7fa249fed8ef6deeca3cedba2a87a5d2c1d3ed6725727653014c39", + "regex": "(?i)^https?\\:\\/\\/pub\\-1a95203d45984d92bcc1ed3ba7c5b54f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7b28eebb68dc8283f2f3c3864cf4600b50718a7f584d371175c6133509dd1b7b", + "regex": "." + }, + { + "hash": "3b9a3b46b2d5dca630688cb19a6505faef31bd94a35bc616128b6a35c6166664", + "regex": "." + }, + { + "hash": "b29975d1c4698f9f1c9c8ae909401c722a099542f0b0040579f7f1ced0da243f", + "regex": "." + }, + { + "hash": "f3c4fc03d4163bc8f1f9c494a8fed75587fd91d8416a29a1347ea0600e5e75b5", + "regex": "." + }, + { + "hash": "877cd18fd2b859b65c2594aebaeadf18f03e5ce4d4ebd3fa4098bfc6b4f317eb", + "regex": "." + }, + { + "hash": "184a98dd4a9bbfa0c375e1126580c26c7daa5bab1df2e95e28e88d9bf6302250", + "regex": "." + }, + { + "hash": "a00819d0e9ab11bb3ddbafc85de9de28869e559fa4a86f5c07887eee81258db0", + "regex": "." + }, + { + "hash": "9755d4c524f3d5b67a60140df9570a6d251473ee22ceebda0ba2e9601c3decb0", + "regex": "(?i)^https?\\:\\/\\/pub\\-c3f264ce883d443eadb6ff770573a84e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "03cde9f3b8fee21c08052717701633d6e23d8917d5f44be206c03d798b89593f", + "regex": "." + }, + { + "hash": "66d20f2c766ad5575a2012e67c0ff8f4401997692089a2c6d65b7e79835ab0e5", + "regex": "." + }, + { + "hash": "96c17ee0f38854bcd6bf5d864b414aa944bb84e1e3f338ebecedc63cf2f2aba3", + "regex": "." + }, + { + "hash": "9fc0b9b23d69870b4f389cfdec39d31dc8c32392339e53177ea5b011907bf198", + "regex": "." + }, + { + "hash": "ffce16f168457136d03fcb6210be09131b9d8a4ab62e19c07fffbe45cdf9d93f", + "regex": "." + }, + { + "hash": "9fb67da342c8ce5d7cb91cdbf0baa2b2ea144eb25b2622b6c96de5b43d9a1c25", + "regex": "(?i)^https?\\:\\/\\/fd180\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5e7d2b98a6ba635fa938d3046f34bdfcc3f9924f252e811f09c5e2431950f42e", + "regex": "." + }, + { + "hash": "657554d3e189748d9eeba5486134a3863022825f3c6b0fd2ea2963809347a126", + "regex": "(?i)^https?\\:\\/\\/sjhjfsjhdjhsdghsdgsh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8378204206e2ccaa8249f390f46506d0f9e7eb75a7d98136349c114c3a434fd1", + "regex": "(?i)^https?\\:\\/\\/sjhjfsjhdjhsdghsdgsh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b73c5c2a5a95e4df083e9ef5f0a67daa97f75dca360073f9ba0d4f0b10dc7a72", + "regex": "." + }, + { + "hash": "b2b1dd87c98e1e8603a8c43f877acef0a9362fa827e2c6b1eadb2db1a79ef25c", + "regex": "(?i)^https?\\:\\/\\/sjhjfsjhdjhsdghsdgsh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "db73c05016117c17521bc90f35ff940abbb1b5b962083819fd7ba9105f93f9b1", + "regex": "(?i)^https?\\:\\/\\/sjhjfsjhdjhsdghsdgsh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8e4aa5f1482c81ed6d34968ea70a452f4c04aaf56ec1eab3e56aec31c45f43f8", + "regex": "(?i)^https?\\:\\/\\/sjhjfsjhdjhsdghsdgsh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0e9e392f7ea8217271365bd20e8fb99ebbc6eeb35476823d2cfd53c0f94e3e7c", + "regex": "(?i)^https?\\:\\/\\/sjhjfsjhdjhsdghsdgsh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "948f935267ea44c5893c5855243e04e045fe3981ed7c6713b153bdb94bdf86d8", + "regex": "(?i)^https?\\:\\/\\/sjhjfsjhdjhsdghsdgsh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "bb6cfbf42ef1bf53e7af2eae9469f39a9423eb842ae70cabde1ea3057ec1ca06", + "regex": "(?i)^https?\\:\\/\\/dhfbjhsdbsjhdgsds\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "80efced467b951d109e1cc296960bc1ef6d41ffdf8b88259c055c987c790fbbe", + "regex": "(?i)^https?\\:\\/\\/dhfbjhsdbsjhdgsds\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "64b1905ca1665545fd8007e08bf0fe95c85605e0ed171c5d5a627d89bc3d47cc", + "regex": "(?i)^https?\\:\\/\\/dhfbjhsdbsjhdgsds\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1dfacb552930a4a15fdce9934866cc94872f203dd3274e5f84fa0b352eb043f6", + "regex": "(?i)^https?\\:\\/\\/linkphilippinosss\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "05b41b684da06764d47a5446447fc3f4d1d017d517d4070b012b5caa79f6050a", + "regex": "(?i)^https?\\:\\/\\/linkphilippinosss\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d508a93f5cbab6f902d073953417d1c45fee978ceeff43012987dd5283230b93", + "regex": "(?i)^https?\\:\\/\\/linkphilippinosss\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e967f9ed342d2e67f643b461a20ca8e0fc3b6812b1969dc326c75e3ca2b838d4", + "regex": "(?i)^https?\\:\\/\\/linkphilippinosss\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a0a8d0fd1f68394ff683808e94954e9b235fdf3e861d63637d3a02ff78b97", + "regex": "(?i)^https?\\:\\/\\/fdhbfjndjbfjkdfnjdkfnjd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b86090f7f4977a6af734c6d7d82cf59dfcf2619d6c4017b8d40b8b7c71dca8e9", + "regex": "(?i)^https?\\:\\/\\/fdhbfjndjbfjkdfnjdkfnjd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "48978c82ddb3e4511e901fb966e2e0160f5bd65d99c11816a9fb88f5338227ff", + "regex": "(?i)^https?\\:\\/\\/linkphi\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f6af7e7c1dedc9201da3c879dc8b099105b93a207f7ffbf997536fd14838e969", + "regex": "(?i)^https?\\:\\/\\/linkphi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "928ed34651d053b5d456d5eb1682b62b94c3a476ce2d8b3aa761cba6f1e401da", + "regex": "(?i)^https?\\:\\/\\/linkphi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7a02e6722cdc223a5ac12a833d5f026c4afecae2b534f71ecfa6585ee26acc71", + "regex": "(?i)^https?\\:\\/\\/linkphi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "61d2a7112c52c370ba1050e5ddc4895221cada0ab5e7dc775025439d767a5ee0", + "regex": "(?i)^https?\\:\\/\\/linkphi\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "028e1d0237c1bbc3e9c4a75805195579af95374d550dcf94f1311cac1355957a", + "regex": "(?i)^https?\\:\\/\\/assitirojogosderoblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6fed78f4bc30fefd46b8e81779e4dbe89bf3abcec74dd9b41c9bdb371af44f0", + "regex": "(?i)^https?\\:\\/\\/ikanishk123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d7e9344fff4049411b2dba53b71fdff6073ee95a6acedcfb6e3fd25668ecbf0e", + "regex": "(?i)^https?\\:\\/\\/anupkumar28\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7847cc59bab07b015a4ed558089e70a25d981cdba34de93686030ece788100c4", + "regex": "." + }, + { + "hash": "b41189cb2dab148e97bac39bd0154c888ba7eba87268018d12606289ce92eb75", + "regex": "(?i)^https?\\:\\/\\/joleth20\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "616eb178c0ddde1c10994e3e0f47556a93a89ff448bcd6f9d6437fc0d86fa10b", + "regex": "(?i)^https?\\:\\/\\/pub\\-3025ec2f294244fbaecbe5dce6bb4ecb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2752d4330f5ff8fc6f63cd5a87b3fd7106615445193851ae340c40a3ee14ecca", + "regex": "." + }, + { + "hash": "b524d8e56d588436243caeab470c71ae9d5fca3ef8268ff94ed4b7adf858bf17", + "regex": "." + }, + { + "hash": "d4fa6a43fc2a0f5c979ea09e0b298bc1754d7494391e036418c7b7c330a6be72", + "regex": "." + }, + { + "hash": "b11b6c536f50b4c157c5878cf1fd28457ca488e53e355e2edf81db780f7d1d02", + "regex": "(?i)^https?\\:\\/\\/bargainsfasr306\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "803c999e0022a2e4a02bf10b74b0bca2c5b2b1c42554e5048f0f0d377fa2784c", + "regex": "." + }, + { + "hash": "3e1e84402f81abb6e70eaf149c9b3151344e2815d81078090b0d4e260169afa1", + "regex": "." + }, + { + "hash": "ac8b90e65e9b3ab0f92b285ac575155ce81b17918b6936e1655835c300cfbbe0", + "regex": "." + }, + { + "hash": "8fefe3ee9aebe1be4b7c12cccb8fbafe84740e6d5fdfb39767fbbf501fc408a1", + "regex": "." + }, + { + "hash": "bd819d515d2d8d88e9ec710eaada33b2b8a83756db5d9c4e3b12c14985b0f8c1", + "regex": "." + }, + { + "hash": "75e8718c68105d356417808376fad24a53928bc727f8dac101a4888c55164813", + "regex": "(?i)^https?\\:\\/\\/coolhfil744\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "19ab3d238f510ab0b3c1489dfd8cff9b94a8ae1e27617f6eb7a494ace6f1b2d5", + "regex": "." + }, + { + "hash": "76dde010dd6ccc515d0b55acf1702de09130e76e6ed863a79898a3bd6166e66b", + "regex": "." + }, + { + "hash": "c974b370af355aabd85eb0e8d365674b9c4ece141e195593954b265ccba392e3", + "regex": "." + }, + { + "hash": "f49a90ee70f6fb777d555d1c2c295609100a0474c51d3e7fafdcadca28cf197d", + "regex": "." + }, + { + "hash": "c76814bd8c9cfcc48268151a3e9dc2824109955eb5bad2147ffbe0b71f03e95e", + "regex": "." + }, + { + "hash": "6a0f947d838ee29cd7951252375471e7fe1a456fea469bcf8a0fd5021fec7c44", + "regex": "(?i)^https?\\:\\/\\/pub\\-16cf6af00af1471582fcfc948b178eed\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "11eb9c53cda2100278365caf4183cd8e27aa6b162d772dc1e7859e3026b02ea7", + "regex": "." + }, + { + "hash": "1688870aabd4c4dc0af3dbae848612d7da6e76f64d2a4cccdc22ceded8c3a084", + "regex": "." + }, + { + "hash": "b58f9232117a5ab8ee95e4799f25e331e3070d903035e083dc5d40c4c694a28e", + "regex": "(?i)^https?\\:\\/\\/pub\\-6906f552bd634554880cc619dd3a5db1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d70f98090b20ffd1d09458eb3d7ec4f8f35ec9ffffad79db8679a77f85ecf339", + "regex": "(?i)^https?\\:\\/\\/dgtt67567\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d5a2bf34083be0fbadc99a552f1b56e4fe7e3242c1c23fa46c89dafe1a0d96d2", + "regex": "(?i)^https?\\:\\/\\/madanistr24\\.sssss\\.my\\.id(?:\\:(?:80|443))?[\\/\\\\]+v6(?:\\?|$)" + }, + { + "hash": "85c3c9ddf354b123f52d3230fd4cc01f6370ca1d67ce4c9b803ed0074514777f", + "regex": "." + }, + { + "hash": "83590f56937a3ce13524d6aec7edcc93442776400ca1bfa9cc6220481caf182f", + "regex": "." + }, + { + "hash": "0691fe78ab632c81e02f99684610ea0a9ca313f1440e91be31e3195f5920d739", + "regex": "." + }, + { + "hash": "2035000c65fb20c30a31f62564f2638631839f6a84678c42ceaadc2a7cdabbe8", + "regex": "." + }, + { + "hash": "49175cc2f3c5b7111ad01a53bb65dfb97104a98f5623b14311dbbea6bba97e5f", + "regex": "." + }, + { + "hash": "54f4b04ada4daec30e982bcc2f7553ad2930604fdb36ea7cc9a0da738a31d60b", + "regex": "." + }, + { + "hash": "99738ec9de01bacde57969ca9eac62039776f4382929748f8652bce5d93b59cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-fd140a1ee766424a960f4121f55e01b7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "75c03b4d80618f86e8290551f2897f5f0fe9e35a681730bfcd84af6273af7e10", + "regex": "(?i)^https?\\:\\/\\/pub\\-48524b5a0a7d40e9bcbe4b665a910f57\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "26a49fa0ca6a79ea183d812f42027ecde89e39c80c0ccfa23906dbc2b7900413", + "regex": "(?i)^https?\\:\\/\\/pub\\-dc062e5212a84273a012f0ae8387d91c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "748746d837a6aed562ac23778f8e05d7b72b84057e8ab5bd377b29ab2fea1c3c", + "regex": "." + }, + { + "hash": "1bd1d13d249bf4a43770e6ca67af8b1baef83881e742aa13b280221eeb90007f", + "regex": "(?i)^https?\\:\\/\\/pub\\-6221f7664d6648718fc08de782664dd2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e4cba2ec4f75430d3cc2f3d8429a6cbbaeaa10c1c9e270a1a99b7072119f6fc7", + "regex": "." + }, + { + "hash": "e7abb9e17aee9819af20376d72a67a1f8df56d004b2ea59c3129e6c2c1eb6338", + "regex": "." + }, + { + "hash": "1e6ab51a1bcaa516ec4b141261691d805ab1b54e8410285cc7190268aa50a8d4", + "regex": "." + }, + { + "hash": "a225b0f6b1a0c38a5892c17edf85eceaacab741cf3e966c0491891c60d5c9f72", + "regex": "." + }, + { + "hash": "4cd83ab916888bab96349b0e59bb790721ce3da3e88e53f870838e410532bdca", + "regex": "." + }, + { + "hash": "47db0efda82452343ea40b04d1c5b48ba2364d002bbaeda6d9b3506ab43c7a5f", + "regex": "." + }, + { + "hash": "653d6a02cf26b44b07aefe5619384e9e8a9eeebfcc2283b7fa6d8e04ae6335ca", + "regex": "." + }, + { + "hash": "40554331fa0d307ff48742aad0b00d09cce59eb15dcc347eb64491f1420ed403", + "regex": "." + }, + { + "hash": "f47968d5cf9b746efbfaa5bd79b3360fea0d4b16e115dd79534d8531d3bfc31a", + "regex": "(?i)^https?\\:\\/\\/mdaslam32\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "20fa821248efcd47d2a8244bc760f49265fb30cba1c28ebdadac2edbf255e8f6", + "regex": "." + }, + { + "hash": "a489c405f17655627fbff0609515cdc395724d4f7a8ae2d4d6160281cbe402f4", + "regex": "(?i)^https?\\:\\/\\/pub\\-f59af63a5b5d48158033d789e48ac8c4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "452a749f34d5d8be8d2726303d268b7f7057f3bcce58ee79701c2f1acadb86d3", + "regex": "(?i)^https?\\:\\/\\/ethena\\-fnancestakereward\\.vercel\\.app(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2628457cd18e0d0a7329927f88889e302e81add12ca30fc5a507466aee23d296", + "regex": "(?i)^https?\\:\\/\\/robloxiankid\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4943e196b464ad6c5902f2984ebe4226c09cadc34e12cb46cadce12aef17715b", + "regex": "(?i)^https?\\:\\/\\/robloxiankid\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9642e8b73570fb5f3c0926f0dc8f8446176583823e654b6d15e33916044d0637", + "regex": "(?i)^https?\\:\\/\\/robloxiankid\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5e4a8e0ffe308c7454bfd197c7398b4b5574e98ad26f02289f2f04ba33aecce7", + "regex": "." + }, + { + "hash": "bf949d6dfa6a26c8d0abc82afc3638fb0d37b29e417a3c3154a7b1c432060565", + "regex": "." + }, + { + "hash": "31f6f4f30f61aa8f133d31fa88871d32ba560e9ce607b408eb328c665285e05f", + "regex": "." + }, + { + "hash": "3c8f7b9eac7fb7297b2ddb90fa8bbb94b989d43377e72f4f907cf7c10adefa61", + "regex": "(?i)^https?\\:\\/\\/kamranahmad2004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1a162261aa06feafe474a1fda6f32703c02479e6fae5f4b33f21d96aaacdbd3e", + "regex": "." + }, + { + "hash": "9443eafe8e41bb73070006f4b3142cb051b1ab14a6662f9cfbd673f556beebf4", + "regex": "(?i)^https?\\:\\/\\/messagerie8\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e590200e32f12ffdc365195f18762a6d13329cadd8ed45abd5c1f61b5b1fe82d", + "regex": "(?i)^https?\\:\\/\\/telstra\\-107958\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "752b70a7fcafc81bebdd7b93017c653446a1f79a53ec4c3ef72b492848809844", + "regex": "(?i)^https?\\:\\/\\/telstra\\-105230\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b96a167227785318e602936ed531b15de477b3928151e6b12aebe0ea791b2b17", + "regex": "(?i)^https?\\:\\/\\/pub\\-ec4a3c0ce32e4d40bea41e4181d6c537\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "24ced01f9400ef8f92627dafbe099c3494ad0ef02b66134a7e2ed4c10c047eb6", + "regex": "(?i)^https?\\:\\/\\/shivamverma26\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8c991f8e363ecce550bbbe5dad15694e5e6d10c98ca527ef5d2e1c420f6688b7", + "regex": "(?i)^https?\\:\\/\\/pub\\-8336b0583b8e4a85a04634b2a34885be\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3f1d61b2d4a1c28c72b7a1df0607e5f720b7f8bd9565cb8508e175dd8808519c", + "regex": "(?i)^https?\\:\\/\\/pub\\-cb97c45a6fe348b1919f82ee4eea73b2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "107f61858235b2b458224125067448228139448acf83f4851631c7b82cedbaea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+user2[\\/\\\\]+help[\\/\\\\]+myinfo[\\/\\\\]+confirm\\.php" + }, + { + "hash": "c5ae8c50e831481d9900652844b3ab781831a22c37f6f5aa1d60c6d78b9136ab", + "regex": "." + }, + { + "hash": "bb3fa22d004d1fe092e08cbb7900e86ae9efbd90d9ccd598ae8cb1e7b6053f18", + "regex": "(?i)^https?\\:\\/\\/pub\\-e615ac857c8c479da46029000889ad04\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "aabc0acbc15f272d5d427ce61e90c3ea844b3c1e8e9a23444a24e9ec7a4e28d4", + "regex": "(?i)^https?\\:\\/\\/ankith001\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ae26aac8acd8a3d11366e34d87b4aa5d0414926514fe7f214d7a1f672b6f5e39", + "regex": "." + }, + { + "hash": "06797d2937e13df2d88f833aaaf0c771d7fee1da826da026eb0b633b4647ce5b", + "regex": "(?i)^https?\\:\\/\\/32652900175411plan\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ef6dde1562d9b26338cfbda0f48083237091ef95095ad8c4ec850a6fc51de3ca", + "regex": "(?i)^https?\\:\\/\\/pub\\-7e20bdb94a3f4b119ec86ea611248937\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c604e11e58a5e2007fe6c6dd329dff1f5c4f93b4ffe36d03cfeb4bdd295c26c9", + "regex": "(?i)^https?\\:\\/\\/discclever963\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "221fea3d75611c707bad95a89673c7c1fd68e684b1216db84c3ce382ba55ef3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+credit[\\/\\\\]+new" + }, + { + "hash": "c32412a844d1e427adee03355bfa4e27fec48bbb82110b2556c90470e8c0cbf7", + "regex": "." + }, + { + "hash": "0100eae521b8b1ae8d20fa44bf0daa39595a806668d3a03d83b2fc725286b0dd", + "regex": "." + }, + { + "hash": "f29432e185031386456778a1a57423eb413766a9ac18060060d8a2f134b7d74a", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{6}\\.holysimple\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "089454a945e83eced4c2dc420e973e5cb6926cf1df48e919a1ea3ca87d9e3f3c", + "regex": "(?i)^https?\\:\\/\\/pub\\-4e71275b9e184b8982b2a4fca93a92f6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2b32d5f137df1f0655c788c024e1dd90b363f0ea563046d3716ff7fb4030d4d9", + "regex": "(?i)^https?\\:\\/\\/khushigc25\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ef39d9b6e41e6b86ee109809933f471f8c3fc35d722bb6a5f54b2dea8cbf6ec2", + "regex": "." + }, + { + "hash": "700352bf3589d720a3b0eba55c737bce362849342b935311d9ee8f2f79095a50", + "regex": "." + }, + { + "hash": "6650ec2aba1feb2440b6c05731c765a2f1b3559114ae034c382ff2c7c2abba43", + "regex": "." + }, + { + "hash": "9100417b25d71ac31d01eb1c797df624aa76c6b29b45fcd64c1a75d752250256", + "regex": "(?i)^https?\\:\\/\\/pub\\-d22ca59fb64d43fbaeb6953708dce034\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "80d9913111a27c3047493b5b21382e800f0afc125dc6321d66fd2c24319d67d2", + "regex": "(?i)^https?\\:\\/\\/telstra\\-108660\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ee5280212486766a7a959d207e5cd365a11ee264448b8f449544fac59056b582", + "regex": "." + }, + { + "hash": "e1206fcba82374101949238f207501a376ebe7ba3a07253a0ec1daeda96c047b", + "regex": "(?i)^https?\\:\\/\\/rfgrdefgrdefgsd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "246d7c2b0c2695f5d35ab891524c73b5b2bb2a69bcf1c0a655dcc07a99ee3af1", + "regex": "(?i)^https?\\:\\/\\/rfgrdefgrdefgsd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "98365c862eefc27a370788a9f9143b0fef2a54033712ab533ff7656573a77725", + "regex": "(?i)^https?\\:\\/\\/dy6ryhfgyr6yhr67yhnfy7yuh46uhfguhj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "134e48e50fca53345ba7a75998d7afb2d8af9a3d68c1c89fe3af6d03d0c8fc5a", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cb16540ae7462cfd62b849031f3ffed4f4a80fd688c494a36a227027b53c73e1", + "regex": "(?i)^https?\\:\\/\\/jyfgbder6dtgfchge5rtghfhft6nhf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "37a0325ee032e93ce571ad4ae2f33f07951d9688060429ddd0da6a8cabf394c9", + "regex": "(?i)^https?\\:\\/\\/jyfgbder6dtgfchge5rtghfhft6nhf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1251ca1aa647f0e2c02fee90fdcef5dcb9d007cb7fb05f735e5671254381e08f", + "regex": "(?i)^https?\\:\\/\\/jyfgbder6dtgfchge5rtghfhft6nhf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "94eb6ea35c6be22b3e317c6eb0d752476aaa5847c97e3e5cf74584bb5673f0a9", + "regex": "(?i)^https?\\:\\/\\/jyfgbder6dtgfchge5rtghfhft6nhf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7e96241067420f67aa4a161721c61c0efc752ba9bc78616fed3c00433be979e9", + "regex": "(?i)^https?\\:\\/\\/sdbhjnbdsnds\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1d9713929d79a43c845bda5d3ed525a986061bab4e5d27b8cf99a0541072176d", + "regex": "(?i)^https?\\:\\/\\/pub\\-7781a5116bbb4860a6aef27557ec71b2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8c3e3cf032526e046521751b4516996cb837bc5cc6424bdb821330374d9093cc", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b9d1a197a6376ec5f500444a1c619872d0da2a233f6eef0cc4c048c0fded72ce", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d0a9efea7f625d991b081a543e1a81bbaafc4e359ad3e8bc9af5b9f193ca1fde", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "461cd6ef2739abd0eb5af41da85c8b42e1da6082348642d54cd205c0bb1ae868", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f341cc7050c5f827b690bec5a8fa51a637ee30a0f0f289032a27ee1d3011069f", + "regex": "." + }, + { + "hash": "6529c2b1ce5da3300970890d7a24d759c15c172569ca8bf8d18fd28c10018c53", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cbba61d3f2d0d1bcfcd3338a486da877b426afffdaf06339a2b2ef52cab625fb", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "867ed1c5a69998b2987a747b467c9a3a4bc49275056b7882bc69182ba2ec7b65", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f8ff3fe8a59d363845117b9a9730cdc537085273294551e113ec61608085da21", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "80e054f015812f269e52aa4983acdacb3389cbc2af8a7cc9d48961a5341c1117", + "regex": "." + }, + { + "hash": "a16763c84406eedaa4ce5c6026da8e9f4efc9d6d0f5549e43c8decbab39dfd94", + "regex": "(?i)^https?\\:\\/\\/wordpress\\-yellow\\-lion\\-r3zzult156629\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7c7fc703080c67da62db57c2b7438d37295445fab60f24f74c66854174e4df17", + "regex": "." + }, + { + "hash": "a54c59bd5706f2cd7cbc720feb52ba71705972b5b2ad926011777ff37c3e1cab", + "regex": "(?i)^https?\\:\\/\\/pub\\-e12629b70cbc4010bd8b8912cde6b953\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dd3a837a8f5537937172b009d132bd03dcd6139c89fb5fb7dfd6c5247cf4b924", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogettixandrobux\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df75abf5892267f01032e6ece02e043029af1720793b297628d17859889588a1", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogettixandrobux\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12d201629eb60bb9a18ae4a70f439f45fab45194a5eee82a4015b9d292e4d42e", + "regex": "(?i)^https?\\:\\/\\/robloxinvincibilityhack\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "401814350e82179fdc3bb646c075eab19d3e0e73333bc3e4f83b179ad76e5e75", + "regex": "(?i)^https?\\:\\/\\/robloxhackfrmadciy\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e9c952d90634ad538a3ff2abe31d356a98b3b17804348d0e74c952b418e9380", + "regex": "(?i)^https?\\:\\/\\/ghfmnfmfghm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3d55fd1b68d9ac54a4c124cf12ec71cc052ba0bf84d431fc3b9a0bbfbc0d9a13", + "regex": "(?i)^https?\\:\\/\\/ghfmnfmfghm\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b4fd78494c0570022d9721e12ff174080065fe92db980ff85a68932636b06a9c", + "regex": "(?i)^https?\\:\\/\\/ghfmnfmfghm\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "df2cfaf84e996afadcc3622e8af35d53fdb7335cf5cb428308ff6ee0b25b70f4", + "regex": "(?i)^https?\\:\\/\\/ghfmnfmfghm\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "99470b017e521fec9f0b96959c2442264258ba93f64c8eadf74438eed0dfecf3", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9f6d80229548deabd10dc9c2a0d9723808f2fef1df739ffd22ed9b96c33f70e0", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a513796e6cef3d9b6948a247f6e08d65107bc2611b3536c18fdfaec25c0efcfe", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "34088a29b9773da2d7c2e10aebfa44b971ed44b343bbdfb91ef8efd65525efe2", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2a7d3f4969960721c33d18e359ecf321c3883306826afae044650997ce8abcc1", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "762f8479506943ced141ad388b2e08b63cbedb117810bd99247c4d2f6abf1d2b", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9fd46e079b53771b13fb28091014f61f2419d8fe36f0f4c7eb72f4b835c258fd", + "regex": "(?i)^https?\\:\\/\\/pub\\-1ff4bb56b60a49d19f84f2a575565132\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "43fb6477d444e08b7fe4e61bf9549635fa42610f09b034077ebb3bc5b5d36858", + "regex": "(?i)^https?\\:\\/\\/jogandofutebolnoroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2857921a326d88bde4ef0671f90d92b2a4228e675799315ccbb0d5891c61d59d", + "regex": "." + }, + { + "hash": "aabc9623642be08d420ae16a14fedf63ce3a56621a9db55c62c3e2969afcedd6", + "regex": "." + }, + { + "hash": "35145b7f8b2e47956b890b0fb3cf75b95b94aa0f0e269eafd3831a557b7f8569", + "regex": "." + }, + { + "hash": "e714831c7083f0abd5aedfab27b40f5281ead705af1248bd47625ec9ed43c7b7", + "regex": "(?i)^https?\\:\\/\\/pub\\-368902b231094c049027f8c70eba8349\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ba4d065fa49cf3447cb4302965548ae6d50462b69d9a7d903a191e967122f07c", + "regex": "(?i)^https?\\:\\/\\/pub\\-d2d454e4dd7148c7a4853027dc2aa965\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a7c58516458518897df8403576a0611ae650494d86dd5219f377515eb9ed71d5", + "regex": "(?i)^https?\\:\\/\\/pub\\-6808fc2d4e1b46a784bfa17b251af8f7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "97ca0c1f51955d2f3ab01c6943347db65e2b4f7b8ac72196d27a79a0fb989189", + "regex": "(?i)^https?\\:\\/\\/defc\\-28\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "74d11cd4c7def8c0568a549f2800ae5b7d657414c0aff110b0c37b52fb47c7d4", + "regex": "." + }, + { + "hash": "87a309285fb2b65cdb18b6145eb97ea2321ed9b29479f5bebc5ac295d4674e4d", + "regex": "(?i)^https?\\:\\/\\/dkfjgkdfj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3c9a3becc9e26d82d1878f3897fb38efc680fe50aea5b3596b20926174f50100", + "regex": "(?i)^https?\\:\\/\\/dkfjgkdfj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "dc05b098c77d4f4cbc2f67f1db63cbbce94d25ddb2e9f142dcfe57eb228f4572", + "regex": "(?i)^https?\\:\\/\\/dkfjgkdfj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6fa2e68824c1153134b8e7e4274fc45859a8f2f0cc9c038404ccdda5d89c4050", + "regex": "(?i)^https?\\:\\/\\/dkfjgkdfj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e721aa2da8f2304e4c44312e4abf9a569e393a1876ad0734ef0bf378c35ba91b", + "regex": "(?i)^https?\\:\\/\\/fghhdyjh333\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1bac62290ffe81307e55a4528c0e8afaa3e419037e20a988412a4d3aba257648", + "regex": "(?i)^https?\\:\\/\\/fghhdyjh333\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b481c88b1afcb8511095782dd240f242b80937a1f7dffed84c3ac8d099389dc1", + "regex": "(?i)^https?\\:\\/\\/fghhdyjh333\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "91432ff696f9f15003bcfd612aafbaa3067d8bb668dfc81970bcb7cf90bb1070", + "regex": "(?i)^https?\\:\\/\\/fghhdyjh333\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6852243fe804578f72c07b6a83d65ead9f0f5c4d7ed37eb0ba5db47fb57acae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "bbe4e4d609048fa712be9141138c8fa6b81f48482be1a343953d81c64dee06c0", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "642e241156833d4268409e6d17512e4513b516f2df9a47859450ae733337e6d6", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7fe9e92ffc244ce1126ef14737d92cc5946f96a78fda28cec880ce5401d4ec09", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f07f800502a2ff09caef9480e2454366ff6071200e1ffcd68328ab7ae9abb4a7", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "394389e457fb523e26a9eb39053ee2ee8fb2f877a334a7787dd260ed0ea0af38", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4891bea8d668142a9e2e62ce78e67b3ac7ea957f0380375d2c638b51ac04c332", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "84d8b79d5819478ade6359c4c38ea8c55b63a67f95567b1c307a7dfa1d368a9d", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a19d7fdd401e73f45ea336dd54ee4aacdd44c325c241b143c5b1a14da6102105", + "regex": "(?i)^https?\\:\\/\\/bvc3vc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a929c3a54e6c887b758159f7db7f28e564c964f7152fb19fca10db4b963b65ec", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "230c40026b25782112047eb04ef94ddb91f59c450ed245133f0250dd475ccb02", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "097389f0be4acc2b36a0ed068904f1edf3e5bbfd628a92bfe3d6b5e02d338453", + "regex": "." + }, + { + "hash": "5a873e0a8c683617d4b45aa88a0575c0ebb1009a4e0a1f654b306627b87e95aa", + "regex": "." + }, + { + "hash": "fb09b7ca1e05864205752868209778bb52baa1307d8f9457156ecd75d8d08a40", + "regex": "(?i)^https?\\:\\/\\/link54684\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f2a104a5204a323b99ebb4c160e1843e74d21070f12d5889adfac2f667089271", + "regex": "(?i)^https?\\:\\/\\/link54684\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9f76bdd870de0f23fb313afd7aed2ef754ccc549c7e65bb2f7848cfb86bf7169", + "regex": "(?i)^https?\\:\\/\\/link54684\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c73772fd79d3bd81338e760fe431c6a94ca66589445628d3efa9bdcb2c4e4d4b", + "regex": "(?i)^https?\\:\\/\\/link54684\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9399f86fa57d0652e7b2bd5bf338d359f978c9fbdd2cec6c19452ccdd08701eb", + "regex": "(?i)^https?\\:\\/\\/link54684\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bc3057e900b138e98d63f7cc3ff5d297d6b4c205a9aa28bc2dfe969b3b3df5b3", + "regex": "(?i)^https?\\:\\/\\/link54684\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "478d2c5f4943076b36238edd183f620a7feaa7152ac8b39e1050c9cebf3305d9", + "regex": "." + }, + { + "hash": "6a8d779fee0fbd073388ea1508de5d1caf6b01dda184db2aff927c899b44413c", + "regex": "." + }, + { + "hash": "597b82c271f549332fd840dada70885fd76fee762518b90b2487f5e20adf1d86", + "regex": "(?i)^https?\\:\\/\\/hothigrrfgsgga\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c5a3d45253dbfae02965a08e5207f047b55b5140fe2a1a66d198a0bce41e3a9a", + "regex": "(?i)^https?\\:\\/\\/hothigrrfgsgga\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "99731224a7cdf02634e9406e1d21177a66e5b41570ca56c0b7f9335c80ac0f8c", + "regex": "(?i)^https?\\:\\/\\/hothigrrfgsgga\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "651dc603e343aba0b683eb95b8c9abc71e79ba749e4b10feb1bc0837f0d0a50a", + "regex": "(?i)^https?\\:\\/\\/hothigrrfgsgga\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ba67b1d35a29b72df0375a7ed764a746bbbc579757c0d50c2aafde785aa59041", + "regex": "(?i)^https?\\:\\/\\/pub\\-f5fce3f468244b558d68e9467e484d50\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "79719acad7148b19e5e6dd8d8d283124737c4703995490288e2b78e916431743", + "regex": "." + }, + { + "hash": "0625179135251cd84496173b745f0ce93fb5b5d45319036e2954bb6c0b371ce0", + "regex": "." + }, + { + "hash": "6bf83728b488208bf6f78355981ce81947ee68f0ffe5cd59cf0edc558886cb03", + "regex": "." + }, + { + "hash": "ff38b79c20ad14ead3ba45eafcf7f5b348e9c6558ff1e0cebef007a10b349c8a", + "regex": "." + }, + { + "hash": "4d139f3e23c3cd6a791eb2087ca0dc8fffd6dd239dbb4ba0f1f8d89e0553c119", + "regex": "." + }, + { + "hash": "545a5b83ca30f144e64e1bf56fbf4e8958c8f5df6c3eabc9ee419495605f8ba7", + "regex": "." + }, + { + "hash": "fa2fc8cbbf07fb3200e5ff834dac897da263ffe8c1c8c16ef78ee533cde42b61", + "regex": "(?i)^https?\\:\\/\\/fortnite\\-bl\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2e72009e847f1576c653611c0803713a08ca213710eccffb9f1089bda7a512dc", + "regex": "(?i)^https?\\:\\/\\/fortnite\\-bl\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1e627738b2b43daa1f3847409a4ec434341e2d11c182b7e9335718cd4b9fc4bb", + "regex": "(?i)^https?\\:\\/\\/fortnite\\-bl\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "75074ac3235d669f3683545ea8ae2a35200c2638678689202ee8a8df8118e3a2", + "regex": "." + }, + { + "hash": "7ea049116f2962d3e428940a273d8f66f44ce98ef44c67ce72c9dbb0374bdc21", + "regex": "(?i)^https?\\:\\/\\/pub\\-0a4e09c2766b4eb9a8ab43b41ee28202\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bfa09c9b2d0eab272c4f72b5292e5669ed91d095f59e139e0309ba63bb5f259f", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1c67ad1cb6a00c5b24b720671b3f6d617fc4a2c0fa6b6f211fccce28c420d207", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cc6a9e3bc9b129919eb839ea6f7cb102b10953dfd67f3c8174d30e0eaefd3259", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "28b3f07e031adf2712b2bb230a15afe6b4645383031e83925bd0207021db6ede", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "92abd54605653d8fc1e5ce92dcb3b7a795fe7485b6923d4f7bc30f12796cbb57", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6b319af5101c9fc4e903963d62157759f17b6b0e38027d1f01bdfd7bfdda11f9", + "regex": "." + }, + { + "hash": "b23fc39ba1ce4e47a06ac26a052bbc3d704a3bd387afd7e85bb3b0694b4811ce", + "regex": "(?i)^https?\\:\\/\\/onlythetruthcansetyoufree2\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c9fee78e5904a2338b9997b7477250dde5e9f4dc930e5b81db237f834bf8c46c", + "regex": "." + }, + { + "hash": "ac5fcb865161402f3b1b74ded8bdff4ec5e45fd2e3b440eb696f6203138b6b0c", + "regex": "(?i)^https?\\:\\/\\/alok6465\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bcd156bb69b11b43d9ed6581c235a164cc423e26ddca08967ccf2d1498ae7484", + "regex": "." + }, + { + "hash": "6a8de237ff51c9b2de2883b112e468d018cb0332e2270e44b7e489db89b819a2", + "regex": "(?i)^https?\\:\\/\\/pub\\-d2a73c1e50614f97a16e25c3790e1f06\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "85c2130d68f9d27d80af3ec07775f42b1ce79591a46990a1e0e6b83b94c68e45", + "regex": "." + }, + { + "hash": "b5bddea36c8e3d8ea8ce2593015493838159b1e9bf2db7583dd586223e662a95", + "regex": "." + }, + { + "hash": "dc277af3ce37f7b43d82c8856d305794acb78f796ecf910589f616ee0de27f69", + "regex": "." + }, + { + "hash": "6b1f63f244f68aa30d317718658f1cc3b2282d24493d1aa389b4aa6914347cb3", + "regex": "." + }, + { + "hash": "589897199d3532c7d5810e8fe38e05c49e953f38859e360a02ab0b2661ffecce", + "regex": "." + }, + { + "hash": "8d2f0da376277574652c90df41d6c2d0c645b184019053d239d315045346ae8e", + "regex": "(?i)^https?\\:\\/\\/pub\\-3735cb796f0d47d7ac36fdac46e2abeb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4ee3fc294d7f7fa4d0bb6224a84ce9d55d8f45b2345e030b84ea32fef9ce94f8", + "regex": "." + }, + { + "hash": "d2587e64245557400c0d59cef6c65b616cd4f706b61d43cdd5b1fa1c785a4144", + "regex": "." + }, + { + "hash": "0c7cb9c42371b841010e914b921e019698503ca19a9549bb8c8e16e73b4501c6", + "regex": "(?i)^https?\\:\\/\\/pub\\-0eb0b03514da4840a9636907d1bbb307\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8b8bb86055aa4dfbf26e012901c0ff9597ac009b9cc8db390070345e5e181878", + "regex": "." + }, + { + "hash": "f02ee84e9f11f0b891068bc9d88801350a338ee2d1646f2e6d98a38276887a34", + "regex": "(?i)^https?\\:\\/\\/www\\.wbmeastlink65dfhgh6565yuyueastlink\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8559bb13b9f27ce0e1c354fd783d7cb7f71029a7d4ea963da6d50e22c4d4a64d", + "regex": "(?i)^https?\\:\\/\\/pub\\-4c1d7dd6a4ac4220a2ea199c836c4e39\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "aff151d1f5fc8b110a1d34462a91d826ad6f8427f007ba53dfca48302de836e5", + "regex": "(?i)^https?\\:\\/\\/netflixgpt\\-98554\\.firebaseapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "206b9c350b8d2b6ee19537bd327fc702226e03ec70f5b11a1fbf28d83bb13a10", + "regex": "." + }, + { + "hash": "9b3bcb46fc32a5a379b566fce74b94ef942d8bb6d0e74409aa36d92b5c47c5c2", + "regex": "." + }, + { + "hash": "1cf9bfd4b56cda8af05e38854bcd47e5676ba9c8836bcf5d2fc06179695f81e5", + "regex": "." + }, + { + "hash": "0a87527a169fa9553f32cdbf18c7e9637bfb0b082258663a1546ec8e519f90cf", + "regex": "." + }, + { + "hash": "95f0eb3e0c48742c868f20682cb19a2832027ac8a2f1abaa885c9e0e555a2162", + "regex": "." + }, + { + "hash": "686b3e149a1aba0f6c2e41953a6eb5ac3abb9391ec7317b4363e0aa68c2a027e", + "regex": "." + }, + { + "hash": "715335acf967ab08c1128c00bca21364733d697ec4dfb756e24a835ecae6410b", + "regex": "." + }, + { + "hash": "856107d02366421e9c4954723e199a9a3780b5d5cfed2e7d121e8b1f6daa9820", + "regex": "." + }, + { + "hash": "f41fb30eb659a3405d1aae7380b1fe3af9d9db1d60dccb69dec0576c87b93803", + "regex": "." + }, + { + "hash": "d43b5c7c2ef2fbaac0f99119f4cec7e787fef4298f2d21e00fdcfe11af4813f6", + "regex": "." + }, + { + "hash": "9a8db91e53ca28af084b49c05c33e314b56a14cfb4f6e2521d276858ac868b9a", + "regex": "(?i)^https?\\:\\/\\/pub\\-feee09a9d2474c04b35d842c89eb18e2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "71a403ab9e9145e59f2d6c7e3a1264a8860de3349ddd7e7e979a85b09d08f947", + "regex": "." + }, + { + "hash": "d7cd7e6969c5a6e1a305b22cd6b7613e710c75ec10e7971b89a4849c0ee7204a", + "regex": "." + }, + { + "hash": "af121a3e5ec9771382090d1edd9d1a9981eb9db832766a588d2125e2b50d84c2", + "regex": "(?i)^https?\\:\\/\\/pub\\-288f7cbe2df4494985bd2a37a881cc26\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2ec2c143afc4ecfcacf14fecf55139176810976fe973e14cf4efdb83e526a6e0", + "regex": "." + }, + { + "hash": "2dd1f9708565ec1b698af82c75d0b67c170e4d9441c7169cf2fe04282c6a0ac6", + "regex": "(?i)^https?\\:\\/\\/hacksparaprisonliferoblox2021\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fef65db4720797fd7a30f5f474171be22bba08d5903ecafc8f15f4770493c93", + "regex": "(?i)^https?\\:\\/\\/robloxraredecals\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9cd5c2dfb1b01f9471d308c79b0cb85e0f83561d1a7bccdbbace46ae94face3", + "regex": "(?i)^https?\\:\\/\\/jogodecomerefujirroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25fff8134c7490db9e162a3bb3da35ad9c0b62e4bc940d4e6d071a79790be147", + "regex": "." + }, + { + "hash": "f84cda652c6c8e38aae538b16a3306442eb0c93f43721f18969f0b30dbc95fe9", + "regex": "(?i)^https?\\:\\/\\/wolfy888man\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "639468c5c6b591541a01dbee4f8b2d56fb910feba1a00f46a76bc7f42a5b3c09", + "regex": "." + }, + { + "hash": "eaa98b4a6d357c85a9e78b0ea215e041ce3534b59e813f898ee7e10356c4dde6", + "regex": "(?i)^https?\\:\\/\\/pub\\-d2430ee851ff44c0a6487c8b6c19a658\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "71169074a0ee8f2c640a6fccb9b2b439006a790c1af14cdfc6ad2519cacfc01c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\~visadaddy" + }, + { + "hash": "616991a2e24148e68d92eb5ef7968049a30c80051c07f8d6960513eff7824a2c", + "regex": "(?i)^https?\\:\\/\\/pub\\-ab22e14c43364b8aa80767577e1a4176\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bc2d79176a50bba986d77717b1dddb1a236289345ee49b4561ed92f758a2d257", + "regex": "." + }, + { + "hash": "b2469d36cb0bac5eede18ccd07cccba89bd75859babe8127d8c8bd60d4a51b73", + "regex": "." + }, + { + "hash": "a05416d55ad8e56115765229824108381b4e137860cec23c223a98d4b0316343", + "regex": "." + }, + { + "hash": "0db0deb8c0ab8ef200086ce87878f9d18044e521784848e95745c8155f44e98d", + "regex": "(?i)^https?\\:\\/\\/krushna57\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b4df3fac817e1180399e8a8e6cf08607815ca741c598397e5e2fe1ac418a901d", + "regex": "(?i)^https?\\:\\/\\/chocolate\\-janene\\-2\\.tiiny\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "5675a4e8fbbb6ab23ba0846581ed3987727ac4e14725c15cf337a718339aba38", + "regex": "(?i)^https?\\:\\/\\/priyankasharma25529\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "47339c4d0f5945ea2e8d75edd0d43e74bc4d4487aece83a9724892dc8e091c8c", + "regex": "." + }, + { + "hash": "ce6d4488d4a5f86c9ccb1ccc7e42dcee09a962061340b55b0278104ecfbc4194", + "regex": "." + }, + { + "hash": "377a960a99c6267cf5224607b9d67ee37aad35802ea209cd13cd58c97845c738", + "regex": "." + }, + { + "hash": "88c72ab5157ccd7b88ce5d582c83f06c9682f079f73a95b736966b36d944f21f", + "regex": "." + }, + { + "hash": "becc73ff1b6928414b1f2cb1269206702aff5331072b840defe2ffd6f271753d", + "regex": "." + }, + { + "hash": "151232f465e1ed3adebe6f8c38112234f113c8bd2f922a4c4ba7ceef4daa96b0", + "regex": "." + }, + { + "hash": "42750ae44adef0d3ecdedb936c0f1731b094d01744a3551994a20c63d35c4944", + "regex": "." + }, + { + "hash": "e58894a9f7529afe4f1358e2cfb4fa3c19e16e70a952a1201ad4535adcba8b04", + "regex": "." + }, + { + "hash": "caf1c20710e02643e479ee93faf3e90f5213c3f6b0d14630b156e96eb7c8c1ba", + "regex": "." + }, + { + "hash": "834f3e8ec5bf09629f89d96f8c9a57daa89ba5def27aefaa214ef3f205a06638", + "regex": "." + }, + { + "hash": "4197954f79a4e3f8684c32787efbf1d6cea608b0740963f143938411270000e0", + "regex": "." + }, + { + "hash": "315c47965764b2d7f75092175ebf45f5496e08436a98d37f2ed7549fee312d13", + "regex": "." + }, + { + "hash": "d65c227eb3fa237ee83e8f8d913bcd3ba5da79d7f920c2b0dc1cebfbd07b4757", + "regex": "." + }, + { + "hash": "90410590d27bdfa8d1ceaead12716fa13f17c6348859275c1c1671b840650a60", + "regex": "." + }, + { + "hash": "f3ed9c3e4eedf19a602d4db28128b7d00e86f80652540842fac017bdd524c1ee", + "regex": "." + }, + { + "hash": "e79f60cf7738189b8d8e2fb12f73c462111b36bc2a89f454dac431dd1a3fdb61", + "regex": "." + }, + { + "hash": "971f1a49ca02465e722d865714e025489b4f985eabca7b4cc32c29d4dde4dad8", + "regex": "." + }, + { + "hash": "df68a8d82319ed32f049a70d05442f13d00c4d4c755c18153d24b501d3b300d9", + "regex": "." + }, + { + "hash": "451ad690fed9e4339e1f6fbf4844f31eb09e24017843e8b402d0c7356b9d4865", + "regex": "(?i)^https?\\:\\/\\/zhgjh56767\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "036febdac9f72306daef600b2eb954998364098060139e8eb576633c9d763ced", + "regex": "(?i)^https?\\:\\/\\/zhgjh56767\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0175a2068090b6fe501151062613eff94ce46eb855303ba98d621d897dae9e49", + "regex": "(?i)^https?\\:\\/\\/zhgjh56767\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "249b093f1ab2f5153bccdb7858bd59f9b3e460d52d2691cb62657b91dee8f8bc", + "regex": "(?i)^https?\\:\\/\\/zhgjh56767\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b77a873a576c98156a28e88926d031a0104bfb53ab7b421bec59cf01adc5cd1c", + "regex": "." + }, + { + "hash": "94991e70c5225d678b60e522654ccb88be90b64412250ea5d0497592a3a5dace", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?videoconhiepmexxx\\.gardeningandcleaningworks\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "4761c75c2ea8849fda4fdbc3e5fe52afdef3e745e66be3b42fcf83ffccec9c97", + "regex": "." + }, + { + "hash": "e08dab0a0cfdc9e6a9f06a2d998d59c8306f4dce8361b20dc8614cdc5b0cb85c", + "regex": "." + }, + { + "hash": "dc9c6f5090bcb394638d7b99fdb531eb027ce4daefe1ee25e1a5c62eeb511496", + "regex": "(?i)^https?\\:\\/\\/pub\\-1cf9930c108b48ad847cae7071d12276\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "42548660282851152acffaf7aebdd4330de991db245c3d04a82e4853062572a8", + "regex": "." + }, + { + "hash": "0c8bd4fbf15e5d0791699b93b3bd202ac8c064e92fc96d745d2f7af3f894fe78", + "regex": "(?i)^https?\\:\\/\\/pub\\-f62c162b56594358978550e6b7fdea83\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ba61522eb347b7476c27807ff387350c48dded5914ac881c328c42462f584710", + "regex": "(?i)^https?\\:\\/\\/reftiii345\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "67f48d6f43c5bb7f70b7e2981216369bcc2b7083b28f7cb91a68b0cbfed4b1cb", + "regex": "." + }, + { + "hash": "60e9d6058e11aa8ecb44b31a83fc6c0b1c4fd28d64fe00012c73062ac75e44d9", + "regex": "(?i)^https?\\:\\/\\/fsfdssd3434\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "96e8608e8a1b6ce5b9fdb6e448cd0e8d9bcac8cc154f594731cc0316ca6c562f", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d1e574343807eeddda559e715a9d5f0db33f939c84e3bd41ff6794f036062c06", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "79181b0ea8a02ce2d5541e960f71f1f91a25fb920ded18eecfc0a316457389c5", + "regex": "(?i)^https?\\:\\/\\/fgfgfg5\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "04d3f7f489f3731f09094733255068c7679104c078034c2226554c1efb4a47ac", + "regex": "(?i)^https?\\:\\/\\/fgfgfg5\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4c0237f6de92708f003ee9f124b496d09f9ae843f8201a023feb01593afdd927", + "regex": "(?i)^https?\\:\\/\\/fgfgfg5\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1942ca9bcb56a9003931f365c6114e5c6a1f946144fac8ec001d594e4158ed6b", + "regex": "(?i)^https?\\:\\/\\/dfdfdf4\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5af34ab91e40c6d1da2ac0190fcd02da4335d06d9e13f696c45448bdfa1a5d4f", + "regex": "(?i)^https?\\:\\/\\/dfdfdf4\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "54244052c9bf4cf142f226d4375850c54a0bf50c1775f99385d52975dc76963d", + "regex": "(?i)^https?\\:\\/\\/dfdfdf4\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "32e55e1ca96a82d67770937a915ae490df7c8bc21b5f10bb18b2f2b434a671ae", + "regex": "(?i)^https?\\:\\/\\/dfdfdf4\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "63199b8d844e5410f421f3a5b73c9a788eefd2443a3aa61ac1b79c77d0c07acc", + "regex": "(?i)^https?\\:\\/\\/dfdfdf4\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "972f5259fcd0b70cc8e6687c1a4645f4b4915b60b1e898bf3bf6093baa7b81d2", + "regex": "(?i)^https?\\:\\/\\/dfdfdf4\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1cf13a9928e5d76410d4407bd94a279b60e761ea00374a706799a9a72c14dbce", + "regex": "." + }, + { + "hash": "909e0debac0fd63d2b0209254b75548f3d807e81dfa36eb1e61db4acacaeb4e2", + "regex": "(?i)^https?\\:\\/\\/ghuih8\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7a2850ac0ab5812a6605ccd834df611c50c8737685ef260630f1f108a7498f66", + "regex": "(?i)^https?\\:\\/\\/ghuih8\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1798f1fd9524fd1677dd30441308019e8611dde5c9deb9dd9ea2c6b6a3022048", + "regex": "(?i)^https?\\:\\/\\/ghuih8\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e7e9c16eda9f091e3e690c4dd7d9ac8b7ca12eff7f618310755da79367f1a597", + "regex": "(?i)^https?\\:\\/\\/ghuih8\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d4a4d70a4234c8720206d77689cfd4484ad6feaed613c06b2e7a98cbeb5a402f", + "regex": "(?i)^https?\\:\\/\\/ghuih8\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7e09f23be8a459459e52365a98a81cc96d381001d1ce7715bcc8fcf8b936c15a", + "regex": "(?i)^https?\\:\\/\\/ghuih8\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "877f244d1125e802e55c424f92fd755fbc7e06eba635af3d9fd22bf299044f6a", + "regex": "(?i)^https?\\:\\/\\/ghuih8\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ef75014fe380bd8c3b4acd3fd01743846d1ce8d435fe54daa39a4f6a74b4a965", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c8ca898cc187b32e75fe0b02840048888ea8f38a8b79182cbefd0ae6066b2466", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "deffaa9646c6674829005e2224b145c1db0c00c57e20ce90aac85d497d7ea0b7", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b58f8c4ae73da5ae35bc10c4e8239adc49413e270bcd8e8a1fe6c2462f34bf06", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5b307ba9e758aed1663c1366465387b16317db60c8f2018411434009d2fd7b08", + "regex": "(?i)^https?\\:\\/\\/dffd3\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "716840c76d6c6dfc54bfcff9ae859fb22de9439f9a1eb8f6202b25669fc1f2a4", + "regex": "(?i)^https?\\:\\/\\/dffd3\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "02fe7e5f5e0e949a7eacc9ebc70f98e7084df327e82d8c1bf146fd1c80aec882", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8cc93de169d1781d45efb7bd42984fabe30e0acc62aae6f18026cb4694eae633", + "regex": "(?i)^https?\\:\\/\\/gghghht4\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d828fdc3194eadf1238bfca4ea5e822aa3ae1621799d57628131203c4b42890f", + "regex": "(?i)^https?\\:\\/\\/gghghht4\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f1cae6d716ddca0b7a79fb9de544f96287eb043f806e90901a48b8ec5782b703", + "regex": "(?i)^https?\\:\\/\\/gghghht4\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1120af959fde742d1faf7332d3e903f4e568872f1461c8079beb0522f287d08b", + "regex": "(?i)^https?\\:\\/\\/gghghht4\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "94eb0daaffb36ea0417c96b62a1893025a0b4338545b2cb57d6b7daf9e55450d", + "regex": "(?i)^https?\\:\\/\\/sdsd232\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "305c8124392483804811aeb7bae9fcd094e129b1987f49e4fcc5233f44b9643d", + "regex": "(?i)^https?\\:\\/\\/sdsd232\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "df268f6ad73d911ec1bb35f1d6960886e3dc86475da24a0b26ab061f7765104a", + "regex": "(?i)^https?\\:\\/\\/sdsd232\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "72d7ec2c3b5676dfdcf15de7633a60657c1a06798b572b4ff15bf1ce70e04b22", + "regex": "(?i)^https?\\:\\/\\/sdsd232\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6967b6930e71f0105ae069898b1b351c030ca5dc812235bb690306c1f3e9574c", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "95de6e50e600f11c0600fd121bc61d9717ae8929b9d89ca945d0ecc093d6094e", + "regex": "(?i)^https?\\:\\/\\/gffgg5\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c2c2282bb9634a2be1a3e1ae953efd9120f64c67d1eb75253797f6b0b39e53c5", + "regex": "(?i)^https?\\:\\/\\/gffgg5\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "581beffdf50e2818214fcc00405705c31ea27d2599627a6c1d1cb87aeb214c39", + "regex": "(?i)^https?\\:\\/\\/fgghh6\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c5a4e624c6691bd3cecd948a0bd8e28229218859352a0bae5366653b52db4a6b", + "regex": "(?i)^https?\\:\\/\\/fgfg4fgg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9e861067f67a8be70429c9416cc62853a1ad0072a1443a04c6de2bcc26e33df6", + "regex": "(?i)^https?\\:\\/\\/fgfg4fgg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a1794e24d319c51947fa00b6cbb889f0edbb1b00325fc3a722cfff793009ab7c", + "regex": "(?i)^https?\\:\\/\\/fgfg4fgg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7d477f2d0f22b3076a6e46e807a8b4b0b27cca87bc5d5e8666b4abe5c0a80bef", + "regex": "(?i)^https?\\:\\/\\/fgfg4fgg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "399356c482fac62c18d8e0d3c30bf1f5e749c68a78c3078ff2f16b006fa9eff1", + "regex": "." + }, + { + "hash": "ff62c6998b176adb868ff023d611a2c5fc7552ae3e67a5a0b809fdef0e01b745", + "regex": "(?i)^https?\\:\\/\\/lkjhhhj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "82f0e119cc338312329c1bef3037cc2b0b8905c62829225c317428546f46fca9", + "regex": "." + }, + { + "hash": "51731348db1ebee607bec50f8d34b0c93da3187e59c6358fe4db833fb233084f", + "regex": "." + }, + { + "hash": "f606e725be07aa205031df9964fe75935b1171b46cdb1b696ea85c255d55c755", + "regex": "." + }, + { + "hash": "e7c6a2a373b8d6ef087bfdfdbe80b435d6a63bf7154b30c5de38c33ab10b45ca", + "regex": "(?i)^https?\\:\\/\\/cxz34az\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9a05607305a80bddc23327f653bedb84a8302125f099844c231d7cc10f2e6c69", + "regex": "." + }, + { + "hash": "d841294539d8f01ebd16137fbec8c6b6c4a2f1dec58ae0fae22f8c16ee07706e", + "regex": "." + }, + { + "hash": "41c4a6bd0dfa8d6e270550e312a24c680ba30738fa176aed6fdfe77c8b3c04bc", + "regex": "." + }, + { + "hash": "3490dffcc73c9c0e9eaa2898e821d1493b1ff6f0a553c75dd53fee6382be595a", + "regex": "." + }, + { + "hash": "32e595d3f739663af790a753263593b8f35f27ecbdf404e1b3c4e60f4a7357d2", + "regex": "." + }, + { + "hash": "64723a60e4647c3516c669fba35fbac4d397df4400ea1b559e31c8ad4640cbc7", + "regex": "." + }, + { + "hash": "37f99681cb6946873465a19217cd9b9c819e1892b4592323aa88b9a6fcc3a2c4", + "regex": "(?i)^https?\\:\\/\\/pub\\-16e593bf2690489b8f7b77aefacdbb91\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3086ca3efdd65471bd9852bd7173bbe1c6669a824fb8d2e1b24c75957f02195c", + "regex": "." + }, + { + "hash": "aa4d015fb98ddf7356e4d1269bb1f9799144b48178fbcd0f3f5a829fc3d7ab5a", + "regex": "." + }, + { + "hash": "07c4e0fe14b035962e2fba565c76b65d7483ad289bd870d78196878f56360ab7", + "regex": "." + }, + { + "hash": "0cbe6e49f14b86c563f79a71db14228e0dc0d6e23c053f85f6a7273969fb7c2e", + "regex": "." + }, + { + "hash": "05b8700689e419d7eaf462523e67acf847886d70806ee4ea00ab7e9920b6f16b", + "regex": "." + }, + { + "hash": "2b4fcdc1217e2f619bb906a1cb7c893a6556781290b5246f7486863fb75844e7", + "regex": "." + }, + { + "hash": "c1dee09c1771d466d5ece4e42ac566f90d23400a62122a527ca137e753c40b0b", + "regex": "." + }, + { + "hash": "4209935ecd46b8f478dd58453481b4a024e4c91492fc3681a04c955355651f23", + "regex": "." + }, + { + "hash": "01e4afc400cca3ed5197214c9511f1dfe9392240a508268b5c750453db08d4ac", + "regex": "." + }, + { + "hash": "616461474d3a3661f72c7d58c2db35c879928097bb8ab6ddbd5279f8e2866980", + "regex": "." + }, + { + "hash": "d894e5212f397c2c01eb44785e523e71182f1ab72780bd6da805ffec22568aa1", + "regex": "(?i)^https?\\:\\/\\/shubham\\-raj\\-01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "be3615a3a844bfad88ac4b61196445432f859a49c5e1a75cba0a0ff640ede88c", + "regex": "." + }, + { + "hash": "145bc21fc1d0c2089559649cbbb49e16b105829b37afd79582f703259dd2a9b4", + "regex": "." + }, + { + "hash": "dd23ab5c071e0ef0b7b87420eef5723e5d84d1137304d906d8d17614e439563d", + "regex": "." + }, + { + "hash": "2645ef6978bc6f1b68c0654c2be291c7cb1d89305de0e1ca4d69d09e122abc42", + "regex": "." + }, + { + "hash": "9164763ff3e007ffd704d5a078835b7b06d05b8d311402fb08f4f5676423dc58", + "regex": "." + }, + { + "hash": "4a2b4a3be4722048b106fff6fc752fca3a7dbd84fc971028b54689fc1906cff2", + "regex": "." + }, + { + "hash": "6862997878fded1bba0efdb19dbf0a3cfa5e5af76f5960efa677495894e08cc8", + "regex": "." + }, + { + "hash": "1b2109480e3146d6f7beb6b1806eba470c85dfd83b6acdc641ef83240aaae967", + "regex": "." + }, + { + "hash": "648a5d5122847f923b35cba2a024a108ddec3108db3dc7487c2b64624ed20b04", + "regex": "." + }, + { + "hash": "99628355009bbb8edf287c41489b3aaff30f1de62d3b068167a4d5885eaddf4b", + "regex": "." + }, + { + "hash": "af0dd53d473b837114b64e164f06e6da317fd63d47adc5ec405057b3c81b243d", + "regex": "." + }, + { + "hash": "88ff39ecec546840c05e01d313f8b535ec8cea5ed2a9c867e4445cb2157a3bd8", + "regex": "." + }, + { + "hash": "e794d7eaf4e2ecceb32bbae5dadcccb88c7d9761557491f70c105777df9f51fb", + "regex": "." + }, + { + "hash": "0fae06a4446b230229709b8f8162c9af5931dc6666eac480e590919cc745398f", + "regex": "." + }, + { + "hash": "7e4c6b4705e515b10c7cfe960565cf75728e1de2e2bdf1401e25274ba8609629", + "regex": "(?i)^https?\\:\\/\\/sonali\\-0705\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "376513d6d1b0fd2f61bfe11a87e43e33739a1edfcb83dafb030824253a45cd2e", + "regex": "." + }, + { + "hash": "2b31a75f4b68cd3d067252bc68401b4d8ee2887e5f256024a7d87b1b21fab042", + "regex": "." + }, + { + "hash": "979479bd748201f5a7743344b89b9df6210dc5792c754e8090f0691975541d65", + "regex": "." + }, + { + "hash": "1f487d799c006c706fc39420ab90de6768da0cbe9d4266efe2d9358cf0e11626", + "regex": "." + }, + { + "hash": "edabcbe0c5cdf5153e09765fd51c85e5b003ad3d4d6dfa6feb7f88b765e99aef", + "regex": "." + }, + { + "hash": "fa9a891afaeb115bd40be0f71c427447097dfb892d45928ee9d2dc5befe071ac", + "regex": "." + }, + { + "hash": "d5fba6fe3928d048787902cae19a4fc672944267132032dfa29a198800cf1110", + "regex": "." + }, + { + "hash": "93c1c026704fdc5054744a0c694670b01ec6d3c3ea880c9bf3849506b32f66e9", + "regex": "." + }, + { + "hash": "b1b5ec05b834c1488bfcc343d8c15b58136c9f856831e001c5260f556b29d778", + "regex": "(?i)^https?\\:\\/\\/coinmasteryou43\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f112d9be291b7132b429bdca6d8ca633463c30a40c0126063ba5e79e738f37b4", + "regex": "(?i)^https?\\:\\/\\/coinmasteryou43\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "63ea68b2ca8ba40829d6165a2458486f1b8b5b30ff0f5712805015360651963f", + "regex": "." + }, + { + "hash": "53953b8c516382d53112767a6c31823c376c579fe3f8ddb41ba236b9ac8e7357", + "regex": "(?i)^https?\\:\\/\\/pub\\-270874c6727e44ffa71030e32b3e116f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "331576888508bed4bb2631631408a0de3a45b7d60f20a356cbee744668578df4", + "regex": "." + }, + { + "hash": "41fcbd844e97cc393e022dfd797c3a55606ff45554e4bffd45e287770bc98fde", + "regex": "." + }, + { + "hash": "6775c9ca71c654258f8cfe8496d17c0c2de038cbc2504c684f375fb34da86a69", + "regex": "." + }, + { + "hash": "78c7354e72d5b6e9ab824e7b859d4af0210f68e7451325a2ff188a3bd52a2183", + "regex": "." + }, + { + "hash": "718a68bc83b0c507e3e5b3fe4f84b3129ef2adffff533d175358e7155e0e0da9", + "regex": "(?i)^https?\\:\\/\\/pub\\-34ea230c90da4a3b8a38bbadefcbf6c9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "449c181ca362aa65fd36b6a35bc3b28cb09df575286a345bb5047ecf2d1a47d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+metamask(?:\\?|$)" + }, + { + "hash": "449c181ca362aa65fd36b6a35bc3b28cb09df575286a345bb5047ecf2d1a47d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+metamask\\.html(?:\\?|$)" + }, + { + "hash": "683c60eebf0b38e1d38bb1c9cd88ca6998005684baf69ba2bad6c2e891d92f9e", + "regex": "(?i)^https?\\:\\/\\/youssef600700\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2789e7f35be0cef32d6b88a4a2e2e09e025cf37358c8f064f845b92fa2e78b89", + "regex": "." + }, + { + "hash": "5658d95e5ffda369629af9b0eac5771bba69b3dc76a42886047f907e2e607035", + "regex": "." + }, + { + "hash": "36a64804d3e2df7df7f60b9af818d7d74c81bb0aea5222560054599e2c825386", + "regex": "." + }, + { + "hash": "eefd4a9ec4026b7d2e78db820ae3c1e4377c987d03c00f3bd43240d39ff86cc8", + "regex": "." + }, + { + "hash": "eca3f7ef1fd0c8d5260910296e33099c672764308282fdf51553f10e503e49e8", + "regex": "." + }, + { + "hash": "2379de016e8ac8115766276f8729d1d4f69df634e789a0135581e5a0b39d58a4", + "regex": "." + }, + { + "hash": "cad7cf7614a58a3ff1da7e5eee472b6ac0a13dec2592f33a6074d96169c5490d", + "regex": "." + }, + { + "hash": "b0f7f2eaeb5cfaddaf6b2f4ad21bd75db672a14b1e735afe56bd313bf7adf89d", + "regex": "." + }, + { + "hash": "4cc700b1cb359b42797a77d021b0ee46a224fe927e1d498b183a4a27352bbdcf", + "regex": "." + }, + { + "hash": "f6d1a9c8a9ddc607474adb6b941555b2839175c9d36cc7c969f571739d5fca34", + "regex": "(?i)^https?\\:\\/\\/programaparasenhackearnoroblox2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2e80cc812f011bcceca9769666482afaf6ac121a7ead64fc787664ff79a0f41b", + "regex": "(?i)^https?\\:\\/\\/programaparasenhackearnoroblox2021\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d76d1ed1b53b6223cdb5f024e428ff59eba5e0fea6aa6850235c2baa505209c9", + "regex": "(?i)^https?\\:\\/\\/programaparasenhackearnoroblox2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "48bbe496af15dfcb9d4612cf8ffb07cdb6920668140c027d64239cbaa7ae6b89", + "regex": "(?i)^https?\\:\\/\\/programaparasenhackearnoroblox2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "74e35bb08e0374845c073ff58acb03631b956997cb6c4a1dc3da9ed94cdce1ad", + "regex": "." + }, + { + "hash": "11a6b372b061ef74f1257a45936a597474b893d5656eafa0f5c541f492c8e96e", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?386nfgor365\\.cc(?:\\:8989)?[\\/\\\\]+" + }, + { + "hash": "c0c9d066e20fbe3588d1aebb02b2a7e9ec262c3ab03803936ceb83bd3800c569", + "regex": "." + }, + { + "hash": "634f359eaf1736534918fc6bf6522724a4f4b4cbc9aba595a1babee60376a603", + "regex": "." + }, + { + "hash": "c29f1ec9e241e24a1fee1d8607747b64d14e3913e1bac26a90ef132488ab27f7", + "regex": "(?i)^https?\\:\\/\\/pub\\-c402b17fb26a4691b6aa05daf6bd0ce2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "43e42be26f4e429bc51518f65f01947257c4b06ab28b2829b36ec0d990739711", + "regex": "(?i)^https?\\:\\/\\/pub\\-959a21e88a5d44978f7bb38f041e8799\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "165be9abc3aa3924b37bf48dc516ef536bd66a850e7c13dab494d56f2c3babcb", + "regex": "." + }, + { + "hash": "4d440485feb2479bd201b13d852bec4ddaa1212873a3f5edbfed5a8cd74828ca", + "regex": "." + }, + { + "hash": "3b65707f4a563c4015a06c61598a62022948caf274aa35273038504fd08f1f85", + "regex": "." + }, + { + "hash": "6d16bfbe07a2bc06bc08830dd8863bc02ced27e4162ab00e16c3d458b7f180d5", + "regex": "." + }, + { + "hash": "14ea19810a0c74a7776ff425f60738c74fe0f5353c88f0c7169e029d1b495bec", + "regex": "(?i)^https?\\:\\/\\/pub\\-8031dfa1cdd54371bfbdcf5335c877b0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d003df8536a1d913b3cbd14ff026b4d9c07f51dce506f811e979fba7ab969b1f", + "regex": "." + }, + { + "hash": "c0041e65f0bbc8c6575099a3b86549c6d2ec9ceef3536504db50a5340bbfeef2", + "regex": "." + }, + { + "hash": "d8593d3d39368ebac9d716b724f626cfcd23a77af83daac70e86a7c7b75d9aee", + "regex": "(?i)^https?\\:\\/\\/sahilkalkal9\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2e93f7d490b6589f55b01d26581f450592263957c4465b01c0721e5434070e53", + "regex": "(?i)^https?\\:\\/\\/pub\\-adcbee189afa4d8a9fdac4492f399358\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a7f122a20ee671f0fefb1e517eebc46898d790d9578791c6ec49b970fbaca1cf", + "regex": "." + }, + { + "hash": "6c233403c1cb9c28da3e20782db0bab425524b1618ad310dd0048483ea6c84ff", + "regex": "(?i)^https?\\:\\/\\/awudiawg7dhuiawdguiawjkdgawuljawhd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "214ecbdb9e349c9db4191a588ce980e20d8e8be345031558b13aa4a45dfd80c7", + "regex": "(?i)^https?\\:\\/\\/awudiawg7dhuiawdguiawjkdgawuljawhd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "26e388e055e9ca8321d27680bbbe221be397cccb92e3311d61cd0fa152db70cf", + "regex": "(?i)^https?\\:\\/\\/awudiawg7dhuiawdguiawjkdgawuljawhd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fe6ec11568cb7e9cd88d4d0768dfeaf9d5301fe1c76ac689ac450b2298722c15", + "regex": "(?i)^https?\\:\\/\\/awudiawg7dhuiawdguiawjkdgawuljawhd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e04e6e163592e19c8fcb192703a41e7611358e8b6a3fdb9d6bbd815678b98d2c", + "regex": "(?i)^https?\\:\\/\\/awudiawg7dhuiawdguiawjkdgawuljawhd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6cbe0fd08951c621348374cea1554a9c03efa38563cd2dd4f8333db3dd8e8a54", + "regex": "(?i)^https?\\:\\/\\/awudiawg7dhuiawdguiawjkdgawuljawhd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "37449f97ac50341e7f66d4ec7b6c11a04a28c756012b7b77c12d61b37579290a", + "regex": "(?i)^https?\\:\\/\\/tony\\.anka\\.cloudns\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7dc0d09936029eea5fffff0fa9fbd665e5c85aa5a727618d0993f395d63055b7", + "regex": "(?i)^https?\\:\\/\\/bussybae1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "364dbdae5a729c04508a5d49c647d119ee53694008a4156ff57e4063e82b913c", + "regex": "(?i)^https?\\:\\/\\/pub\\-9b207762a6254181baf037ff77e27bdb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6edb8142c89d63c503a68daf1e08bf458fa1269ce138ea7fb92cde78344011cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-7f94db7f79664d8b8de24892f0ce6519\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "da22c5043203944a188e605c67c5f1e40edf8f4b755efa7c457f0565dc817e79", + "regex": "(?i)^https?\\:\\/\\/gustavo1701\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "804cb87f71f4f8e11f6fe8c47e2bc7fcbda26c3b64c7492c6d406239a1de3072", + "regex": "(?i)^https?\\:\\/\\/step77777\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6ae45390d6f3b0aaed29941d8d3c63ac2689cdb321d38919e764470592f9443e", + "regex": "(?i)^https?\\:\\/\\/pub\\-aa112f2ef6dd4d11a4cd9f0d222a80f2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "095ee277fb1561f95b469df4fcac3d0e306623a3e2cb3b40e9f7b61e324e2446", + "regex": "." + }, + { + "hash": "e625bf289522657c661be95085e47f86a69155b37aa6be59e2814e9857730892", + "regex": "." + }, + { + "hash": "9a2dd62fa204ec567e134e84591e8b806a81235b556923500fca29453e203734", + "regex": "." + }, + { + "hash": "4dbca4b3f7a155d89ca17422729183cb56feabfba70528f83f7a9f3c217dd747", + "regex": "." + }, + { + "hash": "b509f2fe275b6ca897fdc3c33182f78e27cdcb5c320353597087926a95c3b28e", + "regex": "." + }, + { + "hash": "d36df3b1527a1c250eaf105d34a4dfe7eeb3e33d410e74ce68de2e773a7b3ab7", + "regex": "." + }, + { + "hash": "bcd133c4bda8ca39de3e4f50ebd08053e1fbbaf0b5649bcd876a701c45a4c2ae", + "regex": "." + }, + { + "hash": "22d4ef3f7abfdefcbaf8802ab8488c2aa39e6f2865d19e6454a157d20c0e3978", + "regex": "." + }, + { + "hash": "d0e0c6984144945c7b8da55baa03887fa39ac804682e712ed7db6201b80abc90", + "regex": "." + }, + { + "hash": "f064e92e3c4d5e113adb0943a1e9b1eb31c497ef78e6c3050795bcb97502dc8f", + "regex": "(?i)^https?\\:\\/\\/bafkreigweczhgklbpcsshlaifuqrsenp7zx5yry62haqou5sfpwzmrg44u\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "ee5510b4bf33bf48e449a3dfa64bdb78f81be663cfeac0420d9e65b22e4d7bd0", + "regex": "." + }, + { + "hash": "1312ca50278fed2ddd5183c1ecb273b95641abf646efa24cfc74b9d450782d45", + "regex": "." + }, + { + "hash": "27c67cfae52bd876d115f4fa8f4e4c1337605444df4b46b7aad6eba7e5560954", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxatmagrupsuz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8778ec99e8c4f0dbc6e030fe39eba3c4d592ffa955f12efee1b85f3f6b46108", + "regex": "(?i)^https?\\:\\/\\/pub\\-d31f586444af4a3d932402bdd2701daa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cc25c1500e6432df2438ae59d62407deda2fefab5cf157108c2a5fba58323fe8", + "regex": "(?i)^https?\\:\\/\\/pub\\-8de47e01eb0c45f798310da15a29baa7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0ed7a8915c9134c0b53cf54c9ebea529ea54e9bdbfb9c4a04317c41bd3169e48", + "regex": "(?i)^https?\\:\\/\\/riyagupta89\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "09dc40b88ddfdf0b316a038474c8e846bb27ac40203a601d373dffb0f3661ba4", + "regex": "(?i)^https?\\:\\/\\/avasweqwva\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1dac1f2e67f4751842ca1b83ddf16244cf4469e2ba62a0cd60792f8ced3c407c", + "regex": "(?i)^https?\\:\\/\\/avasweqwva\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "525767e88c95a6251f2ae255031faf592124abebefe19cec5ae5d7331e3ba6fd", + "regex": "(?i)^https?\\:\\/\\/avasweqwva\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fc87b7a6b993132d1aeda879538e9aaf6e250e37c6881b8373bfcc4e9afb1dd5", + "regex": "(?i)^https?\\:\\/\\/avasweqwva\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "089422a6870f94b48a151f4bbe66821f2faaf7e54dd552a4f7fcf25bfaa6e287", + "regex": "(?i)^https?\\:\\/\\/avasweqwva\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8987dc85226c49d2411a0ec788aa9cd25412444b98e0437a0ebe0b01731c2c3b", + "regex": "(?i)^https?\\:\\/\\/pub\\-518e757693654da2a1014bb2c58e26fc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9d50a5ec34c15284f43f6e0736bcde40ef61e17e700b376a03055f89df467125", + "regex": "." + }, + { + "hash": "c116332ca0662e29040dbee3e18a4b8bf7fbe2a647e18cf3999df3695f4060de", + "regex": "." + }, + { + "hash": "49f6a635d3c548bfaa41ba745e4143fb3cbba89d39952c70399ee9f152b9f84f", + "regex": "." + }, + { + "hash": "3c8bb865bf1bb0bbf9ee77d3b5d72b2eb4ab2a79117626d8a4f03812376b1375", + "regex": "(?i)^https?\\:\\/\\/pub\\-a538e0b07c014049b4d8a56f32f81f27\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1f0800901317f55a41c0a06cf34b4f11ec71b4a06ab7dada2bae540eda066c5d", + "regex": "(?i)^https?\\:\\/\\/muhammedshahir001\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "af0db087890c1c6a2a76c938822ae527ef1b8bd17343b8099045c334c929f8b6", + "regex": "(?i)^https?\\:\\/\\/comoconseguir15robuxnorobloxseminstal\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c6c3ed2c07ffd7279e5a41a1859b7c4b80737160afc5c1e248661f6c7c2f6d57", + "regex": "." + }, + { + "hash": "ef1dd6227e37ad78c2b4cf99ec01f4c9ea1a06d32ee4c906a8314a85cc6c5a90", + "regex": "(?i)^https?\\:\\/\\/pub\\-11845e38366b4c18892bc2ab011d2ddf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3727cbb519652be6ee7409ce8b617d4b2a9ee87df22d6705b88892d385e0787b", + "regex": "." + }, + { + "hash": "9e86bca10e3c9a8be5f02302cba088092d7e029ef332a75ef1321538bc7abaf3", + "regex": "(?i)^https?\\:\\/\\/comosehacehackerenroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f682326a590548e21a1a8ccd391cccf6d7f9c761b2d6d7994fc4b1622dd62882", + "regex": "(?i)^https?\\:\\/\\/robloxyourlocalmechanichack\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e573098f3fb75960db5f58dc490cef98011b89705c851edb4398c2178fe00c4", + "regex": "(?i)^https?\\:\\/\\/worldzeroalphahackscriptroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "60491da3ab20caa4a57e7567583241f97c0e202a94229cead37d3c9a476bc055", + "regex": "(?i)^https?\\:\\/\\/robloxtarobuxlueylerinaslbelealrz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be9af324cc222264618075ef3107fdd5b8cda2b4d09342cf47012ee9f77b2251", + "regex": "(?i)^https?\\:\\/\\/howtodownloadrobloxoncomputerhacktool\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8ee51f8c5c548f27b1fe67ba3d8a4d5ea03bff9b2529c270bf0220259024336", + "regex": "." + }, + { + "hash": "02f958afcf06b5a25c19517c3c35d233df838e991e66dc2f52fc90277bce8be9", + "regex": "(?i)^https?\\:\\/\\/pub\\-e2928e0513bf4a53bd489ca9681eb995\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "136c271ff56a817640658427826d9f5f1012cdaab84bd8a46ffb25297c52e317", + "regex": "." + }, + { + "hash": "e6a23285d12bbdb5a0b52c43662ede2e3424ee73c26230a9edb23fbc0a9fe688", + "regex": "." + }, + { + "hash": "031f6f912d5d2827fd68cfdecef256eea4011d5e2d14de9f8107424fe9558d79", + "regex": "." + }, + { + "hash": "05e5dcfe0e6fdaa402900c2927d212cf6e7df90959977e8562aa411f4d45ca99", + "regex": "(?i)^https?\\:\\/\\/pygarg26\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "32b15338f73a4320ab97a60f177167312e04ee602972adfcd3343307e905d66c", + "regex": "." + }, + { + "hash": "4a2b291c856e71acbff03a5273dd0841c3d2b915106e3dfe9982c22dbe7202c1", + "regex": "." + }, + { + "hash": "168db1011bda104c1356bb8f1a82aa2a107dead7df7bf35cda852facdfd528ac", + "regex": "." + }, + { + "hash": "fa53af4640e2293a85d89f1f27b93d74ff010c1d8a6571d87f9388b6aba05414", + "regex": "." + }, + { + "hash": "0799ebed74973ea3e98fd8ae7ca66f705dd4ec241a6d0db59d0b9acd918d9f03", + "regex": "." + }, + { + "hash": "f0e4006377bd5e51712bd8579094ad1f66346446e8b23c0e29f6cdade6c15954", + "regex": "." + }, + { + "hash": "7e26b843abd417a40ef22f2e79fb065b3be146adea956787212c1b13aa241a24", + "regex": "." + }, + { + "hash": "83592cfa2ead0704a1a5bf162087033ab3deaa3bef22c296237a368a3c52fb44", + "regex": "." + }, + { + "hash": "99961b1538faa5f94be6067c3b6c9363e94d24d1771784eb2b8bc92e16e519be", + "regex": "." + }, + { + "hash": "f2e0db6db097096ec572fe6578cf6046c0203ffce5fb15c41067bd30cf390154", + "regex": "." + }, + { + "hash": "e0c654b7ec6e48608100d9f6e79481e61352919b06a1715a6a1f640b6a664d5b", + "regex": "." + }, + { + "hash": "77e30aee0e5bb1a4b9343c336e55d86a1ecfe79794b89d47c4ea81aa1d3ab90f", + "regex": "." + }, + { + "hash": "531a404c5998bbe7f1dad37a5b9f7d23c792cd34605d8fb8095d19eed4450f7c", + "regex": "." + }, + { + "hash": "dfe568b5b6e2bf6d035654491177b6e6f2d38ae49c247604c7cb516415041072", + "regex": "." + }, + { + "hash": "446dacaf0adbee47b45a0e776f6bb7ee0b5231d3d03e3e450a053dd39bc2a77e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?news\\=qhie9yrpmr$" + }, + { + "hash": "446dacaf0adbee47b45a0e776f6bb7ee0b5231d3d03e3e450a053dd39bc2a77e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?news\\=mr7t7pr3e9$" + }, + { + "hash": "8c74f5a55d91d900af202aac09cb64584a08331aec24381141fdafe5cb7b164a", + "regex": "." + }, + { + "hash": "f9b05a8134e32fe735c8019e28600dcb27fdaea8f9db9b50701f88202b0b3b41", + "regex": "." + }, + { + "hash": "a226049ec6685992f7dd708c551aece7c4378e26124ca2b1794eea6a18a2ce24", + "regex": "." + }, + { + "hash": "37e4df9d4db9e5a062268f2dca38b6aaba09a22c2a43b4246944a74e3e5b5ea4", + "regex": "." + }, + { + "hash": "29143e7795883500d7d119eef322dedad309ecaf3d770a61ffd8d77cd2dc4f23", + "regex": "(?i)^https?\\:\\/\\/xacutaravideo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7116408f86938c3f1bcbb4249534774d82e31ccd55d16a6907b7e304897a37ad", + "regex": "(?i)^https?\\:\\/\\/xacutaravideo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4b58dbd9d3c3f88150e94b443eada2fa56602a75e958977316ed20762f85a431", + "regex": "." + }, + { + "hash": "a281ef5731ebdd86f50e7adc97acff95b510a0730089a36d88bf114dcda04f17", + "regex": "(?i)^https?\\:\\/\\/pub\\-c45a2ed3340746ef8cbc3e555e1bd950\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5a7cbc502b6906c21606005f9a719240f365b362d16057e5654281bcc20c32b2", + "regex": "." + }, + { + "hash": "4b2211f63ed34940c34f79f2c59c7f57f972a6be54edfe402fa3cb8b07151ce0", + "regex": "." + }, + { + "hash": "8d9f7619a5383edd51c8eaa734c683579c202f8c9ffbf3558c988dae188a0006", + "regex": "." + }, + { + "hash": "36dcc06ca719dfeba1065cc70a74cd227e4a8864e31bc57fb75ee1aa73131d66", + "regex": "." + }, + { + "hash": "26c7f7178276b2b9ed67851a635cd61aec3053b28d0c3780eb85fd1cebe79a17", + "regex": "." + }, + { + "hash": "4d936a273f8ff7843a726b26c4c14d84cae3af0a1fae74bb118ce9f561a1b0d9", + "regex": "." + }, + { + "hash": "f3e90c558d92bc5c2f1756dc1fb45fa0b9583e5e28636ba9cd276080a37092aa", + "regex": "." + }, + { + "hash": "6157e25cfad663911840f6778cc00350a4bafe77553f403399830cf0ae1b327e", + "regex": "." + }, + { + "hash": "08004cc0e28318471364e78d5f7b850b73415a01422eb83705d04b440dff478f", + "regex": "." + }, + { + "hash": "21ced45f4bfc75bb90c951bc7f0c8bb3174b14ff62691f4594111a6f9ef4ea9c", + "regex": "." + }, + { + "hash": "386a54c685cdaa69d20f6de649b3bb051e060982f712f3a69bce475b799aad9d", + "regex": "." + }, + { + "hash": "8f222f029d7d63ff8ce23c257ae2100f16d0b23881e00717b534b0e8921874aa", + "regex": "." + }, + { + "hash": "98e17b57de65e507fbf2aaad913b03cbf523577913b9179ef1fb87eafba87198", + "regex": "." + }, + { + "hash": "02c04ade85edd8eb0e7fc32ba8d556a48e5cfc41d0b375c0808123ad0a7f56a0", + "regex": "(?i)^https?\\:\\/\\/messagerieorange35\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0923bd3a0966b4691afee68378a736197f6c34762b36c20c896db2ba1f1d2f01", + "regex": "." + }, + { + "hash": "7eade9163edaba7d4d4e4af08f55129b1020f4ac82bf26eb5ba975593cb1ede1", + "regex": "." + }, + { + "hash": "a8fa905bedb02772b225cd33f52cb42bfc5ad96605aa937c0056059ca469dadf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+v2[\\/\\\\]+go\\?ai\\=5ebb4f5066e345249b240ef1bf42f145\\&eu\\=[\\/\\\\]+tupr\\:fpobici3l9ta\\.7ae[\\/\\\\]+4vas9reaavedf21\\.760f7rf\\.6e3[\\/\\\\]+fbfa0iceaadbehfmf\\?8r\\-gul[\\/\\\\]+gsotph\\&t\\=sttph\\:o[\\/\\\\]+\\.grptoteapuxtlbcwmtpepap\\&p8z5n8ie\\=8794fc8ibk4d0va37460912335i1_7\\&5b112c2c1b03d0297824a407a089x1p3d7\\=000201070b\\=eiccbl6\\&64477dae0o6\\?6ho\\.dls[\\/\\\\]+\\=oe\\.seairnnvsro\\.elc[\\/\\\\]+ptppp\\:m[\\/\\\\]+sttph\\:o[\\/\\\\]+sttph\\:o[\\/\\\\]+sttph\\:o[\\/\\\\]+sttph\\:o[\\/\\\\]+sttph\\:o[\\/\\\\]+sttph\\:o[\\/\\\\]+sttph\\:o[\\/\\\\]+sttph\\:o[\\/\\\\]+\\.grptoteapuxtlbcwmtpepap[\\/\\\\]+$" + }, + { + "hash": "11206b51d9b3bc3a67d0860dbc4a767c2f2baaa334f470c8d390e2b1ce3ed480", + "regex": "." + }, + { + "hash": "e941f3ca8c2aa5c882dc4929a23188fd0ab57c9418d7d24859c5b260f58bdccf", + "regex": "(?i)^https?\\:\\/\\/pub\\-3f6634c917734d5fb3cac03a795afdec\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "53d7d93db2e3a81984cad427847fb13afe70cfaa36bb61b3dc8dee53be64fe01", + "regex": "." + }, + { + "hash": "36349040dc3fa690df54e385f7b23cc3bb92c490fab2e22b9a23fdb9469a8417", + "regex": "." + }, + { + "hash": "87e14eeac525de0d2dfbbc872cf12da14e5e2cb3dd5c57ca4c6a55f289663c3a", + "regex": "." + }, + { + "hash": "5082a4bc2ba3b13b3f021befa95456ba96e889789a7fe7721dfee8902f71698d", + "regex": "." + }, + { + "hash": "5424d35d6f5b20b68d903278211b5fdd08ff252c26883e0568bec5c74bda8e93", + "regex": "." + }, + { + "hash": "cf106f7365136e95afcdb9460fb24212030561800027ff299bd2f586a570e842", + "regex": "(?i)^https?\\:\\/\\/vbedgd34\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ad44b92c3102d114d904e6651fa2d6f56bd3eb472f0d4b2c32411e61d99857c7", + "regex": "(?i)^https?\\:\\/\\/vbedgd34\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "34754cf8920c3c10f20c4cf892e77ee78e456b4a1fbdc6cc4bdf821b98ac119d", + "regex": "(?i)^https?\\:\\/\\/vbedgd34\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0f01444a6d01fe04f5dc8639f97e9fba6a8c3a20b0452e42cd96d6bc81e9f28d", + "regex": "(?i)^https?\\:\\/\\/vbcbcvbcv4v\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9f313d4e1ffb6986a0ac60076e1bb5eee2f43c1569a4c5bb738a9bc0f59d3868", + "regex": "." + }, + { + "hash": "c5c64b672ed35c8bd93af9747155bf23d0448f7677125243ec0ce550c38985fb", + "regex": "(?i)^https?\\:\\/\\/rretwe\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2637b4982e6c4e22b93c4aaed34a1858780c710c6cb00a5cbd6b49510eb2a989", + "regex": "(?i)^https?\\:\\/\\/rretwe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0d1c39b72b76fed00436293ef85cf4363ef6a0379e3e95d499e9d9eb39cef937", + "regex": "." + }, + { + "hash": "406b3ee3487a67c3084e3d1afb8038b1142ade5f15c14152e6d15d40228dba5e", + "regex": "." + }, + { + "hash": "c516b20e38954aaa27ad1bf49b1fd16b5f85202c54cfb57b1346e4609efae9d5", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a730816a8091738326aaf704396730c6d065525897bfe46e46156bc5877a58d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+DMy0Q(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb4a5108f5928e421de2c60267deab14e3ecb54271163a53d77507f561176a69", + "regex": "." + }, + { + "hash": "81133436f6e770a814a0afd9a2f78bf3d9fae9f54331bc0fb299e7f0061dd0fc", + "regex": "(?i)^https?\\:\\/\\/adeboye22\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7a92201f9980ef79c96abdab16ea0f0648bd850965578fc9b21f2b8e848b6acb", + "regex": "(?i)^https?\\:\\/\\/img3\\.invowishes\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d48a2cf817e4a5d028d0a0ff370c46c0139aa838014be78246f6f1c036092768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+householdappliances(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b1b542b04ac3477f67b926a7204947a8724958b142030d6e6e115f1c99132545", + "regex": "." + }, + { + "hash": "58da9923bd0731618608e85639e1f5f2ed4c006e17b7ecf8c65d9938a5c4f1ea", + "regex": "(?i)^https?\\:\\/\\/sayeedsafvanpm47\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e56f29ee3621a7aafbdcd96ce961bed59c58114a8cc91ff60d7969a0d9ce3f07", + "regex": "." + }, + { + "hash": "e26af65e2d3a87d7a01ebf0905eaf61371a9ccc1aac12c47090246369173f042", + "regex": "." + }, + { + "hash": "a1e3eee4f4e857b1d880ec973f700f0a0a993135ad0a81e36a9cc0e0cdc345ca", + "regex": "(?i)^https?\\:\\/\\/christianrafols17\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "642ca8c087cbce77d968efa160b81f24c9d77b2aa36dbaf3f8d086be8e0d30e3", + "regex": "." + }, + { + "hash": "6b21da7a39596eb2808239aa9c432b86501a09866ca346c57ad3c1b63f64b480", + "regex": "." + }, + { + "hash": "aa097e904a7061c57ba08d41c6ff29588e344fb9e6593d5ddbd70ed1ff8b79dd", + "regex": "." + }, + { + "hash": "f390d386bf147fd1c93afd76370a6b835a7c16ef730cf4d1ca76c7e71a5eaba4", + "regex": "." + }, + { + "hash": "6f62db70827bf30431a01ca3b8abbc6b2e8bfe9f32052157a9399bb37ab840fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8f52c40868184da8b122095c60ff6cb063869a2a57d547883f55faa4e51e4065", + "regex": "(?i)^https?\\:\\/\\/pub\\-db8b320de00844b28901f9c5eb723ab0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "be5cd3e617a6e9a41a8747ed34f5bb7e1d0eaecdda4e6e5e1f86cd3d968f6e1f", + "regex": "." + }, + { + "hash": "745573f64c4e7a9e022a0c361a1fd9125691a0a4297775fc93d18776c7aad320", + "regex": "." + }, + { + "hash": "3a280056e360f1faf09a118c490608c32c5925a858013e9e3db0438ad2b21241", + "regex": "." + }, + { + "hash": "3f64df028faede22a1a732caec6890b1ef1032f9d56d4f53d6d2e4ae79ce1dea", + "regex": "." + }, + { + "hash": "c85958ed1aa44336925c837ee2742c14b92c56770933ea4901fe4d69f89960af", + "regex": "(?i)^https?\\:\\/\\/pub\\-eaf0f92a04cb4602827e01c6e6b73833\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a77519194dff6c744b60aed172701af53fdf3b9312e22e4969e6df18f1c44799", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "4e6daec4021c2b43de90e23fd2a2037018a3716de2a4c0dc8c2a979471e624f1", + "regex": "." + }, + { + "hash": "de9afe5b05cdbf6abe5ae88b71af6820270348809f2edb8a0e10c4ed529ea9f8", + "regex": "(?i)^https?\\:\\/\\/robloxtpscripthack\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd295be54ad6552afc9409fa4578e69405974e16e8096c189bc15743461d89b0", + "regex": "." + }, + { + "hash": "1547c7ece74f3b3d557910f4e5dfc3ff4e4245c2315e58af64f426804fa3cecc", + "regex": "(?i)^https?\\:\\/\\/robloxsethack\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4db3e92cac1b90baad4d7b150ca4256853ddc9d84ca89533e26a8d602eb0199", + "regex": "." + }, + { + "hash": "ae993de5570d778211847a1e610554e7ee0136333654756c05cabedb49a507d2", + "regex": "(?i)^https?\\:\\/\\/schoolnursefiles\\-episode1\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ce0b75d6dc48b1bcac8365fb64fbbb4a94536de8dda358c2c471f2c5daff396", + "regex": "." + }, + { + "hash": "3cae7c2770c0fac4db2db9c81b312da6ae1268ce69427c337d2f7c1c46800938", + "regex": "(?i)^https?\\:\\/\\/streetsimulatorroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "019d63d9eb373efaeb09750ae36bcd41a550c78ae9b9dd52da45d3007655633f", + "regex": "(?i)^https?\\:\\/\\/robloxcode2021robux\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e119e689e81d91fd2205d66aecb556d2b6861762beceaeb1f4ec5ac995ea97c", + "regex": "." + }, + { + "hash": "fd1914a013b73f2215ba91ab4683a7ba54b9a64aae9865286f8b79aaa1040782", + "regex": "." + }, + { + "hash": "6faaead4cb8764dbaa1c9f8cb802fe3b8c7e4341d77c6468a9826171faf5a7d3", + "regex": "(?i)^https?\\:\\/\\/pub\\-1e4f523fe3cb46e987453e942dc4ddc7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bcb7f78c14863db60168c8ffe4298272e54e0f66cfd29dd40c07ec2294608747", + "regex": "." + }, + { + "hash": "f590762caf36998accd165d424b1b2c0a21af963c6c6d2d1f30957d27b6021e1", + "regex": "." + }, + { + "hash": "2d422aea9575b3bf8e60aeb7a4469cd24acfd18c0f9c64a1340f7d21bb1f056c", + "regex": "." + }, + { + "hash": "a8a2fc38c44c904ecd63f154b7f9f80154c63b347650a3af4b5c358fa5fdd559", + "regex": "." + }, + { + "hash": "8aed9b8c4d2589ab76da200622a647f1e4173080398eb16efba5056b220f388f", + "regex": "(?i)^https?\\:\\/\\/him9155\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7e4c746df6c8dad4e3b162e5f8a8eb0570caff033b62221a60041c7338a12ade", + "regex": "." + }, + { + "hash": "436e431cf7a98880b4ab27c2defe5e867bf0ab765e59b3bfb6415a4e3c0bab99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+05\\-4867\\-05697\\-079\\.html(?:\\?|$)" + }, + { + "hash": "97d573c6043e1ce20914c7c4add74d496dc694cd4df115a9194787406f9d59fb", + "regex": "(?i)^https?\\:\\/\\/pub\\-4a727e72202b4d0f911e138ab1a2073c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "411b3e110750fc7f26ef8528399f23ac842ae0672d8085dc419ff9d43bcee558", + "regex": "(?i)^https?\\:\\/\\/genius1coder\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d9d4d253321c508ef0da812370588f1cf3b95e87181f580142620c8e6901cf5c", + "regex": "." + }, + { + "hash": "34d0566c7f78b3923a5402500117b66a7edf182a98d784f722b1b64abd7ac7d8", + "regex": "(?i)^https?\\:\\/\\/56561545188\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2abb50cade48bfa96480b5809c8984ae10c2dd9866929a26fff83700a9de995c", + "regex": "(?i)^https?\\:\\/\\/khushi\\-agarwal\\-1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f9217d28fb150b35665e9f19342998806d76bb1b03fc3e47ad6b16b7b9879446", + "regex": "." + }, + { + "hash": "300b143b6389bca54e5b23936b78c2f335405c7f05f991d4a5b339f6a4afdaf4", + "regex": "." + }, + { + "hash": "bf85bf165e9751dbc723cc9e4f08addddbeaf121ac415788be2d58d36467b516", + "regex": "." + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbcl$" + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbclid\\=IwZXhObgNhZWOCMTAAAROpH5WKaXORjbGLRTU9aeveXmPosXwac_k8UtIGEPPuFnWwcBcXBs4Yiy0_aem_AWYJMqf_oSr\\.\\.\\.$" + }, + { + "hash": "71465bc32b58fecbef47186709a58677cf77331ed298f4268cb0f30757a10e89", + "regex": "(?i)^https?\\:\\/\\/pub\\-00eb8b2cb7d14fcfa7bb1f5deda10b1b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a486218a1510c70b93f591488e8afccd0ae9e5632c9f958866d9a4b54963abfb", + "regex": "(?i)^https?\\:\\/\\/orange69\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "64174c3d7388e48efd6b865c676e6018ca62056f5c374fe58049401d8a3ef51f", + "regex": "(?i)^https?\\:\\/\\/pub\\-7f5f6f29ccf64c6189d7ebb9ce6e5ed4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "96ae81cdfdebce3f39b02e1454f6d9269d6b95c4df9efdab0e665d28f39d2dbb", + "regex": "." + }, + { + "hash": "845d2e70bfed5fee744fba48160ba71ec4804db369b017eeafb8704b779d25e1", + "regex": "(?i)^https?\\:\\/\\/fghfterggh34ewsdfg\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8cd5b564f939c794990fd19b50768bfc67a808386cd90a17cd5d31378b660942", + "regex": "." + }, + { + "hash": "ff6658ccefe2d26555c57d71e35fd05dbdb0683643523d0cb9256a981123aeeb", + "regex": "(?i)^https?\\:\\/\\/pub\\-68908029aadf4541a2a7fad77f2c4ad8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e6cb6d389f7a9efc56670e4bfcc95081faccade8da5de3f3cbb22d39a055d5ce", + "regex": "." + }, + { + "hash": "1945bf6a313872db5a3db857100fe48948af8a0f12f4b99697fc3699c6901133", + "regex": "." + }, + { + "hash": "a2429d61ac84fdf755b32b5a9b9baac74ec96208c9afc8688ee02e81e56edd35", + "regex": "." + }, + { + "hash": "05b4eecd4f2f62ca7d8e22401757b64c0c1aed0ce111819d726efee11cd4ce0c", + "regex": "." + }, + { + "hash": "a4bfa129d34fed3dc298a5d9087b88e051ff9249e6145e9d0632acaf02893a5f", + "regex": "(?i)^https?\\:\\/\\/telstra\\-101643\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "44c77e7e16ecaaf669c087b5c9bee41a0e8885f7c82d1d2654d7c75c3e9f083b", + "regex": "(?i)^https?\\:\\/\\/telstra\\-107555\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c0c25f6bc33c09d24f4f8a2e5e6847588a860df6cab2b8aeb9a2dd60af72c3ce", + "regex": "(?i)^https?\\:\\/\\/ankit\\-0705\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ee3efc8e8b27f417b279b1e17228bec5164f6f632f916966acf4ec993244c3e3", + "regex": "(?i)^https?\\:\\/\\/uthmoney7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ee042e897e6134208d731658001d1d865b95ff8eb48c5d6a143acd7ca309c0e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2billion\\-grant\\-empowerment\\-online\\%20(?:\\(|\\%28)1(?:\\)|\\%29)\\%20(?:\\(|\\%28)1(?:\\)|\\%29)\\.zip" + }, + { + "hash": "ee042e897e6134208d731658001d1d865b95ff8eb48c5d6a143acd7ca309c0e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+waec\\-recruitment\\%20\\.zip(?:\\?|$)" + }, + { + "hash": "ee042e897e6134208d731658001d1d865b95ff8eb48c5d6a143acd7ca309c0e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+50k\\%20grant\\.zip(?:\\?|$)" + }, + { + "hash": "44eed1b5314c694d28f5f2e09be806bfa9092bb7a3b17ff8d9f3b521a71915bb", + "regex": "(?i)^https?\\:\\/\\/pub\\-0d3696f9b80a4b7995c8d3ce048e6770\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a8318b2f6477e06ddf1e54acd8fcf4bf3d44d7a407bd85e55ba2ea0d9f7fc0a9", + "regex": "(?i)^https?\\:\\/\\/pub\\-2ca5376cbb7f417e87513b47b1d5cded\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4088e443e36173747a39527bf7c76e7dfc20f6854a6883372f91a3a45e3c97ef", + "regex": "." + }, + { + "hash": "c5d40f1e77ead5b78a92cc6c92e5f9f0611db2806220dd9bd717237ed858c0fd", + "regex": "(?i)^https?\\:\\/\\/pub\\-ef47dfdc85ad463a911b6bde06661e80\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7de92b52143cd993b82d94855c3e16e553d33754368e432ba1484ebb76e26754", + "regex": "." + }, + { + "hash": "a4438adf083baadcbfe41fe4f36e2b50e48339761f663f43c2100b86f6653742", + "regex": "(?i)^https?\\:\\/\\/thiago1469\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3be5829a12f2f798a85f1a2a14ecb95ef4eac7bd572ae69d998ea8dff2772032", + "regex": "." + }, + { + "hash": "5adc70abf4e80ca74ce6134981b77849d214e42bbd9581963c95c13059f182a2", + "regex": "." + }, + { + "hash": "ae2df0a7a07de1a0c2a8fc5c545ef04749d658b21a48e4aaea126c5a010f413d", + "regex": "." + }, + { + "hash": "acb7f1df8826cca12a77c7a3fc2fbb95439d6435526caa63e8cd6bf6108dacfe", + "regex": "." + }, + { + "hash": "20167f5193b4c6813cf5069a04f6d9637d062510fb215988525476b5a4dd5557", + "regex": "." + }, + { + "hash": "350ea0577885205ffaedb43849cf3f524773a5fcba0042cd6eb564232473a3d6", + "regex": "." + }, + { + "hash": "7f68f8cd4eae7f9db6d80814e9ccea2a81f5a17f0ff9790308ad60842d495b84", + "regex": "." + }, + { + "hash": "fbc89838b1fb58d556a137bbe988df3817f652f45a3f166d3a6c707c5df3ea0a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tmb[\\/\\\\]+it[\\/\\\\]+it[\\/\\\\]+1[\\/\\\\]+doc[\\/\\\\]+start_index\\.php(?:\\?|$)" + }, + { + "hash": "241be223443446dfa5e3cb086e5481f140b6ba4924fad279176cacad9f8492a0", + "regex": "." + }, + { + "hash": "51231fc390d24a0cf90db18398558af355917b97653bf99c4203aa183da69bef", + "regex": "." + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbcl[\\/\\\\]+$" + }, + { + "hash": "7feeb2e1803764c5dcfb104d722e1e50ebe9c6595efa83bbfbfcc5ff39c00af9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+docs[\\/\\\\]+wallet[\\/\\\\]+metamask_setup" + }, + { + "hash": "00276e0b32ce5724d742132dd0ce515a9792a5af791e6e60a6d8c681e15bcb50", + "regex": "." + }, + { + "hash": "95f0f1d6355ce4fcb0141767ae9fed8bd001960bbf072d68856a1e3e90584191", + "regex": "(?i)^https?\\:\\/\\/frankao506\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f7982433afee765778da5ca3dd6d379a72c20b08fe89fe913a373e00f85c9735", + "regex": "." + }, + { + "hash": "a7a6962147061180471c8d4c6668514da61d16efab7d1c7f2e3214c02b67d610", + "regex": "(?i)^https?\\:\\/\\/pub\\-0a7c928e5ecd41a9836427c3e97e4361\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b6a9ab1462e5ac67d8fd64cac900d527f06fda61ee42a19dc11645e7bb2f2f69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "ead7af50817ea32b35510dbdeb037efb42fb0ffe8c00c0b8803d8c6c017f9b9a", + "regex": "." + }, + { + "hash": "2328a92d5c1c8652f3c24cb14d2695bbe4f29d2453c2705517ff0e62bd94c3a1", + "regex": "." + }, + { + "hash": "bfdfd5108e91016e524762ccfec8d6c1ad4a801fd507db0ab19c81b5509be9da", + "regex": "." + }, + { + "hash": "154146a9a3b486ba12001332e2324b56bcd79863b7838fef3542ce2e0286ed2e", + "regex": "." + }, + { + "hash": "1a7ad6e9ca19e88fe45eea91156db511be99dd1be3b98e9daf4e075f7214b9fe", + "regex": "." + }, + { + "hash": "f5bbce5452982d959b35f0ccf3b288ad2f220ab06e023ee1c61ab6932d8c1cb5", + "regex": "." + }, + { + "hash": "eb9d891484603980771fc0ca32b3f060a23079eb0d56d651ef5276626ebf434c", + "regex": "." + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbclid\\=iwzxhobgnhzwocmtaaaroph5wkaxorjbglrtu9aevexmposxwac_k8utigeppufnwwcbcxbs4yiy0_aem_awyjmqf_osr\\.\\.\\.[\\/\\\\]+$" + }, + { + "hash": "10b41ecd0b4c53a98c8b59eebeafe99fef030245982fedf55637681ba2d967b7", + "regex": "(?i)^https?\\:\\/\\/panctisdae25\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbclid\\=IwZXhObg$" + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbclid\\=IwZXhObgN$" + }, + { + "hash": "cfa61acab8e7150004518e27d8c70bdff4a584d0d1f14da4ed13a61087420988", + "regex": "(?i)^https?\\:\\/\\/pub\\-c28ea2c3e4634b8fb295d86a13233c74\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "90cbcb10608586a53f9ac74e4b0f58cbf596c9715d126967d431e94e9830476a", + "regex": "." + }, + { + "hash": "4cb09aa1f6a13958f6d805525579a655f6352195fef0fb16b813a57ea5efc3fd", + "regex": "." + }, + { + "hash": "17649b19fcefc312bbae3cb3ac7d4ecf4be84975a4fae8bde1efca4a09a1e450", + "regex": "." + }, + { + "hash": "a4196b242d7571348781b184b6ebefcab397aeaff88020434d74217939ec01f8", + "regex": "." + }, + { + "hash": "1736eeefc1adf5b23be62792f65d16b4142a8eceb5fbf6c97382f133e7893a66", + "regex": "." + }, + { + "hash": "4c35e366a9b97ef926f7f7cafffa3cf029ffab6da75bcadf6a715a722ff1e08a", + "regex": "." + }, + { + "hash": "154eb36904018355f8f66669716655dd4878ead09928d7ddf95022837aea852b", + "regex": "." + }, + { + "hash": "4583bce6162348a4d622c4650b257dc89b77d430503f0b95d717ac621d286540", + "regex": "." + }, + { + "hash": "1134d969f876eef8914c375e9485a258ffb9efb13de6e60bb3b47c0b73b040b4", + "regex": "." + }, + { + "hash": "a0f8756187b0b538e4a7c95147cd9359c66205e03eb9d18e2e32f1234040e8f0", + "regex": "(?i)^https?\\:\\/\\/pub\\-5ba06e9d77604da48761a339da1ed5e6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2e0e279f699ad71fbb0a8648a9d20323f265b16f9f69faf9cba9c114b42caed5", + "regex": "." + }, + { + "hash": "8c01b6572d8bd5fe24bdef637ef21fed516c095a42ec7731172d067d7b1b96a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb4c6f04d20346094d00a750af48bf11755b7fbeac4e5140b1f0a959b9ef6813", + "regex": "." + }, + { + "hash": "a445f676d9a1d13b2fcd0da3ccd601c20d23243798d43977586121371be05173", + "regex": "." + }, + { + "hash": "030848d3269c667f74d50362150904d53ebb901c15d88809a2961a044161dce5", + "regex": "(?i)^https?\\:\\/\\/ravi\\-kr1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "556c112c3a2af6541a36f4acc313214333b4290d25008dbfb45fcb1d23ec5f37", + "regex": "(?i)^https?\\:\\/\\/praneet7871\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1bbb45822ca447fb2191959c85ce2e44234060119bbc6d926c3443377f3e7d77", + "regex": "." + }, + { + "hash": "867eb5073474f4df4be6b5fa4961ca70f0e2c790c0d40753a2353d8eb9094fd0", + "regex": "(?i)^https?\\:\\/\\/pub\\-11926344c794403a98460549350da29c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "642c3e8c420a7f74a2528ff565939b3f1d690bbd25f6e21baf356774a54c4f72", + "regex": "." + }, + { + "hash": "97710df6e12dc5563fb0bedfd5fc90ca21427578fe69f604bcdf2276543e113f", + "regex": "(?i)^https?\\:\\/\\/pub\\-50791aaf01e244cda50b3e7afb885f9c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "29ca7981eee12819aa685591deb451e9a928d6cf0dc906f9f74b6ab285c8e3bc", + "regex": "." + }, + { + "hash": "7d47163d1a4a2c4d07c2ab405be0fadd0d08307443678e334d15b5976d3c484f", + "regex": "." + }, + { + "hash": "c6d8c1b44fc4fb0625915152724259aa243a2a5aa7c525e87888410d0fef839a", + "regex": "." + }, + { + "hash": "0fd09da743ef2b57f283ced301f70118882c9ce5559c61eb27153cbc7be57ddc", + "regex": "." + }, + { + "hash": "2cb92eb662a7f3299ca815e33b8719de22c449aabd4258a2b3c82944415ef90b", + "regex": "(?i)^https?\\:\\/\\/pub\\-b5819835b89f430ca65463291461cb8f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3cec6a3c7499bd11b758cbdc2553bc428ed4838d40099a029d0fb2f41f1390cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-7977a8265fca4c48a0eb2ce9acb8f4a3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e513854515cd9a874d971868d31610b930e3916d4b6eaf3ff4ddf4e1222d518d", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?us\\-east\\-1\\.oortech\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbclid\\=IwZXhObgN[\\/\\\\]+$" + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbclid\\=IwZXhObg[\\/\\\\]+$" + }, + { + "hash": "4a25093eae1a7534745438372f1ecd4fb162b1cfc9b28fdbe458cc493d3edde1", + "regex": "." + }, + { + "hash": "b23e32fbb58dd44e23ece51387f7f93be8bfe17b7481005e6b712e4db76135aa", + "regex": "." + }, + { + "hash": "1911f01341f624d3b50c70838a4abde9ba6eaeab9e7cb30151f722feaa158025", + "regex": "(?i)^https?\\:\\/\\/pub\\-e3a018269f50408aac05590ce8dea505\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3d43d205cc26ab7b853a1bf331df5e1561ced2ef55383c64bb4f48c7ca378ef4", + "regex": "." + }, + { + "hash": "64298d979128a5ad31c70b1bdfd24737d3ed2f7271692a37bc71f5e7d0833909", + "regex": "(?i)^https?\\:\\/\\/niteshkushwaha55\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b6dac53217428e3d85b4e65f4fdd9213b454b6e6374005bc2a2b93db68b23986", + "regex": "." + }, + { + "hash": "64409a1cb480d1eede2c6e8088031da6f82300659cb45fcb7467edebb3a2c074", + "regex": "." + }, + { + "hash": "f4ddd540186bacffd3e37997460b7ae6b371a9635d58ec019f24e80dbec23f27", + "regex": "." + }, + { + "hash": "0cb6da6802c1734115df952632533e0547e11a3e6b767bea00a6e9cfc6a42345", + "regex": "." + }, + { + "hash": "58834d33156f450e834db6f799a186b50a4d75e403ce4c4abab8cd56c4d63b3a", + "regex": "(?i)^https?\\:\\/\\/test\\.yo2266911\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ae7ca6c8b0d407967bff7d97bb70ea416010a77d7c4df112004554941275d2b9", + "regex": "(?i)^https?\\:\\/\\/pub\\-66ad017f990b4170b859c311604f5323\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dd2365d2de8728fd91e81466cecfbc5b57e9042834d6bf926d44de729638903a", + "regex": "." + }, + { + "hash": "76672294369de1bf4102ec480a4e8ee175186db41de51ba082fb3d88af8d0000", + "regex": "." + }, + { + "hash": "9010abf735437d27a719ee5242f5987286ffc6cc274a21930416cd9e112b007a", + "regex": "." + }, + { + "hash": "1e7b117bc22780287fc753d38d5680445cd388f7cb91779a13f4bbe35fa249ec", + "regex": "." + }, + { + "hash": "7bbd28380e76d202cb3276ed656a030cb230b8edadd405c0318dfe1e12acc6fd", + "regex": "." + }, + { + "hash": "6d9e4404f98978c334fc6e6723438b0c011db3b5df3e5d85af4dae91bd78f7a1", + "regex": "." + }, + { + "hash": "57721f5cfd144cb264d84baa8e99f1a46acc3a70a82b08f84f5707bd71fbf0dc", + "regex": "." + }, + { + "hash": "3f8033baebc3b8711d338d9381a88a1b4b59c4bc6f2aaf347290ac4251cc600b", + "regex": "(?i)^https?\\:\\/\\/fgaetgdsgdesx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1a4cea91221e20986c94506c658bd2990f6bf76653f93273da576340ee0c01c6", + "regex": "(?i)^https?\\:\\/\\/unkz2022\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ece5fcba359babdea0bf8a219755f971aa8a341e72a51e1a5f0ce212ac19130b", + "regex": "(?i)^https?\\:\\/\\/pub\\-09bebcb4b9ef4217b48d1264e780e9f1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "df8faa6d0bd7ca5b8aa617dd29732e00415e15d7f9e5f60ef1b1d5d9011d20c9", + "regex": "." + }, + { + "hash": "2956a895d83cbf2be6ab879dc3e8e77387ac2c02e7c4eea2852bf5cd0f61c359", + "regex": "." + }, + { + "hash": "aa807bb67e14e17a5a615481715f35092f011abbd55887f3bb334286493c8900", + "regex": "." + }, + { + "hash": "cf1f14fc66e6b2fb39856f4e7c2967267f33ec803ecbd03d932a47d2cb812627", + "regex": "(?i)^https?\\:\\/\\/pub\\-b6a3ee64fe374284a0e4ab00c554bced\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "827f1518f9c668ca21b6400e1ae1e370c7ba5d74c8d17aa7fc7e7c2944f0aa91", + "regex": "." + }, + { + "hash": "49d9f69e5641ee8bd3753960fe447fb437c5f6f4f8d98505a68c2ec93020f2e9", + "regex": "." + }, + { + "hash": "0dbbe30137256972f3152d23736eae58d4998ff15c98e7c3024bc1ace1670eb8", + "regex": "." + }, + { + "hash": "ec9a059ddd1d3ffdaba4236a996fa89ed9ab9f42bb7825b8421d9b93dfc3239d", + "regex": "." + }, + { + "hash": "1de512b21291a9e38c00d1955ca19153baeeae26e441996d4f228ff734504ae6", + "regex": "." + }, + { + "hash": "8d47d3ac85df9675a14221327f7407066796bb0e723932fdc8fabe062f816acc", + "regex": "." + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbclid\\=IwZXhObgNhZWOCMTAAAROpH5W\\.\\.\\.$" + }, + { + "hash": "eff6fe8d3493537727f5b93c2eb83e545db4f379cb5be677679fa0c17961cf24", + "regex": "(?i)^https?\\:\\/\\/pub\\-606a2cf1d4d14b22b79ed7ef27b9d8be\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "899ebebcefc91de3454f1925cfb4313c3c09480105f7c7102b720ec4303985b5", + "regex": "(?i)^https?\\:\\/\\/creeperawwmanrobloxmusiccode\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4fca37102a46e46ad9ca24d4f81b924465ed4cc369fd27a4ea35d21f5da3c2b3", + "regex": "." + }, + { + "hash": "e884adbb5287dda9f2cfa7ac5695b1ffcd7f16fb9b05a3234611c76b27e4b9b4", + "regex": "." + }, + { + "hash": "f8fca413990ad39a1ef056d628237d36232a729afb0899468b0e5bdabf44b1a5", + "regex": "." + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44374$" + }, + { + "hash": "914da15ecf288bc493e444506b08aa9109cad16a5523a005def1738ab352ad7c", + "regex": "(?i)^https?\\:\\/\\/pub\\-01f2769fb17444fb9a59630f67f739c3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "df70ed426527ae29e6176ceec82a0e0a67e3a7b45babea07fd3c8f94142da49b", + "regex": "(?i)^https?\\:\\/\\/pub\\-318a8001de144d85bffa368b992fd3f1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z284$" + }, + { + "hash": "081b061468003cece981c59f11b9e68e0b1707fb0ee902def848af77d1b30510", + "regex": "(?i)^https?\\:\\/\\/pub\\-7947460165f64bc79f6f6b5c74494b24\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "888031c2dd1c952329fb36c186eb2d8c58c2650996cd7307fdffd15426b95856", + "regex": "." + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41364$" + }, + { + "hash": "24511e0518036a986fa594d54daf5cdc99a8a78659e2a80f529f3433a2e0c928", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+updateinfo" + }, + { + "hash": "c093113a51c463e591e62fc0e8fda676d34606eccd532969f175471c39930ce4", + "regex": "." + }, + { + "hash": "c2d3c9dd52de9590ef83bd72d4c6854e4a9a362b24b57724aad235c7c005617e", + "regex": "." + }, + { + "hash": "0e5cc39185183cf8e734f781caf8173fcc082d71fa303d5bb36022bdea3b17bd", + "regex": "." + }, + { + "hash": "e26623a1ee8ddca3d64178d65063e19a5a0b4b231a3614d1e66c973578c83e61", + "regex": "." + }, + { + "hash": "516bd6dcab742f6ff2cd279356907e1bcfb539fb7e5643d5f1b39e5c567189c6", + "regex": "." + }, + { + "hash": "a7ea0b7092e61ad8e04e58c17879c0a8bc2bff8e584c18f5910733ca837828e7", + "regex": "." + }, + { + "hash": "1104f9bc020a010ba3eefb62ff043a5471dfc73a2f83d8d0945575698cafbd5b", + "regex": "." + }, + { + "hash": "f41fd423a7926e0899eb674b87f52fec17e33ed9583c20041b99ec9b2c8ead2c", + "regex": "(?i)^https?\\:\\/\\/pub\\-5f2357067b9849e592278957c6d9d50a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9777e5216b1eae346e73af5fe9bea60280b3ced51ed617175a57972a8b634af8", + "regex": "." + }, + { + "hash": "d7e0e96183756e0f18ab2dbeced3385d5004fa62a9b1e9333bf055d496402156", + "regex": "." + }, + { + "hash": "c0042fecca574f61dd65c2dde0b6564ce3365e0e3edfadc6b580a4c386406a65", + "regex": "." + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z294$" + }, + { + "hash": "49c8ad57a466ef207d3d8dcb0a7bc5548565c45c4cc8f47f8fa82634ac5c7fda", + "regex": "(?i)^https?\\:\\/\\/ayushkashyap362\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f7e470aed38dfb4d88614199841a3c1f3c4f6997b9c617036f62263641cb44fc", + "regex": "(?i)^https?\\:\\/\\/abdulsamadh377\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c9ca19bafdf3354787f64c1253fdc05961a52c8af1989ea45cefc632fe7fa12d", + "regex": "(?i)^https?\\:\\/\\/pub\\-aa92863b6243407e88d54beed14c8fc4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c8c3ebed489ae38c95ab63c119f341197114392e0826edbd6cf49a0a7526ae90", + "regex": "." + }, + { + "hash": "ff4c82e8df6c719b1ba01f0948e054b8a2c2d477c90566a2c98fbcc5c1441024", + "regex": "." + }, + { + "hash": "c17d1f765886be6c4bfbda724b61caa044372326c6bdfc6c79ccc0681e8195ea", + "regex": "(?i)^https?\\:\\/\\/pub\\-d1f97b299c7248abbaa222b7c71a933b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f43b9ea371e78a229f6740a4d23ffb0c05ac1266709127e4dbde0a9311e20f0b", + "regex": "." + }, + { + "hash": "edcc3016a180bc4565480c76ce8e2d2c8a05fa8ad05b5282e2b49932192c2f52", + "regex": "(?i)^https?\\:\\/\\/pub\\-e17703d96c0f41a88925dbbc021fd6ad\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "903d64ac4fa9692c31235d828fe22dd692f631bdb651d407483cee0afc620a97", + "regex": "." + }, + { + "hash": "023a2306bc65c31d02b2c9f7476865f2af46ac6b1973de51d91fd1e2b060fe14", + "regex": "(?i)^https?\\:\\/\\/pub\\-e1750d830a364ef6a8ee48eca67814d5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "80bbf8c4574fe0c391fda151269b4cb3515c3e52edc0dc8d9dce18ef130700f7", + "regex": "(?i)^https?\\:\\/\\/pub\\-d92216e0552547c291f93be5edc38d2f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9c1c858cfe2a9b31d3b402f4ffa010e0bcb867e3dad1ee64bca9883bc1d48728", + "regex": "(?i)^https?\\:\\/\\/pub\\-f92ced7d5ebc48519623ee78c90bb184\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "612923e87f095d2d2dd1f827ec47952e772f9414a619269663de9cb37edde9d0", + "regex": "." + }, + { + "hash": "26b2217b9122f1249cc5c25d67fc1cf8d02c66551c1aa96cc24d6461136fa885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal[\\/\\\\]*\\?fbclid\\=IwZXhObgNhZWOCMTAAAROpH5W\\.\\.\\.[\\/\\\\]+$" + }, + { + "hash": "0274e2bbb7d5732f517169084c20d409756cb01e7e90df3ba706116118bf6405", + "regex": "." + }, + { + "hash": "095839307404809400b56f9a1399595a41f9197942ef0b2be4dc34f1a87ac155", + "regex": "(?i)^https?\\:\\/\\/pub\\-7b059622bf894aad9aab14d3dd1592cb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ccd58e25bbbd8e561c878df0d8d375233473ac46d46d3f74d63776cb4c8f16f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "817f0483a94d0c57314ee93a2a20e51162a6fcf1722b8f3244bc710b39f6edcd", + "regex": "." + }, + { + "hash": "6407c9d0d37f5444827a581d58881acdac73461226e54f77ea5a2c5ffc42dec6", + "regex": "(?i)^https?\\:\\/\\/pub\\-226f446688d84c0d868d2dff8600e34d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "796357b9aeab7b6780e6047e5cdee3f39817c7cc582340b84f55de62a313b4f1", + "regex": "." + }, + { + "hash": "97f1c1b257e4979a5181d9c7c65f0eba7e7725ada6dda617e95cf912c06022cd", + "regex": "(?i)^https?\\:\\/\\/jade\\-heedy\\-34\\.tiiny\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "65c0657879e7f95511f98e216417fc2feba8941c4e336171566cda7019f676ec", + "regex": "(?i)^https?\\:\\/\\/pub\\-506f676b0d39421391252aca8c8883d9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fed453bb6b7859b196fe8da6bf8b71b54c4671af2b5e3ed82a1c7f60d2c3fa86", + "regex": "." + }, + { + "hash": "54862ee77057fcb87b092802e7cf322904d63e352228fd6da88a28e125d30ad5", + "regex": "." + }, + { + "hash": "33948ccd951c4029c96553611ae1a2bd3460739b93fdf83a393ae394961cc23e", + "regex": "." + }, + { + "hash": "fbcf92df9f7a23575f5b2ed9b540e06b6f5ccf76628b5452469301b8ab26bb4f", + "regex": "." + }, + { + "hash": "c53b9505cecd718e3e3bcbb48e8354ca61db6af80bbb5836a4f31f24a250b939", + "regex": "." + }, + { + "hash": "ef590c6670d21e6ce1ead513a0a43cf1f158d53da0fed41cb2b366e58b31b750", + "regex": "(?i)^https?\\:\\/\\/sadasdasdsdad\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254$" + }, + { + "hash": "d867c3aae0274a98286ccdd3a491667858d1f4f14d928a571255cf9f3382a577", + "regex": "." + }, + { + "hash": "ee042e897e6134208d731658001d1d865b95ff8eb48c5d6a143acd7ca309c0e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+F\\-G\\-50K\\-SUPPORT\\-FUND\\.zip(?:\\?|$)" + }, + { + "hash": "ee042e897e6134208d731658001d1d865b95ff8eb48c5d6a143acd7ca309c0e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+50\\%20fund\\.zip(?:\\?|$)" + }, + { + "hash": "abd38932b995750c080009f5a2c1a86b3c013da47eb92adc66e14e9babff027a", + "regex": "." + }, + { + "hash": "5b759f8005a99bbf5a3e835d41071feae0ef85b433ab51ce6660878e685cd59b", + "regex": "(?i)^https?\\:\\/\\/sandeepbesetti45\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a831b75b98a7b4b942e7fe596117000dcd9cbf4fa8a7262d715baa92e27ceb56", + "regex": "." + }, + { + "hash": "740910b66fee76ce508f31c43146db182954399e6afb36d6f15d5384b5cab551", + "regex": "(?i)^https?\\:\\/\\/jaikumar00\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b3adefd98b5661cf9861993f601d25fbc42799a16fdd9f77b156c1c8cab73e38", + "regex": "(?i)^https?\\:\\/\\/pub\\-b2d2d07591334d3194472ad3f45bd772\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "98e56900137eac20641b6849c757643e980baebb1ac8ea24fe928c892b115c0e", + "regex": "(?i)^https?\\:\\/\\/pub\\-a209afe2babb4d65ac84878ee7a1085f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "92c1ff5bde8df42131fe41b58bb17cb6747e06b8e2a5328b4b3e6c00b55fd29d", + "regex": "." + }, + { + "hash": "25d2607ec1129f07a0d95613e9545c83b4120f2791e291e19022e3ab7014962e", + "regex": "(?i)^https?\\:\\/\\/pub\\-7ac1647c9c7c47bd9bcd47ccb1147540\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "15e4e31d25d5fc873d486c63a2ed84aa06eb720cf6e7efee78ebdf8e25c5ca9b", + "regex": "(?i)^https?\\:\\/\\/pub\\-9f52edc2ae5340bab49dd8f9892eaa9a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0a22fd10d84dc7a40c0d9a535e4087f1acd274e8919422a5c623528a273f52f7", + "regex": "(?i)^https?\\:\\/\\/ayushcodes0\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e4be3384c0eb780ff9ea66e76b10aad72f065aa1a51e01bf2e09c27ff0e87d78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hash\\-452425188458290135162509474239(?:\\(|\\%28)(?:\\?|$)" + }, + { + "hash": "2e3e4029b96a4881b51220ffa4ba4eb6f6e52eda642c94ddc05a05a160ca93cb", + "regex": "(?i)^https?\\:\\/\\/pub\\-11127b8945454667a09c9e773dcb1ae2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d3967179f884532cddce74d93b8b259777762164e45bbfd585618d04a68d1308", + "regex": "(?i)^https?\\:\\/\\/pub\\-a68f996b9a71495ea8c5b86cf8ff2f0c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9baab42a45c5f0abb3f390976bd3bf967c79b0407fe82c419d61060c74214661", + "regex": "(?i)^https?\\:\\/\\/pub\\-569159d1e73f436f8980da14006a9046\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eecd0701ba4c9f9d0dddf3a51a29044af22c27d1ce1c42017184a309240ffcea", + "regex": "(?i)^https?\\:\\/\\/pub\\-469b27411c2a4174a11413b0e065257c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "93c19d34826ea3746cf7e04a69dd3af742a8cfbedafe0d633936ea7df0248785", + "regex": "." + }, + { + "hash": "450400dfd43b8bc83f668a2e75affc01a8bdf2c5b0885bc0b80c91351bcc41e4", + "regex": "(?i)^https?\\:\\/\\/pragatigupta7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b716534cc7c72f1a98e09704e955eb85aecd9ff0c9dd8b4d225dd1aeff26ed0d", + "regex": "." + }, + { + "hash": "03df794e17998c0b142eae0ecc09e16039ea3b270b47966325709a2e1f189a34", + "regex": "." + }, + { + "hash": "4a2b0dcd4115b01be777bab9635a78e2ebaa5082c450cd46c7a7a52267e9fc71", + "regex": "(?i)^https?\\:\\/\\/pub\\-0e977241f98f4066b8e88def4ce924b4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c39e52d20b0dd407341364a8e3a51cf2acd947864c02422797e7420dfda18c78", + "regex": "." + }, + { + "hash": "bdc3dff34eccaa56303899686cfebdf3a2e331204631185c3a9ddf109a4dd176", + "regex": "(?i)^https?\\:\\/\\/pub\\-8495bba0dfe54b709d301d511e2455c1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4b433114433380909f05614c397bcf44689158dab1bf3f1d538a9bd047dd8fbd", + "regex": "(?i)^https?\\:\\/\\/pub\\-669d171b0801437bb334b7a10b0b4a02\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0aaa687a1f106ac42f5a19b9e312787d6e82c784886507a53f9e194b92ca2a00", + "regex": "(?i)^https?\\:\\/\\/pub\\-c726f80024eb4615a87211fc6357d760\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "73b3dd3745a5d13da7294ed54e83f2afb8091cbd88a90537732d7da2f6e9a46b", + "regex": "(?i)^https?\\:\\/\\/pub\\-bc9af838c0fd4712a67eee3575fd6200\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cfb943569d9b295b4234852a1fa652a8d190c4c0c5f337a7ff5210ae1a295991", + "regex": "(?i)^https?\\:\\/\\/pub\\-51eb0b83a3b1424d84b359cc128d7bd5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7a0e1217f99bda4da25804b042d757822c2f7e852d8193dfe742b3acd07148fa", + "regex": "(?i)^https?\\:\\/\\/pub\\-158a4ab7ad6e43209750eddbe930bddd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "40881f3ef0654cf49f41ab5c91a62d2f6447c3ced83928d08c1762ed97ea40f3", + "regex": "(?i)^https?\\:\\/\\/pub\\-f567dc03e26e4f3cb9564649c453004c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7b4065b4ea74545b5f13934c8d08025a4ef9561b2748c55528d74118c3636928", + "regex": "(?i)^https?\\:\\/\\/pub\\-9e10df6e36764ae098c7d5e6553161cf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7ba79d3df18441f58412b2fff362e422d5a26d3d17b5e0ea75aa774f8a2e9015", + "regex": "(?i)^https?\\:\\/\\/pub\\-808816d5a747458cb6271c1959539c25\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8acadc0338be7afdf6a80444ad53cd3d6156789344f029538fc6dc5fb014cf6f", + "regex": "(?i)^https?\\:\\/\\/pub\\-aa0cb31946a74d22b3a79b59359815b7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "536dbbc3a207adbf3fb280ad3c26d47a27e8e82689a4ca4b3f36219a9f38ca84", + "regex": "(?i)^https?\\:\\/\\/pub\\-1e540a71188c4edd9c60fb8b9958c5cb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ac7200f7cf59420284b83322cd9aa637a061fc9526660cab9ee1d574a4d21ed3", + "regex": "." + }, + { + "hash": "331a0ed6f4ce2e87d2e88db586288ffa441470d4f7665b83ba64aa054d5a3ef9", + "regex": "(?i)^https?\\:\\/\\/pub\\-5e5331a1b11441a5a27617021460dee4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ef6d8f03dc92aa0e11ca17087a9ea16e182b7945aaf6a8ad90510022d225127e", + "regex": "(?i)^https?\\:\\/\\/pub\\-8b7a93ac79544ea5a98a323f33d6a409\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9a963d734ff150753e47298489ad2fa69886a7c89ea1f5e5a4023665de74e813", + "regex": "(?i)^https?\\:\\/\\/pub\\-bcaef32c3b334fd4b9e03e3947fc118e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5e11ff62b54860c41d8b1f855d06b07bdd3e39987966cdbff439714c31140a11", + "regex": "(?i)^https?\\:\\/\\/pub\\-a68bddf257014f499b335fba313bb656\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0e0025c7b6241671dbdf9ad65ee71b6be4cc20528798f4dac84e8be8320be471", + "regex": "(?i)^https?\\:\\/\\/pub\\-63b01e126b81404788c52e784eaec287\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "505b77143ee3949a3739835b05c3eddc44ce506ec8050b3f4a4b83d1cc851e1a", + "regex": "(?i)^https?\\:\\/\\/pub\\-aa1cca3ba9304832be244b20b3655d2b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "524603d845ca85693333f17b63196f5af3e4f8fe2d9d416f9f3ed679070e9ce7", + "regex": "(?i)^https?\\:\\/\\/pub\\-34b6c57477e247878dbd7e2057a97c5e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e3fad5fb8130ac6ed3e83c293a1bec20a3b9e56ac7a516b5419b29d09f991b0c", + "regex": "." + }, + { + "hash": "f0e4c13448c6c14ec056162bfddaa39005d3c42eb62d40a75e06f0d492a1f79d", + "regex": "(?i)^https?\\:\\/\\/pub\\-39948aa5f5254b879120f9d27d2b10a3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cc5c9be42b8f8ffd55cba3812b6ad566a93faa366d1e284002d7399454b2afe5", + "regex": "(?i)^https?\\:\\/\\/pub\\-1c04263b2f69496fbcaf355844f121a7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8115df9d27dfd93acc44b36a37465e733eb87a9d3cad75c58fc430c52720ab12", + "regex": "." + }, + { + "hash": "3af0da5ad0177e6b5449194ca93dba34d4931cb6df7c4b5bfb589329ca14fa13", + "regex": "(?i)^https?\\:\\/\\/pub\\-462712bfef654c3ab85591156af6e7f7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "80fb22cc4f4bb48335f5bcbc4b1c756ab531a73a8d101b2054bc4f94683ee47b", + "regex": "(?i)^https?\\:\\/\\/pub\\-48fb4364860a4f59b6367a8061fe949b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "995f6b142cb6596b4046eee1837514603f0715dfbdc791a0e8c71cdd47140004", + "regex": "(?i)^https?\\:\\/\\/tridipbarman09\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f06f299cdd7f553bacf6f21de4f6a4025cb33d27c8118ef9bc86939004871c4b", + "regex": "(?i)^https?\\:\\/\\/pub\\-aa2d5e1ef045450da39bb294aaac023c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "45e9196ce92706087411bafb5d80df0d6353c0e0bb74ea5d3e6d115f2ce9e6fd", + "regex": "(?i)^https?\\:\\/\\/pub\\-ab4d230c757644f882096516863cf8f2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7ebe92b97fde03abf6f513e33fa7305cd99fcea9e519b65175387b65d53266be", + "regex": "(?i)^https?\\:\\/\\/pub\\-5e0da376fda94b7a8e3f7affcefdad47\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b83d13799b5599f77637a015b01d809f3fecf94e362cb8c4d8c7eb4802bd5997", + "regex": "(?i)^https?\\:\\/\\/pub\\-8d4ee847fd3849438a2782acb597a072\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fed625d76e7d972dd24d56d87525d3619d6f671d6305ab6b07c76fc7a13ceec8", + "regex": "(?i)^https?\\:\\/\\/pub\\-2beff241cfa64d7f83b822e8c227ad4a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d511aa6bc4182d595e2d9fc7b8508723112e71ade06236de6f130d2eb7055428", + "regex": "(?i)^https?\\:\\/\\/shashwat0418\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b81785e92f23c51eeb3238c44054dd71ebc67d9a66034912cb9c2a50941a49dd", + "regex": "(?i)^https?\\:\\/\\/pub\\-d73be3f691fd46eeb6d3fda37c64f811\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4176ac87105f41db314e9f29dbdd7be6022dda91b698c4f50fc3766011a55276", + "regex": "(?i)^https?\\:\\/\\/pub\\-0689b78b0b654b5f89a5d946c93b7061\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7a44157ddbb40adce48e049d65be8065cef4b90108185b4e71e83fba485af45d", + "regex": "(?i)^https?\\:\\/\\/ynsp261105\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bbbbea510f2fe5c5b1d40c2059bb7ae644c6b9e121cea3e0b5b07584ed44bea2", + "regex": "(?i)^https?\\:\\/\\/pub\\-4f7eeb53ceaa45919571365bc8d9f19a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a7106fb39543b20238910ea291b08b0da980e71c3774dc0cde663f28a62b667d", + "regex": "(?i)^https?\\:\\/\\/pub\\-a40b1d937494407791fab49f21c4313f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fd65a001638e70cc446227a729e41c70c2b4c0815a9b003f0eb8676321740660", + "regex": "(?i)^https?\\:\\/\\/niti2601\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6baecd216e83522b6f0f366b98689983d5a03c46e687443be963eaf9661a286d", + "regex": "(?i)^https?\\:\\/\\/pub\\-ca9fe2ed4385467f951a8e7fdbb67e49\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3312aa2922de24a543b20204bda3d85db83615309f1113cdda88d41cd2a4354c", + "regex": "(?i)^https?\\:\\/\\/pub\\-eb8e1e42870c4b4d89427cd1d213ffc6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "74fc72ed78534550bac18c884ac06aa3eeb487287ab505be259312879b41437d", + "regex": "(?i)^https?\\:\\/\\/pub\\-fd2610260b4245f7aba3bfd4f451a2df\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fd2d260c84a88f8c4be9447849e7c43958597c421361776c1ad82e275c7f9b5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hash\\-406921149474112233805132449505(?:\\(|\\%28)(?:\\?|$)" + }, + { + "hash": "2ce290acbe03bbc96a2159d4e8ebe274fb6a3121ee435709e32e19fa4e0120d4", + "regex": "." + }, + { + "hash": "658d1c6ca0b5a6d56e4974b3236bb64fad97af3b36e5ceaa5f8df10b239990db", + "regex": "(?i)^https?\\:\\/\\/pub\\-f4f8f45011084a81af23aa2c62217152\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5ff2b1010363f0b0f12131771068ba283290a8cfcc8e0df57331da310d6a0623", + "regex": "(?i)^https?\\:\\/\\/pub\\-55335c4934c14971bf617e134b2faf64\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "686be2abd9eea519264e0173722fed7a46193ff8ecbf46914e67e73eadda484b", + "regex": "(?i)^https?\\:\\/\\/pub\\-78f089f0a2ed479285d3c60e13cc57cb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a3fcf0940a08d7d3cf93b7d9dc7df56d64d3be25dd03e7c23632caa3778e605b", + "regex": "(?i)^https?\\:\\/\\/pub\\-33b87abfaa774fdb98e2d10d93386485\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2a3457ac12dc3cde647d98a7fb5684cf1b32d80e4228246833961581a59b995c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hash\\-742400603608074587015693733558(?:\\(|\\%28)(?:\\?|$)" + }, + { + "hash": "2a3457ac12dc3cde647d98a7fb5684cf1b32d80e4228246833961581a59b995c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hash\\-742400603608074587015693733558(?:\\?|$)" + }, + { + "hash": "6dac6005eef5181c3d79c4de868bf00851bbc49f2282ba4b8045b4f4037296a4", + "regex": "(?i)^https?\\:\\/\\/pub\\-8056d2aad65248a2949898015c3fe826\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9fb08756c1aae143ed760a45a48a9c3f5c7ec53a9afd61fe6e863423e834c28e", + "regex": "(?i)^https?\\:\\/\\/purvamate20\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "26f0d03571f7d1b7c0241eef507a4fe6abb0152e7c889cb267512c85928a3883", + "regex": "." + }, + { + "hash": "dea9f838f5475b123a83b2b0af8d80d55dab833d0e82ce398b97ca5e3cf68dea", + "regex": "." + }, + { + "hash": "757c078e96764b753dac84636bd9438394e3e44897a54c9c39cb08a18da26367", + "regex": "(?i)^https?\\:\\/\\/pub\\-438fff3a825547c29834ee3a746969e2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4f03d6f92f4b98196b8b03f7429ab6af75bd6c04556f13873cd2378d890d9b85", + "regex": "(?i)^https?\\:\\/\\/pub\\-8b03618ffc7046acb7ba707fd46cb744\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d39644cd1870a700edf1e8fa8a2d76b9a3174d6279acfa33900ff65272700d46", + "regex": "(?i)^https?\\:\\/\\/pub\\-e83e5f8cebea4d3eb7a23a44c47d9d83\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e7a5994bf422994d05697282b77611f46a116c3b227eda7c3b019b9e5d6c184e", + "regex": "." + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bradescobiainforma(?:\\?|$)" + }, + { + "hash": "38c5f5ad3e5674d5cffbf30c174cfa5d4aa399b0b2d5ea6986fd641db85a16c2", + "regex": "." + }, + { + "hash": "12a20485ea3ada676d516288fdece7ba4f76e5e3812db27edf6738a8b381c8ed", + "regex": "." + }, + { + "hash": "2af0439a9205b515714a8daa9239961a0d37ef4232e78cde1915cac2212fe7e3", + "regex": "." + }, + { + "hash": "d830055c2fee5d0bc02624e4cda1ee9ff235b0d54e13972e8eb9c93dbbec11d4", + "regex": "(?i)^https?\\:\\/\\/pub\\-7d254cc91ff542af81e69d032053a619\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "29b1f2897ac18b9eeb95e2fc4f9b634740e4ef25f458306644f94e933eb5b7a0", + "regex": "(?i)^https?\\:\\/\\/pub\\-434edd9c7ffb48249dd7efc833f3ade0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4dc3b18a22ade3b40862d11eaf612945b5ed225b9fade4e5864b9b546b9ccaa2", + "regex": "(?i)^https?\\:\\/\\/pub\\-413e91e0ba624d0682a762ca571b7ce5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "652387e4c65a8c29f646ed4de5ef01216f7452f0e766a371a53f63f17e184e8e", + "regex": "(?i)^https?\\:\\/\\/pub\\-372b16c5d0c44f42875a26ea514c0d71\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c4df691dc5812442036fc5967e352cc5952af4b32cb3771315b558605c0d64cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-48cd8a69a3ca4653a965af7310276b43\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bbba708087dd35137f9e4b4b75ddf85d9c55e5f95d62d274ac2e76caf66be7dd", + "regex": "(?i)^https?\\:\\/\\/pub\\-b109a7b89bed4ab39bb04e2b6536da4d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fcbb82edbe58aca22fa43521c39ad90c895379b595caffed7f91dc4fe2eeb1b0", + "regex": "(?i)^https?\\:\\/\\/pub\\-326f3f7080b94316875ee5d58c876786\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ff058bba9f7ab91deaa45ff8a96ae5fd2f206409fe18101ed8c1b7957dc070a6", + "regex": "." + }, + { + "hash": "cf732573e7d1905b3cdf5b4604dabe32ae96c3f80833fd491c092e607154cdc2", + "regex": "(?i)^https?\\:\\/\\/pub\\-621de5a965c04d1ca51301c8942a51ed\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b29b182ef40cda2d058eb151dcee5999b323a1882987c07da69df6a0b065f878", + "regex": "(?i)^https?\\:\\/\\/pub\\-786d8ce95bf9458da23061d3da74f726\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7f172827eb7456cf7c7275ca7c67441be609a70fe935ae028cba5f9f980e4a73", + "regex": "(?i)^https?\\:\\/\\/clickcartcorner\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "39b5e75bd6ba5ea52968cc765bd03360c46f9b8e0e23722921a3016859c7dfe5", + "regex": "(?i)^https?\\:\\/\\/pub\\-e626509332fd4379acd83c32eac7a8a6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7ece4ef70f87d6422c302693b2970c1dbf46b06987633e802fa9713860e6506f", + "regex": "(?i)^https?\\:\\/\\/pub\\-0f9c926c063d4b3d9889bb88535b80b3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e55fcd98d3f684694ee94fe1202ca45f8e9e2f1438e0c481971f9459c9ab5fd2", + "regex": "(?i)^https?\\:\\/\\/pub\\-acb1b1ab712940d88d38676cbe98117b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0f50467b157ac85139d3be2543fe62a54a241697b06f8c126429d58398a642f5", + "regex": "(?i)^https?\\:\\/\\/akshatkumar436\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "05dfe546cbf43ef2d3fb87f774fd166f5b2acc71ffd46f5db9a5ec1e100ccb74", + "regex": "." + }, + { + "hash": "a762d853a8378e02e01bf0376f145be798670673804254d12b77f1baf114ebd1", + "regex": "(?i)^https?\\:\\/\\/pub\\-c32b0980159b49c8ad6b2a4032204757\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f96ed221438c8de5003a1f1d7d8d940ba6ac5e73bb320f30d8ffc635fc1a11d5", + "regex": "(?i)^https?\\:\\/\\/shaikayaz9\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d2a84a3994c93109a5b4e77869b7dc7a0f71312be1d57a65d2a0fc9501d92a46", + "regex": "." + }, + { + "hash": "fd2d260c84a88f8c4be9447849e7c43958597c421361776c1ad82e275c7f9b5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hash\\-406921149474112233805132449505(?:\\(|\\%28)(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5a303dba1a1f67fad539e2a11c3efda37509e8e2691f82c8a55549810c7fd47b", + "regex": "(?i)^https?\\:\\/\\/pub\\-d87f0f48638041248f8c3a13f90c35e6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4802816c03d1b14f969a7da41aed2d595342527658694c2eb2a71ed2829a5aef", + "regex": "." + }, + { + "hash": "89c01592d56634f15b2f338be373348a125da5d7d6e3bbcc5a60d558110d1f42", + "regex": "(?i)^https?\\:\\/\\/a6dullahsajid\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a32c0e66dbf9a01b161445cf56ecb56fc4cf2c9cba801406fc7ef0df7b1d2813", + "regex": "." + }, + { + "hash": "0f5e1462391afed627f0ac5044e7c6a01b87a89ddf6ed94d5803178d42b0b40c", + "regex": "(?i)^https?\\:\\/\\/pub\\-daaf0f3c335c477184cc201bdc5b89b3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9c7e30d00a9029535ddb94ce2af68bf6e42c6e6dc0fa4dd2c3ef05a96aef1836", + "regex": "(?i)^https?\\:\\/\\/pub\\-32a1a68fe4d74ed1a505d7f87425cb27\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d7400e76ce6ceca34d5f6d9c851dd3926c5381cf1a6bc371e26744eb302eae2d", + "regex": "(?i)^https?\\:\\/\\/pub\\-06aaf40c1ddc4026aadf1e1b98727abc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fbe1a9d96702b02505d9bfc4bbce0c494d0eae29cc0fabf766a6d6ed96759b0e", + "regex": "." + }, + { + "hash": "90cc81b801131c48bb4dc6510210d222c51e08980d0f8632e3d0f8e1dd834617", + "regex": "(?i)^https?\\:\\/\\/pub\\-a683c4ecf9394651b9fa80eab5da6454\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41394$" + }, + { + "hash": "e9c66707edbd9cb6cc6cba1bd5d1f0138708c09217e5cfba6dc86b165181cf71", + "regex": "(?i)^https?\\:\\/\\/pub\\-36ad9f0ba5ac48abafb6762745b544f0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "865120339a7bf721e93ec52380abe384c95ef9f406df66b7ab26b6537970e4da", + "regex": "(?i)^https?\\:\\/\\/fazila8790\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "aa44b1d7b4e2229e94d299b296840daa8592a6415f3d2ec79339fe3ba30fd761", + "regex": "(?i)^https?\\:\\/\\/pub\\-47cf88b9b6f343a5a501976be6adf17e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7d2442dfd981fed3b6d1ca870e11a03ded5f20211680f988eac4b92f0f22896d", + "regex": "." + }, + { + "hash": "32c41e009d67dde7cafd423db8f2773037f7fb6b010e8f8b32c5ac1dec3bd9be", + "regex": "." + }, + { + "hash": "44bdc423aeb9e7500d666e7270a43139c04da751b43873da9edf0a44ac88aad3", + "regex": "(?i)^https?\\:\\/\\/jogosdoxbox360derobloxjuliaminegirljo\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09c982ed56ef943b6716719f4456e8becb80886a8e9aa0c7341a0bc6dfe309f9", + "regex": "(?i)^https?\\:\\/\\/hamnakanwal22\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "23e0e5b02224d8b7c663879ac85775086278090a3d9356390141dff3cde59d70", + "regex": "." + }, + { + "hash": "b7aa46907fbe174ad0d8c8637eca20ffc3f61429d77d95ea2c751b60d0e2c420", + "regex": "(?i)^https?\\:\\/\\/pub\\-2abf6ac369c54910a73e8f3d8bfd03e7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "95b17990e2a513f51cff2bed860b92192eeb4d2bc28b227cbb72afdf0040f8d2", + "regex": "(?i)^https?\\:\\/\\/comoatravessarparederobloxhack\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41364[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41364[\\/\\\\]+$" + }, + { + "hash": "d830b9ee1192a903ab218b9232542fb8eb9767e6c6e4da9ad60f38189eb52428", + "regex": "(?i)^https?\\:\\/\\/bafkreihripq4eb3aw3du6tlkz5qdjexdzhmfr3ekuyu2igiplvok42ahwm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "6bafec8d4549cbcdb73be6fe43cf18893ed420c4412ddc31957112f7c1f120bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_id(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d99827c77c4a50c0e8deaa6b7e1edd78e2e5d80dccc407804302d05581a04524", + "regex": "(?i)^https?\\:\\/\\/fscwefweferhgb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3814fb4621c5e496dac315f9796bc8a18bb4df89398eb41e8d9134e3dc5456bf", + "regex": "(?i)^https?\\:\\/\\/fscwefweferhgb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f09b65102d65dcc33078b9ad35a771e52b967f171cf213d27a67f4f55eecb31d", + "regex": "." + }, + { + "hash": "ca06f08b61133ccd0d6eabfc1517ca530f6f9f31c9288abf106cf2167d084a74", + "regex": "." + }, + { + "hash": "862f5ccbe9bda65f9f98f9ba04ad05841726044d9d6cc437b8da81e1c5f04d61", + "regex": "(?i)^https?\\:\\/\\/pub\\-fe7c3055f57a4587b54f62053b9cc899\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "048edab8b47116ab33d4fe79f29a1c800c703af2efc1d25140e9db06cfa3a667", + "regex": "(?i)^https?\\:\\/\\/2165852324886\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bc30f22e4e3bc8142250e42b8c2229db3549c0b808e0eb5fdd3241289bc06dd5", + "regex": "." + }, + { + "hash": "202569b63ce9ad50b6b95ab0f576c6e64b6aec635b7655d4636cd2aaa06df92b", + "regex": "." + }, + { + "hash": "d8a4819bb0110c75b1ff46077ea7e58a61f674c7d1c0708fb12bca3a0644fd57", + "regex": "(?i)^https?\\:\\/\\/pub\\-568d76b1e1a6492db3c838420f59df74\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2c5bcca0a23aabb6ecb85ddf5da0db4512d9cbdcd69c6f6cf688888acded6cbb", + "regex": "(?i)^https?\\:\\/\\/pub\\-48856b16d6504b139bdb76997cd8c881\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9755e9983d8439307689dcfdc382f1061ee262ad12d85755e6da4cf7055a7865", + "regex": "(?i)^https?\\:\\/\\/pub\\-7178905b975c4788a695edd337a43f3d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d650dd197da2907728bcf55d41e0990ca2139f378afb5d79b9102d6c8e1038f3", + "regex": "(?i)^https?\\:\\/\\/pub\\-baa20407bf2043df8074a577b9b62d31\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0cd564cb5262f0e06f975a761681cdd712874b26a1d3275c3dc4ee75ff53d595", + "regex": "(?i)^https?\\:\\/\\/kelnin08\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7e8518482ec7102413169d8efd59fc2b1e5d56a82953ddd1ac9fb7f9f9cb9005", + "regex": "(?i)^https?\\:\\/\\/1117datastock\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7d02e37ee4576edebd1b80c5040023bf8ffce02ebc09202c143fd38c49055eff", + "regex": "." + }, + { + "hash": "0fdd1ab045c175c469425b26de1bf3bf9d1cbcc62f027eaddcc98c040eda36e1", + "regex": "." + }, + { + "hash": "dc7fe47ef5a7440ad7bb9bc8f0a914dccc9b4fe84a1baf8cae367f4f581d20af", + "regex": "(?i)^https?\\:\\/\\/pub\\-fa909236474c4ea99e291c5bd3d32af5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3fb39c7be6407d7b3c3b3539fcab93177fd774a78568f12733c9a1db520734ed", + "regex": "(?i)^https?\\:\\/\\/pub\\-de84b429b06a46988d85ddb183a651c3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "49fd218ff74339939c688a8e841b367685dade0e0a6ea071a6fed5c1620006a5", + "regex": "(?i)^https?\\:\\/\\/pub\\-99ed2de497fd4e6fadd1c6bdb16a96aa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d79cd6c924d45ea28e182288eb9cfb68c98bf34dc0aca9e7cd654b638eb9e997", + "regex": "(?i)^https?\\:\\/\\/pub\\-f1754c3ccdba4cb5a19c6771dc73841b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "00ee3e164fb48d6220d221f56e35a2e946720edfa942d48b8d7d5ac4730d2c61", + "regex": "." + }, + { + "hash": "2dfb3bcea9b0de18379204a1517549f50a22f0678ff8cefd5072bc3565dbea86", + "regex": "." + }, + { + "hash": "ce7ef3e0c5a4b7b012a5ee863b1f5ab318ca4a634fb1b099778fabbd831c7e65", + "regex": "(?i)^https?\\:\\/\\/pub\\-4529cdcf61224d9d9cf5ddee32811e7f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c7f228b830f38efb057f0cb6387f49c22946a63f494ea7cd569e51229b0eac10", + "regex": "(?i)^https?\\:\\/\\/pub\\-3c2dcd4a0abf4e7aba0efcaa62b9bc1b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a44609d82e7c456647aedbd09b8b558dc3ce6d2cb737742a127f2c29771a2757", + "regex": "." + }, + { + "hash": "2e0e076f4df851e64fa0e3d703003f432aa76c2a35be86fbe1cabf70b9b4f8b6", + "regex": "(?i)^https?\\:\\/\\/trusting\\-visvesvaraya\\.75\\-119\\-156\\-224\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=b4v274$" + }, + { + "hash": "2f65a362268305e03b7d1798d0d476643893d51293c1ef1cfbe270671dfca3f8", + "regex": "(?i)^https?\\:\\/\\/pub\\-3042284a16dc4101ab3fdb242fda9aa0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6cf049ac9f27102d6f8ecf4803fadc3f7a305069a8221cab9b7e953810da6e13", + "regex": "(?i)^https?\\:\\/\\/pub\\-8be4659f157e4d45b72e6cec85017bdd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0be6cb5494cff14f246297508fcdc0e2ef6d07d76669517a659f7517e525515a", + "regex": "(?i)^https?\\:\\/\\/dfsdsfvudfsvd744\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "09d1f9da77b33adfd3e5b876eb5599ff6dda22c27c00d81546c1eec06af72ae4", + "regex": "(?i)^https?\\:\\/\\/dfsdsfvudfsvd744\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8361249e54878814f43068322c5550cd8a00afd7c81300bec2328703beb9793d", + "regex": "(?i)^https?\\:\\/\\/dfgdffddhufig595\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fe0e5510f43ea567906f5c08741b1c6281a18ea56b877e989610431b5322e70d", + "regex": "(?i)^https?\\:\\/\\/sdfdsuuhdfg665\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "886a76037ce21bce203d8c5c7729fa28a67fe90fdcc360566bbc045021cd41eb", + "regex": "(?i)^https?\\:\\/\\/dfgdffddhufig595\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5d2d310bad29e51699335f81cbef894fd46ae4c07b7657c012c4805a204fadd9", + "regex": "(?i)^https?\\:\\/\\/sdfdsuuhdfg665\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d877767eb07fe84c644d3883ae1f794dac3e6bec92961de4af12b2cf6ea11d4c", + "regex": "(?i)^https?\\:\\/\\/dfgdffddhufig595\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "65ab164a2f362290ef0de1f4207ecb97e92a17506f034206828f935376a15a72", + "regex": "(?i)^https?\\:\\/\\/dfsdsfvudfsvd744\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cb56821399b11734363b1eaee805fd9fae043e2de1a63fe4eec436c565fdcf34", + "regex": "(?i)^https?\\:\\/\\/pub\\-f9b474de7698477cb0ea3131f11434ee\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5cd3da2e48f19976d66966130e53d8f46dce7ef36118765587fb29ab3dd87cc0", + "regex": "(?i)^https?\\:\\/\\/c5t\\.hgfhdffdd\\.dns\\-dynamic\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "74ef1be0271607ddc93a438a9f97328a48b7ac6a1be5582fc8f9865d261f3de9", + "regex": "(?i)^https?\\:\\/\\/pub\\-27eff1f5c9ca44c3bcd8b379d7721fef\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2d857ff756feb3909a49419bebb45f87a95d0d72ab68a1bd7b2e47ea8a7118e8", + "regex": "." + }, + { + "hash": "b4a15c755db2385bf2545ec2fe23ea7dce79c2ebebd53e0b2cc729606d452bf1", + "regex": "(?i)^https?\\:\\/\\/pub\\-f4204225cdbf46d0ab1e1bb881ab1889\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6d899dd5aee5fef6728ceb23340275a085510f29a4a77f138b39cbc986df0a7a", + "regex": "(?i)^https?\\:\\/\\/pub\\-e24f3cf69fec44cea96dc5a08165e786\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "82a85cd392d05ccc0d0c5a0be94cac8604494e647fd48e2bc5e3c33e2fd0fca6", + "regex": "(?i)^https?\\:\\/\\/pub\\-87acd8f54ca24106917262dfa399be04\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "948a1a35a673203df4a6cbf06a076afd44d8a1a32278bc55a11e901073251e68", + "regex": "(?i)^https?\\:\\/\\/wiatel\\-webmail\\-102136\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354$" + }, + { + "hash": "d14797f62651d79def76db25008e92c06ef0c247ef0245b6cf15120e4af7c848", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9b3b4ee7a8127ba1331144cf7167b0d588c427ad225fa6a087f0e26fd3a91af1", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a7423e2230463ab21f9fdf9919906bc89a2bdb5332cbe48fae53dee05fce7194", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0f0145e3be520680470acbd5897a94a143800af2c85b0af7d2cd36f359bf9cf5", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5ae564705831c5a6d6b384f2e235917a46b622fcc9fd932004f393f7945b90f9", + "regex": "(?i)^https?\\:\\/\\/pub\\-c22ea10ed2ba449a81aac9d5830d4384\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bd81d2038336ec18263adaad7b06561c45452db576a2a238a53fff10b30d4d19", + "regex": "." + }, + { + "hash": "2a4180e45cfbb2b9dd4d51bb1d323d7ab325a100d2f786515c63b4259a09da11", + "regex": "." + }, + { + "hash": "a1c73e572a354cadb173c891a89838102db4d6b41ee8ff0ae60eea728949a45d", + "regex": "(?i)^https?\\:\\/\\/mail\\-104478\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9ca1973410cb3425ce357d084464a258a0da6b2d4b0855c0fa18346b71e920f0", + "regex": "." + }, + { + "hash": "1844fcf77db809b24ca42d26c2734273a67d33da94a792bb78ab8f055909adda", + "regex": "(?i)^https?\\:\\/\\/pub\\-a12e2e812c4c4f718a5c142cac710d93\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "25c13bffb3242750032951e8912e675082dbe1daf7f34093e31bfb06456bc1b4", + "regex": "(?i)^https?\\:\\/\\/pub\\-2c41dc2a4fe544379dd65a62b31c94b1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "36b4a8d3d0a2d7474aa39cced93142198fc542fb58708d49c1f8bd00a60d7ada", + "regex": "(?i)^https?\\:\\/\\/87y7878y8y5r5\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "f5d0e7b9dd7dc5485aed85aa5ac5a52d9af1b9537636971ee60a676dae1b25e6", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+threads[\\/\\\\]+$" + }, + { + "hash": "27c493926af8f1b647db6bc86ad3a3fc5df3a4a0e86e6576a1a69d907f4db682", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0ac4b338175dc0f641ba8c66fe6b9d607d77129632e051ae106b73bb6aa32120", + "regex": "." + }, + { + "hash": "bd29da5e2cd2975479c8c859515c3f9ec0623f65628bd5555f98a06bed957ef5", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e9ad932f00902e364c3f985bb4636a378cb7b4fcf216562ca2c0be660ef974fa", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6e192b5fe9e996a44a52d2777d375630fa2e793eff38907387cf98e0564931f2", + "regex": "." + }, + { + "hash": "bf2a95a2da816aee6604bff30a819d1d1124c427ed305b10fd90f91fb104f83f", + "regex": "(?i)^https?\\:\\/\\/pub\\-8680954ac59343df90befd1a6bcaf6a8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "26b4c1cd866392888d07a06fe77580fd26d4c064b9570baf07d0adade5912a6b", + "regex": "(?i)^https?\\:\\/\\/fix\\-to\\-manage\\-1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "257c8ffce2cba71e9d13b0ae5ea9d7eee2b1a5022632586f06cfbef7eb824ed7", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f630cae94ff1d542c3c168065ee0cfc7e988a9d47e690429d9c64e8efd3de0ab", + "regex": "(?i)^https?\\:\\/\\/pub\\-24e47eb3f2cb4d538cbcf95a6998644f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "028e87d29b846ff0dba8222ffc4ed8b417fcef8fe606d3de2bae1537b6eb4828", + "regex": "(?i)^https?\\:\\/\\/full\\-videocomnfdgkgfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4cad6d42b9957db6cc3ca7fbdafdff9ee7448057a996ac5d104d4a5e1dae9ae9", + "regex": "(?i)^https?\\:\\/\\/pub\\-fc3045ecd39043a3ad5001fcf5a38ae6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "74066a89a13cc86f2f7b23a6788ebf961a782e560237ba27c2dd86257102afd5", + "regex": "." + }, + { + "hash": "fe60b8a320e305e03f213e385b02c88922fb234af5aeab9aed616e92120c8116", + "regex": "(?i)^https?\\:\\/\\/mag\\-click\\-dito\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9f63fc807d6b2854dcef13abe73cd77be1d2d7b70d3de9acd87e8c0df8c2d1ea", + "regex": "(?i)^https?\\:\\/\\/pub\\-7dce8c8d4fc14c939cbea1c16dc73926\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+$" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41334$" + }, + { + "hash": "dc8bfa61ba6ef7d10d52d4525d295963b937dbcb6db50f29b00a87fca54fa673", + "regex": "(?i)^https?\\:\\/\\/fgfgdfd656\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0f1fbd11ed1c987edc8a270d921a7d439604b590dc88fcacbe45d4263881650e", + "regex": "(?i)^https?\\:\\/\\/pub\\-5537a9d77c064a0099b3040a09577445\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ec9f8d6a893f9bec0e12e9ab10eb747f3cf7181dec16b565aee3fc5cf6b08002", + "regex": "." + }, + { + "hash": "7165048b6c4c8ed7f83f6dfd00b5acab4f18b701c2066e3d50986669e0c15695", + "regex": "(?i)^https?\\:\\/\\/ghghghghgy67676\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8b2487ad79cd3c63b10a55570a9c5b4af55a951cd664e4b4a5908919b49446d3", + "regex": "." + }, + { + "hash": "7049e0333a75a438162378179e4202fba783aec82a96d16040d6d4212241b954", + "regex": "." + }, + { + "hash": "9a32a37bf52161841b9c7d9afcd3ef20b7b1491c0b0650ee8298acf1f2910355", + "regex": "." + }, + { + "hash": "b5ed26673eaeeaea5cf07b811bd0ad20cc88dc6e74f6335084b521633453c226", + "regex": "." + }, + { + "hash": "f0d3042e0e8b8d2ef7591aec11ce2ffceda5a486d8f1c4fec6d4c8e535ac2fbd", + "regex": "." + }, + { + "hash": "67758cdca99e8c059b60d692db411ef191b43c7b3b3092a03a2b91188f9db969", + "regex": "." + }, + { + "hash": "eda6f34d6e9ff4f722844f279aa83f4346cb8f1d3cf1c7f29635d58e5fd37ae7", + "regex": "." + }, + { + "hash": "68a36396551b1ca577ce6791e38920050283c5f1cc36c1f73b8d181c6cde934d", + "regex": "." + }, + { + "hash": "4143f45d955bc3160d90d83dacb748a645afe06d9b82afce88bb981121402fc7", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "af512edc29308bf55da82cf43947a309c384f04233e070f441a623f4d7899564", + "regex": "." + }, + { + "hash": "20e8399f3e79c91ae9b083cd881b54ca67715cf1a067720806c7d3f3522c0ee2", + "regex": "." + }, + { + "hash": "5c9064aef5685cbf785bb30db0cfbbf03961bd155a5f3f103d830a1161274bce", + "regex": "." + }, + { + "hash": "7c4e149cdfae2f7649e0a6206136d0abaa30db8ed872222742d82b566e4bdadb", + "regex": "." + }, + { + "hash": "5bd53cf495aa146e8d6edbc6f391e667e50e4042e856952538f0a1719c863929", + "regex": "." + }, + { + "hash": "2f4fb66684b9c0be7c50f7a3e181d135ec874a3347d1e5dcf8bbaf29cf943b74", + "regex": "(?i)^https?\\:\\/\\/coderobloxrestauranttycoon2mejoress\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1fbcc2f3e933efeb17719edee6e07439b1a63a86bf23b31e6fa7edec04375b7d", + "regex": "(?i)^https?\\:\\/\\/sdfjsgd163\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "13122d4055b287da8b4ad0a8fae2db7256657f494da049de9704cf870d4233c4", + "regex": "." + }, + { + "hash": "0e9e50b3afc8cf9f9256a6f88a7c64be63b85672650b9b540eab931762043247", + "regex": "." + }, + { + "hash": "acce62b703d87d209245d29ea2f3434d7f86e2977fd31a79d74bae6b0981edce", + "regex": "(?i)^https?\\:\\/\\/pub\\-fd217aed52ac4dc9b7a016b2851fc36a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e3777cf9319a832d78e280acc7182a5afb66c74752e786aacb48e9aad0798", + "regex": "(?i)^https?\\:\\/\\/pub\\-58266b42df944aca96ddb1cb09d9b9b7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "213ad98b6cd6cb83e8d0b543ee1fe2fb62f5eeb14092642b98084b7d3dd1276a", + "regex": "(?i)^https?\\:\\/\\/pub\\-dad5144323dd4384b4198a74448f2cc7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2b4f99a844b58a9f5e3f618e22c6dc2b598ed101b7996f149bccf42dd86558f8", + "regex": "(?i)^https?\\:\\/\\/pub\\-a6a2f6326ec242c78822149dca10b176\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b16fc88c9d78dd1190f7f439a8653d714a51645cf9994806052d1752c1585a5e", + "regex": "." + }, + { + "hash": "6f50b5ac8a04ea838d612ff44b0561b34ade7dbed4db2f6b919b41f7db602cc6", + "regex": "(?i)^https?\\:\\/\\/z0ntaro\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4143a4f414c1aa6b2ce88c8c12a6be877400c4a96b362ec650d47cd610af6060", + "regex": "(?i)^https?\\:\\/\\/pub\\-eb6633e46f61496798029994aca4b136\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4cc5f2514e0ef26871d7fddecac7e5092048bacee4557b990bc5572edae1d453", + "regex": "(?i)^https?\\:\\/\\/pub\\-e23528cbdea642ddb1c88fd0d29e30b5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0996dbf43f9c6fcc706badefd4f31e1cf2a846b57a12fb0c70a3b5a8e009ad8f", + "regex": "." + }, + { + "hash": "9b68cabc483356cea32a8edd72f8ce1e710d044f4684511a1d5143405288c817", + "regex": "(?i)^https?\\:\\/\\/wwwrobloxredeem1\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "006cd0e4b30539fa8190144fc509299b7d81af7684fa45a80f4b81120796e67f", + "regex": "." + }, + { + "hash": "f6173a46f34d247748c0bfe60a5913566c7a30eed872b06c26461060f6874fe0", + "regex": "(?i)^https?\\:\\/\\/sdfjsgd163\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4287efd919e0d38d68a188a8beadc0e6aa726eb74af0cce7a00bc754e8fc0cfd", + "regex": "." + }, + { + "hash": "663468cc016722fca466f17bd387d4063102375973f95b3e87c535bc4ae3e8d2", + "regex": "(?i)^https?\\:\\/\\/pub\\-f8d46c61bbdb4a109324a8b088dcc6ea\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a0b96a9dbaada5402b94566b4de734b543d31a3e48881e4c139bfa0ad2fe7a57", + "regex": "(?i)^https?\\:\\/\\/fgfdhtgfyt67565\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "476f8187a8415cb95b6e7155da3c64c1d321cdead4a0bfe24b379be26d124ac2", + "regex": "." + }, + { + "hash": "bb8180d8803ae7f0c4969f91c683708d7b809ad9e84fa49ec8ed8a5e1ac1b229", + "regex": "." + }, + { + "hash": "7ea0d9afaa82a5d47e3540dc10b71fafbc5010aa06f8a7ff404f900558ab2896", + "regex": "(?i)^https?\\:\\/\\/pub\\-51f896deb233450089fc1a520e6ed957\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2f4fc44a9173442496de7f5c3972b3493669d4a8b85e73116e4c4b8f4fa720c4", + "regex": "(?i)^https?\\:\\/\\/pub\\-7e8edc33af9545db88909bbe27a2993f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "214765778064f895fce7f44d9d7b9e34459c2952aa4c22a95ed6c71eed75f6f3", + "regex": "." + }, + { + "hash": "46a7e751898d5ae4c1e83ba3639c7853fe8101a65bbfccc9359512446e083059", + "regex": "." + }, + { + "hash": "743414fb62e77f01ae68652caf609f7112b62c3563efa6aa5c272bb2b040839a", + "regex": "(?i)^https?\\:\\/\\/sdfdsfdsfdsf123\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8c21065191fe9e2f6b834052957539f03792515b6709b8bb195ffb01dcd3c8cc", + "regex": "(?i)^https?\\:\\/\\/sdfdsfdsfdsf123\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "304bc0b15481aaad4c747546349d4ce09722846c0f072c848da00cbcaab5b32a", + "regex": "." + }, + { + "hash": "d77660f18cbefe8cb97758630c67cf726713a0e06c86982f4484ea5bd573a732", + "regex": "(?i)^https?\\:\\/\\/pub\\-87cf4da287f74076bbd1cd51dab87926\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "33816c27f9be576debc6bdd3e3b641df0b33f3cedc339115a40d4b7643f6b370", + "regex": "(?i)^https?\\:\\/\\/pub\\-69fa26c47bbf43f597c9c544880fafa1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9ab3ebd24a8c46b2d95d8d5c3c956e0eca1519999d65a4ff3aa35dd6c1d4a5c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify[\\/\\\\]+loading\\.html(?:\\?|$)" + }, + { + "hash": "4dc6a2f4e2233c7437f31ecc087cf8402b6f7697aea2b5e789b192daa4be3bcb", + "regex": "." + }, + { + "hash": "82871b2d27d50150a82647cb4c7da6110f85adf50d542e512cc0738cfca60078", + "regex": "." + }, + { + "hash": "683c3efe99788da0c0a0b000527d2952021fbf39ae2a791ffd6cd7e51d07c092", + "regex": "(?i)^https?\\:\\/\\/pub\\-2801359d2be54bfd8701132626efeb73\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c33edf5466870221409c112e3ee61ec334d14db907ad1955990290f2519465ed", + "regex": "(?i)^https?\\:\\/\\/pub\\-72b97d2d9dbd41eaad654b0bc36009fc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ece4a90b18327c882ad5262f7bbecd2ee6f233cb54850be2438897f3e3280bff", + "regex": "." + }, + { + "hash": "edeb2c095fa8f7708bc234ae65d6dd9588bdee0606a1694b43fd5a360c8577fe", + "regex": "(?i)^https?\\:\\/\\/pub\\-38310d658c474ee995563353ea52cf64\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3d07c129c7b472ebe7c99fb7e4d40b0d5e599400381d41751b4cb24576cab9d0", + "regex": "(?i)^https?\\:\\/\\/pub\\-5e5c447d09b54c2a97cb6316e29f14f7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "24723ca0f3634d951a1602fef8dbe62f1f68eabacf5e63fc9728a9483233f7b3", + "regex": "(?i)^https?\\:\\/\\/pub\\-940c549d8b0d473e8066e5ca68d8c472\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "afc048cb8a280ad6447e7e414c2e409718ab247aa1bec14d0ae5586352e844f1", + "regex": "." + }, + { + "hash": "9b68660edd1b002aa0d210e468fa7e79dc893392c50fad20c3d5e9ee18280d6d", + "regex": "." + }, + { + "hash": "d83253d5b0bc68c19ebe64f7635819457643fbc2af11e774eb1874c56a6b3d37", + "regex": "." + }, + { + "hash": "1afbac0bf4210b3f5ab674c3f6046c1a1e0d5074508f0e117685823f9f05fc2c", + "regex": "." + }, + { + "hash": "5b54265fb0c0db34b2ee50ee277bb920f90f7cad18a8d2cb55a84b55609b0e41", + "regex": "(?i)^https?\\:\\/\\/pub\\-c6e0b97e72d040f1a7b42b31c8059371\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c4y294$" + }, + { + "hash": "eeb603fb667f2e943413fd529acd3f2670cbf7bf56a4488bc3205268a8bdde88", + "regex": "." + }, + { + "hash": "d5154ffa7bad2fc7db5ef4a1d45875ad740a78c4126b49c46aa4bfe0a40572bd", + "regex": "(?i)^https?\\:\\/\\/pub\\-a5c98ffe202d42d29388f15abd463e9b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e193966da8bcfb5df692e7cce4219a7b868ddb2192fbaf1f256658abf9d6b1e2", + "regex": "." + }, + { + "hash": "f6ef4439c8d8aa5e82623c80b584f6f42e0f0ac8e409834ca900ac3564ea4cd9", + "regex": "(?i)^https?\\:\\/\\/pub\\-8c1c14c3b0d64d0099312bb4670f2e23\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "214e92bad6daa35fa6c38760f91ab66fd967118a1d225c984a31c7c54a38b079", + "regex": "." + }, + { + "hash": "5065efad37441ce19701b405a0d6748a452aaef5f5481db11e710a522f7bcac2", + "regex": "(?i)^https?\\:\\/\\/pub\\-88f7b785496b4f04a4a82a50da93d67f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eecd1dbf2378e9e83c14bd5a2b5bb1a3b722561d2591e92a4bc832af3142c0aa", + "regex": "." + }, + { + "hash": "df9aa51835bc095426bd39c03f28de467e03bc4b0dfef12123a536862088d3e9", + "regex": "." + }, + { + "hash": "b469814f48064d70815e9a657c2b4c32adf4551ec332f72ca5667aec4d9a1de3", + "regex": "." + }, + { + "hash": "6d9341e99d99b7c2812cf9be9d957790d91c4b84a2fc4fbc1af24e0f2e0a877f", + "regex": "." + }, + { + "hash": "76d36491ee3771549f2282556d9caad707d334ad37fe05f15ba3e88a4c14deb3", + "regex": "." + }, + { + "hash": "05fac5dfa9b93a8637a0b80604ee7974a156851feb20719f24f7e9198fdc65a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1[\\/\\\\]+t8[\\/\\\\]+hu\\.php(?:\\?|$)" + }, + { + "hash": "05fac5dfa9b93a8637a0b80604ee7974a156851feb20719f24f7e9198fdc65a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1[\\/\\\\]+t8[\\/\\\\]+hf\\.php(?:\\?|$)" + }, + { + "hash": "05fac5dfa9b93a8637a0b80604ee7974a156851feb20719f24f7e9198fdc65a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1[\\/\\\\]+t8[\\/\\\\]+bg\\.php(?:\\?|$)" + }, + { + "hash": "05fac5dfa9b93a8637a0b80604ee7974a156851feb20719f24f7e9198fdc65a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1[\\/\\\\]+t8[\\/\\\\]+delayer\\.php(?:\\?|$)" + }, + { + "hash": "05fac5dfa9b93a8637a0b80604ee7974a156851feb20719f24f7e9198fdc65a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1[\\/\\\\]+t8[\\/\\\\]+gracie[\\/\\\\]+send1\\.php(?:\\?|$)" + }, + { + "hash": "8fb2fd580fbdd52856645139cf182ef54c5263255dfa1c590e5db0413cd4b2da", + "regex": "." + }, + { + "hash": "2510b56d2fa9d84433b1ff2905cb6241eb39c2824f3d9f613bfeb1922e244a70", + "regex": "." + }, + { + "hash": "c42fb219c6589936f5f01ffd3f68ef4cbe86f2d087b0f522e7b47a2cfc3efa79", + "regex": "." + }, + { + "hash": "94f2c86299f7e14bdbd4b564f8992d860b4628e1516fb1bbfc214d09bf64aeb2", + "regex": "." + }, + { + "hash": "05fac5dfa9b93a8637a0b80604ee7974a156851feb20719f24f7e9198fdc65a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1[\\/\\\\]+t8[\\/\\\\]+gracie[\\/\\\\]+send2\\.php(?:\\?|$)" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254[\\/\\\\]+threads$" + }, + { + "hash": "adaaca2d41a35a60249d139d79dfc3685a0dbdc0ef5680b7146496b3b19e67bb", + "regex": "." + }, + { + "hash": "74e2450f40acd9f3dc9a2515b8064a3b70ca0b1704524488eacbeaaaaf2fba35", + "regex": "(?i)^https?\\:\\/\\/pub\\-01bdbf8de69b4f43bd79471820b70760\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "618fe061e695efa2149923e21e1861fa9774e6bddbbc67470f49e66c7c80dd2f", + "regex": "(?i)^https?\\:\\/\\/pub\\-7c11203ae52e4cd1a7feeca45dd9650d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b411e9429cc50059488b9cd028f0fd79290ddfdee5815b8d6e47e3507ce0a99c", + "regex": "(?i)^https?\\:\\/\\/pub\\-97c8902c9c3b4ec0b4a2b0568cedcfd6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4a9860b051c2837b5f2608769e1219f8db678b13d2f2f55708b2dd442489ff03", + "regex": "." + }, + { + "hash": "a0bed5b18a4250b6dc29f30302fa261298d951685d53de91ab466cc46e43ef9a", + "regex": "(?i)^https?\\:\\/\\/pub\\-a29070233cb54ef393c1ddea471f903c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d9e3bc956a8090e7f9caf2cc190a93f14a0bbbb7c70c1e77316c9c8ef27bbf18", + "regex": "." + }, + { + "hash": "c4e4cae6a4f624cd0d4512fe750fec9df0ad55ad0e91bea605252b8fb1ce6bd0", + "regex": "." + }, + { + "hash": "75ab9d0f4780fb4e0b51357a7f95c898bbf215c9318a7307529469338ea509e3", + "regex": "." + }, + { + "hash": "542deff89cda366a75b17f3d1173507f3bdc1716b3c183119b82aad397bb75e6", + "regex": "." + }, + { + "hash": "6f4936ecda5fee905642079ea51348f9686ec197ccbd780b3caa21b02cb14806", + "regex": "(?i)^https?\\:\\/\\/pub\\-4f492cc692c6494084de66c25f819c5d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "75626387b212f43ffe523f361f21d4ca998e10a752166eb43d95ab85bd9e18ec", + "regex": "(?i)^https?\\:\\/\\/pub\\-6d30332fdb004424acd9e66705f2efea\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "18aafab10485524b3d81c5b7cc2c7161de2b9ba35fa54a4312ed0a56c658fa62", + "regex": "(?i)^https?\\:\\/\\/pub\\-6911abe725974e4d9dd6105ae15dace2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d547384937758696a59649484ac3ac0931bf5ffaf1bd300daa15ea5d8184e14e", + "regex": "(?i)^https?\\:\\/\\/pub\\-3a178bbea26a41feb094c733481aacc8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8077f1e1d8cd1804e0ea9e73c37ded97dbd5756350e9bb889a3eb3c88e2ec5f0", + "regex": "(?i)^https?\\:\\/\\/pub\\-72839a41eb56460f9ce1b87a16a5bb3b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dbb5be39b918d94b4c3a7df6e517f55a61c850b161d10fdc77842b9fe1a50a27", + "regex": "." + }, + { + "hash": "ccdb6ab72dbcdb77055a13792f546f0a164b0271a9a2455c0126237bd0ae842c", + "regex": "(?i)^https?\\:\\/\\/pub\\-01445576f13c4ac38151d49c66393416\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d1beb647c49b4050cd2857f8f7148ddc90b32cac924be8eeef2c1629d8805dec", + "regex": "." + }, + { + "hash": "3d6c23abf545b3152af9e43044f1485f4298e207596689f60726ec51f78e15c0", + "regex": "." + }, + { + "hash": "01afd70549e263722f6c61ac205b376980e7151a42cc6666f063d1e5c0118b9b", + "regex": "." + }, + { + "hash": "77dc2932a0024a86ffd7ade14cfe29c5c1e7e3fb3615d08dceceb80ea4e91d4c", + "regex": "(?i)^https?\\:\\/\\/pub\\-9e9cc554c13646539df3c3e1af03e704\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "de287eee3ad60f81340836a433df3b9fea3ac2710a9645ba775087b7772f405d", + "regex": "." + }, + { + "hash": "730350dc3cf2bb3d7455627e10288e7832930d361dc28f79b1804d2464ed4bef", + "regex": "." + }, + { + "hash": "bd49b290cada6c5ead89400a430ea4e498c250fe1cb03d792ed6ef79f7ef1212", + "regex": "." + }, + { + "hash": "e18710f5445718ac26e6749c3891c0204d5f0f6d5f042df351cfffb5cf7481a3", + "regex": "." + }, + { + "hash": "dd2bc884aaea81c3505a1601aa9b56abf671b8e95ca4314d445fa2cbf9b21377", + "regex": "(?i)^https?\\:\\/\\/pub\\-9a26885e00d64625aa14af0fcae13b73\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6145eb49284a5adc7bec296a99a3f827c921a113ad7ccec00b03fceaf21b9fcd", + "regex": "(?i)^https?\\:\\/\\/pub\\-e3974f4c00f54fc28eadd63f1eacad4a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "646300e89bf9da479d6971bfc28cab304e5d084e84d11b72235dffb691082dc6", + "regex": "." + }, + { + "hash": "ad45cabc9de3626ece907c2ad1812371966531eadb1b1be011083f49a08f6d03", + "regex": "(?i)^https?\\:\\/\\/pub\\-ea4485f852014a7285894857ae278345\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f5d0385eba99a572b5892f49a2323a00bd1945c04912346d793a41584c031c4f", + "regex": "." + }, + { + "hash": "18f211ff0aa21c34e1dec317fd91dfafb4d41246d1edca8eb565f6af707c6476", + "regex": "(?i)^https?\\:\\/\\/pub\\-aeaf04d1f9344e0e9aa24e302c38e4aa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2b9e1cd7e131f0b71566bc4729a613315ef095c2490708f0acb97f6d2a01af43", + "regex": "." + }, + { + "hash": "119b8f562b79e9f531e3366596452aaa27bd5fa390cd49aa4b0aec1d55635267", + "regex": "." + }, + { + "hash": "a89490be14ec5c8107173a35283efdebd3bc39ed390011b00b645cd259cb63ea", + "regex": "." + }, + { + "hash": "c8f7c9be70321adcf7a5ac6acfd3bd78f22bb9c257d9bcad997f059f9e2b4ea0", + "regex": "." + }, + { + "hash": "4a6642075b0c4046476539b5d9a07b815784cada75fcc7e11a3375e1575bd752", + "regex": "(?i)^https?\\:\\/\\/pub\\-be77408f1ab94ba7ad7e30b5250639a2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bbe486f77974a400297ea0dba670b95cd56638a11c92ca1f95d2f95ab633531d", + "regex": "(?i)^https?\\:\\/\\/www\\.3656cc\\.vip(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f96721df19f286d2546aa3c923e6c84a356c71c7541a851de02de9c698aa88a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "63372e367070018a7e3afa91ede9360903f3fe115be73a6b8b7a768d0e16bcc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=b41374$" + }, + { + "hash": "15c637b83b580514edb484bbfb497df95c91888d8335bca897b31a52d3c053b3", + "regex": "." + }, + { + "hash": "651fe6cc727a83e082c5b05adc2ad7c3840dc04ff445c516bdfbd9996bbce10e", + "regex": "." + }, + { + "hash": "074e1b1eceefb400161fd7a26e9930765d7d76691431686bb29fa55ac3fb8f94", + "regex": "(?i)^https?\\:\\/\\/pub\\-7409990991d94074b3b4cb09d5d895b6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e384da46e1497e547c4886c55263be531c7e39a415fb4c6a289f5cb6b76d719d", + "regex": "." + }, + { + "hash": "65d02b8ba26ed938584bf05877a8151a4eeaac0ab3a4380970adf046288f0535", + "regex": "." + }, + { + "hash": "4c99755ad9fbdf0df5f104c4d54eb77745baf4c9aba988ddd6ee402f161c3005", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oz2024(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8a7614d3f8d193513a81443fce0b237f3a3c8eeccc53d7b5f86bf80bffc8c5ab", + "regex": "." + }, + { + "hash": "6374597179b3e42693e0d2a8bf6fb2eb9497bc5557948d18997aacc2e2fe704d", + "regex": "(?i)^https?\\:\\/\\/www\\.austina41\\.sg\\-host\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "600152449ddf4b7f1242d25a311917a87081c3496bed07f639923719a17a3986", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+serve[\\/\\\\]+MUIEAN7jDBeZ99YcxAKj7BWWIF\\-7dTL3COY0v_kvpBvdTemBPvIiPm_U2M25ZplOWsrdd18EXCylF13unW\\-lUId1tgzQO\\-eXuKu6Bp_StE1ncNcXWRYmvIKkUzj2wWkRh8enazEAJF\\-2D7GJaF4TJsOgwLLFufYAgBhF9zdXA1iGPcEj\\-YmHX7xqatqXh75wmmuOuPV6SUKQc92J(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c9eba10dfea1ccedac30ccac3a934f00f0e3cb14dbbe067ff40065175a0e1962", + "regex": "(?i)^https?\\:\\/\\/shahbazthedeveloper01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4eb883b812165b2d887cda7b0d75b40d7de014ab745c0825345a9b222db3062c", + "regex": "(?i)^https?\\:\\/\\/pub\\-171bdf35e6cd4fd49d29df51ef667e26\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9d5504ee45807afa3b4aadbbe6344673245b90fbfe2103a7fed1f101015bb153", + "regex": "(?i)^https?\\:\\/\\/hhdfhdfh4554\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "13c6f493dc8f35c5d43f9e65deeca65c779e3c1629c53b43e5a7ce13aa1aa228", + "regex": "." + }, + { + "hash": "2d6872eecd4cb3456fa102cdd5d5b7fb240f3941e9a85073e4a9e119f7006f36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fb291bfe1560122be68b9cf3039d37aaaa3c68357c481a1c6b4c549fad8e3149", + "regex": "(?i)^https?\\:\\/\\/pub\\-35f933c2c17d45a59df40a87d84e6565\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f8c344b28bd6ccce49f123c1f9ac92fe28810f5bed290becdbd33d23833625e0", + "regex": "(?i)^https?\\:\\/\\/pub\\-950c973a68e24888b20ee89e25ace3d6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2d1cb96266b9928c0eb2c0127d64f9c52d30e925b00850c232ea0abaf3289f86", + "regex": "(?i)^https?\\:\\/\\/pub\\-7489207063ba4bceafc6537c7997210b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3e98022ae1dd59c24f118d0e35f804975c6c111bf780c531eb3ab60145036592", + "regex": "(?i)^https?\\:\\/\\/pub\\-cabc350e215345ba9dc92091fa869d63\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e7c53f13978a6359677cef3c9ca623202812fde33bd44dee588dffcd729ebb89", + "regex": "(?i)^https?\\:\\/\\/pub\\-9e6ce63c6265425ebd16085748bbba2f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7bc7d7196f891216d9629593b6793db15398ba7fffc846faaf53b34480e83474", + "regex": "." + }, + { + "hash": "81f52c6e929506e45eb3e8e81d75c9e65a366513a0adec5216566297f2732bb6", + "regex": "(?i)^https?\\:\\/\\/pub\\-f3fd7582ff8a4d27a648a25dda05fecf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "551e48d3f2ce5900892181f17f45a03cff6fef03e49e0239ecd94eab1557da48", + "regex": "(?i)^https?\\:\\/\\/pub\\-2ba2f00d7b84414c955f7291fd3bcc1c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cac600db2b4a401975af4d48444bf1dcd925c812153f945234b049dd291ffe9b", + "regex": "(?i)^https?\\:\\/\\/pub\\-2015a8822233428099bf178992d7c2e7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "437ef783067cb6be89c688a310a078baa3420c2bc56447e7b3af4a2cf2f796b7", + "regex": "(?i)^https?\\:\\/\\/pub\\-1c7ccfff2fd34d8f9f142bff4cdea1aa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "635be31d695b7aa02776fa5f050b1d67e2365f143db668f59b0abddfe0b28216", + "regex": "(?i)^https?\\:\\/\\/pub\\-efdfaa2e0c054ce5b95fee669e62a7ea\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "03ea84028e98023d459ea51943cbe09525af8dfc5024085c4a170477ae57adef", + "regex": "(?i)^https?\\:\\/\\/pub\\-1baeec73939641b98a86de01c1e04323\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b070a1c6351893cafd2e06eb05835f53d17e47f786143e1bfcc9b19df7ac19dd", + "regex": "." + }, + { + "hash": "99fd581b827a1d1bc62ecd188ddf0b910c24d0ca22704743f728cd0aad6374a8", + "regex": "." + }, + { + "hash": "6bb3d372d5b8b13eca02212b3e8b6003af48dd368c958a9a75415c37b549d616", + "regex": "." + }, + { + "hash": "69e428c39cef8c69030a382ec6a277a7c4f7a6fd1468db98c73c092a4327355e", + "regex": "(?i)^https?\\:\\/\\/pub\\-72ebb28c9c774f5bb6ceaad203875ca8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cccf70bb42512ca0fb2416da8b5336bc6dfb0fb60788b8685f731ac2a9206c94", + "regex": "." + }, + { + "hash": "1f21a92ad359d8ada55d8f99d43a41929a48faa55aa51dd2a15605ec17330257", + "regex": "(?i)^https?\\:\\/\\/pub\\-4fcd017d40984b478f0c76818159fa4d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "603d5f93c3ac6a9b8bf184896ec918969473c17802612b5a687af7d1af588925", + "regex": "." + }, + { + "hash": "4667cf1cbe7fb4765c6d21233400b4afeddda341b9f40092acb827d4201b6c6a", + "regex": "(?i)^https?\\:\\/\\/pub\\-ce0ed689fbc448359382f50f16496299\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8fee64b411d8189b0def370866a3d3555b992680f85eaa27b449e09302baecf6", + "regex": "." + }, + { + "hash": "b4df73f3a2a295e1eae17378599b36d335bd9979976086157dfca0f75b108d79", + "regex": "(?i)^https?\\:\\/\\/pub\\-58c5ae6ff5994a2abf06230dc0fa77b7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2dffa2f2d282c37fca69a254d7d78fafc177cc0a3086800748765175595498ca", + "regex": "(?i)^https?\\:\\/\\/jasonj002\\.bitbucket\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "26b42e56fb0050e646aad18fd1490835269f16ac8cfb02a283c6ce442866f94e", + "regex": "(?i)^https?\\:\\/\\/rushabh782\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7447908b25ce67d2658236dc4eafab81b1bcf5a2481cdf40e6b821c55cba4a43", + "regex": "(?i)^https?\\:\\/\\/pub\\-571990fbc4d7477ca2778da44c110ad8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6b4204aa5a3b4a27dcdf7fb905d65641d7a3e9d8f462e812bbf854683b08b106", + "regex": "." + }, + { + "hash": "5015873ba280f45af7296a1bb6e11452ddbf00d0fc8eb0e925be0a7827f23da4", + "regex": "." + }, + { + "hash": "e80cce833fb3fe941330c76c1c040eae4a04cb99a37ac9e6f90acc4072aac263", + "regex": "." + }, + { + "hash": "c9dbe3fac02bee1f9c1ad22d0766bc8a2276bcac62e64c41dba93bb35d85cbbf", + "regex": "." + }, + { + "hash": "f524904abbd7f08c12c91412bc6964931a212b64101b46987d7f434e73ed5a1d", + "regex": "." + }, + { + "hash": "467f5417fa745ad30f61e3e23e259b1655068ae7ee375364cc550fdb0b77eca9", + "regex": "." + }, + { + "hash": "c392d21a5cb7d10c3efb91b20b7abfdbf0792969e646bb330b3e194cd71cf7a0", + "regex": "(?i)^https?\\:\\/\\/pub\\-485bc358569f45d89289e5e994300417\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "14fbd861862b1be779c5473ff88487e9c03326c8aba89a9e90fd1df6d78e0fe4", + "regex": "(?i)^https?\\:\\/\\/pub\\-bed5f7cf958b49788ac9a0d5407cdf0a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "27bbd9e8422b3c707ed33884f56bd62ca238ffaf0f3711213beac6136260584c", + "regex": "." + }, + { + "hash": "d36dd295147e604b7104f35bf014f4a7b62e23cb12cece8072e8929156dab330", + "regex": "." + }, + { + "hash": "710e7b623fdbfd232a19f1a0deedd7ffa62d1bc34567eefdaa9bfd28a49442bb", + "regex": "." + }, + { + "hash": "fbe7bbcba22088afb517c2629bf0b8f61f411651b0059defbbf6d13d804c46fc", + "regex": "(?i)^https?\\:\\/\\/pub\\-13794ce0703645d1ade640a2d75e4f48\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ef6d054b6a440c3410fe197f1119943058de007154753207c15f58e9a08a03f4", + "regex": "." + }, + { + "hash": "04c3af8a4dbfa7f4755588378b3c787196a2667b67c984ff78d473892827d5bf", + "regex": "." + }, + { + "hash": "f43b60fb76b44c709226d7b829c9fdae1ba9dc1969d41f768a7888e6ad16690f", + "regex": "." + }, + { + "hash": "92a2603c1c1bbe4f9e3bc913d6125c4838cd2a9f1435e45292349b82874ca6e6", + "regex": "." + }, + { + "hash": "d515a11a061f67294525c7f21d1f0b0cd6c0091bd54fee2cc69727ad44893998", + "regex": "." + }, + { + "hash": "e7c5981a064ed40a2fa63626683193144db54e3dfd0e0e12636cc813ab67809c", + "regex": "." + }, + { + "hash": "b4e165697dde40b1a58f2f243d0a88ff62726f4368c2237be1f9f8fa5c3b5e85", + "regex": "(?i)^https?\\:\\/\\/pub\\-5f55dcf46e2c4e018b4bf54f43757e34\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "28de770b4df4e15dcd6bc6143bde114d0864b68e7db4d7456871555273ea0da5", + "regex": "(?i)^https?\\:\\/\\/pub\\-6d85356e5b8d43089eab481ca9776c01\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8443a82343271fa80ff1a5dc8b92a7f71e5ae611cb962acd6f83fb74bf81aa58", + "regex": "." + }, + { + "hash": "09dfe2dbce7a572333344e4ecfb3e7244faa23e2256578731f723c66092dee6b", + "regex": "(?i)^https?\\:\\/\\/chirkut222\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "402356f1f276d6c3aa19a5462f5a7e95434ba5d4f02383303866dbc6d77d78ed", + "regex": "(?i)^https?\\:\\/\\/pub\\-9b9bafa493ba48a786c7283398142629\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c80e74f5ed4d27b3b4f4e90aca08d4849523e5afdb4f7fa98131dca7366416a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verification\\-case(?:\\?|$)" + }, + { + "hash": "ba51d355be0dfc77a0b22d26032e666b333e2265f13241084957964d00103177", + "regex": "(?i)^https?\\:\\/\\/uzma9214\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d0b9bda08d11bc965e627564bc1ba163033c460ab492f9fd944a39e630e5b572", + "regex": "." + }, + { + "hash": "d812305f1c1b90a79f5cf68b12ec9a14bb637496142094f596c37e019c1e949f", + "regex": "(?i)^https?\\:\\/\\/pub\\-d6c3134ba521491581120e3b36d9e1ea\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a8498cde82c06d47fb8600c8a768ffffc4fb1779c427cf97e93e3afff11bb97e", + "regex": "." + }, + { + "hash": "95ffe2df91acfed02270bd149e36e13dc826e1c679312bf13bce045a3ee1c7e4", + "regex": "(?i)^https?\\:\\/\\/pub\\-1354ec8c9897420fbdce87474aaefb25\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "803cb456c9a66ba9fa86ff2a93d49fda172b6a581bb766c95b1b51c80ca3922c", + "regex": "(?i)^https?\\:\\/\\/pub\\-71c1253bf71b491db9b5d934e0339be8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bce842d5bb039697b5ef51c7e60db1f63a6666879f6e78956aff9b9fe2d063ae", + "regex": "." + }, + { + "hash": "fd303fcac3b8c71ef36183eb26dd98a8d793486a0c417d9c4d00e289f1b7de68", + "regex": "." + }, + { + "hash": "ca6e0b0e83a67b9f701af79210c085be2bb4960c60f21559e52658471ae1ebb4", + "regex": "(?i)^https?\\:\\/\\/pub\\-a47c0ae783054f228d775a6682487ccf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "661a653fb6d248ab6cbee12d313a9650a8e4ee6da721ea95f74d0b95405422ab", + "regex": "." + }, + { + "hash": "0869ab89b1be5f8006e5037d98bebf8d09a17c8d561a0361c2bb138ff0c2d641", + "regex": "(?i)^https?\\:\\/\\/pub\\-aba7ea7d622d4e4d9b213628e5b7220e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3fca1d75569c1a25e6d7ba4081efa7f6cbee62c68428e0bf5a0a45a7ce99838f", + "regex": "." + }, + { + "hash": "91f558659c467cb9b203cf1479ba5ce6b369cf1a7161b5c7df6c527a1ff9809d", + "regex": "(?i)^https?\\:\\/\\/pub\\-d4957f2c2b6549c59212b902fd31ad01\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "494386926655fa3d67d0841f21ebb75140ee525c57b30ca538d8b1ca8ad31190", + "regex": "(?i)^https?\\:\\/\\/syednabeel123123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1c8458386003efd7c758379e759a0c18217a4878c670ef80a8e3a9f7b9f113d6", + "regex": "(?i)^https?\\:\\/\\/pub\\-4d4e206cd3f3496680855fba2f9505dc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3f73b88f7f35ddd24a9df5e72b5b6018a8f482cb9b64fecdd5d5e784bf80034d", + "regex": "(?i)^https?\\:\\/\\/pub\\-d44967aca53f4ca3ac61fe82a5135fc5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1e29fdfff31ae886e068fa9b46dd06adf288edaec7005c5c0e1978c0811b8aaa", + "regex": "." + }, + { + "hash": "437db361a948fd385e594df5ec577be35182511cb536fc11b49fd90dd82a79d9", + "regex": "(?i)^https?\\:\\/\\/pub\\-1476d8ebb1c5476b9c5d3f67ab47d895\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "be735f0e4cca197d1eacf51781682929d4df7ec5a2885648d66541274bc9f8cb", + "regex": "." + }, + { + "hash": "339092d7f5961da2d7d259733724658984ba02d8cb924cfd3d50f3a4f13987e3", + "regex": "." + }, + { + "hash": "ceeb041ae9fd7dd562cf3a8e9ae46470050060efe4e418666cbfd575705a0788", + "regex": "(?i)^https?\\:\\/\\/pub\\-c8f23b1498274344a22853705bd517a1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a9657d5e51dd542223ed0c707259677063481207eb019d980bdd2012d13d9d4a", + "regex": "(?i)^https?\\:\\/\\/pub\\-d89ac214e5f14f29ac8d34c1c299278a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e6e5cc225b34455f4d6f3b239b2fb4bb7e72f7139b20c76903725b17daa7539e", + "regex": "." + }, + { + "hash": "0fdd367fa34d90df6840c689e99c96a4dc45f80145708b6108ba4fffcfd80694", + "regex": "(?i)^https?\\:\\/\\/pub\\-36a71de04055448fb638531ae1051345\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "669249328a64abfcca0453edb38f3e700e15fa323000a0bff5efb673640d3432", + "regex": "(?i)^https?\\:\\/\\/pub\\-17a2c4011f5f475b829b407230d7a587\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2a9de7567f3b0804e8488bf6535e208be276a27d81fce4b5e723de2fbdec0fbd", + "regex": "(?i)^https?\\:\\/\\/pub\\-a54f7a799bf34f6fabf1884dc52fbd0a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c4879c612331503113fa3c243d44e8846b21e00948545621cb4af2f769d46a61", + "regex": "(?i)^https?\\:\\/\\/pub\\-c238f8f2bbb64711a6e5633d1966ec98\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6c23cd4be8d3606d41f86f0802410340d7b45ac243d50c8d2096ca5cead3346d", + "regex": "(?i)^https?\\:\\/\\/bafkreibzzgs7b35bvrvtkzn7b7hv4mbpvvgl2kemrwmypk4cguzsdadg2y\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "a31cbccb981b8f8e5dcaf567aef63da86b0b6cdb2e569aa8e31ee495297980be", + "regex": "." + }, + { + "hash": "892afe738d529852b8ec94cc2519f9b77c9e8da7c253756b8fcd6044aed7fa2c", + "regex": "(?i)^https?\\:\\/\\/pub\\-d50f4726ff054cd7b68736279643f20a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "74091c527c1d6ffc20b0e7e5f6221e6045b96c3201323dd7bec576a382a1aafd", + "regex": "(?i)^https?\\:\\/\\/pub\\-2f045fd87f6b4f6586bb5277bb12fe20\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "05a09aded2bd530321be1610f287dc2fd5e271c715eb5f24559a34c6df28d39e", + "regex": "(?i)^https?\\:\\/\\/bafkreid2tvm7qy5ypfjpagglxfob62foehqhluhesuittxghir4dcxmfjm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "d1fa3fd963dce2544c45e6189328843d3171648995f98589efa0a677ca41f6a8", + "regex": "." + }, + { + "hash": "2c806bae9ed6f5edbcf6860dd5309bc0772e4f450f77b1035db01854e8ac4c16", + "regex": "." + }, + { + "hash": "76b2380318633b797d483e43d3b9309059271474962d8be831085b2784c46897", + "regex": "." + }, + { + "hash": "1b115579d70bbad9341388bc16c4fc6fd90eff51dc0d5dba9c3323b6dc95f987", + "regex": "." + }, + { + "hash": "c3ca6ecc91dbc50556527b58053c646a77f5404abff851a981957f5498362afc", + "regex": "." + }, + { + "hash": "5854a4c70ef81ce0945992684b6c54bba61e920092c01d9f8aea401531cff234", + "regex": "." + }, + { + "hash": "ba7c814a66d98770454d1e5b766aea75b2aea27c0debec916e55d7c231025486", + "regex": "." + }, + { + "hash": "d36bba81e3990377662608e1fa60bc75193384f114ec268d0de7149a4e305765", + "regex": "(?i)^https?\\:\\/\\/sameerahmad005\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4cd35ee501a4def64b34a632c4b139e58c06296f9f4e29e40157c938490a3efe", + "regex": "(?i)^https?\\:\\/\\/pub\\-da857c9ce7f147ec9ba9fda16918459d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3f64c0a016d6d8c6777a95b316208d30a9e2e9d18ddc9bc45ffd69e147036c68", + "regex": "(?i)^https?\\:\\/\\/pub\\-a93cbcb8af9146ab94aa899fee7b3fef\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cc4e27ff4986793747880047c2929baaffa238795456b13de60e2a96f3f6c411", + "regex": "(?i)^https?\\:\\/\\/pub\\-a72ac8535b6c4364ac947fc91de36d45\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0c8ef5d4ab48309458943a561de695b432e3f5b9702a09efeecf7e8dcd563fd5", + "regex": "(?i)^https?\\:\\/\\/pub\\-12c3834cbc02478eae1d5a41806cea0b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1c0ed14dfe74dd0d78b943820d85dc7e841a53ba161a463b010b71bd3567c2b9", + "regex": "(?i)^https?\\:\\/\\/qws\\.mnbvkjh\\.dns\\-dynamic\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "66b03bda1000abe631f68c887d1a5a797f16e0b03acee9376147c661b1df16f1", + "regex": "(?i)^https?\\:\\/\\/pub\\-fcd133ddf304458b9bfd1c81c24675da\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0df469379303c51dfd0385722f104d9675f26bd3130b0fc70addb69ba259aaa9", + "regex": "(?i)^https?\\:\\/\\/anuhya29\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a309b85db8b0a06cad21db5bb4d5672b130da55cdb22d14d1be96c7da585724b", + "regex": "(?i)^https?\\:\\/\\/pub\\-619d3f236b1042bca089efb16ad08410\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8ff8c1d140273edba8a9b81e9a6f02f15d7fe90eec42356ae07c4dcef9bb31cf", + "regex": "." + }, + { + "hash": "d0ccd27ee8c33d4695c244e093d64c753097943828d4ebab914449d89ade0ec2", + "regex": "." + }, + { + "hash": "bb5f5c71e2257929fe90ac30a489356e1377803824eb540a6c44c52bf61b6672", + "regex": "." + }, + { + "hash": "4cd980d9d8e2119e761e25394e9d5b6d0a4c5d4eff7e965cd643cdc6a4ebbefd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1af7bed4f5096d601286c3c10be0fab6c46b833b76fa0b90d5c63fe26f076783", + "regex": "(?i)^https?\\:\\/\\/pub\\-cd75649f348b4fb6934781cd6555a8f9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5323962aa030ac485e40a3211856fe92a754d94d6f84b907e5abcc71a1b1cc43", + "regex": "(?i)^https?\\:\\/\\/krackhead07\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "260042aac2f9926db438a3101e45753ca9b83b47a19ad337dd7db42c2b5eefc7", + "regex": "." + }, + { + "hash": "c513e324995e1098abe9a26f47f05ddc187b58bcbeeabf297aa4c40516f71cb5", + "regex": "." + }, + { + "hash": "6a30a5d3a8c00baead4836beced43b1243f5a8936b0939c488d4e1f532268d84", + "regex": "." + }, + { + "hash": "82486a91c2fcc2eb58a0e3fda3572e908759d890b1293bff79efef4695a41a99", + "regex": "." + }, + { + "hash": "fd5b49efb532068a78a677860f7858d027d1a17491c0141602eac1201757e369", + "regex": "(?i)^https?\\:\\/\\/aarnb05\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7dda69090ae5d8c25d83412af735673ccfd18edee374384219c8d1007a7872f8", + "regex": "." + }, + { + "hash": "d4c9a9b0d4f68321b01bfc01c07ac57ab2cac3468dbb5d911285dcd2fa5fe75c", + "regex": "(?i)^https?\\:\\/\\/pub\\-fb3017ce0dc34236ae324ee7e3413d8a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c53e7f5f0afd5e325fc8b3151e08d30e3211076dc1459c2f01c004f21a837259", + "regex": "." + }, + { + "hash": "c3950c9a961086392cd1929325f5c0f1a09e6d577c56deb306356f5bc7d9efb0", + "regex": "." + }, + { + "hash": "ec9b6c181ed28f7d48b1665a10b3f1eb5b24ac792879e98de90b1f30fea8ca86", + "regex": "." + }, + { + "hash": "a96530538634a9c50ed73f36694306b6e656f83d1320638ae785e61b68186fa7", + "regex": "." + }, + { + "hash": "afc93f19a6363c7f7a701bea664cffd121b8d8587ef6f4272653ee0667ed71dc", + "regex": "." + }, + { + "hash": "b6058bbc4fe99b7c5b4946168650fe9ba7089c1197030681f25e951a658d9d24", + "regex": "." + }, + { + "hash": "663eee676774ee835fdd38b07a6eaccd28b7061e52e14b7505c34904905fb328", + "regex": "." + }, + { + "hash": "9ef803dc9ce3ae150db8ed641d63c02d486329c0e01567aa0eb9ca05e75eb17c", + "regex": "." + }, + { + "hash": "8f9ff11ba721d71a8548ebbd4bd19955dd6e4db05c5baa0f5e6b30d717ebd26d", + "regex": "." + }, + { + "hash": "47cef83f2b2ddc766a24eccf2b195a404fb2d3bdd9ebd72a8f34284a47022216", + "regex": "(?i)^https?\\:\\/\\/hackderobloxdeinstatkill\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "134e9595cc315420f1a60a57a6cb955d58abfbedd4b6ee1d0965f2c4b0f5214c", + "regex": "(?i)^https?\\:\\/\\/pub\\-f999e6985832468cba41a76c63254f25\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4f2550db1990cc10c6f9a5abdba7d718ac1115fba88e9c8d110e94da6097b1a3", + "regex": "(?i)^https?\\:\\/\\/pub\\-b71ceadb77a943aabe274226b732448a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4a7fab7f2f441891c9257ed141fec5139f52bbe1862fc78fde1b969da77e1534", + "regex": "(?i)^https?\\:\\/\\/pub\\-07734e2db4cd496985074b146ad94e22\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "72a44911763bebcd474a9206dd9d1f460d5be8739e1a570527f9f2ec683ca9d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a0a714c4aa61b08062bc9a6923ef04b542e4f6eeda1eb1c38ce479d5a2c42667", + "regex": "." + }, + { + "hash": "ec5b4781b6974d04eaa27124d110f2d6d95eea23983ba82afa2cca8d26a50dfa", + "regex": "." + }, + { + "hash": "483cc5e3eb5cab8047220d142ed75fe0253048934f41bfb820d183a76e9a7c81", + "regex": "." + }, + { + "hash": "c2c4669b9a876b8abff4032f3e26fcfbf2dc27a457cdbfe6e4452695f32fcc25", + "regex": "(?i)^https?\\:\\/\\/insta1225\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "14c2ae6815719005edc40a23daba8944ad7ff7af834476717189e269de5726bb", + "regex": "." + }, + { + "hash": "c5aedfd814214f9c701ce82c95f4b84adf241da16a341f7134ec1afd6e9f6dfa", + "regex": "." + }, + { + "hash": "5da7f45c61e7b7d3996ad9d89f99d44f7981ad87f38ad83f5ce4c617af9931d5", + "regex": "." + }, + { + "hash": "ec8d70ec6aa9b0498cfacd0034444e7ec572f436ea0f935b96d6d6cf66587fe8", + "regex": "(?i)^https?\\:\\/\\/pub\\-4768a5c939994ed2974419af3d97953d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "00334ca7036808b345d72e6aa3a41dfd12dd61bc2ec77a9ab014d0980a3959f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c21f596c87da4527ca3872ea9a8f20e25ccfbe6be15ebc322155a5d9496b8b7e", + "regex": "(?i)^https?\\:\\/\\/pub\\-5d9d826f160749c3bf99c3593fb6338f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "478d8cb0ecf3eccd59d6f13ef2a979e91c999276e037c4fdae0a211eb4767890", + "regex": "(?i)^https?\\:\\/\\/pub\\-6032ae392d27404886b29eb6e50c25de\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "916e849aa6eb717ea44bccf5035f577d3585078dcc851f05fe9390e36516df70", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2a5d99a7b1ab1b3a5137903bf1ad26d6590778e6bd14e869f34a6a8a166f7885", + "regex": "." + }, + { + "hash": "3ad8da692fb7b497df679b848a1e8c6a098f42112cb38f1dfd4efdf2fa310d7e", + "regex": "(?i)^https?\\:\\/\\/aliennetwork\\-ca314\\.firebaseapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ab9a9cf832ae86dd0d5c68d14959ced96e1d22aa61c32eee2e1a327ddfc41097", + "regex": "(?i)^https?\\:\\/\\/pub\\-9a9bcfb9db254aa98e35aa4c9738d77f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "36270e201b0b6553bfbd7527f1f7964837932e3dc5a99e4ea91d5840d31bee6b", + "regex": "." + }, + { + "hash": "92df631112547d69a324598dc3dff38cad4be0751d63c3da817f8ec024750b3b", + "regex": "." + }, + { + "hash": "6f6e3ce7816ad740694dad4b0c07751ccd78ffca7ec391009aa18333dbd03d24", + "regex": "." + }, + { + "hash": "ad1bb06f0633db8760d3d3d69a6aae5ae525fa97b9b44e3c74fd524ffda33733", + "regex": "." + }, + { + "hash": "0156bbc5f56dce60850df75a4f32e2019ed2b3acf4da94f5b9e51df3cf84db05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+attweblogin" + }, + { + "hash": "6722fd165596030e9bf8be9d8b15bfeecb79a68bafbcf3e984bcaf2d5586bd8c", + "regex": "(?i)^https?\\:\\/\\/pub\\-7c65ec43375d4d538673b34492056f24\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7590cb3758a3ee10ad24231157029c4569d31ec49b709e63709c880165741673", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0975fa9d67d1c220ed0c5e6e1cad3b9c46de98e5e8987cf16ffe9a62275973a3", + "regex": "." + }, + { + "hash": "71c66e9c85ce087c912298fd96f67f63a01c9a9e78768bf0e04d3547f1fffabc", + "regex": "." + }, + { + "hash": "e7a643a5456d200d658eb31a9db46712906ac05349625305234e3ab046172f55", + "regex": "." + }, + { + "hash": "ffbf74cecbc0e2beade1a5e84eabbb41e29530dbbcf4ea63ef44db609d416bb6", + "regex": "." + }, + { + "hash": "c73a2dd49f36c8bf68a191e2eb5e61ce1f9cd10d14a646202b5213eb8d024ad6", + "regex": "." + }, + { + "hash": "8e92c2abe199796598f9e74edd457c4bea8d254290cc6af620179de8aefa39bd", + "regex": "." + }, + { + "hash": "5fc5221d85eb67396308f19081dcb204d9f3ab2d25af9215fe2fc31c57352afa", + "regex": "." + }, + { + "hash": "b8ae8cb7a7f369213a148b0d06974d423aef7ff7d4325465209facfe484040c8", + "regex": "." + }, + { + "hash": "394302ce9d8985624cf65e36a74f44c2fc86ef768ddaa8474e538f5027003d7f", + "regex": "." + }, + { + "hash": "b47fa2d19026e5469350ba1c09644b21490629d37b675886fc9dcdbbe18d010d", + "regex": "." + }, + { + "hash": "edcc044f25455b53390b5bda5d2be1255e29f5aa2e349daff2d08d0d46b924a2", + "regex": "." + }, + { + "hash": "31e2fea13080962f1b438696ba70d556e09c4cfd6933b8418ae46100cd15431f", + "regex": "." + }, + { + "hash": "ee042e897e6134208d731658001d1d865b95ff8eb48c5d6a143acd7ca309c0e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+birthday\\-giveaway\\.zip(?:\\?|$)" + }, + { + "hash": "ee042e897e6134208d731658001d1d865b95ff8eb48c5d6a143acd7ca309c0e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+KANO\\.zip(?:\\?|$)" + }, + { + "hash": "ee042e897e6134208d731658001d1d865b95ff8eb48c5d6a143acd7ca309c0e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wages1\\%20(?:\\(|\\%28)1(?:\\)|\\%29)\\.zip(?:\\?|$)" + }, + { + "hash": "bd498dcc8e06855a4e072b09e9fad6bf034af90f1f9173e79e4ec42956f6461b", + "regex": "." + }, + { + "hash": "9771d180727c6174b2fb7092b7161b66944ba444eac42f6b2f0fad73482c2af8", + "regex": "." + }, + { + "hash": "e5b8f53b0fd7182adfe785d37407aca40892f95030aa6b0a0017aa2551e2d134", + "regex": "." + }, + { + "hash": "d5fa5e3ce0d77d19418c5bcf8c3b37870f6354626ef0639166d13df0db11c37a", + "regex": "(?i)^https?\\:\\/\\/suryagit\\-31\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a0656124ed0822f7880a7d84262dfd38aa4ef37a720e7628d39d0d9124fe78e2", + "regex": "." + }, + { + "hash": "de25eca3e72acf0d536f70a8175262df27dcd11c31ec2e70f9b00dad8a7ba813", + "regex": "." + }, + { + "hash": "ff5278299d3999f10dbcbeada51c74ad1e8b0cfbe2367afd80bbb1bb15c19260", + "regex": "(?i)^https?\\:\\/\\/pub\\-8376b5b2334844d193a525d8b8548fa5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e2cd43a33ca5f36f95566087b259c0790c3eed235d99c07eeda065d5074f6e1e", + "regex": "." + }, + { + "hash": "7f3f05ee33bd809ed1630cef3da442773a58a65cd51b0b2bbed4e4cf06403be6", + "regex": "." + }, + { + "hash": "8474d8fecfe084327796e8fbe4bccbdb3bd6f8ee19c0f78ed738257137a3c6eb", + "regex": "(?i)^https?\\:\\/\\/nikhilazad1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7720da713a4f76f4e5a7a300bf66407e45e0178dcb667273c83d8e1e90bfeebc", + "regex": "." + }, + { + "hash": "fd7513d2a79446c68401a756795575e581b1e48898446ae2871b1f0f0e554720", + "regex": "." + }, + { + "hash": "23cb5b9a14f3d7eb115fc0e5375568cb95d62aedd37d2d15e0cad9c2080e0e59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "6eae7f1c220ebabe3e35665815784b29d5c33c8089289394dbb0c31a8cfc9768", + "regex": "(?i)^https?\\:\\/\\/robloxfree221\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c76827497f002f10fb50464e2ad1d1a95640e9f6b3e47ec0407b022ed43e86f7", + "regex": "(?i)^https?\\:\\/\\/pub\\-a27a7aa3e498465db4fcfd40ad521fab\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "61e06cb57dd7a3d7be63af6b350744baaeb1b9af4cfde298adc29d89acdf5c61", + "regex": "." + }, + { + "hash": "6659be9598083845311ebf8d9d8bf2aaeb4b09eae120d80263789e72118961a2", + "regex": "." + }, + { + "hash": "20c9e5f042757a926aaeefabe7143464fa949c2b1dbcbc18796f81a516c65342", + "regex": "." + }, + { + "hash": "2233eed5ab6066ebd8f7e0ac26bf6b7aeda9e58d5df663353deeac15d56afb9c", + "regex": "." + }, + { + "hash": "c1079a2490014edbb96438d96b639be33b997bd032f0cc0d3899cf998356f057", + "regex": "(?i)^https?\\:\\/\\/anasbutt123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1df5aea118158b6f4c97f2bb6cc8fd04a99c9e8199bd04e75bfbf4c107240456", + "regex": "(?i)^https?\\:\\/\\/pub\\-9a92fad662ee4ed4b5ffd9dd336187b1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f5dfd4c8b6e2a8e3e792b27700745dd9fb7c1f1f9de48e5883eff10d48a03c7b", + "regex": "." + }, + { + "hash": "c7844c44d28e868366b0dfdf488f7c02a88853eddc7174647dc0fc2c5d0af3d5", + "regex": "." + }, + { + "hash": "abfa7bc337f8c6d566e0cf7cba193cd09f9eb78588596cb7a1d28dbf7532f0a6", + "regex": "." + }, + { + "hash": "10a1d1e5cd3b0be94bacd8e108a5fbbe91ccbb549fe14f693514e1acd5eaf93c", + "regex": "." + }, + { + "hash": "401cb0fc63ed12189d06c8c05530e4c0a188cab59cc8f804bea0aad0e6b33dc9", + "regex": "." + }, + { + "hash": "4df55a877132d50d83cca80e9aa40b7d997a8c7c2987ba77d3387f001c24e672", + "regex": "." + }, + { + "hash": "6c20e1f41a6318998a65d8366a79bf5451547e54a65235e622aa812b30ab8509", + "regex": "." + }, + { + "hash": "c046693606c31b236ee69a714123422379c5168056780e84a8596cfcac1c97f3", + "regex": "." + }, + { + "hash": "cf5a493410c2db4cd278e312d7579ceab42ec4717bed00b8443d059ef9989095", + "regex": "(?i)^https?\\:\\/\\/pub\\-1b46f93fc7594925bc7589e35614f71f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "19b83f934eb4022f2b8462356d5b804f90610aae818905cfe02d0e1457e3e3b7", + "regex": "." + }, + { + "hash": "fc5e92d8a4842bc0443754d44b5b1011e95afac6431da889c8af90aa25602dbc", + "regex": "(?i)^https?\\:\\/\\/pub\\-efdea26ddb8443859d49827f2dbee174\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "07b106035c1aebace90a11d95e808d5285212acc31e74a85556934f3bc599377", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=consulterre\\.fr$" + }, + { + "hash": "602b7a2d802b8c14e97b87948ebdbb292c39b86ee3ed77be2496bf582dd4fb94", + "regex": "(?i)^https?\\:\\/\\/pub\\-1720c56cb17a47099f25b6814b3c7b44\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "acf4960a43cc70038ef795f24b9ecda249c23db3736d194fbd028c08e862d7ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_id(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b875026b3465543b78d2b106138b1e39a6565cb092716a930537e697fb915dd0", + "regex": "(?i)^https?\\:\\/\\/pub\\-d804dadbb3884b128bb0df64d8ce83b8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c44d31440e19b455b45d97ce97663ba57dc3146b2e380da690c28a4aa45ee669", + "regex": "." + }, + { + "hash": "fa53bc927c5b67044cd8e7281566d9cb2fb46c5d1ac6a5319662e11786d3b931", + "regex": "(?i)^https?\\:\\/\\/pub\\-db2139367e1c48a9a03b78eec384acd3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a40420aeb0ff9023b09e544b86642199cf213fadd041dac97cd1cdcf4f456733", + "regex": "." + }, + { + "hash": "b992b7a9f8794d897c2e8a938ad5f2485724f6eefe826c4e938053ee5830730b", + "regex": "." + }, + { + "hash": "726a556bfbad4d13e4018b406ffe3536442e7d890da6794430b5e15ad84d4fb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+KiulSwRDmysJ0q9x5U2_VU05T8n8qFeByHQr_q2cG0q7OfzjJ5uCERAOWtjSSC808PuGYVZlgKX7CDtz5DrGHs7Kft6FqNFdtr9iP\\-eOvbH7AdYVtU0FLRqlkyxL9ZV13AVQmwS3VQxVfLG0\\-fSIOVWXURR5umT03enD\\-a44PZaOAYIWLUj5WDPZS2hnZOLi_tG_Yw1dW1WPwUNA3hC3P4Qpl7hx4DoXF4G5MghnD3M8Hsk6e\\-Wh081aPAXAMMnXn\\-Df\\-EF0HhyRIuxNaNXrkI_H1Q(?:\\?|$)" + }, + { + "hash": "28b7cf4848df7159e4e4976b37e255f9465416ac507cbff6765adc8930bbad12", + "regex": "." + }, + { + "hash": "2821da490fb3edd2ef96b9fbf51fff91d01011d2e157675486faa96d4de4d461", + "regex": "(?i)^https?\\:\\/\\/abdullah860259\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bf61defb38b8c6a3ba4029a1983c978261d72d93bf436b5509f34aff1ed9157c", + "regex": "(?i)^https?\\:\\/\\/maillboz\\.terrimaill\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "d45d1bd222629a8e17d827e6ca7f207f749522081d57a356053f444908c1b472", + "regex": "." + }, + { + "hash": "48eda386c1a99a5e356e23092b60c1cc9bb40c39c2bbc05ebfb0dbee32c62c77", + "regex": "." + }, + { + "hash": "f2ecd086fe04e804f5a88c5306672f1925f507e9e3da7434a821b3449107ecd8", + "regex": "(?i)^https?\\:\\/\\/pub\\-431e7b650e964cd7adbcb8f97d634cbf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bd4a93b7144b44c407a3d8c69db505678e891c9042c671ecd4e4e8b700613bc2", + "regex": "." + }, + { + "hash": "5c103fd112268c6b51fca50b6e3cd439e61c8727d4235262e082322ac0339b34", + "regex": "." + }, + { + "hash": "da8de9b5697de99921c4b641262fed9150756ca6886495538111c95873e292d6", + "regex": "." + }, + { + "hash": "822d14369e61629e3fd0bb961473c6d7ad089ceeb3ad9fb05fc86676754db60f", + "regex": "." + }, + { + "hash": "62b0ced08f7e6785767e3cbca03d99eac68ce93961dbf5afab807b6ddb126c97", + "regex": "(?i)^https?\\:\\/\\/tejas20032\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b55d9d044e316c8023c377c604ee49edc56a0b73b8402d83d819954611f3ef0b", + "regex": "." + }, + { + "hash": "0833b83510ff359a076fc07bcde548a6b5819e2edfe5e54047f28bd55ac5136d", + "regex": "." + }, + { + "hash": "c207de64fac7e125736e9d7b7c3f1c01eada9fdec2051199f9f79663d8315eb3", + "regex": "(?i)^https?\\:\\/\\/pub\\-2fad5153e79f4be8a7e191c0bb24936c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fa230d5d01ae4c7e451e3cf06125269f09116d9050eb029229e6f0eabfe1b1d7", + "regex": "." + }, + { + "hash": "dc89d97137bc82f4034fddda7dbe34cc94f05df297b21dc06ddd085777a079cd", + "regex": "(?i)^https?\\:\\/\\/pub\\-9ff5d234cd094a08940b20ff976ff340\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c4671595ab6ae5b5537e2444ad0e5fddf2d814c714e060de5dbc00c2b5cc551c", + "regex": "." + }, + { + "hash": "faa43435f70beac10f0ac4d1c2310ca3ad056787e6c18dffaf21433435c27884", + "regex": "." + }, + { + "hash": "c3e70347b020cf077494dbcb39e69f9ff54b687e607be1354b646c701f913326", + "regex": "." + }, + { + "hash": "73b2cced50f459446886a36b045c747f967e0315195a7cddc876764ce3966f51", + "regex": "." + }, + { + "hash": "30862eb7d98b3980c0ab5e19ace7641fef3a1e67daff3d45d7f3500622b601e1", + "regex": "(?i)^https?\\:\\/\\/pub\\-605c6a3bdb484b9098061a64ce3ae62b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "823245fbbf70c7bd65cf872807829c854ee3c76fd7b7f69b7c6c7a20dc18b3df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vopo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aab38590c4f7bcbab2a569b91492204c6bb55d7afa50f676a617f2e6aceffc6c", + "regex": "." + }, + { + "hash": "4f566f62ee8eeda5366573afdc34406a3aa0a54a0caf5a3f7d3e4640198de77d", + "regex": "(?i)^https?\\:\\/\\/milinfo\\-103640\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "97b6205c2c968cb9797194b45dba06033bad9eeff5820486f0a81e6084d93a1d", + "regex": "." + }, + { + "hash": "32b4fc2fc58f9dfe07bb32b8b4c1b8bfbc84d1249319333af0aa392e83034830", + "regex": "." + }, + { + "hash": "bde34b7fd1a45d6024955a940e4dca19d17ee3b858cd14fb514bac1f21518120", + "regex": "(?i)^https?\\:\\/\\/canhnamnuditnhau\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6eb08861674e26f6283097ffc75d3171c461c0e2416127a40e2a056d338b365c", + "regex": "(?i)^https?\\:\\/\\/canhnamnuditnhau\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6a4d4af610870c36c96973cd4b370f5211face31a73e46028cf8d65001b9a6a4", + "regex": "(?i)^https?\\:\\/\\/lladygirl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a5d6140487f3b50f3dc80ccb0f2d8c4653ed9c1c43002ab737baa1d6d2fe0d4d", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "940147b5244efbcc131af7cfdc002f0875bec95a943965774dc3a106f17588b4", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d826f337a9867e015a7a36848ae4c38422574df2077065600d8b1c1875d2f426", + "regex": "(?i)^https?\\:\\/\\/videogirllxx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "471b238da6df87b74c9e9783c212c60c8f9ab2ac79d29de3ac460ae486e54524", + "regex": "(?i)^https?\\:\\/\\/girlcuteex\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d029917d5df5ea8424cf836bf3ad2df383be1eb74e8277eeb47a0c589fa0ede2", + "regex": "(?i)^https?\\:\\/\\/lessditnhaumoinhat\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0257881fdcfd8df257ab55bac580629e673202845bd7afd9787595edd5d5c917", + "regex": "(?i)^https?\\:\\/\\/cutegirllxxy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c52a46cd85f084c5e72f1190f99dbaadd7e28d18e0b9cc29e0e988585f03c1f3", + "regex": "(?i)^https?\\:\\/\\/hotvideothailan\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2c546f10ad84cecd0ab3010960c09b60bfa39f1f5baa0162dbf47bd7e92637e7", + "regex": "." + }, + { + "hash": "f3ddf5ea56c4dc5f341942bccac1cc56dfc763cd911ca23be9e7246c0b1508fc", + "regex": "(?i)^https?\\:\\/\\/conmenobunhanho\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "aea5e5652b482e0f22b758ffc887a5c9fa6489fdcbcdd36362a737edfe244b4a", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bc6e7e335bab23aba716b295ff39543ac379d502cef773be4980ada1ea870f18", + "regex": "." + }, + { + "hash": "04c49d7b07e34dee8d2d85c311555498c824721b31de9280faaccddb00d2de59", + "regex": "(?i)^https?\\:\\/\\/inst23\\-foryou\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a48463cdeaad3e1a37d1045b80d2e4bcd771b4b2663f8e9e2a6b9f30804d2479", + "regex": "(?i)^https?\\:\\/\\/inst23\\-foryou\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1eec45f298e4052840b778d40bcead7c4019e60a762b372d333d30fb09ec3610", + "regex": "." + }, + { + "hash": "bfa80df9717f3e340d852f5c07b4e656769190daeee493d3db0cea44bdf36b63", + "regex": "." + }, + { + "hash": "b1962eeaead1a4c09bed05058222075db413538f0e68abcafa49372c4533aae8", + "regex": "." + }, + { + "hash": "15045073b98a2573024b83d20b7cc94cd2945b3e17d706be3ac9ca45f7f03385", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0a6a406ef7bd16042d9c40dbe6a9b1ed14ec6959a6409fc15d2f772a86444b14", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ef91880a314c1494d1b1ccf1baba12d9d602ade1065b75e35e49af893680a04e", + "regex": "." + }, + { + "hash": "eb546f76a199c1f27b1c8533c969b5278683d45378dc53c7d3a1ae6eb89f573a", + "regex": "." + }, + { + "hash": "c2bf1aa875cf53ac3cb690f9a221356bbe1927ca2beadec857c66a08142aac7c", + "regex": "." + }, + { + "hash": "a324669883c2bb62fd28795ad137ba80b51384eb3112726dfc212dff4b7aa517", + "regex": "." + }, + { + "hash": "249b285fd2cf5a9bd5e998b24d598829add65b6a5c2bedcf6a758917943850ef", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8e5d7381eb7bf0cd8e83a0e21a371dba5e30bdb223f4cf4320f4f1d90a09d7c4", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9b0ceec810dab2144ec581da89c86ab36d7a5be6cdcf6d3159e4760e746732f3", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4ee33f51232f8cd87c45c4f2df7551eb363fcc1de6053bc16ed675a1be490046", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "acc85f9112f46ff1e1e4e345ef49e19aea2afc64f2b5ff4fa1f1e403f18b5c11", + "regex": "." + }, + { + "hash": "595d50bdd3676038fa03cd257d0a2265ef787c86b99a4b429f60452bde255cad", + "regex": "(?i)^https?\\:\\/\\/d7s457w457\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a2394366d0711ca6f77c7f23284c66b1edabbcc898f4defbe66aa590f627a6d4", + "regex": "(?i)^https?\\:\\/\\/d7s457w457\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "47db77da09fa1111351551d561b5ec6a0f00d1ce66b4e9992de1202488799320", + "regex": "(?i)^https?\\:\\/\\/fhfdhfdgdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ebeba1762c9207c5c125f73ed98e1ba96018f08fa36938666728342dab4fa56d", + "regex": "(?i)^https?\\:\\/\\/fdffgfxcv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8ce19f642eaa1794d8437f9f1dde219ba6f2fbe1909f8e18eff5ec443a3c08fa", + "regex": "(?i)^https?\\:\\/\\/pub\\-833cb67623df48feb120089236227b06\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bb597b3290b75f56a754f4a6c1c759a9ca9969e08f49440bf68bd240fc1764a1", + "regex": "(?i)^https?\\:\\/\\/euy46ru\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "94b9c83780d9746b6aa422b89140c62231130635f6dca9bbdfe89fd3dbaab2de", + "regex": "(?i)^https?\\:\\/\\/euy46ru\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d88dc169513027c403d36044c9bcedaedf652f06c3201eefcde9f5cafc9747dd", + "regex": "." + }, + { + "hash": "87add73f69fbcbb7c6e93845136b8ab445760f4e93bb5920df63b58f52ee9aa0", + "regex": "(?i)^https?\\:\\/\\/pub\\-f41bb9d79fad47889ce23613b1fabe6a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5ecfb1221832af535fa1f194f32961922a44b5727fb9db175839a43af649fe5a", + "regex": "(?i)^https?\\:\\/\\/cumigoreng\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c955540a2cf0d52483e28b8741b69800e2e250416d4f7eae36edbf6a45cc3c1d", + "regex": "(?i)^https?\\:\\/\\/www\\.gawangberkah\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99e4cfa52acbc64caf96c9c06050172b4b5b71fc4c587ae6d9d96271c5820c34", + "regex": "(?i)^https?\\:\\/\\/www\\.memperolehpedagang\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ac5f7e6b8bd6575915e3225f4212fb95d72a76eff983c3e307164911fbd00a3d", + "regex": "." + }, + { + "hash": "38719a3c645f5bf40df5db07ddc3cf65c4d18000a7f0d5d8b8d59f066829194e", + "regex": "(?i)^https?\\:\\/\\/pub\\-05463d668d9f479086c1f19ee87411b8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a49f9f943dd85e24ddd743a673601fc7155bc742173154de54ce4641cde1f21a", + "regex": "." + }, + { + "hash": "59ec9a91ccaf17b834ed8483796750e2bad5fed5b3d9f10f02ccfe6025f61d17", + "regex": "." + }, + { + "hash": "0eaba480b8892b177d32bcdc759256b709ce45f93f826f09481a95744d74164f", + "regex": "." + }, + { + "hash": "07f44a42adfb62aa10bee70ec3e641bcf748d3f9d6ae7c8655e22cc091807511", + "regex": "." + }, + { + "hash": "71c6e3a0997b652b3a1418b8124aeed44980e2ad01c145cd8c7e1f9141dd3ede", + "regex": "(?i)^https?\\:\\/\\/pub\\-c1e894a922694cfe88b9b234f150b7b2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "41a68a8019b79041d6d46f80dc4d996ce1c94b152b36563db3b439a61d69de38", + "regex": "." + }, + { + "hash": "cbd5e52ef90223711cc94839224c65d875d5aa47912ccbd56de1c3c6ce4fcc53", + "regex": "(?i)^https?\\:\\/\\/siddharth1610\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0f1f92aec4a682ccb5d32a21adb9ec54a349cfd5696fdb349eee859b6ecf365a", + "regex": "." + }, + { + "hash": "bcd3ebda66053b8c47dcdb096bcafaaed3bbe2872f680f049f65c156ddba7a7e", + "regex": "." + }, + { + "hash": "e79b9a18e8a6679c0db3c6eeaf64c99bf64bbf9683ef2b8fd59f5e3d4bf00459", + "regex": "(?i)^https?\\:\\/\\/mnsi\\-104713\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3ceb9a4ec8504ffbf97aa58620a98502d90fb74ce7f2d4efea67504ef62fa3da", + "regex": "." + }, + { + "hash": "5a349e030cccc676013da2581f03a17935480d0738210448bfc4226e0eb4412a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "866f9850963ef1afe0a023139b4ead1485af7b0e56acaec161b11e6d6bc3f02d", + "regex": "(?i)^https?\\:\\/\\/pub\\-f81334b11f2741b1b04e92e3ac7513ab\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2d49a527913469f0b151bcc7817920f837a13e070cbf29ddc400366ce2f13416", + "regex": "." + }, + { + "hash": "f421bf25e5dde1611b07f62fc89e9e7bab620a6c6b2964e4c0862faa3a781263", + "regex": "(?i)^https?\\:\\/\\/tfujtguijyh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0dca1e848e36fdb6b4b4242c58a199484d5c6e1b6d53d67fb7db8f1d832bf056", + "regex": "(?i)^https?\\:\\/\\/tfujtguijyh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "51978299d5ca2cba4d48d98f94420946cdb60501b9e95caeb158259a2b79ca38", + "regex": "(?i)^https?\\:\\/\\/agrawalhimanshu03\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "02d20e6a4048171746d11f848fe6ea4f1ade5fe40d0bfb0412faa2832a02407f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "52348d8b3dd70bb30ed62d43ec7fce0bd2f8e2bb2fac3b6c0b82aae0f7fc7289", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5798d633427a7a6796d174f489056274dd5bfc4b8774af50f4f83d3a138a9876", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9586cddc4f2405b8822ed10123a94722dca9fb856f39a28e50a17e1c1c53b295", + "regex": "(?i)^https?\\:\\/\\/dsfvgsdegfverdswgf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a63bf03d808447a6a6a2f6e31e16fb7e078796e93820e5bbd593a04271175fce", + "regex": "." + }, + { + "hash": "c5d4c3eb16d593950928751c66e9d846ccecfa3caada3b6660a80e83f492992c", + "regex": "." + }, + { + "hash": "c6ff779a07d1185c478b88c8a9ea2a31848835867d849706b84968bb55d0f0f6", + "regex": "." + }, + { + "hash": "ed0eff7371ebb95162d902590f1f8cd326aefbd0112d694e46429a3fdf85677d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c78b4eda1a7ea8cfe25e9d85e42502ecb7e671d885770102453827914aff51cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-a1bd40e6a9754ba19dc3e894385d2982\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a710859c2ae8fd935f795a5ee1086df7f0edb66e0349d6ad5730b0686107ca3c", + "regex": "." + }, + { + "hash": "360fcab7a9c91ee8c8a352c32ee9d5c7fb6ebdcbc9b5a02af425cb423182f020", + "regex": "." + }, + { + "hash": "8f7ab808f6de83000e53844258a7a9f59822074dc6c1c49b4571c1d93697b73c", + "regex": "." + }, + { + "hash": "799a33b3b54e818e35d791a5ea7383ff3c95c5738cb648a1d1c57c1dba8df3f5", + "regex": "." + }, + { + "hash": "027344347ad665c9931f905f90a8379ac0247948d6c097c911f4d17e1acc01ba", + "regex": "(?i)^https?\\:\\/\\/germanpalencia1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b52923817e4735cccee6301c4a4a3b15df151554a6a8cb4f71a429013af7adba", + "regex": "." + }, + { + "hash": "8268fba76c46c035acafd3e0de99d1e843dedcb89737fae987b34ae2f3854c25", + "regex": "." + }, + { + "hash": "baf44d185888ba3ad8de92f679c63b3097a72dadf6a84c099ee4f2eac36feab9", + "regex": "." + }, + { + "hash": "b583ece00786d32150b046fb8bbdc85f67ebc4f252edc0df98300c3eb4f61b44", + "regex": "(?i)^https?\\:\\/\\/pub\\-5b6ea95ee109446b8970a0bdb6dc785d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "12b9620572df6be043036f5f963a5d1f534e56605cc9d2fc934a819a5c7e8cfb", + "regex": "." + }, + { + "hash": "545ad0d74ab8fe715d5cb980ea71aef2cdc9d1d0c464a4461e7857ff76f7af83", + "regex": "." + }, + { + "hash": "36289f30b5c43bf769c7f05dfdfcb0f8672fd7f08e3d500a41b843d37067a1cb", + "regex": "." + }, + { + "hash": "90cbd03d8778cfc3ddde2a6915643d593686df20438148ac9815f3e9b971f37a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "83be102efd6d4fc812736aef66b89c478f2ead753206eab2a1d7508bf02d6219", + "regex": "." + }, + { + "hash": "8e049c6d3c2480c6748bccdec0217bb3f154a683b0046cf7398556026d1c3f96", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+park[\\/\\\\]+Parking[\\/\\\\]+Parking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba518b548d1503a1260cb150a7e7134a8c5c9866aeec10e6f8305f78a098beab", + "regex": "." + }, + { + "hash": "bf0cdf201dfbc35fd176a01ba5b9f4297aeb6a494d56a46aabfcad842a25ce44", + "regex": "." + }, + { + "hash": "82881b6c7d3c5bb0f63a81c43e31164d6301858acf9962b03069a3d4efca0c0c", + "regex": "." + }, + { + "hash": "fd19c6d7e7fde5e1505075b6d68588c89eaddf19d299d0df54f023786d38293f", + "regex": "." + }, + { + "hash": "bfee9fa1cbe4885f9ef98fe9b2aa4ef3f5917bb09dd121fb1efe7ea4abf110d2", + "regex": "." + }, + { + "hash": "9ee8661035917e14042313c79d3795785ff9d35cf367ad3ed8d09681b1b01ae1", + "regex": "." + }, + { + "hash": "8ba886b0f04772c6eb5d674b4179336834c30b85431c263eb7f84ddbee2d581b", + "regex": "." + }, + { + "hash": "859337c2b78cba5f33c1fcc3bcf7e5f3047e32430cfd44f0247449fa14404adf", + "regex": "(?i)^https?\\:\\/\\/home\\-100383\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "13aa3a00fc870c3c4b7d0546cb7d2d527ba694c6a4aea894210ce212a6ea5c33", + "regex": "." + }, + { + "hash": "49fd7c62d481fbaf51675f1dcdcd531134e372d3bd0381b9e5dea5392c91a555", + "regex": "." + }, + { + "hash": "ca664e30188bb466422964b09763e38cd6a6c871baa360c18cc2ef1561b2b8d8", + "regex": "." + }, + { + "hash": "658dca37217821a85ed78ff8dc24fa341a21c9d4b1ad3e3fd00e3de5f87b3e91", + "regex": "." + }, + { + "hash": "0441c662fe0ea7ffa3288f801793767269f9be5716b6607e47857755ef92c872", + "regex": "." + }, + { + "hash": "cfc573b064797cdf01bd7c1efa55070d6753c110ea2ddd5858d2b5e1d3480df7", + "regex": "." + }, + { + "hash": "8cb88e65fe9b0a3a8727da6b9054931a50f59a5e4d5d7863e4abf46b6681b41e", + "regex": "(?i)^https?\\:\\/\\/www\\.kanomchansee\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a2251ea0d94d1ec9133d82ba66cac54c3ee0a8d83d45fd6ad3dc9ec34547d5ad", + "regex": "(?i)^https?\\:\\/\\/pub\\-fc17c95a9ac8407abefe7fcd500dd0d6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b0a5f47be0a99389fde9a8a6f877d66676838cfdf42a694e4063c811a8e9ef85", + "regex": "(?i)^https?\\:\\/\\/pub\\-48efb04d5d8d45ac93d2ddc82c78af97\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "032a2647e4c50d553df62313462ce9c0d86a46400d3dcfa21e310c3ab966af15", + "regex": "(?i)^https?\\:\\/\\/honney9\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "112bde0faa5747c060e69e8cf85af789f8691d293282fb491aac0a7595067b6c", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a631aaf3f772605e6e098f191cfd4ea35a96dd57902be00fd0a2d6867215945a", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4bf67c7b0e321a4238fc22917f7baed35e2c54886c9f5ab8109d784f8f1b4da5", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "37a72edb8a94179de16cf6fd8baca3f309bc275d75ba5860630de7f834ff5b7a", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "60f44f1a30928b064fd9780243290db887dec7557b9da5d29ec47347ce95c210", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b464c1ea94f2c06b7b339ac49940b0772a6e3eed43e15463efc026977010588f", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e02fd40a54b72422682dd27698450da9a03fdc1f15ebbfc5ae7df4234d570caf", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "42178e63622960c2c5172a7a0159870ba4e628fe5b72dc0f9a5e455c54d0c327", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c462ffeb7e09e441d5afb0f0b6111050c25a6b4c689ef80560cc5db922a221ee", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "35e06aec6303f74cb628ed34b90e121aa486d926580f63813e36d6c36c950186", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "55772eac6699b29bf653c9ea8143ac8ef03d24ae716c693e6a7cdb03cedcdcbf", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ce7b1ae51dafc967bb0abad676b519eb48ed1fef8c3b157b3908c2f4158df082", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d9828cfafe8f7f43c1da924922df9c7f1154eb730ef69db61b57299ab789a2bf", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "47712fc308393a67cb0011dd0b8f8b19474f6f9a1918c81e77fb7d38d9ca5522", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c4175e48a1fa350fa449a5e51e06382974731ba384c26aff96741b63ce4360d9", + "regex": "(?i)^https?\\:\\/\\/pub\\-7c461de1a7154ffd85bec57285371161\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "59d8144dab4e823c4d21ab4e5f395f8acbaab0cf9dac82a18cea69ab4ea361c4", + "regex": "." + }, + { + "hash": "b0d1d277c7fed5715bd03195e147c59d1c8ab624d03c7b5b31aae635396fda8d", + "regex": "(?i)^https?\\:\\/\\/pub\\-80130aea0fa94b298a398a9a6b13c917\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "76e6e1be0d2aef2eb26277d6e328a1152adf1f800d83f8001f985cdb4e95ec8c", + "regex": "(?i)^https?\\:\\/\\/pub\\-428b677088204a7f903735cebfe00ca4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5025478b4003f884beba63b79b4259c2a9b3ccf8d76b574a0efb80f9b85c94d2", + "regex": "(?i)^https?\\:\\/\\/instagram\\.com(?:\\ |\\%20|\\+)+accounts\\=login(?:\\ |\\%20|\\+)+settings\\=private\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mailmaly\\.html(?:\\?|$)" + }, + { + "hash": "a65d56d8aa02d2b15476735dc7e093b3c462a5bd5bed7c721d77547ab028f164", + "regex": "." + }, + { + "hash": "e7c6aad9f15ceaf2060938f36f2e19468fa119c4adfb8520b869384952772ee2", + "regex": "(?i)^https?\\:\\/\\/up1000k\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "84ee5ecb12e18c5203964914f64b98cbab757d1b6b8f1ad42dd0a747178db5c1", + "regex": "." + }, + { + "hash": "5025478b4003f884beba63b79b4259c2a9b3ccf8d76b574a0efb80f9b85c94d2", + "regex": "(?i)^https?\\:\\/\\/pub\\-3f1be678d6db4ca19044970525e35c34\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5cb60400381cab026b3f965cbb872e9e6701d47747bcc3b20d9e7539d2284f6d", + "regex": "(?i)^https?\\:\\/\\/subhalaxmi2000\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7e88f0b7f549de632d77c792d4c100f981893b205fafc4768c11e77b8d01cdcb", + "regex": "(?i)^https?\\:\\/\\/pub\\-65c49871e51b4665b215e1c252b05b3a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dedaf59efc6f5a15f86142ee1a684e1c3e614451461fcd48bc9b1631f253a186", + "regex": "(?i)^https?\\:\\/\\/pub\\-13552eb08e854ef99d2706299d45224b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fad731f0655d528ed807c3409f9998330aebe2c4b309aabb1a52066cf820548e", + "regex": "." + }, + { + "hash": "3ec9c4afa87d91313a0be99366c3509add6b0f2f48bcc9ceae43ebbae10572a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "e37f6e2985bd39a4a17199d3fa9fc9d72c3d5f0d477d5c01cae3214c029483a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "ebfa26005b514535ee37b4ea027831a521e854991089e1ce8fa93f2c4d3910b7", + "regex": "(?i)^https?\\:\\/\\/pub\\-4b72c5fae381419faf046fe0bfb5b641\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d98daae1af5a23795bb467e21a4f02638e19ebd1e3424478f330bd9eef6e9309", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "ea55e4aacde02349cb9a6d0793915115d1f0ef0e4e564041b9422480e19f7cb2", + "regex": "." + }, + { + "hash": "941d284ec13608c7a223d87c6a385409b6dddbadb46959b8d4eff3c331ba8284", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "39cc8abd600964d910c3fbbd30b782aacc676bd6226c1fe9b9b906fbcd2a5e9b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "56efc416f29897e6e798aa47a7f99ddf5e89d18f5dd9ad9ebb0dacf61cb2cfdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "ef759f028b4812ea1c76219eaf9e7d7bb5a572b2434221972fa0c1d15f6bfc7e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "de110efad2f6203d7be4aab5a89c1b17ebf174925342927a28434fa0af205216", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "941d284ec13608c7a223d87c6a385409b6dddbadb46959b8d4eff3c331ba8284", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "e37f6e2985bd39a4a17199d3fa9fc9d72c3d5f0d477d5c01cae3214c029483a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "de110efad2f6203d7be4aab5a89c1b17ebf174925342927a28434fa0af205216", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "7c9f299683bd3b28b61f132a9692e77518b607b88321edb2c4038335856c169f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "caad70639586d78d47dcfad8cc24a97f660ce6094b53312d3965797b2848aca2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "caad70639586d78d47dcfad8cc24a97f660ce6094b53312d3965797b2848aca2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "97a27405d314189fde5d5bd532c317234b847b5cf224e00f5578a577eb45b3c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "02c0229ae54522acfc651fbeb89c62a52ed53765a4bb6ed6572de310f0794265", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "02c0229ae54522acfc651fbeb89c62a52ed53765a4bb6ed6572de310f0794265", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "97a27405d314189fde5d5bd532c317234b847b5cf224e00f5578a577eb45b3c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "d98daae1af5a23795bb467e21a4f02638e19ebd1e3424478f330bd9eef6e9309", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "7c9f299683bd3b28b61f132a9692e77518b607b88321edb2c4038335856c169f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+events\\@ldas\\.org\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+events\\@ldas\\.org\\.uk$" + }, + { + "hash": "ef759f028b4812ea1c76219eaf9e7d7bb5a572b2434221972fa0c1d15f6bfc7e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ez1o5rv\\?campaign\\=Footer\\%20Banner\\&adgroup\\=Global\\&creative\\=V1\\&redirect\\=https\\:[\\/\\\\]+zlotterdigital\\.co\\.za[\\/\\\\]+iytry[\\/\\\\]+uftyuikl[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)8(?:\\)|\\%29)[\\/\\\\]+sf_rand_string_mixed(?:\\(|\\%28)6(?:\\)|\\%29)[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk\\=[\\/\\\\]+\\.filepage[\\/\\\\]+vivi[\\/\\\\]+musician1718953961601\\@2bconsultancy\\.co\\.uk$" + }, + { + "hash": "0e4208a85f79c8223e1f7e295761fe5a80e7a44132fa9950dcce847c48461c54", + "regex": "(?i)^https?\\:\\/\\/pub\\-ea929547be3b4be7a98527cecb3be349\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e0eb287ac190f970a786f1bac14b212e1582dbaec39eb62aeab82dd7049dd", + "regex": "(?i)^https?\\:\\/\\/pub\\-f8f4783bb0714b0cbee37bcc5fcd51bd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "22b9b867263408c6279f8d1cdd388f6070fb09a6f239fdcb2b9c82710401c86d", + "regex": "." + }, + { + "hash": "37bf9d7633e20924743a070bd3ac43d16b7c1b9082ba24495ef8d844b8ced92d", + "regex": "(?i)^https?\\:\\/\\/pub\\-876ef0e9ba4844a1ba280a9fc9af955b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "58b2d1a04c025f6dd5db8e86a027af56ee554e0852785cca062823a344856ee8", + "regex": "(?i)^https?\\:\\/\\/pub\\-4f32dda5326a4e15929f4046c2eafe10\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9501a3892b573f7da97eae6340ccbc27bc3d3f10efb44bae17c26f7fb23efd66", + "regex": "." + }, + { + "hash": "966bd14f803545bd277533b81968e830a160a45b6a34b1799d516635e8b4e6f4", + "regex": "." + }, + { + "hash": "daba3b63891cde023c23e83e5be38b743ffbc98c8200c38a5ea17256aacef334", + "regex": "." + }, + { + "hash": "1fbc9930773d3016909ad3b61baa5694331268beeb9087d6b2d74b4aff84ca7f", + "regex": "(?i)^https?\\:\\/\\/deepak052\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "dd477b3f147fe3709d83eab9c03ed027a2632092a5ac615b58c875a113db0399", + "regex": "." + }, + { + "hash": "83fa2a468456bfd7112ad5779507b0577faa72906790acca4c903332ad642213", + "regex": "(?i)^https?\\:\\/\\/instagram\\.com(?:\\ |\\%20|\\+)+accounts\\=login(?:\\ |\\%20|\\+)+settings\\=private\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netmailx\\.html(?:\\?|$)" + }, + { + "hash": "94b9bb3b42057ba4e97f2718dd70f5d943af02bceb502453bf4be38cd3877c04", + "regex": "(?i)^https?\\:\\/\\/pub\\-e81df47df65b43e98ff96542b71519ef\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a1d538f838c2a3d26af578d1afd68b6578af957d6a44dabf9dfae3dc95283922", + "regex": "." + }, + { + "hash": "4cd989f7e9dfaa72134468ee6ae6ede6374baf0193aa0c637710663e63020400", + "regex": "(?i)^https?\\:\\/\\/jayasr04\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c945fc67a8167cc92ebb6bc95de6617d69f497a7b7314aa75daf3109caaa510f", + "regex": "." + }, + { + "hash": "6c5049350290770073afcf30421bbc6868212928f52978b2b20aa28d80fae903", + "regex": "(?i)^https?\\:\\/\\/pub\\-565a23beb28f44f5bbc6bc92c5cf97ad\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cfc966f1740c8a030b364509ec7e77a10329585b1bbe4bd30c26a5075cc07c9e", + "regex": "." + }, + { + "hash": "b76b91360ab7d50e447d45c3943a2753ed6495b83c3c845e39cefdf461a451d3", + "regex": "." + }, + { + "hash": "99bace6352825f8e433e47e5c053bf9983b859d350a2a4d7f34e205db9256a3f", + "regex": "." + }, + { + "hash": "46e8ceb55d4e8b22390c6e213243f24300304a134fc8b4ca2e4e244ea2c46869", + "regex": "." + }, + { + "hash": "a9db2b506d76933bcbc0ae89c1e7d66e0700204d41afd6cd593f1b6e9730c97c", + "regex": "(?i)^https?\\:\\/\\/sau1606\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0c5d9e67b6ae4307b3a4eebfec766988cedffb11086102bf215b17ea0059ce0c", + "regex": "." + }, + { + "hash": "9d651e88f0f69370f8e14d981bac83eed81c4ee8fb937256033e9100fa7b09d6", + "regex": "(?i)^https?\\:\\/\\/www.facebook.com%40outlook.com%40office.com%40appleid.apple.com%40outlook.com%40office.com%40appleid.apple.com%40outlook.com%40office.com%40appleid.apple.com%40outlook.com%40office.com%40appleid.apple.com%40outlook.com%40office.com%40appleid.apple.com%40outlook.com%40office.com%40appleid.apple.com%40outlook.com%40office.com%40appleid.apple.com%40outlook.com%40office.com%40appleid.apple.com%40outlook.com%40office.com%40appleid.apple.com@([\\w\\-\\.]*\\.)?r2\\.dev(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "a37478271a2715a7cb8f5f117259cdc705368bd7a3f843763ff36d4a6ce7fd83", + "regex": "." + }, + { + "hash": "687dc05f41123eb24e756c3649d8358ec39d1d89c8fb124c1e57b5685cd7864d", + "regex": "(?i)^https?\\:\\/\\/videotron\\-webmail\\-103309\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1ad687ca652531d505a6d21cee687e4fdb5af6a194b3140b544b0e4d6dce127b", + "regex": "." + }, + { + "hash": "a63b167838b2638b6c4946b3450e64a33468d4f4e700a7af06b2b051d4bafb7b", + "regex": "." + }, + { + "hash": "10ea4b262b09efa70d15bf2f465fef3d8188468a89faddd0543fa778237c5e66", + "regex": "." + }, + { + "hash": "4917f6c0668ca9e53b45acac26cb0f19cbe2eb91509bcc4f902b9251ae0b09e7", + "regex": "." + }, + { + "hash": "82f4eabef1cdc1bfaba0adf642be8c7d645c21b872081f59c8d94f2cb87cbf97", + "regex": "(?i)^https?\\:\\/\\/pub\\-b84b406419394806b1a172fa7e499621\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "39cc40a5f749b25ce0c51f10f3a6aa6c81cdaddcc87240e6b0375eed2a10819c", + "regex": "." + }, + { + "hash": "ba1893b16b4e83290f7d4b2161e786ca7703ea8ddf390c1f76eddd7b18d59e5b", + "regex": "." + }, + { + "hash": "357acc92dec4f21248e6649c7acdef1c5d0294d856fd6a651a4654f7a7cef629", + "regex": "." + }, + { + "hash": "a465b5cdaca5fb667e6c2efdc7aaa45a430f832d91713795c59b9353f4cf7cb1", + "regex": "(?i)^https?\\:\\/\\/instagram\\.com(?:\\ |\\%20|\\+)+accounts\\=login(?:\\ |\\%20|\\+)+settings\\=private\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dumaxm\\.html(?:\\?|$)" + }, + { + "hash": "71dff347822347f7221839e7f1f0bbe8658b51778cfe736a666a12aaac75bb5b", + "regex": "." + }, + { + "hash": "b45c403d39fa019c051835eb31447c2b826592333a05cef091e2b341274073a3", + "regex": "(?i)^https?\\:\\/\\/pub\\-8a9f597ce5f14175b8c166c8db8e71c1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f71c2493ae61361948054b1a5355b574fbda26923f83bdf2a652b54e08385d91", + "regex": "." + }, + { + "hash": "9d3072c4b8c255b423d8908a9df8b06ffcbf64ffb4b75a9bf27c9aeefacaca71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+smc\\.html(?:\\?|$)" + }, + { + "hash": "d4423a1fcd227913f82ede8134327dccafe1ff5edae840369bbf3413cb96731b", + "regex": "(?i)^https?\\:\\/\\/pub\\-838fbb588f1e45e38bcd94875f27e399\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "381296e9d01726bc5af430639814a4318d565b8a4b5fab511337a35aeb8f068f", + "regex": "." + }, + { + "hash": "83fa2a468456bfd7112ad5779507b0577faa72906790acca4c903332ad642213", + "regex": "(?i)^https?\\:\\/\\/pub\\-66a294cb50c5404a981f7bab4ddc99a0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ae3c1a5004d465ac38d584229fe1355a3e7a83495eb3690a4dd7a86704250f37", + "regex": "." + }, + { + "hash": "46e21b13c4a00d301a6dac281d2d996ea06f43d670742be836da93343358110e", + "regex": "(?i)^https?\\:\\/\\/bafybeieti5rueu6ms66au5urksxdoebga646tm3vwag5pohqpbjdor4rgy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "794c6df99c117994f1f2ac072dd72f22c7c0f0e78137daea4596648daaa12ef9", + "regex": "." + }, + { + "hash": "4c7c40f12d4af755baeb4a2def35c500e302d6a1258e11f8b4bc52ce488ba9fe", + "regex": "." + }, + { + "hash": "0ffeb073152421d8452396ba9cf85aaa38b2cd76141d2d863778e9133d6e074c", + "regex": "(?i)^https?\\:\\/\\/pub\\-7ac8d573b24e4332907420aa586cfa06\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "13a2586d7aeee66ce31a6e9c74fc80ebf775f73de0ca87358191705cff48ac87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1[\\/\\\\]+1[\\/\\\\]+new[\\/\\\\]+mail[\\/\\\\]+task\\=login\\.php" + }, + { + "hash": "260e381e81c8c967581ff70bf4aa8df7bf078d8b7b2042880e318521ee9b6de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2539186[\\/\\\\]+100820351[\\/\\\\]+298130[\\/\\\\]+5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "260e381e81c8c967581ff70bf4aa8df7bf078d8b7b2042880e318521ee9b6de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2539186[\\/\\\\]+100820351[\\/\\\\]+298130[\\/\\\\]+6(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84a33b052dfbd20533de43870b20a87f672e4d86b5f96809a68619e298e65354", + "regex": "." + }, + { + "hash": "56a56cdb9f95ba190c5f88d782f27da40c73be03af53fe60d895b2b88b593dbd", + "regex": "." + }, + { + "hash": "440c48b2e279b682fb12c7224066e41825b4a1beafd9db7db6da3b8eefdf759a", + "regex": "(?i)^https?\\:\\/\\/1q1q112\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "78477dc1521756fa85a3a05efe3b42cb4a00f5a6f032a0ddebdbdd2546ca05ae", + "regex": "." + }, + { + "hash": "c3ca775444c3db78cca42a6dd815a5c97c02fe5978d23dd9a20c13e95801a03a", + "regex": "." + }, + { + "hash": "6f7add1e74a867ace2567d2e60dd637bac9cd098b1dd4871d95fcd6aff09ea36", + "regex": "." + }, + { + "hash": "7e417073e4c2e91b37ba2eb93f453409343133498db6738dfe653686f8c6fa8d", + "regex": "." + }, + { + "hash": "8465db2e9036d2854b373b0518317dff2b01b590ef0e8cb6803140541b5a0976", + "regex": "." + }, + { + "hash": "7a85d3fd272a65372c47d398690cc84edd479bcbab28eadcfa5fcb33c357a5de", + "regex": "." + }, + { + "hash": "5bd9a07fdbed622c0fccccbb0364887b4211561b98dc9f92df591de90ae94fd9", + "regex": "." + }, + { + "hash": "56e5e6214751eddaed742f7e701d71d79c14db5a01ed2e4db4e2b03f6d3a4316", + "regex": "." + }, + { + "hash": "2847ed32ff2e486adf1b80346803e7ae7b3f346f00886c2fcb36f3965a0aec0f", + "regex": "." + }, + { + "hash": "280d2a77e285c1e44f69acfd39104d634975587d61c0fff54486fb42b20b9d15", + "regex": "." + }, + { + "hash": "9be9a9ad5cee9994e3215b743a18e17cc301cb6b7ef8f98af4476a46cbb38c40", + "regex": "." + }, + { + "hash": "c22dafe1be0c79e924541c31782cfe2ace5319949b8a9475a7065ebf5332cd15", + "regex": "(?i)^https?\\:\\/\\/totdacau\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8531c77865603647ab3f84832df3c6951520a687110b5e848002952df4084c18", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ja\\-JP(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "667b1260a707d661f79a5ed29fe0964f45fb04d1f570e34f58255a04866f68d2", + "regex": "(?i)^https?\\:\\/\\/pub\\-82eef713c9424eb38ca703b943fadf0c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b274c9b659851000db068376aba66a6860748d176ac2da6e6883a517c342a5d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fantium\\-faq[\\/\\\\]+account\\-setup" + }, + { + "hash": "7178f29123742e2980c467397b4d3aa43eb9d62c6e53b985cd8e942fe64e89cd", + "regex": "(?i)^https?\\:\\/\\/manas967\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5ed2b5b5265de52ce271e3af43445690296d065417ade8d9c1d8d00bde53afac", + "regex": "(?i)^https?\\:\\/\\/cookfasr702\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ad159b6c4c6ff6bf929198c0d9ee64b6708a686f7e6d8e109cbeead7d7d5977d", + "regex": "(?i)^https?\\:\\/\\/www\\.k15\\.app(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "efa4013e161d8114900fbd0ad951747f4aa02f680fb443a955890e3f798fe609", + "regex": "." + }, + { + "hash": "cba3a781bfbc493c32d9f8acb559ed1b1fe6f5b94bf1e6856767d7edd66c008e", + "regex": "." + }, + { + "hash": "0fde9e7819cf232df00b56ef9c40cbe3d95d99264cae46a4e8aba20262162e26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aa\\.html" + }, + { + "hash": "3c2017ebe36acb60708efec89a7a60fe7479710d641a9cca2a55f5e383b76133", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lv\\.html" + }, + { + "hash": "e3cd837ce7b7ff9ab01056390a35a1468eb1475f02d170d573a99e6bfd1bf48f", + "regex": "." + }, + { + "hash": "0871c08843f372e43b3a21f1e821e64ed14fc72f9e0fc5d16801151071609841", + "regex": "." + }, + { + "hash": "dd7e63feaa00456903ecad842f902dd400c6c30adeba7d32ae1747a917bf9a9d", + "regex": "." + }, + { + "hash": "125efff57e1308c36dabe3af8a19cc81a6d77622195710794edb83dd4c649058", + "regex": "." + }, + { + "hash": "a553511c2710c03984e87d9f155b49ae6a461831702346336489ba6b923e9a7f", + "regex": "." + }, + { + "hash": "d250bf7b88d7e4569a62a529f5839e350c8dc3f1c0123eee706133614928d16e", + "regex": "." + }, + { + "hash": "550ffabe74a1419a2c779dbbb9ccb6aad21f69439e38f34547dd207d38de4427", + "regex": "." + }, + { + "hash": "f7e0db3c9f5c9cbe47a1cf2165b7a2a6773e141695326cc1a2702c9c897c2983", + "regex": "." + }, + { + "hash": "96b6b9e191aab9d899cd9e54ce654d9f26b63e83085df33dfcfcd34b0f49ec53", + "regex": "." + }, + { + "hash": "6a482fb6b2d22de6a9bbdc939a3e9a2d5744d37cfd16f9aceee9c294527e591b", + "regex": "." + }, + { + "hash": "1985ede9c32d5eac167fe38f138f0e24758fd0c79e354ba7f2233338783ca0d8", + "regex": "." + }, + { + "hash": "3b9a0fa5adc168369645e34ef7207def43092f2a91236a2fdd32bc8f8f69abbc", + "regex": "." + }, + { + "hash": "94a961697068f030591bdf9bef8b32488783f189d541eb22ee5a38f12ed7e8be", + "regex": "." + }, + { + "hash": "4da08b68ce1ffa88ac36db2a59c1239a9b0d44171ce114acadbb7604871a6696", + "regex": "." + }, + { + "hash": "63758560b6262c79ff489f20aa6ccee7d49b8aa699b233fa1f27e1c8cf9fcc39", + "regex": "." + }, + { + "hash": "c1beb95069dffc2f7ff25200066c2a6bf04f93ffded08dbc6ffcdf496f48a432", + "regex": "." + }, + { + "hash": "32035304248f27e044bfd5b73daa1a6706dc8c953e1f859484fca5ed527f8984", + "regex": "(?i)^https?\\:\\/\\/karim2\\.ztycnqwd\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e199d2e494e8203fb4c02b5dd05a1997fc799052016ffff5ce2f308b14025630", + "regex": "." + }, + { + "hash": "3d904efa527d4f50ffca8b278bb5572f62e351f9a8b0370e67b700bae8ad220e", + "regex": "." + }, + { + "hash": "7bf60862e5d29ea050fb3f8d3673324107f552e2d9488010cb92fb3da460ec82", + "regex": "." + }, + { + "hash": "adf6a57d01b4499c326aabf9082f3d575b0ba0e90266554dc564b6120e77a1ea", + "regex": "." + }, + { + "hash": "e3f71791e06bba0480619a33a7668dbf105341ba8180da2ce05b35cbf4710d87", + "regex": "(?i)^https?\\:\\/\\/www\\.mantapsbotop\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b1c53750feb839077f25ca9fe498ec9c54257da84a7e4e0ba52f444aa4410660", + "regex": "(?i)^https?\\:\\/\\/bongvui247\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b74ea227eb1cdf22917639992a8a5be9a5420233692db266180e8f2766468b49", + "regex": "." + }, + { + "hash": "c99a0e9ae62d065250860472ac6bce21444131641d6e00c54f84a30e774ffdf5", + "regex": "." + }, + { + "hash": "2561318788b67a0f338a044f7f64ef1c3757fa255c3bc42a30ed15c387222db2", + "regex": "." + }, + { + "hash": "8a2f6bf7906796b67431bd96755066a3ad2a237dd1b1964d420dd39b6ed81fb6", + "regex": "." + }, + { + "hash": "dff4a416fe3953ec8fef625f017a2c3621b2c56dcef2d6e7da509c7e27c789ea", + "regex": "." + }, + { + "hash": "3225ee613a94505d9d42f97f27c9ba59cd840625e4a55de65da5d2684fc5fd46", + "regex": "." + }, + { + "hash": "7d1b0f1d0380d445956ea319243daf179d16971f9eca3f23231d25ad74d84df4", + "regex": "(?i)^https?\\:\\/\\/amansuryavanshi01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "52f6c18d8f0df626d9e5af85b5bb56b0864ce722070a2d750cffac0385155492", + "regex": "." + }, + { + "hash": "7d1f263bc18f5bc17ceb6f3823e64fc750365b5e8883462162cd8e929e9767fc", + "regex": "." + }, + { + "hash": "13a269a3d8417e57d5eff6a4ddd9fc3eca1f54fcaa7763b2c064a0a1364c8252", + "regex": "(?i)^https?\\:\\/\\/gopeshsharma1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3930be94fd3bd6dc8b47b08d6a3f1bc405186b3b055c690d234ead3d72472b15", + "regex": "." + }, + { + "hash": "0cee4f12244523711b3f175263d6aeb8ab5416c0805db78fd9700bb473a69380", + "regex": "." + }, + { + "hash": "852ed41ff53bfc744a49b1770a82af5060316de67c1b6c685ab9eb359648baf7", + "regex": "." + }, + { + "hash": "3714d00e5020a26f72314c23cdea26d79c1dd3307deb62ad2c770b615b46918d", + "regex": "(?i)^https?\\:\\/\\/www\\.sbotopberkah\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a2e5910eb753e00fa01af8a8548ab05e00e4628410d4d2228a9ed04ff257cce9", + "regex": "(?i)^https?\\:\\/\\/pub\\-837feb63810b47e3af23da448dedd1c5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "de25ac30f42e8dbbc782e801b73bf1698bed8c1b0841b4607dccc6fa06ed45c7", + "regex": "(?i)^https?\\:\\/\\/smruti4545\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "31d4bbc7e4db5f3c13f9bf988274c5811e79906a7cf64fbb6878cafb03e3bd2c", + "regex": "." + }, + { + "hash": "c6414ac25a938910ff1f47bbbfb9f77f1fb9048cc371f1cea80104ee4ad1dc78", + "regex": "." + }, + { + "hash": "73f9fdae0a594166efed73d3258496398855704d453ffc3da0c72392429877e3", + "regex": "." + }, + { + "hash": "702a63fde940f34630c32c73e74eaa3fa7073712f841c58a33ee5941d0c1ff46", + "regex": "(?i)^https?\\:\\/\\/abdulwaqas17\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f62f53ada1a996639129d02a3e850ec35fdcf31a9aab829073947c63175dc172", + "regex": "(?i)^https?\\:\\/\\/sleek2395\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "dd77d6f10a5b7953dc59850b5bf14c4ecb1f738cb830b3ed3fd4b2300da05994", + "regex": "." + }, + { + "hash": "490c1b020a068aa0407b267f5965f05a7af6b5ee2011fe5f14002d4524f27e44", + "regex": "." + }, + { + "hash": "22ed3590337a0094cbbdacd42d232f7b68d83b48a94054e0674a531332bb57df", + "regex": "." + }, + { + "hash": "35245e46f8d05afdb762aaf198c7f736696e02cffaa490464e03fc5342012fad", + "regex": "." + }, + { + "hash": "05e5780deb0f6819a99cd9d4f4224f21a504e29c0d5f0670b82e6793b9b62afb", + "regex": "(?i)^https?\\:\\/\\/pub\\-6f23d9b1a20144a2a244dd357d87a5ea\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5a31e78499896bca2026ef98019ce0713c6d06efe54e17fce7befff75d4a0866", + "regex": "." + }, + { + "hash": "5b5d7a90123dc9ac8e575d3fad24db7aa9fe55f88a5913763494906a62786914", + "regex": "(?i)^https?\\:\\/\\/pub\\-b1b5a9fcaabf4bd0872d36ff7b1dffa9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6a803483be69ec341d45ef945f85d3c9e5e28b77e00efd62060eb7f827a11a8e", + "regex": "." + }, + { + "hash": "2639d2ffa1ef1399024f76d3f6dd623333b222889fcbacd2586d7fa651633edb", + "regex": "." + }, + { + "hash": "1a8381ae3b12e6e45dc4395704467327e9b1126fb7636a8c025a4ac22e38e047", + "regex": "(?i)^https?\\:\\/\\/abdwebdeveloper14\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "451aa6708225ea8eaa4af33991282128e379b42344dde2084ba88b86ceeb1840", + "regex": "(?i)^https?\\:\\/\\/steephan2003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "aefe2562571bfa0f7de3431eb23dd8f5fe4fb9704fe29d70b218debc3f6b359c", + "regex": "(?i)^https?\\:\\/\\/pub\\-96c79f0345b64cb0b52868ee83d279e0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6aa81a2b8ee852b15e6bb4c01cc5e24b2aad4468271af7cb21a5a809dc668592", + "regex": "." + }, + { + "hash": "4f2b5a6f697e8bba523148a5ff1672896e760be2b0ae805d565a0f18ac2c1ffa", + "regex": "." + }, + { + "hash": "7363d2ca3f106ead186c71b9f6932046d3fc3f00fc914e80a2a0899a3407273b", + "regex": "." + }, + { + "hash": "1f21e78a052f77f451f16c4ede0c902467d3f7254f43f551710bedf401e45929", + "regex": "(?i)^https?\\:\\/\\/pub\\-3164b2cf2a27434e9a76f3144859b86b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2f1c327642ecb4d8b244d629b0615a4d60f72eea5297cd19007be4aeb9634330", + "regex": "(?i)^https?\\:\\/\\/lasopalogic137\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d933c727626ebd4cc117079ade03f743d126ce630d324b74ca0a5eca3c17a3f6", + "regex": "." + }, + { + "hash": "2317ec820025ac9d8dbac6c01431b3f9392be868c0ac192fcbd122d1a37383ab", + "regex": "(?i)^https?\\:\\/\\/jayantanand24\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bfc70b4a08ed0e53d1f8a38824393f497fa57169b220fc8d0255a589322c989d", + "regex": "." + }, + { + "hash": "5b6d2b3f9631c31b72449b7fd2f382db77a2976565d38b3ad240332b5866ba6c", + "regex": "." + }, + { + "hash": "17983ca5696a627d22e418965c0b1527ed156ed6596e398bbcaaa1d5b897e1ba", + "regex": "(?i)^https?\\:\\/\\/ayaz\\-alam2001\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4f76367a995a348bf6d8102910d18814ea130330b069b595ad4e7fcb62934b8f", + "regex": "(?i)^https?\\:\\/\\/pub\\-11531646b8cb4b1b93a847e0a5c8ef38\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b35e4465e7f696d21eb3d06c373c53ea379789866369e166a80b2578732cc990", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+connect[\\/\\\\]+wc\\.html(?:\\?|$)" + }, + { + "hash": "6aa2098f05e558fc839b0d1a79c9cab2c54ea34a10bf1f3c2314d7f523ec1ffa", + "regex": "(?i)^https?\\:\\/\\/deepak\\-077\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "42e83635cbe7eeea7568d71e47e726ef0f4f529cc1e6b27d496b049b61baa48f", + "regex": "." + }, + { + "hash": "2a78bb382bb7954257ed9e4b7178bff5ee120018352563c58857c7320aa123cd", + "regex": "(?i)^https?\\:\\/\\/pub\\-a3a0ba3c470d4ef8ba8492ef0f90d27f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5272acdbd27ed5a57b18977c558c269f1944c0de90b1ffdf3b421a8e60f95280", + "regex": "." + }, + { + "hash": "96d2e8e07f2a4e3b99b0843e75eb55581033e043cdd58ed08379f2b9873b7f18", + "regex": "." + }, + { + "hash": "5c5cae2888b03e1ad5386c87282e836c059607db54edbac437154f7d034242c7", + "regex": "." + }, + { + "hash": "85d9b63a67febfd539913dabe25d24d440bfa9f745a25b7f923c4981e504d1df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hosting\\-glossary[\\/\\\\]+enom\\-domain\\-name\\-reseller\\-account" + }, + { + "hash": "757c44f172aea92df4458b847a43c0e3b2db90d839444845dede8220d57a87a1", + "regex": "(?i)^https?\\:\\/\\/rewardsxfini\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7f4368ddabd39c9d9f5bd2dd000def54dee1831c41d8c8937c8210c3f85220f2", + "regex": "." + }, + { + "hash": "80a86b3f6193a997ad3794304fe341681b61a3c583607bd5b3fe7141b63a901b", + "regex": "." + }, + { + "hash": "e158676df1ed2be2154eef8a9b045aa980aed5d81bcf208cc6553eb410bd40bf", + "regex": "." + }, + { + "hash": "13a2379c26cca1839e27f169e7dda4bbc59326b5c21cea1428ca7a8d2ee0fc53", + "regex": "(?i)^https?\\:\\/\\/pratyakshgupta887qwert\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6afa3bae6061dc648464898786458bea375c4ab3b2a40c1b822202b8b1f90032", + "regex": "." + }, + { + "hash": "7a0c0ca1a96e3f93d6b2439e4cada23d6277ad74059742ba2f828591896d4ad8", + "regex": "(?i)^https?\\:\\/\\/www\\.opsa365\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b974aae4ce43af596ee82bb2c8ab6297e824bf72df8549d0bc3e1703d8cc9862", + "regex": "(?i)^https?\\:\\/\\/funny\\-villani\\.70\\-35\\-207\\-19\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "45d6681ea5dbdefdb2c63da6edac052027529acf6564d0c25eba50a6fc0e350f", + "regex": "." + }, + { + "hash": "4991e1a9492d354779e77c78675567f9d18a203e620216b6700bc7f9c6968055", + "regex": "(?i)^https?\\:\\/\\/theceremonyofalltime2\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d6317781f92fba6ce387dc15a320d90607f1a94d0fb2b1f5021b63d373075280", + "regex": "." + }, + { + "hash": "b23f0feaa81fdb6fe45dc1d9fc44f6112b126ebcebba1c88256f2ac18ea09f34", + "regex": "." + }, + { + "hash": "4917bc3ae1517a892b82ae99c235607dd9521f1346d7ebd357bafe95e6d365bd", + "regex": "(?i)^https?\\:\\/\\/robloxwwe2k18codes\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3392a45c18f314882abdfc095af3b4e3e9aa339985ec45b6c0b1f7b335fb5510", + "regex": "." + }, + { + "hash": "bc39a9ffa9e991da67b241a860938af2beef5157936edbbf48e0d90db8307c55", + "regex": "." + }, + { + "hash": "af7d30ccd419f0195d84e54770e6c606205f723d68326d2d91fc98c2635ec9ab", + "regex": "." + }, + { + "hash": "702d42d14687f76e705b38d75f66d98682f879862546c28dfb570888d1da0c41", + "regex": "." + }, + { + "hash": "c7fa8ec38a7f9aef8c9820ffd0ad812bc20e67914bba866e2ca5cf7f07952f69", + "regex": "." + }, + { + "hash": "4f431f96f5c92ce9f01dfe258dd92a087e5d3707af9813a106a66dd85dc8ebf2", + "regex": "(?i)^https?\\:\\/\\/pub\\-f743e1beb9384ce9b890ef05935e2990\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "64d19cf979113c1013936554a0d4e85d3e2e30eb4a7a372dff087f1656ca49b3", + "regex": "(?i)^https?\\:\\/\\/rafiansari\\-26\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ac8b0be8a22d4441669d55e6db48a82e1ea856aba67893baebed5b8a43107ec1", + "regex": "(?i)^https?\\:\\/\\/pub\\-86c314d66a0f43abb1de2b635547ac18\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e749cf583b6aa01be7ba51358bb602f06df93a38e6063f59bad6bf8fb7eea61e", + "regex": "(?i)^https?\\:\\/\\/mansipandey0301\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ce93e39803bebf40f8403aecf7abafa2307c053154c0963bfece0a09e721c81a", + "regex": "(?i)^https?\\:\\/\\/updatetime\\-102538\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "24932312c93a07cde02d7bb53424977d5de5714b4b6f459fd64abad86480a733", + "regex": "(?i)^https?\\:\\/\\/pub\\-3f5ab48895c24da0a385e1fd2261ab43\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dca8471fd044d6a8ec4437501d2a215910c0ff3766131abee3b50682fbba681b", + "regex": "(?i)^https?\\:\\/\\/pub\\-99b423aca4af47fcaf2eea352a1c5afb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9a00d8c25d05dec7d2fe481a514b7a2baca5ff45193529122d611b2dc33f8c68", + "regex": "(?i)^https?\\:\\/\\/pub\\-cd0bac01771b4d378a7f68e9add9e293\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3a71b9358f07dbe1a270d1eccd4adf7a38b48efdfd3734bbf7946b68a5b38f87", + "regex": "." + }, + { + "hash": "56609e282fc21cde20f2bd3c5473d1c2a17afb23ba7f1dba1d29f3a3fdb268f8", + "regex": "." + }, + { + "hash": "e20f3e5fcae2fac8d72c0f09bef2f20d801e275a1824166505529251ddcaeab2", + "regex": "(?i)^https?\\:\\/\\/hassan\\-shahid12345\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e771855e91cf2e2be6470b26205240398ff746806a8bafe3fc499a6a1c8ae148", + "regex": "." + }, + { + "hash": "a3c84c2f530e38ff025ef5f40956135e9aaa6e86d4db14194317127eb82e56d0", + "regex": "(?i)^https?\\:\\/\\/metr0\\-paper\\-fax360\\.inf03801\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "33c5c66db5045c494a872068e6df447809feff0b523402fceab3e9ad73c64be5", + "regex": "(?i)^https?\\:\\/\\/yatree468\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4f0ddd144d6e92fef9eb832442575cf219c9eede4733bee4c23dc9ce7a1699b0", + "regex": "." + }, + { + "hash": "cb5114d334e52ebed9e1307f38cd68a7eba5a4fef05fb6070d7efb24195246a3", + "regex": "." + }, + { + "hash": "02a44770ca4a3b84dc9f7848f39cbf02fdbe0b35dde3874dd3a58ec28b2ac4bd", + "regex": "." + }, + { + "hash": "967d9cb0b4fff6158176ec63bc6efc18eb0a9c68ddd5fb519cb3b30dda36c4ae", + "regex": "(?i)^https?\\:\\/\\/arnavnigam31\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "92df05dd0bd6f3567c6fdc743dacda20b6bf0392e613bfcdfd4fe1fc935f50cf", + "regex": "(?i)^https?\\:\\/\\/joe7249\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a1c760fd7bad5c85b0feffc2806380511eff4449d7e7e03e7d0f29d289200710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e80c58a9cfc102b4ce2d686154abb74a97a797bd0ca7ba9d4cc40abf5ad3e2f2", + "regex": "." + }, + { + "hash": "361d71dcde7ba62a35c2b2f06c910cc76e590574bdb4d3b98b2795cc6711f93f", + "regex": "." + }, + { + "hash": "d48a2cf817e4a5d028d0a0ff370c46c0139aa838014be78246f6f1c036092768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+skin[\\/\\\\]+member[\\/\\\\]+basic[\\/\\\\]+register_update\\.skin\\.php(?:\\?|$)" + }, + { + "hash": "941d2cc05b313b950f910a1403921d34dc9cad2078ebed4312b6c98abd8f14c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bbs[\\/\\\\]+kcaptcha\\.php(?:\\?|$)" + }, + { + "hash": "3e740837b7245b3b10525b36d053e5f65e9f1259068e1401ab8c267050a83361", + "regex": "(?i)^https?\\:\\/\\/pub\\-99c3729b8a7949a8bdb038530645de77\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9985d02a23e642438c0ec0606ed8a1d51dd2117c1c5851ce87187f76caa66", + "regex": "(?i)^https?\\:\\/\\/abv\\-10\\d{4}\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ee9985d02a23e642438c0ec0606ed8a1d51dd2117c1c5851ce87187f76caa66", + "regex": "(?i)^https?\\:\\/\\/frontier\\-10\\d{4}\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ee9985d02a23e642438c0ec0606ed8a1d51dd2117c1c5851ce87187f76caa66", + "regex": "(?i)^https?\\:\\/\\/juno\\-10\\d{4}\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ee9985d02a23e642438c0ec0606ed8a1d51dd2117c1c5851ce87187f76caa66", + "regex": "(?i)^https?\\:\\/\\/telstra\\-10\\d{4}\\.weeblysite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df5d986ecb88e0d5ca4968a5a4d1b099657681e697d351b345201b51addbf60a", + "regex": "." + }, + { + "hash": "861784e29e8c71e0fa15c3492c45e2e27306749d4edb7928b936111c9b2cc7b7", + "regex": "." + }, + { + "hash": "caca4f9e8e04f7a39d1334c98ca8ad75ab81d35a5754ea93095331aebf992d89", + "regex": "." + }, + { + "hash": "fba83284896a451a4c6d3a53b6906cd4e6282f84a3f5607c474868cb92abb9bd", + "regex": "." + }, + { + "hash": "ea331f43458abaee07342c38b6e38f0c85140b4e932876b4fc93769c05187067", + "regex": "." + }, + { + "hash": "9d8e93b6b380e7648436792b65946103b2b4760f12823e70e804cb1b2cbd01c9", + "regex": "." + }, + { + "hash": "8b7c1d6f2b43ad47933f1f56dcb1ba4c88b5012af5e32da6ba9cdfdc95080c84", + "regex": "." + }, + { + "hash": "171c4ce8d3e58c0bcd64d92846ebd1487bbb95b9a2a2290588be0df75d661899", + "regex": "." + }, + { + "hash": "50df6ce7cfbeef22aabcb96de6e98bbef7a7326052aaca6d26da491040dd39b7", + "regex": "(?i)^https?\\:\\/\\/komzlantaudareunoalea\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9b78fff1536622c208788c7564e6a77bbfea29a6d1598842f8c2114475bb2156", + "regex": "(?i)^https?\\:\\/\\/komzlantaudareunoalea\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7111826c171a9bf2d8de46dbec4d40f37f92427bee0dce911495e98eb1df2326", + "regex": "(?i)^https?\\:\\/\\/home\\-104843\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c6e35f44220cb5f342842f5dfa5e99a233e189664668b3f5805cb4f477282214", + "regex": "(?i)^https?\\:\\/\\/komzlantaudareunoalea\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "97d51268575373d69db01e460ed91d06db536232f9c7d4c7a6142936fd80a4a5", + "regex": "." + }, + { + "hash": "21adb8a4653d8331bd78f3232d53b2ca65460e4055b89ce6a523f7304ee35a7c", + "regex": "." + }, + { + "hash": "b411040381b0c0b93a7edf9bd63ee5601524f3ff9701fa9afd4f5c4d42d1ce71", + "regex": "." + }, + { + "hash": "483c1e00f4962233949d595dcf6a76e0128bf539d909ffe89477191d102e6270", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+24dhli\\-davi" + }, + { + "hash": "8962267ee929c5dd7f1e3ec48cddda2cc569cbf98d80ed6628e6f37667a6df50", + "regex": "." + }, + { + "hash": "74096e5a2597277124fc86cd0ddda1c7ace2c5be87b5ffad0186d7267532dd0a", + "regex": "(?i)^https?\\:\\/\\/www\\.pagisbotop\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe179a5367a1646176cc5b8743385c1e82e56bad266c8690daf6d418d9a74fc1", + "regex": "." + }, + { + "hash": "4eef3da81c1feaab28065c840648e831705d30f8adaebdd4bd6d2fda28071887", + "regex": "." + }, + { + "hash": "5e7012f2a90428f4c9c74cf5f2ddd1071b5235684612055560857a65adb83d27", + "regex": "(?i)^https?\\:\\/\\/pub\\-cb9558cb8cbf4386ac62d7c2d4ee88c9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c8bb5564b76a351649395cfa501e67ec53b3d0827938ae47074011156ef0b41b", + "regex": "(?i)^https?\\:\\/\\/pub\\-540f0daafe59426a9bbcd8788ff27144\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4f39ce55d081f4136fee862507a2f2ce332596209caa09cefb0634add62860bf", + "regex": "." + }, + { + "hash": "89a9620787308766dc12a38c6f65fd3d5fe1af850942306523bfee349999c442", + "regex": "." + }, + { + "hash": "1eec0cb61a0802bcf82a483f2777b0e7538d31784a08f85081e6b2c9d8b7cc69", + "regex": "." + }, + { + "hash": "9d931b39270d7372bd8d48959a12b62987801ca539f86e0e6a89f4f6cac9f2fd", + "regex": "." + }, + { + "hash": "55fa02e539614b3b5d18a93ca1f12499db4dcde359799dd8655a2a59a34bec09", + "regex": "." + }, + { + "hash": "ba60a76cad1fff4eca31c97860a304e9f41edd7e3c7fe7e6b321cfa5fdf519ee", + "regex": "." + }, + { + "hash": "63406848bd5587a839ae1fe64633beb95e47461e418f419374bf3d5024522c96", + "regex": "(?i)^https?\\:\\/\\/raviteja112004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "25ba9c740ac911746bd15656d81d4a1e5da6ad8dd057bdef2e7ac4d15139ee15", + "regex": "(?i)^https?\\:\\/\\/pub\\-f3e0e97b65aa46718d1bb477db1883a7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f793b20fc4eeaa135a1d8880d9ecfc5646b666406247e2d2943e7da6187d3edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+imetacommunity\\-standard" + }, + { + "hash": "f793b20fc4eeaa135a1d8880d9ecfc5646b666406247e2d2943e7da6187d3edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+metacommunity\\-standard" + }, + { + "hash": "f793b20fc4eeaa135a1d8880d9ecfc5646b666406247e2d2943e7da6187d3edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+imeta\\-" + }, + { + "hash": "e0945ae2d87bce7c13565e9edcf2b1af6defaeca5783d05bbe7e5ddc9bbc12e4", + "regex": "." + }, + { + "hash": "83618f168419fdc59d913e8df36bd6bf2c79d7ad304a251be2c9d02950a1be2f", + "regex": "." + }, + { + "hash": "e3294ff3dd22b8a256f81ae4738fdeffdb77586ce945067ac945e15d1d3bf05b", + "regex": "(?i)^https?\\:\\/\\/pub\\-1a8db22727ab458ca4ce70b7a77ab550\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2fa30b51d5688307748153c3286d05056103c42ff83e5655a6881d10a45782ef", + "regex": "." + }, + { + "hash": "c47fe05af04397fc545458cf9319bfc5bd09c433d8524ca825434b35e505c859", + "regex": "." + }, + { + "hash": "1aa51539390f1f98c4116c7b86451bc809151bbe7913d857ab2079a217c959f8", + "regex": "(?i)^https?\\:\\/\\/fahadi04\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7f9ae2ca1d5e51a6de89a922fedb87ea2f2f8bdbb7e67899d2b17c94267ec640", + "regex": "(?i)^https?\\:\\/\\/pub\\-c38ceeeb71c44013baa5e663d31d9237\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "38c8a624aa4d92b8cd69b767cd3db7876308687575435ff8b5d186e2800c445b", + "regex": "." + }, + { + "hash": "3856d93ae6c8170e19d4463f7138176f046e0c79e21e62181e030bb595798385", + "regex": "(?i)^https?\\:\\/\\/pub\\-47ec7ceacaf946f9af5827d21092ac5f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "07994a476fd8665b37f190302c14c7ae1b84e0d941a68497fc49548618c1337f", + "regex": "(?i)^https?\\:\\/\\/aiza\\-13\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "00b392092c50cc2dba5fbf8b8e51339d1acd2834abc96232a8250eaa3ba1dbd9", + "regex": "(?i)^https?\\:\\/\\/pub\\-bfef8afb6f3a46abb3a5f88c38187054\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ef1d2c4b068d55d54bf02ff268afc59ddd7acaff1a3c6a27adeb3d2a64357420", + "regex": "(?i)^https?\\:\\/\\/greenwaywindow267\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5c3109c1c6a7b72292c808c3bf18e65194edcf2f6358941af45a178c21c48e14", + "regex": "." + }, + { + "hash": "9a44807ef1c55d56aec7e887c06f7989f9a4b7cc7a30f3743a26b32089e22d13", + "regex": "(?i)^https?\\:\\/\\/pub\\-d95d7638dd3a47c49fa9b450dab7bcbc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2a1ee87acc1b7b0650dbc46230802f1c49a0a369fe6522ff03e9255ef0aabcbe", + "regex": "(?i)^https?\\:\\/\\/pub\\-a81153919d99467f816c9b0c6e3ba1b4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "20415d27b982a4cf968068ffda0714db0bd473fbbe66c408b4e93fb7f9b1b91b", + "regex": "(?i)^https?\\:\\/\\/pub\\-40ca1424d42f4598bccee72018a299b7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "501dd09f75c950ff6f596cbd9272065df3f3e2a736d81c1a62a61d1ea8a2e2ce", + "regex": "." + }, + { + "hash": "851cde0556ff3cb6342b0993e55a145596c7ebefdfdefcc6573c6c71c6448629", + "regex": "." + }, + { + "hash": "dd017d0f899a316838b2468db34efb2b4a8d1d1299d680c8393ab426ae1fcc6a", + "regex": "." + }, + { + "hash": "444a5a59e2fbbd35d1e2be6aba960a8b7e81890a47e1e3286f34975dc4a458e4", + "regex": "." + }, + { + "hash": "d657e4f196f2fbad34dcb85c1a188a2c29939a2759bbdb7e922ece5c7a3c1003", + "regex": "." + }, + { + "hash": "cd9412617abfec52baa704d93658797ee0458215cff8e8fd0deb2aba977a4c2d", + "regex": "(?i)^https?\\:\\/\\/saloni2112\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "33347083b3e3377d874131733f67bbd467e797fa087a4619ef8f0ed0a600dab0", + "regex": "(?i)^https?\\:\\/\\/www\\.mail\\.186\\-2\\-171\\-38\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bf501f110cba62b54a0c012bd56d0b42f020ec90338f8d20da60d481779f54a3", + "regex": "(?i)^https?\\:\\/\\/att\\-104055\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "29b3a1cb9c14bb7392e0afc6a8a98214b250a731413aa430f3e6a6e25a70c6db", + "regex": "." + }, + { + "hash": "1f4883e3f9dcd7c10e43f94930b8b5fce794ffce023a6155b77119b67de85e02", + "regex": "." + }, + { + "hash": "5209cae49680989ae3d1f61b39827973039332625dd248ed9af568820769bc87", + "regex": "." + }, + { + "hash": "807acc35225e9943060f8261be0c232f501bacf52babc117e0c876246c87f9b3", + "regex": "(?i)^https?\\:\\/\\/pub\\-b8d557d502ff4b20ad52a88c112349ba\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "299c5cb201e412003450e113c87944b43b880e91415333b2bb1a438c6019feaa", + "regex": "(?i)^https?\\:\\/\\/shirin261196\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8537b1c9b47a479f8fb7a818e473158ef0a70dfcea199494a68d1e0368c2098d", + "regex": "(?i)^https?\\:\\/\\/pub\\-3f2a7ccc350842589aeb3cdd79d0514b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b0ac4d867c33d444cddcec927d3cc7e0b322f69301e496ede93506abd586d517", + "regex": "(?i)^https?\\:\\/\\/renewpixels717\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1ffd30b993bfc0a179b3c45c39934c9768bdb90888586cecd7144200a47f6969", + "regex": "." + }, + { + "hash": "f9bc8049d4fb8cb93564eb44daaa460a26f7ba04d2b7ad7ed3b79c0ef979356c", + "regex": "." + }, + { + "hash": "6ec6e65db4ee8b3402bd565d8ebd2e7656510749a1ae166249f59c6c94de4d2d", + "regex": "." + }, + { + "hash": "d15b9857221c25fcbd729a0a9812a64a56f154a07d2f641703100e79b71927cc", + "regex": "." + }, + { + "hash": "5a870097b97a7ec892e20dfcf23670e9925319699307070f600517f78da7b892", + "regex": "(?i)^https?\\:\\/\\/corpgreat902\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "069d1c34f4a0f2297e2fba5206a5276b53f3395749a726fdc2720cf9ce8e9171", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+idx1\\?ts\\=1$" + }, + { + "hash": "2c13b70c2f401aeefb1aa14be13cb043d9b7b7c5ca01d7486f37bf592c27ed68", + "regex": "." + }, + { + "hash": "72bc7c395483f7001bdc1f3ac634c301255bd17975893a068e175a17f937ec1d", + "regex": "." + }, + { + "hash": "6ab39b50cb9d9440755169b8126ebe2b3fdbf39c31e3db84ad1c770e5d8025ad", + "regex": "." + }, + { + "hash": "11446cb68c9ba69267de4ef5efd8d181efe0c4e45210862b84946650fb332499", + "regex": "." + }, + { + "hash": "f800deb71010e9b535196f2beed5008ed0144c255f98fabfae6a73e3a3be22b3", + "regex": "." + }, + { + "hash": "e1999bbd030e08edc153ef224a6047c348e15c326df798799db10bf99d361703", + "regex": "." + }, + { + "hash": "6168a4bf79bc52d4aee2ff763a1a3ff75cc909d2c192c1ff63427ad72b9a8d07", + "regex": "(?i)^https?\\:\\/\\/216\\-10\\-249\\-147\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "069d1c34f4a0f2297e2fba5206a5276b53f3395749a726fdc2720cf9ce8e9171", + "regex": "(?i)^https?\\:\\/\\/a9df0246\\.sasaidx\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+idx1(?:\\?|$)" + }, + { + "hash": "89a7ef647ee669890bb207211fea34c7f801518202cf94401e2e5b7c76eba6f0", + "regex": "(?i)^https?\\:\\/\\/cpcalendars\\.103\\-69\\-196\\-38\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f21c2c15f1778ca079f9254d253641a18d7e35d7cee09ad940588c66352e1ee3", + "regex": "(?i)^https?\\:\\/\\/cleverbh282\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9ef17fde2c2b6cd90541f13e0124789b126301d4d8fb6c922deac1025676a11e", + "regex": "." + }, + { + "hash": "584d91f16b0755715bbc99b9b1769f883ea1a5d774681c9e2ffe0260926d8785", + "regex": "." + }, + { + "hash": "6e31a48fc19b1a838494abd11f39af63fd129c62fd2183596625e2912b0d548b", + "regex": "." + }, + { + "hash": "a4ac26ef7f0ce0bed806f931ef7bcd2c4038e1c92ff2254fd0f9cb9d1248f0fa", + "regex": "." + }, + { + "hash": "c2f33b0056d2450a0af4552860eb7196cf6e0b28ad8aaac3b66363a36d93fc96", + "regex": "(?i)^https?\\:\\/\\/loginnetflixleiojfioje\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "90d1f4c08a3db71ed0ab9a31704b3339ba168181db2298ef35b40b6fec93330d", + "regex": "(?i)^https?\\:\\/\\/sahritika07\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "461ca33ab7fb4ef58a80637c7f0f817bb0535c76ef730e7c7870841552530222", + "regex": "(?i)^https?\\:\\/\\/pub\\-ea7c8fbfa0a14931abe6c276a466f5c9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b84dae4f86b78042631dd8cde37e78d0f91e93daf871577bbd492e3d03413b38", + "regex": "." + }, + { + "hash": "adeb297e07daba2422b581fe2ab86acbc68a980ff454ce8bf277546eb73a804e", + "regex": "." + }, + { + "hash": "cf054b35cfca09508071f791dc7ace479329fee73a2c2f60727b432fa13c6196", + "regex": "." + }, + { + "hash": "2ce219d86eeba2c721ce96b83be2b58a29242bca581e56c56e9790c2c8c4222b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Dokulment\\.html(?:\\?|$)" + }, + { + "hash": "ea13a275f6e1a438b23eaac87d954fad04ab03e374f03f8b8996cb91e7663b4b", + "regex": "." + }, + { + "hash": "e482173d8501418f7f7e8f5af41c23d0b980cc0d301e7771220c053bae2d4af1", + "regex": "(?i)^https?\\:\\/\\/pub\\-3a6a141979164590a0493bc98fcc2a76\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7d1bcc6141bce722694b974c845961120fcaf03a5a0ffb54221faf4ade6cbbc5", + "regex": "(?i)^https?\\:\\/\\/mesientopro80\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6396807db3b66042ec99dd08aa01de0f44c86d3d9069c695a8e5ea06b270465b", + "regex": "(?i)^https?\\:\\/\\/pub\\-0dee4d958d3b4fa9bc3bfbc8fd7f9c47\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "27a27bdd822057a9972bed4f064676e64c15537cae625c4198e7951df222f570", + "regex": "." + }, + { + "hash": "6ee84a27b08450f62431cef21d08ffa1c344d33f1bea6e005a3029241e57c895", + "regex": "." + }, + { + "hash": "9fe14f5981ea8515cf540f9374d61306d668eeef6d8f0d91fdea8c5a14f7cd29", + "regex": "(?i)^https?\\:\\/\\/bini0909\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b4dab60b4f1a54c2552b0a3356cf7e36c1b71ce06112892893d5de32162aac7d", + "regex": "(?i)^https?\\:\\/\\/herejload990\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "779aa7e022596cadd4be22d7ec79b43b0ca4f7a02d9d333e9c5321b0e4e3cbaa", + "regex": "." + }, + { + "hash": "64e1958d93f9465b75d11292addc823fe16571d5c4da8c41b61377b5fa5793b7", + "regex": "." + }, + { + "hash": "c2e87bd2453cc7178f22d178817b577643e5b14cdfb7545f84cadfb7000e7d5d", + "regex": "." + }, + { + "hash": "49f6ed9945708a660d1ccc02cb6d54c0cde0908054390c31e5ba78f2f7510234", + "regex": "." + }, + { + "hash": "a9f6bfb21fdc53ebd31a9e1a8618bb8e001cdc4848170105211035514895d48d", + "regex": "." + }, + { + "hash": "6775b3b545f40ce462d6e9b91ed03931b3e2aa856ddd122eb50ff85cc11a4c50", + "regex": "(?i)^https?\\:\\/\\/tumusanjay000\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "db73899d4589d44bae7979d00f2f008efae66a1b9d1dd283e226de2b1805f2a0", + "regex": "(?i)^https?\\:\\/\\/everythingtube782\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9ccd6ea8db7160337da379c41bf5d7a55ae30b71488ffd3a232d5224191937d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+JMf3ir9aY24Ic9fG__q2YAz8uMKix\\-JGUgyaR\\-hhQEu4pQzxmxhjvjIV43BpSLoOdLT\\-7LWExXDxXiUV3T3lN8DhfsFnGHdIoSbGh2_8MqUn_zf1H1bKOfkzqjszg2HYcEATiX52flhSthd21bXF4c8ZqnGoMEbqlx7UKPhbDNZEMHMCVVqgUGiLWSRdY_RO\\-_rYEFb6pnJ9uh1zzjqJ4vUU9PtEx09lS9LzDjsX1ydyaaKiq1cBbUr7AtCmq1XBhFwtj7fr894htO_L4dmfQ89JbmY6gokT7xdDnXwucD1y(?:\\?|$)" + }, + { + "hash": "fe91566de811cb8bd87ee0b210164a735fdbd2cfa82ca053975e85d791ff2904", + "regex": "." + }, + { + "hash": "a77307bcbeae6008851e69f3ff486649785b6a460dafa8fb9642bb4c6bd0c1f8", + "regex": "." + }, + { + "hash": "ec8fbf9366846b98f3aeaf7681b91dabfd7427d180447e12f45374ca3b726008", + "regex": "." + }, + { + "hash": "bf8b4af8d2013a530534251900d9cfe1938d6a2d02cd3117f18724fee2c795e8", + "regex": "." + }, + { + "hash": "d577451be1539322d0875fead340d4fe5b87ddbcd6d68d707d18db314c326a75", + "regex": "(?i)^https?\\:\\/\\/pub\\-b92331c212ea4ec0ba550a69d5d16d6d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "74d19f8fb9b5e627a58c07d1cb71970c49b82bc271b6b87be3543bf9ff1f13b5", + "regex": "(?i)^https?\\:\\/\\/howtogetfreemoneyinlumbertycoon2roblo\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9ccd6ea8db7160337da379c41bf5d7a55ae30b71488ffd3a232d5224191937d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+a3_9Io_cUw5r1l2dSAgLI6qRjYxXIsWWLtRGDacJ3DrbYpAUeKONOk69K8vt8ZF6LgVVQe45gM4HjAQQ8dLyl6lsUgizyH8z7qtF39XOHrEEnYX4jcJBYjpJ0KCFzFP7XzKBh6HwewAgfE8ogXNKSriHzWsIIWyMd8EjnQ6OYEDBf1glwX3Fxpsn6eNtCgMkDdRaqRUn_218P5d\\-D6Drub898PdBYz3m_Cxfu76pVQ5XRX\\-PQl_cmxhxsPmFDOinV8GKCnXaXvkyJvnfxQie41\\-6hVJGrRIkP5Igl8bofauguqry6DQ(?:\\?|$)" + }, + { + "hash": "5c508b9daeb83209a2f4d4c82715e9fad681ef884e485616addc499ee5522f73", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2cebd2860482e7a5902c7373660261b6580df68fc90138a34380fe247d7e5953", + "regex": "." + }, + { + "hash": "1e44f9ad63f1af241264081b7730194867e85487f907237b8eca38ab5764409a", + "regex": "." + }, + { + "hash": "9399288c4cfdb4ef410cd1c45111e2da4ea6e784b649080a028f6d1726be8e4a", + "regex": "." + }, + { + "hash": "bb6c26b018dd31e29a0696a23395cb11edd20e06375699d6b3e5e45a0525a820", + "regex": "(?i)^https?\\:\\/\\/ssamridhi1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1645ff342a87640633256159c1be7160fdfd0b0510db529ab3d0e9ffb0e18486", + "regex": "." + }, + { + "hash": "0ca7ef9d1dc773ca9f45288141eb41bb94c6454c4623ae40a2872661df75f96d", + "regex": "(?i)^https?\\:\\/\\/pub\\-a45da6cd51b649a2847dcb19c5d45e20\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2ccd2934f24c9f0b3e83133255a9d71827bfc2816cea278f188c870debe107e2", + "regex": "(?i)^https?\\:\\/\\/pub\\-461b33451f1f4bc9913db5625767496e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9ccd6ea8db7160337da379c41bf5d7a55ae30b71488ffd3a232d5224191937d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+\\-6ZFCJFpYsNN8fUtQLwZzsl0Q4A9Gczax9pYXKjHJIicFhHOLcezgiZ41\\-PlS\\-\\-OFdArMisMqrA\\-AdmyMta\\-Vyy3cYWUdnZ0Gl6ADlkmbl8eZT0IK0DWBy0YhfKF8ozKQxzk1Oy72j7Ymc29PaVrqQQazTnemNf_ekDWWI89CNiPxpW0Sfbs9iSOcL_fgSnJZHORdB\\-gLgw6MTlKGB87lPZRUQVXgHWJ_75hLRFhtmmG20IWr6YVhvhRB850xjFEiJ8r535za8FfovrrGN1ImEZXfUA3W4YdrQWJsMAI(?:\\?|$)" + }, + { + "hash": "e797d53ae05d9b84d637288bdbf21f590e8394a8d4d45ebda6d68b30749a617a", + "regex": "." + }, + { + "hash": "93b89e8b1e90e792fef67de8a952010c669edec024b97227b25accb2a863b58b", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?business\\.ifbsmetaiidentiityconfirms\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "1798489a6e844bb627a79403c89015503071a0e4342c6e1370782eee06839003", + "regex": "(?i)^https?\\:\\/\\/www\\.54\\-173\\-174\\-47\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "86c0fdc98599c3d66c10aefd6c84c358296a64ad67d9c84756dfd34fa8506a76", + "regex": "." + }, + { + "hash": "1642425db67c68ecac6f50b6d02840d96b6b97e1af302495ed4335adb3c0217d", + "regex": "." + }, + { + "hash": "66d4ef2fd9ec04b833b34432e104efb4bdf4effe815263047db94b365311ae85", + "regex": "." + }, + { + "hash": "2f8f6e6e192a752382fee98c5bd0d57aec1c4f177378a0518cc29ae4f2615162", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1bbcff73326dafa707393b3f32a9663969088639f10bf075688917479e8c5b90", + "regex": "." + }, + { + "hash": "976e92625f6222dbc87c1b1688df1df5156a8b11ad65f9b60dbf189fd26e05e7", + "regex": "." + }, + { + "hash": "45e783412080c3cd156f46621a8c10df03212a46527d98ddf76d93b8566d7e48", + "regex": "." + }, + { + "hash": "9363df838914a5f59aedb4c1a7f91094cb8ac4fdb8833c164e83be6b59ee0902", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+tj\\?hi\\=1720893362\\&type\\=seo5$" + }, + { + "hash": "6f595aa81e9bb529cb8d087c561f4da8f0201f207390db3989edbf0bdcae8870", + "regex": "(?i)^https?\\:\\/\\/wf32r24rwvferg\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c0a0db4c0d72f12d03d38ca20155adcfc8b0bea2cbbe29ff3d1648b9ca7962e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9567498a3295128d760ef870196cb87520fad3905e7ad8531d56ae0aafe4646d", + "regex": "(?i)^https?\\:\\/\\/551009\\.cc\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0a873036dd4c2b5586cbcbe3160e1840dc222e689b11fc9c75abb9e8ec041974", + "regex": "(?i)^https?\\:\\/\\/att\\-101262\\-109054\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+RQer9pydy9fNERkOYwrQt7Ob2c1d_dKtG_nrJPIFD\\-Eu2EFC9BFTAWMRBgp7_x_ns8KMoVFBx4o2Yvss8aayfH9VFw7IZevJOEeNHBAPZovUvYdfOzIPjH7Pfe\\-Naq5JO51DEDQ3Rzgw3iIAaE4THApMNY5EJ59xSEmEwe3enmtnTkUPjTWNhJalljQ24Ys4IPrzz_CXqGaef4aparvOpfQBd7iO3Xvt1jRz6kXeG4x0d0flHsZw1UJbYQkJKBSl9yWHyA\\-QW0jBjcG\\-(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+tt79jmvW16iO2rzgoKY4FJCsKTypPwzI45VyBf8cjjcub1aE4NAP_MrvwUglU98nQlJAaXRTQULfRGf6BbjA2E54cW2k2a936xR8OaDNF3uc6zTapZ_n2Hqz_Tn4XqsW4\\-81CB1kxyp_OT7oIRAgwzzwUsv7mcSlFPLzWq55b0OWaMc6nRI9R4ikeitJPYvzMTZs2ewNZERiqOqpgu\\-xUj4FLTs0F\\-W6yiwLurM4Pbmye38U8nFtvQ\\-16MQl4lXQK2qlPkWxmqbi\\-GASfROE(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+GBj9WEzZe9MpnsO1uXeOFbNmYyw0dZpa0E6zhz67fyvGMtTDHwobqWpXgnFezEbP0foQcCLYilH7fF6LMPen\\-roXza89meDBM2B8HYBnkBNCoykl4UldInrqRNvGJBhRMLSA6udmPjNUCnzWXHoz\\-SPYIZEl9EeH2YqCeTFahak89ZsYci5etNkuFcpx8vRxuMGlAOlVucvPvjl66\\-Qi9qMiCtN5vbhAx9cK9Oi21nsMmJaUfY_WV18XD7fDeY0fT3o8QbJgGQxD(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+lsEKmbWZvpbfowJbCdrZBfCL9T1jhWuTm2Q9q7Ifqz2Cql97SShnJgvCaZmSZ1KFzYuIuHDvrER24XPctqj\\-p9bKD\\-fiAaePdk7\\-BQttvMLG5DdCTvqNPyxReFVXYsDp4vIP0r9VDFcQoJgq7jIaG0u4FaJGEPNpA9XbLyiL9OGI6nHLJD1U_ynaxT_1rekc87YzczkYbKk\\-9rgVdzAhK1uk8bWpx_qiykMvbLMrgAMJyetZBK9gBZ3J5LEFK1Y6EZxJNmEmfrQ80Pz13lyU(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+6ob5mX3GYg2T4Xg\\-LvMTQ4JOJM1HQudwzH3eMoJ6x3ozODLf1SkEVB84sAxaS8OsrjF1eywwx8wnNP9tFR7c5kmH1dX4X4bOg6nv1hEYGyMB2Ops9Kvd7MgiGXgP\\-LUw63kKUeMG\\-bfz2SlIQZQEwcdStJhrid9nq8Ds1OwQQCaBw60svJPyvoLEEyQ\\-BKFSN85XXANaBuowuzMW8xnzRfN5X7U7kBAIALyDNMjiFNzP4Kpg1yXNAMQhjCGCEPzhFdNz30vl52GJNJ0(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+LOihFwqQlFg1JAdUMrnfrureqoQDGdKaXc4i9Y8j85TCtTwx3Ohb_eG2WSUfPgr5At0uSSbS6JpX8XmXSbaoGzWb_\\-oT\\-ZtNApLR6JB1rLPJSJx1LeJZGeL_7MMA3pM89F0SKiquw4v0Kocc_JsoCDfPjKoOtCqjXKi2YQPVUhYSbfPrAnfieqQ_oI4_BvnLCTHCNHeox\\-hlihrNEfI1vEqzsvTZ\\-hbh2NhYlFjccJYlEpQFFwNJhThJask_2J07fzSU4YvcCkM(?:\\?|$)" + }, + { + "hash": "5db1e6c5fcb6d909db0465f4884ed2a157fe7b1a352e45b5566e7ab58aa6ae9a", + "regex": "(?i)^https?\\:\\/\\/www\\.bitcoinisdigitaltime\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+UGXrD\\-kPFIzfS7hfMkv8om_w5yHIO4kIY9eLD3QXSopl\\-N1VPL5FynOEAjQYftD\\-dNzM3XtUdOA5m3Vm3RY4_vYa5YhuAQgffzT1zNy8gvuuIKjnjgZxhz60VxxVzZ5mYpugoqFls3PLEQjPuYn0X8Rxdb\\-bMuBPxKewjZ6kRkQQghxEgZftfLfZNMv3aALCeeKgKQQ6v6PfxZoTslQN30z0aq8bb37BJcQH3RraATZVu\\-9gFZxhqJVDkCXwGTFXJ\\-ZB6oVHK3MAGcvd(?:\\?|$)" + }, + { + "hash": "8bc5980dfcce418a267517013cb093f43286999643db838c9160331e9fb48e19", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+zi4zMUvJLK91b57SktQjFGpaouulPhecdbaLue0pUKMfdgLdcD4zxrwl\\-VWOb8Zvw53fzp4NmABOwY_yqwjaNofoUWMrfUoEoFOrh\\-5fXGyNgO1XY8svG0BdnR\\-fRGWAgWp2TECdaIS_kzvLrhy2nCtNwfiXA87Hptg4aUBIiRjQV\\-SRsJ\\-oDwHQ7F1pR8cUK575MJpC_6EskPyn8TBrmEsqq0sbNJtIv2bNvCWL9XO9ecQ4KcoV8iDJDOtRrgNlZlHv2uE2Z_PVPUY(?:\\?|$)" + }, + { + "hash": "63b0a787dd42a5d54077c5dfa651fa9c42f128432366e5f6a73d71f3a7468d95", + "regex": "(?i)^https?\\:\\/\\/eastlink\\-107623\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9686d35ecb1a5b085f5e606a6f557470dbf0a72c34de679bab9cf972877f196a", + "regex": "(?i)^https?\\:\\/\\/vishnukumar006\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+eGWX4J9RDU5ftMckcghtTx\\-jogoKgZJ89iTg7\\-n_8a_wURCypH9BsgqOh1Ds1txI5sgGE94bHtPAqhLVoUckDP8WyC0u7LbVAHz\\-uRNBFJmYN7s_B09w6gWlPvNzjm\\-oekiXNTwy5ZVOlm_NNFwxSe6hW9TIDrwELd7jO_WLV2pJ1eMo5Mq63L113eLxuogbTVvzwDcOCM4OSsKMTvRIlYMAVY5oiHMG_dcE\\-UzsUJuLnb4sRt4ERHnYfCGHo2WU_1IY6JK1bP\\-EtQqk(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+S0qm30vxmU3XhQD7MxGqHeCzs_nxPfHEiMCNKALO1u8TPuWA01641FgSiBjsOgiEoQzW7tdRr3ue_QTVCtuy_\\-qsE5vkE2qULWV7eImV55xFzxO6ozMMzDfV6W\\-72ipeKNgOEKzD0L_nrCWzwk7S72G4p9QffiVm4bnOCWcVzNOFTQclPUs1J8NALVJnOIA\\-R4G7pJnQiHYFpTtBhsrAZn_7yakVk\\-DTzeSAJl\\-Ir5kbxXbMdgRf\\-SOXCUBBpgh7oHTK2qdtXQmDUCJH(?:\\?|$)" + }, + { + "hash": "512dba21c28de7e60daeb51d883251e1fdbbc56e4fa62e187770ff9d986d8cc7", + "regex": "(?i)^https?\\:\\/\\/att\\-100062\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+wzTV_QiVsmJbafB9YAJbsdAovibjxbQdhZyrqC2ANlh9L2_LRNsmo8sDxBGWlH3voOwH6m3z8ps5XnKiemRXW\\-1J\\-zXx8lqptQ_JulGy0OuVdm04qiCVEwgeggSPm4VHHObq\\-bINK2Nzj3kqDsW8Wiimxeh7H5P0NLMU6EG5kXhZdghH0hzVPDlvj8J3rnylwEenbRjFjj0Pl\\-qada168IhKZCcSp99lAL8GzYSTQfljUdtacFwvtoE7QBiK94Bz5I6zFeZv\\-usakw(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+2A3uMynODXsqV\\-KfwjNj\\-2FMSER2gW_\\-WO8Py1BiWy5R\\-Xo5MCxFGh_I4SFFeQDOg3MG1UwEVQXEIyKAESFzrn2X48LJQ2c_q1cZo1eyCXSUnYzgiZfjxqOOVWnJXGwOXmF77Yu5Kw0NhxjZds\\-DEoKmPE42KDB0\\-JGdCLNch8G5lFSd5FErOKTb6e7TM7g24wOAck3ilMq4nQJDnqRINXAl0Q0JWZ\\-qI8NxHFAlY\\-g5kXlnkG\\-2prdk6Vu\\-pmmdOyknOJJseIwSNMpD(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+BRKGlhg84WPY7rbBmG9nnMbYIjJ8aGKsgMF6_Kh1bNw3n\\-tqTsk2xyl5VAZZH1D3fdj\\-D55xwPbr\\-vnf_D5YHfee4v5EpSZa5Y8eJCA8wwHH2NefnGgbKzUoC\\-kWZHktxNkb4onuYbPkZsZRGqu3DfFE11KXHmAsMqUWcGgosRGg_TwpP2nQjc_2BN5Bv6ed7V2J8Q2G\\-IpUCwlDXGPI3kkjdV0w_BblQDvBDNwJAksTCIhxIbf0DJHCOYMcXVn3VJ1LYwx4hgi8mKs1(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+G7b0NS2MLZLvFJ6YvjVRUZqhAx_nWOU2ZN6y\\-DFU3jb0MbR5mQv_XbWEiToCLwwSJuZQXk62IhzlYUpiOzWQ7sg9YsvYF63D6Tv5gyvU\\-Z2DtCO8157NfhFu3ZCkcySJknUCQvMAKVULlC\\-J\\-t0vRP_tzfHfRwRrvj5CaZksvJlkkfHmXrnOWM47N_eLjeYuYPQz9hV3TOTlJG03aYNB_XEu4klk4YQ3crTbc0OFwQPcc\\-LTK_caxXl0z0Jp_XLDDXA2l0nroA(?:\\?|$)" + }, + { + "hash": "eb63d5e32520c4455e444f7ca42f6cfc4db46da92242aaaa6a611114ef9931f2", + "regex": "(?i)^https?\\:\\/\\/fivestarpowerup854\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+SM\\-xoRyTogRCshEiD\\-eVS6fTSAsfOyMJ\\-d2Cj_CKe4toHEs2lWfbs1jI437ROmdEb72zyfPrNDWNm202\\-CforpyyJmX9soITo9v4dA__H2Wkcjt294\\-1es1zrGricfOwIXaryOiRlVrkt8f15Y5s7_LhaiTRpn4dPyF\\-DpZWHUgDqBVs1T5o2Exrq6MHRn6yeFHT375yDnw_404I7n6m\\-4fqb0eVGFZXXgkfb1BiD7l3kV1B_P\\-7KmVwNH2JPHtw3fzvO8hsAIKDZKs(?:\\?|$)" + }, + { + "hash": "eab1db174c3a3321816aee950fd7de5b8701f17fc708b6cef494aa2e96803af1", + "regex": "(?i)^https?\\:\\/\\/jhdjd73773\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4cd84c68fbe9e42a39d279c7e552e15d29b1696da3a0a4ade685725c90dbee24", + "regex": "(?i)^https?\\:\\/\\/shaw\\-103896\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9237c7c1f342fd52977b0584f304a8d538363dde14691f31dfd7520ba1ba4098", + "regex": "(?i)^https?\\:\\/\\/currentlyatt01223\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+1pUgPZR_BiWS9xeEbw9Xp\\-TLsdaAHPZk7_yb0NIJyEcQFOpQ3oS8VJ\\-D2eAYA0OchVNuE6iIaprwRS8HjDl0qJiLm5X5obEteLijPcKCSotP8IXdJbU6cYk08sJ4pWSLEhWw9Dk63EhBItDhDyXd6vNLxzw2aJofJpVB\\-ckyIe8GvHRWvo5XNFIVnk3O0l7JH9NDRVlsb2PEv_mociAXU6Uab7w3FEnnSofovcoFUpObvfbufnHACkqq2cmdcIPKEUaKauv_(?:\\?|$)" + }, + { + "hash": "408b35ba9d73254c286d3a74f6518530b3148b750263d8c70b71ef3589bcc14d", + "regex": "(?i)^https?\\:\\/\\/desactive404insta\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+hOeT8sNntH7mUOEDMC3yOW5PLKce6wOFEBsK3I7g5fFa8RgbmgWkNxNRrAM\\-UD06jNNcS6rilqTziQkPmaCJCPkGWYyHmMdUbHt5DMY4tumbkccMurmI4lW4ItAV5DphdymwUS0PPKS_Q74g4Muf3cK5N5hWKhZbJyB1x3t2\\-q_nl8fQ8PnldJRCOjVeQwZb7foidTuIuwXQJz1QMa9GI9SSU7\\-shg7u7R13KjY2XzCieo\\-nRt9Fxkr2QnDvf_v_8ZiQ0QAeqjSdcug(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+36GGGAHaiuZn_lVT3NFGtr1\\-yaB58u9MS8jRodM_qFCaJ2QTgChnMx_mxx042Va5mKTdJOC2l5evdkpQ_PdYfk9JGEKTxuxxxajoCIHtqje3x\\-MMFaGpL1g2lneZSFSnJrNOswjWbKEIVKNRm8dGD2t4YxJaAt5oujLikODr8Ulwe6rOXo46Z8izt7_H_X36F2EUWbWAECbxd3V45MVZF3BlpQODlYJb0W9ghTab2tr9s9cw2IvTA75kNURCwwYGWhdG6zhqCFVX(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+WDnAwQckMcqCA2LMJ0pL\\-eeeccFteQXmg3pAybNbsWOhqnO6vlUgncn9iJZNnYAn9UWWxGhNnR8lJhKzjjnu0t3UafS1cZBOCDLI98aqJL7mg7ptgDDBEH5z45WnpFy0OkJuCK1Yj5HvT5Ikpfz6TNT\\-VhU\\-ea9FoXWbwqNTGRSYPiQ43QtBQdl\\-bbUJZvbtZeq\\-MDfwPr5kALhPOHfw8gI9kKfLVp6mRIcESgv3bD\\-pl2z7p7WgJowBxIcJ01nx7jB1RQZSdbAd(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+JIYXTZE4LzvJt4VW_ebY3whRKveX1VhUD7NMJ1LfG\\-Ec2jwdrIqa57YTj66EVCMx1bI5F4uAkomDe6D1mHexgpui24udIF471NpA_hz6\\-3qa5Lk65PjrZ6l74ALsBqUUUG0FLTVj03MqozrizDaFQUhNwDCqvOLqGHxDYV8MuGcaaDR14w\\-e13mbvC8Gxx05JnqH_VQsWkuX2bZuySiXuvWhJs\\-vP0bcUef3Eqhxg8T63IsIkiLj1rOryMby8Yv2g0HBMXGrTIgHUh8\\-Nw(?:\\?|$)" + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+ouSO4ZjHTdnIFP7yVoDoJpumiDkUzoUMxz89pdkCNsVF1AqnYx4bUpwTYxggHnKa9IM1pBg6qoph0mAz0czZ2XuO8FigXeHcAx_9FYAY\\-RuHMor5ld\\-sr9jJYlgpAcDXnGnQo9FoMCKaYLgc6GnIZoCBG4WubXelktlBI07NWLs\\-Gt\\-1Vb1zKzsqLJZFFI6B4_6sjfcuctSa6m7XeGW8gbgt\\-xUy19BJjVJTlROMPxPMnEsloRms9sofmVmHrLLALMTnaBk0xvFHiQ(?:\\?|$)" + }, + { + "hash": "5628e87e6f6f40d9678be7f618c23ca091e94e14585d9f04dc1ab6e530d9299f", + "regex": "." + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+juC8CJvzgWo821mrXcXaKlPp3HqePpcJ2gojQArUGWrnwdrXtgx_RkUsfWBpiZ\\-UX2zH4hWIRsylf_1Q_ZfYN76cu8NR8WX82t5wBrBOMm41oX9cbCTWHLkBxHlG6w_d\\-_Q9D2PcHQ2K2_37JsEOIBNewbg0f5wnVfUbyhtwJUStvtOSNmLwa6zTKrAW0arQ0\\-Dk\\-6982Nrv5GUSFiGWUcJbtYphDr3ddqVq6ly\\-MOwAvN8JZGIDBgcJKbSd5mX8Z0smNkOaH2h32vk8(?:\\?|$)" + }, + { + "hash": "b29b9dd57ddf9181778c6f365c0e19e62353bb1c99d353237a4f42df4d4c692b", + "regex": "(?i)^https?\\:\\/\\/pub\\-d5a1de98f9aa4118833bb20fa8c9110b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6cf05f75e8385d7632d87d6cfce1649a6c6dd5404ff9c44b539f0158f30d6f06", + "regex": "." + }, + { + "hash": "00314be565a38b60368e2c64b91492f2ff45947ff3c1019ff6e7f08471b35363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+ZYDffJNz_MlxfYR8QQjNqb63MLCH_ccyEBGjFLTCPQKzMB_xEo6enVzj\\-anKOIljSpXkk07x5rlMMo1qhT104_ImUb9sPMeo9h7KWSHD\\-tjyqbLipdO_Nff4PhQD2cqaoeGtpmzHsgKUCPak_bm0lWjquIYEziiftykHiRvchXhQigSaVZCl3yutJPij5NMhTjISqI5fn0d5FHbwt8QXhDs1RI98mEr2EfWcyzu9NM9l8rSPHoPNR5DMA\\-kFYk0OFXoPpy6RomK5r93e3K9P(?:\\?|$)" + }, + { + "hash": "5a2074a3bdd096a9763f919ab592424ce83a30f8276f1c34bdffd8370c28107f", + "regex": "(?i)^https?\\:\\/\\/pub\\-3f00ae086a7c451caa0562854cbe6a31\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9c05cadc651603324740b3d33829402c15064584dd25dc8db0a4c2827d948ca8", + "regex": "." + }, + { + "hash": "d736542f8da8b12010b0331a83782412cdfca4f3f6e884f1014e0121ebe71b02", + "regex": "(?i)^https?\\:\\/\\/authr\\-108853\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4363409b5ff2865912bbcf8a1388ab10a7c26b7fed126facc9caec0463491bf1", + "regex": "." + }, + { + "hash": "e387caaf2c15aa0083718c51808a30f61c3aeb114bad056ff323611d167a3d6d", + "regex": "(?i)^https?\\:\\/\\/abhinay632\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "10a4f31ab31084d4f23f90fba65937822181f248597cfc206f31893e568f128b", + "regex": "." + }, + { + "hash": "4e208e949f17011db2ae99c180e8972e1d9a11ed91067eabe9a4a169ca2b0de3", + "regex": "(?i)^https?\\:\\/\\/saurabhsingh98\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "782f98ce9919d76665c871847d87c9ebe5188a92ba554c3ce4c26f48621fc425", + "regex": "(?i)^https?\\:\\/\\/pub\\-0128022da5494733bbda90a1b70864e2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d8cfeea145085a41f7639c76840a171fbbd2d8a24367ba9bf15cfb1527ac5048", + "regex": "." + }, + { + "hash": "4e45067950d43d630838ea8db2011490d8c5ab367d7abf3ac64ce1a4a0303ddd", + "regex": "." + }, + { + "hash": "70c82b8fe39a56a1ab84510307f13f9f35e8098cc592cfd7638b63cb6039ab23", + "regex": "." + }, + { + "hash": "ab9ed2efc274983713c30226224085e435fe48bea59b827ca42eb3025ed1770d", + "regex": "." + }, + { + "hash": "ea9b1310df4650952cba2e279beaf2d26e879fdd86be63ddd8464402529d55e9", + "regex": "(?i)^https?\\:\\/\\/playcraked9\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "246d34ae1b7545f8de89a16799907777732496c535ec17183acf96f84716fb7c", + "regex": "." + }, + { + "hash": "4bb16d0c6ac342ba0f83e6da2070beed8214ec58fead19334326b8e9ab9521c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b9a20826b09fb6c175965d7910006e0935b76e5bce5530264664ad684d1b7fd", + "regex": "(?i)^https?\\:\\/\\/vanshikapal2807\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "faa5548747a2e2466b5a3db97d6afa38c28dcd1864bf1cb7af03476510d510b5", + "regex": "." + }, + { + "hash": "93ae735e8e9b80684a4d35953112d8ca6a8ed468c86ec138bc6d138538385dbd", + "regex": "." + }, + { + "hash": "a5d6b5f10d0fb71569a0763201ae35e2239c6acefdbc5ff81e87fd96ee6b781b", + "regex": "." + }, + { + "hash": "587f926aaad092dfc0c097024f1903767cf692225a616962cd26b89d402dfd72", + "regex": "(?i)^https?\\:\\/\\/pub\\-39b360fbb4524e5399115d00cd9cf5f8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a0c0e8acc2af7f33876afc7d716dd2147243a83370b3bffa327dbc7fe7069b6e", + "regex": "." + }, + { + "hash": "30c7a792a16f39e5bb347b64aa4289e9b3890b050d5810b814fb9b02e1bc7b75", + "regex": "(?i)^https?\\:\\/\\/pub\\-c588e5db4e834f2b872630c295c3c56d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "463b523dd689fef36c1639c670da917a8b9045802fd3c761398de191190943a4", + "regex": "." + }, + { + "hash": "7b4d42f0e2cf7c09a9de1429de7563daa305d5c31a16c4b6989c31b8aec8f50d", + "regex": "(?i)^https?\\:\\/\\/pub\\-1205e13d8b12466aafced3233cd50018\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c4a46628d694b0862f474d45297426bb758c76bccee75ca9ceddfa4b151f9bc6", + "regex": "." + }, + { + "hash": "252a4abd132dc1e033172e5c7831ce4242fed64eccf28cdfd937678ab10259c0", + "regex": "(?i)^https?\\:\\/\\/aditibhatt2003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d3694514f2b9f327f7714cce0e85bda088afd9c5bac1c803fef65ec22079783a", + "regex": "(?i)^https?\\:\\/\\/starlinkbr\\.xyz(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7fb8ba92f5ea91b6fa558d9a1fb8fa9529875b801d52861a7626d6b3f9a44436", + "regex": "." + }, + { + "hash": "d9d4caf90ad03f8e24ee0b5caff98a696a97e1ff24fba88cf92fe1858f92760d", + "regex": "." + }, + { + "hash": "a822e6d3a9ea8115516b0b144ebd10b44c69eb73ad30eccacae0895eab15bc14", + "regex": "." + }, + { + "hash": "0b2787ec47eb170c47c54f56df228d6110bca64bf2acc8dde4788161ff04a640", + "regex": "(?i)^https?\\:\\/\\/pub\\-8ba5882cb1e24658acaa8bfe3f593264\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ffd1674ef26b4944fd91a1c80fb7488400d5d085d46060ec31c59c867472750e", + "regex": "." + }, + { + "hash": "fa9a23390f825edea88e7c97538d17584e7bf31af68cdf7967e4426d3224153e", + "regex": "." + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+6nDPc(?:\\?|$)" + }, + { + "hash": "3a740c2efe05a11ce5bfba312cbaef78e1ed450075185b8d359ca72e444a0b35", + "regex": "." + }, + { + "hash": "082e7c4aba18934f84a1e7c02631ad9c7cc0360c423bda3517092e97754e55a6", + "regex": "." + }, + { + "hash": "37f2f036dc60b28d894b96cd9aa89eff445a06c3d6d51cc4a4ef765e8256c250", + "regex": "." + }, + { + "hash": "0889fdf2f19d89b3a88d830ce361b9ed41c6788a9ba572fed9084ae4edff163a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "579a625149ad93006baf05f8f162c856efc324abd2935d1e17f6ab439c16879d", + "regex": "." + }, + { + "hash": "5aa5ab8bb880b25ba665ecf9cfbfa3bba75962df84a697a1a3e9856acd490556", + "regex": "." + }, + { + "hash": "ebc56e843d964a397b1f2f13afac3759ae40c13b2841cf8e7d9e717b3ee51156", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?adjust_t\\=q604b4\\&adjust_deeplink\\=mrdfood\\:[\\/\\\\]+\\&adjust_engagement_type\\=fallback_click\\&adjust_fallback\\=https\\:[\\/\\\\]+tewwooweppwkwerowwiuqe\\.pages\\.dev[\\/\\\\]+$" + }, + { + "hash": "fa8c7051b5d078e05b311c8f9af9a1760bf37a4b045c6e5aa98a8d097e6e748e", + "regex": "." + }, + { + "hash": "1dfa76a5ccb1d3aa503151a1cfedf9cd70cb42a174e212dc6f019d6111920545", + "regex": "(?i)^https?\\:\\/\\/pub\\-cebfd5b3ee454621ae4632140c7ec901\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e01ebfaf73dbbe7bfb95247ebac88e74f5431cce5630da59224b3bab1b8cfb5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dn88i(?:\\?|$)" + }, + { + "hash": "1bb0afffb369cce82b39f2b465931ec802a3a19e627d3a77dd2bd3a4a5d19d66", + "regex": "." + }, + { + "hash": "e01ebfaf73dbbe7bfb95247ebac88e74f5431cce5630da59224b3bab1b8cfb5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9363df838914a5f59aedb4c1a7f91094cb8ac4fdb8833c164e83be6b59ee0902", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+tj\\?type\\=seo5\\&hi\\=1720893362$" + }, + { + "hash": "8d64502b0846ecfad15d1fbf54f165cf4b425c0c55c351d9f7c313432fe1cf10", + "regex": "." + }, + { + "hash": "260e381e81c8c967581ff70bf4aa8df7bf078d8b7b2042880e318521ee9b6de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+100820351[\\/\\\\]+299419[\\/\\\\]+2(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a2261389047a525b1bd59694f5e55f8c50956f7e5ede4b938ec0833dc53a5061", + "regex": "(?i)^https?\\:\\/\\/anupd143\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "628cc9359f58e251f325cb2fb0530764af19e96f3e822278c2b234c9bbf1a190", + "regex": "(?i)^https?\\:\\/\\/hhdfhdfh4554\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1a8c9d525be3caada2df2f32088c81929932fd4a881d0f8b59d02094e8265993", + "regex": "(?i)^https?\\:\\/\\/khushi407\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "260e381e81c8c967581ff70bf4aa8df7bf078d8b7b2042880e318521ee9b6de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+100820351[\\/\\\\]+299419[\\/\\\\]+3(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f94886a8c7f10ba04b230bdaf606648acad2a907b6e4b23f494059848237f66c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+100820351[\\/\\\\]+299419[\\/\\\\]+3(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f214b1dd8da03f220734f51428e7b9521abd9beb2757aa0c4a0a1153e74e62ad", + "regex": "." + }, + { + "hash": "f94886a8c7f10ba04b230bdaf606648acad2a907b6e4b23f494059848237f66c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+100820351[\\/\\\\]+299419[\\/\\\\]+2(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "260e381e81c8c967581ff70bf4aa8df7bf078d8b7b2042880e318521ee9b6de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+101517614[\\/\\\\]+299419[\\/\\\\]+3(?:\\?|$)" + }, + { + "hash": "f94886a8c7f10ba04b230bdaf606648acad2a907b6e4b23f494059848237f66c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+101517614[\\/\\\\]+299419[\\/\\\\]+2(?:\\?|$)" + }, + { + "hash": "0c0e0041c19b2f368b504ad10fd41c8d81468597a58e4dddd21983b529d7e478", + "regex": "(?i)^https?\\:\\/\\/cschneider01\\.bitbucket\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "054de8af049344a7e5be2cb8a95e5fc16ea097c0364e3a55ca977e019528e1bc", + "regex": "." + }, + { + "hash": "a6bfe77ff2ffba79c4e2527b272b274d27d361cf42fac2c62d7b85eaa3444551", + "regex": "." + }, + { + "hash": "260e381e81c8c967581ff70bf4aa8df7bf078d8b7b2042880e318521ee9b6de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+101517614[\\/\\\\]+299419[\\/\\\\]+2(?:\\?|$)" + }, + { + "hash": "6ae4e159eb52b089a8bce0549340e743a6e08392a92f4f713f1a627eaef0e68e", + "regex": "." + }, + { + "hash": "60fce90d3a337eef415bf7c46b218ffd83fc5b1897bd709b2416cd79d78351a4", + "regex": "." + }, + { + "hash": "f94886a8c7f10ba04b230bdaf606648acad2a907b6e4b23f494059848237f66c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+101517614[\\/\\\\]+299419[\\/\\\\]+3(?:\\?|$)" + }, + { + "hash": "5044edd85cc03c0eefe7a5a84be5275211bfec951fb12c80e24ffa84c435992d", + "regex": "(?i)^https?\\:\\/\\/mailboxx\\-107705\\-102001\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f77621b520404ea85fcf826f5475392a3553d32fced9cc20fd27abc8fb2d9795", + "regex": "(?i)^https?\\:\\/\\/muhibkhan999\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d51133ff158f4c28bafd8add4bdaac35df9269fc3222f1b6cdfd57735fd24ec3", + "regex": "(?i)^https?\\:\\/\\/leafpotent177\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "95c53d5b4ec6ad37dd07c3eb3f8f91b874cf13d33952363efa260e31508eae57", + "regex": "." + }, + { + "hash": "42a726d4d59154f84957192c7dfc4d1648cfd8e62ade9b7bc3b281a96011f079", + "regex": "." + }, + { + "hash": "5a208c52aaf68bdf629855369eefae6e97763bfdfe64d33dbcb76dda5ee01454", + "regex": "." + }, + { + "hash": "23124c5520a7b0c01a6d63610b8b0c707a059048834ed05954612c4debb2a0ec", + "regex": "(?i)^https?\\:\\/\\/pub\\-3a53a7cf3a0b4338bb12fe3309cf39bf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b400e5a94fdc00d1c21fb6a071c02b7b34f89807583d828e0f7d1cacb5806cfa", + "regex": "(?i)^https?\\:\\/\\/pub\\-2e6c9c36082d452f87000a510f5a247b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bdd5369f36d644b9d04ad7e48d35d01eb109257b5a075e357a10dd82edec6377", + "regex": "(?i)^https?\\:\\/\\/hometycoon20secretbadge\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7b5e56a1f04b74c1a70f57fd350a9481893efe7840245180256c60386dbe7dba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dcb98\\&id\\=flibustiers\\.be$" + }, + { + "hash": "f0644ea83e29b35184b395f728c4135af00898187dcd316cb1dc9ca0d6e1d174", + "regex": "(?i)^https?\\:\\/\\/dfdbgdfjhfjdgfd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "de236b8e0d20b714657dd60e32dfb4c77c1cf8709a11f57e5fc3d02f23b89b67", + "regex": "(?i)^https?\\:\\/\\/pub\\-98fb6357809143dba61056ed7f273357\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bradescobiainforma(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1778527f837ab45f38991de980c22e5c04335078f37c184949e05a47509cae62", + "regex": "(?i)^https?\\:\\/\\/dfdbgdfjhfjdgfd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8617e836f0587d63e124aaec5fb75d479777e337c6c847d52bcb7b68740169a9", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ee2f56b7d424f34cd69fcb7a5763280f2804afc7f684ebf5c97019170c57d920", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "96505e5c8f9570ebe425a06be77cecabcaf5bef93ffe1681f3be11868ad54c64", + "regex": "(?i)^https?\\:\\/\\/dfdbgdfjhfjdgfd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "68537fb9b37c56c3508515513ab6991d6ef858c6d606e7d34a55ce60dbf19ca7", + "regex": "(?i)^https?\\:\\/\\/dfdbgdfjhfjdgfd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a84a6d1d593a13ab876847b92a9f38ad41c621fbc88cad4e9af16b95760d3651", + "regex": "(?i)^https?\\:\\/\\/dfdbgdfjhfjdgfd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a2fea1e2d304d49fd331c1d618d79cbe5bff05d276d6d56441f59a839087a184", + "regex": "." + }, + { + "hash": "d6e73e518572f1cb61a259f36d6e7e10ad473d0583bdcc483222a3a1aab9b759", + "regex": "(?i)^https?\\:\\/\\/verificacionbancolombia\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b97ef5c846656fac0f254da42402c563e811b0c1a0701b68d115ddcc2347a5cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?033d0\\&id\\=christann\\.be$" + }, + { + "hash": "20824bce8684966ef89c5bbdba772ed8c9fcc83c719a47a190423b594311f1c0", + "regex": "(?i)^https?\\:\\/\\/dfdbgdfjhfjdgfd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d2fac61f8fda0dd4abb0172e16ab5d27669dd04bde0144bc96bf83e1d6a5d1eb", + "regex": "(?i)^https?\\:\\/\\/pub\\-7af98fa1e7ec4a59b854e47c6554bd70\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "04639263cfacecf9ee4506a4565cdb1877db2392ad30a94e8223583b3e37895e", + "regex": "(?i)^https?\\:\\/\\/verificacionbancolombia\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f1bb9ffaa3a46b9ed428153f24a4b36f890214b46bdca187f7822cf904a17fa8", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ac70711f60a3716ddc34072d47db40e527baa9a184daf92ed98506e9533db881", + "regex": "." + }, + { + "hash": "8ad412b38e684be0b25a78e0f0571f4d40dc8227a26312934ca65dbb6424aca3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?17111\\&id\\=craftertech\\.be$" + }, + { + "hash": "31c45205c895dd3b34ed90b7715544256a1a63ca7f13958aa1586a079df73c24", + "regex": "." + }, + { + "hash": "d69997added64e2a2476b5690855c2c15da33cdfc9c1c31741a692693645d4a1", + "regex": "(?i)^https?\\:\\/\\/currentlymail204452\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bc55a39de339b4f44f3aab4c2670603acd26ed6fca9aef7ebc4aaa2db331139f", + "regex": "." + }, + { + "hash": "e973eec14268861032ea61c23b9abf866f20fee2cea1f2636da986c3be1ba8c0", + "regex": "." + }, + { + "hash": "cc6721993e44f2633767e8ba087df48ee80cf87d94e2de887368c06541f1db73", + "regex": "." + }, + { + "hash": "80d5f29479697476aa5943e7087082840afaf4753c8ae6104da2e9fb473ca8c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c1339189fb6ed4ca46e21e33c1fd1051606d1e92aac00e3f1301fc40600fb841", + "regex": "." + }, + { + "hash": "9dd87147c4e976c1a73fcf3c75a97822af420227780182ab10e582ef0303a4e8", + "regex": "(?i)^https?\\:\\/\\/sapnak04\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a8b82cd9cb3178de7f1f6a032392272cb1c0a6abe079857fd70cad1df88ec669", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?47b98\\&id\\=flibustiers\\.be$" + }, + { + "hash": "1b895fdd83bedeffb8be4d5fa4fc716d0e9b4bacbe87672886bbb1163847432a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs" + }, + { + "hash": "46e21839537de9167524ee9a23ca1c357c95749d69a82443788e84a6c33fcc45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs" + }, + { + "hash": "eecd15630fbd19e289413ae631c7fc58bb0d651bcaea761d5318cc167ae3ffb4", + "regex": "(?i)^https?\\:\\/\\/pub\\-787ee214ff324be9af787efb3b769d92\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1a8a40a547d9a5de5bf87734b1e90ad3f0597f0a8df1ec499f8dc400cf85364a", + "regex": "(?i)^https?\\:\\/\\/orange4d2\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "493bd885c21b753c018171630cab1e6af8db7a89ea9a9d91fcbf84ed89a7c946", + "regex": "(?i)^https?\\:\\/\\/pub\\-325b3fab7cf74c428f7b139f7e2b0c4d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "900e1f5c91231d1995abb8df1da75f927c93a158d625a8990917007c51f32cbb", + "regex": "(?i)^https?\\:\\/\\/978784\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c6c3760ba62a09d6bebac886b5743727b4cd0525c69f8a3740c02543702ac939", + "regex": "(?i)^https?\\:\\/\\/pub\\-98f2ba070ae94d53bd37534faf26c932\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6bf5057341afebf54c506e6043138c8281f5f8ad50252168f92222d03bae94c8", + "regex": "(?i)^https?\\:\\/\\/crimsoncross598\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2bccaca7fb059cd0e75f3d38ecf71bb36bf315f8e0c8c8776cf5faf864d18793", + "regex": "(?i)^https?\\:\\/\\/vishalyadav30301\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a083e466d473efa021f6769069c38059b72f453f7a526161df114057d0c75259", + "regex": "." + }, + { + "hash": "11bcdf2badbb5eef6f450c4e9100047bde16112f839bc4b101167152d62f7124", + "regex": "(?i)^https?\\:\\/\\/978784\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1e112e7220ea6269d2e0ede96bd1946c3945e522721ad2efa0f1ae0f16e94057", + "regex": "." + }, + { + "hash": "71b893c352a6ba306ab7d9b597264cfaac0a2d9be2cf9f677a6dedaa1d5a989b", + "regex": "(?i)^https?\\:\\/\\/currently8771\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7283908047af1d7c01fbfa79583719d37fba577797d9ee5ddcdca8a6f0c8538a", + "regex": "." + }, + { + "hash": "d83452018343ffdc6c2dd8a04600d0b881062560043fe687765ab9aa525c4585", + "regex": "." + }, + { + "hash": "4ecc10ea19c3a45b9c456cb9d9013da6a85ab6c6093af33ba8e2573a83cebb68", + "regex": "." + }, + { + "hash": "9f3141d4db2b8eaeae2cda028d9d3095872468d022b6fc0d81628f2ed3b656c0", + "regex": "." + }, + { + "hash": "49c09c07330f1164d5573116d9ff7c0bcb2be62fa1464242e60e427a37bef793", + "regex": "(?i)^https?\\:\\/\\/anasrizwan25\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "84a3cb5cd584b2a156b34a9e4200b28c6cfbd56dc56c4fc3b5964877d7573eb1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "2847379472e47d99cd84b6750304721d5259602664c59774c4f55f34d1eeced1", + "regex": "." + }, + { + "hash": "3f16415dbab2e4d670508e35f7b3c993523e6885250ea10e7bcd6ce161b75818", + "regex": "." + }, + { + "hash": "be5c897195c9f18849d1d62771623a9fed06e65bbcd2df4a498e0190ec678e32", + "regex": "." + }, + { + "hash": "62428127a20cccc8403ab917848d70e961101bf5aac2fd28d84bf5a0bdedb617", + "regex": "." + }, + { + "hash": "33bb66648b335cbd62ec8f71261c2298ac9cb23515b3a84cbcae3a49d4530f2b", + "regex": "." + }, + { + "hash": "4e818328857062407c3d680db820e696ede7891b008708f7418d8794ea22b1ef", + "regex": "(?i)^https?\\:\\/\\/yahk\\.tuhoqygo1642\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ac93ff5f8209fc0ca95b2e515db17d46ee548ebc82af14ffeb12be9943cc75f", + "regex": "." + }, + { + "hash": "ff1c88a89703a1ea010f09d136bf62f581592b0d376e72688c673689b94f8e7a", + "regex": "." + }, + { + "hash": "98e5454819fb9379f3e44ca3b40641b21631e9160ef36f2d26aa270b35e0d366", + "regex": "(?i)^https?\\:\\/\\/mailatt00gfmank85387sfyruk53k538gfddddmank85387sfyruk53fatt\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a99a96201418dc063c6b0e7aece48dc4d041ac77aa0ed94a81afe612be89b017", + "regex": "." + }, + { + "hash": "2413aea6504636f4ae1d4e6f3945fd8b2086227789bad6c32466a8adc0ccd7b0", + "regex": "." + }, + { + "hash": "80efd29995d0edfa35add291e7054603608597d3fcb661ab8306c4564e50ba29", + "regex": "." + }, + { + "hash": "1c515e9bd4a73087eb67c0cb95501a0031db7404d92311a50d8df5a3337d11ee", + "regex": "." + }, + { + "hash": "d59ffba205029f61b2bcb573869c5f3dfe68412afa12ec3f96d0b5ba3ca77af8", + "regex": "." + }, + { + "hash": "f9b08dc2185721b9795914e3c1b6e716bb636d2cf88939b0d3037973f0dcb7d3", + "regex": "." + }, + { + "hash": "264e79a4fbe13378dd5daf232e57710294fe92828bbb5382aef578a3f5ac7af1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pa(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88008ba781bd246044289ab64d699718b762ee76afb31f3a2e58a1953e8c9fa2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs" + }, + { + "hash": "1924cb4f5d150590f19c36050c1131229bae2d2a8a599b6ff4ce7d08c2d33501", + "regex": "." + }, + { + "hash": "16942f104bc8cf8333b9113776652c92fa90b75906940e590676735fded223b0", + "regex": "." + }, + { + "hash": "2084c92ae3d80428c22b5c54e3621f285bb2b51679f4d2017f188ba25b96f7dd", + "regex": "(?i)^https?\\:\\/\\/pub\\-389d64919a554cc4956fa6bcb19fb720\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bb25858da263fcc6be65e7327d3b475d9f420f2e3db059e4224a850fa7dec348", + "regex": "(?i)^https?\\:\\/\\/ogerz3\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0fcdf90ed2f7b40a19be80fdc031adac8fecfd07168de2f38f8a4b50d4d632e7", + "regex": "." + }, + { + "hash": "151b1627824250352ff91c25bad0edee32411b250ea6b678e32b54b77634f938", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+csr[\\/\\\\]+society[\\/\\\\]+disaster\\-relief(?:\\?|$)" + }, + { + "hash": "ca5fadbc0f844c437eb1bf47b4e63d5eb0e6476aacdbad6fc6b59c1ea00da48b", + "regex": "(?i)^https?\\:\\/\\/pub\\-655b51fd9fba444488fc34cfb2f2b404\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dae3d6db785e4d11c9718933fd14ab915fcdcef9ed304adf34a1b33ac0b296f6", + "regex": "." + }, + { + "hash": "7be484a1f1d93c470f84f699a6f789057842b67b401e65533eb792b8ee5b1b0d", + "regex": "(?i)^https?\\:\\/\\/fasrlove945\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "df1afd57f42ef816780a46f9c24e04afbc1b898210f5efd809fdf8c35c29c643", + "regex": "." + }, + { + "hash": "a50c02ad23f0b491b065f228a139b793d930c65e1cadfcca9df05aa326631c47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?963b5\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "297c092fc1525111b44a05550d87e8ee11115a83da4a16655406d60a6b8d9b38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?578c8\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "ea893d8fe12d7138eda5380cb6d5f10fb7cc2d9046dee1016cd3213bbd2bc720", + "regex": "." + }, + { + "hash": "28de3d8c52d0b157af0672bf86144e2d48a5b3de8eb258ada357fff2998b531e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0f7e2\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "a50c02ad23f0b491b065f228a139b793d930c65e1cadfcca9df05aa326631c47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0f7e2\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "845430df5c0bfd05cb13a18211d365000584a833ce768c087fbae1dc0121f8b8", + "regex": "." + }, + { + "hash": "5506fff78c6f8da59e591ce77185f74f244ff7471354d5a7c19eb8bef1496ade", + "regex": "(?i)^https?\\:\\/\\/pub\\-3633688b750649e98b9190a8211c5603\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b6cc2533ba38615ba9dc1bbbd8c431d600a27e1ef4dd8e48444ff0e1914b31e1", + "regex": "." + }, + { + "hash": "337c421ce5cce689185c58e48620eb45186a9e328f505a6f9614ed36218cdcfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4123a\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "8eab8a9b654f23911d95254e2f07989dc249b0d99824b159c1ec9be0a17301a3", + "regex": "(?i)^https?\\:\\/\\/altkortran1\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "02a489f89758a2d906a0fa62deed3a1d602309cde911fcd37b2e278e9f30a2d8", + "regex": "(?i)^https?\\:\\/\\/freskin243\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "30a733a1bb7d604e0957436b94dab7a20ae19b1faadbbd57c62b85ebf8d7aed3", + "regex": "." + }, + { + "hash": "6eb0ce63ca9339973fa9a623e3f7986ba4d26e2addd467b1494bd1966aed73bc", + "regex": "." + }, + { + "hash": "042660890923678fe22e59c013affb1339f8d9546218f18ae5cc5e935d2f2b1c", + "regex": "(?i)^https?\\:\\/\\/alkurtran4\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "897aabc7360936498e47ed876f5e77c7f6fe8a217973850ed11c05361c893af7", + "regex": "(?i)^https?\\:\\/\\/pub\\-afbb25b4efda49d0a95fe24ff69abfd3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31c8a\\&id\\=energiepro\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eba8f\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?41fa9\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "93abcdc1497b8492575157526605d72755b30e1fc8bd83b8097af64b1980dfdc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?daf27\\&id\\=leschevaux\\.be$" + }, + { + "hash": "20f77cfdb9ab47528a1b16e2d964d3afab92bdcf602770f45d7651a99e209f6e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?de066\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?53d27\\&id\\=cbemol\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4a824\\&id\\=cbfs\\.be$" + }, + { + "hash": "06edc1db191fb53037882ff9a92ee2f7ba631e32a4e16b75fec53171b959cba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\?user\\-agent\\=Mozilla\\%252F5\\.0\\%2B\\%2528Windows\\%2BNT\\%2B10\\.0\\%253B\\%2BWin64\\%253B\\%2Bx64\\%2529\\%2BAppleWebKit\\%252F537\\.36\\%2B\\%2528KHTML\\%252C\\%2Blike\\%2BGecko\\%2529\\%2BChrome\\%252F86\\.0\\.4240\\.75\\%2BSafari\\%252F537\\.36$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5862f\\&id\\=acejoigny\\.fr$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7a51a\\&id\\=cbemol\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bf9f3\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6bf0c\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "9f627c59d8852eba841f5dba9ca465521aa3a09747d6132fc6b8e7595d823242", + "regex": "." + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ec479\\&id\\=energiepro\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fc478\\&id\\=alain\\-photography\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a2664\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0dc78\\&id\\=leschevaux\\.be$" + }, + { + "hash": "26009aecff914106abf3fd2bfe2b1233ef6ae7263cb5b46e861c1d3bd45ecc75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eea02\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?19a4f\\&id\\=cbfs\\.be$" + }, + { + "hash": "2ba9d496ee02378a20746760012f0bd1e0b14757a66a9a61ee59228d6f598e94", + "regex": "." + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d40e\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?19ec7\\&id\\=alain\\-photography\\.be$" + }, + { + "hash": "bdc31c17eefce31e6248bdb63d2b069a74f4afc3e7a3d51a9c76fd1fbed543c6", + "regex": "." + }, + { + "hash": "96cfdd6a20f07007d57a22ce92425111fecea19cc0eb8467c4c35c1e299af33d", + "regex": "(?i)^https?\\:\\/\\/currentlyattmail202313\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5d4b2\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eddce\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4ae9f\\&id\\=cbemol\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d89f6\\&id\\=acejoigny\\.fr$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12ab6\\&id\\=alain\\-photography\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?19635\\&id\\=alain\\-photography\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2d73e\\&id\\=dreamaccess\\.fr$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7d0f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?08457\\&id\\=cbemol\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5c6c4\\&id\\=ades\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cba5a\\&id\\=uninformaticiendansmonsalon\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c6d7d\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?21eb8\\&id\\=acejoigny\\.fr$" + }, + { + "hash": "a88c155cb376cc305adaef675d467d4a8ef4c6c3ac05df27ace6d0fb60ca699b", + "regex": "(?i)^https?\\:\\/\\/edus3k\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e1294\\&id\\=alain\\-photography\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ceb95\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e6418\\&id\\=bee\\-lieve\\.be$" + }, + { + "hash": "f4c98e8e4fbb6394d0ef0e3dfe384b93b81f988eb56461b88fe98dd4defa7735", + "regex": "." + }, + { + "hash": "d8cfc16be3fcb1f1ddac48e3ac3fa410fddd7a4dc00aa85faf6b3b7ed5f98e6f", + "regex": "(?i)^https?\\:\\/\\/pub\\-ba2048e83ec34d80a2060ca2144108e8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84ab\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20290\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8ed7c\\&id\\=leschevaux\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ee108\\&id\\=acejoigny\\.fr$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd911\\&id\\=rogercomputer\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ab2d2\\&id\\=bee\\-lieve\\.be$" + }, + { + "hash": "2ebe8dcdc254ff962b6be3bbc288a5af4613636c77f669a136dd33987d5f0ece", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\?user\\-agent\\=Mozilla\\%2F5\\.0(?:\\ |\\%20|\\+)+(?:\\(|\\%28)Windows(?:\\ |\\%20|\\+)+NT(?:\\ |\\%20|\\+)+10\\.0\\%3B(?:\\ |\\%20|\\+)+Win64\\%3B(?:\\ |\\%20|\\+)+x64(?:\\)|\\%29)(?:\\ |\\%20|\\+)+AppleWebKit\\%2F537\\.36(?:\\ |\\%20|\\+)+(?:\\(|\\%28)KHTML\\%2C(?:\\ |\\%20|\\+)+like(?:\\ |\\%20|\\+)+Gecko(?:\\)|\\%29)(?:\\ |\\%20|\\+)+Chrome\\%2F86\\.0\\.4240\\.75(?:\\ |\\%20|\\+)+Safari\\%2F537\\.36$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5794c\\&id\\=uninformaticiendansmonsalon\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0c808\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D092070\\%26redir\\%3D\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2Fbafybeice536ciuhj4zlpsufcahszholcy2bbs2znubh42l6ewtdt4kabgi\\%2F$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "5e4a21bd615bfbef34d6227165e456336d6c58cf61b89e0a158918382c8c1bfe", + "regex": "." + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "626f56afbe6e2a6b83d6a5930c95bea65775e806e79c6ed7d431b2c9f98771bc", + "regex": "." + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2a48927718449b598ff4defa2733d915e460fe21f5b8bd6549c90059c0677f9e", + "regex": "." + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "07a9538211245868efea7996182d8ddf0e27928689f0387b387f704873cc48ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7d4\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9640c\\&id\\=leschevaux\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?217bc\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "8f6c361281cde147c3f75bff19b3b5aac5d44416ac5527a3ca1b7de9194360e9", + "regex": "(?i)^https?\\:\\/\\/youparth18\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5c6c9\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9640c\\&id\\=leschevaux\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2ebe8dcdc254ff962b6be3bbc288a5af4613636c77f669a136dd33987d5f0ece", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\?user\\-agent\\=Mozilla\\%252F5\\.0\\%2B\\%2528Windows\\%2BNT\\%2B10\\.0\\%253B\\%2BWin64\\%253B\\%2Bx64\\%2529\\%2BAppleWebKit\\%252F537\\.36\\%2B\\%2528KHTML\\%252C\\%2Blike\\%2BGecko\\%2529\\%2BChrome\\%252F86\\.0\\.4240\\.75\\%2BSafari\\%252F537\\.36$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "d841caf2c06cfabb149b9dffe8d2acc607d798b3f574b7713503013fc27a74a9", + "regex": "(?i)^https?\\:\\/\\/pub\\-3e34d4781ba64844977638176f35a8c4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D092070\\%2526redir\\%253D\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252Fbafybeice536ciuhj4zlpsufcahszholcy2bbs2znubh42l6ewtdt4kabgi\\%252F$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?14b3f\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?64442\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5c6c9\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "e3fc42ec046fe32054fcc8336daa4fd79642cfdc27e04fda7d7a08ccf4c4d4bf", + "regex": "." + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9640c\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0c808\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5c6c9\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "548fb6127648ef26f1c912ff0ae485f113fff8687168db05663011a655bca281", + "regex": "." + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?64442\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0c808\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?217bc\\&id\\=leschevaux\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5c6c9\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "deb6e119fb9fbea3faf3e94b4c3b09e0af1185dd3d5d6107758dda6075bb0ee5", + "regex": "(?i)^https?\\:\\/\\/pub\\-d5ddd8fab6604524b4e20c1eb1291a7c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?217bc\\&id\\=leschevaux\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2916c74714565df1e902ac5f6886dc1d446edfcd25286a4e54a59180314c4992", + "regex": "(?i)^https?\\:\\/\\/pub\\-df069c9448474a629c30122449dc5a19\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "9fce65d6d40fdc0cc193f27c38b6af07373d2fc9651fa97cdf8b38358f893e16", + "regex": "." + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?217bc\\&id\\=leschevaux\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7d4\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "96466186b6eb95d2c2c0055a1ca3cd4fc3ba85d452e13bf7ea9c84a5ebe6f4b6", + "regex": "." + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?217bc\\&id\\=leschevaux\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5c6c9\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "bb3dce1954253f9a7ca79680af2a3e91a0d964e7a2b4a1bcb1ea5696359cf3e4", + "regex": "." + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=092070\\&redir\\=[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafybeice536ciuhj4zlpsufcahszholcy2bbs2znubh42l6ewtdt4kabgi[\\/\\\\]+$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7d4\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0c808\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9fe1f\\&id\\=leschevaux\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f1a3d679e465532a0da8135a3e0ee6c4882bc89eb09eb81fcbb1bb26411aa14d", + "regex": "(?i)^https?\\:\\/\\/208gopal\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?64442\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "20721b7f406ce78cd54b159b944cfce00d09bd3d16e96535a677ee1828233c03", + "regex": "(?i)^https?\\:\\/\\/merlin\\-04\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ff3a9\\&id\\=energiepro\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6e709\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?64442\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f2325\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42699\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f7\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0f86a\\&id\\=lesaiglons\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d9683\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2ab29\\&id\\=leschevaux\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?325a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?07926\\&id\\=leschevaux\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4e98d\\&id\\=gangdesvieuxencolere\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?929f1\\&id\\=leschevaux\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a5c0b\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f148c\\&id\\=asptt\\-lillemetropole\\-golf\\.fr$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?27592\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c9a66\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?165fe\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "3f73b87ed41dda3b87fc74a801a93a385f17f21b6601ef2b16eeb7aef85eb916", + "regex": "(?i)^https?\\:\\/\\/www\\.imtokend\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "d80ffeb5e627b8a42a6c399412396b2a4862abb538247b37c4af74d8d15be879", + "regex": "(?i)^https?\\:\\/\\/multifilesray259\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?46b46\\&id\\=galileopb\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?46b46\\&id\\=galileopb\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c9a66\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?903e5\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?165fe\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5d670\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?165fe\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "7cdc180b244d723cc18981aabf110a5d8412a1a18e621a4e3e19c94a7ccd2348", + "regex": "." + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?46b46\\&id\\=galileopb\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?46b46\\&id\\=galileopb\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86b53\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?46b46\\&id\\=galileopb\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0d77e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0d77e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fc5e7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0d77e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?165fe\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?65f00\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1b04065b4160c05d3224c15bd8337ddff5d88fc15f8edfffaba17d99fb8852d3", + "regex": "(?i)^https?\\:\\/\\/credittree166\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?165fe\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?165fe\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "74819ae86676b586565f2e444a89917d0c3839860ab474665f61ad1e7606fab3", + "regex": "." + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?165fe\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0d77e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fffea\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fffea\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c9a66\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0d77e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?830f9\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "65418f4d852b14baca89c2a870b784511fe0dc33cde1c76c73d3417557899fb6", + "regex": "." + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0d77e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b7235\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "0b0c2f358e374484cf0beed7e68589c2a3fab676df348eb346fcae4ede144d7d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wsoditz1\\.php(?:\\?|$)" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "db1b52e7bd9ffa3bab1c506aeb833f976ae0ca777ce5d2ed3146063955b49cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4b293\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cdf1f\\&id\\=galileopb\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "b3e5827799c9d0840074572019620746a7b61d2dc69e1ecd83e22450c350a491", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?156b6\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "67131f8f98f1cea818c9f0a8eb3e26aa82a0eb3f6ec9cae22d6e88d8ce44f59a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f4d2e\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9d1eb\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86b53\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ade7a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "09c398df81385743fa1c6179cc08f6e1fe7395880f3a2c2d6f5626de4b0d4240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?165fe\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?141fb\\&id\\=galileopb\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb303\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a3be5\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f405\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "58267e033ec412091695fb7ad02f8dcbb6b780f561ab3d82cf48be893e876650", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f165e\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3020e\\&id\\=galileopb\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?89842\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?54969\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4344\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "13aaa47680ba5e6d3ad06835cca7fdeaa69e4096d73c0df84ba1a90f7d3bb9c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d303\\&id\\=galileopb\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?98ccf\\&id\\=galileopb\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?71f9f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "46e24c74ce5eaae0341d00ceffe6dd28adc46a6f376d26641428fd7fb61f4e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a6268\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "87003c5fb78a9c9ac3311968979148498d86c0f4435bdff371aa81c938cfee6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cf92b\\&id\\=guimmo\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fffea\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e4c1c\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?56236\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3b776\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7c7b7\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "82cc883aac52d2a3c3adea03556974bb4233ec14324db3dc62b1be26dca60278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=guimmo\\.be$" + }, + { + "hash": "ebfae95225a769318b7688f4f16cae94c14f931bc2d7442f27c4cac0af1e3976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?596a2\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fffea\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bfa91\\&id\\=galileopb\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?90671\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dc645\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4411a\\&id\\=jfgexpertisecomptable\\.be$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7804c\\&id\\=galileopb\\.be$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f882a\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31b5f\\&id\\=gilmonnier\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c089f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "0a6ff9e9bb03e6a58cad77448f996d724ae1267691a1614841cd093b0826e881", + "regex": "." + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?69e11\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "fcc6c7d2e5c5ff265afd09155357407ac1c284ea0475648215ab0ef4d5af6037", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "c5aec108909e8fe212f90f622d9dd440137f17264a7c77afa7c1854c96fd5467", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c089f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0e01f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2aee4d9d986df4ae05ca8696fe9115dab3cea1dbb66b1cae6111148e85722a5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b9516\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8c29f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "964735668aa4e5644155c00cd4e1a414f06e8e0a3114da2104c1578c6dae3ccb", + "regex": "." + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "88d826e72a231bca506041646dd1f13f11b57f4ca93ee0f861c7a95e8626e4ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "4e6f6bf7c114e3d666ed26937b997cb1f1cc10f017623e1500ab40c60d4c448c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?79988\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8c29f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "2af070ee4da6fe72e4395a847d575ff35b4d09a0e4e5188e77f2caecdd483d5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "7ce2f04bc86513dddf2fd4df6ebca333154d7c5b024bf091eb0fe5dae676c9ff", + "regex": "." + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0e01f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "87123e9ff109dc82b98594456933418c0b83a9938522df13d06b304619a8cd75", + "regex": "." + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "6f9ad6a0b6021f3987a7ff42c23251e523e70bec7fea7078b0ad8f92bf79759e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e7299\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c089f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "5c3314086e8236b43bd5f23649a71494f954555d932bc3459c32ddd306507c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?741df\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d7eed20add5df2a2a7eb3dc535ae2411aad9d323ccbd28e26bb99c27d088c791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "ad856dc529e1222338bf91b2a568b293b3680c5dd91ab7d65372028a7e5beaa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "419ae2a244c0f82709028e390d5b42ad6a4e2c610831cc33f8b7d5eca7cb9ae8", + "regex": "(?i)^https?\\:\\/\\/pub\\-8f29c2a1f65c4442b1cef9fbde9ff26a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5cb65608ff84fe13cc4cc19fcdab476291813d13bc1e068823d05ac1813d6e87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c089f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8995f4081e1de9163b432f86b2a4326b4485e04798fe4c99de6f68facdf5ff97", + "regex": "." + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "50640b88396bdb1d782750832f112a68ae0a0c079c273d644627c4dd915f7222", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1d6c0e7b99ea76478820e24d69466193820b4d82da428cac1778738a94a405b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f6d76092c0fc4c83ff0aa4baff9cbab33e528c07afb8d1bfe2c984ab4e86b8a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b16ff1a75ed5c8fa34836011fb293d33cb32e96bd4b6ac9598a6001d251f28c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1fb22d3d6aff981f748519107d551d1c401c04ec665b37a5810a30025a226387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?41b1e\\&id\\=octopic\\.be$" + }, + { + "hash": "f5a02e148f059508f55fb95bdc4fe240d5f1306bb7e697c2478a52e17913af86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "78b0c9bb91a22bda47a904d698e91794e6ed693e17bda6b4dbfb410d8fa6a8a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d2d41bbb6f06f4c86d6d353f9174b08245377e66fc9d1c5a8854aabcf5b846e3", + "regex": "." + }, + { + "hash": "94016558a42a9b11d6834b77fb349de265b5784d1086f7873456684e9c53c768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2e81ea5f01e56e4e076c6b1665beb72d760bb872cbc06b8fb6439585523ed2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83ba4\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "87b43ed685aa887e3b826f0d4df43d02ed37b95cf81ddebd20d17fa196486b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c089f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "116501d22c38028948fb571090bdb9d8c2af56ae6a419bd0d5fd5d7ca3bb0690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cdee4dca14b5afa090ae768feef34619795faf3b49c8979b6b26b22412450299", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "140ef08bdc9a24834fa402c806977a35bdd67ee77e9737a6651cac6b8de68eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8b15a476bb912a4b602545291ec22e684dcdcc2c1ba4544a487045618c189a40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8c29f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "ae4db6c369c17054949f3486ba57395422db5864df2b85c242409de6115718a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "10fc6d33de1f010b04d30fad5df9857e093555ff55873164fbe22ef046e810f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2abbd22bf54d95838373bc59a9793df834cfee432bc276d1dab124c147274d6a", + "regex": "(?i)^https?\\:\\/\\/pub\\-c73bf6cc29b24d0fafb36abbed78661c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8c29f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?229b0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c089f\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "4c25efb261a8e5655ffb7832d632ad6b14ba3889c76502cf75537aaf4fcff49c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "4cd81af67d1526df9a2e90f2f97e5645c51faff9fd04b069c4acbcf48530905c", + "regex": "." + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a5ba\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29877e42d32ed27f9c0d3ed333ee3769238e9dd87f048fd70ffd01b6f9024b97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9c7edb553feaca356ea54ff06947d30ed141ea23e30e414f16202a5ed8583a77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aab2e\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e934c\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8aede4485f816cebdb9a47134375d0efb72b74021824c5a551077bef5ce43480", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "8aede4485f816cebdb9a47134375d0efb72b74021824c5a551077bef5ce43480", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "8aede4485f816cebdb9a47134375d0efb72b74021824c5a551077bef5ce43480", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "8aede4485f816cebdb9a47134375d0efb72b74021824c5a551077bef5ce43480", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "ffcad5bc974a8308cb19f72a946da562718daf5299bfee2308ae9deda96a0085", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ffcad5bc974a8308cb19f72a946da562718daf5299bfee2308ae9deda96a0085", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ffcad5bc974a8308cb19f72a946da562718daf5299bfee2308ae9deda96a0085", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "ffcad5bc974a8308cb19f72a946da562718daf5299bfee2308ae9deda96a0085", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e934c\\&id\\=octopic\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e934c\\&id\\=octopic\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e934c\\&id\\=octopic\\.be$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e934c\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e934c\\&id\\=octopic\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f825\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f825\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ysYab(?:\\?|$)" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "616f75b977f69aa4931a0f8d8878624e11972cc54d0af08680b718e2462a010e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "7136b879055bb1f6f5614fc013ed1517012680ddbf0840cf7a29514b12feb880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd32c\\&id\\=octopic\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e934c\\&id\\=octopic\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "8aede4485f816cebdb9a47134375d0efb72b74021824c5a551077bef5ce43480", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "8aede4485f816cebdb9a47134375d0efb72b74021824c5a551077bef5ce43480", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b46eccf3374ee37d250588471e4581026c69669a9d167ede8be80099c59bdb90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a92b5\\&id\\=octopic\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a7f1091cd71ccf5d17728a5121c213a92a7aa95fee6c1b8734db74121817f21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "91835d65cff878f4744b60c7ca5816ba2ff5401be68d08b8f2b45490cc1ef5fb", + "regex": "." + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "8aede4485f816cebdb9a47134375d0efb72b74021824c5a551077bef5ce43480", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "8aede4485f816cebdb9a47134375d0efb72b74021824c5a551077bef5ce43480", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f825\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29ac9174becef6915e2388bcc2a946a4ef2ef5741f359d1b5b5955a7fe90bef7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?847e7\\&id\\=octopic\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17b3675a8fcb993e74e4ac538290be63cbcb77bdf0d12faa8afbb9dff8ac196f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8eeda\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "ffcad5bc974a8308cb19f72a946da562718daf5299bfee2308ae9deda96a0085", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?15d3a\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b196b7d876a391696e80ba07c8130f760becedac24d280d4ef8de8df02f43dfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?59376\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b84f4\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ffcad5bc974a8308cb19f72a946da562718daf5299bfee2308ae9deda96a0085", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?00ad5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e158bd24d48ac50b88d80cff09aa2081b3602086db7b5fdd71baa7445a7657bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c3cac\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?10efb\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4df81\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1556f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81cf3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e21\\&id\\=octopic\\.be$" + }, + { + "hash": "54d4c5d694a72ae3af5a60b34fbf41ae5e69d03c768dcf13f093b11d7ac4c77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "8aede4485f816cebdb9a47134375d0efb72b74021824c5a551077bef5ce43480", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "53ea01ca7ec70a70623f370366b27ef21b844b71cc6e11762e07260ddf08e506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?86ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1c519ca2b4eb52a381ffe9da0ba02af8eca10b769785eb477c10ca0b39d7fd57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?40375\\&id\\=octopic\\.be$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8cee5\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1ee52608cce840a3e6e3aee2bf5a91f2f1638c54b4cfe578dcc5ba782a52d0a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=berreenbomen\\.be$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?498d8\\&id\\=octopic\\.be$" + }, + { + "hash": "2b0aa7904775de7c4a1a31b6ec44713f104ab4f28e8ea29c1cd7ccddc84f5d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dd73b\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "8fd3a158efe34a09a1ea57017253cd9cc65cf61e9277461fef1882e556a12d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8a761332071f75079c462d40561384afbf8af74d3b4f81b9d15e6ee8a8a835bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bd881\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cbf74\\&id\\=octopic\\.be$" + }, + { + "hash": "6f59adf1ba1116ffa31aadea1d217197d87dd0f901b99f432cae0b69391204c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "ffcad5bc974a8308cb19f72a946da562718daf5299bfee2308ae9deda96a0085", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5725b\\&id\\=octopic\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?514a7\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce6e5\\&id\\=berreenbomen\\.be$" + }, + { + "hash": "b8ef2d0a69fdd4961e5ef34adedaa9efb2bd994a6cf721bd2f82b484e6bfb079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?247ea\\&id\\=octopic\\.be$" + }, + { + "hash": "cc57cb2303275f5e6c640c2921ec3521c1255b07399805d821e09759e87d102a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a01b3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "17443c6024b2d9a6e36e17369db2ab551bda6ba7aecf3074d3c380e3087643d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc7c0\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "9f055459a7c4dc6b8595288691685df96a02c471f3ad858bd53978cef9711de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?33e44\\&id\\=manonhaulotte\\.be$" + }, + { + "hash": "cfc9808f1482b0686d45bd52624a56477c62527576d7114a712af21d339b0af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?44857\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "57113fda06f0c46528311f840151d122e9da39aa5a3b1e2b1e384bda6d416cdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f7e58\\&id\\=octopic\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd02b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "29308b23ba46caf893fe55ddcd17b730bc6b75536fdc15ae76f972c357a8e03c", + "regex": "." + }, + { + "hash": "97f18ffbef40473c31253665fe17b9d16eb2c731d5c349b3566babda1c6e57b0", + "regex": "(?i)^https?\\:\\/\\/pub\\-6eca2ba9f56f4cdc93a7fb1285629a21\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a82f15a7e49e03e5ed90a862d0e7501868138590ed4d27b0dd812dc8297733e9", + "regex": "(?i)^https?\\:\\/\\/att\\-102190\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c21574747ccf3b13e06b3c496f64aafaf086df0eab5cdddd4810fc5e1cb6e981", + "regex": "." + }, + { + "hash": "c16690ef50cf7bd0be1aaf4db070f00062f31791afa811b0e823ec6b53e3f400", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vitaameli" + }, + { + "hash": "2f182cb59f827e2f7de8677b0e11f7279cdfa054e7f963de478dc26380832fed", + "regex": "." + }, + { + "hash": "71b5e867f3200a8dff5393e962ab58c68b54f021b21b811e2a786fe81f4d9c7b", + "regex": "." + }, + { + "hash": "b5c49483c1fcfaf714cb8393f368daf81f1556f4eb9ee3f40ba8323e06fc6b9f", + "regex": "(?i)^https?\\:\\/\\/pub\\-0bc1ca41fd3348a8a7cdfafdcfcb625c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9ed0e5b4594a7813341bce227e9710c2a84645c3871d3cf26d0e3a00fe2f32dd", + "regex": "." + }, + { + "hash": "fb0f3d761a0efab4bb3b477691fd695af94492a90f81c69068fe18abb44a4f4d", + "regex": "." + }, + { + "hash": "2049d0259d9c14718ac95f012c459d2b820e4e300c383770b28466d08440bf33", + "regex": "." + }, + { + "hash": "71022cb7648e42db50452afb122ea0034c0e0d4a1a3dd6146f4e7ea7db8092ad", + "regex": "." + }, + { + "hash": "9da3c268097446ab262be0330f11ca57f0a23b976facf8d0f9fce06190f7d031", + "regex": "(?i)^https?\\:\\/\\/pub\\-7998bf2289ca449194c02594455c6d4e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "36423ee8d29e0dc64f67ca40a8be391c5dad2f0cc2c3a22b1ab7fb914d297431", + "regex": "(?i)^https?\\:\\/\\/suma4n\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1e6ae8898c5f4f0c43b47a3885a58f86e48d2e5f7f30b61d86e40181c047cc11", + "regex": "." + }, + { + "hash": "a4b2a4b926fdc2a67b4b4b34db24b7f45a941f6c4ef9cb401c682404205f4013", + "regex": "(?i)^https?\\:\\/\\/pub\\-5e8936bda41c4a0f8f7dd9098c0d3144\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c39016eeee1d7ace5c81820901b29de839bf52fddd8accba28dce1dd9d7db4fb", + "regex": "(?i)^https?\\:\\/\\/pub\\-ff2c89d21ea94dadac399b2d3cd15ad1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "302f434360a5757f298fe5987a7f5b22cb7da18d997402d7fd853255b0366ee2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cerautheticate(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d427194c02b9300cff417f352f3a0c7b56a56551c27df04e3776ec145bcface1", + "regex": "." + }, + { + "hash": "6ce4fb83eb6a83caae3ccf9bf8ba736ebbe37128cae2d50bfc1e5e35440210f5", + "regex": "(?i)^https?\\:\\/\\/updatecleanway3\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b15e5ba07a83d670e363880649fd1574b4b09519c3b0865f8cbffa020fa3da62", + "regex": "." + }, + { + "hash": "1cf1f4182369823608d1d5088817b49a44938d81845f6b57427adb92c8b50933", + "regex": "." + }, + { + "hash": "867e68abd9f508e1d131b6c2fc39a01802fee35b736c814b9cad1aeabd354914", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?84cb7\\&id\\=octopic\\.be$" + }, + { + "hash": "78a7503c6f1d478a207de5f98b800e3cf8ced51ab5f496ccaf26d43e91538adb", + "regex": "(?i)^https?\\:\\/\\/bonusforsurveys\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2Fbafkreidgq32uzdbic7vfnlgp4or5i7gqvfadlzw7ejhxlgb4rrtzi2p4ce\\%3Ffilename\\%3Durchme\\.html$" + }, + { + "hash": "12a2cbb5906bff66195b18ba517fc1309906690651cf6ffdf7409b7a9b225931", + "regex": "." + }, + { + "hash": "ddba96136539c0382b5195d03b975b74e7fb0f5f1a24ca5382b3d2d77e9330ab", + "regex": "(?i)^https?\\:\\/\\/harshitam17\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "96423847864cc0e7d111e36bcd5810b4fd8e6d20a85ddc76119d2634204418a8", + "regex": "." + }, + { + "hash": "2d46586790f4cc1046ef140e91c60768468926788c7f2d660a642950e2b32c92", + "regex": "(?i)^https?\\:\\/\\/pub\\-75fc3dabbd58472e9c7682b86916ec20\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f1130b3a6bca3104535488eaa976113df870cf877f43c4a8f02cde04fa8ae591", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "47512e5aba9ba6972c0f4fbf952b4e1ab744ed7c6a23e690ad50aeee727fb4c4", + "regex": "(?i)^https?\\:\\/\\/gopal88155\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d740911a8a2c1558ec2d01d4856773dbfb5f77cccda738d5918586cab055b182", + "regex": "." + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafkreidgq32uzdbic7vfnlgp4or5i7gqvfadlzw7ejhxlgb4rrtzi2p4ce\\?filename\\=urchme\\.html$" + }, + { + "hash": "6dac69627e395ee1e9901699b47c3186935dd7c1e0abb067b8bcaec4b7e41a09", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ca06ce1ea140f311490347e5b50d1aa6ebb66ad2929ba0f04b3980bd8d251386", + "regex": "." + }, + { + "hash": "6464b42ecff483b70755f8d742118e2a0be789e9e16edc3b26382a70d9e96855", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{32}\\.ocalam\\.com(?:\\:8443)?[\\/\\\\]+impact" + }, + { + "hash": "69200fe8243c733c9b501c008cbaa6890ffc4b23175ee2e56ee40c14937fac90", + "regex": "." + }, + { + "hash": "daddae8dbd8a97b445825292347b3656035fa6d7362bbe6bc898959a15326497", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b97eace48d37f37f2b5b0a5e2dc6c5be55329285035db80a44ce1a9bf3c3b1ff", + "regex": "(?i)^https?\\:\\/\\/pub\\-4c4ffde052b947d283ce43a744bbe7dd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "49f0d65e0798ef0c90f2b0c0b3e1c2e88029424676acd97019c2a651669b5d8a", + "regex": "(?i)^https?\\:\\/\\/pub\\-93edca1b524042a0a6629b5452ac3dcb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ed0e1eb8411caa6b815e3aeab34ae8b3a6e219ed2e8625e917f3366a92185ac2", + "regex": "(?i)^https?\\:\\/\\/pub\\-2a29b6e3475f4314aaa54d78f26f284d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252Fbafkreidgq32uzdbic7vfnlgp4or5i7gqvfadlzw7ejhxlgb4rrtzi2p4ce\\%253Ffilename\\%253Durchme\\.html$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+791d13f4\\-c69a\\-48ea\\-9d8e\\-32f06fcad8f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-admin\\%2Fimages\\%2Fcap\\%2F$" + }, + { + "hash": "0f962d94aa9da690172452f8b16a6abadafa482ed16841497af5699162a5f8a4", + "regex": "." + }, + { + "hash": "97057a879c79cfb6324ac86813d5b738bb2fe6df386e9e2ce15854ae5b517913", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bvg\\.html(?:\\?|$)" + }, + { + "hash": "8cc90a490383c739ffa367bebd1a9328b1d738285d1e06ef02ffa07912717376", + "regex": "(?i)^https?\\:\\/\\/6184111356\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "074e74fe13eb47fc5dc737632203d296c19e23c061ed3b4c3d8f10d5750b60df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c3\\.php(?:\\?|$)" + }, + { + "hash": "ff5bbb08c1617ccadc3c7d9fd749e690c1d96612616de76685d378e837b6b2b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gp[\\/\\\\]+product[\\/\\\\]+b084kp3ng6(?:\\?|$)" + }, + { + "hash": "047794590aed33cf5f8d46dee18f01286d7e2dbf86d194585d916b4bb473d195", + "regex": "." + }, + { + "hash": "1243bbc93b9815d40aa84e133d47490cb2b43b73597a0586f4920894e43714e8", + "regex": "." + }, + { + "hash": "8dab7001a1c39f4a20e123b6162640dd0b174addb74ed1e50d29a2bd75767961", + "regex": "." + }, + { + "hash": "a513a73723d066ea109ea329d34c11b2a5f7d283df30e004ee587fbfdb84ced3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c3\\.php(?:\\?|$)" + }, + { + "hash": "1b1112b4e7ea0398be56a84301f8db2226ee1ea04475e37282f3f56e6ac8618c", + "regex": "." + }, + { + "hash": "b81d8de9cfcdace976931277a773989e2bda3832c0837823556cb4f8a8b49d7e", + "regex": "(?i)^https?\\:\\/\\/att\\-023\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "914f083bd184faa9ef5c6af04ad0a81e32c6506fc7b319eb393c4d9f4ced9475", + "regex": "." + }, + { + "hash": "bc4b89c1c2b79ca2489257e10d91e9cd90fd616ebf840fd40b8e6efe78a5557c", + "regex": "." + }, + { + "hash": "702ab3ef275bd0082c957033bfe6eda9cbb43c1e5a5fbb8c87bde5d349425017", + "regex": "." + }, + { + "hash": "192f71187549aab130ca113fb4ce1fe73d6ccc442caba2a76b65624e82de7f69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b4cdf0f463cb5d0b3797755fd547512a3e49386ec0a35b9c0ecfc64e168152c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info\\.php(?:\\?|$)" + }, + { + "hash": "08a82e56927c27491583259842701c3f24fc3716ec204f8da3ab1e1acd78449f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c3\\.php(?:\\?|$)" + }, + { + "hash": "d4bb55eee7674b7de6f9ff446260a1fb03feebe1efc16e225d9f8ce0c6542719", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8feb6599840b7f7f88f73d1f9e171037053f80ef491993a11d05dbabddc28def", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88b0038c56168893b079de7cf3342fa2d2634607c5a0ed4a2f129179365a470d", + "regex": "." + }, + { + "hash": "b4bf7d3ee69fbeea43d48333999c88f73a46d7767cfc149e0d9361575271466f", + "regex": "." + }, + { + "hash": "393038c97e7dd3797200ded8a9e37e337ebc2cf2ff92e9a02563acc9c7198d23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "af5142a7a2903450f234b66488788568b86bcd3e2265e6ef41d09121c43c1e32", + "regex": "." + }, + { + "hash": "7a1af576d46955acb0cc087cef95da966de45c805ea91e02eb5ae6c9ea89fce7", + "regex": "." + }, + { + "hash": "4824a67d836ec499d9699b53ab150fec70213a9073385b506c61922b82761ff9", + "regex": "." + }, + { + "hash": "93c9c1dcac2423fb85aedf20fe01eb16f05708b807e27d2f9207db193f6ea450", + "regex": "." + }, + { + "hash": "8f155e546625925c1d8fc173e5e0b4617f952dc21b022969657b9fa59830144c", + "regex": "." + }, + { + "hash": "b0f7c65c34d9aa526d28d0add234314219772c33a7060acc5c12f9e3b35a24fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a9869f8d38394c9fce9d09412831950e5a8fcbcd62e01588a1bf74a95000008", + "regex": "." + }, + { + "hash": "25108ab44699c53db9995c206071af6080e0ba065eb95a73c67b17cf678893b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+co(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7247bbec26b3f2731604f3f14fba991c95446ea56c6bc063b0cdee454d1396aa", + "regex": "." + }, + { + "hash": "f4da6067e6ecf716a0e5c81749d5428165cc96711998ad40dc671994c76b245b", + "regex": "." + }, + { + "hash": "d5fb3ff1bd8df913e5da2f56c83ec1a742b52d3ece5e29b18dda0d0967c21eec", + "regex": "." + }, + { + "hash": "860aa24bd728b30b3cf99a7f1c40299ea40f989034584e37f0d60d20bf522d52", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign\\-in\\?op_token\\=CtLBcy3lWBwQF2Dq0cAcFkvBUJA8Mtqqlmaua7RLCSzPP5UAUU8JsSIahEPjHGvcCARVT8xoUnebKJhjUA4V6ToqtgYhNAlSu0l\\&uuid\\=Vn66NPQuHa\\&vorid\\=lsd$" + }, + { + "hash": "5b4cdf0f463cb5d0b3797755fd547512a3e49386ec0a35b9c0ecfc64e168152c", + "regex": "(?i)^https?\\:\\/\\/binso\\-mail\\.top(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)" + }, + { + "hash": "4defd7be842e826f3dacc4d4e21093673d72a213c7ac3d1e4b4af14d7543daca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a7b3d23e14335570e89a34e16129e17d2a982656b4eed71a9cbaab69e3f4060", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fd781058d8d8dbc9c75d9fe603e87432c6c80e79385772386eb10b08c734419a", + "regex": "." + }, + { + "hash": "a30fa836d61d03212f6f342d46d992aa5141ef3347c32b8edb30ae3f7ae133b9", + "regex": "." + }, + { + "hash": "e2a2aca45a584d8422ec8ac8d8415667192099a9401b8018b22685167c3836af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b7c7289738755dbfd02ff730b6953bab469c151e6cda6b31652deb8527cf1b9a", + "regex": "." + }, + { + "hash": "d20924fb0204060c0e385cc915043e8739984df99a0bb5f25491ea1bc4548ae7", + "regex": "." + }, + { + "hash": "abfa109cffc5204f27d8fecf6a5eba0c80dffe5d2a800d46530d6209e7b50b88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c367f3066794b74853ec3abba96aa1a1b4528c88b47c1ad058eb713d3c7841ae", + "regex": "." + }, + { + "hash": "3df505d91dd94810a147dfe8f137356eccf40679686b823fab5be0de20cce8e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+humanities(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bc83853b5da43f26c2632c7a5adc6183ef2e4c1379fa1424ce306bfc54afeb0a", + "regex": "." + }, + { + "hash": "9ef08c4d639ba7c7a10c4c6abdec15d50398218c04363fad461f0f2ec5e671ce", + "regex": "." + }, + { + "hash": "9be4adec79593a50531ae01a7919f843b6d509117b33ad1711afa8e1debb5c34", + "regex": "(?i)^https?\\:\\/\\/freefireofficerredeemcode8094646315\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7c630830fa23fca3a366afd6f3f27f9a34f0b5e431abf68d5352be8cda966950", + "regex": "." + }, + { + "hash": "0afbd06023c070772a1f15a1cfe76480fa3b8f9b8b9a3aa531ab1244f8986133", + "regex": "." + }, + { + "hash": "9464a78d374817d3c50914deb0d7d1aa0a3d7b93b799a591fd1064ace05a0aa2", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+\\:9000\\/?" + }, + { + "hash": "abbc303f586e312309e313959b21a713a084f9364f241e8642b66fdeeb9c3d85", + "regex": "." + }, + { + "hash": "c6c3aba2c1f37b32488440d3bb283d0aa3ddc969fbdf98831ba9ff36fb3c5a35", + "regex": "." + }, + { + "hash": "2c800020c7c5a4f2442ab953adb120707a9b4a74aa93dc04e32be305656c5b48", + "regex": "." + }, + { + "hash": "6d43a2ac95ae071eb4e46c4c5ef2515676de51d543949867dadd4a62ee006bfb", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+\\:9008\\/?" + }, + { + "hash": "c11c473873861fee7e0e98b79ea19783098550b4338dbe60dc5db16a17bfacf8", + "regex": "." + }, + { + "hash": "6d43a2ac95ae071eb4e46c4c5ef2515676de51d543949867dadd4a62ee006bfb", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+\\:9006\\/?" + }, + { + "hash": "fd1c90e0b40aa70722f6b91efe6d5db437a2dffdafc0323894af75c46aca6773", + "regex": "." + }, + { + "hash": "6ea2e0dbe1fbc91d4d7807e3a725f71ff9742089daf2dcb5f5432a144a3d8aee", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c841a607121a573d1dd8afe8fd048f2bd06fe23b839972d2aed23ed02671b721", + "regex": "." + }, + { + "hash": "6d43a2ac95ae071eb4e46c4c5ef2515676de51d543949867dadd4a62ee006bfb", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+\\:9000\\/?" + }, + { + "hash": "341c82b3d009f3fb562e66541f6c90c8e20e239028391dbdcf7aecbb9e1dd7e3", + "regex": "." + }, + { + "hash": "ac42442acd621f17b684e9a566462eb5cf3356281ef79d92f2911828fcc16d08", + "regex": "." + }, + { + "hash": "8d9b356b797473878e651ce6ef3b46c3d34a2b78e08b298981811e6761d944f0", + "regex": "." + }, + { + "hash": "adfda2f26d381abf8c1f40503b4546558ce62fa3aa86fc4bb5d585d85cc00f7b", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+\\:9017\\/?" + }, + { + "hash": "950c2aa587195e9005f7e65ac9c1de6c07b41ca9b5a8fa375a3f109d34d30719", + "regex": "." + }, + { + "hash": "01af800a591d8d9f30844cd875a49e50a60018d9802a02cabaea23750aa3b425", + "regex": "." + }, + { + "hash": "69674f47987f630bc8336b23c833c5c35156445922295bfb2f0ab14ea254ec4b", + "regex": "." + }, + { + "hash": "2dba1d29d9d77841a2d667f44d7b3213f8d4b0650362b355d97403491ed25850", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+invite[\\/\\\\]+x08vx2adXbD(?:\\?|$)" + }, + { + "hash": "a39cd49115a000c4b629e58e4a68eff8fcd0c52ada6dbd93f1fb6db7f0e1285d", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxluoyunlar\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb517ef8b7e19697786c939f5bfab01492cf7a4a8db72f7bc38c2875b9a5b0f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c3\\.php(?:\\?|$)" + }, + { + "hash": "cfc85fb8e7c70ff00b67a2000e8a681c1a167946d120355fb84ad5bc43a9d2a9", + "regex": "." + }, + { + "hash": "0093fbff8ba96b9fc87fadbb43e455677f16893e3a79a3338d8365c9190f0e56", + "regex": "." + }, + { + "hash": "dad644833f5b341dfc28830c7e8ac7e5ff54d505e26474a1f1326ca5e47de1a3", + "regex": "." + }, + { + "hash": "d47a0df047a01bfcec637060f1100490c8488b71944c238c398e81e1f5473ac6", + "regex": "(?i)^https?\\:\\/\\/yahoo\\-107903\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "caaae66ed13df00ba766f06bc071a2669051497d5ddbbfc07b18d933f5a613ee", + "regex": "(?i)^https?\\:\\/\\/instagramvfreefollowerspush10k\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5b86e6fd5bd3f06117c108543a94c5b21640198f9266308d18a65aba868d9136", + "regex": "." + }, + { + "hash": "8aca92606af70d7fadd6796f44c6b631976cbf982f6f1f4fea84c96c44e191c2", + "regex": "(?i)^https?\\:\\/\\/pub\\-c306025991d4414b85715ca8790cf82a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "37349914bc2233819acce994a6a068c6cce794c3d69046f52a5915cb1419fb58", + "regex": "(?i)^https?\\:\\/\\/token\\-im\\.top(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "acaca1f4f9eb09ec5b66d127d6dff72067db472893ece2b5e0e84913be776c33", + "regex": "." + }, + { + "hash": "db704e32f7cad16f206651763f6f0276b84ba033107f5094cda256a1fae43bc1", + "regex": "." + }, + { + "hash": "15cf3bae112627b7450df8ada85f5f732337ac01c3049479d430c4dd869e6d4b", + "regex": "(?i)^https?\\:\\/\\/pub\\-02d84e3db8a844e2a87f9cce72a5a5a5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4e8ed609244050604f0f6fe4a740c3892930ec193f5086d1743d0520880419e8", + "regex": "." + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=galileopb\\.be$" + }, + { + "hash": "f00680a3367013c233caf523ee69941e26e560c17ac1f87f8878ae170ba78fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=octopic\\.be$" + }, + { + "hash": "aee0278a8d48c8feed88a13ec7766e3cd523a5464db25cf2ee5c6fc5347b72ac", + "regex": "(?i)^https?\\:\\/\\/pub\\-230f9ee5be02499fa9006a3bbb5f33fc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "042bb7191568bc47e38942474d96acbd72b6ae1b42fad537573b458f78fa1239", + "regex": "(?i)^https?\\:\\/\\/pub\\-d6d61a1c2aed4d8bbc46e0a32bfde07a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb4aea22ec3c3e514e9ac36803d3e2f963756eafb1f03a5512e8863c447b8857", + "regex": "(?i)^https?\\:\\/\\/newvisual643\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9fe5098452c420b052d43e50a1d824bf67543016635b08bc7d0b8482f468a86d", + "regex": "(?i)^https?\\:\\/\\/pub\\-7cc571585b9d44abadb858fe5b0ba8ab\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7b5df4715972fd0069aa71baf59d90846a4f921e8e005d0e733f5fbc0aa1d8bf", + "regex": "(?i)^https?\\:\\/\\/pub\\-d53893bd388c445bbe0d8db3c5275f5a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d263beb84fe0f0a41569296cd094c75ee1bc299231d409201084b8f597ccd0c1", + "regex": "." + }, + { + "hash": "224649c1c3984b6003dae1657e743a36cd28599df968438af13ebeeabdd6515f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e0387\\&id\\=sas2bk\\.fr$" + }, + { + "hash": "ba51f18325a1376847407617d39e0fb8a2ef034c1d3f99cca823006ada3917f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=octopic\\.be$" + }, + { + "hash": "107f122fc7830eee417540b21561fcbbfca23f3b6100cdfd0c2faed5a247fe80", + "regex": "." + }, + { + "hash": "c41795491d61af3f81cb7ba74609e9950d1d6034a11c3e70886798bfba2a2ce1", + "regex": "(?i)^https?\\:\\/\\/pub\\-c419f0fec7f543529a36acedd7dbf8c1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3e814b4d59cd6856ea0baae5e9abae8905d480e8ef7f81730eee1ef918d545e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=salatvolp\\.fr$" + }, + { + "hash": "dd212bf4ab917bbc1bcf0203c53b41c377ac6f25992014ccba2aeafca14b244c", + "regex": "." + }, + { + "hash": "d8c4d129248fa5c61bda3d6ccf43f7c35e0663cdd123e5bbbb94ce8de04daf78", + "regex": "." + }, + { + "hash": "d8efb27e9a5d33e0556545731e44e9bdcc0842e3eb7ddee1cc2e08b4d3cdb796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=octopic\\.be$" + }, + { + "hash": "4ecc14ba7de2200bc7cdf9635faa99401e60dd08c344b50a9c67f8a1c9d85564", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?42b48\\&id\\=secourisme\\.be$" + }, + { + "hash": "0175dc53e547fedf0213ece849ee29adde5c3871bab56039fa39027a40725bd7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cl(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d344aedb63c465b7b376445411775bc7199f0dca03599c0779abc13116c192d7", + "regex": "." + }, + { + "hash": "ae6c93cbf1c33f9f138d6104e8fa2a79a0da42acc73c7957240d3652b3301331", + "regex": "." + }, + { + "hash": "c8bb074f1f317affe6b8deff7d63872a32f166a999e00e40f98b07b49ad4742c", + "regex": "(?i)^https?\\:\\/\\/codedevtementsurrobloxhalo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9bb2be5aa80fe423fa60170b45036ab7fb245caf1477eef6ff294bd710b2729c", + "regex": "(?i)^https?\\:\\/\\/pub\\-441d609e8e33417e90bf06160f64f6af\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9e8673859ac3ac5d2f3da72095c510be8cbe3754f6eb06950c5faa0882613c1d", + "regex": "(?i)^https?\\:\\/\\/pub\\-c7f440236a9e4596b155c7ab367794d3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fab90daa7684655804bbff3ffdf934282f03006ff7e07d81597c22eb4d672c41", + "regex": "(?i)^https?\\:\\/\\/pub\\-568070ff12dd450d8ea38070e6c104e5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9f487b4806a36b46ebd69b6a851bda12991bd4c76f5ea0c65e4f36b8603d00ee", + "regex": "(?i)^https?\\:\\/\\/pub\\-07d6a8744a6b4a47a7c4691290289c41\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2a3406b71c33c090ddf36ff9c0deb3d3443a70f6e9170dfca4cbd2dc9a884a7e", + "regex": "." + }, + { + "hash": "1f0876d56b6a1599a338f0f368f16f5f043c51f9b55b23c07d3ef6fc21f0be6c", + "regex": "(?i)^https?\\:\\/\\/pub\\-ddb06f5026694d04b2b0d7d2caa1981d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2d425b4ebd28e49c84dad1a39f6035a71c3b9ad8a3d60e4a70fa2fd505cfdcbe", + "regex": "(?i)^https?\\:\\/\\/pub\\-5c1d4316152042a6b308c985c879b0ca\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "95019225ffacda650a13812dbbd08cdb70ba1137e699a7baedd127b53e97330c", + "regex": "(?i)^https?\\:\\/\\/pub\\-84a6bb55395d42619fb7da9f0bbc06af\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e7c09622542b408e29a07cfde401570cc52a7374ca4c7b437d746acdc0affc51", + "regex": "(?i)^https?\\:\\/\\/pub\\-ba0c108083b041b4abf943354ce61d60\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "72d7b38b4befa855a22d96c9b95369a40be464ba90f57d1b94c72cc08f64dbc9", + "regex": "(?i)^https?\\:\\/\\/pub\\-a36d925d8ccd4c9382ce3cf6e927fbcd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6af8d06245a9c1e1a53af587020ab94fe6d64559f0a7d29512c5de95e50767b2", + "regex": "(?i)^https?\\:\\/\\/pub\\-9fd4c3502a6945c199f88d18fec22cde\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9433c44e8f27c581326379827dd3277761ff84de024dce10fb18ab4b0da98bd6", + "regex": "(?i)^https?\\:\\/\\/pub\\-3c813de67a514e13807f67850811201b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e22badefc6e60404e943ff296b3a880f3680742aa68efa609e4d74fa88053", + "regex": "(?i)^https?\\:\\/\\/pub\\-31a1c8d5aff046988172d55c5001b233\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bb73a2e2f36cae70a67f53270c6d4ffb57d956e3fa8100cc484af470ca84df96", + "regex": "(?i)^https?\\:\\/\\/pub\\-d02d40aff92040828cd2fd31b67c9d35\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "02112ac9c4c04841c674eb9e0fc7e661aff092ef6d1bb0a2be1afc1cd10df277", + "regex": "(?i)^https?\\:\\/\\/pub\\-68031d0a97aa4b3b9ba2f3c9f2336b26\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3a55e3b5e97e3379e2e4b7c6bbde7f75ccb512e31a1fb47f781a27a663148d71", + "regex": "(?i)^https?\\:\\/\\/pub\\-cd91bc22696c48918667dfb33185dc53\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c58ce98711b3fb240913026539d5cb84a42570691e87e5c16452099b71907fd9", + "regex": "(?i)^https?\\:\\/\\/pub\\-87a171be55f24a749edb48a92a249d1a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ca894ce8bb6a8427d3ddd4ba4a6c038eef86c52c4710d7b74d2693a6ee2a6bc3", + "regex": "(?i)^https?\\:\\/\\/pub\\-70e69d351fdd47719fff28ce677d9918\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2c89339576d561af5388d7d0a38008b98dd69b3e991de821a0528ec8f1efce79", + "regex": "(?i)^https?\\:\\/\\/pub\\-1af224d116c641ce8d956b46afb00b81\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0c1903892c6aca9c80d4859970120b0ca6d3d6b1d4f410c1e2c10f8b61609255", + "regex": "(?i)^https?\\:\\/\\/pub\\-c64d591791b4472abd9863235a8485ef\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c316ed1f71022daf294aea97b39826913c76172dda0fa0f5d25b37965f57a86d", + "regex": "(?i)^https?\\:\\/\\/pub\\-72b87dfe6a304963ae5ed1a960bc7d55\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "64c84216081d098e6cfe98931e3087919a043b4b827475c7b1edbda8fa2678ad", + "regex": "(?i)^https?\\:\\/\\/pub\\-ec7403ca480145128eb6b2f724fccf52\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b5ab08afc69192ee90dcb79d696e2a1a8d9c4fb8a663410296b5b3ce50b6f144", + "regex": "(?i)^https?\\:\\/\\/pub\\-5c9fc03f5e604fc2909fb2a3650c7860\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "82c4dd8dd7a3a1a1e27a10bdb069d2d29e7f84e99c1e3e273dfc9a02ed4e2738", + "regex": "(?i)^https?\\:\\/\\/pub\\-69ca976064f74aa9b5123b13853405d0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb4ce8bc8709c93ce25644e4d47b97f32f64fa3339004ac94c2d5f1ecb3bd231", + "regex": "(?i)^https?\\:\\/\\/pub\\-5c895eef02164236bf79259b12034a27\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b73ec1dd07d38320eb311255d5717d493bc22308825ed1ac418d0ad456f245af", + "regex": "(?i)^https?\\:\\/\\/pub\\-c321020f3f374c8ebf665db54a1580ca\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dfe53151c67a02779187110c436d1151684415e3ec13d395e554bae396a5476c", + "regex": "(?i)^https?\\:\\/\\/pub\\-bbd27a63902048e7a8a9bc25a437a6b5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "29e1254608eecdfd2bc7b7df7950d64c07e7e8522dc05b12c4ad8a17de527a15", + "regex": "." + }, + { + "hash": "2503cf30fb47b254320ab3890d565b64c077515c1d5e54e7c850a52d56efc899", + "regex": "(?i)^https?\\:\\/\\/pub\\-db06cb0b1b68416f8a9c50c517f83340\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "772b96aec183a00c3377c685459e67b89a12e44197bd197772aa2c0a91c50677", + "regex": "(?i)^https?\\:\\/\\/pub\\-57d9bc8734804a1098d34699a40cbb46\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a200e38ca44c40cf871b028a38ed58925827e918ff17a80fb4c1526d75c4581c", + "regex": "(?i)^https?\\:\\/\\/pub\\-4229a20f0b094edb8f553759413c9659\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6c1e85aa76798ae8890cc84f79240cb79ca5992da160306a201642dec319f71b", + "regex": "(?i)^https?\\:\\/\\/pub\\-b0d3b22cfeef4826bc02d6c3527516ee\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a01ec0902f349e5a52d9e311a9e85254ce835f3174177bf25809202d029bbffd", + "regex": "(?i)^https?\\:\\/\\/pub\\-06725bdeda6b40428895f36961e0f2e1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "28bfcdf86db2e043ae0855946fd0d73275bf9621cda37e60b149f4836f9415cf", + "regex": "(?i)^https?\\:\\/\\/pub\\-a6d78f3448d74f54a9d0f67c67613391\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3866e9c9ce606ce2f70de84ff20ceeb29c0b46e0e65c2fd855e827c3d74c1031", + "regex": "(?i)^https?\\:\\/\\/pub\\-32afad1854564c4faac25c69662591ae\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "45f694d1e97a6d5135f3b2a1b329c37061c30a2abc27a9d1f8dcbc99430a5e2b", + "regex": "(?i)^https?\\:\\/\\/pub\\-fb083ff96a084263810de1145c98cad6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7de550cc927a119447df94a616ba7afbc203b787e97d8badb10689b56ba15fbd", + "regex": "(?i)^https?\\:\\/\\/pub\\-479e7e0e27fd456eae02e16da758fee5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "90de9d8ab0e01b66d9554b42c2a7e9c4e44eb8b7cea2ec2ca5c9c0ff9de85b95", + "regex": "." + }, + { + "hash": "401c9214e07218fcb54a7ae90793c1382d0b58cc189ca88923ee112232659a1b", + "regex": "(?i)^https?\\:\\/\\/pub\\-b42213e1d83c4f448026b7219ddf4de1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "28e724dba15ceedece1a98de38186c86860849a1cb65bad7234730b5c59ed3fd", + "regex": "(?i)^https?\\:\\/\\/pub\\-6f16464891d24f6390c820dcbd9b26f1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d67cd4c86585a87c4993ac616919e94cd983d9f6116f199922c45d04c3e00412", + "regex": "(?i)^https?\\:\\/\\/pub\\-235921a9313b4e01b4f24ec9ef945d44\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4b4c79732b0117d52311703f402a981e07602d6f5576b3067f9b858f9c25d2e7", + "regex": "(?i)^https?\\:\\/\\/pub\\-c202f1fb5cb94483a8b0bbc4028805bf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "30c79cbaed7a070045ca88350c7e9ae692d4f42065536d3cb75045b85527b682", + "regex": "(?i)^https?\\:\\/\\/pub\\-0fe8c199adf947a198fb785931befe0d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c989fd54abf17b912257b19267a74b76273ddf72ecf462050aeff1947daee56a", + "regex": "(?i)^https?\\:\\/\\/pub\\-4bee9eb1971c454596bcb7cfc370e9d5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6b86f1cffe4d831d9c210ed82373c63a3611fa724dddb543b5861b0275de2c34", + "regex": "(?i)^https?\\:\\/\\/pub\\-018355639f8e488ba9a7bbb5e7c6469f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "520ec2014d5e5d0f64f2aa84c7e93e4b4d391ff050c880162e0b3941ca71625c", + "regex": "(?i)^https?\\:\\/\\/pub\\-53daaf422ac2479c9f71134234bb435e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0eaf625de9552635a7aa88e9cb03c34208c1f73d9037c1059c48224ea223a420", + "regex": "(?i)^https?\\:\\/\\/pub\\-e6a550caed0641fea37ea8913a06f380\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3514faa644d2c015b9fc619a402fd544785588ebd4ce6cf7d93ae007e252b1bd", + "regex": "." + }, + { + "hash": "154743966f185e03a10311039d43d7026eb1eaf822550d2d4d887ee83cb7d29c", + "regex": "(?i)^https?\\:\\/\\/pub\\-b15324c6011e41eea92c402a0d29b24e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "586b778cdc0954ade6f738ffada23cbe3e053f242b3612502b2efaa2a4115d48", + "regex": "(?i)^https?\\:\\/\\/pub\\-b08411981b06421383e69435dfbd22e3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4c438d02849364ddcb93c629c9654a60efd930b62c3e9dc3c16a6743b1b421f4", + "regex": "(?i)^https?\\:\\/\\/pub\\-639070cfb2a844be8fbc4a2a91242fcb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a8ef8307344a73ec0c73be66e871b30a54adddc41aa0b6ccd26752e973350c7a", + "regex": "(?i)^https?\\:\\/\\/pub\\-c39e46791d8d4e0ebd67c5f455321073\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "96735314f28e199d7f4e250a05d32643a7a3aa1a11a2c4efbf31e119e873ecb5", + "regex": "(?i)^https?\\:\\/\\/pub\\-cb3eab88afbf444eb70e2fecc36e2ee9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d16c672024ee20a9a0d5617371b4a69c8b19f6eda81b0148f2c280c986a6089f", + "regex": "(?i)^https?\\:\\/\\/pub\\-2fefe932a6974485b987c9ba851b5c40\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "50df8fcecff82139348e413f3d8b7ae7170b094ee5dd1c2ebb8b6951095b785e", + "regex": "(?i)^https?\\:\\/\\/pub\\-1994899298094a01a9d6f82bd15c22f9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f414a850872b0f49c877e13b178871806edfaf103a2daee759d6780ab019a96a", + "regex": "(?i)^https?\\:\\/\\/pub\\-579ef504b4c14fab86eafc7e23b74a4b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "de8c02a3df012a442aa5d8cd50b251dfbf5f344f0ac82c6dc44cd154a00a0f79", + "regex": "(?i)^https?\\:\\/\\/pub\\-1baf824499cb4115b54f660c5c108fc0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "26e6f61fe9f7a3db4e8de9282308345533939af0eed6de388d9bec42b4652aac", + "regex": "(?i)^https?\\:\\/\\/pub\\-cd91661b203a49fab6866e902fe1c03e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a65d9f3c477f0a019dec0e4820776a9912165c92bf0d226db96c611bb36ec301", + "regex": "(?i)^https?\\:\\/\\/pub\\-12546d09e1b84e0da905a1c2f349ef7b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0b303bd1d58645a0a967091b3512ed09686d5d96221f4ebcd20881aa73bbc28f", + "regex": "(?i)^https?\\:\\/\\/pub\\-74bf36a8307b40ca9c5af3d55a3f5aa0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3a552f5b45ad845a4e7306b287b0355f9c4073f9a029a36e6901d47842f1ba3a", + "regex": "(?i)^https?\\:\\/\\/pub\\-7d4f94914c7b474480507ba35e67ecae\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5b323ec76a244e994ce37156c6276bf2d76cc9e7e41e686432c7670492778890", + "regex": "(?i)^https?\\:\\/\\/pub\\-5358c7826c0d4c9fbea2168a138599e1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ef0e42a7b9463415f13c5f4c6f3c7dea3baf9014f27dd55985c2b4f6ae323755", + "regex": "(?i)^https?\\:\\/\\/pub\\-bf621bcb7f3647c1bcdeab72e3b5d47f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9be6ea980920cf434157833d3c8092430bc69752d4e156da232cf9b239701690", + "regex": "(?i)^https?\\:\\/\\/pub\\-7e0c342cda984b37b00215454af68493\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ab888bc48784c0320a6ff473233102564a76e1e7b39d228b3ab8abe22c08c9e4", + "regex": "(?i)^https?\\:\\/\\/pub\\-66c64914539f48bbbe08c088e429e231\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "529b6659eae905b184a61a0b1e937d58fb6bc0b7977902409a063985c47aa700", + "regex": "(?i)^https?\\:\\/\\/pub\\-6da558c8783140a5b969092f11655a4f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c4f2ac628cba468e93e727919a691803f636a0d57834a2083ee6c29a92e8ea52", + "regex": "(?i)^https?\\:\\/\\/pub\\-5075bfc09e394931b41ac90ce5947470\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bd81f1a6a7307077e991944cefb1d18d18875d8c7137638268fad47c2550cc5b", + "regex": "(?i)^https?\\:\\/\\/pub\\-16e7c4ce067d4f9db997528f447692aa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "46cea47f628d98560c8fa7a2f35aeb7e373f7e20e708f7510c17dddac64d0c84", + "regex": "(?i)^https?\\:\\/\\/pub\\-be9e163b3b6f426299b0ba4ec50c71a1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ce3ac72a821e2e09aa007c7b0cc423466f1f636c789d6eb7b32fef6d6bd84e32", + "regex": "(?i)^https?\\:\\/\\/pub\\-e2f6341451ca4b26ac23c6bea7b95d1d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "87dec7e11582433dc760133f3925c7c2cf927cf79544e54eadf173aff1287dee", + "regex": "(?i)^https?\\:\\/\\/pub\\-e5923fdb678444df9f6257a5b7324303\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "84232fd7e59b7dcddc7ab52fb7ecc7cea90c8770fa9f9828339c18003d08b74d", + "regex": "(?i)^https?\\:\\/\\/pub\\-570ecbc453d2491bb6d62cb389ff791e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ed9218c25927e369081b0d8a160d501ca4419e8ab43aee89254c6789d272b6c8", + "regex": "(?i)^https?\\:\\/\\/pub\\-fcbf6c5f8a484878bc65d4ef9808db6f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7f42555e67b7ee68330040245a4b26b9cb9225c50176a713a4557fdbd55c8f5f", + "regex": "(?i)^https?\\:\\/\\/pub\\-e296bf3049c94b5ba96796dcb6bc768a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "74a83aca4419b1df97eada8dafb80c6055ee2657ddfa956c309697b798c9f6b4", + "regex": "(?i)^https?\\:\\/\\/pub\\-1d766f54f60f4b1cb76860717d399ced\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "90333a611579218f263fee4147185ffa6b57e5f55382352bf18064c010445d88", + "regex": "(?i)^https?\\:\\/\\/pub\\-2407f3c2d128488d992609e6d978708a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "401861b01dbb2fc45bb5f977f04e457f11c77619a0940ed726c86c309e23cc59", + "regex": "(?i)^https?\\:\\/\\/pub\\-f7fc0aa7381e47d1a8546ee27e313c07\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "308d68202cee5d83571a65d04a06d87ec3ff643f719e5f2d946bee2402551139", + "regex": "(?i)^https?\\:\\/\\/pub\\-698fe0307b9e4daa8c628b7d70cdfac8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "757521c1bb1aecf27753039efe873b9ab3a7b085cd02569f3bcd69906ae5628e", + "regex": "(?i)^https?\\:\\/\\/pub\\-fb48aaca384b4915aeb4840d16895887\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "59c296e457fda5a435d0117224aa7cb5f1380b8dc88fdb16def7c91e60859426", + "regex": "(?i)^https?\\:\\/\\/pub\\-d00b612d96ae42e4b4e14dd761b686a6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "80066e236fc5838361730716a551abf025e112b0f4e162dd5f71e8159ee7ad1f", + "regex": "(?i)^https?\\:\\/\\/pub\\-e6c4160e56554fbe86e93e5a2a767294\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b3aa9dd3b36e9b71630fd40ea273790739f3c466be6ed7020df39690a9f56b05", + "regex": "(?i)^https?\\:\\/\\/pub\\-56c6806117664b82ba4866cd0f863588\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "95d82baec7276e7aeeee22faac30d090edc95fc9d515d945fc3377b078ce085f", + "regex": "(?i)^https?\\:\\/\\/pub\\-7d24c742ced74dfe957c6df8afd40a84\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cac616cbc9930e88e3657b8245564646bfdea13c13d1548d3b086305724cd0f9", + "regex": "(?i)^https?\\:\\/\\/pub\\-fa0d3e8e67954fe98be0b6601b998561\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "891f74a8e4c29fcabdc2aaacab1471d96dd0960d73444195ac668790edf3a37f", + "regex": "(?i)^https?\\:\\/\\/pub\\-1bfadf47cb66475bbef1b09f787c472b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9ab0a6afaa106b0707de0f9fab14f129db15056ffde70c428a189e2b32471cd4", + "regex": "(?i)^https?\\:\\/\\/pub\\-5ad78922363d4a128861ffd45c7bae37\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "657f855bcdc78171b54fd1379e47a1839631a2e06676eb76e0fd230f55ea9b9f", + "regex": "(?i)^https?\\:\\/\\/pub\\-f9a5c0a6eb6f4ccdae33c7dfb02df452\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4c8ae815dfe7164e01da0f7198c69918abeba2968285d515c88bab2e0c4a7306", + "regex": "(?i)^https?\\:\\/\\/pub\\-dd37386d65234cdcbbf5da0ed74677b7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "70d8be7ec3437f9fbcadd17ee38d388704239c81ffea220b3e7d9befcb8fb4eb", + "regex": "(?i)^https?\\:\\/\\/pub\\-fc67a3cb849b4fc0a27910cbbc73584e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2cb21dbf75250a8f641a044e5dd9f61fd028dfadbcedc576eaac58ceb933168a", + "regex": "(?i)^https?\\:\\/\\/pub\\-a58bcfc58507426ca38ee3be5a258dab\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1c49d116eb1d937d29d67633d7dab20efdce4d7e1a8879ef930ba5c151f326af", + "regex": "(?i)^https?\\:\\/\\/pub\\-a45887ecc53d47dd898ab4bd2008b701\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5ae508b33b431044410a1cce97832bb61d4a7d7abc47f5c7d0a5429b9971f563", + "regex": "(?i)^https?\\:\\/\\/pub\\-4850683a857240539460d6f3458b4006\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "485add399ffdab5a6e19339a337b21bbd0ba6258bcb596cd4641720022f78ae6", + "regex": "(?i)^https?\\:\\/\\/pub\\-892211676d6f4519b2f5ffb8093bbb8b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f7533c630958cb034801aad568132de785757f3a376b12e84b10005839b8728c", + "regex": "(?i)^https?\\:\\/\\/pub\\-a7830fe7be024de3b106d988a301c694\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "52dd4d51e7604daf28b6b58f6a1479d5edbd322079f6b1a90b23df0cf2f7c23a", + "regex": "(?i)^https?\\:\\/\\/pub\\-f582b015bd8c4323ac962561639c7cd8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e0ca6c961c304932aeef0afdff44ffe833a6de0cbc07c3786f5fcb22d7e929bc", + "regex": "(?i)^https?\\:\\/\\/pub\\-fb4a635287d74ed386bec626411e2dfc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3dc5200aff33004853e797b6403c1b3ce901d1443a3fb23552502eac0e4a13a9", + "regex": "(?i)^https?\\:\\/\\/pub\\-757a0bd02dee4bf2b31cfb7885d7c1f7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "93e366fc579a860bd0236b9903f7c34014d068bcaafeeb79c42fc7ac24636570", + "regex": "(?i)^https?\\:\\/\\/pub\\-643c1a978848428ea2d0c53f50e590cb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "60f469f96f039bac3376610470aa7721337fa30e44499507600d11773fd09151", + "regex": "(?i)^https?\\:\\/\\/pub\\-48d78b8179584b6a887a19c1e157a693\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9b0c185e1c09e6bb87c60386779186a97e84a97819e9f49bb55a3fedf1f07dcb", + "regex": "(?i)^https?\\:\\/\\/pub\\-08eddec3e4fe4a24aca67c81f432f70b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "affacb937ddc4fde2df39a0b390f6e900e7c1b0947716dfbc2b6631e9a78dff9", + "regex": "(?i)^https?\\:\\/\\/pub\\-40f4ddb88bf04e7ea9a1457cd4e70baf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4893617dab53de4735ee5035024d1a3d0d9a6d4d718d1af6b1f3bd98f16b9f60", + "regex": "(?i)^https?\\:\\/\\/pub\\-8013c0d227e44361b9cc67737154301f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7638a2013f8824bf3077ec63a172d2e4e206b5653421c55dbce51f3c5aeab924", + "regex": "(?i)^https?\\:\\/\\/pub\\-ddbdec64bcb6432baba85442fd61b674\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6a67e17a7fffa1a64bab6af708e537be53e74d96ba2a81da2141da24767166b8", + "regex": "(?i)^https?\\:\\/\\/pub\\-cf8a731b19384d16a2be67840ac79af4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6914bced151a40cb7ef537e7d2d55fd32f3d9bbbbbf59ae85a89792b8a8e6edf", + "regex": "(?i)^https?\\:\\/\\/pub\\-d84643382ff24c6a92df14236a91b4bb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7cb924682fa1d624660977f58a5448e65203802347154627a1fb5c03b513c344", + "regex": "(?i)^https?\\:\\/\\/pub\\-783720932c874794aa1da61b7c6ef7dc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "819331dee4b830a4f6146f6071677badba51ca97f603b3e19f96b240474e3080", + "regex": "(?i)^https?\\:\\/\\/pub\\-668a429b1c7440a88622fb12eb78dd80\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2a2e9980d7ec11af948e34a84cd326a4478b192302370b8c828133760324596a", + "regex": "(?i)^https?\\:\\/\\/pub\\-fc04d0d0b0e54ebe9238c195042a735e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "74212e93cad1bbfa53c6bb744ee90f11afb6bf8d780726598642944eeea2961f", + "regex": "(?i)^https?\\:\\/\\/pub\\-3b9655f5e8304e4e8347ffc0efe37c14\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c83109c458caaba7c06d9b756d351828d04ce23625d27da129d4975c0047861f", + "regex": "(?i)^https?\\:\\/\\/pub\\-7db02cef058e466da1f8f5e8f160e6df\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bb492a727f4d33fb493eb331b6737c77ea1c9924be9bb0ed6eb91e734d086a81", + "regex": "(?i)^https?\\:\\/\\/pub\\-7feecc4ca53544b1a9b399192de32d8c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0c76b2d7f5851a442f303c625584fa297c8239994c58a29e019336e6ab5b74a1", + "regex": "(?i)^https?\\:\\/\\/pub\\-2451caf8b8624488ac9f5c6d51db0426\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3f11d77346593ca20fae76826308df0a10d737f53ccc2fb6f68e8fce9d05cbaa", + "regex": "(?i)^https?\\:\\/\\/pub\\-db32f107339a439283965dba56d4edf5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0915ad0e7b85df39113a1d3744e8f0fb128a86af62ca6e0ecaf8ae1e62e1d3ce", + "regex": "(?i)^https?\\:\\/\\/pub\\-9ebe6b69140948eeba42d3ff0fcc7f3a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4f393bc9ed7f2f2d73841a05b7b726fe6da38186e28a5eb2ca24e3056109a6b8", + "regex": "(?i)^https?\\:\\/\\/pub\\-a5b4430700124961bfa5bec00391f487\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5aeccfb6dfa5980afa1f74e1e4c895a1288493bfba7b4343db6ad22520e67c43", + "regex": "(?i)^https?\\:\\/\\/pub\\-98518757397947de92715787976df5d4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2b0a6bbbb8104a7c6051194d97ecacfaba6709b2b001ce9a9a67543af762173d", + "regex": "(?i)^https?\\:\\/\\/pub\\-ce732e9ab98146d7b58cbaeb07b4a58e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b5e35adbb32e9fcad87a69e3273e6e3fb2012daf6dce5b9035c099795f1be67c", + "regex": "(?i)^https?\\:\\/\\/pub\\-32ca47af1ec946549d98669ab3ac613d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8df00b9acf336a2b1207736547b7875b1333962808b42cd9a824f8c9d091fc89", + "regex": "(?i)^https?\\:\\/\\/pub\\-cee12e8d18a6408ba969eb9f6cace97a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a42f492981a33f1e98e91882191889f08bb404a244962939617c24ac1c140c52", + "regex": "(?i)^https?\\:\\/\\/pub\\-a7e749e95db643d4acda4c76fea55716\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "270403f4a0cdd8dcd7a59abb2582f5c16092c27a9d9919b78d6afc154e6f5edb", + "regex": "(?i)^https?\\:\\/\\/pub\\-87f5f0675dcd4d5684bc95032fa45938\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ba852827ceb1ade9c9f8606df3c1fce60dcc762cbbaafddb1b95420be2818656", + "regex": "(?i)^https?\\:\\/\\/pub\\-8d683b3885d14c99b5da76cd4eab023b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e8707766b7647e8e19467159b049c4b559ef4d7ad9e7686e57fca8e4f0727634", + "regex": "." + }, + { + "hash": "49c0fd3b5b485ad837ccfb6b07085fa997ca2de5590b40e6bb331224d7e53bb3", + "regex": "(?i)^https?\\:\\/\\/pub\\-68c26a7e083c492dae7822b6ab713211\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "368f9126e1c3504fcab433c1e7aa92eb01e35981716861580d58f445f7aa9c97", + "regex": "(?i)^https?\\:\\/\\/pub\\-935b53a2c2d246bfba3db9ac848f8ead\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9f88834ceba5c2a4b98e33e4a63198bb4abdd80485ebadf50417bf8dfdf837b4", + "regex": "(?i)^https?\\:\\/\\/pub\\-40788e030eee4e159dbef0b51f237482\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0fd03b09ab426229308eca954462519a62f10472a82bf4db76567c209c997049", + "regex": "(?i)^https?\\:\\/\\/pub\\-98dacbe735de4f8ab37f167345feb84c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "50d49359bafa209bf30c2b49c2aa467dbdd4595c52d25945fbaf7188a38e28cd", + "regex": "(?i)^https?\\:\\/\\/pub\\-dfe11b3ee33d4a8ca51713d9dbe1d9e3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b9f69ffe4eca2ba0c77690c8d3241e12796ffb1cbf6aaf8619f7c724f181672c", + "regex": "(?i)^https?\\:\\/\\/pub\\-4678bf5ea36a472593d1920ca2699914\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f929fcc1657042f91c1f9b6310048ff74b2568a866e68dec68d09cf5250c7d67", + "regex": "." + }, + { + "hash": "ba211fd2c47c2b052beefb98c6f88801f788257352c76bf41a0e397b9ec2de9c", + "regex": "(?i)^https?\\:\\/\\/pub\\-9d787d1874b7498f9af28cfa17c6f386\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b29d26ccdee893b078e770cb3ca98e23d133719691943fc34f1831aca785b5cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-77df98259b4542448ce4d1ead679c942\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "76ad576acf81eb33c42c2ec607886529c5173e526a7d912928568020addf0e4f", + "regex": "(?i)^https?\\:\\/\\/pub\\-ccb5406808b347438d0c785f5a1b8cca\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1c412f1c0bbebd7be1a88847225f51edaa6519fecada75eff646b9a8e21914f9", + "regex": "(?i)^https?\\:\\/\\/pub\\-8eab745c68444465988184ae68b609e3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "040e6aed3eea84ea8c74d55ace5141ab07e280f168a47128e7d38ba929cc60ca", + "regex": "(?i)^https?\\:\\/\\/pub\\-1da23f64c90b4946a0555b9797c8d6e9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6fed8f9e14b1b95ec5819f9eaa49c68299d005e419d89245f069e418d0335e90", + "regex": "(?i)^https?\\:\\/\\/pub\\-61ebb303e013488f812ac1c48fc0fb6d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f4ceb6ab7223a00cc92e2fb4599694131be0be19f32a92836aaeee7d500c0375", + "regex": "(?i)^https?\\:\\/\\/pub\\-d34aebdaf02342b8bcc5ab525725d02a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3ae8e77f1ccd36fb0e8e31b50afe7457b71288a29c2a3fd2f32d04eb6a24cc87", + "regex": "(?i)^https?\\:\\/\\/pub\\-34800083ccc34975a9f4455a9e48b9a7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6f5473442c20cbd5e7f04aab25b882561f575096a568053114785d267f1a4f23", + "regex": "(?i)^https?\\:\\/\\/pub\\-875a540e589c4c23bd253387d7f3d670\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7cb3e08f26222e3d1c66200337b3373276fdb121dfe762c60e1259ce38419f53", + "regex": "(?i)^https?\\:\\/\\/pub\\-5e3f711a3b6d4d1d9f04d1b2e999ad29\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "435efb3b5f4ec9e5e2698f980f5034df392b759a5ee3e2ba12be04431ca1f255", + "regex": "(?i)^https?\\:\\/\\/pub\\-1f645d2283ff4677a8a214dd65f2e973\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a855f95340beab551b811e9855a66fa994cc80109c9ab93b79f7c1bcf3d3e4b6", + "regex": "(?i)^https?\\:\\/\\/pub\\-fe28414488734297a8615f3a17edc0cf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a02368b4576ca23181c3d9c59f6c199cea00cb56fd6d7b3b005ae326c35afe1f", + "regex": "(?i)^https?\\:\\/\\/pub\\-8d2871fe060f4a1cbf843fdf5ea94cba\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4d44a30641dbb27c2b442e3094b943be7c52e9a5ac37dec44493040a69e29ced", + "regex": "(?i)^https?\\:\\/\\/pub\\-f859e4ab405148528696aab085d4c942\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "628382b17398e303070a4c2f8e50e801d4ff464505368aca25476a7d7e2fd991", + "regex": "(?i)^https?\\:\\/\\/pub\\-49f9fdc5bb1246ee80aeebc72f849779\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1e501370575481c0c6f9cc30271740c2fd5b50548ff34e44bfe0e7456d378875", + "regex": "(?i)^https?\\:\\/\\/pub\\-3ca4c9ea7c134de182fc17679c5d287e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7c89a54cc8960ab4caa614a3d0183b04df33f5f8446fffd50bbf2f3756a96be0", + "regex": "(?i)^https?\\:\\/\\/pub\\-62f4e1d5b38246ed972f6dcb7b90ad39\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fa69db2568f1e65708224e87604cc47505e52309ffeafb2310d1722cc6ff9aca", + "regex": "(?i)^https?\\:\\/\\/pub\\-130aeeeb4e1a4ebd823485107ff764c0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fba810907b5d98634ff2635588a01c1c58a092d3cebde5f3fa7a2d5b9f8ad632", + "regex": "(?i)^https?\\:\\/\\/pub\\-0d8e0c69d3d34567ab3eddaa8aedf1d0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d24c1ca612b839860a61caf875f104303b158d45e58e085a6ada6c07d688af98", + "regex": "(?i)^https?\\:\\/\\/pub\\-7310d0a85c714d2fae9dfc5b953fd081\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "aa87f6f7ffd16b8e8e95f6f38efee6d38124001c9e94ca33e127c4cf8395492b", + "regex": "(?i)^https?\\:\\/\\/pub\\-ebadf29d8b3d4cc4bc9020b832576cc2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "45e9a572cf2105cc19972c5932f3a4b64b25ed138c66aa13babae417f06d2562", + "regex": "(?i)^https?\\:\\/\\/pub\\-5eae3f7ecb214d7ba795f009445da73c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "26b22e53b41e7186450425d67d4434c849c3c9387c21f07f3363c0020a633ba0", + "regex": "(?i)^https?\\:\\/\\/pub\\-9f346186539d4c3384736966f06772be\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3405b6c78875a63b958c537a2885f6ad7d949637f9ab71f29afeb573056de98c", + "regex": "(?i)^https?\\:\\/\\/pub\\-6368372da32749fa9e913c9112112e8e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4d176d3705d5653f90a80e52c9322f62249329c1bff9079af847145126fda98a", + "regex": "(?i)^https?\\:\\/\\/pub\\-5a29879e08544d65879480ff0f4122ff\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1dd8cfe2a45b65a4f520caeda317a43ff0a4459da1db16bd42c970beb39b10b4", + "regex": "(?i)^https?\\:\\/\\/pub\\-5658e7d058334d199f9c8d84519f7e80\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b8544753e3f5e3e1097b26c9f0e54383bd5438e3817cc6a538115f4c8a784d1a", + "regex": "(?i)^https?\\:\\/\\/pub\\-a98ff676b3b6429596674b92b6fd5883\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4d80e9c5abc1925f721658182b8f23e2d1b0c4365055f07796f65912c66ed9d0", + "regex": "(?i)^https?\\:\\/\\/pub\\-9983c8d523034f8ba6723ff5b62739b8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2baa420d8e51ef0e9647deea54dda1c1e7d55e2e0ba690a7ce62191185afe0ae", + "regex": "(?i)^https?\\:\\/\\/pub\\-c21bf4dd9827473f86f03858dcad478b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4bcb41daa5c9e672ed44a13fe6fe09622674ee0cdd9b052ff8ab007517ff739f", + "regex": "(?i)^https?\\:\\/\\/pub\\-e0a205c9e31b4c1b8ab6a00e4f861b3c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "86f2f847e2ec86cb174bf864775fb51f5e87323eb591e6b7a4b9bdfdeaef9b15", + "regex": "(?i)^https?\\:\\/\\/pub\\-25b48f06bf5c447a9d08b821ac212b65\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a20b5ff274460a21edce19b66b878f4aff24b587901c87841f6c281c46649a96", + "regex": "(?i)^https?\\:\\/\\/pub\\-f53c4a7a705a47b79ff74d8c24977253\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "51b81f96d3b317f475356ba77e6db01e19e6577372bebe0edc05e0c29b1e1e65", + "regex": "(?i)^https?\\:\\/\\/pub\\-c9aef0442ab34f3294823bcd6e71d691\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b06d9fa639c975f102c30ebf7e41616939ddc0c67c0c96613055579f643fa71d", + "regex": "(?i)^https?\\:\\/\\/pub\\-a6d891fbc327420f854a23f337d68746\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d6506138acf26a5e5e068fcb190aa52ef728a3f04f76aaeec793298417d8e7ee", + "regex": "(?i)^https?\\:\\/\\/pub\\-5ea63e2153f54ba9b121c1636994d3b6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2b0a232a96aa480da35d83332d8db28576369b43cee8d7c9a59c7218dc80caf5", + "regex": "(?i)^https?\\:\\/\\/pub\\-7be6b3f7b2d048ea8f05e904d1f1cfd9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8a240b0e7f3a074f506307cc935c2d1a199b241ac345d736ee9bdea67449d1ea", + "regex": "(?i)^https?\\:\\/\\/pub\\-c1ecc3085d0f4bee9cb5d12d269febbd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "de8ecda818cb8c64d1f358b08ed64f7606053d096d9d51260e99ec65ecf04a28", + "regex": "(?i)^https?\\:\\/\\/pub\\-33fcb6b177354a18ad58fbe388e3419d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "847734a685e2188eebf9547046c00c8abab8e046d1d45008502fa061b6298756", + "regex": "(?i)^https?\\:\\/\\/pub\\-d95083b0ab974f0cb4aefa0d6aef6040\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ad1b6f400c9630e01870e4476e2a59f356538fb921f78fa340bba374774a1d9b", + "regex": "(?i)^https?\\:\\/\\/pub\\-f5c1594ec06641dcba66517b02635237\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c6dbe5ed582e36c92c5d8076c9408c1bb4c5ebe4300be309175eddd67a439acc", + "regex": "(?i)^https?\\:\\/\\/pub\\-9a2fba40e7084a1eb9d96885ba6cecf2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a5071a2b39a4de531740cd1f20f5cbe654dd13a1717ca5c239914596e62958c0", + "regex": "(?i)^https?\\:\\/\\/pub\\-612fb6fbf276475e9499bc355830f3d8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3f0e88287e3856802c7816472accead023b248f097c6a2e5112c527bb3a4b380", + "regex": "(?i)^https?\\:\\/\\/pub\\-783fdf92836240fa96dda87e23c5c881\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "df62d8a4613a31519c4691c9a81db17308eb7005d85b7247f61b0aed17317967", + "regex": "(?i)^https?\\:\\/\\/pub\\-fe1d9c59c11c401a86d66846a9eeeedb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e38c12d8d39864dbb2f709d13f6ab6814bee1c474d5d2cb10fcd195d4390d8a3", + "regex": "(?i)^https?\\:\\/\\/pub\\-9dd1b7a023234655ba08c72873ccc3a7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cbd5d74772acdfcbc160495b06ae3a2b0081e99cc719545bec508ba006072228", + "regex": "(?i)^https?\\:\\/\\/pub\\-7ce6eba937da4f1d84efd0ff95a93873\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1b89ecc7cd955efd0e80e88b8c8dad4c3150d621affc9da3def4d88d24255f62", + "regex": "(?i)^https?\\:\\/\\/pub\\-25eadace405d4ebf9140320cf7903a66\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "332f857bc056404acd113884ac3a3536e1fa06e642eb95495742aec8fe2fc549", + "regex": "(?i)^https?\\:\\/\\/pub\\-d5fe45c975574f5fabe842fbc47eb3e9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5f00e21f44596fcb9b1345a5b8ee403216d5f2d0afae87389a0e77c3bf218322", + "regex": "(?i)^https?\\:\\/\\/pub\\-e45e8f28cec8459686ab469d02d179e5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3993c06ee53e0e1652fb82a3786f6b33a28b3e55d236cf3aad71f330e9130882", + "regex": "(?i)^https?\\:\\/\\/pub\\-55ae82e81a82493e9f0ae1af2c012b77\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4cec30d8997b29aafdaf2c602e5fa1d39d089f7b8f14bc6c57fc5e1efb3a4c98", + "regex": "(?i)^https?\\:\\/\\/pub\\-46feb305354c4109aa3e728a6825ec1d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "39b809f9667da32aefaefb737fac66e4f0c8e59ceaa74eaab78af8220bb02d8a", + "regex": "(?i)^https?\\:\\/\\/pub\\-063354cd44214e1ea1e88f88d8194c54\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "56b3d599e4e8875cb0b0bb51c1823ff43d6631ef15a5d2e8ee176d2c67dfa9ef", + "regex": "(?i)^https?\\:\\/\\/pub\\-9612da941a0b4d8b974fe8ae45b5764a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "36727dd98779795d5e86a4f4015341f320ef32e99e54fb853a841e0e9c7d2e23", + "regex": "(?i)^https?\\:\\/\\/pub\\-5f1c43f5cde042a58705be82ef00c958\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0872c2fcbf4ff3cf9ccd16e37ec6ce59cbd4ab2ba76ca016645be84d457eb414", + "regex": "(?i)^https?\\:\\/\\/pub\\-de50159ef2444de689475948cd0371b3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2c80c873ba9d2da28a884e223a7811eca2f8ad7cefbe8767a5effb966ccc2ab2", + "regex": "(?i)^https?\\:\\/\\/pub\\-fb48c806e5b149fc95acd9f8c42f9a95\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d8770924f4673517ee668daa810f1f3a19e82af6d8263a3e0884ddc2cb1de6f1", + "regex": "(?i)^https?\\:\\/\\/pub\\-1db405b5888348559a42741b22424a05\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e0ca054f3647d97ba8308f324481ba3b4b72f9bffe88a739ba45aa82d0fec11f", + "regex": "(?i)^https?\\:\\/\\/pub\\-8122ca1a64e948b0a29119f57e112b28\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6c14bbffb91cd5922da03c7faaa2abd3189dd93de56a42f994f2e7177bae3e45", + "regex": "(?i)^https?\\:\\/\\/pub\\-a7b2bb0d4b56401789d19dab90cffeaf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "df8638a5824ed23be236f51c4457c71fb4a8971f53c4e1c12c85f0e51048463f", + "regex": "(?i)^https?\\:\\/\\/pub\\-940877c0107e445ea0eb8f1d9e45b70b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cdfae25a495c108a76b5d908574f5ab451cd98fa2d1228ba9bf735c3835559f5", + "regex": "(?i)^https?\\:\\/\\/pub\\-54cc1eebe4b04c389c2d7f5d109528bd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7b4088e4728e36cf662cd2903a2e3636e888c7d9b7bf15f887b435ec0f2373b9", + "regex": "(?i)^https?\\:\\/\\/pub\\-e5aff974c18a48098e3a67d59af6f4b6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cf32bdc182c80a54cc84b7e8a1951ac9fca5968ec1572238accb356f4891d37d", + "regex": "(?i)^https?\\:\\/\\/pub\\-b3f1a256bfc743308af76918e5dc9cb5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c041bdd950af9ef8fd6c1df70a4e7322da3e0bd078cb1c8b46c30fce84aa777a", + "regex": "(?i)^https?\\:\\/\\/pub\\-ffe1ab647adf44ff80e64cc06b32205e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fd2d74692e0b67f8db8290bce7b82183f1e9e4697fab1a4aa4131aebf40a329f", + "regex": "(?i)^https?\\:\\/\\/pub\\-4d26b5779eef479c9a1b517d91c86184\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2b04ef7cb1e780affc0f84d60a213fd6d30c6b19d152b5c56cf0b7329750444e", + "regex": "(?i)^https?\\:\\/\\/pub\\-7e3393797ce342b7b919971f412c42aa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8e2bb31b46d1e3488d91f1a93cf22d962d15c0b1ff83927f019a59284ad943e8", + "regex": "(?i)^https?\\:\\/\\/pub\\-257c4953131541f28361b9046cd3ab16\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "62fc0d8c2cb3f47a9567cfae4408a143cf301d90b07c0a5fbb839317455b1c1d", + "regex": "(?i)^https?\\:\\/\\/pub\\-8b71f714e37549baadfa1617d1c00237\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "96c4a6952476fd5496bb25badc9443ccd8dab5ab09c3d246f3a6710d0a63c605", + "regex": "(?i)^https?\\:\\/\\/pub\\-1dad3b4345f64f8c93a3cfe4ab13940f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c3e347bd5a3edf78ba708feef3034a454e5321e25f4f2ab8711d42d3f2d898e8", + "regex": "(?i)^https?\\:\\/\\/pub\\-5dec6a0dd61b4e5f991145379c4f8fe4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "26c0497123682467aa4f4c886ecd48efaa00b7c668926aaa3ac7680c89319c18", + "regex": "(?i)^https?\\:\\/\\/pub\\-2b7b21ecf4de4c17b7eeb410a8580c39\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "34c2919f4f212ae5b790628586bdb40c7184d72783ce762d95a550b34ed57bfd", + "regex": "(?i)^https?\\:\\/\\/pub\\-83613dff059841488aff95e9418d3fdf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "237ce93f4e92cc7aea9f8e802ef94fc0771b7791894eca18422b255e9b2df22c", + "regex": "(?i)^https?\\:\\/\\/pub\\-e4efbbd740ce40d2ac91b55c3e0107be\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "879da68cc2b63152c12ec8c3d55c8327ecef087d332b19e5d8f82c8cfaa1cf67", + "regex": "(?i)^https?\\:\\/\\/pub\\-6a48d7adc0074d17a7eb6359407d7be1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "36dcbdf07ce5db2e9a808bf319c9545a1a8e3f9623dd9dad8f62600ee4d2ba27", + "regex": "(?i)^https?\\:\\/\\/pub\\-8db00cd2328544e7be3dd893ef2cf7c9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "66d5f131df09cce8c9a8237e701932a1556920dc5d5df1b7cae39fcfeb83b1a0", + "regex": "(?i)^https?\\:\\/\\/pub\\-63cfbc585bee47d99c9ed1358cd61fb3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fbe5fc17ad2217647c9c32750109cda92821570ffccafcd2f82af8e4f7301b12", + "regex": "(?i)^https?\\:\\/\\/pub\\-294b3ed8fa6e4c71af38c190967ed3ea\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "26f09fdcb1c474d7094e4755a998823bb256c0d1148a98279dc5cd36357d9ae2", + "regex": "(?i)^https?\\:\\/\\/pub\\-c1b72cf894244612b32a43947af5d3e4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c1e8d98a99d7048db3b89c5a793e5f329658d7c365e9a6d3c2888ff380e1ccc7", + "regex": "(?i)^https?\\:\\/\\/pub\\-31e4d8bc98334a8cb35e346196d812a8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6424a630acdc107ee263358db1431c73ba360e3d65f7344d706b3a43ab9c0998", + "regex": "(?i)^https?\\:\\/\\/pub\\-ad9c77730a6d4f32a2f535ad8c31c7a3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "417fd198f5db494ac4b6c8c8711481f0ee56b9e7d119d79e0edb67254f5ab026", + "regex": "(?i)^https?\\:\\/\\/pub\\-6a79d431f1834481a3459250f07afc25\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e5be885b430a1c0cc4e30f3e8d7a532e2cc1ec5e1e0bdc6b50ec7e07c024cc60", + "regex": "(?i)^https?\\:\\/\\/pub\\-952d3a4a3be24416807c8e3019051039\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6195c030068f7fd3844e37a79f0999defd1f79f98fda4011d83eceab8af76d37", + "regex": "(?i)^https?\\:\\/\\/pub\\-6dd1b3fc1d9349c29824f8d345be6737\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "01bceeba94362ff453e9a25fd65465dbfca5757114c285bd91a6a7a9681a23b5", + "regex": "(?i)^https?\\:\\/\\/pub\\-14b5071e5a78406a9a92a00be9141089\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6ff32f6f53b1ffaa95e99db63af03442024a03a62409600345dce471775d50c6", + "regex": "(?i)^https?\\:\\/\\/pub\\-152fdbcf597c4a9ca6db109d2d148384\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1c0eeeffa978f65d3d218b2765eccc2bdfe8269a877d71ca1b22950c9756ae19", + "regex": "(?i)^https?\\:\\/\\/pub\\-000bf861703c43c08d332dd691d1f6b5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d427c37f3207f76bc755479165ecfdde11953a62902025e4997080e4f48455d0", + "regex": "(?i)^https?\\:\\/\\/pub\\-a92b0046bffd456c97472996f7080e8f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1a83cf1eaa6a53acbaa76b2f81a0e40e538add63bc7668ae0bc1b26b9c6bcc1b", + "regex": "(?i)^https?\\:\\/\\/pub\\-40c0d7c71b0f4861a56766078cb6f223\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e4b49f28e38d4d18a3a31facfff3cec4e6423210f11d29d1e4d7f5f7e0a8145a", + "regex": "(?i)^https?\\:\\/\\/pub\\-5689faaa1a58426dbae8d62f0ceb7d49\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1764f08bf8b662616a033452c4954f1ce6268628fd4d835119c933ae51ffb202", + "regex": "(?i)^https?\\:\\/\\/pub\\-e4c5a5d86fb14b718e89afbfb40c4a97\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0bc19a06876bca0366b78f19eba83a1dbf01a10b12461216aa819b472c79f5f8", + "regex": "(?i)^https?\\:\\/\\/pub\\-b4c0646fa185436e95232650b59e5901\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cf6a7c57c57ef1b36a255a069b891c95a0b3b225a34a8d7a55e64f69d391b99d", + "regex": "(?i)^https?\\:\\/\\/pub\\-55b8f74c5dbe49f1b907d9f6135d4869\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4ddb112957b28be52fdf4d6c1f5e12b2d28b028d941f0a51c070de5d741683d7", + "regex": "." + }, + { + "hash": "9decf83f3414dd39f7d5e7c668e7d53086dfc3221f5240f37d59368171a09142", + "regex": "." + }, + { + "hash": "6ab017bdaea5f67de31cc9498316a855d3b4eac83570fb959b3b728bb11685a4", + "regex": "(?i)^https?\\:\\/\\/pub\\-08ccb1c9e7d64b1db82f179358ec2e35\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f658a23b3b30b1de559d32569b3e88ec8d35020c493ba98dc29101fc744ea4db", + "regex": "(?i)^https?\\:\\/\\/pub\\-bd98dac241874256b11ed6c63ced0c9d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "23264fd00c7545a43b0ecf28e456a3d427f391ad22450b6d8722e27b7dc80f8b", + "regex": "." + }, + { + "hash": "520e80cc85aff1454461c11261bbd492eebb7c756143705a2b3774e199149184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=galileopb\\.be[\\/\\\\]+$" + }, + { + "hash": "5bb8ebfa6dbe58b1e149f8338b1062d3c646db172113e3b33421ad538bece69b", + "regex": "(?i)^https?\\:\\/\\/pub\\-8e1cf5a28f964235abf99d0bc7007031\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6c39d68a044cbed5ff8f0315626f1a478923745f7f24b71ad6033d80715f82cb", + "regex": "(?i)^https?\\:\\/\\/pub\\-8571d3bc1b9c4806bcb0949ad138f71e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "97770076354cad768808af7de6803d1f205191a4160b157f3b6ee8747237abc1", + "regex": "(?i)^https?\\:\\/\\/pub\\-8f44528a305f43a39d315f8f68a30472\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2bcc36b7114b05de88f36c05dc4523b06dc26944f8f44b2c50c9bcc2ce025891", + "regex": "(?i)^https?\\:\\/\\/pub\\-6d805fed521749fbba49267aba5ebb7d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bc3922cec519074d1628ccd0cefc6670b0cd0f279d23dbc24ec8013a91365bd4", + "regex": "." + }, + { + "hash": "ba1a2e6f5ea1896f0b88f719934dff23e47e6b1168241396ecc5627827b6f554", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "253f113a8069cb0191c607e2bd7d2059d5ac98902fcadeabf90f17e6f3e8f8db", + "regex": "(?i)^https?\\:\\/\\/bafybeicfiubngsjcgpcarp2r2hifafchtqreazbylcl4n7tp3iceifchju\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "c79da924a5bca62382505bf446851e070ea3df492df9a7ab1bf2d38d30d62ee4", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ba5998623c4260965f7a05d8fc01b17257f715e63ea3d012c24e15cb8428b01f", + "regex": "." + }, + { + "hash": "d92a0e87336cbb17a9aec9fdaaaf8fbb637784ebdb5b8a2807df422f80e41192", + "regex": "(?i)^https?\\:\\/\\/pub\\-fd4b01d5733843ae82891161030d0faf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "59736a2bd28b0337ee986bd9ea2a442dcb84cf16988a5070a2e264ba33449597", + "regex": "(?i)^https?\\:\\/\\/existehackderobuxnoroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99e35b57e73738f67b82ee55399307efdf01d6c7df0f1752f7080f7e40f4c232", + "regex": "." + }, + { + "hash": "78a7c7becc9c94d232442598689adb6a8903315ad90e92ac107281b1ee0045d2", + "regex": "(?i)^https?\\:\\/\\/pub\\-581e9045502e43b8be4eb091f4c349ff\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "77c408004c0eb46d464d18c7d43c23c7d7ab9a58c9fc8487d6c7dfe620e858d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c3\\.php\\?\\=yet9656\\&monkey1722087330259\\@icloud\\.com$" + }, + { + "hash": "e7689ed664924021dffdfd9d38f7f8d6ea5c36e77e2cc5b0304635c2e26fb15c", + "regex": "(?i)^https?\\:\\/\\/paypalloginin\\-usa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3e15c7ee7c039054e43d8af1bb5a52807ba6c68a664162d70d64e115782e1ccd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+orange\\-mail" + }, + { + "hash": "f6af40d63cde38f833356dd7fd675a9a5bff6f9aff684bed96f95ecf489b194b", + "regex": "(?i)^https?\\:\\/\\/rewardshop\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3fe2e59caea1b7cbb84a6e525fc824cf58a26b38d1dd6d14116a95805ff12e8a", + "regex": "." + }, + { + "hash": "1bd1c085250d7cf0d73d98f2af46f463ccddefe8c6ccaed596cbdf69ae8a6f31", + "regex": "." + }, + { + "hash": "d650a86783c498a66138f8f0e89fd3d5994c5bf8d74530d9f7549b42763e7eeb", + "regex": "(?i)^https?\\:\\/\\/pub\\-74e012f7d40c404fa53dee7ebfbc433b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafybeic4lb4m4bc3ljkdnrymya6r4cajoyszhb2gzn6z4tphmfxnkksve4$" + }, + { + "hash": "d476ddc0f5986285d652718b013a5bdcc1b4b04f262adee863a13bc68c08a888", + "regex": "(?i)^https?\\:\\/\\/pub\\-84038e8e04f24a94ac879cb5d29f1eda\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ba80f15cfc384e2c84a3c6796fc0d780517ac9e03912bf2f1caa32176451a152", + "regex": "(?i)^https?\\:\\/\\/pub\\-96e7078e13674333a43233741992c6d8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e3e9f8dd86c8b6e75900711943b72582f33478ab81a40ceb3a1d7177e5ce5ce8", + "regex": "(?i)^https?\\:\\/\\/pub\\-9cf297c6a03346d5ac25e6649a786211\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "70053c232f0cfd24964a526a1778a8576a0e4d04bc612305448af6036ed49391", + "regex": "(?i)^https?\\:\\/\\/pub\\-3d729c9602e94c90bb9e1036ba488f8c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ff64b734e7316a38d854ecbb6706b4664437f4537f120e4f36d547bbd1c16d29", + "regex": "(?i)^https?\\:\\/\\/pub\\-28b6157a0bea4e0083b04d82091bef63\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1135d121712aeb8b372c9b7f0edaabc5317a5e88fd3b83b5d42f3f18a86473be", + "regex": "." + }, + { + "hash": "812bbfebd65039b06b1a6bfbec74fdea1c3c83fa814c614d9caa3690b5710d14", + "regex": "(?i)^https?\\:\\/\\/love721\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3a073edd9144e8cad9d7d5648e7c5fb3f18951c3372aab76826d2d3b9b6913b8", + "regex": "(?i)^https?\\:\\/\\/samikhan88\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1962f1716cc6e6c73b49ad5941c48851ec2f476c062f2abba13b973fcf8b6c40", + "regex": "(?i)^https?\\:\\/\\/gaggbackmuri198633\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2424eac04ae30b4a577329314b60ddddbaa367c4c987128baf0ab38f9ffa519c", + "regex": "(?i)^https?\\:\\/\\/pub\\-0c9328f1fbb644468d728ddbdd444b6f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "555d311ff97e456fd9635042e21a90c1652225616971a37768637ddf0359e629", + "regex": "." + }, + { + "hash": "0ffed6eac189d2efc8f7114fcdb76dbc62abaf0212e4f7d4a8b55baaa70956ff", + "regex": "(?i)^https?\\:\\/\\/jogandodesmipernozombieattackroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7e0bbd0aacb727f7abef447513b52055e10b55a2e5d3cedfc82a471e9f143c8", + "regex": "." + }, + { + "hash": "ab2de548568fec1ce753abcb7a9ef78fa8620a73bf1544dea60ed8444c39d556", + "regex": "." + }, + { + "hash": "77dc917d01c79d014d6451656203b60d9102127214d71ab9d3d6a183e11efff9", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalmelee\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9cf825f3415a27f31bd1c114dfb7d322e7d921256e0d697dda0b902036e041d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "37df151c70d18b4941e7bf32cfe2647758a070abe2789dceb8674b4293ba599f", + "regex": "(?i)^https?\\:\\/\\/pub\\-1a98486900684fd6a29493ee56f2586c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6c276ea70a3cfcd01472c82605c06bdcc2b811b51d6424e6145bbc7904c52448", + "regex": "." + }, + { + "hash": "2d49c3c742ad230d0b4deb00135a4616390bcddc5866f591f15fc54462288e3c", + "regex": "(?i)^https?\\:\\/\\/pub\\-ed6a4ad932914ace8123393b5045167e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0c27d95c98fee442db9af8a3feec76581111158cd1ab3bd9d2bcfc0b5c2db956", + "regex": "(?i)^https?\\:\\/\\/pub\\-a3b7e4767ade4190997b2a4d8852b90b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d45d24c107c7a8369fd9c04cdb28824eba3c2799006a2a75066d08e5c1fef2f1", + "regex": "(?i)^https?\\:\\/\\/akshitgodiyal007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0f85f9127450a97473903b860f2c10094d4685c3d577c97c6ed7ccd5ac141e74", + "regex": "(?i)^https?\\:\\/\\/program7\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "241bc12f416845dacd01415fc0758c756aa4342aa49c1433895e142774480313", + "regex": "." + }, + { + "hash": "a13c659d4aa86badbd4b5a5061a1d213f3319427a58d80976eb2ce7eeba145fe", + "regex": "(?i)^https?\\:\\/\\/pub\\-e64bed4a495941b5af9c536f7fcf72d5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cb9d72c8998df13640d449ad55d7bdfc315bdf4c8ce9169d39a9b9459863fead", + "regex": "(?i)^https?\\:\\/\\/pub\\-a32c4fdc7dc64505b28987ea783ffb7c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "92c566636fd79aaec04b79f06ae1dabf36ef1af301d1523139caf4cc4b7256cb", + "regex": "(?i)^https?\\:\\/\\/akshat05072003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "caad5355a6fce980db9d57617c36ef9ac8d6f48473bec280214466d399a5c816", + "regex": "(?i)^https?\\:\\/\\/pub\\-fcf8163c60e046cf8454340a3f7feb0d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "777cb851ca82a8f268bad3d4056a2b1699f53a8c2a9a035e13a58385f2819653", + "regex": "." + }, + { + "hash": "1a72f742fcd41e82bad4ee7f3c79495270f85bd7e5e0cd083757150d32b73b59", + "regex": "(?i)^https?\\:\\/\\/ammar0316\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1be08afbef6899eb2461e8a3558bb4b7d3f9516e22051b0c2f706a37a5137755", + "regex": "(?i)^https?\\:\\/\\/pub\\-9a3d8bb992cf4f619a66b68199763e42\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "98064f065b99ad21894517d03398502cf65e456cb90d574a925a3c11f200c39b", + "regex": "(?i)^https?\\:\\/\\/adithyan101\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1a7d77032abbf1ce08cbb310dda53405b1ca14efbd5281e6b65fa7437859bf22", + "regex": "." + }, + { + "hash": "edb25cd61a5609edb72d3812fda72ea1958c228bd4c2791d1fd6570499254bf3", + "regex": "(?i)^https?\\:\\/\\/pub\\-7707008cef9b47279150292d959554e8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "237d52bc08372a877f62b446620ab6f3e71f1d30353fbb2b1e5e3051b70e505a", + "regex": "(?i)^https?\\:\\/\\/rvaka18\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e504bd2f7d8d151a74624f4ef24f67cf2a7c0b79eaebb44a70d08962b750763d", + "regex": "(?i)^https?\\:\\/\\/ionos\\-webmail\\-107035\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0f6dd80b0745a07434242ee3bde12260ed143915dfdc0ce8685614035e0a66e5", + "regex": "." + }, + { + "hash": "89d500eb5373c3af4e3d9443c96fc7528b356e76dea214645e116fcdb0c889b9", + "regex": "(?i)^https?\\:\\/\\/se489302838\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9dca5863c921eb5e1ed5237001ea0592fee197b6dcce67a1e3dd38358504350e", + "regex": "." + }, + { + "hash": "7f9d7c19c65b0d2cb21aff5fdd147d21c9e7f7673e7ad6e440d60aa97f10ae1d", + "regex": "(?i)^https?\\:\\/\\/pub\\-84d64a5aabb34e5fbf84747594b628cd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "71656a771c20506c3d0131051af2e621db483f6129fce6e42007114c9fd8b19b", + "regex": "(?i)^https?\\:\\/\\/pub\\-039e5294762042febb3b7656c06184b7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8c1f7b544a2d7bce01c83dc6eaa4aafcebb101b5148eba45bedb8f04dcf6e697", + "regex": "." + }, + { + "hash": "3ad8afdfaad6ce0a090265f5c61fcc46d532335dc648ba6eb6a476865f6c1aba", + "regex": "(?i)^https?\\:\\/\\/pub\\-8741f94267d14a8b9b771002d2438dd5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "44451d51e7cce667b851a90d43f17f5a203e757b54e9e27ffc6c2d202765963b", + "regex": "." + }, + { + "hash": "501d436030997ba35102678e3fbadb50e389ff9f6b9c5eb62240dfc70576318c", + "regex": "(?i)^https?\\:\\/\\/aswin1819\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "95f8f3390328e3d180e7aa20170dc08181e822e5b634a274eb8ddb8129f07516", + "regex": "(?i)^https?\\:\\/\\/pub\\-adbb227f7a8e43e2b768a728956fe389\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "97611f0e669f1112a028c513ed10d520feeb7479c6e2dd5edf0d341824238b53", + "regex": "." + }, + { + "hash": "0cfea48772c8075641f49093ea0847e9ccdd317291eceabe5d603f51171fc4cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-eba88bdae3df48ca9042898017470563\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9e6c090554e7c5b9dc8deb76c013b1665ac893fdbd0740ebabe0d4b86115d41a", + "regex": "." + }, + { + "hash": "49d158f1ccdb8824f2861151bdf1e40503c31e7a9de6c1d65d751e02a84465a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "2689445a80dfbf3459d55119c271f90db8b612d1a1918c298606128446771bee", + "regex": "." + }, + { + "hash": "485d6f10a3dca2c9d9d9ed4460cf496b51e7f0ab200b4c223c343f1d8bb5792a", + "regex": "." + }, + { + "hash": "1fac606896d2e6dfa2a507ce32ad040c7a6e3ad8abe90474a3243058fc18a341", + "regex": "." + }, + { + "hash": "35e00b09a444616996f9d6183ca2a30d2e652270061d4addf7804bd3936b0f2c", + "regex": "(?i)^https?\\:\\/\\/gourav7390\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D\\%26lt\\%3BID\\%26gt\\%3B\\%26amp\\%3Bamp\\%3Bredir\\%3Dhttps\\%3A\\%2F\\%2Frahropub\\.ir\\%2Fs$" + }, + { + "hash": "84a6def2c2e05cd9577f2ac0c6952b6086119bfbec5c269dfac7254da516d50e", + "regex": "(?i)^https?\\:\\/\\/pub\\-840ad9d2828545aa84d7cca54df7a549\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e0fbb7b84e387dbfac0783a41c29953743152a4f771bac6f45536f57cc31dcb1", + "regex": "(?i)^https?\\:\\/\\/pub\\-c19d57148a1d43c08c9aea1d46a09e88\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3eaab6b1e057ce650ef915a2a655a57366819d6e0a30facb509ebb86424ed9ce", + "regex": "." + }, + { + "hash": "35794bf140556ec365927f6b6f0ff6fa8e0de3e481e9752216dbcf845c26c92d", + "regex": "." + }, + { + "hash": "d842da2435cd7259c534704606138f450acb0a8dd64d43af9c0e1784c916cec8", + "regex": "(?i)^https?\\:\\/\\/pub\\-4e04fa6e68df477e81ba079a81faa90c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d9b9777058d9818647d365abf3560c7e28e4481af60e53353972ab4fb6014aad", + "regex": "(?i)^https?\\:\\/\\/pub\\-bbab7c26f0b04830b2914e0ac7eec552\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6cf204df995b58971e93c44f91dc27dd182bc976fada99283aae7a2c7ae60c7f", + "regex": "(?i)^https?\\:\\/\\/pub\\-20df5e703a1f4ec9a2c7565ef226ef63\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3c968999c1a6fb6a06476f9fde03a74051842e179efc823046d83dd0f957f402", + "regex": "(?i)^https?\\:\\/\\/thailand0238428934234\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "06720cdb8513056a9d9841c81f90cfdae19c660e6e8af4242ff4cf53bd6c1dd8", + "regex": "." + }, + { + "hash": "79f8a2351d6e271a2e6d1474c6dcad06591856d5293253cc2013ba122721d235", + "regex": "(?i)^https?\\:\\/\\/thailand0238428934234\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a87zz(?:\\?|$)" + }, + { + "hash": "7bea909a9b1ba3d1b79c12b9fad4075afde90f9ecf559b3a57378de66ba59412", + "regex": "(?i)^https?\\:\\/\\/maneesha2024\\-web\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f1dba61674d985b89697e3daef6e968ef2a41290d7564d87a5a7029a05cef482", + "regex": "." + }, + { + "hash": "0f9d69bac9ceea577b0c9d847795b04086084132e3a04bea0658b60f5c2e3b37", + "regex": "(?i)^https?\\:\\/\\/pub\\-81d3a51ed76c4dfaae397308a93a645e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a3254db5d7d49781b0b92fa44dbf8df98d3e25bae307a3d84301d96d0b96eacd", + "regex": "(?i)^https?\\:\\/\\/akashrio2003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "56b3d047a3c8e5a37bae16da19ad9c3c4169c9fe508da3292f4b834f126ef3eb", + "regex": "." + }, + { + "hash": "8c996d244f91889d7dfd3fd1efc67a220ffedcd8bae886ad08eed19380176c28", + "regex": "(?i)^https?\\:\\/\\/pub\\-0c716a0b84164eff88c26766fe5472d7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "493c087c908b4fa5bfc1c63e183a7b8b55a999d9c7400ee9b75092c463f311d0", + "regex": "." + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Frahropub\\.ir\\%252Fs\\%252F$" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=\\&redir\\=https\\:[\\/\\\\]+rahropub\\.ir[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "46dece5f328195bf46e7175461eb5d13cdcb282b303ca31dd5f3eed4f2b6132d", + "regex": "." + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Frahropub\\.ir\\%2Fs\\%2F$" + }, + { + "hash": "2395b7539caa2b46e00345c17a8c2d1945b2aa881a1a0981f4ea0a6debd7fede", + "regex": "." + }, + { + "hash": "9d640a26d29c7af366e04931a43b4a2ea3e1ee74997953e7687606ca4d9fbda5", + "regex": "(?i)^https?\\:\\/\\/adeelshah0\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6991fe89b665be60a19dc74060cb5390a932ad90315b0d354839f3af24086f74", + "regex": "." + }, + { + "hash": "15e2f20d7f2943e83c5a1947fa6dbb1b475840e6bcfe0696fa5dce5d9ab5587f", + "regex": "." + }, + { + "hash": "ae308c5ad033260ce73d320f4b4f87e6a1e1cb9d3d657c40093087483439e93f", + "regex": "(?i)^https?\\:\\/\\/pub\\-61c4149b11804b95b63611676472d448\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ffdd034a1bac155c923570da34c511ab705d1e19293d39bb21f9e91ee8216cbc", + "regex": "(?i)^https?\\:\\/\\/rajendrabisht47\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "777c16e8fdd2864ab40c21410c72d011953c8e6895df7b394a7d6e794e6fcdb1", + "regex": "." + }, + { + "hash": "bf84ae98b5bc344ecb16683d651b10e4db5a5a036e5aab3107c62aca213e2c97", + "regex": "." + }, + { + "hash": "26a4398ab7e0ccc37e240208a90e63d64bae70dc55d4322ce7349b1b62a42871", + "regex": "." + }, + { + "hash": "da65335db2b991b3f4dfafc9b75d96fbad30ac90d7bca9bb2e33ed007cc66591", + "regex": "(?i)^https?\\:\\/\\/pub\\-93bd6b1c08b64188ad74fdcfd9d43faa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "17545c70730938ca9135decb47a2a9d9220d86fc5cd3619159b2350312f4349f", + "regex": "." + }, + { + "hash": "92ffa2fca982bc9ab140da91d58015b8531f4b9a7fe030737344c40e9c23bb74", + "regex": "." + }, + { + "hash": "31c3f444c8314e7c2bae1f5eecd32c931c1fc27a89690373032dc2c902dd3eeb", + "regex": "(?i)^https?\\:\\/\\/shonal13\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "76515fa2237b905d0b5a5f8cce8a0dd6a31dd1235fb3a3d5d00f8f87cec87df9", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?qwtt\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "bd7ae63eae1cc8f0f64d6df8cc4b7b6d6bd530718920cbbcd888b64ac6ffe62c", + "regex": "." + }, + { + "hash": "2ec2923b8316c80df425027b8ded24d582eec9400767f2b808aa2e2e92d518f9", + "regex": "." + }, + { + "hash": "acf4afcf55735851b40997b820ad3d7e75d59b7649d5fadefd787ad3dec9015f", + "regex": "." + }, + { + "hash": "57f07951a44f6113a6bb9a424a46f5f27ef5f318cd99bb42b8f90792562d0cd7", + "regex": "." + }, + { + "hash": "7c3f42886a2285edb90eb8eced8a4e56b3ef2a398cfa2126b99d39476c211956", + "regex": "." + }, + { + "hash": "3d81a74aa098904a87ccba9e6c60a07a08fd9f2ccb62cf9a7468e118cd68d620", + "regex": "." + }, + { + "hash": "81d42aa0fbf3f17a8ff43e6cd187d652718c42e18b329aec86b137ece131f801", + "regex": "(?i)^https?\\:\\/\\/pub\\-a13aa99365054b9b8d4dd3fb21050e8b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "965000f8520c2e63fdc42d3f61c28de62a9bcf9551e72aafeb9269c26e2a72f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+restriction\\-case(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9e4b0fb47b377e8fd93ec4750d1bce5ce72fbe7aa0349ce4f9256275efce04f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ppsa[\\/\\\\]+cmenc(?:[\\/\\\\]+|$)" + }, + { + "hash": "965000f8520c2e63fdc42d3f61c28de62a9bcf9551e72aafeb9269c26e2a72f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+restriction\\-case(?:\\?|$)" + }, + { + "hash": "0cfd0d7dd7e14a6b71c5c22aae20b9d2164d97ed22910cc3f9c481c7018f9d9d", + "regex": "(?i)^https?\\:\\/\\/kuljin22\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bad9c\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "96b149a0c9442e74f17486cdd4c68adfc57a4c0ca552e0922e371ec996fb3951", + "regex": "(?i)^https?\\:\\/\\/pub\\-1d553c139e2b4614ab4a7a10ad8c064d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bad9c\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "75f4595df0c83edf6c21ee9bc5436090b3103158114e286c0901a7ed4ed95a8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bad9c\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bad9c\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "cae5352db8deaddd723c8bfbe67f2b46d3eeaf07b0b2b76ca6a78447662bcef3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bad9c\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bad9c\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?486e6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?486e6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "298bc4bf498ad61f007c9c2e2c166674ec80954cbc51bb1dc5a696523124a053", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ss[\\/\\\\]+zh[\\/\\\\]+index(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?486e6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "dc93b2f4cba4b3558d1a584e8ae8a3514926047ddd5a7ae1ccd313b44fe5df26", + "regex": "." + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?486e6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "75f4595df0c83edf6c21ee9bc5436090b3103158114e286c0901a7ed4ed95a8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?486e6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?486e6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?486e6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "75f4595df0c83edf6c21ee9bc5436090b3103158114e286c0901a7ed4ed95a8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bad9c\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "5521eb2bc58a3e7ac858ec27a57741a1c7e3eb6d2fe957b25631c375ba44516a", + "regex": "." + }, + { + "hash": "75f4595df0c83edf6c21ee9bc5436090b3103158114e286c0901a7ed4ed95a8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "82c9e3f795b8288252c18a4b5a452f9dc4ddfb5defd5b3df8c99a08d3016b576", + "regex": "(?i)^https?\\:\\/\\/vmi117123\\.contaboserver\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1398e\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58ab6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bad9c\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bad9c\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "75f4595df0c83edf6c21ee9bc5436090b3103158114e286c0901a7ed4ed95a8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?486e6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eb3cc\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2833f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?486e6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "d5fc05290dcc2fcf27941135286face10956e3d804c96de91cb697f72b8c9669", + "regex": "(?i)^https?\\:\\/\\/gdereffeas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8797a35e3882080fe521691754a0a27cce967543ebd73e6d45dfdb52373b614d", + "regex": "." + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6652b2d27838602b82a1d9c748be041ac8b7b405f0aca2eafe2d7d3a9f5a104d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "80c14b19a3a8518e558272cb82ce9c8a7204e9ed409128eae8e7ceeb31dadabe", + "regex": "." + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?37ad1\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?38ef3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "75f4595df0c83edf6c21ee9bc5436090b3103158114e286c0901a7ed4ed95a8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ec4cd\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "6652b2d27838602b82a1d9c748be041ac8b7b405f0aca2eafe2d7d3a9f5a104d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?38ef3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ec4cd\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?37ad1\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "6b0f3c87da9b3815e3de8b02f3a02ed07d0077373f02601bb224aeb4db9caabe", + "regex": "(?i)^https?\\:\\/\\/sachinyadav85\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "e765ae10a1f9a244d0b1416aa0edc5c5b55641658ee6b38663a0dfed31f61720", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24bed\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ec4cd\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ec4cd\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "00361446156851a324889d8e3b88ad74f01e933b8a90f94cffb8a57256a1925a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ec4cd\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "125e740c29234c511e0ba314c00b6fc6ecf9370cf448a52740122858f01d2c58", + "regex": "." + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "6652b2d27838602b82a1d9c748be041ac8b7b405f0aca2eafe2d7d3a9f5a104d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "75f4595df0c83edf6c21ee9bc5436090b3103158114e286c0901a7ed4ed95a8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "00361446156851a324889d8e3b88ad74f01e933b8a90f94cffb8a57256a1925a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?49bb3\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a4861cfb0b2116bbf1ad06886bb46cfe9b10ccc6153a59aecec1d3cae6c8a355", + "regex": "(?i)^https?\\:\\/\\/aaannn0\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d0c8\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ec4cd\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "00361446156851a324889d8e3b88ad74f01e933b8a90f94cffb8a57256a1925a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "6652b2d27838602b82a1d9c748be041ac8b7b405f0aca2eafe2d7d3a9f5a104d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?37ad1\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d0c8\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "95dbeede4a706875ef58d59f41447e0b7a7c5f6bf8a4b456b43ed44aaa98d073", + "regex": "." + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ec4cd\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?614ae\\&id\\=goethalsyves\\.be$" + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "00361446156851a324889d8e3b88ad74f01e933b8a90f94cffb8a57256a1925a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "956267a1677b8365c50870af8dae960a7835fe82993a846e16ae9a63f4f977c8", + "regex": "(?i)^https?\\:\\/\\/gouqegouve\\-rkttb4ncuc\\.live\\-website\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?50d49\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d0c8\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "48bbe08eff1788f0364de4f0b2018f19b6dd3375a37115c1bf53f67d638eefcf", + "regex": "(?i)^https?\\:\\/\\/bafybeifroug2qrpfjjt3b5cfsyfil5qnxamh76kq6eemi4ysv4eqefgmo4\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?37ad1\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7097\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3d0c8\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ec4cd\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?37ad1\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "6652b2d27838602b82a1d9c748be041ac8b7b405f0aca2eafe2d7d3a9f5a104d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "00361446156851a324889d8e3b88ad74f01e933b8a90f94cffb8a57256a1925a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e3ecee66b1880fa677b95460c83f653b23e5c25e55930da4a097374cbcc0f55b", + "regex": "." + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48f00\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "00361446156851a324889d8e3b88ad74f01e933b8a90f94cffb8a57256a1925a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chrnet\\.fr$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=zeterinaires\\.fr$" + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fdc6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "da1c1fc1fbf695f74ece85c07291ad38ea45459e62383e3bd438ef07722d18e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9ab2\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?afd13\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ce7b3cedfe8d28ef6be20865b5167440b8c488f4615603c492e94d3306960de9", + "regex": "." + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=somnox\\.be$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f48a4\\&id\\=vipers\\.be$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?37ad1\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "779bc7eb8866e3b9016a69819402e972f8ff78f986b266554b025fd4d6956fd6", + "regex": "." + }, + { + "hash": "c9b1265cad36e2105579e1661fd10b9493d364dfcb5139c42e322b38ddcb51aa", + "regex": "." + }, + { + "hash": "3b5b3896df846235bb5a2ef96c69e8878ef25a41b7d2d77d50231484eda93a9c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+imag(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b9ae23911c313d812e43a157f5b15a818f7c8b28a15e65728479c0f92af2d004", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+271[\\/\\\\]+7686161[\\/\\\\]+78[\\/\\\\]+0[\\/\\\\]+40305[\\/\\\\]+1[\\/\\\\]+1289[\\/\\\\]+e5da9a9c3a\\.html(?:\\?|$)" + }, + { + "hash": "2d46bbcae53f36262f6de9d5b13a72eea6926369afb363c51b2d76bd91e050b0", + "regex": "(?i)^https?\\:\\/\\/pub\\-363d2d5c699045139e4d1f2f99817d1d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3139f3ac52bf179b5e02616352ab58dd52ca5bd3e19353950cb20b258ed45561", + "regex": "." + }, + { + "hash": "71b5ec0aef26a099bb5f5b8526dadedc11c88fab4c862ad6ee423fabda742ee5", + "regex": "(?i)^https?\\:\\/\\/pub\\-5391a49992c64d28a742c1b7dc29f98c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "59ecd2ef098f2ebf3e22a89ed968bb36c40aeba8e9fd7eecbfdd51e7155a8101", + "regex": "." + }, + { + "hash": "7bf6ec1763e71225026e2dc8de420cc7a7ebd7f3b6e55f511ca9783ac98efdc7", + "regex": "." + }, + { + "hash": "2f0ee51c3bd3dd86ac461cbe4fb2175b032e3522547c2236323c2671a0a32b2a", + "regex": "." + }, + { + "hash": "d76aa5def14f1b150b3d5f614908ec6d587664367367b402a6a21e2819fc4910", + "regex": "." + }, + { + "hash": "38b4fde9c298820fd65ad8f9400262074aa53ce01ff9274009afa68ac72c3f89", + "regex": "." + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "33817c28c76aae9cd2923078402dfb68e1d8c9dbcaa2a9fc59750fcb8c50fafc", + "regex": "." + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "859310edc6c0830f85b9806e02dc4171313795b623108df18fda409725427094", + "regex": "." + }, + { + "hash": "3fe752f808f87c40f287b4c0c4d988e46779e4734dbc0dc23b8b9d952de28b20", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscaksmemasema\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6652b2d27838602b82a1d9c748be041ac8b7b405f0aca2eafe2d7d3a9f5a104d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b8bf2\\&id\\=chanitec\\.fr$" + }, + { + "hash": "6652b2d27838602b82a1d9c748be041ac8b7b405f0aca2eafe2d7d3a9f5a104d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b8bf2\\&id\\=chanitec\\.fr$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "364263c78ee2de73dbca30d326d2d9ffc44b6e807e5a0ad626526db7d1d2a019", + "regex": "." + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "2f4407d5b090abf47bec5862bb7b10fccf626bc0ab39c0b55c2c2ab705cd6fbc", + "regex": "(?i)^https?\\:\\/\\/sidharth00007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b816ac4c0137da8a63eb1b3d9c1640d97cbde19da8f3a4c70ae1f4cbda7463ad", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscaksmemasema\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eccb0\\&id\\=chanitec\\.fr$" + }, + { + "hash": "5205ec8a711ab1f4905d7bc971c0f92d9f382deac6ce0333c8174093d5de968a", + "regex": "(?i)^https?\\:\\/\\/pub\\-b32fb4a4c9524c768fa5ee1881c5f857\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eccb0\\&id\\=chanitec\\.fr$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b8bf2\\&id\\=chanitec\\.fr$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b8bf2\\&id\\=chanitec\\.fr$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eccb0\\&id\\=chanitec\\.fr$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b8bf2\\&id\\=chanitec\\.fr$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eccb0\\&id\\=chanitec\\.fr$" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "96ba90662c568f9b72efeafe64d1270ad230918386a72b3b59fcec71a56e9edd", + "regex": "." + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b8bf2\\&id\\=chanitec\\.fr$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b8bf2\\&id\\=chanitec\\.fr$" + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b8bf2\\&id\\=chanitec\\.fr$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eccb0\\&id\\=chanitec\\.fr$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eccb0\\&id\\=chanitec\\.fr$" + }, + { + "hash": "c339c149035113d52fad5573299ea689787b71b08a1b956480dea88c2443fc7d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscaksmemasema\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "b9ae23911c313d812e43a157f5b15a818f7c8b28a15e65728479c0f92af2d004", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+271[\\/\\\\]+7686161[\\/\\\\]+78[\\/\\\\]+0[\\/\\\\]+40305[\\/\\\\]+1[\\/\\\\]+1289[\\/\\\\]+e5da9a9c3a\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b8bf2\\&id\\=chanitec\\.fr$" + }, + { + "hash": "2f2065e3fac682b7023145def3afdd19c4886b27441f750b4687e4d551b1ca1d", + "regex": "." + }, + { + "hash": "19a063802b211002dbe92564ee77ff6f2a715ca742415214698a90fac17ef2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "00361446156851a324889d8e3b88ad74f01e933b8a90f94cffb8a57256a1925a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=chanitec\\.fr$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eccb0\\&id\\=chanitec\\.fr$" + }, + { + "hash": "9742d8291bddd6ea30bc48ac9baf5b24b51fe13f63f7c0135354a0213fb130fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eccb0\\&id\\=chanitec\\.fr$" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eccb0\\&id\\=chanitec\\.fr$" + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8e031\\&id\\=chanitec\\.fr$" + }, + { + "hash": "be28e3a9de823930db501693de4b08b3820f871effd8004bd72ee3aaef147f3e", + "regex": "(?i)^https?\\:\\/\\/pub\\-91b6669617f84e71bc8773ecc02edf13\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4db7d2a08269ed6339bb62264fe835de746d3b88329132d3977a6281fec11d99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "7c4e04d871fefa09893d0904c91aaa35aa7193120f5bfd85cb5ec17680e949a5", + "regex": "." + }, + { + "hash": "976b05e2931a6b5dc3ecb5d8b3867c6043d57a7f81f7a84e1d7a1ba1ac55a395", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "e0fd709d320a3eded2638ba69da43eeb1d3d4c7ffcaa222d6446a95d9d9e50dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "e0fd709d320a3eded2638ba69da43eeb1d3d4c7ffcaa222d6446a95d9d9e50dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "4db7d2a08269ed6339bb62264fe835de746d3b88329132d3977a6281fec11d99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "61c223fe38fe7a9add70e16015ad7736c9d7eab5e88247805154af44d958d0a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "67b13e64f68be4e97456fd71a8a98947d0df1e48bd76113d5315d1919ffcacd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "976b05e2931a6b5dc3ecb5d8b3867c6043d57a7f81f7a84e1d7a1ba1ac55a395", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "56602f341f9fe649bce365664881855b0480e9f91c551d816494eaf75f33a674", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "4db7d2a08269ed6339bb62264fe835de746d3b88329132d3977a6281fec11d99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "976b05e2931a6b5dc3ecb5d8b3867c6043d57a7f81f7a84e1d7a1ba1ac55a395", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "c5a6ceb9258f3a23762b23cf8cb6d7c2f3b8bf2eac135b9590a2f3e57110c58b", + "regex": "." + }, + { + "hash": "4db7d2a08269ed6339bb62264fe835de746d3b88329132d3977a6281fec11d99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "4f0df8db2ed74be2dc97adfdcfdd5296740218728947a36c0ba4afd58b68fbbd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "e0fd709d320a3eded2638ba69da43eeb1d3d4c7ffcaa222d6446a95d9d9e50dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "e0fd709d320a3eded2638ba69da43eeb1d3d4c7ffcaa222d6446a95d9d9e50dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "4db7d2a08269ed6339bb62264fe835de746d3b88329132d3977a6281fec11d99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "976b05e2931a6b5dc3ecb5d8b3867c6043d57a7f81f7a84e1d7a1ba1ac55a395", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "67b13e64f68be4e97456fd71a8a98947d0df1e48bd76113d5315d1919ffcacd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "669c9dedd0339acf141779f3c555b3adbe5ef0c043bae0e0fd6ffb67086536bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "4f0df8db2ed74be2dc97adfdcfdd5296740218728947a36c0ba4afd58b68fbbd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "56602f341f9fe649bce365664881855b0480e9f91c551d816494eaf75f33a674", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "67b13e64f68be4e97456fd71a8a98947d0df1e48bd76113d5315d1919ffcacd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "669c9dedd0339acf141779f3c555b3adbe5ef0c043bae0e0fd6ffb67086536bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "56602f341f9fe649bce365664881855b0480e9f91c551d816494eaf75f33a674", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "00361446156851a324889d8e3b88ad74f01e933b8a90f94cffb8a57256a1925a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "669c9dedd0339acf141779f3c555b3adbe5ef0c043bae0e0fd6ffb67086536bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "e0fd709d320a3eded2638ba69da43eeb1d3d4c7ffcaa222d6446a95d9d9e50dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "61c223fe38fe7a9add70e16015ad7736c9d7eab5e88247805154af44d958d0a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "783018b6be1fcbbd4ebb89f0ce9ef8ef687e25824e237102e9afae266590055d", + "regex": "(?i)^https?\\:\\/\\/axyexkofdbqepftvah\\.com\\%E2\\%88\\%95axyexkofdbqepftvah\\%E2\\%88\\%95axyexkofdbqepftvah\\%E2\\%88\\%95axyexkofdbqepftvah\\@put\\-paper\\-5642\\.dx8igohs9\\.workers\\.dev(?:\\:(?:80|443))?[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "976b05e2931a6b5dc3ecb5d8b3867c6043d57a7f81f7a84e1d7a1ba1ac55a395", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "4db7d2a08269ed6339bb62264fe835de746d3b88329132d3977a6281fec11d99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "e5d9e1880afeb8ce4e35d65e5512f0010def7e8c8b3e4aac0bccc28d3d9d650a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "9d139ebbf8c71ff1275179ac523bcdbc636963e25c23e5ea6331dce11e760954", + "regex": "." + }, + { + "hash": "ab6439693810d9efbe6ccd4ba1165a15337824a6c7ee26b3e8984261aaa783b1", + "regex": "(?i)^https?\\:\\/\\/swarnalidas03\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "61c223fe38fe7a9add70e16015ad7736c9d7eab5e88247805154af44d958d0a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "a4915f76de08d46526ad7240124edf4faa0acee15bfb60566189c797eae0ef16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "8f88bb4a8462452936c83c5c1cfd59bf6747596ecd215b49b79bc0263a776e11", + "regex": "." + }, + { + "hash": "4f0df8db2ed74be2dc97adfdcfdd5296740218728947a36c0ba4afd58b68fbbd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "a4915f76de08d46526ad7240124edf4faa0acee15bfb60566189c797eae0ef16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "56602f341f9fe649bce365664881855b0480e9f91c551d816494eaf75f33a674", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "18d794446ce8310f3f9b3f3d184b7df78dc0835b35d4675af0977a8183a9823a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "230c7f3501014bd9f66f7327c14f386804f90c57fd34da6873ebdd56bdf0c24a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "a4915f76de08d46526ad7240124edf4faa0acee15bfb60566189c797eae0ef16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "67b13e64f68be4e97456fd71a8a98947d0df1e48bd76113d5315d1919ffcacd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "4f0df8db2ed74be2dc97adfdcfdd5296740218728947a36c0ba4afd58b68fbbd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "9ec247cad5ff0444e7e5823504391a8e903c80b099fccabb5f2e6efb0c0f035b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "4f0df8db2ed74be2dc97adfdcfdd5296740218728947a36c0ba4afd58b68fbbd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "61c223fe38fe7a9add70e16015ad7736c9d7eab5e88247805154af44d958d0a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "61c223fe38fe7a9add70e16015ad7736c9d7eab5e88247805154af44d958d0a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "b4bfdbe9847c4f042b2ac3680ecd5a5b78f13a7e0c9471a424743598645bd272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "669c9dedd0339acf141779f3c555b3adbe5ef0c043bae0e0fd6ffb67086536bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "90198bafabedc31a312495c3c8625f91f5a8fe7141867feb329602470c6b6ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "669c9dedd0339acf141779f3c555b3adbe5ef0c043bae0e0fd6ffb67086536bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "67b13e64f68be4e97456fd71a8a98947d0df1e48bd76113d5315d1919ffcacd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "65606edf55a615a0489b37a13841543297b676b55bb558d144e63c051c097b3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "f22a908930762eab8ad1a00e94924ee821c10788e0256c5ce9fd790832e686f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "2f2cf09d2cfdd643585aac25c237b890d82947cc5efdaf8b56352dd05b16de65", + "regex": "." + }, + { + "hash": "07c885b09bfcc12162ad446306c471dd178fd354302cb5bcaca6e276bba20868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "61c223fe38fe7a9add70e16015ad7736c9d7eab5e88247805154af44d958d0a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "6652b2d27838602b82a1d9c748be041ac8b7b405f0aca2eafe2d7d3a9f5a104d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eef54\\&id\\=goethalsyves[\\/\\\\]+$" + }, + { + "hash": "6652b2d27838602b82a1d9c748be041ac8b7b405f0aca2eafe2d7d3a9f5a104d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "56602f341f9fe649bce365664881855b0480e9f91c551d816494eaf75f33a674", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "a4915f76de08d46526ad7240124edf4faa0acee15bfb60566189c797eae0ef16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "a923630993520c3e33be9f85856fed0ead215bef8915f605b5a1ad3c415a800b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "d3b70fccc5d624eb4bb0f14a202bf888578bdf110c2bcf02c1f7e3a4b587338c", + "regex": "." + }, + { + "hash": "de1a0faeb887bc012c2083b1dbd5f98da2acd6c844dfde51537c3ca6cfea2f1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=goethalsyves\\.be[\\/\\\\]+$" + }, + { + "hash": "e0fd709d320a3eded2638ba69da43eeb1d3d4c7ffcaa222d6446a95d9d9e50dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "669c9dedd0339acf141779f3c555b3adbe5ef0c043bae0e0fd6ffb67086536bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "67b13e64f68be4e97456fd71a8a98947d0df1e48bd76113d5315d1919ffcacd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "56602f341f9fe649bce365664881855b0480e9f91c551d816494eaf75f33a674", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "a4915f76de08d46526ad7240124edf4faa0acee15bfb60566189c797eae0ef16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "a4915f76de08d46526ad7240124edf4faa0acee15bfb60566189c797eae0ef16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "976b05e2931a6b5dc3ecb5d8b3867c6043d57a7f81f7a84e1d7a1ba1ac55a395", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "86f695b9466e5e295ce3adf9606d59f3a2d6428cccd2bf0e96d638b453096cb9", + "regex": "(?i)^https?\\:\\/\\/dgyhgrehsdfhgerwyhgdfbh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9058cb35\\-be50\\-4ccc\\-ab62\\-4f33ef9c6e91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "f9248aaea5c13214c1428f5dd809ec1039d8b8b36549a7470df963b9ecb4ade2", + "regex": "(?i)^https?\\:\\/\\/richardsonb500\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ce920aea\\-e433\\-4868\\-8835\\-3a6a127632f3\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "87b44575079f9ff7e29087868deac85523f8bec130de09e7c0aefcc40024ab06", + "regex": "." + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+6a7463dd\\-a7e4\\-4d3f\\-a5e6\\-fac2f3a56ca0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fa16aae3569fb54f48504ba7142abcee2657e01b755546de9741122122bf9eec", + "regex": "(?i)^https?\\:\\/\\/dgyhgrehsdfhgerwyhgdfbh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+73aee816\\-92ea\\-4668\\-adb4\\-4b0a9787d2c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9058cb35\\-be50\\-4ccc\\-ab62\\-4f33ef9c6e91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b48123e1e536e51b3aeecab00159fefb6ef562c46049afefdb6edfdcafc9b4d1", + "regex": "." + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f17616b2c576e2218f47d92706164d37a96611a8be1fc8bb2afe84dce1dc287", + "regex": "." + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9058cb35\\-be50\\-4ccc\\-ab62\\-4f33ef9c6e91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "37bfa6cef0a401e6e9da6648acbf37c500dba6c4881ee6bc3df3020828f637a8", + "regex": "." + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5c025fbc4f5db2afab4222415c173a633cb7fd7c7a9f2d369321008c9c7582ec", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9058cb35\\-be50\\-4ccc\\-ab62\\-4f33ef9c6e91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9058cb35\\-be50\\-4ccc\\-ab62\\-4f33ef9c6e91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+44a74cd9\\-8245\\-4c99\\-8461\\-182c83950c05\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7d2bf20135dd584f8a255fd55e986c34af3dd8d49a92dde9bd231884fb6e5f84", + "regex": "." + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+a03eb067\\-1c80\\-4ed8\\-9681\\-78d0262b6120\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28f3985d\\-a262\\-42df\\-9223\\-7db90738be0a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+44a74cd9\\-8245\\-4c99\\-8461\\-182c83950c05\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+73aee816\\-92ea\\-4668\\-adb4\\-4b0a9787d2c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+053fa257\\-ac46\\-4fa9\\-b885\\-d3e637979a91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+6a7463dd\\-a7e4\\-4d3f\\-a5e6\\-fac2f3a56ca0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "387044e71d89eef79841599f4a28952dc41c87e2e59d87acd8ace6f630670d80", + "regex": "(?i)^https?\\:\\/\\/googlecheckoutapi\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9058cb35\\-be50\\-4ccc\\-ab62\\-4f33ef9c6e91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+73aee816\\-92ea\\-4668\\-adb4\\-4b0a9787d2c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "b34d5fe6c3e392178260277600eb55714e07643e43e4739db603d14e3cd93c8c", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+a03eb067\\-1c80\\-4ed8\\-9681\\-78d0262b6120\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+a03eb067\\-1c80\\-4ed8\\-9681\\-78d0262b6120\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "7f3fd60145ef7f37c6961fb36d28486f86635be5de50e69c86c4f38f569ba1cf", + "regex": "." + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c8caa06b3d231dc3c28ae0a6283dfe23427e19e5e79f8d570e928ff92bc8e899", + "regex": "(?i)^https?\\:\\/\\/y2hooptt\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9058cb35\\-be50\\-4ccc\\-ab62\\-4f33ef9c6e91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+a03eb067\\-1c80\\-4ed8\\-9681\\-78d0262b6120\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ad8b40e3\\-0b1d\\-4aca\\-9e75\\-fb4d434c6c3a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+358f3b40\\-832b\\-4e0b\\-91c0\\-24abbff35ad3\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+a03eb067\\-1c80\\-4ed8\\-9681\\-78d0262b6120\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9058cb35\\-be50\\-4ccc\\-ab62\\-4f33ef9c6e91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+44a74cd9\\-8245\\-4c99\\-8461\\-182c83950c05\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+6a7463dd\\-a7e4\\-4d3f\\-a5e6\\-fac2f3a56ca0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7136eddadc91e24a9d544097174ee0fa13c819e1293a4ca106daf46a200c8cc8", + "regex": "(?i)^https?\\:\\/\\/googlecheckoutapi\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+508a884e\\-6d56\\-43e3\\-9c18\\-90a5a6619be4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1af7766de2a1a22162c1916f015e26fb82ac57cc5d6f7dd0fed6b343031c2751", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ce920aea\\-e433\\-4868\\-8835\\-3a6a127632f3\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ce920aea\\-e433\\-4868\\-8835\\-3a6a127632f3\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c29815a6b733205b9d0325b0c7cdaa0cf57d2a3c36bfd14d711811a3087b1365", + "regex": "(?i)^https?\\:\\/\\/att\\-105707\\-109233\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "028ea1fc53067dee27ad574f73188580841ae8d40cb2e56055655308c4444fc6", + "regex": "." + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+a03eb067\\-1c80\\-4ed8\\-9681\\-78d0262b6120\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+508a884e\\-6d56\\-43e3\\-9c18\\-90a5a6619be4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+8a232b67\\-0ba1\\-46d1\\-9796\\-8c7f6c9ff390\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ce920aea\\-e433\\-4868\\-8835\\-3a6a127632f3\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "107f454657a75a3e02f14f36ba2163289c32fe6ceffe23ecc207f378574efd03", + "regex": "(?i)^https?\\:\\/\\/dgyhgrehsdfhgerwyhgdfbh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4a11417ca3854af801222bf6931d3490066780cb87898144932f06ab3fbcfb45", + "regex": "." + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6f545b1e4d770c5d70937f9931d1b1612523e79cbd46a36bd99856572f4b6551", + "regex": "." + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5d194973e8e2597770a31b5e58175d6f1b543045c7e2111ad6bc39ba14eb2a5a", + "regex": "(?i)^https?\\:\\/\\/dsccfsadafds\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9058cb35\\-be50\\-4ccc\\-ab62\\-4f33ef9c6e91\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+00771651\\-b74a\\-4484\\-a3df\\-df518ed7dd06\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+fa01cbd0\\-b8dc\\-4f4f\\-8bf3\\-0a3bc4444bd8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+6a7463dd\\-a7e4\\-4d3f\\-a5e6\\-fac2f3a56ca0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "95b86ce5f3a1ad0a829fdbb07e889d7bc05eddb74568c68b22a8f83c17589de4", + "regex": "." + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+807a762f\\-abdd\\-438c\\-a3b3\\-f741a5a1f2b8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "50d446e581359ee44da504322a1f062c7ebea120f6ec368d5b8738fff0102b92", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "64a9d16c5831a82945bf390aca90d548ba0a6fcd0764f9a950d6c8230d2fffb1", + "regex": "." + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ce920aea\\-e433\\-4868\\-8835\\-3a6a127632f3\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0d056886\\-384b\\-4a6d\\-9549\\-55477b40b495\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+aff985af\\-4390\\-4203\\-a7e0\\-9b5e9a1fb151\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+43228ccd\\-1b7a\\-4003\\-b423\\-4cefcf7f073e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+14f374f7\\-5f65\\-4749\\-8e0c\\-a6347ad58f18\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3f8ad7b0\\-0e46\\-42b7\\-973c\\-a11a30560ae7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af3cc852\\-e41c\\-480f\\-89d3\\-18c2292e6e23\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+e74effe9\\-430b\\-488c\\-9628\\-c0f0319c4cdf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f73ff51b\\-bda7\\-4da6\\-acfc\\-420381a5cd8b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6d94596b\\-5d5d\\-4c2b\\-b05c\\-3568e4ab880b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7602b6ef\\-27e7\\-40fb\\-b6aa\\-918539b7b258\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0950b10f\\-625f\\-4bcd\\-abb1\\-b7b34ee9d73b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+013447b2\\-3506\\-40e3\\-83c3\\-4d52321b3e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bd165cb95fcaf2035cdadb64b0679133cec65f7e12233a5deb5e8f01d1d462ed", + "regex": "." + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+60527379\\-3408\\-460f\\-ae08\\-8812a79138c0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+02d10764\\-a27b\\-407a\\-a57b\\-a6a0e1c5da4b\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027bd51a\\-f2d1\\-45b9\\-a12c\\-6c470b598c8a\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+28097e10\\-28e3\\-4bbf\\-9513\\-99d230d1cfde\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1ea4cdea\\-f3da\\-4df1\\-b913\\-1693a98cac01\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+870da015\\-38c4\\-47d9\\-b63b\\-0f5194714110\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+50fa0d13\\-c63d\\-4e10\\-bace\\-c05fab04937e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+308897b4\\-681e\\-4baf\\-b8aa\\-7bcd77610433\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+120a8600\\-a48e\\-4f49\\-9a7c\\-5f5f3ea22095\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+dca60204\\-2bae\\-4b71\\-b310\\-5c0f8c490026\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e3107e8\\-ed54\\-4f41\\-85fb\\-8dfecb1df167\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ff6afbc0\\-d20c\\-475b\\-9928\\-0731b48ea716\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c031c7db\\-9f50\\-436d\\-9e45\\-48d2a649da45\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+450bf2a5\\-2a4a\\-4e9c\\-a6e5\\-eace60cc79d7\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+microsoft[\\/\\\\]+3d952d75\\-54d2\\-40ab\\-a9a9\\-dc30e9c03ee4\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "78ec8778a65e4062d6d8c25e1e8935ce215f6f2283d75e60a827aceba06e8779", + "regex": "(?i)^https?\\:\\/\\/gfhhghgjgfjgjgfhj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "94565eae21748d8d891d1d0e1369a8f565eaaeda8d5bf44ac922b401d9c862bd", + "regex": "(?i)^https?\\:\\/\\/damlis543256436\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ee04e781b1e6401a7caef4fadb680351d4a48a9bc847694db75a6b8882f9ff88", + "regex": "(?i)^https?\\:\\/\\/pub\\-03f1c501cb874d7fadb89639f50d936b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9f488f2d0648b0e8f4bd854e2dd76cf27af927f04ef61df03e972bb8922035d9", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f3f7d16dd51a05f243274c82aaca51666c60bf25c5e904137227648564bc3714", + "regex": "(?i)^https?\\:\\/\\/fafafafwr3\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "f90e2c5d2c18192a0ee04ebf2bd02676c150d614339d474990813334207654bc", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+4180e877\\-7676\\-40b7\\-b15d\\-eb383b26ab10\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2401eb4c4674e06a6dd3914b75bcebc3cc3338543f25db0e21ee91e96410a322", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "70e9a5a28f0adfbdf37f1fd9132eb0f98ec94627b2cdf9230afd34f28d3fc0c4", + "regex": "." + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+29070bdf\\-020b\\-418b\\-a16f\\-631e1fd9312e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6ae468ec5af5f77af89571320742882d5ab7f70b8fa8570268f4d6e1df27263e", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a12d1214\\-cdf2\\-4045\\-a396\\-12f4a3af5482\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+29070bdf\\-020b\\-418b\\-a16f\\-631e1fd9312e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6fca25174d9eb147fe6f28cb6fc20465a9e54dcfe2f0b6e7d47acbe53bc67ae4", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2f0e9b13961746b89f10f777ce50340a80ebc26e4a41bb3d5bc4d86b54d024cf", + "regex": "(?i)^https?\\:\\/\\/link64636f\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "f3eb03b92a19a30978ee59c09eefb27e474fb8148d9050ceb2d46c0c993226f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8846c3b9f703fd4d3b62200d502f504b7f033a91c6e4ddfe124491b7406018c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?adjust_t\\=q604b4\\&adjust_deeplink\\=mrdfood\\:[\\/\\\\]+\\&adjust_engagement_type\\=fallback_click\\&adjust_fallback\\=https\\:[\\/\\\\]+zebulalodge\\.com[\\/\\\\]+fcbb[\\/\\\\]+chels[\\/\\\\]+V9V2isk5DvVcv4h[\\/\\\\]+c3RhY2llYUBjcHJmLm9yZw\\=\\=$" + }, + { + "hash": "50bd64a5c8c2999fd77f78b6c3760566ecf15ddb6ec475acbdf29e51dad96260", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8da1654ab5031bf2d4534ae807d52c32786f6ec0caeaf99494e21377b6cb565b", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6ae42f3abab3b512a9f2e555ce2549b63c2a1e13d389e30845b470a8e22ca5d9", + "regex": "(?i)^https?\\:\\/\\/damlis543256436\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "36c8f7c496757220aa2f097ca33b9ee8e2126fea3fbbcec3ca08e4fc79edae8b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "63eab776b95b917d301623953aea1c8f26b1913ad0aa8cd7ac69cc53e378ee2f", + "regex": "." + }, + { + "hash": "8b3ab1277377059aaebbf50f2c14fa45d92282c646c6f68fa8060f78a9bacf0b", + "regex": "(?i)^https?\\:\\/\\/gfhhghgjgfjgjgfhj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "335a76dc048a2120c54e998a95f7fef4ca95fb3822bb89e3cb146080ce4438ba", + "regex": "." + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b712257bf87a0a982b08f3cb6c059389b29d801e9764cdc275bdeb7743bd1184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Redirect\\?ukey\\=1iLvbYUPgUKjjRzY0BggHf8RSWNecBtxH2DzblbeHoyk\\-420751817\\&key\\=YAMMID\\-71237899\\&link\\=https\\%3A\\%2F\\%2Fbp\\-la\\.co\\%2FBizMiAl\\%2FLoginGb\\%2Findex_1\\.php\\%3Femail\\%3Da7bkmooottt\\@jmail\\.com$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+29070bdf\\-020b\\-418b\\-a16f\\-631e1fd9312e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c26dfd0bff9fdb8a71d0d6823f89bb9c7a2f2f7e899ddf129ed9e88c25f32ec0", + "regex": "(?i)^https?\\:\\/\\/link64636f\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+b6de2f4f\\-971a\\-4035\\-bf33\\-7af7edce356d\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "616f5c428e8275532cdc227841a93c70ebaa80af6c0863f878b1bb9fe4f408ee", + "regex": "(?i)^https?\\:\\/\\/damlis543256436\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dda065b28921bd750fcb6261ca40d0df170c51a1ff61049080ef13f59b0ba929", + "regex": "(?i)^https?\\:\\/\\/dsggw3454\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "42407e6c0a7a04b7c56bf59672aed613e283c9ef5e33e152e2b3796fd6e997ce", + "regex": "." + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "eddb729ba96c8c275cefea2214abf52ce4e3e4839e0476f63e4785e35f1e4e4e", + "regex": "(?i)^https?\\:\\/\\/pub\\-7f5a3b4e31f0408ea659d95aaaec4035\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "73b872b0878bb2e45f47008fec18419fc1adbb3c4b8d4d2ca49f40a544ae8939", + "regex": "(?i)^https?\\:\\/\\/link64636f\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "adf6f5863fdab38ff76d6298659126da0e78cd5fa24aff3a5546e8528fe96740", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5f2e7b06f99fcc0c34a07095d3bf243a52c7276c15b7d989ae7c76a3c5284fcf", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "674ad270fb01c16f2c8184298895e2978bcec640ba5505b076239c25fc95697b", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8c1b553740a028a68ac1c27f494c70c953ecf3ae1b1be504de920173ddf1aebc", + "regex": "." + }, + { + "hash": "ccd11a893e47cfc61e427bf2e035f8b6d1c5d63669dee98bccf3ae98872b971e", + "regex": "(?i)^https?\\:\\/\\/fafafafwr3\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+73aee816\\-92ea\\-4668\\-adb4\\-4b0a9787d2c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.tropancte\\.com\\%2Fs\\%2F$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "eb632ca2517d3711a12b74e3320ffd53994304698be84b1cace7094dbb7e1e78", + "regex": "(?i)^https?\\:\\/\\/link64636f\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7cdc5a668a06f124415fc7190477b2101d4f23d094b42c91ca9f1ebffc58dbff", + "regex": "(?i)^https?\\:\\/\\/dsggw3454\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5883659c8f57916dad94b7618fccadd0f43faca3f21ccb5d40e7896dfc0e5156", + "regex": "." + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a1e6796af42ac0642687bd839ed7799123e46d4cc95d5cec30dcad95b3ad33bc", + "regex": "." + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+dcfd07d9\\-4766\\-434e\\-9711\\-a2f8cac7463f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+29070bdf\\-020b\\-418b\\-a16f\\-631e1fd9312e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ebd7e375c1e85bb4486dfff3b85044f7ec68104d646e02931a688a7b59da1c9c", + "regex": "(?i)^https?\\:\\/\\/damlis543256436\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "03ca4fa39a6f2ba7cea6a11a9c9ac70849efb6cbe5f34dcc51da8955addf6496", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+webui(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8651999311f61c4ad85d408e106e08ff8ee44b23db04ce897239dd6b0ae66795", + "regex": "(?i)^https?\\:\\/\\/fafafafwr3\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+8e5b643a\\-fade\\-4142\\-a9ea\\-094628fec9d6\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b654b4e1776e83c9314ced908f6bfce97cf970d18f401181027844375aff1c1b", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+29070bdf\\-020b\\-418b\\-a16f\\-631e1fd9312e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "fc36c1af234f0bb390ea1bbe7d5178235a58724035083632d4ff45bbc3e1152f", + "regex": "." + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d770cacf\\-fc5a\\-4650\\-886b\\-c95aa36cfe67\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "61321626832ebac82ad0020e9ad3c6328d860155d7e1d29038c6af257f6a0b75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Norge[\\/\\\\]+api[\\/\\\\]+a\\.php(?:\\?|$)" + }, + { + "hash": "8ba8a17b242e5f932369f16f96028cd6fc9b3e84d46b9fa5ad97e1658fa91ca9", + "regex": "(?i)^https?\\:\\/\\/gjfgdfger634\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+88813f4c\\-a132\\-4ed1\\-867d\\-e44a2a69c0fc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+microsoft[\\/\\\\]+0a4ad297\\-dc2f\\-4174\\-b3f4\\-3cf31670a75d\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "edcc3eba2f4ac254500ef308efc2346f69b204dd70c9e008c23ebcdfe9279ae3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+446cfed(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "baa00a4fdc3c707569396c7fe56d7931475ee31c1149fd6a220889ba0029feb5", + "regex": "(?i)^https?\\:\\/\\/muhammadhasnain112\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+04878392\\-dff1\\-4c7b\\-bf73\\-54ac01b8a4ee\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F\\&data\\=05\\%7C02\\%7Cp\\.goovaerts\\@contilines\\.be\\%7C1f60f5d8afb9420a406508dcb761c69d\\%7C299cd88bf88c45d5b847c0f707beb18f\\%7C0\\%7C1\\%7C638586877799470374\\%7CUnknown\\%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0\\=\\%7C20000\\%7C\\%7C\\%7C\\&sdata\\=4kKcHllLLKPYYx1WenSmm19(?:\\ |\\%20|\\+)+cM8PLdwrtq2beLxCljk\\=\\&reserved\\=0$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+29adcd48\\-7922\\-454e\\-a5a8\\-ecc8d8b4d368\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+d69f7e55\\-42ce\\-4617\\-b1c2\\-bea6b3352b2c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2f27ce67172d426f09245ad7b20a8fa9804296d19c641e7ad99466015fe2a6d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php(?:\\?|$)" + }, + { + "hash": "d548ba751609900a4f7a2d1b29105c11738f11e865d1aa30cee892507ee671c0", + "regex": "(?i)^https?\\:\\/\\/cogecokokshd\\.w3spaces\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+4340b58a\\-c571\\-4509\\-811f\\-a22b78fa3641\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b1fef5162a0f62a87fd9f4990e1f765ca8b9f72a9b82d75926d5e5a1420b0e38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+on\\.html(?:\\?|$)" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+c90a82fc\\-9939\\-434e\\-9e37\\-5e63097c0d74\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3c0a518c176a2f769967cd73e695d23eea0fe58444e3580c0504c72ba9e389a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=twfujg\\&secretary1723131645789\\@icloud\\.com$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d770cacf\\-fc5a\\-4650\\-886b\\-c95aa36cfe67\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "25cc494a3ca61e8477f2ba64f9dfbeb0870552d484caf78120ca438a72bcae63", + "regex": "(?i)^https?\\:\\/\\/gjfgdfger634\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e80cacf00a3fa0a4e29172f782df075c473fa24cb28c957ec5e12e50fde9fe7b", + "regex": "(?i)^https?\\:\\/\\/etrtryrytetretert4\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1860a393\\-a8b8\\-43ca\\-ac91\\-0e2064914dd8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1860a393\\-a8b8\\-43ca\\-ac91\\-0e2064914dd8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+c90a82fc\\-9939\\-434e\\-9e37\\-5e63097c0d74\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+c90a82fc\\-9939\\-434e\\-9e37\\-5e63097c0d74\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8621e6ea978232f4e8aab31ef51d121e726cad1eb1aa912268a70cdaabcaad84", + "regex": "(?i)^https?\\:\\/\\/etrtryrytetretert4\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "714bcde73e585146636a680b88ae760757fe69de9d5e8da8ef06b214e22aea14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=drhsro\\&energy1723131097723\\@icloud\\.com$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1860a393\\-a8b8\\-43ca\\-ac91\\-0e2064914dd8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e8c906e21bf02a5469b8634b5bb7d3fb89a8ec6018511117ae38542199eae62e", + "regex": "." + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+e0814373\\-d77c\\-4cbc\\-90e5\\-8db8d0b2998e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+1860a393\\-a8b8\\-43ca\\-ac91\\-0e2064914dd8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6a9d66551546872fa480751307b167502e3f6f308672c2891062205165f5943b", + "regex": "(?i)^https?\\:\\/\\/tushargupta97\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eca3ef579dee0281c4ec0300ee21225cb2b7949f56e6eed432c2d17aac96db3e", + "regex": "(?i)^https?\\:\\/\\/gjfgdfger634\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+04ea0e74\\-8a81\\-404c\\-bf7e\\-6028d4b51922\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+4340b58a\\-c571\\-4509\\-811f\\-a22b78fa3641\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d770cacf\\-fc5a\\-4650\\-886b\\-c95aa36cfe67\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "81b453ece0c1aff483e941861abb78b9ceab6c9ba7ba7dfd1345df4f4b6130a2", + "regex": "(?i)^https?\\:\\/\\/akdatgood213\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+e0814373\\-d77c\\-4cbc\\-90e5\\-8db8d0b2998e\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "41153e8b9576c9ae20200718ff9548c8596f69f7aa3381afe36c96b171651fe5", + "regex": "(?i)^https?\\:\\/\\/primeyellow346\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+c90a82fc\\-9939\\-434e\\-9e37\\-5e63097c0d74\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "99697f78ab3d9927a2a44b4dacd91f178fdf8583f2378751867d5beea46a567c", + "regex": "." + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d9218af6\\-0c0c\\-45e2\\-b57e\\-28db1cc1e704\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "f20f6e3f62fcf67547caee95e835d4cf766888397a9aa0ec574321e14b8af22b", + "regex": "." + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+4340b58a\\-c571\\-4509\\-811f\\-a22b78fa3641\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+d69f7e55\\-42ce\\-4617\\-b1c2\\-bea6b3352b2c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d770cacf\\-fc5a\\-4650\\-886b\\-c95aa36cfe67\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+ac97ff4f\\-b938\\-45d8\\-8b57\\-5b7e198417ee\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "beab353b908084025a6dbeb5baa17adf8479b5f4e588a001fe4e6ecccdc47242", + "regex": "(?i)^https?\\:\\/\\/gjfgdfger634\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+70c620d1\\-1279\\-4c73\\-8999\\-33ac9a76c1a8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+02943af8\\-bcd2\\-4f03\\-8fd6\\-690c210a4e7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "edcc3eba2f4ac254500ef308efc2346f69b204dd70c9e008c23ebcdfe9279ae3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cca5385(?:\\?|$)" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+de8c7067\\-8f10\\-45c5\\-a0fa\\-5d8ec1f5c16f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+055b76ff\\-76a1\\-4b9e\\-a7d7\\-1974ccd05645\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e7df04903704e0ce9745487e490de7c7520226bdaf0188a14b5802bcfcbab42f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=znxuka\\&oil1723125408481\\@me\\.com$" + }, + { + "hash": "cb9d0750e452be1464162ba3045650bf57e7e58892623ce99eb703c9d89ee8e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=hdpzmc\\&grass1723119745689\\@icloud\\.com$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+7bfdc89b\\-c51f\\-4ad6\\-97ee\\-f34cbe532af5\\?redirecturl\\=https\\%3A\\%2F\\%2Fwww\\.oblanmall\\.com\\%2Fk\\%2F$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7bffea6d438902e0220e591619bb956dbe1053e044b04198459c01505796e659", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=ykeizo\\&painter1723126451426\\@icloud\\.com$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5fb53db8cf201d41b634f3bf214963dab5b5a09bb32803bdbc91959d2f1d1716", + "regex": "." + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4eef9acd127fbf9da1d99c24d8891f0fd36be1de66843b51530fca823e243a56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=cgyxnf\\&traciejoint\\@icloud\\.com$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5keHz(?:\\?|$)" + }, + { + "hash": "79db0bab6a69edb614ca9717c4dd42bdca66c339e32d35977c20cd6d85672454", + "regex": "." + }, + { + "hash": "027906e5a3ba5a74ca50e95871b4bdcf7803be654586763f8e586ceb54f92700", + "regex": "." + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "daa8435f021fb798ba4afe7e16804b79bd9ab6532bfc81a95e6ddfb365fb153f", + "regex": "(?i)^https?\\:\\/\\/aman\\-mishra12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4363ba5d252b200c53829e34d6b621f4af99c93c7170d9e7c6b4096b97e2f971", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=mufjkk\\&dress1723141849521\\@icloud\\.com$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+1f8c7673\\-32cf\\-45b3\\-b685\\-2a41a0824657\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c80e56cd21d7d78b9a60e77827d445178577132c1bcb4b6ec6c058a39e901f1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=gzgwsg\\&computer1723139296830\\@icloud\\.com$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b20dd915f9106a025d27994f72622c87d1229e368c1de336d41edb9f104e621d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=nidbxq\\&forest1723119283983\\@icloud\\.com$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4578f1975c1f8c5d749fec0e48bcb4989fc17b242e016341ac76491f2a029d7b", + "regex": "(?i)^https?\\:\\/\\/currently87721\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "411d61241b1826acb47438c660b53ba680efdb589d9481a3944c12dc8b90788d", + "regex": "." + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ed420279ee81fefffb4134ec4f922fbe39255f8df48a0ca626f6e9f6ecd7c770", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=jsqtag\\&lizard1723133204739\\@me\\.com$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ee0756b3\\-ff40\\-45e8\\-899f\\-825f1c067ebf\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a5afcd3dc96f67670472869c78467c67bd510bb800bbd30c11ae2e318d8dd705", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=yrghyp\\&processor1723136028279\\@icloud\\.com$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a24c043ca3f010e875c770105a2dc100ed940e1797edf505741ab7cc7a3cc5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=lxpmcr\\&tent1723136422171\\@me\\.com$" + }, + { + "hash": "6f7cf6d35a3acf10d03129aaeeb58f3e913978e0315307704493726ae15f16b6", + "regex": "." + }, + { + "hash": "972f8578fbe08f2fa78f63e319a4c85609d11d37ff52fcff68fb277f5cf4b4b5", + "regex": "(?i)^https?\\:\\/\\/pub\\-688bb1299d4e47e2bbc83765e94df2c9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "258a35851c548391c498959ef8d09b9f325e7424efbf67178e3e782d8955d0d0", + "regex": "." + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+93c0892f\\-400e\\-4913\\-86ba\\-e4f21dddd78f\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+43aeedf5\\-68d8\\-4993\\-9af0\\-a781d0648f48\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+49e1c29d\\-993d\\-40fd\\-9dc3\\-fd4dc3c2d619\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "f8ab52b048b4aa1810e2e0333e666ef00c7ed57d92856f5586be600ef36c24eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=quqsfi\\&dawn1723114775415\\@me\\.com$" + }, + { + "hash": "8affd56ab03962678070863aac1b79a7224e9b8431188e7c0f3994616f97efe4", + "regex": "(?i)^https?\\:\\/\\/pub\\-ee49f92cbf044b5f977459e083c36a21\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a8fa98f2123ae59a6d6051d644a4b89dbf2a1b061b4a6a439c9c760de7fbce0a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=rgyihl\\&art1723119250050\\@me\\.com$" + }, + { + "hash": "952b5452f6a271ea238f75b76f6e0093ea52aa9f176b44d46ed569365c7f72c0", + "regex": "." + }, + { + "hash": "e6db51cf806c8b437afab44e48821d0e4b3825bbe3da13117bac11f7301404dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=acwgzi\\&shoe1723156663499\\@icloud\\.com$" + }, + { + "hash": "1f21e4f37e44aa77eca4ec046a5f530b065341b4f0b010d76519d8380aac124c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=zpfqld\\&paul8swindon\\@me\\.com$" + }, + { + "hash": "9ca1e4d8b0eb2f48e8ef763004524bc0ff30d67440bfaee77c4644843202e83f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=frnrlo\\&park1723132942704\\@icloud\\.com$" + }, + { + "hash": "7ed9b43d26d30330fa63fb58150f351f05432267e919ef92fb5111883b4adc33", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=lqmnov\\&student1723120265987\\@icloud\\.com$" + }, + { + "hash": "02b6fbaef25ef8b78cc1ad1608a8ca8635f46b211fcae21c3278202ff0bfb3e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=enuzjz\\&dream1723114895470\\@icloud\\.com$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2639eeac728bc0799eee6be9c2e015e84f26bf0d33e26d5a7163cad81bbb4406", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=jiurgd\\&church1723138351347\\@me\\.com$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "814ab8f4b1fc85804d0a7e05f8a3bfcc016d374c77d0f1af9d2abc525a0068f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=jekejw\\&policeman1723117413912\\@me\\.com$" + }, + { + "hash": "aa0e061492127c99aac0958fd1053bfb6f0b461eac944c62da4c473fb745938b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=mpbrxb\\&journalist1723116047858\\@icloud\\.com$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "71fec7c7fff3c7d6b5d259e42a313cd7a9c03255c88ca70de5ffdf4ba3d87855", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=dyydwq\\&painting1723131314684\\@icloud\\.com$" + }, + { + "hash": "7308efaa369c81a13678f345e676ffbbcee2e900811fd88030abaa279e101212", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=medgmu\\&brother1723114162569\\@me\\.com$" + }, + { + "hash": "408b75fa2885c3330dccd5a918ec04257ad57d9516a5c35e4affbec0084ba583", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=hidwbk\\&spoon1723124007636\\@icloud\\.com$" + }, + { + "hash": "3cc6a25e0fb1ccec661ba763a08780762a8fd18e8d2b46ae80fe1f7d25081182", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=sdxfle\\&processor1723141773437\\@me\\.com$" + }, + { + "hash": "2d373c0a3fcd7da81eab62e8e8d36551aa6afecb5468eb87374e831d6419777f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php(?:\\?|$)" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+b2f5c755\\-fddf\\-4140\\-a4b6\\-1080c767d2f1\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8bc7fdb4b8c72a78d8a6251c731aee975387b78715c594de2aab03ee56a26f29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=unrmdd\\&kilobyte1723133664819\\@me\\.com$" + }, + { + "hash": "f0bfaa0a5c66156974ac3486ca8ad2d4a9d6aac1845221ce720d10b80bb98fb4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=uwsipv\\&pharmacist1723118502281\\@me\\.com$" + }, + { + "hash": "29640b8aa9f460985eed697b76dfeb34ba57bff99f58ad9aa8ae172ba828b78b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=gapqte\\&iron1723137971898\\@icloud\\.com$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+6e182c08\\-bd3e\\-4dcf\\-bfaf\\-85d6df7acf34\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dccb99e10637d71d00ea8c7593dba179cfc4bff6a03267a8d680b7d520272e7a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=kqqooe\\&raincoat1723114401843\\@icloud\\.com$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+99b1338b\\-fc17\\-441e\\-9ea3\\-173251964166\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "76d8339b7ed9ac7b292203a54684f9481c67fba9f383c659ad06b75e8075b42b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php(?:\\?|$)" + }, + { + "hash": "9da3aa4d9d37a62320df11d58285c9bf3fa7b1c82a92f77b43b6da6a40bcaf2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=cpunpt\\&france1723122695957\\@me\\.com$" + }, + { + "hash": "615f88246f509bc4e5e0782f274edeb014df712a9d2d7a623590d09d8bf0aec1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=crdlfy\\&pencil1723128698019\\@icloud\\.com$" + }, + { + "hash": "fb9dc12daf7ad7ba226090c99477477c518ddeeddbc2bbd65ae8f3b5f2caffc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=hakhjn\\&mechanic1723116276827\\@icloud\\.com$" + }, + { + "hash": "25de5a78bb4f18110d7a6c183974778ceb6d5bcddd4bbe1431a6961cfba869dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=xmawyy\\&england1723116039585\\@me\\.com$" + }, + { + "hash": "fb2a9b0ce46ea079ef983e46332c999a5a78de890bf2d39f827e421172232a50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=osiecj\\&glass1723142133537\\@me\\.com$" + }, + { + "hash": "4eef9acd127fbf9da1d99c24d8891f0fd36be1de66843b51530fca823e243a56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=cgyxnf\\&$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+b2f5c755\\-fddf\\-4140\\-a4b6\\-1080c767d2f1\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "130a8069a1de499e58cfd1602d2ee430d7d78f1503913320ee577aad4a76e19d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=myvlnf\\&lighter1723130569955\\@me\\.com$" + }, + { + "hash": "8a0b47ae7e3092afee6f0483c59e95f4f87fb958bc11439aa7aafdb56b0bc2f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=ifoccg\\&fountain1723125457410\\@icloud\\.com$" + }, + { + "hash": "bcd5634e26c90f510a2daa427a15f0b068fa6015f3452c280a8d252b9d598a9c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=whmrah\\&ocean1723118747119\\@me\\.com$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "0b005235bcc2e61b4b9964d807ec2808a022d5f734ed6b172842c70011b8ea40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=kifxqx\\&energy1723126937222\\@icloud\\.com$" + }, + { + "hash": "0f501503c4610ebe55da351c331dcd2fb90b9d20da3b7f1cb9874e882d01c872", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=jlwdbx\\&area1723137654348\\@icloud\\.com$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "09452179c12549006fd661569df21ba1406dad46661872c3565badac80d55a07", + "regex": "(?i)^https?\\:\\/\\/dipanwitachakraborty25\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1a7fb42f8f96d3c072c8acfcfa3b40e822a3893c426434887f56ef264e30d15b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=fajrfi\\&lunch1723126358028\\@me\\.com$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "e511061dda56657c823eeec8c49c530f1d3670028b71f92982e8c80fb1770568", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=saggti\\&brother1723120543831\\@icloud\\.com$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+49e1c29d\\-993d\\-40fd\\-9dc3\\-fd4dc3c2d619\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d7d0df94ad19dc7680f4dc1a1bd517d43bb82bd61a092ab93e4cf77d0dad937e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=wvrqhk\\&egg1723123557558\\@mac\\.com$" + }, + { + "hash": "ccc213fee30a0e005824245c2441008250b65a4be783acc1dbf41d391827ed20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=cryota\\&branch1723115687297\\@icloud\\.com$" + }, + { + "hash": "befa6f9cc7558ae5b9e19d314a02b73c5dcadc696d32a7b2f63169f5e1c51c9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=evnavn\\&toddler1723119350776\\@me\\.com$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "87cdad844db52419b16e1716aec197ec8993410086e4f10c46fe0c121a829588", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=nsxgvt\\&refrigerator1723113682170\\@icloud\\.com$" + }, + { + "hash": "a159c73542f5bd645b3154e9ca2d683b1b3d30105f1a66380d8bf3478090362a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=koutaf\\&rainbow1723135149298\\@icloud\\.com$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "14bfe0738e6c05ac7e08eb4d56cfc0d8ae241ff34bb17152511d68873cce2d6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=hwwxoh\\&king1723132852960\\@me\\.com$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+b2f5c755\\-fddf\\-4140\\-a4b6\\-1080c767d2f1\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5cf91017410a55e85aca567c076534350f81c6dcfca658f0ac3e606c80eb03b9", + "regex": "(?i)^https?\\:\\/\\/abdullah786521\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "16454afe724728d4d938d9da213f0b9d0edf377706a3b9a4a8cba936f45444eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=mruzyb\\&insect1723123891783\\@me\\.com$" + }, + { + "hash": "4443ad874f7458ecc04a98a837c2521898b452260cf9eed754a5991eccbc626d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=gqndmk\\&cartoon1723136153952\\@me\\.com$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "06f16eee5d4289d1fc6e7e95648fa7fa9bf4ec37461c9db3e694b36f79de321b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=ucauom\\&dentist1723116750914\\@me\\.com$" + }, + { + "hash": "4358c9f2e66ed52cc6fc16426449576d45ed037cf2f5631972ac51f341ce7781", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=noggxq\\&processor1723133523696\\@icloud\\.com$" + }, + { + "hash": "64b1326b858277ac09b5177aca1d8d483e24e1763c9e95aa23acc17c493a43f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=upqqzt\\&leather1723119665236\\@icloud\\.com$" + }, + { + "hash": "df415a99df74771edf3b2cf5613202d610ce927b7d0f0298ef6ef42d80bbdf1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=jbpvkx\\&army1723120066440\\@me\\.com$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+99b1338b\\-fc17\\-441e\\-9ea3\\-173251964166\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "6d16b6975b28949311cbacab45f1f67e24a868371db2018a8287e55b8c704e6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=mjzois\\&carpet1723133669955\\@icloud\\.com$" + }, + { + "hash": "8c62f1cde86d6119122b78138bdba5d7914b6685dca8935767eda13bf418355e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=hjdjxx\\&china1723125486832\\@mac\\.com$" + }, + { + "hash": "b95399cb2c8950001631c35989c59f5c7ac846670ad8f65974e603849705b323", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=gvylqj\\&sunset1723134270644\\@me\\.com$" + }, + { + "hash": "1cabe0073ce206752c7f801e80551adf869539ffdafc7000889c875b5bf9d8fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=upyoiu\\&lawyer1723121055371\\@icloud\\.com$" + }, + { + "hash": "9cea5e7beae5c38af9064a26f59953bdd99f62a0e3c56a11979113010a052f07", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=dxzsca\\&yacht1723141338220\\@me\\.com$" + }, + { + "hash": "f12e03e8ccada7c2f2e36c495110cba51c4f296db7d8baa1c54ef56f9ec5ccb8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=tiktrl\\&midnight1723135833196\\@icloud\\.com$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7c40ef434a4266239a6f9d22d7ecd795e1cfcfb3b13fb21b75d16995ac3bb21d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php(?:\\?|$)" + }, + { + "hash": "146e4c6ab1e37adcdf699f042d786a926d34651580ace79dc2052040327a26db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=ivtzat\\&translator1723130190916\\@me\\.com$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+99b1338b\\-fc17\\-441e\\-9ea3\\-173251964166\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "e87946e10a93b407522f5c751e56ff53e5c4d29d5e2505ff109ac6de6db95fbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=tkbtob\\&park1723127246355\\@me\\.com$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+9a734f1b\\-43ab\\-436d\\-9a43\\-20d97c4644a5\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b196350c8c31126eef6f297844b9447b093d5acf8b1549bb8234998d91506527", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php(?:\\?|$)" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "436b6e26dd4ea6d8b5d1036515c7cc608e973f75589a1c3ba2c45469f1d68465", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahsckascmasmeasea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9433df8691b1f940f310f7ae429106d58d6cf9546b10d5f2224206ef695cd04f", + "regex": "." + }, + { + "hash": "1384ccb07eaf1fea17e085bd07a4780c6b2f95fcf3a9eb056d9c56c117761e7f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=wuavpk\\&teacher1723140998288\\@me\\.com$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7d42d962\\-81bc\\-4439\\-8b2f\\-f8336b450d54\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0fcb667a\\-e86e\\-42cd\\-9557\\-d22ac7722862\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "329df1f7baa479a9f68e50601d5e521235681d55dd142885c552d72a85c6809b", + "regex": "(?i)^https?\\:\\/\\/bafybeigp2brjcm2qo6iotyif45ppl2gxwqindlswa53poondf5db7uswom\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "02925c807f925a5544f36ce2aaa382034d16382dad96581f65703c3bb6ac4651", + "regex": "(?i)^https?\\:\\/\\/robux\\-gikro\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "9c8ae02c948d21e7f5266806d32030d11bc909c8830a2721fc11a4843d23d931", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "9d406aaa0099e833db9283f8b35cd4a12352aa1da34d505110e71933c8f8c461", + "regex": "(?i)^https?\\:\\/\\/sdrnj35tujr6t\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7d42d962\\-81bc\\-4439\\-8b2f\\-f8336b450d54\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+02602474\\-c97f\\-442c\\-bc7b\\-b60ffc94b44f\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7df4941664a4b4364559f14aeaf50d40b36b0d06081293ebb66f67892e2ae275", + "regex": "(?i)^https?\\:\\/\\/bafybeicqmnfjrp2tlc4zjqu46diq7kj64giqtydwblrxthdpf4uzur2eyy\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8e04e021c836a7db31ead5f3f1d6ccfff13f1e288ba0d6207ab5d7eccc957344", + "regex": "(?i)^https?\\:\\/\\/robux\\-gikro\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "c8fb0ff846123d7e5cfc1341c425b15d5a0b929828e97bbdea04e48ab8841f2a", + "regex": "(?i)^https?\\:\\/\\/robux\\-gikro\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7eee934fd91203c7e0d86992da87d8c5ead9656b173d1a69322457623983cc67", + "regex": "(?i)^https?\\:\\/\\/bafybeifjiwij2gmq2mv6aczlmm7dms6f5ns55gq3nos63lfxiqfkgqbqp4\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "9d878d2e7f8334fbcc3a2db813adab434869cd26960e553be604925b2348727c", + "regex": "(?i)^https?\\:\\/\\/bafybeibdhek7jkgoehehtphxn4vspvlq2ac66oxubrzh4dpc4vpw57tapq\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d9984b47f6939d21e52ccbe2be6719af2e674604b6d2e6210ee7a63aa293aa3b", + "regex": "(?i)^https?\\:\\/\\/robux\\-go\\-50k\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "1372a64eba24e14685c714a9a326a40f451d9be6d5442f30692184db48d4a49d", + "regex": "(?i)^https?\\:\\/\\/pub\\-3ab51ae3df884df7aedeebd06f797ddf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7d42d962\\-81bc\\-4439\\-8b2f\\-f8336b450d54\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "a05fff6955642ac165d8e707184194221723f80942a8ea0ecc27bf642cc300c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "f183167c621ce89b22e9dce34a10d1de53e7c82b08b3cfc8f6bd400c07774684", + "regex": "(?i)^https?\\:\\/\\/bafybeick5rcel46ahurt5pr2l53wuaac4f5rfwz4d3qeqaehlc4yasmrt4\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "92a2f372acbfe821f691ee9b4c3df9960f4173cff30ea708410ca391bec1d825", + "regex": "(?i)^https?\\:\\/\\/pub\\-0885644111934ac09acb1723c5cefe26\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "53ef9171e78bc4b2a9afeaec68a567e7912fa466b647283300316a41619a42ff", + "regex": "(?i)^https?\\:\\/\\/sdrnj35tujr6t\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "84591f3e41e7c5b49e74e275d1cf59952558bdcd93feca1a4fff34b1d93e4a9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4601f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f428c1ec5146071c97df31b3e9cc6f67834324aa3de696c2bf4f1409d0eb91a", + "regex": "(?i)^https?\\:\\/\\/robux\\-gikro\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e5ee3f6b\\-88f0\\-43b8\\-853d\\-b4c43db06516\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "3fdd0e289dbf3a474d1c19ba74a991f1918b8050ab313c80722bf773c23c284b", + "regex": "(?i)^https?\\:\\/\\/robux\\-gikro\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7d42d962\\-81bc\\-4439\\-8b2f\\-f8336b450d54\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "aa44a75371038888d95f1e2673ee36160bd559117567e7c1bd3dc5b5ec44a275", + "regex": "." + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "50e79ce932b7f72e1216935d92700a2b6e73e12d2852b19f2ef861e70bd14f3b", + "regex": "(?i)^https?\\:\\/\\/bafybeigc5salnyjd7emrnwbswzdxszviba724d3phpopij2wajv55gsbtq\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7d42d962\\-81bc\\-4439\\-8b2f\\-f8336b450d54\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2c13fd402df7be4bbf990adf382b3c507410f65b068df01dcea307d726455112", + "regex": "(?i)^https?\\:\\/\\/bafybeicvbh37nd3boh2avi26ojbrkim2gejkhqwa3ump3tsvz7pvypcd4i\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "9690e44de67939c705cb37a3ed100f07dea98c96993664c4516e5da5db71eafe", + "regex": "(?i)^https?\\:\\/\\/bafybeidyxsd773kvfaxbjnb5whnexemagpup5tahwbvs253jupmmrklmj4\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "84f7c54b14bf8ddf769a7d522a00679386a09ef03c8844d78b86f136bb21012f", + "regex": "(?i)^https?\\:\\/\\/sdrnj35tujr6t\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "846766fc340f68d66d598b217e1a244ff6826172782f5ecc28f73f2656601105", + "regex": "(?i)^https?\\:\\/\\/attmailbox001\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+47b419f3\\-12db\\-4ad5\\-b72c\\-526fd011414d\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+02602474\\-c97f\\-442c\\-bc7b\\-b60ffc94b44f\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c558ac5ce2b52be0baa46cdacd66dded1a910966f1b966f3e1949f64f3a6a540", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d4d114d675ba6edea8da23a65ffc08d4635736120f094fb9ddcbae57106c7218", + "regex": "(?i)^https?\\:\\/\\/robux\\-go\\-50k\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "8b1aa0de601ed7d14a244c2a372a5eb63e61f1d839e5cef72a0311a297aecb58", + "regex": "(?i)^https?\\:\\/\\/bafybeiaondyhhsw2isyyqkm5xv7etqe5uic7bj4pochpjka6arjpzxta4e\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+10d85046\\-3894\\-4f6f\\-b210\\-2f91817d94cc\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "1a10e3bd329bee363bb2c2f89535e832e48afb5a9b01940aeb0b227e5101257e", + "regex": "(?i)^https?\\:\\/\\/bafybeian476t266j6rg4taqpyldir2qpw2iotn7xrcwmz567edoibztb3a\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "d414501946733f1ec3b5efd9f4158bd62784b58f8edaf825bc649586fbc53d4b", + "regex": "(?i)^https?\\:\\/\\/sdrnj35tujr6t\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+d9b94cdc\\-fcca\\-4a9f\\-b4c2\\-96d0b500e892\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+2b2f4601\\-b33b\\-4ec5\\-bbdf\\-2f733a8c6d36\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c5b57951fdfaba3af8016e15a74c7785cfb87fdacfec59f7a83ff6b860045471", + "regex": "(?i)^https?\\:\\/\\/robux\\-go\\-50k\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+0f61fc07\\-fb13\\-44c0\\-9500\\-609ff55c637a\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+dd7133c4\\-b667\\-43b6\\-b0ed\\-ba968fcb67c8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+8399fc77\\-3795\\-447b\\-a25d\\-9c680f3e9654\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "6e41221f3afa4a1e2c3816150db25daadeb02127c724c3be04e1f2a478b9243b", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7d42d962\\-81bc\\-4439\\-8b2f\\-f8336b450d54\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7b0afecc\\-bd9c\\-43e0\\-89ac\\-197be3f9af56\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+28c6e38b\\-3d99\\-403b\\-9a4a\\-bec012963dbc\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6cd97a5d79dcfcd0f9c091653adac8c7a0a3b9bdd35d838caaafaf4a65d79b8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+slug[\\/\\\\]+L36iKrTrhhhaTScx(?:\\?|$)" + }, + { + "hash": "36393ece379aaeac541f8e0bed33cdca488cae5d77426b48aceaadbeb064234a", + "regex": "(?i)^https?\\:\\/\\/mustafatheprogrammer26\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "defffb50be587f5d8260ecf4e195f312b917aefe51a05f8da2009edb523127cb", + "regex": "." + }, + { + "hash": "25d786b45555874e5374f0b54f4cf276408734b2c7a91aec10d10281e96bd1ff", + "regex": "(?i)^https?\\:\\/\\/bafybeid4x4fpf2nzxccbehj2sh3izj7szdzepk7fixmfm24j3wpaebeacm\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "d48a2cf817e4a5d028d0a0ff370c46c0139aa838014be78246f6f1c036092768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+install(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "52e1b5aa870f3822fecfb4228a644db04ff07622ea2af2a7ccd7923347d0d326", + "regex": "(?i)^https?\\:\\/\\/pub\\-9e973b5373c44da186dbb16618d8a611\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4eef9acd127fbf9da1d99c24d8891f0fd36be1de66843b51530fca823e243a56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=cgyxnf\\&traciejoint\\@icloud\\.com[\\/\\\\]+$" + }, + { + "hash": "e06ac9a8655a176d543619bbb930daa926617311ce548d3b6ad8a361e5023bf3", + "regex": "." + }, + { + "hash": "35149afbc23a349078ceeb8870e8bee9413dbefa6dbecffd6fcc474de6e0f916", + "regex": "." + }, + { + "hash": "d48a2cf817e4a5d028d0a0ff370c46c0139aa838014be78246f6f1c036092768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plugin[\\/\\\\]+sns[\\/\\\\]+facebook(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a05fff6955642ac165d8e707184194221723f80942a8ea0ecc27bf642cc300c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+session" + }, + { + "hash": "a05fff6955642ac165d8e707184194221723f80942a8ea0ecc27bf642cc300c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "94314ff417279c47fedc9bd3c1e16bb5f0b693b6e73b852c0b1c35a1459544f0", + "regex": "(?i)^https?\\:\\/\\/coinbase\\.service\\-support\\-f37829\\.57\\-129\\-43\\-112\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f064cf29a9ac8aa7871828428d47a39a559ce67e7a574c451f394b34ebb0a42e", + "regex": "." + }, + { + "hash": "574a10f46066fb0c06734f64f2cd7cd0d8a9cad00e7aa19443d662ab74d7a95f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ahdusnsno11\\.html(?:\\?|$)" + }, + { + "hash": "f6eb6f18af9e2d34695251fb9504c9efdfb6aed877c387c14cdd40f969a14104", + "regex": "." + }, + { + "hash": "03c3889c56d445a54f347313bf72f7ab467eb3ef24b56ce611d0a2ab9e9d4c12", + "regex": "." + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d955f82a\\-000e\\-425c\\-b9a8\\-a2df58b9e524\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-admin\\%2Fimages\\%2Fcap\\%2F$" + }, + { + "hash": "1a8aa81492f2fdb3bcf00da8efd1c09bc725b3a8d2960e7974a920d25527aa5b", + "regex": "." + }, + { + "hash": "7f8643d5fa1555b93894b9eafb5e4c320ccf4be045b239c7be7beb8f78e6103a", + "regex": "." + }, + { + "hash": "24e93f2d6e163aa7d28ea8c080a2416e3dfcb63ad5eb824609351d73bc3f4ddd", + "regex": "." + }, + { + "hash": "fed6bf806898a00556f2921d2b224a88ae7b8d748f9ebc31f27ad6daf77c4f3e", + "regex": "(?i)^https?\\:\\/\\/sachin35544\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d7ffd06ddc91412bb85c292aa3060493362aea6b54a61ede3f16d0ed96a4d371", + "regex": "(?i)^https?\\:\\/\\/vmi1015154\\.contaboserver\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "e73a1d18efc9f60cf35e4d5a492395b2055bb462b111a3baf3abf03241fd49a3", + "regex": "(?i)^https?\\:\\/\\/rahulsaini2k23\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+d2351e7e\\-0f26\\-42ed\\-aae0\\-46dd188547a5\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2dda27ae073a3001364b4ddc0bbcbb476941b7d07d3bec6da445841205300c5b", + "regex": "(?i)^https?\\:\\/\\/shaiksha22\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d4f61d0f5cca27ee201f0d6eb5ac62c9ec0b5a0caeb0be43dc87f58746b93e63", + "regex": "." + }, + { + "hash": "6c391b4fc4c408b208b0b3ac45a22e835e28ed815bd60285554eea05616a738c", + "regex": "." + }, + { + "hash": "0d3c5cfd0116ca7de61799def58a8ef721a9254735a1392ad18a320be3cadb56", + "regex": "(?i)^https?\\:\\/\\/qw\\.vbaa2\\.shop(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+metamask\\-wallet(?:\\?|$)" + }, + { + "hash": "252cf01464efe6ec5e7191ae5d348625d876b069c3ae2dfa4ef1e5324cd2dd1c", + "regex": "." + }, + { + "hash": "93b41be7fe8fef9b13a4e805f344bea4aca3ea3963a7eacefba077cb28539bc8", + "regex": "(?i)^https?\\:\\/\\/sjos21\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "26a91899a4f7758da4fa66ffabee7b66a7a9fae3a8240b5bc1142e37aaf3e606", + "regex": "." + }, + { + "hash": "546d74d9d1eec2e211ddf257444bc198b5b3e4100c0896fc6168f9e3e6771f4c", + "regex": "." + }, + { + "hash": "3e81ad5ae028525a137c29b7aea0b9348d77dd6e61e019e060d84c15aacd94c0", + "regex": "(?i)^https?\\:\\/\\/mushtaqahmed112\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bbc29ccbba91333e518ea4bf6e886228299010aad7a8b8b774c3484d6beb2249", + "regex": "." + }, + { + "hash": "a1441fe658e8664ce50c45c2d2d173dfdd26846fadf7b17af09370a9881785c2", + "regex": "." + }, + { + "hash": "ed814c247c07b16c0ae7c439012ecb69d9709ec0300681f0eee3114e5a50f768", + "regex": "." + }, + { + "hash": "ec14a679a5d8889aaf14c6cef9a6b0107227b7f643caf5dc1c2cce264bce9b33", + "regex": "." + }, + { + "hash": "7b6d6df51bb0f5243b608cdadc662c8f3444b70df17d11912a9b5adbf2fb0d0e", + "regex": "." + }, + { + "hash": "f658a26ff954a57a5a191d16fc1e59c6cf610c8dadaa328fc674f36e2fbb195a", + "regex": "." + }, + { + "hash": "0d26aca11daf23fafbf8aecace192e29f3f68af2ed2872cfaba9906db7a6ef7d", + "regex": "." + }, + { + "hash": "fd747098113b9f68b653cd320b94887cbbdfd70fff59a02ca5ff4cb5e07be09d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zynga\\-texas\\-holdem\\-poker\\-application\\-download" + }, + { + "hash": "2349eeacb52c615ae7dad0ec4c411c639bfef27242ba90581afb2ff72736635f", + "regex": "." + }, + { + "hash": "231252654334eafcce74e187a750d99b1ee87c97f714c467bda41e7d4fb875f1", + "regex": "." + }, + { + "hash": "a12e5e68fd78f3f77a0db34789f5810d2b97cc98ceffdc502907d2676bba9224", + "regex": "(?i)^https?\\:\\/\\/attwebmailer0\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c1071ce071c51c46a07e6406c77456a67d81f3d2c303232bd884349b0af306a3", + "regex": "." + }, + { + "hash": "68a3aa0d48fd1fce1ab184bf07d2e4275d3bf4c5fc184475dfb6ce6d1a4aade6", + "regex": "." + }, + { + "hash": "a6e3bc56e05614d1b604f3ad8edc0678231bf9cc6d011c1fd59c75da9029c19b", + "regex": "." + }, + { + "hash": "af844c41a9ee3c90cab00747ab5d48e4d89fd47b608471e9fa6df881b7ac3b05", + "regex": "." + }, + { + "hash": "99e3123bcf5fc775daac7fa9bf0f05c018639fc800433185d0cc3164944b8433", + "regex": "." + }, + { + "hash": "5535368e16d16e464fa7849ef5fb13c9a1d14987caf6f8bff1dcce881872c250", + "regex": "(?i)^https?\\:\\/\\/pub\\-adb29cdfd6274445a348654e134b07c9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "08696f6795991ce19d9c55f6f0155ae7bdfff180e188c145cd75b3b21673ef27", + "regex": "(?i)^https?\\:\\/\\/facebook5384792\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2c9f11c27de12484c612a74e64168cf41dacf66a9b74b6d04d0ee2fc581a48ff", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bc0c5116b041ec74ae8a0e8ba2bc32345cadb12a72db68c4c1d12338aff09522", + "regex": "(?i)^https?\\:\\/\\/grap0904\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e8ce77258f1d8ec3feddf5458763693838d05fcd68e64bdb049c125134e42ed3", + "regex": "(?i)^https?\\:\\/\\/sdfgasfsdfsdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4a99473f94bbf562a54eaddf2630f241b2e8f06395d503d4b5ac7d79a0b2173c", + "regex": "(?i)^https?\\:\\/\\/dgdfbfbdsfsdf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a4ffa9035011ee8648e43f830264dc9903751dfa8ac05d74f06d47b741341", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2a485dcc1afafa6d9305b9e3c24a826c44f34f0c7beef834ecfecdf451d137ea", + "regex": "." + }, + { + "hash": "1e3ce3b780c3408fecb1cd68d59467ecfd99f08126daaeb696aa2797f404a101", + "regex": "(?i)^https?\\:\\/\\/gvdbvbvbvc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6b78d1626b9dd7f16da13264cdd46c31486e1e107e28d53fe0f371ed7ea15591", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c7975cff062707ca5c4befee494293714099d63d1238a275978306625adc0ced", + "regex": "(?i)^https?\\:\\/\\/vaishnavchandra1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e8fd34a4fdc22ec0d78e9795ced867953c4c9a9bff6f6ba0d043479b689ab814", + "regex": "(?i)^https?\\:\\/\\/dfsvcdscvdcv\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a0f8eb851e8d8c3ada13df4536acb050388998af213638e428370fd3fbf89c1e", + "regex": "(?i)^https?\\:\\/\\/grap0904\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2956fa5c413215d3133f570693529782427ecdf51a8bc382f1a189482da9d9c3", + "regex": "(?i)^https?\\:\\/\\/chgxjhzcgjhxgzc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b246c51e3f69c1aa10776c7bcfc4b9a7154c8313b3a11428a65aa083cc58bbe7", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8e8ddc7d735e76d761a3c45cebbb70da76dcb6710259ac724d8188ec43c3f41a", + "regex": "(?i)^https?\\:\\/\\/chgxjhzcgjhxgzc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "39bf5b23d482cb0cccfd0a6dacc8f74b59a15f6862af58c41e22d098d0e450e9", + "regex": "(?i)^https?\\:\\/\\/kjaowrij214102\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bd823ea648ac484b281dc9b93004fb4dfb3d58ca7c9a6679625d4a4e85d91cb2", + "regex": "." + }, + { + "hash": "aabb14566d18790f12a441332618c7f1ae133db3bf4cf3827acd47adb69b7fd5", + "regex": "(?i)^https?\\:\\/\\/prince2040\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eac6ce69d9f754d4cfeeb74a5ababe05ae69b43aa7d913b1f8bc65fea63bc33a", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b6c1b3a4b8a5f8a7e352018db4a9c83026678321ea4aa8cdfe91840a8db7f174", + "regex": "(?i)^https?\\:\\/\\/jfgjfgjfg5654\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "98cd03f8806138486b10d03bfac3c80f97ad3570bab5bb33c875f6eeb6173b6b", + "regex": "(?i)^https?\\:\\/\\/smsx01\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "177851807779e880c06f82aacc2dfae7f4f16e69c1276bf5ee50a48ab2f6c630", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "90b54e468559ca7337c896448359117a867809ebd607c89e46ad5360ea4bcd2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rvkzjgixvy16\\.html(?:\\?|$)" + }, + { + "hash": "49ef4485473cf3ff6b1d5153af3ac26aeac208a813ba16ba146cf858784f948e", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1587e5f9727810641ff536a910ef1d17357ed96116610a3312b819e05ffbff82", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?kareemturk\\-001\\-site1\\.ktempurl\\.com(?:\\:(?:80|443))?[\\/\\\\]+sd[\\/\\\\]+t[\\/\\\\]+g" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+075e4168\\-4fe8\\-4491\\-82f4\\-9e5f2b1e30e0\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "eaf7ebf3631e6a81503a34c580b614a49f7fe6f9c15edee1c010c7d715249f93", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "42e847e524e9ee7693ae1749b98e2f9b4fbed4986ebe51fb205c197217c5de06", + "regex": "(?i)^https?\\:\\/\\/dfsvcdscvdcv\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4e52c5d29c5a6950065368ad6554e8bba76d2d868413e8dab3b23ad3fe7ca59e", + "regex": "(?i)^https?\\:\\/\\/grap0904\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+43f10c84\\-e48b\\-4f30\\-a702\\-96a2072b7593\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2ffb0a0ab8946ad211192a9399e069586a02646a268fd73d4a1516d0261fffd6", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcxvcvvc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "baa0170d7f16a9fa90ae0d480f787a85d8b84c6c5203f4b2687a1f7c253ec26e", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a666f2a79221b356f05423cb5b0e5152cecca7b9946a5c46e60bbefe993b9d2f", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fd421750598d9d1bb46bbb120c5fef7c04c8544e20d51237e8a27ca92741a61c", + "regex": "." + }, + { + "hash": "3819fde7006da9b78c600b9638464b7a530442bef6d643b156958cb4507d26be", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e6fb7ba8fdc0efd8b6b17df9a9c53f38e0b021e9a9e0e4354262141f0599e710", + "regex": "(?i)^https?\\:\\/\\/jafjbakfw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "12f0fe77666a58e01d03d02b005c2c4461630771d036cf72ed5c3188fb44061a", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "86901488d4a8368309401b5d77390ba208113a6bfa5b6f00adbbaa9fbda03aa1", + "regex": "(?i)^https?\\:\\/\\/grap0904\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3dc6d8ab2951254a488a1381b8bd6cdbab3dded8529a325ceddf4ef06a305102", + "regex": "(?i)^https?\\:\\/\\/arpitpandey01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "08c4764ac6c01efa7f1ee144547074f1bd27bd1743b5b8878993d1298562a413", + "regex": "." + }, + { + "hash": "6495e3752efe68e6271da4a0c9875e8521f6cb96ccd094406264b8b4f59f32be", + "regex": "(?i)^https?\\:\\/\\/gipsy65\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bae3334a4937776a0eda400c63b09363added5e4c62068f2dadaaf2551c0d36b", + "regex": "(?i)^https?\\:\\/\\/dsgfwrfdsgh54\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+43f10c84\\-e48b\\-4f30\\-a702\\-96a2072b7593\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "640650ffe345ab1d26c5816ae4901e00e80b2edf80d706946d542b319ff4a1e9", + "regex": "(?i)^https?\\:\\/\\/66014\\.cn(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "83314d8e0bf46466dc67e3aadff709f614c1ab2d7ba778db7a73be2ec2b0adf3", + "regex": "(?i)^https?\\:\\/\\/masud122\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4aa45484b7081f8725c2cef98355fd0dbcfead4935ea5941295e611cf83b511c", + "regex": "." + }, + { + "hash": "ed80f6d063feb4be4ab67ae59de0306d4a9f166287a973ae29f908eb79702ad6", + "regex": "(?i)^https?\\:\\/\\/pub\\-cdd2f7fee6c24b1d86bccb77911ec63a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0464f54f593938eca5130857acd8622f0b528fba39c81e0dc2e15d8ff2b08751", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "640650ffe345ab1d26c5816ae4901e00e80b2edf80d706946d542b319ff4a1e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tokenpocket" + }, + { + "hash": "7f429ce99b6ba0e58604611052786fe7ce99cbf623cd1c4189d59dee7bdb6625", + "regex": "." + }, + { + "hash": "23178712561e621c41b96578d12c6a3b0b91a8b7db2a7cadd9214c630da32015", + "regex": "(?i)^https?\\:\\/\\/jafjbakfw\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5b6d14f5104359d891381f7065acd6971cac266c776879680d36b15f9832b619", + "regex": "(?i)^https?\\:\\/\\/grap0904\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "72afcd0f5755a861c726b0933b7f5b85ab71c2a5a91d15e1c98502b78f5e3c2b", + "regex": "(?i)^https?\\:\\/\\/dgdfbfbdsfsdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1d025725b3821ad96bc7d2398bbf18594ea85e4f0735f648209ff2d092fbd3b7", + "regex": "(?i)^https?\\:\\/\\/isdyufigaushdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "063a07ba2170187cab4a23e0c68433b72c52e171b2746b1dbb3e7f3697419a9f", + "regex": "(?i)^https?\\:\\/\\/gvdbvbvbvc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6e0434ab523a23f6bd6dd3ecff87402fc46596f53d15a32f864bcca59a19c1a4", + "regex": "(?i)^https?\\:\\/\\/akshansh0612\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8e7ce8c5551c3f83fc8840e17630c852d2918896fea5a36df05a01f9403c323a", + "regex": "." + }, + { + "hash": "9145976c668f02020127a5e9f4ce3a35558896c1e329d41b549345430848f3e8", + "regex": "(?i)^https?\\:\\/\\/cliphotxxx56543\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5142ac0c0268b54b6cafdb5a0db0a733663bc058a371ab7ed36b4a5d88954099", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dashboard(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f53c770b745d8079b1de389ec27883d82b445d7ba2dbaedfd1adfc6f921918f9", + "regex": "." + }, + { + "hash": "0b9ae238c2165f5672dbdaa084d14ff2d9dc456153d77caeec9f3540ffc90194", + "regex": "." + }, + { + "hash": "c5a72eac7999c29635c29f54a3b414302cd32e70166e7838fc269675862cd1dd", + "regex": "(?i)^https?\\:\\/\\/pub\\-ff666db7b89b438698d57a761f421ffc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e1e2985ed64bdba65c9e6a9dfd8ad74eb95e6fdd27564a746f2462db311fcae3", + "regex": "(?i)^https?\\:\\/\\/cliphotxxx56543\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8051dce768755514f4f1f9da48da1fd42658b65f019278ad972667aa83792c07", + "regex": "." + }, + { + "hash": "5142ac0c0268b54b6cafdb5a0db0a733663bc058a371ab7ed36b4a5d88954099", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dashboard(?:\\?|$)" + }, + { + "hash": "67f4393558f0104b186e0651110c720ad6cc53acf7fbb29359e68d5855821cb2", + "regex": "(?i)^https?\\:\\/\\/11aaru\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6d24f866094d90a2bca48f7976a179692521b444157d550babee364dd85a5e97", + "regex": "(?i)^https?\\:\\/\\/pub\\-0a6a256634c04c069f16203f7f70da19\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c04183e968b95fad41c3ea8c4f840c99c2f4adfc2d803b57adba8f389756eacb", + "regex": "." + }, + { + "hash": "cdf02c6afaad2bf23f84bfe75421eabe222cd70eb9ca989be5d472a3ef250387", + "regex": "." + }, + { + "hash": "0da48e2b2467fe7904115874d80f24a181c2f0758fce8513def46eb5a485312b", + "regex": "." + }, + { + "hash": "2f762cad1fea030ebb8b9e307030a075b1fc81ed3d43052e4ff3b6c408433aa6", + "regex": "(?i)^https?\\:\\/\\/pub\\-d762a3ec890d4bdda76a1add608c0827\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3e814b4d59cd6856ea0baae5e9abae8905d480e8ef7f81730eee1ef918d545e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b4d04\\&id\\=salatvolp\\.fr\\.\\.\\.$" + }, + { + "hash": "64803b8f3e08552208f01ec31af445ce066ea52209a96843ad7c3eb45cf794d4", + "regex": "(?i)^https?\\:\\/\\/cliphotxxx56543\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1ff83cff6ba11d180016c29a928c2936ab141b4184e1da682356fbcc17b354c7", + "regex": "." + }, + { + "hash": "a70a98177229ea685247bcb7fb458cc7d0847d5ff898cfb2f0f7b8f6ba102f70", + "regex": "." + }, + { + "hash": "69e4d83db321e9c7cd4ab88e83ff693e74b00de40bfa3e3eeee23e2ed9fb0cb5", + "regex": "." + }, + { + "hash": "4478ad1f1392106432c24d22b4fc4ec1884fab8c2bb5fa2cb26d3af0b450b5a1", + "regex": "(?i)^https?\\:\\/\\/uximviyppqohlgi\\.com\\%E2\\%88\\%95uximviyppqohlgi\\%E2\\%88\\%95uximviyppqohlgi\\%E2\\%88\\%95uximviyppqohlgi\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "573f3667aeb0d4861a9a09fd967df8d32fb61c2c545883f9d93e7b6b89bd657e", + "regex": "(?i)^https?\\:\\/\\/pub\\-fee2be09ed5e4fbd8a061831d6239523\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9836ae589562b77eb8fb8ae7892d90df9fe5bcaf51476d9f178ae612413cb245", + "regex": "." + }, + { + "hash": "ce5efd3886b1d71b96bd3eb04e64949b662655869725c43d9a22297fec65bcd7", + "regex": "." + }, + { + "hash": "9fead8735fe8b62cc813fa5e21aac47e8fc7b3c13ce357b61e806095cbc51cbe", + "regex": "." + }, + { + "hash": "5e3493b652e4e5a3da30dc988bce8f9f796d8f22f4ebc60602b11e19c8853c5c", + "regex": "(?i)^https?\\:\\/\\/pub\\-a2ae7164575046519a3ca9a0851b9c62\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b07fec8f541d6a4147c4194c3a6da780de7f09a31eab1c61466ca6f9fa0f92f5", + "regex": "(?i)^https?\\:\\/\\/dfsdfghgfghjhfdg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c6e3bc31b1e007f9605f3cfeb68371024911e1ff88981df885cda1093263e9bf", + "regex": "." + }, + { + "hash": "b3c43d6487bf7c1870968d941574cb0f639a08bb3489eeb4835ec066982e4ec2", + "regex": "." + }, + { + "hash": "e79bcadfa90df7002c0f9704069514074ed0d7b9b8841216e6f38e1575b52c77", + "regex": "(?i)^https?\\:\\/\\/dfsdfghgfghjhfdg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5dbf25d9e8c376c14989b24ef1c9560c3694c476bb239d3eff8c7ad84623b32c", + "regex": "(?i)^https?\\:\\/\\/zap7king\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6d55aaa24343e3bc50f74472b497ef3c44b5d8ead2c622b09b5c1b2757f2f01b", + "regex": "." + }, + { + "hash": "f259d589b4137a9b4b7cfccfdd3adf240a96f3e0870c64a980ca94cae8a8f203", + "regex": "." + }, + { + "hash": "25e1eeeedc4a8fefaa1b2d898177f518d6352a1c833345aeafc2bac9c1769ef7", + "regex": "." + }, + { + "hash": "5a9d46e6691c767b6e7d33c0f66d1c5810ea29f410087797cf857fb60e049890", + "regex": "(?i)^https?\\:\\/\\/dfsdfghgfghjhfdg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d933f37d7aa78a188d7b1d88f00d71d014d5f45c06080c8edcd2acbb42df8d2a", + "regex": "(?i)^https?\\:\\/\\/dfsdfghgfghjhfdg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f03299798b312e60f1ffd0c94db1ff809dcb57c752b0f49191e75695e34f6788", + "regex": "(?i)^https?\\:\\/\\/pub\\-d894de0ad0164fbe8d289de9b5028b67\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eab27eccb85fbf67a1eed56a8be03f2b21fb132313c73b24c09b45e02a64faab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rarejlyyhpr13\\.html(?:\\?|$)" + }, + { + "hash": "cd622b8afd7d03d18dd744238ad24e5dabc260858c3631ffe61fab30a60baa1a", + "regex": "." + }, + { + "hash": "e629b985525ed5c265d614f262c85249f87a8fb510bd470a95696a9eb0e1ba61", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index8\\.php\\?\\=qaspkw\\&activity1723633242118\\@icloud\\.com$" + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FMpjs(?:\\?|$)" + }, + { + "hash": "2fa3ea2993c7047b6b72aaece1f8118fa8e8c609bc0e4381b297769b5f91a281", + "regex": "." + }, + { + "hash": "b85bf9424e503b6024f2dfd44ae763ae18f47a5a4fa2fbcfbd8b3f2a45fae074", + "regex": "." + }, + { + "hash": "4d848ab017c2a36994bb477b35eebbc29e1af93f44634f6c39f419eb29352f5b", + "regex": "(?i)^https?\\:\\/\\/josue200628\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a75b4d945d45a8d3239585c2460d7a2fe892b862e4c19bba5419bdd973ef1", + "regex": "." + }, + { + "hash": "9a328ff8ba2cbeede3e39de0fd2eb765eb8c5ef9bfd8526026b69cec4b122d7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "d82849be36a678b832418d2c4e96281e3744ac438971da709926e55bed52e601", + "regex": "." + }, + { + "hash": "3490cce1d8c8f1634ea38ccd0860f8694b88feab76ca3fb18a7c64e332cebaed", + "regex": "." + }, + { + "hash": "6ad16069fb240860cf1e862c50a9f0051052daab625f2ebb28e1b6f807cdbdc8", + "regex": "(?i)^https?\\:\\/\\/ugoel01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ceeab274\\-af40\\-4dd8\\-affa\\-03deeeb6fe65\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6ab7c6fe\\-7f78\\-46b7\\-a6d2\\-208ede71861d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8133f5be6debe367bd42c5a44e34f87cc9f9c2342a0dbee624ffaa0710c860e6", + "regex": "." + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6ab7c6fe\\-7f78\\-46b7\\-a6d2\\-208ede71861d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+6289d9d8\\-1546\\-40fd\\-acea\\-f6269351c25f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+6289d9d8\\-1546\\-40fd\\-acea\\-f6269351c25f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+6289d9d8\\-1546\\-40fd\\-acea\\-f6269351c25f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6ab7c6fe\\-7f78\\-46b7\\-a6d2\\-208ede71861d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ceeab274\\-af40\\-4dd8\\-affa\\-03deeeb6fe65\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+6289d9d8\\-1546\\-40fd\\-acea\\-f6269351c25f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ab663330\\-c740\\-4cb4\\-b6ce\\-21feb7e74149\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+7a53d150\\-84e9\\-4b1a\\-b44b\\-3e93831ce513\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6ab7c6fe\\-7f78\\-46b7\\-a6d2\\-208ede71861d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a9ca940af67de90f53c17c9f4346408ad1f8cd1c56bce35653124787615bc341", + "regex": "(?i)^https?\\:\\/\\/crgemsandcoinsvip\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "872338c4fc3be4d0eb87743e62f48feadb95cd8fe4ea22d8e906965f314f2b98", + "regex": "." + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ab663330\\-c740\\-4cb4\\-b6ce\\-21feb7e74149\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6ab7c6fe\\-7f78\\-46b7\\-a6d2\\-208ede71861d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6ab7c6fe\\-7f78\\-46b7\\-a6d2\\-208ede71861d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hFmnZ(?:\\?|$)" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4c4eeece53d96754aa8cbe5fb6a3ac0b9a39b3051f6e34f7940421267351fb2f", + "regex": "." + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6ab7c6fe\\-7f78\\-46b7\\-a6d2\\-208ede71861d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ab663330\\-c740\\-4cb4\\-b6ce\\-21feb7e74149\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+568ea32b\\-1929\\-45ba\\-aaac\\-dc567642c7d0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+d9adb7d3\\-3624\\-43ab\\-85d5\\-9d9e0d0a80fd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+cdda2c70\\-e899\\-443b\\-9eae\\-efe240764152\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+c1e1d876\\-0d7d\\-414e\\-9456\\-192b249822d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+6094d9c8\\-7abb\\-466f\\-ba4c\\-4341c1586ad6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ced575e7\\-ea34\\-4a72\\-9230\\-1dd2da99d51e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d275945d\\-4ee2\\-4a78\\-95ac\\-cea984afc084\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7c0ed918454e92ee606a5612445c89834bf703f0c0b95d5c843fe3db398f0611", + "regex": "." + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cd61b81fc0699ddb42e87b39d4f50754ab603094aa2c7d84652acec72acc8c70", + "regex": "." + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+b7baa1e4\\-4c40\\-4808\\-b67b\\-7fbc0fd1298e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+9ca64b2b\\-abb2\\-40f4\\-9b18\\-2150f92ea266\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+b7baa1e4\\-4c40\\-4808\\-b67b\\-7fbc0fd1298e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "679c063ae98634f80d764d21f66d31f681775892625d5a4f829a3e0d6618e12a", + "regex": "(?i)^https?\\:\\/\\/home\\-104045\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+b7baa1e4\\-4c40\\-4808\\-b67b\\-7fbc0fd1298e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+b7baa1e4\\-4c40\\-4808\\-b67b\\-7fbc0fd1298e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+b7baa1e4\\-4c40\\-4808\\-b67b\\-7fbc0fd1298e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+cb476613\\-9d36\\-475f\\-854e\\-c1b777bd3afd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "87adf5c62f3d01e13bcaf7b13450e51179dc9250724d839ee7fdf59468ca7701", + "regex": "." + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5675c518c09fdfc4e67d3a2159bd1a00eb0e26ae0c383a4a71315b4547d32caa", + "regex": "." + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68926865654d078e62a7c39e3f8000903cca51c2d7492cace783eace4f2900fa", + "regex": "(?i)^https?\\:\\/\\/pub\\-573a3c667ff140b88d4b360dbee90c32\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8115c1db9278e43e8a645de00d9af29fe3e264a535a524137b36826a4252f3f5", + "regex": "(?i)^https?\\:\\/\\/harshadjadhav5\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "eb4af3618269cdba0a65467d7f09cce5eb0ae13f190e174a5137b36b90ffbaac", + "regex": "." + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+15261093\\-ed3e\\-41e0\\-92f8\\-7ee6fb76d61b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4cd5c0e2a061284ab83a9a454f333404f0cef939882c83cdf83a2ed5729f04ab", + "regex": "." + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32c4a382e208068d5da73031e5a9726fd051114a757658be44bea9df9d057830", + "regex": "." + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "248c06dfdf4cf47c2af0ec0d5b970a24152f8247bc5d35d934bec3cdad3bc2be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2aeed05b2cc1d805e21bd682cc6ff2e7a67abc990740d2473789e5759a0d83c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "241bbad212087f9097de43d26140c47d8013c952f429f229a894b487645b18dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2012[\\/\\\\]+votings(?:\\?|$)" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "61c3451d06fd5349216efa317a5f9346e18cd4e2048fe6af98d9ca5ea2131ac1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f5d178e3\\-ed06\\-44ad\\-ae3a\\-8c0116adf041\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f5d178e3\\-ed06\\-44ad\\-ae3a\\-8c0116adf041\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ab663330\\-c740\\-4cb4\\-b6ce\\-21feb7e74149\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+e304f5a2\\-56dc\\-4e1c\\-8ba8\\-349e6e7896e1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1e22689e6b2578e4c9f33bed7a871a4c95ae5835db864b9039dda0dee2550dd6", + "regex": "." + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ceaa8359\\-3f7e\\-4589\\-9caf\\-24b757a4df1e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+0498ad70\\-c3b4\\-4fe4\\-84db\\-7c60eacedee3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d2fdc1d058e5d3fbfdbc778c1b92f0a4991d8cb91aa5394249c9c6647537ad1", + "regex": "(?i)^https?\\:\\/\\/attmailupdates7839\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "eda599e1d39a2f4f120dfc265906cb681fef1970f91f0800eb6917b6014cc55a", + "regex": "." + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cd296ffa79e8ce3a851ed17b655b4e9875ad2e0a2afa73e9583b076895234bb1", + "regex": "(?i)^https?\\:\\/\\/ajayprajapat19\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "37f9b2b712384cc22b40674d870bfd2bce6857c1de4b852b1f4e62a61a27fd82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+c5849126\\-2c17\\-44be\\-84b3\\-5429f9f0ca37\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "37f9b2b712384cc22b40674d870bfd2bce6857c1de4b852b1f4e62a61a27fd82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+9ca64b2b\\-abb2\\-40f4\\-9b18\\-2150f92ea266\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "20bb814fb3ee7ee9171794e766609b9878055a7801073db28a8e1d7f17e19166", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0677590ab0bc202483cc3613403f458bef174f54187e436a48a1437c21f9864e", + "regex": "(?i)^https?\\:\\/\\/horizonyellow530\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ab663330\\-c740\\-4cb4\\-b6ce\\-21feb7e74149\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a12465c9768677fd5b29165a2adec059e0b0b1412f0b1d57f91d6ac873ba518", + "regex": "." + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+c5849126\\-2c17\\-44be\\-84b3\\-5429f9f0ca37\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+b7baa1e4\\-4c40\\-4808\\-b67b\\-7fbc0fd1298e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ceaa8359\\-3f7e\\-4589\\-9caf\\-24b757a4df1e\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d4d8c9a189042b1c30657f3cba33ef195c7f7015da9f372ba3a66162f108975b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+291f1544\\-7a11\\-4a97\\-a8b1\\-e424ae624cf6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a6cf6e9e877068970c3c1c7afc56131176d4f5016acfc8f8d2e1e8bd66d02985", + "regex": "(?i)^https?\\:\\/\\/us\\.unite\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f5d178e3\\-ed06\\-44ad\\-ae3a\\-8c0116adf041\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "20bb814fb3ee7ee9171794e766609b9878055a7801073db28a8e1d7f17e19166", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "871282a6c881675275a51f7365dc1af29b63a84762b349cdf180be67b8c995a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7de817d60e7042046998d879b33a37936d80f235c2c480327df7e1792fbaa1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+4bc33e7e\\-e137\\-449d\\-8f59\\-7f6efa60fba4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "42da015946a77bff413f37db16f7599dea8cfc97acea0306283d7051a45bbbc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f5d178e3\\-ed06\\-44ad\\-ae3a\\-8c0116adf041\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d4d8c9a189042b1c30657f3cba33ef195c7f7015da9f372ba3a66162f108975b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+aeef70d4\\-9216\\-464e\\-a8f7\\-65323c6df13b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7054c628fc471ae86857daa7268f9e2387b999cbc9fb27b8968e396d3e163b48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+c6f6055b\\-1278\\-4829\\-8ad1\\-31fe0d33a8ea\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad9f6069953a01e03d2ec35b3f361600230de9ce48210d892c94f9d1a5be723b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "579a2bf407304ecc45537a0fd647bd7fbff00f077bf0b9b2ac2f1f4018c60a0b", + "regex": "." + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+1b440c80\\-5a5f\\-443d\\-92d5\\-71aefcf7593a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7de817d60e7042046998d879b33a37936d80f235c2c480327df7e1792fbaa1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+c5849126\\-2c17\\-44be\\-84b3\\-5429f9f0ca37\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7054c628fc471ae86857daa7268f9e2387b999cbc9fb27b8968e396d3e163b48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "abaff3fb76a4aae1dfe87c112feb2f3ecc5ca932eafa2c867381772969126dbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c2c8b4d1eeec47184bd0f1436d2c6e4c76113aa9898ae419d3404e55bd7ecbef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "abb0ce8f18fe846ef1fd42c34c6ee166a824684f9ac802491022d73f117d95be", + "regex": "." + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "37f9b2b712384cc22b40674d870bfd2bce6857c1de4b852b1f4e62a61a27fd82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+c6f6055b\\-1278\\-4829\\-8ad1\\-31fe0d33a8ea\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a6e32d27756751181050ed22b7e0f6af1bed82e3a2ee1817311e32a3517c56f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+apart[\\/\\\\]+11aparatbLora11(?:\\?|$)" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "f81c6474fe1c12c1c5a8cf0f6e9e170f52c10f4fc3992a9e96b6235209f6ef00", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b82f97614d5a23f5096774dcab3dea5c684a1532fccd7d161c384fa8bd552606", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+91ebab92\\-8b0f\\-4aaa\\-831f\\-932e94e17572\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f5d178e3\\-ed06\\-44ad\\-ae3a\\-8c0116adf041\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "90fbfec13954d4292833e77f15ef1567bdf92214dd8884483e156dacf8865b4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+f04b4a55\\-8ad4\\-44f8\\-97dd\\-a89a4c0992dd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "abaff3fb76a4aae1dfe87c112feb2f3ecc5ca932eafa2c867381772969126dbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+c5849126\\-2c17\\-44be\\-84b3\\-5429f9f0ca37\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a6e32d27756751181050ed22b7e0f6af1bed82e3a2ee1817311e32a3517c56f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign\\-in\\?op_token\\=LGHSYgtJHAxSuREwDdvGIJ1thZoWcpzCeiuaYltlA6HOajEqEQ4ZxPYsXhqcJRjnxeHlQtAbas3Wq4dOQFAwAfPnMqdOtMN9fiN\\&uuid\\=bYZxVQPlwK\\&vorid\\=11aparatbLora11$" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+fd2f01b0\\-e257\\-44ff\\-9ac5\\-8f225207b179\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+ab663330\\-c740\\-4cb4\\-b6ce\\-21feb7e74149\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d0220f27\\-2e23\\-4208\\-9edf\\-f5b94146205f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+30ed8a64\\-3dcd\\-405c\\-8ae6\\-5668ceb56286\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+54117898\\-80d5\\-423d\\-84b2\\-8571481e8e9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+90aac9d6\\-39ed\\-437d\\-8454\\-d169722c07b0\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+49c86965\\-a70b\\-4c29\\-a4e1\\-de678744fa08\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+a269d2f2\\-e96f\\-44f1\\-bb2f\\-81215ad08631\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4c43e84f\\-e7c9\\-4037\\-b226\\-cba04047dcf7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+877b1cf6\\-76f6\\-4da3\\-bbf2\\-46c77fbb3e09\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+27991[\\/\\\\]+100[\\/\\\\]+default[\\/\\\\]+296cf8f0\\-bdc1\\-4f52\\-9ccb\\-151690d5646f\\?redirecturl\\=https\\:[\\/\\\\]+mtenterprise\\.com\\.br[\\/\\\\]+images[\\/\\\\]+index\\.html$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+3c2bcd9e\\-80cd\\-4f0d\\-b535\\-fb28ffc13577\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ebfa8452b57b2a30b53fe1c709b244f610505dfdc5b8a0be6c10513a832b1a3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+365dd748\\-2b71\\-434f\\-b455\\-13af494881a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+1c390883\\-a334\\-46d2\\-97eb\\-2c9f589ffc7f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e105688e\\-20a7\\-4cad\\-bf35\\-662957c3901f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+19841f14\\-a970\\-4a9f\\-856f\\-ef0907db7ebd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e67318d4\\-2170\\-4f36\\-b09e\\-c5141ea2e6e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+28018a61\\-6a16\\-42ce\\-bb26\\-ea644615b40a\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+895914f1\\-97f3\\-4298\\-9b03\\-53b1823fd285\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+155c4a04\\-bda8\\-442c\\-bfce\\-05bc7cff0e04\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+d8a4082f\\-4b65\\-4cc4\\-9f59\\-a520fd00e998\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+e3f9ecbf\\-2ebf\\-43d3\\-b32c\\-43ce99983ecf\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+2582132f\\-b562\\-4bdd\\-9d2e\\-001311093ed3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+83cb9f83\\-6ee5\\-46d4\\-9966\\-f75bed1e7dc7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+81782669\\-5127\\-40be\\-85d0\\-5e21dd9aba78\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+799cbf12\\-4a46\\-4d8d\\-81fb\\-b75e5d69ce73\\?redirecturl\\=https\\%3A\\%2F\\%2Fsbogamebet\\.com\\%2Fwp\\-admin\\%2Fs\\%2F$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7e838cc8\\-534e\\-458b\\-9397\\-b61c7561ca9b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+e09af5a5\\-b499\\-4a98\\-b3ca\\-31b01c742e31\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+8513db51\\-f0ca\\-4084\\-814d\\-488de4e3acbd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+f0170652\\-6f89\\-4610\\-8b46\\-28cbc8d75865\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7c27a02b\\-d79e\\-4629\\-9802\\-5e586e26fa66\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+73f51d87\\-ce5f\\-431d\\-ac59\\-e095026d25c6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "abaff3fb76a4aae1dfe87c112feb2f3ecc5ca932eafa2c867381772969126dbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5019c3ab\\-59f5\\-4b28\\-804c\\-17ddcf1f3fb7\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+3d1e9ed9\\-bbf4\\-4655\\-9b27\\-dfcf1695f322\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "37f9b2b712384cc22b40674d870bfd2bce6857c1de4b852b1f4e62a61a27fd82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+291f1544\\-7a11\\-4a97\\-a8b1\\-e424ae624cf6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ecbe846756ad51887d8f77ac585a3a7a0ba32ada353eff39f9649fce1c2487b5", + "regex": "." + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+29d859b6\\-c6f2\\-4dce\\-9cd8\\-135935591ad1\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad9f6069953a01e03d2ec35b3f361600230de9ce48210d892c94f9d1a5be723b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+291f1544\\-7a11\\-4a97\\-a8b1\\-e424ae624cf6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+9cd928e6\\-5bd6\\-45f2\\-8839\\-e25bbd24ee26\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+b45e50d5\\-7540\\-42d4\\-897a\\-190f2aea02c4\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+4de99430\\-f27d\\-4b93\\-aa47\\-e23885c94953\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+7c27a02b\\-d79e\\-4629\\-9802\\-5e586e26fa66\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+6e8e0299\\-d614\\-460e\\-bc72\\-4e7267e1f736\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "61c3451d06fd5349216efa317a5f9346e18cd4e2048fe6af98d9ca5ea2131ac1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+e4b18142\\-280c\\-4d46\\-a2bd\\-b6f8ae745a6b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "f81c6474fe1c12c1c5a8cf0f6e9e170f52c10f4fc3992a9e96b6235209f6ef00", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+291f1544\\-7a11\\-4a97\\-a8b1\\-e424ae624cf6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "871282a6c881675275a51f7365dc1af29b63a84762b349cdf180be67b8c995a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+e4b18142\\-280c\\-4d46\\-a2bd\\-b6f8ae745a6b\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1778435f3bc0c5d23d29cad76b889844ff3de0939011db600e944e55d1cddea6", + "regex": "(?i)^https?\\:\\/\\/arunvijay13\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5cd38b8fda60e7136034803bb23ed8b3ab8065d21fce86a13fb5950de16622d8", + "regex": "." + }, + { + "hash": "abaff3fb76a4aae1dfe87c112feb2f3ecc5ca932eafa2c867381772969126dbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+291f1544\\-7a11\\-4a97\\-a8b1\\-e424ae624cf6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c2c8b4d1eeec47184bd0f1436d2c6e4c76113aa9898ae419d3404e55bd7ecbef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+291f1544\\-7a11\\-4a97\\-a8b1\\-e424ae624cf6\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+027da71b\\-9be2\\-4aec\\-b7f3\\-de727fde1ce3\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+ef04b8d7\\-e65c\\-44c1\\-8688\\-d7fd32d65e2d\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+af7dcd69\\-4057\\-4cb0\\-9ce7\\-b1e992846185\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "6b13ff139dd42d5a88e5d2ea6a064a02bc0b83ee06ba9225983b35e1e2d509c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_next[\\/\\\\]+static[\\/\\\\]+chunks[\\/\\\\]+6040\\-12f62783fe740c92\\.js(?:\\?|$)" + }, + { + "hash": "20bb814fb3ee7ee9171794e766609b9878055a7801073db28a8e1d7f17e19166", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+a87dc07b\\-d5ad\\-450f\\-a33f\\-0fa33d298ecd\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+161b1021\\-c141\\-4f11\\-961f\\-19f516e58c9c\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+a1e3dc61\\-2850\\-4681\\-8bac\\-b0473c290ee5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+a9d6fb8e\\-1b70\\-45e6\\-adac\\-44eb4db450f7\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "7054c628fc471ae86857daa7268f9e2387b999cbc9fb27b8968e396d3e163b48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b82f97614d5a23f5096774dcab3dea5c684a1532fccd7d161c384fa8bd552606", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "90fbfec13954d4292833e77f15ef1567bdf92214dd8884483e156dacf8865b4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+66295ee6\\-48e4\\-404e\\-906b\\-b75154ee8a33\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "beaa2459807f84bd1c0fa9eb113d259dbf51f95a4d42c5dce51a9febeaf4c25b", + "regex": "." + }, + { + "hash": "af8459edd12d5440317b3555f5a2bcaa353495e17f03288aa2e53d90e1f1fd0e", + "regex": "." + }, + { + "hash": "3c0418d1b6016c21f947cb093122e767ef51eedfb5468ac9157be6279f436295", + "regex": "(?i)^https?\\:\\/\\/muhammad\\-umair99\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+4kr9p(?:\\?|$)" + }, + { + "hash": "ad9f6069953a01e03d2ec35b3f361600230de9ce48210d892c94f9d1a5be723b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "af84f060d66f98078cf22b99672907af2012ba33e7eafb41c44deee038341721", + "regex": "." + }, + { + "hash": "20bb814fb3ee7ee9171794e766609b9878055a7801073db28a8e1d7f17e19166", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+64c60b41\\-b755\\-4ce9\\-b125\\-af33516709a1\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5506a892e4dd2f10cecabf7fa7f3deccc112da26dce5d50c310e6d81eb3f2779", + "regex": "(?i)^https?\\:\\/\\/get\\-9999\\-robux\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6a5fdb6d4bbbae5661320be5013ad43c8d39a8e4163fff24caea3def30e05141", + "regex": "." + }, + { + "hash": "ad9f6069953a01e03d2ec35b3f361600230de9ce48210d892c94f9d1a5be723b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+f688c959\\-5a2b\\-4601\\-a09e\\-a949d00b50af\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "a71008af4813ad2ee1295919facfad4a2ba2573eed7597bb591119bff91c665c", + "regex": "(?i)^https?\\:\\/\\/arifbabu1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "21b82412d4858944bceef7efc8bcb81de5ea3231db9bd322e39a0933bc731bd9", + "regex": "(?i)^https?\\:\\/\\/20r01a05c4\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d4d8c9a189042b1c30657f3cba33ef195c7f7015da9f372ba3a66162f108975b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+f688c959\\-5a2b\\-4601\\-a09e\\-a949d00b50af\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "eee450d4b137523a9e16311d26d96a3b813a5984a71b2559cc3894b347e95e71", + "regex": "." + }, + { + "hash": "5c8aa8defbcbd518e71e927646ec4c7cb4edf27e7e7552e45a4b99f5c140208b", + "regex": "." + }, + { + "hash": "e1689687138c2f151c2f07ddc5433849ccbe6be7358ff29d1893fa8b5859b561", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?[\\/\\\\]+oyshouae\\.ae(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "53bf9909c665d873786dac10b36060ab59840d3fa8d4fc45578eff52978d73e6", + "regex": "." + }, + { + "hash": "cd7433dbce8db15536ee8cf1d5bd234b082264db346e9194d34abe4e243df0e6", + "regex": "(?i)^https?\\:\\/\\/rohan\\-101204\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b9eb1b17cb53366879f364b282fc842a5f7ff9bccadf523b3b5f3978982e5e7f", + "regex": "(?i)^https?\\:\\/\\/viratkarthik5245\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+44[\\/\\\\]+default[\\/\\\\]+fef4a989\\-8a32\\-4a83\\-a704\\-22a6b56e33ab\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5c1ec6fcef45abba01351fa819e0c1861fb0326ea6698cd7fb2258afd970d3ee", + "regex": "." + }, + { + "hash": "ddf26cc1de5f91eb5c90a76ca7d2b9ef82b65b4f3a2d52a1c9ecdc727394ab25", + "regex": "." + }, + { + "hash": "3022d77c6dc27882c820bff43893f25e1759e5df7d7691f7779ee56541b1407f", + "regex": "(?i)^https?\\:\\/\\/helpcentre23\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "248c06dfdf4cf47c2af0ec0d5b970a24152f8247bc5d35d934bec3cdad3bc2be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+7fe8694c\\-56d7\\-445c\\-b1d5\\-f2707905586f\\?redirecturl\\=https\\%3A\\%2F\\%2Fbelgiumup\\.hosted\\.phplist\\.com\\%2Flists\\%2Flt\\.php\\%3Ftid\\%3DcRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "9eb573bace0b018008b8ae95c31015f470b6403e05f35779fc3f380ad57cdcac", + "regex": "." + }, + { + "hash": "fc750edcf4accbaf04f6ffbcb3ccd46d3ede8dd0521861a94305a8ba958c7431", + "regex": "." + }, + { + "hash": "2cebc123268186653c2ae109db37d85fc0ebbca207112e63df7be71bd512d6e7", + "regex": "." + }, + { + "hash": "fb7d1894d2d99afeb3b00c81bc74be0e7494aa34c1009186d5d6e2cfe9b04d2b", + "regex": "(?i)^https?\\:\\/\\/2003chinmayee\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "525789e8db39ccc804091d74b0d462892142919e89e256dd744410cc96b7b756", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+SW(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e266054b0f32fa2035a54a8566800d7079bf9c724f1bb8e2a039cbdf710a70b5", + "regex": "." + }, + { + "hash": "36418fccddbad4eee4feb085a571e4a77e4e28ad2cb357a95d58fd0ce08ec24e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mail_log[\\/\\\\]+N\\=7837897863(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "882dc04edb0505c4cfda1150dceec97a3ba70f8f2355c8be5a9e92bcd9104365", + "regex": "(?i)^https?\\:\\/\\/98893836\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "786d3c8ac79b8c2fef72963c9c79c2732ef3f3b17561cb12c55cfdaa71de53b1", + "regex": "." + }, + { + "hash": "794c57da9558c2127865483b4e084396cdb6ff581923b423c0f0c82d6cce72c7", + "regex": "(?i)^https?\\:\\/\\/pub\\-18f8b11957eb4ad8bcaef4a469981e97\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9c95e24ab757fc9062851772a02ce83b1abc43ec49bd4df39529dfae15bee6ff", + "regex": "." + }, + { + "hash": "6b13ff139dd42d5a88e5d2ea6a064a02bc0b83ee06ba9225983b35e1e2d509c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_next[\\/\\\\]+static[\\/\\\\]+chunks[\\/\\\\]+1dd3208c\\-65f236513d05994f\\.js(?:\\?|$)" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fde621194f2686e40ffeaa0d6063b1c44ad2fa88b1377d152f43616d9ff804a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "42da015946a77bff413f37db16f7599dea8cfc97acea0306283d7051a45bbbc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "d4d8c9a189042b1c30657f3cba33ef195c7f7015da9f372ba3a66162f108975b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "248c06dfdf4cf47c2af0ec0d5b970a24152f8247bc5d35d934bec3cdad3bc2be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "cfaebc5533b9520c400a6b5ace2f631fa999ec48bc1df841e31aeb59fb7ca858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "cfaebc5533b9520c400a6b5ace2f631fa999ec48bc1df841e31aeb59fb7ca858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "cfaebc5533b9520c400a6b5ace2f631fa999ec48bc1df841e31aeb59fb7ca858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "fde621194f2686e40ffeaa0d6063b1c44ad2fa88b1377d152f43616d9ff804a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "8e04ac5a558204051062354d1aeb620b0dfebd417d55587f42fa95c35d72739e", + "regex": "." + }, + { + "hash": "fde621194f2686e40ffeaa0d6063b1c44ad2fa88b1377d152f43616d9ff804a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "871282a6c881675275a51f7365dc1af29b63a84762b349cdf180be67b8c995a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ad9f6069953a01e03d2ec35b3f361600230de9ce48210d892c94f9d1a5be723b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "ff7a45fd052ca961b96b596f18fbaa5676de1ad3ee03223f888f373b41534946", + "regex": "." + }, + { + "hash": "c2c8b4d1eeec47184bd0f1436d2c6e4c76113aa9898ae419d3404e55bd7ecbef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+14e19da2\\-02dd\\-4e4b\\-8712\\-c12137bc0da5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "82ded85ae43a13c6953dca736198663c2bc1f0a2f0f3ddd60bd0e6c611e90ff7", + "regex": "(?i)^https?\\:\\/\\/pub\\-6d75f0b8e5d44be9bad41c8dee6400b8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c2c8b4d1eeec47184bd0f1436d2c6e4c76113aa9898ae419d3404e55bd7ecbef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "fde621194f2686e40ffeaa0d6063b1c44ad2fa88b1377d152f43616d9ff804a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "1a7cb93ab4b618ba1d4cc952d5c188cebdefd40b6ea059d195125a3072bdfc42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "17cc571f64364b9643388f89f3487bece49fb21a1d122f118ecb9d2a05554e37", + "regex": "(?i)^https?\\:\\/\\/pub\\-7838990b605c4c2bad4291d1a2ccfb80\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cfaebc5533b9520c400a6b5ace2f631fa999ec48bc1df841e31aeb59fb7ca858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "7054c628fc471ae86857daa7268f9e2387b999cbc9fb27b8968e396d3e163b48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "daddd3e05edc978fa14431738bfcc56c02a9ccf0be168e7e642cc895337d08ff", + "regex": "." + }, + { + "hash": "9813db3c7a6e3fa2eb6c70eaf3db27d98304eac7d00f38932239c455913c347b", + "regex": "." + }, + { + "hash": "cfaebc5533b9520c400a6b5ace2f631fa999ec48bc1df841e31aeb59fb7ca858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "b7afa5d8d9f0ab892cbc0bdb62d01618e3e9a34252b56d9995373471498475e3", + "regex": "." + }, + { + "hash": "fde621194f2686e40ffeaa0d6063b1c44ad2fa88b1377d152f43616d9ff804a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "91278a1d991b7e09a00b798c01806a1217cbd93f1af82c2d9bab8a69903fa7d6", + "regex": "." + }, + { + "hash": "abaff3fb76a4aae1dfe87c112feb2f3ecc5ca932eafa2c867381772969126dbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "f81c6474fe1c12c1c5a8cf0f6e9e170f52c10f4fc3992a9e96b6235209f6ef00", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "c8e406ac60c839922392a45951a572ad17df358f8ea57c6ebc2830988e98c93f", + "regex": "(?i)^https?\\:\\/\\/35089165\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d7de817d60e7042046998d879b33a37936d80f235c2c480327df7e1792fbaa1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "37f9b2b712384cc22b40674d870bfd2bce6857c1de4b852b1f4e62a61a27fd82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "5e00c87b48884b8f7693696d962f4b3f53511bcc398101490e4ad10ab627b929", + "regex": "(?i)^https?\\:\\/\\/ram\\-bhatt08\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a6f4afb7e5f1bd675f3078801b6b9b9e46c2209324c3934356da12f32c11f7d1", + "regex": "(?i)^https?\\:\\/\\/25013975\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "0eb588b744b3ed767d4aab7bf16d4e0986514dd13219ea69a70007f00e2b54c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "de5f1b10563a9f62b827914d07621fba3c86cc39ac5a31cd091220ea9da849b4", + "regex": "." + }, + { + "hash": "5b3d57c9694cb78584195f362fc67207ab8e02a8ee59e4e9acb8a0ae28fbd840", + "regex": "." + }, + { + "hash": "b82f97614d5a23f5096774dcab3dea5c684a1532fccd7d161c384fa8bd552606", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d577e4880bf4171b3d30fcf8961a15b1b216d6f7a61f5e953162bd4fa735ea5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect[\\/\\\\]*\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html[\\/\\\\]+\\?service\\=catalog\\&url\\=https\\:[\\/\\\\]+www\\.ronl\\.ru[\\/\\\\]+redirect\\?url\\=https\\:[\\/\\\\]+pub\\-587628e1416a4176a0229c5d120cb1f9\\.r2\\.dev[\\/\\\\]+index\\.html$" + }, + { + "hash": "2aa26c02cf92a61d60c091676faf37235a2de1022ca8559142562fcd4b70f7eb", + "regex": "." + }, + { + "hash": "7054c628fc471ae86857daa7268f9e2387b999cbc9fb27b8968e396d3e163b48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+14e19da2\\-02dd\\-4e4b\\-8712\\-c12137bc0da5\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "00f94bc08e1c55a512e722383602cf080a14240517b6db7e57bd70d217485bc4", + "regex": "." + }, + { + "hash": "61c3451d06fd5349216efa317a5f9346e18cd4e2048fe6af98d9ca5ea2131ac1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+20bdfe6f\\-7a92\\-4115\\-a592\\-bfbcadde77b4\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "d3014c7d668b11944827de61d3b5c945d8006b8e8ff9d29902794a120fe84594", + "regex": "(?i)^https?\\:\\/\\/thomasbaby27\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ba31184e73c12523c27a81c05106bafe1418b047b587654b3462d719c73c432e", + "regex": "(?i)^https?\\:\\/\\/showlasopa209\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d5a6955946241f34963176b9e187d435cccab48d5004f8f94eeb9a44824bec0d", + "regex": "." + }, + { + "hash": "5ee0d4d8166cea0ebb9c8c606d10e080dca4275517cc848d8602f319c88e6446", + "regex": "." + }, + { + "hash": "ad62503e38088e325e7eb098ab4fe8e332b45c1a380a7ba3732a0e8ae259b49e", + "regex": "." + }, + { + "hash": "ab9a62cf7a3c44916c3ca43d22e80b40bba601bf5a74410e37b1a16a7a238bbb", + "regex": "(?i)^https?\\:\\/\\/fasrcpa322\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e091c73221298c95aa4a259594891decbb073632e42dd4d81930f085aa679978", + "regex": "." + }, + { + "hash": "585468541b048eab581576c127859e5235b0a6383cfe8dbbcf7da01286aaf496", + "regex": "(?i)^https?\\:\\/\\/pub\\-373ff1e2254d4a38ba2f98d77a4b940b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4b525fbd670d30c667e158b4ec0a8b093b40f314a86df88e27226ffbdaf090d5", + "regex": "." + }, + { + "hash": "c2c8b4d1eeec47184bd0f1436d2c6e4c76113aa9898ae419d3404e55bd7ecbef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+94b7cda9\\-e5e4\\-4fc3\\-b9d1\\-333f4570329e\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "804c16303321f2e0e568d1aaa706ff8cd3e3367fdc440c5594fe15b9c0462d9c", + "regex": "(?i)^https?\\:\\/\\/ankesh\\-2002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2f20bd3ddb0cd4a97caedf929432e8fef0cea98a57ead0d416df4a975580c67c", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%25252Fmassive\\%25252Fseguro\\.html\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "f5616a3d972d1d6b2389fbb6a0cb22a206a7103431081a5814c79b22d8ef3ef9", + "regex": "." + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\%3A\\%2F\\%2Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "db75725edf41bd37f321509cbdadccbb60c2de004b072e90691300e42c979c55", + "regex": "(?i)^https?\\:\\/\\/att\\-104073\\-101332\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c324e8063038e7568225498af0ee24af40ab4a8eedfaf903ac1d9f8bca756979", + "regex": "(?i)^https?\\:\\/\\/pub\\-f56555a75ab5485aa550e7771fdec023\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ad9f6069953a01e03d2ec35b3f361600230de9ce48210d892c94f9d1a5be723b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+3335ba88\\-ebf4\\-4f72\\-a0fd\\-be0685688590\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "0692a347e8fc4acbdc53ddd8d54d855baa9664eaa6e6042c0cf276b03a708afc", + "regex": "." + }, + { + "hash": "7bd90f1e57416e448f609d1430c00357ab9de71d81e75973fd77b09ac676cbd0", + "regex": "." + }, + { + "hash": "f5c129a1e748469ae55d7becb3b8ada78a90dc1309bb6ea59658eb75c8fc2f9d", + "regex": "." + }, + { + "hash": "02a8153d0e98c4a7d740c29bb0b92cf9f9a59a9c467d8b71aa110af1cb38993d", + "regex": "(?i)^https?\\:\\/\\/bafybeihlk7ore5ggnn3zdmctcrq56kwwvcz2jwb4toqyixiwnicoeyrbmi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "997c1c4a1398bd123596c8eb8f9a431bec9d720e8d84abc242cbe8471d28fcc8", + "regex": "." + }, + { + "hash": "bf0cf2a29fe13436e74fd8ec5700f53448ce0029ae99eead0c23e1e4b8951b01", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fcdn\\.dragon\\.cere\\.network\\%2F378\\%2Ffs\\%2Fremit_mt102\\.html$" + }, + { + "hash": "d0646fd0574967195d36cf3e787ea1488e52425a664d3857ee972d5eed373c0e", + "regex": "." + }, + { + "hash": "ccf920ca592e45cf31255be0c5739c52dabe8f2dea634d720d025f51e54b0060", + "regex": "." + }, + { + "hash": "033b6e7d4b477ac3866deebc98429e102b33f2a86c489a54a7109531e4c65071", + "regex": "." + }, + { + "hash": "f2228fc411331e4593f10cbaa89f92c39b4542f8c3c8149058fd28621962d770", + "regex": "." + }, + { + "hash": "f29a66976fd8a25072cae137fd01611a56105a2da26b9a36fd91b04bb2a8f66c", + "regex": "." + }, + { + "hash": "22e2b732bff10380039bdd1e92c0f5509c115cb8e4d6c2cc24eea8c92f08cfa3", + "regex": "." + }, + { + "hash": "0cee0b34ae901434d9989a9ffd62051f5d6b195d9d468239f77f1d9fd111ff2e", + "regex": "." + }, + { + "hash": "73b809b042ed5ac85ec59067c2fc4fee858edc94db3d5996fb090d64bb1558b4", + "regex": "." + }, + { + "hash": "a4355cd7183f121227b477f946a03e252c7a3ae7a9478a227349f3023f9eadb9", + "regex": "." + }, + { + "hash": "dab030ef3cd7a24cd5432ca49fab5d0218fc7272dd4808e15983fa2f3cfd9084", + "regex": "." + }, + { + "hash": "d5fc6023965373499112b840b141d5a67dbaff3988674f7318d2f81b8471bc57", + "regex": "." + }, + { + "hash": "d1a781b91de4daf9f0271be80215a0bcbeb9bd7d8cb2b1a9d7dcdb9417347e2a", + "regex": "." + }, + { + "hash": "cae54cb603eb62ce4c29c60014839c28e4a710c834864d70a194054b6acd0c50", + "regex": "." + }, + { + "hash": "f77617c96e9107a129f8a555a02c767f351c29d83e702ff6ce60e3791c415e42", + "regex": "(?i)^https?\\:\\/\\/ahmedraja1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "25451e3ee57c06e833c226cd0a69864664763b5fb99ff027fc1463469ed0e2d2", + "regex": "." + }, + { + "hash": "cf3255b6270e5a2a95d9804b3660d0c073c1c6f72cf9da2d6e19394a46df4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+errors[\\/\\\\]+validateCaptcha(?:\\?|$)" + }, + { + "hash": "01e42c400077ec219623b7420909972185d18896a0e1c34f4f43bf2b857b1fe4", + "regex": "." + }, + { + "hash": "ab3604ed7a0cbd592717d8460ce0bb460bd7cc4748a7d58003832925f5818e04", + "regex": "." + }, + { + "hash": "eeac4a4191f5524a604bb0313d60fb8ae07f5fac4cdd9361cc347c4d327f6ed6", + "regex": "." + }, + { + "hash": "bf6b31ed78c9bf93d90ad0b6413c12b8d4ec68d0ab511467dfe91adb6db39fa0", + "regex": "." + }, + { + "hash": "8b94a844e798801d6cea2712707041856b0d23691791f8ac1e83528d482c78f0", + "regex": "." + }, + { + "hash": "2a88193c6b8523b876ac849449f28a9803417fbd13c82c4d50e95a4528d300ee", + "regex": "(?i)^https?\\:\\/\\/att\\-login\\-screen\\-108502\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a90e31443f615e0d383bd814834b0c30036e9ce5dd4a7f0a2869ba5feeec1ce4", + "regex": "." + }, + { + "hash": "0232be6c5dc71d2efbdf1dc8e37ebc107296cbe02d16853184e9ea91928161f1", + "regex": "." + }, + { + "hash": "fe6331c3e73c586d4004d2e6bfafc381573732a10d91d1f312ad0943e70d4bf6", + "regex": "." + }, + { + "hash": "9b3b23b50fa1e0578750a52ad7b51428fc74639c7614215e7995713452308b52", + "regex": "." + }, + { + "hash": "961d2747feba93b7fa2a8117fb80345d318415e2742adcb4d6ffb569fa312d2b", + "regex": "." + }, + { + "hash": "c116130b443e0a7b329aecb91159be1adc72e95c06023e0a59b172209900804b", + "regex": "." + }, + { + "hash": "1512b26eea68574760bd5c329b6a293dfb1f12b3469c4b1c61889a7aaecf2ccc", + "regex": "." + }, + { + "hash": "dd4ef57a39b2adb47654735a63baf56982ff97bc3803539767c2b2a6e7ecde8b", + "regex": "." + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+2fae8090\\-9078\\-4b0d\\-b5e8\\-27b078d40a67\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "ae26fb0315b048d41236e6007a99b7ce125c5b06852a140c53eaee1c9ec8bd9a", + "regex": "." + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+l1l1l1l1l1mass\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "7cb93cccdabc5e05a14d8e0fb22b18953bc4808b916e29f2ba7475ec96316ddb", + "regex": "." + }, + { + "hash": "d9f0ebaf4b8f4c61f9990b78f6c40746dde895ddecc5e1512876418c1d9003a0", + "regex": "." + }, + { + "hash": "354fb0e279a96aa2f612abf271ec7712c259ab4c005e0de052d46fb25366ffb6", + "regex": "." + }, + { + "hash": "12f05e0938fa160500b0cf31dc7467cba67f8b1a82cfc74c0300bc3c6cc7344d", + "regex": "." + }, + { + "hash": "0eef0176ee0180154184570e6ebb46fc086d466ace3034d102b024045bc76e94", + "regex": "." + }, + { + "hash": "e51334fcd9bce697f54a23af5f81d4e207abc9c6029e67e37cdd9aef8acc71f2", + "regex": "." + }, + { + "hash": "ff9379d9ef4925e64505471172482fcea4f8b9e29b42d4063904dfd76d1d749c", + "regex": "." + }, + { + "hash": "69e603b1e2da84413bb1cbaa0acfe5fc026812fb57b11a1fb38f35b69246250f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fd42a9cf784b542095e3feb51a64ee4473e232a180522ab5cff15b0f1ac61fe1", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+l1l1l1l1l1mass\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "fbe974271afd2becbb8f72045787b4fc929c8d74fbca5b2e0def737e226f9817", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "91abf2950854b1f691f7776beaf13df59f3ca0977946b8b65a951eaa5d685291", + "regex": "." + }, + { + "hash": "a3c82c872aa7862a2f62c7b289fc5d14bdf362cef4b2c4d366fd9146a0d24374", + "regex": "." + }, + { + "hash": "1bfe8ac675eede317ee0729df0a19af6662322a286656e6463a958280d564cea", + "regex": "." + }, + { + "hash": "54f494ba87b329ae18e0f9c9525e6f8b95f5c5abd81a3293508e79977673fca2", + "regex": "(?i)^https?\\:\\/\\/kelg06\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2413e6bf101dfa72c7fb5420f0e678b525ddf4808c72b287f218618d995a72ad", + "regex": "." + }, + { + "hash": "a1a6b4844a37f32260879e5526dcebb4f7a5f507b623e98e1c66dd6cc28d4f89", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+l1l1l1l1l1mass\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "559b0e8bc708bfc9479278074b0409f8157e2e3afcfce1ed2f2657af2a54e598", + "regex": "." + }, + { + "hash": "10e996bfaed54e1f7852d4cba4c7898eefe3929347eddf3e48d27efd08b3f457", + "regex": "." + }, + { + "hash": "ecafb02fd728b83ca42c3963b09ca8af30246f1f043830e3dc0a6e060fdeabc2", + "regex": "." + }, + { + "hash": "047e40564d134c806c6a0e0933ef27f0ed78e0d036e9c941ebb5525c5e1b5652", + "regex": "." + }, + { + "hash": "4b2e6f3c8c64525efc7924054b0d94bee4ec75b5828a6dd23ae9e056e86e7c20", + "regex": "(?i)^https?\\:\\/\\/abdulhadi13\\-12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "52c25e8a8ef59fea0f1f72db66bc286bca13267e34141f836432fa4f4f99b799", + "regex": "(?i)^https?\\:\\/\\/pradeepprajapati8\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "00074b0d8a62ecd4b2d637819c94cd010876073505556ee63470d479f2899de6", + "regex": "." + }, + { + "hash": "e596cb77e5f607af1c0c8b44e6a299933a7b80f2a08e24c7ee90f58506b790e3", + "regex": "." + }, + { + "hash": "8dc3b92da950b2ba747c49473c878ec7db8d2fba22fd341b26375b37e71eb6d6", + "regex": "(?i)^https?\\:\\/\\/snegi8958\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a1a97ca9e79560583d780a0a913fa9882fdc774cbafa204357e73418a5dd5b20", + "regex": "(?i)^https?\\:\\/\\/huzaifa157\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "20bb814fb3ee7ee9171794e766609b9878055a7801073db28a8e1d7f17e19166", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+472[\\/\\\\]+default[\\/\\\\]+04878392\\-dff1\\-4c7b\\-bf73\\-54ac01b8a4ee\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "2b1aaa8b0203c3734430374aec76c5f2cc8499b4fed0a7d518b0d29385331827", + "regex": "(?i)^https?\\:\\/\\/karankaushik012345\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4a4634b088b161f5c1b942042b30fdf8386f2fba76adaad77d74ff7c3107e557", + "regex": "." + }, + { + "hash": "9d3864c5c54207eb5b85e012c1612fbbd9c9ac0428d5e4f5ac6b49ef184ef88b", + "regex": "." + }, + { + "hash": "9f4821b45174090b3eb8352f08d26946e1c66359d5e5aee9c58e466e91fe492c", + "regex": "." + }, + { + "hash": "a1e3f9fd714e387577696a0f851215fa672453f56d3870fbacebab353c99278d", + "regex": "." + }, + { + "hash": "ee7301bedadb811bc655daf30e6d6182d71f36a5481d9232d50f50981a98a5e7", + "regex": "." + }, + { + "hash": "1a62a31850aa3d30d57d309132fe156b21c98903f9ed6e5dbfd7b7a99926a8fa", + "regex": "." + }, + { + "hash": "9d7d0c7385e944bc1f1bd3bb9d9695f6ad47f6687af07c51792679a4e4933987", + "regex": "." + }, + { + "hash": "50136bdbd8c2609046963a18a6307fe9eb9bb87d608e8b002a810be330d49989", + "regex": "." + }, + { + "hash": "d4fa36c2bc25eec6a4ef44c4bd2bfeff41fc724f62fe0154d937638118fc6c39", + "regex": "." + }, + { + "hash": "49bf83f3053d94bce4f72792a25f8be8400fe848928ad8b936e74fa7f4f9eb66", + "regex": "." + }, + { + "hash": "9642e3c2d5d25815014232cc2f9c3f66019fe014a01b5649a072af85d97567af", + "regex": "." + }, + { + "hash": "212b24eed034dd5931a81beec90b86e034eddc6fcc7a8419055581ff8507cbd7", + "regex": "." + }, + { + "hash": "04c3c8fc3ebdaedec5562060860ea5dc254050496838d86761e167e1117e3c2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NDUyNzU4Ng\\=\\=(?:\\?|$)" + }, + { + "hash": "dbafe7d776ea91ae72ddb2995ca09b9c4d6d56cb45141375c4256e0937729590", + "regex": "." + }, + { + "hash": "9ce913cd017318f44d3a53e283598099fb199f98d301b2fb82f2133fd9b7db37", + "regex": "." + }, + { + "hash": "172eb1c9c3f021e0cba216139b26521ec64ef27d8b6a9feedbe7c7444e6d0afa", + "regex": "." + }, + { + "hash": "99b31426641973509e6958518d76f9dd0f98feab230e3c22f11b3d82d9235f47", + "regex": "." + }, + { + "hash": "651f6f6f066e7c4cd793693111ee794d31c33805b291e2bade5e0af820617192", + "regex": "." + }, + { + "hash": "cbe7002ef9510efd8a7d97815117e4cea1060825587c8aa8a2d7e51148267cff", + "regex": "." + }, + { + "hash": "25b65f26cf3d63169a07c98e290307dc6936ef682b05af22147b6168816895a6", + "regex": "." + }, + { + "hash": "d243de2f5321ababb8f7620a5acea965f28ee5b52a9e10c0f2850f304345713c", + "regex": "." + }, + { + "hash": "e96db8c0a278283de2536cb0e3f7068e71e09c98f090f3ba8e2969673cd6ec36", + "regex": "." + }, + { + "hash": "deb961469ddc6d8638cf1c148e4859b910e4fd6c624e7232a01237f2e38c7a11", + "regex": "." + }, + { + "hash": "6c87510cca829e3e4980f5332d66745a2c6f9feafb8843be688df60eaf143262", + "regex": "(?i)^https?\\:\\/\\/ayushdubey570\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d209325e14dc6dec35b5094c7f8c80ef0ed64af0d71c5e8f44ff254d84cc2f6f", + "regex": "(?i)^https?\\:\\/\\/coinbase\\-signin\\.157\\-230\\-12\\-2\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6a72d1d6099e00d30d2d63b0f85719eb08f8831dfe72e3840e2d67a1ce64b7af", + "regex": "." + }, + { + "hash": "b5bb7ebd7cd5f0e33937b41112aeebca755e0ba25fffdda678c4dcc983c8e28c", + "regex": "." + }, + { + "hash": "d92a138efb76a91daa672b6fee45af2ca06a45685d3523ca6a264840f4221156", + "regex": "." + }, + { + "hash": "d8cfce1eee605b2a57fa2ce59781a2b30b84758a064b04a4309854e953fbc0c8", + "regex": "." + }, + { + "hash": "c94e015156b3a1b4fffdd175decf5d6ba51cd546180f06468f2095a39a208b82", + "regex": "(?i)^https?\\:\\/\\/dgdsgdsgdsgsdgdsgsd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9c11e00da41b4c62bcca21974809c2a387ded6657ecf118ef9ff0a0eef30fbe8", + "regex": "." + }, + { + "hash": "2dff6577f04901115031580880c63b7e4feaa74e89b454064c984504562ac8d0", + "regex": "(?i)^https?\\:\\/\\/sajidmehmoodtariq30\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8193cd04fae5e51bbbea46e4db5fe42009b58ecb739b8be470f66c492b7d3772", + "regex": "(?i)^https?\\:\\/\\/dgdsgdsgdsgsdgdsgsd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5b32d6040fe6e696c1b6e326bb1088195387040abe8c709f85efdfc15ea9cdf4", + "regex": "(?i)^https?\\:\\/\\/dgdsgdsgdsgsdgdsgsd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b81f0157eea736321aac64b4c267be961951a9d4c3ae37f83f883434550ad941", + "regex": "(?i)^https?\\:\\/\\/dgdsgdsgdsgsdgdsgsd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e22d6cfd4625d0215e299f8aeb8e254789e7164e1e49b97e234679330de72e09", + "regex": "(?i)^https?\\:\\/\\/dgdsgdsgdsgsdgdsgsd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fbe9a21e68d993ced3d8f7621152673f957d6b1bf6d45c5e0385f473bc4487b2", + "regex": "." + }, + { + "hash": "0f897acb02c4d96b93a4133a6c0e993bccc627c62bb6d069cc457a90d8ae7d20", + "regex": "." + }, + { + "hash": "1de58972df828b4b6681e5d7877ee84267f7843a312bb062dc2ddad3338c2fcc", + "regex": "." + }, + { + "hash": "9081a78a2178c5d696a43fa43d59a02a5f956964878356918dbfff6dbcdeab22", + "regex": "." + }, + { + "hash": "a8e72b8bd5558c840c002854132211572bb8299544d43dfddb2caaf570b76044", + "regex": "." + }, + { + "hash": "89d05eb3ad357335e5f774d2e49f893b976893da07908e643e9f6fd7a20319f4", + "regex": "(?i)^https?\\:\\/\\/catalogwestern906\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "13877b32518051b2c8401ac8afbf90ab60f5aaab0fb22a37d49b23fa26b30299", + "regex": "." + }, + { + "hash": "3dcd411b34a623f03badf18a39cb138662d489e90689398219cc893f6c8148de", + "regex": "." + }, + { + "hash": "a8ded048cc0e47d9b2b402080654b9d0d578b91df543eb439638e4752cbaaa9e", + "regex": "(?i)^https?\\:\\/\\/reward\\-ultiverse\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b37c652fa0023bccb8a7ddfabd48ee7926b2715954dea6b5671c4451c3f1a816", + "regex": "." + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+l1l1l1l1l1mass\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "35d13269512ce99b38b06904f02eb4bbb9b25c69199c8ebbc983392d4d6d7809", + "regex": "." + }, + { + "hash": "c6468101b40ffaafddcd865542b2a564bb99734c1a157cd55fd876b830a9e2b4", + "regex": "." + }, + { + "hash": "a738ed7794f9e7a67d2c17f94baf532a18d57ab6d184a84ee3a1ace37d10aa2e", + "regex": "." + }, + { + "hash": "9706490529c600f4dbdf56cd5177c3ea5b67a4cf9de769cd20674e5593dd1981", + "regex": "." + }, + { + "hash": "777cb2eef0e8ef7a2804a2f4bef722649a076340c3d4089e47da658900a967fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9CnvQ4cAYrtLkLc9y5(?:\\?|$)" + }, + { + "hash": "777cb2eef0e8ef7a2804a2f4bef722649a076340c3d4089e47da658900a967fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9CnvQ4cAYrtLkLc9y5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7918118f8c703e69ca05184e1596b481e17ebdd7329cc5ffe0c7f7a4b246dc4e", + "regex": "." + }, + { + "hash": "0608b36d9984e0e5e39316f5ab74d44a9a1fff5b002cb012b21397f9ea08ca5d", + "regex": "." + }, + { + "hash": "2728efd42a76fa2ce87f61d8aeb62a88e2d6b03e21d09a29e5f7472c5d6ba4ad", + "regex": "." + }, + { + "hash": "bd88456a90cdf380cf598465464cfdcbc5410a9e7241305f81700bffcda63297", + "regex": "." + }, + { + "hash": "7b3e101e1a74609171b0a40fdf076e69a47040c8cf9062ddfba08cc1aef14c92", + "regex": "." + }, + { + "hash": "a2aed55ea132dba154887a9bada93f28b0aab068f36fe182635881f946bf1214", + "regex": "." + }, + { + "hash": "8e2b61717d5246f251c97f7a66c339931e9d5ec84f48d366def4f8d258efdf11", + "regex": "." + }, + { + "hash": "1a7d8d38dd8925575a993bdc5f87cc6adca80c7d4ac18fb2b75a4f3cdca34230", + "regex": "." + }, + { + "hash": "6fa2a796bb1538793ec5f50f4b2d9bdc7d1403f32692480a9d459835a1321165", + "regex": "." + }, + { + "hash": "aca8f93b5d7546d4f069d7f1a7bf56ef2e104636f3e61e1105921b9c35d92680", + "regex": "." + }, + { + "hash": "9b03ffc88d09aca38c01193f532f7b939ef2ffc6490ece6331fcef70684d2868", + "regex": "(?i)^https?\\:\\/\\/wasitniz11\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "dc5709277cf57653085a9b87870659422d07711312abfdca2ab252391c3cadcc", + "regex": "." + }, + { + "hash": "2d1232a02d610df7190b4fa4efe4a5eb0661d71fc2889b1d0e19a1e08aef7e8f", + "regex": "." + }, + { + "hash": "a2f2f8f848971c95aaa632f20396128cd482c04859dd32425db7ed39543336e2", + "regex": "." + }, + { + "hash": "d1475f28718ef2faa2df5073cc1441785753277cbc9c58c9b67d953deac7f61f", + "regex": "." + }, + { + "hash": "451d3d5e5f37c292368bc9b87ce7feea7b97d5a9d085b17824318913f364eac0", + "regex": "." + }, + { + "hash": "6092022bb3f1dc09438de340ff6431fc694be81e21ea3c7e99ee3be5d0b5dc0c", + "regex": "(?i)^https?\\:\\/\\/pub\\-59a3c9ad2ce94490aab93a14dad7092c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9010bd4f1e52defd71b14d1e3dc1ea43b2ef0133c593a832e875c9ab11631341", + "regex": "(?i)^https?\\:\\/\\/pub\\-5f1599118bf948c3b6584244a7b9b987\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ef1dfed1b9ead1fb091313036f5f64ac5728668753a6508a054caa1352a665d3", + "regex": "." + }, + { + "hash": "0785ee633aa61aaea2d23113525e1dcd944d51ed6068e207e0cfce36908bca3f", + "regex": "." + }, + { + "hash": "49fdba7a9b425f72ccf33b18cd4e0ad4b7c2d33ac0259d00b90ddca963311c3e", + "regex": "(?i)^https?\\:\\/\\/backspace411\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e407b0747cca99e7401a2dca087ae66158f4b5f5d7da448d69154ecef434d5b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u1lr9(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b98dbc55039baf415fecffaba1216a12c49bd607bf98cf721be0d74bda1da93d", + "regex": "." + }, + { + "hash": "d8b475b32f37eb892cc66bfe73e1ad2f7994dd0bbc7f407a708c7042d0faca42", + "regex": "." + }, + { + "hash": "2fe788e048c9b83d7b5236e5c317a88162eff9f25a5a2b0901dcbff285eb8e5a", + "regex": "." + }, + { + "hash": "2c2b0e700222d84dbda1faab01cbcb557c4d9cd19506678b14cf4ac376a978e6", + "regex": "." + }, + { + "hash": "974ec465c7cbbb6c5fa93858f53bb92e388986ba7322e8ddd242526ba066afb8", + "regex": "." + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+41[\\/\\\\]+default[\\/\\\\]+71891f19\\-b9e3\\-45e2\\-8a0c\\-ea4afd314599\\?redirecturl\\=https\\:[\\/\\\\]+sbogamebet\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+s[\\/\\\\]+$" + }, + { + "hash": "44df9c940452ce144019fc62cbb3d4369f4bdc365a0dea7fc7ae3543d1199c47", + "regex": "." + }, + { + "hash": "d20f2232144e5490892df0b8643d4545ec257cc4d48b6860897cf36ff9647cc9", + "regex": "." + }, + { + "hash": "6406a77bde431387e23b1b824958dded4f8c173a1e60f15aa356dfbb86bf23c5", + "regex": "(?i)^https?\\:\\/\\/pub\\-fd74a944313b4460b31991881891da9e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3041c3179fd90923a23ee137cd4eae0fd5a2a52eb8cfb9fe76160c067f945ca8", + "regex": "." + }, + { + "hash": "f3d1dd70d95cdea9b06afab41af3778c200bb1713b8c59132a34ad9a859ec8e6", + "regex": "." + }, + { + "hash": "533aabd9eca51c2a976c7b0c635278f3a8077014c99f53e89a6ccf0aadbea0a9", + "regex": "." + }, + { + "hash": "186d4147ae87848535bf8cbcf7ba78ca1d6365263d218c85971b23fd3079130b", + "regex": "." + }, + { + "hash": "5d216ca0183e86add3522f90cacd1bbb6a79e6ca1469407d8516752d8c111ff0", + "regex": "." + }, + { + "hash": "c8880b038b978a5bd8fd0655ac09ad093ab522aaca7e69e8432cac92516f169d", + "regex": "." + }, + { + "hash": "5706774250babc3d00f495fca3ac932b74255e4fffc1db323b05fb6b2f0bc57f", + "regex": "." + }, + { + "hash": "31c3f0cfb86c091e5c73f6e58db32a2502b3db1149a0a170f47c9feb5294d06e", + "regex": "." + }, + { + "hash": "cc7893a5ae60cb6e0a8f14e8868c46966f8bf789a77f3777ef4be6b4235fb786", + "regex": "." + }, + { + "hash": "3c23999a630b5c62c3b1f4db242d634017e84a3b8cd629ec49f2732d26a7fc44", + "regex": "(?i)^https?\\:\\/\\/pub\\-2d3ed88f9852494e9da74468b7f666c1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b585009e2dc9224cbb9daf66803996d9722d1270e0d1b92c57cd7759992656e4", + "regex": "." + }, + { + "hash": "134e9b09469a70f3e36e8478488a3a6f27d83274ceedad8daf841718b8d49f50", + "regex": "." + }, + { + "hash": "c918d7de5c6a4b9160e36f7e281063eebeec8c02697a4fa1c7eb2f60d27bdd2e", + "regex": "." + }, + { + "hash": "b481660905cef9e6017aa21a521406beabb5d499639553f2cc91c49e27bd1fb6", + "regex": "(?i)^https?\\:\\/\\/www\\.1if9gg\\.vip\\:9010\\/?" + }, + { + "hash": "b8a3cb97dddaffb1f458c40056d9091b09b62fbc31031269c7484b1ced56f659", + "regex": "(?i)^https?\\:\\/\\/pub\\-379a56b77bb046eaa88fd0d5458f0f7c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f8ad0a6bc6bf8cc73ef7df08f690d84ac2b845bacf7b19a073aafce8ce6324ab", + "regex": "." + }, + { + "hash": "0fd09e94756518518d36126b2a21d396a5c33ae4bb4ae32375748d6ea215c8f6", + "regex": "." + }, + { + "hash": "1c7ab8be1c5f23b110027e1cb20b87cd9c518ccf0133d0b9770dc6585e9dae4a", + "regex": "." + }, + { + "hash": "a1f7e091d1dd0a12c154495fca24f5bb4fa6b2e1ec850667d16717812c173902", + "regex": "." + }, + { + "hash": "c68fe0b2bb8ef71f571cd50f2711c2d2ceb998096538c74f4aa0cc92027498cc", + "regex": "." + }, + { + "hash": "260e381e81c8c967581ff70bf4aa8df7bf078d8b7b2042880e318521ee9b6de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+101517614[\\/\\\\]+299419[\\/\\\\]+2(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c07a5bd0bde449683456c1e4576e9d967c9984d0e9e2d63b7ffa699869d4be1a", + "regex": "." + }, + { + "hash": "097f1c4288c6d929dddf7713c13cb1c37956c828e8b77d6b97c9c10d563e135a", + "regex": "." + }, + { + "hash": "cd21196a951f5aa4c97a97a9969857ab3a198e72767fe921828d3862777d1279", + "regex": "(?i)^https?\\:\\/\\/americangoodsite910\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "627c99faaa3410f5636c48f561a37934c0b7570f9327b83c424f1f28c02e2f8c", + "regex": "." + }, + { + "hash": "e6880a53bcda0bce30dd065444098f5e85931c8827ffc7a13af3d5cef2a7c9dd", + "regex": "." + }, + { + "hash": "f94886a8c7f10ba04b230bdaf606648acad2a907b6e4b23f494059848237f66c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+101517614[\\/\\\\]+299419[\\/\\\\]+2(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "115ce1d13451957d08bc4a8d72baabdef8ad440b5b8e4fc5d749a9fddea8a56a", + "regex": "." + }, + { + "hash": "f12ebad2053ceec4d5d32030d1388b14f0a8d9a0271eb1cb4762291f82739bd6", + "regex": "." + }, + { + "hash": "b0ca4868eac704a15cf62e563361a63f3694a40ab409bfbe0360fe930293d5d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+co(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9647c8e3cf5a1db74ef99d10f4be8626e31020669dc0a34301dc21354ceeb57d", + "regex": "(?i)^https?\\:\\/\\/705\\-705\\-matador\\-bet\\.tumblr\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b6c36c66c138a569b74ed1e872940f30532ddf6feb668eb827fb659e5cc06ac0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+adobepdf" + }, + { + "hash": "27bc6a1de1046c3d1df669f42bb79316133536f5006a4d100b627011d7dcce37", + "regex": "." + }, + { + "hash": "a7a2128c6a8bddaec67c90b1b5c134192e8391e87b459b025b5abd51ec92be91", + "regex": "." + }, + { + "hash": "6a8da47293732048f18abdf1830ca2574d7ec65b581ac6b8d59e94a2aff6c2d9", + "regex": "(?i)^https?\\:\\/\\/oqwiqurijvmnmnsdkdjaoiueiwsdmncm\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "be265d33449acce13249973616bb12ab58a2fc4c8a5f92319810224edb2043cb", + "regex": "(?i)^https?\\:\\/\\/hadiah\\-giveaway\\-88\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+dana" + }, + { + "hash": "865eaed8959ae0c9a777bc8ef864be95f778fefcc8c0b2b85f12aab3eec93010", + "regex": "." + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yLPAo(?:\\?|$)" + }, + { + "hash": "7ce2710ff5dcabda5edff099e9ef68bc995ff5b381f05064479e457355bd6668", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\&source\\=gmail\\&ust\\=1662686205266000\\.\\.\\." + }, + { + "hash": "7b5e299317a56c3a3a8619369aa4aa0240ef0d2a1ce72df22dc5cbe82036f5e3", + "regex": "." + }, + { + "hash": "62e4392a80cfb7ef50d4edb4b4018cccc3d23d959fc9d53dd24c5ce343c33a02", + "regex": "." + }, + { + "hash": "4995620def3d54061c863861cd1ad9bdf0e342b0b718edf67267e4bd4b0d6da0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\.php" + }, + { + "hash": "c3cdab5ae0d60f7a001d34177d378d8ea8a0659454ab583cd7c1c0f4d60cb14b", + "regex": "." + }, + { + "hash": "061b4152a192ea85a5099f967b216fb59c92bef7cab04208194f5dfa1de2d332", + "regex": "." + }, + { + "hash": "528ce1e5c32420f47afb7531313f91c7891fbace437bf0dfe0559d96085e3ff0", + "regex": "." + }, + { + "hash": "578ce30bec8ebd51e36db28a6c312fe782da61dcd46c1bf79d7c7d05325d3ebe", + "regex": "." + }, + { + "hash": "df88ece84b7d326895857c628bf6078a813f37ab872dc084a95c06c4913a9de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uozz9nf39p1p\\.html(?:\\?|$)" + }, + { + "hash": "2cc6d71bbed35956599be0c90a2e95a1ea96de823587153bc21e739704a14783", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "c726e8b0c4642e7c0be1defe0f3ccd701a57f6f764ce43da354049f0d21d4254", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+\\:8880[\\/\\\\]+guest[\\/\\\\]+s[\\/\\\\]+8lzur5bw[\\/\\\\]*\\?ap\\=d0\\:21\\:f9\\:8e\\:d0\\:2c\\&id\\=7c\\:70\\:db\\:46\\:1d\\:06\\&t\\=1724675556\\&url\\=https\\:[\\/\\\\]+downloadss\\.standard\\.us\\-east\\-1\\.oortech\\.com[\\/\\\\]+$" + }, + { + "hash": "117fec94923f69a1854e8092536a3dd3f872479f93f006192045c50e75c7d2ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "097cad951dac6a55db601e080f84f45182ce0d59b7cbe42e5b02b6c07989330a", + "regex": "." + }, + { + "hash": "30b86968487f4961cd2e33083381fc6c65d477d0bc914967a93bd3986d079222", + "regex": "(?i)^https?\\:\\/\\/abhishekv18\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2839c510bd0ff9e37c326b409450883ac29b574d730fd0d04dc6b4f066688214", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "bb9f62c599e1a2307a79ba4bbe09da699d0233445fc71d064641a589468ea3bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "0d7b396d180ad15131abe3c0e05cb92206d8481cb9af0376d5f54f20bd89614b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "e407b0747cca99e7401a2dca087ae66158f4b5f5d7da448d69154ecef434d5b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u2kt0(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dcfb7e12b951a11b49da215bfcf7fc4106bfdab0a181fec53eda64cd0dfdbf59", + "regex": "." + }, + { + "hash": "04801786fec69642cbb2b202dde67ca51050ac55a7294c412fa746f873612974", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "c47e4208213612c1a99be8b9a721112aeb52441d57da133412179687cb6ec1c7", + "regex": "(?i)^https?\\:\\/\\/pub\\-aab04453e4b845f6add074e69731e4f4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9c6a1737acdc24221de96223b968b31f7a48a47a79ab1abc9f0f0c8edad1922c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "341c7be4cc0cbb5e5808279219c57e9eb47a134f1526480ea8f023ffdc7cc4ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "e185d05bc736d6b58124f7cf5bad6702407ca7ca93be9e47b3290b2abcd9b367", + "regex": "." + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+7[\\/\\\\]+4790[\\/\\\\]+35[\\/\\\\]+default[\\/\\\\]+5e9c1c69\\-6142\\-4758\\-87d7\\-da7ddbf8af8f\\?redirecturl\\=https\\:[\\/\\\\]+belgiumup\\.hosted\\.phplist\\.com[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=cRhQC1IBB1MHVRQDBgJSTwUMAQ8aWlcHVBRVAVMHWFVdUQEIUgFOUwkJDgcHVQZPUwdbDhpXBQFXFFgKAlBMVA8ABAADVVZQVwgMGlFSUgcIVgAFGgVVUAQUVQAEVEwPXQYGFA9XBlEGA1pQV1dSWw$" + }, + { + "hash": "70f348e40a2ec32eec3992e3ae1cea311542cfac448e6b80555c7918a712b0af", + "regex": "(?i)^https?\\:\\/\\/free\\-9790\\-robux\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5f256aefa97cc5174d3243fc79b94107776c7df8db485d12b6fb2bcbb3529e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "831892ef299bd55fa43d4ab306add81a3f7edb26afb51bca9f8ba230c88a3cc9", + "regex": "(?i)^https?\\:\\/\\/pub\\-aa5d555d94904d49b0509f6466bd7459\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0b7a4d0ea7056fc5154f214799ae844e34643370e6811ee872b4bf846feff961", + "regex": "." + }, + { + "hash": "b5c8a69a9f9c504dd742f9f838fec80198fd3b47ac2e58bf733209ca2a8cacdd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "8c2300646c547723bbe00235caa4ed69352a171a4340c4b9b065b53b1dd23b6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9024[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a385cb0d009185617b7b373aa61fe8fc7b16045ac9651d8f127186717e812969", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "47412fd7ed6d2b152069cf1553baecdaa68a0bd7f53a74e410ccb3d6f44d5abb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "b3f1208240dc082686d116bd800d34ffab1b32f532dc647bc7a55f5c4b272a53", + "regex": "." + }, + { + "hash": "504d70c3478f6611783a1a5c25cde44e215c2efb4462363e0ccf4db010ea95ea", + "regex": "." + }, + { + "hash": "61de5df039cbce1dc2f903a2092627f820220b5070e41024a4cb5352dab5127f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6c5df5902826bc1e80b944903c10e88d8c12057b04c7709c045f9a7e15a9cb8a", + "regex": "." + }, + { + "hash": "8c45acf2e2de218445300cce09eb6a50fd409fd0a9d6c851c270e0208ba2672d", + "regex": "." + }, + { + "hash": "07a9007d25e22c78647089a6559e8ac4ca834abb0f22ca1cbe0ddcf2c49d6298", + "regex": "." + }, + { + "hash": "be25fabdebe39595b08820188c612e2e8bbc6a57fab9ca795affa27c4eaabd71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "33d3fd4c378cfee036c74161b9839b99b756429408a263a3bf7d075db4eac137", + "regex": "." + }, + { + "hash": "4ffb055e4acc3e74801099abf35468ad3529cc8edcd1f99567b5631a97bb8ce2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3405f952e82385735ea9e5b0c91dcf61e2de2984c01032b1950f3c0a85acb08c", + "regex": "(?i)^https?\\:\\/\\/pub\\-02cf0d8dc94d42a991a7ae9b5ca23ffd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8ede104d578d9ea1dfd591082e2d1df53e4c4dce16533a4edd82f6ab8897411f", + "regex": "(?i)^https?\\:\\/\\/lombado411\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7eca1d546f462aaab5715261200593da8359524224bd995eb5ac2f48c940e5a8", + "regex": "(?i)^https?\\:\\/\\/www\\.h6hmz6\\.com\\:9965\\/?" + }, + { + "hash": "71cc29f627a8c22fe5084f3c2030b463288d5516af30d1aab9ad90e3fdea31d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "4ef162f1551e454c94aede7df30f41286957061fe6f5da576ba33f08453bbcf8", + "regex": "(?i)^https?\\:\\/\\/www\\.dcc5cp\\.com\\:9976\\/?" + }, + { + "hash": "14d8c841cb371624fda5659e3549b7a66bf80e1f3c74b3805b19fc8bf403b899", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "12afc293ac44e2e7b1a6f98f9ebbd720e56ec966d2ecf144bc4be7d546e0f72a", + "regex": "." + }, + { + "hash": "58074af3e75eea31cf1b800785daff756b3b89a587a24c77294a4e6582cb9d1d", + "regex": "." + }, + { + "hash": "33d366b5c953f22cde5f1d9e28cbe450908adb207ea1f24de65c92be60d27e9a", + "regex": "." + }, + { + "hash": "e58b0ac0f0c19ed06463aea13bbca6ca5450355a1134bd95b7121d03276e7276", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "b0f8d0d9eea9197c78cd4a3b4058c1e4160093fae610985eaed4fcab91d6f138", + "regex": "(?i)^https?\\:\\/\\/pub\\-c03773e0e9984a129636f0b0fe7da262\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dff5128e983e260b012a8aac02d1bb6b8df3822b62d5aa89fafd5748ac514f6e", + "regex": "(?i)^https?\\:\\/\\/mail\\.167\\-99\\-118\\-122\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "451d55b226a26a7660810fff96e70f839f1952bf813e71c610da0be4ca44fd24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0463b12c5baa641c3091a003d8272c3a1d256d878da37cd8e57db7d0a300641a", + "regex": "." + }, + { + "hash": "01d6d0cfa106f3ce3fc0334a7d44e2568cd3585d01e72268ee97aa7a24d3488d", + "regex": "." + }, + { + "hash": "1d1bcbac21d2b14ec9f0aee0f1c01bba5a480fdc817c4f8b05a97a69b5e9efe9", + "regex": "." + }, + { + "hash": "91fcf2e740a74b02bfdb540e063a8650afbfcfac4dc663cee1f1f0b249bdf7ad", + "regex": "." + }, + { + "hash": "2b048380f73dcef78b832c39249c3dacce08e2fa698adb33db71c98c73f7c51e", + "regex": "." + }, + { + "hash": "7385a0ae5677814b6ad6173a618e3c4f6ca7f31629ac7767df0aeb7f83617785", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "9c9586e51a3ac838b4d7188969c2715dcea0e5afee9e1ce682fc739d79d20531", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "f1bb09ed30bbcbde2de7ef6904aa6a34a07aaba79f66af20500c370be4ed1829", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "c4f25621af174af0b4317ae267c1d387f6627c2d27871ef6911a08825866d688", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.167\\-99\\-118\\-122\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d8b1b1d3d7e7446a501b9eddf8aba8c1ee487b6f7529f91e1233c832f86faeb6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8003[\\/\\\\]+entry[\\/\\\\]+register10245(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "40fa9ef4ce8760f12ac4f61ac1dc657e7eefb45c82098f8090bc23b8171a2a14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "d70a148f5a95bde1a265dc9682486720e6b2630d4ab3dc53cdcce4314f642008", + "regex": "." + }, + { + "hash": "3a42975f80a7842e746ec9202e4cf6a601b30a04d9f123b88b6d3c11c5076dbf", + "regex": "." + }, + { + "hash": "e1bc5dd0a31b1bf61f675ed6ee2343705c53d62f6971b13cd83a04784251d57b", + "regex": "." + }, + { + "hash": "d02e7a452d4fb4bc4c934f907050c20461de3088421a86f71c7622dbb83d21d9", + "regex": "(?i)^https?\\:\\/\\/pub\\-37f4126eb4ae49a3a903ba3a142a6734\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ef31045f193c65b01b0c53f5ca3109d0841824cd49ece5980e579614e0532826", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register10245(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2aa2953161ef4d37b1ce1702bf23986795ab0cb748005222d8b1d69c774f74cf", + "regex": "(?i)^https?\\:\\/\\/www\\.107\\-189\\-25\\-175\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6551c3586722ffaa636fb1b6ae38ab0fa63993bcf8daf3b597b7545d3e3b449d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "3c8feff91589aa74e4c321f37a7c0db6897d3151832d376b8661f46246544a86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "db3f93765dafcb9512dfe1ed587c31696c8f0fde044161d8db5cae06d94f90ac", + "regex": "." + }, + { + "hash": "cccf5f4d8c4e7873e66bfa189da9f8a0889449f882710cf8e70e529d407ddc76", + "regex": "(?i)^https?\\:\\/\\/mail\\.144\\-172\\-111\\-6\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b915ad1756c734b5d3f772186bbfdfdb7fd9ccbeb42ef21022e8b4ef2cbb5a23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+evri\\-track_parcelshop\\-services_courier\\-integrations\\-customer" + }, + { + "hash": "c976f4644efed234c84b87000588cb8b517ec22bda2b85d94ab8fe0951e2043c", + "regex": "(?i)^https?\\:\\/\\/pub\\-bc0fb3bc94e345e3a076d4a3f71802bc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "39cf2a7fe573c44b9438f6440f60da7fc2e7c5e7f19c79206b083cfe499a32fd", + "regex": "." + }, + { + "hash": "985061551abc2f782669e8a13c8ff53f2c5757befbe6d36c7128101054711893", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "529bf608d60d2be6daa6d6e2440236e3d253f4f8d8a868d225612f47fea5b6c3", + "regex": "(?i)^https?\\:\\/\\/anshtrip99\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "549e35b78bef0677488b53767780374d77ebd253519826b669d8f890c806c4f8", + "regex": "." + }, + { + "hash": "451d55b226a26a7660810fff96e70f839f1952bf813e71c610da0be4ca44fd24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "2ce28ecb9c695e999da57502912e8e6c2dbe7aeced6b899822b3a4eb38c9cdeb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "f468a3d38dec70979708eace9b39e4d4f264e56cdfd0302963b4edc3260b89ec", + "regex": "." + }, + { + "hash": "976bda87eba09f1c66879b6ffd3ce85a1780aa517d5b579acdb94535b38fa833", + "regex": "." + }, + { + "hash": "56f9a4eb9ae677f0d74839686e08d105680353ba8c04f1038ca2f20ea0f1b494", + "regex": "." + }, + { + "hash": "0aaa02b0c60ab33aefecbd241ddb1765b32a6d22ceebf0bafaf0a472ec259b95", + "regex": "." + }, + { + "hash": "1847a3a44dbca81e1a333fc5b0987f7544e9b45babc6e1321c44a4887efefd48", + "regex": "." + }, + { + "hash": "60070f353d8aa2f926c2aaf7c93e61cbe25cae93596a1c1082ea3c3db01400ba", + "regex": "." + }, + { + "hash": "4f5ae0f8b4397d87604a49ac7fb61cf4374fda230c289dde35a46a4a05f2c975", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f95a84fbf4a6c7c208cf31a5a2f7d4e4b3e1126a190e56c28ab33b9e8176285", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fmyworkspace73d15\\.myclickfunnels\\.com\\%2Fmnds_ymn[\\/\\\\]+1[\\/\\\\]+010001919ecd418c\\-914f675d\\-b883\\-462c\\-8a37\\-a1917c4398de\\-000000[\\/\\\\]+RexpiAJ7qzzGL869QXVubMK7s3k\\=389(?:\\?|$)" + }, + { + "hash": "fe63c6d3db44b39ff4b1191fd0ea72d25cdb4140c7cc7b4747c3a76b6e959927", + "regex": "(?i)^https?\\:\\/\\/pub\\-ca4b6128ced64680a2220868aed2dab7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d09312f920047a512d4de8ce65a3ec81d8392cbdb76d6947cba106478faf5bcf", + "regex": "(?i)^https?\\:\\/\\/zx85im\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "2e0e560886d2d97170fdb5564103465be9779ff858efb8c67a7b43ad314fd3a6", + "regex": "." + }, + { + "hash": "4c0099591250da0687de242a84abcd2fd72153880bed0f14eb807db3c930aad6", + "regex": "(?i)^https?\\:\\/\\/www\\.rack\\-security\\-authentication\\.my03\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3ece258ba93a37c900f69c9d26e74facea9704956e8eb83caa68b8c8ca9d4723", + "regex": "." + }, + { + "hash": "4f5ae0f8b4397d87604a49ac7fb61cf4374fda230c289dde35a46a4a05f2c975", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "638eba4652aa1ac8a2ad25b1859abd070a009a3bba73a30cf96613297c9f5c6c", + "regex": "." + }, + { + "hash": "4f39c37b645e7f30c197e514912530e18c66831a3d3d02ab8b70b46e1c1b510f", + "regex": "(?i)^https?\\:\\/\\/1lyaeq8x1\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "495aa9497530efb9102ab794e6cf5c50787b7d81a98db0209e185a792b1d7231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "13c6ee211f56ff050ee12061797d473394fcf4e243018df6f4b6b4f365adf56e", + "regex": "." + }, + { + "hash": "201d0207b7e65f315361db4970067fad19552c151ec9e915cccd27efae901349", + "regex": "(?i)^https?\\:\\/\\/softwaresp768\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "aab308a4feb2459db2aa8005f7b072c1e314d4a7b7d246bf03670fc326cceaa1", + "regex": "(?i)^https?\\:\\/\\/us2\\-authrestrictioncoinbase\\.134\\-209\\-118\\-236\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2e80845f62d1fc22afdc8788422da5dc31ae2b29800ec7647d421de4ce015ce7", + "regex": "." + }, + { + "hash": "30e0230f1fb8c4409fefeb0657d17e0abc2defbeba9127199eb3325d8724d513", + "regex": "(?i)^https?\\:\\/\\/0w9zl23\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "206c8283ac48a58d9708888db74f0979d3597304a43965252d70332d97ec3400", + "regex": "." + }, + { + "hash": "6163dce9ec5f1576f93ed931621c36afd693d7cee9dc4f6bacd5e36cfb29e306", + "regex": "(?i)^https?\\:\\/\\/pub\\-4272faf39b284811a66234af12bdea18\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "841fe592ecc67c65d20f84574d630c3cc78785e6d1fe852e71a953662fec3844", + "regex": "(?i)^https?\\:\\/\\/ronit9\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3226b7b386dfda78372f3aed9afe28c3b129b637236a69c037f9b1fa800ba097", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+defaultaspxid\\=204D2B4B\\-421D\\-4F7C\\-80E1\\-F2A03D1F7FD2\\=PTI151101TE5\\&rr\\=OAE190509K64\\&tt\\=\\&fe\\=66cf94afd15fc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_2\\&utm_mode\\=skip_if_exists\\&task_id\\=142437358\\&task_auth\\=f107e8fa1f653116248c5be8b6db3890$" + }, + { + "hash": "f320e209150c98f655faf97ad1c2b89d6b98032616ba80cd8f516a781b25d346", + "regex": "." + }, + { + "hash": "4433184b67e0a44a7699e4bb978e5af3b1fc4d3f5d830b2d09e96be2be86e953", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+currentlyattyahoo(?:\\?|$)" + }, + { + "hash": "dbfce387db0c55a4164a21e56752600db82933fb07342a2c5ed822949cd2c49b", + "regex": "." + }, + { + "hash": "42bc9c80d2b390587351fcc558df80a8290456f14c5f960f2463e5e36e154510", + "regex": "." + }, + { + "hash": "8561e0ebe450860a84db34df39f20e9544e1aaf7cfd40084bccd403afb6ef60e", + "regex": "(?i)^https?\\:\\/\\/www\\.p4jxyr\\.vip\\:8003\\/?" + }, + { + "hash": "b9f67eb28e6548eafffeb8d6d7abbdee18e3b6f82042137823590c1a1875adfc", + "regex": "(?i)^https?\\:\\/\\/tan015186\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "d575902c83aae0ad01a3cb7a56f600ccd391a6f13f32e8593823ec9fcd3da009", + "regex": "." + }, + { + "hash": "d739e2e9f9d58466a78f7c1b94cf11ce0c7c92fec1898fe25c331b37e44493f2", + "regex": "." + }, + { + "hash": "3f675ccd393e464ea3b2f20560204fd70d0c205e62f22a0f32ef0322b98d3993", + "regex": "." + }, + { + "hash": "ce31f8364bd04bfdaa1a11359cb603bd1193bbb2256dee7afa566e0ad672eb58", + "regex": "(?i)^https?\\:\\/\\/63092029\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "56ac792dd9227acd58bda80b119520b94af63b7f0ae3c9bc027e39b5028d00d9", + "regex": "." + }, + { + "hash": "e973caef99a1af646f3729bbd21df0e583fb3f66674d1b798176fa0d53ce2332", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index223566\\.html(?:\\?|$)" + }, + { + "hash": "bc304fe3f5810939768129bf7417b47cab1e685203a61dd402f28c0a4dc7881a", + "regex": "." + }, + { + "hash": "782f284da686106cf7415ff9d814f5ee42ee5117013c3fc0f7c702645ad7588e", + "regex": "." + }, + { + "hash": "2d46e7274d92f29bc0e632be8f0bf3f806a307b47d62c309b5a43fedfcd23b59", + "regex": "." + }, + { + "hash": "5292b8f208bfc64d11288f496d75d15d44190b3ddff9e3c1feee20122a9a3da8", + "regex": "." + }, + { + "hash": "b41f454f8f259a43f47e869c846353f3ea5801a7281ab06b62aae932955704f5", + "regex": "." + }, + { + "hash": "95b438c8248c2a759bb333747ab69f5600367ef3516b1b9b003eca128a5f65b7", + "regex": "." + }, + { + "hash": "971f6769e63c3007e05fa12f9612225199a7524cc9d89fcde6980bbe29cfa086", + "regex": "(?i)^https?\\:\\/\\/pub\\-2c59594bd9be41ac91b7b91fe4602fd7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2948a01b06864b4c0fbe91f123e95037ef61c000afa6637e66251cc695a06743", + "regex": "." + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_2\\&utm_mode\\=skip_if_exists\\&task_id\\=142437358\\&task_auth\\=f107e8fa1f653116248c5be8b6db3890\\&id\\=142437358\\&ignore_redirect\\=1\\&key\\=ad20c5c89ef8f150ac7530ce68e1479f\\&url\\=aHR0cHM6Ly93d3cud2Fsb3dwcmljZS5zaG9wP3V0bV9zb3VyY2U9ZXZlbnRfbmV3c2xldHRlciZ1dG1fbWVkaXVtPWNhcnRzX3JlY292ZXJ5XzImdXRtX21vZGU9c2tpcF9pZl9leGlzdHMmdGFza19pZD0xNDI0MzczNTgmdGFza19hdXRoPWYxMDdlOGZhMWY2NTMxMTYyNDhjNWJlOGI2ZGIzODkw$" + }, + { + "hash": "ea70fc18f6764b92c79085441f05aa7f33af8e7170542032bab5383a73130b8f", + "regex": "." + }, + { + "hash": "3a351c1f44a6ad02cc9a35a2bf32075e8b8f7938727d2c42e92955696a4c5644", + "regex": "." + }, + { + "hash": "98ad508a43d60282d790e60d29f68758729e53224dd2871f2a618a4f56061d85", + "regex": "." + }, + { + "hash": "2c17f809320a09d351368d48f23643abe08c6afc2ecb17be87d9b95bc468e0e3", + "regex": "(?i)^https?\\:\\/\\/treeindustries718\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f5ade48abcd94d1885fb7a48818ad2fe881185cce2464736085066778a6e0", + "regex": "." + }, + { + "hash": "5a80617a80a3dc2a646f24c2065b551ae8439b390f4df2d2b285aed0c16e489e", + "regex": "." + }, + { + "hash": "793ea44347323da4bc4da9cc100544144d94ebff731646be6734ea09c3aab7c4", + "regex": "." + }, + { + "hash": "e768023a0bd22448a11950668cfb3eb2b2ac4e810eb248c09330f24371fdf49f", + "regex": "." + }, + { + "hash": "05fa29b4cbd34eebf5d29d21f615b0faf25700f1957ce86d55886e54b20e3ec5", + "regex": "(?i)^https?\\:\\/\\/akashyadav2003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c513800487059899a354d91238d8fe40694a5e297da394c5f6b50cb81fa7c1f1", + "regex": "(?i)^https?\\:\\/\\/www\\.83az8m\\.vip\\:9013\\/?" + }, + { + "hash": "94ac25a7d1486e48cbc0005e48e2f1ab3a77f088af28a5babcdb61ac3df3a89f", + "regex": "(?i)^https?\\:\\/\\/pub\\-1ef08fa85cbb4930bca0a732b0093884\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "028eccc1dc4da4636eba6fbc86d1828e19135c340cfb793a74fcaca8397b7baf", + "regex": "(?i)^https?\\:\\/\\/bafybeieny4uuuvbnr6p3nkakerj2vafiod3eqy2bl33nk5gsgnnwmcfj6i\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "2df498f67ba8d828d9ce480cecd70e55ef564ebe5a041cfa2d3a241d2a9630d1", + "regex": "(?i)^https?\\:\\/\\/shaw\\-101996\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "657f8ead12e796ef17b1f4dc7a5da2a3b6ad588a7bf93ebe65c7247b5314914d", + "regex": "." + }, + { + "hash": "0461bc525f9167526164c73ee161b2ef725870348388bbdff2187a0c2cb71413", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cfdownload[\\/\\\\]+https\\:[\\/\\\\]+mgm\\.bbva\\.mx" + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=142447074\\&task_auth\\=60dfebbbc83c035cc9a9e33d6320e91a\\&id\\=142447074\\&ignore_redirect\\=1\\&key\\=c45a0eac0ce5f940c28d2efd88c858ed\\&url\\=aHR0cHM6Ly93d3cud2Fsb3dwcmljZS5zaG9wP3V0bV9zb3VyY2U9ZXZlbnRfbmV3c2xldHRlciZ1dG1fbWVkaXVtPWNhcnRzX3JlY292ZXJ5XzMmdXRtX21vZGU9c2tpcF9pZl9leGlzdHMmdGFza19pZD0xNDI0NDcwNzQmdGFza19hdXRoPTYwZGZlYmJiYzgzYzAzNWNjOWE5ZTMzZDYzMjBlOTFh$" + }, + { + "hash": "cbe7607a2437ad464104f20f678ed8c123d77e2752972981369610d2fd702637", + "regex": "(?i)^https?\\:\\/\\/gouvlqntaifrance\\-aot1deghb9\\.live\\-website\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e3448169132d6113edf04866b1c4a3fef96ab2397e6e66c70d2dc04f078e0857", + "regex": "." + }, + { + "hash": "ed987ef57beadc2bee2bcf4fed70497d988aba203f74f4e93a6452dd55a8c1bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7880[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "13e2c58762cbd4fd364815d953022c2cbaa0e2002739266017577405491f3cbc", + "regex": "(?i)^https?\\:\\/\\/shaw\\-101161\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cab6c77be706ce97ab446c554e2b54c42af1b820bd3af71ea05bb3d13956869d", + "regex": "(?i)^https?\\:\\/\\/robinhood\\.com\\.45\\-138\\-26\\-32\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "732ead9e93bdebc8660972c59fa1ad85189f7a240d69bd2789fea9ad117dc5a7", + "regex": "." + }, + { + "hash": "3bb8c44559c85d2701a7dffe59af81f5043b6f7c0d009b65efb83f9a9c64f294", + "regex": "." + }, + { + "hash": "90b5f3db3e9d0850c764ef09fde145b8a8eb6b956f4d43a425c7c424a0c5d55d", + "regex": "." + }, + { + "hash": "b7c778fdd47e7a6580f100a521047e4924b282aae739da4cbac539dc74fc6d57", + "regex": "." + }, + { + "hash": "0292182c931b7066786bc5b5d78a35a8559c1420a9b54c9af8a988ad66af48f0", + "regex": "." + }, + { + "hash": "1e29225ea3336baba9125e4257dd5b4c45b9c6bcd03c83bae97ec336780a94c7", + "regex": "." + }, + { + "hash": "8ab41372cdd8b22a11ef89e2a459565d027be930d134563ffd61f5306a5b9627", + "regex": "." + }, + { + "hash": "ed987ef57beadc2bee2bcf4fed70497d988aba203f74f4e93a6452dd55a8c1bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7880[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "368f52c924cf1079c8a34bd5c510f7a0b73b49135879beb49b4f0d3ce2062103", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+other[\\/\\\\]+restrictionIp(?:\\?|$)" + }, + { + "hash": "9a02062516f73f5a2da045cd3641f991e3cce57014f53008d30b1be5c987ff8a", + "regex": "." + }, + { + "hash": "cfdd5345e68c20a908e1ce80d0563ffae2aea3e3f4c8a04e84d8f88877e2a423", + "regex": "." + }, + { + "hash": "8c21d4d4c75136e8eee2b374e8a9a65679de1fed3747c90dd88b755ebe368912", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+spopo[\\/\\\\]+spo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c5a3b91049d2e8808ba326d3dcaf29d4123710c12193e15118ab36db65d5e7cd", + "regex": "(?i)^https?\\:\\/\\/wordpress\\-brown\\-zoo\\-serviceyqhyq157002\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6c34b091c23962ac5bb32cd49a37df6959c1546a909d6419092c1d7997d562b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7700[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "858c12bf451d8321c70c1d160dfeb6ec1b06b38e27e252ab2ed5fd2f2f84cc4b", + "regex": "." + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=142447074\\&task_auth\\=60dfebbbc83c035cc9a9e33d6320e91a$" + }, + { + "hash": "20e8ae246190d40d8eae0f8566481e6641dabb979a76728843ec16bed13c41e7", + "regex": "(?i)^https?\\:\\/\\/matadorbetx16xgiris\\.tumblr\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba5137a349f458f965f574404a665d89ef041f5f1c901681ad790441d862eb11", + "regex": "(?i)^https?\\:\\/\\/pub\\-39ee3dd82cce4deea3c382268f1e2e52\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "57bf5a522cb6bd9dcdfb9756f81f79e28735cf51214435fb05f7994082f34af2", + "regex": "." + }, + { + "hash": "42402997b8fa89b8070c5d4aeb4de463e30f152dc02fe35b65d4243cc3407e60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8c5d34eed83efb1de20ba803bc941dc962a7d4d2a3af778e5fe8ca36697b8e5f", + "regex": "." + }, + { + "hash": "1276f556d005696e4b9429a7b089719e32d022618dd1df14b574561e48bc3c0a", + "regex": "." + }, + { + "hash": "4a880d296dcb2f97e207e0d24cb0d5c929307faed4198cb422eb2eaba2581e44", + "regex": "(?i)^https?\\:\\/\\/a0704bfcb7d348d6f487e374adab92e6\\.serveo\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "8150b845c4cedb3255687be456563760337ffbd55a0224a05b1b17b898cedf1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "098d84edbb8d38c0defaed7d27d00419c47895e3e9207938c21eb6ac3cbdee14", + "regex": "." + }, + { + "hash": "71a4935c7f7aad366a18950cf556a999a8503af5a12366440dfd071d588f7fd6", + "regex": "(?i)^https?\\:\\/\\/www\\.v23p9c\\.vip\\:9077\\/?" + }, + { + "hash": "2b00f279322703474af97b2306d834a7b7d38592a49becbb087c63365980a259", + "regex": "." + }, + { + "hash": "1b5188c02cd41d7e94536248553458fb75367e6dd759feead7818ff81597bda2", + "regex": "." + }, + { + "hash": "65f3527ec513dfb0c25fa099a6dfc6126fa4d92f0eb1801de71ce00a249ec6b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9179[\\/\\\\]+register10245(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5fb6eeb6b53179fa08ec6472fc15707421f4c74f94f7be40d6e0e41871728bb2", + "regex": "(?i)^https?\\:\\/\\/pub\\-f86216656489476bb4db55a5bc21eedc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "42402997b8fa89b8070c5d4aeb4de463e30f152dc02fe35b65d4243cc3407e60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "cf8940f8cf74c119cf018354a53a77c12c07926d09497a88b042e390da504d49", + "regex": "." + }, + { + "hash": "8a46e26b8e2e21df81f4d6c1b02f5a2f1a12995c70c7de69a24bc976284f621d", + "regex": "." + }, + { + "hash": "93e38a6336d540a6dd81fb2f77b3535c2aaa911d07e321874ed994195b50a805", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{3}\\.breakingnewsindia\\.co\\.uk(?:\\:(?:80|443))?[\\/\\\\]+education_redirect_second[\\/\\\\]+8c5781c2\\-7b1e\\-4035\\-b1d7\\-990e269e5380\\,N" + }, + { + "hash": "6010ac4bbd13dffe2d44cfb78a5ca36b2d6fdc1a63892c9a8f2080082c62edf8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6dc27a9207cd3194bf8b95c5adbaeddddca0aa1d546ca72286739c82bf376058", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+education_redirect_second[\\/\\\\]+8c5781c2\\-7b1e\\-4035\\-b1d7\\-990e269e5380\\,N(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "23b39518a32f3becd76a649b29c1bd07570a3d48b28e28a1306c666f445adfca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+education_redirect_second[\\/\\\\]+8c5781c2\\-7b1e\\-4035\\-b1d7\\-990e269e5380\\,N(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e901b4810eedd94d412de66494a04e5f0238352d78f59ab290f69cb483f78957", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "6010ac4bbd13dffe2d44cfb78a5ca36b2d6fdc1a63892c9a8f2080082c62edf8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8386333a82b149ef33a58960e7c3787c95ed2478638ab5c0bd30135c21d5e987", + "regex": "(?i)^https?\\:\\/\\/attln3xp5\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7be661956c1307c73946352d48c95a357011c6fd49194c84b6887b9742565a11", + "regex": "." + }, + { + "hash": "21682d74ac1750ec8e35a12207d5956f7c28cb700c72c00a61ed20aaaafeb85f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register10245(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e6a099a045dc1967a67d699dce54ee93e3626de28c698a3a5d24d9b4db9952b8", + "regex": "(?i)^https?\\:\\/\\/rucipdn4y\\.3utilities\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "56fdb7e1033dcdd67906c77a3da8580ebcc81251bc48280bbae64aee2b7d0815", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ipfs[\\/\\\\]+QmUbyQf4UvngHih4WN4sS3HBn6eQdqVDT2HMP3Kzn6fdzF" + }, + { + "hash": "5cf9ef6f102b4f9b7b5441eb258878b7910ac06be47c77f44c8f056146d96486", + "regex": "(?i)^https?\\:\\/\\/gourantai\\-medcwev1tw\\.live\\-website\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "93e38a6336d540a6dd81fb2f77b3535c2aaa911d07e321874ed994195b50a805", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{5}\\.breakingnewsindia\\.co\\.uk(?:\\:(?:80|443))?[\\/\\\\]+education_redirect_second[\\/\\\\]+8c5781c2\\-7b1e\\-4035\\-b1d7\\-990e269e5380\\,N" + }, + { + "hash": "3adfd6e8653fdd420ca1f1ff01858fe71cde3a3d39823068bc104ada8693c1c3", + "regex": "." + }, + { + "hash": "dce1f56f1f72fe760afca24852a965b2b1d3591445f89e820ab6f0f5e51abaf1", + "regex": "." + }, + { + "hash": "18de2bdb2c8eeac97c148e5fce60d32290ecdafd5271f0028843c723248dca9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+paypal[\\/\\\\]+home" + }, + { + "hash": "65f34f8a25c074b99bf03773c1edbd2ca062c661cff44c2d757e4e3d3879ade8", + "regex": "." + }, + { + "hash": "e59641576c08da3ee70f6b85b55dd923d3c24ae71ea4a68b00ed2fcb373b47b4", + "regex": "(?i)^https?\\:\\/\\/himanshu17032002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f69f12c49b77899055d87def3c44ad76e5e88efdd685179650f43e040958b1dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+education_redirect_second[\\/\\\\]+8c5781c2\\-7b1e\\-4035\\-b1d7\\-990e269e5380\\,N(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "18de2bdb2c8eeac97c148e5fce60d32290ecdafd5271f0028843c723248dca9e", + "regex": "(?i)^https?\\:\\/\\/paypal\\.de\\.online\\.52\\-47\\-127\\-197\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "93e38a6336d540a6dd81fb2f77b3535c2aaa911d07e321874ed994195b50a805", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{4}\\.breakingnewsindia\\.co\\.uk(?:\\:(?:80|443))?[\\/\\\\]+education_redirect_second[\\/\\\\]+8c5781c2\\-7b1e\\-4035\\-b1d7\\-990e269e5380\\,N" + }, + { + "hash": "44786e2f762fd273ac8d572ef63c3266b4975c62c9968818639870d4a7b4e682", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.ASrGnDm2CMgQyC\\-2B\\-2FYqtXEkxc0pwai8TCYUcIEr0pw7K7gWwlurKp\\-2BQczTpoo0g9jpwAgf4BjoNvZZQv4vx1sN8QWqKdB\\-2BtqfOrlLC4wGHGQ\\-2Bg8rc05pUSrfofOwCgriNWC9hBxYTU5R11mtH1C3HzCY5O6f\\-2BiNUw4gAVSiLahVrI0kpY7\\-2FlH\\-2B\\-2FjX7y7GATnd\\-2FpH6o8z2RJMYD1Lb4awl5Yb1cITgs17vL9\\-2BV5GN\\-2Fmv7aUNLGVQ\\-2B8iR14dx5gNgvnxk7xMGdZm5CERnpE7r83n5VW\\-2BXToS\\-2FSy\\-2BGOUd0ZOGA\\-2BIpKDP7VcR50BrlZ2yktLr\\-2B9lXRQIy3KzvPqJXbfcM0p8R5jd0hRJRKgPfepsFZI01t\\-2BSWEsEMw3W2xbV\\-2BGTdJV9CxqfuhORQfNb6Wft\\-2BLQGBKyUN\\-2BFilLu0TBJ1tpPCT0lE9\\-2F4ZAQabn6PLS93brxcEFBQJERHZ95Qmp2Rt02RYYMqxtSFV4Y\\-2BglnWLWkVdsmEWKPF8eH8hwRoJtfMc1fz5g1V4\\-2FjfJuIDS\\-2FnnEt5DRXT0D0R3cMcD6lU7HXnvdhxaQsC\\-2Fb3X0k7OwCbwBsP8YzSo_n46PX78ahfYSM5J9NGCOYQvznmKPfdBr\\-2FANNhyZi2IY6CXIToedj1RtuPnrd050qBgWVZjJZgiatyCNNK1pLAmmH1skCsYXyHCnw4oyW3VL\\-2FJj\\-2FH1XYCuJ54iFCpUBeKq6lGTmu7iBYbzH8BqtfY53JX7afGhZxvFWVtdL\\-2BEmiZ2nxR\\-2FCCMLpYU0335F1ChFgsfCWXYXDs2gA8ML8cjS4g\\-3D\\-3D$" + }, + { + "hash": "c2e8eafb983f516523104ec17d46006ed27b6d4e942c39320f9448bcc71cffc8", + "regex": "(?i)^https?\\:\\/\\/6zcmxr\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "3c3985296297aecb30d418a8a171ffeb42630f803cc215d85b6978813d6e76b2", + "regex": "(?i)^https?\\:\\/\\/pub\\-c12a77b136514571bc01d99435270e79\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a264f57ec5b153fe673fc7bd595f0748fd3b7f5e714b7d80d076a607585f8cac", + "regex": "." + }, + { + "hash": "fdf484535448a2fa35e3cf0416383cfd034894922e67244049b0dfc02464e5a8", + "regex": "." + }, + { + "hash": "97556e1b7a327d5541895b1de7b8f296f3231a842415e2c65dbfef8ac3e11875", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+france(?:\\?|$)" + }, + { + "hash": "c6b7800ae11e7cd01fb5d3b7b391d045d74191f6e6a2d8584a342ff2dc644d9d", + "regex": "." + }, + { + "hash": "cb40a84fb1d10524569b4d325776b552fea45978d14a42bd99edab6c2e519c80", + "regex": "(?i)^https?\\:\\/\\/www\\.456fdb\\.com\\:9153\\/?" + }, + { + "hash": "71ab2e0957f48c518e0e5d8f6d3c615f5fe564852a6bc30dced030714797e0c4", + "regex": "(?i)^https?\\:\\/\\/10tybztw\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "d3d9a09590f55d851a277aa83a5bd9d0089a5f16a08f78c6a29e545d81b9b2ac", + "regex": "." + }, + { + "hash": "94466ad4f9c2336cda20de4cccfe523d9b6edb1939645c2f4a9063f5fafdb184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6003[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=142472612\\&task_auth\\=53cbf9080cdf43a404e24d724355e282$" + }, + { + "hash": "ea55856865c2ffd419668bbca3764e7390f8a09eb638267bb267030bdc5bc5b0", + "regex": "(?i)^https?\\:\\/\\/jnasoiqmfeverhuadhbpeth\\.com\\%E2\\%88\\%95jnasoiqmfeverhuadhbpeth\\%E2\\%88\\%95jnasoiqmfeverhuadhbpeth\\%E2\\%88\\%95jnasoiqmfeverhuadhbpeth\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aea5b9e1c7881089a0c6d173858e3336b9b7d8b4275db066490d7fb535c91af7", + "regex": "." + }, + { + "hash": "8aa04b056ebc42c901016aaf5f407c96bc2f2d7d9c66ef345a2a8abe9118187a", + "regex": "." + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=142472612\\&task_auth\\=53cbf9080cdf43a404e24d724355e282\\&id\\=142472612\\&ignore_redirect\\=1\\&key\\=d80e92a65ba392abe011fc98c7daa38d\\&url\\=aHR0cHM6Ly93d3cud2Fsb3dwcmljZS5zaG9wP3V0bV9zb3VyY2U9ZXZlbnRfbmV3c2xldHRlciZ1dG1fbWVkaXVtPWNhcnRzX3JlY292ZXJ5XzMmdXRtX21vZGU9c2tpcF9pZl9leGlzdHMmdGFza19pZD0xNDI0NzI2MTImdGFza19hdXRoPTUzY2JmOTA4MGNkZjQzYTQwNGUyNGQ3MjQzNTVlMjgy$" + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=142471699\\&task_auth\\=ff322f2b3a31ae42ba99dc73cd46bf01$" + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=142471699\\&task_auth\\=ff322f2b3a31ae42ba99dc73cd46bf01\\&id\\=142471699\\&ignore_redirect\\=1\\&key\\=4f0492f6275d4dea6c153b488a0dbd7c\\&url\\=aHR0cHM6Ly93d3cud2Fsb3dwcmljZS5zaG9wP3V0bV9zb3VyY2U9ZXZlbnRfbmV3c2xldHRlciZ1dG1fbWVkaXVtPWNhcnRzX3JlY292ZXJ5XzMmdXRtX21vZGU9c2tpcF9pZl9leGlzdHMmdGFza19pZD0xNDI0NzE2OTkmdGFza19hdXRoPWZmMzIyZjJiM2EzMWFlNDJiYTk5ZGM3M2NkNDZiZjAx$" + }, + { + "hash": "7aea052bc76122eed29fa9853cc64662c6ce4407a2f024de4da1782896cb6c5d", + "regex": "." + }, + { + "hash": "56e5fa7a8f673d25a529da5dfde5df941e89cbd7d0612f2d63af8146ff6c3406", + "regex": "(?i)^https?\\:\\/\\/www\\.pywbja\\.vip\\:9123\\/?" + }, + { + "hash": "7fe988cd5187d919e355b7a60d93810d2fb16e06c0dfb31a38e2585554991116", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a4115ce85323087f7e4cd3d08818f63ff5fcdc83a84057bb13a12a09782708cd", + "regex": "." + }, + { + "hash": "44786e2f762fd273ac8d572ef63c3266b4975c62c9968818639870d4a7b4e682", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.wOFMo8PfuKzZHNBJBOC1s6TjFyzZUsUvbLBV9e5\\-2BfqjfYXh9OuGclGVGDJHvpVrTzpHX5lXDFRUyeWc3KYTNjqDDWipHRCm9ef79\\-2FINtoIg\\-3DI\\-Q0_Bjk0xEDSmZ9pkp6HVByc9KuKIskthI8\\-2FuWpqoMSRCuTguVkYUJ\\-2FW0cZBl7H\\-2BrbPB6AAJk5Yhm8nF7WPo6qvk9AVWj97JWWUoqRqUIF64ElWfM4f41a72kWprq\\-2FpMWDfklgqC6\\-2FAXIvxzuCMeym\\-2F4sBEaZI\\-2Fgg4a0AgDW6\\-2FLleW8FN6v4B7f4q0SmSfFmtIsVTpeBvfL4l1sdMrL\\-2FDGu\\-2F4A\\-3D\\-3D\\&source\\=gmail\\&ust\\=REDACTED\\-ACCOUNT\\&usg\\=AOvVaw2WGfIGNfm1\\-zfG78245gSG$" + }, + { + "hash": "44786e2f762fd273ac8d572ef63c3266b4975c62c9968818639870d4a7b4e682", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.ASrGnDm2CMgQyC\\-2B\\-2FYqtXEkxc0pwai8TCYUcIEr0pw7K7gWwlurKp\\-2BQczTpoo0g9jpwAgf4BjoNvZZQv4vx1sN8QWqKdB\\-2BtqfOrlLC4wGHGQ\\-2Bg8rc05pUSrfofOwCgriNWC9hBxYTU5R11mtH1C3HzCY5O6f\\-2BiNUw4gAVSiLahVrI0kpY7\\-2FlH\\-2B\\-2FjX7y7GATnd\\-2FpH6o8z2RJMYD1Lb4awl5Yb1cITgs17vL9\\-2BV5GN\\-2Fmv7aUNLGVQ\\-2B8iR14dx5gNgvnxk7xMGdZm5CERnpE7r83n5VW\\-2BXToS\\-2FSy\\-2BGOUd0ZOGA\\-2BIpKDP7VcR50BrlZ2yktLr\\-2B9lXRQIy3KzvPqJXbfcM0p8R5jd0hRJRKgPfepsFZI01t\\-2BSWEsEMw3W2xbV\\-2BGTdJV9CxqfuhORQfNb6Wft\\-2BLQGBKyUN\\-2BFilLu0TBJ1tpPCT0lE9\\-2F4ZAQabn6PLS93brxcEFBQJERHZ95Qmp2Rt02RYYMqxtSFV4Y\\-2BglnWLWkVdsmEWKPF8eH8hwRoJtfMc1fz5g1V4\\-2FjfJuIDS\\-2FnnEt5DRXT0D0R3cMcD6lU7HXnvdhxaQsC\\-2Fb3X0k7OwCbwBsP8So0y_bD07iXtzIFlOS\\-2FuG1eOe5nikHrWa5eiJq1wCybn4jwyuq5UVU3qUOZnqGds2crOkuke7\\-2B5xEogc0Bi5ug7ZM6zrsFo1jt0h2FEw4a4UM2rJ7LD\\-2B31JUm3MJTDksCBhLjWcecXGVOPbJei9XKQLpFsoWX\\-2BtAszdLZIlhiq8hKC9TH3KY1u5LAYKhje8oywBVccz9RaCF8uybVLHDbQPn6tw\\-3D\\-3D$" + }, + { + "hash": "c60af7d5c700b93183815e8ed75ef9158fc26cd535774275f944c7814d1b42ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8be7bb6d414b613272aef3aea32394d647b2cf7089108182a6181da2184419b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fs3\\.us\\-east\\-1\\.amazonaws\\.com\\%2Fnonvillagerbv\\%2Foffers\\-topfstaedt\\.html\\%3Ftoken\\=oqxkbydCLLypRhA8J6ya6umW1hZstl4GJi6dbyfkj[\\/\\\\]+1[\\/\\\\]+01000191a92c97f2\\-80d162ad\\-86b9\\-43ef\\-b959\\-db804518d3aa\\-000000[\\/\\\\]+_Bb6tH\\-bvhL2SJydmDAYkMJ5aCI\\=389(?:\\?|$)" + }, + { + "hash": "b3e8610eba8a090b03284f305458e71f2e7ea86ab24f5e01e14a1867ea584ad7", + "regex": "(?i)^https?\\:\\/\\/pub\\-62e6b424a730453c96f0a87f6eade9df\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8be7bb6d414b613272aef3aea32394d647b2cf7089108182a6181da2184419b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fs3\\.us\\-east\\-1\\.amazonaws\\.com\\%2Ftoadishness\\%2Foffers\\-topfstaedt\\.html\\%3Ftoken\\=oqxkbymNIS0oPYGkaeBMd4fLrM1HRpufNdbyfkj[\\/\\\\]+1[\\/\\\\]+01000191a87f076e\\-2d88b404\\-e7ee\\-42fd\\-9c31\\-86fe1f0f4da2\\-000000[\\/\\\\]+WpqR7HrlCcufb8935FwTqrwkY8U\\=389(?:\\?|$)" + }, + { + "hash": "8be7bb6d414b613272aef3aea32394d647b2cf7089108182a6181da2184419b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fs3\\.us\\-east\\-1\\.amazonaws\\.com\\%2Ftheomanticbv\\%2Fsichere\\-weiterleitung\\.html\\%3Ftoken\\=oqxkbyh6VA40zbtFeEX1iDGV9yPcdbyfkj[\\/\\\\]+1[\\/\\\\]+01000191a8fa7b36\\-055eb7b2\\-1a1e\\-4f13\\-8fc7\\-acc50e97d3f8\\-000000[\\/\\\\]+Zi6XwQbPI3KwRYyQc7oCA\\-5f5b8\\=389(?:\\?|$)" + }, + { + "hash": "6d0b4408dd23cb7f0e9ea56ee3d248ac305cc982ea4403b6aeb5e2aeb375b284", + "regex": "." + }, + { + "hash": "7fe988cd5187d919e355b7a60d93810d2fb16e06c0dfb31a38e2585554991116", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8be7bb6d414b613272aef3aea32394d647b2cf7089108182a6181da2184419b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fs3\\.us\\-east\\-1\\.amazonaws\\.com\\%2Ftrachelocyllosisbv\\%2Foffers\\-topfstaedt\\.html\\%3Ftoken\\=oqxkby5Q6huaW6zn8gxPbE27a9ndbyfkj[\\/\\\\]+1[\\/\\\\]+01000191a8f4da01\\-d4a32204\\-9606\\-4a6b\\-a243\\-96e066a3e374\\-000000[\\/\\\\]+SbaMc8TkrDY6t\\-og4v9jvB7lLL8\\=389(?:\\?|$)" + }, + { + "hash": "0cb24e7d817c5d569c8d34ba807197a23222c2820dab5b9751fa0073700343f9", + "regex": "." + }, + { + "hash": "c60af7d5c700b93183815e8ed75ef9158fc26cd535774275f944c7814d1b42ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "abb71c3e2c1bb16c668d8e702fbec1c25d13a2eaab1edcda97350aa3bf37e6c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9978[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "abb71c3e2c1bb16c668d8e702fbec1c25d13a2eaab1edcda97350aa3bf37e6c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9978[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "25aac1226edf87e065d274259e08c9f527a5118b3c51a9fc6976174276773df2", + "regex": "." + }, + { + "hash": "97556e1b7a327d5541895b1de7b8f296f3231a842415e2c65dbfef8ac3e11875", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+france(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9f2f46447c4ede808f8a1a547b36e68c44cb31e248f58bd29f82e838009b4dc", + "regex": "(?i)^https?\\:\\/\\/pub\\-6c3e8a7ef6f0422084bb7969af132ce4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "24108904d0f00f1374d46b7a3b4f44c95e3404ed95eeffba245ad0267ef087a2", + "regex": "(?i)^https?\\:\\/\\/fonerenew980\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7fe988cd5187d919e355b7a60d93810d2fb16e06c0dfb31a38e2585554991116", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "64ef2fcc7f2271429bf8cc9d13310ed8c999edad438bce3c8a85dfb1cbed5205", + "regex": "." + }, + { + "hash": "0a16624c5a34452c502cb9b6934980794b22be6e6777ec209b344691b7046986", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+foxc[\\/\\\\]+smtp\\-account\\-confirmation" + }, + { + "hash": "8be7bb6d414b613272aef3aea32394d647b2cf7089108182a6181da2184419b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fs3\\.us\\-east\\-1\\.amazonaws\\.com\\%2Frevelationalbv\\%2Fsichere\\-weiterleitung\\.html\\%3Ftoken\\=oqxkbyL6r0PlcLeXEe76YDbg9UUOajIrvmvdbyfkj[\\/\\\\]+1[\\/\\\\]+01000191a936c6ec\\-031b7394\\-6202\\-4169\\-918d\\-3923ac1031a6\\-000000[\\/\\\\]+Hun0m6CMo1Blbxqr4r_8F9rQUtc\\=389(?:\\?|$)" + }, + { + "hash": "2de6736416da70e6f48083773f8d1b27010cf13c475703ce583bed856a3655bb", + "regex": "." + }, + { + "hash": "d5fbd693d243e8575758d485a7e19318639660701e6e05ceec305338caea8b8c", + "regex": "." + }, + { + "hash": "404270b455a2415ce99cab56d7cad3cc0308a59fba6d5cca6808b582170a95b5", + "regex": "." + }, + { + "hash": "44786e2f762fd273ac8d572ef63c3266b4975c62c9968818639870d4a7b4e682", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.ASrGnDm2CMgQyC\\-2B\\-2FYqtXEkxc0pwai8TCYUcIEr0pw7K7gWwlurKp\\-2BQczTpoo0g9jpwAgf4BjoNvZZQv4vx1sN8QWqKdB\\-2BtqfOrlLC4wGHGQ\\-2Bg8rc05pUSrfofOwCgriNWC9hBxYTU5R11mtH1C3HzCY5O6f\\-2BiNUw4gAVSiLahVrI0kpY7\\-2FlH\\-2B\\-2FjX7y7GATnd\\-2FpH6o8z2RJMYD1Lb4awl5Yb1cITgs17vL9\\-2BV5GN\\-2Fmv7aUNLGVQ\\-2B8iR14dx5gNgvnxk7xMGdZm5CERnpE7r83n5VW\\-2BXToS\\-2FSy\\-2BGOUd0ZOGA\\-2BIpKDP7VcR50BrlZ2yktLr\\-2B9lXRQIy3KzvPqJXbfcM0p8R5jd0hRJRKgPfepsFZI01t\\-2BSWEsEMw3W2xbV\\-2BGTdJV9CxqfuhORQfNb6Wft\\-2BLQGBKyUN\\-2BFilLu0TBJ1tpPCT0lE9\\-2F4ZAQabn6PLS93brxcEFBQJERHZ95Qmp2Rt02RYYMqxtSFV4Y\\-2BglnWLWkVdsmEWKPF8eH8hwRoJtfMc1fz5g1V4\\-2FjfJuIDS\\-2FnnEt5DRXT0D0R3cMcD6lU7HXnvdhxaQsC\\-2Fb3X0k7OwCbwBsP8abm5_b\\-2BTvzGoCot69w5CrUH\\-2FS1eTil69cKTi3NnVEShAw7\\-2BZFA2DUf3yjWwHOKpDT\\-2FWsheUrsveL6bZcrWZZhzcT6kzNq4pj42P\\-2FqSbDPfBQB9HM6DspA9CXZHogrOeKOZFD1leQCSi25WoYR2kd0qFN0l9OOhOIf6IvRj8AcfE\\-2FIvN3LuA235nPL15sgyDs2kvn2a82huRq8V4CAOvBzM3YZlQ\\-3D\\-3D$" + }, + { + "hash": "c60af7d5c700b93183815e8ed75ef9158fc26cd535774275f944c7814d1b42ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2d37465998bebd5de4ab2a9863df56316c3aeb9e54bf084b10f585992660e3e9", + "regex": "." + }, + { + "hash": "0f6dc6603597551047af94b5b236b7837b6a7aadbba421ace951b62c149f7754", + "regex": "." + }, + { + "hash": "adfdb53710feb644976ef1c6a9733b4ad432d1084c00dddf468a31098441c363", + "regex": "." + }, + { + "hash": "c76eb2ffc9d43c9690a15cead1205b222e6142043bd1e99ec0371399f4f13573", + "regex": "." + }, + { + "hash": "5e749909f792d2f348a4461570ea355f5f3fd553fed532edec8ce996f63b0253", + "regex": "." + }, + { + "hash": "a61450bedc13440b491c211787773ea5f6dcb08eb7e398df3e4733c2c893987a", + "regex": "." + }, + { + "hash": "eee710213c26c2e4deee5e6528668fc3c18d1c7fe954ae9002c01f2206024372", + "regex": "." + }, + { + "hash": "7e9eba9f5f65d59bb3067cef7c51697553b0c6aad1c247723278b711ba44c0d8", + "regex": "." + }, + { + "hash": "b736aaadb28eb5f16147a5ea28ebea1adeca861a62108d7931ab0c9f08b541a6", + "regex": "." + }, + { + "hash": "8ea57ca34f82cef85a24c0da70afc0ed7fb5bd25a0a4bdfd0adfd25f466e7e8a", + "regex": "." + }, + { + "hash": "9f6d7d5d9623b737bf216475148591e323092c9db00d80f5f0b9542cbb2f8816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.z\\-2FNBzEiv\\-2Fp2\\-2BteyPRRyLuvkccRuLPWSZGhiqBg0nJ\\-2BTdEd9OwQmU9\\-2FSyuFrn3BKzuTLeXNM8ktH\\-2FVnX40EaRcyDXzSyK21doJmRPJX13KNLpdJM9p\\-2FXpQVrJ0yuQ59dqzc6qq7quyhCkgZ4HhHC\\-2FfNCebsqT6\\-2B5qE9CiQ0phcPaInqoi9VRogj009NEBc7\\-2BJJN\\-2Bh4ti1wXrk9roh22JBIw\\-3D\\-3D1qfH_E1NvJiJgqVldOLhGXSUqNoylD\\-2BuVivA0cGGVVnatiEdebUqkSWapI7WhxbFkWmu\\-2B\\-2FhUjEjo7\\-2FiLYEMn6I5UuK2\\-2FeMDqh\\-2FGgapw4SZ6waB7I2wlkLxr87b\\-2FVnHTDql\\-2BF2iRnQ3DaSh\\-2Bd9IhKDiUet4jeCBFpSAmjdTspRk6VvcQaR9dPr1x1oDorSgP3AuFtFx6GyAygDTHYI5RKe1HuibwXSOl9aQ36ZmxeyuvWQZbFh29dXRS3w73NQP6\\-2FOQyP3N9TQ19malEELY94KJpQeM\\-2BefDE\\-2BvhcC2XU66ObeEVAjJB3dWlSf2XPexBxBgFnQn5TvY1tr83TrNM0k9q9mpd7btqpMIUndNQeb\\-2BeY\\-2BKqHQB2txyi\\-2BPouSJepqS7ywl0K2pAN6hiOQmfkksvM7YmDjvZFmGWkwKe2UGrk9oifzwokdD\\-2BvYTKJSiq5615kjql5JbWHVBWvCY6ukJRPy4Z7XZXoStGpuvlU\\-2F8FMIWfl4ojBAxGXmC9r8cBqBpNlAtc" + }, + { + "hash": "df555bad8e7557f306a0b960b0d31b324eb8c1bc69d91f0c371b76fb37206bdb", + "regex": "." + }, + { + "hash": "40c88a3de17c5f669e94cdce967a5594f0222b4a4289d40a086d81618e73bcec", + "regex": "." + }, + { + "hash": "9038a00700cc21dce31a945d14567ad1b5dec0110046a4937b74bdcbdb779352", + "regex": "(?i)^https?\\:\\/\\/pub\\-a2a5bd7a7e8b42c4a8f271f266c3e6bb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+dbUefcFoXoRrCveNSp8zxPfZIHzV0J76BSe1ychN6qlvpVUKqrj3hwcW2ZyP7xtv9lzAJdkZFu0[\\/\\\\]+vWYYZ6bTkVkvEOXYpJS4dv5o0L68Ig77M9owkMyUttFLW5fXS7MP60IfNd7OKtVIcsdqXaExK54jtfU3[\\/\\\\]+0ku7NMa7tw4wp6TsgY6NYptG2qois34SSiW7AO5SGdRUUNFhUyywgl5IJrnrD0DSwVAbA6\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+i0A1XJJhbbaui8tFmfSeorXtlhPHLv7FJahjTShX0Y8qPkXCLf5HQyX[\\/\\\\]+mb1eqphPFO75deqcOBT5lVRWlAzKFs0FZr4DcEIcHgE0IKxgebGSazJ8QQfPFTvxvnj[\\/\\\\]+1ULp2AiyAi0BRN5c3ikvSkUphXkuquwLRM0AmPDEEDwNIg197Q[\\/\\\\]*\\?qs\\=YmVuaXRvLnB1Z2xpYUBjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "2b000e9f2df2de80f1852281327d7001bc1cf70d4f930a7735446ea7a193951a", + "regex": "." + }, + { + "hash": "974ee7fb3c80c73653980a31936dbb702e8f98006d7ed5c9b2a334cb47cc7c45", + "regex": "." + }, + { + "hash": "0349f1ddf37ded3e257f3d8416f3f9d3e2f1815383723888f2a55c155b3ffd0d", + "regex": "." + }, + { + "hash": "5787409ec3db943bc3361fb3132597ac9d043f03aba9d0eb772c76c33355d0c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ec21\\.com" + }, + { + "hash": "03f25229ab8f354c229af2a0e1ec27ed62895df386f70467ea3d6bc87d193de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9168[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b1ae3e4e1fb40d0ceb20a3ef0ae34ea80ef5a6951f9c15357fa30c6ff4610b8", + "regex": "." + }, + { + "hash": "a178fbca0d3af49b925d93c0a0cf4bde5390ccd5c98a3dca03b10620c74f4d55", + "regex": "." + }, + { + "hash": "b98ab844c71fd99b50bb8107d69582c7513a1b5acc19325979408f835925d8dd", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+fqn6hAeoppcc6lYSbvsoly27NAkClCZh6YcHajemGXm908uXK9x3EvR7ZHWaDG0jWDwswL3BlpR[\\/\\\\]+W9KguPevyRiqZTBKC36uHSAmHwVYIFMJbb8w7kvDXZL1MpA5Zf8hOtucbvr7GO8vf4p1burpJS7nlmeX[\\/\\\\]+fDYPcPlVoaOos5ATUUT0WgPjVbfWugyO6xJzdmOXvHp6I1bxRn4IX28gds9bKmrEjEO36P\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+gb7gRYwGkbhlQq9kH0HN0uqSkwfPUeirdhDMlQD0oqHZop7ur5QzaO7[\\/\\\\]+mbME2Z63vaMOBP5GEEM2DZJDPRotkKIjpfRnzgkIGF3NgwgZlNgpkCsaz36hYBcwKt9[\\/\\\\]+uvrsf0BxLriEmszwQCocIowySdqWWte4nFgL6bIuhNLixhE5Pm[\\/\\\\]*\\?qs\\=bWFydGluYS5sdWNlbnRpbmlAY29kaW4uaXQ\\=$" + }, + { + "hash": "fb67ca308b71d071f3d5637077c12b1ea5e686833124210c0c4f8bdff5d5c443", + "regex": "." + }, + { + "hash": "f25450f2611b5ffa3d0dc5f281b22c429775688cc467793496198cf2cc5677b1", + "regex": "." + }, + { + "hash": "9ac6437d5b43dc4fc80b4a8c4ed0f5424d81492a6e3a83345c53a8f02d74363e", + "regex": "." + }, + { + "hash": "92ff542cfb47353040bf05a28ac2f3ef2b9c3856d5cd817a82f91d9cabcef255", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{3}\\.nvinsi\\.com(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "b9d1f3750ed536bdff30f503df862fc2d9d25c95637d180cabc7f8589de2a5f7", + "regex": "." + }, + { + "hash": "3c08c0739d35daed7023e8fa3d325edd808f3bee5f48811364fdaefe42aac0d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "aa44c88f54f36e01974805617e4583995ddc74029c44d50ca14f6a714b211289", + "regex": "." + }, + { + "hash": "b0f1e1ac7834e12254c821ffab599d8c7919551ff7aef1a47cfa2d7d3abf432e", + "regex": "." + }, + { + "hash": "7c4e958bcc6501c8834b14ad74fa27e946321f09d39be1a9e687373f01ca49e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "100106db5be471372b4b74ade0574729a3f05618436c1658d549abc0d920d1f4", + "regex": "." + }, + { + "hash": "b65d448685c47defa9a552dc2da0d065d58764ddd3ecfd57c88294ece2edecf1", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+fqn6hAeoppcc6lYSbvsoly27NAkClCZh6YcHajemGXm908uXK9x3EvR7ZHWaDG0jWDwswL3BlpR[\\/\\\\]+W9KguPevyRiqZTBKC36uHSAmHwVYIFMJbb8w7kvDXZL1MpA5Zf8hOtucbvr7GO8vf4p1burpJS7nlmeX[\\/\\\\]+fDYPcPlVoaOos5ATUUT0WgPjVbfWugyO6xJzdmOXvHp6I1bxRn4IX28gds9bKmrEjEO36P\\?r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+gb7gRYwGkbhlQq9kH0HN0uqSkwfPUeirdhDMlQD0oqHZop7ur5QzaO7[\\/\\\\]+mbME2Z63vaMOBP5GEEM2DZJDPRotkKIjpfRnzgkIGF3NgwgZlNgpkCsaz36hYBcwKt9[\\/\\\\]+uvrsf0BxLriEmszwQCocIowySdqWWte4nFgL6bIuhNLixhE5Pm[\\/\\\\]*\\?qs\\=bWFydGluYS5sdWNlbnRpbmlAY29kaW4uaXQ\\=$" + }, + { + "hash": "4761dcea09fc38fa4d5ce6dbaec80685c01be1e468cc57e8d39371d2a6cd67c0", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+jCzPPUJmFIfQskw7il7bU5yM9IqKXCFKHqXHd1qARjEaLD2OEL8HOQv96cmz8DAz3y7BjgeFU3f[\\/\\\\]+gR9i5anZiksJf9FVzjj0KKYYVTVg2vCmGMeoUXLwv5kTaiegY1SqNxecdeIoAySuIyVmQTnAJQrpyukq[\\/\\\\]+IHraZ4jmCkMY9vXrDBu75WjRquWbR9BpSNdmelhgJ94Xj62gPBLyMgMS8jaing3DYYRPZW\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+L8bmFkyUzvXZ64nGGei30Ey51iyUg27vHG2TnHKJTb6zuqa7DxwuvqW[\\/\\\\]+mbeFQYuvzid0l1PBlOPDCVCycgOdiquuNhPW2FQlEKwoRh3XaEjIrREcVFAQlv1n1Eu[\\/\\\\]+GyVjZEHbMBguCZSOjzbyuLYamA7MtVyvm44UdOF6651g7MpoSC[\\/\\\\]*\\?qs\\=Z2lhbm1hcmNvLnRpc29uZUBjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+3avIf4fRnMJp6GrptPfB3MVjPWnzCQWcvwBMS5TAovPyT3eWrm1jvQyuSjxrDOrAdyzMVCCORQb[\\/\\\\]+NEUoptYGlLdkwG90X7qv4ZsviI8ICaIl4DhdDdb6fIVpeLRRV6fvAeF71OW0y7lVZTgO4nCTVlzQSWMa[\\/\\\\]+gZIpaMI0d4KtLGW0XRSeEepqsXVCUHQTCXE1sqwogjZUysroDahgBRxXUP98d0na8x9JWM\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+LTA1rREPnXIqmXVJBVRM7DJEuWnbwdxNRQTgtHH9xh753TazkLehyaX[\\/\\\\]+mbFZIri3OsEdPBfueSjMNAlQwHtOW7hZ2y2gM9AiDMCQ1VmLUn3BnCPL97YtyJVWRaw[\\/\\\\]+QzBwqiJ8qdwzPrpoJsyYRWGPMHMUzH8ZYILlICCw2yWCBjzVaa[\\/\\\\]*\\?qs\\=bWFzc2ltaWxpYW5vLmdpdXN0b0Bjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+zQqmr4E59DCFIFcBiExTOUYlbBOKC5erQsbu2zR8mdTT4CYXpj7rSKXWdmvIlPZFsieYerci3bf[\\/\\\\]+JwMf50uiMiTtsJDGQolGzEc7Ddy2dvTiWRJPxJjW9Ru9LHPaRd6iBd8RL5u1kiyWXQ4Fx2CV7TpPfo64[\\/\\\\]+KivgfpUCMXc8ZA4WJU51Z95lUnPh7rTUWh6AOCLLOE7K5ogf19FAHlbGbaFLJHkmmdJhDt\\?r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+wlBALbKAf9SsQJUlabnjt2woN3hXEVworp4e3kVMVBmdaQox72MSAoy[\\/\\\\]+mbCDamvPTZHZVxf8P2Gg734Eg9QOUI63cLjdZdFFoXJTanu6GaJwpUUY5sG8jgMZ37g[\\/\\\\]+OHYLxtGKMpbbeZd9fXp41Taf8MUiJ8L7u94rSIhKymlkAmrQKs[\\/\\\\]*\\?qs\\=d2VibWFzdGVyQGNvZGluLml0$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+zQqmr4E59DCFIFcBiExTOUYlbBOKC5erQsbu2zR8mdTT4CYXpj7rSKXWdmvIlPZFsieYerci3bf[\\/\\\\]+JwMf50uiMiTtsJDGQolGzEc7Ddy2dvTiWRJPxJjW9Ru9LHPaRd6iBd8RL5u1kiyWXQ4Fx2CV7TpPfo64[\\/\\\\]+KivgfpUCMXc8ZA4WJU51Z95lUnPh7rTUWh6AOCLLOE7K5ogf19FAHlbGbaFLJHkmmdJhDt\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+wlBALbKAf9SsQJUlabnjt2woN3hXEVworp4e3kVMVBmdaQox72MSAoy[\\/\\\\]+mbCDamvPTZHZVxf8P2Gg734Eg9QOUI63cLjdZdFFoXJTanu6GaJwpUUY5sG8jgMZ37g[\\/\\\\]+OHYLxtGKMpbbeZd9fXp41Taf8MUiJ8L7u94rSIhKymlkAmrQKs[\\/\\\\]*\\?qs\\=d2VibWFzdGVyQGNvZGluLml0$" + }, + { + "hash": "705ea6fc37b135dd3b466927680d2488fae60ad0e563325899a4e202de1a2d1f", + "regex": "." + }, + { + "hash": "9f6d7d5d9623b737bf216475148591e323092c9db00d80f5f0b9542cbb2f8816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.z\\-2FNBzEiv\\-2Fp2\\-2BteyPRRyLukjko4z1SalKDYa7rywXAHgNN3sISctm0R16ptex\\-2B7QKbblfTKoEZg\\-2FkarwxuqNVu3eKlU99sXjg\\-2F\\-2Boqc0gOsU1m9DDmwhGVYkYka9HDE0krKzsaBshTJIYb5MeHzO0Mj3le0WiwOZDU4Td\\-2B8OsLDCXIghZmqSU\\-2Bt\\-2FbdRvoXK6M1Wz\\-2Fwha00hZDeQv4sAZPZuA\\-3D\\-3DkI4D_1a4jvJKXsjSPFL7ykG\\-2FgSSHcE4xZPTX4gckRkUc\\-2BOqH8mu7frerV9VsmCSwlclwgL92N7cm02mpQebKkqIDtkNSWa\\-2FipNHoO2dB43oAfFXgi8VCElzKlVwKspuPpOGQwklLJul4MbshXJuNzbQ\\-2FTs2UzrQbCG6StFoeXX5aHMApluLfSeFp\\-2FZkyL5pZAFBoKMeXD\\-2Bz8fe\\-2BgMTvlZ8xg8ydPXB2ft6W6MGPefdYx3PB\\-2F\\-2BSEv5lRhWtVZ3Q0tOhLkNCcQ7YgvuVboBu54RlNN2a99TTd9UZR\\-2FIk5cImWILuvgXzO36L8VeQQ9z1qKdzcG7YSGSEcEnbcTaXmIPtTp7tYPdIAZ1i2UCAFk\\-2BBVHh9Yy77ZUXCH0BPQ\\-2B2CIJw9WY0CWvXmLCSeBsgexaC1NhPiemedT2IuFTbphey6\\-2Bm9zDBr5zr4diHmk97lL7o0\\-2FIPlPSMWCcE3jlHTXcO\\-2FIJruFi2o\\-2Fi5f8Su\\-2BJ1JDKzGJtVc3nXi0\\-2FV2KoKOFIkAWiVkM" + }, + { + "hash": "13ba73a22486e1d59a1c56b02dbe9e5c7cd2ac99712e2bc02c7c0a2375fb57e7", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+EZ5OilqaktNibvzqZKZxt2Bgs2xV1dgGxPEQzUoslJAwpTYicPv90sKHBEvagf4UecVkVWw4osP[\\/\\\\]+zBdbFL85M2Qd8WSQw3MDpAngUVbA7xW71wcqN7x9URy3Bp0yre501099CrgqshaCwSlBhbriJujfuHm2[\\/\\\\]+5Q6lYK1wrC2V4utbzUFz6Br6AFVExR2EY6cpUTqqwSq7kSO24fBGRStrCU2qSbWkgdQAG1\\?r\\=https\\:[\\/\\\\]+mail\\-Infcom\\-login\\.poochbuch\\.com[\\/\\\\]+iCQOAhRM1Yo0mnPR4DGwBUXvw8JwUWPXcxrFw3HTsdXajmDJINwA0Iz[\\/\\\\]+mbM6knTAt9EWBLj0kFdtZdABJXNhCPf8uWaYC3G1Ro7SRdby7wn5gUcK5MUNTMC0oPK[\\/\\\\]+yI3lHkFb35nygdid75ELcOby7uXlCfTZ1sqPT3nyzqEwOyabaC[\\/\\\\]*\\?qs\\=bWFya2V0aW5nQGluZmNvbS5pdA\\=\\=$" + }, + { + "hash": "7b5d55e9e88659d9fac8e3c0ec531f8044f48f250a0ff50523a2f1d2e0fbd205", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+ofGEdsfVmZPVltmoWp9LmPoRIEP86qTK4TdST9CSMAKmxszKIWd9Pn0xN3FTZ2qvAupSHuIGWoY[\\/\\\\]+3EWSJPKAaXPEHS0r9jHQfV6fP7YCH29w2mPY0wkYKx8ZbgL0nxydNSUmHW05TyO0ijZ4NVpnRoRq33vh[\\/\\\\]+DUw0mgg38F1YdXhQ8ycjcYEvvBs442W2Isi7EO2yHTIAurtwmmJGMZXARhvaKWX9CkQWFx\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-House\\-numberone\\-login\\.poochbuch\\.com[\\/\\\\]+V3yQVwQS3BNmU7TQINdlgcGSB2eo8AGfk1Z0U0NG5meOUwyQG7EvDxI[\\/\\\\]+mbRkLFcXvx58sZFfJ0jAGh0Iq0IbZocIM9DY93guk2qW0XopydMYtGAqwZFBPKj8aiN[\\/\\\\]+NdCW3p71srfNWq2s0dkO3Qk4pV2kYl69glPa6nIInSsqtjTSXQ[\\/\\\\]*\\?qs\\=aW5mb0Bob3VzZS1udW1iZXJvbmUuY29t$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+jCzPPUJmFIfQskw7il7bU5yM9IqKXCFKHqXHd1qARjEaLD2OEL8HOQv96cmz8DAz3y7BjgeFU3f[\\/\\\\]+gR9i5anZiksJf9FVzjj0KKYYVTVg2vCmGMeoUXLwv5kTaiegY1SqNxecdeIoAySuIyVmQTnAJQrpyukq[\\/\\\\]+IHraZ4jmCkMY9vXrDBu75WjRquWbR9BpSNdmelhgJ94Xj62gPBLyMgMS8jaing3DYYRPZW\\?r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+L8bmFkyUzvXZ64nGGei30Ey51iyUg27vHG2TnHKJTb6zuqa7DxwuvqW[\\/\\\\]+mbeFQYuvzid0l1PBlOPDCVCycgOdiquuNhPW2FQlEKwoRh3XaEjIrREcVFAQlv1n1Eu[\\/\\\\]+GyVjZEHbMBguCZSOjzbyuLYamA7MtVyvm44UdOF6651g7MpoSC[\\/\\\\]*\\?qs\\=Z2lhbm1hcmNvLnRpc29uZUBjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "ff9378ec9d5a77c04717cf8c646c64f2dfa37964f0e9154526589af394d3e89e", + "regex": "(?i)^https?\\:\\/\\/wordpress\\-orange\\-bird\\-serviceyqhyq157002\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+A8rKHTkDEL46YcUoqEFt7RNHCELOL4aXWKCFposHAdJxycEVaQ1oFzCspWGiFb4UYghPLSvLQsF[\\/\\\\]+IwucriyUCsOBRm1fMkUmSlFdkinsE0g9jdtgS8w1tgVSDyl8haFgYWClZIRoQEjYVHYylUI4cPcdwWQb[\\/\\\\]+xxUFSGWyVLuO57lQ8NvRCoZndbCUbQ90vpmYhXxfL8DYpFUSJGcA6ttFpaEyrLDu1aEzBD\\?r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+Lk38S5jujs2qgrkZ9eSlTEz8xnKiCHC2avHzEYyfhwdz7nig5mp0NEV[\\/\\\\]+mbjZJL4DQoyX5JpkL2vMZPsGdNftKXx0mZn35TQumSUxjBzVFGFtRTqnWAIdjRAWweS[\\/\\\\]+2LqlQ8K1IPtSovk715hG6EegN1x3NmvD9D9ZKGEyA9FR5wEuXs[\\/\\\\]*\\?qs\\=aW5mb0Bjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "9f6d7d5d9623b737bf216475148591e323092c9db00d80f5f0b9542cbb2f8816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.z\\-2FNBzEiv\\-2Fp2\\-2BteyPRRyLukjko4z1SalKDYa7rywXAHgNN3sISctm0R16ptex\\-2B7QKbblfTKoEZg\\-2FkarwxuqNVu3eKlU99sXjg\\-2F\\-2Boqc0gOsU1m9DDmwhGVYkYka9HDE0krKzsaBshTJIYb5MeHzO0Mj3le0WiwOZDU4Td\\-2B8OsLDCXIghZmqSU\\-2Bt\\-2FbdRvoXK6M1Wz\\-2Fwha00hZDeQv4sAZPZuA\\-3D\\-3Dc0UP_SRhpmOUmshXaGNYQ9wu5ck8UJaOi\\-2F2ip8NEcgLMjIDWmZql6lLV9ypvpzidCyZigHFkkzuWPyOnq79O4tDUS4h1Rm37qR3F5dY\\-2BOXx\\-2BA\\-2F7DhmC4bmC5ErIlYbGoSQeX\\-2BFodxhfnyr6cubedqyijWQ2rzBNA5QnpWSA74byDda5BwJpsithT5KzVJNTXfKGD0k9S5SO\\-2BcSzYR4VOe5xd5nsAe\\-2BUzzfcd4w4sGgyzcMG2iDl0yZLpXTvLUiNzKULQg7HEMP2PdStVWfC\\-2FvzTHFE2bMaX2vXoIo\\-2FM2bRT\\-2B70xhw1ZWHpdkYzrXQwee4hrsZiu1\\-2ByWq\\-2BKcw502SGb21Q7agRDE9ZL\\-2FFAs\\-2BjnxcMUtuMjiZkqv2vtWcH8wYYK\\-2BJunoYbumour2eAQea3LO0mMRknV\\-2F11qH47qNt5s9\\-2FNY8QGHG3Tcjo8\\-2FFoST4TnXyVDghMZ9NyqO3SeTHMxInwSQTKEuA39bSFUWGy5RU6ZyLgSgHaHBew\\-2BXEcDvbCkE8lzeQukHN5fh4WkIGeqxWQubcA\\-3D\\-3D" + }, + { + "hash": "e18ab26b738768fae550c438c2779edc5c579f86abe3f2345f589d8836065ca8", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+dICV6veJd0r3InAglhf4XRIB9YcJebAb6dlks8vAx26y0Efc4Dh72QgQzWVOkdPvz6VjD1IgkQq[\\/\\\\]+Rx01oOfdSthMLATFwVRoIRuTzccKzbS79nGt9Xpr2TRceT2DpG8BwNmVp3BDtlcHKlneyt1wzqNZwnAR[\\/\\\\]+ZwRCqx8f2dlMgJoFpYfa6qjrAmYbUbj4Is4rIxJyd9bxS6rj6RHCecQ0FLZPAoyThBjco7\\?r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+wBX7Jr5TL4Lyrvhop7T4FmeNwE0dMcAHc5XDKBOQ8tT8xBjbnsInNi2[\\/\\\\]+mbmLycjv2UMHu8iOqE8M2bhgqR3xUA4wSQ6guiqSE4KN87jTRLbMiaiZAoKwt5GagD9[\\/\\\\]+uEVnyOg72gLMRWgcXmKf8J1zQ3jky1gbF2dCyuKzarOGuXPyuX[\\/\\\\]*\\?qs\\=d2FsdGVyLnRpc29uZUBjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "0c8735043deee1447fb30ab2c4f18661ae651acddda1cc3f675d4bd59fb24e3b", + "regex": "(?i)^https?\\:\\/\\/adarsh389\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+m6vMFFYlT5LRtUfgWBSB32PKoGVnWdupWNgx5iN3n1GxjxasNKcezOQrfQgOzr9wtxNzSyJ1lgE[\\/\\\\]+JSEpOFCGMWCc442XN9yETJKRLlKm2c8eiH2P2dY6le9CG0Ait8R5I53NWQpae0nYBprmEGi9XbAB0SxG[\\/\\\\]+ZMPQrzlvqfTYxsUSgMzHJy0gBlu7mqo1oXG7KV4axxVkfQjP7WlsB0Z69G0HgdMmBxB7Cr\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Bonazzolilegnoedilizia\\-login\\.poochbuch\\.com[\\/\\\\]+PWEtfh2ntO7MDgPqDIK0Rrug0TnLbZVfhi4IGH1nulE5MRZQRg2TxQY[\\/\\\\]+mb8lkxav2dlA8Vh1bjiLKjEavB6bCUvTmA3uRxojwff5urc8Azr2rziv9mMUfxmpHjY[\\/\\\\]+wge1iYhYpzDlpiVZPf2KTKQOadadhk1cYy3uXtoWGpmodERfkk[\\/\\\\]*\\?qs\\=aW5mb0Bib25henpvbGlsZWdub2VkaWxpemlhLmNvbQ\\=\\=$" + }, + { + "hash": "6a92a0e99b71ca81f77f1e5e6fca1c4f6d5b134103a4305bc0074c3b52cd1cc1", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+mTySxPG8Duersu35rZPUEKURprqzMqdZ0yFqbdsR9tztdTNCoiiUKpV5HyRoaZJamgQINeJw8wb[\\/\\\\]+omg2sjdQY0HngXACoQwuAtodToPDJYFQwNgePtx438RBTXPhUXpVaWefe4zyvZqPxON50WtsADoAZdqE[\\/\\\\]+NTNkAeVvJctzApyPqNeHrNJ9snT39cuHOZwpyht3Wmc6gRleEowRvLJGsev2Yoo4ljhCRv\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Hotellaurence\\-login\\.poochbuch\\.com[\\/\\\\]+Mk67Ue1V5E2lu6bZsEZIx9Dm4c5VcLrYBHJ9olfY9zgxrfclk3EDwfO[\\/\\\\]+mbkHfRJfaama1k0QvUWxF38S9JHAg6SN4AjdfXtyDFsZMbxDlAaQxcGupT3m4rSJ8tB[\\/\\\\]+NO4DSgG0fqQ2QhRRVnX5hY9AwDDkovruvW82oAoMjKl28HbX9c[\\/\\\\]*\\?qs\\=aW5mb0Bob3RlbGxhdXJlbmNlLmNvbQ\\=\\=$" + }, + { + "hash": "8be7bb6d414b613272aef3aea32394d647b2cf7089108182a6181da2184419b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fs3\\.us\\-east\\-1\\.amazonaws\\.com\\%2Fcaramelsbo\\%2Foffers\\-topfstaedt\\.html\\%3Ftoken\\=oqxkbyjdibmDibnHb6koJcIghbdbyfkj[\\/\\\\]+1[\\/\\\\]+01000191b2af915a\\-7fe57ea6\\-17be\\-49c9\\-9c98\\-5b4a725480e5\\-000000[\\/\\\\]+m2LZ3mo0dQSDJLhPipJ\\-7xCRCEk\\=389(?:\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+dICV6veJd0r3InAglhf4XRIB9YcJebAb6dlks8vAx26y0Efc4Dh72QgQzWVOkdPvz6VjD1IgkQq[\\/\\\\]+Rx01oOfdSthMLATFwVRoIRuTzccKzbS79nGt9Xpr2TRceT2DpG8BwNmVp3BDtlcHKlneyt1wzqNZwnAR[\\/\\\\]+ZwRCqx8f2dlMgJoFpYfa6qjrAmYbUbj4Is4rIxJyd9bxS6rj6RHCecQ0FLZPAoyThBjco7\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+wBX7Jr5TL4Lyrvhop7T4FmeNwE0dMcAHc5XDKBOQ8tT8xBjbnsInNi2[\\/\\\\]+mbmLycjv2UMHu8iOqE8M2bhgqR3xUA4wSQ6guiqSE4KN87jTRLbMiaiZAoKwt5GagD9[\\/\\\\]+uEVnyOg72gLMRWgcXmKf8J1zQ3jky1gbF2dCyuKzarOGuXPyuX[\\/\\\\]*\\?qs\\=d2FsdGVyLnRpc29uZUBjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+m6vMFFYlT5LRtUfgWBSB32PKoGVnWdupWNgx5iN3n1GxjxasNKcezOQrfQgOzr9wtxNzSyJ1lgE[\\/\\\\]+JSEpOFCGMWCc442XN9yETJKRLlKm2c8eiH2P2dY6le9CG0Ait8R5I53NWQpae0nYBprmEGi9XbAB0SxG[\\/\\\\]+ZMPQrzlvqfTYxsUSgMzHJy0gBlu7mqo1oXG7KV4axxVkfQjP7WlsB0Z69G0HgdMmBxB7Cr\\?r\\=https\\:[\\/\\\\]+mail\\-Bonazzolilegnoedilizia\\-login\\.poochbuch\\.com[\\/\\\\]+PWEtfh2ntO7MDgPqDIK0Rrug0TnLbZVfhi4IGH1nulE5MRZQRg2TxQY[\\/\\\\]+mb8lkxav2dlA8Vh1bjiLKjEavB6bCUvTmA3uRxojwff5urc8Azr2rziv9mMUfxmpHjY[\\/\\\\]+wge1iYhYpzDlpiVZPf2KTKQOadadhk1cYy3uXtoWGpmodERfkk[\\/\\\\]*\\?qs\\=aW5mb0Bib25henpvbGlsZWdub2VkaWxpemlhLmNvbQ\\=\\=$" + }, + { + "hash": "b9b32e3dd4c17504b781d0d618808277d9969143536a88a6ade6d5c156e77bd5", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+3avIf4fRnMJp6GrptPfB3MVjPWnzCQWcvwBMS5TAovPyT3eWrm1jvQyuSjxrDOrAdyzMVCCORQb[\\/\\\\]+NEUoptYGlLdkwG90X7qv4ZsviI8ICaIl4DhdDdb6fIVpeLRRV6fvAeF71OW0y7lVZTgO4nCTVlzQSWMa[\\/\\\\]+gZIpaMI0d4KtLGW0XRSeEepqsXVCUHQTCXE1sqwogjZUysroDahgBRxXUP98d0na8x9JWM\\?r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+LTA1rREPnXIqmXVJBVRM7DJEuWnbwdxNRQTgtHH9xh753TazkLehyaX[\\/\\\\]+mbFZIri3OsEdPBfueSjMNAlQwHtOW7hZ2y2gM9AiDMCQ1VmLUn3BnCPL97YtyJVWRaw[\\/\\\\]+QzBwqiJ8qdwzPrpoJsyYRWGPMHMUzH8ZYILlICCw2yWCBjzVaa[\\/\\\\]*\\?qs\\=bWFzc2ltaWxpYW5vLmdpdXN0b0Bjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+mTySxPG8Duersu35rZPUEKURprqzMqdZ0yFqbdsR9tztdTNCoiiUKpV5HyRoaZJamgQINeJw8wb[\\/\\\\]+omg2sjdQY0HngXACoQwuAtodToPDJYFQwNgePtx438RBTXPhUXpVaWefe4zyvZqPxON50WtsADoAZdqE[\\/\\\\]+NTNkAeVvJctzApyPqNeHrNJ9snT39cuHOZwpyht3Wmc6gRleEowRvLJGsev2Yoo4ljhCRv\\?r\\=https\\:[\\/\\\\]+mail\\-Hotellaurence\\-login\\.poochbuch\\.com[\\/\\\\]+Mk67Ue1V5E2lu6bZsEZIx9Dm4c5VcLrYBHJ9olfY9zgxrfclk3EDwfO[\\/\\\\]+mbkHfRJfaama1k0QvUWxF38S9JHAg6SN4AjdfXtyDFsZMbxDlAaQxcGupT3m4rSJ8tB[\\/\\\\]+NO4DSgG0fqQ2QhRRVnX5hY9AwDDkovruvW82oAoMjKl28HbX9c[\\/\\\\]*\\?qs\\=aW5mb0Bob3RlbGxhdXJlbmNlLmNvbQ\\=\\=$" + }, + { + "hash": "60269e48bf53cee1d497cc3e83c8e7b83777d2885e25a2c14abb966944b6ddfa", + "regex": "." + }, + { + "hash": "9f6d7d5d9623b737bf216475148591e323092c9db00d80f5f0b9542cbb2f8816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.z\\-2FNBzEiv\\-2Fp2\\-2BteyPRRyLukjko4z1SalKDYa7rywXAHgNN3sISctm0R16ptex\\-2B7QKbblfTKoEZg\\-2FkarwxuqNVu3eKlU99sXjg\\-2F\\-2Boqc0gOsU1m9DDmwhGVYkYka9HDE0krKzsaBshTJIYb5MeHzO0Mj3le0WiwOZDU4Td\\-2B8OsLDCXIghZmqSU\\-2Bt\\-2FbdRvoXK6M1Wz\\-2Fwha00hZDeQv4sAZPZuA\\-3D\\-3DHcTu_SRhpmOUmshXaGNYQ9wu5ck8UJaOi\\-2F2ip8NEcgLMjIDWmZql6lLV9ypvpzidCyZigHFkkzuWPyOnq79O4tDUS4h1Rm37qR3F5dY\\-2BOXx\\-2BA\\-2F7DhmC4bmC5ErIlYbGoSQeX\\-2BFodxhfnyr6cubedqyijWQ2rzBNA5QnpWSA74byDda5BwJpsithT5KzVJNTXfKGD0k9S5SO\\-2BcSzYR4VOe5xd5nsAe\\-2BUzzfcd4w4sGgyzcMG2iDl0yZLpXTvLUiNzKULQg7HEMP2PdStVWfC\\-2FvzTHFE2bMaX2vXoIo\\-2FM2bRT\\-2B70xgCM0aWtXox5AMQxzbnYH4kL5984rhAsXLmspszQOhLzD8p4skU7pJIF5LAXHSbeQxcEIZ\\-2FilkR4p3oDo2YsmJDCSLo\\-2B6LHLMHVWnRDyUswPLfq1V6UXhwZ6G\\-2FwgfR20lNeOE047M7Eqj2YI91O71xi\\-2FfFAttroIAHJTGlbRfwotnMBvgxyOY\\-2FjlpZdziU1N9xSpdaxogm0knOdYtwjkpsnctdQm43E\\-2FZu2MPyVELYb9A\\-3D\\-3D" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+2sWsfS3H4ZddI09FSAB02WwPNsPDnc27NuDKqGbJTCl0F10LnMURgzIb7MXaauH4cT1BKS7dHvv[\\/\\\\]+awjUBYlvlfVwbDWLlqPVtU3UO7AlejEjV6htOARVu5sh2aNAyy2WbqnMT6eVGi0Cs9LGF9DHo4FRmmoo[\\/\\\\]+dq8BYKiY8BVlexenSLQEPnZD4gvWzIvo2XglsXlxNiucL8A0ro82RReb9ApCA0NglOrv2j\\?r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+fxjdJhDtFZyT3X6hs9ZuqYmDros47GBP5wCfLy1EZtH5ncdHBlBWqWN[\\/\\\\]+mbs7pzHUXUwM9hhk3cv7WcAgICrK7oNvarpZxHk2v86yFAUiuHUzYX5B62Df0nm6tzQ[\\/\\\\]+ZJ7LSQYNL8fHuTPKyOGsQVIvS3CfY8erFDyBLN1dq4now2ieE4[\\/\\\\]*\\?qs\\=cml0YXBhb2xhLm5hc3Rhc2lAY29kaW4uaXQ\\=$" + }, + { + "hash": "9f6d7d5d9623b737bf216475148591e323092c9db00d80f5f0b9542cbb2f8816", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.z\\-2FNBzEiv\\-2Fp2\\-2BteyPRRyLukjko4z1SalKDYa7rywXAHgNN3sISctm0R16ptex\\-2B7QKbblfTKoEZg\\-2FkarwxuqNVu3eKlU99sXjg\\-2F\\-2Boqc0gOsU1m9DDmwhGVYkYka9HDE0krKzsaBshTJIYb5MeHzO0Mj3le0WiwOZDU4Td\\-2B8OsLDCXIghZmqSU\\-2Bt\\-2FbdRvoXK6M1Wz\\-2Fwha00hZDeQv4sAZPZuA\\-3D\\-3DdBas_1a4jvJKXsjSPFL7ykG\\-2FgSSHcE4xZPTX4gckRkUc\\-2BOqH8mu7frerV9VsmCSwlclwgL92N7cm02mpQebKkqIDtkNSWa\\-2FipNHoO2dB43oAfFXgi8VCElzKlVwKspuPpOGQwklLJul4MbshXJuNzbQ\\-2FTs2UzrQbCG6StFoeXX5aHMApluLfSeFp\\-2FZkyL5pZAFBoKMeXD\\-2Bz8fe\\-2BgMTvlZ8xg8ydPXB2ft6W6MGPefdYx3PB\\-2F\\-2BSEv5lRhWtVZ3Q0tOhLkNCcQ7YgvuVboBu54RlNN2a99TTd9UZR\\-2FIk5cImWILuvi546YEptfMe4Uv\\-2F\\-2FVuCERCmeFNLRKO3Ji7D6t497TSWrnEVRtKJEYaTG33GL\\-2FPVXFl5a\\-2BmU\\-2Fu074PQuWTm\\-2BbLpAtlS938ys9yI3baf03yafA6yl5r84\\-2Fc8XEGzBj0Rn2hnM3XfG\\-2FUWG2eGPx38WmZ95cSYrfVzUvD3TcOuWkWYJ\\-2BeTnzoI38SPa64h66l25g0VJNji9zHQTRuISw6nZJro" + }, + { + "hash": "5f89952f9e89c4acfce0e8283cb971ea53ce7f35bdafe54682883fbe56d4b415", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9073[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8be7bb6d414b613272aef3aea32394d647b2cf7089108182a6181da2184419b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fs3\\.us\\-east\\-1\\.amazonaws\\.com\\%2Fresentlessbv\\%2Fsichere\\-weiterleitung\\.html\\%3Ftoken\\=oqxkbyxl3KsOfjdEIuFjABwghPMW5iWXdbyfkj[\\/\\\\]+1[\\/\\\\]+01000191a8e4f384\\-afd3fc6f\\-1220\\-4eb5\\-a7bb\\-2454a2cffd2b\\-000000[\\/\\\\]+DM0YtvFGkfIYBSpibUGccgNnXFk\\=389(?:\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+A8rKHTkDEL46YcUoqEFt7RNHCELOL4aXWKCFposHAdJxycEVaQ1oFzCspWGiFb4UYghPLSvLQsF[\\/\\\\]+IwucriyUCsOBRm1fMkUmSlFdkinsE0g9jdtgS8w1tgVSDyl8haFgYWClZIRoQEjYVHYylUI4cPcdwWQb[\\/\\\\]+xxUFSGWyVLuO57lQ8NvRCoZndbCUbQ90vpmYhXxfL8DYpFUSJGcA6ttFpaEyrLDu1aEzBD\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+Lk38S5jujs2qgrkZ9eSlTEz8xnKiCHC2avHzEYyfhwdz7nig5mp0NEV[\\/\\\\]+mbjZJL4DQoyX5JpkL2vMZPsGdNftKXx0mZn35TQumSUxjBzVFGFtRTqnWAIdjRAWweS[\\/\\\\]+2LqlQ8K1IPtSovk715hG6EegN1x3NmvD9D9ZKGEyA9FR5wEuXs[\\/\\\\]*\\?qs\\=aW5mb0Bjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+fv1RK6KBsC99yt1Eh4yk9CRoz9H8Pwgcf1bEaJ4mFLGxN3Ts3KhSRoqszpm0VBaKSxRZec3wvWH[\\/\\\\]+eQcnWzbmyMDWUTtezWyM49Ed2iApLhsdXdI8TA72VFthZMvnrmjrp0canEKZhULd6qOTFbYhgrPmFFxJ[\\/\\\\]+fxFvxJBnqjdoA0lcy7W1lKkuAWlh92T8fAPovfMk6IjgKHOKLL6ab7dX0MQjiIPMRy0sAQ\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+ncNEl7cfYeGOo5q6mCEqxCUY4IypnWKq8XHbZZQhGDCwhjUiosqtSLO[\\/\\\\]+mb8mL61RAETfWZILCVTh2Ki3K8FvNObFcI1MVbjUW8b9Afk7M0UbU4JCPZ9xHVnQszY[\\/\\\\]+F23AJUoqKSBVSuGcckAWw75xwzA5u0P58hmCTdXzW1x7lVCCMr[\\/\\\\]*\\?qs\\=d2FsdGVydGlzb25lQGNvZGluLml0$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+EZ5OilqaktNibvzqZKZxt2Bgs2xV1dgGxPEQzUoslJAwpTYicPv90sKHBEvagf4UecVkVWw4osP[\\/\\\\]+zBdbFL85M2Qd8WSQw3MDpAngUVbA7xW71wcqN7x9URy3Bp0yre501099CrgqshaCwSlBhbriJujfuHm2[\\/\\\\]+5Q6lYK1wrC2V4utbzUFz6Br6AFVExR2EY6cpUTqqwSq7kSO24fBGRStrCU2qSbWkgdQAG1\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Infcom\\-login\\.poochbuch\\.com[\\/\\\\]+iCQOAhRM1Yo0mnPR4DGwBUXvw8JwUWPXcxrFw3HTsdXajmDJINwA0Iz[\\/\\\\]+mbM6knTAt9EWBLj0kFdtZdABJXNhCPf8uWaYC3G1Ro7SRdby7wn5gUcK5MUNTMC0oPK[\\/\\\\]+yI3lHkFb35nygdid75ELcOby7uXlCfTZ1sqPT3nyzqEwOyabaC[\\/\\\\]*\\?qs\\=bWFya2V0aW5nQGluZmNvbS5pdA\\=\\=$" + }, + { + "hash": "5f89952f9e89c4acfce0e8283cb971ea53ce7f35bdafe54682883fbe56d4b415", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9073[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b5d55e9e88659d9fac8e3c0ec531f8044f48f250a0ff50523a2f1d2e0fbd205", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b5d55e9e88659d9fac8e3c0ec531f8044f48f250a0ff50523a2f1d2e0fbd205", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+2sWsfS3H4ZddI09FSAB02WwPNsPDnc27NuDKqGbJTCl0F10LnMURgzIb7MXaauH4cT1BKS7dHvv[\\/\\\\]+awjUBYlvlfVwbDWLlqPVtU3UO7AlejEjV6htOARVu5sh2aNAyy2WbqnMT6eVGi0Cs9LGF9DHo4FRmmoo[\\/\\\\]+dq8BYKiY8BVlexenSLQEPnZD4gvWzIvo2XglsXlxNiucL8A0ro82RReb9ApCA0NglOrv2j\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+fxjdJhDtFZyT3X6hs9ZuqYmDros47GBP5wCfLy1EZtH5ncdHBlBWqWN[\\/\\\\]+mbs7pzHUXUwM9hhk3cv7WcAgICrK7oNvarpZxHk2v86yFAUiuHUzYX5B62Df0nm6tzQ[\\/\\\\]+ZJ7LSQYNL8fHuTPKyOGsQVIvS3CfY8erFDyBLN1dq4now2ieE4[\\/\\\\]*\\?qs\\=cml0YXBhb2xhLm5hc3Rhc2lAY29kaW4uaXQ\\=$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+dbUefcFoXoRrCveNSp8zxPfZIHzV0J76BSe1ychN6qlvpVUKqrj3hwcW2ZyP7xtv9lzAJdkZFu0[\\/\\\\]+vWYYZ6bTkVkvEOXYpJS4dv5o0L68Ig77M9owkMyUttFLW5fXS7MP60IfNd7OKtVIcsdqXaExK54jtfU3[\\/\\\\]+0ku7NMa7tw4wp6TsgY6NYptG2qois34SSiW7AO5SGdRUUNFhUyywgl5IJrnrD0DSwVAbA6\\?r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+i0A1XJJhbbaui8tFmfSeorXtlhPHLv7FJahjTShX0Y8qPkXCLf5HQyX[\\/\\\\]+mb1eqphPFO75deqcOBT5lVRWlAzKFs0FZr4DcEIcHgE0IKxgebGSazJ8QQfPFTvxvnj[\\/\\\\]+1ULp2AiyAi0BRN5c3ikvSkUphXkuquwLRM0AmPDEEDwNIg197Q[\\/\\\\]*\\?qs\\=YmVuaXRvLnB1Z2xpYUBjb2Rpbi5pdA\\=\\=$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+fv1RK6KBsC99yt1Eh4yk9CRoz9H8Pwgcf1bEaJ4mFLGxN3Ts3KhSRoqszpm0VBaKSxRZec3wvWH[\\/\\\\]+eQcnWzbmyMDWUTtezWyM49Ed2iApLhsdXdI8TA72VFthZMvnrmjrp0canEKZhULd6qOTFbYhgrPmFFxJ[\\/\\\\]+fxFvxJBnqjdoA0lcy7W1lKkuAWlh92T8fAPovfMk6IjgKHOKLL6ab7dX0MQjiIPMRy0sAQ\\?r\\=https\\:[\\/\\\\]+mail\\-Codin\\-login\\.poochbuch\\.com[\\/\\\\]+ncNEl7cfYeGOo5q6mCEqxCUY4IypnWKq8XHbZZQhGDCwhjUiosqtSLO[\\/\\\\]+mb8mL61RAETfWZILCVTh2Ki3K8FvNObFcI1MVbjUW8b9Afk7M0UbU4JCPZ9xHVnQszY[\\/\\\\]+F23AJUoqKSBVSuGcckAWw75xwzA5u0P58hmCTdXzW1x7lVCCMr[\\/\\\\]*\\?qs\\=d2FsdGVydGlzb25lQGNvZGluLml0$" + }, + { + "hash": "7f835b87d223a09b07828e4fae88d99793676a07cab1e5eec03a048cf88ad068", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+ofGEdsfVmZPVltmoWp9LmPoRIEP86qTK4TdST9CSMAKmxszKIWd9Pn0xN3FTZ2qvAupSHuIGWoY[\\/\\\\]+3EWSJPKAaXPEHS0r9jHQfV6fP7YCH29w2mPY0wkYKx8ZbgL0nxydNSUmHW05TyO0ijZ4NVpnRoRq33vh[\\/\\\\]+DUw0mgg38F1YdXhQ8ycjcYEvvBs442W2Isi7EO2yHTIAurtwmmJGMZXARhvaKWX9CkQWFx\\?r\\=https\\:[\\/\\\\]+mail\\-House\\-numberone\\-login\\.poochbuch\\.com[\\/\\\\]+V3yQVwQS3BNmU7TQINdlgcGSB2eo8AGfk1Z0U0NG5meOUwyQG7EvDxI[\\/\\\\]+mbRkLFcXvx58sZFfJ0jAGh0Iq0IbZocIM9DY93guk2qW0XopydMYtGAqwZFBPKj8aiN[\\/\\\\]+NdCW3p71srfNWq2s0dkO3Qk4pV2kYl69glPa6nIInSsqtjTSXQ[\\/\\\\]*\\?qs\\=aW5mb0Bob3VzZS1udW1iZXJvbmUuY29t$" + }, + { + "hash": "0cb339f2e6e9fa4b2b35b58fd92b33af903d49332ea0af8515ceeb9b48705e6a", + "regex": "(?i)^https?\\:\\/\\/ishubham13\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b9cdddcc0ac4289ae4bc60d95cba1396713c7d698c2a7099d4e2a0b0a849e856", + "regex": "(?i)^https?\\:\\/\\/getyour0101\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e72b49280010397838f7e50e292bdf77cf5d0d5a3b96b63df5b757f62cd5fc60", + "regex": "(?i)^https?\\:\\/\\/getyour0101\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "94015932175c757dddb86c930660c82ed790c5f1cde17ea99c7bf35bce433e86", + "regex": "(?i)^https?\\:\\/\\/getyour0101\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0a21fa529e922bc10cbbebb8b3dc55384c05dd2e2baf844547cd166535a31b9e", + "regex": "(?i)^https?\\:\\/\\/pub\\-3103b3b0963e44e3a9adf4c7217ed990\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "80d917a91ccab4b5a7e609ace4a87baef6fab5e01d044b9d61cf8035139547c6", + "regex": "." + }, + { + "hash": "d353bb8b5e959bd90ee12609996c9795deca8e842c9cb1fe2e828b9ed45e900b", + "regex": "." + }, + { + "hash": "3585dfad9db1aa76877a5f2b09da8f272d87fad11f40f2c6247c0e2a27d73e52", + "regex": "." + }, + { + "hash": "31700b6350f949d7387f3bef2d735a2898adf8228f6a1eef27bef0bc8459494e", + "regex": "." + }, + { + "hash": "319e5f1f10422101330f0fd2c7e95ef785252210769324ec90c049c770a2acd9", + "regex": "(?i)^https?\\:\\/\\/pub\\-8f3b4a51164646a08c0c30921c2d8d82\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "00f690dfc46c0e18d11f6d34ff817e43edc8da436722cb0f7d0da9b5ee3ff07c", + "regex": "(?i)^https?\\:\\/\\/getyour0101\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fccb704f3c63aec4e3511c80cf68e925a1d1b6186446ef99be15e48e14aa8f39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "78ab19b26372d29acb32a019fbccb4ffc5b5254ead6f435c0b6305dc3c41cb4b", + "regex": "." + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1k9RTD\\-2FAYAcBCSSOTXqTcaf4oeBareuqzhwumMFNMB8GRx4bkqjzwaYtzymxyXo1Wv0hK0puln6ytaye4lD\\-2FJQR\\-2Fx67ykynuMKv21GlKl7Ji24ip0QuREWI3FToSWbjRyTm\\-2FROQyGveZXzslSeJk5t6EDazZt\\-2FiV6cHI\\-2FBiHpgP9qnXMa5B3W8qONtVQaRynlFJWtKhPcIOaA9vekPWgRSjpoTuATpsQokSa9KMy1nYBzVdXpkxDV5MHnxCvPxMLmaP1by5FE4YDvNALR79hPl\\-2F9HamJedsiWezvKgxtLaB3uHWtIaAv\\-2FXFfamLBEgCzbvPCh\\-2B9xolyZAR7yvLIdKSCYV17FP1zUP6he\\-2FiBbwrWmA\\-3D\\-3D4y\\-4_U7g\\-2Ftmkl8RjIWF3XuHyOZMSDe8XYR2Mk0vVQZMUY0EELyf9IsCAteezik7d5q8kLphb80Rh5a3NMcAOfiXA\\-2F3yKH8wjl2Nj5TkFgvm2g3vl6ElHA8iYpx1ZehrAAqppMUReY\\-2BQ\\-2BYwmKeZGIxuLjdrxfKH3UYNyT5zSc0WHIqmoX8TjToRpfZXqlLltrpkGKNvlqe0WG0jLvxrXVOJjLhs\\-2BhUi2GRcd3hsNZ0vr06XFosrXQDmurMWCc1qsnwHBsI7BMe9jyFHwSQy5Y5QegD1zslbn8sDQGnwc4OLnlU2BJKlKAnJVaxsLXKul\\-2F\\-2BQEMRbEr7ayh4qfvcp6VUV1ahXQ\\-3D\\-3D" + }, + { + "hash": "0461bc525f9167526164c73ee161b2ef725870348388bbdff2187a0c2cb71413", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cfdownload[\\/\\\\]+https\\:[\\/\\\\]+www\\.amazon\\.es" + }, + { + "hash": "b977ef195bd20c2ef48caf06ca8e684c4fab27a65530cd846055d6cb8eb2c69e", + "regex": "." + }, + { + "hash": "380d3cf99726672d7dfd82eecf83bf444dd7a2dc446342c01c95c558feebf732", + "regex": "(?i)^https?\\:\\/\\/puce\\-goat\\-lzch6b\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "68ca889140d6c91018f87c1be93e2abb451d7052e2b411e11de4514af3b952f6", + "regex": "." + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1k9RTD\\-2FAYAcBCSSOTXqTcaf4oeBareuqzhwumMFNMB8GRx4bkqjzwaYtzymxyXo1Wv0hK0puln6ytaye4lD\\-2FJQR\\-2Fx67ykynuMKv21GlKl7Ji24ip0QuREWI3FToSWbjRyTm\\-2FROQyGveZXzslSeJk5t6EDazZt\\-2FiV6cHI\\-2FBiHpgP9qnXMa5B3W8qONtVQaRynlFJWtKhPcIOaA9vekPWgRSjpoTuATpsQokSa9KMy1nYBzVdXpkxDV5MHnxCvPxMLmaP1by5FE4YDvNALR79hPl\\-2F9HamJedsiWezvKgxtLaB3uHWtIaAv\\-2FXFfamLBEgCzbvPCh\\-2B9xolyZAR7yvLIdKSCYV17FP1zUP6he\\-2FiBbwrWmA\\-3D\\-3DNNqD_U7g\\-2Ftmkl8RjIWF3XuHyOZMSDe8XYR2Mk0vVQZMUY0EELyf9IsCAteezik7d5q8kLphb80Rh5a3NMcAOfiXA\\-2F3yKH8wjl2Nj5TkFgvm2g3vl6ElHA8iYpx1ZehrAAqppMUReY\\-2BQ\\-2BYwmKeZGIxuLjdrxfKH3UYNyT5zSc0WHIqmoX8TjToRpfZXqlLltrpkGKNLZgRL2cSRkrmKJocmb6QCibNIlj60\\-2FPVVQGZGM5M8pRDfySLJjZP691JR90OuXUC4WHgJoxkQYImJ8BIqUu51VxZRg64sMZ5mLbGmNuSfwUurRTH52B76ha4X2Ht67vkzlgxWIBTZkN1NZkozxf6oA\\-3D\\-3D" + }, + { + "hash": "92352e20e04183cb751e545e6148642ae0be99dc0b84b254ec3e81406f189a1f", + "regex": "." + }, + { + "hash": "a0aca3eef692d79a06f895f8d96c61de384519a0f8069c484304e8a8b4a88f5a", + "regex": "(?i)^https?\\:\\/\\/fortnitev\\-bucks57\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "25b591b33d6a4ba258cb73180fa66d088a55d48d328165376b0bc7a861294e90", + "regex": "." + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+Nf1m0z0fmR3npX7nBjlwAYbNNb9rFzeQT9BjSgFvWKpaNlV\\-Dd30i_UAoOjg8dlJVhT0qMaC7zErFyH3T8V1rAywN0I0wGOKtHAyrt34Sg5Y\\-\\-1BQTA\\-gaTxfoVZdn82jiC0oSu7tyOJGOAtj7TJR7j3PwcpLPw0N2_jyMyVFwwciIZ0iSbGf0_bC4yL3pVGqxa5\\-DCnDresXnWQmlrr1DOdsMozgqvQe\\-OrwYqu0dN0TQ2n8jhxFpe\\-1l7_KVoPiplRJtPT9ZRlWg(?:\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1k9RTD\\-2FAYAcBCSSOTXqTcaf4oeBareuqzhwumMFNMB8GRx4bkqjzwaYtzymxyXo1Wv0hK0puln6ytaye4lD\\-2FJQR\\-2Fx67ykynuMKv21GlKl7Ji24ip0QuREWI3FToSWbjRyTm\\-2FROQyGveZXzslSeJk5t6EDazZt\\-2FiV6cHI\\-2FBiHpgP9qnXMa5B3W8qONtVQaRynlFJWtKhPcIOaA9vekPWgRSjpoTuATpsQokSa9KMy1nYBzVdXpkxDV5MHnxCvPxMLmaP1by5FE4YDvNALR79hPl\\-2F9HamJedsiWezvKgxtLaB3uHWtIaAv\\-2FXFfamLBEgCzbvPCh\\-2B9xolyZAR7yvLIdKSCYV17FP1zUP6he\\-2FiBbwrWmA\\-3D\\-3D_WtB_WmBXGZKmFLeM0OgQb6gVxgUqhHNrmCWkrM5U9WKzdbqctAm2MmGVIZrcDxZNgNen3\\-2BLcTC3P3gjX5a\\-2F3dU\\-2FemC\\-2BJjF\\-2BO\\-2BnTkEoh4hmFCrJ7sR4B6ImN6PaTDTOH1jeh6AsFG7OxGpyPIG81eYucrwlXr94W7Qj0MHLJdff9B\\-2BL7kw5JyBfrKO5W77x0uyfbkS0YQRt\\-2BWv\\-2BmJi7uV\\-2BBv6\\-2B0Y0ARZQaDf2b8Yh6DE7PtPfFlRCJoFXHvOLzIE4IO6UTkgniqVUjJF9Ky55dypWuazX9l3EXawH\\-2F35o0meUt\\-2BNtueiGfYJd23GUJV9uhVTTtHuQ1BBUe63YzJc9lWvFiw\\-3D\\-3D" + }, + { + "hash": "fa6931937dd6cc4804ebaa39206da4c12c517df24a4cffb3dc6c822999256ef0", + "regex": "(?i)^https?\\:\\/\\/www\\.aust\\.79\\-110\\-49\\-88\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bfa025a8359af1b657400ef67740042d9d1edf643a486f1af271612354bd1448", + "regex": "(?i)^https?\\:\\/\\/pub\\-c5d10c3f6d9f495d824c5477d292e445\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "29e720c5fe61d2c70ae8817d131a7b9b921f1ac11bde87f10c0da0c9659ae31d", + "regex": "(?i)^https?\\:\\/\\/pub\\-d977b52bad1c484ea29ae77af7e03748\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cedb68908d71c0506472c7edcb6626173df4a0eca2e6bdf4e0c9b1e98555ca9e", + "regex": "." + }, + { + "hash": "0ef255b30942e7f2e992dd7fc24b9cb23847b9840151e7f759a10216449e6a36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1k9RTD\\-2FAYAcBCSSOTXqTcaf4oeBareuqzhwumMFNMB8GRx4bkqjzwaYtzymxyXo1Wv0hK0puln6ytaye4lD\\-2FJQR\\-2Fx67ykynuMKv21GlKl7Ji24ip0QuREWI3FToSWbjRyTm\\-2FROQyGveZXzslSeJk5t6EDazZt\\-2FiV6cHI\\-2FBiHpgP9qnXMa5B3W8qONtVQaRynlFJWtKhPcIOaA9vekPWgRSjpoTuATpsQokSa9KMy1nYBzVdXpkxDV5MHnxCvPxMLmaP1by5FE4YDvNALR79hPl\\-2F9HamJedsiWezvKgxtLaB3uHWtIaAv\\-2FXFfamLBEgCzbvPCh\\-2B9xolyZAR7yvLIdKSCYV17FP1zUP6he\\-2FiBbwrWmA\\-3D\\-3DiGeS_WmBXGZKmFLeM0OgQb6gVxgUqhHNrmCWkrM5U9WKzdbqctAm2MmGVIZrcDxZNgNen3\\-2BLcTC3P3gjX5a\\-2F3dU\\-2FemC\\-2BJjF\\-2BO\\-2BnTkEoh4hmFCrJ7sR4B6ImN6PaTDTOH1jeh6AsFG7OxGpyPIG81eYucrwlXr94W7Qj0MHLJdff9B\\-2BL7kw5JyBfrKO5W77x0uyfbk2u\\-2F4u0FQPZsN\\-2F\\-2BaI7nU7\\-2BBxofU3avncWImOO\\-2FTAyI9cIbEkN4zdJVFH3vf35UygIHMjnCmyFYfboeGEmzku00XhQc0QgUVGkrPMVE6GcIEWCZcmnhwS6udaYHHB48NbemA0aiYzo\\-2FCkRrs\\-2B8n4CSMg\\-3D\\-3D" + }, + { + "hash": "548fe7867f3167d84c8b9106831cc6a66536cb8904c733812d576208f07d8ed4", + "regex": "(?i)^https?\\:\\/\\/pp\\.104\\-194\\-158\\-14\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "804a038f4816dc9a3ca3681280d81330e8c839ee053f8fdbb23a78852cf3ada2", + "regex": "(?i)^https?\\:\\/\\/bafybeifgbshue7ykhbf5xqntuoyet5vnqmtfrigpn4ivactuxvmvtvnhze\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "d3aa7547e304bd9f8710dc4322ca9e2de9c3b33462580b17b9658b54e59794c4", + "regex": "." + }, + { + "hash": "f26e56b92a966bc5937e106bf05c3d7e418bf599abee73b25419ea893ef78fab", + "regex": "." + }, + { + "hash": "d83efd757829bfa42b109221a693e90c3fcc30ed1265b86092919e3dbd2f9c77", + "regex": "(?i)^https?\\:\\/\\/www\\.us3\\-authcoinbase\\.134\\-209\\-118\\-236\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "882dbd7d6b10133225cba9dd02174060ece88e38ab0216614b102f4ca82eef28", + "regex": "." + }, + { + "hash": "9cb0c3122e667b08a5d49af35c11bdfb9d97ec2772eeccc3dfa549797d0e1f26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Contract(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6505e3af0271994623a85a7fa0edc31c4810ce3ef4727081694eaf2ccd2e6173", + "regex": "." + }, + { + "hash": "9cb0c3122e667b08a5d49af35c11bdfb9d97ec2772eeccc3dfa549797d0e1f26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "9c2884c1d9d14e2484e0e1efe419ea619c19fd7837803bcf831e4eb3f07a37d8", + "regex": "(?i)^https?\\:\\/\\/pub\\-0257e66257254e088f6c2394afaedff6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9cb0c3122e667b08a5d49af35c11bdfb9d97ec2772eeccc3dfa549797d0e1f26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "db6b4dc7c26df2cfd8fe8b5ab970e515daa63f68b32e422ac7451b1b74792bc0", + "regex": "." + }, + { + "hash": "f9b031c2ec44e5120978a3014991e118534fdfce0be4929c0f118f67e45e2ce2", + "regex": "." + }, + { + "hash": "1e46c865910a8cd8cc19f5b25f76663ae7a23940b8164f3b9cc744b6aea2961d", + "regex": "." + }, + { + "hash": "6c1e2d6b151a603886ce54a54b4c21366034bf6a669ca406676245dedaa596f3", + "regex": "." + }, + { + "hash": "15c64634d4999022b274d76b336751c2544c8ee6d79b92756fcee773348e3ec5", + "regex": "." + }, + { + "hash": "8da67559c3bc241d75e04b97a033ee7d33064fadf6809980b8188d7422b6bc54", + "regex": "(?i)^https?\\:\\/\\/www\\.rack\\-active\\.my03\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "367e6ac2ea74c82e0356170010ec50edf751e63c049f22ba6d839e91b8525ef0", + "regex": "(?i)^https?\\:\\/\\/mail\\.us3\\-authcoinbase\\.134\\-209\\-118\\-236\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8f9f0ceb81d3736c8dfca6ddb0f779854414eb24335cbac37206d06ff2c0db8d", + "regex": "." + }, + { + "hash": "eaeadd44154097c270ae1d991b588a3f9082e1e8225ab21b73c33dcc87060477", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "9cb0c3122e667b08a5d49af35c11bdfb9d97ec2772eeccc3dfa549797d0e1f26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Orepool(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a620a9bc91334fb5961ab1322df705eb1ba6741c561ad0740ef8064aeab5761", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "54643e8b79375cf07a0667f7c2a36e0f0d4c9cf488b831a0a81dc11d405ea615", + "regex": "." + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+5UK9rl_5f5669jbJPzGgpJVXNDNMiAp1SCBEa_XiIgOocCNaMY9m2QUYIvEkpFLtEUy2rpy9R5FtR\\-KxrfUsfhsrHMQ4PUD0iC665kgtM4VNwATM05eZrT62iO9U_EaekBBPSlSuaF2g_DQfKrBnq951TqwzQLcov11dKGVaJHxzjpssbD0xXrIwlHzjwrSyJF91qPqmQfgLBK\\-gWmc43sPwQtc8kMysaOM8AfszHIsPCss\\-rwEiWswze7xupf4WyE0B5fHUHhU0(?:\\?|$)" + }, + { + "hash": "f25426c23c1ff8a0a48983700451c45194cfa4e60d856d2e33b89aa8e8bf9a79", + "regex": "." + }, + { + "hash": "eaeadd44154097c270ae1d991b588a3f9082e1e8225ab21b73c33dcc87060477", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a7294b364de36f8c2145b326d97c62d277b2df3163ec93a53ba3e9dafbdac9b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9961[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "28bfa3f9994d9dd0f26e7b149c481f6df21ce0a813ab429d0407be7923b57a10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9168[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "245252ab23db466f975b0a7499586fb0401d21a38868dbc4b1ac42a2f7cca587", + "regex": "(?i)^https?\\:\\/\\/att\\-10606\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9cb0c3122e667b08a5d49af35c11bdfb9d97ec2772eeccc3dfa549797d0e1f26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Issue(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84e116f5d06c66a81f2f194ab05252b4ee5bcf7a7310a18f2e7e0ab4ff1b96ff", + "regex": "." + }, + { + "hash": "ff5e734c66e16236782c3fccd7d82584b456dd6966ffc26b2f453f94a5befae0", + "regex": "(?i)^https?\\:\\/\\/pub\\-e4e263abbebb40f6935edeb626d18e47\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5b54b26d48159383b3d4d56aaacd0d3d0fb0b50d6777b3e5ffa03d07134bdec4", + "regex": "." + }, + { + "hash": "1bacc12fa2a266932247800995983713f414f71b2f1ec338c483c2844e76be08", + "regex": "(?i)^https?\\:\\/\\/qwedf1\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+fNp576fsEV8J6YDp278jWwl5LEt5ox2o1A7R4tPItwYoy0NaNAE4lQtAHLfRKlqo_SXksP5D0hbk\\-h7bzy_PAFsRpKCiTya3ywm1qqoGHVpfTm_qEQ8Tm_FOV8M6IQ\\-glDqL82qarXs_J6rK8c8CYRtbiTB9jruPFCaaItPTXQHHSWkqgVIHXULcncR00YDQFuj9oOeYPQrNlB0xBHaUNrn9DePpzFav5ButBT3\\-ehVE46McFqJZaWPuW1Xgdi4vw2fS\\-vfX87oSzEZXguZOVjbX294RQgM_bpjgOQc(?:\\?|$)" + }, + { + "hash": "8e4af728905d552188300e7c730fd2f8e2cf890bc5556f5fe17b0981d6ee1d5b", + "regex": "." + }, + { + "hash": "83fad7248f8ce161362485dcfb5ca4f0781af07922a8057d1aadeccdc0c90424", + "regex": "." + }, + { + "hash": "1a620a9bc91334fb5961ab1322df705eb1ba6741c561ad0740ef8064aeab5761", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "f4e996757c1c87dd29680fc8951e50c8589ac1b79530c91a3f02468f2c15d1c4", + "regex": "(?i)^https?\\:\\/\\/devcodes01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0007d26a48a28d54c0708da638599a6ce4fa1c1efe3860914ceb06d0e8650ca1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f41fc0f6bccbb2bdddeda2e9aa9b6d8b3f0988aea9a9e3295f28c1b3e373fd3f", + "regex": "(?i)^https?\\:\\/\\/rbx744\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2a241ac93e238996b2e0af75ef2956a886ae977691d12cec4f3017a5ba718fd4", + "regex": "." + }, + { + "hash": "32035115f326054984dc22ca88fcd1a4ea21e6d166ce0e58e07a3332d41e84a6", + "regex": "." + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+eYiXLKrBOrUVe5EXr6\\-nN9\\-\\-PpNcJp27pAO1yzv975iBp8\\-Bddzwzw3D9Gox1T9YMukWsNpnikmQTBHeUMGBNyzHuftd3ga305uUhFV2Il\\-GZ6aFthS\\-3BtW\\-2DQZP5CGtLTNMcTAu_Fd06Y7pmXQOyAMz6UzK_wvj\\-e3xAaVsi1mAl64jzt2h\\-pzbK8PqF5aBnGvP\\-7QLU1Xkiufuk8AADssnfTBIl1BdJu\\-otsbKUv2htFPTKkjYEYfneoXR6ddghnvYUSkVEpGBgExw(?:\\?|$)" + }, + { + "hash": "7bd92c173db6950442c05b5435bf6cb8c0fe5a1f23088b3d55b4965501acaac7", + "regex": "(?i)^https?\\:\\/\\/virtualbrutetfpww1\\.hicam\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "a9d32467857440550e096026e2deddc3fe357bd1d3956896498fd207f6de81b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "495a638183eec63688dd358fc7523d4fd24cfd038b907c0d4fc82cbd5ef8ce11", + "regex": "." + }, + { + "hash": "1ea908a52711d3f4fdb3959647523fb9c8c88729014a7a55d969bddb911de30e", + "regex": "." + }, + { + "hash": "44c67f4573b4a8bf98bf8686999959be2fc4cd0d9a945e0d44b1ca9a6b0db74e", + "regex": "." + }, + { + "hash": "b63c2ab0fbff9bad5df0b03952c19b7930017f91c625f9365d79f8a74b0a715a", + "regex": "." + }, + { + "hash": "f69cfb545f3e4f3cc0f5d014891004c82de173621a1b36f037a295b4063d07ef", + "regex": "." + }, + { + "hash": "082e85a5ef9188394511f831bfc87fb17659603692a759f55a695c6aeec04567", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+cHMVzaZigKUOSRU0nZIbikVMgVxuRH52rnKJp3mLjlaFIxFkqgAkZtS_KDMcDPkJ4yEQFn6BsCWAoW3gtxwfDaNLnPs9ncEo2\\-l09B9eryHmGl3idV\\-hEH6ooREr9HoYolWPyTmTkxMtq3GeaY_QOoSJl7GF8lr8Z5AiyzfpHnTcjOSgJFWGmPlYaca8l4uu\\-tK88m0UqiNQ3v6lkmYC5jsTxdB7A_tzDC3bmEguVotVxFcQ77RIuLSOwSC7oTp58zYJAwsM(?:\\?|$)" + }, + { + "hash": "3bd1825dca07fdf49300c444eb3a970d446c0baa006db54027bda57816811995", + "regex": "." + }, + { + "hash": "3f7f898fb06752f5167cc7ee7a52ece2aca717165dcc3690d077886d995ac3c8", + "regex": "." + }, + { + "hash": "0007d26a48a28d54c0708da638599a6ce4fa1c1efe3860914ceb06d0e8650ca1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "0fecb6eae5dc25a1ba726267b18ffb251094623421771ffd99a6a65284239695", + "regex": "." + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+NGkC3Gj84TOVfWml3zAim9H8OkyH2yQv0kRCxEPa_s3_9K4GFub_D\\-6DrJjqIn9ehsCRKPhjeFDN5xbEIraJ4ZjZYPNpjQPxZFAU\\-n6qm9szLs\\-Dgb5m7z1LFOQfhwnJCq6wAVe\\-x1mlXVUBB813GSWpg33acAf1V5XoFT1ofHsfZ6u8lEDf6JPmMiuliLIAQ4lOjj3XXxp\\-Ryy3pkh\\-1S1lbPh04vPReNwZUu2Qii414f_3KhPRmM_dthPbA0YD67J6ER2VTYm\\-1Q(?:\\?|$)" + }, + { + "hash": "493297ebd079a42e4a214449a10c7b11636c7ecc78c0d0f1998ed44d7e5a05a4", + "regex": "." + }, + { + "hash": "7eb4ed148b472b514ed27fe7cc454e55b4b8a92c2df47aae5f7d3ee2adf952f6", + "regex": "(?i)^https?\\:\\/\\/webuser\\-mobileservice\\.my03\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "082e85a5ef9188394511f831bfc87fb17659603692a759f55a695c6aeec04567", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+OaPAZHuWNbPnVyvhvQgxphA6eiulVpCQPB44KrYAW6TS4gP91uVxHPAjZzleGcLsEiPQeXuhPdeMT5UxHjBQYtlxZMUxzw3lOkBiJRUH2cniGgWA4R4VssK5WKqEaeQ7KQBPRGtd0j2dWVTfDBYlW1grL7EqucuAq7_pn0ir1RtBj7KNA3lM9vIgZHBLfn39T5pDcXc4Y4nS0uNU8C93l0fgmYiA48fhnfFI53df16aXMtzsydo3iw12GEefyRAJEu1HFBO6fjE(?:\\?|$)" + }, + { + "hash": "e7994ed7e2d624e4054c884a01c1a3cc150494988ea30c5d851fff89cb1110fa", + "regex": "." + }, + { + "hash": "da75efd9c26e62870d92aea1925cb86b117b0f9ad6f0397b876b364ccaf08fef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zacqelvctmbvqfvzvilcdl[\\/\\\\]+post\\.jp\\%3E(?:\\?|$)" + }, + { + "hash": "a9d32467857440550e096026e2deddc3fe357bd1d3956896498fd207f6de81b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "6c5ddd9e5710935ab7a6c98984389cedc435e007ec7fae5efc9c16c5040ce905", + "regex": "." + }, + { + "hash": "8aec24e660d58f8601e2917d95b9bd709f68fb8df9320cdd42c923e50e24a2a6", + "regex": "." + }, + { + "hash": "28bfa3f9994d9dd0f26e7b149c481f6df21ce0a813ab429d0407be7923b57a10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9168[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "28bfa3f9994d9dd0f26e7b149c481f6df21ce0a813ab429d0407be7923b57a10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9168[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "deb667bb4ffeb2240f3ecd8e4f2aec7d6902576bfbd6c2d5438ab24d65ac2149", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "0dcafa24b4c4e6323351d69323f2238053d52b2649b60333e27487b8f01c6d6d", + "regex": "(?i)^https?\\:\\/\\/trg9849799\\-ist4884380077\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e2cec08f347b31a78467c18b57d938e6cc846ca4d6b254201800f16b351b4db5", + "regex": "." + }, + { + "hash": "347fd44a163769bbca6c615a768d81c62ea1d93757c1782073f0a06b09642034", + "regex": "." + }, + { + "hash": "cddfbe57f8e3533785eb9f941baaf6f3282ed7878365cf184e9fcb2a35eb6b9a", + "regex": "." + }, + { + "hash": "aea5071d48a01e33fa16733e5a8b9f9be1fbad7dd847014a75eb4f0895b5a3de", + "regex": "(?i)^https?\\:\\/\\/rbx744\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+mK\\-TA\\-fajur8W_I8_O3Ev7iBMhcCjG7\\-Av7VCCzkp_VzSH6WI7XXXEt1G0YUs55sQLSbgxwORLNXYh10\\-hi08J0JWR7rvoEx0OS4eB84SzdCXZ4u5MWiCOs9HC4xfCAaP5e_7xGjrRU14YHdGUANZWDxF7BEp_D3evwM618CRfhqynieAO4hGCuwafGd3YU7ryPk6L\\-rD9MMPLEtIV1m1VjonzxgQ9\\-1uMHlrQ2BtDonWzOw8w6\\-0ntBpI4ebQrRuP4AT29uGvY(?:\\?|$)" + }, + { + "hash": "da1c6f8fd9412999ec5f3148fc70c95db52bf12c317e0aa75d93e315f437cbbb", + "regex": "." + }, + { + "hash": "a0c2fb172ef78bf3c9f306a205abbb01aff7df75a36bdd70222b53ec0a9c9fd2", + "regex": "(?i)^https?\\:\\/\\/akshay53156\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "559c9ad0a760954870bd377e8e8693587fd23eb5b11c7006cfe5b8754e95ee68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9977[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "f1adc3b12f71cc2565dd1bc31fcdedc8b4cc5fc4a2011cf4522f0f72c8a21718", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "604b9af31fa7c525fe4033370b44ad57b054404eb778fb94bb6e9c044dd750e0", + "regex": "(?i)^https?\\:\\/\\/rbx744\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fe4419761f55187466fd49e860aaadbb40e1a9f3331f5896e7f739ffed31d5d2", + "regex": "(?i)^https?\\:\\/\\/rbx744\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "73638b82c015a63e7eeb04fe8003d1e8e070141565dedfb061f89c2895aa6f81", + "regex": "(?i)^https?\\:\\/\\/rbx744\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "559c9ad0a760954870bd377e8e8693587fd23eb5b11c7006cfe5b8754e95ee68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9977[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e187675cc7dc9c14f55b335ae2c7e132e257c9599dd230a587534bac378753c9", + "regex": "(?i)^https?\\:\\/\\/rbx744\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9d1f47f2c0b441b80deee336d7e9a793ed6d93362811e11e4c27edf229190eb0", + "regex": "." + }, + { + "hash": "5a20ffc47e0f2b333960bd0ba17c407a98bfa243d3f159c0ac3951a4a740c0d0", + "regex": "(?i)^https?\\:\\/\\/manfiles428\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5dc3b78d2419af224949d982e5567f96675581e1cdd8d28dcd25d919d35e46bf", + "regex": "(?i)^https?\\:\\/\\/rbx744\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5bed21f18954a5a9d0779e8aefdcd081cb7b7f1e225aa1a6db37bbbd6b2af181", + "regex": "." + }, + { + "hash": "31a5cbf232e49bc2123ba75131885e4e279467eadadd07a37513209f3dd33672", + "regex": "." + }, + { + "hash": "41dd9a8c6386d4f401eb75fcb9310c409c20592f2bfcb9a651baee531ca3ff17", + "regex": "." + }, + { + "hash": "6e7046fea35681a95823eb5b99c205a4a4774331946810e0deaa0c5d2c04dd34", + "regex": "." + }, + { + "hash": "28b329a2adb7e5f7e76bfc39b72b4eb972c2bdf56df70b538a14922eb22e034b", + "regex": "." + }, + { + "hash": "3524b6258d3f5cdb9be64cbcc607de74ad2e44c4414e5152bd96d81511b99eb3", + "regex": "." + }, + { + "hash": "93a97b453472b6b9c742a38d49b68b2aab00e330a90f62fb9eceafe5c519b2c1", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb75c1d9209d813adcf292929f84d131d51840ce14b7a0f416bdd60df430f20f", + "regex": "." + }, + { + "hash": "eb36635a248a2af9d96298070e5d51fd21f58edf0851149691a6c807dee4389f", + "regex": "." + }, + { + "hash": "83bf5d954033f33ce6c2c5e9a4acf2da772993a59674e444521d85e52885d2d7", + "regex": "." + }, + { + "hash": "5c1264599e1fa877609b931102e6066d43ac11745caf8da4278e0c2bb54604c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f1adc3b12f71cc2565dd1bc31fcdedc8b4cc5fc4a2011cf4522f0f72c8a21718", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "e4f311dda04724ed620263b42f6e5b422cc1609995be933a4a75dccae7e0f103", + "regex": "." + }, + { + "hash": "2f90842bed6ee62e4b05260be8e8d47baf373655d503da87d621a142450896c0", + "regex": "." + }, + { + "hash": "6993b4411abe9a6563f25e9a04b7bf1966481ccb020ac5031dc51113739ccb35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "f1adc3b12f71cc2565dd1bc31fcdedc8b4cc5fc4a2011cf4522f0f72c8a21718", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da75efd9c26e62870d92aea1925cb86b117b0f9ad6f0397b876b364ccaf08fef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bcjmggnpvuvtxyao[\\/\\\\]+post\\.jp(?:\\?|$)" + }, + { + "hash": "c9196c783f53e9fb5a66bbe1782eae81ad95719534055b2fbf4a3186db1935f1", + "regex": "." + }, + { + "hash": "f1adc3b12f71cc2565dd1bc31fcdedc8b4cc5fc4a2011cf4522f0f72c8a21718", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5c1264599e1fa877609b931102e6066d43ac11745caf8da4278e0c2bb54604c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "df68bc4ad8a7953bb88a78200a57ee3a8a3bbc74932b91e11a4592686d7e4090", + "regex": "." + }, + { + "hash": "663efd98d5f180286932fc5c394c8496b32572653f3213ef174b0544a4bf0b81", + "regex": "(?i)^https?\\:\\/\\/www\\.us5\\-restrictionsauthcoinbase\\.198\\-199\\-75\\-174\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5ee73d3cf89814f02c681af3d900cb4bc06225b202fb013d73d1461b0805bfab", + "regex": "." + }, + { + "hash": "aa8051ffc51a4a9e6ff031b0e5b75d95a5abb2f2831fec96427116339859daed", + "regex": "(?i)^https?\\:\\/\\/matador\\-matador\\-710\\-710\\.tumblr\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=97717355$" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=11324632$" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=88868044$" + }, + { + "hash": "dc4a0bda2e1ce3005f435acb4a922af69939760ef4ae5d3e35296abf863bf051", + "regex": "(?i)^https?\\:\\/\\/dfgdtgewrerewr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b835ac49569df9664c4420e42c3dc9f37a903ca2ece095d0e2a15729ee9af720", + "regex": "." + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=49860254$" + }, + { + "hash": "ebd6af33072ff1933f8af0e72869018cf7992274fc15e12f309fce1746e8ecf2", + "regex": "." + }, + { + "hash": "997c4c9fab451f50a9a726bf94239f91020b6f206a14bae3630b36c9d8a94a6f", + "regex": "." + }, + { + "hash": "b0f8643fedb53a723050a387c245f8b3459f3c55941d1798e3c0851dc48608b7", + "regex": "(?i)^https?\\:\\/\\/pub\\-08d2f1f66a5a49c5b458fe7ca4181498\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0fd01fc36eca751ff454f8976e1aa23c70a08bcd0591ac31c2c7b3cdaca09331", + "regex": "(?i)^https?\\:\\/\\/shreshtha16\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c8886e7918e2b7a44d27c8594925c29ba7cddcd4223fdbac8d6a57db21dc3e89", + "regex": "." + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=24498930$" + }, + { + "hash": "fc73a149090c9554db54df9d5b2cdcd34c7dbbb9c26e57f80a2c1f4d99bde4f6", + "regex": "." + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=84646441$" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=37661366$" + }, + { + "hash": "a6019a2b7862bfb99988849f0c1f88eea9b7bb873778ff66557d6b001774c84a", + "regex": "(?i)^https?\\:\\/\\/trodlink\\.studio(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aa8f3c8765808171d337bbc0b102b40075107501797716bc640581dd6bbe38cf", + "regex": "." + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=22513693$" + }, + { + "hash": "35123b99be6a1a27eae589cdd1b0279a3194aac6ecea611d52566676ba575eda", + "regex": "(?i)^https?\\:\\/\\/dfgdtgewrerewr\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6374a1f231db8d6d5320e296b8d5d1de4f28d08b66cc5578e2e4c86f0374b400", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ch(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=27627091$" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=91977555$" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=11507617$" + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=142565872\\&task_auth\\=cd3061795b6bc4180c2e4372aefa4f44\\&id\\=142565872\\&ignore_redirect\\=1\\&key\\=de3df2712e34aea8a061dba732bc9ef1\\&url\\=aHR0cHM6Ly93d3cud2Fsb3dwcmljZS5zaG9wP3V0bV9zb3VyY2U9ZXZlbnRfbmV3c2xldHRlciZ1dG1fbWVkaXVtPWNhcnRzX3JlY292ZXJ5XzMmdXRtX21vZGU9c2tpcF9pZl9leGlzdHMmdGFza19pZD0xNDI1NjU4NzImdGFza19hdXRoPWNkMzA2MTc5NWI2YmM0MTgwYzJlNDM3MmFlZmE0ZjQ0$" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=45423421$" + }, + { + "hash": "97b6ec7070ea6041e640b6b2f887a682485999474c098d5a32645476f07d25d6", + "regex": "(?i)^https?\\:\\/\\/dfgdtgewrerewr\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "69a22fdc5e37492217b513c9849956478c3751171fffc89d43857c72688f275c", + "regex": "." + }, + { + "hash": "365c5e27fb43e34fc7de14f1262e7f73a583acd9b639cf9e8cd7ece51c5719b2", + "regex": "(?i)^https?\\:\\/\\/dfgdtgewrerewr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fe0e7ae64c9979fb82dd9c4e1346fb3d0233cfbf1cd1bb34cc315c4af2bc42c6", + "regex": "." + }, + { + "hash": "0c8b0c1a4130953954255abaadffac6ec42dfd5fc631d1654e56a61f793b28c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=142565872\\&task_auth\\=cd3061795b6bc4180c2e4372aefa4f44$" + }, + { + "hash": "fbc82bf2703862cdbec7e15ef7a4ce027ecc205efb9c27577e32c43ad75122ae", + "regex": "(?i)^https?\\:\\/\\/dfgdtgewrerewr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=31128950$" + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+x\\-iqA397GCwTSHbNonwtXglmsr5s_4crJGo3aBxEJJ_TkYppO66nYwJLZl3Y6dmRe0B0NJjh82BQluusXdMbm\\-AdfYuiHLJYE4e6X3yYdyTFMXFhhdbnQZM4B5bFDc7UX54qhM3x_GRBTa2mVjlVVLOibP4JXhHV6uaXq1pQCWR1C0g1dVC8hvEtTxyHv4ZEnfRd97o2Mp2tkDsWkQIKYeWM\\-5GSmfGwiihlmv\\-9eukGEFe3BcTVtjf_F8mOf0oMqgtYmkLhfT9ldg(?:\\?|$)" + }, + { + "hash": "4715fa64220909c1f05a3334854f82750e9ceb557b3c5247b6e230077aaaa91d", + "regex": "(?i)^https?\\:\\/\\/dfgdtgewrerewr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=33099677$" + }, + { + "hash": "76d37bbf29fe6abdd617f4a899700d1cb4b8f0088485ea81ae9d9b8a592c51d7", + "regex": "." + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=85490680$" + }, + { + "hash": "1f8a1cb26c9669bb359229424d2bf6ddd8b7acc9a68e08a19f60ea4025821901", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "960f62dcfddbe03311a2292e0ee66a3d7765dffd5bd06adaf030663c27fc12d7", + "regex": "." + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=44010906$" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=78419304$" + }, + { + "hash": "1c41503921bf0f7627805252c1c4e541c589f733e90bb858d18b501bb89e8cd5", + "regex": "(?i)^https?\\:\\/\\/dfgdtgewrerewr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=74185843$" + }, + { + "hash": "3522d18424d75c7bc4a163bfe02827f45fafb4c650b0415cc3e4adfd92e19cf7", + "regex": "." + }, + { + "hash": "27260b5f01352d2fa6dd504e170190f4ea3bc8fe67428ee38fc2c6bbf63a7c31", + "regex": "." + }, + { + "hash": "82c5f48947b823447461e1c4e00fb338935c95a239a244e0fc3717f01f86bbc2", + "regex": "(?i)^https?\\:\\/\\/dfgdtgewrerewr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=90748386$" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=34587343$" + }, + { + "hash": "79e269ab185eb4452abd926071028fb1cbfb44bbee4a5125ce34c8b51d8727ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]*\\?i_code\\=55107438$" + }, + { + "hash": "8d99eba7ce6a05f60a7a30be8f0863fa35f90bff7791f18442370cf4f692c137", + "regex": "(?i)^https?\\:\\/\\/dfgdtgewrerewr\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "79fddafdd3c88fc868ce893bebfd85b8e9d8006a3420fdf05526da40f6bb5ddb", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ce1191fc5043f1f07884ee260906b33ff7f8227376db1a33611388128d107c90", + "regex": "(?i)^https?\\:\\/\\/robux\\-rewards\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1d7dbffcfc3288d83d77b2fd3491b3c3c1c1458f7db2ac05329b9c44ebe5ffd1", + "regex": "(?i)^https?\\:\\/\\/robux\\-rewards\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c83df3979e48a9ca6bd9437c1880393baf880fb4370cf51f01874ca201a50b70", + "regex": "." + }, + { + "hash": "4995f02cdac05712f7424eea9ef71cfea0ee2d85919e8ec2edb38b0c21613b18", + "regex": "(?i)^https?\\:\\/\\/egift\\-robux\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7642c062dc0a3e0c5a4c81d717eca2bbc17db31e8e5296062bcb729bc8c963dc", + "regex": "(?i)^https?\\:\\/\\/redirectionaustralia334\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ffe40bbcc97ecdcb2470e0ec9b56d219ff6eeb39ffb980b99dfcfdbf1628576b", + "regex": "." + }, + { + "hash": "6d2f80fbf4cbc2fc58099240f5ebd9eab1218d635cde22f0c807810c0e4555b4", + "regex": "(?i)^https?\\:\\/\\/redirectionaustralia334\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "137965c8d6fa65515b7d6e565b3a7c9f38f2810304918ff61b024b8235ac7915", + "regex": "(?i)^https?\\:\\/\\/redirectionnoreplay354\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b40ca57353c908b220a4629c8e3c3feee9be44ccbb8fb0f2daf3cabc7c806800", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d1230e9052a44590ebb74861ee369f3e65b301caa27a922243e25c2666799fd7", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4df552bcba53753c07eca7bc2e60e06300cfdcc3e043f455915f2fd8e732c9c4", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "512d0399be29c800e37eeb1330c0287be042affa8fe15172b818e84dc0efa5f2", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "451eda50e1319183ef3823bdf76c6bbede723b3691eaa3d49c5f8e7f95b1d651", + "regex": "." + }, + { + "hash": "752514b2c3e5382e2e257857e3102fd508ea2d0130fb1c9ac40752cd99fc2e49", + "regex": "(?i)^https?\\:\\/\\/pub\\-1b440921a1fb4f2a885ead27dc272a3f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e091febe97d3462e2d4c964601e4def920c2ef5a8ad4880635cdf448cd9c5f7f", + "regex": "(?i)^https?\\:\\/\\/redirectionaustralia334\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c6f9dc345d63d904f7290bde98f87ab93c6364e8b10c3932c05ad099751ced1b", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0b015cd943d127f1929fd613290cf1599a7be16a928aad0b30d4fe27078d9770", + "regex": "(?i)^https?\\:\\/\\/egift\\-robux\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "81e1bf21c7ada7e2109cfa11dd011bfb20207e2e87dba7f76477d34004672a0a", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8ba1d25bd8136f1f4dd52e422c924c6493d708f4faf0712e2b9d77fd17563fbc", + "regex": "(?i)^https?\\:\\/\\/redirectionaustralia334\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4f2b41a27bbcd6c89b08a8d2ba8f0851f36005b60b5c644d4b594dda5d5b2ab5", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ed421adeadf5288df25b7feca2a1c1034420139439efad774b18ee97421cd289", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1c399432178ab10b4c7b4252e8d8e6afb69a8d4db329d17075488830c938b5f9", + "regex": "(?i)^https?\\:\\/\\/redirectionnoreplay354\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ec1c3f0bbdcf6576f2167d943204c01ebcd17269d36f79b4f4116376db67dbbd", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d3cbb30938a46d210660e70622b6952234cfd0998d8d5efcfaf31a4e78f47c27", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "aa09d3cf7bd5f63f52469b0aa429372a8acd10d2b6ea7c448e8bfca698e55daf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9070[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "55fae50a6b65c180e04db9fe23769a6ade71ca13c038191e6f4fe3314345e4df", + "regex": "(?i)^https?\\:\\/\\/robux\\-rewards\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "57b132201bb3e5bbe514711b689cd3ca0912741eb22eae34a5d76218fade6688", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "62b0213d52d02e0e8cf012a0a6012361c28d80dd98dfa40939db234a05782ac3", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "146c7397c862e02cefffbe7b064f743fa68a3e1a36d28dc3d9c24d9aa96d7234", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2dff5149452262d7282fe924483f790a38d91bce17873b5e21d0be83eb75f64a", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4ecea40feacf1afedcb7704496d4a6c4aae92b9c3c1ffaba58e2c2cd2d58663a", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6bbdef447f9c6a43890467b166cc844226e0e56c325c692ea297719c9c4e850d", + "regex": "(?i)^https?\\:\\/\\/egift\\-robux\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "005daf79ac895145fada358e8c0f54557c09c5280248915fc7458308f99880e0", + "regex": "." + }, + { + "hash": "5b2939738528f58a06246e87c06fbc69d55388021857239693f2277da3aca671", + "regex": "(?i)^https?\\:\\/\\/redirectionaustralia334\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "75cab078bc87d9f6aafc531b832addf7997dcd9774c8482a948d943d4bb6483a", + "regex": "." + }, + { + "hash": "4f648dde387a14458433422e2f9c1dce36f694521230efc948ee99762b6e78d0", + "regex": "." + }, + { + "hash": "68de696ab2fcc76c98baf15acc761b022092a5d80e8516954fadb17a74f8f6cb", + "regex": "(?i)^https?\\:\\/\\/egift\\-robux\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9f48689f6dfdc9abce47f9e7d82b4a56ab697c7f655d503e0aea232100db386f", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8f64706701d64fab5f2bba3cd73a1779a558496d4cfc6796b6deac1f5fab8819", + "regex": "(?i)^https?\\:\\/\\/redirectionnoreplay354\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6f5aa5368f3663d016906bf6daf029cfffb9e166fa5327579bd391b906ff6940", + "regex": "(?i)^https?\\:\\/\\/robux\\-rewards\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "05c12e6eb8490aa0f97ffaf27569e4583bf920c5ef205c47011f9ec7b14f1a13", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cf662d220320a435fe7f885f6238707384c24c3acd955c849a549f4c55933887", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ff752e2b3826ef1f631ca1ffcc52a5bb4b8390fa85652aa508b60275fe30151a", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "93527d6afe36a5cdd3303b78f0477381203c92458c191a6d3a5c6da37bbd99e9", + "regex": "(?i)^https?\\:\\/\\/www\\.144\\-172\\-84\\-7\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c8178a12f339a34b2ab41d94157bb2347ec980cd1f546de46f9c2830e60f3a61", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "18a72d73db68b1b445bf44b481560e274d25afab585dacdc891449d7a28e47c4", + "regex": "." + }, + { + "hash": "b5fea25931d6ae09f6237a56c879d2fe3b492f5968e08d853bf1da2c6664c217", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1e2bb111987575791dd23e458a52f3117a7e3d117ddca8fb64622f081abfe2b8", + "regex": "(?i)^https?\\:\\/\\/redirectionnoreplay354\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "318ab39a90c71873f1b4e25d9a74206db7d7c4b5e795a9403ca9ce84cb233a41", + "regex": "(?i)^https?\\:\\/\\/robux\\-rewards\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "73f61588d9debe2c8c228849a0638d73587ce853ea9ba98c39a9034d8d911db1", + "regex": "(?i)^https?\\:\\/\\/egift\\-robux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e8b4b5425d08c2267fbf383b6f931ba02cd149c5b44daa6b66e917aa5ace115b", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5b5dbc2580aed820045a01564812435ce03590d816a0ad0b2bbc1d5070382c51", + "regex": "(?i)^https?\\:\\/\\/redirectionnoreplay354\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "dc05cd8b39e62472194ef7a9bc94e5762481e6194343f4f44ce08ef7589cf0f8", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "09a78d942d867ed8bfb6a29bcd775c5c300c08d1717d43468d4a4e6c207441d2", + "regex": "." + }, + { + "hash": "f53ca806ef7b7129a52f72cc32206dfb01871768961e1ebfa6cc2555d72a232b", + "regex": "(?i)^https?\\:\\/\\/robux\\-rewards\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0c8bd0a4fa87cc296d2ba5e9d6d6f415b65c5b7da65b1b77d8ddc13697ea3695", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "71f1db0854e3aa03265cc6a4fdeb38982e0e458b86d321fab7067102085d8deb", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d1a4728938253f258dea7c75a4b0c6ba84a7de273999c8ecc5455cdf253ff87e", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "52c275ff85a2852bc404f9ea4099c69a5ad8a213727a9a013b5446ed091977d6", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1d97d5ef90e896df2eb314782d363d796b43a36c7783c22fc4f76bc6ec51394c", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "188463ef085dcc19f811f697ff598405e15ccab9876a030b15779048ca2818f5", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9c28aa1d682e1623fd28652c30fa54906c1cdfc56e855909f8e4db18c5c6003b", + "regex": "(?i)^https?\\:\\/\\/redirectionnoreplay354\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "164aad288594151dc42787a1e937ac28b6d0b88dc60e48d90ca40673ed7f1955", + "regex": "." + }, + { + "hash": "0957ca1e6ebddcf66778153489ca54287a9c3677d662d8f9c9f4d65a0eaea763", + "regex": "(?i)^https?\\:\\/\\/robux\\-rewards\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3cd83fe9034621317e1ef93b722d6aa91de6cb244907729e41de766cee66c2e4", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4ecc57ea567c5b49ae27ac3cd86bfa7ec4abb40b902289368ab552221e3ecb9e", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "934959076aa454648b23ebda474716ae6817c424b5b9c4f7c23f23fc47e6c84f", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "da8da20ac63c0195758f249a8762aa3def8cf7fa2dfe39a9aa9e46fba7415ff4", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cbbaf8ccc807c1e6be1574cca5439beb485f6624bd2ccfc3a4f490189dd425fd", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ac2e9cf840435a9dbfa8c0e2b524e9e7ff50b622af210cd78349c7ffcb5bb3a4", + "regex": "(?i)^https?\\:\\/\\/egift\\-robux\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7f83777d86bedd50d93ece609d24ead5599d1e1a850b0dc5887c9f81d0c5cece", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\-online\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9f8058d3bd7bc2a8b822fa0a815d18f2bbf4ed481c5c6e03485a4b528cf7f70f", + "regex": "(?i)^https?\\:\\/\\/egift\\-robux\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "56284abfe598978c9d51803d4cca73a32148c1a2034e41a7b2db0dc6b1b02ca5", + "regex": "(?i)^https?\\:\\/\\/robux\\-rewards\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "09a7ae09c71a5b18e559a2d7f8eeb1c91063b9aa126047fd87b5ace1157fc1cb", + "regex": "(?i)^https?\\:\\/\\/egift\\-robux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7534cb3b5e7816458d698049548f52df3b2bff0109b3fc2a4b0b956b0e004275", + "regex": "(?i)^https?\\:\\/\\/egift\\-roblox\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2723aa60f7f811ac8be9e0962608141c715603c2ef5a0a30de7fcb83c2594ce1", + "regex": "(?i)^https?\\:\\/\\/redirectionaustralia334\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2d1c230845d9c37c7e7311df48726026b8f0c07aebb801e1e7e79956a743641c", + "regex": "(?i)^https?\\:\\/\\/redirectionnoreplay354\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8613f17a959fac087ce8056680683660fc3488af9285ed389ea1e1b9d94759f9", + "regex": "(?i)^https?\\:\\/\\/redirectionnoreplay354\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b41f63da92df19a5440a2ff5fcf7a07db1d054cd8e7fc5269a930280bf9c9770", + "regex": "(?i)^https?\\:\\/\\/redirectionaustralia334\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2f449b88cf37cb05575b9d96bf3138220ffc91beacdef8b467b76985cd8f2d1e", + "regex": "(?i)^https?\\:\\/\\/redirectionnoreplay354\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "11eed8e4abde535852e474396646c497f8dd82d677bf6fbdd4095c65b2168860", + "regex": "(?i)^https?\\:\\/\\/egift\\-robux\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "36f9e89fcb7c06116cf5c6b69ff658fc88bccc81d45c23827236ddaa857e1508", + "regex": "(?i)^https?\\:\\/\\/signin\\-ledger\\-nano\\-x\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4cb247ba1e795c1077891eb68ec865137452490e7dba4274621b06d2ed04f1c3", + "regex": "." + }, + { + "hash": "444365b41e06bad708d389a7579101cba159c1d914aaeed63176d68324a8c9e4", + "regex": "." + }, + { + "hash": "c726e8b0c4642e7c0be1defe0f3ccd701a57f6f764ce43da354049f0d21d4254", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+\\:8880[\\/\\\\]+guest[\\/\\\\]+s[\\/\\\\]+8lzur5bw[\\/\\\\]*\\?ap\\=d0\\:21\\:f9\\:8e\\:d0\\:2c\\&id\\=7c\\:70\\:db\\:46\\:1d\\:06\\&t\\=1724675556\\&url\\=https\\:[\\/\\\\]+downnloadd\\.standard\\.us\\-east\\-1\\.oortech\\.com$" + }, + { + "hash": "ca589e9c045fe2e1914a126ea7b08cdeb848a1f38fa984a5f60910988a9d9c80", + "regex": "." + }, + { + "hash": "8161811edbb4e8fa3f9b36c61d7892c8f2637cbdcff03661c4f6d63c6ebccc8a", + "regex": "(?i)^https?\\:\\/\\/attnet\\-109822\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "69c15eadaa4547390cb045be7ffc88182ed122a6a0cf4876fd04507b40c95196", + "regex": "(?i)^https?\\:\\/\\/abhi0324\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0f6e2093f54503b13113cb130ea665b86f015aca5bae3a55350e2650953327f2", + "regex": "." + }, + { + "hash": "d64a9e54d1c7e55b363b1fa2565fe843379afcd7e18bd09b015346c9f130077a", + "regex": "(?i)^https?\\:\\/\\/lindex171\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5e34800548b0f14c549c8dd62ca004f73dd3f9356abe2c6ba98f4eb7fbba548e", + "regex": "." + }, + { + "hash": "fde9009d6020bb044e6fc546e8c623edda1beac0246e112d1f1fa9518db08190", + "regex": "(?i)^https?\\:\\/\\/pp\\.172\\-86\\-96\\-191\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9a610164bde3e95ef2870dfca2728ef527163d6a4707322e161b96cbbd03057d", + "regex": "(?i)^https?\\:\\/\\/www\\.208072064032011406040\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "8d5451662af899c8f343530460cb98020dc6dee75f18273f799437ad9e99cba3", + "regex": "(?i)^https?\\:\\/\\/baljeet\\-13\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "94d77be3b9f0a8c732df2c4f036528f06d00f374f7eb47ee3a7f7251a8078b29", + "regex": "." + }, + { + "hash": "a93cea1e4c8148074dbe917d69036e40f0d8c541c41bbf9d70d64a3fcdcdb1a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ch(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8f55f46bb1a952ef74e744527615917bc7698319fb3c7e5c6da823ce31527471", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aab2ee657ab4b8528abad493f4aff7d85a80481b83261427dabcffabdffa4521", + "regex": "." + }, + { + "hash": "26854812f9656397eb5ff3035fa7895badf94e5409e5dbfdc5a61c27258d954e", + "regex": "(?i)^https?\\:\\/\\/www\\.pkjatf\\.vip\\:9083\\/?" + }, + { + "hash": "50e7fc9c214e56d947e3ee318d44123d43dede68744e6488be786ff532bdb272", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "287f23f96de62f9b9cc091e8c25da1355a42fefbc2e1ce808fa70e33ab57b23b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "e881d74b3609ac0c7fa1cea7372f567f3131c5f7a38117ff123a2b1ae2fc05e7", + "regex": "(?i)^https?\\:\\/\\/icergemsvip\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "47710744e90d7ba20234eb1cd8af0e2206874ab5af02f53d8453bff8aaccca11", + "regex": "(?i)^https?\\:\\/\\/vocal3\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9947e657ef150f733afd765e09e6e88cb4ff80a96adde9a95e33e9ff762bc187", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "56a563f10d6b64db03e2112c9d8475b5430058f55034efd892cca1b380042d08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "ef88e173b9de74fd43963c8c4e511dbd5d37535a1288ad69912fdb895901d08d", + "regex": "(?i)^https?\\:\\/\\/icergemsvip\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1645fb92f928723a2318a76e298186403fd0430cecb20397edd46b4ca5a2c881", + "regex": "(?i)^https?\\:\\/\\/icergemsvip\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "59570e2fb859425e5d3b89edc01f52192d2decc0ab2ffd13674995b662a695b2", + "regex": "." + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "5268dd40fbe57b82ebe309f9bd38f6ce4e480f8629cec9c383dcbcd62fdccc93", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Contract(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fb9dcbac74fa2f2cb7a7466150d35f232cbb8406793c5f0f61670bdf0da111ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "83863d7f7f61ff925cea5056950ed104e0b21a7f8f1f13af32e5860526553525", + "regex": "(?i)^https?\\:\\/\\/16510815\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e2ec94190d3734ca7082a8b5da3608c52427d51fca165a4e82dedb2ea1a1f346", + "regex": "." + }, + { + "hash": "b1132a4a7f65d9b1690ed5a8d5a750af806b2c0b5a3f52e2a2189424f3fef50e", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e49c0f984e893280e0844648b85264a1d9b00ea2f148ebf3b7971cdfcdf13", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "56a563f10d6b64db03e2112c9d8475b5430058f55034efd892cca1b380042d08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "74a80bc31bcef69668af9f28a5869429428e1ca1ea9f0328510a94f828dc82b3", + "regex": "." + }, + { + "hash": "6e5e488e4028bc0f90e5009dc3ee112cd53099db521d2b8619532f0ade09c712", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "5309c5a1a2d5755aaf71ec0ac729abdc68c119060497e3d239d081bf6b8477b4", + "regex": "." + }, + { + "hash": "1fa5bfb53b7d9a9540ae37dedaf345312d653563f9a16f92df451144715f6d54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+faq\\.html(?:\\?|$)" + }, + { + "hash": "1ee079295b5c217915861f5adbdd1e0e561516835a345a6749955171f7c2f6e9", + "regex": "(?i)^https?\\:\\/\\/79147852\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ed3f39d0c9c709bdb4a25bbf71f703b1813a8cd2c05129cf10430432ca675977", + "regex": "(?i)^https?\\:\\/\\/icergemsvip\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3bf0e912896694cb97dd52fa912719f8979e3670aa25b14334a537c8cf07e26c", + "regex": "(?i)^https?\\:\\/\\/icergemsvip\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1206904e5eabd0913fef49f3900ad25d40cf1ad1b5c1395cccc6c3777219fd5d", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6f9029efc1dfceac05e3692e9921e8ce89fac09cb7ec4117277ffa6c1f637713", + "regex": "(?i)^https?\\:\\/\\/icergemsvip\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cf063b15507028c554d626bac3ce5507022489a3342e88fec4d704f207454feb", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ebdcdf765f38ced2a4e25c1a6acacd1e24d1887c43fedf4b063a3767b7437eaa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9070[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d1ecf78e1c134fb9386aa11d85a61417ae93528b46bc663ef872277503401821", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7a3537568aa9cc81c6e8302ee754e6841b45d2383f7418ecd628215c146a9658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "ca70050bc4c2f7111cad31c727f9f23a8192d73161c52a16c47dcd1e652a7308", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "88782914422f08c57450cd90cc104463e7cb7e46ad36f752bf07f516112f2a6e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+easypark" + }, + { + "hash": "1ee03d05264b1cf633e78eb2bd2f22d2aa33710b5558d682b20a8e487dc6567c", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "84779aec3cf7355c5b0881a1b073f191816e47c51b5b48b2cc6293f7304432b3", + "regex": "." + }, + { + "hash": "b2fb44f98baeadc5faff74d1e7afed2dd672422b3cec732799287bbd5f8fc030", + "regex": "(?i)^https?\\:\\/\\/icergemsvip\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ceef94c8b192b5aa0643bca278865324d749618cf442a55d39a6acb730d82193", + "regex": "(?i)^https?\\:\\/\\/bagnost89\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "84d4844ccf003035bb354e0c2a4ad80da0e26d34f8b64e7f319d818f795ae5d0", + "regex": "(?i)^https?\\:\\/\\/hdogems\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Orepool(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "72b583bbb9e18aef351a80910cee6d1b9b26b03bfc332dfa812c05c138372d83", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f3692a81f4db92d5f7c52dbbaada904761fd39769389b48c8b39d7467cae22c2", + "regex": "(?i)^https?\\:\\/\\/efzfezf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "daf146aa6cd62e64118a358f309db55dab26b94ddb417a3e518db9d6a9481e89", + "regex": "(?i)^https?\\:\\/\\/robuxifkc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c16f83e0e3b1955553f7060aa24f0eacfc666ab2149f933d27d85c0909daeb8e", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5883b09eb408f29ba2f82cccfe140f10bea6dbc0d084691b878c2c3abe50c42f", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "59b7eeaa8a7d6ecd16881d737947c392581a1086b9bcde6499d53befa0be2e91", + "regex": "(?i)^https?\\:\\/\\/efzfezf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f89bf5e4b0cb014548f33f7a3ed6489f00ec0388083bc0ee3f31bef973fb2765", + "regex": "(?i)^https?\\:\\/\\/robux\\-gjrih\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c83d38b177523e3dfc6250694871c49a6a01f13a82120fa91feaf933b7cb5083", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6461e60a7e050d38b45503b3197702b0780d6bee992ee9792d3c9cd201885bd0", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2f811f9964d7cae304b2b296bd91db057f9d828673e417f732c2e5c49bf7930d", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c035a6e10d1bb101445317198d8a7cae9e627092334ea0b9aa0df31fd5ea9866", + "regex": "(?i)^https?\\:\\/\\/jbhfxghbjhj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4cb29914692da8e08b91e14f8e5ae85df7b5fbe8dd7b57dc5411460d24890513", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "904d680709b5c6226c3ec4f0d4d043878949077ef2aaa64c8c81cc5ad641d43f", + "regex": "(?i)^https?\\:\\/\\/robux0sn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "829e038b28f6c6000b9fdb4352b5554a1c755ac1faa1da07ddf7fcad74b2109e", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7d2b7ba58eb5030557c27118d2a4fb377da7cb291570e82d33f9dd93a2ddd962", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f94886a8c7f10ba04b230bdaf606648acad2a907b6e4b23f494059848237f66c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+101517614[\\/\\\\]+299419[\\/\\\\]+3(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4253a7ef506ab1fc008b3638da432c219bd7ffa174a1cea402b2c8f2809cbea9", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d639c817f2d85fa96d5544556d2149da91d8c41ce44535b3b31016a9404bedec", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e36a7664c0b0185c0c51a4211ef3e75400a0d0753fd994f97267876acc2fe468", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e8700f9af23f6f4e8acaa7678a35c4e09a45160fdc98b8c170ab38071b09e1b8", + "regex": "(?i)^https?\\:\\/\\/efzfezf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b0e1a78336b8ab997e3f0f9cefb6fad948cb6802eac71b386f84127c1d8b0f18", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "633f3de367950563b871f5e377ceec16eea217410036422e85acd4971321db2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8310[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "8c5d967f0f0e90b27f45d1cb90e8b4ef57854df4abf13ab2d55c719e4a5dcb30", + "regex": "(?i)^https?\\:\\/\\/robux\\-gofr\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3bbd8eb08b6bfdbf648cbaa78907cc6ff2ecddf94ac6b4fa4608f229a7f8bcf5", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5cf92eca3ed214fa69c3ddff9117a9169ed4fd18f70325854cceb6c0df2fd178", + "regex": "(?i)^https?\\:\\/\\/jbhfxghbjhj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fa52ddfef45195cc5ba0feea4580619092bdcd5630305b0b3ba2450eaaa0085d", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "afb6ebba1d2dc6368040d97bac7c361a64366a3b50de1c91618447bd59ef5fda", + "regex": "." + }, + { + "hash": "0f3cdba1ed4d6dffc5826b2235a57972e218e9837335befb8ecea9ef51cc011f", + "regex": "(?i)^https?\\:\\/\\/robux\\-gjrih\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "00074ecdcf0cf95cf4505e58cdadb14687561ade594485675e140df618e3377a", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "61dc13992ec6a13338d8548fe1a357149c48cbea7a0f7f5b0f514f6c01d98e56", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a894ef1ec3f24ae3926fb5bcb0c0a78c1d33004fe92af7393b8d195bc2b75d69", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b8bbd290b94134dace32e87425b429dec86cca22a2d6fefeb3ffaed3e020c2bd", + "regex": "(?i)^https?\\:\\/\\/hdhhda\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "282bf3064b9d5a79a99d8527e9180eb066cfce14e6c60f1f34c532f60574fc79", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "615f47b49df4ebbd43361e081d1b1edd3f0beba020b556f3b77e74d31f946d71", + "regex": "." + }, + { + "hash": "a12eaa6b2bff2082833146efbe53ab612d6678815b1a01330aa8f0769562166b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app\\.html(?:\\?|$)" + }, + { + "hash": "8b1532376d1c0a960d7f76bef2beaf04a3dee9e57aef2d213e699e22970fcf49", + "regex": "(?i)^https?\\:\\/\\/robux\\-gjrih\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ef0a8695d1f5061b1d39d81dfd839c8c8a6af8383a2271a4edd49af7873d7167", + "regex": "(?i)^https?\\:\\/\\/robux0\\-sfn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "59733b51b5b0ed1895a7cc4dd7177fd0ef9b05514a2aa863d05d04f8047f889f", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f47f55f24a6dc384701a61387a202485da4e056e9c8a15446f3748cd96c73a01", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c45f3c89b6fb287b7bc6edaba95aa0519cd78864ed4e557beb7aea7ed49f2afd", + "regex": "(?i)^https?\\:\\/\\/robux0sn\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "23df87ec0e44abba51cc496ed88847c0a3980ac0e6c62e56eb68d08c292c40b1", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f7b7f5938aa25f2dbf2131f41d26143b822cfbdbc3422c518b7804f264fbdcd3", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "05e2be5365c302539451e5397d3fdeb53d02398d953c89dbb4e8c307ba0767a0", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "96d2de71be222d3c20f073b36ab959aee309a56af58db6be0e3dfa190c4fb1ed", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobo\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "94c56ef1948c8b50c7da9e7f1702f0117c926bcf6a4b56b38bf74d7090cd2e3b", + "regex": "(?i)^https?\\:\\/\\/robux\\-gofr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c66c5f2634b57b2ee4f02d44dc09b1da0d96ff3065033c59a4bd62f268b839e8", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e198003e4961d982dd4a802745b0813180bb18f0d2574c9c1100eed3d7340c50", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7b083cafa85ee220b09596e1294cf7424684553d1cb266983362d90196fa2b32", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobo\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8d1cdc48f71d0d8edb22b3979baf3d0965d2d15ae18a1352e44dbe99e6f44eb5", + "regex": "(?i)^https?\\:\\/\\/robux0sn\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b13b0e17ca0ffbb809911f5c5fddccc9e525765b83098ab1ddd2ba179986c3ae", + "regex": "(?i)^https?\\:\\/\\/robux0sn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1231a120053e120b1eefdcb071338c15ff2ca0b84cd551ed5f785b3cede6deea", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9d1425973ad3814f1722bc4a44447a49d30c12577b93cfeedbfbbffbd47d6312", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8d31d8617b8f80d3bab73b80bb9900ceef4cf9ec3cc97c74b81a1131037eb508", + "regex": "(?i)^https?\\:\\/\\/robux\\-grjd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d7b7097618c65de69d20898b997244845136207e025d00fe4c24ee37c3bbfeb6", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9b11ac58565495eb109c2fe1ae79454a15dec8bf8e9177bb3676f5cc065e49be", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fcb60acd2186ca1c13ee0708a61893f9e0b7a1fa4dc051de6a5697b6052902fa", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ca8bf834f348f39579ba56a4df0d913d71acf4c36e39ace8203dbb0466c8eac5", + "regex": "(?i)^https?\\:\\/\\/robuxifkc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "476f22575191fe78760310e5f9eee4e5fe34edac5cdfdd29e69d5225d74a024b", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "32880629ee301edececef00eca9b3c89d15d5099e6abe43ef4d357a947505cf2", + "regex": "(?i)^https?\\:\\/\\/robux\\-grjd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "260e381e81c8c967581ff70bf4aa8df7bf078d8b7b2042880e318521ee9b6de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+101517614[\\/\\\\]+299419[\\/\\\\]+3(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4b820a10ea61ab94b3da6503a80d0fa398a6bb0accf54e98d2f81b3578c490b0", + "regex": "(?i)^https?\\:\\/\\/robux0sn\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "71e37f8ae4d31cba8bae4d35983b5d4ae1e2101a0bef177c816cb42dd509852c", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e7864e83ab6746e5a7c3a59dff35f54fef87151ead2c655c96d41b5eb6b8919f", + "regex": "(?i)^https?\\:\\/\\/efzfezf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b16f9f6088a2d2752024377932d767c8df64a9245af2e318cc10480d7e751058", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "085b2b5404630c80a034ce0aec1fc786d53a9ef6b096913c7ec14cf4cbbc10df", + "regex": "(?i)^https?\\:\\/\\/efzfezf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e4845d75b3f0e6c3aa80a8484d901bdac1a286f09b07a7717a232487a0ece1e9", + "regex": "(?i)^https?\\:\\/\\/robux\\-grjd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5173b0210141085014559cef784bf1cf315f1e59167a91eb872eb10afd145026", + "regex": "." + }, + { + "hash": "c47fe8d27306346002a6157f138e1b0b7b7ee1ff7415eed5d043b24f9c01732e", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "32b4987df9d1c9e70f03c2a486e6de9911f5cd0a7111343b7a427594a3911af6", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f5d3dbfccf78e543fee13ba40d6b6a6e21c2b61e3dd4d48c0c6a239fd7572f5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+2563194[\\/\\\\]+101517614[\\/\\\\]+299419[\\/\\\\]+3(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f18b1af4198005d5f4f5ab6475f4b59dbfbbc47955cc90309293f39dcd26fdda", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c7bdeada7c02f16911aa1689c7c591ed6d77a8b7ef2abc773352534e0543ab8f", + "regex": "(?i)^https?\\:\\/\\/78698191\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0d37298d184e21090aea6eef2e6eb8a7df453fa13f3d6bc4b9a5480090defe5", + "regex": "(?i)^https?\\:\\/\\/robux0\\-sfn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8e2b5efd1ec75b7174efdf491b35094c16ee42e97a2660be9c2b4d218f6ae2ca", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1ea66bdb6938e5645c5e63af0d767d9a6fe68e69fad69c5c97b30763b3951881", + "regex": "(?i)^https?\\:\\/\\/robuxifkc\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "89b443b3b2e99b9e3cb246060d65462181e2d91f616b14207402124b05f681cf", + "regex": "(?i)^https?\\:\\/\\/robux\\-gofr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "10fca8429cf292de399cc30ded45b428499a48139e48b13ce781f7d55479dd79", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a5b2113c68c422652bec535dbc0bc68b1102ffde9c0ed2c978f73cca879c47dc", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "930090ec0030e75188ecd3e9cfc8db63ff17320cf0f344f68674ba549f6d17cb", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d83e71b1f339ec09338f1ae769e0e8fb085767a578d11ac07746ec5d78ccdb42", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4a7c00f257d06e9077cbafc27e434c71422900643019c22fd68ab6918a4ac42d", + "regex": "(?i)^https?\\:\\/\\/robux0\\-sfn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "882b0508e14de4930fd5436ad27b7308128d1853c9934dd74659674dc9bc4804", + "regex": "(?i)^https?\\:\\/\\/robux\\-grjd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a7ac63f98edc1325c16f5cbbef054565f2ee4c9fe8782f2889de4a244511e75c", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b14da57bdece7e6ba7ac6b3472cbca2a9cbe879c53aeb604d3cbba8350a0b834", + "regex": "(?i)^https?\\:\\/\\/robuxifkc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8903bd19958939d23e0ed79d57c47b14c48b2b5c5ea6b6c64b9bad5877e27360", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2147b3e9b4015839c8086744dabd811f60c7a0b63b7d51e267b77309bed04540", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "113407c999e80a58cc433a66e5a85576116535df7ad41a237902f438a95dbfef", + "regex": "(?i)^https?\\:\\/\\/robux0sn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "46d9332b95d802284d32719d534037bd5de989bfc17ca8d6e699b5710340f98e", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "68c88d141600890ba53dc6ac2595543602b075bee918f911e6288aa359acf6a9", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1bd3a12da406056179a53bd204964a68b5e466612f3fdaea095ffb6ca85fdf53", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c09f1ff90ec4372728a59bf931a754339bc43bbc79f74e6c4ccf300aa2bfee5d", + "regex": "(?i)^https?\\:\\/\\/robux0\\-sfn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8eff7ca643375704570280eb9d046bc239d31a18a6e855ad456c23d3dbf30425", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e4610f095d2c829d532b70d8519ac7018f9ade7b9ece0ea4a6572e306f64bec6", + "regex": "(?i)^https?\\:\\/\\/jbhfxghbjhj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "633f3de367950563b871f5e377ceec16eea217410036422e85acd4971321db2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8310[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f294423acabe9afedbd16c2991a835cbb092d1b7d950b64e1378ee2749ba4f3d", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3a42906e397a4277bfc8a271d503019cd92eb515a36d82a9209c96acb3ee707d", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8f64d45cb21eded8b213b7243c63cdb2973a1ffaebd2b204f0425beaecc2d9f6", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "edd13feb63d6a069682457652f582d32a3bab5ebaf6a18187f6326e1faaf09db", + "regex": "(?i)^https?\\:\\/\\/robux\\-gofr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "edb3062e51de9e4c8b6e6a737a7a2f4027351a06eecc56d91684028ebe24e5dc", + "regex": "(?i)^https?\\:\\/\\/robux0\\-sfn\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9a052b3d5dc10823e996fc6187d620fea39f854280113304dd6593b48ca358c1", + "regex": "(?i)^https?\\:\\/\\/robux\\-grjd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cd90ab55763fad540f8d8a9a052b391227f27298fb4a4a34fe13b30cb0d6c7fe", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d436f4d4e921ca743b9264862d76a6df002269aa505ca2cfaf7c8f42989f25a3", + "regex": "(?i)^https?\\:\\/\\/jbhfxghbjhj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dedc93b829588242c00172373c9bedb3078dfacc36df03c80935f8f3de38f671", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ea8373555ad99cce93c0be75e52c89bdb9afb00064373f05540c70c919d57eae", + "regex": "(?i)^https?\\:\\/\\/jbhfxghbjhj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6a20f9f74da581c1799b5466b827852f233f13912ee81da4eaf7ecfca812da8a", + "regex": "(?i)^https?\\:\\/\\/hdhhda\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1669b912edad362be179b7e3afcad0261eade049c2fd12eeb8ffb87ab8270d03", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b1b00015f6f8de0dac8131e1e902520203ff4b089d410e91419e41c896f5b911", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e93ffbd1428b2109e3c2508d7c09b65b6e67aceb29b76347a972bb6d60b1f", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c22d96803630ae0941da8ba69679594d5ddd8e71edb9e70a715c1d8d41b6f8c9", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "33c5bc282c7c74201bfb93f99d467a2c850b43e372d13d184c17193f79f8609e", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d366478cfce0a78869ca10d964375042b980fc8d02d498b006d80a6088d48566", + "regex": "(?i)^https?\\:\\/\\/hdhhda\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b44fe782c1be2d8a4852fa5a791034d2d64122829b73deaca6b166beda70e6de", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6c55ad1b7c82ae65393f102d9864b49a358e60472e4e2e7e9f39ae633fa8e3d5", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "80baa821a07c156878f535cec7955a89e54ef02bba1a146ec5910605a2732e11", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2674765488d5f031b9f801ce907ff85c8719695fbb3c79511776db8fba78edd5", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2dffa00cec50eaede5751831e8d98625f7273ee85abda21d5f66541e1bac5256", + "regex": "(?i)^https?\\:\\/\\/hdhhda\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "dc3f7078bc19bb8dac0b3e48864504aa25c107c52247d322f3271a19c03566ba", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a855c51b5d72bddcbc9679d0ba87ca1c7a8aab000650a15c20db8f91504c7bd3", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7a852c132391cd2c90c9961949fc0b6b383948ed1482f57b4c4dbcbca70cbd72", + "regex": "(?i)^https?\\:\\/\\/robuxifkc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "dc05fd94fc64436f2179ad402c97a8a98c2bc5630bdcc21ce7e698c5425f9d2c", + "regex": "(?i)^https?\\:\\/\\/pub\\-0ae34a42c4d744b185fcfd577a571559\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ef1d3297bcd4b44bef1ab62fc9289c6b724b6e9fd508c2fae36fe207d97a8722", + "regex": "(?i)^https?\\:\\/\\/robux\\-gofr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0571e375bf9e5fabe0d7165cc2f45d2c52ca76fda8ec787c8ad6025d41b2e909", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "36c85c4ee63c49554bc9a7a129386eb6c4b0ae73ce6f88e4b53efbc75e902609", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "96cbdbd885343de8dcc9694a21c2be4bb89f6c56452e2825efdaea15b602ec4a", + "regex": "." + }, + { + "hash": "925bf327b88cf608ea4e511abafd75ee8e29733830b17e181ee601a4aa7886e5", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "aee4d5dedb6150c1a7b6cfb4851816b555f5eda9c7021129cff93bbf66b647af", + "regex": "." + }, + { + "hash": "5965a634a6662e24d401a8d3d6880fa0b6237bfec3544e3dedebb19ad35e759c", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f401fcee2c0d46725ac925a13726660ee3b430da2cc38a1230612fe13857a7cd", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f45695c32a7a01f63a780e089f9fe505a1753035bce7fe1c8b644f7e329f4dba", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ed51a72bebfe3db41458bf8a351f87e035d34452ecae26ba98f880b495ce3a8e", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a343f8699bd2bae2fea82b766dd894d7cfa8b39487f1ea8706e5b6c8927b12fc", + "regex": "(?i)^https?\\:\\/\\/robux\\-gjrih\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "948f419e5c3fd0c29bb13ee54e93c2f8b8e73d3d63ccf8c7c78e1f0ab42c2c05", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "431e948821c00c286807803c36145326fc8cb6378029b92ab344408dcb4b6dbf", + "regex": "(?i)^https?\\:\\/\\/hdhhda\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5c5c206b913fba45551b93940fc5947ba34c91c03fb1fe4cc300d4c82302a372", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d9b267e42d106848b4442572a5cea4b8f6948dbd008251334409161a1cd5c606", + "regex": "(?i)^https?\\:\\/\\/robux0sn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ae82c937b0653f7d153fae671787c74da2f3f60febed98c8e14ca926ffb3a5ee", + "regex": "(?i)^https?\\:\\/\\/efzfezf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5536a91457fb61adff19ba4cb8c82f7f307c1d63134526a29c9b5ad1e34afd9b", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2182806e88d6ee4146660ff89cf2d5dfd589bb8a0cb48c93b514a2d38a2c0547", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "02c0be0308ad7537ae39b62f8758b2d0ed0094c90d94beb1929a72e44dbc5e09", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f65dc9d07e5f5d278a60364abb72598716d8bc58498e0309a471c89a2404ec60", + "regex": "(?i)^https?\\:\\/\\/robux0\\-sfn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "39942a7d0d39293a193fae0231af190257067121f5f4a15815c6b1ce632568e3", + "regex": "(?i)^https?\\:\\/\\/robux\\-gofr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3522a48e49b4157cebf3fc033d34706646f5b599550a3d30be3fe889bb3001b9", + "regex": "." + }, + { + "hash": "095ebd397672af238e8bf9ff35c58669be3b930160d54a0c942ccd72837fdb99", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "979725f21e9efe02fd2b5f055db55fec4f274ced804c97ccd27aada18ebeeced", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4da8a5944669d6d1a32576001d8aaa65795bb6a455e1e1401d76dd110821be2c", + "regex": "(?i)^https?\\:\\/\\/hdhhda\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e691753dece069a34f22fe75dedab14bd3f0569c4024531229e38e8ab59155ab", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "561ef79c800e455947cbc9aa6bb0d53e795a728f9831bef0fc0f73d264fb21cc", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bcb05349329142658fd7b63113f4e8fe57eeec786e7765f6dd33e5cc2ddee9f6", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "36dcf3cdd3cd511b975f429c3af59e1a30939c729f33d172851f93063a0c2745", + "regex": "(?i)^https?\\:\\/\\/robux\\-gjrih\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e8700b705107cfa5add676403330e42673db08691ac38e44462ddc0634de6d9c", + "regex": "(?i)^https?\\:\\/\\/robux\\-gjrih\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d1eb98e6aa7e17069adc97e2df557d35808199e60cfd9bd10f7578df5852421f", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e49941896637401f0ea15092dd05990cdee3a689ddd5a54a08bb2f0bf1c5147e", + "regex": "(?i)^https?\\:\\/\\/jbhfxghbjhj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d908bf1046af52326379d2370c7b0a4f0250e307a2a1fffc39738abd7919aa4d", + "regex": "(?i)^https?\\:\\/\\/r0ninvallet\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "61f1c51a2893c502e4aaa1d72e668a747ba4e315af41f36a954ba64d966e1be4", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0598db6e00a16cc0e55cf2d68231d46b1cda6ce24f16c59142e59f1f5a7b26cc", + "regex": "(?i)^https?\\:\\/\\/robuxifk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a159a1970cff102a8dc31ee7ae663c3059b01430ed8bab5f4fd0b9280c6040af", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7c81cb32b96000f29d31a986e51c9d4e263f5f999276194e413f951d1b847f80", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "86a69bae9cd6dd47ca1f12dfcf71acb63e7764f22dbb87e22917f4d5af8b036c", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1a1c66d28c5540015c5c43900932781400b68765d0dfa2f8c0fa107e4a1ee0fe", + "regex": "(?i)^https?\\:\\/\\/robux\\-gofr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "69c122f93fa31e0733c49cfcaeb046ec2b9bfe0e14805cea6f57b0ab7669dee5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8310[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "245656d28514b941f59589b37eeb23e70c6d3ffa325b9d8160237ab06fd387f9", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cb93db57d759613a1dae2910dd76083f26e67e9f94271340fd96d567669250f4", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ff6a72c085425a6330ac56c242d1f5160f1fb91df8e55d96e48655d7dc8bd0ac", + "regex": "(?i)^https?\\:\\/\\/idolthaillandgirrl\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "86b92009bdf2e43791e1f6f7cfc6c49b9b52009ac4eb03fa75f2d4cb2563641e", + "regex": "(?i)^https?\\:\\/\\/robux\\-gofr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b3192eb8335801d93f737998cdf7de3b41b0f56a3baf554043584e82e3b04c0f", + "regex": "(?i)^https?\\:\\/\\/robux\\-fnsi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3639c441e4042cc7ebe64c35823f1602a8c69fffc5da0cfaaeba6d80084c1637", + "regex": "(?i)^https?\\:\\/\\/robuxifkc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3f59c5fac28c49cad75390782d7799e49e38178dafe5177e10743532f005cf93", + "regex": "(?i)^https?\\:\\/\\/robuxifkc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "95f890b830fae56d6b414fe78f7c49418581cc6298c2765f30514ee74d10909c", + "regex": "(?i)^https?\\:\\/\\/robux\\-grjd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "42783e6d2796db50529e96f59137002d08dcb576bd2e64e1b71e6e9acaa2f227", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "84fe15515893c2688a447f3640f1ecd2114d7d921e390776d798d95f1e9e35ee", + "regex": "(?i)^https?\\:\\/\\/robux\\-feks\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "38137dbb59268f07f1f7720503603f657273ba52e25899fa8a3180996385ecc3", + "regex": "(?i)^https?\\:\\/\\/robux0sn\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e26ae611ce6ace4ea15653c8bbff667e9ea75bf5802232042e1417d017989860", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a445f7f946c7260edeb101ba77380381ca8f13d82fb2bb2372042a2c7ffbd5b7", + "regex": "(?i)^https?\\:\\/\\/jbhfxghbjhj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a729bd66f3fb86a89b367f62bdea02e777cc6ee993cd74dda8babac290b27bf9", + "regex": "(?i)^https?\\:\\/\\/robux\\-usk\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "513d6bb6dc8d17b2cc15c3229a0f30027e072f28b891b08d8c565745e6d6ce36", + "regex": "(?i)^https?\\:\\/\\/robux\\-grjd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bbba22a27beccf3d14c5479998d3a524d65b90a8530fdd35d324db7be9a3675b", + "regex": "(?i)^https?\\:\\/\\/robux\\-gires\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "99f4685475f154bd5201b524e2c82b8388e20c0848deccd505e99b4a97f6fe92", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "935228b6f971f09f34364ada974596df963e5b4d4c89245b7bfb114f22a6df7d", + "regex": "(?i)^https?\\:\\/\\/jbhfxghbjhj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9915135f28c65e343347489a3d37956bf5e87120d4c7c5f42d99cbd701a43d55", + "regex": "(?i)^https?\\:\\/\\/robux\\-foo\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1a2d94ce0c0c383114204215f28ed67b904767141be047c98c4637504a8e6d2b", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "62b5f976a1c7c1c5cc5d261df198f14ca1fb3693509d0e81ac14ce687f3f8672", + "regex": "(?i)^https?\\:\\/\\/robux\\-gjrih\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c9877dc21bc1e678c9897422da8615a3d36354f20677a4742bdae521aef6f961", + "regex": "." + }, + { + "hash": "1cf1a8090b9d8e6f2cc9e42a72d6ef43baf524b21d0b2bd594c174db5b1ef62d", + "regex": "(?i)^https?\\:\\/\\/dfyrdnse222\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "06edebf8b3a6c0b510a6dbb51ca2dcbef3e640d2b2ca35fea285727fa67b1616", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "06edebf8b3a6c0b510a6dbb51ca2dcbef3e640d2b2ca35fea285727fa67b1616", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "95014cdb905dac4e7da70c08ae22c0c5f976d3252d9bfab3bafc8f674d60f622", + "regex": "." + }, + { + "hash": "6b0bf1c327a7078023568158ba8c1db7cafb72f9fcc16652bbdcf48459f7fee9", + "regex": "." + }, + { + "hash": "e4845825ebc360f2f5a31cbe6ff326cad6fef852aeac8c0702a574437eb444b4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+exchange(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1fa5bfb53b7d9a9540ae37dedaf345312d653563f9a16f92df451144715f6d54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+news\\.html(?:\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+avdnho(?:\\?|$)" + }, + { + "hash": "06eed41df92dab3add92075f046e8a31c7eeb2e21d78e38a090a9ab50a431ab6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2zuc6ANC5TaLnUk8s8C\\-UnxAz5EhdfGvRcdmersihlocUPmvWkQHKq_GUZKSA4O69Vsi1WciiMW09iNFp3yeen8mLrDG9YIiGWlOA8x1cR_CrDculzAli8vEU8XIM5JvNV1xokdCdvecijYxAgNbh8O\\-oZ0qzxtc_5t9sXpt5NPRZLCmil6Bfv2ZpR_x5J7Bg\\-PI0nD1Av2O50EBS\\-aRu7ENX45iJFsfjBowdcbumP4MnVdxsE2SV(?:\\?|$)" + }, + { + "hash": "aa449088140b4e499271073a1256a7d205c50b30a504563e829cb09bae0ba601", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "d25819a44fbbd923c64d594c492205a65c046566f396e93ce49785ae496e4f63", + "regex": "(?i)^https?\\:\\/\\/login\\-redirect\\.50\\-6\\-171\\-238\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+avdnho(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1cab65a6195bcf9859cdd619f2328d92f6bca19039c3bc6b58f4682f55e2baf1", + "regex": "." + }, + { + "hash": "ba216dc386ef58011a1293471a7f262332da8ab88a9b410eb4234c68e12956d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "454a7eac9668a8b51f061b6e7e5577f0d5830f234a46b4849e1e8e089732efa0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "82f0131dcb173ada34987437c863e044aae82ebb7cb7f56d69ac0c63b25884b4", + "regex": "." + }, + { + "hash": "05dd4dea091102b6fd80c5c0aae2bc4210947f3a4804dfabc62681467ab4c7f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+download\\.html(?:\\?|$)" + }, + { + "hash": "da38f891a22d84f3c10ff24bc0ede8d80b28523d76463a7b9d54a0301c8e4a14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+download\\.html(?:\\?|$)" + }, + { + "hash": "ddb84044a0e7d53d37bc10f1a64ff4b9f6ecd75ec4160ed5ddecac987cad4ed1", + "regex": "." + }, + { + "hash": "91517eb2fa51140fc0b9a12bf954b3e8903c585f141c8270339072649ae6a044", + "regex": "(?i)^https?\\:\\/\\/pub\\-4fe92bb73f46462aba343b06491131b9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "16811e342ee515fc96e609e3e120b56df27a8532236f7523ffcdd774ca404ed6", + "regex": "(?i)^https?\\:\\/\\/videotron\\-108383\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7ee9a50e3b27c7af72995a51f788e3050a9d92269ee2d7fa05293397dbeeb746", + "regex": "(?i)^https?\\:\\/\\/yousee\\.3\\-123\\-35\\-61\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "96f2d4ae26399c3b0e3f0d030e6f6f1b66779b4ddfb51ca6aa66c601368e3e2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wzpz[\\/\\\\]+syxl[\\/\\\\]+gzcyxl" + }, + { + "hash": "b18f36e3af115735c0a2d035247081af3d467b7e30cf1e50c91ab295b4010e8f", + "regex": "." + }, + { + "hash": "aa449088140b4e499271073a1256a7d205c50b30a504563e829cb09bae0ba601", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "454a7eac9668a8b51f061b6e7e5577f0d5830f234a46b4849e1e8e089732efa0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "ad89ba34d48b49fc86048dd23b16909c01de27674da5d5320eaba556ab720b5e", + "regex": "." + }, + { + "hash": "a0ac7bda8e8b8381c21f4f7d90e4de328b9c969751fddcaed0e9d4490f72de86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9153[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6b577f39c51d2eaa70c875d8090fafa3f5794945e827cd9f42c77e3de724f646", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8003[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "23266423438ba6cd9ccdec09649922b0af2892cfd4849f89678bd202aaa048f3", + "regex": "." + }, + { + "hash": "6b577f39c51d2eaa70c875d8090fafa3f5794945e827cd9f42c77e3de724f646", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8003[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "acf4f3b2a66270ac1b2d896d5593e450b570f6a4dad26627026432581cb57d6e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+download\\.html(?:\\?|$)" + }, + { + "hash": "a7c0e6e0a0db903ab6ab5247b6d857f4f6b3b1155bea376e68ac44ba641e7989", + "regex": "." + }, + { + "hash": "be0de0953711593085e04700f22b0ac218ba7d7f3501156debf0d00f726cdba2", + "regex": "(?i)^https?\\:\\/\\/chrismenke45\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b29bee371ad9acee95a4dba3dbe61cffd1bf4f5272cc0a98f2ebdbd0a4e2940d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+download\\.html(?:\\?|$)" + }, + { + "hash": "401cd4d9a0cc12ab33f31f51bae6c4cb5273cc075f886676166e9df5127cf2a8", + "regex": "." + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?gazwfjwu\\%3E$" + }, + { + "hash": "6b0f0be12eb0ddf3bbc2c356e74511cfe26cb20a75ad06e2de062f1998249a32", + "regex": "." + }, + { + "hash": "598a284d7675143ec06809b7215a1f0e8873246cfb7e18a58c74e7b847f31c0e", + "regex": "(?i)^https?\\:\\/\\/www\\.365f09\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aa45ba5d2b4425a00ebbb5785ee70e9f1355e7396a49c510522718fe2d71c3ef", + "regex": "." + }, + { + "hash": "a0ac7bda8e8b8381c21f4f7d90e4de328b9c969751fddcaed0e9d4490f72de86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9153[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "e5c2a6057b7af3e8bcab8e2a4d67bd88ea7e4971a00c282d10310382b6b81f40", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5642cdfe937199209c5110863b06a00fa3c7bd4761db3c572075fddd0492f17a", + "regex": "(?i)^https?\\:\\/\\/robuxvkk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "390c755d508feaa866d5be69a48f294061c9a0f570d5078a744055e6af59fe11", + "regex": "(?i)^https?\\:\\/\\/robuxkked\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "855b25c311d9c6440adade55018a80e5ba9055479b332f543dc39bac987ca9c1", + "regex": "(?i)^https?\\:\\/\\/sdzpoekkd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "aeb5aeff8bafdc6bc81d667f4eccadecd5b933a8c9ad6941ad6ad039ef3952c3", + "regex": "(?i)^https?\\:\\/\\/robuxgeg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1fb52c14204f02dbe0b542e7cda650071da28feb3aee4e61f65c7607f720a4b5", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "60f48bedd9f0e93aa50c95684a0d5811c74f48db00038340a98ce27eddd4bc89", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7cb9a35e6ee8db7a76b44311f17c3aec3924da65bda248340110a1915b909b4e", + "regex": "(?i)^https?\\:\\/\\/n80810\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ac72c8c79c294dbf9ff78dda3f78dedd7eff57cbb189d522c51a436adf729ffb", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2ab90535203337591fa6e2a793982850ab2dd1ecbde9779efea2b0659051a442", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c60af4a2ebebcf67ee755b5f8fb5d65bdf7ffe1ffe828be5c34dff0bbd16159c", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "411d591cecede2fe9b913300aff04a19fbf14186fec0218357641d94e7404c7e", + "regex": "(?i)^https?\\:\\/\\/net00sa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0d7b6ec4ee6c0d788e8db1c17121877d7c51ccc5e5b3c9dcd7e1601755cc24a3", + "regex": "(?i)^https?\\:\\/\\/qqsgxs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0033c9f58dd11107591649045bcd9df02c3c7abf6ead1f029d681e46a5bc73eb", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "019de66d287cc5c94f48633530f9170b4986281a97f0a3d6b8088bd1688034d1", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "05e84eacbbce00d7f844d37387f3e4262635c5c3ecc1789651827f9eb72ae4f6", + "regex": "(?i)^https?\\:\\/\\/robux\\-jgu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6af2e0ddd2d484d6223ef9031c9a5259c1850de6bc810ced29a36d859efe6b3b", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "913d13b0db9a93e1a1e0e110a41410c5c6d248a4c286cfde2f51f170297bb481", + "regex": "(?i)^https?\\:\\/\\/sdzpoekkd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "051745fd258dd4786fb57fc4ce61be6ef26c23badc9973c167ed2b9fdf8b2283", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m[\\/\\\\]+edg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "43bb17255de751d3c25abc3d233f2538d72386de90291e3fb55a57b88234f24d", + "regex": "(?i)^https?\\:\\/\\/qqsgxs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2aa27c759fad9b74811ce8fda1b4bfe3ba09d08440db3a1862f8f97c6b581c00", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?uhumtijr\\%3E$" + }, + { + "hash": "a50c8ab9225393fd0543f8a6f28e430c4df561fc435fd26cf97fbc0f5c0aa3df", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c390e3de5efde70d6e2b98c3dbc822968729b2985aab9e4250037d1f08458aa7", + "regex": "(?i)^https?\\:\\/\\/robux\\-girii\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "88e7967dde1aab2b19ab72616735f46d4fc19748716332d3618dbf78cb26d152", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfei\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c8f741c29278ccdfff0fe856fd9d647a98bfccd48fc67aef651aba995d7c7006", + "regex": "(?i)^https?\\:\\/\\/robuxvkk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4ddb0029dda7c1d3dda41f9c56669846b6dffb58de342df66de4f12fc9892217", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ea815da60ce6d9101241e9735627008af6e25840e06f637db0e554b0df2bb9f6", + "regex": "(?i)^https?\\:\\/\\/robuxvkk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b113edd13e13d9e6c3f6a0dfffee60706b1154a2d065e1f67e034a16f810407e", + "regex": "(?i)^https?\\:\\/\\/n80810\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?uhumtijr$" + }, + { + "hash": "d80f8260f6329f1013af7502a0a5ca5d52205a45b1eb48a1317bf5a6e66a7b01", + "regex": "(?i)^https?\\:\\/\\/n80810\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e93551bfda9ce77eeb005b06590863f0d2b9274acdd8e9b4cd2584ec024cd197", + "regex": "(?i)^https?\\:\\/\\/qqsgxs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c4fc43a25a8f233e2c35ba561ecc4d37237159a351962c51bbd93440840c18f1", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfei\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b3e8d8ead0b0d7c633d7c5a2a0502730d0142438fda9c2856579beaa3e130d84", + "regex": "(?i)^https?\\:\\/\\/net00sa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?qqffuqqo\\%3E$" + }, + { + "hash": "5a36b9fd7fb1cd39a1f420f81d450ed2d42e17a231626c6266d593cb8b03c88f", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f7a813fa06e1221e9f1317fd02d7c3d3fe7aa1a257adebb8c61b8764bbdcb6b3", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=FIL[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "5d83f8ecd4c49e5f01a146cc5c5f036b2a7a46dd3d3f3121ff81f7459e4ecec5", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d9724d2394beafa64bbabb9adff7d6f3dfb5ba2ee2f71c6ceddc53e23dbac4db", + "regex": "(?i)^https?\\:\\/\\/robuxvkk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ac0bb9880d5799326f597fd7cd2f6c7f2d613bd9a227bf7920d28faa61b87426", + "regex": "(?i)^https?\\:\\/\\/qqsgxs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a8dfabc28631124a2f8f56d35fb4360ccd71622787c32c424d77767550ad772a", + "regex": "(?i)^https?\\:\\/\\/robux\\-jgu\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "38cff3339f339593758457c3f4fdbef34ff3ab39c71984999bf8f1f08f13dc2f", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f5d8a47109d60e6beb15aa8344aba0fa9c3fbae8e41e8e321d9c20a0f100e6e2", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "184a9460019b1d9b8c2e70a3eba53dc044f7f0a8dc9a3114bb0c1be96c1aa2ce", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2fbaa3ac2159a3565d65feb79ffdea68d9380332051874341328b27d8e07496f", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "221eca041859fea44f45f06e44a509b12f477939ac22e05c175a06cd51b5f0b5", + "regex": "(?i)^https?\\:\\/\\/qqsgxs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "33077ca2d51330019ffa865ea89c947476c4f8aaf5d67ec6b77927764ce8b135", + "regex": "(?i)^https?\\:\\/\\/019244\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c5a7c2a26e6227283e00fceab13efa3365a5b3032953fcb5c51e077481012d65", + "regex": "(?i)^https?\\:\\/\\/robuxgeg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "853ceba97fee7506af18dae2227716425f5b3600d85358fa8653c1ef8651a87d", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bccdb4f77b332bf9902db71eefa1b916f272c7059673b361a06a7447cadaab51", + "regex": "(?i)^https?\\:\\/\\/sdzpoekkd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0994fb10aaa0902fed96282c5b37d2db3716d9ca61c15cbbcd9659f3fc539103", + "regex": "." + }, + { + "hash": "1c394b4a2a508ebd0c6a7d307089f83d06d09e04ad8806edc509ee318fe26c89", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfei\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "53b0f138bdbc986f75cfac80cb1dd544180e39c24a3d546a6ed52d3e9bf2bbd3", + "regex": "(?i)^https?\\:\\/\\/qqsgxs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8d19b371d86852c93d2bab79aa404e731bcc0462df11aaa033328debb9d8f4b3", + "regex": "(?i)^https?\\:\\/\\/robuxvkk\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?qqffuqqo$" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=FIL[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "1282e35295c526907ad066e4e8d46f32ec74b27f2ce332b8bb04ec8863d6e2cc", + "regex": "(?i)^https?\\:\\/\\/robuxkked\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5c443b1b89ffc1192d25c5a8f73323656595ec235ed304730a177a1ab7449ccd", + "regex": "." + }, + { + "hash": "87123678904f1812fc82430a0cee11d025957f0fcdc12d9209f253c633ffba77", + "regex": "(?i)^https?\\:\\/\\/26agtwins\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "6c73bf9c5ac588a96d5df209503e497fa0006ffacb347bd2fa20ffb992504127", + "regex": "(?i)^https?\\:\\/\\/vsdacc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7189f4972ef2f26d39dd87659bc585ed7b2b63a9e0e8458b6634d9586296a1d0", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=FIL[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "1e43624cec6ddc630e3360230fc69637fbf8b0e169487f83643951f7a659b63a", + "regex": "(?i)^https?\\:\\/\\/net00sa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "05d5c133b7e7b405bad694b6aa96e8fdc6ca2f3904ab7a55542609813520bf5b", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "066ffa10bedf047a633b496a1ecc3e72e964ae2dcd7fdd6c5772772b9e71889a", + "regex": "(?i)^https?\\:\\/\\/robuxgeg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=EOS[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cchmtkih$" + }, + { + "hash": "7f58f3bded546ea7b0ec3eeed913cd1ab6ddd862940d61e9b86e8ece6c3784a6", + "regex": "(?i)^https?\\:\\/\\/robux\\-girii\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "88e73b57bd19ced4aa8e1308f0dba73deea81d1d8fc80262d7a1b3ef0312cb8b", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a1f6c34e2dbe253e1be0b2962826eee0d24780b415e5d9bb1f81925bcda79ec9", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9bd75116db53f3925bc09bc7916ef8dcb1aee124359b7e4c549a6b01ad74ae0d", + "regex": "(?i)^https?\\:\\/\\/eb8\\.org(?:\\:(?:80|443))?[\\/\\\\]+tw(?:\\?|$)" + }, + { + "hash": "07885e21d9f59e42fa1d290080bcd4fa048ccb5509a209fe5421d928a875d6d8", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b4f8d3b9358a4c592b3abc6256ab03f2d30fe8bd15fd75bb70d7c74065e9f54e", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e6003744dcb6ae999401a9180b60aca423cd1f33bf6fd83fce8a0999de721ed1", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=DOGE[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "88c74471557b5b1d9144c33b000fb7451847c41c11b5f9ffa825638eb306b0a1", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2aa2aa8e9b40463a35f8d478d0d73335b50cddea499aeb38b5c6afe03aebf056", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1f0ae95a9e1910a9d200bdf0684bc3e3caaba22dfc3b0799c51c5d60b5490780", + "regex": "." + }, + { + "hash": "ccefa4e1cc6431ce6eae7289b50a43a64a6782400dc7826f5bcef08ee76e4c26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+sFxp97XJC79zd7bWncy9XZpKqO7LXrmqVnmrjxTLhs9ryiPvooqV5TRFJor3d3p8sReV3na43OEOeWFZfMYy__kjncUt2wrWDhmXqChbOdj5s5xykvTMgFOO23rFcVrKd9cLicSNHglHaIhxC3SYWJA80raiUbLzS8xVqGTxnd_jhSXlFignTlYBvoAqHsc0VZiNDNax89XFmr71upiC17tB33seYpI1OBicuA4FNPkvF_uK\\-5e_6GnMTFU7fOBCsl_BfeIW05mBJrGv(?:\\?|$)" + }, + { + "hash": "df89cede920468313fa52f05fd7b41c3a72741ab0180894bdfeade518dfa9880", + "regex": "(?i)^https?\\:\\/\\/net00sa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "771f103fe30437c722223dc5cd9df000a2971e8d3e79e0d9f1be604b5c1fe81b", + "regex": "(?i)^https?\\:\\/\\/robuxvkk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b2981aed1e3f74f1c60843d36e797fd64d020b76c3bb1884dd6b46c3e9a0dd66", + "regex": "(?i)^https?\\:\\/\\/vsdacc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=FIL[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "44952f46d69bc74648b090643b9df8346943cfa4b676a2cdf40140e384708cc6", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c4bf3af547d2c9059da85b7e6a87d0c7d2e6ca4553d3fa9a30457a7113225750", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "be30c491836e915912cf37c1af3f01d73e9b24f4b4cefcdba47c3d42881b395f", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "20589a7f344c9abee9e5a9817af8dc1b51420c4a62e43328f2f7c20406590e78", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "44edbed3a8e4a156edef368f070831f3679fca50f50150e4f74ef94ccaf890d6", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "04d3134a0a7421f25c1bdef8b164b26457e90fb1a65f59259a8d90c7cb6fc25d", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfei\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0f9d2e4d1354ed4895425fe760e26b2d7c7940b5a5124a37a7e99483c40b8613", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ebc1d43fa069d473467f49e0b3cfd758e090051237274102e90a99c4af7cc9a6", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ba58b0acc063f496a6c0b30cda47d61a650a6fa6584bcaa8d20ac96bb39b8672", + "regex": "(?i)^https?\\:\\/\\/robux\\-jgu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cc64a87b7800b38f157031e3883b5752c03888621c5f52e2a4ccbf698e5edadc", + "regex": "(?i)^https?\\:\\/\\/net00sa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e1c7f7d303c6d1db9389bca1e060f429aac5b185101a6153a085e8d3b71308c2", + "regex": "(?i)^https?\\:\\/\\/robuxkked\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e38f7f4a61f05c8a4e4c1a216693a541e02dc5b4d3d09e71fc3473513431ec0e", + "regex": "(?i)^https?\\:\\/\\/n80810\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d099c4a41d2b8b11714683769ab281d0ec044847f4f3f24be2fffb89b0832c63", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6311d4c5e1b0ae51f06efb0461dadd516f67dcf60bf51a78ec3216100dcde0e3", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fc7361b839c0153616a489cdd4594a8bf9ab0b6c583f9d6b55493dc331fc4a99", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "04de13b1761c08c768d763f50a9d6aaa92f2db90216fdf495f68445a87c9fe2a", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3c8bc65427e98d111344dff9b016ac72386c0db79e4a16f0642492dd93a6fb35", + "regex": "(?i)^https?\\:\\/\\/pub\\-097f215531a840acace77f8fe4e22a7f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?hjvvbfaw$" + }, + { + "hash": "0079a81fbe9535d54241c73ba30a2e28b02003504876445b92b43b319fc3838d", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfei\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "86276a214b945a40c0c03d66313301c9342cd563ca7d9a4744c4c7b7fe581d64", + "regex": "(?i)^https?\\:\\/\\/qqsgxs\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7ff502b57a9cdf306543ef1ace59e9ff7b7053bb7b884bfc534bd1ed81fa49de", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f41b055f47ec7e4ab817a96792bd25dd30ebc63f0cb5050ba6a8ce08fb281cac", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "38b0813823c8ec152446c6ada99ec73d6c9dc54ec032417d2409c93a1135e227", + "regex": "(?i)^https?\\:\\/\\/robux\\-girii\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "57d6e0a8733a44fcfd1d162b55616a779316882c511f3f8f135d2da31d790300", + "regex": "." + }, + { + "hash": "9ec24806a62fd193f55ea403c6d7850cd2bf550ea81286656f75c202a09b4040", + "regex": "(?i)^https?\\:\\/\\/robux\\-jgu\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "52f582f7a75daf3dcd9b1959bb327abdf910b7c0c420096e75a3a75ad50ff6cd", + "regex": "(?i)^https?\\:\\/\\/net00sa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "35ed8de88821fbaaa725257b659cb5a0c8d5868dfa08811ea0290f424a135cdd", + "regex": "." + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ggnvxujz\\%3E$" + }, + { + "hash": "a2ae065a7cbb8204a4f7e1e34c8d9a9d50345a0ba68b0985dc1d42852eff0504", + "regex": "(?i)^https?\\:\\/\\/sdzpoekkd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3bf9cba028df7252aa22d43ed0daaf7b83fdb48e01e16e8b7afb3b38b6c89885", + "regex": "(?i)^https?\\:\\/\\/robux\\-girii\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "abda767487fb568e5975c3c58168022e3dba756dfad677d38c9a02f2801ae235", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5e886e373542dfac8004477c52d6cff61bfe5d122d1bf091ba75a5224ba9556c", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1c5b7182101667fde96f580c96c3d4db403f02d3d86b1e0d59d5e8ef8770a630", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9642d6eb31e97fbcc63955ceb9fe0995cf8f386277174fd9ac73b12645b4272f", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfei\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1669279b0729ccbb8ba44954993ec7a3d958044db80ed506fab498eb847f03a0", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=DOGE[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "7943a26ba63043a9c91b10add6c7938d82e0a53eacdef2662e1606c2d0dd5f92", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "05e8e4deb054c8cf9b0baf0887c5fcf869601f0d9b5ca63de6c795fa73b18424", + "regex": "(?i)^https?\\:\\/\\/robux\\-girii\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c487dcf16e4a0dd61ccafbf3850d883f0b78a98074351f4b00088e9aad63ec91", + "regex": "(?i)^https?\\:\\/\\/net00sa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a7acd94f0e7bf52bff3952b5e888c7f1054de17d5af57845e6676acccdfc81da", + "regex": "(?i)^https?\\:\\/\\/robux\\-girii\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?tzqtilox$" + }, + { + "hash": "1e7f4b74cd543525fc6d244483de95517440c10448c26e9020fcee5246666f9e", + "regex": "(?i)^https?\\:\\/\\/robuxvkk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=FIL[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "0a6a1c4c87984d870159949db9eb9ee2b754da0f7ed36ed3172d773778d425bc", + "regex": "." + }, + { + "hash": "90e1540974d6de7115fe283167e855ebacce2da0de38d09fb64c572c7a8b4fc4", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4b523120f756f8985f110dfdcce622c88b74ae00ac6f2a84f789133dde83e937", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1aeb12d09f768d3535a1e156a8388151ec05d59569b05818f5b381a07251b1c5", + "regex": "(?i)^https?\\:\\/\\/robuxkked\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a06148c0025fd1b771ce39df537e1c6fe12e1008723125222b633bee55dbf82a", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "60076bcb24905fadbb9822d17895ab37e72d835660097fb4b3c35439150a83ab", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a8229d77b5cc11567f70979dcbd06d6e3bb00db1f8efe1acd30c699e851bd32e", + "regex": "." + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=EOS[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "a99409feb34ac71044f0385fcec4ef37c34a324338ac1a50defdc251d71d54db", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8d542df0768079e262d278161541c6b869438456aa354acc5c06cda75d8ede4c", + "regex": "(?i)^https?\\:\\/\\/robux\\-jgu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4159bb62395bb655339327f234153d53e273d573083d8111fb68d2470eeeb440", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "505bb47af9fb194017b5bf104efe5a640ae88cbfbe3ce5c97da54d3596ddb66c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6600[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "949584c53f6aeeae51c2212e59058c0bfccfe0a4eac890815c851ec97aa5daf9", + "regex": "(?i)^https?\\:\\/\\/qqsgxs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "317d2d2fba639b82d7cde2b773dd194b167ca30e3dd6972d62d58239739c6ea2", + "regex": "(?i)^https?\\:\\/\\/robuxkked\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7dc0bd6bf250b2ad0fe7dd9e0601b219e0127422128dd00ef9d2d6c0f8bdd619", + "regex": "(?i)^https?\\:\\/\\/net00sa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f343f45c2f8a8d379f15721dccb65cd3843f4131dcde1a62ca38462115873b68", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "64951f2662a1baaef16247f38062894b7a9e7f1cda22d11f6cb6cd5e30513a1c", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ec5fb80e52b4a5b5b7d8429b80eb1e273efebb31b03920061678c93ec84e2977", + "regex": "(?i)^https?\\:\\/\\/robuxkked\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "80bb64091016e185fe98284ef05ea8548daf9c23fd17eac3e499554a57cdde8c", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6bb2000fe8e9ae058ea9c93f10afeb6be4548a064da9b2024d59adbf5fc610d7", + "regex": "(?i)^https?\\:\\/\\/robuxgeg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fseg\\%3Fredir\\%3Dhttps\\%3A\\%2F\\%2Fprimeonegroup\\.net\\%2F09899\\%2F89099\\%2FOtsuka\\-us\\%2Fotsuka\\-us\\.com\\%2FbWljaGFlbC5wb2x0QG90c3VrYS11cy5jb20\\%3D$" + }, + { + "hash": "89ea0fddd7aa7ee7ebeac73599c7ca7e1d104789ac50e2af9dfd9e5a6f2860cc", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ab67f107c6fdd83ef3b73e4adfb4449eab80989650476327a39557f75cc5f218", + "regex": "(?i)^https?\\:\\/\\/robuxgeg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d8531ad2df4e4f9f8d851b41949d963ede530a7c0f35f9be46efb0b3a21dd11b", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7622b2a2d4338c19abaad0bd29dd8dd33aa02bd28b0ce4574fcc597db54478df", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "53224d87ba5aae28ca90b5643acf2c8ebeb2de4c05f034b698cb176241c6e0c7", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "22ed4db781efd86f27350b45aa1f7e20ef6fef62f0b5d9709df83a779b6ab53f", + "regex": "(?i)^https?\\:\\/\\/robux\\-jgu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7da0ee01791dee62843809ecb3bcb57b93bd7c29c07e142f4cc437c308b2ae15", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfei\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ec271ddca5e20e81ad41e90dd843056705d989d164db21302531f28ed930cab5", + "regex": "(?i)^https?\\:\\/\\/sdzpoekkd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "650d2d893749a1437c696d6bd3bb4555066c4502d1cfde583a3084dd0dda783a", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "556d6a5d51b21d95fb2f2f5a02d1eb33bc94d1b9aa4dfc0ed8375ed5146f1f4d", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b87eb4bfc859e644a0cd3d6f7178ba40f72d3ef0416f8676111052d24c251f5b", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "36b18e80da245089c30027b98cc025667a4bf2e5b60a88a6f477900d4b66ad10", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a8c65f4299df488f05549c8c7097951d1cc92adaac3c10acf2a1ced858a018bc", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "07c81b6891cf3f3c56000ff5deb93523cc5093f7800c9e9bcb35381cd8604e26", + "regex": "(?i)^https?\\:\\/\\/robux\\-jgu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "aa0ecdad1f0165d6af85a6bbb3cac3ba812788b4c15ae1651cd22f4af261c6f0", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?tzqtilox\\%3E$" + }, + { + "hash": "2401d110fd00b98a6958bfe6e95cb60c257678a9c8d166461e11f324342f51c5", + "regex": "(?i)^https?\\:\\/\\/bfsdnz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "065e3b674622cf9a9a204eed786dc7d3e581d90de40e75ec6b0ad4d20e774504", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1355bf565223985a5c0a2209fac591114e5601757155999db917343b310c76e4", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2f12ebef27a5eeb77c5b2533ce4bd2a651810bac420ff4ebcabaa55363e704e8", + "regex": "." + }, + { + "hash": "87a1bd77ab544b459c5728a1018b88a421012529b9735be077fd54affe0121ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trade[\\/\\\\]+index\\?type\\=buy\\&symbol\\=EOS[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index[\\/\\\\]+Login1[\\/\\\\]+index$" + }, + { + "hash": "928758cb9cdb3a41db1b1281c9b3114be46bb3a222095ea219d37b027234452f", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3a80d0750a611d929694b5d942e3429215deaaf12cebf1859b20c9d4e8ebc538", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f94c51a9a89ca849dd08612ad5d6e60e4db452efc8bcd12ca6f4b48c1eb2df55", + "regex": "." + }, + { + "hash": "e0c6e57451994f91cc279072f042c8af31c40d9b7e793db08d31f8b05f7429be", + "regex": "(?i)^https?\\:\\/\\/robux\\-girii\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "74ec04e5a6cd313ddca4633d6228c6f8289d96554f290a0f6c082e4010bc7641", + "regex": "(?i)^https?\\:\\/\\/robuxkked\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6884adfaba8a1b9b7cd4e7be625b6d7d58319f90634e5fef668c1ae3a638c613", + "regex": "(?i)^https?\\:\\/\\/sdzpoekkd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c060a890f12910487f9d573805661844928bbd0995bde7290b6b698f27d02332", + "regex": "(?i)^https?\\:\\/\\/robux\\-0ig\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8d4322890f5ab759b146bfe7e009f47aa5bc69adf7c6e8d92b1bc32befa6b2c3", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "13ba84006de69d27268ae13954ed32aab76d2383af4a136f4aa66f96baca7a5f", + "regex": "." + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ggnvxujz$" + }, + { + "hash": "605167aed5eb3ec4b3435287dc9ba633c18dae4b752df6f89835400ce13e16c2", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfei\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "23cb953c4135d1b92ca611edd4e4311d255e0329eb513309c0de626514011af3", + "regex": "(?i)^https?\\:\\/\\/n80810\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "61dcef2c3e2b2a8b2d9eb6fcbcc3befd330ebf5cb4f4f8279f8cfc3377953ab2", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfei\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e0fdf76d672e11f16d5688d364fabb83e795ada658f6c2173175b8bf9a0d7ff2", + "regex": "(?i)^https?\\:\\/\\/robuxvkk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e091e91372f6e609ec153b1102da0d0676d6ad93debe920d7949887d945df8a3", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3289e5d219c4f0744c1554d61b12f3bc1b95bf413becd775ddefcefadbe2439e", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4def17fbc36fe5c2156a17dbb90748ee7cadb41734170ed63dd3ea1a27715c1a", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9b03b6008106a64e85dd79f20210316b991db3fa1cac65342fc947984f112359", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ef97fec0af4c910bfc947f3d705b3d507a1289dbcd7ee165b2af6cc3be6d81cf", + "regex": "(?i)^https?\\:\\/\\/net00sa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9a919b3660084b4cf2c0979fe08ec24fca2919b39d11a474cc97aae37a8acf04", + "regex": "(?i)^https?\\:\\/\\/sdzpoekkd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "751b4f69158e0cda1a6db93a7802bd616754c3a2c16aea5fd6ef867c6a641b22", + "regex": "(?i)^https?\\:\\/\\/n80810\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "451e1195fb30e3ff49df74dca9085d2512ac89a32b2c5e82aecb1e8458d25b21", + "regex": "(?i)^https?\\:\\/\\/robux\\-ififie\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "944348538fa1b224da09b554a2c8376c0bd3e15ab47011973d8ba01f71e3c4cb", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "35448723999d34be1239c54af2b6d8fb1d5fb8da73573e73816afe3e934564e4", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1880bc27fc58a1f2b2bfebe652276ba1cadc833b6cf6187e6f16ea12c8846312", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5fea651a93b6aa685325f8b28cacbd84b9c3db9b02ca416ba4c96c1466564be7", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c9cc68d0b424e9e33069b7d08feb5f83c220b46193d51bf367f42e80d8d2255f", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "01799667a534def8806077402d3458c99c4debec26fd85cada10d37ab4a2ba58", + "regex": "(?i)^https?\\:\\/\\/robuxkked\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f971d3a6653f9e43b20d1b36be564165957443a75e8cefff356c25b34eb0bd49", + "regex": "(?i)^https?\\:\\/\\/freerobux119\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2fcc7b71aa379c64161403afb84908bb9cedce82f4c4b53e8aa66a86fa5839c2", + "regex": "(?i)^https?\\:\\/\\/sdzpoekkd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "095232e840971970a4e368dd0c1b37b444c651b0aaec1e19de5358838ab5a9ce", + "regex": "(?i)^https?\\:\\/\\/robux\\-fieo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f26c1c03115eba4e56cd9150ea89132889790df037f7a5ae0d51329d120f74fd", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "11ee57407545bff7ece7b7ea033803c701d4f732895856569a7c88cbef755cb3", + "regex": "(?i)^https?\\:\\/\\/robux\\-girii\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ef75bf42e19de1b7a0101262671e202092761e639a7926e9ba8e8cf9b8f11fb8", + "regex": "(?i)^https?\\:\\/\\/robux\\-gurudf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e55f86f4d5f7f0779df7f7eb52f545461144fd5ca502c07f20d9ddb049ec8e90", + "regex": "(?i)^https?\\:\\/\\/bzfsww\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6437d8b27e350b0abc897c336fa8ccf197132e96207a6c652043ddcfa3669000", + "regex": "(?i)^https?\\:\\/\\/dnrgnz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a78e7145c4056551615f1d5eab72479538e0ef7b1c4a70ffe10457306f0763cb", + "regex": "(?i)^https?\\:\\/\\/robuxgeg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "082488ae58d97ff23af18bcff7bcb046d12827b7757e0e68417c0b4e5161f69b", + "regex": "(?i)^https?\\:\\/\\/wiz\\-ink\\-tiger\\-adperdoti1985812444\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ec32be2b0ab351bc4e0086717e2042392e69fba9e7eb17cd103fae102a787340", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fdHbi(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "83f8bad17872daf73bafe9eb83227bf2065c14bd493361e4bae3acb400b01500", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3d1ac2317a08cc9ac0e067f5ba595a884375bbd17e71d8ca87273e184d8a774e", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ea554d19011e832a6ba5aec98c63adb264a3fe4f61ee250e42898652ebbbeb01", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0fd46c531e0df0d23a5384c52f5a2069332b02d49dc0445c932f54b3f46d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?zfoxwejo$" + }, + { + "hash": "7091c7746ac6b954982e9a5d01710e7534eb4f97bf0bd61a9f9bab0937783850", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1240b7816aa14792ffba8b27bbec392f987fa6540e546b7b1659b367b6a5e988", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e59062565371acdd39dcb771d53e52250349439391618ab0f680ff52e9283c60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eae989dde87bc94a319061caad758d10bb7aea0219f92f99cd73f48c22f68583", + "regex": "(?i)^https?\\:\\/\\/pub\\-22f0efc798c34919ad2e310e0e0009e4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b605b53a7d03cb33250460510bb67ea0eb32987bc48b8df94c2de580609f276a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.16O0hg1\\-2FLz1kpPxGHUZbqVFFAfj4mmjmeeOAuv\\-2BgehFvQh\\-2BfbA8D7uh\\-2BGI9kjmPXGT1u_2biLikaa0jKF2WtetzZXJ0d5HRyUYJayPMiQW2hV7B0Cs3qK\\-2BjBy5mvcMDf\\-2BLin1gEUdi75QBQHXHG0CqNtfKKWBnK9sWnMrBsrheOh7qTzfBWxObHGCoG\\-2B8e7S9tUUOASpaZffnhezWtFrvAeaTkYqXKqAXHZ\\-2B1SF6wSwevoHu183XW92\\-2Bj6i\\-2BJjHDthL5A\\-2FohIVGESBm3zLqcAzvhcTO\\-2FLiaOWB7smxvHSw7gunL7vTGhl\\-2BCjBoL7r5NYAAXS0s55ZT\\-2BNZOBxB30h1vdXTPFfOP0dzeTcrVrrPIx9P\\-2F4LQ6TJG1Y0BpUpdWpj8M3NAHgMuOkMUeZtUAbS9\\-2FUQWJadr\\-2FIKVXeisn3QMn4tZzL4k2tf2k3\\-2FCwDixdmIKuTXPNpolFCQYXEXpoFrROdIgjKZzFmqt\\-2B6HJ6lMcUy0LdJAmMV75AOK7lbBlXw8ieLbKS8AfdYBblc7C3k9Z7x84kl7JPf9HI5\\-2Fzt1RxYCXjd8SDrNn\\-2BfAlBGkblEwx2QiB6JpYCJHLj1CVNirHIvz0uUu9mu5IWTS6R347dbKPvALL6KOh9UtDYaR6bpFmaJbxtIYLkdi0gQf\\-2FKel8BtkSp2Qsy4\\-2BdoRD8zrxhKhwivoLEMFM8guHdh\\-2B2BcDIApUPPTfWYdRr\\-2F\\-2ForZQpHS4yLBWc06wkGFE6RaoT4AZMCsv288G5bEivnnzuOoDoiwdnYOrYQE7FJjz7155kBhrsdpN14nVGaTORf35wDTS02qbdmwGtZSNnaI\\-2Fe6inuWaicw\\-2Fg\\-2FMz2GxBA7S2pq6rfqdparWawYp10liUOtGiaWIZ3mtaw4\\-2F5cAdPGeL12HrFsSg0JaVIJktZRmNoDnoHB94RXR4ulwSYh0bSAzu\\-2BiZklcrLrBWnH4xfUQfeuVagj4NjAqZlG1tdRjrJrHW\\-2FJtCNczZEY\\-2FhNt\\-2BnSktT0r7WUGRZWjEY5EVjx2h6HsGbxCmNpcs" + }, + { + "hash": "7364bb0d92a45d4a488b77d6cbf70267610748c6d7ed47c3999b532f1609b35b", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3ivxxr(?:\\?|$)" + }, + { + "hash": "b3199ab039832922eeda1f452488111c1d518358dec800e1043051fb1bb925e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8003[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2d1c6dc50a0822495bc890ac17fc4cc9b1647a89ce247215db8d96af24416d1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fdHbi(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "528bd93d3f500f7ce141d003655f8b10d03795138bae566bf569e49c2bb70282", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+peJwGd(?:\\?|$)" + }, + { + "hash": "90c5cf2154665d7af8111a92f324742291343bd34f863c084332bc9dcefaa219", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8210[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "afc98319d6fbdfb68ebabc560d81b9c4ae0f4d2ce52fcc0cac3ac8b3f0e279b3", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7577792dce63fcdac838bde8700a9ae90200f5849134000fa007020b15b1a865", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fdHbi(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e554f1c63d261d14891b0735b61d6a5f0b28c44079562150125f1cfd18fe7326", + "regex": "." + }, + { + "hash": "47030d097a741b848a630ee357de956319c23d7a65765a28f5d1b57a599d7add", + "regex": "." + }, + { + "hash": "29b31d80b09a46c5d6b87d3876a23dc269f554db22be779f36bab976602c471c", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6a70ad6f499a0a6d14e85f43c17995f40b27a7fff105030555117171f007d81c", + "regex": "." + }, + { + "hash": "c5aeced8c3d24901202400290ba63b05480e019794d12c2320e80418e29bdba7", + "regex": "." + }, + { + "hash": "528bd93d3f500f7ce141d003655f8b10d03795138bae566bf569e49c2bb70282", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+peJwGd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "31c35e35f2111c2eb065e48de9b758fe7579cc46cf416ad68cc7d649d0fd8203", + "regex": "." + }, + { + "hash": "d46ab9e0cd23b8c740854c5ff128356065e3243b506ab1b843a29023e83e4f10", + "regex": "(?i)^https?\\:\\/\\/pub\\-6388386f626941ca8b9e3b0fd1558de0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "85522b8da0fe4e9d077a8c3778af861d7528cbfd11ff70d10e52e15cfdd84a0d", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a507afaf8cb95504aed357d2a521f681b208639b2d3ef31860741c79a0feb5b0", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4cc708c542195868e564dbb9b825d88474ee009b6ee702d927abc3aa21c4a78c", + "regex": "." + }, + { + "hash": "1276e8f96286af8456f5a40c9cb96891472ed399e5a9aba5d6aef3b983703137", + "regex": "." + }, + { + "hash": "00881a945417154923aaa054ad3647f71e50eddff8f8b9494040403e5bbdb4bb", + "regex": "(?i)^https?\\:\\/\\/p\\.infotrackhnv\\.top(?:\\:(?:80|443))?[\\/\\\\]+il(?:\\?|$)" + }, + { + "hash": "6b77d9fa061ecca6ee4df2038297d442c6b096e0335e4de33576fd75c51db57e", + "regex": "." + }, + { + "hash": "1240e3c24ec9608e5b1edbdee94ea123bb1882429ac83c39afad352fffc3ec50", + "regex": "." + }, + { + "hash": "a2a7a859af4c805d1d859ccb2d8b6b241c3767452abb714372f40cb49eec222b", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b3199ab039832922eeda1f452488111c1d518358dec800e1043051fb1bb925e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8003[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "52139c30114acf366bb2de668f9724f098de69ec35eaaebfce57153ae0c79b5c", + "regex": "." + }, + { + "hash": "9bd75116db53f3925bc09bc7916ef8dcb1aee124359b7e4c549a6b01ad74ae0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tw(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "15a508e2c29e54a25f04fcc7bb66cbee1b02920052a29a0beec6052fb318d027", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e59062565371acdd39dcb771d53e52250349439391618ab0f680ff52e9283c60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "fee16f1b85ddea5cc7c7ed64a567a3372c08aa3527cf6dd6f15e5d890be4bd72", + "regex": "(?i)^https?\\:\\/\\/pub\\-1ae249d8630c4c659885f2cf4d9f908a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3a278ff27fd797f2a8eda86b308fe5ee89d433ab3e8dbd701c97bb6e69337b84", + "regex": "(?i)^https?\\:\\/\\/pub\\-71d42a0df4194b95aa79090678f1508c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3aebcf46c18f9999cdceaa0e3c815d16558526cabb9f41d55e77c5b6de282bbb", + "regex": "(?i)^https?\\:\\/\\/attcom\\-109000\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9f049950422d903f1cb98eaa32644b1a64330e57f0a9d018874b493a58f166b5", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ff75612ea6d18bc024e19e4f6d2300a9f2a25a7521b08f78295ddf53efa9f008", + "regex": "(?i)^https?\\:\\/\\/att\\-104483\\-109397\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "28399fbbdeb4f048e9806e3cf81c1e6cf3efd08578bf006a7829ca7efd684edd", + "regex": "." + }, + { + "hash": "bef4e63ccd754bd905727a293492c4b5be4a8f3386bcccf58fde88b745f02bbf", + "regex": "." + }, + { + "hash": "aee658c73a81ae278808fdd4f725aeb88e1870a614d2173a42126d909e365653", + "regex": "(?i)^https?\\:\\/\\/pub\\-d3afc134827a4e0ebce18add92abe815\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "800690d2a34de19e4f6a36dfabaa99fdd1c0ea5fc472e621bfa0b774081b5d4a", + "regex": "(?i)^https?\\:\\/\\/grdbhq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "63ea15b1c9b9367130d77e7d4e9b9ba2adedffcf53da3e5006740f841ad98021", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "090200f2aa3ba80c83c720bb0467e98ce5c929a3dbedbc2377dc4e0308a0cb8c", + "regex": "(?i)^https?\\:\\/\\/987sdoufhksld\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e4b4cd0d3c33222f5f8677ece31f64e2bd2cc1f11e2a02655bcfedcd6dc5e3f2", + "regex": "(?i)^https?\\:\\/\\/hgfh56jgfgdyh45htr4\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ce338b6fcda030768be81635067124bec420615051f044cdb841f062707c8001", + "regex": "(?i)^https?\\:\\/\\/www\\.us2\\-authcoinbase\\.154\\-38\\-182\\-251\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f9215a889b9349916579d5a850b9ce1c48c776a924c9c6ab7a79faf12ffb5764", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "52f652bcac34df768eacdcf605f661e9573541170b58ab2e3ecf85dcd1637a56", + "regex": "(?i)^https?\\:\\/\\/987sdoufhksld\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f4a888f0a343ad5e68966fa00905131faf6f412dd64358043aeb4c7a2a478ec9", + "regex": "." + }, + { + "hash": "0fccd929983d7cfd5cbe0a13e4ba47bb345db9f426cfd48d8ad39d318401b0ea", + "regex": "(?i)^https?\\:\\/\\/hgfh56jgfgdyh45htr4\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "84d2d2e78b963e28a65a623b45b2202dbad85ec5d1703e88af657ca8aa0368f3", + "regex": "." + }, + { + "hash": "ac5fd1b88c495ae42632ae76e11f454b24f7dd264029aef275ab88c71ea18d9b", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "541f30890fb641561027b6512c49b057ffc475fdf4d3f401a8ab763d763c5b4b", + "regex": "(?i)^https?\\:\\/\\/hgfh56jgfgdyh45htr4\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "14f9b7b6d461eafe3e3d3027d83ba4f31751ab3f82a4e3674e041f1a29678729", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "df5f6ab76a029389658d4174d06a2ec49bcbed16e7714b53397ec16041a2f84f", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a0059619aa41c43c7a05ce3d4ba4a660042804c2e20de5acf1b42fb77348430e", + "regex": "(?i)^https?\\:\\/\\/987sdoufhksld\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ad50b66c0b5ea78e5db71c89cd24aa4631531a29631e2030a9c56d67c1b86183", + "regex": "(?i)^https?\\:\\/\\/mail\\.us3\\-signincoinbase\\.154\\-38\\-182\\-251\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d42911f51f07dc68b498d517120009bdb08799ff72a9cd9d44d6f2be71558cb4", + "regex": "(?i)^https?\\:\\/\\/home\\-103712\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7c9f07307601028ba43a25dd668e5084771c177c2895b34e1a348dc8f4410b6d", + "regex": "." + }, + { + "hash": "baea27d88dea3f8065ae07edd153bae18918fa23817178ae8e831b1a5c382f5d", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cf2770ba9b7c04e1730b573e2ea5a374403a84f87a01ab7820c7900ab32e5bcd", + "regex": "(?i)^https?\\:\\/\\/lomnchasueastlaxnaseasgta\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b32c9ef6e8cedccf4ad2c7ef938acade3aa556539af529a308e0814f43237cf", + "regex": "(?i)^https?\\:\\/\\/www\\.ksedmondson525\\.50\\-6\\-174\\-12\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d24cb59702aa53e608a459feedc92ddbbfe18dfe40f7dd423a0d63d5c8e61d01", + "regex": "(?i)^https?\\:\\/\\/us2\\-authcoinbase\\.154\\-38\\-182\\-251\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a743abf280fff52a0a600173f7d21af09198d5bd2641823df48d0b9992a2c6c3", + "regex": "." + }, + { + "hash": "946f08e22b104c8b9e285c26139912bdb72af1beb27595adcb1cec6d12e37075", + "regex": "(?i)^https?\\:\\/\\/nhuyeaosrmzkasnezada\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "728d65529c0ce7f31aeea4ffdac342c356e5c3d84e4ce9213c0d8676ea4c7519", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ecef4de0a581056cc351dd9c7995a44394168656684f2b93b78024914b8864ec", + "regex": "(?i)^https?\\:\\/\\/lomnchasueastlaxnaseasgta\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "234b10ac92eaf808ab589dea4d72297606403ba2e149b6e6ec7d449f834d5cf7", + "regex": "(?i)^https?\\:\\/\\/lomnchasueastlaxnaseasgta\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "da3dd577d66f09a8d17787dd6f3c8b500e5a415abda9585ac18e5a1bb7a6cf9a", + "regex": "(?i)^https?\\:\\/\\/nhuyeaosrmzkasnezada\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "74ed69eb337b9e911b81c159759613dedb1dcdedebea98cadae1730181ac0cbc", + "regex": "(?i)^https?\\:\\/\\/nhuyeaosrmzkasnezada\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "abaf600dc6d4fda8c29f7496e8607dc984f31a2ddec286284d660466b98c8d26", + "regex": "(?i)^https?\\:\\/\\/nhuyeaosrmzkasnezada\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "715089e885109cf0abd991563cf81d78f2b9fdc4ff5bbc44979680fb0ceb1f0c", + "regex": "(?i)^https?\\:\\/\\/facebook\\-support\\-ads\\-cas\\-cc22e\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "00917af87474a2ec00e437f3b6027aa12fce51af8c0304a326fb73ec52d822bc", + "regex": "." + }, + { + "hash": "0fec862cd03206d2984efc7e96563a4002559e7a59738ec47f995d537fc62239", + "regex": "(?i)^https?\\:\\/\\/lomnchasueastlaxnaseasgta\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c8348d1eac030473d0be46862f3e64e9a6d5f966186c26c16d984d1f7a4ece78", + "regex": "(?i)^https?\\:\\/\\/hgfh56jgfgdyh45htr4\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a71062cb914bf547892519c1de6d7e4826ae2a7e0f5b1d0048792e4988410dc9", + "regex": "(?i)^https?\\:\\/\\/hgfh56jgfgdyh45htr4\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c78e0d9b1dee09c8536294e82659c72555bee5100008cb8b5bc30d05ea1357b9", + "regex": "(?i)^https?\\:\\/\\/guga235235\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "14b851e715b668645b4ce23a1f12fdb25dc0c939f8d6b939b6a1d9ba1e20ceb9", + "regex": "(?i)^https?\\:\\/\\/nhuyeaosrmzkasnezada\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1e19323e33ad06eb9ebc5bbcf15ce1de5a942dee1838d1a08ca3bb07555e4537", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+loginlg" + }, + { + "hash": "f0d7179dc0fa7fab1949d1ebe987ab2a2cbacd3af02acdfbb4e01f8d69a424db", + "regex": "(?i)^https?\\:\\/\\/nhuyeaosrmzkasnezada\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8e7c619517c160ce77daeeade7af3a4923d4c2931495fad4f2beaf962e4e58ef", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "beb977e9ad72001ebc6d590baeb654428accfbf99a8cba56817f7102ac86f33e", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "365fe38a55dea948469879c094e8b8f2ca083c7a494c6e5e2185c34fb19bdd10", + "regex": "." + }, + { + "hash": "5a3c07e5250d8bfed368cf23a86f9d677c8991cc51afeaae1ba15b50f920eebd", + "regex": "(?i)^https?\\:\\/\\/987sdoufhksld\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e0df6b8ad668014dd967daabe660c99333748de9179de72caceb0f73bb6d48c7", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c015059d50e6fc4c9fbd1a5437a6ff689e12cf2fad1c7a5c2f2c6c0b90d4e827", + "regex": "(?i)^https?\\:\\/\\/hgfh56jgfgdyh45htr4\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b109576250fa095c1196672535eaa8d175289a9b2e60f22fb639cc914bfa24cd", + "regex": "(?i)^https?\\:\\/\\/nhuyeaosrmzkasnezada\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bf65434d2d4ddd4ee782128b1cb5a92679654c243114a13fbe3bdc04dab67179", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pe(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c73ee9716e4f25062bfb258de63b490ff30cc14603d44ce7d0794acbb2d36f65", + "regex": "(?i)^https?\\:\\/\\/nhuyeaosrmzkasnezada\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "013c064ac73880433aef8064bb8649a438cba9f65559250028581b6fd0eb6aff", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3226b7b386dfda78372f3aed9afe28c3b129b637236a69c037f9b1fa800ba097", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+defaultaspxid\\=B645F6A7\\-D4E5\\-A109\\-B7F6\\-A4D5C6B7E5A8\\=PTI151101TE5\\&rr\\=GBG160301B1A\\&tt\\=\\&fe\\=66da41b04d573(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d1efe1f268e34f854741ffb43702f0efe1c9b4fc641b07b8b501bbd7ffff7767", + "regex": "(?i)^https?\\:\\/\\/klomcnasheuastnasfasldaeas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "51a19336a8859fdafb7c034a2b47032670cdef118f186fdbdede6d29332ed7ad", + "regex": "." + }, + { + "hash": "0e8bac60351ff787d3fc90bf3d1b49320b17bd350daf61cdcd64e2aed222da9d", + "regex": "(?i)^https?\\:\\/\\/nhuyeaosrmzkasnezada\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "80a8614b9c9457952c3ce910af2401fe4f5770f2628b7c1c056d65a2837dcf68", + "regex": "." + }, + { + "hash": "75dfb54c529bf07f387be1eea378c08e43d24ceace91916fb00b76bf2b0c10dd", + "regex": "." + }, + { + "hash": "099657b2a658c980db53ec5edd22087220eac980901fe6680d04cd778445f5ae", + "regex": "(?i)^https?\\:\\/\\/att\\-109946\\-103733\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4f39b62ca061719876e9107c294330d6fc431e8a79088fb1845c6d28a026e3a7", + "regex": "(?i)^https?\\:\\/\\/www\\.172\\-86\\-96\\-51\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+8L2loIryS0BWhf3SJgsYPLPP3AFazmZWuKetCfzgEdZDqnfsxm3F80rW9AcmoKFi28CzQSJwjRB[\\/\\\\]+62ZebZP9fJKkfOzdskORWRgcYmzkOFdpcHGmmHZsPY6TMWvtZrrcElsi5v1BJpwWD73IwCmmQCItjYz5[\\/\\\\]+lLjXaKLeLSYWh92BSl6wzVLvTlnTDCBKYCePRfqyIREllsiSv516o1WEtkSBTIztEOIaZp\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Aycereklam\\-login\\-0fy96d\\.outcompeteclean\\.com[\\/\\\\]+IbnOyCOFHKkrH0VUE2328fOwKDJ0vsKNkiR91qfWhmYWRnA7nnotWII[\\/\\\\]+alJ2aiJM2YJqaYpcroKpxvBPwvcxCeMF6WJDVVOK8qLGo51FlyYTpcFeUfX2RQrPSys[\\/\\\\]+iamlnmXb1prHJ8oInbEgnIQUhsnQphbIQrA9vKWgCMtGkTANY6[\\/\\\\]+$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+8l2loirys0bwhf3sjgsyplpp3afazmzwuketcfzgedzdqnfsxm3f80rw9acmokfi28czqsjwjrb[\\/\\\\]+62zebzp9fjkkfozdskorwrgcymzkofdpchgmmhzspy6tmwvtzrrcelsi5v1bjpwwd73iwcmmqcitjyz5[\\/\\\\]+lljxaklelsywh92bsl6wzvlvtlntdcbkyceprfqyirellsisv516o1wetksbtizteoiazp\\?cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-aycereklam\\-login\\-0fy96d\\.outcompeteclean\\.com[\\/\\\\]+ibnoycofhkkrh0vue2328fowkdj0vsknkir91qfwhmywrna7nnotwii[\\/\\\\]+alj2aijm2yjqaypcrokpxvbpwvcxcemf6wjdvvok8qlgo51flyytpcfeufx2rqrpsys[\\/\\\\]+iamlnmxb1prhj8oinbegniquhsnqphbiqra9vkwgcmtgktany6$" + }, + { + "hash": "7ed9813386ce51d3faf2f1731a00d380854e7a4d509e21ec61f80e339088c44c", + "regex": "(?i)^https?\\:\\/\\/pub\\-fedcaeef15064d3faaf3979ea201d798\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6e9766b7882f36158e9c86e58bc0a194a749c4affe1f18c151203c305a870f8f", + "regex": "." + }, + { + "hash": "606b106b2cac38aeeb4b1462a8d36799ab2b47e737999cd05439f6d8b8e78e14", + "regex": "(?i)^https?\\:\\/\\/pub\\-d15b801b698d46eba3e00e3dd8c89445\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9f88ffd16406f004a9e2b53e4b71d0f56dc5b841fa3b8f36e17b6b326dc077c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=118AF87B\\&e\\=18B7BAA\\&c\\=D3D68\\&t\\=0\\&l\\=E24E3812\\&email\\=k7[\\/\\\\]+XIr3fT7rtyjp[\\/\\\\]+7AQPpqBanR218rId\\&seq\\=1$" + }, + { + "hash": "5aa5999250fd60d5251264f098bdde3ec7ef900828e188bcb85e88fd8c440dfe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register65535(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+gxcnq1kwy9tsfufioyyrdbh7z8gu8u3mtymxrknyvfmqrq5w0njjaquowm0jhhrgd5ljcqeuv4o[\\/\\\\]+pwyigihrkmndyoosihpluc5ufxj68hehobzdsw3veahkpql8jwzltffh99acrd8hhjfahcaqhgspx6ra[\\/\\\\]+9e1behbz3q2xku5j2s4ewso847yprasboakhnyzptsirzymfqaaaeopa47ouz0iygicq5m\\?cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-aycereklam\\-login\\-0zmwbs\\.outcompeteclean\\.com[\\/\\\\]+vo9mn1gfbseagxlqrf0o4cks20kz7iakzke34i88ivqu5ldojedls2n[\\/\\\\]+aluacjtfcakjwznzr4ytrolttfuxfhmvdlfpibm1hh8u4vpmkuhds1kq0fsxnt7xfq3[\\/\\\\]+kmudaxmst5soukrqmcpdofj5habitcjv7sz75oi8vfcvrm9or1$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+J92BakaedXFW5828D0OV6YH0YjbsD5XGE3zzljroFF9WbqCQgFNJmeuH0vndGPM1acpCri9Lwue[\\/\\\\]+TMzqzZWr8DLHoCi2DeRBFse5L2I5B4lT93reKmavyY0kBVApbymf3tKjgjxWdsBusXqXOlngUaURusJj[\\/\\\\]+iKZSEbdOV7CXNPRJkI7bxsOfaOPQzkf8M51nO4kSgJldPmSMr3rxgRoFsezAeCA1KFrbyV\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Truyol\\-login\\-0saEwl\\.outcompeteclean\\.com[\\/\\\\]+JkbrfcNsTuwZ0IC4f7irB9VWArvJIRxeUYTEPf0AVhjKg3w0JL6IJiq[\\/\\\\]+alKUFTFRpNMLSR3hfSBYXT3hh39bfTivMwZX7qUiYH4XdL2z3QCXlJz6LAD3HeAb5XK[\\/\\\\]+fkesEQIQAxF9efA8mfeQhIMvui7XiQZ332KB5Koii1FMFK6g0H[\\/\\\\]+$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+53O2GwjmfvRkWLj9Ws88fS0u7KVmspmzOTWXEDYcql7zcRtLvFO1YvD3Uxsxdz3YWmh0MyZ8zuK[\\/\\\\]+7CB3ULIKEE7qPtp6spQVTOrePkTuv0k03N8mxo30WPTNA38XOat2TrxpIKOyq0aeJSRvQKCtmL1l4ZiH[\\/\\\\]+v2HZX6U8YbaYggFjRZVrSs0s4oa4rdWg9RvnxhMXDnwHyQXxSfOud3mk2qUHrGckhLljJd\\?r\\=https\\:[\\/\\\\]+mail\\-Kozmetikvalf\\-login\\-01pXQ6\\.outcompeteclean\\.com[\\/\\\\]+dI1YKuLTvvkYWg4xgpqO0wUX0degY3nDbMog8KaOebiSJRGCO7JWkZo[\\/\\\\]+albGFTNatpWakO69KprN9PtsOycrVGXr26kv34kJEcgX29dDNZwe4W4Zn4nfSCDYTKU[\\/\\\\]+3EOe7DUIairnUo1iiKoEaxgndUCQfQObrZhcRmRUVisWCrv4Db[\\/\\\\]+$" + }, + { + "hash": "1af78537ad68dd15aa1e4f5dc728cdc22928ab528920d034efebd045274acf4f", + "regex": "(?i)^https?\\:\\/\\/pub\\-25bbaf619d484e59a01741685f945bd7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+8L2loIryS0BWhf3SJgsYPLPP3AFazmZWuKetCfzgEdZDqnfsxm3F80rW9AcmoKFi28CzQSJwjRB[\\/\\\\]+62ZebZP9fJKkfOzdskORWRgcYmzkOFdpcHGmmHZsPY6TMWvtZrrcElsi5v1BJpwWD73IwCmmQCItjYz5[\\/\\\\]+lLjXaKLeLSYWh92BSl6wzVLvTlnTDCBKYCePRfqyIREllsiSv516o1WEtkSBTIztEOIaZp\\?r\\=https\\:[\\/\\\\]+mail\\-Aycereklam\\-login\\-0fy96d\\.outcompeteclean\\.com[\\/\\\\]+IbnOyCOFHKkrH0VUE2328fOwKDJ0vsKNkiR91qfWhmYWRnA7nnotWII[\\/\\\\]+alJ2aiJM2YJqaYpcroKpxvBPwvcxCeMF6WJDVVOK8qLGo51FlyYTpcFeUfX2RQrPSys[\\/\\\\]+iamlnmXb1prHJ8oInbEgnIQUhsnQphbIQrA9vKWgCMtGkTANY6[\\/\\\\]+$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+53O2GwjmfvRkWLj9Ws88fS0u7KVmspmzOTWXEDYcql7zcRtLvFO1YvD3Uxsxdz3YWmh0MyZ8zuK[\\/\\\\]+7CB3ULIKEE7qPtp6spQVTOrePkTuv0k03N8mxo30WPTNA38XOat2TrxpIKOyq0aeJSRvQKCtmL1l4ZiH[\\/\\\\]+v2HZX6U8YbaYggFjRZVrSs0s4oa4rdWg9RvnxhMXDnwHyQXxSfOud3mk2qUHrGckhLljJd\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Kozmetikvalf\\-login\\-01pXQ6\\.outcompeteclean\\.com[\\/\\\\]+dI1YKuLTvvkYWg4xgpqO0wUX0degY3nDbMog8KaOebiSJRGCO7JWkZo[\\/\\\\]+albGFTNatpWakO69KprN9PtsOycrVGXr26kv34kJEcgX29dDNZwe4W4Zn4nfSCDYTKU[\\/\\\\]+3EOe7DUIairnUo1iiKoEaxgndUCQfQObrZhcRmRUVisWCrv4Db[\\/\\\\]+$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+52RGN7TKrttiM94Oowu5TtwWvTflTmqhJSx4Jhyo1jdrAyJDIZswMVEI4zVGAKP53XJtLQNJodh[\\/\\\\]+GxAhpWuiV226Cn01nLtlkXgQYqUC5iUqnZTZWAgPyPyF3sm0qKUG6lJu5VDRXE9OBWGfe9UatfuRzhQr[\\/\\\\]+ooyhEeAABiH4vOFh4Yxl2x0g79aVdoX6das4sd8e6EisKrQKt3aJ8qhAPnRLUf3K6jC2KD\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Nzf\\-login\\-0ZxExU\\.outcompeteclean\\.com[\\/\\\\]+u0CcESnnYfPL3ETgnYOomHztwAQRNpLysPAaL6xIytO5tmFmyzWhChe[\\/\\\\]+alCXQbNho6CLwULdynIvz4YUNDbyI4VoGbZzZjhViTAeQ59MqEtt3rXdGjZOzynbd1b[\\/\\\\]+GpEChPtcNP8JH5E7SPInJT6cPsiBh13Yczr23azvl0hIYNbzcZ[\\/\\\\]+$" + }, + { + "hash": "4eb8e45f7933a3269365b79451f65d916e190a2841c78bc36990fe1f0b274aaa", + "regex": "." + }, + { + "hash": "25baa9fc44f34725fb7a9a38b6f6fb26f5f6cbdfed9a3cea5ecb0733716fc858", + "regex": "." + }, + { + "hash": "5b8aadbfdf35bed0fb052917514114620e54e119e67986a91ddf3946e9fb4604", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+52RGN7TKrttiM94Oowu5TtwWvTflTmqhJSx4Jhyo1jdrAyJDIZswMVEI4zVGAKP53XJtLQNJodh[\\/\\\\]+GxAhpWuiV226Cn01nLtlkXgQYqUC5iUqnZTZWAgPyPyF3sm0qKUG6lJu5VDRXE9OBWGfe9UatfuRzhQr[\\/\\\\]+ooyhEeAABiH4vOFh4Yxl2x0g79aVdoX6das4sd8e6EisKrQKt3aJ8qhAPnRLUf3K6jC2KD\\?r\\=https\\:[\\/\\\\]+mail\\-Nzf\\-login\\-0ZxExU\\.outcompeteclean\\.com[\\/\\\\]+u0CcESnnYfPL3ETgnYOomHztwAQRNpLysPAaL6xIytO5tmFmyzWhChe[\\/\\\\]+alCXQbNho6CLwULdynIvz4YUNDbyI4VoGbZzZjhViTAeQ59MqEtt3rXdGjZOzynbd1b[\\/\\\\]+GpEChPtcNP8JH5E7SPInJT6cPsiBh13Yczr23azvl0hIYNbzcZ[\\/\\\\]+$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+52rgn7tkrttim94oowu5ttwwvtfltmqhjsx4jhyo1jdrayjdizswmvei4zvgakp53xjtlqnjodh[\\/\\\\]+gxahpwuiv226cn01nltlkxgqyquc5iuqnztzwagpypyf3sm0qkug6lju5vdrxe9obwgfe9uatfurzhqr[\\/\\\\]+ooyheeaabih4vofh4yxl2x0g79avdox6das4sd8e6eiskrqkt3aj8qhapnrluf3k6jc2kd\\?cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-nzf\\-login\\-0zxexu\\.outcompeteclean\\.com[\\/\\\\]+u0ccesnnyfpl3etgnyoomhztwaqrnplyspaal6xiyto5tmfmyzwhche[\\/\\\\]+alcxqbnho6clwuldynivz4yundbyi4vogbzzzjhvitaeq59mqett3rxdgjzozynbd1b[\\/\\\\]+gpechptcnp8jh5e7spinjt6cpsibh13yczr23azvl0hiynbzcz$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+gxcnq1kwy9tsfufioyyrdbh7z8gu8u3mtymxrknyvfmqrq5w0njjaquowm0jhhrgd5ljcqeuv4o[\\/\\\\]+pwyigihrkmndyoosihpluc5ufxj68hehobzdsw3veahkpql8jwzltffh99acrd8hhjfahcaqhgspx6ra[\\/\\\\]+9e1behbz3q2xku5j2s4ewso847yprasboakhnyzptsirzymfqaaaeopa47ouz0iygicq5m\\?cookieQ\\=1\\&cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-aycereklam\\-login\\-0zmwbs\\.outcompeteclean\\.com[\\/\\\\]+vo9mn1gfbseagxlqrf0o4cks20kz7iakzke34i88ivqu5ldojedls2n[\\/\\\\]+aluacjtfcakjwznzr4ytrolttfuxfhmvdlfpibm1hh8u4vpmkuhds1kq0fsxnt7xfq3[\\/\\\\]+kmudaxmst5soukrqmcpdofj5habitcjv7sz75oi8vfcvrm9or1$" + }, + { + "hash": "313db2c674513de9c3920559dfcf84bab418b4de20f4653e6c841b982eba2d80", + "regex": "." + }, + { + "hash": "61643d42bdd265dc27384f41d9bc638e6b84436d96011100079c61307bcf1935", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+52rgn7tkrttim94oowu5ttwwvtfltmqhjsx4jhyo1jdrayjdizswmvei4zvgakp53xjtlqnjodh[\\/\\\\]+gxahpwuiv226cn01nltlkxgqyquc5iuqnztzwagpypyf3sm0qkug6lju5vdrxe9obwgfe9uatfurzhqr[\\/\\\\]+ooyheeaabih4vofh4yxl2x0g79avdox6das4sd8e6eiskrqkt3aj8qhapnrluf3k6jc2kd\\?cookieQ\\=1\\&cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-nzf\\-login\\-0zxexu\\.outcompeteclean\\.com[\\/\\\\]+u0ccesnnyfpl3etgnyoomhztwaqrnplyspaal6xiyto5tmfmyzwhche[\\/\\\\]+alcxqbnho6clwuldynivz4yundbyi4vogbzzzjhvitaeq59mqett3rxdgjzozynbd1b[\\/\\\\]+gpechptcnp8jh5e7spinjt6cpsibh13yczr23azvl0hiynbzcz$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+GXCnq1KwY9TSfuFiOyyrdbH7Z8gU8u3MTYMXrKNYVfMQrq5w0nJjaQUowM0jhhrGd5lJCQeuV4O[\\/\\\\]+PwYIgihrKMndyoOSIhPluc5uFxj68HeHoBzdSW3VeAhKPqL8jWzlTFfh99AcrD8hHJfaHcaqhgsPx6rA[\\/\\\\]+9E1bEhBz3Q2XkU5j2S4eWso847YpRASbOaKHNYzPtSirzYMFQaAAeopA47OUz0iYgICQ5m\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Aycereklam\\-login\\-0zMwBS\\.outcompeteclean\\.com[\\/\\\\]+vo9MN1gFbSEAgxlQrf0o4ckS20kz7IakzkE34i88IvqU5LDOjeDLS2n[\\/\\\\]+aluACjTfCAKJWZNZr4YTRoltTfuXFHMVDlfPibm1HH8U4vPMKUhDS1kQ0FSxNt7xfQ3[\\/\\\\]+KMUDaXMSt5SOukrqMcPdOfj5hABiTCJv7sz75OI8vfCvrm9oR1[\\/\\\\]+$" + }, + { + "hash": "dd4e2e7ec8a27ce3f51d8deb197c3099f998cab346724a37783b5c0fbde34eef", + "regex": "(?i)^https?\\:\\/\\/instagram607\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "57d2be019f63538f602943f38da0adbda48833b20ca34ba33d838f7e4254f790", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+post(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5296f2c58b5b65f2c873e1e4da6cb3bbb2ecf969916c506c5317e22be1abc91", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8dm9gt(?:\\?|$)" + }, + { + "hash": "5aa5999250fd60d5251264f098bdde3ec7ef900828e188bcb85e88fd8c440dfe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register65535(?:\\?|$)" + }, + { + "hash": "3b0ea9a3f8d1726a3f6c26b1c35dd8e30d3538b5ec73a0319242920a23ada3a6", + "regex": "(?i)^https?\\:\\/\\/facebook\\-help\\-5005741289632505\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+J92BakaedXFW5828D0OV6YH0YjbsD5XGE3zzljroFF9WbqCQgFNJmeuH0vndGPM1acpCri9Lwue[\\/\\\\]+TMzqzZWr8DLHoCi2DeRBFse5L2I5B4lT93reKmavyY0kBVApbymf3tKjgjxWdsBusXqXOlngUaURusJj[\\/\\\\]+iKZSEbdOV7CXNPRJkI7bxsOfaOPQzkf8M51nO4kSgJldPmSMr3rxgRoFsezAeCA1KFrbyV\\?r\\=https\\:[\\/\\\\]+mail\\-Truyol\\-login\\-0saEwl\\.outcompeteclean\\.com[\\/\\\\]+JkbrfcNsTuwZ0IC4f7irB9VWArvJIRxeUYTEPf0AVhjKg3w0JL6IJiq[\\/\\\\]+alKUFTFRpNMLSR3hfSBYXT3hh39bfTivMwZX7qUiYH4XdL2z3QCXlJz6LAD3HeAb5XK[\\/\\\\]+fkesEQIQAxF9efA8mfeQhIMvui7XiQZ332KB5Koii1FMFK6g0H[\\/\\\\]+$" + }, + { + "hash": "f08ea4d144a290627bfb56059dc693861cea7f8cd129e7406e03c7bc30a198ba", + "regex": "." + }, + { + "hash": "abd381d187388dc72d0e335845969db5beea93e98e28dba4a26994d54867935b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2yfZmuhWPHrazzRbm0jCNl5F1LrfIA\\-nwtKiiXlMeHyWy5_3fkQEMjp\\-lVU0qcbOAqi77BTtomPncvxWNMZ4NCo6PUxnUPLKbWFVvpq6ZPHkT0fceuVkJ5eep5MlqyObFMwUGnjgFFqmWg3owoQ5x4pKa7mnxuuwnBLHmcCo_n1bcIuqX94I\\-Iw31l\\-8SZITrcas(?:\\?|$)" + }, + { + "hash": "9f88ffd16406f004a9e2b53e4b71d0f56dc5b841fa3b8f36e17b6b326dc077c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=118AF87B\\&e\\=18B7BAA\\&c\\=D3D68\\&t\\=0\\&l\\=E24E3812\\&email\\=k7\\%2FXIr3fT7rtyjp\\%2F7AQPpqBanR218rId\\&seq\\=1$" + }, + { + "hash": "bcb75db3905b1d4e29c914f3eadb325902f13725708705a304b79e6e36f092b7", + "regex": "(?i)^https?\\:\\/\\/program\\-bonus\\-avax\\-network\\.000\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "353c69ed8ea171ead0e960e9b106bed0882d604406af915e3d8b9e27615bce6b", + "regex": "(?i)^https?\\:\\/\\/gitaman69\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+53o2gwjmfvrkwlj9ws88fs0u7kvmspmzotwxedycql7zcrtlvfo1yvd3uxsxdz3ywmh0myz8zuk[\\/\\\\]+7cb3ulikee7qptp6spqvtorepktuv0k03n8mxo30wptna38xoat2trxpikoyq0aejsrvqkctml1l4zih[\\/\\\\]+v2hzx6u8ybayggfjrzvrss0s4oa4rdwg9rvnxhmxdnwhyqxxsfoud3mk2quhrgckhlljjd\\?cookieQ\\=1\\&cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-kozmetikvalf\\-login\\-01pxq6\\.outcompeteclean\\.com[\\/\\\\]+di1ykultvvkywg4xgpqo0wux0degy3ndbmog8kaoebisjrgco7jwkzo[\\/\\\\]+albgftnatpwako69kprn9ptsoycrvgxr26kv34kjecgx29ddnzwe4w4zn4nfscdytku[\\/\\\\]+3eoe7duiairnuo1iikoeaxgnducqfqobrzhcrmruviswcrv4db$" + }, + { + "hash": "ba84ff8cd0d53a54e4d0a8f3e81eb361b496a790e58ad6622477e70c6f70770a", + "regex": "(?i)^https?\\:\\/\\/viveksingh200\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "05711d6844ced80a1e90525d69e5f99a4af7fd7b0a11d435bc6a98b8c2d6cdbe", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+8l2loirys0bwhf3sjgsyplpp3afazmzwuketcfzgedzdqnfsxm3f80rw9acmokfi28czqsjwjrb[\\/\\\\]+62zebzp9fjkkfozdskorwrgcymzkofdpchgmmhzspy6tmwvtzrrcelsi5v1bjpwwd73iwcmmqcitjyz5[\\/\\\\]+lljxaklelsywh92bsl6wzvlvtlntdcbkyceprfqyirellsisv516o1wetksbtizteoiazp\\?cookieQ\\=1\\&cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-aycereklam\\-login\\-0fy96d\\.outcompeteclean\\.com[\\/\\\\]+ibnoycofhkkrh0vue2328fowkdj0vsknkir91qfwhmywrna7nnotwii[\\/\\\\]+alj2aijm2yjqaypcrokpxvbpwvcxcemf6wjdvvok8qlgo51flyytpcfeufx2rqrpsys[\\/\\\\]+iamlnmxb1prhj8oinbegniquhsnqphbiqra9vkwgcmtgktany6$" + }, + { + "hash": "391e2d19d6b49ac56de802853f955d559ee74b21f7f5a4a967679d375cbabef6", + "regex": "(?i)^https?\\:\\/\\/navigate\\-loginscreen\\-att\\-106265\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dc3e79fc66434a3bfd23f8b59a575727d4e23a38714da869ec58157bfeb71538", + "regex": "." + }, + { + "hash": "a4c60844c107441f59449f4078b54431b98fd033b65732a2fe5783bc25912ef8", + "regex": "(?i)^https?\\:\\/\\/link54684\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "00b343980aae2e5b43efbf7be7e9600dd2cc39a7cc31e00ee8294be59d2936be", + "regex": "(?i)^https?\\:\\/\\/att\\-login\\-screen\\-103164\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+j92bakaedxfw5828d0ov6yh0yjbsd5xge3zzljroff9wbqcqgfnjmeuh0vndgpm1acpcri9lwue[\\/\\\\]+tmzqzzwr8dlhoci2derbfse5l2i5b4lt93rekmavyy0kbvapbymf3tkjgjxwdsbusxqxolnguaurusjj[\\/\\\\]+ikzsebdov7cxnprjki7bxsofaopqzkf8m51no4ksgjldpmsmr3rxgrofsezaeca1kfrbyv\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-truyol\\-login\\-0saewl\\.outcompeteclean\\.com[\\/\\\\]+jkbrfcnstuwz0ic4f7irb9vwarvjirxeuytepf0avhjkg3w0jl6ijiq[\\/\\\\]+alkuftfrpnmlsr3hfsbyxt3hh39bftivmwzx7quiyh4xdl2z3qcxljz6lad3heab5xk[\\/\\\\]+fkeseqiqaxf9efa8mfeqhimvui7xiqz332kb5koii1fmfk6g0h$" + }, + { + "hash": "eb551f2033a14e6cce20658b4e40ac5b367f9f933481e823565a597441e8dea4", + "regex": "(?i)^https?\\:\\/\\/010yusan\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+g6vx4CDr3WjgtyKKoJ7mMxr8ja0E3Qpmk7EsKPPUU1fVInylUYPL6pQxJnzeUKCJ0AuWr0e7AvE[\\/\\\\]+Xq2RiQPo6RWIApxC8gchcMTzUZPCbaFOAXVlIhYkLJxjI7K3AEfL6VIyVluN2w9zBlJF9QsCh9Nq7Olq[\\/\\\\]+gRgurbi8stgEDg31saiqGZxrXGQTQxP6BBTG3vdK18pMxH9sNjhazMxemWzldBzJ5F1dml\\?r\\=https\\:[\\/\\\\]+mail\\-Dmr\\-login\\-0QyySJ\\.outcompeteclean\\.com[\\/\\\\]+IHQ7ohRACu6s3uIWhT2EdUbsZqAdjigWHZQRRp8YkzwQ7GexlDZr11B[\\/\\\\]+algRuOfMmDQpmdLbdJU0WZe3CZbDydOLdPqfMDZbsNENgwnXzUzZ2uzbNzyY4Pw4aMS[\\/\\\\]+uKz1qdvYwGIJnUtliB5mE205LHU5g4JNs2V022mF0IjBae6H1L[\\/\\\\]+$" + }, + { + "hash": "de11be31e11f260bd6790e2fd18293751e3a6913ea0abaac8b35ae3bf8f3805e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "31710f5dc0516abc0d5a172f52462981d9b010930bb1931129c4372662d359c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9003[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "3f106b7b0a1d5a5c7209d6494dfc8c067f3dda3fa8916131747a1f00ed088aef", + "regex": "(?i)^https?\\:\\/\\/rajesh1425\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "635602d09a079b5a76c8beb1d92223275ead54feb650e6c25779b279d34918e5", + "regex": "." + }, + { + "hash": "ef1dd5bc01bb4e5b4823b8bae468e9fe2f13628d28b838da3787e893b35e93c4", + "regex": "(?i)^https?\\:\\/\\/2165852324886\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+g6vx4cdr3wjgtykkoj7mmxr8ja0e3qpmk7eskppuu1fvinyluypl6pqxjnzeukcj0auwr0e7ave[\\/\\\\]+xq2riqpo6rwiapxc8gchcmtzuzpcbafoaxvlihykljxji7k3aefl6viyvlun2w9zbljf9qsch9nq7olq[\\/\\\\]+grgurbi8stgedg31saiqgzxrxgqtqxp6bbtg3vdk18pmxh9snjhazmxemwzldbzj5f1dml\\?cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-dmr\\-login\\-0qyysj\\.outcompeteclean\\.com[\\/\\\\]+ihq7ohracu6s3uiwht2edubszqadjigwhzqrrp8ykzwq7gexldzr11b[\\/\\\\]+algruofmmdqpmdlbdju0wze3czbdydoldpqfmdzbsnengwnxzuzz2uzbnzyy4pw4ams[\\/\\\\]+ukz1qdvywgijnutlib5me205lhu5g4jns2v022mf0ijbae6h1l$" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+53o2gwjmfvrkwlj9ws88fs0u7kvmspmzotwxedycql7zcrtlvfo1yvd3uxsxdz3ywmh0myz8zuk[\\/\\\\]+7cb3ulikee7qptp6spqvtorepktuv0k03n8mxo30wptna38xoat2trxpikoyq0aejsrvqkctml1l4zih[\\/\\\\]+v2hzx6u8ybayggfjrzvrss0s4oa4rdwg9rvnxhmxdnwhyqxxsfoud3mk2quhrgckhlljjd\\?cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-kozmetikvalf\\-login\\-01pxq6\\.outcompeteclean\\.com[\\/\\\\]+di1ykultvvkywg4xgpqo0wux0degy3ndbmog8kaoebisjrgco7jwkzo[\\/\\\\]+albgftnatpwako69kprn9ptsoycrvgxr26kv34kjecgx29ddnzwe4w4zn4nfscdytku[\\/\\\\]+3eoe7duiairnuo1iikoeaxgnducqfqobrzhcrmruviswcrv4db$" + }, + { + "hash": "7bdc71537891bfae73f26f11060504764a293a72cf35611684c11bfa7e9f157a", + "regex": "(?i)^https?\\:\\/\\/www\\.172\\-245\\-64\\-239\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wjuvzy(?:\\?|$)" + }, + { + "hash": "a3729cbeaba5277b6e97e6f172904c4209e3a576fa5829ca09976f630db16eb7", + "regex": "(?i)^https?\\:\\/\\/webresolvefix\\.firebaseapp\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "16946e7c997fe484fa86ad5810ce6195e7ebaa9d8269f0721dbb07ad180763bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+j92bakaedxfw5828d0ov6yh0yjbsd5xge3zzljroff9wbqcqgfnjmeuh0vndgpm1acpcri9lwue[\\/\\\\]+tmzqzzwr8dlhoci2derbfse5l2i5b4lt93rekmavyy0kbvapbymf3tkjgjxwdsbusxqxolnguaurusjj[\\/\\\\]+ikzsebdov7cxnprjki7bxsofaopqzkf8m51no4ksgjldpmsmr3rxgrofsezaeca1kfrbyv\\?r\\=https\\:[\\/\\\\]+mail\\-truyol\\-login\\-0saewl\\.outcompeteclean\\.com[\\/\\\\]+jkbrfcnstuwz0ic4f7irb9vwarvjirxeuytepf0avhjkg3w0jl6ijiq[\\/\\\\]+alkuftfrpnmlsr3hfsbyxt3hh39bftivmwzx7quiyh4xdl2z3qcxljz6lad3heab5xk[\\/\\\\]+fkeseqiqaxf9efa8mfeqhimvui7xiqz332kb5koii1fmfk6g0h$" + }, + { + "hash": "f02528480b4f40e0246aa16b3194863aa9b42c7d9017852ecae5b19e74f668cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-eb16057f9ff0469f84bc89770c3f2780\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+g6vx4CDr3WjgtyKKoJ7mMxr8ja0E3Qpmk7EsKPPUU1fVInylUYPL6pQxJnzeUKCJ0AuWr0e7AvE[\\/\\\\]+Xq2RiQPo6RWIApxC8gchcMTzUZPCbaFOAXVlIhYkLJxjI7K3AEfL6VIyVluN2w9zBlJF9QsCh9Nq7Olq[\\/\\\\]+gRgurbi8stgEDg31saiqGZxrXGQTQxP6BBTG3vdK18pMxH9sNjhazMxemWzldBzJ5F1dml\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-Dmr\\-login\\-0QyySJ\\.outcompeteclean\\.com[\\/\\\\]+IHQ7ohRACu6s3uIWhT2EdUbsZqAdjigWHZQRRp8YkzwQ7GexlDZr11B[\\/\\\\]+algRuOfMmDQpmdLbdJU0WZe3CZbDydOLdPqfMDZbsNENgwnXzUzZ2uzbNzyY4Pw4aMS[\\/\\\\]+uKz1qdvYwGIJnUtliB5mE205LHU5g4JNs2V022mF0IjBae6H1L[\\/\\\\]+$" + }, + { + "hash": "31710f5dc0516abc0d5a172f52462981d9b010930bb1931129c4372662d359c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9003[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3fc0f91a92592d381fecd13355b58badb8f96327840acb12b9c7c3bc48f0fe5e", + "regex": "(?i)^https?\\:\\/\\/www\\.dhl\\-parcel\\.20\\-115\\-51\\-4\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "09a07d270d6734ec85ee1b7bf554869adbafc9a63fa44339cc31b08cb1b3fec0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6600[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "332bb46645092255cc54795d3a0314cf5fdb4c5d4dd976d709b462c1399fce39", + "regex": "(?i)^https?\\:\\/\\/shakti5580\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fd4327e1ce2c505150588e8bf231b04df84ee467ec4939e4df80c327b6a7416c", + "regex": "(?i)^https?\\:\\/\\/pub\\-87b73e8408c449748cdeee5e61fa20aa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e83c113d09cc9185fa894f17f522bf51de520760bd60692a948d8aab05c5e1d8", + "regex": "." + }, + { + "hash": "faece6a72f1e13426041ea2e246918a1a90d94bbb83cdefb619fb9836d02b795", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+scms" + }, + { + "hash": "09a07d270d6734ec85ee1b7bf554869adbafc9a63fa44339cc31b08cb1b3fec0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6600[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+52rgn7tkrttim94oowu5ttwwvtfltmqhjsx4jhyo1jdrayjdizswmvei4zvgakp53xjtlqnjodh[\\/\\\\]+gxahpwuiv226cn01nltlkxgqyquc5iuqnztzwagpypyf3sm0qkug6lju5vdrxe9obwgfe9uatfurzhqr[\\/\\\\]+ooyheeaabih4vofh4yxl2x0g79avdox6das4sd8e6eiskrqkt3aj8qhapnrluf3k6jc2kd\\?r\\=https\\:[\\/\\\\]+mail\\-nzf\\-login\\-0zxexu\\.outcompeteclean\\.com[\\/\\\\]+u0ccesnnyfpl3etgnyoomhztwaqrnplyspaal6xiyto5tmfmyzwhche[\\/\\\\]+alcxqbnho6clwuldynivz4yundbyi4vogbzzzjhvitaeq59mqett3rxdgjzozynbd1b[\\/\\\\]+gpechptcnp8jh5e7spinjt6cpsibh13yczr23azvl0hiynbzcz$" + }, + { + "hash": "5464b53587187dd3284e2ff4a4e5730aa62537a4ed1ae1a8942bf6d776ca9939", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+g6vx4cdr3wjgtykkoj7mmxr8ja0e3qpmk7eskppuu1fvinyluypl6pqxjnzeukcj0auwr0e7ave[\\/\\\\]+xq2riqpo6rwiapxc8gchcmtzuzpcbafoaxvlihykljxji7k3aefl6viyvlun2w9zbljf9qsch9nq7olq[\\/\\\\]+grgurbi8stgedg31saiqgzxrxgqtqxp6bbtg3vdk18pmxh9snjhazmxemwzldbzj5f1dml\\?cookieQ\\=1\\&cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-dmr\\-login\\-0qyysj\\.outcompeteclean\\.com[\\/\\\\]+ihq7ohracu6s3uiwht2edubszqadjigwhzqrrp8ykzwq7gexldzr11b[\\/\\\\]+algruofmmdqpmdlbdju0wze3czbdydoldpqfmdzbsnengwnxzuzz2uzbnzyy4pw4ams[\\/\\\\]+ukz1qdvywgijnutlib5me205lhu5g4jns2v022mf0ijbae6h1l$" + }, + { + "hash": "10ba4d8af7fee0040ddd5dd756a9c6d31e5a3b8c6b4c78e7fd79b4a86ab55768", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+security\\-check[\\/\\\\]+signin" + }, + { + "hash": "97da6e08c99e503cdb8c88b4561ba7f11ebab2ce74fac7fe2ff7a6b809974264", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ed245b\\-a5cccde4\\-4022\\-4474\\-bcb3\\-966dcdd8487e\\-000000[\\/\\\\]+V_UaEvWmFXtMt_BNPEIVPh\\-aQTw\\=392(?:\\?|$)" + }, + { + "hash": "10ba4d8af7fee0040ddd5dd756a9c6d31e5a3b8c6b4c78e7fd79b4a86ab55768", + "regex": "(?i)^https?\\:\\/\\/signin321\\.secure\\.165\\-227\\-201\\-200\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "03ae1475c1763840982aeb26055ba01df38e7544dec56c8bdffedf627d74575f", + "regex": "(?i)^https?\\:\\/\\/www\\.us6\\-continuecoinbase\\.69\\-48\\-165\\-10\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e9b2b7\\-20c13363\\-dfdc\\-4d34\\-8309\\-4c5766d7fb02\\-000000[\\/\\\\]+jqBCwkEpqs1X8qxGShtUO9JWeOo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e301f47d\\-eea498c3\\-c95d\\-4423\\-822f\\-07efa3f45c09\\-000000[\\/\\\\]+F_xcJGpDANQujzR_CYeEKkDeEn4\\=392(?:\\?|$)" + }, + { + "hash": "10a4e52acf7a3d60e257fafb6de52d8a4f03b7db022dccb4c8b3e23b1d8910a3", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f6f290\\-bce55d74\\-fa97\\-446f\\-b799\\-cfac45acbaef\\-000000[\\/\\\\]+9Gjcm8sOWTzxJgL7rRiVwYxP_gA\\=392(?:\\?|$)" + }, + { + "hash": "1e46c65b523e129c7f69bb4241224edc16fc57b54c8b627e2755e744cb84ccc4", + "regex": "(?i)^https?\\:\\/\\/sdfdshiudgfuh883\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7d032f3eb2e6f944ba51225d71a1f3be17fe1c561a78c4ac2c5a04582b75c48f", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0b7ad6ac7093b1175d5579782a5ba94eee726e71fa9e7b6486219137cbbe4b60", + "regex": "(?i)^https?\\:\\/\\/hotgilr2001\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "34697bb9f434813baf5e52726dbc70f64c32a8dd1e4e7e799bb2746dc213979f", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5a8922a51c4f278417f482f84651e896c314f01ee69f323c142d687b5e82b1d8", + "regex": "(?i)^https?\\:\\/\\/link54684\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3117d60\\-d8e3de6e\\-978a\\-483a\\-88cc\\-3a18c4f012c5\\-000000[\\/\\\\]+hqiG3bWJM\\-SzPc\\-0E\\-04yXcyaxY\\=392(?:\\?|$)" + }, + { + "hash": "a7c55b79e2185377af74f03dcc5c53ff63d214df7df0ca9d7afaf1c3d1f90450", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4799745dcc39e38044cd16f23643edbd57e1cc41e119dad3e5936fad0875c441", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f0b0ff\\-1d6c4d10\\-6ce1\\-4b4a\\-a61e\\-5ae3c3e7c7e2\\-000000[\\/\\\\]+AO8GOsPGI4DL58LffW3eMOuZZaA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e8c125\\-becca0d5\\-5de2\\-435a\\-89ee\\-d15b9843a211\\-000000[\\/\\\\]+gOEzEbeTiJTYiNgDPBc_BoSQZps\\=392(?:\\?|$)" + }, + { + "hash": "d1a4ffc10294ae0a2ce92afccc465ac7fb6a056bb5d5aacd8c9a4a241df4a6fc", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b0ac67a10a52ef33d65eb79729add64336bf3756235901eed6bbe16f78feff40", + "regex": "." + }, + { + "hash": "02e71fd04dd5d4efe96d81fcc6c7bc02d98a55e811e9c66ce749a336e20caf39", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d80013\\-aff2ed60\\-cb32\\-4703\\-935b\\-f1f27119a914\\-000000[\\/\\\\]+ge593Q5EOajSg_25w_JGslw\\-mMw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e317a2c1\\-c954de8c\\-245d\\-4934\\-a529\\-1efbd703a5c9\\-000000[\\/\\\\]+X7QTOH6vz_mxY_FSwFolVgDTvls\\=392(?:\\?|$)" + }, + { + "hash": "828952062722034f40e209589f341c1867786bdfcc112b7799d57fa31aa8a36e", + "regex": "." + }, + { + "hash": "8fb3b96207f74c043bea2d6380e2efa38e4a4c3b785f638d5ad07c1680050b54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f2b32b\\-4f343521\\-b0d4\\-409d\\-b170\\-8a1438147f90\\-000000[\\/\\\\]+2ciIYrv_aSZCXk_QS2aAELHeEKk\\=392(?:\\?|$)" + }, + { + "hash": "f7cc009905eb3ee63da7f245a4f24b268411a69ce2134819b2b08e88a42a1d84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wetransfer" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e8c125\\-becca0d5\\-5de2\\-435a\\-89ee\\-d15b9843a211\\-000000[\\/\\\\]+M5qROHtpmxjA91AIKvREMg7UqEg\\=392(?:\\?|$)" + }, + { + "hash": "1822882658df6fab449d87d378c5e510eea8a82a3e2f399122b48ceb38cdeba3", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3117d60\\-d8e3de6e\\-978a\\-483a\\-88cc\\-3a18c4f012c5\\-000000[\\/\\\\]+dEmwmaiU\\-67uJe5MoptrSKr5AG8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e484f5\\-dd55c59f\\-7010\\-4880\\-a9fd\\-573a89b16220\\-000000[\\/\\\\]+LoeNv6eGrQ7FUUVp523p\\-P5ciDQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e7f725\\-bcc35890\\-f95d\\-49e6\\-8519\\-9bdc15ef105e\\-000000[\\/\\\\]+s645Il987OhAxEL8T4gS1pD4jds\\=392(?:\\?|$)" + }, + { + "hash": "dc05b14addbcb7c645a5ee5f596d8ebe8c5c75eb3a5c0210db23175ac755fdf3", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2cfa59b\\-01df6a2e\\-b66b\\-4a13\\-8dfd\\-1603d8d76077\\-000000[\\/\\\\]+ey1aM9LnGjWYLRXVefuyqxD0ylA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e129da\\-51421188\\-3b65\\-454b\\-a2f3\\-d0f79499d612\\-000000[\\/\\\\]+YXpcyVWDPho3LrNTjjFm84f0NEg\\=392(?:\\?|$)" + }, + { + "hash": "d2303367c45fdd674dd78e73c0eaceb8dabb55292173235474131f915d5013bd", + "regex": "." + }, + { + "hash": "f68d934388bbf61489922102efca2bdc3a0154971f8e61c64adf0a6907ecaea8", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "62567440ca1fdbf93cacbccc5a2e361c2add80d72c896912b1572ac5e7790d0f", + "regex": "." + }, + { + "hash": "88ffafc6e1fcdcaf48b438f64b5118b08812eb04dff3900895f0b9d38416bb9c", + "regex": "." + }, + { + "hash": "9e17a2b023fc1c519db65c7312817076cf7eadd2066cc5ecfdda3a0b47df9b24", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f0b0ff\\-1d6c4d10\\-6ce1\\-4b4a\\-a61e\\-5ae3c3e7c7e2\\-000000[\\/\\\\]+iz9pN0XkNMt\\-mus1VBvdElsLXnc\\=392(?:\\?|$)" + }, + { + "hash": "8e920d8dba43f2b6b8ef613f56bb8b7071c34d583af74e49ae606adb5c1cc8ca", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3138c7a\\-3f3e5b41\\-eeb4\\-4576\\-b15d\\-fa7265752071\\-000000[\\/\\\\]+LDr3Cfc0mNlKIJ2ald2gl5AnQ4g\\=392(?:\\?|$)" + }, + { + "hash": "f2597671ba121464ba1005dc4f4514add5637a9118e175b6acdd9e9c2e26ea2e", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ce8a4f\\-acea42a6\\-bcfd\\-4fb3\\-ac20\\-a8978af259da\\-000000[\\/\\\\]+WEd3DXNMrYXWn69kZtAeRxni\\-4U\\=392(?:\\?|$)" + }, + { + "hash": "d040ccde33d0f59692db92966f4625aff23f00ddfc0b68041cd803fb1b115e30", + "regex": "(?i)^https?\\:\\/\\/bermainolahraga\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cf256fdbe7b45156953e47b8df75c37e1436bdb0e47fdb52c8faacf081a1ae63", + "regex": "(?i)^https?\\:\\/\\/iy32r78yeihfdf8dysoihf367ryfewhriws\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e301f47d\\-eea498c3\\-c95d\\-4423\\-822f\\-07efa3f45c09\\-000000[\\/\\\\]+8bzyQpcCnME1lxbT3JKRzjNpmg4\\=392(?:\\?|$)" + }, + { + "hash": "7268dc9f7d73a493dfafea8295f21c4b44bd97bf92ee5411f0d92cd6a3a902b3", + "regex": "." + }, + { + "hash": "f350d656047e0e5f8d8184f65a7c4f3ae2c626e7415972a19b9fd156104c2ca1", + "regex": "." + }, + { + "hash": "ea259c184f41d445f8ebdeb94aa5ca734b05c1bdfe7ea579776715d553092ca9", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3bd198fa8309d5c3a163154aafdede4757791d72e0a4d0a3a20f53bb35d61a02", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fidp4169\\%2526redir\\%253Dhttp\\%253A\\%252F\\%252FBAHMCIUPKYEDVQHR2JSM6FS0UH7W7KG4\\.maxprocarpetrepairbrisbane\\.com\\.au$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e315dcd1\\-e31eb2c2\\-b366\\-409f\\-8eb9\\-9c75b87d5cf6\\-000000[\\/\\\\]+fExgQcjDulGbIl6Lx8Es6KRAa74\\=392(?:\\?|$)" + }, + { + "hash": "2d376a141e9dbc8ec5650a95cdf6ce1ac48a943515dc3292493cb90ee197235e", + "regex": "(?i)^https?\\:\\/\\/avasweqwva\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "68ecc670cbce85d687eb4083a5f70110a8ef2f9f9bfd299f854a888f77d6ae3c", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2cfa59b\\-01df6a2e\\-b66b\\-4a13\\-8dfd\\-1603d8d76077\\-000000[\\/\\\\]+SXGpG87yNM4fQZYXZglZSB5su7k\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e21f02\\-422e165a\\-94c5\\-4a8e\\-aed4\\-ad1cc809cf4e\\-000000[\\/\\\\]+ijQUy9LNKGOLMgpi_GZXZtIpA3E\\=392(?:\\?|$)" + }, + { + "hash": "26b2c20c9c85ad28aac8ee04502dd06a3e066422fe34298a21c02710fc0a422d", + "regex": "(?i)^https?\\:\\/\\/xza\\-xzaq\\-xza\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "de74ec10c78ea59d325a56678a0a57688799053edb641b44dcece96799ae426c", + "regex": "(?i)^https?\\:\\/\\/xza\\-xzaq\\-xza\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6cdd8a9b6645e35ab850648812ba31797b0237e2b5132eb2480f52452babd371", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5bf9cb20ffcdb282e502d76e01ccacd96c9c21dfa173c999ae42ddd22c73ae3f", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ce8a4f\\-acea42a6\\-bcfd\\-4fb3\\-ac20\\-a8978af259da\\-000000[\\/\\\\]+kSqwKl1HuLok_AwrcDTPMKdPa3s\\=392(?:\\?|$)" + }, + { + "hash": "4aba9c504a10de7dfb51f3f0482901d647340e08bf8367dffe443cce1086a5d8", + "regex": "(?i)^https?\\:\\/\\/robux\\-go\\-50k\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c3339fad6b502da47b4a7fc32476f8a0487b097693facfdd528a720a7e60e275", + "regex": "." + }, + { + "hash": "2f2c742c6640200e99ae6bc2ce98cd24b0160cc4a4b5e8ed35a04551e3150638", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ffc9e4\\-fcfcf53d\\-a711\\-4938\\-8f65\\-c47efab579a8\\-000000[\\/\\\\]+pcqBDs_v9vQoPom5XdCoppDFi7g\\=392(?:\\?|$)" + }, + { + "hash": "3c64b172116fe490c9be20bb18ba6eea7bace212078c742d25fc3616f74561d2", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b69b31b39abd92b82259a5f0d410be0bb21196767eff2751c58635936579b696", + "regex": "(?i)^https?\\:\\/\\/thailand0238428934234\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "dbbdd9a6e267cde97492136703f985f7165d20951fd95ac2a7a912fea1e847e1", + "regex": "(?i)^https?\\:\\/\\/hothigrrfgsgga\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3b3bef8a1377ccec59a72ec95455d11b263e0eb7844dfb952901a69dc755f127", + "regex": "(?i)^https?\\:\\/\\/xza\\-xzaq\\-xza\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ae9cc0460e9c3883c95593dfb6e390e4a53df632ad29863c8dfb27108c8fa38a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e305169b\\-8f83829a\\-096d\\-4817\\-8f35\\-e2be5baad14a\\-000000[\\/\\\\]+3DzZLNKKQvthwH8LBpHAm1yDt8s\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ffc47e\\-3421c00a\\-5891\\-4843\\-bbc6\\-fa1b6d6a9c96\\-000000[\\/\\\\]+GOQsPJ8v24sZjTE9StoIiRDU3TE\\=392(?:\\?|$)" + }, + { + "hash": "ceae4fdf0d3f084a412afc75b3ac6eed51f67011307fd8867f50ace1274e42ce", + "regex": "." + }, + { + "hash": "32df60eabe8a186b30ca58ae6afeda216cc14b5159440717ac576a8610237b90", + "regex": "(?i)^https?\\:\\/\\/link54684\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30dce93\\-e981b5e8\\-ed3c\\-40d5\\-b483\\-68ab06dd99b2\\-000000[\\/\\\\]+oUr4H\\-BsMfoN\\-FCq6rzXclaQZw4\\=392(?:\\?|$)" + }, + { + "hash": "f78c4ec9f46e5dd1d01296274970f9e90963bdd0c23b0d60db71084652498713", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "57720c17c0153858ef283f01c41e792c7b0b0563dba9e5ba251cfc61ea3343da", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e8b920069ed89092186209d8647de3349be0fd8a9c2a41a58c1df2bfc1bd0478", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "950c83660af921bbe808b7e91ad9b6473aed7104ffe3614416a6828e13846d74", + "regex": "." + }, + { + "hash": "8289608cd4b11823c57f2153797c154c185c97d8339d6cb1939f2758ba8be667", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e9ac38fdde3180da96f71307d60218226cc453a80c3356f9ce0b5ac68512b9d5", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f2b32b\\-4f343521\\-b0d4\\-409d\\-b170\\-8a1438147f90\\-000000[\\/\\\\]+WUKX8XgbKdBXFHfcsRDZScJCw4I\\=392(?:\\?|$)" + }, + { + "hash": "9001496966a839b0ee0804d62d52abeafad99d66d85d51d1eb4105ea75a2a941", + "regex": "(?i)^https?\\:\\/\\/howtogetfreeitemsonroblox2021october\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e317a2c1\\-c954de8c\\-245d\\-4934\\-a529\\-1efbd703a5c9\\-000000[\\/\\\\]+KjNJ2td9Ud64wJgQn3VLDTAtrS4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e129da\\-51421188\\-3b65\\-454b\\-a2f3\\-d0f79499d612\\-000000[\\/\\\\]+BldheUyeO9Dq6oCg5hkGiOoJAms\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d80013\\-aff2ed60\\-cb32\\-4703\\-935b\\-f1f27119a914\\-000000[\\/\\\\]+6yAGUtqNsL299\\-suUvYRqaWw1kI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e9b2b7\\-20c13363\\-dfdc\\-4d34\\-8309\\-4c5766d7fb02\\-000000[\\/\\\\]+ydfcL03ILu\\-9ATv1yTfc3qLoFHY\\=392(?:\\?|$)" + }, + { + "hash": "e120e8811dc62947eee904ad17a405ae7b999555312aa0b4f2cea7802e35205c", + "regex": "(?i)^https?\\:\\/\\/xza\\-xzaq\\-xza\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f6f290\\-bce55d74\\-fa97\\-446f\\-b799\\-cfac45acbaef\\-000000[\\/\\\\]+YaZx4L1i5pnP\\-qq6alTEH9PiJsI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3138c7a\\-3f3e5b41\\-eeb4\\-4576\\-b15d\\-fa7265752071\\-000000[\\/\\\\]+02Nyd2kjokuTJyPcDevQLp6_J\\-4\\=392(?:\\?|$)" + }, + { + "hash": "d240645768d3585641eb07957eb22e6d89bc806e5b6dbe07bc13a90d3124fe1b", + "regex": "(?i)^https?\\:\\/\\/assistancepro3\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "74ed1a3ca1365dbb2eda90146d7345c902869c539eb1721270ac074f8ec40cd9", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e77e59\\-17b69a89\\-cbd3\\-45e5\\-af69\\-d8ba794850ae\\-000000[\\/\\\\]+5yMr8eA\\-BLOmtTKooDTAs24PnPs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e77e59\\-17b69a89\\-cbd3\\-45e5\\-af69\\-d8ba794850ae\\-000000[\\/\\\\]+3uqj6Xz8qH\\-ggvsNnZqIc5Kkx5c\\=392(?:\\?|$)" + }, + { + "hash": "0977ac31cad98c2c84471cd212c9d8a7db22e656645c0055bd05820ee4c90919", + "regex": "(?i)^https?\\:\\/\\/xza\\-xzaq\\-xza\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "97ca315d83e4b680e28b1a4f18c58a568f3d5aeacbd8bec0170b0c1634133963", + "regex": "(?i)^https?\\:\\/\\/xza\\-xzaq\\-xza\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b83ddf322b1c9e6ab37825e003f44ebf38037151119bbc1c08fb43f91a8db719", + "regex": "(?i)^https?\\:\\/\\/tyuioplk\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ffc47e\\-3421c00a\\-5891\\-4843\\-bbc6\\-fa1b6d6a9c96\\-000000[\\/\\\\]+_FrA99m7B7KKNMO88le8fus52LU\\=392(?:\\?|$)" + }, + { + "hash": "339eee0b04c496d36658f8d0506203a9d96f8f68490cada4fd97e85bab5ca72f", + "regex": "(?i)^https?\\:\\/\\/pausechallange2k291\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30b92e7\\-396cfb4d\\-3a0c\\-4411\\-a49d\\-26dc914ee8f1\\-000000[\\/\\\\]+e6EIzo0t1TkWOtRiG7d6ZxiIh4U\\=392(?:\\?|$)" + }, + { + "hash": "f6336d929edf1fadf8f9753aa8bc73cea8f8ac3c5da79a4e79025a3dc61f6269", + "regex": "(?i)^https?\\:\\/\\/netaccflix\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2cedb02\\-c4893d74\\-6d05\\-4a08\\-81f8\\-503a14b502d4\\-000000[\\/\\\\]+Yh5VwKTSVhXSgKSMouIrfGgWKIk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e315bb54\\-4c7451bf\\-d604\\-4ea4\\-ba19\\-048d63097de7\\-000000[\\/\\\\]+ZgtuI6yIjaa1rmcY7bN04po5F50\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f29bf0\\-dbd2f848\\-a4f1\\-4322\\-8876\\-e606561b4cb1\\-000000[\\/\\\\]+DBqBIRmGfkpfirN_Z1gNyK0u4Ck\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2eaba1b\\-d060ad71\\-c246\\-458e\\-9a02\\-92a402c9e9f4\\-000000[\\/\\\\]+ciuKbDwOVvP1PLa\\-pCeDQ95vGb8\\=392(?:\\?|$)" + }, + { + "hash": "0e5937812b9bce944aa8b493462803aae1290005ef873e7e602da8d8849cf902", + "regex": "(?i)^https?\\:\\/\\/netaccflix\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2df0134\\-7a4f2aa5\\-3133\\-47e2\\-9d2d\\-1b66c05c350e\\-000000[\\/\\\\]+V01a9QIWlsn3enBq_bqtlBzURhU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e31011c6\\-f8df2ca5\\-57f0\\-4026\\-a1ba\\-d2622357900c\\-000000[\\/\\\\]+DeG70gC9NrptOySfNqTv\\-iNnzjQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e305a10c\\-acb464c8\\-8a6a\\-4382\\-8fe1\\-96ff48ab895b\\-000000[\\/\\\\]+QssxeHn918llSxpxHQNnzOVTbn0\\=392(?:\\?|$)" + }, + { + "hash": "3be1a34bc51f3f4df899923feb1d89913f1e4f46375aab16cf6908c7e23064ce", + "regex": "(?i)^https?\\:\\/\\/hellenicbk\\.20\\-115\\-51\\-4\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2317157d96f9efc40b1ddf1c8df508f47289d32724a9fbb3f86e77da01521fdf", + "regex": "(?i)^https?\\:\\/\\/louihj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d3ba24fd6434a569995049662dde3f5af13422fcbdd80f02c06edd932893f638", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30b92e7\\-396cfb4d\\-3a0c\\-4411\\-a49d\\-26dc914ee8f1\\-000000[\\/\\\\]+Rfsye1ccVLbpEJIjd\\-_vqRcdgqE\\=392(?:\\?|$)" + }, + { + "hash": "ba4deefcca3d798c4f1f9eec81d1ca4e388890671a891ef8172509e7d706ca4f", + "regex": "(?i)^https?\\:\\/\\/globalkitchenfoodiecontestchampio\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "61159b5f49d89fedffaf90b9c194a3de775004a62ae6b6dc504ab6f7bff8bc94", + "regex": "(?i)^https?\\:\\/\\/mail\\.44\\-211\\-76\\-73\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7b08a3062042c139f98fd8374574c9083cfece8e53318c9953caebbaafa509ea", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "59560e26fdb3736223b6e266b4f0ab8069fd00719a66ddfa05f22791abf522b3", + "regex": "(?i)^https?\\:\\/\\/fruty\\-play\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3149c68\\-334b8fdd\\-1a3b\\-4f45\\-b73f\\-2179f06227d3\\-000000[\\/\\\\]+RQslQ9fLJrgf\\-xHox7ypSI0Dqfs\\=392(?:\\?|$)" + }, + { + "hash": "233014567d6b745d5c95c948cb671547048323051a4ba798b9ad79721cc3c987", + "regex": "(?i)^https?\\:\\/\\/netaccflix\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6d935a85e22da58d7ecb054bfbc818ceef07b6eba260cad16116de76d149c40b", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4e817ce81bd666772e445320b88ab3a228e81c117a210fc2df523c6eaeee671d", + "regex": "(?i)^https?\\:\\/\\/fruty\\-play\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "770dcf0b31fd571fd6e38f841fbcfa32026707ef8ad72ccf96f3a38b74170a88", + "regex": "(?i)^https?\\:\\/\\/netaccflix\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f81006\\-a0c69c00\\-32bf\\-4d92\\-a963\\-8e8e17f282de\\-000000[\\/\\\\]+mxWgXILqYI6H8gyuOwbJsZssHew\\=392(?:\\?|$)" + }, + { + "hash": "25035acf29440102316f591e957028e2cbbf2075ec127edf0a20c275635fc52d", + "regex": "(?i)^https?\\:\\/\\/madmfaf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e96068\\-2a9c8544\\-726c\\-4f5e\\-b39e\\-889f0559f7e0\\-000000[\\/\\\\]+SCgmO\\-5rgVmLsIP0PevbLzCMJj8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e300235f\\-a2fe5918\\-7d0b\\-4238\\-8b54\\-a50946d40269\\-000000[\\/\\\\]+I9Slz260VGhhDe6xpRvcjO7DJmU\\=392(?:\\?|$)" + }, + { + "hash": "aa4dc25a420b1f8ab801c07c96cff0c97b4b1caaabbbbd8b47ae79c8ffb9176d", + "regex": "(?i)^https?\\:\\/\\/fr\\-recharge\\-me\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e301a9b7\\-98d7916b\\-6fc6\\-4264\\-9a01\\-ce9d6002bd3d\\-000000[\\/\\\\]+nXEyzAx3th2Mey74ymmBBEbMu1M\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30218f2\\-d9eccaa7\\-6a81\\-431b\\-86be\\-33ae8b981f6e\\-000000[\\/\\\\]+CPA4L\\-97kio20JSiV6Ownx8VkRc\\=392(?:\\?|$)" + }, + { + "hash": "93c6e161ba0b99707f3cbc48885914e29820704f16f67016099060aa60f54ed4", + "regex": "(?i)^https?\\:\\/\\/fr\\-recharge\\-me\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f99786\\-68e7f4a5\\-50ed\\-4b07\\-aa37\\-0e50a2c03d3c\\-000000[\\/\\\\]+1b6iC4Hcp5tkj02LAAKSoBC9CJM\\=392(?:\\?|$)" + }, + { + "hash": "ae7c028137512535e09cffa7e027cf77c26a441dc958d5dacfda25c3ab2052e6", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2cedb02\\-c4893d74\\-6d05\\-4a08\\-81f8\\-503a14b502d4\\-000000[\\/\\\\]+ztIAGZUt6lwknZ0w_c89fWuCjOc\\=392(?:\\?|$)" + }, + { + "hash": "880028ba9113fa31bbcd5bf1dff8e88df9906a896629ed73e25a67d98441bd2f", + "regex": "(?i)^https?\\:\\/\\/globalkitchenfoodiecontestchampio\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f66323\\-45c3c478\\-2ac3\\-4ca8\\-bcc5\\-bb7b2a69623c\\-000000[\\/\\\\]+r4uLrq89n7hiwVjNAL04bGl9mK0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d0c6c6\\-aaf2a572\\-3c17\\-4e9f\\-b3f0\\-e7bd5e994f64\\-000000[\\/\\\\]+VLJNyqviNKq7XnXG7FgLiF39D4g\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f94d2a\\-2be244eb\\-e51f\\-4dcc\\-b7f8\\-43ad2963c48b\\-000000[\\/\\\\]+0qotgb0mX8HS4PZ62xKW0LShxgM\\=392(?:\\?|$)" + }, + { + "hash": "d3d2d45b8b6b533f96c1597ee405d2a0b6f78240e7c7012efce33164ec328f42", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f1e785\\-90282545\\-e5b8\\-47e2\\-a961\\-45adf258a2be\\-000000[\\/\\\\]+VVyi4cpYf5WK5TN1eA2tBZbX9Lg\\=392(?:\\?|$)" + }, + { + "hash": "ab7d044d7659222bf379964cbae04152a6262d41ce318e7e6a6f10b039105ebe", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f29bf0\\-dbd2f848\\-a4f1\\-4322\\-8876\\-e606561b4cb1\\-000000[\\/\\\\]+BEZCRkYJsAuB_VJXS7iLtxb16rk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e300235f\\-a2fe5918\\-7d0b\\-4238\\-8b54\\-a50946d40269\\-000000[\\/\\\\]+05DwojQ9eIYpGF8q0Gd8aiVso20\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2db3170\\-0b11d186\\-cef2\\-4263\\-b765\\-3d5d77dca316\\-000000[\\/\\\\]+8vyw6sTI98BSyeN4eWvsdaJPQ5Y\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f81006\\-a0c69c00\\-32bf\\-4d92\\-a963\\-8e8e17f282de\\-000000[\\/\\\\]+fBy\\-bZsiYBx9wbcEVl9LWU1ovHI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ea618a\\-eaa207c8\\-8c94\\-4d11\\-8f8f\\-b6ffa24675a2\\-000000[\\/\\\\]+ltKKivv5ZvUGd8Q4w2ntZ5IMqkw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e308fe40\\-5d393f82\\-4cc9\\-4e68\\-ba2a\\-c50dd3ebb33c\\-000000[\\/\\\\]+3QA7WqkszqvgyOxegOsVelzGWso\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30218f2\\-d9eccaa7\\-6a81\\-431b\\-86be\\-33ae8b981f6e\\-000000[\\/\\\\]+z9InKmbluh5Q2YnKMBCRWm9Ex6g\\=392(?:\\?|$)" + }, + { + "hash": "5798baf466052f39d677b00427530a41f7e772fb31ff96cfe5b05b03b7a0c6a4", + "regex": "(?i)^https?\\:\\/\\/globalkitchenfoodiecontestchampio\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "23575ec1478271b26601bacf2a3e4409cef1598d3711e82631f67529bfcde8e8", + "regex": "(?i)^https?\\:\\/\\/fruty\\-play\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "84812deec2a1a408f9198a33608d160fe46b044e7acc6da37a53872c4e8c8d77", + "regex": "(?i)^https?\\:\\/\\/fr\\-recharge\\-me\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f8e095\\-24dd721f\\-c5f8\\-475b\\-841f\\-9379006dc3fd\\-000000[\\/\\\\]+BVqUFEkOUOvtvEzAYasI5NHsPfE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30e823c\\-16a97b9c\\-ceca\\-4b93\\-9414\\-57ea7d72995c\\-000000[\\/\\\\]+hvMhlSLz\\-WEq0HczEeKzFkvMQHg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e312bdb0\\-1eb45ef6\\-25e1\\-496b\\-bfc8\\-ce1f82812233\\-000000[\\/\\\\]+rkgJxIgSeFbjtdInxgAIAah1UxM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ec625f\\-1a011c01\\-da51\\-4a24\\-ac57\\-96a500118a90\\-000000[\\/\\\\]+dkzsS7t6P\\-FnUVn8AVRHIuyvvw0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e308fe40\\-5d393f82\\-4cc9\\-4e68\\-ba2a\\-c50dd3ebb33c\\-000000[\\/\\\\]+nmU\\-XR\\-KpdZuykGTiJUAXmCxNME\\=392(?:\\?|$)" + }, + { + "hash": "0da4c00300ad1c140d35c00062dd657601e56674ed817acbe200f0469bfcecb0", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d2c79e3d87e389d4026c49fc40ba5e85be80d92dcf0ed804f971baac7a718ec8", + "regex": "(?i)^https?\\:\\/\\/globalkitchenfoodiecontestchampio\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e31307be\\-5deeb01c\\-d702\\-4419\\-aa1c\\-91743b8986aa\\-000000[\\/\\\\]+UlqnTuV4g5zACZ2N4NucYI\\-_SJg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f9675b\\-dc07f712\\-7a3f\\-44c0\\-854f\\-0ca80d050684\\-000000[\\/\\\\]+O\\-uk7VPrMcPmcoqOphSVppVndWI\\=392(?:\\?|$)" + }, + { + "hash": "99f0396b326b18d876a242990e2596d442645e3e63b5e53a08fa789350c0197d", + "regex": "." + }, + { + "hash": "8a3470ecb2ed1fc65105a3d11159e9d490f8c9c075eae6a70f5b0de9bdf1670e", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e31771aa\\-95dfe1f1\\-e859\\-4a6c\\-8b3d\\-40a7ca1d0405\\-000000[\\/\\\\]+u3PIc2qkanw_Eqm5yDk\\-sQXSl_8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e312bdb0\\-1eb45ef6\\-25e1\\-496b\\-bfc8\\-ce1f82812233\\-000000[\\/\\\\]+nQGDhrzw64O_rxlh71L2sCSPj7w\\=392(?:\\?|$)" + }, + { + "hash": "2f2ead5523975f4e11facbc3786d5e9294bdfe3595fe01d013dab759ad37e7c0", + "regex": "(?i)^https?\\:\\/\\/globalkitchenfoodiecontestchampio\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e301a9b7\\-98d7916b\\-6fc6\\-4264\\-9a01\\-ce9d6002bd3d\\-000000[\\/\\\\]+jHs0XdcM9R5WXnX8sYBjoJ0rp6A\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d5de4c\\-5349e4dd\\-5748\\-4cc0\\-b42f\\-e87098317180\\-000000[\\/\\\\]+Ne3SKAnbTNqjrY_tBpS6kC88LDI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30d930c\\-24e58f03\\-b2f9\\-4e82\\-b8ea\\-5ff885ef1011\\-000000[\\/\\\\]+JHt2zhMx5JghaEq8yc25TGOebcQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f27b07\\-2929f189\\-9af4\\-4a22\\-8610\\-164812eea0a9\\-000000[\\/\\\\]+ZTG2_wkQPPj1ryVE7B1mG73XLEw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3168962\\-78767535\\-da02\\-4782\\-a6ff\\-65192ea4c180\\-000000[\\/\\\\]+vwd4pkY\\-PCCNczdC3gcVIQ6qp4c\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d5de4c\\-5349e4dd\\-5748\\-4cc0\\-b42f\\-e87098317180\\-000000[\\/\\\\]+2azg7LxUdddoKPBi03hcpEvgKBg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fccb1e\\-2e388c01\\-6938\\-49b3\\-9822\\-4a784ab565ef\\-000000[\\/\\\\]+noNGz3kJoUHQPqS1bSppElQY_To\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fccb1e\\-2e388c01\\-6938\\-49b3\\-9822\\-4a784ab565ef\\-000000[\\/\\\\]+9l5F2xV61wFxzoMfX6EohSp5BSA\\=392(?:\\?|$)" + }, + { + "hash": "dce183be71ad6c92d5eef134fa4f1aa7fb7f055bd5747f5c139b6d6deb3dca72", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30f4b8d\\-ded6143f\\-33e3\\-43d0\\-bd12\\-4a855ec8ae91\\-000000[\\/\\\\]+nEPdsaDI58q8MmmeZD8TR0ekPyQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2df0134\\-7a4f2aa5\\-3133\\-47e2\\-9d2d\\-1b66c05c350e\\-000000[\\/\\\\]+yxRtha74JuVMsq36lnRfZrTNyh4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30f4b8d\\-ded6143f\\-33e3\\-43d0\\-bd12\\-4a855ec8ae91\\-000000[\\/\\\\]+AOPqsh2FXiA6IMVCBF_fo7oEbgA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f1e785\\-90282545\\-e5b8\\-47e2\\-a961\\-45adf258a2be\\-000000[\\/\\\\]+jGVk4qQEyG3XQmj9kCmAuDcNeBw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3058ebc\\-fc1c6d43\\-1aec\\-4086\\-8e5d\\-257421db3a5e\\-000000[\\/\\\\]+iTkIWeCsMKT1r9p_cR0ovrMreWk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3058ebc\\-fc1c6d43\\-1aec\\-4086\\-8e5d\\-257421db3a5e\\-000000[\\/\\\\]+GodGary5gqDh\\-faJp7cmj4Kw\\-Yg\\=392(?:\\?|$)" + }, + { + "hash": "a6aa27d4d6ca22800a886eb80ab451d161d67452106266cdf2e16a4b7f63cfcb", + "regex": "(?i)^https?\\:\\/\\/currently\\-att\\-9\\-11\\-24\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f27b07\\-2929f189\\-9af4\\-4a22\\-8610\\-164812eea0a9\\-000000[\\/\\\\]+LOLdYZUflADomO1YI0xXMIjjwxk\\=392(?:\\?|$)" + }, + { + "hash": "c07004e5a7a683670e24f98f112d5493bd4a567e85c7e5f984eb554377ae3724", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ea22b4\\-049ce771\\-e7c2\\-4066\\-b16e\\-7978ce976015\\-000000[\\/\\\\]+FMTjghuRZUy\\-8maqrQSoeUvakiw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f691dc\\-3cf32cb7\\-432e\\-48d9\\-a30a\\-4bc14b8ba7e2\\-000000[\\/\\\\]+C1rDb9fNoLnvYBItrsDMsQ\\-D9gg\\=392(?:\\?|$)" + }, + { + "hash": "022da9b60407d78fd43400268807b953e9f5e34fcc189ba400236bc2a982fad5", + "regex": "(?i)^https?\\:\\/\\/fr\\-recharge\\-me\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f9675b\\-dc07f712\\-7a3f\\-44c0\\-854f\\-0ca80d050684\\-000000[\\/\\\\]+EOOWwwtrbEco2wn80PyOakalOP4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e305a10c\\-acb464c8\\-8a6a\\-4382\\-8fe1\\-96ff48ab895b\\-000000[\\/\\\\]+UWJTZx82DW_UjLe7ORApyaL3SQg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d1b284\\-24cc88ba\\-8c7d\\-4ad0\\-9062\\-61524377a797\\-000000[\\/\\\\]+uIHIoO933E77kE1Dx9y1fGsEnxY\\=392(?:\\?|$)" + }, + { + "hash": "b113ed0ba83dc90467255dda1edebe5c926eba0fa183c47bf41a066e72b4ebab", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f8e095\\-24dd721f\\-c5f8\\-475b\\-841f\\-9379006dc3fd\\-000000[\\/\\\\]+_f6vP6lr\\-R_DuJtjcTZcAEK7l48\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fe986f\\-95afdc10\\-1d4a\\-4340\\-9a90\\-5a776512b497\\-000000[\\/\\\\]+MDE1M_vxk87T8CzTZjYNMwz0twk\\=392(?:\\?|$)" + }, + { + "hash": "8ede0d30540873d169826298c48b01cf158f684c1bfc63f87146284a692e0f43", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1eaa7a4e6f7b7a1054d459ef5f12eac00081b0877f582797dec27d3cc5ad75be", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f99786\\-68e7f4a5\\-50ed\\-4b07\\-aa37\\-0e50a2c03d3c\\-000000[\\/\\\\]+qQpjNOP0j081mxNQw6B2GAeGkMU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f66323\\-45c3c478\\-2ac3\\-4ca8\\-bcc5\\-bb7b2a69623c\\-000000[\\/\\\\]+LhKCE0KhIflw43uNvD8y3aIv1MY\\=392(?:\\?|$)" + }, + { + "hash": "2410cb56d65513f360fdd7a748ad4f1ad3a1c29b7de3dad8529b9bf8e763237c", + "regex": "(?i)^https?\\:\\/\\/netaccflix\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fb244c\\-56034fd6\\-901e\\-4bff\\-ab6d\\-e117586d55c9\\-000000[\\/\\\\]+zMNFVM0IP6dpWcsWo6cW1Lnjztg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3168962\\-78767535\\-da02\\-4782\\-a6ff\\-65192ea4c180\\-000000[\\/\\\\]+Uk3qudLQl0nD47\\-ufCevEvRGpu0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fe986f\\-95afdc10\\-1d4a\\-4340\\-9a90\\-5a776512b497\\-000000[\\/\\\\]+h3sMpGqle4EUYDG0goInhP_ZDk0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30d930c\\-24e58f03\\-b2f9\\-4e82\\-b8ea\\-5ff885ef1011\\-000000[\\/\\\\]+4gE_4_8F3Lq75f6rYt4mMNvCVtg\\=392(?:\\?|$)" + }, + { + "hash": "adb192ee157b67455c002325f8e733d59e564e25ed3fcef6705ba641c661abde", + "regex": "(?i)^https?\\:\\/\\/netaccflix\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f691dc\\-3cf32cb7\\-432e\\-48d9\\-a30a\\-4bc14b8ba7e2\\-000000[\\/\\\\]+YOc4aIbuEIUvNwE_TGEgW7DeR\\-E\\=392(?:\\?|$)" + }, + { + "hash": "282a260cd8d581cb5d2bf4d0f0a7d75cae303d8c86cd37a45ede0cfc73af6371", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e31011c6\\-f8df2ca5\\-57f0\\-4026\\-a1ba\\-d2622357900c\\-000000[\\/\\\\]+V9_HOD6ungB6Q7v9d2i312K_hZ4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30ece72\\-c85b9839\\-eb38\\-4714\\-a55a\\-f1135eb8de6d\\-000000[\\/\\\\]+1Eh01vCXruh4mVlNDWyhguTNgXA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d0c6c6\\-aaf2a572\\-3c17\\-4e9f\\-b3f0\\-e7bd5e994f64\\-000000[\\/\\\\]+PA_RGRFCKFPLO4G1E1uedA9SMRI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e31771aa\\-95dfe1f1\\-e859\\-4a6c\\-8b3d\\-40a7ca1d0405\\-000000[\\/\\\\]+yXfcvlU0BKNZEOk_pd_vA0qn7E4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3104ba9\\-cdb05f03\\-ea63\\-4bc4\\-be9e\\-187a07230cec\\-000000[\\/\\\\]+Q5qdBuZCpVXhviJ0F8bh7V\\-X1bs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fe51c4\\-11a8ac73\\-fafa\\-482b\\-86f9\\-459c188ac199\\-000000[\\/\\\\]+VSTVoci9upmSA9RdNU6T47\\-uENc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30ece72\\-c85b9839\\-eb38\\-4714\\-a55a\\-f1135eb8de6d\\-000000[\\/\\\\]+__LPBnBQiaAYEsurmqCqNz_rpk8\\=392(?:\\?|$)" + }, + { + "hash": "6010d85072decf7f7904139d477ea8e36cb828a5376de62ec3803039e6d3156f", + "regex": "(?i)^https?\\:\\/\\/madmfaf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ed5cb2\\-445ac7cb\\-8298\\-4063\\-9dea\\-1ec8e700d0e8\\-000000[\\/\\\\]+RMOKq6h2QGpkIMRlAZLY84oy1vM\\=392(?:\\?|$)" + }, + { + "hash": "37a77eee1cde7252107b9a363e3ada0b12d28d957319808f6e57aebd0541c483", + "regex": "(?i)^https?\\:\\/\\/mail\\.148\\-72\\-167\\-251\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "199de20832c6293f28b159816e52b69de6a9a11eaf7924cae5353cbea96d3a14", + "regex": "(?i)^https?\\:\\/\\/globalkitchenfoodiecontestchampio\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ec625f\\-1a011c01\\-da51\\-4a24\\-ac57\\-96a500118a90\\-000000[\\/\\\\]+7KVuG7SKAf2YTCABnpo8TGFD4h8\\=392(?:\\?|$)" + }, + { + "hash": "8552b76cf178446d74edd8ab55e6a7bc606ccc17b86c5f0085422e551e97f547", + "regex": "(?i)^https?\\:\\/\\/madmfaf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3149c68\\-334b8fdd\\-1a3b\\-4f45\\-b73f\\-2179f06227d3\\-000000[\\/\\\\]+wdcxeJW8Be0kQPfe63Wk53rTNYc\\=392(?:\\?|$)" + }, + { + "hash": "5246655cdae05733c74a47cca78b5ed4ae97c8bd10967675efa04e7cc4d3f970", + "regex": "(?i)^https?\\:\\/\\/globalkitchenfoodiecontestchampio\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e96068\\-2a9c8544\\-726c\\-4f5e\\-b39e\\-889f0559f7e0\\-000000[\\/\\\\]+A7Xc9Nb72myjuBBh4qVHscB5YMA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fb244c\\-56034fd6\\-901e\\-4bff\\-ab6d\\-e117586d55c9\\-000000[\\/\\\\]+hRrCk1srsQMCI9nEx12QyF2WAZs\\=392(?:\\?|$)" + }, + { + "hash": "03e0d58f35f5bf03ebb5ea6cb89feb41dad0617d2977e4118611f4fd8defe0e6", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3104ba9\\-cdb05f03\\-ea63\\-4bc4\\-be9e\\-187a07230cec\\-000000[\\/\\\\]+1DhFNLchsPU6YEg309O_AFy2qoI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3133501\\-556548a8\\-4165\\-4c99\\-bb43\\-a45b5c6a09e2\\-000000[\\/\\\\]+Cd9iMPZ0K8HyAnOkyhyZh8LMjc4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2eaba1b\\-d060ad71\\-c246\\-458e\\-9a02\\-92a402c9e9f4\\-000000[\\/\\\\]+lO0LAsoXw4p_4BKY4OoDPbhPL0Q\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f94d2a\\-2be244eb\\-e51f\\-4dcc\\-b7f8\\-43ad2963c48b\\-000000[\\/\\\\]+OP3SSuzQ3iuXzS9EHW744\\-l84F8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30f8904\\-dab0a1da\\-cc21\\-4671\\-b01c\\-ac537b261a20\\-000000[\\/\\\\]+8Oe_n3Yf3xMeRQJy\\-kvUwPgB12g\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d03a6a\\-eca2b2ea\\-1d0d\\-4863\\-8ba9\\-002b02568fdb\\-000000[\\/\\\\]+E3vVrg51syu3s2Ilvj2pvSq4Eeo\\=392(?:\\?|$)" + }, + { + "hash": "3639b68cce1fa5c2327f8ed4ee3a5cffc4780cf4c4a4a33cd43f8d91ab571e06", + "regex": "(?i)^https?\\:\\/\\/tracking\\-ups\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3ae8ce9459e02e719e71de344957cdd33e5e139c012cc7dbbd3dafbd71e9c826", + "regex": "(?i)^https?\\:\\/\\/fruty\\-play\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30f8904\\-dab0a1da\\-cc21\\-4671\\-b01c\\-ac537b261a20\\-000000[\\/\\\\]+y5EXAJo0h91YBzmOw0YwgI9bg88\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ea618a\\-eaa207c8\\-8c94\\-4d11\\-8f8f\\-b6ffa24675a2\\-000000[\\/\\\\]+9vH2BVnE1qX2Sj5Tl7DcIWDy0_Y\\=392(?:\\?|$)" + }, + { + "hash": "05fa2067ddbcecf2001e563a93b76d59cc16db5b3b84853837049fbff7886a28", + "regex": "(?i)^https?\\:\\/\\/fr\\-recharge\\-me\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30e823c\\-16a97b9c\\-ceca\\-4b93\\-9414\\-57ea7d72995c\\-000000[\\/\\\\]+U_SLMalNJgxfUehi0ivyN_oA3V4\\=392(?:\\?|$)" + }, + { + "hash": "7eee5b8f6898df18db8eb81364eae52ebe145e1c3f8f163dd3607529bddd8b50", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e315bb54\\-4c7451bf\\-d604\\-4ea4\\-ba19\\-048d63097de7\\-000000[\\/\\\\]+uoDSchoFGdJRN6CP2mxXYaxfQko\\=392(?:\\?|$)" + }, + { + "hash": "2ba957cabf7ab3dd706cf6bd22e83e35087304de8adbd620dc989d37c90ebe71", + "regex": "(?i)^https?\\:\\/\\/fr\\-recharge\\-me\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d03a6a\\-eca2b2ea\\-1d0d\\-4863\\-8ba9\\-002b02568fdb\\-000000[\\/\\\\]+MQGKkrYUKDB8jAT\\-cBud_87mFU8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fe51c4\\-11a8ac73\\-fafa\\-482b\\-86f9\\-459c188ac199\\-000000[\\/\\\\]+fx7kPxc4sP4tTA5i4E0OmmNaHHE\\=392(?:\\?|$)" + }, + { + "hash": "f09185d4ed0e19674f8a91eb384fa79daaa203f262eb88c5c6f828f1bf6eaa41", + "regex": "(?i)^https?\\:\\/\\/fr\\-recharge\\-me\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3133501\\-556548a8\\-4165\\-4c99\\-bb43\\-a45b5c6a09e2\\-000000[\\/\\\\]+qZBBsX2bZe\\-APeqYMuF4fDnIuTQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ea22b4\\-049ce771\\-e7c2\\-4066\\-b16e\\-7978ce976015\\-000000[\\/\\\\]+UQwx6Ws_wZ65fMMCxzWs\\-g6sLuE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ed5cb2\\-445ac7cb\\-8298\\-4063\\-9dea\\-1ec8e700d0e8\\-000000[\\/\\\\]+oeGOCdooW6R64NZ6wuEO6HKxSyk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2db3170\\-0b11d186\\-cef2\\-4263\\-b765\\-3d5d77dca316\\-000000[\\/\\\\]+FzjrHyBeys2lePU4QLTquE_IP3Y\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d1b284\\-24cc88ba\\-8c7d\\-4ad0\\-9062\\-61524377a797\\-000000[\\/\\\\]+n3f\\-KjevdRybAjgND1VQ4hn1stY\\=392(?:\\?|$)" + }, + { + "hash": "7308d2c029ddfc37f3d8b1264847b8a05739d8f4372725656aab0de49da04cc0", + "regex": "(?i)^https?\\:\\/\\/gfhhghgjgfjgjgfhj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bc419d5a0a1add954dbc3a38d636b0a50fdb5134286ad2806b4eba6c8deba121", + "regex": "(?i)^https?\\:\\/\\/globalkitchenfoodiecontestchampio\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2e16f50e0fcc84d35978bb05f0c89dc86dc35f8c01eb112a1dafe10f9d0eb394", + "regex": "(?i)^https?\\:\\/\\/fmjngvmfdngvbzsfffffffffffffff\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f86fe9\\-931b0cfc\\-db53\\-475c\\-9e55\\-2e7b35d6dca3\\-000000[\\/\\\\]+TfJlPw8suqaQg2Cm8DcROtTnmcc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e55dbf\\-30b86112\\-c7e8\\-4278\\-acd6\\-5d39da6cae0e\\-000000[\\/\\\\]+1e2wO3GuKDGWxbMf9ScHPs_ffFI\\=392(?:\\?|$)" + }, + { + "hash": "d3533be4b1c8a9d52b550e6dab2b899e74e0fbcf489618b87d92ef1f6e16e458", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3043ca5\\-b5ee7053\\-1af4\\-4af7\\-9e81\\-2465f47ff258\\-000000[\\/\\\\]+Ss6f9aKYRL3kR0mKPy2kq6vALho\\=392(?:\\?|$)" + }, + { + "hash": "cd60067360fd67aacf24ce173f867104fe6ae4d5a56d4ca8f4769dac160e31f9", + "regex": "." + }, + { + "hash": "e41a9295d30512fbb9f24c2c7ecb0738bf90cdfdab5878c77e569e1827a81195", + "regex": "." + }, + { + "hash": "c8e4d91828337469db834a8cb4e60c47d559d2dfbe56cd4d1334a79bd99d4408", + "regex": "(?i)^https?\\:\\/\\/fmjngvmfdngvbzsfffffffffffffff\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30fcd81\\-d47ba546\\-34d0\\-42fd\\-a8d1\\-52cbe1de2c68\\-000000[\\/\\\\]+6ySOdBjTgqZ_0iNsMwcWh_ju9Iw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f81fd8\\-a5ce01d6\\-1a6b\\-4886\\-a898\\-83b6aeeb325f\\-000000[\\/\\\\]+hVoUKYGkPfxqZeThP4ni9WUVpvk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30cc80f\\-b071635d\\-2fa5\\-4002\\-b5b5\\-31f8f5348e62\\-000000[\\/\\\\]+3URo5e9x7ZGo9k0JtHH6XwanmLI\\=392(?:\\?|$)" + }, + { + "hash": "fb52cd27b36c894db5b263c854cca9b2258ddac21ee98b06daf5cd1254ddf4e4", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d06e34\\-666a162b\\-4cd4\\-45eb\\-8c3d\\-a84865669393\\-000000[\\/\\\\]+DH1w\\-9mxmwIOxsK3xkzT1to0O\\-o\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e93a0b\\-21f55759\\-e442\\-479f\\-901c\\-a4510da27e55\\-000000[\\/\\\\]+REBLhSHbEWkV36y8xyXRqUbk74Y\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e3bb1c\\-4444aa0e\\-8e74\\-4c0e\\-b02a\\-847823a8eff6\\-000000[\\/\\\\]+XbuW8HgiEp07oNQZ_nRBPI4dnK0\\=392(?:\\?|$)" + }, + { + "hash": "6c38291e96d5a39165d113741e9a9ca234052fea94e694960f06f9180fb58222", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d75134\\-e6ac0ed6\\-0b33\\-41fb\\-9b23\\-cf9373685c3e\\-000000[\\/\\\\]+NQg\\-z_TccXXhlxRU3r\\-6L2p7ws0\\=392(?:\\?|$)" + }, + { + "hash": "c14331b00259b076e4b638e2b349d04b6380a375b13a0141a14f9fac7c30fd3c", + "regex": "." + }, + { + "hash": "c2b594fb5496213b264b6d819d367c9ca690ad28e33ae540010af2b7d1d20e96", + "regex": "(?i)^https?\\:\\/\\/dominicfixjheg73y4632yetgdvcgd\\-8e7y4erd\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f81fd8\\-a5ce01d6\\-1a6b\\-4886\\-a898\\-83b6aeeb325f\\-000000[\\/\\\\]+NjGGHioEfYtfDW1ox9DaE_zA21Q\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30252a0\\-0cfe2062\\-06bb\\-4009\\-b26a\\-7d8ea667235d\\-000000[\\/\\\\]+SpcG_kzFruQjkCh0da5BcX5mFbI\\=392(?:\\?|$)" + }, + { + "hash": "bcbffe9db72cc5028cd7b2588a1f9df847fd72b4c0ea98855a79ccc2475b4347", + "regex": "(?i)^https?\\:\\/\\/pub\\-a803cf2c79c746f3a4e7fe715dda14b8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e80cb65eb008e4c8999efe548aae3ff1ebe91d878725980e34bcde0d0cdb668d", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f93090335cb3b5c2475130ad6bcc9bf94cc4c2561208eb5a2352023486e2f173", + "regex": "(?i)^https?\\:\\/\\/rohit742004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e1d794\\-2b9162e3\\-1076\\-459f\\-b415\\-2e2cc88a3d67\\-000000[\\/\\\\]+3LtsnNKknuBq_qUyX9O_hIX_WgE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d6f6d6\\-ecad369c\\-5059\\-4400\\-8baa\\-ae0663c53fbb\\-000000[\\/\\\\]+rRBdyzOichankZ8OcqH8F6slC\\-0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e317354f\\-cb27c4b3\\-e689\\-4fb8\\-bbfb\\-9cf92b6b1274\\-000000[\\/\\\\]+bOiiksLdiD6lviVXC403xnnVQYA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f86fe9\\-931b0cfc\\-db53\\-475c\\-9e55\\-2e7b35d6dca3\\-000000[\\/\\\\]+sTBV58lloMtbFvtDIVe0KF8Y9lk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e9d576\\-d56391b7\\-cc3d\\-4c47\\-9d03\\-8ff43d4281f0\\-000000[\\/\\\\]+_kEi279kDLVgaHCFCto\\-sS9t1Q8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e40eb0\\-dc73d2ce\\-24c0\\-4e80\\-832d\\-30ccf09486e3\\-000000[\\/\\\\]+Jh66UA14Sp9t2bq2H0QHSlBtSQs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e14219\\-6dbe9eaf\\-32ca\\-439d\\-9ab9\\-e9774ccc942e\\-000000[\\/\\\\]+OFUk8UCKlAWxQWYfbIsga2abEJI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e42f24\\-cf90057f\\-1781\\-449e\\-99f1\\-d0826da13913\\-000000[\\/\\\\]+FClZfGOsNII5czmX30mFWfzLEdY\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e42f24\\-cf90057f\\-1781\\-449e\\-99f1\\-d0826da13913\\-000000[\\/\\\\]+tXqy4HpPt9lRHBKtRqbI_g1BiFE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e08488\\-af0b9ed3\\-1c92\\-4db8\\-8052\\-184836f59139\\-000000[\\/\\\\]+QiJzDaAHDdIdsBOWG8L0aH9a9S4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f600c1\\-88d8f9e6\\-fa55\\-49a6\\-9d63\\-d784127cde85\\-000000[\\/\\\\]+I2pxOxUcinftZGjo3Hx6eQ4ZGx8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f8702f\\-d199ec26\\-2bff\\-4840\\-a10e\\-4b89048b4300\\-000000[\\/\\\\]+rmFHX3763fsbeltbdNyDqRwAccc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30060cf\\-aa8c7d9f\\-6a99\\-4fea\\-a773\\-c3bdb801e553\\-000000[\\/\\\\]+AXeV9ybh8OnQse9rKa9ziJSd8wM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ebfa54\\-0c761644\\-e893\\-40fa\\-b63b\\-5c3ce6ac14ec\\-000000[\\/\\\\]+DX1KLC\\-aRbu8jAH3dgZVnNf_J7Y\\=392(?:\\?|$)" + }, + { + "hash": "71b7f363e2a919e6a76266ca91c848119e9d4c2f27b38d9384bdc619c1dfcc0b", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "eab07f62ae2e61e5d79f12b5143ffff7a341b6d7847f9fe1bc436483574d5c37", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d1dd8e\\-45906fb9\\-6832\\-4e10\\-976e\\-679e407dc043\\-000000[\\/\\\\]+swBX2zdI8xYOyhBfitp0\\-w5\\-MfA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d62d6f\\-8b732851\\-03de\\-4f14\\-937a\\-aebdbf1d948b\\-000000[\\/\\\\]+3FOYSF36bgxzjB9YNwh9nSrbT1M\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3045263\\-52d45808\\-93ee\\-404b\\-98f5\\-2f11771061a7\\-000000[\\/\\\\]+4KqWehKS3fojfezgKfq6VwF_8FM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d7826b\\-39f484c6\\-3c7b\\-44cf\\-8094\\-149f95cc7f13\\-000000[\\/\\\\]+_bZf8hqxpkI6qahljoql\\-OHbiek\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30fcd81\\-d47ba546\\-34d0\\-42fd\\-a8d1\\-52cbe1de2c68\\-000000[\\/\\\\]+IaaXSnQ3Rg07Q189oAT\\-iGnZ2yM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e7a75a\\-dcdafa11\\-410c\\-494b\\-a2b2\\-c279b1984103\\-000000[\\/\\\\]+W3RfOcPqNiTzDdnbaCO7cHN46ks\\=392(?:\\?|$)" + }, + { + "hash": "00d697ee60fe8bfe15d484c51227aebddd8a05a00c22274e9cc6540fef0de438", + "regex": "(?i)^https?\\:\\/\\/fmjngvmfdngvbzsfffffffffffffff\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f5d21f\\-ba0bf6e0\\-92d8\\-4eaf\\-b705\\-669f38ed850f\\-000000[\\/\\\\]+0tyHf488bb5bfXbF1YWFzUGDqC0\\=392(?:\\?|$)" + }, + { + "hash": "3d64bcf81f05ce5e935f56a7ebfc5d1c9d55e2d6b79e26f7a4c0cb3b89d7e60b", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2eea4ef\\-a0f485dc\\-e5aa\\-46e6\\-b231\\-0447a429d7fd\\-000000[\\/\\\\]+inUNAodvn_J0EmsMyLyeIwYlc98\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f26452\\-7891bf0b\\-522b\\-4ee6\\-bb86\\-48d26911f7d8\\-000000[\\/\\\\]+TZy6U29Ut3Uu5tMJLFCRvWHVCC8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d7826b\\-39f484c6\\-3c7b\\-44cf\\-8094\\-149f95cc7f13\\-000000[\\/\\\\]+4UdW1OrKmaT3Obxc_\\-mHFKCjbgU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ecd943\\-3023820c\\-5a9e\\-47ee\\-b507\\-762db7a4bf8f\\-000000[\\/\\\\]+AR34ESKxYC_2k9PkCfHLnbcbkUo\\=392(?:\\?|$)" + }, + { + "hash": "15c673aa3a98da9df83588d514162981e74985273faf7b3d7c94c0a41405d898", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30056c7\\-46a09b97\\-17f3\\-4542\\-90ae\\-21a908df857b\\-000000[\\/\\\\]+tGmZMVVw3a6vd1Cztrb\\-V4sjkmc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e3761a\\-253e0bc9\\-daa1\\-4095\\-a885\\-f16fcfc5171b\\-000000[\\/\\\\]+Ni2buSnDx\\-kQm8_HlSdS9ieJC6w\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3045263\\-52d45808\\-93ee\\-404b\\-98f5\\-2f11771061a7\\-000000[\\/\\\\]+m54X3NcFN9yrsm9yulYigGipLaw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d6f6d6\\-ecad369c\\-5059\\-4400\\-8baa\\-ae0663c53fbb\\-000000[\\/\\\\]+FP1QWw_lFq44Jd3wFhNEcjcd\\-tw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d5e65e\\-5dee1d5d\\-652d\\-4937\\-95f1\\-8c3d72ad7a19\\-000000[\\/\\\\]+vCvGBaXDbsnoKBNJyOAzDPfNfOw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30d483a\\-52d23aa8\\-7cae\\-4fb4\\-9c9f\\-88be4204361a\\-000000[\\/\\\\]+EB7MVK9zW1MmCjLliOvg\\-jNinkM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ec4f3d\\-a83348a8\\-d4a1\\-488f\\-8bdb\\-2954df651f29\\-000000[\\/\\\\]+ONHhtxN98Wky_LjGg8Xn2mQi9sE\\=392(?:\\?|$)" + }, + { + "hash": "f9d98cce2e6a811a6a3455c7c80b9c536c539066dda3d2bf5caca06f17599104", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ca0b79\\-ee26f54b\\-79a9\\-4734\\-bb69\\-7b5ace293494\\-000000[\\/\\\\]+VY6Ln04K4Nb6K3IdHWpoQHUc6fQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f13a34\\-c999de2d\\-5402\\-45a3\\-b99f\\-1fe38197ced0\\-000000[\\/\\\\]+7EGbkhWrlw2gX5_gXR52IQD8QJI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e53536\\-d214b537\\-60ea\\-4b5d\\-a8bf\\-691deef151bc\\-000000[\\/\\\\]+ZuloPXyNCPB6\\-rCRMBOtbKSJWf4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e14219\\-6dbe9eaf\\-32ca\\-439d\\-9ab9\\-e9774ccc942e\\-000000[\\/\\\\]+_isNPX08zP0Gts\\-RVhawYnQ08hs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e317354f\\-cb27c4b3\\-e689\\-4fb8\\-bbfb\\-9cf92b6b1274\\-000000[\\/\\\\]+y4F1MM\\-FQA7\\-J\\-c2fkEnuotXoLc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2da3133\\-8da9355b\\-15d1\\-4061\\-a0cb\\-ef41b00c8f38\\-000000[\\/\\\\]+AMOy\\-QpCuleMLMe2B2F4mDrw2AM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ecd943\\-3023820c\\-5a9e\\-47ee\\-b507\\-762db7a4bf8f\\-000000[\\/\\\\]+en6_mFGFYr7kl8O218km3dND7_4\\=392(?:\\?|$)" + }, + { + "hash": "bfddbc9ea6cdc82cb3ac851553f232b0495dc64bb2fa2e47f59985e5e0821141", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2dfab2f\\-a9b71e8d\\-26b3\\-42ec\\-a039\\-2d3aa403738e\\-000000[\\/\\\\]+NzGr3\\-f2nf6G74A_7OUpgjkuLSg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d5a9ae\\-a8f554c3\\-8c93\\-4951\\-a3ea\\-484239a4a32a\\-000000[\\/\\\\]+1znXFYR8pXauuExkdLRcfqd27so\\=392(?:\\?|$)" + }, + { + "hash": "1744bef79a564ca62b977e19fa9664185500d8e1f8c89a2a7003498b67d54c1e", + "regex": "." + }, + { + "hash": "529d3df5495a2d79d87cf12544f4bcb329f707987c3ce28851bc0ce4424fe601", + "regex": "(?i)^https?\\:\\/\\/fmjngvmfdngvbzsfffffffffffffff\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2dfb05f\\-3ec857a7\\-1504\\-425c\\-9262\\-ae7b57688684\\-000000[\\/\\\\]+8ZuNq53W9DfQJgTHgt32gzcL6Sw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e89d0d\\-f90cb964\\-3be5\\-4bd0\\-b69d\\-10b8b82f533f\\-000000[\\/\\\\]+4QXDtxsmaiMA5T39OTUf9SFD72A\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f53ba4\\-2869224f\\-4e3d\\-4a46\\-bd76\\-da20fb707ad9\\-000000[\\/\\\\]+R0w9YP0n_jZj0ybBxOh8SuQh184\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e96350\\-3080daa8\\-3f97\\-422e\\-ae4f\\-525f3b2bac2a\\-000000[\\/\\\\]+gIxEq0JvnzUvUS2Hf5sKUIVO8uM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fae1e4\\-30185070\\-7e8a\\-4f73\\-b9ea\\-8351d8efd329\\-000000[\\/\\\\]+uiEhW00YYG7UmA\\-FShaIVIJd2as\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30cc80f\\-b071635d\\-2fa5\\-4002\\-b5b5\\-31f8f5348e62\\-000000[\\/\\\\]+GNIVBi1kJWGdmc0I1XUSO4t2XDY\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f5d21f\\-ba0bf6e0\\-92d8\\-4eaf\\-b705\\-669f38ed850f\\-000000[\\/\\\\]+BLQiEXUjkyz42mAShq3Wx9SNxDA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e07ce8\\-efb609bc\\-f9f7\\-4c08\\-b970\\-004112bc49de\\-000000[\\/\\\\]+F\\-yXLgUIbwvnBY_8oO_Pd2R4JM8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e3bb1c\\-4444aa0e\\-8e74\\-4c0e\\-b02a\\-847823a8eff6\\-000000[\\/\\\\]+Y7QsVep43J0DpPm1xEl_9pGnQUc\\=392(?:\\?|$)" + }, + { + "hash": "3225d922c0cf68ac03e0ad5cd5a201a94994406eb2b335c69c3b7a833707b6e2", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f26452\\-7891bf0b\\-522b\\-4ee6\\-bb86\\-48d26911f7d8\\-000000[\\/\\\\]+zZEGAvyvd9REzmMPACCLxr0aMIw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e311ad91\\-42364157\\-b61c\\-4095\\-9d85\\-56bee7178890\\-000000[\\/\\\\]+qtTG6kcJFYYjziB2TFJXqNrChas\\=392(?:\\?|$)" + }, + { + "hash": "ffda52140580c5c5ea1b2c29ef69ee4dc7f891617b51f9bb8464d873bec588c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nfdmbJ(?:\\?|$)" + }, + { + "hash": "eb63ffb2a35f6433510c71dc63fe7bb3eed6e0523115341a0fc78a1611af6484", + "regex": "(?i)^https?\\:\\/\\/fmjngvmfdngvbzsfffffffffffffff\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fa35ab\\-177561cc\\-9437\\-44de\\-8a62\\-fca6c2277af8\\-000000[\\/\\\\]+FRVQa1NjLCrQlZzzSaMnKs5Ikm0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2dc6943\\-309ecc6a\\-2290\\-4ed8\\-86df\\-b7bc611bad2a\\-000000[\\/\\\\]+6M3TQuu2kAOj1OiosiTnPatOWr8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2dc81e0\\-e3cbb05b\\-9d91\\-427d\\-ab2a\\-3ba9e259d580\\-000000[\\/\\\\]+vnbawTozc5_z_X\\-flK6gYlgAqbo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e53536\\-d214b537\\-60ea\\-4b5d\\-a8bf\\-691deef151bc\\-000000[\\/\\\\]+ZZC1lR4CoMf2GDe6Wc_TLoottyw\\=392(?:\\?|$)" + }, + { + "hash": "69e685c636ea6393aa280004dad405c6ccd020fce033ffac120beff1d11535cb", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f53ba4\\-2869224f\\-4e3d\\-4a46\\-bd76\\-da20fb707ad9\\-000000[\\/\\\\]+GGUhvlRtlIL96AQ_XSjyf8_7UpE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f8702f\\-d199ec26\\-2bff\\-4840\\-a10e\\-4b89048b4300\\-000000[\\/\\\\]+ut6DVHkG6hnPhfjXpGXNa4aUmfg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f13a34\\-c999de2d\\-5402\\-45a3\\-b99f\\-1fe38197ced0\\-000000[\\/\\\\]+ZqqJT3uS2ahOZ4mHUp_SxNfmD2Q\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2da3133\\-8da9355b\\-15d1\\-4061\\-a0cb\\-ef41b00c8f38\\-000000[\\/\\\\]+SlDrOFvjeU_OYQPu7JHZm5X143Q\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e1d794\\-2b9162e3\\-1076\\-459f\\-b415\\-2e2cc88a3d67\\-000000[\\/\\\\]+yIM4FQCAucQOg6u05H\\-8ma4DFSo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e7a75a\\-dcdafa11\\-410c\\-494b\\-a2b2\\-c279b1984103\\-000000[\\/\\\\]+xK8xSDaS2ZViAVMLK6li\\-kpIK_s\\=392(?:\\?|$)" + }, + { + "hash": "6dda3a98054632c9bcbd588f6d8d94d7cb55ea84a6383bd6c6a16ca46e338e22", + "regex": "(?i)^https?\\:\\/\\/fmjngvmfdngvbzsfffffffffffffff\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e311ad91\\-42364157\\-b61c\\-4095\\-9d85\\-56bee7178890\\-000000[\\/\\\\]+O4kfa9AhlWqkPfkFc699WTuwJC4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d75134\\-e6ac0ed6\\-0b33\\-41fb\\-9b23\\-cf9373685c3e\\-000000[\\/\\\\]+pmvSIryTemQtUWPZILvRmKHEfpA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ebb7a3\\-54592c39\\-beaf\\-4f49\\-a324\\-dd7825c2206f\\-000000[\\/\\\\]+c7D8jIF0G_LfrAAXvn6Z4NMd8V4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30d483a\\-52d23aa8\\-7cae\\-4fb4\\-9c9f\\-88be4204361a\\-000000[\\/\\\\]+_VLoyZ97BKuw8ooY2Ke7ouItkCo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2dac00a\\-8201d3ca\\-05e7\\-43e3\\-84fd\\-786aea02002b\\-000000[\\/\\\\]+Zj_x2nxNacumL_b_8t0HMwvBJCk\\=392(?:\\?|$)" + }, + { + "hash": "af4e0161f051817ee938bed2120d3f7a2de4025387bf5156f2fd0f248c55f5aa", + "regex": "." + }, + { + "hash": "da7ad77a61834c75a4804a7b7d73f0372e9c295870ac2542d9e1954212779029", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nfdmbJ(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2dfab2f\\-a9b71e8d\\-26b3\\-42ec\\-a039\\-2d3aa403738e\\-000000[\\/\\\\]+WTMENXuP2YhGyBSDm5qfXkrzto4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e08488\\-af0b9ed3\\-1c92\\-4db8\\-8052\\-184836f59139\\-000000[\\/\\\\]+yoE0OQ65tpWx3NmaqGzSdH\\-e2Kk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2df3015\\-6b5454db\\-eab8\\-41cd\\-8d56\\-477929133e19\\-000000[\\/\\\\]+pF\\-twjcS2na4601m6JDr0vvjK5g\\=392(?:\\?|$)" + }, + { + "hash": "5628c22f4a27b7bdf4a9a77cb24dd61f1252d00b2ea9b95c8778a543acee81e3", + "regex": "(?i)^https?\\:\\/\\/pub\\-906962fbc8bd49d987f238cb3225ceca\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2dc6943\\-309ecc6a\\-2290\\-4ed8\\-86df\\-b7bc611bad2a\\-000000[\\/\\\\]+ZQ_rTWWhi1Y_v0r\\-zlTlUheyxrs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e58187\\-2c797832\\-5053\\-4ac5\\-92ee\\-8f31e35b8395\\-000000[\\/\\\\]+tOdEmGTGi7DiSFMziRctLC\\-pxj4\\=392(?:\\?|$)" + }, + { + "hash": "f8151382bfa01a3807c65292614a34a7fa3b8311b37c520cad8d05203126e9f1", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4795ba723220205050ba68346f659117845980cb1724a7e19f1be93ffd9aec27", + "regex": "(?i)^https?\\:\\/\\/fmjngvmfdngvbzsfffffffffffffff\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2dc8c59\\-4d800aa4\\-1429\\-4164\\-a375\\-fcd2ae620723\\-000000[\\/\\\\]+ujlPEAVwWbtF0Lemh2KB\\-L\\-zHOs\\=392(?:\\?|$)" + }, + { + "hash": "6a8ced68b182f8ae8be306f9c7c274be6aa6ffb333b056c5d9cc72a4daecd05a", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2dfb05f\\-3ec857a7\\-1504\\-425c\\-9262\\-ae7b57688684\\-000000[\\/\\\\]+x6s8qWkFUP7N2SrAHQEihkK5sYA\\=392(?:\\?|$)" + }, + { + "hash": "dd77402df24054db5a523d4806e6efac3269a83fc487ecc65d8e14cbaceb1eaa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9070[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e314560b\\-420335e2\\-5515\\-4f5c\\-9c6e\\-b3d5c825d9c0\\-000000[\\/\\\\]+OWzKJzEWzE7H5Oii7RkSpdl4zCs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ebfa54\\-0c761644\\-e893\\-40fa\\-b63b\\-5c3ce6ac14ec\\-000000[\\/\\\\]+2VCqIaFglnu7Up\\-_Bqch0W7456Y\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d51848\\-312d32b7\\-c386\\-49de\\-8ea9\\-85ac05525060\\-000000[\\/\\\\]+zsB1XOEeJUfGBKsJN3q3JxfFwe4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e314560b\\-420335e2\\-5515\\-4f5c\\-9c6e\\-b3d5c825d9c0\\-000000[\\/\\\\]+hLrbFqtjGmryhxo5mNPwsRKFFfc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3150bac\\-3b98e76c\\-6532\\-47f8\\-976c\\-56f4a7da8164\\-000000[\\/\\\\]+vtgwfb00c8yr6fbfeD1IC7Qlzds\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d495f0\\-959c988e\\-fcd8\\-46d4\\-807b\\-d3e289da51d0\\-000000[\\/\\\\]+WhBvvOZDZPmgcCnUaFxI9fm0pp8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d1dd8e\\-45906fb9\\-6832\\-4e10\\-976e\\-679e407dc043\\-000000[\\/\\\\]+6yI2r1QF\\-xFv3OBpihnyZuhDlLo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e6f923\\-e34c2dbf\\-d8d7\\-4cbf\\-bfbd\\-9f85709d69d9\\-000000[\\/\\\\]+RDYkEfgvUgZ3wEPKbxa9oebMZ6g\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30272e1\\-57f212b3\\-41b1\\-4b3f\\-b34a\\-8f6f5521ead1\\-000000[\\/\\\\]+Cs_DaWxQrotHFtOP1ZZtvUDTIZ0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30ef44d\\-9a2b5d0a\\-ab85\\-4118\\-ad9a\\-01b30e30cd04\\-000000[\\/\\\\]+KFX2f5ZY_q9dPDORKVDEABZkSG0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d5e65e\\-5dee1d5d\\-652d\\-4937\\-95f1\\-8c3d72ad7a19\\-000000[\\/\\\\]+BFOKoUnN_7OZKYioP4n7DjyQtnY\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2eea4ef\\-a0f485dc\\-e5aa\\-46e6\\-b231\\-0447a429d7fd\\-000000[\\/\\\\]+kpzbLkx9MoO\\-Aw6PCnk2mQcNfX8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d053d4\\-d2ab2830\\-6c22\\-446b\\-8738\\-6f28d4deefd1\\-000000[\\/\\\\]+REGjKfyrOgZaJ2z_4wG6Ph9HMNk\\=392(?:\\?|$)" + }, + { + "hash": "e1a3026aa4979c544cacf1056bb16b2121ac354c8f47d63363f436e2907f8fd3", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e89d0d\\-f90cb964\\-3be5\\-4bd0\\-b69d\\-10b8b82f533f\\-000000[\\/\\\\]+RhfjFt11y9dMO1dQrGmwf9Q_HSU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2cbf4a1\\-0775dfd5\\-60ec\\-48f3\\-bf3f\\-41b8c3ad17f4\\-000000[\\/\\\\]+HgWg4K86CqJl53qeilbuxkzCd\\-Y\\=392(?:\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+53o2gwjmfvrkwlj9ws88fs0u7kvmspmzotwxedycql7zcrtlvfo1yvd3uxsxdz3ywmh0myz8zuk[\\/\\\\]+7cb3ulikee7qptp6spqvtorepktuv0k03n8mxo30wptna38xoat2trxpikoyq0aejsrvqkctml1l4zih[\\/\\\\]+v2hzx6u8ybayggfjrzvrss0s4oa4rdwg9rvnxhmxdnwhyqxxsfoud3mk2quhrgckhlljjd\\?cookieQ\\=1\\&cookieq\\=1\\&cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-kozmetikvalf\\-login\\-01pxq6\\.outcompeteclean\\.com[\\/\\\\]+di1ykultvvkywg4xgpqo0wux0degy3ndbmog8kaoebisjrgco7jwkzo[\\/\\\\]+albgftnatpwako69kprn9ptsoycrvgxr26kv34kjecgx29ddnzwe4w4zn4nfscdytku[\\/\\\\]+3eoe7duiairnuo1iikoeaxgnducqfqobrzhcrmruviswcrv4db[\\/\\\\]+$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d5a9ae\\-a8f554c3\\-8c93\\-4951\\-a3ea\\-484239a4a32a\\-000000[\\/\\\\]+ZRYPMfu9_5v3XvFGDqsqofaapRE\\=392(?:\\?|$)" + }, + { + "hash": "a264ba7f9cea8573bcd21abdc85ebee9ecaadf883654082c206c0d50212e8acd", + "regex": "(?i)^https?\\:\\/\\/shaw2021login\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e310794b\\-a08b2712\\-9e9d\\-40aa\\-934a\\-3d5d1ed6e4cc\\-000000[\\/\\\\]+a5hu2fCufYaf9EmJqOZ6jpeEARY\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e0bf31\\-e08e886c\\-ee57\\-4b8b\\-86a1\\-b8a73a708a4e\\-000000[\\/\\\\]+HEpZkslVt9bLUf5hqTC8IgwTfrU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ea811b\\-83652650\\-1211\\-44de\\-872b\\-610ffb6276a8\\-000000[\\/\\\\]+9wZ\\-7YJ198\\-jx\\-OZLS1wJw53F6g\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e37213\\-c8b86d88\\-e338\\-4ca1\\-9787\\-1aad438a9e7c\\-000000[\\/\\\\]+dF\\-vVZhOujFgYfwdXiL4ThwrNpw\\=392(?:\\?|$)" + }, + { + "hash": "4d9364ac43397a01b206f2443d9711c3fd8ec87663853ae36722078495c2efe7", + "regex": "(?i)^https?\\:\\/\\/bafybeifv6c2pax3fup4aufbos372rwwutojhegk6cnbzdlo4o5ctr3hlwy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30272e1\\-57f212b3\\-41b1\\-4b3f\\-b34a\\-8f6f5521ead1\\-000000[\\/\\\\]+tEbwBMmFv4Jn00tBshey3ukd7qg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2df3015\\-6b5454db\\-eab8\\-41cd\\-8d56\\-477929133e19\\-000000[\\/\\\\]+CWikyDjUAojaeQV7Ybzt7wuvuX0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30060cf\\-aa8c7d9f\\-6a99\\-4fea\\-a773\\-c3bdb801e553\\-000000[\\/\\\\]+EndndzxknCaA0XkYgWf2TIUWKkQ\\=392(?:\\?|$)" + }, + { + "hash": "5ff35f7b092d9697878b410956d4bd2260b31ff6ba0c9f39d807e52f868b47d9", + "regex": "(?i)^https?\\:\\/\\/eyj5\\.short\\.gy(?:\\:(?:80|443))?[\\/\\\\]+s(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e40eb0\\-dc73d2ce\\-24c0\\-4e80\\-832d\\-30ccf09486e3\\-000000[\\/\\\\]+jS1_ogqaBTFkbJmbSl_IIk\\-WwPk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e300fedd\\-0da16088\\-5466\\-43e4\\-9295\\-23b01db1357f\\-000000[\\/\\\\]+I\\-iPp6ky8y9_fhNp01pyhlAgqBo\\=392(?:\\?|$)" + }, + { + "hash": "767e4f69975687228c3dc7b07f0ecadcdb03fbcfe286e5e56fa46cab7be7e8f8", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e07ce8\\-efb609bc\\-f9f7\\-4c08\\-b970\\-004112bc49de\\-000000[\\/\\\\]+7X2U5WGLS5Da6O1OsnKKMKiziOU\\=392(?:\\?|$)" + }, + { + "hash": "bce85332df41d877ea04fc8f2b2c1e099b4204753fa27ba385197afda6cd41c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30ef44d\\-9a2b5d0a\\-ab85\\-4118\\-ad9a\\-01b30e30cd04\\-000000[\\/\\\\]+UID9RhVnHV_wrGZYCmYZhrYCnlM\\=392(?:\\?|$)" + }, + { + "hash": "d4d81738c74db394375706d710a9095a527d2420281892a75106ba8a3b6a00c9", + "regex": "." + }, + { + "hash": "f9badb600f332d002c351f6a00625c6c9f29e5a34f24f7c9f769348c454e140d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nfdmbJ(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e6f923\\-e34c2dbf\\-d8d7\\-4cbf\\-bfbd\\-9f85709d69d9\\-000000[\\/\\\\]+wYBmruIJtvZsaoW\\-wd_rDl5E5ZI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d06e34\\-666a162b\\-4cd4\\-45eb\\-8c3d\\-a84865669393\\-000000[\\/\\\\]+n3bv5balmm_C_smqLcuUIUTyXsI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e93a0b\\-21f55759\\-e442\\-479f\\-901c\\-a4510da27e55\\-000000[\\/\\\\]+GNdNKBV1gjbH0f58rnffprZpi4Q\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3043ca5\\-b5ee7053\\-1af4\\-4af7\\-9e81\\-2465f47ff258\\-000000[\\/\\\\]+DrOP_QSeMedkP1bWOD5_UDsPnPg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3150bac\\-3b98e76c\\-6532\\-47f8\\-976c\\-56f4a7da8164\\-000000[\\/\\\\]+uS2oJ9BgbJWjqG4LKicvCNtI4Oc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d62d6f\\-8b732851\\-03de\\-4f14\\-937a\\-aebdbf1d948b\\-000000[\\/\\\\]+eUlM6TvBCH\\-u14YpdKjiRrQ3QAY\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f600c1\\-88d8f9e6\\-fa55\\-49a6\\-9d63\\-d784127cde85\\-000000[\\/\\\\]+pQWDDxTyMMdPD5TccZaJofOG_o8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2dc81e0\\-e3cbb05b\\-9d91\\-427d\\-ab2a\\-3ba9e259d580\\-000000[\\/\\\\]+rKcYb_2ZU\\-0wYoYWQ1h6JeZQ2qI\\=392(?:\\?|$)" + }, + { + "hash": "67100e4d1cd8c9cb7b9954cc5e1a8e4b0a253ac61da5bbc81fa2afa3bef9304f", + "regex": "." + }, + { + "hash": "79201eab6c8276dbdaff50bcb77c20cdadf946ddfcbb2223d5003f8d40a3ec87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+la(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f58fc7\\-ad64ba21\\-2031\\-48ac\\-8573\\-72298e6a1d5c\\-000000[\\/\\\\]+7gb7FS3H7PxB2d4UPJgVuZn49FY\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e0bf31\\-e08e886c\\-ee57\\-4b8b\\-86a1\\-b8a73a708a4e\\-000000[\\/\\\\]+4O9O7gBSFs1nDw\\-Enrm9L7E9ddU\\=392(?:\\?|$)" + }, + { + "hash": "9a04207066e72dd451b425699cf408b4a78bc823e6fd7c87ba3c9ea7189448fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+backup[\\/\\\\]+order" + }, + { + "hash": "2472a123e2012bfc3b008d3327d5632c99fb18f70b2943480a7b9f07b04b36ee", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fb9dba3b8c3eb2b4867335bdf2dd7119cb397bd624fd5656893baaabf0051c64", + "regex": "(?i)^https?\\:\\/\\/dfdfgdsgfdgrfty565656\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dd77402df24054db5a523d4806e6efac3269a83fc487ecc65d8e14cbaceb1eaa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9070[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e9d576\\-d56391b7\\-cc3d\\-4c47\\-9d03\\-8ff43d4281f0\\-000000[\\/\\\\]+eqgIBBNHx3gzvaCi1H6msL\\-aEuM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f8b65e\\-caa0a67b\\-1ecd\\-4005\\-9af5\\-7e5c893a4b11\\-000000[\\/\\\\]+hAKmH\\-Wl93GEaM6RqWPoKvv60v8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d51848\\-312d32b7\\-c386\\-49de\\-8ea9\\-85ac05525060\\-000000[\\/\\\\]+EU73FvgnpkyNeOVqVGv0_Ft9R7w\\=392(?:\\?|$)" + }, + { + "hash": "fa01c006cb7c344d007ea16938c42e37e2d32e324c2a6bf463e8c929041f64b2", + "regex": "(?i)^https?\\:\\/\\/fmjngvmfdngvbzsfffffffffffffff\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fae1e4\\-30185070\\-7e8a\\-4f73\\-b9ea\\-8351d8efd329\\-000000[\\/\\\\]+jKeVbovqF3isuJjM1YrTPeSOLtg\\=392(?:\\?|$)" + }, + { + "hash": "3981de9edb0c92d706821a3341b546781d05947cb3e6dae51dd511cfaf6f5a72", + "regex": "." + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+53o2gwjmfvrkwlj9ws88fs0u7kvmspmzotwxedycql7zcrtlvfo1yvd3uxsxdz3ywmh0myz8zuk[\\/\\\\]+7cb3ulikee7qptp6spqvtorepktuv0k03n8mxo30wptna38xoat2trxpikoyq0aejsrvqkctml1l4zih[\\/\\\\]+v2hzx6u8ybayggfjrzvrss0s4oa4rdwg9rvnxhmxdnwhyqxxsfoud3mk2quhrgckhlljjd\\?cookieq\\=1\\&cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-kozmetikvalf\\-login\\-01pxq6\\.outcompeteclean\\.com[\\/\\\\]+di1ykultvvkywg4xgpqo0wux0degy3ndbmog8kaoebisjrgco7jwkzo[\\/\\\\]+albgftnatpwako69kprn9ptsoycrvgxr26kv34kjecgx29ddnzwe4w4zn4nfscdytku[\\/\\\\]+3eoe7duiairnuo1iikoeaxgnducqfqobrzhcrmruviswcrv4db[\\/\\\\]+$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e300fedd\\-0da16088\\-5466\\-43e4\\-9295\\-23b01db1357f\\-000000[\\/\\\\]+mtCWhxqODSiCfqUWbvY4ynF_\\-P4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ebb7a3\\-54592c39\\-beaf\\-4f49\\-a324\\-dd7825c2206f\\-000000[\\/\\\\]+L7MFG_Fjwk1TBL8MWs7zm7pjwXc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e304c9c9\\-580fd0d3\\-dc33\\-4995\\-be60\\-90c6d8e74d89\\-000000[\\/\\\\]+boMJ3_5kmX4LcDVqkYHyZjT\\-Iwo\\=392(?:\\?|$)" + }, + { + "hash": "9135f02bef81eedb9d0701cc1713226279fe260e7e64a89a8797032605811697", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cc88c0a36e9d0bff177d9c761dd0c212dec00669b83951801fc217dc291a8518", + "regex": "(?i)^https?\\:\\/\\/hasansiddiqui05\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "75c018747b6d181b6ee7b5e00755b7809fda132d56af2912b95dbac743ad975a", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30252a0\\-0cfe2062\\-06bb\\-4009\\-b26a\\-7d8ea667235d\\-000000[\\/\\\\]+liiT0aumV41fLTShzkAvF9nieko\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2cbf4a1\\-0775dfd5\\-60ec\\-48f3\\-bf3f\\-41b8c3ad17f4\\-000000[\\/\\\\]+clm6x_3wVnvOqRp307FJKJ2\\-780\\=392(?:\\?|$)" + }, + { + "hash": "734999921fa4b806663e4d28e0eb12a2135a30ed3f07082a106ed79ae6dee874", + "regex": "(?i)^https?\\:\\/\\/dauisghdhxcuixhzcoihoasdhoaishduio\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2dc8c59\\-4d800aa4\\-1429\\-4164\\-a375\\-fcd2ae620723\\-000000[\\/\\\\]+qn3_c2USTRBpmT6Q88kTQyZlZIQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e310794b\\-a08b2712\\-9e9d\\-40aa\\-934a\\-3d5d1ed6e4cc\\-000000[\\/\\\\]+Pq7Hr3zWqC81W4kgvIReqQcDZgc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e58187\\-2c797832\\-5053\\-4ac5\\-92ee\\-8f31e35b8395\\-000000[\\/\\\\]+OB6h0Cle7dkL4ld7muSPD_CEUN4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30056c7\\-46a09b97\\-17f3\\-4542\\-90ae\\-21a908df857b\\-000000[\\/\\\\]+Uxy5P7I0uHDBYS87oqmAyhiLTcs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f58fc7\\-ad64ba21\\-2031\\-48ac\\-8573\\-72298e6a1d5c\\-000000[\\/\\\\]+iCFk46jWlDWARPDhx2Z4Wcialxo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ca0b79\\-ee26f54b\\-79a9\\-4734\\-bb69\\-7b5ace293494\\-000000[\\/\\\\]+90G05GDmMdLdSEGsFyqgBE8FBcY\\=392(?:\\?|$)" + }, + { + "hash": "78099d513419a10a30c16a4807a1667020e4c7e4f05bef8f1f08fa310c69458f", + "regex": "(?i)^https?\\:\\/\\/asd33asd33sd2sads5d6sd5sad6\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fa35ab\\-177561cc\\-9437\\-44de\\-8a62\\-fca6c2277af8\\-000000[\\/\\\\]+qormpIW\\-u5h7piByX1XPCprrm7E\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ea811b\\-83652650\\-1211\\-44de\\-872b\\-610ffb6276a8\\-000000[\\/\\\\]+ybuRogtZYhsTB0IUkbdSc7DKhjU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d495f0\\-959c988e\\-fcd8\\-46d4\\-807b\\-d3e289da51d0\\-000000[\\/\\\\]+3x56036_JDrMrp5yaRZ56Ui0GDs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ec4f3d\\-a83348a8\\-d4a1\\-488f\\-8bdb\\-2954df651f29\\-000000[\\/\\\\]+IpI_HxeMtImi0QGfGKA34RZb7p8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f8b65e\\-caa0a67b\\-1ecd\\-4005\\-9af5\\-7e5c893a4b11\\-000000[\\/\\\\]+17bvF7QZSnodkm8VTIe8oDcPjFg\\=392(?:\\?|$)" + }, + { + "hash": "d7c5a4af432a34680ff583069c779ce1ae542c8ecc2cf3dbb06ad824855e789a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wis[\\/\\\\]+clicktime[\\/\\\\]+v1[\\/\\\\]+query\\?url\\=https\\:[\\/\\\\]+belepes\\-nextonline\\.divin\\.store[\\/\\\\]+\\&umid\\=6C9798BB\\-21E8\\-8606\\-AF44\\-32E6D7238BA5\\&auth\\=0bc625e4f964a7f3d8621dba6af342f4b78c0ff1\\-3accfc3a27cdfba3b3020df10119fc0bc48c8f61$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e304c9c9\\-580fd0d3\\-dc33\\-4995\\-be60\\-90c6d8e74d89\\-000000[\\/\\\\]+CoexF1qsYOfncRp3TJ_cH281tHQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e3761a\\-253e0bc9\\-daa1\\-4095\\-a885\\-f16fcfc5171b\\-000000[\\/\\\\]+agxloDb\\-gMxm6kRa5JkhvmALEwg\\=392(?:\\?|$)" + }, + { + "hash": "0e4c29da4bdc52792e72ec690c94ce46807d1ec1cdb6242423d3fc7c8ff9cb87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "1b467ff3eadbc1adb395f0da7252463c94562890a39845c9ad47e8c9a22e35c5", + "regex": "(?i)^https?\\:\\/\\/fmjngvmfdngvbzsfffffffffffffff\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e96350\\-3080daa8\\-3f97\\-422e\\-ae4f\\-525f3b2bac2a\\-000000[\\/\\\\]+HcOiKsOxF8S52_mUt7J4n_qDUPE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e37213\\-c8b86d88\\-e338\\-4ca1\\-9787\\-1aad438a9e7c\\-000000[\\/\\\\]+0iDrheKlHSsB0ISF76L6mER3dxA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d053d4\\-d2ab2830\\-6c22\\-446b\\-8738\\-6f28d4deefd1\\-000000[\\/\\\\]+jFHXrZrO8BS3wEUXfjyFed6\\-yjw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2dac00a\\-8201d3ca\\-05e7\\-43e3\\-84fd\\-786aea02002b\\-000000[\\/\\\\]+3ML4Ngo3dIme2mSFG91_5L9BdH0\\=392(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\%3A\\%2F\\%2Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\=\\%24UID\\&ex\\=appnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "bb2d1ef4dc100916ec9031c95c1d517f3d0966c17a8746a1ac381397674a3a41", + "regex": "." + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%25252Fmassive\\%25252Fseguro\\.html\\%25253F\\%25252Fecm3\\%25253Fid\\%253D\\%252524UID\\%2526ex\\%253Dappnexus\\.com\\%25253F\\%25253Fex\\%25253Dzeotap\\%25252F$" + }, + { + "hash": "35edeef125b12be01389c0a03cc77335caea9ecba5171d8f66e4e320f6c145cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2eb39a0\\-a5a1672f\\-5cd3\\-4ef4\\-b44c\\-1b3c27fd92ae\\-000000[\\/\\\\]+8MbZtNzaJuM_pRor3i4Ssda94ZI\\=392(?:\\?|$)" + }, + { + "hash": "8405b19d895e0429c15ccf896df29da096e8bcc4526e0a17f876e46d9a354898", + "regex": "." + }, + { + "hash": "4a93b29221960acd60e4325332a7166008e884266bfd34cc52bbf038a8922428", + "regex": "(?i)^https?\\:\\/\\/yusra\\-sabir05\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a925186bd8d21ada9977bb90261ecfc52797b9d3fd29a0be360f181692764485", + "regex": "(?i)^https?\\:\\/\\/uiyfoidshf67838yf6dtsr972y35r6tef38\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "48f00c77dd1aa7f868c38d7fafe50a772b851231b0e569ea8c5d9b43318524ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9053[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e31236fd\\-1584163e\\-aa53\\-4096\\-907d\\-a3934ed484a3\\-000000[\\/\\\\]+hOC6tut8c8iEquVQGjlJjhKoniE\\=392(?:\\?|$)" + }, + { + "hash": "941120546e6d8b0f33713bf96b5561584d5d4bab5a0d4f92499fad86ecae04b7", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f2ae3b\\-dc8ee462\\-5458\\-48cb\\-be09\\-c2fb9efd3c30\\-000000[\\/\\\\]+ph4UKXBHd69ix_LkoDpJN6TGj\\-w\\=392(?:\\?|$)" + }, + { + "hash": "35edeef125b12be01389c0a03cc77335caea9ecba5171d8f66e4e320f6c145cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ed5149da0d7e925faf9cb83a2e64c95b82cfc4fc32160260052d64386dc42a40", + "regex": "(?i)^https?\\:\\/\\/vip3659h\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d6763bd56027864aa161055102a16b860604c431eb5d90c2c6c8225c11845b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+online" + }, + { + "hash": "a9be95a1e32881d5ae1ea02331b9a708c7fb5742faa745fc2f37f4f7fca1cb61", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.67\\-205\\-191\\-71\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e31432fa\\-5e28d807\\-93d6\\-4c6e\\-97d9\\-28f0826e53fd\\-000000[\\/\\\\]+iifj_Cq0Fg6RGvpiN6uFYK5ZsI4\\=392(?:\\?|$)" + }, + { + "hash": "fb66263bbd82db087f81b72df41e3ecd0263c34fbb55688ab6125e9952d64cc1", + "regex": "(?i)^https?\\:\\/\\/pub\\-a182a2cf8c344c18bf44724ec8f24b20\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f5120e92f9d11f6a47cce5a63cbd430bb92ae98075f8444d64d889261dd8d022", + "regex": "(?i)^https?\\:\\/\\/www\\.34\\-230\\-74\\-59\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3129046\\-e79d24a2\\-787c\\-45aa\\-bf77\\-520cc3049295\\-000000[\\/\\\\]+CRS5si\\-8wsVOOrIqx850Idc_U2I\\=392(?:\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%253F\\%252Fecm3\\%253Fid\\%3D\\%2524UID\\%26ex\\%3Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap\\%252F$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3168e0d\\-48defba5\\-5a05\\-4834\\-9116\\-ca84e341a265\\-000000[\\/\\\\]+Q4hpkTenNzfz1sp_ieKDZc\\-4dLI\\=392(?:\\?|$)" + }, + { + "hash": "6dd250633993cef775527dd0abb90af91966317bce1e93a894991c4a6e55fc8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register43526(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\%3A\\%2F\\%2Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\=\\%24UID\\&ex\\=appnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3168e0d\\-48defba5\\-5a05\\-4834\\-9116\\-ca84e341a265\\-000000[\\/\\\\]+m9ta4sE19JdG1AFyzXG9hklj8i4\\=392(?:\\?|$)" + }, + { + "hash": "adfd0f7966f69254f25f13ff1826a5812156504ee481672e5f9f57964c9c834e", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%253F\\%252Fecm3\\%253Fid\\%3D\\%2524UID\\%26ex\\%3Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap\\%252F$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e31236fd\\-1584163e\\-aa53\\-4096\\-907d\\-a3934ed484a3\\-000000[\\/\\\\]+U1InTwO60dKQvxIMi2Q9pPfpd0Q\\=392(?:\\?|$)" + }, + { + "hash": "6dd250633993cef775527dd0abb90af91966317bce1e93a894991c4a6e55fc8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a19c1fed406dc1428e1187102054b13db8c16a2bfb422115b61305ac87787523", + "regex": "." + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%253F\\%252Fecm3\\%253Fid\\%3D\\%2524UID\\%26ex\\%3Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap\\%252F$" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\%3A\\%2F\\%2Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\=\\%24UID\\&ex\\=appnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e304c2c4\\-01e0e3d5\\-80a3\\-4603\\-ac3e\\-634c072af37d\\-000000[\\/\\\\]+jpR7OJ4eQZNbz41c2aTel9izb_s\\=392(?:\\?|$)" + }, + { + "hash": "11a7adc84dde29c1bb1cf243319c38fdbaf112ca777bea9d4d917e4e4fe18c10", + "regex": "." + }, + { + "hash": "5f191c377551887785815d566c82f902c664abace277b139e723837807426bb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "ed5149da0d7e925faf9cb83a2e64c95b82cfc4fc32160260052d64386dc42a40", + "regex": "(?i)^https?\\:\\/\\/vip3659h\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2eb39a0\\-a5a1672f\\-5cd3\\-4ef4\\-b44c\\-1b3c27fd92ae\\-000000[\\/\\\\]+SwaV3MXJ1iBIIPPf\\-Jw47\\-E9I1M\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e304c2c4\\-01e0e3d5\\-80a3\\-4603\\-ac3e\\-634c072af37d\\-000000[\\/\\\\]+wLOaKuywgAzF14\\-aT3y\\-0eEImXg\\=392(?:\\?|$)" + }, + { + "hash": "c2208e911c9bdcb0ae9ba140b2629fa782ba7b4bb341a35b9d763fb1362e5759", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e316ae05\\-e2d4e3c6\\-b1a4\\-4551\\-9e46\\-e68b99711d18\\-000000[\\/\\\\]+kSCCQontHX2B5hyEfNZY9WcYsio\\=392(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\%3A\\%2F\\%2Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\=\\%24UID\\&ex\\=appnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3129046\\-e79d24a2\\-787c\\-45aa\\-bf77\\-520cc3049295\\-000000[\\/\\\\]+UP13ryH41DLplx57TllbhWFOVb4\\=392(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%253F\\%252Fecm3\\%253Fid\\%3D\\%2524UID\\%26ex\\%3Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap\\%252F$" + }, + { + "hash": "80a750a21f09728b9cf7dfea28ee6f589a7b62f2806184f64a274a44e55d9048", + "regex": "(?i)^https?\\:\\/\\/mvplinoa131\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e31432fa\\-5e28d807\\-93d6\\-4c6e\\-97d9\\-28f0826e53fd\\-000000[\\/\\\\]+clHXLZjmTD6P6V9rHcq0bXAB5qc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f2ae3b\\-dc8ee462\\-5458\\-48cb\\-be09\\-c2fb9efd3c30\\-000000[\\/\\\\]+FTfBwknxACoZ4S3fyyUIdXH1jok\\=392(?:\\?|$)" + }, + { + "hash": "48f00c77dd1aa7f868c38d7fafe50a772b851231b0e569ea8c5d9b43318524ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9053[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "d79445b46315d3cb09ea3b285db6102f7a1e03b13560ca97c140cbaf6d200cc3", + "regex": "." + }, + { + "hash": "6dd250633993cef775527dd0abb90af91966317bce1e93a894991c4a6e55fc8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e316ae05\\-e2d4e3c6\\-b1a4\\-4551\\-9e46\\-e68b99711d18\\-000000[\\/\\\\]+luoXUtdkLPAWZh0gaz0BicDyf38\\=392(?:\\?|$)" + }, + { + "hash": "dad5e9665c1326bdd5c8f552d26b1dc976ea62a092c4dec69838cf1aff1d6c6c", + "regex": "(?i)^https?\\:\\/\\/pub\\-b7f84dd9dcc542e68e24423a8df06033\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e60d97\\-515981e0\\-53ee\\-4156\\-9140\\-274e0ccab0e8\\-000000[\\/\\\\]+Bqym9qAhYe\\-F0zCjKhP_jdU144s\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e60d97\\-515981e0\\-53ee\\-4156\\-9140\\-274e0ccab0e8\\-000000[\\/\\\\]+bwKhX_XI067UsZFL7lLt_xWM\\-no\\=392(?:\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\=\\%24UID\\&ex\\=appnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%25252Fmassive\\%25252Fseguro\\.html\\%25253F\\%25252Fecm3\\%25253Fid\\%253D\\%252524UID\\%2526ex\\%253Dappnexus\\.com\\%25253F\\%25253Fex\\%25253Dzeotap\\%25252F$" + }, + { + "hash": "bbaf94c64591b37e7397b4b267d0f7a63c08ff9492f227879c83c1b655ee6a04", + "regex": "(?i)^https?\\:\\/\\/buxb0t\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3061057\\-2fa7b66e\\-eac7\\-461c\\-98f1\\-28f4f1e9f151\\-000000[\\/\\\\]+liyTeZNp16J7WZSx47IP1y3Gd\\-U\\=392(?:\\?|$)" + }, + { + "hash": "208468bd9ddb2da43100e913cfd5c72248b9bc9fe80003eb8b6cd5bffb7869f1", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ee8260\\-ad3d9756\\-9643\\-4135\\-9029\\-21251dca7fab\\-000000[\\/\\\\]+c_vPVY\\-urK_Izobc7JOm8BZUlV4\\=392(?:\\?|$)" + }, + { + "hash": "1336ac62ba1ce5282c09830cc262b5b74aa39935c377843cc4b4753f785759b5", + "regex": "(?i)^https?\\:\\/\\/restructuring\\-ra\\-kroell\\.com(?:\\:(?:80|443))?[\\/\\\\]+FTX" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f70fb2\\-a2bb8a35\\-57b8\\-4b85\\-9cb7\\-d20c634085f9\\-000000[\\/\\\\]+LTp5rTT9bG\\-V1QaZh7hkQ4E97Ew\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f63db7\\-bd999dd7\\-0dd1\\-4817\\-8016\\-3a1fb88d76a2\\-000000[\\/\\\\]+yI3dl7uU7VLip\\-bFzRQfPf2e0_A\\=392(?:\\?|$)" + }, + { + "hash": "9f636711b296bbd72681d5b758b1a71006edbb0ed99ea779ba74acbfb8736b82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "843a2742954d6dce837c6358b260c40317923590379bdc7b4bce4308b5663074", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f63db7\\-bd999dd7\\-0dd1\\-4817\\-8016\\-3a1fb88d76a2\\-000000[\\/\\\\]+mmISpAf8ZgGHd9cyTbZcI8zM9EA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3051ba9\\-213fff26\\-5f3a\\-4e5b\\-bdd0\\-cc8ae39efc2a\\-000000[\\/\\\\]+aQtVo4Y1mvI_p8Vy0JCnsJZrtJk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e5859a\\-22dab62d\\-8e45\\-447d\\-b906\\-7aa0e8f3dcaf\\-000000[\\/\\\\]+7EaU\\-0TkbRqc7lky1YZqX67uLjE\\=392(?:\\?|$)" + }, + { + "hash": "7320a78263f5e722785b82093220170de1c4c6f7f1e91301f0ced718f75439b1", + "regex": "." + }, + { + "hash": "ea72cf8cf932b511efb5aa88ab4e1fbe490920ef78c529363b989b53c4c63c38", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?anglingdirect\\-vip\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "95b5fe25b75b77159e3100af28f45c95bebdca1fd723284cb44a06524db00601", + "regex": "(?i)^https?\\:\\/\\/admiring\\-bhaskara\\.89\\-163\\-255\\-130\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3140a40\\-fa8dc4f7\\-30cd\\-4a2c\\-8e8a\\-3fedbc27339d\\-000000[\\/\\\\]+8A5i4e\\-1PdgaltwI4a6K2uZNG9Y\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f44e01\\-293da835\\-3080\\-4c04\\-bb8d\\-265046ace18f\\-000000[\\/\\\\]+4dH6wZQzj69xZf9kOBPfmMrBe6s\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e311d088\\-19e5a8bc\\-4387\\-427b\\-8c4f\\-6f9f07702461\\-000000[\\/\\\\]+QZgU6DlYe4S0ynZtdsggHEkxz_g\\=392(?:\\?|$)" + }, + { + "hash": "b7363d3294d6f93db518cc2434e64d5a45924247e1a78c47f4957969474c7116", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8bc7775d85407b3da3e260dd48a92f5edb6b12ccc51a832a8b1b501ce305147d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9143[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f44e01\\-293da835\\-3080\\-4c04\\-bb8d\\-265046ace18f\\-000000[\\/\\\\]+xWpjmQ73muGLmSQNRqBbbYnR2cQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3140a40\\-fa8dc4f7\\-30cd\\-4a2c\\-8e8a\\-3fedbc27339d\\-000000[\\/\\\\]+Xa8WmQ1xSF3I6EfPMyoejFRYsVo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3051ba9\\-213fff26\\-5f3a\\-4e5b\\-bdd0\\-cc8ae39efc2a\\-000000[\\/\\\\]+swWunxzSOXRc7dSw9O5bK9ZhTVQ\\=392(?:\\?|$)" + }, + { + "hash": "8bc7775d85407b3da3e260dd48a92f5edb6b12ccc51a832a8b1b501ce305147d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9143[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2cc8504\\-0b1d29b5\\-d604\\-4e41\\-a1a7\\-3ea51b6415e9\\-000000[\\/\\\\]+a\\-2qw_LI_9U\\-qxvDUF_wbXITnZ0\\=392(?:\\?|$)" + }, + { + "hash": "cb78548df603dd047aaf1ec7e53c29ab93f8cc282a9e831197cb8cedc504a0a4", + "regex": "(?i)^https?\\:\\/\\/sameershiekh77\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d37fe0\\-2db13286\\-bf46\\-4be5\\-a9cf\\-283b2283514a\\-000000[\\/\\\\]+p57f5hjSn0NQijVo0lDPIO47sr0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2dace5d\\-12a93743\\-6943\\-4f18\\-8db0\\-14cc6df032df\\-000000[\\/\\\\]+rtLMfm5CJtFGbtM6wO8Nx\\-s_0eM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f70fb2\\-a2bb8a35\\-57b8\\-4b85\\-9cb7\\-d20c634085f9\\-000000[\\/\\\\]+1LccGeRLP4LSjITCE9v\\-Na5nsVM\\=392(?:\\?|$)" + }, + { + "hash": "b7363d3294d6f93db518cc2434e64d5a45924247e1a78c47f4957969474c7116", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ee8260\\-ad3d9756\\-9643\\-4135\\-9029\\-21251dca7fab\\-000000[\\/\\\\]+St71N2IPi4o3Ydllwv\\-yPatPxMY\\=392(?:\\?|$)" + }, + { + "hash": "9afb9d6b6fb8c50c293cdf6664773983cf48d4d1f87a8655c243282ae0211429", + "regex": "(?i)^https?\\:\\/\\/gouv\\.fr\\.89\\-163\\-255\\-130\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fe105e\\-8a25b286\\-a1cd\\-4e9c\\-9ff9\\-665787acf06d\\-000000[\\/\\\\]+E9px2UM5GFgh3VAXxrXNX6Rev8w\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3061057\\-2fa7b66e\\-eac7\\-461c\\-98f1\\-28f4f1e9f151\\-000000[\\/\\\\]+mF9r3lyPGJYknG3NnQJnW4rUoZg\\=392(?:\\?|$)" + }, + { + "hash": "ea72cf8cf932b511efb5aa88ab4e1fbe490920ef78c529363b989b53c4c63c38", + "regex": "(?i)^https?\\:\\/\\/anglingdirect\\-vip\\.shop(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "dec3cdc2cf45216a75476a87e5cc6168a907d2a676dcb6fb8562c094f24b1dfe", + "regex": "." + }, + { + "hash": "bff1e806767a771c76188f235e861958317def92537b45d3e597e933408cb455", + "regex": "(?i)^https?\\:\\/\\/musing\\-heyrovsky\\.89\\-163\\-255\\-130\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e312a57a\\-bd1f1087\\-43ce\\-472c\\-b6be\\-d5df6a84be6c\\-000000[\\/\\\\]+cBNlTDldV6VnARsbi\\-A3G_QlMcY\\=392(?:\\?|$)" + }, + { + "hash": "b7363d3294d6f93db518cc2434e64d5a45924247e1a78c47f4957969474c7116", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register43526(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f32761\\-9aba35de\\-afaa\\-411c\\-becf\\-e0d590d8c898\\-000000[\\/\\\\]+byFrCw9ZJjm\\-oesmgCQzCgSOcOk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e5859a\\-22dab62d\\-8e45\\-447d\\-b906\\-7aa0e8f3dcaf\\-000000[\\/\\\\]+eNMTAOmyPoYQGz2NusCpPPIDfBU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d37fe0\\-2db13286\\-bf46\\-4be5\\-a9cf\\-283b2283514a\\-000000[\\/\\\\]+J_MFCHRlvD8V8hVFUxbmOpVpVrU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fe105e\\-8a25b286\\-a1cd\\-4e9c\\-9ff9\\-665787acf06d\\-000000[\\/\\\\]+yel5qmkxsKO64DPctvNC8deVqLI\\=392(?:\\?|$)" + }, + { + "hash": "287f19d9f30b1da1afe1b123b78e133b9053a11a86d9b320f512046fad1a1114", + "regex": "." + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+l1l1l1l1l1mass\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "2996b2ba62bf41523cf330b5dfd79f9660d50a32ac4e888eb2662b50fce3b321", + "regex": "(?i)^https?\\:\\/\\/lasopabrands791\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c3244148ca69e5baa981973b1042b4da86c5a2c5655f148f74f507fa6fc1b575", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app[\\/\\\\]+loginos\\.php" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2cc8504\\-0b1d29b5\\-d604\\-4e41\\-a1a7\\-3ea51b6415e9\\-000000[\\/\\\\]+P7u4uQjSZmBNaAWSOD9DkOp5sWs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f32761\\-9aba35de\\-afaa\\-411c\\-becf\\-e0d590d8c898\\-000000[\\/\\\\]+rOh\\-BHMggysSP2\\-yhTFgVYha9bo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2dace5d\\-12a93743\\-6943\\-4f18\\-8db0\\-14cc6df032df\\-000000[\\/\\\\]+2GfiXGQzmEU8WoMtFj486O0YxBs\\=392(?:\\?|$)" + }, + { + "hash": "10e43fc2aec7f5db3dfcdbfe19042ab648fbfa76277e4e0764f609c5f289db03", + "regex": "." + }, + { + "hash": "b23f19c877aa3833227023e801eb5079ee27f3872efb9823eee2dedc27851cad", + "regex": "(?i)^https?\\:\\/\\/pub\\-bfd05ea4e6ce4c568efc22970129ed55\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+l1l1l1l1l1mass\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "bcd1d732ed1a91bcd7e408afbab170f99f033910531666ea16e085fb556c4305", + "regex": "(?i)^https?\\:\\/\\/www\\.intelligent\\-galileo\\.89\\-163\\-255\\-130\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e311d088\\-19e5a8bc\\-4387\\-427b\\-8c4f\\-6f9f07702461\\-000000[\\/\\\\]+Sn9IRjZN__epQpp62fgYiTToFvQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e312a57a\\-bd1f1087\\-43ce\\-472c\\-b6be\\-d5df6a84be6c\\-000000[\\/\\\\]+DKXIimP5eps1ZeurUZz0Xl_Jsks\\=392(?:\\?|$)" + }, + { + "hash": "16427f1a47810b77a93c2e1d0f0ac2f24ca1c0039b477f873817fdb88c5571ec", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f9fb81\\-8b86354e\\-0c2f\\-4dbb\\-b76e\\-076c10c36147\\-000000[\\/\\\\]+YZQiIT\\-KYQZauQPN7SzWIIevhfk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f9fb81\\-8b86354e\\-0c2f\\-4dbb\\-b76e\\-076c10c36147\\-000000[\\/\\\\]+acImOGLdwkOpEyjR59a6iyPiHDw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3134e5c\\-621aa039\\-52b4\\-4879\\-9231\\-eedb460fcfd5\\-000000[\\/\\\\]+zxn_JqZvlGMuZ1_A3ybDhX9cDJE\\=392(?:\\?|$)" + }, + { + "hash": "c4f279ee711f16cec2185c975069a08f0107ee0fd5d7126e2656404488fb9276", + "regex": "." + }, + { + "hash": "1a6219b9c05cb595b41430cf170aa1ac42e7c45a772993b42fe0ba69d4c41f76", + "regex": "." + }, + { + "hash": "28b7eb7b7dda44aaca55ea96d4ff72828f48d51578b1023db01a8ca94944f0cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+TTCXCX[\\/\\\\]+home(?:\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+8l2loirys0bwhf3sjgsyplpp3afazmzwuketcfzgedzdqnfsxm3f80rw9acmokfi28czqsjwjrb[\\/\\\\]+62zebzp9fjkkfozdskorwrgcymzkofdpchgmmhzspy6tmwvtzrrcelsi5v1bjpwwd73iwcmmqcitjyz5[\\/\\\\]+lljxaklelsywh92bsl6wzvlvtlntdcbkyceprfqyirellsisv516o1wetksbtizteoiazp\\?cookieQ\\=1\\&cookieq\\=1\\&cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-aycereklam\\-login\\-0fy96d\\.outcompeteclean\\.com[\\/\\\\]+ibnoycofhkkrh0vue2328fowkdj0vsknkir91qfwhmywrna7nnotwii[\\/\\\\]+alj2aijm2yjqaypcrokpxvbpwvcxcemf6wjdvvok8qlgo51flyytpcfeufx2rqrpsys[\\/\\\\]+iamlnmxb1prhj8oinbegniquhsnqphbiqra9vkwgcmtgktany6[\\/\\\\]+$" + }, + { + "hash": "27ec2a9c9738cf10f0b034f57bb4acb8ec8fb88583b1706cd299bc94ede96382", + "regex": "(?i)^https?\\:\\/\\/hereqfiles118\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3134e5c\\-621aa039\\-52b4\\-4879\\-9231\\-eedb460fcfd5\\-000000[\\/\\\\]+2BobZdXA\\-E7UZ8\\-4qREVrfwhPG0\\=392(?:\\?|$)" + }, + { + "hash": "d301315496b6874e5baa577d957a8a9757b003639d69fc9e5e4f9ed3613ae4c7", + "regex": "." + }, + { + "hash": "e7e9f99cb369166ec3fe263d4a2b866ac16907e7a32041d97e1a7bfd11125010", + "regex": "." + }, + { + "hash": "0799ffe0990c5be2c4d1d8c0cd01aff8c9a856db52962fdf9e8a3c3039834d21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "72ea5aa09c7aff12dc82bcafe99e36f2375a057f13ef30ede9a9e6c1e6a7b876", + "regex": "." + }, + { + "hash": "39e16d0c965def8827fba78f4c127e62127a0dc0f5ea6eb4f293aa12322a893a", + "regex": "." + }, + { + "hash": "46e0a2b65cbb2c1375b709d91057260cb7e74cc231348d463195514de61f5bb8", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+vlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3051ba9\\-213fff26\\-5f3a\\-4e5b\\-bdd0\\-cc8ae39efc2a\\-000000[\\/\\\\]+swWunxzSOXRc7dSw9O5bK9ZhTVQ\\=392(?:\\?|$)" + }, + { + "hash": "d3d2119e99092657811e950a5d791118f2153d6541f6cf81daf78c2692138a73", + "regex": "." + }, + { + "hash": "6e87d38ec475eb539de6971ef3d1177e15deae40adc373dc798437f86d093221", + "regex": "." + }, + { + "hash": "c30169ece7046f2d63d1fe9d3e32128977866e781c9d212e792a07e4fb3508c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\%F0\\%9D\\%90\\%9C[\\/\\\\]+Mellat(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+8l2loirys0bwhf3sjgsyplpp3afazmzwuketcfzgedzdqnfsxm3f80rw9acmokfi28czqsjwjrb[\\/\\\\]+62zebzp9fjkkfozdskorwrgcymzkofdpchgmmhzspy6tmwvtzrrcelsi5v1bjpwwd73iwcmmqcitjyz5[\\/\\\\]+lljxaklelsywh92bsl6wzvlvtlntdcbkyceprfqyirellsisv516o1wetksbtizteoiazp\\?cookieq\\=1\\&cookieq\\=1\\&r\\=https\\:[\\/\\\\]+mail\\-aycereklam\\-login\\-0fy96d\\.outcompeteclean\\.com[\\/\\\\]+ibnoycofhkkrh0vue2328fowkdj0vsknkir91qfwhmywrna7nnotwii[\\/\\\\]+alj2aijm2yjqaypcrokpxvbpwvcxcemf6wjdvvok8qlgo51flyytpcfeufx2rqrpsys[\\/\\\\]+iamlnmxb1prhj8oinbegniquhsnqphbiqra9vkwgcmtgktany6[\\/\\\\]+$" + }, + { + "hash": "6a792c95b582ad6c42a3f17898af7a706d12b222470d5053ceaaffcc66027524", + "regex": "(?i)^https?\\:\\/\\/account\\.82162107\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2dc210f\\-7cdae2a1\\-ce61\\-4b11\\-ad7c\\-b98a476b5f6f\\-000000[\\/\\\\]+fhxEDxHUtZOMT1RUwEgZN92h\\-2Y\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2cb754c\\-7bc7c71a\\-4154\\-4610\\-ae4a\\-111bf6946da7\\-000000[\\/\\\\]+plricjjD6C7QJcs0_hxjesvpTOo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e9b001\\-a82ae826\\-055a\\-4d69\\-883f\\-820434b5114d\\-000000[\\/\\\\]+mXzGQIBp8EsDghwXSMdDrOYXirA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d63adc\\-bc1005c9\\-3276\\-49d4\\-8235\\-c862ed9ee894\\-000000[\\/\\\\]+HBeB_eH31dHQqjSnWmY7Dp7BR_8\\=392(?:\\?|$)" + }, + { + "hash": "b00be824764082a51ed2a44631732c76385efb08fcd2957801a8cafd62e56620", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d72ef0\\-3839512f\\-b2aa\\-4b6c\\-a61d\\-54d5d976ecd9\\-000000[\\/\\\\]+wcDzvkXfLGdsSerSkWZA5gEAZws\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d95f2b\\-d7f0b54e\\-98ff\\-47b2\\-9549\\-1b8b8cf6f1ba\\-000000[\\/\\\\]+XmJRZDGo46gSDWaZCQqxfQOspao\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3103ff3\\-e40ed2cf\\-d420\\-442b\\-8cfd\\-6b77c5c90447\\-000000[\\/\\\\]+vep7xGliOSS8IlaPzCypQdZQzpI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e98344\\-4994b30b\\-f89d\\-423a\\-8e01\\-fedbc9bc9614\\-000000[\\/\\\\]+kKmhQ9uUUEAmgCErZ1xJLEdYwVE\\=392(?:\\?|$)" + }, + { + "hash": "7d02890a050ca92ca7fd7f45356390f1e27ee0e936eafcc232e317a5b53db046", + "regex": "(?i)^https?\\:\\/\\/agam1234555\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f721e5\\-0988711a\\-909f\\-451d\\-85e0\\-f186d510fee4\\-000000[\\/\\\\]+0hiMgjLk23sO7S6Es_83bFJhyZw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3086b91\\-220d5a2a\\-bc44\\-42ac\\-a196\\-05e3b35bd733\\-000000[\\/\\\\]+PJ4IzOaodYLYBHwyhbxlDiB4HDQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f5d75e\\-5f7a3ac0\\-50dc\\-47f8\\-a10b\\-06fe85b849fa\\-000000[\\/\\\\]+pRQ0_C773gBCNwxEIo4hvjyFkTs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f6604e\\-4499faec\\-1dd8\\-48dc\\-a62e\\-75c7c020b91f\\-000000[\\/\\\\]+H42oPoXy_rExUYe1UG1xOlQYa6Q\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ff2484\\-d46eda5b\\-69ff\\-4d7a\\-8790\\-3bae571fac05\\-000000[\\/\\\\]+poEyeXp5kuv8OzSDg25Qfomfh9c\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e7f5f9\\-72508047\\-3e8d\\-45c4\\-be2d\\-d1e858b9d60f\\-000000[\\/\\\\]+7YBIANhK6WDoWGFfloLNc\\-LUXJc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e9b001\\-a82ae826\\-055a\\-4d69\\-883f\\-820434b5114d\\-000000[\\/\\\\]+2iSheaIFa9gSjOYPyBahdK0KZ3s\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d63adc\\-bc1005c9\\-3276\\-49d4\\-8235\\-c862ed9ee894\\-000000[\\/\\\\]+1hFi8\\-D6GQfvYqc2CDCVB6BNQPY\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d1d063\\-77e4d2a5\\-15dd\\-4f48\\-aaa2\\-0cfc1ca83e92\\-000000[\\/\\\\]+PIzBqY0AF2pjTLw4QJDfLXzyyxM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d1d063\\-77e4d2a5\\-15dd\\-4f48\\-aaa2\\-0cfc1ca83e92\\-000000[\\/\\\\]+OLBpEX56T2EpTrbkQhuZIOrDWQU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f58f4b\\-f945560b\\-b0c2\\-4dab\\-85d6\\-567a6d91b1c8\\-000000[\\/\\\\]+4HxEuT2dgqs15ErShqNQ8orYkng\\=392(?:\\?|$)" + }, + { + "hash": "0c4593291b946aa2f56eef68c277fe29dcea2b8c32343ea7a1eae787c9f40d09", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e7a0a2\\-72ae37c1\\-15d4\\-4384\\-bf84\\-a0a6671b4fab\\-000000[\\/\\\\]+HhpVhzINgyAKzIFms9ob06Ddhy0\\=392(?:\\?|$)" + }, + { + "hash": "c79a83446ff1a75031c809a0486e5f7af6664b3952cfa9af2f642da43d6a14e1", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30aec18\\-b0eea179\\-2d69\\-4649\\-b305\\-68b08bf17484\\-000000[\\/\\\\]+FM2Sv9erbnYgyuwJTgfJyZgTrwg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e98344\\-4994b30b\\-f89d\\-423a\\-8e01\\-fedbc9bc9614\\-000000[\\/\\\\]+8BI9jB1264dEi1voQX3bQ2P9KIc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f721e5\\-0988711a\\-909f\\-451d\\-85e0\\-f186d510fee4\\-000000[\\/\\\\]+vxm4Ee9rSQvmLJWW5DPZ_Gqi\\-F8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d95f2b\\-d7f0b54e\\-98ff\\-47b2\\-9549\\-1b8b8cf6f1ba\\-000000[\\/\\\\]+Y\\-Qc2MK2EFBmPI3AYwk6_GZIqEA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f6604e\\-4499faec\\-1dd8\\-48dc\\-a62e\\-75c7c020b91f\\-000000[\\/\\\\]+nhxJ9RtqtibHNbIm41035MzFnlo\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3086b91\\-220d5a2a\\-bc44\\-42ac\\-a196\\-05e3b35bd733\\-000000[\\/\\\\]+LQAc\\-rMibBziBGggGz8LI5a1y_8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d6a08d\\-c2b21f55\\-d441\\-4fb0\\-a42d\\-bea076912fe9\\-000000[\\/\\\\]+S8q3VTiN8DBVLES4VX1pUCkNI6Y\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2dc210f\\-7cdae2a1\\-ce61\\-4b11\\-ad7c\\-b98a476b5f6f\\-000000[\\/\\\\]+jyuC7194yZCFqO6Jf4u7n25ErgA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3174aa3\\-ef56b85c\\-8533\\-42cd\\-ba74\\-1b87fbf70942\\-000000[\\/\\\\]+qxHXoOAXXVTJndmWIAksAq2qxzY\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f5d75e\\-5f7a3ac0\\-50dc\\-47f8\\-a10b\\-06fe85b849fa\\-000000[\\/\\\\]+EdfOScsXaYk5geFVpNj7WdZeuxE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f58f4b\\-f945560b\\-b0c2\\-4dab\\-85d6\\-567a6d91b1c8\\-000000[\\/\\\\]+fr1Bi7FswG0UoYCneL1kwL5p2JA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3165100\\-4dfa6575\\-f0ca\\-4bc8\\-837b\\-2523155d4e0b\\-000000[\\/\\\\]+Uyj7hZ7Sz9ERjAbJG\\-p8LaO0J_M\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30aec18\\-b0eea179\\-2d69\\-4649\\-b305\\-68b08bf17484\\-000000[\\/\\\\]+YXqSBRu97QgzKTXtXseRV6ECxuM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e7a0a2\\-72ae37c1\\-15d4\\-4384\\-bf84\\-a0a6671b4fab\\-000000[\\/\\\\]+EkyyQk\\-l7o5bhCZYqa0S0XhVoo0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3165100\\-4dfa6575\\-f0ca\\-4bc8\\-837b\\-2523155d4e0b\\-000000[\\/\\\\]+p1OoPTTqfe\\-ErFwr1iGU0E4esoU\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e7f5f9\\-72508047\\-3e8d\\-45c4\\-be2d\\-d1e858b9d60f\\-000000[\\/\\\\]+HvJGvszPVswLf9cdVzpK2THOJeE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3103ff3\\-e40ed2cf\\-d420\\-442b\\-8cfd\\-6b77c5c90447\\-000000[\\/\\\\]+1ve3L1YQPPpCcCo9G_tx3f6NM7w\\=392(?:\\?|$)" + }, + { + "hash": "0093c2b2d7e44254027065e2265e26ebf9f1b76ea69422e33ae0d43e7f15d2f6", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d72ef0\\-3839512f\\-b2aa\\-4b6c\\-a61d\\-54d5d976ecd9\\-000000[\\/\\\\]+baYdNWF6YCimDYQZpOtqLnXDczM\\=392(?:\\?|$)" + }, + { + "hash": "3c0ae5337b5a862699165ae0d1e8a96626e01d9533347cbffde081debd89c338", + "regex": "(?i)^https?\\:\\/\\/robux\\-60ktopo\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "53b25017b648b3b31f53ec3352e152feda5bec1706757d15be1aed8da283f5c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2cb754c\\-7bc7c71a\\-4154\\-4610\\-ae4a\\-111bf6946da7\\-000000[\\/\\\\]+3czVWAiElFWJKlX7h4wFstXa640\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3174aa3\\-ef56b85c\\-8533\\-42cd\\-ba74\\-1b87fbf70942\\-000000[\\/\\\\]+5bhE15akVjZVSoagLMfVklbu8B8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30f87a2\\-244515c4\\-d681\\-48e2\\-b594\\-4486ae979e85\\-000000[\\/\\\\]+SjD2zJyrNRVN_YwIfyBsLclgCVs\\=392(?:\\?|$)" + }, + { + "hash": "7d0d62b8e95dbd1aa22fefb0ed01b133e3089764c6797e6bf5885abab9e5bd39", + "regex": "." + }, + { + "hash": "81349e555a93db7383157eb4a56deb2222bdcd92ca7f4e6292fcdafe37c48159", + "regex": "." + }, + { + "hash": "a8947ab7653909d5107a3a9cedbf425ac29ddedd72147412ec9661574650667d", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wjuvzy(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+vlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d0b6eb\\-591a67a6\\-686b\\-42d1\\-919e\\-c2cd1ed9b5be\\-000000[\\/\\\\]+VyOEl5nNzKtL7Vs2nS_dF0jlIyI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2cbf157\\-81fe6b7a\\-651c\\-4d94\\-aad2\\-cb858367b104\\-000000[\\/\\\\]+GzpJBMVgM\\-L1hnFHw9I3_R_39mQ\\=392(?:\\?|$)" + }, + { + "hash": "c605a4ad3733520cbb31568986212e4771d8e701df4e86aa63dbe8dfdc612e6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30f87a2\\-244515c4\\-d681\\-48e2\\-b594\\-4486ae979e85\\-000000[\\/\\\\]+iFKoNxpaRdKJudhv06fp_KB7iMI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2cbf157\\-81fe6b7a\\-651c\\-4d94\\-aad2\\-cb858367b104\\-000000[\\/\\\\]+SFVaOgHmK\\-YjX\\-4Bh6I6R2xA6Hw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f3b706\\-f6196b45\\-3fa6\\-4ecc\\-9df5\\-cc6bac33ab0d\\-000000[\\/\\\\]+So21\\-ve_ZjXtzuMyB_iIOBhYZIE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fb3247\\-2bd77fdb\\-4f0d\\-4804\\-9141\\-bc6d30928631\\-000000[\\/\\\\]+2tjcuGTgiGwfgsNrCm_Gduct01g\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+vlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d0b6eb\\-591a67a6\\-686b\\-42d1\\-919e\\-c2cd1ed9b5be\\-000000[\\/\\\\]+xw29K1TzYNxKsNUKFmGCAfVanZg\\=392(?:\\?|$)" + }, + { + "hash": "53b25017b648b3b31f53ec3352e152feda5bec1706757d15be1aed8da283f5c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9fed7cf8daf2aa9834a0b490a242777f4fd07488ee242784d7f2cded8f0b022b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9965[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7178de8861425eba9f8c0864a74c6ac5888ab99189a55c82104f3b74d1871b37", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d6a08d\\-c2b21f55\\-d441\\-4fb0\\-a42d\\-bea076912fe9\\-000000[\\/\\\\]+y3WDXZrlM9l2v5jPPoH9gLUDO_U\\=392(?:\\?|$)" + }, + { + "hash": "43eeecd876329396bfc59079077b297291d950d8e82f5f227ef64dd33a7dd793", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register47439\\?i_code\\=29271312$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ff2484\\-d46eda5b\\-69ff\\-4d7a\\-8790\\-3bae571fac05\\-000000[\\/\\\\]+zNXidrQQOwDhNTtbbug3Mh23AaE\\=392(?:\\?|$)" + }, + { + "hash": "d3bc45d810464f48c81ca230ceb82ccd7f4fecdccc6b798910d6af69067fd887", + "regex": "(?i)^https?\\:\\/\\/pub\\-b8daa5f29793463187e599ec05d98ad9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a4bfd770548da666fed62db8fc01c49d220eeec678436c19d9e65e558abfdeb9", + "regex": "." + }, + { + "hash": "8315a3d6e9f8f452b83b7ca47b25da303d9c92b542767e38c8df62c361c7666a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "21eb19197e8197ef2372f7d7963194622e1c7e23ae01461db4210001e87997dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+command\\-panel(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d62bf0\\-1c3b07a4\\-8055\\-4833\\-89d8\\-4c32b2d17798\\-000000[\\/\\\\]+vXcP2AK52LOCAkAt_I6lMBCELtQ\\=392(?:\\?|$)" + }, + { + "hash": "9fed7cf8daf2aa9834a0b490a242777f4fd07488ee242784d7f2cded8f0b022b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9965[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "43eeecd876329396bfc59079077b297291d950d8e82f5f227ef64dd33a7dd793", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register47439\\?i_code\\=76207935$" + }, + { + "hash": "235bc4d58fb495495c10255bdb17aac694a5b0b8ce9edd1b6e960a3dcddef1ad", + "regex": "." + }, + { + "hash": "43eeecd876329396bfc59079077b297291d950d8e82f5f227ef64dd33a7dd793", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register47439\\?i_code\\=99050300$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fb3247\\-2bd77fdb\\-4f0d\\-4804\\-9141\\-bc6d30928631\\-000000[\\/\\\\]+dtb_ENhXm1zJH29y_QFapl2LozA\\=392(?:\\?|$)" + }, + { + "hash": "35c2abff018e8deee35cc819f5f1966285c250c28c6bc40910ad299a32b14444", + "regex": "." + }, + { + "hash": "81b40e54d29a7524bdd858eccf20f561e32a0ecf5a54e5043fe65fe1496be4e6", + "regex": "(?i)^https?\\:\\/\\/meta\\-business\\-case\\-453ea\\.firebaseapp\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d5bff7\\-95d3d742\\-d9c3\\-429e\\-9bb0\\-b4698d9b99fc\\-000000[\\/\\\\]+IKeWphzUQ\\-lRfCSf61YXvn1iG8Q\\=392(?:\\?|$)" + }, + { + "hash": "a4115f3673b78e3f2bde02f48c8140d0e813e2a115e11570e82131180af57bf8", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f3b706\\-f6196b45\\-3fa6\\-4ecc\\-9df5\\-cc6bac33ab0d\\-000000[\\/\\\\]+60l3TTSoLXiK9Od8QWqFeFXfED4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e9dc02\\-9b8a05d3\\-069a\\-42a2\\-a550\\-20c0eae35d3c\\-000000[\\/\\\\]+tLQ\\-pQNr70tg2qppyI_5KHE56q4\\=392(?:\\?|$)" + }, + { + "hash": "bcb7c4f95fb95e2ee3cfe984009bca44bd34c4061296a020ee5102efd805d756", + "regex": "(?i)^https?\\:\\/\\/currentlymail1\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2eafdcd\\-97c926b8\\-82d2\\-4be6\\-9893\\-b45d509dbcbc\\-000000[\\/\\\\]+wMqufGdln3NhBo12p\\-oznBY\\-yzw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f2e019\\-21a79a91\\-50b7\\-444a\\-98d2\\-e776502a5124\\-000000[\\/\\\\]+1rZ6kbKnkfUB_s6EUVxaC_tthYg\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e304b12e\\-9fe342fd\\-4798\\-4d8f\\-9ebd\\-7657a69a4377\\-000000[\\/\\\\]+Z5lqu0N2HE0gHnb2BdVGQt9pyek\\=392(?:\\?|$)" + }, + { + "hash": "ba612220e8c79e022a3e270173898181b2e45f910a71f35024e2e9c74d769ac7", + "regex": "(?i)^https?\\:\\/\\/pub\\-9c86fd8cfe33465da14715631c68df7a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "19b803029818f7e481358e6bf5d89516298dfd0b50b6ca97c93c72f5cc441c6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fb3bae\\-afce18f2\\-ad66\\-49c5\\-aef3\\-d063c7ec9c83\\-000000[\\/\\\\]+Rx6Me2\\-K98CIYB\\-8fsL5hzsIM\\-0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30ed1bd\\-e3bc0efd\\-1fe3\\-481d\\-ae76\\-6f274be8b0b7\\-000000[\\/\\\\]+\\-AHaPw3soLc6Iqi\\-hc5iqJA7Cw4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d66bdd\\-44bfd546\\-30e3\\-40da\\-a8d9\\-a0e8dd90f5d9\\-000000[\\/\\\\]+rS2zWrVFoSS3p4t3yiugMUs9Fo8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3177c5b\\-877f828f\\-32e5\\-4429\\-aa2f\\-8f3d8f66564e\\-000000[\\/\\\\]+uvQkZTVh7cor5\\-PWrv5xAjPOUF8\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30ed1bd\\-e3bc0efd\\-1fe3\\-481d\\-ae76\\-6f274be8b0b7\\-000000[\\/\\\\]+ByXU2q7gyjYX8RUockRnuWrocsc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e5d79b\\-853fb8c9\\-c224\\-47a7\\-9fdc\\-25da002f2a64\\-000000[\\/\\\\]+w9J2bK\\-DfCLrnRZtosjCxDJQInA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30fb779\\-f0db773c\\-7512\\-47f8\\-9dd4\\-a5558d2fa064\\-000000[\\/\\\\]+wI_bWThShcbGMQMfUy9ETB9OS3k\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3177c5b\\-877f828f\\-32e5\\-4429\\-aa2f\\-8f3d8f66564e\\-000000[\\/\\\\]+dov5DFX1Q9s6d5U26nrOwheN0CA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f77bec\\-613bf0e0\\-4d5d\\-4afd\\-a7ec\\-d3240e113f38\\-000000[\\/\\\\]+0G2yHKTx2\\-TJ_DHfh_LJroKxQpc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e453ea\\-359ef5cd\\-172a\\-4c3e\\-95a4\\-aa28982b45d7\\-000000[\\/\\\\]+wbeWQMsvL3_PjUyzIA06ESkZK2M\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f77bec\\-613bf0e0\\-4d5d\\-4afd\\-a7ec\\-d3240e113f38\\-000000[\\/\\\\]+fKNHLSxX446sKk_11YNWcf\\-3YFk\\=392(?:\\?|$)" + }, + { + "hash": "e9eb92d1588bb090fb77d6e172a820af6dc2fda72a22a1a5eb9ba76ac6248d3a", + "regex": "(?i)^https?\\:\\/\\/osamabe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "99bc72ccdd3311b44a06ec7bd046aacb4f45d19c0afaa18ed03d6df26907fb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3c614aff5c1e9be09fed2083bbbe75321757e22630e60edec253df9d08893dd3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c\\=nMA[\\/\\\\]+$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f18e8e\\-e1bf8295\\-031d\\-4575\\-b7f2\\-3ed7fd7e146b\\-000000[\\/\\\\]+YRCXisZ\\-OtkCppQa21eBVNAwG3s\\=392(?:\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+l1l1l1l1l1mass\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2dc9dfe\\-26b01890\\-0e77\\-4417\\-b9c5\\-ce058de0fc05\\-000000[\\/\\\\]+u9tAh0KkMRNGIgreg537NNgpbH4\\=392(?:\\?|$)" + }, + { + "hash": "cd5048940409173064ddc613af636109b9f5928ce2d89059fa89deffb19799d0", + "regex": "(?i)^https?\\:\\/\\/osamabe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8bfc0c36a521f2cb7a5fd0a7320c7546c51cd6ac0eae31b1f948efb25235647f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sj(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a130eba1a044bb4f941ff7fefca7b7e36cfa4ca609e6d9edfb4560b805895ac", + "regex": "(?i)^https?\\:\\/\\/osamabe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "24515522e184d2a70588b125558dcae5932634c69dab61ebc58429befdccbc95", + "regex": "(?i)^https?\\:\\/\\/osamabe\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e453ea\\-359ef5cd\\-172a\\-4c3e\\-95a4\\-aa28982b45d7\\-000000[\\/\\\\]+zSwflalvVmlxXnQu31sxchTIZKs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ccee1a\\-5625d2c5\\-216c\\-41c1\\-9806\\-bc10f58aebde\\-000000[\\/\\\\]+PPGiSYI0zxBCbKFkyiFShUY2L3U\\=392(?:\\?|$)" + }, + { + "hash": "f4c6d9c74c8e8f7cbf89621dba2dad8f47f80093240ce28f8b886e726d222638", + "regex": "." + }, + { + "hash": "21eb19197e8197ef2372f7d7963194622e1c7e23ae01461db4210001e87997dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+command\\-panel(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f2e019\\-21a79a91\\-50b7\\-444a\\-98d2\\-e776502a5124\\-000000[\\/\\\\]+hxgDsCaSIX6rbDp6oUKalvoQa7g\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d66bdd\\-44bfd546\\-30e3\\-40da\\-a8d9\\-a0e8dd90f5d9\\-000000[\\/\\\\]+1DX_5adMmMVyIqTZS26N7ykQ8ig\\=392(?:\\?|$)" + }, + { + "hash": "aa67f70d2d90cdd2f0c0510bbd85b76cc03788bf489de8cfdbed5fa0af920a87", + "regex": "(?i)^https?\\:\\/\\/osamabe\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "308daff3044c3c853dc41945ed2a2d274ab07637e3ecd0352cbb12e464ac7c17", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ccee1a\\-5625d2c5\\-216c\\-41c1\\-9806\\-bc10f58aebde\\-000000[\\/\\\\]+Er2bpJiUQj6hPQok1LeGi_K0wcc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e9dc02\\-9b8a05d3\\-069a\\-42a2\\-a550\\-20c0eae35d3c\\-000000[\\/\\\\]+P9VQdc3Lst1s3ywxsfqoaruVGkk\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e5d79b\\-853fb8c9\\-c224\\-47a7\\-9fdc\\-25da002f2a64\\-000000[\\/\\\\]+2N\\-B6nB5m13xIitxQafOi\\-s2zK4\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e304b12e\\-9fe342fd\\-4798\\-4d8f\\-9ebd\\-7657a69a4377\\-000000[\\/\\\\]+Pcm0yqyvH2SOeKTgJ6Nt0icExII\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ebd721\\-a8fb1f5b\\-bf0e\\-4489\\-ba6d\\-188618474c54\\-000000[\\/\\\\]+qhHJv1xshx20Yeo6gMwJYd9DzBY\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f6becf\\-7fc30a78\\-c892\\-466c\\-ba1c\\-c8073b994cea\\-000000[\\/\\\\]+PYl58Dn_BxbpYm7AaG2a1XjSS5E\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2db1c63\\-70fcbf12\\-c85b\\-4b70\\-b379\\-7acabb52c843\\-000000[\\/\\\\]+BRKmleu8dS57e7qoGR9ZXcIkUiQ\\=392(?:\\?|$)" + }, + { + "hash": "0f95fe17a8fbf55a38a280f13bc20b7493866dbeb9185c8fb4b46f082bac9700", + "regex": "." + }, + { + "hash": "a6e38bd44d7616eb38ac416b3766f6020d5e8e68c2293dbdc43af57c890e2558", + "regex": "(?i)^https?\\:\\/\\/silver191629\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1k9RTD\\-2FAYAcBCSSOTXqTcaf4oeBareuqzhwumMFNMB8GRx4bkqjzwaYtzymxyXo1Wv0hK0puln6ytaye4lD\\-2FJQR\\-2Fx67ykynuMKv21GlKl7Ji24ip0QuREWI3FToSWbjRyTm\\-2FROQyGveZXzslSeJk5t6EDazZt\\-2FiV6cHI\\-2FBiHpgP9qnXMa5B3W8qONtVQaRynlFJWtKhPcIOaA9vekPWgRSjpoTuATpsQokSa9KMy1nYBzVdXpkxDV5MHnxCvPxMLmaP1by5FE4YDvNALR79hPl\\-2F9HamJedsiWezvKgxtLaB3uHWtIaAv\\-2FXFfamLBEgCzbvPCh\\-2B9xolyZAR7yvLIdKSCYV17FP1zUP6he\\-2FiBbwrWmA\\-3D\\-3DnD1L_jrhSChhvYHxGr5jUQcqS\\-2FcG8KAdItonoD9TFuXbke\\-2BZaPNQ77aZe2q4857sqw\\-2FwCdkmA\\-2FvCVVEiaQGaWPhY3IP8DzUbFUCTfANQehI1lVY\\-2FUoHg88WppIh3ctXxmrxa52b0ZD5NiMC7qoraz09D6XMeXl3n5jaBzBaPfALjfGXCZJIu3YLox0DsqIPWinwGJFx\\-2BToWHqDDdZgU2gyqPgKPz30om0w2BgZbkZy4xGIGF3JPJbOesMgi\\-2Fngqy4QejCwyUeO2e9O2X80QR\\-2BZTcepH3q7wXgA7phPev2OWAnKzSGxcbYEiVB21v8sbMnELaHRKR\\-2BRewusuyWtcVMIdaThw\\-3D\\-3D" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1k9RTD\\-2FAYAcBCSSOTXqTcaf4oeBareuqzhwumMFNMB8GRx4bkqjzwaYtzymxyXo1Wv0hK0puln6ytaye4lD\\-2FJQR\\-2Fx67ykynuMKv21GlKl7Ji24ip0QuREWI3FToSWbjRyTm\\-2FROQyGveZXzslSeJk5t6EDazZt\\-2FiV6cHI\\-2FBiHpgP9qnXMa5B3W8qONtVQaRynlFJWtKhPcIOaA9vekPWgRSjpoTuATpsQokSa9KMy1nYBzVdXpkxDV5MHnxCvPxMLmaP1by5FE4YDvNALR79hPl\\-2F9HamJedsiWezvKgxtLaB3uHWtIaAv\\-2FXFfamLBEgCzbvPCh\\-2B9xolyZAR7yvLIdKSCYV17FP1zUP6he\\-2FiBbwrWmA\\-3D\\-3DVAEm_LU8ytjHN8PdMeQXyPig7qpGHNhrbmo3vw9fcUnjXq\\-2BqM\\-2BAfEsWhIokH8y9O4I6oACM6tYZ1Rl8bq5AdHyKAM7lFQwPemw9EQevwV7c8r9iYFE5bnpliuz1Drdz5HkElOD2ziQuzIeCS4b5WrtSAs8ONUuHo8mnZnklpETS9aWQuQJRJFdQCzupk1jtCxv4092BLw3nKqs92ycXwhuX9WkdWOVxCn\\-2BPYRNmxX4HNR7RZiWDlOVEX1nyLLRyQRfvI\\-2FVpxg8RdWa9NlClFq0XlCV5d\\-2FLHbbWlBnQBSe7g5FSHJZgs02BtpyypNUGEaOt0keoQKENWVmNxbBMN9\\-2BoKBtpw\\-3D\\-3D" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f6becf\\-7fc30a78\\-c892\\-466c\\-ba1c\\-c8073b994cea\\-000000[\\/\\\\]+cawhF96m5_bFEo10ZfipvrR4gXY\\=392(?:\\?|$)" + }, + { + "hash": "63757a84c7b460c5ebb045e7eb707a62343858079202109b72f7a338090103d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+l1l1l1l1l1mass\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fb3bae\\-afce18f2\\-ad66\\-49c5\\-aef3\\-d063c7ec9c83\\-000000[\\/\\\\]+BjWjul7SuZGW7qqwzhCEucPcvec\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e9ca50\\-1c64ebf2\\-bd33\\-4014\\-8488\\-cf93cfe9776b\\-000000[\\/\\\\]+0hVbDgS2tXCwpOYM6waZSfAvWEs\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e31852e6\\-ef0f7016\\-39c7\\-4d31\\-99f9\\-d450db5e49aa\\-000000[\\/\\\\]+f_1jjtYN3o7rm0OdJVXE\\-d0R9zI\\=392(?:\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fl1l1l1l1l1mass\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1k9RTD\\-2FAYAcBCSSOTXqTcaf4oeBareuqzhwumMFNMB8GRx4bkqjzwaYtzymxyXo1Wv0hK0puln6ytaye4lD\\-2FJQR\\-2Fx67ykynuMKv21GlKl7Ji24ip0QuREWI3FToSWbjRyTm\\-2FROQyGveZXzslSeJk5t6EDazZt\\-2FiV6cHI\\-2FBiHpgP9qnXMa5B3W8qONtVQaRynlFJWtKhPcIOaA9vekPWgRSjpoTuATpsQokSa9KMy1nYBzVdXpkxDV5MHnxCvPxMLmaP1by5FE4YDvNALR79hPl\\-2F9HamJedsiWezvKgxtLaB3uHWtIaAv\\-2FXFfamLBEgCzbvPCh\\-2B9xolyZAR7yvLIdKSCYV17FP1zUP6he\\-2FiBbwrWmA\\-3D\\-3DDx4N_cl51rcqZho8wQGtFWsVjEtVTCG6SELC29nDRzidN2cjcpXNPIYBAb\\-2Bpm\\-2BdG\\-2FvF3YE9GET\\-2Ftk0MUtIbV1DVfOw1\\-2F8rqMzVAaC4\\-2FFCOusGMyyKbbW2sgimYfISWe\\-2FRmkaioNDulOjmpryJhdCjLXUnrHOC\\-2B5C2Y2Y78I3U8sPX6H6fl4XTd3zeIqwGlAz1wNjMqQDm0UjBYRs67l3MX\\-2FYykh\\-2FP\\-2FcVdjE6QnKimvficTLWYqYpU\\-2BJ5tIFH6kviEx8uZENF4hNetYLAyZ2qnbmmggNs2OKqfRgzw6J7Dj2Ur\\-2FPbffJyx4ypTNnJ\\-2Bdk7RLRCLxLLBi6woBmBOKglh653oaA\\-3D\\-3D" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2eafdcd\\-97c926b8\\-82d2\\-4be6\\-9893\\-b45d509dbcbc\\-000000[\\/\\\\]+XNRAYZSJIpCzMFlHkrYMle8W9A0\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2dc9dfe\\-26b01890\\-0e77\\-4417\\-b9c5\\-ce058de0fc05\\-000000[\\/\\\\]+3b3iXoOl\\-eCDx82Xk4Ro98ncPsA\\=392(?:\\?|$)" + }, + { + "hash": "4f76456a2172ef84e0a0d36c9b503f92e57a912f682791452805309fc7cb06f6", + "regex": "(?i)^https?\\:\\/\\/osamabe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+l1l1l1l1l1mass\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e31852e6\\-ef0f7016\\-39c7\\-4d31\\-99f9\\-d450db5e49aa\\-000000[\\/\\\\]+p2yuUIe8qtq1w0vcJUIQYfMRBSI\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2db1c63\\-70fcbf12\\-c85b\\-4b70\\-b379\\-7acabb52c843\\-000000[\\/\\\\]+6do4_yWSmPwuwW_6LOc5UB\\-snFQ\\=392(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+clktrb\\?idp4169\\&redir\\=http\\:[\\/\\\\]+bahmciupkyedvqhr2jsm6fs0uh7w7kg4\\.maxprocarpetrepairbrisbane\\.com\\.au[\\/\\\\]+$" + }, + { + "hash": "9511226b23223fce4e4a9786f363f810d923d442a1fa3547e286407ff0952ca1", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f18e8e\\-e1bf8295\\-031d\\-4575\\-b7f2\\-3ed7fd7e146b\\-000000[\\/\\\\]+9VlWg8oy9hPg8_k8XqNbgaGOTBA\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30fb779\\-f0db773c\\-7512\\-47f8\\-9dd4\\-a5558d2fa064\\-000000[\\/\\\\]+\\-oN7WTneTk8LfPBr9NXWoOJM3lw\\=392(?:\\?|$)" + }, + { + "hash": "0aaa2cb68f6e8ab5301014b24eb6de5b7e5ffc489f9e9cffcc35cdada2ec6e2b", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e9ca50\\-1c64ebf2\\-bd33\\-4014\\-8488\\-cf93cfe9776b\\-000000[\\/\\\\]+xy_EuIYkucs\\-\\-xqUDBPOoGXI4rQ\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ebd721\\-a8fb1f5b\\-bf0e\\-4489\\-ba6d\\-188618474c54\\-000000[\\/\\\\]+DMPrHZIy_TRZYWXA6DkMpjPfYBg\\=392(?:\\?|$)" + }, + { + "hash": "187e341372390dadc33a5c01bef1ea205cdcb71305c45eb3fada692cfbb38c04", + "regex": "." + }, + { + "hash": "c84111cbc890c9595180c1e86cd2bc2d9172d888569e4a8f794059a69eb05604", + "regex": "(?i)^https?\\:\\/\\/osamabe\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d3866c7d347305370a61ea979e4b54507ae306ef9f185c43dda8d1c9b65e23ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+TTCXCX[\\/\\\\]+home(?:\\?|$)" + }, + { + "hash": "f6e99f52165e8523ab3ceb3a7931e425282159581b2759db60aa1b020cf62cd6", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e6f7e2dfda6b18eba4e5e9abb6546f9ebd82b73769e0cb987e622f3df810c404", + "regex": "(?i)^https?\\:\\/\\/hnrwa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2c74835c6edf122a4a0b8bcb09a144705679fe8bd72ebe9aee202514cbb64fa9", + "regex": "(?i)^https?\\:\\/\\/qsdq6264654\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e4c19355df82e486ba6c7973cabcbe032476ec44741d773c667690fb6683de70", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d15480ba1733148f6baa1e6535f014f252ff89df2ff8f8d1cf963e5bac10fc4", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7b733e78f6bb33ad9379feb1b2791cbb4e90a4e9ed02217641a97aac37105541", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "64296fdc1cbe0e885e42a151265b7810339804003ef2b95e097a82c40c1c46a2", + "regex": "(?i)^https?\\:\\/\\/heeeeeeeeea\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14b556f2aa462e13bf91253bb161b0bd6058e793331a90603e65cf273703d00a", + "regex": "(?i)^https?\\:\\/\\/qsdq6264654\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f5bb3f\\-e56d22da\\-c9a5\\-44d9\\-a405\\-cf70e70f5f73\\-000000[\\/\\\\]+Ht8PKg50b2GEAHjEUN5irykTNnY\\=392(?:\\?|$)" + }, + { + "hash": "5de0adfac903ea76fbc8b23abd540bddad28a2e1b594bf4030d90d4dcd007404", + "regex": "(?i)^https?\\:\\/\\/qsdq6264654\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ea812300e4ed90ccc0144e7540426cfe12fb8049fddc0361f1697c04d6a2d094", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4707fa27e794c2adc5e00fd2dfee35620480086d911be50cf1bc48c3df02251d", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "223c916a02adcdda6ccaadd2d8511f7a7c6e5d5907258ca23ef1485577211298", + "regex": "(?i)^https?\\:\\/\\/lomunarydasecrevada\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3f64fbaaadeeac2169d2f8db5dbd004515093f5d9fd68d5e3c12c9ee2339da6c", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8ba19e6d89c670b395b1c0ac72309bd9946de95cb288f48be8babc701607d4e2", + "regex": "(?i)^https?\\:\\/\\/swingpasso\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "93568a19349cca6acd5c310c54b42615abf114d00ebdca24d1588a2db3ef136b", + "regex": "(?i)^https?\\:\\/\\/sestemfor9a\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "df62ea0761c1aa8b4da21d50daf1679d928922a3e2532f875fe5e7693497d24f", + "regex": "(?i)^https?\\:\\/\\/paxfuexchange\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bc0da16154da0c895db5c5bd3634ceab36f08dac059581bd8b1e2567ce0cd7f8", + "regex": "(?i)^https?\\:\\/\\/ffinance\\-updates\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f9f64074a28bf2841e70a6c13fd156ad00df1f477385de09c66267bcd0630", + "regex": "(?i)^https?\\:\\/\\/swingpasso\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3e8335804b8e22d715625834a0215521f2878847e238f5f63da7e70ae0223797", + "regex": "(?i)^https?\\:\\/\\/ffinance\\-updates\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0a2fd5f5d0a8d2358bcf93531f95862aefa9cc124cb86994cb3f8ddeb139965c", + "regex": "(?i)^https?\\:\\/\\/bafybeieaijx67xd4xse6gpwr6khjrd3jgjiw7j2ldzyfmgeizcdzdmgihm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "852e16cdf6b2af3b438996d4ee03ad5737e66074a07c446c3f2fcf29b05b1c28", + "regex": "(?i)^https?\\:\\/\\/heeeeeeeeea\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93992f9639e506a0f233c0f8f022bb1156f47e693a7cf9ee21ea87e20a0fa62e", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a008f84f9e04f554d8ff97497dd2bd982684827a8287adab082f7648c458d25d", + "regex": "(?i)^https?\\:\\/\\/appleipad2colombia\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5b366ac5dc96609d8cebbb23f36f4981661f828633c8ee1ceba231781192df4c", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7f9d511a5fc9385329c12b00f329312c95bd01a572cd9018fb4372e5ac9cc2cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+security\\-check[\\/\\\\]+signin" + }, + { + "hash": "a0e156be0deb760a8e07e774f5a32677c5ca0668f4777b80094a2d9fcdc8551c", + "regex": "(?i)^https?\\:\\/\\/paxfuexchange\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "51ca8f630d7e3502bf61368f1925083e3587d8f5e26f4387c2747ba359cbfd95", + "regex": "(?i)^https?\\:\\/\\/paxfuexchange\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f2ecdb9e8d60813385ecca64180ccf34499951217cea6f6ba8317ff4f9f1103c", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "52a37f438efe457cfb4aa2f42ee049cccf265d4e0ff4f741258af133a9ee3ff5", + "regex": "(?i)^https?\\:\\/\\/qsdq6264654\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7e098346a4c6335e0c5232c5996dc9e0f94ad3f5c6deaf329422e9ce106d4558", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b2981425a2cfe099f0d5bbf76a72e40f774555fe11995d77c3d98bf2f3fe85d0", + "regex": "." + }, + { + "hash": "4bcb4128b0c10978d582393a554baed1ea1ac97124627d57dd382892adb34d64", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5138765083c5e48cba8867467b2ac0fe483bd4b93fed2c2d55af92350bf88a1b", + "regex": "(?i)^https?\\:\\/\\/wehackcomrobux\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a18c74c6f3ab3de12a452c30bae0e93dd51380205a771c1d429d78f50116a017", + "regex": "(?i)^https?\\:\\/\\/hukolmsnaeaustasodcalsda\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "76f356a38fe6395e3cc73a4d441506fb0826dcad0d62ed976320b90b0cab756d", + "regex": "(?i)^https?\\:\\/\\/qsdq6264654\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d80d96cec455008baea2a1e35a1fb6d1da753c8ea7af8a5f6406f794732da205", + "regex": "(?i)^https?\\:\\/\\/lomunarydasecrevada\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "086a27a4617aa5266bbc2e9d635f6c3cf8890ad1b62bdda0c712bd75886600c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cf1e97881f96adbc2c52654229d33bf4e1b8cfc2e68ba2097b091277ee5797b", + "regex": "(?i)^https?\\:\\/\\/qsdq6264654\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ef12eb\\-153d63a1\\-379a\\-46c9\\-b26d\\-37b212bd951c\\-000000[\\/\\\\]+zkGFudaCFX9JHynCzc6BWVRaztM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3044999\\-e5b0870c\\-b36a\\-44d4\\-a668\\-3695dff85d77\\-000000[\\/\\\\]+tRzqjQ0HoUX7ucNl89wj7JlXPRc\\=392(?:\\?|$)" + }, + { + "hash": "945b820a1702f341656432547a8e98788ddee0cc849f9092ec69b36eeab65795", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "411216aaf2fd66a1e90981c6fa59fec77e5cac40957cdd2e735b4440a1dcdc71", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ead7d250d05ce28fe0eeef0f2c9388ce81e627d5cc57008cf48f6d80ba290491", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "76dee7edc2a91ffd93ec353c4e1eca17f5d9a10e81624cd04f6c28e8d7653e28", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "09941ba83044dd8a9f831441d613046cceee044b3f4f5eb13ac4e038b265cf30", + "regex": "(?i)^https?\\:\\/\\/lomunarydasecrevada\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2d42dc7ea176dc442be8a3a586b8c4a3d9ac2f813542164bba6f2c7f89e567dd", + "regex": "(?i)^https?\\:\\/\\/hnrwa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "73f67951f271617a07922f635f5fc01ea90697a94531de07e6b0acce34cb7a45", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "08a5a624afd8c1ce600da34efdc9e0cc338d6814d17d8b7ebaa7a48049e71b92", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f009be722df5cca86aa322c13227acf18771cce0887beb11a232d031e5dfb", + "regex": "(?i)^https?\\:\\/\\/paxfuexchange\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "582983603f0da0dc034125142c99f4d2a8499d2246453e8983c51020af73917c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "ec76df3744e0abb0b728e8492d9a4536e767b386f208989ef4b4847bd8749289", + "regex": "(?i)^https?\\:\\/\\/sestemfor9a\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "45837bb860c93ccdc3a0cadb8054cb63928a27fe1aa04786ccd51a48517a222f", + "regex": "(?i)^https?\\:\\/\\/hnrwa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5276fd775dcc74ee7475b7c02775f324ff05829515bbc9fc7d7e393f35caa6e0", + "regex": "(?i)^https?\\:\\/\\/wehackcomrobux\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "857dc41657c9ade1714f2fc817aa009fef3d7dde81361b77c56c1a7b4d947033", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a0a7b093aae0889387e3834e2a7013066a67e36407e9053a4958398ba113e244", + "regex": "." + }, + { + "hash": "090138140564afb9def03aa6d1328a7934ae1f610448f02f06df156455a915f6", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7ecfaceecf3e403135d364c3b378f6b0cd279a767b7e51117f1d885e3ff477c2", + "regex": "(?i)^https?\\:\\/\\/lucas\\-nascimento1809\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c9456272282c826b5ee030b9a894e95411e4f5d99fb5d76573e64468716e1e36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9963[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "73a65526221469a35ede25eff02d4d0274ae95a40ceeae51c868701eab89c14a", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "779b3f2c198dd8304736742a44687fa62b643483725552e5fce18882f795c4ce", + "regex": "(?i)^https?\\:\\/\\/sestemfor9a\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "85b021a5cd26e06fb8aeb4462c6f8e0281b782bf0e32d6d97efd332385cd2520", + "regex": "." + }, + { + "hash": "9151943b15eddb74c9fa73cd18ec01b73366588a4243080059989c76140547be", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "18cdf82b4bf115f057e8445e81e0e6b9e8a83e5c29b5f836d8e660c484debfe9", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6f380cd1091f184569cd43c06db5314ce5ca6091e6f8ed7119ce0744bdbfb74b", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3e5d5110524f903d7da225712e0be91b470f2bc180e50028ce61df591407a3e3", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "df94898c419aece9a91c18933f1480892188d5ad1ba7aa73997d473f0ef855ed", + "regex": "(?i)^https?\\:\\/\\/ffinance\\-updates\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1e35c52d54e8177e939511bd3c8ff685c1690f46d7763f8715256bb94efd5ec7", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e95e0252255c665348af137ca8d1553670d9f2ef4bb2de3d9908b1af259405bf", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f606c2ea8f8538d9247702889455c884e533fa959f26cfd8ec1562501c0f97b2", + "regex": "(?i)^https?\\:\\/\\/paxfuexchange\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9d307bae69f13bf83d32bd302510a249dd5ae4c103f92898f88555e80071de2b", + "regex": "(?i)^https?\\:\\/\\/swingpasso\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6555057d98d4b1c5f970e131d4ab5e391269ea1c5f984c8ee5f750db3eb12ab2", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "28f8153457086a7e9601ef59f7d72d57be8c4dbac88118189fdbf33904188665", + "regex": "(?i)^https?\\:\\/\\/lomunarydasecrevada\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6e259fdea321681178dd8c0d7f04a7de299c2b54a05c89205f96e040cabd7f62", + "regex": "." + }, + { + "hash": "6d75cdada33e01e8ca2bca51b124fbf07ccaba75790428f3b5fb585819a2431f", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f2aadbdd57ed5fb172dd2f28a7973bc7b83dac998ea45bf62d02ea6bd6f6d58b", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "942d050bed0f2e2a0b0099ef94bbcca25832c513e0272e3fad35c05fcc322144", + "regex": "." + }, + { + "hash": "a8fade9f476849252db972f010fcc04fa7923a5c855dccbf38b905f62caf17e5", + "regex": "(?i)^https?\\:\\/\\/swingpasso\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "661af1db4c0b4cc4b3fd695faa13136843fbc04fc58e52a5fb4403896f031b36", + "regex": "(?i)^https?\\:\\/\\/wehackcomrobux\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8aed39c07b8ceab823f5e390bc63339c33f0259780136257233d3fc717559c64", + "regex": "(?i)^https?\\:\\/\\/qsdq6264654\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "da18584a4af94b8a71990ec4b06afc538327efa0d47a40c60cf59eca8e7577af", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "52a5c02085ebc0b273b86c7568f45ce78904ef2c3078d729a2490026de9e0bc9", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bc39f09f18338737b261e6845571964399c3127da057073a5f047e3de67780a5", + "regex": "(?i)^https?\\:\\/\\/pub\\-8f2cfe6ba8a54faa865012697c3bb209\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3044999\\-e5b0870c\\-b36a\\-44d4\\-a668\\-3695dff85d77\\-000000[\\/\\\\]+u_kaO1bzwo0GihtQ33JpPM9DH0o\\=392(?:\\?|$)" + }, + { + "hash": "7979b945146ff7b6ed1a22ab81c6c387c1571f8253adcc32d269906fec8b20b6", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4b2ecf17bc4623137cbabe333f3006b3f4f869fc64bedf12664147fa90b4e4ee", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c9456272282c826b5ee030b9a894e95411e4f5d99fb5d76573e64468716e1e36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9963[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e1c7b70e10a6dd8ddb731add3c2decfb869251aafb3c5114269fe56ff4ff1874", + "regex": "(?i)^https?\\:\\/\\/hnrwa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "485f906ef18e892cc28d9b434bcee1e7f7f566035497d7298589a0257e1a53ff", + "regex": "(?i)^https?\\:\\/\\/sestemfor9a\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "12315cb3622cf953b1499b03909af12e631e87b40ca5fac87668246666fc6ab7", + "regex": "." + }, + { + "hash": "6f35ae5781f65e3c38b1188924ec2d337a578e2f1d86c3993384a326139f2927", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e9eeb6cd1ca2f5e775e50025a4d77f337d97216e129296b9bd5d5d281f26c143", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4a937b462dfa99a636a77629eb2c8a758b027bca6a455fa8ec208a347300c8d8", + "regex": "(?i)^https?\\:\\/\\/lomunarydasecrevada\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2a780ed31cc11803c7220b6b201864206c57bf3620ab13004d799221331a33fe", + "regex": "(?i)^https?\\:\\/\\/www\\.booking\\.com\\.alert\\.69\\-48\\-179\\-240\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9d65b42b127766a2053969bc90d5cc1a7d1998f160fa25aa9042f748d8a51fe0", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "49ba67e1cfa9db068ebd01a06aad57de450f3498e0b8a0c2fc94b9caa26a5fbe", + "regex": "(?i)^https?\\:\\/\\/ffinance\\-updates\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6ee93ae06840063d1ca60d467f1f56d37bd60055c5d8b7c3aa5c85971128b56f", + "regex": "(?i)^https?\\:\\/\\/wehackcomrobux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "29f69438854581592dd5258f348ff0faf4408c41d10eb193e5e2d8b0f866d40f", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c5a61f18ddbe856a15919086ac40a177b0390d3b078a208460fadba18d194773", + "regex": "(?i)^https?\\:\\/\\/wehackcomrobux\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e0ca30b83a7e7898092a6fad44c8bff8019c44ac08731c30a28624fac990a08d", + "regex": "(?i)^https?\\:\\/\\/correosqg\\.top(?:\\:(?:80|443))?[\\/\\\\]+cr(?:\\?|$)" + }, + { + "hash": "6f3b98f29624c82ddc663c78ed22c2711ffe45b88ccb4e361835e689ff2db05e", + "regex": "(?i)^https?\\:\\/\\/appleipad2colombia\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6e7e94bc2a876adfb2d5efd496124bbca786eed146e1161a828913fa4ced468a", + "regex": "(?i)^https?\\:\\/\\/paxfuexchange\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a85ebe52d35bdb97d3ef8728774d35494d31538ee17ff4645d7353d94850af30", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1a7ae0a773d28876529c8aef544cb3738f269cef6c94ab85a0badd92a4741b9d", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "059893e5dcb27abb73de9b16f025844daccbc846acfd04cd988f8489875b9307", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c2002d5c9d86df51b1fd09162ead7df0cf7c8e4f37d66771babd99c893052c8c", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "99998e0693bd7ca6653ed02a38ea25caf45c201a54f36d4e68949784cf7b1aa8", + "regex": "(?i)^https?\\:\\/\\/xn\\-\\-jlqq9ijviq2sg15b\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2a780ed31cc11803c7220b6b201864206c57bf3620ab13004d799221331a33fe", + "regex": "(?i)^https?\\:\\/\\/mail\\.booking\\.com\\.alert\\.69\\-48\\-179\\-240\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6319b6a6955296b551d9617807d84ff86c4ff328448b39280707273535f0d643", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1ce62205cfc677ca78b832eb091f05c704db74505397c2213cf0db9edf108bcf", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "701449106fbd43bd688835e0bcbb7d7cf8d96f6c9d81f1252d77106fd06f748b", + "regex": "(?i)^https?\\:\\/\\/swingpasso\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6529a750cf96d2fe46d327c4b291ed6c35652e8a0967afc7d3697ae1a356108d", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5f0805c831dd576e0ed0a2eb448c1f936ce25b4aeedc988e6f8c081461b2fcb3", + "regex": "(?i)^https?\\:\\/\\/sestemfor9a\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dbbfc81583f598c5ca1d829257d1523fe456d7e0017593cbd8268daa97b06b9a", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ef12eb\\-153d63a1\\-379a\\-46c9\\-b26d\\-37b212bd951c\\-000000[\\/\\\\]+lANJmEEq_UGmHwz9271rT8bqvOY\\=392(?:\\?|$)" + }, + { + "hash": "485a134512dcf9cf83d7f2fcdd39cbbe5534b81a236e2c267fa775591e79208a", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "31bb18420cbe6cff15b8860e23407ffe2ddc312ba13f67f168e45fd2a1ca7d7a", + "regex": "(?i)^https?\\:\\/\\/lomunarydasecrevada\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7e2a83927e278e2237907976fa00f220516476f7da38787d27cf2bfcb0615c26", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "aee0bce8b0af6cdc4c57e4e74948f617ee5a70c1e67fbbc799227d52d1b7ecba", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "921e94ac760ceef8f5b853261b47a3dfea09dd89d03b1427a12ca89de61726b6", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "36b1be9c1760be7975b5c4648b44c58d10bc817f975b8f5b8ba8fe4e514bd500", + "regex": "(?i)^https?\\:\\/\\/steventodd769\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bfefacbc9c119b19971300f0ae168fa454819f8f5a3bf612bc2569e54a325c59", + "regex": "(?i)^https?\\:\\/\\/paxfuexchange\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e0ca1d3ad6c1ad7c2032685fee106bedfdbb92e2c512a5602ab0e110c562d8d2", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bb9cf8bb5381635f4f24dda670fcff7b950a799e0d66144f72931531a5e8f4a6", + "regex": "(?i)^https?\\:\\/\\/sestemfor9a\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "00a72614104ae8c0f53ffd22ee61bbfe0255657e7d0b7b774af0c8c84f4841ef", + "regex": "(?i)^https?\\:\\/\\/hnrwa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f8d444923fcf1df77b19bb695d42531ead5abf237264b5a339d4d8da3488f30b", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ec367f\\-774f8392\\-ab72\\-4673\\-8c1d\\-d816824af511\\-000000[\\/\\\\]+5\\-GBqmRE\\-A8WiZp7pSCLMJdZT0A\\=392(?:\\?|$)" + }, + { + "hash": "1594eb1777abed14e1bdf4329bd074decadcbbddba9a6866430f5c6026baa7f7", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9646f9a12bac663630e1fb3e9ecae3e64dc6a3d7f689836eb2a6dce9184d6828", + "regex": "(?i)^https?\\:\\/\\/sestemfor9a\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fbc879c61130f806d937cde44ef37f9980211ffa70b683fb1c5e3b6964d4b169", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a7ae55059d05396bb6ca8f04df99393b756f0902079321a264dc3c0e67b37621", + "regex": "(?i)^https?\\:\\/\\/qsdq6264654\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "864382798c2b5c75c798bac48fa7039c0b8bf9cc1211b87d55d75bfcf881ef01", + "regex": "." + }, + { + "hash": "460d0aace72969627f1e2c3b92a1535879a475bea6fdcefbe0d6d2ea56f7bc04", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "40ff751cb59932d499606abfcd4b8b28c21bed3c4e3d929fae2e303dc0e4517d", + "regex": "(?i)^https?\\:\\/\\/heeeeeeeeea\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9fb21c8e2bfd940d371d06639a93d75bde04b663e16a9bbea27b35f5fc6f8ad", + "regex": "(?i)^https?\\:\\/\\/hnrwa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "96e411bc1d1aea1d94b0cc7d19a7df47faec7b6dc22d36ff85707090bece3b45", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3524bdbaa5e4b30e84570eb9dbe0927cd415f38c6d000cf8d859e18ec673b544", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7f9d511a5fc9385329c12b00f329312c95bd01a572cd9018fb4372e5ac9cc2cb", + "regex": "(?i)^https?\\:\\/\\/applem\\-account\\-update\\.137\\-220\\-50\\-15\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f4ddccc65b140f4f6da736b12b74fa98c5ec323ef2ecd5460f6cae47a1ce78e6", + "regex": "(?i)^https?\\:\\/\\/swingpasso\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ec367f\\-774f8392\\-ab72\\-4673\\-8c1d\\-d816824af511\\-000000[\\/\\\\]+ZKXoiwNDwIgHDfluEiY7vn7akhs\\=392(?:\\?|$)" + }, + { + "hash": "52be660d1005495ce191612da380ee953aea5d175378a011c3ccab6e9b6c2541", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "29acd98c091f5fb959a0e66c87bf07b1a5711e5a92f36a5ffb557eb4a70f1cbe", + "regex": "(?i)^https?\\:\\/\\/ffinance\\-updates\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "51eea5e7786dd9f70095c5ed57a9068e685f2cb79f9f0dd6766a545934af0db5", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "339042af49844984eba2caf78d56d0ea9261eb19ae2505a47812cc4cf0a080e1", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d240f85b581fa9c4392cac3b643fff724011c36f6060523a46043a4bd81b6817", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e4ce39c1b9b41b16bb29b645764a27f8fc422e5f5aa1df591df91fa5ebb9244a", + "regex": "(?i)^https?\\:\\/\\/paxfuexchange\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d199ef7ff923252ff32b6c66538e0a8eb93d6475c4a16151b5773c49a885d7fe", + "regex": "(?i)^https?\\:\\/\\/ffinance\\-updates\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "02fb3e43a87244462e8a7a365728cb7cb91c1c0b40d35a19022f7d31986a766f", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "13aa62a3f4eda938f723a3f8b5678aff4a212f9af105383eb81151409f76d68c", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "867ec6ba0c08ba197b98751bdb36b13c8f0d4557166d0c029f8d432626c6b78a", + "regex": "(?i)^https?\\:\\/\\/paxfuexchange\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5921fda4196bc775aff3c416acf0a0da8953d7e33e3fb6f72896fcc7008f0041", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e0ca30b83a7e7898092a6fad44c8bff8019c44ac08731c30a28624fac990a08d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "528c8fee0ba476fbadefb6d0cef6ac253f9612abd0e4fd2de42085cd3d39c95e", + "regex": "(?i)^https?\\:\\/\\/coinbase\\-update\\.50\\-6\\-171\\-238\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2fb8ce8878e3461633723aab0c079e656079a953721529e14307d3fa263d4a21", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4115f6780d1aee13cb88b0e382cc0b8d40135dac708eee8a6bae8e25c8c47280", + "regex": "(?i)^https?\\:\\/\\/ffinance\\-updates\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4ca263494d6a6e08c59ff1839bb71a7bd02464047a77318a12b3fcfe25ad99bd", + "regex": "(?i)^https?\\:\\/\\/safvo\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "68ec7eb856c0e9a4fc6a1e96f63d648b8b4481a6f31136a963389b2d9d0f6922", + "regex": "(?i)^https?\\:\\/\\/backtobekcll\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "718b24d6f00616647c535f4da0ce84cbf15d8e7e5a094e733f6a1d1782d7d37d", + "regex": "(?i)^https?\\:\\/\\/coinbsextensn\\-1\\.gitbook\\.io(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "b0f7d1b4b867cfefd178df0e9df41f7875d1ca20c8d82125e2a0bf06fa742797", + "regex": "(?i)^https?\\:\\/\\/lomunarydasecrevada\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "74f314119385e1edaa983ff3fdef1950e0ddd7e232518c28d62cee687b5e7841", + "regex": "(?i)^https?\\:\\/\\/vdsghh44\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8c36cd9e07bbef5b6cf726f41fb3fa4ab2e95cd24b919f5f00f21c3eb96dade5", + "regex": "(?i)^https?\\:\\/\\/hnrwa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cce1ef578e233c9f3fef06ab366666855c757b4a10070f030e0cbb40932c1d7c", + "regex": "(?i)^https?\\:\\/\\/metamasksigins\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "245151fd29f8f715717793967537f21de88ae35b9cdc206c3915343247fb2eb2", + "regex": "(?i)^https?\\:\\/\\/sestemfor9a\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f2dd907f61c1ad35c2e8b1a1fa99f16a3b063c8ef52f1f89a1bf4ca1b3948dfd", + "regex": "(?i)^https?\\:\\/\\/ffinance\\-updates\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b0621210125afdeb7acfec97295c650bda3d26a55b01416fb5d95d60d413fa23", + "regex": "(?i)^https?\\:\\/\\/heeeeeeeeea\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "582983603f0da0dc034125142c99f4d2a8499d2246453e8983c51020af73917c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "983ecc376c9cb46e8f640aa7ca4569a13382d515796c3e23db7db34a32484824", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1a8da594cce87e5151ba24570f0ab438b0a46e4127bb9595e72c843e07a092c7", + "regex": "(?i)^https?\\:\\/\\/frr\\-serrv\\-dlll\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1e35246ead14c89f3d7573e1b819f16a8fcea52dcf4dc5e0a1a7ef02ea9d1084", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "49baf87a18c87dd943a65b901908e6718764ba75fbe24feac59353913083806e", + "regex": "(?i)^https?\\:\\/\\/fxwsg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d8303de8f3e421de32adadb8f279a279dea9776002fb93bcc0aab91ca96f4", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "607b813a94443de1ff051e8075c59a2f776d358cac09a54e6a07c31ec88eed6c", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "74ed80109f64540d015899ba9a4bf0f11aef1bd0e29793c3f164151f9ef79ccc", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea08f4016c67aecfaf4da94db0164592d321a8215a65fffd8a48bbff40504ae2", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "048e081dbb742f0b00b6fe663da6fbda1dd7fa739895a6f758291e98a1229b4c", + "regex": "." + }, + { + "hash": "0a3d08411389e71ceb1570ffd4756a5794a95822f8ad2419ba5975792e7b537e", + "regex": "(?i)^https?\\:\\/\\/zaqxzaq\\-za\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d9da00b8022df782cc11d46b84336cd1fbc167ffb734d0f3de9d328c5ae78540", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b2f9c4eb51738bdd3194e8efcb9df82fd083ef28f94cce481f3e6e063b6b3906", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4babbdfac2a752833c5c3a587d4a5d0f8031e236703481cab827a408d11570a7", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "271be7785df12a36a83c8c3e02002e15940cc4955f29328df1dca1dec077284f", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2fd240fac3f980993c5de2d242cac62a3469f29e1783dc9b931c9ef175cbd10c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "60d94a90f0314d53c8f7d75ec38e2133180581d005433598d0afec389db8ce14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96f2d4ae26399c3b0e3f0d030e6f6f1b66779b4ddfb51ca6aa66c601368e3e2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wzpz[\\/\\\\]+syxl[\\/\\\\]+zwfwxl" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e129c0\\-a7a3d031\\-6100\\-481a\\-81bd\\-4f124d98383e\\-000000[\\/\\\\]+0QcQpqgvl8Mavnx9zGdPnreuSpY\\=392(?:\\?|$)" + }, + { + "hash": "b91504172d4a420f0e572478b056413e3fff9ab1308de76fe85c99afde825c4d", + "regex": "(?i)^https?\\:\\/\\/olkutnhzakreyuzngrebztau\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "97689dfce6948441a117811716ffb53d44e40edff74671dce4f98590b840b808", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "eff6d7444260982f428684d048552f1cb91c483b2376af05a82e8d5cef77739b", + "regex": "(?i)^https?\\:\\/\\/s1\\.applepie\\.cloudns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e309ff24\\-4a83f547\\-06ce\\-4c5c\\-8451\\-bf6433c5df2f\\-000000[\\/\\\\]+2onHd65ElqlPoohBMcm6DKFI0hU\\=392(?:\\?|$)" + }, + { + "hash": "5b2014e9ce179ba9fa0e42ab4d121f1754b7758869e63b6a0096a252a745371a", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bc2c8f19a57286058b4cd9fb6ef640893d5e2c0de4f713a47814c01d150605d8", + "regex": "(?i)^https?\\:\\/\\/olkutnhzakreyuzngrebztau\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "67b109a7480fab25aff20138906b1ab35a66712b1a0f9c7a5a990fb39b845f50", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "afbaa2a222d22b5014139e750eb653e7b4b4a5aa7f3416a769ad397935520daa", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3fbabaf6f2c651409792b25528fe57fbe0849a014356ce1abed9b33d7e722ba7", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "09773255ba31d16fbe1f0c9776a81ea9237d9002d2f0f4d9ff5fab9c7007d40e", + "regex": "(?i)^https?\\:\\/\\/zaqxzaq\\-za\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9fd4634f697491b51fff608cf8a38e1710d7ff7c7a2645245e0d9e6fa7ddf6a0", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ac82a375865d8cbbd11a47cf1ab634298ceaab72e58234df187d2b57040ef08f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ce934088af5acf6ceaed6314062a57e2429f42b1d658d806c6aa89ae99550d3b", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d8533b2208bed69cf7fc60c1f9431840c9f39469d78051fc1a9c0fcb01837b4d", + "regex": "." + }, + { + "hash": "23b3bc2654d644fa8ebc6cfa0f24215380c4b65289e473a4ab61863580025c5f", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "631153c7da1d76e3cd4ba5d20e3e711f0d54e74bb7b30e5b0b4ea12df97e79d2", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4f0017b8ba130bb7a9f7adec874cfbf8ba3e8b97a4bc3c83609d826e3d9f33d7", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e1e926\\-3ed159b8\\-2440\\-494a\\-8bf2\\-dd60218a0969\\-000000[\\/\\\\]+qXEJ4RxI31RO8JuM6tpkUQcr7IA\\=392(?:\\?|$)" + }, + { + "hash": "39b7ca5f9dbe7325ddf66eb6279d034172cf7f20abf3cc4dbfc4cff7a7c1a2e7", + "regex": "(?i)^https?\\:\\/\\/sjdfbsdkfgjsdkglsdkgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c983389ae188874e97ecc0273ce31258e5d61fbbb3874fb05bf21eadcfaadd70", + "regex": "(?i)^https?\\:\\/\\/hackparamurderrobloxshards\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2cef7cd\\-2b646b50\\-7c7b\\-4e3d\\-8b10\\-3573da176694\\-000000[\\/\\\\]+UyQEop00ftFyBLJPPYAFF59gHaU\\=392(?:\\?|$)" + }, + { + "hash": "90966640563c2332dc8f2dca03951817fd5eede75ae839caa7eefa8182d0e9cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0659c36bb5eff9df8c89b32bb8e5941b01918d723102e07f9f58fac689e9cf3c", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5205854b535d62130e9e3fbfb66c17191d13963eda4cf96fde2cf0096e595a2e", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e2d5c2e5910bfc1b2d8969713fe859b5a6f2cc31e28914d7b0428d02dd81646", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9230508252942f1047d0d9794ad198f546bd543d347b95a097ed73fe22564924", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0dd0841608b6b77f142f0ffad00451e1164f4f79ffa88cb5c7535274bb3b9e93", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f0a75f406ea53e19e4adb242d631258274fa1e9e3f6de9bf3bf97cf0874752a3", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1ff8cf13c93112e872f7377b64a37e974b653ccf7f31adfada2e13829837526a", + "regex": "(?i)^https?\\:\\/\\/sjdfbsdkfgjsdkglsdkgj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8bce40af945ff7d65f28d70c373807c4d4ad8ac3d7ebe28664968242fdc16d0e", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4e0c61791bced75dadba89bd2c75268eff91495059a89ab630f130e8e886da39", + "regex": "(?i)^https?\\:\\/\\/sjdfbsdkfgjsdkglsdkgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c003d129d6803aaa5c8ae0993da7b35b20fca7a586a53476bd257db520cc6fe1", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "aff15dfd977a863059f792782ab04111313863d9e8bdb7ee41b711bd6c141179", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "80efe348afa009d316b17f95e9a8474fa2d36d74497fe0d720507dfcad94071e", + "regex": "(?i)^https?\\:\\/\\/sjdfbsdkfgjsdkglsdkgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2645911d9f9a3f3f8f948ca2743590a28b4b4c8e0b86e1d2729b935674440b66", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b9eb5892f507dbb8cf038145368953a5f8c343e76eda46789ca326f806f2519f", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6a6bb678c60aedf71199c030a3b0fdcfdb31dcc4cfd8f82c76b2538b47576d4e", + "regex": "(?i)^https?\\:\\/\\/olkutnhzakreyuzngrebztau\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e08d76d7c3c5ee2b7e1c97f84ef8ca29264e5dbe0854ce7e4c8a2e270a45668d", + "regex": "(?i)^https?\\:\\/\\/sjdfbsdkfgjsdkglsdkgj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f0d42bd539d62696c271fb2fea3eaf81aed88cba4a4e6450c8cd088b05d218b4", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fseg\\%3Fredir\\%3Dhttps\\%3A\\%2F\\%2Fcapitalplus\\.online\\%2Fus\\%2F8716557641\\%2FZW5ib21qQHN1dHRlcmhlYWx0aC5vcmc\\%3D$" + }, + { + "hash": "7c9f90592f09f5ff14d30a768622e8ab100b9f68d75002ca253f8576fcb37f9c", + "regex": "." + }, + { + "hash": "e4cb30ddfad1cd341d9e4759a8fd5cb6754bfc07d101f7fab115201f9e312fe5", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "aaf80c09abeb636acb39b3fc678268111ca584e7d462e291873f12b7ab7a1b6c", + "regex": "." + }, + { + "hash": "de0f0f8b00566f239cdd3d39bd248fe46e809db9498106a6be57f06e7ee48396", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "96baa1fc048d7cb7821d40e91edc654e220d0437dc621d4ec2cf59eafa3548c0", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6876f0772150c1558da35f4c8c730ccd667a3f5a0a446f11ced5b1e0de6fb1f5", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c77e305acaef6dd53157af7e54a2b2ad3ca3311c3bdd119b3bae5ea453e9438a", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "27040c6aa19790a34d9b966fc82a9e0962d663a71d521cc96a4460d675c4453c", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c133b343658007f6b6dcdc9c7576ed956f673262f732e7463ce5e78fb5803fcd", + "regex": "." + }, + { + "hash": "9f1f1f403aba3cbd640e6ca38c00ec30bfb3a7120b9bded6d25478553a76e455", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "855b2bb2660a3d9a889077dd8783be4b6c174c5c844c3756a6e559f8d84c5540", + "regex": "(?i)^https?\\:\\/\\/myprepaid\\-e\\-toll\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "1a2ee41eff3c4d8d2ac992ac292010a213cc23287922c9cf3776fd6a2f47e475", + "regex": "(?i)^https?\\:\\/\\/olkutnhzakreyuzngrebztau\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "899eb583d4d98c38b99b03f0fc07f2c9f674c552a4f9b78fcb8125493b35fc85", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e1e926\\-3ed159b8\\-2440\\-494a\\-8bf2\\-dd60218a0969\\-000000[\\/\\\\]+TwSnw5ELgpP2MnanpcyRatNHc\\-c\\=392(?:\\?|$)" + }, + { + "hash": "792013a18463c16b8f6e5196850b467136f8548ac043fa4fc71ebec6fc83e05c", + "regex": "." + }, + { + "hash": "09a5084c5021997f151fa5ab5e529922fe70c3fc2e730badf026f6148b5632eb", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "dbbdaaacb617894ffe894f07b75ba775d9fbc1ad14b6addb2764045910bd8f97", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "336512f1c95d036030e7831328ee706b07c8a21d66fdac205c222ba852b2b9f9", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a7a21ff5d8a8adf2257b530bec3bffee655164155f553ee20d87789a49f69869", + "regex": "(?i)^https?\\:\\/\\/zaqxzaq\\-za\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8f2d58f7a97928d9181eed658fc34d961f27b3986767f4c3f9204418454c281e", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1336c4b487458382738a1dcf40dbfa52c1a9e6063e67360e86bd351990b909df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4dd11ea55bdb32a955d635a8bacafca75ae628ad5dab97b4909d90a1ea66b1bd", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "12c6941bc60c6712271f3c4834221d342725395984c0a9cbc6879194d98135e1", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c041ca1b521b0ed3e8e3a20ea0fcac51661b6fcdde3b8d5e242a7edbafe7cd89", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0d07177162673f11f763908c8c81fff38263c21c38e5e80300546e21f06c858e", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "89b46d18d0d373a837c68772c979522c8656fa3107239f653c37dec22d075085", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dd4ed7269063ad64f10c2fe0476dbc276b507dbdff0c10b8204bd26fb6390e28", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "59bd7b908ed754f63fbb789d7f528ff0f069b804b85c043c60edf3261114d916", + "regex": "." + }, + { + "hash": "cc8887f12500c976edb349b3e6d6397549c8c9314c4d8fd800b598789e495e44", + "regex": "(?i)^https?\\:\\/\\/sjdfbsdkfgjsdkglsdkgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a904341c8742c19cb164b8e9a92a9ef5a4458b14c8a77eac0c7856edaf6b0bb5", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8d17afa700723402cdcccee1044953cfdcfe0503a3c38fae455195ca536ce42c", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7618476ba28fd823ad60020e6d8cdeea99166d3dbbdc544b3fb94f85f65fc520", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b4bfde57e72a17d27533cf92dcfa966d94e991c2bfdcbed7409ce04fd7c7ca6b", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "99f799fa0693eb96fa2de0a3a0f753abb2587b1defcbf2f8595a85014394061e", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f7bbd6e43e6a5cdef404989e3be3a43da037be784c89cb0a6d44e0ea82f29103", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c7430a18f022e64a20df4547c46d6850e67d9f63efecbb4f5c6df0010e853377", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5d2d8a42614bae1142d9a3657646ef29a532a6ce4040851c7027485629382a49", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1420371f2402a3e022f2f5339504be53e91211ff757620d8e65ed398e55c6345", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2cef7cd\\-2b646b50\\-7c7b\\-4e3d\\-8b10\\-3573da176694\\-000000[\\/\\\\]+vSkBuai1cdUGnD0E63NjxxDBV4Y\\=392(?:\\?|$)" + }, + { + "hash": "5f193cfbbc775b6cda597de5f5a0170d73015f114ed3c9124ca12fd64f294dca", + "regex": "(?i)^https?\\:\\/\\/zaqxzaq\\-za\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fseg\\%253Fredir\\%253Dhttps\\%253A\\%252F\\%252Fcapitalplus\\.online\\%252Fus\\%252F8716557641\\%252FZW5ib21qQHN1dHRlcmhlYWx0aC5vcmc\\%253D$" + }, + { + "hash": "88c7efcdd17abe89e85dd6948c4c9865fbb0161822d6a276dfdb1952bad84165", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f2ea94\\-d5811e73\\-d850\\-4d3b\\-8e79\\-ca6f57b20e92\\-000000[\\/\\\\]+DNMbSTrNz_nhYdnjbK567foN7OI\\=392(?:\\?|$)" + }, + { + "hash": "03236c7d8bba99b423a13d5ba627edef9e224255696297b69e44f7c7362c0605", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ac0be901364b686ce3545234ca5593c343975f70a4e7e6f0fc28d0eb3dd770f3", + "regex": "(?i)^https?\\:\\/\\/bafybeihpjcfrgg4jzsfwosriuh7atgrhadlibc4pectmyr6aaw2nddsnpa\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "756f83397962d2234ad78458a381f4ecf8b9ad85b574c0a281235e0a09d5bb73", + "regex": "(?i)^https?\\:\\/\\/zaqxzaq\\-za\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5650167eefed91677343ae7d4fbbd0797ccdff867e77b40fead2bf674cc83cf3", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "299c1decb4391aeadc2f4fd370130e1179fbc2e0322fef7f34d1d327ca3a5200", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9e7e9126404419cfa023cc0e86ce20ba0c8bf9c6faacd50c247ac5b74556b7d0", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c208ae14ddcc98a7e8b80cd97cfbf87e43560958f19425c3b5be6ae5391e1704", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e16784614d8e80e2d7038f9c02f06d56446dceb3d9da1a1e606f5023874a4cd1", + "regex": "(?i)^https?\\:\\/\\/sjdfbsdkfgjsdkglsdkgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+seg\\?redir\\=https\\:[\\/\\\\]+capitalplus\\.online[\\/\\\\]+us[\\/\\\\]+8716557641[\\/\\\\]+ZW5ib21qQHN1dHRlcmhlYWx0aC5vcmc\\=$" + }, + { + "hash": "b8468c2685ebbdd9cb674da9e88f413b3d1089276d87812f1a243d7f6016fe8a", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e129c0\\-a7a3d031\\-6100\\-481a\\-81bd\\-4f124d98383e\\-000000[\\/\\\\]+R4ves3s5z6mOfDbEZigDyEjir6U\\=392(?:\\?|$)" + }, + { + "hash": "6d2423536b603f12b7b5f4a75264a3c9265139c1143d65b46044cc696a168ef0", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "713b46f1982cfae0ea74ececc1dd342fdc966955d04076ffb790a1d332822b06", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "76f3cac44898bed69fbef7559c46e88196773c074f773af24d232d783da8cc7c", + "regex": "." + }, + { + "hash": "5656ef814c508fb33500de791e3e0eeef5858b1285010bdaec4586b7c0fd1e3a", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca700dcfcd46841015ae20d80b8c1f359c218eaa865d3b80827b07bfa4e438a3", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "27d073b0371cb9b6b4612eb273d0f10c85d679ca4fb3353850b7355e0fa3792e", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "37bec3f36bea4ab995c1aadec1ece546ad0102626ffffd5f2d3c2b32a187736f", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e4820a47a93c7be46bc97e6ab6b115d1d4f91c4df19c403bf4764c62a8d05fe4", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bcce46265a3f17001a0f39c02566d367fa204f6f232fcf5fadbd488f826b81c0", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9935aadebf033d860f92cfbbcc8c0ad9ca4ce661afcf1a4dc2977eb8cadd9e80", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f72034b2e8202251b01fb79b8caf161f334249cf894ebdf1bbdc28c588e0e974", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4ec51661d0bc84d430bc4567e85aa14d81f13f24a9dba4023fe06cb1f3bc787a", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bdc3afa5cbcca36ffe146fb0a6a4a145f73912eb985b9ce6dd6e7726e56a7d64", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c87e76c6593d8138843a294212f3c54ec2cbc65fb31e4ecfe5243fb29fac3db4", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7a0eea9b9b28cae128d8837b1f6e7e6ec42e6098c6fbf8bd9b8162e32253bcc6", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07d4e13b022a53155d0746b79cc52550d796808b8b648df4eee5958dc58a266f", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e2cc032b12a6a0c86a220129ccf80563dda7f68069e6aeaf15728f5cf6a52193", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "360160f80ac873e882e16f36b8285c55127bf3dfedbc8b403c3199843433a982", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a87zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba8d059507e02cfee62b216cab0771f366fc968eb93d216a4fb197c46e29d190", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "09be9ee22791609a538395836b5f105d961c77f727c9551b04994a6eb7d58ab3", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "af39c600eeae60ecfa1fb648bd4977d4e0f7dbbe9c6938718583e194bda33032", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "354a05c06ad7ecbd6ac3df908525cd0e7c5f909f0254276803c4304d0082340a", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0c1931593a7ccb9a20582612e75b745d8bd96464a5b40b90aa2ae600a354d018", + "regex": "(?i)^https?\\:\\/\\/olkutnhzakreyuzngrebztau\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2da1a198139f1e53d16d7020a27349d603766c3106a5c077a1557bf960a3f157", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7a3cc1fecbfc446898d7fe05286411332b27042ec957806ab21673f17a76c0cc", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "16e71025fd9d88f1cbf566703027506c64a8d732555cfbdd87ae325b57b46c78", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f933f5375059086b84ff68e83b058d0bc0979aee7b48b1dc2f71c5e7573eeb07", + "regex": "(?i)^https?\\:\\/\\/lakhans8833\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5e7e86c525ae6eae362cbe0ff55fb6a3c65b36b2bfe3b7c661c84e95ec9e7b41", + "regex": "." + }, + { + "hash": "1ebdf126fc18826ae620963ce2cfdd84bccaf9123a2265b0b1eff8a63486747e", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12d67f03bb7e07ff85245b32374e7e2a4b5f26d8dc66e1948a839035d29b11d2", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2e97501345cb2a72acaaea0d3a1c91061e50d5d29361ad232b0e9f8607930777", + "regex": "." + }, + { + "hash": "c9cca1ff1b39810e21df55537edbc6be760850b70199c24f69fef6dc32406a78", + "regex": "(?i)^https?\\:\\/\\/olkutnhzakreyuzngrebztau\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "84a664bb036fe05f3316e8a4e86b38c1cedbbb530f8c8671c6721716565e22c1", + "regex": "(?i)^https?\\:\\/\\/pub\\-ffb0c3c2d982468cbfe8c84ddb5544ed\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3886299e5cf51e67a974c1f3319186afbcb72dbce9605be992f79863fc2de17c", + "regex": "(?i)^https?\\:\\/\\/xzaxza\\-zaa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "77dbbe466d4e4d3d1ce074b08bcadf3ff9e58c03411a8ebbfd8ca2ab0cde3fbd", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a43e877f661961d1f9f63f329337286a291f1d1d8636e103d8be9433bda466af", + "regex": "(?i)^https?\\:\\/\\/zaqxzaq\\-za\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b62ce3d791172a56351c22b2540e805451b05c4e242c899d31ed61d7a9a329b7", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6b60d481ddfcdef481f99e5c75c9c04e84540c1c1f35886f7b32d113a8c504d1", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d80fb69a23471c9c542fd8832cc8ed14f9204107092344ce013092f8e3fed481", + "regex": "." + }, + { + "hash": "055dda26c4f385445035f7ba4a93a959d17ada258c8d963d2cb89511c7a62a00", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "275f744ff7f86f305a2f6a90c8e1c4f332b6c94c1656ab75522c23e886027622", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "be363ad7ab2bd9e7bc59f273bf0309ff09c607cb36798f1dcb8b45ce04dd2779", + "regex": "(?i)^https?\\:\\/\\/dfewsg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30b4336\\-effe4bc3\\-e64a\\-4e45\\-a40d\\-91b2f700b992\\-000000[\\/\\\\]+x7x4MJEy3DJxK5dXQqIJdKOEAMI\\=392(?:\\?|$)" + }, + { + "hash": "1702a03bbfd0d3e3ae8c65ab74e974414e2a7710bb63d97009086c67038ca442", + "regex": "(?i)^https?\\:\\/\\/pub\\-fd24947b5ad84d8a8e1b78274854a9f2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f56d9ba58a9875e53af622051a1476e0a106f84eaf012f064b2a36e10ffa26f7", + "regex": "(?i)^https?\\:\\/\\/yaataybaah\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "faaefa1a4ccaec757437955303362f5c244c1a92861312e7e7fa385b94e01f82", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2c9f321f8df265759589eba1455c3d0699f28e8100ec1aa24464abc1f7632d6b", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30b4336\\-effe4bc3\\-e64a\\-4e45\\-a40d\\-91b2f700b992\\-000000[\\/\\\\]+7BHJQwsMfxul9qFmlcSsJJJNC4E\\=392(?:\\?|$)" + }, + { + "hash": "fdb785eea3850bb2e3c165a97bf26ea60652fed8f2ff6dc13c671b6bf42749ff", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e701b7013db8454fe76b0ef19e5bc3b815bb554166f8bc7587bc68258e6dcbf6", + "regex": "(?i)^https?\\:\\/\\/video11matanjkjfndf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ccd5990c0e028e1e2a79abf9703380150d4dcb69f7027a2de5c5a74876373a15", + "regex": "(?i)^https?\\:\\/\\/olkutnhzakreyuzngrebztau\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e721ac1d9784bf15739649812ce0bbd89dd8e0e4cb771e41fb72fd4999203fae", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e309ff24\\-4a83f547\\-06ce\\-4c5c\\-8451\\-bf6433c5df2f\\-000000[\\/\\\\]+fImGQfOAud2oV1PRzNF9MFIdZlc\\=392(?:\\?|$)" + }, + { + "hash": "914f34ea718de74c2c7f88fced9a98bb74b7b1757a9e3e6629e45a33f1ffe557", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "26f06675889a8c4018038774108e1acd161afa12833f0be6ef81da4441026570", + "regex": "(?i)^https?\\:\\/\\/swyftx\\-australia\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "68c8cb94ac08f94395ce747307e803a2f2d6f6e4c355d2f9352774647c8db8e1", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "94952159934301f85f5bffc073cf4997c3406f524c466d2efa1854820f41a589", + "regex": "(?i)^https?\\:\\/\\/carmine\\-elephant\\-ltfl67\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "abb1dd7c28f1f24597cea6f53bf99e538e80d43fa61c41a9ded3eb6fc0c76546", + "regex": "(?i)^https?\\:\\/\\/swyftxau\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6722fe2bfb1718eb1a4ab41512e93ba35f8c3470c5f3649af52c378b67aa69ef", + "regex": "(?i)^https?\\:\\/\\/0range\\-service\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0da4b424d9721f3cc490620adc519f56daabeb623546e8edbeaef42859efe0aa", + "regex": "(?i)^https?\\:\\/\\/zaqxzaq\\-za\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7a467965111b4311bdf3ae81040b01a685018823a374b746b7f02b8971f7f6e2", + "regex": "(?i)^https?\\:\\/\\/zaqxzaq\\-za\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f2ea94\\-d5811e73\\-d850\\-4d3b\\-8e79\\-ca6f57b20e92\\-000000[\\/\\\\]+aRvHqlw3Zv3lRRn4PVmMxiNINeI\\=392(?:\\?|$)" + }, + { + "hash": "0a233cb76cf53c075ea372bd4b5c72ae0cb3a6532000e61ddfe7ec0ec4ff1496", + "regex": "(?i)^https?\\:\\/\\/ghnjgjhdfgjhfgjhdfgjhsdfgjh\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c0514ecc84cda1a505b33cc357b256871041d58a081250b1cad334dc75f3f5e", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ce860d037a0a17e9f46439c5900a26d0308dec8938c9f43341962db9df979621", + "regex": "(?i)^https?\\:\\/\\/dizo016\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "78affe460cc817031ecf7f12b413d3c88a32104e212ff0ca9a49fcf6a96949c4", + "regex": "(?i)^https?\\:\\/\\/sjdfbsdkfgjsdkglsdkgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "dadd03de40bb8720b7157edcdf4a0529928f6a9913c96df084d107ec6e7ab710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "adf688e38e6d00044c321a622ae814ab26a2c3890f7cb1249bbca9042095ae04", + "regex": "(?i)^https?\\:\\/\\/sdgjhksdfgjhusdghisdgigh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "39f3e943581973cf1b2da4b83b44f39132069c020d39b4b519adecd9ed7d2dee", + "regex": "(?i)^https?\\:\\/\\/robuxsyaz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3caec65789d14a2f8c67f455d7cfadcac5ec3f5df45e1410114f0c54877aa91f", + "regex": "(?i)^https?\\:\\/\\/pub\\-4e1c5b8cda314bf1aaa85412bdd6b5a5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0fefc8284c149864b1555dde2a3978f9d77f1088c2c26fc0c281138435df8608", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "12169a3e76f9463ae4b469d8896ceba8d37f2fa3da58f2300fcd0c37ec87e5f6", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b944bc8abca93c275426ae7c8d781e2a909f4bc004ce99c937afb3808af4f112", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e8e2a8cb3da0306de9c54ab6f8d742416327924ab8005607e5e96ca9fed6798c", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "492b5935a960abe76e39247148a742a98fa4ab6eee79fbe7d32d50fc2ae7e3f6", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1a4cc71c6881e87b83291bb28575837b5034ae48a2914f037f07acdd790f5830", + "regex": "(?i)^https?\\:\\/\\/fyhderurtjhdjfhhdhhfdfgh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3902cdce3e7be347321fd70ec9e70ef2c3a924b166edb01ebd01ddf8df24462e", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cac63d9505943882d5993146c8737ec4c819497bab4c85121517a50ce0fd93ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4583e48b983076af7de1032ff590aaa2d0755e9be878570f65810ee07945b224", + "regex": "(?i)^https?\\:\\/\\/fdsefdasfsdfdsfds\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fc34fce167b75f26b638c33ce4bfef3d44fd154a187b0691eb7cedc4773de456", + "regex": "(?i)^https?\\:\\/\\/robinhoodd\\.165\\-154\\-236\\-158\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "18c80f7a286d5d980e1c549190b0918258f8d520fe01d3a3f38e521444b7ff1d", + "regex": "(?i)^https?\\:\\/\\/fyhderurtjhdjfhhdhhfdfgh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9cb889d8ed9d8824ad59f2e640f5bcbd00547bd4430e92356fb38342e597c786", + "regex": "(?i)^https?\\:\\/\\/dguasohxcoixhzcohahsosdoioihoadhaa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "90966640563c2332dc8f2dca03951817fd5eede75ae839caa7eefa8182d0e9cc", + "regex": "." + }, + { + "hash": "e0925d0ed1e85f538d38cc4c4599af486fa799c15f1159275077b474cf576a04", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "49178179d3101b3c236f3bca29c6513e1285210f5e72c0d3f9c34fff59ab9e90", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d0134d9fb2e3ea4ad9bc6f351026495d91ba105c8d040323d7a319799a858638", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "803c89f8a68f05c3f6f53a7cedd50cd3a0bc778c3f09c7adbbd13bb84d384fc1", + "regex": "(?i)^https?\\:\\/\\/gauichozixhcoizcjoizjojoijojozoioo\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5c1e7e39a3baa8f1426660040b937f2b028428e3f59352322f8b7970c29a7ea5", + "regex": "(?i)^https?\\:\\/\\/fyhderurtjhdjfhhdhhfdfgh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8a03d3493e9bb91166375a3b9f874dd816626312c09872b7d679f19323e72c87", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "00c9c9255270c64421b4c980d1ec7457a3dd680e78c5ae7c89acaa4d0fed1ec1", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b4fd44dbb4afbf334eaeb495d8590fb59393780b249c37c3bf34c56a6bc6d5a9", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "32b409584f029d13cfde2ae8ed3f72c2706832d1ba847ccb1b546dca8143b704", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6a173d540b06a8f5f9d86338c4dc7666920af897173b791d3dc5de924c5065dc", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5d25be5199b68f7aa9588e18996724feeeb0018bc81c3e315b9a4cec21ceb556", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "02bbeae0690ceef28c41293607145828f1be1e02aadc863b07d13507f896ba10", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9cb0b9530ee8430a0f62badbc8a360b479a19218781cf4205d2eaad61989d6ec", + "regex": "(?i)^https?\\:\\/\\/dguasohxcoixhzcohahsosdoioihoadhaa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0397375dec5f60e5752636de12033b454d29a1712c0d05ff1d9084bede5fe810", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8dm9gt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "347fba94ccc87d76d2a513e2483f036193c231007a80217d41ff2450315b5f1d", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4faf91bd11e618d9a734d0cde5a2d6814b5ce1daac54448d855374d02821fb04", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7ead651aa6e03ab45782cd039de726653d699cd10a195021801d1a6341f8f0fc", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7e979aae711ad6b405e51a89528d909f960b2a7dd4835c87198ea0a076678702", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7b025b030565d7622fcc4b45d18e0b60b02e7ac06a76f05b2022a423a9dda824", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9143293d6e6259549c3511cf466e42ca0ed0466910fc611cf570eaeefbb6e2a9", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "78af733f42fcd9ab6de6469a83accecd03ee8e9d7d32ef4a54e8d750153fcf74", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3004f53cd2a0d831ad335a6c8573645091abc5b7bca5bff66de3c4a13e2fd51e", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "dd2bb6965f507d4aad4c92331273a51757c63b197d3f3e860c9589747c73c28f", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c20fc7456c9c21e70e078b3c5fb59816e762315595ea9edd248e1294c1c1bdec", + "regex": "(?i)^https?\\:\\/\\/hgfcghfc89\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f21e9eb4dfeb1ade7428a38a6a4738d987b8a554747ad8011aaf88aa5f600af7", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c80fb5efdb48782e271411bcbae0e2a088a42edc79f4477ea30dc8864b175c2f", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "df4507152ff9347d85b2a436ece23943e03f7ebb1145e726e4262c937cc4842b", + "regex": "(?i)^https?\\:\\/\\/robuxsyaz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f87f52\\-1e15a16b\\-b5b5\\-41f9\\-becb\\-f086504e585d\\-000000[\\/\\\\]+WHw3WJNVTLB_e3uCEw17Ue8ChzI\\=392(?:\\?|$)" + }, + { + "hash": "f8f9e280d2013a9da49df28185a72134a4935a4ab75637f37015545d2e9875de", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "efec622f0007edcfd1406aae2ac51f9a300bfe39bf072fe17bb23233aa7b4653", + "regex": "(?i)^https?\\:\\/\\/robuxsyaz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f6d159dd4eaa8836d752e898cb5892a394586fad40df7d5d5dd84ec50bec089f", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8b0c6acc62eaf98853eb1cf8c5463953653d1862cf01b4d5f7407fea124cc698", + "regex": "(?i)^https?\\:\\/\\/purbagh7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c2ddb0a540b417610de3079f5f608637026cec0d87dddd34135bda63372afcf0", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "40abeaa59ac7a2aace8d4382f8dee4402b456bca63aa594d92ce85a24569e60e", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8a42dc4916c5c399befd975621605559bb6e9a6d396e754129c09540f5c9fa24", + "regex": "(?i)^https?\\:\\/\\/dguasohxcoixhzcohahsosdoioihoadhaa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2edc75a50c1f79e25a53d5983b9853634db7543e06480ec8fa06b095139ad7a3", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cdf2c42429fbd349f0df8412b615ff6491533e3adf988f841a5ad5914108f3a9", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "559c1621c2cdb8f05b286fdec3c5163ce6d4c2ede2da8ac0812dd3f8f51e1d12", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "94b7b644a1f6b3b655780a5129ae8da5cce6fb129eba36c2ef04f42ee92adaea", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "87e29220ea5933b645c9b0377972a704fed288969a9d18ae06d63019e726ab9b", + "regex": "(?i)^https?\\:\\/\\/fgfgfdgdfgdfgdfgfdg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9c563cda75753241b871894425904acd12589e402d26e6eb0b3f879bf97e7363", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1e6aeba7d3e5cedcf24838a97268f76ff1c8f80b2ace996b337a730b6670ff8a", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "90fb312b3b656d88d893a3a55b92ee646f4d07b5960cc76c4469e1fa3f4bfe2e", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f7289606541924d8cd03d8079feaadac16cf614a6d69304e8b4f5fbbf3159a5f", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3ff74c2d5da3ca8834027ad9756931d3850e033ccbcb6432c7df0305f93ab166", + "regex": "(?i)^https?\\:\\/\\/robuxsyaz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "419a0a0c63b98fa46f19230a47250fc584a566b5e8ec86d719157f90ff1452f2", + "regex": "(?i)^https?\\:\\/\\/kolunzbgatsakeaotnada\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9b5a43663220dc3d46380fce7a3a6d02047d01fe065ff1130352190fdf240320", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cf1f849ca025e52ef1c9444eb5e7da4a91a8df511ffbf536da37f2532ed3425e", + "regex": "(?i)^https?\\:\\/\\/robuxsyaz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "99b3f270c7f142aa54ea42e9757a5c1ee5ce10f4b2cf9d81fc847d286f6be7e8", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "130282d71d95d989f9ec48a09c531fff03f692495ae3326929e4111c754f15be", + "regex": "(?i)^https?\\:\\/\\/fdsefdasfsdfdsfds\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "501abdba505f20da5c29cb57ce7fd3a03861b88a068570cf3a344f21f089b34e", + "regex": "(?i)^https?\\:\\/\\/fyhderurtjhdjfhhdhhfdfgh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c1e80e19f8731340a6f7fcfb52c5c9c0df7106a53de0d1379900b1d293fd1ea1", + "regex": "(?i)^https?\\:\\/\\/kolunzbgatsakeaotnada\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "95d8e3281b43d275bf7adf8ba7abab5a250a9e2735bcdf241a4f91b991560e4c", + "regex": "(?i)^https?\\:\\/\\/gauichozixhcoizcjoizjojoijojozoioo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e315e60b\\-4feb0e5f\\-cebf\\-4530\\-b1d3\\-d2122dac028c\\-000000[\\/\\\\]+tUqARyZ2uKLKqY0W9nm4BPcEjuI\\=392(?:\\?|$)" + }, + { + "hash": "d7b78d8a5079ab4bdab75ddb09d3ccf19cedcfc154fdc73b33af4c4a5b4820b2", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d71abec339e3aec820eb4c1311cdf7cddfefbfaf341320991e9806b9026a213e", + "regex": "(?i)^https?\\:\\/\\/gauichozixhcoizcjoizjojoijojozoioo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "829e1c51d07697eeb44fc9c28487de9eaedb27af42433b9fc5ca1f3902e2d0a1", + "regex": "(?i)^https?\\:\\/\\/robuxsyaz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "845d73d16808c4fba245736b1acece9c945b915a4a4a20d199128b406ef80d4c", + "regex": "(?i)^https?\\:\\/\\/robuxsyaz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f2516926b5930397b2c94b3ba68894c84457585f43bad5841596a50643b42809", + "regex": "(?i)^https?\\:\\/\\/fgfgfdgdfgdfgdfgfdg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "dafb87ecae13a681d3b69eb083e4c10b765caf6de8f31f8749675ecd36e1996c", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "235b04533270a05be809512697f52c726498863e4edadf3745b1e31462fa5d2f", + "regex": "(?i)^https?\\:\\/\\/kolunzbgatsakeaotnada\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "66d4b9cc1f63c51947b77c1054bde8b9439af2e9168059ff45160db93ea4e87c", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "23df7f7b096a3aecbe20941e2a519195b2508bbd4bf83c6b4a13803f96527a7c", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "513d8f08a5872b417bab02df5054e3db2c2705312875031c108ddfef8a7ce494", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1c71cd73f54d94676c3ba74cbca66b0c180ccd6b6bc8a28d7d8b6731754bdf42", + "regex": "(?i)^https?\\:\\/\\/bafybeifcbikp3fcndvqouvno53o2permss5v2djvwvosr7a5o6tdzdcckq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "7b6d0b8f12bb726595f7c9661ae371855726cdfbb3e77982bcf34462d58cc37e", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "416157895e5d1114fdb7bb53b8de857837619eb201565a6aa39a88f3b911558c", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ec8df3cc944d980183a62331a7aad5e4433bf39f7b6e2feafeb5bbed3407c774", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5085d85b930eb5a77b4b5f3d6869d62ea19d817089e39bcd8cee8136cc771c23", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a1cf003999631507686ffe11a812c10a17810373870403523064158b213bade5", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "00b2813a24346948e01b3d9f4dc6f3f753555c1f76d742c293ca72e4d1cde8df", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3f10099a062f44c4fe05271bfcf6de260bba0a6afc4cdd193b82f6c33925dcb8", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "02c0064c2173234c3c91503db26f35412081e75408c9fa0e79b5aa2d14886596", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7141199190cc14890cfe4a61d53774998a4b62c7d948d43f0fe177b935e327e2", + "regex": "(?i)^https?\\:\\/\\/fgfgfgi\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e308f797\\-9321ea3a\\-4ec3\\-424b\\-b345\\-2f86e1e08c8e\\-000000[\\/\\\\]+aDByI_CB_povnc5d94x7Dwfk_L4\\=392(?:\\?|$)" + }, + { + "hash": "9e7ea6e7c216ccff2d3017ea583764fe0b1fd0675579a9cad550b27826a62cc9", + "regex": "(?i)^https?\\:\\/\\/fgfgfdgdfgdfgdfgfdg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "945858595274d03931354e7739c767d33c129ab071e267cb0bdbf896cde558ec", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1bf42148812bd55af0cd026d8c53e96e507c5b0415bdd76f100b460d344d6e85", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fa010f18924ad9c7d2902652a45d7a32bf1a144694505c0577b6d381b2d792e8", + "regex": "(?i)^https?\\:\\/\\/oklmznahsuobgtzaia\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e9adc0ba4282c9d1e3c757cb496e5bb2b782a165cf53592b8d5bc5aa60dd2241", + "regex": "(?i)^https?\\:\\/\\/fgfgfdgdfgdfgdfgfdg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2f2c8714d94e7160340589b8362dcecb996618525c9263cfd8790ba25ec001c1", + "regex": "(?i)^https?\\:\\/\\/fyhderurtjhdjfhhdhhfdfgh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "261326f595a28b156f903f37823f28e13e807d26de7b57ac565def8055d875ae", + "regex": "(?i)^https?\\:\\/\\/gauichozixhcoizcjoizjojoijojozoioo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c0152e6dd75665a238005e7da23126eccb903789e42bd4fe13729a9c30ae8c19", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "44159c011d0488bc2b4ddb16679ad8f0cd4d445975d791b85413b4fa8208bc94", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e48232e4d0e1ffe8e725cd7506d25739728bcc44d2f0a5910da80ba1fa7d878b", + "regex": "." + }, + { + "hash": "2f0e7c5aabe51a2ebb47b5c8c022eca2eaf035aaa6ea06efeaaab9a9bffc2c4d", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "29f37aba07bbf9b5ac21b5ecc40139013b7c24a6c40b01b3160f3f842ee2c17f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e315e60b\\-4feb0e5f\\-cebf\\-4530\\-b1d3\\-d2122dac028c\\-000000[\\/\\\\]+_q0fZtXDye9whf6Pvz\\-e75xFU1k\\=392(?:\\?|$)" + }, + { + "hash": "a849b177a0653dbbf07c0dbd5f33762a5de96a90971ca77c0c035d4d7f304aed", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0994835c4bbb8c7b31a7cb69bad499a3dd9b81575643e104c20b4c222601452a", + "regex": "(?i)^https?\\:\\/\\/gauichozixhcoizcjoizjojoijojozoioo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "59227c9d2c6d87c8e72c1a1677dee24766744e3564d019b827f13a9bd7a53ff9", + "regex": "(?i)^https?\\:\\/\\/robuxsyaz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6f1b7303359516eb9358ba98918e29e5b7eddb8210065c5f023ed6a2f4764715", + "regex": "(?i)^https?\\:\\/\\/fgfgfdgdfgdfgdfgfdg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d1578d578b4f34adee55cd696f28ef28a93245d89382aea926611f0f6300ec6a", + "regex": "(?i)^https?\\:\\/\\/fyhderurtjhdjfhhdhhfdfgh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6b60a30ac8902eeceecad7c0862af6eca5d005b2a12e359660c283cdd4802a04", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8b547b436c2c1f3b456abec17c8aa45b956c83b78d864053649829631de81437", + "regex": "(?i)^https?\\:\\/\\/dguasohxcoixhzcohahsosdoioihoadhaa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fbe4420fcdb1de71f7560241c996a1c17dbc2dee72c87456e8b6c3ff2e2f73f3", + "regex": "." + }, + { + "hash": "93a53541c0eb9c3b89e9b6aa3b49a8e5f240189a68dcf0f55b96c8327c872bb1", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bfb95f95c3f9763259cd5badd4326146f85ff8395b20d9132485173867f8a01e", + "regex": "(?i)^https?\\:\\/\\/vcvcb3\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c8e80839428cf71fa44cb491dd6605b875c833dc907128472b1a2ffedbb35215", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c8ad1d9fc459feba8637cbda8988cded2fc2e6e30491d3a43c4c1a0613360113", + "regex": "(?i)^https?\\:\\/\\/fdsefdasfsdfdsfds\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d23d2f7a4df1944eb087fbb39479bb5a21a96a7e4a11a6627a39799752e2af50", + "regex": "(?i)^https?\\:\\/\\/kolunzbgatsakeaotnada\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "486fac2a29f2d4893c12727bdda7f1badc36c1fe7b2f10e264207be140c5f09a", + "regex": "(?i)^https?\\:\\/\\/gauichozixhcoizcjoizjojoijojozoioo\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "de8ed082ce46b019981e61f4b1320b223ada637d07a68f6ff0d42af39c69e23e", + "regex": "(?i)^https?\\:\\/\\/fgfgfdgdfgdfgdfgfdg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f259bc8d99d9818f524f8489fc7b2b5c45e9134813a09e9f4c0658670d841546", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "78e3c9e12b69bf91aa06af8f74b12bf18e855d026b74be7316e1213afd849662", + "regex": "(?i)^https?\\:\\/\\/fdsefdasfsdfdsfds\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e308f797\\-9321ea3a\\-4ec3\\-424b\\-b345\\-2f86e1e08c8e\\-000000[\\/\\\\]+gsL0AhbPKyJhRp7o85\\-VVJ6p4MI\\=392(?:\\?|$)" + }, + { + "hash": "0441525923dad81ddc583ea519a5382e4f6ac1fa2b8d61196a5f481ba99c9917", + "regex": "(?i)^https?\\:\\/\\/fgfgfdgdfgdfgdfgfdg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "49e9d0188627477cfc985187397816d1a0b1e66c433410aefa44be0f5b6d2686", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "742182be398eb978d3fd84a33e3579e4d01c7270a2c8b820ebf2f80382693e16", + "regex": "(?i)^https?\\:\\/\\/dguasohxcoixhzcohahsosdoioihoadhaa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2cda072202aced44015a5e90d90c8a6a61b986a24488d8410dc86fc600e5c306", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f5ce4ecfe488002b0d9e3e6510fe08c49fc4a8dcc53e918d89bdb866c17f13cf", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7971612ff4b236fa413d63880df67d4941cc74e332e8b2bf8f9643b55d00fcbe", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "750b1b98e33251398d9fcf735287213d735d7878271e8ac3611eae27fd74c2cb", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "044a780e7937397c0ce3c5b1a74d9f644cd397e4a769bd3cd7ca36acdc6f0b3a", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "83f8409d709349b5caa99fc828b7fa078bffd064809f5de397d192746e17369f", + "regex": "(?i)^https?\\:\\/\\/robuxsyaz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4d65abc3c941276d7d284f77872b339913b54e7beb02d51113c51a9a93bd8918", + "regex": "(?i)^https?\\:\\/\\/fdsefdasfsdfdsfds\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "871566a91704806d07239b13e08bb3d063c2f751dce5ef313f7d5ba30e4614d1", + "regex": "(?i)^https?\\:\\/\\/csam\\-refunda\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c8843fab0b7b56f8c36e8ccbd78dc848de317a9694fb5c70f0d2daf57cfa4358", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7b69f0601d3440b15f276ebada8df34c3e43205c6007b714cc264a98ce7aa134", + "regex": "(?i)^https?\\:\\/\\/goold\\-free2311\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7f430fb0a9aee4643f21de9e19f07acb2d2ebab3c326381debb0e92f3d54a614", + "regex": "(?i)^https?\\:\\/\\/gauichozixhcoizcjoizjojoijojozoioo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "76f3028e77a98ae02d47fb0c8d9fa5660f6c3ebec36ece4dccd34a593f746898", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "67e6948783e65792b3a294662a99187d6f9871bc37eb1a38c79ded9dd0ee4df4", + "regex": "(?i)^https?\\:\\/\\/dguasohxcoixhzcohahsosdoioihoadhaa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6341f607fe4d541840885154b255c72c50feb1ab5a5002db03096ce02bf610b3", + "regex": "(?i)^https?\\:\\/\\/dfdfdff6\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0328114f25cb89359277e732e9a4266a6e24de9f47ac4e96ddcff0a4b2e20ce5", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b43587cd31ba8e15abcc0423336b2650c27d7923fd6ecdc3d5748be85ac77643", + "regex": "(?i)^https?\\:\\/\\/dguasohxcoixhzcohahsosdoioihoadhaa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fad723c53a07c7786ccd94ec4d4925e4566f36b509db9189d2286a72af6b13ae", + "regex": "(?i)^https?\\:\\/\\/fdsefdasfsdfdsfds\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d5c25c16dda28ada8b79a315df879fc1e1a6d130f183854a5eaa644900039c3f", + "regex": "." + }, + { + "hash": "0318baf450573c4a3bf2b015f2f85683deef95601ed0dc8f5c6d3dee7bfd0f6f", + "regex": "(?i)^https?\\:\\/\\/dayigiagcuixghzcoagdohaosidhoaihoio\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "055611065ef8b3475ed8bfc5a83a009c6233843f8c0648ce371093a0c310376e", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "008d724dfc9f318415f5151cef8ca26adf3d6a49273f576603b3437e912be2a5", + "regex": "(?i)^https?\\:\\/\\/fgjhsfgjhdfgjhdfgjhfgjkdfgjikdfgjik\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b9537ebd86cf9cfd60b384da833c702924dd45aac391c06f7f6906aa6fa5b59d", + "regex": "(?i)^https?\\:\\/\\/fgfgfdgdfgdfgdfgfdg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "197213d26a6ccb1ce290fa98300ddc60888f45fb48abc509d68da8e9b99d6b6b", + "regex": "(?i)^https?\\:\\/\\/df6rfgdf6dbhe6bftr6ydfbrt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "01870505153c16d2c907e0279eeac4f2fa1c5dd66021277c3002f90c63ede55f", + "regex": "(?i)^https?\\:\\/\\/hereisitnow\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "248c14554b840ccfe0e8d04ac66132ec21326870fa9f9d9559b1f6e44af19a3a", + "regex": "." + }, + { + "hash": "7a3c3d0fce99fddd8c603a96e2d3611c3c44696bc376d062d07d92cde26daff2", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f68d597a8b4fd34b4e6b90c0ab427ea201881e348376f8692f519c691db2d22d", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c02ca20fb37d448288b2de766e66e986ea01c807d3469205e2b80251d8d3a825", + "regex": "(?i)^https?\\:\\/\\/r0blox\\-here\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "26c7e1eb42876eb26598f883852fa0a7ab273f5dc7134272a96dbb34c639513a", + "regex": "(?i)^https?\\:\\/\\/n80354\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "708449bebadc886e0fb2b7d73658005abd6f718c6ec98adbee1dbaefce7d7532", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7031bd9dcde2fa3464a54a2e4eea3055a866168ca70fbe7b4ba11d1478887ffc", + "regex": "." + }, + { + "hash": "be99f8e57333e0bab050caeeb1a0135c8357f8e11ceae42afa4101d8cb3b9453", + "regex": "(?i)^https?\\:\\/\\/rbx\\-gnf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a9bacec3b854c1f824db3b650fd069656a43080f56d2d9dde70f4fa74e95d1f4", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6ce4c361dfe90c1346931876e0fbdaa9497b29280c72b38d3f662ad7b97b3c8b", + "regex": "(?i)^https?\\:\\/\\/r0blox\\-here\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f6ab98\\-fab39b76\\-4e61\\-4c86\\-8d0a\\-6c2f20459e3f\\-000000[\\/\\\\]+BLwnwDTW8nzsYPeLUDVdM0rJyJw\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2ed7333\\-b0f457fe\\-e622\\-4eed\\-84d6\\-ac7debb625f2\\-000000[\\/\\\\]+Q\\-rHEjqv\\-FQfoCSzZRCxSjAnigI\\=392(?:\\?|$)" + }, + { + "hash": "dd5158ed87a8dc63dc07896b0e336ddb8a6a07013d56c6452c7e289004ad8edf", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "38661b273cec4a242b57be55551d770575f073c1184c66449c24c30b83ad3656", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+de[\\/\\\\]+receive[\\/\\\\]+79469380(?:\\?|$)" + }, + { + "hash": "cd1e4ba81b86483d3b8b71e024688ae7c7b75327168844aa39398ea1916d1c0c", + "regex": "(?i)^https?\\:\\/\\/robux\\-fijh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "64d17a079b5e1bcb76aff8186ab8398a3c753bc8c80c4b0b4511480b1fd2fd32", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "08307a128b83067b74856b27d9c105158dcc03677100125f42e1b4497fa4e760", + "regex": "(?i)^https?\\:\\/\\/fgffggfd1\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7a13cee692480b7b13dbf86e97445489ecd168963c0476752cf5cac14261df69", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c76ef3121ecb7086df3abac4190f53388f151a70572d5d6d3b8fa8974aa1f8d3", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3124c5a\\-7ec796d4\\-9c5d\\-4227\\-8c4e\\-2d5a3e600a48\\-000000[\\/\\\\]+eAiq_X0omih_GwRpIM4QDU83XOQ\\=392(?:\\?|$)" + }, + { + "hash": "1b11713efb4421300f7806d04898776ba9b094d09ce56b3dd7ce4e51fe638789", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2fac7c6\\-e6daa9ee\\-7681\\-48b1\\-b5fc\\-2f1e3fe2567e\\-000000[\\/\\\\]+w7o_CGzImRr\\-Jib9StKvbirUGfc\\=392(?:\\?|$)" + }, + { + "hash": "ca0bba2691da58aeedefbf434698a5643a130d062e1a962d4b8dcd3346668f17", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "016eb4115eb51124b5abe09250916fa0faff841076343d9fba58a5abcf73ddc3", + "regex": "(?i)^https?\\:\\/\\/robux\\-fijh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d97814d7b0e3a3cd48094702ece57293a2241be5140831c9c3b24ee634071d0e", + "regex": "(?i)^https?\\:\\/\\/r0blox\\-here\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "03408730482a92c149000da26ac136d660804a5162775d94bd680a8f94f3beaa", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "196961c9bd1bbf635896d20cd7b3081a074cad302b0e5cd88dba197ad3da5bed", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6e0cf8d94f1876dc6636ba81ac91401e4346552b404a15298b715467f2f737a9", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "585c63a0ff6306fc53c817e40901034d08360160e4b3b520e233559dcb8a894a", + "regex": "(?i)^https?\\:\\/\\/hereisitnow\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e3e9956d4f511ee866d453bd4b4db7ead8c99ed55871c57f03992872d62208e7", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e3937ae7688cf5958c1ec5b5bc4ede0d2892e9553e7e793eaed561f98df5a4a1", + "regex": "(?i)^https?\\:\\/\\/r0blox\\-here\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e4d6e6\\-839e4cb0\\-7151\\-4951\\-bb5e\\-2af4c3e5706f\\-000000[\\/\\\\]+DmggXNoNqzJIc\\-3sOGSz7NcqztM\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f3bcfa\\-d247a661\\-f141\\-4a1c\\-b90e\\-c0d1f5467de7\\-000000[\\/\\\\]+7gVPZXU2LMv4DmYQsjJVRo0VxZs\\=392(?:\\?|$)" + }, + { + "hash": "7e43c8b812a0f583689df04c7a1d3528b395f63f632ba9f5cc542fa61c60feee", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ff28d3f6d12f8177a1021b40cc214261376677ff6d1c539a10f98b1f8187c86c", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1a53b524c0cac0127354144e9af75d9df3b35fcea94c24559bdf6d0855651c4e", + "regex": "." + }, + { + "hash": "5de86c1d8d7f2a36c364f54a7b7ec1560bc1b281e79b32ad85d367a83d501a07", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1c403461521a01195f9f4922b462f2ed0f7cc51254ee2f3980a151b96694a3c8", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b854d37e9785ecf893f2843b316b1ba697541cc3bfc0e97e0185fb24f3ea7405", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a1535b2b4a204256382c7ebf0374d437b728a404f2ce1dcea4bac07b49cdb242", + "regex": "(?i)^https?\\:\\/\\/robux\\-fijh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "09c9b5ae21bade788816c1d6db6aa2ed3daad6657143a01aa5728ae5a6ad14ba", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f3bcfa\\-d247a661\\-f141\\-4a1c\\-b90e\\-c0d1f5467de7\\-000000[\\/\\\\]+nau_OhMQdHaB7XzsqwjyDFwU\\-lQ\\=392(?:\\?|$)" + }, + { + "hash": "8fb2b34ed3515082f733184930f86b380197420b3497661c13df962f1eccc91d", + "regex": "(?i)^https?\\:\\/\\/mail\\.172\\-86\\-112\\-211\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2d84f798e70515ddd3bc9042b96a34a69e2d279e5cf81e5992c0461707904ba4", + "regex": "(?i)^https?\\:\\/\\/n80354\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5e70ef8c53ded20031cc68bfd318a95c856736c613b774ad0d094ac0e626ef2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c668f3fa89bbb141813c2c58922e46e6f37ee7780307e8700b8332cc899129cc", + "regex": "(?i)^https?\\:\\/\\/secure\\-us\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe088f6d1ccf52af2b6ee83cd2f8230bf53e51cc5ff81917dd7b29e0d8f17e0d", + "regex": "." + }, + { + "hash": "8cd50f846726fd2f4f9fb42d390851beb005995b9b484726ca934cae6164179b", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "01c7a9c8a95bbb495124d5889ab46a4a82b8288f50bbd4c63db87d518ed37f04", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6ab35fd7781a64dd4b08f7e5d909310dc773239a87b91f923efc2347b7d76c1d", + "regex": "(?i)^https?\\:\\/\\/robux\\-fijh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cac6a2b7261b41dc5b02e548606dcd975fc84428423cd16b0e8cb1703b64cdf1", + "regex": "(?i)^https?\\:\\/\\/robux\\-fijh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3124c5a\\-7ec796d4\\-9c5d\\-4227\\-8c4e\\-2d5a3e600a48\\-000000[\\/\\\\]+hBhxIIxm3sJ5hC8eiHXKOcB_PuE\\=392(?:\\?|$)" + }, + { + "hash": "89cae948ae2ba15cd19d3cedc37d84e62a05c6fb4720be82ae955c12871a97ca", + "regex": "." + }, + { + "hash": "794ca8dbc9b24b7b49f6bd9491f15f6c42fbc270ca084fa754a4928c62e95f23", + "regex": "(?i)^https?\\:\\/\\/robux\\-fijh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "097c793f9cc48d9fb111462a9c4880c7f79391fa0d83745f35885a13831a9b4c", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "28246552d80df6b8bd97cad2baf4f773961391b03338cb7d0ef2e059c3f1754b", + "regex": "(?i)^https?\\:\\/\\/suneastfcu\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "de9c67bf3235bb7eafdac7c14798a4238fa2804d1040ec67e1102617ba08280a", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f87f52\\-1e15a16b\\-b5b5\\-41f9\\-becb\\-f086504e585d\\-000000[\\/\\\\]+s5GDxcDqeJUwT3Un4_a4kaNnbaA\\=392(?:\\?|$)" + }, + { + "hash": "8a34b51b1aaf41b1d50f0eb1da5422b30982f96377ddf869cf5e9b6d94f10fd9", + "regex": "(?i)^https?\\:\\/\\/r0blox\\-here\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e3faae6d344c607225d665602ac256d366a354ab2dc177d7e3f69f681cd748d4", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2ed7333\\-b0f457fe\\-e622\\-4eed\\-84d6\\-ac7debb625f2\\-000000[\\/\\\\]+tinLDoNYDdQcc1j9ndIY2V0CMQE\\=392(?:\\?|$)" + }, + { + "hash": "2ac24a8b6cd85d53cc73ac7d7a271884e10f27870267c883b8901ae316280206", + "regex": "(?i)^https?\\:\\/\\/rbx\\-gnf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4e2d00d932bddef09870e968dbb94f010899db9b8d7612561fecb3071307600a", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f753a1a6d425c0c68ef25ff71e3016420ea56587acfa56798e5bfa98a8dee2de", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e911863561760e33e222357e3244339295345afa7492b5a94a8899bc9e6c1316", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9c7ec99362d647986a68bf8c3ae4de4ef381e9fc6174dfb64e3fca5d8b8259cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "407359b65b3f294378b4794334502bc312751df91327ac4eb44e11a99d16189d", + "regex": "(?i)^https?\\:\\/\\/hereisitnow\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e30f20cb\\-ca5e5223\\-b0a1\\-4d17\\-9337\\-4f9ffb95526d\\-000000[\\/\\\\]+IOrEVu\\-H9_epdcTkXfqTo_T6pHE\\=392(?:\\?|$)" + }, + { + "hash": "34c0ca9f5bfc95f63ad743643203234643f9a76d8f7ca98037883a1347c2db67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "134465ef8d46c4b2537a2dbb3afd72d6b38151ff5eb3bd03012ea056b32f5587", + "regex": "." + }, + { + "hash": "c6c2b8ee14f274f1f1874f7e6fcec1c313b6ff80dc4ef24ee6eaf17160a2f452", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "cb7863cc6e6959fdcb3ad07109585581bf65db08fe1a1327a553fe9366527bd3", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "20ed3d87f0d9426563d77874dbdccf561f5e79a96acd5cd6511e02a3596d8dcb", + "regex": "(?i)^https?\\:\\/\\/rbx\\-gnf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fde6c905c01125abf3487f9e1cda6b993d202a30e92581c26c05b99d6a721fe5", + "regex": "(?i)^https?\\:\\/\\/fgffggfd1\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b816e5c0cde5cf9fd771d7542f6aec4f31bada8b347e416a16dc57560fad2fdc", + "regex": "(?i)^https?\\:\\/\\/hereisitnow\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1b9929e8a465db1599829b1b752976a9a20da24da25ea7397cbe5a2542efaa07", + "regex": "(?i)^https?\\:\\/\\/r0blox\\-here\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2e415f51c72ca0bbe95b1e8db440066f482cc7f02d33697c7bfcc6fda2d5e1cd", + "regex": "(?i)^https?\\:\\/\\/hereisitnow\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4d177da0d56e112b9c728714cecd8c947a90dd3acc9d47f223aaf4ea22457158", + "regex": "(?i)^https?\\:\\/\\/suneastfcu\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "53b0be5c071c4c51fd1766bc1a7bdf08d7ed1b58c7c45bf9326f9fc63c1df824", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dafb2bc930fb6cf42d70671bc9445341fe4e68b7f72c69a42e0ca10cc9cab3d7", + "regex": "." + }, + { + "hash": "5bd9c997b21fe78c724ca9adba161422076edea27c2758275bcd15145e07bf32", + "regex": "(?i)^https?\\:\\/\\/n80354\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9c7ec99362d647986a68bf8c3ae4de4ef381e9fc6174dfb64e3fca5d8b8259cd", + "regex": "(?i)^https?\\:\\/\\/correoslz\\.top(?:\\:(?:80|443))?[\\/\\\\]+cr(?:\\?|$)" + }, + { + "hash": "cb95e34643d703a55b571a2937938570e967cd5fb17aba418137009e716abff3", + "regex": "(?i)^https?\\:\\/\\/rbx\\-gnf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2c2b8c4f0b738d71b6f3d1949ca461ab12c465d314c850b3dd15d73b5fd31281", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cabe56b92aaab9dcfc812efc8ab215461cc283f0592d26a1f37b9ff05b8021e7", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2e95466d188d6ad8798abc069a6449751b697ea6326b5312ad8bbce22e6c14ab", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5d9c5284ce1d2c8eac6951f2641962b0fda4be4527c973205983a8893d041aa6", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f2364608a59c0184f1988d25236c5e12d490c95106bc94cf27d5fb96b618c453", + "regex": "(?i)^https?\\:\\/\\/suneastfcu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c6fe7c5692e165f4a092e8ecb367895aaa75ad310ba18468762e0deced27f2a6", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0a6af640852287d533b01ffdec2fb834100e377a248de7d340b9525ff1c6f801", + "regex": "(?i)^https?\\:\\/\\/linkar\\.kifmaderna\\-tebka\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e4d6e6\\-839e4cb0\\-7151\\-4951\\-bb5e\\-2af4c3e5706f\\-000000[\\/\\\\]+89IVhunmFnkp2zhGxNpZXv264U4\\=392(?:\\?|$)" + }, + { + "hash": "f5a032d881c02be60a4a130540b0ca9d5353fe906a3d07bbde1e10c07edd0393", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e49007\\-67c32bd4\\-46c6\\-4669\\-8efa\\-c7cf6e83c696\\-000000[\\/\\\\]+a1AtHQosl7kBRQ8b_QQruP5zleU\\=392(?:\\?|$)" + }, + { + "hash": "374311dc5d08ffb6c1bb6cbc5b05f398f7fc72277fd2de29c3b0d7be2022ea6d", + "regex": "(?i)^https?\\:\\/\\/n80354\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "04beebbefff86447cac2b38f5a8317c36570cfaaf1ad9a7ed52c6475cade860d", + "regex": "(?i)^https?\\:\\/\\/suneastfcu\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0a94b7e4b42c32984b4e9f0ea22733d5bb340dfc3e273f0f95bfae529abec52a", + "regex": "(?i)^https?\\:\\/\\/fgffggfd1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "22509bd1d33b836e858017f6625bcb5c2582385b6c248be0889459dc714625ea", + "regex": "(?i)^https?\\:\\/\\/fgffggfd1\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4504d18c086b3d12919a773a367c9dc11757a8fba48a7c8f678d96cdc0161891", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "42ae794210729a291bfe14ff125424759247fdb4eebece9e6e60485e7b2654e9", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2a7dc89d928ab9b0d5e156fecd414571905ee6e0591aefdb1060d50c0a1ec036", + "regex": "(?i)^https?\\:\\/\\/suneastfcu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e46af4d8090eded8e20ba1062adc505c5de54f42ce2e322534181e089f1b96df", + "regex": "(?i)^https?\\:\\/\\/suneastfcu\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ae266dfb7cf942b40c5c5fc1bd9802a1f58acc449e94e9cf302d069f0197f04c", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e3e140\\-fa35c535\\-5e4c\\-4c4a\\-b88b\\-d3c31012962b\\-000000[\\/\\\\]+4dipiQvBKj2DFj2BvvGr5QitF9c\\=392(?:\\?|$)" + }, + { + "hash": "8105e4d0dd08454456cc3c56e4811211bd6a11e4db6d8a14f67d82419b539af1", + "regex": "." + }, + { + "hash": "86f6f46a36650c6ef817d47673d2741facc51526aecd7ade1b4acd478163d87c", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bb3dc37cc38e7f7e8b9ca489ec28a19ea7b84882fdfafce3b55095ee0cb0f9b4", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e3e140\\-fa35c535\\-5e4c\\-4c4a\\-b88b\\-d3c31012962b\\-000000[\\/\\\\]+WAH3aIvejvxaIHXyn0IIgfMQJMQ\\=392(?:\\?|$)" + }, + { + "hash": "4443538e82f359b3de66d85c8284876c05dcad2fe5001480ab91f30343252cd1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "2b94261affbcde05a1e9d9de9fb279da0da07b46957457d8f9cbefccf05ce190", + "regex": "." + }, + { + "hash": "ce7b6954429613c97ff42603f3bc82da2daaa10798eb9007a4413ef6a0011760", + "regex": "(?i)^https?\\:\\/\\/correosly\\.top(?:\\:(?:80|443))?[\\/\\\\]+cr(?:\\?|$)" + }, + { + "hash": "24e5ebf529a35b673631a30282ea38effc73f36f011f18ca3b032f3947e9a64a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "995d367f359837f8b91cdbf7e04310087ad9c98b7f04329b70a0f23131c6c090", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0a95ece5a2769c7ba1603abb60ca6ed96472a3cdb60434cf0058a04f0c449378", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8cf74051096fd637706925b27d05ed1bf3f3d80a8d2b789efecd947f04dae743", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5c4456e36b0f135bffe53cdb161ac59162e13f39367b63829289eb8783b90023", + "regex": "(?i)^https?\\:\\/\\/robux\\-fijh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d46a385d5614673011c0125ee2bc974d2a0bfd58132f53c03412bc02314c8ecd", + "regex": "(?i)^https?\\:\\/\\/r0blox\\-here\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0ee1ec542f575a9fe68bcd35a63277e4b2fe262689f799afff635c1433d73c09", + "regex": "(?i)^https?\\:\\/\\/robux\\-fijh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "56eac84b861ccfbc199e14685d733c26cf5b53dcc0aa0365f2e4f7e95415e2d0", + "regex": "(?i)^https?\\:\\/\\/robux\\-fijh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ed4022a7c53ce494fd889444c54b228c938c7614baae7c9d74763eeb86a53e0c", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "de1175b193d02849d408b2075c2c9d319b07093adf8e4c3d5dd37d05385334bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+online" + }, + { + "hash": "228ce67aabb35ee802389d9b109f3fbe54216758dcae1e527798dae1b0796baf", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ec5b5693c60151942ff50bb488188fa50cd40bcd3d6fc6c811ef41decc8da61f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9c9d61cf2a6d9754e8a59a41c8aeb864711b3a37036e67908c79fc85d5509d03", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6c14b280267664e4663e6bda1e037a772bbaaa5cbc53d9fbf3df3f5c7a66b39c", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7ca92d0f772bb0571dbe10ea2dafd899050b6bd793a3998b126df1acbd619338", + "regex": "(?i)^https?\\:\\/\\/n80354\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "aac6874bef0fb2703618796401fe154c576de17d7d3c8a047a43df22946cd85a", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e6a22d927348a4e0bf602c8f95b0ed415418b995b16499266de42ff73dc53f09", + "regex": "(?i)^https?\\:\\/\\/hereisitnow\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fc982de91889ddd18951b115ad448c57c59a7a00bc21b593ff682d8e816fad3b", + "regex": "." + }, + { + "hash": "097764d8352ab8f5865e52db1855f382b8cbb93f1ecd1dca78802908dbca187e", + "regex": "(?i)^https?\\:\\/\\/hereisitnow\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "45c4a3a22ee9c8f0f5d5be5018ad2620a890420f2f2d1ca6ae036bf7f5f3430e", + "regex": "(?i)^https?\\:\\/\\/r0blox\\-here\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass5\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2fac7c6\\-e6daa9ee\\-7681\\-48b1\\-b5fc\\-2f1e3fe2567e\\-000000[\\/\\\\]+e6n\\-sJUUxq_buzqzOX7cKUo7jYY\\=392(?:\\?|$)" + }, + { + "hash": "979c880995900778c6d1b3b8d79841cc35c8df553b9fdea5ebff8e055514901f", + "regex": "(?i)^https?\\:\\/\\/n80354\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "27892546c719daf584059a9afb5012ce791349230c8497d95e6db5a0e3c6145d", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3132197\\-15fe9bf2\\-8295\\-4772\\-adba\\-36c3cd4bca09\\-000000[\\/\\\\]+s3UJ4v3uDfyf_p8dkcYmAEj6ksQ\\=392(?:\\?|$)" + }, + { + "hash": "6865a15f6924bfa8ae8738a4ccf1e798c0becdf84f3b8c2d4f757d9525d1e84b", + "regex": "(?i)^https?\\:\\/\\/rbx\\-gnf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a08d82cb281bafd9c838e9eeff6b4bfef8b1b178cda9d67d08f0cd4ec4e45ac1", + "regex": "(?i)^https?\\:\\/\\/rbx\\-gnf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3544831d29597024adc8037363b33d60f917500fcfced1fe44995b4f49e8584c", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0a41f0581325f14ff1c71b9d6899d322d189802f894cebf484d74f9befa57f6a", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdyufg89585\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2d807684e4ac6d832746dba3feac57e647801669a2d5fd3aedbb8c0732344c83", + "regex": "(?i)^https?\\:\\/\\/robux\\-fskm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ccf95b1330c24b1358e2e65f404cad21784f64838b3e06246919fbe8b23c2acb", + "regex": "(?i)^https?\\:\\/\\/rbx\\-gnf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3132197\\-15fe9bf2\\-8295\\-4772\\-adba\\-36c3cd4bca09\\-000000[\\/\\\\]+UhAxsvB4s7D3uzcD1JpjN4\\-r8ME\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2e49007\\-67c32bd4\\-46c6\\-4669\\-8efa\\-c7cf6e83c696\\-000000[\\/\\\\]+1TuOCY4WwW6WTCAVPEOWn3N6X8U\\=392(?:\\?|$)" + }, + { + "hash": "45c44442832a1ab364f082e5a01d7a9e988bc42af87942fef06ca6b22928d415", + "regex": "(?i)^https?\\:\\/\\/r0bux\\-4\\-u\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6856cfb36d150de7de5ffd1d5f1fbbf9fbd35a6a85ee116b60106cd7260caa77", + "regex": "(?i)^https?\\:\\/\\/dgdfgdhbgdfhgdghdhuihdfhh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f13dadd11431933941c3373af771ddbb0752ccd673c234535841606de44158e5", + "regex": "." + }, + { + "hash": "3e15e4e414307e9e48bd2ed8a87d7782c44b3bf8b93490894d3794863f7b9903", + "regex": "(?i)^https?\\:\\/\\/hereisitnow\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f6ab98\\-fab39b76\\-4e61\\-4c86\\-8d0a\\-6c2f20459e3f\\-000000[\\/\\\\]+Tg6O\\-hThclKW9xOVx1lRutqyRec\\=392(?:\\?|$)" + }, + { + "hash": "77dbaf8bac6cbf7b38e0b4538cd1dd8753371e94b46c50c1dff19f74bfc840c0", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e30f20cb\\-ca5e5223\\-b0a1\\-4d17\\-9337\\-4f9ffb95526d\\-000000[\\/\\\\]+hcB7qCXzTE78Fg4Bs8Mqcs1V4UI\\=392(?:\\?|$)" + }, + { + "hash": "ba58323523a727b0a182a48a048a0c5730b9a317baa08d958c43e34e20fd9f5b", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-denmark\\-fees\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6816ca003a8ea2ca44bfafc9d5b4ab0ee338e0e468927079b496237d46064be3", + "regex": "(?i)^https?\\:\\/\\/rbx\\-gnf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e7e99d72fb6577c1606b82cadc74159525f47b8aa4830af56d8cdb75faf03a2b", + "regex": "(?i)^https?\\:\\/\\/robloxbloomeffect\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "507df2814f833ba93d181c1156cea505523544f40840cc6ac6e8452be4a4641d", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "db733ee76c3121d4defe8a3424870a0fa9be3ed1e724678491778c9b6df44d37", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e91165208bf687ee60ba23a3c3f0786b2521117dfbd8472b76ad15d9ba9e6df0", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9033700a4be39a2f869da38d96084e77527507016bfb9a2db77da7ad851dfdc4", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "193ce5d960d1c8339a9767078335ac709f34cbb4ca9924fe016d2f09508f84b4", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1b99fd2de1176bc32c71484eb5cded582d3830f023cf6dd17871bb3f1eef49d6", + "regex": "(?i)^https?\\:\\/\\/robloxbloomeffect\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "044a72e6cdcde891f91413ed768fd6b87de12a9d430fa29ec44d7de2ce80bf66", + "regex": "(?i)^https?\\:\\/\\/sdfhdyrdejhfgsdfgsdrgyderyhghfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42171df940782741971b04a97a8b3954be6d1386fed0718351adc07413b1b529", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9969132171f323774cd4141984b349a7527b6d84b9c6a3a3f6dc4804ce8af1e1", + "regex": "(?i)^https?\\:\\/\\/rfgrdefgrdefgsd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6950e189efd02f05218bab75a96a3fb44a9b9d161e93eb8d0d727ffdd3c4eea6", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ed80d905a3d41acd2a1aebc7689c792a8f5db279300f5d50b80b11879d1cae12", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d0e87a08d4811590fc9b57b3acb39f95c3fa66e36fbfc4da7b96ba43bc761b7c", + "regex": "(?i)^https?\\:\\/\\/sdfhdyrdejhfgsdfgsdrgyderyhghfg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6388a4de17a7d516ee695c24d503d8d311e1771ceddeac156afd128ae244b6dc", + "regex": "(?i)^https?\\:\\/\\/sdfhdyrdejhfgsdfgsdrgyderyhghfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3be53f22cff959c595d20346363085ccd9cfe137defcd820d027701ac7e91311", + "regex": "(?i)^https?\\:\\/\\/sdfhdyrdejhfgsdfgsdrgyderyhghfg\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "794ab5fdd4c993339e0b1d4fbcd0ff737b487d6bbb49cced72cc8066fcc2cac5", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2d37c999cc0782f34e484725071d21a520c164ea626a35ee84886c53a9eb0c52", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c07a893aed0f631c7fdef9e95ef2bf150b7962fd53ef38d5b0f27b381676cfc4", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "17c6e301e44a9c2cfc4d2f35c46252ab91b02f0d449d6e7a7a27281b4e129ddf", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "af84401f9a38d2b54e39a17835a27bbd71896ab410fc40c7aa31d3a179ac769d", + "regex": "." + }, + { + "hash": "8bcee4d23af81aa5e9bc1c3d6dbcfa6e333f93bf2775e2d3b3c770a770b0475b", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "53efee02629f5a7a5c23209083bf8f6640ae1730907f1909a6f1a958054d05b1", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efad9e91ca47b24066788b89f4e55979bc5de1517c2b0413c02367948a340cc2", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+1[\\/\\\\]+01010191e3127e5d\\-c3c2f80f\\-5228\\-46d3\\-ae51\\-a6777e1802f0\\-000000[\\/\\\\]+cIohuFaWuN23Yrxshv5zyeODZRE\\=392(?:\\?|$)" + }, + { + "hash": "7102d6c267abc36622c18f4c127a18af3a920980a406514dfa5074208d7e1875", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2f967b106fbbca1ed4247335fc2b2a969a1f8e452035759c794eec517be50fec", + "regex": "(?i)^https?\\:\\/\\/wenhostuser\\-nameaccess\\.my03\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "10bdfed8c6616585afe5ef4489953ea48138f524b76c240cc5ebff0ef5f031fc", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a5fd505eebf4b4e444cf477ac850ac93b534bb2f52fe25fd6978764172b63b6c", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjikdfghuidfgjhdfgjikdfg\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba82d2e7b36af40d839590806a3360ff84ddc302fa2832b9bbf81b7c78fdb6de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ccdbbdf6ab098b4ce977c5b8c43f47d805acff89bcf9ed900f7fdf09492dcf17", + "regex": "." + }, + { + "hash": "b013a4e22451d38fdf6d570d4ede626d9baaabbdd4dcdc7889df8b06fba187b8", + "regex": "(?i)^https?\\:\\/\\/pub\\-a5855173111e4a17bcf6c4e358e6231b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d69991739782b0589a1adba63aac79648aaccb066f38bde28ccaa65424d884f1", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c373f6eba54944b85431aa7187d6e72cec8041475e97c92b5375a5057a49eb80", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97587685757829c9e62773a83d9cccbf918fb0ffea1d42524388226e2059569e", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a73a7979ec545b6e5d8b092e7f3433496f85a65dfe5754cf6f84cea01dc4f853", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "689dee72d2b441d20a9ac61c36504b9c628fb882ce0271ac49d7582bbbf6e54e", + "regex": "(?i)^https?\\:\\/\\/pub\\-f6b899c651fb4d6fb21b783c5869b800\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7838e42baa8495aff6f5a21d0d60a387967bd885767101829fedab7a14efb892", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8420ed306f9f502acfcac49f07f0dddf0fbc7d0d2dbfd0376a6f530d26abe428", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cfae428fa3874f6740b87c5b924656a46b35a618f2c1e910f8f77029b7a45e10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fcc09ccaff5a2656bfc8adace0a27e3627c89db598fd2a0985baadcc66fc3249", + "regex": "(?i)^https?\\:\\/\\/sdfhdyrdejhfgsdfgsdrgyderyhghfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7823d0365d9546dd01fe58d7166fe80ddd24574289caa0e41b495c87f6166995", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "29fabd2b507122aa20a0bae433ce4a82e769dbe291f054b31d0b68193a512b48", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8a25174b37f1d75ce8cc4bbe881bb38881756fcf30bdc326095ed118c319831", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9360a7493f998bcdb7a5e7b7ed85c253d0542bdd44b4e9eab9d569d2e2399e4a", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab913310824776cbd8412b27ff02a2f20c44c51632749900ff23981702c10eb", + "regex": "(?i)^https?\\:\\/\\/quole90\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "49bf74b77ea240f361d0a728dce01f07672935f76f11bff0ce1a850c0668b061", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjikdfghuidfgjhdfgjikdfg\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "59a6c46866b55f02161834076987c83711a9b007284c4baba854264ee7de6cc5", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f0d4db0b27e68febacf44bef700b31b4c91a7606e5f50ade99b51a68f2e139af", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjikdfghuidfgjhdfgjikdfg\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45ac3b2bfb6aac3664d2ed1db013a8af938147d3d68a0811f36c2f9569fcf512", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bc0d5e467dc07ade55a8c3677069e872a8c56636e762fadb1515c2ac2561a845", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2e9d3305fdaa5981bb287795beee1c60cb13665c6ef270adc36ccd14377e2ce9", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6403330e896eac63c0c5a2f6cbed67e6322a39617af000ef8d30ebd2736f9144", + "regex": "." + }, + { + "hash": "dfc75291b6848f446d9ca88bb7b5040637e812a3d55ebf37b060269ca6b6197a", + "regex": "(?i)^https?\\:\\/\\/sdfhdyrdejhfgsdfgsdrgyderyhghfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d5a22ebf2835a8e2ab8082cd601c87bcaaadc642076967758776397170af58b8", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfae428fa3874f6740b87c5b924656a46b35a618f2c1e910f8f77029b7a45e10", + "regex": "(?i)^https?\\:\\/\\/correoslb\\.top(?:\\:(?:80|443))?[\\/\\\\]+cr(?:\\?|$)" + }, + { + "hash": "a757e51acedd6c021c142e831960ffddad0687fdf28651391348224f9d8d74fb", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c89163f48ce2656484079a391f288f6d624302da1eca77993eaebefaa8fb129d", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89d91bc284ca66c838506a8c0405a23d06b214be6e5ad5c6fd5b3185c38b1883", + "regex": "(?i)^https?\\:\\/\\/sdfhdyrdejhfgsdfgsdrgyderyhghfg\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aa4548a30e2b8628b032f06001c9a9f3d80a6c851827b0198348b032fe20875f", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dfe5e6dbc8232c30a60ebbf6cacfb2d435b90f69f7a244e29167613619c45fab", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a7465d1c8d2dfb5a4c8b9a21c69aeecd4039870475870d451d9d825551f33a3", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjikdfghuidfgjhdfgjikdfg\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "137f9882e5b17e3bd7621da16c297267ea759ffe8387beb8d20a8df3a1424e38", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "48e5bc26301432f7210594cd0dc00285af588c9a80eee82e1189892287b25b48", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0328174d9df0a178503426ff0c1a5e0c2313f2769a844ac01c5d034a995cb3b2", + "regex": "." + }, + { + "hash": "afa10bf97cca913a318e62e4d39d2756ff5c39de53dcb027aeb48fc631a0a2c8", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "874c27c692e0037cc60ab1b75f5bd607e833b432b00c974e9cfe1a07f4855c4a", + "regex": "(?i)^https?\\:\\/\\/rfgrdefgrdefgsd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c53b96221f94d3450973e7c58ea6c6a24724bc18f28436a0d48c8c485ac4598b", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b98a771e29f8992bb14bd700920875d68f9ae892a4cba7745e4f69a6350fbc32", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6dfdd2c2fdf5f7a0868b8ab36c144cff072c075654b87470818e07ad8002dec8", + "regex": "(?i)^https?\\:\\/\\/1225453622233562\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0d7b2ab377f4c0bff7361bae9feaaa9512466c689155e6cd71e497304b8db141", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c3a4ab82444a7346a7031bcf044297e65b68b0bc29de47994e3d085c5df222f", + "regex": "(?i)^https?\\:\\/\\/sdfhdyrdejhfgsdfgsdrgyderyhghfg\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6533296c8c795988def5000b2e16d6e032405ce3d185248ddf804cd828d141c", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc1440e7c3c601b5bfe96458b27802a62d4e64d2c86cb1fbfc8f5b0d156a3a15", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b8f2360f9165ac1600a1d96ccf6572ed54de88cfb3a6381863a6916d912838a6", + "regex": "(?i)^https?\\:\\/\\/robloxbloomeffect\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ca8903b3db52049af95513157ae3471ee2588602ff9e1ea848fed8cf9820c1fc", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee532296bdbc518c5a20f5f2ab055033b13ab7bbc592e6f1e877e1fb4e96d86b", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f3c6093d75b46dbc7bdc79e0d0dc6ec91a7967b0c18b58274deb3b1ba226ccc7", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4abd2d29acc5c2124d21f5eafc8ca8ec7ecf06e60a3013a61ba3b94545d8bd1d", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "72abb310b8f2bafae33cc92b2740920f378b9158dfea85181c93078b8a7ee2b2", + "regex": "(?i)^https?\\:\\/\\/robloxinsanitygame\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12297c1c586b288d877a1e6dcf5b8e39344d999af2cc7e7a17a06fb5495cafaf", + "regex": "(?i)^https?\\:\\/\\/xdgsdfysdffghdfghdfgdfg\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63b436175c0f1e9453839c447607c73a5a3ea19ba136b3946a938fd356e6705d", + "regex": "(?i)^https?\\:\\/\\/robuxuka\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ceefd491aa8436a9fbf73ebd3a8efd49532c1c3ff0e1c03251300230a9062fbd", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1eb8b52d2c5c5bdbbb3e846e467f48bdaed401678ee4288745980371c8d21e03", + "regex": "(?i)^https?\\:\\/\\/sdfhdyrdejhfgsdfgsdrgyderyhghfg\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11651c183a2bf4d0d33d078731ba908d4d9e1f81e5f0a585c9593bafa8deef4e", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "85a1f69b1e5237032a66a5bec8800f303546e9fa7ae6c78f0c9c21b274f21002", + "regex": "(?i)^https?\\:\\/\\/rfgrdefgrdefgsd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7804f65458d389f69ff988ec68907d0be8ea75d4f87821a7b3fbcb2b06ac0a9b", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjikdfghuidfgjhdfgjikdfg\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab2d575e04696f9ebb945da101b8be024068c085801fd740555121af0a6e0fdb", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ba82d2e7b36af40d839590806a3360ff84ddc302fa2832b9bbf81b7c78fdb6de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "9a1c6a35eba42dfcc37c593fc589d2a9a51d719481a196c161c3278722e3d5ac", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "687df4c8a7b378c793f160e2c7a5829f965d9015b23149acf3185d847cf38280", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "27896065fbfadd44795788440568dfae9b4a6b32a9bae9376e082fe45cd475e9", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjikdfghuidfgjhdfgjikdfg\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1884e4833e859911020c641efd26b1ca24df8efe8d14ee6155fa64b6761904f9", + "regex": "(?i)^https?\\:\\/\\/newone\\-103512\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0eaf025a9622ff71ff62282fd9ff2371680a05fde5a6dc706578ae0384a083f7", + "regex": "(?i)^https?\\:\\/\\/dawybhkdnawjtdbawykdgawjdfyawjd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a193b4a265c18287c47edbb9f96f001ff6b8654da9ec7da0dd6660687a2f3d4e", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjikdfghuidfgjhdfgjikdfg\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab33427a14e73475fa3d3fd5d52dec0e2125f7d001084c5b887b3835ab86535", + "regex": "(?i)^https?\\:\\/\\/dfghjhsfgjikdghjikdfghdfgidjik\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2e90727\\-0771729c\\-76d1\\-4a51\\-b9a2\\-6585b6a626f1\\-000000[\\/\\\\]+Pn4WN47ho8ULvdk55JMy4e0ztkE\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass1\\.info[\\/\\\\]+2[\\/\\\\]+01010191e3127e5d\\-c3c2f80f\\-5228\\-46d3\\-ae51\\-a6777e1802f0\\-000000[\\/\\\\]+7is7TxIvVSgmjkyeqvP9kU4kfuo\\=392(?:\\?|$)" + }, + { + "hash": "3d7db5af16916ed5b3c4ed23159a39185d6ee9a59e2ace22a55ee6cc5745d18f", + "regex": "(?i)^https?\\:\\/\\/dsvfdvzscvrfdss\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "61b6d905870a700422ca212394ed8cb3c970fda00b027ec19680dbc5e03e13cf", + "regex": "(?i)^https?\\:\\/\\/gemsandcoinsvip\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d67ffa\\-13664aa3\\-3698\\-4195\\-8775\\-e71c4da694c1\\-000000[\\/\\\\]+lCy3f23lV2EDs_Y4V9lfOHQ8Q\\-8\\=392(?:\\?|$)" + }, + { + "hash": "436e0c6c4175a19aebe05352d1dd98ff2f039b5a5cf775527265a57a1f5c2114", + "regex": "(?i)^https?\\:\\/\\/gemsandcoinsvip\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "327e4e5ac3b79bbc709dbce5063d95bab9821c5fc50e46cd50839d76c193c37e", + "regex": "(?i)^https?\\:\\/\\/get\\-your\\-rbx\\-here\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "50a88db39cb7ce84a820de14239e60fbb0a8016d1bf9f27a3cda1e686a9b1c9d", + "regex": "(?i)^https?\\:\\/\\/tiko1xd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b0d70f205d676f49a846ac87ecd480ab12662c8c60c57ff31b1d64d8091cb1e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+miles[\\/\\\\]+miles\\-Panel(?:\\?|$)" + }, + { + "hash": "a2f26e2db86188c639a312d01c08a2e6012cdfd0435e2c7b1f781ef39c9991d0", + "regex": "(?i)^https?\\:\\/\\/tiko1xd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bd82d5a42c50feb84c41fc08986d706307e57edd251ff89a9179ca50ebaa670f", + "regex": "(?i)^https?\\:\\/\\/get\\-your\\-rbx\\-here\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "23fad8fe6ed1af40f0a4d8a44d55ccf1e38b32c34507b926adc539e6b4ab2bc2", + "regex": "." + }, + { + "hash": "52f647f374eb4d28246752bb6446add945d65f6772d39b32091729b667813531", + "regex": "(?i)^https?\\:\\/\\/tiko1xd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+homeworkjk\\.blob\\.core\\.windows\\.net[\\/\\\\]+cardiff[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "e0a33658b6ee858b63f23410d638b258d71022003735e24701de53536d63c260", + "regex": "(?i)^https?\\:\\/\\/pub\\-1c6c964837b14353a5ea41b845321b75\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e47cbc3e03db2e31adb8bde24e8f17cb8dc12d66c862c1238e4cc16684aa6f22", + "regex": "(?i)^https?\\:\\/\\/gemsandcoinsvip\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4801eae253b4f6669bb0cca20378cd5f171733b08c5d6de72f1d1c9a5574ba00", + "regex": "(?i)^https?\\:\\/\\/brawlino11\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "56426d8c633b7301ffa3e4d898666750b75b2951ef359b3e380e0aaca7e261d5", + "regex": "." + }, + { + "hash": "2a19c0a7d6ee96c24af0f26fcce58467c85a7ad2ac664d61117d43d10e8f901a", + "regex": "(?i)^https?\\:\\/\\/sdfgvsdzfvgsdgvfgfd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "92d8841fee880f4fcd26f2ee22e7ac6b858b079e3cb0028fb477adef779345dd", + "regex": "(?i)^https?\\:\\/\\/tikou0\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "910244793ce0bb259c27d87cb19f3c5a0a0366c77156139c4cdd3a36c2acfcde", + "regex": "." + }, + { + "hash": "7720c8a64faa9fbae0f8019b93ecd743edb95b1a7bd263d1118bf5bfc40401e1", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f8b1b3\\-aa7d2e92\\-1798\\-455b\\-b765\\-cde49ee0a091\\-000000[\\/\\\\]+moJbTX7Hy95GfjyLJxLKeDCcS5I\\=392(?:\\?|$)" + }, + { + "hash": "6b57bf588361f3f1b33e60ab1e173be3ab6aa97c37e115b9b2efe3b9d985ebef", + "regex": "(?i)^https?\\:\\/\\/brawlino11\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fbd005dbcf2ae0acf081c0f3248d4480730e231d045c255822e8746119fb4bca", + "regex": "." + }, + { + "hash": "24728514bccee30c331e8990091e15f120a6b74111c9fa3d9d8a3f65a267b4fa", + "regex": "(?i)^https?\\:\\/\\/tikou0\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6bfe9d9298516205d9f722950b9fe6497f1affa2397a7ac19424eefe1b830e7f", + "regex": "(?i)^https?\\:\\/\\/gemsandcoinsvip\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d446455a87c16a9086a446d7c2cd523fc6faea5c145be86107e48612a99e4889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "05fa847d6ae0b3f1bc5c256bc641e9e19c5029d04351fb95b7bd541e010d1d25", + "regex": "(?i)^https?\\:\\/\\/tiko1xd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4a8801c3b02d750be52f8cebde08855fc03ac2a96e6878c8918a20348685e106", + "regex": "(?i)^https?\\:\\/\\/brawlino11\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8cce28b60f3387b3d6950a1ed00dc6b0a46a714d4891bf578d615328bcd4e047", + "regex": "." + }, + { + "hash": "d446455a87c16a9086a446d7c2cd523fc6faea5c145be86107e48612a99e4889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b6da0d9a864e8cf1afa3dcce9de083abd2e5b9da622609cfd0697f8796988c91", + "regex": "(?i)^https?\\:\\/\\/brawlino11\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2e8189d89af46229893425e3b3ec2a361ea26c4278b92194579c83afd15ec627", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1473a2089fbe645aeae110c67ed77950bdc2b668e65fbfc6e3d41f2f8bb3f6df", + "regex": "(?i)^https?\\:\\/\\/get\\-your\\-rbx\\-here\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "89c00e2a29815d1b07860423f177b1b2fcec3b1d47dc0afd65da5da65fc4b542", + "regex": "(?i)^https?\\:\\/\\/tiko1xd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "597343c7d4939f67a7460e9dd713f996d565339bb4e1a5dc7e2fa876af99be0b", + "regex": "." + }, + { + "hash": "5da795fa0e44120cc7f339cece6ac3618141c99cdc93488cc4d2b96d8a2be4a8", + "regex": "(?i)^https?\\:\\/\\/gsdft34d\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "178df320db89ac7edd6c019ef531b10a2ce438f73e0f757397f5885a82e5bdd3", + "regex": "(?i)^https?\\:\\/\\/tiko1xd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b2cde4948eb15d449907dbdd7ded71e770fe185985492904160e6abafc901c5b", + "regex": "(?i)^https?\\:\\/\\/sdfgvsdzfvgsdgvfgfd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "aee083985811b0b6004d7bc29ee996d830e0a2335526125755f2d0988f32af7a", + "regex": "(?i)^https?\\:\\/\\/get\\-your\\-rbx\\-here\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2e8189d89af46229893425e3b3ec2a361ea26c4278b92194579c83afd15ec627", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d7d8b4\\-0e5703fe\\-0381\\-4b4d\\-bc59\\-6efea2624c34\\-000000[\\/\\\\]+KGUz6wFab1olE1X1Uly24JuUzbE\\=392(?:\\?|$)" + }, + { + "hash": "476f4e57d9c7bb43849d08f2e9471713cac963901086c4617b6aeda10222f5d6", + "regex": "(?i)^https?\\:\\/\\/brawlino11\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b024923c7a8e33ea53933b934a23d485683d1479070081ec0b65a82c6d57e8e7", + "regex": "(?i)^https?\\:\\/\\/pub\\-a5d0a1e1fb5b46ef9c87239b02dd2f26\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass3\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f8b1b3\\-aa7d2e92\\-1798\\-455b\\-b765\\-cde49ee0a091\\-000000[\\/\\\\]+_pHpiw4VGr0iiqkZ2e_8sdStV5Q\\=392(?:\\?|$)" + }, + { + "hash": "77dbfcdfc58c12732b14acce4f2eb1b414554e960d032361d3145677fe55a4d8", + "regex": "(?i)^https?\\:\\/\\/get\\-your\\-rbx\\-here\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c1487af50b7f2919e34c9b554040d0ff406f1fb309d47cb7a9f60148aac55f8f", + "regex": "(?i)^https?\\:\\/\\/tiko1xd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d0289535424999b40c0216759cb811a866121f4f24bb57f17c32a72836627924", + "regex": "(?i)^https?\\:\\/\\/pub\\-e25581fe8e9b412a9528333bb740a5b7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "10e486d408cb87d74d66f83ac119fd493b3e8790039440455bddc9696b4cd025", + "regex": "." + }, + { + "hash": "1ad61838d95a75e14cfbcbc074e2c46226cc7d24bc4a158a71cc09fe1d9d8f3e", + "regex": "(?i)^https?\\:\\/\\/get\\-your\\-rbx\\-here\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f39b17\\-2934493a\\-22bc\\-423a\\-95fc\\-cd03582977e7\\-000000[\\/\\\\]+1XGpLdRPAscuMucDaEnXFvBpP7k\\=392(?:\\?|$)" + }, + { + "hash": "14b23ba366de8620c2bda952de53ffff5c3cacd575715fefbd045bc80c4fe151", + "regex": "." + }, + { + "hash": "19b8aae377b40fb6939619a2fe2f2fc177dd802c79a7cd91d8a4f8a71c762bd4", + "regex": "." + }, + { + "hash": "d70a7c4589d4ff177169d9eb2d5f37cdd3bf9678a69d088b660c97979d77c9e0", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f39b17\\-2934493a\\-22bc\\-423a\\-95fc\\-cd03582977e7\\-000000[\\/\\\\]+jjM_zjrl5M5PO2yFwX5oDsHXOHc\\=392(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f629bf\\-c8e4409d\\-32dc\\-4b65\\-851b\\-1d200f5dc638\\-000000[\\/\\\\]+izbohM_YGOjIPe9HvFdNSUDQOqk\\=392(?:\\?|$)" + }, + { + "hash": "a1ea40aa152ef2e15a3d7390e2fba41864bcfeb10771b2101b474aa1a990940e", + "regex": "." + }, + { + "hash": "3c1d82b1846399126f119073bec2857d9b6359f43959e484dcf23bd8939ee9b4", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d7d8b4\\-0e5703fe\\-0381\\-4b4d\\-bc59\\-6efea2624c34\\-000000[\\/\\\\]+59143oUTSuN6LxL7DA0IaXVoKko\\=392(?:\\?|$)" + }, + { + "hash": "93b850f9aada4188431e166c601528bb5e76650e5a5dae6d6fcfcbcb771b7721", + "regex": "(?i)^https?\\:\\/\\/pub\\-21532621d0b54eb2b72835197c62a310\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9d38e00f4ee94d5736e3021834ea8bcbe3cb339958f8abeff90e5633428bb59a", + "regex": "(?i)^https?\\:\\/\\/tikou0\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a7ae129baa67b0b3a42075b41ff947a319231ca7147063364a1057ad80af7584", + "regex": "(?i)^https?\\:\\/\\/get\\-your\\-rbx\\-here\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1726bd3bb172a4db82900056fbd3d25367f7b21fe6c40ad54a2b51c0da68d54e", + "regex": "(?i)^https?\\:\\/\\/get\\-your\\-rbx\\-here\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3b38f22a431f5d08861f167abedbc2826feb017f42cecafaf0eb5f351efc223f", + "regex": "(?i)^https?\\:\\/\\/tiko1xd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3d082b095d2f7d6bb35f5920f703d17ac16129578c4f789debc540df8d017faf", + "regex": "(?i)^https?\\:\\/\\/brawlino11\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "928721df0117da378730e6fa3a26c1e357edac70e9a0c043ad8674ab77ab8624", + "regex": "(?i)^https?\\:\\/\\/brawlino11\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9b037ae40d4bdb23e668fae53413e5af3afba0ad9474a39e7a42a988606ad744", + "regex": "(?i)^https?\\:\\/\\/tikou0\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "83be733a08a1d0c298f0981fc4cb82348635e792cfae5b619afd54e6b10ea1b8", + "regex": "(?i)^https?\\:\\/\\/sdfgvsdzfvgsdgvfgfd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fe6e7b3983dfae3bf4d2255c3028cb7f7d160721777b75e785da031f9e6da61f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a13ce436e214bd1dec153d6182c81f08b6d0612392c379984a041b5382ee5e0a", + "regex": "." + }, + { + "hash": "d8b3fe5f68e161828a2eab2ba2556a07b452775dedfda65fa469797dac942140", + "regex": "(?i)^https?\\:\\/\\/tikou0\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fe6e7b3983dfae3bf4d2255c3028cb7f7d160721777b75e785da031f9e6da61f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "35e06cb562ba901f17bc4996b30b4d470d3cf0abba9e6e69a784853f5090964e", + "regex": "(?i)^https?\\:\\/\\/tikou0\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0f71166a9cb6d5a4b8a088892d6e1503999eb6762f5462d257f013fdc67aef21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tn\\.jsp\\?f\\=0016DPLb9yOipb4zgOTEobeXecvNdVP_kJQYS4ANPNdBqLVgz2ov9vEH_yCtqkQh8CbjLHhfZSney3b4PLP4PJ9K2YTL9PgrbmAVeRxp7zeAR9z80I2yCVhk_IzlvHzcokCXA4A4626Auksus5FOM_DNoxuSu_Q7984cw0MvbkxptA7u8ACaWVR9nACRAxLM4WifjsMzcarOtI\\=$" + }, + { + "hash": "44c86258437fc83904c712ab5ef2abb87ab14e291cee43118cb347ce4e4b2325", + "regex": "(?i)^https?\\:\\/\\/fwd497866626788\\-ist4884380077\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass2\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d67ffa\\-13664aa3\\-3698\\-4195\\-8775\\-e71c4da694c1\\-000000[\\/\\\\]+wGUykAa4Z0_mh65Q0UDwoyVhaO0\\=392(?:\\?|$)" + }, + { + "hash": "97587b75b5cf40716ec4b3329462229d8b6032afadfacf91b054183b013b3eeb", + "regex": "(?i)^https?\\:\\/\\/tikou0\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6c39227bb9a1900058d5547f68f341079cd5d930fddb2693c7df99cc87781bb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tn\\.jsp\\?f\\=0016DPLb9yOipb4zgOTEobeXecvNdVP_kJQYS4ANPNdBqLVgz2ov9vEH_yCtqkQh8CbjLHhfZSney3b4PLP4PJ9K2YTL9PgrbmAVeRxp7zeAR9z80I2yCVhk_IzlvHzcokCXA4A4626Auksus5FOM_DNoxuSu_Q7984cw0MvbkxptA7u8ACaWVR9nACRAxLM4WifjsMzcarOtI\\=" + }, + { + "hash": "0914cb760467c62c2044d7f5610d76a9170b79ae32fe6d59ef90f9becc03376d", + "regex": "(?i)^https?\\:\\/\\/www\\.r3d0\\.live(?:\\:(?:80|443))?[\\/\\\\]+tx2(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass8\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f629bf\\-c8e4409d\\-32dc\\-4b65\\-851b\\-1d200f5dc638\\-000000[\\/\\\\]+8l_OUx1il8vOWFJEx3_Ritk0Cl4\\=392(?:\\?|$)" + }, + { + "hash": "885bd9dd86fe27b987baea2468568f474c6a1f577f1c2acb98a23445b8f2d910", + "regex": "." + }, + { + "hash": "890d5d17f6f675187fb23697474d8d8cb62a8294e54b78da98b22137ccf6cc41", + "regex": "." + }, + { + "hash": "59a576f6a43e02d37f0c78dcfc9f2f96bc19237bef5559d4656122655d20e0c7", + "regex": "." + }, + { + "hash": "26e56b66a7b7125a33812c43fadde95a25090cd2b9227db6541357c2462425fd", + "regex": "(?i)^https?\\:\\/\\/tikou0\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "02d2fb976ef156cc3f1c9fa735ed55b6cf11de50e892a585e7afe6c9a5e6ca94", + "regex": "(?i)^https?\\:\\/\\/get\\-your\\-rbx\\-here\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0464a01439c7bb31db05b626c05e16d5a359c8f0ca1a4754d3eb0d02b8e43e74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "8056ebea70302a3d8a390ca7fcc44ea5e0cae4b1d29b57543f0b2a208916074c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+albpost(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "437ddcdfe59313631e7bd2b5cc66bf8edd54dbba374b7a42092e4f9afc1bf67c", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4c7e1558069951037c9c6b934dfc71aa7e95dcd6967e28f20cc94a207a07570a", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "347f1cd9e0dab46b0862266c3e5a0f95a288238d985e82d7d48f89c40f0f266a", + "regex": "(?i)^https?\\:\\/\\/oklmngycaosetyubcasa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2ba2ad0ac0d29260effb4d9dd2343b10f74e195c1baf68971e98fbc5da519c66", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "715070deb77f62511d63db3ff5061699d60c43d56dfff9577f0743512895b864", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae1cf489c0ac7421d1ede469316f9437b242264051243ffab59074b36685bb4", + "regex": "(?i)^https?\\:\\/\\/oklmhcxuaysoertyzada\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a6b75d4413ed9fdf05b46961e038326ccbb99ed4dfb9803c2bcc95f055fe6601", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "117cd2288d0e37ffdb527edb2a160d2e5d7fa52eedbc381f89903e943eb12e69", + "regex": "(?i)^https?\\:\\/\\/downloadhackerdeatravessaparedesroblo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "534166575925292697beb652a7af11ea0df03a61c237a70613e7046f44daf525", + "regex": "(?i)^https?\\:\\/\\/smiilaaan\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "27fc63a2be9b6b595a0cc8f75fa6c811ed99baf6d4112dd74e07ed2590cf308c", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2ebe93397b2ebc4588c6a38c32cc1e3c5a72a4222bdb6c90fcc76adb43901807", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8c50b6c80eb64bfc11060c765f7aeffbd1a3483fd2fec55da3c4aa841f78a1cd", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d0642aab2b5effb981ef691fd59794cb76b9a555664edd1bbe0b989b914ff839", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2fd2a87cefa863fc945161f6631676c0d1629bd779a8ed1b9e338d57e07d8d5d", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "83cefffc4b7cab98c708fdb4c713c5be195192d191e5f06771347ca88b80cc5d", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d65c1f21112688b8f9097ee8c759ac8c6beacb03cc645a499601cc86fc16721f", + "regex": "(?i)^https?\\:\\/\\/oklmhcxuaysoertyzada\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b9d18cce20bbdcac1b5270b244d073908000294350af9bb26576db03a5b67d2e", + "regex": "(?i)^https?\\:\\/\\/downloadhackerdeatravessaparedesroblo\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff5980185157f948a6f261bb5555809a98c1a95793ba51b3957b884aac397061", + "regex": "(?i)^https?\\:\\/\\/downloadhackerdeatravessaparedesroblo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "669c48f3884c2b1f46c2b833af707440c609bd0717fa5aeb446a4033f781040e", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fa23d5bf4134acbe2ec85defe4e2b660b7dc4d5455c9b4d8af7c5b6e2f1a2404", + "regex": "(?i)^https?\\:\\/\\/smiilaaan\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2d3848ef435b63dddf896c629219ae926c3348f7eaec6ab28eb33f690ee874d1", + "regex": "(?i)^https?\\:\\/\\/ladenbe\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5c424e4da212ae59c46a867ab92b43619b51cfcdf4a2e8ab5b868916e287d447", + "regex": "." + }, + { + "hash": "6be962bda4b6be6c59e804d2c29aa883dfe963f6259556990a19ac6fe77bec1c", + "regex": "(?i)^https?\\:\\/\\/anime2hentai\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cb8bb4c0ce9c1a2be46a4859d24c8acbfba97e50158825874b0a4ea28aaf3077", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "91fcc028dcf81e991408dfe1bb58ad03ed7fbb1112d7116fc46517d3075a0f44", + "regex": "(?i)^https?\\:\\/\\/www\\.dnrgnz\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9dab707f395d2afdd131e4fca1c05754853bca73703b429b99cb993f71a0467c", + "regex": "(?i)^https?\\:\\/\\/bafybeih772hucgxikwn7moyjtlgms2jki332fln3ahfnun2cpkf2fyded4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "dfc74afb002871f98c3fec8ecb573e8f3174d7264931f0eb71ee67a9f02de03f", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4176300667cbf28e510c90b8987dc270c457baf1ef8d1ac658f5349ea4f3f1b4", + "regex": "." + }, + { + "hash": "35fc8e70a29a83770cfce6fa0b8d9d024e2176f685cd1f868dfee4967665d1b8", + "regex": "(?i)^https?\\:\\/\\/oklmngycaosetyubcasa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "178d4db8cfe8a0fc35276df800ebcf3aede91a172d5cde8a338752d2b77ba766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redir\\.php\\?url\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+QmcLnqtz76DnApdcLM1DVBeepDAZ52sgA3BicWgMMLAZZR\\?filename\\=updated\\.html[\\/\\\\]+$" + }, + { + "hash": "c87e3ecb1babc5ace47a431101242bdcc95c73adb8eabf9e36f3fa00ec204b9a", + "regex": "(?i)^https?\\:\\/\\/oklmhcxuaysoertyzada\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a4bad7cd7f5ce13ad972158f3e79b38327707c8930af1dbe453946386ab53364", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cf662df8470c2899d5634208b5606c090bddb58c3439fdb9df2114867bb3476b", + "regex": "(?i)^https?\\:\\/\\/aqegvaqed\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7b3944a78bd5af72adf4c27d864c12b13fee059a98d5425b27194fedfab60725", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "642b040c9837d511c9a27d54e2f304e055ab846ee85fdaf286f6b934ca7d9418", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cbaddeeba1e192186e910b471552561b9cce9378a9ae1d7c1a3c664cbfc72113", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f5ce2099c05f68c3056801b118d59694e0deba7f2a7dd0532cc0f736077164b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9061[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "6ca13113940d49ee6d86ef6f5141dce82698fa429ec1db7a526157b2a6989a6b", + "regex": "(?i)^https?\\:\\/\\/olknhzuagsatryzuaokldaza\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "315aa158d602fc0bdd379a16b771b90ba988e1b32d59c7ae43751eae35a3db5d", + "regex": "(?i)^https?\\:\\/\\/jfgjfgjfg5654\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "af0dfe08725f638e48418468cc16fa1154cb6871e0e81a39bb000043e39d4797", + "regex": "(?i)^https?\\:\\/\\/www\\.dnrgnz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "107fee28c61a00beaca812db954911b49359de46f9b6cf8fbc7cb2b886505cc7", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b2fb8a6a1f9cfba16695d40ea9214f8febf4afc50f2fb9f9ae5237e157a9e476", + "regex": "." + }, + { + "hash": "dd7e2f61b7c98dbfcf463c1780514b95e581603b665be2f98a20dbc20336e729", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4f6425cefc501cdce0aa74a74f2dcfd7af753602c6fca6e1cc6bebebc2f60a0e", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5e117d903c08c4dd5f6fa38e5d02a5b2767479e2ace3a8d0a01f24943ea40520", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ef1eea37f63862abd4ee81ece5a1c450847c3d7ea8e42ace575e6376c333633", + "regex": "(?i)^https?\\:\\/\\/www\\.dnrgnz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e5effa1f5abd09198e3a788e9946afcc1081700f75a35e481f2a0b51eb759e7e", + "regex": "(?i)^https?\\:\\/\\/oklmnhcuasaretyzavdasa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5675b44de411aa7a29e5926bcfc266a50809897c20a1e9dcb538995afe81805b", + "regex": "(?i)^https?\\:\\/\\/downloadhackerdeatravessaparedesroblo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9efdd0e6f78c289794c8a81433b3c22bccbdf2438325efc2a545ba0b5899a8f", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "64a96636823272f98d6b42eeda18c7a6d857cfd369e155272eb037f30332e52d", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4c999c343c3e4e9606dad311e2353827b2d4718746a4cdfe468182c965fce4f9", + "regex": "(?i)^https?\\:\\/\\/jfgjfgjfg5654\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "05e8c27b6a7a4fdbc55bb0d8bfe9bda9c642b1e8ecf3b40922c686d37a6dc397", + "regex": "(?i)^https?\\:\\/\\/downloadhackerdeatravessaparedesroblo\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb2abb3ba4fcd1192661cfca59705cd73b2fb7f9eb9f118ceac96f96d003d227", + "regex": "(?i)^https?\\:\\/\\/www\\.dnrgnz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1535d5f39470144a0cf8714262b20bb6f6d8af7a22d42154a03a969f4e957f78", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0957187b4203ac11db5ebb96bfade2ccf4cac6361f5658259f08ad5dc74ccd09", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7bbe37e2df07366389d1a0759a61198e923724ea9bb442bd2b6f15baea70dd5e", + "regex": "(?i)^https?\\:\\/\\/ladenbe\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fb5ecfa4bace8f81b12dc01cb4bfb8bdb6552e3f804eb65d26ff416f30896925", + "regex": "(?i)^https?\\:\\/\\/oklmhcxuaysoertyzada\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c2fbd99d16fac27021806dd23bdf79105e43a7cfd4f0424400195b2d41eb56ec", + "regex": "(?i)^https?\\:\\/\\/ladenbe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ecbdc4e73e90821c42ba1eeabbe685cb63699dd37265e898f80a75194c2b50a0", + "regex": "(?i)^https?\\:\\/\\/olknhzuagsatryzuaokldaza\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "732e174e49ab74816d42830a6b9151449e64340e671737474530f3f420c25895", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "354a7b6fbdf83f1399693f4fb007f88fb89e569f438e68d0f73f0c95f403d299", + "regex": "(?i)^https?\\:\\/\\/anime2hentai\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "31bb29b01e8cb744dc6417b4e656c5ee241d16bf7d8b3190756338dd18990d52", + "regex": "(?i)^https?\\:\\/\\/smiilaaan\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4dc63299ab1a4a9941b1e66f1fb6451b5cd8e78721fa8cb6f8cfe1c17af1881f", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4d805dd4ab052748367249dbd256820d94e17925506d24c5bc74bcdd2a74a276", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "19ee03e638f2dbf1cb932907b9e698572f33e64604bfe664f4a5411751beb24a", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c14d143cd3cf69b87c390d896fea1e13a1f4c4ee6b687003128c9b0cb651747", + "regex": "(?i)^https?\\:\\/\\/oklmhcxuaysoertyzada\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1b0f2afa8f6b83bb0aab2f9dcbfd2e20eff7c6614238aae36a66927cb4acd4d7", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "411b2b825f7696f268eb09651ce3ceb39ae2ab339c07ce099ac6a905b84439e5", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8d54ff1d023b8d136e14079ce2650742b1cb078c1f27263f7bc6d61c2a359056", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e2b1db1fe0c66692451bbe4ba468d1d6165cf2a749cbe0fd8110796b4469143", + "regex": "(?i)^https?\\:\\/\\/anime2hentai\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "436ee70af453d98ccf556393e95b7c6853b7cd915eaf1a160044eca435f21a4f", + "regex": "(?i)^https?\\:\\/\\/oklmngycaosetyubcasa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "64efb932fc9e11f64498f9014f7da18d49448d8eb8a6181c03a9fd0de12e2f42", + "regex": "." + }, + { + "hash": "2133b9fd3f70a4571fed5553d1c3800b03c29e5d4db651540d3b5a2d8294c842", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d4d8c04dff7ed442c0e200b57308be7af5595d372b9d8a2d3e6c2d02af0f9dd9", + "regex": "(?i)^https?\\:\\/\\/oklmhcxuaysoertyzada\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1b90c2238a4010b73b0580b37ac672c381eabf58b16824175e1024079f699dec", + "regex": "(?i)^https?\\:\\/\\/sdsxasxasdgdf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ee0470917a5914dfd168dbb413e8564f7a1e248fbfad1450046906f21811b18f", + "regex": "(?i)^https?\\:\\/\\/smiilaaan\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "053179e1a9cfcd25f3834a37a9f62f6b58f80ec0fbe72aec2d89f993be93d73a", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f9d87bfdc7a74e128cfe3ecce4fe1195e97d3fae4f115ca68b1b772123c5a020", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a1d8c1be2c1d269557ff8284702a42eee9942030d5ef69b6d67d045512e1e158", + "regex": "(?i)^https?\\:\\/\\/anime2hentai\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "70b01d05b5cbffcd7ef0572160ec55e4e01cdb34d74354d5baa79dc54416ba24", + "regex": "(?i)^https?\\:\\/\\/www\\.3\\-255\\-233\\-101\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "970c65002678e425a77c385bdb814c5df8abe825f2a740b551bffb3e0ec5970c", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "be322996d4dbdb7d3dbedef5e8bceb5a22d1ded50205f5a2ce6ab4eb369f33fb", + "regex": "(?i)^https?\\:\\/\\/oklmnhcuasaretyzavdasa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "319e58e00d8d5c1af58f5b885804f34b25670fbba72969c803e1059a935b045c", + "regex": "(?i)^https?\\:\\/\\/www\\.dnrgnz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8a0b0151e239ac1769f1c16b5c10428aeed811262a42ad7f2cadbd91683db71e", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fed6ba650a58f2d04d7bb3d327117ec4467a194483c67661d9a11cc4e174f0c7", + "regex": "(?i)^https?\\:\\/\\/downloadhackerdeatravessaparedesroblo\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "076ec4bf066ac639696c291d97db0320f4cfb41d4a3e58f8cf8d2b6c6da1b7e3", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4f43d40d739910e0bce8aee9d293ae5a8e4f89be5a9c00e344f265e27cb4b242", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dec3fe1881d9e4c48fccbde7aadbde33586f5d7cfcf819248511bac7bd4070ca", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f72fba773d9d1d197f54367438d6bb9c377d0913cdd4f988d4e1129bf809eb47", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b25bb59de220af362426f927c718440dddfed41c55c3b5a03fbb8b672696c844", + "regex": "(?i)^https?\\:\\/\\/olknhzuagsatryzuaokldaza\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "626f7ced729560278ecce0e08a74bdfe0b11cf23222ed5c1f2c6e27e7078b178", + "regex": "(?i)^https?\\:\\/\\/downloadhackerdeatravessaparedesroblo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b3b04271f115d45c847a3e3c53ec831e8cb739bde469b8c8cf500d25f92f6b0a", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8a34c2c1eee633c228ebd578c0b53d619eadd61ad6b5eac7acaf965459cfdc41", + "regex": "(?i)^https?\\:\\/\\/kyhubgztarshckasoema\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "68f56bbd9ea442b9bf92461a6072c20d6ba257bc39d8be81019f6a8b60181d27", + "regex": "(?i)^https?\\:\\/\\/smiilaaan\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d7e0254ab0f3d89f2e59b3322c2fbf930874b96f66e88191d79d9ebcb2bfaa15", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f2ec28fc69248196265781b78f71b998b620dc8aa3be0ec46e5effa977dacf4b", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "70c49c7351e7157dd016910ec3e0e3eb2fed246dd6657742889ffbc1da2aa3d5", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0831e79b80dfe152f02609bdfa498051b6815471a3f9e0ac5ac0d002e3bd8056", + "regex": "(?i)^https?\\:\\/\\/oklmhcxuaysoertyzada\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3f0809cd40272d5fb02d002dc32d3bac5a9df479befd7b4f33ae8e1b809659ff", + "regex": "." + }, + { + "hash": "a22550da12fd62e049f8c84e5038dfe7ff2b05747ba85cea145c6c474e9221ef", + "regex": "." + }, + { + "hash": "ede05116fa23130a42c4b2f5d727ac1d69c4d1e116aca946851275a78972b1c5", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cdb130f540cebec4ae647d87ef56c90431b3d17aed78268cb70bbfa40b1b054", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "96420c270311c7c59dab823bebbaa8953500367b6e664f5e1da395c9f17b5d4f", + "regex": "." + }, + { + "hash": "4178e97f3142388d804eb2bdb61ec2974d2cccce3e24d79ed77642971f38c8ed", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8a249e3d1c4cfa3490d0a2e774d0f02d500601e160653688c5cd4e783965bc9d", + "regex": "(?i)^https?\\:\\/\\/oklmnhcuasaretyzavdasa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3f0adf22032934bd239289ee5a56da48bff871d5623a5c6f6ed292ca6f8afd32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9056[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "91064443620e2a81e40d0c202dcba88374927d3b5ceccb723602b163e995b5ba", + "regex": "(?i)^https?\\:\\/\\/aqegvaqed\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a818f4f23adc8d9cee7191c44baf505d4453808753ec7adb437932e8a10f5eb4", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "34085999d6820e77b69ad93baad7606d5ba619ffb35feb33d79f2daf714159a5", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8d855a8880c4e9d3e2df59f8fd3bfbfcfd7dfe80dac36d05f843b83aff77dc50", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "68c13da8f1b7b45106a5be2bdf1423f101823b195a34721181e48ccdb719fb56", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4c0e383561c71602b3ca6d03992046cd877d8e0eeb1c2bdcccf8459d2a910659", + "regex": "(?i)^https?\\:\\/\\/oklmngycaosetyubcasa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "552c07e040ef9a06482d32ede13c31924fec1b2752bfdcf38aebcb8e9a78326e", + "regex": "(?i)^https?\\:\\/\\/jfgjfgjfg5654\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5b5d82d476388cfe6dbbefe55a699745a3622e86f5f2d7ec36414d750e5cc457", + "regex": "(?i)^https?\\:\\/\\/anime2hentai\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7375e41ad22e9ee2b2f72cfc86e182cfd6623ea32f218f6ba39edf6ec5ead075", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a2882f61930a6639714ad3786fb199869a573d07eec01a561a176af4b363c268", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "dd0f9820c4c5d0fb08f795084904217c9b99edd23627fcf38c87346ececc9fbe", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8feff4703b904a63b3c7e00324c53d1d41bf096f7a007910ef0961bd41a1a90c", + "regex": "(?i)^https?\\:\\/\\/smiilaaan\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5949ca4d871de8a1a60bef01b11bd9919909addb6ca52aa5362793424e8c58d1", + "regex": "(?i)^https?\\:\\/\\/olknhzuagsatryzuaokldaza\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b400c24a408632c0765a1ffdc966ec7bd34d1b32edb4b43b7ca28430e42cb466", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "600112c478edcf6044e26271c0bcddcd60116304248ba82235fc810537e83553", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7d156f89709ab9e8850faded2644aabcd6bc2a1f9718ede0fabd8abf286838a8", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6fca11b3e4f6eb1ca0eb1a0442d656ca3fc367d3a0d8e09c2e2a282b939f5679", + "regex": "(?i)^https?\\:\\/\\/oklmnhcuasaretyzavdasa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c60a91c9bdbc4aec2350c6829082c378a1d8f05a816099bc11566e30b0979068", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c8bbb9dade3139af9aa626976b5acff8e9d73833a7a266c1cca73524428cbaf5", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c76e9adfff23881deec01f1afd3a284be2b89a25f844c8fc9b6fd34d98d42b94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "51599385b4f008f19b26d2a0676840919aa4bc3fd38f47d8bebca9639b3d23fe", + "regex": "(?i)^https?\\:\\/\\/aqegvaqed\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c3d60449c69fde3de54243b4354301f19f3184d6275d34ad14e7451150e6f", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0cd573e1ec5d03c622cc232873c4450467a20bdbed521f78215b92b34b457827", + "regex": "." + }, + { + "hash": "218c513388621010080ce6d4698c357a9a1da45706480b712629fc25fb2b1406", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "aaaa3cc70b16bc475130e4e66144050050af9f37e02f291b6348320989b1d695", + "regex": "(?i)^https?\\:\\/\\/anime2hentai\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cbbaa3e7ddc6421fdc4a8bd95a5a74cdb7918d645d8c8339ef109e458bb37e0e", + "regex": "(?i)^https?\\:\\/\\/ladenbe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b4c200b7032c2c14b850cdbf03c533172b2c0316e42cd725d33556b53af99a43", + "regex": "(?i)^https?\\:\\/\\/oklmhcxuaysoertyzada\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a803828de02cb82ab5c972e63091dd94ea63d1ba29d351d2e9b2df1b335feb0a", + "regex": "(?i)^https?\\:\\/\\/aqegvaqed\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5ce4aa1605dd05e9fa7ea5aa9eb002ba4c38705b28fdcf9f3d8331a8c3e01258", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ae3cccc6f4aa95030b0cc0eaa0d627481b7b3d599004265057a0e8f62958a851", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "15c6b20cb90be9efa14270b021197e6733e1d15a609fbfe6bc816b7b78b53bfb", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "250c291b61f3c908b60522476617578979dec0dc53d5a0669e169f008f12405a", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d16df53d265d5d68816ede25923eaf32505e418952034bfcc94b13da5f18ab6f", + "regex": "(?i)^https?\\:\\/\\/sdsxasxasdgdf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6f49da9e1a0b732e6e1c284e78a5ac49bcdc8aee64e2d904af2374f43e453629", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "31111b9807382f1243daa654b9d0cf72b7a2d4dfc034c349381651c17b73feee", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8c5f93499d158155267b43d477b4c216b53faa93279591cc2c3535108a999f4d", + "regex": "." + }, + { + "hash": "2f9649eefff52b2d6b18e4ea12de8475a6d4316036ee576cf7b8314cb670e267", + "regex": "(?i)^https?\\:\\/\\/smiilaaan\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f4c634793454b63264edb01031b306edcfd3d34c98158ea9354f51a810d11199", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3d8ac955e4b4d63e3a1fb04e45cdafffc27954ae2cccd3f87a6d66244614b81f", + "regex": "(?i)^https?\\:\\/\\/sdsxasxasdgdf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cc78ba4695d19a31bee5f92456f79f2c255f133c71da7c42a1040a9bfb090025", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f412a8eadd5b7a46fb1ef7eeb3999a7882b7588e13047ad480a4235f6d7702c0", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5395d816dc11377fe6dc6dc21c954e2d26826de470773a520add86a8696000db", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e312e273\\-a10a2337\\-6e28\\-4878\\-bf48\\-5f43ed218d7a\\-000000[\\/\\\\]+p6WnjOUIJ0hh_7DMxjUB1PY2tR0\\=392(?:\\?|$)" + }, + { + "hash": "f4d8caa3b6869de5f1c346da75b40805d2e9ed560699f1e4923cb0230f6ac0ac", + "regex": "." + }, + { + "hash": "fbc92de0b1aad13a70e95b66c9df211525d185804554e68b159bf22811655925", + "regex": "(?i)^https?\\:\\/\\/oklmnhcuasaretyzavdasa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a10d110c2034f7c1ca7215bfb6aa0f5e8d76a5cc329036fcb2d020ae9314773f", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "94a1ec6979354063eed9f993c8437316cf2df2034f5185d7bb28fe586a57d1ee", + "regex": "(?i)^https?\\:\\/\\/jfgjfgjfg5654\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8e8d87289ffb78fdaa04cc961d2a2d543dafb77e88c4c5e9db97c6a6b11ee65b", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e407b8e717124e17b19b6d177f2ab710338e63404895906116f102c3379c324b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+receive[\\/\\\\]+226046390(?:\\?|$)" + }, + { + "hash": "cd5b743454cc8fe1dc6a544ca6300209b413505aa9824c9a68c0600e17e17366", + "regex": "(?i)^https?\\:\\/\\/oklmnhcuasaretyzavdasa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "13847ba160b11cc09c9bf2eadc9bdc3bdc077dd4067fbd3f1ebd4889fce96438", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "caaaf6c34e36fd6e955ad7135ea51fca200cf0537e1a928af21c2607116cd34d", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxguigames\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4da05775cfb3a1226620405cfbcb9564ee85de712094bd4e4388540e5a302fcd", + "regex": "(?i)^https?\\:\\/\\/oklmhcxuaysoertyzada\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "353cea1a89773866313c67b6d8acb26454f87bd2ce4755548b0c94117957f7e7", + "regex": "(?i)^https?\\:\\/\\/jfgjfgjfg5654\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a4bc88fc8257c0c9d5ef9d96e9bf22727ae8e99dd58030684d3e67368148462c", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0fdd6c2928508385805cc7b81f2e656775a3be3ead7935861b21c1efc23d6b43", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b0d70f205d676f49a846ac87ecd480ab12662c8c60c57ff31b1d64d8091cb1e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+miles[\\/\\\\]+miles\\-Panel(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2eb2667611c04b961b0b8908c8e8a35204dc39757ac8f0d6f61962cb624d9a1d", + "regex": "(?i)^https?\\:\\/\\/sdsxasxasdgdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ad5065d5fa3125c243e829f777e2e409b71a8a39b78e37c384d47cb11428483b", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d2853b56116ade084c1cc8f9ac9c9cfd608c4b55428743bcae433fa75d07ada3", + "regex": "(?i)^https?\\:\\/\\/sdsxasxasdgdf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f5ce2099c05f68c3056801b118d59694e0deba7f2a7dd0532cc0f736077164b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9061[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e482422fad0b2b5e45e4a9a8f25af4baff7030990cdda32a186027984ca8c026", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "446254b82af74d03d5cae19dcec9466b94dcda1579199b025b5cd6d4c1f84888", + "regex": "(?i)^https?\\:\\/\\/smiilaaan\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a82eea0a8d6af5104850a8739040c639704a72a458cb9cbc052358bf63bd1569", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d16bbb70c106b4d1160a478da2790a50b01e6f1e611c65c4dbc10310572bf964", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cc4ed496ef28429e850f7e66cb21fb0748dea7ff76d0698a0a52cdcd3a4a46f6", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0afba44b40d480efb0072d41980b453d5ec23e821c8227dc567f3607c895d586", + "regex": "." + }, + { + "hash": "cf25d5efbbf63494c549882c1b879ad9021f44ff2b02836d5b3e6711b731803c", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "01cf9dced8145bfd101c05dd24dd88c51da39fb8b6457322c815fd2bc0cf811a", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6b67d54939645ca60ca62d3d26df12b510bacd8c39a1ab79589d3d8cc9c61e24", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cfdd1247e965a644191d523987219ba6a1613ed40d0e82c4aa00acf462b716f8", + "regex": "(?i)^https?\\:\\/\\/ladenbe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5bf9b22adda8e4bd2291d88782a7bd7217fc4c5fcb507a71aa1ccb94f133cd76", + "regex": "(?i)^https?\\:\\/\\/ytagsuyd66uayusd78auisduas79iausd79\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cb3ee40b938bbc611a95fc8ecb3c3ac9855bcae7441ff2739cb7bd834b4ed01", + "regex": "(?i)^https?\\:\\/\\/olknhzuagsatryzuaokldaza\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "61644e9b59e691a8917c8019cbb01eec634a27146a73c65fcbd760024a5acd5d", + "regex": "(?i)^https?\\:\\/\\/sdsxasxasdgdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "efa408b219545577d8fbae65ecf931051ef5b903b6f496b7643a9e816318fbc2", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a8fa7cec2951278b893fadb1eaca986795730547eea65ec43c6decd606217ddf", + "regex": "(?i)^https?\\:\\/\\/oklmngycaosetyubcasa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "74a8c5603d40857522e1eff4777768ed1120056daff660d9bd948110eafb7e25", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fda9c1bb424a334c1005cb567ebf547d002ce348297c7e29f0c25656234a4ce5", + "regex": "(?i)^https?\\:\\/\\/oklmnhcuasaretyzavdasa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8d432d3e93fb3f0434d08ed03d67bd513a869861ef0e14eb9bef96f1aff4c141", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "97558403bcbf5c9da8b73b325ba93b6a76f784972051ea325143e9df068f552d", + "regex": "(?i)^https?\\:\\/\\/howtomakeaclickabledoorinroblox\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d84030fcae7923df5e6de7a84fa5965653172d29e4f9536e706f7adb49f9a22", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "686097fa3495369a26234003790b7587001d462f32463c3ad08350a54adf48d6", + "regex": "(?i)^https?\\:\\/\\/smiilaaan\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "34dc1d321977f3c7b82322668e386cadcaf3be466ad4572db43f98524b301886", + "regex": "(?i)^https?\\:\\/\\/downloadhackerdeatravessaparedesroblo\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d4c650ffb477e8b2bd076bf9a774890ca08db13989fa37cd32da1fd1fd7d0ef", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9ee10deae04bc2e5cb957b069149271c3209fd2b29f969f88577efdd8b369647", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f8c6754b83dc8ecbce2d01df62e0d9a989d8297f8a019cdc421d0ff80647c781", + "regex": "." + }, + { + "hash": "e8b848f12fdc7a1d6c0f9598adfda0fd22c57a52b8ea38cc07da168275f4d919", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c1668799f41606ff584dacf9837048808de5d478fa1d478683a4c54a5a5ba6ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9056[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1eec87f36e804cb1d509f6dcfd1b5f1ae6dafa40d6053100e2ed825682681a94", + "regex": "(?i)^https?\\:\\/\\/www\\.dnrgnz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1a8328f68ded574a9dbbe180d967f7f9b53d800ddbcc3914d1701391a85f9b57", + "regex": "(?i)^https?\\:\\/\\/ladenbe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d10ac8f0f42f28b0a9961544e35f6320fd0a3a99e1794e0ec2545bce1e3fd451", + "regex": "(?i)^https?\\:\\/\\/olkncahsehutrzvafdasza\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "877cfbdf5c1f0b36d7026ad11098ad50fc47b82c069757a38a416c2f9df04d53", + "regex": "(?i)^https?\\:\\/\\/anime2hentai\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e312e273\\-a10a2337\\-6e28\\-4878\\-bf48\\-5f43ed218d7a\\-000000[\\/\\\\]+p9VqAbA41sSTAJWTk7rQjILb4Ac\\=392(?:\\?|$)" + }, + { + "hash": "0cb2d64c7d2dd18b9c0367ab3330258c729d8ea8799cbddb766643720e75d34e", + "regex": "(?i)^https?\\:\\/\\/oklmngycaosetyubcasa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6ebee3f58bc7c6df7598c97275f73f7c1528adb647a52b3f46d81dc24c3042a0", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "95c7395f66286b192b3ac3637d3dc24d88cdf133f77b604f611cc0fcb53d3e5d", + "regex": "(?i)^https?\\:\\/\\/olmnchauseagtcyasoka\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c9b40bc41e77e29c2ae513e6b423fb6bb3dd270abfbab1faed3624e0792894bc", + "regex": "(?i)^https?\\:\\/\\/smlaan\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "28f87290ae13cdf195fd92aa87b5cc0ddd034ec477b0210cdb2756f9170d3863", + "regex": "(?i)^https?\\:\\/\\/smlaaaaan8\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "89878e90d2dc9d57e6bc457f2782bad595f0c447dabf6baf7cef8718b80006f9", + "regex": "(?i)^https?\\:\\/\\/downloadhackerdeatravessaparedesroblo\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ef1f89b48724431b152092f2354d23b7110077e360266209d4abceb25ffde0d", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "808063a493c8b492a3bde242c884b58b9e9cef3ff87c53468897d54786a32b5d", + "regex": "(?i)^https?\\:\\/\\/ladenbe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a31e41ff2560daff55c70ba1e881ec844b7bc582b40286feea767a563073554b", + "regex": "(?i)^https?\\:\\/\\/oklmnhcuasaretyzavdasa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b5091eb635c6c3653ffe1dbac3c88ad27baf6d97041380e4841f108f0c98e5d5", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxguigames\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "427ce3a6f343aae233f0a7afe7a3607cec3ce928dbcddbf0a97b111f29856c02", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "01c80ffde6293ee3a8e26556afde8ff470dbd97d031bb40e6720311439a58042", + "regex": "(?i)^https?\\:\\/\\/olkuhnzabgtcyasodareca\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "abb00385fe27f935ae715fd701073e0e03754a948ff057a365c0d9f411191ab2", + "regex": "(?i)^https?\\:\\/\\/aqegvaqed\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2ba2fa56f449368e86aeee1c33b86b2eba188b16175edcc7b8c58941fabb205c", + "regex": "(?i)^https?\\:\\/\\/wakdnyiawkbduyawjdjawdgayjawd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fa56ae23d1df053128a8d2ef7779da77ffd3e89e8ed9873be68d1a6ef8036b49", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9371344dd9e60b24c28e0daf30cfcb0f8581754cc56cd04a4a98393e9f079b41", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0975bdeedd1d08fcfe5bf38dcba0b20fb8eb5e95bbc7270ac9271487202304a8", + "regex": "(?i)^https?\\:\\/\\/www\\.dnrgnz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6fd766addb81bea278a68328dba5a56f867262eba31c031cffeb2d42fef4d2ed", + "regex": "(?i)^https?\\:\\/\\/anime2hentai\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3672bdd5c1fb4b0e2bcb14aaa7611d6a12e163d3eb59d7fc7c651584497de027", + "regex": "(?i)^https?\\:\\/\\/oklmnhcuasaretyzavdasa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1d02eb264df76a2045ef7c1d136495076cef2916ef3fbd388c49e607b5806ee5", + "regex": "(?i)^https?\\:\\/\\/aqegvaqed\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "831ef2347baf05e243921dff1e794a210d6b7b5fb34ecc862bd0b24cce59e7b6", + "regex": "(?i)^https?\\:\\/\\/oklmunzagtycasodae\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d429df97375c4de2e9de9c21e9fb43e81aed26625f08abe5d9db46106ad3543e", + "regex": "(?i)^https?\\:\\/\\/comoganharrobuxdegraanorobloxguigames\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca5967d415d18266cfc7011f607c643d25a3c6dca19d410ef5a4a14829b6c90d", + "regex": "(?i)^https?\\:\\/\\/oklunbvrtyzuaoldacrerza\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c76d61935e8fcae7466e1d9bce2692bda31c51012152db908faa14cc557bd760", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e701a2fe7ce434f2eb655cb200eb0434549af58b736061a977cc2b38371ecaad", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cf152aaf81040ad2c93f699f86daf610f409d2f1ad7b509158d489d8229a9e39", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2827aaf6f649c2b03fa9fb41cc1fb442ab880c8c6891fed009b12de92d99ff9c", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1e22749ad0d488bbed3991b62e27b4195035bc23cb24485e28f3e837da73f59f", + "regex": "(?i)^https?\\:\\/\\/hotvideothaila\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ddb75740762316c3f5aa110c190d0cad6f1f47d5bb6a02ab3199cf751c20adf8", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "874c5b6ba677523e79f161f3ebf873c0b32ba842be8d6d137bbfb09e436c073b", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "20319d39206b74f1690136c922198257d5bdf7e264b17ca8e526425dec16f5f9", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5037dce77efe8974f454bcc2ea3b15e3dea9fb04f2e538d7f3caaaeb0d2f06a2", + "regex": "(?i)^https?\\:\\/\\/robux45ktik\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e3c87bce1ea29c7e22637eadcfff415ba40eb2177c09f58e5aa22fbc3a14617a", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0c87e4694e3593dbdc469ccfcc09fccf20c7e4d42e1924ede7a922b04b62fca7", + "regex": "(?i)^https?\\:\\/\\/robloxdungeonquestwarrior\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "485bf35fac1197422f08fd5539de050aa61da78bbe3097405a7973fa9499b755", + "regex": "(?i)^https?\\:\\/\\/babycuteex\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4217b9aa7673d04c2d3660e93a8daa72688dd83f376903124646da9882b74941", + "regex": "(?i)^https?\\:\\/\\/fghfgj54654\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e75424bb52562b3bc2131aded8f0acc3d7847dc527c9b69d8b64e686ac37751c", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "00d6d44a8144083ecfa93e3d47d764a7619fa8b34044e2de78cd9ae5d8a0ed7d", + "regex": "(?i)^https?\\:\\/\\/www\\.seleziona\\.qui\\.87\\-120\\-254\\-6\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb4a8f5fdcbefd64faac52c74145db5eb5da6b7e554506ff0290bd676955a84e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a28f7c1437d7d690c5c2b28f551865b2[\\/\\\\]+votings(?:\\?|$)" + }, + { + "hash": "e1e2066271e65e82aee611f2faeb3993d29437028134bb0c969c5579ac0937d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "350e14605bccff7df6fc2cfd67981b1e6b852b8cd1f13e0b7f9b35ec58856172", + "regex": "(?i)^https?\\:\\/\\/robux45ktik\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b98de424f3e2f6160a97f28c673a4c50463802c34b9a417a8576c80779b2e621", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c684e6569eb545d2308d5c1349b8b247570c6613554cbed3d248d43ec9b1521b", + "regex": "(?i)^https?\\:\\/\\/yinkhwinlam\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8356a44b974ac59053d38217d68bd5838577a943610fe831207d55f6b0679380", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c6a49c611f316bced3310c1155c14152f5d2e377107485ec2703a692f1662d8e", + "regex": "(?i)^https?\\:\\/\\/hotvideothaila\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2723ed85ec593de21f2df0eae1cabf6058ff3205f71dafc5dd0709a766c1abaa", + "regex": "(?i)^https?\\:\\/\\/reviewaccountyahooinboxes\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f9514e12b58749d1a917f732df39e2e86d7a8e68347be4c68ca3db9162e6b2ad", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4ddf383bd488f71b5a4ade4a98fbd20196efd2fd8b9cb897cee46b471cf58c95", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a90474815703d0e490e23357a05d7b208f587eea10558bcd11bde8b6d0425160", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2e167bf37fa3626d01625906bcea89236e4c014e34e3ea0a1222171c214f4dfc", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4a554916bcfa3201c3572013e21b44c2cabbf3d58ad38342500087ab1abdac2e", + "regex": "(?i)^https?\\:\\/\\/yinkhwinlam\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "95b5f0455f0dbc2176a023319cd4c3dfc483326dc1702a2c8fc3355657d07375", + "regex": "(?i)^https?\\:\\/\\/yinkhwinlam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a0e10f5726fb6c30a0c05847b1d210a6b03e82c938fc132f25553f5d5ff9a0cd", + "regex": "(?i)^https?\\:\\/\\/yinkhwinlam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9ee3d52a62579d530bbc06e7495cc45f69d5b4803675aead2ad8fcc615a83834", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7349cc2858b7f52a82c4c30a40b18b3c5dd8e37adb9d861145883351a39d138e", + "regex": "(?i)^https?\\:\\/\\/hotvideooxxyy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6a6d4cf0807f55d4fe9b05af4822583709f339b0aa2ea891e07f609ced90175d", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d70f24aa05a57a0ab2d55dbec57d363f34e69ea20e52efb5881527a110adac62", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1a8de7e72ea6e2328d600c297543d598d10187bf4a44596af580056b96abb243", + "regex": "(?i)^https?\\:\\/\\/robux\\-girs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6edcd4c9cb5c5197c8274dc994d600e966bda005d5b7e42db5e8ee46d758cefd", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d989d700deb1de652ae8435f799d6515d715ed55054e105a1c3e040f8b607974", + "regex": "(?i)^https?\\:\\/\\/robux45ktik\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6a1fd7cd7f8f8260099350998202dd947327fc8b08831e342cc6525c7dfcfa3a", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a0053155370d62667241a531fd7d1fc8645143368eada812e87ebf1b898f10f8", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "180e5e970b27a21699d7b8b458a3a9ef8e6c4f31b138763d456c7238d5487f0c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "658cfc3790415a1ac360f2557d9441487540c71a65966d85db9080d37d16d5ad", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "baeabbd22ac5b4e3540772a2de2c3615a67e599062b33d31382dbdb55d589ae1", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e484c314d489ccaf50b97a7b85a92fb43b3a6e94de6305701eaaba1b1c288dfb", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5759d71dfef67f270ade8e355f69f3a53f0fc6a132d8e22af6901142351f1123", + "regex": "." + }, + { + "hash": "83486dfd1a12f7fb7a2a24b835f5eac853adf3429f258c5e9f3c3cf891b50aaa", + "regex": "(?i)^https?\\:\\/\\/babycuteex\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6d0b3b5c0d6cf5dd3299981506afa66e786e8aff2bcbcbc5b623c1a0f0af1cc3", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ba3d29d4b48b150c5f892ee80864142e8bc40acb3c67d223a4527df60c7a498c", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0d630266e83a4746d313e1e7d0cc8fcdcee5fb7727aa1b762d060ff74c28f661", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "444a2935d14680fa04e7a70d57ddaf0d1876cb4a763f4edf688d9055241fd2d5", + "regex": "(?i)^https?\\:\\/\\/robux\\-gkorf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c51cee943b24283c220e470bafaaca6e05c002cd9ebee3e7ff0d61512c7b6599", + "regex": "(?i)^https?\\:\\/\\/hotvideooxxyy\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9f6cb59b6df8288d09b1823dafc716cf0b05c63e2c943e8de8bdef732e4aed91", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4ffb9e8d3f9fbb4dddb0c91f8607ba1f9d0fe737277523b0d7ee27997d68ec19", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b5e3033044fc2cb6e345772d1e425cdc6ab40830a0e8b8f9b9aa4e992fd83975", + "regex": "(?i)^https?\\:\\/\\/robux\\-gnrs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "603dca75a78de3d0dfc8ab23b0834ac72d489d6c4555a58846ee6c75754eeafa", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3d68a2c901b4d01ad5ef1b898e790371b6d43dc6747f0194e9b38e15027ad89e", + "regex": "(?i)^https?\\:\\/\\/awakenjojorobloxid\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9433907661cfa8fd311d69b59b1ec7062768364c5cba29caf78fe3a2ba577552", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3c6b12b90cad2ea07301320a9f6878393c293811ece42316f5edc00cde3985a4", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a3e558479ff504d8390f17b0320cbd8630813b53ff3644fb51d287eaaa94aa0b", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2789488f88802d225ab2b3967c4938ded939836c4e54bf871dbef95b8c0f8047", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3b5b4a22edb53af599812abc035b1eaceb9d6956d4d440dd90561dcf7daba912", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "67999771ab45c9532400705ff4d2caf14664cf607928446a95e477cd622f0859", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c33afb6e3381f7268fd78fd908b1f360839c62835c72c4d59401ab34d1e1fe98", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "26a496465ae988267587e0b2c6babf2f7259e635806964f098aa457f69f18d91", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8c4d1198e2cd93ee0277e76c314584f309d55b8d0104997110cd3791d2a0bc49", + "regex": "(?i)^https?\\:\\/\\/codesforbeeswarmsimulatorroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fdd823ecbe6ed8552fa69bd9bd56d3b0a290e557c40f6117730f24ebde98ed1", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8f6c03dfc4f610d5f279e9b507526affcb98ab497f550f20ba2f740ce94a4f99", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7f8328f915c059c2995b9fc066ce93ea62a3c502f477949a4626dbb16994b53a", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4bb2cff0e63d0b4959851d8a793f08897fa8830c21542300be0f62e0958335b4", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fac18111959bca1c3621ebb398281f82638e9f786ae8c512935698fb9bafa7c0", + "regex": "(?i)^https?\\:\\/\\/robux\\-gkorf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "23b88d1447d170c87ec085f40c1becb7addb827b021aab77b3ea3dc5a7a223f5", + "regex": "(?i)^https?\\:\\/\\/robux\\-gnrs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c9279e67c7f5296184b00e1105c9fd5ce3a1b6787a08a37478956c8358a3b80a", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "64f1049424439d197d3863fa3fa0ded4bcf96fd448f2250067a511d983dd148f", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a4cec9689474db98f24a858ff082f23388ab9ab8bba0ed8d7c370505b9731", + "regex": "(?i)^https?\\:\\/\\/hotvideothaila\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f3e9c5610b41445a1b8b2a6387dc6adc191a5f6c6e165ef40e42550ecb871fe6", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8b3a5618c0b2eb1a66ef721603f04e788ed0a7447bb73706e86e209210eae185", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "47bea1f24988087d42133b8b9ffd270b42b0dfda159f9202b778c708e3bc8a60", + "regex": "(?i)^https?\\:\\/\\/robux45ktik\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "de5fd605f5b9b7dffdfdfe60983426025f784f73548613e61acaa947cb676b80", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9a58f651ab1160fd81d0d9e134ac5e276449922a4a0f395484f4b01345aa2f6a", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8a2f90eca09be606bcc007731b08956e3fa023fc267cd90575e14476ac1bba59", + "regex": "(?i)^https?\\:\\/\\/babycuteex\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "803c5554686fe631a06ff1a6660fe6b551b23e04b37e8e1707f47fb97c3390ae", + "regex": "(?i)^https?\\:\\/\\/babycuteex\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "23b86eabea9e7c5c4958aa810dfb6ca934fff9745585eba0cc3d12b39fd09222", + "regex": "(?i)^https?\\:\\/\\/robux\\-gnrs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bc2c0495996df57e840a720e2638b88daf2dccf3547d4bab8de408c9140065c0", + "regex": "(?i)^https?\\:\\/\\/reviewaccountyahooinboxes\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9d1991e1b737fc2c2daf6ace2320a3c0f181a9ad5f0c987461461261f4b7fce6", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "901dfe133ec1e6153d09751b10a16b0da653745d78d1246fab70c18ee5a0e68a", + "regex": "(?i)^https?\\:\\/\\/babycuteex\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "01d56ab3f87a60b781c37de1237c0cfdc2a60bf94b99a639011525f0a7dafe35", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0c5f0950e31331219dd7fa7ef64376d382a77bc1616a4b9a8e570d106cf9fea6", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "63cbec1811df160441467f8b37885cfc1e417e43d7991700ea9464a451d8ca4d", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6239cb97f83f53d7bc1e8ed18289c5fd7ecbdc167b65215a9b9dbf8129cefc0c", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fe0e7d8fbf26ef85d03d58032f9143735a06f75c56eece10f588c4f8d3001baa", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "19425351057dc9d4b21026010a184e1faee7bdf27641c76dc76f6afb5e091377", + "regex": "(?i)^https?\\:\\/\\/fghfgj54654\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f6759b1498bac25416e5175de1dd2e90ddd2b05c0db8de3293e6135b46805ed9", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8a3e36572173e7397872441af16709640519c85b7baab2c88bcc2128026f3d04", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3ba0666403939d6f5b74e5e54e6d39c8881b86f26993a145622cafc8f4fd1d43", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c82f2fbc98a036bbc081c17ac4b3f6e0196701ddf91a992316510a10ac221035", + "regex": "(?i)^https?\\:\\/\\/robux45ktik\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "eb4ec6e57754a7b20dc2a36925d68f1bca02bfd26b313cb53db2e679b591101e", + "regex": "(?i)^https?\\:\\/\\/reviewaccountyahooinboxes\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "62b010853189ec5fb6ceadb0f3cbe39be1b768b94c31ce1858cd95fcb8784f56", + "regex": "(?i)^https?\\:\\/\\/fghfgj54654\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "af842cc906d81af08759686c38698715277eb08549f6a26b4f0cf7b06314b9be", + "regex": "(?i)^https?\\:\\/\\/pub\\-0139cbee77f742f0b40b1585e705fdd4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7e50d44a5a05773090851833d838b0f5f993893e173d3316db70f54bf1c5ff24", + "regex": "(?i)^https?\\:\\/\\/yinkhwinlam\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "282a05ad20d1a85e28eb45a316abd46b3d3ff0932b69fb87a17001cc67053b4a", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "080a8ae2316a3066813258b40c525920be9cd6300d5aa57347ac4c50a048350b", + "regex": "(?i)^https?\\:\\/\\/fghfgj54654\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "47ea33a7fd5cd59c169faed9e3a82fe81bad807111c98d4aed02cf3a51816e3f", + "regex": "." + }, + { + "hash": "655124e6f2bd51fddd32f8ee259cbffeee4d9a389dc32d105b54474a1a44070a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+master[\\/\\\\]+admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05dd243d804e3e7da741b6785d23349bba8c1d4d8e72692b43e880871edbc4e7", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e1e2066271e65e82aee611f2faeb3993d29437028134bb0c969c5579ac0937d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "c5e1da8b1f14ba105b197cf633803c5ca7f4e8d0314f7811c17e0e3cfcbd2144", + "regex": "(?i)^https?\\:\\/\\/fghfgj54654\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ab5e9b56641240146e26f6c8e72586ba057c2fd8961251103ae680f00f4d419e", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d0f840d6c09e87557e222dda9fec89a31212290d209da893a8b47ffb445b887a", + "regex": "(?i)^https?\\:\\/\\/robux45ktik\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f6337376199be9fb085ef5989fbcbd00956e0628aff8dc48c5f97744e12b04e6", + "regex": "." + }, + { + "hash": "a11dbbba673bfaffb06151ef0e84bfdafeaa8c9cbc6bed5f9376ff87ad79a410", + "regex": "(?i)^https?\\:\\/\\/howtocopyremotefunctionshackinroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "687d8261e85232c437927f693b80fa86b78a328a7fb16b3497616efa7d539732", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5a35906710c89aba08c82d62ad7d69df122a9e8a72bf2249a60fb888222b947d", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "29f65508108ee17bbfc6a1459b14e3f6bd61681a9d3ca6300d2aa4c7d43a458b", + "regex": "(?i)^https?\\:\\/\\/hotvideooxxyy\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "72631c8020a4084e147c55e3dc59cdbbfb12fd6a442012c7f0a84ae10b42c279", + "regex": "(?i)^https?\\:\\/\\/robux\\-girs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ad45319d6ac25e33408fe67d98c3cabe9ad28becaabd48437fb650711bd30f2a", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ffe2c5b1b32daccb33cb738c89eb90598c3afe93843286d4b7c8bad67fc9ccce", + "regex": "(?i)^https?\\:\\/\\/babycuteex\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "799a6bb974f37131ac7114adbe7b6b7acb4a3ebc08986745a67781eb576248cb", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d2fa9ab7dd6b1270e334ff96d0eb132554b10abcc757b99360dcee8e71d1454f", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a4ce90b2649eb37bb5acf6a214412a74dafd291eb81154e50b796abc5a738b2e", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "23efad8505daea5b16ec6eb68e1307b8810775a63553c86791cf5898041bdae3", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7129be1a5949abd676359e612cabec9e82b79f95c595b17768cafa573f498be1", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c7eef977b58144a0ca7215c1f2eb597ba0ef7d83eab7aaf56cc1017db43d49e7", + "regex": "." + }, + { + "hash": "e2b10b75e2439cf9c106996e122c8d876e8a2dfa6d0de71f7bff83ac51a330d9", + "regex": "(?i)^https?\\:\\/\\/robux\\-gkorf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d8343f6cd4cc671587d509fc82183822565f3b433de6ae5cdb37725d65b6c6d2", + "regex": "(?i)^https?\\:\\/\\/babycuteex\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "228549364a0807f755be65b9435b75045b2cc6262d4f8b63067f97f40985cee1", + "regex": "(?i)^https?\\:\\/\\/yinkhwinlam\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5e6499d5775d680fc1443d85197b4242655a6136d0475c9bb0252b8fb8985dcd", + "regex": "(?i)^https?\\:\\/\\/hotvideothaila\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7481cf97f4ac1919760518c0670de9b89909c766a372c35a7e00e7c06438423f", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "df0c695852203a55f2288023d5ab9c8736a001f36fa1b7a3ea2a422fb5684ae1", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "64a089d5f857b209407a08a60f4b473a4470a59e69598d9f80d5c0230bb296e5", + "regex": "(?i)^https?\\:\\/\\/hotvideothaila\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ee1ed888fb648b64a0336fd366fb3a2f233ed95961a1d4c5ec0b3238626e99cc", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f3efa90d5d9f3bbfd522f41456f927a29fe3adb6b5401305952e57ae984a1f9e", + "regex": "(?i)^https?\\:\\/\\/robux\\-girs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "befaf6a4425c550ee64692cd50a948d75742ddaf790e0d6f6ef5731a583c3bf8", + "regex": "." + }, + { + "hash": "9a93b769ab3069de92ec7eabcbbd9d75ffe1e2d3d00997706a5df8965791e3ab", + "regex": "(?i)^https?\\:\\/\\/hotvideooxxyy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "87de474c3f9e2d9aff6c5cbf197d8a14034781bce3d0fcc77417142199135eab", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1c715187b90127ebbc4388c68b67a8bcfe9865f231905dfec51982034df933ff", + "regex": "(?i)^https?\\:\\/\\/robux\\-gkorf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e8999aea3fd51761beec3cc58f6673f9d913f92000369cf0c0ff625dd5948f8b", + "regex": "(?i)^https?\\:\\/\\/robux\\-girs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dedccdbe132489ea9e23fb947f17d818670b8d7be02066ed0f43a4f86736b9b4", + "regex": "(?i)^https?\\:\\/\\/robux\\-gnrs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "66c9ff1f61e0d73ffd791be1293c4d1ee197a956f91f3084276fe4724dec4205", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cb578e0768887cefb087294e83f3a8134144a8003be68c0021243c80ae70e286", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d3c0ef\\-44875466\\-9097\\-4d24\\-ad9d\\-67f3fadb4fb8\\-000000[\\/\\\\]+K_8ZLpdg_9f9v_lql7DTmAOh2wY\\=392(?:\\?|$)" + }, + { + "hash": "624257551ca8909f44de86e195e77db6ea67933bae867cf6e2f02651c77cad97", + "regex": "(?i)^https?\\:\\/\\/yinkhwinlam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "70b04fd5554d2fb3d53855489d775fe45c83f1edf4f6213e90103da83cabf5fb", + "regex": "(?i)^https?\\:\\/\\/hotvideooxxyy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9ef14db785dfb402bcb20f8ba5b9fede573edfb31434ea39a1003c99a61ac1e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass7\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d3c0ef\\-44875466\\-9097\\-4d24\\-ad9d\\-67f3fadb4fb8\\-000000[\\/\\\\]+It8vcfLEd3s90jLYrDDKTddP1dg\\=392(?:\\?|$)" + }, + { + "hash": "7781294e4ee8871cf385c27af3d2ecfe790720d27dd1652968c4024b0ea2ca2f", + "regex": "." + }, + { + "hash": "d1fa7e14edc5da49419a5d7c597a30e3c00812f03cc8023ac53719ee2f7b7acd", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "aa092a79f4db8eef73355bc26d49ac18c2762a19c1c3e80486ea84da54aca1c6", + "regex": "(?i)^https?\\:\\/\\/robux\\-gkorf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0091fe56ec508bb3e5f67f59bccf2b2d7bdce39bd624c0fe48a7c767136a2c38", + "regex": "(?i)^https?\\:\\/\\/robux45ktik\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5c8ab90672c815e82d4643c181879be12d167d04dae65fc7fd34426973e0d00c", + "regex": "(?i)^https?\\:\\/\\/robux\\-gnrs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "28b3d77cdc573e540ba41794b3065fa3fdb7e030f07efd02ecd6e638a5356bbc", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "594aec1518be99cfc0e59cc93505e9eb7c2eaa7fec8e83b39c35b274bdc35d25", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "974289cb5785c810572653b5903b3a84010d1e003d0df9f2043423cd8e9c1403", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "16cdbed50ca476f4ee08c154f949cfa0599c785ee0967817e13830975e84a9cf", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f18a960fba4c20ba833a0d37e151b3d6b15e3a43b0199964c22a5a85d2eab", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4007f14cb56159230a1cc6e7a283b8b6f78e63857bea8beff245698be8b75905", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "dd2158796e1abc905ab8694ea7892a4843785369ce192df649e728aec42f5193", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "98a463b2a8382e9345359565bf42e4baf2da08d9c23d75b585241e682bc7b386", + "regex": "(?i)^https?\\:\\/\\/robux\\-gkorf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dad583f5da27f40fb4dfefad4abc5587f913ae491e9847eb6842f39b36531e36", + "regex": "(?i)^https?\\:\\/\\/robux\\-gnrs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "44a6c253f0fef7923d8cfba909446021b979b17e2dcc2ca17ec0db36aaa0d0c6", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8da83c40c02af871a7ca104eb70b6fd5c769b7cd51001ec895ac7e471b5d99ad", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "afc03be83d0185d160938df5f804eb16c015f3f2633722de6d9e5b4ac85803ed", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6d93732fb4e45f8b4570b73127d5b80f7c09c598da18ce24596e53a2f3388809", + "regex": "(?i)^https?\\:\\/\\/spi4665\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1a531338266b0c18945ae2c0eb1d700f964324e409bbeecea5800138b5f39424", + "regex": "(?i)^https?\\:\\/\\/robux\\-girs\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "017529119a716e38d7535a0829bbdebd269830fb7ffc4f2578a147ef77568656", + "regex": "(?i)^https?\\:\\/\\/hotvideooxxyy\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4d0be4f8bd3be3880cd8e34ff18b77616265cae5263ba3e81d3e7ac95422cc8c", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3a8013d4af552104490a5117066f6fb5669e6c85d06255db551ae50408744335", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6e09d81190acfff16f9d6e2a4be320e9e5ac3d78bcfe2a88aa471447295926f3", + "regex": "(?i)^https?\\:\\/\\/hotvideooxxyy\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4a669e8012ce33deb7efa6ab2c3212e6628daa287dc132a74becd299ada11459", + "regex": "(?i)^https?\\:\\/\\/robux45ktik\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "59a69460ac3c18de5a1117d7fd50d99d0d098b96ec722a01df633ce2b4ca8bb7", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e5228fdf7842aeb998ad824e347367894777938cf5fb2bf1a1a6807c38da2da5", + "regex": "(?i)^https?\\:\\/\\/fghfgj54654\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e24e7cd40f235d5e1114f45056dc3e9642ffe1d71ea54398d617227e8dfb0daf", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4eccf06d5b212572ed213f71eeff336c49302e42610f88892ac95bca39a11662", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "57447c716be0ee5c3d514103e4a6270a32d332f4b3adc12035f866b86a9a3309", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c87f1fb138bcdd8ce691f159af4cf8048b8bdff7c56f45b25082da42235787a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mirror[\\/\\\\]+meta(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c98470a598d0724a3d6b993c7340cdc76c725323167cbfe7a26e8ba5ff1a6ba3", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "18beb695cc802b4fc000cbe19f30db38f1b6170dd6d20725bbb4596f24b6cd35", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "eb4a8450e6583a6d2e731bd12d1698c2a298746d61f2edf7cf3e83c438da482c", + "regex": "(?i)^https?\\:\\/\\/robux\\-girs\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "354476af84f3779de57f19d6e700f479615fc8d818b6040e51d8387b908b6c9d", + "regex": "(?i)^https?\\:\\/\\/babycuteex\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "339e0095d147fe233a367c1fce8bec58b2499ec0d03a0e756da95c0fc9d5548f", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "824c37b1410775981eb4ef06c6d5d41dda633837dc2387609a2e30ee7f15deb8", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "12a2d662b0b926a273d03f0fdadb61a8709f568bd0a702dca16827d0e0c39ce0", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0fec499cb668b6d418ee7e2c600267438a6b5eea546cfc94e48dac28e3adb3f4", + "regex": "." + }, + { + "hash": "40464d8750bb8a8ecf5242b09d7f1ed47ec0d2241f74fcec374db99c20256f0a", + "regex": "." + }, + { + "hash": "1c49e9d9ed55630cb00401303a35b912eace2a6f6ea6d3bf7dcde9cf901d54a3", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ea51b7525b797a456058b3132688258bfdcb4c31c0c41e2881aff633fe91bf85", + "regex": "(?i)^https?\\:\\/\\/fghfgj54654\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e25b035c6a6f20a98557785656aa38841f10c53c16a924763b6c3f5c54ba4", + "regex": "(?i)^https?\\:\\/\\/reviewaccountyahooinboxes\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "47a8075d65f55b3b72d2dfa13ffeb034fcd3806cfb4c0626b397f2bebfcb0c92", + "regex": "(?i)^https?\\:\\/\\/robux\\-gkorf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "df738d51290a923408ee41eda01888b6c10f59a8461eb7fa7cec7de2a893bcc0", + "regex": "(?i)^https?\\:\\/\\/yinkhwinlam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "51372267f0a9504dea4fd8fcea94cc4823f000ef0abfa6f2d8c30dc71b72d0d5", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "94d642f4cea5c54d1eb77e13e61bc5d0df91d0416ec383ade4abf94681948f4b", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0c5df082b385ca8d6a68f1e664e2594ec76cd0124b03c294603ec8497f2ab7f5", + "regex": "(?i)^https?\\:\\/\\/robux\\-gkorf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f451ca2ee8db3801ebb66cc16be2163e235a4a6789647216aa97f03c1ff659b9", + "regex": "(?i)^https?\\:\\/\\/hotvideooxxyy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "431e80fb011188f8a5d6128383e68efee451aae73a4df69f7ded9ca82789be3e", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "38561071db13b32b5e33badffa582e2d334959da6155246150c14471c9dde96b", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "42099b463c80008c1a76c1643198f66f7fec356fbfd58764995d20b5a785f938", + "regex": "(?i)^https?\\:\\/\\/robux\\-gnrs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a2f2445ea316ba251dcfa534ec8e0c476b958f28e3b2089ebb4a1ea64797f156", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7a8ed4d1eb9cab12857a4bb7807be8f63356c291c57473540a15690613f78b41", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "897a8ca449d47fa77428ebbc7199e98d479470a0863f3d60853bf5025535536e", + "regex": "(?i)^https?\\:\\/\\/robux\\-gnrs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a11add4c89224e1a4db4aa4b79fa5c78a6264647ff37d5ea6d52b682aaddcb40", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f3eb5e9e393de8a1b010186d4f10826643515da556e0e36140a33b47ad4b2f5e", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5f19ce01e9b544c94803f42f91228f8bcb4704e2635337268d8183b0df508c45", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "18efdf86927f4f2b653cefffa848c6306e3e45e7697bc6770985eb1236cd7111", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a88c5b181f7191c03b7fda95f1d5194523f1846decca2dfdf0e5f67016333f51", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fea66601249885be52ecfe9a5b58139b68058e7d92e8778b00e7ae76816687e9", + "regex": "(?i)^https?\\:\\/\\/pub\\-21fd5c98a73f43f1928e883a42a30460\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3d704b4e55a857f629b55768b4731010c8318832a8db1122af668e268dd238e8", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "57767a36405c0fcb59c2992a630cdbadeb81d21aef7d53783f15a334a77c641a", + "regex": "(?i)^https?\\:\\/\\/robux\\-gkorf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fa48e5302de26205be588b55e9a503e922ad34bfd0ba4a686572fb13a476b32d", + "regex": "(?i)^https?\\:\\/\\/opinionidirette\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fcac0f8febdb5e07320200bc9339dfe94a51b2ab5b9a4a4a954c8e95275217db", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "100124af8b222cb3d2ce20c0097e2eda479fd11691ce5458ebd335b0f72e43bc", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "86f63649a469f4fff364b5cb210c657bb356289c2daa41df6ccc24b4ace17686", + "regex": "(?i)^https?\\:\\/\\/robux45ktik\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0ea1050a984d19b482bda9ad8887b29cd5b76f51d81ead01c1c77acd09b53f2a", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1390215ea13e2074f727e70953e8b48190abe5a588f65d28c3fb19980c70f97f", + "regex": "(?i)^https?\\:\\/\\/s46gb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f8324ec1890deb10c2ad6f83cf223fb01f6409a739dc1bd1797fec1742e5b025", + "regex": "(?i)^https?\\:\\/\\/showvideogirll\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d1a40cbc29adb5637474765e81c934fd133f75ec0ca50d741e35d7487db5f355", + "regex": "(?i)^https?\\:\\/\\/pub\\-48257760a2c84d44b66ba2dcca871179\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "67f4f81496275e8f4ff400b8d66319950977f77436531fce7092cb5556075898", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4a552c8479ec6213f6a836a48a0514d6b766075fab52a1ab400d24b37c98af8a", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dfb7bda8dabb295f134b54312c2e1c377f59d4d2cc90790ee685ad8d9e38e4ee", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "762bf784e42b382192b5b0d73d57f4cc1362225c5bad20455403378f4723fdfa", + "regex": "(?i)^https?\\:\\/\\/ditmwajdfas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4835ce989543796ace3c8dc83fac8e1f489c2736759dfeaf8fa3dfd52a7ec503", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "df4071976c20d4466328f63755d5d6293da51580b33374bcf907e1eea947b4a7", + "regex": "(?i)^https?\\:\\/\\/xemdicm4231\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "96ce3068e650415f50caa7353fd47985658721b5e8ab9d9773df06f9f4ae27b8", + "regex": "(?i)^https?\\:\\/\\/robux\\-bntfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4dd80a4ee826c242eceb1a36eb341f7f8e7f0dc64f72c001866a73ba8a3c2df0", + "regex": "(?i)^https?\\:\\/\\/f7iakkdwyhbadibawyjdgjdgawjdyawgdj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6567a0b1f44d8f661f81fdf9feddb80cd8d4b8eca7f6936921a99190a4334053", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+k579(?:\\?|$)" + }, + { + "hash": "ee1f89bb3cb51d8795b14d62011de695a5df643891632d2e8a000090e3ab2c44", + "regex": "(?i)^https?\\:\\/\\/babygirlab\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8ff4b2ea9cedda1b7d162f8f0248b4291353e5f9bc3cc0c0e7da16e836f8056c", + "regex": "(?i)^https?\\:\\/\\/pub\\-5a4510b956f44800b5df18cb9fb05a8d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d2d47897fe425ac94223e6970fb989f2bc6dfa03d686b41335534f63ab6ad8ea", + "regex": "(?i)^https?\\:\\/\\/sb6445\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "902fcb902d6fd377f61b7343be520527316dcfe6fe0a17cbf4874f29e2c268ca", + "regex": "(?i)^https?\\:\\/\\/xnxxchdz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6dc0d9a4f9720d592f98fe3614c5144a4a94e087ba27a4d081eec1be585952d3", + "regex": "(?i)^https?\\:\\/\\/fghfgj54654\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b4f8f067ecbe1390f14d6c496ef6580ace2c5774b42c4a3cefd90b558d19a555", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cc5e906096fbd9c71cbe9c1c0d7ac09deb5c7970e592de4add850a8d3cc1ede", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dd5d1441ccdb8e2bcf7ea185a802737c418f4d4903895228cef0ca5c622a9e99", + "regex": "(?i)^https?\\:\\/\\/xflgkwjogwr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "af54c8eb2d390338e0a70143cf1151abc24afc7d3f52fec8e242d96d13ee8f60", + "regex": "(?i)^https?\\:\\/\\/sydoaisdyausuiycoyasduaisyoiiodoai\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c148d04d411c5c19640667e16869752b143c2ff80775cfce561c0e32280dd3a1", + "regex": "(?i)^https?\\:\\/\\/gdyasiduigadoausdsochzxochoxoasoaa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b01ddf53509a811a3165a9e7002c56258e7ddd482254009ae5632b0de628e781", + "regex": "(?i)^https?\\:\\/\\/difguyosugh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0fdefe0befaa6c2d89623abb99a3cdc86338aa3302a4bd729d2c648dc58bbd12", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d923890cb2b7d40a797870817e0256b34665bda5b3bc9f7cebc3d3d91746491", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "65de9ebaf413625831ae82798a403040503fe55d7da2711ec343466ce7fa3e01", + "regex": "(?i)^https?\\:\\/\\/jdhfbgkdhfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "72896b5462e26dcb0d70d700e82397a01b3756decbef4b577b2c39ef3a87f8e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "2c1702f30a97d833f992079bfa2a23316d20e026500fc12fbbd2422c09bc0ffa", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cf5ac92a91da4e49a0f0aa80f5addc4f1f1d88209d3b245abe92d50985ef56ea", + "regex": "(?i)^https?\\:\\/\\/gdyasiduigadoausdsochzxochoxoasoaa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4115041fbbdb8f7fc99a9cb502a1ebda36c59dc6764004a0eb3020307c5c86ee", + "regex": "(?i)^https?\\:\\/\\/difguyosugh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "688b437a965c239ce9d908eb1b8e68c9ac3e485089b548a2545af7f7ff99bdf6", + "regex": "(?i)^https?\\:\\/\\/difguyosugh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cec18409ebd4fc89c32c39cc00f59e4a3c2690942572ad4ff374f990f7eac7fb", + "regex": "." + }, + { + "hash": "da72a46b676dcb965c4f6c1b15260778595b3c2cd2336da9bc1025f59051d947", + "regex": "(?i)^https?\\:\\/\\/auisholhxcouashoihasoho342hr324o21\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f305e8f412687a19ca2ccf537b8bbae21987bad4d39a4f54208ae9cd417b20d", + "regex": "(?i)^https?\\:\\/\\/sydoaisdyausuiycoyasduaisyoiiodoai\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61570d187d5f27e65df5ece9af4be9db15bde08c739251237c64e3d200ef5bd8", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38fab4db5f7fd9e1801d372a0061b2a57d03e8bd5f56a86417688f2b7fe5a86c", + "regex": "(?i)^https?\\:\\/\\/jdhfbgkdhfg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ca58118d194f04093f52982400d1564c29d9c36d60737497942a049898b93fb9", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6cf2ee71f772724c44eb4bfb64a8c0b0c028a6380533666f33428c848c4fe8a6", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "709d127591c70c884babba95b9992decfd61b94f5a83c928593319f56ef68ba2", + "regex": "(?i)^https?\\:\\/\\/auisholhxcouashoihasoho342hr324o21\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f95402174470868d99c7e25a0f160e5ca73f8440b8a1bb413f66a413d601971f", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b9af0f9e08b1869eecc48b9c921ceacbd7d3e4775ba6ebcea08f80ccfb590d5", + "regex": "(?i)^https?\\:\\/\\/xflgkwjogwr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "960981a486173fefe10c9a408bb7251739e0e900f1ffd4182fffaf41a9fcc23e", + "regex": "(?i)^https?\\:\\/\\/xflgkwjogwr\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a742caa986cdc4f82ace26b726c643210d2e3579719a29a7e79e59d1aa60559d", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e6a0c5bff06c8fc3eddb6e4100446d6e301c8796ec6ae160ed2aa77334242692", + "regex": "(?i)^https?\\:\\/\\/sydoaisdyausuiycoyasduaisyoiiodoai\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4628d9f8f6742e42fb14ecefb01a06bb3cbd19e1b01b4b2184b1504a0a01679", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be28fcb454df43b6ab9c316c23a42432488de749ff6b66bd4f362efaeb811ac1", + "regex": "." + }, + { + "hash": "6e317b34c36273c383eb4a1c9002839459dc330ae1f1375f447a8cde207015e9", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dd0fd3b212c03b2a2617e1dbb44b1ec7d9fe5b9f801f1fd6505d3fd702c92dbe", + "regex": "(?i)^https?\\:\\/\\/isuru2024\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "feeca472c1429680e5056dfaf493532a5a5026719d849e8bbb4ec974a13859ad", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1b90b1304bdc43b1b62d1ff6c294396b39a35a0839519e3b0148cb9d5e2bd1db", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97c66e8a07cb8e5b12776576d01af358a2cbad57d9635fcbad5ebdce9d0e0783", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9153[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2455769d9579e4f42f22a53d6d82828460f35a2ed85fedf3368e7c179a590fc5", + "regex": "(?i)^https?\\:\\/\\/xflgkwjogwr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cddf9e945af0e8330637f9830a32232bb3233acfd41034c393069ef444d11c75", + "regex": "(?i)^https?\\:\\/\\/gdyasiduigadoausdsochzxochoxoasoaa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "47032661074fd5ce8abb17ae8edd160dd820567b03ff2bc29ed5a6e5604fcd17", + "regex": "(?i)^https?\\:\\/\\/gdyasiduigadoausdsochzxochoxoasoaa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3c52eb2efaf3b4a3542a74265706e160b48fa90ff35564bc4af5db1bfe37be66", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f95623430c700232771c9752b08c9a24f4051b90a9fd385852b27ba6e534ce40", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8328d31114dd17656fd2a5db913c03b4cbf9248e09129e6cfd9b07fc54c4fdb", + "regex": "." + }, + { + "hash": "14ab561a0fda338c4f0f788042f035d2eedde56353472168e4122b9af2f3b4c5", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3434a5b85adf67b50d0356964e1f61892928521fa51077071b6bacb73eb92c80", + "regex": "." + }, + { + "hash": "a715be9a47c6107e560442167ab00c8ff97d130cd5b26487f80b9f026fbe6fef", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8554f14890a27cd340b72cb7afc3ab8018078d486ed49f0ad1dde71e79fd6e0b", + "regex": "(?i)^https?\\:\\/\\/jdhfbgkdhfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ad436786cc250ce7e6524e5f5c4130b181c9420fedf0403933f86b7d32e70dec", + "regex": "(?i)^https?\\:\\/\\/difguyosugh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "76382dc382ac29c801e2469fdccaf7b5af7d39f824d2be0ea34d45c652288284", + "regex": "(?i)^https?\\:\\/\\/sydoaisdyausuiycoyasduaisyoiiodoai\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e271207e7d567e9d1327d1675f75c4cd280c8a95336cb5a65ad56c9bfe31e38", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a9440c345f156b2e2ef725e117aec1788f6ddcfbe847500493794f51d0201a3", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "56efc34bfe783cc967a7564684ef7b8f3c4831b03eea3fd4592a4a697c007df3", + "regex": "(?i)^https?\\:\\/\\/auisholhxcouashoihasoho342hr324o21\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e124da32699111838198708126a3772a11574aac88d753833786016bd44d75e", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74a8af8b0fcdc892c720be8603a59678abb0575131ca197fb640ac4e22cc93c3", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbba4aa56a964bb9abb2f7d28745305f82d1a116d6df7ae916d9643f4d6fa8ee", + "regex": "." + }, + { + "hash": "9be9b002283a77b8da034ad41beb3b7cd99c1fd7a86a4d0e1d38bac5aa071483", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dd7e6b7f746602df83a1180a2ecb8c509ac449f64cf02e195035f953a533bdf8", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3671fdbbbd748ddabea11a1d6d23d663fafe747ed11087f8d69c1904c36c98f", + "regex": "." + }, + { + "hash": "a6da60581efb6d1fe9faab2e3916e1e5ab68bbab51769be7f3d775c4e65b5333", + "regex": "." + }, + { + "hash": "ecf106c7ccde9ddc2abd7c56f938d2de494f1852d6637a540d88089389df481b", + "regex": "(?i)^https?\\:\\/\\/xflgkwjogwr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a4aa6574969515d71247327580965b944d65528bb2a033e211d6200204738894", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bbd34ecbc11704073a8d31fc0efb8ad0e4c1dd1a54ebae68b324f1dbd83d23d", + "regex": "(?i)^https?\\:\\/\\/difguyosugh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8dab4729043b884a8885a0862012ea36f74a02f7d1bb344afc3ad753c5ef4570", + "regex": "." + }, + { + "hash": "f75930f46ec078c635a9c6bca3dfa3027729740e5e693a8d7e7e3311bb147eac", + "regex": "(?i)^https?\\:\\/\\/sydoaisdyausuiycoyasduaisyoiiodoai\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a32c3ad2ff5e39a75f23b94ed014cf59d3107920e52b8dbf21f5355a709e7d68", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fcf061d53e09f1b984b38f593190222c1fd770e443784d769989b40c55fa32d", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe2117e01f736ab8f5d7e5e8df40165fac670f4b7b65e78c849de4786ec2ab21", + "regex": "(?i)^https?\\:\\/\\/jdhfbgkdhfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9b9e26fa58588c1b3a2c72f95bba61077c12df1fcb079bfec93cd5870f17b6b6", + "regex": "(?i)^https?\\:\\/\\/jdhfbgkdhfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8f3878e3e0bf295107ff688c816dc357919edf1f2513c5b81643c20d4231fc3a", + "regex": "." + }, + { + "hash": "247b578c8c3c451679108f50134b2489c960c5637fcd75dfd011882aa5ff9d96", + "regex": "(?i)^https?\\:\\/\\/auisholhxcouashoihasoho342hr324o21\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "af5ff6f1fde796bad7864447b2ebb90a3ed0102182de9f9e2093931ab8825b13", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "014a71c0f631b4df66454faabb71a5d184876ef72171ca38e31339dee4868cd2", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05ddda72d803fb02dc0467a80cdc82838a4349dbfd8f4e362874da7fbe293177", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f07f196c713363d6886869023b812017e611768a394aa424dfd9ddb62aa446e6", + "regex": "(?i)^https?\\:\\/\\/xflgkwjogwr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3f7faff5ef841738ec92a947f74a791169ed56c47217ab5a8657e09077cfb2e9", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e32eb9538062e57210eb91771e712b9fa0a409121010d5b8bddada19e0dfa5dd", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1e1518fe52a9441118ff0194e614d772bffed7ddb150a5cf19cb4028bf08ae9b", + "regex": "(?i)^https?\\:\\/\\/difguyosugh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "eae5608e6e63aee003dedbf17d91d77329313cb6a9bfc83ee200922fefc84396", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3ec9c428e063c9c94ddc5e964c73bd9681f634e20d070c5c82a35a4f7d967526", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a4ef5b93465fc7023ebeb6c093a23a7bfbd2bba62a2b45752350d89c7ae0a9b", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e786932bbf9ecaefa894268962f30a4eabb279c090afc1a411147aadf63c7392", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "61c288a7bf7054f57bc8a95fc0ed2abfd9c406220566e4d65a0fa1eaa4a694dd", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a5080c6a66d9d4bbae84b753db54f81c3aa192e2dea5bf56ca99da965fbd05c2", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36f926bb2ec2729aa7cf16437805dbd3f435b075fa940d2b8b6bb17f61cbe728", + "regex": "(?i)^https?\\:\\/\\/gdyasiduigadoausdsochzxochoxoasoaa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1f47870947cab687a98629269e41cf2f47cde05c0769ee2fd1e406d5c5c4b69c", + "regex": "(?i)^https?\\:\\/\\/auisholhxcouashoihasoho342hr324o21\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14bf1253285b30ae217041c6880dcce0c5fbe4c6c7b0e242e85851d54eebd219", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d589e47317626fe7c51be4da7a90eee66c26365a7619bc1031560628a627b19", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "859389cccad458becde4614f2ab30802c593a2c7b175a479aa44e5c5cf0d7ebe", + "regex": "(?i)^https?\\:\\/\\/www\\.45\\-61\\-148\\-137\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b633356c0d2e7a38aa5fec47d0cc13a759011778698d761fb7183c567bc6a0bd", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b52b9ec93c6db87da37c2a8a362fb92462ac7f79697938f16e3939ee667b8e0e", + "regex": "." + }, + { + "hash": "14c6b48b5e02211da3b3b7bf1a6335631a7ccf3da781c7a8149c38674d374412", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5d0fa189b289d3fd7c866d2beb01138c0f6d9cad3fbf49baddd271aab1fca5", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8454ddff58d46b161c0c6970c294e5afc9b20c8e6aa9861a18d74b3bdf2a1f21", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "88583c80ee93041c7eaf652d6b364dcac90748010946f925be2a4241859bfb69", + "regex": "(?i)^https?\\:\\/\\/wirez0147\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e0dfade275969433a67b32f20e33af7ee3566f95de3ce2dd8e21b3c48cc3f87d", + "regex": "(?i)^https?\\:\\/\\/auisholhxcouashoihasoho342hr324o21\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a57ea88a224d6c2d50f5704855d763ba28297b93672382950a2753bc2b645af", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd3d080d0b29e549dbf83795bd60db5b73bb5121b6547c16f0861792336523f0", + "regex": "(?i)^https?\\:\\/\\/sydoaisdyausuiycoyasduaisyoiiodoai\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "19e458dfaed1efa617f9b019e4b12712dc5fca90d101be59e86fe88db2e3ee2e", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e0a33d0a57da5cb92638159f5a252a50bf74d7e9a6f0406b4655fbe10df28ebc", + "regex": "(?i)^https?\\:\\/\\/jdhfbgkdhfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "20160699c070f193f00257e85750974cb833fd21c9c7c39c775cb3e660142be8", + "regex": "(?i)^https?\\:\\/\\/xflgkwjogwr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0e57bf874ddb4caf97141a0ce5ebc68d471e601f8d40e51a41b3860749dc6f6a", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "17b339247540899a5764bf60c7adacdd62df04c37bbf398494b7b6cc4ecaa6f6", + "regex": "." + }, + { + "hash": "f841f2b14751cde5d391a3395df64fac24f80dfc581f7ed711ecee680544f0c9", + "regex": "." + }, + { + "hash": "1d2e3013345f1ce17aedb1e070fb22122a33025ecb32dd7e100610311d2a3e02", + "regex": "." + }, + { + "hash": "f53c6ed9fb54242f77785ee44b843bf0d6c8bd79e7c9256e2abdd51ab97c68ba", + "regex": "(?i)^https?\\:\\/\\/sydoaisdyausuiycoyasduaisyoiiodoai\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc23d0308fcda5128d83bb3b17c44655b80acb4ae33e3a4b1c3e7eadb9fb9944", + "regex": "(?i)^https?\\:\\/\\/jdhfbgkdhfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "63ad665183e311d7d8e4e710c396b54bf9c89b1b64b8822b0ce2980c12bd1631", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71a812f3b656d7af662fb6bb95c76f3071fe6d69112481dcac27dc1dae2b4cbc", + "regex": "(?i)^https?\\:\\/\\/sydoaisdyausuiycoyasduaisyoiiodoai\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "12399dbf1c2cc440ae27b0bd376883ae193ee9123fa7cae343db65d6231ff720", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbafb343f087f80c6ee18f5284e24c9aff5537c548aaa1f587f2cdcde3548687", + "regex": "(?i)^https?\\:\\/\\/d6a5dw46e\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f834e8ddc67817d71850b93cd6887627dbf15450ff06b7e900e197d5115ae17", + "regex": "(?i)^https?\\:\\/\\/xflgkwjogwr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d36e0d4262b9952a11bd8f92334cf4fc7f4e198bc80dbbaa4d77d6ca713a2123", + "regex": "(?i)^https?\\:\\/\\/pub\\-55bf54415f784184975c9f9ffef0a48d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7920ccdc37b790f7d5e24bbdd42a7ceff2f6b95e6515d869f8e77a82610edac7", + "regex": "(?i)^https?\\:\\/\\/difguyosugh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bdac0538bb97798095a76da0a4c6b7130bb4189f19b5704cd4f0529fb7ba022d", + "regex": "(?i)^https?\\:\\/\\/gdyasiduigadoausdsochzxochoxoasoaa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f9eda741cea173856095bf33e5b248450568e189e01e662de5a89b84ff428ae7", + "regex": "(?i)^https?\\:\\/\\/jdhfbgkdhfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1459676076946f8fad5e1787e0a698edc0df4bca07a0725274665fe08a9a9b4f", + "regex": "(?i)^https?\\:\\/\\/difguyosugh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d4141dc41f7683d9aa73d0c1085f26b2f46f0d458b09fb53c5ca5058b8266eae", + "regex": "(?i)^https?\\:\\/\\/kdiughirueg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "945b93c0ee90ed7cef5d657ec8defc625b0f9d4b7909971fa93779eca9b4fb28", + "regex": "(?i)^https?\\:\\/\\/sydoaisdyausuiycoyasduaisyoiiodoai\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81e43d114bbadbaeeaf1f83ae98ce4673576d1a5713a609047d5629202d087e3", + "regex": "." + }, + { + "hash": "dbafab78ab998d0e7bbb566731b774378dbd081a2e611efa3a2db5a1b00fbeef", + "regex": "(?i)^https?\\:\\/\\/ryfvhb94513\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dafba270da098942256756b96b04331696faf3ccbcde837a738cfced26bf8915", + "regex": "(?i)^https?\\:\\/\\/gauishoihzxciuhxocyhozxhohadoqiwhoi\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37d4473b7396efd7f38be99c482f34688e3c66f19403c684f4f98556419f1209", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3a2de82e4cfbdaaeaa9082efccd3ab698ff3fde25d680f6922bdd740c6fd760c", + "regex": "." + }, + { + "hash": "d16b5003de86b7884510a31856e4a3599b5afa0181bc4b93c1b27da7171f7498", + "regex": "." + }, + { + "hash": "b41da8cfbaac4808adf4c2bebfcb0948fe29443877ea978320b43daf8af3ed9e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2db1704e9999e6061a4a72296ca429ccc3f9b403fbf7afa755b8cf152fd5861a", + "regex": "(?i)^https?\\:\\/\\/fdgdfmjolgfmhjfg66\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9fd8eef7f34ef959c42c5e3ba2db0f18ce2a17d07bf006c457dd5229d244a807", + "regex": "(?i)^https?\\:\\/\\/kocalsmetuvaisda\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1b11cf115f956e99dcfedc8586aa96ec2e58d3166142258a80d4551fd6fa0375", + "regex": "(?i)^https?\\:\\/\\/kocalsmetuvaisda\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "65f673f8525b149538815092fc4a5926b18642b20da0c3c10d83b9a5a46b822c", + "regex": "(?i)^https?\\:\\/\\/instantchainsfix\\-7316b\\.firebaseapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5b86423c43cc9579fbe6baeb077884c4537057bfb7da894c4b619c65ebd1d6df", + "regex": "(?i)^https?\\:\\/\\/yuijgssagdf66asu79aiio78asdojis79\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34114df07a40102a0edde8f50796b00cc5b73b2334326972a77efdae9b6e154a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b7db19020a81f357a3a6e5567d5d3bb258c2f56d4348dc159df92a33f3b5688a", + "regex": "." + }, + { + "hash": "49f601d532c6f7e62a67c3989da838b7bf920ca14fe1f4d73a117e8dac608cd6", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dce69df6c0e9d97da249ee328c2ba67e8e3fcc4c63f242160e345e2d950c9cbf", + "regex": "." + }, + { + "hash": "b01d0dbf35d65cb1dafc213b0316b067a5018e47571858999fd2a05c8401b1eb", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25271dfac311f26b4a25babe491ddef12f0ee84eab3fa63ef41388d4e171a9ab", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc5e64b40e224e233915058deb67b47d959183953d4f122cd30fe2a31b39cc81", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d4d8717d1f433e9c757bcc46a0effb8cdbbdd6c04c960e8f5c89f610bd1043c6", + "regex": "(?i)^https?\\:\\/\\/kocalsmetuvaisda\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "19420e75abbdb9f0b80afc8fe621461a28ad34e3163d08a0379631df09439aa8", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "22d3bf19749618ae9b22fc8ac38640e1f16f8f6ae7a836bc4c31977402948cbc", + "regex": "." + }, + { + "hash": "6e0cfcb1a51e400fc4de84b996e8267987764134260ab1dac19b90243ef2ca48", + "regex": "." + }, + { + "hash": "05d85c8bc8094bc39f645e9abedd7eb33be7b994abd811536813c20d40236c13", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "de257574d4ac42c9f6904e4f978ab9bce480698e9569b7a4e1beb45c12c92df0", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "206c9c78e7ce56c8be84db7bb8e0c54086d1ded314998d1057a746e13b618cca", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d7b70656212f8797b03a070cee22b1c1e1cb7f3d5572cddbdd0682e03ee57184", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "20dd7b06eee4e0a44e4d0de64ae2f3c451a4ffffbbd04885d90d9c5ab5f827ea", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8058315933ccb72cd2f125d2f17859a6dd4664a43104d1d21dc0a2454ec435df", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e266944fbe510d83b417ef37224a68db7fa16a4ee53cdd6c68680a77361b0b54", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b77049c46a9447463611228dd23a41a1bbd3ed42bdd1292b25e6b2f480617f17", + "regex": "(?i)^https?\\:\\/\\/kocalsmetuvaisda\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "880241b1d13068c3bdc032d7dcbb0ec20757cc0c0e9a6272b90e763f51e324f0", + "regex": "." + }, + { + "hash": "7781357996b2e0c3bcbae8a56d061b2e2e6ef4c45d7c53b589670f4a610cc302", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5c8ae7e3794714f7424ca509bc17792a364d15be551c5ccfa59f3bc6aa81f3ef", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3b90659c88db496f94a3aa5f36a493d5fcd0df9d13ae9663f6613c97c78e96cc", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8b66c601f3cce71d625aeec98609c500bb369905b7e840e608f77177f5548664", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "711003f92842c415b239b49f77ddc06487d2eefd621f3b663fccca6a3ec5871c", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0f7247708ca3f34bd381d636a9736a960fba60c99d3dbe208bac4c8e54ff5b8f", + "regex": "." + }, + { + "hash": "821444273828fd5b7a9a661648e242b2c8f90d149abfc233d62e9ee2156d5f14", + "regex": "(?i)^https?\\:\\/\\/gidusyfhgsd7ify493yr0e9s8yfh78sd9\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d65c60448613c75abc1dafe8f811e857e8b280d3378bea9668bec0e25dc70444", + "regex": "(?i)^https?\\:\\/\\/yuijgssagdf66asu79aiio78asdojis79\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4af4337b2cfa200d45bc3a7c4d0ef95e9b2f76b8991249557d1fd8faf9dc09c1", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f65d5183cf3382c2a92c06749433ed57cadead0de7b02645ef8048cdd57c0827", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7b250fd8bccb46e3a17943215b4704b774d95b1524397512585b6105a65c6fd7", + "regex": "(?i)^https?\\:\\/\\/yuijgssagdf66asu79aiio78asdojis79\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b032e46aa2b4057aa2643baa499c3ad11be80ac58640dd81db56e6c923d6b0b", + "regex": "(?i)^https?\\:\\/\\/yuijgssagdf66asu79aiio78asdojis79\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dbc6be2ca03edc6e3495581da7215f9b70f6a55179b419b9238be34221d652e", + "regex": "(?i)^https?\\:\\/\\/kocalsmetuvaisda\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e01ee5171fa9595e4b426010d4a46ebb0649fc976bdc1713c09e19ef4e9bcadc", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "55b65c6dc8ad92ac2c35f88c3d33e436df0296143985fb40d1dae0b1ecad4240", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a691c7d3aa04acb4468c70eab4cff4c6b5d1f12aa53671dd5e219a36069b0c9f", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cc674125df8051cb9365b40462ef0b1806258b30dc56e2fcede18a9383cc7740", + "regex": "." + }, + { + "hash": "db344998a5f507d026459ff06c2d9259a2d9062ecb6800e6cab247cf4a265863", + "regex": "(?i)^https?\\:\\/\\/kocalsmetuvaisda\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "77c4e4e4d53a2f82649ddaa13a2892a246c8034b96cd2c1a484ccfbc9b403659", + "regex": "." + }, + { + "hash": "8e4a777f4cf2c611f6f30c659c37e937d5fee85ccbfdaec9098412b936cff634", + "regex": "(?i)^https?\\:\\/\\/gidusyfhgsd7ify493yr0e9s8yfh78sd9\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7257dc365ba3c501665bbd2d407e2bb7ce5d30d24f0c8ac6594ac765360d48b9", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e7cc820d781ed573be60975deb79df7950a5ff4782705f185382f005d1a2b0a5", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b3d9f8f0ef4e00f9d45d024e16940aa92a8895f439849e3f5165c56d38bd808a", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7eb29900591198edd6e6f55db9ccd2a025ba4111b35265afd71755fd988afe39", + "regex": "." + }, + { + "hash": "f9b063363ad9ab6e8fd0e62534a6c464977e62f3dba27cbb617b8f6e2330a900", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f945c4752087f7c120c3f387c191d1286b8bceb4fc2adbb2b548a31442d6214d", + "regex": "(?i)^https?\\:\\/\\/yuijgssagdf66asu79aiio78asdojis79\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ca5fce35d3bec138f5583437a851ec7053b94ff4a8828081e5c98a6e689b2210", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "593be6311886a5dc5507806786549b80ef4dadee2527f8a7b413bd5a43a41375", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cf8da01127629d690ea88007d81354fb3e5752c6b5f9a8d5e8a21a13ac56c623", + "regex": "(?i)^https?\\:\\/\\/kocalsmetuvaisda\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9915f766040c87d5a69299892845ee5d1f8030f6eade600fa4e7dfc67d6e9bcf", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2f8130ca018702bf66acfb64179a145840442cbc1ca91d136fc7d1049724d769", + "regex": "(?i)^https?\\:\\/\\/gidusyfhgsd7ify493yr0e9s8yfh78sd9\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+2[\\/\\\\]+01010191e311d13b\\-a27ac244\\-c72e\\-4bb2\\-a84d\\-ee072d34f8ca\\-000000[\\/\\\\]+Tuw15OOi7sYPZp1twhjQt0qE_HE\\=392(?:\\?|$)" + }, + { + "hash": "0d6315c9cba17ba8017ac4f83ea9b49df9991f7ab3a403e105fde4ad1293c980", + "regex": "(?i)^https?\\:\\/\\/pub\\-e8ef8bd5b97f4ed68f2d3b63f82d8ced\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fb5cf36b7f65dad85c93ad8a617eb86b0ae282731269036dffd9f851d43947b0", + "regex": "(?i)^https?\\:\\/\\/hackdeatravessarparederoblox201\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7cfc14d7fecfa3dd1aab0d95a56c89b29f0c5fcb35d1e15855eec1d72342ac7", + "regex": "(?i)^https?\\:\\/\\/welcometotheblackparaderobloxpiano\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67b1d77ed38030c4e8c7121f5d5573d4565d436f0e59258b9b88a570354214b2", + "regex": "(?i)^https?\\:\\/\\/server99182\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "afb96e344e1d520a1e947014aa51959c73bcdfef62d9f2ab346164f34c2229cd", + "regex": "(?i)^https?\\:\\/\\/gidusyfhgsd7ify493yr0e9s8yfh78sd9\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b8efeb758ec7cedeb44d1d6025e248aadecf9cfee174da8f7f2682a4aa4c7281", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6dea8543169441e5f359001ffe74b7deaaee81fc1f6a8f0d11b54ea26cced3db", + "regex": "(?i)^https?\\:\\/\\/fdgdfmjolgfmhjfg66\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "442f46e978dea7fecfd7c489637a87eb5e172cd63bfcf7a9ff01e1cb05e66302", + "regex": "(?i)^https?\\:\\/\\/pub\\-d4ea542d18c74c2391880f6f5bb0410c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "56987b1be3e0d360fdbd9629252d76c7f5eb8bd29ee0f5734f1441e02c1820ae", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f13d2a138acc5e2e2b42c18bf923db94b8f9e06007cf3863d6a1598d7a51a9db", + "regex": "(?i)^https?\\:\\/\\/yuijgssagdf66asu79aiio78asdojis79\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a023a599b55c28d2219fe8c589ddf9d2b378dcad74c29e407f00a93d8e1cf28e", + "regex": "(?i)^https?\\:\\/\\/yuijgssagdf66asu79aiio78asdojis79\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8991c43d2531b97a53cb512a296fc82f8b1f566c34b2663760575b0d882e8c75", + "regex": "(?i)^https?\\:\\/\\/yuijgssagdf66asu79aiio78asdojis79\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27ec73792a5e5429eec96667476079754da8e1b5ec153480520654def68ced64", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "28e7a5a474252c109fa488f7d5dda2b091a50f85bb9a923e87eeea1c26a335ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lcscards(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e79b439fd8cd010f58b4327b9dd5f2f94f7143c2e2aa852e1f4c6ee97fbeacdd", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4761999f446414bc9759db29c699ac08c4618dbe48863cc13678c06428aacc22", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fa7d75573f61f876da3a6b4a3c95b47f40693d6347e7ed6fe7c162cd7a8cbae0", + "regex": "." + }, + { + "hash": "68f5f7774effc6711aa17e0afcf6bdb3737a0fed538fe0dab4de57ad5cc67b22", + "regex": "(?i)^https?\\:\\/\\/mail\\-102212\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "20fa2b4a69726aa038ba65ff4224efcaaff26013a8f43c2f0d9518808e2dcadc", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "18800bcba08b482b33cc1c6463b6fae2b9b4b111e65705cb1cea784eba525911", + "regex": "(?i)^https?\\:\\/\\/fdgdfmjolgfmhjfg66\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "65e8aaae3f9cebb9455426ad9f29163b4c906fefdb2d65e23d98b10b987aa9f3", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a849624927f7d75c6a209deb27b6acf1d55b37ede090b2ddd6e802a7d3de0fe3", + "regex": "." + }, + { + "hash": "01af4285fb2ef2686100e933cc025cbc3b9caeff6600555169f60b06ec61f9b6", + "regex": "." + }, + { + "hash": "c3430e26f56b0346dbd17e5e79401a1a7d1f53d6eb0607af583e1c64a04ed1f9", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6b77a43e44fb828e515dc9bbeb38eba859d9a3d2b7c9d5a36f8dbdeaafb03784", + "regex": "(?i)^https?\\:\\/\\/fdgdfmjolgfmhjfg66\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8995a393289b43c1870184e5532fdbc88447b7f6bc7936c1c08a788e12d87554", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass0\\.info[\\/\\\\]+1[\\/\\\\]+01010191e311d13b\\-a27ac244\\-c72e\\-4bb2\\-a84d\\-ee072d34f8ca\\-000000[\\/\\\\]+jhjkTXj3F1a0t14Omeq8Mowi8yk\\=392(?:\\?|$)" + }, + { + "hash": "dab2207567e13dec218b7ee7df04e89e647c8c172a33b81f5915ca0e01c8e757", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "15a8306141348e78cf95f04498b884987861156d704873e2b00f3a2066411cae", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4dc65e4078057ce14f7ea6bf5331057a1c9f7cec9a0398442f5248fb66b91026", + "regex": "." + }, + { + "hash": "f971fb6e1ddd5026cc08cc001de3cb485b019f55d8888b83dcab9b0934a0cfa0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "18183a841fb29b71f4525edd364d4cf939b1a3b0280803eb159b6c5ef4b5af9c", + "regex": "(?i)^https?\\:\\/\\/robloxvehiclesimautogrindfree\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ead796fce81bb490beab8029ed849fc30a364c7df402d01375711edb0eed19d2", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2efb0df72e7eadb326725b1a9cb2166f7e2e1813a8090f48978b2619d60d0f96", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ef752fae63ad7b3bb89db2860a05e0cef589183f8a406ffec4925d16b8e1cca6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5b398bfa71242fc648f5999bf80035e1e1dd3f57431a70bce578c6a5c39bc617", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "218c16c654b4a3a2d35d8ca6650cc269d7341c5767ea39db94072be0d053fc79", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a7b221eecfa75925e0b3f6f568e5429e35e78c9055580258a4fb3a8f9e00da81", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c768fe5a5453ce5da5ce5a0f2351439e2acaedd7a216f0c7269adca09cc49469", + "regex": "(?i)^https?\\:\\/\\/clorereoss\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "febc071fcbd8ea403bf6c258ccd8f4697ebfd646ca649443312684e11b4d5720", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6fb1cbd3d4bf125664b47ef38e9955c1aef49ec2026b96c0eb05db9a4a9373a7", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13a2853098743ede1a144694d57a30d6117e63254115d6d175f48d4b6d9ccdf8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "0a4170ba606cdb3b8fc701cacca1f93daa3a8dc2cc47d12867a9e891fe77ef59", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "76cccba57c9c26360853b3bfb1406956266973ec03356b45ad6f5efbb6fb288d", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cf27684f41e21e3e869ae0a68f6977d928bbc02d306b35b84ba3d6207af2e3b8", + "regex": "(?i)^https?\\:\\/\\/plsbeicld\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6fa22d0a7122ac6ee2db8512064851923f845700933c47cb4ac4071253577638", + "regex": "." + }, + { + "hash": "231d52c4fbe3c82bccbe0d7205a3e3e01db16d83dd1fac23c3f25c4adb065e4f", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1962f38f95ee94ef9dcbe4a6a19e7e261e77441c002a86d62e303770f6622a5f", + "regex": "(?i)^https?\\:\\/\\/gidusyfhgsd7ify493yr0e9s8yfh78sd9\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0701a23526e80a05e9c198db7fc34237e37304a8b54370d4ad2ad707b1401ee3", + "regex": "(?i)^https?\\:\\/\\/dyvfvjd448487\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0ef46a601e9bf613a9435790940743cc363b64610755be539cc51ec45a8c5d1d", + "regex": "(?i)^https?\\:\\/\\/robloxjojosbizarresideprojecthack\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b06dff7d71d3728acc3e68b26fc3a662cae9b832638590c0a94327ce5cacba9c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9947d11dd94e54294517c8ac5a7a7f083a8fe06f6dcc196c42cd52ff41ba5230", + "regex": "(?i)^https?\\:\\/\\/gidusyfhgsd7ify493yr0e9s8yfh78sd9\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6cad4306e975819210bf9ec2e2ac2d4a9b7b589f920aeea45c9d6c25953bb3eb", + "regex": "(?i)^https?\\:\\/\\/hackdorobloxskywars2021\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fb9d28209325dda4063d062b59134061e0874ba113a32872ead218c18c8fc0d", + "regex": "(?i)^https?\\:\\/\\/gidusyfhgsd7ify493yr0e9s8yfh78sd9\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1b909bb587ad51fc92bcd479fecdeb15904effb719aabde386bb4ff5f389693a", + "regex": "(?i)^https?\\:\\/\\/hotgirvideo2021\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "38dfdd57e4704d159b70c3be0b43ce57e09f218cf7968817c910de8ac9f8e27e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdhtuasckasamcaksemaea\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7b690cf822fc9ba6379967e3c077b99f70040a3ab836893fc08856f5b83646d6", + "regex": "." + }, + { + "hash": "d16b5003de86b7884510a31856e4a3599b5afa0181bc4b93c1b27da7171f7498", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Index\\.html(?:\\?|$)" + }, + { + "hash": "af549fb9ad9302f2ae40a3ea0f1da2eea9999de8c6cae88906ae7beb5a210f59", + "regex": "(?i)^https?\\:\\/\\/mnxvtg\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32b4f7aa39bbd740187ef93247769ba398165069ec23b156c6ce051cd0a9e360", + "regex": "(?i)^https?\\:\\/\\/kocalsmetuvaisda\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "33340dd0dc4a8d58a7e081a0ff845e67760a89b2b93ffda1e4e94770948efc31", + "regex": "(?i)^https?\\:\\/\\/mazsenger\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5628283650d7b8c44a64db63f12aa4f9c21e680dc0c25c0298752409f7e58011", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17b6db3be8648981c51ab4f0618875c27b1f9771891e646845577bbd4ea985b7", + "regex": "." + }, + { + "hash": "09bbb4c19617aa1f7339e05a9b631622e37a8bb618e05f1d6638ab1a57df7cd2", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fcb4c22a06f9397408324ca8233b22228b65b55dadc59aa08eea40744f5eccf", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "28de0615db9a1429ec13205b0e91ce4898a03d12d0188ae535c05a2a72464266", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1caf1edf04796734b77c6c4f013fdf0a2f9021a7309286e5180d617dab619cea", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b4aea8269490111cba6911259bad567b67ab2ae05a5d4f80a2a2e2b4a209c2e6", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "05d2bf6fbae1bbd40c5ef4616679f41b6878193b54d15bb33cfbc3a15591ea7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "a73f9ab0f0bafc7372862c9b901461bec9b0327914a7af447f64d02fcb17376f", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9206600146818b79b5276af64968107a1c64cb06d81effe781fbe8356d5fcf2f", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "28bec4302ac9cc779f8dc74ed56bdea490e1d7310e815796a2647b6f9e65a918", + "regex": "." + }, + { + "hash": "19bd1c44313b9c4844a21f083e1cb0e9779e1309ad8876bba54d811e0fbebd56", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1521dde878b73973dc61124d44780841e1bfacaad7f6b1fab9e4b0d6c5dbaee8", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d84e04bfcda4ecf92f978d7c8606b40f3dfcd7b71241db9b40fc494fce9c802", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cf10201dfbd1aaba1d5b1ebd881cc13df446260679f2633d8e53fe17b181e5bc", + "regex": "(?i)^https?\\:\\/\\/pub\\-ca586986845141b9bb2ccad0b75e8afc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "137f213739e1bbb19369738eb0523cdc008a4c1c091dfa78b7703817190c3682", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "231ddf975df2b61f25deee899dbd77cbf753a2f4a477376c8a595c92e74b4a7b", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1cdd275832e95a08ee26b3b4c0c543ec839a6f105a5d0ee4300450a33fa5cf7f", + "regex": "(?i)^https?\\:\\/\\/get\\-9999\\-robux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a489b7ddeedb6e08a1cf9b64e7f2770dbcaef570935908101d0ae740f5a5b10d", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ff461b33b2bb992fce64cbf79a0c3d0e5e4aca5a2387b325f632c38e3ee55ae9", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6fcac221aa4cec9b868123c9509e95bb01e1cebb39e527836eb6d97a4c3c71ea", + "regex": "(?i)^https?\\:\\/\\/qxcfe\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "221533dd1fc8363c914d6a61dc0e64bc376bf61b0ccb62a3978a82dbbc07ec74", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d4a4f4e48e38b9e1c28b382f0619a0e4080ab9564c7f05708aad5b197958a43a", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0b43de963da7309759227ba1f0f33cfd24edb542443de860f4cc22a5ecefe538", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92df48e7b1995d4823310d122b434b2271b384a206c47b6458885c40328bdc0c", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ffbd25241bcd71575e9b01b150e670c10dd05614129bffad4cb5c2d2b3a81cf4", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fbc89838b1fb58d556a137bbe988df3817f652f45a3f166d3a6c707c5df3ea0a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tmb[\\/\\\\]+de[\\/\\\\]+de[\\/\\\\]+1[\\/\\\\]+doc[\\/\\\\]+start_index\\.php(?:\\?|$)" + }, + { + "hash": "c52ac5af03c9b96e219b1ff0ff47c9de749ab4410a9432fbb3267d16ebca25a2", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5e0a6e4ccf582bf4ddb40d6380d2332e830c1369d65c479d1d90bf560c9402f4", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e4b652a7307c957a80939000b09ea346214b319c94e85c25ec3004c2655ecc12", + "regex": "(?i)^https?\\:\\/\\/grehykmytdr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e1abbffa61bb7c58714fe6f945ee2a5ec4970aee77f86cdea54aea9c1c7d852b", + "regex": "." + }, + { + "hash": "5bd28045792a60cffff916a8a07e9ff52df7dde3bd10a0813dd0bb0d1417b230", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0d3f02841a53a231a49627edb1557a67d9041bcc1e302efc8da2ef288a59ed77", + "regex": "." + }, + { + "hash": "efe63bc922e2e6d8df88d401d835456d07add0491a0702f99448b5d384281dec", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ffbdee584467d95948e7a5b18d7552a1935008d28a4e1a16bafe98c053b4b9cc", + "regex": "(?i)^https?\\:\\/\\/krakan\\-log0n\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9c53decb0abfb7fc4f210825c46f237b50f60bce879f3227319e1809cc59d7e2", + "regex": "(?i)^https?\\:\\/\\/wowgirlgirl\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7a70efa24ad0794a45a79ceb67e4eed6feb24eaed1522c1690304d13a6a9f744", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mex(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e0a23733964013dede75f75f35b0e5dceef59337ef3de80bd03fee6cefe71ce9", + "regex": "(?i)^https?\\:\\/\\/wowgirlgirl\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bc2d4a765d54bd8a5d8df6fc2b8710dfde9520b60c519828951c240242b11f6a", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fce8a8dc6a47a6ebed7d5b55ffe3a36cbccf2bf1cd36087bbf332498dc1637d9", + "regex": "." + }, + { + "hash": "98ad46eacaa556ef5ca16475eec53d4b10bf3649ffcb6a7bdcb6c26c1c839509", + "regex": "(?i)^https?\\:\\/\\/qxcfe\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94cb9afcd3b8e86fbe35cd2d7e232d65bfd3d29183f37578c0c6b6b7f7fc8357", + "regex": "." + }, + { + "hash": "27bbbd5b50f40375859c4bbc3b76d5d3ea0f57a46b2171ddc2b5a1938c1e1bc8", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "09b3d34ffeb1367b04522997e00bd2286ec80ae5d5a487b377430206f526e3fd", + "regex": "." + }, + { + "hash": "1a3fe35939f96c9dc46ac45fea55876558153afdfa83f8f2327ca9bd678f9f59", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "710b100406abeaea6c49c03a0e3d8eb93c091dce1d0de777ff8060b965d13c2d", + "regex": "." + }, + { + "hash": "d6d83df64a0a4fe31f96f20f181e1f2776f8dc0a0d1f2bdbace8ccfbb6b1ce44", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b1ad62ab4be26b6202b418ffabafe689131ebe5a64c6170c3eaa0e239410575", + "regex": "(?i)^https?\\:\\/\\/qxcfe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff17b97367590939a71ef27c214149651a280b36d0c6a2e152d1d20fa56daf4d", + "regex": "(?i)^https?\\:\\/\\/vbuckss222\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ea51372a5fc3026efd903e019414daf9595da6fc6b8d3807a875da6757992ff8", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "99841f5143c3154489e275de8ed353a8fb601ade298a029d9e52f9de15b6ef04", + "regex": "." + }, + { + "hash": "13b452db66c65f5ac28aeab2321fc450f702b2b2259e57ba868d946fd4d7d8f4", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "77d99b9007affcdbf6e41b885c8dd7883969445649270b8e66974d0bde9e1702", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "df62ac8af0aa196ef18fc51fd93edbf6a3d459685cab817a38b05a9a6def8b70", + "regex": "(?i)^https?\\:\\/\\/wowgirlgirl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "01002ac6d1dde594fd9ab74dacef2366d8d58095756498b85046354a066d0938", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fa7231886aea44ec096b58098d8631ae58781f40e169a95b4c1a9fa90950e91e", + "regex": "(?i)^https?\\:\\/\\/wowgirlgirl\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8df07ee80635e960fd82c6a4da31d6e16957008e0878bc5695096766efc0a20a", + "regex": "." + }, + { + "hash": "699361d726657a97bab86590ade08baae03b9b5a046a0002a4eeaa845f01d5db", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75d6de132f008c771b8df03468aa935abb7303bf87e62288fdebd29f5deb74b", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "69737579deaa7bcdc585c1f5eb5ea37e3c03f95b761dc065190652e083046e26", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91278a7c854da65bc807df49aacfd1ca32c0feec171a894bb6b827bd8bb621c2", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a82fa9edafb16e9b2fa5eebad5876fb78b41acbd89a5fa9481642a8163109f40", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a2a73daa3d97dcf542021485c27be6e8694096aecc4f4a66a2627f6c02c6fb05", + "regex": "." + }, + { + "hash": "0f720511ebbe7372521b92af913fc248a36b6b3ef27fc5b5c2d5be1065c6e824", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "428eb2d96d62fd0bfa4b7d3e7d4e811d1c8cb22be2df7a2c2094a937d8e804e8", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab67bd3af56abe949c1fef139e74ae661f43a45a9d0461d758842834694f2e4f", + "regex": "(?i)^https?\\:\\/\\/wowgirlgirl\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "193c61827518b8189ebf54fdad490c1ff08962b260a5ad6e121477d548d897e7", + "regex": "(?i)^https?\\:\\/\\/wowgirlgirl\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ccd1f4b5d51a45529f83ba067a38f34c922db7223acf3005ac1129e20efcf880", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0a94f0196bd3f42a3bd9592b098f5d1f8c82499daecab33e44b9bed7257c492e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7f58f0575b0106d3d23b754871c1f9481d5082755b7153d5436597ef54907876", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a54e0832ba14f59f7cb5a9017643076110a8a62810e7275c2ebd96ba855f70c5", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2d12ffacf2279d5a6609685943f71b8c0fd1750801efba6e9a5ffb67f87e0b12", + "regex": "(?i)^https?\\:\\/\\/vbuckss222\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "34c2575946f31551336450c32e9dcc78d0f3f7239dd2a74b7ee26310bd825435", + "regex": "(?i)^https?\\:\\/\\/grehykmytdr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "adaaf05ac60c1caa19a220b7e9c454a59f1730a32c9e30368b415cde7b7c8a06", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5f007a1de2b2db3a07c215f2a624f87ea428373b555a88094c90facd810c1afd", + "regex": "(?i)^https?\\:\\/\\/grehykmytdr\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7b3d6ddce9e8f1eb96577f35d07b5efce5ea7aa50f74acb35f7fc384af91f3ce", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "31f64c52514e440d23abe24b5d0f28ff79fca992b333a03d66177b2aa35c965a", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6541ff64802a75e5f7a0934250d2b5beb28a677f715e310054681921697c141d", + "regex": "(?i)^https?\\:\\/\\/grehykmytdr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ab6781ff07e215432f1f79de5b03eecaad3a51d9fe8f2b7f1dc3f4aabae013ec", + "regex": "(?i)^https?\\:\\/\\/vbuckss222\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d7ff9707fa81cac98c85d38bb0a4d16fa75eb8c41850ad0729b29b5c185fce6a", + "regex": "(?i)^https?\\:\\/\\/grehykmytdr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "347346f0ab08ab85e6df9aa912bc54fa4fe159541024d83adf74938a6f9619ff", + "regex": "(?i)^https?\\:\\/\\/grehykmytdr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f9719af96d6dcba8a9c0861fd9353e23b164e8df42ff0e56d4415606c0539188", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "77065b1bab0655d1f8c6d3694771380b596606a477d721644de190ea2f7c20e1", + "regex": "." + }, + { + "hash": "9ee233bc9e3a41a26f39a8262923b92894d2ff80549a8d073d0cd4ca2bf62dc6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "cebe224048065e138b360216a4a9e7c9b664df0331caddd94cbb4b57d3a00eb1", + "regex": "(?i)^https?\\:\\/\\/vbuckss222\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4795cd583276e24a260e7f5633ea2c0f799736249ae876693639d1272e1abd87", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a219b9185050d61ba58fee0014de8742c52724c7e4abb765f3f49ca9fe0b8b48", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "effb684e804330e55b53a33ae8efa7bf1f18850a65f79b7dc7945f6af8387638", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "84d851be9efe93f51f5e6f43d53de9ed00bc3a7be4ce0fa70d41ef3956e88d4d", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cf499c17411c0f99015aa52dc07fa7c485c922fe8e8094088b76e5e9983e48f0", + "regex": "(?i)^https?\\:\\/\\/gratisfolj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1e35fa4f1eda70940067eeb42357aa05c776faa760081f02d2d5faf440488abc", + "regex": "(?i)^https?\\:\\/\\/grehykmytdr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "03d540c23e1da0a5ea688affdc5f7c0d6a9cd1433590f7a5de4c9a41a57f2116", + "regex": "(?i)^https?\\:\\/\\/wowgirlgirl\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e3150608fc99522a5d9d0487e0f529ffbcb18dfd3c4c05781f60ef838e996fad", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eb70a1342b868972ea9c4a4274c432f0d304778ce7b93854ade4797a62158e40", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3a422f4de015869fd64bb4cd5cb604fffefd566740a82d78fe7eef23b0e305aa", + "regex": "." + }, + { + "hash": "911fe140f2fcbd31eeca4eb7d823f332aad2b3b46f8c203517e09481691eafef", + "regex": "(?i)^https?\\:\\/\\/www\\.p\\.45\\-61\\-133\\-84\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "460da5bc36e36bcfb1fc85ff609461cd5345fd05f7c6c78135cda6253eaafdba", + "regex": "(?i)^https?\\:\\/\\/ewfesdgvregbvre\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c768fe5a5453ce5da5ce5a0f2351439e2acaedd7a216f0c7269adca09cc49469", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "14ab53a8f5d1419c1759ee1b3dd1c567d3226578b035751a5eec6f6373412881", + "regex": "(?i)^https?\\:\\/\\/wowgirlgirl\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "897a96003500d7fd172b7bb06a589774eb43745b5479841a8847393a2ddec6b8", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dc9cbdd7f6bac73a548e349ff385913ea935f9851af0fde5f3efdeaf5fc5a53c", + "regex": "." + }, + { + "hash": "fbb0c7e68ec35ada4ad0eac7648654d1186b694c3a474e4a90c08cf7da72ee29", + "regex": "." + }, + { + "hash": "3e7d38611f8bfd91dd60a9cbc5516111ba9d9c69f39c4f0de8b10a892b7f1284", + "regex": "(?i)^https?\\:\\/\\/vbuckss222\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8248ef7e14f4acc7276258ebd23fbd448a7e4252971d9cadbed68ed473b94fdf", + "regex": "." + }, + { + "hash": "e53388ab352259a816d749622a1c312ee2e69bd3d347e6aeaaaef81b26407f74", + "regex": "(?i)^https?\\:\\/\\/cutegirlmys\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c9b1b190f9fd76092296a5225b26e55b11dd48f0c99493d7c642793ada97e370", + "regex": "(?i)^https?\\:\\/\\/vbuckss222\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4388aa2c7b003db136ec6f8501acd4fcb87a331cab3379d2fda0d83f05ab1d70", + "regex": "." + }, + { + "hash": "0f91950aae54d51f207ac55ce08e3aca39282b7c666ea9c44c503bacbfb295db", + "regex": "(?i)^https?\\:\\/\\/gfhiojogijdfg74847848\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6f18ef24208ad78001b03766790609c0c963dd43c0f587b5386481350d3d9839", + "regex": "(?i)^https?\\:\\/\\/wowgirlgirl\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "80a72deaa80173cd89dff95a26b006f99fd22e93cd1c5ee38dba2c123100011d", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9db7f6b0a19b294cf8147977809ab4852529d213fe5a27fd9d30f50acc16ef0a", + "regex": "(?i)^https?\\:\\/\\/coinmasteryou43\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3a74f2f4214d991fdc4a4a782a94d5ebb40681ec060ea8ca76392f839f0dd019", + "regex": "." + }, + { + "hash": "a8312629f2b087229bc9c54ebce6bc09d3a44be0d7266a995de15e778a25af2a", + "regex": "(?i)^https?\\:\\/\\/grehykmytdr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "967389d7a4092122f0c30333e815259957f76b9ef84b5703d1b5f1c0149609a2", + "regex": "(?i)^https?\\:\\/\\/vbuckss222\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7e4f6da81ef2b021ba37ca6baed658c09be1e7c9232734a6a9e720712bce1734", + "regex": "(?i)^https?\\:\\/\\/mndhvd\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "119bb7a1adb01a16bd4458cf3458759aed3f4c6658e5b7db6fd704f9504b3aa9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9972[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d989024bb91ceb4c5e5b3e312bc6d0ec238fe90c774a2a80dbd0df4e14a05ba9", + "regex": "(?i)^https?\\:\\/\\/home861\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6dac11e42483cb1ed004a5ba9fc277259a4cd21a172b61cdd17c427398704d7f", + "regex": "(?i)^https?\\:\\/\\/abhishek91k\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e391985556874df2e2252f933c173e885b97edabbdf4342a3544803aa9d55f4f", + "regex": "." + }, + { + "hash": "96f2d4ae26399c3b0e3f0d030e6f6f1b66779b4ddfb51ca6aa66c601368e3e2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wzpz[\\/\\\\]+syxl[\\/\\\\]+gxbxl" + }, + { + "hash": "e26dd5b39667cb6e70fab4e4094c5106e6b60412914a116f1eb85609e50ffad9", + "regex": "." + }, + { + "hash": "6f908ab25d1fb2156e8ef74406e9b89bde64c18ac1c323cf62968253afc9c6c2", + "regex": "." + }, + { + "hash": "9b11c03634c83b64833ccbe2abf7d314b7c9feba067c23e80f726ddcc06d0ef2", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "53ea8b03ce9f682a07f0dd03e6b2063d4b1d4e8d2462a9e7ba99eeb9251e56b5", + "regex": "." + }, + { + "hash": "8a03ea7f456b6bf59803458f78d42c3da4f2fcd8d7be95c67b6a16d4c6d8f589", + "regex": "." + }, + { + "hash": "807af038f991089a62d3fdc7923605b1cd75aac491c77a37668a990a70ca94b2", + "regex": "." + }, + { + "hash": "a92566988c89b7eb331c281341648a1fc972e959ea5746875df5389d8eb893a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index1\\.php(?:\\?|$)" + }, + { + "hash": "1e17fa93b98335d5aa0733924e22a51432cb27f30dddf2d0ccb77aa31c2f8616", + "regex": "." + }, + { + "hash": "4fca3c5281883f2cffa84ee74bd2568f5a35db397afb7b60d665241766a69098", + "regex": "." + }, + { + "hash": "aacb2ff5f45895642e1d2adaad05c1c80034de5978b377b1b14dddc65e163bdb", + "regex": "(?i)^https?\\:\\/\\/pub\\-516e1fd313e04535b796447775ca311c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9be98dccd3deb1bc2c6fbfd97ef71cda1d2a94e9a3ac7527981c175b96de6d92", + "regex": "(?i)^https?\\:\\/\\/get\\-9999\\-robux\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "96a470725ca670bc35d3b92b9f75d818649caf522d69e42d1aade54b76cefcbd", + "regex": "." + }, + { + "hash": "f9212e7dc05fbed70bd3e046cd692f187c2195cf668a48d1b1bc0aee8cabe67f", + "regex": "(?i)^https?\\:\\/\\/nabarun101\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "547f6655b4a0966a75bef84a98e5a0f15e5eb8d0e78a56282d8a98230be7e90f", + "regex": "." + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hFmnZ(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96500fc196379d4819e5243253ef039f33ecd880cbf60ee964636400daa73a9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-2" + }, + { + "hash": "11449104ac2f84584c70e7f8a6b1fe0738490375cefc3d27de6542efb2226878", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sky\\-result" + }, + { + "hash": "692016a4f53c5d30390fd90618d174c411d639251626ed835e9a2f0e1c09b1c9", + "regex": "." + }, + { + "hash": "5ec10fb47451e49ee13871a54deb1c10ac9b16826e6b1c7a0f4bd73c72b2de69", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3cc62d77c05cdc564eeda14a7be5760002efdd22c0c88eafba8fefb4eacaf0a5", + "regex": "." + }, + { + "hash": "e9673605e343c10ff16c9b1e13258062d4c16f239b3a493dd7ef49da57ce2a33", + "regex": "." + }, + { + "hash": "7547903d42a77323058f204e3fb780af8413a4476073418a8aed01eeec14eb0b", + "regex": "." + }, + { + "hash": "13efd5d095e3292d30d4dc723ecedad1338bea1247f74570c0a2ed78f4152f3d", + "regex": "(?i)^https?\\:\\/\\/get\\-9999\\-robux\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "41962eb598565174c24974e3c51fda7ed99952620f306b1d85cd6fe1c445a043", + "regex": "." + }, + { + "hash": "fb673fa20557e469a1942a92819559140969b74d1e3af70ae9d8cc507db5a5b2", + "regex": "(?i)^https?\\:\\/\\/bafybeigi33mr7f6qledtl5tzkqiqqahdxqxrqf3wmx5jhp7e4fpwpepmmq\\.ipfs\\.infura\\-ipfs\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8cd5e7ddb24ab19179e1cd1750c251e53fe94ea565237bc3b2875ec567ed8890", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0baac05625d4589949e515a71012fbe877b111dd576154f64f2537356f387224", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3df5fb01d3c2cd84baaa082fe7e77290d82792b062cbcf1bb12dde2b6f5511bb", + "regex": "(?i)^https?\\:\\/\\/dfggfgf6757878787\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0091369a851ad59b4dd5e7eb8f61a4848972924a1a94d8068a2dd39e68a4d729", + "regex": "(?i)^https?\\:\\/\\/signmeetamaskq\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "923afdf49c16bfa94551cf50ad7cb104f2a1599f414cbbcb80c3c8f835bf105a", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "02fb466d7db5329b38608383df5aa4e0e780935219d9d2ebf6a72af1b68b9ad3", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6baf4e06b93e8f2aad1b05b01e2ca8892fb77dd563c16560089c34a11b9a1160", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a83bce0c9cc748af7bb3b681ee19a017534dd8494c37f82537848ca4d7b9ba1a", + "regex": "." + }, + { + "hash": "6d926849c8d6b21cb1759fc5fbc88f749a6125df57e39fef538083a419d81b6a", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2c8e1fc\\-d8982aa5\\-970d\\-4ed8\\-b910\\-8f3dbe58eec5\\-000000[\\/\\\\]+sNvmiimZI9QwmeVuPXt9QUp\\-6Ko\\=392(?:\\?|$)" + }, + { + "hash": "6baf4e06b93e8f2aad1b05b01e2ca8892fb77dd563c16560089c34a11b9a1160", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "d9b97648c642e1d9e523c977f71b496f728a0bca4ffc8f4ec4c02f59cdc83060", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "abda818ee40923df51df8e756061535bf4bf68fd8a311880aff96f5b743fa2aa", + "regex": "(?i)^https?\\:\\/\\/fscwefweferhgb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e3f7a1825521a89bf82619d08d8685d72a3f0d0e041e37c0159cad59f0c3c09a", + "regex": "." + }, + { + "hash": "e43c3f51ce71f0968649dee7d419f1e3dca3ca99f4a08c8e88fb403771adf12c", + "regex": "(?i)^https?\\:\\/\\/get\\-9999\\-robux\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3628a1fd46c2e60ea864c6f78ea17b786f46bc05f26fcf2f3297f36192b62bea", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2e9595e02fe6ad559f17ab3de212de46f2918184ad7beea094e5cdae6120b92f", + "regex": "(?i)^https?\\:\\/\\/hahicniut67324g67dtf2gr76etf923asd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "14d99a74138cb899200373e4ab3eda48211208214b554b945e0c39f21d879cd5", + "regex": "." + }, + { + "hash": "01bccb180b76afec97971bdd0bf2cd63cc84fc5588fdac31df3e2f30b1bb7a8f", + "regex": "(?i)^https?\\:\\/\\/fcbgxgtsdfdfxbd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e82983b19f227e6f0cbb2ec8c1366fa6c7bfb8bbe22bba58b0a5b54eca8f7c37", + "regex": "(?i)^https?\\:\\/\\/identification\\-requis\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "f26edda55cdeb1de45bb7e3e1aeb61b79c542244fc1f3c69d7f918eede769064", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e5b76627f4cba37081ab1345887d58d845b0c2356aad3cc59f3592fd6b71f90f", + "regex": "(?i)^https?\\:\\/\\/fscwefweferhgb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8a466e3d46521cd17cb8fd71538ff86aa4a4a4174b46c4a21aff089a3eb811cc", + "regex": "(?i)^https?\\:\\/\\/allgiftcard55\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "458334e34bd906e21540dad4c662efa1579742c5f0863c8b458e61ffa78fdd14", + "regex": "(?i)^https?\\:\\/\\/fscwefweferhgb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3c04332e2c046a5bae2b588318ed035a02cd618b96ad04afd63f628fab120db7", + "regex": "(?i)^https?\\:\\/\\/dfggfgf6757878787\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3522b33f6436905af767a12730b92dad3f3b755b05c183ddcf012e1f028c54e4", + "regex": "." + }, + { + "hash": "fa5614caab30f1e57b92baeb06b5ad936082f076536b4cf71c2ab1017f0fb88c", + "regex": "(?i)^https?\\:\\/\\/hahicniut67324g67dtf2gr76etf923asd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2ac239e928ae39b29d7882e68a0b67bffc699392f17d7ec477510457e89e339c", + "regex": "." + }, + { + "hash": "a925c01f013785edf8603b1312d9e743cb1c48fe249cdc4de65a9df6a0965aa1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "0baac05625d4589949e515a71012fbe877b111dd576154f64f2537356f387224", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "1aae6cf60c18035a44bc30e10b6ae6cc9816ac62d077070cca53c0680ce095f9", + "regex": "(?i)^https?\\:\\/\\/get\\-9999\\-robux\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "78af2173407800f14cd7ad77ffcd2ef34930cef6441d9b637107f206060084d2", + "regex": "." + }, + { + "hash": "2079789d73917b8ec9c96d091500e3599dfaabaff78714d086c6ba9bb9f3d953", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6853add6a2f8b1fe5aa2cd56fb7a4fff180d2d4bf997bd82d329732c04868db4", + "regex": "(?i)^https?\\:\\/\\/dfggfgf6757878787\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c722eee15b48be301279ee64754bf105562ffa3be4a2fd0eb3473ade6d2ff510", + "regex": "(?i)^https?\\:\\/\\/dfggfgf6757878787\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bbdff7d5c941a0f8ffbc8aa78cb9a062d3ab5e3de42ebf0ccbe2f5bd8ad31d4", + "regex": "." + }, + { + "hash": "9d13344b6dbb4c4ab531bbb13cebe50b8b63ec03b2056adae5b53ded2b738daf", + "regex": "." + }, + { + "hash": "1ebda2f0ea00a7cd37ad49fcc31ba0a2101e81c23f1af592ad5cfd6105ece61b", + "regex": "." + }, + { + "hash": "72fc02103abb7e7676e7a9791da0423dd6a6613260938a39e3536ecd2fabe348", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d8e1b17cbed372aa879b5eebe95f4eb8f17e2ebf824364fc82f6297cd1e7efe7", + "regex": "." + }, + { + "hash": "8293fec2b92421367d295b45e0c2ff94130afb6c0b2258c51daca568aed2038d", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4af4723c9e81a690ed760a3f4816ea6c6795cf19426f2e0aa857f34a8b059036", + "regex": "(?i)^https?\\:\\/\\/hahicniut67324g67dtf2gr76etf923asd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9c536443c278069e2ace6808ee83b058f4f60607de9bf84555a22e21414adbad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index1\\.php(?:\\?|$)" + }, + { + "hash": "920955fd7c9a0962f520660630cef37a4d423435863e85668fdc43a1e8e7433c", + "regex": "(?i)^https?\\:\\/\\/bafybeib3zn4dcpf6xufhjcmuhql6gwg7pcwtxoo3rqddpdx3afoo2uh7ju\\.ipfs\\.infura\\-ipfs\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3e28ec87f64fe997ee9e4f4c0624657824ee064031b89493cbbc16bee7cc0962", + "regex": "(?i)^https?\\:\\/\\/aze10\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "245552d791502950e43938d3eb53d21859f4bcae7e7883962304a8193d8f07fb", + "regex": "(?i)^https?\\:\\/\\/fcbgxgtsdfdfxbd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c33ac4af397c76b830fcc8427d55f2abcb5a1fdce8740d74ae71f2fc613efa55", + "regex": "(?i)^https?\\:\\/\\/fcbgxgtsdfdfxbd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bc55226b8038fc37e2e0319120203ee86227df29b1313dfbd44a6e20be761f0f", + "regex": "(?i)^https?\\:\\/\\/dfggfgf6757878787\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40c82613030da0ed35038cee220ee850a336cea83f9eb8d9038ce09b83276199", + "regex": "(?i)^https?\\:\\/\\/hahicniut67324g67dtf2gr76etf923asd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2c8e1fc\\-d8982aa5\\-970d\\-4ed8\\-b910\\-8f3dbe58eec5\\-000000[\\/\\\\]+DFmZ_C6sBuIH4W1p44uiDJMjIx0\\=392(?:\\?|$)" + }, + { + "hash": "581b388ce73fcebbdfac411e8152bc7e800a01a24b9befa58af12a46c0b6c8e6", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f6a1aaf2ad3f245a059aa1f473adf5d604a831578a1f5838b7ec78e6847e5a38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s[\\/\\\\]+bJRzC5yrmkCMO96kHzfMukAIlA(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "78ec072418ebb98ba7f118ed98745fa113eac8a70247ed0c8d676d53bf98959a", + "regex": "." + }, + { + "hash": "bdc308a40f509791c45842228327f5b5d983575b98d3e734d56cb306f3e035ce", + "regex": "(?i)^https?\\:\\/\\/fscwefweferhgb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9196faf22326486ed6f32b0e1f8e32394f0e3ad3f394a68cf371548716959cfd", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a99c4c77fd18d061e535ee2df503f91e36724a6c0cc793a5570a770a96157600", + "regex": "(?i)^https?\\:\\/\\/fcbgxgtsdfdfxbd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d3422072d376ee82d60b435e0f852b4a721252c1bb4f23a44cb527149f3cb905", + "regex": "(?i)^https?\\:\\/\\/get\\-9999\\-robux\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8077b3eb6f0b4db0d5134fffcaee4472bf8200ffff5de6996fe1518222b79076", + "regex": "(?i)^https?\\:\\/\\/hahicniut67324g67dtf2gr76etf923asd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fbc89838b1fb58d556a137bbe988df3817f652f45a3f166d3a6c707c5df3ea0a", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?xuebajunhuoku\\.com(?:\\:(?:80|443))?[\\/\\\\]+tmb[\\/\\\\]+it[\\/\\\\]+it[\\/\\\\]+1" + }, + { + "hash": "e9b1ed11709d2edd4ebf0a246f74f6b0824a2204be26f571c716d2dc4d9a4429", + "regex": "(?i)^https?\\:\\/\\/hahicniut67324g67dtf2gr76etf923asd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2f3baa72b2997c3972f8f398cfb84ec63e0194d95dd0149ff8c089cee8b8e059", + "regex": "." + }, + { + "hash": "2298b9c71ce99e1fce2829be93a1c8818ca69d77470c42af95dfedbf0c3b3bac", + "regex": "(?i)^https?\\:\\/\\/fscwefweferhgb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "45afc1ac53a47b1d52cf0502a5bc08f3980f2a72328d4c9af5f1d0597651b4f1", + "regex": "." + }, + { + "hash": "dcbf8517cfcee029e744b4aae1b314ca516936eb902d33f6967a027f45a07361", + "regex": "(?i)^https?\\:\\/\\/dfggfgf6757878787\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aee03feb03dd70462e76b83cc878127e9bbd0e47307b70df3ff96ca0cf4f5081", + "regex": "." + }, + { + "hash": "7c131ed4203821590370873472612805227b95d3832acce53c0c481d2734f163", + "regex": "." + }, + { + "hash": "07726862d207d4628fb1b32cbd2fa2e92c71982a213d70fccc3c77a40292b014", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f3f7538a41e8a950794d100bcf115a47ce7b67a72694b1dbd784c5020a08c6c7", + "regex": "(?i)^https?\\:\\/\\/hahicniut67324g67dtf2gr76etf923asd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8b4d91c1566e89e42de0283e7f1f37e39e5a13ddd62360f31467dab0aafa1ee1", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e60e09dea70d8234527124fb9d002ba31948238949a90ccaf60c8b867566a2c7", + "regex": "(?i)^https?\\:\\/\\/fcbgxgtsdfdfxbd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a13ca4f80e37b0dd243cdb335a5cd1a7f5818147d5259a1f1fd15ffe20c2d027", + "regex": "(?i)^https?\\:\\/\\/dfggfgf6757878787\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2e567522c9afebece463298473a9aa7dc07a895d625dc8946efb2474d4a1190", + "regex": "(?i)^https?\\:\\/\\/azfazq\\-aq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "66346a791f560f980b0782a7d5c56dd3ae55acc7956823543efb988d1945882e", + "regex": "(?i)^https?\\:\\/\\/allgiftcard55\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ce6d2058e242abbbb25d66c4f6711c1e80d53a102b30230d85914bbcc347822b", + "regex": "." + }, + { + "hash": "852211051cb76535d632df01c01af5f4b9d9c93d1a3fdec559d95da4bb9496de", + "regex": "(?i)^https?\\:\\/\\/fcbgxgtsdfdfxbd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3394e12dc2e6b4d398a3e8cf850fa22cc75d99d6ed5fdebe42cee35f0bd83c16", + "regex": "(?i)^https?\\:\\/\\/get\\-9999\\-robux\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8bdeabcf4d6dd3db2e0251f651e96c2c0a1f23cf72385afc174c7ccfe9bd4af8", + "regex": "(?i)^https?\\:\\/\\/fcbgxgtsdfdfxbd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0524e84b1043a4163ee7b92d77f6caae093f3fe381249e723f7394307548f215", + "regex": "(?i)^https?\\:\\/\\/ranjana77\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a925c01f013785edf8603b1312d9e743cb1c48fe249cdc4de65a9df6a0965aa1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "20351143dac521b79062ea3bbea3fdae6a292b0cd9be054875daf8242e956eb2", + "regex": "(?i)^https?\\:\\/\\/gioschxoizhcoiashdoaihoihxzcohaoas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "03f2a7150eff4ef58be7eadef57109c941b518da8e8ff2c42ee9a218919bf58b", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1d90299f4575d04539048fbe7ba395d9546407e67bab7e329ab0f1f992e971d3", + "regex": "(?i)^https?\\:\\/\\/yiasghd6732t7yd6wetrg623t9rghd7e6r\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "be5fe9f697c685a4c1e44b326f42bb499d38290b25c85a726b0a70a2b52d0315", + "regex": "(?i)^https?\\:\\/\\/aevqaqe\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e83d48d60e9cdb1bf72c342d0907fa7f7e73ef4e427b3f017503177bb69719bc", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ee1eed1c5ecf92cee2283efb72b7b21b9980d45bb41dbcdff96ab6e63443613b", + "regex": "(?i)^https?\\:\\/\\/zacaqcaq\\-aq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "57a66b7e3235dc9577168a35074229ac140da707af298c295ba770e3b0fe9165", + "regex": "(?i)^https?\\:\\/\\/zafzeaf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "75909054c8d373ff8367979d8e44288c8df8a1330bde72ff4b6af511f99c5d7a", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e96da8c923d988f05020d8684e414d40c8d84c5052fce94000fc384f391db564", + "regex": "(?i)^https?\\:\\/\\/aevqaqe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d8fe35d5dd6f935664ade49dd1983165962722bd07e1fd95bd8f674b546e8b95", + "regex": "(?i)^https?\\:\\/\\/98uwglksnlgj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ea898b8461eec7d7a67546e9db40b089a1e3afb43e8b41aa5d3f178b9427bed3", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c7856ee122917f3de301161cedf6801607a9526cd02106cfa0d40924a041ae0b", + "regex": "(?i)^https?\\:\\/\\/robloxfree7734\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2f3edc52c0cde3a830f0438e805a484f9801158a9f82d675de27bf30c5b7719", + "regex": "(?i)^https?\\:\\/\\/dfgbbkdnfgol5441\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEagAuEdD39wtEutQfKtU[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEagEEiV01LWsqdM3Z0bg[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "a033a997d2c6bf8535067a7757603eb319cad458c3719034db7e91878f9232b5", + "regex": "(?i)^https?\\:\\/\\/dzadazfg\\-s\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dcc65955bc6d0c6951fd2b1d52a1a0797bb5c8528b0bc7a8814679c9697e3a04", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f453029e92ffde695d78b6eddab20c53334747e8ede4fcd6ae5794ebae7b0034", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "2fd6c2ae8fa6dc0f2f350b61c0d01e78eb5f23c38844fa5f21e9d40ae9dcb6ff", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "de50ad8706f6fc2e6606f7a6aa0cee0f43f18bf454c4c09013fb8bebdea7d2ee", + "regex": "(?i)^https?\\:\\/\\/zafzeaf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "173874ea8c8b06afd4b103037039634a8c9b0caed7b46c6f78ced12cf835bec1", + "regex": "(?i)^https?\\:\\/\\/rgergafvsfhtjyt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "658b9555da37bf01f4127f3fe8791a724597666ca09759a731aa61d7c8408fd4", + "regex": "(?i)^https?\\:\\/\\/xzaxaq\\-xzaq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "85d9efed5f5447e9225857edbf9c6f0a6a1f77b978bebd7598ce64a4bcdcf22b", + "regex": "(?i)^https?\\:\\/\\/98uwglksnlgj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "88ff1593d8dcc55f514df1fdeaf85c7e78218821811d7e25380ed6ecacd36e43", + "regex": "(?i)^https?\\:\\/\\/zafzeaf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "40c8fed7e41ff95a0f686e10dd5346f068ba907efa0185457ae9b1b62d525a22", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4620a75131723a05553a91f41ca37c3bc77172de3075eb646a95c78c24d6590a", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30wR8tM7Gh8uSjsXkJk[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "952a5e1309d22457a96e0921dfd9bb1ce26d47814f7193f8fe82f0ffdcc0f251", + "regex": "(?i)^https?\\:\\/\\/oklnbzgasyuchasokeadaca\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "87f56ddf268b592e604af2da995ff9fe603ed7a0825ea708a2538295abf18c51", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag5wj59FWpKeZ9X23Mu[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "ef0ef3b30d76cd30f2163a0cbd0032fd06d65852d70ab5bbe09700428082a252", + "regex": "(?i)^https?\\:\\/\\/dyuagsuyhcgxyagd8iasduhasidhuhuu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f84167db8f0795e2a2d994478b5a9d676be4438dda28a1c806335268435b3540", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f5eb522b8c0cdc91c305ae8b25f55ce8315f9922a400ca1726990882f66b915f", + "regex": "(?i)^https?\\:\\/\\/niranjan360\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f70ea659a4d0d791fe5219a18f57ee7c68d51ab773450a1ef6a7f64852d0242d", + "regex": "(?i)^https?\\:\\/\\/robloxiankid\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "efec67c70c672957b6fc4c0a6c5c739fd7c74d92862a419fcc25f264f24b28a4", + "regex": "(?i)^https?\\:\\/\\/dsfnjdsnfdjsfn9959\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8c8dcc3f47161534cd5388dabd24bb18568d1fc64809c86d0552c64a2ec807e7", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "edb21842b727ba7b37e0a88db7cba7f36335cd528db93179851e6d6afc8c5da8", + "regex": "." + }, + { + "hash": "aaab5a25bfcf8b2b5043deb2d3b23cb6a6e703d7b0484c5cfa9a249717ee49ae", + "regex": "(?i)^https?\\:\\/\\/zacaqcaq\\-aq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5c5c415a0d460140dd0bcf5712937288c352e882f070753b0efe49000a62e383", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6109b77452711edd243d08c834d0b473dcebdff7d96554fcc6f86edd2d9320c8", + "regex": "." + }, + { + "hash": "e8ee5ac7cb40fd97015208fca39919f88eda3d61b6335c2454880a279e4fad56", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "21b54f5f56a55926ce8c6fb1f99e0c69b9871321aedcb80191c5c659af009b0e", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30o99TVLRzaiOXM0n4y[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "c046bf713f76d462c5ddc99f9e8f5e298f0ae93ca2c1167f3a925f984cd15666", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ef97c464071c0b6ace661ccec2839a3f08f3547182eefed76ecfb7239dce40e8", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d0294cd1d9ce7d7c9be2ff8c8119159f78a3d01656182da009b47c73dbde4976", + "regex": "(?i)^https?\\:\\/\\/oklnbzgasyuchasokeadaca\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "77894ffd7d7c9bb6616aeafc8fe1fb3cea5f3190fc390ec0abf53ba9254e6d06", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8030a37ed3d4fc23bbf0b2c29ea2a9f3c9f141903b79378e6725dcdcdccd021e", + "regex": "(?i)^https?\\:\\/\\/googlecheckoutapi\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "74893868197335b9af7bde6e649ec195cdbcca03f6cbbf0d83a2ffedbb38b39a", + "regex": "(?i)^https?\\:\\/\\/dzadazfg\\-s\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "78ac7052b7c444b216fffd2a9e375d671405ccb99d70f658ea2f45582f70482b", + "regex": "." + }, + { + "hash": "bc0c4056a2d125cbce4c8b98592068f283ea59e1641afbd6bc7e108dbc7dadea", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "546420cd8fca7407cfd201e5212261e34474001c721177b6c6605ecd5d853bd8", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "490fe51e6bc0198b4944be274a0fe3575ea372b126fbfcd584cf6eeddb2dcb31", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30wPXAaAfhYSvptxjnk[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "e141366a4f53e11fe7aaf23ace26ae54a3ee82dee7840d5d2a1e185c7fcd119d", + "regex": "(?i)^https?\\:\\/\\/zafzeaf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8454885500bd86a28796f2d7ee6c0c0558c478f4aacfc5b11c896ad0ea69308d", + "regex": "(?i)^https?\\:\\/\\/googlecheckoutapi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7489d1eebec9bbc5668cdd23d8dc17442e080d58fc09a67a8244fdb92ecfe718", + "regex": "(?i)^https?\\:\\/\\/download3gpv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3f56bf64538ef2829f28460c0ef0af84ba06709f640f9e8009ed1c8c780036ee", + "regex": "(?i)^https?\\:\\/\\/dudeyellow724\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a7e8ed46cd8479a757f951e2aaa6ee7590c93af4b5437b6eb8edda60525e5a40", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "03493f36afc51ab4417d60ccfd4421a0948f4ff8f8df2ae4695a2101cd938a51", + "regex": "(?i)^https?\\:\\/\\/98uwglksnlgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9489dd24f141c50b318a48e8acb530297c18868a5c69c0f8cad6ed2843717926", + "regex": "." + }, + { + "hash": "31a6d804ae7ad6e3274ccb24cf1c8e36cc02ba525bb65aa78bcd420722fb3e53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "a2e5d0b61e5c08b787c1cb2df5e3e54952ce9b144f903400ff072d6b6428a7dc", + "regex": "(?i)^https?\\:\\/\\/yiasghd6732t7yd6wetrg623t9rghd7e6r\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "603977d27a0d2f0f6499e2debe2c926cdba942dabfab561d6d8e90216b153cd3", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c99a133168e0709c489e02ffbff82be4448378df724a1dfef58d77f3851fdfb6", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2d9007239af61c0bef3fa25bfeafb791c82666f6c9cb9a1cb0751bf0f037d3ee", + "regex": "(?i)^https?\\:\\/\\/gioschxoizhcoiashdoaihoihxzcohaoas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c14a36afd574470468f4c738f3e3587560d7e9fd76bc0a37b8cd04af89c9d15b", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "53d94c56b4aac5bcbc10ee2c6893b75e74a3188adc8d369556ed2d7fe55b40ef", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f449e61b77e316ac677af386657860a4ec6a65c206e3e30d72a8bba48a119d4a", + "regex": "(?i)^https?\\:\\/\\/dsfnjdsnfdjsfn9959\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3b3ae2669391e849eb94fda13b9c524f4bb16a6e781bbdb9db0e4a267a4df4a8", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "197d70e279ba96ee7d7da41b2ab3b97e4758a30624b6315ac726c25d2e3d1563", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEagEF7SCgYU3MUcQbPho[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "5bf97eaa17c6796b4bbbc30fd58b598d36df96ee6e44d342655dea97446dde1c", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEafzG9cnMYfkzbKIehQW[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "ac2122c73b7bc9ee4f1fc545992a99229183b776b7817880cc4a78a553aa6c0c", + "regex": "(?i)^https?\\:\\/\\/robloxfree7734\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+6rqJfgq8dIR6SwHVXEGVj337JyC[\\/\\\\]+pedwTre08XSO(?:\\?|$)" + }, + { + "hash": "06416ab4d1241555601298cd121b61cf2668ec82272eed4539502af8f4771abf", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4b03a5c4126980b86a999ff1ee32b0ba7717899600117968802bbf0ced4fae4d", + "regex": "(?i)^https?\\:\\/\\/gioschxoizhcoiashdoaihoihxzcohaoas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e38b9a0db940b65231dfa5f1d06c797145c2e86264689b412ab227c1f124fdc0", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30kp4Yv2TMlcXL69WSu[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "5a56705bb3df70c103b2a90c92b40e640b166b8bb8f6e3454262bd678ce54044", + "regex": "(?i)^https?\\:\\/\\/zafzeaf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e14131ba6c6aec2a2a5781110c541036d5a67ab9d11140b56737a9320cde5695", + "regex": "(?i)^https?\\:\\/\\/gioschxoizhcoiashdoaihoihxzcohaoas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d4f61e1d2385c86e93d2cf9c9c84381cca2c1dfeadba73fda2d5b0d75146c8a1", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5f087c342bdf92f4786a12a190dd19558078e586b143be2ffd43cbb545056b21", + "regex": "(?i)^https?\\:\\/\\/98uwglksnlgj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ff645344e7320f479319f643d99595e96bfd2f5a345a5ee12c819bd8a652aa56", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6aa9516bdb1b2682af945e87236bc996a78d5b8aa57ac6d9e95f9455d3cca5d6", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "509a4cba1aa3b23411f7c23c0c7b0732e3bda3a3847aa8017a74652400119a02", + "regex": "(?i)^https?\\:\\/\\/dsfnjdsnfdjsfn9959\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1336c4b487458382738a1dcf40dbfa52c1a9e6063e67360e86bd351990b909df", + "regex": "." + }, + { + "hash": "936532e1f5d948dd1ff787744243976c5346898d70e04c5f95e9cb196a822ec5", + "regex": "(?i)^https?\\:\\/\\/oklnbzgasyuchasokeadaca\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "71b8311da22c7cf3d6e6439b0b0057e167793235bce77f767b5e5a31e248ebbc", + "regex": "(?i)^https?\\:\\/\\/xzaxaq\\-xzaq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bf94f1054bb16c23ddddfb1b379407e868a0ac7b9dfa3e19c966d54b61b180b9", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "778603bff2175eb32c227210d622bc6cca477953dc5760b2858cd2f59741a257", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f675bd95e1add55b4a6ced56c7a12fe8f8df3cb0a6d2e3320d0be6afa8121412", + "regex": "(?i)^https?\\:\\/\\/robloxiankid\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6b770328fa8a46324e4130de67678d32f19b924d2c7be9fe2f14e52db07830a2", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c34416f6d166239da62cfc8386698e9a737f2696de399ee7563a80055507b94a", + "regex": "(?i)^https?\\:\\/\\/robloxiankid\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a4657efdccf4052764a4ece2712bd0a562e3228fc83f6919e8b18c2de6a05952", + "regex": "(?i)^https?\\:\\/\\/xzaxaq\\-xzaq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6aa99d978f93efee3ec18ecf94f9617f37f99e3d5b640bcfaa2179963408daee", + "regex": "(?i)^https?\\:\\/\\/oklnbzgasyuchasokeadaca\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "61e02641092f410e6f7c72d004dc20da8d52cdd46078b93a5ce020e11d31cdf7", + "regex": "." + }, + { + "hash": "07b0be526c52798f3ecd69c3291540ca5ed657db2448c9f4ae7428bc00b3ec3a", + "regex": "(?i)^https?\\:\\/\\/zafzeaf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b6a860c0d4011c3d33fe908d51180dc926e2ff8d1e6667972a8d2e28b08a1988", + "regex": "(?i)^https?\\:\\/\\/dzadazfg\\-s\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "669c371b1aa9350ba88964add3156e098658901dee5ed6f5b5967ad4162d1e61", + "regex": "(?i)^https?\\:\\/\\/rgergafvsfhtjyt\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4333c6edcd6ad7af358d07a8424048b1cc747c886cb09e8739d844d22dae5562", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9b6d64be12e2711bdca174f93befd4830247f3279a40423a2d2c10d95ce44772", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d4e199c007e906c69e0a315d03873f0a272054c508e605aa8c5bd024d0cfd", + "regex": "(?i)^https?\\:\\/\\/zacaqcaq\\-aq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b8d1cfec210cb5ca6936a0db6d1d6ef626c941a3e382f554289429d929e09a78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "556cc30aeddb25ebcf74bbc56edfc7738ee77e15cabd6ca95712dfe5fda5e03b", + "regex": "." + }, + { + "hash": "f8251e6bcb342bcdd808fcaaf4eb7521c65bf83f036ef5bd4ea1fd4eae79a069", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e1b9188c591a8b390df6327004c973c6021adb7db74cd5bd4177f462ada4cf8f", + "regex": "(?i)^https?\\:\\/\\/video8p01sxxxxx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e4bb971d1cb731dc0c4588cfce87f869338abc067e938dd9e68ef14598ad33a5", + "regex": "(?i)^https?\\:\\/\\/dyuagsuyhcgxyagd8iasduhasidhuhuu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30jAR3pYC0WaT0LGIG0[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "35f372844b37a996425fe220fc72af52a98fa620b44a9751a4fd7776a5aa20e0", + "regex": "(?i)^https?\\:\\/\\/oklnbzgasyuchasokeadaca\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b8d1cfec210cb5ca6936a0db6d1d6ef626c941a3e382f554289429d929e09a78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "861768c7ef1ae6250ffe20788f5cf643a46953e5f12de74a1799b429b3a99fda", + "regex": "(?i)^https?\\:\\/\\/googlecheckoutapi\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fa65a279a74b56cf5978a58da1015afe9d49d1b5eed2b7c3962201f42f695054", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e4bef2182a94d11a056f6438003c0da9e82ecb36ccd4375b71d6e4db612692a2", + "regex": "(?i)^https?\\:\\/\\/download3gpv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3fcb3c1eeb88d72db690fc81d2051ccbd662125776eb5e239c3c00635020694d", + "regex": "(?i)^https?\\:\\/\\/hackphantomforcebetaroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb6386b9f2a46bd367492fe93875db931a2cdf0c92dac6a8b4f35433dfb89e6a", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ee3c56024c6adefa6018f6f4715b5906e8e1fa95f53d7162ff8e466e6d092328", + "regex": "(?i)^https?\\:\\/\\/xzaqzaqfc\\-aqzzaq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a0938aedbb9f460d1c292cfee90ae2dfd1b03ded8f62303e1eee40989c46fc48", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "84231de0264014714a6c8b1d38278ac9f0e9fed4ef56e01fa82f90649f98a0bb", + "regex": "(?i)^https?\\:\\/\\/dzadazfg\\-s\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30rQokuNPiUL0ItDEym[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "1edb08f430618af185ce3f42ac092834fadf93b620dfc70d7b4c6f9fa12167cb", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7b4340bc891cabe91bbff1bb6230d134a0e708b30ae33efff8eba5ef5a46c6e2", + "regex": "." + }, + { + "hash": "082c1105562f749a9898d8ca0a6938e2dcb8ddb01207e448939454af6cc3bc79", + "regex": "(?i)^https?\\:\\/\\/video8p01sxxxxx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "02749c841151e496d3ea6ea1d4a962c17eefdf18cf601441bb9f8a5bb1b3ef57", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30t6f1Z9579IkHFe4bY[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEagAt1lb3X5NhL6JY7b6[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "7e4fceebf31d0f06dbd5237448640c217a37c94a97cd0c68a9aaa0712b4530ea", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "411d0a335bf00af6f8fc370ea6bbe077328865b11f28ad9a7bfa9dcad688cf6b", + "regex": "(?i)^https?\\:\\/\\/xzaxaq\\-xzaq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2d12a388e88619f7f8fc110d92aed6dffcbbee64fcfcaa65da9e01763ae7826f", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "559c5d5a33633d8250298571da1b0c520bb143bb484760ac9f9644d26b426c1e", + "regex": "(?i)^https?\\:\\/\\/zafzeaf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "89e75e8343804e19eb47fc9b55b2a780dd37e5090b35be1ad3b4171f48f8ddb7", + "regex": "(?i)^https?\\:\\/\\/robloxmusiccodes2019marshmello\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30j7cNOtjKKzS9jzSZ6[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "1ffdb45b21a2786fc3a259e14a4a07a8eaedeaeba41c67c4bec94f6f0f410077", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4235c61fd35dbaee2bfcce1d4f3fbd06ad2b42b450aa40a81219c777e3d06e39", + "regex": "(?i)^https?\\:\\/\\/video8p01sxxxxx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6f54c1f19d0236451f8b6141e1df62c86a14d5d46977f69a6a5edcb66721fcfe", + "regex": "(?i)^https?\\:\\/\\/video8p01sxxxxx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4a579954120c08864a59974c3814a93cc2a196060d0b9868e2cbea2638b0b6bb", + "regex": "(?i)^https?\\:\\/\\/jogosdesuperherisnoroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30j9ECDYZ912tDE94xc[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "d0137d960f51186f2fb7996a5a92692f7aa03a9386440050bda762073f67d920", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag0y0fTSGqGWdcWHYXw[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "bc2cb638adcb47fd6fca0f2e9bae52e5b7ce70333d6838228ba2dee4fde6a92e", + "regex": "(?i)^https?\\:\\/\\/dzadazfg\\-s\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "995f8ffe7d4efaaefe040ba93dd110aa19ea8b3787fead9d9f0e0efd1e500329", + "regex": "(?i)^https?\\:\\/\\/dyuagsuyhcgxyagd8iasduhasidhuhuu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "43c22e7d0dc5a8862222b006bb3624dad9b0699502b6c9a7f5aaef5f1bf4d693", + "regex": "(?i)^https?\\:\\/\\/bafybeibjftted6bzc4fc3m2gbpbqschpdaztklf2ydf6js35iasa4iqaua\\.ipfs\\.storry\\.tv(?:\\:(?:80|443))?" + }, + { + "hash": "76d37769b797e34a85f002b8165bef107d702089d4d5b89a4f7593a93370cbb2", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fb00a0824b1f5fa50cb55d1976eb31710af2235ddec76e551e16163e7a8403eb", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c604f0b7b4f27226b9adc9aa1c6198c0bcef3430e42d4b4b09469587f7bc2881", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "98690fba347495831d15e50a4e08408a9049b78f791606d978d22290b8d44fba", + "regex": "(?i)^https?\\:\\/\\/oklnbzgasyuchasokeadaca\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "473ef61f37aa8ebe64f3b9b6389c1c9add5af2fd9b905c9c028cd9eb7781f92a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "9474e0b8ae3a7625eb8332d34e8b7341b2c6d95eeb2fb05e96401df445152558", + "regex": "(?i)^https?\\:\\/\\/xzaqzaqfc\\-aqzzaq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "61a42bbf57c9d3f9c809acb7166c5ec2a77b2e0fbe3911ca82f32f2d8a66fadd", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4dd8dc06a97d014f4302cf0456424dd3ca62fd03605822892f258227ffb9bf16", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8d170766b03b94f1fb858f579f0922aab475a4b50026ea2f274ba33e24eec723", + "regex": "(?i)^https?\\:\\/\\/video8p01sxxxxx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d5eff9fec22d885cf4a54fd392a33a74983ba1df831a08f6277fa6aecda4c059", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5df2cf02965ca48a0677296c964ceb35f8dc8ad5e7155c4661823c3e8a1772a3", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "64d13ca50d69130a5e0d63db82a42027e692186144f3ba3a51a23770a9f8a317", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2efb9472c412e2a532052d1a7b32448b3b8a91f06b92f6ae83b9d84b43e6a4fc", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c0935d35c82cf668abe534a9da5fc1c9699b75943224119b14d582f3f172eb3b", + "regex": "(?i)^https?\\:\\/\\/dsfnjdsnfdjsfn9959\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9743d1e97c6007f1d79869f21945af8a3071aca5659a8c7fd1b78d738a41626e", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "55a4a54d1a2a8ab15013f12739ab3c414a6aad49fe9f74bd617991008dbf2329", + "regex": "." + }, + { + "hash": "c44d7a786759216fd50577db07318c4362c5739b6ff098ff1eb32e2754819e5b", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f8c1cce042a8dc37961d559ea7ab116ce3b18dc2017855ed67993e258268e17f", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "866f2c4be44dadfa801af083646613137a8f5bff61bcce1de5e7e0a28aa2bf3f", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ca9b4f269065a7d1626154b55bf0c66d0e14b50446361dbc10ca986cadef0186", + "regex": "(?i)^https?\\:\\/\\/98uwglksnlgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f611dddb352882a42e45afe8574398fbebe95060948e10c0a483514899cf5fae", + "regex": "(?i)^https?\\:\\/\\/xzaxaq\\-xzaq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "da612ffc3698bc65a764be65d50b103b269a595bc99b3d939399d843b2a93372", + "regex": "(?i)^https?\\:\\/\\/dyuagsuyhcgxyagd8iasduhasidhuhuu\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "eb7d52408a40e9cd4c623a752e5f04d0f64326fa81296cfcc045bd0b420e4bbe", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "30040b760817c44e733b98e503037cbb30980f658f3e8be212db471baf58f940", + "regex": "(?i)^https?\\:\\/\\/xzaqzaqfc\\-aqzzaq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "43c284ef713d3be4f93eb7cdc1db100b6baa33966bb4986f6b7279769c66b33b", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b16fe84c87ec69658bd8a978affaab8a8afed1e1c16e992f0cace82dac5c35b1", + "regex": "(?i)^https?\\:\\/\\/dfgbbkdnfgol5441\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "055b141fdf163d250348f15f6fc679510be6a1fc748f79b3b5cbc56344b9a05d", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c6f9965d18cecdca1fd9bfa96b4cddae094439e0983a66f38ac13a3d6b46e326", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fda63d53172058bc2cb4039c6bc6f412e31c8b5de32d239b94a5f912a936f4ae", + "regex": "(?i)^https?\\:\\/\\/xzaqzaqfc\\-aqzzaq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cf32bd87a95637a52a07bebcb5242c5d6470b472ebc70e76ce768d516e966b27", + "regex": "(?i)^https?\\:\\/\\/98uwglksnlgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6c342aac08c12f7f041c61bb53c75e395f51d54b0d5bb63d1d3e186c6baeaf19", + "regex": "(?i)^https?\\:\\/\\/dzadazfg\\-s\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30wRXqYmTeJQK0Fa9Ps[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "40428d768d5f4ba387f9f1a3d472a36c6596306a965ff509b007bc3170d3809e", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f1b8f94a1476dc775a2670bd43bc4d9c60819f615b5dc5e5cc27fbb5fa6636f8", + "regex": "(?i)^https?\\:\\/\\/dfgbbkdnfgol5441\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ae2d32a5899d50e3fbe2bc18a6f179e7ba7edc8dc41dfd269ec9afdbf5e391a4", + "regex": "(?i)^https?\\:\\/\\/gioschxoizhcoiashdoaihoihxzcohaoas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ddc5fc3d9b26b18911703d631041bb5d926ff5c41d8a77fbd6dd1d6c214e908e", + "regex": "(?i)^https?\\:\\/\\/dfgbbkdnfgol5441\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7aafe8105613ae6445ac8e958b3227bcfc1a4943056b0a2c01dcd1075e119dc8", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "28554377760911fcf867771760db1b3e6527ffacfa9bd71538b91c47426e7969", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "dc3b8f9ec4855829b3a405fa85e0ec2a0e5e55c9f25db15a700efe8e8506dda7", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f5d06c011f4834aa0f5417b91aa670ba21b695ae370f5c71182d37f9a153b978", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag7cZLo1CDzcJ7tSszg[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "aee06a6431b6a9036ca204499c67ce10d7ecdccaf818076270a552c8706095d2", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "accb114678650a1d6ce1b5d8d8fe1d5e0ec0a765ee6973b6f1f3065f20d8858f", + "regex": "(?i)^https?\\:\\/\\/couponsever400\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "db7364c75a0fc267592a5305308c1bb6dd693bd1d52ebb8fdf8bd7bab0bc8458", + "regex": "(?i)^https?\\:\\/\\/aevqaqe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEafzFkfahLiaTk3vcIKO[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "1df57c9e4d38ac06e8b363e7cbc8813c3e96d9201713d3f5f2037178aacea31f", + "regex": "(?i)^https?\\:\\/\\/98uwglksnlgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "945b4aa3007a5b814b29076c80e1bff14860f82b03146290b18c7204c7344033", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "90d1dd5119b98090b49b8447c1c51384c8e487310e8649b222069c406ffd7942", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "81b416d0356b37f69f011630a4d78ea21f0b99321ac4af8f9364b18fbd25d37e", + "regex": "." + }, + { + "hash": "52c27947212cc71640f96a7d1346c8135348fdc33cbe6a113f4a62f8ca7bafb8", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4088854c10e95a658c1a70582ba96baddf91319d28d0972442583e86d7ab9ad7", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8268a5a1e4f63ffb1baf70028015e261e6ec8e6949d15d3467f1f3ce58f3e3e3", + "regex": "(?i)^https?\\:\\/\\/robloxiankid\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "84dc9d897c934c9602c9766efcd1fdd98e7f540b5fe807bfcff453684a396203", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d9da8c13d69ce348b2068906d1f1c6f0e3b0b562166181c43f085488ba5daf2b", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "285330d8628f77c0e8c6e88e87ca31cf9287fb890794887cb8ad3ab2261e96d8", + "regex": "(?i)^https?\\:\\/\\/rgergafvsfhtjyt\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d446a4012ca63d44ee7e048246dffef187b628bd42e8091d72128fe8dbab407e", + "regex": "(?i)^https?\\:\\/\\/metemasklogin\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "96466b7e7da1cf0eb514241f95723cbd99345b10ef43528212ec2cb30de9f92e", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b1bf8ee046015fd5ddf3e1898efbb08c50e4950b7ec97f9c12c48a6734742fb7", + "regex": "." + }, + { + "hash": "3866339b0d02775ca4db87b1116e29dba758dc67bc8778849000716df3802bf6", + "regex": "(?i)^https?\\:\\/\\/robloxdownloadhackedgames\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c1b157ec31646b790aa0dbd09bc20cd2762a743ed2860970b1e2841c76f7fb0", + "regex": "(?i)^https?\\:\\/\\/zafzeaf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9a8d812976cdcf046a0bb49e0d4076d061630dd41626a8770e41adef3fd48a30", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a97139c3d4dc92193d7c1f4e62721f0366f868dbc1490415626d86e8bca4eaef", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "15dc7c9444430c02c2adc59f0607bb1b745085a2965d635daa4ca0e8ff94c8af", + "regex": "(?i)^https?\\:\\/\\/xzaqzaqfc\\-aqzzaq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b7b1946147b90e33e5656c304812f2fe63b6cd9464684bc2ceec63f83ed439df", + "regex": "(?i)^https?\\:\\/\\/rgergafvsfhtjyt\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6f7ce3ecbadee8bc05dc934d77c7eefeac45493750662cddf5eff08be691ae1b", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "566a11977851c0a8e68235c50f41bd1d2dc145532516308ab763fbfaf48c0757", + "regex": "(?i)^https?\\:\\/\\/dsfnjdsnfdjsfn9959\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "96b61c9efaed36747cff7c45b830cd3ee75eb83e16469d0d40eaa4f421228f7a", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b8761d547c86fedc507a05e823d30193e93729a0c59035c1932c3b46f6708eef", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d013e0c5f2cc6eb85fd05e8cb0e72acf34f48fc5060109bb7ed28e380669c20a", + "regex": "(?i)^https?\\:\\/\\/dzadazfg\\-s\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0b43cc4b9711251e780e861369d367838c31542cef51c3ce1e2316ca3cd5f4f4", + "regex": "(?i)^https?\\:\\/\\/dfgbbkdnfgol5441\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9c537620c35c0c667f374720ae65bc6c7d3a01cf2a598f3f054307cdc431af1f", + "regex": "." + }, + { + "hash": "e6604db518a52c89f3419358e0deed15eca6f02986208ea7e560dd52e85306cc", + "regex": "(?i)^https?\\:\\/\\/dfgbbkdnfgol5441\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c9891671e877918b7bf4fa299efc96fadfac9b674f48deb2bdef3d04bccdf41f", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag0vBz2noA4vclv0ir2[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "289651959312f0c145c493b91163b89ef957fb4f8955a66f53192c97b8e8b44a", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c216be981e8bcb801be469fe3e644167aebb74db617c9eb39cc69f7debcc021d", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bcb0fd99054cbd6dee63c55fd71b9d862618c33d149e0d25ff3361f0dbf32037", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f4ee12bec9085ee38d98354da86a7a206e0579dcc13f1de41bf3431c8b8948eb", + "regex": "." + }, + { + "hash": "872864d508c8223a525f1ff73f803e8679a7313d92736e26bcd8fd2e05a1614f", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "deb9b30bbad8138665e06f81e5c6cccee422176f5fa13c25bbd6e087eef51304", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "714b0c0739891dd3241f6ffabfe7609575b8a06f4db0532dabac70693c5450ee", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+6rqJfgq8dISlVOZf1Xg3eeB2xHE[\\/\\\\]+fY1tv1WVbs9G(?:\\?|$)" + }, + { + "hash": "52ebc9c8065422ef92e910917b08d6a27a89497a531043860ffe78df9bac4bff", + "regex": "(?i)^https?\\:\\/\\/pub\\-ac46ce10c5b149cda7a52c8d29f36a2d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag0wnnrSdykz3pPALFY[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "89a3fa83e69e4f9b98dd4fe411fdcfd24b3e4f320d7671c7011a00c2c5eeb093", + "regex": "(?i)^https?\\:\\/\\/xzaqzaqfc\\-aqzzaq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "71b82c945deecd435f2d967289d86377cccf36c5727d94e597025405a60b51e5", + "regex": "(?i)^https?\\:\\/\\/googlecheckoutapi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "49a02b71035eae2fc585df498ac5ec796c840c9ed636a1b25310e7a564269de8", + "regex": "(?i)^https?\\:\\/\\/dsfnjdsnfdjsfn9959\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "28241b8a454907ab5a3b62a6903e4b5ec34dd8717c23e481ca45cd52da651fa6", + "regex": "(?i)^https?\\:\\/\\/robloxfreerothro\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3bd02f184afc71d5e78caa83b497189b027628f359e8c776c846e649580d16d2", + "regex": "(?i)^https?\\:\\/\\/yiasghd6732t7yd6wetrg623t9rghd7e6r\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3225cd67c476b8dfd00778a4615606c4780ff633e417ca7c9ae382c38f6a6d8d", + "regex": "(?i)^https?\\:\\/\\/dsfnjdsnfdjsfn9959\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4c3dd83ce26b3882fe1dd8d7baa65842d5f0b7b528c8f200c98de64cf3cd23a8", + "regex": "(?i)^https?\\:\\/\\/dsfnjdsnfdjsfn9959\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "097cc9986bf6958da3c2b1b5af23d89fec4493a51aec688d943b408c37fdb444", + "regex": "." + }, + { + "hash": "f7598f57963295a9e470cb275d564213ff4a385202f5b2a3f405cfe08267f6da", + "regex": "." + }, + { + "hash": "1c40d480e18da689695535668337fd272fb1cee0c7bc6aa8e6138a189ce15275", + "regex": "(?i)^https?\\:\\/\\/xzaqzaqfc\\-aqzzaq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e89c46bc7e227d1bc4395ccc2740307a9d9dc7c6787335afb3d3d6c75b7b5c14", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bb9f5473cb8c771510ec8d63f048a4f52c0e276a5ecb5b680aeb8260d004c716", + "regex": "." + }, + { + "hash": "d5b1e1d7b50278b967d6e1bb3b5e40d24acec73733f706362f1c875063f20ed3", + "regex": "(?i)^https?\\:\\/\\/robloxfree7734\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b74e37b906ac699e160d5c0d465db80c7b1c8f60ca7b094b2452781e6ef726b8", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30ukUcFIwZ3J65GSUcC[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "da610bd7329292b9bd02cd5dd6eb64e796da065ed040ce7ade33857c287ffffd", + "regex": "(?i)^https?\\:\\/\\/sakshi1747\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "dedccf260090895d943204339e64a1a1390f549a1e766dc0b97d4eeb0673250c", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ca28d8a3f4cabb0c1cca8188f7bb701162d006c0fba16abf7acd0ceca0c8bb53", + "regex": "(?i)^https?\\:\\/\\/dyuagsuyhcgxyagd8iasduhasidhuhuu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "73f6df3d6b88018970411ab3f31ec08d6ede248b2b18b8517256e4ec332bb009", + "regex": "(?i)^https?\\:\\/\\/download3gpv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ea86adab60d267541ed772a104b06c35d1403d860f1a0ed1d0a6187a019d8868", + "regex": "(?i)^https?\\:\\/\\/download3gpv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bc2c92a0409546e1a17366d5bbe458c6872e87defe73593b55099dfc140a9c54", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "473ef61f37aa8ebe64f3b9b6389c1c9add5af2fd9b905c9c028cd9eb7781f92a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ef35b1248ed74e5f06eeb6c3755f0e2826f5d3dd39632f6595d781807fc50f82", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEagED6mE4kXIP6S4z05g[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "44a99e7ba57a9db238d153f98469927bf2e33ed9ff651c66e0e1a8739ca9f90c", + "regex": "." + }, + { + "hash": "96a48251a19e63c73056fb72352154957ea4ba3d42aa4473a1aaf95f561490d8", + "regex": "(?i)^https?\\:\\/\\/download3gpv\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9918ce088f8d795ed9a54c893eadb500aade663a8573134921e871494369c8df", + "regex": "(?i)^https?\\:\\/\\/yiasghd6732t7yd6wetrg623t9rghd7e6r\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4a5783bd4a5c9f5789a4abb7b3abd2606ce3d0b8431ed5765c0571c45ba9442b", + "regex": "(?i)^https?\\:\\/\\/rblxxv2\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30hSB3wnGsqXZRkb22S[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "8e73dd9f1a6dd2ec5d476e515179291f4a11051e6b61cb7069458c7564ee02b1", + "regex": "(?i)^https?\\:\\/\\/xzaxaq\\-xzaq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f98423488d6d80b7135dd83dd825c0c7e00ef7d1582658fa6bf202aeea5c1fd5", + "regex": "(?i)^https?\\:\\/\\/xzaxazv\\-dv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0f7c8521c681d294ec2e0246f80dea62f442c4e543c158f34324fe26b49938d9", + "regex": "(?i)^https?\\:\\/\\/zacaqcaq\\-aq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "69a2f45f6664626e2470f8419df58fb957a43336833896fddbefa24123805534", + "regex": "(?i)^https?\\:\\/\\/rgergafvsfhtjyt\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "97618e57dd5a25985b20668046c60042eb2e3364343c2cbc804f19ea4523a0ec", + "regex": "(?i)^https?\\:\\/\\/download3gpv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30pozkA77OFg8ViRchk[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?web131[0-9]+\\.cweb06\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+first\\.html" + }, + { + "hash": "c6680f8816d2e0ecdb00ff730cedf170932ab465b6cce63bd59c6d15b5fd6431", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f435bd1aac68af2d737772fe9391d42ce72db04bdd7a1188f1a1202fd3489305", + "regex": "(?i)^https?\\:\\/\\/xzaaz\\-az\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "864d42aa8c193d8d9cd1845dca352eeac7ef34176dcb32c2a6c9b8194732337b", + "regex": "(?i)^https?\\:\\/\\/98uwglksnlgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0eaf7246fb4c96350caf085e06aea2f54aab6e5216dbe87b7b2cb185cdb9bc21", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "70bd901cad1eb0626de3e8cb00f3a346cb7fec25f246da5b9d9c5151be1f0f34", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "30c75ff61139b5a3125e7980e1fc7da810aab8c2f023b6fc3ee8663921203093", + "regex": "(?i)^https?\\:\\/\\/googlecheckoutapi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8058fb645f10532ee0ff1943355a0e695980f9b2d96c952e9d9363c4d4b45157", + "regex": "(?i)^https?\\:\\/\\/download3gpv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "70c71407fe34ef3228c762f319c45ecdf736b83f96da6461f6bb298671d7f2af", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "144acc6c0090b74e9cfddc9a507d53173c1e3561ba1fb3efb4b694eabb4574f8", + "regex": "." + }, + { + "hash": "24656761ef1e3f85176c36d0984e3af13ada5ebd7f91e54903f9c7ebcf9b4bb7", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3ec9755e3adecd87c7827402f04ee98a02fbb138144337e703a9ae9d898d2c63", + "regex": "(?i)^https?\\:\\/\\/dfgbbkdnfgol5441\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c3825e090e5ac1ea7f0c21656a5ae1e2136422d865f0e4ed20b0b2b1c302cdba", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag9EOMYHUYEHAv4EVGi[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "71b7d72ba8ab0682c1bc05d0b6a4cdf3c273298e9eff34ce17cab4fa4d5431d5", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEagCY4DtD1OnFGhRTku8[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "488ff29eeedeafdc36efb7161927aee046056f89d979ab62ce6647559f121509", + "regex": "(?i)^https?\\:\\/\\/googlecheckoutapi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "236e78d75c8eaadbc1978c5ffc4f70499f4cf05479b9078ac5be6135cc4a19de", + "regex": "(?i)^https?\\:\\/\\/dyuagsuyhcgxyagd8iasduhasidhuhuu\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6282e6173a60eab56201f831e49aa92fb1550fbf1604456f7798918eb3fe426b", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fce81cf23f7959b113065a7453c8df16adce663a5aecf7e7bf2d73a222564f19", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "695de38efd765ed21a465c977806d9ee30db5c9aa0d976fcfb20c3e51f20a786", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "945886616168bd1e2e051d02a2d060c2c3a65fe116694f0bd4771b11c3790afe", + "regex": "(?i)^https?\\:\\/\\/samuelaemro12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "abafb1ba4b52f60e943507e279b230584fc04e864024b6ffbebfa4e34c656225", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "14f9937222303c26a0594d99b5bcce0f968988649e83ba2c1a1f57f475c237d4", + "regex": "." + }, + { + "hash": "75f4a6b481e941ce041da48d484608bad24c10422d412f633927f229a079db6e", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "edb3e545cf25d1d6a0ac5d5b2aa60cc227eb7f07471de04be41033208f09572d", + "regex": "(?i)^https?\\:\\/\\/rgergafvsfhtjyt\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7a0c00e448c1d80f143af4d56f2db6bba37546999329ae485763400d0e04361c", + "regex": "(?i)^https?\\:\\/\\/zafzeaf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fd75a45a808d738321ed0a3685378fed9c5f5b8fec39cc50d82baf835b73a98b", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c7cfa0c35bab1e36ecbe82fa8471a5fe61c4ca03fb5166697af08c4abd9ea059", + "regex": "(?i)^https?\\:\\/\\/yiasghd6732t7yd6wetrg623t9rghd7e6r\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4d84ff28e8615d666140eb45c258fe91b4985df2e9053f459262f529af59864d", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.info\\.service\\.20\\-67\\-248\\-182\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9a2f675d6e6d659c7b81d8bfb59ee2a0bfbb5e74e26d8b8d07f63394e03ebe70", + "regex": "(?i)^https?\\:\\/\\/aevqaqe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c0a0140da7809a85279a2f22fa006d730a73545f36e841dfd4ebac6d4f58d871", + "regex": "(?i)^https?\\:\\/\\/dsfnjdsnfdjsfn9959\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "11373e476a4f1b03a245d730abdd858fc7f60c1b8091e0d55f6cf5ba0c315f5a", + "regex": "(?i)^https?\\:\\/\\/98uwglksnlgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "38c51d948c736a30ddb4a04ff8c18c7c7d70f22a2a66cbdad2db19e73b64ec49", + "regex": "(?i)^https?\\:\\/\\/xzaxaq\\-xzaq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f750b6c8a232cdf95eb62353aa7b42e674c77dea81b90d858bb6cc869764afbd", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a0548b3a5def8dc80ff4f1a15e2737c2ee2fd4376802114f932ffb43432db17c", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f7b0b2184163dbef816407f998c1cc5965ed4eb2765ece78ddc2fca4cdabab93", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ece2c7f80d2f6664a849cb2b5476c22c791ea18cadd34cba495adfcba9c11136", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b1c572da7fcf14c72577a77a0aa4b4600dcd94fb36af63264e9824c5478a61d8", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30hSa19STq13Qi7dR8a[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "47152de696c42416b1ab8e387a725a4e2693559c394a4fe5931385b89ae23589", + "regex": "(?i)^https?\\:\\/\\/robloxfree7734\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd984904e23d0c00afc432c27d47b87ca1668786642563294098057f2acc20b4", + "regex": "(?i)^https?\\:\\/\\/robloxfree7734\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcd54738877cce54112e5934af5647a2619825661396ac8c57edb088a87e8d41", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "048c45e5f43348adf2590b78cbed8a807302c53534f01653b7ea20ac956abeef", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag2aERKxITUTYN2wMA4[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "74218484d81ebb4436875b462b2e6b0f7ca7d46206536cdaa95bad0052b00d7a", + "regex": "(?i)^https?\\:\\/\\/yiasghd6732t7yd6wetrg623t9rghd7e6r\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c811316076c08bc640381ca4326a25ac5d32537d9473c5a109f88a05365c8696", + "regex": "(?i)^https?\\:\\/\\/dzadazfg\\-s\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "50e1f028384663ca4cc71cad8717b8f124d596a91ebfe6f36936061633cffc79", + "regex": "(?i)^https?\\:\\/\\/oklnbzgasyuchasokeadaca\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b85bd42d0813cac6c96a47d71f866697d69d75b5e54210b7e50ccc877eaa190c", + "regex": "(?i)^https?\\:\\/\\/aevqaqe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "267935813ca572dc93e03c5a2df4de98d3ead33329a45e69653d363e601ce922", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1a70eb967b2dcc9070f3c9e9511e8a599311d6c1be6caf96e293e8d2a18b6ebe", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c3e3f861241b8e388327397e52b206b5c64b218b71b2788a01fa5c493a1558d4", + "regex": "(?i)^https?\\:\\/\\/hackerderobloxsemvirus\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e8f0f1550c1dafad9bf9c006c70138e2984632740faba9ccf58f390749d68adc", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "82c0adc74793340f2e6820d851833ebab035f34c97dd88a38dc0a21c0411b336", + "regex": "(?i)^https?\\:\\/\\/video8p01sxxxxx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6a2079f47fc70eb0540f2882f52d910d654ee916f42e7c1041aa9d2c4407307e", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8bf12fbc1b6d2309d21b18736bcd9a126c31b9d044090ebca7abd493103c961e", + "regex": "(?i)^https?\\:\\/\\/rgergafvsfhtjyt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "919675245fdea2a9406b64354c9d33b77ddbd625b8f87a86a160081a177b9d66", + "regex": "(?i)^https?\\:\\/\\/robloxiankid\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "115ce0e0228b7b517cfdf8b9a89c1cd3100821ac7207ce8f9095154ac33c65d7", + "regex": "(?i)^https?\\:\\/\\/bdhgfgbdfbvgdf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8643d4157c39b4abec3c01c7422a204fe56061d6f7c65d45d3b82005031945eb", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b4495bbc99fdc2dcc1b1521e023715adc9a2e3e429256c79290d351ea6819bf9", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c88d8ab9b4a0ef35ce31921f426d0dceed948760fc42419a4095e9a6b32cff8d", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4b2b5ca07f6ad15b8a9288d92af217398b503c42ebc003361bdfbf688ed2c1c4", + "regex": "(?i)^https?\\:\\/\\/gioschxoizhcoiashdoaihoihxzcohaoas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c2105a765e67e396457f31e91854376409fe2a9f6f75a8e226de6a3e17ceb1dd", + "regex": "(?i)^https?\\:\\/\\/video8p01sxxxxx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "803cc0292ef6583c54a6af9f71dec5f09d23c467b346f0758a9f3fa421da5ab5", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "874c1b84c672748de60abcab0f597b7b0eb399695911cdb6959102d8bfce1840", + "regex": "(?i)^https?\\:\\/\\/video8p01sxxxxx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a55c63564e51c1af84cb4f7c97304a8442b6b4994f127379b1d807284677976a", + "regex": "(?i)^https?\\:\\/\\/video8p01sxxxxx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30jA26csz3M4bjyDt9s[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "ee5222a5cf1c424e7df06db40ff571d09a290af20b2600c5b1251b24a71a42e6", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "442fcf26efb8ee37ae30bf33dcfd89383da4b4b0fe5c05ebde9dfa5d7b3962ee", + "regex": "(?i)^https?\\:\\/\\/freefire\\-gift\\-2022\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5cf28a96753d480bd4c115acfb581440233737cc42d2615d06f70c131d943746", + "regex": "(?i)^https?\\:\\/\\/aevqaqe\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c7d23dc7c6a1cdc5df5051a23e9ce82d2251081d4debcfb54a2f4a196290e3c0", + "regex": "(?i)^https?\\:\\/\\/euyriufdvndfsdfdsbkajfakeurtwmcnreiw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ff1c33e81d02461086ab175af16765569c79ce750f2cdb710549098ef8e08bab", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e4f27f6eb532c5dec63e6e93e4b901890d9a058e41e3f1f9cc75bf8f5b051810", + "regex": "(?i)^https?\\:\\/\\/googlecheckoutapi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "328eb53ee05970141b89855c00a0b8a19389396b0e9b9d3f41787747b17477d2", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "11a638ccb8c1170f86a223f73ae43e9e6f6cafc14d00cf97809f6df26a5ed992", + "regex": "(?i)^https?\\:\\/\\/yiasghd6732t7yd6wetrg623t9rghd7e6r\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "570e708fe09d274801e28c783631c5701065810bbace17e3785a46bb49af342e", + "regex": "(?i)^https?\\:\\/\\/dfgbbkdnfgol5441\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30t5S9x9SFdlAU8WrJA[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "b62ca015252047130804923b0d9d7fb0fbb9537c14d0a84dda365b461a9e3448", + "regex": "(?i)^https?\\:\\/\\/fortniite23\\-vbucks\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag0xbiGn3t60mM9F9Ro[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "19a9c2560434d3a50d0a523359587cb094c5f4ed6e93b432e397998d2a11cb28", + "regex": "(?i)^https?\\:\\/\\/gadigsiuchzcooiadhoqwheoqhdaishoh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "005dfea803791f442782a8ca5c57d65c361e13a73142488b830ced0454cd979a", + "regex": "(?i)^https?\\:\\/\\/oklnbzgasyuchasokeadaca\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "56b3e6835fd2e74d03563ceeea6ff740ac0e8d07271c8e09f0a0ec713df88935", + "regex": "(?i)^https?\\:\\/\\/rgergafvsfhtjyt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "642942f07df86767270df804387272ef8c0caff3fee1e655798b0faa56497302", + "regex": "(?i)^https?\\:\\/\\/gfdsgbdfghaergyrehtghnbb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "598a479200a1a88d6fa26cff91191b7204ebbb0c2e1e584ede417ac585e705cb", + "regex": "(?i)^https?\\:\\/\\/dfgbbkdnfgol5441\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30kmeph3DdkXNkrv5s8[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "a7a65ae5258254ca1aa017d72b1c6f6c9282dfbe9948ce25b00e9de5568a70ae", + "regex": "(?i)^https?\\:\\/\\/dfvbcdfyrgedf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag2ceAYwYCVYhxHAmkq[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "f581811e38a0d007b26d8d3e5a94b3bc4ec20b66bb38db010a7d9777573e8724", + "regex": "(?i)^https?\\:\\/\\/komuengrtzadaryuszao\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a88b45ef56fb379c45e590c67553c0f79be28aa96ca184d62637a5f372e6a078", + "regex": "(?i)^https?\\:\\/\\/azfvcaz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "02e77c53fd0b59226162fc7fc72f1aecc17fc2cedc9fdafd662520e8238c927a", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8622ca2115770f0109764eaa4365f4181000a44334254f477349cfa0694db6bf", + "regex": "(?i)^https?\\:\\/\\/odijfosidjof\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0d7ae1cee7c4a83becac8c40d816dd333543b3fe567cc1fb900164a2451b6076", + "regex": "(?i)^https?\\:\\/\\/primes\\-verif\\.159\\-89\\-54\\-100\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7ffbc7911295d09b3d618f0c44a5f906d09d396b317ada45e4db9ffa06eb4847", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "db755e29587c62c28c0e2d391bd2293b0459fa1e743e82829dd21d2567595ca0", + "regex": "(?i)^https?\\:\\/\\/odijfosidjof\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f74f9de0858e3a901223feb7b10262b5711dfbcb0abee033180dd8bec9f4e5e0", + "regex": "(?i)^https?\\:\\/\\/joiattheranch\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "48e5463286fc9c64e835ef92c7b4e16549f0f3f0cf92fb51e8eb91045d9f430d", + "regex": "(?i)^https?\\:\\/\\/cooor1\\-h\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30wPX4XSQsSr1gOO7vE[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "ca8c269025b1db08f42f3ccc7cd9054e66aee12e70a17eab1f98efffe8642986", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9e3ee3b84842fffd0ad24e95bfd11f2632ad3a0a91c9dc8599a59fac5c1ad7e6", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9b0c65f81ba1265a9eb178e369ba80adfbbee76c64374f0639868dae86d9f1d2", + "regex": "(?i)^https?\\:\\/\\/phlkou\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5b909645a31e6b122143cf60e8da89a623347fdb8d55094fdb6eeff6d019666f", + "regex": "(?i)^https?\\:\\/\\/joiattheranch\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d2d35f11b273d84103eac33b256253a206558f2b092a774f8faa5cc5a770cbd2", + "regex": "(?i)^https?\\:\\/\\/cooor1\\-h\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fedf43a97026663e0009212664f2ad6b98ba24e7a16cc1f95692893922b0605f", + "regex": "(?i)^https?\\:\\/\\/tungmlnoiphetitthoi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "488fe9c0600b34cab0de522d2abe0db3684e78e44cd6da4df3e465012e48225f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+co(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d2a8aaeb92941c2585090e28e1d247b7301f7defa007a1d75280de92fdb0a63", + "regex": "(?i)^https?\\:\\/\\/phlkou\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a4864a18326afbc72c01015db87d3c40f054828748c963b166f35c549eeb9cb7", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "73ced08f8e084719465629f3bb4b9e077e993743bbd46e60ee710167c62cd91e", + "regex": "(?i)^https?\\:\\/\\/joiattheranch\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "440ca43db4632860dae39301c54736c7e66218e9e5011e46fd5b1d2a327d5352", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "74789c09b56bc864e764386b97ab03c8eb48e8933305ef4cfcff98ae6ca78ca1", + "regex": "(?i)^https?\\:\\/\\/phlkou\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e77fb63e65cc0a9833101fc3d684afe66ac8b5385816b17a5378b039f1b50165", + "regex": "." + }, + { + "hash": "931afdedcbb1770143d56c689fee9d10395e9658d94a1feb27a891c3c840188e", + "regex": "(?i)^https?\\:\\/\\/phlkou\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fbe958535028da1aada98f13854b4dec1b6ebd8ab91f4807b5818fc587fe5590", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6164d45f98c85d3c612eb0e7b1d2e0eca363bc092fe4ffe73503c69eeea0168c", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2c54cb620c91d75f57d678b96984a2156f9f46aedf708d6c2f5a763dd6504283", + "regex": "." + }, + { + "hash": "dcfb030bc4df957968f7f3ebcb223f0f0e08deaa7a96ec2162a281257ddf754b", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f956264801dd09f72d769da365cdc60c2279f4559e05ad29058778062b8d6cf6", + "regex": "(?i)^https?\\:\\/\\/4\\-72\\-postal\\-com\\.life(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "9890d14ddd1034672ddbe85dcaefca54b3d07c2332d8ee19466ae4e683c51f8b", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c530f7922e4086fd25a0130834de84652a7d4b03baff2078e72eba42952085a2", + "regex": "." + }, + { + "hash": "5e1b2a3c872f40f59b6bf706707233a612d6eacf84449d4bc558f436f9524adc", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "471bbfea472eb93027be66524d94a92019ce098dcdeccfa20dcaac7a96feba69", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8bc5a3eafc4ea6390bd8a443674473f781d6ba4dec4fbcbdfd229aa5e91d3e45", + "regex": "." + }, + { + "hash": "5364efa58cbac9d1b219c0105ab5c164624f03d7ef842c90e0aa6bc1c5663044", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "470b06f0c23ca5c885d42029864432b8a44cad1965ca9b933bbf779256cabd92", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+apps(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ddc00d3ebb4e9cc18ed9294895cd290ed5becb15296e8340667ded53205f94d4", + "regex": "(?i)^https?\\:\\/\\/phlkou\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "38218e0d37ba8060a1a0a15fb82261ae5a435c604b329f858091f71161a81b13", + "regex": "(?i)^https?\\:\\/\\/joiattheranch\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a0460e03ce51a082afb6181735e615e6b018c962e8c1909fb015dd616e986b62", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ac00ce3ff46251578755b3e2780f9929578f448c20aa466fccc087ca99e29695", + "regex": "(?i)^https?\\:\\/\\/phlkou\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c9ca4ff6d55c347969354290ef7692e6a368453bed9991e24ee25ef192be5d98", + "regex": "(?i)^https?\\:\\/\\/58905061\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7478c572d3578eab0b121492f39f7d4ec16cdabbe37129f5dedb77a7dbf81de0", + "regex": "(?i)^https?\\:\\/\\/joiattheranch\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a02384ac4c7ea76e66d4d08d8854d44b5d1344b8ec97eb298f27ef82782b2f49", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "549efb44fd0e848a521f2781486aa6d90e926abf3f36a7db9b983f7475dcc929", + "regex": "(?i)^https?\\:\\/\\/odijfosidjof\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4a2bb6185a36b2e9f4192f4f27cd5283da225408092b5d8d9f6932d145b76dea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ad4223f2ce633382715dfe71314b3582635103cd27542a59746714ff13a0a7a5", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f5aaec8769087a2f900965fd7ec8bcc0f67e3d5b7531eb8bd2ae605d666262f6", + "regex": "(?i)^https?\\:\\/\\/joiattheranch\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d80a53abbc453f67eaedf5546a0ff4884f1cf5da7d7f60bcde00769b7aa88ce5", + "regex": "(?i)^https?\\:\\/\\/cooor1\\-h\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bfb9722bc546c692ffb5faf85cffcf468b7f4f9f9fd73260238cf33f8d844749", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "107ff706487ce0d5e4828609f2148af460349fac101494d80babc9777437af5f", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3efc04df54ad2911fdcce74eb07f5d9364c15c6a6a3ebecab55919a32d4e46fa", + "regex": "." + }, + { + "hash": "3e110e98ec85976c2622baa605cafe5e2b14f0b8afc214c2161b6bbdf6487cbc", + "regex": "(?i)^https?\\:\\/\\/phlkou\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0d7ae1cee7c4a83becac8c40d816dd333543b3fe567cc1fb900164a2451b6076", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "7329b030f913cccdad9169915113b69f8e525ee9707f422bc367be7e81095324", + "regex": "(?i)^https?\\:\\/\\/tungmlnoiphetitthoi\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c4df1eb36353fce1c82e4a9552b0dbf9682604014e1cdf7a77c2a0b271fb293c", + "regex": "(?i)^https?\\:\\/\\/odijfosidjof\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1924229709269af1c0ae37b60246aea24aa62b25eec3f256e3fc05e86d722be3", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5ae5e9b1f7c44744e7c562b458dd41918a7f5383584f90e4c991f474b4bdc62a", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "952a752739bb48d40cf210e95dfb7f8b8e3a9bc6bc9bf7236b5fa516a53f6351", + "regex": "." + }, + { + "hash": "e9c61cc2b21c1ae5d0bc1069884c5dc9beae118222ba45e6501c82fb55616585", + "regex": "." + }, + { + "hash": "2ec29736f78220ddeff8ad21758fafb35c89d4318936d29581eb03624743c198", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "155bd2fbffb976228f0dfdabf685928a3c7cad2f2351d3fce925a8b19087c286", + "regex": "." + }, + { + "hash": "c646e2ad761f811cbc97b5f4122fcc3c6cf1c452c54163cc45e5c8ad6fc588d6", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEagED6gBMViCnCIZPODA[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "931a32b24916f9c6516197bb9c74386ba5e3ddb7b117941c8313e70bcf53cd65", + "regex": "(?i)^https?\\:\\/\\/bafybeigvihsnzzdawkk6axvalucbxib4lh7i4fc26rypdkixqsuj5cyknm\\.ipfs\\.infura\\-ipfs\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a768fc7462d5035c65fa520e564c8d4c92b1f91f5c74136df0ef0b87710ccfca", + "regex": "(?i)^https?\\:\\/\\/phlkou\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6aa958693f806abc7d82fa8a1afd40257b76e879c60d3913e452a0d62e592189", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2328a2c519fa338229f5b2e7effc068b76690d65a31968d1ed49681c16a6e2a5", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b9a76effc0b897b4d89ed4f883770fc420c13ecf1e1237097ab5139ec9fa8f95", + "regex": "." + }, + { + "hash": "3743c2fe4183460d69c21d75c8b8d7d7bc821a252e2c2b4f386456045639231a", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1eaaf5fef798a7557bb4684ff5df8614dfc07448983eed0e1060ffc2a69fc414", + "regex": "(?i)^https?\\:\\/\\/tungmlnoiphetitthoi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ae0b3d9696bf635ef7766f326286690b21ccd42249420783c611df5b53623533", + "regex": "(?i)^https?\\:\\/\\/fagirlmy\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4a2bb6185a36b2e9f4192f4f27cd5283da225408092b5d8d9f6932d145b76dea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "093a329b0921e70943807e0522e3b0a7131c5bed6d3c5838156e881447c87630", + "regex": "." + }, + { + "hash": "fa6937ffd62e8f1e2f29a9fdc689db171dabe446dfbd53ff4d3565f5a04852aa", + "regex": "." + }, + { + "hash": "3da1d5b81fd3db7719248a76ff5e6c921f6b588a961533164a6cd36fd6578aa9", + "regex": "(?i)^https?\\:\\/\\/tungmlnoiphetitthoi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2cc55cb2e1c992ca502e6a46df26b59d1df4f43c1c628757e4003ea625cd96d8", + "regex": "(?i)^https?\\:\\/\\/cooor1\\-h\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e73a1ce9df197af7b405dbadf88ee4f4cd315c9d85ab49b262207688affab4c6", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c68441562683163715ef0c991b4c1c54d1ab4e0d3e9ecb35ee6cb0244751bc01", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c5e1c3837054530bc7823f7e54664d5dfd0f6e309c7b8ac0a6f4d0f1a85eb4a1", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a899925a4f7972de042e3d024d6833007296197931f5e6ca6dfc68b2d875fd83", + "regex": "(?i)^https?\\:\\/\\/joiattheranch\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a0f8b7690bc1a6ebe4ee8b50702abafd6a951619dff97fb36da86f264406e43a", + "regex": "(?i)^https?\\:\\/\\/57508081\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c919183fe6c773c529193e2dfa30ed750c445a6e146484480617e48a2fca507e", + "regex": "(?i)^https?\\:\\/\\/tungmlnoiphetitthoi\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3199d5bb1b4ffc5629d51f07fe2387b66be647eca5fbd1c4bb91b7ba293a6f4b", + "regex": "(?i)^https?\\:\\/\\/phlkou\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7b3e8972e4aaac4b4e6e8c395686760793465c27d96d9199c4425ae9ea088adc", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEafzG9WkeJqfNhAn55Y0[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "df571de0a9a20da370dda9ec6ddbb080a5f0fa486c17701d5fe44ab5387aa844", + "regex": "(?i)^https?\\:\\/\\/odijfosidjof\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6bde09beaea359d9e6e6379c5d777c2495a2c8961b6115d195e4b7fbf03abf3b", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "642c915b77e16f5e93b49fffd1aa4454b4f34295128070e5c17254eed7935fd8", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "01c7e2ea5bc10ebff64b9f9473b21169e5667be73c5ff0e5f89211622a705715", + "regex": "." + }, + { + "hash": "d5f731158f2344fc5ee75745455afde324ab7bfd37532a76f857a32db1506aa2", + "regex": "(?i)^https?\\:\\/\\/cooor1\\-h\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9511be902b1c436c58918e43ff2fea7e2a4fea289837f3b3686689d508452af8", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0eeb941fc330d1b4cfc6244e390dfe64b5fa11f88a9bdb1f8b1618a343202230", + "regex": "(?i)^https?\\:\\/\\/cooor1\\-h\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1eec6382183facf34b760b41425f036cbd73157d3920f63ec2d23ed4deaec3d1", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9d40ed246b41ba2168bc1564f684894136884e2e1e0b8897f135594f89178adb", + "regex": "." + }, + { + "hash": "357209e6e6c4686d6d8a3aad61ed8c40ffe9c2a3adc49771c63a91f51d4ef6c2", + "regex": "(?i)^https?\\:\\/\\/tungmlnoiphetitthoi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3abd66a8da3d0a63f6de4efc1ff6931a88bd65116e8ff0c10d99d2883489706b", + "regex": "(?i)^https?\\:\\/\\/mnbhh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "322f94dbf29dbaf4d363889ee95b5b20237599ab44cc63fca6062550848bded8", + "regex": "(?i)^https?\\:\\/\\/anghelfilms\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "006ce5cfb6d622aa5f0b76b850196afee1a8ad895eb0c0b9e3ec70719399aa38", + "regex": "(?i)^https?\\:\\/\\/cooor1\\-h\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "117f44e8a39f06e198067365823287104bb1899fa0a2a8593c34e0a72d4d7914", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usunit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "59a55d2b839e7a9331ea2d80342418145d54e0953363290ec9251a67e5bcb910", + "regex": "." + }, + { + "hash": "5dc37958e7f8f7d5c04bbca2f10007b061ec3e2693051c02bd66cb008af0fb89", + "regex": "." + }, + { + "hash": "c90ad1a5049d86128510d9ff4e1a8d7ed065bc28859ef5d48080086e864ea8f8", + "regex": "(?i)^https?\\:\\/\\/odijfosidjof\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30hSZv6kF0vRWYc3pG4[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "2c5a0ec0edc1f9e761a2a7fcf82b069b314756c6ca66a70984210a87aae8bbff", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b1b2cab212473dea425af22a3b9b3d33380d0cf3095c081ea90bed2f3fa07d9a", + "regex": "(?i)^https?\\:\\/\\/dfhfgujfgjfjfgjfggfjfgjjfgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "665a126c2abccfe6a14b4dded11a433173dc7ab75c6858cff56bfff56b2f3a6a", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a8d0f1c1a1fbbb8299b93b974ac6e115f71173c39e31d46bb3337f1e3840f64f", + "regex": "(?i)^https?\\:\\/\\/og821746y8127346287143\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3c6c40c108c8ad9e0051a4a930a71643bf647527f7fb32c573376df51e195e8a", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3280a882c1346ce5d74013eb049b01ab1eca62ce0dd3aa5e20a9422db3491353", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f4e9ba1968da310c34929974dffded328ba2323470d8420bea929ceeffbd4241", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7bd9b98c5a9e2dec28b2946c727f95a52bc8ddebfd2d669a2594cca548484668", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7c3d9964207685c9bfc5fb99ad69d584de4be96622cf38e28c2ed11e45b14308", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YuWBaLfVK96D6Hd9s[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "b0fe333d1d8b13ae668de32c3c857ee42f85ae91fda242a2902bb92b4725d1ca", + "regex": "(?i)^https?\\:\\/\\/dfhfgujfgjfjfgjfggfjfgjjfgj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4e7a66d0ca0526de5b3470ad11cadf725a881b9099dac251765e0491e404e1a2", + "regex": "(?i)^https?\\:\\/\\/boladunia9\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag4FGtd6mmu1TyArzT6[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "d8b43cbf5d6d38abeb7bb86b4ad33912dcb517793a180ca0ae0474450bf7226e", + "regex": "(?i)^https?\\:\\/\\/og821746y8127346287143\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "391ea8ccbc04c5c536ddad37cc7916f28a1022500dec500fd1684777ea4f2ff3", + "regex": "(?i)^https?\\:\\/\\/bvcb54v\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "efcbaad183ea049a09ed37a940aa4ec401683c01791fddb8229cabef96f622d7", + "regex": "(?i)^https?\\:\\/\\/bvcb54v\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6c1ef5e5e71f6ed7a3884e046ad4165a39ecc5434609fb224a270c08c57708c7", + "regex": "(?i)^https?\\:\\/\\/bvcb54v\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aXx19GneErP3lCrpQ[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "8730876da6313045faf10c8fef6f0fe73226a1fb302536917312f6cb698f57bf", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b3a55bb913fc70f54a457a1bd7ec2b3419fa9cdec798dfd7bea5791c48f40666", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dqQ0sChdIHv31KuAS[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "2bc75a51a93b75ea8f57853ca3aede64833d0be55444f7510dea860202003bd8", + "regex": "." + }, + { + "hash": "03d94078e79704aa3c20da297dd546133e118dc2ee3bd88342212d1ec3fa79de", + "regex": "(?i)^https?\\:\\/\\/atthelpcenter\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "718a73b8debdbd4c006d990b16950479829deb095e3bff61df931a08d8ad39a6", + "regex": "(?i)^https?\\:\\/\\/bvcb54v\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "dc7927d0c9d16ea7d58776e1005fb4ed2e623914f1204e7816f6093193a82781", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "253f3cfe6fbbe90f81912dadd7c622e50491142b757f804879fed653330dd4b7", + "regex": "(?i)^https?\\:\\/\\/boladunia9\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YsuSoP4VjhZJ7hcds[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "8356b229e4508a04b41f138f25f339a248d047352b4273156cfa00293da863df", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cfe4237062f65fea114d21f187e66d8f9c8d98e6a56717ae5e7353ed77183827", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3fe21025b2687f8d2eca2e50792c9ca0b4cfd291a1f79e3e5cec6b0137e786f8", + "regex": "(?i)^https?\\:\\/\\/boladunia9\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1f486cec3ce06fe7c19a68496eddcc7d6f5fdc58d15778328768d79e53af049c", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5c5ccda7ff031a8cde10ce376198209badab27e6bb00f65809d6abdc0339abbf", + "regex": "(?i)^https?\\:\\/\\/omgeving\\.my03\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cCaWEl50TtTOW662K[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "5d7cf209059f4fc18d4c8061f1e1bade412a3c0b4eefe51b109dc8723a999397", + "regex": "(?i)^https?\\:\\/\\/buiooisduiofuieuowefuuoisdvuopo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c9d81c837784bbada9e200cc5e4aaed6fed6c7988b997d926d530c78df9c6c3", + "regex": "(?i)^https?\\:\\/\\/boladunia9\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cAybNO0MiE8BWMrlI[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YrhbCPReE9zW0aPLU[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "c3b22212e9c726ad0448e8dfd9a0752c732be78ce4e7b296880221b8a402e6ee", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6f72ef9d44bea096d4b38df7364d1783c590c9f78852d205bd6ef3fd3236254f", + "regex": "." + }, + { + "hash": "b0f86f8052c9a826e9c3c6b62fc859049e5160abe51983df8bf68fe3afa93bae", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7342ddbcc56a502087d94c51048380867bb16a1d1f9f6060d5b91c3f8a592e08", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ceeb14477b8b91c6633b07e135fab535d970d7549a34eacf51ed63b4096fbd77", + "regex": "(?i)^https?\\:\\/\\/gtdfgdfjknhjidfghuifghfgjjghjk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bd30f41ab5e17486e3d7a6b7720c702be527894155b72b9a94c019aa81f9f11e", + "regex": "(?i)^https?\\:\\/\\/gtdfgdfjknhjidfghuifghfgjjghjk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "467ffb360493fb5b64ac870024075fc5ff05f88f038cba41f4f2a06800c593ba", + "regex": "." + }, + { + "hash": "ffefe4f3b3c2418974f1549956777a855a59aa508ba836425f20ee7aa764a0f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "247bde025968beee47f2fc00f13496a9f7b0f53641f49e0c7aa059b579999258", + "regex": "(?i)^https?\\:\\/\\/gtdfgdfjknhjidfghuifghfgjjghjk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6a750a9ac8a348bcbaad4d6ad3e7fefc896aa960ea63d285d4ad211070557139", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bb73963b555a3812e17fa85423e1769fdb9da6999aeb3a8e0c1b9553ae21483c", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0npriHpVCMiyaPbXBY[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aZ9miYBgen4hMkTFI[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "a434c3b4d1e7a92f03b899fa85ca7ed74a9a9ac0e3b6c8909621846089ffaf72", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "96b139c1014b942a4af332d6ec78cc4788e9c65463d69efc7b15ac93a3376c4e", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c4dfc5f450e2af471bdb35ffd587a3383c9c9feb1d28c29d88095ae43cb9b014", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dqp47a9PYPgStwv96[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "daae1f26dab34bbc423a48eee0db0f919c57abfbfa1dc2fae6aeef1ec08b0e25", + "regex": "(?i)^https?\\:\\/\\/gtdfgdfjknhjidfghuifghfgjjghjk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8585a17c52547c29e1ead48f99592564f485e5a10c58ac7ed4aa33477a67d78e", + "regex": "(?i)^https?\\:\\/\\/gtdfgdfjknhjidfghuifghfgjjghjk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "18a79ccb78d2175f41bb9f51f7d9f896967bfeb667a2b86e967914b7c9a6dd5d", + "regex": "." + }, + { + "hash": "0b7a40f83b8937dd3eb8e63e856b98f5abf02f93787851cd15f7c48282f21495", + "regex": "(?i)^https?\\:\\/\\/freerobloxgui\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0146fa84a4babc720d838fb40f28831ad75386a74d247b04c577560cbac0d988", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "249385edc6e5e1f409de868637e6862d9f98a3f3ad5d5eb8e532462317368b80", + "regex": "(?i)^https?\\:\\/\\/gtdfgdfjknhjidfghuifghfgjjghjk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fa2f43b48c822e7f7d7058e42a0ad9e1fdf06464a06695a0aa9b05f27df6d8e0", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "18c09f81bc368fec85b45d7ad5da0126da7e0e26662bd6a242304616df53b2ae", + "regex": "(?i)^https?\\:\\/\\/og821746y8127346287143\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d6997aca21efc69e80726b87c8ec2cf8534c01e87d7c99ad9ab90f86cbd9675a", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "87a3bcc6bc82415b804e59f5ba19ca115a11c2b16c8a544138b94ec319637cbd", + "regex": "(?i)^https?\\:\\/\\/bvcb54v\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ffefe4f3b3c2418974f1549956777a855a59aa508ba836425f20ee7aa764a0f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4b2e1291136300d0dfa320e7f22bd9ffa55ff6b968f20505a207a4965cceaa74", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0nrsUJ9XyDIGuGnYgC[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "01752daafa081e702a26fd118cc37cdcd1f5b60154ce92b1d6d8ce44e8baae8a", + "regex": "(?i)^https?\\:\\/\\/boladunia9\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "36d74ba3f957fab138e3e31c1895949bc6d707d70f5949fa7e2cbcea4c9acf78", + "regex": "." + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2d7b3b0\\-a4f92e78\\-6868\\-4e20\\-85a7\\-eca4a070f532\\-000000[\\/\\\\]+W7mypQaI9RLlbCZoo\\-bfkRKow90\\=392(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0kUZq2oeswTdRX3ROa[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "5c42c5c44f9aedbbf6f62ee09bc879bdc0dc3326ce31331d3aced6b3a236b346", + "regex": "(?i)^https?\\:\\/\\/dfhfgujfgjfjfgjfggfjfgjjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c7608a898d5d47a4f1a2e826b9dd99da7dbdc29aac23e6c40f74b9ce7693a18b", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7721c1eb791aa0cd524de239c300b20e9e51e131deecb0b52f436524b985e8b3", + "regex": "(?i)^https?\\:\\/\\/boladunia9\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "73c029d260b69956e43d14abd34298d1f7991e4f9c95418d7c41674df7da409b", + "regex": "(?i)^https?\\:\\/\\/dfhfgujfgjfjfgjfggfjfgjjfgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YrIk2STW9G2P97c7s[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "d387469f152abeaa54edbdd10561c7d787642a714e50f7825056645ce2c8e1c5", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0hCVnWXxr3Yyidxo9g[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2f29df0\\-c90d8f77\\-057d\\-47b4\\-9c95\\-66ab03590859\\-000000[\\/\\\\]+QU3enVQCpYAa3tT4TVgiaanCgGU\\=392(?:\\?|$)" + }, + { + "hash": "7a537a0b10efb795a37d5b3e60ba8ce5fd4d1fccd2d89efaa7385d90914a06d3", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5e9b64db4cd63192fbb031bc552d5800018f099782d45d09f54089f6a69d6f03", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cCBSzNdEDlhydU53g[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "cf1f264ac9068fea476c5381f7c8c77e34633ea76d3e4c3bb2e2395b425dd3cc", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d998c03b6f597abc7205a16bbd3a365c5d3788c550a10c87df8825cf4b86e326", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dtdkYEc5k0hJVDkq0[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "d5a6b47ddb76f896c2f651cabb2fbabc9e2290981f7c9c398efecbab8602d101", + "regex": "(?i)^https?\\:\\/\\/dfhfgujfgjfjfgjfggfjfgjjfgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "abb1c6e8d5f8a48b4f6243c759c3227e67a050a2b7d70c2d7a9419cb825cf161", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "766598859ec2cc29ff870dbbc2ff0845ce1c1bab6cc87994517112f297eee19e", + "regex": "(?i)^https?\\:\\/\\/og821746y8127346287143\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "478606dc34e7e27afffa57e55691348129aa3c0afaa4cc7f5428cc2c5fa6f9aa", + "regex": "(?i)^https?\\:\\/\\/dfhfgujfgjfjfgjfggfjfgjjfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cBNeclS8yLtbOysjw[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "af39a90b74dc38d26052ef73743754dc34ebd5112d57e224d8cdc0610ccf7221", + "regex": "(?i)^https?\\:\\/\\/buiooisduiofuieuowefuuoisdvuopo\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "172e486be58d569ca90430db8fba497cee805d1ab9428f5d3ab5190429c395dc", + "regex": "(?i)^https?\\:\\/\\/buiooisduiofuieuowefuuoisdvuopo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8tzcxt(?:\\?|$)" + }, + { + "hash": "8ea58952713c2605c6699776521dea16c44f109d21e4175e8d5277a399db268f", + "regex": "(?i)^https?\\:\\/\\/gtdfgdfjknhjidfghuifghfgjjghjk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass4\\.info[\\/\\\\]+1[\\/\\\\]+01010191e2f29df0\\-c90d8f77\\-057d\\-47b4\\-9c95\\-66ab03590859\\-000000[\\/\\\\]+NdBcBr\\-YqvYETni7cncDpruLonc\\=392(?:\\?|$)" + }, + { + "hash": "0bc62bfe06192a56b75d49f788da90ecdf6a81106e73a9da3edd89778662a596", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "041eb5748190ab2e332b6ebc0fca0b0f2be2a90a359e211651f475bc4fd32dd8", + "regex": "(?i)^https?\\:\\/\\/bvcb54v\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "96d22fdccff74a410552568c6a27868f89bda8eb351ed3096b50803e23fa55bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ph(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d16da8c4d948ad18a6a90399d521811f1f06f342018fb03350ae9aecf55c22dd", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bf2a5ed34d3a76dbacd03e39dbb5459c7f69a22c984638f33d20ae45e98c9f5c", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fYg0kxckyKobc0AO0[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0iqkFMenR2THdWF1Nw[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "d6a7fe0f6da134666cbdf2b895a4cf6649c5341e7dc562c761d985e13451bf98", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d7b7baef393766f047cd8bb875a730e1bd986a0dda8216ac5cecd749966c1357", + "regex": "(?i)^https?\\:\\/\\/bvcb54v\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0d4c5afe7c154a4d5955fe7d87ab26d3c4f4b0ac127b92dfd560e8d33aa17bb4", + "regex": "(?i)^https?\\:\\/\\/boladunia9\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "12120c2841e3951ffe4cd067d0085c4ccf9813cb65c0cc7c2431f7cb3c7c6649", + "regex": "(?i)^https?\\:\\/\\/buiooisduiofuieuowefuuoisdvuopo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27deea8a35dfdcdb3db4231e54c41a706ffcfa5d882ded35e547b07090b3bfc1", + "regex": "(?i)^https?\\:\\/\\/buiooisduiofuieuowefuuoisdvuopo\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df754873def0d41e4490cd3c202cc068432fb2426bba326eed369cf337f2ae6b", + "regex": "(?i)^https?\\:\\/\\/og821746y8127346287143\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c6fa5f3cca5fbd7947411ca6225491b3d23c0e6ec29e7fccbb16b69c77ed668f", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag4Ffqplzk4XLEXuOZE[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aZ9slGQVkOyqsK57o[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "a05f47119b9a7603057b5544c41571285ac5cf96e62de4d6aae1625642fb04fe", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6c27645221c05318f1b5bf13c4b7ab7b9d6fa0fbb7b25ff8bce35886f74bb95f", + "regex": "(?i)^https?\\:\\/\\/www\\.pingbo365\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4da87444263f545121fbce71b110fe8e1d1848f3cc46a4d7300db29ac2c13eba", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0nrsOGRJ97gMklDwng[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsEag5vWDXFtxp6zMPuq4W[\\/\\\\]+ebmKRBpOrhvr(?:\\?|$)" + }, + { + "hash": "af2f92c11fc63fb5f6d700626ebd6ae32fed6ddf7de1256768c950b884b46c24", + "regex": "(?i)^https?\\:\\/\\/buiooisduiofuieuowefuuoisdvuopo\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0218f2c3a552fbdf8aa22751c579a57c16277b8c83941cdc575361fffc6ca7fb", + "regex": "." + }, + { + "hash": "3abd56cc32fcca508ca5f9ef1553e580a65e793922f26bc754a377c9cff732f3", + "regex": "(?i)^https?\\:\\/\\/vieonfjnvdjknjkfdvjkfdvgd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ea1512fe421ec23cbf2e950a65e19e6829220ebda98179d21879a6dc19ab8239", + "regex": "(?i)^https?\\:\\/\\/pub\\-23a28b2f90fb4e568870def371ba2dd9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e2a125709583ad26e943204b7905ffe5b84fe2b6085e74cb75ee4d637c148826", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0irY9lzDLNV0AGJpaC[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "441879c8f7a9fe5befbedae33c06b5e3f0fa6eefafa91cd528be4f78ed865a44", + "regex": "(?i)^https?\\:\\/\\/hackerhatroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72b5c576b6ec6ac909c3a800ba6ca407986ec3c5e5df7f1f0b67c01ab341e562", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8d9ae2aeddfe9664a77e16a8a3d6834105a002dc6de0bc337b54bdfab129b699", + "regex": "(?i)^https?\\:\\/\\/robux\\-bobx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "803c19811292883ceda188d77f4bcfaeec585cf8644d94ea66cfc16c442894b0", + "regex": "(?i)^https?\\:\\/\\/boladunia9\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e66c932a0c7ddbc2f81cf45cbb6740aa66e815374598d6f9514a818bc29460a0", + "regex": "(?i)^https?\\:\\/\\/dfhfgujfgjfjfgjfggfjfgjjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fXsIR3gUoWuNt4Zwm[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "4e7a79a927fefa28a4cd89cbacbcefc03e3fa034e62a5748f6c64a2e98269e0c", + "regex": "(?i)^https?\\:\\/\\/og821746y8127346287143\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30mRhHzChxA5JLzqjBA[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30mS6FBruuKbAcMt8HI[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0nqfWeRgHc8mxe6jVI[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "581c1a1f33abc795dac7e8f2874bbefdc3ca96e60c6d9a6566b71a56e1f37991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fvlass6\\.info[\\/\\\\]+2[\\/\\\\]+01010191e2d7b3b0\\-a4f92e78\\-6868\\-4e20\\-85a7\\-eca4a070f532\\-000000[\\/\\\\]+fAg2lHJtKQX2zpAI7KWaUH1wh18\\=392(?:\\?|$)" + }, + { + "hash": "b974a0f0db206c535daa7dac0529c55c138ca3ab7ace517d46736b06678cc599", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7a18f51905c08ad8723204ac11db21742864d4115eeb88c8f54977ce42f79e7a", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "acac448e3574b1bd7f195323a557a899c628400c11a8fb9b730217eaac851379", + "regex": "." + }, + { + "hash": "3abd786b331d253aa85ced79bb8b949727e3097bbbeb5d26106ee5617478ab24", + "regex": "(?i)^https?\\:\\/\\/347894153456\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e64f8f8c36083cae2d3e64ae2f5affd630a77338e50e4475146824169d55927d", + "regex": "(?i)^https?\\:\\/\\/dfhfgujfgjfjfgjfggfjfgjjfgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0m9DRB1B4H7bvnWHU0[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "aad8b0ffe4b47ffb45d5a6391d90a1273e904f29286c8c3d7c07198ca23b758a", + "regex": "(?i)^https?\\:\\/\\/dfhfgujfgjfjfgjfggfjfgjjfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "625d0fe477e0bd688fe48a7eb16ada59cb5fb1b5b050adaf0c1858fd4af5d428", + "regex": "(?i)^https?\\:\\/\\/gtdfgdfjknhjidfghuifghfgjjghjk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "13d204b050735001697aa85631603446c5df8dbacf9935418dcceb93b93a9c0f", + "regex": "." + }, + { + "hash": "7a28717e7ac0beb8e0874f4da251035d9e72e6fd099501643af41a102665bacd", + "regex": "(?i)^https?\\:\\/\\/buiooisduiofuieuowefuuoisdvuopo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fWGNZgbr2rZAtLLfk[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "2aee3bd5fbdef0dea525cba1dccc8db2e48bc321e34c5b270cd052317b148306", + "regex": "." + }, + { + "hash": "4801dd2ce3652e0e3413030b8b30ae2f17968076bad2f5436ebaa6754f0902d2", + "regex": "(?i)^https?\\:\\/\\/robux\\-oboi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a66ef985edcd6160dd91471f8bb8644f0dfb30c558be9b47b71d397e5364c8a8", + "regex": "." + }, + { + "hash": "fb9f484f68322c3ce26c76a9951f4d51e816ca56923d73462cae0a7c12f1d34c", + "regex": "(?i)^https?\\:\\/\\/nooadgaj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7bbef5ced5f50d6bc6c34773b1b6eafc1661a714f52e6a488f26daa6c2569bde", + "regex": "(?i)^https?\\:\\/\\/njfhbshfbsdhfffff\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1a7a7b85527456e2f3e3223d15f953c431701f3d9d17872b881f9fc73e17c1c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+co(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f7c27bb46bcb5251e6cf0e909fb01e8d026abcf84bbf0e30c45c0716d58cc13", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5bd2edf4d31e3270673536e1a951feff25883f2d272cbad26d89ebeb095b84b2", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5f999739ceb6b500661b92a7aede9dc5388f7ce31945db920f998e73d70d65a4", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "42e88c3ce039a7288a618387fb91eff9ef7c29bec89f4f52e545082d6b3e7a18", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bc30d0b35e8bed7e0acabd5c5d286d9e1e25ff74169d058ea07348498957c2ae", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9100e9de38ed2e95fcbc3be97c7a62c3966fc5f1e22c401af02e5da350e23471", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f20fa7a42dca03fb69be3feb368c94c0b996728734f9a5f8a7afec2c3694e015", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6cf0a7969cab13ae631f93433f0c963f8924dd4d4f1ccafdc1cfd4e722c8e754", + "regex": "(?i)^https?\\:\\/\\/na\\-robuxs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dd51319de90cc2c3c4a6700365002346cff361a554ee762e5af0925ba4dc208d", + "regex": "(?i)^https?\\:\\/\\/nooadgaj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9a35d4422dee01b61b2c45a12d819f11d7c506fce2229bf8e4871c0196020866", + "regex": "(?i)^https?\\:\\/\\/robux\\-kik\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "81ad126ec012d3a9fb889707e0a2187fd5d8dcc3a91a27744883d5f6151ca4c3", + "regex": "(?i)^https?\\:\\/\\/na\\-robuxs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ec810f857c2ad2d0e5cabae5ba499eecd5e1ff9a69fe61a933f51488a97bf252", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "691495cee7f628e52d81eab3884d8d4ef0fa0a87b47d536dec40ced2c1f28479", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "aa674cd7fc9f6b72c4b1e0ddd1653f55a0681607532412effaab25dbd7f8410b", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d230026b90d8c16c751f3d7574d82559d452b6331b4a99849ca556b96b0ec49f", + "regex": "(?i)^https?\\:\\/\\/robuxgog\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ccb5219a485be46999a1712b26c0f7845ef0ee4528c876ac8dda8366530bbfa6", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9cfa24a4e9b80cc59105a4779ce78f7f578e750f2e6c74d1701d2a9f469b656b", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "187e9385954c6cf23f29d38f6128817e7805dea0e0dfde07308f62dffe64e64f", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d07546522af46b52e0e190f7f2ce9e3b86a2503f6859db39c00d14d6546810ce", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b57c322a53711da1793d8e3959fc1548f3b5be6f3564decccd4b211f103cc4ed", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "abd3d74df3d23fef81b00adfd9ce9bfefbbb90271cc509e5791bb65bd83aea74", + "regex": "(?i)^https?\\:\\/\\/robux0fjjf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "37ead975ce77923441fcd27a0f0b1bf4f650bd782502fee8213079dec93d4fa7", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3176138042216d8e483b9074cde9808adf84c79a4617b27e8a2728ed94d7ef63", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6eb8ca0e2f2a0edf57c213762685df99c804a497c6b7ece20a1fe53975d0f351", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e360414c40eb9b4bf96cd129652c58df5b0e346ebb10937d85c4c80e371b3124", + "regex": "(?i)^https?\\:\\/\\/nooadgaj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1c6707d848ef76c237c3e0983d1ea8cccaa43bd2b74e01c99ed9a7cf94750684", + "regex": "(?i)^https?\\:\\/\\/robux\\-okik\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1b324f7ba4ce3ce4bc10f1d58378bff6d44fc0b276065ee78e3e8e3f765eaa8e", + "regex": "(?i)^https?\\:\\/\\/na\\-robuxs\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5965f91fb18bdc4f3355b5547026ee79002d00ece17ef4bcebd2497b157a107c", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "845f749d045883235db82e30229983f36777e57e14a9f9bff5c4c71329a6f46f", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7e3329a62f1484003e477305623c4684072dd80a9d5f0285c537fcd6cac5ff70", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "84762ee00a277eb5532672d78bfe569be4c3d1ac5077ec6b3577770853a0bb10", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4d177350bdc71106cef0dc378502280b8ca8e5a1b1cd30387f6b4e833a2ec5f6", + "regex": "(?i)^https?\\:\\/\\/rbobox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "800c1258b26e6b0ca5a8cd094aca09c01f82ae8a585419c1485c1068fb3b69c0", + "regex": "(?i)^https?\\:\\/\\/robux0fjjf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c97f1c0e56bbfd22d5dcce96339f14bde96815ed81d09e71e73924b05f81c1cc", + "regex": "(?i)^https?\\:\\/\\/robux\\-kik\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "71ab3479ea32f9cb9deac25d90e16b5e315200ebf14d4773ccc4f7b6e6a2ae1f", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "627f7e93869b16eb7b3d44638652f552e2cf135db806ad6a94e618d69523bc62", + "regex": "(?i)^https?\\:\\/\\/girltahilandidol\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4eb37f0043af7023e7157f9c1b238b94cc2f9d355de770831f2ab177a48648df", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d02ef54c906f5094f9e49367084dc6b45c4f008a57edc198308cdee978ab9fbf", + "regex": "(?i)^https?\\:\\/\\/girlthailandws3\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4c02bf5b92c64be376dd645181170b0418ff38ede59629ab7d61d3f05524559d", + "regex": "(?i)^https?\\:\\/\\/nooadgaj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fbe429e900ca1a39210519f6f0041e0ddda7fce148a9c34632e65bf87fd508e9", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ad63f8d9a0fc45dc4c47b318eda4cab047e3488755bab33c4900dd41dcee411f", + "regex": "(?i)^https?\\:\\/\\/robuxikike\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b313e8395340fe57335279ea06e606ea77241b82b2be0c9ef7df9bb1548f4f80", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e2e667d569b351bbaa23f7501d97689298c239cf1fc9cb36b302c0effee7b310", + "regex": "(?i)^https?\\:\\/\\/robloxfreefulldownload\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bbdb7f0702a26f18ad213b437ec7edd2a92100a54d37174c7fe46f3f13edc6cc", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "627f998d978c1a81daff88fb8fd90def18897dee5f360f67ff2e021991ff71a8", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "aec284130d78258288ce0019f4839832fc67988475bc7967b822a7eee8d2e6a2", + "regex": "(?i)^https?\\:\\/\\/robux0fjjf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9c050d14f3acd64095d8d70bdc9d5739ecf208dc80674e8ccb11e6999fd2992d", + "regex": "(?i)^https?\\:\\/\\/robux\\-60ktp\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "53229668344c83fec75d7521180daa36f61680cb5fa2b8026870a37b5e360a91", + "regex": "(?i)^https?\\:\\/\\/girltahilandidol\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "61846c2eafdff54aea29db7730624773ed99e23beb3169a90295443abb16e321", + "regex": "(?i)^https?\\:\\/\\/njfhbshfbsdhfffff\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "80c1ce4f79fc2cc85db9272e94a106490ed46b1a61fb6329c9d503b0afc84f4f", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bb46032f9381dbfc2d2af8f537ef72b42061dcf99808aa74fdbfe9e06fa20a40", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2035e4f8231ef5248cbddf52e53b5799286a6452eb494af95a64ca530120a82e", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6a5fdff1c1731c0fa358e30a4a7f99bf8dae7919f8a5755a6addfa2f5ab38e4a", + "regex": "(?i)^https?\\:\\/\\/robux\\-obu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "72069d04568123a1359d0f9de30cc2a1e7cd43dda435c5c08008c7b0631552f4", + "regex": "(?i)^https?\\:\\/\\/hubfoortn\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8cece229d7bf861c4694e67872279b017dddcf941c110f8e858a64f1178d392", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4fd75ad8e28a069dc02b63723c4eb4151f150f21c543dbef99aa48e239efff7f", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e01eae7eced7a5fcbe9b261801d08322477b553484d7d03a95644bf8b4c12a9c", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "01c821936b0b77f5a6bfef4600bff5538cf80922cab9cf1e13b0d7a4627ccd73", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "50092df126716487be9a6845aca119cd039800fe3dd58abb041983c372fb5817", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9157480c13037a1a81d4d2b6b7c888b0b39108d2f72e0870ca10d40892310728", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "04801563f9bc2c71c328c5110a69cfd071519cbc5df75a9b44dc3ed4574c9f0b", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f4c607687d75de554f11d7e80b5bc1dbaed62462996db38a61a362dac9ce1a8e", + "regex": "(?i)^https?\\:\\/\\/robuxgog\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6aa20599546c91af8899bf88dc815e6d15b547af2ef468492d36f74e7e003228", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "acdb2391bc371fe91028098c55bd64f643f101653fde7d7ae1c038eeb346b705", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "86c244691ee058a279b06f1f7e43109770e27d65e4f3fab4cd17d94974d33b23", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "17cf8a0908d6e0f027e56871f85208f88e23710e979c7541d46812107610a50c", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9b57f886d994bbc5b7b25b3a642f41c1901474a0657d45b0832f5b15c5bfe442", + "regex": "." + }, + { + "hash": "febfbca0e1f89cce1f015ab9dbfc5ca74fdfcb4adefab201c82dddb6ba3e3f83", + "regex": "(?i)^https?\\:\\/\\/njfhbshfbsdhfffff\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "85fc83a98cc1a1098ce15e537fcfa67746f676e9d18854888017520d85f27849", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "45e95b894abc93de7b50bb3796c50a7defc0e14818b1bfdd750016b271ba43a1", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8dc3455693f1041027d9b4c5c1b41a403166924ea071a8cea7668dfef1ce7fbd", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7d2b1405131e4cbe8078c2f400c492576e89d1b97e1e26ff3fa1e441309f5bf9", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "de28f89b70d6245529ebddf752bcaaa85dc64309c21b84008244c264b414ce57", + "regex": "." + }, + { + "hash": "6a37487a0e421b9ac3220e3486c6cd07e81108b4c85212bb860f1ce9c02868a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9972[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "21164c3069b370dcd5233796c53fbd7cd5ac4fbb3b37bdb312ce80c6f06924b0", + "regex": "(?i)^https?\\:\\/\\/robuxgog\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "651f16231449a64db59085678e1b15a30cb32c51b29ea0ae77032329214d39ac", + "regex": "." + }, + { + "hash": "2c5a36af4bd46b9e0b914cf5c482061e0592e7cdc7346c56309d0c8abf668f21", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "19a130c013c05186cd14548f68bc127601a1c7e7bf0c055e8487b730609379c3", + "regex": "(?i)^https?\\:\\/\\/robux0fjjf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "10a18a8373701badf87e4aa435dfbe50767a316d4e593781935f58cfeda1d75b", + "regex": "(?i)^https?\\:\\/\\/robuxikike\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "07d26f7d491cf04a8509e9c6f67ab0cb878fc23c11ccb2840703cefc2f25a127", + "regex": "(?i)^https?\\:\\/\\/robpxo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "06c22c1df1a1d834b56ef7a06b5982b23b8d4e3a8a52f3004e69a9e1de1bb923", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsF30o7wbtLp85AokEtZma[\\/\\\\]+D8aU0OtK9xVb(?:\\?|$)" + }, + { + "hash": "4991d9425e1b618bb8b10f7cc765f99706deee191cc64b6a14dc09e2edacaa2d", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fd78a8fde782fffb1bf3066929f7e0e37be28ebd1cdec0efd689bc3fb06610fe", + "regex": "(?i)^https?\\:\\/\\/robux\\-kik\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6437f1fde92bb0d1fb2c5eb93521eb3fc3c1efbd06b4f0526313cf7ef640adc7", + "regex": "(?i)^https?\\:\\/\\/hubfoortn\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f10eb6d7513a15982a8cfadfb4ee48ac40dec39b7a07f75dee5caf505533562b", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "80789fc5319d4d4501be4249359b77ee6c1e482853f197b08c1a88411b65bea5", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fcbcd97f1dbf5f70b978a31e55ec4903b837744af9801d0117ec35263e7d86f2", + "regex": "." + }, + { + "hash": "84e20bf12b82c85f08dd1897fdde476c60d954739cb06649daed2302ccd09c01", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b7707947abddd71c3bc889243ebd9084418207f7b5412934c7969968b0613d87", + "regex": "(?i)^https?\\:\\/\\/girltahilandidol\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ca589406597df58823ed2b8aeb497bd1c5d42a9cf58eddcda9a2ba32d3b62ae9", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9999a7a91a6fd491c7018865c02552ad3501620bb96f8a627954fed0edfe5113", + "regex": "(?i)^https?\\:\\/\\/robux0fjjf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9a73f8c17e99df32b20928d75c3f4446baa5a563ab9277a238c47f73532c6a0e", + "regex": "(?i)^https?\\:\\/\\/hubfoortn\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6fca0c30444c1caf980d8c6030b76ae57aeb116a5ef8676484c7bb7647a2aecb", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b450fce1f62ec064acffc7c247f66ca3d25df6afc336178677a7d817bff51645", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "97de7bd046d3d0bc6d86c0d00af36837b07a9c6d03e459a2811c0e5c9a1a795d", + "regex": "(?i)^https?\\:\\/\\/robux\\-kik\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c859097debf49c391e6ac96ca025e5b196919e5db544ae2dcb0b61659757d018", + "regex": "(?i)^https?\\:\\/\\/njfhbshfbsdhfffff\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3b868d7409896a72fae4abd1946abf217a421a57922ffd9ad4b15988bee8e066", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a6ebf5ee1d5a18b8f61c9e6233c545f523e5adbac81c72a99841d7007787a3c7", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a8a2712f6a8478b12a59632decaf6c2580614239924c2be1d068a9ebcb9d493b", + "regex": "(?i)^https?\\:\\/\\/robux\\-60ktp\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "29b1376e1ac0bfb96e6da23e48c4d5e1498c30aa68734e1b3ebd69b8e7aaeed5", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e121faafc3ce90d2da607280d692eeb61d57e5c448e00d88f472887263ff86df", + "regex": "." + }, + { + "hash": "06fb528f3601218a91f0fdfb1c3881b6edc23271bd1ae8c72072aac139e6af6b", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ed92054c565898bff74966104d10b82fa58489755b450a317dd7a03ca7f09491", + "regex": "(?i)^https?\\:\\/\\/hubfoortn\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e51f00baf1464402df50875b77bc06a362e770503f59b5579f533ea40604baf", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6d2415446882e244d300508d2d416e98b0c775035959c97ff7f8ba8e42e2b51a", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "900e67726268f90d556b76a4067d49d0805866951d4a15cfd75eaedf4d3c2eff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usunit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df6219af19d6832e2052fe9048d5fd0dea7783f242f40f9fbf6c8637590cff4a", + "regex": "(?i)^https?\\:\\/\\/robuxgog\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "64e5f8e90b73deb676ea7ce0d3b82a745cd4e2b9b6612a440a3d4a072469a3d9", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7de903e6ce172bf0e176c404ed4366a1d046f68501d32a252301bde2b3a10e64", + "regex": "(?i)^https?\\:\\/\\/girlthailandws3\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "21c94b8724664f99ee0318e23b4e6b5faa51e4722c0316e656365bc0a95bd6dc", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "df88cb9ce57158957a39e0159078e31f0dc7c8516536515bd10b0d6f0f0ae0cf", + "regex": "(?i)^https?\\:\\/\\/robux\\-okik\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e1a1271719be1b6683b61bbeccd946fec5cf16907bad779de7c1d42772fe181f", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5922eb0aa2dd5e6a094e60ab5ea6fe1a895f750cc8bfc863056097f1d8014c1f", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "73c006496ffba4675bfafb1f8d17ee6b5e0ef8daa21975e64eac206f8968058b", + "regex": "(?i)^https?\\:\\/\\/na\\-robuxs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1a49b0d451e208dbe1bf3ab8463922ce592273f2df75415cf88ac1ade4d47e9e", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a281a839842529b2e20bcc4e4c5ed4cb6d1b42eae70f2c042a738258d9d844cf", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "dfbe99d374c3d8177b25be846a9e9dbf2a7bbd975f814329be0921df9b75ba78", + "regex": "(?i)^https?\\:\\/\\/robpxo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bde72c6a8e3321e54487d1beb7abe3e639fb21d7f6fc16c235438777bfbc91a7", + "regex": "(?i)^https?\\:\\/\\/na\\-robuxs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7eb21865d4f48be21242f46d31aa16bdfb1d809b8700b8b5b657fb2eb8420723", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "18c0fb67539cc83a2328bcf9669880f02cef2421906ee7eb5f2288c59cea4658", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ee4006040a145f96fac02f28d217fa5fcb494113ccf244055cb9707161b766e2", + "regex": "(?i)^https?\\:\\/\\/robux\\-60ktp\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4c99c0f7383c67c0a8a20401fc77a9bd8b48e8a2485df7d0ad1c885f3a01fd3b", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6920d2694364ebfb48817d87b0fef140734053b02ee9bf23c346df546fe88a68", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1a8a057b539ceee62c88092a517232eebfcb6cc3791ba4ae496cfd9c06d46bd6", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "43e47bb968e4826403cfc96c401734d3e1b9272bf6acb994ac300dceeabcb11d", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5b58c2eb3e613c3b1dc01aaef859bbbda5f1ca19e5e163b42c290c76d64e694f", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cd73256a2c9156b9018ba029bb3cd59c614dfc1b198e58c8223aad9811f7b3b6", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8593f00588eac68ce9b68c8e1a9a021282560837385189c155b48d7e30089276", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8715ff34d6237b84db286b0ccf7096d0ad92ac32f15be55760852096e68d3497", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "48e51f22c708305d01d6f4e24ea135b44970315b095fe2bc32cc4687a8be12f6", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ad04ba057c8b508a723771ff90cc7ce83d44c929cd44463ae3e1a6ad191f9840", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "042d60540f10b4685f49e7777275a20c23ba91590987bf1e9cd934ec0515f924", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "508efca6234433a037fb9071857a3a9c2fa7942028480f9ae5fd74372decea96", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f9843afe0498c688730d0ba4c5560150200739ebf8ec0c89d0ca7ef54eec9e28", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "017d45b2fd237ec1d67557119e4722e6006a8714676ff6c56c8ecf5083426475", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5b86826b58b98fe0d53fdb471a143c539f9ce2dd672ea912c75ce0962bd8cbb8", + "regex": "(?i)^https?\\:\\/\\/rbobox\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c2c82e1f32e67e51a3419d0e4ebc71fb25032a08ded921eeae67d740c471797f", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "80c11b36cad65ee97a1c0443f8c527e93a8784249c674dbbfc47d5f6fd8ce39e", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fa8cdcc70db3d42e8c857bde0b0ec5281dad647b4b5e8e4472c9bae05042f07b", + "regex": "." + }, + { + "hash": "ae82bf2c47fbbaa180d3da12a21bc4621c46ed270b806acc57a2d606db2d466a", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "22b86deaa83834f8d2216f0c85c78fee8439818fc00246fdb1be9bc0c57ffcc8", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "466a938e03430a6ef2e4806619bd7f304ffb6386fd46e35f56d68e08b2cae94e", + "regex": "(?i)^https?\\:\\/\\/na\\-robuxs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0b8da62897bd6e65e6e5adc48f0779d4293e27ff7d63512743fbaec440c08131", + "regex": "(?i)^https?\\:\\/\\/robux\\-obu\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f89b7eb4996abb0098ae7bbaabf42605ab320990970c959540ecf77dff78ceb3", + "regex": "(?i)^https?\\:\\/\\/njfhbshfbsdhfffff\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "47719cec58f5e0a172c353877ee07a30e5aeb8d63d1d78fa409e1212ba9f07e6", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ee688aff59b3e3f66be1d3e689b7f0db0aca87663d2b3f782164ea46f9ef673c", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8f64ad44e9365cc4f44e9e145e3779086affe176b2b6a6f56f3bae02ad839287", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "82c530e5768460a3e8db9143216d9be3979f0ce395671cf5e05152152cf0f4b0", + "regex": "(?i)^https?\\:\\/\\/rbobox\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3c96899e0b84759294993874a471de1ab0ee90a7e20e0904113ede896c19e2a3", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1edb0eb84527df8195be048dfce317b13f3f81f28d0813b5cce725e4b4d7d7ea", + "regex": "(?i)^https?\\:\\/\\/robpxo\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6d241cc35669dd2f83fe4c503288af7a230259aa52d325e3588fca1d6fbea06e", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "97613c24ddf4c697e7ecef989041b8a6957c9e3e22b8459fc1ca5e0bf2083fb1", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "78b0c281086bbdba16bcaabbaed918c96034d4c112537270921dfcfa96c780e9", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "17b612bd431ea3cb54ca84189e571e5d326ba51cabf2d63f6a524d07174c15e7", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "98a465fb8f0c8bc3ee85560bfc92d2800001f7719a9aa462a4ef6c82fe3a20ff", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4ca2d1dd1c4523bfb29f64f5da401d0824cc83eb9ebf8107da3e5e63bb63b81c", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8848ee4b316fd74d8e41d11b7d49d0290bc6a671b21f4fefeb5ec8dcb7bc6ccd", + "regex": "(?i)^https?\\:\\/\\/nooadgaj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "84768b9c1268d8386cb2eed44797524df175166f6ab5b47b8ffdf4c4a11c5b5b", + "regex": "(?i)^https?\\:\\/\\/nooadgaj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "77f211a90115d2e7c448d69243468f2b2e7479f9affc87a4c25fa6bea76c8bcf", + "regex": "(?i)^https?\\:\\/\\/robux\\-okik\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "325c2b428aa9c5dcd6ac78e4b75a85ac71ad83865bbcdf41d135ba2a87b92252", + "regex": "(?i)^https?\\:\\/\\/robpxo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "debd2774e5e8bb8c005bd995a5646316862c3a6c6eff1db60328ef1b3e78ce6a", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a68ffd39fb2be8331330c7db2b035725d777b9c3680253c3b19852a4b9325064", + "regex": "(?i)^https?\\:\\/\\/robux0fjjf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d29681cad88e6f4eb966068378ab576e6371271435a6c4ec08c72be10a863178", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f6205186434171f95b0e3f1420b29d2541cc855c905d2517d703032a447e5442", + "regex": "(?i)^https?\\:\\/\\/girlthailandws3\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "097c409155b8b3b45d2c08b8971bf01e62c36aea55d72a895a867b1564d53f56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b4cc429c14921aa75f6f24a8a00f6c1c6c1f0db4fb8da2c8afeb9ebdded847d", + "regex": "(?i)^https?\\:\\/\\/hubfoortn\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5fec5d9ae91eeb3386fdb24940a3422a574c093b439df8da037f64a07ef7a83", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8bc24accf6acbe3d8a7e48c3d5cfd8d75c082da5204dada4cb492561177da243", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b7540b4f8b23e03cc741b667545df9dbe48ea843ca6423758d6b85ff6382f54b", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2c8b330da374cbdac1893e3766290a5491333e2dc37563635bbc9089c4732815", + "regex": "(?i)^https?\\:\\/\\/robuxikike\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6a37487a0e421b9ac3220e3486c6cd07e81108b4c85212bb860f1ce9c02868a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9972[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "85f70919a9992bd5e2b0d1fd551a79cba6c12a44243b2182afaf2965b899b3cb", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ca8b85fecc9c98a3db3e49e753fafda794a98add8c06a4bd98b645af801004ae", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "03d97c46fe48b6be4cee7ded0c1fdeba670bf4a0042c92665ff093e8c9bb1b7b", + "regex": "(?i)^https?\\:\\/\\/hackadminbokunoroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52dc3d1ae774780905a0670f02038b1ee2a5b846c3d08c2489d520764e79e3db", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "567782fab488083de21385e863793a10b3feb65bc085cd96adf78a23ccded69a", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "21b8f250e7b92b8e1c62e0cc403321b276d223d6e49f4884b46b19da10773a56", + "regex": "(?i)^https?\\:\\/\\/njfhbshfbsdhfffff\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1ea66625f12eb7bd4743216e5ed7ed860d2335d7a98273bb9d305b52dbad4e2d", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "89d9dc0126c141100717e7dc2ba796116a7541e7a449540b6b5b6e91e0b12d9a", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "454f1447535cc80bf7fee163fdf8705c9abd6cf755559c2c0ba479f478601a76", + "regex": "(?i)^https?\\:\\/\\/robuxikike\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2b1b65928dab22c21c0fd655495eedd572915816f4851df997f91fc6c7cbefff", + "regex": "." + }, + { + "hash": "db18021761bbceb8adfedf39c462a9a60610f99a1eb47e46b80c402d13a98976", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "113b77957c3bf73cac39feeba5faa8ebcde3e789152ce885da4dcc229266cc0a", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5e7e79c0867cbd3a07e66e316c779969ccc706dc9f61590fde9c745138740805", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "82c48027d51d425304e343b2be30794b8885e0c8b9a2ced099804c94682be7e1", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "09963773cf9926597fb1be97996e5f018b1482b2480072a3f9a4cbafc0fd1991", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "414585e1fc2d858bba15c66848f57c44cd580dabece43379d519f8ddb5d999e0", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8aea781b94895a4809ddab470d577215df1eb49571b22ef24c6c570463d7cc04", + "regex": "(?i)^https?\\:\\/\\/girlthailandws3\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "628361c3d250a81fc4c94e909597b64dac36df0b7a8cdff4b43e85afc7c64a14", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "19e4727509e5b0ba3ddfed220f121b8b3929d98e780dbb9a2bbad9f7a13f3460", + "regex": "(?i)^https?\\:\\/\\/rbobox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e1b99c50069d80a67426dc6b71a57fc2c9764b99d2e3e2c7131451c28a8a0a1c", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "49cf236479aefd03bc2ca27481092544f169a95caa0e853ed151c5eb451c568e", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e493c41ddcb4b50699455c526c16c61721f9f601afbbb53228e6fcf4f843e1ae", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f8d44d9ee4f6727e66b460d2f4e7ce14e530905462d94193d3fcf4a75cc062aa", + "regex": "(?i)^https?\\:\\/\\/robux\\-okik\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5ad0709763b807263e7cdcd4a4de86c030fa4b05aa6af0ca1347ea0ffa472cfb", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b411e52f415b7e894adeacd8c9e7a3bd8ed391f3cfec359ef7dff1307c7e0bf9", + "regex": "(?i)^https?\\:\\/\\/robuxgog\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5734e1c6632430700718b91f57e184cca847575a1369a40bdd9c57662562a48d", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "76874dc4c1dc01d38a9e266b1e32c47ebee06fecab753f5418ba5bfe06f472d7", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "288a69b747c41f9806c3daf6132ea74ed2920d44f483c3391d79e4becc5fedf3", + "regex": "(?i)^https?\\:\\/\\/oprobuxc\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cd3dadb03c5283a5adddc6546aa80c4210f8864521d789b856fa8203c02915e3", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f2a118a06c4325c3fa04fb4239eab0a81bd47ed693fc8f0174aa7b4ac4def637", + "regex": "(?i)^https?\\:\\/\\/girltahilandidol\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fcc63464a5459e77460e5b43efad4817f0ab6c58b7d87ddab6c8ddc15c1bfd9a", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "54883533d343d3976661f3c8584c52f94e304c1d2ea79de196230bb1e2e1070c", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bf4d258d27ffbbcc77f06e3a73318a35e5c8f49a87611f993d2581fd9f13b89c", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e8ee7ff66ee6e29e70ab5081c62f64a9d3308dee911781adaa06209a61c6432f", + "regex": "(?i)^https?\\:\\/\\/robux\\-koik\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6b575a469daece98b508ea73cc505c23c5af2495a74918db3cf581506d99fcfd", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dcbf7a808465211fdc5086ba4d5d46662118f66f1d2c4602f6503b0da16ab0aa", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4fb4a43056ee6141ddaea6d34295393c74c687c1fec2be685e2f14b0e61033d5", + "regex": "." + }, + { + "hash": "1dd9f3a81652e7289256158c8676f17a52ba8ac643a14373417b9d48b9e4c9fd", + "regex": "(?i)^https?\\:\\/\\/robux\\-kik\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e51318c3b4063c85fd3c74b11f9880a649ea329d66f8c16ab15fdac9fdee62e6", + "regex": "(?i)^https?\\:\\/\\/robux\\-60ktp\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5dab2906da9fd8094deb9171dea14b195bffd1e1d6beb56213a2843efd3ddfe1", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f21c557e19d30b71584757613104bf08e64d6fca10471b306b725fe60e38519e", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "01bce2a3a81dca3ba8b7dee5cbbfcc44aed4ee3b45e9c2e31ce12b03579da098", + "regex": "(?i)^https?\\:\\/\\/girltahilandidol\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1d39a41b359ce90d59e7cc74c0029b9dd9273195b06ef544540b6b58226e0c75", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2de63dd99f1392e426ef20787b9d5622089702d56ea927c4b62e6cf5bac6a3b5", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "24bf46ed3b666c42ffc734ee29ce40963fb2a5ebb93a4d7b9ae98107b353faa0", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6cb5cbeeec00f8ccad0ba6c081c7878c30d065178601d852ce5651fbe7123e25", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "921e67728bcf7d893288b3262d035695b6e87ceed47210ff3d103b0a858adcf2", + "regex": "(?i)^https?\\:\\/\\/robux0fjjf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a6319a6c01ede5f2768dee15852bb54f046ee93d321834c854ca56e5f91f2e15", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f6290158e215f89a752e7bcf7ede88c3cfb4935b0730fdce6f5ba5c94467f744", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5821852239f54c99858fa13caed8c3561668ddc408db46b00e2b32ee48c8995b", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b9aede0de0ff6569c60aea3b327188b30e39f3eea59a16f77bbc1c112c6dbf2e", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "07889c926850ccb7e52a432df0ef17e9c42e245d595d48dd6228c62a9aac3d27", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4c121286280947fda6c0e25e9a72246fc563c0a1ec2105a9823bcbf12901ba33", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "16c53b683a9c9719d88613fd7e2ca65656382d1e98e85ca26abafdc18bcd3b65", + "regex": "(?i)^https?\\:\\/\\/girlthailandws3\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f9eced2ce280a5a400c21902c5ecb06a8e0550f896c773922e42d07fc2c05549", + "regex": "(?i)^https?\\:\\/\\/currently\\-101461\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "214735da21f76527ad1406e264fabf4ee6e40222ca26de3598e5e26d61d5c249", + "regex": "(?i)^https?\\:\\/\\/robuxgog\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cb68b4af61de8703bc16a232b255fe3834931b630bb6bdef3dfdcf3a001d23c3", + "regex": "(?i)^https?\\:\\/\\/robux\\-obu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8tzcxt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "db34e41d606b8c906f21f11d28dfd3e3bfde03a5a09905f30eecfbb0084d2cdb", + "regex": "(?i)^https?\\:\\/\\/robux\\-60ktp\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "656cecff673977605625d5a1aaf292e6a840d5e65c6b9dae62c9cdda785163c0", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cd5003f033895dabe4a987b5831b1cf6cddfaf1256d462c938c7291dec3bef79", + "regex": "(?i)^https?\\:\\/\\/robux\\-kik\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2956d02fbe06be2bdc438fd994747c72e92e603ea74dfce48191d9238c3aba85", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1b46a1aa79f998232f439261dbb2abad92bd6957c4b9d87667f47b39ccf071fe", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0541079149f3974cc1ed12b2fd928a6f62f0253f5918bf5e53768f154abe227b", + "regex": "(?i)^https?\\:\\/\\/njfhbshfbsdhfffff\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "11a604e56a63f85682021494b5fd08d47fbbe4962b26f23c39742e42db53d0de", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "97ca51a7ab5ab37e55903aea13e2e3079b3c76b84f92ac1fa6a71be554b7e966", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "71c61c3a1ca965c680415c69b99a4a6bc289f33d0939b59a921d742e44bef9e7", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f0431e326aba2e9d34896847f8368b2d650cea2d23297f26821e4e42e9f8ba05", + "regex": "(?i)^https?\\:\\/\\/hubfoortn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2eb2e7cf8e683a4bfb630405722e3919772da7b3d9b01fcb421377167671241e", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9d190397c508b923f013e9ae094c153d5534c2c086d3d04540e80d0a5b0933c9", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d54499822991a55a67eaa89bce0c5ec3330de119e33c06a476f25973a144ff16", + "regex": "(?i)^https?\\:\\/\\/pinbo92\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da18c08b9e49f7d0fc5e7b213e4754b9a66b8fbb53de6a7b487ae2ebeaa408b3", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "67cdcd901176b579c7021092d140b4e20f276b61aa4d8211959093a9be72b0b7", + "regex": "(?i)^https?\\:\\/\\/fsgfdgfdgfsfd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "56efb2a2b8b08ca0f36df277409a684af089437efad5e09f6965ddbe5b321855", + "regex": "(?i)^https?\\:\\/\\/oprobuxc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d2acf592f4338e3edfc4d4fe0f81d73032ba4f07e91b321bc9f8d1b086311708", + "regex": "(?i)^https?\\:\\/\\/nooadgaj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0265eb56ad3745a1f593cd3644087261194ebf02f7b350ae369989aae96aece2", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d10aff9055f387de90134a7ef0d00134ac7809a3ff73658d76cce99733379c71", + "regex": "(?i)^https?\\:\\/\\/robux\\-okik\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6d72fed298f9f0296207bb050db9f4960229ced9819f9116ea693c496d826909", + "regex": "(?i)^https?\\:\\/\\/robuxgog\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "07c8729168d6906f049463ea6011f87c9c44b25f20f33219d4cb538dc38005a5", + "regex": "(?i)^https?\\:\\/\\/rbobox\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b96c7bb0064ca87380d37dcd9f587541d285b2f6c66face0a9e3bab1329f9d9e", + "regex": "(?i)^https?\\:\\/\\/robux\\-kik\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2ea00cc33c9541457d8e47546338c9859d2585bb20b6ffd366ab7cb6e85bcdb0", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "56dd8c51951032cf6dc8b13544fefc226ead4ef08a6b6a7dabaf1a6cc1f63b69", + "regex": "(?i)^https?\\:\\/\\/vbucksj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "dc77f981047264cbdc7d6ebbc88a48541d78be43b16b6d47c68e3d36845414ff", + "regex": "(?i)^https?\\:\\/\\/robux0fjjf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ff823a50fc3a6c866dd64074f48b4f070853713e2b25c2fc8e8e5690cc4da209", + "regex": "(?i)^https?\\:\\/\\/robux\\-okik\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cda6006bcb8c9bb19a18ca8d00b783b716190aa0b36f53db6a5d2c98bd344e97", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "aed5372cc27ca7b2bcd0738f6abd001a29c71d2cd9bd2e2aec0288cae7790e7a", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b0d158fc15b968985208b15b1b94fc00baaa4cd92c26853e166272577b7ceda9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vegas138\\-15(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "153cbfc9eaf39d091d9a34d810aeecdb48c86312c38bb766fec4d04726f5dac4", + "regex": "(?i)^https?\\:\\/\\/robux\\-60k\\-toz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ffe20772b741dcf6768f628ae6f17b70b935c519bad65782b8bea7c5b2206b0b", + "regex": "(?i)^https?\\:\\/\\/rbobox\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "305f62a3d01a90fd74447465b2ba7af243653962cf793c9b579ede51e8b4c9cf", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f0baec479030db36f8a728ef3ab1e86f00f6ba0cf527c679a636924c70b0f6db", + "regex": "(?i)^https?\\:\\/\\/robpxo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "674a8cb4cfa3eec878dd789ae9d9072b40523bb289ce7087c27dc443a5a57d14", + "regex": "(?i)^https?\\:\\/\\/xxhbb55\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7c5390a2c6ebb023de094e9d59acbae57607d51e883b29a782fe5f172cd33ee6", + "regex": "(?i)^https?\\:\\/\\/girlthailand454\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2d12ed84047051a8cfc349f99af4c945775b67729f99dea6ceffeba4503a6fd1", + "regex": "(?i)^https?\\:\\/\\/rbobox\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c62e0c7ac6c515510f00a9f72c6c6ac0b250a3f79b3f208b19df85332a2cee41", + "regex": "(?i)^https?\\:\\/\\/rbobox\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "45d627b65358e7d2c62b51b365bac81c69b5a1117386f856f462c14388f815ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "bc4b06827a45d3ba391f395d9eb352c4589b47708b5e249a75e7c0a6649cdc24", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "88a37842267c7e7c4600f0af98b65303fa65141328f1d908ab017c0062813ecf", + "regex": "(?i)^https?\\:\\/\\/robux\\-kik\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e89ce9bf8c93610e2ce9111c7a3e6044335f17bb8b26f07a4080034e25541db2", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d2bdc633742218a2cae0a446df4a3db810cde9c23406da7d6fc2de7702701e3a", + "regex": "(?i)^https?\\:\\/\\/robpxo\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2256d8ff2a2e3b9742fee3952d1c1ed09c39fee144c4646fd20fcca822c6f939", + "regex": "(?i)^https?\\:\\/\\/robux\\-obu\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dd871619b24987c7afcd8bf1d4fe25fb79b79518a8665f16268c59f0f2a314c6", + "regex": "(?i)^https?\\:\\/\\/robux\\-kik\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "827fbe6f77b98c5506da48a539a3034417469bf98e116efe3b3384874e791c63", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "424d562349d6aa24aa6a3297c2d10c851f9ee4c57aa85192eeeb5513d637b137", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4d5db5abd8d46357ba12a48651e62e4e181e6782e2d8def1afd14f882f635500", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "88fcc9c8dce4e6c04cd712404a57ef31dfb979605e9720c7159622bf6bf30d0e", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "80ef0e76ba35c0c85ca5a1743f50b32f7d3d48c176cdd0b119bf001b103c8114", + "regex": "(?i)^https?\\:\\/\\/na\\-robuxs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d0756d79e4899d223b87cf54b5e4979b68855d4cb39e392331a07dd63a87adac", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5feef64903931184d3bc3ec92b13bae149fc9bf35d4f2eb376f5fb6eda0e3ea9", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a99af754c78d9135f8c3f5097275b58000652d19207632784837757df28c5457", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0902b95ed8a30290ae3beb50f07b51f2cd9e2de941a6b200e33cc4ae578033ee", + "regex": "(?i)^https?\\:\\/\\/ccutegirlmy\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2bdcd2de63000bbd609433009f68c87a70bbae7c455e1fd64618e18ba6300c89", + "regex": "(?i)^https?\\:\\/\\/oprobuxc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e3b2a7e61297e1f91aa79b9f7bc31c750c93ce4d87d2b2212b6d7292a7874162", + "regex": "(?i)^https?\\:\\/\\/hubfoortn\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe3cfae16def6ffedce2b0e6055f11d5f4b5b825ddbd8317a5a44f1ab4d85f56", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "00b35c9b5cf3d0583b89562343dc92554a342ddaa587d7370927183b83605f52", + "regex": "(?i)^https?\\:\\/\\/os\\-robuxo\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ff1c3e66526f2ebf6302acfca14d286f5e4df2bfa952a2feb76c8fc7c45953e0", + "regex": "(?i)^https?\\:\\/\\/oprobuxc\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d0c66f19224999f45771d1c8cc72733a4e62002330eda184fa4fd2b2b2baf874", + "regex": "(?i)^https?\\:\\/\\/okjrobux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5db13dcafa422c0c878d13f59f9b59eb1ddef7f0a048ea6b9f899220f4c74ad2", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "049cffdb3151c99bc11fa6ec1cf8b4f1c1306d873d62c38604cc323cc7c2fd7d", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7a2d42171b76115aed7711ba846bfa64a12f86c2f8157bb13810de13ae1c5069", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "83c05620fdd1bf949d4fe6bd159cb223eb18fa7c677cbe7bddbdc006e4545724", + "regex": "(?i)^https?\\:\\/\\/nooadgaj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "34a4472f355df1490bd5ff036db6d58079857927fe941e7cc449839a9bcacf02", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3b38d6826b4b12a6fcf8258c8e5313a1fabb0100c9c2dfb59e0372cf5c054342", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "318a42f69e00abcd6cf5fe88caaaf4526b1786936dd25d1f451bfedc7fd3b1ce", + "regex": "(?i)^https?\\:\\/\\/robuxikike\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c3bdc97f0cd94ec8d4baedd962411e443ed3e9366aa2508cf6e49d2bf41580b0", + "regex": "(?i)^https?\\:\\/\\/na\\-robuxs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "260e325e9e9e0613c6d915f460b52e5d3ea1bed6fef1a6d27e682a75fbe3ec92", + "regex": "." + }, + { + "hash": "7f6814d15ad1d4c381bdb748f854b89c8e4e419d0dc7588d4ff1ebd2d84a7d78", + "regex": "(?i)^https?\\:\\/\\/kifrobux\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e3c6d43f82bf9d52a728f213d0587501bbfd0ca63e086d900f9ccc3b767f80da", + "regex": "(?i)^https?\\:\\/\\/sdadsasadsadtfdbgvr\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d1b715cb7f6152aecd01b515177c1b8698f7f30989c23b06449abfc54195c19e", + "regex": "(?i)^https?\\:\\/\\/girltahilandidol\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c333239b5d3ed5209885f4621e05173f6c51a8af92fe95bea03b8c1d5b81807f", + "regex": "(?i)^https?\\:\\/\\/girlthailand4554\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c015ef54a5522082cf18836518e17d2a2c87228425544c91112d0cbe1127a66e", + "regex": "(?i)^https?\\:\\/\\/girlthailandws3\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c3241050fc4ad4cfa9294a9ace60abba7fb2fa8732144d3a1ca3d12650ed1add", + "regex": "(?i)^https?\\:\\/\\/lonmtoadarevtrunga\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "aa58b8897ecc4439481b521b36ed5334ab5f87a27208377136c85ca0c775d514", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9038ca7b358f7bae85acccbcc4879415b48198b1e5cc22342e66c3ead20c773f", + "regex": "(?i)^https?\\:\\/\\/robux\\-a60k\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "38662ec229819bdaba5c4f179665431ee3432bee7ccf28e0bb5a83ed9d0a5e31", + "regex": "(?i)^https?\\:\\/\\/girlthailandws3\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5ab2c4362cdcac860aff386ae4364aacace7f730f4417df3e372b63e1cdba196", + "regex": "(?i)^https?\\:\\/\\/robux\\-fox\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d59fd45087c5a7f2f0a4dd082b8454168a6c0370b3c8fce97f56aaa7c0ab04a2", + "regex": "(?i)^https?\\:\\/\\/nooadgaj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "baea1e769889ee1553e54fbba27bab70ad49b58bf24eff02e19eed4b1eab8b8b", + "regex": "(?i)^https?\\:\\/\\/girlthailande343\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3a47ee1c7b70f6ed2f63c816667d983d8a95d791f564bd23be369dc66feeb614", + "regex": "(?i)^https?\\:\\/\\/robux\\-izi\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b2f1567c89568c94f67cac48c47d81b42c44a8063419993e3527b81b865901eb", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b0d7e3b4f1477f896478cf7a80a8a5da15247e1e67e88a88aca735eb3d185b45", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b584528952b37b5c08ac2002ce4b8baec2a52044ceae8391a4a0be787c4a9f7a", + "regex": "(?i)^https?\\:\\/\\/mmonopolygooehelp\\-give\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d2bd778b06c10cc0891091becce70977860661ca11f63f7df7d9a6ec4f9b289b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2e2e1b276(?:\\?|$)" + }, + { + "hash": "21d9118afa9a36462e045e84666807e8ce3bf127e4f27090a65324405aa0e920", + "regex": "." + }, + { + "hash": "b0d567b1d13c04078eece00f2c65a6927d2296a67ffff91714545820189248d4", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e387f3dd8cf4273b96030bbd978a108eb128dfcbd9f173277e0d8c5d00804053", + "regex": "(?i)^https?\\:\\/\\/moonopolygo10k\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f97b2208aafacece55ea811dbc2f14e5c761a3d4e4b95191d043663bf11d9c0c", + "regex": "(?i)^https?\\:\\/\\/sdvsdvsdv5\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a054abfacb50881be29b698aa4c1e9f5aa4eec1721da443225bdc5246d2c70fa", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ca28257d71a3ab82265251fc75494fcb51716eb84257f90bb2beba63bfcb0af1", + "regex": "(?i)^https?\\:\\/\\/kotumihaderaoxmlatadecroa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "97c641a7f2df3984ff09225cda7228aac74b49a66b8625a4ea90370094a517de", + "regex": "(?i)^https?\\:\\/\\/kotumihaderaoxmlatadecroa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "66ee6e22347b4340d8c07084387b510a59ed40c94d4d53f201978c4c6c7ecbb9", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ba807bc085c96d2e6466f7454e18138374096848845e5a79f393bd0f88759d93", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aWLCKbxpYny0H3FQu[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "ba595da1b15f21fef88474988f860d8b08062098bbd6f6b9349b250099611b7b", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifke\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4a1b5d7675fbf808a6805ff4e69430802c73f1129c156e5a3049d48e70808b84", + "regex": "(?i)^https?\\:\\/\\/kotumihaderaoxmlatadecroa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0hDiZ5pLtTUeMFVPZY[\\/\\\\]+_CqioqutOcsa(?:\\?|$)" + }, + { + "hash": "29148f295f5824b399ce17dc7d36cb6979e352df7377545967056221d3d538d4", + "regex": "(?i)^https?\\:\\/\\/sdvsdvsdv5\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0895a63a96d9400cdd7c6d54307fa7f24141fea0129bf97f7c351cff4c7f529c", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be5f40b60c397adbbd60d1c5d37b4e02c1814f32742be566063cfc0b5f29a13d", + "regex": "." + }, + { + "hash": "2e6162f649d486b771c506eb0d1609e5f635982de339d90d3e79ace481d70448", + "regex": "(?i)^https?\\:\\/\\/kotumihaderaoxmlatadecroa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "da4dc721e719ba49d7e5c109730060a9073e5bb9ab92bfd5d426e6f8be5c3304", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifke\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d4a4f4acb8a763d55e49d02cc15dfbe1997f75716bfc2a0e94ec957b9b217b38", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "761674f0706ccd24347452d602a8f9557d8cfe65e0bc39375f4de3cdf92625e0", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifke\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a68712fa410017f2ce36d4f6ca7b57790cb06c8398c6f2715d4c4f2a680f1fd7", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfi\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d5ba1936a44af6d34345320d8bac10afc70efa320e78270071ab20cd8dc55814", + "regex": "(?i)^https?\\:\\/\\/moonopolygo10k\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d631b98e503c1005e77ed8f4de25657d9150581419f7aba11626a72d691a3ce2", + "regex": "(?i)^https?\\:\\/\\/kosimsiregarcom\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6d584cb6bbc32779196dee4ae6e6de9db64eb7fbb43dbe4d75f29d6ae80a6006", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0d2bc7fa9da3d3c49df3b1dea20bd177c5f56cc68b54c771ef31dd31a3c2567f", + "regex": "(?i)^https?\\:\\/\\/magenta709282\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "54e72920b45153b60fff0cce6dd763b79373bb8b3e02284fda13ea4c0442908d", + "regex": "(?i)^https?\\:\\/\\/multidappschain\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "2493e6ed7a3ad4e46833f512c55f4567ba7538727e2c07ccb75f5d04d1f3bbab", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifke\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "55f1c951994af0fd35859a0e6a09a3526216f2bb9f86e203bf741ee50deddfad", + "regex": "(?i)^https?\\:\\/\\/sdvsdvsdv5\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "629a9f057dfbc27ffffe2854c9e94b5cb569d3e73653f3183ceea3fbb209bd39", + "regex": "(?i)^https?\\:\\/\\/kosimsiregarcom\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ac27ed85c6964d780a5523827dfab96ba20cb26d661a80a9ddef5127cd46defc", + "regex": "(?i)^https?\\:\\/\\/kotumihaderaoxmlatadecroa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7acb48cf78e5a8e368b3b84a28c85e008bf424fd3679133f7ec3e578ef6e1ad7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pazz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "efa4a0099223c4c1a9b43804c657929ce5202e1bca7324d6b91603ac42ac6fe9", + "regex": "." + }, + { + "hash": "df5b24ca25cebdbf81ff05ee07c637511ac04ad76b6fe67b6338abf1e5e9f522", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifke\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c17d5cad775878e3cb23308c38db201cd38a0f9cb2fc95af970ba7dd09b3a3d6", + "regex": "." + }, + { + "hash": "d928719571b07c6f5b1942c99f09a1e075d49096719417f4652095375cc11aff", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c913874b83f51f9acd26e79623be1d39d2ab6fca2ef85e26dca777b6886ec06e", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "62867c07aac189847fd7fedf7814b625a5e3a2176606a912d922bcdfa22c61cd", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e6cbf1570216ba019f609a37a0fd425d48643c0995ecaa02813f0398b9bd7863", + "regex": "." + }, + { + "hash": "b2f9f98a2601fc15eeba149cb867788d54e4dd94551b32ce1ad7575537aa602c", + "regex": "(?i)^https?\\:\\/\\/moonopolygo10k\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eefdfa33e67b43b73d1ec0a316b50656533c958586cc12adeb7e1dce6b02dceb", + "regex": "." + }, + { + "hash": "87970d30742b6a14686138b80e5ea169204608bfa80c00f146e19e4b2678c8e6", + "regex": "." + }, + { + "hash": "17aedfaa0d5d4f9e6ae854d02fab42c4f8011c1a05654f11f96682178226dc5d", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "beb9c7e7174ff39266a63ca64d804d272fc05afb170d16fe8165e653d73eba58", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cDnHo2T2tp927dhSC[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "cabf5e8abcc086fa09f8db9d45aab0b87976c4077a69b2e040ceee19fc36f83f", + "regex": "(?i)^https?\\:\\/\\/mmonopolygooehelp\\-give\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "419818a1dc81d00dd866886e9ff7424728bea1185a919b0e0919ec291301ba8b", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e76dd1bd6851bad660c098534e4025c641379d4716e4543513b24d31c81cbf1b", + "regex": "(?i)^https?\\:\\/\\/sdvsdvsdv5\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "559cefa01b1dc469b80ac8aba593fdbd516902dee57f9dfac85619d60d6bab40", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ea555717bd32dc5dec517f4b79ce41686ec9f90d7297c74d92952a0792ac90d9", + "regex": "(?i)^https?\\:\\/\\/kotumihaderaoxmlatadecroa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "da1977f85d951c06549b6ab95be154bd7c931d7325ac6e3a026862d3951e60d5", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4835baec39b8939d80ebdd4dbaa54b65e50089298b045acc6f9a62e9f7825646", + "regex": "(?i)^https?\\:\\/\\/kosimsiregarcom\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "aab25f6e835c0bad158c67f37ae32a1b41ed112508ef8fd53febbc3be65ef672", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "718a553a200ac6cf1538965717f1e6427d78cc7e289c4c51683b0ca63258040a", + "regex": "(?i)^https?\\:\\/\\/pub\\-09f87afdd5c64eb7b890d46ae8546ea9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b5d5150bb8f824564cabaf391804108f06b1ef4ef3992d948e70791c66e107de", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "40faed171cfbf2b88dc46292d8da2ad549b7d02e0e94ee32a3f13bc6c03a9f86", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2016eeea1d19b8f1a860696b85d9d76ab28875d063ae3158e0de9161f6d1002d", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3c05f4e0284441cf7f9391fc5c1831f5e7f3b5fa409543a426d0c2494facd0e", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifke\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d7409184c15330e8890f9c1fd7f5e1aa1b6dfecdedd52dc682be464f58680ab3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b4355d11455c060aff8ad0c5c82977f957a113f2f3ab0a6e106e3fa5c3048af0", + "regex": "." + }, + { + "hash": "01e32fb6edb0c7c139690e82fb4b5b435b2bc4954c355aaf4f2382dce52ecf29", + "regex": "(?i)^https?\\:\\/\\/indigo546558\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "9f76a2536c830705239d5db5ee085aea97e8aec5af436d96bf0ffbdfd631529d", + "regex": "(?i)^https?\\:\\/\\/sdvsdvsdv5\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "edb26edee1b29804c8487b727401871ccb8e0e23248339e014ec1810bd08372f", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c3e69322b28b6086376a8560bc12ab0fe8dbe21deebef34dd53f9b06b1824b2b", + "regex": "." + }, + { + "hash": "e64cf504351f2481d18e2482b1f723fddbfe409c8c6aef01469b1bbf1404e689", + "regex": "(?i)^https?\\:\\/\\/moonopolygo10k\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7caf263f8863d0478302d313402e47462abb7996377b21016ec1007b868d27c9", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c884e5365bf93fbcdc1c2173390d6fd74d4d6f0c9113d6a507961118c289a75d", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61ab90e90aefad6ee9a28f0039497a1c3cc492a921960c34641bfc0cb28ff5d2", + "regex": "(?i)^https?\\:\\/\\/mmonopolygooehelp\\-give\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a6cbc75fa1b2fd6eef6240dcccea93c748c2dc4471b8ec4a9add8fb828fc6507", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfi\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bfa360f25051bf9af65611f8fa9f1911b027ba317c5cba9b5b7b0d7433d7720c", + "regex": "." + }, + { + "hash": "6af3dc18bc07639bbfe69fc4c51b5b1623f0285ab3511334d786d5bb54923534", + "regex": "(?i)^https?\\:\\/\\/kosimsiregarcom\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "81d4f92bede2de97cc2c301f04b276e1827d60b63fbaa26c6f008450f8385e23", + "regex": "(?i)^https?\\:\\/\\/www\\.20\\-2\\-66\\-219\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4bf40a72fe19ded7fe39b891510180427cae2a7649cfc73f43cdc14ca1970ab", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5d5c60de3d51d0216204334e7d11841f8823d0b784cb5c82249b25fe39ab4ad", + "regex": "(?i)^https?\\:\\/\\/kosimsiregarcom\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "00e7df91ef4977b01028b854619c954786231ede6363449c4a8d827d915f9493", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8feb8f47ceb00f7cd037e8b036c11be7ce042b55529b42caff4f8c01554ae961", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "71ab947255e13b5726d9496df2bac7199f0a703954edbfe951b9569bd3516d69", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "465ce8bda8ac8a74ead6ee60c96598a219859a68d8dbfe24b1a61519f3074f98", + "regex": "(?i)^https?\\:\\/\\/tiktikflw\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2878fce663d267dcc0e45d1db25312a5efc2eaf0cb9e6926f4f2e0914d98fe8", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "95584804a1205e6cdae865633b4f5b48ac42bc544b546630e8a7407c105bba22", + "regex": "(?i)^https?\\:\\/\\/kotumihaderaoxmlatadecroa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1d2063b1381cf5035e10025a3ee621b54c6c8339ae7ac77e8a8f115200d0675d", + "regex": "." + }, + { + "hash": "92a23f88a201a7e694d7a73d9cc1fa799034a14968a4055f9c782f891a88eb03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+excel[\\/\\\\]+document(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df23bfd2b7a159fceb16c6d77f98878cf69efe107931a4c7c0bafe33de9501ed", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5c683a3784e92c3b49b11c238c506436e797302115ad94d3ebbd995af519179b", + "regex": "(?i)^https?\\:\\/\\/moonopolygo10k\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9ac66c7bba14417eff83c9ecf7f8ad2e8e5be215e0bc24596d839bb3e09df94e", + "regex": "(?i)^https?\\:\\/\\/sdvsdvsdv5\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f3a11f3809d124e9636f1f4d8ff7a73d6be34ea36fd37161956323a771d1d95a", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bb814c393ecc6b99bbb7b677c640e60e341d3d24d716afc13654ad54c2896019", + "regex": "(?i)^https?\\:\\/\\/kosimsiregarcom\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2b079d6945f3e562c5785f1591918526660c4b1907faec232ab0a8be4536a0e7", + "regex": "(?i)^https?\\:\\/\\/tiktikflw\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f160150c71cb2aaeca1684d7cec00e8d48c503f0ee5c45abec02313da1370b4", + "regex": "." + }, + { + "hash": "ef572b331175cc0fee3a7862e422636e7827e89bb88d30603cec07522682bc17", + "regex": "(?i)^https?\\:\\/\\/moonopolygo10k\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1edb7c2002fd98f06e3e564325b8bd9a5529451b79b08ab10c1b06757e336b50", + "regex": "(?i)^https?\\:\\/\\/php\\-red\\-dog\\-adperdoti1985812444\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "211776404c6c7d126d8504ff0860e6eedcdfd01c46c3bc0257ec68b81201e68f", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "913df4e5eafa9c869881c95bfb6611db562a98d43fbc88b8f724dfaefa979c9b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usunit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "10d61a98c247fddeb1449151c7f114127a9abbf87351d53f63a78551a5566c48", + "regex": "." + }, + { + "hash": "69e653988691872e7b3cdb1649d8f5457fd26009c25dd727402420a857ce466a", + "regex": "(?i)^https?\\:\\/\\/tiktikflw\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c977bdcd99fca59ebfc7251628f9467bc75510b7044e3ea0c3d54800857d4c7", + "regex": "." + }, + { + "hash": "8d97868277dbdb2fb8cd97cbfcd8b3b10501dbeb535fcd4185b36bf0ff710294", + "regex": "." + }, + { + "hash": "f3d1f54560819fdff55086b7a9bf993d59a61ca42372a233b93b8a95e0f954df", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b7ad9acf053536763be4dbe1d22ecfc7272a8cbebc0f41fe87b53fea7e382e9", + "regex": "(?i)^https?\\:\\/\\/kotumihaderaoxmlatadecroa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d97248ebf41c09c903fb40855f3e8c0aaecf5d34a021f20c0703389e2b65a559", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6ce49e066570be007353d818462ce96d7a8f98f68960aa3d06f9a89eda1a1176", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9e7db02659c82dcfcc275f38b76050928e5dca2258527f005372ef1ae774b4a4", + "regex": "(?i)^https?\\:\\/\\/tiktikflw\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c72662ae6b27dfaec8ef81dbd3b4a5cefe632eeb639f63af955b892b48ccadb5", + "regex": "(?i)^https?\\:\\/\\/kosimsiregarcom\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c2ad582df5f4a5e5b0759cd41c5215f6ac9c5bd9025eb7edddef9936e58cd4b7", + "regex": "(?i)^https?\\:\\/\\/tiktikflw\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94a125f62555e853fa6e1017ce36bb2e13debc3945ae8c3428f82bb8bb2955af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.e\\-2BCbYTe2cUQqFjSXgu8PQ8fc4aEj\\-2BgjpMq7RlKwrhTa\\-2Fz7q1ew2xpWyQS2PpBKAvDPY9Xqn6QXdhXobxG3Hl7Gdg5toyrCnhPeTdWTfJFBs5sez09Xy\\-2F7RCrAAxhjZXwkUcn8vPfQEkFbiKRPo\\-2FOsWZKdzi\\-2BMszTaInGMs2g\\-2BQBoGoFK4PKMMgJ9dFlc\\-2BmkhWL0lVfGsrka4hbw5xpyHaGs4k7eKnNxo4Dx\\-2Fh0im2rGDZRvk9UpES8Z\\-2BvPgjmN\\-2FRFftRxyRcKE\\-2FGvQb1zCDSerg3atkzcUi66AWcZtU7G68\\-3DlBxN_3HnSy7Thd\\-2B4TzjPSA5oX7gDgydapwUOMM0ALmNGcIxHKzkXSJ8YQmJobq\\-2FLCPWqhSWJVA86UTee\\-2BL75di1rxlYYme\\-2FTwvxmPKf\\-2F1vIxjErkhjRzuH42qsizRVTZtBoDPaPSNm1g0E1s7qsijt6qO1Hs61zAk0bAaV1eYQmmtmC7EFk3sRltBt0TmRvlEMg6U8EP4CSl0fSB\\-2Bu7TwSH1tPP7L6H0xwWalM2lbvOSO\\-2BLw\\-3D" + }, + { + "hash": "e6607a854a671f187fd8b9aae8295a7fa937c5f27f19613deb897ac41201dfd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9965[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ac5f92471e5d980b9c9350c5fdeae0dbe28600545383c7a217da6df0d232ae86", + "regex": "(?i)^https?\\:\\/\\/bafybeibdztn7qa5xt545qghd7x3czdhksxk3asus3fxyjafer3ieuagleu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "caade0112a0efffc726c337c39191906616292502d4b8ede31c3f2da2e23eec9", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d7409184c15330e8890f9c1fd7f5e1aa1b6dfecdedd52dc682be464f58680ab3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "9984c94e1b4655598002447e4c6eb601ad51990f061a0b0083af4b992a7dd536", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "ab2013b81e4a36b6f8350eed8849cb527f0921a5c859ef5a228b0c0ba307065f", + "regex": "." + }, + { + "hash": "8c5dfb8eb153388e1ee003e2344be21c2781e2ddc2ba763dbc14d5d358066f6a", + "regex": "(?i)^https?\\:\\/\\/moonopolygo10k\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4606f3d39f491177cff20f038b5db4f8286fac3106117bb3bb9b99e66b4be825", + "regex": "." + }, + { + "hash": "ede6da8d8edc6cdd474c21b28723362bdce5296a24bd70b52c4905b6a4c24553", + "regex": "(?i)^https?\\:\\/\\/sdvsdvsdv5\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cedbfdfd0d7111a1911f5bac0627ec096567bf5a40dff0586f7c905a9955b980", + "regex": "." + }, + { + "hash": "a3fc42e38e3c190ce1e06439d226203ad43749f56f7f8d906ae54fac59665380", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "279f08c69e056bb6b93543d6f26bbe0690a09ac37d1aaaff6adc0b75e9709dec", + "regex": "." + }, + { + "hash": "8800f6ab086b4031b69464949a09e4c03cfdc800b27b02848dc5d2836fab44e4", + "regex": "(?i)^https?\\:\\/\\/www\\.webuserinfo\\-profile\\.my03\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8c50e6f8e3ed04826ace68d74257d377205c090b82f826df683e6a28a0b2ab49", + "regex": "(?i)^https?\\:\\/\\/sdvsdvsdv5\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c1e87fdd27eb5c7d80f7d756fd3a6fceaf2f8a4570a5495c25534ed541a86223", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78546abe4adfccefa00aa527d908bb82e5d28f66630357d827f45ffd858c45f6", + "regex": "(?i)^https?\\:\\/\\/tiktikflw\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23127247e3ad09b8aec403d58d784632d6a524ee8053fae4d91dacfa670bc8e7", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c80f21013723bdcf31ba53795d30ea36922374f88c3d6e371ab06e4cadf9ef75", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfi\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5991f6e776ace3e5a7fcaad0fe11383e3c379e6a4f61381ddb4602115c4ec5d6", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2a127bf2398dc000c57bb245df3471ed915c808823ebee9a494f65b14044fdca", + "regex": "(?i)^https?\\:\\/\\/kosimsiregarcom\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "48463df15243f96ade5fe05b9c60a29197f095d37474872d4528c96a0eb19860", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "18be465312adbceab582f56af8ab083c50fef3d14b9675ef680ad0eda0a2c6bc", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0ff77b009b138768d021501574137fb608c12d4dfb6235ecb0cc5d61d359f1d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+se(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "21d53c8813f128aadbf996bf22f9c8436fdf8ebfb88850aaba8520dbcd1321f3", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8b9648fffe5113737e26876ea396cb6488a39f6bafebaf762185a17a83e5f9f6", + "regex": "(?i)^https?\\:\\/\\/mmonopolygooehelp\\-give\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b4df8f26f98b68a38983a0ad2da015a85b8105a1f09a0ad59051ad1619530f38", + "regex": "(?i)^https?\\:\\/\\/sdvsdvsdv5\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "09a1a27fe18da4aadf2a6bf2bc4774aece96c0bcfbed9e491c767b9636a2d716", + "regex": "(?i)^https?\\:\\/\\/tiktikflw\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eed45f09de48084728595dd1e7eefaf8e04b291a758f37d4b6c7a4531bb348f0", + "regex": "(?i)^https?\\:\\/\\/kotumihaderaoxmlatadecroa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "259fc64feffe7a9bbc5035cd6e8bcbd3e75961c7b2b0412a02e02b5aaa7dc053", + "regex": "(?i)^https?\\:\\/\\/tiktikflw\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "61bb392f781a392d6518486de700d95fbb89289cce415dc2e7c917ffefd93bec", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f99febd476ce27f6d06b6aff42761805928dddd0787e9c22aaec285176b998fc", + "regex": "(?i)^https?\\:\\/\\/robux\\-kfi\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2465d0b97db03dd2fda8b4f9bb78af4e6196bf5b9abf80125247ce654e010d20", + "regex": "." + }, + { + "hash": "f0acd8ff0023c5d8e4bc4593df89c4d1c08233b21389e5b87cf53c70ed55d01f", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ff757c8fd8784b8a3a5913fd51ecd6f9e4161047de3cb3685a641d11f081ed89", + "regex": "(?i)^https?\\:\\/\\/moonopolygo10k\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "69209c4779a3b78a24430bee4de7a5e5c664e402f7bb02c039e17eb5af896c39", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifke\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bd01e4da1dbfbffd353b28d9b814dda573237bbdb59136211b2ffd32b9a934ab", + "regex": "(?i)^https?\\:\\/\\/getsrobuxs\\-2024\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "96cea12ce342ef2520d1b13c81a5ad815f27f0699fd8596b87cb8cf9a9d457bc", + "regex": "(?i)^https?\\:\\/\\/mmonopolygooehelp\\-give\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2250c0ac63ca7a02ed98eab216865aee49845e9199998266c842b5527f1d02f7", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "82cc2d0a39d636725a7cebcd5d383cbbfd3c6949af3c00c2126b83103a1356f4", + "regex": "(?i)^https?\\:\\/\\/ffffffffffffffffa1\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "90c5f711f05766b544c02409893232f2ce93127c4312f4b2def31d2e14652484", + "regex": "(?i)^https?\\:\\/\\/mmonopolygooehelp\\-give\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6bfe12417c481b41511c992a2f1ac13239fd28ad08409dc290fabcf8679227f5", + "regex": "(?i)^https?\\:\\/\\/tiktikflw\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "785fdbb6f292273a2f2ba693e16f2ce4c3c8a01bb9661ed4c5b05a31233316d0", + "regex": "(?i)^https?\\:\\/\\/robuxsuk\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6a48419650ae78af2f8a9ddf6523d5cb2b6de8f3a7b9bc03ae7525cf44b3b3ca", + "regex": "(?i)^https?\\:\\/\\/dfghjhsdfjhsfgsdfgjhsdfghusdfgjhu\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95e71d30860e7c6ffcbaf124f15fa3540598f5d4ca818ceb5287f30af5f3278b", + "regex": "(?i)^https?\\:\\/\\/portmediazoney0\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "162032bb4db17f663449b619b5410a956fb4accb1a5665ea044e96216ba0c557", + "regex": "(?i)^https?\\:\\/\\/delispam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dtEhIrAJTsvtcbjrM[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aWLCKbxpYny0H3FQu[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "e56c706066d32f4bd63806dfdf8a3dae0335ea3749a4123d8404e09770b3929c", + "regex": "." + }, + { + "hash": "7a3a3f7c3b9e2d4dac0018af04b123f52f5b7a36984ff54a9cbf275d41ce88a7", + "regex": "." + }, + { + "hash": "257c9e3f366df56f752a54ba3fffeb80a2117165443d066a630665928a412c43", + "regex": "." + }, + { + "hash": "65e765587def56382a3510be32c1f4c1975c7e0939c1d24d28a650cd9717ecab", + "regex": "." + }, + { + "hash": "264ed6f420186b9e7ea94e03e318bbfab53dfd860e819a7f2d5b321205961351", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cBNeclS8yLtbOysjw[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dtdkYEc5k0hJVDkq0[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "22386fcc0f8a727ef753cc1d8fb304eede357275341b2902113c123b364f0f70", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YsuSoP4VjhZJ7hcds[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "93c9ab10486b859465227ac2e2f3c6f948e4582358872abf0ee0cdb64ed893cf", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fWGNZgbr2rZAtLLfk[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "f26c24bd9586764eb0bffae129e5a859804ccbc95918585201b25b9757116c5d", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0npSf2S3Q6bDAWzWCu[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "e1b4a462f9506e41870c204300da24e7ff351460e688ccadc14cc7c484cd70e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+OycZvHuFo1eQsnbXAdqfXDY0[\\/\\\\]+jSemCvyC4CW8(?:\\?|$)" + }, + { + "hash": "71a8c354c58564344be9bee6ec8af619bb08394807f12809fc745d1eb8a98f88", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cCBSzNdEDlhydU53g[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "ac5fb712d889db76a84f898f1bcf50c9ad89ec0cecaa407197b48c5750a356bd", + "regex": "(?i)^https?\\:\\/\\/pub\\-ec60ed3c7a18487592c25fbbef5a3fc3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fV3c0PDocvtXHnkFs[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aXY3wbah4LXnOASjI[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "ee526a4ff61cfcd2c30a848987e2999de051806f26322d00ffff66ffea924100", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+assets" + }, + { + "hash": "abaf1f56f42b2bfe623f827040a261ff45d15ad0136dbc00a72ef0059340deae", + "regex": "." + }, + { + "hash": "be9a2e1e7043dcc1317210d9b278f8d2fa7ce9dbbbb4b01d24383ff572f931a1", + "regex": "." + }, + { + "hash": "16d280530dbcb733da149538b388f7b4b284d9ca2f280a9123e00d13ea37126e", + "regex": "." + }, + { + "hash": "1318e7d03cf761aeea0b92a1afca49e881216fab00b55a8edd94f814c15678fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+proxy[\\/\\\\]+request[\\/\\\\]+35389cf28bc3a993aed4af6be96039981a089(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e108f0b79f706d2bbf5bd7bb60b1d018aa817fe926bbe5c8c37388628485d8f0", + "regex": "." + }, + { + "hash": "cabf52518fcd79e25a7f897129edc65dcc14d52162b706fa525599bb44486726", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+ESPARK(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "36c23c748b94c55bfbc8a2bde6da53b3c1036be7759081b2249c8960bb93abe8", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0kWac48hen2vlOFStE[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "f22238b823a0468784ce3e4c73453ce42f57e641a1bd99a7a3dfc97001859ea7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "2af0dccd98b167fe7a4923a66b8b085e4a5bec5305c52c846f35b15dd82fe8c6", + "regex": "." + }, + { + "hash": "8d878cb8ba58d7b3d9c0a74871293e67ec9fa3fbfe4e4379bad86e5f51ddf329", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+6541c8s9qdc416(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aXx19GneErP3lCrpQ[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "d41934bfc1eb69532dfa9f3aa74771f313f92274044fa345d0e7d12395aa84dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9010[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fXsIR3gUoWuNt4Zwm[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "ad452dcef127ebfc3a4084c91dcbe82deabd7878b15bd265d1b6f8dd504eb6cf", + "regex": "(?i)^https?\\:\\/\\/betist\\-official\\-giris2024\\.tumblr\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "36d73fb7f32455bb19922fafe67eb36346c3da82cfb5f0b1ee6926ebbd801f2a", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YtJW3mWHzpKj0JdcW[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "45e7fa1e9cab4dd5e722dcc4672e78f953e538a32c3f7d95a200da8b0b9aecd7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UFT\\-brbz[\\/\\\\]+betal(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fWfQp43dIzKalxMeO[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "4534e4c23ff5a26c7475da18d1385f156291b72c39b4c9eacecd413b69e527b7", + "regex": "." + }, + { + "hash": "2e97ceb6a5ea88655b4bae9abcc85c1e0a294d40e13c85725720b29c38f0bc8e", + "regex": "(?i)^https?\\:\\/\\/coinbase\\.verification\\-account\\.137\\-184\\-215\\-92\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5bf38feb955e064df1cd4cd8cfa8165035f772391ca386a589a1c7bdc7b0d46c", + "regex": "." + }, + { + "hash": "8927d26d68e8d9bafcf261a98a902f14c589191e5189beb3be5a7a04b40af742", + "regex": "." + }, + { + "hash": "5eb24e2335cbad228b629acab76e65a90874d28e2f0839eda42b96dfc5c621fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_id(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fYH9b0ectQrUkXNAO[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0kVmheoHkS1DEeAegy[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "bafc4c73f7d806ad92cea342bae869dd1416b1c89494494a5d79ea3227b18362", + "regex": "." + }, + { + "hash": "fbfdccc77c8a237b7f0c8c8db40f55a162599ef05b8770ae8660a68c7d5df6c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0isM4BJdFiWih0OdmS[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "e8708a38a5414d5dcd8db66ec19305a191c84d06b59279b2e3f6e5de4e1b50c2", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fWGNZgbr2rZAtLLfk[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cBNeclS8yLtbOysjw[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cEb6Aee89ExPM8tlw[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "e43c385218f1f67bc20bae012cd5fa2bd465e25260de1b1fd57b1bcfe8020d58", + "regex": "." + }, + { + "hash": "5506d61577b82faa180112d6fab781664ef43de39d102c9f4c054393afe0fca1", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aXx19GneErP3lCrpQ[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fXTFBgEiYP8y0SYy8[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "7b2aefaf1763cb0716a1b2999d2923dfdaffc889449dff8afe79978c6cacdab3", + "regex": "." + }, + { + "hash": "0785fe5b2cc0764447b064d3eca16eb5c4256a4194851eac8156578fc2d170b2", + "regex": "(?i)^https?\\:\\/\\/videohd2021\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bb9c7d9175b3fd2671075357cd5b763e2beb28f2f29e842d0296d5e6c00a5ce8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qnqsnqnbdnsqdbqsudyze(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dqp47a9PYPgStwv96[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0npriHpVCMiyaPbXBY[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "c14e839f3167e53eb4b91433117c1039c187f0839d06d480943722c525fc3a87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home\\.php\\?6f4713b68d93896efa78ab50b5b3c803$" + }, + { + "hash": "5db72e6be90602eead0aeab54f97d68f600e0f6ce81dbfd28ca137e3c324c511", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cDnHo2T2tp927dhSC[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "8c99ee4e1ce9b6a34e11a83de6d907d720b2d03fc35130bc612c7e0a7687eddb", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0nrsOGRJ97gMklDwng[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "e43ce18fb9fc7b26d79cee46fd75526efc7b4dfa40b010b0847bde5502994fa4", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0iqkFMenR2THdWF1Nw[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "6dc0ac2b74cb8ee9eb7e7ae9ee6a67740b83f09a0b7ffe2010e37ca49a6b78c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_source\\=event_newsletter\\&utm_medium\\=orders_paid\\&utm_mode\\=skip_if_exists\\&task_id\\=465435\\&task_auth\\=dd7e2f97dadba1984f71bfe433e1f33f$" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0npriHpVCMiyaPbXBY[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "8d97f6e689c01b53602d336f76ba2721694bbdcb94086bbc39eb0bf2c7e94d0a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index1\\.php(?:\\?|$)" + }, + { + "hash": "8585081617663873f5d228b8aaf04953609eb9d986540e8a38cbf90dbe07fc78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+netflix(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f67b26d60197e32d29151b7163f5494e0abd420c3355855972e63f007c03338", + "regex": "(?i)^https?\\:\\/\\/eavaqec\\-ea\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b87e60b973cbb1891fcd6398c28de11179bcdb07ae3a4f6e8841f57e896c6a7b", + "regex": "(?i)^https?\\:\\/\\/eavaqec\\-ea\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aXXxttLryjddsaqqm[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fYg0kxckyKobc0AO0[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "d10a3a76057f4aadfcee2608195380c2601822fa0de34a970453cd24183cfebb", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YuWBaLfVK96D6Hd9s[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "923ac90ae375daf1f528b4b60db5e37399568d4cff762edec86b0667b1401035", + "regex": "(?i)^https?\\:\\/\\/videohd2021\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cDnNqkhrzR3BdDJKi[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "0ffe5073b6c53e7290fa099cdb45cdd14b16d3be90ee80b6aca81dbf1d465463", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+(?:\\ |\\%20|\\+)+xX6PGCc(?:\\?|$)" + }, + { + "hash": "37229b8883bd9d97b29d65e1440aea813629d041359fb3eafb5e0c7e00e9771f", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fYg0kxckyKobc0AO0[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cCaWEl50TtTOW662K[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "a1ebc230ff4bc284ebf31cb1337d479bb954bb39013fff0134bbe48d29859951", + "regex": "." + }, + { + "hash": "eecb794411d9e079a2e565686deadb48f5d1690efc11e8b608c19b46d9928896", + "regex": "(?i)^https?\\:\\/\\/videohd2021\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YuWBaLfVK96D6Hd9s[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "e590d9ff98dcb913a5f05c3bba0d0509fa27b4023dcae4da02d40452b8f5533c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+source\\-bonheur" + }, + { + "hash": "6dc0ac2b74cb8ee9eb7e7ae9ee6a67740b83f09a0b7ffe2010e37ca49a6b78c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cf104ba17575764cd7e2a5218630b609ad1a43c71248ebede180f899878466fe", + "regex": "(?i)^https?\\:\\/\\/eavaqec\\-ea\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cDnHo2T2tp927dhSC[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "b13506d2e7aacd6260bbf07a99f7f58a85c9062f22ee013c69c127e327998d69", + "regex": "(?i)^https?\\:\\/\\/videohd2021\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b972f1344059ac6a8b701d14e2def18abe83f6f4ee959893883d2917ccf82f3c", + "regex": "(?i)^https?\\:\\/\\/videohd2021\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0kWac48hen2vlOFStE[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0nqfWeRgHc8mxe6jVI[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "97da459a47a5f2f7ebe6f3b2a9af32032d8ee4b971e0962c1b0d7b17d2596851", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cCaWEl50TtTOW662K[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "6414bf0e604a46d4ea65ef185083e79774e263b6081d67b06d869f4941345b35", + "regex": "." + }, + { + "hash": "8c3b6347a28690820222d7e3777e7fe51aa0dafded7f375692a3fc7c57b32a16", + "regex": "(?i)^https?\\:\\/\\/eavaqec\\-ea\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dqp47a9PYPgStwv96[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "f78c16dbf001fa11f1a21c5b107cc1826fa7a9fc231863e015f63c4c0fbc1011", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fXsIR3gUoWuNt4Zwm[\\/\\\\]+yHVfqIf7ckk2(?:\\?|$)" + }, + { + "hash": "eac064d2d9f309f6cf35f675d396510cda1284813ca9726ab9b92b73d4c9b6cb", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0nqGfUUi9XEpqmdwHg[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YrIq5AiLErwYehE0O[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "dbfcbb539b0c627b8739d4595cc2cbd94a4522c6cc25fca880f199cf4f8c3f69", + "regex": "(?i)^https?\\:\\/\\/pink318082\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cBmbpQf68rkrm1Hq4[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0hDiZ5pLtTUeMFVPZY[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YrIq5AiLErwYehE0O[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dqQ0sChdIHv31KuAS[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "6dc0ac2b74cb8ee9eb7e7ae9ee6a67740b83f09a0b7ffe2010e37ca49a6b78c0", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?yellowroseksgifts\\.com(?:\\:(?:80|443))?[\\/\\\\]+products[\\/\\\\]+detail" + }, + { + "hash": "4d12e854d96efa48853337e63cdc633559cc6a0a532afc1faec6d327ce98b895", + "regex": "." + }, + { + "hash": "fcac7cac466bb67bbb76d95ae1aa1852a7b58b255911b397b3f1981b6ed18b59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_id(?:\\?|$)" + }, + { + "hash": "14d95e5a81de1dda0c7833a8a674301e8bd2f15049c9bf7941ae603f9bd63f46", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0iqkFMenR2THdWF1Nw[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "ff6667ed38af8ab44a981f621243ee24cb6d1adc2c48047928c0ed4eaac17a8a", + "regex": "." + }, + { + "hash": "197d511fdaac72f9a878a4d4bf0a8a2869addfdeb86a0bb48b305db9c0194cea", + "regex": "(?i)^https?\\:\\/\\/home\\-104415\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "529d268ccac076e2d975452f848e96c3f579f61a458b654be3be600b439f5238", + "regex": "(?i)^https?\\:\\/\\/eavaqec\\-ea\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a641afc5c872aee1a15ec484823ad75dc1a2e2f4b43fe50ad842f4ccb6f175db", + "regex": "." + }, + { + "hash": "895d69023c312785fc883d9c6e40e782def8a0f7a3e9728712bcd2fe5afea74c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "964238c4f410239b7adee2ae9d67e5a0abdd5ed58eed8c56b86885def4755361", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cCBSzNdEDlhydU53g[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "960fd6084a850f0fe7b810c18e4ece3ad6762a77373506420528f1c8190d2795", + "regex": "(?i)^https?\\:\\/\\/videohd2021\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8b32388252ea9f2a0100bed9ce4cc78b39e0b3684573977ef436286012b28633", + "regex": "." + }, + { + "hash": "bc9559f107f392d868ff20ccc0b9f89e8b7789e8985da98aa3d1e41902a75ba5", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cBmbpQf68rkrm1Hq4[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "5b392aa60759ec78e2c49ac0f0cde8375b50392a59f8f4d3ea00626ffe6eb7ba", + "regex": "(?i)^https?\\:\\/\\/videohd2021\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "449c3a55e44a4cc61ea01b8d3c17f7cc88488c7946be7371aa3a3caafbe0f8fa", + "regex": "." + }, + { + "hash": "8a7debf18f9303846ec0403788dda5fca79a33f8bfbb69f0cbdcaeea45171c07", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+6rqJfgq8dINmO1hCYbRPrqnG3M8[\\/\\\\]+m_tfYagiwCOK(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0irY9lzDLNV0AGJpaC[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "0996dcebf3071364cc031b705d5f6e29d0bfde30d2ebaeab9973e9718f6ebfdb", + "regex": "." + }, + { + "hash": "4a38bd9a6e5e2628683fed42e63b40dd31921efb71921a56fe980701011e9661", + "regex": "." + }, + { + "hash": "a82e3d4916d00093758614f035ab3c94f5cb44095d23b3b25c285834a8814870", + "regex": "(?i)^https?\\:\\/\\/eavaqec\\-ea\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fYH9b0ectQrUkXNAO[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "beb95a73f4ce6ece4302a74553c8f638de22d447458bb614b84892f278b71241", + "regex": "(?i)^https?\\:\\/\\/eavaqec\\-ea\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "78545a0e866581173d5bce099f72cf013551f96844c6644c0091a58a18ca1dfd", + "regex": "." + }, + { + "hash": "0007cf495fbe502e4049fbc59bffa275536c71de20a4dd0e00092fe343d941ea", + "regex": "(?i)^https?\\:\\/\\/eavaqec\\-ea\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4254343119832603d2211596aaf08b9391dd82dbeb62a378a5c2f5ef4fb30727", + "regex": "(?i)^https?\\:\\/\\/eavaqec\\-ea\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "26e33fba68760ebad42aad53d11404aec2b48c7e61e6c1503eaf5a1fd739f3f2", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aXY3wbah4LXnOASjI[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "7809ff921914bebfc5f0f26790ab33ad10fb4b44ce4c069fb8e936278820d739", + "regex": "(?i)^https?\\:\\/\\/mkasdmk2kmwe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8b94e710c84ab10a623e187c5084aee953bbd220baabbfb49da6bf8421c21113", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9123[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "63ecdad8e66514429f28a42334571d4ef1658abd82c3932a9cb56768d6fce84d", + "regex": "(?i)^https?\\:\\/\\/mkasdmk2kmwe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "559c470c9d0fc7b1d681e29859201868ccee98421ac258c25a096d3bf560114a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index1\\.php(?:\\?|$)" + }, + { + "hash": "b66a42d61fd463b66313c4afad4d1b9839ad0922068ec880b67b5499bee187b7", + "regex": "(?i)^https?\\:\\/\\/mkasdmk2kmwe\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f5bb7ae6fb90c14e6f95d02bc5d3c19ce7f24f8f60e9663e151b546f36701574", + "regex": "." + }, + { + "hash": "25c93edf179c54a853a5058672a3234b50179db795af122cd5015038a5774870", + "regex": "." + }, + { + "hash": "96773ebb4f79e7433ef02ebe043212427456f1fd203e436dadc87ec75a89ddbd", + "regex": "(?i)^https?\\:\\/\\/mkasdmk2kmwe\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0679436a3c973d84a64ec324d90ebc6c6b30620cd0a960790baa026145b30de0", + "regex": "(?i)^https?\\:\\/\\/mkasdmk2kmwe\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5a8efb61a7442c63f27b6a203046aee258ae798f879ca248719eef1dccdd74c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "dce6633f72b9762768f17f6579ef122d7bfd58a5f6615b93727da92601a2373c", + "regex": "." + }, + { + "hash": "25c108cc0a4d5c397a7fd635323332b73a67e736779741b81d877152109f47fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8245[\\/\\\\]*\\?u\\=https\\:[\\/\\\\]+6746345568\\.com[\\/\\\\]+k[\\/\\\\]+unsubscribe\\-manage\\-preferences[\\/\\\\]+o[\\/\\\\]+aptyyk5561455khadmtwj999qjluqeaie\\&p\\=[\\/\\\\]+k[\\/\\\\]+unsubscribe\\-manage\\-preferences[\\/\\\\]+o[\\/\\\\]+aptyyk5561455khadmtwj999qjluqeaie$" + }, + { + "hash": "5461bc37c56fab994755ee244965fb8f94f0977ee9f253327a254f9cc1c1c415", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9010[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "62e406c02629739d1a191e9f62fcb46c457515c7941b455389f0ce754221dcda", + "regex": "(?i)^https?\\:\\/\\/mcgcg476\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8b94e710c84ab10a623e187c5084aee953bbd220baabbfb49da6bf8421c21113", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9123[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "797f0c595e477fc4a8d2bae94db5bfc0c720657650bdda67e3bc75ee4d026619", + "regex": "." + }, + { + "hash": "4d807ad28e5691f1c7eff3336b6d82b99670ddec9c75ccaae64e0da36b479c01", + "regex": "(?i)^https?\\:\\/\\/mkasdmk2kmwe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3394f39ec791af16f10eeeebe750a73cd9f9da08971112677020b743140048ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9149[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5a8efb61a7442c63f27b6a203046aee258ae798f879ca248719eef1dccdd74c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ccb58dd3d5d439a39592ef90b1ad028d6f879c21ee20e3fcd7342ba81237f504", + "regex": "(?i)^https?\\:\\/\\/magenta477481\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "9ca09b5bd62e431c87d6e0b630150b184e2a2134df01a92eae30c24c4c01bc7a", + "regex": "." + }, + { + "hash": "64072e2d1b54cb8ce44f7311f94ff56e368e871107e0665cc4f2b43f1e0eeb3f", + "regex": "." + }, + { + "hash": "9938af1cf5e49553021763005869430d65d86f58446a3686fdc4d88bcc9daccc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1b62ceb1e20ce6eccd3616b11e77886855e68a95a26a4fcaee6c001ff0d7360c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+first[\\/\\\\]+second[\\/\\\\]+ND1oygqqh1XysJH(?:\\?|$)" + }, + { + "hash": "d46ac35572011de4fdfc834fb11b6679736466d1688cb721fac3fe52062ae0dd", + "regex": "." + }, + { + "hash": "5e2e57475253b94b0d1d09991e6b756171b2ac5b0b2129eb4f735dc20646fc89", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cabf7e9718796d7d4ed3d673ce593e9553ebaceac25621debf5200ed338d5528", + "regex": "." + }, + { + "hash": "bd6b03f68f293c1ed0eb0751c0e7c9305ac8c6e1c280d9dde53027a703547f96", + "regex": "." + }, + { + "hash": "df88ece84b7d326895857c628bf6078a813f37ab872dc084a95c06c4913a9de2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=17113672$" + }, + { + "hash": "874c42e0d98913101b9e1b0c5a633f65352dec0fd43dc84426cfb43630b7f14a", + "regex": "." + }, + { + "hash": "7a85540180e0175dd776fa8a7eaa10f840c276ebc7fc6c7272a69138cfdcf367", + "regex": "." + }, + { + "hash": "c94595abeff85f5d3dcc404784f4465b229edca65e5e74aab602751df6844f18", + "regex": "(?i)^https?\\:\\/\\/mkasdmk2kmwe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b22cd38c8edf8e8d26905409861c9c5764e75a67be8bd9df5c45f3580c3a83fb", + "regex": "." + }, + { + "hash": "64072e2d1b54cb8ce44f7311f94ff56e368e871107e0665cc4f2b43f1e0eeb3f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gali(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ab736d4a07c8ec7f0205d203c690ab098713089af8287380deba9e958b801930", + "regex": "(?i)^https?\\:\\/\\/pub\\-4377a0e790314a2e99512025441f48e9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e57475253b94b0d1d09991e6b756171b2ac5b0b2129eb4f735dc20646fc89", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "a31e44e90ea4514cddc5ff58aff6e02324604fdd4c12d56f7b1e8865530123c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9173[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d7d660b38b630d8ff050ee4bf1f3d6c59a2bb946d3aca0271ca5bbc8e5b98fa", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e81de\\-20332bbe\\-d8c6\\-457b\\-b870\\-5dd59f4ad188\\-000000[\\/\\\\]+\\-xumU9FCVYnsQw4s7Wyh6mTnkDI\\=394(?:\\?|$)" + }, + { + "hash": "1b62ceb1e20ce6eccd3616b11e77886855e68a95a26a4fcaee6c001ff0d7360c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+first[\\/\\\\]+second[\\/\\\\]+ND1oygqqh1XysJH(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232788cca\\-d1a4fbbd\\-af7b\\-4d41\\-b1cb\\-387e39e0ce07\\-000000[\\/\\\\]+v95HqbaTVM8l\\-8Ds8vWhAKlfRwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329cbf90\\-713ea3cd\\-52be\\-4b62\\-8eef\\-b5cc11cb30f8\\-000000[\\/\\\\]+ePTpD\\-oWR4M5FuhCLHKGDH0qaek\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232860182\\-8c4fb63c\\-59e9\\-498f\\-a47d\\-26021d7feda5\\-000000[\\/\\\\]+LPVOrpF0_87WGVc36Pm79r7kg3Y\\=394(?:\\?|$)" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+a5ad93bf\\-a025\\-447c\\-b364\\-3079b6930ba1\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297f4a6\\-817089a8\\-d714\\-483c\\-b658\\-ad1acbcbc7f3\\-000000[\\/\\\\]+0MTO8AWr8zd4fJMcZG_RsL5lSpg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a4247\\-be11ee93\\-94ee\\-409c\\-9bb7\\-8e0f72c627d0\\-000000[\\/\\\\]+yDjWwQMsQ\\-7YYlDhccrhNQAj4xI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923298055f\\-02807292\\-a855\\-4e3f\\-afd1\\-d596b5050c93\\-000000[\\/\\\\]+RXxKJn\\-gs_fWBQs9jcb1jWqhYXE\\=394(?:\\?|$)" + }, + { + "hash": "79ee4a2320d57b3475f020311aad6cd9b7c60a6c9d38147c42eeff09406dd227", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329aaf83\\-fd8a8418\\-36af\\-4370\\-a105\\-634dd2da5e9e\\-000000[\\/\\\\]+tZWRy8Ggu_0dTDzbGXfiEVL6v2A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328b794a\\-98b78197\\-4fbe\\-487b\\-945e\\-bb8e84f8a16e\\-000000[\\/\\\\]+PIdjG8iEkr6MKi2lMu7rrXFGK7E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297df69\\-9e321c62\\-1f14\\-4c18\\-95f5\\-406193a45a9f\\-000000[\\/\\\\]+rsPBeAhdhVyDJzG2r9MT8yjhLO8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289db1c\\-622a7dfd\\-6d3f\\-4662\\-8c83\\-db78aa17f1bf\\-000000[\\/\\\\]+lNIe1qQoanTTeDUCsEd_GyJc8JI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328815cb\\-d1d72886\\-e8aa\\-415c\\-ac0d\\-15e262f5ccca\\-000000[\\/\\\\]+Rhr\\-vSpV2opu7vtU8Y9HkTn1FPQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a11dff\\-a4d6815a\\-9318\\-4744\\-b5bb\\-0aaf67f0028e\\-000000[\\/\\\\]+4HEifGshwk46RBd734WdwBnRPCI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923286652a\\-82351317\\-f7a1\\-4d91\\-97c9\\-6ac41ff9494f\\-000000[\\/\\\\]+KQ3FjHDhXtNSNOw4aFBc6dkeP8g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ba369\\-aa692e9c\\-c38c\\-4286\\-ba4f\\-18dbd44c2e31\\-000000[\\/\\\\]+A49KItlmXm3\\-WUdBhWjQ5XNjJHc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232894937\\-d9929dcc\\-19a7\\-4e67\\-a123\\-461f514c0241\\-000000[\\/\\\\]+iNFYhRPh\\-G8VQHrVDdd4\\-bmmYyA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232864cf2\\-37d8bfe9\\-9450\\-4a4f\\-9e11\\-810146ffe485\\-000000[\\/\\\\]+GULxukF_aPtOUHvW7NYcQOtayLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232837291\\-44e91860\\-0efb\\-4397\\-af0f\\-e00d4143625b\\-000000[\\/\\\\]+1hPNBIf_5lzU_JrDE91_sGxYYX4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289d6cc\\-dbdd133b\\-6ee0\\-460d\\-ba43\\-8be4efef87a1\\-000000[\\/\\\\]+FR4gtlxt_xN2NzK57E7pWJopn68\\=394(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fortiadc_error_page" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923288a425\\-ce5e0964\\-cd66\\-4297\\-b66b\\-be1b780811b2\\-000000[\\/\\\\]+XtRWf06em0c6N2hrNFHQ6CTUh94\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232940257\\-eb53a0ed\\-9239\\-4876\\-b3a5\\-62f2160c31bc\\-000000[\\/\\\\]+lU4\\-xIpMPXvTU1jwgjGov5wfvQc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923296e175\\-ca876ef5\\-706f\\-4f1c\\-b2e1\\-be5e6d218274\\-000000[\\/\\\\]+rEquVdSom\\-F8DyzFIRwlAW0Zx1g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e84e4\\-46a28094\\-c923\\-4846\\-b84d\\-834f2b093f5e\\-000000[\\/\\\\]+jVHlNvbIMpJ4X9QoNd7pduH26UQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a6a32a\\-520e7f80\\-ec35\\-4113\\-a4d3\\-e7a4657f1304\\-000000[\\/\\\\]+350MaMrUP4N3AW8jFRbd3x76sJ4\\=394(?:\\?|$)" + }, + { + "hash": "d20339ac87e860a646a7ae207a75c015940e3339d4cedfc7797865ca2c445536", + "regex": "(?i)^https?\\:\\/\\/pub\\-20785198c35a4f57a559f8f569be9df1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328663f6\\-5f79e4bd\\-5f9d\\-4957\\-830f\\-153b57edd5a5\\-000000[\\/\\\\]+m7RQgL04j7KNW7yY_wKD9rw8FK4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a5cdc\\-a88eb203\\-4914\\-46fa\\-a5df\\-6f06fd4edef3\\-000000[\\/\\\\]+rfbeBJTFSlvciai9q2vvik_88Wc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923283f5eb\\-9bba1da3\\-0bc0\\-436e\\-9938\\-fde8c4bae754\\-000000[\\/\\\\]+SCgymJWsiDn7HqktbMlMWsEyD0w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ff1a8\\-57527499\\-0d17\\-445c\\-857b\\-783d62e27af1\\-000000[\\/\\\\]+vs0OxjHUdG0zxKpZPOQcGbHC3Kk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232840303\\-70e5d90e\\-4772\\-4f14\\-b1cc\\-236dc1a86239\\-000000[\\/\\\\]+b5Sm4QwohSXpr12jI6NIPehzb2A\\=394(?:\\?|$)" + }, + { + "hash": "cb2962413d5c899dfc81c2363b750bd76d7aa36b3638c1d87732a0df21183852", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pazz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232838cd3\\-4d30db6d\\-22f5\\-4652\\-8ff0\\-a1ae21e8c3fc\\-000000[\\/\\\\]+H34qrUK77r9hdic1g1CTvXeZ_do\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329d8be0\\-cd100f93\\-499e\\-40d6\\-8ab3\\-795905a35c1c\\-000000[\\/\\\\]+kDaA4GUsMfNiQUIdJgnCofbL\\-2g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289726e\\-a76e622d\\-9c88\\-4f0b\\-b0f1\\-05b849215356\\-000000[\\/\\\\]+8cMZpqk\\-yAetSy\\-FOCkmWQiWb1o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923285c433\\-b69199b1\\-bb7d\\-466b\\-a3a3\\-4ebf430c6ca1\\-000000[\\/\\\\]+eHb\\-n9bwaaZJhUIwuftnYKQBtgA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232998e5d\\-f3020640\\-dffa\\-4ab6\\-9a86\\-eebd0cf0576a\\-000000[\\/\\\\]+0NDngvgTUQ2GL2s9A7KRgoJotDE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232adcd0e\\-99a5c3fc\\-8b64\\-4265\\-8446\\-ccb5ef641701\\-000000[\\/\\\\]+pA65K2W4Sf7jMV5Tjxl48SUjR9A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232978d21\\-71d7bd9e\\-00a5\\-4154\\-b6e3\\-d777e3ae14f6\\-000000[\\/\\\\]+BDFpP8KwL\\-xL5y_CmCvVNoauinM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328b2db1\\-aa0a81ee\\-27c6\\-4d04\\-b8cc\\-10a3efae373a\\-000000[\\/\\\\]+etHxIS_XKxwVrF_pYp3mc_\\-2pFY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290b84b\\-99962aa8\\-aa11\\-48e2\\-8a80\\-9eb666e7b272\\-000000[\\/\\\\]+31I0Mc_qY7_jqpBonixoPRaB05Y\\=394(?:\\?|$)" + }, + { + "hash": "42847f32c3e25ffa8eff04f7a8e2c592f36304cb1178e90912a502c7998d54ac", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327d62b4\\-da96953a\\-f795\\-416e\\-9a80\\-ccf9ce039b84\\-000000[\\/\\\\]+Q9_xDWqV2z1T7t4rGOsnMBVGHqA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289f473\\-831cf281\\-9034\\-47dc\\-b920\\-1d5d0e1c7b7d\\-000000[\\/\\\\]+DTHFaSxIR1qSao\\-ZO6XD9DRvKbI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923279389c\\-aba7c7ee\\-e3e8\\-47bb\\-b0a2\\-b80b11c67e24\\-000000[\\/\\\\]+4kZf8dI1UOvv0IeTMsgvrDrRC74\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329d9c88\\-d8db8530\\-db03\\-46fc\\-b4e9\\-6dabd832217e\\-000000[\\/\\\\]+gkSbFiW86APwZNRJkuivZpG02ZY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327b7fac\\-e3451a66\\-169b\\-46f9\\-b597\\-4e21b0d1d785\\-000000[\\/\\\\]+Ob5gVwb167mHWcdnGUyfIRWRvUM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923293e908\\-c650c5ff\\-375c\\-40b8\\-9774\\-23c9d714ca51\\-000000[\\/\\\\]+7GY_FyxN2P3jIK7QtkcNvMjuTxs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232908a49\\-02b6b119\\-c493\\-43c8\\-9e5e\\-c133c30ad1be\\-000000[\\/\\\\]+uzBDSaHNQfSvaO_HnAu3qvIVNCg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923288bbc8\\-c133ec1f\\-a71f\\-43a0\\-9954\\-00d4f8b41576\\-000000[\\/\\\\]+mQ3qCtduTiR6KBJ65Ezb4LP8HkU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e4f66\\-360ac1e7\\-5e14\\-4445\\-88a5\\-916fe9860651\\-000000[\\/\\\\]+eHsu4EhGM1WdhCeWJB8V5u_bmgA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297f16a\\-bcb6512a\\-4545\\-4a67\\-a33b\\-340303e3caac\\-000000[\\/\\\\]+LWPeKRDD\\-uV9Xwls6wtAKsUK95c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232944ce9\\-c84a5621\\-2354\\-418b\\-983d\\-cc2f654d21b2\\-000000[\\/\\\\]+FAhcck3QNBShFguHmO6bTf7BIJg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327f1e11\\-7534de71\\-3419\\-4343\\-9bbf\\-0057625715fa\\-000000[\\/\\\\]+O3GWwOhMskqbQDNPYeLwRsA_iWc\\=394(?:\\?|$)" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+a5ad93bf\\-a025\\-447c\\-b364\\-3079b6930ba1\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923281165a\\-716e0f12\\-7bac\\-44fc\\-9144\\-2f97dfe71ed4\\-000000[\\/\\\\]+294JpquiON2_abgYkjFG8pIiKYk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b8586\\-d4549e72\\-9c54\\-4800\\-b935\\-c7ed1f2f6692\\-000000[\\/\\\\]+yP_NtF16Hta4D0C\\-8UvXICXMv48\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232893662\\-f6850a8a\\-0433\\-407b\\-92d6\\-b628bb598322\\-000000[\\/\\\\]+bLCVLzJISOCndVB40VG3iGnZers\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a785a\\-f7f76739\\-ce16\\-4ded\\-a047\\-cd6a5513f32d\\-000000[\\/\\\\]+0QCyPCLnajbGpPOEG9jWkxumiYQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a7b7b\\-e867c604\\-e7fd\\-4751\\-85a4\\-7d8f3c8ce434\\-000000[\\/\\\\]+Z70K2fbUdkmqFpfag43SK61ymcs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ee60e\\-f87021ac\\-d3fc\\-4c79\\-89c7\\-f0361cd50827\\-000000[\\/\\\\]+J7ZYoDYP7i8c_Po67V8xxVdPYsE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923283df1c\\-f4432a77\\-02e6\\-4e4c\\-9532\\-5442b298e059\\-000000[\\/\\\\]+E2Oq_ySw6bUDwdcQsuIGMr0KElQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329843a1\\-219e07f3\\-132f\\-410d\\-bba1\\-624f06e96dfd\\-000000[\\/\\\\]+uldB2PClaDrZ9IVAWdoYzFPa9eM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328460e3\\-e3b24b64\\-b5af\\-4b88\\-ad3b\\-2fd0308d93c8\\-000000[\\/\\\\]+mqub6\\-hY\\-uyqsyfeGze0_fMvp2Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232889ec1\\-68acdbdc\\-05ea\\-46a9\\-a915\\-9834a2b2f125\\-000000[\\/\\\\]+N\\-kxFJ7d8TUvszJg6e3PtPCyLQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232898492\\-5442e5d5\\-0ad3\\-4290\\-a3ae\\-fcc0026f4b52\\-000000[\\/\\\\]+jHGkX8yrmbYRKG8tK4t7_cJliJc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e261b\\-d09afdcb\\-eb72\\-42a5\\-8262\\-5fb52e44b7c0\\-000000[\\/\\\\]+ti4FDDeHH3f6SjGdSC7ToOIQhpM\\=394(?:\\?|$)" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fortiadc_error_page" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328983a1\\-ecf24631\\-90c2\\-4ef5\\-99f1\\-c46d9733c514\\-000000[\\/\\\\]+ZmJr6rUhIstR9bXjOseUnQRSIYo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923285900c\\-1b08d437\\-597d\\-42f0\\-b608\\-4639c75d4e4a\\-000000[\\/\\\\]+72NSJgaeyTQGj\\-3VNP00BrSefAU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232780977\\-90589488\\-165b\\-445e\\-a113\\-5e79953c9edc\\-000000[\\/\\\\]+yXpzFV8W8PwsRPHLNH0\\-UQjCIfA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329942bc\\-74e3bc4f\\-6ce0\\-4a45\\-9d03\\-7f20e5b1099b\\-000000[\\/\\\\]+M6EfCbgHT7pg\\-JrKePH3b1\\-K2Zk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329f6d66\\-1bf17ca1\\-efd9\\-4ca3\\-923a\\-42c8b9333090\\-000000[\\/\\\\]+aj_\\-NBsz28Brk5zh5_rjKXGGH5s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a105eb\\-a718ee1d\\-1e78\\-4dd2\\-9cc1\\-34e6ab34aab7\\-000000[\\/\\\\]+q5sC1OVrzNMwVaiD6SUSJkFJIIs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327beb9b\\-fc33a57c\\-3686\\-40f3\\-9a52\\-1b4580f45f35\\-000000[\\/\\\\]+G9KnjCL7H6C0kOM7eyy\\-SyqP3Qg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ae37c1\\-a6312975\\-5fef\\-40e4\\-9e38\\-667261cb3228\\-000000[\\/\\\\]+mzkt2R_Yw_4jpqj4pmU7sbkDyG0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232894352\\-b88bc0b2\\-bde3\\-4cd1\\-8e07\\-c2d3f7177f58\\-000000[\\/\\\\]+dL4j7hSRmlx4MFK9zGR2uKIC160\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232904ffd\\-b5d55107\\-bad0\\-4070\\-95e4\\-bb3dee69c00f\\-000000[\\/\\\\]+UYhg0ofs599B6G4KKroi83jvWfc\\=394(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aZ9slGQVkOyqsK57o[\\/\\\\]+vz_qjFKIWwPF(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232818138\\-0b462562\\-3a6d\\-4a4b\\-b0d8\\-170762a5c6d0\\-000000[\\/\\\\]+fsIrAI3\\-3zTJz_1CxyxNtAfxaP0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e9857\\-51a0ad86\\-4eca\\-400f\\-819a\\-7c74c2af2aac\\-000000[\\/\\\\]+SepWwBCr5TnaOeqwRWpVoagIuW0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c4228\\-9584e5bd\\-c3c2\\-4dd9\\-abf7\\-56365460ff94\\-000000[\\/\\\\]+HYdp9XKn0r3XP9sQE3fEIXwAbsQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289f80d\\-14d641ed\\-0cf0\\-4648\\-830b\\-510b7d75921f\\-000000[\\/\\\\]+4i8BbJB_ZayL3ZoZOZx4_WIrYcc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329ed106\\-402583f3\\-c57d\\-417a\\-89c0\\-164bbfca4663\\-000000[\\/\\\\]+ykL9L5XAkECj37zzipsM9pD1Mbg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232978536\\-6518b5a3\\-4839\\-44d1\\-8f40\\-c0597c9153fe\\-000000[\\/\\\\]+LnUekhlk9rYcDbLOj6lb2RNcmZ4\\=394(?:\\?|$)" + }, + { + "hash": "37e43f701f69cab123f12f5a6b03d33decdb967d526a8c672f210e006650578a", + "regex": "." + }, + { + "hash": "98cd0bd5f76ca083e2437e7c0d6a77d1e89fbadd2279604d0839cb3c47320215", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284f9ba\\-70383b79\\-2bc9\\-4f5a\\-9949\\-fe8c8b7ba881\\-000000[\\/\\\\]+_oD0i5465X4ukcHQx\\-zMLZHur5I\\=394(?:\\?|$)" + }, + { + "hash": "93c1bd9f1f0d6fd8396a3a4eee5ed850838a806a79b6e2c3773a0192ebdab64b", + "regex": "(?i)^https?\\:\\/\\/f440a41884971235815a7b826aab519b\\.serveo\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "c955f1ecd9fad025100f09de2e912e960ee7387318aea111139b8f36cb7b17fa", + "regex": "." + }, + { + "hash": "ec18b5c380a7e144c7ea5788821f5ebd6230ebeef2614faca3ae7393eead3185", + "regex": "(?i)^https?\\:\\/\\/sseagle895\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923298eab1\\-0c56e659\\-7d5e\\-4d35\\-986e\\-988d622f7a1b\\-000000[\\/\\\\]+td8lKnqMD6rBoeQ4lsWG0sOqQS0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290a5ef\\-1bf22ada\\-2681\\-45dd\\-9191\\-81dc4ef68c80\\-000000[\\/\\\\]+I1Hg19y9didUSUOfPSgsCuX\\-5ec\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232974048\\-5f773039\\-4795\\-47da\\-8f91\\-b86d8b52192a\\-000000[\\/\\\\]+WZ5grhLhBXxLaj\\-6k0mYH8e54jQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284cbec\\-73725be7\\-6351\\-491a\\-95df\\-24708b554db4\\-000000[\\/\\\\]+ZzoamxzjFnMxe5G1pgvaOKl2Ob0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329d6d71\\-a3815c04\\-9e5d\\-4191\\-b14e\\-db8792bb07f9\\-000000[\\/\\\\]+gXd8ZFGSD19BrbOwlJcM92CZcKY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232926aef\\-97e07049\\-5181\\-414a\\-9731\\-6cce03e3deee\\-000000[\\/\\\\]+N6s0yZ5FizhBa5U_PmkrodUYlRc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a060c1\\-74f1af17\\-4405\\-416f\\-8ab4\\-1992e3815319\\-000000[\\/\\\\]+8HaTT\\-oGqYX4jkvKjwuoj2Ateuc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328d06b8\\-2122e2ba\\-e65a\\-465e\\-88e4\\-49c90d837b12\\-000000[\\/\\\\]+KPznbqVQOqRpsrfZNOlCQqJVrXM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329d6826\\-b8e758f2\\-8b9e\\-4313\\-8451\\-09c178afaca8\\-000000[\\/\\\\]+cYSVKVI9HW8f8h6D0LQ9X05FFoY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328684e7\\-f3cefc50\\-e88c\\-4c48\\-8f9b\\-093713ffce4c\\-000000[\\/\\\\]+Pf5gTCdCNr\\-Tqq3qQG8CZGfH7T4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ef1c6\\-df8417f3\\-d7d2\\-4c4e\\-8345\\-8cd8beee6deb\\-000000[\\/\\\\]+YnxAG94x_toL4Gd0QXJDDX8dIZQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232972d61\\-f19173e2\\-9ce6\\-4e31\\-9307\\-f29a49eb8e80\\-000000[\\/\\\\]+UM8c1R5hLAXF20aGyi4CrKtZgPM\\=394(?:\\?|$)" + }, + { + "hash": "03405abdcaf70e685f28b840f8c14fb428421fd77abbef3e840ec64935c96615", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328bab9a\\-0e7a6aca\\-46fb\\-4de1\\-b84f\\-0f56d42fd240\\-000000[\\/\\\\]+Rwi_ar0ecJ7VJGSbO6iC6nj6v1E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232845034\\-72c29039\\-eed7\\-46ae\\-add3\\-5a3e67602ea5\\-000000[\\/\\\\]+W9T4EuMjbuc2XCa0jBwcqTpPY84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328bbb5a\\-3143cde3\\-df29\\-4cfd\\-a835\\-52edb37c0d34\\-000000[\\/\\\\]+gBasid5RbEeqk6KMDNpFAyKKWFM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232837918\\-e7b42248\\-c9b2\\-49ef\\-886e\\-67c32cdb7a3c\\-000000[\\/\\\\]+o_8PRnEYE37KFL1THe2SppXRxEs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a80e50\\-c9479160\\-3790\\-4ce3\\-b8bc\\-f78f23e7bd3c\\-000000[\\/\\\\]+ExuJ9V8rtlb15N1DnXH7m61mSHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923279e30c\\-4cfd00e5\\-408a\\-4b79\\-89ad\\-a191c2a65b83\\-000000[\\/\\\\]+rkMqceJYVca8NEhyH_r8depL7qk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a63af\\-19a8dfd9\\-2000\\-472a\\-8fe5\\-4c60949f4a8c\\-000000[\\/\\\\]+5o2EpBPj4YciXi\\-2Si8RPvzRDkg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327889ed\\-56cc585e\\-5014\\-46e3\\-a730\\-953500660894\\-000000[\\/\\\\]+lgIBh65a8JGSQgdVrU0OTbcD4xk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329862ee\\-fa96050c\\-848c\\-439c\\-af28\\-e392362d9e4e\\-000000[\\/\\\\]+6qu_C1J_rTqZ\\-PO0jCClzCti1JA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a13f5\\-2334ff33\\-3df7\\-419a\\-bb21\\-bde7ee1fc51c\\-000000[\\/\\\\]+mZURx6N2sis_ZJ4f\\-t2agAB84Fc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328b5c4d\\-f9921c0d\\-567c\\-469c\\-9354\\-dcea484bfb22\\-000000[\\/\\\\]+D4FsEDkNlmPKExmhj_sm\\-AdvqE8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329492c9\\-4b18ff25\\-c3b0\\-4b7a\\-a110\\-11cb160ddf75\\-000000[\\/\\\\]+AcKuyzovU\\-KA5SwE4e_cF5_sn_Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327bbf30\\-1be458d8\\-0a69\\-4a54\\-8b05\\-7eb7b2da7a3d\\-000000[\\/\\\\]+H4kfHFLSO91M7BiC27CpaMzjD7A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e0ab4\\-fd40424c\\-bb72\\-4caf\\-9828\\-8fca676aaac7\\-000000[\\/\\\\]+zVh02DvffT3ZiFJwSMvYkVdTTJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328fb6d4\\-adf4d9d7\\-b35e\\-41a3\\-8a21\\-a2f024eeb781\\-000000[\\/\\\\]+uzmzXfOsJFvFF5h1MQhvraZSzXU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329f2964\\-1b9dc00c\\-1b60\\-42e9\\-bfe5\\-de02bb3c18e6\\-000000[\\/\\\\]+QQTKkiEU3kaFZoppuY_N4Iq\\-oKs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a04a6a\\-f6402998\\-854b\\-416a\\-8d37\\-1db02f0e16ac\\-000000[\\/\\\\]+nDdJiEjRTeU\\-rHcLD_axjcQILl0\\=394(?:\\?|$)" + }, + { + "hash": "4b03dab9a2ec94cffd8b9b19e47b64edee5008021e0c65a61d8c57786dda8205", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232994664\\-8b65a823\\-ef47\\-4548\\-8e0c\\-4c32fe7eb5eb\\-000000[\\/\\\\]+WKVsr8HmgQ4H2Vhx9_S_AEwewtw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327f0f76\\-986e80a4\\-39b2\\-4eb3\\-b0f4\\-bb0951ff106b\\-000000[\\/\\\\]+p64KrSgNFSWDzVRpnmHuEkWAABQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b3a3e\\-9d9965ce\\-0a96\\-4e40\\-8283\\-4f612db4a648\\-000000[\\/\\\\]+3g1vgZHSkSH\\-DFUPeeUSBwxQl9I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923288f97e\\-82424587\\-917b\\-42e0\\-a3fd\\-e409e83860ec\\-000000[\\/\\\\]+vYQoK7Kvif5PvfWxAQxMfrKrx_Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c52db\\-ac326ccc\\-64a1\\-49b6\\-9e4c\\-36ad87054c0c\\-000000[\\/\\\\]+yK\\-FhjzDi044E4vu_5W5E8zX3Ac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232812d76\\-ddea9e68\\-2edd\\-40a0\\-83d8\\-2e92d61f1b8e\\-000000[\\/\\\\]+YZFqyuQj5vD\\-yoIxF6KS6uFzYMA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289fcd7\\-19143c5c\\-447a\\-4800\\-9d76\\-2473e952885d\\-000000[\\/\\\\]+pZR5WeumOo8CYwGHcVi8MHooiI0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232af1bd8\\-17b58aaf\\-03af\\-4e0f\\-8f02\\-62938990d278\\-000000[\\/\\\\]+PO11L8jt4pH1RVzTq7kaGQdUy3s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232846c7f\\-f51d0593\\-e718\\-4e71\\-a784\\-258ce0c0c038\\-000000[\\/\\\\]+U4RYVGtekCUzRvgxL0cx3Aue6fY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b3f98\\-4ea2dd32\\-6650\\-4f25\\-ad0d\\-abaf1e671da9\\-000000[\\/\\\\]+KuDPhz8wVr6CZj7c6hdVH42CDrI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923277f8c5\\-1d07b4bd\\-5f7f\\-448e\\-bac5\\-db250f19f87f\\-000000[\\/\\\\]+OF\\-XtZgQjVWlP6Qy_MLuqIN60Uo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923299f4cf\\-27d758c7\\-6e48\\-44ca\\-b45b\\-34399a215ca7\\-000000[\\/\\\\]+w01YtYuVU_Tly4TLTIHBQFX4k8s\\=394(?:\\?|$)" + }, + { + "hash": "e3bb79e35afcd5a186d05b7c846f3deda2844c78387757ece90abbc9c12e3679", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232888096\\-de9c9be1\\-280a\\-40b8\\-9219\\-0dc3bc32b047\\-000000[\\/\\\\]+hCcf3YGbpiBGW0SOyqCFZ7BH0h0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a6e7c7\\-6ac70b15\\-0d2b\\-47f4\\-bb89\\-79f0de32a980\\-000000[\\/\\\\]+DvWrnVuSspbf3ZUz6M1vbp9psB0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329463e5\\-fa27c176\\-a779\\-43c9\\-944a\\-4b0d993e0615\\-000000[\\/\\\\]+ji4Bzfc6yI_PWFHN6evkEv3bjfg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232780317\\-fddf2a16\\-05c1\\-49a9\\-8324\\-a074d189f1c4\\-000000[\\/\\\\]+InjmG8gKRDCHYrgVF76ZCTUULA8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232892df5\\-65e1e87d\\-d8f7\\-486d\\-b0ff\\-4265ae370540\\-000000[\\/\\\\]+jIvX20sMVkoUlI1v1NtmdtKhTxs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329af9f6\\-de71079e\\-dfc2\\-4aec\\-8675\\-ca9d9833b2a9\\-000000[\\/\\\\]+wB\\-0u2WEFyxKVV3jpPuWlgsowN0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ecaf3\\-945ef1aa\\-86df\\-463b\\-9bf5\\-dc4fee1e6480\\-000000[\\/\\\\]+9La6\\-ze8MxPP7jjPk6Gy7E6NVG4\\=394(?:\\?|$)" + }, + { + "hash": "141926f5fa283e95a3c30084a0eed6f116568e594297de8341f8938544c51c5d", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329ba66e\\-6e2b021b\\-3489\\-4bad\\-b82b\\-55a4ae543e53\\-000000[\\/\\\\]+dhz55tE16s9AF0WlGPc2b8HQzfA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289553c\\-364af174\\-d228\\-4336\\-8148\\-c28632a13f77\\-000000[\\/\\\\]+pHmmOWNahaRSPZa2yrweJOdROG0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329dd47b\\-ae2b9c1d\\-85a9\\-4c2e\\-ba13\\-29308479cf54\\-000000[\\/\\\\]+NpPNNd\\-sbXz6lBLPq4CqfpOvzyA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ae1b11\\-ae309dfe\\-6668\\-47c9\\-a9f0\\-62219f63cdf3\\-000000[\\/\\\\]+3aK8Fjv9650H7YVtKdNMQBdUZqE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ad7e26\\-8b24211b\\-527e\\-4374\\-9e68\\-0164cce498c8\\-000000[\\/\\\\]+01o8WRttAZrkylMwnWbTMibdx\\-Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c900a\\-53355632\\-42a4\\-423e\\-bfa2\\-7c647c8629a6\\-000000[\\/\\\\]+ugtfVgot9DMHsC863wuv\\-cVxf9M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923281c62b\\-d723cb2d\\-0d5f\\-4779\\-bad1\\-02aa2ab2a5e3\\-000000[\\/\\\\]+eHdZ4rWvJ3Qm9MNWwX4141ZPTRo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232911d0f\\-89af3b2b\\-5144\\-4595\\-8201\\-9a654c2394c1\\-000000[\\/\\\\]+a78roEqkqTDR7b0fmQwqTc8gVDc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329053c8\\-d7ddde83\\-2e82\\-4a5c\\-b750\\-d9f24cb6d812\\-000000[\\/\\\\]+cx4uxNb8sJCxn49gy0aUphl7Tmk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b736c\\-cee92324\\-f9fb\\-47b3\\-8cb7\\-a34852a7f1a5\\-000000[\\/\\\\]+h8TsQhNNsQvHu6cQbydZwvcHHxo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329ecb40\\-44a18fac\\-b037\\-480c\\-ae72\\-ac7562a98f92\\-000000[\\/\\\\]+xO1v6EmI6y7WzryKHJsDs8SNLR8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232947ec5\\-f52955d1\\-dfec\\-4129\\-b8c0\\-8b66c4a92805\\-000000[\\/\\\\]+ZHjchAYohimXo50m3ZmjLLlwyhE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232939861\\-ffd97081\\-b468\\-4817\\-a1f7\\-ce273e3b093e\\-000000[\\/\\\\]+yeaEF0jX\\-Vi19A3DgflCfburoLM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923286770b\\-0619e4e6\\-497d\\-4e7a\\-8010\\-e964d813b7ef\\-000000[\\/\\\\]+QsXMP9b4vXu0cydPX60PQCp0IUU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232aaf21b\\-1b6b10b2\\-2400\\-40fb\\-b67e\\-0a950c73c7b9\\-000000[\\/\\\\]+H2TDSfm3GUAmVOPjWKNc4nhj0hQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328977bd\\-8ae59be6\\-23d5\\-426f\\-88ef\\-14b11689bcc7\\-000000[\\/\\\\]+GIG4qMhMY51mDwhAL4yBSoDv0fk\\=394(?:\\?|$)" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+a5ad93bf\\-a025\\-447c\\-b364\\-3079b6930ba1\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329283ca\\-cf225c12\\-fa32\\-4882\\-934b\\-5838a9f92a99\\-000000[\\/\\\\]+SZlaZJh2eREbzhzf\\-EKiIy5Kvz4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232977506\\-cb283c79\\-645f\\-4f4d\\-8d74\\-42de77eba3af\\-000000[\\/\\\\]+pVNb_ekohG5Bu9xh7Z85pJad_Y4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923293aa3b\\-a0d5a55f\\-1272\\-4f2e\\-89dd\\-001ad561008e\\-000000[\\/\\\\]+Bc4N_b6S72vIvEJZjREBFHGwbEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327e63b3\\-99432f83\\-ba77\\-4da8\\-b335\\-cf569e73e006\\-000000[\\/\\\\]+hpxvtWiGTTaSm\\-PBZwqTzT\\-Ek\\-c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b9396\\-5dc735f6\\-7def\\-467d\\-8cfb\\-571f0b3930dc\\-000000[\\/\\\\]+P_WM3GouvYD5y6Fu5hlVwVrctRk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232949885\\-51bf1d31\\-c3e8\\-42bb\\-9c0d\\-0dabdd9357e5\\-000000[\\/\\\\]+te7epCojCmtEgHUWBYC137aNQ2Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232938077\\-bb7f6feb\\-eb74\\-4b87\\-9b86\\-9cccd6f1888b\\-000000[\\/\\\\]+jfHIhoJ37SZLMipZpsLKMsOISI0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232859b87\\-1320d5a4\\-5e48\\-4cec\\-ac8b\\-e3c45b68832a\\-000000[\\/\\\\]+Vxl9pbbfGUdbk\\-sW6NwyfjCr934\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923283fa18\\-62257e73\\-f5c9\\-47be\\-a6e8\\-493d6aa07d7c\\-000000[\\/\\\\]+l1ef4nUMjWfbo05ij1qMlJ5IqxU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329ecc3c\\-68275bde\\-21c3\\-4ea7\\-a826\\-d4021e7019cc\\-000000[\\/\\\\]+yShaUbdpn0hmqQrI4oj689W5aL8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923294eca3\\-613986c2\\-4870\\-4900\\-bca9\\-f2b51ecf1a2c\\-000000[\\/\\\\]+5wwEtdOt4w9J\\-_NU9o52Jc8X2Z4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327804a4\\-e7d149d8\\-0040\\-4654\\-ba6b\\-43a86ead1964\\-000000[\\/\\\\]+pi__xMETo23iDSqw23cYYlVGAPw\\=394(?:\\?|$)" + }, + { + "hash": "d515a3214ffb55afb4ea8e71c131f94a0996dfa8ee0ad9b2c596285e644d69ba", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232909342\\-a45c8e73\\-0abe\\-4401\\-a651\\-eb7fbf402666\\-000000[\\/\\\\]+pnKELoMqXdwu583Kh04Ao7NepwU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232807e38\\-99b5fbba\\-1ba1\\-4015\\-95b9\\-b69b04d0ffcf\\-000000[\\/\\\\]+cr73xrCJqmU5A8ys_6SeTuDPaBw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232904f70\\-eb40c86d\\-fb7b\\-4afd\\-a9ac\\-2ca601ad5c42\\-000000[\\/\\\\]+KzGrluj0sytlIFK0Qb4vhVoi4u0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297c506\\-d7b83e94\\-19af\\-44c9\\-a17c\\-348c81925b10\\-000000[\\/\\\\]+63ipay1MnfxjqiUgV_Kvtd\\-SJuE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923298ff87\\-0b96f8ea\\-400d\\-44b2\\-812e\\-c512259fb863\\-000000[\\/\\\\]+4Uayv0ngYFX_hHUhcde4G5pQhbU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a69100\\-113dd9e3\\-7b8a\\-4b3a\\-9bef\\-6f71d6fe03e9\\-000000[\\/\\\\]+A7awLId44IUuQCEjyJzJureWQ5w\\=394(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aZ9slGQVkOyqsK57o[\\/\\\\]+r1qP6oQURPM1(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232805286\\-0a65d427\\-c80a\\-4823\\-9828\\-1479f6542658\\-000000[\\/\\\\]+nR3XrS5A7GjL7IaqjvWYrl38bng\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a6e0e6\\-c5ca78f5\\-4bce\\-4f20\\-a4fd\\-11db4a79a959\\-000000[\\/\\\\]+\\-W_0q\\-kNXikjGCQ6Z2RximDFlLo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923283e1ed\\-75fe1cf0\\-74a1\\-410c\\-891f\\-2d667c1be3e3\\-000000[\\/\\\\]+M_r4S4VDfYsKbdKtHt_Omm0HlVA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232885370\\-3aae1b1c\\-7270\\-4b40\\-84ed\\-6470b11a1f3f\\-000000[\\/\\\\]+RTjEUNp2f4v9_QidoeTMIacKjws\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a04838\\-300690a9\\-7cb8\\-47c9\\-a7fe\\-cdab6f6c0718\\-000000[\\/\\\\]+BsuaAXKwlA4iB2RF1zcY6ssOJ_Q\\=394(?:\\?|$)" + }, + { + "hash": "e38f90fef9a3bd617029a1549cae134109ab7edb42e015543b1a37f65eb87fd8", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329d4085\\-416f3ad0\\-8818\\-4f67\\-9486\\-d8c8b89e7735\\-000000[\\/\\\\]+fAVEdKIfoXxxJON5fnX4xqPfSLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328d148f\\-aabe9ddf\\-0a5c\\-4cf5\\-a252\\-3da89b871574\\-000000[\\/\\\\]+K8U\\-56\\-Bi9Xr5qMwGyujfQxy\\-c0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923281bd4e\\-a8c586bd\\-9d5e\\-4837\\-ab35\\-06ad38fb93f8\\-000000[\\/\\\\]+J13_jAMSmAwJEuwsWJFN5aMPqiI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ed8ff\\-7d72f281\\-ec46\\-4a34\\-bacb\\-ae8577c1c60a\\-000000[\\/\\\\]+rFms9vrYjEEVdGR4AS8P8R2WyJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329ef1b3\\-b50ea28d\\-d3af\\-4fec\\-9c28\\-409cdb426a96\\-000000[\\/\\\\]+nHr3MThSNIPNfYTDeJwUAB4jzv4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232946c2b\\-f596e72c\\-ad7f\\-485d\\-b840\\-60647e752f07\\-000000[\\/\\\\]+GIRliXTmOO5VhMGdeZg2Ye7fXWA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a11d10\\-c34f3fc4\\-4ade\\-48be\\-9d42\\-6c413a49b03f\\-000000[\\/\\\\]+y8VzX4HPWpjyT1RdExrMirdB1Dg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328105c7\\-dd083b78\\-a7c5\\-4c7d\\-860a\\-c6cd47bb5b42\\-000000[\\/\\\\]+9wpEyyuh_sSAPrk3nF2T0glXHhg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328690ad\\-600ad0b6\\-9c20\\-452b\\-9a8b\\-6e91fd07c90e\\-000000[\\/\\\\]+s1NSHo6ONgOVyaNOVWMaJ2TfczI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232846202\\-36b4ac3e\\-e0aa\\-4d59\\-a0ed\\-992168f5bc95\\-000000[\\/\\\\]+kud\\-ZSKrh6EPs94QyquiZoD4tQ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232885b34\\-c998ff29\\-c669\\-4d24\\-837f\\-d9ae402549d7\\-000000[\\/\\\\]+UKPhX09W0e_aN6YyUD8n\\-XYHJVU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328b02fc\\-696ebd69\\-9979\\-432c\\-9025\\-4ebd05ffe954\\-000000[\\/\\\\]+Zfwp1_HxKuACY4YJTWL0ud7O38E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232850a58\\-34b4ce91\\-bc14\\-4fab\\-98b6\\-20cbeaab183d\\-000000[\\/\\\\]+OpzY7FYwhyaWd86ArswZ_X7npuA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b8531\\-90a3e581\\-3c52\\-4c22\\-80c7\\-559a78622701\\-000000[\\/\\\\]+D06jacCoonuNeEObP8liSkt0f7k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232798e87\\-d558af30\\-628f\\-453b\\-827b\\-659d5a3529b7\\-000000[\\/\\\\]+saNJCGaIlS_2gLO2ZZSguU2i_NE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297a016\\-1e296706\\-5bf7\\-45ac\\-a92e\\-fb7cda5118a5\\-000000[\\/\\\\]+JUhe6MtGwqMVOmIx6JUHnYhAA1I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290938e\\-4b485071\\-3de3\\-497b\\-9841\\-74590673f5d5\\-000000[\\/\\\\]+p9ES\\-BOMhcEFXhp2MgnOFzm7xAk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329caa25\\-37f5c3fa\\-34c7\\-4889\\-bb7f\\-cbf7bf8b080b\\-000000[\\/\\\\]+lRwjJJy0KIh2EMohzYmlZJnFq9E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328eaf73\\-c556f060\\-2b1c\\-42bc\\-915a\\-dd670a01c562\\-000000[\\/\\\\]+\\-9akJrXQugpNJCUrZXuCxttrbjA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a64370\\-edfbb7fb\\-2c27\\-45c9\\-bf22\\-fb6376e298f2\\-000000[\\/\\\\]+BAkKN2HiejoLYIerEpOYUwVQt0c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c0256\\-f4744774\\-7540\\-4b44\\-8f08\\-b471cda1a1f4\\-000000[\\/\\\\]+19187gOOgBZroKunoMazljEzsXI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232948791\\-f5c043fd\\-1a9e\\-4d65\\-9ab1\\-846701c31c7f\\-000000[\\/\\\\]+ToWKRf59ua3FwUeEG6p8bCIb8eQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a3a33\\-6a703ecd\\-82e8\\-4c80\\-81b0\\-eae1d7f472f3\\-000000[\\/\\\\]+zERS8Hip1Xony5XcYKJZUwgCKGA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290b3f4\\-76d78db0\\-f0e9\\-44ee\\-b897\\-83c26f2735b4\\-000000[\\/\\\\]+i7mHj6dJH3EEOfmspLtNodvkUwk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327c1eda\\-fceff772\\-cea0\\-49c1\\-95f8\\-0a4eaecd7f58\\-000000[\\/\\\\]+hM3X63O6\\-jfJzrOZUAObSMnY\\-yM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923281be34\\-7fe6e927\\-77c5\\-4223\\-9c23\\-9505c4481390\\-000000[\\/\\\\]+g8SVR5tLZID3UctDpFIEm189oxM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a928f\\-2039e200\\-2043\\-4b63\\-8425\\-cc884f0c5cf9\\-000000[\\/\\\\]+ewBAjnZS98VsOnUXN_iPmB0Kt2o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327b8849\\-460c6936\\-3978\\-4315\\-8691\\-73a477d21dee\\-000000[\\/\\\\]+aEopnFI5T15hayU\\-ogn_ayOPscQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c98ae\\-d8ed4705\\-f7cf\\-40dc\\-a60b\\-95d97eb08f10\\-000000[\\/\\\\]+5STb5EWSOI9WM\\-vrsNPOE9QIfgk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a86e3\\-16b65304\\-4955\\-4e6f\\-9182\\-2b0189727d9b\\-000000[\\/\\\\]+EY0fjrzAwXOjaG_SfeWCymh56nc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a77cc\\-3d94d6e2\\-ff9d\\-43f3\\-a61f\\-cf01b93eadb2\\-000000[\\/\\\\]+dPi2zKP5vVDFa465ZobK2VWizE4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ab9785\\-a4f8bdf9\\-a68b\\-4b57\\-8205\\-38c0b41be146\\-000000[\\/\\\\]+QmrXXMg0qsm0dLwUBI3JTNFg7t0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329cc35d\\-1740e3dc\\-015d\\-4913\\-8191\\-d1dd51efacb7\\-000000[\\/\\\\]+zENvZZb\\-61hZObIr_403T8LUltk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232949e1b\\-ea2530f1\\-2e6d\\-47a9\\-98a9\\-e571e9913328\\-000000[\\/\\\\]+O9dadU4pZvFjLSkz2MHJjG4ye14\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290df37\\-494e7c4e\\-064b\\-4092\\-a206\\-f6828da233d6\\-000000[\\/\\\\]+viaGoY4CT1OgOh399CxtwHWbgEU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329aa893\\-4adb9031\\-a3fc\\-4634\\-b4c3\\-849abb23775b\\-000000[\\/\\\\]+Y88qIoXEspdlgC5vqNLAO6LaExE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232847d23\\-b25acdeb\\-56d8\\-4c19\\-a057\\-88c9ee4da747\\-000000[\\/\\\\]+fKLeBNbo3Mtr4eeI9abl2aHHOhg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327efee6\\-51a4caec\\-809d\\-488c\\-8941\\-5d4eabc2a839\\-000000[\\/\\\\]+foCYxVPtC6oytTqiYRlIGj59v\\-o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327c4c13\\-8e997510\\-ee4a\\-4360\\-b5b1\\-f5fc0a3c2007\\-000000[\\/\\\\]+DijZnPk_3yMiL9j_pjq1TgadjoM\\=394(?:\\)|\\%29)(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232867031\\-fe9f5b13\\-e68a\\-4e45\\-a743\\-b28de66bbf16\\-000000[\\/\\\\]+0wTwSYr3cR9EFMh_LJ8OoCKqFDQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232887a9a\\-e518c4a6\\-c6db\\-4847\\-a3ec\\-3321193d0108\\-000000[\\/\\\\]+GHBqUCLXk7zTivduQLiiqlV_QvA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923293c9db\\-a75a0bb1\\-f0b1\\-4792\\-b64a\\-8cf558268e52\\-000000[\\/\\\\]+Ey08iFwSvGXXYhFu\\-6aY\\-oBf\\-zs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329df67d\\-5f08411b\\-5f39\\-4761\\-afbe\\-fd3b3d37a1bf\\-000000[\\/\\\\]+GwqcyExWBE5qi6E6F7KOydY978s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923287fba8\\-7f47d4d7\\-f1c8\\-46e2\\-b539\\-087171023cc2\\-000000[\\/\\\\]+fqE_dkONIQfjWgNMCz04mOwmmGc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328f2a60\\-cae478a8\\-69f0\\-41d3\\-992a\\-2ebca358ca76\\-000000[\\/\\\\]+7KwkCj3\\-w8yTIzXiv8Vz3I_aXUA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232911641\\-9bccb209\\-6272\\-4e50\\-ad29\\-c583b0b991b0\\-000000[\\/\\\\]+HLYo1UXwps7SYV3CYBvk_tlOi88\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232898aa4\\-b330683d\\-503a\\-4d32\\-9500\\-0b3a8e2b4770\\-000000[\\/\\\\]+UPcNaczr5zWnJ1D5u3M9XrfvN0A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329d8b4d\\-37e487a7\\-be9d\\-48f2\\-810a\\-05e1c8c74aab\\-000000[\\/\\\\]+PVgpR0P9YuzrNnQPhvpx8nipvZo\\=394(?:\\?|$)" + }, + { + "hash": "cc015f1b7e0a38a748e3e07565d8314d8382ecc0fe7486cbc777d01c32a238aa", + "regex": "(?i)^https?\\:\\/\\/webuserservice\\-accesss\\.my03\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "860a198e2a53b3491245ff4a93bcb1e316338978eafc4e206869f4c43a38c967", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ac43b\\-6b78d237\\-11a6\\-4e3f\\-bf9c\\-f22c1983de2f\\-000000[\\/\\\\]+IFojpSvhdSy9WIWYAFc9bLlWQLg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c900a\\-9134a701\\-167b\\-429e\\-9f6b\\-86d0eac84ca3\\-000000[\\/\\\\]+kitFHNXgxLkRclcENh_CrPD\\-Kog\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232849686\\-408a33d8\\-a0e2\\-49a4\\-bc48\\-6697a5c0794c\\-000000[\\/\\\\]+Bsj6CENIEPy2s2RhcEnBZkhRY0g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923285e90b\\-c8ebd330\\-7601\\-403d\\-859a\\-eee0b066e40a\\-000000[\\/\\\\]+qbYPA8V7koM5YxkFoPlDf5zOh3s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328569d2\\-cdf6b212\\-11d1\\-41d0\\-a81d\\-4b268c903ea6\\-000000[\\/\\\\]+Wu_TxYi4IxDOEZoHDg_YCt4_Zmo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a68ec1\\-58e3a613\\-2b88\\-4d8d\\-b35c\\-aeb64c706315\\-000000[\\/\\\\]+sqQkZUtzXa56jOA5aTvOJsVo1ZY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289ce2b\\-aa08d3c4\\-8bcb\\-443b\\-bcdd\\-d9f67175c276\\-000000[\\/\\\\]+6RQHI5isqWDu3HRltyZNVXh9xl4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ab2837\\-83ef9875\\-eebe\\-4fad\\-b100\\-ad3ec715bc98\\-000000[\\/\\\\]+_mJUWAjoDL0hfW0A\\-hhlFp8aK0o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232797252\\-0ed7e999\\-34d6\\-47a1\\-a9b9\\-5de7f5d58ed4\\-000000[\\/\\\\]+\\-K61nnBB2Ou32C2pTDK7qYK_hUo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297d648\\-d2b3986d\\-5856\\-4079\\-960e\\-28e82accc7b6\\-000000[\\/\\\\]+YL0oFuem4_EtfW9FJ46yfCV8DHA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329bab86\\-b947f6af\\-62fb\\-4921\\-8a68\\-b1bcf6b1a85b\\-000000[\\/\\\\]+\\-FFPXORS8Vi0TwtQQbnx85HCAQU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e001f\\-19436108\\-3deb\\-40af\\-8ac5\\-793fbc0e8dc4\\-000000[\\/\\\\]+GKinQAAq0xmRk4ONfbBMheAozDY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290b769\\-1bde6f57\\-bb5b\\-486d\\-92fc\\-09e3bf585454\\-000000[\\/\\\\]+k\\-pIUYM999R3JUAaO4T7dkdwYV8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327eece9\\-07df9332\\-71c9\\-4161\\-9ebf\\-71f8de5e3119\\-000000[\\/\\\\]+\\-quRhHQxyLgDhNii06vvoFeXz30\\=394(?:\\?|$)" + }, + { + "hash": "5dbf45c84c8cfb0e4873fa32ca6670f4756eb21561ef28d6a17b6cf5572e6aed", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232aea96c\\-42c6ceed\\-cd4f\\-4491\\-879a\\-2811967d1b69\\-000000[\\/\\\\]+zSDSzRuANaeTa6RxnJp6l73flKM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327bbedb\\-b15f7d0b\\-d25c\\-4c5d\\-9de0\\-19dffc8a9a00\\-000000[\\/\\\\]+CDbzRHtim\\-aI\\-13ygPX5SQQw7xU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923281e646\\-f8dbb32a\\-b860\\-42ce\\-86cb\\-7c342fa1f6a6\\-000000[\\/\\\\]+OipzbeiU8vYzhtKQRp1Y70MX4Vg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b1edc\\-5eeec6f6\\-cbb4\\-45f5\\-b436\\-0b63a726c0de\\-000000[\\/\\\\]+lfsbsb1tcA497p5KYrTd6i85Hzk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327d6f2c\\-23305c71\\-abec\\-4ad1\\-8c23\\-6d3ce1c8392f\\-000000[\\/\\\\]+9bwuZQUTDWqhZaUo4zMiXtqWbyg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923294932e\\-6a5ccf65\\-d140\\-4aec\\-a407\\-fd9eb817b323\\-000000[\\/\\\\]+r_HFGntEqerRnb55iMNqaqE0RXA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232896270\\-79726840\\-6d78\\-46a6\\-a31d\\-9191e6ca7ed9\\-000000[\\/\\\\]+0X7z7uNmgBYZIfTlUuf\\-U5dFZrQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327e688d\\-483f84a3\\-c7a6\\-45f6\\-b3dd\\-00a6d4205932\\-000000[\\/\\\\]+JNvSVDAV36yixE4xICUKBjoZHGQ\\=394(?:\\?|$)" + }, + { + "hash": "78ae40fa503efd280d6b8240f35cf2f1178f93b9e53c7e2b845a77f5a353f387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+24[\\/\\\\]+votings(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ab8f1\\-ddf461b7\\-88ae\\-4c11\\-8337\\-10059bbc2bb4\\-000000[\\/\\\\]+Mij98zp4CqQhva1Ei0QK9er0GP8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329746e4\\-483b5c84\\-2e7c\\-45ce\\-8f97\\-7ef488a8e749\\-000000[\\/\\\\]+rEoaq04gvwTsvWG3eYZQc4OV6yI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327c5581\\-998c8035\\-4560\\-4802\\-a604\\-4d2d53311361\\-000000[\\/\\\\]+dxDiY7rJXXahyqfGckcPSUfvF4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327b5834\\-1ce12d20\\-4cbc\\-467e\\-a650\\-d00edf71a22f\\-000000[\\/\\\\]+kcCYefo9aDQkhBH4s8szoMAL3qs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329ea519\\-ad3bd8f9\\-fd12\\-4dec\\-a55a\\-ce4bcbb8e57e\\-000000[\\/\\\\]+8u7nkDsKM3Ep3\\-SKHXyLCSV6g3I\\=394(?:\\?|$)" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+amendes\\-gv\\.codeanyapp\\.com[\\/\\\\]+fr\\?e\\=$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b1c2d\\-07ee63f9\\-2171\\-4035\\-ba93\\-fdac64766f55\\-000000[\\/\\\\]+XU3ezvNDKLkCkq0xObX1LmwRpBY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328df9f1\\-84d18b89\\-cbcd\\-4fa3\\-be86\\-9f01fcf4cf61\\-000000[\\/\\\\]+KCF8fFBRJqMpvpb1Peif5\\-ZAhmo\\=394(?:\\?|$)" + }, + { + "hash": "e96d4692cd80f966191c9b2dbd07bf7c2183f7c8dd5744f9d562639dcbdba260", + "regex": "(?i)^https?\\:\\/\\/aru\\-25469ba\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297aafd\\-c673f653\\-eaa7\\-477f\\-b304\\-6da3b2d80c50\\-000000[\\/\\\\]+jFYImatE_At4zqDb2T2oMXiSiPY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290d455\\-cb4151be\\-357a\\-4a2f\\-9473\\-70aec89b1610\\-000000[\\/\\\\]+U0n_biWXk5MbT9RL3cDQDsXiJDM\\=394(?:\\?|$)" + }, + { + "hash": "c14adf13d5c8cf55e549ffe85c32a04a0fad692d02eaf02f75e5929315abbb31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fortiadc_error_page" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327e9174\\-1bf769de\\-ff25\\-4bbe\\-8721\\-5f94346b08bd\\-000000[\\/\\\\]+peiP7UU13CnENIUT8IGrM5A\\-Mm8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232785cd8\\-c90dd181\\-2c0c\\-4e45\\-b732\\-4398baebb76e\\-000000[\\/\\\\]+bo8YUSsyPPVtqHBC4AKmXePG8lg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327fe063\\-306499f7\\-f3c1\\-455a\\-b5f9\\-c451097d037f\\-000000[\\/\\\\]+_A4pQBfOp5EMuWfT3tkBN8KWT4g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329ad51f\\-dd366292\\-3cf4\\-4be5\\-b7ae\\-04a5719be1eb\\-000000[\\/\\\\]+D6BzluQHg0RUXVHKmP28ZXW3vik\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a9c8f6\\-106523cf\\-8fc9\\-4dda\\-8662\\-f5480989f72d\\-000000[\\/\\\\]+upDH0KvNmc8B5kg\\-mo\\-EdT12fd4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329e9209\\-2163225b\\-fd92\\-4ee0\\-ae5a\\-006487134771\\-000000[\\/\\\\]+MlDOnvK9B6VrM\\-u9A9yv7lTRrao\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b2766d\\-06206c33\\-a7d4\\-4f55\\-a969\\-b5c267d59c43\\-000000[\\/\\\\]+iWdBm0Sc\\-jCrTVUC_anNgCv7z88\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b89e9\\-9acdfe87\\-c553\\-411c\\-9df9\\-8ece9e391880\\-000000[\\/\\\\]+Ji0b352zOamv2NGzrcd33_fAQb4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a94d4\\-786c5d3d\\-1614\\-4906\\-b5fd\\-3ef3b3a802e2\\-000000[\\/\\\\]+i3x1w9yXUqYP\\-D4iYJ\\-lvGxI1DQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328dc0b3\\-1d4144a2\\-93d5\\-4749\\-9a54\\-95c38be71db2\\-000000[\\/\\\\]+xHdP52_5U0hxBu5hwW5WP1XYwlo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232851914\\-6e7c9061\\-6a54\\-4f62\\-b676\\-ee9e7cbeb704\\-000000[\\/\\\\]+Ce1uctmmK2w7dYm0WJy4ZRorYM4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329f6d24\\-d11a576f\\-0d9e\\-44d0\\-990b\\-1743d08f52a4\\-000000[\\/\\\\]+Ypi1pE4JNoO_JImJ7uh5PL8sQeU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923285098b\\-32307cb0\\-8f2d\\-486c\\-9d3a\\-2a07247414e3\\-000000[\\/\\\\]+xPuOnzxEBuScazi0cia217fG3pA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232894730\\-beab4435\\-d97f\\-44ac\\-84fd\\-c3ada93e0dd8\\-000000[\\/\\\\]+Jipz\\-1lNuSZWxJbmPTNh3kqFc6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ab6f0f\\-f1bec2ad\\-ecda\\-497f\\-bfc9\\-14cb4c9f24bd\\-000000[\\/\\\\]+b9uuk4tFZuDHWliVbySWILZ51MQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a6b171\\-050434cd\\-b754\\-4c0c\\-92fb\\-42ca13f38c1b\\-000000[\\/\\\\]+9YoGzF9r3RzxYVrR7hedk7if9Nc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923280efc4\\-dda99695\\-31fa\\-4984\\-ba2f\\-89aa4f1e25fa\\-000000[\\/\\\\]+05uTlbFziTsY_XwcQOBSBrelKnw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328adacf\\-725a7061\\-f5b1\\-4f9a\\-b063\\-a3608e03a336\\-000000[\\/\\\\]+O1uDBll_bNci1IlMwXrzD85ceFg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ca954\\-d11ab480\\-ecc9\\-4bdf\\-bff2\\-bcfa80b2f240\\-000000[\\/\\\\]+4P0rmy\\-kB7oFwDycN9QWjUrEtGM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a7a77\\-e6420866\\-c93f\\-4042\\-9722\\-46fe1f6cd3ae\\-000000[\\/\\\\]+VCNrTEh6q5JAyxWxZiPl9_iJkp0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a52c7e\\-adbeb61c\\-8b04\\-4305\\-9f16\\-397189e8ab8d\\-000000[\\/\\\\]+0hrsfJ3IUUg0vUsVrxK1w4d9DfA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232868036\\-aa66c8cb\\-0aa8\\-445d\\-a9df\\-43cdabeb32d5\\-000000[\\/\\\\]+FTm_BHZLl_FHGaYbNqyQSn3TvgE\\=394(?:\\?|$)" + }, + { + "hash": "b4a1efe972c0451cb163dbec5afaa6377f4e33731f0e0d589720346c34754f6f", + "regex": "(?i)^https?\\:\\/\\/mail\\.137\\-184\\-215\\-92\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c856d\\-fe70dd4e\\-83c3\\-4367\\-aa7a\\-aae7a5f74179\\-000000[\\/\\\\]+JGLRYVYi5OxtqkxGW2w2RStZbKI\\=394(?:\\?|$)" + }, + { + "hash": "25aad5e627e99fb1ac5bc6e78a96a823f99a5075f184541a631ab6b918e91ec5", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232795a13\\-8b061161\\-a636\\-45c2\\-a5cb\\-8169aaeb3ce7\\-000000[\\/\\\\]+jzjMo1SdRp1VNIR4392GwSENAlk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290b165\\-09e9750e\\-e0ab\\-4d2c\\-a4f2\\-041c1752df0c\\-000000[\\/\\\\]+DVdVghQ9Je7BidekhoHCEW2FIUQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297bdf1\\-9da3ae38\\-aed5\\-4cdd\\-a768\\-0988c153d08b\\-000000[\\/\\\\]+fa9_BUtVoBYsOVgUzupUVvJFaJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327fcded\\-595050ff\\-e1a3\\-4249\\-92dc\\-070827d89c22\\-000000[\\/\\\\]+GJlkOkKQvpPo8xtlLNNTqdDj6_4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232934ef1\\-8d1476c1\\-af91\\-406e\\-8c13\\-f22e454cc8de\\-000000[\\/\\\\]+ewmR5gfxzFv3fE5b9vkyPmD8l\\-A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ad7bb\\-3664eded\\-a392\\-44b6\\-856b\\-9ae070410c32\\-000000[\\/\\\\]+Vqvd8dh8AXSfgvrCbloeG1_q9pQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923292b1fe\\-f8015298\\-f478\\-4748\\-a2b9\\-b01a1accdd24\\-000000[\\/\\\\]+OVmTDxpKejzd6daDT7r13XI5NHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923292a030\\-7e46e978\\-28a9\\-46cb\\-b21f\\-d130a020f442\\-000000[\\/\\\\]+14olSzT_oznrY5Mj1BDpNzF6vz0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329cfe41\\-2914caa4\\-6733\\-41a7\\-a8bb\\-3a3cd70b1ea2\\-000000[\\/\\\\]+Y2U21W6VP96IBBgJDATrRrByq_Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327da08e\\-c84666bc\\-49f8\\-4061\\-9d26\\-d7162bb8d048\\-000000[\\/\\\\]+FJoZdAvXpagEJUgeWVAX3lNwGtg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232865bd2\\-716a6f01\\-42a5\\-4bbc\\-86c9\\-595ed6f52086\\-000000[\\/\\\\]+xAoqNlaLLtkO02\\-ONNongpGRaV0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327c4c13\\-8e997510\\-ee4a\\-4360\\-b5b1\\-f5fc0a3c2007\\-000000[\\/\\\\]+DijZnPk_3yMiL9j_pjq1TgadjoM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328bb87b\\-7827187c\\-d5c4\\-46b9\\-becb\\-b1c5a7b9c2af\\-000000[\\/\\\\]+fKcrapiM0SyKi\\-MOE0jndyp\\-to8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232979316\\-38bec9c5\\-2c71\\-4212\\-a0cb\\-facff4deacf4\\-000000[\\/\\\\]+2TVaxLMDARYm\\-TnTClplJaxYkuo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ba503\\-a9d4a074\\-745a\\-4543\\-80d4\\-7f4fa17359db\\-000000[\\/\\\\]+Wfs\\-V23aWMcqXl7UnOzJ5wUhgaQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327b1ebe\\-934bfa56\\-8804\\-45f6\\-8b3d\\-4360b247a763\\-000000[\\/\\\\]+P7FJ8DO65Lo0wsNgKze9mpaa0LE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e4917\\-deb5e02d\\-c7dd\\-4291\\-b4d8\\-b547f2ed9753\\-000000[\\/\\\\]+XCcW6mDZYhwlZ_06tjI\\-vDYMQ7A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a0fa2e\\-763aa7f5\\-1686\\-48de\\-b9f7\\-83a305513592\\-000000[\\/\\\\]+ck8hLZx7ia3F15RRhGNAibH_2xI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a72958\\-82dc793b\\-05ee\\-464a\\-8d06\\-446eff197025\\-000000[\\/\\\\]+3ZqLPE9IdSgZL07_6ib0MkJpsLo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ad82d0\\-ab9aa581\\-e9f6\\-4e53\\-9df9\\-de50790b98c9\\-000000[\\/\\\\]+n7Uxj5JAYZrdTGs_7Hp2eb1lfK0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328b0978\\-c91afd7b\\-2936\\-4c9b\\-829d\\-0ee8599d7805\\-000000[\\/\\\\]+mjaPK_YZdniOaHhgRWy3HsCySEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a7dec0\\-9efb3d7e\\-cdd6\\-4d6c\\-bcc6\\-2bd8ffdc70d9\\-000000[\\/\\\\]+FKgo06R7hrEgG5vE0Mc2fhafLWI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923294e982\\-a00b5c14\\-182a\\-4e81\\-8d5c\\-3c6a7a8b1cc3\\-000000[\\/\\\\]+j_wlb2YiUeqW68BHZNwnKBcSSiI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327c5ea5\\-8124980b\\-bf42\\-49c2\\-a318\\-280ad5edcec2\\-000000[\\/\\\\]+Bv_YFsWK8p7dejPmVY9XDWJ1I1g\\=394(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a928f\\-6ae43df9\\-43dd\\-4947\\-bff6\\-eec027de7406\\-000000[\\/\\\\]+1H8F69YQv5Pxk\\-RUipkh23XxQKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a6c55\\-1950ad26\\-7ccb\\-4bee\\-b16c\\-a3041ebbd336\\-000000[\\/\\\\]+wCJsF0LGkmq8fn3VqIPXDnOodGQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923298eea1\\-762ce06b\\-21cf\\-4086\\-a445\\-949163638b51\\-000000[\\/\\\\]+D38zdGeQsQHYKgwMJLzIBe_9P60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297e2bc\\-a5387ac4\\-ec4e\\-45f8\\-8e1d\\-ae8880cd8a0b\\-000000[\\/\\\\]+fdTk\\-9MQDotyiJDKd3RaWexOlzo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ad33a\\-049473ea\\-8cf2\\-44b7\\-8077\\-ab034f79c5f5\\-000000[\\/\\\\]+DlyE4ip9rNqa7dIYHB4ijtAb_L8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923294cc49\\-793b520c\\-9c17\\-4ae9\\-936c\\-a59b81a4cccc\\-000000[\\/\\\\]+TI8UzhNEiEzXb1ry6ClUwXeLP98\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a132ce\\-3eb5e9e1\\-b13d\\-4a18\\-a00f\\-7db3e1a14e10\\-000000[\\/\\\\]+qMbfjJamIdWQtDM73ak1z_tmv7U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329bb0ee\\-11a975f5\\-2122\\-4250\\-b8ab\\-c1ea81fe7037\\-000000[\\/\\\\]+2DFISoSWSjJWwB38NUvRMamqYkE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232abe1f8\\-a4d66532\\-7e3c\\-4653\\-944d\\-616cfe965ef5\\-000000[\\/\\\\]+pZmKhmhQZRWaurxIViAIjTZI4ik\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329caabf\\-a12a2eaa\\-0134\\-4b6e\\-8189\\-ef84b3e96f4d\\-000000[\\/\\\\]+8txQkTuKjgqGe\\-Ha2IyA4gslYUM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232899ebc\\-52ae8e10\\-6dd3\\-49cf\\-b0f6\\-d78b009874c2\\-000000[\\/\\\\]+lePICSa5W6ji3KCP_LUWdMoR85Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297969c\\-a34cf804\\-8f34\\-457d\\-b221\\-d3574cd308e8\\-000000[\\/\\\\]+J0bptiKa_L7gF4jYsEDYdo2mBq0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923280a322\\-f6739c78\\-e4ac\\-498f\\-bd9c\\-24bf260e5a19\\-000000[\\/\\\\]+27gdh1lykftL9cLxXO9zDv6JyTM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327bff10\\-f1e6d89a\\-a229\\-4ed4\\-959e\\-74f0f861cbc1\\-000000[\\/\\\\]+QIhuotXkpnOK0yWv5ItxIXPiA98\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a888b1\\-3504adfa\\-abcf\\-4067\\-ad3a\\-000f53b7b756\\-000000[\\/\\\\]+KfOKbqzT29z2P0jgJT46QuRTYn4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232787ec5\\-2aa7bd3a\\-bedd\\-4fc6\\-94f4\\-b156c1f7939f\\-000000[\\/\\\\]+C4mZQVZTsZJZJ6Xas4YPIP6sHJY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328612f5\\-f753aa4a\\-b439\\-43ef\\-aefc\\-b7c9b86d7408\\-000000[\\/\\\\]+MaRLPnS_y7iwsvXGwsvuSyTsSD8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289517b\\-b7571a3e\\-2171\\-4128\\-8b43\\-f63270ecb7f2\\-000000[\\/\\\\]+d\\-qT3yGzDGGc\\-Kt5KA5\\-p8dEPo8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c3aaf\\-7a609c11\\-d2bc\\-4c23\\-8b99\\-e482a2c31f8f\\-000000[\\/\\\\]+XIPXomQE0qGUXCsLmE43hfEKITs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a56b59\\-d6eb8269\\-1d3a\\-4488\\-b67b\\-700bff63cbb1\\-000000[\\/\\\\]+0LOjL0GYxxvAOCCxrJzxb1ytyZU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923298827f\\-e296a7be\\-b74e\\-4ec9\\-851a\\-a01818ebd497\\-000000[\\/\\\\]+zBIM9JnsnNiKpIn\\-gNb5cjvZ5bo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ae2311\\-87e2d153\\-2220\\-484f\\-8712\\-eeee214b29f1\\-000000[\\/\\\\]+TCUNC\\-u7Gsuzj0T9RzRzxRzKlKM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923288de51\\-04de1be3\\-d162\\-43b2\\-bacd\\-bdd02adcb7aa\\-000000[\\/\\\\]+HEzC589EtW4NUdl1ujC\\-oHGLlA8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328133d2\\-bdd4e39c\\-d4ab\\-442d\\-a58c\\-f35af16eff02\\-000000[\\/\\\\]+NBJLxGExt7reyHfL8lSEAnxjAoU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327b749d\\-919ff3df\\-40b8\\-4966\\-b288\\-ab514ba962f6\\-000000[\\/\\\\]+KMJA6uUwcgxmx\\-OUfz1_hsF\\-OT8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232939e3a\\-5c994896\\-8e54\\-412a\\-b23f\\-c873e5cfa447\\-000000[\\/\\\\]+mWzIQYgz4EawYB1GbyN_Kfpp\\-ws\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327adada\\-a301ba5d\\-c352\\-4aaf\\-a8a0\\-463710049d52\\-000000[\\/\\\\]+WD4dEqUFfMotSBblVWaHXSkyrgs\\=394(?:\\?|$)" + }, + { + "hash": "855be42cb384b18aedf8003b3c65ce93d1cf26e2481265e0ff2bd5c190a37259", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327c8d73\\-9fa72a82\\-6bb2\\-495f\\-9e4e\\-2fa795981a65\\-000000[\\/\\\\]+XuxDypxUn6klMXi0H56COrmHrqo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328667df\\-d2df7b2e\\-ee0b\\-4bca\\-80f2\\-a1002e9f189c\\-000000[\\/\\\\]+F1D1y6sOBgSxsH88QbiVwPWSglg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327d737e\\-ce3032c1\\-0840\\-418f\\-8e6e\\-f34de823a27a\\-000000[\\/\\\\]+HIFqnCsKiHF43pnNT98V\\-8uO054\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232987647\\-561bb0ea\\-50e0\\-4d14\\-9a6b\\-d870cf69c35f\\-000000[\\/\\\\]+yuvuWr8UcMMz18bGtfxvEEnSHk0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329cdb0d\\-32cb3d69\\-5f76\\-41c6\\-954f\\-ede308a36287\\-000000[\\/\\\\]+E3xHuygStTOWUGyI5qxvZG2O29k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232934c94\\-b1ca251b\\-2cea\\-4af7\\-b5d9\\-91d29cba4ef4\\-000000[\\/\\\\]+iX2iuIfHsesWq4OOxaA61MqTVlI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284eda8\\-db38f35e\\-f6ee\\-4c39\\-a812\\-eea3c4f72806\\-000000[\\/\\\\]+NkGRt1nATrhEcAZK2LvJ91AtPvA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a8d61\\-c23e9e68\\-4186\\-43e5\\-a723\\-6301dccc5403\\-000000[\\/\\\\]+sviI4eAUXgVK1uy0WZkKYTGAGzQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a5092\\-3e2aa54c\\-8c4f\\-4cd3\\-b4a8\\-22ebaf74a6e7\\-000000[\\/\\\\]+5\\-GmHHKvpE5UmmafWJfY5EzTPzM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232862ab8\\-0b78db66\\-4b1c\\-444c\\-8c66\\-76dc072d8b74\\-000000[\\/\\\\]+E5POCK7XwGwLuEOQ8xGRSFUm2HQ\\=394(?:\\?|$)" + }, + { + "hash": "5b8aec143ffd2b37b2b06608630c1dde597e2cd8924f705e73788be23c1c5868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fortiadc_error_page" + }, + { + "hash": "968ba439ee7d89d6aaad714d1035134ce18edc033f958e951d21d3fc213ce2b7", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232898cb5\\-c54d311d\\-17cc\\-465d\\-aa4b\\-1322761d22b9\\-000000[\\/\\\\]+ui5DYP93N9wf4GDaF_VvEAixYvQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a12c2c\\-7961c55d\\-f738\\-4b37\\-823a\\-482e7fe20f99\\-000000[\\/\\\\]+67yuFP3GSJZNzpWfuHN59mIuKYQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a0896d\\-3136d22f\\-f2ea\\-4c0d\\-a503\\-acc1dd1aa3b7\\-000000[\\/\\\\]+Dc3CX2wP1gRr_3FDpQcTIdrIZFw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a579a\\-877d061b\\-485a\\-46c8\\-bda6\\-ebc0ab2a734d\\-000000[\\/\\\\]+fXmDJRhleohzdlk2h5YId9_IgK0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a108ac\\-ce313583\\-0629\\-495f\\-a8a7\\-98b8e3ce282d\\-000000[\\/\\\\]+dh8Gf0HAepiPmxxxc4rmCJhupjY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327babd9\\-e0f8cc86\\-f8fa\\-4972\\-b24d\\-37889a97932a\\-000000[\\/\\\\]+E07j0QaWSw1bUnRy38mv3fHgMcc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a11fbd\\-5a9b570d\\-e2e7\\-478a\\-99fd\\-dd575e2e334f\\-000000[\\/\\\\]+KSDM1vfhjjMQEBoFrAaXEnh0InY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327a0282\\-a1110732\\-6097\\-4ac5\\-bb1a\\-9392d1beaa89\\-000000[\\/\\\\]+DHbsYTTVU0o\\-lPfP18oWJ_Tho60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327e4ca4\\-0a5e2fe9\\-0919\\-49bb\\-924b\\-1c55558e1bed\\-000000[\\/\\\\]+EzkLsmX6m3BwcJQ89mGu8juXE3k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ec0bf\\-d6e31f75\\-63a5\\-4833\\-8a52\\-e7b79fd76811\\-000000[\\/\\\\]+etTK3__P4eLVKeca_2gsSJm6kHc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232866063\\-d8945578\\-751d\\-492f\\-9ce9\\-f945cf608e6d\\-000000[\\/\\\\]+f4RKXS5sOBOuT1hzML0eg8nYxWo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290b80d\\-4dc28fe7\\-a770\\-4bef\\-b1f7\\-c6fa6132a7ba\\-000000[\\/\\\\]+0oiQ7AzR5jjrkzW63SN8oyjNTzg\\=394(?:\\?|$)" + }, + { + "hash": "21a034072b940fe6bf5de0425518868300b5ccba277eb8ea8e44490ed9c5c8a2", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.20\\-2\\-66\\-219\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f9a3cef0efad65491b7cec44d23fa209f68e2f6453646428d38ca77bf60fd245", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fortiadc_error_page" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327e1e87\\-30843474\\-bc7c\\-4b05\\-a57a\\-51a5048e00c5\\-000000[\\/\\\\]+xQN2UYE6G8LCV506TqcaJmLV9TY\\=394(?:\\?|$)" + }, + { + "hash": "52578c13cdc2056e89a7b1365d08ab5f741f81dffff87a583340a8d5532f0fc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+at(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329de5c8\\-6200c630\\-be3f\\-40ba\\-9b8a\\-9e25fa442080\\-000000[\\/\\\\]+0zlb\\-sAT3EoWxOCqtn4ubtp1UJw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327b6007\\-2edcdce3\\-c1d7\\-4aa1\\-ab49\\-087a22c377de\\-000000[\\/\\\\]+Y6albT3xzGrgfOjd\\-Ma\\-g9xOHJs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232939787\\-aa1640d9\\-7f1b\\-450f\\-9953\\-049978383006\\-000000[\\/\\\\]+EsaP6flpCRfiKGdbX8vJC\\-z6bHI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232939020\\-1b5fc250\\-1595\\-4d23\\-b765\\-d8730fdc14dc\\-000000[\\/\\\\]+81iuR2Hw1Vnrf1xbXJP3vcalwtU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923285a784\\-ee3ba949\\-fd0d\\-485e\\-b7ae\\-5b886c162483\\-000000[\\/\\\\]+pzxDk5jkVWGm2wHIfz5PEVh3u0M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329f185a\\-33aa03f0\\-01e3\\-4446\\-ad17\\-3835937c0d38\\-000000[\\/\\\\]+mFJ49ku5WNQYhVlVzd6iDru8v_I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232abbda2\\-bb6cb49e\\-79cc\\-4ebb\\-ac79\\-e5a06b43b5da\\-000000[\\/\\\\]+IQCMOgP3kvVXg5uX37qjdxls2Rs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c4306\\-6a654d0f\\-ce94\\-4122\\-946c\\-e0bec157964c\\-000000[\\/\\\\]+CaJYnsOd\\-nvvzMBmLnr7s4Yi5cI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329def64\\-bf440d8f\\-ab0e\\-46c6\\-b3f8\\-76946fca0ae0\\-000000[\\/\\\\]+qJ56KxoWgff7iEmPYVNGdnfLHwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329f87a0\\-87ad4bf4\\-bbdb\\-44ad\\-acf8\\-3b692b4cec6d\\-000000[\\/\\\\]+zt0wZ2U8A3iamnDAQy8DFc1PjBc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232869851\\-456801d4\\-f11b\\-4d28\\-971d\\-f1ec00671f7d\\-000000[\\/\\\\]+3qNgDcwdgnwsHdCdfNlzhL06G78\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327c213c\\-8c7a3883\\-9ba4\\-4ec2\\-a9ba\\-cc3f2a252e30\\-000000[\\/\\\\]+G49EWptWobZ1IRSBy3oSSKlOR84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ab5b28\\-7b566250\\-1f82\\-4b86\\-9cb3\\-189e83913eb9\\-000000[\\/\\\\]+n1jmqZIlFAEJMVknTwbcYCShG1s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232abc3d2\\-4075371d\\-aafb\\-40aa\\-bd21\\-d381d779ac25\\-000000[\\/\\\\]+KBiSRou3izSya14BOa6fvH60QO8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232868ce4\\-eec4a61e\\-99a2\\-41c5\\-9ac3\\-537fed10870c\\-000000[\\/\\\\]+aR9dIuoLBOq15R1Mu3pGAjEWOQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ecdb7\\-5c6d3b72\\-cf09\\-4f7c\\-bcaa\\-806acc2a424f\\-000000[\\/\\\\]+NQjxiKvVDyQw2TNpDG6klMiBje0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289a9e3\\-8ccc32ee\\-7ea5\\-42e2\\-8daf\\-227dcdc3b6a0\\-000000[\\/\\\\]+tuS1otHguf_VDT5YN4I0ciNIvcI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923279e7f8\\-81a5f15f\\-f4be\\-476e\\-bf28\\-3bd2e2c0aa98\\-000000[\\/\\\\]+cH1WKPg3xu\\-YstSHo95qmLZwSfs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328f201c\\-4db45f4b\\-6cdc\\-460e\\-99e0\\-bdd27a00aed2\\-000000[\\/\\\\]+uEmkdnyRZ3teJmhfN6N2\\-XhCnAc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a6255\\-bc9736c9\\-b603\\-4759\\-942c\\-1a95b57d54b9\\-000000[\\/\\\\]+jifC5W7Dqv9IuHoUWKkEa1kVivs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284f69e\\-f53ac8c6\\-426e\\-4966\\-b60a\\-f6e3cb4997b0\\-000000[\\/\\\\]+MCiNtKqxQgas_77zvRt6RmrwTFI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297c292\\-de805f15\\-76d1\\-480c\\-bf3c\\-93487b68892a\\-000000[\\/\\\\]+ZU7Ip1PTJ2A6O42Gyl1Tl3j1yMU\\=394(?:\\?|$)" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+a5ad93bf\\-a025\\-447c\\-b364\\-3079b6930ba1\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232aae583\\-8824470e\\-2ad2\\-46cd\\-a495\\-e7f6308f3396\\-000000[\\/\\\\]+OO3fZYG_wmW9yQjSZteFtKtv9v8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232906f1d\\-c7a3e7e9\\-7128\\-43ef\\-bf23\\-6faee41c1fc5\\-000000[\\/\\\\]+r1yyblSJ9JFgRJlH3hU50QCmCBc\\=394(?:\\?|$)" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+a5ad93bf\\-a025\\-447c\\-b364\\-3079b6930ba1\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327e08ea\\-60c3aebb\\-efdf\\-4ba2\\-a6c2\\-9d2783345326\\-000000[\\/\\\\]+ado8EU2PkjiqCVUquynRf9lUSf0\\=394(?:\\?|$)" + }, + { + "hash": "0b306e859e8569672f7597fc9ceedd6a7582b42e135af3acd28e46639d263a1a", + "regex": "(?i)^https?\\:\\/\\/00001\\-gribdinjoc202073\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329112c5\\-cda7f566\\-c0f0\\-4d9e\\-ba0a\\-b53caf076ef3\\-000000[\\/\\\\]+BcT0UTYWhzG6\\-7HamzK\\-HKkRZlQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232841a9f\\-d2e7a034\\-f39c\\-474a\\-a85e\\-0a974f5c8536\\-000000[\\/\\\\]+18F1Wl4CrapVrHhVYYWlwHyW3A8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a6e986\\-f0bba183\\-274c\\-4c56\\-a2da\\-c1c0880fb518\\-000000[\\/\\\\]+n7q4rp5o0U5J6uMkFayytLGvuFg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923280cf53\\-5c1cffaa\\-3062\\-45d4\\-8d2d\\-59a7a28cf4db\\-000000[\\/\\\\]+5F_eOQx1gtNLs8vT_8JrEFI42TM\\=394(?:\\?|$)" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+a5ad93bf\\-a025\\-447c\\-b364\\-3079b6930ba1\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232939742\\-a94e5c6f\\-2a2a\\-4c2a\\-ac60\\-10b77ce29f7a\\-000000[\\/\\\\]+\\-UAHN3KVwJSuQUOFs0IPiqNtKJk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328f5362\\-e83b470c\\-8f9c\\-4b45\\-8758\\-7b2fb21e1058\\-000000[\\/\\\\]+t_tDJDUAvibexnp3WkHiZ20yrxk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c3a46\\-edc31258\\-ce8f\\-4408\\-ab9c\\-4debba383d62\\-000000[\\/\\\\]+rf7_MQujOiVuW\\-RC3z6nnooGEPM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a1b08\\-2167005d\\-c23c\\-4542\\-9dff\\-9dedacf5da46\\-000000[\\/\\\\]+tlYZzhKrRLEGfKFI0IKDYXv3Kpk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328f3a6a\\-627cd496\\-539d\\-4aae\\-9799\\-b2a33ec6147e\\-000000[\\/\\\\]+7RFPeydPgAlp2ukHVCozxEZ7sCs\\=394(?:\\?|$)" + }, + { + "hash": "9777b9aace60b8e8984683c7c3af0c6671c83de54c3fdc3b2488fa042edc971c", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328b2435\\-999fcbe2\\-b701\\-4b25\\-83be\\-c40f572df185\\-000000[\\/\\\\]+ofdQSa82Mnlh4EwlmeMLfcpuwGQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923285282a\\-88977b59\\-e152\\-41fa\\-bfd2\\-816d302ad89f\\-000000[\\/\\\\]+CV4xW7fRbM5HyBgN4NAXUjZbEtk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329d6c1f\\-968c1a14\\-44ad\\-4f89\\-91bd\\-e87bb3038b48\\-000000[\\/\\\\]+oehc_wacV4Uj3RI7VeK06zdOi1s\\=394(?:\\?|$)" + }, + { + "hash": "54dc0b423a24457b486a58a146f3290e8d963f3b1cb7b41eee37a702a156fa9e", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e05de\\-971e9d3c\\-f4d4\\-4851\\-b111\\-75348d43e90b\\-000000[\\/\\\\]+ESbRqpwcO2NI69t7SEegBYtRRTk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ae383f\\-d9a56d3d\\-136f\\-48f5\\-924c\\-0905c2d6d5a9\\-000000[\\/\\\\]+G2Kxw85TgZ703Zm9\\-nL\\-X4gDP6o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289cf2e\\-280964bd\\-f0a5\\-423f\\-a344\\-fac3f98f652d\\-000000[\\/\\\\]+t97lscQ1VcSn6iuCpPNizsQA8Bk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a067a\\-2b8a25c6\\-2a27\\-4311\\-804c\\-e654aea1b890\\-000000[\\/\\\\]+p0aiRaUz4HyvsniR9_cEeo6eH10\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232851523\\-21873ff8\\-1fd5\\-402b\\-aa85\\-437c8071a15e\\-000000[\\/\\\\]+9Yo56mkr\\-cVTjneHXjC2cwxDgKQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923281bd54\\-da8ece6d\\-c2ae\\-4b56\\-b280\\-8893ad872d45\\-000000[\\/\\\\]+WeuIRFJNxgx9q7m0X_Dj\\-lVbeUw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284e6ac\\-2965605a\\-77f1\\-4e4c\\-8bfc\\-8fcee6bf2cfc\\-000000[\\/\\\\]+fZW3z7ZPHUHk0rSF8PP7Cd1ptko\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a06427\\-a895b3e7\\-de01\\-4a5e\\-aa51\\-e003151c6eaa\\-000000[\\/\\\\]+Jqz4OW76oz7hEh7SUvQ2AnnLjxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284b68c\\-f9b776af\\-3ee9\\-46d2\\-a485\\-ec6694e0167c\\-000000[\\/\\\\]+xlg0etcKsJFeYfMSB4Sd\\-J14HXA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329fb6fa\\-00cb87f8\\-2de8\\-46cc\\-a772\\-b06db2295be0\\-000000[\\/\\\\]+PPon8OF5ff_YvSr5xlNGPDF6vtg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232869d49\\-2bb572f5\\-d097\\-448e\\-85eb\\-b9a8f047f639\\-000000[\\/\\\\]+SXHlEufgn9\\-IgAXFsyrezniAyKc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a0a88a\\-bf2876b7\\-db9f\\-432b\\-a1a7\\-436d53c2ac89\\-000000[\\/\\\\]+ZZ4R3IavTrc8IMY09qVfXjjRKhY\\=394(?:\\?|$)" + }, + { + "hash": "9b03023b7349f140fef2fb44b2e7c4411d5f3c58c422fccc76113fc0a0564732", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329abeb0\\-32dcbfdb\\-6ad9\\-494a\\-b274\\-f7e437a8c073\\-000000[\\/\\\\]+E1HKeEhyDdF8le3uDblc\\-R3Tlg4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ab309\\-dcd78bd5\\-db6f\\-45a9\\-a3c4\\-d005dfb62e04\\-000000[\\/\\\\]+5V_HwZpwagAB0V0yN076xz57hc8\\=394(?:\\?|$)" + }, + { + "hash": "4801f381e51b7c9ff9a1f3a8777212e71716ed5c94225400cf5cade2944954de", + "regex": "(?i)^https?\\:\\/\\/www\\.aa\\.104\\-168\\-101\\-25\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284f3b3\\-225a2bfa\\-59da\\-4805\\-acb8\\-243d88672ddd\\-000000[\\/\\\\]+BgtFLlEL8dScGGAVACli4B7IKeo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328603de\\-a8dfbb7e\\-fbbd\\-4298\\-a1bc\\-e8b6914eb723\\-000000[\\/\\\\]+lt2eKDe5rPit9C0ot1nqzoEVL4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b9265\\-7003aebb\\-c6db\\-4809\\-bea9\\-6f911305ef7a\\-000000[\\/\\\\]+d7sdt\\-h0P3pK4POQTSsRuHJSbPw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923288403f\\-fed3a94d\\-924f\\-4eb9\\-a0af\\-b74c2b14dd55\\-000000[\\/\\\\]+JsNdOCatrKvadd4mU8mVLJpWHs0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328b1de9\\-18cb8eca\\-dda7\\-4f17\\-9fa1\\-1245b297751b\\-000000[\\/\\\\]+yEEQKuUaw_5UMu\\-50wOWMdHTOkU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a06b58\\-9da874df\\-879f\\-4ccf\\-8928\\-1167038d4e6d\\-000000[\\/\\\\]+FgcZfplzRPKzHtPd10sm63vLNSo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329bacc3\\-e772e52d\\-a30a\\-4b6c\\-8246\\-a16a0535e73e\\-000000[\\/\\\\]+Rj\\-8RRCYjwdSjeARF_Op1TonMOo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327b2798\\-534a8b82\\-7238\\-4d4a\\-b610\\-e08626906398\\-000000[\\/\\\\]+EpDT3WFNlYucLtzc3iq6K9bhccU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327e21e9\\-61cd2308\\-cd8b\\-4d29\\-b527\\-f1d81247347e\\-000000[\\/\\\\]+CqDMz1LlNtbfoYMMO5Ur0MFxlKg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328f3c45\\-a7bc6129\\-c734\\-4a49\\-91a1\\-4dc2a296232c\\-000000[\\/\\\\]+QK1vTZ7zZnUj5yf4DEOubf8DItU\\=394(?:\\?|$)" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+k9vn(?:\\?|$)" + }, + { + "hash": "17368dc552fc00cfce65e20ad2a6bb96c8cdacdc09a4f60670577f9082cf4486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mobile\\.html\\?BGZkrmZ$" + }, + { + "hash": "ba2198ed57fba78d986b099152e0a47afd1f6f85a35d1a73a246ffa3cf19ad65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=9661336\\&pdata\\=vaCbCyQftOqCfsiOhsi21RK2nRcb9IdHWpnuQWqBCNcoqoFw3M1YVQemTbKz9VaqY\\-OKlQu7iNpHtHOil_\\-Re_29I8tpvzTpWkY6y1tjzPjt58x6qSlFcjrrxtFINHjPILz3BA8zXWLLJ10m0UrtauLRmMPk277vkiwKFFb5UZNRfA6l21gyZxexXuOiv\\-pDWAH30MMVpnM6Xdh0f_fV3ZWjVNQD1YyOqYxnBkr2ysm4zFG3WeHX\\-BopPAETz7KowdXE4C77oL0udIgE0LSgAJQuqnlHW7ptkbCpaWFF5n8b4iU9PpY7S4XMuys1D05XgXSy3jBK5BTTTgGZhA\\-ln2QS7168aMnPb5N0oFcXI6PckZ\\-QbnOEvkdu7BerfU927lRoyNZ21G5fyVfAnjYJ9p92hJJEVl7BLod9IAwNqbE8fR4jg9Qa4szgzI0k76HXwxAolv6hnVe8SNq6YA71o0gYpYyhF27e7_YPgSiGs2wUnxfv8A5uh3mkw7EtGpf_CQGpmiT2\\-bUKjs4vvviSjOgM\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328490c8\\-9f86bbf3\\-16e8\\-4d59\\-82d6\\-a038eff2c881\\-000000[\\/\\\\]+cEnvfmbSX09UgVnbeYKI5Hy6x78\\=394(?:\\?|$)" + }, + { + "hash": "04c48b250e2b223031aabb54221b451e534ee0a472f4bcedbbc0df7b1484db32", + "regex": "(?i)^https?\\:\\/\\/dgt\\-department\\.com(?:\\:(?:80|443))?[\\/\\\\]+DGT" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a047f0\\-85d8edc4\\-fd6b\\-45cb\\-82a5\\-b789be9912c2\\-000000[\\/\\\\]+ieZ8_06qZOo1jLaUoONA6O3yKaA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a663e\\-efda16f1\\-b0ef\\-4414\\-981d\\-dbddf4cb698d\\-000000[\\/\\\\]+zvrlVbRvKqQTN_rwuW8YEKNXfvg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232843641\\-fa13bd93\\-6a88\\-44b8\\-ba97\\-97352f95cd74\\-000000[\\/\\\\]+\\-e3t9WTJUEBQ9uIKfGHYHARaUKU\\=394(?:\\?|$)" + }, + { + "hash": "a743ca2f6175129bde98bedd10115abe67c13a332a3653841e2791dcabedfcd5", + "regex": "." + }, + { + "hash": "10b9b825791953df8b554b34440ec11333d054e6db76359be84e82381a75224d", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329be7c4\\-b30f267c\\-bef8\\-4d96\\-a0a8\\-adc09cf04db5\\-000000[\\/\\\\]+qiKL9_r0oNVvCHvP46G1KAlIBJo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329fad67\\-1700ff7a\\-1e71\\-4cb4\\-8cdb\\-c8b22d40a53c\\-000000[\\/\\\\]+rz0s7_BgbHpB2EnUIheJduO4aUQ\\=394(?:\\?|$)" + }, + { + "hash": "ba2198ed57fba78d986b099152e0a47afd1f6f85a35d1a73a246ffa3cf19ad65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=9661336\\&pdata\\=i0bLsPM7Dcw1lf3mTCijqTwsad7p4yX1qE49GQ0ZYCnEWIqLdzZfFbr\\-w\\-BRwMlXgvvh9bm\\-dZNZoVfGy4nQwEa8woYoTP8\\-fGtthzIUSJFqljEuombcuKCxyjjGe6sxajRPUkFK8hjSQSLoaOXbJ3mGumoACMLvgt4ZTT77ik8rWHJjSaG_YLfERxjQIZT8oCEApf1C9pbfg14GAvp6f3NiVreKWz6bo2bxv6WGapj0frrIpmuXg_XjgAMLXQ7sQXbfD1qzSLte0Hj_HlDZAtuBAdW7JlcWVTkmzm6JYjo4Caap6x0cpRidojRo\\-NCi6obnXbH43VSEjBZBkqY8yFAEuxWTECpSQTY\\-X3mhBVE\\-YpzGrIBS3_lUUiHg5v2fQ4\\-JmbUwcN9PARj4_9ib4BH57UkA4_vYVbkhnuEHtZV1P\\-U\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284dfd3\\-6b027f21\\-07a5\\-4d69\\-87f0\\-e878855745d8\\-000000[\\/\\\\]+qw8dv0ZTgAUYnstLPVV\\-5JFlsgI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923280612a\\-60a1b394\\-c6b0\\-4580\\-86d1\\-1dda723208ba\\-000000[\\/\\\\]+9w2CLMXKSscEV4s_5nJnJgAETok\\=394(?:\\?|$)" + }, + { + "hash": "42f624c7504e09fda8db11d6d913ea648bff6c1c95ef1bb9e85b3f38dbce0e90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9977[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232941d79\\-6df57183\\-7c07\\-4f83\\-a940\\-3c4bf354cb50\\-000000[\\/\\\\]+mPOqYnXVdAFqjKwky7ofcgZu7lc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232862bad\\-3b2cc3b7\\-c5af\\-411e\\-a12d\\-a5754b4fe34b\\-000000[\\/\\\\]+kmZNd9F\\-QQlytLlCgID8RDy1Sls\\=394(?:\\?|$)" + }, + { + "hash": "7c4005b9068f7afb34762af360d233a2c61901fce05af19644f7d9bf6db1f23e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c95e5\\-e5242f81\\-0156\\-4a1f\\-bf90\\-8a51a5810cae\\-000000[\\/\\\\]+MZEyZcOAkt42uzlm8XH5bp\\-XMEc\\=394(?:\\?|$)" + }, + { + "hash": "af507aa950a9dc1f9174bfc0ff06b5a652c962b627efdd00d921b33454de282d", + "regex": "." + }, + { + "hash": "4429921235896b7289b081f2a351eac243428a5b46b855dcb847497de61d2e50", + "regex": "." + }, + { + "hash": "81efe379a86ab355f55f5038efb13b27ff00996af7293e9a8c965fdd8fffe093", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "17368dc552fc00cfce65e20ad2a6bb96c8cdacdc09a4f60670577f9082cf4486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mobile\\.html\\?ts\\=1$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923299dfdd\\-3e127b09\\-4580\\-4a2a\\-8aa1\\-3c2ca40de0bf\\-000000[\\/\\\\]+ofuGdxJpMwuKb8j4o2kglAYeoGg\\=394(?:\\?|$)" + }, + { + "hash": "da1809953cd0b3abe439ebae329f998a859a62220f1591cbaea15d4badb7ceb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9063[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "8ee174832a076ba98f29e55a6135e2ca81f01bea8b5b50e0d2e55fc106503511", + "regex": "." + }, + { + "hash": "45af1b5157f2f12cde005e8e0305e67610c4645fb7775c5e78a4966f71cea3a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+usunit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284ef35\\-1e769c9c\\-c7cc\\-427d\\-98d6\\-bd384d54b83e\\-000000[\\/\\\\]+kRcVPH6Lqjdjfs\\-HD6oxAcXAotk\\=394(?:\\?|$)" + }, + { + "hash": "8287313dcf7faf2b1c07fbb53f97d7bc9a1f872c44b7ae532b0aab7226714126", + "regex": "." + }, + { + "hash": "ba2198ed57fba78d986b099152e0a47afd1f6f85a35d1a73a246ffa3cf19ad65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=9661336\\&pdata\\=Hfy8RuG7phNjDOq9VOS\\-9swglDh3jf7v7FeQ9xRVs5ei\\-H9U9SCmafEsgbr_4gi2sgNs\\-n55_BoR\\-lfO6vSHCUibZp79pwDhTwcjfUSk0tEDzswCD2GrME7nI8C0fGmZFwfOsCmPKv6ltVx6l6S_f1QWUck1I_u5rg6GtSz0TszvTctq11cISkMrnV9AZ7u9Hn9c7Ax6sS\\-7TEq6tCVwWgEX2\\-JDjVEi1hWYd9zDySY7o8XOG5ohQEbeIDfPe_WbanWzvDtkTnC23WgQw0lAUnRhmQzyLQ0Py0lka3PWqPoSPt0LlCG5wUBFOXLEGucxn0jBDGWEVp\\-tjylsaOhOnH0d526FdzgS3aBTXsAgElN8wTVkMSyB_4_fcVkKxGX5plXhrJT2becwRZUbBdMloi2KC2KM6He8QJHnWoXq5eVKMzjosgh3StuDjZCEcE85NwdjKvwY6sVKKbwOjQ_d4xjgiiK0Q_kdR62e\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "05031c981aefb3ff701585a1458ec85e522703039746437f38d766d8e60414df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=6866532\\&pdata\\=wLjNhDoTzoI96PM20onrc_TMNmqFmqrSTApgwwSUiEVjKQsLE94vn1Q3Qt07UC\\-_1lHcH8Z8nD4lXTyKHKAgtYaarWXTVcA4R1YJBy3oFT3uHxXl6PtjGtf1arYDfJ0UWAyfo1Ky6celzybthJm5I2kNYPOfABPegLZ3jnM_DOmhzkv9yg3q9dQgGfCpk4eff2GCqW5l0J25Su\\-J0V6ezrQTob\\-5HOdRl09jz4KWF7NDRfjefGh\\-\\-A1a1cePR06UdiGKceHrsooyNtue2tPSbpE4EeFtWJsxDoiqTxcSM3FHlR3mSLamtHCW9bmUwcfNeQnPvx3TizpI067vLFy5EfSSeSFiHJXMlw97rrx2p\\-FRjkyPtaCmo9F2vfpKZ8LXGNxSuu2pWJI4jnNeOwtnm5SLPPb267de_z8GsdRTwfBFzyrTZotF8M\\-l0Lew12GUOvl7PjE3lfq5cP1hwK786jtM_nLgT8YTDC_bpsX1OPAGAonZg3AAxN5_yfa6spH15smwlf\\-bE5kjklsglw91vMj3hkqti9foqVqBtEHHXARiBCkitBF\\-dlLb1Z\\-eUTaqbDoAkPfq1NSupNVx6TjPqhqfBzIJ43perlYex5_3zwISZnWIYIdn2RunYFdQEkCT7J3HOw\\%3D\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "42f624c7504e09fda8db11d6d913ea648bff6c1c95ef1bb9e85b3f38dbce0e90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9977[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "446251c1454be1c4150c6ebd68096f4bb17ce6aabaa2443330cf24815d7c566f", + "regex": "." + }, + { + "hash": "9d4092cfc4cea097f4d51c0ab5d3badcd73d4b38e91182a386df0033df078673", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329dd6b4\\-9ea1db10\\-55d4\\-4663\\-acbd\\-c18fc2f05cf7\\-000000[\\/\\\\]+lztyAooBJlb94ky1SgJGSWdcMm8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923277fbb7\\-2d64477a\\-5efb\\-4306\\-8244\\-6ebcd22dd2fe\\-000000[\\/\\\\]+tJUlQFlCLuhOexVVsA9_9M5XHiI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329de2e6\\-b6340cf2\\-4004\\-41be\\-a12c\\-6d61f3efe053\\-000000[\\/\\\\]+IdGMYoKYkU\\-Cyoul0b_kkOV4M_o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923287e881\\-9e9419aa\\-7b55\\-427e\\-ab38\\-e8f2860bb73a\\-000000[\\/\\\\]+67GHrCPI5V7TsHlpsPFe\\-noyzbg\\=394(?:\\?|$)" + }, + { + "hash": "83c06e0e8bd9300ce07457bb7ce191d1c6bc64b593833aa9c9024b5dc25ef758", + "regex": "(?i)^https?\\:\\/\\/gold419556\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "05031c981aefb3ff701585a1458ec85e522703039746437f38d766d8e60414df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=6866532\\&pdata\\=yWd1KEhAXY29zbqWy9BPG6urTekI9gpOeBCO9zq3mKX7aaQIK\\-ZNgTUIeF2lnLVURiUBtf\\-FRH_RhZAk9z4xw7K0\\-mXNgo5MD\\-A2swy\\-LymS3pUQk5innr8MZOJyq8Ak4\\-VqCms_IDFikg0yTQPaPgOPs23f3QgvZ7MVbESeWkP\\-U6gKOv2FZEDgE5jJC5ivCe\\-frxGQVbGHPS07mXHztu9XCzohJgeuvoGjoo5eQqSddmyetEZ1Y4RcrSf4xhY7fT1wsUZyuNJEMbPX2CK\\-golOJPablCn2O5_4_Tdx5ER6RvOkQaV0KwtqU6_L1TDxSjDUYiKxpE6L5qTje4xmjXNycDzmHD\\-TsNzeY71TK6GbQBAHw5PwkGo\\-EWtE0NnUwvCsvM7r1Uwk4PVfxDwbJ0fwr4jCJh1OrDyPXRxG4JwzM4UsD804ASaNbZyqmfOnrHfVhhZnROr8\\-BJKkHbHuv057fOPLzgd\\-7FTLw\\%3D\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "05031c981aefb3ff701585a1458ec85e522703039746437f38d766d8e60414df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=6866532\\&pdata\\=NQoMRz6UjIY9TENSZV3\\-m0Zok72OI5nmIA\\-\\-igSN9kU69mqxtGHo2rC5s3PWJPR8NIijKswBg1b_9MEH5kxY1ptArIeoKSerwfzg2BGQc0vHYZGnfkaqiVZ8zk1cNUelY2\\-XkF\\-ysriOwgIjkU5MT0PedtIBBneiX_rCYd\\-BeaV0vpCrH6YsjeQMdtKu\\-QIh8A5u_itBj2lN_caDFMuH7S959WDH7i4TDErTay1Sowj8Xd86qYawBljPKbejPrJSMI4Hosn_Newx68jKNShIkCtmdtoqAFIFYkQ6sbclVEvn6vdssCJ304jJRmK6G5Fxpmf\\-itIZx8hkePdQKoJk_e8Xm\\-2Ro0hq4Z4pqmJQN1NTbpg2U8fopooBhJDCUkF1O3Nz4d_lN2niDHDvXqhBLfLpc_XHwmQm4KQRuahFJRwAE8_F\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+k9vn(?:\\?|$)" + }, + { + "hash": "22273d677ac63a4d2a2669f36119d6508e5abea40eb5e3d2dcc61cee17c7f041", + "regex": "." + }, + { + "hash": "c5c687de4eda1c609f389692d0c62cc6c5ec7c6cb91b0e8f7392f2c039c924b8", + "regex": "." + }, + { + "hash": "4514f6a8e82e11599e858918db65bf475755289338c9db03a6549e10a0a33a10", + "regex": "." + }, + { + "hash": "640bfa62122da89dad30e69334cc113495f859c6287731f8f28cf5360203cf9f", + "regex": "." + }, + { + "hash": "ba2198ed57fba78d986b099152e0a47afd1f6f85a35d1a73a246ffa3cf19ad65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=9661336\\&pdata\\=dwQWBnHm2euLkRIsEm41sS\\-jyeYCM\\-kRWFI7b_1Z1HN5n7FxUX_6Lm5Ux8fH9r_81blg9PzbCcVMlKzM6bKFjy\\-y41Gmww08AqSTGcKOn0JwhO0gJKzDT07Jbl2SrcUTGdOKqKTz3jS7qksjjwz4BAf5x2pyD5asZpDAUb8IAvevheyYsJokL1_62N5F5bjw_hgEtXDKoIailvq5H6l2q80MngID9K54FINtQw2hC5phbgPd5Sh83puO\\-0X6JTOWQSYtn3QtZ3_4ZmWaw_wYUorgASGFKkEsjcnOmwRZrDZhCjiKAbS_4y4WRhVJKKkVzYeT3bQV1Png_vkAj41b\\-teewPXaM1JdBUDrTilQoYSYirhS2IKlSmK2ostyWC\\-WwVaKB9huraWzrKeFmYSj2uGHpySvaeq4bv2o2t4gLrV2bU2YEU00kcVk0g3tJclm_sjoYKaY7xTX5IApYweGVhPoTsjkXaub5VY67T08T24B1XgJyoXsy3cw8vjDRbLIbeU64Zn9JJtdfCUIiobscmar\\-Uhlz1moe\\-Ipi0G6dJhoXnazm1yVmGoe6uBbnEnUJlL_yT5lzl\\-O3q79qq6VLX15CmIdXYTSbYA\\-g\\-_2ZZKx0ZXzIghgMAe7igzPJF7r\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ac5e4\\-fd1c3ed5\\-c010\\-48bf\\-80f7\\-3403c64d5fd7\\-000000[\\/\\\\]+yKJGfwPhy0B_g6aWTX2KyiFLVnA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b18fc8\\-f2c49b02\\-ce69\\-44eb\\-998d\\-40c8b616ffcf\\-000000[\\/\\\\]+ZbSVYPy7t_6y8Pp0qi_dRsgVspk\\=394(?:\\?|$)" + }, + { + "hash": "81efe379a86ab355f55f5038efb13b27ff00996af7293e9a8c965fdd8fffe093", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329e5418\\-4442b174\\-455d\\-41ae\\-b984\\-99b8905f96f1\\-000000[\\/\\\\]+_IrMDPJziYK5C8ihMiNRGBSqr5w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232909d72\\-981ac14b\\-51e3\\-4160\\-8c97\\-03a2e045917f\\-000000[\\/\\\\]+vOP87V_iuFeEqOiffShwfkbVdjM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a3f1d\\-6440d93e\\-e771\\-445f\\-a987\\-2ad1f08d93fa\\-000000[\\/\\\\]+GM_EFQUts_aeQ9aYGPTVEBiggd4\\=394(?:\\?|$)" + }, + { + "hash": "05031c981aefb3ff701585a1458ec85e522703039746437f38d766d8e60414df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=6866532\\&pdata\\=DSXzjWEeds0hI6yJz87KldR581\\-xBzmBIAJCpvOF9gWqvgtG7r_Om9rwLv5UNBCPXRC41D2Phifw_bm_aPyYX8sC6ilJGoQBNS\\-93a1cXUS3FNGVhtZ1VDklm1blGnmR047mBsIiCc81NJHayrhArInsQdwu4tYQwWiR7pVzWElW3Ae4ob_dIL6XdT9RIqIh7EaFSX8trm6vFAa3HbBj4qSjfuVF\\-4ks19GitSP\\-3Ru3eO1\\-B39mHydZBDLF5Wv0aqGqxH809c\\-HZjGJSSdItqKs4ClTabTaA2l9_TyfXpdAZmXmBXHCVj5JobbEe5j0Qj9DZzY01rWecWn8eAtcngBsJQr25\\-tkOPE7IjZ8xnQp5JYEO2SrZKD5bPI\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232851602\\-98a0d8c1\\-5c11\\-44c6\\-b48b\\-6cab21e9ca9e\\-000000[\\/\\\\]+0HsRCh6AxyZGEj50IEt6oTMST7g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329e0bc6\\-ed036d23\\-5305\\-463a\\-b986\\-270160e3d5ed\\-000000[\\/\\\\]+LfUtmCJu7a\\-pOcBU45OKG12r9n8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328b8fb7\\-be527346\\-1954\\-42ba\\-a47c\\-f8fee425fdf0\\-000000[\\/\\\\]+sZO2sJqBtkohDwh2IGqLoUKaEfI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328501b5\\-f22c6987\\-b896\\-45a8\\-91a2\\-467dcf7e2654\\-000000[\\/\\\\]+xOI7oWsiF5IUhYArWLUmHR4BDjs\\=394(?:\\?|$)" + }, + { + "hash": "17368dc552fc00cfce65e20ad2a6bb96c8cdacdc09a4f60670577f9082cf4486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mobile\\.html\\?a3jaA1B$" + }, + { + "hash": "ba2198ed57fba78d986b099152e0a47afd1f6f85a35d1a73a246ffa3cf19ad65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=9661336\\&pdata\\=xvQvt7SNqIrN3of5h3nBboM9\\-3MD0G03S_OC9I7yHXOelPtjujTr8w9bL5YiYJvdmFn1W175BU20RgsDkU_91Br1aJFe5I_jAvE6qidk2cIj0dSiExeqgOXH_M2WFNN\\-\\-akWFVGdhUJ_QmJC4bHxvtoimoqAK1jEM0mdGaAtJTBJxhzHr3vDw\\-VVhp34QCkHcAprJVbIL6aBU9piAY2s0IT5Dxby7v\\-2Yq0uOo_dVuhW57Prqx2D5OTkbfBJhA44vPKTj12ey7t37Bo4J1SIykbiDJc\\-7ZrLPPaz\\-5ONqWlnhxqUYEsWD9nib3wo3W2jyHHgixRfnvhgOOyK4DFwXXgqhyhiiPxqaYipqq4r77UplMuMijAfRTGw_GXF7cZc0mLRelkVMOcPwztbiKH8eV_UtFkIULYQExV3i86gPRHOsFvGef9W49zNpYdaydOih4e0O7QRJ\\-VYPTjAhmFl5sXIK95o5rQGbqi9x3hR9QnK5m9R3H4gbnFckgCUOeWynbiAyOKtfqsCMMRWbKKcvsnhX6zAFlbPi9rm4VZzwV0Juwg8L5VsUfFZNkEm3cfd_vI8eFpMmL\\-O\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "06eec45d4a67f63a821c72098c6edfc4353d696608c1e5d8e8a134803e5361e8", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232868de7\\-6a2d9d34\\-fbfe\\-40ab\\-9f75\\-710bab18e02d\\-000000[\\/\\\\]+xrGGWE8fJZmyb4LDvVsgEtA2cbc\\=394(?:\\?|$)" + }, + { + "hash": "17368dc552fc00cfce65e20ad2a6bb96c8cdacdc09a4f60670577f9082cf4486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?18336990$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c8c2b\\-c6edf050\\-233f\\-4757\\-89ee\\-9016934b76df\\-000000[\\/\\\\]+nQqSOLpaOM5lM3YSTp0zf\\-3Qzf8\\=394(?:\\?|$)" + }, + { + "hash": "94b67857756598e3a2a08e415a5bebc0be63292f6d78c3177787f2b774f39454", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232834def\\-fb790d23\\-3028\\-4272\\-b856\\-58896e84b3cf\\-000000[\\/\\\\]+buQwDJ2WBw22AHp3UyIzBSlWnSo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232948012\\-aacbf73d\\-ff68\\-4ebd\\-a144\\-60d4ac359ea3\\-000000[\\/\\\\]+U2Q\\-6mPnebxOZaMY2bAgIIBt7mI\\=394(?:\\?|$)" + }, + { + "hash": "0c94900fcc9953b84f51e174a5259b679a9f3ab11814910e93f156a1beea90f4", + "regex": "." + }, + { + "hash": "05031c981aefb3ff701585a1458ec85e522703039746437f38d766d8e60414df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=6866532\\&pdata\\=ybpOlZeDEdX2Esb2b7y_vLZ0OTaRbuTYD8OAPQkR0LGpF1xoRUeBNSmSJh2EVgb6nSKmVftVMA4A1Sf3MZyJTJYmlVo8bw27mE5sqQRREKJZ5Nlvge8LcGUhmf6CuW1ogxbkU70_ip7cTwD4Q7MjiBkOMJwih\\-ApKEF2QA0PDi3dprx6FJdfl87C44N64uJ1nU8oPle_f9RZn3Ti3rSrCm0FiumieEty3xp0BMwjG_6wreldnc__QRVV8NX72N1gMsVsDuP3POPo7nfAsp9ww5V_Ci_fQfjePaN\\-jILctjIhVBByOTAeNUY60FNFpqeLhH3nqqSTJ63nG\\-\\-hxuzyJkipUh1PvII\\-pbCuiTsdC9HKgDFO89uc2JyeUzdshtdfdI9pRZzTHzPNGN1bEBZpGsWcrnptxpoPcsMVDuzQDHtiBlPBCVxQil8rcxoOWPJ1Z5s\\-HVW_PgYAi_nZmKu7e_b41hUC2tq16x5R_vsEkEFjfO3dfzQKrppD1q6ouQqTtIat2q2Krsak0ZPCW_SYQ0126SMV8Ap3T5n4BlQbPZrF8F_NOKYh7iSCntZKcA8W59uOFYBa8pekFNTy\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923294014e\\-2c12936b\\-d843\\-4076\\-bbed\\-bf283ed8e6ce\\-000000[\\/\\\\]+uTkVUi7PzRWrouAJBtZ0FdENt68\\=394(?:\\?|$)" + }, + { + "hash": "ba2198ed57fba78d986b099152e0a47afd1f6f85a35d1a73a246ffa3cf19ad65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=9661336\\&pdata\\=_hMW30PD97e8CTbZuG21ppgm4N\\-gXDhjsK4nF7\\-2pfs_dy7_xdlXLkjcCI6hd\\-rm5wpUzn5De0M95JQj_EdDzl0tV_LyBl4iUrit12aRtC6LgVEwDJzf22dcwYyTvrqTYM\\-NBPh1UIC1xguYpmNH3cLbRLJQkqYu5JSwSt7bFtx_cOduz_MP_DL\\-lBh1pSNx9rd4s9S7iyR03xXpMK2KC2XUZ3YgoxddUqcMY\\-jW5sVIkCvGGAc\\-njOyZK4MU05h1NPNRU8hJLLWNiFzCm1se9X7QOM\\-q_kTf5txNtt60cEZgklNJGePgj4LoG8jgv5uDgSOFWGQvMYIUS25\\-ps1IaLHUeRU7pqDlZLYF1PmSWH08Z6fxVD0o7rMeBo\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232866437\\-09940fcc\\-c1f4\\-43eb\\-b0b7\\-837a19fb4447\\-000000[\\/\\\\]+aSVPOoPxRLbYzUTjML39x1Psly8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232867c81\\-535df875\\-c310\\-4fcb\\-b333\\-2a895c0572bf\\-000000[\\/\\\\]+cKa4RIToXrUWGRcTPNSTcXMzPrE\\=394(?:\\?|$)" + }, + { + "hash": "1d979f61ebc5442dd85ee922c99ffb5040cf0f107b12c96dd14c205a5dd3b95f", + "regex": "." + }, + { + "hash": "05031c981aefb3ff701585a1458ec85e522703039746437f38d766d8e60414df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=6866532\\&pdata\\=j5wN47pRbN9XFwd6KfNDZE0ZmINln9_458SJGu5CRQKyH_\\-wC7SxV8VTkUXG0PiDeOwFmSXuA_ivN\\-bmZ6NWvdshFnasqRN9mzWTkDIJAdjU4E0dtdAzdZVWggR21rdPgSiIbPtczragikKe1HbIJ2naaHW2vWI6u6KS9y5g2fbjPV9\\-RtJONjpArmzxXeqepFP3tSSTfFXz9Q_3Bik2SRcK35dBWaVEM8kOdtRfHdWqHkP7udhxuVqbcIL3cdveAZ8qi8ebmDyJfbX19SEyyrubnmVMEqtr00hk9ItiNvOh_Mh9QTf\\-L_fu4lrUvIvWothTngVTsPxJDrekpkwe9ftcTK4HrieZB3NA2kFDBycvkcsWUnrBC_NhW04yNug0qS44UcJ1eBZZkUrbo\\-pgnSitXpknYj0x6TROMe85I46Sj1X3Hn83\\-0dew28XV39FXIwnROV4p0EZ\\-VsttZQDBoXGrx\\-wt9VsbGlq79fLJdSaqqiUuftMnxAms9wcj3FuLTbr_mpDen4XX81bNTJaHxKyvK0\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232982088\\-6951e753\\-e1ad\\-47ec\\-a4f5\\-bc34afccb866\\-000000[\\/\\\\]+t9FiKzbnyOAqZXSvX453BXGKim4\\=394(?:\\?|$)" + }, + { + "hash": "da1809953cd0b3abe439ebae329f998a859a62220f1591cbaea15d4badb7ceb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9063[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284ca53\\-e55a381c\\-2f04\\-4baf\\-bc02\\-4f2d5a1f19eb\\-000000[\\/\\\\]+4VLyW1QolzczyeCQFzE6npqs97o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232996528\\-7fae9b7a\\-2ede\\-4b5b\\-aa48\\-f405fba9a458\\-000000[\\/\\\\]+lUHnxDIazB1iNfIx9VRJd0SYjAc\\=394(?:\\?|$)" + }, + { + "hash": "d65c5b56891604b0e46398bd74fd4d213144749bbb03e62bccbdf740bf48381e", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923279ae7c\\-a7cf5630\\-60de\\-4f82\\-99eb\\-7724d0ba19d5\\-000000[\\/\\\\]+PvKP6CVPgBT6veEycROMWuS1xe8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328bac2a\\-749257be\\-3bce\\-46ad\\-8032\\-1864870da894\\-000000[\\/\\\\]+XK3_oKLbL7hgrLzGq01O7EPJLtc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328f39b2\\-50d4b772\\-8eca\\-4506\\-9b92\\-bdb49d6a6b6d\\-000000[\\/\\\\]+NtXXiAwdk7QGSKesntISwTP0\\-NM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923299ac3d\\-361385c9\\-d176\\-4c1b\\-aea8\\-c34cd13e92b1\\-000000[\\/\\\\]+eCwf_8WyvosnOcCoTPXORHfXxzg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329c4216\\-017d7fa8\\-5e64\\-4ed1\\-b36f\\-8133c6ff11e1\\-000000[\\/\\\\]+w7bQEBAbNDvOLbXTWI7DoLzq8iA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232792612\\-ab25c103\\-3f11\\-4707\\-a29d\\-1457ac2e8e7a\\-000000[\\/\\\\]+5HA6XyIrdikmRyIu6jDvWQNPlUo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923287e516\\-02eee806\\-f2c0\\-4da6\\-9acb\\-676f124d87c3\\-000000[\\/\\\\]+whT4zOy2\\-wU0C9rqeRyzeVPETP8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232955bb8\\-e61e6f1e\\-239e\\-4d91\\-bf91\\-61c979499b5f\\-000000[\\/\\\\]+ZVYA9NPegH6gLTwGrrpL1wGgcfA\\=394(?:\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3Du3___e9SqAJggS\\-2BQlpBqTyTiQJ0i3Mu2H1IzBgVCCn\\-2BjDZH1ozXNDPgth3T8tGMZ0w\\-2FIkkIFF7aLklrhmJvLuIGZN0rawke\\-2FIcwYgQZ5J2tQb\\-2FFsme\\-2FW06RVVoiESIN5X5iGyoxrWVZvnTZv1q7lLIVssAtyHGgVGGdR81t4uhcj7QvKQfyG6rKPvY6kVUMlKj2QsBfW6GJoaz3u\\-2BdGg6FR7tsuoODGqXUdszP\\-2Ft3kNRfWiq5hNYsVsp6ZaTDgXjLxBcOl5vCuJRAQgLUjd\\-2FZq6HSF4pXQMqDin8Exl8gSSLn3MwZnSGuqUTRrQaT2oQRnkgQxpDCrqN1cB7WowVcxwejJg\\-3D\\-3D" + }, + { + "hash": "352d0ff5be631b4c3bf90e9ae083d2f4bfadd70130c6d8fca520cd358786bf33", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232895434\\-0b9b83c2\\-b304\\-4146\\-9e3a\\-7f6b69f01653\\-000000[\\/\\\\]+b35\\-55hGpcg0FVjhK_qc\\-jEPTPU\\=394(?:\\?|$)" + }, + { + "hash": "cabee730ee3c03c8b19f178c45cb88b4a29271267234d163bb2e9709f6f7151f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6003[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b7aac455abce8a99b541400a99819eeb0dd78d77876874049475aa8221b845bf", + "regex": "." + }, + { + "hash": "7da8a6ee259a0ebe8c12b1f78b00941360bc7f61deac446e87c39f46a337a9ae", + "regex": "." + }, + { + "hash": "08014f5ec45ce67622570ae195059c20b4b86e91739140595beb391334a999ca", + "regex": "." + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3DlbiW_\\-2BjUYN7iVa\\-2FRRGgcfGNtAaExIRS4zB9Taq1eFI9r4kTnI3IM0pw59NkgW6hLZkK0Sp0B3AXadwGQF\\-2FvOfUgti1Rpl\\-2BHBpL4XDlsVM2lQHX6eh2sQDm\\-2FkocGB4zSlnLzFtNUCOa02hgFABKMY9\\-2F\\-2F9NOyze8MR8l1qHQpzF\\-2BC9flTT\\-2B1xVpHiDNobqleUwLMULEqeoWBSHqTBiwPIYHRkEu\\-2B9ILXRkC\\-2BFkgR6eg4MrCYyh7KuPWuuJRVSspkcpuBnCfTBOwWvXC0anopzUh0\\-2B0Nxcbp4m9pFAS7gztFzDsAhmmBCGMQ051sO23x1VCG3Ai3sTp70UMlWwGDKOtliq5xAA\\-3D\\-3D" + }, + { + "hash": "2452212828854fae5ec399854674937b507017795999d2e047208eef91e51415", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923283dcef\\-b8b8e518\\-5a15\\-4d37\\-a218\\-e8ede95e43b6\\-000000[\\/\\\\]+3BEtK2GrJoX9hTJQ9PqNFPkHf1E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329428f1\\-de61ebcc\\-e538\\-446a\\-af54\\-689ee8516648\\-000000[\\/\\\\]+uHxJ9MeSEIliZJ9fCQCqy49mE9s\\=394(?:\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3DgL3t_S2khdOHE26VwUwewrfsnmGVqZlA9R5mHTnNmi8FlM\\-2FQpSBYGF5DpDPMR278EfIiI\\-2FCJ6ynbcxPK\\-2B2r0QcYqipfqn5HJ9THmKnoeyJQ9iNgkbDHfcKSR9x8u3rxG2ztMm22tJLV4cY5nHSmf7MbMM8g5zYs4fNc04JM2hGaj8plDdC1VlPtvXKpsPbvQE2QZHNkuSgb1Ew3DlAJHyL1dAqOLmbwATNVM2ydagWHY1BtLqsn\\-2FWw5WSdEEK\\-2F4aaqLk\\-2B5EpvC\\-2BlCxPDw1MUfVfH9uNUgh0Dx1ewKjoaQNmlUI1c\\-2BIcISoRJDHCsTqvkdm982AL0dSVxp9khwb4Dy0EmIkw\\-3D\\-3D" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923299ad5f\\-c98b0125\\-5f87\\-4abf\\-a50d\\-353a2f241113\\-000000[\\/\\\\]+U2ZxfAtYkVo2nLUvnATdey\\-gR9A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ae2677\\-3762aeb8\\-c6fb\\-41f2\\-8b2c\\-a5354bb997d7\\-000000[\\/\\\\]+wLCfeX1TCnQdylHv1dfr9mA8LiY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232984283\\-65bec6b1\\-9c13\\-47b8\\-89ff\\-80b0c0bb2969\\-000000[\\/\\\\]+wvUOsAhXgZR793gcjGAbijnHZcE\\=394(?:\\?|$)" + }, + { + "hash": "e7df34910dc9329a69c4d6218c60be3e6b906d683a33d0246160c1afcf1d78c2", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328bb8eb\\-c37d6c19\\-d9fe\\-4459\\-a57f\\-1a37cf3cd27d\\-000000[\\/\\\\]+TXgvEmhTKPh2N\\-Il5ot9tvCWu7A\\=394(?:\\?|$)" + }, + { + "hash": "bc34e7c8b13f98b265e48cd25f850f025a6154756ec3cbd6e64ee8f632e797aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3DDw7J_w5KvWbf\\-2BSTYGeSpkoIXVpe25qpOzzmcPftE6Co\\-2B27anFe\\-2FnA8d\\-2B0f9jEDYfojKyyh6FOL22GlO3w6xFioJ5R48k\\-2BFCPvSQr1hkYsfxXij4Wfe\\-2FRZljj6pGforlXa2d5oOY06JfhGrgS9rrW7oIrwTT8XLzgOzet6GaYhjcHlO2I3LlLzE2wrOPUcoAz1rNO0K0Ek7HfiqVDJAjpIuQ5kqrCdk219xQuH5fc5Ov2EtBT38VfVANedj3zHzwOw9Ye7CyCqw2q4wifcCWUxOtytJvhPPNqcKhciZopE9koUwS7PiFK2rOoXHPQTAYi7kTo5mEf1H0h6IoVmanthy4Jrqg\\-3D\\-3D" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329f464f\\-d79dd4b0\\-f8c4\\-4c9d\\-b850\\-6cc86aee3a99\\-000000[\\/\\\\]+jj7_C0UIbwJQ2HAe0ZaEIjRVZc0\\=394(?:\\?|$)" + }, + { + "hash": "679c7dedbdf771895c79b30d90a96eb7412b91e0a7d1a158cc6f4cda74f9ee1f", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289df27\\-0fdb5f3c\\-50f8\\-447a\\-8bc7\\-ebd75c358cb4\\-000000[\\/\\\\]+QVIUSGxGNPzqde5M\\-dZeDt6KQFo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232af2254\\-733090f3\\-37f3\\-4b43\\-b675\\-96f0d03faa00\\-000000[\\/\\\\]+gPqlQjbofh_rsiJknnaWVRAZ1no\\=394(?:\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3DG6cP_BABGBVNCfBAyowzsiLehqYtKIlIkHK4bKtTHeQOy84gCRKyXQjGuADBcG2qhhVREzwpQI5DbrFkSWQLQEPz5EKvkpPRlWiIqQ83FLkdSorpg3b2hwlIyuL\\-2BywwBHIQW\\-2Bg5PptVS9fUZQpayY8ZkPwpk7wS0s8wMq68ZOs967w2uR3p22Zgz1wOAI7CbyvmMdPEtLru5PKzYnY\\-2FgDnv8mCwT1q7Ky2\\-2FBTKKY4XM8AFMqA1baArW55LDbgTzEcb6h1vCpPETDg5gyMHYW5JSF\\-2B5ALpAkbPkhvP\\-2BO6oAZ4TbJVj167kWDdKlkLhLGDa58mER\\-2FzBw26kwX9MR0MAU57Sig\\-3D\\-3D" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a4288\\-2edadffb\\-074f\\-43e5\\-9c95\\-15b02355d7a2\\-000000[\\/\\\\]+yHsCEobY1MV9u2UUbhhqtkNF1Lk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232820140\\-31c9393e\\-f727\\-4d48\\-adcb\\-11d32e7621c3\\-000000[\\/\\\\]+zvSBRBR9jG3zIiz4g1TBvUryjhE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a07c3b\\-2cb8ecce\\-1fbb\\-4d5c\\-8c24\\-0387af009b04\\-000000[\\/\\\\]+bDqI0nLugOAKLWb0WnYhUok9hqo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328f74f2\\-f142f257\\-8007\\-4657\\-8b4f\\-0c6a8601aaa7\\-000000[\\/\\\\]+CePvtMl7__urgujdr0dmCuLjMYA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328048c7\\-f6bd47aa\\-f7b5\\-4ab8\\-bdb6\\-0e0b6c3e7b21\\-000000[\\/\\\\]+rKk9AfyteYUgPmALq5gJGVp\\-1GA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329fb665\\-257754b6\\-3d11\\-49a1\\-a642\\-6b339478a05b\\-000000[\\/\\\\]+m9Hy5GRWQgsYBrVJMor6p3fXUJ0\\=394(?:\\?|$)" + }, + { + "hash": "17368dc552fc00cfce65e20ad2a6bb96c8cdacdc09a4f60670577f9082cf4486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232adc871\\-7addc48c\\-41a8\\-4c58\\-91dc\\-e04048755576\\-000000[\\/\\\\]+p44FI_IH6VDS6dkTw8O3ZfUdduM\\=394(?:\\?|$)" + }, + { + "hash": "83747748aca39cbdb13935165990ba2680e441ab4ef50afd954e0d8c4c53d77a", + "regex": "(?i)^https?\\:\\/\\/signin\\.securemphxrolkg7\\.162\\-243\\-83\\-82\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bc34e7c8b13f98b265e48cd25f850f025a6154756ec3cbd6e64ee8f632e797aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mobile\\.html\\?eJgT0Sc$" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dqQ0sChdIHv31KuAS[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "4662ec3a7cf70441e96f78a441ca78ad4e0d3cbc41dc273f2fd305abfcc8c47b", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232991a1c\\-ef128bb6\\-76b8\\-4f65\\-baa6\\-39a2a4e3f2ec\\-000000[\\/\\\\]+BmBmSo6pWnJYQyduPSUlp3itvik\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923284698c\\-227fbc8a\\-f056\\-488b\\-b9be\\-8d9024c08ad8\\-000000[\\/\\\\]+3bYIv9_BgHIa5RMh_0vZ3mh5pJs\\=394(?:\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3Dw3Eg_MNI2zvAECBmaLBu67\\-2FUL4uIaN38\\-2FZ16INFyR2xRo\\-2FgYl8MhaOyOUz9duiaEfaD8Lm4\\-2Fd4At5fQwmWoBdOZzjCVulB\\-2FGBnFb0QhvGA9sr0wVTPzHg\\-2BTde0ipanHERIBBztQxEBKn3wtHLOvcU3al2J9AxlYlcarD3vGW2MgbFbQpXSKH6amgaNeV6TdRiltP6nIu\\-2FUrfTSYyqU5kUAUAx9OT9w\\-2FJf3aGhwkdtxXvqVlUK90ax6WWTktTfHjBZkpwcZ9sYWLKkcAIv4Khq6vtdhA\\-2F9fNXqx3tIaYufO9mF2\\-2F46Es2QJgY\\-2Ff1vjp2DDYaQjBuHfVQ59y\\-2F5OKB7Tg42iYg\\-3D\\-3D" + }, + { + "hash": "83747748aca39cbdb13935165990ba2680e441ab4ef50afd954e0d8c4c53d77a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+security\\-check[\\/\\\\]+signin" + }, + { + "hash": "bc34e7c8b13f98b265e48cd25f850f025a6154756ec3cbd6e64ee8f632e797aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mobile\\.html\\?w8JoKsb$" + }, + { + "hash": "adecb7962b1cc6dfa3b06350f6d4ab8e398eaaf302576acf63b371c0001dac1f", + "regex": "(?i)^https?\\:\\/\\/pub\\-f3a335c3131047a7a157d355c61847fa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1bd325168e323a796b4afe5b3e192cc24620339e5c82c3f97070cde29b1648ce", + "regex": "." + }, + { + "hash": "8f69dca2dbcacf025135b4e19b520a247b6a7e051847307bbe15bc478bee617c", + "regex": "(?i)^https?\\:\\/\\/geminibomber1\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "21e1be702c61f694e239655f34cc5d1925aedc49003fa9801b549cae5e7758a5", + "regex": "." + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3DrSxe_9qDhfXQRUlQ02ctWRucUWUc4PBCUS\\-2BAafQ9u8aXLCGYTuk0pkEnJzxNOjjz3AO1\\-2BQFh\\-2BgtMUuOFD\\-2FiDu5ApU3wkZ1kXwFHIZreojjGN55iQT7xGs2oM2G1j2wUZ1eXpq84f9xAmXhPSepe\\-2BrUs0sWHe3Ixtr1ZqOHTNiO2dTgS6\\-2B3hQFm2J\\-2FedWgB4ufh\\-2BEqj2gXyu1k54bDzFZDPRxBGw7eeSkLYhM6mT5LAsiwvJ\\-2FQ3ojaO6MSQY3g2vjkeIvIWXVNkuvC2Qi3ldfdcV\\-2FGXKvjETgYMFVAja1zM8pi\\-2BvdI9gwB\\-2BIwTUDAGXAOUQQNyKQUfAqqzAUJhyF\\-2BRsJL3vg\\-3D\\-3D" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a70e70\\-78d127e9\\-fb67\\-4d69\\-8b94\\-b513c2d14087\\-000000[\\/\\\\]+q7JqZo7HLi1lK2zY9lAA890wZZo\\=394(?:\\?|$)" + }, + { + "hash": "5461bc37c56fab994755ee244965fb8f94f0977ee9f253327a254f9cc1c1c415", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9010[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "79cdd880f828f45beef73fc12a9e7ad96ed5276048638f0541647a4801ce4e18", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Mobile[\\/\\\\]+Trade(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9b43543060c9845e797f1593ec6d77581df36c22e97d90b4986dc55ba7795f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297f06a\\-1d3bcf2e\\-2557\\-430e\\-9f22\\-8ebdd9901636\\-000000[\\/\\\\]+Kjxm2SUUxBHU79a9lvUI3sXdTr0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232866d2b\\-dc51a3de\\-4281\\-4dac\\-868f\\-dce4cc8c78f7\\-000000[\\/\\\\]+h0y8nqG_DUr8Cu8zczRMJTUSQEw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a2e33\\-89152470\\-6adf\\-4abc\\-9cc5\\-075ff67953ae\\-000000[\\/\\\\]+zX4PXX8oHHgnDW7UBBDseyYmxm0\\=394(?:\\?|$)" + }, + { + "hash": "5cffc0613886776eb53fdd5a11f2d19d7b4a6b99eb0e2f7e4e28978079391142", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327a061d\\-d622f625\\-2cdc\\-4d03\\-b7b6\\-9cea5defbdba\\-000000[\\/\\\\]+KPOPR0QGoTpY6Qy_CZ5LNjw3\\-ic\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a07543\\-fd7b5468\\-c3b4\\-4a6d\\-9de9\\-0cf16bdf1177\\-000000[\\/\\\\]+LwByV\\-4Q\\-7Gpq0YODDJY8fdnvV8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329bad60\\-7970df8d\\-9e5a\\-4f3a\\-9e5a\\-87590f1f1c00\\-000000[\\/\\\\]+3vlHEHjgBhEORZXANpdthsM9W9E\\=394(?:\\?|$)" + }, + { + "hash": "090d3719d92a8b707ca38fbefaee8d20b56439f1f5fa6c119a25d123f7371946", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pts(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8cc8e1d9cf04daded52f350df481da3dec40577f3a3c40cbaaa4b7c11fa0fa6e", + "regex": "." + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3DWJaG_rZN\\-2FoUmuq6Eq\\-2F4JG9K3ufpkzsMaCQPnlOUre3lnOu\\-2F93iWhPP\\-2BwRJlRnztHcOb\\-2FVPqxEkBeWt3gneVz961uJCG72vi4r34cJGD1gQk7nAiEZT\\-2F8X940z6lZbXvqsKT0YejvmiSa3\\-2Fbi8Nrp8a\\-2FqMQ\\-2BfM0iQHPyr0LRAzlURf8BZ\\-2BkXa8\\-2FxQ0RveqYVoiyPaWjoxfKKNjy6TL3ae2fbpt\\-2F9Nqx0dN\\-2BDKHkQcFpeQuP5jtEXspWUmmLww3NQSAGQZtam\\-2F2qgEqiJknLP\\-2F4h\\-2FtGmKUh8\\-2B2Gi5VzM14awB8W6p9q7h6l3yppX8xywwRK\\-2FKkPSYsfX6dqJuuq1AW3qUyM9Q\\-3D\\-3D" + }, + { + "hash": "05df9c38afecd63bab471f14e6ff381b2b12d9e2fed17ec799004c1acf191762", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232938411\\-e97e310e\\-4e1b\\-4f6e\\-9406\\-59ae16beb4ff\\-000000[\\/\\\\]+EWrQATCmkHdTSYVHfGFDS43BABw\\=394(?:\\?|$)" + }, + { + "hash": "a7274204896ed66a58cd55a5f4addbe0e355a14351ef3777f514abf330aa146e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "81335b70e7727ea2fa5aa173c5bbb3836124e2595d9f190bc9d993ff175eae5e", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232abca17\\-b3242093\\-135e\\-4da2\\-aa4a\\-37c55296856f\\-000000[\\/\\\\]+FsonLb5PyCZlGdA4tHvX45r6mnE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923277ef3d\\-611c2d94\\-59c8\\-4e00\\-9417\\-7f0ca44aa4a6\\-000000[\\/\\\\]+YK91BqAZ2CHGZqRfqeoqKN62Pf0\\=394(?:\\?|$)" + }, + { + "hash": "3376834d0998431a4071d1fed0dece1dacca59f7170c2a38ac2270d5f949d21f", + "regex": "(?i)^https?\\:\\/\\/bafybeig52coe57avvxdm6br2474zm2hmabg5rzsyyfccombu23mn3mwgnu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328dfe88\\-48615a50\\-5c31\\-46e5\\-af61\\-f65d5257b79d\\-000000[\\/\\\\]+EVdTHaKoR\\-0sdQOrGefDBj8FLZ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329ad2c6\\-6eefe006\\-c985\\-4f54\\-85e1\\-1a77f04a750a\\-000000[\\/\\\\]+C3AD55ZuoBTahGjL_ib9EXaMinA\\=394(?:\\?|$)" + }, + { + "hash": "05e2856b6b941524666c229097373f6fd90c5607c0547bb7b2cc7f00f3d0d8f3", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290b9d7\\-bac27a57\\-9eab\\-4b45\\-b6d3\\-0c2aa65ab8d5\\-000000[\\/\\\\]+OPhV8QXTR\\-fLeujavu6oGJL4QMs\\=394(?:\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3DulN3_C63C\\-2Bu29RLyKG3Xahr2s6XqH6JEQ0tYgfIy0KyjmAat\\-2BjMjIKRsprJ5LAVUVuVmIeDEuaDMz3Y\\-2FinR\\-2FYLM7OrD\\-2BQaBtWMvhwYfPGB3EHunGfzyWxHIuW567HRRWZ\\-2BLvPkz9wRadH2UdNkioZa1\\-2BfPu12Tn6kc\\-2Ber4n5ARqpGzzh116GnW2YZnQf\\-2F\\-2FiMONDSHLbqYv\\-2BWZG01CNXbRbGyum36gAZ1swiFVSl70A68o\\-2FoyBftk\\-2FnK4litPUor4513iMg687wWD3YT38NCPSewfVadyRkGETRzU2jrOnmb4TID2O0ie3MhEbS6RKdtZjx0RSuO69gnZ\\-2BGg3meqz\\-2B3m4gWA\\-3D\\-3D" + }, + { + "hash": "59566cd096b5104a7ae9bc847561e6e83c1bdf145b5d63d72a9c3dcf7c9b0c6e", + "regex": "." + }, + { + "hash": "efbb014670e7686dda91a180dc6afc774d648311f500886d391ffaa9fd5152f4", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ab19b1\\-0966e7f2\\-eaa0\\-4a7a\\-a469\\-b71a09d3b10e\\-000000[\\/\\\\]+gn8c2U2\\-T4W9ZefSPGv_tCn\\-v7w\\=394(?:\\?|$)" + }, + { + "hash": "bc34e7c8b13f98b265e48cd25f850f025a6154756ec3cbd6e64ee8f632e797aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mobile\\.html\\?ts\\=1$" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko9Jrc8X2PrRNCRlEa8Mj7XMhJWDmchA6RQSqd\\-2Bu0TfeuD5WNVqhxcmsjGR5HPmKvAg\\-3D\\-3Ds68G_4Y0wWVNv71hDZu\\-2Bw32k2y\\-2B0oifCUmRODynj\\-2BWLZI4DtAujI8yNUojmGbh5p\\-2FR\\-2BfKq0UHrif3\\-2BZ6IeXsRO2M8Tax\\-2BD4e92p3R2haAVelmNhpoC74FmKIf1716akCTxTaEOHq9lmlMu\\-2FwLXGoVlYAaNoX\\-2BeANyHZTCyAti3AydHd26765qFoFQTs\\-2BrcjF3XoWOKKcqbe8at\\-2BZ673YYG5K4wf5vcZVHU2kEcqdplF\\-2FvqcDpzK6mRRkY4D\\-2Ft2Ll1q0XXcgQiIyijxQzVDBvV0ssdR\\-2FLbhvkIUXxNSmTxBSczrzqLteYS8XyCogyKY8LzBrUfcprl\\-2FoPj9Xb3roHa6NDD0w\\-3D\\-3D" + }, + { + "hash": "5c507af6f0680079d5e4ae21cd2e24bbd4996d76db0fdfc8e63e3fa522a25f98", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232913538\\-5fced638\\-92b2\\-476a\\-aea2\\-468b97cf3047\\-000000[\\/\\\\]+RJK6GBF1f\\-iAUC\\-mRtSUyXUIHnw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329680ee\\-ee0996cb\\-b569\\-44e9\\-810e\\-40034a1c4ef0\\-000000[\\/\\\\]+ZpBF1wT0h3YogsdvNm8OqvZGnFg\\=394(?:\\?|$)" + }, + { + "hash": "cd29abcad0fb17c694220204c4c154b590c2a1c6f152b883d5f8f0546a3e99ed", + "regex": "." + }, + { + "hash": "bc34e7c8b13f98b265e48cd25f850f025a6154756ec3cbd6e64ee8f632e797aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?70884701$" + }, + { + "hash": "3be380838cdd47b003c9b190626879c6b3aa78d88b7551b6c7f98953b4fc5f62", + "regex": "." + }, + { + "hash": "10b4b2b590d5939405df0f9268ebde9ed87f1bc8b76a35f961db02708ef9e98f", + "regex": "." + }, + { + "hash": "6fcac26f521c5d2f503f6d9f2ec9ad2347299836c71d40f1ad511f5cf88a212d", + "regex": "." + }, + { + "hash": "7dc08f7599f8f035297dde45ec2eaa985ae4025668fd5ef2dba8a46c6d4bf381", + "regex": "." + }, + { + "hash": "71ed1fb247ea5e5b7df53eea3698273887dbc89372f0e9a2443d7643682228d0", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328b5323\\-9ef6d479\\-29ff\\-4f4e\\-8d83\\-813d77d6f7fb\\-000000[\\/\\\\]+LZfq0NZQA3qjMGIZYp\\-pP3C4hbY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ada731\\-dc1972b0\\-a581\\-4870\\-b874\\-d7c053674340\\-000000[\\/\\\\]+BJSQjqnwef_70RmLG1sqUB6RFeo\\=394(?:\\?|$)" + }, + { + "hash": "5b078ce1d7139bf589915ea6cc0fc03246ed92da48969ee61721ac12bbef9211", + "regex": "." + }, + { + "hash": "d418fd05a06cf2fd96edb67795cf142fda26699111087f4333fdd7286dede0b2", + "regex": "(?i)^https?\\:\\/\\/www\\.signin\\-amazoneservc\\.50\\-6\\-172\\-177\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+lianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289df27\\-0fdb5f3c\\-50f8\\-447a\\-8bc7\\-ebd75c358cb4\\-000000[\\/\\\\]+QVIUSGxGNPzqde5M\\-dZeDt6KQFo\\=394(?:\\?|$)" + }, + { + "hash": "7abe81cedc6c2f604cbf12dd3d5211990dc3357c73383635eb5924d508f6a7d1", + "regex": "(?i)^https?\\:\\/\\/pub\\-ccb0de51affe4d7ab10e07ebacc6dfb1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "091537256bbee0a7037fffb516e0810570e3bf0447d667d0291d8e986472b470", + "regex": "." + }, + { + "hash": "3171a4cc577508e126ec4fa1baf4212c73a1ef979c897228cfdc14f3d8931b75", + "regex": "(?i)^https?\\:\\/\\/pub\\-db5cfed28a9143708e3e2ff6cc1d01f1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "081b6e3fa3965e384a89511674ab9773ee5d2264985182482893861197f17f75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49f06bf4808a56c58c305749e1c5ffc839820ff2b00adfc5b150a5956827a282", + "regex": "(?i)^https?\\:\\/\\/pub\\-881f6a6d9b6d4c959ae12f3d14cfdc1c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bd818a2a7509dea11eba58c560f884d95a52f69676ca0a12a25c48ba689578ce", + "regex": "(?i)^https?\\:\\/\\/pub\\-f2525c9d4a10424baef3d6180e2c798b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e08d15ad758e65bf58cccf601e30a41f4984ebe93c993c9ff0ec67c7cb7fea13", + "regex": "(?i)^https?\\:\\/\\/signin\\-amazoneservc\\.50\\-6\\-172\\-177\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "797197e473f235cc1eca4c03d421eb143d90b53902fc647432b532094ed14caa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bvk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2efb28f23119e76d49660b7ac8f8408659f93a9dd0740c0aeb3253a3f68c1641", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328a37c5\\-1c40ecb2\\-1f0d\\-4227\\-a9e0\\-79b0847b4143\\-000000[\\/\\\\]+6WijKfQqhCsOWHmVY3_xkAxVoXE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232800e8f\\-47909337\\-a029\\-4d6e\\-a50c\\-76dc67c6e621\\-000000[\\/\\\\]+Qg3Ko\\-pUb5JNO2KCJ2lDZqXlEVk\\=394(?:\\?|$)" + }, + { + "hash": "e9d6e4ed6b40c4144d3f84646a224841083ab9ab27a9b4c0fd87b296ac3adc59", + "regex": "(?i)^https?\\:\\/\\/pub\\-4045a67b9e764386a724749f8ab6e56e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0fee36065ced29e723832cdf32dad5bb7486683098b38f3b80b2e44ff171f1e6", + "regex": "(?i)^https?\\:\\/\\/pub\\-b6c0c00154e84ff0bf6b50b07f514e02\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e70ea8e6bb631bd5f70cdaa96eb58f4c3998b422559aa4663df0370b7c12bfbc", + "regex": "(?i)^https?\\:\\/\\/pub\\-9ef4db8cb91544da9f1508bdea45d219\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329e0540\\-14104168\\-75d7\\-42eb\\-b759\\-d926ab0554ae\\-000000[\\/\\\\]+uKSU6nrer6htSkBD64O8OsZjgIY\\=394(?:\\?|$)" + }, + { + "hash": "e8e4362f68b81bcef3c22b738c47f971b9ead478d0bc2a7e65d58f369815fcd1", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232799fea\\-2f2c2d24\\-45b5\\-4de2\\-8d3e\\-2bd755697340\\-000000[\\/\\\\]+nrFBFxUw8qgqK3pa1OGD8wzNF9M\\=394(?:\\?|$)" + }, + { + "hash": "081b6e3fa3965e384a89511674ab9773ee5d2264985182482893861197f17f75", + "regex": "(?i)^https?\\:\\/\\/elaservice\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "4275db9d3055ebadca1f0d34a8d4a67c7adfbec3f7b3e5944f3947297d578f9d", + "regex": "." + }, + { + "hash": "a19d8b4e105feb67a9d9dfd7d6ffd45b7e78d914a01ca6bd9a0791004c2d7f2c", + "regex": "(?i)^https?\\:\\/\\/pub\\-bdc7ec182e8e47849a4d9d595627bad1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+k263(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329d104b\\-141502dd\\-a6f1\\-48ca\\-862c\\-5cbbecfb3db8\\-000000[\\/\\\\]+WanAyIsgw2lGHMBLBLAwTTgzJsY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923287e121\\-e2e26c91\\-921b\\-4311\\-a515\\-dd87bad6a71f\\-000000[\\/\\\\]+KJCypnuCQqV3\\-GfXRkzv8cfdGbQ\\=394(?:\\?|$)" + }, + { + "hash": "e02f7a96873bf1b6562157e784e6559e359259e9d9153dd7a7dd609d260a3960", + "regex": "." + }, + { + "hash": "b2324905210ec4243a2e9c455a5ea4a2c6dfbc3b6c8aa1bd7a6224a11d8f3cdc", + "regex": "." + }, + { + "hash": "31f6e8dcf915485fd1a097ff4406ffc41994c49b2f33261cde4759e6932cf9af", + "regex": "." + }, + { + "hash": "caeb05fcb6e6076bd4a9e795671ef4681babeb18d3abfcb3e08b4dbf9b371836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=9661801\\&pdata\\=tBwg_IEmdZ5yUlNBmjaHpBmq7bPQl9QK6Fss4Mj91PvSRvHnKEJHXM6TuWGAdaFGSbz_GPZmZPv9JH1dtxcJdNbDKf5AaQnl1vJMgdVnjJO\\-3hc0Dw8dpNTpC59gCL0k51PCBMCXCLvyRzzHlCvMFv_sotun8T0YNKY6V7t6weNoGvx3jCTRNxwMyhur2FobC4OiLfF64vK5ldMvBgUPsgcEvEKqwaTuhG6MdAH6hDOcy3LtJg9tatAJY7yjQ9QnGJvO3iA\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "caeb05fcb6e6076bd4a9e795671ef4681babeb18d3abfcb3e08b4dbf9b371836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=10121624\\&pdata\\=voUrXcqNjASbnSWWic0U79RelqyHNRryeFEtuVWxFYKcvTqE7oS\\-mLNz65IFCBI1tdmVXFLiVJXG4jj7K3mdjM6ZnUIva95oHETmqgqx8EU\\-Y\\-rJtd1exNOgulaz7MTSAp_vzQOzdF3Ifz9VCVYXDNtYz9_faevkpFbYGurKkvAeAI9jQ5xYwerhBVxh0007WWmlcQFAttW7EzIfklEMZyGh8xpUqyRLh5kTRM4VQTSdYGRskTFeQUxn3wzH7YgfprpsVGLjhMyoWCib\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "19ab5802d046a12371fdb925be0e64ccbedd159883fdc4e6cb98f64a4940c3dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3191eb681bdae7d74182cdfdc9bb28365b6ad1ca0b79dcb7c4585f516caae67a", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923285149b\\-3badf434\\-20e1\\-47ea\\-ac59\\-add63f8f8951\\-000000[\\/\\\\]+3KMRhCnjtCB46oqWXP4a6LO6W9w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a5f0d9\\-f301a6a4\\-bd4c\\-41df\\-bd90\\-27d2052a3ab6\\-000000[\\/\\\\]+KIlV_FxDM_pPRO50fGeLU5KB1oA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232913397\\-6c2800b1\\-f0b1\\-4f5a\\-b027\\-5d229a120daf\\-000000[\\/\\\\]+ZGauj8iw0isI6kVZSN8_YLke_Uo\\=394(?:\\?|$)" + }, + { + "hash": "4a933b407b075b532c18bd57140c633f5e5030203c1c658270a7f220e09f4a5a", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232786666\\-ff6a8aaf\\-79ab\\-43fc\\-9665\\-c3a2e807a18c\\-000000[\\/\\\\]+qJ_mr0ShGRnCWR_v4eFG5AK4ttw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327871c3\\-bf175493\\-273a\\-4c20\\-a38a\\-e1245b0b3c57\\-000000[\\/\\\\]+wuzo3I8aY2J0VZMp70S\\-2DdXUFY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232981833\\-c9005591\\-8de0\\-4d9a\\-b44a\\-756d2f1a1ec1\\-000000[\\/\\\\]+3o\\-i7QQUnW7gDe5oWtFiC0hApNI\\=394(?:\\?|$)" + }, + { + "hash": "be9918eb87a41e706a3e9e5551665a8ae323d274a37af4ec91b7a60fe35caa26", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232abefe4\\-c5b24cca\\-f26a\\-4b46\\-86bb\\-9876499f473a\\-000000[\\/\\\\]+xVeOvX_AMcZGNuvbJUWs9l9vYGs\\=394(?:\\?|$)" + }, + { + "hash": "7ce2710ff5dcabda5edff099e9ef68bc995ff5b381f05064479e457355bd6668", + "regex": "(?i)^https?\\:\\/\\/billowing\\-tree\\-b282\\.dattings\\-our\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a10442\\-f19e78fc\\-87d0\\-4e22\\-811d\\-0706fb33024c\\-000000[\\/\\\\]+RUifx9zbh8QBWSHxshro6gEMggU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923299d135\\-cccb5cf5\\-0b83\\-40a0\\-8910\\-547fdae50b24\\-000000[\\/\\\\]+_pR3I1KiKYBX\\-zGAIbUaSEkAydc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b8e39\\-c8788a67\\-be65\\-4a21\\-af64\\-3c3ac12178e6\\-000000[\\/\\\\]+EI05Ee2olthNppLunuZVNvgYPvE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328486e4\\-87039f9f\\-feee\\-4dbb\\-8e43\\-ac347f23313d\\-000000[\\/\\\\]+SEwf0aVewxXJrFUp0tvII67PMpk\\=394(?:\\?|$)" + }, + { + "hash": "a73a521e46e8a7fdfc16bfca98aca3aa35c94896a169e80ed3a8d721d50c4a66", + "regex": "(?i)^https?\\:\\/\\/pub\\-f759758d2d304cf98efb20695e8165b6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923289ad5a\\-d2231a41\\-15d8\\-44e6\\-94df\\-076f01790893\\-000000[\\/\\\\]+oIPT2QaIP63KAPcS0dT9nFOTSpA\\=394(?:\\?|$)" + }, + { + "hash": "beffffcd759803814874277dcea38348b30977402b0c5d1b2e596930cfb5499c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9969[\\/\\\\]+entry[\\/\\\\]+register39110(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232907a32\\-38932869\\-325d\\-4e02\\-8c94\\-29f9e998e63e\\-000000[\\/\\\\]+yhyBnRY6LuBhF0RGMo5_1iZgch4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329351a9\\-465fca58\\-ae11\\-47ec\\-b964\\-9f70dee60756\\-000000[\\/\\\\]+PhVgN598Og\\-UJidjvo4Z\\-\\-orNUQ\\=394(?:\\?|$)" + }, + { + "hash": "438d6f20ceede095a0998927f616d42d654b492efb3409b26bf0fcb3b44adf80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923287dfea\\-a90df6b5\\-b677\\-4e2a\\-b4a5\\-9f95dacd53c5\\-000000[\\/\\\\]+wOJesvz7RLNh6K5RfoNI\\-SjtPVo\\=394(?:\\?|$)" + }, + { + "hash": "4cb9dc58bc397f17e553a98b737279a8054509ff754dbd0548a95c63ccc0d829", + "regex": "." + }, + { + "hash": "94b7c2094148bfd7a7b9a5671784745b9e4530d35240b155bb807fa53e47b5cf", + "regex": "." + }, + { + "hash": "8b6686ecb593f6a0e73cde403ea19ae885bed8475a0f0f58d9b7e1ee56621bcb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+na0adoc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232999ed8\\-ed196f3a\\-7f85\\-4f39\\-b144\\-52e9dc2657ef\\-000000[\\/\\\\]+T4vqe3yg_YEXBouSir3UhK3q5_U\\=394(?:\\?|$)" + }, + { + "hash": "6b948ac83995d073efd3e858ddd8960d5f5763464c8e6fc5c99919c598182864", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ddc52bbfc20c89c3d9f2b22f8a62d891c557a50ae168d48f3a175f78367114d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "d2ac027e53998d5bfd4ba133093aab309f57622da6abdcf343b792dedee7c431", + "regex": "(?i)^https?\\:\\/\\/usermobile\\-session05\\.my03\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ab2ec\\-5da04b2b\\-1be2\\-4b24\\-a720\\-983c5bc62c9b\\-000000[\\/\\\\]+bHHLgoRGAhXZqcle39NlFsju8Z8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b08852\\-a0d3589a\\-8626\\-4557\\-9ef9\\-57332c2b4357\\-000000[\\/\\\\]+G5G93G8w87RzFaiT_PM4zpUwt38\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232812528\\-276e312c\\-2b98\\-48d4\\-9ccf\\-35bc4176eda7\\-000000[\\/\\\\]+8uN_TTEElSSFO2GbLVOFLW73ud4\\=394(?:\\?|$)" + }, + { + "hash": "caeb05fcb6e6076bd4a9e795671ef4681babeb18d3abfcb3e08b4dbf9b371836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+TOKOPEDIALINKWEBSITE" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329b404f\\-71d120db\\-aa2d\\-48b8\\-bd0c\\-cdf6cb3f94a3\\-000000[\\/\\\\]+28OSbkWbGAi0TEei7euEgFdLBVs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ae7d1\\-7a2622b0\\-04bc\\-47ac\\-9bde\\-7f4b40733c38\\-000000[\\/\\\\]+ndr3nsDLc9NVM_L2qh8zgJHe6DU\\=394(?:\\?|$)" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+k263(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327ed29f\\-944ce6dc\\-1d21\\-478e\\-bed4\\-8ff566ff740f\\-000000[\\/\\\\]+NchTubnpgt4eLPyVt68XNcYfnto\\=394(?:\\?|$)" + }, + { + "hash": "ccebe3706820e8ebf0e054278a9074c1ef9786b45b0dca644d865f94b6cc8d14", + "regex": "." + }, + { + "hash": "adcf5da7f066e7dd0393550316e369e99f8afd9a1ef7dcd1f71f652560857646", + "regex": "(?i)^https?\\:\\/\\/odhuufcm0\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "153cc75c100bce14d05f2fc3c8fa778040b9a9e43e03569bf770af0f8f6ffe69", + "regex": "(?i)^https?\\:\\/\\/www\\.sad\\-goodall\\.43\\-128\\-88\\-114\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "277a22449ceb87f9f14db956508b3ae6c65e68a9f6e391f3b951b47036862777", + "regex": "(?i)^https?\\:\\/\\/robloxfree7734\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8712d489b8fa8987f8125a41c2a65f906d93ed3e3f6d2ec85d67d8df74215ef9", + "regex": "." + }, + { + "hash": "9230a6740527f1bdbfe868e8cbb432b884ae7ead7a930fb48910dbdd2a93bb8f", + "regex": "." + }, + { + "hash": "6aa9c97d883238540d9fd573e064c040ed6ed7a2b06297d48795dfe1889bae4b", + "regex": "(?i)^https?\\:\\/\\/2l4k72wt\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "555dfe7dd66d21b6e5434a1e57ae416954c93ac0066768f6344ad768fae22bcb", + "regex": "." + }, + { + "hash": "0542f40009d7cdb054277d8e25b8127c1366d3c9b49167867f64ed175f402000", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "aaaa2cf4a95a299ccccad1e633a7fbe46f89042c7bdec329d319504d04c5a32b", + "regex": "(?i)^https?\\:\\/\\/0898k365\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+lianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327871c3\\-bf175493\\-273a\\-4c20\\-a38a\\-e1245b0b3c57\\-000000[\\/\\\\]+wuzo3I8aY2J0VZMp70S\\-2DdXUFY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232af55e3\\-1ea820da\\-8a3f\\-434a\\-87b8\\-63bb45de6034\\-000000[\\/\\\\]+7a7rS8fungGgCQ4KV0EV\\-kymKlE\\=394(?:\\?|$)" + }, + { + "hash": "8f3b9c04dd783794c357cade43d6dcd8463d92111b14a7eac73bf99da8da2c9a", + "regex": "." + }, + { + "hash": "0dd0a03f15ddddd4c2db21aa930cc485e75bebcd2d8793912a2917143ef97bda", + "regex": "." + }, + { + "hash": "f3c66612453869be90ce6d4c3b117d85faff87afa6f4107dce085d52beaa52e7", + "regex": "." + }, + { + "hash": "640732ccbb85aa5cbb1befcbb605b346f526fb4668b0c7f0e2ca2d925739d660", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pazz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fb7cb2f0b237f7219f21b3b3966a8b4b7ed9d7c160c69ce221c1ea182224941e", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b13c3d\\-cbf545d0\\-6bf3\\-484b\\-b8eb\\-1e314a019d3c\\-000000[\\/\\\\]+hSyCnI6E6Arjq8_F_QHTG7RlLs0\\=394(?:\\?|$)" + }, + { + "hash": "df57f9d8d2ce359319d64e73e7ced426c234249c1dc6b220d87deba0fe4b5acd", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{3}\\.emwj101\\.vip(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "914315928ce0bc77bb9301860dcedd4a9f7279aa17c762b93315fe36f18c9108", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?web\\=hairdresser1727187087021\\@freeuk\\.com$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e935e\\-7770752d\\-c979\\-4138\\-b90a\\-3bb32446d214\\-000000[\\/\\\\]+RGY8S6YWcWkoC_xWEw3w3s1jkso\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329acc97\\-85f30996\\-eddd\\-470f\\-b5b5\\-8af6d97b0765\\-000000[\\/\\\\]+TLYhWlk\\-ivuzdpczEOxe3OPBors\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328e0bfb\\-766d70d6\\-55d9\\-43be\\-a01b\\-d59926d0e9b8\\-000000[\\/\\\\]+llrS6yHLFZx5jMlRHaE6\\-lBJ5xs\\=394(?:\\?|$)" + }, + { + "hash": "e2f410f9417e23b9eaf709279d81fcfd898409e48bdc2b533a39f8c278fa544e", + "regex": "." + }, + { + "hash": "742891fc13e903b50d06fa46f2777c74a1760b1900f6bfc264aace5e2fde0fec", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923288485e\\-3aa93517\\-060c\\-4d98\\-b444\\-d4cc89b5a55a\\-000000[\\/\\\\]+dyIrL4hbuzxy\\-3vC82Sk0HKHRR8\\=394(?:\\?|$)" + }, + { + "hash": "5dab49047c45046b7273461aea125aa2f82279f64fc3fa60c8cace67c7514c52", + "regex": "(?i)^https?\\:\\/\\/correo\\-z\\.help(?:\\:(?:80|443))?[\\/\\\\]+es(?:\\?|$)" + }, + { + "hash": "9c6a71c070f46845df9b74ac5e0519c0d051d55d9bf8874bc7386879164ceb55", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e3bb246ec24b0700ab9e3d3c2df8dbdc732f808d2e0ceedc1a089aa7efe750c8", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329284e6\\-eaf905ab\\-888e\\-4157\\-bf6b\\-9e1aa8f5bb19\\-000000[\\/\\\\]+k4TH9fH_h2llJaNfcje92uDlT5I\\=394(?:\\?|$)" + }, + { + "hash": "d7c5a4af432a34680ff583069c779ce1ae542c8ecc2cf3dbb06ad824855e789a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wis[\\/\\\\]+clicktime[\\/\\\\]+v1[\\/\\\\]+query\\?url\\=https\\%3A\\%2F\\%2Fdebelfor\\.com\\&umid\\=a3b7046a\\-0ee1\\-4ee0\\-9f01\\-f1bb498847af\\&auth\\=eb4eea96e40c5b4aa51854be3fae760974280187\\-e0302de1a9b7e87b2c164eebb5f0d02877beb025$" + }, + { + "hash": "4c034ffa065a677a004cd175b4dcaca8904ab1f423ed7986f072c34ce35aea9d", + "regex": "." + }, + { + "hash": "86219c51517620aedd61089d02c25425453a9f49ecc32e03ef42878be6ab4b71", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232783cd0\\-525a1f7e\\-bc5f\\-4c5c\\-a68b\\-073e3cc98d4a\\-000000[\\/\\\\]+g49GZqVyn05QFHYBmU3\\-84pd42w\\=394(?:\\?|$)" + }, + { + "hash": "03e26c3abb9a19f3f0a30b5d568aacf1cc238edec95260a7c16c515704ce5d73", + "regex": "." + }, + { + "hash": "1d6cd4f498dad0053a7ff547c406ea414138a9e41bc6b3562c78509c4fbb0070", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{3}\\.fsfs093\\.vip(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327dad85\\-3ba85495\\-c49f\\-4237\\-ab02\\-e6195a4fa363\\-000000[\\/\\\\]+onRzSDijxdaO2MdmWoK3oKnjT4I\\=394(?:\\?|$)" + }, + { + "hash": "8e389840bf814688db669bca5a0718de5d4ae138c808872bf5c593d10447deda", + "regex": "(?i)^https?\\:\\/\\/homenurse4u\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c7d7296e5423c1ec48eec55642d39aed9ee1543d0c69c2dbce9090cd693f9ac4", + "regex": "." + }, + { + "hash": "a5fdfb260fa6dd9a74fdd0f6d237b061be60d6241fd7b688ddc421b13ccf81f3", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ac9aa9\\-8e759cad\\-b6f8\\-41f7\\-a9be\\-4b06509a163c\\-000000[\\/\\\\]+4fLQvTvnJXK5TNohy0ELExLxZy4\\=394(?:\\?|$)" + }, + { + "hash": "b62e541de00ecc1f733a66300380f0b38814e70e56171f98f0c7d721d9e06d7f", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "da3df5e8ed7e9e0e8b2a5634e8726b3134f33c46c8e98e5f2fcadd29a1b782c5", + "regex": "." + }, + { + "hash": "77dbdd349b97f67edc03af4a39d383b9bcc39d0589b6ce49d08e5c39ee43f7bc", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "aec21f90ae93f9aef0822ab007f1598c8558380ccae05d34e33fed45bc9a039b", + "regex": "(?i)^https?\\:\\/\\/maomajiusa\\.com(?:\\:(?:80|443))?[\\/\\\\]+yaya(?:\\?|$)" + }, + { + "hash": "27ecdd3bf7bc5a2ffbbb55ab246f0d3970e7b870cc4db269b371d128cc2b1fda", + "regex": "." + }, + { + "hash": "5159937ad22a5a2c57bf7ac2f1feade41dfa813e21bcdf2572192771cfd8a1bf", + "regex": "." + }, + { + "hash": "c107cc187004ee7fc1aa46b3378677ecff672dab2055313a74e48ba87aa88a90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "031f2de1864aacc008af8fe2e0b96ac7dd0af01214758b8b2baa0dea0c89f36e", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923297f014\\-525abfe9\\-c223\\-4d9d\\-bd98\\-b140065dbd7c\\-000000[\\/\\\\]+BIn69wMH\\-vQ9b1hZ0LgGpWpfsiI\\=394(?:\\?|$)" + }, + { + "hash": "5173441f22087225035eb16a3cda91a58b86fd31036c0e3bf33ee6d534c1bbba", + "regex": "." + }, + { + "hash": "814a5c5ff63428faaff0eb0bec08c90cd22bac57d3852bf3e22b86558ef648c4", + "regex": "." + }, + { + "hash": "ef90e0d3571b7e8f45e5afa7966c69ce0a683cd078c3fe795249823136ee52ad", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e8847e91d6cbea50f1d57314eeac07515851cf2212d72107e9605affbae03ec5", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329dcde0\\-30d2a6e6\\-66ea\\-42a9\\-9bae\\-43cdce1c9b91\\-000000[\\/\\\\]+oRHamN8BPZTnlPRaoCXPijTKfzo\\=394(?:\\?|$)" + }, + { + "hash": "7091984d14d03ead764a91b49bba408f33b47ecbd8d409c90e6f22efc608fe2a", + "regex": "." + }, + { + "hash": "1450d957769c3a33664e8bd842a8877c74d78dcb2d5c0b66ced57d3718453706", + "regex": "(?i)^https?\\:\\/\\/zklink\\-eligibility\\-akf\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7901216acecb2c56c7f0303cbbdb9f9d9d8db4a1f378c223bbec7009e36e9c55", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b16c8d\\-f67f3452\\-5fc4\\-40d0\\-a28a\\-eef15d3af9e7\\-000000[\\/\\\\]+k2onGPjyWQlnQ9_ioTkOmyMsp2c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329e30e5\\-06d4cacc\\-0693\\-479d\\-88e2\\-db5f5fc68089\\-000000[\\/\\\\]+hpeonU8999tHOJ_W9ho_JUOpYuY\\=394(?:\\?|$)" + }, + { + "hash": "2f27aadb4102e5444cf9ff1fd48496a64004499d701469a2126b0855423ab62e", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5dab49047c45046b7273461aea125aa2f82279f64fc3fa60c8cace67c7514c52", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+es(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328322e2\\-d094fca2\\-6bf6\\-4395\\-9f7a\\-5641bde5b90a\\-000000[\\/\\\\]+p2M33V_Plp99kH6\\-Oi\\-oTj2dTIs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a12945\\-efcd6796\\-52af\\-47fa\\-a04b\\-e5e40f87f926\\-000000[\\/\\\\]+xyp9ObrXcOlKkTJYALhjAWhhqso\\=394(?:\\?|$)" + }, + { + "hash": "4209127a1601c43286dcaf5d4420a874824712cb1a28626646e22addf53d40cf", + "regex": "." + }, + { + "hash": "13bad7aaa9fb736d9bc8c15ddf60effbb737c81ab85ed0d97287e9d0a53312de", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "dade163270a3e38141c9f67d243737f752d8eb812c74e852fe9d6a530bc1916c", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290e1ff\\-6c131c42\\-7ae8\\-450d\\-9aa4\\-dfa67669d387\\-000000[\\/\\\\]+KXU1QRuuVBrdG\\-jQ3cuzPFKzgfc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290f913\\-d1470e29\\-4790\\-4079\\-aa6f\\-037f5f723d3c\\-000000[\\/\\\\]+Ycy382lF\\-iJWnTSoGmzNBtCdDCI\\=394(?:\\?|$)" + }, + { + "hash": "b22c2bb1d9076493d26fe32c6170f955bd6d1108afcff3759eea37d965d8610c", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "724790caed0d3ff31fb1b2f74407f230a1752507f1cadf4c84767378b9d1492e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+contact[\\/\\\\]+311296530946973(?:\\?|$)" + }, + { + "hash": "c68aa710e5290faa7111a7c35ff4be6018886de2f6554a5371899cffe0093d1d", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ec8da4779d127117c5fde98e5772b28f7959de99cf336fba1f4f4185cd19dae0", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329337e4\\-5db487a8\\-5bb7\\-4d43\\-93dd\\-6393aff5f8fc\\-000000[\\/\\\\]+DaQOu7KSOQlPTp\\-Q2ZAIa2lD0R0\\=394(?:\\?|$)" + }, + { + "hash": "1156304152404e449c6d2779ec27914581e7f39ee770354250a19eca0e530284", + "regex": "(?i)^https?\\:\\/\\/robux\\-igirn\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327bd520\\-6789b718\\-677d\\-4084\\-9671\\-bd1e839b152b\\-000000[\\/\\\\]+4a3Ygg1PXoHvkOgoOLpXAI_9OG0\\=394(?:\\?|$)" + }, + { + "hash": "2f2707d80a4480a319894da814dbcf58b8453df2c1aa9f2783bf50a2532508fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+hSBtZAlbMk1qA5YWPEFJGe8kklLqHowq\\-ITOYPGUgSDBxUmgy_N7fkDv0Lv_CTvUXV73DOgqoc7MukL2bFKyso4hudfT0CLO708lRn7VniOqfToZgRAilabA6kQi69XVdLUNsnr_5T_\\-wPMtq0t3qsrwFla7jyxmfvUvOR4SA6j548RkC6AIXdqcvfMR\\-GqVUaR6mydpIKtIhULjlxWtJ_A2AgaP4GCJqfNvF7jlwXoQU9DQoHeXMdnNp3SVB8YYRmVS8_hw6Avar7MEckkOjOA(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192327c209f\\-32db6b3f\\-a789\\-450f\\-80a7\\-ef7f19c8e4c0\\-000000[\\/\\\\]+RF2UKIAsHceMzXv5xDV\\-7AWLRAM\\=394(?:\\?|$)" + }, + { + "hash": "a434d89d41dd8fce046895e8c1478d0a50d0ad4d5ed339d0645402febc1e5f31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924591afdb\\-c760dc6b\\-b74e\\-48c2\\-b607\\-ae467ad3dd47\\-000000[\\/\\\\]+MVgsQfEMhyvT0jaWK6tAMb5Gki0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456701ef\\-8756aacb\\-4ef5\\-41e8\\-a1e9\\-ea8a66737fd5\\-000000[\\/\\\\]+t6OPPq_O8fmcMJ\\-YKs_P1EbZL1s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e2beb\\-e8c4d578\\-5402\\-4b9a\\-bfa3\\-d7de25bdf6af\\-000000[\\/\\\\]+0MX3foUUJirbRFSVGDj6NCy_d7U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e2a2a\\-477c19f9\\-f997\\-4549\\-ac54\\-9b57005b00e1\\-000000[\\/\\\\]+nRNB4DAz9aeVDSkLq7YMfW\\-G334\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afae2e\\-2507c0b4\\-9fe0\\-43ed\\-8ce9\\-5a52439589b7\\-000000[\\/\\\\]+c_SY4cc9pXjr4AEYGHxLN\\-i3cxk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a70b40\\-687718a2\\-288a\\-4d23\\-a92b\\-e65ac7ffb16a\\-000000[\\/\\\\]+lDmi2f1OS2dr7LUbGrGYgaInGNY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b703a3\\-ade80b93\\-b0c3\\-4681\\-893d\\-b9a143f643b8\\-000000[\\/\\\\]+GQTiOn_kl56gNGf_KDZCXCuuCjw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589ef4a\\-9637a2a9\\-85e6\\-4f61\\-9d51\\-a0118f7d216c\\-000000[\\/\\\\]+bCe7i6wkbvEGad8ZL6ESbedUXgc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456968ad\\-579da04d\\-7014\\-4550\\-9235\\-3e8c70fbffa8\\-000000[\\/\\\\]+\\-sY9v7yh5IwSyptZqME3H6HgggM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573936a\\-386f0bf2\\-561a\\-47d2\\-a9f6\\-ffc46ab3627c\\-000000[\\/\\\\]+_Xzo2wA38HkaqLdzv9Y6z5pfza8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b548f6\\-332d1fea\\-c25b\\-46f0\\-87b7\\-1f62c100b7d0\\-000000[\\/\\\\]+\\-yiBbtGgVtDyK0N5cwqbeKg2_bg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ba912\\-cbc9d0d8\\-ff95\\-4562\\-9250\\-7538b1ae6c17\\-000000[\\/\\\\]+h8HVGM9Ym0SGwDwWvBrTQlYthi8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cabf83\\-84a72921\\-27d3\\-4473\\-ab4f\\-81d54480958f\\-000000[\\/\\\\]+SBhBZXtjzlB3j3gRmt5p\\-JtoqBk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456edcd0\\-00d4693d\\-d1f6\\-412a\\-99d9\\-3bddd09011fe\\-000000[\\/\\\\]+k7LDZGl1B0Er01ZO735IF5G0kEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf8aa9\\-ab5311ae\\-f317\\-482e\\-9687\\-e1b14f7331a9\\-000000[\\/\\\\]+aUz9nr9gjApNhtNvzkZCUCtb6Zc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae4334\\-67595fa9\\-cd08\\-4314\\-9693\\-a0aba944ba88\\-000000[\\/\\\\]+cAQ_hNCKV3KxkHFe6JLbNVW7dL0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458073e1\\-c65f2c85\\-4647\\-432f\\-a865\\-80711239265e\\-000000[\\/\\\\]+R_vfTfeXnFV7fk6FbMA3_IoUy3E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569b9ca\\-92d47a57\\-e614\\-44f3\\-a225\\-cb3114a3199e\\-000000[\\/\\\\]+kMZke4DO_XJF5dzCBUBnyom5Xa0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245876263\\-d78d0797\\-6301\\-4c95\\-b9d5\\-c38d6d23078e\\-000000[\\/\\\\]+lpgC8rI4N\\-s\\-xG_NcDuQjN5xw_E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457285b7\\-fd390d8d\\-0581\\-4448\\-9168\\-3ffa96f0dcc4\\-000000[\\/\\\\]+y74qlDRrsSt3xUoRaKYHmsfszGA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8cecf\\-4e2ae509\\-1ea4\\-46f7\\-89a8\\-9f2205732e4a\\-000000[\\/\\\\]+gbq4fnoCiNuTGuIV10pbQi0jusw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245966161\\-67dc83af\\-cb32\\-4e66\\-bece\\-08a51d047b75\\-000000[\\/\\\\]+0cwR4EcRU2rpfdZXNmL4_IHyB1I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245668f72\\-d3b00706\\-41f5\\-432f\\-835b\\-714fb6542163\\-000000[\\/\\\\]+QuiYCzNn0yUICI6LMf8Kklv\\-NYM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569688e\\-b551ad42\\-78dc\\-449c\\-8c73\\-15e639f69a59\\-000000[\\/\\\\]+5ckBgtqSA7Ma3Z1mu1ey3DuD2As\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456aa237\\-55fc9b95\\-bc62\\-4c05\\-898d\\-7ed90eb76900\\-000000[\\/\\\\]+LM1rM6_EHDv9MU8Zy5LJ50mVh\\-k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458eca3b\\-f510f4aa\\-0c3d\\-4b8f\\-b97d\\-ea15881e3386\\-000000[\\/\\\\]+\\-k7pcrohtwYJlzXKMzDx6R7\\-2tI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f4b1d\\-9e6fad0c\\-746c\\-4cf6\\-94ba\\-fbc153a6574c\\-000000[\\/\\\\]+KC9x_V5pTC3Yq6yqhqYjusFo5UE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245737389\\-8a1d47d7\\-8792\\-48c3\\-b01d\\-7f2aa92009e0\\-000000[\\/\\\\]+URF44nFR7n0XXiYcD5iJTz7ln4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1208f\\-238bc1f9\\-49a2\\-4e6e\\-879f\\-a4b9e487c971\\-000000[\\/\\\\]+1mgRYLWgePsMltUfTVI1UdyW\\-i8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245994777\\-c7c22217\\-4ef4\\-48ab\\-a117\\-5a678a6f04c9\\-000000[\\/\\\\]+4cjsDJDuYsCaMREZjXRDvZ3q8IQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf8aa9\\-ab5311ae\\-f317\\-482e\\-9687\\-e1b14f7331a9\\-000000[\\/\\\\]+u20RUIbkjAKQkFH1xqUinxLJee4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245990abd\\-7fd22da2\\-496c\\-4ce7\\-8c15\\-c5402e038221\\-000000[\\/\\\\]+uVVxdIFZ7gfHe6j9sp8Nn8cSsDY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583740b\\-680cc0a8\\-8dd9\\-43d0\\-82ce\\-2022151d31a9\\-000000[\\/\\\\]+sqwnZkG7kLHfSg1NICi\\-mbwAzEI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4b8b7\\-e8ca8193\\-1403\\-4944\\-bc52\\-85ada19f8c9b\\-000000[\\/\\\\]+lLV_B0P5yqD8u\\-zzuEjAW1qZdGQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cbd2e7\\-27112d64\\-e187\\-428a\\-9fef\\-e83b982b2928\\-000000[\\/\\\\]+1z\\-vd4AzKDQUzEIhWw8AU3zIdZw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca9f8c\\-b41f1b6a\\-70e3\\-4614\\-94e8\\-c3c54b739f8c\\-000000[\\/\\\\]+Jybv5s7uwZOccSpKq4OnbCl6gBw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abdbec\\-ab1c78c8\\-2ec8\\-4037\\-8836\\-32b96332a166\\-000000[\\/\\\\]+onM_a4bYHWwiQ14MPFXQ0S7Luwc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598aaa9\\-271a9398\\-656c\\-4c05\\-9227\\-a41f76ace363\\-000000[\\/\\\\]+\\-qrRAIUkn\\-9sEi\\-NrUkO7rDEtK0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245856801\\-ee0f8903\\-d4c7\\-42c5\\-b5c0\\-cc213863fac5\\-000000[\\/\\\\]+BOdZYugnxjTU2agvi2DJH7M8RhY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c269db\\-8b2e5ea7\\-f667\\-4f46\\-b118\\-9b69e91a8035\\-000000[\\/\\\\]+CRfJsm\\-4qZfr3Cf1lKBFEciTyaY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6ec66\\-31c2d9ba\\-8470\\-4079\\-8971\\-9a50c33fd186\\-000000[\\/\\\\]+YhvB6zX80pizIIPVSk7DHOpFYOU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c8aa7\\-3398a4fa\\-d838\\-4543\\-b5fe\\-7bc4ede6f71f\\-000000[\\/\\\\]+dfUGsgSW6AFY5X_peuywDCKiDZk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae070a\\-cc2e66d4\\-a80b\\-4de9\\-9d36\\-66b6cf55e7c2\\-000000[\\/\\\\]+qjwFsZnytwZm3VMBEM\\-GcQf_uKM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c52e4\\-9896140b\\-d58d\\-4e78\\-bb74\\-592c533c97fb\\-000000[\\/\\\\]+petUF7k7HhgCFHFU2kAhvEAZEz8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457de915\\-50e3d1fe\\-d111\\-4ced\\-8baa\\-c35e259c6319\\-000000[\\/\\\\]+j4wzIg5CtOBCPjg8AQ3c6JMB5LI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245736ee7\\-a8298299\\-dacd\\-4b28\\-9b9c\\-296acb69a592\\-000000[\\/\\\\]+4dLhf1P0Eb6tEm4cnoNP\\-d1FLiM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b34486\\-b9293d71\\-b42c\\-4a2a\\-8627\\-a6d47a345dcb\\-000000[\\/\\\\]+pILVUU\\-cTpGQ6ZWX1M8xPyiTvLE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b77aa0\\-bda9b299\\-2651\\-467f\\-8cda\\-c0150460a060\\-000000[\\/\\\\]+iLtMx4Knr6q3ndRTFfY9h2nJ8dE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459aee9f\\-2caf3f1f\\-39fe\\-43bc\\-84b9\\-5a2a722d3320\\-000000[\\/\\\\]+FJc53m1lyYPImGgBWlh0FTW5_cE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458df6f1\\-5a862258\\-7aca\\-40ef\\-98fb\\-3466a646b023\\-000000[\\/\\\\]+b7jNRqZcEkHjrpD1WwxseLTmDtE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a541fb\\-65ec4114\\-66da\\-44e4\\-a968\\-b14bef0418f3\\-000000[\\/\\\\]+S4igH6Avp\\-InPIpn1tI4hrkgVEs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245855a6c\\-4abb7cf4\\-1836\\-48be\\-be08\\-90ba925a0f43\\-000000[\\/\\\\]+tZ1WlVer\\-p9vGOgo_ow0OjW0lOg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c67cf\\-f9b11f2f\\-6637\\-4c76\\-a88f\\-283e3a06af3b\\-000000[\\/\\\\]+Jk\\-Enph97Oy25TcjFHIK2WVYz\\-4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594dcd7\\-f405a213\\-3397\\-43f6\\-bfd6\\-69229c2403ca\\-000000[\\/\\\\]+JbSXBWE\\-bA2ZqhXt\\-YQuksfBNJ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e2f2d\\-d14733b2\\-8e13\\-4b40\\-9a1f\\-fdfd0003b83c\\-000000[\\/\\\\]+HwtYeyaU5d2AHrRmmTO1VueHfkg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d9197\\-4c050bce\\-b27a\\-4c79\\-847b\\-ab0b2a721557\\-000000[\\/\\\\]+SZvbRcvPL\\-H4K5AyQQ9WkN\\-oULI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b6ba0\\-0a2dbb51\\-fed2\\-4fa8\\-b10d\\-01a28e759b4c\\-000000[\\/\\\\]+cvq7xW271e40qmyUO73rGNYaIgo\\=394(?:\\?|$)" + }, + { + "hash": "1a7cfba2fa426f839b79b668317dba8155c28bf4fddc4c5a79c5a41339ccdfd7", + "regex": "(?i)^https?\\:\\/\\/att\\-currently\\-9\\-30\\-2024\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c0ea5\\-638e6669\\-40bd\\-49ea\\-af2f\\-8f4c3b8fb050\\-000000[\\/\\\\]+gAZ4lfsTDRHfSPYHRmY9X89eu3c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ebd13\\-b983f4a0\\-cc3e\\-4e4a\\-94ec\\-4ce3640d970f\\-000000[\\/\\\\]+5zQwUfR5iVFzmTYzZ6fMhSp6aSc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b56100\\-1d531d4c\\-a210\\-4c4b\\-91a3\\-ce0cf36205ec\\-000000[\\/\\\\]+ytV61XWE5rFdW3CvIyF81AfnvJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245815f99\\-9842f3cd\\-a018\\-4ee9\\-ab05\\-39fbed8bb63b\\-000000[\\/\\\\]+gX37zeRB4b7LlGPIyuOrVaYT1vc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ecdf8\\-a81aba57\\-b2ff\\-43e3\\-a3c7\\-9a752cec27e6\\-000000[\\/\\\\]+wwJH1b5EE7A8f9jgfixwvYBV6X4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456124bc\\-9bc70561\\-15ff\\-482b\\-9397\\-86b4c44f808f\\-000000[\\/\\\\]+KWS0_IW9VwF4FKIm9DQpK_u3v9c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a3501b\\-894b3972\\-4fcc\\-4471\\-89e3\\-f3cd402976d6\\-000000[\\/\\\\]+JpTM7zUat_TNsaH5ZuxnflxO7Wc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb3270\\-d44dddf4\\-12d0\\-476d\\-96c7\\-32dae1962e4a\\-000000[\\/\\\\]+RpQYvt7HXC7K7HSwpg4d4p9CxwM\\=394(?:\\?|$)" + }, + { + "hash": "6f3b8fab31201a44a4a3a185857a62ca2898f0c01308422b5797613e93c5bb45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9023[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa5456\\-93df582c\\-9997\\-4f0a\\-a4b9\\-653e7c7c1756\\-000000[\\/\\\\]+MIT6hq1\\-na\\-dEwC12_Y919Cdy_c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566ec9b\\-69ef0eb8\\-f933\\-46ab\\-adde\\-ab5441306bb4\\-000000[\\/\\\\]+8dnG2CRPJJCjqLZBXqqBhO8BfCw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1961c\\-8dad5a62\\-8786\\-4f24\\-9640\\-7a9a44bf5570\\-000000[\\/\\\\]+hpQ0dQgkVy7_HVnnkixa4mExDEI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa3e7a\\-888f54c7\\-6d0f\\-4e06\\-968a\\-0fd7ed4a5fc5\\-000000[\\/\\\\]+nphuY67RR5s4vujuUne7jbWqe9Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c414a\\-a35e4727\\-3d04\\-4e85\\-aeaf\\-b4891b006fea\\-000000[\\/\\\\]+BWn2D7pZermkj\\-miQdFY\\-nwaAtM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7d93f\\-27fa9441\\-e987\\-429c\\-9cb8\\-54865505805c\\-000000[\\/\\\\]+NUHWgk7eBuRyawI4Flj4fN5NeWw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ceb462\\-d519110d\\-ec13\\-4ee4\\-b9da\\-4ea8fb80b2dd\\-000000[\\/\\\\]+U5jBmhbN0AsUMNXi_PvO1ndPqzQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c09651\\-0028c82b\\-71f2\\-44b5\\-85b2\\-2fbc8aa78b6b\\-000000[\\/\\\\]+DJAE2Qsf4ktAgcJ8zH83\\-W19m6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458debea\\-5a45a4cf\\-6f6c\\-4dee\\-aaf2\\-555f048bc22c\\-000000[\\/\\\\]+BGSuqXSnl\\-VKXSD7XIT7ZNK0Nt4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8e86b\\-9369b587\\-2bc5\\-4fbf\\-9f8b\\-8d0e4a61735d\\-000000[\\/\\\\]+oOXw3JJunCNi39yHsBROPXA_hv0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594775b\\-9c605351\\-2185\\-4736\\-b498\\-0876cd5e1591\\-000000[\\/\\\\]+RIFzfUtPZwEt\\-5lfTAwfrHjG3xY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c9265\\-b88ff94f\\-b5c3\\-449d\\-a6ff\\-2a399b1a9e80\\-000000[\\/\\\\]+FDc2WyGtehQ7zB1hZAMAlZnTtM8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bf426\\-1d172e40\\-dbd4\\-4695\\-ab74\\-ad587286640d\\-000000[\\/\\\\]+pdj0AiqhJaqr\\-NknNVs\\-pbAOolI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf0a82\\-b57d2254\\-2af5\\-4503\\-a795\\-54d95eddd3ad\\-000000[\\/\\\\]+rmhvW9uJZA7pNieo0Td2qUdWQPo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b6304\\-b48ebc1e\\-d863\\-44fe\\-b428\\-af5bbdf34a74\\-000000[\\/\\\\]+6KvemzMkSh6dxPslo16vOIRRgn8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b38a2\\-f2c6d14a\\-a2b5\\-4c8f\\-abc4\\-3d561dc66221\\-000000[\\/\\\\]+rpzQ2LTGnEMZnw5sascr0XLAiS0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245737d35\\-477c8b67\\-f0ca\\-4bc7\\-ae9f\\-61940345fb92\\-000000[\\/\\\\]+Zka9lp9kq35lycJnyHIZyx_HWaw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c20639\\-a6215e7a\\-894f\\-48f3\\-b82c\\-247f765222d1\\-000000[\\/\\\\]+XZ7U22hON_KKokv091ymys57z48\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac4c21\\-4cbd6ab8\\-4eb6\\-4ba5\\-8c73\\-be4b0a00ba70\\-000000[\\/\\\\]+pSyHRCJv8M5j4H7h71NB1Zfsfjw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ed385\\-66a2cb38\\-ce42\\-4e03\\-ae0c\\-95a82d966d20\\-000000[\\/\\\\]+koTihJNdYOucs8DmzAyXn_Ns83g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b85d68\\-9e8e4c22\\-f0ee\\-4f10\\-a28d\\-c985b3a119a7\\-000000[\\/\\\\]+4UsFTT_a5KGqQbVrNobTvbxj_sc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457632e8\\-5b6aab7a\\-e082\\-4e08\\-83b1\\-ebba9f41bcd5\\-000000[\\/\\\\]+nkK9slPwR9n5kuKv7QRCYikfby0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af85fe\\-f4fd8a4a\\-9d5a\\-48f0\\-9253\\-e8e9bb824fbd\\-000000[\\/\\\\]+qZjf116hBE46bR8bIXu\\-L819qlg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bff5fd\\-6557f4a6\\-5cff\\-4aef\\-a563\\-9cfaa351ba28\\-000000[\\/\\\\]+N3tPsKWMI8sroSoI5o\\-MbEqGAKs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bee39c\\-cf21c9d1\\-6f04\\-4bd8\\-a87c\\-596e94d427fd\\-000000[\\/\\\\]+0zRb7TEHwOOg76nPfIu6mB4JaYQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ea44a\\-db8ad393\\-7adc\\-4e74\\-aa50\\-54045b89d7f0\\-000000[\\/\\\\]+lW8G4\\-0kjIqk36_cH8M8JDgy6Co\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd3892\\-2a5423a8\\-7dc0\\-46b9\\-92e1\\-5b19f52f7556\\-000000[\\/\\\\]+DxuEmwpqA\\-sB5NujVA\\-W\\-eErobY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb5308\\-0d3c6e0f\\-1dfc\\-4377\\-804d\\-22c6254ce859\\-000000[\\/\\\\]+WHGs3TDy2e2_I6SDfxXXw3WPkp0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b17899\\-ea56181f\\-6f02\\-4492\\-83ab\\-0d71ca4c9729\\-000000[\\/\\\\]+Pe46ZYXCQIenZQTNw4wZC0n62DM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245965eaf\\-cf3bc792\\-df95\\-419e\\-b6ec\\-1b8ab1441cde\\-000000[\\/\\\\]+uVERUoXDAEp7P_tJsxE83aWOhw8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a4bd3\\-fc5c32d7\\-2722\\-4e16\\-b076\\-36c6a15911df\\-000000[\\/\\\\]+wdrErLSlUsnX2xDDIjONcIadcNk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245779576\\-16ac3a2e\\-7c43\\-4c2d\\-9516\\-c753a4e06955\\-000000[\\/\\\\]+qXb0eYtlBZNEDB\\-Nu_cSAiGb8Vs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459165e4\\-e4327491\\-8d7c\\-426f\\-a028\\-36f93330fd41\\-000000[\\/\\\\]+Gk3DjKGEbP7ebQpJ\\-3x1PeUeJKk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594d242\\-714a19ae\\-db51\\-4c24\\-b336\\-d3532635507b\\-000000[\\/\\\\]+vhv5tS4Kx85dENTGakE8l49VVxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b29bf4\\-3eee67a9\\-8274\\-46ab\\-9ae0\\-eedfc57017e2\\-000000[\\/\\\\]+_gCcgQIlQHLyZqQM_woUJyZ74tY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245818d78\\-153c797b\\-d76e\\-4683\\-9376\\-19487dc3620d\\-000000[\\/\\\\]+zuQDnEJi0jCmlkC33R8EY8CVSCM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8929b\\-487cc0a7\\-58f4\\-4132\\-83d9\\-b4b12a710bc9\\-000000[\\/\\\\]+w4aG9kLz6Z6QWWN0AIdpJ0LhHJk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b2a1bd\\-9a375542\\-aded\\-4cb0\\-b08d\\-5eb4497928d0\\-000000[\\/\\\\]+\\-OW61bzl9s_YzG7nKV2ZOznQJdU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b77b6\\-fc583d89\\-f9bf\\-469c\\-9cf6\\-3b5fb02cbdfe\\-000000[\\/\\\\]+aJ4n5txk2TJyMz_bie1Jm21vSqw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bcaef6\\-280fcde9\\-56bb\\-4a0a\\-a171\\-b8893d8d6179\\-000000[\\/\\\\]+1BDYewase0dZGcw4NGV5dEfmb_c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565d237\\-967d81b2\\-a4a0\\-4c65\\-8646\\-04c149ef6dc3\\-000000[\\/\\\\]+fWLTIZTIa\\-gORGaQe94UVhPczyU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb8ae0\\-986c8150\\-c8d4\\-4017\\-b239\\-f016bb3530a0\\-000000[\\/\\\\]+8yBwbvphmopIaxR3WbYGhEMBC8I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9f85a\\-7c71304f\\-75ba\\-4638\\-b75c\\-52c2b6cdea5a\\-000000[\\/\\\\]+BNOFsJ_kIYcMeTB9qgAJTca445Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459901f8\\-da412575\\-fc6e\\-48b3\\-95c0\\-3d26b3acfd44\\-000000[\\/\\\\]+fd2yM44eHUsVoYWtsvtcZRcGgpg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be63eb\\-5641535c\\-140d\\-4912\\-864c\\-51be9ea7adfd\\-000000[\\/\\\\]+RupnP_2YSiKm2Sr0gZ7JO3Pym54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924567294f\\-e6129819\\-dbdd\\-4ea2\\-a5d8\\-a6f18c5c0a06\\-000000[\\/\\\\]+WqrrCBnZA9dsvtUalhlofDDf9kA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b91f6b\\-9ca1da69\\-e2c4\\-4ef7\\-9616\\-f787005ba0b0\\-000000[\\/\\\\]+DN_SpY4ihJOt4pJtedAUbMScTK4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459977a6\\-d2b30694\\-ac87\\-4d3a\\-9dc7\\-47897031e105\\-000000[\\/\\\\]+ISireZPZwuGCYPjhLtLFIIqQZfw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb0389\\-2ce4d92e\\-569d\\-4cb9\\-9fcf\\-8e88a0b9d8c7\\-000000[\\/\\\\]+v\\-nJg1tyUXnPUmJsLXwSXOGqoVk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b3ec7\\-c993667e\\-a12b\\-4cae\\-afca\\-8c915fbd7a2c\\-000000[\\/\\\\]+iBrh3730QZwU5DXMWNGWVkSMgt0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245820979\\-b180fe1d\\-9b2d\\-4caa\\-8023\\-a31e9b271a2e\\-000000[\\/\\\\]+iDADeK65zMNhVNo3MlHCjZTy\\-bI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583daf5\\-e2d84c45\\-728d\\-4cdb\\-9606\\-aa06206ce85a\\-000000[\\/\\\\]+YyVz2iNHCPhb2arOYtf6g2lLeFY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c66bca\\-a1d5c933\\-28e9\\-43ad\\-9870\\-a895adcffd80\\-000000[\\/\\\\]+b394KXvKvdEj7z4r58ahLkEwuP4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b6304\\-b48ebc1e\\-d863\\-44fe\\-b428\\-af5bbdf34a74\\-000000[\\/\\\\]+k4YTwVYdsm1yGSnJroitpL9MIMo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1ffff\\-5624eaa3\\-fb6d\\-4d91\\-98d9\\-33add9f21a26\\-000000[\\/\\\\]+KxnHo9MEgYUfqKC768rG9yeJms8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af6cee\\-a1d29eec\\-5642\\-445d\\-9308\\-4b5c5f45f86c\\-000000[\\/\\\\]+MS4YS7yMsrxDobF8M46IN9Ii07g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab48cc\\-c11c7c3e\\-f5b7\\-4146\\-b7af\\-8eec737d5ea9\\-000000[\\/\\\\]+hMavTh5iOdJZeS_GVoEtXq3jKMM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458570fe\\-734c8627\\-0128\\-4687\\-aa46\\-7aa4dd95dc32\\-000000[\\/\\\\]+zUfoHWJcsp1vwUlvX_yKNOf2V18\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ac8fa\\-7ab4a0a6\\-6106\\-4889\\-8df4\\-3e7ee1892373\\-000000[\\/\\\\]+lAf_HJT\\-7gkqSUNtx4EFCQarLlw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bda5ab\\-b1bbdcdd\\-cf79\\-4741\\-9808\\-db11b85a2ed7\\-000000[\\/\\\\]+TK0xGPtVAiJWO_wPWlrpg\\-RaIko\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584e58e\\-839f5d1f\\-97b7\\-4031\\-89de\\-1fb66c9f9cf4\\-000000[\\/\\\\]+\\-yQJQ8nEx7D4RRV_QH5vQKurjrc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa3e7a\\-888f54c7\\-6d0f\\-4e06\\-968a\\-0fd7ed4a5fc5\\-000000[\\/\\\\]+xO9E3ozpA7mbxv5c42\\-MjJU6nPk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458792b1\\-2ff169c8\\-27e5\\-4638\\-b14b\\-7883bfbc5003\\-000000[\\/\\\\]+Tkw_P63vkfnRQPovr_9RSkDp2bk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cac485\\-1bb70454\\-46af\\-4a5e\\-a914\\-93cd787e54bc\\-000000[\\/\\\\]+6RH8YaUTP\\-M3x2mT9mIHoc8VjJ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5633d\\-8c70b1c5\\-2325\\-46de\\-b0b2\\-6e88a5561a06\\-000000[\\/\\\\]+pDU7oGpCLQ8FkjC74BbHQ6m\\-kKE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457fc6e5\\-89dc443b\\-78d0\\-4144\\-8d62\\-27d955f12492\\-000000[\\/\\\\]+o\\-52eBvTCXNe_7fLtsrjHO_7YNE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245989822\\-8dc54161\\-76a7\\-4fcb\\-b266\\-04e31bc23e12\\-000000[\\/\\\\]+WI99DUW7nDpZDY1XBawZ6yXBw6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245835db1\\-9a4d2bb9\\-f377\\-44a5\\-8ad5\\-96f54457d279\\-000000[\\/\\\\]+9W0PtUmo7QL7D6\\-oRNap2ZupWuY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924567294f\\-e6129819\\-dbdd\\-4ea2\\-a5d8\\-a6f18c5c0a06\\-000000[\\/\\\\]+t\\-xh1x8dO77j8X3L9luY4td88aA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585eeb7\\-f9513746\\-486a\\-4fa4\\-8ab8\\-376b5bc14c0c\\-000000[\\/\\\\]+JSfklYvCtnIrCcEYxaXuvwjo2VI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575cb6b\\-a71f7305\\-486d\\-4469\\-bb16\\-637bb5032ac6\\-000000[\\/\\\\]+mviq7\\-cHHfAZge7qQk90E1cmxRE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ed0e9\\-63755e75\\-3a28\\-4cfc\\-a55a\\-d0b7025ad2ae\\-000000[\\/\\\\]+26hSKBShUdSUHOub3rVdJrtnxbY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583cedd\\-fb544d69\\-47a6\\-4c60\\-8d98\\-5a19ea1eb6e6\\-000000[\\/\\\\]+IsWhyVH2Ag8Ij4mLUgsQojegFHY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245953d50\\-b6a92589\\-8495\\-48a6\\-9e11\\-5ae9c3e0ef12\\-000000[\\/\\\\]+wu1WnYIb8ryB1TCTayKaAPnARcc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458925de\\-2ae1373a\\-5e0f\\-4004\\-b29f\\-5114d56ac945\\-000000[\\/\\\\]+AVic96KnIqgcA7dTgCbpcWWte0Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566638e\\-50999d5c\\-ea06\\-4b70\\-bcee\\-c22eb3f24bed\\-000000[\\/\\\\]+rg6QJDCv0j_M8FlP8Fhmno6CAxQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bb9c8\\-41f1b7be\\-1c45\\-4247\\-888f\\-df494617fa25\\-000000[\\/\\\\]+2f80vgLMD_\\-NQe\\-pGrPsyWR2IiA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1867d\\-56e59cee\\-e6ef\\-4ead\\-8302\\-0187d427da91\\-000000[\\/\\\\]+t3qHWq_QMrfeyv68VvShOTghWLw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e3d01\\-a2579b19\\-3d99\\-4075\\-922a\\-0ae94ed2af2a\\-000000[\\/\\\\]+U4\\-46SCqlT6y_ZjwvraZ7KcO37Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b33921\\-9195cf27\\-ed6a\\-4d4c\\-a215\\-a4835633ba2d\\-000000[\\/\\\\]+91O5n\\-tBCMYh_XiIsI0U5S46Weg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a350b\\-9280f12f\\-40a1\\-45ba\\-9713\\-e07d2c3dc7ae\\-000000[\\/\\\\]+R69k9WVdofcpnlm4acwto_YlD_k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565ed9d\\-1be24641\\-45e4\\-44b7\\-933d\\-8d87a314fe42\\-000000[\\/\\\\]+g66I6mNBuJ5PP\\-YQERA3TJi2J4U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1bfc7\\-4b3c6b0c\\-6f32\\-4845\\-aa79\\-e568a23f0cba\\-000000[\\/\\\\]+\\-rL2n2kYu9Dh\\-CavKNi8u5_pkNw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6640f\\-2d44bdd1\\-0a4c\\-402e\\-bc8a\\-7ff3c828756e\\-000000[\\/\\\\]+36zGgXRZozSSZXHI5XmzFaXYl6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d64c3\\-3671ded7\\-af53\\-4dae\\-be72\\-93a16dd5d94d\\-000000[\\/\\\\]+2Li_Kb26vnpw76b\\-0gOVIrH2YMk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457369db\\-65e11e6c\\-83b9\\-4456\\-84ef\\-64c0dda12c1d\\-000000[\\/\\\\]+rwhjb2SU4ta1y23Th6AP59\\-RMm0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abe97c\\-bb3dc078\\-210e\\-40ef\\-81cd\\-97b4f0df05af\\-000000[\\/\\\\]+1BlQM_4CX7gINd\\-\\-kSUeRdRvmUo\\=394(?:\\?|$)" + }, + { + "hash": "c86b36c11136dfc3387595e95049d4248e5f93e8ed6e2c30f628dfd57970b367", + "regex": "(?i)^https?\\:\\/\\/128\\-199\\-173\\-153\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8ce61\\-c59953f9\\-05c4\\-4b34\\-ae26\\-97cf5505b502\\-000000[\\/\\\\]+l3GIiqjjnGHOvFvSzZEA6B9z0YY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b8cbe\\-b1ac54f8\\-8002\\-4fb4\\-b2aa\\-358e983db631\\-000000[\\/\\\\]+_YwRIWPa7s3Vr3Ub0DA6x203Blk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456eb743\\-735ec093\\-b3c8\\-450b\\-a04c\\-8283e2284ed9\\-000000[\\/\\\\]+aovKnzpnUfBFmwRh4oh1cGrxWJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a51a1e\\-2c41c0e4\\-0666\\-4003\\-949e\\-a719815c9192\\-000000[\\/\\\\]+400jZhQPxiit6yHBqydUFC\\-K8Vg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b571c0\\-c7235265\\-6764\\-4a90\\-adbd\\-4434bd5f4dad\\-000000[\\/\\\\]+kwxk5Y8KRU51lIy5gK65lxaY4L4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b42aa1\\-0eb633ec\\-9f34\\-46ac\\-a997\\-4b9d60c3c642\\-000000[\\/\\\\]+IU9QlBkTptTF1L2AhXtvxkSg7C8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af6752\\-bfa00a54\\-c261\\-4a75\\-9f90\\-3fe134b748e7\\-000000[\\/\\\\]+xoIfl7_LUIB\\-H1sShJ9YTpAD7po\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5f501\\-36cbecc4\\-52c0\\-4f10\\-a46d\\-5e29a175c1d1\\-000000[\\/\\\\]+z1zAqZVE1zQsepWP\\-qsN9K8s48Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245750873\\-3bfade29\\-ff62\\-4726\\-a02f\\-36515b6970a0\\-000000[\\/\\\\]+JX5xfSTroWNUDN8O3aWfz1b__0M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570c13f\\-75fbcdc1\\-303b\\-41c6\\-aa16\\-1f0c70ec0699\\-000000[\\/\\\\]+SFyj1WRfJWLIWgMSxphjVxib5do\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245999458\\-e3314543\\-2e12\\-4d64\\-9721\\-d1d7a6d50ed7\\-000000[\\/\\\\]+dd_4X_1X0tef_bfw4NTZAEQHTM8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598aaa9\\-271a9398\\-656c\\-4c05\\-9227\\-a41f76ace363\\-000000[\\/\\\\]+3A918m0w9zUeQDPqkvoudcheOSY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b1212\\-9bb1d7da\\-d542\\-43b1\\-a571\\-f42c6cd56eac\\-000000[\\/\\\\]+nVgLtJDoadgR4jXcFqk0hBgIKdo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ef7d5\\-3a08e67a\\-fd21\\-4822\\-a8de\\-68dd12dfd45b\\-000000[\\/\\\\]+J9jyYGlPM_jWhQx_mWx9MVY6NSA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e8042\\-9b736689\\-535b\\-47f3\\-959b\\-ec258b8c68ae\\-000000[\\/\\\\]+95xiO1\\-hQBB0WmjavR40EgBVcrw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924561a8c3\\-843f2012\\-4958\\-4359\\-b2d7\\-5e20f62fea19\\-000000[\\/\\\\]+E6RD8Bbu6sR2RITs13q3Nc8C53M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbaf50\\-897f9f99\\-25d5\\-455b\\-b867\\-fca4d56bbce0\\-000000[\\/\\\\]+NAZhgnQWSe71aRGJfZXbAB6_wsw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245796343\\-5ad5e703\\-063d\\-4a6a\\-88af\\-136377f87ea0\\-000000[\\/\\\\]+QbR7j0mSBsK5MiPq6Uu_Nbh7rpc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583daf5\\-e2d84c45\\-728d\\-4cdb\\-9606\\-aa06206ce85a\\-000000[\\/\\\\]+zcGno6p\\-A_nRUKpXVTgUnX674OU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8afed\\-999b7a34\\-a6b2\\-4db9\\-a9b7\\-1abe6b1a5905\\-000000[\\/\\\\]+ExEYZOAfDu9dYjdvsxWTrPpBphk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbaf50\\-897f9f99\\-25d5\\-455b\\-b867\\-fca4d56bbce0\\-000000[\\/\\\\]+vM4\\-T2\\-J3saJi62R8stDFuon\\-J8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245759584\\-06b6c653\\-a431\\-40aa\\-8368\\-d3e5495dad15\\-000000[\\/\\\\]+ECEWyXHzm_yTGtVwIHHmqg5y7v8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c11916\\-c0589e5f\\-8505\\-468a\\-adbe\\-b7a435428f57\\-000000[\\/\\\\]+rPa\\-wBJuJB3M6Jst\\-rZUFWrNwF0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0b1b1\\-92080a82\\-7a09\\-4b43\\-bd6d\\-023a9b0f0387\\-000000[\\/\\\\]+BcdBp8rJZ5ovSUPU6auBOkr0FNQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245818d78\\-153c797b\\-d76e\\-4683\\-9376\\-19487dc3620d\\-000000[\\/\\\\]+cmphSH9U5OlbkmXDUO94hjpRCT0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c00459\\-943f90f7\\-fb95\\-4d60\\-9bc4\\-5c65b2951d4d\\-000000[\\/\\\\]+7sutN3l\\-Q\\-XaHXBg8js47Ex4Zwk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458073e1\\-c65f2c85\\-4647\\-432f\\-a865\\-80711239265e\\-000000[\\/\\\\]+r9HaRrzsqpVrqrVvBr7JlBS47ss\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c99afc\\-fcb5e6e2\\-3bbe\\-4518\\-aa18\\-978b554d57dc\\-000000[\\/\\\\]+Vu3m5nLmaCR1d8uKlfZ52e9SoP4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a3501b\\-894b3972\\-4fcc\\-4471\\-89e3\\-f3cd402976d6\\-000000[\\/\\\\]+sNyOaW\\-KMUXYn2QJENv39VQEYcA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d006c8\\-3d691551\\-ae7e\\-41f8\\-9b54\\-bbdca94d4f70\\-000000[\\/\\\\]+YcITrR\\-yx3sRmN1ezpU5DxI_Yzk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3cf1f\\-0de74fbd\\-4c0e\\-4548\\-8e1f\\-00a52ea6ccad\\-000000[\\/\\\\]+lI8f0WXKj3JR1NZ1Bjjif7gKW7w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566ec9b\\-69ef0eb8\\-f933\\-46ab\\-adde\\-ab5441306bb4\\-000000[\\/\\\\]+G0_Cxp0taaUx6UDrUlkvMhaTRFA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca7415\\-358fe757\\-27ac\\-42f0\\-9eff\\-002fcfe81682\\-000000[\\/\\\\]+EFKiaMdPLHrJQjUu\\-2cF282Bulg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597f906\\-e7085074\\-7149\\-4a6e\\-bb65\\-04d16b75c21f\\-000000[\\/\\\\]+TvLnT58WAovmMH2NSSttNYfHXng\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d1097\\-1cc575fb\\-f467\\-4589\\-b107\\-728fc2a5afed\\-000000[\\/\\\\]+dtyAOJYDsrppmOgvZQr9uB2UCKI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457545fc\\-7b33d4c5\\-dafa\\-44ea\\-82a2\\-5d389737f973\\-000000[\\/\\\\]+\\-WmN0VFyo67Y9mKjLOqgEMS2Phs\\=394(?:\\?|$)" + }, + { + "hash": "b9a74b06d69df30001dd02ac3de80f81e201ad155d45320e5ad877d352586c9b", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f7fff\\-0e45b275\\-a684\\-4ccc\\-a972\\-03568c08b597\\-000000[\\/\\\\]+UhxXRVpEIB5KSSKFdMzpi8gbCnY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245726bfc\\-e3e6e06e\\-39da\\-4d41\\-b4a1\\-da9c6e9bde93\\-000000[\\/\\\\]+rERImntPBLrtsdhGq7gVoNOuXG0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245718f66\\-a9dc861c\\-248c\\-4efd\\-bf32\\-563f5c5e769e\\-000000[\\/\\\\]+nt1lnBfwQfxO0cc0z7xnb4v3QTI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245894d09\\-b1622eda\\-2d12\\-41ca\\-86e2\\-c6de92261c30\\-000000[\\/\\\\]+WIzrVuacu4d6QDoKajoc1wjYpaM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e92be\\-cd3634c7\\-be2a\\-4451\\-ac26\\-36cd29c8f880\\-000000[\\/\\\\]+q8gPlVf_JcGvozOO3TgwjNMgpZ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d0c6b\\-1a7a51fc\\-8abe\\-40c3\\-9df6\\-fd7e4e1aef11\\-000000[\\/\\\\]+xWWLeYF53QMUn_KoDJLB2ERvvio\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be77eb\\-fd45a39c\\-7c09\\-4e15\\-a51f\\-cc45148ced5c\\-000000[\\/\\\\]+BwxwMXWLczGSWo\\-Neyp5dPtQNNM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a0dbb\\-ec5d9819\\-6f95\\-4e7b\\-b015\\-ceb6578e42ce\\-000000[\\/\\\\]+vXu55vZ3voW\\-3qklcXYwhYnn2hY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b34486\\-b9293d71\\-b42c\\-4a2a\\-8627\\-a6d47a345dcb\\-000000[\\/\\\\]+uDl0KSNRI2K7h7GgdMc6QbjHxqU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245976cc5\\-d0b1da82\\-575e\\-4305\\-862d\\-dc62c89f7227\\-000000[\\/\\\\]+DqI2YPsZulOCx3DjKxNl0sCeMrg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245693d1e\\-5f51ae2f\\-5e4d\\-4f0a\\-a3a6\\-39a60c65743d\\-000000[\\/\\\\]+osQJ9na1EoLMS2fAXeli2vAnA3g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b2b02\\-9945326c\\-c512\\-465e\\-8c6a\\-a23b2c96abae\\-000000[\\/\\\\]+Bx_0jRwRYro1GyaHPj9asby\\-t1M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b29bf4\\-3eee67a9\\-8274\\-46ab\\-9ae0\\-eedfc57017e2\\-000000[\\/\\\\]+3xaZREPrtZUYHkxze2AEcMo\\-Tl8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456570a9\\-6972139c\\-a387\\-4c80\\-8d3a\\-a82b0ff75f25\\-000000[\\/\\\\]+kn0tV93cu941dsVDeSA4gVH72N8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245946659\\-a458dd88\\-5ec7\\-4dc0\\-ba35\\-d352adca1313\\-000000[\\/\\\\]+6wwDUZstfK_fVtBmeOeAAEP5lDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f849d\\-2c2bd30a\\-2416\\-433d\\-aa7f\\-cf757f3d308c\\-000000[\\/\\\\]+rdHQv_qoj8LEHTtPuT2zyGIRAl8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4ecf5\\-aa8ad8dd\\-45f6\\-46f2\\-b7fc\\-6bdda5e82126\\-000000[\\/\\\\]+Qe6B1qzfqedjPinGosysZe4h__k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c136f2\\-062e6535\\-acc6\\-452d\\-beeb\\-c3020cace96b\\-000000[\\/\\\\]+IrXIEtdR\\-k07my4Ix\\-vd8HOEsDw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924591a1cc\\-91bf3f49\\-4a2c\\-4831\\-9bbc\\-a624124e1a0e\\-000000[\\/\\\\]+ISlG3yCpSAiti\\-cG8985N\\-jHWk4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab4a05\\-56b5ce10\\-c1ba\\-4d20\\-8543\\-ed6e9b9e6796\\-000000[\\/\\\\]+e2B43rkDrjIp1zSDA\\-vorQ_gtzg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245775545\\-18e390c1\\-7d2f\\-403d\\-bba8\\-a948bd1f8df0\\-000000[\\/\\\\]+CAVRLxoRsrh6k5Mog_X4n8hcW8M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb5541\\-88e7dc2c\\-cc69\\-4226\\-90de\\-bf0794e7a028\\-000000[\\/\\\\]+vMuCo2bi8CzuDYfbOC6EVNKlAWA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be4afb\\-dbff88db\\-d3cf\\-4b07\\-9932\\-1b9dde6761da\\-000000[\\/\\\\]+iBhwfFoLDxJjFfc4qQzUxzmjYQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594bbb4\\-6ba838e3\\-da09\\-4dcc\\-800a\\-e029e746fe06\\-000000[\\/\\\\]+8WI2hm27EJH3yUKTi_j9act1nBo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c48d6\\-ed4b41b6\\-5641\\-49a6\\-9886\\-7841bbefdaa8\\-000000[\\/\\\\]+asOckBeA2Gr7wPmX1hAuhX2nX2o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5fa8f\\-7d8bd70f\\-64e0\\-4757\\-a102\\-47b0b700652b\\-000000[\\/\\\\]+JfggsNWxHzvpPvwGhysHU76tFSw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245955b4f\\-5dff00a5\\-065c\\-4728\\-823e\\-7f2a31b52555\\-000000[\\/\\\\]+AwRenxv_dvhctHOQ3mmknlAN7l0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f3a99\\-0c39e9da\\-6a14\\-4e7a\\-80fa\\-e09d0fddac8f\\-000000[\\/\\\\]+XCPzb8I5ogs6za0Wbmu0g3kumks\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245acb0ef\\-6f13d15f\\-4979\\-4860\\-b03f\\-4f9c2d382702\\-000000[\\/\\\\]+oK4cuI8uk_6q0mVzJ7nl2leacf0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b0fe2\\-e475559e\\-08aa\\-493d\\-8266\\-524fb26ad42b\\-000000[\\/\\\\]+RYjCUFtlPC7aYY7iT_8H7R6t\\-3A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589f9f8\\-a349982c\\-b64c\\-4539\\-a745\\-806339915287\\-000000[\\/\\\\]+jG6T06ZXpIrbmxxjbdeXdWZbag4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245990bdb\\-2aeccebe\\-b023\\-459d\\-972d\\-58ffcd0b0a26\\-000000[\\/\\\\]+_2VcNUaLr1k3aYLGX1N4nzB7qRo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456718b7\\-7ec3f304\\-b068\\-4f02\\-9beb\\-b46882d24eff\\-000000[\\/\\\\]+V0Nt9mrP7OwFWzhVTciNFtQpoHU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5e8a8\\-b985b047\\-e768\\-4c4b\\-a646\\-fe344e109185\\-000000[\\/\\\\]+lLOtxy8b9oEj1pA9s_6PeOhVWXo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b65240\\-a24b9b56\\-c625\\-42b7\\-a022\\-8e955ede8b0c\\-000000[\\/\\\\]+BMxVf8hJn6s4dmDFxJStKOl4w78\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924590eaba\\-183a9c4b\\-4382\\-401d\\-ab0b\\-20ac1b6fb87a\\-000000[\\/\\\\]+Zf0diycpnPnEf70m0aCE06fXEbs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576c787\\-58fe22dc\\-af23\\-483b\\-8b46\\-7ae349382d04\\-000000[\\/\\\\]+4XTBOYf1qvb9Db\\-ZUbrlkE6N\\-II\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b22ef6\\-0a14459f\\-ac07\\-4cb1\\-ac89\\-c7798d20838a\\-000000[\\/\\\\]+oLU\\-QAjtaFRsb5\\-9goAvaWn1Ulw\\=394(?:\\?|$)" + }, + { + "hash": "a9760b7bb54b4e9b38456c39a53b683075970acb223af3d8caf5a78b2162bbb7", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c269db\\-8b2e5ea7\\-f667\\-4f46\\-b118\\-9b69e91a8035\\-000000[\\/\\\\]+dA_X9cqDxHjzvilzubMPENTXimE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245615238\\-4c418849\\-3909\\-4a31\\-afbd\\-84a3de54b383\\-000000[\\/\\\\]+z7WiGCuwAXHsidOmPdU14urV2Oc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b7b3f\\-98eb1a15\\-133d\\-4de2\\-9d81\\-a301be9af7e0\\-000000[\\/\\\\]+Q3cyPo_NkWvg\\-VWQR84vRZlTs7Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1875f\\-66d7481e\\-4edb\\-44b6\\-94f4\\-952177219c69\\-000000[\\/\\\\]+1BN28NFYai0OPQAMkSEbh0Rg_sw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575d25f\\-d97ac47c\\-3aaf\\-419e\\-9855\\-c30000bafb77\\-000000[\\/\\\\]+Rtqd2wwdk3BtJ77bcML1VEymhv4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584cd0e\\-09b9850a\\-39bd\\-4e4e\\-8c89\\-69cf9d0e3d23\\-000000[\\/\\\\]+GWXLST3dU5vuxwpOYUt6yBDTJb0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a244e5\\-f7a4ef3d\\-f633\\-4f57\\-b76d\\-a658b4d6f902\\-000000[\\/\\\\]+c741bCaycbizSr316zdioduenIM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8e737\\-060d4d40\\-187e\\-498e\\-b6c2\\-638c8fb6e916\\-000000[\\/\\\\]+FSrDQIdCfwtwWomCw6b4J4ZLcPc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c65b1b\\-b9827080\\-14ce\\-4001\\-8b9b\\-55db70b1f6d8\\-000000[\\/\\\\]+Ju\\-kdt1RCIOTZ4bX2hRX8lGLEug\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565bb6c\\-c2faf193\\-c3d8\\-4e31\\-85d1\\-55bc84eeb0c8\\-000000[\\/\\\\]+LOev74jDrAXnEDApdDiB3Hrvmb0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b46eb1\\-b8ca2b72\\-de59\\-4e00\\-8e40\\-751be62e2e55\\-000000[\\/\\\\]+MHoxnDUS7v9l__SGkT5TFLEcT7M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457170ca\\-880128af\\-38e3\\-45ba\\-99a7\\-0ce4286f59eb\\-000000[\\/\\\\]+tXncOH84K1OfJGy7_giNeyDSg18\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b87c30\\-fb1cf5d4\\-5c37\\-4fc3\\-8ec6\\-a71e26fd2fb8\\-000000[\\/\\\\]+08sAkxNFrP2H05S7yr4ngu6BgXs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c430fb\\-1870ec21\\-c4e9\\-4a49\\-a8f7\\-e61b9757f51c\\-000000[\\/\\\\]+2tHOXdF72FQJ5Iexb43gRQ5MkTQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458deec6\\-7447df8e\\-928c\\-4b64\\-b4ff\\-d2ae0d2c1b04\\-000000[\\/\\\\]+71MGmxQfLVMnS2OhsHSvJfOkX6o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458525e8\\-a6c0ee60\\-c904\\-4902\\-9f08\\-f96a973fcfb8\\-000000[\\/\\\\]+0YOtWIZYx\\-lbSwOcFTql\\-i9\\-x8Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585dd6b\\-8ce06b25\\-8d44\\-40fc\\-b8fc\\-4bbced82133b\\-000000[\\/\\\\]+Gulsp63UUzDYc1LVIX6ibRMrpNs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455db84a\\-a46c1b14\\-af8b\\-4588\\-8f2b\\-52dcb6039a62\\-000000[\\/\\\\]+qvfOtkhHS_HsBXnmByHN\\-ZkOg8c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245adf6f7\\-2ce4377b\\-9968\\-476f\\-b407\\-1cd3b20ceeca\\-000000[\\/\\\\]+I8l_QDRifhq_zvZspR9KEegUFO4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459aacfc\\-88129e9a\\-6aa1\\-4078\\-88dd\\-4959eaa1c655\\-000000[\\/\\\\]+USDKXPrI0E2zNaa0wd7v_0Dwg\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589f9f8\\-a349982c\\-b64c\\-4539\\-a745\\-806339915287\\-000000[\\/\\\\]+MRTcOoq6W6w6Z3gLzUJD4Bqrmsw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b1dbee\\-e6b28953\\-0822\\-466f\\-b0bd\\-d4e3c105d300\\-000000[\\/\\\\]+xutwQAj2IZp8_XXWguDQXQfW6hc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584b1b4\\-5bd94b18\\-d985\\-40b8\\-b6ff\\-11b033a32de4\\-000000[\\/\\\\]+djRy1KaNJKhSpFknUwOAEqpoKK8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458059db\\-b169b2b7\\-9bad\\-4014\\-9b0f\\-99e31b678f67\\-000000[\\/\\\\]+K4PQI6sw9U5mliPTiiaqR7pRLP0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597675d\\-76459a4a\\-738c\\-44a0\\-8ab9\\-f6c398e94805\\-000000[\\/\\\\]+ZiTkniXOwV_SNy1_vszwfVDkSHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7d994\\-93cbd232\\-3c97\\-4387\\-875d\\-d5bd2d089c49\\-000000[\\/\\\\]+nN5KtYl6BZUQnKtbyxYhO0teW_E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab1095\\-935639a6\\-20ba\\-42b8\\-b201\\-460636522a88\\-000000[\\/\\\\]+BU2G\\-0fYSaUKUmIb_50P72RioQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582f07c\\-cc6febca\\-11b7\\-4411\\-8ec8\\-3a6275dc5618\\-000000[\\/\\\\]+AKeVsldcY7\\-JOhDDLt_RylJTF3M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be166d\\-d53bdd35\\-cfd6\\-416e\\-be68\\-4fb074f5746e\\-000000[\\/\\\\]+el6gKKrw224jOV6yV\\-2O3r6TWAI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245850579\\-48882841\\-2a01\\-46e0\\-8753\\-eda02ee3d36b\\-000000[\\/\\\\]+RAowtnSByqgDhJJCJYuS_uES7kk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b973a9\\-8a4e011c\\-0e2a\\-4260\\-b37b\\-69e4c30202ce\\-000000[\\/\\\\]+c_c11WqetKVNaGs20pZKFaEcrb8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afec8b\\-8f570027\\-0184\\-4275\\-9413\\-450ff102b7a9\\-000000[\\/\\\\]+OX4fW0r6HbohdwJw0\\-jcOMnWdx8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b91f6b\\-9ca1da69\\-e2c4\\-4ef7\\-9616\\-f787005ba0b0\\-000000[\\/\\\\]+wPNznT7hbI_1hsOeyJocyDkAQy8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457398b1\\-0fd5e021\\-dac1\\-4add\\-bcb1\\-5fcabd016061\\-000000[\\/\\\\]+pd_PPL9yA\\-HH85xiv8Un1uv5Qf4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566ab52\\-cd68f3c5\\-9539\\-4c5c\\-b815\\-8146f6c08260\\-000000[\\/\\\\]+3xQ\\-ODRm_E3dqzcFiUmrdPTB8xA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ef345\\-753a4216\\-790f\\-4c53\\-9c20\\-ad4650b0a65b\\-000000[\\/\\\\]+Wq8mb9LRx3qegVCsunT3IwMOW5M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3f1b9\\-53151f8a\\-8bb7\\-452e\\-96bf\\-82b776365ba2\\-000000[\\/\\\\]+uOb2tVqgGR_kac9MEpCbZtTwxck\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583b6ff\\-525a90c1\\-12a2\\-4eae\\-8b4c\\-67cb968653d1\\-000000[\\/\\\\]+tdpSl54ivQIOvXDRkL0t5bd0jHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cbd54a\\-2e6fff2f\\-b04f\\-42d5\\-b6b7\\-2f40dccc45e1\\-000000[\\/\\\\]+87WDN216T\\-fW8XXvWRnufQIrS80\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583b6ff\\-525a90c1\\-12a2\\-4eae\\-8b4c\\-67cb968653d1\\-000000[\\/\\\\]+0WFO8gGh\\-6E0xg8Ifrr\\-K7CMrPI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a3484\\-63390351\\-0bc9\\-4e67\\-98b0\\-60ab0a48d946\\-000000[\\/\\\\]+vZ7Plv9vY\\-dxf7PsqRwHqD3uJsQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bda4cd\\-64d55699\\-c693\\-41bb\\-9279\\-7e51dc27bdf6\\-000000[\\/\\\\]+NZH_huTAD8djIZaRw58SjyDw\\-OU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a2814f\\-9dbb6328\\-1d3e\\-411a\\-aafc\\-d2b42ab8905b\\-000000[\\/\\\\]+QsSvXyjCqQruwgF2YnQPj7_PSr4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca82f9\\-74fb92e6\\-31f4\\-42e6\\-afcc\\-95232dde5725\\-000000[\\/\\\\]+\\-vZweS0K6wE8zqjtM4ra\\-tiRP9Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bee39c\\-cf21c9d1\\-6f04\\-4bd8\\-a87c\\-596e94d427fd\\-000000[\\/\\\\]+xDxS6QnUsF3DUdnN8HHczvejO34\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245693d1e\\-5f51ae2f\\-5e4d\\-4f0a\\-a3a6\\-39a60c65743d\\-000000[\\/\\\\]+yqfSj3ApXW_Md86\\-IN7IZlbLtSE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1fac6\\-84b9a8da\\-aa36\\-4117\\-a677\\-05c59a50cd2c\\-000000[\\/\\\\]+7FEpblN9lDWZWWvyB0c5h2xu1nI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b92151\\-9eaccf3a\\-55c9\\-495b\\-a0d1\\-e60134ef1451\\-000000[\\/\\\\]+R_InQnDIqCqrUg3pnxIY3lXjF5g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cabfdf\\-cd720e2b\\-4ae2\\-42e7\\-9f3c\\-9ee819bcc72d\\-000000[\\/\\\\]+DOiMxDt8iXlhyN2TZ3Yq_IfOl6A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576dd89\\-e55d554a\\-502b\\-43fc\\-9d07\\-728cf6c78808\\-000000[\\/\\\\]+RslUchvgMK4PC1f4IDVxDuwN8K4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b6ba0\\-0a2dbb51\\-fed2\\-4fa8\\-b10d\\-01a28e759b4c\\-000000[\\/\\\\]+QyYSkzsuotC78Nl1f3CdxDkDacw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245990abd\\-7fd22da2\\-496c\\-4ce7\\-8c15\\-c5402e038221\\-000000[\\/\\\\]+aonsYivZpU05fv55oY4jity7MLw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7d994\\-93cbd232\\-3c97\\-4387\\-875d\\-d5bd2d089c49\\-000000[\\/\\\\]+NecT5JERDNQm8BnqE9M1BNhheUc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b703a3\\-ade80b93\\-b0c3\\-4681\\-893d\\-b9a143f643b8\\-000000[\\/\\\\]+3muPVQtXm3QCWRYRNgowpRJb5Kg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a519dd\\-4d64e3c9\\-4410\\-43a6\\-a6e0\\-3440cf96ad74\\-000000[\\/\\\\]+2U2L9rEeIOP1_pP\\-Yjw1BON2BLM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ef9e6\\-19ac0e07\\-2507\\-4f77\\-8f68\\-78bf9d52fb68\\-000000[\\/\\\\]+mNdjlYWjO_aNdAibItPGJU1BbSk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3cc2b\\-b724941e\\-63ad\\-4803\\-b530\\-49c312618a34\\-000000[\\/\\\\]+j4O6WpGgLWtPg3PRRd9o2qf7Rmc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c22576\\-d1bb81e8\\-e40e\\-4113\\-b191\\-5db512f8ac77\\-000000[\\/\\\\]+0hirmG3BGjAI3LXeqVFdpfiN3LY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa375c\\-122e43c0\\-1f5f\\-4d97\\-ac81\\-ce9821124ffe\\-000000[\\/\\\\]+uG319L6nLTZHbP2inSS4dg5XU0M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c2b44\\-16b43198\\-9fb0\\-47cf\\-a031\\-b3a6cc371d33\\-000000[\\/\\\\]+lXEc2yny0N9qHu3oYQfrJx2QL84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1e38e\\-38e273c9\\-de5d\\-4215\\-8cc5\\-553d2f2682d5\\-000000[\\/\\\\]+2_PBJIdob4MeF1r39IigCYUfOgo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458af6d1\\-033abf61\\-2f58\\-4d0e\\-85d4\\-dd366ceadbdd\\-000000[\\/\\\\]+s5y\\-PLk31Zl5zzokLKVftlvSb1A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565ed9d\\-1be24641\\-45e4\\-44b7\\-933d\\-8d87a314fe42\\-000000[\\/\\\\]+MZ\\-I_7B45V3zAVLpij2yTw2pask\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a16bb4\\-db088c50\\-176c\\-4f2c\\-ba6c\\-2615d5042dba\\-000000[\\/\\\\]+ff9gUzuAECiQ7Hir6SB_7HBvJY8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0c618\\-4e9e9846\\-03a4\\-43cd\\-a41d\\-eb0bba18d0b0\\-000000[\\/\\\\]+xKPXmjFzdiRqVEJN9Habz1wJn40\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583918a\\-ad882c04\\-20e3\\-4b86\\-b340\\-2af9538c2992\\-000000[\\/\\\\]+Z0wHM1yn0mitXFYSyX24ORqQWfw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458df6f1\\-5a862258\\-7aca\\-40ef\\-98fb\\-3466a646b023\\-000000[\\/\\\\]+1MiBfIo1ACsfO7yTl7m4kMcBe5U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab2633\\-e4ca11a4\\-0dbc\\-4eb9\\-8ee1\\-0a8c18828863\\-000000[\\/\\\\]+tmCJM8wPuFbJ3lgj3dUics3mzIc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596ac3a\\-9cf6b9d6\\-9794\\-43c7\\-898d\\-931a120c1a18\\-000000[\\/\\\\]+Z4XmLYYRUbPOXNDcfT7nLoIFvik\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b416cb\\-415ebd74\\-99c0\\-41bd\\-9477\\-cfefd2023fe2\\-000000[\\/\\\\]+Oh3c71vHCtZwPRwjiQFN2yxzaLk\\=394(?:\\?|$)" + }, + { + "hash": "063a930e285f44e3d506a68e2963a33b6e12e0446c794340c6c02aa4c0942b3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9081[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbc7b3\\-b6cff819\\-3730\\-4242\\-b0e5\\-85247bbcbb63\\-000000[\\/\\\\]+iJKiTjzye2Glmw4SBEG3nSGWEUw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568d40e\\-a7dfd4e9\\-36e8\\-4a87\\-b909\\-565c03160b92\\-000000[\\/\\\\]+46H9gTzkNpNZ_P8DUuHUs_Dcxy0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245999458\\-e3314543\\-2e12\\-4d64\\-9721\\-d1d7a6d50ed7\\-000000[\\/\\\\]+R2dIsbr_ocxNdozppuWXGIXTayg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3ed54\\-dd72574a\\-7698\\-4a8c\\-be9f\\-8caf906f68a5\\-000000[\\/\\\\]+AsQwAlOM6jGTFg3PLLEJFcxbg24\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924586f946\\-46747966\\-bd91\\-437c\\-8d0a\\-017f2ee69549\\-000000[\\/\\\\]+9i5hOi1g4xZ4Fl37PeJimAfGOA8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bef262\\-d9384a90\\-8510\\-49ed\\-96a1\\-b55aa1972dd4\\-000000[\\/\\\\]+zWhkDpz7nXEjrDmftDknT2taJwg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b87c30\\-fb1cf5d4\\-5c37\\-4fc3\\-8ec6\\-a71e26fd2fb8\\-000000[\\/\\\\]+Ll1rMPBC9GLJNR6ayrKqouIAudY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b24234\\-0b7d3c8c\\-5f68\\-4db9\\-a867\\-58dc217c0032\\-000000[\\/\\\\]+8FjWnvFDP23dPWeTgR8qm8UNuL4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7ee39\\-5e150fb7\\-444e\\-4e75\\-83b7\\-02fabd8cac0b\\-000000[\\/\\\\]+7BpwlUP324RgSFa3DWI2zM7NNuM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a8a2e4\\-47d72224\\-a5f3\\-4c22\\-bf2e\\-8805e1087d63\\-000000[\\/\\\\]+kJv3BPBLb36Hn0iw19jxYCB6\\-mA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abdaad\\-b2400b52\\-9ad1\\-4082\\-bb91\\-3793a4230227\\-000000[\\/\\\\]+1oqYmc7uZ4WXjIgYM_xEaJVfbL8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb3f90\\-f0c788a5\\-d6ba\\-4b97\\-979e\\-ea3e26d69098\\-000000[\\/\\\\]+edeuVpmQySvMky81um1eVtcRY0M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245711021\\-6426556f\\-76d0\\-4982\\-8e3f\\-0e94cbc5dffc\\-000000[\\/\\\\]+bSAfU14juK7mITnHjUfPyoinTYM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b88b7f\\-09ebbf31\\-0799\\-4f49\\-b6fe\\-01513d55eb49\\-000000[\\/\\\\]+tK3GNQZSVu8HdMN6EK1FGiLEUEo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a7f30\\-78c8fd60\\-1a0b\\-46ce\\-943d\\-4674e61555b9\\-000000[\\/\\\\]+BBa9S6m857s8YQ3a\\-hlCsBzMbgw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbb8e5\\-9c92ab2c\\-2ca6\\-4476\\-b2b6\\-144ad828d4e1\\-000000[\\/\\\\]+DFRpFS2TY9FAmfHzQItvInNgtEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245adf6f7\\-2ce4377b\\-9968\\-476f\\-b407\\-1cd3b20ceeca\\-000000[\\/\\\\]+oY51iz9PnTj0_anHp14f_TC8EGc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bb815\\-369de14c\\-da52\\-4d7c\\-96c1\\-6950748c153f\\-000000[\\/\\\\]+A6V8ID76jukA3BI4fPwX0\\-ocy5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566a68d\\-89aa7802\\-5036\\-4a0a\\-b804\\-73ac6c5d5c96\\-000000[\\/\\\\]+d\\-FLEeSf9uEkgKvQ2ofFzlWFKVc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456abee2\\-7f2d2fe2\\-409c\\-4d62\\-89ea\\-701cb592ece7\\-000000[\\/\\\\]+Sl27aPxGHaQlaRRHhfDtAexol58\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a19d06\\-f658480b\\-bc3b\\-47dc\\-98be\\-a2aa63315da1\\-000000[\\/\\\\]+Wf\\-\\-rfONq9FTZFZetmTYJ6fvO7s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5b693\\-f7c1c245\\-8bc9\\-4085\\-a695\\-63d86d7409f3\\-000000[\\/\\\\]+2pXRLhj\\-piLf95nTNMEsZ7Kgywo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bda33\\-3c3b90c8\\-ef4d\\-4762\\-94f1\\-0bab113f9b29\\-000000[\\/\\\\]+5bko8\\-31rZWFoa5rP3iiId5rTpo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad946e\\-c1bbebaf\\-4677\\-4e35\\-8964\\-55d50036ebb8\\-000000[\\/\\\\]+HIAKFGLCukckFU_l9MMRiE5PFac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a32dc5\\-fccff72e\\-d9b7\\-4b7d\\-af5f\\-5efe9cd4915a\\-000000[\\/\\\\]+uEF7WmYuxz9GY6dYZSK3f0TfA8A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f13e1\\-769ba574\\-d256\\-4fa2\\-b0a6\\-8b18b99417da\\-000000[\\/\\\\]+hKVvu7DS_XEjdhC9RtcG7xHJZKM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ed613\\-e116ed42\\-daf6\\-4aea\\-9ed8\\-830f2682654d\\-000000[\\/\\\\]+Cxi5rWGCJpljhVEnrktaD1V2qlA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cabfdf\\-cd720e2b\\-4ae2\\-42e7\\-9f3c\\-9ee819bcc72d\\-000000[\\/\\\\]+U4tUSZ\\-S5ToCe70tFdMkKsHmn2w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924580ca27\\-e7321db0\\-1a70\\-425b\\-8e27\\-193992bc89c8\\-000000[\\/\\\\]+PRxS1a0Nrx944cUqsQsbAJOOQ\\-g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4ef84\\-1297312c\\-6176\\-4fa4\\-8aad\\-4cdf22cc05a6\\-000000[\\/\\\\]+jQCtCGC60cWcJBM2EUv_WlqeFDE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458dfec5\\-c8c6da8f\\-9b9c\\-48dc\\-adff\\-d82a23465db5\\-000000[\\/\\\\]+BZOTmrkQIRWV2TMroyUxKPxGEWs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459901f8\\-da412575\\-fc6e\\-48b3\\-95c0\\-3d26b3acfd44\\-000000[\\/\\\\]+uJMdKHkdjBZbZy8FsOsZwIpQR2o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b77aa0\\-bda9b299\\-2651\\-467f\\-8cda\\-c0150460a060\\-000000[\\/\\\\]+_E9vJZEXxvzHB9hvW9YTLxoxt34\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245823b38\\-6f7e2008\\-bf62\\-4947\\-8a07\\-8349fb9f809a\\-000000[\\/\\\\]+ndSQi8V1qSQV9qJ1SAQH\\-JSZ9qs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583dd9e\\-f2a3d79b\\-3781\\-4723\\-b649\\-613d4119089a\\-000000[\\/\\\\]+zQ3hVjZ2AYk0Rz35KcKwj3P_BWU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583edbf\\-aef98ce7\\-08bf\\-4fd2\\-bbd8\\-3c6c08e0139d\\-000000[\\/\\\\]+\\-KKcrLaWCgCMwjRqMpa\\-BomX4GQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ef9e6\\-19ac0e07\\-2507\\-4f77\\-8f68\\-78bf9d52fb68\\-000000[\\/\\\\]+zsflrp1DkXHWIh0JaGfdSur8kZc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a3ee94\\-64ad6e61\\-cf00\\-4229\\-9671\\-dcf3e8d822d7\\-000000[\\/\\\\]+lPmSBBZproZ39k5sBqSF6pApfuA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c4bdf\\-0ce7cbe0\\-1f26\\-49f2\\-9b10\\-80ac06c9b310\\-000000[\\/\\\\]+auANgArk4svZ2seV83vGfGlWKZQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca9f21\\-df492bb9\\-140d\\-49fd\\-8b64\\-ab5c65053287\\-000000[\\/\\\\]+EzhPzV3VYiZookaR6Kc8sIv8NMw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abdaad\\-b2400b52\\-9ad1\\-4082\\-bb91\\-3793a4230227\\-000000[\\/\\\\]+GGG5GYL4b7gHt1NWtTwcsWNRcsM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c08ae2\\-ff91d6fb\\-cdc5\\-479b\\-bb55\\-4e57767ce638\\-000000[\\/\\\\]+ul8wbkketvBtWIAdOxo_Acx7qxc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cfc805\\-4d345003\\-d571\\-4124\\-adf6\\-4fc963be03e0\\-000000[\\/\\\\]+dYAiZJEI5sRKLsv2pk5aiBrshvk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f6001\\-28e87cb8\\-c1b7\\-47d0\\-8516\\-0265e55082ef\\-000000[\\/\\\\]+n0KK04dUCVC8yCNzLhubmNMeW7g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b25d68\\-42ef7a14\\-f122\\-4294\\-b434\\-cab19a6e19ea\\-000000[\\/\\\\]+GLAxVy64g4PAJ_DWRl_\\-m9JWQbI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457523bd\\-619112f9\\-b679\\-4818\\-a74c\\-4fb605f737ee\\-000000[\\/\\\\]+vbprLuO6yhzBIMeDD1aSiCqyVMw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afec8b\\-8f570027\\-0184\\-4275\\-9413\\-450ff102b7a9\\-000000[\\/\\\\]+dg8RDeF9kWWvNWj2wmeYdyfSZB4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ea8a9\\-8b20f30d\\-b540\\-4c6b\\-8caa\\-a1b99ce1c69d\\-000000[\\/\\\\]+9kyZ9F6O5LxlqHMVwEpBjWkukc8\\=394(?:\\?|$)" + }, + { + "hash": "b23e73db29a0f5d3e0b8435fcf9e81737b22358ccf93ccc095f3a80ca5fefb7a", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cac29d\\-7c4b2822\\-1fb3\\-4065\\-8c11\\-6c5b8852bc14\\-000000[\\/\\\\]+R1OLT4aJG390hmDTS8uPpVxT4lo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c17fe9\\-88d3c895\\-7c23\\-4f8e\\-a098\\-7ad48992268e\\-000000[\\/\\\\]+uWHjfs11o2GR0CDGrHQrYxCq1dQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ed75f\\-6a109979\\-ca7a\\-4cf5\\-a05d\\-49a32c010e3b\\-000000[\\/\\\\]+ZgRTVv8ZNHzq06r1_sAQDRIfXWU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579ec00\\-87fd7e65\\-9e4c\\-49a8\\-a120\\-4c7d8103dc8d\\-000000[\\/\\\\]+f1ybgRQB_d2ISUfbX9pgKacKubk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cae408\\-cdb9a122\\-435a\\-4fcf\\-b707\\-dfedaaa78f92\\-000000[\\/\\\\]+Pu92J0RpjeG2bpT_QdHuH7l5oEE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594bbb4\\-6ba838e3\\-da09\\-4dcc\\-800a\\-e029e746fe06\\-000000[\\/\\\\]+CUg3vREP7bY_zzePX0U882QRSHc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245958f25\\-caaf4fcc\\-d26c\\-41fb\\-93b1\\-417136f632d8\\-000000[\\/\\\\]+wvg_IOsl7\\-7omS92lrzcjUlTUhg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab48cc\\-c11c7c3e\\-f5b7\\-4146\\-b7af\\-8eec737d5ea9\\-000000[\\/\\\\]+v_J5btj9JQjxt6m_rbgL\\-5l6eBA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c52e4\\-9896140b\\-d58d\\-4e78\\-bb74\\-592c533c97fb\\-000000[\\/\\\\]+E0qVp_3wzoH8BNpvk1_4nHCtuV0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be6af6\\-42f97306\\-4561\\-44da\\-b4ef\\-74793441ce04\\-000000[\\/\\\\]+D1Wm9CBepHV0G2Si5aEBJI9vDX0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c2057e\\-ea2688f7\\-aefb\\-4fcf\\-8610\\-efe531424976\\-000000[\\/\\\\]+t0JE9jB2YSlVgRkajBTHjGPFjF8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ae11b\\-a78ec62f\\-b544\\-4fc4\\-8532\\-ff5040b83381\\-000000[\\/\\\\]+USyewHZzl6WlvmNGDaxglN2mgqA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924564bd14\\-ef98d614\\-bf39\\-40e8\\-85e7\\-7627f552849f\\-000000[\\/\\\\]+dOqpWp3GwX\\-SO4nuhn1hQtkDThw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458eb9de\\-9175c00f\\-e3e2\\-4b50\\-a4d1\\-9f19684646cf\\-000000[\\/\\\\]+lZVIHqs6lgSvqJZD6jRngx_NNNU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb3ef1\\-72b06f78\\-6ca3\\-4ec9\\-9034\\-5746d7281c8c\\-000000[\\/\\\\]+Wc9bRztLSwEB\\-KIiBOJg_dY2uuY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572745d\\-67d3b4b1\\-764a\\-45cf\\-a0b0\\-8f0c53b37883\\-000000[\\/\\\\]+dnbmIDSOypvIsw\\-3Mh2CtxnvayA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245859237\\-a23eb2dd\\-bae4\\-4d6f\\-90e3\\-6f9990d98dd7\\-000000[\\/\\\\]+CYG9GycWOMQrGbPYN3SHx7ik55E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab2633\\-e4ca11a4\\-0dbc\\-4eb9\\-8ee1\\-0a8c18828863\\-000000[\\/\\\\]+WRbWP8QNGtXBYx5sMkH08n56FAg\\=394(?:\\?|$)" + }, + { + "hash": "d243f21be1efec380a4aff6462045e738bc8593b466088f7c30cb5f045b05a0d", + "regex": "(?i)^https?\\:\\/\\/pp\\.45\\-61\\-159\\-226\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598b88b\\-ef8fe0f0\\-c7b7\\-470f\\-b8fa\\-87ee7ccea358\\-000000[\\/\\\\]+qfZtk7i_f0MtcEzKyAdYcS0vCTc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bae1a2\\-0e82a14e\\-ce86\\-4ecb\\-92b6\\-b65309f94715\\-000000[\\/\\\\]+AMz8CmALK2I5kM067BQrxpEGb7k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a14723\\-60332ad6\\-6132\\-4fb6\\-ae8a\\-2c30a2679df0\\-000000[\\/\\\\]+IeUy7Z2zr1NG7j9S2uG76FAhJlE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245acc701\\-3160cd86\\-235c\\-47ee\\-bce3\\-2b7414afdc36\\-000000[\\/\\\\]+EnTi3ZsGAGXG5z0sJw3KL75Fqt8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458215d3\\-cd933f7e\\-d719\\-4cb6\\-a13b\\-8b6acef0ecd8\\-000000[\\/\\\\]+9Hg_SDviGNEH_pcKR0k\\-pK4jmtQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5a2c1\\-2ebc4516\\-28ab\\-43f0\\-8633\\-94270ae26d4e\\-000000[\\/\\\\]+z4t3n3E9okqQUWUbhxtlk1YPUj8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f2127\\-f92c1c58\\-e37b\\-4966\\-9840\\-e942391f6ead\\-000000[\\/\\\\]+VEg4N_vIo7erU53DuaVoCCYLJ_s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a274ae\\-97cfcd4a\\-aaa2\\-47fe\\-bca4\\-2e0ffa2f30cd\\-000000[\\/\\\\]+SUQNvT7T1rrmJN8vKrkuMV19yl0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a892b6\\-c66f6034\\-0ffb\\-4c22\\-b1c3\\-2d4d0c5e8ba4\\-000000[\\/\\\\]+YWgSCEikRWrzwg32CjAfTQU9qBQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f84b2\\-60a3c626\\-8341\\-4cd6\\-93f8\\-df0557411285\\-000000[\\/\\\\]+uBapxgLeGQsm3Mw4U9QgSe80QQ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a51d6d\\-8034ac07\\-40b3\\-4ca4\\-9df4\\-c688682d997a\\-000000[\\/\\\\]+3k9e0eZU7mWeX0AaTniiO1Xj7NY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a25556\\-a548b5eb\\-f981\\-4dcf\\-855c\\-048bd831b541\\-000000[\\/\\\\]+_sWDUS1xQoPtV\\-yoZ40HNhgvPrw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1875f\\-66d7481e\\-4edb\\-44b6\\-94f4\\-952177219c69\\-000000[\\/\\\\]+9mBJjeWyc1C1TRfUyqvsq0_o87Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924599b854\\-045ebc58\\-0a0b\\-4dca\\-981c\\-f2e679e7a57d\\-000000[\\/\\\\]+W3KV4K7Z89dQ4e83O8MDoQHKaaA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afd22d\\-6f39cb51\\-203e\\-47a9\\-ac1c\\-a9cd3050a3bf\\-000000[\\/\\\\]+IaoQT5ciIrd_cx7J_4ROGiaYRHI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac1a58\\-0668b582\\-b6f0\\-4df6\\-91fa\\-4e8bf382dd2b\\-000000[\\/\\\\]+RRQuz2MVJC5V48qLtwiULnbGQ5Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570f50e\\-b9017f2b\\-303b\\-4525\\-ae9d\\-59aeba21ac2b\\-000000[\\/\\\\]+9BJ56cdyoJf3ZrERKTR\\-n15zErc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245802454\\-5f3c623d\\-a7c0\\-462d\\-a84e\\-9932e75f9e6d\\-000000[\\/\\\\]+uVluw5ccoW8gdlFZ_rIfPAYm7R8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245966161\\-67dc83af\\-cb32\\-4e66\\-bece\\-08a51d047b75\\-000000[\\/\\\\]+HwtJFVgHcxRi0iTOL2iqmcwgW6k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245954880\\-69b9d0c4\\-8749\\-4db4\\-95a3\\-c2ca937e84be\\-000000[\\/\\\\]+6qTV3r3QsGOBur_xroLZZ4BPVI4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585c4f3\\-9562d2f2\\-3dbb\\-43ba\\-8f12\\-bcd4b712da4e\\-000000[\\/\\\\]+Bygt6qJYZRZ6Xrvfuk8nHwF61LE\\=394(?:\\?|$)" + }, + { + "hash": "84b6b5f56d6ac851a16bf4cf74fc0c73a3ab57ec7b3fffef2aad368825b7ada1", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5d6b5\\-04dc1d4f\\-714e\\-4058\\-8a55\\-e6ef4c9cff63\\-000000[\\/\\\\]+sCytpwvbZsX730IQvR5Rq6wgpOk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245937f4a\\-73ff60ca\\-bb43\\-45b6\\-9210\\-1f605d1d17ca\\-000000[\\/\\\\]+O7zHUsteL0hl8SxDYTMuPpLnVFs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7ec24\\-a1d89f90\\-62d2\\-4796\\-b6c3\\-2f3c89eb6fac\\-000000[\\/\\\\]+iaJCI7IbKV9CxFnU9Xdpl5JiV_Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cd67f\\-5cbff8a3\\-838d\\-4696\\-8c82\\-10a9a035f062\\-000000[\\/\\\\]+pEppYlUm0BvfV\\-5I8LQLtsPy3pk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245615238\\-4c418849\\-3909\\-4a31\\-afbd\\-84a3de54b383\\-000000[\\/\\\\]+MOFfLVYtL5Hc\\-f_7gqGX7aZ2qZE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ba912\\-cbc9d0d8\\-ff95\\-4562\\-9250\\-7538b1ae6c17\\-000000[\\/\\\\]+sxvCVidjZcl7OM5UeGI77zJnW7A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585e2a2\\-e22cef54\\-ab6b\\-4495\\-b4fd\\-3fd481c27b4f\\-000000[\\/\\\\]+NxqnzRc0lLsQgQ4XcQadxZ9xP7o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc6ff2\\-1cd1fc0a\\-daa5\\-4433\\-b420\\-6f1e75d3c996\\-000000[\\/\\\\]+Inatfl8Jmxcx6OnSmmWVFTt\\-L3w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af1806\\-c12215bf\\-ed51\\-4c87\\-956c\\-13f501c71747\\-000000[\\/\\\\]+LEfE3tmpsGIcOzujVMrt6tvKWcI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598cc7e\\-ac8c4264\\-1310\\-4b13\\-8fa7\\-16317eb987ac\\-000000[\\/\\\\]+mQGeozpG9VnUmqHbXRnGO8LsqQA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459de914\\-15767062\\-c9ba\\-42d8\\-b066\\-2a7c70e9a7cf\\-000000[\\/\\\\]+YSI12VBAkrjcfs4rhi1\\-50f24CE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5f501\\-36cbecc4\\-52c0\\-4f10\\-a46d\\-5e29a175c1d1\\-000000[\\/\\\\]+5vfYqhxGRrlwzGyCgDebM0qcZfk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7f87a\\-b21f5a94\\-95d3\\-48af\\-a5ff\\-c980ad8f97ed\\-000000[\\/\\\\]+uWJIAyCe0BYuksgSwOR0ypQTppo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a3ee94\\-64ad6e61\\-cf00\\-4229\\-9671\\-dcf3e8d822d7\\-000000[\\/\\\\]+GhzR7zZFe4WZpWu5gXt6sKOAPLA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c40de3\\-7a6439ef\\-87a9\\-4607\\-b1b4\\-20a921554934\\-000000[\\/\\\\]+au9yeq0lLdlXL4NiSWdZWyT07bA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5f2f5\\-209b6385\\-bcaa\\-4d2b\\-acaa\\-399e7814e6a6\\-000000[\\/\\\\]+O4KPTMULUQCx2qWNRGpyV\\-5xmms\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585dd6b\\-8ce06b25\\-8d44\\-40fc\\-b8fc\\-4bbced82133b\\-000000[\\/\\\\]+ZvUsEiYZoMJvigwyZ__A3_vnTGM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582a73d\\-90074ec0\\-9a24\\-4755\\-a4d0\\-43b4b829d910\\-000000[\\/\\\\]+04oubyW9mHml1b7MKr0boVmTaOQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597f906\\-e7085074\\-7149\\-4a6e\\-bb65\\-04d16b75c21f\\-000000[\\/\\\\]+u9uZR_Chh2MRn7ViX3mkvRPwmDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c69169\\-e74e83b9\\-bb5b\\-47da\\-9e1f\\-3e68d69013c3\\-000000[\\/\\\\]+Tn6bwtg0_q2gN4\\-4CAeTxjB2bJ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4b8b7\\-e8ca8193\\-1403\\-4944\\-bc52\\-85ada19f8c9b\\-000000[\\/\\\\]+U10Go8w0Xoz0TMoHW8KhvJxKiEA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c87e0c\\-36c2a281\\-6f04\\-4e5c\\-9b1e\\-586217e8eaf7\\-000000[\\/\\\\]+G3R3\\-m9qsTt1qSypN1Lv0KsVxhY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3f8c2\\-6b744d6e\\-3c97\\-4459\\-b1ed\\-0e21397c28aa\\-000000[\\/\\\\]+RXnYU6a9o2Mzk6Em2277f5pAtK4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574e886\\-c2550fea\\-f912\\-4197\\-a502\\-61c7a6be5be5\\-000000[\\/\\\\]+4Mem2rBcUj_fHuVCFRwcY6iYOkQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e7301\\-722dd0f5\\-fb70\\-46d8\\-9c5c\\-994cc551d6bc\\-000000[\\/\\\\]+KlxHBojLEKtKfPc2AUArFGGG\\-Sg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c62d40\\-6d80d89c\\-cab8\\-4404\\-ba83\\-17bc190da7c8\\-000000[\\/\\\\]+iLTgg0dU8NqsgWxR21Dc\\-jPD6MQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca42c4\\-63d33c21\\-c122\\-4587\\-ac7b\\-24145ad0c4cd\\-000000[\\/\\\\]+mTlVIONbY4N42Pt1FaNlStrykLk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abf9f5\\-ff6b2ccf\\-db8a\\-4cb3\\-bc22\\-6867e129d1bf\\-000000[\\/\\\\]+hrttWO5Z\\-uScyhwI8tHxqoPhkKo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457eb9b2\\-2f64249a\\-6fcb\\-4427\\-a0fa\\-345dd77cd1e1\\-000000[\\/\\\\]+MXk5Ow3krHqXjN_aKSCYVXIewsg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c69169\\-e74e83b9\\-bb5b\\-47da\\-9e1f\\-3e68d69013c3\\-000000[\\/\\\\]+Y_Up4VxV1SRxTMH9olU5VnC3cBg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924591a1cc\\-91bf3f49\\-4a2c\\-4831\\-9bbc\\-a624124e1a0e\\-000000[\\/\\\\]+bzy8o8F6gShT1rPm0bTXCf4nQuc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576dd89\\-e55d554a\\-502b\\-43fc\\-9d07\\-728cf6c78808\\-000000[\\/\\\\]+fVPknMI8y9hoCJJ0RppluLdOs6c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598cc73\\-5e0e6ef2\\-c670\\-4f5a\\-a48b\\-853d5b0df066\\-000000[\\/\\\\]+fL0ptsCa2roJh1y34XDLlf\\-KTD4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b76421\\-63624449\\-c4c2\\-4e25\\-ac0e\\-168dc1b56959\\-000000[\\/\\\\]+_LuN2pWQqVEhGqjGs\\-ip6oPweX4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245726c0d\\-d0433e03\\-5d9e\\-4bd3\\-b06a\\-87db8b598ba6\\-000000[\\/\\\\]+v0gIr92hgz9Fey3FuX10uo01P6A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583edbf\\-aef98ce7\\-08bf\\-4fd2\\-bbd8\\-3c6c08e0139d\\-000000[\\/\\\\]+U5CYIGgq\\-HRiVtXV5GEJHw4vYmc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b22ef6\\-0a14459f\\-ac07\\-4cb1\\-ac89\\-c7798d20838a\\-000000[\\/\\\\]+4bbtU\\-rUfMHpAT7PtYGzOrBXJCg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594775b\\-9c605351\\-2185\\-4736\\-b498\\-0876cd5e1591\\-000000[\\/\\\\]+jQrcyVqFauCHT6pHJLDmPneAc2c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b42aa1\\-0eb633ec\\-9f34\\-46ac\\-a997\\-4b9d60c3c642\\-000000[\\/\\\\]+OIJTil1wKpnlr60ilMzs62QA118\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be63eb\\-5641535c\\-140d\\-4912\\-864c\\-51be9ea7adfd\\-000000[\\/\\\\]+P3grtatfybY7pNZyZgqXv8NcE60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af2a5f\\-5913c326\\-4173\\-4623\\-8b8e\\-017b6b345f24\\-000000[\\/\\\\]+eRih5X7DiLRDcEYC8oq7vK328ss\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245caf4f4\\-9dc25dc3\\-660c\\-4330\\-8707\\-b190a6cb71f1\\-000000[\\/\\\\]+Xix1iXLTpL7gqs9GzXohSpzHDaE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c31317\\-8029c109\\-2a2f\\-455b\\-aa63\\-45f1d7880b33\\-000000[\\/\\\\]+pJBqcziRuVrVhG0voc7N0jQwjJo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328963a5\\-a0179059\\-01f7\\-41c3\\-820f\\-0cc840c8cf65\\-000000[\\/\\\\]+A9TUCXgiNNMCI4YRvQmMGqL8V3U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598cc73\\-5e0e6ef2\\-c670\\-4f5a\\-a48b\\-853d5b0df066\\-000000[\\/\\\\]+DxBpKYzkup2vutoIfqmx90yLygg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924591bfb3\\-d9660b6e\\-f559\\-4ae4\\-a971\\-015940925038\\-000000[\\/\\\\]+nKFE\\-7BTCBNLHo7T8N1Sf9DIVEU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b88262\\-149b7fc4\\-3b50\\-4196\\-b94c\\-6f645178c459\\-000000[\\/\\\\]+ALir22sX\\-Q9PrYKSInTH8j4u2Js\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924581b245\\-97d06c78\\-d1a1\\-4b07\\-907a\\-dee652036a3d\\-000000[\\/\\\\]+5JQhvm_GxUA630uSVkulc9HSNJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aea662\\-c4029b2a\\-68d5\\-4a32\\-bcfe\\-cae813a46fc3\\-000000[\\/\\\\]+cSSGu7fUu68BbwNNUBMzwCQVM6k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c08ae2\\-ff91d6fb\\-cdc5\\-479b\\-bb55\\-4e57767ce638\\-000000[\\/\\\\]+iOe8GhSKF4hX5pdz1UKhN_F8A0s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae01eb\\-d4cafa23\\-672f\\-4eed\\-9a52\\-64d72bfb52ee\\-000000[\\/\\\\]+RhjN_r1pL95oI\\-o6DsIXBjntbhU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd4aed\\-ed0d757c\\-6d4e\\-42c6\\-a91e\\-4c9e67676952\\-000000[\\/\\\\]+BNMluyXMsM4159p6f641kBJ7XM0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af1806\\-c12215bf\\-ed51\\-4c87\\-956c\\-13f501c71747\\-000000[\\/\\\\]+eO_V2\\-Ijrt46IZDHpewjSCHoXo8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abdbec\\-ab1c78c8\\-2ec8\\-4037\\-8836\\-32b96332a166\\-000000[\\/\\\\]+OLm9PAjKAbm9wpGUcqWaDEySOUc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456147f8\\-fac9b729\\-89fb\\-49df\\-8dfd\\-61b24154230a\\-000000[\\/\\\\]+V6i2_dx\\-AwDcFXxve7s01TlEHkg\\=394(?:\\?|$)" + }, + { + "hash": "1fcd8befd5697ef7b751050ea5faec72a5699a7c5e2d0cf59d8f81ae05664676", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wb(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bf426\\-1d172e40\\-dbd4\\-4695\\-ab74\\-ad587286640d\\-000000[\\/\\\\]+6gRyty4v\\-x8vpYmajgzuHO2NhBI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af2dcd\\-39ce2e8f\\-9454\\-4b83\\-bf20\\-3813d4592079\\-000000[\\/\\\\]+hoxCI7js5qV14iFyYbs9CJDZrM0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459de914\\-15767062\\-c9ba\\-42d8\\-b066\\-2a7c70e9a7cf\\-000000[\\/\\\\]+n6uZYBuSVUTqvbwRbNouum9QMag\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458042f0\\-4ca9e5b9\\-317b\\-428e\\-bbdb\\-d285651c31e5\\-000000[\\/\\\\]+YFTaaMmLML7sWAB3d9XLON0liLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459187f1\\-a8c0677e\\-9b76\\-4ff5\\-867b\\-8789a7a7f900\\-000000[\\/\\\\]+kOC1aiFiMZ2UO08CvnvSf56pO84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8e5bc\\-f92e67aa\\-540b\\-479a\\-8ad0\\-b11ec54b1a78\\-000000[\\/\\\\]+BqZyTIQSqbo\\-VSAVG_Eqk9xtn28\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f7a7a\\-6898d21b\\-c168\\-4e97\\-8608\\-4018b036beac\\-000000[\\/\\\\]+rFUI\\-BPvZVBbECQGt6UZNOtdnRA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfa51e\\-c5e1e62d\\-6a98\\-40b9\\-9953\\-644459795ddb\\-000000[\\/\\\\]+g_2CTp7FgronOkBHvygiqh7tYZM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cbbb5e\\-9a19232b\\-4f08\\-4f7f\\-9c79\\-14392c09b32c\\-000000[\\/\\\\]+Xw_2xbXxIRUH\\-piyHqNweEk5_Bw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b39093\\-db7121e9\\-f83c\\-4aee\\-a4ec\\-272a3f54730e\\-000000[\\/\\\\]+m2J6A1mdzp10De7FFyioO1AT4_A\\=394(?:\\?|$)" + }, + { + "hash": "1fcd8befd5697ef7b751050ea5faec72a5699a7c5e2d0cf59d8f81ae05664676", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wxxx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd9fbd\\-88ec4419\\-f7ac\\-4ad7\\-a09d\\-b71a92e7c3e6\\-000000[\\/\\\\]+FbdEUy8Sm\\-KaMkTPIi6qt2BAb2U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245994777\\-c7c22217\\-4ef4\\-48ab\\-a117\\-5a678a6f04c9\\-000000[\\/\\\\]+aIZmoRQ7tg_VzRRcnM7FzcbaQxU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245856801\\-ee0f8903\\-d4c7\\-42c5\\-b5c0\\-cc213863fac5\\-000000[\\/\\\\]+\\-Qj7oF5XZ44k_2pCnjumyWF\\-G6Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca8326\\-383059fd\\-ccff\\-404c\\-ac6e\\-3e105842e73d\\-000000[\\/\\\\]+vk9n2odybjQOvb2eg88VWfXqVCc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae070a\\-cc2e66d4\\-a80b\\-4de9\\-9d36\\-66b6cf55e7c2\\-000000[\\/\\\\]+0vgXanen5pP3tkbJrWtpTU6nhrE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c6dfe\\-5a6f83cf\\-f64a\\-413e\\-b2c6\\-9ed056b5fbc7\\-000000[\\/\\\\]+jPbcgP_gzhigkPk9Y7B63eoPVb0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b741bc\\-91493ecd\\-bb48\\-46a3\\-b3cc\\-7c78a0418111\\-000000[\\/\\\\]+feGaj6V\\-UwkTQ1mhipItT\\-5ahdw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b47148\\-c9173bb9\\-f6cd\\-4efe\\-b8e3\\-34c7288a7b3c\\-000000[\\/\\\\]+b2joZRnp1h6e9\\-63SgQZFdP2Cu4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af85fe\\-f4fd8a4a\\-9d5a\\-48f0\\-9253\\-e8e9bb824fbd\\-000000[\\/\\\\]+HSK_vKiwSQs4bFIyB1dnxcxQGKQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245adfd4e\\-133dce36\\-15a7\\-407a\\-8c9d\\-669e8cb444c7\\-000000[\\/\\\\]+bm0TFoVVfOOOYHGrj_gy\\-x53\\-rY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577db7e\\-8befaef7\\-1b26\\-4f5c\\-a6d3\\-24096654e61f\\-000000[\\/\\\\]+ckLiUVD8JW9k00wIfO62FF2ptuw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245825264\\-5955de55\\-475f\\-4453\\-b6d9\\-122e21b2f6a3\\-000000[\\/\\\\]+oICagGz5rUyJJIjGSR_T_hIAPD4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585eeb7\\-f9513746\\-486a\\-4fa4\\-8ab8\\-376b5bc14c0c\\-000000[\\/\\\\]+wnnR63qYCF\\-tyMO_YKCOZrsnoN0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d1097\\-1cc575fb\\-f467\\-4589\\-b107\\-728fc2a5afed\\-000000[\\/\\\\]+sw5XqpLE7xLTWExJxYn9WKN9sJ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc9ca6\\-9b241a83\\-bbe5\\-4421\\-9c5b\\-2526364e796d\\-000000[\\/\\\\]+EuNSbH7n59N5Lp5HEH8M7Lmk7JA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bcb912\\-78b55287\\-35c6\\-4fd0\\-b728\\-3490c0ffdbab\\-000000[\\/\\\\]+17ZcDR0Jnwt4Ua_3JfSohYJrDeI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dfec5\\-c8c6da8f\\-9b9c\\-48dc\\-adff\\-d82a23465db5\\-000000[\\/\\\\]+NLPQ7Y7wJpxq\\-kdYL5iEXnTUX4s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924590efbd\\-f952a009\\-bf71\\-4c76\\-829c\\-cda28ae70c47\\-000000[\\/\\\\]+wG7B30XB6yzoFcpIVWZJWv0K8fY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456570a9\\-6972139c\\-a387\\-4c80\\-8d3a\\-a82b0ff75f25\\-000000[\\/\\\\]+\\-7aGSYq15JGANeYK\\-epEwQNL\\-1Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b56e9d\\-845c44e9\\-34cf\\-41d5\\-8254\\-8eaab13ba202\\-000000[\\/\\\\]+_xjTda59uqLdnJUHJFkHKWv3rBg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459368ef\\-aeec34ac\\-3e9d\\-43bc\\-9c7b\\-841809bbf542\\-000000[\\/\\\\]+LL\\-Rbnts9v673YPAonNAgO2jEMU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cfda9f\\-4e72a88c\\-a228\\-4c70\\-89d6\\-6048111500d5\\-000000[\\/\\\\]+LlJstSxnE3I8YRXOaSXCQnl_LlY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583918a\\-ad882c04\\-20e3\\-4b86\\-b340\\-2af9538c2992\\-000000[\\/\\\\]+Z0jW4XmEAB14iio8MWVarEAwTDY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bcaef6\\-280fcde9\\-56bb\\-4a0a\\-a171\\-b8893d8d6179\\-000000[\\/\\\\]+328aQsVX599zy8w7NqpX1MPJeoU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac5471\\-c2f7e554\\-6ca3\\-43fe\\-a17e\\-e9794f00c177\\-000000[\\/\\\\]+CuJAf_WApAT3XOVxdSrGTk8zISE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245980cf6\\-c2f30daa\\-1dd7\\-4518\\-90e3\\-bc77250671d2\\-000000[\\/\\\\]+TbwkB0Nygg9Jf3ylNbA6F6Jmy24\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e08d1\\-f41f4e2f\\-2bde\\-41f2\\-aebb\\-57de04f7ba1c\\-000000[\\/\\\\]+o8vOxly_TCBNBGc___RLaAeYWZc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb3fef\\-bae48613\\-91a8\\-4350\\-868d\\-3910403bc98a\\-000000[\\/\\\\]+yMQZ59PiyvtXcEwyVtPWVVMGe8k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bedfae\\-f0bfec4d\\-2c33\\-4bd7\\-9692\\-c342c42dd3af\\-000000[\\/\\\\]+waSOBMyvP\\-iMg7cV_ewQexMQNwU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ec426\\-9b60c150\\-e0f2\\-426a\\-a45b\\-ff2337b93ac7\\-000000[\\/\\\\]+mT6aZjwNPcfmib1xcmui6_5BaXg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c00459\\-943f90f7\\-fb95\\-4d60\\-9bc4\\-5c65b2951d4d\\-000000[\\/\\\\]+rcEhi4Y3I3IHTP2V\\-4xACf4gU5k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8268f\\-dc651397\\-3207\\-420d\\-9bde\\-2330df0e239e\\-000000[\\/\\\\]+gZCo0QdMhI1xRVoP9GxZJvvu1Ok\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f244d\\-8d32a206\\-eae5\\-487d\\-a738\\-8c27df932067\\-000000[\\/\\\\]+GBMTUGjQhY_WSbap4D8roMlTD\\-s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245876263\\-d78d0797\\-6301\\-4c95\\-b9d5\\-c38d6d23078e\\-000000[\\/\\\\]+JH\\-LMkF2AcAE\\-TNHC54lv55g298\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a81f6d\\-4705a7d8\\-fc2c\\-453c\\-8a11\\-f2a8842dc067\\-000000[\\/\\\\]+ra0IeXDdsGp685rFNFFBd4naTdU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ae591\\-06246334\\-52c7\\-4b87\\-b280\\-201755c68338\\-000000[\\/\\\\]+7c11BrRnYGwOmpwYEckIkoZ0kjY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b4ed1\\-b84152c2\\-30ef\\-4aa7\\-a34f\\-eeeaf5cc3526\\-000000[\\/\\\\]+riDQnnQ9JIJnf8rr\\-dsv\\-CXGj9s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b82ca\\-dd52ccbc\\-4b89\\-4731\\-b78e\\-4d1e40fd3e10\\-000000[\\/\\\\]+liNUjeM_yh\\-weofczCUBXdSx0ms\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e9517\\-545dd4da\\-4885\\-4856\\-af74\\-de230ff7fd8a\\-000000[\\/\\\\]+7F0e055vrreGEuRgNEG4R5Z8bgs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a81f6d\\-4705a7d8\\-fc2c\\-453c\\-8a11\\-f2a8842dc067\\-000000[\\/\\\\]+cCufsjpT_nUJJ8dFxZKjc9K8nEE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c5dae\\-606fd8b5\\-8175\\-446c\\-85c1\\-e918c9237d56\\-000000[\\/\\\\]+UIVsaQK5IlLpAv2Zqd6Un\\-SfgXg\\=394(?:\\?|$)" + }, + { + "hash": "08c6a7ea179f3d8dadd0a3e4a2872995291c6f0c8a3fea80d3d8c7d6877b258d", + "regex": "(?i)^https?\\:\\/\\/signinattportal\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245683ac1\\-3eb35af1\\-7c90\\-454b\\-9c82\\-76ddf890233f\\-000000[\\/\\\\]+8O10RBa\\-_fFscRIuXedpYn4iQLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577b2da\\-82566412\\-bd4c\\-4e1e\\-8b32\\-ae5fe321e049\\-000000[\\/\\\\]+rZwDYKaKVrAm_8sfK\\-9aNcr03zo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245becb24\\-c0724bec\\-da1d\\-4efe\\-81ea\\-bf3c3f8d1410\\-000000[\\/\\\\]+oDNe33rfl4kiyZntrYqyVViNb9s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e1a6d\\-430cf414\\-f0ee\\-4bae\\-b778\\-cde95b59648d\\-000000[\\/\\\\]+b3RYZwNwoOkZAoNUxDufLG0jXhY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459127af\\-6a4f3046\\-6024\\-47e1\\-9877\\-b36627b980e5\\-000000[\\/\\\\]+NHCqfVKMy4\\-AghlF6xKmYBm8JEk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6fa37\\-e6b5caed\\-fce8\\-4be5\\-9d49\\-15aa7bbf8743\\-000000[\\/\\\\]+myhsRvW8FgHUAtS9sqFVJwxcOEY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a9e7e5\\-12bfce78\\-c3c6\\-4b8d\\-b858\\-2976a467f37e\\-000000[\\/\\\\]+6ItOiGKnprIvGt1jY2cjFaZiHJM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cae408\\-cdb9a122\\-435a\\-4fcf\\-b707\\-dfedaaa78f92\\-000000[\\/\\\\]+bB1HsRuzyyElkCOrSiX0Vxd1JyU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a54ffe\\-6446976d\\-f798\\-4ea5\\-9d5a\\-0ab038c4a8fc\\-000000[\\/\\\\]+gbh6PfL\\-ovAkTc0vBLT2LLJJQwE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b85d68\\-9e8e4c22\\-f0ee\\-4f10\\-a28d\\-c985b3a119a7\\-000000[\\/\\\\]+m38pZqJfJDFb07LG\\-KjUe\\-4Jqxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b92151\\-9eaccf3a\\-55c9\\-495b\\-a0d1\\-e60134ef1451\\-000000[\\/\\\\]+HVVCLePHNPQ5QeUfZQYP5xloZaw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b3d99\\-86d280fd\\-affe\\-4f18\\-9ef4\\-77b39908ddc0\\-000000[\\/\\\\]+VWmEIzf0OBpotgu_hsbDelhy89c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a51164\\-7c1c3a2f\\-f4c2\\-40a8\\-9876\\-fb747979b3b6\\-000000[\\/\\\\]+_\\-H8egVmZnzKz2Km\\-wHRdrPpZOQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245837c1a\\-5a579541\\-8166\\-4a96\\-8988\\-bcd8e4246dee\\-000000[\\/\\\\]+rmGM5XLoFA5k6hvy49w_68hlNhc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b64807\\-ac6608fc\\-24bf\\-4eae\\-b88d\\-3cb6cc5286c0\\-000000[\\/\\\\]+7MC6P9UUAvDQ3Q\\-DndkPYksgJcs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b75c31\\-a27d89d6\\-5a6d\\-49ef\\-94d0\\-bea0ffc330b3\\-000000[\\/\\\\]+xv8bkYEpLLReR5IzFTt5Is7Alro\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c414a\\-a35e4727\\-3d04\\-4e85\\-aeaf\\-b4891b006fea\\-000000[\\/\\\\]+HZw5Boeaks8fB3hIJ\\-BKhML69a8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f2127\\-f92c1c58\\-e37b\\-4966\\-9840\\-e942391f6ead\\-000000[\\/\\\\]+uio8FXRoMDHaytpiqKbxU\\-LOhKk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cbb558\\-b4e023cc\\-25bb\\-4c39\\-9146\\-fe6d7def2533\\-000000[\\/\\\\]+RAK3P1ThnJBcb\\-YrTS_wv7THNBY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb0389\\-2ce4d92e\\-569d\\-4cb9\\-9fcf\\-8e88a0b9d8c7\\-000000[\\/\\\\]+sMSWN\\-oeLbt98yQr3lffS2sI6og\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245acd299\\-3d035402\\-b37f\\-4c99\\-a491\\-6aabee14d361\\-000000[\\/\\\\]+jOUeL\\-TzLYJ9ExOeclYZegRmSRE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245894d09\\-b1622eda\\-2d12\\-41ca\\-86e2\\-c6de92261c30\\-000000[\\/\\\\]+lLHlWeBoOBlqTGqIenpFFQnbKeA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587b697\\-392c3ac2\\-8392\\-4138\\-97d1\\-ab03c38e16b2\\-000000[\\/\\\\]+MWRJEpCQjwQ39B44nRWBhQFcZvI\\=394(?:\\?|$)" + }, + { + "hash": "6bb35f6019a22dc2f69aa8cf75900ce5390d611d71927bca40c9407a3a6822d8", + "regex": "(?i)^https?\\:\\/\\/pub\\-dbed690b6ede4b8dbd7cc3780114d41c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595a0d5\\-70abb4a7\\-6464\\-41e5\\-a21d\\-ba6f2062d6a9\\-000000[\\/\\\\]+3Xx4I\\-wcJE7KfIgdthrhGqqeI4A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca42c4\\-63d33c21\\-c122\\-4587\\-ac7b\\-24145ad0c4cd\\-000000[\\/\\\\]+d6QtgHSzJ\\-Z\\-hTWndzZEFVkJIUc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245706ebb\\-9235d66c\\-e9b5\\-4a1c\\-9ee4\\-40404c97165d\\-000000[\\/\\\\]+sYcIvW5wI46HuFIbKAuIHe5YcPg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a876ee\\-95cf6deb\\-959e\\-480f\\-baa0\\-4f4ef33521ab\\-000000[\\/\\\\]+O7ylm2OoCHF0999lmd1ir88h6lI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b28695\\-636f6f04\\-ea6b\\-497f\\-b6a2\\-2ad9989cb155\\-000000[\\/\\\\]+ihrSDL1yUU37jQDU8IfAjIWOnCI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bdb804\\-04dc39d3\\-81dd\\-4a93\\-aa6e\\-523b7022fff7\\-000000[\\/\\\\]+MN4rqfV2o00HeGdSftoGLCCBK70\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad8b69\\-47666f34\\-a49e\\-4ce9\\-babe\\-1927c322c9b8\\-000000[\\/\\\\]+dc0ZrIWfUumDQrZU5Wmd_oXPPuY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459e84c6\\-dcb78db8\\-540e\\-4062\\-bbf0\\-1381ade35b0d\\-000000[\\/\\\\]+Wpw5i1oV1z40\\-pFYreQlKGdR4g4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245742d56\\-4f24ce1a\\-ef1a\\-4b2f\\-ae39\\-7982ee96de4b\\-000000[\\/\\\\]+dv0tQV5xlXCl3sG_J9aA9L8bid4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb5541\\-88e7dc2c\\-cc69\\-4226\\-90de\\-bf0794e7a028\\-000000[\\/\\\\]+9cwrjbiIdwLDO_ytyLd9UarwRM4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1a820\\-9a1f4e33\\-f2c9\\-4d2d\\-8f48\\-b67c2a2aaf1b\\-000000[\\/\\\\]+HPxGp1HwMIFPBSxlC5sAObdA8Vw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1208f\\-238bc1f9\\-49a2\\-4e6e\\-879f\\-a4b9e487c971\\-000000[\\/\\\\]+UddKqkX0I3Ii4qPTht8sMJxv9jI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582d4c0\\-b06764d0\\-9c5c\\-41a5\\-af50\\-c3d340588121\\-000000[\\/\\\\]+StJq5yQW5VFFLu\\-0mdFR\\-U8KLSs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bcea70\\-69ab7b3e\\-ffe7\\-4775\\-84c1\\-6aec219a5662\\-000000[\\/\\\\]+tMBMRXvagYA3pV0hCD\\-HK_zUamY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457386c6\\-7a618e7b\\-35d6\\-44d4\\-850f\\-1b599ed0b2fe\\-000000[\\/\\\\]+SDdvGwUr50O5G9iQ4CPVxGywVkk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae4115\\-a781fb9c\\-384f\\-45f1\\-97af\\-40456fe733ba\\-000000[\\/\\\\]+SWk_506oFJL4iYEnkgED_WY_z3Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aed3e9\\-a24abaf9\\-5c7c\\-483b\\-a608\\-c74ec94647a1\\-000000[\\/\\\\]+f\\-W1ceptX6yif6RIx\\-U1U9THtPw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3f1b9\\-53151f8a\\-8bb7\\-452e\\-96bf\\-82b776365ba2\\-000000[\\/\\\\]+wIpvQSyEZSMUrijQtvHmex6v2mE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457fa87a\\-6e687acc\\-d560\\-43d8\\-996f\\-e490241719f7\\-000000[\\/\\\\]+STqp9e8zW1eh0W32XkTOLeduN_4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245946659\\-a458dd88\\-5ec7\\-4dc0\\-ba35\\-d352adca1313\\-000000[\\/\\\\]+j8by2gMcsT2poP51UvVXI2Se41c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c9265\\-b88ff94f\\-b5c3\\-449d\\-a6ff\\-2a399b1a9e80\\-000000[\\/\\\\]+pIBJclQooNxWpkJta\\-eD22Rc6BI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c2b44\\-16b43198\\-9fb0\\-47cf\\-a031\\-b3a6cc371d33\\-000000[\\/\\\\]+Q1H_XEgH6iY00QdLC7iaUp_JMgU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924593f8e9\\-8f69f238\\-72d2\\-47e8\\-a69a\\-77c89cbda018\\-000000[\\/\\\\]+YOTCaT0U3iIBFJ6TgloL6U0Jvzc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458178a5\\-243e3a50\\-3e0c\\-4fb5\\-981b\\-b4a59109d85a\\-000000[\\/\\\\]+bw3aUb35qlgbpnAtFuuQQbSJa\\-c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245793c57\\-860b6d24\\-e586\\-4c42\\-b125\\-d73a61fb386c\\-000000[\\/\\\\]+M12gKBbsKprSNrZc3dFMy5\\-QY7k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad946e\\-c1bbebaf\\-4677\\-4e35\\-8964\\-55d50036ebb8\\-000000[\\/\\\\]+tFd_3oaStk_dA4kftZynn_SaKQE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565d237\\-967d81b2\\-a4a0\\-4c65\\-8646\\-04c149ef6dc3\\-000000[\\/\\\\]+_GbZy92h624Vtu61ETG0ktL8dJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7bcb4\\-7a235c88\\-18c1\\-4484\\-b661\\-ddbde5cf7e4e\\-000000[\\/\\\\]+PqMZV5wjooMlG2hIEvuhWCWHJVA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576ce97\\-9a120069\\-0d42\\-4b07\\-abd4\\-d04e915e74b3\\-000000[\\/\\\\]+Opm7xUJeZaFw0hrJi0iXgt4z6BE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca9f8c\\-b41f1b6a\\-70e3\\-4614\\-94e8\\-c3c54b739f8c\\-000000[\\/\\\\]+r1rDQjxudzfx5xQLeBEg1P\\-Te9g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce91ca\\-01e52bb4\\-bfcd\\-4352\\-a4cc\\-386f777683c1\\-000000[\\/\\\\]+xa3LaBY_3FbFY9\\-m2pcRWtXN_Uc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458925de\\-2ae1373a\\-5e0f\\-4004\\-b29f\\-5114d56ac945\\-000000[\\/\\\\]+l72VFCD\\-hvdNo0Q0VzoLZM0ZjUA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d96a5\\-55e7903e\\-1ba6\\-4786\\-98e4\\-ccab4bd6d4cd\\-000000[\\/\\\\]+TVAa6a111MlJR5g1LBwWlY0rlNQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bee75e\\-217a0146\\-2b7c\\-45c5\\-ba9e\\-690630c811f1\\-000000[\\/\\\\]+3tTYfLBg0HiK5totxkoaWIiJaIw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b15961\\-0a79fa4c\\-538e\\-4215\\-a939\\-7b83df639bc1\\-000000[\\/\\\\]+sJXdFkkKSOC73nxltTMMw7\\-TcFs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0b1b1\\-92080a82\\-7a09\\-4b43\\-bd6d\\-023a9b0f0387\\-000000[\\/\\\\]+3GEo7f6wiLESCtRB6H6IKrNk_XQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245911bf0\\-9774c505\\-06f1\\-4e9e\\-b9f4\\-03bd555dd56e\\-000000[\\/\\\\]+ye_zFojDqo\\-_YQjIoUAdpFmZof0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a5fc5\\-3189f977\\-cf11\\-432d\\-8885\\-d04ecc2f8e10\\-000000[\\/\\\\]+1uUIvUun8qMQhrdycZJCzLf2gWs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a440a0\\-2c608000\\-eb48\\-48bf\\-b123\\-31fa093b0b63\\-000000[\\/\\\\]+RM_quIo2vz3gD8f6I08NjjJbyy8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a85e76\\-7b9ffa08\\-883c\\-43c3\\-81d0\\-027d31fe5329\\-000000[\\/\\\\]+3iTyw7DwXV845EzG0HaAWEAXwAM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c017f8\\-1a4c6b6b\\-fd49\\-485c\\-bcd1\\-3b16bfbea582\\-000000[\\/\\\\]+CutWsh3FRRmSdyA55YFDIx7p9xw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c136f2\\-062e6535\\-acc6\\-452d\\-beeb\\-c3020cace96b\\-000000[\\/\\\\]+Tl80rbdmyIybcSRNqjLg0on0oyg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5a81f\\-230588a1\\-b10d\\-4db1\\-b57b\\-74a4c759064d\\-000000[\\/\\\\]+831cKkRld_dpZl\\-RRg7nIynB898\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587aa7b\\-4d225cce\\-026f\\-494f\\-9c3a\\-1d84216fe738\\-000000[\\/\\\\]+d1E7g4Qz_bpAthFH4I95JAsB\\-_k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6b43d\\-c8aafb00\\-4086\\-4fe8\\-8371\\-4046ee3e6e42\\-000000[\\/\\\\]+hqGGq0RLymWZPM19HCKSm7sr\\-J8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456701ef\\-8756aacb\\-4ef5\\-41e8\\-a1e9\\-ea8a66737fd5\\-000000[\\/\\\\]+myunt0Jf7otdsYexIgRfgBTLpc0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597ef9d\\-d6fe3d05\\-7fbd\\-4d6c\\-9a1e\\-577ee5e20838\\-000000[\\/\\\\]+e_rrrM6qyj\\-OdADXfZHip6lQx2w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456178f0\\-d2033ac0\\-7c95\\-48f3\\-beb9\\-8768caf0c64a\\-000000[\\/\\\\]+p2gaPUh5riqWPsgPL267VqTKuW8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456abee2\\-7f2d2fe2\\-409c\\-4d62\\-89ea\\-701cb592ece7\\-000000[\\/\\\\]+9U9QzHzDRLv_sk0MxidlAMC8h0E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c70f74\\-bc89680b\\-adda\\-4a27\\-a3f7\\-34995cf9c1d3\\-000000[\\/\\\\]+_pJ8iCkk4PDqpF8_beUecJ0z5jk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bda4cd\\-64d55699\\-c693\\-41bb\\-9279\\-7e51dc27bdf6\\-000000[\\/\\\\]+JgCEcUqqS5mzrJlwwUTSeoMsnUA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3a2dc\\-05d8487f\\-1ff4\\-4ff6\\-ba68\\-0dbae2278587\\-000000[\\/\\\\]+Jw0lJ7_o7rx_izPuewo_fDWIt5Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e8042\\-9b736689\\-535b\\-47f3\\-959b\\-ec258b8c68ae\\-000000[\\/\\\\]+z7BIOZArf3fhrp2GTbn90YE5LRc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cab357\\-994fdc63\\-f642\\-4293\\-9930\\-cd6455221b18\\-000000[\\/\\\\]+3wzy9kCu6lzJNRN\\-N_mhooOnvxc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0a5f2\\-ce154cae\\-35aa\\-49e1\\-bf08\\-ea3a8be24d63\\-000000[\\/\\\\]+NF2jpiVfUPsGNvKcDyGZyA9KWnY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bb9c8\\-41f1b7be\\-1c45\\-4247\\-888f\\-df494617fa25\\-000000[\\/\\\\]+noiDD_av7v88\\-IYNXppnqrE8INE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587dd71\\-68402dd3\\-cfea\\-44f6\\-9457\\-8737101b7668\\-000000[\\/\\\\]+\\-DYgkcAXjPFaqydAcw6TTbzkRG8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458debea\\-5a45a4cf\\-6f6c\\-4dee\\-aaf2\\-555f048bc22c\\-000000[\\/\\\\]+KUCY9J0MT_eBUzmFM8rcG2lYxMg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b85ac2\\-ee87011c\\-2129\\-4ab2\\-8e6d\\-a1c5773a96e2\\-000000[\\/\\\\]+vbxI5PtwpF1VCXZZdPHQ97Pvb4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245645277\\-3a6ba2f0\\-072c\\-4ef8\\-8de1\\-1f6d1c442434\\-000000[\\/\\\\]+Pyh0SBS3sQtLU1XBBzu3ekV5sD8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ba2c3\\-0b4067cd\\-bf73\\-404b\\-b12a\\-25a4a931486c\\-000000[\\/\\\\]+9zVaL0CEqsSkAqWyYnK4B6pnlqM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c77adc\\-a2d1fd98\\-f1e5\\-494d\\-991f\\-910e8cd28963\\-000000[\\/\\\\]+gLMqonwF2djlWdmyQLg552NHN\\-8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a43b8b\\-1d27fb08\\-f0c9\\-4d9f\\-8629\\-926b610da21d\\-000000[\\/\\\\]+JjJw_HfrPFo321QaW_18gg3t64w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bee75e\\-217a0146\\-2b7c\\-45c5\\-ba9e\\-690630c811f1\\-000000[\\/\\\\]+aQdtt2D1m\\-CdNeA2oBP0ESSPaAA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3cc2b\\-b724941e\\-63ad\\-4803\\-b530\\-49c312618a34\\-000000[\\/\\\\]+rgb_m\\-LJCygaFMIqwcZC\\-ddaWEs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456124bc\\-9bc70561\\-15ff\\-482b\\-9397\\-86b4c44f808f\\-000000[\\/\\\\]+EQMG8nb5cgXU1_puT7NS1d0Xils\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245668cc6\\-5805c47a\\-96a8\\-4fa7\\-a23b\\-a63d8e950e41\\-000000[\\/\\\\]+DOZ5BkCAIlSOWcYHjjr6GaAO_CA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb5e1d\\-9ea2d060\\-8397\\-4994\\-ab19\\-fa9f6ecafafc\\-000000[\\/\\\\]+x6Inmw4YYoILbLOj\\-ITd_9_AKpM\\=394(?:\\?|$)" + }, + { + "hash": "86f2630545f4e38892a3dbf579597e19713ac62dd5bab2cfdfd4ed9692c9509b", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bb399\\-838c5e90\\-7111\\-49a2\\-b9d4\\-2621fc4c034b\\-000000[\\/\\\\]+_rZGXByqchH0\\-OcQ1mVM1NIcBUU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570a3f6\\-80204fe1\\-f17d\\-4f12\\-90d0\\-20de575360f1\\-000000[\\/\\\\]+Q6kqxkry1f3Dgac9zqchfKlz_IE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e5d82\\-1c581ec2\\-fc2f\\-46de\\-9dd5\\-51e944cb745a\\-000000[\\/\\\\]+ROl2WOI3AI4T9RILI1MG99yr_zI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457142bc\\-8555070a\\-0192\\-4618\\-8a95\\-14a0a3a1792b\\-000000[\\/\\\\]+ZsLdKOiozsa9obr23bZ4Y\\-4lItg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245835ef0\\-453a5f17\\-9c79\\-45a1\\-b35b\\-8874891ea9de\\-000000[\\/\\\\]+9njs9QiUp5M97PQf3hxhiNFc2lQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a9e7e5\\-12bfce78\\-c3c6\\-4b8d\\-b858\\-2976a467f37e\\-000000[\\/\\\\]+a6rM_vgstbz23KXZeGnHbMtr0Vk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1bfc4\\-2f140d20\\-009b\\-4858\\-840b\\-8237888e96d1\\-000000[\\/\\\\]+vAsz69JSTFqQR5kz4rH2W2UBIBo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574949c\\-7bb38307\\-7f20\\-496e\\-96ed\\-01f99697e5f0\\-000000[\\/\\\\]+58xqLy8s9myQVUTG2Gjd6Hv91MA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb5344\\-017884ef\\-c84b\\-4c74\\-b27e\\-73d30534ef4c\\-000000[\\/\\\\]+Nyp66YJqeLzso1gpg4YsaDzhfWo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566ab52\\-cd68f3c5\\-9539\\-4c5c\\-b815\\-8146f6c08260\\-000000[\\/\\\\]+sDXIJp7FsJxQY5xX94alIJNqmdo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf1138\\-d6db30e9\\-1db1\\-4c3b\\-b6b4\\-ed3f61a8cd21\\-000000[\\/\\\\]+kWIDvXR_\\-DTKiVUWzLxlAN6puL4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbc7b3\\-b6cff819\\-3730\\-4242\\-b0e5\\-85247bbcbb63\\-000000[\\/\\\\]+WwmHUlK7366a1ID71zwJ7a\\-Fcp4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595ffc2\\-24de57db\\-571f\\-432d\\-9608\\-b87982ca95d7\\-000000[\\/\\\\]+gf2QSW08rXWtaZawOFC9WI8Wn_4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc5157\\-44b96733\\-d357\\-48fb\\-b31a\\-140cdfdb0615\\-000000[\\/\\\\]+751p3xIXQPdgbUiQ_sN0YUKO200\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ebd13\\-b983f4a0\\-cc3e\\-4e4a\\-94ec\\-4ce3640d970f\\-000000[\\/\\\\]+d2sREUesI0wp93NC0DwbTLR20vg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924593282e\\-ed689b0e\\-f267\\-4ebb\\-b43d\\-55485619f4e6\\-000000[\\/\\\\]+OG8w0IASjBXZj3S6DQnGEAIFc28\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca8326\\-383059fd\\-ccff\\-404c\\-ac6e\\-3e105842e73d\\-000000[\\/\\\\]+YzcvyXnpwBKrRhUVB6KWN3u6u24\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924588c4ac\\-46c467c6\\-091d\\-4000\\-8e49\\-eb96acc41af6\\-000000[\\/\\\\]+9\\-d88dnLBSK9HiQ1TP4yPFa1T_4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245737389\\-8a1d47d7\\-8792\\-48c3\\-b01d\\-7f2aa92009e0\\-000000[\\/\\\\]+AZgaSF\\-7gFLNJE_AAssv\\-7dd_zc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b41a62\\-29b60749\\-d29b\\-417c\\-8c4e\\-af1bda1e4595\\-000000[\\/\\\\]+1qDnqfi3RJL5o_mvxk_yLM1\\-TDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b416cb\\-415ebd74\\-99c0\\-41bd\\-9477\\-cfefd2023fe2\\-000000[\\/\\\\]+Izchx5lA3WcyXlqD4_o\\-v04\\-g8w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b699e7\\-4b99f026\\-3061\\-4ce1\\-ad74\\-b82407bdb607\\-000000[\\/\\\\]+G\\-pblKE8d8m7r7BRrdkj0nOyF_Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c11916\\-c0589e5f\\-8505\\-468a\\-adbe\\-b7a435428f57\\-000000[\\/\\\\]+KI4kdq7ym_EaeKC05e5G5phrrEY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c2790\\-24cfa430\\-0e18\\-4ae2\\-b7bc\\-555a045bba00\\-000000[\\/\\\\]+Y0yN3d8HAlreqDAlisWKVg46ua0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924590a4c0\\-19743d3e\\-392f\\-4b37\\-aacb\\-2d8a1c7f8e0a\\-000000[\\/\\\\]+ImicbyntE0w1UFO76NxqjwscZAA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c04a15\\-f44528b5\\-4c55\\-4365\\-9e27\\-aef5b90ddb97\\-000000[\\/\\\\]+MdiQS_DMQUCT4caqW0M653TxvLM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b75129\\-4ce48abc\\-9aff\\-4dd5\\-9962\\-863c7da9aaa0\\-000000[\\/\\\\]+pVI7rbX0JlO9lCGbn0yZtAooDaE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e2a2a\\-477c19f9\\-f997\\-4549\\-ac54\\-9b57005b00e1\\-000000[\\/\\\\]+\\-9QDHf\\-NPQaL5nwx03aMs0sOfOI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575f3f6\\-12244375\\-2baa\\-4a49\\-9574\\-e35cfd5508ce\\-000000[\\/\\\\]+_L3mkEYI5CIGX2kLVEiZKWf4vyU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457b0c86\\-f7ad8f46\\-12db\\-47cf\\-92bb\\-985f4c9448b3\\-000000[\\/\\\\]+UqIWAG2qUt6C1mawtqgcvTAZ_HA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245958842\\-a579deb6\\-1eec\\-4d7b\\-aeb9\\-ff738f3efdad\\-000000[\\/\\\\]+sDH8CwSI\\-O\\-KuUmb7JdaDgxJ364\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b03ab0\\-dd01f63b\\-0ee8\\-490a\\-a9c5\\-0dd836344038\\-000000[\\/\\\\]+wWn5rU5SUWr\\-rYRhc73d7nS6KVc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e6008\\-d4bb0dfb\\-530a\\-47db\\-9a72\\-d96dca748231\\-000000[\\/\\\\]+BzXhmeCgRnA1TtrJuaGOdyv47CA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c62d40\\-6d80d89c\\-cab8\\-4404\\-ba83\\-17bc190da7c8\\-000000[\\/\\\\]+f_NrqAD2Tc6OtuMJnsR65j2\\-KkA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca7415\\-358fe757\\-27ac\\-42f0\\-9eff\\-002fcfe81682\\-000000[\\/\\\\]+kNwBUSiFXv7jn7LhXARbYKwX6Bg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a19d06\\-f658480b\\-bc3b\\-47dc\\-98be\\-a2aa63315da1\\-000000[\\/\\\\]+vh0F90P_FxfKk5ue7_ophh6kgKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b752d6\\-f0a24bd3\\-f3f1\\-4ffa\\-a60d\\-ae0b3ed8d02b\\-000000[\\/\\\\]+PakJVT5E4_usKyNBq06IJx4_bcA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a17947\\-cfa1cdd2\\-ebce\\-49f9\\-ac7b\\-efef0e6994f2\\-000000[\\/\\\\]+eJvpriDtyj42HfKL2bNSmfsgj6Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c18758\\-2fc14ba2\\-11b7\\-4ff5\\-ba5d\\-b70a155eb493\\-000000[\\/\\\\]+ARZuuO0ZP7HIE4RixIRNsbqBePo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a25556\\-a548b5eb\\-f981\\-4dcf\\-855c\\-048bd831b541\\-000000[\\/\\\\]+FJUjrrLHLP0oYG1_6OEVCB_p0As\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569b1a1\\-ded4fb48\\-94d4\\-4d88\\-8b00\\-cb8f7c66e45d\\-000000[\\/\\\\]+EIoe90hhNtZT60DUaB_BYSalUiU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf3436\\-88e5c307\\-53d7\\-44d0\\-914f\\-7d026f3358b8\\-000000[\\/\\\\]+UVhKq3I\\-_\\-W4zOMrHq0AE78s7KI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245698ead\\-a68743c0\\-c9d5\\-4039\\-9a80\\-12844f5f2eae\\-000000[\\/\\\\]+SMN5SDs\\-JBOlCemm9zI1TEM1DCI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458305f3\\-8ab6837a\\-bef6\\-4a41\\-ae1d\\-360133829afd\\-000000[\\/\\\\]+he4LTM4NKnHGSvbpwLQTlu3inbg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd6da9\\-4f4039d4\\-7969\\-4737\\-95e7\\-fb9a4fae2be5\\-000000[\\/\\\\]+7ba8zztVHe0tDGHwP3ayjRfsk\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca9cfd\\-edd02a5c\\-429b\\-4f80\\-a0d9\\-a6e5827c7709\\-000000[\\/\\\\]+nMUjFS53lBW3Y_qOVxA5tsF4RDg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245850579\\-48882841\\-2a01\\-46e0\\-8753\\-eda02ee3d36b\\-000000[\\/\\\\]+Masf08Toa2Dbe05LSnjomlmgYeI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ceb462\\-d519110d\\-ec13\\-4ee4\\-b9da\\-4ea8fb80b2dd\\-000000[\\/\\\\]+D57f8eWjnkFE4KxpHez7kAP7Zys\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bcd437\\-9b5f996c\\-3bc2\\-40bb\\-ba82\\-78e8233d2c95\\-000000[\\/\\\\]+F1IFA65ja4doSw56DwdDsf\\-z4QQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c23056\\-94769a5f\\-af7b\\-47d0\\-8f0b\\-b6b1cf2d6846\\-000000[\\/\\\\]+UJoPeFarkpCV0wAud1fAFXq1wPw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f234b\\-d13e9307\\-e69d\\-4324\\-98b0\\-bdaa9f6b897a\\-000000[\\/\\\\]+4EJpUZpzEKm25v7GwIphEm6sgDw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce2870\\-0cd85352\\-c455\\-4d55\\-8e67\\-68a1cb443293\\-000000[\\/\\\\]+XiBYzpdWBLw_EHb9EQJeMt0bx3M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb7264\\-147e7d67\\-db0f\\-4a48\\-bd82\\-e50d5755ad82\\-000000[\\/\\\\]+HyAXYYxvSRgmnd5mKzk7lAtwTyo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245913412\\-f7284bef\\-1c90\\-4bf8\\-876e\\-c05a5e22b7af\\-000000[\\/\\\\]+uCFP9ssIbIeifKGtGKHubMAWTmg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf68e4\\-f1c03342\\-862a\\-4ecf\\-b3f6\\-0ce50a9c0ea5\\-000000[\\/\\\\]+JAwASVnnB_2ju48VA4_T3gVlx5U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b41a62\\-29b60749\\-d29b\\-417c\\-8c4e\\-af1bda1e4595\\-000000[\\/\\\\]+RvnVfJnCe\\-lGw6KTVOabFMCSyiQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575938a\\-a4c36473\\-8312\\-4489\\-86ee\\-d31f41c0a06b\\-000000[\\/\\\\]+g6ku75U3dD0ISf7fwQhPNMEKYCM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573bbbf\\-c6d91822\\-2849\\-43cc\\-ad23\\-d6aaeeb18eb9\\-000000[\\/\\\\]+2qOX99DXWD9Bzzli2dtrkpI2CQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459187f1\\-a8c0677e\\-9b76\\-4ff5\\-867b\\-8789a7a7f900\\-000000[\\/\\\\]+2a32gM7QobVjh686Zi6D\\-lcqAT8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924567122f\\-c894187c\\-117b\\-4bd6\\-9b4c\\-af4c960d7ac2\\-000000[\\/\\\\]+EDftJOxUSGkwQBKN_5HFK6dOV9c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a0dbb\\-ec5d9819\\-6f95\\-4e7b\\-b015\\-ceb6578e42ce\\-000000[\\/\\\\]+D0sTs_P7XpqiHqQWbcn1EDL5E_c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d96a5\\-55e7903e\\-1ba6\\-4786\\-98e4\\-ccab4bd6d4cd\\-000000[\\/\\\\]+FLPZLkhMZUvFTVvDw1e3if0mgJM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245835a01\\-c3f80c4e\\-68f4\\-427e\\-b42d\\-a825161ddea4\\-000000[\\/\\\\]+o\\-tV7Epl3BW4OUW6hXMw9nySgKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573096e\\-76b01ab4\\-050b\\-4626\\-80f3\\-9ad86f69ff31\\-000000[\\/\\\\]+P_hD2etpjrkM0bRcnG5hGtLUR9M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458178a5\\-243e3a50\\-3e0c\\-4fb5\\-981b\\-b4a59109d85a\\-000000[\\/\\\\]+LaHOieg87BfpcpdIprvMvAMejww\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923288ba23\\-1a512fac\\-59ea\\-414d\\-b871\\-f9c4aad29fa8\\-000000[\\/\\\\]+_Jt4wxjvfBX5bDs4MlXYxjpj4GY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a15468\\-c3e72207\\-89f2\\-440c\\-80fa\\-b388871d81cd\\-000000[\\/\\\\]+JN1oZCxrCPydGNja8Nsp4leI5ZE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae1e59\\-a0dd41c5\\-1c44\\-4e35\\-b31b\\-fb63847e31a2\\-000000[\\/\\\\]+TzC0zHBqVXAi8\\-fVjI\\-RecrVIg4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5a1c0\\-3e9ed5c2\\-c5f2\\-4e05\\-addb\\-63cd904c0a99\\-000000[\\/\\\\]+OjTDW9AYHAfYN8zp92ocZ0E3CH0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245918bc5\\-e0a52159\\-0707\\-4ab5\\-9e95\\-ceedc6aad850\\-000000[\\/\\\\]+2jSQo7Wu2ZaB3cYR9VRklS\\-YpCQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b64807\\-ac6608fc\\-24bf\\-4eae\\-b88d\\-3cb6cc5286c0\\-000000[\\/\\\\]+t2xNz_BHild8Jn7aj9gWbXocu\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459abf89\\-d032e1ea\\-ec6c\\-4465\\-936a\\-65bbe6cdbf46\\-000000[\\/\\\\]+qULSsrXKYyzfvJAT2pJNI8NIuXo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6bdaa\\-5e36ac64\\-7682\\-430f\\-9858\\-bb19fae77482\\-000000[\\/\\\\]+DBlNVLe_sUNeIFxBgnUl7fcGikM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245618009\\-d5ca070b\\-cb92\\-432f\\-8db7\\-fb72ae88f06e\\-000000[\\/\\\\]+oUBNVH6h6FYKVbP\\-3wenXA40zlk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b75129\\-4ce48abc\\-9aff\\-4dd5\\-9962\\-863c7da9aaa0\\-000000[\\/\\\\]+Mt9pBdXUXIgl3jZjPZJ0UGPZ75A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3f240\\-5364f556\\-ff8e\\-4fed\\-9c68\\-f11362ee2b5f\\-000000[\\/\\\\]+1OnqDaNN1CtZOU6IxJ_clJcmCos\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245caf2fc\\-19fd30fc\\-dd15\\-4b80\\-91ef\\-81a8780b3494\\-000000[\\/\\\\]+_As7dRYqn\\-GnvuU6tOGFjTb2oVU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595888a\\-0abf1585\\-c815\\-4ea1\\-a81b\\-712240603328\\-000000[\\/\\\\]+7TcfpAUVDmX\\-3wnQJ1M9bYCLxuM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a6f891\\-12ef585b\\-5f2b\\-49ec\\-a27f\\-99d729d54318\\-000000[\\/\\\\]+3HInop6VNBC8Pu\\-iJqRuv_Gq\\-hk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b21183\\-b2619d35\\-99b8\\-4b7e\\-83c6\\-9467c289e14f\\-000000[\\/\\\\]+CyXRTcPNU3ECHghHnm9NOBDUSpc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf0bd6\\-774d818c\\-beaf\\-4747\\-bf88\\-209d23983ba4\\-000000[\\/\\\\]+j39yFcx33bAsw2ZwVRkWmXRGbtQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c62d55\\-b4e5f2de\\-c0fd\\-47a3\\-a108\\-37e73d0fd13f\\-000000[\\/\\\\]+s3RJlm38QrQ59KuMn1evkqSRqLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e8edf\\-3a2b80f1\\-f63b\\-4338\\-a4b7\\-67227d87ad0d\\-000000[\\/\\\\]+p5MK\\-Gq1L0XHeoG8Cyi1NDQ4OUU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459484b4\\-dc0756f2\\-30ad\\-4203\\-b910\\-53a74e1c7713\\-000000[\\/\\\\]+DndqH9AbuAokHH8SMXdtQEWoBg8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b0377f\\-647426d2\\-8e96\\-4ed5\\-9a1a\\-250d2ca422d3\\-000000[\\/\\\\]+H8U0CyWgGNr0KuAPVr75yLfeqs0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c862dd\\-23a49d6a\\-632e\\-4162\\-bfd1\\-2a951717fa0a\\-000000[\\/\\\\]+L755Wrb5A2tAb2\\-7Xg6covUGA6Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924580c4bb\\-2f7e1f9a\\-098f\\-4592\\-8972\\-b5e7600c405d\\-000000[\\/\\\\]+jJ5x9ZAhxN8cnmpJZgwl8G17HdY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a9eeb\\-049b6e03\\-0585\\-40df\\-966a\\-56ef2af2c911\\-000000[\\/\\\\]+eQOXsYvqaKM7vS9vAEMHFrId1gc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599b854\\-045ebc58\\-0a0b\\-4dca\\-981c\\-f2e679e7a57d\\-000000[\\/\\\\]+wRX9K5iO0ki_eMP3cUF1fq1Ttdc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245683ac1\\-3eb35af1\\-7c90\\-454b\\-9c82\\-76ddf890233f\\-000000[\\/\\\\]+NbYMHVvx_mF6JL_mDagNnOKVipo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573a987\\-2c74bad1\\-fa72\\-4e9d\\-8d06\\-c5a1419e9ba7\\-000000[\\/\\\\]+nnzCW5cYMuKKw9W27p\\-ZXifW_0Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f1681\\-74b0c7a9\\-baa8\\-4775\\-9808\\-dab8db9809c9\\-000000[\\/\\\\]+Bv9x\\-I5kNK75L\\-3GtnvPz2Rjofo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c96d7f\\-e7e5a46d\\-d600\\-48be\\-b0bd\\-c249649bdb54\\-000000[\\/\\\\]+nkH07GTqkwpvkqcpivjCiRb7eHA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245824b0f\\-23088cb1\\-5d7a\\-4711\\-97e8\\-f3e63bc0d260\\-000000[\\/\\\\]+bvCD0j6PJ_6eaICw\\-CbEcGtkNuo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245893a19\\-26f42a2d\\-ea40\\-4a44\\-a770\\-c723cf27426c\\-000000[\\/\\\\]+qiG9RXBWruulslFAJDqDhqRshOQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c20b4c\\-499a2dd1\\-2ae9\\-4ff6\\-8f8d\\-84351ef9b847\\-000000[\\/\\\\]+2C4OggKQ9S9NO_Tvtqi6PFFm9kU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca4a8d\\-9aefb7be\\-b50e\\-41e0\\-ac78\\-7f3fe0a2737e\\-000000[\\/\\\\]+pZEMVWIedZxnAIhVlf74EUYvHmQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1867d\\-56e59cee\\-e6ef\\-4ead\\-8302\\-0187d427da91\\-000000[\\/\\\\]+UwIoh3kBnsCVPusOINwx5rx1XJY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594cb94\\-2a109f49\\-25f8\\-4843\\-9df9\\-8293beb45a96\\-000000[\\/\\\\]+0jxEQF\\-4TYB8lcmY8kFHBeTkvmU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e92be\\-cd3634c7\\-be2a\\-4451\\-ac26\\-36cd29c8f880\\-000000[\\/\\\\]+4f\\-6ZGkwgrIC91rmdzy\\-f_ftTyw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb3270\\-d44dddf4\\-12d0\\-476d\\-96c7\\-32dae1962e4a\\-000000[\\/\\\\]+nUmekVezt5sPYhqcpOaR0j6prVI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245791d07\\-89ebd285\\-5303\\-4d6c\\-b993\\-3146fb1451ec\\-000000[\\/\\\\]+0Rh5isqCbgdlVVea3yK_Nv6n598\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d0ad41\\-0945cb36\\-abce\\-4097\\-95d8\\-f59c44db3112\\-000000[\\/\\\\]+TasBjl4aulZX7_V1bZ9d9IY6ZrY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bff5fd\\-6557f4a6\\-5cff\\-4aef\\-a563\\-9cfaa351ba28\\-000000[\\/\\\\]+_oJB2qzGbZThuCXVa4WOOZtSJEc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c44360\\-1a57f657\\-e20c\\-42ce\\-9eaa\\-5d91a3f33d0d\\-000000[\\/\\\\]+jVPx5Qpjtv5heTEfG8yQ\\-UDBVqc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a440a0\\-2c608000\\-eb48\\-48bf\\-b123\\-31fa093b0b63\\-000000[\\/\\\\]+XcxmaANUkJsG9Nwo5w0iD4XG80s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572d5eb\\-f0c0b267\\-f713\\-4127\\-bfcd\\-bacd7112dc99\\-000000[\\/\\\\]+U_TraQlLmSpfZS3Dw6vcIgFp3NI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb342e\\-b0d6ce98\\-16d7\\-4d2a\\-baf3\\-fe54d0ef1306\\-000000[\\/\\\\]+j7I3uuttNvX_a9nZZyls3AW2hDE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c38b01\\-619f1ec3\\-5553\\-4b71\\-ae82\\-c2c73c962d52\\-000000[\\/\\\\]+4KxKE5xhpGUDOcmPaZAMYkglmhA\\=394(?:\\?|$)" + }, + { + "hash": "f60ea5284ae7ed1b9f17c470984dc34fd340f1c9e0569defaf3d3926486b9964", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924586f946\\-46747966\\-bd91\\-437c\\-8d0a\\-017f2ee69549\\-000000[\\/\\\\]+V8XsKUiBgT1Zikh3SHVcEm0K\\-bc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7edec\\-ff256fdf\\-cd0c\\-4a6f\\-af26\\-723680728e4c\\-000000[\\/\\\\]+Sa78nNGPiL2F6wRN2\\-TsVeZ2Hyo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6f251\\-e15558a9\\-e8da\\-4ff0\\-ae8a\\-5401299d76cf\\-000000[\\/\\\\]+BYW3SWPpDXGiOj5qOpxNUqprzME\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afae2e\\-2507c0b4\\-9fe0\\-43ed\\-8ce9\\-5a52439589b7\\-000000[\\/\\\\]+vDqsz\\-IwiZ54qAus5D2AHRzG7xM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459701c4\\-6060ef69\\-6461\\-4f02\\-bb32\\-de0e6f0d69ed\\-000000[\\/\\\\]+2KhXr3J6IzoXtUuXSMvvVwqVB3I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c19d3b\\-e4241bb2\\-d325\\-4e76\\-acc9\\-a7e9775acfc0\\-000000[\\/\\\\]+eLYqxKXfTMXYp8pAroElxcd04jA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245796343\\-5ad5e703\\-063d\\-4a6a\\-88af\\-136377f87ea0\\-000000[\\/\\\\]+2ppeajhdYcHAKkB2_85nH4c4gQE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245915c2c\\-306ccb7e\\-5494\\-4c3a\\-af8b\\-2fc99e493fc2\\-000000[\\/\\\\]+1WGJ5NU4tYnmlfqGapGA_Vp87JE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb9e9f\\-a467c9b6\\-41b1\\-4996\\-b1ea\\-f2c4c5624c30\\-000000[\\/\\\\]+LNSYtEPszsAPIEzz8_5dtnqi_Z8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a51d6d\\-8034ac07\\-40b3\\-4ca4\\-9df4\\-c688682d997a\\-000000[\\/\\\\]+Xbna3qeGj\\-D6Hi1jXqwoo3ISISc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e6478\\-0b6a2541\\-bd03\\-473f\\-9399\\-65d7e1263ec3\\-000000[\\/\\\\]+\\-lwc9m_bnZ\\-0vaD4xykLPCSao1k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b1dbee\\-e6b28953\\-0822\\-466f\\-b0bd\\-d4e3c105d300\\-000000[\\/\\\\]+ELxr3q2EW74duW90Hr20lWaoBvw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f2d56\\-6c69b5ac\\-67de\\-405e\\-9578\\-ab1ae4471986\\-000000[\\/\\\\]+Y10JUg3EeQ3xGc2wqrvvgHD\\-ytI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b65240\\-a24b9b56\\-c625\\-42b7\\-a022\\-8e955ede8b0c\\-000000[\\/\\\\]+rlLKJTpzU3X_ngFOQM\\-QlzWFEuc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf9a5f\\-00dc92fd\\-b453\\-4e2a\\-a4da\\-5d379476815f\\-000000[\\/\\\\]+6_31KSSyA9jSSkuhCBDPcLs7Aho\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4158f\\-7dde55cc\\-397f\\-49bb\\-884d\\-770c64e795b4\\-000000[\\/\\\\]+XT9XHyenZY3soe3HY9JvC4YvUxM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bdce71\\-3bbd7573\\-e88c\\-45e4\\-a71a\\-dffb09f31d02\\-000000[\\/\\\\]+W_FyZU19ceRZ_h\\-f5gdt_gX2TZw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3f8c2\\-6b744d6e\\-3c97\\-4459\\-b1ed\\-0e21397c28aa\\-000000[\\/\\\\]+NvbHHvgm5c9i9qoXj8\\-AUT_Mdgw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b4ed1\\-b84152c2\\-30ef\\-4aa7\\-a34f\\-eeeaf5cc3526\\-000000[\\/\\\\]+hNA1pfw_oFxO8pVIfCxGOhnEAHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8e737\\-060d4d40\\-187e\\-498e\\-b6c2\\-638c8fb6e916\\-000000[\\/\\\\]+r3cwx\\-Z1DoSJ7Y6yGrGoq_xibUI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574e886\\-c2550fea\\-f912\\-4197\\-a502\\-61c7a6be5be5\\-000000[\\/\\\\]+zy09inEWSe_ECO8uSfuju\\-ppdJA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245981496\\-b5f16035\\-bba5\\-4ce2\\-8b3b\\-2999da9786f9\\-000000[\\/\\\\]+v4nIRGOF6F7KISk0Nd7OCN9WJY0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a51597\\-1178701b\\-2364\\-4f11\\-be6e\\-f8302a50904f\\-000000[\\/\\\\]+Q039_m8sUUOyzK3CNGz0zO_ldeU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd6da9\\-4f4039d4\\-7969\\-4737\\-95e7\\-fb9a4fae2be5\\-000000[\\/\\\\]+AGsQRVltJgH\\-y82NvWK\\-tlVzUDY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b8cbe\\-b1ac54f8\\-8002\\-4fb4\\-b2aa\\-358e983db631\\-000000[\\/\\\\]+fONv3uQqGCIPIukDSsM1w4QkGXo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245850c18\\-205a44ac\\-00e6\\-4b1c\\-ae04\\-ded1e78f4678\\-000000[\\/\\\\]+bdS5LpaDWvQZJ5daCe6RjLIhNvg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924590401f\\-6c2b41a7\\-c78a\\-416b\\-beef\\-458882ad3064\\-000000[\\/\\\\]+9I8EFF02LLndM2txphbojgzFlhQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abf9f5\\-ff6b2ccf\\-db8a\\-4cb3\\-bc22\\-6867e129d1bf\\-000000[\\/\\\\]+x\\-zmbEr3\\-KNObd\\-4ZrLoFDn6JTY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c62d55\\-b4e5f2de\\-c0fd\\-47a3\\-a108\\-37e73d0fd13f\\-000000[\\/\\\\]+qE\\-doinM6dwzx4bscbgQJFbuRfs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4d481\\-931659df\\-30d6\\-4358\\-985d\\-9e54ac8f8913\\-000000[\\/\\\\]+AjyIhKgFll4aC1cU1SdKV9X75qM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f2d56\\-6c69b5ac\\-67de\\-405e\\-9578\\-ab1ae4471986\\-000000[\\/\\\\]+05qVCZs37ptfAi7jhOdTAhs3XQw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245859237\\-a23eb2dd\\-bae4\\-4d6f\\-90e3\\-6f9990d98dd7\\-000000[\\/\\\\]+Hg9q1uwHF6XrGLNAP3x32hOfapQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a3e7f\\-0e010799\\-7e49\\-4814\\-aa36\\-1bf7ac2e64e8\\-000000[\\/\\\\]+vPFhM61xdIanipKuRRtERiKKIu0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1d3cb\\-d26e67bc\\-f14d\\-4dc4\\-a563\\-9e344a5d98f7\\-000000[\\/\\\\]+boY2uBG1v9QrKHLPNnGEKQxk9hk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c017f8\\-1a4c6b6b\\-fd49\\-485c\\-bcd1\\-3b16bfbea582\\-000000[\\/\\\\]+UhKrSPfyQewdZODoSWLTTx\\-RcPM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a3b85b\\-1a6882bb\\-0874\\-4aa8\\-b7e8\\-3aa1738d6034\\-000000[\\/\\\\]+lJRaO_oj5NJvyw\\-cqAGNFmDmTSI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459127af\\-6a4f3046\\-6024\\-47e1\\-9877\\-b36627b980e5\\-000000[\\/\\\\]+kbqHniU5Y2\\-eoJqb0_FLEQsNalo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4ecf5\\-aa8ad8dd\\-45f6\\-46f2\\-b7fc\\-6bdda5e82126\\-000000[\\/\\\\]+TmRIObteGdDw9lZgnClB5oIsZ84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afd3b7\\-f0d2695c\\-5467\\-40b0\\-9cb0\\-8b9960691991\\-000000[\\/\\\\]+EL8YTavGHg_84KLncM0uvlL5Ou8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b0456f\\-7af662d4\\-1584\\-432a\\-9f7a\\-4a81673c8c3c\\-000000[\\/\\\\]+6vSkXz8mXVThQ9v4B\\-cDTGUNJ7g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455af914\\-68ec91a8\\-0895\\-4c72\\-a390\\-d777ff024d68\\-000000[\\/\\\\]+c_5jvNqoGoXASdZuKf\\-kYqVmyQE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245940234\\-61605fd7\\-0752\\-4352\\-8d8b\\-fa81a62a50b9\\-000000[\\/\\\\]+2WHFy5KZaW97ewrbnhOOyEQa\\-2M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf1a18\\-f0b09352\\-aaf8\\-49f6\\-b998\\-3c3798ae77c9\\-000000[\\/\\\\]+YTrrRX6Op_Sa2ZJpQ2mmxi0mvuM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582186a\\-70d6869f\\-39bd\\-4560\\-b0a0\\-f58cbb66e305\\-000000[\\/\\\\]+beaYp\\-tSsgIPvjlRDYuBnU60ySM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456752fe\\-a6006fd0\\-7e9e\\-43ed\\-ab42\\-a11a0476ffe2\\-000000[\\/\\\\]+EmhtpQhy6tobfk3j_o4llvLL53s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8606f\\-7222b749\\-0822\\-438b\\-b003\\-b6ad90e09ea7\\-000000[\\/\\\\]+M_qgy9rOVswDdNDqRQv48BXQToo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bdb804\\-04dc39d3\\-81dd\\-4a93\\-aa6e\\-523b7022fff7\\-000000[\\/\\\\]+MxVcXl341B1SRi97EQoQ88dRjpY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924571ae49\\-b3ca4fe2\\-180a\\-43e5\\-9cf0\\-7633f8a9b498\\-000000[\\/\\\\]+\\-Szq1T5GcUw565MD7_ALEkcXZFI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a6f891\\-12ef585b\\-5f2b\\-49ec\\-a27f\\-99d729d54318\\-000000[\\/\\\\]+FItu\\-sh7tpEHi0Nd4X3iLru8mB8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570f50e\\-b9017f2b\\-303b\\-4525\\-ae9d\\-59aeba21ac2b\\-000000[\\/\\\\]+zHjoK12N30UfLBNz8eeqKDRhhsI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c634bd\\-3d6a46e2\\-e911\\-4ec6\\-8437\\-c6cbdbfa978b\\-000000[\\/\\\\]+zBEqlociTfkG5to4kmNmls2iSM0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245779e26\\-3f75865a\\-3576\\-422d\\-b401\\-f70d58571825\\-000000[\\/\\\\]+V1p9CfWJon84W_I4vPkbF6jlp3U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be8e25\\-220a2859\\-cbf0\\-49b0\\-8a46\\-f3936d292e45\\-000000[\\/\\\\]+qeY\\-elukthe9tpuXV60Z5MMMIr8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc65a6\\-3e699c6d\\-6254\\-4812\\-ba63\\-2ebdf626a4a0\\-000000[\\/\\\\]+xRlx7XAgOF3dgPJiVapG5aqMonA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c089c4\\-e055d631\\-32be\\-4c54\\-a8cb\\-d100c2b715e9\\-000000[\\/\\\\]+E36o0TzcvqmKjAO8q_ooudV76Po\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245770ef5\\-9643551e\\-45f5\\-4f63\\-b926\\-32ab73da8baf\\-000000[\\/\\\\]+pnsIocX43ms8S5D0WfeRZ90QrqA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575f3f6\\-12244375\\-2baa\\-4a49\\-9574\\-e35cfd5508ce\\-000000[\\/\\\\]+FO8\\-hPTlpQgI2B2NGH9bGo00cZg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245794ed6\\-e80f0373\\-2406\\-4814\\-87cd\\-091cc439dc67\\-000000[\\/\\\\]+ZtmGARFgjB4Z8fakbRTNoUAOhBM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245913412\\-f7284bef\\-1c90\\-4bf8\\-876e\\-c05a5e22b7af\\-000000[\\/\\\\]+MU7gXDGQhVNSo4NpoksGz1n67Ew\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456daa55\\-cadac056\\-da60\\-4d2a\\-b79b\\-863b7a0286fe\\-000000[\\/\\\\]+EhqNbhcWQnvJLFk4Gtd\\-biAaObo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245738162\\-155ee6b3\\-1e72\\-4b6e\\-be94\\-c2a14ee45f5e\\-000000[\\/\\\\]+F0efgNoWW1QWqcnT9rxWu9ZO3uk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6640f\\-2d44bdd1\\-0a4c\\-402e\\-bc8a\\-7ff3c828756e\\-000000[\\/\\\\]+2M\\-ZrKl1Jv\\-oHu05mhXMSf2y7Ac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459fedb4\\-0e728195\\-bd52\\-4530\\-a254\\-df37c3746c88\\-000000[\\/\\\\]+M5C\\-NA9L_wYny98u\\-Y40e2YMiLQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c13fa7\\-896fe2b3\\-0eda\\-4cc0\\-a09c\\-ce1c9c567656\\-000000[\\/\\\\]+EBnvxz_D9uw1Cu69wNWI_kw\\-hoY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afd3b7\\-f0d2695c\\-5467\\-40b0\\-9cb0\\-8b9960691991\\-000000[\\/\\\\]+foQuOTVksobdfvLu6pRj_nQ7S3M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595a689\\-a25ff938\\-fadc\\-45a4\\-ad5a\\-386f6d967ede\\-000000[\\/\\\\]+n_h6bU4VbFB9RpcYeqZzyy3gZmM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfa634\\-800b3141\\-b8cb\\-4180\\-b4be\\-e15d5ed8b253\\-000000[\\/\\\\]+oAFEsQ71gXgGV_gVGTAwwOydaVM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7bcb4\\-7a235c88\\-18c1\\-4484\\-b661\\-ddbde5cf7e4e\\-000000[\\/\\\\]+60TBE_Axb9xnvMRIIu_IgsoMA\\-Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594decb\\-76631d7f\\-dc63\\-44a2\\-9b6a\\-ba83ddf53ee5\\-000000[\\/\\\\]+iQefB7vRO7U0HfxZV4NWlXhDIvU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456acc0e\\-591abb1c\\-8cfa\\-4235\\-9ecf\\-da281f2e70ae\\-000000[\\/\\\\]+oaYKMLsCRtqkVmuoKv3gifkRUQ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245829229\\-fb275b1a\\-3a7d\\-4a0c\\-b948\\-8dc6cd000687\\-000000[\\/\\\\]+IzZllvvhOmcLCPz516rbjI02S_8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924571575f\\-4154f4a7\\-d68f\\-4b6c\\-a10b\\-a3752679d78b\\-000000[\\/\\\\]+T7kSKbbgq53HTUX0JzcqCpx6vk8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458525e8\\-a6c0ee60\\-c904\\-4902\\-9f08\\-f96a973fcfb8\\-000000[\\/\\\\]+v8hEUFg1ZOfoW0ZZ0NUC_RMO9gs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572ba27\\-e7268d5c\\-a017\\-4fb8\\-ad24\\-d4048fb49976\\-000000[\\/\\\\]+PJfHWbvtpzD_YiKe5ljUIdeCRG8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa5456\\-93df582c\\-9997\\-4f0a\\-a4b9\\-653e7c7c1756\\-000000[\\/\\\\]+igAujAURC8oDSaX0rb1JLDdWREs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245acb0ef\\-6f13d15f\\-4979\\-4860\\-b03f\\-4f9c2d382702\\-000000[\\/\\\\]+gfBSEzU2EX_lUkt6kLCkTZfzFfc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d1975\\-0803d503\\-bf47\\-4553\\-af5a\\-6c277a54ce26\\-000000[\\/\\\\]+LaKn\\-kp2DYYKBi8I9PPimb9FpHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455db84a\\-a46c1b14\\-af8b\\-4588\\-8f2b\\-52dcb6039a62\\-000000[\\/\\\\]+caB8_WsZeLyjs6rO8C5CBmJuJYM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458dae50\\-2355c8b2\\-dad8\\-4203\\-b298\\-4977daf85a41\\-000000[\\/\\\\]+L5JXonw3v_vW_\\-BN1YD_iF8QeNM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245690429\\-bb302d68\\-af89\\-4c96\\-9014\\-e6a4145d4580\\-000000[\\/\\\\]+t1HdB3J3ka\\-zLOPLBZ7L\\-H5ZTDw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594cb94\\-2a109f49\\-25f8\\-4843\\-9df9\\-8293beb45a96\\-000000[\\/\\\\]+SyGAX6lE1CMKUuW80NHeJAvEdys\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598dabf\\-e4547b88\\-215d\\-4aca\\-b2ca\\-2eb6bddb0ebd\\-000000[\\/\\\\]+0Puppop\\-\\-YsPhwcEqW_iqW412Sg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bf311\\-7cf8b2c7\\-0e68\\-4069\\-8ac7\\-dd8dfddfe357\\-000000[\\/\\\\]+AHDr0Qp41P3ov7VPstksr3qfN4c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cfda9f\\-4e72a88c\\-a228\\-4c70\\-89d6\\-6048111500d5\\-000000[\\/\\\\]+8bJ35uuHRIVAu4fb8MCg42bNIEM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b77b6\\-fc583d89\\-f9bf\\-469c\\-9cf6\\-3b5fb02cbdfe\\-000000[\\/\\\\]+OrRdCdyD6keISlo401a84IRvQkw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245916f7c\\-cdb2cbc4\\-9a35\\-4762\\-bd04\\-13713b33f732\\-000000[\\/\\\\]+BxOyLtpD_IaOKh6VZr8_ug5kqbo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245738162\\-155ee6b3\\-1e72\\-4b6e\\-be94\\-c2a14ee45f5e\\-000000[\\/\\\\]+ncfRcEKOElN6XTNzOztV7eBcay8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245935ea5\\-cfc8da18\\-322e\\-426a\\-b4dc\\-b2a61cfa36ba\\-000000[\\/\\\\]+zxXokseNc6doZVV\\-\\-MGDTq_wL9M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b28695\\-636f6f04\\-ea6b\\-497f\\-b6a2\\-2ad9989cb155\\-000000[\\/\\\\]+SxYIcz_J54rxlyAjPO1KrB1qt2k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b25d68\\-42ef7a14\\-f122\\-4294\\-b434\\-cab19a6e19ea\\-000000[\\/\\\\]+bojC5wpstSxabHx\\-8B36HtXw9Vg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a3b85b\\-1a6882bb\\-0874\\-4aa8\\-b7e8\\-3aa1738d6034\\-000000[\\/\\\\]+ZMFk2oBiHEba18shob\\-GpyeHdWE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c825cc\\-fe7e01e7\\-ca38\\-479a\\-8a4c\\-ca79645d847e\\-000000[\\/\\\\]+UTSD9fzh1XRxWn0CpyM8W2pj6Ds\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8064e\\-9cc81c5c\\-edd5\\-400e\\-bd0a\\-29754e67d110\\-000000[\\/\\\\]+OIngnlxOx472B39T79ap7XEUmVg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b46eb1\\-b8ca2b72\\-de59\\-4e00\\-8e40\\-751be62e2e55\\-000000[\\/\\\\]+E0IEn\\-uIkfToCjwSsWXNLnbljls\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3dd65\\-a3f93ac6\\-5890\\-463b\\-a82b\\-60aeb88a9a08\\-000000[\\/\\\\]+U6RHvltqN3QqkDVNu\\-ihTTV8rnY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aea662\\-c4029b2a\\-68d5\\-4a32\\-bcfe\\-cae813a46fc3\\-000000[\\/\\\\]+_pf4eObuHaMVOXb7lBYsDUAoU6o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b96329\\-e81afeba\\-028b\\-40cd\\-9416\\-a984d6a8734a\\-000000[\\/\\\\]+2\\-mbYQWBC268QU9uBvHp81V7lpM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b76421\\-63624449\\-c4c2\\-4e25\\-ac0e\\-168dc1b56959\\-000000[\\/\\\\]+wCXV2x47K_jupnMQD3rgAkcEWlM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245737d35\\-477c8b67\\-f0ca\\-4bc7\\-ae9f\\-61940345fb92\\-000000[\\/\\\\]+CIAFwIiCu0whJR0DZ9yRwA5hZ_Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245816fdd\\-523161aa\\-cfa3\\-41c1\\-9a2e\\-e1c2002ee621\\-000000[\\/\\\\]+WKzTtzHhWtgQEWE2Rs66bVRYCyg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bc7ca\\-aabe936d\\-ad2e\\-4377\\-9145\\-f2d86bac877d\\-000000[\\/\\\\]+qGeRUQF9oOGgUjPPl9vTH4hYNc8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924571ae49\\-b3ca4fe2\\-180a\\-43e5\\-9cf0\\-7633f8a9b498\\-000000[\\/\\\\]+dGsokvz6ocYLjkEmJoUs7ZSwLRA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a6b5b5\\-11a06ec0\\-8ef0\\-420c\\-a422\\-a5c5fec135eb\\-000000[\\/\\\\]+SZqRnBQYiompyMI_3RG4cVGrov4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924571ad85\\-41f25510\\-dc3a\\-4c72\\-b22f\\-788d73aac096\\-000000[\\/\\\\]+uPvXV4Kk_fP7nOZ87X\\-EpuO3oJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a3e7f\\-0e010799\\-7e49\\-4814\\-aa36\\-1bf7ac2e64e8\\-000000[\\/\\\\]+S7ZnERcA7_UGHOV6h6qqWZcOHC4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245945a6b\\-72b655ce\\-3121\\-4b53\\-8936\\-a711ea892609\\-000000[\\/\\\\]+34NVrb7Py6Ns\\-D0arj8cjzFHnqo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c89e20\\-7ebfb8ae\\-dbb6\\-4c06\\-bc46\\-fb96718eb536\\-000000[\\/\\\\]+XfUQrR4fXvy7Kfza70EdpwF4G0g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a56c7e\\-2b2adc63\\-e26c\\-455c\\-b92d\\-bee9357d3e3d\\-000000[\\/\\\\]+SlarRWZRJ7qVbEG10RMUPmzNYaU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566638e\\-50999d5c\\-ea06\\-4b70\\-bcee\\-c22eb3f24bed\\-000000[\\/\\\\]+oLeqBjDDVFPGNMuE7yGsTY1Qg9Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b17899\\-ea56181f\\-6f02\\-4492\\-83ab\\-0d71ca4c9729\\-000000[\\/\\\\]+9L\\-zFCw\\-HYF6nS5Cv0GkCHwNLug\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bdd278\\-b3fbf29a\\-b492\\-4c2a\\-809e\\-4ad4e4d19315\\-000000[\\/\\\\]+OCs_UTB4THLIgwLNqHzokFvogpI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457447a8\\-85dd5ea0\\-3569\\-482d\\-bace\\-97787d77e7c4\\-000000[\\/\\\\]+ekg8ekvkLqTaqGWprAZ\\-4mw7rdA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568d40e\\-a7dfd4e9\\-36e8\\-4a87\\-b909\\-565c03160b92\\-000000[\\/\\\\]+CwnFZ2vRGgmIsXo7WGQIm1N7p9k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bdce71\\-3bbd7573\\-e88c\\-45e4\\-a71a\\-dffb09f31d02\\-000000[\\/\\\\]+CGZ0mtagvTUXY\\-D4bagclH76frQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a244e5\\-f7a4ef3d\\-f633\\-4f57\\-b76d\\-a658b4d6f902\\-000000[\\/\\\\]+mUb13pymlUa3DMxlF1gwrguuhEQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e23d3\\-ef3ead81\\-ca1b\\-47cd\\-aaf3\\-1f8ee2eefa0a\\-000000[\\/\\\\]+sR1iQpULAREDSXdKX17\\-wc5q_M0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245958842\\-a579deb6\\-1eec\\-4d7b\\-aeb9\\-ff738f3efdad\\-000000[\\/\\\\]+LKTnooyqSIYmKp2BDJNkB2RRBWA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245768680\\-7b74a04e\\-7816\\-43e3\\-ba64\\-09e3e18567d5\\-000000[\\/\\\\]+\\-N\\-bpz0hlcQrUnFthVq5siZDIfU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459eb895\\-57d870b3\\-c676\\-42c9\\-b0c7\\-ad526ff71b3b\\-000000[\\/\\\\]+jZitT7VMp9TMJEGHBFv43vgDWeE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5ae61\\-834f7235\\-5c3e\\-4f75\\-a81f\\-0aec126a4685\\-000000[\\/\\\\]+PjgD\\-N8J9c6Sd\\-QPXo8nD85\\-um4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b15961\\-0a79fa4c\\-538e\\-4215\\-a939\\-7b83df639bc1\\-000000[\\/\\\\]+up51ananBoRIyt3hwH\\-cFnn7oxQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245726bfc\\-e3e6e06e\\-39da\\-4d41\\-b4a1\\-da9c6e9bde93\\-000000[\\/\\\\]+Gz87IMK1FvA485ckwFGDJZXvzeY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8e9fe\\-49ce15a0\\-be64\\-4700\\-ba95\\-ffdb7cdbdeed\\-000000[\\/\\\\]+0XfHwaoFE0yB\\-uCiePJLkro7wzk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456b9056\\-803dc7d4\\-35ba\\-438a\\-8815\\-80e2ed441817\\-000000[\\/\\\\]+P6K5SdqffqA8l\\-0aB9\\-rSuRimig\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1ffff\\-5624eaa3\\-fb6d\\-4d91\\-98d9\\-33add9f21a26\\-000000[\\/\\\\]+OxNsTNhNyJRkvJkO6m9VogBSz5U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b4aeb\\-9c8052f9\\-35a1\\-4a33\\-ae86\\-11101229c183\\-000000[\\/\\\\]+Eu_PWXVTm9g19ZiK2QkZkZ5fsQc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456752fe\\-a6006fd0\\-7e9e\\-43ed\\-ab42\\-a11a0476ffe2\\-000000[\\/\\\\]+ihlKsce3AdVyPlMG0qRuAjM\\-P6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8e9fe\\-49ce15a0\\-be64\\-4700\\-ba95\\-ffdb7cdbdeed\\-000000[\\/\\\\]+8Aq3euXymen_zz\\-QR8K4uJiAejk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b06541\\-5f81b0ce\\-73aa\\-4947\\-afb9\\-ddc582d9c9a8\\-000000[\\/\\\\]+hERLZOihaLWSMhK_I47ln4_Qhjc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458eca3b\\-f510f4aa\\-0c3d\\-4b8f\\-b97d\\-ea15881e3386\\-000000[\\/\\\\]+3rEoTJtGKqAlwDZ_WmLZtdLdnCA\\=394(?:\\?|$)" + }, + { + "hash": "063a930e285f44e3d506a68e2963a33b6e12e0446c794340c6c02aa4c0942b3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9081[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6ec66\\-31c2d9ba\\-8470\\-4079\\-8971\\-9a50c33fd186\\-000000[\\/\\\\]+wcmc56ev2q6A0MmuSQRCf5T284I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924564bd14\\-ef98d614\\-bf39\\-40e8\\-85e7\\-7627f552849f\\-000000[\\/\\\\]+ePHLuyCapjwb_Z3l_7_3tELVvfs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457711ae\\-4051152b\\-0810\\-4d10\\-9a79\\-09dfdae72f12\\-000000[\\/\\\\]+CHzGj74VfzQPZAzRhbGIX_C1gDE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458847f6\\-a8c42603\\-c1c7\\-477b\\-bf74\\-4b556e96fff5\\-000000[\\/\\\\]+AnSrprz5g2QwzyHSnqcZ1gRdvb0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575d25f\\-d97ac47c\\-3aaf\\-419e\\-9855\\-c30000bafb77\\-000000[\\/\\\\]+P95ca0QMZLDQwmSiD5PXzYlolew\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf9a5f\\-00dc92fd\\-b453\\-4e2a\\-a4da\\-5d379476815f\\-000000[\\/\\\\]+4SQdyNx__H673FFC1a9FLViI0HY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245911cd9\\-f1835de8\\-1103\\-4459\\-833f\\-e01d949e8479\\-000000[\\/\\\\]+kUEekTX_mPYIi8kEKOJq6DyGSgQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e7adf\\-ffe9b18f\\-611c\\-48cc\\-a753\\-e1c29b74e3c8\\-000000[\\/\\\\]+JeoCpsazj4apHEwzgcpVUY9oWlg\\=394(?:\\?|$)" + }, + { + "hash": "6f3b8fab31201a44a4a3a185857a62ca2898f0c01308422b5797613e93c5bb45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9023[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582e093\\-b9594fde\\-44db\\-490d\\-b6f8\\-392287dedc86\\-000000[\\/\\\\]+UoUxx9Cm\\-7jqVxq4r3BffQsTYMg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245835db1\\-9a4d2bb9\\-f377\\-44a5\\-8ad5\\-96f54457d279\\-000000[\\/\\\\]+4dc27zCWJZSkktbbFU0FZERvqic\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565b8fe\\-ee83b648\\-8e98\\-4e9d\\-a7cf\\-c53af2b016a3\\-000000[\\/\\\\]+fHx1kAPk14ijBReGlBmjpPgU_fE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924593f8e9\\-8f69f238\\-72d2\\-47e8\\-a69a\\-77c89cbda018\\-000000[\\/\\\\]+W2__cLBHiBH3pbouNUIkeeFfLfo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c17fe9\\-88d3c895\\-7c23\\-4f8e\\-a098\\-7ad48992268e\\-000000[\\/\\\\]+SZYyUqWPQbOq6D8scUJKXXOagVo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569b1a1\\-ded4fb48\\-94d4\\-4d88\\-8b00\\-cb8f7c66e45d\\-000000[\\/\\\\]+C37yqiJIH3JsjsJLdHl4kVc6T70\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c5b25\\-55d1083a\\-f0d0\\-4ed7\\-983c\\-5627cde04bc3\\-000000[\\/\\\\]+1daZl8Pg_fugGv5TJP1FnA6\\-O5U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5f2f5\\-209b6385\\-bcaa\\-4d2b\\-acaa\\-399e7814e6a6\\-000000[\\/\\\\]+fJy7pVkSn5FnOyaVMoB9g_2rAnE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584ff2a\\-20b3b0e2\\-630c\\-461a\\-9575\\-14f200a4fd23\\-000000[\\/\\\\]+ZIJ5pwyHYon66fkoJrf6LMn\\-gQ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594dcd7\\-f405a213\\-3397\\-43f6\\-bfd6\\-69229c2403ca\\-000000[\\/\\\\]+CjeSp9VlVRsKdZCv8rYbdJpZV3w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459783cb\\-f37e4361\\-749d\\-406d\\-82d9\\-b8afe6ba3eda\\-000000[\\/\\\\]+Wd1dL6mvY8cb2qFLvgJk1QxE8Bw\\=394(?:\\?|$)" + }, + { + "hash": "fa1c8e0cda0f3b746d9b12a10f8e3343a64ea550d00ef084dbab317fd3e61c0d", + "regex": "(?i)^https?\\:\\/\\/naverassist\\-01\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245905aa2\\-acfa1173\\-3213\\-4d19\\-b99d\\-e1d906e3674b\\-000000[\\/\\\\]+NocQ\\-TWRKCrrsVKuJItrws4pAag\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be4afb\\-dbff88db\\-d3cf\\-4b07\\-9932\\-1b9dde6761da\\-000000[\\/\\\\]+K5mSCzEI3pIssr74p7QTDm8kYzI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ae11b\\-a78ec62f\\-b544\\-4fc4\\-8532\\-ff5040b83381\\-000000[\\/\\\\]+7RjNMjn\\-ndpCcCDU_e135btTW2I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be166d\\-d53bdd35\\-cfd6\\-416e\\-be68\\-4fb074f5746e\\-000000[\\/\\\\]+P5ts86lxwitXsfstlnj9Fv5amRU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c5dae\\-606fd8b5\\-8175\\-446c\\-85c1\\-e918c9237d56\\-000000[\\/\\\\]+qfxIkTxfjsuXuWVrd_SLqb0pGEs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bae1a2\\-0e82a14e\\-ce86\\-4ecb\\-92b6\\-b65309f94715\\-000000[\\/\\\\]+DfeokJiTJLJQmO2PfWI0yC5xmA8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456b7f44\\-d1c8c741\\-ce14\\-49fe\\-9e17\\-94f8f407dd64\\-000000[\\/\\\\]+pW62oCfcClvocPg7cy5OivgneTk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b793ad\\-53fd4959\\-f011\\-4901\\-8c8b\\-07b8ea09220a\\-000000[\\/\\\\]+q0St694HT\\-1ehvVfKDZYCsTSMPs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce544b\\-df5f6774\\-dd32\\-442a\\-a34b\\-52f1899be050\\-000000[\\/\\\\]+UQK0kbTQuzNBq0JeIo\\-DoMwefwI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457eac54\\-71ba3922\\-5f42\\-47d5\\-8327\\-70c4e742c768\\-000000[\\/\\\\]+lR7YFzmsquz9ipUzC4X_A7H17f0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5a525\\-32b29bfd\\-95b9\\-489c\\-b165\\-7f67ed2f53da\\-000000[\\/\\\\]+UI9uAsk0s_2acSvvgu_D8x5_BIg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bcea70\\-69ab7b3e\\-ffe7\\-4775\\-84c1\\-6aec219a5662\\-000000[\\/\\\\]+5TmnXYgFNWw_S8\\-tRF\\-9Fylgbbg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924588f6ee\\-c720f7e6\\-5102\\-42be\\-a92a\\-bbe4755ac464\\-000000[\\/\\\\]+g562GILNJOnklTPzJ8PYQHUVWd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245baf6d8\\-ff76f096\\-d47b\\-44d2\\-8717\\-935c6d3fe3d6\\-000000[\\/\\\\]+lu_D54z_nyCxoltPCykXsS\\-W2N0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457b5ff6\\-400587c7\\-87e4\\-4bf1\\-8eef\\-9e8ba40d85a1\\-000000[\\/\\\\]+lwf9iJRKOoYh4FGswtsHf3QuNnc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245830e6e\\-e444e97d\\-0fcf\\-4273\\-86b9\\-2be200ff9936\\-000000[\\/\\\\]+W7R_CaHOVUsBwbpMSXQQilwUpNY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c31f99\\-01185985\\-92f2\\-4322\\-b55d\\-d05cd7b26d2c\\-000000[\\/\\\\]+NOqp1bRuRwqGDUt2r4Ja4Ru\\-MyU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cfee75\\-4ceb72cd\\-1165\\-47de\\-a2e6\\-e97b53adef4d\\-000000[\\/\\\\]+3ywnrpRYfn6Tj2j12h29QHFWBtM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a5fc5\\-3189f977\\-cf11\\-432d\\-8885\\-d04ecc2f8e10\\-000000[\\/\\\\]+Fveee1a341rE7hq0QPnWo2nUiUU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457b0c86\\-f7ad8f46\\-12db\\-47cf\\-92bb\\-985f4c9448b3\\-000000[\\/\\\\]+JqTk1NANMMPcnsjlCYAuYO1wLu4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8cecf\\-4e2ae509\\-1ea4\\-46f7\\-89a8\\-9f2205732e4a\\-000000[\\/\\\\]+\\-W1wikwaNK\\-YWwJNhPk96Qy4Ies\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596ac3a\\-9cf6b9d6\\-9794\\-43c7\\-898d\\-931a120c1a18\\-000000[\\/\\\\]+o_nGz9bwUVTRe3KPP\\-xQGlS60a8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e6478\\-0b6a2541\\-bd03\\-473f\\-9399\\-65d7e1263ec3\\-000000[\\/\\\\]+MXQavszfOzhyA7l8wVCRxVzeGpQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c13fa7\\-896fe2b3\\-0eda\\-4cc0\\-a09c\\-ce1c9c567656\\-000000[\\/\\\\]+\\-2MpH1PPuekZM\\-UZ5\\-HPm5zOp3Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c20639\\-a6215e7a\\-894f\\-48f3\\-b82c\\-247f765222d1\\-000000[\\/\\\\]+00m2gGqcrVCIFrcQMBf1Wiplijk\\=394(?:\\?|$)" + }, + { + "hash": "be381725148163a11116cf8ab342db3ad8ceddd07cb7bcb7e427d501cc8652ca", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c67cf\\-f9b11f2f\\-6637\\-4c76\\-a88f\\-283e3a06af3b\\-000000[\\/\\\\]+dW_g9WRC057e4QOMu4NYnq11aDc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245935ea5\\-cfc8da18\\-322e\\-426a\\-b4dc\\-b2a61cfa36ba\\-000000[\\/\\\\]+sRlzXZU31S5GCQFKnwSQxX1B5FQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569b9ca\\-92d47a57\\-e614\\-44f3\\-a225\\-cb3114a3199e\\-000000[\\/\\\\]+_vEzfGOXz2s\\-taS0LVQlPzfkzNY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cfc805\\-4d345003\\-d571\\-4124\\-adf6\\-4fc963be03e0\\-000000[\\/\\\\]+J4VLPte7RH7mTD0vHIS2luHR24g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245965eaf\\-cf3bc792\\-df95\\-419e\\-b6ec\\-1b8ab1441cde\\-000000[\\/\\\\]+XfE70WFTNJYNyRLHGXG\\-F7T5ktY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf6ce2\\-c338b15b\\-4651\\-4a05\\-9b40\\-1da52c243a26\\-000000[\\/\\\\]+oXSuVckAbV7NEp\\-xyW3ortj8n4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245981d3a\\-a0c6c4f8\\-46ab\\-468f\\-804b\\-484052fb4be9\\-000000[\\/\\\\]+Z\\-V9epwzPtNa75zR_hT2__JSBes\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8afed\\-999b7a34\\-a6b2\\-4db9\\-a9b7\\-1abe6b1a5905\\-000000[\\/\\\\]+jBRDYCqggRcJ5fX13KUkNddvXy8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae2806\\-1148738b\\-f22d\\-41b5\\-937d\\-69f3e4510d69\\-000000[\\/\\\\]+mk7_OPCHK7wSoCJJD4cEec2zTaQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594a8a4\\-98c4b494\\-5b49\\-4eeb\\-a6f4\\-bce8bd9e551d\\-000000[\\/\\\\]+pSlDDBKy8XiAnZbMoQIy\\-fSHgBk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b884e9\\-80956721\\-9671\\-4fdf\\-abb5\\-08e009a3b213\\-000000[\\/\\\\]+yfNhHWOcc0HfXyevHq10z\\-NYSVY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb7264\\-147e7d67\\-db0f\\-4a48\\-bd82\\-e50d5755ad82\\-000000[\\/\\\\]+BgZWy1Tosuh6cZdhzsDg6qsG5AU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595888a\\-0abf1585\\-c815\\-4ea1\\-a81b\\-712240603328\\-000000[\\/\\\\]+Ve4\\-ntN2jYbK0nSK6LUz8dcAlXU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d006c8\\-3d691551\\-ae7e\\-41f8\\-9b54\\-bbdca94d4f70\\-000000[\\/\\\\]+k7M1uEi_0FnA8\\-ntjALCjM9hJ7o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924561c6d0\\-64dfea5a\\-25db\\-450d\\-a9b1\\-429931253d12\\-000000[\\/\\\\]+b2VPdjlj0QRFEdru6SWsHK9a9Nc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245815f99\\-9842f3cd\\-a018\\-4ee9\\-ab05\\-39fbed8bb63b\\-000000[\\/\\\\]+8lYslc_Kph_6itftGLoyfdsuETc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245770ef5\\-9643551e\\-45f5\\-4f63\\-b926\\-32ab73da8baf\\-000000[\\/\\\\]+iRboKvgf5O3fgwQCx4_0T0cOJaE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d44c4\\-ef3868f8\\-e923\\-4479\\-a82e\\-5f61795d919d\\-000000[\\/\\\\]+SKBO\\-f2\\-aEGwpm2RVjdlvgWeFMk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb1f9b\\-09c64f0c\\-71eb\\-4fdd\\-a10d\\-14ecda285b6b\\-000000[\\/\\\\]+xDiECJ5KQr1YRhJkY\\-O\\-VeCHUxI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245824e6c\\-1db4bc67\\-e47d\\-4c65\\-a858\\-4e6efac6fb9d\\-000000[\\/\\\\]+FiNe\\-669rw27RejLetDHBWK1h4A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584ed4a\\-b450e5f0\\-fefb\\-4d18\\-8301\\-df005df22f63\\-000000[\\/\\\\]+pk47GaeZavfx_x5CqGQ_EXK38so\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf0a82\\-b57d2254\\-2af5\\-4503\\-a795\\-54d95eddd3ad\\-000000[\\/\\\\]+6_cupdMLHVUR_3GD3CLVACUHZdM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d9197\\-4c050bce\\-b27a\\-4c79\\-847b\\-ab0b2a721557\\-000000[\\/\\\\]+T2HLg7n\\-OLq3OhcuuvX\\-S86mKYg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d44c4\\-ef3868f8\\-e923\\-4479\\-a82e\\-5f61795d919d\\-000000[\\/\\\\]+pVBZDo7VM\\-NbiP9cpkNWSyqy_T4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456daa55\\-cadac056\\-da60\\-4d2a\\-b79b\\-863b7a0286fe\\-000000[\\/\\\\]+oaTQzJF5S5TUc7AJHMkppPJuvrI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c7d4d\\-d740b244\\-5fd8\\-45ec\\-9a63\\-c77359a40ebc\\-000000[\\/\\\\]+LvP1G9KSdADF\\-eACACSG6qplVLY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245791d07\\-89ebd285\\-5303\\-4d6c\\-b993\\-3146fb1451ec\\-000000[\\/\\\\]+Vq73uREpVbNC\\-0Tz0atOmH0BRuk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb4196\\-8a5c858e\\-a843\\-42c8\\-a492\\-0674bde2aa7e\\-000000[\\/\\\\]+YYm_bNYtfjIJgcWX63duGfv9Uns\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf1d11\\-3d0a4b9f\\-c2fb\\-4209\\-8072\\-30a086adc976\\-000000[\\/\\\\]+dieOBTCPQCK8eCCW8GvU\\-YgFb4w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569688e\\-b551ad42\\-78dc\\-449c\\-8c73\\-15e639f69a59\\-000000[\\/\\\\]+pQ2J4CkMm6vqwEBU9yjH5a257NY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c825cc\\-fe7e01e7\\-ca38\\-479a\\-8a4c\\-ca79645d847e\\-000000[\\/\\\\]+8LoIFvCVZZVlWdHOaezIRaAioig\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584ff2a\\-20b3b0e2\\-630c\\-461a\\-9575\\-14f200a4fd23\\-000000[\\/\\\\]+k2ZUmE4bdF85InfFSoPJeFDL8EU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f7fff\\-0e45b275\\-a684\\-4ccc\\-a972\\-03568c08b597\\-000000[\\/\\\\]+agCjYjDAykNESzdedecrcloww\\-o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd4aed\\-ed0d757c\\-6d4e\\-42c6\\-a91e\\-4c9e67676952\\-000000[\\/\\\\]+z6hyIWrQDRQdbQIW1\\-xd5P7mWlw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a813d9\\-d3b6b8a1\\-3b02\\-46f2\\-8591\\-a3255978a97b\\-000000[\\/\\\\]+hkco2aUolW6qB8b\\-F2ZOkOHKEvI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457497df\\-cbb96f4d\\-badf\\-4e01\\-aaca\\-bb6e9711420c\\-000000[\\/\\\\]+1geUhP2YaPvugEHcG3HXfXhln00\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be3cc3\\-f15182bf\\-03ba\\-4fb1\\-b7dc\\-e18c78dd7ef1\\-000000[\\/\\\\]+NnmGc2\\-X4OnvR3jesHIhugyrAQ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a08308\\-08385154\\-72aa\\-4dbb\\-9721\\-a95b94150377\\-000000[\\/\\\\]+RDsn_k6fh4QrpP7FiUn_npQBpgE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a51164\\-7c1c3a2f\\-f4c2\\-40a8\\-9876\\-fb747979b3b6\\-000000[\\/\\\\]+_e55D_kzyQHpRw_PiF1z\\-e8Q\\-0w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf1138\\-d6db30e9\\-1db1\\-4c3b\\-b6b4\\-ed3f61a8cd21\\-000000[\\/\\\\]+DMjVa7ujoUwQHnZ6QpJ_4LxJ6Qk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579330b\\-f17bed81\\-2876\\-4ef9\\-98a8\\-41e7373249ac\\-000000[\\/\\\\]+5YcRsSnbCQJMl3r5OsxA7RWHg5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cbb558\\-b4e023cc\\-25bb\\-4c39\\-9146\\-fe6d7def2533\\-000000[\\/\\\\]+ZMAghlQRvtIEFShXgUUV1gCRPPc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce91ca\\-01e52bb4\\-bfcd\\-4352\\-a4cc\\-386f777683c1\\-000000[\\/\\\\]+3WqiWcTWRTpYsGosDsFOujc7TKQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a8a2e4\\-47d72224\\-a5f3\\-4c22\\-bf2e\\-8805e1087d63\\-000000[\\/\\\\]+dR5p8__4gFgjn3BYSUlXEPazUK4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1da6c\\-1e9cd736\\-300c\\-4813\\-86f5\\-3ca17d442073\\-000000[\\/\\\\]+1UnD2xmok0EXGhs\\-H_YLDhVkLKA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7d93f\\-27fa9441\\-e987\\-429c\\-9cb8\\-54865505805c\\-000000[\\/\\\\]+zuNR7wlqf12VdODMY1HqYC50R3U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245956f70\\-31916a6f\\-1aa4\\-4355\\-9852\\-dc0bbd7e3c95\\-000000[\\/\\\\]+I2G6R1ve9Lb6mNHtqE7ewhV0gSk\\=394(?:\\?|$)" + }, + { + "hash": "99ce05366ad182c833debfe548d96ecceabcee92e55518580fda862463cd762e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9973[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bc7ab\\-04bf70fa\\-9f3b\\-4600\\-978b\\-64316c611333\\-000000[\\/\\\\]+Su4iio\\-e32Q1UbQzDHNtkXQxDDk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b884e9\\-80956721\\-9671\\-4fdf\\-abb5\\-08e009a3b213\\-000000[\\/\\\\]+Hq7jdJq2BcPLtbMJ7CnVeFSz\\-Hw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459827c1\\-d321e6c5\\-f48d\\-4c4f\\-aa21\\-ff701d155332\\-000000[\\/\\\\]+Z9i6Qk4pyvQBEz9FpCXBeZqWPMk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573096e\\-76b01ab4\\-050b\\-4626\\-80f3\\-9ad86f69ff31\\-000000[\\/\\\\]+sGSf54ZoX6vlk3Aon2X4UPtt3gQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d00646\\-a18ac099\\-b542\\-425b\\-b6a2\\-1a4316525842\\-000000[\\/\\\\]+shzxR1HHovNp_6jt3YIwIydGYDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245716d51\\-e7db5693\\-c7af\\-4590\\-ac04\\-c20b01db98b5\\-000000[\\/\\\\]+u5mGX6VU2QrLcoYgrPp\\-wdQ43ko\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587f665\\-fe3009d2\\-37f9\\-46b0\\-962f\\-19c24aae45d0\\-000000[\\/\\\\]+9VXUfvTvLQDUKrngZxkM8\\-NbJjo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c20b4c\\-499a2dd1\\-2ae9\\-4ff6\\-8f8d\\-84351ef9b847\\-000000[\\/\\\\]+\\-OtjPWv5TmZfOunwh76aS210tlk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459eb895\\-57d870b3\\-c676\\-42c9\\-b0c7\\-ad526ff71b3b\\-000000[\\/\\\\]+IX8ZdGU3Wx6RM_XoXhK4TqsZO9I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457fc20a\\-d1f7b9d5\\-78ad\\-4912\\-add2\\-2927510e0df7\\-000000[\\/\\\\]+biED4tZjcC5NevYVJTkJ6gKFC6A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b906e\\-0393ce3b\\-b834\\-4bca\\-8c12\\-ca6716a57b23\\-000000[\\/\\\\]+NBQnAnVcG9ie6l5I4M\\-pGLWHM2Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af6752\\-bfa00a54\\-c261\\-4a75\\-9f90\\-3fe134b748e7\\-000000[\\/\\\\]+YRml\\-cgbx7OqzMZoef8natJBAhc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a60306\\-cfb7f904\\-5acc\\-41b1\\-af9d\\-a45f8183f67b\\-000000[\\/\\\\]+gs9Y3pLjyEJ_iJbyDtyePy9K\\-oc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d9642\\-9cc1edbe\\-44e3\\-49eb\\-94a4\\-e74a2f0fe0a3\\-000000[\\/\\\\]+LHVdSacIFlyxs67buc7dNU_AE4s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458847f6\\-a8c42603\\-c1c7\\-477b\\-bf74\\-4b556e96fff5\\-000000[\\/\\\\]+d9WYRGY3N_Ii4wdbC0V5YcBsMcI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a16bb4\\-db088c50\\-176c\\-4f2c\\-ba6c\\-2615d5042dba\\-000000[\\/\\\\]+Z1KKGjQRo8jm37_uDs5lmF8v1Bc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ba2c3\\-0b4067cd\\-bf73\\-404b\\-b12a\\-25a4a931486c\\-000000[\\/\\\\]+J0E1fDVCJ_x0v5gAGhfHem7vmxA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245674738\\-bb8a2c51\\-0061\\-4c20\\-8eee\\-8eb7351ad651\\-000000[\\/\\\\]+uKhasWJBiyPFiqXSuBjNXf6Dah0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245838e13\\-f9be3dbf\\-8523\\-4d4e\\-9c69\\-3ccb2bff0155\\-000000[\\/\\\\]+iMt6Epy68bnOV_l8J\\-JaLN5AhMU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bca9d6\\-454e9310\\-ef7c\\-4d14\\-9c24\\-c97c0daaf4ce\\-000000[\\/\\\\]+fuQ\\-22jx8Iv0_FiPaj6RC1K3J3U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf0bd6\\-774d818c\\-beaf\\-4747\\-bf88\\-209d23983ba4\\-000000[\\/\\\\]+hVR6QCVDj8cPfMYErTzplaal4vQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245976cc5\\-d0b1da82\\-575e\\-4305\\-862d\\-dc62c89f7227\\-000000[\\/\\\\]+NzGBWyiWKVgcMGnurn0lDsZ6LB4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bffb90\\-cc88b0f0\\-dea3\\-4017\\-8673\\-88bf6aadbcfa\\-000000[\\/\\\\]+W4JPoeUs3ULmc_ApqGMvGiAUFpk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245711021\\-6426556f\\-76d0\\-4982\\-8e3f\\-0e94cbc5dffc\\-000000[\\/\\\\]+gnzs0e_4jenkWTXNbd65zS0XqeM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc9ca6\\-9b241a83\\-bbe5\\-4421\\-9c5b\\-2526364e796d\\-000000[\\/\\\\]+Vz2JGiY1iSJ7wY6KdnZzp16EIHA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c92190\\-93a09204\\-301e\\-4a45\\-94b2\\-6efeaa9341c9\\-000000[\\/\\\\]+0u1zSmAueNvhGUEIsn8gDlNMeck\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574949c\\-7bb38307\\-7f20\\-496e\\-96ed\\-01f99697e5f0\\-000000[\\/\\\\]+uk0ro\\-evUgPMQ9uqrdVFam6NvVc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459749d4\\-1796b9b1\\-aad6\\-4e80\\-996e\\-cb047749acb4\\-000000[\\/\\\\]+wu6r0j6GpjH8C0N14lxyW9hk1e0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b3ec7\\-c993667e\\-a12b\\-4cae\\-afca\\-8c915fbd7a2c\\-000000[\\/\\\\]+ZQRjVT_K40EwER8EfZny51Qg0iw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7f87a\\-b21f5a94\\-95d3\\-48af\\-a5ff\\-c980ad8f97ed\\-000000[\\/\\\\]+1dTYnzfi5G8_AIiDhpujNSyOJNg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573bbbf\\-c6d91822\\-2849\\-43cc\\-ad23\\-d6aaeeb18eb9\\-000000[\\/\\\\]+GRB8Tqoo6WWQgSLk1fRfyeUpkjM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f8d8f\\-428ad98f\\-6d9c\\-4468\\-8016\\-d31f2e4cafef\\-000000[\\/\\\\]+TR6DYxhDrymaSu_IFiSZM27fiEU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a58fde\\-54a91649\\-aa6a\\-4812\\-8b01\\-930c0a91a7bb\\-000000[\\/\\\\]+MoJl_wDtnWLbe0XVC_uEugSAIGA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb5308\\-0d3c6e0f\\-1dfc\\-4377\\-804d\\-22c6254ce859\\-000000[\\/\\\\]+7vK6YYBQ0p8fUWqSlgWfFOSs4BE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af2dcd\\-39ce2e8f\\-9454\\-4b83\\-bf20\\-3813d4592079\\-000000[\\/\\\\]+sWaHfO5juxYXtqyIBV8CWUMxogI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d1f1d\\-39efefc0\\-bf3b\\-42bc\\-8cdb\\-4f1d2da9ea87\\-000000[\\/\\\\]+FTfH\\-CBZC6RKYoGh6uXk1JZPCHg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245750af6\\-d535bc5a\\-1baa\\-4e22\\-8569\\-07d849f0e359\\-000000[\\/\\\\]+wa__Jo41Bs7ysW0cT8uzreMVPiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456acc0e\\-591abb1c\\-8cfa\\-4235\\-9ecf\\-da281f2e70ae\\-000000[\\/\\\\]+0o0yQzYBzsMfxaC_1r1so334yu0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b74940\\-6e2ade5c\\-7c36\\-4902\\-80a9\\-5973dc1b50a5\\-000000[\\/\\\\]+I0rEIEV9dVaS1Iq6Z8jpZonNY9c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582e093\\-b9594fde\\-44db\\-490d\\-b6f8\\-392287dedc86\\-000000[\\/\\\\]+4M3S_ZB3LFTAOVBv8wmUlpOj_Q4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b3d99\\-86d280fd\\-affe\\-4f18\\-9ef4\\-77b39908ddc0\\-000000[\\/\\\\]+gWsLzcM\\-ic2SuC85dYptR46Ku2w\\=394(?:\\?|$)" + }, + { + "hash": "99ce05366ad182c833debfe548d96ecceabcee92e55518580fda862463cd762e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9973[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c430fb\\-1870ec21\\-c4e9\\-4a49\\-a8f7\\-e61b9757f51c\\-000000[\\/\\\\]+DqhPqErtpzjsTkuuaefmrHCJoXQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458eb9de\\-9175c00f\\-e3e2\\-4b50\\-a4d1\\-9f19684646cf\\-000000[\\/\\\\]+0opuOPEU8\\-9MpY1o4P3e5HOyO6A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e60d4\\-5e8c34ea\\-ef74\\-4dae\\-8188\\-983ddc336541\\-000000[\\/\\\\]+JB08irZIlsy4irvk_dee_hkaUmM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582186a\\-70d6869f\\-39bd\\-4560\\-b0a0\\-f58cbb66e305\\-000000[\\/\\\\]+CluD2XB5ErGVz3F7619KcAPFFDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bf865\\-46dbaeee\\-705b\\-4f84\\-b705\\-2d8b504b5ee7\\-000000[\\/\\\\]+i0CRj0bIT_9DBvosjRQqif9bJrs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc99b6\\-b7089ce1\\-6749\\-473f\\-8447\\-422fb6d3b703\\-000000[\\/\\\\]+49_z4gjOWsLW3iOXhIVS2ntsw74\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aed3e9\\-a24abaf9\\-5c7c\\-483b\\-a608\\-c74ec94647a1\\-000000[\\/\\\\]+ekRtvX_VSD6F_1S6nNv8WAHzN9c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8064e\\-9cc81c5c\\-edd5\\-400e\\-bd0a\\-29754e67d110\\-000000[\\/\\\\]+mlgFsOMfgSzkt81xcm33Siyuwzs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245838e13\\-f9be3dbf\\-8523\\-4d4e\\-9c69\\-3ccb2bff0155\\-000000[\\/\\\\]+m8Z56cHotXx7q809EbOYgK7epl0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb35a2\\-43ee098e\\-fdd1\\-4ee7\\-a6fe\\-4418b40b7cac\\-000000[\\/\\\\]+bZZx7N4cXqKtwSAEHVRvzngAYDg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458792b1\\-2ff169c8\\-27e5\\-4638\\-b14b\\-7883bfbc5003\\-000000[\\/\\\\]+4ep14Y5yNBo\\-jRPK5aqvEkWc8rk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572d5eb\\-f0c0b267\\-f713\\-4127\\-bfcd\\-bacd7112dc99\\-000000[\\/\\\\]+KpcN0b1QiD0YffcSv2ZoDt2qhcM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6a5c8\\-d60af559\\-0b42\\-4520\\-8adc\\-f4c7fbe5ca9a\\-000000[\\/\\\\]+ZvIx1QO2gqu8yeObZQrLdiY5dh8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456eb743\\-735ec093\\-b3c8\\-450b\\-a04c\\-8283e2284ed9\\-000000[\\/\\\\]+EM6aw2LyEkNbh0q0QINddtkSi4A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b571c0\\-c7235265\\-6764\\-4a90\\-adbd\\-4434bd5f4dad\\-000000[\\/\\\\]+fFM3\\-nxIU33DXghG7KO8q0mcFR0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad8b69\\-47666f34\\-a49e\\-4ce9\\-babe\\-1927c322c9b8\\-000000[\\/\\\\]+9boqQLVdxfrmENLpXK_W1fwqLi4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c99f27\\-54a704b3\\-d240\\-4009\\-92e8\\-5c312947c8fc\\-000000[\\/\\\\]+zF5v7paYwcKduPQVB9phGpy_7DE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bcd285\\-3a6b4c9c\\-e7aa\\-4824\\-9a92\\-7412a1a15e67\\-000000[\\/\\\\]+ysZDZHUlwxpHk36znXF_eiGo6SM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f849d\\-2c2bd30a\\-2416\\-433d\\-aa7f\\-cf757f3d308c\\-000000[\\/\\\\]+_LMcPw1XIxQu_W4Pqm_UemtLENw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245887f96\\-9cb5bd4b\\-183a\\-46af\\-bc39\\-1e4a9517b7cf\\-000000[\\/\\\\]+aRMW2KreVR2z5ShJfc0hm5xgQLY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245acc701\\-3160cd86\\-235c\\-47ee\\-bce3\\-2b7414afdc36\\-000000[\\/\\\\]+71QzjLsuQbkKK6OJsUEljH3R_Ac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c2057e\\-ea2688f7\\-aefb\\-4fcf\\-8610\\-efe531424976\\-000000[\\/\\\\]+YH26qiyBTugm_Y_f_Zzf49eH13M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bb815\\-369de14c\\-da52\\-4d7c\\-96c1\\-6950748c153f\\-000000[\\/\\\\]+807NhNlQL1MHnynIJHbIHx7jUw4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c35909\\-5d9ee331\\-bf93\\-4728\\-943f\\-ee718e0b4d76\\-000000[\\/\\\\]+gTwqZstGTVPjv6LB0d7PGYwrA9I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbc41a\\-a632daaa\\-a0d0\\-49e5\\-8e43\\-b0232d77d404\\-000000[\\/\\\\]+h95s2QcYdWopxB9BnpL6TC7agmM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c96d7f\\-e7e5a46d\\-d600\\-48be\\-b0bd\\-c249649bdb54\\-000000[\\/\\\\]+bX4V1tEOW8ZqfcPlxrYzLLhQXBY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6b43d\\-c8aafb00\\-4086\\-4fe8\\-8371\\-4046ee3e6e42\\-000000[\\/\\\\]+ATyfl7QL0N5ca2iYCZfM6ljcdKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245674738\\-bb8a2c51\\-0061\\-4c20\\-8eee\\-8eb7351ad651\\-000000[\\/\\\\]+YiyEW5VIQy571V\\-7SCoqSxv25d8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245672321\\-583dc102\\-c221\\-4400\\-9b1e\\-a596b055b1c1\\-000000[\\/\\\\]+_\\-XaG\\-ub780j_tU5KYBzBA4EMHA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac0961\\-f54c3a73\\-3e75\\-479b\\-9f59\\-dfaf2a5e13c2\\-000000[\\/\\\\]+EelqMFFnt06DBJ3fvEZZNC\\-dsN4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459fffe6\\-4c45a780\\-346b\\-49a4\\-85eb\\-186d96b5623b\\-000000[\\/\\\\]+0eHt2dDPFUe0zYViA\\-wa5LqjJ4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9c8ca\\-102f25a5\\-3576\\-41d5\\-93ba\\-c4716fb2cbf5\\-000000[\\/\\\\]+hqrmNnlg9wceEYQppadXdQVEKEo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3cf1f\\-0de74fbd\\-4c0e\\-4548\\-8e1f\\-00a52ea6ccad\\-000000[\\/\\\\]+MEJaJC84h2jE2oYvcCT5WUQpkEA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca4a8d\\-9aefb7be\\-b50e\\-41e0\\-ac78\\-7f3fe0a2737e\\-000000[\\/\\\\]+Q5vv3DxqSrz7_try8bT7yJ0gLPE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf3194\\-973efffd\\-351f\\-4b02\\-9568\\-addf4a5b9cf1\\-000000[\\/\\\\]+eiB0N4OzzncN2bVKo65sK1PWg0I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b21e0d\\-ee88793c\\-75da\\-409e\\-b83a\\-84f3520d2b28\\-000000[\\/\\\\]+_Fo_pDK_\\-qKlGG8R5TzIDzwneGg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b88b7f\\-09ebbf31\\-0799\\-4f49\\-b6fe\\-01513d55eb49\\-000000[\\/\\\\]+ZXnCh0NaHGxzZ9uMwQPVXaMekLE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f3ca3\\-3e5d7533\\-0a27\\-4d76\\-8500\\-5c15622f4032\\-000000[\\/\\\\]+HZLnMzHkZUg8D6QnKMO02vwGHPk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245975485\\-f420986b\\-f2b5\\-419e\\-ab6b\\-330643436344\\-000000[\\/\\\\]+rDJLfS9FzMxF6WWlgQR\\-WaLnEsY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328490ab\\-a31cd3b6\\-502c\\-4f46\\-a4bc\\-f22b361fad41\\-000000[\\/\\\\]+we2wG\\-Pxf_jV_beNXtnkSU0UW1o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245690429\\-bb302d68\\-af89\\-4c96\\-9014\\-e6a4145d4580\\-000000[\\/\\\\]+eZJRoDpwwp4Jh_AnYD\\-XjtDufmU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924571575f\\-4154f4a7\\-d68f\\-4b6c\\-a10b\\-a3752679d78b\\-000000[\\/\\\\]+KWR0h6aUZjVmnT4xvJQ9JcIEnus\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a98f5\\-9ccba383\\-2d07\\-4a6a\\-89f3\\-29723e1d31b4\\-000000[\\/\\\\]+kFtDQ0QPhdPFQMlVEomyoQeyfVU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5a81f\\-230588a1\\-b10d\\-4db1\\-b57b\\-74a4c759064d\\-000000[\\/\\\\]+I8JZlLAr0G3BiVwZZYTZt3Ac0vg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a892b6\\-c66f6034\\-0ffb\\-4c22\\-b1c3\\-2d4d0c5e8ba4\\-000000[\\/\\\\]+U3D_uodd7rEmjvB1Si7JcDxXsLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4d137\\-fccbd7ec\\-d9db\\-4442\\-a5d3\\-2a2bd4c3b873\\-000000[\\/\\\\]+l6CH1oZ5LHV8o0RFQmpCxQGz4Tw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf1219\\-4effd323\\-7e67\\-42ed\\-8885\\-7a2438d46c88\\-000000[\\/\\\\]+i6PAzaOz6bQTd35lDYZ7eLNP6zE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c089c4\\-e055d631\\-32be\\-4c54\\-a8cb\\-d100c2b715e9\\-000000[\\/\\\\]+J0t99JDhqGLVHY5ZhDMLcr6A1hk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a519dd\\-4d64e3c9\\-4410\\-43a6\\-a6e0\\-3440cf96ad74\\-000000[\\/\\\\]+eNOnNu9UFBNT_fot74E\\-5VHkXo4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456cd8c9\\-1d0b5ba9\\-e229\\-4eb8\\-8c62\\-c936ea306726\\-000000[\\/\\\\]+4LXAqGFuIRmX7VMHnqcur5JIKXA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f7ee1\\-19c5516b\\-3d6b\\-421c\\-bea5\\-781d41e32cfe\\-000000[\\/\\\\]+Ny\\-idG\\-FQNknbVF8KX\\-NTV6w_Ak\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cac485\\-1bb70454\\-46af\\-4a5e\\-a914\\-93cd787e54bc\\-000000[\\/\\\\]+woZpOXZt3ICP76CDXnKuoEjkXgo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8929b\\-487cc0a7\\-58f4\\-4132\\-83d9\\-b4b12a710bc9\\-000000[\\/\\\\]+5IB_LQGq8Dt88l3\\-PbOHPLUBniQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456178f0\\-d2033ac0\\-7c95\\-48f3\\-beb9\\-8768caf0c64a\\-000000[\\/\\\\]+i3UMtdC3bflquGX7L_3BCRDVDTs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245945a6b\\-72b655ce\\-3121\\-4b53\\-8936\\-a711ea892609\\-000000[\\/\\\\]+qA1uFIS3LNiFLqh10VzO5rfYrjQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd9fbd\\-88ec4419\\-f7ac\\-4ad7\\-a09d\\-b71a92e7c3e6\\-000000[\\/\\\\]+z09FXLAbsXkHcoiOO3ZZLF75zXI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bdaac9\\-ed04bcdf\\-08af\\-49d9\\-9760\\-efaf83b87f0c\\-000000[\\/\\\\]+2NZh2hqFyCeK_WQJYKYxXLxwINQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cabf83\\-84a72921\\-27d3\\-4473\\-ab4f\\-81d54480958f\\-000000[\\/\\\\]+eycHGAMzlcxvD\\-E7xqZnG0tISLY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457d7dae\\-a6ad7e34\\-b61e\\-43cb\\-9f16\\-ae4f8e9efb2e\\-000000[\\/\\\\]+7Tm7Iv87UxxBgoG4BeOti0bEQQo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245825264\\-5955de55\\-475f\\-4453\\-b6d9\\-122e21b2f6a3\\-000000[\\/\\\\]+OvMAVjpwMTELqgueiKUHqg6D5cY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf2a25\\-28c0d961\\-b0c4\\-4106\\-a01b\\-537e24a7b3ac\\-000000[\\/\\\\]+\\-EDdairLvuprVCVYu7uxeb1Wk1Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a7f30\\-78c8fd60\\-1a0b\\-46ce\\-943d\\-4674e61555b9\\-000000[\\/\\\\]+HPMXDxc8Nllkxt5EWOnAwQE6f1g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ec426\\-9b60c150\\-e0f2\\-426a\\-a45b\\-ff2337b93ac7\\-000000[\\/\\\\]+RB312QWOQzrB3FN1whkgM2kdZ5M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f7ee1\\-19c5516b\\-3d6b\\-421c\\-bea5\\-781d41e32cfe\\-000000[\\/\\\\]+26PKfR9kP5rlyU0\\-M3IHwPFcrQA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb3f90\\-f0c788a5\\-d6ba\\-4b97\\-979e\\-ea3e26d69098\\-000000[\\/\\\\]+q2rAhy1MsDkRbCChIR6H5eGa7jY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459efdad\\-e60f5eb9\\-c66b\\-4c55\\-9643\\-ce4cc489055c\\-000000[\\/\\\\]+rIWTg8wwrx8COb1eAVWIhbuhYjc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459701c4\\-6060ef69\\-6461\\-4f02\\-bb32\\-de0e6f0d69ed\\-000000[\\/\\\\]+h2EKUPcI6hGC9pKWD3URb4Z62bQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457711ae\\-4051152b\\-0810\\-4d10\\-9a79\\-09dfdae72f12\\-000000[\\/\\\\]+oeC_\\-bpmhFCjjoWzEWhlHEXtU20\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd706f\\-796abb24\\-b157\\-4028\\-a44f\\-426d4245aa97\\-000000[\\/\\\\]+Kty5Cf8FXwwuatOLeOMu2J6ZRAM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8abdc\\-fb2ef274\\-f209\\-4215\\-b587\\-818ab04456d2\\-000000[\\/\\\\]+41JyGYDWDsoAYU3JS5IQKd7X6G0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4ef84\\-1297312c\\-6176\\-4fa4\\-8aad\\-4cdf22cc05a6\\-000000[\\/\\\\]+u3cn8PeiIrSlgVLW_q2iz3W\\-QUc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582d4c0\\-b06764d0\\-9c5c\\-41a5\\-af50\\-c3d340588121\\-000000[\\/\\\\]+l7boaKVORtcS\\-qsoino7famIdN0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf3436\\-88e5c307\\-53d7\\-44d0\\-914f\\-7d026f3358b8\\-000000[\\/\\\\]+k\\-5j8g8Kyy7uRutifnihbB4aj6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd0e36\\-0e7fdc0a\\-a948\\-4889\\-a2c2\\-56faa1a5a1a6\\-000000[\\/\\\\]+lvD4bs4smTUPwhTl_bs1OnYBBcc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6c5de\\-36d0b1fc\\-baa7\\-4953\\-8086\\-3579fd3a5da7\\-000000[\\/\\\\]+hZRLVpszgqtTQwoW0H5tkKb0vAE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7fd24\\-78967d2e\\-8bc6\\-4919\\-afe1\\-6cbcd2d7dac3\\-000000[\\/\\\\]+FIJYgmQiMKFm7cL6VWkIEyJn_Y0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d4031\\-c9d853bb\\-4d63\\-4b72\\-815c\\-95b437f18dec\\-000000[\\/\\\\]+YQKB\\-ELuNbS9f_xfg8OBnyEmOEk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455dc3d9\\-b8a71913\\-09f6\\-482d\\-b0a0\\-5788d92bd18e\\-000000[\\/\\\\]+JJDCPK5YyTqQ3WzudKnqmHaDojk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d54f1\\-173a0bb0\\-b8ef\\-4e06\\-8cdd\\-f76be7f8775a\\-000000[\\/\\\\]+p7\\-t8IU0JnV_\\-h6txTStA8tm9bE\\=394(?:\\?|$)" + }, + { + "hash": "e66c7c01b91f0f3cd2e43c1850941aa05ee5ffedffe5160296e3d7f245f7c673", + "regex": "(?i)^https?\\:\\/\\/io\\-v3\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d924b\\-6aa6932b\\-713c\\-413b\\-af93\\-58f5f210747e\\-000000[\\/\\\\]+VXeoxQOQ4JJGlwn0MmbL2YnoUB4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc5157\\-44b96733\\-d357\\-48fb\\-b31a\\-140cdfdb0615\\-000000[\\/\\\\]+440PkVEEu8oWoPQiq8EKSLbjCLI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c634bd\\-3d6a46e2\\-e911\\-4ec6\\-8437\\-c6cbdbfa978b\\-000000[\\/\\\\]+DNR5SUxKUrs0jSL529jXCqMUIlU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3d229\\-86abffae\\-e1f6\\-4f5c\\-8873\\-5bbf75d560c3\\-000000[\\/\\\\]+xbqUlmdnncybqGlwF9xox0SJ29M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ea8a9\\-8b20f30d\\-b540\\-4c6b\\-8caa\\-a1b99ce1c69d\\-000000[\\/\\\\]+VKqGTdAgmepqj73AO0RbgNjSbZU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad61fc\\-40f43474\\-fd60\\-4714\\-b6ec\\-dc87630617c3\\-000000[\\/\\\\]+Cm2HpL0kysKcXS4pzHov8a29e_U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b69ac2\\-d9c5d5d2\\-1051\\-4dbf\\-aa5f\\-da168ac804a5\\-000000[\\/\\\\]+j9EYn\\-YjcV6RO995DBayZbP4RoY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245953d50\\-b6a92589\\-8495\\-48a6\\-9e11\\-5ae9c3e0ef12\\-000000[\\/\\\\]+nbOQTdsC5UzD2D9Zo1Q7W\\-o24ug\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d64c3\\-3671ded7\\-af53\\-4dae\\-be72\\-93a16dd5d94d\\-000000[\\/\\\\]+4gLEolG4rtGjeT571xumzJIAoiM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3dd65\\-a3f93ac6\\-5890\\-463b\\-a82b\\-60aeb88a9a08\\-000000[\\/\\\\]+fGOZ00zPSMsbNCxTQi9bKKIZbGQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ef12c\\-aa77669d\\-1431\\-4a67\\-b2f3\\-64dd6a47a534\\-000000[\\/\\\\]+9u6YYd5QB8Pb5s79zCuVBXMj4NY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6b4cb\\-ab009307\\-535d\\-4971\\-8cea\\-14a97f7991a8\\-000000[\\/\\\\]+_EORaCE5zZ5ruPY4kc0mcd0HZ1A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594d242\\-714a19ae\\-db51\\-4c24\\-b336\\-d3532635507b\\-000000[\\/\\\\]+lDQmOd5jJYlHXIaBjJdVVo82Ikg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457d7dae\\-a6ad7e34\\-b61e\\-43cb\\-9f16\\-ae4f8e9efb2e\\-000000[\\/\\\\]+s0C7H3AhwF\\-BngqygV6ekkjAtAc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a011d9\\-9853e540\\-fbfa\\-448c\\-a518\\-6754c5b32247\\-000000[\\/\\\\]+Q4WHmYXNjkuUQuHgGNkjh2TONW8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b066d\\-6e3f1ddf\\-0005\\-4db2\\-9a9d\\-5e51d09415da\\-000000[\\/\\\\]+Ghuyg9Igi3QHRzHSZfkbjebeNIc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f4a70\\-00e6c5d0\\-463d\\-4515\\-a3fd\\-32ff785c2ba3\\-000000[\\/\\\\]+FP44suyo4BS7TwbaTImYq0ycJOo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc65a6\\-3e699c6d\\-6254\\-4812\\-ba63\\-2ebdf626a4a0\\-000000[\\/\\\\]+Y1bScPHcubUs7IztTMeDJbHhHow\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd2c8c\\-feaa79cc\\-0198\\-4ff7\\-b4f9\\-1582e2e9078d\\-000000[\\/\\\\]+TfQs7ecREFl2rFUmHuhYPAi2bgE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245911bf0\\-9774c505\\-06f1\\-4e9e\\-b9f4\\-03bd555dd56e\\-000000[\\/\\\\]+EZHSCNg4Z485\\-30Hml_gLIfXeak\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ed614\\-cd95aa61\\-6f5b\\-437d\\-9baf\\-a921162e4bc7\\-000000[\\/\\\\]+s_prPabj62IL3igUw1FBxxeCxD8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456813cc\\-c0799453\\-f2b7\\-4d89\\-9852\\-2d87e90e5f87\\-000000[\\/\\\\]+1Kbr\\-SBMjSU3tBdWYxsT_0AlSvU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459628bf\\-d29bddab\\-3beb\\-47a6\\-9dc5\\-8302cb49dd3f\\-000000[\\/\\\\]+x0rhpLf2tnTGUNuqo5rsFyGj2yg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457170ca\\-880128af\\-38e3\\-45ba\\-99a7\\-0ce4286f59eb\\-000000[\\/\\\\]+_0fWXxZd3wPJ44d9oXhcEfhOeVY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f403c\\-e66fb561\\-d304\\-43e9\\-a127\\-7b47baab838b\\-000000[\\/\\\\]+4yOkFYQQEEeo_OY3cmi\\-piy62w0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5703e\\-5c652789\\-64fd\\-4e93\\-a240\\-fed4bc5c46ba\\-000000[\\/\\\\]+EjE9A8QijH0iX8l1jKHiUgY7vaQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457fc20a\\-d1f7b9d5\\-78ad\\-4912\\-add2\\-2927510e0df7\\-000000[\\/\\\\]+ATgZGf7jobKdDU6\\-hGTYK\\-VmbkE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b56100\\-1d531d4c\\-a210\\-4c4b\\-91a3\\-ce0cf36205ec\\-000000[\\/\\\\]+ngQMLEtcrjogz4Rf6_ZecZDB2mg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be64e5\\-839886ba\\-1dc8\\-48af\\-b651\\-03b72f4446a8\\-000000[\\/\\\\]+O6gwWngZXrYFEM02vqUKLUyfm00\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245adfc21\\-7daae0ff\\-898c\\-410e\\-9745\\-de9c0acd1cb7\\-000000[\\/\\\\]+rAvTIhIxwmr5AuRcrsqxbBK_Om0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455af914\\-68ec91a8\\-0895\\-4c72\\-a390\\-d777ff024d68\\-000000[\\/\\\\]+7v9_9VKfhAx7HEzCT8MW5lxEQTo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924580ca27\\-e7321db0\\-1a70\\-425b\\-8e27\\-193992bc89c8\\-000000[\\/\\\\]+OpNuwSUxwoC9UwsIgItYeewoz\\-k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5d6b5\\-04dc1d4f\\-714e\\-4058\\-8a55\\-e6ef4c9cff63\\-000000[\\/\\\\]+rq2Kk7tbUaBPRs6P7dWMdXBDWW4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd0e36\\-0e7fdc0a\\-a948\\-4889\\-a2c2\\-56faa1a5a1a6\\-000000[\\/\\\\]+3txF1jhJ4akWomV7NzdCRuHDlg8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c70d8f\\-6aa5cc1d\\-6341\\-469c\\-93bf\\-0b0361f419a2\\-000000[\\/\\\\]+UgmoE1EVUuLL9__qtFQIudp6U0g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459783cb\\-f37e4361\\-749d\\-406d\\-82d9\\-b8afe6ba3eda\\-000000[\\/\\\\]+vBJ9Ol88jtx1F625rqgDNCrYbdY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca28e4\\-8113f06e\\-19a9\\-4d6f\\-a812\\-171355f18d4d\\-000000[\\/\\\\]+JTyZwNzqFnf1oEA8ELF73DNXz0s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e1861\\-a502e8fa\\-5c15\\-4fa5\\-b8ed\\-dacc3bad93ff\\-000000[\\/\\\\]+lN7EIezLl0u6H211LNi_GRJBJns\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c99afc\\-fcb5e6e2\\-3bbe\\-4518\\-aa18\\-978b554d57dc\\-000000[\\/\\\\]+MPACJXBQFhpJ06CX4JLkeiba5Po\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b56e9d\\-845c44e9\\-34cf\\-41d5\\-8254\\-8eaab13ba202\\-000000[\\/\\\\]+LIQdAZHSJ6FnQe\\-F4sA8Koui9Pw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cfed50\\-0cbc864b\\-2185\\-4e90\\-a8dc\\-e3ab29461122\\-000000[\\/\\\\]+Rn1X\\-SxQVTJ_hR6GyaHrcvLhO14\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cbd54a\\-2e6fff2f\\-b04f\\-42d5\\-b6b7\\-2f40dccc45e1\\-000000[\\/\\\\]+Ez_TpDGpf8opWUiAvUIdIWW3fY0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c7bb8\\-8c1039eb\\-5350\\-4045\\-a737\\-ff008ec25281\\-000000[\\/\\\\]+PwM6kZTfpziJCRJXIYQgyQguX1s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b24234\\-0b7d3c8c\\-5f68\\-4db9\\-a867\\-58dc217c0032\\-000000[\\/\\\\]+DzR3Q6cHqw\\-6jeqCMfpFFzSCx6Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245960ffe\\-4c7e458c\\-3c2e\\-400e\\-8b60\\-b772f1ab6cc1\\-000000[\\/\\\\]+X3yAUkXFdSD0bzOZzY9ZP5DVnDg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c18758\\-2fc14ba2\\-11b7\\-4ff5\\-ba5d\\-b70a155eb493\\-000000[\\/\\\\]+wTBRcHpRS283bwoEbeIlSwXiMNc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a32dc5\\-fccff72e\\-d9b7\\-4b7d\\-af5f\\-5efe9cd4915a\\-000000[\\/\\\\]+oOIl3RAJ\\-XpQ6gH_NlGXM85HMVM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd2c8c\\-feaa79cc\\-0198\\-4ff7\\-b4f9\\-1582e2e9078d\\-000000[\\/\\\\]+Mx398bhzWyOEYY9HhXkmxus1elY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c7d4d\\-d740b244\\-5fd8\\-45ec\\-9a63\\-c77359a40ebc\\-000000[\\/\\\\]+Tuf3KVD3doR5tQoizHuhz63KpNQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245706ebb\\-9235d66c\\-e9b5\\-4a1c\\-9ee4\\-40404c97165d\\-000000[\\/\\\\]+1t49S6Sqo5apKe9uODdcnR9nFm0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac1a58\\-0668b582\\-b6f0\\-4df6\\-91fa\\-4e8bf382dd2b\\-000000[\\/\\\\]+bSFEJcDLwbsrrJVrssx73Pno578\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245955b4f\\-5dff00a5\\-065c\\-4728\\-823e\\-7f2a31b52555\\-000000[\\/\\\\]+mIgroZvysqCHOxHljWkxIL3tpyo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a876ee\\-95cf6deb\\-959e\\-480f\\-baa0\\-4f4ef33521ab\\-000000[\\/\\\\]+Emum5kAtI2NHZdd_FZFne3uBxXw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d7165\\-961e1605\\-9aac\\-4188\\-b475\\-9e9c9870ed10\\-000000[\\/\\\\]+BkO0x6OAX7r5Lbhlzv9\\-jH0wp48\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595a689\\-a25ff938\\-fadc\\-45a4\\-ad5a\\-386f6d967ede\\-000000[\\/\\\\]+kboGUXgDfRR0vYWY0FVTbz81OXQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c70f74\\-bc89680b\\-adda\\-4a27\\-a3f7\\-34995cf9c1d3\\-000000[\\/\\\\]+dK1rqhG0ghj\\-wBB71qEbleN3D5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be3cc3\\-f15182bf\\-03ba\\-4fb1\\-b7dc\\-e18c78dd7ef1\\-000000[\\/\\\\]+N2_cOIk1bM\\-B1tCY_ByAVsBa3\\-4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245793ebd\\-c542a890\\-a8a6\\-4f1f\\-aaac\\-557da7d0a8ca\\-000000[\\/\\\\]+REC7CIefM9dbvMgBdFOeU2nU670\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245618009\\-d5ca070b\\-cb92\\-432f\\-8db7\\-fb72ae88f06e\\-000000[\\/\\\\]+e0TzRc0P6y9XlhIt3QYjX4Ajcwo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bcb912\\-78b55287\\-35c6\\-4fd0\\-b728\\-3490c0ffdbab\\-000000[\\/\\\\]+w90vkqUkpgc_rgn8V3c4kAsBLoM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245baa862\\-7ff40bcf\\-1f5c\\-4543\\-985c\\-7a4ecb6b7e02\\-000000[\\/\\\\]+dcJzBn\\-vzMZ0BNVjpbSRD\\-2UKJA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b96329\\-e81afeba\\-028b\\-40cd\\-9416\\-a984d6a8734a\\-000000[\\/\\\\]+6KAOvN8R8X8DQ7yKav0fVPlz\\-wU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459628bf\\-d29bddab\\-3beb\\-47a6\\-9dc5\\-8302cb49dd3f\\-000000[\\/\\\\]+f083ZsCrLZVgxHiGs8dDD_aB5_Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575aca0\\-6a94f346\\-3966\\-4e54\\-ac97\\-b9fd806bfb9e\\-000000[\\/\\\\]+zlopP5WKRRKkwgABGRmNGPqNX1w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6526b\\-acc4f4aa\\-39e2\\-4192\\-93f0\\-fd8e18a1f84c\\-000000[\\/\\\\]+RgxZ0_odff\\-PC7AoiITVJVayrYo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca7547\\-73c1a90f\\-1071\\-4178\\-a205\\-9db2a72febfb\\-000000[\\/\\\\]+e5rps0XeAKDrQCleo20DsPF\\-N04\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abe97c\\-bb3dc078\\-210e\\-40ef\\-81cd\\-97b4f0df05af\\-000000[\\/\\\\]+uSDUhZZtan6IUROYLQU8H1\\-a9WE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459879c4\\-f8f1e4d8\\-edd1\\-4797\\-b265\\-2a20aef1332b\\-000000[\\/\\\\]+p0ZIgcnq6_SX8NYJHIs6bUoHUv8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e3d01\\-a2579b19\\-3d99\\-4075\\-922a\\-0ae94ed2af2a\\-000000[\\/\\\\]+bsz6B4ZxPmYJL7jxXxnO0S7K2L0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587b697\\-392c3ac2\\-8392\\-4138\\-97d1\\-ab03c38e16b2\\-000000[\\/\\\\]+g4rCP2RuStdIszpzyZx5_DOOQwo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e1a6d\\-430cf414\\-f0ee\\-4bae\\-b778\\-cde95b59648d\\-000000[\\/\\\\]+bZe54vpxw2LiC1gu3bComOTgnx8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585c4f3\\-9562d2f2\\-3dbb\\-43ba\\-8f12\\-bcd4b712da4e\\-000000[\\/\\\\]+hLyPD1WhOHkZZmlb1oOE1cWBXl8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad880c\\-92fb5e3b\\-9208\\-4e0a\\-9b88\\-36a60db7254d\\-000000[\\/\\\\]+U4TUUSnG5WmBwZjFg7Hw79mrous\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572745d\\-67d3b4b1\\-764a\\-45cf\\-a0b0\\-8f0c53b37883\\-000000[\\/\\\\]+fzt3lKWnjNug6kBCGoQEsza_6EI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455dc3d9\\-b8a71913\\-09f6\\-482d\\-b0a0\\-5788d92bd18e\\-000000[\\/\\\\]+mOSOE0jF\\-Sq63RXq8jIK5LUKEsE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459484b4\\-dc0756f2\\-30ad\\-4203\\-b910\\-53a74e1c7713\\-000000[\\/\\\\]+M3KbDZG58_VY9qH\\-jeCSmdFBNx4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594d3af\\-447060c0\\-cd09\\-4d64\\-b05b\\-b661d287eda0\\-000000[\\/\\\\]+kYnmQ8MERCkCjIOe5oDgLOKcefc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bc7ab\\-04bf70fa\\-9f3b\\-4600\\-978b\\-64316c611333\\-000000[\\/\\\\]+_Hayq2YV1IDRA0YB94Fyky6f5FU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be77eb\\-fd45a39c\\-7c09\\-4e15\\-a51f\\-cc45148ced5c\\-000000[\\/\\\\]+Cu0UTo8Z0tG0SzElxnQRz6iUBuk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab12e3\\-e271d468\\-036b\\-47db\\-b5c1\\-85122a03a196\\-000000[\\/\\\\]+WslznHVPZxYAyK9s40cc4f8kElI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c7bb8\\-8c1039eb\\-5350\\-4045\\-a737\\-ff008ec25281\\-000000[\\/\\\\]+vJL08SM9snh\\-oLOyn8JbN48n_Bk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b82ca\\-dd52ccbc\\-4b89\\-4731\\-b78e\\-4d1e40fd3e10\\-000000[\\/\\\\]+aIs\\-VGisf7LzkeTTw2ccYYTV7pk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1e3f3\\-82cd6fdf\\-b2e4\\-45be\\-b3d5\\-432157b3c4d2\\-000000[\\/\\\\]+sVLD8TKGR2wPiZIpcAHbGiUuG78\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459efdad\\-e60f5eb9\\-c66b\\-4c55\\-9643\\-ce4cc489055c\\-000000[\\/\\\\]+5UnmnDmcnGQ8THfdT4HpTrPy4NA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598b88b\\-ef8fe0f0\\-c7b7\\-470f\\-b8fa\\-87ee7ccea358\\-000000[\\/\\\\]+hyovL7YBE9mvaYMuDOVTVni3xlM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca9f21\\-df492bb9\\-140d\\-49fd\\-8b64\\-ab5c65053287\\-000000[\\/\\\\]+WZPGzdgjHn03Ge_JVMYd6LU5e2Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d00646\\-a18ac099\\-b542\\-425b\\-b6a2\\-1a4316525842\\-000000[\\/\\\\]+e5MNX44TAyGGPeXSotMgUID8uas\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e60d4\\-5e8c34ea\\-ef74\\-4dae\\-8188\\-983ddc336541\\-000000[\\/\\\\]+_2WCuyV25L\\-84q3rRO7uT_O\\-qLM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0c618\\-4e9e9846\\-03a4\\-43cd\\-a41d\\-eb0bba18d0b0\\-000000[\\/\\\\]+oEYzmo2oR8kXXuWMcLyVt7\\-2dhk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e2f2d\\-d14733b2\\-8e13\\-4b40\\-9a1f\\-fdfd0003b83c\\-000000[\\/\\\\]+i7XIOKrIL_dDXn39Fd\\-Bybc2Yq4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7ee39\\-5e150fb7\\-444e\\-4e75\\-83b7\\-02fabd8cac0b\\-000000[\\/\\\\]+_MO58exqa\\-7jh7lH9F7YTEz5VuE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598cc7e\\-ac8c4264\\-1310\\-4b13\\-8fa7\\-16317eb987ac\\-000000[\\/\\\\]+RKVBb3yzrthcrS135EM78LR2Sbs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1bfc4\\-2f140d20\\-009b\\-4858\\-840b\\-8237888e96d1\\-000000[\\/\\\\]+gQo\\-ezF8moGOMhGYG\\-j4x4wi3pg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457fc6e5\\-89dc443b\\-78d0\\-4144\\-8d62\\-27d955f12492\\-000000[\\/\\\\]+taFV6TVcIFZVPdZMYNH4gD\\-\\-l4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599755e\\-10445572\\-6ad3\\-47d4\\-aef9\\-ab766603c9fd\\-000000[\\/\\\\]+KjJ1J4H9YWTV\\-CeFvH3zJKZY8N4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924590a4c0\\-19743d3e\\-392f\\-4b37\\-aacb\\-2d8a1c7f8e0a\\-000000[\\/\\\\]+Xxe3rhspIxe1iZcl9l\\-D2GzY9kk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245876dd7\\-11576043\\-c58d\\-4d69\\-9756\\-cd1c640a0911\\-000000[\\/\\\\]+Qk\\-b7J\\-XEVaxGjwaUflv15eYzr0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b131d2\\-fc735697\\-138c\\-471d\\-9d9e\\-3674b64d00f2\\-000000[\\/\\\\]+vDJ_NApDBXmeXtnMDW8_X5ne_bg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5703e\\-5c652789\\-64fd\\-4e93\\-a240\\-fed4bc5c46ba\\-000000[\\/\\\\]+8jfSEp\\-MGW\\-3EzhBYx21aNZpKyc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245918bc5\\-e0a52159\\-0707\\-4ab5\\-9e95\\-ceedc6aad850\\-000000[\\/\\\\]+9oGsWNUqsXRh\\-Zub3g9HgQgYdT0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245637b4b\\-1e2abafa\\-f3ba\\-4a82\\-9ef6\\-0b37f9608269\\-000000[\\/\\\\]+LIoh\\-fezHrr57Yk5HPvn49RfOd4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b48579\\-dedd3ded\\-6080\\-4202\\-89cf\\-d8635160366a\\-000000[\\/\\\\]+_jqTnY9lDrUT8anhDvYx\\-WnPxMY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb8ae0\\-986c8150\\-c8d4\\-4017\\-b239\\-f016bb3530a0\\-000000[\\/\\\\]+H2kWvERE4GEfuplPvultkXc8SG0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bda33\\-3c3b90c8\\-ef4d\\-4762\\-94f1\\-0bab113f9b29\\-000000[\\/\\\\]+x4\\-fHkXhip3_wFO1a_JIo0pRusw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aee25c\\-00dd1f56\\-2cbf\\-46b3\\-a279\\-fe13281d2103\\-000000[\\/\\\\]+KdITCFe3MKfDmox_\\-vOAthXOfEQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a9e1c7\\-135f7664\\-52f7\\-4afc\\-8ac3\\-9fac25f20532\\-000000[\\/\\\\]+XwW74T_xoFk2QrKQtCS7WXVFI0g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e28ff\\-0d8d9d5e\\-724b\\-465c\\-85f8\\-e9c150acd30f\\-000000[\\/\\\\]+pRJ_1tzPk3EqFBCWQb9nQgFHOck\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c5cad\\-a1591bec\\-c917\\-4e76\\-903f\\-02fa454c725d\\-000000[\\/\\\\]+R8GL1dXVAojgo3jNY2\\-3zN84Rt8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c5cad\\-a1591bec\\-c917\\-4e76\\-903f\\-02fa454c725d\\-000000[\\/\\\\]+TJAMcKuL8Zw9eB2gXGl8JZusT4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459977a6\\-d2b30694\\-ac87\\-4d3a\\-9dc7\\-47897031e105\\-000000[\\/\\\\]+RKwC_VreQXmMUOpHScBhwW9ht8g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfa51e\\-c5e1e62d\\-6a98\\-40b9\\-9953\\-644459795ddb\\-000000[\\/\\\\]+0FSKGxPI40z8UJftrwEFditgwvc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e2b57\\-c5b10cb6\\-c1fe\\-418c\\-8195\\-53b45fb2295a\\-000000[\\/\\\\]+H1QdnvOTjEEjo1lrKKWU5Y\\-LyQE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245716d51\\-e7db5693\\-c7af\\-4590\\-ac04\\-c20b01db98b5\\-000000[\\/\\\\]+txhCSFvRIAfwxhX55V8sDE5k_6Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3f579\\-4f8429ff\\-76de\\-4b1d\\-b009\\-8fc033fc1daa\\-000000[\\/\\\\]+ecFgpDANEDdIsryowIB_gHgVGAI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f3a99\\-0c39e9da\\-6a14\\-4e7a\\-80fa\\-e09d0fddac8f\\-000000[\\/\\\\]+Kd_LuBgDKgchc10cvybcroFSNzg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb5e1d\\-9ea2d060\\-8397\\-4994\\-ab19\\-fa9f6ecafafc\\-000000[\\/\\\\]+KxeY\\-yxxh\\-14JTr\\-lH_oarSrjiU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598dabf\\-e4547b88\\-215d\\-4aca\\-b2ca\\-2eb6bddb0ebd\\-000000[\\/\\\\]+Ex086iW4HN91pekI3V6tvRGjGf8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579f068\\-bfb9e10d\\-9e80\\-4e88\\-af20\\-756d3b25054c\\-000000[\\/\\\\]+5zYZGk5F3QJzNNPMuivLTtxXsOQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf163f\\-497f7edb\\-9618\\-4dd6\\-acc6\\-04c168f3cd93\\-000000[\\/\\\\]+8LBGRGDH_BkADUIJvzLDihBQB\\-0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ed613\\-e116ed42\\-daf6\\-4aea\\-9ed8\\-830f2682654d\\-000000[\\/\\\\]+YXgNZUwyqG63jSW0cUwDPIE2nAk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8ee8a\\-3777d598\\-3296\\-437d\\-95a2\\-f40685bba96e\\-000000[\\/\\\\]+flvBAALSvvI0g9syQXkM8XNXVMg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245850c18\\-205a44ac\\-00e6\\-4b1c\\-ae04\\-ded1e78f4678\\-000000[\\/\\\\]+bR2MvWDP8gNttByA92wrkDA5lUI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245caf2fc\\-19fd30fc\\-dd15\\-4b80\\-91ef\\-81a8780b3494\\-000000[\\/\\\\]+8Pd_RPdd39ilYjFypuIxUZtBQGk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b066d\\-6e3f1ddf\\-0005\\-4db2\\-9a9d\\-5e51d09415da\\-000000[\\/\\\\]+SPARrU0kmFYKeAKp4O0al1pQnGA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f403c\\-e66fb561\\-d304\\-43e9\\-a127\\-7b47baab838b\\-000000[\\/\\\\]+OLgcYykP0VKwEos52nODtYTjpk0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e3e99\\-8ba673db\\-2ded\\-43ed\\-ba05\\-1da36e065332\\-000000[\\/\\\\]+UiRiJmDr2vfCbzy0upVwTQKp8xY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576c787\\-58fe22dc\\-af23\\-483b\\-8b46\\-7ae349382d04\\-000000[\\/\\\\]+V4hH\\-iYO_QFMUOMrAqYGaEqciHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b9627a\\-90f70796\\-79eb\\-4ce2\\-9c12\\-a73c0ea0e0fc\\-000000[\\/\\\\]+dqaPkGxajEKnmiTW72XTv415Djw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8e86b\\-9369b587\\-2bc5\\-4fbf\\-9f8b\\-8d0e4a61735d\\-000000[\\/\\\\]+yE4yqDgv_RGupFGw0y\\-LNCn_yOc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6b4cb\\-ab009307\\-535d\\-4971\\-8cea\\-14a97f7991a8\\-000000[\\/\\\\]+FFfJpZaCtxSaFxx2\\-jcbyTb3EjY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bdd278\\-b3fbf29a\\-b492\\-4c2a\\-809e\\-4ad4e4d19315\\-000000[\\/\\\\]+YABgJbuTB_xaDiNxNAV7YTBQ6Ig\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af8dac\\-1a152990\\-f5be\\-431c\\-8973\\-a5238e687892\\-000000[\\/\\\\]+_rCQaFShCBGGgzuzjYrzZ8jvcDw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c7f06\\-d2f4cf9d\\-8f8c\\-45eb\\-8e1b\\-d5f5a5223cc6\\-000000[\\/\\\\]+FxcoZaOFYO5aNA7c\\-_lLtKT\\-aTI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b69f05\\-cc4395ba\\-5845\\-4d68\\-9047\\-4a4281dcf1bd\\-000000[\\/\\\\]+Wkp6Gap2\\-ZFyQJf2iB1fs3ot4dk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbc41a\\-a632daaa\\-a0d0\\-49e5\\-8e43\\-b0232d77d404\\-000000[\\/\\\\]+X3y2ZnpH_tT\\-MSNHjzPc3TJ7y2M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572fa60\\-d4a825dc\\-da3f\\-412b\\-9011\\-6e68e096e25a\\-000000[\\/\\\\]+VWNMYnQeHKz0TgllGhJ9FrODLd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cac29d\\-7c4b2822\\-1fb3\\-4065\\-8c11\\-6c5b8852bc14\\-000000[\\/\\\\]+A68ZJkF840NLs_8Q5Jok2dOCbFs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597d14c\\-8df24f46\\-fe47\\-431c\\-90a1\\-2243420c2795\\-000000[\\/\\\\]+1gQRqWhaLIE\\-IJ3KEpcLypqPFQU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1bfc7\\-4b3c6b0c\\-6f32\\-4845\\-aa79\\-e568a23f0cba\\-000000[\\/\\\\]+RsAFV\\-kB_qblAWjYDyMOaULifd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245887f96\\-9cb5bd4b\\-183a\\-46af\\-bc39\\-1e4a9517b7cf\\-000000[\\/\\\\]+Tmq_aWQRHQexBy09yOx4I8hpwOA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594a8a4\\-98c4b494\\-5b49\\-4eeb\\-a6f4\\-bce8bd9e551d\\-000000[\\/\\\\]+Ci3c0Sm3uA\\-HmApnj5ZdDa9PaM4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459abf89\\-d032e1ea\\-ec6c\\-4465\\-936a\\-65bbe6cdbf46\\-000000[\\/\\\\]+Sj2s_YBTE8vE7RWMNMLo_CCTDMU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924571ad85\\-41f25510\\-dc3a\\-4c72\\-b22f\\-788d73aac096\\-000000[\\/\\\\]+Mkhe88pWknBJNMFIU77NdKOe7vI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245768680\\-7b74a04e\\-7816\\-43e3\\-ba64\\-09e3e18567d5\\-000000[\\/\\\\]+gjjNcnnOUVWWQQaBSKm9Ep7glS8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e9517\\-545dd4da\\-4885\\-4856\\-af74\\-de230ff7fd8a\\-000000[\\/\\\\]+M1O\\-MHN_0NA8OrMldMKjuR0Utes\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce544b\\-df5f6774\\-dd32\\-442a\\-a34b\\-52f1899be050\\-000000[\\/\\\\]+K2Ait1VZLpZbgU8Uw7Sdf663dwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9c8ca\\-102f25a5\\-3576\\-41d5\\-93ba\\-c4716fb2cbf5\\-000000[\\/\\\\]+2lqw1QkUWK\\-NuQzJe\\-6wrHC3SM4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c0ea5\\-638e6669\\-40bd\\-49ea\\-af2f\\-8f4c3b8fb050\\-000000[\\/\\\\]+eM0cRW5ojUZIdBJJLglJlf3sqCg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a405c1\\-2707b90e\\-e370\\-434a\\-ad96\\-2bcf84c2ac80\\-000000[\\/\\\\]+Ltpn7H\\-\\-oRetSC\\-S\\-oFnQteGwOo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d1f1d\\-39efefc0\\-bf3b\\-42bc\\-8cdb\\-4f1d2da9ea87\\-000000[\\/\\\\]+wXsHN3lULgQOTrKBNz7xizPGMP8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245980cf6\\-c2f30daa\\-1dd7\\-4518\\-90e3\\-bc77250671d2\\-000000[\\/\\\\]+Gg7PAqRK3QmFCGNgM8NY1yVxWKI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457de915\\-50e3d1fe\\-d111\\-4ced\\-8baa\\-c35e259c6319\\-000000[\\/\\\\]+Rfg94p9yhEMCKQD6AnsJGTqGpuA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458126c1\\-d21005a2\\-4d9e\\-475a\\-9b95\\-505f44136c9e\\-000000[\\/\\\\]+4YgO6TCW6WrPPHFZ14_D0M2b0bM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7edec\\-ff256fdf\\-cd0c\\-4a6f\\-af26\\-723680728e4c\\-000000[\\/\\\\]+Y\\-ed_kTgGA2Vl646VTwSRO8gSuY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a60306\\-cfb7f904\\-5acc\\-41b1\\-af9d\\-a45f8183f67b\\-000000[\\/\\\\]+j_2gcHuW\\-QE0mzo2qOYDL6_kyYI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924588f6ee\\-c720f7e6\\-5102\\-42be\\-a92a\\-bbe4755ac464\\-000000[\\/\\\\]+vzkjUoYh_97dhfnJ5mGdiktka60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f84b2\\-60a3c626\\-8341\\-4cd6\\-93f8\\-df0557411285\\-000000[\\/\\\\]+W3lEvMLVmMbRZU8NaXLGbjgabao\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245913744\\-6e73bb5e\\-a1f7\\-4bea\\-95ab\\-d7ca74352abf\\-000000[\\/\\\\]+_ntSSWiY5uSI9AvcweGjPs\\-szKE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ceb5f\\-a5948bd1\\-80eb\\-4fe5\\-afb7\\-1aeb8fe19994\\-000000[\\/\\\\]+CmgsvormG6wG\\-a8C5bldPx7oXc8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6c5de\\-36d0b1fc\\-baa7\\-4953\\-8086\\-3579fd3a5da7\\-000000[\\/\\\\]+AsU7graJY8c2ZT4qqSCBFqOenTQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b1212\\-9bb1d7da\\-d542\\-43b1\\-a571\\-f42c6cd56eac\\-000000[\\/\\\\]+QtaAY2s47UVFhcIcN2oJ6e2n0eI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf163f\\-497f7edb\\-9618\\-4dd6\\-acc6\\-04c168f3cd93\\-000000[\\/\\\\]+glq_V3PZ0\\-Ev6GyA14mhcXy4MTM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a17f3\\-b5efec8d\\-93cc\\-48ff\\-acd3\\-6656b75d46da\\-000000[\\/\\\\]+1Ie\\-9_Fxs2TZAyXJdiyRxkyyqFM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b69ac2\\-d9c5d5d2\\-1051\\-4dbf\\-aa5f\\-da168ac804a5\\-000000[\\/\\\\]+pL\\-vp7Dkg8f1C0VjP0umCWxlu\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bcd437\\-9b5f996c\\-3bc2\\-40bb\\-ba82\\-78e8233d2c95\\-000000[\\/\\\\]+6lZSu72W_zTTa5czN\\-gbPqj5fvQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a14723\\-60332ad6\\-6132\\-4fb6\\-ae8a\\-2c30a2679df0\\-000000[\\/\\\\]+XKYAY3U_YzLhf4KWqZZBBU332gg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245779576\\-16ac3a2e\\-7c43\\-4c2d\\-9516\\-c753a4e06955\\-000000[\\/\\\\]+cCjUviV9dD8O8e4GVgJ95i\\-4mvc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d4fec\\-46d187cd\\-3733\\-4963\\-af4e\\-861c1bdaa94d\\-000000[\\/\\\\]+HAySl33E0dM5jZDzLsF90Gn4MTU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e2beb\\-e8c4d578\\-5402\\-4b9a\\-bfa3\\-d7de25bdf6af\\-000000[\\/\\\\]+NaP\\-qlbmLo6xqrDH8E5j2dOo62U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b973a9\\-8a4e011c\\-0e2a\\-4260\\-b37b\\-69e4c30202ce\\-000000[\\/\\\\]+3hUDcDxekxJuWelu6HOA48e2XqA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6fa37\\-e6b5caed\\-fce8\\-4be5\\-9d49\\-15aa7bbf8743\\-000000[\\/\\\\]+soisBAT__h4mL7cHKHOW6\\-zjugs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245830e6e\\-e444e97d\\-0fcf\\-4273\\-86b9\\-2be200ff9936\\-000000[\\/\\\\]+35xBji_MONyJgRF5iNdlfS\\-YR4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1d3cb\\-d26e67bc\\-f14d\\-4dc4\\-a563\\-9e344a5d98f7\\-000000[\\/\\\\]+3gN93nnK7B_4D0YG1fyYNHhc5M4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c44360\\-1a57f657\\-e20c\\-42ce\\-9eaa\\-5d91a3f33d0d\\-000000[\\/\\\\]+B4DY3gN\\-aeroesMmgzKmKvelteY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c99f27\\-54a704b3\\-d240\\-4009\\-92e8\\-5c312947c8fc\\-000000[\\/\\\\]+t2FdE2Ec6QoRdDGT8_duEArf9Uc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456813cc\\-c0799453\\-f2b7\\-4d89\\-9852\\-2d87e90e5f87\\-000000[\\/\\\\]+tN50zAnG2eht1L0iJ2XR3WPuD4g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457632e8\\-5b6aab7a\\-e082\\-4e08\\-83b1\\-ebba9f41bcd5\\-000000[\\/\\\\]+Fx0NFlOir5S5FAyTqguXOnwGXFU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457958df\\-dc2e4662\\-9fac\\-4f2c\\-9820\\-6b1056f42e67\\-000000[\\/\\\\]+hSZPqm5EqSsXPuxSw4diTkODCc4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cfed50\\-0cbc864b\\-2185\\-4e90\\-a8dc\\-e3ab29461122\\-000000[\\/\\\\]+G_209CzRoR75xPsGrdEolSOklZE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b131d2\\-fc735697\\-138c\\-471d\\-9d9e\\-3674b64d00f2\\-000000[\\/\\\\]+ck\\-S25I8KtFy9d0\\-qU\\-JnELp6\\-4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7878b\\-0e832f53\\-1b59\\-457b\\-9c93\\-8bc0b927a0cf\\-000000[\\/\\\\]+OKc28kEUp6uuHjortnZAbFemDdw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245816fdd\\-523161aa\\-cfa3\\-41c1\\-9a2e\\-e1c2002ee621\\-000000[\\/\\\\]+lHtW1L20YHkAXOcC6UmNLY8hOOU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a6cb53\\-95eebbed\\-87c2\\-4378\\-b1f9\\-e4bd3cb06ff1\\-000000[\\/\\\\]+BHBvB2nW2j5y16cJWBHiY8ycy\\-Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b33921\\-9195cf27\\-ed6a\\-4d4c\\-a215\\-a4835633ba2d\\-000000[\\/\\\\]+Tl1LnZxlBwXqYWR3sVnl3Rd_90c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5b61e\\-3d8d0189\\-f136\\-4034\\-a6e4\\-622614376a26\\-000000[\\/\\\\]+eaMljtRbKsZe6dLg1iKP3k_Pjfw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456120dc\\-ace8aedd\\-dc11\\-4a86\\-9d10\\-3125d29d0ea4\\-000000[\\/\\\\]+caDnbJ980aeu5h2UIcU_Ln09HwA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7ec24\\-a1d89f90\\-62d2\\-4796\\-b6c3\\-2f3c89eb6fac\\-000000[\\/\\\\]+_DwlbE0E1q_JWc_TOqsya_tuNSA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459fcb79\\-533eb183\\-f4cc\\-4f33\\-9578\\-952fd2013b30\\-000000[\\/\\\\]+dtil5txxmRexJIhzNU7oOEwnYMQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb22b5\\-edb5912c\\-7978\\-4401\\-81d7\\-4abb8e5dda5b\\-000000[\\/\\\\]+pC8Qu4ChSRyxgDgdwymrcuQfYsM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c09651\\-0028c82b\\-71f2\\-44b5\\-85b2\\-2fbc8aa78b6b\\-000000[\\/\\\\]+8OJSrLFXF_6263_XQrBTo\\-9ERX8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924561a8c3\\-843f2012\\-4958\\-4359\\-b2d7\\-5e20f62fea19\\-000000[\\/\\\\]+T_f_LXI7H04zcRhuB\\-1yCoLwogY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245759b3d\\-1fcdfcdd\\-912d\\-4795\\-8450\\-32d7ea2592ab\\-000000[\\/\\\\]+MJ68BYD69d9sEE0ZpHPQjKK6X0E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be8e25\\-220a2859\\-cbf0\\-49b0\\-8a46\\-f3936d292e45\\-000000[\\/\\\\]+uSRjsEsvMjxaJ7edObMUPf_LDAM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c35909\\-5d9ee331\\-bf93\\-4728\\-943f\\-ee718e0b4d76\\-000000[\\/\\\\]+qToH2KB617NGJZE\\-ghDk8MDGNoE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e7301\\-722dd0f5\\-fb70\\-46d8\\-9c5c\\-994cc551d6bc\\-000000[\\/\\\\]+JECU58bV\\-x6AOI8A2xIR4EqvPDo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595a0d5\\-70abb4a7\\-6464\\-41e5\\-a21d\\-ba6f2062d6a9\\-000000[\\/\\\\]+HTyayN\\-1rfGKVXV8zlPoFXYkUhU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566576b\\-d4b94736\\-c97f\\-4aa1\\-b23a\\-ec326c8a2eb0\\-000000[\\/\\\\]+1C4HevpDgzrGoF7aapjyWo98Oic\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b0456f\\-7af662d4\\-1584\\-432a\\-9f7a\\-4a81673c8c3c\\-000000[\\/\\\\]+AdMhNfW5XsoyQDLLg6YKdDyNNnQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575aca0\\-6a94f346\\-3966\\-4e54\\-ac97\\-b9fd806bfb9e\\-000000[\\/\\\\]+uaP30N2RQJwdI1dnsJtV6\\-Hy3kc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459fffe6\\-4c45a780\\-346b\\-49a4\\-85eb\\-186d96b5623b\\-000000[\\/\\\\]+qjqFDuIw1bc9ggxzTtFKVAYliPA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f7a7a\\-6898d21b\\-c168\\-4e97\\-8608\\-4018b036beac\\-000000[\\/\\\\]+aMsuOD\\-JsDLLExAPVG6rCFYxS84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e5d82\\-1c581ec2\\-fc2f\\-46de\\-9dd5\\-51e944cb745a\\-000000[\\/\\\\]+h1PIETSaX05z6mEF3rVhT8YvpJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573936a\\-386f0bf2\\-561a\\-47d2\\-a9f6\\-ffc46ab3627c\\-000000[\\/\\\\]+o6ub7blC6HH0XDxeAL8EBFOLLL0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245750af6\\-d535bc5a\\-1baa\\-4e22\\-8569\\-07d849f0e359\\-000000[\\/\\\\]+LbB_R2lPnbEOSIJnAcnHKDc7NsE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458042f0\\-4ca9e5b9\\-317b\\-428e\\-bbdb\\-d285651c31e5\\-000000[\\/\\\\]+TaNJlkP_ECHF8JIyYgwQxIbpkb8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c708e\\-319888ca\\-d5e8\\-48dd\\-81cc\\-b52af55efaa5\\-000000[\\/\\\\]+YeopcLk7w4ovNSzBdjtUyuXUk8s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d1975\\-0803d503\\-bf47\\-4553\\-af5a\\-6c277a54ce26\\-000000[\\/\\\\]+pXAWEn3xoxkd\\-RrZgvDonjnrEyk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c40de3\\-7a6439ef\\-87a9\\-4607\\-b1b4\\-20a921554934\\-000000[\\/\\\\]+HUP32NvsL_lXXXzgYu9SoTK4XZg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245837c1a\\-5a579541\\-8166\\-4a96\\-8988\\-bcd8e4246dee\\-000000[\\/\\\\]+zL2Et4fa0iCUC3UwTxLC5sD4fUI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245858326\\-91cbaabf\\-a837\\-4893\\-9478\\-8e23782ff109\\-000000[\\/\\\\]+KJtbiGBD3jq8qS9VouF3OMSyvSg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b21e0d\\-ee88793c\\-75da\\-409e\\-b83a\\-84f3520d2b28\\-000000[\\/\\\\]+ZTQLCEte2zq87hkjNYxWGvE\\-\\-Rk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f1803\\-48076f26\\-b67b\\-48ad\\-892a\\-1dd214170ffe\\-000000[\\/\\\\]+tjWaPvmcbjeBuLaFK5Ro\\-tDZSII\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582f07c\\-cc6febca\\-11b7\\-4411\\-8ec8\\-3a6275dc5618\\-000000[\\/\\\\]+ewLPCXgMcSl3coKQTLgewNoGJHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457497df\\-cbb96f4d\\-badf\\-4e01\\-aaca\\-bb6e9711420c\\-000000[\\/\\\\]+2WFxClmATLMeqTQKa6C4OXDKLW8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a06cb8\\-795b00d4\\-e225\\-4038\\-911e\\-36e6a755cb26\\-000000[\\/\\\\]+wJdIq0NyGbx9K3ZKsIns_L4jv1I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458d0423\\-b0e2ba4d\\-41f1\\-4a32\\-b34c\\-68350af3ccf4\\-000000[\\/\\\\]+p1q1Dm3z\\-xrPbC35uWKiyLp8x2s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cb7bc\\-05b7ee6e\\-b8ef\\-4dd5\\-b253\\-9152423299d1\\-000000[\\/\\\\]+EJnTnDz4RrAUOfYNDRIjdSKz0Zk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245975485\\-f420986b\\-f2b5\\-419e\\-ab6b\\-330643436344\\-000000[\\/\\\\]+HN3F_QJdCjHAebDKlaqZZHbtPUw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245718f66\\-a9dc861c\\-248c\\-4efd\\-bf32\\-563f5c5e769e\\-000000[\\/\\\\]+3Y57aHN15cKY_3KMekEDEzMCySw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b48579\\-dedd3ded\\-6080\\-4202\\-89cf\\-d8635160366a\\-000000[\\/\\\\]+GSoH4t7iQdeH7kyToLu34dYcid8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597d14c\\-8df24f46\\-fe47\\-431c\\-90a1\\-2243420c2795\\-000000[\\/\\\\]+4F1WF5uVIUfSGVFdH2HwcfZzCH4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb5344\\-017884ef\\-c84b\\-4c74\\-b27e\\-73d30534ef4c\\-000000[\\/\\\\]+Gzvpdw3c4p4hD2_bwI7b5Pwvo0A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a56c7e\\-2b2adc63\\-e26c\\-455c\\-b92d\\-bee9357d3e3d\\-000000[\\/\\\\]+C9UNxqOsQeYtAQwYap\\-hWJGLA4s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bad82f\\-b29ce587\\-984b\\-463d\\-b5b7\\-cb80e257d428\\-000000[\\/\\\\]+4nOGZeRbWZTFO5nylpiGt7L6Sxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3df6c\\-1ea470c7\\-3879\\-4ede\\-897d\\-904022c683b3\\-000000[\\/\\\\]+7e_NqHraAZdPHmSohcVYkUcd2Lc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8e5bc\\-f92e67aa\\-540b\\-479a\\-8ad0\\-b11ec54b1a78\\-000000[\\/\\\\]+0wrH5lMlXB6IH4mEUeER6cYz7hI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb5da5\\-2634f1ef\\-3dad\\-4e1d\\-8c56\\-41f2a0d94e5d\\-000000[\\/\\\\]+r\\-topvPxQpTTZLpegfcwPrN\\-zuI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245adfc21\\-7daae0ff\\-898c\\-410e\\-9745\\-de9c0acd1cb7\\-000000[\\/\\\\]+Wq_zod3F6ypst8N8q_U9hjv\\-U70\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924591bfb3\\-d9660b6e\\-f559\\-4ae4\\-a971\\-015940925038\\-000000[\\/\\\\]+48PlAweRpSxg4FeoQcsIFs\\-v9GA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b24ba8\\-075f48ab\\-b2f4\\-41f8\\-b68c\\-e2b5b7273770\\-000000[\\/\\\\]+3dj439_jDkr2jHJ_m83qlRwIkXo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570c13f\\-75fbcdc1\\-303b\\-41c6\\-aa16\\-1f0c70ec0699\\-000000[\\/\\\\]+AIvHE7vIQ1jgKMC0MZpuoQTyHsc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c41811\\-33e30b03\\-e69c\\-47fe\\-aa05\\-9bb0c37a52cc\\-000000[\\/\\\\]+EH53j9j9rqEhnmCMCaa\\-sZaMUGk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c4bdf\\-0ce7cbe0\\-1f26\\-49f2\\-9b10\\-80ac06c9b310\\-000000[\\/\\\\]+WxM8PruKalzXC6r9J\\-oncggLnmo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245750167\\-e2a28ddd\\-4f4c\\-41d7\\-aec1\\-76ca07550c88\\-000000[\\/\\\\]+9B0l10RnIfykaOeb3BvPblplCw0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589ef4a\\-9637a2a9\\-85e6\\-4f61\\-9d51\\-a0118f7d216c\\-000000[\\/\\\\]+xKkJjTgwXcm1\\-rji5i__tF8Fbpc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c04a15\\-f44528b5\\-4c55\\-4365\\-9e27\\-aef5b90ddb97\\-000000[\\/\\\\]+kY\\-tcVbHnA\\-PYugNedWGf_cryNg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bcd068\\-763afe9c\\-0709\\-4a0a\\-9c6d\\-9d2eb65ef227\\-000000[\\/\\\\]+wDlb5veSPJjby3h6do1YMOqy2jQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb9e9f\\-a467c9b6\\-41b1\\-4996\\-b1ea\\-f2c4c5624c30\\-000000[\\/\\\\]+\\-KT8JZ2vqmkqCMwAawDdwjmBL\\-E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b75c31\\-a27d89d6\\-5a6d\\-49ef\\-94d0\\-bea0ffc330b3\\-000000[\\/\\\\]+xXQ4qr2OwNlDVr3fEGSSOj_MdAU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595ffc2\\-24de57db\\-571f\\-432d\\-9608\\-b87982ca95d7\\-000000[\\/\\\\]+OIPZszc9WouxYbMzTNUNGhvzwj4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245824e6c\\-1db4bc67\\-e47d\\-4c65\\-a858\\-4e6efac6fb9d\\-000000[\\/\\\\]+JjeekXuQcbiOaufl8vq30K0ZNyA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cd67f\\-5cbff8a3\\-838d\\-4696\\-8c82\\-10a9a035f062\\-000000[\\/\\\\]+cYujf6ZY1GboMOBKTB84YNzUNSI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8e9b0\\-750fad7f\\-6324\\-4095\\-a400\\-f153d048d0fd\\-000000[\\/\\\\]+eH_d34rbbiB7\\-2dKCmPqAGKhgec\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245736ee7\\-a8298299\\-dacd\\-4b28\\-9b9c\\-296acb69a592\\-000000[\\/\\\\]+Vf1E9TxnD78DsUIALGCVhJGgRm4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458af6d1\\-033abf61\\-2f58\\-4d0e\\-85d4\\-dd366ceadbdd\\-000000[\\/\\\\]+ifHMsgIw8uDyi_v\\-kMuLo2vYnq0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c19d3b\\-e4241bb2\\-d325\\-4e76\\-acc9\\-a7e9775acfc0\\-000000[\\/\\\\]+kDcA6lEGm2wksVzUsi2tdy_o3HA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afd22d\\-6f39cb51\\-203e\\-47a9\\-ac1c\\-a9cd3050a3bf\\-000000[\\/\\\\]+ObFTIPbZfFJpXaMFxGgTA0pl3nc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566576b\\-d4b94736\\-c97f\\-4aa1\\-b23a\\-ec326c8a2eb0\\-000000[\\/\\\\]+UL5ytbBP\\-GbrRB1dKDLSf4TeMPA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457eac54\\-71ba3922\\-5f42\\-47d5\\-8327\\-70c4e742c768\\-000000[\\/\\\\]+aR2rN\\-rM_T4KRozWGxfc0XYH6KA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c77adc\\-a2d1fd98\\-f1e5\\-494d\\-991f\\-910e8cd28963\\-000000[\\/\\\\]+8qaijjqcuKrJI\\-\\-VGEGr45lkzI4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5e8a8\\-b985b047\\-e768\\-4c4b\\-a646\\-fe344e109185\\-000000[\\/\\\\]+UMgs6BSWMDWVUuF6cQGzH3uEmu4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573a987\\-2c74bad1\\-fa72\\-4e9d\\-8d06\\-c5a1419e9ba7\\-000000[\\/\\\\]+XD5ai7H65nUkDpknw87a4A_9Rig\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9f3f5\\-191f9b50\\-4375\\-4a72\\-990a\\-2683ccaee8dd\\-000000[\\/\\\\]+Pa7K6RwoylGTdY_9GcEwQnu2fY8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bedfae\\-f0bfec4d\\-2c33\\-4bd7\\-9692\\-c342c42dd3af\\-000000[\\/\\\\]+kH9s7qC6CNa5_O2tR8rrlyZFGEQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be6af6\\-42f97306\\-4561\\-44da\\-b4ef\\-74793441ce04\\-000000[\\/\\\\]+4mpeiQh\\-WjJ\\-l5f5MeD\\-pu_eiHI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ef12c\\-aa77669d\\-1431\\-4a67\\-b2f3\\-64dd6a47a534\\-000000[\\/\\\\]+QMC3ceitmqVrbJTsaZ6_FVmDtEk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ed385\\-66a2cb38\\-ce42\\-4e03\\-ae0c\\-95a82d966d20\\-000000[\\/\\\\]+WZZHMt0_WPeVkJTVA\\-4dbfe55z8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f3ca3\\-3e5d7533\\-0a27\\-4d76\\-8500\\-5c15622f4032\\-000000[\\/\\\\]+\\-gg4Tbo1SuZt5WsePr_mcgk1g54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a405c1\\-2707b90e\\-e370\\-434a\\-ad96\\-2bcf84c2ac80\\-000000[\\/\\\\]+GfrvrcqwVQeZdgucDDmSbUAATtQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587dd71\\-68402dd3\\-cfea\\-44f6\\-9457\\-8737101b7668\\-000000[\\/\\\\]+xrYY3POow1\\-XMgCMY1OZpJPzg_0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb35a2\\-43ee098e\\-fdd1\\-4ee7\\-a6fe\\-4418b40b7cac\\-000000[\\/\\\\]+McPFF\\-u0l6MvYbIZmON8AKTzLiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459fdf57\\-b80feda6\\-e244\\-40b9\\-963c\\-74644eddb2b4\\-000000[\\/\\\\]+LUAHxOQVje7lktUS83l_O9MvQkE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cab357\\-994fdc63\\-f642\\-4293\\-9930\\-cd6455221b18\\-000000[\\/\\\\]+EZUZdXrDjvbzSM0PBsiAs_o5Wzk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d4fec\\-46d187cd\\-3733\\-4963\\-af4e\\-861c1bdaa94d\\-000000[\\/\\\\]+FldNFrCc3pwU1geLTLsXVvGdFLw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456b00ec\\-cb27668d\\-fe90\\-472b\\-bc8b\\-a3601336965c\\-000000[\\/\\\\]+9ZbuQvqdWhiYlvqAMM3Xo8RomBE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a2814f\\-9dbb6328\\-1d3e\\-411a\\-aafc\\-d2b42ab8905b\\-000000[\\/\\\\]+TtraO\\-9kBznt5X\\-wF2FMAKXZwVo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232889654\\-d4a102da\\-7625\\-4284\\-95cf\\-d7c13c166d90\\-000000[\\/\\\\]+GHemlVN0Jo_oD4s32OmXT66VLPk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587e1e0\\-5de55a9c\\-22bd\\-4fd1\\-9683\\-c1689dfc09ef\\-000000[\\/\\\\]+uLIdzRdew4sMS6ndRlymguFL6pA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456718b7\\-7ec3f304\\-b068\\-4f02\\-9beb\\-b46882d24eff\\-000000[\\/\\\\]+DU1iVK1rfoiHEOq3UEdAizR9Jig\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e29db\\-f6697275\\-aa10\\-43ad\\-9351\\-7b1524d4011b\\-000000[\\/\\\\]+UgfJ0apc7UxX8aCUfAGGOqQzpss\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8268f\\-dc651397\\-3207\\-420d\\-9bde\\-2330df0e239e\\-000000[\\/\\\\]+rr0qwGMh0tnd0riDldrp4L4GByY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b741bc\\-91493ecd\\-bb48\\-46a3\\-b3cc\\-7c78a0418111\\-000000[\\/\\\\]+oWOGTPOJNlg1DM2zs2ajqpAgaPc\\=394(?:\\?|$)" + }, + { + "hash": "2a2e7dfc2ffd95b0099ee44054c8108426f8dd2d5fbf1baecde0d975ed933029", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245802454\\-5f3c623d\\-a7c0\\-462d\\-a84e\\-9932e75f9e6d\\-000000[\\/\\\\]+fnPJlbK\\-C2hdOfkpL5uf3SyD5uI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ecdf8\\-a81aba57\\-b2ff\\-43e3\\-a3c7\\-9a752cec27e6\\-000000[\\/\\\\]+GMrQZOKFl\\-44diJTizqaiHv8f\\-s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb6eab\\-2d42d148\\-7a54\\-469a\\-95d1\\-980c2cb9d750\\-000000[\\/\\\\]+mEdxx4O9977Kj2kD\\-1V10YDqqEk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbb8e5\\-9c92ab2c\\-2ca6\\-4476\\-b2b6\\-144ad828d4e1\\-000000[\\/\\\\]+NM8GX3Mh\\-d_cZMsnBOYo2QHHGgY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587e1e0\\-5de55a9c\\-22bd\\-4fd1\\-9683\\-c1689dfc09ef\\-000000[\\/\\\\]+F7tMpyFWzrITzNyyQ1LiTMYPCN8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f1681\\-74b0c7a9\\-baa8\\-4775\\-9808\\-dab8db9809c9\\-000000[\\/\\\\]+j\\-cnZ6UM\\-OIJLweppHnAqxoQKSs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7878b\\-0e832f53\\-1b59\\-457b\\-9c93\\-8bc0b927a0cf\\-000000[\\/\\\\]+rcLvgG3K0un\\-SsTM8eBIiJEY31g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c31317\\-8029c109\\-2a2f\\-455b\\-aa63\\-45f1d7880b33\\-000000[\\/\\\\]+sFhpACxctwpnkBLKq7zZ0ObNz4Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bca6f\\-42f971d9\\-8b0f\\-4e9d\\-b549\\-ae0be02d6752\\-000000[\\/\\\\]+qjluRiaRYQuDmQZiQd_\\-WgQ4hEY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245742d56\\-4f24ce1a\\-ef1a\\-4b2f\\-ae39\\-7982ee96de4b\\-000000[\\/\\\\]+8F0Kd9V5Lkulw8bQd8Kq1Nuok70\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d4031\\-c9d853bb\\-4d63\\-4b72\\-815c\\-95b437f18dec\\-000000[\\/\\\\]+JgY9CZES0G9iaMChZ_PGYrlzOpA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a9e1c7\\-135f7664\\-52f7\\-4afc\\-8ac3\\-9fac25f20532\\-000000[\\/\\\\]+jA8IeUXiwE5zERpoBu3i9imyF\\-c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb1f9b\\-09c64f0c\\-71eb\\-4fdd\\-a10d\\-14ecda285b6b\\-000000[\\/\\\\]+VRn2V8uDBD3pYElcrK2J6PgBvpY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585e2a2\\-e22cef54\\-ab6b\\-4495\\-b4fd\\-3fd481c27b4f\\-000000[\\/\\\\]+qGbj2cHM5VEXBkxQD1BWns8DCdQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca9cfd\\-edd02a5c\\-429b\\-4f80\\-a0d9\\-a6e5827c7709\\-000000[\\/\\\\]+mnoH9t5fieVqIADySaURHitzGcI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4158f\\-7dde55cc\\-397f\\-49bb\\-884d\\-770c64e795b4\\-000000[\\/\\\\]+FNndi7rC1LBCeTRBAJz_oUHaTX8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b9627a\\-90f70796\\-79eb\\-4ce2\\-9c12\\-a73c0ea0e0fc\\-000000[\\/\\\\]+KZiwDmQ1Cc_13ypozZWsGnLmIdA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ac8fa\\-7ab4a0a6\\-6106\\-4889\\-8df4\\-3e7ee1892373\\-000000[\\/\\\\]+l1447yQoP\\-w7PnOpDsOMKV\\-SRyk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae01eb\\-d4cafa23\\-672f\\-4eed\\-9a52\\-64d72bfb52ee\\-000000[\\/\\\\]+XX3zzDo3w_SZSR2NOf_rpb9vh74\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459988c2\\-fdab95df\\-9c02\\-4641\\-bac1\\-8535378a2983\\-000000[\\/\\\\]+EMy7PskJ09aaXb4kqny6IXxkcrg\\=394(?:\\?|$)" + }, + { + "hash": "ac6b9d6c253aaac2956a59c674a4438b357225697067632bc0b7aded6df5eb65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9961[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e6008\\-d4bb0dfb\\-530a\\-47db\\-9a72\\-d96dca748231\\-000000[\\/\\\\]+_xI4XZCHXQbZKdNfict4dM7wmeU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bf311\\-7cf8b2c7\\-0e68\\-4069\\-8ac7\\-dd8dfddfe357\\-000000[\\/\\\\]+4FI6eNxoo7TRfDKEo52w0PljEu0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e28ff\\-0d8d9d5e\\-724b\\-465c\\-85f8\\-e9c150acd30f\\-000000[\\/\\\\]+_rqk3DddHXVWmh7\\-DuxhIj1pYpA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566a68d\\-89aa7802\\-5036\\-4a0a\\-b804\\-73ac6c5d5c96\\-000000[\\/\\\\]+3RRfGXa8FstNw7IKjq7Cqp1Bb_Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bb399\\-838c5e90\\-7111\\-49a2\\-b9d4\\-2621fc4c034b\\-000000[\\/\\\\]+eRTjot5cqva8Q3UD_obyx6gSWCs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ef7d5\\-3a08e67a\\-fd21\\-4822\\-a8de\\-68dd12dfd45b\\-000000[\\/\\\\]+LcVSNe1\\-UW7n3AtsTcbf8vCHt4g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456b00ec\\-cb27668d\\-fe90\\-472b\\-bc8b\\-a3601336965c\\-000000[\\/\\\\]+4mrCacRhNyE9QWjv1gYFrhtJ0wc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b21183\\-b2619d35\\-99b8\\-4b7e\\-83c6\\-9467c289e14f\\-000000[\\/\\\\]+PVSaKbO1gf4siFVqJWT\\-t73ZSLA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245915c2c\\-306ccb7e\\-5494\\-4c3a\\-af8b\\-2fc99e493fc2\\-000000[\\/\\\\]+gM7\\-kFpcDu83wd36JeRVrmhxSrw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1fac6\\-84b9a8da\\-aa36\\-4117\\-a677\\-05c59a50cd2c\\-000000[\\/\\\\]+sgABbwCz7tL59bUuEydUaKIMO4Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1e3f3\\-82cd6fdf\\-b2e4\\-45be\\-b3d5\\-432157b3c4d2\\-000000[\\/\\\\]+P_a6K4Rx6OHip8H1Nx0VyfKxYl0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584ed4a\\-b450e5f0\\-fefb\\-4d18\\-8301\\-df005df22f63\\-000000[\\/\\\\]+nEsSUx2BT8v7Lfv1X56AOLevnOM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457b5ff6\\-400587c7\\-87e4\\-4bf1\\-8eef\\-9e8ba40d85a1\\-000000[\\/\\\\]+OfMRhymNL6oxdbtVVzmNn9RJBFw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cfee75\\-4ceb72cd\\-1165\\-47de\\-a2e6\\-e97b53adef4d\\-000000[\\/\\\\]+X68bDN_B_7ZkW8Fe6anceZ0PHjE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c5b25\\-55d1083a\\-f0d0\\-4ed7\\-983c\\-5627cde04bc3\\-000000[\\/\\\\]+2qnhO4yMC9JktNd4TeEV5hCA4Fo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b85360\\-0e26aea7\\-287d\\-43c1\\-b283\\-85f4f91b4f60\\-000000[\\/\\\\]+xo8U4i_hBxoQ51DLO6VxLC1xfjk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b93aa7\\-4e234598\\-f4fc\\-4803\\-b76e\\-96261cebf3b8\\-000000[\\/\\\\]+7J4pujhE85TG006pQuX_qdU20CU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459fcb79\\-533eb183\\-f4cc\\-4f33\\-9578\\-952fd2013b30\\-000000[\\/\\\\]+Yfaof\\-KD6jUgI4dx4o2GoE4vdc4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c89e20\\-7ebfb8ae\\-dbb6\\-4c06\\-bc46\\-fb96718eb536\\-000000[\\/\\\\]+2kvBHHgvXPl5aPoQe76U9SSF5Kk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aee25c\\-00dd1f56\\-2cbf\\-46b3\\-a279\\-fe13281d2103\\-000000[\\/\\\\]+9GsVPtSOurBNNRMF3ZhU9_KT3_A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245793c57\\-860b6d24\\-e586\\-4c42\\-b125\\-d73a61fb386c\\-000000[\\/\\\\]+MDgOVKTVju7zJMBbxAipMP7jJt0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579330b\\-f17bed81\\-2876\\-4ef9\\-98a8\\-41e7373249ac\\-000000[\\/\\\\]+COWdfV9w_Ulqy\\-tK3fgBcopSI8g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b85ac2\\-ee87011c\\-2129\\-4ab2\\-8e6d\\-a1c5773a96e2\\-000000[\\/\\\\]+6izwCxAowUgD2s1FJHcrixDklYA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bdaac9\\-ed04bcdf\\-08af\\-49d9\\-9760\\-efaf83b87f0c\\-000000[\\/\\\\]+KRh7Kddyjcx\\-o275EWh8E_JXczY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d924b\\-6aa6932b\\-713c\\-413b\\-af93\\-58f5f210747e\\-000000[\\/\\\\]+v8\\-Tj70bge2cc6Z1HZ4QlCVK6BY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456cd8c9\\-1d0b5ba9\\-e229\\-4eb8\\-8c62\\-c936ea306726\\-000000[\\/\\\\]+m_c4csfpFDkp0fPKef\\-gcyNBQa8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a541fb\\-65ec4114\\-66da\\-44e4\\-a968\\-b14bef0418f3\\-000000[\\/\\\\]+P1_v9Pl1dRQhpPejae_Ef0R6Ky4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac5471\\-c2f7e554\\-6ca3\\-43fe\\-a17e\\-e9794f00c177\\-000000[\\/\\\\]+wGQjNiXS6IOeBjhS2WVlULpJGWM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a011d9\\-9853e540\\-fbfa\\-448c\\-a518\\-6754c5b32247\\-000000[\\/\\\\]+EMAkufk5IAUbrLOl90P3rJUTQYM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bca6f\\-42f971d9\\-8b0f\\-4e9d\\-b549\\-ae0be02d6752\\-000000[\\/\\\\]+YPD2XTKmydz2JGmnS1wwotqSbQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9f3f5\\-191f9b50\\-4375\\-4a72\\-990a\\-2683ccaee8dd\\-000000[\\/\\\\]+agFfkhBcXseA5_8cy2CpkARh61Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b4aeb\\-9c8052f9\\-35a1\\-4a33\\-ae86\\-11101229c183\\-000000[\\/\\\\]+\\-pyTXKvPvRNnoAJYTMbl5ASir4k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b46b67\\-6d118d29\\-3f09\\-4d2c\\-9d1d\\-9ee81f152b8c\\-000000[\\/\\\\]+j8JdMKyxx1WczPR3daR4JwAsTU8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f6001\\-28e87cb8\\-c1b7\\-47d0\\-8516\\-0265e55082ef\\-000000[\\/\\\\]+Z5wD_aykc9XeI\\-5zOiZzq1GRJvA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb22b5\\-edb5912c\\-7978\\-4401\\-81d7\\-4abb8e5dda5b\\-000000[\\/\\\\]+5PFfQxW_eSAwcEklVhtgJwj69NU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be8bc2\\-0e53aefe\\-05f6\\-43ed\\-a59b\\-8f0985c4d7e2\\-000000[\\/\\\\]+tb8UDtj5BVIqptlml6cMi0E7e5Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca28e4\\-8113f06e\\-19a9\\-4d6f\\-a812\\-171355f18d4d\\-000000[\\/\\\\]+rmii2ux7_MdxshXnIRmebRTJ6Sc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c66bca\\-a1d5c933\\-28e9\\-43ad\\-9870\\-a895adcffd80\\-000000[\\/\\\\]+421pZpKVJ96bb4fLO_sw6Dwb0o0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a2d334\\-f435f711\\-db8c\\-475a\\-92b2\\-7285f1944868\\-000000[\\/\\\\]+acP\\-qKzD2PbnHqHWny7CjW_Jtsc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b69f05\\-cc4395ba\\-5845\\-4d68\\-9047\\-4a4281dcf1bd\\-000000[\\/\\\\]+qiGq3mS2WlHVMOnNutXFCEIIams\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e98be\\-bdd10cb1\\-9b09\\-454f\\-8bde\\-ed2608ec25de\\-000000[\\/\\\\]+zTtTzaALNm8UjH9UrvSeBwP7sK8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0a5f2\\-ce154cae\\-35aa\\-49e1\\-bf08\\-ea3a8be24d63\\-000000[\\/\\\\]+m0dI9z96s\\-g4l4M0Ep0cYzfj0NM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab4a05\\-56b5ce10\\-c1ba\\-4d20\\-8543\\-ed6e9b9e6796\\-000000[\\/\\\\]+rmQfFfc9l7pUgLA1rkNfh1XA\\-xs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1da6c\\-1e9cd736\\-300c\\-4813\\-86f5\\-3ca17d442073\\-000000[\\/\\\\]+HEQBtCkP6LylT0oQO0CQvcMMbXk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a6cb53\\-95eebbed\\-87c2\\-4378\\-b1f9\\-e4bd3cb06ff1\\-000000[\\/\\\\]+pWrUDqNmw1x7wwk5\\-NX9fctpiak\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245750873\\-3bfade29\\-ff62\\-4726\\-a02f\\-36515b6970a0\\-000000[\\/\\\\]+GcdTF3NIwxcCNMKVCcSEcM1VAL0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459749d4\\-1796b9b1\\-aad6\\-4e80\\-996e\\-cb047749acb4\\-000000[\\/\\\\]+9n9L1DRzAi\\-EhJyaFSAVjPUyFlc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dc880\\-8d1292bf\\-1e30\\-43a7\\-a850\\-7213cc0b81b8\\-000000[\\/\\\\]+tu40Nob\\-mdtyOMV7l\\-foonyxBhc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245958f25\\-caaf4fcc\\-d26c\\-41fb\\-93b1\\-417136f632d8\\-000000[\\/\\\\]+wWw0djHijmLQa08ikzV5NjVwEzc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac0961\\-f54c3a73\\-3e75\\-479b\\-9f59\\-dfaf2a5e13c2\\-000000[\\/\\\\]+V9PW6QkCpurEE5ZqSwEsopnXemM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c7f06\\-d2f4cf9d\\-8f8c\\-45eb\\-8e1b\\-d5f5a5223cc6\\-000000[\\/\\\\]+sWKKhvK5J9OyTqjFw7rdHxR_j18\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597ef9d\\-d6fe3d05\\-7fbd\\-4d6c\\-9a1e\\-577ee5e20838\\-000000[\\/\\\\]+vFldFFx4iVX4T9RhIwzZ1AfS3pQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575938a\\-a4c36473\\-8312\\-4489\\-86ee\\-d31f41c0a06b\\-000000[\\/\\\\]+SYxZdGP_vRa\\-EViQiMgBHGidpM4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245911cd9\\-f1835de8\\-1103\\-4459\\-833f\\-e01d949e8479\\-000000[\\/\\\\]+0xWKX8W4EgB2Bg83TmX4YHANtiM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b0680f\\-ba9e7ced\\-8723\\-428e\\-8d8b\\-d2a77b59a642\\-000000[\\/\\\\]+f4fFRj8zKPbZ2rsOUCj0\\-VVnBWU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb005b\\-a88ce3ba\\-97e3\\-441e\\-9cdb\\-d7e9fca7c52d\\-000000[\\/\\\\]+ZpUAIL6IOpUCGE0bVq0\\-fE6wcnM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b793ad\\-53fd4959\\-f011\\-4901\\-8c8b\\-07b8ea09220a\\-000000[\\/\\\\]+J7Ygv2Dn1qv4BLf3IqfDCPkTvak\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577b0cf\\-a5d0c56b\\-2566\\-4242\\-ab21\\-6dd9cf6e6328\\-000000[\\/\\\\]+QM_1MjNQCX1spYD6kRXZ4lKe0tE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456adc0c\\-1c8f6202\\-3aa9\\-4cd3\\-bb01\\-540cf4820e6a\\-000000[\\/\\\\]+P_pqof5FSyNUjFI8hZ8Wp7X8wos\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a350b\\-9280f12f\\-40a1\\-45ba\\-9713\\-e07d2c3dc7ae\\-000000[\\/\\\\]+1ilmazKjqvijQnva7qtoBjRUNj4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb005b\\-a88ce3ba\\-97e3\\-441e\\-9cdb\\-d7e9fca7c52d\\-000000[\\/\\\\]+KWZxg5dIY05gIziOK3oEI8fgmEE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245668f72\\-d3b00706\\-41f5\\-432f\\-835b\\-714fb6542163\\-000000[\\/\\\\]+LycXIR9l5\\-gEnBaaUJRQ6gTspJs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245759584\\-06b6c653\\-a431\\-40aa\\-8368\\-d3e5495dad15\\-000000[\\/\\\\]+V800UTKzQW8erK9HlnppApFKt4s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e98be\\-bdd10cb1\\-9b09\\-454f\\-8bde\\-ed2608ec25de\\-000000[\\/\\\\]+88CHZpZLfMGyO0ULMVF8qdRQ5Zg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bad82f\\-b29ce587\\-984b\\-463d\\-b5b7\\-cb80e257d428\\-000000[\\/\\\\]+\\-DXCfIiUbgjSLe6X0aLBgc9bq9s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c32492\\-538546c0\\-1142\\-4c11\\-9520\\-fb40260162ed\\-000000[\\/\\\\]+zM0QZOZ3c53nYOq6kXQYGiIVmhw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb3fef\\-bae48613\\-91a8\\-4350\\-868d\\-3910403bc98a\\-000000[\\/\\\\]+rIhETkD97bRFfymttF2jcTRyfe4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583cb33\\-92e6237b\\-1866\\-4bdf\\-ac07\\-a7447c701e1c\\-000000[\\/\\\\]+TUCoBpvKuFPB5Q8PXUoJwFsUKhw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b38a2\\-f2c6d14a\\-a2b5\\-4c8f\\-abc4\\-3d561dc66221\\-000000[\\/\\\\]+klVqV7ijt6EpDRsSllboeJLsX5U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589a2e6\\-6510ecf9\\-2742\\-4f6a\\-a806\\-9410944a9b03\\-000000[\\/\\\\]+6Qgu6Ia874if9uUADY8p7A0kTTg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458d0423\\-b0e2ba4d\\-41f1\\-4a32\\-b34c\\-68350af3ccf4\\-000000[\\/\\\\]+xnRdWev1A8bH9NsyN\\-hliEoY7Ek\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ceb5f\\-a5948bd1\\-80eb\\-4fe5\\-afb7\\-1aeb8fe19994\\-000000[\\/\\\\]+FSnuFUWogKKl3sji_zGeYMBkHFE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b03ab0\\-dd01f63b\\-0ee8\\-490a\\-a9c5\\-0dd836344038\\-000000[\\/\\\\]+qS6SpI60yLx9jI7qfD6aij4bNoE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b47148\\-c9173bb9\\-f6cd\\-4efe\\-b8e3\\-34c7288a7b3c\\-000000[\\/\\\\]+om0EXQAgUy59OFxkDjOaNlCkPPY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583dd9e\\-f2a3d79b\\-3781\\-4723\\-b649\\-613d4119089a\\-000000[\\/\\\\]+kL45oqCAgXt6Kllahy\\-lDbJzHMg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457386c6\\-7a618e7b\\-35d6\\-44d4\\-850f\\-1b599ed0b2fe\\-000000[\\/\\\\]+pSMT7_WNYGjAMvhbBrz8vgKdu9E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245736668\\-84cce638\\-f139\\-4efc\\-b395\\-5b728d5927ec\\-000000[\\/\\\\]+zt0RYIf2RfSCpbFKLjOU0yY\\-mLU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb342e\\-b0d6ce98\\-16d7\\-4d2a\\-baf3\\-fe54d0ef1306\\-000000[\\/\\\\]+TJbSpxKwTsmDRoz1\\-3fEI7qaRrQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d0ad41\\-0945cb36\\-abce\\-4097\\-95d8\\-f59c44db3112\\-000000[\\/\\\\]+HVfGV2SqFtdUliczPM7UDZZqRpI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459988c2\\-fdab95df\\-9c02\\-4641\\-bac1\\-8535378a2983\\-000000[\\/\\\\]+dyspf2ugB\\-pcECul5AD3n\\-oHrXw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575cb6b\\-a71f7305\\-486d\\-4469\\-bb16\\-637bb5032ac6\\-000000[\\/\\\\]+hSeQwS6k9rNy5di988NLscZj3ME\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae4115\\-a781fb9c\\-384f\\-45f1\\-97af\\-40456fe733ba\\-000000[\\/\\\\]+SjMbEKL7GyyjFHTFJ29zdGZv97I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3f240\\-5364f556\\-ff8e\\-4fed\\-9c68\\-f11362ee2b5f\\-000000[\\/\\\\]+6TpCzwLcESNVrKb9tpLk2ZfGig4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8ce61\\-c59953f9\\-05c4\\-4b34\\-ae26\\-97cf5505b502\\-000000[\\/\\\\]+T7TYCAZ9c_vu6_WvPp8kpXNbnac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245916f7c\\-cdb2cbc4\\-9a35\\-4762\\-bd04\\-13713b33f732\\-000000[\\/\\\\]+Mf3lgI1X9QZvJFEEGgaV8TsF3G8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459e84c6\\-dcb78db8\\-540e\\-4062\\-bbf0\\-1381ade35b0d\\-000000[\\/\\\\]+Yvv2q8w1S8jGscnE3GyXvwNLKQQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245698ead\\-a68743c0\\-c9d5\\-4039\\-9a80\\-12844f5f2eae\\-000000[\\/\\\\]+XM_vsi9JiPQK_nqp1E2stdm8Utc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924581a726\\-197af8a2\\-97c4\\-4d25\\-8e65\\-930705edcd46\\-000000[\\/\\\\]+PAu\\-UyKg0529Zmp1Xt9Sqe9lLLQ\\=394(?:\\?|$)" + }, + { + "hash": "ec9fb9bcd0ef1103cc8e02fb4cf4398f73a97d47b064ca99868496273e789274", + "regex": "(?i)^https?\\:\\/\\/tan271361\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456147f8\\-fac9b729\\-89fb\\-49df\\-8dfd\\-61b24154230a\\-000000[\\/\\\\]+inY0MdkuYDvXIaHa2jf2CHPapLc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae4334\\-67595fa9\\-cd08\\-4314\\-9693\\-a0aba944ba88\\-000000[\\/\\\\]+udZ1iw9WvGo_Pf4lkLy3Eii2G0A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456edcd0\\-00d4693d\\-d1f6\\-412a\\-99d9\\-3bddd09011fe\\-000000[\\/\\\\]+ExFpmo5e7qoH_EgpCt5oDBf\\-fQw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c92190\\-93a09204\\-301e\\-4a45\\-94b2\\-6efeaa9341c9\\-000000[\\/\\\\]+Jiv\\-nPU_jgja2vJU3jMjC6apzNk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be64e5\\-839886ba\\-1dc8\\-48af\\-b651\\-03b72f4446a8\\-000000[\\/\\\\]+Xw8HeAgGWNGv2xA0WB\\-\\-34tOGZk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c31f99\\-01185985\\-92f2\\-4322\\-b55d\\-d05cd7b26d2c\\-000000[\\/\\\\]+qF0iq8IoeFX\\-ljWhmxI3s57kLcA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924581a726\\-197af8a2\\-97c4\\-4d25\\-8e65\\-930705edcd46\\-000000[\\/\\\\]+01dGa9evojT_ccvH4EOMtddJDX4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245905aa2\\-acfa1173\\-3213\\-4d19\\-b99d\\-e1d906e3674b\\-000000[\\/\\\\]+f\\-y6zxYKcInzKtPo1qyXTd3ZF8Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577b0cf\\-a5d0c56b\\-2566\\-4242\\-ab21\\-6dd9cf6e6328\\-000000[\\/\\\\]+haMbc1ykCIrsln8Tlw4Ai4Lm2mo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573e676\\-64bf6645\\-8d38\\-4429\\-bf69\\-0748e79c5a3c\\-000000[\\/\\\\]+1NIJM6ACLsflKrU7av0C1HSOgP4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c6dfe\\-5a6f83cf\\-f64a\\-413e\\-b2c6\\-9ed056b5fbc7\\-000000[\\/\\\\]+LkBiCKAJ9xT9ur6T_xp9HGowkEE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3df6c\\-1ea470c7\\-3879\\-4ede\\-897d\\-904022c683b3\\-000000[\\/\\\\]+_FWXTpd4cW9qKJgMFOvXOQJnI9Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245caf4f4\\-9dc25dc3\\-660c\\-4330\\-8707\\-b190a6cb71f1\\-000000[\\/\\\\]+m3dD26qEt7j3Pfl9CyUfggG\\-mKI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b906e\\-0393ce3b\\-b834\\-4bca\\-8c12\\-ca6716a57b23\\-000000[\\/\\\\]+nZAa0Y3\\-_p99\\-jpvhnyxAMQtmug\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa87ed\\-cd472fa7\\-33d6\\-4a4e\\-b4cb\\-a1cc3cd170a5\\-000000[\\/\\\\]+6VZZmIYVnCWwkppZEbCi5nzep8I\\=394(?:\\?|$)" + }, + { + "hash": "74cff33984a63a520abe6324c9305e3a4de58ced5738c29f1ed50e202e97e556", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a70b40\\-687718a2\\-288a\\-4d23\\-a92b\\-e65ac7ffb16a\\-000000[\\/\\\\]+WXBNn7gtDJOjhZxrbAQnhcu\\-C4Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cb7bc\\-05b7ee6e\\-b8ef\\-4dd5\\-b253\\-9152423299d1\\-000000[\\/\\\\]+L3_hanYXJunSMKG6CiF69bEMwP4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cbbb5e\\-9a19232b\\-4f08\\-4f7f\\-9c79\\-14392c09b32c\\-000000[\\/\\\\]+11yju3aTJ_pvUUAQMe5lS8PK8xI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb5da5\\-2634f1ef\\-3dad\\-4e1d\\-8c56\\-41f2a0d94e5d\\-000000[\\/\\\\]+k9gS82QIWQ5nOAHjU95UmnBA5AM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457285b7\\-fd390d8d\\-0581\\-4448\\-9168\\-3ffa96f0dcc4\\-000000[\\/\\\\]+hX3J7sj8eQ1YjYPsdBg525jmNho\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456968ad\\-579da04d\\-7014\\-4550\\-9235\\-3e8c70fbffa8\\-000000[\\/\\\\]+9QBA_GS2tsoLMtmGHnw\\-vimoP0k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b0fe2\\-e475559e\\-08aa\\-493d\\-8266\\-524fb26ad42b\\-000000[\\/\\\\]+NYtq4EzbVNE9paSJlUmBdBTafi4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b06541\\-5f81b0ce\\-73aa\\-4947\\-afb9\\-ddc582d9c9a8\\-000000[\\/\\\\]+hTs9dUfwPjdT1drfrCl_OlYdKlA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a98f5\\-9ccba383\\-2d07\\-4a6a\\-89f3\\-29723e1d31b4\\-000000[\\/\\\\]+fG7sLLfL0Q7KCzjG9jW0xpsdCT8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c708e\\-319888ca\\-d5e8\\-48dd\\-81cc\\-b52af55efaa5\\-000000[\\/\\\\]+mmSUJgRD7aoC_7l1iKQNLXHcetg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b88262\\-149b7fc4\\-3b50\\-4196\\-b94c\\-6f645178c459\\-000000[\\/\\\\]+q6dTooJHpF_YgrEdAObQo\\-77n_s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bcd068\\-763afe9c\\-0709\\-4a0a\\-9c6d\\-9d2eb65ef227\\-000000[\\/\\\\]+DDexVBfWkSljpQTKjtxfnTNaGdU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589a2e6\\-6510ecf9\\-2742\\-4f6a\\-a806\\-9410944a9b03\\-000000[\\/\\\\]+sihOABAcJX1gdo5gYutwh_zsQFo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af2a5f\\-5913c326\\-4173\\-4623\\-8b8e\\-017b6b345f24\\-000000[\\/\\\\]+Va8TwAhGVWa0PqZxquvBDOtQo2w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8606f\\-7222b749\\-0822\\-438b\\-b003\\-b6ad90e09ea7\\-000000[\\/\\\\]+oeSZPTUE0pJ5MfU7d9kUjNZL5xE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf3194\\-973efffd\\-351f\\-4b02\\-9568\\-addf4a5b9cf1\\-000000[\\/\\\\]+\\-hvGm5p7P00DLc9bCIwPAxkzT8g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245645277\\-3a6ba2f0\\-072c\\-4ef8\\-8de1\\-1f6d1c442434\\-000000[\\/\\\\]+BBDtLhFN8LNSPwNfYOXzXtM4x2c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457369db\\-65e11e6c\\-83b9\\-4456\\-84ef\\-64c0dda12c1d\\-000000[\\/\\\\]+FFYhICxYHIzMruFDmO53sbKS0Mo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5a525\\-32b29bfd\\-95b9\\-489c\\-b165\\-7f67ed2f53da\\-000000[\\/\\\\]+c9YSAbzd_4VTS7M1UVTFZ4N0CAI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e8edf\\-3a2b80f1\\-f63b\\-4338\\-a4b7\\-67227d87ad0d\\-000000[\\/\\\\]+\\-PSxCsBcZEovvXQSQr_4MQyfzL0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245981496\\-b5f16035\\-bba5\\-4ce2\\-8b3b\\-2999da9786f9\\-000000[\\/\\\\]+UVuNyKozLYl0hfCoIDt5ZxSBNOI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a01bf6\\-2fb22527\\-bf49\\-4a3c\\-a349\\-95596bd5e959\\-000000[\\/\\\\]+Vn1TW8KUgbFUXArwwUUPGbq6cMs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245913744\\-6e73bb5e\\-a1f7\\-4bea\\-95ab\\-d7ca74352abf\\-000000[\\/\\\\]+a6CGoKNCv8mv9duqngZDOgYHA4s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4d481\\-931659df\\-30d6\\-4358\\-985d\\-9e54ac8f8913\\-000000[\\/\\\\]+r_\\-8iXmBOJvawR0cRxFF3BHyXQ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d0c6b\\-1a7a51fc\\-8abe\\-40c3\\-9df6\\-fd7e4e1aef11\\-000000[\\/\\\\]+BMA0L2NSdsGgVVLQvQl_VeLsWw0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459827c1\\-d321e6c5\\-f48d\\-4c4f\\-aa21\\-ff701d155332\\-000000[\\/\\\\]+F\\-MA39IdiOZDGGKPCh0ryKZPiho\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dae50\\-2355c8b2\\-dad8\\-4203\\-b298\\-4977daf85a41\\-000000[\\/\\\\]+HDmNRezYjtF5PIgO0YnifXffbYk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bffff1\\-9f3bd9d0\\-4ba2\\-4745\\-96d1\\-4344de2e6365\\-000000[\\/\\\\]+DXAAk6XgC3lCn7Ws8ZZt_zSQ5I4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e1861\\-a502e8fa\\-5c15\\-4fa5\\-b8ed\\-dacc3bad93ff\\-000000[\\/\\\\]+4lSEi9sG_nyYeA3kIN9VTK3HBrY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3d229\\-86abffae\\-e1f6\\-4f5c\\-8873\\-5bbf75d560c3\\-000000[\\/\\\\]+\\-Qkuq8PhRHPX7ELF7QU9ueCgaFw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b548f6\\-332d1fea\\-c25b\\-46f0\\-87b7\\-1f62c100b7d0\\-000000[\\/\\\\]+2enGN5vQAPhGmbPLlSdCZ1zdxUg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1961c\\-8dad5a62\\-8786\\-4f24\\-9640\\-7a9a44bf5570\\-000000[\\/\\\\]+OSdFZsMcVOsqZ8d35Ns_QnX4nvk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f26db\\-897dcbd9\\-2ad0\\-47d5\\-8ddc\\-e14c4c536522\\-000000[\\/\\\\]+T25LNrb2z7NWkBXMpGohvhuruKw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245baf6d8\\-ff76f096\\-d47b\\-44d2\\-8717\\-935c6d3fe3d6\\-000000[\\/\\\\]+RD5CA9w_aiiOEWsYtJm28zL5qSA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf1a18\\-f0b09352\\-aaf8\\-49f6\\-b998\\-3c3798ae77c9\\-000000[\\/\\\\]+3XXBc1\\-QUVvdatbGKUZEio_nBv8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f234b\\-d13e9307\\-e69d\\-4324\\-98b0\\-bdaa9f6b897a\\-000000[\\/\\\\]+xgyXSzbxXonYpZiKjmJIrW5bkjo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc6ff2\\-1cd1fc0a\\-daa5\\-4433\\-b420\\-6f1e75d3c996\\-000000[\\/\\\\]+kFksDMi9nwa6\\-BG4JlC0oNFPKN0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5b693\\-f7c1c245\\-8bc9\\-4085\\-a695\\-63d86d7409f3\\-000000[\\/\\\\]+6mE3ozn5VtMc3jLxdLj7To0bUgg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f244d\\-8d32a206\\-eae5\\-487d\\-a738\\-8c27df932067\\-000000[\\/\\\\]+t3drORjYrOjLx7aIozlMANboUq4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582bc18\\-605f2f32\\-5204\\-4997\\-8640\\-66c5b36f7574\\-000000[\\/\\\\]+ALIpeOJOxBNy5EkT04FQ1wJOQxA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3ed54\\-dd72574a\\-7698\\-4a8c\\-be9f\\-8caf906f68a5\\-000000[\\/\\\\]+z0hx_kkFb_Xf0_oKeqBI8yH15nI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bffb90\\-cc88b0f0\\-dea3\\-4017\\-8673\\-88bf6aadbcfa\\-000000[\\/\\\\]+AMpAhqGxriteBgItUUhBYaNOwpA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924591afdb\\-c760dc6b\\-b74e\\-48c2\\-b607\\-ae467ad3dd47\\-000000[\\/\\\\]+ckcM9phfSGlZRuazdt0uLme1o7U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5ae61\\-834f7235\\-5c3e\\-4f75\\-a81f\\-0aec126a4685\\-000000[\\/\\\\]+\\-MDSvowhDOoVcB4c3dgY6nbjSsM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf6ce2\\-c338b15b\\-4651\\-4a05\\-9b40\\-1da52c243a26\\-000000[\\/\\\\]+8c8EcuHb2jqv1WIyLrddoLDfnho\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b0680f\\-ba9e7ced\\-8723\\-428e\\-8d8b\\-d2a77b59a642\\-000000[\\/\\\\]+qiFwGS9GU_\\-T9r5ksqW_zXI9rHs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245adfd4e\\-133dce36\\-15a7\\-407a\\-8c9d\\-669e8cb444c7\\-000000[\\/\\\\]+NXLU77twosxS54ZSRAKbj5c0X3g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bca9d6\\-454e9310\\-ef7c\\-4d14\\-9c24\\-c97c0daaf4ce\\-000000[\\/\\\\]+MAxCLhwZjnAppoQl3HzZ91Z866k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458deec6\\-7447df8e\\-928c\\-4b64\\-b4ff\\-d2ae0d2c1b04\\-000000[\\/\\\\]+fJScirSRrx8eTPhiHMXkFZO7HpE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ed614\\-cd95aa61\\-6f5b\\-437d\\-9baf\\-a921162e4bc7\\-000000[\\/\\\\]+ccIb2XONDuxEzfyewhzKZG4pnyU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a17f3\\-b5efec8d\\-93cc\\-48ff\\-acd3\\-6656b75d46da\\-000000[\\/\\\\]+uX9Cc3MikLerzY5Za6CWHkEo1n0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6bdaa\\-5e36ac64\\-7682\\-430f\\-9858\\-bb19fae77482\\-000000[\\/\\\\]+WTxl8XPW66KeL7YIznr0by5bmrI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924567122f\\-c894187c\\-117b\\-4bd6\\-9b4c\\-af4c960d7ac2\\-000000[\\/\\\\]+NoTmi2me9ZRGVX\\-WHldKeMHr9Js\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac9980\\-c72b8634\\-5de9\\-4bb6\\-a96f\\-9afd0964cee8\\-000000[\\/\\\\]+GC9mlL9Gn43S0FHs1piYUbubOkk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce2870\\-0cd85352\\-c455\\-4d55\\-8e67\\-68a1cb443293\\-000000[\\/\\\\]+DcC3\\-GVx0nF5NqJuNMa38Km7b94\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c862dd\\-23a49d6a\\-632e\\-4162\\-bfd1\\-2a951717fa0a\\-000000[\\/\\\\]+J\\-ZSm1eGBhhToJsYiQtxG3IYFCA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5633d\\-8c70b1c5\\-2325\\-46de\\-b0b2\\-6e88a5561a06\\-000000[\\/\\\\]+nb0dargbdhJgIb3ixjLqysuEJa4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c38b01\\-619f1ec3\\-5553\\-4b71\\-ae82\\-c2c73c962d52\\-000000[\\/\\\\]+GvNjoRY4OibEnuIrf3yAMrAFx1Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e23d3\\-ef3ead81\\-ca1b\\-47cd\\-aaf3\\-1f8ee2eefa0a\\-000000[\\/\\\\]+yk0nEID9VGkaRvIhqMGuStDCz4U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6f251\\-e15558a9\\-e8da\\-4ff0\\-ae8a\\-5401299d76cf\\-000000[\\/\\\\]+JYjZyTFhkIZWIHQitrg\\-J5Cxnd8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a813d9\\-d3b6b8a1\\-3b02\\-46f2\\-8591\\-a3255978a97b\\-000000[\\/\\\\]+FQNwv6vYAMIZA_GlDTYe6jP\\-OQU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245876dd7\\-11576043\\-c58d\\-4d69\\-9756\\-cd1c640a0911\\-000000[\\/\\\\]+KiqxTK0rizv2TG9sAKKPAi7egKo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245835a01\\-c3f80c4e\\-68f4\\-427e\\-b42d\\-a825161ddea4\\-000000[\\/\\\\]+UTBLPOSUQDtrIdwSwlCk3vXq60Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6526b\\-acc4f4aa\\-39e2\\-4192\\-93f0\\-fd8e18a1f84c\\-000000[\\/\\\\]+XUHst9EDEBAw5lDYTNIb\\-ziZ0uY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd6fa2\\-6c1cab8e\\-76e0\\-4498\\-b159\\-4b5a158f2d57\\-000000[\\/\\\\]+DKjpV2FAU5kKO9fyk9joBJol9eM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582a73d\\-90074ec0\\-9a24\\-4755\\-a4d0\\-43b4b829d910\\-000000[\\/\\\\]+kv_K_3tVO1Kme4CJmuI3HXJ6HS8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455dc108\\-9b61dcab\\-b0b8\\-4108\\-9cb8\\-2fcbaceb1fd2\\-000000[\\/\\\\]+2_gTkWrtfzJRI1sjzhiCUncNos0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a54ffe\\-6446976d\\-f798\\-4ea5\\-9d5a\\-0ab038c4a8fc\\-000000[\\/\\\\]+PTbYRN2g_hLyJP4334rBYV5mGUA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f4a70\\-00e6c5d0\\-463d\\-4515\\-a3fd\\-32ff785c2ba3\\-000000[\\/\\\\]+YxuCXBod6YKKNVbqIFovjUBJ4WE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ed75f\\-6a109979\\-ca7a\\-4cf5\\-a05d\\-49a32c010e3b\\-000000[\\/\\\\]+QXiaeTCLVSRabbgrC3y4FjVy4DM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a06cb8\\-795b00d4\\-e225\\-4038\\-911e\\-36e6a755cb26\\-000000[\\/\\\\]+mzilBbszl5dOZAUj_Wa0k_l3HGw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac9980\\-c72b8634\\-5de9\\-4bb6\\-a96f\\-9afd0964cee8\\-000000[\\/\\\\]+3mzdtoaB096eF27iYnSLTFcfGiI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457447a8\\-85dd5ea0\\-3569\\-482d\\-bace\\-97787d77e7c4\\-000000[\\/\\\\]+6wGCfjslzKNiuGwgBZmRbVGafuU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5b61e\\-3d8d0189\\-f136\\-4034\\-a6e4\\-622614376a26\\-000000[\\/\\\\]+aBbUucBJgzvvEzb252mQF0XdHoo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ae591\\-06246334\\-52c7\\-4b87\\-b280\\-201755c68338\\-000000[\\/\\\\]+cTQUcRkUhfjWPFLMdrcxwDVU_so\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245637b4b\\-1e2abafa\\-f3ba\\-4a82\\-9ef6\\-0b37f9608269\\-000000[\\/\\\\]+TuSAuSpbi9zryO73dUm1EAnBN90\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245989822\\-8dc54161\\-76a7\\-4fcb\\-b266\\-04e31bc23e12\\-000000[\\/\\\\]+ftjMGz6gIt_xkuDSLTQgnVR8IWM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579ec00\\-87fd7e65\\-9e4c\\-49a8\\-a120\\-4c7d8103dc8d\\-000000[\\/\\\\]+oYCo8mYI8MHKTnS2BxpY4cujSXo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924561c6d0\\-64dfea5a\\-25db\\-450d\\-a9b1\\-429931253d12\\-000000[\\/\\\\]+5CCCHxmeJZ95CG1XpHcAXLNVL7w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572ba27\\-e7268d5c\\-a017\\-4fb8\\-ad24\\-d4048fb49976\\-000000[\\/\\\\]+5jJlNZQbVuBFZyDi_5dThmlIBeU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a15468\\-c3e72207\\-89f2\\-440c\\-80fa\\-b388871d81cd\\-000000[\\/\\\\]+ppvvgascSMEYHIu4BwLSs28u5zQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f8d8f\\-428ad98f\\-6d9c\\-4468\\-8016\\-d31f2e4cafef\\-000000[\\/\\\\]+W0VsICZShVMi7DqdKfyRiMspuiM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584e58e\\-839f5d1f\\-97b7\\-4031\\-89de\\-1fb66c9f9cf4\\-000000[\\/\\\\]+cEMq2zaGl47ZAWZnHbAyNXOJdhU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfa634\\-800b3141\\-b8cb\\-4180\\-b4be\\-e15d5ed8b253\\-000000[\\/\\\\]+uEgEsPMF\\-9iPyCJmY_\\-pk3lu\\-6k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e7adf\\-ffe9b18f\\-611c\\-48cc\\-a753\\-e1c29b74e3c8\\-000000[\\/\\\\]+1bkyNazV2RCz7_p9wME3GMV1R9c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1e47a\\-1116a1b2\\-ea24\\-4fb9\\-a903\\-2e21fb6e5216\\-000000[\\/\\\\]+vwyB9ZR3Oxn9j6cWt5QQBp1nW6o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bcd285\\-3a6b4c9c\\-e7aa\\-4824\\-9a92\\-7412a1a15e67\\-000000[\\/\\\\]+9zutX4Tj24YL7_zpgktpvzje_40\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ef345\\-753a4216\\-790f\\-4c53\\-9c20\\-ad4650b0a65b\\-000000[\\/\\\\]+59gCXTKcY761tdOLOIblL\\-2\\-1Ms\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a274ae\\-97cfcd4a\\-aaa2\\-47fe\\-bca4\\-2e0ffa2f30cd\\-000000[\\/\\\\]+SBoyBtrQuQldAxnuqA_h1JB9hwU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594decb\\-76631d7f\\-dc63\\-44a2\\-9b6a\\-ba83ddf53ee5\\-000000[\\/\\\\]+zQOqsYAg8WiltCuYdIvwK\\-IJ2HA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a43b8b\\-1d27fb08\\-f0c9\\-4d9f\\-8629\\-926b610da21d\\-000000[\\/\\\\]+tXizOdWDJtL9ZKaUq\\-oyJMcZZ\\-0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572fa60\\-d4a825dc\\-da3f\\-412b\\-9011\\-6e68e096e25a\\-000000[\\/\\\\]+_XNxWRt0Kh4kBvffqJjnDXUANSQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5a2c1\\-2ebc4516\\-28ab\\-43f0\\-8633\\-94270ae26d4e\\-000000[\\/\\\\]+IyGEm135IrtZOrH\\-p_PBaVEjeYk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457dd31b\\-1ac24048\\-876f\\-4766\\-9dca\\-b9f2f8d3ffa4\\-000000[\\/\\\\]+d6tr7\\-QmaIrva9zzjgB3r2ucK5I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245820979\\-b180fe1d\\-9b2d\\-4caa\\-8023\\-a31e9b271a2e\\-000000[\\/\\\\]+9sTYr5aeF8sePFMx4PzuYI0eqJY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c31a1a\\-0c1624f4\\-d880\\-4018\\-aeed\\-e8402a80fe5d\\-000000[\\/\\\\]+02srLL5SbdqfzT8WG7H33uwtYzg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587f665\\-fe3009d2\\-37f9\\-46b0\\-962f\\-19c24aae45d0\\-000000[\\/\\\\]+OFav8MUdoVziYFSPgr2R4gHCC20\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245672321\\-583dc102\\-c221\\-4400\\-9b1e\\-a596b055b1c1\\-000000[\\/\\\\]+z_awc7bp_H0QUduZ_QWulJtWscU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459879c4\\-f8f1e4d8\\-edd1\\-4797\\-b265\\-2a20aef1332b\\-000000[\\/\\\\]+0N29iuHpwH8I5\\-10TlzsOQ7qQ4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924590efbd\\-f952a009\\-bf71\\-4c76\\-829c\\-cda28ae70c47\\-000000[\\/\\\\]+k14qXpfXFSIt9M9cm3YG6yA3\\-Cs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456b9056\\-803dc7d4\\-35ba\\-438a\\-8815\\-80e2ed441817\\-000000[\\/\\\\]+PNSvJC4RgjIVZhldWlVeoVDL4Y4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e2b57\\-c5b10cb6\\-c1fe\\-418c\\-8195\\-53b45fb2295a\\-000000[\\/\\\\]+VUIRY2Rzngv\\-abkw3n1ir91JN1E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565bb6c\\-c2faf193\\-c3d8\\-4e31\\-85d1\\-55bc84eeb0c8\\-000000[\\/\\\\]+YKqdHew4hS8MS37h2V4YQh\\-jtkw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924590401f\\-6c2b41a7\\-c78a\\-416b\\-beef\\-458882ad3064\\-000000[\\/\\\\]+KxZEoDR11m6K5A3TMJU\\-25iHSxY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245737070\\-25329785\\-3ab5\\-477b\\-a65c\\-879ee94e1d5c\\-000000[\\/\\\\]+Zc4qrKWFpy9xDWmxaeSxLgoVTXU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b93aa7\\-4e234598\\-f4fc\\-4803\\-b76e\\-96261cebf3b8\\-000000[\\/\\\\]+uVjanPmwn4jIRlmfHL0bmg\\-sOm8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b7b3f\\-98eb1a15\\-133d\\-4de2\\-9d81\\-a301be9af7e0\\-000000[\\/\\\\]+_WgUsl8jTKz_qG2\\-v61btBVPF2o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b2a1bd\\-9a375542\\-aded\\-4cb0\\-b08d\\-5eb4497928d0\\-000000[\\/\\\\]+xzh2xbufhkU0c2usMaBJI9z1T3Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb3ef1\\-72b06f78\\-6ca3\\-4ec9\\-9034\\-5746d7281c8c\\-000000[\\/\\\\]+T6KDXp2z8FH0aYQTmuYxFaFrit4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458215d3\\-cd933f7e\\-d719\\-4cb6\\-a13b\\-8b6acef0ecd8\\-000000[\\/\\\\]+tagjvwTbkMNDoknwvzSQQ_iNk\\-Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329009f0\\-74f0ce3f\\-d426\\-420c\\-ac76\\-40cf556f0502\\-000000[\\/\\\\]+WJgV\\-xliUpKxGDCF7YAhEv9kQIE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7fd24\\-78967d2e\\-8bc6\\-4919\\-afe1\\-6cbcd2d7dac3\\-000000[\\/\\\\]+qQu4VIJPsbnMX59r8QvtpC4bU7U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245858326\\-91cbaabf\\-a837\\-4893\\-9478\\-8e23782ff109\\-000000[\\/\\\\]+A9NoZo4NBMTZ2FE\\-XDQILLnqQ4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e08d1\\-f41f4e2f\\-2bde\\-41f2\\-aebb\\-57de04f7ba1c\\-000000[\\/\\\\]+a7ehf68hfjC2FQ6uiVL9rDXrvL0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245775545\\-18e390c1\\-7d2f\\-403d\\-bba8\\-a948bd1f8df0\\-000000[\\/\\\\]+\\-AEp5geLiHDv1ptbmOTCiRrP7Ek\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb4196\\-8a5c858e\\-a843\\-42c8\\-a492\\-0674bde2aa7e\\-000000[\\/\\\\]+7E125jt\\-_1zrxpuumYuvEkfbFds\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457eb9b2\\-2f64249a\\-6fcb\\-4427\\-a0fa\\-345dd77cd1e1\\-000000[\\/\\\\]+4kOPbqnlA2QuAxQsswn6Rl8EeYk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597675d\\-76459a4a\\-738c\\-44a0\\-8ab9\\-f6c398e94805\\-000000[\\/\\\\]+g9sP9tyeN6pmdMtdJtxhMqnqMOU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924590eaba\\-183a9c4b\\-4382\\-401d\\-ab0b\\-20ac1b6fb87a\\-000000[\\/\\\\]+MxOzyZReKGWO23VJCrGwGqESVZY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f1803\\-48076f26\\-b67b\\-48ad\\-892a\\-1dd214170ffe\\-000000[\\/\\\\]+tdwglXyQO20icuBTWKZ6ZUx4wyQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bffff1\\-9f3bd9d0\\-4ba2\\-4745\\-96d1\\-4344de2e6365\\-000000[\\/\\\\]+H0TKZHHMKNnuqEN_8680Rvukt54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca82f9\\-74fb92e6\\-31f4\\-42e6\\-afcc\\-95232dde5725\\-000000[\\/\\\\]+i7199mxxesBFk4BRpqaWjzEK1iE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458305f3\\-8ab6837a\\-bef6\\-4a41\\-ae1d\\-360133829afd\\-000000[\\/\\\\]+XOiVbX4nxMhwKWvsD_L_ZVJ6jcA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a4bd3\\-fc5c32d7\\-2722\\-4e16\\-b076\\-36c6a15911df\\-000000[\\/\\\\]+ahOyB8_ZcHqkoBfxSdcJTm7iL9k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924580c4bb\\-2f7e1f9a\\-098f\\-4592\\-8972\\-b5e7600c405d\\-000000[\\/\\\\]+qNPephAcNyoFtNjl\\-tthYHQANq0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8abdc\\-fb2ef274\\-f209\\-4215\\-b587\\-818ab04456d2\\-000000[\\/\\\\]+_Y1EOMKezHpIsdOWWvqLYAK0qZs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3a2dc\\-05d8487f\\-1ff4\\-4ff6\\-ba68\\-0dbae2278587\\-000000[\\/\\\\]+ZX4meHooKtW_0GUbhsMO\\-2q6mSg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459aee9f\\-2caf3f1f\\-39fe\\-43bc\\-84b9\\-5a2a722d3320\\-000000[\\/\\\\]+fEaT2tgA4JTmXsb3ZId3yn\\-5SXk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457545fc\\-7b33d4c5\\-dafa\\-44ea\\-82a2\\-5d389737f973\\-000000[\\/\\\\]+K\\-FwHBICyxUj_9NCGlNp2vAtSA8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab12e3\\-e271d468\\-036b\\-47db\\-b5c1\\-85122a03a196\\-000000[\\/\\\\]+eQmddBJT6dSMJpilAvtxQqE8jaw\\=394(?:\\?|$)" + }, + { + "hash": "06bacf11017ed2fc71f5e1a7be2ddde4db78fdf3fa3c3357205d0e10f9796918", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570a3f6\\-80204fe1\\-f17d\\-4f12\\-90d0\\-20de575360f1\\-000000[\\/\\\\]+iJjsLydfScwmmtBr6h59DZeDjSg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a08308\\-08385154\\-72aa\\-4dbb\\-9721\\-a95b94150377\\-000000[\\/\\\\]+RUilh3QVy9ZNbvrKEXgFgrwr598\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb0d95\\-521ad2e3\\-e1f8\\-4a5f\\-ad19\\-c5d038ce4287\\-000000[\\/\\\\]+DLb\\-ytFzEZaM3BXQrhkYLSVWzsk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9f85a\\-7c71304f\\-75ba\\-4638\\-b75c\\-52c2b6cdea5a\\-000000[\\/\\\\]+KP1NHB0M1bciE8mc3EKaKaKmlA4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c23056\\-94769a5f\\-af7b\\-47d0\\-8f0b\\-b6b1cf2d6846\\-000000[\\/\\\\]+gsfj7oHL1qSd3WwAg8ihtKE0sJ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a51a1e\\-2c41c0e4\\-0666\\-4003\\-949e\\-a719815c9192\\-000000[\\/\\\\]+2m82tbG0JZPZHTaAC\\-0Pz_7XooQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573e676\\-64bf6645\\-8d38\\-4429\\-bf69\\-0748e79c5a3c\\-000000[\\/\\\\]+ryx7GferjiVpz4grjSm5QTz4ppE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b738cf\\-d33829da\\-bac0\\-4254\\-9c89\\-2c03a0115934\\-000000[\\/\\\\]+f\\-iQc\\-2_q5RkeJMigkfPhPJuZNo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b699e7\\-4b99f026\\-3061\\-4ce1\\-ad74\\-b82407bdb607\\-000000[\\/\\\\]+9kuCjqLDOO1L06qSK5IdRrk75TQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456adc0c\\-1c8f6202\\-3aa9\\-4cd3\\-bb01\\-540cf4820e6a\\-000000[\\/\\\\]+pZ9JlUMFJD\\-myoAIURwhJ6lnnKQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac4c21\\-4cbd6ab8\\-4eb6\\-4ba5\\-8c73\\-be4b0a00ba70\\-000000[\\/\\\\]+tHCa9Wi_ZqdX1zFqkvAfOMzgPYA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245793ebd\\-c542a890\\-a8a6\\-4f1f\\-aaac\\-557da7d0a8ca\\-000000[\\/\\\\]+EQZP7TW4RC0mwDcbWdlTHAzGnsM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457142bc\\-8555070a\\-0192\\-4618\\-8a95\\-14a0a3a1792b\\-000000[\\/\\\\]+G5pKn5JYx1Pq33avi1Yhs7\\-kuqc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459fdf57\\-b80feda6\\-e244\\-40b9\\-963c\\-74644eddb2b4\\-000000[\\/\\\\]+xa0yGWx75RvqIYufUinM5YoIVag\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924588c4ac\\-46c467c6\\-091d\\-4000\\-8e49\\-eb96acc41af6\\-000000[\\/\\\\]+WvuA2dHLsUK0gAP9\\-T7fK_E0WtM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bf865\\-46dbaeee\\-705b\\-4f84\\-b705\\-2d8b504b5ee7\\-000000[\\/\\\\]+jmX8kuXpxSfUYfWLRyiwx1sTHm4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b752d6\\-f0a24bd3\\-f3f1\\-4ffa\\-a60d\\-ae0b3ed8d02b\\-000000[\\/\\\\]+o6t0XyFwi89D8lTXxs124NDhe4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458059db\\-b169b2b7\\-9bad\\-4014\\-9b0f\\-99e31b678f67\\-000000[\\/\\\\]+95t764zJ_5FGHG4AqP2lgVfle54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e3e99\\-8ba673db\\-2ded\\-43ed\\-ba05\\-1da36e065332\\-000000[\\/\\\\]+2UxSAL1Z_sXIbm0OSJ1fBVZ\\-nVA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f4b1d\\-9e6fad0c\\-746c\\-4cf6\\-94ba\\-fbc153a6574c\\-000000[\\/\\\\]+68RjgLsdEYwreIso8lJSBPj74QU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245940234\\-61605fd7\\-0752\\-4352\\-8d8b\\-fa81a62a50b9\\-000000[\\/\\\\]+mHxS\\-CsWqt7mw7UCMcNkmLUfmj4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cbd2e7\\-27112d64\\-e187\\-428a\\-9fef\\-e83b982b2928\\-000000[\\/\\\\]+QicenY4LQPpK5R7Tae0xJpSAd4g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457edc0e\\-9de7ac4d\\-c28b\\-445b\\-8104\\-8ee98e0a579e\\-000000[\\/\\\\]+f82cEKZSgwk8K17QQzIAjcOYh3Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a6b5b5\\-11a06ec0\\-8ef0\\-420c\\-a422\\-a5c5fec135eb\\-000000[\\/\\\\]+dC\\-J5DJSsjM5Z7Z0UAiAeXr8jhY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245779e26\\-3f75865a\\-3576\\-422d\\-b401\\-f70d58571825\\-000000[\\/\\\\]+i1UEJcDN1\\-p5UIvbHwDg4dn\\-g4U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f26db\\-897dcbd9\\-2ad0\\-47d5\\-8ddc\\-e14c4c536522\\-000000[\\/\\\\]+Uqi249W8YWFHa_UrnGsbqQyfKNg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c499e\\-c0f2a55d\\-7c5d\\-432f\\-b52e\\-50d59467cd9a\\-000000[\\/\\\\]+NCoO8oLalGS_cfNKyBdOxeh9i_w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1e47a\\-1116a1b2\\-ea24\\-4fb9\\-a903\\-2e21fb6e5216\\-000000[\\/\\\\]+JVlcgEknOKlL6y6Uz8WrOkZ7Vzc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca7547\\-73c1a90f\\-1071\\-4178\\-a205\\-9db2a72febfb\\-000000[\\/\\\\]+7gtORAw0G2rNsS7yOCd_TxNI6EE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4d137\\-fccbd7ec\\-d9db\\-4442\\-a5d3\\-2a2bd4c3b873\\-000000[\\/\\\\]+SMx1ftVY0gGmtAaSxJ6vFu4zgUY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d1a85\\-f9673ffd\\-cf59\\-4343\\-9be0\\-0d6d7e1f7de1\\-000000[\\/\\\\]+aJfseuA1y8SvEKzOkO_mtzRct0Q\\=394(?:\\?|$)" + }, + { + "hash": "3f7f678504d036eebababfa8bc32811befb2d0a30ce63f9f8722dd8117229c8c", + "regex": "(?i)^https?\\:\\/\\/pub\\-16b0bfaaf964431ca6ce13bb69705423\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457523bd\\-619112f9\\-b679\\-4818\\-a74c\\-4fb605f737ee\\-000000[\\/\\\\]+yB5WjLFYj_VaV16QP4lYR8\\-rYC8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d9642\\-9cc1edbe\\-44e3\\-49eb\\-94a4\\-e74a2f0fe0a3\\-000000[\\/\\\\]+3rVJayu0RdItCQJOVZm2QrmY15g\\=394(?:\\?|$)" + }, + { + "hash": "ac6b9d6c253aaac2956a59c674a4438b357225697067632bc0b7aded6df5eb65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9961[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a9eeb\\-049b6e03\\-0585\\-40df\\-966a\\-56ef2af2c911\\-000000[\\/\\\\]+piEIz5MV3BN86Mw6\\-pTZc4Y6NIw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584b1b4\\-5bd94b18\\-d985\\-40b8\\-b6ff\\-11b033a32de4\\-000000[\\/\\\\]+kT\\-Bvblk_7wvR_q7amafQ3dhYzQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245726c0d\\-d0433e03\\-5d9e\\-4bd3\\-b06a\\-87db8b598ba6\\-000000[\\/\\\\]+6157JjU\\-jWzmzlfuJ8QBOxOntms\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245736668\\-84cce638\\-f139\\-4efc\\-b395\\-5b728d5927ec\\-000000[\\/\\\\]+yhkwi6cT1S9Cfx_l7Lp6lNO13so\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab08af\\-b618a640\\-57ca\\-4363\\-9a17\\-7ab4f9b0c0e0\\-000000[\\/\\\\]+MPkyvxMwaHFKMH72AZTFO11BJL0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583cedd\\-fb544d69\\-47a6\\-4c60\\-8d98\\-5a19ea1eb6e6\\-000000[\\/\\\\]+nKLGZqjJTuwecksBhvWfqMRNJLE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459165e4\\-e4327491\\-8d7c\\-426f\\-a028\\-36f93330fd41\\-000000[\\/\\\\]+RbGXdTurDzeKdfRgRjumjRwowVI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab08af\\-b618a640\\-57ca\\-4363\\-9a17\\-7ab4f9b0c0e0\\-000000[\\/\\\\]+zgY26KcsysDG0WM934MeA5bvDX4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb6eab\\-2d42d148\\-7a54\\-469a\\-95d1\\-980c2cb9d750\\-000000[\\/\\\\]+3FGzPMK_GbXW2iZx58Q4GdDXVxw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1e38e\\-38e273c9\\-de5d\\-4215\\-8cc5\\-553d2f2682d5\\-000000[\\/\\\\]+waSeoAD2k25sVFc7z8\\-E3DrMys0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245956f70\\-31916a6f\\-1aa4\\-4355\\-9852\\-dc0bbd7e3c95\\-000000[\\/\\\\]+MLvd0OkCUptKtzV5dS7\\-EF3SpGo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af8dac\\-1a152990\\-f5be\\-431c\\-8973\\-a5238e687892\\-000000[\\/\\\\]+8iKmY2P3EmPo5JK5lCNOMOKlcBM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245990bdb\\-2aeccebe\\-b023\\-459d\\-972d\\-58ffcd0b0a26\\-000000[\\/\\\\]+P1d7Eywf3S_tWejJKWKN6prHQFE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae2806\\-1148738b\\-f22d\\-41b5\\-937d\\-69f3e4510d69\\-000000[\\/\\\\]+IwQXGrpftyJSHNJm5GBpc7IRZXo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad61fc\\-40f43474\\-fd60\\-4714\\-b6ec\\-dc87630617c3\\-000000[\\/\\\\]+TIscJatVXclt0eJDJ6_H_NgnM\\-Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf1d11\\-3d0a4b9f\\-c2fb\\-4209\\-8072\\-30a086adc976\\-000000[\\/\\\\]+\\-7nqhLor0CRfgwLuqE65aiNS31w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b2b02\\-9945326c\\-c512\\-465e\\-8c6a\\-a23b2c96abae\\-000000[\\/\\\\]+u1fOz\\-hxkBfyM7HFVDVrGzAI4SU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457fa87a\\-6e687acc\\-d560\\-43d8\\-996f\\-e490241719f7\\-000000[\\/\\\\]+UYxM\\-_RjZsrjdbRfNlO965QL8Yk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b0377f\\-647426d2\\-8e96\\-4ed5\\-9a1a\\-250d2ca422d3\\-000000[\\/\\\\]+Sy5PahJ52vxJLCrxwj9flO4pmUg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579f068\\-bfb9e10d\\-9e80\\-4e88\\-af20\\-756d3b25054c\\-000000[\\/\\\\]+Aqh7n2qqGSs1mvkexFqF\\-qKPmzM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a58fde\\-54a91649\\-aa6a\\-4812\\-8b01\\-930c0a91a7bb\\-000000[\\/\\\\]+5OWS0XOEQoMgpCcrA0QUYH_W19g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c2790\\-24cfa430\\-0e18\\-4ae2\\-b7bc\\-555a045bba00\\-000000[\\/\\\\]+_Xa0lqmtTn6BvnzQHq\\-03YSjVEw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245829229\\-fb275b1a\\-3a7d\\-4a0c\\-b948\\-8dc6cd000687\\-000000[\\/\\\\]+sTMy26bfRYxVqm\\-Qq7Gww1c80sE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf1219\\-4effd323\\-7e67\\-42ed\\-8885\\-7a2438d46c88\\-000000[\\/\\\\]+R9D3jPURSMOJiUerlTdvcl4MO7k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bda5ab\\-b1bbdcdd\\-cf79\\-4741\\-9808\\-db11b85a2ed7\\-000000[\\/\\\\]+IsrgDHYEn5O7eFBR6Nq1VRFkMJ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583740b\\-680cc0a8\\-8dd9\\-43d0\\-82ce\\-2022151d31a9\\-000000[\\/\\\\]+wgN\\-JMLTXFx1uDd0GXFQWul3b6Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245759b3d\\-1fcdfcdd\\-912d\\-4795\\-8450\\-32d7ea2592ab\\-000000[\\/\\\\]+jLQvVMK4h\\-us4ZIFlunPSCcwUcA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e29db\\-f6697275\\-aa10\\-43ad\\-9351\\-7b1524d4011b\\-000000[\\/\\\\]+wglz9QTEwj5ERSqkB4vie2VbD\\-I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af6cee\\-a1d29eec\\-5642\\-445d\\-9308\\-4b5c5f45f86c\\-000000[\\/\\\\]+60vLvhRA_ECa92lM8whOB3a\\-xho\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6a5c8\\-d60af559\\-0b42\\-4520\\-8adc\\-f4c7fbe5ca9a\\-000000[\\/\\\\]+rA2u0VWjPqzZ8gWOvYrpDIKlo_g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1a820\\-9a1f4e33\\-f2c9\\-4d2d\\-8f48\\-b67c2a2aaf1b\\-000000[\\/\\\\]+g3mCLCqiBx8lY1iYdCY5AP8Xvq4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd6fa2\\-6c1cab8e\\-76e0\\-4498\\-b159\\-4b5a158f2d57\\-000000[\\/\\\\]+JR4rq\\-pEcY_5HLSvfU7UMFdRsBM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a85e76\\-7b9ffa08\\-883c\\-43c3\\-81d0\\-027d31fe5329\\-000000[\\/\\\\]+c3ly7pFWjUxc9kjfgU00br0BOGA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459aacfc\\-88129e9a\\-6aa1\\-4078\\-88dd\\-4959eaa1c655\\-000000[\\/\\\\]+u1ub2VBwBVCN7zz\\-eIc4NNvxgGY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a3484\\-63390351\\-0bc9\\-4e67\\-98b0\\-60ab0a48d946\\-000000[\\/\\\\]+cvmKaMelICRcTMna8f28r6mYsvY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245855a6c\\-4abb7cf4\\-1836\\-48be\\-be08\\-90ba925a0f43\\-000000[\\/\\\\]+7zU3xu6BIRrpoVwyljKQdFMeBsY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bc7ca\\-aabe936d\\-ad2e\\-4377\\-9145\\-f2d86bac877d\\-000000[\\/\\\\]+TCPo1FBvPNEhvIOyjHhdU6fpoHg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8e9b0\\-750fad7f\\-6324\\-4095\\-a400\\-f153d048d0fd\\-000000[\\/\\\\]+8X7zPQGvM5\\-I6T7Y70cK8V66l\\-A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587aa7b\\-4d225cce\\-026f\\-494f\\-9c3a\\-1d84216fe738\\-000000[\\/\\\\]+kdJLYcuEP423qHtuB6XGbnbKV\\-8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b39093\\-db7121e9\\-f83c\\-4aee\\-a4ec\\-272a3f54730e\\-000000[\\/\\\\]+6F3\\-Gnbz57Sb\\-GM0yTUvI\\-ONAlk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594d3af\\-447060c0\\-cd09\\-4d64\\-b05b\\-b661d287eda0\\-000000[\\/\\\\]+Q\\-jfEalmyR3YaFlXQ9MxfXtUbn0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924581b245\\-97d06c78\\-d1a1\\-4b07\\-907a\\-dee652036a3d\\-000000[\\/\\\\]+lOgBqX\\-2nqiZ6iotiszCdTiy6qw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa375c\\-122e43c0\\-1f5f\\-4d97\\-ac81\\-ce9821124ffe\\-000000[\\/\\\\]+PFKLwuZgpqWfpg0bELFM1vx2P2U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459fedb4\\-0e728195\\-bd52\\-4530\\-a254\\-df37c3746c88\\-000000[\\/\\\\]+yxxatZb7FgAG93r\\-oy3Q_lfq3b4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c41811\\-33e30b03\\-e69c\\-47fe\\-aa05\\-9bb0c37a52cc\\-000000[\\/\\\\]+aEkCBJp0js3PrOAPJrkd_anKay8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8ee8a\\-3777d598\\-3296\\-437d\\-95a2\\-f40685bba96e\\-000000[\\/\\\\]+7ExxZm1hbRZgrbkIG4YmskDaQZQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245750167\\-e2a28ddd\\-4f4c\\-41d7\\-aec1\\-76ca07550c88\\-000000[\\/\\\\]+Yu0ElayjJFGDjHeSqZ7i2eroEQY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245becb24\\-c0724bec\\-da1d\\-4efe\\-81ea\\-bf3c3f8d1410\\-000000[\\/\\\\]+TOThIx2st5NMMNdYQuvaFEDWWPE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245954880\\-69b9d0c4\\-8749\\-4db4\\-95a3\\-c2ca937e84be\\-000000[\\/\\\\]+KgSQiB_gRJDmYs5SxR7JWE19BzA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae1e59\\-a0dd41c5\\-1c44\\-4e35\\-b31b\\-fb63847e31a2\\-000000[\\/\\\\]+\\-tz4uDcr4c6iURGqqwo7dX8KxTA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245824b0f\\-23088cb1\\-5d7a\\-4711\\-97e8\\-f3e63bc0d260\\-000000[\\/\\\\]+sXDN3ojPbCTKnf9fP8jbMo1adXc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458126c1\\-d21005a2\\-4d9e\\-475a\\-9b95\\-505f44136c9e\\-000000[\\/\\\\]+hamL\\-_DgWsVyrPaCOWQEsmPWyCg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ea44a\\-db8ad393\\-7adc\\-4e74\\-aa50\\-54045b89d7f0\\-000000[\\/\\\\]+JXTUUipkX6YlCI7th8xyTlUgHfg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565b8fe\\-ee83b648\\-8e98\\-4e9d\\-a7cf\\-c53af2b016a3\\-000000[\\/\\\\]+wB_jAW0CVW4nLBTfW5rAFYp1tUU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582bc18\\-605f2f32\\-5204\\-4997\\-8640\\-66c5b36f7574\\-000000[\\/\\\\]+r6NyOF\\-BoYhcXJgCG6Da7_aemJo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd3892\\-2a5423a8\\-7dc0\\-46b9\\-92e1\\-5b19f52f7556\\-000000[\\/\\\\]+dLgo7naWLjhmN2WRRb8dcHE8044\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c22576\\-d1bb81e8\\-e40e\\-4113\\-b191\\-5db512f8ac77\\-000000[\\/\\\\]+jMV9RPyR7dWMXXlV2vaGRNsog_Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245835ef0\\-453a5f17\\-9c79\\-45a1\\-b35b\\-8874891ea9de\\-000000[\\/\\\\]+79DSvyeA5xeo3Ob9EvEJ7lS4H0s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf2a25\\-28c0d961\\-b0c4\\-4106\\-a01b\\-537e24a7b3ac\\-000000[\\/\\\\]+P87Cj\\-BK7HRi5W7ZzZoI5iMvra8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b24ba8\\-075f48ab\\-b2f4\\-41f8\\-b68c\\-e2b5b7273770\\-000000[\\/\\\\]+r49zNasCeqynek\\-S2Tpcyoz84\\-4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c32492\\-538546c0\\-1142\\-4c11\\-9520\\-fb40260162ed\\-000000[\\/\\\\]+wSkLiwUPvm1DT4c4CjHrNB5j52A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a30ed3\\-73cfdbef\\-e5fc\\-4340\\-85c6\\-7dd39d5af5e5\\-000000[\\/\\\\]+Zy3i9ve4F0YhllQphNo7isAOXc4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457398b1\\-0fd5e021\\-dac1\\-4add\\-bcb1\\-5fcabd016061\\-000000[\\/\\\\]+p7aKki\\-fdpVXBgmlcWD6PHcAY1o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245668cc6\\-5805c47a\\-96a8\\-4fa7\\-a23b\\-a63d8e950e41\\-000000[\\/\\\\]+iYE8vikS\\-Jl_db6xj2y51BOcoqM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456aa237\\-55fc9b95\\-bc62\\-4c05\\-898d\\-7ed90eb76900\\-000000[\\/\\\\]+OgVo90kWgoYjQiSIjHDSwTSmhiA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d7165\\-961e1605\\-9aac\\-4188\\-b475\\-9e9c9870ed10\\-000000[\\/\\\\]+OAumC6H\\-ibzLWxqH2Z5qwzW1\\-mQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459368ef\\-aeec34ac\\-3e9d\\-43bc\\-9c7b\\-841809bbf542\\-000000[\\/\\\\]+xnbpCSf8l3mVe\\-PXRMDm_5ZE52w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329adca2\\-7bba4899\\-09f6\\-4578\\-8d81\\-7c09c8225fe3\\-000000[\\/\\\\]+XBldx2yCV6d64p_A3qBBIT2\\-3zE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457958df\\-dc2e4662\\-9fac\\-4f2c\\-9820\\-6b1056f42e67\\-000000[\\/\\\\]+L4aM_nmJhRG5tpiirt0SfTZIMMM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c31a1a\\-0c1624f4\\-d880\\-4018\\-aeed\\-e8402a80fe5d\\-000000[\\/\\\\]+98GYqlWTj1QLrJG1ukBLl7aObl4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad880c\\-92fb5e3b\\-9208\\-4e0a\\-9b88\\-36a60db7254d\\-000000[\\/\\\\]+DT12hXaZHlN35yybYZ2fwiL61hs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a30ed3\\-73cfdbef\\-e5fc\\-4340\\-85c6\\-7dd39d5af5e5\\-000000[\\/\\\\]+GImRgLqtDVAs0mZsfWN6bBE\\-Nyk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bef262\\-d9384a90\\-8510\\-49ed\\-96a1\\-b55aa1972dd4\\-000000[\\/\\\\]+nl\\-tsm6GkhqvnkoAc4tCxnJ07cM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584cd0e\\-09b9850a\\-39bd\\-4e4e\\-8c89\\-69cf9d0e3d23\\-000000[\\/\\\\]+RocGPCFdwQOb\\-U5kaAKXdUh\\-DIM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c8aa7\\-3398a4fa\\-d838\\-4543\\-b5fe\\-7bc4ede6f71f\\-000000[\\/\\\\]+zozmtFUJf98r39_Zo_hysmSLZK0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf0f91\\-63bd167f\\-bed8\\-4bef\\-a46a\\-84e6205d23d2\\-000000[\\/\\\\]+VceAd07Po_5pKWq5M49kHbYI6SQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576ce97\\-9a120069\\-0d42\\-4b07\\-abd4\\-d04e915e74b3\\-000000[\\/\\\\]+HSNSL1DLCk5wSsUGHE1FaHQY7pQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457edc0e\\-9de7ac4d\\-c28b\\-445b\\-8104\\-8ee98e0a579e\\-000000[\\/\\\\]+zMCjV48i1dJltY7Cm1tQ_DRBrb8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3f579\\-4f8429ff\\-76de\\-4b1d\\-b009\\-8fc033fc1daa\\-000000[\\/\\\\]+T\\-rfvSDsgS4sNTJl4dpUv_4Z8pg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd706f\\-796abb24\\-b157\\-4028\\-a44f\\-426d4245aa97\\-000000[\\/\\\\]+EEMCQem3fhbTNNqW4Q5zS2SWO9M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c48d6\\-ed4b41b6\\-5641\\-49a6\\-9886\\-7841bbefdaa8\\-000000[\\/\\\\]+YcQtAZMWVEZ3mCPOwjVvA\\-08Ov4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c499e\\-c0f2a55d\\-7c5d\\-432f\\-b52e\\-50d59467cd9a\\-000000[\\/\\\\]+8R0IbtTfzpHTsHuC2lSIliA3m2E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577db7e\\-8befaef7\\-1b26\\-4f5c\\-a6d3\\-24096654e61f\\-000000[\\/\\\\]+gblfDey7xfwwb4k1f8rSVWeYDOI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5fa8f\\-7d8bd70f\\-64e0\\-4757\\-a102\\-47b0b700652b\\-000000[\\/\\\\]+YcsRHPQXubmDehzWAojQaQTsooQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b738cf\\-d33829da\\-bac0\\-4254\\-9c89\\-2c03a0115934\\-000000[\\/\\\\]+7x_Fg\\-MYiQwb\\-w\\-CzYIiVMipn0M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfb2a7\\-3d3acba6\\-e1c6\\-4c57\\-8f66\\-bf878bf85692\\-000000[\\/\\\\]+Tr15Ni\\-7AfO_2McIkXA2ZmIppBw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456120dc\\-ace8aedd\\-dc11\\-4a86\\-9d10\\-3125d29d0ea4\\-000000[\\/\\\\]+Me1moFiQMxQnnENU2RhwMlAUBoo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be8bc2\\-0e53aefe\\-05f6\\-43ed\\-a59b\\-8f0985c4d7e2\\-000000[\\/\\\\]+93v5w9qhUms0SmeczGZfTNm6PQ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a51597\\-1178701b\\-2364\\-4f11\\-be6e\\-f8302a50904f\\-000000[\\/\\\\]+\\-ZvVonNQjNFGU4\\-wllV8q5geKWk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b85360\\-0e26aea7\\-287d\\-43c1\\-b283\\-85f4f91b4f60\\-000000[\\/\\\\]+s4h68jkCLAtCIiX8jGexITW0iNc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a17947\\-cfa1cdd2\\-ebce\\-49f9\\-ac7b\\-efef0e6994f2\\-000000[\\/\\\\]+tgw0y2mpq\\-lVfTpzztFgPpmLutg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245893a19\\-26f42a2d\\-ea40\\-4a44\\-a770\\-c723cf27426c\\-000000[\\/\\\\]+SiKbARCiyh2xFmTpMs4i7QwAIWc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245baa862\\-7ff40bcf\\-1f5c\\-4543\\-985c\\-7a4ecb6b7e02\\-000000[\\/\\\\]+r3zdRHS8mMykycvr2WQTTyLcSnI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c65b1b\\-b9827080\\-14ce\\-4001\\-8b9b\\-55db70b1f6d8\\-000000[\\/\\\\]+LfVD4gCFLKiDgxxRTJQb6etjCTU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458570fe\\-734c8627\\-0128\\-4687\\-aa46\\-7aa4dd95dc32\\-000000[\\/\\\\]+kdtIevjfL96HtjwTiQKjhwZGVgE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245794ed6\\-e80f0373\\-2406\\-4814\\-87cd\\-091cc439dc67\\-000000[\\/\\\\]+wCg0Mp2nNh4cdURSXsCt2tqRc\\-0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245acd299\\-3d035402\\-b37f\\-4c99\\-a491\\-6aabee14d361\\-000000[\\/\\\\]+ScSHYcYbbhw_uhXdkBVhZPJJAc8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456b7f44\\-d1c8c741\\-ce14\\-49fe\\-9e17\\-94f8f407dd64\\-000000[\\/\\\\]+W9A06iXemePdTvL\\-xd1DWQK23VI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566a1f9\\-ad73ba67\\-f3a1\\-421b\\-9196\\-6120398e7993\\-000000[\\/\\\\]+sBdrya8yKamT3GfX5Kn_LqAu\\-18\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573d12f\\-2e344040\\-70fd\\-4249\\-8402\\-2dbe4d23d2b8\\-000000[\\/\\\\]+XH_f4SsNZA5quqlLm6UwR4M6v5A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c39f62\\-6099ffd4\\-9a98\\-4756\\-ac9a\\-6f8ecb93b8f7\\-000000[\\/\\\\]+Pvrl7V85mcRw7CIpY846jnfxawA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d08e41\\-fbe43292\\-9b83\\-4b1c\\-960d\\-0c14b1c8d264\\-000000[\\/\\\\]+thBZtpP8kfRCtxEQ0jYhD_ahvmo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae923f\\-4bad8e95\\-fd50\\-49bd\\-a6ab\\-8cdb8c9b9259\\-000000[\\/\\\\]+BtKFxCWmsFkHvcQ8mVjqVsV\\-nyw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ef5c3\\-48d0094d\\-1d1d\\-460e\\-ac67\\-076496bcb69c\\-000000[\\/\\\\]+Le06X2a1IXjDojvaIdt\\-8ui1Qgs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cae4ea\\-2e482dde\\-fb30\\-4d43\\-b02e\\-776261cfba8e\\-000000[\\/\\\\]+TcXt\\-t0C2UWEnFXVME0LjsnDPpk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597e77d\\-a3c2f532\\-380c\\-4e77\\-98da\\-023234e64911\\-000000[\\/\\\\]+2lz2AhWpIdtI7eG1ce4rZSxeV7A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb5985\\-fc9ecb89\\-ea83\\-4d5a\\-9647\\-e9dd6405a34c\\-000000[\\/\\\\]+OIivKqOchv2WzfpwDb7qf9Bq9Mg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245989b9b\\-80cd16b9\\-2b5c\\-410c\\-a8fa\\-aa0fb23c21ef\\-000000[\\/\\\\]+JIVXCr4mf7vkh9ug2efL4SqEpao\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0483d\\-4b080a7f\\-f329\\-4195\\-943f\\-3511d69cc8bd\\-000000[\\/\\\\]+czobYEMbfgSPlFUdmwP33cFJQ90\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457b6cca\\-8050bbf7\\-bdc0\\-4580\\-a180\\-adf1fdba51b3\\-000000[\\/\\\\]+kGV2lr3J45nLMXFYKAgTbr\\-hjxc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7be8b\\-003c0315\\-71f2\\-4a5c\\-9a77\\-d94721cced35\\-000000[\\/\\\\]+qCTkznyX4NbZT5Fqu8LEMAek1AU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cc74a9\\-5ef4fbe4\\-4e29\\-4301\\-87a8\\-d1f2bceb98ab\\-000000[\\/\\\\]+5XMY8X5Sg8I\\-qA2OUWwkSnVjOEY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd4f9c\\-efbb5c38\\-239f\\-4c5b\\-ad44\\-1dc8d7216a36\\-000000[\\/\\\\]+QQHq0UGmVNWFJ5huewLDpIuCkTY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b99827\\-865df875\\-7eec\\-4864\\-b99a\\-75e47cbe2bb8\\-000000[\\/\\\\]+YqLq6rmceUxSNKzESndLmGiciLQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a73984\\-83620ca5\\-296b\\-4dac\\-b1f3\\-4d01558c2ffb\\-000000[\\/\\\\]+ks37bfs77pmWe6sN3Z0_qJiq9FA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aed886\\-728ce555\\-abd6\\-4c16\\-845d\\-24a9433fbfd4\\-000000[\\/\\\\]+yIYgRwI5DSJLhAm4NkYfxJYrnb4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a767aa\\-b546eb3a\\-6ed8\\-40c7\\-986e\\-76f91060fe9f\\-000000[\\/\\\\]+accjk9oSeOkJN6h7080xlfzO6AI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245914981\\-b4178d76\\-075e\\-4c14\\-b03f\\-0b8adb3b2ed4\\-000000[\\/\\\\]+sEdR5gg2iaVy1b2OhkObEDbgb38\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a00b95\\-09984f44\\-cb37\\-4e30\\-98cc\\-a943ac2c5440\\-000000[\\/\\\\]+XEa2NX6hOq5xVvSXYc1Ihsq6Mwc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0349a\\-14173466\\-1b30\\-4e5d\\-a3f5\\-216ff2956666\\-000000[\\/\\\\]+S\\-GqITGwb7FXHbC75ZwpipBG8cY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7ea99\\-13647fbb\\-cb4f\\-4fb9\\-aeaa\\-e1857fd39ccc\\-000000[\\/\\\\]+FaGbSMqwRd2M\\-RmvlKFyLLSMtx8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595a155\\-7e34097e\\-4b89\\-4268\\-942c\\-1e47b91995ad\\-000000[\\/\\\\]+sU9LHNyC3k\\-jLJYrfUOUHOnPqKM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577b2da\\-82566412\\-bd4c\\-4e1e\\-8b32\\-ae5fe321e049\\-000000[\\/\\\\]+t2FEmb90pt\\-Vkk7eMSLE1cYlWxc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457531c7\\-dbd5e839\\-8e42\\-405b\\-8cc2\\-c0d1b58425f9\\-000000[\\/\\\\]+E5Ificq4l\\-p5X6Vcw3FADS7Hc8o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5f7a0\\-94ecff24\\-fccd\\-4081\\-b6ed\\-4e788afb92d0\\-000000[\\/\\\\]+4be8CfJlHI6N5q7FksGpFHrR1yM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7f766\\-deb7e0a1\\-0710\\-4fa7\\-9e79\\-9a7d79ee9244\\-000000[\\/\\\\]+FZoodh_NxbKWzuIWWsCYBcK0_RI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a54518\\-3e77f8a3\\-f8a7\\-4edb\\-99b8\\-39ae470f1328\\-000000[\\/\\\\]+cwo4Jua8UWeSBKF4Yck\\-ObURWTM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245baeab9\\-f7fdd6f5\\-9b02\\-44b8\\-9bb9\\-7c1723277ffa\\-000000[\\/\\\\]+Gh17275KVZ30EXj2w_H5FKs6a04\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b88870\\-92f1a5e3\\-9326\\-471e\\-8e36\\-0e833284de75\\-000000[\\/\\\\]+JA_DmxzTXosaPzV2ZuaG9ykDkoE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a083e9\\-b86f3440\\-583b\\-4721\\-b480\\-b1e085b28c1d\\-000000[\\/\\\\]+AYuZqaYanQa9oJcjQxCEH5HMmO8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b89072\\-a110051d\\-0951\\-4b14\\-973d\\-cdda589f1d13\\-000000[\\/\\\\]+9dO8DfJ3MiWUytBQd9esNG8cQ6Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca7a43\\-b4cf21ce\\-f12c\\-486d\\-8f52\\-acbb17829d0a\\-000000[\\/\\\\]+vdDViloAkOWROzYPfhfxSNXjYIs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b56e4b\\-b51cb22b\\-e582\\-4c90\\-8941\\-6ec4b986f1ff\\-000000[\\/\\\\]+KTivxSGQ1qpqKflF1_QHmQ9uZDc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae923f\\-4bad8e95\\-fd50\\-49bd\\-a6ab\\-8cdb8c9b9259\\-000000[\\/\\\\]+a_6nzLOn\\-f6qEIeECqY8vHBMDJw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458eb861\\-303bb261\\-adb5\\-496a\\-a0a0\\-bc1183a2e6ae\\-000000[\\/\\\\]+_N9kB\\-2MNv1Hga68Wi8fI5hgUzo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245728995\\-af2479ce\\-3c06\\-4b57\\-8261\\-c3ba48ab92cb\\-000000[\\/\\\\]+UKCPkIHcrYNUxprIBWQ_P3dqxcE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576c8df\\-6e428647\\-e5c8\\-4bbe\\-9b34\\-acc59f8691c1\\-000000[\\/\\\\]+WaQyvIEFCKpZdjAQsJdptvkYj\\-Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5a22b\\-622f8bff\\-60d2\\-42c2\\-9439\\-16e920ea5f5b\\-000000[\\/\\\\]+0q1DFO8UajU8ghEEGxapzneMqsc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924580190a\\-fe941350\\-7ec1\\-429e\\-af2c\\-72b6a978a7c5\\-000000[\\/\\\\]+WFOrkZa7Tr59ADMDwHNegD2fhzw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bb485\\-d63041a8\\-bd7c\\-41be\\-a82c\\-ccf0e3d598af\\-000000[\\/\\\\]+6cgtrtdXZhiZGTzUc7jW5KedBfU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e4119\\-23bf16d4\\-21e8\\-426f\\-94c4\\-8369a7121663\\-000000[\\/\\\\]+4e5hbsA9l7SzU67yXIRpZRvqKno\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597014c\\-e535c1eb\\-b537\\-4cd1\\-aaf1\\-9c6adfe63a5e\\-000000[\\/\\\\]+o7\\-5Qq3VzIoVlcbMMMxXvUccF48\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924571912c\\-b66b1d4e\\-feda\\-4c50\\-b0b4\\-d7ca5e840d85\\-000000[\\/\\\\]+ds6WvxPhqaUlJEMLlg1tuTxlCxk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1e1f3\\-f36b993e\\-4c50\\-4a92\\-bc6d\\-2e8894f44458\\-000000[\\/\\\\]+YVkYVj9FdIoLVAf6SUDzAJhsLqY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457493fb\\-ed50d587\\-4f1d\\-404e\\-8715\\-6a5e4db7b456\\-000000[\\/\\\\]+N4ZSmB1UDJsQakfLy1m1SHasauQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b769a6\\-e5d78132\\-6318\\-4fdb\\-95ad\\-aa440c84fca9\\-000000[\\/\\\\]+piWnIjkhyLMM_j8kfcgJbcrzHxU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924590ef72\\-ec8d6f96\\-88fa\\-4472\\-8cc6\\-611da06edf90\\-000000[\\/\\\\]+OQ0LQiK6OSv0qQc2ZnM0XoUEXHc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456b9e0d\\-ae891d71\\-c97b\\-4786\\-80c4\\-69f6ddd58593\\-000000[\\/\\\\]+\\-DDfkyv7ZAnYTuvCJTCrXNxhIC4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd7189\\-1339ec20\\-9852\\-43b9\\-8a4d\\-7a345cf43506\\-000000[\\/\\\\]+wfxrF8E50NKuc5yOc_ZHdkgQlJk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245640a4c\\-da173d9b\\-037d\\-4ec9\\-bd1f\\-5cd42a631931\\-000000[\\/\\\\]+lFE6brOKC\\-rNpHSonyj4dhKUz3Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cc62a9\\-9675f6cd\\-52b4\\-47fd\\-8ee6\\-7d60bde6e055\\-000000[\\/\\\\]+FXNQMoReqvntU76OWOVB_4P4xr0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577b4b6\\-0cb4467d\\-55d3\\-4e85\\-9dd9\\-960e1fe18248\\-000000[\\/\\\\]+t5Gh\\-gcJaqBwG_itzI5LZGJeRDQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245918502\\-188d8a75\\-d2d1\\-40dc\\-bc94\\-596ec412311e\\-000000[\\/\\\\]+baeh0FiIgyjfmeO2LcSlO1yP8Bo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b5d1b\\-1a907369\\-14f8\\-4b17\\-b9ca\\-060498fe614f\\-000000[\\/\\\\]+AmLCd1StFYwWFdgL_6u9kYQKz_A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8d654\\-0a54e409\\-9cb1\\-4705\\-b480\\-6b2a8780efc4\\-000000[\\/\\\\]+ig_s\\-i8i7XMxMA5\\-Ap0ivkngmCY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245975a8e\\-47a772ea\\-7c3d\\-40ad\\-8c7e\\-e8210a8444f3\\-000000[\\/\\\\]+QuKAevPqBR1lMtolwoVAlnR3k_M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af11da\\-0265d3a6\\-f038\\-4847\\-928b\\-d971b55888d9\\-000000[\\/\\\\]+RmT8wgB8_oAOjG291FDmKROeQeE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c70730\\-69aa462f\\-3fa9\\-4d33\\-93ad\\-e55e6140c4ec\\-000000[\\/\\\\]+RgmGfkWHpC6EiVF1XtPgqAGmh6M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245763794\\-b95156a6\\-3c8d\\-46a1\\-9b49\\-265bfcccab83\\-000000[\\/\\\\]+R26_9rgnHYugghPkIku45VfSeC8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc7923\\-df699e1f\\-007c\\-46df\\-b122\\-0f37a30cf982\\-000000[\\/\\\\]+mYr9GuwwiNAsVy_VM1AJE1onKyA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af12a4\\-24c8e317\\-5ddb\\-4417\\-87d1\\-ae077b0f4413\\-000000[\\/\\\\]+2ChWQ_71NB2TEywTWsCMLazV8S0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d4a8c\\-504e907d\\-4b56\\-4a2d\\-947f\\-d658343a0212\\-000000[\\/\\\\]+ToiMnIobE\\-ZDgK1GMMeBp468LQE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cfb5b3\\-68bb3cfa\\-9b13\\-4123\\-ab97\\-a967a9033d8a\\-000000[\\/\\\\]+8kJugzAkQZsRbHw_DQGCn12UcVE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597678d\\-63ed1951\\-cb2f\\-41d9\\-a914\\-13816a7a8bc9\\-000000[\\/\\\\]+3ezBR6YKv3sV2\\-lG0jyAxCQt3jw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf71e1\\-dd966059\\-1179\\-45ba\\-b5a4\\-11836e123ebe\\-000000[\\/\\\\]+_d5gqqkFYTqVwd7tmKQVbxh_yoM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9ca91\\-19d020b7\\-44b7\\-4d67\\-adbb\\-e5f0bc15978b\\-000000[\\/\\\\]+vu4l6QMoxFK6tOkJsHg4V2esqqs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce300d\\-14389bd7\\-1ed5\\-422e\\-93e2\\-5e39f8dd1761\\-000000[\\/\\\\]+S5wDHtYRrXz1XnAjhBEXrGScXGA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c66122\\-6923dd9d\\-dcb6\\-4c5e\\-bf10\\-38a41410b2ba\\-000000[\\/\\\\]+SLgZKSZ1V_lDyMbhm8ImTmUPE5A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c04018\\-cfd3b492\\-98e2\\-4392\\-9806\\-f0bed35f5915\\-000000[\\/\\\\]+_RZgtGAJFPvdRLHmeBoxgxHiCMU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456eabcd\\-89e2a41f\\-55db\\-437d\\-821f\\-f835b3f21e3b\\-000000[\\/\\\\]+mxls4HlbftgmblLYWmBpfFO\\-8p4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c5417\\-816b4023\\-2837\\-4346\\-9970\\-396246ed6a3c\\-000000[\\/\\\\]+\\-9AkzARyF_pLIv4VI52h0npSxhc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f0ed9\\-2cb03034\\-48e4\\-497e\\-a352\\-b706e87f5129\\-000000[\\/\\\\]+gJVWb1e9DnrrMtKpmy8wfxr_ucc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b69a7c\\-19d9855c\\-a6dc\\-4283\\-bf83\\-c4fcfdd9a349\\-000000[\\/\\\\]+tG7MwiU1u0EQDpMyxGvGp4XoOfc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f0246\\-1b1de11d\\-338b\\-4a45\\-9c2d\\-64a8605838d8\\-000000[\\/\\\\]+x3yK0flgjG8gQukzCKDNqT3MUHA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245833e15\\-5b6a2c17\\-b7a3\\-4982\\-b4e1\\-62edff13d9bf\\-000000[\\/\\\\]+c8LeGnetpwiC5rwkkf6K_RNcc6o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd07a2\\-24c43ddc\\-652a\\-4a4d\\-bc84\\-80e31f6e927b\\-000000[\\/\\\\]+hW9f9mDzgHx_y2pNycO4_W_61c4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b357a2\\-b9c315ac\\-4c01\\-4450\\-b5d3\\-91d4e5760960\\-000000[\\/\\\\]+5ZzmMeH2COEMb4\\-0a5lm0ZhCCbw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a2d334\\-f435f711\\-db8c\\-475a\\-92b2\\-7285f1944868\\-000000[\\/\\\\]+T02AWOsH8FVMrzlfvCUcO\\-HByrA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456df3cf\\-1057f4fd\\-3331\\-4c96\\-9518\\-0b7cd0eb3e0c\\-000000[\\/\\\\]+wQB6n8sOPzRswPyTMSFxjVpnkZQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf30fe\\-3b93f022\\-782b\\-437c\\-b50a\\-3c62156ac270\\-000000[\\/\\\\]+elAH\\-0YTPU21XhHzgGVwa6x4xwg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d1321\\-f9c81bb5\\-c189\\-4e3a\\-96ce\\-3958e59cc850\\-000000[\\/\\\\]+A7\\-exRs3ps8Th7SksB4V7nFigiU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458120af\\-ffb06b8f\\-a195\\-4d79\\-b1cc\\-4e79cc1fc997\\-000000[\\/\\\\]+5G9HBc0eLDzRtgqwsn9JQorkdHs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924580d0bd\\-01f55060\\-01f5\\-4b94\\-8719\\-03eb78f1feb7\\-000000[\\/\\\\]+k5uHviJDkFO_op5Jtw1px7fmDEY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b42689\\-37799c82\\-0054\\-4a75\\-bc06\\-a7c05cf0845f\\-000000[\\/\\\\]+Yb03RV74cJ7ubCVsV3kVhCfSHKs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f0256\\-177dc421\\-ef16\\-485b\\-8717\\-0c3b8d345fc8\\-000000[\\/\\\\]+BaEXi9mNsphxelCTt8JF7LG9dPM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577b4b6\\-0cb4467d\\-55d3\\-4e85\\-9dd9\\-960e1fe18248\\-000000[\\/\\\\]+jh9CVXpFloNMgjwHBuovlUn7Nbc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924599b074\\-1fd09e2b\\-702e\\-4632\\-89e1\\-2102ffb778bd\\-000000[\\/\\\\]+uH8nbVkzXDCkpo7sotnxziLLW60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e0493\\-0906742d\\-cb3e\\-425c\\-8eb3\\-f793544c873c\\-000000[\\/\\\\]+c63Oq4cX\\-2CGbdsIaXBzl56BfcU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457da3d5\\-464f1951\\-cb5e\\-40d7\\-adb3\\-db7d2c413f3a\\-000000[\\/\\\\]+6ogjvau9cwO7gWPw_jiDOVWaQ7c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b9897\\-5c71a5af\\-4778\\-4dbb\\-94b2\\-c06f9d7566e2\\-000000[\\/\\\\]+EP5J5RFGTozJBW8vLqavjrbK85Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589a2a2\\-b3e14d52\\-4e60\\-4fcf\\-bacd\\-43541b282c44\\-000000[\\/\\\\]+byQdDCfa890Glev4nm9mGs12gFk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5eec9\\-b0620563\\-67e0\\-4baa\\-955b\\-084e164adaa0\\-000000[\\/\\\\]+BnCtJsi8rhLVdiE8iuL49nbzxgM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457b6d62\\-a3b8d359\\-706b\\-4cf2\\-a49d\\-ee47a7866e5a\\-000000[\\/\\\\]+YZpBtNBG6qvtkt8n8V1UF43L3KQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595f95c\\-7c802bc6\\-ae1b\\-466d\\-99e7\\-fda88297c123\\-000000[\\/\\\\]+FBDhfQ8xahSzTcWTB3tR9Q\\-T06o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af9a02\\-f9c83023\\-fb7c\\-435e\\-bedb\\-1cc85c0b6605\\-000000[\\/\\\\]+NgDs9\\-hT1KNluvTlfVZwNeq1VYo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457fb1f3\\-dcc11aba\\-a2ea\\-47ef\\-8761\\-328953b39d03\\-000000[\\/\\\\]+sNEJi6fMa4BEqLYJoE8YOLEgMlc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245908cfa\\-4d0b3404\\-24c9\\-448e\\-a0f4\\-b66c2df6e550\\-000000[\\/\\\\]+J52bi19EeU7sX\\-GphiyV1xBFE7Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c17648\\-92ec72a6\\-e198\\-4b88\\-89d6\\-5878248b7540\\-000000[\\/\\\\]+moDt8vIl3BuBRo0KjFxJ8hhuVw4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8acc7\\-e7a4c326\\-5cdb\\-4d69\\-ba6e\\-1d594627777c\\-000000[\\/\\\\]+EeoHfMknoqCH3i9c9iquJLz3rWU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457fb1f3\\-dcc11aba\\-a2ea\\-47ef\\-8761\\-328953b39d03\\-000000[\\/\\\\]+_dESlQDklUa5jziR4qZvtubA2Es\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b814e3\\-ec3bc3b0\\-505e\\-4da6\\-8def\\-f58798e3f814\\-000000[\\/\\\\]+mtmTjXhfRD9dFgOFf3v1DzcZahI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575a1a0\\-7384c26a\\-75ae\\-4d56\\-a335\\-0d9e3d1d3264\\-000000[\\/\\\\]+0s8osv5IF_E3V4kiKNAYNMFNSfI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af581d\\-6ebe9899\\-a030\\-4feb\\-b02f\\-2203b6a75bbf\\-000000[\\/\\\\]+bfw5fyB5UbM590aE17rUXR361B4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a8c45a\\-64bb06ac\\-67a9\\-4f26\\-949c\\-7aff3039775a\\-000000[\\/\\\\]+dY2zVVqNyzQjM9r4aF9A1b0YTbY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457efd1a\\-fbc11755\\-9f5e\\-409c\\-823a\\-1b06ea96ef3a\\-000000[\\/\\\\]+xo5wzLqu6IDLmaWgpUIMemmJoU0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b91f2d\\-71e7f737\\-934e\\-47f1\\-86ef\\-0f4e50330112\\-000000[\\/\\\\]+GYFOTBiva5\\-yijsqhAw5zowkmPA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596484c\\-c352e39f\\-bd62\\-45e6\\-84a5\\-8157f13ec7c5\\-000000[\\/\\\\]+gtuhgQuq2BvR4bPp2CUOGGA5cIg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1c561\\-2bc379f6\\-d33a\\-4e7f\\-8150\\-3367c95b0661\\-000000[\\/\\\\]+9qDUlCWD6QoRs_8EdDoD1YZai_A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac4abb\\-406338c0\\-f3cc\\-4cdb\\-b268\\-e3fc96be02ee\\-000000[\\/\\\\]+AohA_nkdG7kDPKwBZS\\-VWFTLtVs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a404a4\\-68dd3478\\-fb4f\\-4f17\\-bead\\-9e55d644d2f3\\-000000[\\/\\\\]+iOG4GHLyTa_l7Zq4\\-R8GprJe2tg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595aff8\\-77400dda\\-e18a\\-4d9b\\-8083\\-5b9a135736bd\\-000000[\\/\\\\]+jZiapsVNhlPLN_gqIvbbm20Heho\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589a586\\-2406b44b\\-137d\\-4b45\\-b953\\-0a1c145072ed\\-000000[\\/\\\\]+OY7_i6XNQ2NPKBRCbFqjvrB\\-DHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566f683\\-e6d3b67e\\-86d8\\-4bd7\\-bcc6\\-8249e7345d87\\-000000[\\/\\\\]+rEZtLFml_iSS516uudjPvgngJI8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0b0b3\\-afe57021\\-22d6\\-420d\\-85ab\\-596714329660\\-000000[\\/\\\\]+QAg6\\-nGgLFGd6Y_xCilOJ2l29qc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3a51d\\-2a293a9a\\-9af2\\-46b3\\-807b\\-d6166a535dcc\\-000000[\\/\\\\]+EaUvEJYf1GWb6rgb\\-zhM4qH0wxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572b7be\\-d3b30543\\-acab\\-46b7\\-b11c\\-f9713fff44c1\\-000000[\\/\\\\]+EWInQ\\-\\-v7kCsKq4EdAou0lk8IOk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8116c\\-80fe66ba\\-ddf1\\-4f73\\-a717\\-2a1201d7d011\\-000000[\\/\\\\]+A0VMY7qo2EB1IqjusIiCuKm9jmU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b12d4\\-6f054b6f\\-11fa\\-4e5a\\-b6a4\\-deed682f3337\\-000000[\\/\\\\]+ykz61i7nSTj9rMLaj0cqZ7YOERI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245caa113\\-d672e671\\-e2d6\\-4ab2\\-889b\\-8bc7c58bccdf\\-000000[\\/\\\\]+MSMYy_FhuW\\-i8_1ZfekW_nIjqYQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce6681\\-ea719201\\-1987\\-43bd\\-ad6d\\-6a92c61c2259\\-000000[\\/\\\\]+imfZKsuVAPoH9CzA\\-12UCD0ftDc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aed7ba\\-bbdbe2df\\-0ca9\\-4dcc\\-b74a\\-b59348b0dacf\\-000000[\\/\\\\]+skGuwAjl0Wiy085P7zNG4isFAiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd7d80\\-e7f414a2\\-ece7\\-45d2\\-8a67\\-4b426c7e5da1\\-000000[\\/\\\\]+jyEBtXDWcTFo7Bd39I\\-LpqqoE94\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b9a584\\-9baf99d0\\-e48e\\-492c\\-b064\\-cef8cd455739\\-000000[\\/\\\\]+onD0ochbeRzTRZOs4Qu0uz_yW6E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245981d57\\-708d768a\\-8171\\-4b57\\-b40e\\-2b9d3596d8da\\-000000[\\/\\\\]+a09vcBoUDJwG\\-\\-vfnKOPR9iGU6E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245adb35b\\-48318ba7\\-e954\\-458b\\-a3a5\\-d752a05e8672\\-000000[\\/\\\\]+S_Q\\-vkEsUA1TLHDIpmSvX311s8Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c782b5\\-e960520c\\-246c\\-46cf\\-93b2\\-18e3b43f4c64\\-000000[\\/\\\\]+x9hsLnZjdzpjN7OrjGHiNazRqyw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d7ce1\\-31f90bfe\\-c747\\-4b20\\-a56d\\-95b14948d242\\-000000[\\/\\\\]+kGyGEQF2BYIBI1Rn8pXtmZaOD8Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae1d47\\-be27eda9\\-514e\\-4ade\\-a48e\\-10e8ea4c190c\\-000000[\\/\\\\]+8KOrOuCV1vttUKvg2QW1CRb0oXk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6514b\\-9e9a7103\\-ea58\\-4569\\-b15b\\-d6677f3ecce0\\-000000[\\/\\\\]+lYCHjHFfdIRj0Ts2dN0sriWGjM8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a11c8e\\-926c8ceb\\-48f8\\-4614\\-ab8b\\-7da3e53619e0\\-000000[\\/\\\\]+G6C\\-aVESXY3msagWmhJLWhfYdKg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a8c45a\\-64bb06ac\\-67a9\\-4f26\\-949c\\-7aff3039775a\\-000000[\\/\\\\]+fA\\-vU34D4t02A21Cy91Z8ngFNg8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b5705\\-51f1e91f\\-54d0\\-41be\\-b7a5\\-301f51aee22e\\-000000[\\/\\\\]+qUxpRFBnRwkzh2S2Xh_HYJ6d8EU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456db6ab\\-e4c4cac4\\-7354\\-41bf\\-b108\\-d968e58d1231\\-000000[\\/\\\\]+76Q3YSXPFaavebj0eRVun_6HxyE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7b5fa\\-b131b4f9\\-e806\\-47a5\\-8f2f\\-58f0ed63f320\\-000000[\\/\\\\]+xiinJGnc4L5ap0I4MEdW6NRye2s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245717cb7\\-14714690\\-8ed5\\-4785\\-b101\\-c9b83a1cfcb5\\-000000[\\/\\\\]+nwiAkLgf3N4I5xbqLMZiI80NcdA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e3ec6\\-ad99935d\\-9267\\-4a0b\\-b264\\-109dbadabb7b\\-000000[\\/\\\\]+Iivqe1pExKk4fiunJq9d7SaCv0E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8d654\\-0a54e409\\-9cb1\\-4705\\-b480\\-6b2a8780efc4\\-000000[\\/\\\\]+\\-oNEUKd13mCADVQqfgr7gzapRyQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf2f97\\-34a51db7\\-5c38\\-40af\\-80d8\\-bc95ab0e0433\\-000000[\\/\\\\]+PCVorhIX8gx_eK\\-I0usCVpn7HZA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573c18a\\-6e1c9f0c\\-ddac\\-45e7\\-9f97\\-66d4f703b688\\-000000[\\/\\\\]+Jox6M2JPzjux1j_vroqFJgiVcYg\\=394(?:\\?|$)" + }, + { + "hash": "4e0cc146a1a588ad2fda94b2e65ea4606ac59de9cb392b54837c9ca6c3e7cbff", + "regex": "(?i)^https?\\:\\/\\/compassionate\\-watermelon\\-m3nt61\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cc5b5\\-bccc9c76\\-97ac\\-413f\\-8c1d\\-9df2495e420f\\-000000[\\/\\\\]+SxD1Lvc6xbEu9VphQdiWtX9c0uk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b12b38\\-407128fa\\-8073\\-4c52\\-8dca\\-6fb7eab3f03a\\-000000[\\/\\\\]+FFVcabbc0H7NTh_MWxMJOgj2NFY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad5be5\\-9c7a44fd\\-b9d1\\-4577\\-91b2\\-b3d2c407226c\\-000000[\\/\\\\]+FbVUgNVJjtVRiGL0U4fdN\\-hn7vA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e4e50\\-58f6e447\\-b7d6\\-41b4\\-bfdb\\-790fb2c1a57e\\-000000[\\/\\\\]+18Im3vZUH1Xcro238JxUjdmg2bI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e1147\\-dd363d02\\-e293\\-46a7\\-a113\\-c40aff8e1dda\\-000000[\\/\\\\]+VHyGmxi1l\\-iri42iKNQBWHeEAfU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4de42\\-b60b0807\\-c456\\-4912\\-86e3\\-cfe8a707057b\\-000000[\\/\\\\]+lXXbBcto5P6S60LSEKsm91LcXcY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245959f30\\-1f3871ef\\-78c2\\-4739\\-b98e\\-c5a80645f95b\\-000000[\\/\\\\]+NwSGzC4OtsluSgrghJt0ubWE7EU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b87a8f\\-167b85ce\\-f470\\-4a5e\\-918c\\-73d3b53a4c59\\-000000[\\/\\\\]+obtpc7sOpFlmuU5hKwvTE5A0TWo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245613401\\-b5df7758\\-298d\\-4600\\-92f4\\-91de86fbf34d\\-000000[\\/\\\\]+h_UyqVdSfm41bOqfF2iCi38wIGU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b41e45\\-58555c46\\-3a12\\-4432\\-989d\\-44cfd0fefcc0\\-000000[\\/\\\\]+i4rjB7NIZQtNotfZtpUvOyqC4Wo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a54e09\\-c1a3b707\\-67c5\\-4aa3\\-b355\\-08387998ac8b\\-000000[\\/\\\\]+cef0p1XimVSeZ8pkm2Bm1UQca48\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457370fa\\-b922edc4\\-06b6\\-408e\\-b26d\\-f938840e0c35\\-000000[\\/\\\\]+SclXQjiUMA8BT5rqd0lT9\\-VtYI8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ef5db\\-c2e16670\\-b113\\-4047\\-b1e3\\-4f949e152650\\-000000[\\/\\\\]+AtBmiGK\\-91748XIrpY5i3bg5EkE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579fdd8\\-dd691a05\\-0bd4\\-40bf\\-86ae\\-83dd24c935f1\\-000000[\\/\\\\]+hCTUxd7WgSYchhNhxc5cMURc228\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245709aef\\-d2d3a7f6\\-cab8\\-4660\\-825e\\-1ae47b9fe892\\-000000[\\/\\\\]+x7BsEWvS3eAVPFYAlvF2tf\\-XSBw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8f9ae\\-2a4e7537\\-34a1\\-457d\\-9dff\\-53e9a904ba9d\\-000000[\\/\\\\]+fflS28v8VRhlNJAj1FpeR1ySFEk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c00963\\-177ce762\\-45b4\\-45c9\\-8ee9\\-f281162adb59\\-000000[\\/\\\\]+mamKGiiLkVdU7SgNgUYXfIdx61w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245811ae4\\-0a4ddb39\\-4b99\\-4815\\-b728\\-2d74c3d61b1a\\-000000[\\/\\\\]+sIrLnq7_o0HxSdEw_1n2xUBpK1E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0c174\\-33bec9fc\\-91a8\\-44f5\\-8f7e\\-025fc1cf02d9\\-000000[\\/\\\\]+Tn_24Jzu74KN8SR_jwt8UoBdMME\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459a91a8\\-59adfbe2\\-73d9\\-47fd\\-a601\\-fe2345568aee\\-000000[\\/\\\\]+3YRP91BabN2Bu82CXqpJUca8Kw8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598d11b\\-acbe5bd4\\-a7bf\\-44cd\\-8abb\\-9039f44383c2\\-000000[\\/\\\\]+K_KWHPT9Br7XBp3cKzlmSqh5ksA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597f705\\-1b1ceb9a\\-a25f\\-4405\\-9165\\-080811252f87\\-000000[\\/\\\\]+tk2m9AveyvJ549oxFWJLfe5_d84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570b834\\-0344760b\\-0c4b\\-4fc8\\-ac43\\-f891631dfa39\\-000000[\\/\\\\]+cxt5ER3uQy3MwPTevlWT2ktu2rE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457531c7\\-dbd5e839\\-8e42\\-405b\\-8cc2\\-c0d1b58425f9\\-000000[\\/\\\\]+tpcHOfOe82LkI0pn9Dm_9J2\\-1ms\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583038c\\-c98c8be9\\-9f8f\\-451f\\-8f80\\-54bb0d1d980c\\-000000[\\/\\\\]+nI2iiaWEdS5AgsTCKmBsTIy7z\\-Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a5f06\\-5ff4a2e8\\-69f0\\-4f32\\-9b8f\\-64ed01eb2a6f\\-000000[\\/\\\\]+LMtqk57Rv2l7enQCt6J2J_NkFzs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1fd85\\-e8d423a0\\-0118\\-4c9a\\-aacf\\-1bdd3be05044\\-000000[\\/\\\\]+M3MjLmIia_nME2szFCnzAlcd\\-Xc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e932c\\-ebeae517\\-5b02\\-49f4\\-954a\\-f79fa9df3b64\\-000000[\\/\\\\]+5hYVtpr6fbiMDoSdJW36iHJNkMY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245727083\\-f06dd204\\-d5cf\\-4869\\-83df\\-cc96d932d82e\\-000000[\\/\\\\]+Sxub7Rp5BKfeyZOII0R4rMwMAzw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af8cfa\\-daa8b1bc\\-8f93\\-4f9d\\-a57c\\-3454c43d3c10\\-000000[\\/\\\\]+rT01lSWl8f0Xan\\-8h0iPOp0OurM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b23b53\\-6fa2ea1c\\-46e7\\-43b4\\-ad22\\-519abc02651f\\-000000[\\/\\\\]+f8rEM\\-pSvMNB\\-mv\\-MGclzZRvBu8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245821a4f\\-39112fd3\\-8308\\-41f5\\-977a\\-da5ecfe55708\\-000000[\\/\\\\]+8W4awNiPPVzgOkqDH6D5jtP6phE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b78928\\-0f1030ba\\-ebf3\\-4129\\-baed\\-ba86cbcd026b\\-000000[\\/\\\\]+ZvngulPSvXyIG\\-lRgOm6D3\\-JUGM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be180f\\-509b62e3\\-36cb\\-4ae1\\-ba2c\\-bb5913773e3d\\-000000[\\/\\\\]+WrzD2f9dxVXfOsBMYE69uJTjgF0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e52db\\-17099c4c\\-85ac\\-4c16\\-a0ea\\-39b480da85b0\\-000000[\\/\\\\]+P\\-x97HUsVCyUr5_qBea\\-e8X0RpM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b99827\\-865df875\\-7eec\\-4864\\-b99a\\-75e47cbe2bb8\\-000000[\\/\\\\]+AXyOrZLKYZJrANB7SxUL0J9EVOM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245807429\\-8d3559de\\-2162\\-4c3a\\-b1f6\\-7122ac589be6\\-000000[\\/\\\\]+B\\-29uk1Tem7Avf_VFXYPjIyzI_w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ee9a0\\-689901ab\\-cfa0\\-4d92\\-9068\\-408ee8bdc8f8\\-000000[\\/\\\\]+13eQzzNSy7SctxZ4mVlIKr9NaHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ae6e3\\-c3c38395\\-15b5\\-41b9\\-aa14\\-be210ff4babe\\-000000[\\/\\\\]+ljoSkc2\\-uQWRFoJw6J4xaiIT23M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595f42a\\-26008cc2\\-ad37\\-4f05\\-82e1\\-554c15b7fede\\-000000[\\/\\\\]+XSEva9jYrhib5gR5XJzXp70Mlys\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245954e7b\\-8e7b767e\\-d4b4\\-4eaf\\-8add\\-d191449b4382\\-000000[\\/\\\\]+VjE\\-TxmFLVhNiy5gxZxFWgp0r2I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458311e1\\-d1447e0c\\-8738\\-424b\\-ae76\\-a66c2f9c15e6\\-000000[\\/\\\\]+wlJ2eU8osRZ2k3HsibV0Zqmd01Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a2489f\\-a6f626f8\\-c23e\\-4757\\-8696\\-78ff9472562e\\-000000[\\/\\\\]+rBMGbR9\\-XQ\\-VbJYMs46sVU6\\-0FQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac2b75\\-37fdd1bd\\-32e8\\-4521\\-9cba\\-00d11a884b44\\-000000[\\/\\\\]+9Nw8DtClkLKWekoXc5CeFXSd\\-nE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245992d58\\-5afdde9f\\-4917\\-4413\\-9a6f\\-6acb14d16d68\\-000000[\\/\\\\]+p2aaOmoJ10ym5OxkpsETJPf0WRc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8745f\\-2fdcc1f9\\-4e8d\\-47a3\\-ae2c\\-3b206049e92b\\-000000[\\/\\\\]+48dAgALrMj6uL3JHq4i4ciXShAI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457b4e12\\-3427bf9f\\-9365\\-4b45\\-b160\\-3b03ee6d529c\\-000000[\\/\\\\]+PCyCslMGOM8EbLjvKLZDqmgW0tk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245988c33\\-2361953e\\-da82\\-432d\\-95de\\-13f1057a99b6\\-000000[\\/\\\\]+aUjzi6vRTKDz_V53KWlJSYEbOHY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455ba797\\-886cf221\\-87a3\\-4058\\-a9b8\\-4c23a4f5fc59\\-000000[\\/\\\\]+g0ph2ZKFfyMarjdBwR8xb4PSdUU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598e787\\-116f0ab7\\-f1ec\\-4cc2\\-a62d\\-0b1c934310db\\-000000[\\/\\\\]+x3J8j8TP82TzYh3bPlktoHD9UNg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bce044\\-aa1a3e3c\\-a095\\-442c\\-bccf\\-feb3edd5a7cb\\-000000[\\/\\\\]+JV9gkm2noD1vPeqAXpa4sVl2E2k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5186d\\-6d02027b\\-77c9\\-441e\\-b49d\\-f9082d24056c\\-000000[\\/\\\\]+\\-c8PCcxNWGpgL_t6n7PBLDtSZBY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d4a8c\\-504e907d\\-4b56\\-4a2d\\-947f\\-d658343a0212\\-000000[\\/\\\\]+SIdjtGAYTEtuJMekViEkH8d6VM0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad837a\\-333a71ac\\-82d1\\-44ac\\-beaf\\-12c25acf5c62\\-000000[\\/\\\\]+zJm4OjQWUyPnx_sbjDtzIRZcpH4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f4a95\\-cbca514c\\-9740\\-464c\\-a7f9\\-598590632734\\-000000[\\/\\\\]+uxhVp4F1Hh5scJkCgKTGFXJiuRg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924560ef25\\-1e109bd1\\-e650\\-4258\\-a911\\-1b130319bd48\\-000000[\\/\\\\]+AVrz2niTopGfyI7deQuipFhsM7U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bdcb42\\-3416d16a\\-ccd5\\-4001\\-8a8a\\-e5ca33e35a5e\\-000000[\\/\\\\]+0OvMxs6pYqRM7oCLRKLjPGZ0TKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568716a\\-0dd3960f\\-229b\\-4e13\\-9835\\-f250cbffdfaf\\-000000[\\/\\\\]+PPs\\-4ThSosBZX3aD4GrOW9o_VFs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ec16e\\-7c3d943d\\-5526\\-43bb\\-a69c\\-6b87fcbd249c\\-000000[\\/\\\\]+3v6tgP2QhUL1mE_TboafpNkWUlA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f13e1\\-769ba574\\-d256\\-4fa2\\-b0a6\\-8b18b99417da\\-000000[\\/\\\\]+K31DC5w5pg8LjetZ0EnzvaQT6YI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b16bcc\\-4fc226d3\\-2eec\\-4f88\\-9c7b\\-0069522d9ba3\\-000000[\\/\\\\]+MfRu2xN0dbvJ9Q2y1HLmQWlraHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c97781\\-b8127653\\-455d\\-4e38\\-ad85\\-9d6a2593bb0b\\-000000[\\/\\\\]+EdE9F_v140D7BqtZzQERpUkyd5Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5ae0f\\-8d79ef5a\\-9baa\\-498a\\-938f\\-5836e0d8d9e8\\-000000[\\/\\\\]+P34g4alKO5_zJkmahgbRrseclJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574f572\\-813d9771\\-a66f\\-45d7\\-b96b\\-aa9570be0fc0\\-000000[\\/\\\\]+mOTE5HcwKlaBa6EVzGJagj4\\-t9A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585e7bf\\-f4eca958\\-cf96\\-417a\\-a966\\-44ac05aa800e\\-000000[\\/\\\\]+3amZdIppjOvh1mIfTww3YPvCIhI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457fc2d6\\-bbb9c27a\\-c52b\\-4f63\\-9885\\-a5927f38b6bd\\-000000[\\/\\\\]+_H4YbIuWAXK1eCaPyBsP3VSDDYQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245746759\\-8b4eb416\\-b028\\-488e\\-9ac3\\-14e772d03a27\\-000000[\\/\\\\]+kVNkV1ZMw_m72zLwoZvQvSPNpOo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cab62c\\-7756e71a\\-5c48\\-4b35\\-ba8f\\-771f73c39279\\-000000[\\/\\\\]+9\\-dYk3xsarG6JSFgv\\-cGzvS_jK4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b9dc4\\-9f7d7d70\\-59f1\\-4cdf\\-adca\\-6d3df25700b8\\-000000[\\/\\\\]+zToblK4Y9OAinzGn4DpONcYu2Wg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576f3ee\\-8e82def2\\-6eae\\-4c66\\-b165\\-e0a63f0776cc\\-000000[\\/\\\\]+0192ygcVCZJlkA_QqOdAxXyzQLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4ac81\\-ac5bcc9f\\-45b0\\-451d\\-a0e0\\-d2bd59f1dbad\\-000000[\\/\\\\]+jLYefnAnThBViYWanNeN5Yfg5nU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924563c124\\-9f807263\\-90a8\\-4892\\-8f50\\-5c1b2d967393\\-000000[\\/\\\\]+1ajqXA544AnQI7pyHlzmWS093DY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad837a\\-333a71ac\\-82d1\\-44ac\\-beaf\\-12c25acf5c62\\-000000[\\/\\\\]+klr6JsLm2rYRxW5VJ3NDaXYHk7A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d8769\\-36772b43\\-1fe6\\-4aab\\-ace7\\-3c9223e9b48c\\-000000[\\/\\\\]+0wTsJL_onbSa3HXauxM6Ntm7xLU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232979e5e\\-62b5c68d\\-94c9\\-4de2\\-9dcb\\-9b7771532684\\-000000[\\/\\\\]+tR3dgVFUdHNZ\\-bbpuymeq3HW_nc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8a76f\\-11be2d7c\\-7192\\-4b0c\\-b429\\-f69359b17257\\-000000[\\/\\\\]+lDALfhc7pzUToVdTxk\\-2kjGBGzk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566287b\\-996bccbd\\-6c6b\\-4e4b\\-bc1c\\-78afd05d030d\\-000000[\\/\\\\]+juOpmnu2pzfWVG9S\\-pnDRPl2PqU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac4385\\-1701f552\\-7170\\-4497\\-b3e2\\-63391ed5d07a\\-000000[\\/\\\\]+a2bBHB8m9Zo0QY0NfKI8nXC8pvU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6162f\\-0d07573c\\-5e1f\\-45a2\\-b257\\-3477de0cf06a\\-000000[\\/\\\\]+BQrzQX70VYmNygpRivyJW\\-jaUMY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abcbb0\\-f7a07caf\\-9ba5\\-4f85\\-8a52\\-12837caa851a\\-000000[\\/\\\\]+dAytnKLDtp566LJrQgbEPbYkRhg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b58249\\-77f65265\\-2eb7\\-47ae\\-96a6\\-5a6b8c726c39\\-000000[\\/\\\\]+GWid3wzUbSEoSaia_7QpfMNJjtk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ea0fd\\-8d0fda09\\-cd12\\-4088\\-afa2\\-1bfc54a2adb7\\-000000[\\/\\\\]+l0isPPdHfTMi5_xVNEkSawBFnxI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d59b7\\-3948c6b7\\-eee5\\-4180\\-8778\\-83861baaafe1\\-000000[\\/\\\\]+aZETkFKycQJwFUVnUsz3vADbKgo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459572f5\\-9d87669b\\-2af7\\-4b1b\\-a771\\-db230e3a60ae\\-000000[\\/\\\\]+zXnDYcZ1ORqBp0\\-ox_1MMIFeXvQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1f86e\\-5bdfea5e\\-d849\\-4d60\\-b654\\-3925f0514f32\\-000000[\\/\\\\]+jk7qE3x0QtXJH6OqXiVCtqJZ5vA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a91a9\\-27b5dace\\-5729\\-46d6\\-8099\\-00648e3dff4b\\-000000[\\/\\\\]+o_ttrYHwUOKjXpBdCyZ9BjqsGD8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b630ae\\-027ae83a\\-68a1\\-416e\\-8a15\\-c4f4f08824d8\\-000000[\\/\\\\]+BZ5Q6rgZWry_4TAOmH99NHdHErM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ce5f8\\-1b075d15\\-3d3c\\-4c58\\-a2d2\\-6921c8e021ce\\-000000[\\/\\\\]+8WdX0oktso_79SIuaw5bUa5y\\-5Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a0f27b\\-23a2090e\\-513b\\-4fa9\\-aa39\\-25261d024124\\-000000[\\/\\\\]+aeULh2DxKZ_G4\\-H0WDcm_xks1jk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456efd7e\\-8ad3580a\\-a9f0\\-40f4\\-912b\\-f1f7e68657ad\\-000000[\\/\\\\]+GCxMawYKMlrKornPAmP3I3Q5tUY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c2ffdc\\-4be93346\\-4210\\-4894\\-b2bc\\-5beff72dbaf8\\-000000[\\/\\\\]+8vFSywheRiHSQKakl0dW\\-0KTh\\-A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c84a8\\-d0663a48\\-b22c\\-4303\\-8480\\-4d402fb1b826\\-000000[\\/\\\\]+pBB_ZB2pIFKfhwx\\-vDkcAGv0gT4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f0059\\-abcabde5\\-7c9f\\-49de\\-95ef\\-a5f2550670bd\\-000000[\\/\\\\]+mIkynMBDARWlrmyQsjQYPZZNNLE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599adff\\-8cc4becf\\-2df9\\-41c1\\-8bb4\\-a2ec7351dda8\\-000000[\\/\\\\]+bNWlSR2s50xA99_xx2tJJ1Pf36I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598b757\\-025a15d8\\-1ea0\\-4f67\\-814c\\-bd8757c69a74\\-000000[\\/\\\\]+\\-4odwyheCuSEfGvVXEWcaNuyoXw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e1807\\-82954cc7\\-3135\\-42d8\\-8361\\-7f475b965015\\-000000[\\/\\\\]+9Dlx6\\-fLxjKKUkSLnLRHcxDzl_U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c66122\\-6923dd9d\\-dcb6\\-4c5e\\-bf10\\-38a41410b2ba\\-000000[\\/\\\\]+2m36aOw4WLkL\\-oFdS5UgUC3l0jI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924571178a\\-9cf2ac7a\\-b003\\-4693\\-94b1\\-1938c44232d5\\-000000[\\/\\\\]+9m3gFZZlAt3Wj0i72zF0cbM\\-Sqw\\=394(?:\\?|$)" + }, + { + "hash": "9b4329d8f59353c20d680b084ab4a5af71f145fbf0312423c561f17d26282ede", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e5576\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457eaa1c\\-69464744\\-2450\\-4a00\\-b5f9\\-a14a83dc1236\\-000000[\\/\\\\]+q6L3jPhVZQ5juP1OCd9f5F4tjCI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d86ca\\-da9ba4fa\\-7c29\\-4904\\-84b8\\-d9383ead492e\\-000000[\\/\\\\]+uOIGH_Dq040av2YFq\\-gWk0_YZ4s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596fec0\\-7d577a7a\\-72aa\\-4ea5\\-97f2\\-eb51b39ed41d\\-000000[\\/\\\\]+O6R78_TdLFp0faosPvEwZaaElDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b37b19\\-5c1d72f9\\-acab\\-4ec7\\-9717\\-489360a0fafc\\-000000[\\/\\\\]+ZRZa9YV3D1PdCz12MLZ\\-1KbCXGU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459aa16b\\-103f6a52\\-b13b\\-4fe3\\-a5bd\\-84b3beda7e95\\-000000[\\/\\\\]+50XPtfpSUI6f0P5dkVUKHKRBGhQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577d1f0\\-42581b2e\\-d1b8\\-43ae\\-bdfe\\-eadd2673c616\\-000000[\\/\\\\]+mnyRHmR96dEK\\-xNSp6yMXxaxqCg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a347e7\\-0ecba739\\-2ae4\\-4e38\\-9b8c\\-89f072ae5e1d\\-000000[\\/\\\\]+42MO2r8xEbokcm333D8DuTMZZQ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245759ebf\\-9dbc19e5\\-07df\\-427f\\-9010\\-1f418adee18d\\-000000[\\/\\\\]+qmI5eJ3l6uzMLhd8XdS2leW3zHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598d4a5\\-9a4420a4\\-65da\\-4320\\-bfda\\-0e1f552cbd22\\-000000[\\/\\\\]+zzXN2_gPhk6tKDnsyHZEt75lxoM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5f7a0\\-94ecff24\\-fccd\\-4081\\-b6ed\\-4e788afb92d0\\-000000[\\/\\\\]+o9x70xToDHfzGMOwaEhemYmntYI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d9925\\-0cf51b73\\-0dbe\\-4c77\\-b5f7\\-00652b6ddd8a\\-000000[\\/\\\\]+hpjL9J8px4tWLjT69dt1is6KgmU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599636b\\-a257aec1\\-f664\\-4b8c\\-b19a\\-18d95195d177\\-000000[\\/\\\\]+XWZQwY\\-Rlt0gMxjIDwoV1RFaeBw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3e879\\-2306e6bb\\-7491\\-4d3b\\-8d73\\-92fab1550f36\\-000000[\\/\\\\]+zKSMdhXsb\\-flFVuiRYEVTC4nCKE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245833e15\\-5b6a2c17\\-b7a3\\-4982\\-b4e1\\-62edff13d9bf\\-000000[\\/\\\\]+HrQuj7eu\\-HKmObg31Uf3gAqm9wg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245623414\\-5bd04974\\-8461\\-4ca3\\-8d7e\\-5249149008cb\\-000000[\\/\\\\]+091JMZrRO7jbSfAvfpi8WRXF5kc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3a51d\\-2a293a9a\\-9af2\\-46b3\\-807b\\-d6166a535dcc\\-000000[\\/\\\\]+0XE2hZw8eiPIms67TY7KNp5bvD8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afc3a8\\-31789c55\\-5e0a\\-4c5d\\-b5a5\\-0cd94e7e4f87\\-000000[\\/\\\\]+d9XFFFbAdt7B4FRrGMT5UW_84Qg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589a961\\-cbdf62ec\\-2adf\\-42a6\\-afdc\\-e7c1e7b0f782\\-000000[\\/\\\\]+aeXrk7oTjBdjzBvNsj9jAapoGAY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e78a0\\-03fd4ffd\\-c09d\\-4205\\-a1bc\\-9351e2834598\\-000000[\\/\\\\]+S1se15jCGp_nk7Ct8LVd5NpMpso\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ce5fa\\-e3b2212a\\-fbf2\\-459d\\-b9f5\\-9a8e910c7684\\-000000[\\/\\\\]+qsQkLRhwEWzZLyYBpf4n7JjccLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bba3b1\\-e6970767\\-6fa8\\-4d94\\-b79b\\-b83baa9b152c\\-000000[\\/\\\\]+gx7kXa_K_4vYcATmEcbwxMI1\\-CM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a54518\\-3e77f8a3\\-f8a7\\-4edb\\-99b8\\-39ae470f1328\\-000000[\\/\\\\]+KC9MSenrTCW6lObikg1nZ2lZWKg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0b3b7\\-de05438b\\-161d\\-4200\\-a193\\-c5873496b460\\-000000[\\/\\\\]+kO5Z_63Z_evtUM8YJ7anH6i52M4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ebced\\-debfbffd\\-ea51\\-4755\\-a938\\-ed143d83639b\\-000000[\\/\\\\]+Y93Jy50p1_M_h0j3bHYN1HzMS84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cca20b\\-2643dc6f\\-ee92\\-4bac\\-98eb\\-37ae2aeaad8b\\-000000[\\/\\\\]+Eq8E39OxkFGTFeYaB2hzAH47tJk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a855d5\\-e614a0ef\\-2d1c\\-4520\\-9950\\-594937e21dcf\\-000000[\\/\\\\]+XFaMngni63xwaPbsbWhxa\\-8GVU8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459a77ff\\-5e9ba5e7\\-9228\\-4cdb\\-94f1\\-0aa60405845c\\-000000[\\/\\\\]+sLqclJ\\-vK8oAmVs3WWP41mmO2N8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ec247\\-7578c086\\-5d99\\-4137\\-980a\\-e78f832e1a8d\\-000000[\\/\\\\]+5hrWglLD8PHqMXwXxRPyNUmrHe8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b14b3e\\-a351f25f\\-3310\\-481e\\-8f12\\-202c2fb03b80\\-000000[\\/\\\\]+8qzenSMrv\\-\\-wlXlt2uOrrw3NN50\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245905094\\-6a6ff0ce\\-9511\\-43d7\\-8c5e\\-bc19357534b1\\-000000[\\/\\\\]+etNU4dNZLmXymdRwxJiX2eFXj0M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457b913d\\-5f0480c6\\-9ef5\\-4007\\-89fe\\-e7dba8bb0830\\-000000[\\/\\\\]+Qk5TI0QYIw7xGvaMolRXEU1MQYs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7fd74\\-b9f79cf2\\-9b4e\\-43fc\\-80f3\\-8d0dc701dd83\\-000000[\\/\\\\]+Wmle96\\-mYIcG28q\\-2HepYBQxDDw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924591b1db\\-75d48a32\\-eb5d\\-4770\\-8c93\\-bb1ffc408097\\-000000[\\/\\\\]+A1NwuJqUQviH2AXoeUvdI_fuMW4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c6cc3\\-447e4490\\-4959\\-4a17\\-8ce5\\-3c9cd70187ff\\-000000[\\/\\\\]+zR6oXtXymNA\\-i62sdVUEtIuUcXc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457babea\\-94c925ed\\-06b1\\-4406\\-a97b\\-a2ecf8f3dfba\\-000000[\\/\\\\]+P6EBcpfwd1I9ivKCbb0BZx2ezsk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a2929e\\-ba1d9942\\-06da\\-48fd\\-9abd\\-25be83be5509\\-000000[\\/\\\\]+xyVq8E8e94GrAyyFybLDTq_2gSg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245710476\\-1cab4102\\-69ac\\-4592\\-a527\\-b8363c8ab8a3\\-000000[\\/\\\\]+iJIqNU4mtxZyen8tBnZo5KSKCsw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598b757\\-025a15d8\\-1ea0\\-4f67\\-814c\\-bd8757c69a74\\-000000[\\/\\\\]+wGSR7021nfgxjtOzt7_iOSIm31o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6c37e\\-2ed962d0\\-1fb7\\-4aa6\\-b955\\-333a123b27a7\\-000000[\\/\\\\]+wNxj6nNDl991oNCgdQOFnc1tE5c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b49280\\-8344ebb2\\-5a5c\\-4993\\-8473\\-78a30fd2e27f\\-000000[\\/\\\\]+UFG46fYbCynKvpccv0gDjgl5rxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456716a4\\-a0ab68e6\\-3e5c\\-4207\\-9e0b\\-f8bae4875ac9\\-000000[\\/\\\\]+cV64sXvkfZhAVjIFXFCF9sjw6Hw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7897e\\-56c38b7b\\-aad7\\-48f6\\-9ca3\\-54df5b385568\\-000000[\\/\\\\]+p1hvCb_ep2sEArt__orY0OKHI\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c44c1c\\-4bbdd08b\\-157a\\-4a7f\\-8c2f\\-84f09899c0db\\-000000[\\/\\\\]+n4YULTPjaQK6nXsDb90xnZDaCwI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb40f6\\-1b1e1261\\-193e\\-414a\\-a665\\-ab8c931d1f3e\\-000000[\\/\\\\]+XDIoMNDGBngNSiX_XxbaI3HQQRg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5f27a\\-918ff865\\-5674\\-4219\\-8b2c\\-e73952cf8f90\\-000000[\\/\\\\]+\\-fBKD_6LZkMM4sXtjrFDYaHoqPU\\=394(?:\\?|$)" + }, + { + "hash": "4d12211348d774ad3f05a1aadf65a6aff0a4bece774d5868d2a12c6f3ffccdf1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b09e1\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bda745\\-7c14cd4d\\-79c2\\-420e\\-b62d\\-58ee458eab43\\-000000[\\/\\\\]+hKRg7AV9CUFhrLL7oEakWHAiRt4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456abfa4\\-bbead976\\-896b\\-4ef2\\-9dc3\\-6b510010e3d8\\-000000[\\/\\\\]+cXbwBuH2TCQLgqr51czOqoTwyjY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b2ca3\\-300abfa6\\-aaa2\\-4865\\-8675\\-220272b00904\\-000000[\\/\\\\]+nGgwpIYS5F3fifNbAlIIpm9yElo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d1233e\\-c5e0d434\\-ee85\\-4c80\\-bb2e\\-9342cca380f3\\-000000[\\/\\\\]+rq9Tg_QpXcG10187mlISjqUVa1A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c6d35\\-e11cc433\\-4551\\-4ae4\\-91f5\\-a605fc04d730\\-000000[\\/\\\\]+TAP\\-3VGHtGo2CeOGZQtN17DtWeo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245793123\\-cf9b2c4c\\-d3e8\\-4f88\\-9ef5\\-c3613b99f939\\-000000[\\/\\\\]+JYtqPcVqPAPELC5irA1yhu4jgeA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b41159\\-a7f5644f\\-8f93\\-49cb\\-aaed\\-f2db92dea88c\\-000000[\\/\\\\]+MRxQ3F\\-T3hp2OfL5dCTpmulpbTY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b87d1\\-caa3d5c2\\-eed4\\-47bb\\-a447\\-f68983c1a620\\-000000[\\/\\\\]+Fd_8ogUAlIo9IWgbwWH2OU7ww8g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c36db\\-e4e46db8\\-a7f9\\-4e22\\-a4da\\-1d886c2dbc31\\-000000[\\/\\\\]+QCM\\-IxEfDLiM\\-5DlcYNv\\-LqgdDs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b0562c\\-a6612490\\-e8fc\\-464f\\-8075\\-6fa2c06f5110\\-000000[\\/\\\\]+qth\\-yAuxO3qExg4WQU92yIYc0K8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f0245\\-132236c5\\-129c\\-4247\\-b105\\-7ec4ef34889c\\-000000[\\/\\\\]+hMp\\-ScvSz6GLu6NEnajQ58lcMds\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8acc7\\-e7a4c326\\-5cdb\\-4d69\\-ba6e\\-1d594627777c\\-000000[\\/\\\\]+8Wk0D9NATmg7uJJ2Wh7vP4CDyzM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595aff8\\-77400dda\\-e18a\\-4d9b\\-8083\\-5b9a135736bd\\-000000[\\/\\\\]+23sawP4yN0QVjtWd5EH0YkdPhnM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd98b8\\-8f2d1586\\-f977\\-4b06\\-9995\\-36c6631db2ea\\-000000[\\/\\\\]+Nb1ipxk3h4fCnQ_OieW9WEyG5FY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587db5a\\-e0ced99c\\-1991\\-49b4\\-a0b6\\-430d202385bf\\-000000[\\/\\\\]+3XwH_mjSkd_IaZmbWgLb5ZnFN9s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a8b32\\-44dfc942\\-86db\\-44a4\\-a564\\-54b53f036704\\-000000[\\/\\\\]+Lq9bfQCdoFpeluIqGAYaBIy0Xss\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459823a7\\-511d0fb5\\-9b3d\\-4cd1\\-9ed7\\-618fdefd85ab\\-000000[\\/\\\\]+kvjWzhVnygNnvE450cSK4xFk1yg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e1807\\-82954cc7\\-3135\\-42d8\\-8361\\-7f475b965015\\-000000[\\/\\\\]+IRDBZ5zzq4JFWZNQwPLIniSBT1E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7e226\\-b4b05f3d\\-a0cb\\-4048\\-a591\\-034f1a4148cf\\-000000[\\/\\\\]+FjMxloISnl3UXeF9MHgV27kGM1I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597627d\\-0932fdb4\\-5e5e\\-4954\\-9bed\\-7b6651c6fa57\\-000000[\\/\\\\]+155chRQMvI41re7uGQcbZvZNtuY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245713d45\\-8d6bb3a9\\-ef9b\\-4062\\-ad62\\-2783cf7b7fc8\\-000000[\\/\\\\]+v2udAzkuHFkdsAD34ERshhMAVbw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583a297\\-a907e774\\-3e10\\-4d99\\-ad8b\\-cf87285fb184\\-000000[\\/\\\\]+e2eQ1tNxFKXmJxyQy2f_J7l3s\\-s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b69a7c\\-19d9855c\\-a6dc\\-4283\\-bf83\\-c4fcfdd9a349\\-000000[\\/\\\\]+5ikzpSoYTIvq3IVuNOrYmvUL4dc\\=394(?:\\?|$)" + }, + { + "hash": "9836409c36b45218d8bbc574d724b71c035e31131e4d7ab2bd64c85558a2a000", + "regex": "." + }, + { + "hash": "22b927f13c8b9ce6587a717da10ec7104fae39dd98c1d69afe11f77bb7bf19b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9081[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456db854\\-c4b74630\\-1912\\-468f\\-9130\\-c73bbbaf1fee\\-000000[\\/\\\\]+LxdEX7clQSzF7NOas3g2qWXyrTM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aeb23b\\-226cc827\\-081f\\-47f3\\-be7c\\-f6e8bd9b1299\\-000000[\\/\\\\]+NWxPQQBYirvRW3ajHwVGAGsKEug\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bca35\\-48ff9399\\-9f0a\\-4b50\\-b4f0\\-b5a92c1471b9\\-000000[\\/\\\\]+Lzualpg50s3fwQJIzXN\\-LQZwik4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d0322f\\-0a1d41f2\\-5c76\\-453a\\-a0cd\\-58257faa9009\\-000000[\\/\\\\]+wiZExyZtoRynAgpplnFqUJkgUCo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d1713\\-7097582c\\-49a5\\-4797\\-85f9\\-cebb3a4965b2\\-000000[\\/\\\\]+vy9y6ky5Ye3Hp6\\-\\-DfUmBP6nZbU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456b2511\\-687ae7e9\\-cd5f\\-4951\\-b9a1\\-ea055ca60119\\-000000[\\/\\\\]+CI8yJJXlDk7_\\-tlQ8cTcSPFOlZI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ceecb3\\-95f1504d\\-ba04\\-4e84\\-b059\\-a934bc67a8e8\\-000000[\\/\\\\]+0WQHD5Azxcv33sOjreXSkE2QnQY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa6835\\-bdd3e393\\-13f2\\-4452\\-8fc7\\-3aa32df473d9\\-000000[\\/\\\\]+aWi63cYyWvfxT3zlZFKmhtw324U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577b1d9\\-1a202073\\-d20b\\-4a6d\\-84e9\\-ee7dcbeeb88a\\-000000[\\/\\\\]+n8X7pL5Ojasr5U3rliCQnMbeDo4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245baa8dd\\-85c11886\\-2d3a\\-4c04\\-af43\\-abd16980e268\\-000000[\\/\\\\]+_dF33QojiNNaZ9mm7cphd6Fanwo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd5010\\-9bc32932\\-a5e8\\-4532\\-8311\\-d4b1c90c12e8\\-000000[\\/\\\\]+S6zByis4BIqWBLXixObN01C5XIA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf0f91\\-63bd167f\\-bed8\\-4bef\\-a46a\\-84e6205d23d2\\-000000[\\/\\\\]+Fan1a5LVWm1wSAzPeMxf5xDsM\\-k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568f8f5\\-7affc1ec\\-1e07\\-4641\\-b275\\-7cf2a18e9bf4\\-000000[\\/\\\\]+jrvTy4MJVyzhpMpmmzmKEjKjMQ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a07abb\\-86241c0b\\-4a03\\-46bb\\-97dd\\-d4efabf08cae\\-000000[\\/\\\\]+my7fu_WqQCwCCZfshob6IzNJ_M4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c64eac\\-05dab01d\\-694c\\-44c4\\-b56a\\-736be79ef479\\-000000[\\/\\\\]+OIFvggVQwIvFSJxUAeO3skTGxLk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b0bd6c\\-19ae93c1\\-9fa5\\-4df7\\-aa5b\\-f0fa5a70cfc9\\-000000[\\/\\\\]+OYsZQ90lNVLW\\-B4rnVSYCDutyKI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a36908\\-73bae0a2\\-5b24\\-4963\\-8609\\-a5f47590778a\\-000000[\\/\\\\]+at8KDOrHaoHIGkoT9IvcxAwrGsI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458dc880\\-8d1292bf\\-1e30\\-43a7\\-a850\\-7213cc0b81b8\\-000000[\\/\\\\]+qbC6v45wkvDzn0_ap197C71xZdQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b79dd\\-669acfe7\\-4caf\\-4740\\-8d23\\-c7968b10c244\\-000000[\\/\\\\]+foKCjoiRFhuWKRZSKYEjiNdiUVk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a096ba\\-722a6e0b\\-82e8\\-47cd\\-bec7\\-7f4a7a89a634\\-000000[\\/\\\\]+3Z\\-ttfEnxQxFSsz5ZJ2dq7lzrb4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245613401\\-b5df7758\\-298d\\-4600\\-92f4\\-91de86fbf34d\\-000000[\\/\\\\]+sxbk07rRmNP09YhSYgSM\\-jiA_Xc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a73984\\-83620ca5\\-296b\\-4dac\\-b1f3\\-4d01558c2ffb\\-000000[\\/\\\\]+am\\-XQH_r5R_N\\-Uj5HQy4GiGeLPA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ef2dd\\-496cccab\\-9b9b\\-49c7\\-827e\\-9c5e7a865eae\\-000000[\\/\\\\]+LNbJxpbFmmXPflJtnTl1Ghnj680\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458bea9e\\-871d13be\\-7446\\-4ccd\\-ab39\\-028faa060277\\-000000[\\/\\\\]+O8sPVBncJ70OEruk5VkRAfnheS8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a73cc3\\-f81f6858\\-66c0\\-40f2\\-9777\\-971e706bee9d\\-000000[\\/\\\\]+CZMuSgayyxvSAS5Jwh7frDnQmss\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459409cf\\-62b1310b\\-9494\\-4751\\-846c\\-b987315cd72e\\-000000[\\/\\\\]+tPBz\\-yA6aePnNoq_ANhcfkT5Sr8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7f27c\\-0358b52d\\-e8d9\\-4913\\-8e9c\\-628f0b41b46e\\-000000[\\/\\\\]+hUJIS89K8mvT9e85iiPw4ynG5ko\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b1604\\-8cfb6a32\\-78bd\\-4491\\-82b8\\-fd3b7bbaa803\\-000000[\\/\\\\]+6NvtfyXaM3p5SWDrdm93r6LwS3o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573e899\\-11810aa9\\-50ac\\-4730\\-801d\\-e6984311723a\\-000000[\\/\\\\]+\\-x9yBwxjSwHa70xiSSZgt9eHcYU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4d927\\-cf60df9c\\-8a23\\-49aa\\-a5c4\\-313fb43ffac7\\-000000[\\/\\\\]+v_6nOOgQvCRTCMmad0XZ8UjFXRs\\=394(?:\\?|$)" + }, + { + "hash": "d8a0620cadafd8615fb0eb538a924d43ed22c66530738ce82b7c0f51ba4b300d", + "regex": "(?i)^https?\\:\\/\\/pub\\-693901e5ba4a4d68a5797835bc27228b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad8507\\-d557232b\\-fa4e\\-4b24\\-995c\\-266d8598ca65\\-000000[\\/\\\\]+yTexWdsHMWfrnWxL4sXbZCEyTt4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3f2ff\\-fb7c97aa\\-881c\\-4dd2\\-9b31\\-8fba3b008a38\\-000000[\\/\\\\]+aDpACr9D68TXvZsPhvtRdmtJsbs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f1734\\-7e7fc32c\\-76d7\\-49ee\\-9664\\-ded7c229d9d7\\-000000[\\/\\\\]+GXOEruBPD_7fWdqApds8pJX1hoM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582ea29\\-32430ce9\\-81b8\\-4853\\-8d2b\\-a176cf9c3e8e\\-000000[\\/\\\\]+4TlkC0tlht14SqYNtvx_TuyY8CE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e5e27\\-35fceaef\\-e6b7\\-4d94\\-8e0e\\-1d692ecaafdf\\-000000[\\/\\\\]+iDCIvKMbIcoTLV9Uxev8YAhL5FI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c96d60\\-2c875a6b\\-deae\\-4f68\\-9673\\-c49aa1a5d098\\-000000[\\/\\\\]+WMfMczYYIAUWKtLzz2wVrSnTzHA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459743f5\\-493a5526\\-bf2c\\-494d\\-8471\\-2c01e5753500\\-000000[\\/\\\\]+evmUnIw3uqJH2gKIEC8vzr8VDIg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c4cd4\\-2ba53599\\-469f\\-4c80\\-a172\\-578ad5a7a93d\\-000000[\\/\\\\]+um2KacGeabY5rJe5L_b1BucD_Lg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9f9d5\\-dfa80f96\\-7aef\\-4a17\\-8349\\-4e8d985966f3\\-000000[\\/\\\\]+FIzYIIsCicXLb_89skZOBCVRywM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af2535\\-95ac33bb\\-9f15\\-4e13\\-85f9\\-7573b09b6bc3\\-000000[\\/\\\\]+TP7\\-v9PjkhQ285cTxubTIP6Xn0A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd7d80\\-e7f414a2\\-ece7\\-45d2\\-8a67\\-4b426c7e5da1\\-000000[\\/\\\\]+rzjFtIZEqfed59OhnhIde_lUsxo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e8668\\-70863139\\-8e47\\-45c0\\-8e45\\-6cafc5ec3f91\\-000000[\\/\\\\]+wUFW1z9e3mw4ayuccfU3fS4MfQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245974ea6\\-2adadaf1\\-6de3\\-4c0a\\-a712\\-1a4424c4f889\\-000000[\\/\\\\]+kGu73zARlN4h6QnlvORIKpUooIM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e5d0c\\-42b43058\\-14f5\\-47ad\\-8ffe\\-7d84ed98fbc1\\-000000[\\/\\\\]+LNQAc8SSIwV7IhYVprxCL54q4Hs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aeb404\\-742ae81f\\-c72a\\-4cd2\\-9f93\\-2c2c4044abf2\\-000000[\\/\\\\]+i5E8Xd3nVQ5mpMdgsku5AEuoPL4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245776a75\\-0d46ca66\\-7763\\-410f\\-8c6c\\-b594bc383b48\\-000000[\\/\\\\]+KQlWonD18u7AajuWn_HlBqf0pmY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ec16e\\-7c3d943d\\-5526\\-43bb\\-a69c\\-6b87fcbd249c\\-000000[\\/\\\\]+rZ4vwQFrEqSZwO15HpX0oOA_Tbo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cbb370\\-3bd55f48\\-a989\\-402b\\-a93e\\-98f3b7e3b0f9\\-000000[\\/\\\\]+2PQkCmvM0u0RPFXCkmPV67lmkew\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a572d1\\-4fe8ac54\\-08c4\\-4d1e\\-8bd4\\-aed6bad1b3c0\\-000000[\\/\\\\]+kheJhdlvgNHwrQYlMim5aixD0mw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a8b268\\-ff975783\\-10ba\\-4f66\\-94c0\\-5b4b10ccee30\\-000000[\\/\\\\]+tafLT9ypPkCJb3a8Vb9I_JNozt8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a42e60\\-c7cdaca2\\-dce0\\-45f8\\-8862\\-c4f90c75dcb8\\-000000[\\/\\\\]+Cj7bd\\-NbmixkEzqhUEogDJWxT1Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c4221b\\-069da0d0\\-1046\\-48df\\-899a\\-8caf06761b2d\\-000000[\\/\\\\]+c\\-oQRCznxtIGudKmppPtWRoZ1So\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6650e\\-f955cd51\\-9fd4\\-467c\\-b95a\\-4853388572fa\\-000000[\\/\\\\]+S27L_qyUCvGELnNKiaH1aZUoi7E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456be9fe\\-7af70be6\\-5d63\\-41d5\\-9ebf\\-86ae4b119eb2\\-000000[\\/\\\\]+2pAl0qurws2XXAMgGQX5984kjLo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458224ba\\-313ccbbe\\-df78\\-4dbf\\-b2d1\\-558730045d0e\\-000000[\\/\\\\]+R_NuBLpAd9VsWnQ_nYRlq0VIXf0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b25382\\-bf700caa\\-abf0\\-45c2\\-aec6\\-4c51535fed27\\-000000[\\/\\\\]+gqDJxnNyaBXTiMOEWRQKssciUmM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e373f\\-30d831fa\\-ef35\\-4273\\-b7b1\\-05419a70232b\\-000000[\\/\\\\]+Q8dAnUzn89LjwSrocqUxvhl0Ltk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bd33b\\-1f9320c3\\-88e4\\-4e6e\\-89b7\\-b2d5f608d293\\-000000[\\/\\\\]+_3\\-\\-o7yWTompFK08vm0_JgX20Co\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3f2ff\\-fb7c97aa\\-881c\\-4dd2\\-9b31\\-8fba3b008a38\\-000000[\\/\\\\]+VX6q6ZjLXlIUVa\\-AGl3zzXP085A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b91018\\-71687e02\\-d5f7\\-4b17\\-95fd\\-0fd52e9fc461\\-000000[\\/\\\\]+H0cbvBLvbY\\-1A5WHJpAXvLU2nGc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ce5fa\\-e3b2212a\\-fbf2\\-459d\\-b9f5\\-9a8e910c7684\\-000000[\\/\\\\]+spdmcH6AhQ3MJjr1A_kmccTTb5w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be109c\\-8f3d5f8a\\-a0a4\\-492c\\-907d\\-aa63f7136e5e\\-000000[\\/\\\\]+8EboItuok0u7aAgQkEZdp31L18E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245858062\\-ff61c842\\-ce79\\-4805\\-b704\\-56b212d429a1\\-000000[\\/\\\\]+supfKXaQ4MUT2mFvD1WSg7cFQNE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa614c\\-01be3a75\\-9fc2\\-4208\\-aa32\\-7817435e46b1\\-000000[\\/\\\\]+U\\-rU0301n0hn41uXY6RhS4w\\-BBc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb32ac\\-62112a42\\-c3bb\\-4006\\-9ea2\\-f9e527b50ee6\\-000000[\\/\\\\]+vvrzZ\\-XH5vsFR50xdF_4Oo1o4JY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585b7d0\\-ec8b074d\\-4471\\-40f4\\-ae21\\-645db84ef5f7\\-000000[\\/\\\\]+xIjIC2Bn\\-PPJ1iV7zDwuttEwaQI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c05c4e\\-7f666987\\-9c62\\-4cc2\\-ab16\\-5f039544b44b\\-000000[\\/\\\\]+ntix6ePXIWA\\-De6qr2SksQYnNnA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cad2f3\\-ff2b9b38\\-a899\\-4dc9\\-be1c\\-29dd98ec82d8\\-000000[\\/\\\\]+0rpgBrK5y6rxuYyPGApEFXWlbso\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245670005\\-b2a68037\\-6962\\-4a93\\-8d94\\-544ad22475bd\\-000000[\\/\\\\]+MlC\\-NluiJZOlJe0Sx8OSNg5kuPY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7e699\\-82f6d981\\-00b9\\-45d3\\-931b\\-405e1bcd52bc\\-000000[\\/\\\\]+CAP7JreCxnL0iO3zrokA6canQdk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a3e351\\-17a376be\\-d627\\-40d3\\-88a3\\-114df6ee40c4\\-000000[\\/\\\\]+Zsc_LnXyIwPbYIrolHVzrJ0dbbw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924580d0bd\\-01f55060\\-01f5\\-4b94\\-8719\\-03eb78f1feb7\\-000000[\\/\\\\]+Qh2TM5ujGfNTMAPGj3QMbHSjADI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf0b44\\-27be7ea5\\-9ad8\\-433d\\-95b6\\-a4af28411669\\-000000[\\/\\\\]+xp899mTKkliZlIjk_Ur6YjUCaes\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245751ef8\\-5fbd889c\\-6742\\-4f7f\\-b27f\\-1c9309a0653d\\-000000[\\/\\\\]+7brWKKC_xwhCDa1Q4MOjES2Juz4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585ba4b\\-aecc45a0\\-51ee\\-4698\\-92e8\\-27a344d9d070\\-000000[\\/\\\\]+W3Ggodm7bi\\-hITSypXPBKU_yvXI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245acd33b\\-4b79732b\\-46bb\\-40ff\\-9b08\\-2e6920eaf084\\-000000[\\/\\\\]+tx_Zz5ArxZ5mSthDpRXYZd2iojg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cc74a9\\-5ef4fbe4\\-4e29\\-4301\\-87a8\\-d1f2bceb98ab\\-000000[\\/\\\\]+H02IJBLL_2CXjsjE8QC6kxK2a14\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b926ab\\-6ad9ae74\\-c123\\-4567\\-affa\\-1183d84e0b71\\-000000[\\/\\\\]+wBi\\-6gBPPuFvriKm85hJod8Kwqs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b12b38\\-407128fa\\-8073\\-4c52\\-8dca\\-6fb7eab3f03a\\-000000[\\/\\\\]+ZCh79BzfBEXxiCFSJAA79kSeuGg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245874ef7\\-cc0756cd\\-d7bb\\-4c7d\\-affc\\-edaf2c170af3\\-000000[\\/\\\\]+7B6M6RkPL4tKUeYFUlG3xzOpYYU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245665af0\\-7a2362d8\\-301a\\-4bb6\\-86c5\\-5fcc2ef9786f\\-000000[\\/\\\\]+zn7l_\\-KhXG\\-a065TG\\-HhxFLrkcs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b97af\\-4c433e5f\\-9e1a\\-4b65\\-9a60\\-54f26d82e7b9\\-000000[\\/\\\\]+CzfVJ9YIqF8KOBs\\-bX2_BY2S5Ao\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b34b09\\-55fed74a\\-14a9\\-43a1\\-b22d\\-ad1b0856bc05\\-000000[\\/\\\\]+OGd7cf2Xr68lJP5kZFNoUbza6JY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b2001a\\-454a03c2\\-f665\\-49de\\-a1a9\\-6b2e4ebab2d4\\-000000[\\/\\\\]+_znIUgI48f0DZ73MHYHKzcdZixE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589fecd\\-68f123f4\\-b469\\-4472\\-a13a\\-723a36f33c98\\-000000[\\/\\\\]+8bNidqTnSlG_MvJPQL0jqO\\-i9SA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459aa16b\\-103f6a52\\-b13b\\-4fe3\\-a5bd\\-84b3beda7e95\\-000000[\\/\\\\]+KiX7v1Uyk9UoNNFQ050f2RJ8GGs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c37d36\\-9d6865d7\\-1ecb\\-45f3\\-8e88\\-8a5bbfce4270\\-000000[\\/\\\\]+aNUCBElx2yR28D2Xo0sw_4rPstk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7f8c6\\-a1d73326\\-73bd\\-4071\\-a07c\\-b5dc110c21bc\\-000000[\\/\\\\]+KBv0iCtG4ZEEvYYLgybUhitYKQU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924590a8a8\\-94e2260a\\-695b\\-4d97\\-8e5b\\-063464b94379\\-000000[\\/\\\\]+eWJgxVYGaO_4WM_Y_DTrtdmEzH4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457d5eb6\\-d89457bc\\-3059\\-4133\\-8c2d\\-eb029188d93d\\-000000[\\/\\\\]+K\\-rf4XmDCXP8zBXh0S0gjQdqmfo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a00b95\\-09984f44\\-cb37\\-4e30\\-98cc\\-a943ac2c5440\\-000000[\\/\\\\]+ZgK0Qe0JktX1mjcfU0\\-vUbziUck\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e9329\\-e1b155cc\\-8521\\-4021\\-91e5\\-bb141b3f3b2d\\-000000[\\/\\\\]+3m1wKKVW6k_0Y9xY423UROW2cqM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b55ea3\\-72940af6\\-ec82\\-4d17\\-a8b0\\-9272166d425d\\-000000[\\/\\\\]+Gnr2SIWzsgrKxursCye6nOy8S8A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a13948\\-fa405543\\-3b19\\-471f\\-ba7c\\-03a3dee7d1f9\\-000000[\\/\\\\]+kTATAlfSH0NHohqt2HkKSbitaYc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb156c\\-fbd610de\\-b03b\\-4891\\-8dc6\\-e10bfb0b8503\\-000000[\\/\\\\]+QV2OYcNdajQcea6iwIFjI7HECJE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457efd1a\\-fbc11755\\-9f5e\\-409c\\-823a\\-1b06ea96ef3a\\-000000[\\/\\\\]+Wv1yarC3bnBtcudcYU9ECtuKpKY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aecf87\\-b10dd81b\\-9012\\-4704\\-b2d9\\-006850c85e54\\-000000[\\/\\\\]+D\\-6VpPrhoQJ1kgudXV7bGzE29QE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a10cf7\\-6be559a7\\-29f1\\-4a58\\-ad4d\\-19a8329fb0cb\\-000000[\\/\\\\]+3QWYt00sJxgeIiM8DnVhLJEXkcA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad5be5\\-9c7a44fd\\-b9d1\\-4577\\-91b2\\-b3d2c407226c\\-000000[\\/\\\\]+wqqi6ixq6z7JZXgVq_lZMQAleQE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e5c8e\\-d63f3bea\\-7934\\-4a5b\\-93c5\\-c383bfd93d3a\\-000000[\\/\\\\]+\\-0ukjURWGneidV5W6\\-NYVemLTUY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c36f4f\\-d90878de\\-484d\\-4ef9\\-9445\\-73c391fc104b\\-000000[\\/\\\\]+LfXm6P_LRMBSN8ZnJfQtJhmdEr4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f8f6e\\-7153874b\\-e989\\-4b90\\-b87f\\-40b9c6e6f94a\\-000000[\\/\\\\]+G9EbbK28MplUVOfI8faAT8IRDJg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a72f5e\\-74fba383\\-8a72\\-422a\\-803d\\-ed1d66beea93\\-000000[\\/\\\\]+NJLuRCCaOHRWcfo4cRtts7_RxR4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bcf869\\-d441f84d\\-8318\\-45f2\\-9e79\\-a2fbaf0f36f7\\-000000[\\/\\\\]+L4VFH9J98BZtC3fiKUhmzef9ujg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b13eeb\\-354a0fe1\\-0eca\\-4ccc\\-9878\\-a38051c912fd\\-000000[\\/\\\\]+1NR0gAt3OGVnA02OG8iqCRjg29o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568f08e\\-d6823654\\-d6ad\\-4a27\\-8ca2\\-fd82e40ac20d\\-000000[\\/\\\\]+S7Ab1GXOjkYQuctEf2Q4Uoc_n4k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8987c\\-2f6aae8e\\-b14e\\-4cdb\\-91a6\\-fe97cb1f080d\\-000000[\\/\\\\]+GtNomBn13KMJZU842aHVUeQmI3E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c5754\\-309f9c59\\-48bc\\-4a88\\-9cf5\\-4287f73d6764\\-000000[\\/\\\\]+8O\\-\\-53Y7TUkSGH2xOHvbHkxQte8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457eb09f\\-210974c5\\-6d45\\-4ff2\\-be3f\\-26eb93a0bada\\-000000[\\/\\\\]+NzzI\\-01sHn\\-YYr1887OIOYisHp4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583bb65\\-b8f50a77\\-e42b\\-4170\\-8b35\\-32064db14472\\-000000[\\/\\\\]+uFCF_o4ipN2RiuUBDfLWk0hFMi0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245716f6a\\-5f3abb0c\\-6e2e\\-4b59\\-8a69\\-763e3d0b0ff1\\-000000[\\/\\\\]+kCgcppW7H89DjbKAg1jYqp4wDpg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dcba0\\-fa82c155\\-f9b1\\-4718\\-b834\\-96082a39b835\\-000000[\\/\\\\]+PY0I56SycDNdy633WuO98QBV5r0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aec362\\-b7798201\\-0d31\\-4a68\\-ab8e\\-274c780a49d5\\-000000[\\/\\\\]+FgmH300g\\-0xRLPeyrJhOyUc\\-t0I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c63e0\\-2e7ca703\\-05a3\\-4aac\\-9350\\-8a60fb91dd13\\-000000[\\/\\\\]+26yRO4ZqqH6IEJcnnCNreg7jQz4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570b834\\-0344760b\\-0c4b\\-4fc8\\-ac43\\-f891631dfa39\\-000000[\\/\\\\]+7jFYutPaeZ4VWxqPUBhRNJTnlqg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8a166\\-a619742d\\-932c\\-4f90\\-be29\\-89b0aa63eb6f\\-000000[\\/\\\\]+FM4TmrRKAn4gboz9XR81hR7_1Mw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b9897\\-5c71a5af\\-4778\\-4dbb\\-94b2\\-c06f9d7566e2\\-000000[\\/\\\\]+GLwteGZhKr5d2rX4xtf8Ynq8CwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad84bb\\-4740b831\\-ec40\\-4920\\-9594\\-bc39a415d059\\-000000[\\/\\\\]+jMaBAIU5OEtUFMlT73FKoNV0CZU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce0c77\\-0e2d0fb4\\-9ca4\\-4817\\-ad8d\\-defb11ad723d\\-000000[\\/\\\\]+k7cWfxujciTR6lGD8sa2XsYb\\-5s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8f9e4\\-40252bce\\-cb80\\-48e1\\-a6d6\\-81c23c9abe27\\-000000[\\/\\\\]+MlMd\\-6A5\\-MoUH4OOWjftk4MMqas\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b24d09\\-2a9fd9dc\\-5e38\\-479c\\-a809\\-4dae1b8766c2\\-000000[\\/\\\\]+QhuTCbQB5AIu3iNfwWnchlhqQ90\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457b4e12\\-3427bf9f\\-9365\\-4b45\\-b160\\-3b03ee6d529c\\-000000[\\/\\\\]+ZNBWRjJQzV6eBlNKDhI68clPLnY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459777de\\-b0bc8b66\\-0126\\-4211\\-bb93\\-b5fad07bc9a9\\-000000[\\/\\\\]+73xb9kSO0sOlxxkXHkhoe1bLzlA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455ba1d4\\-fe1a130f\\-cba1\\-4c6e\\-91e5\\-1f9563b4a4e9\\-000000[\\/\\\\]+40eGJ5fuKRwd58LC1gpJQFxv0iI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455df61a\\-44ae255d\\-bf16\\-466c\\-9478\\-f2bab60e593f\\-000000[\\/\\\\]+7yQ42bEhKr_jQl4un4w79DmnZTE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ec1e5\\-4db693d1\\-b4ce\\-47b9\\-a10c\\-607db5a2ee65\\-000000[\\/\\\\]+5n601TfHMNd5rkDrW2JrmqSH2UM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245753b36\\-d18f3a7e\\-4427\\-4492\\-9500\\-e56897bc00c3\\-000000[\\/\\\\]+sX5o0MB56EwX_Bppu08NljDLBPQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7e2d8\\-58d21076\\-4297\\-4d04\\-8a6e\\-40a68c62a007\\-000000[\\/\\\\]+Cs5T5\\-cnah2wzbPwJMjWHEVJy8o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457382c8\\-121a21dd\\-6d69\\-4d3f\\-adff\\-689ce5529684\\-000000[\\/\\\\]+Vr_44uM_avx9OkrlFRQpZyaSQkE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245945d10\\-51872e0f\\-504b\\-4b65\\-969a\\-d60882cb8678\\-000000[\\/\\\\]+f9yUWnOorNcSZauloCR9XRvJyh8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b97cb\\-8a5f8ae2\\-b66f\\-4f9d\\-80b3\\-65761149a039\\-000000[\\/\\\\]+ZnEAsTQx8CQggMfYeViyZGZEz\\-E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c4cf6\\-bfa2a144\\-e677\\-4a51\\-bde0\\-5001ae301687\\-000000[\\/\\\\]+mm8rIrWmmSilafEZgHZNx6gkJm0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245810f7e\\-c24da5fb\\-2afb\\-496f\\-93de\\-ec4a092b4a95\\-000000[\\/\\\\]+MZi3trYILTVfgW6ZQ\\-6MTKx3HVE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bee35c\\-2d5667d7\\-cae3\\-48b3\\-89e6\\-b0cc4a29d0ad\\-000000[\\/\\\\]+pCzRsz1Pa_nkg3uKat12GFMVYtI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572ad1a\\-fbb4a937\\-f903\\-4d3b\\-ad6a\\-a599fd821d6c\\-000000[\\/\\\\]+yMFu\\-qDRvDyX8xsMg7tHp7vcWRs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e95ab\\-bd86c3ba\\-2774\\-4ad6\\-a5e8\\-6fb9b9e5c592\\-000000[\\/\\\\]+o5wbOuagv0cVYJJdxtfNll0m_FY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b58727\\-17daf443\\-4d3c\\-4cc8\\-90a9\\-a7687f4a6baf\\-000000[\\/\\\\]+g6sAWWlrWeKOHjjlvFZC9yaiblI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c798e4\\-4e554690\\-3001\\-4e25\\-a16e\\-8a687e027adf\\-000000[\\/\\\\]+vvzvnIqHB9IojSD6V4ZAdMCvqeg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d2e02\\-4ac8d3af\\-8f65\\-46e4\\-9557\\-43b955b9b786\\-000000[\\/\\\\]+sHOIdiyxZfszCIZrs8qpwrOB1bQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245725c76\\-169d2be8\\-de77\\-4a08\\-b4f6\\-169dc34131ec\\-000000[\\/\\\\]+k4QDHqQoJ4lagd4ezjeob\\-pi8uA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0853a\\-0b0b7c4a\\-0384\\-486e\\-81a0\\-3b2656d56b53\\-000000[\\/\\\\]+821pcb8yXikbFxGnyM\\-fnOY6Nko\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ef585\\-927310b0\\-06b6\\-40a6\\-ac04\\-94d084b06bf7\\-000000[\\/\\\\]+ObekVASpTZp2nRfr\\-Weuw6LHYhw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7f850\\-6b30da15\\-0dad\\-4e29\\-9fcd\\-747de3e31e03\\-000000[\\/\\\\]+WVI5_grlO0yLQ0EigFGSxcuR1lM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a075c8\\-fe415171\\-498d\\-4b21\\-b8a5\\-6d27fd828ac5\\-000000[\\/\\\\]+aRTFN16Lyb1NJxFRD9KF2E9ErFQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5eec9\\-b0620563\\-67e0\\-4baa\\-955b\\-084e164adaa0\\-000000[\\/\\\\]+I3eoVsfCaGQPzD\\-lydQYXkTcjD4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569b712\\-78cd2054\\-7d2f\\-44cc\\-a43f\\-1b3cf4f55460\\-000000[\\/\\\\]+45gJ4cTJP2DyJxz_dZRx2K49Wi4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245910422\\-d969ca2f\\-b4c4\\-47c5\\-9f78\\-155d0bd7c531\\-000000[\\/\\\\]+x2j1m_zLezZoNsqUG37J2wv0slA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245897883\\-6535332b\\-9a80\\-4dbe\\-bfde\\-9bf9bd6df587\\-000000[\\/\\\\]+vVSq2WfAs92ly7QQ5mte_qKSohc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596b8f7\\-aca6f387\\-058c\\-4d51\\-a1a9\\-b829a8fca168\\-000000[\\/\\\\]+tHLgZTIcGsiAArl2KZzX\\-UhMNLU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e690b\\-55a73879\\-8266\\-4c25\\-b12c\\-0c57ea4504a6\\-000000[\\/\\\\]+J\\-Mr2jXEuExrneLGRk90Sarhq0U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456db6ab\\-e4c4cac4\\-7354\\-41bf\\-b108\\-d968e58d1231\\-000000[\\/\\\\]+sPd1WJWGENj\\-\\-VaI1gkTRvZpxDk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6157d\\-53a834a0\\-93ee\\-46ed\\-82da\\-9d3cb5f7e766\\-000000[\\/\\\\]+ugYqLDaEpfXUzAUquqpbVuH24_c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459cf8ce\\-c8a2f348\\-c704\\-4488\\-9d2c\\-2c158e247d1c\\-000000[\\/\\\\]+fL2GlTeIA_f2VcI9KBRpzHD91zs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b49280\\-8344ebb2\\-5a5c\\-4993\\-8473\\-78a30fd2e27f\\-000000[\\/\\\\]+i2Ha5no0MQnvP9P_3Y1MUmkDSuA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b61b88\\-c1cfa09f\\-f9f4\\-4913\\-85f4\\-5e5c8818da74\\-000000[\\/\\\\]+MaHTV4wz38ZfxOPOsC_EE2PKznA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459a7258\\-bdae1618\\-0888\\-4e43\\-99e3\\-17d5592acb43\\-000000[\\/\\\\]+67IxpIC01WpAud_W4wzqmjWEzME\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b054eb\\-78bc3959\\-d6ec\\-40b5\\-b429\\-cb6060033913\\-000000[\\/\\\\]+dQc9Ava3lhYILO50xkWxyNieT5g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573e899\\-11810aa9\\-50ac\\-4730\\-801d\\-e6984311723a\\-000000[\\/\\\\]+c6fWrakyg\\-cxPW6NP49vXupWRUc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459892a8\\-14415d8d\\-4a35\\-44a0\\-80e1\\-3f728fa018a5\\-000000[\\/\\\\]+7zJ0mbW61\\-IEz9xc8_Gwg4g9sNU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245672dfc\\-08516bb6\\-f70d\\-4dab\\-b119\\-5a523174650d\\-000000[\\/\\\\]+56TMbD262rbw22iJXvLsfTiNMDs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c59ee4\\-0c026003\\-bf30\\-4b95\\-873d\\-27cae8b497cc\\-000000[\\/\\\\]+6r6XOer4HtXmtV92ifNdsQNX2Gc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d1321\\-f9c81bb5\\-c189\\-4e3a\\-96ce\\-3958e59cc850\\-000000[\\/\\\\]+K87CxItUkkMPSBC2mRIzKvfz4ig\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad8507\\-d557232b\\-fa4e\\-4b24\\-995c\\-266d8598ca65\\-000000[\\/\\\\]+pjRPqAT8fVeAEL0ZXc_o4sGn7Eg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596e1cb\\-51aeb4d0\\-c09c\\-47aa\\-ab56\\-05dc87ec3297\\-000000[\\/\\\\]+t011d5KylF4IUBL_cF_UrgKAh_M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245776a75\\-0d46ca66\\-7763\\-410f\\-8c6c\\-b594bc383b48\\-000000[\\/\\\\]+yaXP_SYR1GX8TQgVkJKHQysyV3A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570d8c1\\-4ba27216\\-8367\\-49f3\\-8fad\\-3df4c2d0ae65\\-000000[\\/\\\\]+Sk_\\-EgEdCt4gvzR_NFpsH394opI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ea5d3\\-053ee057\\-3b58\\-4dac\\-82ec\\-29d5701b9fcc\\-000000[\\/\\\\]+NRBOj6\\-ia\\-brJy0xYel2fW\\-KtKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d67c6\\-af50a48f\\-8bb4\\-406b\\-a49f\\-49e54b56120d\\-000000[\\/\\\\]+RqKNkKydM3gThmn7_skeCgs6TJA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572f8b5\\-8ea54f97\\-d57a\\-44d5\\-be21\\-33a642dda520\\-000000[\\/\\\\]+kQGYk0XsQAYvYtrH7160ZwSuLNY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458306ec\\-266afe06\\-4c57\\-4e49\\-8c4b\\-1e8bcb65118a\\-000000[\\/\\\\]+V5LOCFxgCxr9Fb6MFm399SH43R0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1ebab\\-40f98e21\\-ec0c\\-4141\\-9c37\\-0b359fca7a35\\-000000[\\/\\\\]+rvu6OAxEjbdVy3fiw5dJ0gU3kCw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1713a\\-9dac1870\\-c1b8\\-49b5\\-95e3\\-2782165072b9\\-000000[\\/\\\\]+CgRuIADLWxc0xBkaVErO3hGV8s8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6d6f8\\-f8b62fe3\\-21a0\\-4d43\\-bb37\\-8f807f3665c6\\-000000[\\/\\\\]+CLwi69NKzKgwy5w8hYpYEU1f8bI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245642ccf\\-a688c8eb\\-8639\\-4905\\-809f\\-900c02f9268b\\-000000[\\/\\\\]+2uq\\-bABhKt\\-WsQv8X9PH3D0\\-Afg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce8d42\\-c835ae88\\-a77b\\-4f9a\\-a712\\-ee529c761ee5\\-000000[\\/\\\\]+HstF_CwEXGOu7T38tUvK4Cm1Ax0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459819fd\\-980b7c7c\\-ab07\\-46f9\\-bd7f\\-89428283ea9e\\-000000[\\/\\\\]+0dpEmwyL2cOMdd7Bw48YAlCqxbA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c984b\\-d2e80b74\\-a688\\-4246\\-8be0\\-39a4e8911791\\-000000[\\/\\\\]+889\\-\\-rdWatHMKPn3O1VMsr37Oh8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5f27a\\-918ff865\\-5674\\-4219\\-8b2c\\-e73952cf8f90\\-000000[\\/\\\\]+8d5\\-k1qu\\-Fx73YTmaisBPJzA4UU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bcf869\\-d441f84d\\-8318\\-45f2\\-9e79\\-a2fbaf0f36f7\\-000000[\\/\\\\]+5Vdu4FhF8u9NeRBVMhbuFwJ9H34\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc8106\\-3d22380f\\-2242\\-46d6\\-af1f\\-e91e1a7d7966\\-000000[\\/\\\\]+dkhTzU2MAdkpSynT6Ef_abBaJTM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b298bc\\-8351fcf4\\-350b\\-422e\\-8133\\-57a51c77b51e\\-000000[\\/\\\\]+65gNquxoaF9Po4UX04H3SASdHmw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597f705\\-1b1ceb9a\\-a25f\\-4405\\-9165\\-080811252f87\\-000000[\\/\\\\]+Q5OtOFWA68o5R6nU8pneCpbJvxI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c9304\\-0bdfa589\\-a6ac\\-42f4\\-a5cd\\-0fbb211ea64e\\-000000[\\/\\\\]+GyIBTcyf8m8Kct5JRB6qWbFPGAs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f22ed\\-63ceaf6c\\-9422\\-42fb\\-802b\\-fd46fa4b2642\\-000000[\\/\\\\]+5MQKiZ2R7PcEgjzi5ilQ3Dwgv0U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583be65\\-f2246875\\-5fa3\\-41ec\\-ba0e\\-dba15408c72d\\-000000[\\/\\\\]+w6h02_3fUI4GS\\-0BbG4YRys5iMM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566d743\\-8319022f\\-5dbf\\-47d3\\-9932\\-0b50199987ab\\-000000[\\/\\\\]+wEfKjmpTSj\\-0qJbdvMHWD9zlUi4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459588e3\\-e50c476e\\-74ca\\-4e7c\\-b111\\-11a35cc0f135\\-000000[\\/\\\\]+dKlD0KNQ0bdb6FZ5QqSaNdR3xuI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d3e1b\\-4e3a43ff\\-5f4f\\-4c9f\\-bff8\\-568a5aeb1a05\\-000000[\\/\\\\]+soZjkaFA1s\\-pF5z2wPfp9SiNMzI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924593034e\\-2d2c817b\\-8812\\-4eee\\-8f7c\\-a6fd22d8143f\\-000000[\\/\\\\]+9jjU4Ne23FVJrWsHBsk6M1oMhis\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456eb5a8\\-710d9aab\\-78a7\\-4dc7\\-a4fd\\-953aa4d0eec3\\-000000[\\/\\\\]+TxXL8kkDF5fNg3qLXmvGyo2tt\\-I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582cf74\\-18145f16\\-f713\\-49eb\\-a50e\\-3665aeaca97f\\-000000[\\/\\\\]+UUfuuqdY5XgKaWyi74ZwP_OEtq4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459a7b69\\-728ba576\\-b694\\-4276\\-88e5\\-6dffc549cf7d\\-000000[\\/\\\\]+nMj2HK5zch6MJPU74po_plclCF4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb0eb2\\-265adc01\\-ee76\\-46dc\\-af6a\\-c15c25aa72ff\\-000000[\\/\\\\]+Hu0PwKMRonCnO3U9h0rdRw9SMi0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3a958\\-b128ad94\\-8a4c\\-441a\\-8c33\\-dcf1518f7dc9\\-000000[\\/\\\\]+2SBRkLSufrTWJf3TOtEBw30fIT8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245624da6\\-ad7fa90b\\-1dc2\\-4994\\-8fa6\\-9a028d26ba72\\-000000[\\/\\\\]+Zdv7P\\-OQlCP1BSAZoXSlNgRdwq0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bb1bf\\-a7ec3a19\\-1918\\-45aa\\-b09d\\-433419f4905c\\-000000[\\/\\\\]+osJGFpxBeTeSH02aOOL3NE9xr4s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457be025\\-76aeff2f\\-e1b7\\-475c\\-a100\\-95f63a644729\\-000000[\\/\\\\]+SN\\-WalcTp2IoI7ONsgWAzjrcZpE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd49fc\\-feffff61\\-98d2\\-4a62\\-8743\\-e3241a11bb3c\\-000000[\\/\\\\]+4H6jfwCHMAiRw9ROpRNUBjHUAuY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6f284\\-598bb647\\-ff56\\-4778\\-b150\\-5e3e19003c8e\\-000000[\\/\\\\]+\\-UoBssZhdhDgYUB9yKcP2kTMQjI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245996630\\-094d9955\\-fbb3\\-4a65\\-a443\\-51d4fcd61e3f\\-000000[\\/\\\\]+XYFgEFbhNLijIPlXcd1Ds48rjCE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c84f07\\-edf21b18\\-d2f9\\-4e46\\-897b\\-092385546368\\-000000[\\/\\\\]+g\\-PlmsB\\-R66C1VnmkmacpW9DDpE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245796d9e\\-cc097cc6\\-e8a3\\-42e9\\-ad65\\-67669f350143\\-000000[\\/\\\\]+WUCrYgZUSc4GlJbBFQm2QUSdKIM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a98e6e\\-aaa3bde6\\-2097\\-443c\\-8d7d\\-7647f75c383a\\-000000[\\/\\\\]+DeteYg8eLOqYq43ZQ_UZHaWc5Q0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924599adff\\-8cc4becf\\-2df9\\-41c1\\-8bb4\\-a2ec7351dda8\\-000000[\\/\\\\]+I2PvTek377cvDnndieqBmlprjLc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245962347\\-4cebf6ce\\-156b\\-492b\\-90be\\-997c570c8cd3\\-000000[\\/\\\\]+TQABj_otgFPe75IwZvbzKHRfM1o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cc3e2\\-54600e64\\-5a6b\\-425a\\-a694\\-f2a500949b29\\-000000[\\/\\\\]+lwg552_8D0TR3zKVK2dcZTbKh0c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6f284\\-598bb647\\-ff56\\-4778\\-b150\\-5e3e19003c8e\\-000000[\\/\\\\]+6LzUgjrIgdNo9P5\\-R1gDnXTsyac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c982bd\\-3cd5fbb4\\-2a26\\-4a8b\\-b02e\\-f03860509367\\-000000[\\/\\\\]+uUXBJFYgy28e6VWRMhxQ0_A0ytk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cae46f\\-cc2d6005\\-04ea\\-4016\\-aaaf\\-91180250d4c7\\-000000[\\/\\\\]+JRDtuQfhnFsTEY1zFH44TtwkQHo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1ebab\\-40f98e21\\-ec0c\\-4141\\-9c37\\-0b359fca7a35\\-000000[\\/\\\\]+PsVaCCdER68U\\-xUjzR\\-3C7vnXLU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245997b9a\\-38ede389\\-e6b3\\-4c87\\-b7db\\-dc3fc0e08539\\-000000[\\/\\\\]+_F5cVWi40DCjTb4Pb3gKuIssDVM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e07f6\\-43f306f3\\-d381\\-4446\\-b8ae\\-22eac71ffb3c\\-000000[\\/\\\\]+LnoziPNRCVS95kecbT2pgqQHoLY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582c3d4\\-a76fec74\\-dd0d\\-440c\\-9528\\-d92ff71f0450\\-000000[\\/\\\\]+omHrn436y6ftBxUCcR4LarSsXeo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ab6c3\\-2a1c42e3\\-4531\\-4c28\\-a8b9\\-31404e165f85\\-000000[\\/\\\\]+N4DtDOCi\\-7YN8zdmRMx2dWxysls\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c82a2\\-65e066fe\\-4790\\-456b\\-830f\\-552b20c3424d\\-000000[\\/\\\\]+66L5WyB_zerH6Nx0_oBFaUIBQWI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e10f4\\-53bb88eb\\-0053\\-43de\\-a56d\\-1649df9664fb\\-000000[\\/\\\\]+CXZKBdLTy78RUYaNnTSS310mtOA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456be9fe\\-7af70be6\\-5d63\\-41d5\\-9ebf\\-86ae4b119eb2\\-000000[\\/\\\\]+O3ivf5lGkD3_04qPOASrr8UIBgQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c6c6a\\-af262c70\\-2b98\\-4c2a\\-9503\\-ff5d2934d05f\\-000000[\\/\\\\]+usij04_o_xhhw9yHCiBvvFoDNZc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bba154\\-278e9549\\-56c8\\-4ce7\\-9c34\\-71efef0bdcdb\\-000000[\\/\\\\]+wD5QQQLoczm1VE8dfgxpSj2wvcE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245962c12\\-dd8daa08\\-acaa\\-40f4\\-a4cc\\-567703e59986\\-000000[\\/\\\\]+1Y\\-bRrh8hFZWy4vpzatNvOw4FGg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456413de\\-2dfd9533\\-9c6d\\-4e21\\-948a\\-441ecab2299f\\-000000[\\/\\\\]+FE\\-PaQxLJF45tz_8PTwp3ko42go\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb6ee5\\-8f3bf30c\\-65f6\\-4b7a\\-9d45\\-7dc5de969404\\-000000[\\/\\\\]+Gpdpc7PxNmEzAFoKm6pVgFKi6PM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597627d\\-0932fdb4\\-5e5e\\-4954\\-9bed\\-7b6651c6fa57\\-000000[\\/\\\\]+KqWCrw9MiJl2WBhV8JzxQTnxnHg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245998aad\\-48773b0f\\-e8bf\\-4f5c\\-862d\\-8191fd6d7622\\-000000[\\/\\\\]+JJy_pdI3zL0KeGRV9Xf1krwh\\-GY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568a463\\-e93f7904\\-c554\\-4616\\-bbc9\\-4d25ca821023\\-000000[\\/\\\\]+ciyrUyL839aHhsTPGsobceyZsPk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456addc7\\-db7bd098\\-1503\\-4119\\-bcb9\\-a490d7fa2233\\-000000[\\/\\\\]+DdrAKABKZYQAnNpdYxOpLdqbxmE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bcb37\\-92d67256\\-7c81\\-446c\\-b8e7\\-b951d29884fc\\-000000[\\/\\\\]+TJIISO6ROSBw4dcrj_lXr2qs0Jw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568ee0f\\-f9203351\\-854f\\-4ab5\\-9fdb\\-6902613beef5\\-000000[\\/\\\\]+hDb8tI2HnwvD\\-zEo5UIwwKSiD0E\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd2347\\-86c4e017\\-fef8\\-4b56\\-89db\\-54de8ef270e4\\-000000[\\/\\\\]+qzY7ypm4iQjAB7xhPTZGsoodbVM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ee66f\\-12c2a4ab\\-16d5\\-4a4f\\-a249\\-927cb1068fa5\\-000000[\\/\\\\]+qmAuXAEXPTcVBfG35pZCjsRmWHk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b62a30\\-2306c434\\-66ac\\-418a\\-93a1\\-5145efd2bd24\\-000000[\\/\\\\]+VpuU6nFf2qrdnwW46ekYds6HAdE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f38a5\\-705ae98f\\-7255\\-447b\\-93e2\\-6f9c0c617a13\\-000000[\\/\\\\]+2uDP3l8973X6WsiTuRvGlf311YA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c87ae9\\-4c58389a\\-9cb2\\-4711\\-9cac\\-26725b5c3721\\-000000[\\/\\\\]+zOOmkf0hgtM_vtKxzOY3XpXaum4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c4edc\\-e30fac18\\-d170\\-45b9\\-813e\\-663bf2be0b83\\-000000[\\/\\\\]+snUiLYiuQbcPpp6sXnU6kBaTsq8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c10c12\\-3aa29782\\-f20b\\-4a73\\-96f4\\-6d2fb75886cc\\-000000[\\/\\\\]+oskqe9xLSdT5MYMbtJEsHe2UwbQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245acbde5\\-86db9c97\\-462e\\-45be\\-9a77\\-c52abd5a0e32\\-000000[\\/\\\\]+7bb_T5yaSfFANLVRUjK8jLwRc38\\=394(?:\\?|$)" + }, + { + "hash": "17aef8702701bdeafcd6abab2d19e3510ed582e58f417662ac6d1fcbb24d8ee9", + "regex": "(?i)^https?\\:\\/\\/pub\\-64e8a4bfd6bb4ce29a32ef71bc2df595\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245640a4c\\-da173d9b\\-037d\\-4ec9\\-bd1f\\-5cd42a631931\\-000000[\\/\\\\]+WoCFLslZbpsuVa3SaDi4M4_JZWk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924560e2c5\\-0cc99f67\\-45fc\\-4491\\-a8a5\\-2d29fa6eb834\\-000000[\\/\\\\]+tuuSwHF\\-oD3F5VFoD_iaCiPZt7o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245612a07\\-78438e6c\\-6ece\\-45c6\\-9d25\\-f40e31d3792a\\-000000[\\/\\\\]+7b3iNaJKW2UytNcyDUrTR2u3a_s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245715d6c\\-89fbdcd9\\-ec17\\-43f1\\-8a4c\\-81ff154d3276\\-000000[\\/\\\\]+6s9yPjwwCvsS48s7zArMi\\-TWPik\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c35bdf\\-03514ee2\\-2ee4\\-4312\\-8867\\-ee01a864126b\\-000000[\\/\\\\]+r493UozoPdLJsBNqsgtNqXoffhk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924581a794\\-6ca402ae\\-b84f\\-44ae\\-9480\\-b6174a47012c\\-000000[\\/\\\\]+16K7VNvJFk3zwRKSTLoJbMgQZrM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b61660\\-775b6a31\\-1651\\-4bf6\\-b770\\-94ffc2ddf47e\\-000000[\\/\\\\]+0kJxWG3BopudFz9nA2eUfmL2gY0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245625c4d\\-dc92b582\\-68bf\\-467a\\-88c2\\-1ee91f5a6be9\\-000000[\\/\\\\]+W07BnGjXQ7DESLUuX3oz\\-ehsYCM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566f683\\-e6d3b67e\\-86d8\\-4bd7\\-bcc6\\-8249e7345d87\\-000000[\\/\\\\]+zOr5lGNZFVMNwFgvf16hPqjyZlE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245807429\\-8d3559de\\-2162\\-4c3a\\-b1f6\\-7122ac589be6\\-000000[\\/\\\\]+A9yha9VsvuY5UEyB7h5h6dRUYU4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb4c44\\-09660631\\-b7ca\\-42d3\\-bfc4\\-9e4ae299370e\\-000000[\\/\\\\]+W\\-tmr7sPXB9mEY0sv9Tl5dHdskE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0da23\\-6160e162\\-922f\\-44bb\\-bc96\\-d19e72a070e6\\-000000[\\/\\\\]+m_gvqa0UOnE\\-E98j2vswSSujJRI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c5de7\\-1666008d\\-9a6a\\-4075\\-aaee\\-cb7f097f09f5\\-000000[\\/\\\\]+ECjdMQu\\-NLg2EVcNGjGLcqslEmQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aabd56\\-4da7b16d\\-33d8\\-4b0e\\-a439\\-a9be4fd87bb3\\-000000[\\/\\\\]+BHQEnaLxvftdS7YMyufZ7gwzKmk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245987932\\-d4d02655\\-1bdd\\-4a49\\-b6bc\\-8d3430b81f86\\-000000[\\/\\\\]+B30j\\-1t2XK\\-9rSaQh0Gh9euxqJM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab0bea\\-a8343ebd\\-3af1\\-4959\\-9b36\\-49bde4532b4b\\-000000[\\/\\\\]+uDp3UTbvmgdvbVJZiF2DwD0EFeI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458db744\\-bcfde721\\-1461\\-4acb\\-85f5\\-69d5c914761d\\-000000[\\/\\\\]+qalEMfKutveafSKL2\\-DZdkZv6xA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ade8d3\\-8870f21e\\-d241\\-4797\\-9452\\-80fc4bc3afe0\\-000000[\\/\\\\]+JQrNkjJyntsvrzG6l\\-DdlHTYu0c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ddcde\\-88868963\\-94a7\\-4622\\-b7d8\\-a69f659f2b66\\-000000[\\/\\\\]+XVmKu9oUWUrDYKAqn7MWy4_wkck\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d1616\\-bea09d46\\-c93a\\-4ef8\\-902c\\-ef942d8d178c\\-000000[\\/\\\\]+9CAwtXnGg1eAieKgk6eknnk2LDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458055b0\\-eac541cc\\-0552\\-41a9\\-b2e7\\-67f4dd789b89\\-000000[\\/\\\\]+22zw3V4QTK0YaVxMsfiNrf\\-iofs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c42f8\\-e64f4d67\\-88ec\\-4375\\-93dc\\-ff364cd5e598\\-000000[\\/\\\\]+9bfZg_9fN3sz2RTiyAs1ni7kmhg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ba9c39\\-bb6c5154\\-eb52\\-4dc7\\-bdc1\\-bdd80cd6a7df\\-000000[\\/\\\\]+B28KDlpviz0lp6sPCpTQvJogvpw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8c8ff\\-d5c9cd81\\-9055\\-492d\\-a626\\-a1f15430ec1b\\-000000[\\/\\\\]+i5kgWqniroZ14I6szDOP9k2Kgb0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579cc18\\-d6b56118\\-af26\\-481c\\-b7e2\\-18bcd6160e4f\\-000000[\\/\\\\]+GDZaP_Tdpxu1gaKz4lq7n7wFV8U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459afc64\\-7f433de1\\-cde7\\-4a33\\-bb69\\-7e1dd4ce4a84\\-000000[\\/\\\\]+FAtNPIm6451oZPb7fnSUugmxUaI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb1641\\-847d1a61\\-efc4\\-45e7\\-9597\\-52c554da48ec\\-000000[\\/\\\\]+qOjNdux_e88HZzcjonYUF_5DaY8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245acea36\\-63f9f63b\\-cd36\\-4d9a\\-bd37\\-01af150f718e\\-000000[\\/\\\\]+7rlBK2JUM00M0oKewclJzknfRes\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7c7cd\\-3e9350d3\\-e127\\-4ded\\-88da\\-cb27065b321c\\-000000[\\/\\\\]+MP3niVWeCdOhHjPFgtlYRsnojsM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924588b02e\\-59ff7605\\-0657\\-496f\\-bda6\\-51e8718eef7e\\-000000[\\/\\\\]+lpNKTOPlRkLMfyFQzck9NFMBLL4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b4d45\\-7caefab5\\-2516\\-4977\\-a2e5\\-3de2a942a6b3\\-000000[\\/\\\\]+L7emxe0RZRpXa6M\\-hQsVlGfOO_8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596d702\\-1306ba39\\-4484\\-4f64\\-9632\\-639cfeeeafbc\\-000000[\\/\\\\]+ZBNPVSVsdZ3LsYrKU0uZD2V78dg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b012cb\\-684cd259\\-2f2f\\-4b51\\-9849\\-93ca97253aca\\-000000[\\/\\\\]+anmvFrL4q22_9lrB5\\-erK8cersQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f341e\\-c7dd927f\\-17d8\\-43c4\\-b353\\-5e65b9e1e397\\-000000[\\/\\\\]+nYHQESKdxlqqw0Ta27m_wM0YcA4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5e639\\-28598a2d\\-0c6f\\-41a5\\-ae25\\-5a3301dba370\\-000000[\\/\\\\]+Kt2FhxuRnIMX5xLDxdZbO5WrvRo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c89b11\\-1eeba1f0\\-a6ff\\-45ea\\-8cd1\\-f71d5f166571\\-000000[\\/\\\\]+X9gMKz4enI3EXoohUFIjKcGg\\-TY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a13103\\-10171bad\\-ac4f\\-4c65\\-9609\\-c41ba332f5dd\\-000000[\\/\\\\]+MZf8ONTVFpvzR0mk6O22pacrvss\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce2c6f\\-cd0be301\\-2e7a\\-4159\\-8e31\\-46c279c67e2b\\-000000[\\/\\\\]+shdbt3cjN8CJKaxkF02d6s4E\\-vM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b90814\\-7ad37d07\\-2148\\-42ec\\-811c\\-186478af6595\\-000000[\\/\\\\]+uXGYTy\\-fkYPli1bYctNq5k04WSE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afa5b2\\-56681ea5\\-926e\\-46e5\\-85f1\\-03ea701e6ce8\\-000000[\\/\\\\]+Wj6aTK7r2Uj8js1FYDww0rybeOU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b41e5\\-3ab9ead1\\-1c54\\-484f\\-a9d6\\-2d3c0cab80cc\\-000000[\\/\\\\]+o9l7upyhiGPFecJX0Ruxc1S3LPI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c88093\\-f7f64f32\\-274e\\-404d\\-992c\\-25274a92b188\\-000000[\\/\\\\]+mCH9Pbaan5GzWk132dNVdC0kq7w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c02442\\-b6ff127c\\-649d\\-44d6\\-b5e7\\-6f84aeb6726b\\-000000[\\/\\\\]+6GuW5m0fgTXE5cIkQdvZ4Wveu5Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245821aa7\\-daf0de5c\\-27b7\\-479f\\-b659\\-7a734f215f7a\\-000000[\\/\\\\]+G4NyQSea7wpc5mZP8\\-B9O\\-FPO88\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572dba7\\-a438141b\\-1f75\\-47cc\\-8dd4\\-0b89715795cc\\-000000[\\/\\\\]+SUiflSJ_en5wqJbGtwpBGmVHZms\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245717cb7\\-14714690\\-8ed5\\-4785\\-b101\\-c9b83a1cfcb5\\-000000[\\/\\\\]+CAbmkKKPOWcmgDe7g\\-ctk\\-eRQeQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565bad0\\-c9936721\\-84ba\\-49a3\\-874c\\-5a25c4d7e243\\-000000[\\/\\\\]+zGcod49UhS3OL2d5rQo4OeDYvgA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d08218\\-f9eeac5c\\-f667\\-4433\\-a16a\\-9845dee14774\\-000000[\\/\\\\]+jC17RqJJlMJGFutnjuJ6RQHmkdE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c36861\\-cb63211b\\-989d\\-445d\\-8c00\\-c2576e2f254d\\-000000[\\/\\\\]+w9omftU3tA2SkqELqzQ9wCFBiNc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e0d14\\-a0a5c48d\\-5ea0\\-45e1\\-8546\\-09d311576ca2\\-000000[\\/\\\\]+\\-66\\-a8wau\\-X6beOpR8KwZAjlnIE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d034ac\\-c18e1ca7\\-693f\\-476a\\-9f36\\-d7924de34426\\-000000[\\/\\\\]+CBL9xO4ZYpwaiFu_8dBeguUX\\-tQ\\=394(?:\\)|\\%29)\\.(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce0c77\\-0e2d0fb4\\-9ca4\\-4817\\-ad8d\\-defb11ad723d\\-000000[\\/\\\\]+T9R3NoaA6IX41mkTzXdO6KatByc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c4221b\\-069da0d0\\-1046\\-48df\\-899a\\-8caf06761b2d\\-000000[\\/\\\\]+zIGzD9xRuxW1AYfIhn50bU_1RJw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e2711\\-e1bfc721\\-66ac\\-4475\\-ae86\\-b33c3fda8a75\\-000000[\\/\\\\]+TmXui5T5\\-7WGWg_mun3IUMN_JOY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a8c669\\-1c91586e\\-d157\\-4333\\-bb9a\\-ebe99e757616\\-000000[\\/\\\\]+gLAtJhPDw889IVM9UxtLqkUTH5w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585f8fd\\-37ad1a8f\\-d92f\\-4453\\-ba05\\-191860392523\\-000000[\\/\\\\]+vSlRIAMXhNsZtanmntbb0kKXEGk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c982bd\\-3cd5fbb4\\-2a26\\-4a8b\\-b02e\\-f03860509367\\-000000[\\/\\\\]+KP322GN5DZgKBWDgSR20A6HDknc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565bad0\\-c9936721\\-84ba\\-49a3\\-874c\\-5a25c4d7e243\\-000000[\\/\\\\]+s_wOS_4CZjYwNqF4n27BaSVSaSU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245751ef8\\-5fbd889c\\-6742\\-4f7f\\-b27f\\-1c9309a0653d\\-000000[\\/\\\\]+FVte923hzyRVUKVI1gIeLgqriZU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245820f09\\-c66041c0\\-919c\\-49ee\\-aab4\\-fd289f578b03\\-000000[\\/\\\\]+xLJI03nXkNQM53oUBHagsBW4huM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb4936\\-bd339feb\\-0274\\-4d42\\-86ed\\-cf7c62bb9e85\\-000000[\\/\\\\]+aEaJCEba5CrytnUnbVqZ2ri8znU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a470a\\-5923e90e\\-89ac\\-4a2c\\-8571\\-bdaa1a037651\\-000000[\\/\\\\]+fmOmeUjcptgjdgR6PFfZ3kyO3gw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd6843\\-ce220009\\-a0dc\\-4f53\\-b3f3\\-3af6f0e7ae6b\\-000000[\\/\\\\]+pec_ovvCDTMQnpQEfL21wZSEK\\-I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4e3b6\\-dd964237\\-65b9\\-4876\\-b014\\-591152d48421\\-000000[\\/\\\\]+y8X27C89m1oJcIpemqqt9BQAA\\-8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457372a5\\-c65c6a5f\\-8b5c\\-49b6\\-ae77\\-c256c0d83319\\-000000[\\/\\\\]+2zAAab8BDaVa5OoU4Wec7YOAYw0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e95ab\\-bd86c3ba\\-2774\\-4ad6\\-a5e8\\-6fb9b9e5c592\\-000000[\\/\\\\]+zGveSMSSc_MQ2Uj2EoiNj5MSB\\-0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f6bd0\\-12576c53\\-5cf3\\-4972\\-82de\\-e3e0ed81ec69\\-000000[\\/\\\\]+sTitHsMqJQr37dOq4\\-i\\-cJueDCQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459dda4e\\-46ba5d6f\\-c55f\\-4661\\-8dba\\-b99cf280959f\\-000000[\\/\\\\]+412qkNhIn3xSpsVBzG1eg5yHB1k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c42f0e\\-c85a00f7\\-6eaf\\-4ae1\\-9e1c\\-6a64b4268a81\\-000000[\\/\\\\]+Vmu_3aCPmgouk1hfXDWp6\\-3xsKE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ef193\\-ed00154c\\-c4de\\-4449\\-b859\\-fbc1dafa7f22\\-000000[\\/\\\\]+W\\-tQYc6z7rX5y898nLkGtkYCRYE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565a884\\-7da62544\\-0e3d\\-4547\\-8419\\-9dcbcd21729d\\-000000[\\/\\\\]+cf870hdXlViH5rTbHRD5458rg1k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d59b7\\-3948c6b7\\-eee5\\-4180\\-8778\\-83861baaafe1\\-000000[\\/\\\\]+T82o5v8bs9uGU4FZ3M2dc_ZoF2A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5ea37\\-06686548\\-7445\\-4dc6\\-9f2a\\-e1099a69a8a7\\-000000[\\/\\\\]+kh2TXK9PL9eFmXROCCOsI9iPSng\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458183e5\\-ed3648b9\\-5bc7\\-4406\\-9bf4\\-7c025b82d6fb\\-000000[\\/\\\\]+GpEDxWPFbr3HEAeuJk1Su387PFY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c256a6\\-4f1eafa3\\-35f1\\-4f53\\-afdd\\-3aa3500558f9\\-000000[\\/\\\\]+25z5m89v6adgN92jnMT1t3WXquc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458590cd\\-8295fca8\\-b94d\\-499a\\-82dc\\-281d61ce7c31\\-000000[\\/\\\\]+sUmewNhjlpUtPx8dB__mZLU9Vac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b00cd1\\-1919db2b\\-addc\\-42d1\\-a0da\\-0c62c36b7280\\-000000[\\/\\\\]+ibEhdz6YlfRr\\-F9fbfGd4ulqtUE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b66ae1\\-3c709b33\\-a9b8\\-4917\\-8280\\-059f5b112aed\\-000000[\\/\\\\]+UDBSbqxQ7KxYxs\\-unf7Msh\\-FiVw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c39f6c\\-ff2f609f\\-27d8\\-4ff5\\-bde4\\-a5b7e6cb184f\\-000000[\\/\\\\]+04tjgehQ_bNv14_VOfPz3IGN_H4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8fde4\\-c404a3a1\\-e200\\-457c\\-892b\\-4e5fba5e3bff\\-000000[\\/\\\\]+rGdcgsjzdiI9gX3l_FTeu6aehMg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bb8e2\\-42dc46f1\\-67de\\-4721\\-a8f9\\-25173b11f404\\-000000[\\/\\\\]+PexMwMlHelZ1lWKHgBcEZVCY1So\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594bfeb\\-e4fcbc69\\-6f65\\-46ed\\-97d5\\-ad64069e18c8\\-000000[\\/\\\\]+xOl94oztWgxNpItvWyxkflPJLkE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e9003\\-624a933a\\-3465\\-4833\\-ad54\\-ae5c3129ead6\\-000000[\\/\\\\]+mO3MWXQcd9ULNpN3NvGukHMJ82s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ea3cb\\-04307274\\-98fc\\-4eb5\\-91d8\\-0993e70c63a3\\-000000[\\/\\\\]+RAEQIa7v2AOJNf4AzC9VTcA5uwk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a0fa4c\\-2e9b04b9\\-cc06\\-4112\\-85f9\\-379cb205d585\\-000000[\\/\\\\]+x4cbk3uZ4y6snXRo7vk0GeIajes\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a38945\\-7f23aedc\\-a446\\-466c\\-bc0d\\-480556684117\\-000000[\\/\\\\]+b1eiAQjrp53MNxy6qUD\\-Z4jrZco\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1e1f3\\-f36b993e\\-4c50\\-4a92\\-bc6d\\-2e8894f44458\\-000000[\\/\\\\]+q9vuIR78leI_fNyykAMZUcgRcmI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b14b3e\\-a351f25f\\-3310\\-481e\\-8f12\\-202c2fb03b80\\-000000[\\/\\\\]+BvM21uCIGekrD_d3VgVQUvf8\\-HY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6cf0f\\-1756fcd1\\-3878\\-485a\\-bcdc\\-15b7850aef8d\\-000000[\\/\\\\]+V1XNZrkUtSeFMm9b_gCaGnyRhR0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e285f\\-7da503db\\-49eb\\-4b86\\-8422\\-e9ba7e472a64\\-000000[\\/\\\\]+cZaVlRHUbncMqtaYoKmoKsF0YI4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e373f\\-30d831fa\\-ef35\\-4273\\-b7b1\\-05419a70232b\\-000000[\\/\\\\]+5OZyONtNLw3HXGw0xSRzVcyAO6k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a10369\\-846be085\\-6e56\\-414e\\-8a9c\\-b03a304c78dc\\-000000[\\/\\\\]+RLEKa3p70CWm6bY6IUkDzEvF6aE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8645c\\-d70de077\\-f37f\\-4dc5\\-9a3f\\-6b3d272e286f\\-000000[\\/\\\\]+3gRx3Z3PwEPw_RA2hJXIC_3965Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad8e3b\\-dedcee11\\-2cef\\-4129\\-8758\\-346d867a18ec\\-000000[\\/\\\\]+UDRL97iNFjBKbnyKGKs_obfBebk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589a6f4\\-a8687a53\\-7847\\-484a\\-97d3\\-6209d3565a14\\-000000[\\/\\\\]+fyCZ6wiPAjGbrDsc5au5lkcVVmY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598ae98\\-c82adb86\\-ca04\\-4fcd\\-a7e2\\-fbe3c9dc6a9c\\-000000[\\/\\\\]+AqA\\-HivCDsum0YA58OAMpCSrvZY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6e490\\-d6abb0bf\\-6ac1\\-44f4\\-88e2\\-9f8cd7456aa7\\-000000[\\/\\\\]+yLvq\\-beqF3KCenSSKg9vi47tfys\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae4756\\-92e37847\\-c51f\\-40d0\\-8159\\-334a76938d7e\\-000000[\\/\\\\]+uisf0nDQ2162sGjkRA_sDr5bPrY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb01b4\\-70d731ee\\-54ee\\-4725\\-827b\\-476fca6a3340\\-000000[\\/\\\\]+Acdx7ZYphjSVFpUWsldPfGW6dto\\=394(?:\\?|$)" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c5de7\\-1666008d\\-9a6a\\-4075\\-aaee\\-cb7f097f09f5\\-000000[\\/\\\\]+sLtG2IBkrjXWu0zluCWoXvIY8GY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924591b1db\\-75d48a32\\-eb5d\\-4770\\-8c93\\-bb1ffc408097\\-000000[\\/\\\\]+2Ll5lnASYUou_O9WxQI8mtzycpY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245981f3f\\-404657cd\\-4642\\-4f1f\\-b934\\-0ec1e8514378\\-000000[\\/\\\\]+opQmMeqhd1HlHAhg4LC2YwPxkHE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0d85e\\-50afd7e3\\-cfa4\\-4c8d\\-9e26\\-f9c711fe35f7\\-000000[\\/\\\\]+jSZPSfsX_RriZUTnJFonqjQcWAM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245adb35b\\-48318ba7\\-e954\\-458b\\-a3a5\\-d752a05e8672\\-000000[\\/\\\\]+12jfIHdNM9L18koC37wF6J37PBo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245730a6e\\-e890ff29\\-d42d\\-4711\\-8d10\\-df2f720eb0cd\\-000000[\\/\\\\]+N4aUP3DEooaqfbxg1eh08XA2JXQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b40ff\\-109d00bd\\-d1ef\\-45b6\\-98d2\\-d97c18d3d3f0\\-000000[\\/\\\\]+UT9NsHbzlMn3JxN\\-ykf8xBqMRyQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589c917\\-4413a051\\-5696\\-4812\\-ae2f\\-f1e85c62c032\\-000000[\\/\\\\]+mo9F_RARUqwyq6liMPiePrLEBko\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b0972\\-6f3c1ac4\\-d01d\\-4977\\-8ba0\\-89c4c91b87b5\\-000000[\\/\\\\]+75upbTwBjdPaB9aY9Hvni9lK3bE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924593e0d6\\-f5881815\\-edbc\\-4d27\\-a34b\\-8c060ca6a847\\-000000[\\/\\\\]+EJx\\-2VpElba9i4x2Ajr4_i5xPGo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bce53d\\-d9d6e2a5\\-c8a0\\-471c\\-a038\\-69ad0f89aa69\\-000000[\\/\\\\]+GerhCCLuNeX7qP3eh2iR3SLGj8Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb7e0a\\-4f713613\\-1e0a\\-4513\\-8604\\-fa4873a13c12\\-000000[\\/\\\\]+Jh\\-vUNaDPkmlzgdcla2KPuikQYE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b0562c\\-a6612490\\-e8fc\\-464f\\-8075\\-6fa2c06f5110\\-000000[\\/\\\\]+oNS7DjvWyv6gSUuvFwiCZaLhr8I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c32e19\\-a555484b\\-bafe\\-4261\\-9bc4\\-241db9cd6b7a\\-000000[\\/\\\\]+NLDgU9A\\-W1m\\-sPdfc2\\-wek8dFko\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574ef4b\\-1ccc5d97\\-4dcb\\-4d7f\\-aca0\\-773b16f36c79\\-000000[\\/\\\\]+k5s9wUP828MwfObsOmu\\-ZBm4Zgk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596e1cb\\-51aeb4d0\\-c09c\\-47aa\\-ab56\\-05dc87ec3297\\-000000[\\/\\\\]+6Usqpk9zUla1c1S\\-Py5COSVGV4s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a58035\\-2601af7f\\-2b17\\-4c60\\-925b\\-11632000d80c\\-000000[\\/\\\\]+jDQZ1b_UWLCE\\-1P\\-UgcjwpHKcZQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c0e60\\-c16e1427\\-fc93\\-49bd\\-bcee\\-e81a776a6150\\-000000[\\/\\\\]+B0RKVYI74MiAgi5TIsiPT7mzUhw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be7d12\\-00cbacb2\\-681a\\-47f7\\-b78e\\-b945113576fb\\-000000[\\/\\\\]+vMPsFKq5e38a0fW4KgveZQ9IRpY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bcd525\\-e33239bb\\-8bba\\-4914\\-8390\\-be01ff41be4d\\-000000[\\/\\\\]+F4sJhbBj9WvRmnDPDSaoh0L5bS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b7885\\-dd1f13b6\\-4224\\-4461\\-acf0\\-706d4a6f4685\\-000000[\\/\\\\]+L5xKGOCMAaReeq77wurK_tKPrYk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be5157\\-df1b0911\\-f1c0\\-4e1f\\-95a4\\-36885dad330d\\-000000[\\/\\\\]+29QsfMyQ30tMP39f6rNoU5HyErA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583d232\\-22a8c5a1\\-949f\\-4bce\\-a571\\-e76226b81f89\\-000000[\\/\\\\]+WxeYVC3by267xAw0gjtLEnJgIWE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc8106\\-3d22380f\\-2242\\-46d6\\-af1f\\-e91e1a7d7966\\-000000[\\/\\\\]+ndcaKrfMQU6jrC8B90QARlqjCyI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c57e7c\\-67301073\\-76e8\\-43c3\\-8546\\-b43c058692cf\\-000000[\\/\\\\]+n9yl51LCzHxurbRzUpG_zGp1338\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457eaa1c\\-69464744\\-2450\\-4a00\\-b5f9\\-a14a83dc1236\\-000000[\\/\\\\]+bRbxcD9p6Pdj5PykVz1p3\\-n\\-Kiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574f7c1\\-990dce78\\-2c70\\-41c7\\-bacd\\-21bd6cceab35\\-000000[\\/\\\\]+FoCae2ATJf5GjtvUEuaciunUCv8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565a02c\\-e3c98088\\-e77c\\-4cd8\\-a659\\-1303228964f3\\-000000[\\/\\\\]+iIFv9RtOFzwC5Q5cjHM150f1uHU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b777c3\\-5feddc63\\-9ba8\\-4130\\-bf22\\-f3733a2a66e1\\-000000[\\/\\\\]+dunxZmfUkoapTm\\-UHsVQq3\\-Z15s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d1233e\\-c5e0d434\\-ee85\\-4c80\\-bb2e\\-9342cca380f3\\-000000[\\/\\\\]+1VKnkQczUPtprQiQyS8te9Nfw8g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459883d1\\-34bd3622\\-6938\\-4783\\-9821\\-30a2882644ca\\-000000[\\/\\\\]+3INARuPYSQIiSr4L\\-7A1\\-Aeb9q0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a0eb6\\-2650e892\\-4d5b\\-4985\\-a6fc\\-e565b39a4b75\\-000000[\\/\\\\]+j9L7r\\-IGSpaZszPv3QNGLc6HRaE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5e705\\-b33f8501\\-99c7\\-4f75\\-b089\\-555d1e5f3c36\\-000000[\\/\\\\]+CZDY6IPjfRrz6j8M8WpDaCRfcwQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a2489f\\-a6f626f8\\-c23e\\-4757\\-8696\\-78ff9472562e\\-000000[\\/\\\\]+dBxxNJeryGc7xBx9SPdxNJaV6_M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d3f2d\\-309fb173\\-10fe\\-4c67\\-9fec\\-d4293a28dbbd\\-000000[\\/\\\\]+mCydfXiqawX49xN0\\-\\-gpFfbETtM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f22ed\\-63ceaf6c\\-9422\\-42fb\\-802b\\-fd46fa4b2642\\-000000[\\/\\\\]+9NQv1MCJ6cfCBJ4JZ1v4oiRZwfk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad491a\\-cbc7b066\\-4094\\-4293\\-9882\\-0f22baa77c64\\-000000[\\/\\\\]+V8VPWVJJawGw8WmXI6LNGRg2vr0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb113d\\-fe4a883f\\-526e\\-45dd\\-8d95\\-69196a7bb0d9\\-000000[\\/\\\\]+FI0ebFXaF9_43Smln64yBxSklrE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfb689\\-b93a5068\\-0b7c\\-4167\\-ac6e\\-2915ee9f27d1\\-000000[\\/\\\\]+YMkG9_bRTQdVzep8D2_HIZyoJHs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594b047\\-6872e511\\-0f2f\\-498c\\-aae7\\-783cffce156d\\-000000[\\/\\\\]+Wu08d3xiAKNdxznDl3E0Wrx0uKc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b1b80\\-3f473b9e\\-1a81\\-4050\\-9e21\\-f49916a1d8c3\\-000000[\\/\\\\]+duIU\\-ZkfvE8HcafCtXzDs1ntWK4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb4fbf\\-3358ab4c\\-f17c\\-4b70\\-a64b\\-6e5db36af21d\\-000000[\\/\\\\]+GwwO2G3SSViwmY4VIplSaU64iyQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b211b9\\-381f5d4e\\-9f82\\-4153\\-a7e3\\-f9fb5bb57848\\-000000[\\/\\\\]+5_7tzOdT7fpUVnFj5utb1Rvo4mc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b3d7c\\-c751a5fb\\-b5ba\\-4543\\-bb11\\-25240ab039ec\\-000000[\\/\\\\]+7X3krNxHXYzuPCDpO\\-iXg3QJBaQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457becc3\\-0257a7dc\\-e2de\\-4a8d\\-be41\\-fde2a66df9de\\-000000[\\/\\\\]+ErGYzLCwCH1kbp3\\-XZXkFYCGQe8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8645c\\-d70de077\\-f37f\\-4dc5\\-9a3f\\-6b3d272e286f\\-000000[\\/\\\\]+ifUpYcWh2yAwv8bvLbYUZIPi4ds\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c65573\\-7098113f\\-ce32\\-4f29\\-874d\\-47f4e67ea310\\-000000[\\/\\\\]+\\-TcqNs3oKiLU4JcxzfSrmNBYpA0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c73437\\-a483e94e\\-4391\\-42a4\\-a479\\-66b23c1ece8f\\-000000[\\/\\\\]+NVAj_YcunbAA6jnoQBtMBKUJJ7o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d6fbb\\-31efafe1\\-4c82\\-482e\\-a26e\\-1cf0d3e340ec\\-000000[\\/\\\\]+EP3\\-9HOwp1Q8qXXE924xj8vI\\-M4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458bd16d\\-6e0740da\\-0a12\\-4730\\-b3b7\\-81bc173e02b1\\-000000[\\/\\\\]+Rexnysoyj1Y9s3XjfHcirpCDAiM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f4a95\\-cbca514c\\-9740\\-464c\\-a7f9\\-598590632734\\-000000[\\/\\\\]+sYDtl5yyMAc1DU6NpJbjf2tvhyM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582181e\\-2eb8d347\\-e272\\-4b97\\-8364\\-bdbe43dda183\\-000000[\\/\\\\]+HMKFGrXCX_7X3U\\-R4ioaCwCk8YI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5c0ad\\-3ad752b4\\-9098\\-4bc0\\-8581\\-19acd9c83da9\\-000000[\\/\\\\]+GpKfUwIIdsIJuoj5wqA7rxouUtM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ba5f87\\-48db5ee2\\-64fd\\-4d14\\-af2d\\-6839199e05e5\\-000000[\\/\\\\]+tHLB01z5wcxQnhIG8XLpBl8w5z8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8194e\\-2819ffc1\\-aa31\\-4ce9\\-a58d\\-ac62806e4ed1\\-000000[\\/\\\\]+PXhKL2DJKwHSJ5RUzvB8alwA9LI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4f84c\\-c6b6e46f\\-7218\\-424e\\-9e0b\\-a6791552ed21\\-000000[\\/\\\\]+coVoUNBW1RZJc1VCiR2vs5iVYac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574f572\\-813d9771\\-a66f\\-45d7\\-b96b\\-aa9570be0fc0\\-000000[\\/\\\\]+SKpuoOQNUeymrWD2xX4Oys5QQp0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456aea92\\-6fd7fb93\\-79c1\\-418a\\-bc24\\-17a8f80677a0\\-000000[\\/\\\\]+\\-q9ONOXDj1pXGWLwZvsSbKKjZgU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0da23\\-6160e162\\-922f\\-44bb\\-bc96\\-d19e72a070e6\\-000000[\\/\\\\]+u0KxLqf\\-Mc5EHFdXLbwqR\\-76Ie8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596d702\\-1306ba39\\-4484\\-4f64\\-9632\\-639cfeeeafbc\\-000000[\\/\\\\]+_3jSKeytj8Kmh6RMf3b4uT66d80\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245908b37\\-103b91a1\\-357d\\-4734\\-8f88\\-8950947e15c5\\-000000[\\/\\\\]+WyWYiISql_xkKY\\-d_isfcCBvaSM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d07bd\\-5f607eb2\\-141f\\-4db2\\-9581\\-1cd4f426b2d5\\-000000[\\/\\\\]+2DT4VvX8WcFTgWP8IAqRUTbMIVg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3578c\\-1a0a442a\\-613f\\-4be0\\-8081\\-c663e5991696\\-000000[\\/\\\\]+Y5WGHEBhmFBs6IdT6nYoKwUT40o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583db3d\\-79c470a2\\-6b33\\-4bb9\\-b74d\\-81a75344efb5\\-000000[\\/\\\\]+OdngJKcFO869Jd8mA0282wycnNo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587db5a\\-e0ced99c\\-1991\\-49b4\\-a0b6\\-430d202385bf\\-000000[\\/\\\\]+CT0wIf48fp7i1RA9j8JI4xEe9CA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924599636b\\-a257aec1\\-f664\\-4b8c\\-b19a\\-18d95195d177\\-000000[\\/\\\\]+0RAR\\-mQCsKRcB7gKSZEIRX4wxIA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb8e75\\-a8c10688\\-3772\\-4e53\\-85a9\\-45c2bccd0a63\\-000000[\\/\\\\]+YtLEvnoOvfNXLp7K2FLqgjXFkfk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d1713\\-7097582c\\-49a5\\-4797\\-85f9\\-cebb3a4965b2\\-000000[\\/\\\\]+OIMbr0WbMCCan7XFXwB49v5aito\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb1641\\-847d1a61\\-efc4\\-45e7\\-9597\\-52c554da48ec\\-000000[\\/\\\\]+OOPktDcoUbB_bHHX\\-GHIbi2cJGQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c14e12\\-c857b5cd\\-6cbe\\-4b31\\-8ba1\\-146b2cae8e2b\\-000000[\\/\\\\]+WAJQOBanvjsHuXVX1J9NwizU1\\-E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a59bc\\-42a50a21\\-1699\\-4247\\-bb20\\-d94bdf2ea8a3\\-000000[\\/\\\\]+DYur6ZTmE18QaGXaU9aXvCQVgPk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457064b6\\-f21f5e1d\\-c5ec\\-4320\\-904e\\-0ab5dfe95a8d\\-000000[\\/\\\\]+jpoVbSFX3LyNpcs_7XiGvM00Qy4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be719f\\-880ddf95\\-cbea\\-4873\\-b560\\-5e33b3c0ec0b\\-000000[\\/\\\\]+aWeU4TPWlj9Vi_WAQy0_2zR3eec\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596e5df\\-ec6fa737\\-9b13\\-41ac\\-991f\\-a44d0933141b\\-000000[\\/\\\\]+_hSvqRk1XEOmRVVZD3LtC5RKcjM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca3dd7\\-8dfb364c\\-861d\\-4669\\-8003\\-9e8aa5ef98ae\\-000000[\\/\\\\]+Y8r8ff_xTtl6MraxFWuCJHDIyM0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459cc245\\-8eee6d07\\-382e\\-447a\\-b973\\-318704680aac\\-000000[\\/\\\\]+Z0l0H3TtT04yUwDRLl7e8ktXHn4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb7b75\\-8c2ce80d\\-a543\\-4141\\-aa84\\-bf4c5fce4a0d\\-000000[\\/\\\\]+KBMFhifuAyUyAwibhw3hXSZ9XCk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf71b0\\-f3123336\\-df4d\\-4ace\\-a502\\-d7b1d206ae7c\\-000000[\\/\\\\]+_XDF_lCkBVZlMJCoBDu9jgLLi60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c8d8b\\-096354cb\\-be32\\-4540\\-b9b5\\-24be3c1e3237\\-000000[\\/\\\\]+TGW0pjgAtEejXKlskwFpzn_ZHOg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca20be\\-738d6e40\\-56a9\\-468f\\-a510\\-9961439525be\\-000000[\\/\\\\]+XPvSbkcxUkdoAtqiFF8dpR1UD6E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb7f7e\\-7b9099f1\\-f2c4\\-4c30\\-9b7e\\-f6d0bc7e9873\\-000000[\\/\\\\]+BYFMiFIgSCtOmg47LCUzYAzWOt0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245719af9\\-bb743cfa\\-94a8\\-450d\\-aa52\\-c1e8e9cdeb7e\\-000000[\\/\\\\]+R18MkqcNZt4IE\\-_ycG\\-qzgq896Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c2ffdc\\-4be93346\\-4210\\-4894\\-b2bc\\-5beff72dbaf8\\-000000[\\/\\\\]+7CaRyVgBojnHw48_EN7\\-2GiBkPs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab2d3b\\-8b9d2adc\\-6180\\-4eea\\-a1bb\\-913e5e009011\\-000000[\\/\\\\]+2DPSz1p0LY44SzWD0PpyXZOsJok\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458378d6\\-14564d98\\-ee96\\-436c\\-aec3\\-ab1aa6b0a135\\-000000[\\/\\\\]+K\\-VVVZFwBi3_2lRAzIf1lTCLVmg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae4e5d\\-123d7562\\-684c\\-464b\\-ba3d\\-773fe0c16150\\-000000[\\/\\\\]+zXjOfbkTiPOXF9O5QR7ZY4dYrYo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568845a\\-7270a0db\\-e673\\-4271\\-baad\\-df41635030dd\\-000000[\\/\\\\]+LOYOTq3VyXsc5WiLKEwTjAZDUIk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b27ea2\\-35bd50b5\\-5777\\-4587\\-ae64\\-79a939b36548\\-000000[\\/\\\\]+Q2nuwS3ghiRH88_5UBK\\-di\\-Wm4U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245995e5e\\-092661fd\\-6585\\-4f0c\\-bae2\\-da9aa2e84cae\\-000000[\\/\\\\]+peyBVOvnQHEuaTgRLDt19\\-o88mE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a7f7d\\-0ffc73e9\\-88dd\\-4769\\-85e3\\-e5817acd8636\\-000000[\\/\\\\]+8UBEzDPjg1MRVhaIGaMRNXsj3o0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565a02c\\-e3c98088\\-e77c\\-4cd8\\-a659\\-1303228964f3\\-000000[\\/\\\\]+AyQbyHIhosEJYXXQ2UZ\\-Dxo9vag\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb40f6\\-1b1e1261\\-193e\\-414a\\-a665\\-ab8c931d1f3e\\-000000[\\/\\\\]+Hr2EJPyN1tzCHYkR6s7fEQWbxwk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b1f52e\\-cf40b45d\\-58e6\\-4910\\-a050\\-051ab6aca9d2\\-000000[\\/\\\\]+6oti\\-7qKJmys6O2vKEqIvqCW\\-Dc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd6843\\-ce220009\\-a0dc\\-4f53\\-b3f3\\-3af6f0e7ae6b\\-000000[\\/\\\\]+t9_vBVbnjcTGj5zSnoCu9YoeW88\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a91a9\\-27b5dace\\-5729\\-46d6\\-8099\\-00648e3dff4b\\-000000[\\/\\\\]+whn9ihvWK2ZSiXiUt7qYPNXw7IA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245acea36\\-63f9f63b\\-cd36\\-4d9a\\-bd37\\-01af150f718e\\-000000[\\/\\\\]+lzvrppanKDYN_Zm99x9XAQ7uBLk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a22817\\-4d065feb\\-118e\\-4a8c\\-9607\\-4631806c2faa\\-000000[\\/\\\\]+FrqPsqI3RC67lUYmupe5jLzrm2M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc660f\\-ab54a795\\-cdc9\\-4b68\\-940a\\-fc6fa36825d7\\-000000[\\/\\\\]+j9WpxYg4XjkehlNK47Kr3JC2fc8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d2e4f\\-06990741\\-c86a\\-4693\\-a165\\-3e96b75a0715\\-000000[\\/\\\\]+25YXWISkl0OmkNkkZ207keWJl88\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bef705\\-b5767f5c\\-fc2f\\-4a35\\-831e\\-bd5984fef182\\-000000[\\/\\\\]+2yUOvnd2Nq\\-USwKxSJLgU\\-y9QLE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f08cd\\-62a007ef\\-0d96\\-4b11\\-9d9d\\-7efc04c3974b\\-000000[\\/\\\\]+FL1DdZiuYrVqRkepGvr2RusGcQk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457fabcb\\-e24f3da8\\-6779\\-4d9e\\-8460\\-bb6f314fe7ff\\-000000[\\/\\\\]+2sShYT4YO5\\-6BL6CgvoG5cMQqdk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245994f2f\\-afaf920b\\-7765\\-4703\\-827b\\-59879b61ef7f\\-000000[\\/\\\\]+u5cjxF7gOSg9wZGeN2W_WOJ3wv8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574eb45\\-5fd2bc6a\\-cd9f\\-490c\\-813c\\-0d9d45cec12a\\-000000[\\/\\\\]+u3FpWMuxZC5s_VsHKV\\-cRTvjE_I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c36861\\-cb63211b\\-989d\\-445d\\-8c00\\-c2576e2f254d\\-000000[\\/\\\\]+Ya4zGNx0\\-mt8RRrk6Sztczv2UE0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a6c888\\-f440eaec\\-0ac0\\-4498\\-9ec8\\-ccc6c6330f44\\-000000[\\/\\\\]+S4TC_m_S278rHoIB73v1\\-4kjT\\-c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afc0c2\\-b23075d0\\-c491\\-4b32\\-a3ef\\-874fb9ba27c0\\-000000[\\/\\\\]+SIEg7vWitrCu40vUWu1VKePwUcc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7793d\\-58230dda\\-8e52\\-4018\\-8fad\\-d4d6d2cdcd14\\-000000[\\/\\\\]+UBItlhOaiwhsrqqJ\\-JTtGwqEkvQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245905243\\-bbec8765\\-76fe\\-4bf7\\-b05b\\-51353637f3a7\\-000000[\\/\\\\]+PaGneSbNx_vjKs0n8SNdCaBvpBs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b2829b\\-3406a4b6\\-e7a3\\-4329\\-b68f\\-254d6d34b47d\\-000000[\\/\\\\]+D_lMKfhYwqBc74W7fHITY8PfYvk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bc167\\-ad94dcac\\-7c6c\\-46dd\\-af81\\-c48c98f3efee\\-000000[\\/\\\\]+rqUpHUNtgNJQh50puivD_98DF0E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456db854\\-c4b74630\\-1912\\-468f\\-9130\\-c73bbbaf1fee\\-000000[\\/\\\\]+li4eZsOn18jfUdbcu5Jv9QcOHoo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b425ec\\-9b1330bb\\-9e80\\-46a7\\-9fd5\\-040313bd643a\\-000000[\\/\\\\]+RXa9TO4Yk87at0NzWVDWtij5EHY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589969d\\-f6040b55\\-c238\\-40cb\\-93d1\\-061d25907792\\-000000[\\/\\\\]+6YWSLD98QyfmC\\-vxhQtXP6QMLwk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae3432\\-c6fb50d5\\-03d1\\-4d98\\-8b1e\\-3d6ec8d44cff\\-000000[\\/\\\\]+5Ih0iKPuZOfMfyQHLt0f_kKXn1E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bef276\\-dca14034\\-8f07\\-4ae7\\-8a65\\-b479aa932ac5\\-000000[\\/\\\\]+KNfq4wwLd0IWhMXRLva8V0hBDL0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e8cbf\\-faa3d05a\\-83f2\\-46db\\-b629\\-760a42b6a8c5\\-000000[\\/\\\\]+Ev9HduWQ_tdCQkeacbB\\-aETcf9k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab2a8f\\-0bec05ad\\-e003\\-44a3\\-8c81\\-73bce26b74e2\\-000000[\\/\\\\]+lJCAkV02gPWkJtrXI2lk\\-RPACgc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245713d45\\-8d6bb3a9\\-ef9b\\-4062\\-ad62\\-2783cf7b7fc8\\-000000[\\/\\\\]+bBJEJpGh1B\\-8TU0wSmHnBhcpls0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b357a2\\-b9c315ac\\-4c01\\-4450\\-b5d3\\-91d4e5760960\\-000000[\\/\\\\]+ND\\-mzkMXBbYbnwPBmUxzBUM57r4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b1b6c\\-a0fe0d5b\\-7f4c\\-4bf1\\-81b6\\-a91d7a858e62\\-000000[\\/\\\\]+cbYpEtNqIkrTbfvZ7HJQmizHUP4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bedb14\\-59573d25\\-6c2e\\-4fc2\\-a4ec\\-c0507de34e31\\-000000[\\/\\\\]+BPBot1SBoYS95THdOAj5t6XeeUM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1a031\\-8a06ca01\\-8207\\-4850\\-b612\\-9663700e1316\\-000000[\\/\\\\]+jquOj2uf2J31hkm5OEWzKKjmSdE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c4c74\\-275080f3\\-f5e0\\-43a3\\-bd19\\-2ad1bad8a8d8\\-000000[\\/\\\\]+0fMfQyvqsHotOoX\\-u5k191fYE_s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc9f57\\-1190d9c7\\-fac1\\-4292\\-a0c2\\-89ae773ca242\\-000000[\\/\\\\]+lrT8W_FN2amxs4ffu9_2929n5ZM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c05c4e\\-7f666987\\-9c62\\-4cc2\\-ab16\\-5f039544b44b\\-000000[\\/\\\\]+g\\-yRH6Q0ZIUDQjlAVdR6Yz16f84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bdab5a\\-be4bd877\\-97d1\\-4bbc\\-ab3c\\-0bfa73591701\\-000000[\\/\\\\]+DD0OXoZDZxEgX68NPTACAc1NO5M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456119df\\-8f5f6da0\\-43d0\\-482c\\-baed\\-f022b4e0ad93\\-000000[\\/\\\\]+OIKu\\-mYfRh5UE0fUuG9nO3u5d3s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570eedb\\-d660d921\\-bd7a\\-46ce\\-92cc\\-f2a39cd96e67\\-000000[\\/\\\\]+y7qAYkaSoUf09Ymixh4fY8E8SaE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a394d8\\-f88e5800\\-260b\\-4d9d\\-ab33\\-5863d1e3232c\\-000000[\\/\\\\]+8oasMr3mTq0YgDWoiTvYWpf7ZQ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b97692\\-f0a79b60\\-e5e9\\-4f92\\-ad96\\-c4c8659d0ee5\\-000000[\\/\\\\]+ryN2zhHWZQ0gJtGxs03TMfONU8w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ee9a0\\-689901ab\\-cfa0\\-4d92\\-9068\\-408ee8bdc8f8\\-000000[\\/\\\\]+LEqEJjpuCFYcISJ3_P5rc7xs7eI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a8f40\\-3c76a836\\-4ad5\\-49f6\\-83f0\\-d0151f5d6e8a\\-000000[\\/\\\\]+wu_8OwO91zjkEHCZLeZmHK0BEBw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456b2511\\-687ae7e9\\-cd5f\\-4951\\-b9a1\\-ea055ca60119\\-000000[\\/\\\\]+ugBtnvssp5ZgrBnl9s6M60_sPi0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb3a0a\\-5b7a03cf\\-dac4\\-4dab\\-956b\\-0910147ffcee\\-000000[\\/\\\\]+mh1Vk34A4iXqg7IhwjuT5Jz24xo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac97a2\\-4c96acd8\\-349b\\-4ef1\\-8cf4\\-d450f2e75ba9\\-000000[\\/\\\\]+qkszy218P7AdriZygAhPJmNvL0I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5186d\\-6d02027b\\-77c9\\-441e\\-b49d\\-f9082d24056c\\-000000[\\/\\\\]+Usem\\-KBMkNzlmLkFRo9_AmH35nw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d034ac\\-c18e1ca7\\-693f\\-476a\\-9f36\\-d7924de34426\\-000000[\\/\\\\]+CBL9xO4ZYpwaiFu_8dBeguUX\\-tQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572d32d\\-fcd3ccd0\\-57e7\\-42fe\\-8571\\-10da646a9edb\\-000000[\\/\\\\]+11eAdaNEDChfU8CXSXUPGx5gZFg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582fd5e\\-ec46c07b\\-1f22\\-4cf5\\-bbc0\\-c4e05c413c9d\\-000000[\\/\\\\]+5FYuV4T3hHRYXg1Hrc9csbaeTnY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cca20b\\-2643dc6f\\-ee92\\-4bac\\-98eb\\-37ae2aeaad8b\\-000000[\\/\\\\]+cPhklvgDbkO7qO9OxaIgHuZ1Gmo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568f8f5\\-7affc1ec\\-1e07\\-4641\\-b275\\-7cf2a18e9bf4\\-000000[\\/\\\\]+d8\\-FOsmmia7oTKtNI9ZSJ7uDQ4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596eb97\\-ccc4854e\\-05ad\\-4125\\-b965\\-83a7132ec8f1\\-000000[\\/\\\\]+LkKo0gYb_DN4VpaJuBai14qxRN0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1b4f9\\-dd4f1d71\\-9d95\\-4824\\-82b7\\-fa8e65c221fb\\-000000[\\/\\\\]+\\-8YA1CbjS5YfONTw6J_I7eYGRow\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3c6c8\\-00056ea2\\-e553\\-4aca\\-8192\\-3a34bdcabe8d\\-000000[\\/\\\\]+N2_ciGnif\\-g9CWir\\-BTBjK_QHp8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8484c\\-9d85ced0\\-07e8\\-4d0b\\-88d2\\-67f601c95ffc\\-000000[\\/\\\\]+IxGSbuVfdAgUD8wESYnGTPGmsg0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245836cef\\-242be3e6\\-b255\\-475c\\-90de\\-76d11db7693f\\-000000[\\/\\\\]+8po4h1t4bybA7jSmGpVI\\-uRXRc8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ba7c1\\-08132f38\\-0ea3\\-49b3\\-aea4\\-acf00351682d\\-000000[\\/\\\\]+6vp064Bvey5V2GI3b3upzBNsj5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a855d5\\-e614a0ef\\-2d1c\\-4520\\-9950\\-594937e21dcf\\-000000[\\/\\\\]+Acqd8xuXoYq3lVOdCSWXUsNHcAE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1eab3\\-e609598b\\-9f6d\\-4ea6\\-b925\\-ab695ed02027\\-000000[\\/\\\\]+uSAM8\\-ap_FMpHTEwTh\\-4RfiYlzA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f8b5e\\-47f8c18c\\-eac9\\-4abc\\-8fc0\\-2b2fa9e42119\\-000000[\\/\\\\]+2YsetuVVCX8CV4uaHhRowVemYfQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c87ae9\\-4c58389a\\-9cb2\\-4711\\-9cac\\-26725b5c3721\\-000000[\\/\\\\]+08gHV1IYlm5NPY\\-ZHRdKlbdDjVo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f0f88\\-bc3630f2\\-9d52\\-40c5\\-8f6a\\-68e4d86dd235\\-000000[\\/\\\\]+pjwKOsK0HyN730xrlIyQwtSjBm0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245642ccf\\-a688c8eb\\-8639\\-4905\\-809f\\-900c02f9268b\\-000000[\\/\\\\]+yUR38syR\\-rO83IqWz\\-4gcXnpgnQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245874ef7\\-cc0756cd\\-d7bb\\-4c7d\\-affc\\-edaf2c170af3\\-000000[\\/\\\\]+3weT5iqm_Nqaf6reF5yK0gdSShE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458747f3\\-6087e7df\\-fd73\\-45e0\\-a552\\-899566264707\\-000000[\\/\\\\]+j48PdUE8\\-C8qfS5mmdnW\\-or41rQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c17648\\-92ec72a6\\-e198\\-4b88\\-89d6\\-5878248b7540\\-000000[\\/\\\\]+1wrskE1XRdVN\\-5ABLGUgzYq4lxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd7fe3\\-6df766cf\\-f31b\\-43e9\\-a45b\\-bb7ef584be28\\-000000[\\/\\\\]+bRrQ0SpSOq5GyR6s16FAtwTtu90\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b1d010\\-585cd82c\\-4413\\-425f\\-a852\\-4ec31f1c2ee1\\-000000[\\/\\\\]+em2mXbtifqPpc\\-RhFxWspikAT_I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a0eb6\\-2650e892\\-4d5b\\-4985\\-a6fc\\-e565b39a4b75\\-000000[\\/\\\\]+89YOrskefcRjDngN62fVwvGjyDk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a51248\\-db0d7b0c\\-82d0\\-4179\\-bc45\\-68395e8ee084\\-000000[\\/\\\\]+5gyayslwRsYhZmDL\\-visJryKuSA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456eca7c\\-0cd198f7\\-9b06\\-45c4\\-87bb\\-da05a329c012\\-000000[\\/\\\\]+B2CRfgBDaberZTh_mQEjmCvQx_I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583aafa\\-db9dc2be\\-0792\\-4ea0\\-abcc\\-7b0957f09830\\-000000[\\/\\\\]+_d9ZvI064tC6mUYosB61AolRLCQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c92ff7\\-5d6f7938\\-55fc\\-42a5\\-8c9b\\-a93e294613ab\\-000000[\\/\\\\]+kzyXMQqFJwiNamYqAo0Ax1wLkMc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924567553d\\-2d76cbc4\\-2eb3\\-477f\\-8702\\-8fc44e11532d\\-000000[\\/\\\\]+6zKsWzQFVAOkgNm5W8VfLaroNXQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c00860\\-998d92f7\\-205e\\-4595\\-8fac\\-0f708c6373bb\\-000000[\\/\\\\]+8tj8Qf5ZNSI0rV3myctPz3OTsBg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c0e60\\-c16e1427\\-fc93\\-49bd\\-bcee\\-e81a776a6150\\-000000[\\/\\\\]+Gqdgw_0_WZJPvbwO0IH9rDqke_4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ccff1\\-bc265355\\-9ea6\\-4615\\-8ef6\\-2970322189a0\\-000000[\\/\\\\]+eFmwdjwCzr94WIxTDuCGQAmF4x4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ee025\\-09747520\\-2ea7\\-448f\\-b79a\\-6d816c6c95f0\\-000000[\\/\\\\]+Knm4PVIE8_UTnQYBxbeTxTigbLc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a22817\\-4d065feb\\-118e\\-4a8c\\-9607\\-4631806c2faa\\-000000[\\/\\\\]+5htrYqjw36uWRcCuDRQJk9ZNtaM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e248d\\-2a2ed23e\\-78ae\\-406d\\-9a36\\-e36b11a7824d\\-000000[\\/\\\\]+31IdH5mmG7mzuudGzXWCtGMi3Y0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ef5c3\\-48d0094d\\-1d1d\\-460e\\-ac67\\-076496bcb69c\\-000000[\\/\\\\]+E61jGB5d0rJ9TYqqN_hcj3vMrDM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bef705\\-b5767f5c\\-fc2f\\-4a35\\-831e\\-bd5984fef182\\-000000[\\/\\\\]+swk3q5aapzFyl\\-kmr5uA62Wss8E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f3616\\-c5276898\\-7c14\\-4330\\-a0fd\\-51fa3e8e2e07\\-000000[\\/\\\\]+HcJ7AyYqbudoO5o0qwUAEW8cuXw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e1969\\-f9a80e3e\\-55c0\\-46e1\\-b914\\-e1a5bb23fccb\\-000000[\\/\\\\]+AK_cgnujCAUzngz_pQvb0239avI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c6594\\-53b502a1\\-cdad\\-4ae8\\-ab21\\-e271ec246464\\-000000[\\/\\\\]+XtOholFBoqSFkSMPDQMPKcUaM3I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f7105\\-fa1dfa66\\-41cd\\-40ca\\-b37a\\-25c94c19db40\\-000000[\\/\\\\]+FMPexI2crquV_lWCvhbrfTXM6Qo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c3fc8\\-398ede40\\-f45e\\-4013\\-95b0\\-17436275c54e\\-000000[\\/\\\\]+XZUpoRSywFfk\\-S4htwPK8mkc2YM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b96d17\\-6afee39b\\-42a2\\-4b42\\-85a2\\-e06ce6ef41c2\\-000000[\\/\\\\]+OeCei89D35n8lV6j\\-aKzDvdnWj8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c57e7c\\-67301073\\-76e8\\-43c3\\-8546\\-b43c058692cf\\-000000[\\/\\\\]+K\\-gW0jRg47Jm_tVVyo8Jsw8GHD0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac0e09\\-f96ea16b\\-149a\\-432d\\-b4b2\\-b2079a0c7b8f\\-000000[\\/\\\\]+9T4n6CVV\\-9\\-GTi_PxUfSwD\\-R7yY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7c7cd\\-3e9350d3\\-e127\\-4ded\\-88da\\-cb27065b321c\\-000000[\\/\\\\]+\\-CEO2gmbUe7G_ZUFd0IgxYhmO1U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ea0fd\\-8d0fda09\\-cd12\\-4088\\-afa2\\-1bfc54a2adb7\\-000000[\\/\\\\]+CZvYLttmQHwrZLTfUl\\-6AulO\\-AM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245974ea6\\-2adadaf1\\-6de3\\-4c0a\\-a712\\-1a4424c4f889\\-000000[\\/\\\\]+DNJ0VmZAKKLD5DVhVdRKgoYXyGo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c90339\\-75c231a6\\-eb38\\-4159\\-95bf\\-cb212fcfffda\\-000000[\\/\\\\]+zKrSvQbcZ\\-5pdgH9qRFOGKTAyMQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c78ef\\-85f5d54a\\-19e4\\-4aa0\\-b1f7\\-4489ff24f32d\\-000000[\\/\\\\]+ipjVX0nJDV7xLskcbIRufMPU7NI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e932c\\-ebeae517\\-5b02\\-49f4\\-954a\\-f79fa9df3b64\\-000000[\\/\\\\]+za0lb7K9O49Kht6gK\\-S8mQSfFxM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae5734\\-6f8ba77c\\-bc04\\-40bf\\-ba78\\-ab9d4f09c44b\\-000000[\\/\\\\]+zwOzM8aJ3telWA_ndi0m97rgO6U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e91de\\-2f6e784a\\-27b6\\-4703\\-ab38\\-0f389163adba\\-000000[\\/\\\\]+GcBNsnVYVnbPZV3yvLn44VX1RC8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d142f\\-bff2b20d\\-cf6c\\-4ff8\\-a474\\-d16f0c70e58f\\-000000[\\/\\\\]+DV_16uxtNPn95yosrPphGuAQkSk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f0d21\\-41b9254c\\-185c\\-43fd\\-a9e3\\-6a5ff76484e0\\-000000[\\/\\\\]+6LG\\-Ldt3dDu4n6p9mv5Dk6QlcZk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ef2c7\\-ed0f3a09\\-3ecd\\-4fec\\-a97e\\-5f930d9123ff\\-000000[\\/\\\\]+87HTi\\-ENoKcx4Wv5kVV503qiG_g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b28b88\\-b0ee0168\\-bf86\\-40ef\\-bb47\\-1e6688d98970\\-000000[\\/\\\\]+JOTha\\-ONz6GgoqSNr0FclQpEuN0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b0972\\-6f3c1ac4\\-d01d\\-4977\\-8ba0\\-89c4c91b87b5\\-000000[\\/\\\\]+NRZafiID\\-13t1\\-aTGfq724N8vog\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245823980\\-cfa6c85d\\-73bd\\-4fd1\\-8a98\\-5a8413c83257\\-000000[\\/\\\\]+BAlpmSlQPzOgK5kFKBn_I86F5ys\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583a837\\-b7ac0e5a\\-6388\\-4a84\\-a9fa\\-233825a1cea8\\-000000[\\/\\\\]+97dId\\-PhtizzYdP4jSUT5HmuEZI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b5851\\-fdd2d035\\-ebc3\\-48c5\\-9ea8\\-c809ab987407\\-000000[\\/\\\\]+J_yMpMtX\\-EFBmSKRpCbkTkpbSdU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c3790\\-dc6bcc7c\\-2305\\-4558\\-9d69\\-bcef96b22cd0\\-000000[\\/\\\\]+R\\-PqCRAjyKUNL7vo9LtgWbLR9ik\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245996ba5\\-8c5ca87d\\-c7d8\\-477e\\-b952\\-41fe3a445d02\\-000000[\\/\\\\]+AUEUk3gk\\-dpB7MuBMGSEUuFR1Vg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5f1e8\\-aaad5896\\-dbe2\\-4530\\-995d\\-a67728505d79\\-000000[\\/\\\\]+fZ9PIYtPsXkbleMiXwpBGxkxWgk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245993a3e\\-352172cb\\-cb23\\-47c8\\-9253\\-456ee6b0ff27\\-000000[\\/\\\\]+Q\\-ao0c0AZ20Dyijs_O9G_tioLlM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a573fd\\-cb2532e9\\-012f\\-4617\\-8025\\-413901d2fe0b\\-000000[\\/\\\\]+1WYTxrVqBVhDpkZHmGmzHkFmAkk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cbb370\\-3bd55f48\\-a989\\-402b\\-a93e\\-98f3b7e3b0f9\\-000000[\\/\\\\]+J9zvbXXyGBxnQxujmcfakSqQsCA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575f613\\-cf627db1\\-443a\\-4d78\\-aa60\\-cf55e9cd3b63\\-000000[\\/\\\\]+p_oartfV3KfetfuYeRBB4hIJOHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a3a0b8\\-6521b548\\-ff10\\-4f67\\-a06c\\-32a673b0dcab\\-000000[\\/\\\\]+oU27WrAgzeuMJSqhE6vip7txtLQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589618b\\-646ff09e\\-02a5\\-42a4\\-ac50\\-d7466309b53f\\-000000[\\/\\\\]+kZbIKLStkU79yO2ZqHGb6Gze4BQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c652be\\-3f36e258\\-3570\\-4b66\\-9dea\\-49a88ba7156e\\-000000[\\/\\\\]+94ZQGPzh7IRPBh_p2UkCQN5B9_A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3d60b\\-1ae6e782\\-1267\\-40d4\\-86d1\\-91cda0bfa23a\\-000000[\\/\\\\]+WlVqOELu\\-Eb97sCBp9wtu0wq8Z4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245777550\\-69de1616\\-25f3\\-410e\\-9f12\\-500907dbad34\\-000000[\\/\\\\]+GCA69zt3xt33pDDFV754eSjY8xA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e4d2f\\-37cde259\\-f3aa\\-4246\\-84e0\\-d2e2eb1160ae\\-000000[\\/\\\\]+xYxLSO6kl5Je4\\-5sH7TgsjF3M_g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb1b38\\-479526b0\\-d1d1\\-4504\\-ab58\\-5f0a92039a77\\-000000[\\/\\\\]+zfqQD8YrN159K_mETZjCNKJidZI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c782b5\\-e960520c\\-246c\\-46cf\\-93b2\\-18e3b43f4c64\\-000000[\\/\\\\]+lICtY_fyOJcXxySVr\\-IBISF1qNA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245766606\\-604a2203\\-fadf\\-4d20\\-91e1\\-cac2e24062b9\\-000000[\\/\\\\]+mogteyDdUJ_gM6OIeHJ8xe0_sLM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f5da4\\-bbb02b6f\\-0328\\-4ff3\\-b6d7\\-5296970ae0c9\\-000000[\\/\\\\]+6NdNNgs6XxAsUemnSBn3FA4i6Uo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245990958\\-47989aee\\-e50d\\-42c1\\-bd8f\\-e89e07f2828b\\-000000[\\/\\\\]+w7\\-x8Q_GFc08bfcTQTi2S75aZ4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b61e1e\\-62046d84\\-9340\\-4651\\-9ebb\\-6c5fab812592\\-000000[\\/\\\\]+AHKVuu_VHGUDnw3Cf8fu1OeO9T0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924591c035\\-cf818a7c\\-ebe2\\-4fe4\\-abb9\\-b446cf1867b7\\-000000[\\/\\\\]+BuEVhiK0MeMWsFp1rvlcvQTZVNI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb5f12\\-f20ae58e\\-8cfc\\-415f\\-b180\\-484c76c949fb\\-000000[\\/\\\\]+zgLmuxz4RDicsKrl_V6A3LYhAls\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a767aa\\-b546eb3a\\-6ed8\\-40c7\\-986e\\-76f91060fe9f\\-000000[\\/\\\\]+kr\\-LLPCoOWTDwg4TgmJeu4MtnS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576867c\\-6d576f87\\-84e6\\-4e2c\\-8e4c\\-fb0b472af9f5\\-000000[\\/\\\\]+pQMmEzgX82HOtrGxiUBN4HUEQc4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f3b3f\\-7a50341c\\-4c94\\-4e49\\-86ce\\-4580aa29df34\\-000000[\\/\\\\]+OhCaLYg0_Ne3XWEbqqaNd9uArXU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598d11b\\-acbe5bd4\\-a7bf\\-44cd\\-8abb\\-9039f44383c2\\-000000[\\/\\\\]+_FgImWd8pPBHHz8nblElzcYGDaY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245833f73\\-1081a08f\\-bb22\\-402a\\-a34a\\-9f4c2f8361d4\\-000000[\\/\\\\]+UUPXU1q6oi1WRLeI6yJ_HHghSxk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3e716\\-d8498e72\\-774b\\-4f25\\-b770\\-97128f4d946e\\-000000[\\/\\\\]+GAh1R1jjkzV5VXigbB_ZypuHmXs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e0493\\-0906742d\\-cb3e\\-425c\\-8eb3\\-f793544c873c\\-000000[\\/\\\\]+CFN\\-RBGZnuqOON2i1Ztm_hFC_FM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b12d4\\-6f054b6f\\-11fa\\-4e5a\\-b6a4\\-deed682f3337\\-000000[\\/\\\\]+fCuXeu1BuaseusDsvgHg55YV1a4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b769a6\\-e5d78132\\-6318\\-4fdb\\-95ad\\-aa440c84fca9\\-000000[\\/\\\\]+FKFcbw4Uv\\-MRKPoH6G1KxyybGXw\\=394(?:\\?|$)" + }, + { + "hash": "f49a9c687a928e0e2f98b7906664a6a2a6e4389ab845dacbb21af57923df5926", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245824be8\\-8d88df91\\-eb3f\\-4b23\\-bcaa\\-3737ad56ec82\\-000000[\\/\\\\]+y2KmJ6tlu2lYqXiMSKbYasED9X4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c726b2\\-f744f22d\\-b10a\\-4e0e\\-938e\\-236ae0ede4c3\\-000000[\\/\\\\]+2CcUryiym0_AnB9OBXyB6S2kjDQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457df2cb\\-e8ab6920\\-5fe0\\-429f\\-9220\\-4b54f1b711af\\-000000[\\/\\\\]+DnO\\-\\-yQPd_ZfPGpZv2GnZzstX68\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0d12b\\-38ac1feb\\-7028\\-4bde\\-915a\\-3bd2a152f30a\\-000000[\\/\\\\]+dwXke76Wq3s6sUz12ISqh8MwJ0o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3d2b6\\-65975a1b\\-ac68\\-43dc\\-8b51\\-4d0fa6a82537\\-000000[\\/\\\\]+HPXMBXxJzRn1muPCxoSc49tDjUo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bef9da\\-4798d013\\-162a\\-478d\\-ab11\\-f0191c9bea6c\\-000000[\\/\\\\]+ka8_zPPY1iZKx5yty\\-b\\-1w011lI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576f769\\-307da67f\\-1565\\-4c6d\\-a645\\-a0da44678f38\\-000000[\\/\\\\]+fiGPEx7Z2JRLt2Ag78153jnorBI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b13eeb\\-354a0fe1\\-0eca\\-4ccc\\-9878\\-a38051c912fd\\-000000[\\/\\\\]+IpY3h4BrN8rtA9mtF8wUgir_9ic\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aed7ba\\-bbdbe2df\\-0ca9\\-4dcc\\-b74a\\-b59348b0dacf\\-000000[\\/\\\\]+QBQpJG58TK0pQLWS2QUYDikVgVc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568f16e\\-3b47a391\\-e316\\-48a4\\-9785\\-e1847d82ceed\\-000000[\\/\\\\]+FFF5Oow6Sj7tq5liEkOFqfL6hTE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af706f\\-feef47cb\\-acac\\-4da3\\-b461\\-a650a06b033a\\-000000[\\/\\\\]+jLmLbtLjJSEMREDPO7ra0vNMfvU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf58f8\\-d8198540\\-9ed2\\-4def\\-bb40\\-86b988aec195\\-000000[\\/\\\\]+3PR9KxlmwWzrmGBGTv64FPdqd7s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574f7c1\\-990dce78\\-2c70\\-41c7\\-bacd\\-21bd6cceab35\\-000000[\\/\\\\]+C_\\-f9GUmvvGzEqYm_9ba3wHDvMQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d77d8\\-f6e37a0e\\-3a8d\\-49cd\\-892f\\-9426bd8ffc99\\-000000[\\/\\\\]+DqZdr1G966FKswBvKK1JVqxgso0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e789e\\-dc228123\\-c9a1\\-427d\\-a247\\-3409053e1d67\\-000000[\\/\\\\]+kBpBId7YOCkr687BlmahDE9_hl0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573b998\\-fe52a42a\\-fb9c\\-4e42\\-9997\\-d14bb38d146e\\-000000[\\/\\\\]+_lw_yBRowLNJCUGE48kgW6tgSGY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bcb37\\-92d67256\\-7c81\\-446c\\-b8e7\\-b951d29884fc\\-000000[\\/\\\\]+6GXU0SqhXmIRf\\-FoDFgXLVhnglo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4e213\\-7f07a6f0\\-056f\\-41d8\\-9090\\-7dfb913ac8ea\\-000000[\\/\\\\]+PsL2YFmKW9Ho7pDGa3DeRvZdQU4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245611643\\-ac9d90c7\\-a4ac\\-49a3\\-8f10\\-47d3cadccddd\\-000000[\\/\\\\]+py1Gj_ZFcwln6RIzdXJqAm0O4lk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589a6f4\\-a8687a53\\-7847\\-484a\\-97d3\\-6209d3565a14\\-000000[\\/\\\\]+PVdEGm0DiWdD9d9upztvawf6bJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d07107\\-768d0eef\\-3a1b\\-49ef\\-b931\\-6e62359795c2\\-000000[\\/\\\\]+BC2hJ9IymUI_IVgHuL\\-lxAvjvR0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b7cc7\\-f5fdd038\\-7943\\-42f6\\-bb72\\-31f225161c01\\-000000[\\/\\\\]+gFqLmCntJ2P7Igxq55XP_K4HL7w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9bdf8\\-f1374d12\\-fbc6\\-4479\\-a7c4\\-686b5f97c4b7\\-000000[\\/\\\\]+YWXGAcksSaBoC_dRFxpeqKt\\-9W8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c22523\\-8ee7d83a\\-a685\\-4b2d\\-bc48\\-d23c785ad3f7\\-000000[\\/\\\\]+f\\-h8Pq37lXQLAukwZR7QEQfSlEE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e3ec6\\-ad99935d\\-9267\\-4a0b\\-b264\\-109dbadabb7b\\-000000[\\/\\\\]+t7cmJ4q2EwnDhiD50au8wLdBN8s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245907836\\-5297f03a\\-7068\\-40e8\\-91c4\\-7dd9a830fa7a\\-000000[\\/\\\\]+DxJjtDyNQW3zaRBupW3__iOaebw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456b2441\\-8c1f6f4e\\-648b\\-4a54\\-a034\\-2954edc5c70e\\-000000[\\/\\\\]+UDn7VyPkc1SId0LRCLiiuQb3NV4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cc77a3\\-67f4f9cd\\-031c\\-4dbf\\-9355\\-85a04e5b92b9\\-000000[\\/\\\\]+gozJsUlvH7gRkSSeDpIS7bM3Krc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abf9df\\-0b82265b\\-b23e\\-4175\\-ac7e\\-644877ff6130\\-000000[\\/\\\\]+sUw2NmSM3gYdQnqE0fmw3UHWbBk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b227d9\\-36089836\\-94d6\\-4350\\-9e6a\\-2ac42846143c\\-000000[\\/\\\\]+VP0Zpl6Rvw6UL__6dAH32ivExW4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457eb09f\\-210974c5\\-6d45\\-4ff2\\-be3f\\-26eb93a0bada\\-000000[\\/\\\\]+zKicww0F93jDnci4zHX8iRh0wOM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232840bde\\-52daf3ac\\-5012\\-41f7\\-8394\\-05922cf6fa97\\-000000[\\/\\\\]+z8r4kal_\\-AZcRgMgyfgy7HyvyVY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924581bced\\-239f757c\\-1f7d\\-4b0b\\-b610\\-1566fbe25247\\-000000[\\/\\\\]+qg5QmEKrcTJ9D_OoJ_LdCAG5RRM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245851446\\-7fe7f17b\\-9712\\-460e\\-ba28\\-6ace107b6181\\-000000[\\/\\\\]+KtaW_nzH62ah4i5n6FMF3\\-ouPbQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245993ef1\\-aeda992d\\-411f\\-4d9f\\-b545\\-2f3b0e687280\\-000000[\\/\\\\]+JOWHAOeOgs7KeS_ZYDYM5skk1BQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b40095\\-aa4fe424\\-fdcf\\-44da\\-a9a4\\-305d43a3a940\\-000000[\\/\\\\]+cb0C9yPSiTSeI5GuPcSXoNhYZuE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583db3d\\-79c470a2\\-6b33\\-4bb9\\-b74d\\-81a75344efb5\\-000000[\\/\\\\]+VfUGigwV7B5UMQ6DnXSlHi9xxrw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cabe7e\\-fb480b09\\-e301\\-49c3\\-9581\\-9e45e231d83e\\-000000[\\/\\\\]+ObS7bUFUcCKaGi_MgemXgRe4Df0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e17a6\\-389cae7f\\-835e\\-42f0\\-9101\\-529224c773a8\\-000000[\\/\\\\]+O4Yoh7qnNhPRKB5Qh5Uh50ish00\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245820ec5\\-80bbf31a\\-e15f\\-486d\\-a5c9\\-8d03505d5da8\\-000000[\\/\\\\]+HYg5MrvckFuw9Xk9bFoX_P92Fsk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb468b\\-8e8dde29\\-d4b0\\-4851\\-ad23\\-ec2ab3db2dbc\\-000000[\\/\\\\]+ltlOab1q2CmrJAGVQwhoaoduDK4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f1734\\-7e7fc32c\\-76d7\\-49ee\\-9664\\-ded7c229d9d7\\-000000[\\/\\\\]+tBb\\-WUoS\\-FTEa37xBPdRS\\-MHa74\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bda36d\\-7b9a06be\\-9901\\-4ca3\\-9d94\\-a4a40b12d055\\-000000[\\/\\\\]+Z5BLEveLHmoD4251JcMsQjnU6FM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245853059\\-24979352\\-1861\\-426c\\-b8d8\\-4b91014f352d\\-000000[\\/\\\\]+JInp7_OIlHnwG7kpn5vkmJdecV8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ef5db\\-c2e16670\\-b113\\-4047\\-b1e3\\-4f949e152650\\-000000[\\/\\\\]+1gMemojw4hi5Nc6RxOVeANLI9KI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457260a4\\-00bc368a\\-7fa2\\-43da\\-892e\\-d35bad6fb5f3\\-000000[\\/\\\\]+TLfdOxnarmhXOzfMnoPbZqKwLx0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1eab3\\-e609598b\\-9f6d\\-4ea6\\-b925\\-ab695ed02027\\-000000[\\/\\\\]+PoHWQNWIsAuGpxjFrlLQoJ56EDY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456749d5\\-dd9a2871\\-9fc7\\-431f\\-ba51\\-bb91264d8ee1\\-000000[\\/\\\\]+O0RI2uz4lNp4iPgZJ\\-esZ7LVStw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f3e4c\\-6c6181cd\\-3aa6\\-4a40\\-a44d\\-9d1274500beb\\-000000[\\/\\\\]+3xhm3zia2apIuowwrn6WlEP0XDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bdd44e\\-ae515da3\\-7e59\\-4e2f\\-ba13\\-970ba082d67d\\-000000[\\/\\\\]+Rsb\\-KOWfy1LlPR8zc16fpHhzrP8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245775019\\-cddb4fc8\\-b2d0\\-4372\\-959d\\-bdc694d8c2f3\\-000000[\\/\\\\]+8HkjTCl0laMWqUm9709Xdt5I02Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c02442\\-b6ff127c\\-649d\\-44d6\\-b5e7\\-6f84aeb6726b\\-000000[\\/\\\\]+Q2vpZC4occ3BQcQAfRb5WBVrvuQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a8fc8\\-da471b04\\-a2cf\\-412c\\-ad8d\\-a231818ee15a\\-000000[\\/\\\\]+xMVQMuxS3CQgGuZJskt\\-4CFNPDM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be6319\\-7bd8e666\\-5735\\-460d\\-86bd\\-be633304e362\\-000000[\\/\\\\]+ufbvL0KtDNFUiO25jR0gVEPa8eI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595abbf\\-d6b63c32\\-64db\\-4264\\-be90\\-de22eb638021\\-000000[\\/\\\\]+kcR0nTYyPhvmT8Sh3G8VP4SBXEE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595fc7d\\-0857b0d2\\-c1a7\\-48f1\\-9ca9\\-549916d898c6\\-000000[\\/\\\\]+xQAAwTiJnHlEFF3CF1x47N1fvm8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c259c7\\-53400773\\-92a9\\-4679\\-ac74\\-0cc876e49189\\-000000[\\/\\\\]+TIPjgcrSMyEsKYOlRYe0fcHxuiY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b2a491\\-abcd82a9\\-d708\\-4c4c\\-8a91\\-3d9f480f2669\\-000000[\\/\\\\]+96cR01SF\\-hmK7idr0rQHlsjR220\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af6713\\-076fb53c\\-11f5\\-4993\\-88a8\\-8a7f1be67391\\-000000[\\/\\\\]+Mynzt0we46Dr7FDre\\-Ov6Td3zgM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245726586\\-a090f26f\\-f52e\\-405c\\-b1d3\\-a96a08bc8066\\-000000[\\/\\\\]+0sIAtkKTNU0iW1t_U6TDKqie0Jk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ead3e\\-600d31c6\\-6624\\-464f\\-976b\\-69cd5be465d9\\-000000[\\/\\\\]+WDc6XbX3C6lKopGPNCahPhIm24U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8745f\\-2fdcc1f9\\-4e8d\\-47a3\\-ae2c\\-3b206049e92b\\-000000[\\/\\\\]+\\-mfE3PO_lrEbiz\\-\\-LaUeYbw\\-QRE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b37b19\\-5c1d72f9\\-acab\\-4ec7\\-9717\\-489360a0fafc\\-000000[\\/\\\\]+eiQYicqslmTk3hI2kCvNldtVi_g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6157d\\-53a834a0\\-93ee\\-46ed\\-82da\\-9d3cb5f7e766\\-000000[\\/\\\\]+z9OHr4zxrTT5VAF6y8wgjStPU8Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a47459\\-1d6c73b8\\-d062\\-42f8\\-8267\\-322f3fe64e90\\-000000[\\/\\\\]+6DUIyWTK0sjau0iKRFafuzZoSO4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c14730\\-627ebcf0\\-1ac3\\-4608\\-a483\\-aef421f43890\\-000000[\\/\\\\]+Uj78HUyexP6dhr3jkI9QOcbufJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+noiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924599a93f\\-6565f66c\\-3a55\\-45b8\\-82fd\\-a4b160f174c4\\-000000[\\/\\\\]+7sgk\\-LCciOifarVhSYh6sxaQsEI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab3a42\\-1c830535\\-67d3\\-4d72\\-94f4\\-b3f422f46442\\-000000[\\/\\\\]+n0zCtG9m2l4gGVf8tL9yGktFGnY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a075c8\\-fe415171\\-498d\\-4b21\\-b8a5\\-6d27fd828ac5\\-000000[\\/\\\\]+CriLO4MDrSBzT6bRqrLQLp5NuMI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595a27f\\-1e3e4bb2\\-c3ec\\-4ec9\\-b904\\-bf73b0e3068b\\-000000[\\/\\\\]+Fe4g8lcfKJigaaO2i03RLGGEh54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245728995\\-af2479ce\\-3c06\\-4b57\\-8261\\-c3ba48ab92cb\\-000000[\\/\\\\]+_mNkONlypQ7eNrqWLMUWJaKFYAw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c16cb\\-376677d1\\-7288\\-4918\\-a0c4\\-1ea9d792bf1a\\-000000[\\/\\\\]+FoPeQ7a_e390OQRLIy4ZvBtTuAQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae2e92\\-ecc2b44c\\-f620\\-46db\\-bba5\\-1fd9131fd5b5\\-000000[\\/\\\\]+O2pxpnOmAe8uPtglmkpNqc74Lcs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfadfc\\-f228bc9e\\-b42f\\-413a\\-8a91\\-1b65d0c36a3a\\-000000[\\/\\\\]+JqXw98NVYfkncf8kzoZ0DTPOu5Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6258a\\-d8406b30\\-ae83\\-4f05\\-b8c4\\-d72227e13743\\-000000[\\/\\\\]+ouuijxCYJ3d8QRNtlhwO_z8YDbc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c89b11\\-1eeba1f0\\-a6ff\\-45ea\\-8cd1\\-f71d5f166571\\-000000[\\/\\\\]+NqJKOEJVG0MkVApvQXa8GFUvwww\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575a1a0\\-7384c26a\\-75ae\\-4d56\\-a335\\-0d9e3d1d3264\\-000000[\\/\\\\]+\\-nkl1IHdoJXWYITglIZcyi_t2Yg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b70bb\\-ab1691fb\\-35e9\\-4e2c\\-861a\\-c514e035b7c6\\-000000[\\/\\\\]+RP8Rkswcb2Ic4zSIzEckfLb9KJo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3e5a5\\-041bf9a6\\-1aa9\\-4b9f\\-8844\\-4c41de52db73\\-000000[\\/\\\\]+Be1uvy6egVjglyea49pxB2vmH3k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7c833\\-7431c27b\\-7f80\\-4d82\\-b272\\-4e3fda038859\\-000000[\\/\\\\]+s_9u0\\-nSqEVCNJMgofaxezZxgsk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a79009\\-498c0825\\-1f89\\-4013\\-8e30\\-dd202cc2276d\\-000000[\\/\\\\]+wHnyzNyWThRIR60PEnnHTtnJqyo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a4d88\\-85af7715\\-467a\\-46df\\-8355\\-561a15e09092\\-000000[\\/\\\\]+20aPA6ubtBTESwY3GjN0QBvWWT0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c97781\\-b8127653\\-455d\\-4e38\\-ad85\\-9d6a2593bb0b\\-000000[\\/\\\\]+\\-KC8Jh4Frn31uq_YSU7F6OeVIYk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565e789\\-8b887b0e\\-1c92\\-4b5a\\-8f29\\-dd036fe9073b\\-000000[\\/\\\\]+3XnROKOPiKnvGs\\-CjRztZPEOf6A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b97af\\-4c433e5f\\-9e1a\\-4b65\\-9a60\\-54f26d82e7b9\\-000000[\\/\\\\]+seRjseGapRNG7yN4CMOgVrJPsRg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd07a2\\-24c43ddc\\-652a\\-4a4d\\-bc84\\-80e31f6e927b\\-000000[\\/\\\\]+8PhWOC1HnTBR9we\\-OkxduUYVMDk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+noiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569b712\\-78cd2054\\-7d2f\\-44cc\\-a43f\\-1b3cf4f55460\\-000000[\\/\\\\]+RfMQgEDvqspXVdvDkVn5EnWTgIg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af5a8a\\-0fb8adde\\-84ac\\-49c3\\-bc03\\-83e26cd01677\\-000000[\\/\\\\]+IeA20DaUpYVq61i8_FByW99vBhU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dce68\\-8fa6e97e\\-1abd\\-4ec7\\-8538\\-15c4909ef80c\\-000000[\\/\\\\]+BeyES6lXzmAGwBg3M6kQGOgdFTc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a13948\\-fa405543\\-3b19\\-471f\\-ba7c\\-03a3dee7d1f9\\-000000[\\/\\\\]+J4GRYeGcp6WB4ahRF8X59SOnYmU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca7a43\\-b4cf21ce\\-f12c\\-486d\\-8f52\\-acbb17829d0a\\-000000[\\/\\\\]+sBezN9Qb_9VUAek9OtNl8_szwj0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924591c035\\-cf818a7c\\-ebe2\\-4fe4\\-abb9\\-b446cf1867b7\\-000000[\\/\\\\]+SnWjvFGj4WpI6tHw5XrAsTF_LnI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574eae0\\-3e15f4ea\\-dd93\\-433f\\-b9b5\\-4ec6a18569ed\\-000000[\\/\\\\]+bY9oS1bN8wewli3J4jeeeAKGYio\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3bd49\\-f091cabc\\-1bc7\\-4e1a\\-bccd\\-68c6ffe52a86\\-000000[\\/\\\\]+xtXbkO1rLOaStEsTEUMnoxl2OoA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245987026\\-ed323fd4\\-9acc\\-4f6f\\-b635\\-5afe3d71f531\\-000000[\\/\\\\]+\\-N2G7UhGp1YYuYIWx8LfBqlaNVE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c88dc5\\-74a08b3b\\-0917\\-49a7\\-906e\\-a431ed8afe09\\-000000[\\/\\\\]+7CAHzTVl1EyHFTwcOiYCyegUDmI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c88dc5\\-74a08b3b\\-0917\\-49a7\\-906e\\-a431ed8afe09\\-000000[\\/\\\\]+L1ZWaPYsokGFTd_p3KFhzIlgvz0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4166c\\-11c0426c\\-79ec\\-4ec7\\-874e\\-6c53ceef1824\\-000000[\\/\\\\]+TfQudnU9J39CoKhuI5G68WhsdtA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac2b75\\-37fdd1bd\\-32e8\\-4521\\-9cba\\-00d11a884b44\\-000000[\\/\\\\]+OD4622eXpHQxqVjkOx2vsben5Us\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a454af\\-b0d8ab21\\-cef0\\-40ef\\-972b\\-e6a0263869ce\\-000000[\\/\\\\]+XavaeSeFVm\\-zNRM1ofbHnVlmjCQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ca9d7\\-e6d7e31e\\-2990\\-41b0\\-a93f\\-114548390e12\\-000000[\\/\\\\]+1n\\-e1BP4a7zFTG2UI8MqAEwAuzE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e80d4\\-45947a5c\\-5e5d\\-4cc5\\-8165\\-5e0940db557b\\-000000[\\/\\\\]+FB\\-KjZ6eYdNPOaNj4B8g5TbK9aw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8a76f\\-11be2d7c\\-7192\\-4b0c\\-b429\\-f69359b17257\\-000000[\\/\\\\]+nHyuM5xWVNldlk1dxF\\-Z8lv7194\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ada9eb\\-a0f4756f\\-d8ac\\-4eff\\-b7a7\\-226ef4c85769\\-000000[\\/\\\\]+xewDIbUFTNChQnLFjqPhzsga6dE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bc639\\-4c90929d\\-9700\\-43d5\\-8fa4\\-34bd17a5b6ac\\-000000[\\/\\\\]+DbXXc7bKrd1XYLSij0SWOcdww5Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd9fbe\\-ac09fcd0\\-de35\\-4c7f\\-8c20\\-3dc81b27491e\\-000000[\\/\\\\]+A6K381_Mzjdmb0uOkX6DaQh3JFk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192328ba63a\\-61f20efc\\-9655\\-4a6e\\-8099\\-11aad4539514\\-000000[\\/\\\\]+_qsM1SqLvmQX7Q8eFL44RqzRNE4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b21dad\\-9a602174\\-8f2a\\-4c1a\\-8810\\-b5c6de43816f\\-000000[\\/\\\\]+w3liWfV8Jv5pMBGN4D2zlthcCWI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572f8b5\\-8ea54f97\\-d57a\\-44d5\\-be21\\-33a642dda520\\-000000[\\/\\\\]+lrZg5jgrSd\\-D5YOOaqiWUjYRVlM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b977a3\\-d5dc1750\\-3f8c\\-4fe7\\-a09d\\-a6ebea3dfd27\\-000000[\\/\\\\]+7CiIT\\-xEniS21Hg3pQn7huhWdv0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f28e3\\-6f93538f\\-279d\\-45ec\\-ae0d\\-2b8190e3bbce\\-000000[\\/\\\\]+FuEX73SnNwXL\\-Gk90Jw3c_fq\\-j8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456eb5a8\\-710d9aab\\-78a7\\-4dc7\\-a4fd\\-953aa4d0eec3\\-000000[\\/\\\\]+T2P6Obv1SEmMzrDXVHmspgQ29dA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245937f4a\\-73ff60ca\\-bb43\\-45b6\\-9210\\-1f605d1d17ca\\-000000[\\/\\\\]+MfVd\\-jigdhqeDr5Cckimx\\-_woWI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d57ef\\-c3cd007e\\-a778\\-4265\\-85e3\\-cf8d505fc1ab\\-000000[\\/\\\\]+C2t7q\\-TvesYqkC0fbeU5IpM020M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b51db\\-82caf182\\-acf7\\-4986\\-93e6\\-32ffb8c2d507\\-000000[\\/\\\\]+\\-i1vbbziMRXdkonq4uS\\-\\-vom7x8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f0245\\-132236c5\\-129c\\-4247\\-b105\\-7ec4ef34889c\\-000000[\\/\\\\]+nJVnpxLT\\-EOwAMKBUjJP9V1RY1o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd5d4e\\-7e36003d\\-a893\\-4d29\\-be54\\-5472ce4329ef\\-000000[\\/\\\\]+W6d2yhjJpjo4SIRrjAP2_2WxN88\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b1d17e\\-5b535cbe\\-39b2\\-4593\\-821e\\-56ae82feb90e\\-000000[\\/\\\\]+7nnh0UOyuyBewbDA78XHu1mJ8L8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb5f12\\-f20ae58e\\-8cfc\\-415f\\-b180\\-484c76c949fb\\-000000[\\/\\\\]+y7CNGkkAqT7lc5o4MBUnfEWorKo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b135d\\-4b0db17c\\-887e\\-4610\\-8b30\\-79a5c4e8670b\\-000000[\\/\\\\]+ZU3RunpSrQUUQf3_G5XkYxKVLGQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458dc52f\\-3c53c931\\-6983\\-4b7c\\-9279\\-c0b7894f5e06\\-000000[\\/\\\\]+DMVGchxTKPGZtVLZrWHhqaoL\\-Yo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582d6d5\\-8a357c81\\-9e03\\-4ddf\\-b622\\-d4323da625d7\\-000000[\\/\\\\]+AML68PnWLx_6ezMdo6zTQkNMLlM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7e226\\-b4b05f3d\\-a0cb\\-4048\\-a591\\-034f1a4148cf\\-000000[\\/\\\\]+MwmQj1EIOOfe3mEq0xz609L_2as\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b1069\\-83ed35a8\\-10bf\\-4a46\\-b4d0\\-c246ca32933e\\-000000[\\/\\\\]+p5ltTJySItSYKh0FFC9l3rz2vqo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a75cb5\\-04c1b69c\\-d1ab\\-4c3f\\-bc28\\-4576653690ec\\-000000[\\/\\\\]+f_omzdP4KRlHqSVo6BzWHxuAlgA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a1fe8\\-f0e0cc4b\\-7896\\-4240\\-a2cd\\-0b99323c6770\\-000000[\\/\\\\]+Gd4mG8pWjHvnXnvVV372t5hlcRM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e9bd1\\-97ce36ee\\-b01c\\-490a\\-8feb\\-36faf3f687b2\\-000000[\\/\\\\]+Lr9JF\\-Cd8BPsc_0zQFpWywdLT_k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b25751\\-84e0a9fc\\-e5cd\\-4c6d\\-a688\\-a3ee606cae6f\\-000000[\\/\\\\]+hR\\-Af64Sgosp3fE7F7hAX3FjGzk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583bb65\\-b8f50a77\\-e42b\\-4170\\-8b35\\-32064db14472\\-000000[\\/\\\\]+\\-yrNueS6QjZ9V\\-grZMMcohkdzEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a07abb\\-86241c0b\\-4a03\\-46bb\\-97dd\\-d4efabf08cae\\-000000[\\/\\\\]+nJh70cXmSwxibNaEq2Gfuk2rja0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e8668\\-70863139\\-8e47\\-45c0\\-8e45\\-6cafc5ec3f91\\-000000[\\/\\\\]+Al6iMey4FZCqTCwus63adgUAUTw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9f9d5\\-dfa80f96\\-7aef\\-4a17\\-8349\\-4e8d985966f3\\-000000[\\/\\\\]+gEIeIXs2bHvpo7Hkp0GlQRNESYA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b9a584\\-9baf99d0\\-e48e\\-492c\\-b064\\-cef8cd455739\\-000000[\\/\\\\]+iRQ8ZRh09l6QwtnBi748b_HzYKs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a04fa8\\-a1d15d57\\-0cae\\-4702\\-8614\\-57ac93db2dfe\\-000000[\\/\\\\]+0ttoxVvXRTO3dfePvV3AGUyCVIo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457286e6\\-297c5733\\-9ace\\-4da4\\-b0ca\\-7cfb73dea0d7\\-000000[\\/\\\\]+oCb2\\-pWudQqJy\\-a23DnDC_K3Nio\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f0b27\\-9274014e\\-24db\\-4caf\\-b339\\-90d44fb64f4a\\-000000[\\/\\\\]+n5nEIZfofxmZ7DPq1wm0hkVTGEA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b4bdd\\-d8816b19\\-acd1\\-4548\\-8581\\-b97256e97fb6\\-000000[\\/\\\\]+9gZkP1sacojK6E1tl4\\-uKni62aM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b17560\\-f9c4917b\\-f94c\\-476b\\-b1be\\-21a92874b0fb\\-000000[\\/\\\\]+TThX5LmXXg7d6LK12x\\-Q8OIWGGs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b18108\\-b50b706f\\-34a3\\-409b\\-935a\\-7a350f631ddb\\-000000[\\/\\\\]+h2\\-c1IdQdEL8vD_3di8Nk3GIIDA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924580190a\\-fe941350\\-7ec1\\-429e\\-af2c\\-72b6a978a7c5\\-000000[\\/\\\\]+meCCQP4erlHc\\-dobg_sUZlHVlCI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7509d\\-ef0625bb\\-1c78\\-43c7\\-af93\\-e57bd16ce044\\-000000[\\/\\\\]+cGwJGI0QQxW6KZZTWEPaIS5FA5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1349d\\-ee052ea9\\-b872\\-49b1\\-a8fc\\-13064a155623\\-000000[\\/\\\\]+uVlryJ_3JqU6aT7IAM6_6zaBDmE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d142f\\-bff2b20d\\-cf6c\\-4ff8\\-a474\\-d16f0c70e58f\\-000000[\\/\\\\]+X9dN6z3JgIq21CXPXtO4mQKflL8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c36db\\-e4e46db8\\-a7f9\\-4e22\\-a4da\\-1d886c2dbc31\\-000000[\\/\\\\]+jGKpMnf9nsiXOXtPVzCrxjRQV3g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca44ff\\-adfed6ec\\-34da\\-42ef\\-bdc3\\-c5697acd8943\\-000000[\\/\\\\]+qNTC\\-_O_YYCu7UJEToVZKIWQfv0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457d5eb6\\-d89457bc\\-3059\\-4133\\-8c2d\\-eb029188d93d\\-000000[\\/\\\\]+trOwJEafOhfvyWPfug8JJXB2kNk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c6cc3\\-447e4490\\-4959\\-4a17\\-8ce5\\-3c9cd70187ff\\-000000[\\/\\\\]+irjGSMgXWZqbs4ClHmz6AlEdlPY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce27f9\\-74e19afd\\-bd0e\\-4c7a\\-86a1\\-d1fee4f9a7a5\\-000000[\\/\\\\]+Twdq4xbXHWR5h5ggC7NJShPdmkU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b78928\\-0f1030ba\\-ebf3\\-4129\\-baed\\-ba86cbcd026b\\-000000[\\/\\\\]+MNOXMl10ozjGuQBIKtkN492rCnU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b233f2\\-eeff0ad9\\-8dc1\\-4e2c\\-97ba\\-f81fd037fe31\\-000000[\\/\\\\]+W\\-JXNV7G14_Jmc\\-wbis00MqXmOM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c41afc\\-6acdc323\\-4c90\\-4bf1\\-86e1\\-40cd275e2344\\-000000[\\/\\\\]+7Lq1SC\\-82zMkeU2f9Oqp2D7Zfbc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a89478\\-efb918df\\-c933\\-417b\\-ab9f\\-be3c811fcb59\\-000000[\\/\\\\]+7TqfWdsjBbhISgbC0bcrqYkir6M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a0f27b\\-23a2090e\\-513b\\-4fa9\\-aa39\\-25261d024124\\-000000[\\/\\\\]+v2vPaLdYPMPN0f59pnzOH3ob52s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459666a1\\-21b2ea3b\\-8086\\-48cc\\-aaf8\\-962801f06c5d\\-000000[\\/\\\\]+jyB0n4OY_kB8q58ZTwUCna2IsbM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d9212\\-8363d7f4\\-fde4\\-4a19\\-9fb8\\-5e3c62c944d3\\-000000[\\/\\\\]+b08agiYUghwOAqIY2svm4vwoteM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459de9b3\\-d0ebd575\\-050b\\-40a9\\-bc46\\-2d1649752b1a\\-000000[\\/\\\\]+asj10KuiYNGn9i9kKS6e90bJLSA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924567128b\\-5f2b9938\\-831f\\-4f04\\-9d05\\-718ac6f997a8\\-000000[\\/\\\\]+YDH0pldLcMvmSVzL3xXs7qMUJjA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb076b\\-bdead0aa\\-964e\\-46b7\\-82ad\\-75ad1e5b8fa2\\-000000[\\/\\\\]+YpCxtl_sbw3m0kswPu\\-P0\\-Czouw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b1b80\\-3f473b9e\\-1a81\\-4050\\-9e21\\-f49916a1d8c3\\-000000[\\/\\\\]+ud2Vcc2WlucZBdrWWiYXi3p6\\-cM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c44c1c\\-4bbdd08b\\-157a\\-4a7f\\-8c2f\\-84f09899c0db\\-000000[\\/\\\\]+tRYAOlyIPCKfkeaZKIcx5JUa6uI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589a586\\-2406b44b\\-137d\\-4b45\\-b953\\-0a1c145072ed\\-000000[\\/\\\\]+e7J7yaTzQMey2NyNf8lbT0gNw1M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924571051f\\-5ea7dd0b\\-15c9\\-45fc\\-b4a0\\-49647e081172\\-000000[\\/\\\\]+qrtsg7EemTQfdb4cl36O3Hhpcuc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b1ff30\\-3034a877\\-5930\\-41cf\\-94d9\\-6ef6205cce50\\-000000[\\/\\\\]+E5XNJzYEpmXHaSZByE901_Toj94\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582d6d5\\-8a357c81\\-9e03\\-4ddf\\-b622\\-d4323da625d7\\-000000[\\/\\\\]+AyH0rtS0z4Y15LB1UT8qC2R2Q60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245771389\\-0fd29aa9\\-7fc9\\-447c\\-b50a\\-5af5ae59bc51\\-000000[\\/\\\\]+KdwF0hjLZLizT3KN7V4gljou6aM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac44c6\\-729c3f57\\-3122\\-477a\\-80b7\\-c7af643a889b\\-000000[\\/\\\\]+BYz__WXdevk2QUmrYcgpDRlRw2E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf29a6\\-52ebde1a\\-adec\\-4c83\\-865c\\-048d3bd8e6a5\\-000000[\\/\\\\]+f88jdVQdLGBtWfXaYt9a4_0WHc4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583eb4d\\-dab29878\\-9911\\-48fc\\-b1f4\\-ab18f2d0ada6\\-000000[\\/\\\\]+zvZMaMpt6pcLeXw_m1G1d1dZkgI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457de486\\-0081f0d9\\-1f20\\-471f\\-875a\\-729fb1f30b47\\-000000[\\/\\\\]+OPyIcoCVIXB9MxlEPnBYsh5c0hc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cada26\\-07a3d6d0\\-7fad\\-4cbb\\-ae03\\-f0e91e3208ca\\-000000[\\/\\\\]+NIo1lET1pXfsZP2X7KlC3XfRdPg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afea1f\\-7a7905c6\\-e9ef\\-40f9\\-8341\\-673765451573\\-000000[\\/\\\\]+o\\-CZS6qSdusJAh_lbk9aURFZFXo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a3a0b8\\-6521b548\\-ff10\\-4f67\\-a06c\\-32a673b0dcab\\-000000[\\/\\\\]+m6g_GfZFXOd2xM2oEyGhnCjZpXQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245993a3e\\-352172cb\\-cb23\\-47c8\\-9253\\-456ee6b0ff27\\-000000[\\/\\\\]+AFtzUe6w\\-REaMplR183bg9uxu9s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585e8ec\\-9804a5d4\\-16bd\\-4741\\-bf11\\-3567faae7c5c\\-000000[\\/\\\\]+nj4HpxGrd6jQ9dDcj4eRUbqEdOk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459338d6\\-36eec4a1\\-ab83\\-438c\\-a2a9\\-74a11a0a7309\\-000000[\\/\\\\]+uU1AjAtr1GpWNypHjsEKTwamDAU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ccde6f\\-0f606024\\-2aa5\\-473a\\-821a\\-ad4f70960692\\-000000[\\/\\\\]+oh6emhA3yGTGOC6YD1mP\\-Sfzj7M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f341e\\-c7dd927f\\-17d8\\-43c4\\-b353\\-5e65b9e1e397\\-000000[\\/\\\\]+h2O_OKLTnuAY5KZJKBLdAp6qHWo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245665af0\\-7a2362d8\\-301a\\-4bb6\\-86c5\\-5fcc2ef9786f\\-000000[\\/\\\\]+EE9O7P4c8XuBQEVJky4ul985FjU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584ce2a\\-5ddbcb7e\\-382a\\-44e7\\-8ec9\\-d0395eab6570\\-000000[\\/\\\\]+qWHJG5ui6_hD7aUstXC_GQdrIkQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c16cb\\-376677d1\\-7288\\-4918\\-a0c4\\-1ea9d792bf1a\\-000000[\\/\\\\]+S0v3HSI5w0scbYQlkcYf7JyQE5c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb3a0a\\-5b7a03cf\\-dac4\\-4dab\\-956b\\-0910147ffcee\\-000000[\\/\\\\]+DBfrjoNqqKv0h5TK2KgzSO\\-kiBg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583e92e\\-376ed2ef\\-5991\\-434c\\-9caa\\-a82e58e3ed51\\-000000[\\/\\\\]+nkuZmMhg47qeqh8Aq_pRQUNXOjc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ba72c\\-0d03a48a\\-abe5\\-4ce9\\-b066\\-9af09b5368c4\\-000000[\\/\\\\]+3fzPeMul5HPjpVvbUmlMVipeB3Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245692fd1\\-587599ba\\-1e24\\-4861\\-a0e5\\-483f44fc327a\\-000000[\\/\\\\]+92yZfYjzT_MvSe8Xz67\\-C1iY4Cs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b5d1b\\-1a907369\\-14f8\\-4b17\\-b9ca\\-060498fe614f\\-000000[\\/\\\\]+Kr3EhGL25iOFg1DUbua81zvsJSg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb8e75\\-a8c10688\\-3772\\-4e53\\-85a9\\-45c2bccd0a63\\-000000[\\/\\\\]+2\\-nAnZIg47mREBCVobAVYKW0MEo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb95aa\\-b8276e36\\-9902\\-4c18\\-acbc\\-38185a51d428\\-000000[\\/\\\\]+23aPtQ9pAqLwg_9lxT09FVL020M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924571051f\\-5ea7dd0b\\-15c9\\-45fc\\-b4a0\\-49647e081172\\-000000[\\/\\\\]+1cQx2CK22TWF\\-TKVeqPMBOOm5Dg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a49c77\\-7a1dd7f7\\-49a9\\-4447\\-b21d\\-06b4a54ff05a\\-000000[\\/\\\\]+KfugsOBjke3QADPyITE00QdEoio\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245727083\\-f06dd204\\-d5cf\\-4869\\-83df\\-cc96d932d82e\\-000000[\\/\\\\]+pB9NZzOeDwoRP7MmQWN7MIB7X70\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579d66b\\-e00956b8\\-7b90\\-4c1a\\-98d5\\-712c4aa51c30\\-000000[\\/\\\\]+x8XpqVSWOX77XkPlQJmm5w\\-3byU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ef193\\-ed00154c\\-c4de\\-4449\\-b859\\-fbc1dafa7f22\\-000000[\\/\\\\]+aMpTOda6BaiLUXCPfjrxkcVgHAk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b29a70\\-3db5e273\\-3591\\-450e\\-a769\\-3a1320660bcf\\-000000[\\/\\\\]+T7\\-64_qCHGz0_Trd7aunNOAkgeY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc8fbd\\-f2000853\\-aee2\\-4b04\\-bcc3\\-630ce4b9e5e9\\-000000[\\/\\\\]+eK_KWANMe7kJD5nC_i_ZXEtvS08\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbc244\\-647f62e5\\-8289\\-42c8\\-87cc\\-2d92dcfa6044\\-000000[\\/\\\\]+388t72YZg6hEBRJJUVnEVHPOavQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a0defb\\-fbdf53a5\\-e69d\\-4d5d\\-be76\\-19f605f713df\\-000000[\\/\\\\]+aBm97OwswpUHX9lvnGbAYtGlRVI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245837114\\-a9bc4cfd\\-7465\\-4818\\-ae70\\-91ef0bae57fa\\-000000[\\/\\\\]+zWqGFZB7dz0cAaZS5tperBG1fy4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566f0d3\\-0136f7d4\\-f64e\\-4f06\\-8a14\\-44613844808c\\-000000[\\/\\\\]+VGNjM89ZIwIyECoN5c_llehVNhM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c39f62\\-6099ffd4\\-9a98\\-4756\\-ac9a\\-6f8ecb93b8f7\\-000000[\\/\\\\]+M3iIgWmfpVZO0n0mhYZu4QhUYXc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459e8071\\-0547ee6e\\-2162\\-4ec9\\-b973\\-b8929b8eb189\\-000000[\\/\\\\]+nRsDjPIz_cRnCgI4IqnXZm1YKg8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd2ba3\\-cc794897\\-423d\\-4a9d\\-9458\\-d0db9192944d\\-000000[\\/\\\\]+Y\\-fv3E35gXpYN09BdT2ogaNjfZE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4960d\\-38652699\\-ab21\\-41ab\\-a784\\-1f4f83a0ce06\\-000000[\\/\\\\]+XWmQY72tvk7r9NZtLmJVmAUJ0pQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfa964\\-6b345af7\\-a45e\\-4f42\\-9d45\\-8bf43c9217ec\\-000000[\\/\\\\]+nV8Rb8JHQEbLdFQwClF1XNi\\-Qfc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c87e0c\\-36c2a281\\-6f04\\-4e5c\\-9b1e\\-586217e8eaf7\\-000000[\\/\\\\]+fh6hF3NjzLpItjXizZ9\\-UH2iPps\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc660f\\-ab54a795\\-cdc9\\-4b68\\-940a\\-fc6fa36825d7\\-000000[\\/\\\\]+su1VHNQX3Ys5lOKoWujFJuqcFLY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce300d\\-14389bd7\\-1ed5\\-422e\\-93e2\\-5e39f8dd1761\\-000000[\\/\\\\]+WxZn2XKshNMOw7gSBJd6LqtCHSI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245935c67\\-b420de90\\-5c25\\-45a5\\-b9fe\\-ae56a862d9ea\\-000000[\\/\\\\]+oziip_CKvpERmMeF\\-nZfmG7dMbU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598f37c\\-f4aab62f\\-0b4f\\-488a\\-9463\\-edf3e29875df\\-000000[\\/\\\\]+5cBpiVaRjZ_NaTr35mEkDe3XwJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cfb5b3\\-68bb3cfa\\-9b13\\-4123\\-ab97\\-a967a9033d8a\\-000000[\\/\\\\]+WQ4cBssnS8U3J0nNzHeNJUvdq9U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245770a8a\\-0b7901f8\\-d2ce\\-4cc2\\-a204\\-bc9fd11225fe\\-000000[\\/\\\\]+9xTdg2e5bRFf3EgnHD9UB1_k8lU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566d743\\-8319022f\\-5dbf\\-47d3\\-9932\\-0b50199987ab\\-000000[\\/\\\\]+cX\\-U\\-vKqm4XvUsr6h06AtKZCo44\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582d6a8\\-d476d91e\\-d9c9\\-493c\\-90c2\\-0e44d6e3ce62\\-000000[\\/\\\\]+b9UUliddkJIYEktpVmHssRHh8nE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c937da\\-44161fde\\-dc62\\-4021\\-ba27\\-ea231a83268d\\-000000[\\/\\\\]+\\-_4gyfcHpYAzqs2EN0FxSrfKCFg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245993b51\\-7d7e5f18\\-3f94\\-4625\\-a855\\-336571886818\\-000000[\\/\\\\]+MKtrnO1YLMZXtNsmkTU9ERAe1_0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c35e4c\\-b45e87de\\-9e95\\-4b8f\\-ad95\\-16ef3ecb9500\\-000000[\\/\\\\]+7rBjBJmCE0Mi8YwJ\\-MTm0_Ddbpw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577790e\\-ddca7dab\\-86b2\\-432b\\-869f\\-1419ac84fa38\\-000000[\\/\\\\]+lnw4P6ZtmyqWFCKtp2hjlCHPR4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a06268\\-c2418a87\\-8ad9\\-47ff\\-b9d0\\-feeff5b38e67\\-000000[\\/\\\\]+vUFVWYvhjNav_PA78\\-g9ePgCmYo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573a041\\-1defe19b\\-4fc8\\-453f\\-97ce\\-ce6844c0f244\\-000000[\\/\\\\]+jLVKy7xREuL8cHHBLVOMn3NCqB0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a38945\\-7f23aedc\\-a446\\-466c\\-bc0d\\-480556684117\\-000000[\\/\\\\]+UJzEF7VcOkQcXq7c1GQ25qIPgc0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570d552\\-92181f6e\\-73c9\\-47c9\\-a3d8\\-60b141c7251c\\-000000[\\/\\\\]+1dVX5aUh8d3w\\-rpgOKcOyhv4PFk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b8016\\-f773915c\\-0d10\\-441f\\-8942\\-658155e66398\\-000000[\\/\\\\]+SlH\\-5bxhG79ULPf8Whwh66NvDVw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924592fedf\\-37167d06\\-707b\\-4490\\-b94d\\-155bbd2cae39\\-000000[\\/\\\\]+lAkio20xxGYPwHBtGkpn9ZAvyVU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e052b\\-badb2d32\\-591b\\-4cc1\\-9375\\-783e871c6571\\-000000[\\/\\\\]+ZhNrpxHutb1r1hDhudKCR3rzMcM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f0762\\-811a2765\\-fbb3\\-4fb9\\-80d9\\-9c0fb4313288\\-000000[\\/\\\\]+EMMzpJ5OEhP8odX6trCLnVLm1yI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d14df\\-717686fb\\-1e09\\-4981\\-b6b1\\-17af8dc87a92\\-000000[\\/\\\\]+nlwHA32Qy6j4quWnyc9hMx0BSYQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e80d4\\-45947a5c\\-5e5d\\-4cc5\\-8165\\-5e0940db557b\\-000000[\\/\\\\]+bL1DaeDtcgu2bsbN0J4\\-1tVq4xU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3bd49\\-f091cabc\\-1bc7\\-4e1a\\-bccd\\-68c6ffe52a86\\-000000[\\/\\\\]+QaproVUI4lCEkuz7LZkdMkz6NVg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca8b2d\\-c0b42cfb\\-966f\\-4b2f\\-999d\\-a024b12a1e5b\\-000000[\\/\\\\]+tPufXdTZKCSuc8H9XnAX55rQkUQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597014c\\-e535c1eb\\-b537\\-4cd1\\-aaf1\\-9c6adfe63a5e\\-000000[\\/\\\\]+iFgpjNdcw2oo238h2KszBTZXzzE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bb1bf\\-a7ec3a19\\-1918\\-45aa\\-b09d\\-433419f4905c\\-000000[\\/\\\\]+RdcyeemkrRhbrobYtm0rdchGxME\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459106d5\\-3d460dd9\\-c227\\-4455\\-a0e2\\-a781ee869cda\\-000000[\\/\\\\]+74WzaysVgn9yOvzeiqufPT8bjwg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c362ec\\-17762128\\-14cb\\-492f\\-b183\\-d37f39431f5f\\-000000[\\/\\\\]+OA_OBFKDa\\-9Z1n4VEIhYPW5OOL4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c90339\\-75c231a6\\-eb38\\-4159\\-95bf\\-cb212fcfffda\\-000000[\\/\\\\]+ZPdBAm01N_j5KcK1\\-4jo5p8yDWo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459de9b3\\-d0ebd575\\-050b\\-40a9\\-bc46\\-2d1649752b1a\\-000000[\\/\\\\]+ymjMrq9tHQmvzFz18yvRPuczOag\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457b6cca\\-8050bbf7\\-bdc0\\-4580\\-a180\\-adf1fdba51b3\\-000000[\\/\\\\]+1WKHarMgQmVleHTnCEXSuu3kqEs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598bb02\\-6cd457a9\\-643f\\-4269\\-b21a\\-ca095f4a6333\\-000000[\\/\\\\]+bqwQqGVz0mmRON0Ltl6AvL\\-_B7k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b61e1e\\-62046d84\\-9340\\-4651\\-9ebb\\-6c5fab812592\\-000000[\\/\\\\]+T7cAgJVtihgfwJcGEvJHCKa_\\-2U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa3584\\-16a4db29\\-11e9\\-40c2\\-80c0\\-c82e94b2f027\\-000000[\\/\\\\]+fi_ePD3yZWzEleC\\-_Uu\\-mRFFpeY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459dc96f\\-130aa982\\-d873\\-4733\\-ba66\\-e992691164e8\\-000000[\\/\\\\]+VuX3wG2IAM_SwjjoGr2kQpREEYg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0853a\\-0b0b7c4a\\-0384\\-486e\\-81a0\\-3b2656d56b53\\-000000[\\/\\\\]+HZzD47qehvR2Pme6\\-aGRfGhUtwY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bba154\\-278e9549\\-56c8\\-4ce7\\-9c34\\-71efef0bdcdb\\-000000[\\/\\\\]+BzrkZzlDYm\\-eak92DxjfH7XhDd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abda35\\-8dce8800\\-6563\\-4057\\-ad77\\-7005260958ca\\-000000[\\/\\\\]+NY3TLTqXCGFchYnKGZ2Yh9ykpas\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b70bb\\-ab1691fb\\-35e9\\-4e2c\\-861a\\-c514e035b7c6\\-000000[\\/\\\\]+GF3fPekIPvkedvREZrCzaofWnNk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458bd16d\\-6e0740da\\-0a12\\-4730\\-b3b7\\-81bc173e02b1\\-000000[\\/\\\\]+qNKSZFC4YxSpYHstMnyU1Ru9WOw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584c6a0\\-74c5f0a0\\-3765\\-4b26\\-94be\\-e22b80cd2dbd\\-000000[\\/\\\\]+Y_OrkCGalyCxqjUbBHrqRpq5Esg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245996630\\-094d9955\\-fbb3\\-4a65\\-a443\\-51d4fcd61e3f\\-000000[\\/\\\\]+pCaJPUevdL6wZ8z64MJz719id5s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd7189\\-1339ec20\\-9852\\-43b9\\-8a4d\\-7a345cf43506\\-000000[\\/\\\\]+om8_m86m06mZ13deQJ44zUUe5QE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5b827\\-c52094f4\\-f763\\-4cd4\\-a4a8\\-636be2150883\\-000000[\\/\\\\]+rPsQ46eTX7IHON1zTrzMOfHWwaM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573adb7\\-b81fbace\\-acd6\\-4c6b\\-ae74\\-b0bae8703e57\\-000000[\\/\\\\]+9UK9edcCS\\-6sffEbkYytEQtD410\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c309f\\-7b2d0fc9\\-d18a\\-4796\\-ad13\\-5952e0f3a764\\-000000[\\/\\\\]+202ZoVoWkwzwie_jJBZNNpRR3cA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3f0e2\\-2758ffe2\\-0cc3\\-4e0d\\-a27b\\-48dd8418576c\\-000000[\\/\\\\]+GhsbgwWbcq6sqmctWnV_sRbz2UM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570c21e\\-5f653312\\-58e1\\-4f60\\-9e21\\-7bad8ef2e278\\-000000[\\/\\\\]+hCrsLk64aKbmW_8biWFtVlIcRrg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f5da4\\-bbb02b6f\\-0328\\-4ff3\\-b6d7\\-5296970ae0c9\\-000000[\\/\\\\]+J8QRXdG\\-h3RriWIk6EGXhE6o5Gk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bac4ad\\-7a657b78\\-b3e6\\-4220\\-ba2b\\-b0d162dc20b3\\-000000[\\/\\\\]+7Wp6NdyS56f23vCbhmQjAXTm6WM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245744e3f\\-a15e6eae\\-a7a5\\-4793\\-b6a0\\-2e022282038e\\-000000[\\/\\\\]+z58i5LId4hakZ54iyJ9rjMJamCM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599500f\\-dd61b4e4\\-841c\\-4344\\-86e3\\-05eb2bf1aa16\\-000000[\\/\\\\]+NYnQCDKJxpG5SFmTfUXXHiavzUk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbc244\\-647f62e5\\-8289\\-42c8\\-87cc\\-2d92dcfa6044\\-000000[\\/\\\\]+KfN_LPfAac_wHF41Tu34YmkvJZs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfb689\\-b93a5068\\-0b7c\\-4167\\-ac6e\\-2915ee9f27d1\\-000000[\\/\\\\]+iBxbXEcWZw_G4xdNgkdLpnDXeJY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e6707\\-3c1d710a\\-f04c\\-4319\\-8bb0\\-c2975ab292a7\\-000000[\\/\\\\]+J3MjuJD4f1mUH_GHScwwXSC_ay0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac44fa\\-2d0c17e8\\-2faa\\-46c6\\-9cc5\\-a04b255eba81\\-000000[\\/\\\\]+UkcJwevGsyDJHwVqVeWq4HMC6lY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7e699\\-82f6d981\\-00b9\\-45d3\\-931b\\-405e1bcd52bc\\-000000[\\/\\\\]+xoao42pCCu5xjxiL1lOumwq7ibE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458747f3\\-6087e7df\\-fd73\\-45e0\\-a552\\-899566264707\\-000000[\\/\\\\]+sQftddUati8lmFWRovyqETM73uE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f1382\\-49df5ef9\\-2530\\-4230\\-8a84\\-63056426c97c\\-000000[\\/\\\\]+D00Z8eNbFHhK\\-EurgYa29py5t8Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b737f\\-fbad8cf2\\-d856\\-4d57\\-8b9d\\-0d6064effc9c\\-000000[\\/\\\\]+mHpMdmC09_\\-MbiqzbHQziFrkjHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924593f56b\\-17cf15b5\\-ef84\\-4753\\-95e7\\-b59547b09773\\-000000[\\/\\\\]+XcjYZ_58WfUhpt34mKK6zsxA\\-DQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597574e\\-f138c2c0\\-cd37\\-48bd\\-895b\\-053d982ca9fa\\-000000[\\/\\\\]+onnw2pfR8MNqW8aTzrU2gwWc170\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245626705\\-b0699bbe\\-1684\\-4b78\\-bb36\\-2045742ac683\\-000000[\\/\\\\]+\\-Nb8IckJF_5_9rDfZ89aNRC5vrQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b96a37\\-6d898acd\\-11cd\\-4b47\\-9e97\\-9d6db43e8cd7\\-000000[\\/\\\\]+\\-GYu_l5mHaYZebyoqmfs6rd3IZ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a54ed8\\-5088f692\\-8131\\-4cb1\\-bfa6\\-bd7820f98165\\-000000[\\/\\\\]+VjwvLrTBglPwdSi6376_wHszGn0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579bc99\\-56134b8b\\-05ea\\-47aa\\-9a39\\-cc049271f1ba\\-000000[\\/\\\\]+Tb0aZ\\-4iRmHJJLmyB73G0tHvi3E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458292e1\\-1e84cd96\\-3ee0\\-4bea\\-a923\\-a96646d50b17\\-000000[\\/\\\\]+JJYvAjRZRhWRroBDfJY6IuAsjWk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6bf20\\-32ba4d5a\\-3e30\\-43ef\\-8c62\\-a1810ea42938\\-000000[\\/\\\\]+Ns_PGgP20OJtVeRT6uToiITTI1Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c38fd0\\-b6d95ba4\\-ac80\\-47bd\\-8a3f\\-bad6b576c9d3\\-000000[\\/\\\\]+KI2DAPfWpHiUXhVYxk0rqziiyX4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245817c7e\\-d9fca2fa\\-f55c\\-439b\\-b220\\-436e8287f4ca\\-000000[\\/\\\\]+Hrc2E2e7VjGgRinX9_7CH9AC5LU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583038c\\-c98c8be9\\-9f8f\\-451f\\-8f80\\-54bb0d1d980c\\-000000[\\/\\\\]+quhKHj5THGNp9hqt8pLGIpgOdjw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af9a02\\-f9c83023\\-fb7c\\-435e\\-bedb\\-1cc85c0b6605\\-000000[\\/\\\\]+FMUaGX1cLzxEjc678loN\\-ANx1EM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b186ce\\-8bf06500\\-77b9\\-4f53\\-97c5\\-241b7e97d269\\-000000[\\/\\\\]+bOoxj6kOM6hZ40YXRCcj2bd\\-6Gg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6e490\\-d6abb0bf\\-6ac1\\-44f4\\-88e2\\-9f8cd7456aa7\\-000000[\\/\\\\]+A5IMdcq1_uaTuvRX0grIXFN9TsM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b91f2d\\-71e7f737\\-934e\\-47f1\\-86ef\\-0f4e50330112\\-000000[\\/\\\\]+MiH\\-0U9VzToq0ZSRylRu94CwolY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e3380\\-d686410f\\-9650\\-4dba\\-be1b\\-df8576e09450\\-000000[\\/\\\\]+gNBjCLgLaHO\\-L91rO6Hpc8rxEuE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a8f40\\-3c76a836\\-4ad5\\-49f6\\-83f0\\-d0151f5d6e8a\\-000000[\\/\\\\]+l3ya9iBuLmuiGI7xkGQfpMUU33E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afe778\\-946590f8\\-6bac\\-4367\\-9fe3\\-e361a33d74f7\\-000000[\\/\\\\]+29LuUMIyri3h57UvvaFx0Y0fH6o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924588374e\\-d6900539\\-af81\\-4fa6\\-a8be\\-3705d7d03f60\\-000000[\\/\\\\]+j2IA_AaOO_LtbqluVoTzhDrl\\-4Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245989045\\-578985e8\\-448e\\-4e4a\\-acf7\\-1a283d928a2d\\-000000[\\/\\\\]+Yax_WFKp1P5Jk\\-45iI2Llpsmhzs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e1147\\-dd363d02\\-e293\\-46a7\\-a113\\-c40aff8e1dda\\-000000[\\/\\\\]+eM\\-dL2hYk7OmrT4XwxI4N2lHVmE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ae6e3\\-c3c38395\\-15b5\\-41b9\\-aa14\\-be210ff4babe\\-000000[\\/\\\\]+nKWs5C_hnFT6Al9C9VPmVt\\-jOh0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583a837\\-b7ac0e5a\\-6388\\-4a84\\-a9fa\\-233825a1cea8\\-000000[\\/\\\\]+4PmbOWKWbF4c8hbnveZPIi8M2IY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456684de\\-1b12987f\\-60d0\\-427a\\-844a\\-d064602bb2c1\\-000000[\\/\\\\]+ZgKxRAgs2LBQhW7RpZvETqE5b3M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245748efc\\-a5904d81\\-a16a\\-42bd\\-9aa3\\-27fb7f5f0fe0\\-000000[\\/\\\\]+CWjJkYiu2EtxYaqHj36Z9upLWVI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583e53f\\-b86c71d9\\-05d5\\-4b5d\\-91b1\\-e0a28d1a6662\\-000000[\\/\\\\]+7QiM94tRepKctfD7V01\\-9GNkhjE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c11b15\\-e7878215\\-3f31\\-45fc\\-b0af\\-ee963d81f2dd\\-000000[\\/\\\\]+XhOw6PGcSKU0p85eWW5l6Y\\-S0Fg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577d1f0\\-42581b2e\\-d1b8\\-43ae\\-bdfe\\-eadd2673c616\\-000000[\\/\\\\]+AUES9lVOn_rrJ7uwC9Z\\-cOngNLg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245624707\\-a447a45b\\-63b9\\-4bbc\\-b149\\-60879e1adcd4\\-000000[\\/\\\\]+jlbE5kD4imc5M20b9NCSCRHGFZU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245753b36\\-d18f3a7e\\-4427\\-4492\\-9500\\-e56897bc00c3\\-000000[\\/\\\\]+kEedOqLNTRCmBjfCkDrQQGW3Vu8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b28c0b\\-8b2d0fee\\-6602\\-4ddf\\-8d3c\\-49c7fd9dcf9e\\-000000[\\/\\\\]+5T7dVkQ2tGCOo754Jc4HmlasIV8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d0fa0\\-8d963d3f\\-7968\\-486c\\-b7a1\\-5ff18b9c2b6b\\-000000[\\/\\\\]+Fp\\-NoJYCtzzaB3w\\-WXDFFYj3mIA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924580e199\\-08f970ab\\-30bd\\-4253\\-9077\\-8d9a1a90c373\\-000000[\\/\\\\]+JTDm1yT7QOfhmDgohMILJHHWoe8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbb0c9\\-7a63ded1\\-aa79\\-4e37\\-9292\\-2ba6157ef07d\\-000000[\\/\\\\]+jT9z4J\\-keE\\-0MlzOEs_i_\\-C4N2s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ed73c\\-83448320\\-8edf\\-444b\\-a14a\\-1859e14d085b\\-000000[\\/\\\\]+Q\\-ikcM736hHCCNdO8yyKP8QpcJk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7e845\\-96a6d2a7\\-2705\\-498b\\-ba87\\-f6b11cb30779\\-000000[\\/\\\\]+3pAxQMxbDqs\\-3g26ImRgUruxSsY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572d32d\\-fcd3ccd0\\-57e7\\-42fe\\-8571\\-10da646a9edb\\-000000[\\/\\\\]+lX1NS\\-NQRpqhqVP\\-QpA41MY1P1c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8a166\\-a619742d\\-932c\\-4f90\\-be29\\-89b0aa63eb6f\\-000000[\\/\\\\]+6aOSQ\\-NyjpCprJZ9X7yg7MPgujg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5552b\\-51cb5c1e\\-0433\\-43b3\\-a547\\-de49c84c0fdc\\-000000[\\/\\\\]+uAvC7inyYfJRhtcQiGuZea0\\-d38\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a8c1c4\\-14ced8e0\\-d5e0\\-4c74\\-96ab\\-ea05707d1e2d\\-000000[\\/\\\\]+fb8VH\\-0FcNLlaOfIyJE0L7gYF_U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573d12f\\-2e344040\\-70fd\\-4249\\-8402\\-2dbe4d23d2b8\\-000000[\\/\\\\]+x3NdlknqWGtyFFNxHRs4UPZNy\\-s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458aed29\\-9151ff83\\-b94f\\-4f42\\-b4b7\\-17b94abde5ae\\-000000[\\/\\\\]+X43RbOIAf4R5LvNxnP4KxkVrdWA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a8393a\\-7c4967ff\\-5723\\-4237\\-be40\\-8dd44473e497\\-000000[\\/\\\\]+jTESEECTh_OLLI1TKzxXQm3kZsY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565e789\\-8b887b0e\\-1c92\\-4b5a\\-8f29\\-dd036fe9073b\\-000000[\\/\\\\]+T_YHDoRNr3F01_AmeCsPhH7WKTM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c140a7\\-8165bb30\\-b498\\-482a\\-8fcc\\-c3c8d9ae5c81\\-000000[\\/\\\\]+gm2pTwVeem7e4HRU1HATLWLRVsc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e3a4e\\-f444b76b\\-aab2\\-418f\\-bd8e\\-5743de2fdbe9\\-000000[\\/\\\\]+SwiATlxYvwEtYMiNBFg59K2V5HQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245948de3\\-8820a5be\\-5b53\\-4039\\-8b43\\-a92f772a787b\\-000000[\\/\\\\]+6X8YDx6E3mX3v3cFeH1ZTkH7r\\-Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a6ed49\\-67fe369f\\-f29d\\-4d53\\-8087\\-9e13c3d3370c\\-000000[\\/\\\\]+F50oOHJMkUooGiD7m4yQQmJbhqI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5780e\\-d85163fe\\-86dd\\-4514\\-b70b\\-df40cc921706\\-000000[\\/\\\\]+hp1bv_FStBZ3R26cMELnJgNWWy8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569c355\\-fcde3c10\\-e252\\-4780\\-8956\\-2e2477385e93\\-000000[\\/\\\\]+eivw_SDA2q42Ai5eJOayxHnef0Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae2e92\\-ecc2b44c\\-f620\\-46db\\-bba5\\-1fd9131fd5b5\\-000000[\\/\\\\]+2YItgDlWIGPun_jnkf0umN7s57s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b39750\\-0ce8f1b1\\-0bdb\\-49e7\\-95bd\\-e30568b6749c\\-000000[\\/\\\\]+vQyhY9cW00f\\-i9RKgVhk1KuhsfE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569b712\\-78cd2054\\-7d2f\\-44cc\\-a43f\\-1b3cf4f55460\\-000000[\\/\\\\]+RfMQgEDvqspXVdvDkVn5EnWTgIg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3d869\\-7190d0fd\\-cc17\\-4050\\-94e2\\-c87728bcc299\\-000000[\\/\\\\]+X1gLiH8wVFE4KKkrkxjxwfETRkY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca8bdb\\-3b97463f\\-cc69\\-42d5\\-a30b\\-75ddd18ea0ea\\-000000[\\/\\\\]+f\\-JuUkzjqNiAhpeYhQvMeUKg5kg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8a0be\\-a60ddebb\\-6512\\-4dff\\-a6fb\\-0b75094438c4\\-000000[\\/\\\\]+LyEYdzUjGLyPgPaNIEOdIE0KlFo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce094d\\-2b75c693\\-01d2\\-4ca9\\-b1cb\\-e09985dff6da\\-000000[\\/\\\\]+_tNm876_iT37k9q5\\-h9\\-HllHnto\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5b827\\-c52094f4\\-f763\\-4cd4\\-a4a8\\-636be2150883\\-000000[\\/\\\\]+4vx8NZhJahUyPZSt8ITG1YHSGIo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c88093\\-f7f64f32\\-274e\\-404d\\-992c\\-25274a92b188\\-000000[\\/\\\\]+R4ENAIZiqUzPdfu4D_YXn4UVdRc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+01010192329a7219\\-0250f323\\-e8e5\\-4cd2\\-9418\\-24550398166a\\-000000[\\/\\\\]+aLmoTwASCwU2WWju0K8F6j\\-yrck\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245729b82\\-2032a7f6\\-a4cf\\-4bbc\\-90eb\\-e40a1f10f01a\\-000000[\\/\\\\]+xAnkoO8fWz92Q\\-U3Z4_9BB_3Luw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6650e\\-f955cd51\\-9fd4\\-467c\\-b95a\\-4853388572fa\\-000000[\\/\\\\]+xJyK60SDsA3X90W\\-uydbSJD8EUM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc7923\\-df699e1f\\-007c\\-46df\\-b122\\-0f37a30cf982\\-000000[\\/\\\\]+FaN2BzsWij2s209Nyrx\\-0NwV5_o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245715d6c\\-89fbdcd9\\-ec17\\-43f1\\-8a4c\\-81ff154d3276\\-000000[\\/\\\\]+KnPacIlPSmXInylRyAmHkVt0HJc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594ad29\\-4f8e32a5\\-7282\\-40b4\\-bdda\\-ce44dd95a7c8\\-000000[\\/\\\\]+4vOS2KtJGpeOpMTpNqwGq_NbtLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245911cca\\-4fc770f7\\-fde6\\-407f\\-9d0f\\-157bfee62da9\\-000000[\\/\\\\]+TxrCGRiLg1Ewt90irO4VRpD6sLk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245915e7c\\-8450cbff\\-96b1\\-4d15\\-8030\\-bbd671c33223\\-000000[\\/\\\\]+vPL3qBUguuYKZBzxcbGm9_ArKBY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a8b32\\-44dfc942\\-86db\\-44a4\\-a564\\-54b53f036704\\-000000[\\/\\\\]+eU7kTl2Q40DiXUTFKVXqqAJtfpU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c79c99\\-59263eae\\-1121\\-4f22\\-92b0\\-1ccc0531d4dd\\-000000[\\/\\\\]+RNKRAVidYTRWnoHzJXyuha2DtYw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457b56ff\\-6bf29ea0\\-b1c4\\-4bc4\\-bdfb\\-2c5d78c4c640\\-000000[\\/\\\\]+TgT1yvWlOzWNsEc4OANN0c4Iv10\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c66522\\-b2caf0e6\\-ca88\\-4737\\-8812\\-07633f217da0\\-000000[\\/\\\\]+oHF38aHdHx9y1Kz55JaigdAMi4A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459819fd\\-980b7c7c\\-ab07\\-46f9\\-bd7f\\-89428283ea9e\\-000000[\\/\\\\]+psAmo9gtcOXkcqOutnOF5ZPSHOE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfb2a7\\-3d3acba6\\-e1c6\\-4c57\\-8f66\\-bf878bf85692\\-000000[\\/\\\\]+VqGrPILEzEnx25Jt5k1SS2GZ68M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5780e\\-d85163fe\\-86dd\\-4514\\-b70b\\-df40cc921706\\-000000[\\/\\\\]+ZZTCem5uo\\-4kPaG7Vgfd1U6G_XI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aec3e5\\-aeb0906e\\-4f10\\-4b3e\\-adcb\\-44cd1b18c03b\\-000000[\\/\\\\]+OmJkGr_QNeQlefOzuQlY9\\-mVTRo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f0f88\\-bc3630f2\\-9d52\\-40c5\\-8f6a\\-68e4d86dd235\\-000000[\\/\\\\]+GSB1QSyFz1obBv3PouRxjgaXwOI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a5635\\-5f8cf1a8\\-300d\\-4763\\-b4e6\\-05f55b1aa8ae\\-000000[\\/\\\\]+RL5FZRDqOqqEvRvC0\\-O9L3C6qEc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4960d\\-38652699\\-ab21\\-41ab\\-a784\\-1f4f83a0ce06\\-000000[\\/\\\\]+RDU6JpSy2StK7SqYlh7Q83ZjVuQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af11da\\-0265d3a6\\-f038\\-4847\\-928b\\-d971b55888d9\\-000000[\\/\\\\]+UXTe3qJNe9jRZBgaldsPqDO0oXE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cfcc30\\-34d732e0\\-e89b\\-4d5c\\-b16d\\-4ce097aabba1\\-000000[\\/\\\\]+l3nFPefYy2iMqpgxJ5dHj9k5FJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b74940\\-6e2ade5c\\-7c36\\-4902\\-80a9\\-5973dc1b50a5\\-000000[\\/\\\\]+Htj_NRe\\-Dg8IKRR65CJqhrbpPS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bce044\\-aa1a3e3c\\-a095\\-442c\\-bccf\\-feb3edd5a7cb\\-000000[\\/\\\\]+v8fperF3L5BETX8Z4l0wVWxzqZU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa06af\\-9bd6ca6e\\-03e8\\-4950\\-9dd0\\-f026d51c6467\\-000000[\\/\\\\]+fUNr5KClun\\-z7rIgHvTzrcrTfSE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459406bc\\-f0108828\\-31bc\\-40f9\\-88b0\\-363aec6eb0ff\\-000000[\\/\\\\]+F_U3KMR\\-cmjIggSpJqhdpEcfQ3o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f6970\\-ffe50a3f\\-2a4e\\-4316\\-afbe\\-4c80d9644c5b\\-000000[\\/\\\\]+3yLJCul7sfWQl0z8wvxu3cQbQ4c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8faaf\\-5dfc48c2\\-c464\\-4c36\\-b4c0\\-3abf7d34c5a3\\-000000[\\/\\\\]+g4S8UcJ9KTEtXw6uMXgAHsv6wps\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458183e5\\-ed3648b9\\-5bc7\\-4406\\-9bf4\\-7c025b82d6fb\\-000000[\\/\\\\]+CGAbG7JHOirY9G\\-gWM0dLSYygVY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579bc99\\-56134b8b\\-05ea\\-47aa\\-9a39\\-cc049271f1ba\\-000000[\\/\\\\]+09fcseL5yKLq1naWviDKKq3IxQ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b63e14\\-f70c03b1\\-beee\\-497d\\-9c21\\-e85d23be9ec0\\-000000[\\/\\\\]+ZndqvoXeEbFmDjqxFoDJb5qn7XE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585d418\\-fe61c8f1\\-7469\\-4d43\\-a49f\\-9797ae6c5ab8\\-000000[\\/\\\\]+Hu8pLeCNPnWlRyCPWZnPV2lkfiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfc0b5\\-3ecdab5e\\-2a3b\\-48ed\\-bf07\\-d77a1c560e64\\-000000[\\/\\\\]+Rxx2Fbck5Ortazz7c01jLH_3nBs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e682e\\-9f7dd76f\\-261a\\-4ae5\\-93a1\\-32a1fb1617fe\\-000000[\\/\\\\]+olU1xj\\-YdysQUyogH7CpYWAVv74\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456eca7c\\-0cd198f7\\-9b06\\-45c4\\-87bb\\-da05a329c012\\-000000[\\/\\\\]+gb_xsC1q3KnNbzIDEzIPL8mKkfQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245998195\\-093314fc\\-6821\\-4bf6\\-a2f5\\-863e2e62bfc1\\-000000[\\/\\\\]+tn5e7Y6aumdkABszi2lAv3zvJJc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d86ca\\-da9ba4fa\\-7c29\\-4904\\-84b8\\-d9383ead492e\\-000000[\\/\\\\]+iloRhkJkodsUoetTdwKsuq9gHAs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ed91a\\-12c12747\\-8476\\-4129\\-9dbd\\-6abc301bfc37\\-000000[\\/\\\\]+UwlBBjSjtRtBTzSf4nm6mtgtjjk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245acd33b\\-4b79732b\\-46bb\\-40ff\\-9b08\\-2e6920eaf084\\-000000[\\/\\\\]+WTdxIkMeLNLswc5MSauh9uOw7a4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459588e3\\-e50c476e\\-74ca\\-4e7c\\-b111\\-11a35cc0f135\\-000000[\\/\\\\]+JfTEUbKTXZ8HX1BoP0NjEiwPfh0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8116c\\-80fe66ba\\-ddf1\\-4f73\\-a717\\-2a1201d7d011\\-000000[\\/\\\\]+I\\-0c0bQ_lbI56i2f\\-6NJVurRQs0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a11879\\-698f7fd6\\-47af\\-4ef8\\-a94e\\-e34e7e0a6c33\\-000000[\\/\\\\]+Pll7aIR7qeWXqB41RpFbf2SBzWI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab2d3b\\-8b9d2adc\\-6180\\-4eea\\-a1bb\\-913e5e009011\\-000000[\\/\\\\]+Jxo57Mai9EH\\-7X11C5lcs03Me3Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4bb6a\\-927dcf5e\\-8199\\-4640\\-8712\\-79f63c15cd23\\-000000[\\/\\\\]+mprN_SK1PitvoLdd\\-ilNDZXyvOs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577b298\\-e31c744d\\-762d\\-427f\\-bbbb\\-3e0f8668cdbf\\-000000[\\/\\\\]+ssmhY119uyrw9982sezYgrIaFxk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245667c16\\-b3e406e6\\-49e3\\-4115\\-ba7c\\-1a0bd64a293b\\-000000[\\/\\\\]+W_MG\\-exzbDid6C9H8PeYl2t5Cg4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b7f97\\-f338afbc\\-0fa2\\-47ec\\-b50b\\-609467a721c8\\-000000[\\/\\\\]+\\-I3T6JMpxUu3REHmQnpTZcLzLzU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b041a6\\-f90ebff7\\-04f7\\-428f\\-a7f4\\-15a0628a5e7d\\-000000[\\/\\\\]+aGOuhB3twza6Dnne5TEwHVJ5Ht0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ef2c7\\-ed0f3a09\\-3ecd\\-4fec\\-a97e\\-5f930d9123ff\\-000000[\\/\\\\]+\\-I_oSo_pEg1uJ5\\-GN73D53oRrqc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f2978\\-8aa45b10\\-c384\\-4200\\-8264\\-07418b472eab\\-000000[\\/\\\\]+gAFQQeIlz6WvyFtMNej0I\\-kl53o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579fdd8\\-dd691a05\\-0bd4\\-40bf\\-86ae\\-83dd24c935f1\\-000000[\\/\\\\]+qlrjCi__7CBnBWgJUg9qw2Vme5c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597574e\\-f138c2c0\\-cd37\\-48bd\\-895b\\-053d982ca9fa\\-000000[\\/\\\\]+SlrmGPpeXZRVkPty2LLaJ_9CDrs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1fd85\\-e8d423a0\\-0118\\-4c9a\\-aacf\\-1bdd3be05044\\-000000[\\/\\\\]+Fz3PYXVT5KA\\-8hi2k5CqmTXX7eM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245698f28\\-8865301f\\-8275\\-4b0c\\-988b\\-d8633ef275a6\\-000000[\\/\\\\]+Mm4NUlQLz52u0MCM4khF4h5zJ9I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c16614\\-3fba713a\\-42e8\\-4698\\-bc59\\-aa1692257b43\\-000000[\\/\\\\]+jS4X7va21Usce84Vqe\\-Izo_j1dk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc77b9\\-09715571\\-c8eb\\-4b6b\\-9e83\\-09d8450b8b33\\-000000[\\/\\\\]+9fdlb3OtNKLRTUOYibGswIIILX4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456addc7\\-db7bd098\\-1503\\-4119\\-bcb9\\-a490d7fa2233\\-000000[\\/\\\\]+kSroXiTpS5EFuLV9OFntEAiPj_w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245824be8\\-8d88df91\\-eb3f\\-4b23\\-bcaa\\-3737ad56ec82\\-000000[\\/\\\\]+egK0W028vgGbxwhF0XyeOPylEvc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459378b3\\-5d86ace2\\-992d\\-45c0\\-8be7\\-9bde81285e32\\-000000[\\/\\\\]+6qVErK8Chd1sLZa47P3lbai9V7E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0df08\\-b217b08b\\-a934\\-4a52\\-a71f\\-9ec7223d05a5\\-000000[\\/\\\\]+kU3Wi1CNLURh6KWfdw3Oc\\-tMdY0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a89478\\-efb918df\\-c933\\-417b\\-ab9f\\-be3c811fcb59\\-000000[\\/\\\\]+1GMwn7gF5ZKSS1NAVMZo9P0I8wg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c33ab1\\-cda8ffce\\-0ea1\\-4158\\-acd4\\-bb9329c15a46\\-000000[\\/\\\\]+o1nckL0TL0DcdJRPQq7oGvp319U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d77d8\\-f6e37a0e\\-3a8d\\-49cd\\-892f\\-9426bd8ffc99\\-000000[\\/\\\\]+xuUEM7PyqETp4SOe8DoRWStVL0w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0349a\\-14173466\\-1b30\\-4e5d\\-a3f5\\-216ff2956666\\-000000[\\/\\\\]+aF061GZpPyzpadjvsE54yjQIYg4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab2ba2\\-e69c8ea8\\-db6a\\-4877\\-b111\\-c1a3a545a0cf\\-000000[\\/\\\\]+y5Vkv9sBJfw2s\\-SRFvfvPgO72Pw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a74630\\-f0d61c6a\\-a865\\-4480\\-b77d\\-12856a573a0c\\-000000[\\/\\\\]+XzE8JYZa56re6yLarJsWH6IFRfM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e1969\\-f9a80e3e\\-55c0\\-46e1\\-b914\\-e1a5bb23fccb\\-000000[\\/\\\\]+gyxk8hjXMCV88ztxWiP4FDX7tzc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596be25\\-3bb8d294\\-9900\\-46a9\\-8126\\-900aaee2430b\\-000000[\\/\\\\]+jk9FQ_4CbKQ6dPkIexyXiyVZwNk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f456d\\-3db9d4d3\\-0774\\-4a8b\\-9035\\-cffe95f07612\\-000000[\\/\\\\]+yvnuZgDz2DnUyG9yxOmwR1t7s30\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca39e0\\-0a33dbfd\\-de46\\-4721\\-9528\\-08afe7fd0f70\\-000000[\\/\\\\]+_7u4W0uE\\-65ENi_wbp2rQOWl8sA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1a4ce\\-627f85c2\\-aa67\\-411d\\-b87d\\-664e90290f04\\-000000[\\/\\\\]+KbZ38K864UbhVeRwQGdH\\-evqslQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b041a6\\-f90ebff7\\-04f7\\-428f\\-a7f4\\-15a0628a5e7d\\-000000[\\/\\\\]+S0zgufrJVwMBb2eYwtlIkcZeXzc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b409b9\\-f7a60f01\\-925c\\-4460\\-8b87\\-ae2882eb67b9\\-000000[\\/\\\\]+3qtlGALaegyRbwi7LCDVkYZK7V0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245659646\\-cc10245c\\-80e8\\-4616\\-9ef1\\-fb5a3b9e7b94\\-000000[\\/\\\\]+9wlh8fsvZLV8ABNhtd2M0mtG\\-9Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c85d83\\-84a05aaa\\-fae8\\-4940\\-8460\\-82c811513441\\-000000[\\/\\\\]+sGBWqhA2j2oAsA8au_Q6G1FdOwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245662850\\-1d5576c3\\-c9e3\\-4db1\\-8e80\\-92f46b483e07\\-000000[\\/\\\\]+x2w9mFenfcfDe9Jj_4Op4orNiX4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a47154\\-848ee2e4\\-fce2\\-47bd\\-b3f2\\-b727a7541c2a\\-000000[\\/\\\\]+SMJWiMoIti9hMcsk\\-If45khfC\\-s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ffd95\\-bb368562\\-e62b\\-4af0\\-8f9f\\-34c8c88fc0eb\\-000000[\\/\\\\]+KNUViVh9yr6U_3a75L9CNFttdTE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3d869\\-7190d0fd\\-cc17\\-4050\\-94e2\\-c87728bcc299\\-000000[\\/\\\\]+skq8_vBud\\-l0mh5m_uhs\\-m4f_RM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579ea06\\-cf0dae21\\-75b6\\-4c5f\\-a747\\-09a18faebfa8\\-000000[\\/\\\\]+PtHgCg4Th9QJEXNrXvbuDNN_x48\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5b6e7\\-610b2ec1\\-14af\\-4d86\\-aac9\\-87b4cfb871d7\\-000000[\\/\\\\]+DLBu7vDDstD_lUUamrAmlcawUP4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ba72c\\-0d03a48a\\-abe5\\-4ce9\\-b066\\-9af09b5368c4\\-000000[\\/\\\\]+wsJABYLQqZnB9tNP4tiSdEp_Hto\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245819bb0\\-54f3b598\\-2b8f\\-45cb\\-8eca\\-306ed88c39d7\\-000000[\\/\\\\]+7c3SNvSIknJ9g1zdX3uvSeXo7gQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a096ba\\-722a6e0b\\-82e8\\-47cd\\-bec7\\-7f4a7a89a634\\-000000[\\/\\\\]+NPs4W3yEepr_u63wngz_peuZHrQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c4bf3\\-30b67413\\-7c86\\-409e\\-b0f0\\-98601c17ad22\\-000000[\\/\\\\]+wva8ny_UCS6hk6a2mtL5KH1pPu4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a06c10\\-bcad09fa\\-4913\\-48a8\\-a660\\-330602000c57\\-000000[\\/\\\\]+7XNT2xPCaQ2bfr6YzaWXWz2GC54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457637e2\\-be4f4608\\-262e\\-4224\\-b3e1\\-52adf31115d9\\-000000[\\/\\\\]+dPXyebfVwcCdiL\\-AXF45DxlDxFA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e499c\\-5763dcec\\-4294\\-4086\\-899f\\-7c64d189c32b\\-000000[\\/\\\\]+2IgUG8Rqap\\-v2a_hNXZd4JD_nSY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8dcb5\\-49341ab6\\-1725\\-42e3\\-b359\\-8a63596affe7\\-000000[\\/\\\\]+6nSRQRFn_tjwHu1_q\\-XVqMVUSeo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924560ef25\\-1e109bd1\\-e650\\-4258\\-a911\\-1b130319bd48\\-000000[\\/\\\\]+L\\-EoG5dnj8jL58pDHG7PwIX0Iq8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b62237\\-27f22780\\-e2e5\\-4499\\-8f86\\-3d3f87208ea7\\-000000[\\/\\\\]+cmTteoABSSDsthZeogPvCj7pQ0Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245830960\\-010ed9ce\\-43a8\\-4f45\\-8e6f\\-d6fa733144f2\\-000000[\\/\\\\]+\\-gJbgX08SSEBz0iW5Hb_Ij5Izvs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3bf28\\-eb3808f5\\-7286\\-4f73\\-ad2b\\-46507f54d89a\\-000000[\\/\\\\]+kgn\\-mA1j9l0JMrcwmOKhq5cY5T4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597678d\\-63ed1951\\-cb2f\\-41d9\\-a914\\-13816a7a8bc9\\-000000[\\/\\\\]+OcnD\\-C_iXzrCysDAEyncsEyJe\\-o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b95935\\-cd2225bb\\-37ff\\-46f5\\-bc22\\-c08ebabb45b2\\-000000[\\/\\\\]+KGq5fzz2vannJavyBCPAWdNm73k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5c0ad\\-3ad752b4\\-9098\\-4bc0\\-8581\\-19acd9c83da9\\-000000[\\/\\\\]+PGLGfBiSmbuAfNPNXtYTYU33A3Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb156c\\-fbd610de\\-b03b\\-4891\\-8dc6\\-e10bfb0b8503\\-000000[\\/\\\\]+m1sC8Q0Px4Kk5kdMU_1lqDMTWKo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f7bfd\\-d2232974\\-3c03\\-4a77\\-b247\\-0ab45da5c786\\-000000[\\/\\\\]+gadHuCJecstXK4kbeB9r0hmuau8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577d6e7\\-cd077e35\\-c796\\-4bef\\-a807\\-adf9b68ad52e\\-000000[\\/\\\\]+Pp\\-doh2urNSZT0fjKqtS8nYHLWU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457da3d5\\-464f1951\\-cb5e\\-40d7\\-adb3\\-db7d2c413f3a\\-000000[\\/\\\\]+KqZ0bqA2ElHr7ksc2Bf29CXNFPc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245771389\\-0fd29aa9\\-7fc9\\-447c\\-b50a\\-5af5ae59bc51\\-000000[\\/\\\\]+Px1LTb2TDhtGNWVBQcsyIlXeAcs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245baa8dd\\-85c11886\\-2d3a\\-4c04\\-af43\\-abd16980e268\\-000000[\\/\\\\]+6CbLJ33v64VE2cbTej2GzHq9XZM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a3387a\\-53445c44\\-fe4f\\-4331\\-9898\\-d7fd892aa852\\-000000[\\/\\\\]+ILn\\-pXb\\-bcwLoqVO5tlzV8k4ZMc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c900a5\\-31fe1448\\-9bf0\\-4613\\-822b\\-d7bef63e49f2\\-000000[\\/\\\\]+_0H_Az3HlMqbT6\\-AivlJL1BoEtk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245670005\\-b2a68037\\-6962\\-4a93\\-8d94\\-544ad22475bd\\-000000[\\/\\\\]+SWJMJVtmUCM65eJldBgovFeeaJk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f8cc0\\-6723d068\\-e1e8\\-49da\\-99f2\\-8cf67faecbc6\\-000000[\\/\\\\]+47Fb_V28FLVkf6oQ3FtWNFfunM0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a3a462\\-cd4356bd\\-e11f\\-4296\\-9b6e\\-f057a7e2ae5c\\-000000[\\/\\\\]+BsZapmCB5kf65Vtu2IhXoyY\\-qj4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b211b9\\-381f5d4e\\-9f82\\-4153\\-a7e3\\-f9fb5bb57848\\-000000[\\/\\\\]+z7oEdWswR26\\-92VV5qVnw2fhUKI\\=394(?:\\?|$)" + }, + { + "hash": "901d690d9f699689cc2c79ae8e9d2be8ed5010d6436f4d3ad2a890503e6fdb30", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bee35c\\-2d5667d7\\-cae3\\-48b3\\-89e6\\-b0cc4a29d0ad\\-000000[\\/\\\\]+W3fTnVgKm_N\\-ErlTwhFQPtxG4UY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a454af\\-b0d8ab21\\-cef0\\-40ef\\-972b\\-e6a0263869ce\\-000000[\\/\\\\]+DLu6RUjgU\\-X0zb1Vl_TN8F3H3NA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca0a24\\-5ac54200\\-49bc\\-4b1f\\-90ef\\-84f05120900d\\-000000[\\/\\\\]+jlP5iIEw9LfVrD1fSITqX_Fvnnc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a18be4\\-d258ca41\\-dd44\\-4284\\-be9d\\-77d1e45b7168\\-000000[\\/\\\\]+AdQJT1DnszWEKMAtsy9\\-PEuA1rM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245939cb0\\-2fa07394\\-215e\\-4e87\\-8ce5\\-2ab9e14b0ba9\\-000000[\\/\\\\]+w12l9s6xmb47SNeIeviMhvRUH9w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afea1f\\-7a7905c6\\-e9ef\\-40f9\\-8341\\-673765451573\\-000000[\\/\\\\]+Y550yVGybaB9EGGIbmZpYCGVfec\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a325fc\\-48693fb7\\-cc54\\-4d45\\-95c3\\-ce7ac2a5dd75\\-000000[\\/\\\\]+DaN0mn7itdDJ0BPOKCXn_ZC5KJk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245779f47\\-f1f4a1f3\\-eeb2\\-4d67\\-bd79\\-cc3aff8c5134\\-000000[\\/\\\\]+Wt6U_LgFxvXjS\\-rAlgeWbDY5WTo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584c6a0\\-74c5f0a0\\-3765\\-4b26\\-94be\\-e22b80cd2dbd\\-000000[\\/\\\\]+COMkcIxoJM2qgHVtTAzugafgNFc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596f077\\-b704abe6\\-7723\\-4380\\-adc0\\-cf2115a98bb5\\-000000[\\/\\\\]+9T_OwWSzuBLRREzXj3talektQMY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae1342\\-953cc5b2\\-d4f2\\-45b6\\-a4e5\\-ca9ba92917f1\\-000000[\\/\\\\]+_VsJ5hmxaJS1rZAlmsmaTUCUI\\-A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457be025\\-76aeff2f\\-e1b7\\-475c\\-a100\\-95f63a644729\\-000000[\\/\\\\]+VL2bnhbQxU1mcbaE3M_OY7_qgbM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb234c\\-7e20b6d4\\-30c5\\-492b\\-953f\\-1a4ba7de1314\\-000000[\\/\\\\]+h1rMVhByVjdvQYSIK4fAdd0E4Ro\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad0a36\\-3ff8e55b\\-bbce\\-4985\\-b43d\\-356d50f415cd\\-000000[\\/\\\\]+CcwJvxP0rCkB_fOX4KvlghcnZ9g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6c07f\\-6f4354ec\\-0945\\-4f50\\-8f17\\-40613d5f4110\\-000000[\\/\\\\]+DCPoKwr5yIovPpHsm12R7lxNTaw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b29a70\\-3db5e273\\-3591\\-450e\\-a769\\-3a1320660bcf\\-000000[\\/\\\\]+g\\-O08729CG7lXRqDmyaLQsoKyLM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abf9df\\-0b82265b\\-b23e\\-4175\\-ac7e\\-644877ff6130\\-000000[\\/\\\\]+fnoLL3Exf5WdXCVui5W0Q6kfZNM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596be25\\-3bb8d294\\-9900\\-46a9\\-8126\\-900aaee2430b\\-000000[\\/\\\\]+lm6bl0AF0w8zwjVrK9Ku4Kow\\-Wk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459c7d15\\-7f1d8772\\-5e09\\-42d9\\-883f\\-9c828ae4f172\\-000000[\\/\\\\]+PzEGFmlmCaWTbHWQXv\\-8waN8Pl0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b46385\\-8876bf04\\-ab00\\-4ae5\\-a6ed\\-04022bbaf20a\\-000000[\\/\\\\]+lCNw_ybsDPNcEFOJcW3VFOP4oVA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5afe1\\-c9a9464d\\-cf23\\-414d\\-8848\\-615d1ea5d5dd\\-000000[\\/\\\\]+mdo8DD2jBwXdnmHPes15IQ0j6nI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f4d4a\\-8afcba5c\\-21d8\\-4ef0\\-8c00\\-e7c44215e307\\-000000[\\/\\\\]+cswbe7EOTyuvnjb8xo3q8kbPvOI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579b173\\-296295fd\\-8902\\-4925\\-8479\\-e7a8e70c57dd\\-000000[\\/\\\\]+N\\-_lz3ZO4HLQbjL63DDSuf4LAYQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458292e1\\-1e84cd96\\-3ee0\\-4bea\\-a923\\-a96646d50b17\\-000000[\\/\\\\]+kzSpEVNYiaOqhZkUq9lMcYbmYHE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f0d21\\-41b9254c\\-185c\\-43fd\\-a9e3\\-6a5ff76484e0\\-000000[\\/\\\\]+eoUyImaE2ZqWngCJTxTWRLrl\\-b4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b17548\\-889efa7b\\-a087\\-4c9d\\-a189\\-db3251186224\\-000000[\\/\\\\]+G4BsSiRuYv7DLO9bZQWoXwSdTBE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b9449b\\-e6714b32\\-b0ee\\-4025\\-8001\\-d4270d07f7ec\\-000000[\\/\\\\]+pS3\\-3xq8x4gSspxg3NxIK4sd4FI\\=394(?:\\?|$)" + }, + { + "hash": "f9a3cef0efad65491b7cec44d23fa209f68e2f6453646428d38ca77bf60fd245", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b777c3\\-5feddc63\\-9ba8\\-4130\\-bf22\\-f3733a2a66e1\\-000000[\\/\\\\]+l2KM3WPGleYS8WcIXCN\\-P9yjH9c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584a939\\-3a95b741\\-b9e6\\-4349\\-9c17\\-5480bbfde87a\\-000000[\\/\\\\]+HeWGUB181SGTJVQNbNV4auQqbzM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566a1f9\\-ad73ba67\\-f3a1\\-421b\\-9196\\-6120398e7993\\-000000[\\/\\\\]+OzA17Gypl7_tFMh_zwnLi02Xbqo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5e639\\-28598a2d\\-0c6f\\-41a5\\-ae25\\-5a3301dba370\\-000000[\\/\\\\]+YRCC3sHsYQ_Pa3\\-23Rr34cjneZ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576ce14\\-c203ddd2\\-4c0f\\-4267\\-8603\\-4668d66932d2\\-000000[\\/\\\\]+kpqOxmMD179yNgj8oLjYOTKYJnc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582cf74\\-18145f16\\-f713\\-49eb\\-a50e\\-3665aeaca97f\\-000000[\\/\\\\]+NU1UVf4Ru4dTU8YCkcFaKCbmRd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a8c994\\-b285d88f\\-ebde\\-4cf0\\-959f\\-30b24308afe5\\-000000[\\/\\\\]+nD68Tg52Im4e5dP5Mo3jSlYpaBA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457dc4e5\\-23c4ae59\\-2a7a\\-4c0c\\-91e0\\-16c3b8177085\\-000000[\\/\\\\]+7e3JaCWpKZe6UgnHYOcz5J4ltfY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595593a\\-aa07b72e\\-b0c1\\-4406\\-b627\\-c1a9807c72f1\\-000000[\\/\\\\]+QgH4XTneqtDWdH\\-qrbHllfKLSDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bedddb\\-5f841cea\\-4655\\-471c\\-b36c\\-c9af72d02e1d\\-000000[\\/\\\\]+o4VE5ha5yLA_NGbs5Q_Kri8\\-doo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a053a3\\-a8d72dad\\-cc2f\\-44a2\\-96d3\\-f13b527ad923\\-000000[\\/\\\\]+M_wAiDOqwIb_syzOFKYIhMvzq8k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f0ed9\\-2cb03034\\-48e4\\-497e\\-a352\\-b706e87f5129\\-000000[\\/\\\\]+hE29Ipl1o4gSuAIx5okC_EEW6bI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577859c\\-add502ab\\-37fb\\-47d9\\-956c\\-16707ae97842\\-000000[\\/\\\\]+qXukIt61hY_akWJkp78fPiYQRD0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a8b268\\-ff975783\\-10ba\\-4f66\\-94c0\\-5b4b10ccee30\\-000000[\\/\\\\]+lJwMEz5nNgKV2po22OJzrcEjpeQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e951d\\-f315b243\\-317b\\-4c23\\-97e8\\-9a12cf4bda92\\-000000[\\/\\\\]+EYUCx7vzTLjhT0YLiB1KrrBNv8o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a10369\\-846be085\\-6e56\\-414e\\-8a9c\\-b03a304c78dc\\-000000[\\/\\\\]+Xhi3jpojxXcy3CORKioGu3evFvU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6f2cf\\-91c4040d\\-1426\\-4743\\-b467\\-8ea0af0fc9d4\\-000000[\\/\\\\]+22dhjJ_477Zi2kWgUbH2OvUUUU4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cc5b5\\-bccc9c76\\-97ac\\-413f\\-8c1d\\-9df2495e420f\\-000000[\\/\\\\]+RNThLLYVJd9Hw0kM9mbwZN3YCuc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245611825\\-1247caa0\\-6c76\\-4491\\-8cfe\\-c17cb02e1cb7\\-000000[\\/\\\\]+1VW\\-O\\-rCeZazQLo9mZl1_RjVpJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459a9c0d\\-102da212\\-4f62\\-4883\\-a1f5\\-635b6bf983ff\\-000000[\\/\\\\]+BLD_NutlYgjXpjMnueE8AhSdGm8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d990f\\-76723f58\\-4a5d\\-49d1\\-a842\\-4d0dccd07c74\\-000000[\\/\\\\]+J1SzETMeujggBcYFISPmKFMCroU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245993ef1\\-aeda992d\\-411f\\-4d9f\\-b545\\-2f3b0e687280\\-000000[\\/\\\\]+qMCVijKbExab_60\\-4HpVSaZtBGw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abdffb\\-dd28a50e\\-e55d\\-4bd5\\-8099\\-66f0ff11e671\\-000000[\\/\\\\]+G3Pzx3cAFFf17\\-n27yN\\-fohB7\\-Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c3fc8\\-398ede40\\-f45e\\-4013\\-95b0\\-17436275c54e\\-000000[\\/\\\\]+ryiNbWTVckkIeE0F6TLpPQTNZv8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6cf0f\\-1756fcd1\\-3878\\-485a\\-bcdc\\-15b7850aef8d\\-000000[\\/\\\\]+pkat5WaOwpD9zi9dML7omQcZAj0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb87cb\\-8bc91382\\-5152\\-4c69\\-9b7b\\-2ff022f3e51b\\-000000[\\/\\\\]+inoVokvr3NDmSMRoFskxA5fgAl8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570a40a\\-12bf2cb3\\-af94\\-44cc\\-9d4f\\-d3b1c454e00d\\-000000[\\/\\\\]+yw7iCA0A0SWFHwj2T6IB6CQu1p0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583be65\\-f2246875\\-5fa3\\-41ec\\-ba0e\\-dba15408c72d\\-000000[\\/\\\\]+SXuOPwchYU9NPzmXZCW6m8hecfg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c6a8d\\-41e08e2b\\-0523\\-4a13\\-b902\\-89735d30da76\\-000000[\\/\\\\]+0xk4PmZ1oHJg2Sfrra4tbuxjrV4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245675246\\-45cdab4d\\-cbc2\\-4fce\\-83e3\\-02df2f6fc229\\-000000[\\/\\\\]+ZGWzrMXvfEcyWJUDQhsjovFLIhw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245853ec8\\-a9c8366a\\-373d\\-44e3\\-b477\\-503f5641e6cd\\-000000[\\/\\\\]+7jOxsTuALnL3FTOsR16kR\\-QKHg4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf71e1\\-dd966059\\-1179\\-45ba\\-b5a4\\-11836e123ebe\\-000000[\\/\\\\]+eX\\-GSCHsjtAWXexmNHIQ4hhlGwo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e0d14\\-a0a5c48d\\-5ea0\\-45e1\\-8546\\-09d311576ca2\\-000000[\\/\\\\]+JY0v3TbwrNqWthhd9Gy87nrHvTA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c35b1f\\-69ba86d0\\-1a65\\-4515\\-9a35\\-1481d887137b\\-000000[\\/\\\\]+A6x6naHJyXLEwwKBNm0O9Qlmsro\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582fd5e\\-ec46c07b\\-1f22\\-4cf5\\-bbc0\\-c4e05c413c9d\\-000000[\\/\\\\]+fYlrP17XgeioCOd7Z4Zge8uYTJg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e07f6\\-43f306f3\\-d381\\-4446\\-b8ae\\-22eac71ffb3c\\-000000[\\/\\\\]+ci7GH6eGYzZYqXmJ6JYgI_xqL30\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e2711\\-e1bfc721\\-66ac\\-4475\\-ae86\\-b33c3fda8a75\\-000000[\\/\\\\]+omMaNIEZax6MCOAcWnH5TRZ_w50\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c14f8b\\-85089a6a\\-2023\\-46cd\\-b6bc\\-0321bf6958c4\\-000000[\\/\\\\]+WhabzNh8hinx\\-UMi80FS4MXPdag\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459130cc\\-ce6c8ad3\\-4629\\-4d60\\-ad88\\-907a2598d79a\\-000000[\\/\\\\]+0IdwsWCOb\\-6orWOuWqwj73nJcXg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c82770\\-6a6468d0\\-42dc\\-4cfa\\-ba57\\-65131cd71f25\\-000000[\\/\\\\]+XHCX5w4CRRbTPjVqngb0C5hKdEk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5a1c0\\-3e9ed5c2\\-c5f2\\-4e05\\-addb\\-63cd904c0a99\\-000000[\\/\\\\]+Wi8bAusklqDbLzBbgmhW82vRIA4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afa23a\\-e52bae0d\\-3ead\\-4e55\\-9411\\-369a47070248\\-000000[\\/\\\\]+hVWjGdJUOOx8oi4saleNGtufg18\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb7b75\\-8c2ce80d\\-a543\\-4141\\-aa84\\-bf4c5fce4a0d\\-000000[\\/\\\\]+IDMA\\-\\-hG\\-\\-WfKc4CmUEOj35K06g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c38c1b\\-f0fbd859\\-91c9\\-4d58\\-b3e5\\-5b81a1746e3b\\-000000[\\/\\\\]+kaUbwPT_RsDcp_GjgxbJOimItIc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457145fa\\-d9e2b8f5\\-5e46\\-471f\\-b6f7\\-e7873654c268\\-000000[\\/\\\\]+qK7NkR9PK_8NngbjG163J2EIVnI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459120f2\\-0d713b52\\-cb3b\\-43a5\\-b1e6\\-ff52d6433fe4\\-000000[\\/\\\\]+WbLIAWuzHmOicpSd_rEmvnjLAis\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459572f5\\-9d87669b\\-2af7\\-4b1b\\-a771\\-db230e3a60ae\\-000000[\\/\\\\]+daJw6lbLonLv9au7tasWo1\\-T_d0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8a303\\-f247245c\\-3d0d\\-417c\\-ab63\\-052b0e1c37dd\\-000000[\\/\\\\]+qaSV6lQBtZyBItChZnTpG5Vx3MQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570eedb\\-d660d921\\-bd7a\\-46ce\\-92cc\\-f2a39cd96e67\\-000000[\\/\\\\]+XHPQ042KTAS1ym7acnUqwxvzxsI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245771528\\-9cfa7a15\\-988d\\-4a18\\-b698\\-a673599f6446\\-000000[\\/\\\\]+m7ThDy6PL0HdCemwf80NYRgX_7I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574eb45\\-5fd2bc6a\\-cd9f\\-490c\\-813c\\-0d9d45cec12a\\-000000[\\/\\\\]+qCX_kIk4_pHrSb\\-TwSCIlgX0Uc8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597581a\\-2dd44fa1\\-57de\\-40b9\\-a415\\-e4a4cf9bc815\\-000000[\\/\\\\]+KWDmDThrROyMxfLuWfrweh6zgVM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b3d7c\\-c751a5fb\\-b5ba\\-4543\\-bb11\\-25240ab039ec\\-000000[\\/\\\\]+j1dknQrcMoukGwHFm2OZtoOUdYo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245872a1f\\-889d8226\\-f1e7\\-47fb\\-8bc3\\-c52748349bc2\\-000000[\\/\\\\]+G6x3B5WEVAgAseS_xMu74cjdbEw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575f613\\-cf627db1\\-443a\\-4d78\\-aa60\\-cf55e9cd3b63\\-000000[\\/\\\\]+h_\\-9_G110SDcUxiNvTvOz6cGEGE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ec61a\\-a625b356\\-8154\\-4744\\-ba3e\\-005d3590939b\\-000000[\\/\\\\]+\\-8l6Vf\\-OnLuCwZ\\-VQM5hPu2tByI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459619e7\\-c0aa34e9\\-97e4\\-4848\\-9382\\-9790e3043638\\-000000[\\/\\\\]+iR1Tf734i7Ifl4G7148M8j8YB8E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584fc17\\-9130faf1\\-e31f\\-43df\\-ac8a\\-e64998777df5\\-000000[\\/\\\\]+C3fa1B0WgNiZ7dC4Ts3aTSmjTlc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245754713\\-e078c05b\\-e98e\\-4d10\\-880f\\-b4f04662b9dc\\-000000[\\/\\\\]+fi0bkdCM_JFqX834RZN\\-\\-82d3q4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245948de3\\-8820a5be\\-5b53\\-4039\\-8b43\\-a92f772a787b\\-000000[\\/\\\\]+f3buMS2JMIO_JJJQYeZvNKwruJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6a2b7\\-6c15f675\\-754f\\-4e8b\\-85a1\\-7be0051d2907\\-000000[\\/\\\\]+r9XCV\\-uKQIlk2RCZ7pT2zwlikIc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c05f05\\-24a6a7a4\\-4a76\\-4fd0\\-903c\\-99d21b65ba4e\\-000000[\\/\\\\]+qr2ylXzMpksRId_vdUqxmLPQQ5M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af5427\\-fd331cc1\\-9d56\\-4db0\\-999c\\-9d84ce68b9f0\\-000000[\\/\\\\]+lNsNupPFZ8ztIhDtHJLx5qI\\-neM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245810d71\\-7e465002\\-652d\\-4e93\\-99e0\\-fe16d0a44a4a\\-000000[\\/\\\\]+uxLtRYasLjr0Uv4DLuS9npx1b4k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b7885\\-dd1f13b6\\-4224\\-4461\\-acf0\\-706d4a6f4685\\-000000[\\/\\\\]+AhpMd4fT_kcpNQcXp\\-XkCSTmuow\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a405c1\\-8b3c0f2d\\-68b8\\-4727\\-be3f\\-19ade506ac1d\\-000000[\\/\\\\]+ZAQhhI_gCujs3xGursD4Z6cOxyc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924567128b\\-5f2b9938\\-831f\\-4f04\\-9d05\\-718ac6f997a8\\-000000[\\/\\\\]+tjHFnMmFjYAW8WpnHpBk0dsUqLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bc76b\\-230d4bc8\\-40a7\\-49e6\\-8046\\-4e549477704e\\-000000[\\/\\\\]+UqRBGCUuF1k\\-6O\\-Lrv3TcLp4UTM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245805211\\-bcff2342\\-2d24\\-47d6\\-a53b\\-e1e2cd6a27da\\-000000[\\/\\\\]+7kNLno1x5VLTMALbKhWJ\\-UJ4jb0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245825b43\\-435e1e96\\-2bdd\\-401a\\-b6b4\\-dc0e6bc13441\\-000000[\\/\\\\]+\\-0XTySpxE1fBNDgogqWgrh97hIo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af3ad4\\-fa4f711c\\-df96\\-4429\\-b755\\-437660aaf102\\-000000[\\/\\\\]+MkQGvytN_FqOl6vizrXTy9KFtHo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577790e\\-ddca7dab\\-86b2\\-432b\\-869f\\-1419ac84fa38\\-000000[\\/\\\\]+sBacrMqzhszWYz8RJCogS3UB9nM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598f37c\\-f4aab62f\\-0b4f\\-488a\\-9463\\-edf3e29875df\\-000000[\\/\\\\]+6WEU3fK\\-uq6_KzZC01kDh75i3tI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459928ba\\-f81280ed\\-0749\\-4bf5\\-b43f\\-812147f03e0d\\-000000[\\/\\\\]+4wTDfoSo0a0Rqct10j194XD5kbE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459743f5\\-493a5526\\-bf2c\\-494d\\-8471\\-2c01e5753500\\-000000[\\/\\\\]+ndZ36qQLLLPXIipAZQeFzxLn0uU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e3f08\\-ecc8268f\\-9509\\-4c06\\-af2e\\-5270d3122ff8\\-000000[\\/\\\\]+k_25CRF3xiGgnw3Y4RCewFCZOTM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a93ca5\\-c24bb8a1\\-2757\\-4fb9\\-85a2\\-9de3cd0e89b8\\-000000[\\/\\\\]+WfewcIKbbfMk5kAklfinz_dnzhA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245771528\\-9cfa7a15\\-988d\\-4a18\\-b698\\-a673599f6446\\-000000[\\/\\\\]+FjjUOpYzTTRhJyuv\\-tWl\\-MryGJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b41e5\\-3ab9ead1\\-1c54\\-484f\\-a9d6\\-2d3c0cab80cc\\-000000[\\/\\\\]+r2cCF7xHESz2W58pT97JzBAbsvU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572b7be\\-d3b30543\\-acab\\-46b7\\-b11c\\-f9713fff44c1\\-000000[\\/\\\\]+n3\\-Z5NG4Fu5HL9utAPJLkqw6dwU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245796d9e\\-cc097cc6\\-e8a3\\-42e9\\-ad65\\-67669f350143\\-000000[\\/\\\\]+2\\-B\\-YW6JGGa_wPgA91j2jPLA4aw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8ad13\\-6adc74d3\\-76d6\\-488e\\-a5ab\\-ff7e81ea32a0\\-000000[\\/\\\\]+ctHYXkFrN7rCeO\\-NpMwgaQsyNwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c26c6f\\-cdb228a3\\-90a5\\-4aa5\\-b69f\\-1f810a6e6ba5\\-000000[\\/\\\\]+oxBZkxiWmVEDi3Oeq\\-U3_z80ozk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a60efd\\-e1d21fe0\\-6edc\\-4869\\-b601\\-847feef3ccab\\-000000[\\/\\\\]+pDlI6CGIwmZ0dF7HJEoIFG26TSA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459c9d52\\-c9abf19e\\-e28d\\-413e\\-98b1\\-12a526d2970a\\-000000[\\/\\\\]+j\\-Md5bcQvfX1B_D5SIMNGmnFGag\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce15b6\\-3ff85d96\\-919a\\-461a\\-8d82\\-1b4f33a4fe35\\-000000[\\/\\\\]+l1g_AoWSUbyt5PovE_zV9EBZWOQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c68a19\\-73b3ab1b\\-c3e0\\-4d3c\\-abfd\\-a5715120db60\\-000000[\\/\\\\]+SCWjej5un3JIRpEeZ6BG3c82we0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457b689b\\-e4c9bab0\\-2aef\\-4586\\-b5d1\\-1517fb385dca\\-000000[\\/\\\\]+xLcw95YVcWB3RzCHajzL1gNbu3c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b65748\\-761105b5\\-61b6\\-45fc\\-ab7e\\-25b3e6a5bce2\\-000000[\\/\\\\]+O8toDKGA67YC6fpK3fWmgxUrbnM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab4397\\-616495b6\\-aca0\\-4f75\\-81af\\-ade3a7bd9b99\\-000000[\\/\\\\]+Qeuv9fbO173y2bmMw\\-PD73LTAU8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a9f4f4\\-7672cd4f\\-9c6f\\-4656\\-b32c\\-8d93aa9e6a46\\-000000[\\/\\\\]+LGhmo6HOlYhIrw5hHVzDQMa3\\-bo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245837042\\-125f41b9\\-1fcd\\-48d3\\-b6c1\\-53cafe8155d1\\-000000[\\/\\\\]+y8ft9ATFESLF_Oug8XBCxiLRIwU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8fa19\\-1fddac00\\-98d5\\-4584\\-ad38\\-2edd02962732\\-000000[\\/\\\\]+F11sCKHXXlRDs3oCUxbMEtOthUE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c937da\\-44161fde\\-dc62\\-4021\\-ba27\\-ea231a83268d\\-000000[\\/\\\\]+Kf27Snb477pZHXH24fLkKtAWvE0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245750f63\\-225cbfcb\\-99b7\\-4fb7\\-9037\\-09699121b529\\-000000[\\/\\\\]+uzIatXvON1cQJ9\\-yHhdK7_dqs6M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abee10\\-89057a7b\\-268c\\-48f2\\-bb09\\-4f35c63f6742\\-000000[\\/\\\\]+rJTkzJZBVikYbvLlIjbivay7\\-iE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d08b07\\-bfb042e7\\-817c\\-4327\\-b660\\-c98b9c5fadb2\\-000000[\\/\\\\]+ivIw6CVbY0Z1D6_LHf84Aw\\-pkts\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6b3a9\\-19da5df6\\-4f46\\-4914\\-98be\\-7a6c46540801\\-000000[\\/\\\\]+Vfa8Tu9AHtVMb63BkRSplnXpvbY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c23b2\\-b781b278\\-dde1\\-4f20\\-8b56\\-70ca33345a9e\\-000000[\\/\\\\]+KojxASoiVD8fxwg\\-MsOhwpobFeM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c4d32e\\-c55c1d98\\-122c\\-441d\\-a307\\-a5de1510ec14\\-000000[\\/\\\\]+11ODxcrhiWwCE6soxk8cDJXiu\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bca5e\\-4c29cccd\\-9419\\-47c0\\-8762\\-de728e5d09fd\\-000000[\\/\\\\]+dVyfQYfNUy8nyoM0iGNvX74dH2Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b635d\\-9079b13f\\-db6e\\-4a5d\\-a4f8\\-be606c92c8ff\\-000000[\\/\\\\]+JPCGHiQ7SzI98ayyZYyRsynj2TY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924599a93f\\-6565f66c\\-3a55\\-45b8\\-82fd\\-a4b160f174c4\\-000000[\\/\\\\]+7sgk\\-LCciOifarVhSYh6sxaQsEI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af2f5b\\-38a4dc76\\-71d8\\-4d39\\-9021\\-0dc3e65b5a4b\\-000000[\\/\\\\]+CEphEA7RMLXxsLiRpd2dH0wrSSs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457260a4\\-00bc368a\\-7fa2\\-43da\\-892e\\-d35bad6fb5f3\\-000000[\\/\\\\]+9u8oqU7nzLCEWfoi1FNWcPqcOSg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abf0ff\\-4b19b704\\-453a\\-4d77\\-a806\\-c0911115d479\\-000000[\\/\\\\]+Cf6L\\-DSlIqzA4NBrAszLC5Ca3NI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b99e8\\-ec67ce44\\-e1f8\\-49d9\\-94db\\-82df9ae05c0c\\-000000[\\/\\\\]+2Yr7GcBUba5G2TG99XVPdHYunQ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c2f26\\-24174d9d\\-9113\\-4956\\-bf65\\-cdef81c51b20\\-000000[\\/\\\\]+ncW0sTfvd45MklXkERZJAiGkkWQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb87cb\\-8bc91382\\-5152\\-4c69\\-9b7b\\-2ff022f3e51b\\-000000[\\/\\\\]+c67hOwuLpTKxdYv8_FWLCgyl81I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e951d\\-f315b243\\-317b\\-4c23\\-97e8\\-9a12cf4bda92\\-000000[\\/\\\\]+Q1ZdmHSLHguIk1zUdbp8Ru5Qu\\-8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ceff6b\\-364f9709\\-b64b\\-45fa\\-a145\\-ba2f6414ee68\\-000000[\\/\\\\]+fM0OctAJ5kQ7Gc03cplDR7ETxDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b79dd\\-669acfe7\\-4caf\\-4740\\-8d23\\-c7968b10c244\\-000000[\\/\\\\]+yzmq0Vwb2FIm9eyUHgg\\-rZxPdR8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e3a4e\\-f444b76b\\-aab2\\-418f\\-bd8e\\-5743de2fdbe9\\-000000[\\/\\\\]+3Noetx6X5kPJPyWY_9\\-X_xvWK7s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b00cd1\\-1919db2b\\-addc\\-42d1\\-a0da\\-0c62c36b7280\\-000000[\\/\\\\]+INhDpvUxU7CAz2t3uFi61uLq\\-ow\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589bbd8\\-f61193aa\\-06ae\\-4e1b\\-a74e\\-f0b69a29a7d5\\-000000[\\/\\\\]+q\\-ed9cStx\\-3pvxniNOOJzlc4SwY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924561c442\\-b6f77c98\\-0f6e\\-4740\\-bbb5\\-c6ace8df2989\\-000000[\\/\\\\]+CJ_8V15tPl9Ei8YdpqPBVGrp5ZM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245748efc\\-a5904d81\\-a16a\\-42bd\\-9aa3\\-27fb7f5f0fe0\\-000000[\\/\\\\]+mmShfmbFruBoRSwSEb5elTAP\\-Tg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d9925\\-0cf51b73\\-0dbe\\-4c77\\-b5f7\\-00652b6ddd8a\\-000000[\\/\\\\]+VUmI0RY3ORGUMNUiKmWsy6KIBW8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ada0b0\\-6cf4e34a\\-d76c\\-49e3\\-a82d\\-ab09457c171d\\-000000[\\/\\\\]+_k8m\\-XheoRRgvsoPR6fKH6lTM2o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7716e\\-2498d5ec\\-8759\\-4adc\\-84a7\\-8d62f60ce8ac\\-000000[\\/\\\\]+CckrnYaBizlShorB0z_DwcAt46U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245673e47\\-3f539aea\\-619b\\-490e\\-9a1c\\-966a4c97b001\\-000000[\\/\\\\]+\\-rigU8BWQhsR05vpnOOTs7JGAuU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c65573\\-7098113f\\-ce32\\-4f29\\-874d\\-47f4e67ea310\\-000000[\\/\\\\]+gOaebV5gR3O4QBgW8MV8bSTglwo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a35263\\-827eef68\\-dfaa\\-4600\\-8310\\-36ad3ec575f3\\-000000[\\/\\\\]+juA\\-Va8cWUqrSHNHWehUMBjeR2Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad9bd3\\-d5b4355b\\-8fb7\\-45c6\\-8e08\\-9970807d5bf6\\-000000[\\/\\\\]+hvUOFUzFLuS8yvwdS9p7zINTOGs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aec3e5\\-aeb0906e\\-4f10\\-4b3e\\-adcb\\-44cd1b18c03b\\-000000[\\/\\\\]+m\\-BI\\-\\-oISZ087su_bl41O8pvKXI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4a31f\\-8a7731ed\\-1696\\-46ca\\-8481\\-f8e9b6d775ac\\-000000[\\/\\\\]+DRC8AgqMIiV_Tz04pwIio5FiOmE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c78ef\\-85f5d54a\\-19e4\\-4aa0\\-b1f7\\-4489ff24f32d\\-000000[\\/\\\\]+GgWqLKo7mVZ3jN\\-L1_zR3r8_1G0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab1095\\-935639a6\\-20ba\\-42b8\\-b201\\-460636522a88\\-000000[\\/\\\\]+vxk2kZZ\\-ilK2TH_UafN\\-XhXUu\\-8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ea317\\-b7fcfce6\\-dc60\\-4c7d\\-a383\\-c91501590620\\-000000[\\/\\\\]+O0zsmo6h9vNiSmLT85ePZFb5Vd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245978d50\\-bebf2180\\-30e9\\-4921\\-a20f\\-1c561b1d664b\\-000000[\\/\\\\]+tAN\\-f2O8kqs8iWnes3\\-PddrncLc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582e4af\\-70881c83\\-9f27\\-4b8b\\-a488\\-9a8035cc814a\\-000000[\\/\\\\]+HzslXayr4ed4kFlDidNhRkYiwzQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457b913d\\-5f0480c6\\-9ef5\\-4007\\-89fe\\-e7dba8bb0830\\-000000[\\/\\\\]+SuVa9\\-kNYNE_NbZwEVll9FgmhfE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af2535\\-95ac33bb\\-9f15\\-4e13\\-85f9\\-7573b09b6bc3\\-000000[\\/\\\\]+cHWsoC9iGOu4OU9MRKdPzFWpkh0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c32e19\\-a555484b\\-bafe\\-4261\\-9bc4\\-241db9cd6b7a\\-000000[\\/\\\\]+JOKuBspWV9O936HDD_ZdHcXTbL4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ba9610\\-56bbbe1d\\-82dc\\-4cc2\\-b44b\\-5d9ef4b0a589\\-000000[\\/\\\\]+VPSnL4w8tlb2ONSI0P9pS6ZAAaQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8fde4\\-c404a3a1\\-e200\\-457c\\-892b\\-4e5fba5e3bff\\-000000[\\/\\\\]+PHdSPNULOW6r6KkS9Y\\-JTVj0M50\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924581c70c\\-85b9231a\\-de85\\-41f9\\-8bf0\\-ffa43f125ade\\-000000[\\/\\\\]+L0InoxkEOHq\\-LyjQmSgXB_l1aiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce094d\\-2b75c693\\-01d2\\-4ca9\\-b1cb\\-e09985dff6da\\-000000[\\/\\\\]+Qjac97Sv\\-Vg2dosiaKbVKZK\\-DW0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924592fedf\\-37167d06\\-707b\\-4490\\-b94d\\-155bbd2cae39\\-000000[\\/\\\\]+orpuTA1zWE0C4kP_tIZGEsAWgPg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b1d0a0\\-fee3e21e\\-aacc\\-4476\\-9976\\-84c4afba3ed6\\-000000[\\/\\\\]+FttReEEobr7mMAxwPm1AzfHdFXI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd9fbe\\-ac09fcd0\\-de35\\-4c7f\\-8c20\\-3dc81b27491e\\-000000[\\/\\\\]+MyNZ9Ox2egsrA7ziRC5OrL6Kwm0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245889c85\\-9fdc29bd\\-4f30\\-4a22\\-a024\\-72de09e57902\\-000000[\\/\\\\]+JFrcyIJqFWUDKC5HdPta1Bh5Qxs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c59ee4\\-0c026003\\-bf30\\-4b95\\-873d\\-27cae8b497cc\\-000000[\\/\\\\]+DGKPLh_t_atZZJ3OYeOZQfP4\\-0k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ba9610\\-56bbbe1d\\-82dc\\-4cc2\\-b44b\\-5d9ef4b0a589\\-000000[\\/\\\\]+cvuNcFGI4\\-quJxv\\-EgAcRibqEl4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b29ee2\\-be9f3ba2\\-c359\\-49c3\\-be9f\\-5279513f5673\\-000000[\\/\\\\]+wHWHTpQ2w20u\\-38JaTOdhnCTNLs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a42aa5\\-1c0f4d21\\-27d1\\-49cd\\-8b36\\-a19dc8bf263c\\-000000[\\/\\\\]+IRwy1wI\\-b\\-2RVzM0xhWMK73wiPY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afa23a\\-e52bae0d\\-3ead\\-4e55\\-9411\\-369a47070248\\-000000[\\/\\\\]+NhYxn7D17j9fmSAcE\\-A2JraB4XA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d034ac\\-c18e1ca7\\-693f\\-476a\\-9f36\\-d7924de34426\\-000000[\\/\\\\]+0bdGuDnbAvVWtrLNB7rSq_d1r4A\\=394(?:\\)|\\%29)(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245725c76\\-169d2be8\\-de77\\-4a08\\-b4f6\\-169dc34131ec\\-000000[\\/\\\\]+HTMvKuIaZbPYk3JQtXNDUDP\\-huw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b23b53\\-6fa2ea1c\\-46e7\\-43b4\\-ad22\\-519abc02651f\\-000000[\\/\\\\]+kSDz0A9qaXnyNXlD1p3iHw\\-20WQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c00963\\-177ce762\\-45b4\\-45c9\\-8ee9\\-f281162adb59\\-000000[\\/\\\\]+UYeM0WFRb_v2Lib8832F9mH6kRY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245662a24\\-99d40b63\\-7edc\\-48c3\\-b3a0\\-53fa62daa82f\\-000000[\\/\\\\]+ZRu0F_M_C3CO0CcTfkWpPRTQ\\-b0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aaec60\\-755e0780\\-1e31\\-45ff\\-a05d\\-cd4bbdbec535\\-000000[\\/\\\\]+6glvNy368DNM3dWL6ZYoAo9OblI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e248d\\-2a2ed23e\\-78ae\\-406d\\-9a36\\-e36b11a7824d\\-000000[\\/\\\\]+5llRLMhM_uBFEqWEr8m8mDbuWcI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afa40f\\-692cd044\\-8835\\-4c8b\\-8dd4\\-5d9eb394816a\\-000000[\\/\\\\]+wu0aJevzmkUpJVL6jM8UJSM_zCM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457fa7c2\\-13c07938\\-c276\\-445c\\-a2aa\\-8e4842a0291c\\-000000[\\/\\\\]+_sSoKB8CG7xMVEnuLGfN8rzvNPA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457719ac\\-f6969630\\-0f9b\\-410c\\-989d\\-4bec35e79fb8\\-000000[\\/\\\\]+n6DBrHgrs9xeQBdgQWgFDDWwxmA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e87cc\\-d505ff00\\-5d7f\\-47ca\\-a090\\-e0f91e5879de\\-000000[\\/\\\\]+lIj9_iSMkNjKboko0K43OPPHqiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a83cec\\-5b18a6a4\\-1d69\\-4df5\\-b123\\-d8bf2240323a\\-000000[\\/\\\\]+qd5uNPNTCO2NkrsBCpq4R5H9aXI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b06554\\-01dbde11\\-42a3\\-4cf2\\-812b\\-1d1a3b133e16\\-000000[\\/\\\\]+stxBNJzq0nM6xEthAg4KELka\\-Go\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afbdf8\\-5f615efb\\-2e33\\-4304\\-a097\\-8b392bb30739\\-000000[\\/\\\\]+5l8I9Bl7aa7L8aIaKDwiAg4pEsE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9413a\\-9f91132b\\-ef31\\-48ee\\-8930\\-2b87d2adbcf5\\-000000[\\/\\\\]+b_F3FtUFoGz844O7HU13wQMhdNA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245940da3\\-f4ad1827\\-6099\\-47f2\\-bb29\\-89f75a3c602f\\-000000[\\/\\\\]+ie0I6mk1nplN7QBj6P6Ztg\\-kzQQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f8b5e\\-47f8c18c\\-eac9\\-4abc\\-8fc0\\-2b2fa9e42119\\-000000[\\/\\\\]+RdRLX0hrqPiNZVFDPK6Y\\-p1ay0w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ea71b\\-9994c5b9\\-965b\\-4ce2\\-8013\\-7667f71bd121\\-000000[\\/\\\\]+e3tacGKN4eZQ2ZLUPFzdb4f6XGE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c900a5\\-31fe1448\\-9bf0\\-4613\\-822b\\-d7bef63e49f2\\-000000[\\/\\\\]+FiOGzOHk2BYeZ0VSEXc2HZudUio\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570f51d\\-a86996b5\\-1aa6\\-4513\\-b494\\-b333081fa885\\-000000[\\/\\\\]+CQ4JEp\\-VooFdaLFDabAAcjffJl0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245955676\\-988bc325\\-d941\\-4b0d\\-a264\\-81ffe33c0df9\\-000000[\\/\\\\]+BsA47Asupp2ysqu1iIY3hqnriv4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245754611\\-a6380832\\-efa7\\-41cf\\-97a8\\-a7baf72252eb\\-000000[\\/\\\\]+8AVMqGzzlcnxsQ6O67eLQPic9ZA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245692fd1\\-587599ba\\-1e24\\-4861\\-a0e5\\-483f44fc327a\\-000000[\\/\\\\]+6WXopePSUqqGAz5\\-mqpZ0jSYP84\\=394(?:\\?|$)" + }, + { + "hash": "2c218619943fa7e9063ba385f78fd43cc8b8ece07d61cf7464504f60672c99a5", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac1cd2\\-000af7e1\\-5845\\-4bda\\-ae9d\\-22b3004cc1e4\\-000000[\\/\\\\]+zQXhaw5iI4vxuVtqFm1NQyaZHOQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b814e8\\-7a98e173\\-8179\\-4fb0\\-b10c\\-a8af4e170f1c\\-000000[\\/\\\\]+LXJu9T\\-KapSVaRK5\\-a\\-Xj6jxlno\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456efd7e\\-8ad3580a\\-a9f0\\-40f4\\-912b\\-f1f7e68657ad\\-000000[\\/\\\\]+JLB1pobGR_NpTbZoxetHYBtwwus\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aec327\\-caf7f80a\\-5e64\\-4adb\\-a040\\-fd7e0969dbc4\\-000000[\\/\\\\]+DZ\\-5pkX7q9pd7PAQL02rGbWr1E8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b20852\\-2eddd360\\-806f\\-4220\\-ae0e\\-667db76f8f7f\\-000000[\\/\\\\]+XZjdq1xg4ZftRz3\\-Yvk16TsWi7s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924563c124\\-9f807263\\-90a8\\-4892\\-8f50\\-5c1b2d967393\\-000000[\\/\\\\]+8QsfegUu3brHMaJSMybZpBuX\\-PM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bca35\\-48ff9399\\-9f0a\\-4b50\\-b4f0\\-b5a92c1471b9\\-000000[\\/\\\\]+5AdIrYI_T\\-C8UBNx7_20orbFr9o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924586e0c8\\-723518e7\\-ed40\\-4627\\-aeba\\-973916f75285\\-000000[\\/\\\\]+cCCdZhK4DqSeX4teozddlwELOQo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af3ad4\\-fa4f711c\\-df96\\-4429\\-b755\\-437660aaf102\\-000000[\\/\\\\]+CvjQ\\-GM6h6hCd4gELKLIsFNmz34\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac4385\\-1701f552\\-7170\\-4497\\-b3e2\\-63391ed5d07a\\-000000[\\/\\\\]+OF26EI259_VRbDkL4HXnFuWScTU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4e46b\\-e96601fb\\-b3cc\\-4c98\\-b9cb\\-c8d951127df3\\-000000[\\/\\\\]+SIQnO7MrJ0_eHc8N8Fvi4cZvCmY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458120af\\-ffb06b8f\\-a195\\-4d79\\-b1cc\\-4e79cc1fc997\\-000000[\\/\\\\]+RVssvpf9fTgKFJNIGuVzp00rN2Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d07bd\\-5f607eb2\\-141f\\-4db2\\-9581\\-1cd4f426b2d5\\-000000[\\/\\\\]+9A7QDeWAHiW_oJipbzrFG6J5qqI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583a297\\-a907e774\\-3e10\\-4d99\\-ad8b\\-cf87285fb184\\-000000[\\/\\\\]+LzMZVDeIkZBIh3ZIWl\\-4N4QxLx0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb5985\\-fc9ecb89\\-ea83\\-4d5a\\-9647\\-e9dd6405a34c\\-000000[\\/\\\\]+2OfMMIory6KeBDCHNTGK19\\-Rh14\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ea3cb\\-04307274\\-98fc\\-4eb5\\-91d8\\-0993e70c63a3\\-000000[\\/\\\\]+VEcCQBQpKodaJRbF8xcQEqn2pAA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245663d58\\-806c9a85\\-9a14\\-46b5\\-a29b\\-aea65500d017\\-000000[\\/\\\\]+DjnjW0Ilj71NE_AgiMfzjzSg8MY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd98b8\\-8f2d1586\\-f977\\-4b06\\-9995\\-36c6631db2ea\\-000000[\\/\\\\]+MqxGRHXSzSUjilf3fvHFKTHWQe4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1a031\\-8a06ca01\\-8207\\-4850\\-b612\\-9663700e1316\\-000000[\\/\\\\]+0HwYV89YbQcs29L7Ltxwd7atQ9E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac2a02\\-2246dfcb\\-1231\\-4259\\-9a7e\\-ee04dd6ac3ac\\-000000[\\/\\\\]+87NSw0JdBlQSkdnfP35MMd85j2w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570b11d\\-ceeefc49\\-7478\\-493f\\-a1d4\\-fccc2aa95c1a\\-000000[\\/\\\\]+EQ9dolgqGeICw8AfvswkpdcKLcE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aeb404\\-742ae81f\\-c72a\\-4cd2\\-9f93\\-2c2c4044abf2\\-000000[\\/\\\\]+srTppMGGTfrwkFJgGIaPl9WAz5s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d0332b\\-3c234ea4\\-7c6c\\-4921\\-a985\\-a722ce50caa8\\-000000[\\/\\\\]+rABDR54aHhzuHrZbgc82JiFpR4w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245837114\\-a9bc4cfd\\-7465\\-4818\\-ae70\\-91ef0bae57fa\\-000000[\\/\\\\]+2pFLD4KAArVN01zdPhCxy9j8dbw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d2e25\\-1c7d18f1\\-f446\\-4dd7\\-aa91\\-bade80516b03\\-000000[\\/\\\\]+OeQAN\\-AcwJ1k96cZOKA5laWd62M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc51f8\\-ae2d6ab4\\-e1bd\\-45d5\\-8f92\\-26303afeee59\\-000000[\\/\\\\]+d7d6X9rLjE6p2oLh3Qkt_xGLNLg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582ea29\\-32430ce9\\-81b8\\-4853\\-8d2b\\-a176cf9c3e8e\\-000000[\\/\\\\]+rqbHjgNRnTQ\\-\\-Y933Nho5kFdWPw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f0059\\-abcabde5\\-7c9f\\-49de\\-95ef\\-a5f2550670bd\\-000000[\\/\\\\]+KNzHFFi_BS4yAYMG1I5ijTbxeio\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aabd56\\-4da7b16d\\-33d8\\-4b0e\\-a439\\-a9be4fd87bb3\\-000000[\\/\\\\]+pCoRsJmRG8irYGTZsqgGqTPOvqk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb9619\\-f3bf0550\\-0d5d\\-4203\\-90fc\\-637dadefe462\\-000000[\\/\\\\]+mnYXb0X5QKrnprmh6zBI1hMVjcE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a78ce5\\-d164683d\\-c7d8\\-468b\\-8fa6\\-8121086f3639\\-000000[\\/\\\\]+ZnHWTtfUAl95PLZImi16OIIsyJs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e9807\\-a33e143e\\-36b4\\-4dd1\\-a677\\-444c1fb6bcbc\\-000000[\\/\\\\]+fkf8kVMEvtXfI2fjW7FIJdEdIuw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245744e3f\\-a15e6eae\\-a7a5\\-4793\\-b6a0\\-2e022282038e\\-000000[\\/\\\\]+MJ\\-I\\-XhXnDEN2N8f6ywc1o1Boqw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbba9e\\-1b0a2a52\\-08e2\\-4162\\-9b7f\\-bf1107f04b8a\\-000000[\\/\\\\]+rXu3pqtUxW9koMFX1bfvyq2Eo7I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d67c6\\-af50a48f\\-8bb4\\-406b\\-a49f\\-49e54b56120d\\-000000[\\/\\\\]+zmShHhS9Gnv_iCiuoVcfLFuSd4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457278e2\\-70cc2969\\-fb4d\\-49e9\\-a302\\-5d49391f27f5\\-000000[\\/\\\\]+tHt\\-jwI9O4nf5v_cW\\-\\-hcoEzVJs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e285f\\-7da503db\\-49eb\\-4b86\\-8422\\-e9ba7e472a64\\-000000[\\/\\\\]+F9FvLLvgTQBG_NFx3_aPDeJHyiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab0bea\\-a8343ebd\\-3af1\\-4959\\-9b36\\-49bde4532b4b\\-000000[\\/\\\\]+Tlw_KRjjat8SjmrezbHlEkaQeWY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245872a1f\\-889d8226\\-f1e7\\-47fb\\-8bc3\\-c52748349bc2\\-000000[\\/\\\\]+vzkI914juTtE\\-DDUaJ0Xzx_MKQw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd5010\\-9bc32932\\-a5e8\\-4532\\-8311\\-d4b1c90c12e8\\-000000[\\/\\\\]+NsRNcl7cBTABOwsWmrBte5C2n_Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459a77ff\\-5e9ba5e7\\-9228\\-4cdb\\-94f1\\-0aa60405845c\\-000000[\\/\\\\]+v4IIZ_GXN868ZEOgsnwWXple0tU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8fd5f\\-4917e905\\-4ba0\\-4ade\\-ad99\\-fe0d1fcbebe4\\-000000[\\/\\\\]+W7\\-QK4dTSS43bMgdsB8V_Ttrhps\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bedb14\\-59573d25\\-6c2e\\-4fc2\\-a4ec\\-c0507de34e31\\-000000[\\/\\\\]+Z34LmLrxxKUEmlsWZqVLIhv\\-zcU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a30774\\-c4833ddb\\-05fd\\-4190\\-a996\\-531af0bc6d77\\-000000[\\/\\\\]+2Jla1d8_HcNV91MxC\\-\\-\\-yukVw00\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be5f36\\-cd58323f\\-f529\\-4a2b\\-bfca\\-942b82b5a04c\\-000000[\\/\\\\]+2NSgolFfYGE4ZXNPeBAcsfzopGA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459fbb0d\\-0a76b755\\-d211\\-4cd7\\-a3cd\\-69629030d6ce\\-000000[\\/\\\\]+emLJkxbD\\-ERZRsLIKhdqMCxynZw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ace10d\\-e241faa2\\-a61b\\-47f1\\-af90\\-0bac1919c886\\-000000[\\/\\\\]+apb5B\\-XH__Uvml2alGcJJ5040Cc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594ad29\\-4f8e32a5\\-7282\\-40b4\\-bdda\\-ce44dd95a7c8\\-000000[\\/\\\\]+FiGkzEeyyUpTDHWyoELgQs5HHi0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cae4ea\\-2e482dde\\-fb30\\-4d43\\-b02e\\-776261cfba8e\\-000000[\\/\\\\]+N37iBSttFVoVGRC8EQJTH40BCe0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924571178a\\-9cf2ac7a\\-b003\\-4693\\-94b1\\-1938c44232d5\\-000000[\\/\\\\]+gjyyD00a\\-rYq1kFas33Uvd0\\-dAI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456abca8\\-48e4f8d8\\-cfd4\\-4053\\-aa7c\\-55ddc0413ee8\\-000000[\\/\\\\]+XPfSCYx0EfeMeej\\-R0vfpXQorn0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457fc2d6\\-bbb9c27a\\-c52b\\-4f63\\-9885\\-a5927f38b6bd\\-000000[\\/\\\\]+h\\-pC9lpDHU\\-j7jV1jDbUa_49usQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b05dae\\-a908fabf\\-39eb\\-4fef\\-ba50\\-f086fc6f44c1\\-000000[\\/\\\\]+gqsLXKQXOdGdSZ8RRDc8u1VTPeg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ead3e\\-600d31c6\\-6624\\-464f\\-976b\\-69cd5be465d9\\-000000[\\/\\\\]+Jhj\\-_mXKGzN_uCUWvIoWDuqH0\\-I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c840bd\\-89d358e4\\-1522\\-4440\\-9d7e\\-abb1b24249e9\\-000000[\\/\\\\]+c4FMDeMCnr69JyrStp_QMyEvIS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af2a5e\\-9d9ddc00\\-470a\\-4bea\\-8b46\\-2bf28d5efcba\\-000000[\\/\\\\]+xhUijSNC_8KU6TxqWnK4RjgrDzw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596e473\\-e18514de\\-1964\\-46bf\\-96e0\\-f7743bd64fd2\\-000000[\\/\\\\]+LGZCigAIvlYLdtytqQTi1mwpWqE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245853059\\-24979352\\-1861\\-426c\\-b8d8\\-4b91014f352d\\-000000[\\/\\\\]+mqgczBmjqCxWnxF7_bGF89Hzni8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae3d0d\\-a78217c2\\-c1b4\\-4025\\-ba81\\-d14f24f958c5\\-000000[\\/\\\\]+u33reduw4wuuKsHsWGGmarKssGI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ceecb3\\-95f1504d\\-ba04\\-4e84\\-b059\\-a934bc67a8e8\\-000000[\\/\\\\]+xn9oagZ_Nr21cBLwDXhTITY8lBI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae3432\\-c6fb50d5\\-03d1\\-4d98\\-8b1e\\-3d6ec8d44cff\\-000000[\\/\\\\]+bI95SwtjTUe1zR\\-kgqYw7zhafpg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245739172\\-c149659d\\-a395\\-4a47\\-ad2a\\-190bb9bb8650\\-000000[\\/\\\\]+2S4BGRFZ60DAOM3nfW4scEYrlkY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+noiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569b712\\-78cd2054\\-7d2f\\-44cc\\-a43f\\-1b3cf4f55460\\-000000[\\/\\\\]+45gJ4cTJP2DyJxz_dZRx2K49Wi4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459afc64\\-7f433de1\\-cde7\\-4a33\\-bb69\\-7e1dd4ce4a84\\-000000[\\/\\\\]+1XOfddmm0MkAP_jNdpHwytmzGJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582fa1d\\-842c1ddc\\-a2e6\\-411f\\-800b\\-91dfba924e0e\\-000000[\\/\\\\]+xkWW2rRzcGFL_dpvmBzcZKhtqNE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b2927b\\-ed80b3f5\\-604c\\-436a\\-b78f\\-4d39ef95ed26\\-000000[\\/\\\\]+uCwzKn2vW\\-5WaNG4JW8V9idtmsQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457281b2\\-020f60b7\\-64a9\\-4d64\\-921d\\-ff7c2f6372b8\\-000000[\\/\\\\]+VQRZy_arGJjg55oyWgvJTrLEa_w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bda745\\-7c14cd4d\\-79c2\\-420e\\-b62d\\-58ee458eab43\\-000000[\\/\\\\]+UP_EO6yRbvbj5TegUWK4DiXngNs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5f177\\-be377a86\\-0a43\\-4d88\\-9a54\\-f8bcd7723e93\\-000000[\\/\\\\]+2iwqeiE5ZY3K4tb2CdWaBJfCbMY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457babea\\-94c925ed\\-06b1\\-4406\\-a97b\\-a2ecf8f3dfba\\-000000[\\/\\\\]+lbwA5cKimN8Ve9Pw7zgvBYWUYS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ea5d3\\-053ee057\\-3b58\\-4dac\\-82ec\\-29d5701b9fcc\\-000000[\\/\\\\]+cX_ByYHuZWoL7HUE0rldMJoUgSM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924591607f\\-0cf9f804\\-b3db\\-4804\\-bf6a\\-3d90a72ab372\\-000000[\\/\\\\]+ye6fzhiz5ArxmSX1\\-Eb4rKR7IkQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b635d\\-9079b13f\\-db6e\\-4a5d\\-a4f8\\-be606c92c8ff\\-000000[\\/\\\\]+HiPQfF0tWXuIvmt5HZqD7rZYiMw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245794c6c\\-0ed0adee\\-b148\\-4dfc\\-b4da\\-211a6ba27bfe\\-000000[\\/\\\\]+eMlS0\\-Azd4dmsVwlBL7XKJNa9ew\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5552b\\-51cb5c1e\\-0433\\-43b3\\-a547\\-de49c84c0fdc\\-000000[\\/\\\\]+2_q5eE5F6rTszmdpu9NR_3mW9RM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458722d1\\-4fa255b7\\-ed1b\\-44d7\\-bc94\\-8d3148697e13\\-000000[\\/\\\\]+AIpDzzDiMbUn9Xc5u_LF4oGfFxo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bcbe05\\-966ddf98\\-bfee\\-49f3\\-ab33\\-0e209c6d195e\\-000000[\\/\\\\]+ouObHCGyv8NJqgTQbbLjxcpXZeY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7716e\\-2498d5ec\\-8759\\-4adc\\-84a7\\-8d62f60ce8ac\\-000000[\\/\\\\]+tKdIRawq_iY7mYleI_4zdNOKKeI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924599500f\\-dd61b4e4\\-841c\\-4344\\-86e3\\-05eb2bf1aa16\\-000000[\\/\\\\]+EEbdLRN74TUH5FQCcXq4xVJwD3k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245817c7e\\-d9fca2fa\\-f55c\\-439b\\-b220\\-436e8287f4ca\\-000000[\\/\\\\]+5GVNxh_1BX9E4954cZugHHRXWys\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce3ed4\\-38f0eb85\\-758b\\-4aa1\\-b7ba\\-9f43ff46d89d\\-000000[\\/\\\\]+OWWH9auNqRYakC4qn6LNBxDgCd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b2a0a5\\-f15ed749\\-287a\\-4725\\-b957\\-c77e5a185b61\\-000000[\\/\\\\]+VjvtwKCdTJomC1InUqdjiEqvvE4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a1fe8\\-f0e0cc4b\\-7896\\-4240\\-a2cd\\-0b99323c6770\\-000000[\\/\\\\]+riH0ESBKnIvmPWix781KZ4gaWBU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c05f05\\-24a6a7a4\\-4a76\\-4fd0\\-903c\\-99d21b65ba4e\\-000000[\\/\\\\]+Dx25oU\\-u00j6jKuahMMX6OxwuxA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459af2dc\\-32f82998\\-b6eb\\-4708\\-b03d\\-90e9cfa1f4c7\\-000000[\\/\\\\]+HjVE\\-hEvYA9xbvdQzOgIo5jrnm0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce15b6\\-3ff85d96\\-919a\\-461a\\-8d82\\-1b4f33a4fe35\\-000000[\\/\\\\]+eG2P7Hg63Vhlwa0TKDZ1JndXFPY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456163a5\\-e8623852\\-6550\\-4c81\\-a9c7\\-6c8c14084476\\-000000[\\/\\\\]+b_QnT1TuN_\\-Q_whDPgifrZCq\\-iU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c9e84\\-4c5dc381\\-c191\\-4123\\-8575\\-e16b824a553e\\-000000[\\/\\\\]+mQu3H9_ORM8qbw0Gd0xEWF303sE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af12a4\\-24c8e317\\-5ddb\\-4417\\-87d1\\-ae077b0f4413\\-000000[\\/\\\\]+tNOPC7rYpFtxkpMzh9oWl3tmq3Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924588831a\\-70ec097c\\-f7b3\\-4e96\\-9b52\\-5069088e5b37\\-000000[\\/\\\\]+p8mU8i03hgj\\-DfKJtZzCAC0kL28\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574ec9c\\-e1d2a467\\-c33f\\-44c2\\-a037\\-8fc568add893\\-000000[\\/\\\\]+A2A4IiMYqjgnXeGfpImZb54sCto\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c847eb\\-f6b2611c\\-8277\\-44b7\\-aee1\\-e9cbcaab39d9\\-000000[\\/\\\\]+X1w0R_VXPueQ_UDv\\-blidDvlcnc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8faaf\\-5dfc48c2\\-c464\\-4c36\\-b4c0\\-3abf7d34c5a3\\-000000[\\/\\\\]+Ubk1h1RnfaN5_dKo_m27\\-4Cct84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c37b8a\\-79516736\\-9961\\-4a5d\\-9640\\-3c9dec29bb82\\-000000[\\/\\\\]+b_aq4D2gelCR7BDO\\-HaVnM4LFfM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4180a\\-b6a432aa\\-f6ee\\-49b1\\-ba07\\-3c931394ff51\\-000000[\\/\\\\]+z9JOKej5uqW_5Jl6w5TDcjWJBbs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587d1d3\\-3dfde9ae\\-671c\\-43ea\\-845e\\-ee5c100daac3\\-000000[\\/\\\\]+CLlwkwGFfcJ_Ke_vVcbS5k3LH3Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e36bc\\-85ab64e6\\-75d5\\-4afe\\-b63e\\-a57c8252170a\\-000000[\\/\\\\]+q\\-3QcUFcP_79npHm309SEktrmXw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c256a6\\-4f1eafa3\\-35f1\\-4f53\\-afdd\\-3aa3500558f9\\-000000[\\/\\\\]+61Yb2xatk99YDTlrBjt3blT\\-ZA0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245695204\\-f18ead6e\\-ae26\\-44b4\\-8a17\\-858f6906efba\\-000000[\\/\\\\]+Sz5LHn7H4o8rHMpSSC3uHxKuFeA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568e8b5\\-28638c59\\-2c67\\-4815\\-88b9\\-4bd73cfc6bc4\\-000000[\\/\\\\]+35XJnczxpjNQriZx5TSxYyXa_T4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924581c8e2\\-bf0525ba\\-dcc3\\-4acd\\-b3c8\\-ddf5bf1a45bd\\-000000[\\/\\\\]+vEg9eWvUSCVkRXerFcTdjlLQ_lI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c907c5\\-04f9512f\\-5620\\-4389\\-851c\\-4816479a7967\\-000000[\\/\\\\]+RBAveM30_NvR1ZYvdlq8Mr1PPto\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b02ad7\\-67760dd0\\-e50b\\-49f5\\-89a6\\-351eaec16d2b\\-000000[\\/\\\\]+uvdsR6oJhO7xVZqP226aQ55Gs90\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c184ba\\-5b0fae15\\-06a7\\-4ee3\\-9a21\\-1cc505fcd83d\\-000000[\\/\\\\]+KO\\-KKMVyDG3uo2BfHcWbqalpX4Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456eabcd\\-89e2a41f\\-55db\\-437d\\-821f\\-f835b3f21e3b\\-000000[\\/\\\\]+2MT5qAbJDVSJ3drxV3VVGAkGarc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a13030\\-055b962a\\-501a\\-4315\\-a967\\-2a7232b31418\\-000000[\\/\\\\]+8RIYsOlC9wSOvqZQKfVExADk73o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e63d1\\-db3fe936\\-97d9\\-446e\\-8c63\\-5058dece83f4\\-000000[\\/\\\\]+fM\\-jbHjuKtsv7BmyaZzziJdf\\-Ss\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582181e\\-2eb8d347\\-e272\\-4b97\\-8364\\-bdbe43dda183\\-000000[\\/\\\\]+vNt_uFFhIvHGPxrr7OPvdyc2fmQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574f5dc\\-51f0eddb\\-6c41\\-4722\\-9909\\-1fc415a7d3b1\\-000000[\\/\\\\]+7sIw6rt6WJE7DbNqN0V7PX3La4k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7fd74\\-b9f79cf2\\-9b4e\\-43fc\\-80f3\\-8d0dc701dd83\\-000000[\\/\\\\]+sKHs1UCEqB4qaBvQozxung_oKco\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c250d7\\-1847b422\\-56e0\\-4099\\-bc81\\-44543ba998d7\\-000000[\\/\\\\]+OyFat\\-H4Twrd2b4HYBtUCko0LMQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c35b1f\\-69ba86d0\\-1a65\\-4515\\-9a35\\-1481d887137b\\-000000[\\/\\\\]+dK_aMDfCZwVoIu49vLhin31o7fA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596e9ac\\-af21bae8\\-1c95\\-4110\\-9235\\-0124696d92a1\\-000000[\\/\\\\]+IJUeMp5k9M2tH5EzffPJEEoBaRs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bad6ae\\-e0eebe07\\-28e1\\-4f8b\\-a404\\-8e118227ee6c\\-000000[\\/\\\\]+xSVcZCXKT1_x7s9IPMtDzqYzP38\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b5851\\-fdd2d035\\-ebc3\\-48c5\\-9ea8\\-c809ab987407\\-000000[\\/\\\\]+LM4VRejbK2YX3Q7Nptr\\-gzsRnJw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ef2dd\\-496cccab\\-9b9b\\-49c7\\-827e\\-9c5e7a865eae\\-000000[\\/\\\\]+_VgO4_lRIfv_pVc23boC9joXOY0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245954e7b\\-8e7b767e\\-d4b4\\-4eaf\\-8add\\-d191449b4382\\-000000[\\/\\\\]+A\\-u8KkEQB4bgdul4FMiOtmkJTtk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458caa48\\-4517531e\\-ff8e\\-403d\\-9ecf\\-8633dcd7c607\\-000000[\\/\\\\]+GqTVwYjxOH1vkgOEF0_zNumVjUI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce2c6f\\-cd0be301\\-2e7a\\-4159\\-8e31\\-46c279c67e2b\\-000000[\\/\\\\]+DissVnamLcghOk0Zdf5pxo6ilW8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457370fa\\-b922edc4\\-06b6\\-408e\\-b26d\\-f938840e0c35\\-000000[\\/\\\\]+66ht9OOSjcdRSetaIJbwOGD\\-1FA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245818771\\-ee9935e0\\-559f\\-4b9e\\-a93c\\-e1fdbdd236cc\\-000000[\\/\\\\]+yrFELVdYIDUOXG\\-54Vigt4NKO1M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bda36d\\-7b9a06be\\-9901\\-4ca3\\-9d94\\-a4a40b12d055\\-000000[\\/\\\\]+H5QZvIU5CR64PBCdA7JDPYnw3Go\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cba9c1\\-6d439ad6\\-6924\\-4e98\\-b51b\\-6e0bad7762b6\\-000000[\\/\\\\]+axLH_YYkeRCqsDJzzsp_6GW5ALI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245815c8c\\-b44c0792\\-04b7\\-46f5\\-854b\\-cf4575bc83dd\\-000000[\\/\\\\]+GKdIuVTTqUihnq3oFCcINiiaStk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598fd1f\\-8346e1a3\\-89aa\\-4b28\\-9e4f\\-42926833cc46\\-000000[\\/\\\\]+ktCQf8bUOkkX54dj7gO4m8xHFoA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b409b9\\-f7a60f01\\-925c\\-4460\\-8b87\\-ae2882eb67b9\\-000000[\\/\\\\]+eV8qeI_VtmCjBsxm7QZTNquFcOU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3e886\\-3a4e9ae7\\-f5a1\\-4f97\\-bded\\-03a642650a7c\\-000000[\\/\\\\]+7yRxJuABuBGjiW3nYiuefpyB2I0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245777550\\-69de1616\\-25f3\\-410e\\-9f12\\-500907dbad34\\-000000[\\/\\\\]+jJeNbrUEq3sF1BH3T09C9i\\-tyKM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be2eda\\-74516064\\-f8ca\\-4789\\-be6a\\-2795aa9f2a1b\\-000000[\\/\\\\]+qbAN7QbO77j0KsmXTKZAyJPValM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577b298\\-e31c744d\\-762d\\-427f\\-bbbb\\-3e0f8668cdbf\\-000000[\\/\\\\]+S1tJGr2fCGCyGOfqQZSZp46jbxc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569f5f5\\-8bfbcadb\\-1db6\\-43c5\\-820c\\-4f64382ca8bb\\-000000[\\/\\\\]+XovHECEhQuz0C5rR0AXic7h\\-vAY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e3a55\\-505998a0\\-c81f\\-44c3\\-bb9a\\-ec89e384c8a3\\-000000[\\/\\\\]+y6_\\-l6Azi5ixzkddGlXdMsYIrKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245910422\\-d969ca2f\\-b4c4\\-47c5\\-9f78\\-155d0bd7c531\\-000000[\\/\\\\]+Yc_ZPw0n3bkVk7h_9J0gj6SMibo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459777de\\-b0bc8b66\\-0126\\-4211\\-bb93\\-b5fad07bc9a9\\-000000[\\/\\\\]+eNCEHW9i\\-FnJ_UoM4jbco0hJPCg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583aafa\\-db9dc2be\\-0792\\-4ea0\\-abcc\\-7b0957f09830\\-000000[\\/\\\\]+7kQV_w7BTZR7Y_p8pJcIgCG7vS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b40ff\\-109d00bd\\-d1ef\\-45b6\\-98d2\\-d97c18d3d3f0\\-000000[\\/\\\\]+\\-cxlY8XJoCSCE06V6DwGS3ii\\-Sc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aaeb47\\-da460cea\\-5869\\-4302\\-9eb9\\-041e704596ba\\-000000[\\/\\\\]+B\\-Nxpgy4bxMyA6Olr4X4uIcagoM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459085ce\\-95780121\\-4864\\-469f\\-9dbc\\-31e5f69a99dd\\-000000[\\/\\\\]+VRTNzd2gRVpy2RpaQdvpNjUEJXk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245905094\\-6a6ff0ce\\-9511\\-43d7\\-8c5e\\-bc19357534b1\\-000000[\\/\\\\]+HIwZuwFJdq3xXn13gTzMtADtaCs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245779c06\\-d473f351\\-08c0\\-40c1\\-88dd\\-09ff118bde89\\-000000[\\/\\\\]+SauMlicQGMoxakItJkdsNOUeGtA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245830960\\-010ed9ce\\-43a8\\-4f45\\-8e6f\\-d6fa733144f2\\-000000[\\/\\\\]+k2prJV2zhH0vC2J\\-ocE4rloYsXQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c99b2\\-4e5b9796\\-5aad\\-4492\\-a6e4\\-6180eabbfcf7\\-000000[\\/\\\\]+uw_FlfRcyp0PoXCYLEOQC4UXjCY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573a3d5\\-68f6fcca\\-7bc0\\-4f38\\-a397\\-1b6b243b790a\\-000000[\\/\\\\]+UuobjUq6Ahcxuft1xvKT7xdbTfM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e5c8e\\-d63f3bea\\-7934\\-4a5b\\-93c5\\-c383bfd93d3a\\-000000[\\/\\\\]+guMrwV8byJAVLn7\\-e1VhFdA1nQo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459cf72d\\-f3a6dcaf\\-4a0a\\-4667\\-9576\\-92647e33430d\\-000000[\\/\\\\]+Em64EDnHcxYOthuozrWmLClzEZg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb96c7\\-4ffac230\\-e4d5\\-4646\\-8dfa\\-e73903f7de8f\\-000000[\\/\\\\]+wXaQsKFJ\\-6muqgLDSCjOT9hk5ZE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae4756\\-92e37847\\-c51f\\-40d0\\-8159\\-334a76938d7e\\-000000[\\/\\\\]+9l9qXq6cMa8wwBk6Q9JhL8EzbKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c68a19\\-73b3ab1b\\-c3e0\\-4d3c\\-abfd\\-a5715120db60\\-000000[\\/\\\\]+kqYqnEn9rBaS3gE\\-Ktsl2RIfHp8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a3a462\\-cd4356bd\\-e11f\\-4296\\-9b6e\\-f057a7e2ae5c\\-000000[\\/\\\\]+U\\-a1i\\-\\-qNrSMe2AF9B7TYXBt2Co\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b467d2\\-d661ad43\\-5bb0\\-41e1\\-a5db\\-5ab5f7d94eed\\-000000[\\/\\\\]+vWCwa4NNcLcFg8nfqSLZPU1ph4c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b2ca3\\-300abfa6\\-aaa2\\-4865\\-8675\\-220272b00904\\-000000[\\/\\\\]+CU7VK\\-MERxKh__Rsp19lGG\\-PWoQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596e9ac\\-af21bae8\\-1c95\\-4110\\-9235\\-0124696d92a1\\-000000[\\/\\\\]+2m0bneVlVfPiS19iJd8fpzEKoGo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c4edc\\-e30fac18\\-d170\\-45b9\\-813e\\-663bf2be0b83\\-000000[\\/\\\\]+\\-Ghho4Eooi88JhRkwg9gaD0EEeU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245990958\\-47989aee\\-e50d\\-42c1\\-bd8f\\-e89e07f2828b\\-000000[\\/\\\\]+hC7QpuWkn7j3xNimTfC6yw5wFsk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924590493a\\-a4e51a11\\-e147\\-4594\\-b13b\\-c020adc9f92b\\-000000[\\/\\\\]+g2eYU5Yte4xrU2aopd1VJMmOKx8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570f51d\\-a86996b5\\-1aa6\\-4513\\-b494\\-b333081fa885\\-000000[\\/\\\\]+csRFTpgPhIi5U29tksxVRDc0Cf8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576e1ce\\-1cdfdcad\\-2c3e\\-4c47\\-a0e2\\-248112cfce5c\\-000000[\\/\\\\]+u55waZucD_DEjYNj5lquTZv0q8s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459085ce\\-95780121\\-4864\\-469f\\-9dbc\\-31e5f69a99dd\\-000000[\\/\\\\]+v9Q9VAgzTPPlzQBIpkLZjZ5Yb30\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b04971\\-61873100\\-bcef\\-4326\\-b6bc\\-6b8f1360111b\\-000000[\\/\\\\]+is\\-rEqNo80F8ZM0QEEKwx9pYLCw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245695204\\-f18ead6e\\-ae26\\-44b4\\-8a17\\-858f6906efba\\-000000[\\/\\\\]+LFLgNZBE_Q1CsYBmrC2uTo0NOeU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ffd95\\-bb368562\\-e62b\\-4af0\\-8f9f\\-34c8c88fc0eb\\-000000[\\/\\\\]+nje0XBfdCoTn1dvukrwakxpGNxE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4d3e3\\-918ec9a7\\-e8dd\\-44d2\\-8efd\\-a3bd4b20dc2e\\-000000[\\/\\\\]+tRDprrN7JcEqcFdZ88P\\-7S5I1Eo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af581d\\-6ebe9899\\-a030\\-4feb\\-b02f\\-2203b6a75bbf\\-000000[\\/\\\\]+3t08n8Vq09U3\\-dXUCBWD16N_tlk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b920d4\\-dd741249\\-643f\\-44ec\\-9963\\-81e9a67e22a6\\-000000[\\/\\\\]+WyTllnVnT6rJYfmDUzHfx9hZu3k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245685e35\\-41d6313c\\-ef35\\-4b68\\-9cf4\\-aba17fd91fde\\-000000[\\/\\\\]+Acn1cz60mdeFikysWSePqMhmynE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1f979\\-a043d66a\\-89a4\\-4a2c\\-9859\\-58024ffe8984\\-000000[\\/\\\\]+geddby6IDamQRYj_hlMnZTEsm\\-I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d034ac\\-c18e1ca7\\-693f\\-476a\\-9f36\\-d7924de34426\\-000000[\\/\\\\]+0bdGuDnbAvVWtrLNB7rSq_d1r4A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245802a5c\\-2f6a7db5\\-ff90\\-4404\\-a740\\-a57e80030d10\\-000000[\\/\\\\]+b7YUqrR132z8rPwMpJJUQHpoyzc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b61b88\\-c1cfa09f\\-f9f4\\-4913\\-85f4\\-5e5c8818da74\\-000000[\\/\\\\]+2ztW5x6hiZLBrZ6zlsug7\\-5i4Yg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245797cd8\\-cdded0dc\\-428e\\-45ee\\-82ea\\-59b47b13cf78\\-000000[\\/\\\\]+jp2V_ttvD0Bx5cuuOOWTZgKJVZ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245699044\\-a06f2ea4\\-df15\\-4a9e\\-a483\\-608a31fcd74f\\-000000[\\/\\\\]+VoJR4e1jll6ldj53hiNLdXry8Fc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a13030\\-055b962a\\-501a\\-4315\\-a967\\-2a7232b31418\\-000000[\\/\\\\]+74Dq4ke4DfxVgH1lGBqt2\\-Zx40A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bba3b1\\-e6970767\\-6fa8\\-4d94\\-b79b\\-b83baa9b152c\\-000000[\\/\\\\]+0ej8VjsI7JfPUPr79QcZ5RAY2JQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459e872f\\-20796a48\\-1be4\\-42ff\\-8cc6\\-05919304272c\\-000000[\\/\\\\]+LDkNTmBGGuikFHTf2n14XzlkVtw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cad2f3\\-ff2b9b38\\-a899\\-4dc9\\-be1c\\-29dd98ec82d8\\-000000[\\/\\\\]+\\-kOECnHi_0NpOmi5sKvm4A7l_nQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b78df\\-80bf7f75\\-314e\\-4d46\\-9194\\-ad291197606a\\-000000[\\/\\\\]+Yqs2oAI\\-UEbpuFKXHJ8zanydDRM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b1b46e\\-e7e26f53\\-d595\\-4f31\\-9687\\-9f66f17ece1c\\-000000[\\/\\\\]+9j0\\-RbjV4w1f7hKoUSILletEMhw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6c37e\\-2ed962d0\\-1fb7\\-4aa6\\-b955\\-333a123b27a7\\-000000[\\/\\\\]+qwzvkvTSSYGGbxucmJ7KjKWkSzs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b16ce6\\-e2e8c730\\-6c09\\-4b93\\-99bf\\-f30b7b01d667\\-000000[\\/\\\\]+PgFdLiEjbC0cx8H5aceB4ILt0bU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ec1ea\\-62535b19\\-dbc0\\-415c\\-97a0\\-4dae26a2b4e2\\-000000[\\/\\\\]+BFrsV7pHUkOJE5pNrbpHisnkZJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245625c4d\\-dc92b582\\-68bf\\-467a\\-88c2\\-1ee91f5a6be9\\-000000[\\/\\\\]+tF4lR26nBIK0UvD5WmWm73uSYc8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e10f4\\-53bb88eb\\-0053\\-43de\\-a56d\\-1649df9664fb\\-000000[\\/\\\\]+wqG\\-Lh0PU2jLQixiGNyzsIjstBQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b54807\\-64f90627\\-5fd2\\-44fe\\-8a0a\\-98328510cc81\\-000000[\\/\\\\]+LDLBDKTi3AQsaEVmzI1Cpd3rxDM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb4c44\\-09660631\\-b7ca\\-42d3\\-bfc4\\-9e4ae299370e\\-000000[\\/\\\\]+p7VDGvgihjJMxNNQ0BbuJnRSZ5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b54de0\\-eee21c90\\-3c31\\-405b\\-b7b9\\-a33a3f030d6e\\-000000[\\/\\\\]+QCFvjZ3SJkiUeuro0l0ax62COSs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a0ec73\\-5ea8a5c5\\-6bec\\-41e6\\-9099\\-1242c8dce420\\-000000[\\/\\\\]+CWVn47Iqj3Z8y0q4WvAcYs5PM2o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1bb1d\\-cdb7806f\\-17e3\\-4983\\-a69c\\-14143fd7c1a6\\-000000[\\/\\\\]+A\\-bVw1whzgFWVo5_JhKMVI8PRCw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245712f8c\\-8d9c13ad\\-ad1b\\-4b24\\-9988\\-4b7834c777a1\\-000000[\\/\\\\]+L15MrQ6GKS1C\\-eW\\-Vk\\-0h0UIfYQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6162f\\-0d07573c\\-5e1f\\-45a2\\-b257\\-3477de0cf06a\\-000000[\\/\\\\]+g4d9K2CyrqluBa4zAx2WafDF4vw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a79394\\-c5f5f3f3\\-e1bd\\-4b7b\\-a674\\-87c54941164e\\-000000[\\/\\\\]+JP4EhluqzKeU1WN8_ZCYhyWPQQI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad7e91\\-f8c5bbae\\-b4e8\\-47ee\\-858b\\-4535f2bda016\\-000000[\\/\\\\]+eb130CVjceIaJi3DTyRvpunA7Uc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3bd50\\-0a023681\\-0cb7\\-490a\\-b5b2\\-5c78b22ec877\\-000000[\\/\\\\]+_0rWjLNwJ8iVTnUTsjGoqJHhZr4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca8b2d\\-c0b42cfb\\-966f\\-4b2f\\-999d\\-a024b12a1e5b\\-000000[\\/\\\\]+KqxzhQZ4QkXUDJ\\-KyVP4EZDEFP8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b58249\\-77f65265\\-2eb7\\-47ae\\-96a6\\-5a6b8c726c39\\-000000[\\/\\\\]+CIEstERvnwkwbGliV0029n1eX0M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b97692\\-f0a79b60\\-e5e9\\-4f92\\-ad96\\-c4c8659d0ee5\\-000000[\\/\\\\]+FJzyDFBiUueKakdbp\\-1lb470Dcs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459497b4\\-fb423021\\-c014\\-49f8\\-a592\\-eb964ce19880\\-000000[\\/\\\\]+YqZnADn9U5v6YEbUvDNcn3D3yl8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456efdfd\\-5dae8db3\\-a677\\-4d53\\-ac7d\\-d1828e086c32\\-000000[\\/\\\\]+1LPkWr3\\-ISRX1bIj5puYCfORzUA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594d1fb\\-63eec7a6\\-33b8\\-4271\\-8c04\\-eb09d94e214c\\-000000[\\/\\\\]+5C_DB8KrK_nMZXTSGV5SosOj6O8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb95aa\\-b8276e36\\-9902\\-4c18\\-acbc\\-38185a51d428\\-000000[\\/\\\\]+1sCD3D990tc9HViDtd2u\\-9SDqW4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a405c1\\-8b3c0f2d\\-68b8\\-4727\\-be3f\\-19ade506ac1d\\-000000[\\/\\\\]+e9dWp9ftDgvMBYcuVFcP3BBLHBE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b29ee2\\-be9f3ba2\\-c359\\-49c3\\-be9f\\-5279513f5673\\-000000[\\/\\\\]+xjHNlVE8AJiG1QcSnrqap3MoiJw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574f95e\\-a48afc0b\\-8b5a\\-4f0c\\-a325\\-1282df8ade45\\-000000[\\/\\\\]+wpCzChkah09we0V2T7XUS5x_tS8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9b24c\\-c35d1c0a\\-2280\\-4e34\\-93d1\\-2b9ffa5908af\\-000000[\\/\\\\]+rMTNCv25xcMg3\\-B8PYGRf9QB53I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca3dd7\\-8dfb364c\\-861d\\-4669\\-8003\\-9e8aa5ef98ae\\-000000[\\/\\\\]+wbjCiM\\-I1PSjL9uWI5EUJ6S6Cn0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab7049\\-c8cafdfc\\-65f4\\-463b\\-a856\\-eba24f018942\\-000000[\\/\\\\]+LdtysokF\\-CMgq89ohYq0ATqexRs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b62237\\-27f22780\\-e2e5\\-4499\\-8f86\\-3d3f87208ea7\\-000000[\\/\\\\]+A7QemAO8F6HV9rTW0lEUex17_Xg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573c18a\\-6e1c9f0c\\-ddac\\-45e7\\-9f97\\-66d4f703b688\\-000000[\\/\\\\]+4zqb1I9wvq3GTdY8__kR8d\\-WqNQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc8fbd\\-f2000853\\-aee2\\-4b04\\-bcc3\\-630ce4b9e5e9\\-000000[\\/\\\\]+SSncI_2GRhrvAwlwQii2tV\\-lPeY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cb5ea\\-0907a196\\-e98b\\-45c4\\-8d16\\-66554a3c58b4\\-000000[\\/\\\\]+vzCG7oMMpc2HSTMQYg2nTPtZ2WA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569c4dc\\-4c6e9b05\\-d900\\-4f53\\-8ec4\\-62ab3681fe82\\-000000[\\/\\\\]+ZvbY7pTuXuxL83xqksdijldxhIY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bad39b\\-8242a326\\-6a0b\\-44c3\\-9038\\-bcc52611ff4d\\-000000[\\/\\\\]+EDmq8egIJfpweig9\\-RIc7yoFZFw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3a958\\-b128ad94\\-8a4c\\-441a\\-8c33\\-dcf1518f7dc9\\-000000[\\/\\\\]+OAONhXpiXpAjoTgX3XwGysbKb40\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585f8fd\\-37ad1a8f\\-d92f\\-4453\\-ba05\\-191860392523\\-000000[\\/\\\\]+fGvFEnYTy0hlReoLeJ6b8OpuFlY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6c07f\\-6f4354ec\\-0945\\-4f50\\-8f17\\-40613d5f4110\\-000000[\\/\\\\]+2dZK7duKImLxZYg2Vu1gdtwxKgg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca0a24\\-5ac54200\\-49bc\\-4b1f\\-90ef\\-84f05120900d\\-000000[\\/\\\\]+lldDrPfeiD6gkpTMeAd7ZKqs74Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245686fc3\\-b33f5c3f\\-5692\\-457b\\-8ff8\\-de6715ab0f1f\\-000000[\\/\\\\]+kgyizTsQ12Zew2Ug6w7OZvj463Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a0defb\\-fbdf53a5\\-e69d\\-4d5d\\-be76\\-19f605f713df\\-000000[\\/\\\\]+LUwFSCRGD6KSMG8iup1JrnoLhkg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af8cfa\\-daa8b1bc\\-8f93\\-4f9d\\-a57c\\-3454c43d3c10\\-000000[\\/\\\\]+zHxGlwxU1pt35lpIaWfgxywAzvw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8f9ae\\-2a4e7537\\-34a1\\-457d\\-9dff\\-53e9a904ba9d\\-000000[\\/\\\\]+E7Lct2QZqpwQk9VkFwwgNrwZBlo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245731417\\-31f6fe75\\-692a\\-42c2\\-a496\\-89c123ff507c\\-000000[\\/\\\\]+rcjNAPVn4D\\-Aau2Uci80JIpbmsU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c840bd\\-89d358e4\\-1522\\-4440\\-9d7e\\-abb1b24249e9\\-000000[\\/\\\\]+3JegMsCADLBGkUraS3nc1fmNJdQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245884a1d\\-6b86caf7\\-c0f5\\-4de5\\-b05b\\-ffd4b542e068\\-000000[\\/\\\\]+yuOF\\-0V09uvHhVEh31mCOz2tq2w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b2927b\\-ed80b3f5\\-604c\\-436a\\-b78f\\-4d39ef95ed26\\-000000[\\/\\\\]+mIFJOaetmOLAGsJy5rTllLz3kNw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d14df\\-717686fb\\-1e09\\-4981\\-b6b1\\-17af8dc87a92\\-000000[\\/\\\\]+o81UF9xzh0hvm80eIiCCYPwA5zk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a75cb5\\-04c1b69c\\-d1ab\\-4c3f\\-bc28\\-4576653690ec\\-000000[\\/\\\\]+i9rQ6EaQKqvhCUKf9iB0t9c7iug\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459130cc\\-ce6c8ad3\\-4629\\-4d60\\-ad88\\-907a2598d79a\\-000000[\\/\\\\]+ZATqww3yf6KATggvUOnXspvx0oI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575cfc0\\-638a5ea3\\-0a01\\-4eb3\\-b711\\-49f862a65354\\-000000[\\/\\\\]+ftfiFCysKmSrSCC390IYyUraoOg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924561888d\\-512f4261\\-7ea5\\-4265\\-a5ab\\-34795ea2c8ba\\-000000[\\/\\\\]+vI1htmX3Xu4ghdQgKUtqCnRfyzQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245810852\\-36da0e32\\-99e8\\-4d2a\\-8ccb\\-85f6f6e67292\\-000000[\\/\\\\]+KcfvIOul8d3dQAGInxl6kUorUN8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5ab07\\-1f5de4d5\\-3f8e\\-4f7e\\-a06d\\-99f424ff24e8\\-000000[\\/\\\\]+W7obVlzVADmSxa1eQbcbIJpNOYI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ed73c\\-83448320\\-8edf\\-444b\\-a14a\\-1859e14d085b\\-000000[\\/\\\\]+QlJoZhg4jQZKgXgURhsdKVWEz40\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e789e\\-dc228123\\-c9a1\\-427d\\-a247\\-3409053e1d67\\-000000[\\/\\\\]+h\\-xwyHXcVYk\\-\\-m0AHgt2WDpMsTo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596484c\\-c352e39f\\-bd62\\-45e6\\-84a5\\-8157f13ec7c5\\-000000[\\/\\\\]+J1PHv0Tldrz8\\-MoJ48mox3ucTAY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0b504\\-7e48cd85\\-9889\\-41d0\\-b46b\\-ccc6ee4293e7\\-000000[\\/\\\\]+OcKMKiMC1GlwP1UMWUGYIAwC9o4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b467d2\\-d661ad43\\-5bb0\\-41e1\\-a5db\\-5ab5f7d94eed\\-000000[\\/\\\\]+w3Mgevg6CNinC9LZf_b2_FSTNOM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af90ac\\-db66c4d4\\-cb82\\-418c\\-a4ef\\-407ec7b10cbf\\-000000[\\/\\\\]+dvFNZwBgq9ZB2Kiexkddd9XVrys\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c184ba\\-5b0fae15\\-06a7\\-4ee3\\-9a21\\-1cc505fcd83d\\-000000[\\/\\\\]+yg1COcJjmJLtKtra6cUohLL7TPg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458bc8e3\\-d46873d9\\-3d1c\\-42e9\\-81c7\\-2914ef347ced\\-000000[\\/\\\\]+7GFUFrohayljEJWDC24HKL9kmV4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d03407\\-57c815c4\\-3e1f\\-407a\\-91a3\\-0f4bfab09531\\-000000[\\/\\\\]+BKykMg\\-cs2vD_XKL2HZux5O85rY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456413de\\-2dfd9533\\-9c6d\\-4e21\\-948a\\-441ecab2299f\\-000000[\\/\\\\]+bckw2bVgDRnXZ22RZPvcO4kgSPQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583eb4d\\-dab29878\\-9911\\-48fc\\-b1f4\\-ab18f2d0ada6\\-000000[\\/\\\\]+HFpcNCEjORgzQYpxPte4MxN4vg4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c4bf3\\-30b67413\\-7c86\\-409e\\-b0f0\\-98601c17ad22\\-000000[\\/\\\\]+BYf6Kfj6IbqbGK_zGJgcXqclCgQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bc836\\-37070ad9\\-c68f\\-479b\\-a25d\\-ba7deea15b42\\-000000[\\/\\\\]+7pvbD4aEb8iqaZbzz\\-feT3PbrjE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245764bf0\\-325cfc0c\\-d339\\-4bc1\\-ac04\\-c04ba5d80b61\\-000000[\\/\\\\]+3t6RjMvvgGw_25eVGzAwwZuouoc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245764bf0\\-325cfc0c\\-d339\\-4bc1\\-ac04\\-c04ba5d80b61\\-000000[\\/\\\\]+5C0amBe3VeQHpI4kJDVmp0bUNZ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585e8ec\\-9804a5d4\\-16bd\\-4741\\-bf11\\-3567faae7c5c\\-000000[\\/\\\\]+\\-rbkKGlSokXChVJQWOJp5kBnSEo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458d0f51\\-37ce292c\\-6102\\-44ef\\-889a\\-f27b5bba8e7f\\-000000[\\/\\\\]+YQa13UmJqb\\-f4CeCHaXqO0_Fwx4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc99b6\\-b7089ce1\\-6749\\-473f\\-8447\\-422fb6d3b703\\-000000[\\/\\\\]+FGw2_0X8nw\\-n5DVu60ZsGa491nA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245805211\\-bcff2342\\-2d24\\-47d6\\-a53b\\-e1e2cd6a27da\\-000000[\\/\\\\]+9r9W1cq8aqbjHn66Rvv6JV2CWqU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7ab93\\-c72c0307\\-2ef2\\-4493\\-89be\\-4a7902e84f91\\-000000[\\/\\\\]+ho3fOGGbR0B3aWm7f2o7AJsG9RE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e3f08\\-ecc8268f\\-9509\\-4c06\\-af2e\\-5270d3122ff8\\-000000[\\/\\\\]+ON4410KvmCVzURNXnAxmtJt8J0c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458dce68\\-8fa6e97e\\-1abd\\-4ec7\\-8538\\-15c4909ef80c\\-000000[\\/\\\\]+JOvBAUPoj9Mvi6jF9egbUQ\\-2UVU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afeb88\\-f6d02057\\-8d14\\-4d65\\-878e\\-911ae62f2568\\-000000[\\/\\\\]+YtAr87R\\-1jvI9T5FzYoYTm78k0s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8b052\\-31657696\\-edfb\\-4640\\-ad33\\-5919b5fecc91\\-000000[\\/\\\\]+V1kdB_HyTmCawvlGw8sRlD3pEy8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b6876\\-20142b76\\-244d\\-4b93\\-9502\\-c915130da23d\\-000000[\\/\\\\]+zqjHN9S8Y7FXii46wkO9uYU_Ydg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459120f2\\-0d713b52\\-cb3b\\-43a5\\-b1e6\\-ff52d6433fe4\\-000000[\\/\\\\]+q4MiEqmAQC9spvTHz4FrSuv6cjE\\=394(?:\\?|$)" + }, + { + "hash": "7a700736d15e5e5141724a0ddba13a9bde829468408cb530058988607d42bcc7", + "regex": "(?i)^https?\\:\\/\\/iamabd55\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245751bd7\\-a2793d40\\-ced3\\-4fc7\\-8158\\-716f6db37709\\-000000[\\/\\\\]+epEtLlKuUqONRbv5hmVw_nY3v\\-c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583d232\\-22a8c5a1\\-949f\\-4bce\\-a571\\-e76226b81f89\\-000000[\\/\\\\]+rbqbfIB1MI92i4NI9pR0svTJe\\-Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245987f05\\-e4928b39\\-560c\\-48aa\\-ba9b\\-5f8891c82761\\-000000[\\/\\\\]+AJozWnmL_8Ge132mxSXB1lXZqrs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f40b0\\-2833e845\\-7a01\\-4c6f\\-8efa\\-7f6ca72e01ba\\-000000[\\/\\\\]+90c1tBg88ckQUGKp\\-J8iS8573rA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459e7129\\-6f8bfb53\\-7d46\\-4e51\\-b9a1\\-bb774082c1b7\\-000000[\\/\\\\]+7BbQNpLOo38twqwZ0Pb0Dc58QRw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f3e4c\\-6c6181cd\\-3aa6\\-4a40\\-a44d\\-9d1274500beb\\-000000[\\/\\\\]+qHK81SypHJBwAi04pRnQagx86NM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456423e7\\-0e05ef53\\-13f7\\-410d\\-a260\\-dc5f3038e602\\-000000[\\/\\\\]+CTP\\-qZrPVUjKJtRx9qhzuyd8sxE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae44e8\\-57ba50ac\\-1f8f\\-4527\\-a174\\-49f8f2b5f2c4\\-000000[\\/\\\\]+1loAF0sTelZKWKDHwWqWquueuyo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a5a38\\-44c006e1\\-b814\\-482a\\-b826\\-5c6b8a091c59\\-000000[\\/\\\\]+r9rIOY2N6uqPxhh\\-FtEhjKWx4ao\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596b8f7\\-aca6f387\\-058c\\-4d51\\-a1a9\\-b829a8fca168\\-000000[\\/\\\\]+pp4kvB4IVx68LsrQwN0M0kXXS\\-w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c82770\\-6a6468d0\\-42dc\\-4cfa\\-ba57\\-65131cd71f25\\-000000[\\/\\\\]+cbxtTnXKqPoQjUkpJ7er9RBfCP0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c726b2\\-f744f22d\\-b10a\\-4e0e\\-938e\\-236ae0ede4c3\\-000000[\\/\\\\]+FvjhI29avjQfAV0Q5k6RcSlJZm0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ada9eb\\-a0f4756f\\-d8ac\\-4eff\\-b7a7\\-226ef4c85769\\-000000[\\/\\\\]+sJVYmldVp4dp6GGyAU\\-PKk4ziaU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4ecbc\\-d529c54f\\-b7c0\\-4567\\-93ef\\-d53bed623b47\\-000000[\\/\\\\]+denKbdSFfCKxraXRnPj1\\-\\-RQxVE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455df61a\\-44ae255d\\-bf16\\-466c\\-9478\\-f2bab60e593f\\-000000[\\/\\\\]+o_vgHYxyQd3XWKu6UcFkmq9Cz5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579e51c\\-f2bf61a5\\-f7f0\\-4581\\-b685\\-7e4c75c242d7\\-000000[\\/\\\\]+BBQFINuuZf6y_wbRRz12YnkUVo8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a3e351\\-17a376be\\-d627\\-40d3\\-88a3\\-114df6ee40c4\\-000000[\\/\\\\]+j6U9GGcIJma_tlbgIh6wQo6XwAE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245778dd4\\-74191c10\\-bb94\\-4c10\\-86d1\\-eabd6ff30404\\-000000[\\/\\\\]+WytVrVI7FAQJxPVUgXUaGaNCJ0A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568a463\\-e93f7904\\-c554\\-4616\\-bbc9\\-4d25ca821023\\-000000[\\/\\\\]+LHYhBl1LqPflbVpYG9FDrBXnfuI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c79f35\\-355c958c\\-57db\\-43d4\\-919c\\-87328b2f4249\\-000000[\\/\\\\]+8XnknzcDhqXAAU6MVqP8mgdCuOQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb7e0a\\-4f713613\\-1e0a\\-4513\\-8604\\-fa4873a13c12\\-000000[\\/\\\\]+pZ29WT_DyOhNkM0VzS2S_0bwHcI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924581c8e2\\-bf0525ba\\-dcc3\\-4acd\\-b3c8\\-ddf5bf1a45bd\\-000000[\\/\\\\]+NodcaffqZBORrxSDElvj3xkEPMk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584f350\\-1fd13e42\\-95ff\\-43f1\\-90a3\\-570b4b5f188a\\-000000[\\/\\\\]+NtaAh9gMZQE8QNyr6t7BaiT8t24\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c093da\\-c8b8e7f7\\-e400\\-4618\\-996e\\-dcb521c6a85f\\-000000[\\/\\\\]+ciTLSqxjvXECrZXBrwdeKANbwOs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245657c53\\-75b90c0f\\-927f\\-4a0b\\-8076\\-a7d596ec9f4f\\-000000[\\/\\\\]+sR0HCXRares3bxq3IckYEQhgbEc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca038f\\-aa323159\\-df0c\\-437b\\-9468\\-48db5225723d\\-000000[\\/\\\\]+lu9EcWV8gqUU1l79VgKx4bh8GFk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245987f05\\-e4928b39\\-560c\\-48aa\\-ba9b\\-5f8891c82761\\-000000[\\/\\\\]+ASHFKb19IqEXf4KkdqdX_T_tYGI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f8f6e\\-7153874b\\-e989\\-4b90\\-b87f\\-40b9c6e6f94a\\-000000[\\/\\\\]+Hc9OBxW42IJWo_\\-DlZO8pZPO1WE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457dd31b\\-1ac24048\\-876f\\-4766\\-9dca\\-b9f2f8d3ffa4\\-000000[\\/\\\\]+OuOGXjIbyfYPmCvtFSNGxsictCQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924560ebdf\\-d76c0927\\-e6f4\\-4d24\\-98dc\\-44fbdab8acd9\\-000000[\\/\\\\]+9tfKDlHX_ZroXOsz7a6\\-egSuC6Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b695fc\\-6beaa313\\-5775\\-4f58\\-aaf0\\-fb7915076410\\-000000[\\/\\\\]+zLbPBoNYC5b6n3AbDEMsNbAiiS0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245623e54\\-61905802\\-321a\\-459f\\-99d3\\-671bdc213779\\-000000[\\/\\\\]+kxo2oCN3gGuGIUic8yVF4W4wda4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458030e6\\-efc1c33c\\-d1fe\\-4c4e\\-a8ff\\-ce96c7806427\\-000000[\\/\\\\]+qj9DVSOPuE6f92wpeSg_7LfZBFI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b2787a\\-98f5688d\\-25d5\\-412c\\-8fcd\\-2fd478cd2ebd\\-000000[\\/\\\\]+yp2t274qcjch9oOcfNQKfonXuEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5a1a4\\-ace64f28\\-eca3\\-4173\\-a466\\-19300be525bd\\-000000[\\/\\\\]+ck_n4qiCO0Zz0UqdniPv4jN7TV0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5fa55\\-f4d64b88\\-fcfa\\-4ca3\\-92a8\\-9f6247e91192\\-000000[\\/\\\\]+9Aa\\-RrWGM_KMxC32SWQE5dFmS_s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245975a8e\\-47a772ea\\-7c3d\\-40ad\\-8c7e\\-e8210a8444f3\\-000000[\\/\\\\]+D7pd4FK10aG44O9ekb6rwCKAU5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a51ba7\\-714c3e2e\\-6547\\-4d61\\-8ede\\-b0adc5e44c8e\\-000000[\\/\\\\]+Q0g5Qbte_XlBaeFMaN6XflkabfM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458830b3\\-99d630ba\\-82c8\\-488c\\-bbed\\-75a7fa206104\\-000000[\\/\\\\]+g8u\\-xyEQ5otjLLlq8mEbfnVzu9Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456443da\\-868c5518\\-866c\\-4046\\-bb43\\-b88887fe00a0\\-000000[\\/\\\\]+e7dgY_vhyoAife0PZ59tMpCzlfg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245624da6\\-ad7fa90b\\-1dc2\\-4994\\-8fa6\\-9a028d26ba72\\-000000[\\/\\\\]+uNxQMLPAm3GsZAln2DCZoMtpr_4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f4c0e\\-0fb9b65f\\-4bf4\\-4d38\\-8169\\-61e0d8c44804\\-000000[\\/\\\\]+63YwLYfebo7802BUSJPXu14NeMI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f6bd0\\-12576c53\\-5cf3\\-4972\\-82de\\-e3e0ed81ec69\\-000000[\\/\\\\]+C302KjN6poXBw6ZQ\\-QGNnr167AQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d1616\\-bea09d46\\-c93a\\-4ef8\\-902c\\-ef942d8d178c\\-000000[\\/\\\\]+a9e90RO\\-ull9wik840vUavWwGtE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a01bf6\\-2fb22527\\-bf49\\-4a3c\\-a349\\-95596bd5e959\\-000000[\\/\\\\]+qHnJJxmlu0aNRUQmXKnaM0\\-oS30\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c7c76\\-61a04e9a\\-6d3d\\-4a13\\-ab7f\\-9a5155218e7c\\-000000[\\/\\\\]+mz\\-RFvVixWL02V0k52py16oYgAs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a394d8\\-f88e5800\\-260b\\-4d9d\\-ab33\\-5863d1e3232c\\-000000[\\/\\\\]+UJgat2S70D1oIAcZU\\-qXUqcVW3o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924588374e\\-d6900539\\-af81\\-4fa6\\-a8be\\-3705d7d03f60\\-000000[\\/\\\\]+lgWykb72YOtT\\-GBDLfD7V1z6FzE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572ad1a\\-fbb4a937\\-f903\\-4d3b\\-ad6a\\-a599fd821d6c\\-000000[\\/\\\\]+g77SpK6fsxjPOgzQ8eTsStfbz_0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245949751\\-acbc6b34\\-357c\\-4b10\\-959c\\-e221faca47eb\\-000000[\\/\\\\]+9gAL5pC8jcLTkDX92M0Lc7F\\-fdo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245699044\\-a06f2ea4\\-df15\\-4a9e\\-a483\\-608a31fcd74f\\-000000[\\/\\\\]+IlE\\-3ZrvUCtHruCEOq5WBE\\-pcxw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245710476\\-1cab4102\\-69ac\\-4592\\-a527\\-b8363c8ab8a3\\-000000[\\/\\\\]+4DnM3z9VX3VBpb0pVBnaB9CBCE8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cc236\\-bf1218ff\\-4ade\\-4709\\-b111\\-e96d522e67d0\\-000000[\\/\\\\]+LY9B4BGBY79eoCkUyIhzDg\\-bhAw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a59bc\\-42a50a21\\-1699\\-4247\\-bb20\\-d94bdf2ea8a3\\-000000[\\/\\\\]+mzpwLd07Wk8PFRZpvb1iXYjW3g4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d0332b\\-3c234ea4\\-7c6c\\-4921\\-a985\\-a722ce50caa8\\-000000[\\/\\\\]+shjyF1ZvBU4qaarcASf1HHakiMY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b6bed\\-a3b4f70b\\-8eaa\\-47e5\\-94f8\\-18ab29fce80a\\-000000[\\/\\\\]+_8T\\-qtPWXMqCswcWjkQpJAMYaSI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b5705\\-51f1e91f\\-54d0\\-41be\\-b7a5\\-301f51aee22e\\-000000[\\/\\\\]+DiOSE1KFPMM1rr0Bn6O6yN2cO_g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7f8c6\\-a1d73326\\-73bd\\-4071\\-a07c\\-b5dc110c21bc\\-000000[\\/\\\\]+wZ_sRDDy2hBxBJAGwhhGBWlCRM4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd7464\\-d7abdc98\\-f111\\-4c61\\-8abb\\-b778e95cb2fe\\-000000[\\/\\\\]+C38vxhaTAX9zRCiNn7o9meSKnaQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa06af\\-9bd6ca6e\\-03e8\\-4950\\-9dd0\\-f026d51c6467\\-000000[\\/\\\\]+6L68S7ca08bWsjVcotulB4FWvls\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aafef0\\-d4efaef1\\-dbef\\-40fc\\-9f69\\-ba74909a4e96\\-000000[\\/\\\\]+vwJ8B2XcyTMUcgCMmZI1Ekd9Hz4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583c509\\-2d6250e9\\-ec3e\\-4796\\-80ea\\-0d8de1fab8f9\\-000000[\\/\\\\]+vbgxaGtQB1sMr\\-5P7iEoFTYpdB4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598fd1f\\-8346e1a3\\-89aa\\-4b28\\-9e4f\\-42926833cc46\\-000000[\\/\\\\]+rqMnmo6Oh5LKgAOHIvIyLcxkvGg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab4397\\-616495b6\\-aca0\\-4f75\\-81af\\-ade3a7bd9b99\\-000000[\\/\\\\]+nhOZXFLyoLcLqQeo9kWCBPNGwfU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459fe07f\\-d3b71065\\-06cd\\-4d91\\-86a2\\-6f554608ce70\\-000000[\\/\\\\]+wo6BKpsqJefj3nOtreyvGF9ZGWk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f2978\\-8aa45b10\\-c384\\-4200\\-8264\\-07418b472eab\\-000000[\\/\\\\]+gS80SE0HTBGk3VT9bx9ZtLxNcEc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245719af9\\-bb743cfa\\-94a8\\-450d\\-aa52\\-c1e8e9cdeb7e\\-000000[\\/\\\\]+mzHM3sQB2Vg4z\\-ftDwdSDRVwZ2A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3e5a5\\-041bf9a6\\-1aa9\\-4b9f\\-8844\\-4c41de52db73\\-000000[\\/\\\\]+FX_Mo1sf2hP_enCOPCMYMxusXLg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f1dc5\\-ac18edfa\\-909d\\-4c9b\\-978d\\-343a30cf3f7c\\-000000[\\/\\\\]+cGRMoWmqbAo5IKSOZ6BzmShGmvE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bad39b\\-8242a326\\-6a0b\\-44c3\\-9038\\-bcc52611ff4d\\-000000[\\/\\\\]+LF16pNW\\-GPBpjhfX8rUeN6UoIO0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456749d5\\-dd9a2871\\-9fc7\\-431f\\-ba51\\-bb91264d8ee1\\-000000[\\/\\\\]+4ZG6QrUfp7is_XwuS\\-E6xWqbkH4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597581a\\-2dd44fa1\\-57de\\-40b9\\-a415\\-e4a4cf9bc815\\-000000[\\/\\\\]+hB9a2QHPrBbzwNq_cOqrNPMpawE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245767e79\\-f73b56db\\-e963\\-43eb\\-898e\\-02f3d21b5927\\-000000[\\/\\\\]+CphfGp8bueuiOMplhPis\\-TEyeZ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cea997\\-ca40b353\\-c01c\\-4899\\-999c\\-d84549624ec5\\-000000[\\/\\\\]+OIoMm8nK0Bf1E8v4iV7H8NzXa1Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7ad5a\\-dcaecd3d\\-510b\\-446e\\-b570\\-325d3d6e8122\\-000000[\\/\\\\]+t7SnqHKrQdgViVGCTQDtdXAcCtk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585dc85\\-07521d25\\-f01c\\-48c6\\-bb54\\-72adc958f07a\\-000000[\\/\\\\]+c\\-6jQihBVQvrEdxA8dDy0Y\\-8LyE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca038f\\-aa323159\\-df0c\\-437b\\-9468\\-48db5225723d\\-000000[\\/\\\\]+br6yyV2OuJSfYFX18Fq\\-\\-KEirhQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a61119\\-867d33ba\\-8ae4\\-41bc\\-bca1\\-954f490585fe\\-000000[\\/\\\\]+j7WsImJtJ3MyV9pDSq3YdpmEWmI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c4cf6\\-bfa2a144\\-e677\\-4a51\\-bde0\\-5001ae301687\\-000000[\\/\\\\]+y9tl1Bb3y\\-vPbmgc1uZqdb\\-koqA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245896444\\-041ffb9f\\-8935\\-4ed5\\-96f5\\-76e69fb45329\\-000000[\\/\\\\]+fn2ENTn1SseAXE0hPWwmIasg9jc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abd0f9\\-c1b829df\\-b44f\\-4b3d\\-a22b\\-991d94ba4cab\\-000000[\\/\\\\]+4_BNalkXcW82vZQK8YsnZfYLbbw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af702a\\-3a088b41\\-f4bf\\-448b\\-84b6\\-7722cb9a650b\\-000000[\\/\\\\]+UQjnwizFkj5g05ojYeXFUmzEFQY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b20852\\-2eddd360\\-806f\\-4220\\-ae0e\\-667db76f8f7f\\-000000[\\/\\\\]+2r2kU8FfLb3kL5DLlVprx56y6Ds\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245834e91\\-9f26a80b\\-9e4a\\-4eb7\\-bba4\\-d8f3bcb0f1be\\-000000[\\/\\\\]+50m3tAKsGRVxqm7s\\-rNKFJKAciI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afc792\\-f9defed3\\-a7bd\\-4c4e\\-ae9b\\-8f10c3ff2c85\\-000000[\\/\\\\]+M\\-Q4hXBjqjajoppApJLQE0eLC8U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7ad5a\\-dcaecd3d\\-510b\\-446e\\-b570\\-325d3d6e8122\\-000000[\\/\\\\]+YuWfejb3yd6AUC82D\\-rhVqvaaBU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e5457\\-e066531a\\-04b2\\-4243\\-8984\\-16268724a41d\\-000000[\\/\\\\]+lSDDbnHlpCZmBojVfzMeTbhCx7E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b62df9\\-92414334\\-0eef\\-47e3\\-861e\\-ae69d7d7bf90\\-000000[\\/\\\\]+xuf6PoPfpGR\\-7ZNBX1PibMNyoD8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459dbbc7\\-b7e91662\\-8756\\-4747\\-9200\\-86fc0fbb9f6d\\-000000[\\/\\\\]+\\-qp_9BYuQ2tf53udCNfIbDsd9cc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b8016\\-f773915c\\-0d10\\-441f\\-8942\\-658155e66398\\-000000[\\/\\\\]+1s8ajziTyITtaisdkIyhqagbdf8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7be8b\\-003c0315\\-71f2\\-4a5c\\-9a77\\-d94721cced35\\-000000[\\/\\\\]+ebKHKSsuJ4QQrxRrpjo5vrnm6bk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245810f7e\\-c24da5fb\\-2afb\\-496f\\-93de\\-ec4a092b4a95\\-000000[\\/\\\\]+xfd1CjvKoybhAS_0EyXkW34mvhA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245907836\\-5297f03a\\-7068\\-40e8\\-91c4\\-7dd9a830fa7a\\-000000[\\/\\\\]+2k8Xd5BREQQbKqiFk0lHUKFCM8k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a54e09\\-c1a3b707\\-67c5\\-4aa3\\-b355\\-08387998ac8b\\-000000[\\/\\\\]+F07hDOe8lcmv22Qm9euEKxLcqlc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cada26\\-07a3d6d0\\-7fad\\-4cbb\\-ae03\\-f0e91e3208ca\\-000000[\\/\\\\]+MBadnlCLIGdmIyZojRNFFRQtRZQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924592ad97\\-3c8363d1\\-036a\\-44ae\\-9a90\\-a8396032ba14\\-000000[\\/\\\\]+0Ova_Hp9cgzNQRx3MVespYEY7Mo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab1031\\-7bb3efa1\\-01da\\-47b1\\-995e\\-57a01773afcd\\-000000[\\/\\\\]+juo8SDf8au41EJS8vrG0VjodfHo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c83663\\-0209cca3\\-b90b\\-4114\\-a115\\-8a96d3a64f4d\\-000000[\\/\\\\]+luTJABXcNqPkEfT0IhmzL1aVIak\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459938c2\\-cf8bc4e7\\-733c\\-4fbf\\-ac82\\-2c5ef96f7fed\\-000000[\\/\\\\]+hdO5S_ePBFyvs8kSfBzchPQ1eTQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5dc67\\-66fa3597\\-718e\\-4f88\\-9559\\-25841be6d389\\-000000[\\/\\\\]+rppPN_aXEHR5od23I_Rohz2cmwE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569a295\\-0fc8287c\\-06d0\\-4f4c\\-b60a\\-3e4dc1a2c714\\-000000[\\/\\\\]+WCVjPI7MzqLBaGBGeCY57FGM1jY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc4fab\\-1429cca2\\-96df\\-4371\\-ba6d\\-dea1a884462a\\-000000[\\/\\\\]+KkIaPona_qWJEYRMraGIYFkFe3o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245751bd7\\-a2793d40\\-ced3\\-4fc7\\-8158\\-716f6db37709\\-000000[\\/\\\\]+KoMm9BtPn3gwf9oSS5d7Rdp\\-VJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bb997\\-b4f5fcb0\\-acf5\\-4006\\-bbca\\-5676dc8cda01\\-000000[\\/\\\\]+nX5ZsonvWo5cEM_\\-_1QILUEDCFo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457b56ff\\-6bf29ea0\\-b1c4\\-4bc4\\-bdfb\\-2c5d78c4c640\\-000000[\\/\\\\]+T\\-3Ut782XCxH\\-fnKJu7tj_VDFb8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c6d35\\-e11cc433\\-4551\\-4ae4\\-91f5\\-a605fc04d730\\-000000[\\/\\\\]+JQ0MKrHfRzBFBvuULV9RXxchQ0Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cc236\\-bf1218ff\\-4ade\\-4709\\-b111\\-e96d522e67d0\\-000000[\\/\\\\]+ZxHSwHVOJHhBjqSO_\\-shb1u0qwI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b190d9\\-701bf3d1\\-5091\\-48d4\\-9308\\-947be6b1b1c3\\-000000[\\/\\\\]+tGg7cVg1zIGKI8YFvShk_uM6mYE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e1f9b\\-a282a1bb\\-17ce\\-4661\\-8e86\\-61a42703e5d1\\-000000[\\/\\\\]+kZS7cEor0MdVq5HNhzydKhlwy7I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ada6e\\-b80cfa02\\-bd64\\-40ea\\-bf20\\-98a5a188c9a0\\-000000[\\/\\\\]+VOdIRPqEgWFDEddnEHgX9vhSnQg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad8e3b\\-dedcee11\\-2cef\\-4129\\-8758\\-346d867a18ec\\-000000[\\/\\\\]+CFstYkKQYLAG\\-zJZdLouvn3kl9A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457eefac\\-bb220474\\-6205\\-4f5e\\-a94b\\-4f691bc71883\\-000000[\\/\\\\]+tD7O9m2L707JvcDMDnWIOqo1QZg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245802a5c\\-2f6a7db5\\-ff90\\-4404\\-a740\\-a57e80030d10\\-000000[\\/\\\\]+S7tUagNc9Qv17PpWdR8XI2os8B4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457064b6\\-f21f5e1d\\-c5ec\\-4320\\-904e\\-0ab5dfe95a8d\\-000000[\\/\\\\]+jGv1kVP0hjxpbg3wmPk\\-5z23qjE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7c833\\-7431c27b\\-7f80\\-4d82\\-b272\\-4e3fda038859\\-000000[\\/\\\\]+1ljTJ0RBThadi2VYpYu1v_E_B2o\\=394(?:\\?|$)" + }, + { + "hash": "97ffd8ad106c1c6f97054cffaaa433017a974443bf50c30e16616b2fcdbd9791", + "regex": "(?i)^https?\\:\\/\\/pub\\-328e4fa3ec3442fb9856f7ec7f059bd3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e52db\\-17099c4c\\-85ac\\-4c16\\-a0ea\\-39b480da85b0\\-000000[\\/\\\\]+DGC5xNz0vhOvbIcJeEQ\\-B979ECU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af702a\\-3a088b41\\-f4bf\\-448b\\-84b6\\-7722cb9a650b\\-000000[\\/\\\\]+itiNsJwWxetXCbN7bllctOTtrFo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245818771\\-ee9935e0\\-559f\\-4b9e\\-a93c\\-e1fdbdd236cc\\-000000[\\/\\\\]+eIXSU1ZF6iP\\-qV\\-eUYpvfDaYfyA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457dc6bb\\-5fcbcf3b\\-67bf\\-4516\\-a08d\\-73316582adee\\-000000[\\/\\\\]+RD5weV6Yxxni3c5AQ6UQ2hRgu\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa6835\\-bdd3e393\\-13f2\\-4452\\-8fc7\\-3aa32df473d9\\-000000[\\/\\\\]+b8QaJcbluNpvTyWMCPWg1HqyLgQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b251f0\\-c8db4cfe\\-f8fe\\-42bb\\-adfd\\-44fa739a7236\\-000000[\\/\\\\]+uZGjX8b5S352j0Fsq\\-LEZJOP59s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a359df\\-cd731448\\-f72c\\-4893\\-a62b\\-a33e687567cf\\-000000[\\/\\\\]+hwbktdaZ8JKy4LJDmM0sJrAR8NI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457719ac\\-f6969630\\-0f9b\\-410c\\-989d\\-4bec35e79fb8\\-000000[\\/\\\\]+yzVHKxm4S4gjm5WveQmC_eq2_nQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924581bced\\-239f757c\\-1f7d\\-4b0b\\-b610\\-1566fbe25247\\-000000[\\/\\\\]+e9xXq3Ai3N4DtQFdkyTNou6ILuI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f74de\\-a574b820\\-aefd\\-45f2\\-9614\\-c15f067706a3\\-000000[\\/\\\\]+2ruFnUzB09EsU3Q0VhpCIaSnDfI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad8dd8\\-b50f22a2\\-2d16\\-41f2\\-b6d5\\-89f390f1e950\\-000000[\\/\\\\]+Wf44cyC1J7kyrjR0i3xmUaGMIbU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cadca6\\-d102bfe7\\-e818\\-4116\\-bc29\\-2c25d02eb68c\\-000000[\\/\\\\]+8sep4CiyNVLLEbQc6eYOzqIahw4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245990631\\-1a2f2897\\-4842\\-4ce6\\-bbe7\\-87725da6791e\\-000000[\\/\\\\]+kCNh\\-L_uy\\-7KzsUsh06oelSBdss\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a93ca5\\-c24bb8a1\\-2757\\-4fb9\\-85a2\\-9de3cd0e89b8\\-000000[\\/\\\\]+WuqLsIkeefAUp_xyfymf5IIL3NQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afe015\\-a8e34cb9\\-ef74\\-4b37\\-9029\\-967f3c5281fa\\-000000[\\/\\\\]+gjLdTl644ExTVJS6Lhig_jM9_Pg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245794a38\\-a897cea5\\-0f32\\-491f\\-9a9e\\-f7fccfb0e190\\-000000[\\/\\\\]+7joyhNBTUJByPto9m6IrtMEemr8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459cf8ce\\-c8a2f348\\-c704\\-4488\\-9d2c\\-2c158e247d1c\\-000000[\\/\\\\]+6C1YEFtBc\\-hpBY4ti3VGQawK9qU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572cb73\\-988af225\\-6e78\\-4c6b\\-8360\\-b9982510fe76\\-000000[\\/\\\\]+lo99YNP6H6eX\\-2b\\-CpWcBNNf64w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c232c1\\-1acd8cc8\\-9bb1\\-4c92\\-bd8a\\-1f9506cb6014\\-000000[\\/\\\\]+QyJ451E\\-VlPC_2uMTAuB1JO89qU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459a9c0d\\-102da212\\-4f62\\-4883\\-a1f5\\-635b6bf983ff\\-000000[\\/\\\\]+jJ_Gi\\-6t1F7vOUNpEL96_mvdHF0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b17ff0\\-238b4317\\-7dec\\-41b8\\-b5ee\\-25e1304d02d3\\-000000[\\/\\\\]+TtyaIzejcms7tOPtSlfE0ZRuSSY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585e774\\-125b19fc\\-95cb\\-4139\\-b1ac\\-762a178d3f26\\-000000[\\/\\\\]+sWN88jjpZBZGJFfzBaI5gkT1tXE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8504f\\-340c8ed1\\-5f4c\\-41a9\\-94e0\\-99c9a4eb566e\\-000000[\\/\\\\]+Q2B766K_ShRJCJxcWrXN0Nde5FY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245828fbc\\-2a9c7b60\\-763c\\-4f05\\-a1a3\\-6672d97688fe\\-000000[\\/\\\\]+XGg8lSq_EfmsuAoU_NgZq2A57Qs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa87ed\\-cd472fa7\\-33d6\\-4a4e\\-b4cb\\-a1cc3cd170a5\\-000000[\\/\\\\]+7lnlVoSktdSdJ6e9YNH2akXeGbc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245662850\\-1d5576c3\\-c9e3\\-4db1\\-8e80\\-92f46b483e07\\-000000[\\/\\\\]+3jyOHI\\-V5iCoSbLU_eW90hIpgSI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245739f8b\\-0b3a7387\\-94c2\\-4b3b\\-ab7a\\-28e45b2a22dd\\-000000[\\/\\\\]+6AA9xXebXT5kZUj1d9t0u01953w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597da22\\-8fe1aaac\\-9881\\-4fb3\\-a19d\\-3972fe451014\\-000000[\\/\\\\]+bhbAdvNmK8hxGTwy429DgsfkOQI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577b1d9\\-1a202073\\-d20b\\-4a6d\\-84e9\\-ee7dcbeeb88a\\-000000[\\/\\\\]+tJbbFhFO_hu8dXQxJBc0fh8NbOc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245affbd0\\-1b3e1003\\-406f\\-4a12\\-9330\\-15a109679053\\-000000[\\/\\\\]+ds1nyeFXFl2\\-oomsiFi0DBHLzvU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b393ca\\-79a0fda9\\-d16b\\-4fe6\\-879f\\-5fe2ea39ad09\\-000000[\\/\\\\]+iJTgE2IIHmK89D0j92JG5KGIwzQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c04018\\-cfd3b492\\-98e2\\-4392\\-9806\\-f0bed35f5915\\-000000[\\/\\\\]+xvLCs67YHGz0vYhDKXskkpF78hA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5dc67\\-66fa3597\\-718e\\-4f88\\-9559\\-25841be6d389\\-000000[\\/\\\\]+LAdCk\\-VomcoGQan4D1SSDd\\-M7BU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae4e5d\\-123d7562\\-684c\\-464b\\-ba3d\\-773fe0c16150\\-000000[\\/\\\\]+XKI5hHczdN6cW0TUq2Trtc5raXA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c8d8b\\-096354cb\\-be32\\-4540\\-b9b5\\-24be3c1e3237\\-000000[\\/\\\\]+ttSAFATjPHfSPUHzAdvNE\\-jpEpk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c43548\\-e2ea2655\\-f2ce\\-4f7b\\-bff6\\-124794a40a54\\-000000[\\/\\\\]+fAMd2wudcdY8hF6Mu0FCq87EdIE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597da22\\-8fe1aaac\\-9881\\-4fb3\\-a19d\\-3972fe451014\\-000000[\\/\\\\]+suU\\-ynVp_Vzw70dx9PogLpKfELo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576e711\\-6d4fd46a\\-6c13\\-4154\\-a005\\-9f065603d246\\-000000[\\/\\\\]+n_9Xb7lZ1BhHN0RDWDCMe2PRr1U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456de8d2\\-e15da72d\\-65ba\\-4133\\-b39b\\-ad2bf31551c8\\-000000[\\/\\\\]+tXo7AK\\-b6e0tP4jLjz1xb5obm_A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c4cd4\\-2ba53599\\-469f\\-4c80\\-a172\\-578ad5a7a93d\\-000000[\\/\\\\]+qw7yCzkMmI5dj3\\-Q3L7RMcvxq1E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4a16b\\-af536646\\-2fb4\\-4b97\\-b326\\-4a7301dcd973\\-000000[\\/\\\\]+NYYV4UfqY33zV3VnXhEYfN1A4bQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582a4c2\\-56ca44f9\\-4835\\-4a6f\\-a60d\\-87ceb1430f3a\\-000000[\\/\\\\]+mPGaBgkLT4XGEWtGc4d4q\\-nhdK0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7fa94\\-5b8403f0\\-2653\\-4cb5\\-9b91\\-d77576d7e806\\-000000[\\/\\\\]+0t6SUKwVixswDMvKGQewwk77ZsU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245715abb\\-b77dca7e\\-d3c0\\-4b9d\\-8013\\-eb46dbd294ba\\-000000[\\/\\\\]+D1JapOsMaL6sTb2sdazyaaYBYE0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca015c\\-e0dae4de\\-47a8\\-49d5\\-b039\\-18dd2a00f595\\-000000[\\/\\\\]+M1lhW1s8P3KJ8sqIyuKJ2eAjv20\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b96a37\\-6d898acd\\-11cd\\-4b47\\-9e97\\-9d6db43e8cd7\\-000000[\\/\\\\]+Opi0DdrKSAcMTv_xS8ofYlCUsT0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e6707\\-3c1d710a\\-f04c\\-4319\\-8bb0\\-c2975ab292a7\\-000000[\\/\\\\]+aO_hhHrcgDjgRrhZ_dVZJU5SyQg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a35a45\\-ae635831\\-bdaa\\-4cf6\\-92e3\\-26766f4239cf\\-000000[\\/\\\\]+MQN3hI3S5th2YCrJJhuWbHfNwE4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8504f\\-340c8ed1\\-5f4c\\-41a9\\-94e0\\-99c9a4eb566e\\-000000[\\/\\\\]+K2BjmqCd884EGFWUcxd55v6rhqY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573a3d5\\-68f6fcca\\-7bc0\\-4f38\\-a397\\-1b6b243b790a\\-000000[\\/\\\\]+TId79nV\\-4HY6yb6pJt2ob\\-AJAMc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245778dd4\\-74191c10\\-bb94\\-4c10\\-86d1\\-eabd6ff30404\\-000000[\\/\\\\]+XGWNgzVJA3E40CcSyovfsNQUUg8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad84bb\\-4740b831\\-ec40\\-4920\\-9594\\-bc39a415d059\\-000000[\\/\\\\]+ri\\-v2g7oADxUcqpI6YD5qUv4C2U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1b4f9\\-dd4f1d71\\-9d95\\-4824\\-82b7\\-fa8e65c221fb\\-000000[\\/\\\\]+FrkamgsdVK6dsdebDBARv22YM8c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b10474\\-98af6471\\-9d20\\-42ef\\-9bf4\\-91b7a921bf3d\\-000000[\\/\\\\]+3Od0gzG3mvLY05JZ9H6sN_9MWl8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e8571\\-e217283e\\-7818\\-4793\\-9b38\\-f7311dd711dc\\-000000[\\/\\\\]+MSXo\\-fS0zbE97IGhwplPtQ9Py7o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4f75e\\-18eeb5ea\\-ae0d\\-4eaa\\-b11e\\-f174cacb7bc4\\-000000[\\/\\\\]+TE2j1LMpdylgFtZI0Iij3jEOL68\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569bb78\\-c27a98eb\\-5971\\-4cf7\\-af36\\-7283ae234343\\-000000[\\/\\\\]+2ZC0MDGny8mVSCGX1_Vbr0DEc2E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cae29f\\-3f5dd110\\-0621\\-4cca\\-91d3\\-c9808d75c70d\\-000000[\\/\\\\]+oBni0mdMkL1YgJIqnjIV57V6gb0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b91388\\-bab93a7a\\-a54e\\-4f47\\-830f\\-17ab3efadd89\\-000000[\\/\\\\]+RVN7HGKPPdsJHdqht9Wk93oX2qc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3578c\\-1a0a442a\\-613f\\-4be0\\-8081\\-c663e5991696\\-000000[\\/\\\\]+0cOScnhuvZelkOboUC6YgOQcLjY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245623414\\-5bd04974\\-8461\\-4ca3\\-8d7e\\-5249149008cb\\-000000[\\/\\\\]+wjzDb1bTi0FJpUryUVRF3DyaMXc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245978d50\\-bebf2180\\-30e9\\-4921\\-a20f\\-1c561b1d664b\\-000000[\\/\\\\]+0LU1oQGZIG\\-RyLDiM4SBPehHQ4w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b62a30\\-2306c434\\-66ac\\-418a\\-93a1\\-5145efd2bd24\\-000000[\\/\\\\]+H0atNqrPNUMb8kCyrTLRg7M\\-a6c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c70d5a\\-a662cd4c\\-b019\\-4d3f\\-8bc1\\-c5096be717bd\\-000000[\\/\\\\]+ABl_P53YO48B4cgzMVnpwFiLCao\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a24a68\\-2658dd7d\\-f9bb\\-4649\\-a021\\-8c4013b60b8f\\-000000[\\/\\\\]+DnZthelobQuzdmw9wUU9LnBwrWM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb3d48\\-d35b7501\\-f69a\\-4108\\-95ed\\-a2866b0b82b3\\-000000[\\/\\\\]+0X2svESyybyYOq0SubaNAbjUqS8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245859fc6\\-e1cb03a0\\-a38e\\-4fd6\\-a52c\\-ef68ba3ca248\\-000000[\\/\\\\]+7SFyRTU06y9ExBl6YK2cf4geDuQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5f177\\-be377a86\\-0a43\\-4d88\\-9a54\\-f8bcd7723e93\\-000000[\\/\\\\]+egobVqHZUFHEow3ihFmhiKdwcXo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b62df9\\-92414334\\-0eef\\-47e3\\-861e\\-ae69d7d7bf90\\-000000[\\/\\\\]+bMhbH3qaYdAFVEvJklnnWaOp4eI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b53eea\\-875612e5\\-578a\\-4d10\\-b70e\\-e124ff17e92c\\-000000[\\/\\\\]+nZLcrjAHUFev2qfVM5aYduO_FTU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b61660\\-775b6a31\\-1651\\-4bf6\\-b770\\-94ffc2ddf47e\\-000000[\\/\\\\]+tMVXuS9f2UUWJJllIpncwd5WN1s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c35c8\\-7c00ed30\\-b97c\\-4c43\\-9b7e\\-277777167b65\\-000000[\\/\\\\]+4yK2psGeDGRmzrBcK0\\-ZwxclhtA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924599011a\\-b9a98e5e\\-6e47\\-4e98\\-a9c4\\-3310fedd080a\\-000000[\\/\\\\]+KlVKQV67_ueUb\\-njVLp9VZS\\-oCw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587ac17\\-db1d02eb\\-4306\\-4c2e\\-8701\\-32a55d261b63\\-000000[\\/\\\\]+qEZcHFhsNiColWJ3yGLRy7MY_Qo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7f850\\-6b30da15\\-0dad\\-4e29\\-9fcd\\-747de3e31e03\\-000000[\\/\\\\]+O51RYCCoOZixwyOZGtb1IRFA7Sk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579e51c\\-f2bf61a5\\-f7f0\\-4581\\-b685\\-7e4c75c242d7\\-000000[\\/\\\\]+15W_sJJ48qtS4pmQStnC7cUDXq8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0b504\\-7e48cd85\\-9889\\-41d0\\-b46b\\-ccc6ee4293e7\\-000000[\\/\\\\]+gUeE\\-3hTFX58PK6vkXNT_k0eV2M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a13103\\-10171bad\\-ac4f\\-4c65\\-9609\\-c41ba332f5dd\\-000000[\\/\\\\]+s5NF0u6wnnfS2rM8naid_AuDf3Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b135d\\-4b0db17c\\-887e\\-4610\\-8b30\\-79a5c4e8670b\\-000000[\\/\\\\]+Ey5\\-OAS6cjnryNOf1M2DTU9pC0o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b2685b\\-651fff55\\-f13c\\-46a4\\-9338\\-276b698394c7\\-000000[\\/\\\\]+UulSXJJSqPn21L3Dl2Hl4Hxu8BM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458aea61\\-376ee88c\\-4f01\\-40fe\\-b578\\-e36650d6d03c\\-000000[\\/\\\\]+c2LsCqFTOZbe9Ma6kVw1SPcihNU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ef585\\-927310b0\\-06b6\\-40a6\\-ac04\\-94d084b06bf7\\-000000[\\/\\\\]+dV5jm3KCw4mxh4GIaTUzk2fsphY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a9f4f4\\-7672cd4f\\-9c6f\\-4656\\-b32c\\-8d93aa9e6a46\\-000000[\\/\\\\]+oyPHOqbZDRX9c2NCi1vcGF\\-Z6bs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b26b49\\-929822fe\\-946e\\-4ea1\\-8a6c\\-e8c76e96ef1b\\-000000[\\/\\\\]+s5UsvRJgaNEbOMIfBOnQkfjIF6o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be4f1a\\-4dfa2ec8\\-3183\\-4f5b\\-bc11\\-3a49119cf1bb\\-000000[\\/\\\\]+q60JIuzUZYfCHs5JbHBDoAC8oM4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245948475\\-d5015345\\-f4d2\\-4cea\\-b19e\\-2130713e691c\\-000000[\\/\\\\]+zRKp5uyFXN\\-a\\-AdVfijPI6CxaqQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f04af\\-ae0bf8ef\\-aa31\\-404a\\-9ece\\-a49897782e33\\-000000[\\/\\\\]+a9XX8JxF_jUxdeMGfuFpAyyRuzg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245837dda\\-4419416f\\-8f27\\-4882\\-83b7\\-a0ed642cef96\\-000000[\\/\\\\]+EuP2vpHGqnCQId9iRbFF_v1lx8g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458bea9e\\-871d13be\\-7446\\-4ccd\\-ab39\\-028faa060277\\-000000[\\/\\\\]+2KIDiTXtN3dlGpERx5xcZB2\\-rpA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ec1e5\\-4db693d1\\-b4ce\\-47b9\\-a10c\\-607db5a2ee65\\-000000[\\/\\\\]+LpTXs86f1Ty7HPO4vHEWgLCO6xQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924593034e\\-2d2c817b\\-8812\\-4eee\\-8f7c\\-a6fd22d8143f\\-000000[\\/\\\\]+fTQbrwj2y8gBGyXMf\\-nD3Trcf1Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cc77a3\\-67f4f9cd\\-031c\\-4dbf\\-9355\\-85a04e5b92b9\\-000000[\\/\\\\]+VfURDLuzBOL1zoyB21K2snjWRnM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e9329\\-e1b155cc\\-8521\\-4021\\-91e5\\-bb141b3f3b2d\\-000000[\\/\\\\]+8iKbMvMZYvTvPaJT2tm\\-8rpxgms\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585cdb7\\-b2db5c45\\-bfe3\\-496a\\-b43b\\-979bbbd1c96f\\-000000[\\/\\\\]+c30D3WGIFDUe7v8q2qW_8bVXrnQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b425ec\\-9b1330bb\\-9e80\\-46a7\\-9fd5\\-040313bd643a\\-000000[\\/\\\\]+elgailc4jglB5D9oY9NX_jejAXY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a79009\\-498c0825\\-1f89\\-4013\\-8e30\\-dd202cc2276d\\-000000[\\/\\\\]+1\\-9qQVjGgDxMrYUZ_iPrM2MsZr8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585ba4b\\-aecc45a0\\-51ee\\-4698\\-92e8\\-27a344d9d070\\-000000[\\/\\\\]+Uv3bUQgE2Xeyasu7MOAhM\\-a\\-QpA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8fa19\\-1fddac00\\-98d5\\-4584\\-ad38\\-2edd02962732\\-000000[\\/\\\\]+6fWPrMWZfmjboJviETmDg1ke7_E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd8d8b\\-8bbd2cb1\\-322a\\-48d2\\-b4b7\\-2ca6b685375a\\-000000[\\/\\\\]+IrJS3TO3QLpXmYHs5BPbkHN\\-0V0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bde99\\-35b8d33d\\-5458\\-46a5\\-b9c0\\-3a41ab89c348\\-000000[\\/\\\\]+h_J9v5hX73ib1rZHIRxxJuv\\-1L4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459867f2\\-317ee8cb\\-f44d\\-47d5\\-a8b2\\-442972fcf514\\-000000[\\/\\\\]+nw3upNXxoFU3_6EsafyYIFdqSU8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245962347\\-4cebf6ce\\-156b\\-492b\\-90be\\-997c570c8cd3\\-000000[\\/\\\\]+jzdrlOZu9CiEh\\-5fRin5XQ6f9rw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458dc0f9\\-da6a00bd\\-945a\\-4e92\\-8284\\-1b6b23c7104e\\-000000[\\/\\\\]+bhMR406kcN_06SrpqXqNqCSbEoQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a2b00c\\-1b2b668d\\-502e\\-43cb\\-9ee7\\-9892459dff71\\-000000[\\/\\\\]+5tl7p1PsMWluJG\\-LP\\-\\-gv93iOu8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924591cd24\\-00025ef1\\-9250\\-4809\\-b0ec\\-93c1d74ecd0b\\-000000[\\/\\\\]+V_GlawV_IOP_V\\-1sI2D4sXl_1iQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c37d36\\-9d6865d7\\-1ecb\\-45f3\\-8e88\\-8a5bbfce4270\\-000000[\\/\\\\]+yOQNoA_MK_6ZORph27loXM1C7\\-o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b784c1\\-c411b724\\-c3e7\\-41af\\-bbb9\\-a415170a9e33\\-000000[\\/\\\\]+_dgX9s23v7ngdL\\-SFJLMUWkcUJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599b074\\-1fd09e2b\\-702e\\-4632\\-89e1\\-2102ffb778bd\\-000000[\\/\\\\]+LU8dwGuzQJnPNWdZSSsgHhD_Cgs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e7458\\-a9782b55\\-3c6b\\-436b\\-bc88\\-1f3380a96f87\\-000000[\\/\\\\]+bxHONPIOECXE8VRTWwA1RfcIXLg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459e872f\\-20796a48\\-1be4\\-42ff\\-8cc6\\-05919304272c\\-000000[\\/\\\\]+jelDVDVxWZBkXJtBP6DmyA1v6gw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587d1d3\\-3dfde9ae\\-671c\\-43ea\\-845e\\-ee5c100daac3\\-000000[\\/\\\\]+w6mBDGcz86qLyli\\-1SVNYQ\\-Els8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a6c888\\-f440eaec\\-0ac0\\-4498\\-9ec8\\-ccc6c6330f44\\-000000[\\/\\\\]+ACJ6kho1xfdwE7xSQnZlL5jka6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a39be1\\-6e71d92f\\-03cb\\-45cd\\-9f16\\-5b35d31141fd\\-000000[\\/\\\\]+Z1jq3km3sCpOBn0P\\-4akNjdJ8Ps\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e499c\\-5763dcec\\-4294\\-4086\\-899f\\-7c64d189c32b\\-000000[\\/\\\\]+nNjazV64kd\\-wnaEp2A1VMaSpPHQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245739fea\\-52eb6e9d\\-7673\\-451f\\-84ac\\-6825a18ee1d5\\-000000[\\/\\\\]+S9gq0X6bknV8bS65oh\\-EXCI0VYs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245987026\\-ed323fd4\\-9acc\\-4f6f\\-b635\\-5afe3d71f531\\-000000[\\/\\\\]+adLBsEE8sTyKG8V6QJT17GZFygU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924588b02e\\-59ff7605\\-0657\\-496f\\-bda6\\-51e8718eef7e\\-000000[\\/\\\\]+WcyV9kx3Zu1ZpW\\-9GX1YP5Fwlk4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b54de0\\-eee21c90\\-3c31\\-405b\\-b7b9\\-a33a3f030d6e\\-000000[\\/\\\\]+8QY4EgW7vQO\\-A1K69dRwaGeadq0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597e77d\\-a3c2f532\\-380c\\-4e77\\-98da\\-023234e64911\\-000000[\\/\\\\]+qXJMqM67dJ4rF630jZtIqqgdXaI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c7103\\-076a805c\\-5003\\-4b92\\-8abf\\-c4a1e0563e5f\\-000000[\\/\\\\]+VzsDB0stQ\\-n40Eqpro2kVzDuz9I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c907c5\\-04f9512f\\-5620\\-4389\\-851c\\-4816479a7967\\-000000[\\/\\\\]+5lF6zaDSCAixye1gyIlQvJfS62g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b54dea\\-8988d25b\\-60a5\\-48c4\\-a163\\-16ced8864ffd\\-000000[\\/\\\\]+mNA4mpMpcULF8NkwB8WkgOmsLQ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c38c1b\\-f0fbd859\\-91c9\\-4d58\\-b3e5\\-5b81a1746e3b\\-000000[\\/\\\\]+kePsUQi\\-3ZofEj6PZanhlEy22Cw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457077ee\\-88f94b95\\-c25d\\-4501\\-b58c\\-93d3198b7dfe\\-000000[\\/\\\\]+aVlP4Ku\\-mepq1SGZgk57PjKiorQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f1288\\-ee540336\\-e9dc\\-44f2\\-ab9f\\-dee1dd3db101\\-000000[\\/\\\\]+Nd1DSoLkFD6AyyGL1SQkyELcCd4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585d580\\-12ed23ff\\-c43e\\-4cfb\\-ac3e\\-f377122b24f5\\-000000[\\/\\\\]+RGLVzyTAtQDIBayyQLjEzwzLqIw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb6ee5\\-8f3bf30c\\-65f6\\-4b7a\\-9d45\\-7dc5de969404\\-000000[\\/\\\\]+wNxShYVCURAbtPv7f7zDvpr3daU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b92c6c\\-812c8d42\\-5ad4\\-441a\\-b8c2\\-0e17c6e2bdd5\\-000000[\\/\\\\]+tvibPx8LAryFMLQNpVkQog4bwas\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8361f\\-3eb5ca0c\\-cf64\\-4ef1\\-b4b1\\-c7d639381d7c\\-000000[\\/\\\\]+0\\-fQ6oBb7fSEtzvAMCbTIrmRw_w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a2d2c1\\-a3617079\\-0e46\\-4707\\-b500\\-c32625048057\\-000000[\\/\\\\]+GhoQ76DA8KX8K7jVFUglsOTQT54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b25751\\-84e0a9fc\\-e5cd\\-4c6d\\-a688\\-a3ee606cae6f\\-000000[\\/\\\\]+uzLJFBDGQbEkE2nuTKnEt_4dl9Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a49c77\\-7a1dd7f7\\-49a9\\-4447\\-b21d\\-06b4a54ff05a\\-000000[\\/\\\\]+Vjto3IAvN_bCgC258dWkk6U9V6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a2929e\\-ba1d9942\\-06da\\-48fd\\-9abd\\-25be83be5509\\-000000[\\/\\\\]+4Hzhm8jxIVuAnCDRRTn_PVvkUVU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a359df\\-cd731448\\-f72c\\-4893\\-a62b\\-a33e687567cf\\-000000[\\/\\\\]+_cjs895mPNz\\-bgo7r_jVn0tpUe4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c17cee\\-3315ecf3\\-e3a8\\-4b46\\-8cfb\\-40c759895f8c\\-000000[\\/\\\\]+ivtdr1R55OlykdwxQaINfLahBGI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924590ef72\\-ec8d6f96\\-88fa\\-4472\\-8cc6\\-611da06edf90\\-000000[\\/\\\\]+O6sFyuem0S8OXlK53re5cUeLo58\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bacff\\-72883edb\\-82c1\\-4b42\\-890a\\-5fd1cd1c242a\\-000000[\\/\\\\]+rdibLsDyKhnrnBnbxUdvSjTOySA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b69b1c\\-917bae6b\\-fdd2\\-498a\\-9499\\-e9900093e2e4\\-000000[\\/\\\\]+5Ca9_GWOjhNarZw6ZYJby1gVy0k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457dc6bb\\-5fcbcf3b\\-67bf\\-4516\\-a08d\\-73316582adee\\-000000[\\/\\\\]+Z0yuqahkRfe3SMYCkSTInifKtVA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b926ab\\-6ad9ae74\\-c123\\-4567\\-affa\\-1183d84e0b71\\-000000[\\/\\\\]+pT0XfeVg6ipjjWr_Q6q1pmfvLVA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b054eb\\-78bc3959\\-d6ec\\-40b5\\-b429\\-cb6060033913\\-000000[\\/\\\\]+09jf\\-0VqJaFAzn_MgWNwFJFlBBc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9413a\\-9f91132b\\-ef31\\-48ee\\-8930\\-2b87d2adbcf5\\-000000[\\/\\\\]+vt0nS2C2dEjf7VSgAsVndo8kOqw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ed91a\\-12c12747\\-8476\\-4129\\-9dbd\\-6abc301bfc37\\-000000[\\/\\\\]+NdJ46idwlBbbBIrkJ5UbUp57l3Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4f75e\\-18eeb5ea\\-ae0d\\-4eaa\\-b11e\\-f174cacb7bc4\\-000000[\\/\\\\]+kfacq3GIuiswbIXcUhNj3WNcmHY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cabe7e\\-fb480b09\\-e301\\-49c3\\-9581\\-9e45e231d83e\\-000000[\\/\\\\]+sUfue5c0zmFo0jMj4COa5wDDpjU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456119df\\-8f5f6da0\\-43d0\\-482c\\-baed\\-f022b4e0ad93\\-000000[\\/\\\\]+CQM9J2OoXdgVOZVjPmypijiDUn8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b66646\\-e1beea1a\\-bb3c\\-4494\\-91c8\\-05bc895d0721\\-000000[\\/\\\\]+\\-8l\\-rKOc4\\-wfDyG_DY\\-ekMkwuAc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf68ca\\-5cc7703a\\-55db\\-441c\\-9093\\-6716199867e4\\-000000[\\/\\\\]+Hcua1e7IXExk_OeYJRLJS_9WbBw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245743c23\\-2f7accca\\-17b6\\-4bf0\\-a7f7\\-c57e26f4c12d\\-000000[\\/\\\\]+1B4\\-Mr2OTSdeVmC1sij5r4X9ZqA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cba9c1\\-6d439ad6\\-6924\\-4e98\\-b51b\\-6e0bad7762b6\\-000000[\\/\\\\]+hsbhU\\-YicC3ASFqKTZiZppGOfSU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e8571\\-e217283e\\-7818\\-4793\\-9b38\\-f7311dd711dc\\-000000[\\/\\\\]+_7IuySGXwg9TlTqredxKr4nwqv8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b1996\\-a95301a1\\-2de5\\-4bba\\-8011\\-c277abe56533\\-000000[\\/\\\\]+JlTFF8GiIpNpzXwjUTgOW7ln9ew\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455db3a8\\-3a88f245\\-c1b7\\-4a20\\-9ab0\\-a16754819549\\-000000[\\/\\\\]+1RkgXSs4b7zFe2wkdmEauqyHB44\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c15de9\\-a0960b83\\-595e\\-4442\\-8631\\-1fbf49a02f85\\-000000[\\/\\\\]+LKcMV_YU99omwlzjyZdOoI5a\\-WU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456eb890\\-49b7cdf4\\-f651\\-4d11\\-82a8\\-10345fbd2796\\-000000[\\/\\\\]+sZ98jjU4CFmFN_FnD6JEIbCqrTA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577500e\\-f9f59a0b\\-097e\\-4ee0\\-99e8\\-1628cb0f38a2\\-000000[\\/\\\\]+bu8ZjaUbHuLTKZ9WntDOzz4Al9c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d3f2d\\-309fb173\\-10fe\\-4c67\\-9fec\\-d4293a28dbbd\\-000000[\\/\\\\]+uKPyNM16mlUBObD6BfAcBc6W7B8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245828fbc\\-2a9c7b60\\-763c\\-4f05\\-a1a3\\-6672d97688fe\\-000000[\\/\\\\]+W_Pu7VvxBBytOxepMKEuEmrPfAg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afc792\\-f9defed3\\-a7bd\\-4c4e\\-ae9b\\-8f10c3ff2c85\\-000000[\\/\\\\]+7LAEw2X1_02H2liFeUp3FzSF6lc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c934af\\-546774bb\\-4ef7\\-4853\\-b4d1\\-8f3bfab381b5\\-000000[\\/\\\\]+TCLtm2931sKnXEYaO7iH3koBrrY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f1288\\-ee540336\\-e9dc\\-44f2\\-ab9f\\-dee1dd3db101\\-000000[\\/\\\\]+FZGYdnebn5m3XJjEU6DMMc3Igw4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac1cd2\\-000af7e1\\-5845\\-4bda\\-ae9d\\-22b3004cc1e4\\-000000[\\/\\\\]+OVLfsuxYXOVxUbRWdexwIZQNjx4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b012cb\\-684cd259\\-2f2f\\-4b51\\-9849\\-93ca97253aca\\-000000[\\/\\\\]+dcrtLPc3w_ILRKK7qiizyAFeY\\-I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad6a3e\\-2a027394\\-fc14\\-4a45\\-8343\\-9476503c3e5d\\-000000[\\/\\\\]+zXwxmPp6kpD\\-PjPwbyKBfoLNh7c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245939135\\-d338d1ee\\-992b\\-4984\\-b66a\\-13d9f682d0b4\\-000000[\\/\\\\]+OEe1pUwqZogC0v29TDCqK6p3Sd8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457303ab\\-e8b31ba6\\-a1ce\\-4d40\\-9fde\\-e4828faa7cf8\\-000000[\\/\\\\]+\\-oYlY3EqPgIurOIQDlUEe\\-HIZG8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1f979\\-a043d66a\\-89a4\\-4a2c\\-9859\\-58024ffe8984\\-000000[\\/\\\\]+hLVhlNrPL_AQzwUgosoFXDfbYnA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f40b0\\-2833e845\\-7a01\\-4c6f\\-8efa\\-7f6ca72e01ba\\-000000[\\/\\\\]+oU4FvREtoK7Da9UpIP8x6qcSIHE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c77ca\\-a1fd4aab\\-f6ae\\-4a50\\-b199\\-84189a814d55\\-000000[\\/\\\\]+iMJhzezOsFXK18S_hBjUvTCdlRw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a2b3d4\\-1371f6f9\\-aa55\\-43db\\-b17e\\-17ade97c3d2e\\-000000[\\/\\\\]+Ch1Rb5I9C_WTrlQ7pf1F8w3z29M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245673e47\\-3f539aea\\-619b\\-490e\\-9a1c\\-966a4c97b001\\-000000[\\/\\\\]+KTgDlFZ8j2kc6ktvyEjaa3R7fxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb0eb2\\-265adc01\\-ee76\\-46dc\\-af6a\\-c15c25aa72ff\\-000000[\\/\\\\]+t8ReWxYFEwsUQJ58BjTfaAbDCNA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9bdf8\\-f1374d12\\-fbc6\\-4479\\-a7c4\\-686b5f97c4b7\\-000000[\\/\\\\]+rrUPloDbaIr3TMRehlPZJi4C2FM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7fa94\\-5b8403f0\\-2653\\-4cb5\\-9b91\\-d77576d7e806\\-000000[\\/\\\\]+Q7MGKyaLkSSvbYcxYimsUZQn6cg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570c21e\\-5f653312\\-58e1\\-4f60\\-9e21\\-7bad8ef2e278\\-000000[\\/\\\\]+sAH1CWPYDRLXQZIvgPVNkH9RKaI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456b2441\\-8c1f6f4e\\-648b\\-4a54\\-a034\\-2954edc5c70e\\-000000[\\/\\\\]+RAI0EK1c\\-RRcEpkOldlpaTYb0Vw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245833f73\\-1081a08f\\-bb22\\-402a\\-a34a\\-9f4c2f8361d4\\-000000[\\/\\\\]+IRJCnU5aeAm\\-VOhWjy5bUCOyJUI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b21c2c\\-59998c87\\-0c71\\-4c8f\\-822d\\-6ff45a4b3f2b\\-000000[\\/\\\\]+MI14djPgFQYr66o8dMwICfWpI9Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245896444\\-041ffb9f\\-8935\\-4ed5\\-96f5\\-76e69fb45329\\-000000[\\/\\\\]+r2iXpEOZz3WWh0UsK7G9P3Ub7Vo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a325fc\\-48693fb7\\-cc54\\-4d45\\-95c3\\-ce7ac2a5dd75\\-000000[\\/\\\\]+Sl_LDuL6Aj\\-ZG3q5Kld2iLYoWLQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6f543\\-bfc798ea\\-d5ba\\-4e69\\-a4cb\\-87d6c0f59ced\\-000000[\\/\\\\]+4XQaeX29CjfJ1Y75A2DeO8Km1ZM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c140a7\\-8165bb30\\-b498\\-482a\\-8fcc\\-c3c8d9ae5c81\\-000000[\\/\\\\]+RVty\\-k7LwEL0_w6v1WoJkt_ZO6U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459892a8\\-14415d8d\\-4a35\\-44a0\\-80e1\\-3f728fa018a5\\-000000[\\/\\\\]+fWNfE56zKAKsKuQK\\-RGepCDmZzU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0d12b\\-38ac1feb\\-7028\\-4bde\\-915a\\-3bd2a152f30a\\-000000[\\/\\\\]+7ZCdkRMzGf1eZgSlpd\\-39q9q3\\-g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a5f06\\-5ff4a2e8\\-69f0\\-4f32\\-9b8f\\-64ed01eb2a6f\\-000000[\\/\\\\]+S9gv0wDgdVK_iU9P0Eu\\-vCtskz4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bb8e2\\-42dc46f1\\-67de\\-4721\\-a8f9\\-25173b11f404\\-000000[\\/\\\\]+VutDUEwYQZ3aUSN_UY1pY3tC1o0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596fec0\\-7d577a7a\\-72aa\\-4ea5\\-97f2\\-eb51b39ed41d\\-000000[\\/\\\\]+FkbVZHQhz_yy\\-tIPduA5P4qSXus\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570cd28\\-b879e34e\\-ea3c\\-4e38\\-bcea\\-4fddc76f3dbd\\-000000[\\/\\\\]+egix\\-BfkLuhoPdb_fTNvkgJZo0Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b1b46e\\-e7e26f53\\-d595\\-4f31\\-9687\\-9f66f17ece1c\\-000000[\\/\\\\]+LBht\\-xKMGETbDl0VKaLIgD5aaU4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7eaca\\-5e3e4324\\-fa84\\-4d92\\-b113\\-441337638d0e\\-000000[\\/\\\\]+W21Yyz4rdiKVkmvyCpXUq_0sTBc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459df888\\-905e931e\\-abed\\-4c7e\\-bf1a\\-48fed101eb76\\-000000[\\/\\\\]+QM0w9MuhqU4BviYEwdIzReufwHA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ee6bb\\-236af04d\\-cc27\\-41bf\\-bcb2\\-7086043647ad\\-000000[\\/\\\\]+00ZC1Y8KEygf2U10\\-V7zHD4wDow\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b7f97\\-f338afbc\\-0fa2\\-47ec\\-b50b\\-609467a721c8\\-000000[\\/\\\\]+OdpSCPZHS6XLYZaim6pzalePNS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8d089\\-d9fc446b\\-e044\\-47a6\\-8f4a\\-5f26178082e4\\-000000[\\/\\\\]+c7kELSK_rZsnO2ylpB7BbAE1RS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245730a6e\\-e890ff29\\-d42d\\-4711\\-8d10\\-df2f720eb0cd\\-000000[\\/\\\\]+oRdowN_PB3MWLaPWgO60u_EU_10\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ccde6f\\-0f606024\\-2aa5\\-473a\\-821a\\-ad4f70960692\\-000000[\\/\\\\]+378b3XkfQsdR4I08foPAq6StH9Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af6713\\-076fb53c\\-11f5\\-4993\\-88a8\\-8a7f1be67391\\-000000[\\/\\\\]+q0zird3NFYAKEmsmK8JrINjuRa0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245779c06\\-d473f351\\-08c0\\-40c1\\-88dd\\-09ff118bde89\\-000000[\\/\\\\]+Qle8JRIcjvLa769YVHAsJzCLYM8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589618b\\-646ff09e\\-02a5\\-42a4\\-ac50\\-d7466309b53f\\-000000[\\/\\\\]+k2DliLO9uptbVx0Cp2CnwCqnxSI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457281b2\\-020f60b7\\-64a9\\-4d64\\-921d\\-ff7c2f6372b8\\-000000[\\/\\\\]+x4B8nlRM_dD3VE1teUHVIMFo604\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aff5ed\\-e36bef67\\-e614\\-4cc0\\-9f72\\-35383309d7c0\\-000000[\\/\\\\]+fIoz_VBRkKFgnOovhj8TdSfTN8Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b222fe\\-034d9578\\-8299\\-4f5c\\-95f6\\-8ad541df4248\\-000000[\\/\\\\]+5AWuGsx0Ffy6NX\\-SXhHi_jboVbk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924592ad97\\-3c8363d1\\-036a\\-44ae\\-9a90\\-a8396032ba14\\-000000[\\/\\\\]+NDMBllvbv\\-3W10QuRUBmjXd41sA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be7d12\\-00cbacb2\\-681a\\-47f7\\-b78e\\-b945113576fb\\-000000[\\/\\\\]+H6oNAUub466RtqrdTwQk7_ieIqE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d0094e\\-1e613f6b\\-73e6\\-4892\\-8599\\-de5d1793d177\\-000000[\\/\\\\]+ZXx9THTTmwX8TVd44xgbMwRl1YQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfc165\\-db518473\\-27d2\\-4ed2\\-a2ae\\-5cc9dbe995f6\\-000000[\\/\\\\]+OKgtzyODroQOzijcxkB9dPTB2kg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245770a8a\\-0b7901f8\\-d2ce\\-4cc2\\-a204\\-bc9fd11225fe\\-000000[\\/\\\\]+Fuzt12UNB8_ItbDn95HUP84e03s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575d584\\-b09fcc7c\\-335d\\-4ee9\\-9cb8\\-eb9d20ec6cd4\\-000000[\\/\\\\]+FrTIvN0CDY377X0Whr1hnsk0U\\-Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245779f47\\-f1f4a1f3\\-eeb2\\-4d67\\-bd79\\-cc3aff8c5134\\-000000[\\/\\\\]+z4gY8dMtzA2KcxNxkqmZWyH6luE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245955676\\-988bc325\\-d941\\-4b0d\\-a264\\-81ffe33c0df9\\-000000[\\/\\\\]+vnHIQT7xtjZwZu2bdkCHxmpFAUY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456beb3c\\-c1fc0405\\-0eb3\\-42d9\\-b5bd\\-e79a3ec4cc8f\\-000000[\\/\\\\]+7qBUVNWjJqGfEz24xM7MvLkK95Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c10c12\\-3aa29782\\-f20b\\-4a73\\-96f4\\-6d2fb75886cc\\-000000[\\/\\\\]+CfzWa44lGxU09\\-mDfOHtYNDDnsk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be27fd\\-543f9fae\\-d73d\\-4f8c\\-a808\\-21ec67182783\\-000000[\\/\\\\]+bwhnntlv4H99op\\-FXK0l7qudX3w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abd0f9\\-c1b829df\\-b44f\\-4b3d\\-a22b\\-991d94ba4cab\\-000000[\\/\\\\]+lA0nqmEsTxLErP11mGckFG9m8A8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a372bb\\-d971d909\\-2463\\-409f\\-9679\\-241796bc153a\\-000000[\\/\\\\]+QDyJTw5JzcBUmB6hwv6O6GCmWWU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c5417\\-816b4023\\-2837\\-4346\\-9970\\-396246ed6a3c\\-000000[\\/\\\\]+p3QU28eQ9idG6A6Q_lQYc36ypF0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a10cf7\\-6be559a7\\-29f1\\-4a58\\-ad4d\\-19a8329fb0cb\\-000000[\\/\\\\]+RZHOaANpRQ8ol5mso5OKVk9srx8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b22d58\\-71119499\\-f30a\\-4901\\-8726\\-69fce996a0b5\\-000000[\\/\\\\]+rT0lbeDAc5viYh2v8VDK3y5dgPo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5ab5a\\-78913894\\-73ad\\-46b1\\-8769\\-cb55fe2ce37d\\-000000[\\/\\\\]+N1cuJDh23LHsnSTPKoktAEkj6hU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ee66f\\-12c2a4ab\\-16d5\\-4a4f\\-a249\\-927cb1068fa5\\-000000[\\/\\\\]+no6tgD5pfIa8SF7POtUJBrnoWhQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab1031\\-7bb3efa1\\-01da\\-47b1\\-995e\\-57a01773afcd\\-000000[\\/\\\\]+R6i0CIT5Oc2VphycgekaDpW6SDk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585cdb7\\-b2db5c45\\-bfe3\\-496a\\-b43b\\-979bbbd1c96f\\-000000[\\/\\\\]+KQZLP5hzZugPsbzvlAoV7enZCSA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b9dc4\\-9f7d7d70\\-59f1\\-4cdf\\-adca\\-6d3df25700b8\\-000000[\\/\\\\]+jgtfSI0yPiyOSIdaEQeJoqTQd6Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582d6a8\\-d476d91e\\-d9c9\\-493c\\-90c2\\-0e44d6e3ce62\\-000000[\\/\\\\]+fx6mHp4CYQivU3cetookCWr\\-7nU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abf0ff\\-4b19b704\\-453a\\-4d77\\-a806\\-c0911115d479\\-000000[\\/\\\\]+zZRAibxh3KSHQ\\-mK0LA9XU\\-\\-4OU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa264c\\-c7598351\\-fc79\\-433b\\-ab87\\-6e7fab4f755e\\-000000[\\/\\\\]+8Pa5UT38N69qmzKQQ\\-V\\-UCjP7WM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924599acea\\-740e91c9\\-c0e7\\-49a6\\-b65d\\-185571a673c3\\-000000[\\/\\\\]+0JfZJz2IGONE\\-kHWYX4oCZckno4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245816483\\-817ebad4\\-21c1\\-4109\\-a316\\-82d1138bd726\\-000000[\\/\\\\]+WQEnfNEfY2gCYngfRW_wPNZXWUM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a61119\\-867d33ba\\-8ae4\\-41bc\\-bca1\\-954f490585fe\\-000000[\\/\\\\]+C9qIsIzk6Q\\-9V_nmcvqCsp6dDxs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c82a2\\-65e066fe\\-4790\\-456b\\-830f\\-552b20c3424d\\-000000[\\/\\\\]+dpF2ZgAM__6Zum1WaMKClpB5lGU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245adf55f\\-c5504765\\-b42c\\-4405\\-b46e\\-cff0f38e01f9\\-000000[\\/\\\\]+QbV4htR\\-5jnQPh_DuH6berd6rqA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587c36d\\-8be4f99a\\-5609\\-4766\\-8e1c\\-cab35dfe4540\\-000000[\\/\\\\]+mPeoDKc0Ykvpw4RNWdIGh08T0VU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a79394\\-c5f5f3f3\\-e1bd\\-4b7b\\-a674\\-87c54941164e\\-000000[\\/\\\\]+GZfN9evpglEo5vsiJNvavc1Nl1E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb234c\\-7e20b6d4\\-30c5\\-492b\\-953f\\-1a4ba7de1314\\-000000[\\/\\\\]+hx3pmHSZaY31eU0Wb0glZjA0tVM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582fa1d\\-842c1ddc\\-a2e6\\-411f\\-800b\\-91dfba924e0e\\-000000[\\/\\\\]+OPKbGUKFw_IpuR50iO00emrzQUA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457275d3\\-64f33730\\-bc62\\-4e26\\-b915\\-554b2ca1be12\\-000000[\\/\\\\]+33cxYEMVJDBZvHitZgYHBiTNoSw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594bfeb\\-e4fcbc69\\-6f65\\-46ed\\-97d5\\-ad64069e18c8\\-000000[\\/\\\\]+oxFa6WN9lbm2Py_ggGzRpbFMJB0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f0447\\-17b38d18\\-e06e\\-457b\\-a61d\\-887e202a3351\\-000000[\\/\\\\]+D9C_6kixnK9FAQ6UWutA3fVZ7sA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aafef0\\-d4efaef1\\-dbef\\-40fc\\-9f69\\-ba74909a4e96\\-000000[\\/\\\\]+dLQP01ZVX8Ur5eWMQRB6itTraNs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5ab07\\-1f5de4d5\\-3f8e\\-4f7e\\-a06d\\-99f424ff24e8\\-000000[\\/\\\\]+1Dm8OOaCe7Yc_aweUVbOCzOnxoI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a27afb\\-d07b9dc3\\-fa39\\-4c71\\-a4ba\\-b01f8ac403b5\\-000000[\\/\\\\]+wDo3qEKqHOK0ujLtd1hLhXKtKXM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575cfc0\\-638a5ea3\\-0a01\\-4eb3\\-b711\\-49f862a65354\\-000000[\\/\\\\]+Ngc4Avwl\\-m3l8qG0dalfUqq75cM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ec247\\-7578c086\\-5d99\\-4137\\-980a\\-e78f832e1a8d\\-000000[\\/\\\\]+uGasC2sP02LQ_rYWOANzWiQKShQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b58727\\-17daf443\\-4d3c\\-4cc8\\-90a9\\-a7687f4a6baf\\-000000[\\/\\\\]+PtMaPhW90PpdtcyG3OeoFH_uV3s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a54ed8\\-5088f692\\-8131\\-4cb1\\-bfa6\\-bd7820f98165\\-000000[\\/\\\\]+0AeyG8NFyDDAyH7q8UaOxJlrrPE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c70d5a\\-a662cd4c\\-b019\\-4d3f\\-8bc1\\-c5096be717bd\\-000000[\\/\\\\]+DVrylx2lxOVlRwXcODUYr2PwT8E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c7c76\\-61a04e9a\\-6d3d\\-4a13\\-ab7f\\-9a5155218e7c\\-000000[\\/\\\\]+Bt53tsw09UIshmb_Q4NEUOH6TjI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf0b44\\-27be7ea5\\-9ad8\\-433d\\-95b6\\-a4af28411669\\-000000[\\/\\\\]+Y\\-jNJN6QiNmiGdnPNzQtsnVwitE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfc165\\-db518473\\-27d2\\-4ed2\\-a2ae\\-5cc9dbe995f6\\-000000[\\/\\\\]+C_mrC55C27Duv9BJaR1tWoR0uCk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1e5d2\\-aae07670\\-d77e\\-4100\\-9a76\\-b4493e0f00c0\\-000000[\\/\\\\]+m6qgeaDbncZwiCFsVlJSg1eLB3Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245825b43\\-435e1e96\\-2bdd\\-401a\\-b6b4\\-dc0e6bc13441\\-000000[\\/\\\\]+\\-p2t0nTmoheaY159S0Az0e6JWLI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af90ac\\-db66c4d4\\-cb82\\-418c\\-a4ef\\-407ec7b10cbf\\-000000[\\/\\\\]+mtPtacYQJoFHRdWeIYmgxl_Z1x8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456abfa4\\-bbead976\\-896b\\-4ef2\\-9dc3\\-6b510010e3d8\\-000000[\\/\\\\]+6RvrH8A36iGnwNmdf560QGXyj\\-s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457077ee\\-88f94b95\\-c25d\\-4501\\-b58c\\-93d3198b7dfe\\-000000[\\/\\\\]+Y9\\-0a7TS5RWlLmYevDAK0ST0QR0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245715e47\\-f5bfc09d\\-f493\\-4fe2\\-839a\\-176d162c906e\\-000000[\\/\\\\]+ObZaOD1EKd9qWeod5U2adq3wlKY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9ca91\\-19d020b7\\-44b7\\-4d67\\-adbb\\-e5f0bc15978b\\-000000[\\/\\\\]+bF44gaz95E7s9TpNxiCosGWR\\-jU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245612a07\\-78438e6c\\-6ece\\-45c6\\-9d25\\-f40e31d3792a\\-000000[\\/\\\\]+Mj9ikBmrqoCrYr2WxsRqZUCy95w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c74475\\-67b22005\\-e50e\\-4506\\-80dc\\-1320eb61f5ae\\-000000[\\/\\\\]+Mk34jJdt1EIbBz7XxRA8eYG6RIw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459aca1d\\-67bf4514\\-8502\\-4eb4\\-b5c6\\-b3f765a3edc0\\-000000[\\/\\\\]+Uq14Mr1dRQizDfQs80AeRn\\-HMl8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b1ff30\\-3034a877\\-5930\\-41cf\\-94d9\\-6ef6205cce50\\-000000[\\/\\\\]+NTo4vKKhkfXV5Ayghjzik3dE\\-so\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aec327\\-caf7f80a\\-5e64\\-4adb\\-a040\\-fd7e0969dbc4\\-000000[\\/\\\\]+4Vuh8l64\\-yRg\\-OnKETd\\-ecB\\-Mis\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc996a\\-d922ef48\\-160b\\-4b47\\-97d4\\-128d6c7b512b\\-000000[\\/\\\\]+pnFvopi_mOe_jlzzjF9Q94Z9yww\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae5734\\-6f8ba77c\\-bc04\\-40bf\\-ba78\\-ab9d4f09c44b\\-000000[\\/\\\\]+wKPFqO9wc44QA2eLBnsww1eAVyk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aff5ed\\-e36bef67\\-e614\\-4cc0\\-9f72\\-35383309d7c0\\-000000[\\/\\\\]+IoWmqLmH807w3Cc1ELAiQJLFqQU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245996ba5\\-8c5ca87d\\-c7d8\\-477e\\-b952\\-41fe3a445d02\\-000000[\\/\\\\]+av_NteV6pCW8EqcZKMSN6TnysUM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cbb98a\\-b8b1fb9b\\-ad62\\-4200\\-9162\\-b71552bd9638\\-000000[\\/\\\\]+kdJVY2Dx1ZfrxM4hw0OcStWPljc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bef276\\-dca14034\\-8f07\\-4ae7\\-8a65\\-b479aa932ac5\\-000000[\\/\\\\]+WXg7EnIh5oTgTrBvrHdZjWiIIVI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594e738\\-40fd0919\\-86ec\\-4af0\\-ab0a\\-c4c804d75301\\-000000[\\/\\\\]+_PY\\-0514i8QODeeGqNQNsWqpzzY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a16c73\\-c0b3323e\\-80da\\-46e0\\-88f4\\-dabd00c57914\\-000000[\\/\\\\]+5KKxWWfhVE3r5H51B4uIC8pAM7E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245993412\\-2cca6461\\-cb40\\-4a7c\\-910e\\-f1200392bf64\\-000000[\\/\\\\]+L6f8FvvBbG90H2WZ\\-523FuHYWFg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad6469\\-afcd4ed9\\-8daa\\-4ceb\\-ad4e\\-19ce19503ab6\\-000000[\\/\\\\]+f6pbOZ\\-1KDF0NUUKhV1LDQrrU\\-k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cae46f\\-cc2d6005\\-04ea\\-4016\\-aaaf\\-91180250d4c7\\-000000[\\/\\\\]+pnX9KIWwF2GhnquTduwvyWNAATg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b27ea2\\-35bd50b5\\-5777\\-4587\\-ae64\\-79a939b36548\\-000000[\\/\\\\]+mdwerS3_IDrcQoRl6DNNOtvpHCc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595f95c\\-7c802bc6\\-ae1b\\-466d\\-99e7\\-fda88297c123\\-000000[\\/\\\\]+Za8uAnWlGBdyrpXiMwv9ltmz5k4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a6fd64\\-132a8882\\-5be5\\-4b88\\-88c9\\-a909147656b4\\-000000[\\/\\\\]+Ztl6N3oJmgepL_Px25SetGu00ak\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456abca8\\-48e4f8d8\\-cfd4\\-4053\\-aa7c\\-55ddc0413ee8\\-000000[\\/\\\\]+h_Rv0so\\-wHkYzMIjKuMlGD0GSqM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d4894\\-a3291dea\\-bfe2\\-40a1\\-9803\\-8d03693974c7\\-000000[\\/\\\\]+zMiQ3PSkI_\\-dkXr8PlcNu35egpE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566d04d\\-6bc7896c\\-29be\\-40e2\\-a4c0\\-222b78b7476d\\-000000[\\/\\\\]+50iwE9mwq0BgDoWsY45GEMxudBg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d0fa0\\-8d963d3f\\-7968\\-486c\\-b7a1\\-5ff18b9c2b6b\\-000000[\\/\\\\]+LQ1oQt5Dw_7vhZPixX8yopnySxw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb4936\\-bd339feb\\-0274\\-4d42\\-86ed\\-cf7c62bb9e85\\-000000[\\/\\\\]+15lKH_hkwTfqnbz6ITxRnScEuPI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459dbbc7\\-b7e91662\\-8756\\-4747\\-9200\\-86fc0fbb9f6d\\-000000[\\/\\\\]+l_aSZFKsnkZGOQL14HdXL4DJJy4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457b88c9\\-1364b805\\-328a\\-4baa\\-a3e0\\-1639f615ae1b\\-000000[\\/\\\\]+MApPNh7xvXN1Fmbgzbmdgz5GKgk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af2f5b\\-38a4dc76\\-71d8\\-4d39\\-9021\\-0dc3e65b5a4b\\-000000[\\/\\\\]+fHpvhZxw9HOeppuOA1D9ic1oUVI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b814e8\\-7a98e173\\-8179\\-4fb0\\-b10c\\-a8af4e170f1c\\-000000[\\/\\\\]+MlTBaVLeu9pI0bZb\\-Y\\-grL8qRa0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4a25a\\-1b04e064\\-32d8\\-4534\\-a793\\-2ae06ca9f967\\-000000[\\/\\\\]+_K5KvPn3n7u9n2pi_7hYRbdLw7Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfc24e\\-a06a0548\\-f61d\\-4b75\\-8910\\-43c8dd1772f8\\-000000[\\/\\\\]+bN2UWX65H0GayvhLTHDbMnMtgus\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b06554\\-01dbde11\\-42a3\\-4cf2\\-812b\\-1d1a3b133e16\\-000000[\\/\\\\]+7KCV7KzVb3AaD_HbvPe4ub60zLQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245672dfc\\-08516bb6\\-f70d\\-4dab\\-b119\\-5a523174650d\\-000000[\\/\\\\]+OFPawfKQGGmAyl6Lux\\-Etx99DsM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b97cb\\-8a5f8ae2\\-b66f\\-4f9d\\-80b3\\-65761149a039\\-000000[\\/\\\\]+Pf8DGxJzKGgek5Qxp4UmNhNpgVk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd4f9c\\-efbb5c38\\-239f\\-4c5b\\-ad44\\-1dc8d7216a36\\-000000[\\/\\\\]+iGrcQV6xmZgI92\\-\\-4O_bpMw\\-hBA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245990631\\-1a2f2897\\-4842\\-4ce6\\-bbe7\\-87725da6791e\\-000000[\\/\\\\]+FpT77ehmhwrrQ6Iu\\-i5xyYa0YeY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574eae0\\-3e15f4ea\\-dd93\\-433f\\-b9b5\\-4ec6a18569ed\\-000000[\\/\\\\]+cx1huL4pPYPF2i0fC\\-IA92XHwW0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aec362\\-b7798201\\-0d31\\-4a68\\-ab8e\\-274c780a49d5\\-000000[\\/\\\\]+cxQvkY4pRw1xxUsTvfq7s5DEv9E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa264c\\-c7598351\\-fc79\\-433b\\-ab87\\-6e7fab4f755e\\-000000[\\/\\\\]+lby3gv6FlFupxsXo2TI3elPVBvw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457139d5\\-29aafd5a\\-82b1\\-4453\\-b6b6\\-d5af7b90d3d5\\-000000[\\/\\\\]+XTeI7FZmEvzOHfujhqaFKf_O3D0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7a1e9\\-28e07d43\\-b0a1\\-4f91\\-957c\\-69160e8f0b32\\-000000[\\/\\\\]+ZxWROd1tg_jTE7\\-AUHLnO4zZOfw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b63e14\\-f70c03b1\\-beee\\-497d\\-9c21\\-e85d23be9ec0\\-000000[\\/\\\\]+1YJ8TBwtL0GeBRtvbxQvFL3k30w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4d927\\-cf60df9c\\-8a23\\-49aa\\-a5c4\\-313fb43ffac7\\-000000[\\/\\\\]+Co9_YaZ5gtxs8KPoO7Zuua32pGo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b2829b\\-3406a4b6\\-e7a3\\-4329\\-b68f\\-254d6d34b47d\\-000000[\\/\\\\]+kDe3wQCuLLOdlfG8hLI79rZ8KQY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c7103\\-076a805c\\-5003\\-4b92\\-8abf\\-c4a1e0563e5f\\-000000[\\/\\\\]+wZrmIe_GeDNPl9jrnyyo91kCivY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568ee0f\\-f9203351\\-854f\\-4ab5\\-9fdb\\-6902613beef5\\-000000[\\/\\\\]+bfwqg\\-IzG7D9InMVfD24WKnUYTI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456beb3c\\-c1fc0405\\-0eb3\\-42d9\\-b5bd\\-e79a3ec4cc8f\\-000000[\\/\\\\]+adeIORdgMg8TMqkTRvPHVdzLq5c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456db267\\-0b9ea9e0\\-4321\\-47c5\\-9a79\\-f3535e2302cd\\-000000[\\/\\\\]+_H4x2pq\\-qgv1eCiqM224oDOob9I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6bb67\\-4f1aa728\\-37dc\\-453e\\-a2ac\\-45f96878ea9f\\-000000[\\/\\\\]+yxt4fVXf8MXOHKWOs\\-jX\\-eR90Lw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a22f4a\\-5bb38f3f\\-5d87\\-49e7\\-b541\\-c7bf7467e6e1\\-000000[\\/\\\\]+Md3dVvh\\-iTM7RWep6uv8EgR6rog\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924586e0c8\\-723518e7\\-ed40\\-4627\\-aeba\\-973916f75285\\-000000[\\/\\\\]+arO\\-vEN0UxnKBTHPwrTisje8gCs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4ac81\\-ac5bcc9f\\-45b0\\-451d\\-a0e0\\-d2bd59f1dbad\\-000000[\\/\\\\]+7Hy\\-nPcAVnIDtmlJ86y9xLbsRG0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566d04d\\-6bc7896c\\-29be\\-40e2\\-a4c0\\-222b78b7476d\\-000000[\\/\\\\]+wPkpMP_Hw_As8edJ9MRYuEI7l0g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570a87f\\-3522823d\\-ccc6\\-49fa\\-ae55\\-8e100c420ab7\\-000000[\\/\\\\]+HMxaArHTIjGhzc2zRpM4eCSBfgo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245baec7c\\-904ad15e\\-0dff\\-46a5\\-8a15\\-b493e99caaf9\\-000000[\\/\\\\]+SwgC6g0x1\\-WOWwKa3rPNj94KFFw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457372a5\\-c65c6a5f\\-8b5c\\-49b6\\-ae77\\-c256c0d83319\\-000000[\\/\\\\]+QYLJIiG3zm6VZRdf_w\\-quc\\-RfaI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245988580\\-c16a493a\\-16b6\\-4e8b\\-8192\\-28baa8561341\\-000000[\\/\\\\]+VjC8v508FvOZqDMHkUdfH4bjyLk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb2bfa\\-7292816d\\-3f7d\\-49e8\\-8bb5\\-3f9e0f464be3\\-000000[\\/\\\\]+5NWMuGU1Poy0g6Pnou2FoSIWNVQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c170e2\\-cd5ddb83\\-7f82\\-4ce2\\-8bf7\\-5c50dc066aee\\-000000[\\/\\\\]+Fwc1xpxBLPDc1bVxzEKytU2wkI4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589be66\\-50350372\\-fa59\\-4109\\-aac0\\-4e0fa122b856\\-000000[\\/\\\\]+T0UdwIL\\-FqmxP0Pv9GIcpCR3Yc8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b21dad\\-9a602174\\-8f2a\\-4c1a\\-8810\\-b5c6de43816f\\-000000[\\/\\\\]+SJ5gGlaV82iQzNd0t4ZZhQsBkJg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e690b\\-55a73879\\-8266\\-4c25\\-b12c\\-0c57ea4504a6\\-000000[\\/\\\\]+HGqps537NvxQ7IvrhH7qccpX3s0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459cf72d\\-f3a6dcaf\\-4a0a\\-4667\\-9576\\-92647e33430d\\-000000[\\/\\\\]+EfKdrfcGMnVG7x5Zc7JK\\-ahiblM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577ccc2\\-7a8ea5ea\\-1bb1\\-486c\\-b20b\\-48bf701a250c\\-000000[\\/\\\\]+y5VriU_8IShiZuV4pVvs4y0ktSI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc8a05\\-72adcbbc\\-30f5\\-491a\\-9b45\\-b9dc53fe3353\\-000000[\\/\\\\]+znGcBlqqeNz3GogmDRrwmXAmugU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245989045\\-578985e8\\-448e\\-4e4a\\-acf7\\-1a283d928a2d\\-000000[\\/\\\\]+giYcnI5Q5rWrpzYJ_Ug9VSq9Wpw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0d85e\\-50afd7e3\\-cfa4\\-4c8d\\-9e26\\-f9c711fe35f7\\-000000[\\/\\\\]+2ZKBGUAXuP5tM_k1AVEqDiwz1Rs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a36908\\-73bae0a2\\-5b24\\-4963\\-8609\\-a5f47590778a\\-000000[\\/\\\\]+I1VjJ8x9Q\\-yjsyTKS1ctsHnMcD0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3c6c8\\-00056ea2\\-e553\\-4aca\\-8192\\-3a34bdcabe8d\\-000000[\\/\\\\]+LXzaeZmx6v3\\-tYh9P0\\-JBUrpQ8k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e179c\\-2f14199e\\-fbe3\\-4c6e\\-9099\\-2883deabad25\\-000000[\\/\\\\]+auzRW3jjsjw3rQZkqpwdWDRCeiM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c22523\\-8ee7d83a\\-a685\\-4b2d\\-bc48\\-d23c785ad3f7\\-000000[\\/\\\\]+Z29XRSng3ycmqONRNospSVZRy5U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cfcc30\\-34d732e0\\-e89b\\-4d5c\\-b16d\\-4ce097aabba1\\-000000[\\/\\\\]+Wy5tw92Giky0hv29mYRXzItwVwk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac44c6\\-729c3f57\\-3122\\-477a\\-80b7\\-c7af643a889b\\-000000[\\/\\\\]+plTTm9wWK_RSq2Mdtzka8GtompM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572f8ce\\-c8b701a1\\-47d8\\-4fd0\\-a4f4\\-9d2147db4806\\-000000[\\/\\\\]+6ymvpqUbBlLqkMwI\\-JR0w8xDZxY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459dda4e\\-46ba5d6f\\-c55f\\-4661\\-8dba\\-b99cf280959f\\-000000[\\/\\\\]+_TLSwjP6hpvBPOgD\\-bmx\\-k3HN2g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594d1fb\\-63eec7a6\\-33b8\\-4271\\-8c04\\-eb09d94e214c\\-000000[\\/\\\\]+cKXEGwLsw1f\\-swgpBSgGnMglQK4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245709aef\\-d2d3a7f6\\-cab8\\-4660\\-825e\\-1ae47b9fe892\\-000000[\\/\\\\]+TeLuza\\-uUXMdaSTRAfqiI6zONmg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459a7b69\\-728ba576\\-b694\\-4276\\-88e5\\-6dffc549cf7d\\-000000[\\/\\\\]+JRplTnoviO\\-KP_XUkDooBqCRJ1c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572782b\\-51b96642\\-c90a\\-4248\\-9269\\-22c39d655f25\\-000000[\\/\\\\]+WpV2xmLXtEfSraeRRYCc1n5tNek\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c35bdf\\-03514ee2\\-2ee4\\-4312\\-8867\\-ee01a864126b\\-000000[\\/\\\\]+ufwK0zPlHjcF_Tjh0WLnuzb_8SA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a8393a\\-7c4967ff\\-5723\\-4237\\-be40\\-8dd44473e497\\-000000[\\/\\\\]+QQlhJAqCOPdiXSjqIci\\-msHqrOM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245754611\\-a6380832\\-efa7\\-41cf\\-97a8\\-a7baf72252eb\\-000000[\\/\\\\]+io7S8wRU3m05ALsdDgPKYbjSTJw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572782b\\-51b96642\\-c90a\\-4248\\-9269\\-22c39d655f25\\-000000[\\/\\\\]+w4iWDyijhKMaJQIzBy7RFYLEvrk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456684de\\-1b12987f\\-60d0\\-427a\\-844a\\-d064602bb2c1\\-000000[\\/\\\\]+H3PaBY7NiD4OZ5mXBEzVmkie5vA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245adb396\\-87f0635a\\-2c9a\\-46d5\\-b3a8\\-b5cee6e6051f\\-000000[\\/\\\\]+Aaa61NF5ez8qm_Qc8MocTIfRmdM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e6b86\\-ddee5f8d\\-d810\\-4245\\-82f6\\-07d5498112b2\\-000000[\\/\\\\]+ae3Gy97kJVzLi8_XYX5Iys_dUi0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245811ae4\\-0a4ddb39\\-4b99\\-4815\\-b728\\-2d74c3d61b1a\\-000000[\\/\\\\]+U\\-QH5a1J9R4Sb3iRXKLTTQsZDBA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3d2b6\\-65975a1b\\-ac68\\-43dc\\-8b51\\-4d0fa6a82537\\-000000[\\/\\\\]+1zChYGbJ3ubJuB3tM2nknuUL3hM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d03d94\\-b532e5f3\\-3d24\\-4a4d\\-8f6e\\-3abeef688f8e\\-000000[\\/\\\\]+OzzQ0Vm6rz8oXpLSEfeM1IvdgEY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459106d5\\-3d460dd9\\-c227\\-4455\\-a0e2\\-a781ee869cda\\-000000[\\/\\\\]+u7ommigpHSA77NF2nKWwYwo\\-lpI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1a4ce\\-627f85c2\\-aa67\\-411d\\-b87d\\-664e90290f04\\-000000[\\/\\\\]+3SRfA9gEfF40Vehqz6bFB_HQCaE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574634b\\-d35c8924\\-956b\\-4d31\\-a7b8\\-8dd6fd2f806a\\-000000[\\/\\\\]+ohJ5SfgKShSUU4bQcsMaRuQexrA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458590cd\\-8295fca8\\-b94d\\-499a\\-82dc\\-281d61ce7c31\\-000000[\\/\\\\]+vRlRvB_jNOn4pWbuvOVKqY9ZSOM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457275d3\\-64f33730\\-bc62\\-4e26\\-b915\\-554b2ca1be12\\-000000[\\/\\\\]+D13Q6cemfeG7DEUVWsEVtdmGJpY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aed886\\-728ce555\\-abd6\\-4c16\\-845d\\-24a9433fbfd4\\-000000[\\/\\\\]+mrefhwFJVnEw3zf8oaPTtTujmAA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a22f4a\\-5bb38f3f\\-5d87\\-49e7\\-b541\\-c7bf7467e6e1\\-000000[\\/\\\\]+PENa65gnmHnKPGxm8WdzeFFB_JM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924560e2c5\\-0cc99f67\\-45fc\\-4491\\-a8a5\\-2d29fa6eb834\\-000000[\\/\\\\]+5LygHZXbDR3AEBJrZuTlEaA10X0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ee6bb\\-236af04d\\-cc27\\-41bf\\-bcb2\\-7086043647ad\\-000000[\\/\\\\]+\\-Y8fH1M2nIbsIgfncJvUr_O6Ky0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad6a3e\\-2a027394\\-fc14\\-4a45\\-8343\\-9476503c3e5d\\-000000[\\/\\\\]+kg\\-LIzaR\\-lLEH0Cqfe6Obu9nI4w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a2b00c\\-1b2b668d\\-502e\\-43cb\\-9ee7\\-9892459dff71\\-000000[\\/\\\\]+AYd28_cDrg5IlCg5Y4VXBi\\-wT\\-8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570be44\\-ac27a9c5\\-296f\\-427c\\-a249\\-da2c5b4e402a\\-000000[\\/\\\\]+hhD9ffwxSpkMhyeF2VsUElC5c0c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c170e2\\-cd5ddb83\\-7f82\\-4ce2\\-8bf7\\-5c50dc066aee\\-000000[\\/\\\\]+PnMdwnEIgnsXiN6vn5TtlbH0j8s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afc0c2\\-b23075d0\\-c491\\-4b32\\-a3ef\\-874fb9ba27c0\\-000000[\\/\\\\]+X_d6l01PwZfbOcvc2YV4f6og6Nc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abda35\\-8dce8800\\-6563\\-4057\\-ad77\\-7005260958ca\\-000000[\\/\\\\]+PUjy5DJ1a3Wkcj_wZP3DQC4j518\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c38a5c\\-176bebcc\\-1298\\-4451\\-8c70\\-2629874da3ec\\-000000[\\/\\\\]+BmBlvib60_obaLBMPhXDF70LtPQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b1f52e\\-cf40b45d\\-58e6\\-4910\\-a050\\-051ab6aca9d2\\-000000[\\/\\\\]+kI6MLd\\-lkTz_2HNb2KRVwWx29DU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7323a\\-3cd3632b\\-9b6d\\-4c9f\\-a120\\-13cc59809279\\-000000[\\/\\\\]+2cKNJBY1w98\\-rNHchV_3oF93Cf4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245767e79\\-f73b56db\\-e963\\-43eb\\-898e\\-02f3d21b5927\\-000000[\\/\\\\]+2NXg3olg7B82EI2inn2pWU4cRJ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e179c\\-2f14199e\\-fbe3\\-4c6e\\-9099\\-2883deabad25\\-000000[\\/\\\\]+GTD7jXyiEiGre4xHLRXCOzW4eOY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a8b094\\-4e71ea36\\-7b48\\-48f7\\-b502\\-3c766076ec71\\-000000[\\/\\\\]+PtsFG6az6KAZx4XbACGCExFV\\-FI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924593119e\\-1298064c\\-ad69\\-4450\\-9fd2\\-a7e425926820\\-000000[\\/\\\\]+m1w\\-CgdgD84RLVZb_LEHI30d9LA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5f1e8\\-aaad5896\\-dbe2\\-4530\\-995d\\-a67728505d79\\-000000[\\/\\\\]+GIDEOBT\\-MgWiLOLUDmRneWr1J0Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a31d49\\-71dcb74b\\-fb5a\\-4bc0\\-9461\\-cede4f2c8440\\-000000[\\/\\\\]+1GZWzxlDIlgc3Fqs0j6BpPDxKJo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6c745\\-c0fc27cc\\-3212\\-44bc\\-ab75\\-f0c7cc56ea29\\-000000[\\/\\\\]+UXK8YnP6XOCO348m0F4HcDoXUsc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245832c32\\-6f2c9e11\\-633d\\-4953\\-ab00\\-5ad11ab5661c\\-000000[\\/\\\\]+SQ0_f10ISt1dbrDUmVHacZbozcE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8dcb5\\-49341ab6\\-1725\\-42e3\\-b359\\-8a63596affe7\\-000000[\\/\\\\]+t6BbH2R2K2vcWdmVAq0_G3ALG4c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c64eac\\-05dab01d\\-694c\\-44c4\\-b56a\\-736be79ef479\\-000000[\\/\\\\]+WDaXrX_Xm74zE5y_g5rU_dCOBp8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c9304\\-0bdfa589\\-a6ac\\-42f4\\-a5cd\\-0fbb211ea64e\\-000000[\\/\\\\]+iuzDzQp9KDn1RRcpqoQ6dBWNGl8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ea71b\\-9994c5b9\\-965b\\-4ce2\\-8013\\-7667f71bd121\\-000000[\\/\\\\]+\\-2m14zQvoCNT0n7pi2JTgU8an_Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573990e\\-8f464183\\-aa56\\-4dac\\-9d63\\-30d850aa246a\\-000000[\\/\\\\]+CIJ6i9bEuI7LN1Bnae5hW\\-YX3Ws\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb96c7\\-4ffac230\\-e4d5\\-4646\\-8dfa\\-e73903f7de8f\\-000000[\\/\\\\]+OrHDVpIh45EEu84pO5ZAaBjfo1c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b88870\\-92f1a5e3\\-9326\\-471e\\-8e36\\-0e833284de75\\-000000[\\/\\\\]+Id3qv9\\-Oo7iWeqKfOs0IZiOe_oo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a347e7\\-0ecba739\\-2ae4\\-4e38\\-9b8c\\-89f072ae5e1d\\-000000[\\/\\\\]+VswvhX3RUEFnzLGDo5KU\\-Pd2qzE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d57ef\\-c3cd007e\\-a778\\-4265\\-85e3\\-cf8d505fc1ab\\-000000[\\/\\\\]+ibNbLWAq4UzJNzYW73SkaiNi894\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e63d1\\-db3fe936\\-97d9\\-446e\\-8c63\\-5058dece83f4\\-000000[\\/\\\\]+cn8LMyESt3ouDKvoVNhMdC3i65o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455ba1d4\\-fe1a130f\\-cba1\\-4c6e\\-91e5\\-1f9563b4a4e9\\-000000[\\/\\\\]+xGmpffq0CqMfBUjY\\-LbWyvIGRcU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f8870\\-0dc565ca\\-fe2e\\-4448\\-b685\\-97050b842458\\-000000[\\/\\\\]+LBljmtfmUOztPserIpFeCID77rU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b2e21\\-b19aa715\\-28b7\\-439d\\-89d1\\-ef4da87a8e31\\-000000[\\/\\\\]+n4ScIslAqIW3SSmoosUEZEi3njk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596f077\\-b704abe6\\-7723\\-4380\\-adc0\\-cf2115a98bb5\\-000000[\\/\\\\]+cjdsnyTu3ryc3xDv5qgGZsrrFTI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ccff1\\-bc265355\\-9ea6\\-4615\\-8ef6\\-2970322189a0\\-000000[\\/\\\\]+D9WZu1akX49QLk8y0EZniaA\\-Voo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245981d57\\-708d768a\\-8171\\-4b57\\-b40e\\-2b9d3596d8da\\-000000[\\/\\\\]+7U1kKf9K3FSLd\\-lUw4wzRB7XTDo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afe778\\-946590f8\\-6bac\\-4367\\-9fe3\\-e361a33d74f7\\-000000[\\/\\\\]+AS3XI5mbsf_uEpZgMg1Gdw0xxFw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599acea\\-740e91c9\\-c0e7\\-49a6\\-b65d\\-185571a673c3\\-000000[\\/\\\\]+IcC2EAilScQcBTrB1s21dqDK188\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569d946\\-5bade3de\\-eb73\\-4399\\-81ee\\-ed4bed409658\\-000000[\\/\\\\]+WFwUOlEdoWEh5rIar7p7NzIZOTA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457eda23\\-61301cbd\\-7d21\\-4261\\-a8f0\\-e40194c8a1d3\\-000000[\\/\\\\]+QGqjDIl5JwoS2Tnq634Kexd3aqk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245988580\\-c16a493a\\-16b6\\-4e8b\\-8192\\-28baa8561341\\-000000[\\/\\\\]+arLfzIIyzkn\\-EeY4hjHLkpRAiRA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cb5ea\\-0907a196\\-e98b\\-45c4\\-8d16\\-66554a3c58b4\\-000000[\\/\\\\]+w0OOu9XZQKRimeBhOI01g5lHtC4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca8bdb\\-3b97463f\\-cc69\\-42d5\\-a30b\\-75ddd18ea0ea\\-000000[\\/\\\\]+xoYf6ua14LknB1eocidH00U5p6E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bd33b\\-1f9320c3\\-88e4\\-4e6e\\-89b7\\-b2d5f608d293\\-000000[\\/\\\\]+EUID\\-GDFdLbbN4u2hYR\\-QDYA\\-H8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e4e50\\-58f6e447\\-b7d6\\-41b4\\-bfdb\\-790fb2c1a57e\\-000000[\\/\\\\]+qpkNEw2gHjDtjtRJvriUAOAtzQY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589fecd\\-68f123f4\\-b469\\-4472\\-a13a\\-723a36f33c98\\-000000[\\/\\\\]+Us0bsTKHYx4ZYijs963Nh_Rgwd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458030e6\\-efc1c33c\\-d1fe\\-4c4e\\-a8ff\\-ce96c7806427\\-000000[\\/\\\\]+hXv6pTJDS2ExbQYi0akIZAW1UDc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7eaca\\-5e3e4324\\-fa84\\-4d92\\-b113\\-441337638d0e\\-000000[\\/\\\\]+kE4oteR7D2NAP\\-l4uiJ4EB6kAyE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c74475\\-67b22005\\-e50e\\-4506\\-80dc\\-1320eb61f5ae\\-000000[\\/\\\\]+H8dr1mrNjXIhNpuKgutr_rOoMrc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5a22b\\-622f8bff\\-60d2\\-42c2\\-9439\\-16e920ea5f5b\\-000000[\\/\\\\]+ur0QQTSTnzq3083vi49GBgxZw\\-4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a39be1\\-6e71d92f\\-03cb\\-45cd\\-9f16\\-5b35d31141fd\\-000000[\\/\\\\]+qpo5_n79INXu9_0BB\\-BxSfW\\-WjU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245987932\\-d4d02655\\-1bdd\\-4a49\\-b6bc\\-8d3430b81f86\\-000000[\\/\\\\]+WQlqzzhrdn6WxbrdaY21eMTqSjE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b57b0\\-7fbf0216\\-9bdc\\-403c\\-b2f7\\-cd1012ddf9f2\\-000000[\\/\\\\]+DCaKQF8UdkFLbrNa\\-sq4QciV670\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572bee9\\-917edf43\\-d030\\-4c08\\-8495\\-070f80a2140a\\-000000[\\/\\\\]+kpb7Q5dHnl24i_78JYtCgt0C90c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7f27c\\-0358b52d\\-e8d9\\-4913\\-8e9c\\-628f0b41b46e\\-000000[\\/\\\\]+XozgYpWQ4JKDgQu9YynjBOaLhaI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6d6f8\\-f8b62fe3\\-21a0\\-4d43\\-bb37\\-8f807f3665c6\\-000000[\\/\\\\]+2BavpPy1XicihAHao\\-RhwQei8XI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565d293\\-2f67f05a\\-e9bb\\-41a2\\-94fb\\-370f8bf47197\\-000000[\\/\\\\]+LQx7HFWVR2E7TplVJEB\\-CQpbltQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4f84c\\-c6b6e46f\\-7218\\-424e\\-9e0b\\-a6791552ed21\\-000000[\\/\\\\]+A0XaJDxatQfa9EiKFgWUAEzX1sM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6f2cf\\-91c4040d\\-1426\\-4743\\-b467\\-8ea0af0fc9d4\\-000000[\\/\\\\]+GSGJkYo4nxamCYIDo0OT79Y6Prw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a16c73\\-c0b3323e\\-80da\\-46e0\\-88f4\\-dabd00c57914\\-000000[\\/\\\\]+uHvVTEN\\-6ewVNJLV0h\\-8NXFnUuw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b04971\\-61873100\\-bcef\\-4326\\-b6bc\\-6b8f1360111b\\-000000[\\/\\\\]+FpzLUu8Gdw6lLXBLGpP61Ke_N64\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd49fc\\-feffff61\\-98d2\\-4a62\\-8743\\-e3241a11bb3c\\-000000[\\/\\\\]+zIACR6nBwrvAXXkh0tBH3\\-mgCFE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5ea37\\-06686548\\-7445\\-4dc6\\-9f2a\\-e1099a69a8a7\\-000000[\\/\\\\]+JOhJ_20REVtDll8lDqLmpmlZg_4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245939135\\-d338d1ee\\-992b\\-4984\\-b66a\\-13d9f682d0b4\\-000000[\\/\\\\]+21nvh1wxoSirzdCdaBVCcpgIWLk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b8bca\\-519f595e\\-932c\\-4a36\\-a015\\-37a54779ed84\\-000000[\\/\\\\]+auOiVs0qZUGUnColGuzQ4lnABRo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457b6d62\\-a3b8d359\\-706b\\-4cf2\\-a49d\\-ee47a7866e5a\\-000000[\\/\\\\]+WPUm_URLQhPpAqMNM8Idt3P_hxk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a404a4\\-68dd3478\\-fb4f\\-4f17\\-bead\\-9e55d644d2f3\\-000000[\\/\\\\]+CPebxI5Tg_MNHHrGeLyyQ3qwb8M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6205f\\-11a6fca5\\-a86d\\-4650\\-b042\\-fda2d8f3b27a\\-000000[\\/\\\\]+keCLMH\\-5m_3FtQw4ICzdl5mr_wM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245803679\\-1c748384\\-3c8e\\-4335\\-90e3\\-a27955eb98ef\\-000000[\\/\\\\]+Vhpq_FKxKvMsKf2PJaN5IQaZWfk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e4119\\-23bf16d4\\-21e8\\-426f\\-94c4\\-8369a7121663\\-000000[\\/\\\\]+m9vCnj7Ba9lHiTFP5qv_1ll8OBQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ee025\\-09747520\\-2ea7\\-448f\\-b79a\\-6d816c6c95f0\\-000000[\\/\\\\]+viMv7SAmNKcWKRL_\\-NKGSpDhkb4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f4cb4\\-bde6838d\\-d856\\-4010\\-bb3c\\-b83884d3c7d6\\-000000[\\/\\\\]+WgOcsqaJckZDmP6jtIfRu85Uw4Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bace74\\-9bebfbd9\\-8061\\-4262\\-bc25\\-a456ce9707fe\\-000000[\\/\\\\]+Gmrc3Wj_pBJWK3OCp5mPOZE6I0o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456eb890\\-49b7cdf4\\-f651\\-4d11\\-82a8\\-10345fbd2796\\-000000[\\/\\\\]+s0S0Gc_37TKxjTFZxL\\-NKo5UYm8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ba2e1\\-bde48b70\\-a40e\\-464d\\-8adc\\-d9af8b7a664f\\-000000[\\/\\\\]+ko3iuS2CBr7fz_ViV3M0dSsenwg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c432eb\\-436978bf\\-dd2f\\-423e\\-993c\\-27e06c11da55\\-000000[\\/\\\\]+95CNVA86RkBOGhooHgura12tknQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a01f05\\-27519061\\-8904\\-4628\\-962d\\-951cf43cb424\\-000000[\\/\\\\]+Pa4b1xdfcRt4zT8XPzcJq\\-zxqbQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245836cef\\-242be3e6\\-b255\\-475c\\-90de\\-76d11db7693f\\-000000[\\/\\\\]+pHD50Z9iG13Cr7rWXq3hte8Fwxc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3156b\\-ed862c65\\-5aec\\-4603\\-973f\\-0a367322bc1a\\-000000[\\/\\\\]+oQAxMS49V0iu5RHt4zgV2neiGh8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924588831a\\-70ec097c\\-f7b3\\-4e96\\-9b52\\-5069088e5b37\\-000000[\\/\\\\]+8eXik0uA\\-s9Mn3nvLQZCMuzIQRg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b7cc7\\-f5fdd038\\-7943\\-42f6\\-bb72\\-31f225161c01\\-000000[\\/\\\\]+TmYxsJNrJuVGQFekMoighxQZmxE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6bb67\\-4f1aa728\\-37dc\\-453e\\-a2ac\\-45f96878ea9f\\-000000[\\/\\\\]+nn_vLd4fdXV68Yw4L8ugk94gXmE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924561c442\\-b6f77c98\\-0f6e\\-4740\\-bbb5\\-c6ace8df2989\\-000000[\\/\\\\]+GAy3yjzkgyZiMyMf5sutjVEo5TU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f9954\\-6acb781d\\-d94d\\-496b\\-88d1\\-e51bc025ea3d\\-000000[\\/\\\\]+WgSZWnFteMI5Oj\\-_MN6O7QCaSsU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a9549d\\-a976b297\\-8442\\-4379\\-91fb\\-01e312bfe08a\\-000000[\\/\\\\]+XBacGiR0gdYb2jUjdTTFCk72FSc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a5635\\-5f8cf1a8\\-300d\\-4763\\-b4e6\\-05f55b1aa8ae\\-000000[\\/\\\\]+9o8Lb8bNPhVH1JlrryZv4yjzCbo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c3524\\-ea93dac2\\-4588\\-4eb4\\-a07b\\-31728889813c\\-000000[\\/\\\\]+l69oM\\-d9rikC_QNvi0LWG_a1uMU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245905694\\-c83ec397\\-3b11\\-4c65\\-8bc0\\-6d2c383bc2a9\\-000000[\\/\\\\]+pMxuWNwo4TJ8mophDTYZnd9kACI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc51f8\\-ae2d6ab4\\-e1bd\\-45d5\\-8f92\\-26303afeee59\\-000000[\\/\\\\]+z5qLCPmB4MX6ph935vYkHR5t5iE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8987c\\-2f6aae8e\\-b14e\\-4cdb\\-91a6\\-fe97cb1f080d\\-000000[\\/\\\\]+J192Gzj60J0V68Tc1RRavg2XzoU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587ac17\\-db1d02eb\\-4306\\-4c2e\\-8701\\-32a55d261b63\\-000000[\\/\\\\]+On3r8m4mFt819JTgqh1Re5yNEjw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cdc79\\-44458975\\-589e\\-4fe8\\-bbfa\\-2b66fb1835a1\\-000000[\\/\\\\]+EeVsDO21mNIKoIv3PUyaMsDoXoI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245810852\\-36da0e32\\-99e8\\-4d2a\\-8ccb\\-85f6f6e67292\\-000000[\\/\\\\]+QqFoMqL9Dxf9yrf4G9SOfZbSzYw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a72f5e\\-74fba383\\-8a72\\-422a\\-803d\\-ed1d66beea93\\-000000[\\/\\\\]+iGOUPGjUD1OUsMlkhTaqVsxEQ5Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456132ac\\-c61d2f4a\\-8b5b\\-4bf0\\-9ba7\\-00c7f5ac519b\\-000000[\\/\\\\]+H57CHyphcHXEueT_jekuPjpVWns\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ace10d\\-e241faa2\\-a61b\\-47f1\\-af90\\-0bac1919c886\\-000000[\\/\\\\]+eCzJZC3d9U41GyIlENM8z3z8D7Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b77892\\-7341c525\\-78cf\\-40b1\\-8f4e\\-156373352d57\\-000000[\\/\\\\]+9UkrlF5YUb8Oo8LSSFPCf33ewvY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459e7b4d\\-0076a654\\-8b1f\\-486c\\-b094\\-935d9ea22190\\-000000[\\/\\\\]+hbDaoqJOC7f7z1Nm6OfdMk7PvtQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575d584\\-b09fcc7c\\-335d\\-4ee9\\-9cb8\\-eb9d20ec6cd4\\-000000[\\/\\\\]+JCzYQbIM9l6LMQXqkN9xJC\\-tN_Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245acbde5\\-86db9c97\\-462e\\-45be\\-9a77\\-c52abd5a0e32\\-000000[\\/\\\\]+7SbXcNgMHYkEvCrzs5Ax73mO6bE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aeb23b\\-226cc827\\-081f\\-47f3\\-be7c\\-f6e8bd9b1299\\-000000[\\/\\\\]+\\-SprbB1CFt7S1ylxwc4BbZvxMDE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570cd28\\-b879e34e\\-ea3c\\-4e38\\-bcea\\-4fddc76f3dbd\\-000000[\\/\\\\]+kKBxux53zl11drhWEzc60JKv47I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a74b57\\-bd31fcb7\\-fc12\\-45c8\\-9cde\\-5841485ab25b\\-000000[\\/\\\\]+WXCxPN5oHyFIp3qAJThcAM58Vrw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456aea92\\-6fd7fb93\\-79c1\\-418a\\-bc24\\-17a8f80677a0\\-000000[\\/\\\\]+UwiDU8ca64P5iASM7\\-cbtrJY7SQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568e8b5\\-28638c59\\-2c67\\-4815\\-88b9\\-4bd73cfc6bc4\\-000000[\\/\\\\]+QNaPFMze1sRCoWyRR6c4ROggil8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3e886\\-3a4e9ae7\\-f5a1\\-4f97\\-bded\\-03a642650a7c\\-000000[\\/\\\\]+a3GodcumtCCWHiarOCxYT\\-2eEHg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b10474\\-98af6471\\-9d20\\-42ef\\-9bf4\\-91b7a921bf3d\\-000000[\\/\\\\]+aAKO\\-jEQmxEP3pekbOFdVZsVyEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595abbf\\-d6b63c32\\-64db\\-4264\\-be90\\-de22eb638021\\-000000[\\/\\\\]+2JxnpkH6BMngHEq70lLqSqg2DEE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5ec59\\-91f07702\\-4db3\\-43c2\\-94ac\\-e0397e021269\\-000000[\\/\\\\]+U59b3fwC5z2JD\\-uFIgTLCDSpg3s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b60074\\-172d00f2\\-4dc5\\-4524\\-9f03\\-6b29e42c859d\\-000000[\\/\\\\]+6hU_fulRhYcwol_lBRkKyftKaO8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a74b57\\-bd31fcb7\\-fc12\\-45c8\\-9cde\\-5841485ab25b\\-000000[\\/\\\\]+ooua2ld7dq3XzBaTUrvtRKEEwDQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bac4ad\\-7a657b78\\-b3e6\\-4220\\-ba2b\\-b0d162dc20b3\\-000000[\\/\\\\]+RMhiaBkvKWvwXbZ3L4QqH\\-EysEA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456df3cf\\-1057f4fd\\-3331\\-4c96\\-9518\\-0b7cd0eb3e0c\\-000000[\\/\\\\]+9c_VD8JGQCxXkwze3RqF83T1Wmk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4a16b\\-af536646\\-2fb4\\-4b97\\-b326\\-4a7301dcd973\\-000000[\\/\\\\]+D1flzUbP\\-ItAwSrUd2oNc6juWv0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd7fe3\\-6df766cf\\-f31b\\-43e9\\-a45b\\-bb7ef584be28\\-000000[\\/\\\\]+TmwPEzCIVtn47NJX4AkzU2VL1QA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b8bca\\-519f595e\\-932c\\-4a36\\-a015\\-37a54779ed84\\-000000[\\/\\\\]+vNjDKw_aoIIa54\\-1gJRHrL9HcuU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457b689b\\-e4c9bab0\\-2aef\\-4586\\-b5d1\\-1517fb385dca\\-000000[\\/\\\\]+uhhqmLP1C5DLzcctSDKe5ww6FNQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6f543\\-bfc798ea\\-d5ba\\-4e69\\-a4cb\\-87d6c0f59ced\\-000000[\\/\\\\]+Xvl68v2pkbhyx8YWD_uS8dv4BpY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c23b2\\-b781b278\\-dde1\\-4f20\\-8b56\\-70ca33345a9e\\-000000[\\/\\\\]+gtLYL3f4q4tisdWYbasoCGfo61Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245945d10\\-51872e0f\\-504b\\-4b65\\-969a\\-d60882cb8678\\-000000[\\/\\\\]+kTTA8YdNnNN9iRyh9amceWqI0pk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924580e199\\-08f970ab\\-30bd\\-4253\\-9077\\-8d9a1a90c373\\-000000[\\/\\\\]+RtN_gNu9TyAa89392G0lsRr3mbA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924581a794\\-6ca402ae\\-b84f\\-44ae\\-9480\\-b6174a47012c\\-000000[\\/\\\\]+OXXWqknpG9c4jDjRk4HHdiPMuDo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c92ff7\\-5d6f7938\\-55fc\\-42a5\\-8c9b\\-a93e294613ab\\-000000[\\/\\\\]+r5q0bBPxoXu5TtYVWwdz5x_5YMY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c37b8a\\-79516736\\-9961\\-4a5d\\-9640\\-3c9dec29bb82\\-000000[\\/\\\\]+IfE0wKEWoVC4VpCFJ7zsEfHdV74\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458041ed\\-bf7ec5d4\\-9e35\\-4d4a\\-b6ee\\-36ddd881d13a\\-000000[\\/\\\\]+f0x3xNLx4jwjqAukhbe\\-mqCGB_4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad7e91\\-f8c5bbae\\-b4e8\\-47ee\\-858b\\-4535f2bda016\\-000000[\\/\\\\]+GabirDrwo8miK4XlIxIkMtWwE9Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f456d\\-3db9d4d3\\-0774\\-4a8b\\-9035\\-cffe95f07612\\-000000[\\/\\\\]+rXU5Rx0v6P0dX0yduLkKCfqKtPw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aaeb47\\-da460cea\\-5869\\-4302\\-9eb9\\-041e704596ba\\-000000[\\/\\\\]+07AzLGwn\\-AYHMVrMnCKxZjh_PqU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b2e21\\-b19aa715\\-28b7\\-439d\\-89d1\\-ef4da87a8e31\\-000000[\\/\\\\]+WSp_cl5W4xySbR4KibLgt5CkNGY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a83e67\\-0fd28169\\-b732\\-48f6\\-ad66\\-cdd36782daee\\-000000[\\/\\\\]+bZrDF20yddtp_hZFa5KRTncOf1c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596e5df\\-ec6fa737\\-9b13\\-41ac\\-991f\\-a44d0933141b\\-000000[\\/\\\\]+lhVGa49aCicGLumm3bZjw\\-rmmrM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a24275\\-fc840739\\-3ead\\-459e\\-8c2d\\-b7c65c4b2769\\-000000[\\/\\\\]+6RqOTuYWO39eUlIGg_7NMtp6Rq8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5b6e7\\-610b2ec1\\-14af\\-4d86\\-aac9\\-87b4cfb871d7\\-000000[\\/\\\\]+gRkaLwd2AdLQgQ06WOtldWL\\-GlA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b99607\\-fe5a8e3e\\-c1a3\\-4aff\\-bf1a\\-18fe6ff672a0\\-000000[\\/\\\\]+WEB8JdoswYwFwJfYGML4O0OrRwU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456163a5\\-e8623852\\-6550\\-4c81\\-a9c7\\-6c8c14084476\\-000000[\\/\\\\]+61sH5WvErjt8X5QTPtt0rm\\-RD60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598d57a\\-ffc57cfd\\-be9d\\-45a9\\-aefb\\-8a2c10699bfa\\-000000[\\/\\\\]+M5pBcZ93TlXdZIj6IJu0OTt7pR0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c14f8b\\-85089a6a\\-2023\\-46cd\\-b6bc\\-0321bf6958c4\\-000000[\\/\\\\]+DKHC1g2JBShYNBN5AmlxsM3cQC4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a053a3\\-a8d72dad\\-cc2f\\-44a2\\-96d3\\-f13b527ad923\\-000000[\\/\\\\]+u8TetYetIta1Y1jlDIEaqXQ8DmQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c96738\\-7958bef7\\-7302\\-4f02\\-930b\\-89c05aef26a1\\-000000[\\/\\\\]+CEa6SBA4Tg\\-PXWPKAW7WSINVku0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c79f35\\-355c958c\\-57db\\-43d4\\-919c\\-87328b2f4249\\-000000[\\/\\\\]+gZypYUNK0hIXIgX3GytNYLGBvtU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245712f8c\\-8d9c13ad\\-ad1b\\-4b24\\-9988\\-4b7834c777a1\\-000000[\\/\\\\]+FHWkUseZGqMfF1B1mJOCJYD3zB8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cfb8b\\-2db8a2e7\\-825c\\-4b70\\-8aa1\\-b111692bbd06\\-000000[\\/\\\\]+kV40AxpJtuU0tVBkwtGhu\\-NMWrk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cba06e\\-b4d794a0\\-cd7e\\-423b\\-bde1\\-0eba3eb60bca\\-000000[\\/\\\\]+PRLKyhS0\\-_Nn8BJLwLbb50TB53I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bca5e\\-4c29cccd\\-9419\\-47c0\\-8762\\-de728e5d09fd\\-000000[\\/\\\\]+pAduop77hDTec4YNXI06bQl6dWE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f6970\\-ffe50a3f\\-2a4e\\-4316\\-afbe\\-4c80d9644c5b\\-000000[\\/\\\\]+DuODumItvt6ZzoIB1ZznavNUEwY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577d6e7\\-cd077e35\\-c796\\-4bef\\-a807\\-adf9b68ad52e\\-000000[\\/\\\\]+L3L72dY3FXJOOOhy6TEXgHlteC0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aca4d9\\-304b2a60\\-7c65\\-4224\\-b48c\\-5d1e7a313cc7\\-000000[\\/\\\\]+bF1u0lED62iUJM2LiHe0ZC5lnoo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c35c8\\-7c00ed30\\-b97c\\-4c43\\-9b7e\\-277777167b65\\-000000[\\/\\\\]+vg9Aq1gzdixRJWKVDRj9PkUaElw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab3a42\\-1c830535\\-67d3\\-4d72\\-94f4\\-b3f422f46442\\-000000[\\/\\\\]+bGj11uKufzCPkLLuBQniHSJHw4w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb468b\\-8e8dde29\\-d4b0\\-4851\\-ad23\\-ec2ab3db2dbc\\-000000[\\/\\\\]+fBmioIwUMnYUZjoaLjSagIuWRZU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c38a5c\\-176bebcc\\-1298\\-4451\\-8c70\\-2629874da3ec\\-000000[\\/\\\\]+3CsORdpX54Df8i5TI1qTqvLenIs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924593f56b\\-17cf15b5\\-ef84\\-4753\\-95e7\\-b59547b09773\\-000000[\\/\\\\]+suWmgFRdYwAsyt\\-g_tw5nSK4R\\-A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c133a7\\-d2204cfc\\-d324\\-433c\\-a892\\-13ebed54ff4b\\-000000[\\/\\\\]+ikO1GD5tGOa2lqPONvAXGBsKJ3s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e3380\\-d686410f\\-9650\\-4dba\\-be1b\\-df8576e09450\\-000000[\\/\\\\]+bXc2lQsWRSeUaIJDSyscVawiGAU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a98e6e\\-aaa3bde6\\-2097\\-443c\\-8d7d\\-7647f75c383a\\-000000[\\/\\\\]+mbgbbkSAIqNkwrnIRYP4\\-cAYz2c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b186ce\\-8bf06500\\-77b9\\-4f53\\-97c5\\-241b7e97d269\\-000000[\\/\\\\]+fQ\\-J6o7oycbcca57o_3HaPKMfYw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245956edb\\-ef7b9a83\\-bcdf\\-44e7\\-aee1\\-bd6a22e47ec6\\-000000[\\/\\\\]+DhJE1k_tz3BNEGXyzcNZVth\\-xCU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245908cfa\\-4d0b3404\\-24c9\\-448e\\-a0f4\\-b66c2df6e550\\-000000[\\/\\\\]+1kay2Ba1CGTDTzLaKDZMaBnP41U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459a91a8\\-59adfbe2\\-73d9\\-47fd\\-a601\\-fe2345568aee\\-000000[\\/\\\\]+nMBkp4xCAEl3hwid99B4im3s1Q8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457293bd\\-f0e1c240\\-7910\\-4e6f\\-b131\\-79c0fc18a6e0\\-000000[\\/\\\\]+05mwz0ERL85yYokvEFjFevmq8GM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594e738\\-40fd0919\\-86ec\\-4af0\\-ab0a\\-c4c804d75301\\-000000[\\/\\\\]+3JRfyijDJEUtFT_cQXBxEtECeiI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7fc4c\\-5adb2db5\\-9429\\-4f50\\-b50c\\-6fdd8e0557da\\-000000[\\/\\\\]+6ClVBZEovvo3ZVXncZ\\-503yDE1M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b69b1c\\-917bae6b\\-fdd2\\-498a\\-9499\\-e9900093e2e4\\-000000[\\/\\\\]+j5sKrNLIJmPAf886CbpzCt4TWrk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b55ea3\\-72940af6\\-ec82\\-4d17\\-a8b0\\-9272166d425d\\-000000[\\/\\\\]+9snPasatkx818UF1URB_QB6ykrA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459e7129\\-6f8bfb53\\-7d46\\-4e51\\-b9a1\\-bb774082c1b7\\-000000[\\/\\\\]+aRuGDfSr7uIfz0ZPwxQKMRfIp6g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e5e27\\-35fceaef\\-e6b7\\-4d94\\-8e0e\\-1d692ecaafdf\\-000000[\\/\\\\]+JoVJ0GdhU__56pWsm7KwUwa8fa0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455df4c7\\-606fecbe\\-9d60\\-425b\\-bde9\\-cc353ae1e27d\\-000000[\\/\\\\]+QFwXyO65m49LlWToK592WZ89j2A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a8fc8\\-da471b04\\-a2cf\\-412c\\-ad8d\\-a231818ee15a\\-000000[\\/\\\\]+jd4cHu5OXNi_miJwiTRiHrsAJkI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c39f6c\\-ff2f609f\\-27d8\\-4ff5\\-bde4\\-a5b7e6cb184f\\-000000[\\/\\\\]+oh_qJUAhRUQDM6_Z3DDNhY2oxfY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7e2d8\\-58d21076\\-4297\\-4d04\\-8a6e\\-40a68c62a007\\-000000[\\/\\\\]+7\\-NbFh7TZaIik2gZlUyhFSDhRjE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc4fab\\-1429cca2\\-96df\\-4371\\-ba6d\\-dea1a884462a\\-000000[\\/\\\\]+31YVbYmq0hE0SQ1FzANxfZ\\-39Rk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245940672\\-1a92d0cc\\-654c\\-4f93\\-a8ec\\-9c9166f37e83\\-000000[\\/\\\\]+HFp4_SnR2rgcAGvPDeP7jeoIIAY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573d7eb\\-6a51dd4d\\-c228\\-4a16\\-b283\\-748c8997e05c\\-000000[\\/\\\\]+v8tTEYC3LsVFsLg2MHqZI30\\-odk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457386be\\-27f1ffe7\\-9e09\\-4d14\\-8a50\\-cdad61c0cea2\\-000000[\\/\\\\]+12HVZ3sIx90gDY70FS7GICiJ5vs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c77b59\\-3aea1389\\-b60b\\-42c1\\-8bc7\\-80b5608b341a\\-000000[\\/\\\\]+sFtor_0VMdOBV8un18nEyw_q34A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589bbd8\\-f61193aa\\-06ae\\-4e1b\\-a74e\\-f0b69a29a7d5\\-000000[\\/\\\\]+ogkHqBQYHqseLUz1ecfqC7rdHCU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456aaefb\\-94c6838d\\-9464\\-4053\\-b9c6\\-c37958c2d406\\-000000[\\/\\\\]+BxunbxqjZlT9Km2lGSUHTjpS4qk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bc639\\-4c90929d\\-9700\\-43d5\\-8fa4\\-34bd17a5b6ac\\-000000[\\/\\\\]+dqdzEykxyqGdwlJztpPQdMYgPzk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bdbc70\\-7a6e4f33\\-a743\\-4ceb\\-857e\\-17b97b21c92c\\-000000[\\/\\\\]+WSjOldWzVjDsS\\-fYpd_z5Lbf6iE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582bbc1\\-e5355d15\\-5b64\\-4eff\\-87b8\\-6fec8000629a\\-000000[\\/\\\\]+RAlIrWcx70kPv\\-ZrbXO_eOncVqU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a083e9\\-b86f3440\\-583b\\-4721\\-b480\\-b1e085b28c1d\\-000000[\\/\\\\]+ySLvMmMyTE\\-Ne6Djf\\-qbsd\\-FIMQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245988c33\\-2361953e\\-da82\\-432d\\-95de\\-13f1057a99b6\\-000000[\\/\\\\]+0AJmz3OGnGygcHXGieCvFT1r6Ek\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae1d47\\-be27eda9\\-514e\\-4ade\\-a48e\\-10e8ea4c190c\\-000000[\\/\\\\]+Nuhkqgz0Kx9AVUbPGhhsvCoRRC0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b17560\\-f9c4917b\\-f94c\\-476b\\-b1be\\-21a92874b0fb\\-000000[\\/\\\\]+hlSUVJp0u4VWxJnEBz6vSniAJRY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5afe1\\-c9a9464d\\-cf23\\-414d\\-8848\\-615d1ea5d5dd\\-000000[\\/\\\\]+VLPVb97YTRmA6EJZ3EfSVQx67os\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e78a0\\-03fd4ffd\\-c09d\\-4205\\-a1bc\\-9351e2834598\\-000000[\\/\\\\]+raVfWsK12gWg9Rr9FD\\-F6ItT9eY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573b998\\-fe52a42a\\-fb9c\\-4e42\\-9997\\-d14bb38d146e\\-000000[\\/\\\\]+vfeNnh\\-q2Eg0FBAK3mWAyOI4wLg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f7bfd\\-d2232974\\-3c03\\-4a77\\-b247\\-0ab45da5c786\\-000000[\\/\\\\]+0NoXgawzUv9pXcQX1iv4\\-J6DlZo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e648b\\-df8c7421\\-0fa4\\-4c60\\-9d7e\\-aa2f0ca592b9\\-000000[\\/\\\\]+wkRpKfkzf3Ie6MrDmJPWEAYnHD4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245895c3a\\-25787bae\\-1773\\-4b67\\-bbfe\\-2cd2b41148c9\\-000000[\\/\\\\]+rp0rVG_eGF84fZdPa_2nX52sBRI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589d128\\-ee16e9c0\\-5eb2\\-40a6\\-a3a4\\-491cb671d58b\\-000000[\\/\\\\]+nbFYZGfL\\-Zlth9Rh5OnY9ERrR54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570e68f\\-17d4a207\\-37fd\\-4c56\\-aa3a\\-bc77756fed69\\-000000[\\/\\\\]+XhZxOGvXHv8ViMZ5cEadjSLvDV8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ec61a\\-a625b356\\-8154\\-4744\\-ba3e\\-005d3590939b\\-000000[\\/\\\\]+dtiUNOoxbRwV9xDSbDd0bZ6r\\-Y4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be6c4e\\-ec0e1801\\-41f7\\-4049\\-aa2c\\-213378ac251c\\-000000[\\/\\\\]+rbsKL1yogUX2D9AcSuVKPoL9y94\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458787fc\\-c298e1ea\\-cce0\\-4fb5\\-a50b\\-aa1230f7d543\\-000000[\\/\\\\]+grzT0EOO_s0irBinabDX17Mbvrg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582c261\\-04cee172\\-06cb\\-4ac2\\-8dc1\\-39cbb338cdee\\-000000[\\/\\\\]+09s6qMxrmlS7xWJ1gFSzbaW7MrA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584dce5\\-f776f018\\-42e4\\-45c8\\-b4cc\\-91a94b5fbcd3\\-000000[\\/\\\\]+LjTM6qziOLUjN53K7DB2mg0LsBY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bde99\\-35b8d33d\\-5458\\-46a5\\-b9c0\\-3a41ab89c348\\-000000[\\/\\\\]+XyRbmey0Ffrn1_VsYh7GfjTD_Eg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e1f9b\\-a282a1bb\\-17ce\\-4661\\-8e86\\-61a42703e5d1\\-000000[\\/\\\\]+WTgwZ3JYJhD\\-yrvUHSq_4kgR5IM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584a939\\-3a95b741\\-b9e6\\-4349\\-9c17\\-5480bbfde87a\\-000000[\\/\\\\]+qEU5eJjkOgunqK4m2inDVBe1meI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245959f30\\-1f3871ef\\-78c2\\-4739\\-b98e\\-c5a80645f95b\\-000000[\\/\\\\]+UvKz66Pnd7WwcFSRfhlkDBLk6R4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca015c\\-e0dae4de\\-47a8\\-49d5\\-b039\\-18dd2a00f595\\-000000[\\/\\\\]+wZAnEElPymX1vT3kUSlNHhaxqLo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ba7c1\\-08132f38\\-0ea3\\-49b3\\-aea4\\-acf00351682d\\-000000[\\/\\\\]+2lVydJQPsQ\\-VuCAnpRGSCtNhPhg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a05068\\-601d1b4a\\-85c8\\-4da1\\-a396\\-3bb2e600deed\\-000000[\\/\\\\]+Zc1wlG\\-lJFzgmUIiwbzRutoEtP0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b92c6c\\-812c8d42\\-5ad4\\-441a\\-b8c2\\-0e17c6e2bdd5\\-000000[\\/\\\\]+22uI\\-zo3i\\-Xk0WhERTXfNIKGdmA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245716933\\-df52935b\\-3186\\-4580\\-9cc4\\-bf2ebf3f9130\\-000000[\\/\\\\]+7Dbetsm7ESBWZrL7vDprADGGe60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245820f09\\-c66041c0\\-919c\\-49ee\\-aab4\\-fd289f578b03\\-000000[\\/\\\\]+mx7tnN\\-cdHB5r55oGSMJikCtLLA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577500e\\-f9f59a0b\\-097e\\-4ee0\\-99e8\\-1628cb0f38a2\\-000000[\\/\\\\]+C9BBgnYuBgCRdUrb3axWMMEU8g8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b22401\\-1b407fd1\\-45a1\\-40b3\\-931a\\-8ecf0bc97b7f\\-000000[\\/\\\\]+TepAlhZOnkM7NW8B1zXBtKedjvY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f8988\\-2887db4c\\-e661\\-41ac\\-881c\\-be327cc3638a\\-000000[\\/\\\\]+wFb7DnCMpYboVseCMXy9DFVbM8Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594b047\\-6872e511\\-0f2f\\-498c\\-aae7\\-783cffce156d\\-000000[\\/\\\\]+JUtdU6dTrhHI_0uaDgkl3n9urHU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245998aad\\-48773b0f\\-e8bf\\-4f5c\\-862d\\-8191fd6d7622\\-000000[\\/\\\\]+dA0etveS4pQptnQSFtg1MT8K4iE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b1bf48\\-1b6c01db\\-3ed6\\-4792\\-98ad\\-40f682906879\\-000000[\\/\\\\]+dHemKECzSsk0bvWFk2TsL09pVPM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245716f6a\\-5f3abb0c\\-6e2e\\-4b59\\-8a69\\-763e3d0b0ff1\\-000000[\\/\\\\]+t8kBH0WqG7rBAfghPJP9ey_\\-TZ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7f766\\-deb7e0a1\\-0710\\-4fa7\\-9e79\\-9a7d79ee9244\\-000000[\\/\\\\]+Hb9z0Ctq\\-Qb2P4r8TfFJG\\-J2vko\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b28b88\\-b0ee0168\\-bf86\\-40ef\\-bb47\\-1e6688d98970\\-000000[\\/\\\\]+jPfCPAyRleiQQKOLmaIHTdJ2VIg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456156f7\\-6b424706\\-d627\\-44b0\\-a367\\-e30897905dfb\\-000000[\\/\\\\]+DaYO4zFo\\-1hjR8o9lnq89DfYoWU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a573fd\\-cb2532e9\\-012f\\-4617\\-8025\\-413901d2fe0b\\-000000[\\/\\\\]+8L2pyW\\-h0jTgZVA0v09C4nbGoGo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b17545\\-3d35b473\\-d4b8\\-4a9b\\-b94d\\-7c5c22d516fc\\-000000[\\/\\\\]+OAyudG1uRRaYrtys3SF8WA88Fqk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c83663\\-0209cca3\\-b90b\\-4114\\-a115\\-8a96d3a64f4d\\-000000[\\/\\\\]+2Ldk_zG89TWiP882JKpYAOPjeQY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be27fd\\-543f9fae\\-d73d\\-4f8c\\-a808\\-21ec67182783\\-000000[\\/\\\\]+ATGDpGyUnY8GPqyfxMWUdLLj2z4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b02ad7\\-67760dd0\\-e50b\\-49f5\\-89a6\\-351eaec16d2b\\-000000[\\/\\\\]+YoMhiPxjSveLuqbo5lWV6JXwvgY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245834e91\\-9f26a80b\\-9e4a\\-4eb7\\-bba4\\-d8f3bcb0f1be\\-000000[\\/\\\\]+34XaXJuNsHk4qClsIbl7eKpJ8Ig\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582bbc1\\-e5355d15\\-5b64\\-4eff\\-87b8\\-6fec8000629a\\-000000[\\/\\\\]+Iw4qTp3TC0VbBOIWNUa\\-XUCiAvk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924590d1ed\\-0712ed69\\-1fdc\\-4fe0\\-8728\\-a70c6da99a1b\\-000000[\\/\\\\]+JkdIQBO1Qaj1TCXRBCFnR\\-7zWaY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576e711\\-6d4fd46a\\-6c13\\-4154\\-a005\\-9f065603d246\\-000000[\\/\\\\]+jHy1X62OmOUjpMQbpeM2uTRsWCo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458aed29\\-9151ff83\\-b94f\\-4f42\\-b4b7\\-17b94abde5ae\\-000000[\\/\\\\]+77X7l0CPmGmFEWN4giGkwTvaBNQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bace74\\-9bebfbd9\\-8061\\-4262\\-bc25\\-a456ce9707fe\\-000000[\\/\\\\]+NO9bwhYn3U7yeKRZFK\\-3p2GRnOg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457fabcb\\-e24f3da8\\-6779\\-4d9e\\-8460\\-bb6f314fe7ff\\-000000[\\/\\\\]+nfxA4rWQLXv3OCtsRrQvNLOJB0g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c42f0e\\-c85a00f7\\-6eaf\\-4ae1\\-9e1c\\-6a64b4268a81\\-000000[\\/\\\\]+U5k0XW2TlhrPqg2GutbwVKreMDw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456acbb4\\-ce533238\\-dc64\\-4400\\-9681\\-9f0b951775c3\\-000000[\\/\\\\]+N\\-yW8a_yfxutHRTkaUR38os\\-zaA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245819bb0\\-54f3b598\\-2b8f\\-45cb\\-8eca\\-306ed88c39d7\\-000000[\\/\\\\]+3gkAXMWp7DDqQRntNLu0steBdZI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ba9d8a\\-43b9e8b8\\-0c54\\-4c1b\\-aa07\\-22eb58161da0\\-000000[\\/\\\\]+Q5_bEo0z7iUnQfpzIdqZGjzwJao\\=394(?:\\?|$)" + }, + { + "hash": "7cb3f9964b9298afa32abe59bba266b6e3a364a4a05ac49e0de2994c739bd285", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7ab93\\-c72c0307\\-2ef2\\-4493\\-89be\\-4a7902e84f91\\-000000[\\/\\\\]+KIMUnJArZ8QnEqc\\-00M1OlX0j9k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c36f4f\\-d90878de\\-484d\\-4ef9\\-9445\\-73c391fc104b\\-000000[\\/\\\\]+1zbcNfvXNxTYMSfrEihXA1E\\-PQM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456262d0\\-23b2cd5f\\-40e4\\-4ccf\\-bffc\\-6e343e724fd5\\-000000[\\/\\\\]+MrAUDAa6OFHZ9ozxG3WX4wlQeaM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b76611\\-a36f0edc\\-41bc\\-489f\\-b1d7\\-f8eefee04797\\-000000[\\/\\\\]+eadslTKM0PXMKjsBUU3V_nsQD7A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b2001a\\-454a03c2\\-f665\\-49de\\-a1a9\\-6b2e4ebab2d4\\-000000[\\/\\\\]+f1oI5RoDeUAaIxgZ5dv5mzmsr3U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572dba7\\-a438141b\\-1f75\\-47cc\\-8dd4\\-0b89715795cc\\-000000[\\/\\\\]+kOcKkJVT2QdeW0Kwq8hlFDsKXEU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f0256\\-177dc421\\-ef16\\-485b\\-8717\\-0c3b8d345fc8\\-000000[\\/\\\\]+5D3BqomDV5S0Rm\\-TST1V2Kjmbdg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245891e72\\-85296b3e\\-dc8d\\-4f1f\\-be2b\\-c3cab2c2cd63\\-000000[\\/\\\\]+36cH3_uNxfUwS5Xy3a0Vhx9NXOA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456132ac\\-c61d2f4a\\-8b5b\\-4bf0\\-9ba7\\-00c7f5ac519b\\-000000[\\/\\\\]+tFGqIOOnEmv\\-LbsCvl2HfFqP6ok\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3bd50\\-0a023681\\-0cb7\\-490a\\-b5b2\\-5c78b22ec877\\-000000[\\/\\\\]+xELvnvZYbjOkdIGqrjUOduUFi6s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b34b09\\-55fed74a\\-14a9\\-43a1\\-b22d\\-ad1b0856bc05\\-000000[\\/\\\\]+LiaWsPnXmymbZzWfeJOUlhuZV4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4a25a\\-1b04e064\\-32d8\\-4534\\-a793\\-2ae06ca9f967\\-000000[\\/\\\\]+N629WRjdK3_TvTRdsXhGPNwR4bs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a44a19\\-2cb5af3e\\-290c\\-473c\\-9085\\-b450f1851c5f\\-000000[\\/\\\\]+xJMbe20Zg5lW2vQUmejwDyZzmx4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c6c6a\\-af262c70\\-2b98\\-4c2a\\-9503\\-ff5d2934d05f\\-000000[\\/\\\\]+AM78nHRRUjb4loixh5HMZh2XdVQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245759250\\-d7b9a253\\-ecf5\\-4ef1\\-b644\\-7b16e8346e0b\\-000000[\\/\\\\]+vPafBuA9xVOBl9CSX0bjlvprqBA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c00860\\-998d92f7\\-205e\\-4595\\-8fac\\-0f708c6373bb\\-000000[\\/\\\\]+\\-ayi9\\-YM9JfUCpcNZL5uca8_ugI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad6469\\-afcd4ed9\\-8daa\\-4ceb\\-ad4e\\-19ce19503ab6\\-000000[\\/\\\\]+3zU1b8ecJ5ABrauGSTAyTVzPN9E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245989b9b\\-80cd16b9\\-2b5c\\-410c\\-a8fa\\-aa0fb23c21ef\\-000000[\\/\\\\]+EQouvuh2cVpTZ9Ip\\-zV6MReOEo0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245837dda\\-4419416f\\-8f27\\-4882\\-83b7\\-a0ed642cef96\\-000000[\\/\\\\]+dyiiGO2IuN6\\-r2vJFrviuSyVbR0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245affbd0\\-1b3e1003\\-406f\\-4a12\\-9330\\-15a109679053\\-000000[\\/\\\\]+LqsvxtQWN6qN8fPNik2hG_hHq4I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583e53f\\-b86c71d9\\-05d5\\-4b5d\\-91b1\\-e0a28d1a6662\\-000000[\\/\\\\]+s7aKjQxU8SsOqy_eq_0gT1taowA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245977311\\-1cd83c22\\-5d21\\-427a\\-8c8d\\-57d1d6d903ac\\-000000[\\/\\\\]+2YZeMp7Y\\-rx\\-YlF3cw_HBG9raqw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd9d8e\\-88c6b4d2\\-e14a\\-4c53\\-a6c2\\-6c1f5e52f8be\\-000000[\\/\\\\]+hjEpi5200OASPGfM0hH6hqgjo04\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583d423\\-cc1f9d40\\-bff7\\-4a62\\-8fef\\-7542fcdca9e7\\-000000[\\/\\\\]+BeNdhlMAlH7XtQ\\-MLZeNtAfmzvk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf98ae\\-3259082f\\-d3dc\\-4bbc\\-bc9e\\-05a26832730e\\-000000[\\/\\\\]+ZhU2oGz7kWPoK3H8ApV6GskvS0Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245995e5e\\-092661fd\\-6585\\-4f0c\\-bae2\\-da9aa2e84cae\\-000000[\\/\\\\]+MYJZ5jLVDyMsOmcCR4cVoJIlvWA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b21c2c\\-59998c87\\-0c71\\-4c8f\\-822d\\-6ff45a4b3f2b\\-000000[\\/\\\\]+KzFq6A2qihUrpDO855jM8m0uXoQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c250d7\\-1847b422\\-56e0\\-4099\\-bc81\\-44543ba998d7\\-000000[\\/\\\\]+oiTWflwoBdBZOxxLwfqkLDrMyVY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582e4af\\-70881c83\\-9f27\\-4b8b\\-a488\\-9a8035cc814a\\-000000[\\/\\\\]+CBV6U_q5dW62NGTD0iLyqazrRDY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c432eb\\-436978bf\\-dd2f\\-423e\\-993c\\-27e06c11da55\\-000000[\\/\\\\]+JJLeDmWX4hOHj91o6pZsMVBCZG4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d3957\\-6fbacd67\\-f3fd\\-4b00\\-9315\\-f26ef8a73f2c\\-000000[\\/\\\\]+4tdG_LrN6hBHl\\-Epyo9Ki8NoJZI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599011a\\-b9a98e5e\\-6e47\\-4e98\\-a9c4\\-3310fedd080a\\-000000[\\/\\\\]+wym8M6sUO3jB8Y7PpM1MpBVrp0k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459d45c7\\-0be93eb9\\-a08c\\-49d5\\-a4df\\-b7fdb5482b35\\-000000[\\/\\\\]+AVdIckBjFztekN\\-u9G1g7Yerkdo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459a6b0a\\-3e553847\\-019c\\-4c37\\-ac01\\-f16f4be4c249\\-000000[\\/\\\\]+P9CAABH5vJ6oGox9WqM\\-zavKyiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b977a3\\-d5dc1750\\-3f8c\\-4fe7\\-a09d\\-a6ebea3dfd27\\-000000[\\/\\\\]+D62ZMFhcl9VmhVX4Cx4ERAujN\\-M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458db744\\-bcfde721\\-1461\\-4acb\\-85f5\\-69d5c914761d\\-000000[\\/\\\\]+CuTDnEb58lNS35EfU4v11T_5hKg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589be66\\-50350372\\-fa59\\-4109\\-aac0\\-4e0fa122b856\\-000000[\\/\\\\]+aUHyOy6W4buiTtDie4KTaok8ML0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245657c53\\-75b90c0f\\-927f\\-4a0b\\-8076\\-a7d596ec9f4f\\-000000[\\/\\\\]+xZa28ZLSVA9kpXQy2EMGvc8pW3I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfadfc\\-f228bc9e\\-b42f\\-413a\\-8a91\\-1b65d0c36a3a\\-000000[\\/\\\\]+sNvR3rpPx5UjtQqld2rfedksvMo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245957c73\\-2d35213f\\-8f6b\\-4d3d\\-bfd7\\-7236dae13aa1\\-000000[\\/\\\\]+mENjYAtaTvnzoqRpL8Cqf9gftng\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924591607f\\-0cf9f804\\-b3db\\-4804\\-bf6a\\-3d90a72ab372\\-000000[\\/\\\\]+e\\-3b728KltQKtmg0WiriQwhCbJY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bc76b\\-230d4bc8\\-40a7\\-49e6\\-8046\\-4e549477704e\\-000000[\\/\\\\]+wyqhIDmnMvPoFlEO2CWQF0_\\-VPg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245948475\\-d5015345\\-f4d2\\-4cea\\-b19e\\-2130713e691c\\-000000[\\/\\\\]+\\-UGrP6f6_jZZEZO9J2j_Tz\\-BTZk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589e89f\\-f8fd8732\\-ef46\\-4672\\-8d79\\-075226a18872\\-000000[\\/\\\\]+sZRuxsj11nNj9A7AaTee3oqlYLI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b42689\\-37799c82\\-0054\\-4a75\\-bc06\\-a7c05cf0845f\\-000000[\\/\\\\]+NaVzBiBhxWzI_1Wfud6HsPd0THc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456be428\\-44478b32\\-bc7f\\-49b6\\-8e90\\-5b2c7689c723\\-000000[\\/\\\\]+UvLFI2k0IYOaflb9XCzNQfNZCtI\\=394(?:\\?|$)" + }, + { + "hash": "f816d75bebaee3c326b41fe27e2967d56b590e49d8219e390e48c5611a06a277", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st1\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca35de\\-b4e1d687\\-a652\\-40cb\\-ae6b\\-bcb0cd5193c4\\-000000[\\/\\\\]+m5PetI_SzJMJrGMhIeTVebD8OnY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568f16e\\-3b47a391\\-e316\\-48a4\\-9785\\-e1847d82ceed\\-000000[\\/\\\\]+aquxC4fRh\\-IYcjZ5Tvpgf1vX7Oc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b1b6c\\-a0fe0d5b\\-7f4c\\-4bf1\\-81b6\\-a91d7a858e62\\-000000[\\/\\\\]+FZE5rE2HvS7vL\\-mdAxk3r8C6gCE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458d0f51\\-37ce292c\\-6102\\-44ef\\-889a\\-f27b5bba8e7f\\-000000[\\/\\\\]+FMN4w35UV0o9HGKnLgT_gFFwVPU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbd5cf\\-a43a64c7\\-3b67\\-48a6\\-901d\\-d95996e67cd7\\-000000[\\/\\\\]+\\-8YrjVpqsmbgkL8vjN1XJw3trWw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459a7258\\-bdae1618\\-0888\\-4e43\\-99e3\\-17d5592acb43\\-000000[\\/\\\\]+qcGvTsQ4onTGgk9lr6KcV2bP6n4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570e68f\\-17d4a207\\-37fd\\-4c56\\-aa3a\\-bc77756fed69\\-000000[\\/\\\\]+8PCd\\-wOlQXkf0_bmzozFJXIgAkI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b65748\\-761105b5\\-61b6\\-45fc\\-ab7e\\-25b3e6a5bce2\\-000000[\\/\\\\]+cHr46Gpj8_UhCxnIZmmogIO3zC0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459619e7\\-c0aa34e9\\-97e4\\-4848\\-9382\\-9790e3043638\\-000000[\\/\\\\]+h4m\\-lecMxXsxp9Codzz3RVP0sdM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579d66b\\-e00956b8\\-7b90\\-4c1a\\-98d5\\-712c4aa51c30\\-000000[\\/\\\\]+k2_S10GqpvNzMLHQIHjQv7s0Hd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596e473\\-e18514de\\-1964\\-46bf\\-96e0\\-f7743bd64fd2\\-000000[\\/\\\\]+32lp_vVOXtdseLXUdiFtA98185U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b96d17\\-6afee39b\\-42a2\\-4b42\\-85a2\\-e06ce6ef41c2\\-000000[\\/\\\\]+rtvfwrUDZ6Xo0mkJTR_1ksHBwLE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924593e0d6\\-f5881815\\-edbc\\-4d27\\-a34b\\-8c060ca6a847\\-000000[\\/\\\\]+BWO70I3D7wqG4YU6IPr_egO9uM8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245987e00\\-df94491b\\-f805\\-4bed\\-b450\\-c3da94f40e55\\-000000[\\/\\\\]+WvBtAeTkQoGkuhw2Wi5hDkSS\\-o4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c96d60\\-2c875a6b\\-deae\\-4f68\\-9673\\-c49aa1a5d098\\-000000[\\/\\\\]+lspPXczTGKXwcK8uMPW7YAJG2HM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245acf5e2\\-a5576280\\-c4fa\\-4033\\-b66e\\-459f7fb311f1\\-000000[\\/\\\\]+0YDOIufuqWyyRB7_3GCxQnk3NyY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b24d09\\-2a9fd9dc\\-5e38\\-479c\\-a809\\-4dae1b8766c2\\-000000[\\/\\\\]+JYgaYyexZqUiKOK_yMEauFDdxdw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8c4db\\-2938ada5\\-2a1c\\-4927\\-8b5a\\-6d0b106433e4\\-000000[\\/\\\\]+HuzwEeTaxE0jEsCpTnKU8xvmAaE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af5427\\-fd331cc1\\-9d56\\-4db0\\-999c\\-9d84ce68b9f0\\-000000[\\/\\\\]+m9Px7OR5PehsyW4othWkQi1u8TI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f28e3\\-6f93538f\\-279d\\-45ec\\-ae0d\\-2b8190e3bbce\\-000000[\\/\\\\]+Q\\-TxDNznmAr8\\-Ys90HmyQKmbdcE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a35263\\-827eef68\\-dfaa\\-4600\\-8310\\-36ad3ec575f3\\-000000[\\/\\\\]+naxLMQOadzzok5BJtIN65b8TnBg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f38a5\\-705ae98f\\-7255\\-447b\\-93e2\\-6f9c0c617a13\\-000000[\\/\\\\]+\\-HjHO1XbcRQYntTXN1zxZxc07_U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b57b0\\-7fbf0216\\-9bdc\\-403c\\-b2f7\\-cd1012ddf9f2\\-000000[\\/\\\\]+NTVsRgsKvmSEWIvd_P\\-2n8SoKbI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245759ebf\\-9dbc19e5\\-07df\\-427f\\-9010\\-1f418adee18d\\-000000[\\/\\\\]+KJsGM6mPYFoZ0y51zRznJcc1PZE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245685e35\\-41d6313c\\-ef35\\-4b68\\-9cf4\\-aba17fd91fde\\-000000[\\/\\\\]+BIzTytHiZj_SpWZTMDehmIU_vW8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be6c4e\\-ec0e1801\\-41f7\\-4049\\-aa2c\\-213378ac251c\\-000000[\\/\\\\]+Ju\\-SrzG3X\\-iCtFdlsIIaT9ePGO0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca39e0\\-0a33dbfd\\-de46\\-4721\\-9528\\-08afe7fd0f70\\-000000[\\/\\\\]+mVzwTEhZaUVnt3Gs0DvGyv6Yp9I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576ce14\\-c203ddd2\\-4c0f\\-4267\\-8603\\-4668d66932d2\\-000000[\\/\\\\]+WF72izjCFPJGJlPVTqNUsr7vHgc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245626705\\-b0699bbe\\-1684\\-4b78\\-bb36\\-2045742ac683\\-000000[\\/\\\\]+B_Kqgc3HAnpeHJGeD5Jzqx0fgM8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4e213\\-7f07a6f0\\-056f\\-41d8\\-9090\\-7dfb913ac8ea\\-000000[\\/\\\\]+iqc3Vk45vhjFcOwwrw9YPTMrgNE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924571912c\\-b66b1d4e\\-feda\\-4c50\\-b0b4\\-d7ca5e840d85\\-000000[\\/\\\\]+P09uZU7FruuZl2WSKf7JwNFgm_U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587b757\\-56358b34\\-9ba9\\-40ad\\-b6ed\\-7ce2def6d702\\-000000[\\/\\\\]+yKjxynWI2_XD7q1MRewDZZLD4uY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457303ab\\-e8b31ba6\\-a1ce\\-4d40\\-9fde\\-e4828faa7cf8\\-000000[\\/\\\\]+E25fPMwsUQhSrTLvdo_lyx_6QNU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c339ed\\-4ef14322\\-0717\\-4814\\-ac55\\-e34ac1e85ad9\\-000000[\\/\\\\]+nl8uJrxrpdpBBIHC1DW\\-1GlbSak\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3f0e2\\-2758ffe2\\-0cc3\\-4e0d\\-a27b\\-48dd8418576c\\-000000[\\/\\\\]+Zip4eg_NuofiUOlf\\-TMT9UyIccI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245894b65\\-12362d91\\-77e8\\-4412\\-9f8e\\-4af72fcb7de5\\-000000[\\/\\\\]+CFGx9dfr\\-52p0v1ZLVmXusfV_dc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f7105\\-fa1dfa66\\-41cd\\-40ca\\-b37a\\-25c94c19db40\\-000000[\\/\\\\]+lHiJBIzE7Ui\\-Sdo6tGyAG\\-24cG0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b5b08\\-36669600\\-8d51\\-4062\\-aef8\\-2069ef59fbaf\\-000000[\\/\\\\]+butoxjT7I_OqQrBGIl4Cwvv84Xs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c798e4\\-4e554690\\-3001\\-4e25\\-a16e\\-8a687e027adf\\-000000[\\/\\\\]+oiwfrkqjZFYwu5exVg4bd\\-gq_8w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be180f\\-509b62e3\\-36cb\\-4ae1\\-ba2c\\-bb5913773e3d\\-000000[\\/\\\\]+a9_PNxnWPSvM1issqwr0yIrmOWM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afbdf8\\-5f615efb\\-2e33\\-4304\\-a097\\-8b392bb30739\\-000000[\\/\\\\]+6CeDLIBGAV649FU9dw_zgRrf2Aw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c4d32e\\-c55c1d98\\-122c\\-441d\\-a307\\-a5de1510ec14\\-000000[\\/\\\\]+nqT1J43lO9\\-TTtNCcDTpTnMDqEU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c652be\\-3f36e258\\-3570\\-4b66\\-9dea\\-49a88ba7156e\\-000000[\\/\\\\]+HgHqqiMvB5vt\\-v2iPzWDtNVbHzo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d990f\\-76723f58\\-4a5d\\-49d1\\-a842\\-4d0dccd07c74\\-000000[\\/\\\\]+VM4agkqJqqbj8xk66MTlJ66Pac4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457386be\\-27f1ffe7\\-9e09\\-4d14\\-8a50\\-cdad61c0cea2\\-000000[\\/\\\\]+kb6MERFdcLHxG0ExH2fw93sfHZ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585d418\\-fe61c8f1\\-7469\\-4d43\\-a49f\\-9797ae6c5ab8\\-000000[\\/\\\\]+BKB94bLIkVAZl_aG7idLxo9NOQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245911cca\\-4fc770f7\\-fde6\\-407f\\-9d0f\\-157bfee62da9\\-000000[\\/\\\\]+RZ6dKJjlWb8Pz8va_DOusyEfkJQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457baa5a\\-d0765556\\-7177\\-4af8\\-8d5a\\-643e2c2d3c44\\-000000[\\/\\\\]+PEqey6AeMgY5snGB4sPVsbKHZDg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455dc108\\-9b61dcab\\-b0b8\\-4108\\-9cb8\\-2fcbaceb1fd2\\-000000[\\/\\\\]+HR4fXMBI3MtJ1s1ThyIF92MwTWI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f0762\\-811a2765\\-fbb3\\-4fb9\\-80d9\\-9c0fb4313288\\-000000[\\/\\\\]+MOmKfT0fCcAdVdyuoSIXJNTvIgc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245611825\\-1247caa0\\-6c76\\-4491\\-8cfe\\-c17cb02e1cb7\\-000000[\\/\\\\]+zL29kH5zkNrSZSaUZ1ZwazHmObc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cadca6\\-d102bfe7\\-e818\\-4116\\-bc29\\-2c25d02eb68c\\-000000[\\/\\\\]+4KNGsZ5KMHfeu3who3G13uovGj8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b6bed\\-a3b4f70b\\-8eaa\\-47e5\\-94f8\\-18ab29fce80a\\-000000[\\/\\\\]+GLMwPv0vtzuRVWhyRupW5YaSJQY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245894b65\\-12362d91\\-77e8\\-4412\\-9f8e\\-4af72fcb7de5\\-000000[\\/\\\\]+edQE_bCZn_HtBGiAsn5EWRlkieY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa3a67\\-a7ca84cd\\-c70d\\-4b67\\-bdac\\-b2e8181019bb\\-000000[\\/\\\\]+uUCXICbf6\\-cvzKWuhzJIzsmtvuM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf71b0\\-f3123336\\-df4d\\-4ace\\-a502\\-d7b1d206ae7c\\-000000[\\/\\\\]+mEjfC9qZJCgF0vUGzjcz8apqTWk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598d57a\\-ffc57cfd\\-be9d\\-45a9\\-aefb\\-8a2c10699bfa\\-000000[\\/\\\\]+imbS1_ynHSH68I\\-u2dug1rsoaao\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bedddb\\-5f841cea\\-4655\\-471c\\-b36c\\-c9af72d02e1d\\-000000[\\/\\\\]+caDWZFDEvFYHKlXjKT84b9s41cQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232a64134\\-8d62f891\\-1a36\\-4652\\-81b3\\-00dde74b2f7e\\-000000[\\/\\\\]+XdqU08FBUshvDJSV8qqQf_kNtwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572cb73\\-988af225\\-6e78\\-4c6b\\-8360\\-b9982510fe76\\-000000[\\/\\\\]+H6Qfl7m74rvPe159FYTbWw75xVY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245675246\\-45cdab4d\\-cbc2\\-4fce\\-83e3\\-02df2f6fc229\\-000000[\\/\\\\]+lY6th9TeNGY4bhNoTYHvYmR4GkQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c5cf5b\\-cea84017\\-397c\\-4308\\-822d\\-75a1d6d56967\\-000000[\\/\\\\]+lqytk8K1b8sVMgwhj_\\-SllcQiPI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf0280\\-57e53337\\-0753\\-4d9b\\-b2e1\\-b4df3c75b71d\\-000000[\\/\\\\]+yRsNZmyzkIHNpRHrsWHMVqMD7V0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3e879\\-2306e6bb\\-7491\\-4d3b\\-8d73\\-92fab1550f36\\-000000[\\/\\\\]+BuSmZouSzTKFYqIBLWZBTrYyF_I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c77b59\\-3aea1389\\-b60b\\-42c1\\-8bc7\\-80b5608b341a\\-000000[\\/\\\\]+4IUf5m9Xfc9eLNDFKjcX1nWnRck\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245998195\\-093314fc\\-6821\\-4bf6\\-a2f5\\-863e2e62bfc1\\-000000[\\/\\\\]+WHh0CqbYPtYJK3QsB1MNJiYBCx0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad491a\\-cbc7b066\\-4094\\-4293\\-9882\\-0f22baa77c64\\-000000[\\/\\\\]+IoFO5d6SDhrE0zQI8Z1ojd2B4Ec\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be6319\\-7bd8e666\\-5735\\-460d\\-86bd\\-be633304e362\\-000000[\\/\\\\]+q4htsb7_jsT279q_Wt5OSiyeD0o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d3957\\-6fbacd67\\-f3fd\\-4b00\\-9315\\-f26ef8a73f2c\\-000000[\\/\\\\]+DFUuvdnxJ2AJqIPIqsL0peSNIAM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0b3b7\\-de05438b\\-161d\\-4200\\-a193\\-c5873496b460\\-000000[\\/\\\\]+PzmpsBNLOt8m7qYDlpLwOCss7BE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245905694\\-c83ec397\\-3b11\\-4c65\\-8bc0\\-6d2c383bc2a9\\-000000[\\/\\\\]+HwI5zO3T8YtzAfDvsjhh9WbMgSI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4e46b\\-e96601fb\\-b3cc\\-4c98\\-b9cb\\-c8d951127df3\\-000000[\\/\\\\]+B0w06ENDZRUfocRwKYt9YzPS2Ww\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a77026\\-18c3ec69\\-3a72\\-438e\\-87c3\\-c2d23c7f0780\\-000000[\\/\\\\]+lyiWV0yV8cmG60o\\-86Ko\\-FQmmLw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a8c994\\-b285d88f\\-ebde\\-4cf0\\-959f\\-30b24308afe5\\-000000[\\/\\\\]+4_xJ2sErOAxKWWD0jmAi1Xn4oF0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458dcba0\\-fa82c155\\-f9b1\\-4718\\-b834\\-96082a39b835\\-000000[\\/\\\\]+aGL15Pst8PQxpO\\-7OoIEknfNS64\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ca9d7\\-e6d7e31e\\-2990\\-41b0\\-a93f\\-114548390e12\\-000000[\\/\\\\]+msiOTiUQ1kldWaZMjIHswtCVI6k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459e8071\\-0547ee6e\\-2162\\-4ec9\\-b973\\-b8929b8eb189\\-000000[\\/\\\\]+leyHcCgovC\\-2gKDPKJ128ZWQ3Zc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565a05f\\-44a36da6\\-ed45\\-4993\\-9ea3\\-bc85e6a44553\\-000000[\\/\\\\]+6GPkz\\-v9pisajMTsGqJLeaFL21E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565d293\\-2f67f05a\\-e9bb\\-41a2\\-94fb\\-370f8bf47197\\-000000[\\/\\\\]+Fm_42kk6EgyL8J\\-NNO4QBo7ipqA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572f8ce\\-c8b701a1\\-47d8\\-4fd0\\-a4f4\\-9d2147db4806\\-000000[\\/\\\\]+IZi8LJMnQqSWv5R89wD6yHr0CTM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568716a\\-0dd3960f\\-229b\\-4e13\\-9835\\-f250cbffdfaf\\-000000[\\/\\\\]+Dk09wxo\\-FFEcAQuPPlqELan2_As\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b60074\\-172d00f2\\-4dc5\\-4524\\-9f03\\-6b29e42c859d\\-000000[\\/\\\\]+w7ajGVjYsue4K3wXR2rRVKWjWM4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d4894\\-a3291dea\\-bfe2\\-40a1\\-9803\\-8d03693974c7\\-000000[\\/\\\\]+8RX6qdTnRya0zaqFnxHDrypa66k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245acb718\\-00370e51\\-da9e\\-40a7\\-b734\\-598b35bad5fd\\-000000[\\/\\\\]+eKFYwGkwLbVCHYSm9JBXhhgqVpo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b16ce6\\-e2e8c730\\-6c09\\-4b93\\-99bf\\-f30b7b01d667\\-000000[\\/\\\\]+uXRcfulXWt34rwnfySrzQR7I9_Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458055b0\\-eac541cc\\-0552\\-41a9\\-b2e7\\-67f4dd789b89\\-000000[\\/\\\\]+oIKYgAQr6duyfHI28JhGF4o33EM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8dc19\\-022f461a\\-8d20\\-438c\\-aa91\\-8c4dc7f0c070\\-000000[\\/\\\\]+_EHWzfNt3y7cTadi65FRcopLOfg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afc3a8\\-31789c55\\-5e0a\\-4c5d\\-b5a5\\-0cd94e7e4f87\\-000000[\\/\\\\]+qEfsUnl3ercunSgIroXDgR4AGk0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566f0d3\\-0136f7d4\\-f64e\\-4f06\\-8a14\\-44613844808c\\-000000[\\/\\\\]+Nq\\-d9cdtl8y1cz2Bos01U9UQVG4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b40095\\-aa4fe424\\-fdcf\\-44da\\-a9a4\\-305d43a3a940\\-000000[\\/\\\\]+EqK1bcVTxXX3tM5YsZ1gkZF8Iz8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ddcde\\-88868963\\-94a7\\-4622\\-b7d8\\-a69f659f2b66\\-000000[\\/\\\\]+kPZvlzDZHO1CugrJz8wxCpTcPWk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c42f8\\-e64f4d67\\-88ec\\-4375\\-93dc\\-ff364cd5e598\\-000000[\\/\\\\]+b7lWSemf3WNWR93_jeJMojBgTlg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245816483\\-817ebad4\\-21c1\\-4109\\-a316\\-82d1138bd726\\-000000[\\/\\\\]+49_MLPXewTxujw0yE\\-uAzmC7jZU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8b052\\-31657696\\-edfb\\-4640\\-ad33\\-5919b5fecc91\\-000000[\\/\\\\]+d9IBdiP5e3ntDAvpyWpZViZ_5gI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bd618\\-a8e152e6\\-e5cb\\-463e\\-9e53\\-52a53550e440\\-000000[\\/\\\\]+VUVpB2CNTW75HliPQ722zWMpxTU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e052b\\-badb2d32\\-591b\\-4cc1\\-9375\\-783e871c6571\\-000000[\\/\\\\]+cUzRJj9utNFLMoW7NQqCqmXyxTY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245957c73\\-2d35213f\\-8f6b\\-4d3d\\-bfd7\\-7236dae13aa1\\-000000[\\/\\\\]+tYV1gcCwlqg\\-gl1ZjVU5d\\-b1icM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245754713\\-e078c05b\\-e98e\\-4d10\\-880f\\-b4f04662b9dc\\-000000[\\/\\\\]+GJJY3\\-Dn\\-CFhcf4GemEDBEFQwOU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be5157\\-df1b0911\\-f1c0\\-4e1f\\-95a4\\-36885dad330d\\-000000[\\/\\\\]+naCRl01_xe18CdwlepzhQnEH0dg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a7f7d\\-0ffc73e9\\-88dd\\-4769\\-85e3\\-e5817acd8636\\-000000[\\/\\\\]+9atsALL2mPz3JN2wAd8cu3EhzWg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245989b8d\\-6af1cca6\\-654e\\-4b97\\-9786\\-6e9de7c73436\\-000000[\\/\\\\]+G_OtTFVpuzqq03V2H73Okob_Dus\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a51ba7\\-714c3e2e\\-6547\\-4d61\\-8ede\\-b0adc5e44c8e\\-000000[\\/\\\\]+zNsQDhGYjrW4BnNsILeccmQyOpY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c14730\\-627ebcf0\\-1ac3\\-4608\\-a483\\-aef421f43890\\-000000[\\/\\\\]+Cg6DO40HgqonB544yVEYQSUoQf4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a30774\\-c4833ddb\\-05fd\\-4190\\-a996\\-531af0bc6d77\\-000000[\\/\\\\]+T7ZsKRNgWWFx36dftBm2tjgjFFo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af2a5e\\-9d9ddc00\\-470a\\-4bea\\-8b46\\-2bf28d5efcba\\-000000[\\/\\\\]+WmrAX3GVLijgxSUgKNZTWCVVN1Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbba9e\\-1b0a2a52\\-08e2\\-4162\\-9b7f\\-bf1107f04b8a\\-000000[\\/\\\\]+VTZe9F2avQkIf_DJ9YZwLXAFwMk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f8e2d\\-af56b814\\-b0a3\\-4d2e\\-9ec4\\-2f9d6b9be98a\\-000000[\\/\\\\]+dk9cFvmiELKY5JRPGqhGvCsiEnM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c30b6\\-d810bfc2\\-5f19\\-405f\\-a1b8\\-cd555cbdec3f\\-000000[\\/\\\\]+zQ31d3Pgu0Tgy0AOY6xWBsiMfQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae1312\\-9acacfcc\\-92ac\\-4e1c\\-bf04\\-74c07202b133\\-000000[\\/\\\\]+jcB_5SqgsytsFGacITyAmfy1Uxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d2e25\\-1c7d18f1\\-f446\\-4dd7\\-aa91\\-bade80516b03\\-000000[\\/\\\\]+UaWsDoO\\-RDTVHGrcVk4rcWSvrjc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c99b2\\-4e5b9796\\-5aad\\-4492\\-a6e4\\-6180eabbfcf7\\-000000[\\/\\\\]+P1N8F7BmnO8awW1YJx2TqZJAtvw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b91388\\-bab93a7a\\-a54e\\-4f47\\-830f\\-17ab3efadd89\\-000000[\\/\\\\]+T2cGhJmc2O4AmAtRpEDrLiyJ5vw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e8481\\-046a3fdd\\-0595\\-45b7\\-90fc\\-fe474a5ca92e\\-000000[\\/\\\\]+GLMuQJP1FbDJ_OA0kac4W71lNwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245957ab5\\-2b6e7c42\\-1c4f\\-44b4\\-8bdd\\-87d8dca24846\\-000000[\\/\\\\]+lsvs9_SghBo\\-MZ7MWbM_i_8OMCQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cc62a9\\-9675f6cd\\-52b4\\-47fd\\-8ee6\\-7d60bde6e055\\-000000[\\/\\\\]+yj1pRBXPj_O1g2noQ\\-ha85hG4To\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4d3e3\\-918ec9a7\\-e8dd\\-44d2\\-8efd\\-a3bd4b20dc2e\\-000000[\\/\\\\]+ciFSBzOuamndXlKPQCQNDjqvwTA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585b670\\-1f76ce14\\-bfb6\\-48c0\\-9415\\-d63407466c97\\-000000[\\/\\\\]+YOy_Q\\-WjOI5neAuW_VJY5ZFc\\-sU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b1bf48\\-1b6c01db\\-3ed6\\-4792\\-98ad\\-40f682906879\\-000000[\\/\\\\]+Xti\\-J3USYEtx27Aa5n7CAY\\-Tj_U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924597d814\\-d3db3179\\-8a5e\\-490c\\-a6ff\\-7a12843a8264\\-000000[\\/\\\\]+HrdyCHvAgtGBPUya1fHLD7JXSPk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459aae81\\-493ce50b\\-ef39\\-42bb\\-b516\\-a26bdca62184\\-000000[\\/\\\\]+xCYFKw41DosxFaIg68AFORgTBgk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245821aa7\\-daf0de5c\\-27b7\\-479f\\-b659\\-7a734f215f7a\\-000000[\\/\\\\]+FeLHj_k5Tul99YQ6_Cok0I\\-gGAU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456716a4\\-a0ab68e6\\-3e5c\\-4207\\-9e0b\\-f8bae4875ac9\\-000000[\\/\\\\]+Gm0TkH7Ad2JBg6nSAhb9\\-j7qgzo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598d4a5\\-9a4420a4\\-65da\\-4320\\-bfda\\-0e1f552cbd22\\-000000[\\/\\\\]+zYOXoL4O78HYbBSguXVKjJRRW3I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b227d9\\-36089836\\-94d6\\-4350\\-9e6a\\-2ac42846143c\\-000000[\\/\\\\]+ceFxUF\\-_3_R8KiK3LmxKSazHn5w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ebced\\-debfbffd\\-ea51\\-4755\\-a938\\-ed143d83639b\\-000000[\\/\\\\]+yt9WKP0OGxWEj2CcrepukVgKjk8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458311e1\\-d1447e0c\\-8738\\-424b\\-ae76\\-a66c2f9c15e6\\-000000[\\/\\\\]+0znIikByhZ7N1F0puJFFfiED6Tw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a0fa4c\\-2e9b04b9\\-cc06\\-4112\\-85f9\\-379cb205d585\\-000000[\\/\\\\]+UjoUR77afOgoDgBDAO0l7C\\-LDzw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1f86e\\-5bdfea5e\\-d849\\-4d60\\-b654\\-3925f0514f32\\-000000[\\/\\\\]+RndzZtYnuvpKqJWoqLeIYYaGu\\-0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245989b8d\\-6af1cca6\\-654e\\-4b97\\-9786\\-6e9de7c73436\\-000000[\\/\\\\]+Szys_m_E_b1CXmlVPugaZ9hQTHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfc0b5\\-3ecdab5e\\-2a3b\\-48ed\\-bf07\\-d77a1c560e64\\-000000[\\/\\\\]+maxnBcb9xlZPOELIxur4x0RLPso\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457145fa\\-d9e2b8f5\\-5e46\\-471f\\-b6f7\\-e7873654c268\\-000000[\\/\\\\]+TIeONOIX54h6ZjBunDXz5bNvAuc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf58f8\\-d8198540\\-9ed2\\-4def\\-bb40\\-86b988aec195\\-000000[\\/\\\\]+klXaeJakw2_Muutzec9FYyDvgys\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c62d3f\\-160506a7\\-7bae\\-4199\\-84e3\\-2e7bb3c0e9a0\\-000000[\\/\\\\]+rp9wfxqqjeNdQ7voDjL6Zt2ZHQM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a47154\\-848ee2e4\\-fce2\\-47bd\\-b3f2\\-b727a7541c2a\\-000000[\\/\\\\]+bue_gcOCrMVOHdgqT8OW6OLKDQI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245992d58\\-5afdde9f\\-4917\\-4413\\-9a6f\\-6acb14d16d68\\-000000[\\/\\\\]+Ljzy6PvS6dA8jp\\-m6eMBhpwt8og\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456db267\\-0b9ea9e0\\-4321\\-47c5\\-9a79\\-f3535e2302cd\\-000000[\\/\\\\]+nHRIhLjFQCcZzXxRgM3adsY2wq4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457f1382\\-49df5ef9\\-2530\\-4230\\-8a84\\-63056426c97c\\-000000[\\/\\\\]+Iler93qv9gnVGTBjvSQ4Nfrl5GM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a24275\\-fc840739\\-3ead\\-459e\\-8c2d\\-b7c65c4b2769\\-000000[\\/\\\\]+ShdM1_GkcJ9RSOjBG3cpNpdGkto\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a572d1\\-4fe8ac54\\-08c4\\-4d1e\\-8bd4\\-aed6bad1b3c0\\-000000[\\/\\\\]+ai6Tv8vtI5Vdd9uPR_XW0L4A4Gc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8dc19\\-022f461a\\-8d20\\-438c\\-aa91\\-8c4dc7f0c070\\-000000[\\/\\\\]+s4hxn7eMsPz2ZnlhlgD\\-wN0J0RE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b77892\\-7341c525\\-78cf\\-40b1\\-8f4e\\-156373352d57\\-000000[\\/\\\\]+RM6CyW3TV6opr4zPa8wTtAdhKcI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad0a36\\-3ff8e55b\\-bbce\\-4985\\-b43d\\-356d50f415cd\\-000000[\\/\\\\]+nTppy7LlDcMWuHHihiLhCB0z0xQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245af816d\\-0eea2105\\-da14\\-417c\\-ae6f\\-bfdcf32e4a07\\-000000[\\/\\\\]+ANy4TRXrp7gNj05f8ZBKoGa4yxk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459823a7\\-511d0fb5\\-9b3d\\-4cd1\\-9ed7\\-618fdefd85ab\\-000000[\\/\\\\]+HYrVihZdkFz\\-JIOE\\-e2f1ZaF5vI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb113d\\-fe4a883f\\-526e\\-45dd\\-8d95\\-69196a7bb0d9\\-000000[\\/\\\\]+mjdtHNMaXibJ5YWxEdve1cigLqE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579b173\\-296295fd\\-8902\\-4925\\-8479\\-e7a8e70c57dd\\-000000[\\/\\\\]+bV351pyeH0uY1E98jXpAQ2HBLHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bdbc70\\-7a6e4f33\\-a743\\-4ceb\\-857e\\-17b97b21c92c\\-000000[\\/\\\\]+7F4az2PQnx5eTGPlkZc682HT5Vo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c17cee\\-3315ecf3\\-e3a8\\-4b46\\-8cfb\\-40c759895f8c\\-000000[\\/\\\\]+8fBHNC\\-J5\\-9t27vZTtJiPfxZIkg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a05068\\-601d1b4a\\-85c8\\-4da1\\-a396\\-3bb2e600deed\\-000000[\\/\\\\]+TMtwjqeg\\-is13G2KvwURTkN8NOc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5ab5a\\-78913894\\-73ad\\-46b1\\-8769\\-cb55fe2ce37d\\-000000[\\/\\\\]+FJ6HdDrpy88IbNO79oNMXplJzH0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589c917\\-4413a051\\-5696\\-4812\\-ae2f\\-f1e85c62c032\\-000000[\\/\\\\]+azXalaLPGH7FnvruklzgzjF2W28\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587b757\\-56358b34\\-9ba9\\-40ad\\-b6ed\\-7ce2def6d702\\-000000[\\/\\\\]+pRDYdirORjB5nYgCCyUg42XJ9kA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245915e7c\\-8450cbff\\-96b1\\-4d15\\-8030\\-bbd671c33223\\-000000[\\/\\\\]+nWWXnU3_bJQscomPUqu7ownji4I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245766606\\-604a2203\\-fadf\\-4d20\\-91e1\\-cac2e24062b9\\-000000[\\/\\\\]+5cZiBRl5lHx5FzoiiXOMfnI\\-y3U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6a2b7\\-6c15f675\\-754f\\-4e8b\\-85a1\\-7be0051d2907\\-000000[\\/\\\\]+p5ae5cWfm2jTwACob6cg2EWlyK8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245823980\\-cfa6c85d\\-73bd\\-4fd1\\-8a98\\-5a8413c83257\\-000000[\\/\\\\]+zBmr93p75_cRoKH3d6qwYdnNum4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570a40a\\-12bf2cb3\\-af94\\-44cc\\-9d4f\\-d3b1c454e00d\\-000000[\\/\\\\]+JVSBsin9db24PQ5AS7Blxh\\-svk8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f0447\\-17b38d18\\-e06e\\-457b\\-a61d\\-887e202a3351\\-000000[\\/\\\\]+n0gElZKHHIDwA8Yw0MF958cTAd0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bb997\\-b4f5fcb0\\-acf5\\-4006\\-bbca\\-5676dc8cda01\\-000000[\\/\\\\]+NuQEQIfShFl9xzZ\\-YYYMYNC3Rd4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd2ba3\\-cc794897\\-423d\\-4a9d\\-9458\\-d0db9192944d\\-000000[\\/\\\\]+9tNE4LeWxxR1uGulA8cZoT5Rnd8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a11c8e\\-926c8ceb\\-48f8\\-4614\\-ab8b\\-7da3e53619e0\\-000000[\\/\\\\]+vx3HvoWBNAFTOX\\-k0cwUD_8m6Ug\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f8e2d\\-af56b814\\-b0a3\\-4d2e\\-9ec4\\-2f9d6b9be98a\\-000000[\\/\\\\]+DM\\-5nU0CgVLY\\-Nuc7ibb1JvyStM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245794a38\\-a897cea5\\-0f32\\-491f\\-9a9e\\-f7fccfb0e190\\-000000[\\/\\\\]+W9UZ8zk7j5cpFV\\-sjyWHjurAlVE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc8a05\\-72adcbbc\\-30f5\\-491a\\-9b45\\-b9dc53fe3353\\-000000[\\/\\\\]+Cdn8biPlfsEet_D\\-a3CiE5LVeLk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8fd5f\\-4917e905\\-4ba0\\-4ade\\-ad99\\-fe0d1fcbebe4\\-000000[\\/\\\\]+wK1dO4HgXb72QU3QgiPBNdW8JRk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245941972\\-6b389f3a\\-8995\\-434a\\-ba4f\\-e03ac9568799\\-000000[\\/\\\\]+3vBOf5B8RChUspioJJfysW244lg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a29fb2\\-75c5ea6a\\-024f\\-48c6\\-b30b\\-238fbb0ca3fb\\-000000[\\/\\\\]+O493h7ad6vdeDvY\\-FAsNy4e1xnQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a8c669\\-1c91586e\\-d157\\-4333\\-bb9a\\-ebe99e757616\\-000000[\\/\\\\]+9GyBY8h7bYRa62pkCSS\\-50bhKjY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c339ed\\-4ef14322\\-0717\\-4814\\-ac55\\-e34ac1e85ad9\\-000000[\\/\\\\]+Yb0m9P\\-2i2b5Jc9V8MUyiqg4SJs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574f95e\\-a48afc0b\\-8b5a\\-4f0c\\-a325\\-1282df8ade45\\-000000[\\/\\\\]+D77ZMwWIp0zkgPz9TV0K8Ny\\-vWE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569f5f5\\-8bfbcadb\\-1db6\\-43c5\\-820c\\-4f64382ca8bb\\-000000[\\/\\\\]+wqWzArDMtZmPjA2hE2p1PCLQkf8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459af2dc\\-32f82998\\-b6eb\\-4708\\-b03d\\-90e9cfa1f4c7\\-000000[\\/\\\\]+rmtbIuINJF_msEC9_ioQxdY_OLA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245793123\\-cf9b2c4c\\-d3e8\\-4f88\\-9ef5\\-c3613b99f939\\-000000[\\/\\\\]+v8s5XH7beJS_0NErUPvKmtTan78\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c84f07\\-edf21b18\\-d2f9\\-4e46\\-897b\\-092385546368\\-000000[\\/\\\\]+Kk\\-tu_6Og0qxlZdYVxkFrqrvcs0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458bc8e3\\-d46873d9\\-3d1c\\-42e9\\-81c7\\-2914ef347ced\\-000000[\\/\\\\]+q4ZL_m2pl5tIEUXEgMwSrOto4C4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245987e00\\-df94491b\\-f805\\-4bed\\-b450\\-c3da94f40e55\\-000000[\\/\\\\]+XkbrAsTU4v_Voa85CIF1KRXUaEQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245715abb\\-b77dca7e\\-d3c0\\-4b9d\\-8013\\-eb46dbd294ba\\-000000[\\/\\\\]+Y7E0nW4VSik4KWdj4QRmdH2SqBY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245891e72\\-85296b3e\\-dc8d\\-4f1f\\-be2b\\-c3cab2c2cd63\\-000000[\\/\\\\]+Nd5KafR9QtrZWPY4zye8r4OW\\-dk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8ad13\\-6adc74d3\\-76d6\\-488e\\-a5ab\\-ff7e81ea32a0\\-000000[\\/\\\\]+pMLFF\\-Xu5998nJVPbzVYuoMTXck\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bba03e\\-0bdfbb7f\\-9bd3\\-458c\\-87cd\\-4e0d93a08bed\\-000000[\\/\\\\]+NdKBOMxkIfWHTAG\\-yh7DNYsF3ks\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e9bd1\\-97ce36ee\\-b01c\\-490a\\-8feb\\-36faf3f687b2\\-000000[\\/\\\\]+1o8WYr5nnCqT53PVHT\\-bz\\-m2zgU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b46385\\-8876bf04\\-ab00\\-4ae5\\-a6ed\\-04022bbaf20a\\-000000[\\/\\\\]+syxPPyNIQW28HobqrRxbiftVAMc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ba9d8a\\-43b9e8b8\\-0c54\\-4c1b\\-aa07\\-22eb58161da0\\-000000[\\/\\\\]+hst5\\-Id5Ste0BJAXUEvI7HwHNCw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b76611\\-a36f0edc\\-41bc\\-489f\\-b1d7\\-f8eefee04797\\-000000[\\/\\\\]+wl_bJypCbsGsGqNpT69ANtlcckM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afeb88\\-f6d02057\\-8d14\\-4d65\\-878e\\-911ae62f2568\\-000000[\\/\\\\]+6vmIhEY2ftxcJC24Yplzr3rJ78w\\=394(?:\\?|$)" + }, + { + "hash": "84e2135b2a950c63ee0f1eae4097a2a4bb8a62f9a533c6260190e787ed944263", + "regex": "(?i)^https?\\:\\/\\/webmaill000\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7a02b\\-657fadb0\\-0624\\-4ee3\\-991b\\-db9e298bcb13\\-000000[\\/\\\\]+pGYdwCOh22gQgFSbic_Rf0yBGmQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4166c\\-11c0426c\\-79ec\\-4ec7\\-874e\\-6c53ceef1824\\-000000[\\/\\\\]+3TWo5o5HuGLOAVaUK8DIKdXo7Cw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595a155\\-7e34097e\\-4b89\\-4268\\-942c\\-1e47b91995ad\\-000000[\\/\\\\]+2VTx3w4fDNW2c1KsSnF\\-SnIu450\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c9e84\\-4c5dc381\\-c191\\-4123\\-8575\\-e16b824a553e\\-000000[\\/\\\\]+C\\-e4JgMDTWLtmYTEBOiLv1P22bc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e91de\\-2f6e784a\\-27b6\\-4703\\-ab38\\-0f389163adba\\-000000[\\/\\\\]+cMQt259eS5zpHNj\\-0zBv4UnRFYE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a5a38\\-44c006e1\\-b814\\-482a\\-b826\\-5c6b8a091c59\\-000000[\\/\\\\]+Y\\-G55A4Fnww2gQB0HofBMyM6efI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598e787\\-116f0ab7\\-f1ec\\-4cc2\\-a62d\\-0b1c934310db\\-000000[\\/\\\\]+hfgzcCW2J9QgTVVdtyW_I\\-pIEsg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245964979\\-17d54b93\\-60ee\\-4e3b\\-a40a\\-a8ce67364f0f\\-000000[\\/\\\\]+ukdxYmJERh0B5NUwybBlhwZMfOo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b78c2\\-dca8446f\\-a13e\\-41da\\-86bb\\-1f39bb691e3c\\-000000[\\/\\\\]+lChNsMGp3nGE6ZFjEfCpu3EVhjc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a2be9a\\-14deb472\\-5e75\\-4ad8\\-8282\\-90e8a4ee9ab2\\-000000[\\/\\\\]+u3puQ45VwNbkJo9fNfEi_BWhKAo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245981f3f\\-404657cd\\-4642\\-4f1f\\-b934\\-0ec1e8514378\\-000000[\\/\\\\]+NVqSz7kWsGgHMrEKBytYVcEF6Cs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924591cd24\\-00025ef1\\-9250\\-4809\\-b0ec\\-93c1d74ecd0b\\-000000[\\/\\\\]+eyM5pX0J5x_he2_5B8WRdzHiiHg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bdcb42\\-3416d16a\\-ccd5\\-4001\\-8a8a\\-e5ca33e35a5e\\-000000[\\/\\\\]+ejLrRN3LJ4iCTeGKHJZTfAFE1EI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b41e45\\-58555c46\\-3a12\\-4432\\-989d\\-44cfd0fefcc0\\-000000[\\/\\\\]+GaQ8CArBAqeFtVJhdGEzpcMU5Go\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576867c\\-6d576f87\\-84e6\\-4e2c\\-8e4c\\-fb0b472af9f5\\-000000[\\/\\\\]+qMi4mpcaJHyqE8inysl_WLHebUY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457493fb\\-ed50d587\\-4f1d\\-404e\\-8715\\-6a5e4db7b456\\-000000[\\/\\\\]+Z9oBqPyDxomqXrqwCNhjhSjclhA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a06c10\\-bcad09fa\\-4913\\-48a8\\-a660\\-330602000c57\\-000000[\\/\\\\]+FUGnSItUrFOLdbyN7r98EnFWHOc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cba06e\\-b4d794a0\\-cd7e\\-423b\\-bde1\\-0eba3eb60bca\\-000000[\\/\\\\]+j82TKt3ekls2RCSfN8sacnB2xac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ad40f\\-7f420317\\-7712\\-4a26\\-88d8\\-734f54c462ab\\-000000[\\/\\\\]+oYQ7dPJ21hCnx6tZxuE1K\\-Tabl4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a470a\\-5923e90e\\-89ac\\-4a2c\\-8571\\-bdaa1a037651\\-000000[\\/\\\\]+HnlbI5IRRiCorf4JjQ54Hzp7V3Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c43548\\-e2ea2655\\-f2ce\\-4f7b\\-bff6\\-124794a40a54\\-000000[\\/\\\\]+0iKwOk5nIYRKIDmCjK9r\\-Rr7a80\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f4c0e\\-0fb9b65f\\-4bf4\\-4d38\\-8169\\-61e0d8c44804\\-000000[\\/\\\\]+9akea0Gno6Y\\-g7N5UOLX\\-2V0CVU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245940672\\-1a92d0cc\\-654c\\-4f93\\-a8ec\\-9c9166f37e83\\-000000[\\/\\\\]+p8IGeGUhCfT1UEQJk5eki07gkXM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b2a257\\-17d3323a\\-e775\\-4017\\-8fb7\\-658bba11ab9d\\-000000[\\/\\\\]+v1Z6CamLm3A6vycfDuSpt5dmGz0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245908b37\\-103b91a1\\-357d\\-4734\\-8f88\\-8950947e15c5\\-000000[\\/\\\\]+lpKp3RoEG6HDFuu05cqHZYA_af0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4de42\\-b60b0807\\-c456\\-4912\\-86e3\\-cfe8a707057b\\-000000[\\/\\\\]+vOfDP_xCM89YOTZrnboD\\-RwljCI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f5d6d\\-48958852\\-4afb\\-4363\\-aae1\\-6810fbcbfbe6\\-000000[\\/\\\\]+0iZvQEPORuof_9KtK_63Rdz1iuU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245941972\\-6b389f3a\\-8995\\-434a\\-ba4f\\-e03ac9568799\\-000000[\\/\\\\]+Ynoridd249iygoijcNk9\\-elBfIU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b39750\\-0ce8f1b1\\-0bdb\\-49e7\\-95bd\\-e30568b6749c\\-000000[\\/\\\\]+qpLLtVUYxVTd8ocE6iNwo1IAhWc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ba5f87\\-48db5ee2\\-64fd\\-4d14\\-af2d\\-6839199e05e5\\-000000[\\/\\\\]+5UcVZzub\\-Jh9NfRORp0KA_SCHFU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8f9e4\\-40252bce\\-cb80\\-48e1\\-a6d6\\-81c23c9abe27\\-000000[\\/\\\\]+k10lTKIe9BpCvvd\\-DKJKuM\\-mt\\-4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb32ac\\-62112a42\\-c3bb\\-4006\\-9ea2\\-f9e527b50ee6\\-000000[\\/\\\\]+zkN7DQCdyOS9w2N1IpAY_hD9Uxg\\=394(?:\\?|$)" + }, + { + "hash": "ffbde36c0dfc685a225824682848f6a07083d12b20a076c7adb54f432e99dd1b", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457293bd\\-f0e1c240\\-7910\\-4e6f\\-b131\\-79c0fc18a6e0\\-000000[\\/\\\\]+VFtfj\\-HAR8Yz28rbeM8gNCP1cow\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e3399\\-1e1a5605\\-3f07\\-4d79\\-95fc\\-f217f1b36774\\-000000[\\/\\\\]+UpbYNzp8C6JfgtYs6ZdKhweLyVU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca20be\\-738d6e40\\-56a9\\-468f\\-a510\\-9961439525be\\-000000[\\/\\\\]+rwGQHv49dfXBnMDbVPFWcIZxzxo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245749e1f\\-02ba9629\\-1bc7\\-4ce5\\-b0e0\\-34f2bb034c20\\-000000[\\/\\\\]+KVtTvucQ3MFJWj5nBZzSBosS6_0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8361f\\-3eb5ca0c\\-cf64\\-4ef1\\-b4b1\\-c7d639381d7c\\-000000[\\/\\\\]+uRcmGFmVK6swbG5imndKSnCE_kc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb3d48\\-d35b7501\\-f69a\\-4108\\-95ed\\-a2866b0b82b3\\-000000[\\/\\\\]+rhLjvhRKIRw95HEdrWR7s\\-p_UPM\\=394(?:\\?|$)" + }, + { + "hash": "14cd402d1e8d8ca7dc6551dffcf11beb2d787afb9fa62589a98198226b0fd6f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9172[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570b11d\\-ceeefc49\\-7478\\-493f\\-a1d4\\-fccc2aa95c1a\\-000000[\\/\\\\]+vOk8teccvyUnxJAWfocwpulEmdQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce3ed4\\-38f0eb85\\-758b\\-4aa1\\-b7ba\\-9f43ff46d89d\\-000000[\\/\\\\]+r\\-1qY1AmIqh9eGPbCEOl_Va1ylc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589ab77\\-807701c7\\-9962\\-4c12\\-a40d\\-21fedec04653\\-000000[\\/\\\\]+A51GS4mj7gGla3UYOcqoPXg8KMQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7e2ae\\-50fef669\\-75f6\\-47f9\\-b711\\-8f147d9a370e\\-000000[\\/\\\\]+FydgcV\\-PVRbfxvWhHjHGZYneCY0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245baeab9\\-f7fdd6f5\\-9b02\\-44b8\\-9bb9\\-7c1723277ffa\\-000000[\\/\\\\]+gEBLTnyPLy9kXOxfMpzbYpdRltg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924597d814\\-d3db3179\\-8a5e\\-490c\\-a6ff\\-7a12843a8264\\-000000[\\/\\\\]+3oo3Vi8xllX6PYm8ZEo9MR6glXs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6de45\\-dcf254a6\\-df82\\-4ace\\-a12f\\-a6f8cb2bf920\\-000000[\\/\\\\]+ayCRi97grc_RHAbfAtBIgoDpJRg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245905243\\-bbec8765\\-76fe\\-4bf7\\-b05b\\-51353637f3a7\\-000000[\\/\\\\]+oe_uoygA3ScyQrTyzG42HedW3to\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574f5dc\\-51f0eddb\\-6c41\\-4722\\-9909\\-1fc415a7d3b1\\-000000[\\/\\\\]+jDX5lwAZpZNaHZGqb4iR4I\\-dMMk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa614c\\-01be3a75\\-9fc2\\-4208\\-aa32\\-7817435e46b1\\-000000[\\/\\\\]+B1UtSLJdsXjEZ7v_HllOfICU6Ls\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bef9da\\-4798d013\\-162a\\-478d\\-ab11\\-f0191c9bea6c\\-000000[\\/\\\\]+uzw8mtWZgCpmnq6stnBiDo50obs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bba1a7\\-bf19a406\\-6c28\\-4310\\-bf54\\-93ee8c13fe12\\-000000[\\/\\\\]+t8vH4dZuA2bIn7eo5pr2hrCkZ04\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245750f63\\-225cbfcb\\-99b7\\-4fb7\\-9037\\-09699121b529\\-000000[\\/\\\\]+1UMSNoMLtvcLVqxuc6ZITRe7CXM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a372bb\\-d971d909\\-2463\\-409f\\-9679\\-241796bc153a\\-000000[\\/\\\\]+q9CCcCxTmKL5A8AcTAh8Kl4gO_A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245889c85\\-9fdc29bd\\-4f30\\-4a22\\-a024\\-72de09e57902\\-000000[\\/\\\\]+I7vhBPIZq3JlzHuWtaVS7Y\\-2eFU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457baa5a\\-d0765556\\-7177\\-4af8\\-8d5a\\-643e2c2d3c44\\-000000[\\/\\\\]+jOW2GghQDCBFE20JHo6Y48eIC2o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459d45c7\\-0be93eb9\\-a08c\\-49d5\\-a4df\\-b7fdb5482b35\\-000000[\\/\\\\]+BL4e0EXqS0w5gd54la4RPmdpKGA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245746759\\-8b4eb416\\-b028\\-488e\\-9ac3\\-14e772d03a27\\-000000[\\/\\\\]+nO6Xrb0fwZcwaGJp_m7qGNsyCsc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457286e6\\-297c5733\\-9ace\\-4da4\\-b0ca\\-7cfb73dea0d7\\-000000[\\/\\\\]+s00TOcZvRzUcs\\-BWWk3Z8FVbW2E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d08218\\-f9eeac5c\\-f667\\-4433\\-a16a\\-9845dee14774\\-000000[\\/\\\\]+lKdFgv8HpIwS16UJy\\-F3D57jdSY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245994f2f\\-afaf920b\\-7765\\-4703\\-827b\\-59879b61ef7f\\-000000[\\/\\\\]+fu5\\-pFiCH\\-l_tXAW\\-ii2t03540Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c70730\\-69aa462f\\-3fa9\\-4d33\\-93ad\\-e55e6140c4ec\\-000000[\\/\\\\]+rkIDWGVxoRpCGFX\\-FhLhHJ3sI3o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7897e\\-56c38b7b\\-aad7\\-48f6\\-9ca3\\-54df5b385568\\-000000[\\/\\\\]+xHeiyN40QB5GvyC\\-BBYc3cjxjeI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566d876\\-309dc5d3\\-2f1b\\-4cdd\\-a608\\-7227ddb271e4\\-000000[\\/\\\\]+OyEXBT2bND6MEEHyahweKrryoyU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b2685b\\-651fff55\\-f13c\\-46a4\\-9338\\-276b698394c7\\-000000[\\/\\\\]+eKzC_u\\-_mzaLpu_WBnWl8JnyL_g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e9003\\-624a933a\\-3465\\-4833\\-ad54\\-ae5c3129ead6\\-000000[\\/\\\\]+5DI8xhxEXPMuUgRp_pjAsWnTosM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a31d49\\-71dcb74b\\-fb5a\\-4bc0\\-9461\\-cede4f2c8440\\-000000[\\/\\\\]+JpaeemzvT3HE0aOvqqIa1hStR5Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565a05f\\-44a36da6\\-ed45\\-4993\\-9ea3\\-bc85e6a44553\\-000000[\\/\\\\]+nkZDyxs9kSW6uVV17qRX7OqTh68\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce8d42\\-c835ae88\\-a77b\\-4f9a\\-a712\\-ee529c761ee5\\-000000[\\/\\\\]+y8L9l6v2MRh4DT6bF3LWn7xWJv0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d0094e\\-1e613f6b\\-73e6\\-4892\\-8599\\-de5d1793d177\\-000000[\\/\\\\]+NiQ_qgVd1h4Ek6F750en31pLX9o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457de486\\-0081f0d9\\-1f20\\-471f\\-875a\\-729fb1f30b47\\-000000[\\/\\\\]+BP38lT4FDTwugMVCehU04Vf82X8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579cc18\\-d6b56118\\-af26\\-481c\\-b7e2\\-18bcd6160e4f\\-000000[\\/\\\\]+Xrd5WObRi8bjrKRYoFJTN03jhbI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d03407\\-57c815c4\\-3e1f\\-407a\\-91a3\\-0f4bfab09531\\-000000[\\/\\\\]+ka_7NOzMwOr1Fe9PZYZir2D3DTI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c16614\\-3fba713a\\-42e8\\-4698\\-bc59\\-aa1692257b43\\-000000[\\/\\\\]+Ga9kwQXMYPjyaeXoOG6H243dHJo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e682e\\-9f7dd76f\\-261a\\-4ae5\\-93a1\\-32a1fb1617fe\\-000000[\\/\\\\]+aN_eWugYDVSuE\\-2SRE1BDbWA9qw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ea553\\-644fa640\\-2324\\-4551\\-a995\\-1ad288155cc7\\-000000[\\/\\\\]+9IQLq0SfHOOb0LryVjhSjdK0Vxo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a2d2c1\\-a3617079\\-0e46\\-4707\\-b500\\-c32625048057\\-000000[\\/\\\\]+rmrrR5UE10gSEk1bWau5AlLU_Vs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd5d4e\\-7e36003d\\-a893\\-4d29\\-be54\\-5472ce4329ef\\-000000[\\/\\\\]+r8DMonEVFKFwFcE1\\-hQ8\\-ZyxMrw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ceff6b\\-364f9709\\-b64b\\-45fa\\-a145\\-ba2f6414ee68\\-000000[\\/\\\\]+7RVzH\\-pHboqJaTb5w3F103kAnH8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585e7bf\\-f4eca958\\-cf96\\-417a\\-a966\\-44ac05aa800e\\-000000[\\/\\\\]+E3lJgMbL49vaIvL4C1ftMeaHHI8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a42aa5\\-1c0f4d21\\-27d1\\-49cd\\-8b36\\-a19dc8bf263c\\-000000[\\/\\\\]+QPamg9\\-MC_n04NarT4p9zXAc2rs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924563e4ae\\-a875769f\\-cb27\\-41dc\\-8e9d\\-2b201a20f986\\-000000[\\/\\\\]+HLhy1Zj8nkyERAama3Y6K9ENwQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e7458\\-a9782b55\\-3c6b\\-436b\\-bc88\\-1f3380a96f87\\-000000[\\/\\\\]+Tfpu8zw7CJ2gEQwrJeXLC1v4DpI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b5b08\\-36669600\\-8d51\\-4062\\-aef8\\-2069ef59fbaf\\-000000[\\/\\\\]+FNsLYz2FBjYmBB2cVpOlsARV8dc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bff581\\-c73074bf\\-db16\\-4948\\-ac88\\-8489f21ddb51\\-000000[\\/\\\\]+whqfBr6eMyBJVTzx21z0LBHG\\-Z8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b1dc1c\\-1288e503\\-182b\\-40ae\\-b2fc\\-9f692c651a6d\\-000000[\\/\\\\]+me5kYDTyPYFc7kXPp\\-KFSK5rBF0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4bb6a\\-927dcf5e\\-8199\\-4640\\-8712\\-79f63c15cd23\\-000000[\\/\\\\]+R3tHwWSilFrXp96DbhD5fZjhYQ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c362ec\\-17762128\\-14cb\\-492f\\-b183\\-d37f39431f5f\\-000000[\\/\\\\]+zyw5iueBYNIVMzL1D5YnK9n0UFY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ea317\\-b7fcfce6\\-dc60\\-4c7d\\-a383\\-c91501590620\\-000000[\\/\\\\]+cIh2zWdiaQqy0YFuOJ8NrSSvUaI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456de8d2\\-e15da72d\\-65ba\\-4133\\-b39b\\-ad2bf31551c8\\-000000[\\/\\\\]+JWOTtR8wuwdCHTKd7_SfJ7DWLPk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457dc4e5\\-23c4ae59\\-2a7a\\-4c0c\\-91e0\\-16c3b8177085\\-000000[\\/\\\\]+5SWyMd1mdfJt_md\\-w6Uc7pYdlws\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e9807\\-a33e143e\\-36b4\\-4dd1\\-a677\\-444c1fb6bcbc\\-000000[\\/\\\\]+7ZRKPiSAa6iO6m6kyqBthci4ZBI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be4f1a\\-4dfa2ec8\\-3183\\-4f5b\\-bc11\\-3a49119cf1bb\\-000000[\\/\\\\]+HgWTniUGt1A0yMzFRUCBkH_wQPQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245993b51\\-7d7e5f18\\-3f94\\-4625\\-a855\\-336571886818\\-000000[\\/\\\\]+LNZ8sR82mP_3hWlcZP0Vg\\-l\\-1sM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c847eb\\-f6b2611c\\-8277\\-44b7\\-aee1\\-e9cbcaab39d9\\-000000[\\/\\\\]+nv\\-AUuGtwlcPT74Aum3agxQ8ToA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5a1a4\\-ace64f28\\-eca3\\-4173\\-a466\\-19300be525bd\\-000000[\\/\\\\]+YkI6KLfo8kYzlPoNlFfoNR5HYtw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac44fa\\-2d0c17e8\\-2faa\\-46c6\\-9cc5\\-a04b255eba81\\-000000[\\/\\\\]+7YKOm7IrMPs8xBRyED3Jy9onZuI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e5d0c\\-42b43058\\-14f5\\-47ad\\-8ffe\\-7d84ed98fbc1\\-000000[\\/\\\\]+eiXKW5PVIdYdnaHQvF2w0\\-WoWs8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f04af\\-ae0bf8ef\\-aa31\\-404a\\-9ece\\-a49897782e33\\-000000[\\/\\\\]+heHWpQHt3KcVsj3xo0YOZycRCoM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b22d58\\-71119499\\-f30a\\-4901\\-8726\\-69fce996a0b5\\-000000[\\/\\\\]+sK1Ke5XL\\-rED5sJ2LNnL73nUSoA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459406bc\\-f0108828\\-31bc\\-40f9\\-88b0\\-363aec6eb0ff\\-000000[\\/\\\\]+HabEq321hRw3zgIlOuMp_0he1Oc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245851446\\-7fe7f17b\\-9712\\-460e\\-ba28\\-6ace107b6181\\-000000[\\/\\\\]+F6vs3mWI\\-lwx\\-42Ure727uKz7hU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245caa113\\-d672e671\\-e2d6\\-4ab2\\-889b\\-8bc7c58bccdf\\-000000[\\/\\\\]+wGCmqDezaiBiKQT_DN4wHvEJiQM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3441f\\-2c5663e2\\-131b\\-445e\\-888e\\-7aaf2d2cc2f5\\-000000[\\/\\\\]+hSG3QAo2lxnlnYyW4T5mi8ruozc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbd5cf\\-a43a64c7\\-3b67\\-48a6\\-901d\\-d95996e67cd7\\-000000[\\/\\\\]+xmxX5Xs0Y0cVL9y8NYassGCWHEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b99e8\\-ec67ce44\\-e1f8\\-49d9\\-94db\\-82df9ae05c0c\\-000000[\\/\\\\]+UWd0YYcFNjKmUOuSvNuSldSO8wY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afa5b2\\-56681ea5\\-926e\\-46e5\\-85f1\\-03ea701e6ce8\\-000000[\\/\\\\]+CxyyyGPq5cF_MJ0c5xxmdP1GpHg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8c8ff\\-d5c9cd81\\-9055\\-492d\\-a626\\-a1f15430ec1b\\-000000[\\/\\\\]+uKATQZkHThbH8v_bI_PT9Fp5hNk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d03d94\\-b532e5f3\\-3d24\\-4a4d\\-8f6e\\-3abeef688f8e\\-000000[\\/\\\\]+MGLTCsvOfWb39BbF9uRGEzgGmPc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad8dd8\\-b50f22a2\\-2d16\\-41f2\\-b6d5\\-89f390f1e950\\-000000[\\/\\\\]+PWVGEo\\-yUk3nbvXinST45q3kQEA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b25382\\-bf700caa\\-abf0\\-45c2\\-aec6\\-4c51535fed27\\-000000[\\/\\\\]+x0dI\\-WTq9cF\\-Llbdz9hV\\-OnrSLk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245820ec5\\-80bbf31a\\-e15f\\-486d\\-a5c9\\-8d03505d5da8\\-000000[\\/\\\\]+Z5HYYImxEjNBIuYDuj1lcbgUJp8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e64e7\\-ccec4ccb\\-c491\\-48a5\\-be3e\\-546fb0617e11\\-000000[\\/\\\\]+F597ScLk5snwKC9hcOY6ER36hCU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b95935\\-cd2225bb\\-37ff\\-46f5\\-bc22\\-c08ebabb45b2\\-000000[\\/\\\\]+SjVsTsQPWtYhevhFbDN_AEIvEZs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b22401\\-1b407fd1\\-45a1\\-40b3\\-931a\\-8ecf0bc97b7f\\-000000[\\/\\\\]+TeWmWze6OUAEM4eBIf7H12xPO9Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e87cc\\-d505ff00\\-5d7f\\-47ca\\-a090\\-e0f91e5879de\\-000000[\\/\\\\]+a03fvp2pFZDik8M5UE3eZJPxl_I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb34aa\\-23b7867d\\-71b3\\-4852\\-b60d\\-c6f6acfdab54\\-000000[\\/\\\\]+xYtAm_iWjzuLFsGtJ3XWLMiNoVw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e3399\\-1e1a5605\\-3f07\\-4d79\\-95fc\\-f217f1b36774\\-000000[\\/\\\\]+Q9Uv3crMBtNfXiTAN01aOoUc6HI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456423e7\\-0e05ef53\\-13f7\\-410d\\-a260\\-dc5f3038e602\\-000000[\\/\\\\]+WRmKom0zoNONsCtAalZQgygcveQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576e1ce\\-1cdfdcad\\-2c3e\\-4c47\\-a0e2\\-248112cfce5c\\-000000[\\/\\\\]+8QnQWjZicc_\\-5EfkJ6C5rgubRFM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245829b91\\-37652b50\\-2efb\\-457d\\-9388\\-b58f72f65539\\-000000[\\/\\\\]+42Rhj_sXnn\\-u7IGbALgwGyOUNjQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a73cc3\\-f81f6858\\-66c0\\-40f2\\-9777\\-971e706bee9d\\-000000[\\/\\\\]+CN54P9cMt3kPqeI9XW5MFi6hIxo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456b99d3\\-7a756a13\\-3d8c\\-4598\\-ae2b\\-5c45b78d225a\\-000000[\\/\\\\]+bg3jpPURwd6Za\\-mwbPHYuUeCAq0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459938c2\\-cf8bc4e7\\-733c\\-4fbf\\-ac82\\-2c5ef96f7fed\\-000000[\\/\\\\]+IXVhLuwHf5Ifb4ewL\\-ezAmFU\\-Qc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245739172\\-c149659d\\-a395\\-4a47\\-ad2a\\-190bb9bb8650\\-000000[\\/\\\\]+SQ37m\\-y_zLF62\\-LPwoO1DD_iKPc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a51248\\-db0d7b0c\\-82d0\\-4179\\-bc45\\-68395e8ee084\\-000000[\\/\\\\]+m9f4c7iVGAcR_H\\-K_U97Dtjs8Wk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595969a\\-82e1fd3f\\-99e5\\-497d\\-8c64\\-e818c38443fa\\-000000[\\/\\\\]+1Uj3IW\\-MmG9ZhQrOAPspS6SnvDs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572bee9\\-917edf43\\-d030\\-4c08\\-8495\\-070f80a2140a\\-000000[\\/\\\\]+SgNUkYCnWWjn6ZoR3qhGDsL4qXc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e648b\\-df8c7421\\-0fa4\\-4c60\\-9d7e\\-aa2f0ca592b9\\-000000[\\/\\\\]+hiA95QIymz\\-HNe5Sg_FMqwvNbw0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a24a68\\-2658dd7d\\-f9bb\\-4649\\-a021\\-8c4013b60b8f\\-000000[\\/\\\\]+S4dJO5cSVlTyAdWLQimE1Toz_mo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa3a67\\-a7ca84cd\\-c70d\\-4b67\\-bdac\\-b2e8181019bb\\-000000[\\/\\\\]+jZJobUSkbUdFox9lod0aaTUt4No\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245935c67\\-b420de90\\-5c25\\-45a5\\-b9fe\\-ae56a862d9ea\\-000000[\\/\\\\]+69bObgiSY1c4PwSNcwUmp2ysn2Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cd09e7\\-384a95f1\\-d464\\-4250\\-abd3\\-5f4b21ea2b7a\\-000000[\\/\\\\]+MW9m\\-OS8ev21L8MafToV4ZbOnrU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595969a\\-82e1fd3f\\-99e5\\-497d\\-8c64\\-e818c38443fa\\-000000[\\/\\\\]+T9r2lEdHawuBaW6wp6F9YxbF7P4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569a295\\-0fc8287c\\-06d0\\-4f4c\\-b60a\\-3e4dc1a2c714\\-000000[\\/\\\\]+TiHb5VXtBj80l94HOOKPjjSoU6I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a9549d\\-a976b297\\-8442\\-4379\\-91fb\\-01e312bfe08a\\-000000[\\/\\\\]+KH_XHvlvgskVRAqnTDwniYOHuzs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ada0b0\\-6cf4e34a\\-d76c\\-49e3\\-a82d\\-ab09457c171d\\-000000[\\/\\\\]+OytJh5zzOU68C1IAqN\\-xBWSGGPI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457eefac\\-bb220474\\-6205\\-4f5e\\-a94b\\-4f691bc71883\\-000000[\\/\\\\]+L\\-aNcEkOo9Y8rCg4SSms4JxS730\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924566287b\\-996bccbd\\-6c6b\\-4e4b\\-bc1c\\-78afd05d030d\\-000000[\\/\\\\]+b9jYJExiNcZup4HpnuXYuP0G_Kg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245993412\\-2cca6461\\-cb40\\-4a7c\\-910e\\-f1200392bf64\\-000000[\\/\\\\]+aXN98A0hokx1QfuzTOPtGgkGsAw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458355f1\\-044a7cc7\\-a0b2\\-4833\\-91cc\\-ab07e28811b4\\-000000[\\/\\\\]+kFZA6oFfJkHzAHoNp4cKMUQJckc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be7267\\-fc119757\\-c476\\-4adf\\-9976\\-1b9005857b60\\-000000[\\/\\\\]+Qk7ix3X8twQiiT21LmKuMcI7G\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456b9e0d\\-ae891d71\\-c97b\\-4786\\-80c4\\-69f6ddd58593\\-000000[\\/\\\\]+8UJFgsslzpSnBurQ35cVxbtLJ4g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ada6e\\-b80cfa02\\-bd64\\-40ea\\-bf20\\-98a5a188c9a0\\-000000[\\/\\\\]+j6vnS6Kr6g8v41Zs0m1NOOag2ZA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f8cc0\\-6723d068\\-e1e8\\-49da\\-99f2\\-8cf67faecbc6\\-000000[\\/\\\\]+r77l4k_Pf4Mo81Mef2QcpW8poSQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b89072\\-a110051d\\-0951\\-4b14\\-973d\\-cdda589f1d13\\-000000[\\/\\\\]+Mnsbuzfadn5bqX1Zpo0ft6Orc8U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abee10\\-89057a7b\\-268c\\-48f2\\-bb09\\-4f35c63f6742\\-000000[\\/\\\\]+kzgpStJbpF_Pdceqi99RI0CzLCM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458306ec\\-266afe06\\-4c57\\-4e49\\-8c4b\\-1e8bcb65118a\\-000000[\\/\\\\]+9kZThAodIHhEqbgzTIJi4\\-7XCak\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582a4c2\\-56ca44f9\\-4835\\-4a6f\\-a60d\\-87ceb1430f3a\\-000000[\\/\\\\]+TPJW5rgi0uMujuwuRgXqIubQcJo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245763794\\-b95156a6\\-3c8d\\-46a1\\-9b49\\-265bfcccab83\\-000000[\\/\\\\]+WKSI6JQlAwbqltrP5UCJJ05xqEU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582c3d4\\-a76fec74\\-dd0d\\-440c\\-9528\\-d92ff71f0450\\-000000[\\/\\\\]+cy1ubkUB8NTnC\\-fJz1D72bOmqQc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3441f\\-2c5663e2\\-131b\\-445e\\-888e\\-7aaf2d2cc2f5\\-000000[\\/\\\\]+CRyVK\\-MjqnyZj3eLeAHhFI1bKcw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245997b9a\\-38ede389\\-e6b3\\-4c87\\-b7db\\-dc3fc0e08539\\-000000[\\/\\\\]+Qj\\-h8dc98CbA3reSRDtvHRuiKog\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569c4dc\\-4c6e9b05\\-d900\\-4f53\\-8ec4\\-62ab3681fe82\\-000000[\\/\\\\]+XbPBCqhIOtfTKpdESflYg3WHf0E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c32156\\-9c7d9177\\-fbff\\-4b4a\\-98ee\\-87ac08049a9b\\-000000[\\/\\\\]+jZ7XEl_2iQaDYf\\-wCLbvlEV7LZM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f5d6d\\-48958852\\-4afb\\-4363\\-aae1\\-6810fbcbfbe6\\-000000[\\/\\\\]+qLez3SajjxM9jkffTFLI3Oz7ixY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245662a24\\-99d40b63\\-7edc\\-48c3\\-b3a0\\-53fa62daa82f\\-000000[\\/\\\\]+Jo3DJrtY9Iuog4KoG0oT6pFFmS0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfc24e\\-a06a0548\\-f61d\\-4b75\\-8910\\-43c8dd1772f8\\-000000[\\/\\\\]+_sybF\\-i4daG8sqenXFIwDMlZ92M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a83e67\\-0fd28169\\-b732\\-48f6\\-ad66\\-cdd36782daee\\-000000[\\/\\\\]+LIqzH3zqbGWzljEEXVAHVw0wSUc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458224ba\\-313ccbbe\\-df78\\-4dbf\\-b2d1\\-558730045d0e\\-000000[\\/\\\\]+Ogy0EL23JB8k3FRLk9QdKwA0MyU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245815c8c\\-b44c0792\\-04b7\\-46f5\\-854b\\-cf4575bc83dd\\-000000[\\/\\\\]+a4Q1MceEqUkKxfMozkQJ2V8yKW8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a305dc\\-a1e24af0\\-0dfc\\-416f\\-ad93\\-6d3bba9fba57\\-000000[\\/\\\\]+pqP8eYbE87ytWU0niaZpim2zPVU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245977311\\-1cd83c22\\-5d21\\-427a\\-8c8d\\-57d1d6d903ac\\-000000[\\/\\\\]+0Eyg5ry4hhMOVMukTOgpyMMRFoQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8484c\\-9d85ced0\\-07e8\\-4d0b\\-88d2\\-67f601c95ffc\\-000000[\\/\\\\]+_Aka8pPHq\\-gDmr4gqbwWwB1miho\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d9212\\-8363d7f4\\-fde4\\-4a19\\-9fb8\\-5e3c62c944d3\\-000000[\\/\\\\]+0O4JsQNL5KttzmaQC4yLuOqfNa4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245611643\\-ac9d90c7\\-a4ac\\-49a3\\-8f10\\-47d3cadccddd\\-000000[\\/\\\\]+Ojewm8rK5A8V91DgEHoh_Sq_S2A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245739f8b\\-0b3a7387\\-94c2\\-4b3b\\-ab7a\\-28e45b2a22dd\\-000000[\\/\\\\]+R7CZ1STo8sPn1y4ZT2RD\\-2dOaOQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457486fd\\-d8c71377\\-6128\\-44f1\\-b95e\\-dd45c62f519b\\-000000[\\/\\\\]+NyvqeV3fo83PEhAiivzPmLm4kg8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587c36d\\-8be4f99a\\-5609\\-4766\\-8e1c\\-cab35dfe4540\\-000000[\\/\\\\]+Opn5_0B01I18X29064\\-MgiV_ZMA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af5a8a\\-0fb8adde\\-84ac\\-49c3\\-bc03\\-83e26cd01677\\-000000[\\/\\\\]+\\-q8\\-yami0IN_IVMHylMvZD6g4j0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245baf906\\-fb66563c\\-53fb\\-4809\\-ae70\\-64bee74973d9\\-000000[\\/\\\\]+O\\-4QXCRFu\\-Ir_BTpSqeEapqS1QY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924576f3ee\\-8e82def2\\-6eae\\-4c66\\-b165\\-e0a63f0776cc\\-000000[\\/\\\\]+vsP0Ok3knvD2E1Qgg6RUhtHMac8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf68ca\\-5cc7703a\\-55db\\-441c\\-9093\\-6716199867e4\\-000000[\\/\\\\]+JouVUjDIx8CZuzal3vXjW3U4W54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b814e3\\-ec3bc3b0\\-505e\\-4da6\\-8def\\-f58798e3f814\\-000000[\\/\\\\]+8M8FkK1IZbZreHVOxbIdZud9lOE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c77ca\\-a1fd4aab\\-f6ae\\-4a50\\-b199\\-84189a814d55\\-000000[\\/\\\\]+SgDCfJSh6C7_Z1vq6AG5aJQpQXU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c15de9\\-a0960b83\\-595e\\-4442\\-8631\\-1fbf49a02f85\\-000000[\\/\\\\]+g7q34Yv5q6kz5JsXtBGGSMlI0tk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c63e0\\-2e7ca703\\-05a3\\-4aac\\-9350\\-8a60fb91dd13\\-000000[\\/\\\\]+9YmGrhglNUvN6QQsmcRi7TFlhFw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b87d1\\-caa3d5c2\\-eed4\\-47bb\\-a447\\-f68983c1a620\\-000000[\\/\\\\]+kmw\\-nrs3Miv3xhDvAd5XVxbCVcI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be2eda\\-74516064\\-f8ca\\-4789\\-be6a\\-2795aa9f2a1b\\-000000[\\/\\\\]+r7oJ17LleGJMNawzD3n5qtyApKQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f9954\\-6acb781d\\-d94d\\-496b\\-88d1\\-e51bc025ea3d\\-000000[\\/\\\\]+Y3rdv\\-hlUUhi8LPas\\-6LxIXoI6M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b78d4b\\-cda6870b\\-913a\\-4d25\\-8ae0\\-88ca5d685daa\\-000000[\\/\\\\]+yNXR1LgEe5p31s_XYXSiN1ZKwW0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a6fd64\\-132a8882\\-5be5\\-4b88\\-88c9\\-a909147656b4\\-000000[\\/\\\\]+6oJuaS3\\-MzX0\\-jC_sjLbRmenKIo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455ba797\\-886cf221\\-87a3\\-4058\\-a9b8\\-4c23a4f5fc59\\-000000[\\/\\\\]+dwUJRQntqQqS8EKaYepePtQLMJA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca44ff\\-adfed6ec\\-34da\\-42ef\\-bdc3\\-c5697acd8943\\-000000[\\/\\\\]+bJqXaOB_oCn2BeYhDrXVIjL0L1Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7e845\\-96a6d2a7\\-2705\\-498b\\-ba87\\-f6b11cb30779\\-000000[\\/\\\\]+i1eZUw1JmwlKZWnekmNrMuckayw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dc0f9\\-da6a00bd\\-945a\\-4e92\\-8284\\-1b6b23c7104e\\-000000[\\/\\\\]+XjeGVcJOfV3hsH9EzNlf4MLHxRs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c32156\\-9c7d9177\\-fbff\\-4b4a\\-98ee\\-87ac08049a9b\\-000000[\\/\\\\]+az_3o_mmPKe6_oSj2sd91UHxUd8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572ca40\\-8a1fbfde\\-21d6\\-49b8\\-9cef\\-ad020915340d\\-000000[\\/\\\\]+GRKUViYIO35MHb9qtoVEj9HKJCo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c934af\\-546774bb\\-4ef7\\-4853\\-b4d1\\-8f3bfab381b5\\-000000[\\/\\\\]+bkqU7CKduM1QWugFAfDMPpgUuJQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0c661\\-b593fe79\\-87aa\\-4b0a\\-ad82\\-6fa16701d8e0\\-000000[\\/\\\\]+rSgJg_9BJYAYoTp463Azlj8hqUY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bda527\\-4f7f6f30\\-6b33\\-4979\\-80f0\\-7cfef787738f\\-000000[\\/\\\\]+r7GPLSHo8aNMGj4oDIW0aGn08sI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a78ce5\\-d164683d\\-c7d8\\-468b\\-8fa6\\-8121086f3639\\-000000[\\/\\\\]+t2BjHLPK4jB7CTA7WULckmi_lT0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca3823\\-815e5adf\\-d8e5\\-483e\\-92d0\\-ea07f92a3797\\-000000[\\/\\\\]+hO2mZyLGSm_EsYc\\-B3zx4XfjgkY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a3387a\\-53445c44\\-fe4f\\-4331\\-9898\\-d7fd892aa852\\-000000[\\/\\\\]+DkRrtARKJEIs1SNDIncR3XaPsvQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584f350\\-1fd13e42\\-95ff\\-43f1\\-90a3\\-570b4b5f188a\\-000000[\\/\\\\]+boK_1Eub_uLcWhEKJ1w0AKXyuek\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459338d6\\-36eec4a1\\-ab83\\-438c\\-a2a9\\-74a11a0a7309\\-000000[\\/\\\\]+tAVHAVAG\\-dHjfZ0MXagT2hfrxJE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b920d4\\-dd741249\\-643f\\-44ec\\-9963\\-81e9a67e22a6\\-000000[\\/\\\\]+OkH7eWNsTgtcEnxYNCf5CMjVVlM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f8870\\-0dc565ca\\-fe2e\\-4448\\-b685\\-97050b842458\\-000000[\\/\\\\]+gjM0yljCJtPQJ6CXBKUzGp_2L1o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d07107\\-768d0eef\\-3a1b\\-49ef\\-b931\\-6e62359795c2\\-000000[\\/\\\\]+BEBgbbcbAlSIGESuRvDX8OcmA1g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245736f45\\-e5aa1314\\-44b3\\-4891\\-aa65\\-b86685024ad1\\-000000[\\/\\\\]+m2zQVVHhbUrJ0UyfFZlfXX_kt_8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d1a85\\-f9673ffd\\-cf59\\-4343\\-9be0\\-0d6d7e1f7de1\\-000000[\\/\\\\]+W5rXngTt7YN2QoeSri4pDVrNewI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457486fd\\-d8c71377\\-6128\\-44f1\\-b95e\\-dd45c62f519b\\-000000[\\/\\\\]+FMzp_ZZivi0LoX0g8fxcWe2ragk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4a31f\\-8a7731ed\\-1696\\-46ca\\-8481\\-f8e9b6d775ac\\-000000[\\/\\\\]+TxwmlkKi1h_DdbQTI4hFRaQZhMI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b18108\\-b50b706f\\-34a3\\-409b\\-935a\\-7a350f631ddb\\-000000[\\/\\\\]+k0eRJYGw70FkWzx7vYOY_4M6Ny4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b16bcc\\-4fc226d3\\-2eec\\-4f88\\-9c7b\\-0069522d9ba3\\-000000[\\/\\\\]+O5owgJ2JhirUHMiYeGODUljomlc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585dc85\\-07521d25\\-f01c\\-48c6\\-bb54\\-72adc958f07a\\-000000[\\/\\\\]+Xpsa4PbsgJAsD_CdYLHc3z6l26o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+noiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599a93f\\-6565f66c\\-3a55\\-45b8\\-82fd\\-a4b160f174c4\\-000000[\\/\\\\]+yDuzNZxHxvnOmdVsVBdfDovEMso\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589ab77\\-807701c7\\-9962\\-4c12\\-a40d\\-21fedec04653\\-000000[\\/\\\\]+yag4AY9dY8gwULa4sovDVk07l88\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459378b3\\-5d86ace2\\-992d\\-45c0\\-8be7\\-9bde81285e32\\-000000[\\/\\\\]+aYRQzVf6LixdveGmWKA11f4yMfE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924574ef4b\\-1ccc5d97\\-4dcb\\-4d7f\\-aca0\\-773b16f36c79\\-000000[\\/\\\\]+g1hl35t5_LWkMkckLkiEOdiT70k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae44e8\\-57ba50ac\\-1f8f\\-4527\\-a174\\-49f8f2b5f2c4\\-000000[\\/\\\\]+zbqeLL4bdpKKJ2qm3GMX7L4y7GE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cdc4c\\-96d49957\\-fbf2\\-4cfe\\-b35d\\-714ce38913d3\\-000000[\\/\\\\]+jzz5IVjbr4omSgcZwbTWIUtmE4c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b784c1\\-c411b724\\-c3e7\\-41af\\-bbb9\\-a415170a9e33\\-000000[\\/\\\\]+TaOBDErKzgcVXgtXP4x\\-YXhn43U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577ccc2\\-7a8ea5ea\\-1bb1\\-486c\\-b20b\\-48bf701a250c\\-000000[\\/\\\\]+hZV7np_dLqYwkzP4iOuEMRsikkI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ad236b\\-e7b62df4\\-f272\\-477f\\-909c\\-7be264b2c914\\-000000[\\/\\\\]+PrcKz0aYV2DDqKGhejSX83mxxiE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b90231\\-f5c3a2fb\\-e33c\\-4003\\-8952\\-fd936daec625\\-000000[\\/\\\\]+zU9QcE1xiQzRZ6gYppQcJh37Ch0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c5cf5b\\-cea84017\\-397c\\-4308\\-822d\\-75a1d6d56967\\-000000[\\/\\\\]+hz_o\\-wzRUPrt65jkcoV8J6Bx4k0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b393ca\\-79a0fda9\\-d16b\\-4fe6\\-879f\\-5fe2ea39ad09\\-000000[\\/\\\\]+2XEGxR0kyBhpwNzbBNHT7qDEF8I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458eb861\\-303bb261\\-adb5\\-496a\\-a0a0\\-bc1183a2e6ae\\-000000[\\/\\\\]+5POpfRrOwjlOzgoSVdGKTOg0CoQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ed0e9\\-63755e75\\-3a28\\-4cfc\\-a55a\\-d0b7025ad2ae\\-000000[\\/\\\\]+2RXo4mH\\-LLMDPxK3qjRjUvuNeUc\\=394(?:\\?|$)" + }, + { + "hash": "76d549e5c9c94c802459f8a69365c4008cce55ca03fc459d2720bee1865691b6", + "regex": "(?i)^https?\\:\\/\\/pub\\-eb7d24d0917a483e8e5f27fa9f15dfcb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245829b91\\-37652b50\\-2efb\\-457d\\-9388\\-b58f72f65539\\-000000[\\/\\\\]+WkQkzE3cV6j7tmlgoyZY09_wQj8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596eb97\\-ccc4854e\\-05ad\\-4125\\-b965\\-83a7132ec8f1\\-000000[\\/\\\\]+82x\\-7P2Z5xPV\\-fLWxjQdw3LuJe8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1713a\\-9dac1870\\-c1b8\\-49b5\\-95e3\\-2782165072b9\\-000000[\\/\\\\]+02uO9RB_6iDYsM668qNSjgGlRUA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585e774\\-125b19fc\\-95cb\\-4139\\-b1ac\\-762a178d3f26\\-000000[\\/\\\\]+P9rQrD\\-Ll3j\\-_S08boHylMag3DA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6258a\\-d8406b30\\-ae83\\-4f05\\-b8c4\\-d72227e13743\\-000000[\\/\\\\]+XM9gkU59CRWrFoAjkEUwPmaCbao\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a2b3d4\\-1371f6f9\\-aa55\\-43db\\-b17e\\-17ade97c3d2e\\-000000[\\/\\\\]+etwglQzdHPGNgehCHVR\\-cAgJ\\-\\-Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d08b07\\-bfb042e7\\-817c\\-4327\\-b660\\-c98b9c5fadb2\\-000000[\\/\\\\]+WTbkBlJ\\-zx9wrRSlHbR7hf981rI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b54807\\-64f90627\\-5fd2\\-44fe\\-8a0a\\-98328510cc81\\-000000[\\/\\\\]+UTBdwRPPStyUwnQdqI7ggZz8AEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b84f21\\-22c888b3\\-fac4\\-4f0b\\-8c3c\\-073144de1bd5\\-000000[\\/\\\\]+ZRcLaYU4dn4LOhSNPlncWcXM24Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245736f45\\-e5aa1314\\-44b3\\-4891\\-aa65\\-b86685024ad1\\-000000[\\/\\\\]+zpBux6s6LPg4GGWx6srYCwEaAV8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459c9d52\\-c9abf19e\\-e28d\\-413e\\-98b1\\-12a526d2970a\\-000000[\\/\\\\]+7hePGhHpJrdLoUNBrfSf2Uu9M3I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b05dae\\-a908fabf\\-39eb\\-4fef\\-ba50\\-f086fc6f44c1\\-000000[\\/\\\\]+mmeb05GBlQ6JNi3v057O_zear9A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3bf28\\-eb3808f5\\-7286\\-4f73\\-ad2b\\-46507f54d89a\\-000000[\\/\\\\]+mE\\-MYnoT\\-wY\\-AvnY5GQnzocgvFE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f3b3f\\-7a50341c\\-4c94\\-4e49\\-86ce\\-4580aa29df34\\-000000[\\/\\\\]+pOHrlGMFlSJT4Fzz\\-7gsX52pCh0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bc167\\-ad94dcac\\-7c6c\\-46dd\\-af81\\-c48c98f3efee\\-000000[\\/\\\\]+DmJygr\\-bwjUJyfPtoSU0b8xvNxQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245956edb\\-ef7b9a83\\-bcdf\\-44e7\\-aee1\\-bd6a22e47ec6\\-000000[\\/\\\\]+qicbYOd7C6OzUStQUw5GMdDcdOw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c33ab1\\-cda8ffce\\-0ea1\\-4158\\-acd4\\-bb9329c15a46\\-000000[\\/\\\\]+LWWn3qyVWY6sFbUXEMtOhXNzQmY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7a1e9\\-28e07d43\\-b0a1\\-4f91\\-957c\\-69160e8f0b32\\-000000[\\/\\\\]+eijOxZRBltAp3yPzkB5AZlhDSfk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459666a1\\-21b2ea3b\\-8086\\-48cc\\-aaf8\\-962801f06c5d\\-000000[\\/\\\\]+bgRkeeauWADfwwffTrbAf15S6kU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e8cbf\\-faa3d05a\\-83f2\\-46db\\-b629\\-760a42b6a8c5\\-000000[\\/\\\\]+olFyAyNDvg8kQcmd1m9QS9eo5ho\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569c355\\-fcde3c10\\-e252\\-4780\\-8956\\-2e2477385e93\\-000000[\\/\\\\]+8ax5obgNLHoyq0Ox3ITpzUKIKHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd9d8e\\-88c6b4d2\\-e14a\\-4c53\\-a6c2\\-6c1f5e52f8be\\-000000[\\/\\\\]+6aPJtwA84RKkr4OqyHAOf0fk9Cs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245adb396\\-87f0635a\\-2c9a\\-46d5\\-b3a8\\-b5cee6e6051f\\-000000[\\/\\\\]+PQGq_p7hhupkU2JSe6m75O_ijnY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f0890\\-4137bb9c\\-2903\\-4583\\-88bb\\-652d97910b38\\-000000[\\/\\\\]+KnM4BTK2NZPhrnOoiHi_L3lfSos\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb2bfa\\-7292816d\\-3f7d\\-49e8\\-8bb5\\-3f9e0f464be3\\-000000[\\/\\\\]+FrmAm4TOcUz1ihNB11Fikc9XNOA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb7f7e\\-7b9099f1\\-f2c4\\-4c30\\-9b7e\\-f6d0bc7e9873\\-000000[\\/\\\\]+aWnQwZSuQVbN1Y4gQn2vN2oH9tk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589a2a2\\-b3e14d52\\-4e60\\-4fcf\\-bacd\\-43541b282c44\\-000000[\\/\\\\]+D52LIOvD04A98elo\\-X8X3lHhbtI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bcd525\\-e33239bb\\-8bba\\-4914\\-8390\\-be01ff41be4d\\-000000[\\/\\\\]+rXlDViQc\\-YwgBqoZYP3PQcGUGDQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6bf20\\-32ba4d5a\\-3e30\\-43ef\\-8c62\\-a1810ea42938\\-000000[\\/\\\\]+\\-fAbPjMvzHzlkz4qmFAGWfmmXkc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589969d\\-f6040b55\\-c238\\-40cb\\-93d1\\-061d25907792\\-000000[\\/\\\\]+NQJntETME0\\-nfxKSgUg\\-oJIz_n4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584ce2a\\-5ddbcb7e\\-382a\\-44e7\\-8ec9\\-d0395eab6570\\-000000[\\/\\\\]+ZYv7g2sDyEHH_APPUamPAHyJDSw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa1007\\-4b9e3922\\-88a7\\-4364\\-b44d\\-baeaedcb8612\\-000000[\\/\\\\]+GgTLYDj4Thvaukgp6\\-DapHgx4BE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585b7d0\\-ec8b074d\\-4471\\-40f4\\-ae21\\-645db84ef5f7\\-000000[\\/\\\\]+QKyL2Al_GDpncFn5GU49MUEw8TM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f8988\\-2887db4c\\-e661\\-41ac\\-881c\\-be327cc3638a\\-000000[\\/\\\\]+kzgP_ihgfMHUReZrnAMVmLQNWzE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d2d58\\-577d4705\\-8359\\-48e5\\-abcb\\-e7584177ebfa\\-000000[\\/\\\\]+OKMwlaC5tGimig_CZ4OWWYRZNLc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4ecbc\\-d529c54f\\-b7c0\\-4567\\-93ef\\-d53bed623b47\\-000000[\\/\\\\]+glJuo6PGmx8RxGkrFmDqWtN\\-qzw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456262d0\\-23b2cd5f\\-40e4\\-4ccf\\-bffc\\-6e343e724fd5\\-000000[\\/\\\\]+EV3Kbu8rmNpxipfmfdZK\\-eN\\-PgA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565a884\\-7da62544\\-0e3d\\-4547\\-8419\\-9dcbcd21729d\\-000000[\\/\\\\]+j0tWCmiOgMxfQT4WWx\\-IGVr8Pkc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b2a257\\-17d3323a\\-e775\\-4017\\-8fb7\\-658bba11ab9d\\-000000[\\/\\\\]+aNK4gzHDhOd5KrD6ptHS1mWEHP8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585b670\\-1f76ce14\\-bfb6\\-48c0\\-9415\\-d63407466c97\\-000000[\\/\\\\]+iyDp9XoLHhn2NbvnCipCd_Joiv4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b84f21\\-22c888b3\\-fac4\\-4f0b\\-8c3c\\-073144de1bd5\\-000000[\\/\\\\]+xtsn23MBDx16KFwLYQxAhYqcMAM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a74630\\-f0d61c6a\\-a865\\-4480\\-b77d\\-12856a573a0c\\-000000[\\/\\\\]+HDQC07RbL3vYJpirVkEQ_frMEdU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac97a2\\-4c96acd8\\-349b\\-4ef1\\-8cf4\\-d450f2e75ba9\\-000000[\\/\\\\]+Bs0rX1cmoioxJ4qlM_AtrvJxn\\-o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7e2ae\\-50fef669\\-75f6\\-47f9\\-b711\\-8f147d9a370e\\-000000[\\/\\\\]+SB6h5UF_Fn2RS6wZOdBROwBD8eU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a04fa8\\-a1d15d57\\-0cae\\-4702\\-8614\\-57ac93db2dfe\\-000000[\\/\\\\]+kqXfAJ\\-o8ECv8Iqw_bbYOw0TWMA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457becc3\\-0257a7dc\\-e2de\\-4a8d\\-be41\\-fde2a66df9de\\-000000[\\/\\\\]+Mhpo2B\\-lySsxEvfMaRUkLuHQPT4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b63026\\-f83adf99\\-2858\\-4749\\-85e5\\-8bf54871d8d4\\-000000[\\/\\\\]+nszExNehGY4OOyTON_RhgL\\-Q\\-wg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589e89f\\-f8fd8732\\-ef46\\-4672\\-8d79\\-075226a18872\\-000000[\\/\\\\]+o3PLXtzjO2hlLjEbZplDvKSZ50c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b695fc\\-6beaa313\\-5775\\-4f58\\-aaf0\\-fb7915076410\\-000000[\\/\\\\]+fTtpbQihUfEQyvoWeo5zvQiNP6A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a44a19\\-2cb5af3e\\-290c\\-473c\\-9085\\-b450f1851c5f\\-000000[\\/\\\\]+wKXUl1WqlgqnDyif\\-5n7rjBReds\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6de45\\-dcf254a6\\-df82\\-4ace\\-a12f\\-a6f8cb2bf920\\-000000[\\/\\\\]+9CEfXFw8DuMATmjFKmk0MhGy0Z8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b4d45\\-7caefab5\\-2516\\-4977\\-a2e5\\-3de2a942a6b3\\-000000[\\/\\\\]+FR01b_qJKmq5ZTkTt8BGdxtizDA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a83fcd\\-5f5cfd88\\-a306\\-4b34\\-ba04\\-1ff364c7edb7\\-000000[\\/\\\\]+2HXKM0GpRKb2rEWWnvR3NhrsDKs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bba03e\\-0bdfbb7f\\-9bd3\\-458c\\-87cd\\-4e0d93a08bed\\-000000[\\/\\\\]+DJvMXdEZrKxlSGxyj3Ge6mGGS8Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589a961\\-cbdf62ec\\-2adf\\-42a6\\-afdc\\-e7c1e7b0f782\\-000000[\\/\\\\]+7Z\\-9mHmFBUdTzCJV8ODEPNbNjVo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458aea61\\-376ee88c\\-4f01\\-40fe\\-b578\\-e36650d6d03c\\-000000[\\/\\\\]+Rtlk4zRQXVi3Qfi6WxGevS53OK8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4e3b6\\-dd964237\\-65b9\\-4876\\-b014\\-591152d48421\\-000000[\\/\\\\]+0Am9WbFWw35vOjgbpKASXJgVuoY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245939cb0\\-2fa07394\\-215e\\-4e87\\-8ce5\\-2ab9e14b0ba9\\-000000[\\/\\\\]+HuP1J\\-yoOX0RRfuRm6gOHvXVQv8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8d089\\-d9fc446b\\-e044\\-47a6\\-8f4a\\-5f26178082e4\\-000000[\\/\\\\]+ZoU7vH9B\\-9wG6iX0j0_QlMussI8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c84580\\-71e26504\\-c1aa\\-4edf\\-ac0b\\-fb4e87c7fa5b\\-000000[\\/\\\\]+COuGaqQ6sAsnaEMkmgztQJMJKcA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b2a491\\-abcd82a9\\-d708\\-4c4c\\-8a91\\-3d9f480f2669\\-000000[\\/\\\\]+2GJ2uv2kUI6lTRShLHwgqUgmpdE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459fbb0d\\-0a76b755\\-d211\\-4cd7\\-a3cd\\-69629030d6ce\\-000000[\\/\\\\]+YI40uQwMl7uoIax4VHhnE0FXkrI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad9bd3\\-d5b4355b\\-8fb7\\-45c6\\-8e08\\-9970807d5bf6\\-000000[\\/\\\\]+9DI9_hkUeXeUE9XJHWcbbhasAMY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b87a8f\\-167b85ce\\-f470\\-4a5e\\-918c\\-73d3b53a4c59\\-000000[\\/\\\\]+LnPtbzYd\\-r9tqyyvJeyFueiPXsQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b1d010\\-585cd82c\\-4413\\-425f\\-a852\\-4ec31f1c2ee1\\-000000[\\/\\\\]+gGPvMKuNTKMvfvRpoX5YjJS66Ao\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245667c16\\-b3e406e6\\-49e3\\-4115\\-ba7c\\-1a0bd64a293b\\-000000[\\/\\\\]+ksqtB7R2gzrc8suuCRSJl8bRGYc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a11879\\-698f7fd6\\-47af\\-4ef8\\-a94e\\-e34e7e0a6c33\\-000000[\\/\\\\]+Cm4bV1y5ZbymrNHN0oJ8i\\-p11ic\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be5f36\\-cd58323f\\-f529\\-4a2b\\-bfca\\-942b82b5a04c\\-000000[\\/\\\\]+hKKVqymPfWj1iyNveWjoj9IcAAM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7509d\\-ef0625bb\\-1c78\\-43c7\\-af93\\-e57bd16ce044\\-000000[\\/\\\\]+3voiu3MLYJCROVzPv06qXxM2yYE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459409cf\\-62b1310b\\-9494\\-4751\\-846c\\-b987315cd72e\\-000000[\\/\\\\]+vjbQRDd4kWnUPdqjMML8\\-kc5f4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b78df\\-80bf7f75\\-314e\\-4d46\\-9194\\-ad291197606a\\-000000[\\/\\\\]+0G7_JaQANrBXoXWHWxqj1X1sq60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce6681\\-ea719201\\-1987\\-43bd\\-ad6d\\-6a92c61c2259\\-000000[\\/\\\\]+IRtF6stLF7oYNovD8Vz\\-cDB2iLI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bacff\\-72883edb\\-82c1\\-4b42\\-890a\\-5fd1cd1c242a\\-000000[\\/\\\\]+jvUiL1HRAnM4N3LdQw9MTJzZnV0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459df888\\-905e931e\\-abed\\-4c7e\\-bf1a\\-48fed101eb76\\-000000[\\/\\\\]+1b4fL4280mGEXt9w6GDO63lpido\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be4980\\-53c7cddc\\-08ae\\-477d\\-8aee\\-2caf53c8fb6c\\-000000[\\/\\\\]+N2FRAgGDMqss4kFvYQglXYa44qE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924581c70c\\-85b9231a\\-de85\\-41f9\\-8bf0\\-ffa43f125ade\\-000000[\\/\\\\]+l20IE5hBjDbaTKCF9ppNYZByUJ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c133a7\\-d2204cfc\\-d324\\-433c\\-a892\\-13ebed54ff4b\\-000000[\\/\\\\]+goFDwxtGnUJKgk8yLMRJfu9mIF0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afa40f\\-692cd044\\-8835\\-4c8b\\-8dd4\\-5d9eb394816a\\-000000[\\/\\\\]+7yOtG\\-yBIiwt7EeuoFB5SJdV3qA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f08cd\\-62a007ef\\-0d96\\-4b11\\-9d9d\\-7efc04c3974b\\-000000[\\/\\\\]+NkAGUoDAJJk34JIM2gmKscJCnkk\\=394(?:\\?|$)" + }, + { + "hash": "95d1071d4a227f275bac9ab87198f99925e978c0beedc6cf7896dbb580cf1fc1", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924567553d\\-2d76cbc4\\-2eb3\\-477f\\-8702\\-8fc44e11532d\\-000000[\\/\\\\]+N0XtmtsyvSu1L_X\\-p756SlqFuog\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bd618\\-a8e152e6\\-e5cb\\-463e\\-9e53\\-52a53550e440\\-000000[\\/\\\\]+ZRtleeYI6GY5AM\\-Yp2lIzJ6BypE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e3a55\\-505998a0\\-c81f\\-44c3\\-bb9a\\-ec89e384c8a3\\-000000[\\/\\\\]+t3PHgi\\-IajwAJljKX_cuTM8TnkE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c309f\\-7b2d0fc9\\-d18a\\-4796\\-ad13\\-5952e0f3a764\\-000000[\\/\\\\]+rhiWHj_MLM7q\\-qsR\\-l7rofJ7sQI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c79c99\\-59263eae\\-1121\\-4f22\\-92b0\\-1ccc0531d4dd\\-000000[\\/\\\\]+VqbB5TYu5Oa2sFPBdhJlHCO\\-hiA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455db3a8\\-3a88f245\\-c1b7\\-4a20\\-9ab0\\-a16754819549\\-000000[\\/\\\\]+9Wt\\-ECy03hzrZciRgcoF5CnSnA0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245997af5\\-f169d9af\\-6ac9\\-4771\\-8aee\\-42b034c3a887\\-000000[\\/\\\\]+sTV6X85AaMvtLRKcJSsVLmtZ44U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbb0c9\\-7a63ded1\\-aa79\\-4e37\\-9292\\-2ba6157ef07d\\-000000[\\/\\\\]+hgI5wm5xhxP5ydfSHHN6u9\\-Gw9k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be4980\\-53c7cddc\\-08ae\\-477d\\-8aee\\-2caf53c8fb6c\\-000000[\\/\\\\]+nMP9SV6tLPEKDAOq878JKK6rKNQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459c7d15\\-7f1d8772\\-5e09\\-42d9\\-883f\\-9c828ae4f172\\-000000[\\/\\\\]+fMqzAMTQvrK7_Baef6TXeGCqRHs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dc52f\\-3c53c931\\-6983\\-4b7c\\-9279\\-c0b7894f5e06\\-000000[\\/\\\\]+k6J2t6FS9f0FHCvwLcwq4ziF1P8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aca4d9\\-304b2a60\\-7c65\\-4224\\-b48c\\-5d1e7a313cc7\\-000000[\\/\\\\]+XFVRcpyhKP9sloY_E5HTx18RukE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c84580\\-71e26504\\-c1aa\\-4edf\\-ac0b\\-fb4e87c7fa5b\\-000000[\\/\\\\]+X1YlBqqk2JfovleHyN4x1c4mI9w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924593119e\\-1298064c\\-ad69\\-4450\\-9fd2\\-a7e425926820\\-000000[\\/\\\\]+VzoQkPHmmBUlw0vLbeWJH48rcXQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a06268\\-c2418a87\\-8ad9\\-47ff\\-b9d0\\-feeff5b38e67\\-000000[\\/\\\\]+stxZIgudapSicZskBshQ7QeGgz4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cab62c\\-7756e71a\\-5c48\\-4b35\\-ba8f\\-771f73c39279\\-000000[\\/\\\\]+OvaSkBvfsSCu99Y60PcX5c9jJjI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f0b27\\-9274014e\\-24db\\-4caf\\-b339\\-90d44fb64f4a\\-000000[\\/\\\\]+nsd3o4b0DEnq\\-GqdP6r7YJUYfIs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bad811\\-6ea99e19\\-4323\\-440a\\-a2b2\\-fef3a6c2c97a\\-000000[\\/\\\\]+iOvTaDQssr05B7hZm2nW8kW1Nn4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e6b86\\-ddee5f8d\\-d810\\-4245\\-82f6\\-07d5498112b2\\-000000[\\/\\\\]+fsI07_XZ2OrOxAgiOMVz6M7xksA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a8b094\\-4e71ea36\\-7b48\\-48f7\\-b502\\-3c766076ec71\\-000000[\\/\\\\]+bE39hrDl_nq8lGgXvpj30dKMITo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a8c1c4\\-14ced8e0\\-d5e0\\-4c74\\-96ab\\-ea05707d1e2d\\-000000[\\/\\\\]+SAZ\\-tmenkUc96eUciU8VMNLJMp0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cbb98a\\-b8b1fb9b\\-ad62\\-4200\\-9162\\-b71552bd9638\\-000000[\\/\\\\]+9KOXrv1dv1Bo6Tk9gbsq0KUQoIE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457139d5\\-29aafd5a\\-82b1\\-4453\\-b6b6\\-d5af7b90d3d5\\-000000[\\/\\\\]+7Viz1US6nytDeGvyFZFHmdPdiuo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b90814\\-7ad37d07\\-2148\\-42ec\\-811c\\-186478af6595\\-000000[\\/\\\\]+hQyiNN3xFq7Fb_Yv_\\-JBlIf0V4M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c83e35\\-e41cbb44\\-bcfa\\-40b3\\-b17d\\-9000f88e4005\\-000000[\\/\\\\]+w7P94LskwUlsI2OFewONV3NWf2g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb076b\\-bdead0aa\\-964e\\-46b7\\-82ad\\-75ad1e5b8fa2\\-000000[\\/\\\\]+fnwEonI1gSQ7lDDFS2gPT7IdrpA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457df2cb\\-e8ab6920\\-5fe0\\-429f\\-9220\\-4b54f1b711af\\-000000[\\/\\\\]+v1sr2pH0DZ7qLjFCPunSplYVxdc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4180a\\-b6a432aa\\-f6ee\\-49b1\\-ba07\\-3c931394ff51\\-000000[\\/\\\\]+hGbDtZNQfCNhL_BKugMcKMFwjdI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f4d4a\\-8afcba5c\\-21d8\\-4ef0\\-8c00\\-e7c44215e307\\-000000[\\/\\\\]+aJsqsCX\\-ZBARRoruADfTqA1uNHQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bb485\\-d63041a8\\-bd7c\\-41be\\-a82c\\-ccf0e3d598af\\-000000[\\/\\\\]+1CPZcpmCkFPkRpCwz9vKc8Je66I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cfb8b\\-2db8a2e7\\-825c\\-4b70\\-8aa1\\-b111692bbd06\\-000000[\\/\\\\]+PNfoHM21WklcV7gOYQrPIRhoygk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab2ba2\\-e69c8ea8\\-db6a\\-4877\\-b111\\-c1a3a545a0cf\\-000000[\\/\\\\]+wq9Pzjz7dVL1DWKiM3m6mnaPu4g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b92854\\-43396ab9\\-4c27\\-4df5\\-8b4f\\-f3d39607eac6\\-000000[\\/\\\\]+ajZnPXxPazRTzfMrvENz9YL94_8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924590d1ed\\-0712ed69\\-1fdc\\-4fe0\\-8728\\-a70c6da99a1b\\-000000[\\/\\\\]+lkMvqAtlpOZA1\\-1nipsgzOTuhmY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a60efd\\-e1d21fe0\\-6edc\\-4869\\-b601\\-847feef3ccab\\-000000[\\/\\\\]+P9RQFcs0ndBpOVunx8t26_yPsk0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b4bdd\\-d8816b19\\-acd1\\-4548\\-8581\\-b97256e97fb6\\-000000[\\/\\\\]+td3N1WmDJSwg3U0uh1bEc4z133U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595a27f\\-1e3e4bb2\\-c3ec\\-4ec9\\-b904\\-bf73b0e3068b\\-000000[\\/\\\\]+jArY0R25b3Rz9x3UdmOuoOFEAnM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456be428\\-44478b32\\-bc7f\\-49b6\\-8e90\\-5b2c7689c723\\-000000[\\/\\\\]+YK9v1h0GrNQW95UH7dMhPq\\-6P14\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c85d83\\-84a05aaa\\-fae8\\-4940\\-8460\\-82c811513441\\-000000[\\/\\\\]+1E47LydCszoWV2vj5gOKnoBgNo0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598ae98\\-c82adb86\\-ca04\\-4fcd\\-a7e2\\-fbe3c9dc6a9c\\-000000[\\/\\\\]+Rnv3ffPFacmGVJjrQpwAF23nkEM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245912d81\\-e314f148\\-fb65\\-4f7f\\-9e4e\\-fbc746e552d9\\-000000[\\/\\\\]+GxEMRILEouH2tG2KYZuByYXHnZA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c2f26\\-24174d9d\\-9113\\-4956\\-bf65\\-cdef81c51b20\\-000000[\\/\\\\]+MJpndhqtN_osOux4c5Uz9I8UmwI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924599a93f\\-6565f66c\\-3a55\\-45b8\\-82fd\\-a4b160f174c4\\-000000[\\/\\\\]+yDuzNZxHxvnOmdVsVBdfDovEMso\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595f42a\\-26008cc2\\-ad37\\-4f05\\-82e1\\-554c15b7fede\\-000000[\\/\\\\]+5_HCua9E3aOAg9zz9xNfWAe7n4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f74de\\-a574b820\\-aefd\\-45f2\\-9614\\-c15f067706a3\\-000000[\\/\\\\]+yDIl_zbyy0K\\-VnW98NUFQVaHgDs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457fa7c2\\-13c07938\\-c276\\-445c\\-a2aa\\-8e4842a0291c\\-000000[\\/\\\\]+baFktN7xhInCZFsyb2tbcaZj9UI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d0322f\\-0a1d41f2\\-5c76\\-453a\\-a0cd\\-58257faa9009\\-000000[\\/\\\\]+1FP6jMhQE_Qh3yUQWFgrXxdYUnU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb4fbf\\-3358ab4c\\-f17c\\-4b70\\-a64b\\-6e5db36af21d\\-000000[\\/\\\\]+uGkTFmTk6C8RlNu2v7jdUzF7Xw8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0c174\\-33bec9fc\\-91a8\\-44f5\\-8f7e\\-025fc1cf02d9\\-000000[\\/\\\\]+FCW7NUvJ_NoMs87rXOehF5gqmXk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573adb7\\-b81fbace\\-acd6\\-4c6b\\-ae74\\-b0bae8703e57\\-000000[\\/\\\\]+u4oAoEe3Y6API8ETKInvrVbISCE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b74e0b\\-83d5782e\\-85f1\\-45ab\\-94a5\\-f52ecb251f56\\-000000[\\/\\\\]+30sUxegSihRXwipDgXMrG3i1FnA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245912d81\\-e314f148\\-fb65\\-4f7f\\-9e4e\\-fbc746e552d9\\-000000[\\/\\\\]+7nfidJnGBw3RY2XfHR0HU64OrKo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bda527\\-4f7f6f30\\-6b33\\-4979\\-80f0\\-7cfef787738f\\-000000[\\/\\\\]+YQS1IeX2G7K7zW0UUKvC\\-rbc7bE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bdab5a\\-be4bd877\\-97d1\\-4bbc\\-ab3c\\-0bfa73591701\\-000000[\\/\\\\]+S3IC4jtK0PL5NfdwphRldMwqbtw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b298bc\\-8351fcf4\\-350b\\-422e\\-8133\\-57a51c77b51e\\-000000[\\/\\\\]+SQMYcDbWjEM3TyaoJhL5dSdtilg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245716933\\-df52935b\\-3186\\-4580\\-9cc4\\-bf2ebf3f9130\\-000000[\\/\\\\]+_\\-ziHP5Hei2DW88hSNDVDdX5snI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1bb1d\\-cdb7806f\\-17e3\\-4983\\-a69c\\-14143fd7c1a6\\-000000[\\/\\\\]+1RYlT8dLRM4JIJqRh8Oe30VXqug\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a83fcd\\-5f5cfd88\\-a306\\-4b34\\-ba04\\-1ff364c7edb7\\-000000[\\/\\\\]+ZyWTVdHmh1J\\-clooCjJpj2smIBg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455c30b6\\-d810bfc2\\-5f19\\-405f\\-a1b8\\-cd555cbdec3f\\-000000[\\/\\\\]+BSlp5TaNYI8sWGd8myppjcOK6_8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ec1ea\\-62535b19\\-dbc0\\-415c\\-97a0\\-4dae26a2b4e2\\-000000[\\/\\\\]+1d4VKXkpXX6ngVTEKOLpkZnMUwc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0c661\\-b593fe79\\-87aa\\-4b0a\\-ad82\\-6fa16701d8e0\\-000000[\\/\\\\]+yYA2vM867r7m6uwJNbHiKx7\\-8WY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595593a\\-aa07b72e\\-b0c1\\-4406\\-b627\\-c1a9807c72f1\\-000000[\\/\\\\]+e_oXkDyf14hnsqnr8Vk_jsvttAA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456443da\\-868c5518\\-866c\\-4046\\-bb43\\-b88887fe00a0\\-000000[\\/\\\\]+MybUOckD0bC8IXZ\\-We3OCw2C_oY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245739fea\\-52eb6e9d\\-7673\\-451f\\-84ac\\-6825a18ee1d5\\-000000[\\/\\\\]+URTptl_2mQZrQcJUV5tjRfKpdQ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b251f0\\-c8db4cfe\\-f8fe\\-42bb\\-adfd\\-44fa739a7236\\-000000[\\/\\\\]+lZkzVi17In46qeoODhagzxbXsg4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b66646\\-e1beea1a\\-bb3c\\-4494\\-91c8\\-05bc895d0721\\-000000[\\/\\\\]+0hbmimZK4WOWw_xN5pq5\\-Gx_vxQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b92854\\-43396ab9\\-4c27\\-4df5\\-8b4f\\-f3d39607eac6\\-000000[\\/\\\\]+lWrNRuNMS8AUlKHX_Ng079eAJe8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245623e54\\-61905802\\-321a\\-459f\\-99d3\\-671bdc213779\\-000000[\\/\\\\]+e9nzGxN8kgQqhB_QaGfbff4Afuc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cc3e2\\-54600e64\\-5a6b\\-425a\\-a694\\-f2a500949b29\\-000000[\\/\\\\]+NBcMwiKsdRpSN7a4BK\\-Gttt5WKE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570a87f\\-3522823d\\-ccc6\\-49fa\\-ae55\\-8e100c420ab7\\-000000[\\/\\\\]+qLIyG7UNcUC91UM9WJq\\-hkQIUK8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b2787a\\-98f5688d\\-25d5\\-412c\\-8fcd\\-2fd478cd2ebd\\-000000[\\/\\\\]+S8nzUA9lsWQbYD9L3sEJo9wBRV8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae1312\\-9acacfcc\\-92ac\\-4e1c\\-bf04\\-74c07202b133\\-000000[\\/\\\\]+v7LC49jilahscTjmJBZTbSKggfs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b782eb\\-5580736b\\-e0d9\\-40d1\\-909e\\-7e9b68691eb4\\-000000[\\/\\\\]+etbZwIf\\-HLA0fJvjfQ3QnOqDbLc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e64e7\\-ccec4ccb\\-c491\\-48a5\\-be3e\\-546fb0617e11\\-000000[\\/\\\\]+gKMXFxISkmN\\-JV6s7o59snUQ8ds\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c41afc\\-6acdc323\\-4c90\\-4bf1\\-86e1\\-40cd275e2344\\-000000[\\/\\\\]+D2Njs7fwuggVWeWt3JbWRsFRZ7o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7793d\\-58230dda\\-8e52\\-4018\\-8fad\\-d4d6d2cdcd14\\-000000[\\/\\\\]+pucCJAhfNT24NDtTpHxrjDzZPdk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1349d\\-ee052ea9\\-b872\\-49b1\\-a8fc\\-13064a155623\\-000000[\\/\\\\]+xHxBbYR\\-kUOLZev9odD266lazw4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c14e12\\-c857b5cd\\-6cbe\\-4b31\\-8ba1\\-146b2cae8e2b\\-000000[\\/\\\\]+iftgHtezBt5crZQUgdiaKpjwdv0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c232c1\\-1acd8cc8\\-9bb1\\-4c92\\-bd8a\\-1f9506cb6014\\-000000[\\/\\\\]+JzW6FE7g1maj86Z\\-_23OsaYrMhw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c38fd0\\-b6d95ba4\\-ac80\\-47bd\\-8a3f\\-bad6b576c9d3\\-000000[\\/\\\\]+2WqDkUS8R3OAfqqrTml\\-ANmFGq0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b78c2\\-dca8446f\\-a13e\\-41da\\-86bb\\-1f39bb691e3c\\-000000[\\/\\\\]+OcrOnzpVm0MA6o7n5qWv3YL2ikw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b28c0b\\-8b2d0fee\\-6602\\-4ddf\\-8d3c\\-49c7fd9dcf9e\\-000000[\\/\\\\]+7bUCy\\-jh1ZUGMkeTs5df1RTzvqo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf30fe\\-3b93f022\\-782b\\-437c\\-b50a\\-3c62156ac270\\-000000[\\/\\\\]+5DNRRkmsRS2AfKyoJC81EbqNuCc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589d128\\-ee16e9c0\\-5eb2\\-40a6\\-a3a4\\-491cb671d58b\\-000000[\\/\\\\]+mum6pzr0cb2OsxJcsS_lDlZUnOk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a29fb2\\-75c5ea6a\\-024f\\-48c6\\-b30b\\-238fbb0ca3fb\\-000000[\\/\\\\]+mgm84EbyI8qCL\\-jUJS8S9Uatsts\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c62d3f\\-160506a7\\-7bae\\-4199\\-84e3\\-2e7bb3c0e9a0\\-000000[\\/\\\\]+2_HWgy\\-t\\-_BFAZxBWVKGAe8w_24\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459e7b4d\\-0076a654\\-8b1f\\-486c\\-b094\\-935d9ea22190\\-000000[\\/\\\\]+PxjWpiUyCj8_pej_M90eFC893yI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584dce5\\-f776f018\\-42e4\\-45c8\\-b4cc\\-91a94b5fbcd3\\-000000[\\/\\\\]+PJtfgAguX3DJwZwMgRxhotzdHD4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245949751\\-acbc6b34\\-357c\\-4b10\\-959c\\-e221faca47eb\\-000000[\\/\\\\]+DBv9VzgLB7CBDMCsyyoCLmle21U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d8769\\-36772b43\\-1fe6\\-4aab\\-ace7\\-3c9223e9b48c\\-000000[\\/\\\\]+oP3JpnG7X3wYEkgZgiyKJHMVX34\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245baf906\\-fb66563c\\-53fb\\-4809\\-ae70\\-64bee74973d9\\-000000[\\/\\\\]+kllWGEaqM5qndEiWT9jMeWvUupo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf29a6\\-52ebde1a\\-adec\\-4c83\\-865c\\-048d3bd8e6a5\\-000000[\\/\\\\]+eE0CSICHhZRCuRIHVQ2r2flFeKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924590493a\\-a4e51a11\\-e147\\-4594\\-b13b\\-c020adc9f92b\\-000000[\\/\\\\]+THr\\-K4iqEL3MiGp67sGYYsOL0wc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459867f2\\-317ee8cb\\-f44d\\-47d5\\-a8b2\\-442972fcf514\\-000000[\\/\\\\]+J\\-xxIxPofAYvfb8zon0wypGw_3c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458787fc\\-c298e1ea\\-cce0\\-4fb5\\-a50b\\-aa1230f7d543\\-000000[\\/\\\\]+LvRU2NiqSFtMPS1B46uwfCadyVQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a42e60\\-c7cdaca2\\-dce0\\-45f8\\-8862\\-c4f90c75dcb8\\-000000[\\/\\\\]+7VSpdlMrTkXiKEzQQgNMnoRJEOY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abdffb\\-dd28a50e\\-e55d\\-4bd5\\-8099\\-66f0ff11e671\\-000000[\\/\\\\]+QN9kRxuCh5YU9TQAal\\-swAMLnjA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569bb78\\-c27a98eb\\-5971\\-4cf7\\-af36\\-7283ae234343\\-000000[\\/\\\\]+JKCEP3kJWX5gSedN0IwlP_8BM7I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af706f\\-feef47cb\\-acac\\-4da3\\-b461\\-a650a06b033a\\-000000[\\/\\\\]+DUHva76cCcaFoQItYWX4PFBKb\\-Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579ea06\\-cf0dae21\\-75b6\\-4c5f\\-a747\\-09a18faebfa8\\-000000[\\/\\\\]+7eDdnQdyjGjMxjblGd7AMfrigPE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568845a\\-7270a0db\\-e673\\-4271\\-baad\\-df41635030dd\\-000000[\\/\\\\]+N6Frr6WZEqO\\-Mk0A3zk91RXdAxQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a01f05\\-27519061\\-8904\\-4628\\-962d\\-951cf43cb424\\-000000[\\/\\\\]+v29wN4jUhGi9EUd67v_jn_M_tI8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6514b\\-9e9a7103\\-ea58\\-4569\\-b15b\\-d6677f3ecce0\\-000000[\\/\\\\]+TRIL8WNp\\-mClyPc9OqZyK6yka3I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c66522\\-b2caf0e6\\-ca88\\-4737\\-8812\\-07633f217da0\\-000000[\\/\\\\]+xQ7bL1uubR_WQ3dCi5S8RaZ39cI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8e77b\\-70325752\\-797d\\-4708\\-b6c9\\-b4ae0ec7da0a\\-000000[\\/\\\\]+fhbIR\\-oD9oQ89Fky8c7DWcpCMVw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572ca40\\-8a1fbfde\\-21d6\\-49b8\\-9cef\\-ad020915340d\\-000000[\\/\\\\]+hblPC9gpST0K0kRMWWog08DkYqg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac2a02\\-2246dfcb\\-1231\\-4259\\-9a7e\\-ee04dd6ac3ac\\-000000[\\/\\\\]+aBtbzpAfVZInz3XNg07eYR3x8rM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570be44\\-ac27a9c5\\-296f\\-427c\\-a249\\-da2c5b4e402a\\-000000[\\/\\\\]+nkxKjvnpkMaxo2lzPP3ODT3B\\-3o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb34aa\\-23b7867d\\-71b3\\-4852\\-b60d\\-c6f6acfdab54\\-000000[\\/\\\\]+sTWhp6b2b4T2YvcIxpuI6_0IHE8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b233f2\\-eeff0ad9\\-8dc1\\-4e2c\\-97ba\\-f81fd037fe31\\-000000[\\/\\\\]+y6h2U6K60eIDmBVQUIjtNz82h5E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245810d71\\-7e465002\\-652d\\-4e93\\-99e0\\-fe16d0a44a4a\\-000000[\\/\\\\]+gFe\\-N\\-mFVA5u\\-VRQNK4wuNgDIJs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa3584\\-16a4db29\\-11e9\\-40c2\\-80c0\\-c82e94b2f027\\-000000[\\/\\\\]+xBRmtMsIHhVE6gmZxqaSI9XAXhs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c35e4c\\-b45e87de\\-9e95\\-4b8f\\-ad95\\-16ef3ecb9500\\-000000[\\/\\\\]+k3xbojNAPnMZm2AGVfxKPvNfSn8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f4cb4\\-bde6838d\\-d856\\-4010\\-bb3c\\-b83884d3c7d6\\-000000[\\/\\\\]+UNhfL5gPvfGN_Pw_9F_S3cSmkwU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0483d\\-4b080a7f\\-f329\\-4195\\-943f\\-3511d69cc8bd\\-000000[\\/\\\\]+\\-56lgBNMJ9YAKo5sDbdulsmguaA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598b7ed\\-9ce92a56\\-dd5e\\-4395\\-bafe\\-8f35e7d8f45e\\-000000[\\/\\\\]+R_fNACAoaif\\-7NOILuh1YhLtkpg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b99607\\-fe5a8e3e\\-c1a3\\-4aff\\-bf1a\\-18fe6ff672a0\\-000000[\\/\\\\]+nMTeDF04qEHeZhHnbsdhg5rcF04\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a3dd7\\-340ab5d0\\-0159\\-459d\\-b0a8\\-9895903c5b23\\-000000[\\/\\\\]+lc5se2mqTU3VDVl8AJag8QT3dK0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b222fe\\-034d9578\\-8299\\-4f5c\\-95f6\\-8ad541df4248\\-000000[\\/\\\\]+WLKfeoFROgI9UzkuzuA2enSPc3U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c24290\\-dddf80e9\\-5f0c\\-45d9\\-8925\\-89debfd4dd66\\-000000[\\/\\\\]+jnzvxtcgBS0YxbBfxNxxp1hiJaE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245832c32\\-6f2c9e11\\-633d\\-4953\\-ab00\\-5ad11ab5661c\\-000000[\\/\\\\]+Et51glxmB4kKaTy34iA_dvP8eJQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c7a02b\\-657fadb0\\-0624\\-4ee3\\-991b\\-db9e298bcb13\\-000000[\\/\\\\]+0ycuaK5a2esy\\-zhgsHxBEvRawYk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245853ec8\\-a9c8366a\\-373d\\-44e3\\-b477\\-503f5641e6cd\\-000000[\\/\\\\]+Kh\\-TOUc8QvS5ybQJcrSiQK2Y2rQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b737f\\-fbad8cf2\\-d856\\-4d57\\-8b9d\\-0d6064effc9c\\-000000[\\/\\\\]+IU8ms_31lB3Th4eW3f4tK5yuB_w\\=394(?:\\?|$)" + }, + { + "hash": "650f08480c7b38277823656b0e1c7dd2a5b5779745bb7ecc53a9d399ce66bd3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?52af7\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b2a0a5\\-f15ed749\\-287a\\-4725\\-b957\\-c77e5a185b61\\-000000[\\/\\\\]+yHJMPeI2FMiyvDKBa233dCmRPwY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245997af5\\-f169d9af\\-6ac9\\-4771\\-8aee\\-42b034c3a887\\-000000[\\/\\\\]+jpxMqOcU_rrsZDtusa9D8WkjO8Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457637e2\\-be4f4608\\-262e\\-4224\\-b3e1\\-52adf31115d9\\-000000[\\/\\\\]+Gh3rqViN6oL9rkurCPu7NXX8BtI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b17548\\-889efa7b\\-a087\\-4c9d\\-a189\\-db3251186224\\-000000[\\/\\\\]+VG2qSy2JOfFvL8muuEZj\\-uahz_U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7b5fa\\-b131b4f9\\-e806\\-47a5\\-8f2f\\-58f0ed63f320\\-000000[\\/\\\\]+byUiVwnMPDWUQ4oG7_zct0nRhEI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f1dc5\\-ac18edfa\\-909d\\-4c9b\\-978d\\-343a30cf3f7c\\-000000[\\/\\\\]+MJaTmAdRX58dNqulzCKmRKkPwbQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd7464\\-d7abdc98\\-f111\\-4c61\\-8abb\\-b778e95cb2fe\\-000000[\\/\\\\]+g\\-FucZ2gJgHcwmjmcZi84_8nJng\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459883d1\\-34bd3622\\-6938\\-4783\\-9821\\-30a2882644ca\\-000000[\\/\\\\]+zmq4m8OmsVY0TjJtLsBipI__qU8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585d580\\-12ed23ff\\-c43e\\-4cfb\\-ac3e\\-f377122b24f5\\-000000[\\/\\\\]+7CGviH\\-ISc8qH6O7EMwCEIDSFcU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245749e1f\\-02ba9629\\-1bc7\\-4ce5\\-b0e0\\-34f2bb034c20\\-000000[\\/\\\\]+8ZY9sTRgQjMo4vdG5LjWKBsk0rg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455df4c7\\-606fecbe\\-9d60\\-425b\\-bde9\\-cc353ae1e27d\\-000000[\\/\\\\]+PDWntiIvKdAdvMS7YeLKT\\-mRWhg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245797cd8\\-cdded0dc\\-428e\\-45ee\\-82ea\\-59b47b13cf78\\-000000[\\/\\\\]+uM2Nj6T1lmwGUN6rOyMWomoZTec\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e8481\\-046a3fdd\\-0595\\-45b7\\-90fc\\-fe474a5ca92e\\-000000[\\/\\\\]+J15F01dmyji7wfC21o2eF8FyU0c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a35a45\\-ae635831\\-bdaa\\-4cf6\\-92e3\\-26766f4239cf\\-000000[\\/\\\\]+KGknHVQ4rnApkqzE8tY9fnE6BnI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459338fc\\-59c8aede\\-8466\\-45a8\\-bfeb\\-02bc6248def4\\-000000[\\/\\\\]+tRUXP3y0XRrmtItcH4Mroc0Ddgk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ba2e1\\-bde48b70\\-a40e\\-464d\\-8adc\\-d9af8b7a664f\\-000000[\\/\\\\]+0_ek9fNUlpgIBK13YUhaoxnlv\\-I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abcbb0\\-f7a07caf\\-9ba5\\-4f85\\-8a52\\-12837caa851a\\-000000[\\/\\\\]+9pmLf937wOPY0A\\-p03V66lDTDuA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459aae81\\-493ce50b\\-ef39\\-42bb\\-b516\\-a26bdca62184\\-000000[\\/\\\\]+hgyT3qIxnxDXzUFet4PgWCtGar4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245873a9c\\-bcdab9d9\\-c42b\\-4286\\-a818\\-ce6bb802ecc6\\-000000[\\/\\\\]+nCk3jPDNp425owNcSz0VWtf93mg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245884a1d\\-6b86caf7\\-c0f5\\-4de5\\-b05b\\-ffd4b542e068\\-000000[\\/\\\\]+WogO\\-hG3875yHooFqc9FbisKspE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a6ed49\\-67fe369f\\-f29d\\-4d53\\-8087\\-9e13c3d3370c\\-000000[\\/\\\\]+K\\-GkKSTz9TiqYi6VhtaWMRkyBEM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb1b38\\-479526b0\\-d1d1\\-4504\\-ab58\\-5f0a92039a77\\-000000[\\/\\\\]+Y1hvSZ63DolOImYYMUCoJenqZwA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bad811\\-6ea99e19\\-4323\\-440a\\-a2b2\\-fef3a6c2c97a\\-000000[\\/\\\\]+VN5D4Uwznd0apFJex8jvV\\-wnuM0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456156f7\\-6b424706\\-d627\\-44b0\\-a367\\-e30897905dfb\\-000000[\\/\\\\]+e2u5KGxpHWrs\\-rwjcdYr6g1CVKI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924561888d\\-512f4261\\-7ea5\\-4265\\-a5ab\\-34795ea2c8ba\\-000000[\\/\\\\]+zyxRwd6p2QWhddf\\-G_AEzxt4F0o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aecf87\\-b10dd81b\\-9012\\-4704\\-b2d9\\-006850c85e54\\-000000[\\/\\\\]+EDXVng0XLp838cxk43h9gknAsDs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc9f57\\-1190d9c7\\-fac1\\-4292\\-a0c2\\-89ae773ca242\\-000000[\\/\\\\]+UfvCtiH1Wtq6cccbh76yUX1xv3g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584fc17\\-9130faf1\\-e31f\\-43df\\-ac8a\\-e64998777df5\\-000000[\\/\\\\]+l5XvAfvLb7CVHd13xkljGpL2OHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245821a4f\\-39112fd3\\-8308\\-41f5\\-977a\\-da5ecfe55708\\-000000[\\/\\\\]+wlJMYxMu6RidBg1lL95fvUbfm1A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245759250\\-d7b9a253\\-ecf5\\-4ef1\\-b644\\-7b16e8346e0b\\-000000[\\/\\\\]+M9QjWiIP8F_KQUHJER418ghcsn0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5ae0f\\-8d79ef5a\\-9baa\\-498a\\-938f\\-5836e0d8d9e8\\-000000[\\/\\\\]+\\-qiPVvTAh1gzkCVCUx6V4vdpL_0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456acbb4\\-ce533238\\-dc64\\-4400\\-9681\\-9f0b951775c3\\-000000[\\/\\\\]+GlshjBwB\\-ofq7sd7FWrIWTwqUEg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c24290\\-dddf80e9\\-5f0c\\-45d9\\-8925\\-89debfd4dd66\\-000000[\\/\\\\]+HwvpPywSH5l2KDcUqheV_Kn_noA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6c745\\-c0fc27cc\\-3212\\-44bc\\-ab75\\-f0c7cc56ea29\\-000000[\\/\\\\]+VUNreR9_\\-kfd1SUEATq2sAR8v24\\=394(?:\\?|$)" + }, + { + "hash": "b8918a9707018b4d6e43fa9b4f71d0a52b90273978ee0c0b2678499a027c1989", + "regex": "(?i)^https?\\:\\/\\/pub\\-b9e20d29a7db42efb58a2e60b67f3029\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598bb02\\-6cd457a9\\-643f\\-4269\\-b21a\\-ca095f4a6333\\-000000[\\/\\\\]+LhYd7srxk0qZP9jDt_lS\\-iEtFto\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574ec9c\\-e1d2a467\\-c33f\\-44c2\\-a037\\-8fc568add893\\-000000[\\/\\\\]+j\\-MoFbyGK2PxFhKDLDRqUkA4PhA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3e716\\-d8498e72\\-774b\\-4f25\\-b770\\-97128f4d946e\\-000000[\\/\\\\]+psdFVzawFOoZNcHgupA4Xr0CAtY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457eda23\\-61301cbd\\-7d21\\-4261\\-a8f0\\-e40194c8a1d3\\-000000[\\/\\\\]+7uDPVki1_QfD1pwTjx2choSWaZM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458830b3\\-99d630ba\\-82c8\\-488c\\-bbed\\-75a7fa206104\\-000000[\\/\\\\]+WX189DezPsLdMREFFiH\\-MRjr9ok\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456b99d3\\-7a756a13\\-3d8c\\-4598\\-ae2b\\-5c45b78d225a\\-000000[\\/\\\\]+1sNojZXIp8Bsq3RXshIzgr7p8xU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c5754\\-309f9c59\\-48bc\\-4a88\\-9cf5\\-4287f73d6764\\-000000[\\/\\\\]+7s3EWYrVJgsSE\\-\\-AAYV3ghzPPnI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457278e2\\-70cc2969\\-fb4d\\-49e9\\-a302\\-5d49391f27f5\\-000000[\\/\\\\]+sg3uqwjbAuEDM09PwcX32YZZLVI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8a0be\\-a60ddebb\\-6512\\-4dff\\-a6fb\\-0b75094438c4\\-000000[\\/\\\\]+tRMNHuSm4UN7ZKDtWCHyLE3zlSg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245669da7\\-8af4daf4\\-1b6a\\-4143\\-8e3e\\-cecb8dc3bd42\\-000000[\\/\\\\]+rPvhPEfGJ\\-c45VqC9JrIEECB\\-DE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ce5f8\\-1b075d15\\-3d3c\\-4c58\\-a2d2\\-6921c8e021ce\\-000000[\\/\\\\]+GBYTHwSQ2zjYWtsOYvH8ciSCtMk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8a303\\-f247245c\\-3d0d\\-417c\\-ab63\\-052b0e1c37dd\\-000000[\\/\\\\]+hkH6ztILTDVoJ3mw49Uejtvbl_s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c11b15\\-e7878215\\-3f31\\-45fc\\-b0af\\-ee963d81f2dd\\-000000[\\/\\\\]+KpfYo18fMPc7jwMAsWcDWRe7G5E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245686fc3\\-b33f5c3f\\-5692\\-457b\\-8ff8\\-de6715ab0f1f\\-000000[\\/\\\\]+9dnbiBaRt6xw5O2nEyTemHt9SxE\\=394(?:\\?|$)" + }, + { + "hash": "e5b27362677763c21d077b0ffe73dc0d5d0c4a0ebf67ba5e73b219eb4de29313", + "regex": "(?i)^https?\\:\\/\\/sanuj14\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577859c\\-add502ab\\-37fb\\-47d9\\-956c\\-16707ae97842\\-000000[\\/\\\\]+owUYP0SWHo7yQucF9UPltmEEa8A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b90231\\-f5c3a2fb\\-e33c\\-4003\\-8952\\-fd936daec625\\-000000[\\/\\\\]+JT0OYBWdKACvjejqzG9MkIGoj\\-c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e5457\\-e066531a\\-04b2\\-4243\\-8984\\-16268724a41d\\-000000[\\/\\\\]+5WDUbB924rR8BVZ0C5z4cXEIlwQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab3150\\-d49d9686\\-590d\\-4f65\\-8b16\\-8d478fa94e5a\\-000000[\\/\\\\]+DjxYDElohvbnHcz1A5zh2Tzt8yo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b56e4b\\-b51cb22b\\-e582\\-4c90\\-8941\\-6ec4b986f1ff\\-000000[\\/\\\\]+eMNQPTSKje0dFOp73_GQ1sY3t8Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb9619\\-f3bf0550\\-0d5d\\-4203\\-90fc\\-637dadefe462\\-000000[\\/\\\\]+oZCOKaV8eSHuG0vxe4t_PIHJi08\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a47459\\-1d6c73b8\\-d062\\-42f8\\-8267\\-322f3fe64e90\\-000000[\\/\\\\]+0CbX1rUAP4ogGmQ6vSYCDWCKb8A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1c561\\-2bc379f6\\-d33a\\-4e7f\\-8150\\-3367c95b0661\\-000000[\\/\\\\]+KQYejJaiUWLA3ELdClHSWVnwpk0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b1996\\-a95301a1\\-2de5\\-4bba\\-8011\\-c277abe56533\\-000000[\\/\\\\]+zq2ULXikcAmk076v5UBuRsCpocI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f0890\\-4137bb9c\\-2903\\-4583\\-88bb\\-652d97910b38\\-000000[\\/\\\\]+XjYeGsuKgArWmSkpZVs7ZBM_Gpg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a0ec73\\-5ea8a5c5\\-6bec\\-41e6\\-9099\\-1242c8dce420\\-000000[\\/\\\\]+Vm9Jlw\\-UM_xwJiD8cRMuy8gqqZM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570d552\\-92181f6e\\-73c9\\-47c9\\-a3d8\\-60b141c7251c\\-000000[\\/\\\\]+1PYU90BgrnfMv56iYseO\\-BNDi_M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245803679\\-1c748384\\-3c8e\\-4335\\-90e3\\-a27955eb98ef\\-000000[\\/\\\\]+mg8TlM98Nm\\-s261nHN1\\-eUy7o2Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455c3524\\-ea93dac2\\-4588\\-4eb4\\-a07b\\-31728889813c\\-000000[\\/\\\\]+hTt5L\\-SDpCvUiiVuZGOfy8VtXKU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c96738\\-7958bef7\\-7302\\-4f02\\-930b\\-89c05aef26a1\\-000000[\\/\\\\]+MxZlZlayvkpQk5l_YIk4y51BjZE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f3616\\-c5276898\\-7c14\\-4330\\-a0fd\\-51fa3e8e2e07\\-000000[\\/\\\\]+JETQ0_ygwghdWmrLFK\\-2mbA4C\\-E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456aaefb\\-94c6838d\\-9464\\-4053\\-b9c6\\-c37958c2d406\\-000000[\\/\\\\]+ILfCcuststBw8FGMTOPT_7Yoc1M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c67f9e\\-96bea67f\\-a599\\-4cf7\\-a690\\-d20b4cbf5001\\-000000[\\/\\\\]+0F9B7vzVc4bdzfjpVnYJWs_6bsY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459fe07f\\-d3b71065\\-06cd\\-4d91\\-86a2\\-6f554608ce70\\-000000[\\/\\\\]+DuzBUwaUEGW2UCET0GZVwB62jGk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245837042\\-125f41b9\\-1fcd\\-48d3\\-b6c1\\-53cafe8155d1\\-000000[\\/\\\\]+yHL8p3Qhf7H9JBLM2GxAqZ\\-4MWM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a3dd7\\-340ab5d0\\-0159\\-459d\\-b0a8\\-9895903c5b23\\-000000[\\/\\\\]+NFTOsY4omGlh0spgfnBrFY9Ri68\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b17ff0\\-238b4317\\-7dec\\-41b8\\-b5ee\\-25e1304d02d3\\-000000[\\/\\\\]+OFvFUqWsQTb5YyGIY1r00ducby4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e4d2f\\-37cde259\\-f3aa\\-4246\\-84e0\\-d2e2eb1160ae\\-000000[\\/\\\\]+UiB3QqAQItHdTtH4Re35jGRQV6Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245715e47\\-f5bfc09d\\-f493\\-4fe2\\-839a\\-176d162c906e\\-000000[\\/\\\\]+f\\-FXMLSSVrTSScO8G3YkxnGt37s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b0105f\\-bad1bd31\\-11a4\\-41ea\\-a168\\-0b8d4c95d7fc\\-000000[\\/\\\\]+Oyqg\\-qcPTXQib\\-0JmDHZoRuJsX0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595fc7d\\-0857b0d2\\-c1a7\\-48f1\\-9ca9\\-549916d898c6\\-000000[\\/\\\\]+6rZtBlfbH6_UfOfP7CV8Eva7Aws\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ab6c3\\-2a1c42e3\\-4531\\-4c28\\-a8b9\\-31404e165f85\\-000000[\\/\\\\]+A_EkQ2uOhls\\-ZyxfT6bzsSilEnU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c852cb\\-49e44f9c\\-e586\\-467a\\-9e1c\\-c1eca99dc0f7\\-000000[\\/\\\\]+\\-1kuZh\\-zHDh6dhQ377\\-TfYZSqLQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245acf5e2\\-a5576280\\-c4fa\\-4033\\-b66e\\-459f7fb311f1\\-000000[\\/\\\\]+Tn_WELoNwzyKqm3RFTG1Gqg7jG4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd2347\\-86c4e017\\-fef8\\-4b56\\-89db\\-54de8ef270e4\\-000000[\\/\\\\]+_XNa9Nan\\-jamYDUemVULOmRUIPg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245918502\\-188d8a75\\-d2d1\\-40dc\\-bc94\\-596ec412311e\\-000000[\\/\\\\]+aXxgWYbgqr3fIq2WdExDdMgs30w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a4d88\\-85af7715\\-467a\\-46df\\-8355\\-561a15e09092\\-000000[\\/\\\\]+Ou0FmcNMUexdruC2wVJDs4f0j8U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab2a8f\\-0bec05ad\\-e003\\-44a3\\-8c81\\-73bce26b74e2\\-000000[\\/\\\\]+kK_4P8gXkTprlklHfUKhI\\-k\\-sAI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cdc79\\-44458975\\-589e\\-4fe8\\-bbfa\\-2b66fb1835a1\\-000000[\\/\\\\]+mYbM3EHY\\-YcwgRtJuhC7VTyRERs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b17545\\-3d35b473\\-d4b8\\-4a9b\\-b94d\\-7c5c22d516fc\\-000000[\\/\\\\]+il1S\\-XxL9fUlsNfnsVpmRBFL9F0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b1604\\-8cfb6a32\\-78bd\\-4491\\-82b8\\-fd3b7bbaa803\\-000000[\\/\\\\]+\\-ZVctLbAKPmcK5jW3hhohDzz0q0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3d60b\\-1ae6e782\\-1267\\-40d4\\-86d1\\-91cda0bfa23a\\-000000[\\/\\\\]+Q9kz2rj8fzJfHD0AnJ3kEPvuof4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458caa48\\-4517531e\\-ff8e\\-403d\\-9ecf\\-8633dcd7c607\\-000000[\\/\\\\]+d4S3eZ433OGV3JVwwzwFwaFaQ_8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457382c8\\-121a21dd\\-6d69\\-4d3f\\-adff\\-689ce5529684\\-000000[\\/\\\\]+wEc4DY4ijlO7_pLKVNd5eDh04Q8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca35de\\-b4e1d687\\-a652\\-40cb\\-ae6b\\-bcb0cd5193c4\\-000000[\\/\\\\]+C4UMwL4rr11MMFUNnYSbvoifR\\-k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b54dea\\-8988d25b\\-60a5\\-48c4\\-a163\\-16ced8864ffd\\-000000[\\/\\\\]+FcNP3D_JUjUNocUD\\-z50Jx3UhzE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245914981\\-b4178d76\\-075e\\-4c14\\-b03f\\-0b8adb3b2ed4\\-000000[\\/\\\\]+Oz1qUVV\\-pDt2UPn0FVV4Yl\\-PISs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cea997\\-ca40b353\\-c01c\\-4899\\-999c\\-d84549624ec5\\-000000[\\/\\\\]+d35D4hdziZwLjwYtJLwxNzGgzD4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c6594\\-53b502a1\\-cdad\\-4ae8\\-ab21\\-e271ec246464\\-000000[\\/\\\\]+v1ouK4uZJ353KZhNqHKa8TYyxkQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bad6ae\\-e0eebe07\\-28e1\\-4f8b\\-a404\\-8e118227ee6c\\-000000[\\/\\\\]+LSnI3YA44hqwYgI8nK5fn_g_QX0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c70d8f\\-6aa5cc1d\\-6341\\-469c\\-93bf\\-0b0361f419a2\\-000000[\\/\\\\]+PDa_9zSh69v3vB8pd0P9SJJc7Ls\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b1d0a0\\-fee3e21e\\-aacc\\-4476\\-9976\\-84c4afba3ed6\\-000000[\\/\\\\]+14axZ2K84x8BW708DfigRSqzblg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b0105f\\-bad1bd31\\-11a4\\-41ea\\-a168\\-0b8d4c95d7fc\\-000000[\\/\\\\]+_q1trDbhyE_w2u4o10ABOL6o6qg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583d423\\-cc1f9d40\\-bff7\\-4a62\\-8fef\\-7542fcdca9e7\\-000000[\\/\\\\]+gpzk1B6Hl4qIqoesQNF1Z8Fe7Xs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0df08\\-b217b08b\\-a934\\-4a52\\-a71f\\-9ec7223d05a5\\-000000[\\/\\\\]+dzu1FWueNZi5qenHcLj3ob_s_2I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a83cec\\-5b18a6a4\\-1d69\\-4df5\\-b123\\-d8bf2240323a\\-000000[\\/\\\\]+EGpKtPSzVzWX107WMIfjsCIjHe4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458c984b\\-d2e80b74\\-a688\\-4246\\-8be0\\-39a4e8911791\\-000000[\\/\\\\]+U8IKm4qkPeFQXHyzAKMEj0ZjZoA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf2f97\\-34a51db7\\-5c38\\-40af\\-80d8\\-bc95ab0e0433\\-000000[\\/\\\\]+6PmP3PTogHt84GSLtM08wd_zxtw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245897883\\-6535332b\\-9a80\\-4dbe\\-bfde\\-9bf9bd6df587\\-000000[\\/\\\\]+Fsi079E4K0anKiVhaUKoXoyiMkU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245729b82\\-2032a7f6\\-a4cf\\-4bbc\\-90eb\\-e40a1f10f01a\\-000000[\\/\\\\]+AtHfTDpx6R2S7SiNk\\-5D4sJPO\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c852cb\\-49e44f9c\\-e586\\-467a\\-9e1c\\-c1eca99dc0f7\\-000000[\\/\\\\]+r5Oii_ELYLCn6HwX97s0sg6zl6o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245663d58\\-806c9a85\\-9a14\\-46b5\\-a29b\\-aea65500d017\\-000000[\\/\\\\]+uf87hVguR16T6\\-vDaEwGINVymCc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583e92e\\-376ed2ef\\-5991\\-434c\\-9caa\\-a82e58e3ed51\\-000000[\\/\\\\]+aCw7dEOsSpOHeSVU041sutoRSEU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ad40f\\-7f420317\\-7712\\-4a26\\-88d8\\-734f54c462ab\\-000000[\\/\\\\]+uX8LQcVr_4QxDH8Rj7YTQ1Td\\-Bc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245940da3\\-f4ad1827\\-6099\\-47f2\\-bb29\\-89f75a3c602f\\-000000[\\/\\\\]+3tP7IfbViAdZumPEluDf6gkNyIQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a61822\\-1cefad9d\\-9d31\\-425c\\-ad15\\-2b46909950c9\\-000000[\\/\\\\]+pFS8gnQXIv6gavdzEv53Ww4_doQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459497b4\\-fb423021\\-c014\\-49f8\\-a592\\-eb964ce19880\\-000000[\\/\\\\]+px4zqeS5cSO7qpqwR\\-SMRjsRtB8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245957ab5\\-2b6e7c42\\-1c4f\\-44b4\\-8bdd\\-87d8dca24846\\-000000[\\/\\\\]+9ycrfwUWyZu9oZrUxPForc9nb10\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573990e\\-8f464183\\-aa56\\-4dac\\-9d63\\-30d850aa246a\\-000000[\\/\\\\]+ZuoaEdq5DoZyHIKfbeBrZcdmNZE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfa964\\-6b345af7\\-a45e\\-4f42\\-9d45\\-8bf43c9217ec\\-000000[\\/\\\\]+kprOlWog1Onn5FwGMxNXKVrUACc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245731417\\-31f6fe75\\-692a\\-42c2\\-a496\\-89c123ff507c\\-000000[\\/\\\\]+2gab\\-ruvi1hwq8MhgOz9SL5uFro\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570d8c1\\-4ba27216\\-8367\\-49f3\\-8fad\\-3df4c2d0ae65\\-000000[\\/\\\\]+TyzPrjw71lt4HhIZqdNIiQtwwg4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6b3a9\\-19da5df6\\-4f46\\-4914\\-98be\\-7a6c46540801\\-000000[\\/\\\\]+zxjyadxZIYnEOTMSDyKiwF6i69o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245962c12\\-dd8daa08\\-acaa\\-40f4\\-a4cc\\-567703e59986\\-000000[\\/\\\\]+n7euy\\-h5Vb1TTG_OHy7wy3mjqGE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b66ae1\\-3c709b33\\-a9b8\\-4917\\-8280\\-059f5b112aed\\-000000[\\/\\\\]+UQvKCyGaKmruHDrWoJ0vrQVEGqw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583c509\\-2d6250e9\\-ec3e\\-4796\\-80ea\\-0d8de1fab8f9\\-000000[\\/\\\\]+DGrgn57wxd148VQYB0J7_iuiD4E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8e77b\\-70325752\\-797d\\-4708\\-b6c9\\-b4ae0ec7da0a\\-000000[\\/\\\\]+c3VhvV_1_4LNi32WoIA7157POCI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce27f9\\-74e19afd\\-bd0e\\-4c7a\\-86a1\\-d1fee4f9a7a5\\-000000[\\/\\\\]+YJa4iU1nHz09JWq9wKybr\\-Bs0s0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae1342\\-953cc5b2\\-d4f2\\-45b6\\-a4e5\\-ca9ba92917f1\\-000000[\\/\\\\]+BR3Ea85LHB1szDdrFoGpiCrs0JE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245873a9c\\-bcdab9d9\\-c42b\\-4286\\-a818\\-ce6bb802ecc6\\-000000[\\/\\\\]+32K5\\-23I5dkreLnMX4cGp2lMT3I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245726586\\-a090f26f\\-f52e\\-405c\\-b1d3\\-a96a08bc8066\\-000000[\\/\\\\]+5CX9nnX8HKoej2eBd0ovONWaK\\-A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924590a8a8\\-94e2260a\\-695b\\-4d97\\-8e5b\\-063464b94379\\-000000[\\/\\\\]+C\\-_uqz2\\-nb74TXgfB1gaWa5leB4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458378d6\\-14564d98\\-ee96\\-436c\\-aec3\\-ab1aa6b0a135\\-000000[\\/\\\\]+p1auJChZJboOIMPUoinnAmmIFwQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a70bb5\\-4c2d3960\\-a6a0\\-44e0\\-93b3\\-bb6b8b9a920f\\-000000[\\/\\\\]+WGwlvA7pBn06mMLldGORvdesyVE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245af816d\\-0eea2105\\-da14\\-417c\\-ae6f\\-bfdcf32e4a07\\-000000[\\/\\\\]+ouBPJnitPD18LiDzQCQ\\-Ak76PAQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c84a8\\-d0663a48\\-b22c\\-4303\\-8480\\-4d402fb1b826\\-000000[\\/\\\\]+qKbO1SCQ52kBPeClbO\\-zgU47bx4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245775019\\-cddb4fc8\\-b2d0\\-4372\\-959d\\-bdc694d8c2f3\\-000000[\\/\\\\]+DGe0KNeXVzbaiz5wz292IEaZtgg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bba1a7\\-bf19a406\\-6c28\\-4310\\-bf54\\-93ee8c13fe12\\-000000[\\/\\\\]+j2wMIzdJz52p\\-8ZEiBn3X\\-iBK0U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576c8df\\-6e428647\\-e5c8\\-4bbe\\-9b34\\-acc59f8691c1\\-000000[\\/\\\\]+68GkZxfYkTaaBqZYel7ZwgrfewA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245794c6c\\-0ed0adee\\-b148\\-4dfc\\-b4da\\-211a6ba27bfe\\-000000[\\/\\\\]+iFVVHOKib_GqzUX81paLCcYhoSs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598b7ed\\-9ce92a56\\-dd5e\\-4395\\-bafe\\-8f35e7d8f45e\\-000000[\\/\\\\]+bDwT4uy\\-kTYJVzOWqMDfHs50E08\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458041ed\\-bf7ec5d4\\-9e35\\-4d4a\\-b6ee\\-36ddd881d13a\\-000000[\\/\\\\]+SDlcLgDFmXFstckq7GjHPTRcZ2A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c6a8d\\-41e08e2b\\-0523\\-4a13\\-b902\\-89735d30da76\\-000000[\\/\\\\]+CKAiV2NRIgQII0ivTZ4UzlHetiU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e17a6\\-389cae7f\\-835e\\-42f0\\-9101\\-529224c773a8\\-000000[\\/\\\\]+UhsIrRf08P1QEhuqGU0AYe07tC0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d08e41\\-fbe43292\\-9b83\\-4b1c\\-960d\\-0c14b1c8d264\\-000000[\\/\\\\]+eymb_7\\-98L4E\\-ipG7JzBhGmggxg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ade8d3\\-8870f21e\\-d241\\-4797\\-9452\\-80fc4bc3afe0\\-000000[\\/\\\\]+jyYH\\-fi1K_C\\-iNxaymlLUNjUvuo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c73437\\-a483e94e\\-4391\\-42a4\\-a479\\-66b23c1ece8f\\-000000[\\/\\\\]+HBHVLRNJrHeN1qRXTmEtN9qy9n0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a61822\\-1cefad9d\\-9d31\\-425c\\-ad15\\-2b46909950c9\\-000000[\\/\\\\]+oFu\\-p\\-QBqTvoAkbAq1QxSDNevIM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a2be9a\\-14deb472\\-5e75\\-4ad8\\-8282\\-90e8a4ee9ab2\\-000000[\\/\\\\]+ozmpy0aLrsJixU1fj9u0t9CAj9U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d7ce1\\-31f90bfe\\-c747\\-4b20\\-a56d\\-95b14948d242\\-000000[\\/\\\\]+cPhGrjvJxefV9g2eEML23\\-upyQ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac4abb\\-406338c0\\-f3cc\\-4cdb\\-b268\\-e3fc96be02ee\\-000000[\\/\\\\]+0520JiJObyET5aQcvHRPyf8IQnc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd8d8b\\-8bbd2cb1\\-322a\\-48d2\\-b4b7\\-2ca6b685375a\\-000000[\\/\\\\]+E0Ane\\-NRRlZnoUONSw0IZFCUBxs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bcbe05\\-966ddf98\\-bfee\\-49f3\\-ab33\\-0e209c6d195e\\-000000[\\/\\\\]+96fNhD4BSOMYZxJV6XQZvbuDdQs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456efdfd\\-5dae8db3\\-a677\\-4d53\\-ac7d\\-d1828e086c32\\-000000[\\/\\\\]+tt9NT4gkWMybaHvkhZIN3IQds10\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b6876\\-20142b76\\-244d\\-4b93\\-9502\\-c915130da23d\\-000000[\\/\\\\]+fYbYAgll0w_GWA7UW\\-V19Yjnggc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924566d876\\-309dc5d3\\-2f1b\\-4cdd\\-a608\\-7227ddb271e4\\-000000[\\/\\\\]+NPG9aXJADpKYyQ29wr9a4tfpzzA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d2e4f\\-06990741\\-c86a\\-4693\\-a165\\-3e96b75a0715\\-000000[\\/\\\\]+YZpBEEs7CMeHYb8f30igSmrv1_Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf98ae\\-3259082f\\-d3dc\\-4bbc\\-bc9e\\-05a26832730e\\-000000[\\/\\\\]+qgbAPMShV2tkBmDU62jknL\\-SMlA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bdd44e\\-ae515da3\\-7e59\\-4e2f\\-ba13\\-970ba082d67d\\-000000[\\/\\\\]+PWV9ZB_sRO8efwLF_e98ucMMFVY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d2e02\\-4ac8d3af\\-8f65\\-46e4\\-9557\\-43b955b9b786\\-000000[\\/\\\\]+kKwd4Tx1wJdtzgl1VEucVszqoi8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cdc4c\\-96d49957\\-fbf2\\-4cfe\\-b35d\\-714ce38913d3\\-000000[\\/\\\\]+kI0_tANt13DGdg7mdKQKik6UW0I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b63026\\-f83adf99\\-2858\\-4749\\-85e5\\-8bf54871d8d4\\-000000[\\/\\\\]+9O6YMJGZ7tqigH9xJyVqNrEVy_8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456595c9\\-b86ed7a4\\-e2ab\\-49c7\\-b95d\\-fcb4c37b675f\\-000000[\\/\\\\]+Rhsp7r0bY1ab_IRarymeZ9TluRM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be109c\\-8f3d5f8a\\-a0a4\\-492c\\-907d\\-aa63f7136e5e\\-000000[\\/\\\\]+VDAhrsfTs3Mlp1ZPtL0AFZ3gzUU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be719f\\-880ddf95\\-cbea\\-4873\\-b560\\-5e33b3c0ec0b\\-000000[\\/\\\\]+oeHCGj5MB18dWJer5q9VTqrckYg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bc836\\-37070ad9\\-c68f\\-479b\\-a25d\\-ba7deea15b42\\-000000[\\/\\\\]+H7WIdby\\-m7sErVce7S6PL066vsU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c093da\\-c8b8e7f7\\-e400\\-4618\\-996e\\-dcb521c6a85f\\-000000[\\/\\\\]+bVM2KFena6QsIlftfXgjSBwdZzE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bff581\\-c73074bf\\-db16\\-4948\\-ac88\\-8489f21ddb51\\-000000[\\/\\\\]+KdrkcA1rThpH5pdAZKS2o3i62Rw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245858062\\-ff61c842\\-ce79\\-4805\\-b704\\-56b212d429a1\\-000000[\\/\\\\]+ijXbvbiW_2ZQ8HOwa4QeUSLhR\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be7267\\-fc119757\\-c476\\-4adf\\-9976\\-1b9005857b60\\-000000[\\/\\\\]+ARD26vA1HU0AFUDuOXgixk4VfHM\\=394(?:\\?|$)" + }, + { + "hash": "82c9a7eb6bffa85588522164c6240373a042c043f9d76c6a35dd239610f96af5", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459a6b0a\\-3e553847\\-019c\\-4c37\\-ac01\\-f16f4be4c249\\-000000[\\/\\\\]+XIfz4hQwr5a6mUMOKppsZiCrD30\\=394(?:\\?|$)" + }, + { + "hash": "2964afe67d5e1b529fb1fdf7107fe129e479c43a74b7449245cdd75c7a73ea77", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245698f28\\-8865301f\\-8275\\-4b0c\\-988b\\-d8633ef275a6\\-000000[\\/\\\\]+fVZm0EQ\\-qUZMS0Sc5DB9IwIk00c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b1dc1c\\-1288e503\\-182b\\-40ae\\-b2fc\\-9f692c651a6d\\-000000[\\/\\\\]+j42o5k7v1zsTJcw5MIYw7MEGwUM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae3d0d\\-a78217c2\\-c1b4\\-4025\\-ba81\\-d14f24f958c5\\-000000[\\/\\\\]+OrQM3vQIU3PARmyOQgp7bb3lMFc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573a041\\-1defe19b\\-4fc8\\-453f\\-97ce\\-ce6844c0f244\\-000000[\\/\\\\]+0aE8ZKkGXxKgzXJ9koDPZ\\-ZaH_U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca3823\\-815e5adf\\-d8e5\\-483e\\-92d0\\-ea07f92a3797\\-000000[\\/\\\\]+QQe5Ygingac_UmrNdBms\\-L2AlEw\\=394(?:\\?|$)" + }, + { + "hash": "cf5aeea23db0a4800e946b70e0ade8d351163e22a10b6e43bb23758555f0cf1d", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5ec59\\-91f07702\\-4db3\\-43c2\\-94ac\\-e0397e021269\\-000000[\\/\\\\]+5pIWxmgsdLCQHxmtYD0qZR60ezc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bce53d\\-d9d6e2a5\\-c8a0\\-471c\\-a038\\-69ad0f89aa69\\-000000[\\/\\\\]+cT6Gczs4fIKpSJbEpFNdR0c8RQw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245adf55f\\-c5504765\\-b42c\\-4405\\-b46e\\-cff0f38e01f9\\-000000[\\/\\\\]+4YM7Hth7AUZoAQ3pUIzynE0pEjc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b41159\\-a7f5644f\\-8f93\\-49cb\\-aaed\\-f2db92dea88c\\-000000[\\/\\\\]+Mo7wOKjvdYUFJrmAtDL\\-lcwaWL8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e36bc\\-85ab64e6\\-75d5\\-4afe\\-b63e\\-a57c8252170a\\-000000[\\/\\\\]+Rx4gxQpSEg1\\-MP57V7sJi5Kmty8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c83e35\\-e41cbb44\\-bcfa\\-40b3\\-b17d\\-9000f88e4005\\-000000[\\/\\\\]+X\\-oOjiqZ2RNcilfiZF87XwkV5Yc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8c4db\\-2938ada5\\-2a1c\\-4927\\-8b5a\\-6d0b106433e4\\-000000[\\/\\\\]+2z0Ye14GblzbLoewiHHjyOxEDGg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab3150\\-d49d9686\\-590d\\-4f65\\-8b16\\-8d478fa94e5a\\-000000[\\/\\\\]+XXJTarBaiRcbFh\\-\\-EMnqKUrqhWI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457b88c9\\-1364b805\\-328a\\-4baa\\-a3e0\\-1639f615ae1b\\-000000[\\/\\\\]+WnW12jhROZRk7oOLnuJAfsbqhbI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458c3790\\-dc6bcc7c\\-2305\\-4558\\-9d69\\-bcef96b22cd0\\-000000[\\/\\\\]+oGAhwTTIefC6lVj8HkA5RNXIW_I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b51db\\-82caf182\\-acf7\\-4986\\-93e6\\-32ffb8c2d507\\-000000[\\/\\\\]+AD\\-k5XGjBgFqDDDKrB1DCNhwqzA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b53eea\\-875612e5\\-578a\\-4d10\\-b70e\\-e124ff17e92c\\-000000[\\/\\\\]+7gWfFRqffPInigcdsNQErupHpMA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569d946\\-5bade3de\\-eb73\\-4399\\-81ee\\-ed4bed409658\\-000000[\\/\\\\]+HLQ5PSiUX3F8sntntsu\\-k1kDCgY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c67f9e\\-96bea67f\\-a599\\-4cf7\\-a690\\-d20b4cbf5001\\-000000[\\/\\\\]+Vfu3klaKrRoGSf4uEMYU7HdgL6o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c26c6f\\-cdb228a3\\-90a5\\-4aa5\\-b69f\\-1f810a6e6ba5\\-000000[\\/\\\\]+2rN1Wggdh6vaO_NxW2jpOwNml1M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b74e0b\\-83d5782e\\-85f1\\-45ab\\-94a5\\-f52ecb251f56\\-000000[\\/\\\\]+V8HunDm916tjYVN4AVO2UVGmx2w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459dc96f\\-130aa982\\-d873\\-4733\\-ba66\\-e992691164e8\\-000000[\\/\\\\]+BiXETMQKiisqePb8JEaNZu9jVrk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7323a\\-3cd3632b\\-9b6d\\-4c9f\\-a120\\-13cc59809279\\-000000[\\/\\\\]+cnFtaqo\\-RSUcgMyvsZqNHYKLkJ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245669da7\\-8af4daf4\\-1b6a\\-4143\\-8e3e\\-cecb8dc3bd42\\-000000[\\/\\\\]+qiGQAytlcNH3my9Y\\-MUh5aPyZbQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b78d4b\\-cda6870b\\-913a\\-4d25\\-8ae0\\-88ca5d685daa\\-000000[\\/\\\\]+F9RRd1tCVCAvy18MT0HJSbBobvA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245964979\\-17d54b93\\-60ee\\-4e3b\\-a40a\\-a8ce67364f0f\\-000000[\\/\\\\]+e08lnsYwFW0OxaX3A\\-aPmlIBxHM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459aca1d\\-67bf4514\\-8502\\-4eb4\\-b5c6\\-b3f765a3edc0\\-000000[\\/\\\\]+KBzKLNOr\\-k\\-s2iZN1VLJqt26WIg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458355f1\\-044a7cc7\\-a0b2\\-4833\\-91cc\\-ab07e28811b4\\-000000[\\/\\\\]+7tCw6xnndxVMl4YfKpIhVXUlYsk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5704a\\-42a265dd\\-da9f\\-45b8\\-81a6\\-a12fc9ae58e8\\-000000[\\/\\\\]+9C2Jw9aEDIr\\-RUUxK7ItO8F1YD4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac0e09\\-f96ea16b\\-149a\\-432d\\-b4b2\\-b2079a0c7b8f\\-000000[\\/\\\\]+qQW6sbLF1w3wn0VkTTJJkbpVsU0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b190d9\\-701bf3d1\\-5091\\-48d4\\-9308\\-947be6b1b1c3\\-000000[\\/\\\\]+QbDmhP\\-xfcEqdNpIVNAjuP1tmt8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b190a7\\-63a34224\\-c9ac\\-46c5\\-8daf\\-0103835b1b58\\-000000[\\/\\\\]+SPHdjAwACjSrN26Qh\\-tJx\\-Xw\\-Pc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ea553\\-644fa640\\-2324\\-4551\\-a995\\-1ad288155cc7\\-000000[\\/\\\\]+zmU3wQaXO_PbOMwhUY1qFCD6d2M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b9449b\\-e6714b32\\-b0ee\\-4025\\-8001\\-d4270d07f7ec\\-000000[\\/\\\\]+OTaILV9M0Ju3FkndML7uEfu\\-W\\-o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a305dc\\-a1e24af0\\-0dfc\\-416f\\-ad93\\-6d3bba9fba57\\-000000[\\/\\\\]+Iix3ds6bHBUVZDABm3450ZnUXY4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924576f769\\-307da67f\\-1565\\-4c6d\\-a645\\-a0da44678f38\\-000000[\\/\\\\]+1mFATiJOD4TswKP2OuqqRIy5OkA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab7049\\-c8cafdfc\\-65f4\\-463b\\-a856\\-eba24f018942\\-000000[\\/\\\\]+MlQwGurMP9CtXZr2SiSM\\-NyUWuY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b91018\\-71687e02\\-d5f7\\-4b17\\-95fd\\-0fd52e9fc461\\-000000[\\/\\\\]+sSxKkTs3dgRqle7JZ6Jc4BYMe1U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924560ebdf\\-d76c0927\\-e6f4\\-4d24\\-98dc\\-44fbdab8acd9\\-000000[\\/\\\\]+UYPM\\-ZJMMncw\\-DY0Z\\-DPcjOocl4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cd09e7\\-384a95f1\\-d464\\-4250\\-abd3\\-5f4b21ea2b7a\\-000000[\\/\\\\]+6fJvY6suuc5W\\-gHBbE81NzEPBgY\\=394(?:\\?|$)" + }, + { + "hash": "2d38fab27f44462b223df422c281e849489a959354cb973ced8b80cbf1a6c9f3", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.128\\-199\\-173\\-153\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9b24c\\-c35d1c0a\\-2280\\-4e34\\-93d1\\-2b9ffa5908af\\-000000[\\/\\\\]+9rcQ5_H\\-3ibCYQSU9SqjmbTm2pc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c4c74\\-275080f3\\-f5e0\\-43a3\\-bd19\\-2ad1bad8a8d8\\-000000[\\/\\\\]+rzoo2nKZmDLhV0vTJez6OInixEQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457f0246\\-1b1de11d\\-338b\\-4a45\\-9c2d\\-64a8605838d8\\-000000[\\/\\\\]+0xEmE0OMmId2AefdO\\-efGtiATAI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b630ae\\-027ae83a\\-68a1\\-416e\\-8a15\\-c4f4f08824d8\\-000000[\\/\\\\]+jcnNuxAo\\-l7FCONowH00anTx4g4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf0280\\-57e53337\\-0753\\-4d9b\\-b2e1\\-b4df3c75b71d\\-000000[\\/\\\\]+TdPNmqqneRkRywv8Bxoy7DutUNQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1e5d2\\-aae07670\\-d77e\\-4100\\-9a76\\-b4493e0f00c0\\-000000[\\/\\\\]+2Xb6uJpVgFWPH6gfcLp_cWYSymQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afe015\\-a8e34cb9\\-ef74\\-4b37\\-9029\\-967f3c5281fa\\-000000[\\/\\\\]+19uCSHl_cugTLxUBQRLoLAV8z_0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0b0b3\\-afe57021\\-22d6\\-420d\\-85ab\\-596714329660\\-000000[\\/\\\\]+QvCiiHmchxPs7VwpYVoqbgdDgtQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a27afb\\-d07b9dc3\\-fa39\\-4c71\\-a4ba\\-b01f8ac403b5\\-000000[\\/\\\\]+KoDzCrBo3Z3jTx05hDx9EBQ9vvg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458722d1\\-4fa255b7\\-ed1b\\-44d7\\-bc94\\-8d3148697e13\\-000000[\\/\\\\]+1RUpznWRDBPFGH1tlFYwe_8borQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245baec7c\\-904ad15e\\-0dff\\-46a5\\-8a15\\-b493e99caaf9\\-000000[\\/\\\\]+9VSMCasTuS4w4ICUi0c2G622OVc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb01b4\\-70d731ee\\-54ee\\-4725\\-827b\\-476fca6a3340\\-000000[\\/\\\\]+TYrAMfZjvsjd37M08b1BqTyASAI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc996a\\-d922ef48\\-160b\\-4b47\\-97d4\\-128d6c7b512b\\-000000[\\/\\\\]+MBek7eT67RIbwRuHGQf81Lv9Mvw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b190a7\\-63a34224\\-c9ac\\-46c5\\-8daf\\-0103835b1b58\\-000000[\\/\\\\]+SEdxB7wZ\\-SsbavpDTA1Fkrte_lc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459cc245\\-8eee6d07\\-382e\\-447a\\-b973\\-318704680aac\\-000000[\\/\\\\]+DlfUCBqRwFkAHfhhQ10ImeUwSjQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456595c9\\-b86ed7a4\\-e2ab\\-49c7\\-b95d\\-fcb4c37b675f\\-000000[\\/\\\\]+NoqcDAjgla68SZkxtl8WYXK2FiM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245743c23\\-2f7accca\\-17b6\\-4bf0\\-a7f7\\-c57e26f4c12d\\-000000[\\/\\\\]+UGHR5oUQIOXnf6f7qhK66\\-I_jSI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924574634b\\-d35c8924\\-956b\\-4d31\\-a7b8\\-8dd6fd2f806a\\-000000[\\/\\\\]+sLaJDqPVm4e_PdWKN4\\-Nm7NT1EE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568f08e\\-d6823654\\-d6ad\\-4a27\\-8ca2\\-fd82e40ac20d\\-000000[\\/\\\\]+lgW\\-S8jFddcHDrgsVun45o_Kkrk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a70bb5\\-4c2d3960\\-a6a0\\-44e0\\-93b3\\-bb6b8b9a920f\\-000000[\\/\\\\]+jzKjXK669bJGI8zdVeEsttQxXMI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459928ba\\-f81280ed\\-0749\\-4bf5\\-b43f\\-812147f03e0d\\-000000[\\/\\\\]+c6Ux\\-sndQqRXsQ1L4i7JVu4bY9o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a77026\\-18c3ec69\\-3a72\\-438e\\-87c3\\-c2d23c7f0780\\-000000[\\/\\\\]+iINta6D1Rf\\-3KVSrD_QtZjm2eE8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573d7eb\\-6a51dd4d\\-c228\\-4a16\\-b283\\-748c8997e05c\\-000000[\\/\\\\]+9KcdUrEJjwIKCAh6WCUzb\\-m5Fug\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582c261\\-04cee172\\-06cb\\-4ac2\\-8dc1\\-39cbb338cdee\\-000000[\\/\\\\]+S2Rxp7PS6vroJJxZEieQZJPPgoQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c7ea99\\-13647fbb\\-cb4f\\-4fb9\\-aeaa\\-e1857fd39ccc\\-000000[\\/\\\\]+SrkIYVy3j3hOx\\-GJVHxEwLCAdvo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8194e\\-2819ffc1\\-aa31\\-4ce9\\-a58d\\-ac62806e4ed1\\-000000[\\/\\\\]+ZRKD1ORSYiv3j4SAEfgCf9xKyx0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5e705\\-b33f8501\\-99c7\\-4f75\\-b089\\-555d1e5f3c36\\-000000[\\/\\\\]+1RiT0PwOOFfuF8a5UJlfLt3iEQw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6205f\\-11a6fca5\\-a86d\\-4650\\-b042\\-fda2d8f3b27a\\-000000[\\/\\\\]+5qAZ8l6du945xhF7Zhm5f\\-Tp3AQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa1007\\-4b9e3922\\-88a7\\-4364\\-b44d\\-baeaedcb8612\\-000000[\\/\\\\]+aID0qWQDuYR1z\\-2dCrumKLPC5\\-I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5704a\\-42a265dd\\-da9f\\-45b8\\-81a6\\-a12fc9ae58e8\\-000000[\\/\\\\]+ugqsHBLp\\-vkcfC6KiD5XwmlEaO8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d6fbb\\-31efafe1\\-4c82\\-482e\\-a26e\\-1cf0d3e340ec\\-000000[\\/\\\\]+PdQSb5HOtqwiwwlQEyLExgBYOBk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a18be4\\-d258ca41\\-dd44\\-4284\\-be9d\\-77d1e45b7168\\-000000[\\/\\\\]+\\-IMX8VOzShwvL3K3q9ZSLvqj8So\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ba9c39\\-bb6c5154\\-eb52\\-4dc7\\-bdc1\\-bdd80cd6a7df\\-000000[\\/\\\\]+\\-VIm5mclIK_fHA83yVPvabYy7Bw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b1069\\-83ed35a8\\-10bf\\-4a46\\-b4d0\\-c246ca32933e\\-000000[\\/\\\\]+7H_aAJHSz7\\-w4oOIBZk7uwFmZ5A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d2d58\\-577d4705\\-8359\\-48e5\\-abcb\\-e7584177ebfa\\-000000[\\/\\\\]+WdK5GKN7mdcSyYilHAkVcG0tidg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5fa55\\-f4d64b88\\-fcfa\\-4ca3\\-92a8\\-9f6247e91192\\-000000[\\/\\\\]+JnnXYdFAlIzd8B7KsP8UrmW0UW8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d3e1b\\-4e3a43ff\\-5f4f\\-4c9f\\-bff8\\-568a5aeb1a05\\-000000[\\/\\\\]+M6oMaED6X7OnNaWr4v\\-ErDeQfik\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3156b\\-ed862c65\\-5aec\\-4603\\-973f\\-0a367322bc1a\\-000000[\\/\\\\]+j96BNfigiJAF8iv26BPeCUL2UGM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b782eb\\-5580736b\\-e0d9\\-40d1\\-909e\\-7e9b68691eb4\\-000000[\\/\\\\]+UzZhKYPTYE6DhOzVGtAH7Vr0DLE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c259c7\\-53400773\\-92a9\\-4679\\-ac74\\-0cc876e49189\\-000000[\\/\\\\]+Xie9b\\-4hnRUEKlgI2Z9Ls7yVI5I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cae29f\\-3f5dd110\\-0621\\-4cca\\-91d3\\-c9808d75c70d\\-000000[\\/\\\\]+\\-6hcC5RrOIIgRUXkYaSMp5lRsXI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aaec60\\-755e0780\\-1e31\\-45ff\\-a05d\\-cd4bbdbec535\\-000000[\\/\\\\]+tDTi5mYOxo4X_YmwplW4VAn_Pck\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598d0bb\\-1c5ce6e4\\-42a9\\-4750\\-a452\\-1921316eefb8\\-000000[\\/\\\\]+VHiqPB\\-rLOFThOSdnedegjZjt1U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c01292\\-5fa89533\\-e7c2\\-43ac\\-9846\\-00c892a677a9\\-000000[\\/\\\\]+WYAHJKpK\\-eBH3lebCMfUkNT5VV4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf2c06\\-bdc8f38b\\-babd\\-499f\\-8363\\-101840b5591d\\-000000[\\/\\\\]+9RbZ6rkYAKf4izqXgjyJ2qkm73M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1093d\\-cecc0c95\\-ee95\\-4de5\\-8ba8\\-e6376f6b01dc\\-000000[\\/\\\\]+4WSHWURzWZ3PLOkkkwMprsNWz9E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924589c4d4\\-9a2462d7\\-78fd\\-4bee\\-b291\\-edabaf5ca630\\-000000[\\/\\\\]+Qlb_UccdsdVmOk4\\-Yn3e4wqSc6c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c370e0\\-6f699fe4\\-7c83\\-4bd5\\-9980\\-498a6c84e2f7\\-000000[\\/\\\\]+31vQPBOiNEqHDeWARGdArEyldLo\\=394(?:\\?|$)" + }, + { + "hash": "8ae8a61a527f8aa78cc0613c5f2a917584ea622a431fe970288b6350b5fe3661", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a2c494\\-5e2d0d52\\-0196\\-4776\\-a42e\\-fffcd427f2d5\\-000000[\\/\\\\]+E7qarR45CNPOlkQUj2R65lm_P74\\=394(?:\\?|$)" + }, + { + "hash": "210ac98456ff50bb519be388b4ba69714aba5a98daacfb4bab6d5554fbc6c1cf", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b31e61\\-2186eb24\\-8c22\\-4f17\\-9723\\-29e5b67e189c\\-000000[\\/\\\\]+o54CuiRXNp65IhLtRCD9UOgEvtI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5b42a\\-53bb6a9b\\-172b\\-4048\\-9046\\-19c5f4db5016\\-000000[\\/\\\\]+vki70DCjDUaQYxaCo0GiYRY76JQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a0ad5\\-c3fa22b9\\-3b49\\-4313\\-b87a\\-017f84031957\\-000000[\\/\\\\]+\\-B72el53vZzNbf61TnKrBzb69FE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8fb77\\-fcc15c55\\-c0a7\\-41f2\\-afab\\-180c04d0672e\\-000000[\\/\\\\]+NjKBkU_\\-oh8Oyniu5D0PmwQfdK8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb5c67\\-c735798f\\-59e7\\-4ea2\\-babf\\-9680fe20121a\\-000000[\\/\\\\]+YhjJI25eM_3xpjYI16Nj_VkBczw\\=394(?:\\?|$)" + }, + { + "hash": "6bb2b1363a9ca75e7f782f7d0684787090e7dd9e78602a41c393270cecc9e045", + "regex": "(?i)^https?\\:\\/\\/pub\\-c6aa4772b3494f1aa9024234ac4b9da3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fpub\\-7568765e07224e14a09292192160d3d5\\.r2\\.dev\\%2Fmail\\.html\\%3Femail\\%3Dcandice\\%40dbmlaw\\.ca$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a174a8\\-7edf4562\\-cb94\\-41da\\-87ff\\-a95af8685d5f\\-000000[\\/\\\\]+K_NPwBuOKCeOYjr8iw4E7n7DgOc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3c3ea\\-f007e8e3\\-ef6a\\-40db\\-8760\\-993166fb2a6d\\-000000[\\/\\\\]+s_SfpWHV7Rd6H5bR7UovtxTNznI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245855fbd\\-617952a4\\-306a\\-46c1\\-a278\\-156af81dd060\\-000000[\\/\\\\]+RhkCQb5hJX2ndbF5xAGKiul09N4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245614d87\\-1f9ff5b5\\-41ee\\-4ea5\\-b950\\-37b382bbf214\\-000000[\\/\\\\]+6pQ\\-oHWeBIK4HsnP_w4BpbPvWDQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ce1eea\\-4e0c57d7\\-4f24\\-4b92\\-857a\\-f5633bd0090f\\-000000[\\/\\\\]+QnAUMg\\-95DXj8onXmvgXHXDnF5s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7f61c\\-33c22ce8\\-51f3\\-4183\\-8cf4\\-e5e63b48c894\\-000000[\\/\\\\]+xAtfwx_dlD7ED6Ow0IwOjkGbbOQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8e18a\\-cbc8f636\\-78cb\\-44e7\\-bcae\\-c612dd65264a\\-000000[\\/\\\\]+g6TnB1b67B69n_ftYJCq1kztNGc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b5f90\\-69d0e307\\-24c6\\-4160\\-849a\\-54a7e601c7a2\\-000000[\\/\\\\]+RKC_eOfUr31LrDOy94jH3XgVLC4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd8349\\-592ed0d3\\-b67a\\-4a64\\-a396\\-67e5dfc6248f\\-000000[\\/\\\\]+I5fQWkVC4h98mm7bBGXtAWxXwpc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a1fb4\\-61bd6d0b\\-c360\\-4dee\\-8a9c\\-ed105294a93e\\-000000[\\/\\\\]+ZjrZyHJMG_sMZyrqyIfE_fkdqGQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a33710\\-4d3a07c4\\-1be2\\-4f1a\\-9b2c\\-2d3f7c1a7358\\-000000[\\/\\\\]+gwrTX1zmOfugAI0DekEHYvsRxGY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570896e\\-af4bdae4\\-e991\\-44a3\\-8aac\\-364a2cc57c8c\\-000000[\\/\\\\]+M0u2kvf3rZKiEHXYChQBAcZypFE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cad6e5\\-90920a57\\-34f0\\-4116\\-bf4e\\-969a45baf9b0\\-000000[\\/\\\\]+GaBSNNynRnivn5gpDcC_1ts3TjM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245614d87\\-1f9ff5b5\\-41ee\\-4ea5\\-b950\\-37b382bbf214\\-000000[\\/\\\\]+8BniNl9y_imB6Sq4VkQfZ3DH8Vg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245859247\\-a92e1ad1\\-06d8\\-4614\\-a743\\-2670979559fb\\-000000[\\/\\\\]+gI4oc_7NDDhUuFhCaUCkEf7TpFg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572b960\\-10fd1716\\-46cf\\-40bb\\-9f73\\-d1401fcc995a\\-000000[\\/\\\\]+aOpajFQz3aODG7RGoVTRf3nnwZY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d728f\\-44217a99\\-9cd8\\-44dd\\-8793\\-18b56263be5e\\-000000[\\/\\\\]+OHHeQ0K8Gj0sV\\-2esubwF_z4GaY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ece00\\-766292c7\\-4d90\\-4c02\\-81f2\\-08294ee71ebb\\-000000[\\/\\\\]+sEOl_F0C0ax81MYznGkGuvuC2Ys\\=394(?:\\?|$)" + }, + { + "hash": "4a989ad88d33b2a6aeaedf39d27a240c34db406e7cbff9d35cc9ac532d2586bc", + "regex": "(?i)^https?\\:\\/\\/treelogin167\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c2f888\\-2499a50c\\-4a7b\\-4672\\-9a0c\\-66e0cd807822\\-000000[\\/\\\\]+pQlzPqOcB0I31KtpN9Y9jsVX\\-pk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5c5a9\\-f5d3860e\\-32fa\\-49eb\\-af5c\\-a8c9f80771f3\\-000000[\\/\\\\]+OtRh\\-LJoPAujjvqSAkAasrptlMw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459601e2\\-cf7f7b0b\\-214d\\-4069\\-af57\\-c2fcfb95ca69\\-000000[\\/\\\\]+Tvxozskb1iY3vRzIPf4fnOQbaDs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245817e7a\\-78ecbe1e\\-a609\\-435c\\-b342\\-674e5620efbd\\-000000[\\/\\\\]+gbc6Y\\-6s4lQZ_TRUfmqU\\-Mrv_44\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d0773\\-e4c11ee9\\-895b\\-4922\\-afa2\\-8d7cf56eabb6\\-000000[\\/\\\\]+DHzs5hIvYw5BKEs1Igt\\-kWoUlHM\\=394(?:\\?|$)" + }, + { + "hash": "7849accca09406be54b320fb0ecfe5128890bc214345d2c637fb434ad16f4639", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a4680\\-bba26921\\-0779\\-486d\\-98f5\\-044f55ae4c45\\-000000[\\/\\\\]+G23AT5EzXlaCq5GxT6P0PHVd0dE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c2f888\\-2499a50c\\-4a7b\\-4672\\-9a0c\\-66e0cd807822\\-000000[\\/\\\\]+YtrgqIktnykitY4Px6PeEIG_TJ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6a3a4\\-ad3ccd29\\-a14c\\-475a\\-8bd7\\-f34656a4e50c\\-000000[\\/\\\\]+cml5EC1VEVFx_XNCfPMTGBbR0CU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a0ad5\\-c3fa22b9\\-3b49\\-4313\\-b87a\\-017f84031957\\-000000[\\/\\\\]+MD1CHTarzspTTOb66VfhXSZOtFg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a2c494\\-5e2d0d52\\-0196\\-4776\\-a42e\\-fffcd427f2d5\\-000000[\\/\\\\]+npRSAdPnK5hb7qp2HI49kYkdL\\-E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4cfff\\-b3c4b764\\-ab2a\\-427b\\-9ae4\\-29bd926e7bc9\\-000000[\\/\\\\]+iiGOZo66ot2sG7KHHiMYzsDHs8o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245745e7d\\-96de5a58\\-7556\\-47ef\\-8b55\\-3eea2b366db6\\-000000[\\/\\\\]+4rBJ6oNnqfIo7XYHVRnBLFPBjfc\\=394(?:\\?|$)" + }, + { + "hash": "ff8606a291533c7a46e9cd65226bb95bacf7b5cf550b57864fe5d47cadd01623", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pan(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245908921\\-724b28c8\\-6ba0\\-4a42\\-a439\\-3ef3885099a5\\-000000[\\/\\\\]+AzvSpCevm\\-4hg5TGKr8FUoubiqI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245817e7a\\-78ecbe1e\\-a609\\-435c\\-b342\\-674e5620efbd\\-000000[\\/\\\\]+j86As9u\\-pauxMbCO\\-76xtLoR93Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245956549\\-a986cfa1\\-31a6\\-4c68\\-81e8\\-1ad51d1dff20\\-000000[\\/\\\\]+VwShspL1OP05dm6jPbwnTLXRSJk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a30db\\-8646d91f\\-154f\\-4290\\-920e\\-75bed083f0c4\\-000000[\\/\\\\]+0SOeuQMhjNa6lblykRnGfRw9VUk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458d1373\\-2e70b2a3\\-7586\\-4c37\\-9e49\\-c946357a00a6\\-000000[\\/\\\\]+EdiOhKrKpmZfyPQo3hvQnxCI0Eg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b06c7b\\-612bce72\\-e83d\\-4cc9\\-b0be\\-846930543496\\-000000[\\/\\\\]+tiIetgNv4LFl\\-6NGavxeOmw7yc8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac5018\\-dd44e2c8\\-b051\\-4c1a\\-bd8d\\-a3b7005c169e\\-000000[\\/\\\\]+ErrPcckvM1MJzPNj3lFxJHtA6r8\\=394(?:\\?|$)" + }, + { + "hash": "eedbaa1bfbbe5e47e2ffb8b1942460f14cccabe6a9b84df667888ebf94eaafd9", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf8ff6\\-e7e84c57\\-dc8b\\-4042\\-86f8\\-c33e1d127215\\-000000[\\/\\\\]+Pee92zkmW4D\\-voEAAbVXiTIwP90\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a4680\\-bba26921\\-0779\\-486d\\-98f5\\-044f55ae4c45\\-000000[\\/\\\\]+uLGVdT24t\\-2pWu7pTZXAETumo1U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1a60d\\-60085aef\\-9538\\-448c\\-a5c6\\-485fe3437bfa\\-000000[\\/\\\\]+vv89OpPlm6wCXadCZSQax3koum0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290b700\\-66e74b00\\-7eae\\-4ea3\\-8197\\-adf3d2bee5e0\\-000000[\\/\\\\]+bUPJfSvFRcP6nspKeE9Kcma6nSw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594ca7c\\-45021264\\-cbda\\-48c2\\-a8e8\\-3061b42ec783\\-000000[\\/\\\\]+pUC_VED9hWSZWShQ3LBZ2qD4bGQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+010101923290f9db\\-cc94bf72\\-389f\\-4b09\\-b97a\\-8ec58b6f7bee\\-000000[\\/\\\\]+RoI2HMPYEIuIJPaUfjGri1fVft4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf2c06\\-bdc8f38b\\-babd\\-499f\\-8363\\-101840b5591d\\-000000[\\/\\\\]+VlSRwOJ2BB4lSc\\-Vx0fUzXd76gM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245808547\\-789a1ec3\\-7adc\\-4efb\\-9e5a\\-9e88037f4ff1\\-000000[\\/\\\\]+pBj4vuVeJpGz\\-_PrwYkZ4_9HItU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459fc0eb\\-4fba1f83\\-dbae\\-4421\\-b717\\-44a40b14ee51\\-000000[\\/\\\\]+BAQCiodMPcWSHWPVNwhyQ4PgD90\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b06c7b\\-612bce72\\-e83d\\-4cc9\\-b0be\\-846930543496\\-000000[\\/\\\\]+75zoXg3oK8EFl03htodDptexoG4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac5018\\-dd44e2c8\\-b051\\-4c1a\\-bd8d\\-a3b7005c169e\\-000000[\\/\\\\]+_EHGMma6QpVe44HwM5vESEzEi\\-M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245adf80c\\-bbf7e32e\\-0430\\-4b19\\-b2a7\\-d3b426a6b39f\\-000000[\\/\\\\]+o2bSjL2PS8kNpbX5_aXgp9Owi\\-Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd70a4\\-c7ebd728\\-a894\\-45e3\\-8c58\\-be6f4aaf9767\\-000000[\\/\\\\]+H9bQQr7NutDJj24ggVkKPft1g_A\\=394(?:\\?|$)" + }, + { + "hash": "aa2a6e7e825256be673a248d31a08ff8d509a5b1242cd4432163ec6e3123564a", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584b227\\-98fa05db\\-683a\\-45fb\\-9e50\\-f509b9638094\\-000000[\\/\\\\]+ud1wN9GzIo\\-ZuNRc0_XvDWv7Zlw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924589c4d4\\-9a2462d7\\-78fd\\-4bee\\-b291\\-edabaf5ca630\\-000000[\\/\\\\]+FsijNMaAfqoj_lZ70P2ppD5IOcM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf8ff6\\-e7e84c57\\-dc8b\\-4042\\-86f8\\-c33e1d127215\\-000000[\\/\\\\]+VZJ3407CDK31RUWzx_ELl9MBoiw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245618e02\\-26c478b1\\-df2c\\-4252\\-9ed2\\-e679f3ce55de\\-000000[\\/\\\\]+X9V\\-b8EaWt7PNJxVnYwlhgtT3EU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d93b9\\-efaf5013\\-85ad\\-4bc2\\-8878\\-286993e73cdd\\-000000[\\/\\\\]+NYynvnoxxP37NSxBRRkdBPyWk00\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924560dd46\\-837bf5aa\\-44c1\\-458c\\-b832\\-2f3d5e200595\\-000000[\\/\\\\]+ze5zW_74exfQumC5pJ38BmIyuyw\\=394(?:\\?|$)" + }, + { + "hash": "2bfd56754354c2f7cb8b0ab90944f285f976bd991f6d1502522b89dcef87be66", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8fb77\\-fcc15c55\\-c0a7\\-41f2\\-afab\\-180c04d0672e\\-000000[\\/\\\\]+EEjnwHFgkMxh7mSXOC5A4PgHj5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad5966\\-2371aaad\\-1186\\-46ef\\-a511\\-84891df0c64f\\-000000[\\/\\\\]+Y_bEnVqcxsXAbXD4tJZI4TD7q20\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245956549\\-a986cfa1\\-31a6\\-4c68\\-81e8\\-1ad51d1dff20\\-000000[\\/\\\\]+SEQ1rnWcZPmzx8QGQWy_Yd2qMfk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca2c46\\-8d91ea44\\-4b62\\-4dc8\\-850f\\-9317fb454c4d\\-000000[\\/\\\\]+BYY8vPFjytjS8mW3LVxsFSb0bGQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1a425\\-a0f6675b\\-1a41\\-4ccd\\-b0f8\\-c7b3addf5148\\-000000[\\/\\\\]+aCcBwW5NjuEJnGmc6fyCFXGL9lo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245980879\\-80d73210\\-8bbf\\-4e73\\-b9b5\\-d64bfcd3d260\\-000000[\\/\\\\]+z3yYp53yKrCWTqP0JsJZN9Kcl_k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c1848d\\-3f136d91\\-f4c3\\-461c\\-be66\\-a33b23ed12d4\\-000000[\\/\\\\]+_UOKWUOce74PpjO3yFqMW37_Y_M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596b892\\-b2489d9c\\-3a3f\\-488e\\-9026\\-b704327e8b5e\\-000000[\\/\\\\]+DCqdzZ1ckK46cOhHAwFJgclsHUk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c01292\\-5fa89533\\-e7c2\\-43ac\\-9846\\-00c892a677a9\\-000000[\\/\\\\]+0R\\-Le_fxucNZ8aLF7ApqxBM\\-hbM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c1848d\\-3f136d91\\-f4c3\\-461c\\-be66\\-a33b23ed12d4\\-000000[\\/\\\\]+WpDQlFoFHMM2beJbcwYY\\-71O9Ak\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232ab06a4\\-642957fa\\-f0c1\\-4995\\-bff4\\-08d1921182a5\\-000000[\\/\\\\]+RbFFPRcnMF_YZVMFZxvYWSLsX5o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924593a617\\-e5eb19fc\\-c7cc\\-4c42\\-bd66\\-29aff225daf2\\-000000[\\/\\\\]+9NXqlavvJUc8ufW0GQF2OCXkuvk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584b227\\-98fa05db\\-683a\\-45fb\\-9e50\\-f509b9638094\\-000000[\\/\\\\]+lHeRgTn8HE0CK4SbMb6wPk9bl0M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6ea25\\-c45a1615\\-ce17\\-4e66\\-a69c\\-1d18cb1727c2\\-000000[\\/\\\\]+2hf6ZYrtyvhAWVuB7HfzMN8H3QY\\=394(?:\\?|$)" + }, + { + "hash": "7b2a3b183ae9a751fd66449f15f14625860ea658ff65550d7352a590e7ff5f9d", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abcc3d\\-48ff65d5\\-07ec\\-4b42\\-b43a\\-148edcb009ae\\-000000[\\/\\\\]+0r0q3Zfydi2hgLbe43KVCAwwe5w\\=394(?:\\?|$)" + }, + { + "hash": "3e45822bed9f5e030adfd8796c53e98a3fb50632d997d1a85be520ee0ed0aa72", + "regex": "." + }, + { + "hash": "7b4dd9cea0b23bfa3d6bb35c6ac20b4363861b5142e166d1f9e4fbd827521b05", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570896e\\-af4bdae4\\-e991\\-44a3\\-8aac\\-364a2cc57c8c\\-000000[\\/\\\\]+IlkcANaOaUCnEjI86ujSCo\\-cQkk\\=394(?:\\?|$)" + }, + { + "hash": "15e2c9b7f574ec3eb08aa3a43352552b0efa03b611fdd6d2fa7f5baeb2c14b4c", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245750e95\\-500e5a4d\\-0319\\-4647\\-a8fb\\-1de4e08c1232\\-000000[\\/\\\\]+Cn\\-sEwPNfMBHx4kITjA1cdLgEm4\\=394(?:\\?|$)" + }, + { + "hash": "649fc6f027b0a5cdf0d01556287dbba4b161c872a98bb5ab84cb0260e3c3a7a3", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8e18a\\-cbc8f636\\-78cb\\-44e7\\-bcae\\-c612dd65264a\\-000000[\\/\\\\]+r3LojH0O1oE1Z9QbAIxebQRWUbM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6ea25\\-c45a1615\\-ce17\\-4e66\\-a69c\\-1d18cb1727c2\\-000000[\\/\\\\]+TZEY9wod5UQpNpA2LFnBHy6sU74\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c370e0\\-6f699fe4\\-7c83\\-4bd5\\-9980\\-498a6c84e2f7\\-000000[\\/\\\\]+z62etXMh5rruarY_jy1aow_LwTE\\=394(?:\\?|$)" + }, + { + "hash": "d2c7b880f8fb8feafb5704b3786dc2720dfee1a0156ede953bbdf617d59481cf", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ddd94\\-3eb4e91d\\-ca8d\\-4b04\\-9944\\-68c90793fcd3\\-000000[\\/\\\\]+g_wUexYVvwyq4O6dobf5H4ldGkI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abcc3d\\-48ff65d5\\-07ec\\-4b42\\-b43a\\-148edcb009ae\\-000000[\\/\\\\]+c0AzGVc0ERXSsMGijiCH5t\\-Yuvs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596b892\\-b2489d9c\\-3a3f\\-488e\\-9026\\-b704327e8b5e\\-000000[\\/\\\\]+N4yotbYTgsrgBu28zmSCn5JVzj4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd8349\\-592ed0d3\\-b67a\\-4a64\\-a396\\-67e5dfc6248f\\-000000[\\/\\\\]+cTXFKnlzY7m4Ct5grXV8t2LsvJw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1a425\\-a0f6675b\\-1a41\\-4ccd\\-b0f8\\-c7b3addf5148\\-000000[\\/\\\\]+1hZ5Ggk6ctWHvoT7\\-mvOaHRBmWE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245855fbd\\-617952a4\\-306a\\-46c1\\-a278\\-156af81dd060\\-000000[\\/\\\\]+gvCHyjHMzyXooXVnHw1Ic481r8U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594ca7c\\-45021264\\-cbda\\-48c2\\-a8e8\\-3061b42ec783\\-000000[\\/\\\\]+jWGmikGYAwUNMhiZA3Q0A7qogng\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cad6e5\\-90920a57\\-34f0\\-4116\\-bf4e\\-969a45baf9b0\\-000000[\\/\\\\]+Z89MuovgMsRJdUy3wMUGzWtDs6s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad88a2\\-75265a1b\\-e6ec\\-4648\\-a525\\-02ebafbe41da\\-000000[\\/\\\\]+riZrY7pcDQ\\-AgyzPgWavDOwP_bg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245914fe7\\-edc54226\\-1b60\\-4be6\\-8eb7\\-684ae0e3b4ec\\-000000[\\/\\\\]+9teguotJWeZywyCYtCZ1wI6avqA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb3a67\\-48585821\\-5edd\\-4093\\-9299\\-623aa8c46746\\-000000[\\/\\\\]+CgcZa\\-CSps1nwcueWUa51uqmn\\-A\\=394(?:\\?|$)" + }, + { + "hash": "c7d1b3c4bff3a244719ebecd2ab763256077ad5472a65c0ba89a8019a9e22da8", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598d0bb\\-1c5ce6e4\\-42a9\\-4750\\-a452\\-1921316eefb8\\-000000[\\/\\\\]+M86nVqmIDWwYAe7wyrOseA9voy4\\=394(?:\\?|$)" + }, + { + "hash": "5b6317b2ef87c4b21cecbb8b789662a8e3870ad3bd9a36dd8e45c977aa54c6ce", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad5966\\-2371aaad\\-1186\\-46ef\\-a511\\-84891df0c64f\\-000000[\\/\\\\]+ykqhvsPxWfbiNI1mDKcsa3ag0Eg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c19209\\-7c0a3bd5\\-2888\\-4cd1\\-8f5d\\-5ca8f3003d2f\\-000000[\\/\\\\]+i3ziYU\\-uD7LJfbLC1GM9TJ8YpXU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb3a67\\-48585821\\-5edd\\-4093\\-9299\\-623aa8c46746\\-000000[\\/\\\\]+I6I9kEuibarYYN\\-ZPOHZcTE\\-kP8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd70a4\\-c7ebd728\\-a894\\-45e3\\-8c58\\-be6f4aaf9767\\-000000[\\/\\\\]+pq\\-jzKmbkHc2ofOZ5WqWfQLLBRg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458b538e\\-ee80365d\\-927b\\-4974\\-a9ef\\-10f29c3ad5b4\\-000000[\\/\\\\]+rki9zeJM0L7VrxBTszvW8BvDugY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a174a8\\-7edf4562\\-cb94\\-41da\\-87ff\\-a95af8685d5f\\-000000[\\/\\\\]+TOoFF0Ya0CFY0F6LC_8jVfqHJ2U\\=394(?:\\?|$)" + }, + { + "hash": "d928bcefbd0367c2a668be4a21170546a20c065154c8e3fefd05898ca47f0255", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a30db\\-8646d91f\\-154f\\-4290\\-920e\\-75bed083f0c4\\-000000[\\/\\\\]+J\\-WDyK5_wyeN075vSApQLEXLID0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a74ddd\\-79329b16\\-a84e\\-4a8a\\-9a9b\\-0598ed9c660a\\-000000[\\/\\\\]+42jJ\\-VS3bZFynyfneCog_ExzPIg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3ce1c\\-81e2123e\\-e880\\-498b\\-867c\\-d3e6a6fad429\\-000000[\\/\\\\]+3wPMgp2eVQOMNEhJamAv0uKLPqk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ddd94\\-3eb4e91d\\-ca8d\\-4b04\\-9944\\-68c90793fcd3\\-000000[\\/\\\\]+QP1is62\\-W6d2YjDqfhjTJ7nCqrU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245980879\\-80d73210\\-8bbf\\-4e73\\-b9b5\\-d64bfcd3d260\\-000000[\\/\\\\]+482\\-9UzoGDbkWOfa_O5bG3Mi8T0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245908921\\-724b28c8\\-6ba0\\-4a42\\-a439\\-3ef3885099a5\\-000000[\\/\\\\]+7\\-vzovbJuVMWaVode_XKiexdMRo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a9bd6a\\-be242b43\\-b534\\-4663\\-993c\\-bb0f7fe42162\\-000000[\\/\\\\]+WZjrldXvqY7ajkdSlIQidZiNSJQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6a3a4\\-ad3ccd29\\-a14c\\-475a\\-8bd7\\-f34656a4e50c\\-000000[\\/\\\\]+L6AmlVq0dsWIxRtEa4xgjLM3pNc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a1fb4\\-61bd6d0b\\-c360\\-4dee\\-8a9c\\-ed105294a93e\\-000000[\\/\\\\]+04hud5ZcYezG5rdhQHSde3hZ0IU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a33710\\-4d3a07c4\\-1be2\\-4f1a\\-9b2c\\-2d3f7c1a7358\\-000000[\\/\\\\]+KlXUJRvDfhofK8mK85Am43X2cm4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5c5a9\\-f5d3860e\\-32fa\\-49eb\\-af5c\\-a8c9f80771f3\\-000000[\\/\\\\]+Zu9ejGZ9gc41wVsuq3MIc9LFXTk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca00d5\\-2039d98c\\-058a\\-4179\\-b1af\\-3d6592e65cf1\\-000000[\\/\\\\]+LtftFhs8gAyf6OY7mQUXAoqbJm0\\=394(?:\\?|$)" + }, + { + "hash": "92ce4f7aab7699fd28deb2421c35086264b66c5ad96093ee85d38061fbe1a00c", + "regex": "." + }, + { + "hash": "9743c9c47b20b5465d4690a54ce82b9e9b123594e44ca26ae32d0f4ad14f99fa", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7f4dd68cd7aace8f6b5ebf0ebfaee7149dbff9ba6f926bbb55debec849c4e1a", + "regex": "(?i)^https?\\:\\/\\/www\\.eigenreward\\.xyz(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "65de410947f756647e31f4c212d6bb33c477a129d5601efabec46b7d434eb9dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+it[\\/\\\\]+login" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456d93b9\\-efaf5013\\-85ad\\-4bc2\\-8878\\-286993e73cdd\\-000000[\\/\\\\]+3XqhNFQI5BQWP\\-tP2xgIBcmHpZ4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459fc0eb\\-4fba1f83\\-dbae\\-4421\\-b717\\-44a40b14ee51\\-000000[\\/\\\\]+Chq37ur86J7evTRP8sPNUzzQrDY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b5f90\\-69d0e307\\-24c6\\-4160\\-849a\\-54a7e601c7a2\\-000000[\\/\\\\]+662LT7OudghlUBc9fkLe2LG\\-hpw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245859247\\-a92e1ad1\\-06d8\\-4614\\-a743\\-2670979559fb\\-000000[\\/\\\\]+rXMfT_W5hp\\-wq89xhhA7KUuUCG8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572b960\\-10fd1716\\-46cf\\-40bb\\-9f73\\-d1401fcc995a\\-000000[\\/\\\\]+g6EN6B2UPymdYAyum4OuTg5ICAI\\=394(?:\\?|$)" + }, + { + "hash": "07b01db3277b83b45686c196c804d177d05f09ce78bd8e6470ffec7438cc25ae", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3ce1c\\-81e2123e\\-e880\\-498b\\-867c\\-d3e6a6fad429\\-000000[\\/\\\\]+YJSb2SRmdqDYnFDBkVS2ZY5wYvI\\=394(?:\\?|$)" + }, + { + "hash": "65de410947f756647e31f4c212d6bb33c477a129d5601efabec46b7d434eb9dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+it[\\/\\\\]+certificationUpdate" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3c3ea\\-f007e8e3\\-ef6a\\-40db\\-8760\\-993166fb2a6d\\-000000[\\/\\\\]+k6UyFqG7qh1iSTVZDSRLEOZ35TU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1a60d\\-60085aef\\-9538\\-448c\\-a5c6\\-485fe3437bfa\\-000000[\\/\\\\]+S5dEvPOEbPpFTvBRiIIAoG0zYlc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+noiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456595c9\\-b86ed7a4\\-e2ab\\-49c7\\-b95d\\-fcb4c37b675f\\-000000[\\/\\\\]+Rhsp7r0bY1ab_IRarymeZ9TluRM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924560dd46\\-837bf5aa\\-44c1\\-458c\\-b832\\-2f3d5e200595\\-000000[\\/\\\\]+y9iuhxSvX6Ot_fHP4wotfzFRPwU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d728f\\-44217a99\\-9cd8\\-44dd\\-8793\\-18b56263be5e\\-000000[\\/\\\\]+6acB\\-h_7sILO_Mtc5mxPZtuzdxA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad88a2\\-75265a1b\\-e6ec\\-4648\\-a525\\-02ebafbe41da\\-000000[\\/\\\\]+i\\-EJbGVxeIyohI683apTHlXyQF8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4cfff\\-b3c4b764\\-ab2a\\-427b\\-9ae4\\-29bd926e7bc9\\-000000[\\/\\\\]+lQPudE7tj2trbfsOIJvjyYnCEe0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245745e7d\\-96de5a58\\-7556\\-47ef\\-8b55\\-3eea2b366db6\\-000000[\\/\\\\]+BfznRqNneM31jTqB7\\-ofGvBe2xE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a74ddd\\-79329b16\\-a84e\\-4a8a\\-9a9b\\-0598ed9c660a\\-000000[\\/\\\\]+0uFAeBd3CxUmnpDCAwUWSm9yEFA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245750e95\\-500e5a4d\\-0319\\-4647\\-a8fb\\-1de4e08c1232\\-000000[\\/\\\\]+20OzJfPghKEGpPV6WPPYFB43amQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca2c46\\-8d91ea44\\-4b62\\-4dc8\\-850f\\-9317fb454c4d\\-000000[\\/\\\\]+D36l7u9uZANwpxX92xqQxFycojU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245adf80c\\-bbf7e32e\\-0430\\-4b19\\-b2a7\\-d3b426a6b39f\\-000000[\\/\\\\]+IvjpGkjd3Cn58BIwFQJXfQ_fUUc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b9d73\\-a3b4bfb9\\-1005\\-4939\\-a199\\-a941465f9d34\\-000000[\\/\\\\]+7DQxG2DQv2Sl2kiq2ZhsipItu2o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb5c67\\-c735798f\\-59e7\\-4ea2\\-babf\\-9680fe20121a\\-000000[\\/\\\\]+w4tWe70qM1FXBgR6e0qre2TK7fk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245914fe7\\-edc54226\\-1b60\\-4be6\\-8eb7\\-684ae0e3b4ec\\-000000[\\/\\\\]+vSGIBEhvgmPpPqX6obQQnltY4Hw\\=394(?:\\?|$)" + }, + { + "hash": "87238fa8e2e26e7213b1af1e219d8816bd26a580f4303cb3aa6ac981464b4651", + "regex": "(?i)^https?\\:\\/\\/pub\\-43674fd669c14e658ee4d4cf1b978f25\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a9bd6a\\-be242b43\\-b534\\-4663\\-993c\\-bb0f7fe42162\\-000000[\\/\\\\]+9Kkd2DaMG7XuDbxPhGjmFV_vh14\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b9d73\\-a3b4bfb9\\-1005\\-4939\\-a199\\-a941465f9d34\\-000000[\\/\\\\]+CsDKxodu8PMYCDwzQF_4MadUNDY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5b42a\\-53bb6a9b\\-172b\\-4048\\-9046\\-19c5f4db5016\\-000000[\\/\\\\]+Lb3euuuPva1fGjxGD1qJLInuWb0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7f61c\\-33c22ce8\\-51f3\\-4183\\-8cf4\\-e5e63b48c894\\-000000[\\/\\\\]+LvKv_9R1yQIH4Tik3o8bjqK\\-6kI\\=394(?:\\?|$)" + }, + { + "hash": "86dd5331f9eeae2ab2d450e9d638edad4100d689eb096e166f6809c9f9d402a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wim9ofhhzkjx\\.html" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458d1373\\-2e70b2a3\\-7586\\-4c37\\-9e49\\-c946357a00a6\\-000000[\\/\\\\]+XCE93bigKLG24KunvjTuBGSzyMU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924593a617\\-e5eb19fc\\-c7cc\\-4c42\\-bd66\\-29aff225daf2\\-000000[\\/\\\\]+vM4N5nENM7wngq7ZiN1IPtEhKGM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ce1eea\\-4e0c57d7\\-4f24\\-4b92\\-857a\\-f5633bd0090f\\-000000[\\/\\\\]+m_RyMk0cq_rq_LGXkvAvUO\\-tj_0\\=394(?:\\?|$)" + }, + { + "hash": "b6a4b334876278f4aa0344e2ff22f0616cd9080c90f3a45976830c99c5f65aef", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245659646\\-cc10245c\\-80e8\\-4616\\-9ef1\\-fb5a3b9e7b94\\-000000[\\/\\\\]+1Zb8v_aCoU_n\\-yAzaCOyh0Mdff0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456d0773\\-e4c11ee9\\-895b\\-4922\\-afa2\\-8d7cf56eabb6\\-000000[\\/\\\\]+8C0bZ_YWz0AJ9gUB7eo5UmhVU78\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cff98d\\-06122dad\\-fad1\\-44e0\\-8239\\-fd7351cb7ad6\\-000000[\\/\\\\]+j8G\\-S4hrOf1vZxK6cJBG3ipxSVY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459601e2\\-cf7f7b0b\\-214d\\-4069\\-af57\\-c2fcfb95ca69\\-000000[\\/\\\\]+V5eDTQ1\\-uaZb5e_olghHc\\-XoF6s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cff98d\\-06122dad\\-fad1\\-44e0\\-8239\\-fd7351cb7ad6\\-000000[\\/\\\\]+3JkXPvIkmbLn2zLS9nF1y7vK8UI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ece00\\-766292c7\\-4d90\\-4c02\\-81f2\\-08294ee71ebb\\-000000[\\/\\\\]+4jzZTfC5cObGctdAz4xyhcsdwSg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1093d\\-cecc0c95\\-ee95\\-4de5\\-8ba8\\-e6376f6b01dc\\-000000[\\/\\\\]+ycdb6ztL_4d0IBKtYmm5XCYm3Fs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458b538e\\-ee80365d\\-927b\\-4974\\-a9ef\\-10f29c3ad5b4\\-000000[\\/\\\\]+lDlucYtO_ExtAnb6Q4lZrjWr1tg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245618e02\\-26c478b1\\-df2c\\-4252\\-9ed2\\-e679f3ce55de\\-000000[\\/\\\\]+5EHLZlXutOX_CvddPf3n8lA5bVM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245808547\\-789a1ec3\\-7adc\\-4efb\\-9e5a\\-9e88037f4ff1\\-000000[\\/\\\\]+bDmipLOqcEo4mHOZAw_kjBdP_EA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b31e61\\-2186eb24\\-8c22\\-4f17\\-9723\\-29e5b67e189c\\-000000[\\/\\\\]+5ogSdepbZ2mpCLWRNDRvjmu4toc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c19209\\-7c0a3bd5\\-2888\\-4cd1\\-8f5d\\-5ca8f3003d2f\\-000000[\\/\\\\]+UCy8KuRbAU\\-dNdw6LGTFbQ9BuSU\\=394(?:\\?|$)" + }, + { + "hash": "a9e4b9e33a181a218e014feae66a07f8a66ecf02ea1789f968779573fc1bb5b8", + "regex": "(?i)^https?\\:\\/\\/hotvideocensord11\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f69b37710518c703db6147acbba5195126dd3cebb321000ccece77a43c3d4381", + "regex": "." + }, + { + "hash": "e524930ab30ab7715e7a7cd38cfa7d466f0d03315513b2d3b7695fbbbbfe4282", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0de29\\-7a67f4d7\\-1a06\\-44bb\\-8462\\-d929907867e9\\-000000[\\/\\\\]+FPuhz8b0gplCwKCpPL_M\\-qiV3pU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c30c76\\-035b2f54\\-eeab\\-41c3\\-b4ad\\-18dea04979e2\\-000000[\\/\\\\]+qmabc6Mh0sP9C3SB2Uva6KwvmcY\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13156\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924d7d8cad\\-cdc055a0\\-5c5c\\-4444\\-8fad\\-5ba5d12c6d58\\-000000[\\/\\\\]+u3u7A5ZVzunR_YLp\\-VlPWOzf3N0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c4d42e\\-3285da1e\\-9d2f\\-42aa\\-8ed0\\-3e82bfa9c71e\\-000000[\\/\\\\]+wsxIKp3dMw2A4kaxRHYp802Yt5s\\=394(?:\\?|$)" + }, + { + "hash": "0d07ceca0e7558fd1ed3457f5e856b6de3aa8b0aac22776d0c80d9d24428dbd5", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24639c15eb31d0bc04bbed8a75269951d7055b9d8a333ae8df1881123bb350fc", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cba222\\-ce493a84\\-e26a\\-40a0\\-a634\\-7ebf228d86e8\\-000000[\\/\\\\]+NZhxOB9r5mshEiIJ2Fe7A77joJw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c92950\\-d155378e\\-8519\\-4c83\\-b808\\-3f2b71ae91df\\-000000[\\/\\\\]+8_zybsuhRsbUzuuYbtSAJ9HFfh8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f36ef\\-e3c6e5ba\\-de03\\-4a55\\-abd1\\-de558ae9291e\\-000000[\\/\\\\]+4jWGD30qRi52cfPRdlSbGjeuHKQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f42c1\\-857c3d43\\-ea9d\\-40e9\\-9e23\\-2151eedffee0\\-000000[\\/\\\\]+robj8JQMiIvqO5jQfXYZvA5bZ_g\\=394(?:\\?|$)" + }, + { + "hash": "9742d293ec51cf38dbad1a324d30b7e8f929adf1979012e8e87630fac76b02fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+israel\\-posT" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924b2ad796\\-104d28de\\-44cc\\-4db5\\-b4ee\\-59efce0f69da\\-000000[\\/\\\\]+Bum03tSCNchv8x8VTwVN_IH7wSY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245794f58\\-d681c47b\\-2b7f\\-4c7b\\-8ef3\\-2ad694005215\\-000000[\\/\\\\]+yF9jV8rz_ZnHtNHkLYvciJblv2I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0d847\\-e2d9d271\\-a1bd\\-413a\\-8984\\-a4b004b437ba\\-000000[\\/\\\\]+r7fsWzj9qcVyW5TE4jjdAVnL_MQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b64171\\-feea7a22\\-b9b6\\-4122\\-946a\\-7875502df671\\-000000[\\/\\\\]+8MaSnIsNJcz3rcJ4dhh\\-JreWPiY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0d4d0\\-c3960f66\\-2eea\\-4ea8\\-a31f\\-a4e4ffae8fc4\\-000000[\\/\\\\]+qa0CxqZSxS7PosCcTCmwW3sd_6E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573d79c\\-da30efea\\-6358\\-4b3f\\-967e\\-c40a26715d13\\-000000[\\/\\\\]+axlgskUvsj2uKlp9JjuAWcv_ocY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ba6d1\\-794fbc94\\-be30\\-44ff\\-975d\\-8f2ff64914de\\-000000[\\/\\\\]+aiaWFzJABWUnKVl7PzieOMD_5Ig\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c14ac2\\-27110076\\-d953\\-482d\\-b385\\-4f05092de03d\\-000000[\\/\\\\]+qHqe_jHAMmC69WvWDx6CITYG4RQ\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924aee64a3\\-7870eb1a\\-ef69\\-431b\\-8f6e\\-26aae3d8b6c2\\-000000[\\/\\\\]+ZCpANYEpcN4ObotXdDkrzcbMia8\\=394(?:\\?|$)" + }, + { + "hash": "d1b7df7e7ac7d62de152e5667c4daaf7be9cec4bc61c88f73f01b5ce03a5ea21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+h5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "111e1390d74f7a93b3352538736ddd5952d4b0aef024efb062137d4ff456b2bb", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c43252\\-35b3a809\\-1ad9\\-4ae0\\-9269\\-6acc8e90fb7a\\-000000[\\/\\\\]+TJjYqIdaTD6ahAb67GngKQHTgrw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f41e3\\-786981e5\\-d118\\-48b5\\-bc09\\-d17146abe11e\\-000000[\\/\\\\]+ZOpxNFluSoY1t_qCAj7nwJl7U5A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbb590\\-447d631f\\-9ddf\\-4d31\\-a341\\-bc5b8b6cc975\\-000000[\\/\\\\]+bUUY9XZ\\-5Q1eV\\-rb5c3DG0IgO0A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ec87e\\-314f93e4\\-dd8d\\-43fa\\-bd60\\-5d23ffabdaf3\\-000000[\\/\\\\]+3fNsxJ_Dbkf0kY5RaMoWXZVXaEo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458ca0a2\\-216b05e8\\-e51a\\-4e04\\-b0e0\\-937a282da00f\\-000000[\\/\\\\]+9ZiqL4uQw9moMQzX6ZRP6fGWVUM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aac94a\\-fde2a3a7\\-3619\\-4bb6\\-9e5c\\-0ecc881e6043\\-000000[\\/\\\\]+ywW1RCRjK1UcQXkgnjCB3KPMBEA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c43720\\-dc6a88ce\\-5eef\\-4d2a\\-bc6f\\-93bb2f3ec0f4\\-000000[\\/\\\\]+vzyTGHmmQwDm3ZfwjeVOy7B_Kg4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924563577e\\-10036768\\-c47a\\-4f22\\-ba85\\-98d65e21b736\\-000000[\\/\\\\]+wGbyEXsxNbjp6YxXIw23WO6fHGI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bc64b\\-d678fe6b\\-5718\\-4770\\-b19f\\-121fe98b3b63\\-000000[\\/\\\\]+hXNfM4jQaqfdZbwvJDekaBI9uJQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584e3da\\-4abef435\\-3427\\-4bcb\\-84ff\\-b045a9ca4f1a\\-000000[\\/\\\\]+CJc7PpDANMkn8pBpW3CISXy9LAE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a30d87\\-93e58f40\\-48fd\\-4a50\\-b4ea\\-191a059ba2bb\\-000000[\\/\\\\]+HMwSJUtNpnhJelWMj6WC\\-3tpjeg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459c9a04\\-eb2a524e\\-1547\\-4c60\\-b1d3\\-7367c4f4e4c5\\-000000[\\/\\\\]+Snag75t3CdYRSSCuxdkqcnFU8eE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245749520\\-f90661b4\\-c29c\\-40f0\\-ad43\\-92b38b335bc9\\-000000[\\/\\\\]+8ynxqELX8JCcqUpEzOkijGng\\-Ng\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13156\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924d214a6c\\-8bf97615\\-62d6\\-45df\\-9782\\-f1f386f0bc2b\\-000000[\\/\\\\]+O_aT2yL2LBGXIW8OpzLIE7pJ6yg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b9a2ea\\-e9d423eb\\-541a\\-48c6\\-8ee8\\-7bb1844c4174\\-000000[\\/\\\\]+t97nzM8nWoGpsTBJWkGe4W7WPNE\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+pub\\-7568765e07224e14a09292192160d3d5\\.r2\\.dev[\\/\\\\]+mail\\.html\\?email\\=$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b28bab\\-1ae8e0a0\\-b924\\-4c98\\-89d2\\-108edaecaa30\\-000000[\\/\\\\]+_zuNU0QD9tPHRvv2mdeQcwsgJw4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455baaac\\-3a77f315\\-1f18\\-41cc\\-9d75\\-3a0bca1dc5b2\\-000000[\\/\\\\]+IgBzOzB0vvBzDTM7tTa5Z41gf6I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245673564\\-99d2d5cd\\-1546\\-411a\\-87db\\-642c2a8f26f5\\-000000[\\/\\\\]+\\-dttyIRb3FFLU6SXj1YcpCfWw4Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb6efd\\-26efa163\\-2f68\\-4708\\-b875\\-69cb30e01d2d\\-000000[\\/\\\\]+ghY78jQlJqTi_OM5U9ggZOdHcic\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245749520\\-f90661b4\\-c29c\\-40f0\\-ad43\\-92b38b335bc9\\-000000[\\/\\\\]+GcyFpoe4Q2u2a75ghwZlKH0ML7I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455e927e\\-8f24c443\\-bffa\\-43e1\\-aeea\\-491e7051e25c\\-000000[\\/\\\\]+o3WEYnw1d9fyOi6S_QUVPiVHy4I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595f50f\\-36a5428c\\-17bb\\-4015\\-81bf\\-aa1cbdb70b01\\-000000[\\/\\\\]+tHgwPsI098NW6nxT2uFiwCOmZik\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b23f98\\-0ff123e0\\-52b4\\-469c\\-98eb\\-aed857c0cbdf\\-000000[\\/\\\\]+zMKnvqRUoszFbMksTHb1qObKqr0\\=394(?:\\?|$)" + }, + { + "hash": "0a49e4762fa8cafcc8afe499799c727fa2bd04093166cc78e5839f91052cf4e3", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c43720\\-dc6a88ce\\-5eef\\-4d2a\\-bc6f\\-93bb2f3ec0f4\\-000000[\\/\\\\]+0pDkplResc09IrvhccPgCsPR9wQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b87562\\-6b8308aa\\-aadd\\-4031\\-9cba\\-6c533699f27c\\-000000[\\/\\\\]+W2xNtDib2tlu_VvxHevY9DP192c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e1cc5\\-9f618f49\\-9f48\\-495a\\-a5ba\\-b3bcf165693e\\-000000[\\/\\\\]+SZX_vDnGJTGLJ\\-FZCpob_rRYbAw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3fa0e\\-420337b8\\-3c9e\\-49d5\\-b81d\\-4b5122ab84b5\\-000000[\\/\\\\]+Hd7\\-CSXd9Gv4pzosK1bsZR_e6_s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a14655\\-5eb94f4b\\-f754\\-489f\\-8094\\-4ef68469b721\\-000000[\\/\\\\]+xNO7J\\-LDe5GsT5ThO9SKus3ixDo\\=394(?:\\?|$)" + }, + { + "hash": "df57fdccbc82405866099652313c0d2d0659320a16670b837a12cc6dbc26d882", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mail[\\/\\\\]+en\\-us\\=329271bc1d706bc37873a5844e7ce631[\\/\\\\]*\\?newsid\\=8213577162NWU4YzBhZjU2NWE4YWE3NTljY2Q1M2M1NjQ4YTYzNGM\\=NWU4YzBhZjU2NWE4YWE3NTljY2Q1M2M1NjQ4YTYzNGM\\=NWU4YzBhZjU2NWE4YWE3NTljY2Q1M2M1NjQ4YTYzNGM\\=\\&email\\=qepbookafacility\\@oakville\\.ca\\&loginpage\\=1NWU4YzBhZjU2NWE4YWE3NTljY2Q1M2M1NjQ4YTYzNGM\\=NWU4YzBhZjU2NWE4YWE3NTljY2Q1M2M1NjQ4YTYzNGM\\=\\&reff\\=NWU4YzBhZjU2NWE4YWE3NTljY2Q1M2M1NjQ4YTYzNGM\\=NWU4YzBhZjU2NWE4YWE3NTljY2Q1M2M1NjQ4YTYzNGM\\=" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cf7269\\-89d4424c\\-5ba7\\-4470\\-bccc\\-3568997e6afd\\-000000[\\/\\\\]+fP0UL6g6sgXdk7RKbLWDvfGJnz0\\=394(?:\\?|$)" + }, + { + "hash": "a2b62c824d79fa321ef67b5a729043de7360ad115f9eed799599dba4257898cc", + "regex": "." + }, + { + "hash": "305f798de6e2b69763f45eb01bd1ba9954c7bdefbe7db07e4081329fa96d640e", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1e1f0\\-cada301c\\-b567\\-474a\\-9517\\-479a88eb6ccb\\-000000[\\/\\\\]+pdqsDLokmox4Pvcl\\-YN9UOP2quk\\=394(?:\\?|$)" + }, + { + "hash": "f4a20f9f84cca358daa48a919837f322f72bdff249398e8f68cf07a9cdace739", + "regex": "." + }, + { + "hash": "66178a882dad4e89e6b142da658979ff3554ac0dd8d0cf91852238a973a1e817", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595f50f\\-36a5428c\\-17bb\\-4015\\-81bf\\-aa1cbdb70b01\\-000000[\\/\\\\]+rSEgbYhKTkRHYa438W\\-\\-ymgGhwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455e927e\\-8f24c443\\-bffa\\-43e1\\-aeea\\-491e7051e25c\\-000000[\\/\\\\]+WYvY3BsBsavKW3y3Xde0gdKUB0Q\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924ae607ea\\-a05ed0ce\\-6c45\\-4220\\-afef\\-b7d17ed78b80\\-000000[\\/\\\\]+9ePo8BlLcILeDmryn_OXmY9M0B8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572a5f2\\-ce32b8b6\\-1bb7\\-46fc\\-a4de\\-eb9a53d5fb7f\\-000000[\\/\\\\]+dGOsCAN0vPbnQ2JOAxkzO6s4hfc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458eda98\\-2ee9ffce\\-1c56\\-4fe0\\-94a0\\-69c84dbd5d1d\\-000000[\\/\\\\]+JYm6Aeqgwtvo8wcYfOuG5Spx_wU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459e66c1\\-3a45edc4\\-b950\\-44dd\\-a112\\-3ee74264d56e\\-000000[\\/\\\\]+sJ6p3kOcpYo8_oK4FikRy1RZMgk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245763efe\\-59f315d5\\-0b39\\-486b\\-9b24\\-cd1608c9aa60\\-000000[\\/\\\\]+se_N_J3mCbchK7LkcA07n1YT6Ts\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594d353\\-ab1b6acd\\-6b65\\-4265\\-add7\\-aae1bad83c8f\\-000000[\\/\\\\]+Tl8enzWmkbnnLAZ9o4LozTkFKqg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458ca0a2\\-216b05e8\\-e51a\\-4e04\\-b0e0\\-937a282da00f\\-000000[\\/\\\\]+QTk33Y6k8rXpILEbFDxmNEHQuOE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b9627f\\-6c2f719c\\-a9db\\-4a03\\-83b6\\-2054e33fff21\\-000000[\\/\\\\]+AaEm2GRpu8CAq34VbesWmHh_46A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b9627f\\-6c2f719c\\-a9db\\-4a03\\-83b6\\-2054e33fff21\\-000000[\\/\\\\]+quKC0ZGPheC62j\\-GV5K\\-fPaiOmk\\=394(?:\\?|$)" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+lbkO(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f36ef\\-e3c6e5ba\\-de03\\-4a55\\-abd1\\-de558ae9291e\\-000000[\\/\\\\]+cWczsbubDwQFvTTAjKqbgl_rhMc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b78ceb\\-8f3366ce\\-7bb3\\-4fd5\\-8124\\-d80177859797\\-000000[\\/\\\\]+Sc8edSbSqCRda4XlG7bcdsqFngw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924570e0a0\\-a05c9869\\-2b65\\-4354\\-8055\\-d7d1ca5c086b\\-000000[\\/\\\\]+WGxo9jNTeaMWhQKqRq0uiMLTXeg\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924b951fd2\\-6a14da42\\-9d66\\-45db\\-9937\\-56057b118c89\\-000000[\\/\\\\]+Ned0qerBdfQvBxor9mtXA\\-HskT0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bcd54\\-36404b6d\\-2deb\\-4eb6\\-b979\\-b05c8824b586\\-000000[\\/\\\\]+6pFrqJiXZOtyVJ8JYj5CjViehCM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1a1d5\\-c1af60e9\\-5e55\\-4b8b\\-b3ac\\-ba297403053b\\-000000[\\/\\\\]+Jpz0yKBM59awFnTQ8CjQ3FunqRc\\=394(?:\\?|$)" + }, + { + "hash": "ff6ff8d661113a2e630dac0cc75514a4be45496c859480a8dcaba315fb552df3", + "regex": "(?i)^https?\\:\\/\\/listopad\\-konkurs\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+in(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924ae725b2\\-9bf9c076\\-b67e\\-47c0\\-ac14\\-1ed77ce66890\\-000000[\\/\\\\]+29AY0Dek\\-vgusnYBWHoak8HhbzM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c92950\\-d155378e\\-8519\\-4c83\\-b808\\-3f2b71ae91df\\-000000[\\/\\\\]+M6ZtO1qnNfrs6mS44aRuq8JxAZ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f41e3\\-786981e5\\-d118\\-48b5\\-bc09\\-d17146abe11e\\-000000[\\/\\\\]+hQdH4ZPDRoEYfxUkojyNQQaYqgQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8c469\\-bcc105be\\-8778\\-430c\\-96ea\\-82a03bc99898\\-000000[\\/\\\\]+TYj3\\-XCT5EG0\\-bzPa3l8WkAMkU8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c03e77\\-67fc3e97\\-80c3\\-4f50\\-92a6\\-1425cf4fdd8b\\-000000[\\/\\\\]+c0xfrY\\-XXWIhXuz9S3K3qLrDlow\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cf7269\\-89d4424c\\-5ba7\\-4470\\-bccc\\-3568997e6afd\\-000000[\\/\\\\]+_8OSx8Ri3Hj8mJhq6hRYaE\\-8FdU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bc64b\\-d678fe6b\\-5718\\-4770\\-b19f\\-121fe98b3b63\\-000000[\\/\\\\]+_Vyh1h_ogadbXHvG38YW6VVBG9o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458eda98\\-2ee9ffce\\-1c56\\-4fe0\\-94a0\\-69c84dbd5d1d\\-000000[\\/\\\\]+130Yuuj\\-Wt3aRD444JFnkPIWB84\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459bb192\\-8cadeea3\\-da53\\-4f05\\-b5c2\\-6c56fe2b5ef5\\-000000[\\/\\\\]+3Qnk\\-qY2LVvPmCWCWcgg\\-8TRsQ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924584e1b3\\-b5af13f4\\-741d\\-46c5\\-9a4b\\-9b1e192197d4\\-000000[\\/\\\\]+dUJrhZw8U7xPkE0T7ZONoKszc5Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c17a7c\\-fb9b8b3d\\-36b7\\-44f7\\-8ba7\\-44f76716d9dc\\-000000[\\/\\\\]+wLdaW0XkDLTFmoRwunhbpeEcGns\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf2557\\-65118355\\-4441\\-46dc\\-911a\\-eafbed44a363\\-000000[\\/\\\\]+ouWl\\-eqXY1u4NJYTeQRq3YElQdg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245749de4\\-f8a0af5c\\-5df3\\-4a70\\-8cd6\\-6f372a1e71ec\\-000000[\\/\\\\]+6Uv0xK_fxh93FFAYNfQ0IJFAtqo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b8ca1\\-94948206\\-21ce\\-4f2f\\-a751\\-96624a3a8e2f\\-000000[\\/\\\\]+sQpvRs\\-DOrzTgZu_rfilG86t4I8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584e3da\\-4abef435\\-3427\\-4bcb\\-84ff\\-b045a9ca4f1a\\-000000[\\/\\\\]+5uXg87vBLA1ER8EwyKrOzupjbsE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f18f1\\-da4de313\\-989a\\-40d6\\-9abd\\-94c5730912f5\\-000000[\\/\\\\]+cfr7lF4lFbL0jKHojeK0YuSuXgE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3ea8e\\-0a4aae3a\\-34cd\\-4f67\\-b9fa\\-35221c848e2c\\-000000[\\/\\\\]+HbKpEeb\\-1P2O2lBnW9O4bVuPTx0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457e06e2\\-d2aed238\\-bed0\\-404e\\-aced\\-d1adc3362bdf\\-000000[\\/\\\\]+B9BlvLs_vBRG8qUPtds1HxHXyWg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cf418\\-3bd90864\\-19a6\\-48c7\\-a773\\-cef7fd29b76b\\-000000[\\/\\\\]+jLcL4qdl8pC089eoby9ZhDxYsQ0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e5e36\\-53b3df6e\\-43f3\\-4673\\-84e4\\-6bda6044d205\\-000000[\\/\\\\]+\\-YjkzFKvWtjQOJH\\-w9rtqMplpdE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e47f2\\-209c5f2a\\-a081\\-4a0e\\-b937\\-993e1fb4b6c1\\-000000[\\/\\\\]+Q2zLcpRwqlvIevUw\\-TxQKq9wjB0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458104cb\\-b138ca63\\-ae61\\-4581\\-92ad\\-f334870fbbb6\\-000000[\\/\\\\]+H6YHOpgNiDv_kL9IpCI3Nvce9VU\\=394(?:\\?|$)" + }, + { + "hash": "4de04c90285c7e81fe038a47d591955ccea6ceda10b092794ad4013b80a48d3e", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0de64c48c34fa3d88aeea61d0b49ffc6b26f4778c497f811fd7fbfe3c389dae9", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c02ff7\\-61302a38\\-eb08\\-4ea5\\-a128\\-ce5a52f45e75\\-000000[\\/\\\\]+DVBh0LAv1OyT2q7pAB_\\-fW7flXw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c20d23\\-b7b8ac8f\\-899b\\-4330\\-931b\\-3f94c1bae1a0\\-000000[\\/\\\\]+p19I2OFNP4qegcn\\-u4DA_ONUgeQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c319b5\\-4690b019\\-2ab2\\-48ea\\-8d0e\\-7a2974469723\\-000000[\\/\\\\]+sgs\\-V\\-g9FsIKXnNmFLIGzMUdBGc\\=394(?:\\?|$)" + }, + { + "hash": "4d17f587bfda69e566f69c87b7eaeeb55b669126dee7066d7805a59c3cb305af", + "regex": "(?i)^https?\\:\\/\\/pub\\-76926b15ba344a7b814330c83cca1f62\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8c469\\-bcc105be\\-8778\\-430c\\-96ea\\-82a03bc99898\\-000000[\\/\\\\]+7E4cXcXypUI5_6kLODcb3rnpORE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b8ff29\\-3763bc51\\-e189\\-47a9\\-b240\\-ea80cf4271fe\\-000000[\\/\\\\]+rSGeN\\-2LWlrPvoYCN5Ks_10LjUU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b7d114\\-895939c3\\-8576\\-4416\\-b3c5\\-a610e665f2a1\\-000000[\\/\\\\]+EVmCp1uEPzH372bcIYvf9AyMafE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594d353\\-ab1b6acd\\-6b65\\-4265\\-add7\\-aae1bad83c8f\\-000000[\\/\\\\]+_SQvCTMHmWjf459nEG7JjSJXHpA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232976abe\\-978e478c\\-4bde\\-429c\\-b3bf\\-58596a9d941b\\-000000[\\/\\\\]+rWbdOpW5h\\-CALLSDJFKi2hUYVz4\\=394(?:\\?|$)" + }, + { + "hash": "416f77b9dc43c7c5720ae1b6b88d5ac99a21bad599c488c3406af3c0e4472f90", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a6ad49\\-73ec973c\\-a98c\\-4c5d\\-af3e\\-029ee47b6c41\\-000000[\\/\\\\]+XFPuQzJYg2_yuovUPiLM_l8xjY8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924563577e\\-10036768\\-c47a\\-4f22\\-ba85\\-98d65e21b736\\-000000[\\/\\\\]+6PKKRqPzi3lWC8CQDlR7H6poV8s\\=394(?:\\?|$)" + }, + { + "hash": "618f3fdb09f53fc125247f6ad2d68968ad7033741544db6b64d9f1b1a434a67b", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7111d984fbd3f7116c9701cca9eda587e9460827ee36724fb05d9b12256ee471", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c02ff7\\-61302a38\\-eb08\\-4ea5\\-a128\\-ce5a52f45e75\\-000000[\\/\\\\]+8ytS6lMIDDx6tkrp4F2A5IDf4UA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a7efb6\\-3443f1cb\\-8dbe\\-42b9\\-9e2d\\-6b5e8a8cfbbf\\-000000[\\/\\\\]+Al\\-qNWnYbRyMSFK_JxC4eY1EQDg\\=394(?:\\?|$)" + }, + { + "hash": "9d3004548e0afabee9ee6ed96c8f32a8d65aeac0c7864b772b83974cf3c0d583", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c43252\\-35b3a809\\-1ad9\\-4ae0\\-9269\\-6acc8e90fb7a\\-000000[\\/\\\\]+G7Ad53l4FOiHwPrj2eo9uIwphd4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459e66c1\\-3a45edc4\\-b950\\-44dd\\-a112\\-3ee74264d56e\\-000000[\\/\\\\]+MPHsExUyufSerBC4LKBatPI2Gs0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458cb50a\\-fff04fc9\\-dad8\\-4bbb\\-ae52\\-f8014ad32af8\\-000000[\\/\\\\]+T44JioxrvYJ27xXcNq_HyAxQ9wA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0d4d0\\-c3960f66\\-2eea\\-4ea8\\-a31f\\-a4e4ffae8fc4\\-000000[\\/\\\\]+I1h\\-Ga_sJPpZI6jxM2oJYowvP54\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b7d114\\-895939c3\\-8576\\-4416\\-b3c5\\-a610e665f2a1\\-000000[\\/\\\\]+RAgb6VeykCk2T\\-Wjv7otaYiYGGU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc5a6d\\-a340196c\\-136a\\-43cd\\-a1ca\\-ee56919e262a\\-000000[\\/\\\\]+t2VoXN_8\\-J3irvPRe43NRfxKvN4\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924ad3c4d5\\-64d172e0\\-2145\\-401c\\-811a\\-5231818915ce\\-000000[\\/\\\\]+ozDqy_3xixnD3Xqc55QdEWzq_zo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a318b3\\-d1567010\\-b032\\-4fec\\-9854\\-911527ccee79\\-000000[\\/\\\\]+ne4j2\\-6lkyzz9dM7jEOqWuTEj6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458a553b\\-68abef71\\-12a6\\-424d\\-a751\\-bf6a338503b5\\-000000[\\/\\\\]+iMAJyQMz35yJP4a8DIm_HjtwiCI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594d243\\-4a5faef6\\-1105\\-401f\\-b572\\-6194c69d9a24\\-000000[\\/\\\\]+ntJZB5Hyrj\\-BSavn_nPAOgv66MU\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13156\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924d19fe35\\-15a860a3\\-9feb\\-41c9\\-a39f\\-f164f61dc4ee\\-000000[\\/\\\\]+miz1djHr668f6p92FnWzzsVNFEo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a432cb\\-3f69bb0c\\-64f9\\-47f9\\-b552\\-38f474370e5c\\-000000[\\/\\\\]+tpCmuQ77UPIywAoBQdnQrFbWNkc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585e0b5\\-6bb21981\\-f1a1\\-4956\\-82ac\\-a424e1f57dc1\\-000000[\\/\\\\]+zAEQi4EaF1ZfB0qrTkqHH27Q4r8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c5868\\-c6a6e75b\\-1612\\-45db\\-8d5d\\-2111817800c8\\-000000[\\/\\\\]+9VdyCTiGr899\\-Hp7EDTXWv_rRmY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458da2cc\\-3db11e0b\\-e188\\-4c9a\\-ac38\\-f00195f139f1\\-000000[\\/\\\\]+FBnwcS3ZOHl9SuWyUAUDLyGntJc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a826ab\\-09d55f20\\-25f2\\-4313\\-95e8\\-ceccdc5359f4\\-000000[\\/\\\\]+r65wpcTdks9ywn49UYZoeG7wP8k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc5a6d\\-a340196c\\-136a\\-43cd\\-a1ca\\-ee56919e262a\\-000000[\\/\\\\]+PKK5xjAENxRDUXywPNYezWOarnY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3fa0e\\-420337b8\\-3c9e\\-49d5\\-b81d\\-4b5122ab84b5\\-000000[\\/\\\\]+Z3c0MOw1bourv6TwboQKrkraVMg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582e0fb\\-50496e65\\-ea59\\-477a\\-b92a\\-e9a17e2f2933\\-000000[\\/\\\\]+fk1MfSWNSCqUY_EUaH3T1QOFoow\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457464cd\\-06a7e37b\\-618b\\-4c50\\-ac4d\\-29c1d131c940\\-000000[\\/\\\\]+DorTV3smSnIEGtP0R9bkkypQX8k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbb590\\-447d631f\\-9ddf\\-4d31\\-a341\\-bc5b8b6cc975\\-000000[\\/\\\\]+MYJP4l4l9xjO3t9HB5mN7z52g_I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bccc42\\-7de8e927\\-7940\\-4fb6\\-86db\\-33b5b0d5a613\\-000000[\\/\\\\]+gm50qMFLUzItqDtosKtkknNjLo8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1e1f0\\-cada301c\\-b567\\-474a\\-9517\\-479a88eb6ccb\\-000000[\\/\\\\]+dyz\\-8exq1w6C6nWO\\-QwCt7iq824\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a74d5e\\-f4a8df74\\-18b3\\-4b34\\-9b44\\-d8610d557646\\-000000[\\/\\\\]+c91bSRlPE\\-wF_mP5IMdrR6Z\\-Zgk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b98516\\-b4a52f08\\-ff94\\-4752\\-9169\\-9f5278e1a095\\-000000[\\/\\\\]+u25BroIqCMOQXWqnT6oQhpaIwdc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b78ceb\\-8f3366ce\\-7bb3\\-4fd5\\-8124\\-d80177859797\\-000000[\\/\\\\]+nEeeGTFjWyqZCRi59QiznTMCehc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c446f2\\-6fd6f2e1\\-4b5b\\-4298\\-8293\\-398d207b3420\\-000000[\\/\\\\]+ykyP2XlMIVco_DI_0sdgGdGcmfs\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924ac0fc6f\\-b98d6fc9\\-c862\\-4351\\-9ee4\\-758692ec1ceb\\-000000[\\/\\\\]+NfrVyW_JgoYmXMc98N_XC\\-I6Qdo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c30c76\\-035b2f54\\-eeab\\-41c3\\-b4ad\\-18dea04979e2\\-000000[\\/\\\\]+wgqW7C__btamF3OMpYTGAEufNJ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245749de4\\-f8a0af5c\\-5df3\\-4a70\\-8cd6\\-6f372a1e71ec\\-000000[\\/\\\\]+dJcd3jNFMGtNOY2mRdhM2uYfTeg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a43ff0\\-553cf7ee\\-00a9\\-49f9\\-a118\\-79c629c6c3e2\\-000000[\\/\\\\]+DODlMgF\\-BQ1kxwldI\\-HzDYKdtb8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458f8cad\\-dd7ec2e6\\-8ea5\\-4892\\-b065\\-87715b3fff28\\-000000[\\/\\\\]+WG6ic07O2LTXxd31NjLm7TlpWbQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a6ad49\\-73ec973c\\-a98c\\-4c5d\\-af3e\\-029ee47b6c41\\-000000[\\/\\\\]+RNx2ocsfE\\-o0VTjSQGZ7rVeqOwM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a30d87\\-93e58f40\\-48fd\\-4a50\\-b4ea\\-191a059ba2bb\\-000000[\\/\\\\]+o9jX4H7HsGMi7FAD8xdHVmhWKpo\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924b5a3344\\-a21c9294\\-ec08\\-4abf\\-84d4\\-13a9f612e484\\-000000[\\/\\\\]+3I3Snzx9TVWr228B8hYpVxMgWJU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458da2cc\\-3db11e0b\\-e188\\-4c9a\\-ac38\\-f00195f139f1\\-000000[\\/\\\\]+N9GDwPMmI9Hf9Rb7YyK6UuldJ1w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c01bb8\\-54786a83\\-dc26\\-42d3\\-a202\\-60cd6e24f214\\-000000[\\/\\\\]+A6u8nEt3tsXtqOmbnwgtXmNHwdM\\=394(?:\\?|$)" + }, + { + "hash": "ff6ff8d661113a2e630dac0cc75514a4be45496c859480a8dcaba315fb552df3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+in\\?from\\=$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458e47f2\\-209c5f2a\\-a081\\-4a0e\\-b937\\-993e1fb4b6c1\\-000000[\\/\\\\]+VA9dPY32vsCMhEvTCKS_YODFn5c\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245673564\\-99d2d5cd\\-1546\\-411a\\-87db\\-642c2a8f26f5\\-000000[\\/\\\\]+DSqPBq8JGYkMG3XtOv98nWw4BDc\\=394(?:\\?|$)" + }, + { + "hash": "32db49bc9798db2b8d826696db47a3338eff5a72840e19d8fcd5b8704154d5b2", + "regex": "." + }, + { + "hash": "ff6ff8d661113a2e630dac0cc75514a4be45496c859480a8dcaba315fb552df3", + "regex": "(?i)^https?\\:\\/\\/listopad\\-konkurs\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+vote(?:\\?|$)" + }, + { + "hash": "bd308101a5e44f94988862ae282035070b0e8b82c568781361645b42a92a95ae", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458e5e36\\-53b3df6e\\-43f3\\-4673\\-84e4\\-6bda6044d205\\-000000[\\/\\\\]+7kPREnyAqzbM7OSsvweXsdO08kk\\=394(?:\\?|$)" + }, + { + "hash": "a7c0c6c351cd0acf5574c5c5f1fa5eeda16f05be0a5a6a9ff5f322dd4f23dbe5", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459bb192\\-8cadeea3\\-da53\\-4f05\\-b5c2\\-6c56fe2b5ef5\\-000000[\\/\\\\]+iEmR9Z6vXSOfjy2YXoTJkZnidNQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458aac8b\\-d8d25a64\\-054a\\-44e1\\-967f\\-d16c1d92d0d1\\-000000[\\/\\\\]+YrxZzR7DISHnLeJiFWMwnVNVanc\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924aed0b5e\\-e2f6ed61\\-c0ea\\-4b81\\-a3dc\\-d4fc9128fadf\\-000000[\\/\\\\]+lP3s0zHp64tX16CJr7theRN9rMg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0de29\\-7a67f4d7\\-1a06\\-44bb\\-8462\\-d929907867e9\\-000000[\\/\\\\]+nSS4LnUqHVjEjb_zvSKVii_TN3M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c20d23\\-b7b8ac8f\\-899b\\-4330\\-931b\\-3f94c1bae1a0\\-000000[\\/\\\\]+VGy2gsK4MYcgMPmpPacBca319NM\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924ae574e3\\-6cffb4e5\\-111f\\-4d29\\-b9dd\\-bc2a2017928a\\-000000[\\/\\\\]+9kqekmNiUYEG8ErhEIzgrzFqVhk\\=394(?:\\?|$)" + }, + { + "hash": "68bdb2ac83fb3582263f83564ea663d1b64003aa7b60957b41247bc66af204e4", + "regex": "." + }, + { + "hash": "33277ca899896a18bfddcc358e3c02d2afa089b9e573ab2a247862b843e34308", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9970[\\/\\\\]+other[\\/\\\\]+restrictionIp(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a43ff0\\-553cf7ee\\-00a9\\-49f9\\-a118\\-79c629c6c3e2\\-000000[\\/\\\\]+ZNT23RFQkicqI1XJ_hFpFBp5rxA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ec87e\\-314f93e4\\-dd8d\\-43fa\\-bd60\\-5d23ffabdaf3\\-000000[\\/\\\\]+VC9v4s5XMQo9qpXy6q9MM9tBVaI\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+pub\\-7568765e07224e14a09292192160d3d5\\.r2\\.dev[\\/\\\\]+mail\\.html\\?email\\=candice\\@dbmlaw\\.ca$" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924af07536\\-4b49d444\\-fde4\\-4921\\-ab4e\\-3b326de2d90d\\-000000[\\/\\\\]+BKuJ5tNgd4AJaKIvhiv0XkwyG_o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457c1916\\-8d33ae38\\-e85b\\-43ef\\-8db4\\-a1a3c0aeae41\\-000000[\\/\\\\]+b2afgmXmbp1JDpPmtLzs_ofFad8\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924b5b37aa\\-b02e3785\\-7e21\\-48a9\\-80bb\\-a9f9365f02a9\\-000000[\\/\\\\]+q_MD4Xjwy8G5IzCwWjQfi9Db\\-XY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c17a7c\\-fb9b8b3d\\-36b7\\-44f7\\-8ba7\\-44f76716d9dc\\-000000[\\/\\\\]+nta\\-ss75y0mO73gm_8JHzGK0xYk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924584e1b3\\-b5af13f4\\-741d\\-46c5\\-9a4b\\-9b1e192197d4\\-000000[\\/\\\\]+f9R\\-fTAUsqVMJ\\-qGrBNOUWMvVO8\\=394(?:\\?|$)" + }, + { + "hash": "cec7960d01ea54ce44cbb2a074fde95dc7eeef45018d5f851157740fec70f18a", + "regex": "(?i)^https?\\:\\/\\/anshuman468\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb6efd\\-26efa163\\-2f68\\-4708\\-b875\\-69cb30e01d2d\\-000000[\\/\\\\]+9YGM3SNcOS1_F7K1JOm2Jkmqnpw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a432cb\\-3f69bb0c\\-64f9\\-47f9\\-b552\\-38f474370e5c\\-000000[\\/\\\\]+4gE8VgrsOm0VDCI7Q7zlGn5vSNk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c4d42e\\-3285da1e\\-9d2f\\-42aa\\-8ed0\\-3e82bfa9c71e\\-000000[\\/\\\\]+1ZSvLmG\\-u399aThxfI\\-gDA5EQok\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a318b3\\-d1567010\\-b032\\-4fec\\-9854\\-911527ccee79\\-000000[\\/\\\\]+ZPK8ZJLyB6EXiisgz1UE_F6Vjso\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3d58e\\-404e5a2c\\-ec20\\-4ca2\\-ae13\\-b90122fa92cd\\-000000[\\/\\\\]+KYPDV3ewWfnHKyRw_itHc_7W6vk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae168c\\-a3110030\\-e9ab\\-43b4\\-9ca2\\-3f4c48709c93\\-000000[\\/\\\\]+4ku8tSmsz4wRSk1w2HRijTR016U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457efb6a\\-2de20dac\\-d270\\-4c73\\-a319\\-0e72ca6546fa\\-000000[\\/\\\\]+PwnbsqRjMLXAxT785cVEWmhFIeM\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924aff13f6\\-6c89f0f3\\-34cf\\-4591\\-a7d9\\-9d45db1ee1b7\\-000000[\\/\\\\]+xvzcMx7PUQQas0ugKbI9bQYg1hw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924570e0a0\\-a05c9869\\-2b65\\-4354\\-8055\\-d7d1ca5c086b\\-000000[\\/\\\\]+KAs7PVVIoq\\-5KCueIk98Q1rnqKs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bccc42\\-7de8e927\\-7940\\-4fb6\\-86db\\-33b5b0d5a613\\-000000[\\/\\\\]+g4zV1kD3bwUBpQcecYZ6s0uxIFw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a7efb6\\-3443f1cb\\-8dbe\\-42b9\\-9e2d\\-6b5e8a8cfbbf\\-000000[\\/\\\\]+fjgFmW\\-rL9FZeyJhLVr2tfiJ1Sg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cf418\\-3bd90864\\-19a6\\-48c7\\-a773\\-cef7fd29b76b\\-000000[\\/\\\\]+33XffId28tOD8hqjmC5SccVX2g4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a826ab\\-09d55f20\\-25f2\\-4313\\-95e8\\-ceccdc5359f4\\-000000[\\/\\\\]+ciWJJIU5St\\-8fa\\-Mxuw11v4TPqs\\=394(?:\\?|$)" + }, + { + "hash": "bb94dc6c9c293c552236e358d2adb5b00b5ea4d2a061e767458f10a4c2ef89ae", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457fa9dc\\-d337ac41\\-9fc7\\-4014\\-8c64\\-193919858bc4\\-000000[\\/\\\\]+oZ0X3eaGZ7bqBoLoLuhjX63vI2s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b63f4b\\-90710cf6\\-d215\\-48ba\\-b208\\-b11be99bfcb6\\-000000[\\/\\\\]+zoFgegau1dXO_6UCaom_QCGSBo4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a14655\\-5eb94f4b\\-f754\\-489f\\-8094\\-4ef68469b721\\-000000[\\/\\\\]+9kCCTzWZNtONC\\-O8\\-4QnFiQaaEY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459ead6a\\-01c5b52e\\-fc90\\-4758\\-b62c\\-4842c2f00dd1\\-000000[\\/\\\\]+ej4OFK14FVn_GGM8avSYJ049Kqs\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13156\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924d7b27f0\\-83356437\\-7707\\-4c4e\\-9d0c\\-6987419be4a9\\-000000[\\/\\\\]+z_5P2LWEfQRghA8uIiQMQvPC6zE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b63f4b\\-90710cf6\\-d215\\-48ba\\-b208\\-b11be99bfcb6\\-000000[\\/\\\\]+l\\-evIUKOWJFiGhCVO3ej8kbrXbc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b9a2ea\\-e9d423eb\\-541a\\-48c6\\-8ee8\\-7bb1844c4174\\-000000[\\/\\\\]+6SrL1eUh7PGXf8ez8Va\\-Bc2Azt4\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924ad263b7\\-89f3b983\\-eedb\\-4104\\-9b39\\-3de5330a13a0\\-000000[\\/\\\\]+GdEjnfayrD9W0eeF4JcD7hqttQM\\=394(?:\\?|$)" + }, + { + "hash": "df57fdccbc82405866099652313c0d2d0659320a16670b837a12cc6dbc26d882", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mail[\\/\\\\]+en\\-us\\=f7136a1b9f07667d3652565787e81826[\\/\\\\]*\\?newsid\\=9581879880NjQ4YTc1NjMzNjNlYmEwYmQ0YTJmYmFjMTE4NWQ4MzQ\\=NjQ4YTc1NjMzNjNlYmEwYmQ0YTJmYmFjMTE4NWQ4MzQ\\=NjQ4YTc1NjMzNjNlYmEwYmQ0YTJmYmFjMTE4NWQ4MzQ\\=\\&email\\=qepbookafacility\\@oakville\\.ca\\&loginpage\\=1NjQ4YTc1NjMzNjNlYmEwYmQ0YTJmYmFjMTE4NWQ4MzQ\\=NjQ4YTc1NjMzNjNlYmEwYmQ0YTJmYmFjMTE4NWQ4MzQ\\=\\&reff\\=NjQ4YTc1NjMzNjNlYmEwYmQ0YTJmYmFjMTE4NWQ4MzQ\\=NjQ4YTc1NjMzNjNlYmEwYmQ0YTJmYmFjMTE4NWQ4MzQ\\=" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585e0b5\\-6bb21981\\-f1a1\\-4956\\-82ac\\-a424e1f57dc1\\-000000[\\/\\\\]+HKyttwntkyAiFAhsq1a\\-Igha1u0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245afb521\\-dad63fed\\-9904\\-4549\\-9876\\-408737baf31c\\-000000[\\/\\\\]+MlNvXH1t\\-ZmMAdwc7h698UfoJ3k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b87562\\-6b8308aa\\-aadd\\-4031\\-9cba\\-6c533699f27c\\-000000[\\/\\\\]+87YBzMRPFCitC7eXcfEQoNgog_E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458104cb\\-b138ca63\\-ae61\\-4581\\-92ad\\-f334870fbbb6\\-000000[\\/\\\\]+ww8S0UaUBSTK6gwV\\-Ebym_v2TdE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6be8b\\-bec5453c\\-36a0\\-44ae\\-8f7f\\-e1f74ad632cd\\-000000[\\/\\\\]+oc\\-xzm4OrzIj2v82U3Y6KMBojis\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458cb50a\\-fff04fc9\\-dad8\\-4bbb\\-ae52\\-f8014ad32af8\\-000000[\\/\\\\]+zsqTzPY\\-nNDM1s7_RoXJPI82aJI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dddd9\\-90927454\\-16c8\\-498b\\-9c8a\\-8a39a7b0a64b\\-000000[\\/\\\\]+hTboff_vJKSBi\\-6pllPn1s5d3Ac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457c1916\\-8d33ae38\\-e85b\\-43ef\\-8db4\\-a1a3c0aeae41\\-000000[\\/\\\\]+20dhY7oD3SdTv\\-CjOciPEBDgJCg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245afb521\\-dad63fed\\-9904\\-4549\\-9876\\-408737baf31c\\-000000[\\/\\\\]+x5M5aw51l1BKzqOGw_wNHkBEuCk\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924b85a4e9\\-980bc6c9\\-2db5\\-4b4b\\-9c43\\-81ce9cd73ca2\\-000000[\\/\\\\]+WZD4olZLcB0mPpXbhfWcdHDt\\-GY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924563cd88\\-b5bf5700\\-7985\\-4217\\-bbde\\-756b51af888d\\-000000[\\/\\\\]+SIWbTg5EXl01\\-\\-bHGfKYUq\\-0U_4\\=394(?:\\?|$)" + }, + { + "hash": "43fbe57898e7c8737f88daffe509c93037daf1f5399497a57df3c7baf24bc70f", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c85426\\-87cd976d\\-fe7e\\-4974\\-8d11\\-c2a339264198\\-000000[\\/\\\\]+m7fxd3JVH0K\\-DL9nh9Swq95CSj0\\=394(?:\\?|$)" + }, + { + "hash": "3a95ad1262d2b84698f88c64215058c7509b8513353ea2a6af45e44c2756d6e9", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457ba72b\\-269fb1a0\\-b974\\-4b7a\\-8155\\-f7a0043db2c9\\-000000[\\/\\\\]+zNbYanZQNwQ86VPF3\\-tNtdnpIlk\\=394(?:\\?|$)" + }, + { + "hash": "0d11f2b6a1feef960062b8fb7836185593529aac096c13b4a4766ce8138d1397", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ba6d1\\-794fbc94\\-be30\\-44ff\\-975d\\-8f2ff64914de\\-000000[\\/\\\\]+B3dLnlLnzgwbc_XLLhU7NKNfnY0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457efb6a\\-2de20dac\\-d270\\-4c73\\-a319\\-0e72ca6546fa\\-000000[\\/\\\\]+6SoUsXCpL\\-GAFpsbrKOagoo6e\\-U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e1cc5\\-9f618f49\\-9f48\\-495a\\-a5ba\\-b3bcf165693e\\-000000[\\/\\\\]+y9ToBlA38A47DE32myiKPd0ksN8\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924aaffd10\\-14cb64cd\\-3927\\-4d2a\\-b39a\\-e7005017f1e7\\-000000[\\/\\\\]+7Xj8B\\-Gm050bACt3At6_pM79FpE\\=394(?:\\?|$)" + }, + { + "hash": "e6fbb840eaf43550afd1294cd7348e362490a818419c63ad27e60b2d7256cdfa", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b23f98\\-0ff123e0\\-52b4\\-469c\\-98eb\\-aed857c0cbdf\\-000000[\\/\\\\]+pM9txEFaVJIuYc9hXIcpQ8wqu60\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f8cad\\-dd7ec2e6\\-8ea5\\-4892\\-b065\\-87715b3fff28\\-000000[\\/\\\\]+1TNVvkvpXzZCa3dr3nLvTIEoaTw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b64171\\-feea7a22\\-b9b6\\-4122\\-946a\\-7875502df671\\-000000[\\/\\\\]+ARIYlowdz8jWMx5MA6agedWozY8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245965103\\-160fc1b7\\-a48c\\-4b72\\-b1ce\\-1fa02006722e\\-000000[\\/\\\\]+FrUugUcral5JRTz6V4VT3lFZDp8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457fa9dc\\-d337ac41\\-9fc7\\-4014\\-8c64\\-193919858bc4\\-000000[\\/\\\\]+WPQnwzrB6BPoi\\-ZjKG714vX3o8k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572a5f2\\-ce32b8b6\\-1bb7\\-46fc\\-a4de\\-eb9a53d5fb7f\\-000000[\\/\\\\]+tFygAfSsilshnZIgrkYFo8q5t98\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1a1d5\\-c1af60e9\\-5e55\\-4b8b\\-b3ac\\-ba297403053b\\-000000[\\/\\\\]+6xmEdheTwU2gLCui9iaKR\\-qoIeY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455baaac\\-3a77f315\\-1f18\\-41cc\\-9d75\\-3a0bca1dc5b2\\-000000[\\/\\\\]+fqXCnUa6F_qZp8U5dw\\-KyucWFOY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924563cd88\\-b5bf5700\\-7985\\-4217\\-bbde\\-756b51af888d\\-000000[\\/\\\\]+lh3S8w48J8r1dgXNmynFjjzSyUc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c446f2\\-6fd6f2e1\\-4b5b\\-4298\\-8293\\-398d207b3420\\-000000[\\/\\\\]+YfN4XvqPCv2X5MYgQGqxhQofEjQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f18f1\\-da4de313\\-989a\\-40d6\\-9abd\\-94c5730912f5\\-000000[\\/\\\\]+e5jnmX6Q2UOg0JYQWmlSQncq4JQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245763efe\\-59f315d5\\-0b39\\-486b\\-9b24\\-cd1608c9aa60\\-000000[\\/\\\\]+fz_6AQFXXABHcsRcNqtk1nIfKb4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b8ff29\\-3763bc51\\-e189\\-47a9\\-b240\\-ea80cf4271fe\\-000000[\\/\\\\]+J5r45NT9a_yjv6XUg2N3QjMXQAY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245965103\\-160fc1b7\\-a48c\\-4b72\\-b1ce\\-1fa02006722e\\-000000[\\/\\\\]+JoOM8sUvQ0dukv_69tyzpi7vmwI\\=394(?:\\?|$)" + }, + { + "hash": "ce21a86c6a8631c393acf216ed23da866dc1706a22cf98668d3972960dc26ed6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b8ca1\\-94948206\\-21ce\\-4f2f\\-a751\\-96624a3a8e2f\\-000000[\\/\\\\]+1tb4wxfa0frfQw1Xsk0ilR0gv_A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457e06e2\\-d2aed238\\-bed0\\-404e\\-aced\\-d1adc3362bdf\\-000000[\\/\\\\]+bfYI5_86f4E1NG_A9HgA5TxU1r4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459ead6a\\-01c5b52e\\-fc90\\-4758\\-b62c\\-4842c2f00dd1\\-000000[\\/\\\\]+PlnbAGhHXJ_8rQ5wBTaS7UlU1SM\\=394(?:\\?|$)" + }, + { + "hash": "06baba00d2fd67dd5fd6ffc4d6eeabf960770c90adb75dcb3186a6947fb2c73e", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594d243\\-4a5faef6\\-1105\\-401f\\-b572\\-6194c69d9a24\\-000000[\\/\\\\]+pfNIeLxej_CCVzkJtjAv7JjClU4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457464cd\\-06a7e37b\\-618b\\-4c50\\-ac4d\\-29c1d131c940\\-000000[\\/\\\\]+XVrW80pXaTnFL8bQtrkJk_EmyqI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c319b5\\-4690b019\\-2ab2\\-48ea\\-8d0e\\-7a2974469723\\-000000[\\/\\\\]+p\\-7Y8sM\\-j\\-sqGNPb1XfUavHVmuE\\=394(?:\\?|$)" + }, + { + "hash": "c3397789218b9accaed6088402d063c72f072718cff96c19b31a7ce2d83d4694", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458a553b\\-68abef71\\-12a6\\-424d\\-a751\\-bf6a338503b5\\-000000[\\/\\\\]+wYUr1uiHBJwj5OxZxfaQNFUmETM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c14ac2\\-27110076\\-d953\\-482d\\-b385\\-4f05092de03d\\-000000[\\/\\\\]+3xti2pYydMuPEnL6WM8BM6stxBo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aac94a\\-fde2a3a7\\-3619\\-4bb6\\-9e5c\\-0ecc881e6043\\-000000[\\/\\\\]+gw6CKPRslMP00XYmv4L2WtJzU1E\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c01bb8\\-54786a83\\-dc26\\-42d3\\-a202\\-60cd6e24f214\\-000000[\\/\\\\]+o28v3cKMX6lqcoesBZNZi9OyE1o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458dddd9\\-90927454\\-16c8\\-498b\\-9c8a\\-8a39a7b0a64b\\-000000[\\/\\\\]+f_E1Ry_K5csJXqpZbqPM8euh\\-gs\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+pub\\-7568765e07224e14a09292192160d3d5\\.r2\\.dev[\\/\\\\]+mail\\.html\\?email\\=namseo\\@daum\\.net$" + }, + { + "hash": "41975131c3db888b5cc95c62e2e8b96342f78b536dec7726403732721c5f57e7", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c8823e\\-2ad22931\\-3cfb\\-43be\\-b85d\\-3b3ae6c2a028\\-000000[\\/\\\\]+3_10vj4gukPQi0UPKaxe7ieJRwc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c5868\\-c6a6e75b\\-1612\\-45db\\-8d5d\\-2111817800c8\\-000000[\\/\\\\]+pT\\-vIxAK4rJzgluVsUQel2ClGeI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+noiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b28bab\\-1ae8e0a0\\-b924\\-4c98\\-89d2\\-108edaecaa30\\-000000[\\/\\\\]+4Czvb\\-FbUw\\-JhF_ePezQSraoRIA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c8823e\\-2ad22931\\-3cfb\\-43be\\-b85d\\-3b3ae6c2a028\\-000000[\\/\\\\]+oeNG3NBdioyKuhdyxaOPF6_N4r8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582e0fb\\-50496e65\\-ea59\\-477a\\-b92a\\-e9a17e2f2933\\-000000[\\/\\\\]+LiWmn_Lc6qgjRF44Vbxz7MoI7LI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924587c6d1\\-768d76df\\-22df\\-4022\\-a986\\-577364a18448\\-000000[\\/\\\\]+ngfn4mdI2HHAtzShCg8FRweT4Pw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924593fab3\\-dd6150c7\\-833f\\-4cc0\\-8e76\\-536f1fd7b003\\-000000[\\/\\\\]+2uYxiZxT96I\\-VgpZm_xGDhcMQs0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c85426\\-87cd976d\\-fe7e\\-4974\\-8d11\\-c2a339264198\\-000000[\\/\\\\]+dxbOjJFVmI3Fw2h0dCgq1qvBl1k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245794f58\\-d681c47b\\-2b7f\\-4c7b\\-8ef3\\-2ad694005215\\-000000[\\/\\\\]+vS_wuVXA5EjLsK9oupf0U3XABC0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458f42c1\\-857c3d43\\-ea9d\\-40e9\\-9e23\\-2151eedffee0\\-000000[\\/\\\\]+lsz8MCIy3mVEsEgopwN1NWLOl7U\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3e128\\-0bbdd974\\-7af1\\-4f76\\-8745\\-b0210ccc39bf\\-000000[\\/\\\\]+9oiQJ99ZaJr2R4lIRByyCvr50QA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf2557\\-65118355\\-4441\\-46dc\\-911a\\-eafbed44a363\\-000000[\\/\\\\]+m07ZUIp0PnWTxUbW7QXVjKDiHkg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6be8b\\-bec5453c\\-36a0\\-44ae\\-8f7f\\-e1f74ad632cd\\-000000[\\/\\\\]+rLr0osaYsz_BucnMcyf\\-vdROUjI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458aac8b\\-d8d25a64\\-054a\\-44e1\\-967f\\-d16c1d92d0d1\\-000000[\\/\\\\]+UWsvMzUYkVV_8SKIIhYFuPln2ss\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573d79c\\-da30efea\\-6358\\-4b3f\\-967e\\-c40a26715d13\\-000000[\\/\\\\]+J9gpID_oPrMPWKKhVFZRdPlJRHw\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457ba72b\\-269fb1a0\\-b974\\-4b7a\\-8155\\-f7a0043db2c9\\-000000[\\/\\\\]+eqbfviYdJXUDtdaM3fgBOWqNlds\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b11961\\-6064cb8e\\-f593\\-4591\\-a443\\-447d3d3cb6a1\\-000000[\\/\\\\]+QUiK_yavDze6N0\\-CSPpXGNrjqWU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924587c6d1\\-768d76df\\-22df\\-4022\\-a986\\-577364a18448\\-000000[\\/\\\\]+KJOxg0MIZ1QbKQvwTZEkdFmvgSM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459c9a04\\-eb2a524e\\-1547\\-4c60\\-b1d3\\-7367c4f4e4c5\\-000000[\\/\\\\]+7VpvyoHqrKPRfGgBchMv9GXqsJg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0d847\\-e2d9d271\\-a1bd\\-413a\\-8984\\-a4b004b437ba\\-000000[\\/\\\\]+eKTdccLKwyt2LOcNV\\-Fa1N\\-BDSQ\\=394(?:\\?|$)" + }, + { + "hash": "ed57e95cc3a46f887c29d0e3ffde5dec150c784bf04c01763e2a631a9b28e0e5", + "regex": "(?i)^https?\\:\\/\\/parth150403\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924ba141e0\\-86774b58\\-b57e\\-4f2a\\-94bd\\-7d7d4e1bbe9b\\-000000[\\/\\\\]+5yeEoTBLbhvg8UeRinHg_86lD5I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b98516\\-b4a52f08\\-ff94\\-4752\\-9169\\-9f5278e1a095\\-000000[\\/\\\\]+UuEe9ILAD\\-U1EBUrTCGDHUA_JDk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bcd54\\-36404b6d\\-2deb\\-4eb6\\-b979\\-b05c8824b586\\-000000[\\/\\\\]+E2YWwMaRC3F2OuvUGd0m7tUveWA\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924b7bb779\\-5ad9fe97\\-e93d\\-45a3\\-98c4\\-dd79799cc903\\-000000[\\/\\\\]+3D_257Pv_W_V1WAhPDA6gmeFrac\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a74d5e\\-f4a8df74\\-18b3\\-4b34\\-9b44\\-d8610d557646\\-000000[\\/\\\\]+K88_znYy169EsTY9c4EKLPkVbnw\\=394(?:\\?|$)" + }, + { + "hash": "807abc13017c8c09f9e3821af9cca90eda06a42ea2fe7e61adcc37d4ca91d66c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c03e77\\-67fc3e97\\-80c3\\-4f50\\-92a6\\-1425cf4fdd8b\\-000000[\\/\\\\]+mLW3ll4_5yL4xIigP\\-_jO3pIafg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c3d58e\\-404e5a2c\\-ec20\\-4ca2\\-ae13\\-b90122fa92cd\\-000000[\\/\\\\]+7SPsIfjXWryUDF0XLMjDLG0p1b8\\=394(?:\\?|$)" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+lbkO(?:\\?|$)" + }, + { + "hash": "114ded4f11e27781ef15cc988b60fec2b2905a5bd8da98001aeae0fc5d96b6a9", + "regex": "(?i)^https?\\:\\/\\/hotvideothailandsx\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff6ff8d661113a2e630dac0cc75514a4be45496c859480a8dcaba315fb552df3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?yo3\\=85\\-101$" + }, + { + "hash": "3d8a32545cf246e033c05c2329f1712b4406759508e82c49695bc4536583f53b", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245777083\\-4eec9646\\-2a3a\\-4769\\-a06a\\-3f2598c1d5ca\\-000000[\\/\\\\]+UiOTqImiK7pb2bwss6zWxeBX1dM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bd630e\\-7a907108\\-5648\\-4a8c\\-b4b1\\-c1d7a9c64af3\\-000000[\\/\\\\]+jkcRRkkFMPvg8hRXKJMq_9d2xdA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924593fab3\\-dd6150c7\\-833f\\-4cc0\\-8e76\\-536f1fd7b003\\-000000[\\/\\\\]+Es3AtRzPAM932HHEgHmpl29Yx1I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b28bab\\-1ae8e0a0\\-b924\\-4c98\\-89d2\\-108edaecaa30\\-000000[\\/\\\\]+4Czvb\\-FbUw\\-JhF_ePezQSraoRIA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae168c\\-a3110030\\-e9ab\\-43b4\\-9ca2\\-3f4c48709c93\\-000000[\\/\\\\]+e92BJ1Tz_I6s_42OEoLnHH4e0tg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245777083\\-4eec9646\\-2a3a\\-4769\\-a06a\\-3f2598c1d5ca\\-000000[\\/\\\\]+dswqBoDSXjs\\-bcVPxzBCF7c9rIA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bd630e\\-7a907108\\-5648\\-4a8c\\-b4b1\\-c1d7a9c64af3\\-000000[\\/\\\\]+dG6NpLn6_j9liCK5ZlDTXj6i8dU\\=394(?:\\?|$)" + }, + { + "hash": "ccef5b3baf0f1241bea9451d066121f81d90f1b8bb76155d9d23be9d98f83e9d", + "regex": "(?i)^https?\\:\\/\\/webmail\\-acessar\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3e128\\-0bbdd974\\-7af1\\-4f76\\-8745\\-b0210ccc39bf\\-000000[\\/\\\\]+0sewoEaHEHMPJIno5ehcmeJhFPg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c3ea8e\\-0a4aae3a\\-34cd\\-4f67\\-b9fa\\-35221c848e2c\\-000000[\\/\\\\]+E02phTm6F1wsHgPd1pwdGB0QXoY\\=394(?:\\?|$)" + }, + { + "hash": "9dca204f32d99e033c29b8a7a022d2174671a68a47c0f27e79b62a66eb893c45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?58a65\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569990f\\-33812e9f\\-30b3\\-4f9f\\-b412\\-aea8c7d51d8a\\-000000[\\/\\\\]+H7zUtKPsiWkore3zNqNpXnn9RuM\\=394(?:\\?|$)" + }, + { + "hash": "dad3c258e4629d9fcb211de2a60d9c26c398297eaaa5088dc69f1ea12beb54aa", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569990f\\-33812e9f\\-30b3\\-4f9f\\-b412\\-aea8c7d51d8a\\-000000[\\/\\\\]+D3fZLPigNh6nHtrWpExVRZ0fvxY\\=394(?:\\?|$)" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+lbM5(?:\\?|$)" + }, + { + "hash": "d49d0d34384a791bdfe52329c3b5aa4db89325241f7d5f12fa8d4b13f1413138", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register25132(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b21145\\-7496dd21\\-568d\\-47d5\\-ad0e\\-070d10aae1ed\\-000000[\\/\\\\]+jl9PruS2Egw06wmhRPpPMNlqN4g\\=394(?:\\?|$)" + }, + { + "hash": "8a019489e160cce5507d81ff78330366c73f249a621c3e836d655cc41d434574", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b5990b\\-cfc8be0f\\-e080\\-4fd1\\-9692\\-0c183270b0ca\\-000000[\\/\\\\]+VqexaCJGJ3rIiWY28UleOzUuqMo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbb461\\-8bd0400e\\-6526\\-4003\\-bef1\\-eee2d8fdb014\\-000000[\\/\\\\]+zuiwXC2maMLwxRXKMpepSStQJUI\\=394(?:\\?|$)" + }, + { + "hash": "0f774aaa0a38f82eb1785a5561fa743d2f5c2534781eb24b226aed108700e133", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "384c7d73c8197e2e0888ec55853384882351bdf770e099f223700bf4e650588e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62be0783e426b95b81fb70d3b9f803541631806be5b4dfbb82ee57216ccba0d9", + "regex": "." + }, + { + "hash": "4cb292af1cc9835a713f510d72018aa07c2288b3f43ac93c5617143929d6c3fc", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "54d4e895b3200f670a5ead194d89d220f4cd03c97708ffcf583545ca8b60ef42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cba222\\-ce493a84\\-e26a\\-40a0\\-a634\\-7ebf228d86e8\\-000000[\\/\\\\]+4hGYaT1Nj5eAjMm\\-7uNdc3Tep9s\\=394(?:\\?|$)" + }, + { + "hash": "4ca470fe80d2a80e7779eaeb984dfd17dfc0bcc48e889744321471829e676cf2", + "regex": "." + }, + { + "hash": "7553aad31cedf4abe40e1b164733c8d73444fdaa6b05a832dc4db4fe11c0c251", + "regex": "." + }, + { + "hash": "879a5990d8ee76560097af64c82962c719450f9d1b3f435f4232bb098a57338d", + "regex": "." + }, + { + "hash": "7e81e7be2cb56ecc1a6769ac6f44c2943b8037e1a042b63b7d1676b200ca4bda", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?__noscript__\\-\\=1$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flianuweuiwenncywiendimwd\\.com[\\/\\\\]+1[\\/\\\\]+0101019232b16bac\\-6a79a468\\-8bf2\\-42c1\\-a036\\-5787e41c0212\\-000000[\\/\\\\]+i649JCJh4LoFOu717AAMQwIX0GM\\=394(?:\\?|$)" + }, + { + "hash": "899105e7ef781447da8c10bbbd5d7b3e629e1c445b45161788b2f0ef7c72906a", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a10525\\-8c4656e6\\-0c21\\-4d3e\\-b915\\-1cb3c85c92ff\\-000000[\\/\\\\]+F7lDq3eBuNDVsoFDwGWPMDEOqkY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245977825\\-e286c547\\-1521\\-4eaa\\-8580\\-715b78796e56\\-000000[\\/\\\\]+HEwXXQQSZBeiFBWGOacIzWo8bTI\\=394(?:\\?|$)" + }, + { + "hash": "e20f8ef017445a41dacabc02345649367aa31597523b4e44a89f331203e47025", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245977825\\-e286c547\\-1521\\-4eaa\\-8580\\-715b78796e56\\-000000[\\/\\\\]+DT2psgQrdV4xOwAPsRUL6UVt1Qc\\=394(?:\\?|$)" + }, + { + "hash": "abb74fb4fb491261d2395198ccd793464f82f944eea79fe3ccbf8ff201821fd4", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595b0a3\\-97c54f52\\-af61\\-42fb\\-99c4\\-d5e068f1cdec\\-000000[\\/\\\\]+1qMIT3KDsFesh1mICiTAGdpap1c\\=394(?:\\?|$)" + }, + { + "hash": "eb54ad106fab725d716eda0b5c03401b693426320f7c4a72d6962b33681cd7bc", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7e81e7be2cb56ecc1a6769ac6f44c2943b8037e1a042b63b7d1676b200ca4bda", + "regex": "." + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+lbM5(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1104a\\-af0719c1\\-2e2a\\-4d1d\\-aeda\\-4942092d73b1\\-000000[\\/\\\\]+l0YikY0nZ10z6BvZgrHHCENwE74\\=394(?:\\?|$)" + }, + { + "hash": "d0d6ddde57669f8a60028bb12ae3338e685fdda3738b50d9c68952522d23c080", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d4cb528d114eebc95460e0e631f61f52c2e68580e3ae07833a0c0ae22fd47e5d", + "regex": "." + }, + { + "hash": "1924d780b57b02ee1cee55778158ea6f8560daa879a093b481437ec2722a01d8", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "75b1a726360ef3a880a36440eb5158b11818afaea725eebe1493a8cc1cdd1184", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b21145\\-7496dd21\\-568d\\-47d5\\-ad0e\\-070d10aae1ed\\-000000[\\/\\\\]+4PymZY_QQ\\-L6twCydT1nZs1Sg9w\\=394(?:\\?|$)" + }, + { + "hash": "ce431843a39b495a0e845fd98d530326b806444c8fb23a47a1bd2144b5cd2958", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c98fe5\\-323801d9\\-b41b\\-49a3\\-b0ab\\-6dac226bd327\\-000000[\\/\\\\]+_6ZNMhs3fZVU\\-ngnCtuiqquFXLI\\=394(?:\\?|$)" + }, + { + "hash": "09733016eba3bec1efea0a30e27f4b61af837b41decf69a0d96f2b726039e405", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b5990b\\-cfc8be0f\\-e080\\-4fd1\\-9692\\-0c183270b0ca\\-000000[\\/\\\\]+Lkfahg8fGO_ZKa3TB8hdJ7VL5BI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a04f32\\-a68cb8e2\\-82c9\\-409a\\-a9b0\\-9d6cda0caae0\\-000000[\\/\\\\]+Vru8VjcNTCxbYQk2oSENdOguY14\\=394(?:\\?|$)" + }, + { + "hash": "4eb30afda5fd7d215fd29fbbdd89480b1e80d7688ecd48a970d094274053ebb3", + "regex": "(?i)^https?\\:\\/\\/pictureone\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+in(?:\\?|$)" + }, + { + "hash": "61536bbfeb26de2835d43dda3223fb56a3145d634f598c9fdf4dbebb929945e5", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ec8315236c1127c992a6a62e115eeeeef7f25f0b02a7b394a908c0ba7e6806cb", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1104a\\-af0719c1\\-2e2a\\-4d1d\\-aeda\\-4942092d73b1\\-000000[\\/\\\\]+uE45AJKQaPE0HkrAMMXmDulOI8s\\=394(?:\\?|$)" + }, + { + "hash": "d1e5687844db6fa49ab53548f20bc42530bf48678b103656a0c7cd4178e3cdc4", + "regex": "." + }, + { + "hash": "7b3efb3499166dd3bde6582b75ef3e2864e4ac7b2b9a278f4131426b0ff5fbbf", + "regex": "." + }, + { + "hash": "d2fa9768d418edb9b3ea2af98940d0519500442b78e52c839ac9d818ef1d8069", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+h5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a10525\\-8c4656e6\\-0c21\\-4d3e\\-b915\\-1cb3c85c92ff\\-000000[\\/\\\\]+L20ohGEvjdomOJ\\-ikd46GpT0PSM\\=394(?:\\?|$)" + }, + { + "hash": "e5880873a52140a1caa5992abcd0d6910c36d18ab56b49abd7eb0353f22e8ea5", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5b5e1f00755266651bfa8077141eb005ce9ab7edcdf42b574c100f35eba35ed3", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{6}\\.necessarysun\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "d8a52f6fd49018285a3a97da83d167bf417f4428a059583bc45106b24b92f8bc", + "regex": "." + }, + { + "hash": "4eb30afda5fd7d215fd29fbbdd89480b1e80d7688ecd48a970d094274053ebb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?6u\\=77\\-65$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a04f32\\-a68cb8e2\\-82c9\\-409a\\-a9b0\\-9d6cda0caae0\\-000000[\\/\\\\]+Vc2e9Nnb0Rt6VAMay3RLSI0p4os\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a8c09e\\-b54d7d17\\-8f7e\\-4054\\-ba12\\-28cc0167342c\\-000000[\\/\\\\]+AOo0uEzpYxy4rGPTqAMj3vHr1SI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a8c09e\\-b54d7d17\\-8f7e\\-4054\\-ba12\\-28cc0167342c\\-000000[\\/\\\\]+S7YahlRSRmbLxqznua9NHP0uQrM\\=394(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fWGNZgbr2rZAtLLfk[\\/\\\\]+r9hCAo5N6tJS(?:\\?|$)" + }, + { + "hash": "cd898401fd5c357d5c58d1a07244e12a14f8abd7072bf0992afcd7846c4b2989", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc5227\\-80f88290\\-5660\\-4a6e\\-b273\\-073f2719ffc5\\-000000[\\/\\\\]+5jYI3jZjHINjRzTaMxXUl4veJqI\\=394(?:\\?|$)" + }, + { + "hash": "d69145eb5796a33c9259b16e52a947e8750cd7d585ea83c7bef2d3c6f0af6d4c", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbb461\\-8bd0400e\\-6526\\-4003\\-bef1\\-eee2d8fdb014\\-000000[\\/\\\\]+UZOCfsN5s09c1phrzm_76JElB2I\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc5227\\-80f88290\\-5660\\-4a6e\\-b273\\-073f2719ffc5\\-000000[\\/\\\\]+yjJ2oGuNj\\-a\\-gUiKEAg6tvAd8KA\\=394(?:\\?|$)" + }, + { + "hash": "79ee0adb8e61a903074a9a19c768a167c35f91577f593306f645f4a9fc277357", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4eb30afda5fd7d215fd29fbbdd89480b1e80d7688ecd48a970d094274053ebb3", + "regex": "(?i)^https?\\:\\/\\/pictureone\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+vote(?:\\?|$)" + }, + { + "hash": "bb99b49a4e2df6baa3fbb6c237320793c5ab949d80c5f62106aa1783a5db04b4", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b1fec98b4e0549ea79641dbd75701ecd4c44a45ed8b5fb0529e9b38a0a623e74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register25132(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c98fe5\\-323801d9\\-b41b\\-49a3\\-b0ab\\-6dac226bd327\\-000000[\\/\\\\]+mx7SHeoMED35xmwfT9jGC8JRh_c\\=394(?:\\?|$)" + }, + { + "hash": "7b437948e7c05d5b800ea77146cfd871877097d477596867e3af7c44032717c7", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a90ee12a4c3f7e73611ac7ff08f9328ad69a99687f3f9e1bc1799d28a6f272c5", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595b0a3\\-97c54f52\\-af61\\-42fb\\-99c4\\-d5e068f1cdec\\-000000[\\/\\\\]+VP8nmY4GphQJlwWAzXnzuZUPlaU\\=394(?:\\?|$)" + }, + { + "hash": "1bf056b4f71ec2cbd10482190e89b7a7131c077d80afdde8ea694ba0e8bb1f3f", + "regex": "(?i)^https?\\:\\/\\/sd33211\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f7cc009c71c2eb8a57e99ae449f863d470e441aeb1fafe0acf05adee5640e818", + "regex": "(?i)^https?\\:\\/\\/www\\.candapost\\.20\\-93\\-6\\-250\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "54d4e895b3200f670a5ead194d89d220f4cd03c97708ffcf583545ca8b60ef42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+lbD1(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad4c93\\-bbea927f\\-40f5\\-43b3\\-bbf6\\-944f183107a4\\-000000[\\/\\\\]+HlxfarM5qy\\-mRJhMpYH8sAIRq20\\=394(?:\\?|$)" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+lbD1(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dqp47a9PYPgStwv96[\\/\\\\]+SG3a5Wa2TL7g(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924563f73a\\-1fece507\\-e63e\\-499f\\-977b\\-ecd2f69415f7\\-000000[\\/\\\\]+tt6aGBupPy9aMrryrAou6tsuG8A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575d7de\\-ca8ab75c\\-88b7\\-4fe3\\-891a\\-4bb36fb583a1\\-000000[\\/\\\\]+HFGP1tFXkF6sJdvrqlwjwgW_gJo\\=394(?:\\?|$)" + }, + { + "hash": "aed50ef24d0da6b7ac2c16d93ebaa085049e0460c43671bc785eee9ef695ab05", + "regex": "(?i)^https?\\:\\/\\/loginnetflixleiojfioje\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245978781\\-f602ff5e\\-e5c8\\-4dcb\\-b7c4\\-5a7337351050\\-000000[\\/\\\\]+iv7aeYNdAc\\-do4Fsae543kh\\-C1c\\=394(?:\\?|$)" + }, + { + "hash": "ba006139f2705a35746f6ef3065391ee821d97bfa55bc73c8fac2a5321bf0468", + "regex": "." + }, + { + "hash": "5a80e6042eb1af14a06a54045962d1ffc3b028c41919dec240351815d5256101", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c12c52\\-b038f411\\-3c56\\-4772\\-96ee\\-71e83fa2074d\\-000000[\\/\\\\]+AvaGt1ZBokZ4QvTivzM7sFL16sM\\=394(?:\\?|$)" + }, + { + "hash": "b1357912a16901d90004c1b433a9e899ec21e466b2438da46eca62d3ffbc7f95", + "regex": "(?i)^https?\\:\\/\\/rblxxv5\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0cb3db4e7defa37e3c460d5a81cfe066cd6f2748478638b0d50dd0ad7f5338f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p[\\/\\\\]+privacy(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457979e1\\-befe266b\\-bc04\\-454f\\-93ed\\-f635a315ff0d\\-000000[\\/\\\\]+4aITqcr7UFgcMzdl00mGkd8mWc4\\=394(?:\\?|$)" + }, + { + "hash": "7f9bd7088099925dedaedbd9c671b2bb98bc91dad1d822b068367c0cbc79d860", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?usc[a-z]{1}\\.umadnped\\.top(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456de9cf\\-5b663514\\-02c3\\-419d\\-83ce\\-08777a5db77c\\-000000[\\/\\\\]+z8wbxTGy5IJVgGMhWBE\\-O1jvxOs\\=394(?:\\?|$)" + }, + { + "hash": "0b00a997040f3fa3f17cd6f2b4326c280d3e1ce1a8bb91774b03f1bb8ed8ab79", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "80341892c0715d83090a3511b17f891506c0132bcd0d4870334a9314ee69d7d7", + "regex": "." + }, + { + "hash": "d342ee0cc54e26dd22ea1583107ecb1893fed1870bc4b470ac6e77e4dd591de9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+otp6" + }, + { + "hash": "9ef3f7bf4c49eac4dba926366f7c06cde63edc7b766bef7e7806954c14ab3053", + "regex": "(?i)^https?\\:\\/\\/loginnetflixleiojfioje\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ae4ff3a133ce1e97d1d8879d331c121312ec433d2a3beb5ae5a405aae3f128ca", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b74f7\\-9fe3adfc\\-08be\\-4b67\\-957d\\-94e33661ea14\\-000000[\\/\\\\]+pqlDRlmCWLSpUEZbVtSLh\\-ggD9U\\=394(?:\\?|$)" + }, + { + "hash": "8a341fb087658330033317087fcd460b715124c5d39aba1f221441060635d031", + "regex": "." + }, + { + "hash": "2baaf7f5d9cbb418356a927e8e84aa3fc54ff4ba90edb2398cf3dde4346236c6", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245caba81\\-f523df40\\-2701\\-4072\\-ad16\\-55c6d3602d83\\-000000[\\/\\\\]+4Y0KbVt4PlLxeO0UvcxKlpqL2bI\\=394(?:\\?|$)" + }, + { + "hash": "de9a6d27895e9923df603c91c3c3e6be4e28bc581f442ac293273bd9876339ac", + "regex": "(?i)^https?\\:\\/\\/trhrethgrehg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924580358f\\-3cd34c6d\\-72f0\\-4194\\-bab5\\-aaf8856d2163\\-000000[\\/\\\\]+xmpBykBRuiorPUX42uS9rT1mAE0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bae15f\\-2856c311\\-3a0b\\-4aec\\-9213\\-b81223b1f5c6\\-000000[\\/\\\\]+dppGNUl6ndNaSVpYCO1\\-5lykpxw\\=394(?:\\?|$)" + }, + { + "hash": "b04441bd5727e3eea48e13426eb56f564c46001bda35ecd226850570a08e8f18", + "regex": "(?i)^https?\\:\\/\\/trhrethgrehg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "67108cdf6fad25f00d0dcf5bcaafadf3ebad7037ff44c5e5ffa07a93518d68da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+otp6" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924595a1e0\\-74fedf09\\-583f\\-4b5f\\-b1ed\\-ec053685bd65\\-000000[\\/\\\\]+iX9aTX_ovrIouUfkIDYiQul\\-3xA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a379d6\\-f69e69b7\\-7d17\\-4abd\\-a42a\\-a1ad938feafb\\-000000[\\/\\\\]+T8jry\\-SJcKfjBYht0xq29U1Rmz0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924573050e\\-fae8f3b0\\-1be5\\-4d12\\-ad35\\-4830fcdd260e\\-000000[\\/\\\\]+MiygtMQzv812dtIL4x5g\\-ya4dwM\\=394(?:\\?|$)" + }, + { + "hash": "a4c704af147757dfede9266493056ac86ee36a36e57207db727a81a641e7fcae", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c39c33\\-0acdb309\\-d827\\-4d80\\-9866\\-4bcb911d1329\\-000000[\\/\\\\]+AkSZFyVTdhxERAI95Lcx8EVdq9U\\=394(?:\\?|$)" + }, + { + "hash": "451d3bfc1e1509d094e191916d158399be326db135a471aca5859387c7a47fb8", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a77bfa\\-8649bc50\\-c866\\-4116\\-ae76\\-ce2a513a4287\\-000000[\\/\\\\]+XlCGgPkXzallZFKfTqQchg3NY_o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245978781\\-f602ff5e\\-e5c8\\-4dcb\\-b7c4\\-5a7337351050\\-000000[\\/\\\\]+Wii\\-6X4NizBUbZL1vXiXjGnmG3M\\=394(?:\\?|$)" + }, + { + "hash": "96225be432cafa3db5f88ad25ee658c1c168170d95e078c7ba1c774525cdaa31", + "regex": "(?i)^https?\\:\\/\\/loginnetflixleiojfioje\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "278974e63e1541e1ec32edeed5f414c22a114e4bb8a5edc64d2488878b8d453a", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c12c52\\-b038f411\\-3c56\\-4772\\-96ee\\-71e83fa2074d\\-000000[\\/\\\\]+xkHHIf5dorABfPuMnfGGBxvjtho\\=394(?:\\?|$)" + }, + { + "hash": "f7bb073c99bc1c1853464967f50b9ec54f504c871a43fc047f80a36eea6cf10e", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4b2b860e71981e8e9be2b8db0585b344b1e2be5b071c54248e7f4c1bafa89163", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae1840\\-ffeb1da1\\-5210\\-4d35\\-bbd5\\-2b2d3bb8eb72\\-000000[\\/\\\\]+Ub8r20MMM9L070H9mWECmZC7SDU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b920cc\\-b8b74cc1\\-fcf0\\-402d\\-a30c\\-647b608ee0d2\\-000000[\\/\\\\]+_oHYNRqgUuMw287lZGwJiqEM4HU\\=394(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0iqkFMenR2THdWF1Nw[\\/\\\\]+r9hCAo5N6tJS(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b5d3c\\-1a5c9834\\-393e\\-4d15\\-b5fb\\-137458aa8969\\-000000[\\/\\\\]+_acHUTZIZP4ne1PSH36sKZpL00g\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9886f\\-da37bd18\\-91f3\\-43e5\\-8a85\\-ed9d678506fc\\-000000[\\/\\\\]+ntAOEwaN2Fwgu39JOiHUl3YQw00\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585bc5c\\-ce1988b3\\-d7b1\\-4349\\-852e\\-55c6be5dc3b5\\-000000[\\/\\\\]+k5Dti5ae2YfE8rJHq\\-fcoICKkLQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924596bece\\-b9c5e027\\-55bd\\-44f0\\-b2f2\\-e5c266ca9b57\\-000000[\\/\\\\]+MLS2hMSkRhKVCBS0Hfg5S6cQDL4\\=394(?:\\?|$)" + }, + { + "hash": "112d3247de4e98694b184e0cece3b741c196027b1603331ddf361069d8159c23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1vWOyN7xZ2xSoDL\\=KwTQr2qM04lQpteT(?:\\?|$)" + }, + { + "hash": "d278a940d8f165222d34f7a6065a42a47aa4f314e37a77404d78521ca4b3a1a0", + "regex": "(?i)^https?\\:\\/\\/loginnetflixleiojfioje\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e4662d1f9c6896c751c655d7bdb5e7ec66ea743380648251d1d020c55ab4d731", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tues\\-att" + }, + { + "hash": "965f4bc925826ad091df584ca6359a10c846a4ff9df9bbfd2eb096c58489c96f", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d39b3faf2584457e6d3b70ac28c039306e797463551a7476b46b481f8c03d42a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "d39b3faf2584457e6d3b70ac28c039306e797463551a7476b46b481f8c03d42a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae1840\\-ffeb1da1\\-5210\\-4d35\\-bbd5\\-2b2d3bb8eb72\\-000000[\\/\\\\]+zoiNvblAVxochvBVH_5qAwrlyAQ\\=394(?:\\?|$)" + }, + { + "hash": "33943c88437fcbb293d9a96ec0cf876fa8a75fdf80d25c0cc91fcc2fe0ed2d50", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a379d6\\-f69e69b7\\-7d17\\-4abd\\-a42a\\-a1ad938feafb\\-000000[\\/\\\\]+S4HgJ_72SxCj5K_kkowRyxdLUt8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a59038\\-e500d2db\\-3c85\\-4626\\-8ad4\\-b0d805b08526\\-000000[\\/\\\\]+oLDzEzR4BnFnYPmHjiLVkoc8Nqc\\=394(?:\\?|$)" + }, + { + "hash": "4178844be58934573908a30e64036a5dfa4ad7081a185b918da2d3ac8d2ab516", + "regex": "(?i)^https?\\:\\/\\/www\\.vedi\\.194\\-59\\-31\\-25\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4ab8a2db34505c7a592cf5f75bf37f38c568fd482791b715cc35dce31342c1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rediros[\\/\\\\]+sam\\-oferta[\\/\\\\]+43(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245779ef5\\-18744b6b\\-5420\\-4a57\\-9774\\-53ce6230bc4c\\-000000[\\/\\\\]+cz\\-Hks4qbLe3FW4L2__YKL9Qtvc\\=394(?:\\?|$)" + }, + { + "hash": "493c2951f0fadb829267efb2f2c1d534ba09390409386085f691dab84b2be873", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457a05b9\\-a9055937\\-668f\\-47f3\\-a591\\-f47d940522e2\\-000000[\\/\\\\]+YlubFqzXW3NW9H2nW24u\\-NszE88\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245abf217\\-721820e9\\-dfaf\\-4732\\-85b4\\-4ba51dbe6592\\-000000[\\/\\\\]+vJ_quGaLnypBHLEbjq4mnKrbU5E\\=394(?:\\?|$)" + }, + { + "hash": "c47eeff1978c722065415d862531947fc5334be261a497cbf158cbc94276bd5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fX4Hz11lNtHhdQ9s0[\\/\\\\]+iYziwCjQnflN(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924573050e\\-fae8f3b0\\-1be5\\-4d12\\-ad35\\-4830fcdd260e\\-000000[\\/\\\\]+JIk8nrD3cOh25PFF\\-a0e\\-bDoehA\\=394(?:\\?|$)" + }, + { + "hash": "f6e2ebf45604136e050c6c2cdd86406eb40e32bb649770acab0d3c382516dab2", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b810f1\\-3214cc39\\-8572\\-495f\\-b5ba\\-06913eaa0c5f\\-000000[\\/\\\\]+AhgD2mPxcTuctc5qsn_0GEFjpco\\=394(?:\\?|$)" + }, + { + "hash": "0eab6ed82b1d5e5d3cfc3597398ebb1b445b7d2f7187a164514b9593f0499573", + "regex": "(?i)^https?\\:\\/\\/trhrethgrehg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924581290d\\-5014bd77\\-ce51\\-4883\\-a744\\-46bffdaa98ce\\-000000[\\/\\\\]+MEOPuGRWNCxzcWUT\\-xxefItExLU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924563f73a\\-1fece507\\-e63e\\-499f\\-977b\\-ecd2f69415f7\\-000000[\\/\\\\]+AZTyT2VPMQYNQh0OKjPBQoWE5IM\\=394(?:\\?|$)" + }, + { + "hash": "95fc6481acee720d017bf54b8d0f47e16769b22b56e824c6c0e567250f91a2ed", + "regex": "(?i)^https?\\:\\/\\/ali\\-hassan\\-11\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2041020740187bac6ac1b0cf1103a3052d578d09b5106e18c8cd4ab5e96955f8", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ba4b6a\\-3113e002\\-bb1d\\-4325\\-a612\\-a0599f12fc13\\-000000[\\/\\\\]+xUf_AwiQTGcizxFJR1_DOgUImxk\\=394(?:\\?|$)" + }, + { + "hash": "b5625f76cd4bb0e4a70aab6926d81b9786c641fae82fb844abac04742fd72bf9", + "regex": "." + }, + { + "hash": "47250b71a64074a5a11cb2f6477ca75b1df8d151783bab80baf714820f6979c9", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455df6f3\\-1637e0d1\\-6021\\-47aa\\-bafe\\-83c0eb54b1d3\\-000000[\\/\\\\]+PcS1I_i\\-YgGttoj6\\-Q2ct26Q210\\=394(?:\\?|$)" + }, + { + "hash": "495a47e8b4d53bf360fdf93050b6c4ef256b0e857ad3181e4495e6090fc1ddf0", + "regex": "(?i)^https?\\:\\/\\/trhrethgrehg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0irY9lzDLNV0AGJpaC[\\/\\\\]+r9hCAo5N6tJS(?:\\?|$)" + }, + { + "hash": "addb0036eb1a13beeffab9173fcc2258913482b9cd05b37c3ffedaf3766ee1d1", + "regex": "." + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0cCBSzNdEDlhydU53g[\\/\\\\]+r9hCAo5N6tJS(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ba4b6a\\-3113e002\\-bb1d\\-4325\\-a612\\-a0599f12fc13\\-000000[\\/\\\\]+tLKYx680KRC_cZoIX3zCLQcy92k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457a05b9\\-a9055937\\-668f\\-47f3\\-a591\\-f47d940522e2\\-000000[\\/\\\\]+f\\-MtZov7xA7DIviQEUtFnSfubvI\\=394(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0YuWBaLfVK96D6Hd9s[\\/\\\\]+r9hCAo5N6tJS(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fX4Hz11lNtHhdQ9s0[\\/\\\\]+tBaMoq9QSTTs(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457979e1\\-befe266b\\-bc04\\-454f\\-93ed\\-f635a315ff0d\\-000000[\\/\\\\]+BxhXyeaNezqyTMtyhFwa9esQsKg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b5d3c\\-1a5c9834\\-393e\\-4d15\\-b5fb\\-137458aa8969\\-000000[\\/\\\\]+Ld_eFVQETCQFZ7iWQ5l9wqLPk3Y\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245caba81\\-f523df40\\-2701\\-4072\\-ad16\\-55c6d3602d83\\-000000[\\/\\\\]+V6R9OrRRUXXDa4gN2nH3pZlzrZ0\\=394(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fXTFBgEiYP8y0SYy8[\\/\\\\]+r9hCAo5N6tJS(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b74f7\\-9fe3adfc\\-08be\\-4b67\\-957d\\-94e33661ea14\\-000000[\\/\\\\]+Cjk8fGuKTy4l6ReuB4PbdhqegvU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457cc21d\\-74d3d5e8\\-0f98\\-45dc\\-877f\\-c4686d197111\\-000000[\\/\\\\]+GRy9JgZPR_psl1d9OFEOSXZWs1s\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b920cc\\-b8b74cc1\\-fcf0\\-402d\\-a30c\\-647b608ee0d2\\-000000[\\/\\\\]+Omo_R59Y7xW7JSyC_x_jJaANIvs\\=394(?:\\?|$)" + }, + { + "hash": "23dfd7b1debf01c82dc30a1fb9017e21921c5761a8341cbf6b0cf59fb8747604", + "regex": "(?i)^https?\\:\\/\\/loginnetflixleiojfioje\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924596bece\\-b9c5e027\\-55bd\\-44f0\\-b2f2\\-e5c266ca9b57\\-000000[\\/\\\\]+VQc3bL_z4\\-axCSVtgKQyIKP0brQ\\=394(?:\\?|$)" + }, + { + "hash": "c16f234b96e9e787e4f696fc15c163063530c7a2d511717de7e64274e2b744c4", + "regex": "(?i)^https?\\:\\/\\/netago\\-104565\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7676a74c6e32f070af75d6594c93fd14975de576a8ee74cfffcbd6dee1dbb63d", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc729e\\-780fbfe8\\-2459\\-4dd2\\-b2e8\\-5f725d6cad9e\\-000000[\\/\\\\]+D\\-NBKkQp5unXKkNpgFoa\\-psSmWQ\\=394(?:\\?|$)" + }, + { + "hash": "54a6b6c69aad956e52fa3809dab462d05d40e81cbe50598fca58d7c1d33d8226", + "regex": "." + }, + { + "hash": "28330241e2af85e319cb692fb29f9514d94f73ba74d6616e4926f878f2183834", + "regex": "(?i)^https?\\:\\/\\/loginnetflixleiojfioje\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455df6f3\\-1637e0d1\\-6021\\-47aa\\-bafe\\-83c0eb54b1d3\\-000000[\\/\\\\]+vr2hScKWaPLsAfWxM_uZwHi_6Zk\\=394(?:\\?|$)" + }, + { + "hash": "c060cb02147f21e634350b68bfaa13b2f7d09f0db2cbb61947c71e2fb62db86c", + "regex": "." + }, + { + "hash": "9a68b2eb8acd3d08bee477ca71db38c54dbf46c8e0b360a1ef6d00773cb24f66", + "regex": "(?i)^https?\\:\\/\\/trhrethgrehg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456ab798\\-84bf2dd4\\-cdc6\\-4506\\-9e11\\-369988ee1ba0\\-000000[\\/\\\\]+_g8DGNaLL3\\-NvZ7lIDREqXC6BIs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924580358f\\-3cd34c6d\\-72f0\\-4194\\-bab5\\-aaf8856d2163\\-000000[\\/\\\\]+6G71pNBqvKrc3eH0AHOwQKYspYQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a77bfa\\-8649bc50\\-c866\\-4116\\-ae76\\-ce2a513a4287\\-000000[\\/\\\\]+5tkgnQQ8mMy\\-iPFcyAO5nSfvDfI\\=394(?:\\?|$)" + }, + { + "hash": "07e72ea7a9e089b1b23689529f6cf77dc93f5033381846229270f21bcbffc47f", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585bc5c\\-ce1988b3\\-d7b1\\-4349\\-852e\\-55c6be5dc3b5\\-000000[\\/\\\\]+QYglgj7LeTa27Fg4H7agmus\\-ZZ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456de9cf\\-5b663514\\-02c3\\-419d\\-83ce\\-08777a5db77c\\-000000[\\/\\\\]+Kp6QkDIO4cJzifBLkw63EVShtEs\\=394(?:\\?|$)" + }, + { + "hash": "68363255afa9d051430a6ecf903e181fbf3e03c1a19a24d6a997404e1dc6822e", + "regex": "(?i)^https?\\:\\/\\/trhrethgrehg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6f5e2a87b7d4a22314f555ed1ac324eacc530b07493e9ff7dacd2c72a71349ba", + "regex": "." + }, + { + "hash": "99f95d5042224c04b91bb851d444a8f7b9a1e5891bd8b1ec6fca62291b1f6599", + "regex": "(?i)^https?\\:\\/\\/trhrethgrehg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924581290d\\-5014bd77\\-ce51\\-4883\\-a744\\-46bffdaa98ce\\-000000[\\/\\\\]+XfJrvKMdjUBddZRJ\\-INIXogH2gg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bf7f6a\\-0449a39c\\-e552\\-4864\\-8055\\-b2c94c056971\\-000000[\\/\\\\]+vFTWDSXMooADdNa_B85K3GDxoZM\\=394(?:\\?|$)" + }, + { + "hash": "2cb96e7b7aabb48a321aac239c38ebbac33ef40ee75e3cc13588c2477243aa6e", + "regex": "(?i)^https?\\:\\/\\/www\\.193\\-124\\-205\\-77\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9886f\\-da37bd18\\-91f3\\-43e5\\-8a85\\-ed9d678506fc\\-000000[\\/\\\\]+Wnvk4Rjp56kS_mPESMfho\\-R3czs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a59038\\-e500d2db\\-3c85\\-4626\\-8ad4\\-b0d805b08526\\-000000[\\/\\\\]+sBdr_PsGdWvGzsLCYVMCQFdPHkU\\=394(?:\\?|$)" + }, + { + "hash": "08692b17e7cb76410ebd552744b9cb6e24773e181fca2d526b7141fdf0051165", + "regex": "(?i)^https?\\:\\/\\/www\\.info\\.194\\-59\\-31\\-25\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c39c33\\-0acdb309\\-d827\\-4d80\\-9866\\-4bcb911d1329\\-000000[\\/\\\\]+V_s\\-Zfrk3NfXkCFhBnLX1IwG2s4\\=394(?:\\?|$)" + }, + { + "hash": "c835d377892417708c9b0f01ab8263b08eb65aa42d802e9851a34ede6e8cb1ce", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575d7de\\-ca8ab75c\\-88b7\\-4fe3\\-891a\\-4bb36fb583a1\\-000000[\\/\\\\]+m2RfHZGqR_19oyKNrzNDlxgGGj4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bf7f6a\\-0449a39c\\-e552\\-4864\\-8055\\-b2c94c056971\\-000000[\\/\\\\]+Tckw5bBilXqtw6p1V8Mt04d2WeA\\=394(?:\\?|$)" + }, + { + "hash": "0f1f2e84774397800d94832016578aa85fe857d59f20508d2dd3bae197c9ba9f", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245977873\\-d666925d\\-5e80\\-4217\\-af97\\-f49d6d159180\\-000000[\\/\\\\]+rtAL_KsEWDIvKT6V6OwuAsLQOIY\\=394(?:\\?|$)" + }, + { + "hash": "7abe42eb3a8649c87858928c1841888b3e8bd29a1a23c1b2a70f8f7779ec014b", + "regex": "." + }, + { + "hash": "bd5d98b64253bd4470f2dd2858979184264ca3a9e11a28680623c973136a6745", + "regex": "." + }, + { + "hash": "e0a54c87c4318aa787f8b66f9bd5c3b3b85240be48ff61f4fbc81b1a6863176e", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "63ea96b27e2534e4cf7f2672c4f46119fca2032f3cecedf2d342f848394b2948", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457cc21d\\-74d3d5e8\\-0f98\\-45dc\\-877f\\-c4686d197111\\-000000[\\/\\\\]+1UjfDUPTHuFYqRSXjQ2982NDMdQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc729e\\-780fbfe8\\-2459\\-4dd2\\-b2e8\\-5f725d6cad9e\\-000000[\\/\\\\]+qzOgGDA8HrQG2wqiOs\\-\\-CTyQ6hQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bae15f\\-2856c311\\-3a0b\\-4aec\\-9213\\-b81223b1f5c6\\-000000[\\/\\\\]+lPc93A_Q8wWOfH5FCnLim21M7Q8\\=394(?:\\?|$)" + }, + { + "hash": "29f3c407c182aa2bf62ad94012e84c60bcd13ad2e7bc8dc4abe597bb4708f56b", + "regex": "(?i)^https?\\:\\/\\/trhrethgrehg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9fe5e8472730990609332d89059b00d1198c29071d40ca307ec13230a5ed2502", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245977873\\-d666925d\\-5e80\\-4217\\-af97\\-f49d6d159180\\-000000[\\/\\\\]+Gaondt5ID\\-dUsGRyJFsEEC_pdbw\\=394(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0dtEhIrAJTsvtcbjrM[\\/\\\\]+r9hCAo5N6tJS(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245abf217\\-721820e9\\-dfaf\\-4732\\-85b4\\-4ba51dbe6592\\-000000[\\/\\\\]+qgSt7lOYsggzvb1yNs9RXSqQ0_8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b810f1\\-3214cc39\\-8572\\-495f\\-b5ba\\-06913eaa0c5f\\-000000[\\/\\\\]+vslg\\-FnVS2v_1pht7To2kCM__hc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456ab798\\-84bf2dd4\\-cdc6\\-4506\\-9e11\\-369988ee1ba0\\-000000[\\/\\\\]+oTZhAyDHjV0UY0OtJZVt625EEGg\\=394(?:\\?|$)" + }, + { + "hash": "0940a20c1a1d155e532efc5824837ab9be55453c7b3c804f65fa5894b6e3c3d5", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad4c93\\-bbea927f\\-40f5\\-43b3\\-bbf6\\-944f183107a4\\-000000[\\/\\\\]+2tntthT4WxCk925eOpXQLpIod6w\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245779ef5\\-18744b6b\\-5420\\-4a57\\-9774\\-53ce6230bc4c\\-000000[\\/\\\\]+JaGItXcR9sQZyJz9\\-DK3rsAbxQE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924595a1e0\\-74fedf09\\-583f\\-4b5f\\-b1ed\\-ec053685bd65\\-000000[\\/\\\\]+IT6woUVErAb9d6FVLEXJrUaO8jg\\=394(?:\\?|$)" + }, + { + "hash": "a6aa1a27859aee595fa29875b3ac9b7fb8c574b0515d1f5963d68ec431738a41", + "regex": "(?i)^https?\\:\\/\\/rbxrbx24\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c455345e14c4530a4f461eadf595642aad89088262d09b479a963eb36f0f6335", + "regex": "." + }, + { + "hash": "0e614dcba91f9e0c603bbdeff86aecc62358767473ad4c254f9206fb8bda4b53", + "regex": "." + }, + { + "hash": "ec5f018d935359e0d46d253ce5bb7d0ba6a2745797d909613ff78b466b6630b5", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924567032a\\-fc44e754\\-5649\\-4151\\-a98e\\-ec6de951ae24\\-000000[\\/\\\\]+ZiJBFCkyx1SnnK3021kGvgL6uZo\\=394(?:\\?|$)" + }, + { + "hash": "517d8fa48d3455f46f998ef49db30c0bb540937d184834b08e147674f1d38ece", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "206bc0701d671fbeff833c0a01c9857e5ce71935f87412c91e3f375f7844e984", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ca28ef\\-d7e362b8\\-9612\\-4bca\\-abd5\\-6e6a331b625e\\-000000[\\/\\\\]+fkL_EqHEhoLe3PXxlnev_WgmeAM\\=394(?:\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "4b17892913b4f81034acdf9bf482cd1e3a87b63d2959b0888dac79e49e9ade36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html\\?shareName\\=zonghe888\\.com$" + }, + { + "hash": "0eb53d2577d8e45f6708ed33bd21d2c95cea01dd2ccb56d69a20d631a338c583", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ea25edf8e18a07d82f97cecdaeb46a29c9e3a35042ffe790ac5ab0f3ba11e9f2", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ca28ef\\-d7e362b8\\-9612\\-4bca\\-abd5\\-6e6a331b625e\\-000000[\\/\\\\]+fsTpjDXH5XIzuIEunx2VyEz_vqk\\=394(?:\\?|$)" + }, + { + "hash": "7bbd4a2e3d9a513a1427579f140cbabe0bc904e7c40a6dc159e696b31759d541", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bb336\\-4138243f\\-e935\\-45b5\\-bcb5\\-b643276acb5c\\-000000[\\/\\\\]+Kt\\-xvmwbfbkFSLfwvOkUQUfIMdU\\=394(?:\\?|$)" + }, + { + "hash": "3f801fb55a9731730a79830f71a052b74d616b719f18c41ea5968eb25edec039", + "regex": "(?i)^https?\\:\\/\\/www\\.pinbo96\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "112d3247de4e98694b184e0cece3b741c196027b1603331ddf361069d8159c23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1vWOyN7xZ2xSoDL\\%3DKwTQr2qM04lQpteT(?:\\?|$)" + }, + { + "hash": "631301b802edaeec793c2623db8b0b92cfcf64a3def23c6dca6b1c2f14c347e5", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "4b8e13f018b791fcd1e4fbe113a5b851e33e8bcd3f402476d50c70231a505a8a", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "0625ff7b9095f8777cca1d72cee10c3c8e945bd222640175c7a1ada7dccab3fe", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456723b5\\-87c80954\\-6269\\-4681\\-bc29\\-7a4b898411a4\\-000000[\\/\\\\]+eMrLiUiNok2Rc_LGJCHxBaUqIZQ\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b4d0fc\\-a71b52ef\\-09fb\\-47dc\\-831a\\-aeb57a1c0eb7\\-000000[\\/\\\\]+UjGfXBjAQwVium0a31gSvDq_wCA\\=394(?:\\?|$)" + }, + { + "hash": "adeb2dc44f990743cc19f15692b8f736e9b1b3ca3447acc5ccb7834df24215dd", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "556ccab18c1bfe672f48565b0f1273fb66bc2ee138c3e74c89663f2ee615289e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b5c0f2c3b6[\\/\\\\]+existing[\\/\\\\]+operator(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4ed8e\\-df9d7a45\\-5e14\\-40d5\\-9479\\-1004d268920b\\-000000[\\/\\\\]+Fl0k\\-8DiGVJiNIs5Qi2Zzk40IgM\\=394(?:\\?|$)" + }, + { + "hash": "81bc1e23ed7986fadbba9574f45b3446a8b51e40923325bf17faf3546e47529d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9163[\\/\\\\]+other[\\/\\\\]+restrictionIp(?:\\?|$)" + }, + { + "hash": "213a94f3a422e92d28c83e3996af8d50160a65e6da6243219fc33e0a20907aa2", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b3a6ad\\-6f6ce373\\-30bb\\-4534\\-abb2\\-e4ae559940ae\\-000000[\\/\\\\]+aa\\-PHNDAhnQi6j\\-inv011d7lhso\\=394(?:\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%252Flibreinv\\%252Findex\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID$" + }, + { + "hash": "96877aa8df7342df2a4804406921cae40f96c41487d590ca519fee1136f28ad5", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b96094\\-0f4f71b8\\-2898\\-4596\\-a879\\-c778adccd742\\-000000[\\/\\\\]+XFK6_QtdQscLFMT2WXevzL5ov5U\\=394(?:\\?|$)" + }, + { + "hash": "7a2dd6a42b681fdcea4a0f99ff01aa4d41f786daeefdf9994079bb05c48400e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g" + }, + { + "hash": "c7d1832fca32c8317bfd51c576d29841d188f01c13bc12819b53d052cc67019e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aea13b\\-2517f2f0\\-2aa0\\-4520\\-ac13\\-2d1767a0d015\\-000000[\\/\\\\]+IsBO52soUCheJ67voPbOIM5noOM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b281c4\\-064259ad\\-c5d1\\-415d\\-b359\\-1ba39009343b\\-000000[\\/\\\\]+SUMY80_TtBtGvtCiqTnGpHSmPhI\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b4d0fc\\-a71b52ef\\-09fb\\-47dc\\-831a\\-aeb57a1c0eb7\\-000000[\\/\\\\]+ZuQqXjvBZ7GpyTi3yvtGMz8yB9I\\=394(?:\\?|$)" + }, + { + "hash": "62b081eae293875eea3a1e878c178d013c2b25baed73eba0a75b29d0526753ae", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "56dd9b9e8c897a16d632915fcd4dbba4d782f1b282641c0ecaa05cb239668fe4", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%252Flibreinv\\%252Findex\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%252F$" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b3a6ad\\-6f6ce373\\-30bb\\-4534\\-abb2\\-e4ae559940ae\\-000000[\\/\\\\]+lfnv3BY0ZExta8cYM1Pb3c3CcMY\\=394(?:\\?|$)" + }, + { + "hash": "d0817e558a2447b91017af675fa8a0cba9a1aaec1739177b597a2f8b4fb14f4c", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4ad7ec8b4c00c967edddac0d5d5d11e4d50461511557170f08ea119217823186", + "regex": "(?i)^https?\\:\\/\\/5yg7p18d\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b281c4\\-064259ad\\-c5d1\\-415d\\-b359\\-1ba39009343b\\-000000[\\/\\\\]+KB3ZZYbeFhleV8hbfsklhs1IKYg\\=394(?:\\?|$)" + }, + { + "hash": "e2a11ba9300b511df57c6889323345bea77584846eb45be8a6aa7137eff15eed", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%252Flibreinv\\%252Findex\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b13a6b\\-6623afc4\\-cd2f\\-45a5\\-bcf0\\-802a8b2742ea\\-000000[\\/\\\\]+_T7TR9V\\-Ab0DohIn6gREJaTSVVI\\=394(?:\\?|$)" + }, + { + "hash": "438dbdb1635df51a3f245005c1b2f10a14a21d4d9ad00d94df81d96bca906333", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a66602a15c4ac228d841b91a6c7836656d5d93c540714ebc5699274f523f02bf", + "regex": "." + }, + { + "hash": "94628466bc9ba93f4d484d7c42054bf1a43818e1b11445514354a534c06c5905", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456723b5\\-87c80954\\-6269\\-4681\\-bc29\\-7a4b898411a4\\-000000[\\/\\\\]+NHT4_bZjc67o479DhC3x7e3PdHQ\\=394(?:\\?|$)" + }, + { + "hash": "871576c6bf435584718608308ab2db3a86e08de7b6ac5c1b2ddcbf2e02428817", + "regex": "(?i)^https?\\:\\/\\/959ggl\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b13a6b\\-6623afc4\\-cd2f\\-45a5\\-bcf0\\-802a8b2742ea\\-000000[\\/\\\\]+VGqLVOhv5jhfKegN6JPVoxcTvK0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577d9a7\\-f9a85f09\\-8190\\-4798\\-8c30\\-4cca55359f81\\-000000[\\/\\\\]+\\-65nO32uWE7KL9HI1sGZUoSHEbc\\=394(?:\\?|$)" + }, + { + "hash": "237979cb89707ea4e38520f47a35eeecc432eda4ca524506229a409dbf00fc32", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f341fcd0cb0c79d85bdaea63a159bd47490907120a1bdb3c3ab38e2841c6d1da", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "81bc1e23ed7986fadbba9574f45b3446a8b51e40923325bf17faf3546e47529d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9163[\\/\\\\]+entry[\\/\\\\]+register99651(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4e1a9079e1ddadc0080264836109a0aa7e2be01b21fd7be0614110f54fe9fee4", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d1473060c807da02b2db017b164ac9b9b464110762c76a5c5cc8b4d4a510e43c", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+pub\\-7568765e07224e14a09292192160d3d5\\.r2\\.dev[\\/\\\\]+mail\\.html\\?email\\=[\\/\\\\]+$" + }, + { + "hash": "83481d8fce8afd73083917d86b25a773392b0b04c373bdd7f1afc16f0bf6dddd", + "regex": "(?i)^https?\\:\\/\\/9p6dqeq\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a952c\\-476d603a\\-3a76\\-48b3\\-b040\\-904dac98bf32\\-000000[\\/\\\\]+jxza2tdVNRkxzdQn0rKHmTm\\-ums\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a952c\\-476d603a\\-3a76\\-48b3\\-b040\\-904dac98bf32\\-000000[\\/\\\\]+DUhRIgZVdoWRUqDRF73PRfgJ73o\\=394(?:\\?|$)" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0fX4Hz11lNtHhdQ9s0[\\/\\\\]+WKjemqxdAdnz(?:\\?|$)" + }, + { + "hash": "b43576e2594042d80e37897a27d8ea3ebcb264a8f1e9a5c379f23e13942b03cb", + "regex": "(?i)^https?\\:\\/\\/komihareyuzabvreaza\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f512250165721df839dae4b5c68f736ae30c2f2b00a48e9d485d2af4ed05d6fb", + "regex": "(?i)^https?\\:\\/\\/renewlogos929\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4ed8e\\-df9d7a45\\-5e14\\-40d5\\-9479\\-1004d268920b\\-000000[\\/\\\\]+8RrVmO8QiI067wFs\\-0XsSvCYpQg\\=394(?:\\?|$)" + }, + { + "hash": "de5f24433f935c53e76682130b38025dbcc236aef7dd5b4d036f3b903fc92f16", + "regex": "(?i)^https?\\:\\/\\/qsd651aze\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924567032a\\-fc44e754\\-5649\\-4151\\-a98e\\-ec6de951ae24\\-000000[\\/\\\\]+27n9g37XiM1noWIQON99LKhN\\-uc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bb336\\-4138243f\\-e935\\-45b5\\-bcb5\\-b643276acb5c\\-000000[\\/\\\\]+G\\-aFp9F7ekBh_PYGQpVwN\\-SWYeg\\=394(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577d9a7\\-f9a85f09\\-8190\\-4798\\-8c30\\-4cca55359f81\\-000000[\\/\\\\]+nK3t52BJTImMhb2rJQsWb22e2PM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aea13b\\-2517f2f0\\-2aa0\\-4520\\-ac13\\-2d1767a0d015\\-000000[\\/\\\\]+3cva9Ch2DyRI\\-egqxmekYJmlT7U\\=394(?:\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b96094\\-0f4f71b8\\-2898\\-4596\\-a879\\-c778adccd742\\-000000[\\/\\\\]+fIpILa\\-WbgZcJXMRHqZ8Oxe3KPE\\=394(?:\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cacc5c\\-2c4ac904\\-d49b\\-4e6e\\-9f21\\-9fb35629ecd1\\-000000[\\/\\\\]+JtdKiBFs5C0njN8un2macIU1iyA\\=394(?:\\?|$)" + }, + { + "hash": "45c40f260fa9d89a886dbb24f5faa1cd4e7d42b410385fd804ba1ed91f4a7a47", + "regex": "(?i)^https?\\:\\/\\/netflixgen2022\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245d02ebb\\-af79654d\\-b330\\-4469\\-adc5\\-3ab8b3418260\\-000000[\\/\\\\]+KJXnbzURiiO3fvpKgCte7h\\-LXMI\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "8cbdbc9a9c0feda2c8c49e2a6900a84b561554cfdb22f552bd03c2ddc31eb940", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a090e6\\-2cc9afd7\\-622d\\-4061\\-934d\\-840306d74477\\-000000[\\/\\\\]+0w1v3SW5qwIRMlaJRRiGU\\-5kt0k\\=394(?:\\?|$)" + }, + { + "hash": "dd335f0ae884f0bd7931ace4ff7fe91bca78f4783a40d0ffa0fd1b26f8ab6fc0", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "5064f256546ecdb93fb9b2dbf6294264667da1c53ba2a94eaa47059b8a5b4a67", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f2d87248dd2f10f8bae88499f2855857b7f59c0059eb854b739b76e5dd33b50b", + "regex": "." + }, + { + "hash": "8214303713560f0cd3e6e01814b45d909ddc6c30764899bfae108f703f92dd8c", + "regex": "(?i)^https?\\:\\/\\/netflixgen2022\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245764e0e\\-fac127df\\-a9e0\\-4821\\-a39f\\-da4de495a854\\-000000[\\/\\\\]+lMXr0JY9MjaZP8zz_mDFBfBgn8Q\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245713105\\-6e060bad\\-b0fa\\-4f76\\-bea0\\-f8c66e4d7d75\\-000000[\\/\\\\]+F8rL7hQ5\\-4oGWLhZoBV3_sSm4Ig\\=394(?:\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+pub\\-7568765e07224e14a09292192160d3d5\\.r2\\.dev[\\/\\\\]+mail\\.html\\?email\\=$" + }, + { + "hash": "8ca210bd370d9ba539a43fbc83c1e8516c9e5930a88cdf051fc1f87839613fb6", + "regex": "(?i)^https?\\:\\/\\/komlaoseyhnxuakeaaza\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a037a9\\-c5e54f03\\-7d9d\\-421c\\-9e9d\\-71a4d76320be\\-000000[\\/\\\\]+8QAXT6jDqi7GtrTfu5IU8LS6dzk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924565c1fd\\-c52c01d7\\-fdc0\\-49c2\\-98de\\-5780b2e89500\\-000000[\\/\\\\]+1Te6hy_w27dzCtmTzV3lvY7RrDg\\=394(?:\\?|$)" + }, + { + "hash": "915117938b226f161c0e82cf25556d466503c611feede84e125cae5340fdb1e1", + "regex": "(?i)^https?\\:\\/\\/komlaoseyhnxuakeaaza\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f67b165e333f7a097530b815a7b20c2889402ae4a71c7b31cf06f85e2e8a088d", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0da7e8d6a4df8f1602561937d8e14ab733f98522f99a6ccdccd7d219066a8d6f", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "2bdc0cbfd56eec270b9bb83e386bd821016ad69f7027db58a88e484336eb5bfc", + "regex": "(?i)^https?\\:\\/\\/rishabhgehlot7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bbb277\\-d784e535\\-a1aa\\-40a8\\-819d\\-f272443bfe0f\\-000000[\\/\\\\]+2fgLmLI5QCjw8pckC9v2RsKaT9U\\=394(?:\\?|$)" + }, + { + "hash": "b0fe9ec73c5712cfc86b0c91536520f4422d7c1b9d98ac7d03d0f125a518d334", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "65e83aae6cae07d16ffa375c90cb0c1528cd87be9fc03ce9dcfac3ff3fe68746", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "950c1f5963ce7d682749db85d06dd051ee7e8e87c459f92c042df83589c535f2", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bac61a\\-4432aac0\\-34d2\\-4e8a\\-8c7f\\-30e85fcae604\\-000000[\\/\\\\]+K6U_ddzXmkWVUbzK6eEu5NR7VmE\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bbb277\\-d784e535\\-a1aa\\-40a8\\-819d\\-f272443bfe0f\\-000000[\\/\\\\]+Nk_c0wXbn35ehf3HgYHf8N4OOC0\\=394(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "785f11cee99ea9a5ef2d04eab7726a5e04923578e602eec92322a8464c644946", + "regex": "(?i)^https?\\:\\/\\/netflixgen2022\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ea552badc9d4fb531d97a81647373e45334dfc05fd867af7174e39d913b40dc9", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8e04ccc37189a5c10da5cb262f742510ff9ac9401e67a581f5dbf142ea73ceeb", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2301b67e84a4b1e0e139ba188692dea453a42c1f0656375c148b58d431347257", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6b579787265245cbfbc96b2abf32539b00c3688bb6a68e64323262c136e2906a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ba2dd\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924575c9be\\-3ed7352d\\-711c\\-49f7\\-97ed\\-8ebc588ea96b\\-000000[\\/\\\\]+rB86MbOEA5ZAqaBosZjO7BkHXOY\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a090e6\\-2cc9afd7\\-622d\\-4061\\-934d\\-840306d74477\\-000000[\\/\\\\]+dh1_LAUxxsP\\-Zbt\\-t\\-HUIoXDkI0\\=394(?:\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "e4395e780dc5335f2ef573fd2d1c18a9629920224baea977cf440c26dd18b8f1", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1f4762b1179c3b944c77b8d1de507ff14390e8f092fa4021087c00b6584dc63c", + "regex": "(?i)^https?\\:\\/\\/asfvsdagfvsdvg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "369fc8406f44087a78a429a74dcac4d8751b9ea2e26bf8b975d78fae89640b00", + "regex": "(?i)^https?\\:\\/\\/komlaoseyhnxuakeaaza\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6df51\\-8ea2b97d\\-c9bd\\-4a14\\-b0f8\\-c6c8aacf4763\\-000000[\\/\\\\]+JCGBS6G3zN\\-91hj6EBjVmmMdBZ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924594be1f\\-d1431854\\-90d4\\-4f8a\\-99de\\-71b1a2e231a2\\-000000[\\/\\\\]+zJiT4W_ZEZxHqCIwBzTqTUy5\\-Cs\\=394(?:\\?|$)" + }, + { + "hash": "495adc090e5ee16e21eadee8106dec0a917c74f09681279870735430b3e35cb7", + "regex": "(?i)^https?\\:\\/\\/asfvsdagfvsdvg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cf4b84a249feeb203addd71483cc84bac962d7e4320b31ed388b673b22a147d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924564b25c\\-16781378\\-b1fd\\-4dd9\\-9d85\\-5533b08538ef\\-000000[\\/\\\\]+x35622lDwA3nVawBSt6kb1NHghc\\=394(?:\\?|$)" + }, + { + "hash": "9a5868be7374990877186a60ce93167efa29a445098a969359738c5e387f12c3", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13163\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+0100019255cd2533\\-d853fd16\\-f207\\-4d30\\-9795\\-a6d290de2507\\-000000[\\/\\\\]+Uk6MIHbtMgZT0o5BncFZI8ojWc8\\=394(?:\\?|$)" + }, + { + "hash": "8bdded289a19065a0ac07114f3f6680595571134ea2c8e69a58239d1380cecae", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457701da\\-d652d8ed\\-313c\\-4a35\\-84e3\\-e35f9961d1b3\\-000000[\\/\\\\]+BJcxr05NIi3M\\-fiJ2wq\\-D0YrVNA\\=394(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "e1581410417f51351bc0720cbe4e24d7b1e581db3d381a40d0d46a4c50efd587", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2db1be83e8a3d1ba241d865a900d3882caa7a9e32acaac87072a44e682bc61ca", + "regex": "." + }, + { + "hash": "ffc45ea51ef64759f86b6683ba66972e98eb69aa9d12865fbd1a8b4feac8a283", + "regex": "." + }, + { + "hash": "c2105a3fcf943f07164b33ee9713da80e01265e35e01cab89f2866f29a2afce1", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "278cde61ea2b2d0b41764aa6fd9a5c1633372b5fec7028f0275030d57fc03d07", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "03c9e2de944db423752f139617bfded7593d2683320ac2ae91a02d2b2edffd7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5641b\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ac6b81ca634407641fe633cb82c5a532713a2f259b1404c775292c904ec0f1d8", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b4646b82cbebd8fc713f59cf799b1afec78a775e4db51b643e691539fcde159b", + "regex": "(?i)^https?\\:\\/\\/netflixgen2022\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0ec1a7abf9146ffc0d8df1c236796e3b9aa3b304cef24ef63b4c03eee04f4491", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eecda10cfdc7029869ffedeeee4b633ff2b377a55d94a994431283ccefff02a9", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "417640801e2c9278530d5f0bad7bf1bcbfc830a7e320360a4c1e0a07c3e829f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l[\\/\\\\]+security" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "d0ad36ab92975998b9baff4c606723dea16057ff719f1c4af6a9a6e017edaa4e", + "regex": "(?i)^https?\\:\\/\\/asfvsdagfvsdvg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245692ab8\\-915a413b\\-bc7b\\-4584\\-b675\\-d829499555a9\\-000000[\\/\\\\]+_QNUOxJhr0XNpc82eWLQovmX\\-Is\\=394(?:\\?|$)" + }, + { + "hash": "2d37969629c37b1c11aa46a2105f0952df30456067fb6f851b82cb0ac94eea43", + "regex": "(?i)^https?\\:\\/\\/nokpark470\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "23570478060a6a526596e7d9627e5c8a5e05a2f40aef323d66a385348a6d3b07", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "adcf9ca5f58d9bf95f085250b4894144826262b9b55e14ceab5963585f0864d6", + "regex": "(?i)^https?\\:\\/\\/netflixgen2022\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924575c9be\\-3ed7352d\\-711c\\-49f7\\-97ed\\-8ebc588ea96b\\-000000[\\/\\\\]+KK51O1xKoP9k2CSRiESizkEoJDg\\=394(?:\\?|$)" + }, + { + "hash": "e9412419612c78098a598ea872693c9fa4400513b99b76fec9f78955a27afdce", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fb0262fdf3a6fae7c2b14a5ee99247e67059cb90186de2ca3aeeb63b870baed4", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5d256682ddb2397adee0ba93d0587f084f40aa550b6aa4141f817d0398531c03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2a6d9\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "1e9b749fd1c977c4ccaec8b719f25f68edc2d53f2d376dc624839a61bbfa5778", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457701da\\-d652d8ed\\-313c\\-4a35\\-84e3\\-e35f9961d1b3\\-000000[\\/\\\\]+04Rfdra17Ej5uGxoI30K4BEg6dM\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bac61a\\-4432aac0\\-34d2\\-4e8a\\-8c7f\\-30e85fcae604\\-000000[\\/\\\\]+Lvej\\-gBPCs6og1TFIZFFdYBOdtw\\=394(?:\\?|$)" + }, + { + "hash": "7be66122005afb2b169dd1dacdc95b8f5487a32357411a0582b8d36e8be2b172", + "regex": "." + }, + { + "hash": "a67ba597e259dc14f9cdf24a11455e702c663a2f88804e29e40cbbc75aa3876a", + "regex": "(?i)^https?\\:\\/\\/komlaoseyhnxuakeaaza\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c23e5c\\-dc588229\\-5842\\-4098\\-bbbc\\-b0ffb1352c29\\-000000[\\/\\\\]+F0hfhpR331BibpghihR7rYmTVvo\\=394(?:\\?|$)" + }, + { + "hash": "cbc3e6f4a5272710a3a79df36bb143a747c3812653ee4d5c6698217fdb08a79e", + "regex": "(?i)^https?\\:\\/\\/netflixgen2022\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "322897fec4a3cb40941a2870d71f9cce517eb77178d3c32f1fecb3ad6ef595dd", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "172151ff1852dad079ffc61882ffbc9f02647d4753bcbd09908f0cd102bcfc4c", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aa7dd7\\-01e19fc1\\-0883\\-4dbf\\-97da\\-b41d49787dc7\\-000000[\\/\\\\]+RwgGyfiAppzaz5i5ahR2XfcCEnA\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "8637389313902dd376539eeca2934d2a516078f13ac8040c19ef65d9c25462f6", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a178549ec7cbeddc58e472bfe93141317912fc2aede0df63c106a61ab95dee78", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "de8c2f4530a875efb3161454602610fcf77b938527eae8c1c69af14ab05b20a2", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2101658d998f1ca460d67716e979c06e24039e8a16d3bce2a23e495e51810db5", + "regex": "(?i)^https?\\:\\/\\/asfvsdagfvsdvg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a037a9\\-c5e54f03\\-7d9d\\-421c\\-9e9d\\-71a4d76320be\\-000000[\\/\\\\]+fBpzcgewRITCPFK4bGtcSsdV5u8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924565c1fd\\-c52c01d7\\-fdc0\\-49c2\\-98de\\-5780b2e89500\\-000000[\\/\\\\]+QA4gXkqwPMqPraNmYrGO1NICeG0\\=394(?:\\?|$)" + }, + { + "hash": "287f37c40c18ade50025ada683ed79958d58c6c0b1d2fd7eb563a166ef8f9ed7", + "regex": "(?i)^https?\\:\\/\\/komlaoseyhnxuakeaaza\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1272981dda7a7cbaa8bbed9209ce901236ac26d74a21d3086e1a2f3f02b13bea", + "regex": "(?i)^https?\\:\\/\\/asfvsdagfvsdvg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5ee7354d43200d90a152713142e7d71044809747e193129436b4ed1f170e125b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+D1[\\/\\\\]+033(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245d02ebb\\-af79654d\\-b330\\-4469\\-adc5\\-3ab8b3418260\\-000000[\\/\\\\]+fGhuFBv02K5JSfotzi9EH03BG20\\=394(?:\\?|$)" + }, + { + "hash": "2b4bc99801e75e28abd714a656621a7d2346c99f67500e389c94cc141fd09cfb", + "regex": "(?i)^https?\\:\\/\\/asfvsdagfvsdvg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "aad28e82adf10e0a9098be91f4b99b201c986025d9d8374aeb41b4b34ad38b39", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "70987acf7128e71bde1d04ddb1011ea592b0f2709ab8067f3776c8f55d155be9", + "regex": "." + }, + { + "hash": "a1940790a87617698e5474845c0b671c4a949866c0655ddaa16115c219c75012", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%252Flibreinv\\%252Findex\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID$" + }, + { + "hash": "11907120dbc8f471809084f0e3f90ac2b891617145243fc76aba196215f4b9d3", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a570a4\\-2e6787ea\\-1075\\-4ecc\\-9e2b\\-c2f98ef6ed11\\-000000[\\/\\\\]+84Rn_cPIzaUAL83yCrhV9WFWb_4\\=394(?:\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad7501\\-dc69c637\\-e9ac\\-422f\\-b733\\-68555d0e148b\\-000000[\\/\\\\]+1mh3l9sj21XfRbgiEKy\\-ffCiv7w\\=394(?:\\?|$)" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13163\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+0100019255a48dc8\\-e091139b\\-6bc0\\-485b\\-a629\\-37772fd8b823\\-000000[\\/\\\\]+yGnU0zUfJmlVAD\\-fdKtDqYLkW5A\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad7501\\-dc69c637\\-e9ac\\-422f\\-b733\\-68555d0e148b\\-000000[\\/\\\\]+qjOUEfQ5f0AxHxsL6nPzb1rojmI\\=394(?:\\?|$)" + }, + { + "hash": "b1090c9ff20e8de3f68f349a363c82156572b1e94d10c6e18cb7125089effc95", + "regex": "(?i)^https?\\:\\/\\/sumandeep2004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a570a4\\-2e6787ea\\-1075\\-4ecc\\-9e2b\\-c2f98ef6ed11\\-000000[\\/\\\\]+zbAkSCvdy39SfhDI0rQnqHsoPZA\\=394(?:\\?|$)" + }, + { + "hash": "c20f25bbd69fd0340f5a34a89fa793c30d53d53553ad6d92094ab43c6230bc94", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a3fc6b1979f9ff34889fb0f1861337370392b4a8338b2cb3f016b0b9b1f38861", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?bn\\=35405429\\;cpdir\\=http\\:[\\/\\\\]+google\\.lu[\\/\\\\]+amp[\\/\\\\]+s[\\/\\\\]+pedronoguera\\.com\\.br[\\/\\\\]+\\.dev[\\/\\\\]+HQTQZ[\\/\\\\]+YWxpLmtodW5qaUB1YnMuY29t$" + }, + { + "hash": "e4bb5ec128e32ebbf5305f32bd9f7f8f5a0a133dc4b0bc91a27fe775dcf5327c", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7d2057895af4d49cae267acdcb5db3f1bb045ea46e4dc683f6f6a3af13420b06", + "regex": "(?i)^https?\\:\\/\\/netflixgen2022\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "ab3c921e859422ddd7c602968a75cc1e5a1e4549cc2b1d2d19eb6e66c47f2079", + "regex": "." + }, + { + "hash": "b891d8e8ec8527e5950daad58cbccf0dbfaeae2f3b18ca46ead96a228c911af9", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "64298cc8776ac27b8839c436a55ba698a0d3ca4916bda893fef06381ba945ed6", + "regex": "(?i)^https?\\:\\/\\/asfvsdagfvsdvg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cddfc5ce522746fddea248125acd012aba65206394e876cd90e57809a0c28780", + "regex": "(?i)^https?\\:\\/\\/komlaoseyhnxuakeaaza\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "a32568d2be65c02c39ab5cec89ca97c34e6cf1ecbfabfd04d50959e909ab89ff", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e9ee596efba3d9169643d89951d3306ee91992bd278614a2f01cc1806c3c2cf9", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "38a2623ad3e45fabc9de7782d4023bd8d3491909d60c648de617b0386305323a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+1t6Af4OiGsDg0aZ9slGQVkOyqsK57o[\\/\\\\]+SG3a5Wa2TL7g(?:\\?|$)" + }, + { + "hash": "dd017c97e8511c2328e032431532a6938f66bd5e2f098228a6dc8331cfcd0763", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c23e5c\\-dc588229\\-5842\\-4098\\-bbbc\\-b0ffb1352c29\\-000000[\\/\\\\]+7BDVdEmxTWM8E0M1azz5jO8YtLk\\=394(?:\\?|$)" + }, + { + "hash": "22d4a6d19205eb78bc0d274de72c90f1c24d3735711be4c2df793300044d8775", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8c255218cf9861c0640fc0ae1bb6826abf4eb512d594369ebb5c32fadcee083a", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "54f6769177ca85a59e9ef75347bdc6ed4b829d7c2367717bf79d3f7228605cff", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5bde7546fc521b28a8a7dd7614b05f85f17c91232be2ea44ed68045e93a63c99", + "regex": "(?i)^https?\\:\\/\\/buiosudfewofusdoifuieufsdiieeui\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "813446eeb734f4c0ae0db207ef34a92ca5a46e9a8b7248e2bdc4e7f3bcee69ce", + "regex": "." + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "a9ef8cff7686ae7fadb69e3da70230f14aa1d4f3a92e79f2edc2fe7775a13632", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b06202d1f97f54672cea037ff7ee9e0878f304b6e8dfb309d556830ff2cd4668", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e08d6446105ae2d45207cd0a8a9e0381f0a1987b48a157cd064815ab84fba154", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2f12920fbbc7aad7ef66583f8ecd6170fe3ab3b96e4cfd2deea941128c74dab0", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b90c701a3ee9eb107ecc5607ddcc7c3742ecfab784db4e721761e1f34c445e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ee03f\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "e9ee72dc01a7e5250e5ca6cc4eeac78a56a0fd02ee0c93cc4bb63dc1af56eceb", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "706d3e41c9c28b2d9d65c8ce20541a3bae03540a5ee2fb2a492110e0044510f1", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a3fc6b1979f9ff34889fb0f1861337370392b4a8338b2cb3f016b0b9b1f38861", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?bn\\=35405429\\;cpdir\\=http\\:[\\/\\\\]+google\\.lu[\\/\\\\]+amp[\\/\\\\]+s[\\/\\\\]+pedronoguera\\.com\\.br[\\/\\\\]+\\.dev[\\/\\\\]+TNZPY[\\/\\\\]+Z2FicmllbGEuam9sbGVyQHVicy5jb20\\=$" + }, + { + "hash": "84536d2f4d584587f29f6e137652d1a8e3605ab05949435b1e2fb35dd03925b0", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cacc5c\\-2c4ac904\\-d49b\\-4e6e\\-9f21\\-9fb35629ecd1\\-000000[\\/\\\\]+v_sCE_920x4loV47eOqE1_geHWs\\=394(?:\\?|$)" + }, + { + "hash": "2b2a7dbf8b5a9057d15adf0b2b53b1bb8841cc192081169aea885d0f865398ab", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e554a2ea8aa9649c5713e331233359822a552280968f243f1bf18481eb08379b", + "regex": "(?i)^https?\\:\\/\\/buiosudfewofusdoifuieufsdiieeui\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "37eac5b71d17075186bde7bf92e025fad8be9ffaddad8bc3bfc73cabcc407a7e", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1dd8afb29a730b52001e14aa9a5e7d10d240336ffcb4e781b186b5055f40ffc4", + "regex": "." + }, + { + "hash": "6896495b63ff020d12ad7d937166ff97f981f9f6a5f0f7d0fc2d59c4279814d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?72e25\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245713105\\-6e060bad\\-b0fa\\-4f76\\-bea0\\-f8c66e4d7d75\\-000000[\\/\\\\]+aSqSKjBOluSiJL36NKVonRl8v\\-k\\=394(?:\\?|$)" + }, + { + "hash": "ff824438d17175e2a2210c3a37aeb09fc06ab21d31423cb43b231cc270746dba", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a7db7801043903f8c580316603c958d69d5bb92085a36f770f78a8833485ddbe", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6d72785601362039a9d703e29e0ca8e5696eb60c93099af7e172aec09a9c0484", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245764e0e\\-fac127df\\-a9e0\\-4821\\-a39f\\-da4de495a854\\-000000[\\/\\\\]+TbEeG2Yp\\-b4j4APlAonbVSV8axo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6df51\\-8ea2b97d\\-c9bd\\-4a14\\-b0f8\\-c6c8aacf4763\\-000000[\\/\\\\]+BZHfMhIiCSbs4q3TWKKUzd60pLE\\=394(?:\\?|$)" + }, + { + "hash": "66591dfc91d8c1781e098d36eec7932361ee23c9685aba4a3204bc43125d3dda", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d2fa1cb42b7b65fd2653ac60803776a0becb389cc068f1dfdc720fd336d603ce", + "regex": "(?i)^https?\\:\\/\\/www\\.pb3652\\.cc\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "93e3ae7334528d3e5b254903efc0e11953d60a321cf325f9f29dbcc2ca7b66b1", + "regex": "(?i)^https?\\:\\/\\/teewtwetwr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "277e789f9bec872bbcfe5089f289b6da535a2f460a1f408d9eae63093f0914ed", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aa7dd7\\-01e19fc1\\-0883\\-4dbf\\-97da\\-b41d49787dc7\\-000000[\\/\\\\]+OR70l3x9zFBPCgslM6LyQezHTeA\\=394(?:\\?|$)" + }, + { + "hash": "7c404109ff71e455bee0b60cef7e3162fbc204fbf6e81e635aabbfbed67ddebb", + "regex": "(?i)^https?\\:\\/\\/nokpark470\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6ea2ffb96dd2e67b5012e12ca171676612ecd0b3ccda3aa6baf279f97153bab1", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "06b5af4840184bdb1b0cce6bc9fed5cb50d3168811055e36ef63ff9ffe73c2cf", + "regex": "(?i)^https?\\:\\/\\/zxzxzxzz665\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bce87e3d3a1a9651017b9038c4d09fbf2f228aa0aa5084024eeaf6c5dc232559", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c4e7afcefcf6cdc7cf8746b4ed3886093c46987b52a827b06f1d10c0328b85d3", + "regex": "(?i)^https?\\:\\/\\/dfsgfdbghtegsrdfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d5fad52f00ffb94212017c00112a728107fd74aad76ca310dd95675b3cd7cd81", + "regex": "(?i)^https?\\:\\/\\/trhoaksemasntrasvaskzmaaea\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "17146cb79eef19435617dcf0bb65926abf210f69aee152141e033b89b1e7b760", + "regex": "(?i)^https?\\:\\/\\/netflixgen2022\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fda1219ae36119462247cb6312c6fb6ffd0dcf63869cf1973929b9ad35308b49", + "regex": "(?i)^https?\\:\\/\\/komlaoseyhnxuakeaaza\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1259f690b29a3680457e7440b45d12a81de635ba70c944d5ea39007f238a9484", + "regex": "(?i)^https?\\:\\/\\/komlaoseyhnxuakeaaza\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "55fa75ebfb0520a73d5fe0fad7523569074b2c885eaf56ba60c3917c3fa897df", + "regex": "(?i)^https?\\:\\/\\/netflixgen2022\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924564b25c\\-16781378\\-b1fd\\-4dd9\\-9d85\\-5533b08538ef\\-000000[\\/\\\\]+a9Cj5rUwYjtfMW_pLRrDCVCNGpU\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "7eb2c3f99d4c6a8b81f0bc6e3d0ac59b3e9d91c90d02f9d6eec06f239f339dfe", + "regex": "(?i)^https?\\:\\/\\/asfvsdagfvsdvg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a8ef5050430b2835e137f62fc2cff8d3d1e0b02a9d200ac445e9a48e344f3e2f", + "regex": "(?i)^https?\\:\\/\\/thucoasleasmtmasfjaszawa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924594be1f\\-d1431854\\-90d4\\-4f8a\\-99de\\-71b1a2e231a2\\-000000[\\/\\\\]+O_65lhzs011pL49AOZ6ZZSXcSWg\\=394(?:\\?|$)" + }, + { + "hash": "bd98d9cbbc3a7288408a472d7d797a4654ea02f459de9c331a16b2523b0eee67", + "regex": "(?i)^https?\\:\\/\\/buiosudfewofusdoifuieufsdiieeui\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a179f1c65aa20e50894442a4525f40c100d51e950ca831a89a4f02b87f9ef0e3", + "regex": "(?i)^https?\\:\\/\\/komlaoseyhnxuakeaaza\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245692ab8\\-915a413b\\-bc7b\\-4584\\-b675\\-d829499555a9\\-000000[\\/\\\\]+0hcFdLZ2WB4GpcuTQCfw97zX\\-Wc\\=394(?:\\?|$)" + }, + { + "hash": "f267a418338fd28dc34904e84cf11c8728a5288ca2858ff64db65afe7a14d2fd", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a35325\\-64848119\\-6058\\-4a46\\-9fe4\\-9f191bee3d6a\\-000000[\\/\\\\]+VSdTIf3EvlbIFRI1IKvtOsSMFFs\\=394(?:\\?|$)" + }, + { + "hash": "83ce8b9bf3b0ab39e36d044a3aa415000ece60d4f5528a8849a28fa1fdb6a232", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+etisalat" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b053f8\\-b83a3d06\\-01ac\\-4ff9\\-9efd\\-05df967b4f36\\-000000[\\/\\\\]+bbXyBeXPu5yx2LjKUO_v7qdFZwQ\\=394(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "7c21ad6bbd7ddcb786123f24e565e6e4a1345fe34fe441dbdc87a9e0f33b87b0", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a35325\\-64848119\\-6058\\-4a46\\-9fe4\\-9f191bee3d6a\\-000000[\\/\\\\]+k0D1OUU_0JppjK3cYVa9\\-Yy\\-16M\\=394(?:\\?|$)" + }, + { + "hash": "cb8b06da25d95559c1b6d7e237d0ee7530240e9c814a504b9d55105988215448", + "regex": "(?i)^https?\\:\\/\\/mail\\.147\\-182\\-161\\-238\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9bb8a3ea3f0a97b6a1308520c9fb953513b379924ed60bcfb5c1c40463fb898a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+n19cuf(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aa0b96c03f07fa5986efa1a3e3e9be0ad76fed8b3c0557e4c1db897af78c879a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.bzVLTNG1KDfVVQ6cmnow9xnaeb\\-2BdBA2HskbpzwEUrymaHoOg7WiJC0hrOIKaRyI1poyIqF5MHTnKE9Ik82yp3j\\-2FA4S8Jfr1QAPaQ1If7EbMLV5tIZuUD\\-2B15nI2KSPMu88S63OUVf1HYu4cN6FWeIOdkv2POEnDe\\-2B7hz117S8jTU\\-3Dk_Lr_p12xlmf9wbGYP74J9sxQbT\\-2Br4BYZqt3Kqp69yM6ZWA\\-2FF6gIG1ucongL6FGPHDAMflyY666blJgyYW6HfGxMwESYELK9\\-2Fd36yK\\-2F0tGVJjNIqKH0L35sEULYTp8v2OBeMHjsm1gijco8eRfq6ZnclSHOG5L2CPuFW\\-2B7HtKJjBZVIBz\\-2Bei6i4h0AvZJfnvKG\\-2B8fYRAy2n\\-2FDq1mtHf\\-2F8QUZkdA\\-3D\\-3D" + }, + { + "hash": "1d8cd9f83bbd2a18decebcfc5b41fbed12477401d85bc76893e93a421900fdce", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bf353\\-17364e43\\-8f58\\-419f\\-b76f\\-eff47d72a137\\-000000[\\/\\\\]+HiDMQ1gZLko3UX2jZgYyJhsbZsc\\=394(?:\\?|$)" + }, + { + "hash": "ce3c8b7c879a27cc30e4da109c791596eb3345eca3972e3999cf7ccd56b1202e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a7d0a5f3184ad88d2c57d40d78ca2235edbc2f2ffc7d110ef15a837daa644457", + "regex": "(?i)^https?\\:\\/\\/primentos\\.137\\-184\\-139\\-150\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0684c323e17426abcd7538d60113bf3b4dc77550c6506f7ce4cdc1fbec5a8bf4", + "regex": "(?i)^https?\\:\\/\\/mail\\.pp\\.167\\-88\\-171\\-234\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "babf6ee5429811c87c9990a74167ce4549854a7d4f7640fef7fefbb799260ccb", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.147\\-182\\-161\\-238\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2422b43bf62e421282b6c03e85c4610514e4ea0af49546a482c20bee22ee5d9c", + "regex": "." + }, + { + "hash": "c0b4108e042426975db1e84058decf18deb66c3d534c9dd812246f84507cb96d", + "regex": "." + }, + { + "hash": "a8624149662b89c3da31910918cd82cc04075e607fc29f0243f3d761cba216e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hjgfdjhj(?:\\?|$)" + }, + { + "hash": "4b52793e392d04accd137c0e74e0f1a627f9e332565a8274bd96a3136577cfe4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b053f8\\-b83a3d06\\-01ac\\-4ff9\\-9efd\\-05df967b4f36\\-000000[\\/\\\\]+IIhqYfzRjWUcgxVV1Px5gcIpFcg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b053f8\\-b83a3d06\\-01ac\\-4ff9\\-9efd\\-05df967b4f36\\-000000[\\/\\\\]+IIhqYfzRjWUcgxVV1Px5gcIpFcg\\=394(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bf353\\-17364e43\\-8f58\\-419f\\-b76f\\-eff47d72a137\\-000000[\\/\\\\]+O28_3flksZrX3eKt8CVZjlfG1qA\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+kO1HHV5OsHy0dDOvxll6wUrGLVo\\=394(?:\\?|$)" + }, + { + "hash": "d258b141b84e29041b897a16ef4558bcaf29ec677a546fbc91c9ede28f544d1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+73YqjCXGK3b8nxflbEiVIUrFN88\\=394(?:\\?|$)" + }, + { + "hash": "1982d442369afcefce490f1c59a4d7e240f26fd76bb1e9ad46b2500e124b0b8f", + "regex": "." + }, + { + "hash": "78a7d84cc1849e9fd275b52d751ef0bf64a5940d1359ab48ba6e76760e3a8da2", + "regex": "." + }, + { + "hash": "3821a83860f2526fd197a045015c9b77c14dc85346c8f192e155010d030bcd8f", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?business\\-fanpage\\.contract\\-inc\\.com(?:\\:(?:80|443))?[\\/\\\\]+omplaints\\-page\\-policy\\-id_page[\\w\\-\\.=%]+" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+73YqjCXGK3b8nxflbEiVIUrFN88\\=394(?:\\?|$)" + }, + { + "hash": "f3b108a4eb488cd8ccde618e40a05b5c4546b2af94997cb929eff6faa77627a5", + "regex": "." + }, + { + "hash": "c7eab95977317f9b267f4529ba4265ae77c047c8a34bc5ad161fe1e113bf8852", + "regex": "." + }, + { + "hash": "e38b9d83898f12d8e27262d273545ba7f73860b83f8b01a1c8d8607b25be6ac9", + "regex": "." + }, + { + "hash": "3bd15d4d34d36300f9a5f0062d40a6d6cd1f9f118b9633e1543815993b71cfbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+73YqjCXGK3b8nxflbEiVIUrFN88\\=394(?:\\?|$)" + }, + { + "hash": "e520b14c628e87e91a84a0177466ca77820085cd3986bd14858f1297c3c04a5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "94999a71a0a4f7b0c2b6bf8fcca500c738f7ac0206b622591930370c72d78fec", + "regex": "." + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924561be76\\-c68d73fc\\-0a59\\-4231\\-8f3f\\-0b8cc3741038\\-000000[\\/\\\\]+mNHsDdAwLgZMtGqOQ0ape\\-2lfk4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572a687\\-985d5e7e\\-a6a4\\-4fb1\\-a0ef\\-a350d6db11ee\\-000000[\\/\\\\]+z72tPykgNEHUDAp2UmMrrDP6w9w\\=394(?:\\?|$)" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+73YqjCXGK3b8nxflbEiVIUrFN88\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b80299\\-4f460826\\-07b9\\-434d\\-aad1\\-ee92b079da09\\-000000[\\/\\\\]+MZL9dBrGf2CWJ9syWPOWaV8gqMs\\=394(?:\\?|$)" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b1f01\\-b29a86fd\\-c586\\-4e73\\-b7a4\\-3b875f49fee2\\-000000[\\/\\\\]+cC_JnO\\-JmfQobKjYVP6uLgNz6cs\\=394(?:\\?|$)" + }, + { + "hash": "4b52793e392d04accd137c0e74e0f1a627f9e332565a8274bd96a3136577cfe4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+kO1HHV5OsHy0dDOvxll6wUrGLVo\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "d258b141b84e29041b897a16ef4558bcaf29ec677a546fbc91c9ede28f544d1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b1f01\\-b29a86fd\\-c586\\-4e73\\-b7a4\\-3b875f49fee2\\-000000[\\/\\\\]+cC_JnO\\-JmfQobKjYVP6uLgNz6cs\\=394(?:\\?|$)" + }, + { + "hash": "4b52793e392d04accd137c0e74e0f1a627f9e332565a8274bd96a3136577cfe4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b1f01\\-b29a86fd\\-c586\\-4e73\\-b7a4\\-3b875f49fee2\\-000000[\\/\\\\]+cC_JnO\\-JmfQobKjYVP6uLgNz6cs\\=394(?:\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "d258b141b84e29041b897a16ef4558bcaf29ec677a546fbc91c9ede28f544d1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+kO1HHV5OsHy0dDOvxll6wUrGLVo\\=394(?:\\?|$)" + }, + { + "hash": "cd6268d647f731cee9108b34cddd2f735b12d12243cc0c3d405ee11b634f7799", + "regex": "." + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a86458\\-a67f1e2c\\-4871\\-4cf9\\-8c39\\-7252bc5df13e\\-000000[\\/\\\\]+iOPooDOx6ngBbULBYJmH3AO97Zw\\=394(?:\\?|$)" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a86458\\-a67f1e2c\\-4871\\-4cf9\\-8c39\\-7252bc5df13e\\-000000[\\/\\\\]+h\\-dpXsexdt5PKzt0CYuosCz4Yd4\\=394(?:\\?|$)" + }, + { + "hash": "1259bb15aa1a2ab75b4d96427d5f8889a45c45e563ce25c3eb10e14e3f106894", + "regex": "." + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3DasWB_3\\-2BB1Rlr8rAuxoYTeY8zcQWOckQjVj63737AC8s\\-2BgpdQvjoIn\\-2BRbELPRC1HDu6n2pDc8Vlihts5xQ6R8w\\-2F8ucrsgSMXo7kgXl\\-2BjaD4j8FuZWT8YeO7iFaxd6\\-2B7atxF5VfiXhAqMIdXk4\\-2F2wVoaHeyuf8hU8IcR4TXZKjn6eyQ\\-2FbGaB\\-2B7esscYRYgK16DXD\\-2BHv3dWfYlyX2QFM1lAoEaYV4gVloo4bI2TVFWt9gDjL9I3UsOzT6Yi2ADM\\-2BOMgm\\-2FXxVNYq56iQHtF3P5OrZ6\\-2B6m4KBe0WobkCkwuMrnC8J1NIT87EtcZt7oWEKueCjqTyjJMHOzEBLa2jlY9b938340oqrHslNmUJPSogTr3uBaWAm3nZ86uLVJVPOepqmgXos1ozST0cgse8T\\-2FnOX8WtzQUq1Ck7yfoDn3DZMioXGz03kVLSf8ftDZ5ZhRcR02Tp\\-2BayGVLAKyDWnMUYQeRhZ20NVAqMN68cXMqPjuSLOYyl8md0W4NR7Me53lsjQgSv38s" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b80299\\-4f460826\\-07b9\\-434d\\-aad1\\-ee92b079da09\\-000000[\\/\\\\]+mndUNwwZ1NN467S7XHdwztEGsu0\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569526b\\-6981c5aa\\-ad10\\-41e8\\-8d56\\-7b60ef8445f5\\-000000[\\/\\\\]+_yLKHSRJ3Sbbun9VDEKzTTuD3Fc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b1f01\\-b29a86fd\\-c586\\-4e73\\-b7a4\\-3b875f49fee2\\-000000[\\/\\\\]+9vJWrSN2rVJh6cZ7BhdhdF9cmV8\\=394(?:\\?|$)" + }, + { + "hash": "67c4885511a89a60fbf90677a51528016e8a659e87d6a63b23658918d1d57e2d", + "regex": "." + }, + { + "hash": "73192e02ff51f1bc30884e463d0c7c03c8c2b894716a9bb68e089cdfe709629c", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+kO1HHV5OsHy0dDOvxll6wUrGLVo\\=394(?:\\?|$)" + }, + { + "hash": "083194664c7d199bd3a8d71d2601b8916bcd7b4a69dc6af177e731a9ec4a098c", + "regex": "." + }, + { + "hash": "858197579fe340af57b4d352582acc0c7a97f7df81fcb30183046e997d043d18", + "regex": "." + }, + { + "hash": "c4fc473e98d407e48b94f6c523122d4c51c2b4cb2126271ed2f883c86615c81c", + "regex": "." + }, + { + "hash": "f17dc4fd2001def39506185e05b2639aa21a045e2363ef415426032be314cfd1", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924582516c\\-5b87fec7\\-b6a9\\-4830\\-a1ee\\-8e2cad8ed53a\\-000000[\\/\\\\]+DCKfK7ljoO8vVYPVHXqAazEcq7E\\=394(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "3bd15d4d34d36300f9a5f0062d40a6d6cd1f9f118b9633e1543815993b71cfbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+kO1HHV5OsHy0dDOvxll6wUrGLVo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b796ac\\-459af8d3\\-f363\\-4fe8\\-b936\\-d5f656d10c6f\\-000000[\\/\\\\]+e6Kg\\-595bulqmztR4yktas3AAeU\\=394(?:\\?|$)" + }, + { + "hash": "424005fe492126a4ca47303d0957a154167edb8bead30e950837b14b3e26bd42", + "regex": "." + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3DXX4J_jq1vtDkwF05Sb79VPZSHqplPoo9Yt7m7cFochsGivhWXE\\-2FJcbz\\-2Bh06LvNXMrN777gYVvM5KTSDxmummYIzeFmJI8ZbmWcJp\\-2FBUypegMRpQXwZhQe\\-2BUCt5UMN549oDbE7uUPSkXOCjhSt1CufVnf8pwO3iCxZuf1H3\\-2Brt5JX2iySTlsN3V6MtRbCEXB\\-2B\\-2FTM0fLVMBRMLVxL3FlBPYThc4HIhOcN6dQEkwOX9jaOs3sb\\-2BKBayHHgSfpEOMd3MwxGJoVQ4fqlUdm8d917Cel8XOqAH8lnVxBC5DLODLn40aCQ7TfAbPkHErjF1I5hnGzUhd78VTkEHjgm8AjR7a53eL9Vp0M5oV7qp8ghL37Z5S7kZ0VI\\-2FFFGHTYee1cb6ItOG94Y6vVxEixunNi79U6aqARE8XGAY0f01j\\-2FwqSTc7nacRGBK2ISVzjfdkvD7ZvqP7sXzJ4044L6qYd9BF9X\\-2FSiKCqloWeE5xZQKA7D4EmQaicP6\\-2BTvVF0NVbyMrKxaqgJH" + }, + { + "hash": "4b52793e392d04accd137c0e74e0f1a627f9e332565a8274bd96a3136577cfe4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b54f63\\-4301723e\\-dce4\\-4435\\-8a4f\\-1ddd2fb248db\\-000000[\\/\\\\]+J6UU0tMrld_\\-vvgO_KIoZqLeKDM\\=394(?:\\?|$)" + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3DBUH\\-_yvz\\-2FMkUh26N2iyTlDQWw8x7R40us\\-2BgmzZR5Uvf5t0Om5\\-2BH8TqpfxuGEVAOlVwCpbgF7SwmP1uRq\\-2BgY2\\-2FpZ5OxSXUHm9b86ihKcMd\\-2FwuMAxuCDfrfOrFPO98mMNGBa0rKBSbZ2NLxv\\-2FhrFRJg9gsv5hCfbF0erqS0pPL3p6SVDXMxFEYImS6GnKgAbl5QagpRE1KgWFw48yBt7epV3PEHkx\\-2FC7rl8rWLGWainaOsM2HVgQ7zkCDjbhnAMq4G7nA1L\\-2FeYZiyFze7aufzIMNLbJUPz43PvWX1R6LlCLuHKsns8UQjmmdhTxe0\\-2FLfB2EUb9jXBSMt4Y5\\-2FgXSeUWno9P\\-2FRvBqwIW085\\-2FAStbVt0DbX5x67yBtswGwdqxnU8Dc2cpi3K5nvB\\-2Bhsc7L87V3cjI\\-2BGoCd69pY7wmeMCmmupixACjfnO8eiBhgNaqIQIve\\-2Bv0oeS1hUWsigW5lolcyvUpEIln6\\-2F6oVD7jGVTireOLmjyRYmLCXbKJP2kRggoTBGmuu" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572a687\\-985d5e7e\\-a6a4\\-4fb1\\-a0ef\\-a350d6db11ee\\-000000[\\/\\\\]+Lj0ZfUCCP7FDwB_hMpisE\\-jrv1o\\=394(?:\\?|$)" + }, + { + "hash": "788debdfbae0f08f2396c68f282146eee107855261595238e0af87caeffa3e34", + "regex": "(?i)^https?\\:\\/\\/att3036568\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924582516c\\-5b87fec7\\-b6a9\\-4830\\-a1ee\\-8e2cad8ed53a\\-000000[\\/\\\\]+uB6E1Wk3dyyWpUHEy8vpsiCjuts\\=394(?:\\?|$)" + }, + { + "hash": "3bd15d4d34d36300f9a5f0062d40a6d6cd1f9f118b9633e1543815993b71cfbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572a687\\-985d5e7e\\-a6a4\\-4fb1\\-a0ef\\-a350d6db11ee\\-000000[\\/\\\\]+z72tPykgNEHUDAp2UmMrrDP6w9w\\=394(?:\\?|$)" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b80299\\-4f460826\\-07b9\\-434d\\-aad1\\-ee92b079da09\\-000000[\\/\\\\]+mndUNwwZ1NN467S7XHdwztEGsu0\\=394(?:\\?|$)" + }, + { + "hash": "756205d97868227e956eb4ffba07665c848b09cbe59749583e25197eb2e5f37f", + "regex": "(?i)^https?\\:\\/\\/rahulverma6zii\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "390c1191e101e143447e0989a1b827253e6e0abf4fab5f32eec7ca4d666e8892", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b796ac\\-459af8d3\\-f363\\-4fe8\\-b936\\-d5f656d10c6f\\-000000[\\/\\\\]+LLMoNk3dMM49xwZgFNxfgs9EKnc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b54f63\\-4301723e\\-dce4\\-4435\\-8a4f\\-1ddd2fb248db\\-000000[\\/\\\\]+J6UU0tMrld_\\-vvgO_KIoZqLeKDM\\=394(?:\\?|$)" + }, + { + "hash": "4b52793e392d04accd137c0e74e0f1a627f9e332565a8274bd96a3136577cfe4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572a687\\-985d5e7e\\-a6a4\\-4fb1\\-a0ef\\-a350d6db11ee\\-000000[\\/\\\\]+Lj0ZfUCCP7FDwB_hMpisE\\-jrv1o\\=394(?:\\?|$)" + }, + { + "hash": "4b52793e392d04accd137c0e74e0f1a627f9e332565a8274bd96a3136577cfe4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b54f63\\-4301723e\\-dce4\\-4435\\-8a4f\\-1ddd2fb248db\\-000000[\\/\\\\]+\\-lFfvbnaifXChhBUFtx1nozbfO4\\=394(?:\\?|$)" + }, + { + "hash": "692176fbedefc8bcd5c5fd1d4bce5c5c30406b9f89ec550e6e7a7d974a3cfc06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auth[\\/\\\\]+sms\\.php" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924572a687\\-985d5e7e\\-a6a4\\-4fb1\\-a0ef\\-a350d6db11ee\\-000000[\\/\\\\]+z72tPykgNEHUDAp2UmMrrDP6w9w\\=394(?:\\?|$)" + }, + { + "hash": "52432335fb9a566638c9fc993016554ac88ac0d7a6daca1dbec352e891fb98f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b54f63\\-4301723e\\-dce4\\-4435\\-8a4f\\-1ddd2fb248db\\-000000[\\/\\\\]+J6UU0tMrld_\\-vvgO_KIoZqLeKDM\\=394(?:\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "4d7ceb2712c61349dd39385d4903e4d8b0f4b5b92b35f94203b637a9c7d5ac98", + "regex": "(?i)^https?\\:\\/\\/hustallwapp\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "692176fbedefc8bcd5c5fd1d4bce5c5c30406b9f89ec550e6e7a7d974a3cfc06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auth[\\/\\\\]+info\\.php" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b1f01\\-b29a86fd\\-c586\\-4e73\\-b7a4\\-3b875f49fee2\\-000000[\\/\\\\]+cC_JnO\\-JmfQobKjYVP6uLgNz6cs\\=394(?:\\?|$)" + }, + { + "hash": "75ab853505c167dc2cd77c599fc64e08d54f58f61716e4ad5ef0c690558bbeba", + "regex": "(?i)^https?\\:\\/\\/www\\.k7h8\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577827a\\-23bdc701\\-f5c3\\-436a\\-967b\\-aea056ccdbd5\\-000000[\\/\\\\]+FDcPlGepj\\-KtnT6LwY0qIRNoMr4\\=394(?:\\?|$)" + }, + { + "hash": "ee6dffb619b049081521871e8a5b1ee1f6143cbfc542e6a816daed96146bfa66", + "regex": "(?i)^https?\\:\\/\\/shaw\\-104665\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7ff505a49571d0f8a693e17c8662e5a049da7e5a0040716fa3b989f58be9143e", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b54f63\\-4301723e\\-dce4\\-4435\\-8a4f\\-1ddd2fb248db\\-000000[\\/\\\\]+\\-lFfvbnaifXChhBUFtx1nozbfO4\\=394(?:\\?|$)" + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3DvKFK_jBZVEEl7\\-2F8xLTRUHkQMMimcmsUEKjGPcCNbwhC3uJC8xdMnwQjBYkIvT2RJcOcOfKW487UxAdGbVB4VzGQEDrcAD3ppD\\-2BYC0w\\-2BLOaDp19muyJBnaq41OVm9k8DVc7iY\\-2Bf89cip\\-2FHNObGg6Tf5OOD0lmRjCWpdQkKkLH3k9np3H\\-2FhihVscdkEcX1Wy2IO5fV4yPcpK3NwJWunh5lX\\-2FNoig05IRSwpI\\-2FOT\\-2FwuaXrA9voDlkVUzjmnxMvNz6R8\\-2Fdb34O7azSjL\\-2FeosnfKLS\\-2Bj0LGJqKjYIMkoaPDeZc9uoPgz7ks1hemRgxEP2owC9\\-2BjE66FCObOVOSq2\\-2FFGCfwFZRqxsKmspAyT\\-2Bz6Vp83qa3CXJelwxfrSG5YD3CQt4\\-2Bn9F7OoEhM\\-2BxWZFiEoYDwrLWVRU\\-2FnKFHcY43eYSJ2g98kHvXWR\\-2BHocEg\\-2BvqvwcBaZGzTThyjREjmP60GB3N4XgIxjMJo2muDB\\-2BMqoJ3R\\-2F8cZbrMal0\\-2FC0R\\-2FjMx\\-2BOs5587hy9lo" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569526b\\-6981c5aa\\-ad10\\-41e8\\-8d56\\-7b60ef8445f5\\-000000[\\/\\\\]+_yLKHSRJ3Sbbun9VDEKzTTuD3Fc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924577827a\\-23bdc701\\-f5c3\\-436a\\-967b\\-aea056ccdbd5\\-000000[\\/\\\\]+R1pDnZK2KmfecQ6pqJu\\-Yljfip8\\=394(?:\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3DdeiP_PqDKAMaKAi0hyEiARQ\\-2BT9CJQqbdRe1fAdqDP4638Fa4xjBolTalt6mukEOxYxzQKBf\\-2Fqr\\-2B1YgwAZ07n7bkLAkVtvThErKri6gyN1GER3i64UUWIZE5OH\\-2BFmPoRDmojFUxGU0YRgR\\-2FkI0KpU3nDCGO9ge96bR5XBT1Ml0GgFR7oZePqe\\-2B\\-2BAZrQ80drSwaNxgh2K\\-2Flc9K2p\\-2BN9p6YM\\-2BDckzMRyibrbyAkC2qng\\-2FhTJN9sYf1xz91G36jAPq2lfc8DUAKdIrzdznH\\-2BZ9tPwpqH3i4x98NXrn9pXwDkgLdaTRhn7rv4PlDwEdvCSLCrgu6tCFyVrNts10p9ZSvwwmZJrEnLLEqacV\\-2Br3\\-2BPkaC85v2IkB5edxRh9f8ieNjnuLIDE52AaPL8\\-2Fqb\\-2BcLPV7Q0M8riTviclxRP2PvUNBeQ2JC74VF\\-2FMSE3cohM047wGHkZt4EbqDo2tKeA0TrMUstYg\\-2FTLcP\\-2F\\-2BV20xVLqFFEMkX85z1Y6naCBLktI\\-2BQlMfGB4OBtS" + }, + { + "hash": "030d8763426e9eb8f268324c5969308d490f817a9a88d5ed6035684bb67da787", + "regex": "(?i)^https?\\:\\/\\/login\\-page\\-103886\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3Duv1R_Ir6uQfOMgIiuuwOs1fOvlHw1dXAMcQ5hr7YromKo2UcSTnc\\-2FnZDpXOZS07JrFOotpUe7sjeEb3owlSGkT1Dj1B7xIFja4A5a5Sq4IT9\\-2Fzk0zSjZpoOL4yFPOnjWkCxp8GPgXacMpz\\-2BND7\\-2BsKwFqjB\\-2FTOEtHA9aF0xLHSKZ1gp7iMGS5JoYtZrKsK\\-2FBqZwcCEmsbLNUs9MfSWoD0JYy8\\-2BeDyjD2\\-2F3hvQGQ2jGR2SjAOFykzbjoljYPWpa6c0L7CTCftBN8cx\\-2FDRpweUQSAiowdy7zFzj3fMyujddFvc3HEYnEdMRY3gS96D8rpBZaHt7\\-2BUpiwKry9\\-2FU5058rdiOv6DMPUQaNsyMrv\\-2Fpw9dXCqcjSP\\-2Brn\\-2Bv5NZJUejuVdc8MG7x\\-2F6v22XSNByV3HUZ4cKMzv4KPfq4FTjVUkxIZ18eARN\\-2FfM5oRQla9c6aPZu18BTJyH0TcbY\\-2BKK77Yn4NaHfFCHSnpPe8HxyDXOY\\-2FdniVOyY6xXsGsznj9\\-2BRfzljNJJMC" + }, + { + "hash": "5d23bff2468b743970a6a1f8edb4f08b1629d9af61d06d5ed64ccc076783bf39", + "regex": "(?i)^https?\\:\\/\\/eastlink\\-103968\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a86458\\-a67f1e2c\\-4871\\-4cf9\\-8c39\\-7252bc5df13e\\-000000[\\/\\\\]+iOPooDOx6ngBbULBYJmH3AO97Zw\\=394(?:\\?|$)" + }, + { + "hash": "0d2f38973d40ab018a6099a716f093c82f03376e93fa9cf8a4d89434b772a594", + "regex": "(?i)^https?\\:\\/\\/shaw\\-105817\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3D0W0F_f9uhS6qayjkGO\\-2FxD0ING8CoKSdBppCuNghq7\\-2B9i4MIi4F6MlasooPXrKL7JjOjfLOKa6JGqogH\\-2F3jz\\-2F1V07Lq4t\\-2Fvvfr8QN6uLOfRriZRIFqqYQZqIZafFPpVskpQ31ho\\-2FYZIoOTwzQXKNBklfMQ1FfvsG\\-2B2omFCc6w5pgSB69HUw15AWldhpZXmPXHQg4\\-2BnjK6iwT\\-2FjIetG0ptD3rd8abBqM6hiGZOb4BFGmbgmKP2FyLY6haTxAi4EF\\-2B83PpqGIzBOpjfB4\\-2FOSROeq3KZvHQnmkU9fXuuIsI1oOx20iwtSIFNCn0FuI90c9ynyba\\-2BxzmqvO\\-2FCgRApwbIVUHbvBKokc40s1Xox9zt\\-2FVC95nimzDL3vKQNjxb2uu12YNXeaGM60SztHSAETU\\-2Fv6w9Wqs1usy\\-2FG8JBO7bbzTSsvtfTpER3K8DseM4TGv2Hqb\\-2BU8k\\-2FCCJO96umjZRSCvTjRSqd\\-2BiTE7T8iRKAepvmgammjSCe4a1ZP5ZCmZaw9zpdsVuAr" + }, + { + "hash": "23ceef92bcf7581354684330004aef79beb0464c3a719e9640d4462f9935e46b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+spacefridaypay[\\/\\\\]+attach\\.html(?:\\?|$)" + }, + { + "hash": "3bd15d4d34d36300f9a5f0062d40a6d6cd1f9f118b9633e1543815993b71cfbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b1f01\\-b29a86fd\\-c586\\-4e73\\-b7a4\\-3b875f49fee2\\-000000[\\/\\\\]+cC_JnO\\-JmfQobKjYVP6uLgNz6cs\\=394(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a86458\\-a67f1e2c\\-4871\\-4cf9\\-8c39\\-7252bc5df13e\\-000000[\\/\\\\]+h\\-dpXsexdt5PKzt0CYuosCz4Yd4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572a687\\-985d5e7e\\-a6a4\\-4fb1\\-a0ef\\-a350d6db11ee\\-000000[\\/\\\\]+Lj0ZfUCCP7FDwB_hMpisE\\-jrv1o\\=394(?:\\?|$)" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b796ac\\-459af8d3\\-f363\\-4fe8\\-b936\\-d5f656d10c6f\\-000000[\\/\\\\]+e6Kg\\-595bulqmztR4yktas3AAeU\\=394(?:\\?|$)" + }, + { + "hash": "97605914563c9a10173b99918e621e04a88b42b1c50ef67c9567c4a372d7ee7e", + "regex": "." + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3DrbSm_ZdbVcmVDKDLE5HB3p5pXO1fAwPwHdo9Y4Jh\\-2FEpvu6NHmBWBchFJwROWSExViOBPiyPXdbeb\\-2BPC7nZYz3oBOApqa94PeUPhohagqY2GWSGBZbKlZNr4PKZlpZnDpL\\-2F6sRmn1KkNeCu86OJXvgj52np2ADeBe8VkuoUAEeOxxe6froTQZDhxpPjVKd1VbdqfFGpGXf\\-2BYTLjhgUFaxPNUhlS3Ue7kfZUlk8TRidfJ2Z6sSeky0hn0wHYdzB0o8TbD9SVbCsncIDaYj1ewhCDCB36dLiJqoPuWDRBvnN3HqOOMLT6mFVVEqrw7nHuQWF6wzeY1ZKYII27dDD\\-2FDlLrddbBAU\\-2ByZmFYGW1hegdHhe\\-2FPpf9R6IL7mr5iRtLhAKc3VLkq3O2G\\-2BIbsgRlR5zPhoKekhfgMks\\-2Fkw6uZcGjBR91OL6vkOxrFuVFJLxSYj2R5Tjuy9rHDI\\-2F34VP5uaFl4krCN25Bevw893grAVSWvd4zQmWI\\-2BaXHKQTPd9\\-2BR8SA5HDcp" + }, + { + "hash": "c2b5b71729f50e76a8a128e4c1722de39ab4905044b1ef82f50ae848dd09574d", + "regex": "." + }, + { + "hash": "1e19504b19a049890e02bb3db2d5f86dcde13fc871008a9a02e7c00a27fc1e98", + "regex": "." + }, + { + "hash": "844ffdb79ab466bbb91f15f2e58692bc5b5f0428364037d9446016ec60913c5f", + "regex": "(?i)^https?\\:\\/\\/www\\.kpe7\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3bd15d4d34d36300f9a5f0062d40a6d6cd1f9f118b9633e1543815993b71cfbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924572a687\\-985d5e7e\\-a6a4\\-4fb1\\-a0ef\\-a350d6db11ee\\-000000[\\/\\\\]+Lj0ZfUCCP7FDwB_hMpisE\\-jrv1o\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924561be76\\-c68d73fc\\-0a59\\-4231\\-8f3f\\-0b8cc3741038\\-000000[\\/\\\\]+lOk9PaXesXTexTnP36GpkuHdVvg\\=394(?:\\?|$)" + }, + { + "hash": "246513fd9e5037e39e23f34ae911d919b160319db543a86284262f2cb47abb2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "ecf28032b2d7aa844a917f41a1eef0890be3f55323b4e34e195288bce4e15282", + "regex": "." + }, + { + "hash": "edaba7b03d45e62e5845a55883bab926bdfb8a95beaefe2c4445667d1b7a9f69", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569526b\\-6981c5aa\\-ad10\\-41e8\\-8d56\\-7b60ef8445f5\\-000000[\\/\\\\]+mcb7vnsE_O\\-Nf72qjJCJYzZ36Pk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924561be76\\-c68d73fc\\-0a59\\-4231\\-8f3f\\-0b8cc3741038\\-000000[\\/\\\\]+mNHsDdAwLgZMtGqOQ0ape\\-2lfk4\\=394(?:\\?|$)" + }, + { + "hash": "52432335fb9a566638c9fc993016554ac88ac0d7a6daca1dbec352e891fb98f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924577827a\\-23bdc701\\-f5c3\\-436a\\-967b\\-aea056ccdbd5\\-000000[\\/\\\\]+FDcPlGepj\\-KtnT6LwY0qIRNoMr4\\=394(?:\\?|$)" + }, + { + "hash": "4b52793e392d04accd137c0e74e0f1a627f9e332565a8274bd96a3136577cfe4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456bb9a3\\-d6166e0e\\-471a\\-43ad\\-918a\\-d475a69f3e4b\\-000000[\\/\\\\]+73YqjCXGK3b8nxflbEiVIUrFN88\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "c8ad204ca5b7d6dec8f62d1b70e4c9268adced3712c076a4355fc5b6c2b42b50", + "regex": "." + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3DObKC_\\-2FvU5BLpSqLbYv7Y8MKsjsKkb7kQTfaKToUZJTrzI2Ym5MMZ8jzsyjJhXjlrEb8lMr2wLaZ1V\\-2Bbc9ty\\-2BzN3j4f1ozntP6C2oeOra\\-2BI\\-2FS2\\-2B5eoDdrmniiPZfhYlX5mCM0JodgvEk6\\-2FOt1zFtIbBwOQrBIAWOLv9Qtm9CMMzrEEGitZi2l7o82t4Wqscz5vPCfU3QNs\\-2FhWz8rBYQi0D6bZV6XPeD0giKGiVYeHP\\-2Fo0X1irBgrwEPE\\-2F8uy2coWxzFIqqMUdbo4ymf5y1YqBKwqEPTWHN053m55p0Rv1zdddkRUkZumV9OKwN\\-2BS4cobpfbWZFEFFUpgfCW6yE4n5fiPMlelCN2v0jZKmAUA1OoXzpbQ9yoCB6ToCplCss5ub7SxaDusOPHfSF\\-2Bmm9dK6NJkCPO7m4AHcJPGAVwM3YWacsNv9xiR4TowK71ibpOLXamta8u1eEpwj\\-2FIb\\-2Fc9GYJvIW6iaasyN5omwjgtWgfvcIOrzOkWMrJjejqPxK6cfwFgSWQ" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "1f57ace7930272361026da3e30ba4f911d4adfa73e88f68126c06c8fb2b235ad", + "regex": "." + }, + { + "hash": "d7b744837e45c92b118523123db870b166048b1f6379c249c10e0afcfa475157", + "regex": "(?i)^https?\\:\\/\\/342760\\.com\\:6899(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7111c46f85ebf02bb770cea5ae54740cc100bd9dbb538a0a9c8bdd48a995f7a9", + "regex": "." + }, + { + "hash": "c768a8118ed569bcf03fb3620c4c0db4d62ac4a840f9ec2ce4afd375c7104ddc", + "regex": "." + }, + { + "hash": "0e74f5c5d07ba9ccadc11e448b3b5e85f614f7a39ff922af3a698495c8b2eb48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pages(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2cebb2683b53b966d579255ee32f8c4912f215374b94729b5141ccf89fe6b17c", + "regex": "(?i)^https?\\:\\/\\/ramz\\-01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1c5c147a9010761965669765daec6482c30b0d70c7d9fe0e8a6e8fb3efe291af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vilek93247" + }, + { + "hash": "d7b744837e45c92b118523123db870b166048b1f6379c249c10e0afcfa475157", + "regex": "(?i)^https?\\:\\/\\/342760\\.com\\:5569(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0254e5a1df5717abc2bebe8474d51029c0bcc5fe8c112f8c279be43371a0bd3", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6a839483161f0d1d2c4c0c4c86eb7da483cb0d161b2b1139d1bbcc88cfb79903", + "regex": "(?i)^https?\\:\\/\\/attinc\\-106863\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b6b276\\-2780594a\\-56e2\\-4a06\\-9b77\\-6a11924efd92\\-000000[\\/\\\\]+Fcl6LolvPe1gBhS6PANbTExdA08\\=394(?:\\?|$)" + }, + { + "hash": "d7b744837e45c92b118523123db870b166048b1f6379c249c10e0afcfa475157", + "regex": "(?i)^https?\\:\\/\\/342760\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7e96d32e960725dff327419d8635c900dbc2b23c65527e450d7868f3948a1c85", + "regex": "." + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "ac4f05635ae61bab0e692bd1fea8aa6333717b3c3171c3089de559a92b566846", + "regex": "." + }, + { + "hash": "9760a13f56b545ac82162cf371835678308080d27eac9ae3eb8586a2d1236f99", + "regex": "." + }, + { + "hash": "08a0ad79594026dedd338d38c70f96f130770dcc112462bc4ce9cf7aed5c130c", + "regex": "(?i)^https?\\:\\/\\/currently0864\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9f31fef5a3cf21ad513bd96f2e93d3283673c2c4f7f7bbf3d9f1e1e398cc2f38", + "regex": "(?i)^https?\\:\\/\\/shaw\\-107141\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e6da80d682b73dacb652896ae16915ba36be8d966578f7e7d9b04c35dea659b9", + "regex": "." + }, + { + "hash": "c33a1d3fbe7dc339e02e277a611e0a899d9bad953f4e6bfa81b20e0f1dc66e64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+att\\%20(?:\\(|\\%28)2(?:\\)|\\%29)\\.html" + }, + { + "hash": "7e508aa67d33d8279acaa40bca32245bc7e5dff3cd78fdd04767ec4d7c133206", + "regex": "(?i)^https?\\:\\/\\/092735\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6cb541453d20d5fc6325962bc9a3aef4fdf0b9bb5cb142b4f4b1afbc129280f6", + "regex": "(?i)^https?\\:\\/\\/pub\\-1721223c23f3457fbb7eda7f3215db44\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b6b276\\-2780594a\\-56e2\\-4a06\\-9b77\\-6a11924efd92\\-000000[\\/\\\\]+xXCMGBsuioHPX_jp1oARNbHjc4o\\=394(?:\\?|$)" + }, + { + "hash": "cb93d7fe895ce76c021f0a38afee2e77eb171dd8846077b4a80293e84c2340b2", + "regex": "(?i)^https?\\:\\/\\/shaw\\-107018\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "16e72feeb000e5c3575afcd8fa9a34971c34a450347ec734c6c42badfc523f26", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb8507\\-d590c80e\\-03c2\\-4a37\\-ba9e\\-5ba30d926e1b\\-000000[\\/\\\\]+pxq3gPDDh_F6GFcNXg0bYaS4Vyo\\=394(?:\\?|$)" + }, + { + "hash": "a13ce3c47240f367de5c9448a6e1268558404b237296f7be97fe646baa415f63", + "regex": "(?i)^https?\\:\\/\\/gdr0osv6\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "7bdc7f876266518c81bf25971c828e8ca643ef4497988f8d5ecdc98a26fc1760", + "regex": "(?i)^https?\\:\\/\\/rewardcloud923\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "be300d38d38b8bd8a003385ea52e4cf38dafeefa87660deb11ceb4bd7375f61e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be43bf\\-61e29ab5\\-eb5a\\-446c\\-9fcd\\-7a67245adb5f\\-000000[\\/\\\\]+trZye5f6rF31pkJPmMsQwTwuxcQ\\=394(?:\\?|$)" + }, + { + "hash": "3d64808def30e2d812d9c899f3e056cfa6c0f631d4e6b75e08002266a0bf5a2d", + "regex": "." + }, + { + "hash": "2dd1c7ba8f9bad972133ea4bb4ef8c47cbde2be7d1a1c3aa86fb0030d626baa4", + "regex": "(?i)^https?\\:\\/\\/shaw\\-106665\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be43bf\\-61e29ab5\\-eb5a\\-446c\\-9fcd\\-7a67245adb5f\\-000000[\\/\\\\]+8UXnErJewGUaLtgrbd99QbzEVa4\\=394(?:\\?|$)" + }, + { + "hash": "ccc24e7ed79b43d0d178c8ed01006e3f7096fbc7f30efa01d1cbea832b7f459c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ma1l38(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9356943db6618011d863ae8f00173e769f885387ffd7a988c540ca3614a35341", + "regex": "(?i)^https?\\:\\/\\/shaw\\-101747\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3ce4e3064e8e7f4662f5b3abbb38d041f7bea464f21dc1a18e1bc06e23cb3d6b", + "regex": "(?i)^https?\\:\\/\\/shaw\\-107028\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be43bf\\-61e29ab5\\-eb5a\\-446c\\-9fcd\\-7a67245adb5f\\-000000[\\/\\\\]+trZye5f6rF31pkJPmMsQwTwuxcQ\\=394(?:\\?|$)" + }, + { + "hash": "933d51b851aeee88b500c24091460c2b4f3a4e4006ab8eedab500b63b96987cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "c01ed29a57201f7e17c571494bc3662d5eeafc8d0c60d94dc81009acf700725b", + "regex": "(?i)^https?\\:\\/\\/btc3rnfewrfc234erfbecdfcwe3r4312f3ewdfe\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e83cdd9ed066eb81f244302a998e69fa14b156bef33189c65fe8e2fbf3598de3", + "regex": "." + }, + { + "hash": "cab6a573f5a0b82bfe118a8683003c7293bf5f64b59e3b86a2df7a065f46938d", + "regex": "." + }, + { + "hash": "a1916e75c90a158649afb2c77b3f101cf3c94748becf477b59d65ecfa2518e18", + "regex": "." + }, + { + "hash": "3a848ef7a6bd2bb5eb9c83bd1580facd275a68d41e8d568aaf5e77d363cdd488", + "regex": "(?i)^https?\\:\\/\\/www\\.0o44l2d8\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "3d1c87b7236ef7bc1eaf860f6fef16a01dac1407a55706e2bc2a9a0e21dbf60a", + "regex": "(?i)^https?\\:\\/\\/shaw\\-102306\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7e508aa67d33d8279acaa40bca32245bc7e5dff3cd78fdd04767ec4d7c133206", + "regex": "(?i)^https?\\:\\/\\/092735\\.com\\:9900(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1fa45dba44a3058bcbec00de058280515311fedd7b0e0ea824227d2163524528", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb8507\\-d590c80e\\-03c2\\-4a37\\-ba9e\\-5ba30d926e1b\\-000000[\\/\\\\]+rMnImslV390CACkOm0sXk4ynGbE\\=394(?:\\?|$)" + }, + { + "hash": "53be65a021c81b0d4045bf45e45b741d15438146f355267be7b8dc8c30f8b3b8", + "regex": "." + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+aprobadoshome11\\.blob\\.core\\.windows\\.net[\\/\\\\]+libreinv[\\/\\\\]+index\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "e4af68052b6aebbc4ff44e76334ed509208d662d19c3e605eea177066f8be02d", + "regex": "(?i)^https?\\:\\/\\/shaw\\-102195\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "47997119b707c56d6893c415303c4aced10380ccad18911c8a148708843b7b8f", + "regex": "(?i)^https?\\:\\/\\/mnmnjh888\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "33cda0028ea9acfab5652791cd0ba80e77efe32404a455c15a351af18fc99d7c", + "regex": "(?i)^https?\\:\\/\\/bafybeid2ueb4zodd3i2nrdfotyjym4ko7l7hfol5zcognzipospvwyp2aa\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "a30aaf21bccc3f0468054b5042d57cbb3e4abf59ec44297b0ed4156d0ee6f26f", + "regex": "." + }, + { + "hash": "564e90e1cf60b5a3b3965be946eac9fc04604faa43c5a2eb2be0adf4ae03011f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin[\\/\\\\]+man[\\/\\\\]+koko(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ae9929ca3ffa90ee764cf4e1ad43815076c7bc0fea6e6c4f499db1d928f42875", + "regex": "(?i)^https?\\:\\/\\/092661\\.com\\:6899(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924561983b\\-34480abd\\-ac90\\-4eac\\-8748\\-4b775fc19237\\-000000[\\/\\\\]+e48TwL2Qi5oU1c2htmGBpueSe6M\\=394(?:\\?|$)" + }, + { + "hash": "b28a32c746893c7ebb54469d6bfb673ad804cde634c3242511c31a7ca0884a91", + "regex": "." + }, + { + "hash": "a032280d5ce5a1efa3e11074aefc50a49faa50c23b9040f78f09cef7e1e03d3e", + "regex": "." + }, + { + "hash": "c78eff7bce183fc58906f57f7eeb240cf2aad513d1a65a700a0df3f81e7c3c71", + "regex": "." + }, + { + "hash": "d6f742abc9ea2047294ff34ea5f3ec463e01efb5a8189d0654a74c8c4c2f291f", + "regex": "(?i)^https?\\:\\/\\/www\\.wnl6i23az\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c92cf5\\-bba02424\\-c584\\-4dd7\\-bd6d\\-63df251cd8cc\\-000000[\\/\\\\]+faBlRyfrerRue79YlRxv2oEDyYI\\=394(?:\\?|$)" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457797da\\-bbd1dc1f\\-ca54\\-4166\\-b1f0\\-43f8da58fb3c\\-000000[\\/\\\\]+jKjEaprycfJU40cuP3Mgkd3ii1c\\=394(?:\\?|$)" + }, + { + "hash": "8c3e65a8490748af59c0c5fbddf78e188e99f52c367b206fed17b019d9849cf9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457797da\\-bbd1dc1f\\-ca54\\-4166\\-b1f0\\-43f8da58fb3c\\-000000[\\/\\\\]+jKjEaprycfJU40cuP3Mgkd3ii1c\\=394(?:\\?|$)" + }, + { + "hash": "ae3091d36fc9cb2e25155d2e8947f3773e423e49bab24dd3fa6b1924eac65493", + "regex": "." + }, + { + "hash": "96a63276d83fde4aed2b348209d47c958072557b52599ff8568c775a0fff360e", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924561983b\\-34480abd\\-ac90\\-4eac\\-8748\\-4b775fc19237\\-000000[\\/\\\\]+bE0_2ct0gTaxrM_UEU8TP2v7XAI\\=394(?:\\?|$)" + }, + { + "hash": "440c74a08dbe9c3ed68296436781c78efb6130a9c6c6689e891dbb2ebea74cfa", + "regex": "." + }, + { + "hash": "5e8900df51109fbcaa79cb2f52ba4cdc30d3677d05eb37144b4046924d6d4d79", + "regex": "(?i)^https?\\:\\/\\/www\\.de533\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245baf1ba\\-df0e5f29\\-7009\\-4dec\\-baf0\\-7c688f49df44\\-000000[\\/\\\\]+QCDbTkkOTtqAqLyPzQgO8nPqoqs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+noiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245baa8a8\\-12292173\\-ae6a\\-44d6\\-baab\\-08d812a47e49\\-000000[\\/\\\\]+SUxN4T8JdhwlLTFkTdNjCm6FiH4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924585a80d\\-1b6188d0\\-8823\\-4f60\\-b324\\-111fae626316\\-000000[\\/\\\\]+w5s36E0yc7wKgq_crxyxBBhXLsg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245716916\\-08ad87e1\\-6853\\-4644\\-8f5a\\-477e3ad158f9\\-000000[\\/\\\\]+QRmY2FPMKK4vVpeOLhsYLb4Kaws\\=394(?:\\?|$)" + }, + { + "hash": "6d01ce9380e14b486c0af4bf6f327c8c9f210af19f3635facff2cbbf707db9fa", + "regex": "(?i)^https?\\:\\/\\/8djiy4\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "fd4342c300e8101aecde0ddfb8093b7679ebce159a6f733dcda217190ba78128", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5ab0a\\-d536d082\\-656a\\-40f0\\-98f7\\-6078f0d8e020\\-000000[\\/\\\\]+xaS8AB0w3dw\\-NAnZZ4ea7qtjJx8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924585a80d\\-1b6188d0\\-8823\\-4f60\\-b324\\-111fae626316\\-000000[\\/\\\\]+TCFpFp4bXOHNfJiQXA0WJt738\\-Y\\=394(?:\\?|$)" + }, + { + "hash": "c9696a13283ba0d7a4d9ebf3b349a0a29312dc99b034f08dc8d877727e9d3e77", + "regex": "(?i)^https?\\:\\/\\/theaccount4free\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6d7217821600f7f14e168860feb05e0c91bc4b16dced82506388b98d84081996", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458df95d\\-fed83b70\\-d936\\-493e\\-9865\\-be3c84c9b60a\\-000000[\\/\\\\]+xf0jSMrUW5Udw7u9ygcMuWnSIcg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457797da\\-bbd1dc1f\\-ca54\\-4166\\-b1f0\\-43f8da58fb3c\\-000000[\\/\\\\]+dn5clJR03jQW4XFLIgt_yp10CIs\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a4afb4\\-d0e7ed7e\\-9132\\-4fc6\\-8c6a\\-afea017cc4e8\\-000000[\\/\\\\]+TtUZxv4Oi\\-r5oBZCepDrMg0kPsI\\=394(?:\\?|$)" + }, + { + "hash": "412decbfbe425e88b200b3276b0181c29a0103e15675d8a30702a3ffa6772954", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a9358\\&id\\=pillioty\\.io$" + }, + { + "hash": "0baa85a5e118991e6b6fd4b13ed92fef190f850b533dd6930826474b90506f77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2b16c\\&id\\=24motiondesign\\.com$" + }, + { + "hash": "eff66817aa66b9c7e0238cd6c3ad4883b5bae79392110e475b168b111253003d", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245716916\\-08ad87e1\\-6853\\-4644\\-8f5a\\-477e3ad158f9\\-000000[\\/\\\\]+JB8V9wEydJ9rlf25TbqnWW86xS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458df95d\\-fed83b70\\-d936\\-493e\\-9865\\-be3c84c9b60a\\-000000[\\/\\\\]+MaEiztInnv7AezNxdFRmiGIXHLI\\=394(?:\\?|$)" + }, + { + "hash": "0a7e53ee6c9d0617c69afb4d293f59eb8d80b352570664b2ed94829d609bcfde", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245798382\\-7783ddda\\-c73b\\-4753\\-8f17\\-6a9f5cda2eaa\\-000000[\\/\\\\]+kP5aP6IUnWWXeUQU2IzyEKI5GLI\\=394(?:\\?|$)" + }, + { + "hash": "d04517605a86205e5b3ca574ac3fdbd2295499039b3199ab608f82e79750d766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+4kr9p(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d8522346fa6cb83e73c57368ed774747ca9efcca4a40d2e9592797578ce5715", + "regex": "(?i)^https?\\:\\/\\/mail\\-106907\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245baa8a8\\-12292173\\-ae6a\\-44d6\\-baab\\-08d812a47e49\\-000000[\\/\\\\]+SUxN4T8JdhwlLTFkTdNjCm6FiH4\\=394(?:\\?|$)" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245716916\\-08ad87e1\\-6853\\-4644\\-8f5a\\-477e3ad158f9\\-000000[\\/\\\\]+JB8V9wEydJ9rlf25TbqnWW86xS4\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c92cf5\\-bba02424\\-c584\\-4dd7\\-bd6d\\-63df251cd8cc\\-000000[\\/\\\\]+PhgYSEpFCZNM9awzCfEJM7NW6O4\\=394(?:\\?|$)" + }, + { + "hash": "0afb101512daf705bb26773ffe1af2b941b4d3736326da84043b193689803f63", + "regex": "(?i)^https?\\:\\/\\/bestwinnerss\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e9ed7a2e3e027e4b0151d418b9561e598d241c7a48bdd225c65fc7e971d1301", + "regex": "(?i)^https?\\:\\/\\/bestwinnerss\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c0cc1b\\-5b6de91c\\-b8a9\\-42e0\\-97f9\\-0ed45bbc0a31\\-000000[\\/\\\\]+x0N3Dg5zrTMBPyBDVasKf5c4u8I\\=394(?:\\?|$)" + }, + { + "hash": "17b33f057877d3acedb57f1dc5d6aa5d9638ebc5ea2a8e1887d6b6cfa8ab5fff", + "regex": "(?i)^https?\\:\\/\\/342563\\.com\\:9900(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a4afb4\\-d0e7ed7e\\-9132\\-4fc6\\-8c6a\\-afea017cc4e8\\-000000[\\/\\\\]+nZJ7GgcHKjkT7fX1V1q_ex8M5Y8\\=394(?:\\?|$)" + }, + { + "hash": "0318a52468e007688bb98912c435c2f0e4cd3788be60d3595561101d3dfb44be", + "regex": "(?i)^https?\\:\\/\\/currentlyatt48\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456e5465\\-b60eb54c\\-4c68\\-4094\\-937a\\-75425c329ec4\\-000000[\\/\\\\]+foTQIogKuolbCh_gOV6ZC5Golj0\\=394(?:\\?|$)" + }, + { + "hash": "8f9a451b48851753521136a4f6b0554014ad0b5df83ebb16f83a1e369d428c53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "18ec59d4d72407c5e7a076a50040b209a22c01c2778773c0609d922649c982fc", + "regex": "(?i)^https?\\:\\/\\/bestwinnerss\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245798382\\-7783ddda\\-c73b\\-4753\\-8f17\\-6a9f5cda2eaa\\-000000[\\/\\\\]+e5DKTHw9DJo8qBBxqCm8bI1gQQg\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245854299\\-6729c713\\-9c55\\-4b3c\\-b1c6\\-4a7537c4abc5\\-000000[\\/\\\\]+qtBnpOMcXJdkro\\-BJ571KZZSlz4\\=394(?:\\?|$)" + }, + { + "hash": "5a31ff1e38394b3dbb5f9321b6eaf87c975a794275e556e370a00a46b9600f82", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245baf1ba\\-df0e5f29\\-7009\\-4dec\\-baf0\\-7c688f49df44\\-000000[\\/\\\\]+vYtlO4EL3KXMm9WiW3j\\-2mhKJYU\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456e5465\\-b60eb54c\\-4c68\\-4094\\-937a\\-75425c329ec4\\-000000[\\/\\\\]+5gtBxO5R3STRFodza_XV8ojHWG8\\=394(?:\\?|$)" + }, + { + "hash": "f0ad6fdc181a9360871ed6cdb42eb064f8da0548df25c0c208fe680c413f5e42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5dbf0\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "fc73d725fbedaa8faa6ab96f7b94b8b71be6d5c01dd083830d8898d1b38ca032", + "regex": "(?i)^https?\\:\\/\\/misteruntung88slot\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4eec1c3357c3a2822c6a54122bd4b43dc16cf4feaf9822344980559a59c692a2", + "regex": "." + }, + { + "hash": "c200157ed3b1f9767e190165ee8f3786d5f3ee66f385a4ca5aa7e72bc0af2669", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be647\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c16f99\\-5b399ccc\\-b305\\-4d00\\-bd46\\-89861d6f0723\\-000000[\\/\\\\]+3ytpgNGPBaa6GxFAZhAyWJkn93M\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5ab0a\\-d536d082\\-656a\\-40f0\\-98f7\\-6078f0d8e020\\-000000[\\/\\\\]+GHgN_JgIVK4h2ilCyir7bB7MGWk\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456146ca\\-4b928db6\\-cc36\\-4d01\\-a1de\\-db875aefeffe\\-000000[\\/\\\\]+SwkYSyVA22Cx_9ZZhIx\\-2tGtqBw\\=394(?:\\?|$)" + }, + { + "hash": "7547bb85824c2dc01d8c6aeedaf1805fec44c804f19834dd0703788cec4f3ce6", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245baa8a8\\-12292173\\-ae6a\\-44d6\\-baab\\-08d812a47e49\\-000000[\\/\\\\]+S1cP1GXsRjwaHsm5NVfTZrqPTZo\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c16f99\\-5b399ccc\\-b305\\-4d00\\-bd46\\-89861d6f0723\\-000000[\\/\\\\]+I8vZO1Qlk5siBNWactQ5FuGCK6k\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c0cc1b\\-5b6de91c\\-b8a9\\-42e0\\-97f9\\-0ed45bbc0a31\\-000000[\\/\\\\]+gddEJJedBaZNPO3j9rlGDUgfrB0\\=394(?:\\?|$)" + }, + { + "hash": "a73a94564d9ae8266204a1e076996ba9aae1b69c324b393293de93beded7ccf0", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245854299\\-6729c713\\-9c55\\-4b3c\\-b1c6\\-4a7537c4abc5\\-000000[\\/\\\\]+Eq_PPZCFhL9c6VrpzITwnS9DlyI\\=394(?:\\?|$)" + }, + { + "hash": "ec5b9285399a639ac961577b4772161331e0a7dbf4c172f5d8bc489351ea0fd6", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924561983b\\-34480abd\\-ac90\\-4eac\\-8748\\-4b775fc19237\\-000000[\\/\\\\]+e48TwL2Qi5oU1c2htmGBpueSe6M\\=394(?:\\?|$)" + }, + { + "hash": "01d628e3df75ee84c2b607139daa2675e989ba406c1a281d8a8543bd0f34da90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+go[\\/\\\\]+2fdb9e92\\-a994\\-445f\\-8c60\\-23d22bb18fb1(?:\\?|$)" + }, + { + "hash": "3d0d0583c7b0070a9db23812a9eefa7762d7b8c06081c0cf17db9960e4b158b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?69636\\&id\\=hackersgamefilm\\.com$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456146ca\\-4b928db6\\-cc36\\-4d01\\-a1de\\-db875aefeffe\\-000000[\\/\\\\]+gxGBrGcIr900IigYPTa2UkZFrBQ\\=394(?:\\?|$)" + }, + { + "hash": "3da05f4ef08203783e13f85c29fc70a98db7ba282921ef45ad0665e6fc64e8b5", + "regex": "." + }, + { + "hash": "13aa7bc461e938b2b8513d8cce36f4aac75397a185ca06b330ccdc1df9b03478", + "regex": "." + }, + { + "hash": "4cc5cc41a5d5c201d41e97f2e24d965dda39d2737008035b4e52089fb77faa69", + "regex": "." + }, + { + "hash": "fb2966e399e4c14cecff532248319a0382348155c29d99cd6ba43d7363787f5e", + "regex": "(?i)^https?\\:\\/\\/turquoise436849\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "3f6ebf52cabd98d58902b77cc3fa409875219c8bf55e7fa10acd46199a36b29c", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5e71210d8e7b3508417f6c96e18356ab3d3bc8f488ab93649e08575746d6d523", + "regex": "(?i)^https?\\:\\/\\/bestwinnerss\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7062c4b85bcee983c51204c3a0adee4b4b25c7dd858f6f003d3e2cc62106e108", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8474cd5088d8515c0ea0caf471e0796e27dda87a811756f438d0b1bef798b3ff", + "regex": "(?i)^https?\\:\\/\\/342098\\.com\\:7730(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d7b744837e45c92b118523123db870b166048b1f6379c249c10e0afcfa475157", + "regex": "(?i)^https?\\:\\/\\/342760\\.com\\:8866(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba8247852c1ef540187795579467779f91d787578842deb92e1f6ab0fe320990", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dd852\\-3f2cac1d\\-bf49\\-4964\\-a0f8\\-625ba8036070\\-000000[\\/\\\\]+4xyHlbV6vkAiw1676q5Y_Sc6XeM\\=394(?:\\?|$)" + }, + { + "hash": "f81601513e40523c94a2618da9b17af8012b3faeb29f63f60dc5b3ab0791613a", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailanfdef\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cd74ac73bd943d5d38b0efdd2bbeb5a1d31e59cf51a4318e8f1564f0d8fb5c4e", + "regex": "." + }, + { + "hash": "3f109d528b12b8b50bcee7c959034191136b4e53caae0340b48dca9ffeba22c6", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "35223b7dcb07d6b1d788574607589facf63fc0b07666ed45f54b83823ede3c69", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailanfdef\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "66e1554e827e628c011a4292d15a8557744f3244330093c19e946a7c6203b0b7", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ece4305bdce6d8e8ea174adc14cdad2bf26bd3bdc72885b7cd0c3d3780f1d362", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8bfbcf93322b419adcceb108f9215330643849985156550966c7b48dbcc99d67", + "regex": "(?i)^https?\\:\\/\\/pub\\-f003a2ee346f427a8b41b482caf13d7f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "211102a99dd3b2af3b17490d99a98d052709c86e9f32caac724deb39b436b0b4", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailanfdef\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "891f5012cb49afe984960a58c7238afd4ded2d0311239d9d5107ff1f437a3d66", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailanfdef\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "50825272e6a34e420538383338be515066d5dc48778c7f1b431b62a11741c7be", + "regex": "(?i)^https?\\:\\/\\/tradergreenway897\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "98cdfbb4043c2245aa419d07fab716b343b2c0a1fe5280be99a59c686b3bf202", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "88b013fe053288d5217cb6cb910f4ebb254514f9672da9b1335e91a4cef5254a", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "78523f92352ff71f4fdbc0661a23c7044ccd83e243eb4a02b83cfb1c43940ea0", + "regex": "(?i)^https?\\:\\/\\/www\\.us4\\-coinbaseverification\\.31\\-220\\-103\\-186\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "71506e9c1f7136895423c8beac177269ba9e5a5f588d2de714f8ac2338df3e49", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailanfdef\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fa5dc138180b762d4c5a93db33135c94fada617c1d721ed63b2f8bed0254c2cc", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailanfdef\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4c1791afdfa3067dd4176b8b2d5669c48cbcdd8e63c01a03ad3b91bab81e5814", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailanfdef\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1e62e53b02953f0f5aaf7a7032160cdf74bada572eab56acdec4095e4126f5b9", + "regex": "." + }, + { + "hash": "dec3eb89bdc2df31aa11e976baedf4b21bdd8a28fbc253c4d4962577d74d13fd", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailanfdef\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5e11213d9244c61af183726a8239ef83299362d25245bdbf57fc3143e1a2b7d4", + "regex": "(?i)^https?\\:\\/\\/5fhfgfgrrg4g4gh\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "51bee401fe439bd2f2120ccc2a789ea6d192a36074306f7d2e58bafa38c47c56", + "regex": "(?i)^https?\\:\\/\\/www\\.us5\\-coinbaseverification\\.31\\-220\\-103\\-186\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3ae8619a27e36cd21ef724d39199a74f46f32b1bc81970c644bfdc30b3157b2f", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "da74178ae433fb381f52a61f90e5dfb62620345a5f9ef885632e908a61059f6b", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a715e59f7684bea4be1ee5957a482bbf0051ce2eaaaa6e8e031f312daa504038", + "regex": "." + }, + { + "hash": "a715d6ca2a9f63397c226bdb2de5c9196c306e0b6b6d6466fa3f2871f659254a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "b40045448c5682cde335ce24ba64c9e0bcca265067d85f050af7a1e50cc7c2fe", + "regex": "(?i)^https?\\:\\/\\/us7\\-coinbaseverification\\.31\\-220\\-103\\-186\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e91031a843a92900d0b867cae399f6424e06b160830133d3a626d1aacd3fd239", + "regex": "(?i)^https?\\:\\/\\/girlsexxthailanfdef\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e83d65856699422b81636925030af573bf1c6862d4a09e9e390d6bbec5cd9be2", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f42eda02ffa61271358c369301ee6141c2a8b4561aede3728a466835581ce3be", + "regex": "(?i)^https?\\:\\/\\/8cip19g8\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "ea729171d6dfc5dc0f21363745beb2ed5e591eb97af0afc9ab9bf8af4bede554", + "regex": "." + }, + { + "hash": "29ede97350b0c90463debe0e9f037f6c2cace7418cb5763706aefcecef02de33", + "regex": "(?i)^https?\\:\\/\\/us4\\-coinbaseverification\\.31\\-220\\-103\\-186\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "56bb32af4c1c97d0619e2710de5323c532e7c5bf040c66fcda074efe7e25a872", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8bb9373982174c873932112b5699fd466a21f8c39deadfdfe453416c97c92662", + "regex": "." + }, + { + "hash": "49988cb4278d90572ec40595f1cc84742cb65f51792491bfb46b64b4272060ee", + "regex": "(?i)^https?\\:\\/\\/globallcomm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "84eabec461765d1a165070977bc5fd6666e4b5ace60cf569e51aabe3da07f372", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "eeeab2cc6fd967719372538c0af6e5e473c31b14a1cb4d46195a4aa4fc613d05", + "regex": "(?i)^https?\\:\\/\\/robloxnintendo2ds\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f72091db2e986eeeb9f8ee8ec0ad91b7ea022f4bd55855a88305e072d02f6235", + "regex": "(?i)^https?\\:\\/\\/bestwinnerss\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70050c647bc2772ffc00da23fa17c857dbee610f59897cf1d76e45e32fc63a90", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458dd852\\-3f2cac1d\\-bf49\\-4964\\-a0f8\\-625ba8036070\\-000000[\\/\\\\]+jLa2fsTSyqlJyRsxoD7\\-gRemjbM\\=394(?:\\?|$)" + }, + { + "hash": "7af69a2317bdad342846740bb22363f42bb7a565555786f3771aa144e08e4528", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458dd852\\-3f2cac1d\\-bf49\\-4964\\-a0f8\\-625ba8036070\\-000000[\\/\\\\]+4xyHlbV6vkAiw1676q5Y_Sc6XeM\\=394(?:\\?|$)" + }, + { + "hash": "536363e90202c191a4b32a167ec18f15b13bbd2429393d6fd1cef5b66a44674b", + "regex": "(?i)^https?\\:\\/\\/cvxvd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "82deacd0cd50ec0d5dd84b87a3f518f378448a6115dee369c645582802dc7e9a", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "10baa0ffbaf2071ef1a29a624215266602ee8ba528eb9470a1483a72be1def90", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c8f7a\\-478e9b2d\\-cf89\\-4afc\\-9528\\-66f1331e4245\\-000000[\\/\\\\]+7IeQL4BAM4JHKaeuRKBZTRMKdCw\\=394(?:\\?|$)" + }, + { + "hash": "8d17d1715006c0069a4957145096e5434774a18e85f074376c10ff93235833da", + "regex": "(?i)^https?\\:\\/\\/pub\\-7696bd2d18544514b872751c4c798b02\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8715815689ff208cbf873e384995a10171278776c7123e97a841c6ed594c62e1", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a7e8f19dbd3cb7cbab555972c56fd14e6c4bbe2d84a133f2b8429ff35b9bda89", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxcardssp\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c4e735829f58c6e89ebcd6930505db096cc0889b69ec90d558249c0936afc137", + "regex": "(?i)^https?\\:\\/\\/blazehunter\\-embershaper\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ea9d2d7dcdf84e28b40eb7e5c0e6e0158d55242eba03f1750d57d5e71ba30a7", + "regex": "." + }, + { + "hash": "07886e0fe6337f3f6dea3d9b968234c7ca2c35bff99bb51a5e3ff007ea1ab2f1", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579c1b4\\-ae3ee704\\-a503\\-4cb6\\-bd71\\-79ea778f812e\\-000000[\\/\\\\]+OMeMDjDYZNmKhB9PuuJLXrhNLME\\=394(?:\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "513ddb2f43413a408655eb72f06778e88566457272c418e4f8832987ca8dd43e", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "77712ed98a43ed01639b614a102642d197356d7e634669f0b986366451bd39b5", + "regex": "(?i)^https?\\:\\/\\/shadowcaster\\-nightseeker\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ee6dc045086b4e74eb6bd53b97b79d325b84dac8ad7ef98da9bbbbb8acb9d511", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxcardssp\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a9c7ea3ba7f4f8943d9ccee0100d592ff0842edb9aa855baa4ce2c109c3fd3d6", + "regex": "(?i)^https?\\:\\/\\/comosalvarojogoemroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b65d5d925e1ee8581e2b8781544df9a81f9ec81aa1b67c51533b951f0ee7d13a", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a9db27992ec2917d5ec2339701185b66be7d21c2d8aacb1e4215304dbde1f9e3", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b3800130e42cfc788babe192fd1e1a89256def0ebf09d4a59f1e37a6d85167b5", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252Fbafybeievsjxpiin4xutxldcxsqg3vjos4yrpxiqjm63rgjztdmt7nl5mgq$" + }, + { + "hash": "967a524b27eef2b1f5cdb910e60aa5776de24068c42ea23004636c9214b017fb", + "regex": "(?i)^https?\\:\\/\\/5fgfgffgrg4g4gh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "37911c12438e3e34e92886791d48b73a3526b15faf8207123ed3bfd82d05386b", + "regex": "(?i)^https?\\:\\/\\/robuxrfo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "140ed90c9708a1cf28bfff6ebd7f9e8e5c8d6455c0fb5c185e7e43145ccea898", + "regex": "(?i)^https?\\:\\/\\/shadowcaster\\-nightseeker\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bd1dfe47991a14497def72905e4d64ef2d1282f5a4d38dcb0258d7d494282a0a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ufpPoV(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d6405bd48670513c82a59d372bfbdd4c6ae17079041f52e7c9cdde92238dc17", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d2039d01247dbf322752205f27cef2dff222cd97f1cdf3b40eb3b2ce22ceb83c", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4g4g4gfg4dg4\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4573cc52278a7fef86f09ef01b703cdf7d7ed6d12a0fbe1f204128f0a4e34100", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3a2c9dc9f99065453e7a87084bcf5a6e2fdb0038cec257a293ab7e04feec821f", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e499879cb57009c2b0d56a1d5e9be9891b7e12e7af324c4d2ceb185b1e69fc78", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "de5fe60e20a415664509a431a45f2d782968881ea34507be3ffa525134385f49", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "178be1083d5bb3d26fdb9c2bcaadc16ef87f81e348cd40d12c2b1aab1e27263c", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924583ab39\\-1ef6874d\\-e5fb\\-400d\\-b37b\\-fe3baef0e076\\-000000[\\/\\\\]+RvgVjQ8slbnYfVVncvqsc0Q_mLU\\=394(?:\\?|$)" + }, + { + "hash": "e6cb3508758d4888c9104f432455814ddd19ba9514c2870e3bb5368a4f6f5798", + "regex": "(?i)^https?\\:\\/\\/shadowcaster\\-nightseeker\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "061bee68aed86eb960fa7ab602828ddbad99eeb3577b2608f60ae19ee7d45083", + "regex": "(?i)^https?\\:\\/\\/green\\-mole\\-144070\\.builder\\-preview\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3befc35cc58a515df148787552532583fe9fcaef78cfafb18334d030a416bb4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d9d9a8bac72a1ae0afc971caf8df0649d007ceef52f34dc1f66685c7ed0fb454", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "26c43d4be7b12d873b574f24df4c06c41bfe20ff7da8598cd2c8880e9078acd0", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "857d39df8c555d31cd5754bb17ccfac9cae22cdd2c5e6a7834a25150d8ff3f95", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9562cfd883cca78b961df8c611c5b01b03e4e04ade97e973c4ae9219cfc895d5", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "302e0bd7923d50040f3d338614a71cd5d7752580df45b0246860dac7df63d0b7", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "da1849572d0f1a689c8adbb384bf2c5e8708bb1b0d04df699b3ab2294449bec4", + "regex": "(?i)^https?\\:\\/\\/blazehunter\\-embershaper\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6ae43544f36f18e57a2b34e94fd9183ed8879f5e181a1b268ca283280c8cba2b", + "regex": "." + }, + { + "hash": "ccf96f7bd20c39f2ce7e0ec861ecb2d60e6213ef09713687d2c609826c7f793c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt\\.php\\?x\\=3TxtmrUFUqPUT55qA1cwjPak_ZN\\.yvkWr\\-ZiX6LISpeeFZah_xAwUemvPaWXiO\\~vnuVAZE$" + }, + { + "hash": "a2c425ad23672f5faca528a8aa1502487b2aa6bed615922b6a8aa3fd484a6697", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5bd22d9455c5823b2ba12ee79f7b1c820591b3809eacdaa9d930e324e463f109", + "regex": "(?i)^https?\\:\\/\\/shadowcaster\\-nightseeker\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2e80a2b8a35cf564605478189ca791a174c2217379fa4bab898a694477df75d4", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8f825df326a9f79c69face422e7f306e15e2fa05143b7cf95c9644d981f44892", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f1a38c2437e68886bd154021970d613ec6b7c2d2d8cebf75ebf81753ec8cd522", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "86b908cdd6e9a66f86545cb1b42050f1dd5df06f407cfc8ba2f8f1e2e05511bc", + "regex": "." + }, + { + "hash": "331abc25f2732cf61d892fdb516d25086ffe7e3a35e244d25b2a52633c598a64", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "77214429ebf166de33b6b48f78c73a241454a479dafb9bd4f333895e686ec293", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "29e1a834343b71cfce428c627ee5932748e6d6d665be47455f30611309ce953a", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0438d975ab05c4ec797a845cc0fdc07eb10fb006c882b439d9feccd1b4e28a6b", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "dbff7487d9814b49527a9c6cce7a8cdd46e982311f54d3cee649628cbd830fd6", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8f2d19f8ff71cfb1fa6ada4d17c514ecdeb5ff17a61298739739b2803458506a", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e80c3e6fbd927b5b4b856afb6ce33d836a0c7cfed833f4d96f6299b5c4bb5b09", + "regex": "(?i)^https?\\:\\/\\/robuxrfo\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b6daca93f62d03cb715697c0336535cd20f26d38228f0467f7d3d70dab107258", + "regex": "(?i)^https?\\:\\/\\/robuxrfo\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d78ccf12e6427c904e40944b6d91c01f7a7ee41758646daf9cee3bd69350420f", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a613a2\\-89e2f7a7\\-829d\\-4b71\\-b353\\-c73ab572618a\\-000000[\\/\\\\]+BryLDgQVePmTF5lt6uiiPe6rAhk\\=394(?:\\?|$)" + }, + { + "hash": "b07f1e0769eea3ee1ba9931b546295cd96dd5cdcb5111a35fcdfa3fc9ef7ee5d", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4g4g4gfg4dg4\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7e51c7594cb4c54442a2bb52477d36d40ca76c16ce5831fee86a9cbd3d59f851", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b90debe65d6027595e094d877133c1d0e3a267239a8b241d4acf9b1cc93d8e25", + "regex": "(?i)^https?\\:\\/\\/lime912883\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "10a1050d3123147241c59358fb36c5601bde7c0685c0119c2b75addf0922adac", + "regex": "(?i)^https?\\:\\/\\/shadowcaster\\-nightseeker\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "329dbdb573f3fb399bc0092904de9a3f1f8ae3ba55b5ee81cb997a230e466339", + "regex": "." + }, + { + "hash": "ed8c5d4a2901a45e5c96207f7ef016c310a78d930541b1b1bd26a6604900d93a", + "regex": "(?i)^https?\\:\\/\\/sportybetadder5050\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "102d5378e0818dd8e7c649b35994adcd7dc120a3ca72fce90fab4f79218e6c3b", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "96aea529c0e1f004b98c11618a7ca9b6e9967d7f54e01998a95f67fcdd847ca1", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579af2e\\-1cb8bca5\\-e7db\\-4f53\\-a592\\-62e1ef7abf24\\-000000[\\/\\\\]+GLhWeuFcnyFGeNFa5rrtDbXy1nE\\=394(?:\\?|$)" + }, + { + "hash": "e2a222250101340b46f9d37b9d279ac68f2909b0cef713aeb90a0f5bc986b780", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "646123668dc855b4d7216da1ac60f8e43d31db70ff184603516df2ee8f308f3b", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "81f2b2bc06a4c4a3fd8d243a5d76e87b67f816e94cfef116c8d595eeb018f84e", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8646cbb310bcc14ace4b9cb24cd0711c4473b16850c9b51321f619646b8fa527", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+canio[\\/\\\\]+wetrans\\-chat(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cac640338c40c1fac8b2320598001af66c0feaa95a8c48a16c230887003c3bcf", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4g4g4gfg4dg4\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "26560dcea1d933771fcd8c6ed2093e08433d2f36c73b41d3915bae9c5e8076dd", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "63ea1d86c556df77be1558852be205ea585fbd32f2aea7ddc85919137ec1eb40", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8b7c9f53cb8e45420697fab575438c7ae1a47155142dc8c6b1bb05ef9726eb9c", + "regex": "(?i)^https?\\:\\/\\/blazehunter\\-embershaper\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c2add4fb30760c283672a8876c7df8fb93db4dc2c6becc9a7079d06ebd4fc5e2", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d15d2703aa0f090c2d6fd31d77778e12f7856046ed06d10a79b8a3eaa35f622b", + "regex": "(?i)^https?\\:\\/\\/httpssportybetbalanceadsr01\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "304bd05b9964f4578c4d9225dcf3a4350e76c221f0e1c21829532525970b0f8d", + "regex": "(?i)^https?\\:\\/\\/robuxrfo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2af7c2b1bafb08f1ed58e930d9b45909ebf2deb797fac9e48a1c6c498c379b1d", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5957caf5f9b6fb83753dc7af690429ee9b3eda4ae4cc62d4dd88312017211508", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c6292a\\-90794eef\\-8118\\-4bfe\\-b808\\-5db2dc5076e1\\-000000[\\/\\\\]+qxHhlHIVvxHoDckPfRe4MSMiX8c\\=394(?:\\?|$)" + }, + { + "hash": "e4493aa47767c8937cee14a43627fbef0ee8c0d59447aee032cb1818981da79e", + "regex": "." + }, + { + "hash": "de4c610687b020989b3ded4e17c482318bb5d439d26ddb47c44b7ee3424b97c6", + "regex": "(?i)^https?\\:\\/\\/gfaeg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9db74c47fe4c1b4f5998f00376293802871dbf2751693d59c4cf99f4ee2d0e56", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "818162557911420ae77632f5c05e1a72349a8a31fa504e511e945cde7d593b72", + "regex": "(?i)^https?\\:\\/\\/shadowcaster\\-nightseeker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Ferxdvygbuhmo\\.blob\\.core\\.windows\\.net\\%2Fadjunteos12\\%2Fseguro\\.html\\%3F\\%3F\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "728d457e763f2610cd849bd681714f9816d6ae0795d35397901e62999adae498", + "regex": "(?i)^https?\\:\\/\\/blazehunter\\-embershaper\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c02c3307388157f9b933ffaed1e919882573f47e3d5ea88989da673af4508b82", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4g4g4gfg4dg4\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5b5e844b0383802363b410775b6c43309f2e41f0e8af4bff95677ed91c051dd9", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ca8e330f6063dfee6648c94f5344c7f0fe5c8d20483e843c61addcd4860c76dd", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d6321a2565c34a1cb03861a2da14c2da1697cee5fb41e198419694f249d18755", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "384f07ae83267c1fd94db6fd68624b7fa8f162700229acb8670516fa27ade22a", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b4fd12563d51c4e6d6f624dd493a8e9964ac278a0d17e67ffcb0b9a0447ad957", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "117fd03fed2c9c31d4dc8121f35c52ea0b0c34af02b66a38d4af0324833401b8", + "regex": "(?i)^https?\\:\\/\\/robuxrfo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nbwcta(?:\\?|$)" + }, + { + "hash": "8ba85a481786652697dec13d0adfffd4b70879457b1d302910ae414ab99da0e1", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cbbac78f39f43794a8c941cdbe9a14fff126b2830fd7dde17df834acd42affb5", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafybeievsjxpiin4xutxldcxsqg3vjos4yrpxiqjm63rgjztdmt7nl5mgq$" + }, + { + "hash": "9efda7a484408f9d6a1515ca6451aa5fd591d82945e997962dcb16f497a0d7ce", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxcardssp\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192458953a6\\-85775db8\\-e81b\\-431e\\-9f70\\-0ee412519136\\-000000[\\/\\\\]+RrmOjfoRGXJjv9vvnDxCS6h6MQU\\=394(?:\\?|$)" + }, + { + "hash": "3639e9067ae6eda9111022e70756ecb140b88dc54a7e7d8deef5d710209960a0", + "regex": "(?i)^https?\\:\\/\\/gfaeg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "64b131ff975ce6bfc8552315525b93cf5d461a37fccf3d0fd581c2da87537224", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924583ab39\\-1ef6874d\\-e5fb\\-400d\\-b37b\\-fe3baef0e076\\-000000[\\/\\\\]+IVhv1cP8IXtTjagpShyA_CzhbP8\\=394(?:\\?|$)" + }, + { + "hash": "63d64e8ef62a5637cf004efac05566e29431d631ebd5a8967cda43148b61f2df", + "regex": "(?i)^https?\\:\\/\\/5fgfgffgrg4g4gh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7cdcd490e1a688b3bffd9fc451a7292a6d02a62eb746ba341e96159758395b2d", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxcardssp\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ed0b62175d82c024dd7271558e5b81171f837c2e5ab71d734b3002a9c800cf05", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "304b42159325d772f846686e755900fbbb9ff51764732fb27169952f7ec81411", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3618320dd0c1d97b8ecd23f40b2003d6bee09052be04de4ec7d81c5d5114bb4c", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f7f0e677083afafd19ddce2d2893e56c8db6895317d3c0eee6cf87a6ed92ff3b", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4g4g4gfg4dg4\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "09408bd46999619e746b8424d3269d1eb183810c6673b3cb8e39e3028da362e1", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxcardssp\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0cb37ded4d00b953d22d8f0707338b0ad76652de6f33d74dfd80d91cfc634b96", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "29482b515435f4301252dbc9c351452ef091f0a96c67071f4645784cacf79edd", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e3b2f2647fdb6784bca757933ab93148f9a10c948e5ee05d30e5d63f4409ea1d", + "regex": "(?i)^https?\\:\\/\\/blazehunter\\-embershaper\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924579c1b4\\-ae3ee704\\-a503\\-4cb6\\-bd71\\-79ea778f812e\\-000000[\\/\\\\]+fG5B7qC8zeRGESN\\-PjgHR7FKyAM\\=394(?:\\?|$)" + }, + { + "hash": "9d19a1f6ffafa862968dcc95b813d34d3d7f68e13cab99a98b010f588c667f25", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmua1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "56504de0d4047eee02ab9f435c01cc78bee4f2b977bcb579c2970df8a7fdfad5", + "regex": "(?i)^https?\\:\\/\\/robuxrfo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0e4b432013c692b52d849ba1c9e62368cf13036dc2c35feb39f979f465683859", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3c2b2fad0b3ce8079484167ed6cd407d9ed37864309f2c0a7924f8d7b12d0b76", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c89100\\-e5f232be\\-600c\\-44d3\\-9a4b\\-e168dcf39e3a\\-000000[\\/\\\\]+RhoTZ1SNwyEb8lVpk8BGVP0BMNQ\\=394(?:\\?|$)" + }, + { + "hash": "4aa43698791a465edb16e8638f7ca10baa0ab2b9d056ff1402a7e5fad8540fd1", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3a4e05699cb675143e8adcdcc2de6d4f4f23e9fc30ba797937132414e7268e69", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "884851ec90ad12f37a9869d8f5a374e7558d660b2b09aa540036c5b7f6fb1fa5", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3ee79358031faa5472ae04707abc657152f6f8c0d41c3f086c5d550e674c8d36", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4g4g4gfg4dg4\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4253e5a0065e42c97f2f98fce2d5f5eec552bda0d2b309a482920bb1b481366b", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c89100\\-e5f232be\\-600c\\-44d3\\-9a4b\\-e168dcf39e3a\\-000000[\\/\\\\]+RhoTZ1SNwyEb8lVpk8BGVP0BMNQ\\=394(?:\\?|$)" + }, + { + "hash": "aa0b96c03f07fa5986efa1a3e3e9be0ad76fed8b3c0557e4c1db897af78c879a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.bzVLTNG1KDfVVQ6cmnow9wVUZrC9QHawYbCZ0TMldKiXmQS3qNelyWK5n6ZMkIq78KkbycDHRG4SSGZ5TIgw3UpNkUZFxOKDxl7M1jK0Husfi2xx\\-2BqbYwu6EHwkD6uyWgCzV_p12xlmf9wbGYP74J9sxQbT\\-2Br4BYZqt3Kqp69yM6ZWA\\-2F6Ls7s8RoczNFf4mC9qtWrQbBqOKn67r\\-2F6wK7D2rizxxUfH7olb9ZkK9AgiWFp7ZtYdqAYzVB9DvMJRh7NTfzzXOUNzatV7OmMB7uGriNNcrVA8M8WDa2rzSwq64hK9SnHe\\-2BHEgwcdVMx0\\-2BBtLL5QVD31p1qYeaQLxuUYwFZB\\-2BfQ\\-3D\\-3D" + }, + { + "hash": "097fd023dd1fbc2cee942ec06638ba5da261ca93f6ce25203281bbaba7ee8c1d", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fbb0d7f68de3cb5e4bbd2fb2e5e7d8322c6154a6a5fae728891d151188555dad", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6495dd8d3b56a9bb7ab1c3c3498b68dd787e7bd4a780c10903accccdc30e97a7", + "regex": "(?i)^https?\\:\\/\\/gianog8002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c39058b1536650147cd05d62bce2881d32a72b56552f40352fd0bdc6a0e45ff6", + "regex": "(?i)^https?\\:\\/\\/5fgfgffgrg4g4gh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c6292a\\-90794eef\\-8118\\-4bfe\\-b808\\-5db2dc5076e1\\-000000[\\/\\\\]+tG7tbWJpEPU\\-7GraIeDYkzwMgmk\\=394(?:\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fmua1\\%252Fseguro\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID$" + }, + { + "hash": "e4cb23a32ebfb9aef81a5b0fff1aba58ddf88b00366c05a6d98b27762d3016f0", + "regex": "(?i)^https?\\:\\/\\/freerobux\\.z13\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "d36b1575bf4ce8705752a299794ffd00be66b4b4cf9d99e41255f72fbe28edd4", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "11bce6d79c964a682acc0b39a8818502e5af356ca5bab38abb25c5fa57cd2fcf", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ebc589612ec7adaf6df74cf0b3f5c5f6d3f0f2875c9cee397ab960c5d35a13d2", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2Fbafybeievsjxpiin4xutxldcxsqg3vjos4yrpxiqjm63rgjztdmt7nl5mgq$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245882db1\\-ed943a6e\\-16d7\\-4d9c\\-9d39\\-3c579847b185\\-000000[\\/\\\\]+X02bPMjrPlViNoB8TkR77Yndvj8\\=394(?:\\?|$)" + }, + { + "hash": "4eb819568729e8d410e0a9438a4cbbddb040aa8f2def98321415c985fd0ea5d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2J5c0pfv2FAlbVWBMiL41qEr4aYWYiL\\-3MhZ43CCTCo0lIUtmkgEGXxQDixFTlM3bMalNDCHyIx6t05HYQ2E9u_SBMuwzSJKa0CrI_FQ18es73DjEA\\-aotUyzuWRmgSUsaH22aVadZXzkpX_NR_oWnniCtgC1qbMjfJr86uWSfFTYzIfLwT0(?:\\?|$)" + }, + { + "hash": "566adbd4c00ddfa783581eb36c82520733a996c69f55e88757a6a351ea0efd10", + "regex": "(?i)^https?\\:\\/\\/sportybetbalance100adderwebxite2023org\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6e70827fc1082246fe0440d0a5ba91dd9ce44a1b04fa4ce06fff805b330f00b2", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "43e43796544a9b1adbfcf26dda4c42c25d151243325987a0384aa6422954ce7c", + "regex": "(?i)^https?\\:\\/\\/5fgfgffgrg4g4gh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "33cdeba3bcdd68dc64d87d77cec9b35af7456a91bd6901f65b55e9e93cbbc89b", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "25deeba7794d00badde5c53f3c4d3463826f88ce0769de6345460419a5a93d36", + "regex": "(?i)^https?\\:\\/\\/5fgfgffgrg4g4gh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2545f959914496a62146a33f4a961ee09cc1c9ff2baf7bd999ef9f7726620cdc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "970fc64c0e22c5b59e39292cbf326db88d7350b7b4b0ba9b50f49578df561cc6", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "0dd0c73420303386bb77b9f5e4dca62246e686db9df80fbb3ab5edbba30df223", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7aaf5568d38ef0c74dcf2a09ac26a1678241b37ae789560ed8823b4e08753b49", + "regex": "(?i)^https?\\:\\/\\/blazehunter\\-embershaper\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "faa49730552ac878e88566759709c1794f171405c0642182e314768c3a5c40a7", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a613a2\\-89e2f7a7\\-829d\\-4b71\\-b353\\-c73ab572618a\\-000000[\\/\\\\]+HcxT_Ta8wWTCsij4E3Umzx86Lqw\\=394(?:\\?|$)" + }, + { + "hash": "dde088150c3005c597fdc1efa9fe65b67f62a163b769936a394a35a67d0f6e9c", + "regex": "(?i)^https?\\:\\/\\/gfaeg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c8f7a\\-478e9b2d\\-cf89\\-4afc\\-9528\\-66f1331e4245\\-000000[\\/\\\\]+OU1pXDJP7Mu7SLXl4tWZtJtUj6I\\=394(?:\\?|$)" + }, + { + "hash": "8fb38450128c890d9b8afb279d2667325b02f694a5ee9ad1dbf2964a6b9e9c65", + "regex": "(?i)^https?\\:\\/\\/gfaeg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456be631\\-8670d32a\\-7a12\\-437c\\-803a\\-5ba21706d519\\-000000[\\/\\\\]+nbBdleGpDCeQm4ob6MJB28E8fso\\=394(?:\\?|$)" + }, + { + "hash": "a1675e6f2ae03ba85159ad6f0f4f7e933e8a4b13f2c6d2691b4fac784aabfb81", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "97a293e7d937129f7d02a88c35a2c7e30fec110b3023982697524e64b91c3a96", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6195aef6e8a0546613bd1e15952c38399b005fe41591a58180a1b3d3601da90b", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3cb9ec0f4520b082236f3070a6b2967005c4a6c3bc310086a30489ac92241eb7", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245882db1\\-ed943a6e\\-16d7\\-4d9c\\-9d39\\-3c579847b185\\-000000[\\/\\\\]+BuI4Qcgs9yRG4gYu7V1DTCmnPB8\\=394(?:\\?|$)" + }, + { + "hash": "aa0b96c03f07fa5986efa1a3e3e9be0ad76fed8b3c0557e4c1db897af78c879a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.bzVLTNG1KDfVVQ6cmnow93yEm2S9tT5y4FXK7qH0upuXpQwqU8wol2ZOGF1Ln\\-2BdZ\\-2Fw\\-2BtBG0mqBzvbTUCL23JG2LLIXPBxFQWvZOcOZrm6yE\\-3D1s1F_JvyUTkMW0GtFQvtP5Yu3I6YaBKwslZnzd\\-2FyzQk57vlIiUIBaNcJlroef4eBekLQWVVZp8xlzf\\-2BHsgiNFuWrUmIlWTLlaxpecFevGkZ\\-2FjDdopgtzipeMp5dJ9iG5EIM1\\-2B8hiuVs46bQR\\-2FJCyjvZC\\-2FDXm1xdkbg9\\-2FwHUhvVKIvAnpz6RNGLqXVa2l6oNuzdIUXqzjLO5z4ws5fKaQBNpG0VA\\-3D\\-3D" + }, + { + "hash": "6a75e6769dfa2ed6911ce221848ba3fe6416120dea367b154dfe762e360b60cc", + "regex": "(?i)^https?\\:\\/\\/blazehunter\\-embershaper\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ed2097176ae8f7c348684d5749ba11dbd52af13134cc88cc767e9ba6608eb239", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fbf619b8fced94cf4ac1c336da8d37dfcb79d947787b91098e0f2b52c5331850", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b18fd3171cab78ae35b1c7672dd52d8cfcb6afd0fedfbab7580b0edaf70c9f66", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "db66ebabf091470e0c250d2bebb17cd9b483962c469e0f483933708d4ba2d75a", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6921c5fe53088b9bf9a21120fefecac1c421f719b810e6653f0ce9331d0dda89", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4a259d11e09912343953f1f7fb5e5a228f8603f57fe605d4812ee73ae2e57a4c", + "regex": "(?i)^https?\\:\\/\\/httpshttpssportybetbalanceadder2022hk12000\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "967f1ed65f3aeb5f37f3628ee92102bc217d36708253889605c339d35f951a94", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmua1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "fb0f85ac612c10f6bdfc4e8c2ce945326fa9e41fd8ba9d36cfc78a9d63284e7e", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924579af2e\\-1cb8bca5\\-e7db\\-4f53\\-a592\\-62e1ef7abf24\\-000000[\\/\\\\]+vHdKajSo8IlyXUSsWGGDi0lsR7g\\=394(?:\\?|$)" + }, + { + "hash": "fab318dac2d9db93f845628b52bea5fbcfb2a490b16cbe6ef98235797f470f8d", + "regex": "(?i)^https?\\:\\/\\/5fgfgffgrg4g4gh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1521ebe61a0b4636d2ad9ece6ffc6d7b426bf8ea9810b40212da31cd2a0e8a89", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "061b0231095c553f72324449de4b8850bd514d1a529bd8477ffba1b27d49b416", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3ee77f23fe75a5eca0892e9c53e45de689b54e57c3e1d6d0323332de1b138e99", + "regex": "(?i)^https?\\:\\/\\/5fgfgfg4g4g4gfg4dg4\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e24e16a02e7856289f1a5945da8570160c2e36b2474d3e2a8f6ec160a4710e59", + "regex": "(?i)^https?\\:\\/\\/5fgfgffgrg4g4gh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8b24662924c3e102e745589ce0894a92fdfe1abf79d3e860a12c69e153204e78", + "regex": "(?i)^https?\\:\\/\\/blazehunter\\-embershaper\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "80d55b916ff4d784166bf4ce2d490326aafd413aa272b89385c8983424266598", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxcardssp\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "accba3725ae9ecfb68b8a3115c6a517c0fa0e7c89f5b6bffdfa62578082d8173", + "regex": "(?i)^https?\\:\\/\\/gfaeg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "961681779a133ddb58d8b2304871709778cbc2cc328c3fe1cf36bf6d613f5c2a", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6529b2ca905d74faae0bb27310b487a0be728b5c5b2ef9d72fa7d616cdf8b153", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f2ec7a4505241030e1aeba00d1e27a2afa5270dec70b41217004ca0e6a853611", + "regex": "(?i)^https?\\:\\/\\/robuxrfo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "20fabc06f170b3f3fd87a418c6d33be4254d560775a0ee806e8c16494ec744fb", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a1c77c05c172e6687a387a270f3f8220fd753f8716773c0fe63172b6122a7ce0", + "regex": "(?i)^https?\\:\\/\\/rockweaver\\-stonebinder\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b2426637a77ed6ac98a0a05a1a050af8bcd1c803eba67e90084851a7ef8456f5", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456be631\\-8670d32a\\-7a12\\-437c\\-803a\\-5ba21706d519\\-000000[\\/\\\\]+sHt6krHchB78IIWRky10QU51cuA\\=394(?:\\?|$)" + }, + { + "hash": "6a0f4e36fd06713be1815268e1e5bafe24f4446a68d3b3532afedc9931d96b5d", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cc1eae3319e5b899806df78598604d3e2ddfd70fcf74beccb4cde9e950af1340", + "regex": "(?i)^https?\\:\\/\\/robuxcardssp\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "793eced4a914dc6da8a083ebd6d8022be159314e01ffdd83cf393cab7658dbc7", + "regex": "(?i)^https?\\:\\/\\/aqredhgbaqrhgb\\-aqr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9489f23b7d1baa15d058ad06ff6555894811f29262bb44a81ef7eb2f98e1720b", + "regex": "(?i)^https?\\:\\/\\/shadowcaster\\-nightseeker\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a930f904791bfa014b961239b0b20ff20a6d6d6fc2cf0e9eb58a9881daa14", + "regex": "(?i)^https?\\:\\/\\/5fgfgffgrg4g4gh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9cfa9496258046d51f45c9a00876f3ac188e3eda035ca805659ef9d6c5096974", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192458953a6\\-85775db8\\-e81b\\-431e\\-9f70\\-0ee412519136\\-000000[\\/\\\\]+d\\-EZ3FOul2PibEs5Nj1Ry_5k5m0\\=394(?:\\?|$)" + }, + { + "hash": "c37529043afe843d985e62973f2c5aa9e636717ad06cfc11b49453886f9322a7", + "regex": "." + }, + { + "hash": "06ed19b86f21b1e4a368be1d04a650e18c98b6f83ac5bba125553015d7f34ec8", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d548550467868b085913ed13d3f4b58eb99a1195ff1475204baf99204ecee7bc", + "regex": "(?i)^https?\\:\\/\\/gvbrg\\-rgzfdz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a6aa1278d6dd58a77a927821f52db87f9ab3b0e9c73d3c85b2621ed32ebc782d", + "regex": "(?i)^https?\\:\\/\\/redireciton4456\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c89100\\-e5f232be\\-600c\\-44d3\\-9a4b\\-e168dcf39e3a\\-000000[\\/\\\\]+zfg7wJSqWk8evt3OkVF51Nqu3PM\\=394(?:\\?|$)" + }, + { + "hash": "8ea7a40a1b88042b69491eb91f1e7fc0a0cc1eb4d24fe8ee25f4f9dd4afeb66b", + "regex": "(?i)^https?\\:\\/\\/5fgffggfgrfgg4g4g\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f025ed9046ed783108c74cc2e1fd803d76326e73c6b74f009f0892f4847ba5aa", + "regex": "(?i)^https?\\:\\/\\/5fgfgfgrg4g4g4gfg4\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ccef2085b550012ebb1aa335c109ff4bad244696caab910c5832c13f7739b7fe", + "regex": "(?i)^https?\\:\\/\\/redirectionhoho4645\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nbwcta(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c2ebc37c7c796d4e40a66184c5697dca66d7bb07f8e1734959c5bd8ead06206b", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "585409a5f1ebfd9963dd6c43ba67baf8d18db96d995339a6fd32e92ee0cf02fb", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2e2d39506d6966583b3fafa3b3f9a9634aadf17d43f63547511d45e554acf826", + "regex": "(?i)^https?\\:\\/\\/instagram6307\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9c8f210477a7bfb76295fe91482eca72b6554fb2b4d8528042256172dc5174ad", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3e0f9943d561fb80b099e276f3410d5ae257721f0a195a03a0fefa88427b19a0", + "regex": "(?i)^https?\\:\\/\\/movedmsoav\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c478fcfed062a3eb9104bc12ed2f203ba5f7541518bbbb30c549e002a1f55132", + "regex": "(?i)^https?\\:\\/\\/instagram6307\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c969ea8ec5dd3e817b75a348da30a17877b91de91e6853195d8dd69a858f8e15", + "regex": "(?i)^https?\\:\\/\\/efaqfgeqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "763b1005e0e8c468aabb12dcb93c58507abaacf3ee69599a32fbacc69c01af46", + "regex": "(?i)^https?\\:\\/\\/khkh6868\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c7d2aec915d53529783a65dc53315f9e6ac819a7f331edbbf0b7a9dda7aaea00", + "regex": "(?i)^https?\\:\\/\\/klhjkhi8786\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "18d7a8a9cd349b816d945973f07134f7b8fba5c4c890a59df8b2d58614ca7e24", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "90a91c45a97f82241b2d987b5abb3e07711b4a43627915bb35cff5aaf005c8a2", + "regex": "(?i)^https?\\:\\/\\/claimgift\\-x186\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "627cc47c6c27a84c912c086b033788ca5756f7572345a382614f6116c7c32bd6", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ef917427b987654236eed06544875701dbca97dae5948ef6597d06ad6f644850", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c035b3febd67e22ec780deee68602f5a0ea85b732d1da6ffce2190a5ab14148e", + "regex": "(?i)^https?\\:\\/\\/efaqfgeqa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b299a858e45983f5258640beae20d38ff59d04fb3aa9b57c53cb92845e84995d", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0f2cd2fc03657a0c8fda6e32d800473d1204122884969a02245c1215ecb97a4e", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d4140db3ac6f494792e6fb32ceeaff63ddadab9dcbf61d2e3eeede0b51623262", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b1c535834a6ef661af1e89979f045bc943941d122531bf33922f6d56033853e9", + "regex": "(?i)^https?\\:\\/\\/prcboards\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "674a7ea251f44d2e5b93ee8aec2ad476fb9f6695874eb5767926c7b47b20b454", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b7b1c1bcdd561cee6cebf2335e08649d548b91f2b4e909eaea048972b0301a41", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "404201a8c591c28121c72cf3d206dbdd4dc3d8f4def2d3ee7b049346510878f6", + "regex": "(?i)^https?\\:\\/\\/feagq\\-eageaqg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4eb82f345886fd6cd9208ebd04db134e9ba9a5a252c164d11465a7b3f4c6190d", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "88e7e380db84c94cacd0224b36575cd2ca936cb54adae4400c45e2f2b7b7af7c", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5ff3ce280693b06f1d24baf668dc848bb13fa1623d616aa8158e9827c601e3d9", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "914d627542ad9548f40671e703197545f9b53f4922ebef7ad563de332fa3ed21", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "66fa26c6d77c48296f8fa6bf13689260e01bb7905e29c67860a205aeb458a485", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7dcb4b2704ace68ebf718449c8108f3031bc5181f4d7756f9f4a5f33f99fe277", + "regex": "(?i)^https?\\:\\/\\/dr6tgf6rtyhnfgyu6rthtujnfguty7uyn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0e5cfc6bdd5e1f62087c7908e59aa80c54c5af5c3aa2dcb714a57741bcc174b5", + "regex": "(?i)^https?\\:\\/\\/feagq\\-eageaqg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "658ca8832df39e2841a3b3c1ef523829833371b35ff8f30f6264b96350d77403", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "24cebd16b3abbba38cb86f621f7bb261bc7b766b57a6d0dc5ac3fe3141cdebc7", + "regex": "(?i)^https?\\:\\/\\/dr6tgf6rtyhnfgyu6rthtujnfguty7uyn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "879a9478b939c6f13c3575fd3cba58836dd24b139f0f264c6b3397545c0550ff", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "48e5ed141116c4c8f7594d558a120f3ad195afe45da0594555d2e56262167762", + "regex": "(?i)^https?\\:\\/\\/missbobux\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "482477bee0607db76cbf3a226991442a1f86bae17f05e40c4cd3fa2c6129d2ca", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "71f0ba3c8537dd99635c325cf2cf7a5e1b60501aecee0ae83c5166f7ab835800", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ac51e3399f69226c84fc719056e09a7ea0dd7bdc92b5c01f285f8323693cf154", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b7dfdcac1207eba3264f624d5e0cc27f734568a738662c62164772325f244b2c", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455babce\\-ba120877\\-f1f0\\-450b\\-b7aa\\-ed966c17b4a4\\-000000[\\/\\\\]+IENgV_5In8CnbbyHcE0Bb_Lp324\\=394(?:\\?|$)" + }, + { + "hash": "a49b2dec79d075ae501098d8fe34214e610cced78db94b222b96415c885da9b2", + "regex": "(?i)^https?\\:\\/\\/khkh6868\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a7e45fb2a5045a03ec68f7d6c3c15025fc0d2432fd92ae2b1fa9a7b9bc198705", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5323dded3ae4c8cab82ab3c1efbeae997debd924a5f30f37f9c5a81d56002b9d", + "regex": "(?i)^https?\\:\\/\\/dsad222sasf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f9bcb76ffa23a52d2fe45f9e08cc26bcf2549e2f9651eee82a9daef66f2e35e9", + "regex": "(?i)^https?\\:\\/\\/mioveirkeva\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3628d286cfa468680eaa19617edb5186c46503b23da0486d46677549d050d051", + "regex": "(?i)^https?\\:\\/\\/movedmsoav\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5a65c719de1be9bac3f6ebaf65a7cb30d6ac3fec17ba0de4eb4aecbcf51944b7", + "regex": "(?i)^https?\\:\\/\\/mioveirkeva\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1982c7727713aebce29fab3cb1bfb203633af657e5965d2f184a0c629d3c14c9", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9ca472d722dee24d89e18c73717e168e236add4cb10886e1414b4d1c1980608b", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ac389e\\-f74b2ee1\\-cca2\\-4f3b\\-a436\\-9377c18b9eb0\\-000000[\\/\\\\]+Y8In5AeeVNJqaAF0agTa5CTWy6Y\\=394(?:\\?|$)" + }, + { + "hash": "b98d6091720c774c7e1ed10b5a2aab75aff27e4f7f8dab926049a83bcc3ae5c7", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6d0b4f43baba0bbf420ffabb4ebc74dbcc1d7ff766690d9ff8705543e254e0b2", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cfede06fb63f08bb825d2e50963ad5b9782015d31d182d91316f64506e2943b8", + "regex": "(?i)^https?\\:\\/\\/prcboards\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ecd419ffd9aba98f4a5dcbe02d68a3e2302f060c96a8c6b9a872a569ed42d046", + "regex": "(?i)^https?\\:\\/\\/attyahoo008798\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "49d97d6e8536c8fb1f8cb5a7b9bbd20364294d23516870e3f7acb99ab856ab17", + "regex": "(?i)^https?\\:\\/\\/dsad222sasf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e4bb2adba05b20470b6816218138609331dbe7e1d317c1aa06b96246e33a39ad", + "regex": "(?i)^https?\\:\\/\\/dsads323\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "19e0ade5e6f3184f3871b2275ce97b986a69c0b1d04fe08a6b35ce9a50a79a9f", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "278cbdda3065cb77b03991bb7c1a78d4a3d2bbaa00da134e2dcd17c05cb29378", + "regex": "(?i)^https?\\:\\/\\/dsad2321\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ac389e\\-f74b2ee1\\-cca2\\-4f3b\\-a436\\-9377c18b9eb0\\-000000[\\/\\\\]+dvzZbYJLo\\-78JvUubzoNqCmUZQo\\=394(?:\\?|$)" + }, + { + "hash": "c5c6c080990bfc80fd051f0991b1f17a10c4d85c7b7a1a2e0b838c07e0091a12", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "be26d17e5259252deb3fa8a3dcf40cefdb2b2bf9b972be37b49a04b729cd0610", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "98ad8362a4120b12097a36c84b059bab903fe040e308b0f0fa8496d1e95d0731", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0894d0ba42e5a16fc6680f2f81c3cb840f10382a7c2b1cab5c3240dad3967e03", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b5c87983c0a5b13543dd68b0dc8c922e53bafc37163c183ce02e14bb4b26e5cd", + "regex": "(?i)^https?\\:\\/\\/pub\\-1f9c76ba21564754989edf99147f6fb8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "730b13d49f1a7907aa83415f4d0521c993fe2d1bc102ba0319c59be99a5c9959", + "regex": "(?i)^https?\\:\\/\\/khkh6868\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "27c4d52599e11371955e33bd4128e460a8ce2c5737f1c5ea50d768d9816a06fc", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1a1cbfa4b1c937683e66553dd7cec151e0e730d51bcd049ef48866c035b2a35b", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f930bca3fb52277b5fe268b6b959a9749d508a3b1f818f691609159b3d7c3cc2", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b00b2aed8ee43ca3b8552cfb9f2e1f337801872b2f6496ca5b701ca5fb655fe2", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "171cf90cf7ca69e1216f359698e9131ef8e254cf40b19e2e6377989405d7bb44", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "313d5e100a507b5436c89ab20810036ec3cb93199216475a70ed79efd77b4bd6", + "regex": "(?i)^https?\\:\\/\\/qaegqaeg\\-aqe\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d3aa7b0a36b06831bfa41dcb31feb0581bb798366ef3b45dd93c0117e1348cdf", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "64a0654291b1979ccb4cd9f6f1aed9de0db3c0ffffb06b3b7d739a0717739c0f", + "regex": "(?i)^https?\\:\\/\\/mioveirkeva\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f7b0abfd087a7bf66881cb25dc3cb223bda427d34d7dda598057755baf003181", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "85249fbdbe150a54893cb7392b0be331af972f056951110e80aa6f35b1598fae", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "26c0faa4c7fc69fbad3079f139553b029b82f02c123d11fe3e98f08663f12871", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "171b6f1e1dd7f3c54d300d8e25f012b37eca4e1e889f9e173580b0cb79a3cb6a", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "28b36d72f4b5435d8cd4dcd77a5e9f57fd925d85cd5aae2a0046f81d96acff95", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "228cd07550b8ac941bd06380fa70dd8830c269130581205cd7e9977fa447d986", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "171af418043f985d6324b34f5cb6932225d6b78717e63e2b9fa24ce303254f10", + "regex": "(?i)^https?\\:\\/\\/robuxgyf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c21fe11fb20afd5d01277eb2a0364d1f50b20da23adacbff2f783a32d0d33655", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "73869f3ecd446aca1903da409144b2d14f8199db4042e1ecbc695e81c87845d2", + "regex": "(?i)^https?\\:\\/\\/prcboards\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e1983a27d56f2978262ec9eec87d97632762e0ac2571e2937aedddc3e239ce49", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0cd53e155702aed6fa832f2a33da5174cf4e34e506b0061c11696069c71cdc0f", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d76afc9adf4ad1a2fdb443ef4d871b4158f3043493fe1e56e240fc7f7f0a2c3b", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "723f465970f2e813a3c2a3118cd2f9dcf691c4a7d2685fe396b3e0a70e08fd47", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "14d9640c8e756ffe6fde76b79f69d846a6d88dbb08fab1c27a247bef3b836941", + "regex": "(?i)^https?\\:\\/\\/aefgeaqf\\-eaqfaeq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1d02d3ba35c71291926c45536c4aa3f5706c35ca6920d7ed90a157464d9afefb", + "regex": "(?i)^https?\\:\\/\\/meodfkcvgc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b41de32ec715a3af7dc69940a8c62ea710a047c290849690f01de88a6f115870", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "31874ca02eda1e6a1b08e44e167c9890039d3c8c91c3324ae4b46d2e5947dc8a", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "44ee7a559aab9068acee668af59b1e5fd26ca6bc3f63e16f6052c11e63c94463", + "regex": "(?i)^https?\\:\\/\\/dsakjdhsa83\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d481436b4e519662898974a15e303c193b6473bda66c0b3b86efd233b0da7", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "770d7f48b596260d8baa28ac7ec8d43a9e9e6dd333bb76e38f448c4d5e0eb4b1", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3411478bed4da72ea6aeb1dddb56dddf1d73af9e8043cf341e13a0481b809675", + "regex": "(?i)^https?\\:\\/\\/movadnrwa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a1e6d05d9417970da4168f1473d4c2c9837244561788cb87f7b609984e30020c", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d1fa70b880b56bac35bbe779384c6c0e6f8a1427278ab3bfbf0fdcd8998c88ed", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "812b087ea17619fe23eeaa482d160a95494f98d4cb02c99c6a1b209ae3837e56", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ad43ce09d1d6ac9504afe87a2876c1cbb21888b3d43afdde02ccd5dfae250132", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d4a3d0e66142f9cf1109b2aeafd3ac37e32c5acc0a5f9fd12601b3b0a82e3b17", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "32317fe90beca564a1114d0f0c89dc25f367816da683bba27a1a13aea799cccb", + "regex": "(?i)^https?\\:\\/\\/kelsdflsdlf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0487d2bd3880a283e7acdcd89056942c76b2fc189b5f9d54374f03daaae15f52", + "regex": "(?i)^https?\\:\\/\\/prcboards\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "75477fd094adf70cd09afb12e2a2b0038dbbfc99235a15fe852c0ce5f2b8e3ea", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "098db344e894e4febe99ee57835c11ab4c00aeb071571f6c8494b356f362fee0", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1d885deb5d58d8a47f13b8fe9dc991c38115fc49f94075818e0ae489e85673a9", + "regex": "(?i)^https?\\:\\/\\/dsads323\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "901224314a8b37b779bef30a182ec2a9b5ad285691742ca26d67c56bfa65d757", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9d0cdda299da72ae0425e441f285bdce38fdee5942cfb5014fe444af199c736b", + "regex": "(?i)^https?\\:\\/\\/bs\\-generator\\-online\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bb81f54a7ab19f58917e2348ab3b155f32a139c0576239c5da7e616326ff1a31", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8ba83241026cff6f48ddee4972a1941320ec0ec454baad98ca8c547f18405dfd", + "regex": "(?i)^https?\\:\\/\\/kelsdflsdlf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0f5e8aa16ca5941786d78a6e2a486520c2db0ce9a006db887b144b1d579e638c", + "regex": "(?i)^https?\\:\\/\\/klhjkhi8786\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8c2b8588b09711e9513fc8fccf1127cedd0ffe3ea175f69b2fcaec91e0741fa8", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "df50ac2cfcea22ab796da72d0b26a07cea04867204bc8b6b6843fad3752e937f", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8ee069c7871a7b2aeed6b9ce7acc9a2e9f23c2158b7c812968d1eb7de92c0eda", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "281560ab71d05cf28e67a2377e102bdb2b762fdead05623b50c60cde2c16d3de", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "585c3df087dad872ddfdab9815a8ef403bfb5baf81a836fed919ea87f989fbc3", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a5a48e\\-3a117d8a\\-daac\\-411a\\-be9c\\-87081af842f8\\-000000[\\/\\\\]+61Omc\\-dqDA955alJp5nl2cx3pmk\\=394(?:\\?|$)" + }, + { + "hash": "12b9bb6504f654bd43d952f965ea4deb9a26e0470f64a0d5aaead043f29c6fea", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d0168b35d016b67b41683b11e6e330f0d242bde8926161b4d1a57e7d13cfaf61", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b2add8e00ba0a95cda595568b18a042bd0f4b6476a25a731dc6d72cfe3f173d2", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1ad6faecfd6ee6ea434394ffd236c723ce229ea1a6382198cb8bb203637fe060", + "regex": "(?i)^https?\\:\\/\\/bs\\-generator\\-online\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2a482e17cdc3bd33c6d758c9c2520358eb9b07634f5e2ae6c76991707c61ba5f", + "regex": "(?i)^https?\\:\\/\\/dsads323\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "18d78e05e81c8f1caee266b580cdbce58b7127760dc63f19e4ffaf8ca426e277", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d7f1ae034eb6958212cd9a6034a172ff3f6b9559e88764a7385b893289da877c", + "regex": "(?i)^https?\\:\\/\\/feagq\\-eageaqg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f2e0fcfa171d9a429ac323c88e5c92adac66eea0451752beb79cb0006bd906b1", + "regex": "(?i)^https?\\:\\/\\/movedmsoav\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cddfdbf47f972f30a17374e2f8baf7631427fd04bdcc614ad8e85ba3ad3ad9ce", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dd3a940de81a9f4315e843d30f05f44287137ec3d400c1e7e723bd16f69e4d4d", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d8b90336ac04d341d381d0c9669a34afd96a55dc296b25d94d7db32511cc923f", + "regex": "(?i)^https?\\:\\/\\/instagram6307\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6529eea3b61a450b7ff43762d61b6675c85add5b49f884ca0b7dd7b93a44df76", + "regex": "(?i)^https?\\:\\/\\/movadnrwa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8f55c06d80f84fd7973417ba124ab853fc06544d9650f69479993340b0c84423", + "regex": "(?i)^https?\\:\\/\\/bagaklaamca\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bcd5c822409303334ee22f8c9ec8de58053c88c8135b43f12ce14b375fcb2177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9143[\\/\\\\]+other[\\/\\\\]+restrictionIp(?:\\?|$)" + }, + { + "hash": "c889b24ce193092548b686e6197547af76fdf5b443946561652196bceca5cef3", + "regex": "(?i)^https?\\:\\/\\/dsad2321\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "edb29b8b741263c988f6d561f9a5cc29cb5c2b0403e372f76a29b72f42b8fec3", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "60a988d13eb462e5ddf29e5042360380f719601b13cebddd388e8752164d9a45", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6b3195840d74e429a314c08b52ee853463d03a642b77cf1d49922591ff90b88c", + "regex": "(?i)^https?\\:\\/\\/dsads323\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fed4db72265c091f06cf1cc0dd9756172c646c3f81240985d932d1820e3d4214", + "regex": "(?i)^https?\\:\\/\\/dsad222sasf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cf7b6322dd86817807f70f72cf5aa2f15cac8f1cefa7d0fb124fc0eded4f5cb5", + "regex": "(?i)^https?\\:\\/\\/powermax9\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1a4caab2b24ecb2617902c199d2aaf9ff4271f02101e9402cf420b724f93d51e", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5fb6fe44850fb44db13f97deb94f643567773522fcc10ffd66087f76bca8ffaf", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1d9eedd1a5f596ee4ffa59b522b3ef9e5471feb285687a8042d7df90ac68f41c", + "regex": "(?i)^https?\\:\\/\\/khkh6868\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e78707d234d43eb667c38629daf64e87ec7aa25064f8d44070e34ac6aa9ce65c", + "regex": "(?i)^https?\\:\\/\\/khkh6868\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ca2b65a33018cc502ab7021d82396234ddb6304232b3fbf14e6701884ff8170d", + "regex": "(?i)^https?\\:\\/\\/mioveirkeva\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cccf71688d5190c4ef29450b77f518296a2b306a033b8e223252abac56266889", + "regex": "(?i)^https?\\:\\/\\/dsakdjsa8323\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "93ae6707a2746b0c5a9256dedd30cdf041f0c8a9f0c56ea035f58cad88f275d1", + "regex": "(?i)^https?\\:\\/\\/dsad2321\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d4bf25ce7163ee0be4a3290b761536e27f7c541cac51e4eed2b2ac5935d66e39", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6f5461fab791b01582673b953c966ed9ee660b6fa96a9f2959d67be964276cde", + "regex": "(?i)^https?\\:\\/\\/qaegqaeg\\-aqe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "06657b53ad6be6c968e32b47a5b33105b0909df710661df6db03ae483435f4fb", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d88de5557e66cf04b184cbb784a3be9ef1740236808904ab4804da7e0f1b3044", + "regex": "(?i)^https?\\:\\/\\/movadnrwa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "608ff53c817413fcbe9c107ae315faeb15dd8e0d15391ea48656c6c6828185f7", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2bf50ac31a61d12ff2ce246dc86653c184f563cdd07914e44fba1a5d488d31da", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "856eb993ca03d3f7986e355644c6d3481fdfb146ec785a5ec124d3cee53fd714", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ab41e20ffdee6ec18188147ce5474cc5508f9d4ee095d0166ccb3c316aad9664", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "40eb602c0092a8b6e24affbc19f907c2995f1b642ae76446b3cb7c639cf35cfe", + "regex": "(?i)^https?\\:\\/\\/banskaljana\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3a808a3829eeefa172912e5b3b24e6cfb61b54143bd27e6384a6f3673fe93936", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "43eed07310f338d316d2fd7052a7bb51f3210036a4a4aeaf72459df58386fa32", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c148321923b7a30a77ac970013211152985dde0bb8e2b6b09e1873c062f3da3d", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3c04d37a0085ff2e5c74eed504286bee13a1fa3d22611c53296e154ebe51e2a7", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b5d5f39824e8b735749fda191956c69e19bddbd30d9dbc82629c10677e669fc4", + "regex": "(?i)^https?\\:\\/\\/khaleel1911\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "74fca268b67224f1e7f2eec391e9f4e65a6ffe639a11c0d0c9643bfb9e0d132c", + "regex": "(?i)^https?\\:\\/\\/banskaljana\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d5ef9d0ddae08a3b84c128d3fe0a84e8ced42012989b8e61e10ad951cd246f4a", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "edd1a09ebb2ad442412777334b2cfea498ed41f7768a3bb0b47129a1dbbd07a5", + "regex": "(?i)^https?\\:\\/\\/dsakdj22\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "be0dad1bcef60f9e1e3913b6efffc878022ec6f146a0ff2bdf4f5016683ad338", + "regex": "(?i)^https?\\:\\/\\/dsad2321\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a1d5a27d1045d2c8c4bcf4268a75ebc55b8a5207906292780c6af4b81d119fc7", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "07abcd28a50598dfa21ba0a5b6b5582b76961b3d07cd3156c9638c8bc951925d", + "regex": "(?i)^https?\\:\\/\\/dsakjdhsa83\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6ec753b38d52feef6061cebb00e96c102c6fc5b3db04ba0138887fc82570f3b5", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ed6b0680ac9a59997561d40146e592f4bf6083e611c2600dbf6c3ff825377ac8", + "regex": "(?i)^https?\\:\\/\\/qaegqaeg\\-aqe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1db51f93aa198efe65210179536bb0a8bfdbc109bb6b81cb5076cad9508a3506", + "regex": "(?i)^https?\\:\\/\\/powermax9\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cd62d72e65acc8bf003a2988cdcae9f2dc90cc8b81fe4d269f2b91a11d47bb6d", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "54d4a4e919d90bc2ab63d7551c09cde63e0410dc056762abc317fc1b576eb982", + "regex": "(?i)^https?\\:\\/\\/dsad222sasf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5486049ff603e8d9df8cd91b95a1091881955587cda471779392b0d99721b89d", + "regex": "(?i)^https?\\:\\/\\/missbobux\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4f034b7c80ff46e459d1944ea013e69f7404eb9265ac427d0ceaf5d36f37568e", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1804dbd1743b281d1eb95336ec68a3750c1a3e54f5b69b7416b437358939bb41", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ea33769109a2e9583bca0b44a5dc4f9fb8ef011668286b27c4d13e2e35cadd1d", + "regex": "(?i)^https?\\:\\/\\/robuxgyf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d5154bfb22296bc0819310f75387d6eeddb2036343c886e4d85bbe40a0a56d1e", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a5a48e\\-3a117d8a\\-daac\\-411a\\-be9c\\-87081af842f8\\-000000[\\/\\\\]+HHBGuNWzsLDd_wPNqv8j\\-cA6EPI\\=394(?:\\?|$)" + }, + { + "hash": "41411e788723ebc455b0073887e4a64da3201f02bd7844945fb39c6e503c4c44", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "783809d2ac91f7321d7b18616cd5f3828b0e32f377c7a0d0de8e32ad12cbf6d9", + "regex": "(?i)^https?\\:\\/\\/dsakdjsa8323\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f4ba984d618f21d4b90f32f2ed819f6518b5a62edcee22e62003d0dfbfbec497", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c3e3207136f3da68843ec02eea6278dcc1c40dcbf90776f49dfcf5c468b71431", + "regex": "(?i)^https?\\:\\/\\/dsakdjsa8323\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "76dc5fc1423a8c141f113029a0db80904926323457251ddc29ff39b6dbf8b05e", + "regex": "(?i)^https?\\:\\/\\/instagram6307\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "31578930cd5f8863f4ee801b9f00cca2904b186cf284b2b976d9ccf6d0d9961e", + "regex": "(?i)^https?\\:\\/\\/dsads323\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a08dabef6bad432b1bbd8aad9f85decf22c39effb9fe49b4732310c39de4b92a", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f0d318fde3b9b47e5271320b64a19d380bab9ee5830ede8a7b468cad79d918da", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "df5f060d440a0d56a9d935f7fed5d3bc12ca9ea01901f4f8c8774acf3b30301a", + "regex": "(?i)^https?\\:\\/\\/khkh6868\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c06d4f80df97da31214ba4c7e21c842f0538884d2922922c18f06a623f2b7e3d", + "regex": "(?i)^https?\\:\\/\\/prcboards\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "325c664a778ed6983931029b64331d17d64e765004d760fdaffebca9f42b322d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "aea8f9e538d1d42b181c412adc91cd8f97d0611c28a6f24a7df382fdd2b6e2c1", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "300b849803d0f0075497cbf497282f86a6d63f55917eb65436d813b5ee38fa84", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2685c9c1d2fcf5819da165e9b4e5ee76e8d09df371fc13beb1edeb64f4a99221", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fde9ea99e3285caf66a928b363c5c48edeaa183ddd8444dfe0d502896a6c96b7", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f9bcb08603dd628d04bccfa44c174ebad91eb1edd5cd8c563039c28963cbf6d1", + "regex": "(?i)^https?\\:\\/\\/dasjd3223\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8b60f257bf1ff334e2dafec14e5dc1797463cc8237095b0a454bd3f823f8d332", + "regex": "(?i)^https?\\:\\/\\/movadnrwa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d95699e2eeadf0a02491bb86d5a959f28133f84ba43ccf753c463808895c922b", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e7e959af28da500ff18c69de22dedab58d4a7ef0c67518bfcc2d14cad74ec0ff", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "531ab370ccc81e8e21f6ad29f66462546b5280998b4ce4562bf16f2cbcd16970", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yn\\-2(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "852448255d7c7850b8d1beab7ba0b1ea9b3948978db3c0c17417c689af73ebd4", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a78c05f724f586eb7f4506edf120a2f2f2575aa5b505490aac9ff75efadafc46", + "regex": "(?i)^https?\\:\\/\\/instagram6307\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "436e47763cc4a63d66fb2a41b8a1abceecdfccc95e151412e9150e3aac035c67", + "regex": "(?i)^https?\\:\\/\\/netdifgkgf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "89e89d2cf74836ef440daeef71f5abf585ca7e4bd0cf368cc68022872065660f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "88c731f3fee4943277f90b24e2f31cff291c3157dff17f2c724883e601bc5120", + "regex": "(?i)^https?\\:\\/\\/dsad222sasf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8f09ad6252e4709bd7436855f7bbb5c5d642db97b0c6777d37e37ee5335528cb", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "efad617f694ec10cc35121d597424acfd18ffc4e7973c19c315640e89524a715", + "regex": "(?i)^https?\\:\\/\\/robuxgyf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ab672174353b34a33d3657ebec2e8d3ee7bdffe86befabe7c8087beadbaa43bf", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "164cf2f8951a0fd5bad63d0bbba038a243f0d25fe37579acca584dedc175a17c", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "377a6156eff7a8284d4bc9035b351b8daa18f35bbcbddf7d845bdc39904936c7", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "03c90c867552c62058c81f42f55b3b4ea01d39506e07ec430dd466d511f92ee0", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4b817897abdb6b5f753cc88d2851d92a6526a38abec554e1bdd1e3660491117c", + "regex": "(?i)^https?\\:\\/\\/aefgeaqf\\-eaqfaeq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6d07858267dad09bf7ac5c7cf1525a58efd1453b3539d057fc5f6c89e93fffab", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ab412cc3aa3926b0be603a66774e7368079fe91ebee0fb644936750640de5d42", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "732e69b35e1ea34787700447d447a30a9bde75654d3e53343b7bd30e0a8ba14b", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "eeacbb53214d0bc997da9efcb3c97ec51b104853355ea6c2d05ce4c56ab57b43", + "regex": "(?i)^https?\\:\\/\\/kelsdflsdlf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "082e560f7ff725cafdefcd2ef9fbf4eecd2607831c3c0901bbeb0f653722255d", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dad660ca1720fa895f18665a966b2490ca20949a0a616a9a14200bb969a34351", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "577958fa5ee0e4a6ec809fea77e2d48ab4574ed4ffc7dbd88f604a17d88d0643", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1d3aeba278f3338121efd89e98d4da89326f5e7cf43108a06dbe5c9501afa638", + "regex": "." + }, + { + "hash": "30ea41442cd7fd5869ed06403ccee084aa8db99fc39723e70a84c6b3414edd93", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9c8ff937a9e3ebf60e2b947e2a934bc3559150e645e18aae35dc34e2219be712", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "325fe07c311388ed51f40c0364d35b9039a963ef60e2848cf39cbcf9fc08bfdf", + "regex": "(?i)^https?\\:\\/\\/movzekrdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "05954f6399235a7aba3b2b32ec1ae1d8767d3ddeb4867a2951dc41184b4a535a", + "regex": "(?i)^https?\\:\\/\\/mioveirkeva\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ee4c29b1e4df280b8d58c25a918bd5c9d3c4aabf6edebd639f1248803f712041", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6884ab714a7946a958ed28dc3442108b741ba5c7696b69a62b21293ca2961264", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "98e12189b6c70bb353743e9db14fbe477e8410a5cf029f4158c4fa59c54a5682", + "regex": "(?i)^https?\\:\\/\\/movedmsoav\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "031eb17a3a2ed8e2c061cf96ada6f3f6200b68af4acae6009b41cce197c00cd6", + "regex": "(?i)^https?\\:\\/\\/efaqfgeqa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a97652e6b289b55f5c8d597aee4e320e54deb6b8ab0280475d061b7090e49c4b", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "427c277ffc0f8557320236ac32ee6b37d3e93d1ea557c7a67e8f1371b253df59", + "regex": "(?i)^https?\\:\\/\\/dsads323\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b76b00a7a6ef1c82520686a657c50d2ca59f1c986d33cf534ef2c2d137350b77", + "regex": "(?i)^https?\\:\\/\\/dr6tgf6rtyhnfgyu6rthtujnfguty7uyn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "137f28484f716db49e9609f76babf6d91b9c879372db6a2237d2dbe42e5324ac", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3a65579c9e9d565a57d1db23ecb37fc56dbc2aeaf3af998885be15c3a3e30541", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3df50eab3f8cbf48fb08713ebb43cce565d060b878a369a1e0349d3320da1e4a", + "regex": "(?i)^https?\\:\\/\\/klhjkhi8786\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c02c1966eabedb52cd6cef771ce02e293f246c23f44a3379b8d66e13cdf969e6", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0408ad0550930233ebbc3c6453ab223bc9216c27d5e2a5e8b97e055250122227", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "76e62691208a9e0f3325837a9c5885728db941e7ac890d3fdd77185056e695bb", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9bc1c2f903091597452559e0a533a61f13d1e7cab1401933b9c22c1872df8246", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2baa5e151ae30ea1b8c1431ab24c18eca8be1ac02d39b11fabe9965b73f6739f", + "regex": "(?i)^https?\\:\\/\\/aefgeaqf\\-eaqfaeq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f47f9def50fb5660b345188d427562445b1201b7e16c8b70e59f45805cc53e22", + "regex": "(?i)^https?\\:\\/\\/netdifgkgf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e3fc59f429f38c2befe23b68bff219e4a41dbbd980286a7dda42583f9cb7a9ce", + "regex": "(?i)^https?\\:\\/\\/prcboards\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1f39c8a3726c1f7b82abfd7b2ce04778f201ea5508bcd204c4331c48f41712c2", + "regex": "(?i)^https?\\:\\/\\/meodfkcvgc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ec32b69ef6e3c6b0c507b2fd38d701061ff607ebe5928a5e58f5ba7e00de8799", + "regex": "(?i)^https?\\:\\/\\/mioveirkeva\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2c08a2fe69b2ed5814b14b21286f497bce3b1d1ed198c2510d432db1a4a2c187", + "regex": "(?i)^https?\\:\\/\\/kelsdflsdlf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9fea8850133d1cac497d636ebd6e071c8db274903081164d6cf1a7c4f7fc31e4", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "79540f2bb35cd961918a179d8a9ee95a0bbba9821eafb5043f883e5664137ea2", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c2c4d2ae9502da6ef784bff974af8b5662cf7e22f1995b536fba82dfc890e9ea", + "regex": "(?i)^https?\\:\\/\\/bs\\-generator\\-online\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4e6f621b9ea3369d961922912915c41bfe32a6d2f1e40b65692c8d339480da42", + "regex": "(?i)^https?\\:\\/\\/dr6tgf6rtyhnfgyu6rthtujnfguty7uyn\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "997cdbeb243aebe63df225f7bca23d83fb55f8805986b275b52b526c4b574bf6", + "regex": "(?i)^https?\\:\\/\\/white412281\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "a09411493f499af98a1151d2a0871938de6d51ccb864388a4833491ce1d0d12b", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7fd83c165ed583a35cc9d6da329b0cb8e02921f149dbaa632149e0951b8e2bf5", + "regex": "(?i)^https?\\:\\/\\/robuxgyf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2d80d1261b8b1c8e40ec7011535d8ae29de6015d676cde29ec666bb42ed66ee7", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6be1d509813522172ba0439e1b2ec008c3c667426596933d7878679040a36bc2", + "regex": "(?i)^https?\\:\\/\\/movadnrwa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e7aea9bed440313f03590bb69298371720b9777940aecab494fdbab8327f952d", + "regex": "(?i)^https?\\:\\/\\/dsad2321\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0d2f2149d799a878704682887d7c0f6aa2e1d28d4e1c6834233be9cfefaa1251", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "522facc49a74855ce044aab92358178a0be22404d1f62ce0616c378a6dd9b528", + "regex": "(?i)^https?\\:\\/\\/efaqfgeqa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "01d6077b2321c0b6ce5d650773ad8a03b970a93b74a2e264cc103e41a9b2a75a", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d464724fac26483ffdc3d3728d5e37d9f028f5c7746ba7f2cbe64b8e51c34e4f", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3930ae05e6ee143ea6f73131bd3ab7bddaf527643848885ad2efb1193f440521", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b072d82f0ff712875e4bf6225ff82c8074b4a588e631843c0047c696dbdb21cb", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e315852c0f996781df7b4b974609608fc5948316f4195950cf619af6b460bf61", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1420b62d1c355a7de2811be66284dca5abcac7800d80966424869eebbad6c3a4", + "regex": "(?i)^https?\\:\\/\\/efaqfgeqa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cc4e0f1099b60cea754e0a8124dc358070702c81615b1bae28f63b021ebc4dee", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "597b59773e1aa6f57591d5e2b5447f89247e2c4a52d2196eea336b96ca0bbb85", + "regex": "(?i)^https?\\:\\/\\/kelsdflsdlf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "928e79a089dc7e0604cc45bd34688d8617440ed06fd9c8eaed9f729bae7834b8", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e060966f3a75872763b53d98f215700bdef6aa31ea6c1a33e5e63ec1ace402b6", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ef93b666ad61f50cc2714898486351b50308cf36a39a6e9fa4c86a3eb4be96c", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d7f15a0354f3f40785a968ff681a1dd86d30c3b48ed8c4e85c1f3df9d380cc97", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "332fe731443697c0719c0eb0a02c05dc984af20765fd7e327a931bdaec236987", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "07574fa5e9eef54ca7ae1eb251d0affb508c60427c1dd64558e87cb89e9281a2", + "regex": "(?i)^https?\\:\\/\\/klhjkhi8786\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "56ddde1a22be4be77f73789eb73141df04af3d9f4b74788d2317fb6f4d4f4777", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9f76616b2b45b4865249e72b8b69528f780b0742473c032fbd4bfd92aeacad0f", + "regex": "(?i)^https?\\:\\/\\/qaegqaeg\\-aqe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "14ea3cfea00c848505cdf9231a2d6e3c157fa746434402de460b0dddedea08da", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "da3a798bb2c616c48bffebf6d9d5625c29545fbc22e08c6e7e5d7b7b5d2b7fd3", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c5f540448e64bf8125ae0e22ce6f04aec5fe1e4e90a765263e2512d73594ed83", + "regex": "(?i)^https?\\:\\/\\/dsakjdhsa83\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4e6ad3d0a0121bd26578d4ef531741d9a109a315b85dfa68f2e238828b2492da", + "regex": "(?i)^https?\\:\\/\\/meodfkcvgc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2117c12cedde1660330f29d2fd766c639cb169baf76ab774985aa10e687c4472", + "regex": "(?i)^https?\\:\\/\\/dsakdj22\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "670d1f7720635aff96c29d3b7467c1b36efe073048f74355271d784151d8071b", + "regex": "(?i)^https?\\:\\/\\/dsad2321\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6b7ca8eed7d5d586ce186c209fce5bc11327e2b89535a82271d4bdedb83e8e72", + "regex": "(?i)^https?\\:\\/\\/netdifgkgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d9890bd8a0b9c29af38d029555f19d61f7e7b7a7710a136f7e1ff4cf76698c6a", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3e9c85072a48e9b3483d986945175e4e97e4097be5fa29ec2a865f3bcfb7ae98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chk[\\/\\\\]+Home(?:\\?|$)" + }, + { + "hash": "6f1be6397aed06a6fc9cf3d650fe4866975c1e5f150623edec54663415f720c4", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d9a0e63c51f0798af98f7a076f3f80184be1503d4dc1d5e2a6a8495e90a6be8c", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2d903a7263180b640b54446f6759e5cbf2c72c43b9b85acb8f94b7991256c0f4", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fea6105f87efbc3f1637dc00d86e6a66769c26a92d761a2afb9dbf2b1f53df89", + "regex": "(?i)^https?\\:\\/\\/movzekrdf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "40ec67568f0b6b6350cdd4bf82627af7dd7b92283ce7ce3c60390e4e9745cbab", + "regex": "(?i)^https?\\:\\/\\/movadnrwa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a58497c2d0e45cb074475d919aadc56e095fe332c37b7b05a888bf433ae0664a", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e8fc4429e3d136b4cf8edb560c5e8c488f4bb89083dc5a3305aa614f77c68bc2", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b42bea9f7549e2cf2fd13485fcc7adccc846298eae4dccb725065c8ac2865296", + "regex": "(?i)^https?\\:\\/\\/khkh6868\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f630e14d8462fa4a9f910297bdf573acf7b644a7298d0698333be67843d1b739", + "regex": "(?i)^https?\\:\\/\\/efaqfgeqa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d6e52c1e00de01997f6d4069e4a1c3e31f0466bb37787844c71f24d85439dc53", + "regex": "(?i)^https?\\:\\/\\/dsakdjsa8323\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "611597b84c76d43d0e26c4dbc86cad7b67982d156550ea9d055b04162f1bbe35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eee4a2ed9e2e4f15f0c668c5741d9ec8b792a9a05fbeed6c3402b62e582a1f0a", + "regex": "(?i)^https?\\:\\/\\/dasjd3223\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "eb4a8f65fb7d4dfb47e1231990943179fbd9fb45aa841792d2721979368ba843", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e9afe8a47ba2b808460fe823198f185966fefee9dc79da391acd2e01f20cd354", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4a76d53f7fd440cbc406f1425335f3ee9b6fce43e889be3d0e13ae027a4a716e", + "regex": "(?i)^https?\\:\\/\\/powermax9\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "af5044574d13f21e9bcafd2afa51f249b7fd5ceb5d9b181e428d8b95f8c61403", + "regex": "(?i)^https?\\:\\/\\/pub\\-e286e2b34c274ddea134cb33ce82d1db\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0d110f439e90a374574c0cf418c58839fa5b94edccdefc0c88a07f6e2e98471f", + "regex": "(?i)^https?\\:\\/\\/dsakdjsa8323\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3cf57295fac7ebc90d8041e3e7befa41c648540046eb032ad9d291534f5856df", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "585c6b228fc75af61c199739f1eb75b4087e1d7aab5332f9d30e1e6b70db8eb3", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "86dd611b76475ca13563bee5f81ad180d01a0edc88747f8817d5f0577d145777", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "313955f7106f98bf8867230ac5fefe410b6e924ee0f6435f3c3552672f781258", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3d416b54fc95f7c0c9e33fe5901715960f5dd872a426c11f46bdc81008976096", + "regex": "(?i)^https?\\:\\/\\/feagq\\-eageaqg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f3eba587ac1f599a89d1d28d15616736689c489c622dc07db57724d1f6f467fb", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4d93b253d5e65550fb4647338e459d95e7173bf958f945cf3e317980bef5f3b7", + "regex": "(?i)^https?\\:\\/\\/missbobux\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "51f267543bf1f0eafabee5e55b4e11bdc23a1af33af58b49c8f78a5691fdc24b", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "66d490f0e0ecd84ed93e5fbcacbe90014e6f99958f004a752ef2a66f3fde9cd1", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b1b5a4303055885baf28d2dacc817e31304409d56ad1bde91b974775a0f307bd", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fb61f6b361800656a2f75fbecdbcc611bce137fab6a49bb555f3ef95a77a82f6", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3d257561a92a1c8fdcf8811b6be49005acbbfd52bd3225038be320d06d987a95", + "regex": "(?i)^https?\\:\\/\\/kelsdflsdlf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "686b866bc338cc3e78441e6fe5421fc3301fd03f40f5e4f6e7843f1614d39e3f", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0785c800939bf478ef5afd6df97db6e0b046b0697dc610141df49271b33c1fa4", + "regex": "(?i)^https?\\:\\/\\/prcboards\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "dd773c53a55c034635325890a957e5fb89212b362e97107d0e059c82731473fc", + "regex": "(?i)^https?\\:\\/\\/qaegqaeg\\-aqe\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "46aa82ec581226af73b2a81804b54d15dd9a926eeed312d4ac8cd4c429e4214b", + "regex": "(?i)^https?\\:\\/\\/dsad222sasf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "485ada8419d1bced97a2aa29c8645721efe922984d2046e6ce8064cef3854d49", + "regex": "(?i)^https?\\:\\/\\/instagram6307\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "59418862d4bb8105ac7faacdb4c061dfcb05ce034024b59ef832dce412fa2ef6", + "regex": "(?i)^https?\\:\\/\\/dsad222sasf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6a75edd256f34b92cb7ef77cf61d81ed82e8f35c688d59201c61498a3d2470ca", + "regex": "(?i)^https?\\:\\/\\/pub\\-6d03498d2dc24b0abd04c08f4e559390\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1305fe1014ecb30cb615a239a911e26368fa2428ea8fd4566c1e6f151c7c962a", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3f5fe4894dc3d56194b269a009fa744a8bc37c85bb715144185088736c363082", + "regex": "(?i)^https?\\:\\/\\/klhjkhi8786\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6fbedf4f82d22476b58f802042d6060418705523514d190a36946a5a5cc51d20", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1aa53b3aeb06e26c489c82585e4fc668d229c5e1b02895b9bfbf21e6da8901c3", + "regex": "(?i)^https?\\:\\/\\/dr6tgf6rtyhnfgyu6rthtujnfguty7uyn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0582b36486e05a1f97170132daa85f5068dbbe03730620f6d97af47f6bb6160c", + "regex": "(?i)^https?\\:\\/\\/movzekrdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8477e1dcdf7f67efad330ee24fb21b7bcd04504fb3b6d3fc746a904b86fc92f1", + "regex": "(?i)^https?\\:\\/\\/bagaklaamca\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1a9ff0ba8f42e68d23670d5eacc76371397500fbc7fc3232a0eaee73f083e633", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "95aa8eb64de2f7da2d9e548e527b423dbd54b5281be98d92b9d3269830cfc463", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9b135f64f34b06b0f943dc95fddd06b00b415e8daf851603193e33c65b13723b", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8d3b13bfaafa63a8ed84b29719427686f25a411608274e80af84bffb41fa2366", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4771d6eb3c6b6cd652b4fa2ec6cb95f51560f3a885a1c72bef1109371364e72a", + "regex": "(?i)^https?\\:\\/\\/meodfkcvgc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7b73065618446aa697b05615578c39904a267b8cd73652048ff1f35b32229e6a", + "regex": "(?i)^https?\\:\\/\\/aefgeaqf\\-eaqfaeq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2600bc14cbf4fe984d35019e6e647b457d5661a0f89b8c5c880db357cc4f3966", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bd1d5fbb3d8f2fccb98ee78ee24059e49de14d4640aa200cf22a00408395bb50", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f3a0ee4df363a632a371155877da61f0ee7b9272ce48b9a53f04de597eb12460", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455babce\\-ba120877\\-f1f0\\-450b\\-b7aa\\-ed966c17b4a4\\-000000[\\/\\\\]+rOCxcK3ZrzvV337iKlYG3EhZAbI\\=394(?:\\?|$)" + }, + { + "hash": "aac425d4537b7a47c811d44899c85f9f42208e67bddcd1e426574bf42f66235d", + "regex": "(?i)^https?\\:\\/\\/qaegqaeg\\-aqe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "50880b3066b97f9397a2033431ba08bcd13b16d0b9d8988217761714494617eb", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "99e34dbbb13614f80e9bdc156f91f2995b45babe90231cd5891fc98ff9c0cd33", + "regex": "(?i)^https?\\:\\/\\/meodfkcvgc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c1e8a93428647d79a32c6764c658e65b72e91185b588a44c7dc7c6daa3460d0a", + "regex": "(?i)^https?\\:\\/\\/bs\\-generator\\-online\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ca663b0704e36e4449c222d65b4ac655050e23a1b33aba9fc9f39162ee231463", + "regex": "(?i)^https?\\:\\/\\/movadnrwa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1b1240837cf72e16258b17ea9f6bd591e2cd8258c9f98010c36a4d6e5f958307", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5e14e2025082fa0d6610ecac5ea6756806850d6b9a3579bb309cf471b023ab0d", + "regex": "(?i)^https?\\:\\/\\/aefgeaqf\\-eaqfaeq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f1333a891fc36b34bb5948ad1b64f0693ca65f6385af04538f4a2bd52c61096a", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7979dba3b3f499d75526c0e120559fc5a9561ad44a73122c1145e5260aaad79f", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7a7b9a5c47acbeb066226f00f301bc7c10575da925ad75329e8ccac34d527535", + "regex": "(?i)^https?\\:\\/\\/efaqfgeqa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b90ce0c9dc761b43cdc70d5ad24a7f59e473d310706f72cac7a11b86d41b4828", + "regex": "(?i)^https?\\:\\/\\/kelsdflsdlf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "43ee4c421fd915bc7ab4e947312f94edb364b536ee3a77364e9d83e9743762f8", + "regex": "(?i)^https?\\:\\/\\/movzekrdf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "25fec8557588afdfc4e1d94d32d26b54816954001eae854cd18e45a5003d8511", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3fe348cfab3e60a698bf68b1ab97e1cca70c7aa457b2c47d5a22a9ab6cff6", + "regex": "(?i)^https?\\:\\/\\/missbobux\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ba961ef0830bb1f772c8a2ef6d143ccf5aed73822ad6ddd549349a7ca78745f1", + "regex": "(?i)^https?\\:\\/\\/klhjkhi8786\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2b005eceadf01145955fa18ab4d759cb10ba5fe5027a1e956ae1e0e07a39049b", + "regex": "(?i)^https?\\:\\/\\/dasjd3223\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a6b7f95038277a1f92c4153525cd0fd0fee9422cbb62c6eaa5bb1e55a86156a6", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "65ac5cb499a88db815d811b57e4b1ca8871e42e3d2e44ea099a5da0819ce8b82", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "96e460763ea8d660063a2dca14a8e13a4b8d8689809260e3a8e79549b53eaf75", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c77a57f036d582d907a268840a546f1b1c2c2873da6ed29f34b178c3adaed803", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2a7a04fbecb4d0c9301305413958dd79b055f7f168c108030c5b1b4663125737", + "regex": "(?i)^https?\\:\\/\\/banskaljana\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "85521da9efbd1cd101ef00a693ccb93b62261dccd9d0dc84b799149afa6f3aa8", + "regex": "(?i)^https?\\:\\/\\/feagq\\-eageaqg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fed61207d211f7881ad057cc0dea403debc34caa5dae9dad6fcdf6a9bc2043f7", + "regex": "(?i)^https?\\:\\/\\/dsakjdhsa83\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "aa2662d8646847507b79dab28d1a4c4eb38fe48e0c63091406b575e91c6a26dc", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "611597b84c76d43d0e26c4dbc86cad7b67982d156550ea9d055b04162f1bbe35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "347e9854a362d692e18bcaf4ad22868688ee11840aaf77f14f711cc69407b79d", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b92aa76f341c70aa28967075684af3233f5c06823fa4fb4c639b05d66860b6c5", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2fb4955c3d8f1008bf1b3ce9fe4da34fb4aff3ee426008f32b466f7d935fc348", + "regex": "(?i)^https?\\:\\/\\/dsads323\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d77b9b3384a2c0f7d73927e83ee3359e6e2d15a254882dca08faad2428cab52e", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8d1732bef141fb07a2b118c19c7d64bb95a6df9d3a9d70b925cf66d0c268f4e5", + "regex": "." + }, + { + "hash": "67997ce939e7a0943de73ac2a6e4c02d915a43cdcd6bd5e411725f8660d0f3b7", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9001f890e2f0b38c4b31103ae9b85e25d39554a3c7827f6afd48cf440ac27333", + "regex": "(?i)^https?\\:\\/\\/netdifgkgf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5504e9cf14f92ac003618a69fbe6f56c7376562df22cdd88592f215c10b4b92f", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "865ed834d80adad3c295fe4e279ff0bfe75586c3b08ebe59904f6fc7b4e2d85d", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "96cf366ed43a068e025eec161bc8f01dd7a64df995f88d85e590f368931466cd", + "regex": "." + }, + { + "hash": "fb2af94f8292d118eb9a3520f393fec3640ad04c715462e95c124a97a4e0804b", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d39b649b6a90089e486927ce6916d85f1bfda42e309091967fa6c3fb3eb10986", + "regex": "(?i)^https?\\:\\/\\/starmovie17\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d766a681ae3e02081fd389bdec8cfc1309ecee0a85329e77c5c197e91ae2efd3", + "regex": "(?i)^https?\\:\\/\\/robuxgyf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "dd5d31327192e34e641ba7ddfc85663262a434ff16253ff8e29fdcf04c475a2d", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ae53400dbad9920fe21d8127b03d450f0f0939df5774fa1c9362dc7af2ef36d5", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5ca263446d85cf5f8811e9c61c795d8ebe0fabd8f51aeb61f2bc925635376ea5", + "regex": "(?i)^https?\\:\\/\\/gems\\-claim\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7f7c30268733ad22be5ce2aec8fe4102d4b26a59eb55d51fba56102d6a561081", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e4820a928273a6e0a08897c804a1746d7abca8871a2c75e04552a30dd81675d8", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d0efef1078b0c25d4698939b6652519a8aa3dd0c0d76bdfe2db47b2ac278d8c9", + "regex": "(?i)^https?\\:\\/\\/banskaljana\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5e86046d547d3949e4b9a9a9b98ec6e805490fc076d3e5c923ffce4ce653c25f", + "regex": "(?i)^https?\\:\\/\\/dsads323\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d6e8761673458085a1e9e4d149505203d8838aa11a926abb33faf9f22c839511", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3d648078c2d9a2d399cd7ab6afdd3ab9941766bde5c51707327134043cb44c44", + "regex": "(?i)^https?\\:\\/\\/mioveirkeva\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "62dc4f8247f790a3ba3bf244777137f5fbf30e7bb5f873643560747dcf09af04", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "749656d69c6ae568607ae655884c6f7c13d350a7005e3cf3bcdf4899b5b9bdeb", + "regex": "(?i)^https?\\:\\/\\/dsad222sasf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8fcf347897514a333fd1181472ec447b1225ba8430a0ee424cf3af100e65697e", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "22db0d08f60a6ff0d5dd200e2826c5ce95bee8d298d51d7336ed105916f1ed95", + "regex": "(?i)^https?\\:\\/\\/bs\\-generator\\-online\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "28347c65779d71a5757e995adf639b558a567dbe706cae453a5e0d523a240066", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "179887eea8cf3d68144294466e7a583779a3d80a3a5a09995c1f8a886d5332b3", + "regex": "(?i)^https?\\:\\/\\/dsad222sasf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "24d3fe88e9abe14a14749a3b03edfc1709477d7a5363c1c565997d62dc2b60d3", + "regex": "(?i)^https?\\:\\/\\/bagaklaamca\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6a79d596fab1f7dbfa92a17dafeb7e0c82028fe449ed8eaaec2a031902b80d31", + "regex": "." + }, + { + "hash": "5e2e7f75b425cd75b6dd803fb4c16da4c7d4509c2d8dc5f45dfb9c898ea87ecd", + "regex": "(?i)^https?\\:\\/\\/aefgeaqf\\-eaqfaeq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dfc6a525f832baa8fadd4c2dd1fedc97e60eea704cd3201817bd9e2ec2c8f369", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d6a1b6c48abdd3203eaff37eea7ac41344f456e7cf6e91880843423ea70758e3", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b4fd91d35623bc2de388fd73f8986f8f8701128df540ad83bffb03b0f092ddd0", + "regex": "(?i)^https?\\:\\/\\/banskaljana\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e10e4d24f8e3bb4af70f3f802a05f61fc1e46e4480d61981207b3ad644d35206", + "regex": "(?i)^https?\\:\\/\\/dsakjdhsa83\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "023640a883fa9e144f17b058b9a14d9756e3d407f29201eb87fca50c2621efc4", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c742ca66b73f581d04b02230d090c15b91ee6913d3c59ac530be5532738acba9", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "21a6c50f0e5ac7dce00c09747341984987cc8fd55289834264c7a0fcf2c283b5", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "58e49d8605221d192a685905109a37c608fc25f075054e886a2a9552c180ceb9", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fb7c9374789adfa9b0317d01c453b10e9d8d878af2e3af5f0d13af0c87090776", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fc0e98d1ec148319a266422bf3dde238506d5e0d433b1d512ba130b2b1097397", + "regex": "(?i)^https?\\:\\/\\/ysagdyasgdsaygdywd6asbyxaysyauwgx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e51376164c216c579d8e02ac4678a87f0d586acca3f1e6daa3001b17b84e5cba", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "56f9f27da686dbff555225c230674e0d2caa992e4e547e0f723d4886cc3e53b7", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "77d26b4d1d8fb030f4518c5b3330fc2a1692bab468ae3663a12d0afa2e1c2858", + "regex": "(?i)^https?\\:\\/\\/robuxgyf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "339e4ebfb73d3f0fffb95b25e69255b4f6b8fd9dc96361313fb2741f53ac6107", + "regex": "(?i)^https?\\:\\/\\/kelsdflsdlf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "59912bc3fa7300b70066a578d589833996cdc521a488aa7194c228f2130f7997", + "regex": "(?i)^https?\\:\\/\\/meodfkcvgc\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8bc50697edb95adebf4b59950fc29f3546879a76574cb6fe677d6bc228ba11b3", + "regex": "(?i)^https?\\:\\/\\/movzekrdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2fee1e63060b7cd4c3f2b0e138bc7865a82e016f7fc0f03c74e23d79d271ad0a", + "regex": "(?i)^https?\\:\\/\\/dsakdjsa8323\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "82d53d4d926a6a5d42df2e4c864962f3f303a13121c749bec6ccf4d0876e1bfc", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1c41b5e8924a118cf5b8d95938ef8a147ed792d236307834e0d79741404f5cbd", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0c8b7d066fe2f90331a534c44947a075643234afd55be0317d044369380bbf65", + "regex": "(?i)^https?\\:\\/\\/bs\\-generator\\-online\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a722f7031899a0ced39d1fac51c17feb1180a6325ec2e4c8a255a567fc8a2e24", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0d79402230c49ab5ab4ae11ca4e107a90e1cb2b48d4c58f6d5996abb0666f45a", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "851cd8a53db6d4edef42df874269818d92d0f678dd4717972d6a7a36b50f7a5e", + "regex": "(?i)^https?\\:\\/\\/dsakjdhsa83\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "804c6a636ea752536b879957d7ca78d6f134898c74bcaf6634a3920f4f9860cc", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bc2d62ee5bbda1e92b8f2513aa6299c75eafe5585bc55660e881393e6133e91c", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "797f288f5447bfceceb0d9100ac88e9ac3815766a1198b55fa608c33f084af7f", + "regex": "(?i)^https?\\:\\/\\/aefgeaqf\\-eaqfaeq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e461f2f833ed5921dd52a97f0ebcf8ba307236aca42b78d23d90e764de43599b", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bb9c77b42eb4d6a2e9894626373ae060648b896327031880753add93a8e06834", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8bfb7667409e01cb7ca0c2d49c8318ec8d81ec60d5f6b578085a83dd99eae63c", + "regex": "(?i)^https?\\:\\/\\/dsakdjsa8323\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0f5dd932d6fe0b2a2a4abdfe63481520491a1509b31e4b4e7046efea7da391e3", + "regex": "(?i)^https?\\:\\/\\/dr6tgf6rtyhnfgyu6rthtujnfguty7uyn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "66467e5ebce4adffd3f0c20ce94d772c12d14b843ce8422e00af2a28dc69ae7c", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6b45220ac7e4bbee05e61d5b4e3349a3b38720895123a473d807980c42d1c07c", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3a6a60301ead28cefd8b465fa5d7c8dc3fc45bb8d521357fe5e7cbf48e705105", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "975565a947c06291f54e143030f3432f2b8bb9dc13edc34a180c34e3bc14ed98", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4cb9d50254cf75c9fabdeb0a974d897a7936e25d53dc4a3a6178bd3ab0fe81ec", + "regex": "(?i)^https?\\:\\/\\/dsakjdhsa83\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9e7b75481e2360dac8be780d9999d77444371e9cc16fca35966bcf267a706b8d", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a89438d2da354da5e586ba84dd1b586a991232980737f4dbec0d766db350c618", + "regex": "." + }, + { + "hash": "56e5cf92b12bf84f2d5ce49ce60d991b2f4e4a6e3d47752056c551dbb3162cce", + "regex": "(?i)^https?\\:\\/\\/powermax9\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1bbddd96d0a53fe474d360d11768b5f88e313c53015ae349b982f89f045da136", + "regex": "(?i)^https?\\:\\/\\/ikb7pn309\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "bc2cb8a55583bdb2d22da5006b8300a125a86e106ffaf0cd465d093b1dc19327", + "regex": "(?i)^https?\\:\\/\\/robuxgyf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "827febbc3316a5fc2d54543b888fcf091dfba82426b26aed304c46f5594cb5bf", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a73cae51280ff0a1dcc14755269b2fcdab1b9d1a9267c36c796c419d03ab49c6", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1a96c0aa6a5b1f63e70a42ed4844f8fe50151b0e1457b62bdfb644adbc074b5a", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "14b29735f7ce113842056304bc60de19a854249d383c9d222e3a30dc37137c3d", + "regex": "(?i)^https?\\:\\/\\/mioveirkeva\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "31e2308b7ac412118f17c510543c453abf6b55a1b14a7a3500784dc0df58e5c5", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ee3c6738e89a67f70ea4c4c8d95cdf4befbf5d52b71d172c14bbfb4d76bb56b1", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f158b457c271a84f690931380ab64cdec5491d8234c6e806c31d23992411c4eb", + "regex": "(?i)^https?\\:\\/\\/movedmsoav\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8058ddda5e053c51879f409d207d8a671f4081697d78f4a47b41a4480cdcdec0", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3ce4899c1f84bccc25a2890b3e11b0f95ac6b2b91c33dbe4b2d4aeb5a0e7969f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1a4c85a28f57b9f0fbb81884b077eba4c93cd5b3381f4310f4968a120ce18454", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2fee9d94f77a289e92932c88f3a0f66d2fd8d075945f5e1ff65ad14243ce730b", + "regex": "(?i)^https?\\:\\/\\/netdifgkgf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cb9587db238c7f6fca3b3181e5c6c44b2d3f405a3c6eaef51e7d1792cc97518b", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "76dcd7a0470689bc106a4e5b1d125740e70bce41c616a83d9e6c069807796fb3", + "regex": "(?i)^https?\\:\\/\\/powermax9\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "725998891fb372810b59345f1f0efec37c78e807508ca4c8410cd1c15a8fc117", + "regex": "(?i)^https?\\:\\/\\/khkh6868\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "401cacc0f1146582c641cd72298c968e0933a1ec02ef1877bfb0fd8d4e968fb9", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3ae82eaaabdddb2a2357ec98453570d794c3545bd98a656a36ac441da04d9b72", + "regex": "(?i)^https?\\:\\/\\/instagram6307\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a7294f6e8bc5aa459a87cff83c549f742e26e2662a1214733611292ed4948c4b", + "regex": "(?i)^https?\\:\\/\\/dr6tgf6rtyhnfgyu6rthtujnfguty7uyn\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a20b26e07b3d145f81de792bbefe18bfe5479b5a5a779a8e5096b4006c432970", + "regex": "(?i)^https?\\:\\/\\/pink639218\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "ae4fe7898ba9f5616f4c89f23c39786e80ba9211f731d0b85d020cb17b944763", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3ff7b60bb8efcab6abf4f509260a051c9b77accea0236624a1645e1c0325918b", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bb43b271b62eb7f70c973056fa737d208ec7eede871b4a7c0a4be68f37619025", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "98a41a8b33367b19b5015b8bfce59c5f94d0ff36dc886606c342a238be3a7558", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b5bd88d07ee73e6ed1be689855297c4c564d4542bec6a457d95216aafd8daacf", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ba5f1bacfe15a44d4214f7812bb8d6b953465e1462df671c963fc6710784d95d", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "77328132e1bc3b667360875af1589c87b7b744da261b9e1b4fdf6650d08e2e3b", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9fc772a2a2c1065318fc2cc7f666ae10d3a5ed805714b52cdbd3c20d8f932229", + "regex": "(?i)^https?\\:\\/\\/dasjd3223\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba4771d5119b04c8790075bb7020ab4033574f3096a92fadb812f7b181940", + "regex": "(?i)^https?\\:\\/\\/banskaljana\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3d4159631316d2c5c153b68240b203fd78d1f2b0ed2f547ffd648bc8228890e1", + "regex": "(?i)^https?\\:\\/\\/meodfkcvgc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5211b334e05976f608a3b054dcc70e1090de7f7d242bfad99b79b1dd5e3f0646", + "regex": "(?i)^https?\\:\\/\\/help\\-trezorsuites\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5ddbd1fc7efa9134d15f347e2818d4c7f5295ba9c782ca7dc06f730b828f91ad", + "regex": "(?i)^https?\\:\\/\\/hbadilmanjja\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "81ee4733e780f78aa6c73cebd9d92793a9afdc7ae609fa3a64d36e980998a860", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "df26ece5cddbec1eb188e58e71626d2363a206253ec59c6eceaa756f17f1d6de", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7af6992f984adbaf7867571ecdb4ead9d3d703b0d5c64a744c24ae1d6ee8ea98", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2af7dd9b8f41cff8b266de7e3aafe29fb85002ce537e6ba2ba92e7d35be98bfe", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c1f52c674892b795bbfc35cd266aed3406a2773967c4ae618ff46d2277735ead", + "regex": "(?i)^https?\\:\\/\\/sg\\-gems\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4933be45138ef7e2a827932a1eff1ee0927c8eef9d301324eb4fb44584672658", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e5e75435d6855fd7b1980d2fca0ec4c6bb1b03595f3900c4bf2b72ba6457c9cb", + "regex": "(?i)^https?\\:\\/\\/kelsdflsdlf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "84291cb54ab7325c4557a74c1f9f07314945fe7f8b2bf891958720c3ff6d806b", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8a3673b35092e36a097707e02bca5fa64b05777677165be07b199fd77fb835ed", + "regex": "(?i)^https?\\:\\/\\/meodfkcvgc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4dc695c94df50ab3a49f5c3e5a6aad4a3a29485267982eb98fbd0b4b95774082", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0236513ebc28baf817c115515055327078540fcc70d3135bf3493df898af9a2d", + "regex": "(?i)^https?\\:\\/\\/dr6tgf6rtyhnfgyu6rthtujnfguty7uyn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7f6c8a2723bfe1732f2e118a66be6bf7cae633c27c0dd50e6cf529a4af8f9bce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+made\\-in\\-china\\.com" + }, + { + "hash": "2f3bc7383e1803a10251128cd85689b04479d4c4a6bd295272a9b94029c310d3", + "regex": "(?i)^https?\\:\\/\\/dsakdjsa8323\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "610936d79f7a1c906699e5d35faa4cedd2dc1ae8d5767f8c5e375de82c6e67d8", + "regex": "(?i)^https?\\:\\/\\/movedmsoav\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "59f2b28738cf51613f204f4b58e4d87b4cfb130da46fb801bd049e1c400cb581", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3228623ea21f5139ef622d1bf2baa1c4ec3fb3001c7d2be12d44e27cd9589eb2", + "regex": "(?i)^https?\\:\\/\\/aefgeaqf\\-eaqfaeq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a8cfd8829ff178b174cc520048000eea8554859ad1156cf8d3c8c321a94491ce", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7be6ad03f5f3ca7b82c857824de7c8e139b51d9c6ef4ae5ce74e35c1f7ea5fcd", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "55364df6fc714f97f52adc8df9d71f72e5abfe02b928b58ebbfc45f9e682dd46", + "regex": "(?i)^https?\\:\\/\\/movadnrwa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e9afd8dc96ce392d58e2a8826f4aead13062fbb38f0726a86ddd14f2d5bc5017", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c8f7bdb1a9b2754d42f5264397f2b5916c2b5b6427315c89bb21a60128a7549f", + "regex": "(?i)^https?\\:\\/\\/dasjd3223\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f16eaa0300172352c624b1c7698ac29eb5562746d40f625a971dc9ced0115", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3187f1fe03e6c7639133f428d59752b13e43591c2ac91d79ccbc5afbf37bfd82", + "regex": "(?i)^https?\\:\\/\\/klhjkhi8786\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "118149a59cba18634a7dc1d99e34ea5a8c5af42ecd6f5de97c3d4cc849a4d65e", + "regex": "(?i)^https?\\:\\/\\/dsakjdhsa83\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c2a315b5e8e1d0944fe9fffa5aed13496c14858dea0b502328bd97164c6587cf", + "regex": "(?i)^https?\\:\\/\\/zebiii212\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8f7043722ca458cb834366a49d159ac50ebfca9b43c45499da442705868f9e19", + "regex": "(?i)^https?\\:\\/\\/caqedvqaedrvb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8443fd3881357f6e33737a8fafbd985a7f8eafb04dfb63644c202629d053c4ca", + "regex": "(?i)^https?\\:\\/\\/bagaklaamca\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e799b3e1e2704e46e5da8203366bd678751c2066b5684fdfffa2ed25ffb7fc08", + "regex": "(?i)^https?\\:\\/\\/habwallama\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b29be0ba403dc0c33ed15f67cdd50ab89f24e407595631c1d1c93da4bc708e12", + "regex": "(?i)^https?\\:\\/\\/zkikauk2222\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6388e0e13f0570c5045fb4b7d170ce4a357e759c7b29edf5f58421707e0112d2", + "regex": "(?i)^https?\\:\\/\\/aqegaq\\-geaqg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c73708f47563a43734695471b19ffda0bdd9c2b20100e127c406eea9fa14bd12", + "regex": "(?i)^https?\\:\\/\\/dsad2321\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2c80d74e2840fb5616e0770ffe17fd6daba8d79aed55fdfb5048bfb573748e67", + "regex": "(?i)^https?\\:\\/\\/banskaljana\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c2988532e468d28456937105e9271803cc4f9ffbc14f167442c357c461016860", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0e8c54ecf441b6fe3acd68fab31cf006ab3fb2219845a8ae50df7926dbb6a38f", + "regex": "(?i)^https?\\:\\/\\/qaegqaeg\\-aqe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e0fdc3e78bfba276e3bef0b649868133e9c5dcb7d54af1e2a8a4fc93eeb923fb", + "regex": "(?i)^https?\\:\\/\\/netdifgkgf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bbb841a3a235819b2440214c377e28d91066ec30654363c3b39d4a0af38ed870", + "regex": "(?i)^https?\\:\\/\\/aefgeaqf\\-eaqfaeq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1a70e9037cc24e03efb24303feef363943206f4579f855800214c62c02b69e9c", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bcd5c822409303334ee22f8c9ec8de58053c88c8135b43f12ce14b375fcb2177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9143[\\/\\\\]+entry[\\/\\\\]+register11396(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d23b03c64f465c7d2a1a31b6225f4c7c8bc95fecc5acdaac1539c7d0fd2acd62", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5787efbed6f854269a83ec08cfdc97d6b0fe4a4cdb7ddeeb1b49b3445a4f610d", + "regex": "(?i)^https?\\:\\/\\/dsakdj22\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8e955ee82473a85d510f296cb331dbf5799839d9bd6cfced43b235ed5f3010b7", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "74ec85d53019be04729a9fcd29c957486b599811472928ea6ea8a011b30e1cce", + "regex": "(?i)^https?\\:\\/\\/missbobux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ea70e7e9c475de027c9537a33cb5efcda34b3aa287c6fcf7498493ae3fe6f1c5", + "regex": "(?i)^https?\\:\\/\\/www\\.3eth\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9935283668829bafce51d191acc6c8207d9e5550cf223ac542f81279cc993e24", + "regex": "(?i)^https?\\:\\/\\/netdifgkgf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "56985e17dd23706ecc62c2782592df4e7aa4b1a68a941125b577072e908c66bd", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "328e1837391435592ae8f5627001c8d855048f0bb8d07b8ae3f69d7dce284cdf", + "regex": "(?i)^https?\\:\\/\\/tasuraoba\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d097dd2dae19241932db03f96b0da67f75a9dd3481e73da84e7de4bb0b8f0469", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "34905563e9e10e9d3a7a4aa10f9cf9602ed2a8cdbb1736c249cf2d7f27e38982", + "regex": "(?i)^https?\\:\\/\\/dsakjdhsa83\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "beabdccd334179bd1991250034236a1aef2f1de35bdfd944ee7761087b52ba50", + "regex": "(?i)^https?\\:\\/\\/freefiredimonds7\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "05dfabe36e75a796dbf0a014173a7bd1daaf1b46fdcff85026c6df6ca864ff10", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6af208c48ca276e7649d072415652af2c308042d865b8efa4e9ac90f386cd7bb", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dda07afbdcc177e891d8f4e43e06fbc76d9dd8450c552d111a1e6e28d8146602", + "regex": "(?i)^https?\\:\\/\\/mioveirkeva\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "25deabaf88984e14c89c5225013b9dfaecf3f4a05ee70f5be749ad2d00bfafbc", + "regex": "(?i)^https?\\:\\/\\/dasjd3223\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "80a7834351bd64ab75bedb90019c7498497d25ed2e04be0a8ca55de995b7d442", + "regex": "(?i)^https?\\:\\/\\/sdgfewrtgdsfewfdas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8987e65a7ce452e304a3f1a3fbc24a8e5de2c39d2c70a4227ab903c9561b3404", + "regex": "(?i)^https?\\:\\/\\/efaqfgeqa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "598ad26e0de03a15a0a045cae498e4dc9c6ba9e65a10349f461fff241ac672ef", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "814679280bc4708c49f1857ad9bc9164e61274b50893210c2eeb2bc34d85dc12", + "regex": "(?i)^https?\\:\\/\\/dsakdjsa8323\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3264c783bbc92424f92188b4406eb03879778259492c40c568b302351d847c92", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2d8565bb247cc3bd953285b9a8d934014bd48a390f11ea8b785a386d57e762a4", + "regex": "(?i)^https?\\:\\/\\/pelndronsa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bd29760ee9650f73596483832cf13d5baaa86d758f8600c96bf35ac394b5ac63", + "regex": "(?i)^https?\\:\\/\\/moveknsnds\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e0fb6f2343467b8fbadcd872250776f9881d5735ba6d9e8443240d5370a92080", + "regex": "(?i)^https?\\:\\/\\/powermax9\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "04f9801cafff234335f5f7243c1bf32940f303ef8ea6ceefa7f4e908932f4c0d", + "regex": "(?i)^https?\\:\\/\\/hgabaaljanak\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4178973754e495a6279c40580b88d39aacaa1761c24be7acf0a141e7516a4cb4", + "regex": "(?i)^https?\\:\\/\\/powermax9\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6973f890c4db46461caa5f988d2f6b7332663e1537d4962e9bed0382867782b2", + "regex": "(?i)^https?\\:\\/\\/feagq\\-eageaqg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b62bc91292b296f6ca92d2b2dee29cf9430f0d356a12e614534e07b7fd7ecf9f", + "regex": "(?i)^https?\\:\\/\\/girlkelab\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4443c382bd2220cc875deff9c34ce8abac0b14de07b95bb47bef438e5dc6cc96", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1c39c6e35c4051439a0b39fc46d2e0de75db857c309649fabbd7d1e79a8d775c", + "regex": "(?i)^https?\\:\\/\\/meodfkcvgc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "45966538455370717d77a22012015c2fa8033e46583b5055cde29baccd4584bb", + "regex": "(?i)^https?\\:\\/\\/dsad2321\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b818ff0f7fca2995217ab66f596826d4ef78daafcc41570b64d63184a0148364", + "regex": "(?i)^https?\\:\\/\\/fsadr34cvx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "640718980328352924e63080f144609460971fdfa93a505fdf2dce2d726ade58", + "regex": "(?i)^https?\\:\\/\\/feagq\\-eageaqg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5d3bda837f1e8efda5dbe888b57f23f1e67054f5fb47ea1c6f6600116ae7ac1e", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a8de80171839a10a3c57e996a956a342dcc697863d8e8f2add00ad648d2e8add", + "regex": "(?i)^https?\\:\\/\\/movedmsoav\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "27de5d4398f8d483bcfe231417d591c190599d450f5c6270ff3378ff9d909581", + "regex": "(?i)^https?\\:\\/\\/instagram6307\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b98a9dcbb456d73ba257dc7cd4f67fc1f2d93d4e333b8e19c543fff244045156", + "regex": "(?i)^https?\\:\\/\\/dsadsa323\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "65df0b63cf7e60576bd4618773c5016e97b6ae73138b344ba13651f22570f730", + "regex": "(?i)^https?\\:\\/\\/robuxcardsgp\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5a9f02000e3fb4301cbb841969063a09a385c4c310b85b401ab047e5fd01b3c8", + "regex": "(?i)^https?\\:\\/\\/v2osrob50k\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "446d901e2379d066f3b5795bdfd9e68682824676a7bda851f5c2e7554820425c", + "regex": "(?i)^https?\\:\\/\\/dsad2321\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3c2b70c45d4060d857e80be58c21c76f6da6cb5d887fb97ead315467b533f8e7", + "regex": "(?i)^https?\\:\\/\\/movadnrwa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2f61f0adbfe8b9373fa62c57d75aa2022c36f276f49f968677c99ec803802612", + "regex": "(?i)^https?\\:\\/\\/5fgedgdgg3g3gh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9fe1f190c75f9c71c6f6814a51c944fd8a1ea3da46bd926797d5785d12666c81", + "regex": "(?i)^https?\\:\\/\\/phuntmwalt\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4a57a6c28b17358ea7b9522a47a15a55cb589bb0983cad6f4d0cac170a6fdd1d", + "regex": "(?i)^https?\\:\\/\\/bs\\-generator\\-online\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3e62bed72803514559c833ddf59baad015ac037924b8ad80169f3af7e0d8f7fe", + "regex": "(?i)^https?\\:\\/\\/netdifgkgf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d2647641b6710c6351e30896bb1fe30dbc58e53e135c4e4a02f702843e7ba688", + "regex": "(?i)^https?\\:\\/\\/fortnite2021c\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fbb298ec1ecc47ccb6b540e081ab4c0677915f6734f69195defd2e54d5138ffe", + "regex": "(?i)^https?\\:\\/\\/powermax9\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "44c6bb85287c825f698371fc012edde53bab67581412597f7de949b24d547d38", + "regex": "(?i)^https?\\:\\/\\/pub\\-6208223311624695b848f20f6063d9ba\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fd308696ba066c8b959c81ed6fd959b5449df8e4c6baaceca3fb2d6df316c233", + "regex": "(?i)^https?\\:\\/\\/netdifgkgf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e8795bf5ddddea43c9dbd52e000b413e183465ab3488e4a8ae7b46ea47109f05", + "regex": "(?i)^https?\\:\\/\\/missbobux\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e46d2bfc77710e6a52ba2550f306517ba862ec6f4a08b2b990d9ae290fe3b6f9", + "regex": "." + }, + { + "hash": "1a249b18b36a0dfa74d9ddc86a67090f82bfb379d4df9a3c57c73e66ab10e535", + "regex": "(?i)^https?\\:\\/\\/movzekrdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8a7d46de54ae060951cb46d81544f212cd92f88bcd169f0bee311c2581c88290", + "regex": "(?i)^https?\\:\\/\\/instagram6307\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e0fd5257d56ab3c5066b2b3cd7d5e36b0156c979d634882df705d464b9cd8053", + "regex": "(?i)^https?\\:\\/\\/prcboards\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ac14daeca620fc5b6ff7ba8375063729bd2bb22739a252d62fe25052408b7b78", + "regex": "(?i)^https?\\:\\/\\/musidvsdf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245915115\\-6dd52600\\-7769\\-4351\\-9e7b\\-9b16d0b26076\\-000000[\\/\\\\]+ooPJoYI2uhM10qwfnwnntPxbdR8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b50b3\\-ea5cef0a\\-4bfd\\-45f6\\-87c2\\-d5d73055025d\\-000000[\\/\\\\]+JGw\\-z5JfjXKT9AcMXgngHFAQ058\\=394(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "08d44f5b707b5deacc132fe6dae36885748e86bca378f6af23bdf04551040ba2", + "regex": "(?i)^https?\\:\\/\\/moveznena\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e20f694d90e735f5828b32abaab87497bc9ab2a4f556a7d0106a6436c80585e2", + "regex": "(?i)^https?\\:\\/\\/moveznena\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b8a3de738e915c9a4c2806618c04fcfd5e352ae3ea1937c266ead739c3dbe35f", + "regex": "(?i)^https?\\:\\/\\/windchaser\\-cloudrunner\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7be61bf5947d35f5dc58bc4a62cef1556e59cf6914c9f81d0190c950302382f9", + "regex": "(?i)^https?\\:\\/\\/pub\\-29f3c416ddc943348aadc8a4be150c74\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "718a56ef1539cfde37a2dbea2a7db5c252c11163dfd8ded41113183da76eac8c", + "regex": "(?i)^https?\\:\\/\\/enetflixforyou\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "793eaab5ff08f4cebb77b57426f03c304671b23ba17326190be3ade3584b8a7a", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3905fcb7cbfca91bb819392ad7189217ad06a22844929b1c2071370834859e7b", + "regex": "(?i)^https?\\:\\/\\/moveznena\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ee17468a127e8d20fcae44712fe552011b72fab119b64d715a3baa96cac26c51", + "regex": "(?i)^https?\\:\\/\\/oiewfciusiefuhsiych\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "93e32460c7198c2166b19c88e5d87995ff4564e4c285cff67b2bdc6791cd5d5a", + "regex": "(?i)^https?\\:\\/\\/enetflixforyou\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "60f4c56e5f33e47d100e37ddea1f80bba6be9afb4d6f20f1fad31b56a685fe4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accepter\\-cgv(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245915115\\-6dd52600\\-7769\\-4351\\-9e7b\\-9b16d0b26076\\-000000[\\/\\\\]+WP5VQKy0TNa9VZ\\-SP3ye\\-IJ__Oo\\=394(?:\\?|$)" + }, + { + "hash": "4e85baeb40f329d68ca9a9d6b6bfeb3b772da88ff2393c09c77de8dad9df7ce6", + "regex": "(?i)^https?\\:\\/\\/enetflixforyou\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab585a\\-d28c0673\\-4f81\\-4998\\-8bc3\\-3b1f6a471eb0\\-000000[\\/\\\\]+7Yq8LerGmUvIAlEO682tBeEBaIc\\=394(?:\\?|$)" + }, + { + "hash": "bfe0efe1180e490c34b794f6c7a30d91348489f6595bb4410aeb35a4c0473149", + "regex": "(?i)^https?\\:\\/\\/sportybetadder8je7\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c5a4ebc6f08465b443fcdab6cff26acaf77c5cc0239968d791d638ee68a6cfb8", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9c8abf4bb7d16c62a7c51244e76fc7e5c7957d8fbe96c2471b3f70238660ea14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+et\\.sp\\-25\\.com[\\/\\\\]+e[\\/\\\\]+c[\\/\\\\]+OTcUH\\?referCode\\=product_OT8696aaaaaaaaaa\\&shortLink\\=aaaaa\\&longLink\\=H4sIAAAAAAAAAF3LwQrCMBCE4bfJ0UIrKIXguW_grWzbaCJusnZn37_JwYNeBuaDPwKiY9cpiKUOUsmnHHBTmddKlJ7ZD\\-fh6ipw2JKxD0zp3b4W29fglWmHmEZn4L\\-qyU_W4NvJHBdazMUClYJp8497_7ngpVM6ANDTw\\-yZAAAA\\&ecSource\\=OT\\&referId\\=4785074643138696[\\/\\\\]+1[\\/\\\\]+010801926bae6edb\\-f51c9652\\-587a\\-448e\\-a66c\\-b10b026dd780\\-000000[\\/\\\\]+7kaSEBqB6bd3mNJAGZkG2Ug\\-JFo\\=175$" + }, + { + "hash": "f720c427aff42755d1427b33e0f85a79acaf7412767f1574ec1ea8a0c6d2cadb", + "regex": "(?i)^https?\\:\\/\\/enetflixforyou\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4624d7bb8d6feffed63ad5caa60523c89ce994994e164b3dc18e43e9a5016ecb", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5af3d7b6fd5ce280b53ecd7e373be30d4cb3c767c9d330e39142a5d9d49965ee", + "regex": "." + }, + { + "hash": "61631d4f502365cef0941f6ec9aabd1962e16bc689e262fd4c33e15d6c4235e2", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fa9a404c3d830f8213261bbf7eb557e9420bb9a6b4a6a5b78dbc08dd41cfc566", + "regex": "." + }, + { + "hash": "a74315c12cb90ca61b7aef548f888674a31f7d5555308f24707b631b2f103443", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?lahoyws2\\.com(?:\\:(?:80|443))?[\\/\\\\]+international[\\/\\\\]+JTE" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a37b7f\\-856aae61\\-4197\\-4f3b\\-85d4\\-b3f44a7ebc8c\\-000000[\\/\\\\]+kR723jx9xlFjGuyQ\\-09pkZ\\-XtyI\\=394(?:\\?|$)" + }, + { + "hash": "15a843acb2447f4bff89455c0ba852533c0278e5a4d436fd72134dc969d681af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UK(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569c634\\-49abcce9\\-3d5a\\-4f3b\\-923f\\-c17bc1c75072\\-000000[\\/\\\\]+_TRVa5r09n33cQkNOAJ\\-wmufOCY\\=394(?:\\?|$)" + }, + { + "hash": "f6707136d78ff2a08ec02ea79c2a27677cb0da0e7399c41d0b26a7a2d3212349", + "regex": "(?i)^https?\\:\\/\\/musidvsdf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e0920d0a26e99eab277fd7a2ac708f61fd511bd23a1faf7b964d46ce97ffef3b", + "regex": "(?i)^https?\\:\\/\\/windchaser\\-cloudrunner\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3b86e9420ee565be54eaeb7d3e47da873cd658ea2f58fb4a2f1e736e0262a50f", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b50b3\\-ea5cef0a\\-4bfd\\-45f6\\-87c2\\-d5d73055025d\\-000000[\\/\\\\]+sm5X64a7p0bAN_Gk_xfsSc3SC68\\=394(?:\\?|$)" + }, + { + "hash": "23a383776cd5adda9c60d6561f917564e616b8468332c3b86ecc9dce566ea114", + "regex": "." + }, + { + "hash": "38b5eea3203976217ed59c21d2eba9050843934387ab3f8e6d7bd118726c2996", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569c634\\-49abcce9\\-3d5a\\-4f3b\\-923f\\-c17bc1c75072\\-000000[\\/\\\\]+voW085rlUBYXzltk0nOTT6ITxPQ\\=394(?:\\?|$)" + }, + { + "hash": "9c63607281139808b467667c16f1a5ba4921c7ed9f9ed4421fcade219d20b581", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1f913fac0fde4b5e03d3700ba34c5feef11e669eae31cdfe09710195e23f01ce", + "regex": "." + }, + { + "hash": "a1ab2fd6e71c26749b078c444ecc47d5555a6a0f29539c4870b1d44477544f56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register35536(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c90e4cafe565eb1aee247c7e158be82c2a20b2ef3511002e242096a761970998", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "da7a6e900558f0fb1f4602e3438006d237872ae130b65c75329c22e89db80845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9974[\\/\\\\]+entry[\\/\\\\]+register35536(?:\\?|$)" + }, + { + "hash": "7257891c87614f263658a1aec4d93f89ca85b53f9c112b36ac0e1e544f58433d", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7c6013dd56aebef4fc0224b03965cdf8bc7681f96dadebb16f41673ef376ec5b", + "regex": "(?i)^https?\\:\\/\\/oiewfciusiefuhsiych\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ff861503054e127ba01093f4b2b6b2097ff4bce1583f217284e346cac7d6aaca", + "regex": "(?i)^https?\\:\\/\\/net5sportybet\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eddcb166eee384192b88175912a3bf44f168f7809ca0d2f7e2a218a8739e4264", + "regex": "(?i)^https?\\:\\/\\/musidvsdf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cb9d14a3e50df752bf0c4b2b071955d5e50887b0175510dc34d4c36c2a1c98b3", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "70c3e3bc4363949ae209125eaf86548d48b4192d7fbdcdf35d227628c2087194", + "regex": "(?i)^https?\\:\\/\\/oiewfciusiefuhsiych\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dbd21a6cab1e6d4b087c921d24009442e3a41fcc30c6b08586b1553f608fd931", + "regex": "(?i)^https?\\:\\/\\/att\\-105925\\-105605\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dcba74054c4c9554fd678600118b8d0e029f9f685e6ad7b18d53a29d57bcdb67", + "regex": "(?i)^https?\\:\\/\\/balanceadders086\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2c2bcd5d2da54ab27b56a1600b05d210117273aec749d73f61cfc80258894245", + "regex": "(?i)^https?\\:\\/\\/oiewfciusiefuhsiych\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a37b7f\\-856aae61\\-4197\\-4f3b\\-85d4\\-b3f44a7ebc8c\\-000000[\\/\\\\]+kR723jx9xlFjGuyQ\\-09pkZ\\-XtyI\\=394(?:\\?|$)" + }, + { + "hash": "28bf688068fc8b2a15f5fc42302ce4c68935b7cac5f640482f9b91ed5418e676", + "regex": "(?i)^https?\\:\\/\\/moveznena\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "39b5318f3815d5c5ddfe3fdbea1ca00e23b2536ce930258b2a77b72136047efc", + "regex": "(?i)^https?\\:\\/\\/oiewfciusiefuhsiych\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b977fe5584fd61cb41016804a21558bf363017f2496e3e2a894fe62322a78e43", + "regex": "(?i)^https?\\:\\/\\/windchaser\\-cloudrunner\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a4de477f2a73bf66e99b41f8971f3d06b443eafe239eb906bd8f6f60a50b673c", + "regex": "(?i)^https?\\:\\/\\/moveznena\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5293c7ce2030c3736767c6547e079c1cc2c6d7591497d0b02e9e26c5eb3ce0f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fet\\.sp\\-25\\.com\\%2Fe\\%2Fc\\%2FOTcUH\\%3FreferCode\\=product_OT8696aaaaaaaaaa\\%26shortLink\\=aaaaa\\%26longLink\\=H4sIAAAAAAAAAF3LwQrCMBCE4bfJ0UIrKIXguW_grWzbaCJusnZn37_JwYNeBuaDPwKiY9cpiKUOUsmnHHBTmddKlJ7ZD\\-fh6ipw2JKxD0zp3b4W29fglWmHmEZn4L\\-qyU_W4NvJHBdazMUClYJp8497_7ngpVM6ANDTw\\-yZAAAA\\%26ecSource\\=OT\\%26referId\\=4785074643138696[\\/\\\\]+1[\\/\\\\]+010801926bae6edb\\-f51c9652\\-587a\\-448e\\-a66c\\-b10b026dd780\\-000000[\\/\\\\]+7kaSEBqB6bd3mNJAGZkG2Ug\\-JFo\\=175(?:\\?|$)" + }, + { + "hash": "1486453d7d439311983d1b35d68cf11671a5f94ac2d714122cb89239936ac0d5", + "regex": "." + }, + { + "hash": "816f9bebfbf1dcdc76623241385a4c9659325b235bcdf9ae95885e0cccbf0ce2", + "regex": "(?i)^https?\\:\\/\\/oiewfciusiefuhsiych\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "817f58f5d8c5b67e3b0dbaea4e3d93cc03db90cd552f535c4b8da445cadfe52e", + "regex": "." + }, + { + "hash": "a2b63b8f28e1e51e1158bf914c58e756a21834df3044b2ba086f2ad53b55a3c1", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b854ef103c95b0d46978ea56963c1f0420f5bdef4594d65c2fd4b62d319455df", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "d1a7c97b19eddd746cac042c2784f8a3b802513167670897c396df662613926c", + "regex": "(?i)^https?\\:\\/\\/windchaser\\-cloudrunner\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6b780257fbf5858ff9390e425334f3ecc087e92ddf1067770378dd349ee83fb0", + "regex": "(?i)^https?\\:\\/\\/musidvsdf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab585a\\-d28c0673\\-4f81\\-4998\\-8bc3\\-3b1f6a471eb0\\-000000[\\/\\\\]+xUXRyLNwXtBC2C\\-qC2w\\-Qq_qsQ8\\=394(?:\\?|$)" + }, + { + "hash": "ede902ebfc5e35e23f386719efa6c5b05b31f2baec216a333219a2d8ced6eb1f", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b3230f500def4ac79785304fe1fb74a722b58ddebea71e73407c18605f4b6ffd", + "regex": "(?i)^https?\\:\\/\\/www\\.app\\-stripe\\.akut24\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e2cc48bb47d3eb393ef64bbc03800657eecf2415ad43778e0490d2056ef2d268", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "298b6a370833baaefc9616412df147bb51c4e747ab97c50959d0a4b474bcbb50", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ad622d172b7e8fddc9b121a8523d7f6295efa062b8c6f3e04cc3154891d0db4d", + "regex": "." + }, + { + "hash": "7706ccf6e163fa30e92aeff27257ab9b81fb406416927722263d28073b30d43f", + "regex": "(?i)^https?\\:\\/\\/2024sportybetbalanceadderwebxite1000orgsite\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "29502d4fe2107fc2acf6bd5cb190446a5d7a06164c65d3707e31d35f3c48f9f1", + "regex": "(?i)^https?\\:\\/\\/windchaser\\-cloudrunner\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fbc89838b1fb58d556a137bbe988df3817f652f45a3f166d3a6c707c5df3ea0a", + "regex": "(?i)^https?\\:\\/\\/xuebajunhuoku\\.com(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "5fe53e97408ca409c444ad623b3d15f05ddb70542404b882228934a1006d33df", + "regex": "(?i)^https?\\:\\/\\/moveznena\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "378b23da25614a271e9ceee2814278a50d2be318708870cd7975c08f0be8507b", + "regex": "(?i)^https?\\:\\/\\/windchaser\\-cloudrunner\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2b4f0b0c70d22fdd3fbcf1234fee4ba8dcc3e1644130628680f66df7cc4dd923", + "regex": "(?i)^https?\\:\\/\\/oiewfciusiefuhsiych\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "26ca70f7bc2f4652a5e85e650602ee967160302ddf5e4310f489fe299112b8b1", + "regex": "(?i)^https?\\:\\/\\/enetflixforyou\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1ef41e4b035ddb36198844dfba5ed0a5f18025291aaa61fe2aa679c968e82d79", + "regex": "." + }, + { + "hash": "a862835685c8b190a882b0c5bfdd61187cf0d0820bd40df80a8ce990cfc1ebed", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c72a5d\\-cb31eca0\\-4f6d\\-4384\\-bebe\\-cacc290edde5\\-000000[\\/\\\\]+AtKllv16_0WZU81636_vl1b\\-Cnc\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456a31f9\\-80889cdd\\-7e4e\\-43e6\\-b561\\-d2e1d7909533\\-000000[\\/\\\\]+F29xAykGaxE1GfyVHaOmAlpV3do\\=394(?:\\?|$)" + }, + { + "hash": "928714f0f2fd8509cd023fb92dd50122557e5222bf9ce319f407e7c5e417f49d", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "490c19e4faf27458143de0f440a4d10de183e4edf126021274013d1341e450d6", + "regex": "(?i)^https?\\:\\/\\/enetflixforyou\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a37b7f\\-856aae61\\-4197\\-4f3b\\-85d4\\-b3f44a7ebc8c\\-000000[\\/\\\\]+IXDqMF6C6WM6IC8lMLMyRNlPnXQ\\=394(?:\\?|$)" + }, + { + "hash": "2b0ace13098385c2a10f8b3417ed293cd62fb1d1ca6db6bcd20dbed40892f6e2", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "018fb9073bcadd76bae643fa89cc630cfb5ab744f5893cfed941e8ca0ab42fea", + "regex": "(?i)^https?\\:\\/\\/mugeshmugi00\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d8aeb8c385ce86852edd70b0d9913d5df11e28e015d0c991c13ddd8162bd06a7", + "regex": "(?i)^https?\\:\\/\\/musidvsdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "1a7a712f77cf05748d80231d68cde314a92d6fa4089a52d07c252f109c2ec7b7", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4363b4750253597b01d63cd1de955f02ae5fe766195681dfd7536632359819d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9081[\\/\\\\]+entry[\\/\\\\]+register35536(?:\\?|$)" + }, + { + "hash": "0944ee718cc767d3a29e8124a7015846be3ab712db1f30326f8c6e638bfa94e7", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0dd0d48ba6e892c97c977687afc595a010d103df74153cdf62a66bbd5c36b87c", + "regex": "(?i)^https?\\:\\/\\/mail\\.c0inbase\\.verification\\.206\\-189\\-237\\-95\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9c8abf4bb7d16c62a7c51244e76fc7e5c7957d8fbe96c2471b3f70238660ea14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fet\\.sp\\-25\\.com\\%2Fe\\%2Fc\\%2FOTcUH\\%3FreferCode\\=product_OT8696aaaaaaaaaa\\%26shortLink\\=aaaaa\\%26longLink\\=H4sIAAAAAAAAAF3LwQrCMBCE4bfJ0UIrKIXguW_grWzbaCJusnZn37_JwYNeBuaDPwKiY9cpiKUOUsmnHHBTmddKlJ7ZD\\-fh6ipw2JKxD0zp3b4W29fglWmHmEZn4L\\-qyU_W4NvJHBdazMUClYJp8497_7ngpVM6ANDTw\\-yZAAAA\\%26ecSource\\=OT\\%26referId\\=4785074643138696[\\/\\\\]+1[\\/\\\\]+010801926bae6edb\\-f51c9652\\-587a\\-448e\\-a66c\\-b10b026dd780\\-000000[\\/\\\\]+7kaSEBqB6bd3mNJAGZkG2Ug\\-JFo\\=175(?:\\?|$)" + }, + { + "hash": "424d6d76195c1ac372a00eb68bd4b8cd9ec23ed056aa196c076a1c00a98fb984", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "addb7196a93f228af11205c222072c36b57ae9a2a28998f3b5d5d25d1f45c127", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ce621670a5868531a6dec903bdaa580a4466e7d24ffbe2731209e1975ca99b13", + "regex": "." + }, + { + "hash": "6e70cc8e71f336d53119131ab2d48af292e94380f4d57dc7fcb4d069d5b583e2", + "regex": "(?i)^https?\\:\\/\\/windchaser\\-cloudrunner\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4363b4750253597b01d63cd1de955f02ae5fe766195681dfd7536632359819d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9081[\\/\\\\]+entry[\\/\\\\]+register35536(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da7a6e900558f0fb1f4602e3438006d237872ae130b65c75329c22e89db80845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9974[\\/\\\\]+entry[\\/\\\\]+register35536(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "390bbbcdfdbaf86d81aabc14120de019b072df8f73cc9423f02cb67603ddfad3", + "regex": "(?i)^https?\\:\\/\\/moveznena\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a4345c5e9f5d7c32ca50f1c91d1bae0a9dd74522919f60047659765af800d353", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c72a5d\\-cb31eca0\\-4f6d\\-4384\\-bebe\\-cacc290edde5\\-000000[\\/\\\\]+vUEWyzf05ox93tFCQf\\-3AGIv6mU\\=394(?:\\?|$)" + }, + { + "hash": "63fcd1522f60384b52b4b6007ee1041b2f0cea27a74601a64b6207ceced2c0da", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ebc1ba3fe13c1107eccee39581f357c2eaa84684228247e2c005b4832a9f462a", + "regex": "." + }, + { + "hash": "05950cd3b5849699f6ef39d6e0062235bc9b04b179e58f209c73bb79979d6e65", + "regex": "(?i)^https?\\:\\/\\/musidvsdf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5e55ab3677f2df35060790cb73eff9549dfa699c1504316c9b6916f173c89bdd", + "regex": "(?i)^https?\\:\\/\\/moveznena\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e3c8475d95d434f9ae50863921265e44d23bdb192ac103309b48d4908ea1e4b3", + "regex": "(?i)^https?\\:\\/\\/shoosd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456a31f9\\-80889cdd\\-7e4e\\-43e6\\-b561\\-d2e1d7909533\\-000000[\\/\\\\]+5VXRgiYTzISIb_nOyxtla5fEYIs\\=394(?:\\?|$)" + }, + { + "hash": "abda6233dc9d2e6d43bc7fd60c6d1f94d66713f26db346284eac917e3a0df435", + "regex": "(?i)^https?\\:\\/\\/windchaser\\-cloudrunner\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "becc60a5c92f4054877ac197e73370f42f3ce5ed2bfcf65a879449b411494a76", + "regex": "." + }, + { + "hash": "1e46c27954a5c9ba184a186dbeed403435edb7558ed8ec90b862fb66e5fb5419", + "regex": "(?i)^https?\\:\\/\\/musidvsdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d0ccb68444490a5446336856801f90ec81906f496e0b3f1bf89c263d72513a81", + "regex": "(?i)^https?\\:\\/\\/earthmender\\-rockshaper\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "09e8248a9854c8acf189e07320ac7e5701999d68d0dceac50c3e1ad2eaa193e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a37b7f\\-856aae61\\-4197\\-4f3b\\-85d4\\-b3f44a7ebc8c\\-000000[\\/\\\\]+IXDqMF6C6WM6IC8lMLMyRNlPnXQ\\=394(?:\\?|$)" + }, + { + "hash": "61ff2dd9b8688d2177ad35aa7488f2217d4a806688c7c2d504347b7e68890cc6", + "regex": "." + }, + { + "hash": "92a24268983c731d5e243320dcfb30e8b0933d25956eb74f52f862db2a40586c", + "regex": "(?i)^https?\\:\\/\\/tafawglkaw2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7c97d7f55633b8025586d8bc166dfbf796187b0e6b2e4ef7e89525923cae5d1c", + "regex": "(?i)^https?\\:\\/\\/robiocna\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0036245836fb117fedb4d1df495cb7840cf79cd404a53b58da4692aef3c775cf", + "regex": "." + }, + { + "hash": "95fc50d504f6936e91da72723c47b0299962bb7b0f67fe606a448b43a02d5775", + "regex": "(?i)^https?\\:\\/\\/hathethatheki\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7a8e4d1f1412b4bcba5055dfbf505f176c26f3189cf34d72a231b585f2bd5957", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7161de39a5766fb36934adbd6a65c0731d5459b5c69c586063c9ec2723bf2d87", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cfb9cd4ad04ad3b5dfdcc7c4b5c675dd515c19639ab76de954d2b8a2e47e271c", + "regex": "(?i)^https?\\:\\/\\/acaeq\\-feaqf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c718cc4478504d2a707f3b364b0431ce68589f7a1e763a149edc2f0bb82740a4", + "regex": "(?i)^https?\\:\\/\\/aqevdqadv\\-qaedv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c9c326b0d2ae748be1371adb8e57bb2340d99e20a000f6745fcbe00b1087b099", + "regex": "(?i)^https?\\:\\/\\/ceaqvaeq\\-rv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "32b4437f5d7e38a4596ff8702c3000f3959de017b18973aeef847397722d4720", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252Fbafkreiham74zwxqm642yk3y3govvrtb64h4ibhjf4beovxvs2gjhdtgchy$" + }, + { + "hash": "2db1971afc35976442004f00a85fb1ae0ec3e3d9449fb02e9d8aaeabdc26c231", + "regex": "(?i)^https?\\:\\/\\/frankleveios\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d3dd2550676180d785882b13e1968888b4e4a97dbd2cd2414d208c5df276b7fb", + "regex": "(?i)^https?\\:\\/\\/evilmoazaz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "62a710b74a63862e8be8a80bf33cb083718ad8651d58a2b51fba3d3d06e9bf3a", + "regex": "(?i)^https?\\:\\/\\/acaeq\\-feaqf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b8393260f09d926de6ecd1145d1684a843f259591be44c5e2b22f6079ecb5454", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d614bb97a61ee8c5f3e589b9b276107a3b03ce4e02404a35082fb7eda27543fc", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bd493422231809913f0427f8a020acb70ee536aba0d8b3a17b4c0f94f6d64568", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6c14d577fdad0a42a50f3b8ad3a725b404e39c6cbc1520874f39c8ed8e59463f", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "78adb93149d811b3933ec5e2efb9ec4a8a5dca9b5215e9fcbde3818681abb50e", + "regex": "(?i)^https?\\:\\/\\/endandolo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "96bab369bf38de7bbb570a185189f177cb82472c6eff9ecb7a471f2a1b8247e9", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a8b82f86f0ce2607d228251bf92ea2f4c07a8fbfef02cc966bf529f7b5e6f546", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8612825ad6f66fa16e8e79c5320e912cf32243ad92ab92b0fc010c41215a1d69", + "regex": "(?i)^https?\\:\\/\\/czeaqeaqzcv\\-aeq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6a4d0676f6e9a33d259adca5856f50fe8dc9cc24685f797b720a5646350bfd2a", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "94565175366ea66bb655a257a72f75c335081e4dbb8be2dc1d0f8849a4d83f31", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f21e47031516850cb5ddd4e6828abae32883e86d0c8eeeb79873ea3ce643e287", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "80a8e853a3c62af3d47ece8eb95eaf6b6cba2a02e32d06bd1aef11d6f8ccaecc", + "regex": "(?i)^https?\\:\\/\\/attcom\\-100762\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9a736c37b1245c77550428fdc1d069b2b348441b45e4fcdb225c02efb77daf73", + "regex": "(?i)^https?\\:\\/\\/tafawglkaw2\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1504c70c1344929b488158eddc22f909f9c4286c614d24b9a78b59071f473c81", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f57ea4a3acf11bb44d6f6eb6fef1137810e42442c2dbda86c1922cd86b3c1688", + "regex": "(?i)^https?\\:\\/\\/ecaqv\\-qaevgaq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "67b1642df6cd5245e6225368ec898cd180f8b6e0584493d2f9c7fb47368f7d31", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "68522506fc532de70db51253cde0c558f50b88cb8e826114c59c8b68244f94d2", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5d193047b27cf3f0a0648c7d0e39c2d455a6ca6fd4d7c4ad2f6eb18309ae0108", + "regex": "." + }, + { + "hash": "0f8acbfbd25d5908c4f37ecde2966c938ee72c28a87fe884eeb3da76ed44be0a", + "regex": "(?i)^https?\\:\\/\\/xzaaqzce\\-aqc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a046881cc30b1934ecc7f7797b5781dae16afbc1696972aa040f5b0c10a51d7b", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4553186753e3bfc39720b27986d9cd86ef4e43fb6f6f12e54e8752daa3c82316", + "regex": "." + }, + { + "hash": "5ed0f2df47a8ebb96160c81beff60483a30c986651d3d035042068c4a052ec6b", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "abaff954072620a19dbe1384642c6e0a031f974cfeff98ee131f54af94fb4a5d", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "628646beec191530c0aeacbb85cd87e905445c69685858aa5693e209059123e2", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e9ee4b8dd88e68a297b8a82b16b609354d3128c6d458d588ec90549df3ab3cfc", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fea1d977e070aae85f487298320399cd1b0fe92ff2f6a4c4f270d65d8da05835", + "regex": "(?i)^https?\\:\\/\\/czeaqeaqzcv\\-aeq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "14c66d6b4623fcb0b69c3ef2e57365d83c0099e81c48926a3b31740b96d5892e", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f227afdb883e38ea6ae893884a623fbb119f7bdd90f1bfced9ca65f7333d5f5c", + "regex": "(?i)^https?\\:\\/\\/maksdwk2ks\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2fba6d3a938ca556562ae1e3b6cebd476498e82470674b4aa92d37faf2279172", + "regex": "(?i)^https?\\:\\/\\/maksdwk2ks\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4ad7aa77b50100abe5a751ac7696211794bbc071a573bd5965f786ccce719ca2", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "19a00966b31b836242b9394f3a7241a60ab33971c0ec12f705ea05daa5d24350", + "regex": "(?i)^https?\\:\\/\\/fegaqgeaq\\-gaq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a12e4b82b892ad55296abf8b2481fed8bc236e54c1abfba9bf5d5e0b18166dbf", + "regex": "(?i)^https?\\:\\/\\/appc45h\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6f3b60b46a25b14e265f1b7f683a83d01fb673f94d068d3f5d793026c31fb16e", + "regex": "(?i)^https?\\:\\/\\/juno\\-webmail\\-108067\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6be13595e999db5dcef80e32539420f8b446cbab62a6596c266a6e2cdcc03c34", + "regex": "(?i)^https?\\:\\/\\/inc\\-108749\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9b5745e422aba1c464dce3c35789327b2aa8a272246a9091fe73a74b03ce0041", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "4b4cc00b98c0c095b1e7dd01b53aa755c44edef950db2a836408b1ec550744b4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9658742(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b13553a180113dafada6046eae729df86fe2c311323cca7476b49fbd91ece480", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0872b0c844016b1e8e5eab0925fb7697885aa00e3413ef8c5918662af661764f", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "be263f649c79b9eceed4e1e2a7c989a3fdd9032dc8d273939e7db0648bcb0d54", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ca8b6512d26b97cdda81e694f4581726d292fdf7edc23ca25e3e5fc0e8ea3380", + "regex": "(?i)^https?\\:\\/\\/evilmoazaz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e8b893cf963eabfa78c12adfea5e530c1277d6c79226a5e64afcdd3ce729fcf0", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9c3a4849a1475c6a19d2fab302c9df9e73451662990bf8914a3ed23562e23226", + "regex": "(?i)^https?\\:\\/\\/deaqfqaf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8d54e3124882c5ae8b183c55d9c36448a73db5fc43da121038f1c17807ec57cf", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ac14f591b3bde6218c1c3bde8db9484532198daddd7fa50e089fb46cf262a788", + "regex": "(?i)^https?\\:\\/\\/bandgiho\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "73861d3fa04a5dc7e597b3945c9042e58c153c0476c3504279f869b586afd9b4", + "regex": "(?i)^https?\\:\\/\\/getnfobox\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "74cff932bfb7acb92fddd73aee9b0ca47bc1f55bc359162c0f1eba72d0314f79", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "53b01f72f96bf9b57e4a89f8652d4307e88ef4f3c401c2c528fb3f2bdbac8ecf", + "regex": "(?i)^https?\\:\\/\\/ceaqvaeq\\-rv\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e5989da33afdb9ca4e91714e04deefd7d5b534c3125d0c05b997f6f4a46eb9ea", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fc0463ea04e3f226ab9dfb71476dc7c57ba8059c18a64592475a02c01491e353", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9b576d665a1e2c6289b105734b9019e5f6193821634d2d1429ac64e7260899a7", + "regex": "(?i)^https?\\:\\/\\/frankleveios\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "95869c49cf910a6b84460cb44bee90660afdb46a49eeed3f1945e67504eaa1c7", + "regex": "." + }, + { + "hash": "94d6cfc893439258aa51bbf6c08568bf442bf6abc60c14d272c6a4aedb8eeeac", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0b35ac950a53b76440433c9fd84d70a0910b0f24f60a9f930e17eaa7721b260c", + "regex": "(?i)^https?\\:\\/\\/hathethatheki\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "99ce40b277ab101c53b04c154d867aa6e5d742bfb66dd95a8c73a779b5743bc4", + "regex": "." + }, + { + "hash": "5486f4699008ddab0795939464939d93febeac47e826e516c4991d7cb24b1e70", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "828714fe3919134e9bea9963a91e482346f3ed15bf067844513ef6463e60e58f", + "regex": "." + }, + { + "hash": "e479d6d4d8b9d66939d2a530fe0b3cac1925352df9b0c655b33988c12dfe874d", + "regex": "(?i)^https?\\:\\/\\/ecaqv\\-qaevgaq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6a9220bf30834bf2960a1cc7f82cedf17da18af51a69166c2e15b4f9dd5ebcb5", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7014473c85c89aeed60545af444b9c84690392c4a712fd30ae20e98b1c624bcc", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "dc93be08d79f924b8ec46d76de3cbbd0618b6000c045dad5d9e44018e44ab824", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2Fbafkreiham74zwxqm642yk3y3govvrtb64h4ibhjf4beovxvs2gjhdtgchy$" + }, + { + "hash": "221fd189433a5c50fbdd82273ac2607d99098c4968793d5c5ef352b5d2ee7ff6", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "df5f004507820d5a129c18b4e3bda5eb2d05aa035a8b3fa3e8e02519eff47cf6", + "regex": "(?i)^https?\\:\\/\\/xzaaqzce\\-aqc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6c52652e1476cb7b374e758662d39b21fb352848ca8a5923e2387686bc0d0d16", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "99f955ac7d7c61875350cb7251cca06d493d6b746d1c591af687027d551f0a8b", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "75e8a000f107d0229b3e7a469e9686cc4453bad6dea9d2921aa59bf60891294f", + "regex": "(?i)^https?\\:\\/\\/fegaqgeaq\\-gaq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8db81760775b228ee1e6e5a72650804c1e4125088d9df5f70148916d8a32760a", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cf6fc791e295e99d5cd10085cbc038d092236f964524342581a4a086a18a8cab", + "regex": "(?i)^https?\\:\\/\\/bandgiho\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "94b7310acb2b87cc7db1bde3746534da4718d6b6cf2c847d186e5291cfa04cba", + "regex": "(?i)^https?\\:\\/\\/frankleveios\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d085d5ff7857e9ffd5a19a53ac2735db53809195ea97c6c209d09f620eb1865a", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fb7d56d2bac349d1f0a98c5b81186d782ce8a43f3f0f47126fb728bac196adf5", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6e381cd1f9b6300ce0368b987c13c1976c8d712d003ba6e674abe055479c4c0c", + "regex": "(?i)^https?\\:\\/\\/xzaaqzce\\-aqc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f815c45474cc7971c2c294d464126efee153b36e17c37ab1ff4c58dbff65da42", + "regex": "(?i)^https?\\:\\/\\/appc45h\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b65dac497b38ecd68b351eb1718729aac3818e5ede156c85b8dcbb40a2b4463f", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fbf6a380ca3684f704cb0b997834fc562890486c6697337d2610c452f601db66", + "regex": "(?i)^https?\\:\\/\\/frankleveios\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "75cd365950939ca61d2d905dca2e23e03e83f0093c16bc70e47577afbbed1b50", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6d890e088c3cc43044e396aed97df75ed7a7ded0c0453b0bf66dd341f0f6388f", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7acb644753109d571c2386497c5b56671301230cd5d4eb5e6077675cfd7f0423", + "regex": "(?i)^https?\\:\\/\\/evilklnlog\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3c09e7f0c8e757ad048a802f67a5c6d3aaf2d047e2a5172fec7f4f583ad59ae4", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6d9ea88f9cbafb14d714fcce4c0bdd8fdde116a1bfcac9655cd2b3c61cdc6360", + "regex": "(?i)^https?\\:\\/\\/hathethatheki\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "29143d3d69aa1855af69937af185f850d825bc055bbe1cc6d9cf2f46a5fa3fbc", + "regex": "(?i)^https?\\:\\/\\/frankleveios\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "68e7cc7883da5f5a1ecf82e5e53c6c3aa0e72b42c1def6ebbfb82ee4ebfa4518", + "regex": "(?i)^https?\\:\\/\\/xzaaqzce\\-aqc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmua1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "9033109c9baf4b57d68d29d898e22111d55804afb8346df2bf314225e1e5902d", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "405591a654a0167db84282a5f6c1ba168296afd211489eb1bf2c834a290632b8", + "regex": "(?i)^https?\\:\\/\\/ecaqv\\-qaevgaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "afe58301223b746651956bdef23fb815838953f7a2cccc307312cc401ab7de9d", + "regex": "(?i)^https?\\:\\/\\/aqevdqadv\\-qaedv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fd73b3c4a56183ee158131d76e7acc1d6f67d1f0ec9d6c03e0c43fe1743c6f04", + "regex": "(?i)^https?\\:\\/\\/sdcszbssbgh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1642fce628dc3d4af9b729d9132f3385842469d5fc78ab5e3b30ea07c5215a53", + "regex": "(?i)^https?\\:\\/\\/evilmoazaz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3d1c85b883ed7039739fb1129570618c6b0d3b2a334c46ca32537656c248013b", + "regex": "(?i)^https?\\:\\/\\/bloxmaxim\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "686bfdec619725d08ef2d62d41df1da6ae15b3076356deccb4928db6d41e1fc3", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8d33eeb23698298ab03c640bb4715cf1fc320578a13df46c4ca49226f74bd679", + "regex": "(?i)^https?\\:\\/\\/maksdwk2ks\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "00315c12372a9f0c594cd8f645c46a72ed6db11d66664c20b25383cccc793fb1", + "regex": "(?i)^https?\\:\\/\\/frankleveios\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "218083aca2fe26e3a4b8b60344d11a4548f4b00875ddf17072f050206f51bb11", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5341696ab371f625bf31848846e3c8340beef34e1a511219cbcbe28ffef52bc4", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f1137aad2f3c34ce610c21606b3f785fbff24cf0af64cb13be0b590e9aa0132f", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3152fc8fe08f81ef753892658442c5abfdc8ef2da2db4f2a3523fd9527611b77", + "regex": "(?i)^https?\\:\\/\\/ecaqv\\-qaevgaq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7329bc319f0bdf9c6b7fb84798c8245a6bf6fa0ed31a2d8a79dddcc18bf6c3f9", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7d35e38d15aba85ac64902ee531a4442a734f95091b4b49cde7c4745e351de3d", + "regex": "(?i)^https?\\:\\/\\/robloxton\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d525be3a3ce475927ef9d3d313448383ad87a2b6175cba3777d05d536f16c64", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ccd80a9df8be727f44b96f6484b48021496af4b64e4b735705d1895f430cc766", + "regex": "(?i)^https?\\:\\/\\/qwgirlmy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "228c52a6e89f228ea62576bf52be32dba96c3f7eba1a5e36a539b93ef228039d", + "regex": "(?i)^https?\\:\\/\\/endandolo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "280c87abb23de19fe8f2df5173a535eb589bda3ceecf93f08a1bbab4f2b3e211", + "regex": "." + }, + { + "hash": "5e34fe8f7aba4f9e0707377ba86eecd4e04caa19ffee5a010cf6569544517bdf", + "regex": "(?i)^https?\\:\\/\\/bloxmaxim\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1c2e99b4615b0a3e36c514ff192e84a55d1fb08868f7ff398ecb369adcecf244", + "regex": "(?i)^https?\\:\\/\\/acaeq\\-feaqf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "de239b9931b6d60ccc33911febc29430ecd367000aee6e9d7600fdfc48530119", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "328999b94ac5baee1cc06b8f7aec1a4d3217a82f6ee40f6e3cd862dcca9e3999", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "25fe384f2b163c94fffda7dedfadf7dba89949f398b9e35a1a4dddae087d1187", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "24567541fea1b49bab59e38784ee0c0043f22bd62111fbeb625006a10af50943", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "88d8989181863e92d35954266aed49457a97cf25493100ea0394c3275d67b1aa", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ae7c91935b926f3c7c9b1a863f3975d8b1a31abc2becb4a0462a993a49f3bff4", + "regex": "(?i)^https?\\:\\/\\/hathethatheki\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cf89b1c858a821a4ae5150803b2dcc7eabe3137914c368ee09034d012dec9f27", + "regex": "." + }, + { + "hash": "c743fd661e31c89872c065bf158d8fb61f1f5f5cf1cbe92588c171897823b658", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1c2c3a8bab7b08eea99b8408b6b7917dcba79322fa99717b92905f0c857169c4", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a965ae1fa948b3f2dab10e7caecb19d886746b7318bcb51d233205c0ab84b14f", + "regex": "(?i)^https?\\:\\/\\/xzaaqzce\\-aqc\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b0e7ac3d1433d0f049c9d25ec1cddf1929595403c308544aebb14d70dba41247", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "11f5021a2368168b21bfe3d2c2849b1a50374714b9c630a014af6c5097ddbbd5", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "909e28641d5e0065a6489759c7d68c4df4e435d24edea85e3f22be421d397be5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9f279afca948b96544245588f01ec79bdab05749cf9c352ce890b043b5f0215", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2fbab7d12c49a6aa33671970ada9defec20aadab63bd4930ef3ab46b2cf71e74", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "64a0ab6efd77c683f96aed15d7e8949b8685ae83610515c6f385b5bd1480adf9", + "regex": "." + }, + { + "hash": "58291dbdc79fc74251c0225e626eb1aba4c98dad5a318131d4468f6c0ad31d3a", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "74136f2249a6fd1ad9758a5f7d8443f0d405c8522725ac9f87b90605062bfcf5", + "regex": "(?i)^https?\\:\\/\\/bandgiho\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8f3a504bd8e539bbaaa939a7ca312c9ee70bb933d77c38a7628a9d47997a7255", + "regex": "(?i)^https?\\:\\/\\/garenafreefirenewevnfree\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ec0a918a4f5753467b06776de7c78a21d93401b62e3c989a960b30d87aeaea22", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c3757b8639fc3ea4314798091f2f76fdbc8476cc04dc76048810160a967378e1", + "regex": "(?i)^https?\\:\\/\\/ceaqvaeq\\-rv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "35be48c3b1b3760013990f944cb036585b43320205e271f38ba477927b73a8f0", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d03bdaf4168402859964f5c17b4baecca1b78a3acf496816a8880c0462765ee6", + "regex": "." + }, + { + "hash": "b1bf7152c51bbfb5b05fae7c57ab34821b0948860a4622ba4e4c1dcf3ea6cd98", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "548f8eb2261366716142b2683caafe65df7c7dbf1cde6fbe81582d6d3d518eb8", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fda973c5b45212aa35657a156a2ca30637d37af3ff7083b562455d9e311ad10f", + "regex": "(?i)^https?\\:\\/\\/garenafreefirenewevnfree\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6a48a098aef430124963e6b7ca27c1af3b02766dc84b47e882a4f3bad4b0b3f2", + "regex": "(?i)^https?\\:\\/\\/attcom\\-104553\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3f6407d1ff6dd998a7ab156ac64e249136fce9af0bec5856cdf48a4436aa6ae9", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0c0106cc1f6f281630aa6b7a96669d7665faeaeddd1d43be6867bc9ccd1a2224", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+redirect_alink\\.spark\\?ALID\\=13970\\&ID\\=177009$" + }, + { + "hash": "ef3fa9b4376e8b5b0a506527fb9ac655489aed75a569b9950e75962106114eed", + "regex": "(?i)^https?\\:\\/\\/getnfobox\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "61ff2ddc1874f5545824909d1f4e14cfce5e8ccb9b257632c372e3a40885b60d", + "regex": "(?i)^https?\\:\\/\\/getnfobox\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2ff2d74c4f44520b46f9d54d6ffc3db22a44752ddf24be479fda3b764788db11", + "regex": "(?i)^https?\\:\\/\\/frankleveios\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3bbdb30457c42bbf06452cab349747633cca35bd4ec8b488b95016dd61259963", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fdd54e2e35c22f1a9d2c6c1e17c1ab2a289964453f60afea70505e875575f612", + "regex": "(?i)^https?\\:\\/\\/robiocna\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "95de2620d8ec5fad886439bf486afcbbc494e065c70f3a5c82e9c0a08a2b01f3", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5c42542bf23bdae449367db619f49efdb4379ab0ec90e9ca1fc1e5941d118ce0", + "regex": "(?i)^https?\\:\\/\\/ceaqvaeq\\-rv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "01ec99b05c962e540f521d0fb61a05e3552275796f492c2667869e22d91b2ba0", + "regex": "(?i)^https?\\:\\/\\/getnfobox\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e7993d224fb07bfbcd41d75862d5c01c746ee0766da13dc8ca2e922ee6d1cc49", + "regex": "(?i)^https?\\:\\/\\/deaqfqaf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5276466e51a6388fb111d37c7e89f81afff53e6aca1eeab969f46b9b3fb0294e", + "regex": "." + }, + { + "hash": "5123f1624f08b43d4d61ec8016134604bf57ab4bf75ef51231806a1e41989bee", + "regex": "(?i)^https?\\:\\/\\/czeaqeaqzcv\\-aeq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f09b8816c5424e74b4fab3f328498a9d5270c146031388b2bf712b5db48c2929", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "f6151a1fdf535ae979b40ad772bc36d707785d62dd0bc4cd54063f8cb797a7fc", + "regex": "." + }, + { + "hash": "24ced84caab8c4632fd6537cdc1f9f70a88d5fdfb44d860918d0146f25582b00", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8056604cefbcc8cd006961961ee4defa1fd6b892431bd4a8d9c8143273c2bc3a", + "regex": "(?i)^https?\\:\\/\\/bandgiho\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f3154d15beecdf23129c02b2d1c2c692fba5e3877c9314a60ca4525b38166878", + "regex": "(?i)^https?\\:\\/\\/czeaqeaqzcv\\-aeq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "23ef88fc1f9e48a72b879e39e24dc3c21a14b6cb7dc0c0112341bfa84dcedade", + "regex": "(?i)^https?\\:\\/\\/maksdwk2ks\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6edc608c6640a33404608cb7fea3452d0601f761d443d9e49229e8b932708fbe", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "612ca105814b257010c79c9be4a7ad0dc2c2f2ab0c328a89ec08bca556734acf", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e439392bc0a2dfdd1e8b755c9871540ed998cc85040d3fa05fcaa48e3301b121", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7f2ea9970b724928f4d907d8d4bc60a72e2187c7fb7972e7affdb0b876468224", + "regex": "(?i)^https?\\:\\/\\/acaeq\\-feaqf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ee524b142adee720aebbcc93d2f832288fafcef73d32f71791e3c37ed7d52c22", + "regex": "(?i)^https?\\:\\/\\/yahoo\\-inc\\-102979\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "81a913925c0a41e10ceee7943076ab595e8ef904395acc8459caa87242525c9f", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e796c51c6596d85abaf762a0da293653df5bee91a69d9f3fab6bee732c0344b7", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9ef39b072eb0809a5a664acbcfa02152255811cde392205e567d304486d9a376", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f9ae588773cde3a47054fb2df1b03272e43e80313e0edc0004b6df1905d8cf41", + "regex": "(?i)^https?\\:\\/\\/fegaqgeaq\\-gaq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "94a8f27214f4acb44c7889422930c92fef6c72dc695eed0e2df46f8ab4f502d9", + "regex": "(?i)^https?\\:\\/\\/ceaqvaeq\\-rv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "23268d9723b45f5a6af73d2ae7c38fa991c1075b0243ec6f2b91a44df0959954", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2a4193def20037b51bd9717d9d13e7c3b0df1da96f4e8d93317fa4a401ee5ead", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6bf8b8e7a50b992da4959a5c389cc0168b5d35f7588c17945bc2c9f963275a69", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "41febfc3b1d29aacd6c86ce4602fa5ba4b98d07c3610a0ee269725ad6c98362f", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4a498d48c8b8bafdb039c0eb93e39eb3dc0c77a620a315e1446c17c952839d38", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "49fd3502c728c253402e3c7c49dea9a287a504687322eae15f025e20869b3a37", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5c50e3c76b16568cdc09f959eabc1fd33bff853c395ec52b42ba6a01f09d5ccb", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "25c3f9de4fd093732253645f4d705606658a393d98ddce20853ba1e4cfc523aa", + "regex": "(?i)^https?\\:\\/\\/evilklnlog\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d631cc41a471124c0181316b7f3aa7c33bdf4275f41b378cff15b199d57a6972", + "regex": "(?i)^https?\\:\\/\\/home\\-106334\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7ca6dde44ef0a1990fc1e0176956c0d8bbdbc629ea5752bcfdffe14e8325025b", + "regex": "(?i)^https?\\:\\/\\/qwgirlmy\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455d1f94\\-d0dccf9a\\-c9c2\\-481d\\-8195\\-e9aedb176f0c\\-000000[\\/\\\\]+tDtNW2PFFpPocxtwlXtsPTXE6S0\\=394(?:\\?|$)" + }, + { + "hash": "d78c701f237da74aea9be7070215f459a1ed2ed960173b41ce95b8052ce1e8ab", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "271baff1125f1c9875ddf134265f8676f30b42194892a786dc21162a3a49008c", + "regex": "(?i)^https?\\:\\/\\/xzaaqzce\\-aqc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0fb5164413bc6d7079616380a287bafd93bf948ece8b81d4fcb9d79f197eeed6", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "657f3f0b8d5bb7a2efc3408f2d17364b892a038e620e0e4fc246fd77d382072c", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ad9fa3ce192f356a950ac4658ef7ca1b1adab3e946ce7bb48b5dbae6cc16789d", + "regex": "(?i)^https?\\:\\/\\/xzaaqzce\\-aqc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4e518bdebee52295669db20f89c47d1f9c080e5ca6834f9fd8982a3b98638f57", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455d1f94\\-d0dccf9a\\-c9c2\\-481d\\-8195\\-e9aedb176f0c\\-000000[\\/\\\\]+d8_GJH0rUne01u_AmkUfqzAsgWQ\\=394(?:\\?|$)" + }, + { + "hash": "dc3e27551954aada289b76ee5b271e4fd2f90bddd0c1b911ba3fe9a075b96029", + "regex": "(?i)^https?\\:\\/\\/deaqfqaf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c6fed3a5d6e2756247b78a2b24b89a614f7d0e5f9f685e71317fecda797f9841", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4707ce218a914b0a7cb7ede3894106db93097b0cb9869d4eff1aead1c2f54b9a", + "regex": "(?i)^https?\\:\\/\\/evilklnlog\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "30b8b9281ea56d54dcead30bab064bfb7af1cc5cfebbe70f9a6d38cdd743f60d", + "regex": "(?i)^https?\\:\\/\\/robiocna\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "113712ce2a7b117d92add4da555bdfd46d00c4e8857a6ff8008a60e726d9492a", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ebf200b2c42d7a3036f4218b976db9477cd9eaaa54a28ef00c96f11a4690e93a", + "regex": "(?i)^https?\\:\\/\\/hathethatheki\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a7f0dc0e7e0903a20e2de64abd46a7031545960ad74ee5d60f331702d65c3fbd", + "regex": "(?i)^https?\\:\\/\\/evilmoazaz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafkreiham74zwxqm642yk3y3govvrtb64h4ibhjf4beovxvs2gjhdtgchy$" + }, + { + "hash": "da6151f2f1982942e0a187911c010b9b5cf26048b38c24f804974382d1d04bbd", + "regex": "(?i)^https?\\:\\/\\/evilmoazaz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f1ce1649d43e2fd91a2b6773fdbd5c617eccfdf41b042892667e29aac1c9b649", + "regex": "(?i)^https?\\:\\/\\/garenafreefirenewevnfree\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "67466cc5474d35a1d8da41ac5d45892c63708bd84290d4fbb81d5014cfb82545", + "regex": "(?i)^https?\\:\\/\\/maksdwk2ks\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "302311760155fc974368aa310f3357278d8f0d7a740abac51b6c9cf0dfe2b696", + "regex": "(?i)^https?\\:\\/\\/tafawglkaw2\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "70eca2cf166d00044fa4071da3f3697330b8fe1f55d61d4ffcb530bbde5ac3c5", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "da75940c6083dbd6a40839b52e019f13ba6874922a7065de3c3e5661d1d4e9c6", + "regex": "(?i)^https?\\:\\/\\/appc45h\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "da5a8f4bcb6c63a172fcc2c430a4722ab50bf8ea1b1a1104fc43ae9f5c673434", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cb9dc814684f9d9fc80ce478587ba1423fd36ce4df66bb9b098e9690af0a7d26", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b38779\\-40718ac1\\-86b8\\-4b7c\\-a357\\-8a421736f248\\-000000[\\/\\\\]+sER8hL3q_R31DmRQ_KfYROHjgVI\\=394(?:\\?|$)" + }, + { + "hash": "2637abcdf3cc0dbc8f30f7d65a56011a768e8a0d9f8010d5a3fc9e992db155b3", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "616f9715bfd721b448de24daf37ef7732c931b263b042416a59324ba56844ee3", + "regex": "(?i)^https?\\:\\/\\/bloxmaxim\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d7136eeb4f38b6acb0e3dcfcc194885c4ea4b11456d0d2ea5ef8e74338c2e6e7", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "b1620ca5f1aa45dbdc37d09194b869fe199d53101ebcd79f2f26cca11f712801", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a7003d1edac0cc45b609acd805237e6c7bcb240230c63262a81e424766d1e20a", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a53e3b679969b06cec056ee559bdcbee4290b4b17be686a8ca23119b0469f5d5", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9ef0a3596f69d07a702300b1a5215177f7a4217f800a11a24deb0ab4bca96452", + "regex": "(?i)^https?\\:\\/\\/optimum3\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5ab3afba83832b02f40a8691f93aa1b6eab510315319932a9f8e2890ca4c9a3c", + "regex": "(?i)^https?\\:\\/\\/hathethatheki\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c3e3502c053df29cf9a69390ffe2e707d55c7f410caf5a6f1c225fe9f79bade7", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "db3fac39fc6525eb6f6d925b9183074afb39dcb07fda4581d92b8afe689c8aed", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "84d8e88c8dbc65abcce3645869d17bc390a8bb835adcc7b505ad194e05de537d", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9c11dca0c9bb94f18dec7e5f455bf33111b50a9674f4972547004c331923dbb8", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "46d02b68427aa18af40182dafedadd2ecb3260ca5857403f95c616cc851d5414", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "eeb5c205685bd2eaf896f5ba016d3b7cf0fbd41d9afed1269daf2d544d67fae5", + "regex": "(?i)^https?\\:\\/\\/deaqfqaf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9758f47bd617bc3a36130ee3444e23cfb3114bb4879166e93490c385fb9d45e7", + "regex": "(?i)^https?\\:\\/\\/getnfobox\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f69fb56001e0806608ccfccebee9bcde5c65aed09f6d9d6e428eb4cd03f05135", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d674c9a2047ea16136f79c6033d177acc326816f3ac129c4500bd3ae86a16620", + "regex": "(?i)^https?\\:\\/\\/deaqfqaf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "09dc8ce7568cb4653d5d0a6d572cfcb4876ec8650334e2096d881d20cb717a2a", + "regex": "(?i)^https?\\:\\/\\/sdcszbssbgh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fbc1adf2199252502776db6dcfa76a752946bbbaa0e10def849b57e91a2b806a", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "653b0ce316d1f19701404e63d4cd309a9266e61065e2447af66fa219ffee2499", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "61c345733fa8fb0c987219eac5ad81378d289e540b476e8bb7f823a1c386e203", + "regex": "(?i)^https?\\:\\/\\/tafawglkaw2\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3d1150f15a7ec09109643c689501fbe842aff11635f313a6da1032829bd5bf1b", + "regex": "(?i)^https?\\:\\/\\/robiocna\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5cd38800992aaf1fe73314fecd32d8611208754a349a556388c9e983012f749d", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "22d34d15add11fba4f0837fdc97634f63a10029ea8217995eb70200780c3c7d6", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c71880e7787116dab32aa409e5e01d88961ded9f1794cfdeaf4aa382cfb44959", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ef6d06e119f1040dbd21bdf02ed65b121093a1184483080402c70866abfa6c70", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f5da7bbaecc39c9c359c3d99cac53ed3690c6e0d8995157cb09338a803e436a7", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bb9927979674a023c3826a5cd9d42711a25cee5e76075bc5347e20ebe601335c", + "regex": "(?i)^https?\\:\\/\\/aqevdqadv\\-qaedv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6192475255e64e64754628fe4877afc48b39d361c932b13ee2569a86cbffab06", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "144a4cfebc18455e600aa3cb8f15fa93ca9c87ad36603b634288ef2e4235ed48", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "65f3555ea40f8b4651dc5542bcf46440bf1a605fbbce461919878fa5a0ae1387", + "regex": "(?i)^https?\\:\\/\\/fegaqgeaq\\-gaq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bfdf1732608336d0e0abf78dc1498b68b5e07ebf25eef88a8158b1c66334638a", + "regex": "." + }, + { + "hash": "3d438338293da5188d5fe2f14741a0182ec0e562d319b067d05951b32a2adfca", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3bf0aa9107a081e43633e815a65c0a96dc59d06306e1700adbbc21b5ed7cb4a3", + "regex": "(?i)^https?\\:\\/\\/inc\\-109213\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "de29629a1f7ce7ae9c9f356238609a48ef4166cfe0155d043ec53920886e6936", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a281787468999293346178dacb67e4362aa32ee1e624662ca3331a02628c9d69", + "regex": "(?i)^https?\\:\\/\\/robiocna\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "70616a20382f822d72a3930600d4f5e705a273518d937c5ecf9d8d358279092a", + "regex": "(?i)^https?\\:\\/\\/appc45h\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "66b685b27a3374fad399c3281815927d138021aeed219f6bf1346c7a4bb20f73", + "regex": "(?i)^https?\\:\\/\\/appc45h\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7683fda94cc5e4fa9e2f772d9103adc84129e1496a2d6989c3a883b9f45eff56", + "regex": "(?i)^https?\\:\\/\\/bandgiho\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+erxdvygbuhmo\\.blob\\.core\\.windows\\.net[\\/\\\\]+adjunteos12[\\/\\\\]+seguro\\.html\\?\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "94a1fa16114bd272cca30901275194714539538ed620d940171d37813ac5df2b", + "regex": "(?i)^https?\\:\\/\\/mail\\-104138\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cff3bbb46c167a344492e3339a84f230b1dc5c062ced8a44ea6e394c609330da", + "regex": "(?i)^https?\\:\\/\\/deaqfqaf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "479e5ee8bfa697ee0a1963bbfadc2111e3d6f867449a7e61544cc450f9708244", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d8e1d85e06dbbb77349428aa566904d876409ea09ecfd21cd3d5e4a55cd0197b", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "417fd5adcc8b81f112f12247e8cc3a44f625e55e48772af81bd8be8a763d7a48", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7f6c36cd141c5e6387565526e0adf9c5aab7f2cd7ac646ab59e6edb09f9f5475", + "regex": "(?i)^https?\\:\\/\\/endandolo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "df3ab6ca2cb0cbab95cb70064c61b1ed477e0d54c0d897bc33dd082390aff1c5", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a6aac1b1b14c4f7a2d9a9291bd2c4554400257f3c7516d88ba1c5d1688b444d0", + "regex": "(?i)^https?\\:\\/\\/endandolo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a50cb9418014634e14b0ebfaa9276c7599622a7aa20e42c4cadb04acb32ccadc", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8f4ca510459120c41e4747d190c764fbaaa216379569e318ec14b6ab1cf28dd8", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f3a0bf7680d16e984550dd943c625d109c49e65a01cf9b8cc369dec68c8a3a0a", + "regex": "(?i)^https?\\:\\/\\/deaqfqaf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "03a23872bce3a2d17b84b06097901c30c1ff02046b613683a02eaa98b390ff02", + "regex": "(?i)^https?\\:\\/\\/sdcszbssbgh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "283947feb4d9ca8d250dc8c6b78d5d6d235c33f4ea57c00da273ee7ef4b107e7", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f128c7a263119242ef03662794bdffe2eae450b89ab120d5bef1a00765af69a6", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5f2cf8cc91e77987ac27d99659e2a9c42f966a73a6492be8d147004683fbd38d", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "2bf5a46f1e82669335c77f510230dfeddaa41175fb458d97d8f6f2fc5da84481", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "728056f5018c9f3197d7374c56b3aa9c768a831108125b9fb70d460170913cae", + "regex": "(?i)^https?\\:\\/\\/ecaqv\\-qaevgaq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c2076516c864ddb5aa3b069e6114570131fe2fc43c88b2d1f809759cded10e85", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9e5d77cfdf67dfe5decba5306e1e152784ed0dd46767203c171693ca1395589e", + "regex": "(?i)^https?\\:\\/\\/frankleveios\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "e5840141521e0ae9d8fba34b76c144d71854c19dc07edde4e67422d97abece55", + "regex": "(?i)^https?\\:\\/\\/xzaaqzce\\-aqc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2084e30d1556922ecf10f45371c83221187617428a611eb987f7d6ce26309136", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "92d822302d26f7e6993c4b0ec82da2150294b2db980c0592e5c4a0c2d8638659", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fe63b4c6007580552724b1f47e1acdd35ab27062d46901db3ac114160c963424", + "regex": "(?i)^https?\\:\\/\\/sdcszbssbgh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6616823e89c1780402ca10a5f4715d36704b11b5ee436b51b750d354de778994", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6e81fac39365a67ebacada68f515a029bf189d9dac4ec8585424ffa9d9575de3", + "regex": "(?i)^https?\\:\\/\\/evilmoazaz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "da161781450a4feb243bf4dbea23252645a6e7bf636d164f867067d5615084c5", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6cb57d014f1f646bf9423966fe477015d91b87194a1ce289597821010916e00b", + "regex": "(?i)^https?\\:\\/\\/getnfobox\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d3aa16b0b89900212e240b32fd1ee85854787240584389c5ad86cd8970df2c66", + "regex": "(?i)^https?\\:\\/\\/czeaqeaqzcv\\-aeq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "47515a3db75f8db10b2d10bbf93cf2724b95ab3f6779c233f88074edd6fae991", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "71a44c9236221d4ff4b625cb50fae64395a7bea611b6d5d9aa10d6c8f9abad04", + "regex": "(?i)^https?\\:\\/\\/czeaqeaqzcv\\-aeq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2f0eb6ade8b9bc714dd828b8445f18e4d7f980d05324c79369c4cfee45a71dc3", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "a153dc658d11dfb6a3f55aabb2fe6c02804d339b39dc0bcc828cc6d51dfbdfbf", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f5d0055dfe7e64b242b7d8b54b07ee2d9c8fe26bb57b2d7acca8fe03e400a73a", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "412d6ff5cd2f2753d0538f9c4a899863c3eba1932e284978d8c5424ea82565a5", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "dc2726ef62689ba51da439ee66c6de22b78d460d2139a42cba18878f9fcae1a4", + "regex": "(?i)^https?\\:\\/\\/sdcszbssbgh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6cf1a634bf842a14989a89cfb7c6022833f031726855c1c44b97739926a6457c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "18c8b0ff88d3e49e224749f67bb82f4d2f25668049e01839cfb22ace40a360ce", + "regex": "(?i)^https?\\:\\/\\/tafawglkaw2\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6b7afcd5f4b832a87e54a08dcf6463adbb17edc1429724d415c9c93e33fcc85d", + "regex": "(?i)^https?\\:\\/\\/sdcszbssbgh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4fca5e744ee82cdd8439f2542ad3de111436d319ec6e8f5812d48e5cba08066e", + "regex": "(?i)^https?\\:\\/\\/aqevdqadv\\-qaedv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d5fa5a41094d3f99c529af10ba1447f3fa49dd462f6d5e014fa91d0ac9a97f83", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9bb2f6aec0feb2fc9ef3dc4d985a19e20f1f89051a402a5668d1872c92d8658c", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "742b8c80bc0c5901bdeae06cd3209bc390b5a047af60c71e2d7a98396307a0dd", + "regex": "(?i)^https?\\:\\/\\/bandgiho\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "477c3c35bb2400f76330a88d84a95d6cc867ebac5695c1aa04bb84f5b9298eb3", + "regex": "(?i)^https?\\:\\/\\/hathethatheki\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab91a605ffb74f827aad0da8e983df9ba6b3d8c44ea8b8ba6ef3cd2d564abd", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "20a823ae3dd1437b589db4292bad6897cce831b21baae9d538265271e2641d66", + "regex": "(?i)^https?\\:\\/\\/fegaqgeaq\\-gaq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b38779\\-40718ac1\\-86b8\\-4b7c\\-a357\\-8a421736f248\\-000000[\\/\\\\]+k0Fa3ZlIFQNQat4q8e57LaF40mc\\=394(?:\\?|$)" + }, + { + "hash": "aee6515c1725638b50ee1110f47557aa3cfd7959433d3c5655515753dd4c722d", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4da80fb55acf29f07972b2081316336d453d06707ec2a7d6859adf929884078f", + "regex": "(?i)^https?\\:\\/\\/evilmoazaz\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "23a3d24c84e55ff767db69aa98f944773cbe4a01da84ced484391d1ab7e2b8f0", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "46de9699e6b73e562990b51dc8baf72a120edbef00621e46810783520da1ba41", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0fecd204efac4b39c74fe091f9d35b8105a96e45ab67ccf64711d998b5aff9ab", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "94469c051923b397f8c34bec8356b0593580b39d17e059a38d7999ddbd12b446", + "regex": "(?i)^https?\\:\\/\\/sdcszbssbgh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9db779fab7af36c9406b1117bcea9ff23e389ea5d9a0df77ea90cffb8ba32925", + "regex": "." + }, + { + "hash": "b66a96550cc01f006ffef8956e76557dc31f6f2f8241a6bc55f15bcc887bacd6", + "regex": "(?i)^https?\\:\\/\\/ecaqv\\-qaevgaq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3f0ae7b479e2b08134d5efb782e7d62c024a7ee712673aaa2e2f3f2a2ee6cfd9", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5cf954338e823c85a0070c6e989bc7897c97e8e97865022fac6d02489bdcc138", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3c6411d0d3de21b61a921c41e8e74e4f886a754c12acbb3de7f9433f81b91619", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0e42c02b7698e4a62aaca313ecb3d42b8287e033cf2eec66e04635ea3150e2dc", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1bacd794bfb3344f9fb1c9375a8a08a471ec4ba265cc12960d5e872587b6581a", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "48edbaec01c3558a1c77e5fd91cdf21b7bc80540555e0789e8b08e2150319ec3", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "24aa2f6e3f2b94cc296d46bbf7cc53512fc0a65ca420db00710b45969c55ba3f", + "regex": "(?i)^https?\\:\\/\\/garenafreefirenewevnfree\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "279a52188173b94624c29ab47b1986d3602796dcb1444c1c1838a0ac5173a1e1", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4cb4b91602f2b002b53eb0f605ab3d7f27729bd3272ef68d82897bbf1f2e188d", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ef93da498e23863f8a136ce1cf16df35dac6c7bacbb5933d7cf2b350659d3905", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "20ed5b950019d1235f2f966c4b506d5f70440020a5af6ea914350a7e66f185d7", + "regex": "." + }, + { + "hash": "11e5f293a53f2986e09d5968f3fe9158f28892f51da093e12e271ab2a3947e96", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1ce384097cba1d5eb5fcd17f36940f90c2c65cc69642bc5f176bbe890028e52e", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "095ef9192d70ba3e67d66367e210c42e7ce349e5d98070edc5bb7aaec345d94b", + "regex": "(?i)^https?\\:\\/\\/tafawglkaw2\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "348ce03b7bf605953aaed5c1e3cf74d85d8cae1390abee6dce30218932c9f467", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4c0272a90506d6115274c1c8663f16c063cb18b3166269a471d9aacc68c70a80", + "regex": "(?i)^https?\\:\\/\\/acaeq\\-feaqf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "24aa6eb9de01da65b9d4f027d67841871f575ecbe79956c4838bc41752f299ae", + "regex": "(?i)^https?\\:\\/\\/endandolo\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmua1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "263771033d613c25e8a62ae20acd16637927425d97086dcfbb325527a2762921", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8d19833a4804a785fda4fb066b9242229223d871b7fa168bf1d747d7f2de3b26", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bfdd258e1c3d3b960d893d4d7490b4a0557f4498fc3db86020e8015f4b86c09d", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f4a11988ceffd82cc354931e44c624c589708badd6a4386749f4bd1b3f964c05", + "regex": "." + }, + { + "hash": "d199622b6fc1c27c15245dfedf87900e33b85939fef70c934fdb06305f114e32", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "35c232bcb94888c9ce5954cea0f637032cd63086898766caed009ebe08e2ed5d", + "regex": "(?i)^https?\\:\\/\\/ecaqv\\-qaevgaq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2c3f072ed794e5d9fa339fa8b37e88327093c7caf99580bafcf987fbafa09542", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ea8f8e7aeadf28aac4307c12671252e526f450115a4636be7fbc737dbfa32fed", + "regex": "(?i)^https?\\:\\/\\/xzaaqzce\\-aqc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c220ed1da08ef0446b8ffa18af2c355d6ff881f3650931ce7b874de1cd06ef9c", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b57c9b149f6fa8d9ecd87738bcf1129b6da6ec486c928e4bd4d63094da11b0a4", + "regex": "(?i)^https?\\:\\/\\/uiuyytyty\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e3c63905dbd2277b67de98ba8e73be321854433c7696ccd1d759bf6a0007db59", + "regex": "(?i)^https?\\:\\/\\/aqevdqadv\\-qaedv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f38b7aed32001e4b5818425523603601eb9112db8f55f82d038d9cd51274fb94", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a3905f2e1e5ac8ab65bfcf11c209e1d6ed7104704a185621e0cbe6bfbed48530", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6b0bbce8374debc76df47166c71499e695d2fe79ae5269e45d15656827b2a385", + "regex": "(?i)^https?\\:\\/\\/acaeq\\-feaqf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "49ba4940d142cc816a51382c6b93980b9d8fddd06660f4967a105d1c818ec119", + "regex": "(?i)^https?\\:\\/\\/ecaqv\\-qaevgaq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d9d45f153373327c7b77ab7a484c9ce6bfa6c038a60e08300250ea6cec0a87ba", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bae4b10c01502bf5a9590250a1c8f8b06d96c8210b824f458f26303d589be267", + "regex": "(?i)^https?\\:\\/\\/sdcszbssbgh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dd21a0b3b35181204625a2f1e0cb6478aba69dabccb6fac17b574a9cbf61c3ca", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b63d2d109ed51aca6fd2aef48a5cb435c44747e59e8f38e1e29861445c100d0e", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "03cd02865c3970c109d13e63a7f98fff1ce9e038a848fe34d8bcfb65ffbaf114", + "regex": "(?i)^https?\\:\\/\\/other\\-108041\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bb633695fcbe1798ffe6eae4738e50602bd56cf12747a3de83b13f472c205755", + "regex": "(?i)^https?\\:\\/\\/appc45h\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "44954c2bf816b16343b43415afed756d617e06b5012b501d6284a5e55a756878", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a15991c726146aa8160bf0123e97ae87ba10908b483e16de78cb7fdfdbe352ee", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dbfffa0ac86d0fcb29508585cb30644595bf1daceb370dc7db88b2e57e7befcc", + "regex": "(?i)^https?\\:\\/\\/hathethatheki\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5b48f7df8f65db852bb2a5fe5da4921045bea274a3249aae8cbba5df7f60410f", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "251ea192e6895511c23de429b335c88eabc2f738399c0032f1eb07def1b70bb9", + "regex": "(?i)^https?\\:\\/\\/ecaqv\\-qaevgaq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9c9dcfe3f964fa286655cd1019a9df311bfb1bda3de083ba8792d0e0eab4b224", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r6rSI5Yt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e88cde85b6a035ca40361666451b915f7e37673dc685fc89ffcc79254f1b702c", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b75409e9161e1ef0324c9a33e91a7902a96392edaa91de2e41723c5d6f742b55", + "regex": "(?i)^https?\\:\\/\\/fegaqgeaq\\-gaq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3cc1e04e502c0af51cbace71b035d7d73c7a93dd8c86ab7ef5bacc219c425cb8", + "regex": "(?i)^https?\\:\\/\\/ceaqvaeq\\-rv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "508860806887de3c313e086faa18b983695e0eeb19891e44ca0ef44ab0ba47cd", + "regex": "(?i)^https?\\:\\/\\/endandolo\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ed68b6bff389d5beb0a4db6ecbcb6b81743eb9aeab3e492774b07624c0572fae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe05bf4a96908f9e162fcc4b176adc94f683bab3edb8e72abc6c14d887740ec6", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c22d93aa2d6a764ad9ae678b85486b9f44d77fb9fef806991215722256b8ed9e", + "regex": "(?i)^https?\\:\\/\\/qwgirlmy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "67e6d66d005ccb9f8ff062208db6ea992a235a90c5dae4f580f5101ffc0b2ded", + "regex": "(?i)^https?\\:\\/\\/evilklnlog\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6d0b4b18563fdbf42ae961cd60a5b4ae239b81f1c470b8a7fb297f66b81d3b50", + "regex": "(?i)^https?\\:\\/\\/reaganwebmail106889\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b2cd93fc704d40ef89508547cc04d9559ebe8277251c3d0975bcc3b31113c617", + "regex": "(?i)^https?\\:\\/\\/endandolo\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "3641e6200571927a6e28c54e89b91b28f7bbd5ac2fb7be49645e58a464299cc4", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f6289f3a806aa15b0c33e6d9d8729bf06f611e3869b157180381d475f412a126", + "regex": "(?i)^https?\\:\\/\\/fegaqgeaq\\-gaq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d48aa4b83cec4bf027c176963f8f7b18ed1771f8336224c49540950cebf7a4f4", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2999532a0307e25bb4b482c131478ede1ad315ee517b4d2e133f9625d9597d06", + "regex": "(?i)^https?\\:\\/\\/symiotoroa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff756e9eb25ecae25d91889d5ec0d15fc5c4264ebf5e4a58314a6a1a6207120a", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "40c8657d68cca247e38bc88b4e76a51bd294e81dc1a59154043c2eaa618a1e94", + "regex": "(?i)^https?\\:\\/\\/qwgirlmy\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7112ce2bb118d2bb86f737e6d2c838bf89ff9927671d8be48dd0072bada58480", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9dbd7d49be0b84c0f6785e7c443bceb3c4c55dfe09ad37d54789b4392534abf7", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "66c921d38fc6b0a2996a6c5586d9edb73b70080277cc340820ae88019d6105b6", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d92a38378b88399684e164ecc55d201e6843ae2aa95268cd8d6b1783ddeda1be", + "regex": "(?i)^https?\\:\\/\\/aqevdqadv\\-qaedv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f0d7b8629cb7c76815cf917c1503ca13586b61ee1bdae522177398ac7b81130d", + "regex": "(?i)^https?\\:\\/\\/sdcszbssbgh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e797744cb6ba59ae60f699873b1b9c7fcffba37bdefe66145fc516d5f65629da", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "616eb494a858e75cb48bcce8bd0624be0712693e11896d55259f62c11a1f8b39", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0ff7e761638eda1429b0a218910b21288208fe70b1aa73974c28180d923f62e1", + "regex": "(?i)^https?\\:\\/\\/endandolo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d35d56ab21042f4cfef19a8f5ee153e7fe1c8fc79c1f735a12c857050131ddbc", + "regex": "." + }, + { + "hash": "8fefad670437800627e1de52e0d8fcd209427e59b92a3769b6772d7da9560d3e", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "09424fbb27337455dcaf92111ad1126e8233e4feadcbce29f049bbddc171144a", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b5e3b02dd6a17b7c87b9068df97f5c8e3d9165a7549e43ae792c20be0a24ea2d", + "regex": "(?i)^https?\\:\\/\\/garenafreefirenewevnfree\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8e1a3db10e6ea9ad9ef9eff1855ce59543fffff4de4a7586869605b85cff0549", + "regex": "(?i)^https?\\:\\/\\/dnitsnitch\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0079c04d3f544b232153822aa8b94dab8cf8e56b1444f75f3793f9e34b487193", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "852447b350cdf34549fa1e8d50c12e0ce50cddc633a8ba7c2566222f61283d78", + "regex": "(?i)^https?\\:\\/\\/appc45h\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cbd58b14331858eac2e836c92f8fc080fa0d3167da5bb1a366c10335a1f71c69", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "01e0ac35db4e2799cda5763b8058429b2335df9c12a84f0ac240dab48169b130", + "regex": "." + }, + { + "hash": "ce3de049b6d5f673792dd94de5dfb14e7476f83faa67d7ca7d9a149c5919aaa4", + "regex": "(?i)^https?\\:\\/\\/adfasdfdasfdfasdfasdfas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "864349507c2a408b9a3274f89ae4f3804fa73037ee8bd9d7572ebd41a333d1db", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cd50eaaa88cd274cfb6c25ff958e179a5d4279eab617f5b61ffc9d068b13e6e1", + "regex": "(?i)^https?\\:\\/\\/garenafreefirenewevnfree\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cf73b8d5c23b3119f6d922fcbaf600b9906bb38438609c1b50733cd495439283", + "regex": "(?i)^https?\\:\\/\\/aqevdqadv\\-qaedv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f6069106a402bef1b6b9e66227cfa51ecdb65eb03970c417332307b6206743cf", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "a45da4d1b760a3ce9b6311450dc1c0d9cf132f5aefe2d612b6bb92680fe0d608", + "regex": "(?i)^https?\\:\\/\\/czeaqeaqzcv\\-aeq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9035c44735701d0d5f47b83c63fd1998826b34426a5494491e58adcd5dd3a751", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2f67f1dd4dd36445c58f999188012047a672b9ad1a62abf8b6d87d7a8375b196", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2Fbafkreiham74zwxqm642yk3y3govvrtb64h4ibhjf4beovxvs2gjhdtgchy$" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "aacb14fd820c07cfc647e0e33bdcb086a62c0981bcba2c6e8db673abf84b6901", + "regex": "." + }, + { + "hash": "b9d9650f25401c9ac38fa00677625f81ec3f6910a76f5acc819eb104164b5dc5", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "0cb2d121e1ed91c275c6ef00b6c252d4bd9fc8234571d841dab2bda8adaf8967", + "regex": "(?i)^https?\\:\\/\\/evilklnlog\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b0e56d02e79159fdbdebe027e44146d4eea599c287eceaea07ec6c5b15c78ace", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f1319b77125b87cff45bfc67b04f1162dce125ea3912219546e0bad37e4347c9", + "regex": "(?i)^https?\\:\\/\\/hotvideosgg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b45c910062bfebd5f48fa44d6f56df8ba4d7808f0e898c0cf6d096b46baebb06", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2357af93d2bc23b45e07dd7514b7854e22dcfac12c0dedb5fb5ab968b10b9404", + "regex": "(?i)^https?\\:\\/\\/hathethatheki\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "eba9d56a267aee18c022c107ab6a37f7907d9520a68db0b1f2a51a42eca8a63f", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "87deedb4b78ad4ea8e96777ff307c92afed3749fe3f771acb0418f8edcb82187", + "regex": "(?i)^https?\\:\\/\\/appc45h\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4da803c85421d66db4eec1caf8294d7b591671d6087a6a7f6f68a0399095cb6c", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmua1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%2F$" + }, + { + "hash": "c889008b961041651c585c1824375cc2b21f999d10b0b28b9728d1070dbaaaa8", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "97978dcaf4374986b4a45b619e4b6554e4e04c1e7451e8c21803ee8dc22180e1", + "regex": "(?i)^https?\\:\\/\\/fegaqgeaq\\-gaq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b8aba313e03c1634869b2b408d205c92fb52bac859e67dbb970d5037265e9be0", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a2ff67addf774cc5e266b273559d7656222f85fb363b52b098749aae31ccaa2e", + "regex": "(?i)^https?\\:\\/\\/mail\\-105717\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c13341175a8e68a0499e0f8b94427bf97075f21ce65d3c45e3444a3b68faabc3", + "regex": "(?i)^https?\\:\\/\\/tafawglkaw2\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a49f99a1de9aff1000e4d80af22b7994dc246244d4bc4b1a0a1a9ed41542f1f7", + "regex": "(?i)^https?\\:\\/\\/bloxmaxim\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3171c2502b355053fda5fc0a78a8e2c52995936734fd56de270a3657ae8f358c", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bd2af905928fbd6db5f88456c49f33c203af0243936c0946961c7478550878d0", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "76de46ae3904ee67d2ae6e7580a4bbc129e3aeb8a9cfd6bacb217fa6dd31cf0f", + "regex": "(?i)^https?\\:\\/\\/aqevdqadv\\-qaedv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8b87d4cea9391cd73030a820e2a3a30df9b0abd42d5017a452d2bee122daa0b7", + "regex": "(?i)^https?\\:\\/\\/maksdwk2ks\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "05e2c75216534c3c7a7f8f3733e6c598c459d89db23cb11ca234deb0ccc0b088", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "68deda9eefdaae2e044085364062b4d5f3dbd281447eefcfb4504fe4b5949131", + "regex": "(?i)^https?\\:\\/\\/evilklnlog\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6b423f14021e3d15ca95c41427ae33767253946aba4dff4c9f98be23a43e52bd", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "552c7358d84e40640800fe1ea1f7856e90d397bd9a778d6eace56b84c9c2ac72", + "regex": "(?i)^https?\\:\\/\\/bloxmaxim\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "91026f9766b0c04233d4411435c8f03c1b9fcc4473e88d0388ae53ec13018f37", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "19a0e8635154d49e689b2db473383d578e911a7f7d80e0f49eff977529ce3f6f", + "regex": "(?i)^https?\\:\\/\\/maksdwk2ks\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fd659662babd58cf5666e6287874ce002951c08238ced13832bae9140f1a448c", + "regex": "(?i)^https?\\:\\/\\/aevaq\\-fqaef\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c4cafe8bf4a62378c95cd0d6860c741222013375976433b7bef35e4bb50068db", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8987c029400f8f4a9d723bcc342b4f1ecd0f5cd1ebbd3edef713cfd72a1e830a", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "401e8fea1edbdd1e2b496e45b25159d00d919a76581fc9678153513b093a9d2d", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d09e5caf9115d2835fa9cf2459650706d96cb61db67652708e017fe625d16698", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8809c29ebd89a790415a7387f6f22dddbee13c2a8e76f510459343bc1761fb7e", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "257c633a6c0376324986082e782bdcdabfef31b80657d12013d7f16effb69f53", + "regex": "(?i)^https?\\:\\/\\/qwgirlmy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6422e2d7fce6c85a1e0d0d1a075cf08eeef3ae75afac001baf981132a77afc3c", + "regex": "(?i)^https?\\:\\/\\/hjdsfh2s\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "226a6abf1c6815642c94102ef0aa28e2a700a425343b18ffd1c9d5bb1235b7d6", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "185b4df8034562b6913dbdb77f5c19fa37a4ff314cf1388776e0f5d37327de81", + "regex": "(?i)^https?\\:\\/\\/brandholow\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3023659f68479dd43321b6f5a632d453793a596b588fb679f8f479816954ed14", + "regex": "(?i)^https?\\:\\/\\/czeaqeaqzcv\\-aeq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e1080a96b2b9af6419a1ccfa2b5e2f01a899898b4b3357d2ceeeb0ca476d526a", + "regex": "(?i)^https?\\:\\/\\/deaqfqaf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "10a4a1db925521a33a2c7148de882ad2f9c52774e4d5bc743aedc28da6c136d3", + "regex": "(?i)^https?\\:\\/\\/sajuuhjsdndjsak\\-09283\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c14ac699c325ae311353af39c9f8406d3c4206cb8a7734f18cf97cd9be85cd22", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8c4d533da021dcd65442d03c5a1e44afa69f1bc7254e4b4cba1bb289eb5cc940", + "regex": "(?i)^https?\\:\\/\\/aqveaqv\\-aeqv\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7ddab69935ae0b324cf44a4036f7d563fb8dfd79725ce9c00a496fe763011230", + "regex": "(?i)^https?\\:\\/\\/bloxmaxim\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "12e15d48a22ed58ba31aa1aa8da668bb02ed3ba1e9288d2e79b55dbbe042dd4e", + "regex": "(?i)^https?\\:\\/\\/czeaqeaqzcv\\-aeq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e6da43a1f7d83a9b784c1baa8db539da9f2aa795f5c3dc5a8293311bfa4972d4", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9c6af5faf73e3bff85721426b8c44676cf7cd22b181ca034797fabdddb83056d", + "regex": "(?i)^https?\\:\\/\\/acaeq\\-feaqf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b7706fe53774f851ed029c9762626e2e2a22b2691e65237d03c8cae03d501368", + "regex": "(?i)^https?\\:\\/\\/aqevdqadv\\-qaedv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "96223c5b0daabe8f2a9ae7eb648737f2aea8efee3a5117da3b007bdfca6dfc63", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "70bcfa0fe325547bc4422a65d6cbd35ef66aa986960a7436c08ecebb68bfc1c3", + "regex": "(?i)^https?\\:\\/\\/vaqevaq\\-ev\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "22e2552d797e002812859084a6f54485079e33b6f3e9d8258b1af59e465df80a", + "regex": "(?i)^https?\\:\\/\\/bandgiho\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "069d75fa619cf68099b0aada0e54a326ad91ad6f622c678130800c541b0d7cc8", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "59bddfcb6b3a64b525e867d43c7b88780daf117c71d526afadd15fe7b583adce", + "regex": "(?i)^https?\\:\\/\\/paypal95bd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b0fee5f2ddfac11c33a0d7f18fe81860fc867befc15dec8c211a40ac10da1422", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a061144b1e82d440f96c2b3694b7ae66b096328001a312578e5a94862f98aee4", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "721f366549a5101dbaee7bca3f3496d314079ec4699171f977c2e506af7115dd", + "regex": "(?i)^https?\\:\\/\\/tanarpbia\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a82fcbf90b4ec0c171fdb5c400facf07623845ccbb7877509da50bdd31e94519", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bd147bb4c2b5db3857463122f6d47a981643d3067bcebe5fda53118ea91db6b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+antib0t1[\\/\\\\]+antib0t[\\/\\\\]+SWASPY8Y3OPSBK488TG45BPSOVY27T5IS7528697T286647SHD27[\\/\\\\]+antib0t\\-0tos[\\/\\\\]+SWASPY8Y3OPSBK488TG45BPSOVY27T5IS7528697T286647SHD27df[\\/\\\\]+addrdhl\\.html" + }, + { + "hash": "f7892ec250529a97853be9f3a26b3cbac7a8aae84e8dd41831b4caba0b6bde69", + "regex": "(?i)^https?\\:\\/\\/evilmoazaz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ed92e01d56cf7daa2548e93841da63c9b636e2e2d389ab1910789f055e6f086f", + "regex": "(?i)^https?\\:\\/\\/fromwhilos\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "abaf32859e642bc809857d25b06096dbe884ce95d5c7283b7f52450ceb7e7ceb", + "regex": "(?i)^https?\\:\\/\\/getnfobox\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3b19f32c7c58f6c5441d89831bc754cf8925ef9de50e4759bcfe7fbaf08d9d0e", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5b5eefa24057f5c8461ec037dd747698fbded7ac96067b16daae8963146dc952", + "regex": "(?i)^https?\\:\\/\\/ceaqvaeq\\-rv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "87231e9a0c93f5777df67c36f56ad1b7730bc91dabdd1a29af674339af148784", + "regex": "(?i)^https?\\:\\/\\/robiocna\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "aa87ea3afde7ec8025d182ffeb5c36fd57f7630702a061d1139d284a1e29adb6", + "regex": "(?i)^https?\\:\\/\\/evilklnlog\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8e7fcfc64c29281577e1831811c1583c98e080544bcf69484a6d221368c79eb3", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cfae88b49893027653c1ae3eb4fa7b056ff98a79fda3894397abc02de802b160", + "regex": "(?i)^https?\\:\\/\\/asad123as\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "df75ece18197a077d8cd2471f1722aef9fba85a2f31fbe2f88ff692a597deddd", + "regex": "(?i)^https?\\:\\/\\/5fgfgg4g44g4h\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a6aaf553c524ad848ae56bc2fb77497f803ad955e9fdc2de5e1d3a51c401a88c", + "regex": "(?i)^https?\\:\\/\\/garenafreefirenewevnfree\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "37f26636f67121893d349bcf054424a0cc1d375eb74c620f7b9e5a7c18e2e8f2", + "regex": "(?i)^https?\\:\\/\\/tafawglkaw2\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9beeee44f70873969da973453492fcc0b1af78709e27772d8964edd744c77277", + "regex": "(?i)^https?\\:\\/\\/dzqaegaq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b584b7b796ee5a72dd9855efba8ef34072f594ea5cf202f0dbc03005be5dbe14", + "regex": "(?i)^https?\\:\\/\\/danharmbsz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b2b13d4bce461e363a2fc862b0c579f21d66009aff6ae98c2f00024d0b2c22bd", + "regex": "(?i)^https?\\:\\/\\/czaq\\-xcaqaz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "96879f0ea0f251180e387391c3c37d831674d583bf1b55ee6faf40bad0a28d71", + "regex": "(?i)^https?\\:\\/\\/geaqg\\-aqegvaqe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a1944ba71883e0d6a1b07841b883b261c900b4bf80c288dadce40d754946f05d", + "regex": "(?i)^https?\\:\\/\\/getnfobox\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e1a3880abab6e83260a0db49c56acd1b06d76a39e70e1ee33095555e35d7afa6", + "regex": "(?i)^https?\\:\\/\\/fegaqgeaq\\-gaq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3618d409137209e9d8adc694af6aea8a1670844bd98c804cbe8ed6f2390ffde2", + "regex": "(?i)^https?\\:\\/\\/ceaqvaeq\\-rv\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2821a13588dc80c428e899d2063cb67bbe84edefa2c3d67f14ccb8ec7bcf1ff1", + "regex": "(?i)^https?\\:\\/\\/feag\\-aqegaeq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5534c09cca5dd3273bd097ff7a726faf5d04772f7b22a903d54c18b6266b0bb6", + "regex": "(?i)^https?\\:\\/\\/daneviolio\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3cb326e20f590f06e93fa779966edaeea3c649c9d1c52db92586eb256e64491d", + "regex": "(?i)^https?\\:\\/\\/biglopezlop\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "37654606bb6bb43fc891d5e58fb39399653f636ebd891acf6c7be7e5530f29df", + "regex": "(?i)^https?\\:\\/\\/bandgiho\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "833b8f596d247a787366317ae3a65d72a0d178be298e01b14690724dcf9ad594", + "regex": "(?i)^https?\\:\\/\\/acaeq\\-feaqf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fbc1d278079e359b846f6522bbe985721f0d515f626067eab33cdc031c9f737b", + "regex": "(?i)^https?\\:\\/\\/pub\\-559eefbb82714caeb94874a43dd977ad\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "13793afeb0473ec97b681909ddd99577ae80247731f23ea5c0f171959210b572", + "regex": "(?i)^https?\\:\\/\\/danoloeaz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6c6157d99d5cd74bf1c3bf2d096cfa4e67dfe5f17d5eccc3ea1a5d50dbeb5576", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "52c211a7bcf9e51e3f381c780ed06e273905b62fede78f3ff35b251ab84bfbe3", + "regex": "(?i)^https?\\:\\/\\/lightcaster\\-sunrunner\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245be8cd5\\-aa04e871\\-ad11\\-4263\\-a8b9\\-b8e96ccac0a5\\-000000[\\/\\\\]+3TSfGILgJ4LXU0lirkAQsuwI_44\\=394(?:\\?|$)" + }, + { + "hash": "aa61893762cf85e08d27f5982d7b5886977573b7a73f7525e06639553a1d0401", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e8fc9c8c6200c1024f73dfa3c871a5de3aab372eb6720ca660a4ee51f7e1ce7f", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "be0d3bad7b45f32cb04fb7795006ff79c4411aefe3d77ce5731b175cb0723cb4", + "regex": "(?i)^https?\\:\\/\\/stormwalker\\-thunderseeker\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bab3b42601205f3083e62da0b22399388e4684b8ebc60b5527f1783fb01f73da", + "regex": "." + }, + { + "hash": "27d3bbfdc93593a7bd7c84d0e707461a9cc3420bfb001e945eca0f75ccedaa3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "86f68aad0504cdf77ae9703ce59930574f5b4581879ee2d8130339afdda23e6d", + "regex": "." + }, + { + "hash": "4d22673aa4ab0d0df0ddd7f37e909dabf1409e04a5aa789945cb1a101b0542bc", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1c84c56396a35248666c8e6ce6446f9a7e5281d24100e24372a43f509e2bb199", + "regex": "." + }, + { + "hash": "c79a4df72fa064bbae7c4009fb0a12b14801cc8af76269fcf9e9b9b8aa52650a", + "regex": "." + }, + { + "hash": "4478c02145d3536d73842a710e15f6e480e7fce8af77c9e976cdf2206ab6343a", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f99fd239512ec21c242434da1a6b7688e144ffbd802b3821e70d2b103fbbd51b", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "19628c77e62da8e43a21564842f562a7fd60a74d544532ee1cea07732031b374", + "regex": "(?i)^https?\\:\\/\\/mail\\-106357\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0e5e98dc0d097702ced674685fb6f86cb873a0804e47c9486ffaac7f624aa582", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9a2a3035ce4edb3103fb6305fbbe9e07bd1f39b46be68db7f778ed84c4b131d4", + "regex": "(?i)^https?\\:\\/\\/mysadm2s\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "106987063213d21d382dffd03d3cdec96cd89a21c187de484bf9b4f64a3e33a5", + "regex": "(?i)^https?\\:\\/\\/lightcaster\\-sunrunner\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cf27e82d960b11abf809a28d6a06c3a035de16468d6057ef5f3835019dffc81d", + "regex": "(?i)^https?\\:\\/\\/lightcaster\\-sunrunner\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ca8e1e05d82ee7fe4e83c563dc9f93a3398ce69302611cb2b3c9f00d5ce4e4e7", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "eee4956e3edad2fc6c8884d08ebdc45a9e149d0b5f68a2205282ccc7399053f8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3ea672a686be458a94fca8b41dbd82a710ecf18e5335154fffd1a0c9dd9c7697", + "regex": "(?i)^https?\\:\\/\\/firestrider\\-embertrackere\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0ef4ea950530f2506ed1dc8ced90920de6d0f10e898836b386ffb52e517330a5", + "regex": "(?i)^https?\\:\\/\\/najdnj2s2\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245be8cd5\\-aa04e871\\-ad11\\-4263\\-a8b9\\-b8e96ccac0a5\\-000000[\\/\\\\]+o8T7zCL1pjVSIzdL1eIcsUJzTok\\=394(?:\\?|$)" + }, + { + "hash": "ff05fd40c4f9db4dd2d46c5bc3d6ea720598d5b295a0c2c66540d607f93e4c50", + "regex": "(?i)^https?\\:\\/\\/najdnj2s2\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f12830ebf601cf1d5bce7b6ed04e9fb134f53bf8f451b7a51f2244ff1327ca04", + "regex": "(?i)^https?\\:\\/\\/www\\.dev247\\-sca\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "beaa1f442fa81015cab4b553a2875b51053a8533e71b947f922c78fde8b7a92f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "19e4a3c26097ef267e12b7a254bc2a4fb4490f0e603c45ea61df6617cbf4c231", + "regex": "." + }, + { + "hash": "d4f636b4b0b597356b920c70fa4a0c487472f6311281c581a8d58d566fc23d3f", + "regex": "(?i)^https?\\:\\/\\/mysadm2s\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1c7c8fe7e685b64ffc14125e14a381450695e2ead524ecfb4e5504a930b92928", + "regex": "." + }, + { + "hash": "7d87d702b9a05aa7e08c9710ba7e5bfc15e8fa91aadb0b2d8e78269ae23ce0e3", + "regex": "(?i)^https?\\:\\/\\/lightcaster\\-sunrunner\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1e62a9eaaf8b059cb2b2d0341650b8225dbda2d9adc00446a6bc6674dd4267eb", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f6588172a093fa4b5a1060d09653376147a8e69d2733282b669433b5977be28f", + "regex": "(?i)^https?\\:\\/\\/moonseeker\\-startracker\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6ec66dcdb55081a8890941de79b95373e136776507554ea6db422b858ebf44ef", + "regex": "(?i)^https?\\:\\/\\/czz\\.0eb\\.myftpupload\\.com(?:\\:(?:80|443))?[\\/\\\\]+dgt" + }, + { + "hash": "1a8a812148c3a6d6ecdf1455190f98ab521c793c30a5da7cc8e11d791e901864", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8359268dfedf951fc9fbb0c044a5d5c1dfa26eba1f750cbc8fbba70649adc2a2", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f90eaf96689f9fcb19bea5502a81947124eedf081efab753cf007e0a272c6b2b", + "regex": "(?i)^https?\\:\\/\\/mysadm2s\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7005d0be2feca61bf570481bb314db367890e3d381223557c65a5008f6aa7718", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "81439ab6f71f232e699fcf84594feeb541695f42bd81661826e88588d6647fa9", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e391a4aa18c68a42972c0b54147bfae3ccadfe5f7b23e75272ef5d140db66b69", + "regex": "(?i)^https?\\:\\/\\/danoloeaz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "686e2ca1640b005aa8e876d55cacd34bf98e429085b773763bc8b2243e1a929a", + "regex": "(?i)^https?\\:\\/\\/robux\\-4rewards\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b5994d231fd58752c98dbf2709a7ef5939ce1de0a7360142f9a13b5506a2d6db", + "regex": "(?i)^https?\\:\\/\\/robux\\-4rewards\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c8e43526f232407689e45b4a31ce1c58088f6fa2cab860161cd68400853cf539", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bce8f8435f4c8f4340572703a753828ddbb758728341fe837e4d07c7708ab46f", + "regex": "." + }, + { + "hash": "5a3c8b74381737074a68447dd448b1e21faf7a156feeb7cee047441712cf873c", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457522a2\\-be760a23\\-661c\\-4e19\\-ba7c\\-2af42ea03abd\\-000000[\\/\\\\]+9HDLyDciMU7Zj9XztWOG4z0E5pY\\=394(?:\\?|$)" + }, + { + "hash": "1b8962acdeb12029c7f56cc9c72098564c532ce43f25ad75d1d0452031d1af26", + "regex": "." + }, + { + "hash": "ecd48092692814267651a3dfd3aeb84413ce9478d448c40f6a6b6bb606ccc31b", + "regex": "(?i)^https?\\:\\/\\/stormwalker\\-thunderseeker\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ae940e977c385af1331d8d88d87bd1f5482daea924686d9fa1303333bb8b54ad", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e73a843978ff773ffb9a18298a92508ddf8d2a3fb1bfdcf4274e0de06228bdaa", + "regex": "(?i)^https?\\:\\/\\/track\\-number\\.org(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "63fca0aa251d70230653da46528e5c7a63d7f2d5c48845fe59c5fe0c02a97aac", + "regex": "(?i)^https?\\:\\/\\/danoloeaz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a52b3a64ed726f6c33514a09d1ef29b1ebe5a3ae1b76d765c24c53a8f9636", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r[\\/\\\\]*\\?id\\=h57e28f2\\,91200ee\\,912221e\\&e\\=b2NpZD1jbW1nZzUxYWlnaSZwMT1AN2lPLVN5OFVFSFdiTTZWbFhDaXRQVVU5M1NFcVduTEdUa0l4N29nbzRoSjRKYngwam1tU0dHRUFGd3JJbWV2ZFExVFRoTHE3b2piZDhSTWQ5M25NRURNUlRYT3IzUndUOGZxVWl4NUc4MHJBd08zWA\\&s\\=W6FUqSLMpYXi\\-HQI6ykRjMytF6hjFiFD9DmJZ22GYU0$" + }, + { + "hash": "9efb2d8a8d070a1689cb2b8ed3edf12eaf60fe430bf922ae69b37204497b069c", + "regex": "(?i)^https?\\:\\/\\/moonseeker\\-startracker\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "47718a4d7cf5b5ce6af05e4227197cccf30399fdf6c3ffa99585fbcddb7fc1b0", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b8352b5330598577ebca8acc5a9c618e553787365ed1f2e0b6b9bafb440b0d14", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d76df6cfb8e0584a69524c4e0627ea89b173484aa8cc0398f4ae50c1d086ebb8", + "regex": "." + }, + { + "hash": "21f72ada6850591cdc191cec41738417cb05bc896fd80bba7e3f085e492d4285", + "regex": "(?i)^https?\\:\\/\\/najdnj2s2\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "702d38819b0fd22fbe2ec96924a6cd7e07326b8a63fa814372c9b0a21bbf3bd0", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c1330934874700a323ff576b41cf0f9c2a6eafd47645f7d32cee877cfc75c082", + "regex": "(?i)^https?\\:\\/\\/lightcaster\\-sunrunner\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1f219d360365e629887a082f105ac3e6c7022e9a3ba6c47d359198bc72fdce79", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "56fd532292ab744d5b0c0591e69edf07fd681d275299f2e958b86b940489d518", + "regex": "(?i)^https?\\:\\/\\/firestrider\\-embertrackere\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6052a81a8ce25549de5e1dd31b055232b72bbcd0632579b85c1a8f133225e52f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "df506eb4fc9465c111813a9592fa8d2350a13be43ed057d5584ef3b454573985", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cc4e19d56f84cf01cc06e8ca8c55c127449fd8cb88f37d0b17a8ae8438c47321", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0464b5579042628be9412da7aaf7a4482def6fcfc1ded9860aaa70bc12b35ac6", + "regex": "." + }, + { + "hash": "758ffcabb21c1d91acb48e0f04a382a7289dd32e3f8e437e042196414aa44bd8", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "36412928444c514c2ae0eb2a4806dc5dcdd6de6991b62539d3f90e03bb159138", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0ca9a9e2ea8ef0fabc5a15840fd7e07a9d06d5b53b890c4bf8e7fb78e3026", + "regex": "(?i)^https?\\:\\/\\/31648619846\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "50b22a09a5081d7d53731b65f4b6fedb7cc36238773b0eeda8de3f7bf862b97a", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "66ee66d5364f7b723db8a643237fd7fafa7d5a17b06477f853e64574c44f14f9", + "regex": "(?i)^https?\\:\\/\\/mysadm2s\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "852fb1680ff8ab54f02be5527640a53ce871798c70ce0be6bf31a168d44f3590", + "regex": "(?i)^https?\\:\\/\\/mysadm2s\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f87c9f6742ab197aaa2ab4f473ed32713f94a280f02714ff8cf32771afb37516", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5dd2fb8786ba9d89bb88b94a01440d941b8d7561f7dd36206cfcd31064386d39", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457522a2\\-be760a23\\-661c\\-4e19\\-ba7c\\-2af42ea03abd\\-000000[\\/\\\\]+xFJ8yEmYW5HxgpyjKJw0pNAYasM\\=394(?:\\?|$)" + }, + { + "hash": "6b0f3324a8f595498962642ec0f7c890c625ba0fc4bab5a81bdcfd266462b81d", + "regex": "(?i)^https?\\:\\/\\/danoloeaz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "27d3bbfdc93593a7bd7c84d0e707461a9cc3420bfb001e945eca0f75ccedaa3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cd74d4d811a2b2b0e4313fb203b9e47bff85ac97768e54303de6687ed65f04a6", + "regex": "(?i)^https?\\:\\/\\/stormwalker\\-thunderseeker\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7263ac6e00234cb1e37aa0043824f60e0f50db863db645339d9c9f91e178a7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+impact\\?impact\\=a\\.\\*\\*\\@o\\.\\.\\.\\.\\*\\*\\.com$" + }, + { + "hash": "9e3e5afaa59ecaaf5f9d6f8c22741ff379ebf0231af4e16e2fef9378f5b6b840", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dc1a3861f1fc6c338016eef30b453914b333a23d1c3c942637531ad5a22331e8", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8c36ee64fe178d980c6437ecb3c381abdb61907a0220d007a944a3fc308ed499", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "54f41fd773a1c76a18be6b08c7bc5728907f2038b558abf957017053f4eeccfd", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "81e4173efd5f51c41c68a9b7854c4845d0bab7d87dee63f7f962c39944efab7c", + "regex": "(?i)^https?\\:\\/\\/moonseeker\\-startracker\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1231079f4055008ba4255c81a13bc049627abd70fb154f98292ee7aa9dc7a46d", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "602b84904fc8437e2d9fbb69f6091e8a2755874928d9d94ecfc73f45b5ba8c08", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a7c6a9a4a72332b481287db97ed8f742d12e3a30d8f346a58ea3a844443456b5", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a54c5adc6839c12a1778ef2a3af51510c5c379790bfbb07b518e2014b5e084da", + "regex": "." + }, + { + "hash": "9d2195a5680007fcf2c047ceb2d4b1dab767d236e3c8a34d38766e5f6fe5182c", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4dfbedfe7e1050a751d8000220fa4cc21dfcec0a1e22b4d6a1731fe68da152ea", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1a9ad1a0f9c2effe83988a4b83189f680b293f9a889e9ea1a0ca317855c11108", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0684526446ebb90b72847eccf152d0d9f163f52c453a0b776bb6fc00e8438f1f", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "282a55d373cda33c75c3ae9716eeeca75825243376afeedf7e8165af6f7d0ad2", + "regex": "(?i)^https?\\:\\/\\/moonseeker\\-startracker\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "99355bf5f86778c281a4b376530bf9f6c8eb868b981cab836719716777afbfc8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6dda72e12095dad64b86d8a22c987c2c1337441a5870db260e09128ed6b7e4db", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5ee0d07597286ae485a29dd9140dcc3a1b48341eb735b839f6ff41edfc9451eb", + "regex": "(?i)^https?\\:\\/\\/31648619846\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "833178d1d63c7aaf6449d8cfbefba4b7d5d319eca8dd97807ffe99256b0d20f0", + "regex": "(?i)^https?\\:\\/\\/firestrider\\-embertrackere\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "41417640d281eb453d9dee027df0d53143fdcd33e367047b5e8a9ed6abc494a6", + "regex": "(?i)^https?\\:\\/\\/firestrider\\-embertrackere\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "845dad42b98ceec377787cdd027281cbd9b11dd2176447ba6221a7c6777551ec", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "14ab14cbfc8a575118c3b7a816636e449f2347cd3940f4d31b87bfc247686fb9", + "regex": "(?i)^https?\\:\\/\\/31648619846\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1942bcb04122b8e02fe314ebb0aa8c9033193ecac9a6559fc592872c1a47aef3", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3f64f34ddb60e21add7d9dc615d90570a519ba7d07f865d3c64aa8671825a3a0", + "regex": "." + }, + { + "hash": "c2083ebf0a8225ee65ee1c12994a2921962eeb3d4ea563809abeb31d89c90588", + "regex": "(?i)^https?\\:\\/\\/abdullahjim29\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2930eaf0aaf819253fd98e43f785cf7be924acd232822fbbc235d0262a00f2b4", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "252c81d18e96212ef346af0166282f6f2c53d27f5a01f4fecd6be9e19af196a8", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "74ef822f4dcaa55be8251177fe4ad06df05277f313e014389cba2a3f3f5558d0", + "regex": "(?i)^https?\\:\\/\\/mail\\-103284\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "95c79b835c241fddbbcac7e7c40ed7eb8b2d53375f71767297ad102612ca8374", + "regex": "." + }, + { + "hash": "347ed2ab890e1745dd91948881998ec3e688c3a3f3cb1445936fee79c9e73f19", + "regex": "." + }, + { + "hash": "cdee84ee4504a6e708ac6ab45746f9c0847a3fac6b4ead9eb7bc1e1c6e2eb204", + "regex": "(?i)^https?\\:\\/\\/moonseeker\\-startracker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "beaa1f442fa81015cab4b553a2875b51053a8533e71b947f922c78fde8b7a92f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register79428(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3033e588988c17b116ea739bf04c599a4f23bd65ef54459ac81ccec9cb041de8", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "70b0d184439839e87ec9229dd10e0d653fd6bf1b32656ef24629e29c34907ea3", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d0dd6dacb3a1bc147533de3d21ed1bc9c5dc022bbacc8bc6669367f771b45910", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b246a9314251939a92851093f87773dee22bd37d98eed0f92a51af19ddd95478", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d8d695bd21a222fb280d503e8ea407da048a64a12c808117eec845a871841a8c", + "regex": "(?i)^https?\\:\\/\\/moonseeker\\-startracker\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6a5fad5d3e83312d8a5b26effaa9e67e06be1df63cfbebdcafaebb89fd6758ed", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fefba5c7e3d745fc7da6e7c9777d06a4f43fd6d67add47d9563b244b9a28313a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "26006704371a9663cf8bd92a2eb8bb37529d6908f89717352a2344157bde5cf5", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "71293f261deed591a3f88071638bca3f66ca2252510f201c69bbefda83651b98", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3f53ebf308e7f9051038547dc0455046a4384ab693224b9791a88e27f0dbb258", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "82c0b02bfe7ad3fd4df89a5c767d0295092bb93f4972367ba681eef539844c5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+data[\\/\\\\]+6338574255[\\/\\\\]+payment[\\/\\\\]+2dc18a7V[\\/\\\\]+Mellat\\.php(?:\\?|$)" + }, + { + "hash": "dd878afa50b7df1772edf68d04e2c9c42f4103541e0cf20da306e7a7a803f2b7", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d7d074bb99aa156a174e761e041181d61de4fc57fbc0d2ed9b0a834b9e9e9205", + "regex": "." + }, + { + "hash": "59d8117541e29102e456c5640b126d80975bbcf6e9eaeb94e7db60f1d793edf0", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5a31b41c74eb2160f6524f1f3039548dbe7f9d44a0b0d596ad7475b29f9ab62d", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e3bbea796e419d9c4388d689a85c53d3924fc37b8b1d73085f38e3b9f0ae41c8", + "regex": "(?i)^https?\\:\\/\\/mysadm2s\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "615320dc9d4908e522fa4d595543e685377cee8c24ca6dcbd92819dfa4889371", + "regex": "(?i)^https?\\:\\/\\/outlineremoverroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bcf2bca2b96d8271400113859b71f28daad942e9c3f1f0a327da072b688b4445", + "regex": "(?i)^https?\\:\\/\\/firestrider\\-embertrackere\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "919dbe33a62595356a1bf3845e13f0fd52a9163edb35e6ec7a07a0c9563526bb", + "regex": "(?i)^https?\\:\\/\\/31648619846\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a8df1c60b22369cc480535aa0c2d1f655e65445ce385de98cad9928188cb7d86", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "334b1209f1d7cc4203d7df9b5749e4f932aa3cd1255ce7eee2766650a1b13bfc", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f2a1af41aaff697d4c288b41cd05934f9b9f08593efecc4840689b91411e9bce", + "regex": "(?i)^https?\\:\\/\\/danoloeaz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a465d1048db6a80ddd958718b9c82640d3b4304317349df9bd94534c0b6b3edc", + "regex": "(?i)^https?\\:\\/\\/danoloeaz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fb52523952e2a630fe242234845d40c4e147926b676ce3e11719556ce2861683", + "regex": "(?i)^https?\\:\\/\\/stormwalker\\-thunderseeker\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "718b7955fa70a495ddbd61256935587afb260f4d925d6dcb40682d192d128b5f", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1b32dd79d8cfe2e5d40e94e8dde07053fb9508b617a5d42d81e1aa76d1c97d6c", + "regex": "." + }, + { + "hash": "8333e6418bc670d8b127a20f852b52e6de9d9c7c02ef1a1354ff8aa9ca3fc483", + "regex": "(?i)^https?\\:\\/\\/lightcaster\\-sunrunner\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b5d5452fc365236266d5adfc9458315ff0233eabb7a69be1f331954293686840", + "regex": "(?i)^https?\\:\\/\\/31648619846\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2306c0a32ae961b5f20d3fa9f2c796ee67ee8dd68de8a49293c1a75eb20546bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e9fe6d99b71a593c508abecb8fab54809d9483b6decfd5c6f9bc157d5f1505ef", + "regex": "(?i)^https?\\:\\/\\/robux\\-4rewards\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "beaa1f442fa81015cab4b553a2875b51053a8533e71b947f922c78fde8b7a92f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "e315a86113f5f54ea3baafcf6966c38c8cfa02554e787db55775424fb0a99618", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b20dbb4eac68ef10b374d6971dfc8e018df82f0cc07d1436db913a5782f4766f", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bfdd47fabf6b073526be89f8ccf1137a7f8d17ef4821ad29bf7b3d7cd38ab804", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bb99f41325cce986e9d05ae50b9f4d1e5b41704dea15b27c220c6b35cfcdf0c7", + "regex": "(?i)^https?\\:\\/\\/31648619846\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9a0b24bfa867c451f77efc43238715676bb1435ea6aefab71f0bd1610cf043cc", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1a583c2857e057f15bf585c77c6ebf928e6573424295f9b4637022653b2e46cb", + "regex": "(?i)^https?\\:\\/\\/lightcaster\\-sunrunner\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a52b3a64ed726f6c33514a09d1ef29b1ebe5a3ae1b76d765c24c53a8f9636", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rest[\\/\\\\]+head[\\/\\\\]+mirrorPage[\\/\\\\]+\\@7iO\\-Sy8UEHWbM6VlXCitPUU93SEqWnLGTkIx7ogo4hJ4Jbx0jmmSGGEAFwrImevdQ1TThLq7ojbd8RMd93nMEDMRTXOr3RwT8fqUix5G80rAwO3X\\.html\\?ocid\\=cmmgg51aigi$" + }, + { + "hash": "a23801f02b3833bb7d98a317b17a40b32dfddf6a74210d6eeb475fb76dfd255b", + "regex": "(?i)^https?\\:\\/\\/firestrider\\-embertrackere\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "77e92eb84f9010e16e2e047e8b69b9d8d9b40d7c2ee194b53b952e13900f424e", + "regex": "(?i)^https?\\:\\/\\/robux\\-4rewards\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3160faf248f8cfcce112363759538a7230707af9b206ada76b9a9571cacc0316", + "regex": "(?i)^https?\\:\\/\\/junocom\\-100552\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8f22a8a939f3446b1df33717e055e01179f6561d1644cd04401f8115972e5032", + "regex": "(?i)^https?\\:\\/\\/stormwalker\\-thunderseeker\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7f9dbc1914fed7b1c0841257d84ffa442f5565caa3e60771407380b594248d5a", + "regex": "(?i)^https?\\:\\/\\/najdnj2s2\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "036172c6ac08d0f064c49f4739c0b79476ba0e872c1f9298bead2f1bbeee6cd8", + "regex": "(?i)^https?\\:\\/\\/stormwalker\\-thunderseeker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "310f95e43f06de5a0278d32a5daa3364505ff1c1c381492f795f49d378affe80", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8d1735c0988cdb0d69ae4eadcae969bfcf684948243cc0df47c17da25691dc3f", + "regex": "(?i)^https?\\:\\/\\/najdnj2s2\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5fe54875c2b83dcc7a0a375cb2696849056b0efb1b9c54dac3e66a0b690035da", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "515d7a249303a2e2ba63deaef7e10ed031c0ee6d00a611c7286c182a4286ec12", + "regex": "(?i)^https?\\:\\/\\/moonseeker\\-startracker\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d342e4019968b5901777f101a642f2a80d95d72c0dcbafef97f4feb7289d81a2", + "regex": "(?i)^https?\\:\\/\\/firestrider\\-embertrackere\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "460d2448a80bdf27fdb07acc43932ac61af9bb9dfbe3690b79390f25507fbecd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r[\\/\\\\]*\\?id\\=h57e28f2\\,91200ee\\,912221e\\&e\\=b2NpZD1jbW1nZzUxYWlnaSZwMT1AN2lPLVN5OFVFSFdiTTZWbFhDaXRQVVU5M1NFcVduTEdUa0l4N29nbzRoSjRKYngwam1tU0dHRUFGd3JJbWV2ZFExVFRoTHE3b2piZDhSTWQ5M25NRURNUlRYT3IzUndUOGZxVWl4NUc4MHJBd08zWA\\&s\\=W6FUqSLMpYXi\\-HQI6ykRjMytF6hjFiFD9DmJZ22GYU0$" + }, + { + "hash": "df3a73c88b3cc96cc8c19ead0adfcff9eafc3fafa03bd3b407d713ce8798babd", + "regex": "." + }, + { + "hash": "8ea51c862fd4e80ca99fc0bf049601c5368c61550df3152cce72c1c598875ac8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5ed21ff16cac15097d7189a73149c8e7a006b8063499ce3aa949c19c7a75f7f6", + "regex": "(?i)^https?\\:\\/\\/firestrider\\-embertrackere\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a0262aed0125475af206c5dd323b804c6746a0b0896f60d69dbad88e1654b", + "regex": "(?i)^https?\\:\\/\\/moonseeker\\-startracker\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c2e8e3a01bab8a438680556912c08c8d365b9d9e1e6bdfab0dfe6d34d981f913", + "regex": "(?i)^https?\\:\\/\\/danoloeaz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b5915b4d6ee83d38608d6581cb8ad1a9893e6ce13a80568a9df05d63da00cb24", + "regex": "." + }, + { + "hash": "97667545ba7f358f6edd7486fbaa484e9008f09d8f4f1ff4516025bbf7ca56da", + "regex": "(?i)^https?\\:\\/\\/lightcaster\\-sunrunner\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eae1b4e0869d1e5d1dc3ca818334a59a27ccdf051029c4b10fba5d35da1f0435", + "regex": "(?i)^https?\\:\\/\\/robux\\-4rewards\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dc48f627055fd18ac533d6895cc2b00f90f8c92b779109683625427604b165ad", + "regex": "(?i)^https?\\:\\/\\/danoloeaz\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "641dede70989a28cb236a9e5df6a668221cf29476faeb4d4af8e44063e12a6d1", + "regex": "." + }, + { + "hash": "761266818e51851aa0f8fb26fc4f05188004005640af9f8829bc77d5f56cda0a", + "regex": "(?i)^https?\\:\\/\\/31648619846\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a6e31deb6f4991f0977e3a820a0c55200d47cb141ada79dee36475c477db3db5", + "regex": "(?i)^https?\\:\\/\\/stormbringer\\-thunderhunter\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b34284b4e05b04829a6c8c7b8e1e3fbe1e07ecf7d00ef609c84a5709c2d72e3", + "regex": "(?i)^https?\\:\\/\\/att\\-103832\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "01e0893a251a8f8e1ab5464792350660452e11bf8689124401ef11a0c7db3111", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "aff112a076ccf84a2a8c994b33af4cfc23c56eed339355da8518a16448335596", + "regex": "(?i)^https?\\:\\/\\/lightcaster\\-sunrunner\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "47614ace10fb4592b5cbe1d8b76a71e139a94c1ebc045d9bb575460479eca394", + "regex": "(?i)^https?\\:\\/\\/juno\\-webmail\\-109944\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "beaa1f442fa81015cab4b553a2875b51053a8533e71b947f922c78fde8b7a92f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register79428(?:\\?|$)" + }, + { + "hash": "42bc073752b9c7899e501a3bc3982f7845a9b325c5da377cec4ada84d11b6c47", + "regex": "." + }, + { + "hash": "d4a49035743d5dcb6807ab0dbcce381faa888489a1febf350bb26549b89cb983", + "regex": "." + }, + { + "hash": "eecee39cb1db25498ca3ff81423d4ab6dd9984d87ff48206ff4c4087bd96d4fa", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c186484edcbb012dc8ce0b32d4e25fac06f1cad7f63565926be2031ad92e2", + "regex": "(?i)^https?\\:\\/\\/najdnj2s2\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1c72a7e54103b25f6f3b6aab1235c2c4fc3cd48462e06507fb768ca18bed1dba", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starweaver\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "63fce2162444e1d023ea21f2c403a0c16f3463a8aa53af8f91e17c74167e778e", + "regex": "(?i)^https?\\:\\/\\/mwkem2ksm\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fb527eee07ab36e475d97edc16bbc55298f5587295a222c4ba1fe3f1efdd580f", + "regex": "(?i)^https?\\:\\/\\/stormwalker\\-thunderseeker\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d1472b959657b11b11c02b8487579cfa8332c02f0dbeca93f9a1aed293b8f60c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6f626e0b46bd6ca5fb5cc7b7e2fb376a75b2f8ae9595dbc091fe8c5b1ba333ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+other[\\/\\\\]+restrictionIp(?:\\?|$)" + }, + { + "hash": "79e0ead7e621843f7e5a904bee1a38ecb799f0a35bebf4fa72a494eef395451e", + "regex": "(?i)^https?\\:\\/\\/home\\-108385\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7481b115fda09c4f4cf4256497ed6fa890887b2f60f620656c20f5b97f3f50d8", + "regex": "(?i)^https?\\:\\/\\/moonseeker\\-startracker\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5cd3ce331fc44e4710fb67f2cc59e5db652b65e742c1716f77192cef5567c005", + "regex": "(?i)^https?\\:\\/\\/mysadm2s\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3f7337b451986363c1f6031c4202e038f90092a85955a0b631fc2b384f00c129", + "regex": "(?i)^https?\\:\\/\\/jawne2jns\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cde7eaabca6adbefdfc03919121d1ff5fa72cb9680b1d04ecea1534b2cb438e2", + "regex": "(?i)^https?\\:\\/\\/robuxcardsx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e7c031dd149e27d9315681fd76fb4bc4d91dc580569a08a1204931cfac8af446", + "regex": "(?i)^https?\\:\\/\\/danoloeaz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "12804f6be2fbcf902d72911bf844654dccd5544d4fbfa15e274e892e23495e2a", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "688bc34681775001e22b0be65f72488af7fc7f87c3c48274c2f05b1829c7008b", + "regex": "(?i)^https?\\:\\/\\/robux\\-4rewards\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "236eaf853e25f76961b489e21a95201a7c440c1b3b50e6f462a079ba5e27e38f", + "regex": "(?i)^https?\\:\\/\\/flameweaver\\-emberseeker\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "586b5f6cc684476a4afc0494083709472493d6c2233d71c639099b532469c98d", + "regex": "(?i)^https?\\:\\/\\/8ztd4y2\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "a6cce38278cf64dad80468083a904e52459060cf76fa583c738a86ad5d8eef7e", + "regex": "(?i)^https?\\:\\/\\/stormwalker\\-thunderseeker\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "914315928ce0bc77bb9301860dcedd4a9f7279aa17c762b93315fe36f18c9108", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?web\\=motherboard1727193091590\\@abcain\\.com(?:\\]|\\%5d)\\.$" + }, + { + "hash": "26f00345a7e23d88f565211ecaded681b33d864952c755f9c6daded73e2fb7d6", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2f90678dc31acc49ac7e900bb2d3c5c7ab5055c558f2c14062fa255235bebd1a", + "regex": "(?i)^https?\\:\\/\\/feaqg\\-aeqh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "34f2a1d55a66a21ea036e4fcb6b25365364c3b1f335f138d553271b82f8b0101", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bdd0e433656ebee916a95ba55a6197f36acdd740c44eda923b623b09c59040e8", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "110471271cc18de88b538564e7744975d65d8696b1cf4eb7b18e15a95b42cbdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "03dfe26a49d903da1eba8fc54cf9594bba8c319a2c68299b834357d18d6e78f1", + "regex": "(?i)^https?\\:\\/\\/aqgeahqg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "26cf75fe952257bf5e84df6227d7df6e3e96872fe9189e5ef557fbc23a228df9", + "regex": "(?i)^https?\\:\\/\\/dsad34vxc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a03d58d6a0e57a0be23bac06d04a049de434bdccc69fbbe150ca99c9f1fd9402", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt\\.php\\?x\\=3TxtmrUFUqPUT55qA1cwjPak_ZN\\.yvkWr\\-ZiX6LISpeeFZah_xAwUemvPaWYjO\\~znuVAXXf$" + }, + { + "hash": "842f4043fde098a6350fdd16ee109687808fb3c82e2b01357214f7d58ff0ed3d", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6052e14cbc4018e7c90da7055088a1d3dc13b154236aea659ad5e9b064ac938f", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2dd12abd1e2083222dfbc2dee82bcaa2f480b1448e78580aac7a18bd3748aa4f", + "regex": "(?i)^https?\\:\\/\\/eaqfgaq\\-feaq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "711f24d4df9a5e009e4f3ac436e620cab4b456f6c04c337238e20f9311e14d07", + "regex": "(?i)^https?\\:\\/\\/bvc3vc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "559c2f35207b82ddd24f68d298455511ca923ad2536573f1501c82c3cb780dae", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bd5d6fe36f8dad0cc02624afd00d1fd718a38c7b5fe248c8dfba187445b57ae3", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5b54e83e38c6f286f5717c5b0e1d902f0a41d78b2c07a7f72faae396b749205c", + "regex": "(?i)^https?\\:\\/\\/eaqfgaq\\-feaq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "66c92ba41d093d2b99161bcac2258581e30a463403842f4ed93bc1b63c792c33", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "658af6d796006b562f766517803e75b51a68264f341e5f5834c6fc83c00469b9", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a9a438fc6d1f60c44e80469e1fe8b578381efe03de77bfd70720ea227d090b14", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "480a7640b9407fda8a11c6218b9c852822f6b61f4756c274a3dfeb1a408a1209", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9c110b59430fa27b65b60bb4f2da4388a736f5c5038c74df5a88534080404e37", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cfe2f628432650075835535331dddc2a7ef8c69fbd036e1db305f0f1caba521d", + "regex": "(?i)^https?\\:\\/\\/hazdbkllam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7804b54593346cd81931e4bb3545308939ca75586db772088fc24c6cb5692415", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "427c28a71592f522610cb6ded4dddcffd4cf3031ee66035738eabb13a1e279dc", + "regex": "(?i)^https?\\:\\/\\/junedpatel02\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5e0aa9f639a368f661a35293c687bbd248a3853971dd2352abf112960f9cc0de", + "regex": "." + }, + { + "hash": "663e423255399629b91e742d25549984d4997f685fa6f8d971dcc2bd8bfeb5e1", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bfeeccdc773eb5de5964695527e71529dd3fd0ff06f16566524aece6fcac3f1e", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "194577da2a58ee5f696039e3434f4e963ff4982d6798bcf22f939d5ab7a77607", + "regex": "(?i)^https?\\:\\/\\/hazdbkllam\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f1ad1d50ed0fe5cfeb2858c6018b2cb8b89e109916797e68f0b435ee53b1762b", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8a1bce4f2016d45b4733d596ef6ddedbecbc36b25dc909c64f56c99a9bdf4925", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "61950cfa49bb5498ef6a35f6d59d53b2133dc98d7e0c154f79aafe6d732b7c88", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fd75b6cbf302c6773227a981b8bbf435a4a688734f4a47f0f41df80e4bcdb2df", + "regex": "(?i)^https?\\:\\/\\/vaslinkjalmmab\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "777a27a0da4bdc89cadd5f224c2dcec18c03881c1d4412207dab90a93f6ae476", + "regex": "(?i)^https?\\:\\/\\/feaqg\\-aeqh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "7308934f80222ee66139577fbc7378a4a49eb29eea63e66bc5275a39a2782337", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "885b2b21a29a2e7c48e9da0bde28e99a60f5c86b0dca235aec0e94d878a2598c", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "50be4740bc669ee76775a2239e408e0a6ad3c81356301e88277ef48f97777d77", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "66c9ae4f1b9f4d26633ce9df9ba5ad7a2696e8fb4da4081b1ffa0320d7d6fc5a", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2bd0faa85fd3e692981b403dc30289618fa13a417daffe3b4161887958a9258d", + "regex": "(?i)^https?\\:\\/\\/bnilifeinsurance\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da19681dd36fa787217d6ab313ae7624a634b5cb621935eb4c361e504df88977", + "regex": "(?i)^https?\\:\\/\\/aqgeahqg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e46a37c865130f61008f108af54c85b76e13cb786af954523e89ec2a02287b33", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "19d98eafd6785b8fe3e548ac675c3760695e07d0a9ea75e582ea20fbaaedcb6d", + "regex": "." + }, + { + "hash": "191acad0cb6dd97cdcb04aec354b86a0694947913e4b72a2a96b1ea43ff79cee", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cd3da32c347b02c02ef3ef831ea1b15bec155e321a7da96467dce3c6eb10d23f", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8f9a1c8df582942e72221972d42f67de3aab05224c89248e31fd38d0ef3a9b05", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "febcda4281b27b21977a7fdf23bb22f30ec6d520895e5549296bcf7f98b07b7a", + "regex": "(?i)^https?\\:\\/\\/vaslinkjalmmab\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9969b984e3097c4c3e78b1c82e179638cb138c6c548e7231f2b5b06caac5e576", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "03ca705fffa4d811abdb141c19e9a07a25deaeb69e04bd8f2b8bb6f6a331eccc", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924569245a\\-bfb7dd15\\-5ed1\\-4fbd\\-9515\\-7ae68ff782b4\\-000000[\\/\\\\]+gPq_Gnin363wPiZQhrNntRXeN2U\\=394(?:\\?|$)" + }, + { + "hash": "0d0d7d511c7c400d5c21e638bd78b0467f62ee98d1937925808944421f82b6a1", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bff17b0334724ab5b542f41ef7d023fa4a7c426552cc1ab89edaed257f52d5fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tTQdEMxKew5j8E6f7(?:\\?|$)" + }, + { + "hash": "8bfc74db4ad5c86d3ac914d1f20c6cb8c9276e7e936ecf6b7ae9197b657a5ef4", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d516777b6aa358bd5492229eddf99c29583f3895ac68209b710d2c6398d95447", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "66f9adcab5f411d3f1198dad797b5e29feb7816e528e3e41e2dafb0234c98cf0", + "regex": "(?i)^https?\\:\\/\\/jajalamanaa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a649ec6618d9cc6c7ec843a93fc8202277f456431eda3876906b796b4323d760", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8aff0819db6287391d40abe4f5bfbf0ed6b2454ea2b870636ce572be2f5e55cd", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "9915bda807c7ddd1973fad10b0049e6b4431def357c39169ab66ddf227a4fb9a", + "regex": "(?i)^https?\\:\\/\\/vaslinkjalmmab\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "411a8de1c7b454a58c2c3b829d8bbe03e9544b373e028865f3ee8961bfca115c", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-iceweaver\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b062107d2f6d9ecde6469bcdb9abb3c4f312e184f793afc372beb5553b9cdaea", + "regex": "(?i)^https?\\:\\/\\/dsad34vxc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "07d243bb28505b64df3887163a75ea86b0634c1a8ca4a5885ec7e56a55d815bb", + "regex": "(?i)^https?\\:\\/\\/chairly2021\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b8d64ae7f411a0b5437eb3e53256cb44a8e4a220f879c36582219c0cf76af1e5", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "af9dda77813e7b3194088fcc1c5667ceb196fee7f8c830ad1d7224f2e982b64a", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7bc7056069078872fe98f4ec869da7964126c2c36f6437b28f988658188508ef", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "286705e4aa87478e11b1e4509b86065b87787b32803f667c5d913dd0f0091cc4", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e5f1d9dcefe7356ee70a59733130283946308e17ea6949d98ed846e213928078", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "13554b3028abb2e2e61e40e27547787d1cbf96df76f13cc7da9cafa48e2235b6", + "regex": "(?i)^https?\\:\\/\\/d749l2l\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "be80460f8b5cb8e3058c62a0c184dc694055c118080e3f9b6578f38aa4d0b557", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "eeec5fe208fde6242687f8dfe2217b43b38bd55114d98948e3f7030098ba39bc", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a899b56ffec88dbc474d801d7f9a391e5b593c5914ea881b84283c47c40a3de6", + "regex": "(?i)^https?\\:\\/\\/eaqfgaq\\-feaq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c4ca43e0b93f53d7a456391d9f1a928b70a44f5db309dc05e8bde829b6b5dd09", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "00271ecf354fc94b5beca9b8e2c111ffd59d52e3a6eb4ecd559457417d636fd3", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "44620459b2357a8c9588c0a9f8c0400f1e5a0cbce3df4d374e1cd2c00d6eab3d", + "regex": "(?i)^https?\\:\\/\\/bvc3vc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "67a47542bd4f9ccd2b99cd9f05a7f88f4df586ebad2658b9b793f14687b0721e", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cc641c565f121d4ddcd0084f415fb04ed576cacc1595f87dbf167390a46a9d0b", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f7bea29e61656212341fbef3b6a1d2586acd63aeeec7e4d08b3f435dab93eb6e", + "regex": "(?i)^https?\\:\\/\\/bnilifeinsurance\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "af125dde4c079c24a1c536113fb1c685ddc99d2c548622e1082eeb3d795e0aa2", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ddbaed477b87021c3bd6dfb60281bf2ee7dc37ee97a1390df13ce30bef0c1ddc", + "regex": "(?i)^https?\\:\\/\\/bnilifeinsurance\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4abaee2bab4f248a7e7eac07836354d9d71ae2054c0b4a1956bd9844c8ba7a27", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ec1ff47674b0b96e4776e9741f03cd78ff666e8634322abf1153da0b2947b291", + "regex": "(?i)^https?\\:\\/\\/xzac\\-eavcea\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d029d3ca14a22d439c25453a81373dd1735e28a46f0bbb48bb036333ab91bac5", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "03ca3c1f422c03b7ef7f421fa6893f7e9c4ed49e3eeebc2b547150bdcb26be5d", + "regex": "." + }, + { + "hash": "a33bde6b395864ab60798b0e2d027c8cc8f580adc8b1e68775a6d72422ba388d", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0e59be1454184d23df9cb35f6434575a49f393c3a3413ae871305997ed906066", + "regex": "." + }, + { + "hash": "2ce2dd67d254fb140a55f389c19692a20b0e93649bebce8f78ecc61344ac0d4b", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2c8050d4fa7a9ad03ce1be2a795fb9fae8491d7abc8a33d95e261db536122c3e", + "regex": "(?i)^https?\\:\\/\\/hazdbkllam\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "835611beae0a050000e3a5dbbad830908d6f110f2f28e71ab24b8df545c541f1", + "regex": "(?i)^https?\\:\\/\\/dsad34vxc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b0e7670aee91bd38638ee87e314f741a88429908b57a3d06a0edeb7049b62ddb", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2dba6cb589bcb1542261f7fe43cf2da3291993070ec56537e0e1e47ba3f4dcb2", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1b27bc24ca419c3cc9c4a4a06417d68966d01053c2eef780762b6c4f474419ae", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9c7687a1f13482033a05683f07127770b62df6fc25c5e8db4b569ddef18a6150", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4ec5589a182418189f079e2dae299f811dd627dbf862f6983ec3ada656849958", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "17c6b18fa1b4b89086bfe02e003688430af32d3dd9692a081b52f7238b13649c", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f4f0c540747ec6abf3fca906aeb82c7aac47c5f8b87d52adee8abf5157f7b7b2", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1ae1ccbad334fe8992bce28f175570ad98c41df0a9837d61387bac8e591ef9f9", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0f5092915ce1524f1121bea4bd6b1ae31fc40208230908ae10e0424601a54ce7", + "regex": "(?i)^https?\\:\\/\\/eaqvcqae\\-aqe\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "77604423669b5d128a42eeef443049b71c9d9711fb19007177446a784ac1a837", + "regex": "(?i)^https?\\:\\/\\/eaqvcqae\\-aqe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8479d1b8a24b8d4a6698b3cfdefa7a2fae6d1bd1ba1ec136b583d07d7afa4e14", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "aaafaaebf0ab5faf9a8967f44c9b5bda232ffcdcc29572d7cedb4cd89983e701", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "93e1751e9b0b1dabc4abc1a935a958b12fe056eca980c4ba946ce7c416fb82ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+errors[\\/\\\\]+validateCaptcha(?:\\?|$)" + }, + { + "hash": "f90ed64a4121c4513e2fbe3b6016cd2cd195907b1c03a0d310cdb77824ccb821", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "046c1d43f03d19ffb718d0b96a75cf054bd21b906795fb20fe6e8452d86ad020", + "regex": "(?i)^https?\\:\\/\\/feaqg\\-aeqh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c80fd756ac16aaf6af7ced165f90ccccc8d7af1a2d43f47ee439ebbbcfb7e45b", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7248587c3361c5f03d8f85599677a37f953a2d636fc562f49b965cb65a6df43d", + "regex": "." + }, + { + "hash": "5ed22a61164b7054bf98b4340a0cd353d39527bd0cdc0028f13e881883c98425", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "06a1bafd4138c51952f81b3469dd8ed45a9e2217a2976515cb8f818fb35b57fb", + "regex": "(?i)^https?\\:\\/\\/dsad34vxc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0236aecd33bfe283f4a3cc55ba24ed06c369aea1ffbf503401bc6b40302ce79f", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "237d8ff15641a188d6c51067561b9670d21b8c08df756899034fa2b8abf73bbf", + "regex": "." + }, + { + "hash": "2b165d17527efc68633de53377a2d371bf0d0f305ec9db54398482434510ddde", + "regex": "(?i)^https?\\:\\/\\/sumina\\-123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e37f70a8f4471b6d9232b2f0e0f4d999d47382b2ee3ecc627c660bf9dbff3648", + "regex": "." + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fmua1\\%252Fseguro\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID$" + }, + { + "hash": "85843e7095cb50afadc9f0b3fd75d5e6aa74c767d00f5cd7738c34e691f06c56", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "31f6950a9b8e6cafe0b415992ee53c07ca48ea54ed3f2124bf9474f828c78957", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "06416128cd15d858f7c81049c332e2e6593b0a933ef4ef148eed9e7326caf99a", + "regex": "(?i)^https?\\:\\/\\/jajalamanaa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e3344d94db00c335f814a3fb0be3a0b423ef339d77fa4fbb8e25eb7a819f63f5", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e4f6627871a4d41953e88a0c8e6c4e1469421a050949344d1b200c3e885e5395", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.mtodJCv\\-2FOfojGAeTjLWmUxidef36uzD\\-2BGE9hSs4HQf\\-2BB68j9yNCM\\-2Fr1LiJkLUR\\-2BEtyJwGSvoRv0Yk8FCtqEfNPx2ec5lPdgVLPsglyBUnADFPF\\-2B1WqTEpAmPJ4WYHwVatTPklTSDRGKD\\-2BmmSy8mxXXD7J34slU\\-2F\\-2BZFy8bVRQxTTCzPy7jT4CiNW7WjP8QeBwhH7MU0V35G4cTZsMatrEc4rsBpQQoqBbejs5THXOi19E93pnDhLkyHld0W8wGsn0QKx4y1vJAPFSW9okYsuih7UagtTqpo\\-2FjeK352yIsPr97Bx3l8lgg4jPGs7S7rmfoOAQf0J0pl3nfNPzqxWLYBAcCvRJQ5ipe8oLOzcCUAvJshGQy6mgtHU8qdQMQbU2RVvcIpM46ggzJRMhLNOYYDyyyBAz\\-2BwyHkYelWZibQoTWhQq\\-2FhuLT\\-2BeNilLyR05pRUbByQWgJjpCV3TJ4GkEyuiuFYbYD5rbjJlgnU2lrNsD4vngAAzVI5DwJYZ\\-2Buo0qFMcYeEkEz4yJ32JX6FSY0lVQ\\-3D\\-3DcZ\\-7_pM325Kn0U5CvtePl3aFhCosQWvPjfF0ccilYXnuGkfj6RapbfhODZg0nuCq20aRFkrXbN7j9W51VbI\\-2F\\-2BzvrrDxinoAzLPmfaqoay\\-2FVFys\\-2BycGhK9WpkqzY\\-2FXu0RVyqImZrst8WMhKDM83yb2oe3asFRct\\-2B\\-2BfJalAePIiPTk\\-2BhfR5xqVq61Sdl0ammD6hMf\\-2BGTq5v6Cnx5ixlkZ2oHt0VEg\\-3D\\-3D" + }, + { + "hash": "b40072fdbd9b22de13ed746d2efc952d27e9f66dcbc4edbc4b219ca11978f51f", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5216fd2b12c08fa127be037ac2c2efc8df98206269c8f7a237d90d36fe58cc41", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "50e1b4195ed422dda64c4a0a68b2b2e8122ae25b8d63c16ebd3b1c2f271228e2", + "regex": "(?i)^https?\\:\\/\\/dsad34vxc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "df66797e7678be1ea468c28b73f83a3534dc24b1714955e0dc5af19748ef62e5", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "970cfe6a00c04000453a96fc217deed6bbd3cace01b968294b0851125b6b2907", + "regex": "(?i)^https?\\:\\/\\/vaslinkjalmmab\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "dccb3782216cdcfe2301c9227551a17bfffb85bf9e807fecc23c80962a5bcd2f", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-iceweaver\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4933d4202008a9b11429a935e6f0b50b2a7fadb2970d14119cb36d645a85d9ce", + "regex": "(?i)^https?\\:\\/\\/eaqfgaq\\-feaq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7f0d9e51e917b85ffff97cab4aa3fd8bc154c81c02e60b208033ff694cbfd05e", + "regex": "(?i)^https?\\:\\/\\/jajalamanaa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5c1202d5a49725ebc76867e01ba650c28d902e63b321617894eddf574da76cf0", + "regex": "(?i)^https?\\:\\/\\/dsad34vxc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a4cee3685143cd668fcf2a504d63bb94dd1ab3dacd4901fc6778fb3df2d25110", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "22d775bff4f85b37ef707e574104d8d27bd03cc409c78ccd9266b11da0abeb91", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1e50794885c54a1d0de06b9db6f2ca797065454565e4eaaafd97fe7807754c01", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b04442ca389e221d17659d71fe727e60a492e428f942bc827cc84a7211b49a62", + "regex": "(?i)^https?\\:\\/\\/eaqvcqae\\-aqe\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "534183400f6246a306babcc21a48232e2dad9707fd09f21dac0a340edb21ad35", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "84feb49303b39289b38a9a86dab9ed060d609d5b6fbe988743b6358333c1db2a", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "875091fe05dba03f874e425bf941fb41e010e259304b50fda6bcf383c90bbb23", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0cc1ac60cdb9ba051f043ad023304b0013f58f296cee1be624daf4049e6e2533", + "regex": "(?i)^https?\\:\\/\\/bnilifeinsurance\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9794e83c0781af3289c3af74190b087652cbc0ec0d1554043a2ba7edce83f19c", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "f390cdc1a666eb139214be386e5d554675a0a19444e983d5de8365755b6ce518", + "regex": "(?i)^https?\\:\\/\\/eaqvcqae\\-aqe\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f6285e8f8a224f29bada4212ca111bf3837bdd1a54ac17b25f2b110a09fcddf8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UK(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b1499ee0f3a90aee414e7755b6a2c3f186277ffb38d20f77f2037b5464f4ba7", + "regex": "(?i)^https?\\:\\/\\/bvc3vc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "35af0051d80dcb61fa9b3b626259e6e8b11c6e5a2406755a0120896415493d15", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1a3ffca4a70e671adcf41d1e8822bc8dc1f2ba18a992a163ae7ab587075f0905", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9209336ef76cce266694adcfd54837088c36df0d3e3feb924af72e8a399caa36", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e1b83fb4a112abe47dca9adccd9783c23d1c25e0cbf3ad2bcba99aae200a13d4", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "23f0a49dac35acc23198d20a1231eba91423b185f4ab746659d45ca1a670055a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auth[\\/\\\\]+verify\\.htm(?:\\?|$)" + }, + { + "hash": "e16b7dc66cf214e1975ba36c1be0345baeeed2db80451cf3e5acbc744e7abc2a", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4f4260c4aace373ae46b754c4d5fc24f7491a49f2e5ffeeed57241d765583b2b", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "82e5bcda2ea1fb2351eb8c1eb28f5c1fb9206a562b01864002e516722e000161", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f75e63d5650b632b63fb04cef64fe10d521f683abcc0a57182ff4ec58cf1efaa", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "dbaea0006dd589c2efe21a8cf12b0830e69f0f8f6d49d40fc9c29acd3021d8a4", + "regex": "(?i)^https?\\:\\/\\/eaqfgaq\\-feaq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c2a37ce1a954ee0eb00be6386cec4290862ecc31277f8ce82c30f6752f240e8f", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-iceweaver\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c826b2ef3575be7cd01314436c621b3129effa94e427b38020aa27f8765eb503", + "regex": "(?i)^https?\\:\\/\\/bvc3vc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b9d8cd9d5430a9abd3ba014c95925ab7a3b6d776f4ef088916663fed5bb3df5f", + "regex": "(?i)^https?\\:\\/\\/vaslinkjalmmab\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4b2b8f9e3cac23570ac1400d6b0dbefcc6925967b7cbf4def7708f4a7d098a78", + "regex": "(?i)^https?\\:\\/\\/xzac\\-eavcea\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "95fc726a6cbd889c44e9d296a5747c0596b491b7698a5150c458e8416e31c299", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "42788df14317be39e1cb82ddc3f0e113edc3230e459e9fedbd0f3853f4354d3d", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "04c3f5802e1c7cb8aff0d9790c40a1ba69b6974967bd0d65815d419661a8f7c3", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6dd29bc6cc8b60bdd40285a072eaecad5f46ee4ca639524b8fd6b7bb6f654613", + "regex": "(?i)^https?\\:\\/\\/jajalamanaa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f1b835fc9a5328fde6cd91ef6fb53d8f240f580b7a5885f5be4a2066eec204a1", + "regex": "(?i)^https?\\:\\/\\/feaqg\\-aeqh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b46e3d0a5c8c155b0e0f520cbe6700e81eb802843e17dcaf0d7155f76812f692", + "regex": "(?i)^https?\\:\\/\\/hazdbkllam\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c4caa24fe647cc9a24fa8995c4a79625300f182d4054253512542b9cf89d8e05", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ce068cfcf95e0e00e4315308b5a9d74e1b119bac68b6ed60a2f8704b38d26e55", + "regex": "." + }, + { + "hash": "b35e18e172314406186b25f928d5315fd0128b350678eda770f6ef64447eb073", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8f1523c21a8f1c5bbf9ce1b2f872c3d631a908549222498d529afadc58f2d65b", + "regex": "(?i)^https?\\:\\/\\/feaqg\\-aeqh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "081b66e3d834e884f3eb2f66c0564faeb9781ae17981db06d82ea2320ae75ea9", + "regex": "(?i)^https?\\:\\/\\/dsad34vxc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a03d58d6a0e57a0be23bac06d04a049de434bdccc69fbbe150ca99c9f1fd9402", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt\\.php\\?x\\=3TxtmrUFUqPUT55qA1cwjPak_ZN\\.yvkWr\\-ZiX6LISpeeFZah_xAwUemvPaWYiu\\~ynuVAXHj$" + }, + { + "hash": "eab90593d661516c955b4c3449b709dec0955f892ad0ec698bac917f89db8718", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "be9a7d00e6d5c9866cb1270e30b34319f43455667e580829295b0b9aae45f663", + "regex": "(?i)^https?\\:\\/\\/bnilifeinsurance\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "faa2add2e9b1fab6ab6708fe5f7db5387ae7e23457408929bc31d5c8cdf3521d", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8b8bea38c0a585c98d88461caec966396ed4645d2712b674e2a373039d3f23e1", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-iceweaver\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f07f775b93f1ea29f89531a3dac70eb9dc64de050a556d5c287c26e5338ad285", + "regex": "(?i)^https?\\:\\/\\/hazdbkllam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "10e071e1c4360807b0054bfa6678c0be28593e43a632ce5a3536462acaf621e6", + "regex": "(?i)^https?\\:\\/\\/jajalamanaa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "12d909f36a013a8494fe654e7b9e8ca5071666fa1354eef1699b0e66aee1e46f", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "318a5dfe60855ffed16a54048a2ebd22129b782c0f8b0f91298ee364190c203a", + "regex": "(?i)^https?\\:\\/\\/xzac\\-eavcea\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "792aea72c5bc5666473732b5959b3fc63f27ef122ff79c78cd3be018e052c192", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ff52fea5e56301f7ccb4924b114995ac24eddf5cd56fd083e59e5c6b627f4b94", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "417c53f5cc99e9847f69410b6e8b3b95551619f58950d75729ada4f8b15d6f20", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2ff29e9a6d51e461b30394994d6e97d392bb200de4fb07274370eef40611237c", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f09144ee52b9183bb13ba313c33bf3434a9181bcc1f45c1156655edd67104425", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "45784111463c2722c5746b190282fc017f8987a9fa79398d66ff276a010378aa", + "regex": "." + }, + { + "hash": "757c052ce33de0b89a440fb04f15a770f846300918251c7d8e061f9c89ff389c", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cd13588903c5d3c47bbe21b71ec24a8582dc5b86720ac1b9a8d51d13a1868263", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c47fc4d8a50267ee548fd2c33c8187b5f2906ec2af323ff8d8e459efbcccc81c", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6f900bdff43c3b0f413ec9bd9ef05d8adc7852fbc45f4faef45d74a2a6b95334", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "151b3e36cfda6675e545022feea944d5900d6985673de7fe8871bd2eea259328", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6af03e6733a92177def7894892f3df49f69f328ac56de193322c21b37701f5b7", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b0413f463abae053202513335c043eb245a7554b2d57849aa758d561bbcad484", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6dac3187af5080a5d8407991806a7ab0aafe88e9c36670515c857b7f89fd342f", + "regex": "(?i)^https?\\:\\/\\/eaqfgaq\\-feaq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0894351dee849aa86e86fec0c93825dccb1c91f11fafe8593edd5870fd1ffe23", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1a9f0fda6ff95da328f98483cf8691333b8b169939164fcf736b99029973e8f4", + "regex": "(?i)^https?\\:\\/\\/dsad34vxc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f007e39eb34e4142cb1319d328638fe66fb752d0b0ff8c79c0c0152d6ec6a97e", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ed82eb0191f1dda8996f6fcdcf7d1c28482123000b9742fa1f302a2bc0b3c2ce", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fdb7a9f12042f4e0103a540a13cd7ac1886e35896c0a01ef0615f48d00899232", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt\\.php\\?x\\=3TxtmrUFUqPUT55qA1cwjPak_ZN\\.yvkWr\\-ZiX6LISpeeFZah_xAwUemvPaWYjO\\~znuVAXXf" + }, + { + "hash": "8da17bed7625da5fd3fed50504bec2da51d3ac8e4144a867ae6c421d1e422812", + "regex": "(?i)^https?\\:\\/\\/eaqfgaq\\-feaq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a8265874a7472726fec5265b58cb3efb10ba190cb415eeff2f51815aa9eaf4d5", + "regex": "(?i)^https?\\:\\/\\/xzac\\-eavcea\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ffef46fc4ba58e56d146adbe07f52b2333625e42ab31a49c89094a76c320734d", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4e52eb007b95e8733e008808df6d988e6e13ad9905fecb7b51687a078347a576", + "regex": "(?i)^https?\\:\\/\\/vaslinkjalmmab\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d64f748aa596311217230d2719127a4b5b3653d3b8a01d00171149ed8f865cf1", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c3e3819ddc53db3103846795b539cd6247003388ff05444744d8b5add4ac4219", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0677d9f9e16af810dd9684833b136f2272d39dbf73cc5b4e82479801dfb07dac", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "73199bb2ca1a7290365698745e5f75ede898ab0be681317035cdc4abc2101de1", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "64bd135299397d806f0887dff68888d7bee24d4a45622d0176b3eebee6816ebf", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d956d21dd61a9b8ccb875f40c62e70e3138c79f47bff555c818224521753aeee", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "134e0f31f1fa0b2d669f824bdc3180b6a2f660aec93c6afb1cad5bca2826403a", + "regex": "." + }, + { + "hash": "c343693275d8e3cde0a09b6c01c8f3d91a46d72adc9b837cee9825d00ebde8de", + "regex": "(?i)^https?\\:\\/\\/xzac\\-eavcea\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "84feb0d039de239198fec2a69966dfe8baeef658240a4a83cc85bc578a9abc97", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.54\\-90\\-96\\-128\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "931a9e1094398337d6bc7bbb827ed135f8aef96af0aee17978e7dc594395b544", + "regex": "." + }, + { + "hash": "42a006b1a16f1af77f22190f52937f71f2cfa9352bb01a5a21a9557d3fae4c8a", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6f7a1f50b8c0cea5a41e891a81c05e828c217af89099be8a3c421aac73107c17", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8dc3227b1b964ebe63c8dce516601f9d6d687e758ad2d27ce36bbeb10bc60bb7", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5e70b304c08f2269a86b0f0075e4d1835d8f2ac7ac7bf88e82f1d891c9c420f4", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "25978775d65529bd52078e2010a56c8b7c540c895d28728d5e9cb14184fd6ab6", + "regex": "(?i)^https?\\:\\/\\/feaqg\\-aeqh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8a766c3a99ba5c2fe5d5c681a532f5e6ea5731d0e7967e679fe1fcdfc856cb47", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "de0f5e91b34b541c34edc1884da653bb7a6c765662a3bf1558e0e460e0db446e", + "regex": "(?i)^https?\\:\\/\\/aqgeahqg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "352276aaecb04c5ad2c5f3b11b377aaf02e3587e0b5922556c1f51ce9dd32f91", + "regex": "(?i)^https?\\:\\/\\/jajalamanaa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1305142528bb75db013bd0058abff54851a6bf920a344a3f761d26a18b9ecf04", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4cc799620f190ed7419d2772cffeda5727803eece7aa9b6afc14ea1f93c90262", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0f722426c5d9fd2fbe084e48050bd5b9ed41bc3d319626c035ca131b19e4970d", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a6e54570c6e1350a7a6b81a93805fd960727ecfe0e5bf48068cf33d565f3", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3998f00925a7ca9f2e69e7059f70d36801da235b418ca0be6cde110bd2c33b04", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b4f8d03994e9074c0c53aaf0113b21feb91e24fabf4b8ea63d286f527055dbbc", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6c5dc68ad04b683effa2d281b91886b7fd11693342f43684065c0f4bac0fa8c5", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1bd1c6ca0632a435deddf95f7549be6116083ca55338ed577c4bdda44d74d123", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "11903a7cdd18187b060a239ba9ac9f1ea810fa5328d93dbaaf5d2da7e826014c", + "regex": "(?i)^https?\\:\\/\\/bnilifeinsurance\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ddb85ba0b8e8e71ccf6eedc045b42bf367e20eef8b8e5f3e1e178bd051c0ab7d", + "regex": "(?i)^https?\\:\\/\\/eaqfgaq\\-feaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0641d4a64c807818ff4853fba6f1a09bcbbd87f1a4f0e7d634a2243ecfebf2de", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a6178c680b7b06cc07cec39f12b50ac8c18a118dd0fdaae10e2e0de22214ea67", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "46738d4fe8139e8d92c19420a4ab3b5a4064e1e499192278eba7967e28aa2af9", + "regex": "(?i)^https?\\:\\/\\/bnilifeinsurance\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2246f6ae1808af9bcd72be314108b20474a7e8599cdb6c8d0b0fea6f0d9d6ecc", + "regex": "(?i)^https?\\:\\/\\/xzac\\-eavcea\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "06a1bc377ca76002885f6ef094f2035969fa52bc73cea263eb6983ce1e849d67", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3469a41e95957374885a5b1a331dd9b51af84bc5fcc3692a31c9c7c864376846", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "47863b17cb57f542405e5436167538853d09bcd46003f73ae50844f6715bb050", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2ddacaf409296ec97d03f85169d98e926eb7129948f6d4128cae6d66f30e2243", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "98505ea05b65ba56ef705bd217615d7120ed35381c955cef0a624d456d6c798d", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b65d84cb7ed0209e498baace2438e87cbeed1bd4730dfef0ed98e61abb50917c", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-iceweaver\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f1ad2c092a984211d618d60f79b31d4ff0ff8b69d057b6ad59a8e5981f936306", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f87d6170f8bc934de5474b74f46c55b519d61cff3ad8cdea17bf546e7fe10883", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "daa825b760b357fe913511a43707cf71401d642c23391b3d655f71a9c78915eb", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d263a03435c48d5359ccb063e0c77cd15176ee447c56a7d93be50e9b5e4f58ff", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "97b6189cfece0c26178bd437960c74a99731499c6b981f399239cc53d74d9595", + "regex": "(?i)^https?\\:\\/\\/xzac\\-eavcea\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a49b347d5cca115aa754271be551ec3d9ee2db234fa57dfc0a4cde2226ac04a9", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0fdd758387afdf02e0786fa44216721e0b66c256d74c5c560edbb2e42c791497", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7a3cc9f4651386f80ec36ec6751b7c3fe5e59322153684440dcbeba43487253a", + "regex": "." + }, + { + "hash": "617d506af4c6ece9521854f20bf68f21ae38648b9e169dd74c593a744ce5bdde", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "643f0d96bfd818cd7a77db2ad3a970bf76ca14e313f5fbf0fad5cf0bc4e02c3c", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3d7da4d135c938a11779608f5b13cb3649fa9e17967fb4701ae1a06b15ba5e14", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "278c1bdfb61a3d02f001b631195187a2a160315bc407c1069548cde34ea1adfc", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b5322ea24143133bc676ba1b6b01b914ccb56a344fd38e6e575e10450c45d647", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fdb7a9f12042f4e0103a540a13cd7ac1886e35896c0a01ef0615f48d00899232", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt\\.php\\?x\\=3TxtmrUFUqPUT55qA1cwjPak_ZN\\.yvkWr\\-ZiX6LISpeeFZah_xAwUemvPaWYiu\\~ynuVAXHj" + }, + { + "hash": "21a6152dcbb3a479d0169d907d31d02da2d635dc1786440be845afc186798fee", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bb8141c56ac948cbf6d30f1417bd0eb63c3fcbbd804990ecd5b202218ab77e36", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "161d3020aa3dee43f327961ae3bf62dacf98632cba5449313333a2384d0883ce", + "regex": "(?i)^https?\\:\\/\\/bnilifeinsurance\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "72ab15d0d0ec22e72fd3fc244a7b509b9677309969ff43ce8572a52399c36314", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "742422aad419da5e96f5f30fd1620fab8d8675b98c0da1ecf09f78ed98bbb3f4", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f9b56e232820f25af7111717aaa72c0247ad7ef5992b96ab6d0ea5fa4c6405ec", + "regex": "(?i)^https?\\:\\/\\/aqgeahqg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "96c17d3105c5bd6c54d16f81421daf991bba1f6da0b62c6cb86a9d2bb1fde815", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "88ab4c3d996b18df0c308c123b2058d5bd30d5736e9d153137e77ddd49d670b1", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "181ff060369c54b1c5a5583a90779b27871edb1a14a3ff6a4bb9c615bf7d88bd", + "regex": "(?i)^https?\\:\\/\\/bnilifeinsurance\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5d3b612e1e8e331d62dd2c8ec08e97918c464ee831679063c702c060476d8536", + "regex": "(?i)^https?\\:\\/\\/hazdbkllam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "637511930f486a55d6b815a8f572c0138bebec7b59652db8f59b3d840c7edc76", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b35a6299882185b74f7510c1c1e3766b951ed2a825f39d06ac9d8502f3969578", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9f05abf3f05e15d22d43cb0043e3e6c7b5e3c4e3639fb1037ffe8e74635960da", + "regex": "(?i)^https?\\:\\/\\/eaqvcqae\\-aqe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2feaea0c0cafcdbceadea148403b9bbcfa397b564f787fc4951e567db2013b5e", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "231d074b4fde0e50500dfacdd726b6091ea0f68eeb786a36a7e47b347e98d5fd", + "regex": "(?i)^https?\\:\\/\\/arg2p3c\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "53bfebad461a87027439a45ecc8b2bacf6e517075dc7482163d33a64174ef6f4", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "db345ef8a447401b50862176d2ff82d3fc417dc688e2112fde9470d02ae695b5", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d1a473296330738976ed9c164d33f15bf6de386d96a2930a9e775fac2528f6b5", + "regex": "(?i)^https?\\:\\/\\/xzac\\-eavcea\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a9ad91a54458acb19a0dbee6eb05ae7c87d4160456627ae0c43d9f80e43b1db3", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9fa3a439dd8d71c9b537b745118a9765b70f2cc6579390211fc6260008374218", + "regex": "(?i)^https?\\:\\/\\/feaqg\\-aeqh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5a7cddab55cfc7cf76b7c4f3a540da0c127ac7322cd293e605eea90f832d09d6", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ac8bb2b29f46dd70b41c6cf5fea970a13282cc603855ba29b8b6b1b276e0166e", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3efa439dc8ef05b938bab198081e1f8dfa70ce7d1ffa16e93cdb3dd0eec84f20", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1f92ff64a02470906023dee865145c520dab857c9bcb40851b1b7e7263162400", + "regex": "(?i)^https?\\:\\/\\/vaslinkjalmmab\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "67751e6aba6ebf607241278b1247db5c94bec5d21a09df59613833d9c3af8029", + "regex": "(?i)^https?\\:\\/\\/dsad34vxc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "00335eaabfb84108b5363b168247bfd6297c0e91e152eb5d4bc5dad9d3b31d53", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "44293bba43eba2a4ccdd8ce408f00e5c7dfbaf760847d5cb2c77fd6736abc23d", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5ca563b5fddc460bdf8a07dec5c272bc7fccfda4e65755fc3305f290705d0279", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "96cfa4279a29f61996f641d2c9c5eda65bf8289f5b275a0fd8b873a9775dfbf4", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ad9fb2a3b98adbe97680d63a9c55a0fec1e1ea83129c35de53a3c7e15eea933c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+new_track[\\/\\\\]+t4[\\/\\\\]+NTUwMjI1M3x8MjAyNDA4MTQwMjQwMzgtMzUwMC0yM3x8c3RyYXRlZ2llc2ltcGVsQHByb3RvbW5tYWlsLmNvbXx8aHR0cHM6Ly93d3cuYW55LXJlcGxpY2Etd2F0Y2hlcy5jb20vY2F0ZWdvcnkucGhwP2NhdGVnb3J5X2lkPTUwOA\\=\\=(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9aea1d8c5e199a8c550f29684be2fce342b5d6459cf34d3040a77f794630f30", + "regex": "(?i)^https?\\:\\/\\/provideovirals3\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4cb4c266360bd68c6f922cc965f54822e64cba87bf031b7b88d28d6842f1a38c", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7eca9d60301fd7f04e69584f0d81e20d8d933f63abfc4f624ee73133e2b6e8af", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "65c00e8681afad9747027d72451ffc03ea642445ae588acf4b986bb3cdb291a8", + "regex": "(?i)^https?\\:\\/\\/gyagsdbyjhwnudwn\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2fea84e7136d8f58b7cc7d53ff9548d8d9b12b3497fbf656209932d8106af4d4", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f5da5da546cbdef08b7b5e420ab9b6e4c661ccc67102d821b097f36dd8f1febd", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "09b37408fdbf57f91abdb8376451a4ada03ac438bbd457a2163b2b1051934df9", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5b4c1db80937911e534ad33c784c0eb5a29ca8b72602f30adc2c22be5f859d8b", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f1689b43d0ba6f8d4a049a4e96fa7dc1e758b0f08889f122287b8ea1792e28b4", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3fe7161719c1e982e21352e7eb03fde55fc18a725c333c4b18f2c049128af119", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "84794686e382336bc6e22a8e900e11b4d5aca75703e3c19e825adb4aff37c4f8", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "73490ddeca7fae16017d85fce41de65434dc711dc2df139e90bdf359c4ff1c7a", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8287b577419140f8fcf500e9f448821dc0a337186fc5887e400fd6960e7bf705", + "regex": "(?i)^https?\\:\\/\\/hazdbkllam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3797057593a9058170c3c40ded3772f0bf4da6f2a040385e464afdd0ba143ade", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6f626e0b46bd6ca5fb5cc7b7e2fb376a75b2f8ae9595dbc091fe8c5b1ba333ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+other[\\/\\\\]+restrictionIp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4ab648fbe258f0843a500b599b9b09d043a5c79936949537ca7723017575a362", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a53f76591e9c7e5fb653d4b05412d83c0f43a1700ebd04df663a9b2ac3d62361", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fb61690f3403be629b4dbe8c4c2fe0e8bc2fd12d980244f0af82ceb3a2216d5e", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "99f6c9890b302e1b5d9a17237b6b96b45ef261f0fa89128befe2fe4a32979eca", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "aa6128bfb6f86f83d246541ebcd25d4da40214fe239a37138fe45e5de4a5988a", + "regex": "(?i)^https?\\:\\/\\/jajalamanaa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c39e20bded4001ee7f3f06f59a8866b3fab6c2d74a6eb35bf1fa4ce2ea5db5c2", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2ab1885534f4edf39c39cf5076b1d2ea5e424b761f8ae45bbc4532c4a75ee300", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3929541f71bb442ce2dc8718ea8001b1f8d4f79a04a5d7b3d578967e0e42b305", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "828829e65c08c34f0e2ac8f5c3b7c0795ce4035e446aab2106e0d9603a64f440", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5f08cd1b0a844424ab19955fc3a27d643bc118f32203e3c55cc9df06be4d5044", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9172[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "931ad121e46431913d76f89929abb728a0ed87628e3814bf6755b4850807d979", + "regex": "(?i)^https?\\:\\/\\/nbalikamonjal\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3da13607a5a3d42a36d3aebcce7a75ccf4b8fac2ca73202656dc79c606723b8e", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7ebefa4f2f96251bf6d8c4e255b07322d1bcf52adea6d3be219156e15b4f9457", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "10a13caf76564789280d487a7935d9a6fbc8b95836207aebb4997f686d53e5da", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9183288abba09b61d342928dd16f9925096b799b917a449227fa6053d38cb92c", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "94466e57ebeadb6c1b28f2da6c9809aafb07964cf7735d23bb33a3c6e6e11cee", + "regex": "(?i)^https?\\:\\/\\/aqgeahqg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "21e2efd156489e66333ec1994bf0450bea1bc7861eb913755e84ab70404a0ec4", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "babdf700036d183d381fdb40188d8b51a7aaed3c3acfd7ff4cf288c34fc37302", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f72f179c60db66eac003324eff5aa657039119ce18d9d9a9b035b6587fc0bca9", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1efe64d62ac32524f26a571ed415a90e7cc24190ba5331ac60e0059a055bbc6b", + "regex": "(?i)^https?\\:\\/\\/socketwebmailalert3\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c4941644f5400a8ba34eb897c3efab3bfabbed2bd53496f2552306594ffcd005", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4541f5ca7dbaaab0e44bc278e46eb965847b4238dee5017ff932017f374388f6", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-cloudtracker\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "72a4034f76ee4db229de2acead49403fcdbcf401e0ab0ed325dfd06f93853de9", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1b46b3ac0511f4d040324f9bb4fee6d5fada29b53dfa6bae50058c3fa64de161", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d15b49362db2884a1292538e9e109698a4d712bcd1e86057774b7ca47726dc82", + "regex": "(?i)^https?\\:\\/\\/banljalmkaja\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b532ef880d77f2dad04811810d4324a7623304ffece886e3e40b03b13c12780e", + "regex": "(?i)^https?\\:\\/\\/p365555\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ea50430e71703713693294ae913b488ed9e03da628123a2791617adf5db77e42", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "587f2f971f81e652286d71c1385bf468c56db5907a2e42c18d2af47c2ab6c53c", + "regex": "(?i)^https?\\:\\/\\/f123f1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b0624d44e92784435cf2b4ed9e61f6031510edd3e9bdb0195ae61d52c7b60863", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6fc56d49a983a1d74075db946a8d913ab0ed698c2fc290d7a5b7953e4cd3860b", + "regex": "(?i)^https?\\:\\/\\/eaqvcqae\\-aqe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1620326ebc6546c7ab15c5399c4fed88efe0cec3587e8107151431ca8d02e2a2", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a0ede56f20ec120d35632dfb1458ef08cb62e1ba15658d3e70abc36afe98f", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dc9cefc35235f04770cf51311df7f20f78b104c409cc171c29c34b3f9a7e0122", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a22614e04341c3c11f0f23e85eed282129e7476b9bb8a3625fabd2f01bd4f690", + "regex": "." + }, + { + "hash": "6d0195764db56a9cb8583a689daf04c1e1368074b297c0289da4fd33ec07df28", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a4ac011ac0b4622598001fe3acd142ace6816a8a0ed350d56c6938ada047f8a6", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "59490fa422d9c7cdbb1635210e88226768d852b24c9522498395c17592e37b8f", + "regex": "(?i)^https?\\:\\/\\/freefirecodesredeem2023\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d46489b0ebe8c75bec0075ad1472dc8a3cf7cc8c429c332e54ff64869837cee4", + "regex": "(?i)^https?\\:\\/\\/chairly2021\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "eebb185c23f6b2da1afbecb9d6bfb789739183dfe2be8aa2eef1c06c619cbba2", + "regex": "(?i)^https?\\:\\/\\/chairly2021\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "24d3a7128a9dcbfdb806decc70105a2559f4dfa96563a85e19311938d8002a49", + "regex": "(?i)^https?\\:\\/\\/bvc3vc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "212b8823324a1b4888163a83c8a90e8b2382053d9bc521e4da950692f944cf0c", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cb37886e5e105d23b25ae79e629397b4c65f120e9a86939cd391493babb45e28", + "regex": "(?i)^https?\\:\\/\\/baslamanaak\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8e736aa672803b38811369eca95c4b691e5228e7180fcb195cfee84cf7527f7d", + "regex": "(?i)^https?\\:\\/\\/dzqadf\\-aqzfgaq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fc049b22bd08f33a7a89fb331e01f3ebbd9f510c0ad57719ff65692221faf862", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ec5bbb99e916608f12a60837a44535c44361f6e649091922193581b0fb4f1b3d", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1d70cc09446e2203bfeea7f9d3ffd040c2d15e2fcd5d25b4efd91a8b4633d025", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "95e72e53f45efadcd8b329923572c3b0a370277011adf01349e50f0fc5b9648d", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924569245a\\-bfb7dd15\\-5ed1\\-4fbd\\-9515\\-7ae68ff782b4\\-000000[\\/\\\\]+6BrIRvI6tLp0kJZFpdMAQP0qTG8\\=394(?:\\?|$)" + }, + { + "hash": "a11f839c9b0b9902c74a3f9e66fb8f501aed8791f6f8bf9d82477718d64cedda", + "regex": "(?i)^https?\\:\\/\\/hazdbkllam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d35dfa7869a76bc582f770b6ff4b502946bd3e1b18a7572716f7efde04ecf2a3", + "regex": "(?i)^https?\\:\\/\\/xzac\\-eavcea\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c1e9be6cb8c152107ae566483f579608cd2011efcdff0421191475950745ad67", + "regex": "(?i)^https?\\:\\/\\/hrkjxxx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b5c725718e3c34aae2c294f2feae9aeda3c3a6367eb9f9bad1fb2d1328a1b15b", + "regex": "(?i)^https?\\:\\/\\/nalnhalmana\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "64e1cbf03cd8d5e80b2385740eb11570581d8ffa439cb401a27b975e9825152f", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-iceweaver\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0526fdf5584bdab4a465b92e390e576432bd2dcc019d93edfe9ee73543285afe", + "regex": "(?i)^https?\\:\\/\\/reyahrwg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0b147d290b0c21b0e1f5187472408a008a95938334073194ebcf0b935e46792a", + "regex": "(?i)^https?\\:\\/\\/chairly2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7db7c561d68eaaf7ba4d37590eda1138e7e03092d42fb74d02ae84f87f709f5f", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2fccd42ff265799d996fb44540a9b3f34511f049dd34edb0be86e403025a0bff", + "regex": "(?i)^https?\\:\\/\\/feaqg\\-aeqh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "076e7b630f38462d00dc07e937a77bdc1dc906a3295468261439470db175db23", + "regex": "(?i)^https?\\:\\/\\/thetimenews2021\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d631d6807a706fe1adcb26a145b1f917884f9f9e695af1a1e630835a1ef684eb", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "504d3da3df4042d1e879e4eb0c7e0da76d4bab61135f447bdd5d2dafc5506f8b", + "regex": "(?i)^https?\\:\\/\\/zdfdsfdre4534566565\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3b5c6ff5cfd4fca4cde11f03b007e24b83e559815bda3549498c1deb4dabf673", + "regex": "(?i)^https?\\:\\/\\/aqgeahqg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b862698c0dd18998344192b6a05f81feb13691cda436a962141acd27827a6f12", + "regex": "(?i)^https?\\:\\/\\/aqgeahqg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9c5768c22753e86ed30747b234276bc4d10ba75736e6ce64f37acdaa23f19b2a", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-iceweaver\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "194b247bd053e7e0728d6016b68e5d5186d419ee42696540c4bf9f2ca816b759", + "regex": "(?i)^https?\\:\\/\\/veaqrdvqa\\-aqzaq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f2d85c8f13b7b2edcfe275487f0b84fe9b5b6e4d0e61698ed571290e0770cc56", + "regex": "(?i)^https?\\:\\/\\/bvc3vc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "19455ff3a74a1ba8a4011caaea9308efcc3aa4580785eeafe21bd86b781d1a23", + "regex": "(?i)^https?\\:\\/\\/fhrhr\\-hr\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "03a24d934742c8d30bcb8b59df3eb95eb6ae49dd0cb1aedf9c276d37eb76ee72", + "regex": "(?i)^https?\\:\\/\\/jalminassmajal\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "14e8aba2d4919cfe7def1f0aebe302c259db327d111894f2b7c8cadc2fee9be4", + "regex": "(?i)^https?\\:\\/\\/vaslinkjalmmab\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "70a9bb2a6ffdd18ce68b46105c8b8ec0ab93589b78467baeeb70893a07c98bba", + "regex": "(?i)^https?\\:\\/\\/jalbaljauma\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4245ee3db71e88b769035718f68081854476e9de665a5c9ee9e70f17fe04e244", + "regex": "(?i)^https?\\:\\/\\/feaqg\\-aeqh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c5eeb8b03c75359fa24b41a090e3c086e29a3e0389c4c40984091025604d2d3c", + "regex": "(?i)^https?\\:\\/\\/qaeheqa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0c347cdf5c2aed73c6e6124395edf93fd7daf6e263139db73972cb381b3918cf", + "regex": "(?i)^https?\\:\\/\\/kolmunzbavtryzoaka\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c73e17062b661d5e43dc0daad1c3abdb8e01d070320e4be326c02df2c40e2771", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+6oVD(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e04e91803f69aa49068d5fee272fb4937444eb1c37e4625d7ea33d0466d4bf85", + "regex": "(?i)^https?\\:\\/\\/cashapp147\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "35f8270735c49512e9852539e86ff5afe2c0b10fb2d6366a540e8a2cda8bfb2c", + "regex": "." + }, + { + "hash": "055b5410a6a2ba5aaaa510fb641811bfce9b6d00d7631d02322dd5b86939f2c1", + "regex": "(?i)^https?\\:\\/\\/dgfgdfgdfqawe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "36fdd36e574a5dfc483c1e6dba00913bd1296c9f0d50f60ca8eab9e61de9b12b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fmes\\-infractions\\-antai\\.com[\\/\\\\]+1[\\/\\\\]+010201927390395f\\-646d0c28\\-1f2f\\-48d2\\-bb8b\\-1f39b8b6239d\\-000000[\\/\\\\]+EQBmC\\-URA8oi9rR\\-yghEc6pGB94\\=395(?:\\?|$)" + }, + { + "hash": "3a67da0adb4c8b3aab0a65cc8ff53233e414362ca7598d4c242f9d72063a8505", + "regex": "." + }, + { + "hash": "bb37bf22264026a943f5a7fd8da7039535ac58c88cb59ae91b1e34ba6dd3fb2f", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsccp\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2c89c0adf85c3deef383e0d08a8936a61fd555117e601b88cb5bf2b61fb8c8cd", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "95d8972bd1093ad8d772a2485e8ae7a208f9764733623eee9615f1e4af4d8381", + "regex": "(?i)^https?\\:\\/\\/cashapp147\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "229e30b43fb4a2a82a5515fd24f06511327bf69d24e78e68a583a8639679e794", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko4N2Ty9JTBhjeBZkkI9agR3xq\\-2Fyd7Rj2gxLjROaVaMWCYIPaRKy7JNDvmreZ4U9iMg\\-3D\\-3DpyRj_e54vq4Vgt3w3n8vvlLQ49OOLIZggtAaWIwHih9RSyNL\\-2BazUBTmjbV2cWMU2NV1i2BQUB0XiD7kHUfSejIjTZnzbZc5z\\-2BbqqWN3S05g7C4CFg\\-2FH5I\\-2FpTQrkaFmxP2EpeYymYr2\\-2FCJbWAerA0RzIukLu241P5FKxDC9qp9gHpSeNj4siItHt5OBM2yrtPCDKpYrDIsfgiExf4Vh7PFFgMu2Tt3tY0yc0Ooo8ZptJUcGT9\\-2FHPyvImvbZSU373VbRXSjuJFMheeTWB7m6AZ8CYZv4NwMqGA19UeK9iCs2iDSI5W3nopgGJ1hcKw4l\\-2Bgo\\-2BynodZYmaFHP9a\\-2Bn3LNN9\\-2FQdFw\\-3D\\-3D" + }, + { + "hash": "1a8ad7f4007a103c195846aaeb8f1bb66324c034b54f8ead55651d697c1f7479", + "regex": "(?i)^https?\\:\\/\\/cashapp147\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2999c050725df311d0141beeed5eb8c1fb85aeefdf0e12c7a4c4d1729f90bb22", + "regex": "." + }, + { + "hash": "2eb534528b22a22bd511554b97a2ff0ea21a3c762b2433ef14d26d3d70e1e0ae", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "31c41db3e92d52f645a9422f47ca5b761f22228c65690388306a7ec6731ab289", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e590bf4fe49c04b2b3d2509b133c9569474536c8dcd2793e8da22da4509f2399", + "regex": "(?i)^https?\\:\\/\\/kolmunzbavtryzoaka\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "41fcea997a82a0aa1247039d86aa58732431077cf414f8a5ee5b7e1df5224c54", + "regex": "(?i)^https?\\:\\/\\/veaaqvd\\-aqe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "27c682be93fd558c28f071d2e7b257493b8a584a884b826a4ed5de3e793b6533", + "regex": "(?i)^https?\\:\\/\\/eaqcvaeq\\-cvaqe\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e533cac91d4f01e909fa8ab56806a746c6c9b01d4134a27e55396a20040da80f", + "regex": "(?i)^https?\\:\\/\\/dwightschrute49\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bc89ca\\-fd3f28aa\\-36fe\\-412b\\-90a4\\-b4633ff3e296\\-000000[\\/\\\\]+cWCH98fuVDQxrxPHWJKH5PXlYSM\\=394(?:\\?|$)" + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3D7VGW_N6o8S1tNeZevSKWdyVWebbSkzMDJjfRpyduX3RvICGYU\\-2FxNGFFoYO2GGifzqpzaoAvLlXna6C0qcF\\-2BIVhKQvWGa47m7kwwxiGlj2UnOACHB7C\\-2Bw2tY9dmp314KAXj\\-2FG0rmhj9VTBRksAldbq838mX7PyDB1sqpNKXoDn54i72i6BCTm7Ck\\-2FkNaBRmYNmPf1ni73Y2LfSu\\-2BDFPnWG2CYC\\-2Br3Rd9PMIpWnpaxATjSNSBrVVS3YnSelqYlw2QKWdtfOqsD8LSbr6xxp\\-2FUI\\-2FEFZWSAXT\\-2B3Z5oj2DiM5\\-2FmfZ\\-2FoLcjeqk78KEy4cPfYJ0WxPylxJp3lUCsbtyxA\\-2FWlZABghsQROg5LRMimC5u5tU8PPFEn\\-2FamueUWnhMuhqkQ\\-2FejBKub7eHSYtzOR\\-2Fpc8izEwUkakT\\-2F1cZdX\\-2FbOMQojfi6xj4ZAc7PfbOv3bGEWjzdrgWbq3Co5u\\-2F9h8lu5KyeApZH86lJEbatPrnhHgIiJg7rYU74H1esqZ\\-2Bi0KMS9W9C0\\-2BPUFSfRaZpDfgX4XzB3lwnbkw\\-3D\\-3D" + }, + { + "hash": "83cfba0a9fd135432b779f2c0657cc44fd3b7a59f773ca18bf41fca52d5a6db6", + "regex": "(?i)^https?\\:\\/\\/bgmifreeturnamentopen\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "85b0e046c44389a65f7ed43ea1e6f23d92fd0302e66a6b8020e20cebc2b7def5", + "regex": "." + }, + { + "hash": "86f65d3b52254a134c817c53976cbc4a2bb13e6112933a476e819a6d983bd86f", + "regex": "." + }, + { + "hash": "68f5efbd0960904c2729b838a811a56fbe3702fcc2ddfd55d40af62cc673bd09", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsccp\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko4N2Ty9JTBhjeBZkkI9agR3xq\\-2Fyd7Rj2gxLjROaVaMWCYIPaRKy7JNDvmreZ4U9iMg\\-3D\\-3DWz5B_aKwpdRjZusARS1kTISFyiK6ojkENx\\-2FnOFH9Sj2WLHBpSGAF0V6lMeDLoFtL\\-2BmaivqthLgWjGZ3na33B5bC37mT6IUq47GcS7Vzi5UKEtznli\\-2BdKXbMnFYoj5oT6xqPS0cO1ZYI18JiFs0piPlTKTJ1csAM3G1DAPdexBJFan9LhzBYCCMPBaUC5AXzUvkXCaQA4j1NSa5s1ESyG6Lp2ryB3dBBU1zc4b9SXgUCsWsLCixTEv0T32J3LPxhQy8Z3Lh8eOrX0qcLpf8o2ldMtFivLjuoilRa49j1toz8u5I1OrpI3csPTcT\\-2FWcoNjOnp1SKkfnsEjt\\-2B8EqQc41Cz2n1g\\-3D\\-3D" + }, + { + "hash": "810550dd447086ebb0a2aa1ffa94583241f9589e871d6b1c24dd882af11eb54c", + "regex": "(?i)^https?\\:\\/\\/bgmifreeturnamentopen\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4891c9f7303bd8bf757ba38a65cc3afc9ba624c56d31b8ae2c3f176cf0188ccd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pos(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "335a65f47b306bd8f95ce43b2ecf22c97d279a41017743c42714439f0225e45b", + "regex": "(?i)^https?\\:\\/\\/linkafdfdnmjgfjfd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3d8178d764b89a30454f1900a4df079b267ed2206893b454e63139b1913c7e10", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c0d20e2014248a1bf10dcb1b909cd5b282cf9ef80f583eb83a4c17ed5f5c1c2a", + "regex": "(?i)^https?\\:\\/\\/eaqcvaeq\\-cvaqe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2992bd41025b7baa17710b1d1cad05678883d06901f9e012cec10ef2c242151d", + "regex": "." + }, + { + "hash": "64b42719e4a4274edd554899b0acca64a8592b3cb37c52a482d0b8618859bfcd", + "regex": "(?i)^https?\\:\\/\\/linkafdfdnmjgfjfd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko4N2Ty9JTBhjeBZkkI9agR3xq\\-2Fyd7Rj2gxLjROaVaMWCYIPaRKy7JNDvmreZ4U9iMg\\-3D\\-3Dr1yv_iSzsnvW6\\-2BD1qq6ZCI6sbWapOIzKi3HIf7y00blIajzNeWuVaOsrXsVTIwf24FVvOsEAgEUIo\\-2FsbyeqT0ZUHMAzgXhoLWIsU39AynIyAJ1f8RQB4rN\\-2B11RgPrl\\-2F4YNmCoEPb0JGd2kEBfEjEawk1HOJ\\-2FNH4jy\\-2BX8QPn4s9PLYnS8XS\\-2Bf5xLvsKqMEwsvie9uOAA8igMTgUVGMhry2ynwUpuTa1xXtTgOjwSfp9fXJdgU5SrH0INR5rVOhcM3D5xRh821ozTacAu3lwvKICJAK2ZEQuqUOIdKjEZGEScTomBp7mOHY0OialXOl4MuhCvlXwNRFH96fSap3nHtjeWqKZA\\-3D\\-3D" + }, + { + "hash": "904ba732de467b1362e5c6848daee604beaec31a07a67bb0ac955b111d534383", + "regex": "(?i)^https?\\:\\/\\/cashapp147\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "886a1643d311ef8420e01e2a49df7f6d9a793f9c9c9b9c10e8c440b9352646d9", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0db00b5f997acdcf404b831a1cd4e8ccb85abe1c8487397d7a347c2d8eaf29b4", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "abaf9c305675e5a6b9dc6bb05dfb97672105c4b44da45c450f41d1d627474e67", + "regex": "." + }, + { + "hash": "365c5e8510a109073cd2d881285c3f06ff76812158d5965ef6ec09f2a5150008", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8ox31tu3gnxa\\.html(?:\\?|$)" + }, + { + "hash": "b0f8246dc3fda316db8f8d304b34c702bfa2db977c19bfbe9a46da3f2142fc7b", + "regex": "." + }, + { + "hash": "30b81d06102326c71aa6fe8896d0507c96fb2c2ffd0f6fc0413106ee57082739", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "33cdd52ff4f9b512c537f449ff116c4173d35e353e89d9c5a29dd86d1113e254", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3871a4fcf10acaed80b369dcfbf042242f38779cc42f0c9a06583fa860dfed31", + "regex": "(?i)^https?\\:\\/\\/theelri12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "03c096174a34015be6e7bc2e266a6d13d359b45074b3eca1cb19649666a9e5bf", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "158d4c8706871f094189e204dbdc6972760ea02938131f1491273ac8a3b96775", + "regex": "(?i)^https?\\:\\/\\/veaaqvd\\-aqe\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c3d5991c5d277c9d176c4889f21563ed8c0e41f4f665f4001633365ee474e97f", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "450430e3f3bce1104443299227911e571720e56756dbdd1eba67a4c20b936bf7", + "regex": "(?i)^https?\\:\\/\\/kolmunzbavtryzoaka\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "767e8eae977f2ab5ca8f3a65b33d737916a58856c0a0f8bfadc26306c371ef98", + "regex": "(?i)^https?\\:\\/\\/dgfgdfgdfqawe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c48767fe0fdd0e929a862085d195cffacb21100251dc6d43bb33c8a2a957e754", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6aec4a95fd1518819ba57d0d63b6a3f15aa2a120d3c762ef246f86ae700aadc2", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7178fb0169b13b1d0901cfe4e36b1346a581bbfda8fd2f65111d87690f8fe600", + "regex": "." + }, + { + "hash": "30811f71a2a9567d47135c6beaa16b6f80fa5a3d9daf6204851a8a487129dd82", + "regex": "." + }, + { + "hash": "17db33bf8be281f22c30233337551bc13cc8692fe492aa7ead02f5494b2d906a", + "regex": "(?i)^https?\\:\\/\\/veaaqvd\\-aqe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ccbfe1fb436c72183c01063ca0ac44d829ee1e00afda708c2dc9f6b5b9bf90e8", + "regex": "(?i)^https?\\:\\/\\/kolmunzbavtryzoaka\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8c1b06188cfbe7931bdf74e2a958c5c8eab6a48641aef723de1116f03f801427", + "regex": "(?i)^https?\\:\\/\\/cashapp147\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ee0c4b4cb9fd12d03a05b551ef25bada7abab09f8f3b741a722cb864beb44c29", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "88c7901362868b1936fea39377ad3df9b55779eb1b5ce669d8eaa05d019ffd23", + "regex": "." + }, + { + "hash": "a7b21b6900c54a5a828cf81ba7f4a588edc5b8d32b5126ae168c6928c8c24946", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b109ddfc863c65facee54521f773fe917be9230b3c29eec8817fa366d6f16f17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1lSAL0Dw22OqZx0rJqwAO3rsg\\-2BufdDNRIPyOSL57M4ko4N2Ty9JTBhjeBZkkI9agR3xq\\-2Fyd7Rj2gxLjROaVaMWCYIPaRKy7JNDvmreZ4U9iMg\\-3D\\-3DB2G3_3E3tKznew6T2byhIuRjkEQJm3\\-2B8cIeG4Xdf\\-2BxOGBfzvKMmXIuS4Bhb4ic10ABAFa3hdBYk2XK8KDumSy59c91xd0GrcNSJa5pWZEXLNAJU31BlasdruvWJs\\-2FcZJsDkZWJB5v8BVzbF0\\-2FLAuRfLjo4Mq3FVp34jyVOt9IxFEdnAp09wXzbBOE6ewqTuAzQKVhggEGUI7qpLoasWlQ07brCHMtQCqAKtTnGFDzu9pyvnklmTmEcedoE1esQHclCm\\-2FLNsGqFb43b4AYhmnzEHBpdDE8ABOFXFczyqgR\\-2BTlF8jJ0Tg5cKlCaGVefVt3I3yZH212102y15zlLasie8fehPw\\-3D\\-3D" + }, + { + "hash": "9f6d5c915700f154b8a22e5c3a1a6fb4d867b919687b448fdfa9c3766d291830", + "regex": "(?i)^https?\\:\\/\\/veaaqvd\\-aqe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6394171b2aebf7a5c08010b884fd843a737fc59ed4f25a3ce7156b608741ff26", + "regex": "(?i)^https?\\:\\/\\/dgfgdfgdfqawe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bc89ca\\-fd3f28aa\\-36fe\\-412b\\-90a4\\-b4633ff3e296\\-000000[\\/\\\\]+_k1YhskZzkpPmS76OyDbaCIsokY\\=394(?:\\?|$)" + }, + { + "hash": "304b501e3b46f65fea38dea1c789be4bfb53fb243d050709dbc5450290201df9", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsccp\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c73af69d35d8ec0d68f23210d5d1f7633f28b1eff45669ae6beb34c3c9c0628d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e7dc6263092ce7f9118dc38542639e71a2793f370d5787601f77ce070027d2f", + "regex": "(?i)^https?\\:\\/\\/dgfgdfgdfqawe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "df66c3bdcf736ff7e2b49f42392f8abe7d9ea8c0c0dd79e84749b8c6ef9a7001", + "regex": "(?i)^https?\\:\\/\\/bgmifreeturnamentopen\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "86dd1863b31194372c2309ed69a6a9c4cc636824b219b0e5be1f15da588941d1", + "regex": "(?i)^https?\\:\\/\\/home\\-102533\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "dd47f4eeee03b8d7e74917280fec1d920a71dd2654f2c7bd0e4401b37bae9e20", + "regex": "(?i)^https?\\:\\/\\/dgfgdfgdfqawe\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e493a9c706eac959e6fc60d5c3aae66fc2ae3544677925ac643182a8425db186", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d5a642437e3c94c5277e09e8152b5ea549174fe81c2a259f3265f74c0e11e7a7", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4fb2b02aebbe64216d80816c2d58a8f7ca4b57972ccaf3b5969bce6ba6342dc0", + "regex": "(?i)^https?\\:\\/\\/eaqcvaeq\\-cvaqe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "30eaa3eb91a562e138247a19bf82a4d4fb4ddabae46d8d8f64454e372fdcacf4", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cfe7f5edaa6037afd6c1215700e8467b7b7c5c49a1bf443ded454488e058fbc4", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c9ebb9d38f193519e2370bd56ef86215b45e956c8fe9a156cd19b98c92277cdf", + "regex": "." + }, + { + "hash": "d6487c8bb153f90af2bc0032501f7249b4d530b7d584d4d264cb2ceadf06b758", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsccp\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d4c52c504e1dc1a01841328a426d3788057602e5115dd856fb2e89ff060e7306", + "regex": "." + }, + { + "hash": "d7fcc36ea83c76807a39ac3b492e29c042ba6b9924e4dc5db108f963d75a83cd", + "regex": "(?i)^https?\\:\\/\\/coinbase\\-signon\\.194\\-195\\-92\\-106\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f9039071a13061aa484f63fc9e81a44100af6e3a1f8933863b0e413833365bf6", + "regex": "(?i)^https?\\:\\/\\/eaqcvaeq\\-cvaqe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4eb04c75b6e3d8dafe0e14e01fe9e3be5be273c2746e5b9e015934a0f1581a62", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsccp\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7c408d4b430e997a45961f9167c420ae09e7265df1076964c07466aa59400e63", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "017d8896b900d4560e4736e988fe69c58e193734842ff1f1efd3fe93713419be", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsccp\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "17b33f057877d3acedb57f1dc5d6aa5d9638ebc5ea2a8e1887d6b6cfa8ab5fff", + "regex": "(?i)^https?\\:\\/\\/342563\\.com\\:6899(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f29a4b2decef232033ad7513017e1f385790ed1545b41a6327b677c9b36be494", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "25f7f0860bcd5168366996ae2dc083f5fb9229494e80e85f0fe00c04e24089a2", + "regex": "(?i)^https?\\:\\/\\/eaqcvaeq\\-cvaqe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bf61365c52de66fe3b0546a825a6c2ff9edb86ae5d93fed968bac63abcd76f20", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "283937f93dfa320a9c10f6e61d109b970fb2d0e6af47ab89ed951cebebfaf907", + "regex": "(?i)^https?\\:\\/\\/linkafdfdnmjgfjfd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1c399e4549b0fb5ed12713fdaeff5139c73e969107e122e399af4cdfd677671d", + "regex": "(?i)^https?\\:\\/\\/dgfgdfgdfqawe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "21a72cd87bc68d71c37d31914016929800cf296812f1146b8add60777e3b8cef", + "regex": "." + }, + { + "hash": "59ced879e74f469c06c2a83d354f954a38f105c6af346c36a10b2bfde9cfe46e", + "regex": "(?i)^https?\\:\\/\\/cashapp147\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d3aa800893b6720751e1e442d07923d166e7f3e369ca3efa4b245b63295b71a3", + "regex": "." + }, + { + "hash": "d24c0871b781aed8bc753731ab9f2d4ad5e6adc6cf4d3f65ee82b8a0f3f6a8f6", + "regex": "." + }, + { + "hash": "f45371204e117d0fe7b4adda5591bed54c5f4840991f4e69247284e34c64b614", + "regex": "(?i)^https?\\:\\/\\/dgfgdfgdfqawe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "99f9e889c6d6c9d3efde0a613977f9aa1bca1db2f0cc23881766db2e591195b4", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a5f3b4a79029a0952381e7863da0e36c972b078bd2cbf59e7c0f8efc91eefb43", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsccp\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "63dc58c02dc8e372c4af8c8e09bb297ed6a7805ddbf2162e77e5628f361fa287", + "regex": "." + }, + { + "hash": "7b8f3dd14ca0ffb513e8de900ddc674700430d62c915f6512390133e6264456e", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "10520428a6885e88761254886b53c5175b8c3fd18a972f085cd248ed6a476899", + "regex": "(?i)^https?\\:\\/\\/bgmifreeturnamentopen\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "61f130a5f9bf814c2d3a371e99582ea308940ce2ea882655a3ec697bb5ea08de", + "regex": "(?i)^https?\\:\\/\\/bgmifreeturnamentopen\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "631ad6dfc7b66b005bb2a040e5075d4b2f8cb7ac775f12bd7cc4260f1d7dd7bd", + "regex": "(?i)^https?\\:\\/\\/linkafdfdnmjgfjfd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "39e20ad8c5c9fcdf784fb6c96bb5f4f763660717c75e3e316fde0466877c1cd6", + "regex": "." + }, + { + "hash": "2bc794c20ce7281f3bf60a493ceee0b2cf7d8a5eadfd8ca06f2062adc209a024", + "regex": "(?i)^https?\\:\\/\\/kolmunzbavtryzoaka\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "45ac0a5c4f602e414fda59c6eb9a83376c2d2d0fd0f1232172b6d6e060936a14", + "regex": "(?i)^https?\\:\\/\\/cashapp147\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1f48ebadb3d3e3cc70f77a4c16766cfd4449648ba559a9e19fb746bdba509a0e", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "302244dad49a7c25e4e6236119386acbfdefabb12247d9c9fb38bd9461c8272e", + "regex": "(?i)^https?\\:\\/\\/bgmifreeturnamentopen\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3DFrb__xYJK2usUZDxsF6D1rRAB125TKzy6jcaIXilMS4o1ITrExuG455KTS8d172Zz8zZgmS5\\-2BgA21NKDgTVe1ODhzEeHshP\\-2FNIrdy9bP2ZF\\-2BFf8IIoRK6mH1DW4ZWcccSQMTdHEkaQv8M6kKg4\\-2FSkCTsh\\-2F9fRIFdURix14fHs59KfB5fHneX0bJmEcbtkgk5E\\-2F6QHSXp4wZhmpk7aoHs2lMrnxUN4tTZgwfeNTQDiEMeispnke5zA2nnEYpSUfo\\-2FSGUS8xYilSOb7tVqAe\\-2BpuTY\\-2FlFKics\\-2F4LPnNhuF06mmsPG\\-2FVQ4YD8zzze8coFy\\-2FTUmGhRYhk8iUfZNPpwOzpSrSoX2V5ZmUJDobLSP0QmoPmW5RVMRetj5Pruh\\-2BP1ml5qxy1hAP0CoUmQWiS6BcZYNos1msoTqBiscVtf9gExuO5GTAmUU7FiMfgDi2SaOoA5YuCzL4uZ8bRoOlr\\-2FK4gDAy57wQBQ1XHcZ6cA0OSdsRkezTlcyZlNnIRCiKQ26pHtUy2p" + }, + { + "hash": "75e2f729032c8e4c206498ba42221b9d158c0708f5babc2f7143dbcd830da00b", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsccp\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0c32c37c1c0d0d6b382299dd8e254d3ea176631142a1c8f30ed99085cf78544e", + "regex": "(?i)^https?\\:\\/\\/sportybetbalanceaddee2024newbonus\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "14735cada864bf08fb84dee233d8113c68369b41e140d56ab0a6d641eea73d41", + "regex": "." + }, + { + "hash": "2e25258a0025c0f67744c3ff9b3e970d0c9f35abd0562f9f1dbffb31ef96dfb6", + "regex": "." + }, + { + "hash": "6282d7f275029b36ec65e5a9819d1e41784aff0d929f8a50f9c5bb64e0f3d157", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fc98d2b472adb8ada14a98edfd33ed15e60399d2cfdf7810a5a1177ac6b1b84a", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3ceb99ec54b8a0a24bd9dd9681bd0f654eb62e7a6d43baaa499ac58f5846111e", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fa5626a587e316e70206b96aff2e7fb57fab3791b1edc21d467891b7174d11a9", + "regex": "(?i)^https?\\:\\/\\/eaqcvaeq\\-cvaqe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ab20269ccca8d646e097965b154cb7406dbd848a8c171ab2c382905a51e68dc7", + "regex": "(?i)^https?\\:\\/\\/kolmunzbavtryzoaka\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0d2607260c5fce869508fcd8d5a93daa1494b718bdad43082277fe0372a49096", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1547860d5e992ea241b5975d8aa3bf1d1d02fdf92cdaf4bb7acc7ba5b920c4ff", + "regex": "(?i)^https?\\:\\/\\/jdk705bxq\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "79332489e3839ae81358d6e53672b913c01000474e8fdb73a556ed5017e6e7bc", + "regex": "(?i)^https?\\:\\/\\/veaaqvd\\-aqe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "313dcb676c2fae13171629b620900b4ceb576a1c76a9c22d2857cd3abf5f65a0", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1778163c94e69559f6eb2b1bcf91db5f0edbbfb889ffa5de74a5fe50dcd0e9ba", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4e8e7be3721798d4dba927aa9c5cccec10ec151e475c01fffac86d16d7e4808a", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6396d8b3519042181d123ab929fb9d701c6b1396cb4ed34615ab048abe86cc3e", + "regex": "(?i)^https?\\:\\/\\/eaqcvaeq\\-cvaqe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ec8ff13f7e20825f0e1bee4891c80c9c961e0a914a8fec862d5c611580eeec0c", + "regex": "(?i)^https?\\:\\/\\/bocks\\-vfor\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fae269115f7905129e90f30b36b046146e45e51c7ef98ded634e9988f1219b1c", + "regex": "(?i)^https?\\:\\/\\/rtfgwerstgfre\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4933b538b9f9d40d342edfeddd61eda3d8963771b6226ff5a70f345ef4de688d", + "regex": "(?i)^https?\\:\\/\\/bell\\-net\\-106252\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dbd1e8b221328f3f5e2c8383644a1061795bde4196ec5c7cba658f76b0e82780", + "regex": "(?i)^https?\\:\\/\\/124781486153\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fb5c90e35d12438e04d5d6c130fe51507fd3d8972e34f67380dcde76bfceee4b", + "regex": "(?i)^https?\\:\\/\\/cashapp147\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e824d71ce8a91ad17ba01b71318d44ba165fb27fb115db2f54cc96c0b8dd7f7b", + "regex": "(?i)^https?\\:\\/\\/kolmunzbavtryzoaka\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1df60b130ec75a6d35d2c7d0b33b43b1145d542f9a5f4d9cb76295e75036db7c", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "82680007876f03952fab2748a96590a664f72d010e36c71905591a1fea39d2ef", + "regex": "(?i)^https?\\:\\/\\/xzaqvc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b416f9e9c011cb994ac2879c8ac3058d2cf5329d6529334a538bd202995a1de9", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "25c9f2c27f7823b12fc3f32910280b9d91105b7f973791b5491b00f684a17507", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4196c06cbc9e15783ba8cc831f7f0143d6baf88ebfe376559dbe866c5a40ac2d", + "regex": "(?i)^https?\\:\\/\\/www\\.bgnxdd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a30a695a42b0dc472beab37426500d3b5dead5dbac0b033a9bb1210cc45ef7de", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0ce004b84b0afcd8bf12716771933a8f40bce50459ba6737694e2143915e1a4b", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "71ab7b9915fea200143350c7f05180073abe935d98c6d3159707e088bb61a422", + "regex": "(?i)^https?\\:\\/\\/rootbinder\\-earthwalker\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8bb0dbfdf5f22c04de82c03ee979b619a9133ead19898550b5faa0548f5713ac", + "regex": "(?i)^https?\\:\\/\\/www\\.nqdshq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e3fa7e16bd830646c9a6a98b7a79af69c21205c96805b124fd59671492a8fceb", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1e7b4f1352c78aef648efe3f3e4af90edeec42f569e46f6c46851be5613e3189", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8ae2210327f250ac3046962cec34aece0ac2fcf80106923d1bc23321f2d27bad", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "eab91826eecfbfe3fea273136faf8002980ce9ed9d198686ff727373f13eb753", + "regex": "(?i)^https?\\:\\/\\/recboom\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cba65f8a25ae7c189d129b5b410f88a24d5177a4f1ced968c4d075106605ccb6", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1305d1f11c3a5fe61bc4c12301a39da626232d0e191c1ddf2cfa000aadd3b5b3", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2942a348fed0f482d304085856faa0a47f78585626002db213cca70824b624a9", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7830f2fc1eba6ca0eaa14b4167a93cd72854a362f90985fd96981f45ae8a543a", + "regex": "(?i)^https?\\:\\/\\/fwabsc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7213ab7091dfaa3f0544fe7c673ce1bcf10f203c40e53ea9214b737e9a05d570", + "regex": "(?i)^https?\\:\\/\\/waxxzc\\-aq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "291de98979ab33c54a7b3f408ab56b5095918369339db72c207b7f453cb2ce22", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7562bce977c592f1a43af6128547958bbbec171c53d45dc3045ed9d75b18e522", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f9ec1f9c45425a28a7b4c63eb5c969927f84adf6f4a162ad5af5b1bfe83166ed", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4a119ae42d53426820981b5d478a057b6f81d2b4925d7cfc3f10171dcf0b8f4d", + "regex": "(?i)^https?\\:\\/\\/fwabsc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8da7ce3b4e6debc0935fb7ce33f0dd99a47e95b973b5209da6c41ab597977d93", + "regex": "(?i)^https?\\:\\/\\/nqdshq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d2ed99c0cdd7cbf1a0dda56db1c0910f922582bcadc9a7fd95e67a4697a4ecd0", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2cda2ec4bdea9242f8af2789278bd4c27b41ccc9328ad5508b89cede608986d2", + "regex": "(?i)^https?\\:\\/\\/ngaongo11\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2b84bd3cae6903401a9e2ee4553412ec921fcb84541c4a453c560262e7329c22", + "regex": "(?i)^https?\\:\\/\\/bsdfhw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "03e2d7283e7780eb7e457b3a68e775ff97e898db50e38fe50f9824376eb00a5f", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c0049ca39f8b2b2ffe7eeef28fb3e68616ffbd13ebae9052e940324902306989", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "15dc5db5224b5b0f6b7c38df51dbdd4460488660d8c9ff229bb7e841a979881c", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3cf213ef0b28dd21e33335398b500ddbaa3bf168a50536b01e207c12649a3dcd", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ad459a697b4e45d35c3c76193c368ad0e49a489a4936e18ff8f1b89ad579b3b7", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d29617ec0de6045a0ea2da1472fe3ca142877bff7f71f121e868a961f2aad2b9", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "aaaaf27eba2388e90437e011d6e0049c89bfa9a53a237469d167277c6f317dce", + "regex": "(?i)^https?\\:\\/\\/xzaqxcza\\-qcaeqc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "03f6e91a43ba6bbcaaab6224048aa3b83d657cdb29280f23a134cae792917bab", + "regex": "(?i)^https?\\:\\/\\/ngaongo11\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f4354041a9f870be9ba4bee12768ef303b87a74bfcb09f9e6f16d5983d4e41bb", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a1bb05a6fa88c7f5df10762620e6514633316b8566dfc07bde1fb4a632971da6", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "76de275f26825861e3d8f1e64e226e337864d3b5777a9e9341ff212c0ca4d84e", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "14ab1ab2d4a3c6f6cf78c1fe87b79ab906780983e79b6c8ce1df48fbd853cf92", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2f813145927dc8755bfe59748396ba845fe7af4b526b965685e7ee1cf7850846", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f3ebd6f424928b84e927bdf07e32fd18d9217d63db695341fc800bf4f3c4c6bc", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8991a60f29c48305b86ef14f2e2b8900dc1967b3ea265ec4fbdb1b77f3c1e06c", + "regex": "(?i)^https?\\:\\/\\/xzaqvc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "204919565cf6c80cf46fc76fb8ebc4346913223a8ea73517b5532c880b02cc18", + "regex": "(?i)^https?\\:\\/\\/ngaongo11\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0f50b549a6fc8e199a636dddf0f40638ef36ae2a3adeda7f63febb58ddc9d3b8", + "regex": "." + }, + { + "hash": "6880b933e779700d405f93be1d7e343a69fb5d99a553953fc29bb41027843df2", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ffddf0a253a543bd3916556aa2e8c0afbd9ec2841ab842fc74819bef080a8d6e", + "regex": "(?i)^https?\\:\\/\\/bsdfhw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2f12389a46127787d8c4e3ab8941e32c4598270022d58313fe85e0bdfaa39144", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "daba735d1ba2d465f47077a9f9de045e6191eb7097fa4d29bc9f2f800204eb36", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "19e0478327eac13e121ecc02827c79d62591a6ad2545d8420875fa47dc9ccf3e", + "regex": "(?i)^https?\\:\\/\\/geaqeqa\\-gaeqg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e3ec29059013d11ba46f25210548c1e2c2332cc0c7be3e8718f986292903fea8", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "abafb5347ec6abf3cbbcd6ed6fc1b234163474648576d8539dc838a8f700c0c4", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8633a08304fd1de7198f035d2d03285cd082c728e85a80cfb88cf0c332a9dd60", + "regex": "(?i)^https?\\:\\/\\/xngdhr\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1973dd911f3c198db7ede7fd5f3c8c2b7ba38e0f1490de16564b4e1886badaf0", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d5ddea71fc9501a5c0d2a41b0a2b39fca1a9ddd7740e3694067a045e049c1a81", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "04c4ff5bc0a161ef958cff00d93a3ffd7e8cfb165cc509c06f82fb4e9df511b6", + "regex": "(?i)^https?\\:\\/\\/bsdfhw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "05dd7b42a9c1bf8043d238de4f398c85dc95f76e3d3b45d4b31fa8be55712541", + "regex": "(?i)^https?\\:\\/\\/recboom\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8f9a7665a9364597ee3afde115901e35e9477d84f4187d57b359d64e40239010", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4b2b32d42dddd02ee1ee786aecc4e6477a583c2cd35e1943c1ad8a410a2f2a4b", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bb2d404377351412bef93e732023743d99794c6d8a9eadbcb8f76cb03b9bac1b", + "regex": "(?i)^https?\\:\\/\\/ceaqceaq\\-vcaq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "77718e95ddc3704a77c2d1312bdf5d02aa4d20a7fa056d469dab8474a910ba53", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b0d7d26741091a5bedfd30e093a2faed9ea5d2f133d4f8e7c1b6d9c6f30507e3", + "regex": "(?i)^https?\\:\\/\\/waxxzc\\-aq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f2596b851954073de3037f3d0b0048cd6575331d3f6e6bc4652a3f4c93fd1b13", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0f9310a9b0fa884d5afc92b0af19392f79bbdcd12890275613d5ad6839236", + "regex": "(?i)^https?\\:\\/\\/ngaongo11\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "74211011b5bd8593b1f72551e455c3433b18d1afc6f2f7bad82a3f415827c24d", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "73a15865dbf092ce83e5ca7941f4d65b5183f8cf66b23e61aee97e85feceabac", + "regex": "(?i)^https?\\:\\/\\/bsdfhw\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2ec22e09b9d9a08658a91bad649f9b2b66d03dc9743d21fd48246be33c5e7d05", + "regex": "(?i)^https?\\:\\/\\/dghghggh4641\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1b89a74f60a5f3d6da7e5c66ecf1f19dd927bfb5dbb9cd2ed3eabd36f40b4ed4", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8643951e72925a8f961c5416138f100f39b1ce78225fcfafaaa867cfba212659", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6ae453252efe65ef8ba56cd1266e8c21c34224541f78c618544e198fcea88544", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b585e3d46ae9608faa9f4000ad8b8cc7990606e745eb111a81ce0c8062315b5f", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d3c048137609a892c7bac675e798ef51aee64fc7a9cdf1a6f72c73a2f798472d", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "341cfeff9e3c924ba01274b0eef963a2a8b2b6f348ee68cd054a6dfc32fc12e5", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7456eeb1f5b322a689134588537f68bae0ad0599aafb1ad24116e5a24798cf63", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "779ae9571f1b2113f345566ceb3f9a85f453f28c91f9f92ffe902a35a2175d89", + "regex": "(?i)^https?\\:\\/\\/www\\.bgnxdd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "914d7cbf6fa311288c76a4d518d59f9de169aa2cddbde6f2fe900cc099907eb0", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a8a21ae5c535933bb2358170b499cb4500efbb50b0a61ecf199b22bd5584ec66", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9203e8e4926b87f9a57b3eac7b9706e5805da16ad08704530693a735ed179f95", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5bf3827cd0739a3cf77566a0c8cdebf3baf6d5da2092060a1f6c008413cd5eee", + "regex": "(?i)^https?\\:\\/\\/nqdshq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b0a3353b53e5adf29d9e6d2e1c20b47690e80083d0069d7fc29540edcc6aa547", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0058051b31952fda5df093b281612f69da60a45347935b244936bfbaf24791fe", + "regex": "(?i)^https?\\:\\/\\/nqdshq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "425c4954dd073df5569655d18af462f6b70f8308fac3c2f4a019df0c8fb4c280", + "regex": "(?i)^https?\\:\\/\\/bsdfhw\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "031e6a5e53386e4d58651441b8b2a2a729cf3b75f09433c410e0014868ac994a", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "83bf4df2e9c8c16da1183f7066d163058f53f0b90d5da512312fad500bd13124", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "992ecad9c012df46c36a242aa176d49f1e05d97d91e8150accad40be0494a90e", + "regex": "(?i)^https?\\:\\/\\/xzaqvc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "20f768e45a5c7cc013d288a7d61a558bd3dabff00732a879651a79dd03d91451", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d387cc48d9e9185e818338bea2efb8e060d87273c8a04dbc0f3a55459e40d967", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e7141e4c447ae097ce2f7cfa6a8e655d56c7e64da6afc52b84060e77b0b78034", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6cd98046cd3d81fc65d16208583b1801c8e23386dc9db3c9c5cd0fdb92d45371", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "62fc6d9e645edd4428384fd0986ea545d1e2c639d45aeb4c2b00268874baf464", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8232cc72a8b1851b534ac20ec62fea02a588a28826b4fdd836bc7983cc6c88ea", + "regex": "." + }, + { + "hash": "df66cdefd257c53984c9fc6d10cbaaedc16c49a767416506265801be325920fd", + "regex": "(?i)^https?\\:\\/\\/geaqeqa\\-gaeqg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c39e45bafdb263e03025324f166a0285d3050daa56cc3479cc2552da7ea0e45c", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b69f0d7eaf37dd26b86e23895c8f535ee35f57abdcbb012e4c95e58389664772", + "regex": "(?i)^https?\\:\\/\\/www\\.bgnxdd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "dff432850bd250d194083d11f12a10086b7374f058bac2b727c82a4c6b10e606", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f9ac2878df6875c711937990ef367392fa35394b1464e10ac03afcda59622990", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "66fbbc4b058c2a8d50af33bc96ab0f4ec2db9292d27089ef32a7d52c9b52b1e9", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "335a04b7614f2a5d4a60d35aef95137105b3155dd78b08c5771a49c8b4c4d55e", + "regex": "(?i)^https?\\:\\/\\/www\\.bgnxdd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3fc009f05ce4730d68338f70444ce2fe0cf946b98e394ebd1c34ea30e529f5d8", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8f9af4b2c625cbb5b6f991473e4025e3558c1a65fb85e130f25ed79daec6837f", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e6dabe254d0856e413f9f2bb7f4f12b80cea17a3e5f5bc15fa617b1ffce3ccf3", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "958646ca914f06602bc10df8ec0c2790636854a7f8d437a1dad8a703f40a7f7e", + "regex": "(?i)^https?\\:\\/\\/www\\.nqdshq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "05b7158dc55394980c40a31f06ff3d456fe40c935960f5c7ca478e224f7eb892", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "13721e387a46a980cceaa9d905ea07c2a2692dd3138f6ecdc479aec68d584a4b", + "regex": "(?i)^https?\\:\\/\\/nqdshq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b0d73216dfc6f2577a2a8c56ce406054d948c12187dcc8b7ef076f9c99f4b110", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8794763c60ef16a586d610411f0e9dc0607d6fac66f0dbeab7d567fbd5cca496", + "regex": "(?i)^https?\\:\\/\\/nqdshq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2286b3069664204a760deaf223718f3043ffa3c4a4f3d3dd11e5972cd075f7b4", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4a4e22d5faa01dddd05a8bf34f0e0d52eb3ae6c80accbb7ef445c755478ad1de", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "32b1f8a3d99d414e2ca740974631c04cbca217b19c077aa6a18840444cdbd518", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c43e3e2519d92ad7f5425ae18c43ff3b8b6d89445c010db3636adcdbc650e4af", + "regex": "(?i)^https?\\:\\/\\/dghghggh4641\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "be527ffb0f4ff0be9abc18519cebd10e8a8f8199208f8a02f404dafeed46528c", + "regex": "(?i)^https?\\:\\/\\/www\\.nqdshq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "286363ae4017741ba833200383266a744f00d627038a0d0f928d420d97966534", + "regex": "(?i)^https?\\:\\/\\/xzaqxcza\\-qcaeqc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3169721aaf9b07f8317506797e18c4b9fd88ea5e7192274a9870c1e96f184090", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c33e016e403cf5bbb55cf2aa224a27ef90067930c72c8a5dcac9b4a91abe1662", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3d55709befb9592250db395e532a54eebfba659ad840a8b6090d42844e3e8fc2", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2dab1c2aa1c1193d4093e5def08bd02b230cdf9287ce7313458b7953c88bb155", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1541a60e25cb3b8c2c77337e348f4bc6795b4d0299df7f52225a18017d0764b5", + "regex": "(?i)^https?\\:\\/\\/geaqeqa\\-gaeqg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ce432503ec2c9826ffba22878ea3f1bd504dbd240ddc6ef987b853ea3499abf8", + "regex": "(?i)^https?\\:\\/\\/dghghggh4641\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8c457b286f9aa3439c681f48f5be0c429bf121ed8bea52b65df7176c938e0d18", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "29b320164889445aeb97936c858ed5eae58f04e760181ac12dc61301637d27e4", + "regex": "(?i)^https?\\:\\/\\/xzaqxcza\\-qcaeqc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "94cb37bd34c43aaf404016a697ced62335ea90b55fedb59301b41b415962379e", + "regex": "(?i)^https?\\:\\/\\/xngdhr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7e513858f339f072175b0b0bcaca545a143edb32e96f2ee04e728425c06d2309", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "449a17338cd4841eb89686b5fca31d242c0b3e17cb411337146ddeafb42547e9", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "65679fdda1af8822d22f786d25d5e3bc1eeb4db02df73dd67aab6dd343818cc7", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3be574d0fd121bbe6024fe7ef2104b3e86b6ae3138c851997770f844ba10635e", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "46e801dfa2dea7435021d6305f838024eb49911f8140db47439926a14dc2176c", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d157b73bae2bf866f73b8c761a987a6e34a927303aa4bb5736bb54b324e18804", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "124395dda38d27f5c3eb77b7e9def2ee664cfcc162c7e3ddd8d3cddf21e66d04", + "regex": "(?i)^https?\\:\\/\\/www\\.nqdshq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "714139f7627091c432027d7559c635b87159fddf23c5708de0792f7ee2728fd0", + "regex": "(?i)^https?\\:\\/\\/rootbinder\\-earthwalker\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "508858d2e4d492c8ea85c1c099abb36596cce69facf14d4b2301c83248f0b7d5", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e799da274187fc2ee07b70359eb8469562914f7b9f52deb41c4599f1c263be78", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1a72e333daeb2c57c0c72d1f1ec78f81c9aef37efaf53403306373b745e2e686", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "71b84b3885a48ade022122266508a9949adbc1f1ae1d5789325bc3c70171079d", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a56c055e2d4e6e06072c2ffbfba689adbfbb63275c39859b5d348c0fbc16aff9", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fdb7a9f12042f4e0103a540a13cd7ac1886e35896c0a01ef0615f48d00899232", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt\\.php\\?x\\=3TxtmrUFUqPUT55qA1cwjPak_ZN\\.yvkWr\\-ZiX6LISpeeFZah_xAwUemvPaWYju\\~0nuVAXnb" + }, + { + "hash": "097f50e9853cea097aec4fa41442b716783cf720e93dbb8ddfdf7c1ceffa4330", + "regex": "." + }, + { + "hash": "457851dda8287bc81828f17d4d0b43aa3b2590db127f30e7b698b25d24e659dc", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a7432ea22f0763520dfb7bfb11a0b3ebf2ee81a36e6f5b505ecc5c0b96d01540", + "regex": "(?i)^https?\\:\\/\\/bsdfhw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b23ee7c6dab7da6d3ae8f39d6dab7bd9f0656f80f0b209ee64fe94d5a8827429", + "regex": "(?i)^https?\\:\\/\\/kolmtbhadvurnozaldae\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0f5dc25cb1ce0f02d46f10fe86897e367feeef7be0de3a1154b19e4e738bcc59", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "411587e925cf09ce87773df589e5be0030a4251194fb264ffa58d989cdbbc0ea", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e46e33be311dbf235bc35a5947092ba4ce1365ead658e037f1d59eaa869e0ef6", + "regex": "(?i)^https?\\:\\/\\/geaqeqa\\-gaeqg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ce6070643547d9eb71a16ed5e2b42833662a45a2c19893be8e85ae28bb113a89", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "49324195062064512b42ce0d9e67c4036ad50aeaf688588b3790224a1fbd811d", + "regex": "(?i)^https?\\:\\/\\/www\\.bgnxdd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2a19cf7b499f620eb2afd90d59fadfbd5dcb3e84caa6b3308466d9cd9a0f2b05", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7455b95519f6e4ddd30ec6764b77aa134cd04848865693555a79857e3a5137fb", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f091cad03bad499cae65c692c433c127204ce273f801123bec46de62750e21e7", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "70f3774ae3203d644035fdaac9ee39a60c6bc96496e7d02e76490c779b13d4fd", + "regex": "(?i)^https?\\:\\/\\/dghghggh4641\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d09e940b0eacb60b0d8349dac6172d7ec92c4c0e56de067a49264c5fdd49e4fb", + "regex": "(?i)^https?\\:\\/\\/waxxzc\\-aq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d2439751df03ee9c7cac82b69c1579256c5be4c3f1d2772dac393793ee645151", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "482a65f13e109ac2fcc93cbd4aa1c58bcd2257696144c5dd53a28d189066e062", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ebd81161fb153ddee2b341053016cdfe382c87acfb573a6600dd78422ee37f88", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ca2b981b680b436d61580e7d9443a9fd3533642d2d200bd1c63916d94fd7a7ab", + "regex": "(?i)^https?\\:\\/\\/gvdbhx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7577ef4ebfc5eec6ccd31884ec222aeb8a19533602d1266dd5cdf2a17472df21", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "02849db1304cc9e141698ee3755623b43a23c5e3696e8c92da0db045b915af7c", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ec8312089926ed3cdaa966e030707950112c25e783bcad14ff824d8a1452bcde", + "regex": "(?i)^https?\\:\\/\\/xzaqxcza\\-qcaeqc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "aede7d566472331ad320011ea37a18241cf09208fc6fbc4cd08ad85123b1a992", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b2cd0de7353ee4c41263771e6474f5ad89289b92ad57052fc9b78eac2284620f", + "regex": "(?i)^https?\\:\\/\\/xzaqvc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "eeac2408a13dec9abd2b60730db007815e404dfe3fee5e4b7024d4e2016857a7", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "06baf2b338e57226341e9255b0958e0b4e1140a592e50794b74dfd1303f416c9", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f41b79689ec5bc2e7ac3017675e776f07fc2816b2348779af03a51fabff34e30", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4a1b64c4e71690ece4f6f6579cda64d8fc3bbcf770a7bb6248c5d2e7bffe2bf7", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d9913db7331e1dbe41656a99b8912bf5d67dfecd2ff66d2831da4fde98406b0f", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e3cd0c03cb81c27e12e9f86fb316048c8e29a0b21652fdfcd02f9305d56f1525", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "31708d540f4b90eb287acccaf163dd3e4ec89e38d6d1bfbe9bf390809e5b8b7d", + "regex": "(?i)^https?\\:\\/\\/www\\.nqdshq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "35ed373c7898998c355165b9a4bc0861c049c585f3112c57b2fbfe4142ed1303", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cd61586b106b8167b465a527a29f387af667ff438fd6b5d8213eb5e02f4934b4", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bea130aea66e373e9ab5eefc7c8e019c91ea7a48504bc80a5fc557ce01d80d99", + "regex": "(?i)^https?\\:\\/\\/ngaongo11\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "788d7a7866a21175d3b1c6d65f3af6315bd9dd11aa651e177b1c1bed4dddb528", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tw(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b6c29f5183449e6e770f18e8dba15a928f16dae70a906f3d6d742315f470cb4", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "93c184e87c650752d2bd8a6da57f53f2f5b3bfe56c68d9a55c540efee82a86dc", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3f642aefc3245db810bbe1b7d7a7e28d4cb9ce021ed6b495bde07d6ba926dc34", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2679a61d9ffee26155f3f2007658394f548842dc0247395b9fc0fc602a393659", + "regex": "(?i)^https?\\:\\/\\/ceaqceaq\\-vcaq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "66c94a29264250055c65f2141be6c83198c14d223aca02c5197f993db3eedb62", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e786d7900696dfe09d4e720fdffb5aef41bc2a82c80cabbb949c0dd6fa0a5d0f", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "be3210b0d309df198f5d931bb26527d6aa0082ed8fd7273e8dcf455ad79ddbbd", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2ff231fd98419ec78aa8f8fef696b640dca62cf825a1579b4b5702a38a37850c", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9a686fa08ea29a0003a53ca2699869ea853c1b1ac318ffe6a80f0341bf8c4993", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4b0a6de31ae2856c3ad0c75ff917bf06e5353b3a870489c8d8b22b5673e9e293", + "regex": "(?i)^https?\\:\\/\\/nqdshq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bd07bd92ff9c82e1663e380e431662f7baefd2d1f3353f26ec56dac756ccc7ab", + "regex": "(?i)^https?\\:\\/\\/xngdhr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f45122df899bf946a1e0883062c53f19d09a51fe10fa5f0c035316d9d19f18e1", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "96099452b2b113b36350a70644689ba1271d094bddc38d2bdd57c3dd3df637a6", + "regex": "." + }, + { + "hash": "585829e0a5337a60d7978b23df5d48a647a0b238e54c6116cba3f31a36d36d9f", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a9c796c506700f6da65147eb04e01f5e828269f769ec1158ca36ff0a93b84f1c", + "regex": "(?i)^https?\\:\\/\\/fwabsc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e0fc769f9158bcbf539cd36306fb77d98250c07250910f8aeebf951938c5141c", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4dd1dfa45f462918963a7b68ccc2d3030e176add6ba48707a1d82e957dc7ac54", + "regex": "(?i)^https?\\:\\/\\/dghghggh4641\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f74fe1ce98eaf3b95ddd46866e4972d058de7a14f02785eed30fbea19a1d2dd6", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3b06c4795d2457f10a324feb91ffb9c5b29a73b0bb65ab532c9e07da444ee2a3", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1fcd86179d6e40e4bf6d092912365bc059276af2cf41df1e69bbd27e1196a2ec", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "117fc4a6ffbef36ef5d98e18380d87c6e656f81990cdd63b6ffd18f576f0889b", + "regex": "(?i)^https?\\:\\/\\/dghghggh4641\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f99f9ff8d35fab3fe386d0d6c9f6d48ee32a7abcba3fbcf9c7af1b72039d308c", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cd5cb7465db72ef32b3bc4d20957be14e95d8c8c5e38f72b8756b011c19ab664", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "84792b42ff1825d7c2b4fd1ad56c6f0cdd536a91144f7f66283504500c5dd8d5", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d3d940f854698a55d93e71d466c33dbc44082b4afda25b66721b001bd7d3ae87", + "regex": "(?i)^https?\\:\\/\\/www\\.nqdshq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e22d2ca2fbe52346f5ccc3f66f197c81774114ee216c7d7041e378f68ddc0c2e", + "regex": "(?i)^https?\\:\\/\\/waxxzc\\-aq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2b1b75f3f09f26470139f1ef518cba4436cffb358477b7de265a10a11d25331d", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ccc2fb883f3aff2c47d003a2dc7ecb4ecb2b8072fbfe15cafe116b83e3f460e9", + "regex": "(?i)^https?\\:\\/\\/xzaqxcza\\-qcaeqc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a56c251beab478c8f76f0c6171093af63a4db10133afe7df976fc4239fa983b3", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "44c89e6d3d39211990a8d55af70428d82c2a7d108b8369427b9d806071d00f92", + "regex": "(?i)^https?\\:\\/\\/ceaqceaq\\-vcaq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2c21fc118bc6b716c849e947537d31bc2ca9811f4956bb3a0b5c6c20ae9c547f", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e120f0f1bf0dda5d34285dd8276b183cfa172841b14db7348910da5f4982403a", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8248f2b1243620058d414c549a27ee7ad5e0f2fdf42643315328438b06b5aac8", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "226af839f4c4c805dac4bb090c34e48c67ac288c1ced31930988a9d4af9044e4", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b1b52e69aea3019cc0770939159f855a7200237892d720ef5b3acc6d47411517", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b23e6aac175b0892eb8d29598cad35443d77e20ceba09dfccbe9fad15207f18c", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f885182ff3d481392c69a1b38c28c5e9c047ac7c6a0671a3b8abf686fceb016c", + "regex": "(?i)^https?\\:\\/\\/recboom\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "42875b3ce139e5eb88c86a35758883bb02412b08b5dbbcc6971b50cfcea9b51b", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e9ca46fd59e53dba5bc5dc8846912b66434119bc876bde8a2008946758726639", + "regex": "(?i)^https?\\:\\/\\/recboom\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "24e5390796af496aa335d3972f2884529421027b04a4428a46988635d7cbc45b", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "760941e133ee5f02d8269ae4dd70cceb953b16b4ac26256dbe80555d70570932", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a88baf6754792e8eba8575644afa1dfe7bd338f6238476a4ffd3f116e8b072e6", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "aa15f2ccf061a717b6c45bba95b2caa85733e5c276195c438912a7ab61dd1a03", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f390b2d379849675c367cdd714ce7c81bb0c110a2154625134c74d0224bd3c9b", + "regex": "(?i)^https?\\:\\/\\/gvdbhx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "874c6e3c864e8e1843c211fedc2f358b54e3d0efcdba914210e4556c8667d5f4", + "regex": "(?i)^https?\\:\\/\\/xzaqxcza\\-qcaeqc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c919c73c56c8d517d2ff3b014b03f15915ca82a35c25bc95310f6fe63e1df436", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a894289b0426be593530f5b8f066b005273e3edd33ab401350d8ca6e6fdaee49", + "regex": "(?i)^https?\\:\\/\\/geaqeqa\\-gaeqg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cd6022d6e6e7c4c6439d2dd3352df2308f760043d09151ba51f2641182a11747", + "regex": "(?i)^https?\\:\\/\\/rootbinder\\-earthwalker\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "00b2f290402a1bf1979d770c05057468c14868977e8923a9d090d591ac40f2f3", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "28bb13abf4a7ac3342f85f8eb34e7ff0c7224a0ef44c9a379e661987f2883134", + "regex": "(?i)^https?\\:\\/\\/ceaqceaq\\-vcaq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "eac070567e45ef10ce8cf23ca6b1f6224124d7708a5d78927104c62f473f99a0", + "regex": "(?i)^https?\\:\\/\\/waxxzc\\-aq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d8cf91c6eb54aceaccd488e0ba1053a9d880df24a38fbf7ff64a5735f27095b0", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "574c7f99cfbb040f8bcc68929441eaf531b360eac4e9ac6856b87477dfb67b08", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1d9da0954d01fa33f203805547d744c48dd0231aff1a065a088f01bf10a45b1e", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c62ec7b7d5fb897cab5515b2a434f0011e77580f5216d81d872660564952eb67", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "857d34166bd399d746e10e138c0261963c9315894a7ef4f3132b50bbbed1de59", + "regex": "(?i)^https?\\:\\/\\/kolmtbhadvurnozaldae\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a82d73838d87b8f24a2c3ed22ff5bde5181fc6eeede9835afd9dd6647991869f", + "regex": "(?i)^https?\\:\\/\\/nqdshq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3ac781b43269baa05369874330f71d0b2734e1da84bb3e849e27c67fe035f3d5", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2cc5f4b47ff96f0caeb1bf3981cb30fbf300bd1fa6be5cebf3f90db51afd491c", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "361ecba3955d9f03aa1604be427ad99db7ab7a3bdae9ca4ecc1279c92db51b4a", + "regex": "(?i)^https?\\:\\/\\/www\\.bgnxdd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3e111f3a470eceb70792338f9dd18ccb6cbd2a87c726637becf5f17678233a39", + "regex": "(?i)^https?\\:\\/\\/xngdhr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4f004ffa2064d161917561536bb112d8b0cd03f3f714a904a14abf974dd2e9e7", + "regex": "(?i)^https?\\:\\/\\/xzaqxcza\\-qcaeqc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fcbc49b69b675c076062539e6b29a126363a47d966968ce37f05c1b68f9af425", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "85fcf36a17a899ba781a6e676000c7ad80007becf7957439c7ea772f1310d562", + "regex": "(?i)^https?\\:\\/\\/xzaqxcza\\-qcaeqc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "315a1632301ab1f73c5394700531597a368aade03294a7b80c95a71319a92420", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "347c7981e041de35af3bacc02ac4f99a50ac96c839f838a564222972bf5868fd", + "regex": "(?i)^https?\\:\\/\\/geaqeqa\\-gaeqg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "46fdee4b28d58cbb8d4a84671cb16cf3f7d026e1b1fe5886cabddb8fdf9adf73", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "71b70834f6d80c2480385d5f19e98a2746896bfb06e1263b3c15c4b75b9a5ce8", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ff642089cf302f839213d31d07a4b9cd20935ad9019420ecc90b133a807e7689", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ff5b1bc87c6bd2011d8e3dab35be6331e3e53e0a329042c56cfde5f5c3199d43", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ca59043a6e557159316e1c357778a46f1fd8a967dad3eed24e9f00ee4087335d", + "regex": "(?i)^https?\\:\\/\\/xzaqvc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6d921fed4108a1f3f134da94f3d94c71377ddfab0a909dabb16aa224bfea3de6", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "79ee76effa37af2eddab9d76e01cbe3a2ae7c37e0523795825c1fa60c0ad5454", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a45afa9344838782f17405ad538fb01a7cc623ca9c6ec07b7abf55cbd8ad0f79", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "68ecdac8183e2aa4320a8bee58a7f3b50fbb5e8c95c6c2321bacd3297a6dbd2b", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8476de8cfd9ad89014e7551c04f32f4c73738612843f094c3969f5258add1e6d", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "204195d02cbbdc0ce3f33afb63ab56bba6393ba152d68ac166adca774dcb3099", + "regex": "(?i)^https?\\:\\/\\/gvdbhx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9f48631068b332e97070828c9443817cdd1890a3f17e7df6e4727cb031bc43bb", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3d703ea794fe1735aec4169c17e89b2ca3c1f0796c6e3a1e3a104961f63bfea4", + "regex": "(?i)^https?\\:\\/\\/ngaongo11\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a73f77b03cf3a19dec5f1fcb688195ee5e8b7065640fdcdd6e008fb8062c20e5", + "regex": "(?i)^https?\\:\\/\\/kolmnzayugtrbyzaoda\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d8d6a2fe1bea2048c97a3d9bba606c77eca26ad791366e0150a5b30531f69a05", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "737b6a4ddd1e30f08950e6df8a3ee93fc467455ec24c70abf01b28070334cd17", + "regex": "(?i)^https?\\:\\/\\/gbdhcx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b3545291431295bc0ccbc38ee4edd5cde80e1d935cf6692bfcac55e2b100fd8a", + "regex": "(?i)^https?\\:\\/\\/gvdbhx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "036fde63ad3c401328bef6220d848c3ca89da058d9753a229fd0071002aed523", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ab7dbd95100a4101e979a94b0519200d2d9fe49bc59b86df93cd77cc21e14d7d", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "26ca5b2f9d8cae71d985ce234d8f8eb123586c590b12f059d159a5172049b9a9", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d3cb5f4dcdd8bd997f3a6ac0b06736cd91626317be7d6fea86ea2a43d22e415a", + "regex": "(?i)^https?\\:\\/\\/ceaqceaq\\-vcaq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "37d414af94ec730cc9537da46bea614c18cb4dde149522f03ab77abbea17199f", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "99150ce6062b1e7ac4fa06a2f9b6cf1e3ef61ce65ca1ac635e91fda26cf98df2", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dd4d05cc2ffb40a6e69b3321f851967f8306b365dd24e533d7db404877797bc7", + "regex": "(?i)^https?\\:\\/\\/rootbinder\\-earthwalker\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "985094e3efce1c4d8cedb225c16f036ce09524bf5effebf489a4976166c024d0", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1e2b3c60a4e5fd3c87fab65213f29ce710d6f62d10aff343e73696bc9bd5ae94", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ce3ae280363dc41a09ff76b87ed08c1b3848189584cc3c422a9999f35d6bf235", + "regex": "(?i)^https?\\:\\/\\/geaqeqa\\-gaeqg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8bddfe5036f51ccd2f4233897aee84f27dc4d6be02fa3a837f219605cac88a16", + "regex": "(?i)^https?\\:\\/\\/stormkeeper\\-thunderstrider\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2250465f4f12db9b80b4d04ca7f9c25d31b61f0d90de4d9250948e7d3c81886e", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c6353315c4a82677abae792cedd49fb86d3468074fc7817d4fd4637e30242d3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cs8RF(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "12af4b9a7e14b623b4c8004b1d00a62e02108132ea2b4e393c2650f754882e52", + "regex": "(?i)^https?\\:\\/\\/waxxzc\\-aq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cee03e3b40647122fd588c157417cbae61a8551798cb1aebd99613885e2d1559", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2656b8d619930caac5b15b7a9d01119f2e7b16d8eeebd5e3a75756c1fbc9409e", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "67c428191522424671044937eb3fc058ed335702724e23ca6556a25a27e3bc53", + "regex": "(?i)^https?\\:\\/\\/geaqeqa\\-gaeqg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c9c37d5010da1def605b18e6d881b66f9afcae8d1bc80bf4b01abdae2f372035", + "regex": "(?i)^https?\\:\\/\\/rootbinder\\-earthwalker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8ab4d75188951c341e2b74e96ded118fb22958b0f858ee0711947ee246bd3baa", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "653bde80305b3b38e935c02ddfd70d60055fc548fdffa066b2378b79121ad1dc", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a6bf0544fc66b03d6e4374bf3a9600b3cfc204656025b53a3bf3bb554584381c", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "39f2886b6547618948aa5b20febe0fc11748655152455238e2477c7e3ebc3881", + "regex": "(?i)^https?\\:\\/\\/nqdshq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9a50382c35dc75d3137e2e26794130c5e1cad21a5d1837d25ee8c3b664d67666", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eb545fae3f77d8ecf7da475c00dda371b9641dfb10aa7ed74e50dc3ed78838a7", + "regex": "(?i)^https?\\:\\/\\/gvdbhx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "82f44330f56d35f69a3c4a95e1d0a0f51cbdac5fd2c9a3024e325ffedc0a10a9", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4edb5d11ba0662fbb16f870333c0b934bb7575de152aaf2e38d97b0e0b6a53c5", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b57909ad671dea844dfd1ecfdb73e22a66b8e9f5a5609a7002c8f613cb99a6e1", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "976bf1b9f3205eca8d5abe51a098a12f6b7de4a494e545acafa6d45cc53d2a1c", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7a3f16513d951499690f86ce249e9173ac3a5989405e162c792e1bee1ba45c29", + "regex": "(?i)^https?\\:\\/\\/ngaongo11\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dfb7961552f9b687500fc5d3450c1f22eb2793c0052e51d1f299bb89099d7fef", + "regex": "(?i)^https?\\:\\/\\/recboom\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "085b258f13192f2dc8327b22f39e9cb8681acfa9b43918c8bbd8d086171dee0d", + "regex": "(?i)^https?\\:\\/\\/kolmtbhadvurnozaldae\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b9d808e2623bd86ce7bf4047aeef67d23de39242cad39e8de9093f095be1e81d", + "regex": "(?i)^https?\\:\\/\\/xxxxx1234556\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3201f91101f663f0f398af699e9b3160d46b7c073b2d121bdfd5e94b9caaab86", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c6e64a7bd6aaf39dcecd01865c39abed26f5e07ae3c1b91aa5f4ccaaf9e6cdf4", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8f2d0d6947af94178e3dc8d3c52a9b193d2bd7f2d599850dc4da1b43a5df8420", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6c55454389541743e6e6822bd7a3a2d1dbf0dead1f4621997146039d86081e6b", + "regex": "(?i)^https?\\:\\/\\/eafgeqaf\\-eaqf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c3445ed35c28bf23c21f32fb473a2134bedce37a55d24a9bb026212b6730f488", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "eeb4dc1d1100bff6201a1a56993dc506452ad148b10b3621b3e51b129f53c6d4", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1c40f86df42072ebb61052730131933946959fd57b1103c98c72d61c7dda4327", + "regex": "(?i)^https?\\:\\/\\/ngaongo11\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c1ef5c023587fee0c4786214bb7e2e4bd87d4b260647b64c35527a1754bf15a0", + "regex": "(?i)^https?\\:\\/\\/rootbinder\\-earthwalker\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c00473ca41c464c81d5177a8ab8be307f972baa33f4923a05d4f4cab67b6ed8e", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "192f1be45c054ce7020f41db065012425e03e2ed00eb94aa08a6d55248a25049", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c6dbc5de726b694ccdff23380760627d94a9a89bc5dbf940d56a5cc6b22a2acd", + "regex": "(?i)^https?\\:\\/\\/xzaqxcza\\-qcaeqc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6f5ad00eaa455f925441649f0eea732374821add1810367144c9671b2eb6befa", + "regex": "." + }, + { + "hash": "c3b2f4245ee7593045556d6591abc7ccb6351123b7bbd9bc3701d662713e7c34", + "regex": "(?i)^https?\\:\\/\\/waxxzc\\-aq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3d684c978ed42bbed92a9804040d9bc86096fd4a03401425ede6d415492e797e", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4ee71c60ffe721a0e4204c2968e9530e8cfaf8d1e8c26cace72873d6e781f808", + "regex": "(?i)^https?\\:\\/\\/kolmtbhadvurnozaldae\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "05dd3fd203b356b020d815dfb1a5e31c7787b9617931f7cca6bb713ba4098080", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e4bb6a6b98ca195aea9935771ccebfcbf8ea841b84e2c80fd1a4f551edb11143", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c45f7708e5649c30bf266748c23438ff03da4387823c505ab3f2975a4342ecb2", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6920030e00db7552d05de8b73092b8bc15668fce55624d59b899556ea3a6f3da", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "13d2481b9bd572ed9608ccc3e6a04f3fa075c2a7362163f2f3cc85e8633e8f6f", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "74785dc4a945bddb3bbe9247fdeefb2722cc927b49d9283bbc3a49a1832f4878", + "regex": "." + }, + { + "hash": "6a0f7d82bcfb36cb40f28edfdb362f8d95602b99d2a59e1c11efd2cefb998d8d", + "regex": "(?i)^https?\\:\\/\\/www\\.bxfdee\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0d3f3e3ca12f16428d751591554f2f0f8e0be81f46b17b288be4bbf34d8056a3", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6eae41e9321950d2e049dcd78de9f62766f72376c4efadd1fc9de331ea5ad013", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5341b8a17d114866ec17112d7eed6fc5e1d864748672c09e02c95f2ad5ef558f", + "regex": "(?i)^https?\\:\\/\\/recboom\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "eda73ad2aeb51cd370f590b8505506231b53fa22172dc43bb457a5de0ceb2da2", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6d43ec483a20c94fce4c53097e4df2781ba3fd81c932555b5b302a723e74598d", + "regex": "(?i)^https?\\:\\/\\/kolmnzayugtrbyzaoda\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7c135133de74c468463e3df3a333c926c6e5319ac50a13ab1a6a590ba35ec579", + "regex": "(?i)^https?\\:\\/\\/gsdgrhe5aefgreatg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "18f2c9bfe87b2cf8c8c2636f94ffcd0e696fb6b2628de514ef0ec352878242e2", + "regex": "(?i)^https?\\:\\/\\/gvdbhx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "96c4eb6f5ae672ad674071c08a42934c52975c81161b6e53a1176ee304105c03", + "regex": "(?i)^https?\\:\\/\\/ceaqceaq\\-vcaq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "62a7a0043258c1ecf56d7479cd0d0c7df9978b4fbc6e8f765ec069f6dc8a3f40", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "22466ca087cfbd8ed1f0727476e9d99dab13b826dcf6db74750271c14cc7c8ed", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4d401f6fa4a715a3a06b560aac3d4fc7eb585bf81fb9167ae19cdc44692ebe76", + "regex": "(?i)^https?\\:\\/\\/xngdhr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "69916fd87f5995826485c94f7e320d41c197b6727e15f332162432a7f20b636e", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a5b2c558fcb4d407b053a6130cde5262c530a6543cb3c1b193204f09fe8d6849", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "53d76e654162c294aff41f674931424223e8ad66172828d478c268c9e1c67ac8", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0b3ab6e89b09bd5f329758f61bcb58fbbc1611b1a7ec7253fc24678f2af23657", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "30410130db59a85abbcf98ad249ddd83e2a5bb5269b6988fd3662d14321466b2", + "regex": "(?i)^https?\\:\\/\\/xzaqvc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1bb06b6bbf1e57b955feef7534e4590bd3bbedde013f29bf1fa2cf151d2cc57c", + "regex": "(?i)^https?\\:\\/\\/aqefaq\\-feaq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e0fdc32211ab17a8b5ba1f18b22e3ea08d506f935e8d45493fbb886d5af2d411", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "957ada8317f232ed8ef8194280ab7e7ee4e322aafcfc7607a5a155de16e6a806", + "regex": "(?i)^https?\\:\\/\\/www\\.bgnxdd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "401eeac5be0a21d5ce26ca74cf9dd1733b2adb690ba63305bd1cfa06d231e6a4", + "regex": "(?i)^https?\\:\\/\\/bsdfhw\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b2c80b0585fd0dff6d7e3c389d915129506fd176d744d367282219edf3721a30", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7421d6775216ed23319f68bef0cda3d894763680b4193e7c5dc09034cf11eea7", + "regex": "(?i)^https?\\:\\/\\/xngdhr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "20a814c45f6f860c95c303fffb23df45a36ddaf29458883705947eb8e575d816", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6b8925bbb84debba45f78f14c0a781f1379cc50c50b0150a72326c6807f4f973", + "regex": "." + }, + { + "hash": "01d6a3bf79db8cce381b6fb30c1b89b0ec12ea1a5caccd302926fb4813aa764b", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "54dcc905f79b063585e1e921f410f26aa3fa71070538731ad2bdcbe93540588d", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f3904979a647e5d48711fc6a255a07d41238de123dae63fe342c2348dee02f93", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3f7f994085b8969774d4d6e222a063f8a51118189e36fe26a384dda07abec2b5", + "regex": "(?i)^https?\\:\\/\\/www\\.nqdshq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8c505ea44e5b5b1123e3000d2ed10d323756e0236fddb1ec9775c457d40a545b", + "regex": "(?i)^https?\\:\\/\\/kolmtbhadvurnozaldae\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8a0b045eb27df758a9907324d3396aa8c29687a0e42ee0c6c8c7ce11461753d8", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c94031805ccede975bbddb4757f1585cad3b61945d57cf80ce4c6b161d5b91b4", + "regex": "(?i)^https?\\:\\/\\/tuolnuhzabvreyoazkdaca\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c301e77f6a7a5df02405bc8934464a9abeb84dd39492a211606583b1854c60b2", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "64e53d17748cdfa9478733f4708dc7b48dfd02cadd647c64acc17307b535643b", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "364d986c9488f670f55117b9228e8567e4faf153dc27db7ccd1e98ce5bf44770", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "314c3f1805b4d2479f583e646d3cf610b4cdab693ba06c70b800ba08a711c0c4", + "regex": "(?i)^https?\\:\\/\\/bsdfhw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0d26cd6922e4aa687f9fa458a7a5cafeb3e6dd6de65ed0456bd7ab13f78c6611", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e3878fd7c50fff9629441d28edc402ee45850df3f404fb0fff86f881b6fb0e3d", + "regex": "(?i)^https?\\:\\/\\/gvdbhx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cedf10bdc94f73b9df25de0fc31ceadb83214623a1dd7371f1f0560f8d75aa4d", + "regex": "(?i)^https?\\:\\/\\/www\\.nqdshq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "891fbffbc981a6f80580e6e82e0048a94af1f240884aa17754161546d6157310", + "regex": "(?i)^https?\\:\\/\\/ngaongo11\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "347c65bc92fd2e9506d163b1156c3ec8587e44b8466f620c816b2b661c9ed45a", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "742b5ce75d090933a4e8b1055d8e6225fbbe0b5718ea301f89292ab91fea7ec3", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9a91e4ba90e899fe4930e8b13580b08e8b0ea03abca274c2e9b244052c46376d", + "regex": "(?i)^https?\\:\\/\\/xngdhr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "91be2c15c18ff907a961020b2231b53815630b68cc2d6eb503e36fd73aa33a8b", + "regex": "(?i)^https?\\:\\/\\/hntfzs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1df5c300d724bf6b44e88ea787ade17e3bb3dcd8239aa862560807d6ab3cb268", + "regex": "(?i)^https?\\:\\/\\/flamecaster\\-embershaper\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "df62f9baeafb154b195e7360a5a87572301a1caaee6a04739ec8bf1d27d63c6a", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "92357b97f8e6dc93affe960e030a5eccd00f8ef2a33a155d69fb8d69efa1c626", + "regex": "(?i)^https?\\:\\/\\/bsdfhw\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7b25ead7d5468a9f95812255ad04b5a3b8d47e1ead26cb3197e6ef17506257a8", + "regex": "(?i)^https?\\:\\/\\/xngdhr\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f54d9b36db9fd88f285dc26cdc18f2a0c376be12a93fcd2b971be4ab90807508", + "regex": "(?i)^https?\\:\\/\\/gigigigigi1234\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a03d58d6a0e57a0be23bac06d04a049de434bdccc69fbbe150ca99c9f1fd9402", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt\\.php\\?x\\=3TxtmrUFUqPUT55qA1cwjPak_ZN\\.yvkWr\\-ZiX6LISpeeFZah_xAwUemvPaWYju\\~0nuVAXnb$" + }, + { + "hash": "7f429933ac68b51c9bde0a1bec137033ac83bc10af400c760677e4ce4f122387", + "regex": "(?i)^https?\\:\\/\\/xczaqceaqd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dc3fe9706f2e61ef29bf896eb342231195095ff5154dae2940da67c17cf566f9", + "regex": "(?i)^https?\\:\\/\\/nqdshq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4d65d40d6f5a7b0d7bedeffcc90b3096a54b91427f711d211e5339576528b8ad", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e4493ecb33eb553b403c63af2a083076b4073e476a56f70e5be4dfc2c6a5db0d", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cf154d9c246f8fe697120e328f268bb8d292808a5a966ea9fd9ae9a01cf300ea", + "regex": "(?i)^https?\\:\\/\\/fwabsc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7301c8e7ccba648b6f9bf8bf879d37d36f17a5bdb6f8efd6400c7eab70691a14", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fa2b54505eef70519e83d75ba4526478cc5f2fcabd0f12a8aacba6c1583dda60", + "regex": "(?i)^https?\\:\\/\\/kolmtbhadvurnozaldae\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "013c9058d5371c419bad623c9b7c071647d1b46d59be94016994a2e1ca7dea55", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "14bfc476711a2f87e4312459f6aa8012e81d2f581f8e9665c9d3c016a651ea2a", + "regex": "(?i)^https?\\:\\/\\/fcdscvfdsfsdfvdssf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "607ab2405e2356ebf07f736ea3620bb18ca3a7ab9794d23f3a977e36fe6514ed", + "regex": "(?i)^https?\\:\\/\\/httpsgodsdiamondsgenerator2023\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a491a2de1d5f2e495d4e906dd9a1d62d0d94f95c4af96ea89ee143bc3a800fa8", + "regex": "(?i)^https?\\:\\/\\/ceaqc\\-eaqcea\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5df5755a31f7b92c26cebea7f8fe2c2dc3861afc7c06d12eea23a9f32564ba7b", + "regex": "(?i)^https?\\:\\/\\/anildeveloper26\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6a379d83d3aa63631ef47a57600b01a321874f5000c9ae40dfb7a9debd829492", + "regex": "(?i)^https?\\:\\/\\/rootbinder\\-earthwalker\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "993530734e31c445ec9258dbe09b410d62821f18048894739b36e8165080f1ae", + "regex": "(?i)^https?\\:\\/\\/edfdesfewrfegfrfgrd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "88ea482ac0165f71f40dae9d92ca4efddcf82a15158c8a6d4243191129ce5bfa", + "regex": "(?i)^https?\\:\\/\\/ecvavc\\-ae\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9f769fb6df31667aa21faccd4e366bd175fe5873aaa54c8219cf42dc08bbb87c", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cf5d3046a4d8df5666447914fa0861935268f71bb2f4b843e4183befb4921f91", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d362e375b04146cdd089edbcd322e9bcaf621971ebd7bdf4c26815b462c65cda", + "regex": "." + }, + { + "hash": "0c00e27d7d9ba264d7b7dc24cb4d65369d34a533f48aa729d30f0448016a56d8", + "regex": "(?i)^https?\\:\\/\\/xzaqvc\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0496667463d4968630cf0187b40a3c1fd2802b5701821842cebf531c55ec51e2", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ccd811cc7f2b1e191069bf91d4b20a0f8977f963641fdc865e580bc3ed3c0bd8", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b08f70f30d664429a010049c73fe68542984a02f3ec7e3095deaf270e3c15ca2", + "regex": "(?i)^https?\\:\\/\\/cxza\\-eaqcaq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0337173d6c827de5adae2131d2ae9766fa22b57e78049dc8068b0af61480aedb", + "regex": "(?i)^https?\\:\\/\\/nsgehf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "af999cc3ff22d7db6bb3bbed76e9e3a702eaac9cad97caac40ba7dd868adb232", + "regex": "(?i)^https?\\:\\/\\/zxzxxuquqwi\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "83dfe53c5d1140da413a4db19e2b13d082407b3e0563a19fb3f5fe3062239c00", + "regex": "(?i)^https?\\:\\/\\/kolmnzayugtrbyzaoda\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e910fb4c171a117a9de343945878c491fbe9a0440f311f94703c159ac23313bf", + "regex": "(?i)^https?\\:\\/\\/xbdgnq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c0c5f8ac8165d04bca272ec948c04a7f71f6b0eefd612b6294cbe14f24948f8c", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "52a5babfe7f2c1c6ab0b1d40f3b275274f58cbba914ce173a20b894f70083367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=vicsystemes\\.fr$" + }, + { + "hash": "66eee805bff1483fc41d821e2b658cc14283367e6ff1665fb830a221fae4858e", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "320d3ad33afae28659d44b66a5cac0fbf7e1b85bf1f17883180a14b30bac8c13", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdfhw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "40ffb00e5c5ba4e5d15d5e65285af55708b559f6f42e5d74e5ea7c2b5c931c03", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6ff250497d3c8eb2e2aaa9e69b894e9e83aa1e9b873d5fef481b34800f0b8261", + "regex": "(?i)^https?\\:\\/\\/mnpldice\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "82ce01033f74ad280a228f85a9ff5e1897acf9aa9de252f6613345c8deb09b59", + "regex": "(?i)^https?\\:\\/\\/gsdnhq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3081c065ba178972ffd4fa2760cbd07f3b353ccfc250edc96f6beee0c15d5c43", + "regex": "(?i)^https?\\:\\/\\/ceaqca\\-qa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1120dea9f4d0028869c916674706629997e0e83190d445598fb695e757d6c1ec", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3830378d30af3f5a0546f6365c97cd6bba9feb1e4e9fb545d7b706cd7107219a", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d264a5ba1e09fdc317e0fc857f22714cf7683c195168dfc074859eaba35634df", + "regex": "(?i)^https?\\:\\/\\/ngsdhw\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "48f097a414a74bb01a4631dd2aec4096d2d0922307e418f405dd7f37b7f85795", + "regex": "(?i)^https?\\:\\/\\/sbgdxt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b7afc354a216c91d2684f478a93df6199a2167d09c5085cdee06bb7494277509", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "66dfb5884d65f4044e1eaf6c7e944db3dd8df23683e10a85d00f789352446e7a", + "regex": "." + }, + { + "hash": "18a1ff6252322259e6d5c71e8dcc50ad29d47569df287e3c563ee304d3f44560", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "ca06115287a07d5e478f7d0b43586d5beca1b2f12e4f948598ea50da916be672", + "regex": "(?i)^https?\\:\\/\\/bdfhws\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d9fbe0925eeba90cde5b736e55990c0b6d6c985d0778c6820890a092f202524c", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d515ea8eff05c68a844b0cdaba0e9fd8bd4811ee1215271a5eea58fed1d8a1c8", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "df914a4c9634ad4a057e417d3b8e6d9b12e57962b442d1728cbd7df7c40f4b7c", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "10a16d81dec339b4e2376288b249db42aeff9ec80c3559a579c3f3ced8c3ec05", + "regex": "(?i)^https?\\:\\/\\/gdhftb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "9495e892a8b7496f846eb50844122b18a26b807a78674b0c48472d5079a39153", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "00899b679f97b025152427004292ef0899ed632546038854f8592008cab52827", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1ea9c257871a87ce1ac791c09c905d4fc4b11aa34ce2bdfd1b377d8f0ed3cf7a", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fef3d5ee74efcfce4171a24563be80635aba278ffd5a66c68ffe62fe8cc91874", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d419cf5681bf57dcf454917857eec96df79c30e18af85f6ec44ab35139248d15", + "regex": "(?i)^https?\\:\\/\\/ceaqca\\-qa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "87de70111109b01809265c8daf4cc0d59948fcdeedec3aebf198c754a6d3ff04", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8056d96430665940f32f5bd1215ffd2b7c15e7ef8d8b23aaf6dae58665a05197", + "regex": "(?i)^https?\\:\\/\\/cezaqcaq\\-ceaq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cbad79aa353a6bc6c5a02848b5d27c8476c8d7bad66cc554979beadf11c430df", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ac72cf88718ad275ebd0e3a011f1ace17cc43acfe00dec750879675d2df4d8db", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e479d88192205097e736b0559ec63463fc0d6b2bb983781b4980d57bc285d1af", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "d6915b282d936afae920c3a0acfbc3f4327e4e40a652c6447cc1f21fec5fd298", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e6e510eeda8afff78ef6c6bc1a13abe3e3e4422b4c04b6ac84fbb72573fa7a2c", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "eecb7847ba3fdb56535bdba6ddc9acec3103a92b212bb512eb60ca1e6c87f95b", + "regex": "(?i)^https?\\:\\/\\/ndmhcf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4597f8d9a0baa2a9365920b6a1392194e8fd3597fc699458d55af2a4ab9de87b", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "67a49fea522a2cedece568938d2e750185300ff2d6149cd25ebb61d389d667b4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+otp6" + }, + { + "hash": "2964ac1d9edd8c9b35f4de2e15f6c1d8c5a088432826c47a48affb5ea355d5ce", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0d26d436962fed7717e92c33755ce27b2716459a06ce647ca9067d5fc8e1a0cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "0cfe21488791b79c2f8fd878725141ffa0245a6283ef00a41b6cafcc1426d3a4", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6c27f50b5c9c4fd64637f6234b4643f6217e78e5f14b8667f60b200211efc31c", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "95dbcaf423bca4be09c1c3ccbe644defb2f5901fa3cc95d0ea2425d435339bdc", + "regex": "(?i)^https?\\:\\/\\/hotxxxclip30p2021\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "767c0af20138466ae92437325a6d33bf7987af119ad8d9f9b8b5700cfa5257af", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "07ab15a55812ac772b43a8c6eb496ae65c74c5d617092ea5423df84d684e6cc0", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2c3fd97f32bb7e86131b074d3b73d932ae9aeef905d9b4ff60867b4cadbf149e", + "regex": "(?i)^https?\\:\\/\\/nhftzq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ffefc1468504f2f5efb7d41896d6ac256558c50ea309e07af78f218d7221bdb3", + "regex": "(?i)^https?\\:\\/\\/mnpldice\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "14d964ed1588651b7ac0a4d3d00db2dd2a64d6d45fee5e0a8e0999004c0bb8fd", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "db5e8f633c0b7406dda81ba013cf5105ed0cbf882a24985e198958a96ce136eb", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "55fa7a6537afe3b981c239c0729e860cd8224617de15e69628972db7da3e33f6", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e78dc8615bd1f67dae324ed33add0addddfce3ed8bd0ec36adaff4f1fd3c72c6", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0f726f8f58265b689d7d0ab1edb5ebf966ec30db4402fd6095c2fb981ec10421", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdfhw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c722b8085166cc0d8b82231c6fa59a746507d81540fc0cb8e3fbf747525f518a", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0542d28717062cae8c8dac933768db6a5153c54e03beeede312b52d0c9873cd7", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9b11bd9770e2dc67d94ded0dc314e1f8f3e89d7713c4b9afab0f87e8614d1c4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+24181965(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ac5c3b3a8276195f2115dbd225ccf001e3887d2188047c7697167fefc8770ce", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "db7333649f2fc0c8d4447e416c930be0d52c044617075f6e369fb00f22efcaf3", + "regex": "(?i)^https?\\:\\/\\/fvsegd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2c5af9d8e2382d82000064ff588332b729426851b55fbdf23c26a8d208efa213", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8481c64080fab5e36d1e0365102457e406bb8377b7a4302abae14dc765952b58", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "887afc917e81b5773515f8ac0d5574663d2e19f8914d921bc9b0334870790419", + "regex": "(?i)^https?\\:\\/\\/xxxx\\-zzz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459f3a5d\\-f2562966\\-6a91\\-4e4c\\-8c07\\-ff3854a7f8d2\\-000000[\\/\\\\]+TK9Kf7WdYZSfQtB1E4bzgYkdnqE\\=394(?:\\?|$)" + }, + { + "hash": "bab0b7971f9c3de0913c41039452b385ca96c9820f258b1f5ef96363a65ec103", + "regex": "(?i)^https?\\:\\/\\/mnpldice\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a03d58d6a0e57a0be23bac06d04a049de434bdccc69fbbe150ca99c9f1fd9402", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt\\.php\\?x\\=3TxtmrUFUqPUT55qA1cwjPak_ZN\\.yvkWr\\-ZiX6LISpeeFZah_xAwUemvPaWYju\\~0nuVAXnb[\\/\\\\]+$" + }, + { + "hash": "20e140804991fd3cf0698148d3ae3a81a6b1a4d630fd908198170d3e97214204", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1ea6ed3d511206906cd681badabee9ae5f7e0d0beed56c145aa2aa889d0553c3", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "21a665469a7a0e836a4c8f8211c89b3524990e7d5019e1dc20a834c21fdcb56a", + "regex": "(?i)^https?\\:\\/\\/fvsegd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ecd46e874128a4b00ff4f9b16c6feedb60a52b558fed4c41d56258b0bca00560", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b3e59d49d05808ee6c87087ceb70bc70489eb8f4c40b28592d53918f776e0905", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "72d45f1b79115c1603621df67601e6870389b992da9d22a954c9829ea5d0f7a2", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "db168a0e53f80a38a4a873621b889ec5efa657ef411e99d82dcfd1d4f34e6f90", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2c0b1178333c309b49300461de217703b40fe6165d8a3e84b42b45bd4c4d2ab4", + "regex": "(?i)^https?\\:\\/\\/gsdnhq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "627f1d8390ec5d3e9ed06595b0ab5f06ba665848215bca8c3af6891c05b67c77", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "faa06295e11f02fc76c1c556b53e6a51951cff259b74eaf1013d84445000f41c", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "309169c7c487b3175ab00aee607858f42beed4089954694f0f8bf2ca732b31cd", + "regex": "." + }, + { + "hash": "21f702ad4e7dcf8a3eed86eeed8f542653e0fc4ed758107c66ccedb23d849d2f", + "regex": "(?i)^https?\\:\\/\\/gsdnhq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7f0ad84ac16958b35d7fc805574f02faff5c6a89698fd47308ca2efcefa29527", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bb9f2b4cba4dee26af88187c8a0117f31eaded9b353ae7df35a0b66257d7ad39", + "regex": "(?i)^https?\\:\\/\\/sbgdxt\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f8740feccc61b4acaf1ffa29a41ea4e3987ae5283ad2f93f41331f2f5216db5f", + "regex": "." + }, + { + "hash": "a4463eb409ffee6673fea44a7254fa8b2a8c2e35988db04b3460918a3453f173", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdfhw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "807d768c6b4206c7be7bdbbd3550963e4fb234ca2376246789e0f1fe5d9636c4", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-105782\\-104121\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ec9a689ddf9dbca5a86086e10436b895b280fb6c524896b17655365beda13715", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "842fcfb4437c2c10493421e6e5594c539bf1703e49af6ae4f2743237fad36d61", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0ed795709956e119c660ef56449d0ca71aa155477f38f49c341fef26e0a7c4c1", + "regex": "(?i)^https?\\:\\/\\/ceaqca\\-qa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "413af463f497f9a2c57e6e8ec410a8f572b7c1060bcb4abdff866cc7a4770682", + "regex": "(?i)^https?\\:\\/\\/sneggx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6039e48f65b4b5387c59d8dba699232656c01540d24d42507d82a4b6d1e89ceb", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245cb22a7\\-8bdc58dc\\-4cc5\\-4ed8\\-9957\\-59e5c55e7bd7\\-000000[\\/\\\\]+4H9RGnIjj5ZSd\\-bw\\-w3BDEgPwwI\\=394(?:\\?|$)" + }, + { + "hash": "160fee2dd365554eb671411fcbd7dcc0a191ccd49944a47b7444f34ef90ee6c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e[\\/\\\\]+c[\\/\\\\]+01j9wjn66k0088d67hy4kn2btr[\\/\\\\]+01j9wjn66k0088d67hy8as1gvc(?:\\?|$)" + }, + { + "hash": "5b5e907b4e08a9cb2db8095f1ee3c72b6c707f6d4d5da4be7f6787356aebd358", + "regex": "(?i)^https?\\:\\/\\/ndmhcf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7943bce3a843d7cbbbaf3786165ef3c23b597f6499f7f0926aa258d388bb6f85", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d2c7d69c600508dd11a9eaef7dffedd5da25b9f325a4fec8b97a9fe14b19a05e", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "663eea056d9d3bf5ca780a4c1b3fd1a963416119d40cd6d9c178413c5ab9ceac", + "regex": "(?i)^https?\\:\\/\\/sd415z4\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "6ebc1b6704711d9e284ad85b4ba5bf8a98de14688427186333c15e0e6e827950", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b2c52d1d9a5325888ff1e3fec505ff3bcb87c0a66e8e97f05895a48c137ba93e", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6dec0d063880d063dd5e0a1da975c5843d879be08abc226c052f7da441ccfac6", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfhjc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "966b85f0832e7b7752e5227ead42218d6119274f7693609a4833ca8597dcffd6", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "17440a5d14457eb18c90cb033c55ce05bd7eea28ee43a41c8c7557f662c10fa3", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7cda90dd7192a29de1dcc137f7cac7e5bc0e8fd6cb01315d3e1eb142d5f2456c", + "regex": "(?i)^https?\\:\\/\\/mnpldice\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "35e2d3cb14a39755e8c0ed457310d90c4a221a80d1c7ac5b63879a953e0f2621", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "29e791711cc0e9b905f52430bf70ebbaf69f45f74f4865a6d93155179bc3b2ce", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "042620d078f921fd927597c7ff93c40a61463e907f47847b70f1ad2909def5d9", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7a8e35ec8e6ab9d831fedf2f4d145fccf18c951e492ee0aa4d109579f2ef42bc", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "84e2b0b9291f0e5b6c6aefd91740fe236bade3f6fd6c4594529bf50bce25bb8e", + "regex": "(?i)^https?\\:\\/\\/cezaqcaq\\-ceaq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "89912a727b2d00c7c5bdc43489b97fdd188141837adf0639092792b2b540511b", + "regex": "(?i)^https?\\:\\/\\/sneggx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "99afc1c40b2e8af8d58cf5e42f587f61a4fd779ea1c49e414c26b059b838f9b0", + "regex": "(?i)^https?\\:\\/\\/ndmhcf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "28346af14ffbfa023e82cd06a2f51d1e472f88c6d409fc5bfa2e5d0ba8528522", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "7b430005827525a9fb66ead11534d205f0fd42a9839dc51eb8c1262fbfffb5cc", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4bfe646c21e1e53585089676c514bffa32143f0b8fb4c640fdfc6d1fe9e38e49", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "993865a2bd562de84abd0dbc2d893081be6b4d1bcdc55e18f96d0b43ec7ca702", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eece9a617ec05a19c876209ea9e6d3805bbed02cbd448c06971a7abb0cd8d5f5", + "regex": "(?i)^https?\\:\\/\\/hotxxxclip30p2021\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "25c9bf1aa71c500b4993d895ed2652134fc9a2f5d4c0061f176ce090fb7e65d6", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d120d1c756cb6c88b9adb67475169a8643349c93656c2ee097827d648924c75c", + "regex": "." + }, + { + "hash": "502578d106dcf61590104b2633614af4e90f37af222ce905b33f18b9798e8b7f", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e3c6fa1c6374aec34f4b4a6d34b0fb83bd3a8121e7210b1d58694765e2b32f42", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "94f2f5c4a9fb9802c9cef2caacacdc75eea89e060e20cebac152d551ad4db323", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5a404e66ccd0d732d333e3c455cd4824714c1680c9d545ac86451190ac90a5a2", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b96cce462f345d9e576a7df41131f8e2c7a6c6331ff9e342d6ad35ec6a8f11ab", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9f809d3eb85aaf45a4292dddb2736a3a8d1a0e46312179d9cc69f01c5d0a53d7", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4433aa31cc4c18d57f1bd455159e0d7cb92631cdf320ec2f61242c952a525a69", + "regex": "(?i)^https?\\:\\/\\/sd415z4\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a2a4bd73de7cd666c1fed1e9aaa488098aaa67d759830ad0d67b83259185b0ae", + "regex": "(?i)^https?\\:\\/\\/fvsegd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "aabc05b4dcb240ae4a70b0476b47c46b6dc15edaf6f94c693517d005e84914b7", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3b1fd773fa68d6cc2fb58a6e18c1b0fb7c7ed94dd2758a552d9f6482512091ca", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2527c677a69d52e441fffa9bef63140a8e2084f78dbb682e5e72111fb87aeabc", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1c0c3e2d4a53722d103a4277de2967cad78a05f239bf13d63306b26421b365fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+next\\.html(?:\\?|$)" + }, + { + "hash": "ce7d8fccf22b3edb9009a2af1386d01fa3c67a0d5cf42ba660ebad6e4460aff0", + "regex": "." + }, + { + "hash": "3af0b6e0e47d0d16aa3ce667a95be2f2b940487f009084b09a60cb1eebcc9a9d", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1b04e694c52b4efcdeafc5ece9794bb75c3a6a6a012820df6e3840e7077b138c", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c43da54bffd7192dd7f590b12688c13e5c19bfc46b9bba2fdc5aea868826abc6", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "90cbbb5a4a59cd8aa63e9a6cc7b9298576a8c7637d40ef7621e98109735e221c", + "regex": "(?i)^https?\\:\\/\\/gsdnhq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "dc4a6412fcf4279c6bb16dd3e8956650c224c053be1a7e38e9f1b3727b25c405", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "daa0e4c9d085da5a54965854750d89b469752eea8877cfffab39e4edd983315e", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5c1e86a556bc7d8d0e7c7bd7c606f1c81640b1e0859176f87945dfb05360a6c7", + "regex": "(?i)^https?\\:\\/\\/ceaqca\\-qa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9b6d1de83aff3733979fd4f995c2030f28767ad6cc836349dd0b98f775df78cf", + "regex": "(?i)^https?\\:\\/\\/gsdnhq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "56fdb3e241bab28e1bbaf8543712c49f54c29c72b9aaf104554434f7912446de", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c3b22c7c99046e11018fbb68ab58aaad3cd38a690d823470eb3fae8c35af0166", + "regex": "(?i)^https?\\:\\/\\/cezaqcaq\\-ceaq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "99087e32ab33f18acbf4197fa045fa6460fdaeb6e82255bed66548ca9a032618", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d9e75409243c21d707686f65d15168ebc10655f6f2b9dbaa873c277f125b3d87", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "864dd46d809dce15ec298b2bbb4b0645dad61c4baccd25fcf30f069614f106db", + "regex": "(?i)^https?\\:\\/\\/xxxx\\-zzz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5807640f0055378f6c7996a2b96561ea08e5f06b9d8976a2cad013c03571b605", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "58c31c70f733b4e391b7e51a638a3b8ef2aeed6c41ad2789fb863e54e45235be", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "96a2e23598a14a13f4a45dc42b7aeb27769a3c1e1fd32414646690c9c3471abc", + "regex": "(?i)^https?\\:\\/\\/cxbxcbbcx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "afc0a1aa5ec097636e30279303bf1bb981dcd48a51cca2b8d3c8926410c9d18e", + "regex": "(?i)^https?\\:\\/\\/ngdhqw\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d716d3d17b840ee1228de6133aa9186340f9365b0afaab0cf325f4267b090d18", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "347ca01a1081aa3db7d17f44d7399032c9e83bb642d1fd204605851d8d6b00d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=metalconc\\.com[\\/\\\\]+$" + }, + { + "hash": "fccbf07b73012d90dae47938a3453d3c0ad3a023146d9aac1e05f1481863f40c", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "94d6eda751cf96d365a71ed523c77ae2efc9e0df75769c15e0d6ba5a8bf8ba0b", + "regex": "(?i)^https?\\:\\/\\/gsdnhq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9c759a7b12e56866e958f2f532ba45481c97e3c9164f76bcf2c7375252ab83a0", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8069fbc9d66037b09d9bef847094833be22a21288d4b54cb4e61dcda096cb412", + "regex": "(?i)^https?\\:\\/\\/ngdhte\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3d0d6278c148e7f7f174cda243987b2baab75d9810751b1647135a03a804c053", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "90af3e4d66bf1f931f857e1edc54cf95aad7df6f62b37e2a1656fc822fe4894f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nxNJZN(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e18a399e5f45a1bafd470ef60527f2e54de3c7eb16cbdad7b2975c2917dd6ed9", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8f70feedc9aab11aa9c8c928d70e9b40a89f952f4bc56fe4407355ab40fe6270", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6cf05e18e6241bbf95926b8e519b47ef2f084df4325d1a0c7b41afaba5558374", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7dcec7a11d7c0aed298ea5c7e006186758c9713c2ad1964226cd1d427c0faf9d", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "022d7bd6538f60976bc1b584b4d63d82dc3d00c762be4dea4bc0ac2af408d2ae", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "14b0ed2ff7f1111329192cec68b68050df4a31cc9cb9849bb6a801e334707f39", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "770d2e0f7398d162f2f5e27f033fb60cc1e0b145b145eb45311afee706190493", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "90126262eff3f071404a2b4e3658b102b243029380744fe9d082fcdac3fdc30e", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9356e41506c7102c9697f6f822e0bb3f07477f042e176e61ee70ee8a17688e09", + "regex": "(?i)^https?\\:\\/\\/bdfhws\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "515d0717dada9aedb012b570b81b576e40b9d38c9aebf4307b4f2f4215f4b7cc", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3caec597ed53e806318ed502f74f66ccfa103efe9bd1dc2f1fbb17f8ba0320a7", + "regex": "(?i)^https?\\:\\/\\/www\\.robizidnyilman\\.162\\-243\\-61\\-118\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "097521b24de7cdf827c5c2e51dc746b952d7933e89a0bc0daee2bbb6f791131d", + "regex": "(?i)^https?\\:\\/\\/ndmhcf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9029e278272adad442de78fb655d9071ab4415b3560c5d77e0ed25ac612262e6", + "regex": "(?i)^https?\\:\\/\\/bdfhws\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7e43c42a5e69e09deff36fdfd4d78a2fc11ddf0782cc7739538cb91a41c96ab4", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "34c2b360f030d9fc8d92be8b9bac4330144cc89da854b62405d37267c4defff6", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "892df3aef724715e9955b9ff58df46cdbf650966ff9bda08235b081deaba5a99", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "dfbe4de3c5defe3f34d21be2a3c26b823fd721a9f012c7c7a3623442e422c2aa", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "abddd483488b1b99aa2c11eb996a20604f0781d2d934bc42437f8c5008968a34", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "05e2a5b2a257c70555b65f945328f628aabd08ceeb1c7a9078cf10d094376e43", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b585f75dd053000eb813473727cec4e8b24c58d05bfcb2d361b1ee1e0bed7361", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8e1a4454b0265d1ebdf73feacd984f98ebb03b1ddc73dfede487237ca21e4586", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "c3bd4e67102e1de2b3c3e10ecccfed4e2240de0ef4c0b239fc21188c44c7069e", + "regex": "." + }, + { + "hash": "fb293bc2c768e6caa4b065480f77cb8b3ecfe8ef43e9c4e581a3aa9736b8da1a", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "ad1ce31f826909e88368ba86f09e98d33cda0e68a13aff31b5740a392a008708", + "regex": "(?i)^https?\\:\\/\\/cezaqcaq\\-ceaq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f08ec95dd6be4361f5708f51bf80c89da6518e150b5b061ba997ebceccb1042c", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a9966b9da28735972c14561863f25a080e7effd65ac0e6e8d6f194466347d434", + "regex": "." + }, + { + "hash": "e62b8ad8899976dc7a1081a0cf87eb0cebd7ddfb219162e552efa615b68b050b", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b294a426915440e6ab1b36c9a7f3a58015e4a0f26a05aadaac3828fb360ee9d9", + "regex": "(?i)^https?\\:\\/\\/ngdhqw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6e7efe305458d8ae4bd381a1de90dfef86906bcfa0d91e557d3a31ee52b4c11b", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "faa2dedc69969e14f2a3091d4a83e4f3dae97e4441c502c63f6be5c53b1ccf67", + "regex": "(?i)^https?\\:\\/\\/gdhftb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "be251fd5bc10f86c23a6d3e7316eea3a2239e55d3708862e2b5224e38a7cf416", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "237c35bcb6361e3b8c9d65a943326f0937d9b52ae9cfc38a20e53b41b997722b", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "27a28aa3aee681e5fbd43c53fa7cb64ed1d51ef386860178c94fc1e1f65f7e04", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0d452b605148beff50ab966dd1750189c93bb3b48a93497fe2f2db3cf1766b5b", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "59a719ef3a2cde21cec76ac3eb6ed075993b445c8d08d28836c50f96f92f203b", + "regex": "(?i)^https?\\:\\/\\/bdfhws\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8f24d184f7302d723911ed2f4af1bd500a7bd5d55887a6323ba4299c866c9454", + "regex": "(?i)^https?\\:\\/\\/zvol4c\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "37659b4a61210116062152ba2833de50a8df9e87a75a6b850557c8b78bf518a2", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "27686c3b185bee442e36f03f3c26af3aa4d4e3e4305cd4114395b431fd0fb77e", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e6db941724e8303db5d245a494fbc07889eb4d6129e71d8a49590be5522f1223", + "regex": "(?i)^https?\\:\\/\\/www\\.nsdgxa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d20fb9ab996949f204856c83bccfc2f5b8023ea1e6fde168e5fb0f6225009b7b", + "regex": "(?i)^https?\\:\\/\\/ngdhte\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "aa9c691177e0b58767c4d4ba4edf6ecea713869e5f42dd3d67fe47bdaa60aef9", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "642e2d6396a044c9fb06f51202307de20ec3c22df0fcfd9fb04757429656edfe", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "25d7eae3709e02618bcf713b5068bda7e6c2c15b6a0217d44cc457699d2081bd", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "68c8e7cbc276d7fb9423680da5c124c382edd6b0e94ebb9877c2dd9bbc211130", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "776391335baccb57031d0ce2fc1bb9e217728122d259324ec02604fbe134975f", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3d5eda19add7c1e5f340ddcd595ef4be76a4c0a1ed8f811479e807b41d08cdc1", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4bb1897815b4edd68765b28a12f3989268f8350a56b5b5814bf4236c8b969160", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "16c4ae29e58a0d7faa85faaa96f9a37ffea5ec042d78e5ff0dc14f4839676a7c", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "a65d9ad5d5dbffe847e7581f89374717b1ff129f163d82fe061c0743f847fe6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "3a655d85da457fb9000a0229ef71b1f8695edc6b55d4f63d47a19ffc5f72f911", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c3e7f02bdc61068218137955e558ae96f38f1aa9bc56f6515a7bbfe080783629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "59566ef434358dce20dd7f60f0b1e334a8eada7d8f82480461150346cb8205ae", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "50e174696271d728696eae31faaf1a0fce37fa963455aa7d7a29dedc79491b63", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0e7f4405dc8de972cf4987ba6d93847e5cd251ecc3da145934d94da1588cc940", + "regex": "(?i)^https?\\:\\/\\/sefhrs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "877cded1752693d74c59cd17eba89e63d25ad206842555fcc067de41bdf8746e", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "06a17b3400f7c05835fb74767bf0dc8bf5d5773bf5ce9a867a96d87e8a5a1c08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "4f1e60692aed92974c56ffbe53c53eea37834095f300f61afc34d34e2837a4fd", + "regex": "(?i)^https?\\:\\/\\/sd415z4\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8ec05001afc2ab81184733c6f173a7e1d107a13f4ef66c3a73c0f288bf3d0f82", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f8f81198fea9bbed8aeda3bdf5bab0d2b6dfc01726840de30b38929b31545e71", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "223c480519cecdf48b893be184484396bdff6e4eadd450732280fb693a6eb9b2", + "regex": "(?i)^https?\\:\\/\\/cezaqcaq\\-ceaq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fapstlsplm\\.standard\\.us\\-east\\-1\\.oortech\\.com\\%252Fnel\\.net\\%253Fsignature\\%253D5e38c0285d1c9685563dfcb7fedd36598498ea9a9a9554a945eeebd9aa9024097ebe7e5f540acc4ffd3b13804c82bdf3cf1190d3ffe4a3e91c946f673451dc46237df80b927e4956d0f63ddc0a95287f\\%2526provider\\%253D\\%252F$" + }, + { + "hash": "13796abc4336dae998ec8132358842a0e1b0e509ec9219d97ee5e1c972e46413", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c7422324f38a2600dab530996559f3aa2d41b911c8e90b7f2359ba20a8c88467", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1318c51f2b20ab7bffadb6e447cb42dac25282918af6588bcc52cd6a1671e37e", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3e0fc335200e4ad88a113b2f80dc3e65e22eccf39c52524575da194f1e9a35a0", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d209f12e0a4c24c6c10af19ee52c77d4fe3cc6d4af9f40f8efd92376c7b86bd3", + "regex": "(?i)^https?\\:\\/\\/bdfhws\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7553183970d6e058d9d38e260ab54b4d9cfd6c0273515782b94b74817af22917", + "regex": "(?i)^https?\\:\\/\\/ngdhqw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "89a3ef149418749d75bbb363f97e5abdef36e3e0ad8744c9f0ed2ea1f38c609c", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4fd79b10a6a1ad6ebc323420e0e3a97cdca89004ca34642640c14d7f01f5eb5a", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1e5596fc33f7acdf650b672277a53e3488fce3e441340eb2d0ab527b2393e6fe", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8e4a2b6a98685fbaff27d3dbfd2173394ff08031937f41d034aeb51e4c6fe275", + "regex": "." + }, + { + "hash": "60e9e41c674a207ed903af37895d0be07c17ed3d529587d1b6beb150e3d844d0", + "regex": "(?i)^https?\\:\\/\\/ceaqca\\-qa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a390553b8d15a1079076dff4cb10911bdcf8eab80a64f8d007b8bf2bad44a4ff", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d0f8d12c5bc137b2cfde1f3df2653999807089054c04aeabc9b5c1975f0930bf", + "regex": "(?i)^https?\\:\\/\\/ndmhcf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3ad87d52298cd4efcd872ff6b0d7a8c20a677c33b31c1f598c616b5e4f26e4b3", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1312eb6c8ccb541af8111a58de80a25e81d40a57fdca65e836b3e413c3b5d7f1", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6ca862ad87ae6b27a3f183d13221d073450a3915645ee42eb3addb97139e9c18", + "regex": "(?i)^https?\\:\\/\\/xxxx\\-zzz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "be4bf9543a98e972892bc2d8372559b9916915666f78c8ac3118eaf68843da8f", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "178d4134395df57b403d5560c371be5f180704ddcebe9bb37758e8ea07c5f99f", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3be5702f3f83587ff1ea08ec4db704a27d1c4a89991e74de9623f611ab53107a", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "485a796571296e4eb0e0de8e413bcf8d9a9ed8390d19c611203960ecfbc61b42", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "00c9ccbba940c3479ca4aff689ea9afed3dcad4cc8f219f1c6e81040b0df035a", + "regex": "(?i)^https?\\:\\/\\/gdhftb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f43bb7492f82d06bb4b006104a20b9d8ec44329154231529c02b1339fd6d1c2d", + "regex": "(?i)^https?\\:\\/\\/www\\.nsdgxa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3276c3f2548adb3205c7acbd6cbaf09032f40485d5c877aa2a3aef98e330fd6f", + "regex": "(?i)^https?\\:\\/\\/xnghrz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "82c9c9333cf2905ab0d4664ad0bf35a0e75ab1198bae335b5b936bc8bba12588", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e83631cf132f0773da0676a0a86fe48315c681f0791bde2a94078067ccd0d0a0", + "regex": "(?i)^https?\\:\\/\\/hotxxxclip30p2021\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ad150d8027f6784e8039aa4e002eba5a625a94a01f773ff419ce5e4c32b3ae76", + "regex": "." + }, + { + "hash": "903d2d3fdd18ebd5203e3ee8fb111e74588b47c4eb580fbd6c0a50134d918ba0", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0cfe774ae1e2d8640dcdc9feb3d742b0e644bbfc472fc3b2b1fbb183407c69a0", + "regex": "(?i)^https?\\:\\/\\/ngsdhw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cebd71da888ad6d69cb8f34289fda66084cf8d94b8983a4f8b35044ff37820b4", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "97a23d07991ece9b8844e91ef82955d18891df975ff0153a362c2193f6eda225", + "regex": "(?i)^https?\\:\\/\\/lime003283\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "042bbde8274fa95b9817e00f170c7bc274ba17d607312557c5697e8d52b10694", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfhjc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7a242ca7a0c2a937efcd0ef970e1d4c927719eae751d948146ec92493c752812", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5322de4269a16f723a3bbb30ea87ad203fc9e0b9ca2676598bd243bc2112183b", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0c877a916690c7fe05e464bf8aa37a6b7adc114af0ce6c834fc0a05a88540427", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "c60ab1ad3554715ee8a423d8668a98a2d215d76945c1b79f949ecf3441d77a5b", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ed44efe02d33cf582778b25a14d047f40bdcfce4780808918001078440340593", + "regex": "(?i)^https?\\:\\/\\/sneggx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9e9936d6f7e843f1c50de7164a5bd9c247cc42adb6678e4dfef5625224690c14", + "regex": "(?i)^https?\\:\\/\\/cxbxcbbcx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f62f8ff3f3d9b05f6320339fdb444ef5273cd0e86c74088a3b70ffb47ebf6072", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e2cdb1c590df93af42e52f4f5bae5748a37e5f858d4f0037f2b553451dd9c7ad", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "96228281e0d76d65da4d2cf1acb2a0bbc81ae53aa47ea5524c70e4a4eec7e09c", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7667ac5ed01df1302de00750fcf146661609eb4a4ebce16e74e4a10696e8df37", + "regex": "(?i)^https?\\:\\/\\/gdhftb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5f4ebf46af1763f9d76897aa041e7f0ad6c8b804c584ac5a833fd2588972f087", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdfhw\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "b3c61b2e6464964ab3d8244093bace17d45e832c55f9bb94194d540da088c9da", + "regex": "(?i)^https?\\:\\/\\/nhftzq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0d2b58d061e8243168a2caca70a2cdc8deaf8978cba7cc69b29fd428460afa2b", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1ea9c3f4a7431f832e3c7780a9acbb6124f5cfe90bf5045f8154270844b343f9", + "regex": "." + }, + { + "hash": "6c38f3eb3a3f44242603177b047ddb2d183db34acf20c566655566967c45aee0", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ebc58bb86281202de11a22a9c5493d9088875d98e7182c9c952ff34a02c95da9", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a11a3f3dc4fdaea577d829ec5c691230e6e16771741e41d14c926834c78c5fff", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fb0fa9e0b3e1e7f28636698017ff992c2151da2bede2be582b72c41b57139e84", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "717ce255342e0cfddfd767d4cffdcd2e171b1d9420620e5867f149466d51e065", + "regex": "(?i)^https?\\:\\/\\/fvsegd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "59a1c52afde6cb1717bb6a17e8c7b386bb0a69d9afc8471d02dfc77f4abbecab", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bae3057a2f0161b8591a57e7766eb0a6242b941951824b201c0f7a985c9a095e", + "regex": "(?i)^https?\\:\\/\\/ngsdhw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c02cdae45dc2f762ffe972666764a18dcc12ed19ee9428fa0520418c84b3c3b1", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b008b8f873820490a0959530cf4a66712365f90e160ba17b65ce1ed9337fc3d", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "327765fcbdf652f0fe5900bf9b79816e500faeea4a59940dbe3cd7b04b59aa32", + "regex": "(?i)^https?\\:\\/\\/gsdnhq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0a37f0ca0b2ed68638b879f0c1344585a111775e172f8cef1f933bf6321243b1", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "acacb502a5f976db604289aefb0d6a05520b7df6883df90870019d3578588c90", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ee6dd9617de4d8ab77532f78e9bcf933335abee51315a887ed0fa4719b35c040", + "regex": "(?i)^https?\\:\\/\\/cezaqcaq\\-ceaq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "852f6fbc62611493e0511979cc9e0ee3e44b80b68476085bf7cade98f789bad4", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d7c5a6853a6a7cf3be5b55766b5d7d73bdae25d4547e570419ab492986cbbcfc", + "regex": "(?i)^https?\\:\\/\\/xxxx\\-zzz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0d7ac75d50fad502f1e3704bb61cfff322e6d140bbd9e27846d5f56879ca88f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9123[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3c8fad89cc5962518a7f1ebb9fef8a854547564b13ebbd02c8ddef2e702f7228", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0e4c499d10c3e7d85ccc54be13e500bcb4c45b9389bf5d9f3762f5d15f147936", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-ceac\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e9ac9e2839b937302f717409b474063319a232cd468d185b38b6f7fed31e79aa", + "regex": "(?i)^https?\\:\\/\\/www\\.nsdgxa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3c64383cd2b39793bfc8a02dbe4f7709bb95dc19dfa77b3be98c505f28dd1188", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6aa90b6e63982a7a0c41fed5b389c4182cabbc6d3ab300a2214e45dcb712da3b", + "regex": "(?i)^https?\\:\\/\\/ngdhte\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "09b361ed8cc96bee1fb54e9c2d2ad98fe979152767df85abbb949b8b61b6a109", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9cca8f118fb6edd3cdef1304c84e3a989d8242da50451f0b690d623986da69ca", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "95b178748afca9e2a6fce93af5e17cad46b4996169bb517ac4a3a4f415aa7b2a", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7eef2a2db142e55c71b9becf499fef613f8fa65cd4b2711c22e58a0b40716e7c", + "regex": "(?i)^https?\\:\\/\\/xxxx\\-zzz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b73e30e68b896cb575e1a7f5b23368c5b358a5f8419b2034bad68c35ea1b86b7", + "regex": "." + }, + { + "hash": "f4a8890a124343a3b5144fc8f0cbd4788510571a544bff357758c1c373dba71b", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d8a049569239e3333e4fbb75cdd679ade42caebe48cbc7ae691cf9cf48876869", + "regex": "(?i)^https?\\:\\/\\/sbgdxt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a7a69b63c021fea9343578685cdc1c0643d0b1afdaff56a3909d2885dd7a9f53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9965[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "325cd2a509804dac21f0f374e03ff2f9e01f7801953a5b1ec5f4ab5db44dde9d", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "492b228c3d97259be8afe5f638e9ffc3c8bf51db6dafd891a0ffdddd1fd63a61", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0efe3d3300bb317a7d4a30a3d71b00d896bd1c2708ee4d78d977f05e554ccc24", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3d08ba73e01d6f5f06a02a711b1b7f412d24c57e26bb5b22697ea7fb27bfd8d5", + "regex": "." + }, + { + "hash": "13a239d20740fa72475e4ceec858dd7f4f72eba4a3aa3f8c66907b36acafa2d8", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "1a8ce771e03796dec19a7a763cc36206b0d37a438b46ee3444675a862e48ec2f", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "db6bf1c21a8659012c7d6c24beab8b3bcafb1438956a6d06af701475ced3ea65", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4f40acc604f02c701ecf1e7a93816d0f0427bf5922f67c6ce8291650319fe534", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4f9323a6af5f09dac2d5ab2d680e3729f94bb75dac565bc846c8870b43de8a66", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "45042eb76aa1f0153f36574957f49f172156dd27b8d76b84e512f83960b0fce1", + "regex": "(?i)^https?\\:\\/\\/cxbxcbbcx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d2bd08eb710b021cf3372786a939d252e6987ad31d10c3e817737b1acfc87053", + "regex": "." + }, + { + "hash": "7b08b8097b733de78b6ba74e0cf30adeb0f877bbd3c0f9e40e131ef6c5e33171", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ef394ee18687b6f0e975a9978698442804ff678a5085a251cd2c7527e30a8948", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1b04af7ee072a5627d72846652223d2e1b19e629e3d8d98f97594020ac846827", + "regex": "(?i)^https?\\:\\/\\/xxxx\\-zzz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e02f7711d396c09dbd75d881277a3b02c5112370bd4dd2184c1166efd9e3465f", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6856299ebee66cd0df6171ba657f8d83286c3c2cde6a2f03e2f460715a865bce", + "regex": "(?i)^https?\\:\\/\\/sneggx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1a7aa16ddbf14c88a3f661a69acdf533ea1836c4f942bb3a2b88040a13fe6903", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b4ae9036be760d441c063493df67774928bae108d55efc19ab4bc184ae719b80", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3f7f74de0c6d5cc7c5942ce0b048458b33b9a230bb75127b589097e6bc411139", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8161cada3732553dfc1d9b3b32a9938ac910a25bbd911b0930dbd936c1a13c31", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0824e60ce40ade5914363a60dc4806341ad3bf6ed7354fb690b4ec2e93f53f38", + "regex": "(?i)^https?\\:\\/\\/ngdhte\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "65e73430802fab4c22f80e4d2ce4727e232f06db3f01ca33405bd3fa39782bd5", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9fb2d02cbcf368b5232c2b7f4aeea5bd233c1b2b6f08579c167071984f5dda74", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9b11bd9770e2dc67d94ded0dc314e1f8f3e89d7713c4b9afab0f87e8614d1c4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+20623337(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cc54c762cfe63a3222e28d638e4bb0c066233624c777b2b8c7f69786c1c7b18", + "regex": "(?i)^https?\\:\\/\\/hotxxxclip30p2021\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "226a41b56ab15869806015ff3316e467b2e63a66375bd81400bfb1c661e70912", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ac2780ca129d16efe1184f3c338771f352faf2217d4b703a05907a834d971ade", + "regex": "(?i)^https?\\:\\/\\/sefhrs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "df436e68d37d1e3483321c9263c665c4b260daeb4dc8b4efbe1aff15a01f77fa", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1156e40996ddd27f6caf161a50b908d032a56e30810ce4bf539e39da8383068b", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "9157a35f785e0cbba640ef30dcfca6399d20308de66f4ba982635341f0800c4a", + "regex": "(?i)^https?\\:\\/\\/xxxx\\-zzz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "38b0ba17b8d806637bd9e19b82926fb112114f7d65fc8fa5224de117e1ddd786", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6e78c693e28131f3da8c8fcfd0a997d4dd5905c3b91b5cf8e723198d4fc8ac4a", + "regex": "(?i)^https?\\:\\/\\/zvol4c\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "79dc84e2510e1b74fa8d00d5026d00b5304128031ccaef25632de1c704573e94", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "973e8cf0d8bf015571e816bf33ef79c31f59198e78d4296575087a614f4ad814", + "regex": "." + }, + { + "hash": "2723491a794f397670fe9bdbef2871b791c5052e7cc42274f19483761acce21e", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-ceac\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f1bb694e535a71c0c87a122bb3cb9775128a14207bc85c46f8d1f3f7c02eb688", + "regex": "(?i)^https?\\:\\/\\/zvol4c\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5f6f0de1719eb9042b513e90c5f1f9d62e78c470bd31393291e84aba7c88e49e", + "regex": "(?i)^https?\\:\\/\\/sbgdxt\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1985682b1e01a98e9f91d5ba67248adbc4e75a269ee0b2361365a291b70805c8", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c9135c7cea5dc9dd7f27a66604d327c0ef701cae9eb4a00c2c1eceaa7f7236f5", + "regex": "." + }, + { + "hash": "8fcf566bf262bd959f876e13bd95519ed697e882961393b8244591c7f76de4da", + "regex": "(?i)^https?\\:\\/\\/xnghrz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "98082bd11cac3792f5c8574bf1d78acd6037ef9bb13b76be2b29bafd16d306fd", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e9353cb4fa5103c1e16435689e644cdc8d36e9d47cd56d94446139824cee0687", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "814c62d2342881a89536423fcede063e0c08b96c9e9bcf4a7411c2f7e59333e7", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "275f5fe40e20d76b50dbf4b963b52f307974f057b59df411462577adff3c6b6b", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "eeac8ad01458fb0c83bad266b98ee483203dbe632d8365794552cbb570e08025", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459fd515\\-f0d78b2b\\-5de3\\-4bb9\\-a0fd\\-667c34cc9034\\-000000[\\/\\\\]+8AIJMvCCesqJl5KVf\\-ATNTyZId4\\=394(?:\\?|$)" + }, + { + "hash": "f42e70db519c4394c2e07aa0a5609e50e1569b3c0bebb94dd27e5be90ba14bfd", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7f9b823bd7e208e976f26cb17539d4160e9d3d5537c4dc2ee820ee0d9d885897", + "regex": "(?i)^https?\\:\\/\\/sbgdxt\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924598c80a\\-c06390b9\\-4796\\-4de1\\-a6d2\\-101a166db670\\-000000[\\/\\\\]+CsWE7ZbNaAgsCxfM4JLXlmTyL0w\\=394(?:\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fapstlsplm\\.standard\\.us\\-east\\-1\\.oortech\\.com\\%2Fnel\\.net\\%3Fsignature\\%3D5e38c0285d1c9685563dfcb7fedd36598498ea9a9a9554a945eeebd9aa9024097ebe7e5f540acc4ffd3b13804c82bdf3cf1190d3ffe4a3e91c946f673451dc46237df80b927e4956d0f63ddc0a95287f\\%26provider\\%3D\\%2F$" + }, + { + "hash": "12726e7faf8fc6e32a124b16b257244e012d3a86e0a7d1b174ace201224677d8", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e4842a6ee36c5cd7e3b0172bd99cd808317cb36a1dde88a1eb506d666a920af9", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "af2fd7b90f027565e7430e8c0516ed5c27ab467bef667fadb7cec717a48fe429", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "85ccc9690aa085e66bf155e979a258bdd4184796e58397caf880d1b7fbfeb33a", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fa237298f7bb44e5be7c3265bd21ae12649a164011cc8dba2ba383d89a97b2fe", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?[\\/\\\\]+go\\?abc\\=65\\-53$" + }, + { + "hash": "90333f029e474c0e971c3c819c65f6ca0c0f12245bbe97c2766702bd6b4a3b00", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0426386bcda5438c79c322d01efb4f5c3ccc2c8e9b927fa3bd1643f9406c26a0", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9c0ed7e241887755bdca59da6ab5976d9515f46effb6b5a0b65316402c559d4b", + "regex": "(?i)^https?\\:\\/\\/ngdhte\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "59ec8618c475571ee72e626737ace539991b3daa9ba8ce00f7ea06949a373c85", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1f0a3f2853ed2a70432f9396bb9ba71e422a3fc5bf36098367b9f0e39ac1f0d8", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c83f77c44508b1bd8aa39a62f6696f678b631b25c94721a659b4118a4b925361", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d78d44688e789936e85cee6af19fda748103d7d6690cab3f4e36da2d6051114e", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d3d93a186e6aecee067259cd39f261014b21d18ec5d0c1d1cee07bfa1661c437", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2215a8b42825dc8bd2c6062954b77ac2942b6137aef0af73cbeaddc57ea66f2c", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfhjc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9a635435bcd0a13b78659d3a07a80d364c8dbbbec5a639ced26da0814ef20da1", + "regex": "(?i)^https?\\:\\/\\/nhftzq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "31886ba8eb5005db6fc969ab7a1673c342479b005c3aa53640b712942ff79356", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-ceac\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4b039c1436abb444fd294e6b12672abc55712b990bb6c428d5a95c439292c4da", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "413ab01ddc66a7c2e87cf94ff238e059e230e2b07a3a734dd16b470c82f66146", + "regex": "(?i)^https?\\:\\/\\/hotxxxclip30p2021\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8be73dd464d5ca08c8ea8a4fa309c66a162a6b9f5c999367e65477dfc2079412", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3dc59e8c41e21e44a56a600d2d026df4d262a2b10a88b97098c48720e7c52d1f", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6f06dff3ed24771410b8dc8f73d7ae0b2e7ae255ca7169a1d71747644fb44eb4", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "25971ed36b6759d6b80646b3d5a63a2451bee43337e9d1807ed14d89653959da", + "regex": "." + }, + { + "hash": "befb665b9bb76063e7c8f87feb006325310c364d1bd683106dbf5b9bb63f17b9", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfhjc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2fea332156f1b0752a56294cd362f01193b0523617a118c728858f1c424aa852", + "regex": "(?i)^https?\\:\\/\\/sd415z4\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0156ddc4d03746db7ca4f611bd643b9fddba93e036a58985a4b21ce2f01bd606", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c6adaf6fb46e58b659546f544000b5f3a0c69007ad42e6815dea76f3613da9aa", + "regex": "(?i)^https?\\:\\/\\/cxbxcbbcx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8241e20079612e2a4737656d53e6f09d11e4db3fa4071ae1a98292676a4a72d4", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d3aa5c0ec6e1e22656e3518f4ebf91a1898b1ad9ab07ba60172245ac6b7f08c5", + "regex": "(?i)^https?\\:\\/\\/zvol4c\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "452a06b65074cdd28d13fdca9994ea32981e2d1256f845c15fa04fae08c88a6c", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "467f4e4eb560ed14901b2c0aeeff473f263d28474f07f6bafb54e08bf49b837a", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "eaaf5f6760b75d27da8698a0c2a55c397f9e1beb38cb17c958eb5ce6b4e1d1cc", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4f003710cd934374eb994b73d9d50cbdca612184f0ff29436e7a0c52968e96dc", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "11bb564d8f97f2cf255161235a5f3e4d3b9dad952eff798e63424d28c5ab32d1", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bfcb48\\-055245c1\\-b64d\\-43b5\\-8fc1\\-a230fa1ba63e\\-000000[\\/\\\\]+3UXHg0v5Q_qpCZKdrK0KFXslJss\\=394(?:\\?|$)" + }, + { + "hash": "f90e00768eeeab3347a96955c7106db17504421134038b9e83e5e4f01f4d4d80", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e26d257f2d8a81efd8a1c8971ee92f6dd7dc2770959d56895444a3ef09788805", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "34f20125cf352019499691e01eceb3a4620bcd3dc4532122c5ef534c1b3e8182", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c9b4fd122d4e4d769f87520ea9242ed27622acdd626b806611d65343d1694701", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfhjc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c5a34975792e3df834b09ad5888a18b3d05e22423849d3ee0c68782ae2127d3c", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "34dcf7b3ed3bcad2710712528549f79bd6aadecce779de43505da9aac7136b7b", + "regex": "(?i)^https?\\:\\/\\/www\\.nsdgxa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "d5757f6971e6976e02f1d1a63a999d39da97b726b7238a25dbd85eb38207ffb3", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "60f49e30c94737dc285503270e49ab9143ab839e11d6bfd9c02c2732388a0036", + "regex": "(?i)^https?\\:\\/\\/nhftzq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2f146ebd919e54138068cfc30747213ac80d1bc85313d2934a1335b260da2211", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-ceac\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "160fee2dd365554eb671411fcbd7dcc0a191ccd49944a47b7444f34ef90ee6c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e[\\/\\\\]+c[\\/\\\\]+01j9wjqwmvh7j3s1467djvtfjs[\\/\\\\]+01j9wjqwmvh7j3s1467dqrk4c7(?:\\?|$)" + }, + { + "hash": "d806b50592c59181614cec582aa06824d92781c594602b3d6db37a6ee11e6aa0", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1c84a79dc330d267fb2045c564c2ca283da3185853540663862b5007f8ccfe53", + "regex": "(?i)^https?\\:\\/\\/cxbxcbbcx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "386ab59ab95a360e73a34816fcd7d611a2b74fb815f9baba7ca7d2e9b57cbabc", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dd85290c0eb22212868cc5093bf461f1db90a78c53e4145acced42ae131da2ee", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e8129c02426bec0c44fc072411b89a6350bf007357384bc025c57279ea2200a4", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "77b56d4a43f6505e54d5c783de8fba442c0a4236dd641519bfa31a7d4b2feb42", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4e4da77dc9513c8e35a58c66080d6530a93fab035becca285fc3e255a07d3f15", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d5418338ea3ab85fa09c878fe218090a4d419b9fa7f509508d39a41218578fbf", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "15cfe4e162381973a3f5d58f33902099b8c9726222b159e806fe89368e3e81c6", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "65f3cc039fe50b3c559ba74e9cd9d1ba5b7011e4e81111a852912b017536da9c", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ae4dd3\\-b062796c\\-369d\\-4f5a\\-b4ad\\-e63a1f2631af\\-000000[\\/\\\\]+jUw_szwGASVNwBEDDjCBFmLwrAg\\=394(?:\\?|$)" + }, + { + "hash": "1d97f04454c8ed9a99053c8c83fca04b62d8a03381f2d237e7314fd60852c342", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0957e19614d7d27581ad17e9315b638e6358294ac4e33037629fc61fb267675f", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "06178753b78437014b2fbcff66a2e11143b139cbfb9d4b6af43ec9802400a523", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-ceac\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a2387e8c847047fc2addafb64ab6a2969e4cc931d0bd2791c53039a25c7ba1f8", + "regex": "(?i)^https?\\:\\/\\/fvsegd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "436e4b2017fd9002d44e24fe63683e93ed9a4a98051f1dbc887b79909225ea28", + "regex": "(?i)^https?\\:\\/\\/fvsegd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "817fb97319edb1bf5c76768ccbc0d73d6adb366b24683e013348154e5a1789c7", + "regex": "(?i)^https?\\:\\/\\/sneggx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3b9ae755dc94c5ac0126dc111fc1dc2d8b3aa3d61b4f3061784977dff9327336", + "regex": "(?i)^https?\\:\\/\\/cezaqcaq\\-ceaq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dd2b83fc3fcfac8d9375cc34dc6b80ef9b3eb47e56a40e795ab809af73944314", + "regex": "(?i)^https?\\:\\/\\/mnpldice\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459f3a5d\\-f2562966\\-6a91\\-4e4c\\-8c07\\-ff3854a7f8d2\\-000000[\\/\\\\]+USIxAx3Ogd1cM3HkkU9OjZn3yD0\\=394(?:\\?|$)" + }, + { + "hash": "885bfd3df400bc8ad16a00b09cd207064ee1c0d703c33519781f8587982d182a", + "regex": "." + }, + { + "hash": "25aa2588f522cb6978a16f75fea575929b5be0c63cc9c68f82e5bb93b8aeb42a", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "93e394559a1209704652d29e59da3ad0e7b39578e0c08932ed6acff1a937c413", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0f36f983307fadfaef77f361167bb1195505629ff60dce7cdce701b5de8454", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d0817bc22f6396b4a5cf02205f881f3827f323573265cf117b8047642c9b6fb4", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fc302e782ea75db102b6388678d862f6ce67274e840c225f3ca8869978d71081", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ae4dd3\\-b062796c\\-369d\\-4f5a\\-b4ad\\-e63a1f2631af\\-000000[\\/\\\\]+t4X5ncXskYumZAfhm21EoqMrsLs\\=394(?:\\?|$)" + }, + { + "hash": "eeb70d921fd56d3f33afdb147401e7f27873d23283970148521a615139734246", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "02ff4aa6dca84e7493fe41bda10fa2129a49fac1d5a8c195c45bcec02df9df65", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6a4d445244d5b22cb7c139d0d6318d2b9c0f61a22564b252b0a7f18712c31f0b", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2b2f0a8838b1e52935130e6fb9efd6a57c23e95d7448eaf090ffa73140970efe", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fe35b2523c3714d1732b737573164912e7b6d6922319227cd7a90cf17fb8ed78", + "regex": "(?i)^https?\\:\\/\\/ngdhqw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bece28aa67b5fcc55ba1ba50bed2bea107ad4693d55473e34316bc48c6e43467", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3856ad5587785cd1714ed5aa8a73b4fca2e526e5a9f986e929c464138e44f933", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c2ad8f3cddadf9ba607123b94d88c4474d4c5fbbb6b6b4484be89ab92fabb3b1", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "66c91d17ba5c5e15e1e9ce6b8f142ae8b98139a5220afc835b05a78e7835015a", + "regex": "(?i)^https?\\:\\/\\/mnpldice\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7e859e77144c2f4a51bb98fda451ca86e07f190bd0b9bd12937faf302798ab7a", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1bbcf2683d626efa4e165627b23935552bbd266e6ea22b41f23624da0ff0b837", + "regex": "(?i)^https?\\:\\/\\/gsdnhq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924598c80a\\-c06390b9\\-4796\\-4de1\\-a6d2\\-101a166db670\\-000000[\\/\\\\]+vaYUwnfN2ItczQItuuSUyMs3qic\\=394(?:\\?|$)" + }, + { + "hash": "7eb45b1e3c721cef846bd41ace5f9f7a7f4357fe73f996f8a628febe3acf2bad", + "regex": "(?i)^https?\\:\\/\\/aeceaqcae\\-cae\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "07ab37985221a958eeabc8d44eea42938c66eef1667bfd893b643af138547424", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c0045cff6f03d0c94e2f0d753b725bf866d6c7a7aa53b44807cce01491016ab4", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3a0e0f82282187d3af4c871f5549f165556fb7c1199e5e632197b6b56eaaaab7", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a4bf6573b4f49194d27b7fee23163ca4d917d81c54ac4a7275b575aee2abedb3", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0799bd3e511aabfa246040b15edbc36d286f6711b2ee0d4574f704d7ee7fa6bf", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "944376cda1af9f0a315897a65db88817d34b48ee90fac728a3de950cf9091856", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "15c6f5954067641ebc11a84c9ee53fae9ebf10ec4d0f70ced342d091df79841f", + "regex": "(?i)^https?\\:\\/\\/ngdhte\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "ebba78f19c9731f879a6af65318d1545c52566feb5636681a392016263b28025", + "regex": "(?i)^https?\\:\\/\\/sneggx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7ee9e69f96e3c93be1dd0af707a319d0a4d1fa70d86599a01c7ea95cc22bc793", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfhjc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0709ab0beda580c2c968e134451a2d38708780a73b263a4559fa61b59a3a7975", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d4f61414b88b84d28565e555642c52e0bec50fa552e195c7f15d25063dc25fc3", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "05df9120272f275f52d295e6c37ef925f9eb49ef4d91f1473ff69cb3689f2724", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d0f3642672e8771205c5a9b7f24fc0f4a218f9cd52a5c42e93b4d51eeedb1acb", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "36c8643a6731e6da292af636524d811d4fba3213f49b04c5faa685b360b8010b", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdfhw\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "52a5babfe7f2c1c6ab0b1d40f3b275274f58cbba914ce173a20b894f70083367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=vicsystemes\\.fr[\\/\\\\]+$" + }, + { + "hash": "87369dd795fe2b3caef11cbd99ff9e87740bc04239a8fbf5226c4a3fcde6cb9c", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3a2798ec38a8b59824c824b31876512f0f5d51342c9215af8a7cc6cdd4b3eb8c", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5234480b843455602983bea534872252739233ab9c2ae302254b51bc3365fc63", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "76dc2053333e61abe7a2f64ceb6b1f17afd7379d8ac85ba11ef8ff7cc799c0a7", + "regex": "(?i)^https?\\:\\/\\/sbgdxt\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "be58cc631ad60a5d3701dad570aa640e515f07b9d9251433c7a7eb6ef5d7e5f8", + "regex": "(?i)^https?\\:\\/\\/nhftzq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "357a743cab348353dfb6e7564f7d325b6445b769c06add96af8a994bafc5b09a", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6fab52fe78ecc85879b55e7d58416067ab0b8a11c122262a59408aa75e126894", + "regex": "(?i)^https?\\:\\/\\/sd415z4\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a93c9732d53b34864741550881273fda37905961fdac6e5f81f7b1193bb92370", + "regex": "(?i)^https?\\:\\/\\/ngsdhw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2072f697f11c141b6eb89a30b613cfc33f4bfa841ced3621caeaa2faf00850a6", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0361622d7c9442ab71a742e44053b4af151a1aaa15734849e546a734119d4339", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "539780bca83a312ba4d2fee4e391b02fd0a1ea333c684e90c0f96acaa89336e7", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bcf41d3c8eb107abebd0566a9320b1fdd5b939695ea3debeb0df208296b6402f", + "regex": "." + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "268d05c9a4c92028270e8fe813f95ec0ae40362ba394c9893d1a73f681998325", + "regex": "(?i)^https?\\:\\/\\/ngdhqw\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "01483c49ae47375ebcb5d5e6e349a5a00f7e04802407108148a6a0f6e36ab974", + "regex": "(?i)^https?\\:\\/\\/ndmhcf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "f8c1b5f2b93af61d98a0123e97038d155b7b3dfe8bb4593404bd3ffe6569dac9", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b947807700f8501032a50b295ec3b9690075e41a586cf4001573a28c485cf", + "regex": "(?i)^https?\\:\\/\\/zvol4c\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b7825297516e7233f15b8d3ff0ae775c8a509e4bdfed103ac2f42a0f1817a08d", + "regex": "(?i)^https?\\:\\/\\/sd415z4\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f87cc267bc51aa4d9ff3aec5c48f518b6017c2b6eb89f4f446e49e6fa6004e74", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b59187a3dfc38dda06b43912e4e12ffe44ec4882d060f92b8e4945ea3b1f6ec3", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "97c62e8cac017c95de21b3fe7ea74018ba7bc78b21ed0ff2286b534f5166de9f", + "regex": "(?i)^https?\\:\\/\\/ngdhte\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3d11acfbcca901979751daeb208376ee187ce5e287acd3d0168eaf0a6103f106", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cd6090a77b7aecdc375b1f9da5a8fe905009be41f0686273a21853eb8916424f", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0035feb67c5a8176ecdef56dcf56b94c1af5b8cc805ab56056102a1da1a1999f", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9b5a587cf5e7705a73add18c978a3df38433c55eace444c1c1deeae764ad8fdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6ea9838b1a5d53f1ba40a4ffbd0e17854ac353889da18fba76d547ddcc99e2ee", + "regex": "(?i)^https?\\:\\/\\/sbaysidhl5654\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "32e5fefe5348e4d1457923ad0df476db7b7a87da0e9bc1b7ce0316c7366b9eb1", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6dc0fd68a49d157a4b34b366b986b98464f9e8ffe6de6eb3864a1bc4e642ea7a", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0b41dd862da986cac0c8a7239efbdf16f3c473e27526a998c99a81de61c020d7", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "70ec2dda1c53d71e3fd36884be43767efbadff334a84075f4f7260661596365b", + "regex": "(?i)^https?\\:\\/\\/mnpldice\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a8b84c4eefb9613d8c49f22ade7400839742175202c48db971b748e80ee8d4d0", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0287e9de58683ca852bfd346dcfcf7fc19c7b6f295952d5d62d14cff86f4b", + "regex": "(?i)^https?\\:\\/\\/hotxxxclip30p2021\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9b11bd9770e2dc67d94ded0dc314e1f8f3e89d7713c4b9afab0f87e8614d1c4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+32861064(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "4d430fa23cba6cc417a7907645b57be0e8dddc6ec5d5e24769010cca6d117327", + "regex": "(?i)^https?\\:\\/\\/gdhftb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "610a12048c413166719c1e9410668e481669de6c6e355fce34392c2af1c53543", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "698b1ffe4aba4eb23dc566cfb7f2ec1eed6ec7ff10c185b1ce79322faac8fcea", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "856e5b15dec91e8037a9d6c314ec5924de953012047b859665fc33cb72c056dd", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a80398da5bd91646a2d824e8d15a20788be9e10f963a1d72fd17cb099d87530d", + "regex": "(?i)^https?\\:\\/\\/zvol4c\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "04d39166a74a4d5476ba05b5f92cb1f1df1fd5b688be4acb6244f73b763520e3", + "regex": "(?i)^https?\\:\\/\\/ngsdhw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "11a7295e405d4c7a96583fec0327c3aff4ea6b8ed22eec21d0ac17e575d666bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=untrainpourleternite\\.fr[\\/\\\\]+$" + }, + { + "hash": "14d929cb702b4801de1a0f8fd71134580853405ec2995b773c3d4bb2f55b24e0", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+cancelaciondecobro\\.blob\\.core\\.windows\\.net[\\/\\\\]+muadd[\\/\\\\]+seguro\\.html\\?\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?\\?ex\\=zeotap$" + }, + { + "hash": "46a71c2e9a94ad316c0cc5a2b36676ec642ec8752c080970ad5e35bbe1b09681", + "regex": "(?i)^https?\\:\\/\\/bdfhws\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "be81222249fe07ac1c0f4274f51a1ba156894e3aa71d0db312f974e37ae98fdc", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4e858e7d46438b994af4eeb8ca44d4375c20fa0664eb9f40e6086256855dd064", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "056acbf2ee765fa92acc1a458e22809a3a8b8f24a7d2874ac9b2e733b81ac040", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c6fa76178a4b8d474b75a63d79cfbb19bc2cb7d296389db7ba298515a55b7256", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "50094151463dcb557f4d4f0dffe3de0d2dba3deb2af8fd31db0e0cb091683212", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "641674b442fe13cd98d87eae3cac0a329585ef75f28bd92c90cb8f25d53473a2", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-ceac\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "18ef8e2a907a796be7514a03dca7191e761b248b3396eed07487c98bf1784a0a", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a340e58f9083326bafd1083227fbf52b7bdb7fba82fecb057da9be18c9496b27", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6713da668cb8f914f77abeadd9dba48fb9b048e5e3ed895d132b5839f97ffb14", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0f71166a9cb6d5a4b8a088892d6e1503999eb6762f5462d257f013fdc67aef21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tn\\.jsp\\?f\\=001f2VQhk2aUwZLdy28yfBbRwHwil9O8mob1i0pftFr3IrGRVnulbNfOrFzN_0j1cwoHGau92sHGr6zzi4E9CVhAF1dvXqDpI5u4XXU67oqEwY_crY4pX5v_mo_oXfPnNws2uMMdcXsPqAHRjlrTOVPso_YJ9blTY6y\\&c\\=axuuULlGswjGRviqEG6D\\-YXnJG67XViVPhP0JG42sAepm3fL06bZng\\=\\=\\&ch\\=oAK81G5DDB9HPbRma6sxKBWBLzWJA9\\-dzMc3kcUpMHAvHAUBOI_KbA\\=\\=\\&__\\=[\\/\\\\]+ar[\\/\\\\]+4Vn4h8Rj0w2U7JN981290297339109[\\/\\\\]+01101001011011100110011001101111010000000110111001101111011101000110100101100011011001010110001101100101011011100111010001100101011100100111001100101110011000110110111101101101$" + }, + { + "hash": "d545f2f840abf36501cd85f9f73f6f45489960b89f406c9c0180abbe7f4dac26", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1add28499115df3fe1c7c1549b2e57cf4d4653f3353f8b722f9132919ed59367", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bcbf6730b3461a9c140f985af9e7b8796e31d984b4a22c30b3773e9b88fa0be7", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d23b547f0d8935a502e7e38394d1400f3cfc79ba2320f76471dfb7c80e77cb81", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "995d1d5a35badcab04dbc551c943d3aa098980299e33114eaef4dac86166bf29", + "regex": "(?i)^https?\\:\\/\\/ndmhcf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "33813721f30782e7e8fd88e4f945ad3a7d30feec34d46bb7a134fb5ffde3eb7f", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5dabe782bd8b1aaaeb5f29914736b8610231265754e5ea6b210e8e479001c844", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cfd12146927bec8e7f9039c25c7ba60dc03aecfec633f328b38bf010c77e4cec", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2c5b99f65513a32bf0aae0780311eed48ce6e0b579103db81c43da8e685023f4", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459fd515\\-f0d78b2b\\-5de3\\-4bb9\\-a0fd\\-667c34cc9034\\-000000[\\/\\\\]+aSOCMYrQSJv2WRYqfsi92v5OLww\\=394(?:\\?|$)" + }, + { + "hash": "f1ae3f33b4911c2ad85e68ebad3b814683c8cbed0b947d1feaeed6f833c77c77", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "72637b5eac70339a03e4803ad58ed293c7c5443180d46e1691c575a24097902f", + "regex": "(?i)^https?\\:\\/\\/gsdnhq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "df41cc2eae7e601bf5b9065c4aa15394ae41435f485cffb791345fb33bed2d4a", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0f71166a9cb6d5a4b8a088892d6e1503999eb6762f5462d257f013fdc67aef21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tn\\.jsp\\?f\\=001f2VQhk2aUwZLdy28yfBbRwHwil9O8mob1i0pftFr3IrGRVnulbNfOrFzN_0j1cwoHGau92sHGr6zzi4E9CVhAF1dvXqDpI5u4XXU67oqEwY_crY4pX5v_mo_oXfPnNws2uMMdcXsPqAHRjlrTOVPso_YJ9blTY6y\\&c\\=axuuULlGswjGRviqEG6D\\-YXnJG67XViVPhP0JG42sAepm3fL06bZng\\=\\=\\&ch\\=oAK81G5DDB9HPbRma6sxKBWBLzWJA9\\-dzMc3kcUpMHAvHAUBOI_KbA\\=\\=\\&__\\=[\\/\\\\]+ar[\\/\\\\]+GPTygaWAP2DSNAB435776762019513[\\/\\\\]+01110011011000010110110001100101010000000110111001101111011101000110100101100011011001010110001101100101011011100111010001100101011100100111001100101110011000110110111101101101$" + }, + { + "hash": "cd609a07bd2ede462e2df345aacf61044822994a62905ac241a14b0f97a924d8", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3920bae800dac8acd684e58e5189babd612d85439f762b44eecb42901b27d2ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "be32e9d520d01fbc8d9434b35b523fea36a126a0c17e5394a856a151b0dba111", + "regex": "(?i)^https?\\:\\/\\/ceaqca\\-qa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4d0b2de35e9f53e950e4e7f32647e5c70106f4ae014e3e5cf0aaca8a90949d7e", + "regex": "(?i)^https?\\:\\/\\/fvsegd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2704fdd6633a6b709a914544969223266c89a6f52065c56140ba317bdd71caa2", + "regex": "." + }, + { + "hash": "2d38bae51f589590f1d2c8010271b83e21555e9cee9f7af02e88406e087c9284", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9604af692e005a4660d7b95da4a716262a0a12465ddfab99aeeef635b538218f", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8585766c1b5b6fec4f7024b15371b5be2d5a9f0ea9f66f52d6dac90273412f6c", + "regex": "(?i)^https?\\:\\/\\/ngdhte\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "51bce423026cfa90cc7ff64529b436a65491e2cf31177cdeedf08f7e85a55e1b", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "eaa93da3a8e00f45e8bbe6f16edfc843300aa6931349bef738f5e737498f9064", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d23d0bfca0ec7cd08a6ca9978118e1a0b64f9963f61c29c0edeaa82dbf11471a", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4cbf8cd5636b97bef211d293c704b42388ff998bb8cde0b9017c4c1aaed902cd", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "43eecd2887666cf22e1b6add84bfee2c6b4deeb45388b969319cfe193d5fc769", + "regex": "(?i)^https?\\:\\/\\/xnghrz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5b90a33fbab14e647c814042685fab782607e54678fcfeada214b3b15f9f9199", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "770d16a240f4b9817efae42c404fd1302fe7e94097a52bedd9b4de6801dd89ea", + "regex": "(?i)^https?\\:\\/\\/sefhrs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a78cbfcb7aedd81feda24851850f04f57da4372eb7db5f70351dbeb0fcb90f24", + "regex": "(?i)^https?\\:\\/\\/sefhrs\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "03aea78ffff4eb1e31da63db1085b3add67d1f41258ebd1eb725d036c35cfdf1", + "regex": "(?i)^https?\\:\\/\\/pub\\-bc557efe2e614d4a904821386da39c4c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0f71166a9cb6d5a4b8a088892d6e1503999eb6762f5462d257f013fdc67aef21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tn\\.jsp\\?f\\=001f2VQhk2aUwZLdy28yfBbRwHwil9O8mob1i0pftFr3IrGRVnulbNfOrFzN_0j1cwoHGau92sHGr6zzi4E9CVhAF1dvXqDpI5u4XXU67oqEwY_crY4pX5v_mo_oXfPnNws2uMMdcXsPqAHRjlrTOVPso_YJ9blTY6y\\&c\\=axuuULlGswjGRviqEG6D\\-YXnJG67XViVPhP0JG42sAepm3fL06bZng\\=\\=\\&ch\\=oAK81G5DDB9HPbRma6sxKBWBLzWJA9\\-dzMc3kcUpMHAvHAUBOI_KbA\\=\\=\\&__\\=[\\/\\\\]+ar[\\/\\\\]+xv4RVptuGzfjFyF981770008614115[\\/\\\\]+011100110110000101101100011001010111001101000000011100110110100101100010011011110110010101101100011001010110001101110100011100100110111101101110011010010110001100101110011000110110111101101101$" + }, + { + "hash": "3ba0710fcfaaaa218ca243beecf8207d1131279d19a701d2656dc481ee6a9c47", + "regex": "(?i)^https?\\:\\/\\/sneggx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "be36589159c9c93146a2d43624bba33ca77676c7aa60d17edfe8cb6393ced5b8", + "regex": "." + }, + { + "hash": "ce3324f3cb7b474755ad9cc123512bd062c846e47dfa0f2b90dd3ee8be4b76b1", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5f2e0a4b8edf69a9d2dd597b2a0ba8ab8b5f964ba047048ce46109e4b04c18d9", + "regex": "(?i)^https?\\:\\/\\/xxxx\\-zzz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fcbced6407a5b78f7a01c58223f460a92b4ec504e30fe80157afcef70ac528a3", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "23ef1822c25e882b3a57b6c3fa9f241a7fbe3c12c58f175b13735598f7ab7f84", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0ceee64def413c8176407a19401e04475bef763f574ef7234a38b10b5b7430dc", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "83286c84eb30a5dc6871981fa78ddd453c83063a75a478d18649b5cf548a68f8", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "aa2a6a866a45aefa0f9ea93e30ea9ea271ededf710862d69b462701f9cf32f79", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1ee02267c8fccfa82c27018528a83ceb01a3f12af36aed0f86b60a0c036efae5", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7f7c25c14d8117b44b7a12b9235823f4b6e1a1630b508d7f954fe4d4b5ac0db7", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b41df9bddb3f88f2e6d1ce981e5bca61c3cae2f1d3aaa3026cd6b1b160dc977b", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d652fb04429d6e4b8e66514c71dcd840ed34dbd5d4a73e8db0c2bed5534740bf", + "regex": "(?i)^https?\\:\\/\\/sbgdxt\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0d7a5c33af716cb1c40a0004a15c0e82c59c76d6635c50fd8d579bcd57ecda00", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a19cbf6763848cd14af57f9cd54f746b478507a5b65743953844261d24c2e9bd", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+apstlsplm\\.standard\\.us\\-east\\-1\\.oortech\\.com[\\/\\\\]+nel\\.net\\?signature\\=5e38c0285d1c9685563dfcb7fedd36598498ea9a9a9554a945eeebd9aa9024097ebe7e5f540acc4ffd3b13804c82bdf3cf1190d3ffe4a3e91c946f673451dc46237df80b927e4956d0f63ddc0a95287f\\&provider\\=[\\/\\\\]+$" + }, + { + "hash": "d1b745e2e2fd798c31889a5bb44ea31dcf94922f929b07d79f29ff77bacbf0df", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bfcb48\\-055245c1\\-b64d\\-43b5\\-8fc1\\-a230fa1ba63e\\-000000[\\/\\\\]+Q\\-QOo\\-mb1Kxqpu_ye1hHuLkOE9Q\\=394(?:\\?|$)" + }, + { + "hash": "e5af3a7aeaa401e7ba2221e2f37dfb3e18152f1baffe49560defa36018d3447f", + "regex": "(?i)^https?\\:\\/\\/xxxx\\-zzz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "680e1e401b9a4521a751991f8a7cfdfe43e82fdb2ccadcc36aed04c65f9d1c36", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "be812ba49b348cb272fcda95902ffaa9a78ccb58752f522b64778f816689541a", + "regex": "." + }, + { + "hash": "d4dbcd45764f94640162a72f37a26b79a7355745a7f2a71ea6af58dffadb5623", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0441939e1828b9053570bd7c936585bc913f039f8489fbc421d7505fafe53e35", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1594e69ec434b7ee2291902b7c243696bee16b1b3bc3063bff5472f1bf3e7014", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "36965fe017b0d8d05b18f4c5ad71573afd9f19595f7865015eea471afd668f8b", + "regex": "(?i)^https?\\:\\/\\/ngdhte\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "de2a48eabef123893226d72312a2b2948eac3309387527e019214f713157875a", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "eebf7c6b777c39cbf0f6454564788604a946752e60e5ee2cabdfbc6ff588ff61", + "regex": "(?i)^https?\\:\\/\\/ndmhxz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8287d35ec5d40cfed63feebb9a3734fb46744ca4ed21b935f1d0f1b104a99c95", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4d522b32f2189dbb763afcecc13a239fd607c284bf11a2b9215a0b99c98f9068", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3baa00be25456095f2475811b9569e3c06ef56a30e474c749aa77bdc8a363d81", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f89b4081f2412d8e0520133e23d1a050c63e0271380eb8fb9b0d4727582ba9c3", + "regex": "(?i)^https?\\:\\/\\/www\\.nsdgxa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "449589856f6161539dff1649435b33feeedc7211554f763471e2ee6d0d9f05dd", + "regex": "(?i)^https?\\:\\/\\/ngdhqw\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e4bbe93cfed2f966ea6261283f62ff02ae8ed19f4ddde4d4664a66799d2cf1cc", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "c88ea3b56194b614dcb2baafb6b3cd221503d02a4f401cf92270400867c9948d", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ac5132e92dbf619245e3a0c42d85a0b996b949cf0284b717802f34f1ec1780b1", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "99f66cc1e59f38dc322430064b17ae225594eb1e89d35eb0638d03599dfffa16", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "711109e1659ab28b8198c1d3d05fde61ddb58c063df077790ac6f3b2d86374ab", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-ceac\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "94741b0f9f5de83b02afb4f616e4d3fc568fba41a18e95e9b0f333b012740d39", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5854c698138318a57759b44e712e1fcf7b0b9d08e0dd885860f3e4b95d84fa4f", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "72af8a8c9bfdd4ef171ef328bf2f5eae8c93ded1efe8265e9ff9ad93fe411e86", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "edabd0db31954a7c91217cdb5d28adbebd570e5fd3b2a9aca3b10291d648c636", + "regex": "(?i)^https?\\:\\/\\/cxbxcbbcx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1801d0e1191951f6f3300dca86f686282edf241809c6c3ed0960e7abb167ee1c", + "regex": "(?i)^https?\\:\\/\\/gdhftb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0079d451df3a19d2005959c9ce5523ddc7f4f7f24a811cf4433daa7ecf989bc8", + "regex": "(?i)^https?\\:\\/\\/nhftzq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "35be65de564275f0ef4c0528a8e6c67127846572db83749b38173999fa089e96", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "df55b6a76631ecff6927811814c761c53d7236ddefe4b6f3fcb500367532123c", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "477ebb6c0d36363f09bc5f777e03a72935d7c4b18e4266ac40c45874b777a1ae", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "34d00ae18a82ff8cb7eac2efce7b9251ab32b6fc717df8ef931dc9d1d419f1bf", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1240652416fa06d32ac3c7773bc0fd4f5ad80a3eb333bc7c9bbb7d971ea08add", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "737598dee1fc3c3f477b2b24de829cbc33809f1beb3b08a3058d72eb630e3625", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "315cd0ab7d0b6815370643fc1ea6969ea274695618f9f0f4d55b18dc7d69de00", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fa9ef67b8a813386e84a0bcdf893bf1175c41b1618766c0375fb54509903c32a", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "78e3f1ec7dae79abf2ec896995229264fa24b1ae6ae5e51ecec3a5d5c5fbcd2a", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "71eb3b546ef0f23fa5b8f46051f70feff4dd9d2fdf735e133b637d0ef3a8bfa5", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "4d5cf731d49557d92e464713b26b3d6fd72fe7466a70ee45c08cf56e3d5f3a51", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c1e92c8dae98fcdfb50a533245687676b06f3ab9d26604d674c49d8abe47ec5c", + "regex": "(?i)^https?\\:\\/\\/feastben\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "a729021d7ef5376a1567a52f754488071b90e5256052a9c1b8c91170362c0169", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "688b9b3663f8bf99a29b671c7a66fadcf7ebbb3b379aba5e0a5d2ebb0b0b2175", + "regex": "(?i)^https?\\:\\/\\/mnpldice\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4d42df52b32eccc221e3a1eb5a0b276c436790b2ae11f13e24d73d005f7e3799", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4f723e8ce24f8a5b23fc300f052d8279ffc12f635cb68fc5ec79bbc48b4e3aa1", + "regex": "(?i)^https?\\:\\/\\/szbi45\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "de9c2854bdc6142a56e4c220105544928e9b40eb7438c878fd785a7d68fda52e", + "regex": "(?i)^https?\\:\\/\\/cezaqcaq\\-ceaq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c0e7ffc0947c1f9e1dde8db1468a3fff472f232eed7542a580001846f6275ccd", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2fe8834031b2af10ac9136fc7ab76d410494ed0c035e38d28160c6b38eab2478", + "regex": "(?i)^https?\\:\\/\\/www\\.xnghrz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e73aefc692cb5f6973ce87d7a17ca8de1b391c783bc7411db56e3557344e317b", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "75cd63b2fdb737135fc3ace6783f931edd1313335cb43ecd8168b8c0afa2df95", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "29f671313f704a882bb4a3025d972fba311ea753610174a220f1c54110dbad5a", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f793db68201d95069579b2c4fc11adb93a175efdb014d88804bc00e50d03052a", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f5bb6c7768e847434528d6d593d8c19b9039092a106c83d52b0008ff4a3de207", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1cf95c7fe9a1197c26f3d47f32dd34a1a01a217688da75dee4be58e6304df639", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "726a917b4872b10aa4983cf2be46683b292fb67f86223c2d47f78e58a9162e13", + "regex": "(?i)^https?\\:\\/\\/dzaqedf\\-eaqf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8484468fe82ce37691c9b465c407f1ce22554882259560077675337faa8277ef", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "043714758111f3e30c37e9b2627886c31f24effe4d53ec82c51076b1b364cdb9", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "c07a0eb1cea44c4e262bddc454485aa882c0eb588a7c3c1c95bec4c7198e93bb", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "14d8636dae7da7e7861a7e2fac8583a660530caaf3c28b74f52ce2dd14c9186b", + "regex": "(?i)^https?\\:\\/\\/ngsdhw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2e978a318e2f5a41a7c50cd153ae46550388c73638063001a8e0a9cd31fdafc3", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "283375d15fbcc3e0d6eb1995d3f5d3045e2ed0590aa5789b584a70819353382a", + "regex": "(?i)^https?\\:\\/\\/www\\.nsdgxa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "954f576a736623dc46353880041f22a3c086d55bfc5d4a239b613fd3bb8b72b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "ad78fc03a35fc8a09af8ae4d62e00395061054c5600c1d5f1e45d1650ca06bd7", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f1c37fbf7bcc4de358fa1faf34ba039844c6d0b0e4efe6aeb015b78cfa39589d", + "regex": "." + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+cancelaciondecobro\\.blob\\.core\\.windows\\.net[\\/\\\\]+muadd[\\/\\\\]+seguro\\.html\\?\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?\\?ex\\=zeotap$" + }, + { + "hash": "3c0883f7c75d8c68e78fee75edd89ee228cf10555ad43e82b20c9ee45ddac375", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9a91c28f287333d911596c82f8420fd218408bf70804cdefc1b8178fcb100234", + "regex": "(?i)^https?\\:\\/\\/ndfhjc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ea2851a1fde4486055303ac6f25eb448b0293812e26187e23862e2f80bc8a6d3", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-ceac\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f3e96d8f54b65c231b2fed14931d71dd6b2f0b90e7ed7fbd039b940ad94ef312", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1a720af30ec50e639fa473e2f0549540967da5e24f9d9b5c818e710033bbf758", + "regex": "(?i)^https?\\:\\/\\/ngdhqw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "44e037c31bde926fb072a3d547b9e2da39e1801f49ad4cda8aa2b92582a297ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "de1a9c73b0a7c3df72fe720d0b9dbcfc47c148396b7fb570f628551c3a912fdb", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fa527d35ece11b77e9a7edfd6e844163f81b9a1d4dbd88ca27cf2085a4afa0b8", + "regex": "(?i)^https?\\:\\/\\/sneggx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "040e60986338c73f98aba887a25e21ec5a1b84b6d1c83c23c65d78053e8b5048", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "73f69cbcbce621339dcfea6092fb7255273e39cbb852b034164f45399f180e82", + "regex": "(?i)^https?\\:\\/\\/fdeaqsdfqaf\\-qa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "751b8b07698f13aaf27c4602ceb8f0d97d663b9ad72bcd0d67cd9a79b03be37d", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdfhw\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "897a5d4f5d7008d0808ad4c5e52836e602a8d1a1456307a711230a9dfb9e8467", + "regex": "(?i)^https?\\:\\/\\/sd415z4\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "78ec6167c86117518151b894cb552f7609295521bedb4904157de9ce35e81346", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "aa9c32b8255c6e93d85dcc657f5a804fdef985b8b8212b747de70a54c2459a29", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3f80b352934d073465496e6fc38bae842ae8ac7809ce54b8a683a7e295edb810", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "37a7be7043461ff3ff73e00cdddc6a007e3c32903b99021f9ef2327fc1ec25c9", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f7ccdd188937a46ccdf14e77a69d10a99cff5e88f59252dc1adb6ba6716f6f0e", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "689dbb32620db526046e4ce5010c0591a31f47649a2d568f8dda3be9468428eb", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "06fb504945645a37b339e57f20c7a4ad9b4bb97879b76620cc955cfcd2bdf674", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "acdbf901ab0d9445ce5f6d570849ed720d4e72fad6aa2cab1673ac85d62de7cb", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7447042dd164bb25bc0ceabeec3a08a4c3471f40ed95ab165c8f0dbb8cf2c677", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1b8981fc9f25ca979393975d0c2eac71a1114d53a2a672257c30618cdc32c394", + "regex": "(?i)^https?\\:\\/\\/ngaongo213\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0cd5ba893545d1ca7c98f13b6e68aeeb8f79505b9075aa5d8d8b71216167021b", + "regex": "(?i)^https?\\:\\/\\/sbgdxt\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fb01c87d087949ec0737b2519956c1752a86893b28bb0497710b30654db333ed", + "regex": "(?i)^https?\\:\\/\\/cxbxcbbcx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a43c15f006f3fe54475e095a7c876d51ed15ef3346ea2c0b960aab0619859a3f", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "4e2c4fe58cdbdfacf4d8e0a52065d9ce5f4ce780769ce353072b1a3e4d92f987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "faa40992fd936af2a283815c543add844086ef411b5301836b9ee57275265246", + "regex": "(?i)^https?\\:\\/\\/fvsegd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "a40447cef27397a327d7374dd990b4621ede50ae330b61f7c28eef2e878d6872", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "805121dfb3dbf29e0ebe069a8d375d226c8f6c6725d86320f63e824aba98be17", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "47ce35f606d9db241715032e1549f590bd709c6cd62830dce4fc6e28834c55df", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4ce7f2c1a7a6f00aa898a173b9654758ce078d52b72560d34b0d0506420353da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "18c0dfe48d0aed6715b15a7b28c7e33d9b270f6862e58c3578cee3989a4a31f3", + "regex": "." + }, + { + "hash": "5577a29d67d0d6e7c4ab0bf3553cc51fe9034c7e2fc811a6aa8ea7babb115701", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cd62b4fdff70ce74e41dc1532423a4593c798e0353e24b7c28c552e783b320fe", + "regex": "(?i)^https?\\:\\/\\/zvol4c\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5b907b0597cbf656986afe42416a0f77335b51b5305428d503a7d5b9ab04f553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "89270b81a6c60a1c5c74c2b4b7bda8a2a3a4981e64bc237a28af986bc91c8c09", + "regex": "(?i)^https?\\:\\/\\/zbabiys\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f50c1b5151b456bc9abda1f0f3d88865ef29dd0246dd5fff604bdec4336e4630", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "35af9aba712d16e9bb285b57695f69e3ae3bc27bc7432f2d28aa6cfdd445fcb5", + "regex": "(?i)^https?\\:\\/\\/ndgtbx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "25ff82532e0201692fd8988978127479522fc81a5cf9bbc4d12ae1d317714e34", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ef592998a0f3b7b50f2a340dba6708650d473b5261641d35c91f5c0fac910030", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "194d4eef6d5a7f7006547fb9c148a9d3a09c347d09ecf7a709bf57f3b403ae0e", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e9b102092bd6d2db87dced1f369d83e828a0b7ad12b0da69e7098427a70724f4", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "edd17199f8e4292520ff9db34586a5acaa44c585fc5198a1006926980abf699c", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "0a9538bcdce0d5e9ee572fb811ba695cfef0c3cc81098717c54b6eb89dd5b97e", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2679c09c68d66a4e144b33aea818a5da090ead8798876298f7bcb8da5522d26f", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d09967ccc18a3cbf6006fc3d41bc481b15eec45b46368175abd1a1fa1cde3bac", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5821b4555c96de08f5155a69b612720eef44a52675346c3c556b22ba00076a50", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3af5547906a62fdd931f73fe545f6bd2c8b89e983117386297e49d2bbf8a5bb6", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c4f266f0c13b4314465da6718cff2a7e66ca066d207a9e584d60ab4d150aa507", + "regex": "(?i)^https?\\:\\/\\/mhcfht\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "134e245ef399d14148bed6e0f5967ffe79463f8df874d86a2b87f5b15e686303", + "regex": "(?i)^https?\\:\\/\\/sefhrs\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "324efa61c89520a3fa5dbc0a164ea6ccd2747848368380fdc435f7566e0ddb42", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "70bc56f20cdc19a408ec60a28b8fd4af0b353d81ed3750541c6f63ad99557df1", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fd74a00891995d9d865e2c66c3658269eb95847694c62832c3d8c5dea7958be7", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e4be427b311e0c6249afa1dc07074dc746401541f1878009d6aa5055f0e9c1fa", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5c33997a1db10857e8d1bc84c5961befac83fbd91bff6eeb129c48171198a668", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "953db6b9b837f0ddd2cef12bc35fb5b39266d55899dfb6f05b067543f9c4107d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "c208bee4ce49affc8233139a38954c541c7daae66074a0c450fe3fb457360c7e", + "regex": "(?i)^https?\\:\\/\\/casmetropolegir\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "6ad1fe8752859dc03507c471bf87a35611148e3919e5be7e28379f56181bc6cf", + "regex": "(?i)^https?\\:\\/\\/gbdhxq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bb9f09b271b8cd886cf2fac7751093b5e2d09862d9786a2d938e83ec897519e4", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0d7ac75d50fad502f1e3704bb61cfff322e6d140bbd9e27846d5f56879ca88f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9123[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "2395d1c07df94492dfb8d2d21aa3763378381a56ff102340f5fcb5212938bc1b", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdfhw\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a2ae65ac1acf23321866a4573c2539733a6e245d178fd739cb6afdfa0ff7af9a", + "regex": "(?i)^https?\\:\\/\\/zndhte\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "41439954281a8c2fb3b265efe7baa63727b993858cabd09f9676e2d0e38e27e0", + "regex": "(?i)^https?\\:\\/\\/bxdgng\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f5e223c4ad5186fce3c79352d6d49b8ea22b3323f6d5693ac5d2fc46b69b6f00", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b0d19608040cace20dc6c0b4ce2ab583d61bbb5cfe2f474a14a347b9f6e655b3", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0942ea3263a28e6824beea53540666bcdeaa0e13b7a7a3e1566f0ad11ad042ee", + "regex": "(?i)^https?\\:\\/\\/zvol4c\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3791b73858bd549cb90456b9279cbdfd05b94f993fe5bd5102fe5fb3569be241", + "regex": "(?i)^https?\\:\\/\\/hotxxxclip30p2021\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f42ea5e2cac59c27a5d4aeb73aedaf31c30ba801b435340cd49754ef82dea20b", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfhjc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "943c025260418d2df6894b7653c01da4fbc053fc615a50aff571f060271fac9c", + "regex": "(?i)^https?\\:\\/\\/maplenet14\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9a2a2a347f590e539f7eeecc595d8499c503313731625dd9e86b2e86816a3b57", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsdhw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "67b1f8cef896dece57fa8e6f98c750012dc501f5c58ebbce02bde22b9e5d0495", + "regex": "." + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "18046b7cca7a0d1a4996136b1ba8320fcfb37a62e61478f176ac1b40288a5596", + "regex": "(?i)^https?\\:\\/\\/ngdhqw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "112bc6bbea3b0e9825928c547b962e82bf97d609e7d614a819e8800a16ca6de6", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "91f50c581ec0b36a5f9277e9ae8e64f80533b5f25291413d093a9a4ba22b1cb7", + "regex": "(?i)^https?\\:\\/\\/www\\.nsdgxa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d5dd4a0c4f95ac573169477742833ed38cb77458255a7b7ac0d570e72228d1e2", + "regex": "(?i)^https?\\:\\/\\/gdhftb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7fddef6b765af725458d5b6d7a1ac4cd2e33ab80c99bbd87d8eef03b039d3b52", + "regex": "(?i)^https?\\:\\/\\/habbocalice\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "dc0b79e7dd6aba28bdcb1752ee588569ba1d8b1537652cd1614bd8ac926e843f", + "regex": "(?i)^https?\\:\\/\\/ngsdhw\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e97ff768587344c8775c00ada610745c5feef21bbc607e8dc7c2b4510374ae12", + "regex": "(?i)^https?\\:\\/\\/hrdjft\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d2c7350aef3257283088726fe2f0f41c99d686e2418aa01701153a5b9b404ece", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "65499e6dbe59c174c14eadf5fc89acb2dcb6226502d84959ad2b432d26e9512d", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "05e228431e442e5b719b3444c815258d2ca45ab60fe85356f73174f8ab992d6f", + "regex": "(?i)^https?\\:\\/\\/ngdhqw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "71e3d6b51ec37fae8362c58234c308d28a2261e33a5dc835fda5947e18ec18a4", + "regex": "(?i)^https?\\:\\/\\/bxfdee\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5ac6d8d59b901e8fdc5ea998656dda8544f9424bc5f2f0017aca3f0a056cb616", + "regex": "(?i)^https?\\:\\/\\/avsfgw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "4a66ffa87ecfe49b189bf657efe24d66faf6391f2ce507e09ed9bcd3914fcb99", + "regex": "(?i)^https?\\:\\/\\/ngaongoxxxclip2021\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9a47208153e2cd1d8026b0f2cc5b6ad06210fd461c0509a9e5707c10458d78b6", + "regex": "(?i)^https?\\:\\/\\/ngaongo0123\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0d1cb4588b87c802093dbc051f4fd4d9106d380978006be6cd45524f694bf396", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2f61a9b2e905c40f85f14bbf008a659d9fae92194d921aa698e992705492be2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "5991c504cd0e5f1defbaf9a76d1723ed5d01f3c0b16c351ecaff7b8a6e162447", + "regex": "(?i)^https?\\:\\/\\/hotxxxclip30p2021\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9d607b9c22005ea1fee1f45e9eb3c330532a208de43f8accea50e951f21302e5", + "regex": "(?i)^https?\\:\\/\\/cxbxcbbcx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f3eb209a31f52cd7ecbabb9042c8a1e7a8748646cc383da396bc3c0d32cd51cb", + "regex": "(?i)^https?\\:\\/\\/www\\.bcgfhc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7bdffd843cc9c4f4c01bb74af7983e565a32b20d9214db2ebc30a2251d3ffb15", + "regex": "(?i)^https?\\:\\/\\/wqfvgd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ec5bfd767bed7bcef198224e2741416a549ca4d3ac0192e0fbf6e209c7baf74a", + "regex": "(?i)^https?\\:\\/\\/nxwdbq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4fb431dd1aa49ace22aeff96d9556046d323e97934dae6dc0d1d14e995838ef3", + "regex": "(?i)^https?\\:\\/\\/cxaqefc\\-aqcv\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d2a8f9c3e1e5ec18c41f2d76490c473aa53855a38e3d38fdfe18c290783ea1d8", + "regex": "(?i)^https?\\:\\/\\/nszxcg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6dda925e0b85ad974122bb997cc733672890f41f33b669b180c67c7d19cb52c3", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhcf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3b5cb13f38c7ae15241634aacc70045b0a7e59d5e2a01d958f852a6f581e7446", + "regex": "(?i)^https?\\:\\/\\/mnpldice\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "20796e3734e2eb88e12bb0747889f19d9471e9944c18cb39c076035eaf8d5e9f", + "regex": "(?i)^https?\\:\\/\\/xnghrz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "63593af848027e1c61970cbb1f558bf79cd4a93b749c7c579eba4b5eb0036767", + "regex": "(?i)^https?\\:\\/\\/sebhfx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "dc93ae432ccc33eda76e43d904f992f4311074fca8779356d0470adc879d4277", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b4e12e6249e0949e5b169f7da46f307587b24951b00a5f057580d76621e13267", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d6526c37f8e55f8656dd35a4ec0cb3925d3f6d400a23254c42fa9425a64ddfa9", + "regex": "(?i)^https?\\:\\/\\/nsdgxa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "347ca01a1081aa3db7d17f44d7399032c9e83bb642d1fd204605851d8d6b00d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=metalconc\\.com$" + }, + { + "hash": "e90121f5b287c07920bc6a2611e76c7d06e3a22563e40af93e64d74db4d30839", + "regex": "(?i)^https?\\:\\/\\/bdfhws\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245cb22a7\\-8bdc58dc\\-4cc5\\-4ed8\\-9957\\-59e5c55e7bd7\\-000000[\\/\\\\]+PDkNjPlZtoqaDh2s6hBnyI5Hxbc\\=394(?:\\?|$)" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+d15c7e83\\-e2c4\\-458b\\-be64\\-17c517ba73e8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "0232994561e397235af23967303c4b9cc8330a7b93c90e035fd84c199ae562e7", + "regex": "(?i)^https?\\:\\/\\/feaqdgqea\\-gaqdg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "27bd05516c3ebf50215f87291bb14442f5760d6295239b2e74fdc1cfe009c34f", + "regex": "(?i)^https?\\:\\/\\/gdhftb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "71944d82e499eb1364190081b5d3c13bf8935753da5153e5d3bd42d4799e9787", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfhjc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a6e35d53c2c6cee8a5c7aa00ccc05cbccaad11fee5c7a270617d15f2a15de234", + "regex": "(?i)^https?\\:\\/\\/robux\\-codo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "92ce17ec1f8fc728bed426f0fc794993ef1e7ef2d523302d2c8da9e561a7809e", + "regex": "(?i)^https?\\:\\/\\/bgsdzs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c39e54f1fe1c86cce696a2d0f3ecee8a46778715ed2a3eefe6d0ed3e46b9825d", + "regex": "(?i)^https?\\:\\/\\/nsgdzw\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bd0782625671e8581d2272eb6add9ee236a236ba589065e63ccde54a1b33f00e", + "regex": "(?i)^https?\\:\\/\\/sneggx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0916c5b20cc8e5d19333856454cbd55980cb88eb462d566ab2b802ed93fb199b", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "09b3d2530c98c58324723f3dc2584f2a383ec61009f34ad6d3340edd4bd0d6f0", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e3f77e1d8699ea7637bc098c15daa69284052add768d7ec054194a407712dcf6", + "regex": "(?i)^https?\\:\\/\\/feaqfaq\\-efeaq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b35568a6f40af322e5b62c556adfd7859da0d2a02a02e89c96b5c3c7047cc516", + "regex": "(?i)^https?\\:\\/\\/www\\.xbgzqr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7b5e0cc564010f706e1de22680fc0434bf2df76f4dfb29ad371877705d64f905", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c548c51093d17963722f1ca66c57492d028b47813a3c84c01896fcfc31cf1def", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c001(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b4b4d2f62440728a5ed901564543e85267f16c1b8919d6559f227e4c81bb7a2", + "regex": "(?i)^https?\\:\\/\\/feaqfaq\\-efeaq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "300be511b98519f0fd7a6593cb5d33f7cba787572e42ecc9032bb0c76706bef2", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fhome1\\%252Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "e3fba57d36fd160b62418b49d8ce2ad98db376c39ce74647295937c4cf04de51", + "regex": "(?i)^https?\\:\\/\\/feaqfgeaq\\-aqe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fccbd9cafb52147d90fc2a2db4a373fe0389b551b021d44e88eed20a86f39a07", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f063812797eb43dad0da4897fcd1b5670133104c91c1dd2a15378ec2ed9cf", + "regex": "(?i)^https?\\:\\/\\/fqaedgbvqaer\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9462a6f4917baff722a8caf93b928b533801c53f1cf91e29fe2fd4308f4e1606", + "regex": "(?i)^https?\\:\\/\\/xcqaec\\-qacv\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f94caf064c1f6198ef9839144474f2677ccd2d49eb496c947c638807a41eb134", + "regex": "(?i)^https?\\:\\/\\/aqveqdv\\-qaveeq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "04630d865194393db99ddabd88e75d26ad1e0bb3e8e5439d4da69daaab124be5", + "regex": "(?i)^https?\\:\\/\\/aqveqdv\\-qaveeq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "237c7bb22809f37eea41f9cd4adeaf7e91008892e0662ea4a804f501d3a10851", + "regex": "." + }, + { + "hash": "3cc15d7b96161ea2f36159212319ae19649b38a47dc92a0dac06596b06517fce", + "regex": "(?i)^https?\\:\\/\\/feaqfqa\\-feaq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7bdc136f3691a50c68a7b02ba45ea6a53504e8f1c3112a65543b32211fdd39f9", + "regex": "(?i)^https?\\:\\/\\/www\\.xbgzqr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4932d2623e18c95b83adaeb31ec696cbaa1bf118ffd4a05a169e3c0df16d7c7a", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "019d28d4c874010a3c7632e6967a07717eb398b2fb145afa7c3d680bb7a15868", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b0f7b55884adfb94e6a6cd207abd32466f010c1e0aaeb1b3b6000bab7ab24ded", + "regex": "(?i)^https?\\:\\/\\/cxezqacqae\\-caq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1c6724952a38a84050ed86bb047e5f8076887cb3dc6c946eb3c9495736ee7a45", + "regex": "(?i)^https?\\:\\/\\/aqveqdv\\-qaveeq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1b0c67d42798756ec9e3eeb2c19091d28b53f884984d0d56ea8d51ab5509b59d", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0218e4bc3936adea52d2b55a1fd50f8d1533de29bbb24158c4500c9871e50851", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ed40267770364d3dfbb0e2ba032a8d9fb0b9c076adb4769ca2f42cda9818d80a", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3a5be1ad9c2f0b76384fb19b95ba8cfb53a22fe25e15db08377ef5ec4d45a007", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2cd4413a8a4e23b785486e2692d50bbda8ef04b4660413feb36d43873d7cf2f4", + "regex": "(?i)^https?\\:\\/\\/how\\-to\\-make\\-ran\\-private\\-server\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "22e2b2fadb0b57490a316fd59bdd7e228ec41e63127b5fd532f6c5c9630afb96", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b4da072c3967486b59efefdf9e71b8f083a16640d928006fcb93e04e946bf45e", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "aae484556032a771bc67caf2ccd31698a072ed6deacc0b069c626dd587dd5121", + "regex": "(?i)^https?\\:\\/\\/xcqaec\\-qacv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d551a73337136b4f8bf21784fb179e78bd0f0f7105664fa98186c792bfbc5a04", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7bc71bcee53edd8f46934b234e695e62022c9e1146af497fa7f7e6e9eb8b2ad8", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "88efda7d6f0b8d9c99acf0e4f7e25023a1547d4985dc4b5a1b8865766ce21e34", + "regex": "(?i)^https?\\:\\/\\/www\\.bsgdxd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "73f9707351f14f811ea04378d04d7f309fce2a2424fea2523575fad26bc6568b", + "regex": "(?i)^https?\\:\\/\\/www\\.dngbfz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9157666fb6aa733b9b747d8dcc4a957ac066bf90c19647e4454242ab6d7276bd", + "regex": "(?i)^https?\\:\\/\\/aqveqdv\\-qaveeq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b10b8d4f0bfe776eb0e4c557d045f0f75cf3980227d40626bbaca5c28e784d96", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "416a21eaa6542790a2a063c7dbda7382b7406676b7e5c566ffb5787d3e44ff84", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "862ff895b7656709d3a682aa3004b91b43f9ea883853c0730dad5561b69a1bba", + "regex": "(?i)^https?\\:\\/\\/www\\.xbgzqr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "772b4a5fedcf2bdc1eed3eef878af376f6dfb5d6488980711fe68ca60521586b", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "06917a8e665e6fdb940d9ebc67418c90b4b2b5d18f5b52f7f0d8ff5332b7afb3", + "regex": "(?i)^https?\\:\\/\\/graqg\\-aqrgarq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "d85277dcff8e518293e96dc405158e90ed791893a100dd4335e9783e12efcc13", + "regex": "(?i)^https?\\:\\/\\/cxezqacqae\\-caq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "df8236834ebc183753626dd9107c6b833274cbbb16632414c567ca889e424e75", + "regex": "(?i)^https?\\:\\/\\/fqaedgbvqaer\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3fd464af0b12d785cd4cfa8a4ba62cf9db46c431b276c10e24707abce73b5780", + "regex": "(?i)^https?\\:\\/\\/eaqgvqaedgvqa\\-eaqgf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "919652f8bfdfe38be38495ce4e768b823b3a42e23cd8cc1413f871ee3bef317e", + "regex": "(?i)^https?\\:\\/\\/aeqfaqeg\\-aqeg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aaab9733da32f97fe74e270fe32ce610fd5e4585061f4c0ef517af5c3a82cb2b", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a07680bfc64f1d912672254cadcf289cfcfd7bec8ffa27ba88b8d15ad2c9d115", + "regex": "(?i)^https?\\:\\/\\/feaqfqa\\-feaq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "555da89146e611034bd994fe9b02c6cef3c53798740cea7d76054a1678b8121b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "965046d40d53c684d69b9a88346889e826f3749e589b77077882d5c549c07925", + "regex": "(?i)^https?\\:\\/\\/hdsuiugoiweuugheruiyuoivsulixc\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e00438e7d5f647dcc777dbd34860cad0684ccb84e699bfeafdcc16ab2f5b0a1", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "74a81048715ea1e6d030b2eeadb4d6d34371a25aa5bb4ab812675fb20b126c29", + "regex": "(?i)^https?\\:\\/\\/feqag\\-qaegqa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "39294e5b22ed43eae31294862c5ba8a5e15912aa6a4902478be2d4e4d5d1de50", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1ce606e8d073e333b2a97c3d4db41ef7717fe5d6522d26b39e8f910eb5750ea3", + "regex": "(?i)^https?\\:\\/\\/feqafa\\-qefeaqf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a7f1b2679380e964eae343c24f7607407316987c6e7ec8941c8ff77a96951cdd", + "regex": "(?i)^https?\\:\\/\\/how\\-to\\-make\\-ran\\-private\\-server\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "786d403f495233f514476cb48eda5082597347ad84e9f611707a680bda1ddaae", + "regex": "(?i)^https?\\:\\/\\/cvvxcvxv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3d45d128f946ca49a58d06d9ca623a3f6ff569a43f631c41a1156ebf4c8162d0", + "regex": "(?i)^https?\\:\\/\\/www\\.xbgzqr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d9da3cbeed66c2ae0df5b05057efe782687129664d4250bd8b3b4875afa68bba", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8f6c2926172643e5e8fc3e3dd567c3a760a16f956050857d57e327a4c24a37fe", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%25252Fhome1\\%25252Fseguro\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "43bbe90b4e7e6c2cdf7d67cc8384531df390661f91d08d256069be423ce83a45", + "regex": "(?i)^https?\\:\\/\\/fqaedgbvqaer\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ff90563f296828208984f96a4a6e68022713f1adbe267446d50d926eaba0eacb", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "af54d9ffbb4aa2e416b3a4b91a1f77ba2a23cc36a81512ca3f7126ece7473f65", + "regex": "(?i)^https?\\:\\/\\/cvvxcvxv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "23f03b24ed853651e78ab49619d695a6c4b163704bfc86d953e7ffd154be47a1", + "regex": "(?i)^https?\\:\\/\\/how\\-to\\-make\\-ran\\-private\\-server\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b6c19a3da0a7e9af2aea42ddd44405c9035d8fe4bc70463b49c7ee8458d064e2", + "regex": "(?i)^https?\\:\\/\\/graqg\\-aqrgarq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fd5b0a832238deb33ecdb996efbb8f72d7148923fca1a4402127d4fbde5120ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "45d81e5e926bfe51ebb23b9f232b4896287b171e891eaa7f07871104e0b83aee", + "regex": "(?i)^https?\\:\\/\\/fqaedgbvqaer\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1e66315a3b2836a832b7043b3a3bfb2b84875aa17415737261638beeb061e85e", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fhome1\\%252Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "52591921873f90bf23cd4bede9ab36832506e801a33cd6d9cb05be1a30bfaced", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4dd6a2a50a46b28190c38c89f83b63723a598ae9910e1f86178362d7d017a02a", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b86276faa3a0712f200e2c1eb4087c41c54e2c2b11307f6bfd39e685ae218a07", + "regex": "(?i)^https?\\:\\/\\/feqafa\\-qefeaqf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2e1609624cf81f9fbb38cfcf842c8e6efb78be5230083bb0f4c64a1b5bd75f72", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1f21cef927f5caac6c4d32b055d59fe2e3c829865ca30d563497aac62cb50243", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\-hgbqa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b07fd0d7a99b76eba737bb89d4dd4098aa5266e3c9b257aca37b13f4d9b51a61", + "regex": "(?i)^https?\\:\\/\\/www\\.bsgdxd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3cb948473f2e2ec4c7ba1aeebd40a14186d9118f7fd78a2c8a2da9faa847fbe4", + "regex": "(?i)^https?\\:\\/\\/fqaedgbvqaer\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6e0ebff45600a5aa3522d2a59eca04b96be631819b50c946c6ba353ef5c06d93", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4dc7a435d622cdf8dfae883d636b77c97f08fcf04d17a2675e826c745aa4cd56", + "regex": "(?i)^https?\\:\\/\\/graqg\\-aqrgarq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d4ff8434ffd18116a8f4f4c4eb5c0b6213fca74b152ed86b0d99a360ae330903", + "regex": "(?i)^https?\\:\\/\\/feaqfaq\\-efeaq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "da034b96793400af28c1948ec35c8e56d4865846623edf80403a98811638939d", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c831ce15c01dbfd9bb0f82e16bb2b30fa0ca0a9de2aae2f72c75a02615bb8ffc", + "regex": "(?i)^https?\\:\\/\\/feqag\\-qaegqa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "137f77387d319905875e0d416d93fb233a4de9a094692e393d91513ae220e5f9", + "regex": "(?i)^https?\\:\\/\\/feqafa\\-qefeaqf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "46731a0f3078fd6f8b5a0dbde1200ac617a1ad6d8077de46cbce9e07919348e0", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "abfa2cd6b60a33543c3af1fabb966ca589267ac40d6a5978d69cc7810efb9616", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "146e4a694e2e181df6c36da31de65b6c2ecedca9034dc1e03b9346f91ce3d181", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ae4f5f51abdcf26aedbf06cee6b72824282b5367f0c94335e21d96ecb4ac018d", + "regex": "(?i)^https?\\:\\/\\/hdsuiugoiweuugheruiyuoivsulixc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b896ac6da660c6cc8b2b9e49aea48158ddcdfd3f60d9c098ae5ba288579ef28", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "090113ce023c379e964666742e6f1a178885fc3d0aa34df6bdb87b3ece50a9f0", + "regex": "(?i)^https?\\:\\/\\/cxezqacqae\\-caq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0c8b015973b17b3306433bd2873b1967ba67a7f393c2f66980b843cefa607b2b", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5787fc8507142da671f2aab0d22f1e40e379bf97d8d7be80dc53f93aecb34485", + "regex": "(?i)^https?\\:\\/\\/feqag\\-qaegqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "509a610708767ce55d0400c9c16a8a0588082f89999fef8d0988effceb6a8a5d", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "aa0e12bb679947156dc97a38714aaabdb88a2bd7e36bb9b7089d607015a1259b", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6f622383d44c415297a9530b3ce9cdc0dac980ca0b905e7480da83d751ad4711", + "regex": "(?i)^https?\\:\\/\\/hdsuiugoiweuugheruiyuoivsulixc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bd05c5101d79838ffb3de125b9cc6d45c11d33de684af57de4cc8e01b4df822", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "71d8e8641858c2d27bea489d4d8ed7feae5e143e2450bdcd2a9c4f6201657a9c", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8b15bdbda5250d63cc91b324e64fd950d647c20f05b77b8a8e0b768fda5b22b6", + "regex": "(?i)^https?\\:\\/\\/feqafa\\-qefeaqf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1fac8ca190e6afaad5c2262eefb198df8a30f9ab5bf771f36a837146964bc9c8", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3f5f78b7617ae0ba77af4968f224d1394feea5bd3c1074dfaf59c508e2d8c68c", + "regex": "(?i)^https?\\:\\/\\/xcqaec\\-qacv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9ab36ee659b6c9c889ad115e802a03c689fda261064c5196bb63c4f4ea6fa0f6", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "252cbec5327786c84cf092aada49752a01132f22aefca8d2c55e1c915ef38e17", + "regex": "(?i)^https?\\:\\/\\/aeqfaqeg\\-aqeg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0e572ef0ee444d5e2dc661bae4fb82fcbb9142877fbd6b4dc43bdeaa50d92f85", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fc30c9fdd9b508f1fc67a83225073d632f3bbd0ccfacc7c647b60b4ebafadda4", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0672868d932b08cf2065b01fef83b6391d7efe04d0da3aabcd51e17d5d3ab0aa", + "regex": "(?i)^https?\\:\\/\\/feaqfqa\\-feaq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6394c61651a2a7af74b5097cfc3e4602ec99f27234ce6f363520465f02394a44", + "regex": "(?i)^https?\\:\\/\\/www\\.xbgzqr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4ece02b4d0e22e2b2c6bcfdeee1a249f8a6e27d6003c490ebf6aad947281e1c5", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "134c4904360a58644a6bc8a90711ac988273240155f9b2909453987ff6b02beb", + "regex": "(?i)^https?\\:\\/\\/aqveqdv\\-qaveeq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2d1c0f49fb48c9a3e14a0b66e0813330d883f693471e4302df729233e755d7ea", + "regex": "(?i)^https?\\:\\/\\/xcqaec\\-qacv\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8d315154a5ddf5d1a3bc596f6d856e8a8774bf6b34cb4b468d359a35a4f3ca9a", + "regex": "(?i)^https?\\:\\/\\/how\\-to\\-make\\-ran\\-private\\-server\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cedb64dfb624975fdd429475bd9b458cd67131a15deeaec613c4af91d27fd76e", + "regex": "(?i)^https?\\:\\/\\/www\\.xbgzqr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "64b4e01614b338b4dc2d31cbedd2e043e0696e595af141ff60806d1f7dfb0661", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6020d134490c89ed04f8c3832af5d5809a3c68f4f818918047edff446076faf3", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "89d5a67a0e681f60930a8b391617de9b4eed0ccb55fab651e51138feb2d057e3", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a4de84157946c6cf264a8bf7148fdce5147bc6a6f7da094cafd4400630fc207a", + "regex": "(?i)^https?\\:\\/\\/www\\.dngbfz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0c0139f899ce35e3cb22915e83fbd15b1bf1a8c42fb85588c910f903f231b385", + "regex": "(?i)^https?\\:\\/\\/feaqfgeaq\\-aqe\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ddbad14258249e68260ef70485cc35b6cbeb130774b2daeb2a3de365d4fc7e6e", + "regex": "." + }, + { + "hash": "9cf3716ed939b2f98d9ca0044d132524458a968c6e5ba75a4e0a50f4494cff68", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "925bf98cde07ec0e8d2426cc5814c56d578df992da33b5d398795279dd11cd1c", + "regex": "(?i)^https?\\:\\/\\/eaqgvqaedgvqa\\-eaqgf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e094cce616c4cf015ac1c4ecd5b808a89d3a9c1a967f43eee9d2a5aec857aa09", + "regex": "(?i)^https?\\:\\/\\/aman7599\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2a1935baa3eabf9a4f931bde66cec4446832332b365911689ba8c00fd4155ffc", + "regex": "(?i)^https?\\:\\/\\/cxezqacqae\\-caq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9996563ad5db8d3c16ed907cbc1653c63ed84e91a11f9172114bea77f1e48a6e", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0a177559dd2b617147f7f5d7b836e48f32c6f23cb8ca4702eb19a5c93ebb6df9", + "regex": "(?i)^https?\\:\\/\\/feaqfgeaq\\-aqe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9efb538ea9bf9ca47fbbfac46f430b75ed3a4d1609c43ac0b75a26ce0d6178a5", + "regex": "(?i)^https?\\:\\/\\/cxezqacqae\\-caq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "eba9067e5a41a1ea42e59c61da8902a4ce5982f1fb64361df9b26ae29f054ff4", + "regex": "(?i)^https?\\:\\/\\/www\\.bsgdxd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3f806c570941792d0899ce5b3d797a840c2383bc74870a981a352e235baf8b7e", + "regex": "(?i)^https?\\:\\/\\/pub\\-154d7a8c8d1e46b79335c3c2e59c58ce\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "67fb0fae1217379c6168b5685cd5cc782992e83f456a3705ebb2912808ffe832", + "regex": "(?i)^https?\\:\\/\\/fqaedgbvqaer\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d7138fdca20f9ece5a14bbe6d51cd4a5c6523260d62bbdd8b0eb0e934daa1a77", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6052221e7c5919082f74e5ff54e3692e0489b452a6083fee79904790400df1df", + "regex": "(?i)^https?\\:\\/\\/hdsuiugoiweuugheruiyuoivsulixc\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9b9ebd0dd353690afb8e5443832d897a6ab7251d5ce679a6fc9de529b368eed0", + "regex": "(?i)^https?\\:\\/\\/fqaedgbvqaer\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "367263aebbc22f68498cbf06860dd9fc7eb0fe415267111c38232a6ab86ce630", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "10ea713df7ffb770b76aa578285fd8d610656e1e042ff0b361d3715ee25bc90f", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2c8927d142be6399f37b8a1d26f2818281b4f1ee6f1ba8de31545ba3186a4ee2", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0c1933be0299064a4d0f7d5337e2ad93f6bf9ff2d8241abbee0817f1c9c658ac", + "regex": "(?i)^https?\\:\\/\\/feaqfgeaq\\-aqe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a85e7404b8462849c29f2f4523d5c69efa6e90c564d48ed1ea7eb26ae5957295", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "860a328c41e6a190a740bf6656396ea4d13ace8d93ac62b1d4dc5857dacb4823", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "19859215de2bf2b49f2d2317d81079a2719ae4a26551754781e50663252f89c8", + "regex": "(?i)^https?\\:\\/\\/hdsuiugoiweuugheruiyuoivsulixc\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d7e9933f7dcb2a81a7cf95053320ed7300d820160e0cae8458f3271defd72588", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d65c5dc1c9e5d86826b47fc13abd3d6841b7636e3ffacc84413d6ea8d08646a0", + "regex": "(?i)^https?\\:\\/\\/feqag\\-qaegqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ff82ebc88b7dc621dec36e1716eef116f0f707f8e8c2dfe787427746c74785e0", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "89e823d96af7e029e8a92a00891ec678558c528f5897a95b5646cdb31f8cd922", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6282afcbca05630d04a7c515adb2521b0fc56daf5c08d11556ee0c883e67f067", + "regex": "(?i)^https?\\:\\/\\/graqg\\-aqrgarq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f5bb81c3caf14458050fa051d8341322ba843dd5d00fcf8b1a202f710d5d2435", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9dfe1c52c7aff4be1b09a05f429275ce127f49534ab55aad09b5b3e8c92274a8", + "regex": "." + }, + { + "hash": "1b0f86be857c043acc0db8785af7dd76f061b5c1a1bb7044c1c466fcd04185f4", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bbbb0544afe47e0e59396f6efd361183261f02ea334438adf4b9d773dce7c317", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "45b25369b606680e1116d8e61edb33909a6838ed32a8304c7cfd557b950728e1", + "regex": "(?i)^https?\\:\\/\\/feaqfqa\\-feaq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ac72e97728c159ff8cac3e592424ac852fd2ef925e23361d5bd15d5beceb7a14", + "regex": "(?i)^https?\\:\\/\\/www\\.bsgdxd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "56a89e70aa7309dd637d3d086c5d8ad030419a489fae3386889dcac632cdaab5", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "28b429232967a2d6952653238a29a57fa35b89a746ca18d6b16890ecb3e591dd", + "regex": "(?i)^https?\\:\\/\\/feaqfaq\\-efeaq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b5c42ea59b3c3a166c0e56147349db270afd19501c0175623288c7d7f854a2b8", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d689bcff144cb2e73d2775457be042daf92de49aabf52f1460b6c7bd444eb33e", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\-hgbqa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ec8f77346937188eef6bb670f196aa0d03065089a00524abdfda2983dcc354f7", + "regex": "(?i)^https?\\:\\/\\/www\\.xbgzqr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5e8679baf62cd927fb3f79f6bea2d51d054282c3c520ab857b6a36c964b3c85e", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dee3f99a4242a106522ee8719718ffbbfb5b6b81c7f88533e72396294de81a6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6cad3af62f555f1ca5c8218165684efb4b08adbced220721a3113fc7a35c49fb", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d39ba821cf03bfb2921f651f28a4e4668b9438a2bd1c00e1fc47997fa7f131c1", + "regex": "." + }, + { + "hash": "c0171c49e5a92b2bf5a7a5bb77abf9b256c07dfd7ae6765d33538f6ff1597c96", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0c4410d3df5669695b2075a1ac3efd0dd90ca5d0809e2f9e94bec69b67e47d76", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "51b89da23b0a4108819b9c77632c48c58e1604d9c19542bb185fcfa628b499d7", + "regex": "(?i)^https?\\:\\/\\/eaqgvqaedgvqa\\-eaqgf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b579b58c595c3868597234a73c8ea9efd9830ea343138cd3716a8a91cb936edf", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f895fc07a358d34eee46e1bc3f3e4c348e11080d6a93274332e160db8fe93894", + "regex": "(?i)^https?\\:\\/\\/graqg\\-aqrgarq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0de68f13d78462e7c3a0bd0eefb1c5104d257b24f72e2ab1837a903723f45306", + "regex": "(?i)^https?\\:\\/\\/www\\.dngbfz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c86bac6ce6e926735b9164710423de9be71186bef9e8f5b7f0f2f85b3016fa4f", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "35e4718eec505dafe2c3b2ec41d8f9023a49c05f502b8781e10de454e14e411c", + "regex": "(?i)^https?\\:\\/\\/xcqaec\\-qacv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a65d7e93cbb4972ccf9f09fe7a93d43143208ade79423b919b29c4512c74dd57", + "regex": "(?i)^https?\\:\\/\\/eaqgvqaedgvqa\\-eaqgf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fa9a59003bd1c7d30babff41d55553405ee540aa8496353486d0b417d781bf53", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "43c2f48be136441293537ec932bc111adf9d91b923e4d140a0fdc057c45135df", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7d06d61a9ce1f0537faa1b752db111750fbc21cc43229a5ed070b216b57bb616", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "02fa5f24de4055e3f9fe17a6990699a468a6cfc1523e0a54f6c20fd3363d1269", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9c9d4cb537224f927e6e9ebab09b8c0432a5a1463e6ad9a8546209684340edc5", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ae40d44af091cd2bd05c7a211a3a19c600f8a8e6a9a0bea2e3f24789ca4e842f", + "regex": "(?i)^https?\\:\\/\\/aqveqdv\\-qaveeq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "602b54969941b40ab4ed52a320a883a74c3ca2d199db1133399ced369679c5ff", + "regex": "(?i)^https?\\:\\/\\/www\\.xbgzqr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d70f8d1069f5da30c7445c79c6ddbac0451696a4876c39eda548a216b69e5bd1", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\-hgbqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "419a2ef11dd04a1a827e38b9df2b0fc645d52f661ce20bdee59eb99b07dbe3e2", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b3ee642d7775f4e918d7cad4fb22f1f7e065f22cf0f2288e355b061e56d3ec5e", + "regex": "(?i)^https?\\:\\/\\/feqag\\-qaegqa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "df26872f600857ad8876407bca5e2b4c3a18901368bdf1d239a668baaaeb7d6b", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "11a7295e405d4c7a96583fec0327c3aff4ea6b8ed22eec21d0ac17e575d666bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a79bb\\&id\\=untrainpourleternite\\.fr[\\/\\\\]+$" + }, + { + "hash": "c25a34be10b45f91e995f4a06f983a6e20d6cd8198848af259255245d1b4ee55", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2f6034d5595cb89fada21391c3a4623c0bfe1de56b99317ca97b196ac3c560f6", + "regex": "(?i)^https?\\:\\/\\/www\\.bsgdxd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5d83811eff9401dce774a55b21d8586e65ab9aa9f697d20c7097cc16f2e045b1", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5395b52508c92f33ff011833de1927018fa6c9b423bcb9f0199d34133b6563c9", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a8312f8b8796a295ac3c7c75e01f152088f3ab41072cbcb83e47126acf1c7c0e", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "739847f094b587ca3ace37e30e74e55b87a9d235e99a08ea97a894a7b21481f6", + "regex": "(?i)^https?\\:\\/\\/feqafa\\-qefeaqf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "221ff07bbc4cf7cde5410908b0065b5a9b627bc1729bb36ca63b94de7e48b96e", + "regex": "(?i)^https?\\:\\/\\/how\\-to\\-make\\-ran\\-private\\-server\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "53fd6d29d0b0d403ae15fea9eb73955b6eab5b31e126c4d148eb2bdc5ff03135", + "regex": "(?i)^https?\\:\\/\\/feaqfqa\\-feaq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f1f01db11e550be6a340de8ae3504527c2e627b0ffdaccd4e6ceec0cbad84938", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1b62e5589a451ed4209b8894ad64e1f9d63667c9ef78ce758b177e91292d9e29", + "regex": "(?i)^https?\\:\\/\\/aqveqdv\\-qaveeq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b5835666264ec21e861a80f6e17be495d45ea1b45362acd04916fe8c096b8c8a", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "64d129882772e8299597faa3ff7288d9021327052dd3d861ee1b40f2411bc30e", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5d9c9d13e0dd16f0d01efd228a605e6b5e3d0fc1a5a5d322a919768113310a91", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b23f06f62a1a2ad5309ee2845c754e8db03b31066f4b19c3655c239fded9a196", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0d836b7cf6d3f9fce695ffd3c2a3bbdbd8447ecb23d481f747425afe4e12ff69", + "regex": "(?i)^https?\\:\\/\\/feaqfaq\\-efeaq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6fc91915f837e3d58db9e2993cf864012366a6c3799a0069da33adaf3025ecb5", + "regex": "(?i)^https?\\:\\/\\/www\\.xbgzqr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6b5728a5b89fef7aad3341ed8ed901178eb30fc90d0494fcbdac4194cb40f8c1", + "regex": "(?i)^https?\\:\\/\\/cxezqacqae\\-caq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ae6cfa24438f2d265bfde2e67b48d6742a6a6f8583daa777546cdde45122afe1", + "regex": "(?i)^https?\\:\\/\\/graqg\\-aqrgarq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2ca24c027531bcaacb78758711517df817feb3804aecdc9416464e66f3ae7c69", + "regex": "(?i)^https?\\:\\/\\/feaqfgeaq\\-aqe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5ae5d50a51ee9ce911acc9c94140cd0fcd8ddea66aa9123585658e4c11bb43de", + "regex": "(?i)^https?\\:\\/\\/aeqfaqeg\\-aqeg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "050750ab050e497bea45a9727bad330652cd4bcb22f752325abcc35b4a314797", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cae5eac82e2640c30b3b895b8d30e1fbecb3342242d3fee5dbfb16671709fdfe", + "regex": "(?i)^https?\\:\\/\\/cxezqacqae\\-caq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e5da54c7e06abe02d76d899a3ae5e869684ece0e266285ea1e1917dd5e0df93a", + "regex": "(?i)^https?\\:\\/\\/feaqfqa\\-feaq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0b35211ae45acd4708ebc346739b0b3f37aadd79becdc9414fc34ddd86dca080", + "regex": "(?i)^https?\\:\\/\\/cvvxcvxv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e7a92e8f65745910170eac583c57fc1fc47c93b5b9a2c61f95317d253c6777b4", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5adcff2c869aab85edb473186edf683391c1b3da8a242d892e6b9dc94c16110b", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e9adc68489fd154cca49809feb2fb6f1df979d72a414eabb31299e21559f1ad7", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\-hgbqa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6567e473eb3ea721515620068a578e01647076550724f0cf06d2750651d93706", + "regex": "(?i)^https?\\:\\/\\/cvvxcvxv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a37d2cf8e2ea152bf2df1ba264f29852c79c847189707277b27ffacf7e288793", + "regex": "(?i)^https?\\:\\/\\/aqveqdv\\-qaveeq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "360acea3458139811075bf3384a53c9dc1eb3883e6fe0eb5691a394882b922d7", + "regex": "(?i)^https?\\:\\/\\/how\\-to\\-make\\-ran\\-private\\-server\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b83520995ccb7b5e784482cb1a47b7e1b55d03c42c06641394d72cf17cd078ae", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d67c218e943ba9c27a0de04f588b0bab995384e2b93daf113365c604f8e9b1a1", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "347ca01a1081aa3db7d17f44d7399032c9e83bb642d1fd204605851d8d6b00d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?52024\\&id\\=metalconc\\.com[\\/\\\\]+$" + }, + { + "hash": "2347a4caf523f5a670e176b02d6a59ed87c55ec9dd5458bee9c3c4114af7ba3c", + "regex": "(?i)^https?\\:\\/\\/eaqgvqaedgvqa\\-eaqgf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d1eb4fdf30e829656059cd854394b57d9bf93b56ed717019e29c01bf4737562d", + "regex": "(?i)^https?\\:\\/\\/feaqfgeaq\\-aqe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "aabb81737c74b49107bb9c1edda162b5fe42caa30d3cc6cab6e9caa15673db54", + "regex": "(?i)^https?\\:\\/\\/www\\.dngbfz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ecdc98e91268f12b376722d6a0059b7aa55a6d7aa1546c58b3e35d1c34451d20", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c148fc3a8bc75d46ab74672cbc16fadf72a4839c32f4607b389d18a5cd52ee50", + "regex": "(?i)^https?\\:\\/\\/feqafa\\-qefeaqf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5363e39162af2c9767bd82c6d3111cbf75997e0e0339120d2b9185cef996dbb8", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e800ee624448ff485875dbd4d5407c2144119a7d07e22adfeb36be67400c844f", + "regex": "(?i)^https?\\:\\/\\/www\\.dngbfz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "20a8532dd629172136b3c408b203bfd79a32a70d632631f68668b0d38b2ac693", + "regex": "(?i)^https?\\:\\/\\/eaqgvqaedgvqa\\-eaqgf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6b86389658292a7f8d7a47fe9101766520e71c899d79f0d5f71954a21fbd39d8", + "regex": "(?i)^https?\\:\\/\\/how\\-to\\-make\\-ran\\-private\\-server\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2896436d98872fd40f977bde7189b53b880e4f219347ee6ff90398132eaf797c", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "04c8bc733eb5289e0c158e1866505405690691041a57f5bcae62f1aac7e0b121", + "regex": "(?i)^https?\\:\\/\\/www\\.bsgdxd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5c5caf819f46b1dd45a3a97deb12fcc24efae0d4149c0337a5821ea07fb5db8f", + "regex": "(?i)^https?\\:\\/\\/feqag\\-qaegqa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a9ba992e99d92e6c92f7b81177a7192dff2396bcbe77ceb664c77c7f4a18595a", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9a687078e3bbca1d200721d0fed3bc1ffa173c9d4dcd30f65ee18b16211ba52f", + "regex": "(?i)^https?\\:\\/\\/www\\.dngbfz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "62208c54a832e0013e0fd6a77516c22ef0ae1c3d562d41681d2915e05d187957", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\-hgbqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fcbce1f99d39d5b1f391e3732cd48968723860b370416aa26735f1a2b2405fad", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "59941972f08ddbc498441838bc19be2392d971a96cca3a3d069b1e9a4314eba2", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "44439baf7dec17ecd85bcf5e4675953a8bf364c0bd2694ffb952ce155d719308", + "regex": "." + }, + { + "hash": "a7e2e60ce61d0f5fb0faeef84d57c1959a4a7f0c6638ce7508779873af16ca65", + "regex": "(?i)^https?\\:\\/\\/feqag\\-qaegqa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "049fd42771ad4e871a34dcce52c605fe225d88a8d58e5d6fcb95918783de52d4", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "357a781dd4593ab0d30d6de27ec5e4a9e98aaaac198798f2dc5c38ba70ff58fb", + "regex": "(?i)^https?\\:\\/\\/www\\.bsgdxd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5309ca55dc57060b9da579b3f3851a16b362565cfcbbc6871a9405d9f71c63b5", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "51bcea883eb7f42e270db5cbd8c6dac796950c51edf8e5ea1fd403958c16cff1", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3e98c71bf263530ac5848aaab854c31575b529d4f0af8474bc4c8e7f8d8241bf", + "regex": "(?i)^https?\\:\\/\\/hdsuiugoiweuugheruiyuoivsulixc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "82871eeab8d864e6aaafd0bfd307f754ee4c1ac096a8bb9a347261996fefde8b", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "113459083e399b3572392b02c0678ea0f5b7f3bd706749dbb829c1c5f4ae4a12", + "regex": "(?i)^https?\\:\\/\\/pub\\-7b93a3ec4c8249a8b0c43341cce5438c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d2fa6008e19e370c0d7cb3596b17fdd1574b345c9f9642d8ac7167cd1a600142", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "52a5babfe7f2c1c6ab0b1d40f3b275274f58cbba914ce173a20b894f70083367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e1793\\&id\\=vicsystemes\\.fr[\\/\\\\]+$" + }, + { + "hash": "dd35d791aa7fc90870911fd144b7e26e9ee361699e7a03a7d3b844792e75ae17", + "regex": "(?i)^https?\\:\\/\\/eaqgvqaedgvqa\\-eaqgf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2e2d3375337ea3fd41e5ba76578932bec102270b613060bbf6dad50ea1e5d57b", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6ca4babc841d42a306928be1b368f46e2fa2d35ae132f0fbe444fb5fb3bbfbbf", + "regex": "." + }, + { + "hash": "763170399495d8099a052d274fcb043751ad2cbc47353f5c79597b38331c7d43", + "regex": "(?i)^https?\\:\\/\\/feaqfqa\\-feaq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a0b6a3b363196c6f481381b95f555acfcb26a4c0b4147892d689b32c2a37a48c", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fhome1\\%2Fseguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "6a803dc299d48c994ed31eff2edc3baff775e649845cc9427b960b5d99858402", + "regex": "(?i)^https?\\:\\/\\/geqagaqe\\-gqa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bdcc6c7a91a67b94bd5af6c4243bd4716a30ecc7ae6e045c75e7305bf4fad916", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "10b487d16793f704162f8cbee2c9db77cd42c140dac8fbf204cf86a4caa614ac", + "regex": "(?i)^https?\\:\\/\\/feaqfgeaq\\-aqe\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a54ef441590aa98d6cf75cca96030e35fb8f4c742e5c4aab220be185ce5fac51", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fe39bc5e8862132cb0ee5147547d7dbd500f9a04ca222811abf5517694c747de", + "regex": "." + }, + { + "hash": "a7152d84b068ee278576bba6adb55d6f7e4ad239189898994185e8e9e30ef9fc", + "regex": "(?i)^https?\\:\\/\\/feaqfaq\\-efeaq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2c9fca8942bb18f042c86ec7503c4625924e3f1df86f75843de88a392a5383fe", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ccc0065ec3d03892102f34a517e52e605709f055a360a92853add86807224776", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "80a71c6f5cff5fb60701ff1acfaaf5f88101f3055b74510b5607f57e34f9afc6", + "regex": "(?i)^https?\\:\\/\\/104\\-236\\-69\\-6\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "df2cbfe5e54a61c58c4266d484ea6cdf73bbfa31744904c92863b9bed5416f47", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a7d72a1cf5b5958348bb0f43a25039ffd941a6b9af4d3900b71e41442785f6a5", + "regex": "(?i)^https?\\:\\/\\/xcqaec\\-qacv\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "140025a187c2acf1a2874752da4d0964179ef1d95f08a4dbedcb2ce58d47d0f0", + "regex": "(?i)^https?\\:\\/\\/how\\-to\\-make\\-ran\\-private\\-server\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3fcb570e4c6fddcab32b30e8072289fa2a2d46f9108ff6f4c109a0087d11a84b", + "regex": "(?i)^https?\\:\\/\\/hdsuiugoiweuugheruiyuoivsulixc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "770d4dd811812ba12fbc5b6df8d9d4925514bb1e7e1ab729edecbcf1a7f19017", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2a720ac8a429d0cdf852e1071fc164beaee7288f30cd9e2fe810afa9cda70b84", + "regex": "(?i)^https?\\:\\/\\/feqafa\\-qefeaqf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "929168914126bf5ada36b221f1edc0821c749e169f2420daa90fddc64e99e27c", + "regex": "(?i)^https?\\:\\/\\/fqaedgbvqaer\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e3c005730e471f57a95c0a01eebc1e66f916d0451184ddb3fae5e620d0c8f82e", + "regex": "(?i)^https?\\:\\/\\/graqg\\-aqrgarq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "726817e9cf24e388fc4383b669b3c46eff80a7ef97f20c3ec9ff6bcb92dcbd15", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "55d75c4e8df3902a6ecff06ef4bddb08aafae45f4e7a8d9d83860d76f441ab02", + "regex": "(?i)^https?\\:\\/\\/feaqfaq\\-efeaq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9399daa484487aa3c49e6a42de61fd0db473ffb17011b71fd6c3d36e5a1e140c", + "regex": "(?i)^https?\\:\\/\\/feaqfaq\\-efeaq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d67c234e6653d5bf6a0c1b9bf32e4366d012b9210bc82e94ee85849a0abd71ae", + "regex": "(?i)^https?\\:\\/\\/www\\.bsgdxd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d6382058a52c8f55dd123ac931a9ff02ea1bfb286a149b57f70648ce806ffb1f", + "regex": "(?i)^https?\\:\\/\\/how\\-to\\-make\\-ran\\-private\\-server\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ef316e8f14b99dc19253aac1af6c70e846076a9d58cc767c50a6814b91d080a9", + "regex": "(?i)^https?\\:\\/\\/feaqfgeaq\\-aqe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8e7cc656622b7d2201be0286cd75ad81aeebb68dd63b8c589387489305d84ea5", + "regex": "(?i)^https?\\:\\/\\/cvvxcvxv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "416151ecbf96b4b2c7600ec61ad2765b8f2f787ca4d75689264cb1af6bdd7309", + "regex": "(?i)^https?\\:\\/\\/feqafa\\-qefeaqf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e3c06de977ce869b2d3b8c8530b4877c6882c7de90d99848d6b20d2fed08fb62", + "regex": "(?i)^https?\\:\\/\\/cxezqacqae\\-caq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e160173b02a5aea7657547591f4bba035df26e696a6872903699534acaa8c37f", + "regex": "(?i)^https?\\:\\/\\/fqaedgbvqaer\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "eac4cef1297ad53258730da13dbd0decacdda7424263b34a41ae656db110dac0", + "regex": "(?i)^https?\\:\\/\\/eaqgvqaedgvqa\\-eaqgf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9dcd1d29e5e22fcef2f44c732c8b1c6520474baee4032e69ee741827a3ba0434", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "65e6cd066dc12fc669e3e1175385d7b5f8a7a8f3cd8e5d3c88c68f55b0127920", + "regex": "(?i)^https?\\:\\/\\/www\\.bsgdxd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fdecb48488629ed774cc8305253b93c806e149e2bc729a793a270eff2a1e5dca", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bb5fc32bf1753f53ad85c4431e0c5009fd02fab16a36430c37f97e61d6b271ad", + "regex": "(?i)^https?\\:\\/\\/cvvxcvxv\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "32643e4d83b6a6589798e2c9589d76722400acd90907c8bf279d9d09ff68768e", + "regex": "(?i)^https?\\:\\/\\/cvvxcvxv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5a334c6c9ceab59210dbfb4d52838707a7d71206962850425658e62362d93c1b", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "efce0c2c43b1f5d5edadc2fef34a967203f96c23ac6499eeea2f352ee50b5aca", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\-hgbqa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9ba2e8e7c4934e63a46bcb0d7f40a14729662132ad14429f31d9718da14700c6", + "regex": "(?i)^https?\\:\\/\\/feqafa\\-qefeaqf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e96ed107534db18a94be22698edee03f3e578efa0691ab913b092075a3322c4f", + "regex": "(?i)^https?\\:\\/\\/cvvxcvxv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "42a7c769023ef9bca688b0f20bd7920018d4d53f5a012e22a9d00384389df84e", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\-hgbqa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+mua1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "3856084e6ea729ea0cb08400b550b94f9825054d9de1e21d95f879213292957f", + "regex": "(?i)^https?\\:\\/\\/www\\.hfthnj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "57d69dfa88a3baf2e447082870c69932604e1097e632d6972c6acc083774e2ea", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "56cb025199f59ba6b16af2f6610f16bdad7daed1693b6b64930950e44af94713", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e78653ccad8cb5e1fed853abec9148389b4524fee68b5edec36cd0cc3f75ccfa", + "regex": "(?i)^https?\\:\\/\\/cvvxcvxv\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2a48bef9041deb488addea863b506ae79b4baec171ee35ba05a2cb1eff3eb14f", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ff1cf18745bd70ab88663405306b711f15a8c493291887da12e351e016c68653", + "regex": "(?i)^https?\\:\\/\\/graqg\\-aqrgarq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2f7c3d6e114cf83a88d62f9e1a5ac799d5caa8dad5ea6838b5b5b9fa358fadba", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f55b1dda059fbef8ddffa75e8b21ef537c10742cf54e70233292252b13f97318", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c73ecea5797df37b46f571af0335154367b9795a5d94c011d783fc83239d8690", + "regex": "(?i)^https?\\:\\/\\/hdsuiugoiweuugheruiyuoivsulixc\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a808c111bfe241feb7d89eb8f02e48599f7b9d9cb4e6c27c881b16c1be91a99", + "regex": "." + }, + { + "hash": "a82f40d4c6930da4af21b4e7b1a3b3b0d7ad6ec95aa85e01b20029cc2ab17439", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7ddaaec806a92b0e5730d32acb62b3d30c65276d13703eb71dcca014eabef8b3", + "regex": "(?i)^https?\\:\\/\\/veqadvqae\\-vaq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "46d03385cef0d9f12d53e594100dcac578707963a376db67ef58ad73a9c018a9", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "310fdf78a7afe3b7c82fda32ef60005a30c14464e83ba1513ce10a74640264e3", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e0fb034817e1eec5fd111a0cf2f05156642cb576e8c8eb92fc55abb8987ab80f", + "regex": "(?i)^https?\\:\\/\\/xcqaec\\-qacv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "904dd22742b4501c36ecfe281a775227890452e1af575fda098747a215c68553", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2def1c939d44eca6dcbb867cc6b27cf08d2d65f596cd9ecffd82019eee5a6c5a", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "154e3ab7885f07f5a6d454f4d96c4fa9a0215cfedfb4904d9c3412e8414196b2", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9b03a5f20411dab4ab2903ef8be7583f44bc4d752866a458aff6a80998e57d1a", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "259797d52d5aadf7ade0f645f5fcc8ce7e397e4ff1c0a2cfc63c5ff153afaeb5", + "regex": "(?i)^https?\\:\\/\\/qeageqadg\\-aq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "460737f95e2ec4b5f472352d71efdf16dfd5aa75d2b71e855b98d6839c74fd83", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "84a3bbaa4ebd8672ded7505d1d7fd94a92317639bee23297d15e20faec5a7593", + "regex": "(?i)^https?\\:\\/\\/feaqfqa\\-feaq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5ca2718d6ccb2974d9649666cae4f3cf38fee94ae232aab8d777d7b76a0fa71e", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "36fdd36e574a5dfc483c1e6dba00913bd1296c9f0d50f60ca8eab9e61de9b12b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+mes\\-infractions\\-antai\\.com[\\/\\\\]+1[\\/\\\\]+01020192739dd7ac\\-fd65627d\\-b180\\-4a28\\-ba9d\\-e1793974ca48\\-000000[\\/\\\\]+r3IrPZ1z_Db5rFQOgoy1vHwEtsM\\=395(?:\\?|$)" + }, + { + "hash": "831eb5cd6201d84af6a84325111a50f3d7de80ad01916782b28bbd5cb5f7818d", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5dab3de371646cb750d55e83df9c0bd3dbcbcdb25ba1873163f09431fd6d2d28", + "regex": "(?i)^https?\\:\\/\\/xcqaec\\-qacv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "302fa2815ce2e25938b0338446e2367e60ca7ed9e5a0e59dd0cbeecdc542b33f", + "regex": "(?i)^https?\\:\\/\\/www\\.vdsbrx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3920de82a347df5f4c788f27bfcbddba8bae68c847a3d27c03de2046180e6d83", + "regex": "." + }, + { + "hash": "d544117aaedc1b2d26ac9d92feb2b6690d15b8807d4bad50d8ca857827222ac1", + "regex": "(?i)^https?\\:\\/\\/xqawecv\\-aqevqa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3bd07984612fb5f3c17b9cc5e1bd1d249c5dfc2243fc39566549cab2e4feef48", + "regex": "." + }, + { + "hash": "914f1002f9802f993c2b94c68e7ee62f9f4ea96e0d9595f055137eba057c9424", + "regex": "(?i)^https?\\:\\/\\/hrgaqhg\\-aqhaq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0e8b2d389f4eafe22956b6c5dc92eb03c720e9589e02a166330bbd5579bf78c7", + "regex": "(?i)^https?\\:\\/\\/eaqgvqaedgvqa\\-eaqgf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c109fe0344d421a7b039749f943e05d7693f8f1df98382c69e77e85562565a06", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d71b9666d7671899501745d5dedd88ce425cd38bfa845764db4e795e74b9c078", + "regex": "(?i)^https?\\:\\/\\/www\\.dgrhts\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "72a608b1de134f5b9328a4e38a677698bd746afb016fe4908a7ddcf0b6d99136", + "regex": "(?i)^https?\\:\\/\\/netsupoo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1331d3b956708b0af092e0c55b941946b5abd13c534d03ea1862b7a17a23ce7d", + "regex": "(?i)^https?\\:\\/\\/www\\.dngbfz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d4fa2f7544bab6e61a43bd1eb41a5adfc363d6cf957ba7b043ee2bce4ce641e7", + "regex": "(?i)^https?\\:\\/\\/vsafbg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "77890a590c90c538731e68eb885d2070e2dbf4eb31b197da2423b5d86c0e9b92", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+2f9ab12ef98b04db\\?cookieQ\\=1\\&r\\=https\\:[\\/\\\\]+expresscards\\.com\\.au[\\/\\\\]+dead[\\/\\\\]+recaptcha$" + }, + { + "hash": "94f224d7b63f0b99d4f305917425b7f224e3858b48eea16808f4adade9be2d9a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsccc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1280f7efa032df62c01195795d8fe50882fca9e90ef4e16cdaf24430d296b11a", + "regex": "(?i)^https?\\:\\/\\/oknxhuarfavryozaleada\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0b44db4ccecc4b48db07f43774b211c8ff4b913b0436555794b841ea07b131c3", + "regex": "(?i)^https?\\:\\/\\/han83782\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "61dec0f5d59e4c76f4ac3db5ab7d07bffb5ccac9b6519a858002e17a6f96147e", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "50e1c6cd4988cd3d848d81ee96fd0e5f05061db2938ab324132f31b8fd5ca443", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "85847cd08e10b7f61c1c8a05a75eb5d92dc606b52f26a3a590bcbba45d0f22dd", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2088d7e81615f2a3622aa31e64b25bd8a3a978ecc961e0be9f7cfc4111dee08c", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "31c40f7b8666804122b5421f74201b5823d028cd9ced3791e68a29bbb91ac83d", + "regex": "(?i)^https?\\:\\/\\/dsakusaid823\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "63fc0eb702fcd921e45974cf6c802c12592c2ed3ce92b58c1281da8a1b6c54bb", + "regex": "(?i)^https?\\:\\/\\/dksajd83232\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cf2535fd87f2cf1d87d8b59dcaacd43c8a50a48e8797a9a9a32b366ddbc56db9", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0fef88eb6fe4579939c710b3f49a676311f5cd9351bc84f7f5cdee04b5115cb2", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "52f54c10118d475dcf0e670b22aa49ea234a3741c463fd515b83541af7b21211", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7aac26f31f519dd427af85614771afd9aeaa957b09005ba55578cb4970b5abd0", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6ee5898467b638d1612ed2e78c43bc9d2833de14124e6662631aae025cc8145d", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b4dad20feb353a2bba469077af3875842afc2f03a8dd214a1410d674a287ac30", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8a011c752272fdbcaa5f3d895fbf5fdfd43d18b6dc5dde63b42098b2c3a08119", + "regex": "(?i)^https?\\:\\/\\/dksajd83232\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0c94273c8a236cee98baf7dccd3067de02341a7d993198e3161c8844a7bfb807", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "904bfec44cbabd8f5d52af7e408819ae516b4cd25cac7a02182f9e34b5d297eb", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3765f2f0bc457f53a06d66f6bcf23cce37c931be5aa92fa6787782ef315bed3a", + "regex": "." + }, + { + "hash": "914cad164c259e7da2a60a57c649426f94901c0da66d9ba6e09328613568b332", + "regex": "." + }, + { + "hash": "5537aa2854dfa6e53087ded12be37059a8da525b136064c0ac48e53aa11176f0", + "regex": "(?i)^https?\\:\\/\\/www\\.gdhcdq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4a11d7f2a117def2e10b1bb90da7df1a3dc9fb62c10253ac75725302b66314a2", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1913cd307faac23d98d21893fd8406e29d564630adf98e79a33b9b5b185a06fc", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1b2109c36ba51b831ffa39645127cc7652558b2b87edd3193222cef83d6fba8b", + "regex": "(?i)^https?\\:\\/\\/han83782\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ce334fa2c8203d2d5f1c8f76a29d8619a4c9eda0391ec3b606d4808dfdb7a4ea", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1450a55d05f0b801b33c3d5de56a1008f2e29f95e0c51339022855d651d46c13", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fa7d12b5189b26449d906a0ea031d69f015495e4fc57f4c3e5c35c6e8a9c20d0", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5af3e3e630dd26079b0376cec2314c47ed0c578f1f490c3d0aaa1f1b81721e96", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b90dfc8886f2666a4f681db758bf3f805b30cac5537bcd0dac859912d20750c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+RCezF(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a9a9a6b28b05f59c4fb521ee614690df112f1421caa47542c9e80c8e1b5b42da", + "regex": "(?i)^https?\\:\\/\\/hana7822\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ce6d7fac81e391d40858ba4b8eab140551fbeb3fa8f7401eb89912160f6894dd", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+seg\\?redir\\=https\\:[\\/\\\\]+espynorg863863\\-btyi50ct4z\\.live\\-website\\.com[\\/\\\\]+bgh[\\/\\\\]+$" + }, + { + "hash": "dd9b930f714df58270c80d2179ad76f99db86636f39685fd51ef21383d8a74fb", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bfb9c9c8e7a86b31a79cb69b367e6a3a4eedd2a6caa89197a422daccfe0fc570", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a762d0a17f03221c56523bc62a51242d12a409c400841da7e43ffc295e41e6f5", + "regex": "(?i)^https?\\:\\/\\/han83782\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f7f00db827a3772b189091237920ededa469209acb76b1aeba7af36dccaa84dc", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b55d7dbee601e3bb77e962bee242de427ff2677db8f93fcd4d834291287989e8", + "regex": "." + }, + { + "hash": "570eb08303e6e02a330edf1886e2699f5980f67a7e4bfa5708c440c74eda8666", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3d6bb8e9eb0222c6690f4c3f6339232ee4dc55b65cc5df2d2a8463952415d157", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "45d68b951e44c408fc81c96ae1803f4062da1fa77ddfb4a63230b842735371bf", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3376fd8b39b88e5e4d3eb6810db091783385512e283f34468ccb70d71bcb6234", + "regex": "." + }, + { + "hash": "1ae614412cad22bd3fb0141251a74a129d00978c9cc8c7163680e8a48456053d", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "dc932a2ed9a4b6636d7639564ff78e7ecdfa3ae7eacbb9ac91ab794b2a5b7590", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7ccf88f59ce2fe206bcbaffe4379e85be3e62c4f73749f0536ead83b20d01c64", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bd19d3f93338d0f47472d850f6f5c79fc3604582437f6f556f95e4a17605203b", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "aab3b69f5708ec9df76e497a774612dff0ffee65a0edf2b5ccbd192f2a65d864", + "regex": "(?i)^https?\\:\\/\\/robuxcardsccc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "50d4cd9d1d9d67468017bc01d6620307e29ab748902c9a7298cacb6eed1af70b", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a4fb4b509c3295f942b9752adfdb1a1ce3ad2ca17bf69b5e288b18cf08db1a2b", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6020e31ae701553f1285de454966da719da05d2c008e34112b38d3555978afe9", + "regex": "(?i)^https?\\:\\/\\/oknxhuarfavryozaleada\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "807767622cdc9d6593a6e5088e16d5670b5925089392b20ebfeefaab660fd958", + "regex": "(?i)^https?\\:\\/\\/hana739333\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "170ad4612a9c5106cf2dd4e3c62226028fef37a5bc9a2707174cac157735da15", + "regex": "(?i)^https?\\:\\/\\/dasdk922\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "29b16125e4ae4972daa2aca5bd8660b006e09df4a1527a9416c21b50bc3e3e96", + "regex": "(?i)^https?\\:\\/\\/hana7822\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bf5012cb6916bef24533d76e698a390d25bebeebaae234ad43e19e4e1036fe62", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "574c1962822dcce2fb7dcdb0c6d7e3238868d55e44ee4f72250bcf45a72f345c", + "regex": "(?i)^https?\\:\\/\\/hana739333\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0a173faf319dc2e20129f2a4f464bc39abcd468c52c4e13c32c479393845c235", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "12fed605db6c6dcbc997e22018a91f94cf4d03e471897708e6009817f3809f4d", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdshd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e10eb763ba142d6462d605fdb6f81e26b943b1f4bf1fb7889f0ae22b72422800", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "858a9c32a3941c49bc9066416dd243a7c14f010a0075c076666da9b9fe63bd9f", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d87ea5aa811046ffd7ac710e92cb97e6f3ce8d5e52045a29b6ed4cf69e0ef", + "regex": "(?i)^https?\\:\\/\\/www\\.gdhcdq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e9c618ae960d77429386d8c4b2e2d729f316c85923559cf6569099d9d8d3788a", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0bc606cb71e16d3aadac3ce6cc9a9d67c0f043677d27e5cd2f6942898e5b0192", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.104\\-236\\-85\\-175\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "50097e7fc5749f2b4e22d70dd7fdccd707f5b91e212749f6578d2639569e8dee", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "033bb3234962f2d6c628849c7ec508ccb4137256dc531bf1058e0592c98ec459", + "regex": "(?i)^https?\\:\\/\\/oknxhuarfavryozaleada\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "23e035eabc3ef192e4352ffa877ccfdf32c5f12a91112c24f810c03e4a04b89a", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ccf99c4b6b44c62ff835472fd6e16cf168bb85cfd6abe6e89ab2ad7657c2ee87", + "regex": "(?i)^https?\\:\\/\\/hana7822\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c984dd2290cf25d13904f349617aabcd3110cd52e6563d85e7fd82361adfce5e", + "regex": "(?i)^https?\\:\\/\\/dsakusaid823\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7e00aa0c847ff53086853fadad3b9818ba54b5ed9a3e2cdfe6bdc990af2a8fc4", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3d415741ee5b36f83c202d2dd84fd65fab8a0c218a02b58af4f390d6c05c1aad", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e3f73525724f3f7164b48ea3d323aa685a1ce407f0d491b3ae63c23a99f52a1e", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdshd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "14d99ba80a30b61ace77e5ea89b4e2c1b8a0779ab853e6cb8b06c6e0fcad2aa7", + "regex": "(?i)^https?\\:\\/\\/www\\.gdhcdq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ec50ae1183e5269bf60df973c6ef1d790170007c92d2422eb5a21e4e541d59ff", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdshd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cb2f9bcadf1fb688087edce6f3d9c83d9ff721b175a653a58ec6397e1a54cda1", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4d227d49d0879181ee5d71402a78c1533c9b2182b7840352746a065fe8dfbe40", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "23fa826925db978c9c1a582cd5f6d179a0e656ba3807135f299edb708e44ce02", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8715ed5f808275533bf4e31636c38c38cd451a2c1e13ffcb7c9f5de15a586919", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3cf5ff0992684fe314173f513075670063859d79ef40c9d56c1f3d3c19373130", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+cancelaciondecobro\\.blob\\.core\\.windows\\.net[\\/\\\\]+muadd[\\/\\\\]+seguro\\.html\\?\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "f6202a8f34752a4c4b22c4f521196432bc0cb8f310b1ad3fedb308041fa0459a", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "59940a259d5e2759bcab6dabc5448fa93e6f5cad0d98dab3bb37d12002771b00", + "regex": "(?i)^https?\\:\\/\\/hana739333\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2f962a03be09517915886fe833bb4f94f716896209dc931b9d583d0085917dcc", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fseg\\%3Fredir\\%3Dhttps\\%3A\\%2F\\%2Fespynorg863863\\-btyi50ct4z\\.live\\-website\\.com\\%2Fbgh\\%2F$" + }, + { + "hash": "308cdd0f22e7850b826a527e0fd9d50eee47a5a8cd85d07f55cbe882a5cef012", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d7ffa63a62df81e0f7528508eebd8d7a00b58a4de306c5309606b6049d3faaf5", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "71fe6cfb3096fb6b329460623851b7e39538fd952d98859d072ab9b857086093", + "regex": "(?i)^https?\\:\\/\\/hana739333\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bfc8eabf0fd14831b26a8a07555ffb3a6821063e42de2337783b061d819aa840", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4cec676ab20771b6b33fa1e314fad8ae1beb281c5387c832cc6c8d5741cceb8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9cacf\\&id\\=alpha\\-legal\\.be$" + }, + { + "hash": "8c364149add07be160696ab0c6c67b092914b231eda0f218a8b8511565eab7e3", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6c206309a96479e57878628368e24c8e58ce2ae3546c3b0a51a843bb606eadd3", + "regex": "(?i)^https?\\:\\/\\/www\\.gdhcdq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "228eb964a3cfbb63914ac8b68ad56e721c951b48238530c8c4fb82d0aa833590", + "regex": "(?i)^https?\\:\\/\\/han83782\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "29b354fddce5c367dadf4140bd521f14d04bafe35b93a11c3a076c4f1b77286e", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a5b0cadfa8f20b8251dc2eea877fef44b7dadc4a65fb8e58cb961c7ee8404ad7", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8134b1b16e138abc5634546c18428c92a4a21425870f9fcc8ea6c6f3067a00b5", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "38b0af7c8945399078abc83b1046b8c38af896da9bb4aedc01857b10cf2ac7ca", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "95f35b4e14c774500da6295a780d280dfd95faea5d63a7969dc5dbfb18972e29", + "regex": "(?i)^https?\\:\\/\\/dksajd83232\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c73e98f868683aeaefab69fb1b7c2b4bc6014120cb9a55e9a4ee413f93a12ba6", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdshd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "171c65216fa2f03de0d8bd65160caeca4dbdd12b2208432f3b355a910c446d96", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "983e166452aef0de7b9712c7c1fa68157d5624446c9841adf430131734edf633", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f57e268bec440a7496eb56aeab58d02b146d9264c62c35105973b1df3e62fe35", + "regex": "(?i)^https?\\:\\/\\/hana739333\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "65e7e45cf9c6ef62038af4b0aa98482a6723f3509def8decff8d473371a1db9c", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e79617bde3dd4b32c8e429eda5b2db13e3c035110ae74791bee7e8ccf15f3102", + "regex": "." + }, + { + "hash": "2b9e872d4b06facf46b6977c7efb501a3399cb8b8003284f107da67b507f00a5", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4995342adc37a50cfd24fd1f9cba47f3211037267e963efc363fec47e7864a4b", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "628cf16578738406cb4b2734c499292950f59f95d91adcf3fbb7cd2f02ade341", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4b1977eb911ee6a6135200f8cb77495e7473f70ff0f0f31a212b56fda7048f3a", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ceb23253d0c699070f12ce93c570dceed68809775bde78f8c6b30ae46dbbe6e6", + "regex": "." + }, + { + "hash": "2bd14c3b73af8823eda0d4dcb67c78037fd47c4432794e01273c5dfb0e6a50da", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6af3b4a9da66bebd6a5568346e5ed611050416653f264b2ea6d467f510310d32", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7567d3fc4730d36a31157ede528d17244288483e9fd095431d5f4780c4b1053b", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f4175dbae64badec4653b0f5ca8a0e3bcfa54cabec52cfc99bf23eaf08659141", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "95db6e70fb56aa8979a1f096697f0b60b673a144ca4e405b3e30bf658c496c15", + "regex": "(?i)^https?\\:\\/\\/dksajd83232\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8e229c273606229e32e890651faefeddb292a0f51b4f680eafb1500230421980", + "regex": "(?i)^https?\\:\\/\\/dksajd83232\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "62e5cee19298b845092b9de3bab6e4b90b985e0ea435670ba2a802c679aead66", + "regex": "(?i)^https?\\:\\/\\/dsakusaid823\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "caf1220fec43841b1d65c308550f17573a8b5be118e076a70dbba97cb06bf2d3", + "regex": "." + }, + { + "hash": "919d4a066b90aadd32d8eae2d174d69f5bc0c5248ef0de42441322e266f0a9fa", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bc6429ec9f0eb737a8701e6b5e508509a63a1f56ab0d521dffe1d82ea56d1455", + "regex": "(?i)^https?\\:\\/\\/hana739333\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f26ce0a1817c9ab0afa489cc0822d032122826fb4cea0b171045bc33a17f0697", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fseg\\%3Fredir\\%3Dhttps\\%3A\\%2F\\%2Fespynorg863863\\-btyi50ct4z\\.live\\-website\\.com\\%2Fbgh\\%2F$" + }, + { + "hash": "ff17cd5838ff93c84b1fd679564b08924d16ea900be04bb8f03263230947bab4", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c2c4a80c462eac2bc02bc8f8351c1cbec25b4a70b411c9944578761a9a2148c8", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b5be476b30e4d4be7647f5a4bb36daf3d0f7af2eb66fefbb6a74ebc11329204b", + "regex": "(?i)^https?\\:\\/\\/dsakusaid823\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bd0137faee4919e2689729775f20a4e8023914bd2f6f49bfc0b630687571a059", + "regex": "(?i)^https?\\:\\/\\/han83782\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a9291242d2a1362e90fff2f01f8f5c5d320441f9b96a7a7447533421397abd2e", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "30224aa49d90676e3abba95f79ea28795fd8080a94ef0beb9c310af7f5a6c987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iap[\\/\\\\]+2f9ab12ef98b04db\\?r\\=https\\:[\\/\\\\]+expresscards\\.com\\.au[\\/\\\\]+dead[\\/\\\\]+recaptcha$" + }, + { + "hash": "525950a4f853109b112db26405c1d7da4006eee97ea7409491c153bc80df0bac", + "regex": "." + }, + { + "hash": "6cbe63905c8ad3de2326cb15e88d58f94b8a6bb7b3a7f56f0821b8d00852ea1a", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "af5027672cdc6641bae6cc60b30b3a35a0cd4f0f90c69a3eed25234d3f256bd9", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fseg\\%253Fredir\\%253Dhttps\\%253A\\%252F\\%252Fespynorg863863\\-btyi50ct4z\\.live\\-website\\.com\\%252Fbgh\\%252F$" + }, + { + "hash": "378b322e283c304656031179c6cde98abc05c7745f49102e7a03d61bdd7fcb91", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e818da32873aae588f1eef5e81e8a4572196bb4d96ed932000f51e74e255e14f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?45e0a\\&id\\=aurora\\-interiors\\.com$" + }, + { + "hash": "785fcc46814b3a2d60db60d8a9c8b8ef9838bf3b8afce0e9448659fcc360e45e", + "regex": "(?i)^https?\\:\\/\\/oknxhuarfavryozaleada\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c9cac634dde6a266a3850100421e0ad5fbf8dad645f443a542b9081a0d122427", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?625b8\\&id\\=schoenenvanaken\\.be$" + }, + { + "hash": "80854c19260ea83a602f8813d8cdd8098dc86ff6ee0ba4ddc1480481638ecf93", + "regex": "(?i)^https?\\:\\/\\/hana739333\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8ae8fad1acc6958eac8487160fb081865491a24e4482627be552427e0260c342", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0981d7c0803c44697fcc66ef8d13e302eb3ff0a7d2743400fad468e826de2261", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ef0e614fc0891539521df7e58e377908ce42349d4b22dc5418fd926525bacfd5", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7a8e2cc99249a552fe9a138d6a6cf01387fd167804acab91de933e02b73f78bc", + "regex": "(?i)^https?\\:\\/\\/robuxcardsccc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ec55bb276ae287f914006984a3bcfb2b366d5e21bcb58b47206c83bd7fc3089b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?db321\\&id\\=transformationsatwork\\.com$" + }, + { + "hash": "5a35ae1724cdeb87f0f43ead540bc04194fd5a90ac31981bd0663e6d81a6c69d", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "df26ee1fe6c055c30a44ba9c709e37225f6843c4ba7b6b22ff8acc2c9702e302", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ffbd75785b54d28ed32ada09edfcc2ebcc100988d5d48599207efef57d8d4ab9", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5b6db1e2f29c20b87e4c48e5e85e37a6ba530d045cb66d31ebcef15d4f4e94e3", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7dc0a867beae4d82906a937fb3d75b99ff6df70d1cd0337cb126f3986701cee3", + "regex": "(?i)^https?\\:\\/\\/hana7822\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b67862a19b021154d81a1786296ecadae70e4966846925e139e8338c51f448f6", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9fea95730fafb646aa6f39532fc16525b9ca9f29436719316291dec218f92734", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "428ed7c769d197d3b5e196caa82f387b003982eba732628edd7ce0cfbde1b0aa", + "regex": "(?i)^https?\\:\\/\\/dsakusaid823\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "73857ee976728ba91c36ba13cf8b012b35437a11f52b58e6a182e06f6860cda0", + "regex": "(?i)^https?\\:\\/\\/hana739333\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7f177623e8199702119ac32257718198b8659336baaa5631dc2c4d43aa2dbb7c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsccc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "eb4acd9299e58274d5668f3f9b04a9955d06cdc2948f3ec65a9c0b3d884f0f83", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ff280a12d01d3143765325ad1857e04178ff4e6b5d9a2441b8ef4b2dcdbd0c6a", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "41763bf694abe8284da82d5c3d7c63ba002c3b3f16db650dc99f94356251dd9d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsccc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3d5e3e769c5f8e7fdcddbcd7a0098ebd85aaefca16e9b4452e0cb50f4dcbc1a1", + "regex": "(?i)^https?\\:\\/\\/dasdk922\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "705e8d82de5ebbd0bc0acc5080243e3a29acac11c0c457acbcbed51078a37b7d", + "regex": "(?i)^https?\\:\\/\\/han83782\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a2c4a7654b63b1fa37008fe25fede7473e00d29e82a7aee39ba1c10851a99e3c", + "regex": "." + }, + { + "hash": "9ce9386ce14303115d38e953f274e9419bc161bbeb1dbe01a86acd3abe5e901b", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b67801c089645d25bdfaad1723542dd469b587babb4d524751dcd0ed61829480", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8ec1ee06fc5d12fda16287ef5c3d9ffc09e774d1b8dffa9d47c2ec54fa6b7952", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0f777ad3ca6bd40ef85bf51e95b120f68b7f43f300bab9aa73bfcaa931fe509a", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e625bb9ee78e588f2d3b0cc2fd285c52dd2a433c27cefb077ea1b0592e623202", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+cancelaciondecobro\\.blob\\.core\\.windows\\.net[\\/\\\\]+muadd[\\/\\\\]+seguro\\.html\\?\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "e78658c6a268a5c2d273bf38f1b9f3bbddc39fa0af2506ff729950473b2cf5ce", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9c77d45dbb858da23031900ba06ec8c637ba21d3294acdd3471e6b158be5bbba", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "479efc85c6805b7dfc9a7a03a45518748005694b01827920a3b0f60a5c9c0b1d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsccc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d2a8764a17f766c57704fb987068c959c1a6b892aba9eafb06dae92230229f41", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a27d2c6c5fede9802e321bdff56134f43e6c6396ef9ea845046f73d5398a6f79", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9a00266306543e65327db6fa9b71103ee3690e9ab186cf418464e3c340975432", + "regex": "(?i)^https?\\:\\/\\/www\\.gdhcdq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ec1f0357d5e479b5bb3c597a89cbdeb96177d96bc2e26679bd7b49e69a6053f4", + "regex": "(?i)^https?\\:\\/\\/oknxhuarfavryozaleada\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e9b161f405bf915c05a18e1d15a4688e54c5cdf647b81eb88bf25bbccaddd979", + "regex": "." + }, + { + "hash": "0f01bc696629219745d91cbdd5ad74365841b5de1c185bc53f2485a98ab542c6", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f70d054d48de002ca9f91177d41a3194c9c1ab59a0f24549c464bcaae93d0509", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "22561a2b295ef7a0d6608c6e2541012779c1a73c4dd5e6ec093f2bfb8407f0db", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8466366467f0346b569e4bc6b5f12e69b0f00d4b63c2774b7757388eeed9281f", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "04f9d2e98d654a0ab661868b870eed797b0e4421859b0f899fa3ba2ad84b149f", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7b6ddd4682c89ffabbd1798f83133e860788c940876db21c5b33c78446838e3b", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a89afa94889c586fbda0f9bd18838543086cdc8873385826b06c2db31cd69068", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "247bb32dff95988b1f623dc20ea753034edf03cc73925b3c7e13dc82ff41e093", + "regex": "(?i)^https?\\:\\/\\/hana739333\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e5b8645f0e479267a1f9c08666dc2933589892afe5e22de9b2ee02bc485b6d80", + "regex": "." + }, + { + "hash": "2f4ee4eb394ab4e4e1849e2cb502d3aa820a6770654e35161c217c1466debfd2", + "regex": "(?i)^https?\\:\\/\\/adityapradhan1729\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e0918d924c7b6f264ac3e7d26898661b3ea3697662de9608422a59c96f9a5d15", + "regex": "(?i)^https?\\:\\/\\/han83782\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "699846cd6738634b2056851433296cd5ec89edb5677990f6f551095b8187d6f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "13aa05de887073a28e0f5e66ecdc4747fb6ba5910231092c28f40eaa7de54803", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdshd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bc0c0c2d3e51e480e224c58b05955c79508a6061ad8d235543f6d5adc4d6ef9f", + "regex": "(?i)^https?\\:\\/\\/multi\\-system\\-protocol\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "466a20d05148b98f3ce936429cf467a6594a08b8f4c4a396ea5ed5d9dfce480c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsccc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "17e9371b5b5a345b974291fb1babd476d5d9498f169ca73cd1d2b265ea4081dd", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdshd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+cancelaciondecobro\\.blob\\.core\\.windows\\.net[\\/\\\\]+muadd[\\/\\\\]+seguro\\.html\\?\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "cd213299a9d8d858352c7993c44c2a250cfc3e2f02abecac208906bee72864e8", + "regex": "(?i)^https?\\:\\/\\/www\\.dnhfbx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "45e93269d7c72d15fe35b8098fe910c171d10fd35eb0f35a24bf3f725f3b6947", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f26cbf7d7a27d93938fdcdcc9d7ff9b7e1268b4da01b7836c7e5706964fa9772", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cb2fec034c18c073faba9ba0be1f1c34d0cc5b640e18e0b47d41ee6dfb0d556e", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8d64ddd2fbb2b6e6059074e7493a71097fc1a08011f0dd64f8a55d364f4589a3", + "regex": "." + }, + { + "hash": "76428dbff246e519dfa6d64708cbf964b082808d54eb68ff3c801cba65fe26c1", + "regex": "(?i)^https?\\:\\/\\/hana7822\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "72bf45222bd4a065904506070458ed2a5c0d7666fefb6e321fb615e55d66baec", + "regex": "(?i)^https?\\:\\/\\/dksajd83232\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "70d8520b5eb4b652e40280e50e0eaf4acce177d86c33a2c01421aad4eff87c00", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdshd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f0babebf15b04d7318d5466005b8e5da56eab239bdd05a9957624a6e861623d9", + "regex": "(?i)^https?\\:\\/\\/dsakusaid823\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f43bf0f69dd6397ecfefac2e6f6e8e7a1966f27971bf55bba2c9a5326bc0fa67", + "regex": "(?i)^https?\\:\\/\\/han83782\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b67cac5ab4d168ae68f8e22130f4cd0f0be0324ba24097a327960e63f70e58d4", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "86c288771fb4ea5b409fc13c70ded0224d7ed9220fd6d902fbdddac8e37d3d0e", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e9c6cb414f870ec6f2a65d82b9bc7275d640d964b74e064cf3559991daa8d968", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0cc187e1e3ef0ec403da5388e7b0feb37491a5e4eed641a9ba23611126deb7d2", + "regex": "(?i)^https?\\:\\/\\/hana7822\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "357230a4bd7fc979e742e7fbe0f21bebfd99ad6e7d033b942e9a04c448352188", + "regex": "(?i)^https?\\:\\/\\/dksajd83232\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ab49241d75b9ea7a2aaccadc6e11d90362f55dd3bb97a919c584621b81f05999", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fd78cf5500502d706991a65fd7bd331d19af8a2c073b63e6b2e38b6e6c9dd2ba", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9f05b8566ac6f25e4794fd6e010a21e2b875a170cbfb5d7bcb20ebfad4391087", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e96eb4e89fef433d4a921e525eee6709dd724e73abe96b433f12e9182c29ab09", + "regex": "(?i)^https?\\:\\/\\/mail\\.35\\-180\\-21\\-63\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245b49395\\-8e6d087c\\-8920\\-4ec4\\-80b7\\-e146c0e6c090\\-000000[\\/\\\\]+DNJ4injGbDahf6pYAJvLc3Suf1I\\=394(?:\\?|$)" + }, + { + "hash": "5192703b6f1aa030d27dbdfca41251c9dcb4308a438ae1ce4c64b29e0e384721", + "regex": "(?i)^https?\\:\\/\\/hana2jj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "69b1bb4882d93aa7a1c8327f3c814d8d9062b2ab6342e19264a1faa79d4d8382", + "regex": "(?i)^https?\\:\\/\\/dsakusaid823\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b5e60e4793532909271344f87c567646828394bb1660b43185b48af26607b631", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ed6b791b301809fa17cc8d518c6f1533976ca6d2359cc92bf3d0ddd4a1a97d4d", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0007e55412b220b120b016246f5734aaa3a6c5131ed9193432c8329a635e7db2", + "regex": "(?i)^https?\\:\\/\\/mail\\.104\\-236\\-85\\-175\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3cdd5425a22903403f04c21a91b22b0630c0a13bcaa70ec09c8bbbba4fdeba0f", + "regex": "(?i)^https?\\:\\/\\/jojohh7\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5824ed8b52053422063b77089ae6aecfa78a754bf8ef75409dbdc02f37541645", + "regex": "(?i)^https?\\:\\/\\/dsakusaid823\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "73a6f4a8cfac26c2580c950f08eb0ff196189e6264e0595f97f739ea841550a7", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a198893bf8cff907ff6616d073469dab24cc54e1c239c192837264c40af2a542", + "regex": "(?i)^https?\\:\\/\\/dasdk922\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2d804811c05e778120c367014ca4335332a2a13a8588922afac408e94618652c", + "regex": "." + }, + { + "hash": "9d932ce99a5516dbd227432cf0deda03bd794599bf8f44cea0062a06aac35317", + "regex": "(?i)^https?\\:\\/\\/hana47832993\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a631b7e6fbee52d21f59d7f2d2ead5627975b319260713d6f90321bb05a2e0cb", + "regex": "." + }, + { + "hash": "317f760a9d20dbec4a2966a4e97089a6fe1b1088995348b02269e8079b756aec", + "regex": "(?i)^https?\\:\\/\\/dsakd822\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7b6ceb234e837d754c95f050c901459e3ca85ff5804e6c6d8b685f33f770ff1f", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3d4d0ed46e3b24184236eb7fda9f3aa2f3a2e123fdc1d7f19d1b9c57ef11a03d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7e553\\&id\\=menuiserie\\-dhaene\\.be$" + }, + { + "hash": "ab9a02ac1a5ae14676506f7fbb4179ffcffe119e1325f8832739ac5c8b0355ff", + "regex": "(?i)^https?\\:\\/\\/jojo2222s\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fb3a107d409526c1a6157b6db00d2c28bfd6724a156dadd897b757a0d9d2149f", + "regex": "(?i)^https?\\:\\/\\/koksdo1\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8acdd52ad78ffc45a44064310f0ddd3fed8632ae71ea285be67202f49b86ba36", + "regex": "(?i)^https?\\:\\/\\/habdg6677\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "325eacf422003a5735c47eaa4c92e5f07770c1df4fe944d25327069a4e263462", + "regex": "(?i)^https?\\:\\/\\/hanauau22\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cc185a0e5563ede548fdb5660cc8fa8eb3d4f69840f2dc1b7c52f939804d235f", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b23b5d9b634d359765d74071fa3c510c5eb9905d6fb61d9e630631f77c9d1b67", + "regex": "(?i)^https?\\:\\/\\/dasdk922\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ba677d3e697b861be9d89fe90d76abf1e25e39ae6d98c9dfc5e631a665e88d39", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a7e39926260f8775b56d2108928c408460a43fee0faf7112e953c876830cd91d", + "regex": "(?i)^https?\\:\\/\\/www\\.gdhcdq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "785237e8647760c813bd4ed41c2614751f532e7ac81ef87e67174314dfb310f3", + "regex": "(?i)^https?\\:\\/\\/hana12a\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245b49395\\-8e6d087c\\-8920\\-4ec4\\-80b7\\-e146c0e6c090\\-000000[\\/\\\\]+gzpxalM_7dmUzYsjIN5WsXptrEI\\=394(?:\\?|$)" + }, + { + "hash": "b4f8d98b5568901393c164113421157a5b664524f8caa400217bf5a95a2251ec", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "253ff8753eeda37ecdd501ba5a62ef51e0448b120fa1d7bdbce0e230ec758c6d", + "regex": "." + }, + { + "hash": "48027540a09c641e5e6669f44150dc3793d616e3844b80bd265ddc346c0f5b39", + "regex": "(?i)^https?\\:\\/\\/smothopera\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245aed775\\-d2c62fc1\\-92d1\\-4cc9\\-a82d\\-f3eab07fae7a\\-000000[\\/\\\\]+bmqNwE\\-8BG_r7smdamJVgGjAIac\\=394(?:\\?|$)" + }, + { + "hash": "1a534925a915fe559ad9f87ea379a54ede11da2ac81d209ec709122956673e43", + "regex": "(?i)^https?\\:\\/\\/www\\.13\\-228\\-79\\-216\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8f9f520d618f07682ba2633e18a575db119bca34a6422fe8ce0827e3061cd112", + "regex": "(?i)^https?\\:\\/\\/smothopera\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "427cd883d2f246cd303a48ebba9c8c7e5024b76cf4ba83fa1059969f31d5ca35", + "regex": "(?i)^https?\\:\\/\\/danholvoeaz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "093ac12edb9d44f0ea39aaf5c735404e33e83fa9d634b8bfbc8197c3ca58a392", + "regex": "(?i)^https?\\:\\/\\/mail\\.13\\-228\\-79\\-216\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "64068e679463fc6d8db6bf0cbe3af9c462d99d8e8959b7e989c9c1a5eb8f7fee", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b8abbc9c5dda1e292c48d5bb6955295f9f98977fa8aea06e29973771980ecb22", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "57bf1b7f35e01bd2d3e42b3c92ad5fc53aa7c7d657bda1fce92964bf59eca6c6", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhxz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a5af2f62821f861a1b50120be2e564a7377cbb1a61fb37b82177a4509c47a9eb", + "regex": "(?i)^https?\\:\\/\\/benhilo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "90c57052af58cccb99692c3c58a70967589a40d9984dad3663d4f5ad69e907fd", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhxz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6c85bea86aa61ba84263e89b96feb1f4c8d38550b76a0b9b8f0b4a10422206fb", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a8cfb99b6d3ac4b3f1ea94338b8ba117b96660f58b81a92f9b9db81da2c38380", + "regex": "." + }, + { + "hash": "7d87c11f9b5ef7e8777065e3f2595201070d396ec132eb514f0eee5911fe0dc0", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3634d22339b7564ae864d8b3d8967f8540b2715f39caef1183c6385d831b216d", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "923af5c9f5c41a4d772434217f36caa63e490b4a1418ce5a8f8ed73936bcd8d7", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "60265e8fff891d7d9beb828a225e39e81207a13cfc36ba8f07e59ede65aaa45e", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1450d0e05f5509a9282ac596f44661e67e805d035e87c80c84b317bcab3b669c", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c148a2a0151c727dd04c6db9fda9308666358d2e4be36f6ae78796ea8f3bd5cc", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d70a08405fe852783441596726e7cc4ac2885b8950434fb79df4019a30467f3a", + "regex": "(?i)^https?\\:\\/\\/danholvoeaz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "61fa44693ed5a96c042fc36f84aab7216c48a5eaa9dac1afaa297c693bf52e1a", + "regex": "(?i)^https?\\:\\/\\/mail\\.172\\-86\\-123\\-117\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ea9b28a8cef28c915600435a274d83d29a4091a115b1612cb5bbd4524451dc84", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e0a2018dc1d6cccdf583612e6f36ab2caa82d51840e1d8eca153f490eb752002", + "regex": "(?i)^https?\\:\\/\\/farinadenfarin\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9511c109ecad02fcd488080a4c4422585dd57837bbf394d9befd0c2a7ec91314", + "regex": "(?i)^https?\\:\\/\\/xandersaz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9d16e0199c456cc21fff6efe95e42e73b1027c48af833f53b484a026de82af5a", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "39b830e0f580c0d3be9b3dc87fd646f8dd3377e429e3b3915d7625214a1715e1", + "regex": "." + }, + { + "hash": "650fd28e36eeaf4827ddb65055578a3a41bb703dba9f629046abc269b55e4cfc", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b18f8ae7aa170b4c41baef053aef4fed39658dd7c06b9bd9816f56f550229b3d", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "eda6e4bceba6a1ca2917562c910133b4820440896eee3ba121fcae32b70eb051", + "regex": "(?i)^https?\\:\\/\\/xandersaz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dd9b081ff1c4c349681232e4a3d7654febf7dc0a106ef2294a18789d5bd3ae0a", + "regex": "(?i)^https?\\:\\/\\/benhilo\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ece1c5824f29fbb1aa18ed62d4839504d99baccc09065a56890396d4801ac049", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhxz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "07d728c2c45d1601ad65b7130553e681bc1ebba253cc84f3bf1cde5fe21cec7a", + "regex": "(?i)^https?\\:\\/\\/currenntlyattyah06\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "aa4d5adff63f6fb20959653fd8072ea4d1e7abc5740706c59593e01015ea707a", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "30222145048970e815d233a0f090a52191c95c0d6984612c29a24d1e63aa15e8", + "regex": "(?i)^https?\\:\\/\\/smothopera\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ca06df7b249279dfb78a65fbe9be81a8a3c91d86fcf10b5b9e1a775f1d4172c1", + "regex": "(?i)^https?\\:\\/\\/dalmobloeaz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "579a7fce67ffc5652d8d2185f5614d719a864c3d998ae149fd50873fb62b34ba", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6e0992cfecdb4cc259fb0aa50c73c19c61665874e2d17e2d266072a28b28b4ee", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "35d1f554eef7dbe87d68bc70ed502c6a7743bbe1b12915a78332e5b7fa8ecacf", + "regex": "." + }, + { + "hash": "ba67e9b1b0f50e66492719525faafa864fc031da2065d9dff9e1f3983e7b2bff", + "regex": "(?i)^https?\\:\\/\\/benhilo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8acae47b851c3bbad6dfd1aa0cbf2b716432058f3e4d208f0e4512829d3c3106", + "regex": "(?i)^https?\\:\\/\\/dalmobloeaz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8a253fd74221628f0434df767b4daefb4c97284e6289f1f920e8bab2e1e67d9b", + "regex": "(?i)^https?\\:\\/\\/xandersaz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "defebc05ae73000a25bfc87780716d5d6ab5c407d7ec78d146dda8d264b274a4", + "regex": "(?i)^https?\\:\\/\\/farinadenfarin\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9926d63f8053c33ae9b8cce4abae0b2a6a145964d1ba6d879cf1e8e461c70183", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b0e1de14974e9fe4ecee58d9f7ff3655da6ad234e84151854b3e6577fdb6f6ca", + "regex": "." + }, + { + "hash": "7e5053931922abed54ec841805af9e6c1f53b50f2876f10f7d93ffdac91748f9", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f2225e479ed5677720b5990c8c0d998afee5b989d5dd7ab52aaf0d3a2a3a1953", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b323808ef2ed6b4195ed4f4e43215b00f87eb68315342fddf88714e1bbd5472d", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ee1733024bb4a82a8f09ddab5aae17543f8d40142e74c3e37816edf7b4014136", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6b4b071229bb282241b61175bc10d28ba3cb4b105f0788923fe22b2062c65b6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+paylibeurope" + }, + { + "hash": "e802493af9067688dcdcf2e4ca547e20cc32b22110b45abcc624eca118b5a91e", + "regex": "(?i)^https?\\:\\/\\/pub\\-70124dab2bcd4be7b9f7883e52f2de93\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a36a650366bec8074fa88a824537eb9c8d001128a737121b0328c6922120c319", + "regex": "." + }, + { + "hash": "6d3f7cd546d5ca8220e48b4c3d87b571cf1b184b007fe8f40a45682f15bb802e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cad2e\\&id\\=metalconc\\.com$" + }, + { + "hash": "03f6dfdb5455d42239adee693705906a998f846a2587fdc8784a06f5c18cc483", + "regex": "(?i)^https?\\:\\/\\/xandersaz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c0c27e677ae4f2b6c6c3f9b1c7f61f88f0a7c097b0fc0140d5a219da735cc8c5", + "regex": "." + }, + { + "hash": "d9b9f1f0452ff5983cab66cfdc5022e5ff360ffb12c17706dfefb70b0c0bec73", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7b4dbeb760e340996dee99da9fddc2e7864c4273fdcb2ac16bb9a1c6b7458f0a", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "855208d4eb58b1f095bf1c04771b11d20dab1d729fc0a490fa3853dc130b7260", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b63fc0e2d17f2a97c6aa861531c5a24e13e07a8eb5d61c19ab64d10e767de3de", + "regex": "(?i)^https?\\:\\/\\/farinadenfarin\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b41d115f6dca032283c111509d0062beeb200866fb225561e25db8178269876a", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d54453d3a620a931c59445db167e358bbe5e506ec22e6132ab21118650095c5f", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "97972b0828c0154d094e50b3c26e7f4f0e0a1f997fbd44637cdbe0f52a36cda9", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b33bda1aca82e0bba4675789559ad8ac7d60959a5e27d9575ee8aec87f7a35e4", + "regex": "(?i)^https?\\:\\/\\/benhilo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "64ee22fc88b27bed3358b273a829753d0dd37c920e396ad3419e04d2342566a9", + "regex": "." + }, + { + "hash": "6d8ebc18646a3872658bc114c09f5a69b69e45c1e88da82ede1a4831d166cbad", + "regex": "(?i)^https?\\:\\/\\/danholvoeaz\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6e86147ceb7b6fe344e31ec8dbdae60d262128c69deae233fced20353b62aaa2", + "regex": "(?i)^https?\\:\\/\\/dalmobloeaz\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fb6740e8f75006c9922bbd7dea56dc6c1e6d5098abf510b5fbb6db15c16852e6", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "93c14abe7f680c83586d37009122d46e222dea0b34585113672c43a7516c9bd1", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhxz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a4ce4dc7972c19ad5ae899f7d7eb2c60ef2d67d28d39dceb69d88900f28d5fea", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c14ac4041f5a696136c664636f23ab2a17fb7b2c6248517de00895138b130b6f", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fb7de323e855068a65c0080925682e43b99e287d579f86fc44868bf1ba11f148", + "regex": "(?i)^https?\\:\\/\\/benhilo\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "20de7d0d4414bddee721117506b4c940eb1a364052f58c343d96f7a4f6e61874", + "regex": "." + }, + { + "hash": "0f30e62d076cf50c615f4da94678a35d554321c359f359898f6d9eb6311a284b", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c3d55d2628fefa654f65b85f6b5c4bc2e7c6bbb2c6db2697771b0cf5852d710a", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e8331ee51b869b2a087573c0e1ccde109fc3d4ce2c243670d2456677b96305bc", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhxz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "febc8c272a92203bf53f9b68521d1e499b77b0d5eb45c70a3eb9e12a36be84d0", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e0dfe019335d75711c4179369581861a93008534c9928f4be5e19c9df3874ce1", + "regex": "." + }, + { + "hash": "2ab1b9351d85812ca949398e92e2a639bd7f9728f96b216114bb9a2835395f78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c23e2\\&id\\=schoenenvanaken\\.be$" + }, + { + "hash": "2bf5ef690b84a09dafa376786f2632bc3a44046be5d1aba1efb3f0fa35b6d179", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c3822a45ea61002b44e702f4fa08cc206649cab06ce42c9293ba1b0d0f55a02a", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "25ee9359bb103b62e4ccfea3da8643e12e5ac51b351bb98f8d65510fdb9eabef", + "regex": "(?i)^https?\\:\\/\\/farinadenfarin\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e800b77344fe7a584085077599910979b27beaf42e9a9079335047a72582b747", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f4e93d9631d8634c1c18f2c261bc20eeeae51fb8d82af5df116cf0cff906ca74", + "regex": "(?i)^https?\\:\\/\\/danholvoeaz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3544da794c62f1118b0d4852e5617014c8594e9fae1c410a05fede2599a2286f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?af3b1\\&id\\=henquet\\.be$" + }, + { + "hash": "fb9f6e5f883ee0229c4fca43c3733d46a4a073ca076cf154002ecc25fedc7ff8", + "regex": "(?i)^https?\\:\\/\\/farinadenfarin\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a49bfa44acc7991b66b0509ce204332319cde69f8713b86952b14e4ca683f16e", + "regex": "(?i)^https?\\:\\/\\/farinadenfarin\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8e39b3acf5a688987ff06ccb3000c194d223e8e0ce10457363460561931134f1", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhxz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ab419963566256b2747af7248b6319e9baa6fe6314dae91d470a485c2c6042e7", + "regex": "." + }, + { + "hash": "dc89d5471b66675fb5c47767588d427738bfb4d81a434f005ed3584e0fb77df0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1bcc7\\&id\\=cuvelierassurances\\.be$" + }, + { + "hash": "8be7635954d652a13bfb16d99b4e9b84a4b5995dad9ce6550fefc004789754c2", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b974ff84c475e97d8a2242858c394b62f6a19c668e54a569d380f18fe961c3be", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "de8ccaee4bc57b6f3d39eb5a436f60d8a585484bc1a348dbf6366e7ad5874853", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "581c7cf8b8bda016c1e5defe62e731cea6d4e5cce1d8bacb97096265e3289e63", + "regex": "(?i)^https?\\:\\/\\/danholvoeaz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e9bc5aed911502448a73d099aa4a5490bd95afd206c4899342b1dbb96327e21c", + "regex": "(?i)^https?\\:\\/\\/danholvoeaz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bbd62f62a15afc9767249c78be322ed1d174fb9c50bf0d07e773e2c454be577f", + "regex": "(?i)^https?\\:\\/\\/danholvoeaz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6cbedcad418a495adef81a24c9a0f64ea6f50c33dc0b14e4f546b0bee3b93984", + "regex": "(?i)^https?\\:\\/\\/smothopera\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "99fd69363ec652bd7bbd937c1639d4369525ecf4a16e3226e7790810ed03dac7", + "regex": "(?i)^https?\\:\\/\\/farinadenfarin\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2597352b664f72bed20a19ac6eed0dcbf9755e4c5898b65dc4896044f94451da", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "42feac0027970d34bc050cf29c3335311f80dc0a0c5ef8c13c67cdf838176828", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5ddbfb67a6931d20acccf5253887a4fa51c32035376d2e26fb1ee9d296c563c3", + "regex": "(?i)^https?\\:\\/\\/xandersaz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "01d543911aaa4372b3709df3e3d262c03bca4f02c08a6c008ad9fb5fbf62ae2c", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ce77d4d829478db07a607df3a7dc170348e4c6af7a1e41626b47c7c7b96fe53d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?11170\\&id\\=a\\-smart\\.be$" + }, + { + "hash": "9ee32b26f933bcccb2cb805e0dda13f334a75071d823f17fadfb3c3bc4fcf375", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login[\\/\\\\]+lg\\.php" + }, + { + "hash": "5dc3f893a8ae377260e4237dfc0d8fad04769869ad0e85b86e9a05d2cfcdfa17", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f71c44bf2eb4b4aad8990668df754a689d8c2b0d8cfbdcc66e4b6e3ec0313798", + "regex": "." + }, + { + "hash": "9a257c34db439c487654b40cdc9ddb44fa6ef8ab0a1daecd6db9a56c1e8f7bb0", + "regex": "(?i)^https?\\:\\/\\/danholvoeaz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a8315d0590d2fdbe3e6fd1ad054c06b329e697e523939aff899e8f19dee247d8", + "regex": "(?i)^https?\\:\\/\\/dalmobloeaz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "82bcea8bf3dd97e58d931b4a195db41520bcce1339816090f8aa15fcd9d45f08", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "54e795306072ff07edce79fbdafdb2f1e7cb4411645c391f261aa22a07dcc2f3", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "75b123ab90035b9acba5c2579000c2d7ebfa94376aa2292019c0e59982d052d7", + "regex": "." + }, + { + "hash": "485bff8d6760f5e7babef5f279fab52f014326796d051a0fdc45efe5e90b3de4", + "regex": "(?i)^https?\\:\\/\\/benhilo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c548c51093d17963722f1ca66c57492d028b47813a3c84c01896fcfc31cf1def", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a001(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "adf64c83ec5b31e6b4fe75deef774afe7859215ffdf457904278dd8f6ec78ddc", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b590ac3050a79552d8c904a73ecbfafa92e417ba07df244d7e356c181922c8e5", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6be92752c445a1e522835e9956c387494a303b6854347932229a619ec307d541", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "3db229af03d2dc2c5e8704ad8517d37e482e65ec0671220be3061573367707b9", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4143ad5f745ba9086037a98a60cd6bbc49c4f0d4ec84ab3f29f689a4449b9145", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhxz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "519298933acc01b688542d1e40f3302fff349448052f3d761597bb770e88e0c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9f80971eba6828d5076157b5ec29510003091be4a741eb16b6c2e99dbbd8d873", + "regex": "(?i)^https?\\:\\/\\/benhilo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3da1a9549561a7899a761675571b63597bc457713b86c7f0795475012fa0a130", + "regex": "." + }, + { + "hash": "792498aa1ac154569998d765aeeec5678585664d43e01cfa601c091f838c014e", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fe44838f654ad8c8d68f2cf5a4a2aba0461960c0e1137d59c7d9ce7be01cdccb", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "308c1c991812c97332c9f5dbef78cb1fd21cf0e86ee0482b4b34eeee755635c9", + "regex": "(?i)^https?\\:\\/\\/smothopera\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fbfdb04705e06e17d2ba1542f073adbb018961cee44a3cb50077678f9f307c7a", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bbbe206142e391767d31421379ae3997142597a4097a00ae2a09206c296bfca4", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e799da28dcd19d769f62dd88cb1c2eda8bcf05f84beb948d362557cd6ff345a1", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7a3ceb74012034e558c166134b18533dbcd4514238355b4ae2c9ec0fc00b4212", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7ef5e\\&id\\=fidesis\\.be$" + }, + { + "hash": "b8250061b7025ae178b86c1067622883afa6027e133414b59dc7ebf8b6c801ed", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6a7df45a441e5652436bb96c9eac571af51766f82bed9fbf016b08aa2ae03aba", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ec8115e8ad5055dbb6a3989d8e54aa11cc4add5f0baa9324e110e2cf6f57d0cc", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f2ec86ac3c223b474c9fbac4ccafadd842e8fb300393e9c16667d8013c0ddc62", + "regex": "(?i)^https?\\:\\/\\/www\\.ndmhxz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e64c047698d673da02a81d3d6c5daa2d329a52932edbd0c27372b198866e0525", + "regex": "(?i)^https?\\:\\/\\/fablover141\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "70c34444cee342b4587b429eb5a5bd69d8bf00e45224174f4b7dcfb4fa3e3ded", + "regex": "." + }, + { + "hash": "83a480548e93a6f45c9470bb17b856b2d74fa019a997014f5e4780128e1bb0e5", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e533779c91206187a83a73aba620bcf723b441eb029a0407d78f090465d8b293", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app\\-orangeteam" + }, + { + "hash": "890df8dbf9dc5e068d7609c39e7f8f8c0659ecd4cf5b87715280b9a05e2a3007", + "regex": "." + }, + { + "hash": "9ee32b26f933bcccb2cb805e0dda13f334a75071d823f17fadfb3c3bc4fcf375", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login[\\/\\\\]+cd\\.php" + }, + { + "hash": "7d619889bb618d9b841328d9913710366e4f98cb52cffd9da8e88479763c254f", + "regex": "(?i)^https?\\:\\/\\/smothopera\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "390bbd9753c1806fb3c1e81009b189ba373880b9a98e1168a65eb5a4880f8f45", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "54f6c0eb46c11fd5932084bcdd112744bd1774ca6cf70b51ac8b5bb12d90be3d", + "regex": "(?i)^https?\\:\\/\\/smothopera\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d6d8c23384c2461893c251f5ed90d59abdf9d9ffae6ae33d5cfed364bb9f70e1", + "regex": "(?i)^https?\\:\\/\\/xandersaz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fb0917c1846285f3a7df5673206b784d56bd775b11b8d919943e645a4670e18a", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f11cbee96918ac17ae1e32627a7d2ab1dd6bfa87d9032cd00432cfe2b0c25c92", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bde3d33cc97b7f772111262b7e6fc05e792558f940ce031d626736e26b9f6248", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "01a5bdb9a51367d916848e0048ce2e3b5e01b7d8525ff401c5aa047d34a683ee", + "regex": "(?i)^https?\\:\\/\\/benhilo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "69b90f55c75ef3ed13be53c9cc99afd2c99abd42b61ae75411d17b50e26954cf", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a385dcaffdeec8b06e9ecb3cf0ef192e9122d2a8956dc6b13e6f36e2eb9fabb7", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "914f9e1d6cd4e971b00806a849c3d5370e75a6d5ad1afd5509ed069eb7675a11", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "eb5541924f0ded02fb8ac704a40da9c7b57e9b3942d4cefdffe9d06690c8d470", + "regex": "." + }, + { + "hash": "86272edb157094881b323a56c5ad58d2337a3534218eb86cf80f7a8a14724f91", + "regex": "(?i)^https?\\:\\/\\/benhilo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245aed775\\-d2c62fc1\\-92d1\\-4cc9\\-a82d\\-f3eab07fae7a\\-000000[\\/\\\\]+Q7Wp3U_OixxwgEZos35IG0rf6z0\\=394(?:\\?|$)" + }, + { + "hash": "ffa27eb2164b32325e68825b37202679ffeabfdd3130071dfdd11bb2b139dfd2", + "regex": "." + }, + { + "hash": "7645d363fddb72ba0d63e320d3fc7b7ab9a1c2eeb9cf5bc646be9e18db7a0294", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "af3ac915d5198ccf23d2ce451b24f2f363ca423d9576fe49fb9227ef042bda1d", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2fb4a82ac55e8db07d3784dbadbf455d4c03d11f108e8224208e53681b7af08c", + "regex": "(?i)^https?\\:\\/\\/dalmobloeaz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "983f25c9088ba6aacc3d64c505891e4cbdd3323d13255511caac6d63dee24dfa", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "844f9f116ac757eba51b02d5144eeb65077ba64cba2daeabff02c8d0fb8126b2", + "regex": "(?i)^https?\\:\\/\\/farminefor\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6a83db8b52533ecb787244cfce8f4ff7b4567d2f598458d51075fd82c9c7e3e3", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a2e0f4c7c63510fa062809d9622f86d78bda923d2b36009d32a7f85836137e4b", + "regex": "(?i)^https?\\:\\/\\/danoverfarm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "12e1f7a78460c8397ee0b3a95df509ce8f8c0ed87b014d6ccd04580f5b500ec9", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyadder1\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d7f137f6eda450d0d1aeedb1fb050ef6f1fc42e0cb9ef9a14492d9843bdc8fff", + "regex": "." + }, + { + "hash": "34754c0af6050ecd873d6304f77fe8692e8a14acb84c2c37bf31a7c52219208e", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "054d8875c2bbf7af0af6e1e920de983317f88bd4344abb914e68651e8a1816c5", + "regex": "(?i)^https?\\:\\/\\/xafavana\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a1d6094fb0c02ec7f8bc09e5458387f88298dcc8fbdcfc7c504fa75680625cd6", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6a4d7b983b5c432a046ad5e4961ad010d329d079877d9576d294dda32319773d", + "regex": "(?i)^https?\\:\\/\\/dana\\-official\\-login\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cb68eaa0db9c5d47e39d0828f052bb0388a1f6335b84f10c7eaf8fc01bacdc2b", + "regex": "(?i)^https?\\:\\/\\/robux\\-jani\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8d9b2aa0c7d2d2138dd0facc4e529a2a18ecc0a7f053b07738251241be97226c", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4ddf950f5a990b009ed76a53eb4aca610a453e68a4f7a0884081b9ba55c07959", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+h5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c919257c3448b09443a136900c90cab0fbf4dcc3a40e80cd708d0b40bf565f3", + "regex": "(?i)^https?\\:\\/\\/robuxcardszza\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4055625b11fd37f6a6571faf6eb575170037354f194a1971f6e9f4eec5a3310c", + "regex": "(?i)^https?\\:\\/\\/robuxcardszza\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ebae669ae78541fc3dcbee3b490c3b9b735cfd208707e3d53f34e26c5c579f6a", + "regex": "(?i)^https?\\:\\/\\/robux\\-jani\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "827bfcff02e4e3420f02fbb879bd8ee4070f66a6505e02b2e5a5670274772b9c", + "regex": "(?i)^https?\\:\\/\\/giveawaly\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6a6bcbbcad2d3576ea6f16bdef8dc2340c582084388419cbeb82f009af89ab7e", + "regex": "(?i)^https?\\:\\/\\/robux\\-jani\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c375ee043b87e39edce670191955cbb974b8a1bba7b974bfafeb0f58cfd4f012", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftx\\-australia\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2628dd4c2ff5516981e097cc25541f6df527f7b28c2d8105b581324d45fcfc76", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "750a607408e9c66434e819b3dddac8058b2b863c64c0446a7d5452bab067c50c", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5669be39baaa2de18ba823323e643d6e4384a2115ba517fd0d59fcf4a8ef4080", + "regex": "(?i)^https?\\:\\/\\/robuxcardszza\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cc01e9b0d5111e4da47c8a7141f58b55e026d237928678945e1c3a6c4b51aedc", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7fe9635f4f11a949c6cd371d823e4da1817c4c23aa90be3b2a3292d0c0106b09", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "83c090afc0921527b6b602b2d95dfe5006c8d4e1fe6d0bceecfbcbee354dd7a9", + "regex": "." + }, + { + "hash": "fb5286e6daea3799d15d62bf4ef8b91a925892e4249a2e652e6d26f96d9f2071", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d2d1deca443eb57567d735cea4173c5ed8172eb633b1def007ece6c0d757d7e4", + "regex": "(?i)^https?\\:\\/\\/robux\\-jani\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c6c272ce12625d5615e3b216ec954917cb9a4df25a94cdd79a2a671bd3d7896a", + "regex": "(?i)^https?\\:\\/\\/www\\.redirect\\-coinbasverfction\\.50\\-6\\-195\\-88\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "39f6fe55253adab19eea4632d8174dce21e181bb3611467e318ee713c4fc1963", + "regex": "(?i)^https?\\:\\/\\/dana\\-official\\-login\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2015888e95657f8f85ecac1194a0e15e9c614c1d0da3053cfc240e7ee80fe593", + "regex": "(?i)^https?\\:\\/\\/giveawaly\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0517fa6327efcd3bba32e002cf454eeb46dfd725e3afa8b5ca38434208714449", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "974219b5bd5f6cbed9a7440e1c3f9b2c0e5162f7947718b38762be6f2e101876", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "886a302fc5f71c45f30919316c4680e63e6dd638ab40fb0114a0dd2daae738d2", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459e6aee\\-1367b3e5\\-1f94\\-4167\\-a1ff\\-076b44cb0956\\-000000[\\/\\\\]+_sXLZPgrNFl\\-4dkujkebWUD5kxI\\=394(?:\\?|$)" + }, + { + "hash": "7ff56f069f0b481f791b02086b9ea36a62d1048cb8678a812d080ae0456dcc70", + "regex": "(?i)^https?\\:\\/\\/vsdtjudstrh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1a9a9fe9a6452be12f92d4c9d216fce0e5fa7fbe02190faf366aedeb11b08090", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b471c4c02b48cf45d9ce47b276743c602950509dba55f918f9d57912bca65500", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9967[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62fcafed2924604115c817354b9e4080422794fb57fa13216d95dbe9a8ae9deb", + "regex": "(?i)^https?\\:\\/\\/giveawaly\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "10db451c6e715d8020a5083c9687854a49e21e30ae4c42fdfb3bb55de55132f2", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftx\\-australia\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+cancelaciondecobro\\.blob\\.core\\.windows\\.net[\\/\\\\]+muadd[\\/\\\\]+seguro\\.html\\?\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?\\?ex\\=zeotap$" + }, + { + "hash": "8c8d060e7941d8e4588458b06508d38b9f83ef94e73718b44ec1e01a3402107c", + "regex": "(?i)^https?\\:\\/\\/robuxcardszza\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a142a561f2d1032cbf4b83464dcd126ea7d696ef30e501df45bff4777b10dbaa", + "regex": "(?i)^https?\\:\\/\\/robux\\-45k\\-ros\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e81435b4c40e992502e08da188841ab7b291e157c01f5f6bb4d44f5c25539339", + "regex": "(?i)^https?\\:\\/\\/dana\\-official\\-login\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "86036b4516bf1a92744ff8e27d510ba95e6205700672e3f47ad3885e0a8fd09d", + "regex": "." + }, + { + "hash": "7d0a4a8acbfaddc5fb7e0e2fdc61e2b33c3481407c93602cba0e2eedea388270", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pedido(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d998a2cafbbbfe7c2e99041972bc377fbe13d7e7039fdc3ce0d33b79908cf680", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "63413b90438b17f6287ce2be72fbc7ad01900f15ce8a5f3ac9b455302990d1c8", + "regex": "(?i)^https?\\:\\/\\/giveawaly\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7d0a4a8acbfaddc5fb7e0e2fdc61e2b33c3481407c93602cba0e2eedea388270", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+solicitar(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a289fe84164bec7d398e5159f6fef0120e32c56fd826a4d36958b6afe7a996a", + "regex": "(?i)^https?\\:\\/\\/robuxcardszza\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5257886506dd569bc4547e7df52b63360957051063d8258234f2924cd2b3f1b0", + "regex": "(?i)^https?\\:\\/\\/robux\\-45k\\-ros\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459e6aee\\-1367b3e5\\-1f94\\-4167\\-a1ff\\-076b44cb0956\\-000000[\\/\\\\]+I9VnX2zAyrpmagPHm4R6BalXX9E\\=394(?:\\?|$)" + }, + { + "hash": "705348136c67d973cbaebbb79c8c00f0f1c0aef0bd853d153d0754bb2db23a3f", + "regex": "(?i)^https?\\:\\/\\/robux\\-jani\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b2c554a346f594f8d5a857b7a619b954662c415fb69deac97572ff8f80a66d91", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c04191836308f1db3dbd949a6d5ed821825f20ad5168bde85e32e0675f08444c", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e4f365acdf8657f71d55b4921ab5900599cf76eb807a17f546e9f1702948ae8d", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "95b848d2a29ad1be9a80d88a24a135afd299c82f4fe263603ef4c0ba3ba3affe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "f3b1d74c5c795cf15fd0054e67b76a5882fc5d2a67abbfd4fb51330e33902266", + "regex": "(?i)^https?\\:\\/\\/vsdtjudstrh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "22a1022c1dc5d5a4fb18c8f1e96cf6b1dcd5e27fb1bda9223760ac5ea0271e31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9053[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1eafbd0cb9745d5fc994ff324814872ebf55417fe9084c54d86225ded41c1274", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6dfdef45dc5165882ef09920c640402abd980a86c3e169f3bfd4463af8f03d59", + "regex": "." + }, + { + "hash": "ac70eb6ed67d77bf5c59cf54e031497d74e7108b56bda658ffc7e230c6658665", + "regex": "(?i)^https?\\:\\/\\/conbasevrfcation\\.50\\-6\\-195\\-88\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9699a7e64967893dc8146813c2421abb9c78431215378932efd2047d7b63fde5", + "regex": "(?i)^https?\\:\\/\\/robuxcardszza\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0255672b72a356ad80cd03930113197f582eac85dbde5a2874529b5c0f7a79a3", + "regex": "(?i)^https?\\:\\/\\/giveawaly\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0496e5790bee5f3fc0d4ab2939b9f7b1df505544837004c666773650e3dd0404", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ce1137a3dbaa801511f3fa35b7d85cc891d855b16524b33f1451e9830f658d16", + "regex": "(?i)^https?\\:\\/\\/vsdtjudstrh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5d1994c71bcacdc76f0a3d7d2e6bfeec5fdbac2a33e5d9bb3b5a144d0bef9712", + "regex": "." + }, + { + "hash": "f8952ade45262bcd0e4865862141cdc8aa724af941d6557b8588181373435505", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "551e8945ef2d8754acbd0d4a2a4a4aef8954522518378fb5101354eac8235fb3", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2b8bbaf8aa3cfe1962af61868f44f2da1a9766eb4fb7ae0f5de31abe414e84ac", + "regex": "(?i)^https?\\:\\/\\/giveawaly\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ab498f\\-83c26302\\-c39f\\-48a3\\-8186\\-7f39c80b9e4c\\-000000[\\/\\\\]+SAxt39iNL6aRgcWHQZDQ25GcPJ8\\=394(?:\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ab498f\\-83c26302\\-c39f\\-48a3\\-8186\\-7f39c80b9e4c\\-000000[\\/\\\\]+NmSA4YzZj4srmGp2jHSk2tOwB0Y\\=394(?:\\?|$)" + }, + { + "hash": "f53c59cd0310f6dd34bbb9d49f788732c1d192406ad58b8e34c995d55efdc52a", + "regex": "(?i)^https?\\:\\/\\/yellow801971\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "87971f495fa392647342e02c44eafc3a361b5701b70732b1010bba44f37f70b3", + "regex": "(?i)^https?\\:\\/\\/coinbseverifcation\\.50\\-6\\-195\\-88\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5ca7c6da69c6eeba9ccbbec68f2f29926493b9019a5b338d779e991d0efca124", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "eab185d93e2c35ab3ee8e19b69810a7c6ae616c8c355d61b59dc89de7009f634", + "regex": "(?i)^https?\\:\\/\\/dana\\-official\\-login\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b471c4c02b48cf45d9ce47b276743c602950509dba55f918f9d57912bca65500", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9967[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "d70c22f7d86e1b13eabcc737266f68373c34d5263892851b381714ede5bf28fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ec886524d6ffded16df4bf16c876bcf7dcb7139b26b09e4a5bceac8161c06773", + "regex": "." + }, + { + "hash": "ae267bbf52c7587992ab5802e17d125229b227cd9eda06c74d5b711a31ccf46f", + "regex": "(?i)^https?\\:\\/\\/robux\\-45k\\-ros\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3a271833598ff39b4af88aad01cc1bc1360ff34e9dc628ce96301b7d2e863960", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftx\\-australia\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5c10d6785de8eada29d8420ce5affc27e5891689eb658b93ab6a17995c4465a8", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0496346654c5a468359eb7b7b7e64afb3990918844160a2558883cbd765723ec", + "regex": "(?i)^https?\\:\\/\\/qgqecmabozojjkrg9qrl\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8c84482dd1af54f906177a778cb60f600e54001c6b652b93ea2a02af44998b96", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "de82df007fd474cba0f02edbae5d2bbfe38db66cefccd84f8335c6d7c97137f3", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0b9a9fd50b6088a39758a2eb2987c0e76ee446c7023871c98091eb9be93ad126", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "545acafb62fdfc0195f4c40997a24ca76a23a4ad319052e8ba0276e9496eace2", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0691bf1907495dc2092aabfa4e2e72859ca95f156d9abb532837a46578f069b7", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6039b8a31e06b76b28518a0c6dafc7a43dd5b33d05622ecd0f10175ec72880ae", + "regex": "." + }, + { + "hash": "02fe92ef8800b31389257728320d4672862e490a8f4e9ae6ecac35d0ab6a5b24", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftx\\-australia\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e43c25494e1804767641bb2e279aa5b3eef558c253b81424d7a42a505e294993", + "regex": "(?i)^https?\\:\\/\\/robux\\-45k\\-ros\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "82de9b283139f022e9c9277cd83a4214081c023b4b6e2cd2dc03fa3687e78652", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "96a20415614a2008575998efcf659207b6ff9b8d1c85dc99ce7d8f35d8bddd60", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3cec52cd6c898e4d36a450b2aa410dcc4e057fe1bad38ed58fe508799954cb9c", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "81fd12045ebd2b39db79a0df2a4c6f3946b50c96b289193c0dc5cad46f8d249d", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924568551f\\-82b91d24\\-18d2\\-41ef\\-9b1a\\-8f1c4c745497\\-000000[\\/\\\\]+3YimblCl4qJWYggw4YI9v48e4mo\\=394(?:\\?|$)" + }, + { + "hash": "d4cb50a3d428ab48b2301fc88065a27d094a48688ca3ba7ad96119a994dbdb1f", + "regex": "(?i)^https?\\:\\/\\/robux\\-45k\\-ros\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ca0b65512a8c47855e084117ae58260881f5d6534504760f235bf480d197615e", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e3d7de7059eea2c6ee171ff5fad64178116b535b83e62d462f16785af985bb57", + "regex": "." + }, + { + "hash": "2025eb61c68b60696f6fd84cb3fde4659e17ddc3d841e5fee03010681a439316", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftx\\-australia\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "febf2c79c08d99c8b4ad24ddb0fa957caaad219b8cced8a99b534e858359dcdf", + "regex": "(?i)^https?\\:\\/\\/robux\\-jani\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "86272db92202d886d9d96963c8f054aa7c39498bfeb22630c15498b276e6091d", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "db34b830984e791ecd40080663da414fb29f6363fa2b88678e724fc043644e59", + "regex": "(?i)^https?\\:\\/\\/tunzkaomadrbyzaiweca\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bb73e8c82324076b1eefaf59c8809cd4107a1c1e2bcf52e501b25f350e5434a6", + "regex": "(?i)^https?\\:\\/\\/robuxcardszza\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4143786f9157b23da5f53eddb78e7f67e91af45b3cc3d5f769c767ae8a4b7629", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixc\\.html(?:\\?|$)" + }, + { + "hash": "7434cd8792deaaeea2ac7743e242cee97160028da17c58466bea3fde9605766a", + "regex": "(?i)^https?\\:\\/\\/robux\\-45k\\-ros\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0265cf223f3e3536a0c30f4e77d557920e077bf28f32608a267a0ca8a05087a6", + "regex": "." + }, + { + "hash": "baea19ae299bb7262d4c2a128083f4027a3d5fc3287e0dda8208d64cfddb1dbb", + "regex": "(?i)^https?\\:\\/\\/vsdtjudstrh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ecebd5ddeb88958b8b0662f9b98ca4e98282fd266c791d3b6d577fb32a0c8ac3", + "regex": "(?i)^https?\\:\\/\\/dana\\-official\\-login\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1b0c14647717922bc4564e200415bd2d843c00621084eadd4e3db47284392453", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "22a1022c1dc5d5a4fb18c8f1e96cf6b1dcd5e27fb1bda9223760ac5ea0271e31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9053[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "dab2354c9e16fedce2ae9bffa2690361c85a10d31863d9af065a504301a4cda3", + "regex": "." + }, + { + "hash": "93711ae9a2ca6375841e9c7f602ef2a9771b1c3b2599e348cdafaea060456bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixc\\.html(?:\\?|$)" + }, + { + "hash": "15d7e2de509e1d9b434de22f17925cebdbbbef8ddfc23ba3b2427997de745147", + "regex": "." + }, + { + "hash": "4b4cc00b98c0c095b1e7dd01b53aa755c44edef950db2a836408b1ec550744b4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+409806421[\\/\\\\]+form(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924568551f\\-82b91d24\\-18d2\\-41ef\\-9b1a\\-8f1c4c745497\\-000000[\\/\\\\]+JpTmlIJXaNptIA_IMjsCDMdV2pQ\\=394(?:\\?|$)" + }, + { + "hash": "ce439d166424799025ac97200d1c548aa6b99116ab3bab6751a73e9a1b8ea902", + "regex": "(?i)^https?\\:\\/\\/robux\\-45k\\-ros\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2dfdfec9d0f5359a0786b26a7b2b79f587e12b380999fe011b8824ad25faa847", + "regex": "(?i)^https?\\:\\/\\/dana\\-official\\-login\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fcbcc18eb9f80d5c69a052ff0d550432a9c7b64693d1abb8e7bcbd6c581e0545", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+27\\-982\\-130924(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "01bcf8fa72253c5611c30dc4af71a1d0aba33006507b6eb2c9a7a8c3a150540d", + "regex": "(?i)^https?\\:\\/\\/robux\\-jani\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ffbd3fd8203f749024f4abe3f155ed6f0902cc8ff69af9b7ecae42233f2d0c99", + "regex": "." + }, + { + "hash": "09012dbd380412d473fe9ff80d8f734337f3211ac2a7eb1710f6d82c5e5fdcf5", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftx\\-australia\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "02d27b0c8b740ccdf5c188415f0af8a6cad2a329575879989ed2023054d6ea69", + "regex": "(?i)^https?\\:\\/\\/vsdtjudstrh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a6eb1bf97f428a0dec846d8fc249e39559d8775e3a272966cc6a58d10be74a81", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b3802a38c994b2356a5dee068c64e13b9c23824348bd8888b0f1e4b658998f9d", + "regex": "(?i)^https?\\:\\/\\/giveawaly\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f35028763b04cf5004c452635ca646c62824425ef6cacdd323b7ec7eb158f0e8", + "regex": "(?i)^https?\\:\\/\\/www\\.robux\\-45k\\-ros\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "48e843c581c10e812e1686e1781933ffd8b32b4c48633929b5b27875c6ec45b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "52ddec532148b234fd4b07266e2572b2e525e3c999ff1ec1987b073a7b77f38b", + "regex": "(?i)^https?\\:\\/\\/givealwyesd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cc1e00ea7edd8b7b89c06e9161fc6cbbd0d80550161ebcc2de38050c93f8ed3b", + "regex": "(?i)^https?\\:\\/\\/robux\\-jani\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a3188b\\-fbe1b2c6\\-401c\\-4cd1\\-864f\\-df15b0185845\\-000000[\\/\\\\]+5OYUnfd8X1uFVBZZK9jialB0W7o\\=394(?:\\?|$)" + }, + { + "hash": "dd85bdd14c5b0d4bf7ef219f086872d85f5601431ccd34b50050414940672c0c", + "regex": "(?i)^https?\\:\\/\\/farmbenhamfz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6fcf90f13ad8c1ab4d98eae6fbdeb3e5a30cf9c7e2db38f895a40fe0ce9658c3", + "regex": "." + }, + { + "hash": "9a5f86d0932923161d2fdfbe854e2742368586e5b63a2f53d2f5a81e5f454825", + "regex": "(?i)^https?\\:\\/\\/danyfded\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fhome1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "3a6b4a2bf028f49a084b46162b1a300cdda90bf0d7847955b2965eed1d7f2271", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bd30b93db22dfebacaf3b0f7b839d2523d73877e375d1636306b3e32013b5178", + "regex": "(?i)^https?\\:\\/\\/bl1ck7\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "acd272dd8e8d2367edff45e71100ab555166ed2931eb7046516916b59b311954", + "regex": "(?i)^https?\\:\\/\\/bl1ck7\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "705f80662d35146ab41ec5a246bbf0e0879e9411ba62976084466a037a6bf2a7", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6856c5a08a4cf22f3a89c4d53e7d7a608425b6ae0fdc266850847e6fe5f0fd8f", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "737b9e5a9097c0d8d7fe7b70a003af39eb2cbf4da6d5e8a1e64d4a2fd77cfbf9", + "regex": "(?i)^https?\\:\\/\\/bl1ck7\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d3e71b099aec9539084f425cdaf24cc0c87d5171870812c41c2c4ae5e1c449cd", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "976099e82bc252b632e9cabd818b3c857d5a9ef78bd8da1b3c00e09cd7873cec", + "regex": "(?i)^https?\\:\\/\\/farmbenhamfz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "44c60f22d05103c30b1d29a13a40d4bef98e2bf2462219c89b09d565106a20d4", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "4c02d5976a499f9785f66bcbe090442dd15175b24556c261878cb299e2bbe2f8", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0f5d3f8ec088a205998166145d444da0c7c6d157f5f066f727ba196d59c209bf", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6417f932f3558bd29188ef8af0a0380aada3939167ad5e4c6f834f3f9934d16f", + "regex": "." + }, + { + "hash": "1620dca51ee2e4250fa695c3551a4aeb044af7d2f82bfb23e7bc049c134f7f96", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4e2c3ae07396fc304457ba61558128f35b2e6aa2f73de27a5cd619564817c529", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a7d08714bd75d72eb53bfa66b9f58ff1f4f0db45473bd15bcd5a3e3bcfd629aa", + "regex": "(?i)^https?\\:\\/\\/bl1ck7\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c33eef14632e41e66766d45cc515d83ca2bc548a973360a53127c5be2b1a7f3a", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "218520a5427b2a8e8fd0638e9c56039689cc495d54cf1dec1175508efa187a14", + "regex": "(?i)^https?\\:\\/\\/adobeonline\\.jp\\-osa\\-1\\.linodeobjects\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2eb56858fd92633aa851f8b2a4a7c8d87e7949dd86f2d049b0455b6c9b3b1ac5", + "regex": "." + }, + { + "hash": "18ec2a21e414a794a1f8e2ddd3300ceaf372b898e1001e8cb311088e4af3fb74", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "59659dceb68ca93e75ef1417bab25993e657ae3513935bcbdb701464ece34fa3", + "regex": "." + }, + { + "hash": "5fb5d1a9d8ce64cd3359b952bbb5b3dd7769d7e388f2b581027ad8564d2d910f", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9d1e0c44bc4a00208507d8adea7bdd694b11f594acddef7bcf69674e68eadbae", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c107e9ce26eb3cb2aa787fe1e192580837b484153d57e2dc71a7ceed3f564be8", + "regex": "(?i)^https?\\:\\/\\/bl1ck7\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d784b5d660fb19ca33887281d5626b60a6647fbfbc833e30b0f570479fb492ed", + "regex": "." + }, + { + "hash": "835ca5d334aef0e9c938c6089bddd5e4e93d9d974b5d391b99b3c099e0fb3aa3", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ca9b7f6ac482038ddb28cf203656aa357e20ab66c4bfafe28ce547eadd0bf3a2", + "regex": "." + }, + { + "hash": "c4784c004d108bece8fd0951473a56ec2f025c952446e8b8043d25ddaf56bda0", + "regex": "(?i)^https?\\:\\/\\/danyfded\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f3ef700248c127c73f02b17b4ba828da308c733a505b74a229972543df87ed65", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "904df0a6cc17aedfbc6fc08ba20c52c33cc23076980e323970d9b5adcd4ef52f", + "regex": "(?i)^https?\\:\\/\\/danyfded\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "86f2290f8ac2a670aafa4f5925b6ecb054f635d5792af2e3c16b107c12ce392e", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ff86a4198f1735480fc627e3eadc412aa98e23a07ef1bb66fc6b79b754576948", + "regex": "(?i)^https?\\:\\/\\/farmbenhamfz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4e20d5ab3b18ce1a670c4ab7bc9e7218bfd89d733c59b8795a17be45802f691d", + "regex": "(?i)^https?\\:\\/\\/farmodleaz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fhome1\\%252Fseguro\\.html\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "5f006be507beb80731d91a5719194a324f1d3dfd669a560adc33a4b258488164", + "regex": "(?i)^https?\\:\\/\\/danyfded\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3d677751ddfe446ed70e1b5a7f8372656d1aee0d08a1dc1e3892d1148c579768", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "24103f55e9488e8204a54011536de49a3125abb5c72bf09d354397ebc6cdbe69", + "regex": "(?i)^https?\\:\\/\\/danyfded\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "aa6198fd061bee3e37cc06b2305a72f077a418e5ed6f9f44be401a2af844a3f9", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "265c3209d2991e3d059564deb8b2ed1c26b3f2b04fc36e65e9c6699c529af49e", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "efce9903e123f0eea576fbd299610f3a699950557c4f09701230c28f02405f6e", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "144ab7d5cd42d3427dcdd118f73b1cd50d5fe78733016fbea136c1a80008a7d7", + "regex": "." + }, + { + "hash": "93716a13d2eb2e2273ed512dba9e77ff051e9054ef68ae256be132c671c7014f", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fhome1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "bb1e7a33edc81a7409c7487f0a9860a32904b582fbe6ad098f727f89ddab0492", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e66c2e674aad6cb464f8427877d2f869c70173956036e26e0411162de091146d", + "regex": "(?i)^https?\\:\\/\\/danyfded\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7f42500944e54b1c8a6288c5727e4979da1a57d1e32554124cd62d3869793258", + "regex": "(?i)^https?\\:\\/\\/farmodleaz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "9095b0c5edeaf69a01ede80216407b852a08393f1999d16355cbc1b2dd3482dd", + "regex": "." + }, + { + "hash": "08b7918a420a0599a49fecd417ce2871788795c2c24c42e6b646c5f402f5f960", + "regex": "(?i)^https?\\:\\/\\/bl1ck7\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "259fe1585c48791acdd6417e4bbf1e33414d453e8b927ece8e9c5b5e6f040d1d", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6944516e52926a989a48ec382b5fe7dbb24c4ec0b860e12a519b5b2c6a64c4f5", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a3188b\\-fbe1b2c6\\-401c\\-4cd1\\-864f\\-df15b0185845\\-000000[\\/\\\\]+csDdDev_8\\-5gelmlGvZybj3zcA4\\=394(?:\\?|$)" + }, + { + "hash": "191aa8c0359e8f2b801d73a87a3f4053afd30e99216cd59a672cd6311aaef21b", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4ddf950f5a990b009ed76a53eb4aca610a453e68a4f7a0884081b9ba55c07959", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c001(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a6799bfd6691d848a65b013ab9d28e3aaeef3d80ad2f72a71142d19799d32fb", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6b1fab84aa5c3efb6c6d45e66e2b444b084c6b5e6560cc808db15d71731fe863", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "be261b1b991a81f52f1d9aa501a52130f46cc1c26acabc6ef27bb761fb7c90c9", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "74ed2388889bb58d2a51bb89de317c379cebc54ec78b6bc80fe50cfd46816624", + "regex": "(?i)^https?\\:\\/\\/danyfded\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fhome1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "9c7e6d16115efa5bffea692550ea60f3a4fc7584482eebd9f5632073780efb9f", + "regex": "(?i)^https?\\:\\/\\/danyfded\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "19828aa85a3127a595af833960453cd8afaf849fd52f51d5e9d51eefcf4e5429", + "regex": "(?i)^https?\\:\\/\\/danyfded\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a2e5b4f914dbe3cf1b78aadd2b4aaf9b0f4cd4503846cb99a6191735ca07a9c9", + "regex": "." + }, + { + "hash": "2902ff3bbc9688b2a25c41231ccddf94ab626f313b57ba43c080ace1260878f5", + "regex": "(?i)^https?\\:\\/\\/bl1ck7\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "01af0dc3425061ec67e095a4e663d97c65334378476a440bf2bb1bc97ae0d4fa", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-107753\\-107468\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7153a2eb74a1013b264037855763b28905b2be9a2b6ccb041c51e54283b858a1", + "regex": "(?i)^https?\\:\\/\\/bl1ck7\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fdec40b79f8014fc32b047a88a1960f99a97d3ab661fab79a98bf181bef9a42f", + "regex": "." + }, + { + "hash": "2827e0031f7ca8980028e399b5647875a842dd352a3a5c968eac918d74897b3b", + "regex": "(?i)^https?\\:\\/\\/farmodleaz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1bbdc393ff9269844053f36727843cbbf875559064a021391ac5e7d56fc57bae", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f8c31855b719af037e0163a4c4d9e1a7aa65fe2f8309b579834f14ca46949e2b", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6af38a75b17be2090b5320e8ca9729a7d7baf647dcc3a2cb316cdda9cd5b2ab4", + "regex": "." + }, + { + "hash": "392028aa0f1db43e2806f300bc423ec4732821a4665ae520c820e2fefbd91273", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fa65d474564d5beb69402ec324e545dfaea855bc96abc18168feb9982b6c3c42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c001(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "71edf4f2a4c5af133ab247f00bae7d3fc5c6458ff4ceb542c2d655dd3dec6423", + "regex": "(?i)^https?\\:\\/\\/farmodleaz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4a25a1fc827a8111feeaa6ecd753bb6bda3f2ffb9cc6f6f1df7c8500f93071c1", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3315575ae5f2717942895f6696f4ba26ca150e4c89cdda4513002fe3dfff86cc", + "regex": "(?i)^https?\\:\\/\\/farmodleaz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "230fc8800732e37dd219347f0b04870ba82471b5453748b3c6a07377eb93fb48", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9a2feee9060e84436ef1f38ea5c2dcd32f6d00bf6fe7fc093b94b575ec38ec8a", + "regex": "." + }, + { + "hash": "8e3500ddd24874a31607224dffca83b51343ed147117fad65ecfa285bf31d81a", + "regex": "(?i)^https?\\:\\/\\/farmodleaz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "70c4857050e17627515aa58f422526458d57a92762a540bb689262ce9a019cf3", + "regex": "(?i)^https?\\:\\/\\/farmodleaz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "31a6dec00500826ac0f4c558d643eaa9faaa81b064b5e7f7404e593b8bd22f4a", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5a352b302cd61c4eaa2e1750fec779961c86bd08417319934b0eafa5ee85f223", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "db1b8d8c2dbbedcaff7a4bf903fb9481985940ddb7ea419f7fd21a81dee93649", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e360cbb0dc9dcdc0ebdda8bc516334287183cbaf38d33797453c3d1371f0d993", + "regex": "(?i)^https?\\:\\/\\/xanxanderxa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cedf062555bff948bf6a64bbb798fd15231f155911fefeacd4744e9e119c07f8", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0079da10dc4b1ab83641f52b5ea64a943e3ec8d4b3178658b758c30887c92dd4", + "regex": "(?i)^https?\\:\\/\\/bl1ck7\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eb4e01d39b724ebd614e844ed016e237d637ba9b7dfa0f48a478f5b8a1147ea2", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "574cb204a0921ac78c6848c7db4243933e92175e57c70ff07c6f0f8242afa718", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5da77c67db8fb98a14dee90b6111a6ca52cc49a8686a0c053e090dc69e08223c", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fhome1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "3da05fa1439eb67a6e72b4ae4a8540209a324e7211071bf8ad0c1c8e0e6ffc89", + "regex": "(?i)^https?\\:\\/\\/falvildrid\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1bc95a0af3bd427aadecc3a4ce20f2da2bdfb26655ae1a5eb9a19ff5c9dfbc06", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "63ad17912440941cd0940f81a3c6058e74278555c6767caec4050aabfc76275a", + "regex": "(?i)^https?\\:\\/\\/freegemsofclashroyale\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ec83baded2c2a09b53b1f2b4ded19ee6b072d5b9bcab5de4efd50f699bf39eaf", + "regex": "(?i)^https?\\:\\/\\/mono2365963\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2ebe20e0cdf05924c5c4a192968326045070812bdfdc13f68373026a51f5a604", + "regex": "(?i)^https?\\:\\/\\/unique\\-banana\\-m81rt7\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a343dc9c99d568ed593352c8a0730419ed7871f259a5e4a018e6aa811be16966", + "regex": "(?i)^https?\\:\\/\\/esypkr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e4824c57d66dcab4faa9f5b8ce40edb39eda4bf7c6e3482785a5ff9728497670", + "regex": "(?i)^https?\\:\\/\\/voltstrider\\-currenttracker\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3DAvLW_K\\-2BiaJ\\-2FWeulbtkUG81Zlyoh26IhXHBJpAEE1G\\-2B3uN0zSjT5MgJM3bEG\\-2FhLVpsYGDuz0nd1H\\-2F5ErPOiayaCvDhrad\\-2F7wUTUpXV1VABaP5jnDa40mQdcMdopvHgWNrtiu8\\-2BHP\\-2FYKW3eixOlTfe8DsbF3dDmQfpv5CUDJcXaS2Zwg0\\-2BRdvkCW5HCJddSm\\-2FC4ePFzO1PhPc\\-2FWlCDrgb1tqryR8h1LQuAm43Gw33mvXfwbKbTFFlpKTC7vSKSTBL9pjiX1vetyVHkMK2\\-2FNhy2XzZKpoLyaQSfqVB9P6SfNVjow1YJJcVTw2BuzUys5oFnJ7iCVjhweh7IQHdg\\-2FYVvlPwwSAzAQYRCni8DcQaWr6IOQHv5R8sMVbNfwQmeQnaIvFA1ZK1qD7hvqkCFqnuXHVN9BkZnejmBo3sKcmDOv6k8JCPPbObp1gV16524DZqmaldIX3vq40e\\-2BsbDkcsCyP0lUFcxZE0ryLogzXxnqS7U6NlcFvIJCIGg7Tl5EREhumZKFVDOzVQjpfLCXYWg4f0po\\-2Fsg\\-3D\\-3D" + }, + { + "hash": "f47f8f32205cf86aa703b8b7ea3b1442a45815711ab1f35843e9fcc3d84e8ad5", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "03de352f84374c8202129c3f8e453f5e0f895da8246a1223df26404a06e66f73", + "regex": "." + }, + { + "hash": "ac510dc479ee85c3daf44736a8748d184b34f8dacb31f9ad1546c8880e662c31", + "regex": "." + }, + { + "hash": "5257196fdee30c25d17288ad5c42595f0084750f81febf6f59f984caa60813b4", + "regex": "(?i)^https?\\:\\/\\/voltstrider\\-currenttracker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d075cb202ad4d5f8bedbb80a0e76587483bddd15b0fdf87ff4622a1da3438f82", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "24524b0a804bde1b13e065b10bf8e3e154ec9bc834804eaec62fcb2b59dae483", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "05ddc68bfb09805a788a1f5da7b2227172b030cd806f7d4e44fdbf77651d4870", + "regex": "(?i)^https?\\:\\/\\/www\\.coinbase\\-sgnin\\.50\\-6\\-195\\-88\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8dc68a773a054bb5cc227bc0276d171e29737c2945b06949a50fe8a8d98eb622", + "regex": "." + }, + { + "hash": "a7d7524ecfbf4ef0f6afc141db23dd40675d13fad8501c2085d8be584676c2ba", + "regex": "(?i)^https?\\:\\/\\/coinbasellogiin\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "66170661a9f5b013d39e3ce6128cd7a0caa337fbd0e868e683d85ade668e6b05", + "regex": "(?i)^https?\\:\\/\\/globalannualfoodcookingcontestant\\-rs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4b8e88232df3b23c0a18493a65e240d0b73d17f2c422f89462bbe9979f3cc8de", + "regex": "(?i)^https?\\:\\/\\/pub\\-05f1acb67280424d91ff14406aa7a0fc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "723ff91d2988fe2659f72063c3de7c6d5f74663d35fcbd496df7bcfbd97ad6e7", + "regex": "(?i)^https?\\:\\/\\/formajaben\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4478af1256f27a5c64f3d7f9265f3940e083cea3ac2014a313f64076a21324d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "2f7c555bfd97dafdc907bb3de3b08bcfa7e523319abef024a9e75e7d06b02900", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245bb9d65\\-88c7dd6b\\-9e5d\\-412c\\-a9e6\\-fdccf8860747\\-000000[\\/\\\\]+8cUb0I1tcx4gcmZVwhGrJt06nd4\\=394(?:\\?|$)" + }, + { + "hash": "95580ccec5fe4fd332d874eab4622baa6f7103d83ff6bb4945058087f757a4c4", + "regex": "." + }, + { + "hash": "8318a636ae2b4b52108eb2493c7b0c65626b9c96e893ff98d0f2d728b31d44ef", + "regex": "." + }, + { + "hash": "0f3ce05a288474c5daaf21147016e01757a1b79bf27fd8f2c0c050545276706d", + "regex": "(?i)^https?\\:\\/\\/www\\.auth\\-sgnincoinbase\\.50\\-6\\-195\\-88\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b8915d9c66b6c47bc13677c51cdbd8feb822d11192878780907bee71c4901a78", + "regex": "(?i)^https?\\:\\/\\/www\\.info\\.194\\-59\\-31\\-18\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "31985acd74fba8a434be7227293edeba1e417734f4907b10efe8ecbbc84d9abc", + "regex": "(?i)^https?\\:\\/\\/esypkr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "35791611034924f2fc2a4e8340eb7504cb6e53cff9468aa28c3dccf524273690", + "regex": "(?i)^https?\\:\\/\\/coinbasellogiin\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ecf20f411bfb1a1aa0ac8225710ec71bc59730c3e5869931d7e1ef7afa45a95e", + "regex": "(?i)^https?\\:\\/\\/formajaben\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d16ccd3263edc14b2e25632cee63a92d79bcb170cc26fcbe077bbfceb0507be5", + "regex": "." + }, + { + "hash": "a3e3317e9db542aaf6975fe92f3707a5d245640f6a1139b58412de9c8794c172", + "regex": "(?i)^https?\\:\\/\\/formajaben\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f5d8451913d8acd44ca3901c278f30d0551896b70cba1b9fa9c730295e8998f7", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e43c2d46097f350efa9da9436fbed6a685e74135e1c3506257096140b43b0899", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "df754e04e37ac43293212bebbab109241d0843e0cc42d832d40c12045f17e124", + "regex": "(?i)^https?\\:\\/\\/globalannualfoodcookingcontestant\\-rs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7ebc9f44e42d86b8959277d92919ce9e880b3d0502ed8af7078372ec51cedb57", + "regex": "." + }, + { + "hash": "7f7c5b6759f37ffb7381ab9ab5434557e553deb8e7025b3ae718e5061ff86e5d", + "regex": "(?i)^https?\\:\\/\\/coinbasellogiin\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "15b66b3e1ae761681eaba33ed1ccb4b518aa3b5161dda60f3b35ae082c6d522d", + "regex": "(?i)^https?\\:\\/\\/voltstrider\\-currenttracker\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ebba447cc7c2dd34bd618bc399d4ca513760aca0ee92cd1a35f46db0755aeb12", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "aea5a3c38570b3ef43b45b1693b193f840a019b0d7b5a358e6b05cbe84279fa9", + "regex": "(?i)^https?\\:\\/\\/thailandlive11\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "df269e7cc44b850419056ccc41b30dd559cb5b17f06170a4967b0196fbbddb45", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3cd86e613bb9e8c4d21ace682e3ce89e892c107b22b9c8661761ee46199a374b", + "regex": "(?i)^https?\\:\\/\\/thailandlive11\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "71b2b5f7b767f91010864cb158dffcd9f5fd4d1e9791693db1b330983c54e079", + "regex": "(?i)^https?\\:\\/\\/coinbasellogiin\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "15168a693eb7fdda4f7d7eb285a313d76225fa59977efc8ad361f281c63a380d", + "regex": "(?i)^https?\\:\\/\\/thailandlive11\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f7cc0084e5fd2f96b89b80bc2979567cd1cb2f2fab892b72a93ec008747aeb6c", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6313089f687fb1711492d0656ebbe55401b7059efd3cc69085eb2ae13d38daf3", + "regex": "(?i)^https?\\:\\/\\/globalannualfoodcookingcontestant\\-rs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "13bfe2d63f7429fe2270901a9529849bed5d607f1a05365041d19d863c813d8c", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "054185e26893bd9dbbc6f889ba42d91f209d9e6fcd1cbeb6e5ccadc367997341", + "regex": "(?i)^https?\\:\\/\\/thailandlive11\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "245221c73714a0ca3d66defbf8e04c280ce0296cb66fa311388fde1c346607f3", + "regex": "." + }, + { + "hash": "1669eb361703bdcd94c6171a1b1239c4b875b0c31a402afaed25a905241cb997", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-106588\\-105104\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4ab32d05dd3149edd7ea07c2a82dca24adf92ebf2f25c151886ea143769cb41", + "regex": "(?i)^https?\\:\\/\\/coinbasellogiin\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3bd1ce6b4f28d681a99218141545b414a8530ec2bd12441e3e57f2a022aa4bbc", + "regex": "(?i)^https?\\:\\/\\/golwsed6542fdyhdt\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "97459cba6782bfedbbefd85130a132cdc17fce8a41ae4c48cb2a771b4d2f98f7", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b294e66cea95fdd35951e455529b8bb8fb381200d95096395384866623e0b8f6", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "21c5d6cc75b892643fbc2fa434bb6913d8647134a3e78883521549e31568793f", + "regex": "(?i)^https?\\:\\/\\/esypkr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b96ca0710e5970f623be8668e4af473c45b140556bd555fa4f84923f8392d8ce", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "72ea47bc0cfb92fbcc9870238efc76272fbcfc83e5c02d3a65f10442ee399b89", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cedbeb78bfe28562565a21fc5573f6f8f7c13fdd01cfa804c2de4bf8be7f7990", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "618f78cc04c0205ad5bf5e9fbfc3b87f7263213f1b4438c90969b9cea841dee3", + "regex": "." + }, + { + "hash": "847930728b38b446b843ee12d2b07ec250d7c78f13d1d56787b1924efe768f30", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456f2474\\-0a92a737\\-e3d1\\-4929\\-a1cd\\-da5e80b865db\\-000000[\\/\\\\]+0VCkaTEGI3meQmwgRM9rZZbWswI\\=394(?:\\?|$)" + }, + { + "hash": "08332067232f887b6132794c9fd9e67011b917d29eb0921a53dc05b7ee577bb9", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6ef86ce9cd8ded2eb40148d774474f9734feda3619f6f8609bed9284dd4214e0", + "regex": "." + }, + { + "hash": "0369b8857a92d7cd11244b8878b0ece4cf51c758d031c25ff9e73b611e3906fe", + "regex": "(?i)^https?\\:\\/\\/esypkr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4c7f0293ede3cba1a0b7e54768e2b775ab8ffc2478c3c0eb03bed3a94660b0a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xetoy(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "85b06c9d82cfba5082bab5d44c4b584d6cb2535b4bde67002e01282e6aceb990", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+correios" + }, + { + "hash": "d8b44bd5417128197c69ffe89fcc1817025f3c869d26a8439c7c1ae8e4e7351a", + "regex": "." + }, + { + "hash": "a738de9e56630668252f176849e5933ba15d581ce69b90f334bde6dbed32b4e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b327c42b3af129ee25d303b0dbd52071e658fcf9de8e4b5e336feabe368ddf7", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "646124b5d83bf702a1b1516a3d0cb637954c8d242320984556c861ce6e7b52db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+assets(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f7594c3ec651a3c57d8560816043a77e24f026af45286ce226bdc5ec5c505e07", + "regex": "." + }, + { + "hash": "e7b45f1a8f705254e03fac5e4a80d2d6aafab5ca6bbaa792d7f8d8e35572cc03", + "regex": "(?i)^https?\\:\\/\\/coinbasellogiin\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "78c5b5f03116ed47bd3f39fc154ff773c9b3fb266e7bd4c3444c6fe9f7dc2894", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d928ca028913ae91ef7e205a8af9ea0576c81e801ce3d51ef96856ce1724c06b", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459b33ac\\-8b78e180\\-32ce\\-438e\\-a761\\-2ecbf737166b\\-000000[\\/\\\\]+uPEkljommsTD63o6enXs6zU1ZmA\\=394(?:\\?|$)" + }, + { + "hash": "1504eb682704886183687b9693240d6402790032eba8fc3b08e994b5b9232d4b", + "regex": "." + }, + { + "hash": "cb37129ce71f12946608af71e720c087443b57345a838ba21cc0152823d1f96d", + "regex": "." + }, + { + "hash": "60f4280b89bd680314ee46761f5ef8c0868a913b46493258a047b4127d22af7b", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "46e87e034ef99bfc88a062d0bfcbffe16accc11d59551a8fb4f9575d9e92204e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+de[\\/\\\\]+receive[\\/\\\\]+946155" + }, + { + "hash": "78549df5d5a34d25d1a54b86d41772792cf732738240a2abae4eb12dbcd87c03", + "regex": "(?i)^https?\\:\\/\\/esypkr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d39d44ac981877acc548084f9ab964e7b90e48f4a9db32c7463c3943890d0", + "regex": "(?i)^https?\\:\\/\\/thailandlive11\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "dd5f8df431173a22504dfdf7ba9e99f4fb433d7656aa15ecbf92a89c6f94b0ba", + "regex": "." + }, + { + "hash": "782ff88b8cd61ba12d78f1d2b17b55cba44120fe839eab9d5a3c7a1399481eba", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0aaa1a7ff716ee2b56608c582afd7e8d95b976b47db70137f62fa42c967acdb9", + "regex": "." + }, + { + "hash": "7c39e00a69342a4afff2988478790dbb4132090bee603a80c84fd25579163799", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7364fbcf286c67ff4361b7be47f1803c6649a58c8d3a4e9c65464c85c92e867b", + "regex": "(?i)^https?\\:\\/\\/formajaben\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "708743ec5191a958f31e64c1a9ac25928622be5296f94487a6ebb32b4aaed4a7", + "regex": "." + }, + { + "hash": "8aff00f25cec13550c4e3c043ff7e1596db31cc266d4558659740ea22c54d72c", + "regex": "(?i)^https?\\:\\/\\/voltstrider\\-currenttracker\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1a9f8b1545abc237e067b5b59edfb6f8c4c217990d7aba617522aa7906ae05c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chlogin" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192459e62a0\\-fefd8bb9\\-c25c\\-4e91\\-9b32\\-64ffcd2aca51\\-000000[\\/\\\\]+2Gkluw1V76lREhhLWZntEeQGS5c\\=394(?:\\?|$)" + }, + { + "hash": "4023e6563d52c1e9ac7f62a4ae6ee4ce55c6d8a5745b09ba74ed08b144d3563b", + "regex": "." + }, + { + "hash": "1f48ec09782720c06b693c79ee83358abc4fb4ad656dfe120c762f9538345ab0", + "regex": "." + }, + { + "hash": "ef754fd8e5e5b4411f68d5963f1fee2768c703e847e2759e08bed40fb1eb0dd5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+com(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7049c532897dd9d1ecea71ef30ef873efea62ca0aacdb05fe6c85ccea8513e6d", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "146ec59391f0d92d18dd2aa54e9ab263cffea98c8a81faa1b42017ef70f5a38f", + "regex": "." + }, + { + "hash": "2ce249b59e89d149f160597359535dd39b396501ee32e9ac3840d906fc2df12c", + "regex": "." + }, + { + "hash": "3d111f49b945f45028cf14e44096bea11ac119755006100d4605905c48f657c3", + "regex": "(?i)^https?\\:\\/\\/globalannualfoodcookingcontestant\\-rs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ffc412d4ea9b49fbab4c85576200fb4ccc751104da391f7f950d19d474264fa2", + "regex": "." + }, + { + "hash": "5ac6e6141d03441c9cb0bcc4fec578b0bac835df29e4af8872443ab9b3186dc4", + "regex": "(?i)^https?\\:\\/\\/thailandlive11\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ba2107a9e56ecd1bf80ec384ff1552a88870b73eca17c0c0ce2a05cdcf7755c8", + "regex": "(?i)^https?\\:\\/\\/thailandlive11\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e3cf7d50dfc0737b8a70b337c5fcf31f3e42687dfb2dafce93a9f704afaa5670", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4621e98f2ba8ba1c65fced864f0601cf031763296b7b2b3e091436d28912a138", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "334bcd83944ff131f2f63a0f2edf052345c3f98ad47c2dbdac4be1709f2a0751", + "regex": "(?i)^https?\\:\\/\\/esypkr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ae474196399e0e34b1ed199bd534845e6521d98c700e9f58a5ea615ae8de9aa7", + "regex": "." + }, + { + "hash": "4a5cba8c53c01bca5271fbbeb054d1fc7f7a643ef781d20e2b36ff221787dd3e", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "99471f66743d93fcff38cf1591cb48e94f27b469e4ef9c75e752240f12a3fdbf", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "020f400707cdf619fc6e27c19cc4417915c7b8628182e338b6803f60b46e588e", + "regex": "(?i)^https?\\:\\/\\/mail\\.coinbase\\-sgnin\\.50\\-6\\-195\\-88\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "268586fe7685c8b3b5a4907c7dbaaf3a0baeacdcb7292feb28438b3a63276cc4", + "regex": "(?i)^https?\\:\\/\\/pub\\-00a4ac3055194b4a97072b1eae328285\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cf7399640e8857ee0ac0b94856ad5f589d99910af3538c6b18d02c8e70a7ef7c", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ccdc34f9ba9babbe74945d663522042caa1dffedd1ffd48d82e50c82c094ccc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+giris\\-340(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1cf8be51f271b53b7a40abda673757d14e4e8b5b384ba17c6e5c2a1d0b40274a", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0d561a680e4e05d85e3501131318dee39b8e3b4f77d888cc09a8e665a99e2c55", + "regex": "." + }, + { + "hash": "c884e9046d1e3e8712f1666dc2e4c2dc0ee31f5bfc2a2b998ed6e7193d83f6ab", + "regex": "(?i)^https?\\:\\/\\/globalannualfoodcookingcontestant\\-rs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ce6d135ae95aa187f5e6e9a7ead5ff1d301a8317cdd264e57532b4764b248333", + "regex": "(?i)^https?\\:\\/\\/www\\.coinbasverfction\\.50\\-6\\-195\\-88\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "591da4d823547b68352ccf0f3220b2572463642f411d755d1568edc1847ff95d", + "regex": "(?i)^https?\\:\\/\\/voltstrider\\-currenttracker\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "94a172c175408d5192b315292f184750d95a4a31aff28bd2da63a1d9b6d3481b", + "regex": "." + }, + { + "hash": "8d9716e5e4a21faf1206c15123f19c2a904633f4d022d49edfb4f6f1a2b19626", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b8169ff368c846e21dc57708107948db499fd95eca777c632a1dcddabe720fbb", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456f2474\\-0a92a737\\-e3d1\\-4929\\-a1cd\\-da5e80b865db\\-000000[\\/\\\\]+kqK4UjbZa6uqQh4cHDx54Wqwlts\\=394(?:\\?|$)" + }, + { + "hash": "95d1461359300cf74704b0fa250fdaa0e13d0e9dd5f078e25cc671577078df46", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f26741162390be2e1a47457b4e76c3bb0f0d532e9aa733dc13de146a00a78c82", + "regex": "(?i)^https?\\:\\/\\/formajaben\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "608f756fbf99d8af02e741cf1d4a5ce9417a918d5996ec8267b1f764ada93a72", + "regex": "." + }, + { + "hash": "83d1b708bd965734682e5a83d0f650ab09be8786d3b9dec8463296bf8d3c14e1", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8995835acaba8750766f9ca9b2d12aa1f71b9f7edc617679b83adf9617414b64", + "regex": "(?i)^https?\\:\\/\\/esypkr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7be6568177f6b156a1457d32872096608487e78b88f95fd071baea42677a1f60", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924586e9d7\\-77191cb1\\-36c3\\-45d1\\-94cb\\-6b5f9fb90c2d\\-000000[\\/\\\\]+91BEDfWNNquehFH5DSRuKUgx3rY\\=394(?:\\?|$)" + }, + { + "hash": "c99aad0d8e12ee799f4d49bec5c30941fd5af735e0b55b9e595aae14b6e8dd82", + "regex": "." + }, + { + "hash": "a2265f63498fd26fbbddf3ec70ffe9a164b99c62b6af9c473dba2ba55d3c63c3", + "regex": "(?i)^https?\\:\\/\\/esypkr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1471a975828dc0379d4b1f6098ffa5113810093f6d84008b9d54face0f906200", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+de(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "66df9bda380bc11577d0969c7bd4350513672586fbfac5927fec4b4c6245b0b1", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "93e10c905d6c79285e9b708543a1c87899af6a7a619109f63fa9ca035c9a442f", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3ece81fb59374f18828fc2a5c3a5052970e69932bfebf14c037f443c00b482d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+es(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "93c61ff6596281c8c9453d948328479a35ed18106e8c889c4791693b0514e102", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3744c491d8d25e1133b44aae55909cb399d4fb19ac07c993526507fbce0fe253", + "regex": "(?i)^https?\\:\\/\\/globalannualfoodcookingcontestant\\-rs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e58bdfa757bb2dd0010c82f68da8d92711a8f9bd6814ff544a0d7c50ae53df10", + "regex": "(?i)^https?\\:\\/\\/globalannualfoodcookingcontestant\\-rs\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "03d975cca824bace2e66f57bc1aae68bdbc429a3967b6056c23e7f62fb09f4df", + "regex": "." + }, + { + "hash": "10a48bb3dc067406f588f7e1257729e20779aca9844cb43536495d8c5f614144", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "48ed38ac88ca4dd0049dcab72b23834370cdaf00a21dc2474a615fa2aa029762", + "regex": "(?i)^https?\\:\\/\\/voltstrider\\-currenttracker\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "642eee6ef4ad5482cd0e1981c1359ee65d214de34ffd9807c248d8013f671ec1", + "regex": "(?i)^https?\\:\\/\\/voltstrider\\-currenttracker\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "eb9d237c7998c0b9ae5919c338783e0949815cd399bd1934cbd94985a8a043bd", + "regex": "(?i)^https?\\:\\/\\/voltstrider\\-currenttracker\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0a2288623706b6e6b991d777ef82316680ee6eb0dea53e71ceb690790eede2bb", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f2b6008c0ef69662d477a4c5bdce67542aa552f7703f5308f49519e1611b6d91", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459b33ac\\-8b78e180\\-32ce\\-438e\\-a761\\-2ecbf737166b\\-000000[\\/\\\\]+11utSud9ty7NEhmyyAJmasbybOs\\=394(?:\\?|$)" + }, + { + "hash": "0f7c93b8fe10a2e8531b66ac546e272f79da88046fd9fbff378d3e2a7fea1614", + "regex": "(?i)^https?\\:\\/\\/esypkr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c004daaf3d3842dc3289dbac2e20ab76291efc48f860d9319f34e2d0c15dd9c8", + "regex": "." + }, + { + "hash": "f4a2daab165bd69da9aa6369bc808684ec0cd2a0257f0c069b51cb271b3fbed3", + "regex": "(?i)^https?\\:\\/\\/esypk\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "25104ebbcd60739897e59f7a901519cc74c171c630a061501332e08fa7dc1d6f", + "regex": "(?i)^https?\\:\\/\\/coinbasellogiin\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "09bd45ef34eb090e9ecf93c738900db61a905f8f29e8ae129408c75380bce2e6", + "regex": "(?i)^https?\\:\\/\\/globalannualfoodcookingcontestant\\-rs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bbbaeb338107f65caf5203ad000ba64bf58631a1baf6d933f505c84ddb8c3d23", + "regex": "(?i)^https?\\:\\/\\/thailandlive11\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924586e9d7\\-77191cb1\\-36c3\\-45d1\\-94cb\\-6b5f9fb90c2d\\-000000[\\/\\\\]+A\\-kveuretJq68IqhIK5f6X9aZaw\\=394(?:\\?|$)" + }, + { + "hash": "cce17afdd09db4222eff3c1bc814cc2fadb40e5e01045dd10a8b19c278c4b602", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "06bad01cda63b646d5bb207b0b4c44a689bb771d818944098a4dfd4c0e608270", + "regex": "." + }, + { + "hash": "8362d16702361bc28adc07472dd42c95cef796f4e27c46fba614bc64bec37012", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5ef29326f3d7f974849a6170bbf414986d45f14a7f7c5e2c78cb52d129fc42d5", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7311f3886233b0391a433011c449c3ab11c6cc197097a97621175b939e233e1c", + "regex": "." + }, + { + "hash": "8d64fe3286d58617fe7f709bdcbda5f0395a5fcc4532922c9d856f0f58e9e97a", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245bb9d65\\-88c7dd6b\\-9e5d\\-412c\\-a9e6\\-fdccf8860747\\-000000[\\/\\\\]+yXjPSpX6C5RY1BYdcKbk1B2_Leo\\=394(?:\\?|$)" + }, + { + "hash": "f78cecf8e4eff58dcc12310034b54d4ccf16d44ae2aff2f25668ce35f8b34744", + "regex": "(?i)^https?\\:\\/\\/danbombers\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "09e22bf78d1eb0019c1b51a8c824a5e920a14e9b265dc10c7ce7003d2e6145af", + "regex": "(?i)^https?\\:\\/\\/robux\\-cardsxkx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e524cb09bb9acd4d12e6ce3bbb9897a3071235caebb0f2ea9dbd44582d0e6949", + "regex": "(?i)^https?\\:\\/\\/formajaben\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "10fc3d1f6038d7aaeda42d84ad0635bb5fb6ec995fec60d9a606ba86d8353bd5", + "regex": "(?i)^https?\\:\\/\\/pub\\-7b53571d32144fdfa5ba073deccfcb78\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9b4431b00e8b57ea39849ecdba01f19cd2b661567aefee2c9cade029953664a7", + "regex": "(?i)^https?\\:\\/\\/globalannualfoodcookingcontestant\\-rs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192459e62a0\\-fefd8bb9\\-c25c\\-4e91\\-9b32\\-64ffcd2aca51\\-000000[\\/\\\\]+puLOQxkxQZ1LUcLHorUm4Mi7PcU\\=394(?:\\?|$)" + }, + { + "hash": "ce33684c5e3805c62172e8d8844171402ce1f406a3888c69637b976234d9ed7f", + "regex": "(?i)^https?\\:\\/\\/dwdwdweew\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f8c65a684f42a99c77fead316af8345215f2450d83ecd9c130dbd1948ed9046b", + "regex": "(?i)^https?\\:\\/\\/waxzaq\\-ceaqv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ff28f97771249871e0354befd51d662d5af6c4495cc957c3768e967b699150de", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d80f00755f57c77b211e54aea3e612115f507b7e7ddaa1afd315ceb3a3bf6e52", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4a7afddd6746c8e878fe165b1c9ff79dd7d5fe1ca3d961ef1eaf00d9706c8efc", + "regex": "." + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "d806dd7444aa94f13025ae4f981a93c8dc0c460a5ae75e9b54462ef5cfdfb521", + "regex": "(?i)^https?\\:\\/\\/robux\\-fbc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e8cc2e4476dd5a869c0dae62ce0112f7b249d9dbcae5101d2833b2be783e9f2c", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7b8f973da0514bc98558ba005b98ff839b7e8917dde7679b0acfd85da1f02e34", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f49abbeaf23b13d19420beca391cddb9c217ef247c36c1d32552cac533004ddb", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d1b77475930187a5ff4628139752934298de060e0c53c85b5b0fd5b8b072eb50", + "regex": "(?i)^https?\\:\\/\\/robux\\-fbc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "34258cf1561947b867ced7cb14a65aca64a48ea860136429c559133c1ea96fdf", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d62ce23ef6cb741b1b4bf47d2cca1793e6eebd87825ee06b6ce5a9306bf2f066", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ujygmatthewfair91\\%40icloud\\.com(?:\\?|$)" + }, + { + "hash": "8d32a4e070b803a8fc3cffd130f203d72b6b421ba045683c428cde002a15f44b", + "regex": "(?i)^https?\\:\\/\\/eaqceaqcaqe\\-c\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fevgeni\\-plushenko\\.com\\%2Flio\\%2Ftt\\%2F$" + }, + { + "hash": "7c35f7e5776133e0c5d401f04f5066635a241a0771eb328bd74640577a592e51", + "regex": "(?i)^https?\\:\\/\\/geqadghb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e6d51406b2746da9dd3416290a742679086ab7f5b65881fd76fdfaefa0bce", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5973cbe069eff09b581585d6a4a0834dc5a41dab5e30a2a5033c8b18f97dbf05", + "regex": "(?i)^https?\\:\\/\\/habib803774\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fd843692ebb31c979a6e5b46bc0b858a207731002e914259ceaeea6d85dd6378", + "regex": "(?i)^https?\\:\\/\\/waxzaq\\-ceaqv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "14096e36159ec56e6ec10ac9205b2667620dc8e0f20c21716cb384562da3d3aa", + "regex": "(?i)^https?\\:\\/\\/hgqrahgr\\-qah\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3ff7eaad55193cc36fccf7a52d81d1a901fecec091f73fd55a3e77297215b0e7", + "regex": "(?i)^https?\\:\\/\\/bexy21lexute\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ff28b3b8c4f14fa1855725a7df1756bdd464cffebc12e70c43f8dc5016a945f4", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b9d92460750b3b0dca024fc6d8775f5b685f7b489c7b5e70a103e5c5a958ea74", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "66fef224b00379f28c6cd1a627ee30729d5ca0a417a548cf58428dd5291f2423", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b471754d1115218d923dfaf6c85646d8a911ac9009151699fd8000baf20cac38", + "regex": "(?i)^https?\\:\\/\\/zaaqcaeq\\-c\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5de0a9bf004349dc397d56f323d05a7f2b91a7732f97b306b5e27a73bff6c05c", + "regex": "(?i)^https?\\:\\/\\/xerx21plume\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ea8f7ea4ceda7c8eaaa9962af59f3110c88a55db1076bfcdce1118fccc4e87b8", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9fb09dc242873b990b1ddaa155d7046e5d8d1f673a85e3227232b7f3a688dcfb", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "970fcfd6e7d26df30ba321c7580dce3c60de40c6c608d2e054afd778e96b0b10", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f4129d9a7e8781d15c400584424b9201afbbe08a52d7585637a60de40f424040", + "regex": "(?i)^https?\\:\\/\\/eaqceaqcaqe\\-c\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "74878c6ac0bf01c27533865e40998d6187ed34d3f1904a2b67e709fc23d9d890", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "618f96fc90cf3cb64f5b885fbeb20327ab293c8f7b55b4af8785856be34948a0", + "regex": "(?i)^https?\\:\\/\\/eaqrhbraq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a19300b2f3755b7c5cfac9f6610bb869baf3c415342f3101f3fb562e452cdfa4", + "regex": "(?i)^https?\\:\\/\\/eaqceaqcaqe\\-c\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1fb22633cb412639974b4bcca9da0b15c011c0b76096a344e94626e23645bae2", + "regex": "(?i)^https?\\:\\/\\/ceaqv\\-aqevb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4c7cbfa762ef6b205e5722d5ef87bb2e03c13d1f56aa99d754caf1eed26e9421", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a2fea27daab764419f47286e0da10b9d3bf9307d88bd219be9a1181ce4a9b252", + "regex": "(?i)^https?\\:\\/\\/qrahqarhqarh\\-qar\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5793f473e48e04b3829ea6b3afe7bd911bd77851665b877d13d1eae695310b66", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cb56c7a81dfa35b9c321ac61a65b6515483079a28ce7cfb63de729fec7bef6b9", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5a3c0b0db1d41f6cd764684eedd8c0eb350477984c7a5c8546867959beaea7ea", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "26ca6c23d8c37af99fe0ff7b47a89709785fb956a9c6166c21534bd6bf82037c", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "328075a421031f5ef2c9386dcef268c5ef813fdff0c257788c0a330ddebd24ee", + "regex": "(?i)^https?\\:\\/\\/xerx21plume\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "00f93a1d3477698925254b7fec15eebd47b94f57efb15fca49259ebcbf8519d0", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "76677ad8bb38cce5e4969c75fc3718ba1631ecd0ca2eb3b09cafebf4d411ef2b", + "regex": "(?i)^https?\\:\\/\\/eaqrhbraq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9ef3f4b4892ab1744e142f484a9c2e640b3d0c5df7acfbc22bc80faa35f84b3b", + "regex": "(?i)^https?\\:\\/\\/xczeqaxczaq\\-aq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e5907e4d66e173eeb9da4dd6244afab747e5448ee3bb591c418cf1a3bcbce3eb", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "df57d8d1928972d2f35d7fb9fd1fa809cd88a73ead5b5f83a103954c7d50b3ee", + "regex": "(?i)^https?\\:\\/\\/geqadghb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "02fbd8f4096ff0e33045e9bd1714662b94353925e8508cb708d756ec4c363879", + "regex": "(?i)^https?\\:\\/\\/hgqrahgr\\-qah\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c888b0ab6ee02efbad4bd81a1d64cd11ccd09da56c6d84a89374eb81a52f5bf8", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0058760daf67505467745fd1abe13c2cba89fc255bedc3f3ed84903f2e541f74", + "regex": "(?i)^https?\\:\\/\\/xerx21plume\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "05d5ef124d5036d248541d04aff28cdb3983fd179dbdde044bd17496308dd304", + "regex": "(?i)^https?\\:\\/\\/dzeaqfaq\\-feaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "070905d859d045cc7fbda4430993d2696282663d001a1d2fd3476e69a57ac755", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4b2e2a63c624c9eaf56e4a3801f48032353913bbbbb2fb42fde3dfa31dc7661a", + "regex": "." + }, + { + "hash": "e5e7226aea7d8ee0049cd4e9dd2a6694b841d73e8d3fc1da893dee218548615d", + "regex": "(?i)^https?\\:\\/\\/dzeaqfaq\\-feaq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e3fcd29f5f41bce9be3e4ff2e482de1108c738c2c64b13d61d8d6991993d4e50", + "regex": "(?i)^https?\\:\\/\\/waxzaq\\-ceaqv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a72760b7674f0e84b2a4ff1b62a4f9a0f470d3c7e3e3b0e9f6de299a98ac1a08", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ce5ea9340809a61df9ba7be7d64910e741972b76851fa384366bd5fd358508cb", + "regex": "(?i)^https?\\:\\/\\/geqadghb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6edc7574e243db5c2afd74e9ee9d0b7bbab938368302f7fc5660b24a60f027f1", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d1e51167198e3732a13f70b73cbcb29b4a1c0548cb5f6ca1a5b13248897c0d63", + "regex": "." + }, + { + "hash": "52113c3e23a53efa629e94c36d3d291b5583ae93e343fc4cc2f5947e096041e0", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "234b3fecea436316ae687c1e90fc7fe7aca30749e044c9a5715e8f96df0331a2", + "regex": "." + }, + { + "hash": "ef1bdaffc641aedc748fd14818f1278479260f42b261468c58ee648d8bbbfd66", + "regex": "(?i)^https?\\:\\/\\/hgqrahgr\\-qah\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7b399205a96e9d61a16f7310c75d2556d02e73ee0b8031a9da080a439a1ccba7", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+din\\-konto[\\/\\\\]+betal" + }, + { + "hash": "93e1e61c0c348f6dc4376fc3251ef9cac3f7c33abc316b9dc989c424afb1694b", + "regex": "." + }, + { + "hash": "45b23288474b6c30a305fa57c5f5d0f703c27a68f0a236a897300e4a7c6afc32", + "regex": "(?i)^https?\\:\\/\\/robux2024ooc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a7daa8e2d8c8435c9d7865e2eb731bee1c1ef583fa14a1214d0f75677dbfa903", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8c159092f4c99fa3eb98f6c6df055a9fce5f24de551e4f09f18cccf408c85d57", + "regex": "(?i)^https?\\:\\/\\/waxzaq\\-ceaqv\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+y1qvdl(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a71587d341b7c0a4c5151efdd6fbcd97b5024fac727e02777b3ac79b344e5113", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9037[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "280d9085f449fbc71ada0e0988bf0ef6e913992fb9167f85d9b3dd0730a602e0", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "774005d34cec4b21643b7dbc6cc4d7b226102be07e13627325930f2e3baa7604", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "80585ecc678f2d966ae39b975d2ecc5607c24ca89a59e5bd37db4fd0a65b0b16", + "regex": "(?i)^https?\\:\\/\\/ceaqv\\-aqevb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "107f29387d0a32c2daf2b32a95697717d8916c2358f84a2c45a0c12a121a9417", + "regex": "." + }, + { + "hash": "54649e053fb158bbf7f3e546560e2480ee138ffbcee80617e66702fd5d6db2d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appsuiteo\\.oxmailfolderdefault[\\/\\\\]+inbox(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "11e52eaf6b1555e2b0d92ed8999059f65a03f981ef9378698baf8e575ef959e8", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7d03e92b79aaf7700555201d51a351b3356e0646674e1bb1df642d3f909cc948", + "regex": "(?i)^https?\\:\\/\\/xerx21plume\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "32282cbf8ce93edc29b4249097008b6c2101e83629a505d15f0e4569924767c4", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d10ad7857fcf9d30c603bdcc9f260df37252f27f419396477c144b08d0094352", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "93d752fc5522919a3ba119683076e6f14f442a6078cb54a26edecbdfddea1d04", + "regex": "(?i)^https?\\:\\/\\/eaqdfqa\\-xzczaq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "36eeac109092aee186ff6d3ab2e9522a75dc31161ddf9dcd935d6eca343d75c3", + "regex": "(?i)^https?\\:\\/\\/hgqrahgr\\-qah\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a5b0a78ab960964cbfddbb543b19b2693adfc5342c63e4b9c654435f7455b4a4", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f4451c4e69d1e924379a66c086eb0ad86e9bf917cb3182dcf584da934cd3c818", + "regex": "(?i)^https?\\:\\/\\/qrahqarhqarh\\-qar\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "dab2f07ff13b366f3c98d61f00bb0a537457c0c40831476d050f19c4be5a4d99", + "regex": "." + }, + { + "hash": "f99f4dcfbce6d8ddc48a799511c1e5c9efe651c8c8917a3a634282981f9a4251", + "regex": "(?i)^https?\\:\\/\\/zaaqcaeq\\-c\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3fd4e996f0d22f9e13f55cdcfa81cc688088cd8a32ecd0de5b4878094fec4a26", + "regex": "(?i)^https?\\:\\/\\/dzeaqfaq\\-feaq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4805dfa66f9e863a428897d654c595a6af0d2f2f3be995912676738c1ed85862", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a8184a847eb750fdd6c69ceb9b1c7ef48c0d0dc8414a4c6b4add1a6baabbe005", + "regex": "(?i)^https?\\:\\/\\/dzeaqfaq\\-feaq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1943fb17b20c13ddf140cf9207c67a70b952d258c240cfc33951487d81c59cc8", + "regex": "(?i)^https?\\:\\/\\/xczeqaxczaq\\-aq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "59a57925c4e6263dc6261160886be6ca61dd0d950409f36bb46596db1ec38d3c", + "regex": "(?i)^https?\\:\\/\\/ceaqv\\-aqevb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1df5de6b6e250c8433fe7350b96a4d877cc025a1aa75e6416c86fe31a30c5bcf", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0e86ffdb0afbe59043686e98703593bcf65a5a7f4772e720b1857b598bf7903e", + "regex": "." + }, + { + "hash": "4c945fadc35ac08c4f93ca94f9bc22f3771775b1039596f3d13cceed036f0ce6", + "regex": "(?i)^https?\\:\\/\\/metamskextension\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a7c5126333ee6b91d365e3064076a3cdc84e2ed5890773c19fc04f32761b5d28", + "regex": "." + }, + { + "hash": "ea9b2f8b392ff78e32786f61231c7664b66c79519bf8899d6020189307387f29", + "regex": "(?i)^https?\\:\\/\\/eaqrhbraq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e77cc609273e2ef5a986119efe29e15e078a0b4751ceee527a9a9048b534b0a1", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4a8739d50308b8fbd22de770da68017ece3e42ae4bae77f4a015da31d96ce634", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "711a37b8e0dc7c6498ca463fef237d30c7ae76c40ef6790b7c976a76e57827f7", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "952b01cf38d8c78bdf09c4030a03b8807863c3df16b4112da582f5c00e9ce9e0", + "regex": "(?i)^https?\\:\\/\\/geqadghb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d16be27d179643f51fd75f894a0a7dfade610de5c17b38baa0b70c231ab4a7e9", + "regex": "(?i)^https?\\:\\/\\/eaqdfqa\\-xzczaq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3a2d0abd5ce6d50c54db1b593c25ca8999e8e77cb847c85fa74649c867df01f7", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d1c8f492e0893c0b90ffef7273ef96ebc8faeb9706bd2fed27f704fdc5b45751", + "regex": "(?i)^https?\\:\\/\\/hgqrahgr\\-qah\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ede9df23c94b68c6a00e2b57a3a257314f2889dccef72aa0faa0d48b9271b6d7", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9cea64f519db44dccfb30f18821b1b1eb32c80a09e68877be6d1c02fd856e597", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "dd4c2c54072ba5d7156525621f7e317516c1ebe48731c5f2ff5b0255564e29c8", + "regex": "." + }, + { + "hash": "ab20f023f488e725fd0d8f3e7ae0d5613ccd476ef1e77177dfd989b12b6be671", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9be9ac65478964aa899d1fb59239133ca4147b462b86d2ba7045b6578ea0aff9", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8d4396c0ae1836c3522f315d93b70848df104154fa9970826478516c4ed0d9da", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "080aa2d90ef4142de7d47c182b76b701f98d9a10a0ac7ff894f1f131e7dc177c", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9d554f0a82c37a79b24e86f0dbe47b3f305eed882b52b17eddf3e955f086bc14", + "regex": "(?i)^https?\\:\\/\\/robux2024ooc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a654023163ee773c176b6e491710c684197880cfcd4f5fa28b5c54f2895d8936", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f96e8116da7077944a864046419e449134c5c11b1d2d770f994f0273325cb693", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a73a68adb13caad08c3e20440c653d950416324a29d7f069d2ec231cf2323834", + "regex": "(?i)^https?\\:\\/\\/robux2024ooc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cc9183ff4a6920e775ecc6436c16f6a7962fe17b9cdbf332da6c4bcba102e10b", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e7971ae5a1a72f6cb6d57af1f200c234c095b5294aa3d41255967bd6d58ad1a9", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8d9f97c5918af913b12f39a8ffe2e322f9bd2fe58fd82c96bb13981059a96ace", + "regex": "(?i)^https?\\:\\/\\/robux\\-fbc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b4d5a0f4d5364271868599e2ac25d3203b2814368e35e4f2f5335aafbb822a47", + "regex": "(?i)^https?\\:\\/\\/ceaqv\\-aqevb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a8db31c373a1d8e223a0326d672aa4c6b2178a5da55748aaca2cb577e04cd2a4", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ba8de9b7b6da407e5144df38c4d4dc4aae6e856bf400fb08c4a2ff73ee6e9110", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "876cb1a9f419c66563013d23a6bf46a7ffda4dd039b3128f330b866778de3f2c", + "regex": "(?i)^https?\\:\\/\\/bexy21lexute\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "31a6bbf8ddeb5c0e3b2b6f5906cd65b2bfdc8ee86bf90d33895deeb1860f7f29", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7b5e22c4088b5b04eb29bb75e0f9e831cee0c0e9f32b382caf33b4fe0a3573ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8A0e(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "56e52ff0d91452c04cb72c243b0eca3810884ce444be12bc261892377c197c1f", + "regex": "(?i)^https?\\:\\/\\/waxzaq\\-ceaqv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8307db2dc10ef8655d86131c72b82f57b9cf652207afa676b3f1ed2f8f33e362", + "regex": "(?i)^https?\\:\\/\\/eaqrhbraq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6e41582fbe29ab138805ea49535cecd0115a8c026b0595b15eca847dd0695c8a", + "regex": "." + }, + { + "hash": "e4bc7c170ff463f23344abe2f5b24b068ce69dbd1e324ae9cb98030777b4e5ca", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c78bcbfe940762f0f9abc625248be774aed1e224b04f7cab718a86065b487b9f", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ee3e9efa863eaf7ee3fad0eaf4ed162f6d174db20ed6258cbc1401b60fc72d48", + "regex": "(?i)^https?\\:\\/\\/robux2024ooc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d63214520467dc44b57887a3e95a70d50b1b70976b808ab3f4eac35ee538159e", + "regex": "(?i)^https?\\:\\/\\/eaqdfqa\\-xzczaq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "37d074a756221c5ca47a4e60726cb16b03c59684f1580e05577282f25442c33a", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cf0c5e0ee34792817da9e8e44f71ca75162635e41274b1bdfcc0e8ac9858690f", + "regex": "(?i)^https?\\:\\/\\/dzeaqfaq\\-feaq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "49e934a5823271cdd138db13d6e6d554f12df0bd483739b66704ef0c12e5dc8d", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c834b9dd3131b961576e3627f14372adc4095ec1a3059245afcb2844f6720ac6", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7091adcbf0aaf87dc2aff55d6b11c271e570948b60bbdfe748022acbd5cf240b", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c035111e8f4eab7d6b080fabd1e023a23f663a16e1ad3d9403248fa1de97e302", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ecf2fc6bca7faec05db017e43b6ea2fb390df85801d6c744a0610dcdf0590006", + "regex": "(?i)^https?\\:\\/\\/robux2024ooc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b0d773c5a20d0c7cac13c84e553fa3b19438e0740a4af6ef926bda84497879a5", + "regex": "(?i)^https?\\:\\/\\/zaaqcaeq\\-c\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0b1ca768cedd0967ae5559aafdcba9ac545ad6a5ac80e5215d6401c0874586d2", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cfde605680833c3431726a8aa5689c4c6ee6594c315bae4a5ee6bde87d2c51ce", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b63d8f7b5ce625b52744f6c2b78c637f2ab643397851fc52cbf828b66713ac95", + "regex": "(?i)^https?\\:\\/\\/metamskextension\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2ba276ecb96064e8326953e393584911e9495cce089c6c8568d889be829023a4", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b380479e45e92ec2bb6a5574f2f5e8edd0eb4daea550d7da89550a263a2ea0d1", + "regex": "(?i)^https?\\:\\/\\/eaqceaqcaqe\\-c\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fcc0b6e8a82e3074e2053a82604fccd7601fb95f7118b7f32c4d93f19301f492", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "db754ba5c5df8f3effdb00a75ca17f399c56f1f9941d421c245c85c7a0eb8a27", + "regex": "(?i)^https?\\:\\/\\/xczeqaxczaq\\-aq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "aae12a7ece0210ea0f6e3b6bba741adb86b01a193f2820ec479293431ee3b0e6", + "regex": "(?i)^https?\\:\\/\\/eaqceaqcaqe\\-c\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5d8331d516606ba3773211ff5480ecc225073061e87ac667890c44a9e907e86b", + "regex": "(?i)^https?\\:\\/\\/ceaqv\\-aqevb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3eaaf1cd3b2389f7bd586ff8c9b3fde7c345bbd2ce74a6af1dcfaa78ddb5f4fb", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "24d378e66c0e5a75ab0d0ca93d7af769a757c013b1d6e6543a5c496448da1e53", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "436eac78e69da2da43cdd14888ae03ddc5f733f4628af827e8ef437f21a95c80", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cbc5b2420f60537274c5fd74d43dc61969d139dce109b9d9d5e687b95ac606ba", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2b0783f4c1ddc939d76dcffc4b6049069858601bfa416f6b91d4bea4a56a2978", + "regex": "(?i)^https?\\:\\/\\/ceaqv\\-aqevb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d8a5148e53e2c5be7ce76e5ebef8cfb2c6182afa71a872af7e5f2681251d2b23", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "100162528c85d546fe4cada7e5bcf4e28cb8551d2f50cd6f1373b677b78b72d7", + "regex": "(?i)^https?\\:\\/\\/newmobil660\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dd2b52aa97f507ad54a75510bd9eb3fe9137e5c08b0ed016c0921c96b845f900", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5d6d9bc2a8a4a730a24ed29096de67435204715d7554ed211c7b1908001f", + "regex": "(?i)^https?\\:\\/\\/bexy21lexute\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9eb5d0e9f7c57dbcb497725cd61fa546e49b6f5e7b2e19c5aa3ee47db8e91eb1", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5fe59361c7f699c5a134b68a2d32df5ad5181af0ab2e7f077a0ac0c3a5414260", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8362c56ba483adb80ffde3dd6cc4afa0cf68683dc986edb854b0d4c40805476d", + "regex": "(?i)^https?\\:\\/\\/dzeaqfaq\\-feaq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b9d142cbfa676bed64fa6ba82eea7278015e5f45fe527c998c33b394143c6498", + "regex": "(?i)^https?\\:\\/\\/geqadghb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f58149456d2ba84c2783b18d259aa8417a7d4cafca6820bf75b6aa835d0b0423", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c2dd8c8f970c429a1a2a664a49b63a7c9bdf9ccf5276dfb13cf754f7792c888a", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8eab59e3c5bb856327395ed19a0fba4da3454a7ce57055f52a28012755e38d78", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6fddb5e096cb1367cc100b5a906f8c8ed0af711352c887510d49417621686218", + "regex": "." + }, + { + "hash": "93001f5caee929b0e2d346e56e0fdfd624a0a431b08ee402c5c2c733e3138c4b", + "regex": "(?i)^https?\\:\\/\\/qrahqarhqarh\\-qar\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5b301a149de29c86808a2d2fc8aca92973dcc85d0a4d49e9b5d7b340e76e6737", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c73efda333489405288e4df527a74cd51af9101904c9e9452c41429dfa5130e0", + "regex": "(?i)^https?\\:\\/\\/bexy21lexute\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e37ff3cd9fbd9ac108925fffeb156c76ad6a0e2157d77c039f0f048357719e4f", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e6a01423fdbea9df9331aa689f783c3c8f0953e5d2563ac7627f4d7b54d74373", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "30e037015b8728572457a5aa7ed6d78150f1d5bafcf339bb1d3a2aff77ad27cf", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a6fea86408748bf8de8e486593ccbcf75789c807e488b30797ee54194f5bd482", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b712ecbdf4f0b37ad2668298b3e2c43afd22afb631cd07d3792147fafeeed19b", + "regex": "(?i)^https?\\:\\/\\/dzeaqfaq\\-feaq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "feecde40d7013f33002ab29cf94c012ba457e40e7f440053e2b04a0cd2e709e2", + "regex": "(?i)^https?\\:\\/\\/xczeqaxczaq\\-aq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e6c7d7463d7eee6e17dcee47966177a0217adc274e8aa635a51e9ad96b03d445", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245918b30\\-4011d20d\\-19d6\\-4127\\-a896\\-de47f716e104\\-000000[\\/\\\\]+gdOL9aXAcmCDRpnOvLtyctFILZQ\\=394(?:\\?|$)" + }, + { + "hash": "53ea9eba55ef7bfb49ffa23cea8342920cc2c5b46b262e51bb1170c02d66cd5a", + "regex": "(?i)^https?\\:\\/\\/eaqceaqcaqe\\-c\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ad839471d568e2c38a53251bb899b411445f63ef74eb1b3df43fee2f917cb330", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2072aa75a09fcf222731a6db546892ecfddf2ef1bb3ff16ac8827efeb38f405d", + "regex": "(?i)^https?\\:\\/\\/robux2024ooc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b876262f81db3ef49fe1bb8b868b212d676ef48c8a6660e734d5e6e3aacec44f", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f909093261112ff5e2be6f8785b6478f9ee84ff4e3b9a0399917b89e81e01ff9", + "regex": "(?i)^https?\\:\\/\\/qrahqarhqarh\\-qar\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7aad058ed39e33e0e69cb89f647b786a7b8800322a60efe24894760fa4a4dff9", + "regex": "(?i)^https?\\:\\/\\/geqadghb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f3b146daf43c23de358df1393f184664228c1118849f92dd424d90390d9b0132", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c6a4395103748419cdbe8dd0b84aeb83957a0661e74a25b220b9cdb9545a623d", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "334b0fbe41a8064626a6c492dea42c859de7105235c96fe2a4eaf41df89d1538", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4f55bc74067a9a857704cd5a76ef72a76d1de2a2beb1b490ed8b295935d851aa", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "13b782783777fa00a225528e112f8f5e558f8fb7eeda8e9041fb44c7340a45a5", + "regex": "(?i)^https?\\:\\/\\/metamskextension\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e96c8ff63b14a9a55be48d214550cb5d1f26bab60a9e8ffd249abbd933fee24f", + "regex": "(?i)^https?\\:\\/\\/ceaqv\\-aqevb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ca9bf9c15af60fb3acaf9511812b2feb4c4edb944a32e8a1ecfc4a1c433910a5", + "regex": "(?i)^https?\\:\\/\\/zaaqcaeq\\-c\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b260a0d3afbf7b861140178428e691c4a33b47d8117acef41e78f09a8e0c6f1d", + "regex": "(?i)^https?\\:\\/\\/metamskextension\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f15819c7fb236c899180efd5da67fc9a036cee872daa9c3b06cfb79fdf17f334", + "regex": "(?i)^https?\\:\\/\\/waxzaq\\-ceaqv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e5d904932cf1bd4437d92f2cace0a368de577c797fd07746c2ca258750aed9dc", + "regex": "(?i)^https?\\:\\/\\/bexy21lexute\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b92a0426e138addf1e223aca7732f0cfff2a6b97d489a3245d38b2722810559e", + "regex": "(?i)^https?\\:\\/\\/eaqrhbraq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bde7784adfb27e7ae3ffd961b94ae33a5079a7dd5d515d41d6363606719da5b2", + "regex": "." + }, + { + "hash": "23fa82ff1c39f93a6fc09322c5ab120e66acc366f571a4924fa5e409ea8647be", + "regex": "." + }, + { + "hash": "1507944817db605a4688098cc7d29fb9a3f8b6128385b9ff27497c2bc03525ea", + "regex": "(?i)^https?\\:\\/\\/eaqdfqa\\-xzczaq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a1b5a9186d37b43a13f886ba47d78000914191f6c8770f51a8f08d061920ce11", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "343cfdb2692b84d0a3807daf832b6e16e5824ad9c9e5c291438f2306406fdd3f", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ccef9c5c53caebb0dc9bedb36e10fa26f483fd66820cf81c49814da417e8a281", + "regex": "(?i)^https?\\:\\/\\/geqadghb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a1242bdaa7bc5233cdc92174019713a04d87d07e9d69e2e869ba6e055ed01329", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "78d5aa8fb9cb9b3f679c5b4d8dd72457733dd259b45f5664d6d20f5effad9738", + "regex": "(?i)^https?\\:\\/\\/zaaqcaeq\\-c\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "48972cc8e03e7d4099203e0a1ebd295c070d8dfbf7f954b4c343cc4c0215651c", + "regex": "(?i)^https?\\:\\/\\/eaqdfqa\\-xzczaq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8617c85857790f0ddd10c0ca6ed3ef71f05bc597f04a8b062b65158e74f0cf3e", + "regex": "(?i)^https?\\:\\/\\/qrahqarhqarh\\-qar\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d436ee56c09d1dd5ac799d42ce1b4b722c44765aa1f10d3153d04b078a77dd55", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "02f92d6ccdc0603fd8ff72e76628eb67424be27cf71957cddfecf64627d33435", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "00e370c23dbc29c53a91ac2ac59498c13c1661c4c4dabaccad1ef6f18c005337", + "regex": "(?i)^https?\\:\\/\\/bexy21lexute\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4c12dcb42dda22f3c976db78920d1e69953775e04d935559256ed243a4c2ac64", + "regex": "(?i)^https?\\:\\/\\/stethnftreward\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3a4e5531265113711c6be4577e6c4df78e66fe09a2411cc16094a63500a9eb20", + "regex": "(?i)^https?\\:\\/\\/eaqrhbraq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "74ed29c9d2a4d03348cc43336f6d856eafeb74ea5773f92ed8e959985fe1c470", + "regex": "(?i)^https?\\:\\/\\/qrahqarhqarh\\-qar\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b2c589446da68ad3f7af88ab5a4c7b7c3d867db63d3b172b22ff27c579a98e8e", + "regex": "(?i)^https?\\:\\/\\/ceaqv\\-aqevb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4f429c65b2d0cad8ac4cfc761f313a26695e42692f0403ef501b51a36e0e2577", + "regex": "." + }, + { + "hash": "d15dbc9d53deae43047a85b9e68570fc2fb21bc26784059b4f5bfd2814835c84", + "regex": "(?i)^https?\\:\\/\\/bexy21lexute\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c1e9f0711198e3c7a6d3c51916eec4588ff8bd31352956d19f3e1296325383b6", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d624453681532ced79cde234aee84200fb4f158622d5a70c01aaba79ac9426e8", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a03d08dca9422cee521d62bc30fd72618f013c8b12adba905d09e26b283edd99", + "regex": "(?i)^https?\\:\\/\\/hgqrahgr\\-qah\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "034f1a24e4efcf21c2f9940bb0756973a2a5798d6d6e019b1af0208ff0e5f1d6", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0541a6db571ab7e504b46fb851862b5cbebcfe9d390be9d72af812baccf510d0", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c6e65ee52f66cfa56d0af69cc93c1d4f5c293f7c5ddfc5fb384bbdc120aa6d9b", + "regex": "(?i)^https?\\:\\/\\/hgqrahgr\\-qah\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "00a761b57fcd0382c413aba24840e33f4594b22eab48560cee99285664dc9447", + "regex": "(?i)^https?\\:\\/\\/eaqceaqcaqe\\-c\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "07a927a463036ec55dc55d59e4edab174f37189c3e2044859c65ae7ffd4c5976", + "regex": "(?i)^https?\\:\\/\\/ceaqce\\-aqcaq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f822d8a3d10c24621a6fdfbbc5c11a65e1bc6892d8ddecf81fcf66b0264e526c", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "669c7187a547376ca3155ad6ec13d991edb72ecd5e9038c3aff6758020f0bdfc", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "acfb4298428818e28176d49e4500a1872feba214af4517899faabef8d72d4580", + "regex": "(?i)^https?\\:\\/\\/eaqdfqa\\-xzczaq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cdb0c8b2b05bf7b853eba4f9fefe1822e070f899061ce208c228336ba21506ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+attyahoo(?:\\?|$)" + }, + { + "hash": "93e1d6773cacf60992f7ed6b505d2b057e854651f906281dd8f3b0d8149402c3", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a29afb58c3f0dcb6b4c00499681d4d1fdf2b1fb82a4e9e3d877eba9619547e04", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fhome1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "fa5a726b74fbdc7cccb257dcfa7b9297efe27341ce7117e94aaea39ecb292543", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a08958ef034d652ba905be61bef9a165d1cee9a0a032d4eb1dcbc05dda11254b", + "regex": "(?i)^https?\\:\\/\\/xczeqaxczaq\\-aq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0f6ee91bdb2699fb0019ecf25f7016c8ceb8c8a0961cf344f5c8dde5ff7b927f", + "regex": "(?i)^https?\\:\\/\\/eaqceaqcaqe\\-c\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e60667f3248f851ab4d24d36dec0009d5c90811a4f684a3e58744ae20848b06f", + "regex": "(?i)^https?\\:\\/\\/eaqdfqa\\-xzczaq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "501a98e77357d1b6ae14cd783f21c514be3753f9e17391e3c99151fc3e514feb", + "regex": "(?i)^https?\\:\\/\\/geqadghb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp[\\/\\\\]+konto[\\/\\\\]+log(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a738f78e4999d13347fdf3c5d650768016a2d8487134551325ee3031c417aca2", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b5c8109fd90a9cd28f9b90852a128d38cff8b147657d4320cf86096ae80f6657", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7fb8f2f3d98fedc23d2ff3cb14125a87fb72f3d86a48bb171eff5f16f84eee97", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e491351953baa9387b8cc7b83b5c5fd6d11efd10ea75528451d8fe16bc54006d", + "regex": "(?i)^https?\\:\\/\\/xerx21plume\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5082ebd5ff26c255f01f5214dcc6bf75b8f75648185d5b2aaa65150aff4b9e9f", + "regex": "." + }, + { + "hash": "d09eff6e9a7cdb18f90d4a56b07a7a861f41f463faaaa5a715485cc1611d722e", + "regex": "(?i)^https?\\:\\/\\/qrahqarhqarh\\-qar\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fd2e9cc0b75425c55a30ce22c97a3c01dd519050ea92b3d854807a300764bf6a", + "regex": "(?i)^https?\\:\\/\\/robux\\-fbc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ab8e03d29c626f0bd0565477b204b46d3818ddcdf612be33c3849bbf96cd71bb", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "00e4ed269808e50aa70b6103f0872d9b7d9d7a3323113c96274b15b1b37d2aa4", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e797c839b06404235494794598d828c4fbbbc5954ce48292d6420aef8e426eb8", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "674a16ce234ac5264a6659eb05f8caceb358d00a81fffb4d29ee89f6cee94cc4", + "regex": "(?i)^https?\\:\\/\\/eaqrhbraq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bb9f8179b49d62b3a4113137c63cc4f47325a555ca2e6fd71486b3366f8a698a", + "regex": "." + }, + { + "hash": "05b42d9cfd5032cafed10d7b6ba938a0062f6a92e956b0582944be6d4c77547b", + "regex": "(?i)^https?\\:\\/\\/robux2024ooc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9a25265b934f4962034fd571c2a42de07c48f6a4c64149427245f4f914be86a4", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "aca84096506706b40870095e898ec4c3f09eefb42d339c3f55fd52c3c55ff64d", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f753bff29846371dfc0cd9d60aa96cc8858590ab0d34989ce2d9b052e9b72d75", + "regex": "(?i)^https?\\:\\/\\/metamskextension\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0cb278313a543c1c18b0eadfc09bad97546432eb72c6ef1b9741eac13100bb16", + "regex": "(?i)^https?\\:\\/\\/eaqdfqa\\-xzczaq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "75560eb6c1120c4e9e4983f985f197c30758905494b4c29cfac97bf1a13b255f", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4dae23a2c69e0668b996b692791cfaa0309164c3363d550a51e55ac22dc15eeb", + "regex": "(?i)^https?\\:\\/\\/08983659\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "24bf9f7d8dc04c45488e2652e5b8059188e31e09fb8cf7c31e4fb2f5471e1b13", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "95d8c6470b61c845e6d5b98bd8f0f0cdb6ecc441e6d299ac79ee5bea09b09ea0", + "regex": "(?i)^https?\\:\\/\\/xerx21plume\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+home1[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "22810cdbcc2cf62c5aa94f1f0953806f1548438a7e1c37c8e91bb247a6136552", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fhome1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "b81748564a812263be1620e82d6b1537f1de6a8997b0f51a792bc27782c37bd5", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "616f7d15449130f17ef132d4ca2aacf4cea71df4648962b5aaf8ae423cd218b8", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "650f606ab105d2fece419a0188830dbee14feeb6dba2b4b440c48cb4fb6c349f", + "regex": "(?i)^https?\\:\\/\\/trzshjrtzsjh\\-qa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7525881916224cb6102f4ebf304b5293694b9924775e0dbb11b0ab7a24421668", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a19d37ab2b66e7d1af045fe9f8e1e37ee89666090a803e7cb6c574f2cbd650ff", + "regex": "(?i)^https?\\:\\/\\/xerx21plume\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "49ef241fa08facc440f6fe18d67396cba67a4d974783b6453a91405a41a3c7d9", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1d188e433d17675114fda881f3aa98053157f64513ff7c975865476bfe41508f", + "regex": "(?i)^https?\\:\\/\\/ceaqv\\-aqevb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "94cbccecaea87639bb9007c5410f95d948d748345657f2de4a5c4426a21ac4f2", + "regex": "(?i)^https?\\:\\/\\/eqagheqahg\\-eqa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "76d7b1a8477089ce2e794f3e33e3c6d7eabf23b6d65997b470d39fa737bc6680", + "regex": "(?i)^https?\\:\\/\\/waxzaq\\-ceaqv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f54da24528ddecad6f10009c88b7f890815c769f041fc6986bb95f261368e29d", + "regex": "(?i)^https?\\:\\/\\/eaqceaqcaqe\\-c\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "dbbe33e373178a140f80f15cf7b62e75db169c2676209cf0280a65264d825a82", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f3a115d0f2e647ce5a90a00d90ddf3e8c985b9ddd45e390d1878d346c5bb3bbb", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5c449f639d3000fcbc493d997f6495bf9a05d9032ca468f570543696663fed1b", + "regex": "(?i)^https?\\:\\/\\/geraqgee\\-eqag\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7d8f1d57a6e01147cdede5d3eb3def8affb3b549cd96c0a2091da63d0e168887", + "regex": "(?i)^https?\\:\\/\\/hgqrahgr\\-qah\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "068412523afc1dfd2c5f2f49e00f1d495d469e92acfcc9fb2a7eeb5674c16e5e", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cf4bf290c5ac265feb95f70c49bab0a62cb6a589770f7990e2f39e7995add80a", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4b5257da700b048f795ba3383caad678a9156c2a5afaea21c5e5929f7cc8a16c", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c668e5206612407561752342cba994481d9c2e9f3802aa0bdd8b72e2a848f1b4", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "87e2b7faa35bb28939eb59c8a32f7efc2f07f7379237c41d44852676fa720f30", + "regex": "(?i)^https?\\:\\/\\/zaaqcaeq\\-c\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1f39393ff75cab6fd3bbc7a7afb6d0b76325fbf1e489425024ad2c30375a53a5", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d70a8f33b9c2c83bab3aa06b7b9ede93e7bb96fb8e97e9144b78bae9ceb358b6", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f0e0d81eec3c96339a7a30cecfe932377e926fdd8b92a91f2cd0604519ac7b59", + "regex": "(?i)^https?\\:\\/\\/xczeqaxczaq\\-aq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3f90c51c79d2dbba4add8e27650dcd367ee7a0bdfe1f2df92b68a1b12a302718", + "regex": "(?i)^https?\\:\\/\\/ceaqfvaq\\-veaqv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5e001a5af80744bd90c648c4e879b6384fc6f9b56a40b9397950fb7c13ee1691", + "regex": "(?i)^https?\\:\\/\\/robuxikikd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a775fd7ee487d4b03509235110e390a9b3551084d355478ea6daebb2503280f5", + "regex": "(?i)^https?\\:\\/\\/eaqrhbraq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "512d5ef0f8e3abefc40345594ca45a5a524bc5099001a7079663f6c2bd0c6161", + "regex": "(?i)^https?\\:\\/\\/eaqrhbraq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6ad5621be8476293c1e245a3d0e94b47593daf547251c10e5c3976677cda9b88", + "regex": "(?i)^https?\\:\\/\\/metamskextension\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6575a113467554e6d67a03837c3260db2f9a9e5ac780ae3af472f660dbd550ac", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fa28905af24bd816a171ba3d19be4dd898a799dcd8db6038cf72367b3be5424e", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5b0716b881389e14566a5542cfe5054c15eb9b5da8820fab79a96677e640fc80", + "regex": "(?i)^https?\\:\\/\\/eaqdfqa\\-xzczaq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245918b30\\-4011d20d\\-19d6\\-4127\\-a896\\-de47f716e104\\-000000[\\/\\\\]+6s3Vf8QpbQQrkqN0LEDBz2hmdzM\\=394(?:\\?|$)" + }, + { + "hash": "f71c339a86b5db7f658a55c856e426c0fdce4a0d1632f0efcf490162eb15a3e2", + "regex": "(?i)^https?\\:\\/\\/hgqrahgr\\-qah\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c0d21eff2c0189f5470f31d15832f0038f1ef6232379865ed4d157315b92d63b", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2e2d7f74f21224c0b4d984eeacfd2fada85673d6d59470d60649dfd6c36874bf", + "regex": "(?i)^https?\\:\\/\\/www\\.quaketips\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e69a2257c26adde1bd105c6b24f10b9c6a91df106776e3128437744f3021d6b4", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d09708062dfcaef123e48cd90ce27659eb8151be1382ec1f7ac257e73aee94ad", + "regex": "(?i)^https?\\:\\/\\/robux\\-fbc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1c72b8fe5a921fe24f7f8d5c4e27046e94483939d9514bab25fdf193e055e149", + "regex": "(?i)^https?\\:\\/\\/gevdqagv\\-aqegaq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "93e3dc99764da7f8721aba6a2181dee6d20eaab43271bc690b51298028a0464f", + "regex": "(?i)^https?\\:\\/\\/robux\\-bogi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fhome1\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "1302045b5e2142f8805b42c9748570fc2fece447b43f40d8020b7762dfe5626b", + "regex": "(?i)^https?\\:\\/\\/dzeaqfaq\\-feaq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a2264882f932608d8edcecdaad3cb40165e43557649948cd16e39e9b3810f566", + "regex": "(?i)^https?\\:\\/\\/robux2024ooc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1419f14b762c23597e23ecd5a148d3ae9481cfe0ad6946e0abfb8ac98cc7c286", + "regex": "(?i)^https?\\:\\/\\/rhgaqqardfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a925f97c48b5febb00a1eabf6ac7d4e01b6e31be293d200fb3ed93461fd7ac1b", + "regex": "(?i)^https?\\:\\/\\/rqhgqah\\-qrah\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "367eadcc73eeac2400c1b58674ba8207e55da83859e3cf8cbffd9c9ada0a72d6", + "regex": "(?i)^https?\\:\\/\\/zaaqcaeq\\-c\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e49954b3adee68d17c0a37abb663c623623bad434ac658f023d584889dd3141f", + "regex": "(?i)^https?\\:\\/\\/dzeaqfaq\\-feaq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "02328bb73de2e3a7ed020b92686634d29463bbab65d2a8628cfba9d15da1be6d", + "regex": "(?i)^https?\\:\\/\\/robux\\-fbc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fbcbfc9d9e86b58afe544ace9d04988ec83ce45e63d45e46e28d540967fd5663", + "regex": "(?i)^https?\\:\\/\\/xerx21plume\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2a48fc1470288acf93b531a2b98a6f0349d832e4795caaf9e8b8c9d9541f0b5c", + "regex": "(?i)^https?\\:\\/\\/grazi21vexops\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ba00d9816f2f8bd33bb2bba4d6bc5ae9e61d9b66213240a40f2bbaeaf0dbf7e5", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c90395cfd637d439b7d5fbafdd65eff14e24a58686ac835a2f5c66f0bdb2ad85", + "regex": "(?i)^https?\\:\\/\\/vbucksforfree23\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "531afe36efdb4c825bd42b8e49fad3f98ec9f7afaf48da5627192a20f2e33e0b", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d516ae2d5a9e84e47ea992a78072750dd29da66f6dc6716b4517b92991beb663", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "09589adafb985b85b24772e26b25e5f0e6e83b42cfa098cc48e162b1e693caf5", + "regex": "(?i)^https?\\:\\/\\/dsadsad832323\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2aeeeb705a0f0598354f4990b1c45d37762a64ba760bf6a107dacd32598b9ffd", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5ed0e4284841043d46fceb8e2132cef036a7cc6222b005e83f27358a77ea1b23", + "regex": "(?i)^https?\\:\\/\\/netidskfksdfk\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2f4e33244ece7ed0eef33b6526cefd6873fdab84172118090930c33c142ba45a", + "regex": "." + }, + { + "hash": "b65adc91c7c6875f2fc4a58bdda4d918e835ead7197a262ae3fc11db7b9c1c39", + "regex": "(?i)^https?\\:\\/\\/sopportohkvcsfq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cc9a177653ff4e3c21c7f3473fa2c71b8e2a60e3f11dc74d0f389e821bd94826", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3004b0858ca763b96aee1f32055799baa238d90ce74b84a7806cefb266f01312", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e3348a6351cef67d86d3952c7b928f8882dad96639269ddcf320ee42a272e198", + "regex": "(?i)^https?\\:\\/\\/sopportohkvcsfq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1c2ee16bc13446cc3908b90e6ad801a2ebc1ed8f072f4931a2257e445ffc4165", + "regex": "(?i)^https?\\:\\/\\/lamisdkqsd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%25252Fmassive\\%25252Fseguro\\.html\\%253F\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "b8f2a7421dd30d9690c674bd8b33af460d588aa9dc53a92525811ba104cbbbfd", + "regex": "(?i)^https?\\:\\/\\/lamisdkqsd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "02367bd91fd2e7192a253eee76c97dd9a23d91380368fdf945285c4563280f78", + "regex": "(?i)^https?\\:\\/\\/vbucksforfree23\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e8b9e3045d2a14b2635de3e68ca512b7a48df2964b913c97eebe6810e3599a4c", + "regex": "(?i)^https?\\:\\/\\/update\\.coinbaseaccount\\.157\\-245\\-136\\-94\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "99994c0a32ce8f1cf0249fe93bfdf39badbef8752d4287e9aba5a611b7412505", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "71735cf9a62ac5d6443cffe3a0681c1109a289f37e5e95f2ee2b6ca180cbea71", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4e6826100892be29691f92d27e2a22094fc740bdd228d0b463aa0039e4c0c5a4", + "regex": "(?i)^https?\\:\\/\\/dsadsad832323\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "749ad3051f2be3521f8cf2a52688b79e5ff3ae3b05ccf7a62fa4efb3ae4c6683", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "dfb72f93692486da24aa5ac40981f591c854d21c655751769d95fea7cff768e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ee2eec0fb58bde2fd032795ddfe21fef7b3f3089c6e49d536cf3bde71e0dd624", + "regex": "(?i)^https?\\:\\/\\/meslocxvkxcv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "01e3f2f2325e0b873d88a0430e5bd2f452d36547607319b4c7f49d707ffb8f79", + "regex": "(?i)^https?\\:\\/\\/netdsifsdfk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "30b81ac3e2a03111f18bbdef116e0aa3cf2e9fc0cf5e1ae516df60b9391e9f04", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "79da7b84e1e603eec881e1aea6ff7f8bdb483943e37a111502c46562fee98ecf", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "914db4c6c8349dd80d2810688b9a83fe336621f5918236c91148e5611d820210", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "59575f90a5373d2fa2fb71e3879e7db1cf704a7e8ebc323fba9a4aa88097d7fe", + "regex": "." + }, + { + "hash": "549c7409e254bfb1bc89831b5b9cc0dbb8a091c00ad04baf49373154554a1c83", + "regex": "(?i)^https?\\:\\/\\/dsadsad832323\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8c01e28b265e74fcf8a5286901775bf73bdac1461656eaa510e491bc56c69cc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UP[\\/\\\\]+app[\\/\\\\]+track\\.php\\?querry\\=\\$rand30\\&req\\=\\$rand50\\&s\\=appload\\&sessc\\=\\$rand30\\&stp\\=s1$" + }, + { + "hash": "5da2f1cb2847eb2d9a223743ec09010b0de38fa24f149e2c4daa1343de541a99", + "regex": "(?i)^https?\\:\\/\\/netidsfsdkf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4c7f1b980840a58bee9c1b63be4f92dd8e625d29320219154e86e7390dc5739f", + "regex": "(?i)^https?\\:\\/\\/meslocxvkxcv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8621c4361809bf16013ed840b598ea6812ddeed1209b16a5993d18f80b1dae09", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "88d854a8490d2bb03d15bd397f59dc2dd94bf4548791215b1ee4485255480aec", + "regex": "(?i)^https?\\:\\/\\/netdisfksdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c45f216ad03c4af78919274c9897dac2f72e3aedc18694235338ed4f5ba14fc7", + "regex": "." + }, + { + "hash": "f16818c558d123f43771ba1098caa93e41f0456a203d2157edf8d80fe33b086b", + "regex": "(?i)^https?\\:\\/\\/vbucksforfree23\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fa65d7c2575fad3c044fe8fcac518689e1bd704baa3f7ca762a6f2a273800412", + "regex": "(?i)^https?\\:\\/\\/dasdhsa8323\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2ebef0919a78245989794427aa6b12676e956c4f06433ce1c0aea7a598d49b3c", + "regex": "(?i)^https?\\:\\/\\/amdvgsdlfsd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b65a496fba3d02fcdf112fd870300d40a8282d1517e847da5ad0eae04a1a8007", + "regex": "(?i)^https?\\:\\/\\/amdvgsdlfsd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7e9e6c1c399c50c25ca1cdb85889f6e0d1de3deec4d0f2a9580514c1cc19da61", + "regex": "(?i)^https?\\:\\/\\/isdufisdjfsdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "261321e10031739de864f3eb5df50e6dea2f3b4f355b602b1e2d8d188a6fbedb", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "546c72eba3ddc4600fab3244d6ad73226477eac450b8d19c6cfa25fa5e134037", + "regex": "(?i)^https?\\:\\/\\/hdskhgfbhf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6bb3fcf8975e132bd6f8000f5d85e59e6a03f36893f08c150661e37b803f5d70", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "04cb6d55e8608c0a0529c0dbf0b917b1e3e98656af54ddf706787b464e0fe78d", + "regex": "(?i)^https?\\:\\/\\/sopportohkvcsfq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245946ce2\\-5459929a\\-2e76\\-46be\\-bdef\\-aa68c904915c\\-000000[\\/\\\\]+oBodq_gjSlXFG8EPWb6_w93h\\-ek\\=394(?:\\?|$)" + }, + { + "hash": "27bb967ed7581b2b38939cb2dbe1af7a9b88b9cbbf6bd7228e8372c11656c436", + "regex": "(?i)^https?\\:\\/\\/netjsdfjsdjfsdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4b5293d1fece32d41e8d26bb140d279a244b781663a3373a7b663379f44e6178", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9421b4e78dad621eceb113415758367330aa0a87ea4ab83667ff87eb029ad050", + "regex": "(?i)^https?\\:\\/\\/maisskdkwsdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3ceb38f3ab9eb00bf54e3954df892c1fea1b31c4b6f386dfba2023b92adc9787", + "regex": "(?i)^https?\\:\\/\\/netdsifsdfk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "178d132a96ef405fa97b670ee5191a62e94a421b2d091f30d514cd4715cc4b11", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "aee47b64bc0d7be476c8c26f03cded4247e72f05b251b7254e71541fdced04e1", + "regex": "(?i)^https?\\:\\/\\/dsadas111\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "341195ef50865daca3c21f5fc2e984e104e1db5cbfad7f3f9f80d74454e24a3d", + "regex": "(?i)^https?\\:\\/\\/netjsdfjsdjfsdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5b0b6ffcf7c9f2739b51788a6c708e0aa5a49a879a054b109458e3a1aee295df", + "regex": "." + }, + { + "hash": "00c9c581ef90a8f126007ccb5be9c13e747e31ea76f8a8fe290640c1301a3e53", + "regex": "." + }, + { + "hash": "75abceea4ec5321dc49bc0af1d7b74f78abfc9709bcb02c41b60d1a5d0ccc36a", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "32db4e43f056f22cef9df7d126d5bc23a3ede0e3049a08210901c9739469fd91", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0757e817471d7ab6e8211656ef32e77b66071dd4868c0ab9e47d664dc2f81653", + "regex": "(?i)^https?\\:\\/\\/meslocxvkxcv\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "61f1e72e0cb27729e32eb2dbc91af7c65255d879c3c6a9182541c7e94d5585ee", + "regex": "(?i)^https?\\:\\/\\/amnsazka\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c5ae73b2126fa3f76afd72d09dc49ea4d7124eca565a6002c721dbe5ced3fe47", + "regex": "(?i)^https?\\:\\/\\/vbucksforfree23\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b9d9212aeca5bd186a813b99c719324fd65a03fee33a68539651695d87655d9d", + "regex": "(?i)^https?\\:\\/\\/amdvgsdlfsd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "80c1ec8417e71dae95f344bf21291ff48344a9591c230603c7c788b1961136bd", + "regex": "(?i)^https?\\:\\/\\/meslocxvkxcv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7d037b9658c50002e874aad883493fcd825aadbbd239052c0396043f5bc7b9eb", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6edb798bd7375ac20e71c8a11375f8bd6e9fc819db01852cbe3aba93552a2fda", + "regex": "." + }, + { + "hash": "75264fdd62a3a446c84855855e8d122b412d214a38fad1a1cdb50cd8972ac61d", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e8cce282227b7300f3efb4e2d916d5c978253915297bf889796e6f3147641609", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b41d69d4b68fc69696c0f5892245b11e7afd63e6ca1484a88062784050a47f25", + "regex": "(?i)^https?\\:\\/\\/hdskhgfbhf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a6bf11745fb7bab6de3352881d8b2084376579cf921be4de4cfc4652bfb6ca94", + "regex": "." + }, + { + "hash": "09e2030c0a224b9935a265068220af36bfa8a18fd3d6167a15ec79a340a05ca1", + "regex": "(?i)^https?\\:\\/\\/netidsfsdkf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5ee0f74213cf6edcedaef6cf33343cf63377e89fd3179d5e9d8e3f5077982c93", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "abdd301289c191caa319ec5e25a932a7f6346c0cddde648d233a6cafaca910af", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e9114a77065b025b26b976637ce6a986b4f36d2ff7fd3154ee51144a6854a6c9", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "acb59a662cf30ebf0bdf2dbe327e9961310f8f7e4605c7ac242b6789aa39ae2f", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d436816222946154caf0785c2ba74e3fd4f90828922e9a52d32815656e203f6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "47606936b46773155867a559b52cef5ac83276cfd0b95bacf843d763676a19a8", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0889e1b3ea750e30d35a230a56bfb15ba8297b941495353825bbf9cba5d8ab83", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a8728c11c8b469b2fc2fd7d9d4fd12268bf84b3a51e66f5d4b95b4114cce9a15", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b27715608c0a8bd003446906e93e74e80b3b4dddb6c74f354c59a68c057989e0", + "regex": "(?i)^https?\\:\\/\\/amdvgsdlfsd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0c327ede68195eef9df4306a6d777697ca100eb32553c7432d6892f502914e4f", + "regex": "(?i)^https?\\:\\/\\/dsadsad832323\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e8e42b4886ed94775cdbee4b4b654d8286bfed0f963aa09f90ea64c5cb888756", + "regex": "(?i)^https?\\:\\/\\/lamisdkqsd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fb0208f74220d44690d9d4491c271454b9fdb486533005e932344976deace72e", + "regex": "(?i)^https?\\:\\/\\/dsadas111\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?ex\\=zeotap$" + }, + { + "hash": "dd6949ca43836e6b4b3b302585ce9038935f26ac17b905deec6f7485c60205d5", + "regex": "(?i)^https?\\:\\/\\/isdufisdjfsdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0973f28031399afd489de75b5987651b41924cb5f141bb8632256bb4648785a3", + "regex": "(?i)^https?\\:\\/\\/amnsazka\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2fee11a51c753f32a36e4198743ba050b36be385e98aded998cb41566444b46c", + "regex": "(?i)^https?\\:\\/\\/dasdhsa8323\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "71a8c8fee8d9b0925a5b171bfce8b8ff09c945a76f850b691bd8be5a548794e3", + "regex": "(?i)^https?\\:\\/\\/netidskfksdfk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8232a22db445f7e28cf5d7364492ba1da0439bfc28977dd6dd6c8d7a105b8d0e", + "regex": "(?i)^https?\\:\\/\\/amnsazka\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8d1c5455df34affc2009e6da5e49239d2a33bc4d0105dd8b3f7e5a95e79ba25e", + "regex": "(?i)^https?\\:\\/\\/amnsazka\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0ef4fd50545f93e4404cab997b1c8f64fe3d5d3e98799b60292aa4800bdaf018", + "regex": "(?i)^https?\\:\\/\\/netdisfksdf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0c32a8415bf7da66cefc055561a644b856414d745e6572260b0760d5c747bf04", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "33cf6990d72fc74286de66d8054f7c6214d731301f05d8210b8196190efb3e20", + "regex": "(?i)^https?\\:\\/\\/lamisdkqsd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "dad6a6ebf0f201500a473d6ab8e3c8945f1c87a2fa3c445f710bfcbee60b8568", + "regex": "(?i)^https?\\:\\/\\/netdisfksdf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "736345a0b89f922474fcde4fc5610ce76140b01f9fd0716710ec980c0f1f5c77", + "regex": "(?i)^https?\\:\\/\\/netdsifsdfk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e97f468f68bbaf95b2ad5bd51ab2d11755ec8a199141b9d30dd75e06f179f857", + "regex": "(?i)^https?\\:\\/\\/maisskdkwsdf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "df684acc31377ed4c234161ea7a4fccff8466e130403886f80daf78fa69ede07", + "regex": "(?i)^https?\\:\\/\\/netdisfksdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "65d0e11d606817234bfaf311e9a9c7cf8fdc8fa84e732cd9236e6b9d1bd518ca", + "regex": "." + }, + { + "hash": "ad6adfe6d5b6bcc033489fd0b808c694d41188933b3b97a8f63f2eec2e39f7a1", + "regex": "(?i)^https?\\:\\/\\/sopportohkvcsfq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b75ba6df5417cfec76452c4a265cf450f65695e4639b9fbf904fb51ba325fac6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b28ab2f6a6ff021f92e42df26aab46f48cb38abbc755221fb50db9568bf6e011", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e493089316a86729fad6926571790792b938f5feee04a9f6970c1b30a8d952c9", + "regex": "(?i)^https?\\:\\/\\/green423557\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "f2d21db8582688c58f168f783ea77a275d3e61eaad491f7fe958c2d3fed43dd5", + "regex": "(?i)^https?\\:\\/\\/netdsifsdfk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6eb04314ad0bf551f60e82882e64859855d88bbeefd1b38ef7691fbf96b1f825", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c045eb0a54c02070a5988a21fd61d1b1534691a24c2a159c2a7fecd457a5be15", + "regex": "(?i)^https?\\:\\/\\/dsadas111\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192456c9292\\-1a64453d\\-9838\\-4cdd\\-b5db\\-6ada0636118e\\-000000[\\/\\\\]+PD9bSUIiGp6QpZH\\-gadizwCuk_E\\=394(?:\\?|$)" + }, + { + "hash": "36d7df74e65b8ec022109200c73e869f027e8b4fa25ad5b511b7ddaa6627fc6c", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "650529d483f2f4d28e74bec642d37c2a9b55a5593ccf46661033a79bfbf01bf9", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "78c779fe7730f50da746a2ca949940665035c57db9e26eb4adb03703cccae9d7", + "regex": "(?i)^https?\\:\\/\\/netidsfsdkf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "84a6fe3e55bb7e9a6219fb845dac1668d588449ce3227960b9e870796b7d0f3a", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "676e20830a5646bfbb3a91dfa0452b694756753239d0c64630dc73ca9d4c4dba", + "regex": "(?i)^https?\\:\\/\\/hdskhgfbhf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3c03119ed1a63989a174aab994d4faf542735b00a163f7a32a0316dab1b176a2", + "regex": "." + }, + { + "hash": "7a3763e23f9a4332bcde1c0623c4be4e99d0297adbdfcf8f2caa492aa9ebe4b1", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "624a0a0b86bbc56f337fab13a632e2f9706d7af6d075f1470b3785bf5a62f41f", + "regex": "(?i)^https?\\:\\/\\/vbucksforfree23\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "05e5faa9d52c5d4916c4db044d439539d8bb7c9ec1454d95fa4cbf7435a1bc5d", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3b6537a2be8771b701c305cd894610d43c075c533eb37c4904215b29bef940d5", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3da186551b338203d202827a3dc6cd6d1d7493b190b020b3e6fea0bbfb050237", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "94eb28b6fc801a38158ee7a20456fb83e2eb6241f722b1f6080ae0ee373e48b4", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "be4b8998c3b7a2439bc8020f63b24915953ef6725125d4116496591ab79d3e9c", + "regex": "(?i)^https?\\:\\/\\/dishapatel1235\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a12480d09d0bf4a10b92e29adbe01bd57c710b6f926b021090b0869db23dacd8", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "eb63ab92a8acef5e9b4e8d1fb2890fa23ea1fa3b523bc91e6c9de229b6550f76", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f574dcec878ff25f992fcf7737fbea5791ffc92f08f2ee692627150e622ec60d", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b6a86310776f2f1f465adc35daefc8f908080ba1128e1fb42d9a4bbaa006192b", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "617dcca4741d708323d7ca18fc5b3de26b44025a8d55ddff153e83d1e4ed8ff9", + "regex": "(?i)^https?\\:\\/\\/meslocxvkxcv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "76ab82223218815c11c930b0c5869b785feaa0fc35051a2dd5ff38e2ca8661cb", + "regex": "(?i)^https?\\:\\/\\/netdsifsdfk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "653885ada3d0775e76d88a1d1a1d0b28407a32387553aac0ed139c22170fb6b7", + "regex": "." + }, + { + "hash": "52e1bc8c09b572e00b267e6b68a28011c64d15564414d6b3654ede10c0fc3e49", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3da1edd50f38c57f52c7221da5d09785b8aa4ea218123ec8bb162bfe9c66478e", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "72a41b8a8bcb95595e790a9623930cd5f97a31ea1595345dad331425a626899a", + "regex": "(?i)^https?\\:\\/\\/dsadsad832323\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "78c7935a0f6f875eab94652887abc897c2390cc6e3318336ecaae2ad9ddd900c", + "regex": "(?i)^https?\\:\\/\\/dasdhsa8323\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "78c5050df2d02e53e454b8634f2bec8f379423248dc1b3dd5197d5aca98da555", + "regex": "(?i)^https?\\:\\/\\/meslocxvkxcv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eff40487cb1fa5eb796e6209383b5d740779952ded5b0048551e3f0587633455", + "regex": "(?i)^https?\\:\\/\\/hdskhgfbhf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "dd23b2404f32380abefff70b5e420796a4c9bf0e2a5454dfd46189ec7e987fb6", + "regex": "(?i)^https?\\:\\/\\/netjsdfjsdjfsdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "689695aa0a87adaba6904df3eaa8fd3d90cae3a58bb294342b69eb0ee1e3dcd7", + "regex": "(?i)^https?\\:\\/\\/amnsazka\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "77d96a6b4a900573f826eb01652fba74907471e2503c42a55d3bf59ba8822873", + "regex": "(?i)^https?\\:\\/\\/vbucksforfree23\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "79e2256604e2f00853bcd1f507083aba8797e75f63050b7bdeee17418d06e6cb", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ed1fedb6b8e0bc1e50d5723fb6c394e5bdfafdf57af535addd069930b27b64e0", + "regex": "(?i)^https?\\:\\/\\/dasdhsa8323\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d760f70c5e5a556d407a355c219956cf29d49af9daf63b877dcd22db2f9ec3f6", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b33b56a19e9e7746571d4123c6e9a3304a44f21c5a1ec49f225b6fdf64c96410", + "regex": "(?i)^https?\\:\\/\\/dsadas111\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "53231933c94434567a29d1e2112820cb1e9febfbea0523bc99769705791621c2", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "91ab2f7b3c23a15177c611bf64bbd0b77f1777721ae59c4946c476132d318702", + "regex": "(?i)^https?\\:\\/\\/dasdhsa8323\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9c8e735123ff64c9024f214695a776f130d857d9779334440c1827082045f78f", + "regex": "(?i)^https?\\:\\/\\/vbucksforfree23\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d621a6b0e9ab2ec4bfa3c535ba189b0c6907973832a30ed3d3d21d4287d77c28", + "regex": "(?i)^https?\\:\\/\\/netjsdfjsdjfsdf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4c3d68b3157f8b11feb2f788bc45d5ab246e0d3501fc300ffe74307bce0e896f", + "regex": "(?i)^https?\\:\\/\\/netidskfksdfk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "26b2217b748d0a5fb3153d9afaad0f79fea297cb2c677259e82976ce5261511d", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8d59295c4a9e72de175d918bd754cfb15f16ca4f522721bb0683885c3240a6bb", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6ce6d55e703509dfe265e80acf1d4cd970ba0119b0f693afaebc40407439affb", + "regex": "(?i)^https?\\:\\/\\/amdvgsdlfsd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "78d5d243fd55ad401e6747eeafcdf2f866816315f643603481e50871781e54cb", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "558df8b8877bd8dd372302b872c1cb9d6c22692ff046be0302f21d9c36369544", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "85f2a3955eff04e648028b24729a90bc0557411bcb80f47de3cc7f90ec488092", + "regex": "." + }, + { + "hash": "48910f5c16e35b226b72f5b6f3425d709bc832c844f3e12f296c98093fa95d5a", + "regex": "(?i)^https?\\:\\/\\/maisskdkwsdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c6c27239f4b6ba54933962437dc65df7fb83d783c657472aa4a2c9dfa9f155b0", + "regex": "(?i)^https?\\:\\/\\/amdvgsdlfsd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8ccdb5662812a0b1edb720d6905ef90be1b96cc2a8d7f6eac02e87d7ca638f94", + "regex": "(?i)^https?\\:\\/\\/netdisfksdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "10db2c6ac0a2c67917b280ada8e5c8f5d4dff97a5cdbf8a2f8ea42d7f89662e0", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245946ce2\\-5459929a\\-2e76\\-46be\\-bdef\\-aa68c904915c\\-000000[\\/\\\\]+8MAaTT5ZVu0ozu\\-EjWtaKEB613Y\\=394(?:\\?|$)" + }, + { + "hash": "de23053a51aaf1a998b1a0c8f515cebe1c3251f0165d44336a0b8bde6543e2d9", + "regex": "(?i)^https?\\:\\/\\/netjsdfjsdjfsdf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c14de68196e3cd7471ece94ba039bfe612eec6879f15f00d689b28a1b46bb1a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "471701a41a3d28aec4ad34c1693a10782c7c056b45bd320fe548453ca151b4fe", + "regex": "(?i)^https?\\:\\/\\/vbucksforfree23\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "969920af74572043970c5ab4f9b5b68f5b4764765816873b208db2e9870f25c1", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "446f353c5b0f67dec9f57546bbbfdcb9a7b723837e10a6d90d3f33610ee3a083", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fb09699d4b61b56d10fa7b11103374db8d495a0d5f06e1d40182cbb413de2aa3", + "regex": "(?i)^https?\\:\\/\\/maisskdkwsdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f401a626b3670109d990be3b9c8fc34d853a4f7300a9c0f9270baf7f496ea494", + "regex": "(?i)^https?\\:\\/\\/maisskdkwsdf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2495d7b3e0fbcc4bf7b89c922772a044bed1ef6cc783ecc2db09a76fe469564c", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "aa57af9d6fbfb25e628f1e82a5f62428201e3c66c30addfa50bfdbe22f474702", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9f1fa5a36d2db23769075292276d1790a3640b704697fbd002040c1d9c07e73f", + "regex": "(?i)^https?\\:\\/\\/dsadsad832323\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "31c3e5bd484929308d2b3e8619a3a7a04820dec5bba205d8400b1495efacad4a", + "regex": "(?i)^https?\\:\\/\\/lamisdkqsd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6af8874c5b2ec907908e643cd180de4a61c2d60095b497dcfcaa46956e64f3bf", + "regex": "(?i)^https?\\:\\/\\/netjsdfjsdjfsdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e4cb3b5ee4dddc8bf497d78e0f927895bffe1b70d77ee39b50fd8ce965b5b996", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d3cb85db779ed6abdcc8ba55680f0a440bcee12efc16968d69e686cef14078cc", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b460a4a4b61e91a3bb7b6c64abcca094e9b88011536b9d91ce51278d4c6756ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f70e054a72ad3fdd770ad4c1ccbe9d6f19806d848aa0f4ac89bdb264d947b061", + "regex": "(?i)^https?\\:\\/\\/hdskhgfbhf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5c12ad3ea267f0b00411406de4018d12b231f897d30df020a153d95a3923f96a", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d15bd7406d35d8b74a2cd10f12b2af32628bb3e17eb6a1b0f15a2be5b92eef18", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "641bcf021054dd59861d7547953ee9452a09bc93ec5f4259fded00964848d245", + "regex": "(?i)^https?\\:\\/\\/amdvgsdlfsd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "041e3d2a4e08664c91e544ed5e3811d439440450cd91e5aeefb95cdfc3e969ac", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e1a5afdcfafa442dd8ed6e04c13e23ffcb92708514751767473c548fc41b55a1", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a73854344b0d08b48206f2f2cc4dc3d680d1c48d233eb81c862a1d8809bbfd13", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "041f46717faeb14c85ec6b8d16bd8cfe6e0ae94d1d00d779b905e04007eb7679", + "regex": "(?i)^https?\\:\\/\\/lamisdkqsd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c7cf17f7171bd1cd0e018aab4141d3fb749d010566b5486fac2dbf0988ea1133", + "regex": "." + }, + { + "hash": "da199c88caa38dd396ce9e75e980acf90b272e4ad28fd395a7cbecee970e956b", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bf0ca5dac4245db306b75f80b857921af5c61b94ec405018c2a36150cfbc73aa", + "regex": "(?i)^https?\\:\\/\\/netidsfsdkf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "155bfb5a5d29d772cb8626e4752b103d6a72cb6a1edb6c88e740435a006e49fb", + "regex": "." + }, + { + "hash": "c8ac84bf26eb41d0ed369df2f0683b259ab9ce5fbee0db26fff68db3b10656e0", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bc4be0bad0e7de5e1513d9f85f767c5e5fde467df6e2e072a1ddc2246496ff63", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9d197f81b4ecc3352f089dcc8eb6dc08671755436e61d8214e619eb566cfa50b", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ecbee448ee610dc9baf7c5ab54bab2a06655a1c51c94192aace68e7df452e646", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "651f23fd736168e71d7876564b6b9544a4443e830675c9e559140a4fa697941a", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1aae46b8a47204135a3775cd74cf093c5cb2c0399426ab46a15d6e0435683723", + "regex": "(?i)^https?\\:\\/\\/isdufisdjfsdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "86c08909348768594f5b620bfdeb6b243e883dcdf67edab69a643df9482ef1e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+agent(?:\\?|$)" + }, + { + "hash": "c83dc98f1a2c121446cab8174bc9be6ca1e8b6fef7f0c13d8e819955fea5a19e", + "regex": "(?i)^https?\\:\\/\\/dsadsad832323\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0b18f4ed6fa8523fa172b7d8e52f8cefe7cd59dd4cae9a514a65f07a98507508", + "regex": "." + }, + { + "hash": "8690e8abd99f544f21057e848ec41a12c62b97c84c0236c256875556dce338ff", + "regex": "(?i)^https?\\:\\/\\/dsadas111\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "36f3bc3cb5b917c3b753c4f0e4fbe20fb26593f73d3e50e65cc5841fbd950338", + "regex": "(?i)^https?\\:\\/\\/netdisfksdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "70616ac7e51ee551305237fe47b18f0caf1f3b0a154c5a91cc8c34282be413b1", + "regex": "(?i)^https?\\:\\/\\/sopportohkvcsfq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7d10661c8ed19e30e53c279eb96457a14c453c21e104c75582b5ca5e4fcb4583", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e46a4ce76fa250307b75f75070a5c2b948c0ac8b12f839e8bfd6419d8e63787e", + "regex": "(?i)^https?\\:\\/\\/netidskfksdfk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d46adcbd74066ef60f8e8c7e242f8ff47e12948e73cd535b57ed647e99232e52", + "regex": "(?i)^https?\\:\\/\\/netdisfksdf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c2bf57a812be54faed68c93b1911076952d73da360aa9dfcd9e0f1a6fa1b7dbf", + "regex": "(?i)^https?\\:\\/\\/netedsfdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8f2d67babf0b238401332d1d145b23a660c2f79d1eac500cc51901d3659b3947", + "regex": "(?i)^https?\\:\\/\\/dasdhsa8323\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192456c9292\\-1a64453d\\-9838\\-4cdd\\-b5db\\-6ada0636118e\\-000000[\\/\\\\]+vkcHBvH2PaVtj6KhhCitnCorsRo\\=394(?:\\?|$)" + }, + { + "hash": "77ff9cf02be19ccde3734868254b3cc03c5a31784fed88bd0358958454734bbf", + "regex": "(?i)^https?\\:\\/\\/dsadsad832323\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "201572c7c6f4ab5577599810036e4d742346ffa66c2420d9a08469c1f90573a8", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1d9784732a2280ff04c944616db017c86c32b14bfa1aaafcf9863cbcd61c7645", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bef303aefac55b587112393c10214029a226510110f6acb9439a484626702bfe", + "regex": "(?i)^https?\\:\\/\\/netdsifsdfk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "dfb72f93692486da24aa5ac40981f591c854d21c655751769d95fea7cff768e6", + "regex": "(?i)^https?\\:\\/\\/isrielosil\\.click(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "9677bb235ccb989b246c7222ba0a0c0c950e34193ca7cff2081c60281ca3a288", + "regex": "(?i)^https?\\:\\/\\/vbucksforfree23\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fevgeni\\-plushenko\\.com\\%2Fveryt\\%2Fgrace\\-domain\\.html$" + }, + { + "hash": "887893eeebcf705e781fde8f2c48e708a9b22d05c324691c5251bb4b0f95850e", + "regex": "(?i)^https?\\:\\/\\/amnsazka\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "766513ec79341bd125013e12fb37a9b6094610da60cf363dfdad8ca4d73302e0", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b65a90ce91c185d030ad58da38352f46b08cfed382d5a5d30dc3b0becb34a728", + "regex": "(?i)^https?\\:\\/\\/dsadas111\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "18f1f2aaf19127dc7f2033bdec0607723148dd93ef4a7b53d05f7cdec81f666e", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2a7860e36ee8f75539f273eb620c96b0f94ff01017503f3aecfd4560e84ec8fd", + "regex": "(?i)^https?\\:\\/\\/amnsazka\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4c7c1493e1b64811f1fe8a206db8f4a9d3e826a3e36bd84b105ffb8cd9f97a8f", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "edcc11cd84b06364d37a66ed02820effd2457127109a71b006614a5a52831931", + "regex": "(?i)^https?\\:\\/\\/lamisdkqsd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b9fea34c08e74a189bd2c74f32f9c38cc69d005ebaf05ab779d22cbb9f9c61bb", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c974bb9341a3ee9c178899e0db4afc1e047bffdea2fde36d8bff1daf5725384e", + "regex": "(?i)^https?\\:\\/\\/www\\.link\\-swisspass\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2834c3715cac884fdb6a0585f31cf7dc2004afe1cdf370ed0a759527b81f5bbf", + "regex": "(?i)^https?\\:\\/\\/netjsdfjsdjfsdf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b2df87aa9a176c18d939c6a4a53d0422a49cea96a9641ce231c9e92f4963ffb3", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f4a18d2e276bbbcabc664180d3eb418bfcb29c1a25297189d8680a534fe8771e", + "regex": "(?i)^https?\\:\\/\\/netidskfksdfk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d58e015a1600a779ef531b6033fbf99c6d38c882bb047f38b7e10335430d4139", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "93ae44c94ac7954109a62bcbe3239f59e386d0a2b7ae7b3b8edc5c27c878348c", + "regex": "(?i)^https?\\:\\/\\/maisskdkwsdf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9a4751dbc2543cb2fb378b97b652d436fbc70c4a18f0b3077d7a32f514d56d9e", + "regex": "(?i)^https?\\:\\/\\/sopportohkvcsfq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "995dce28bdc66b986493efc255cd884634414b603529dfc2832806d3fba49e91", + "regex": "(?i)^https?\\:\\/\\/isdufisdjfsdf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "be25fea8e9ff65e1b6c5016760c0d0bd88f8291e42064b6967e0c92a160b7455", + "regex": "(?i)^https?\\:\\/\\/hdskhgfbhf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f0d77c5266e838023c27f1fa0840618de0de55ad37e4901eaa860c0d3bb7c625", + "regex": "(?i)^https?\\:\\/\\/isdufisdjfsdf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7a1a0d3b8eeee9a82234afb89d854d6a51d4c6f13cbef1496ca1ec2e5e14142b", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "845f29af610509f94eb90ffa749ea9b2191735faf36cf9dd7159c16c4ad6d3ec", + "regex": "." + }, + { + "hash": "670250614ccdadeb9b8376f6bba9ffc48d6a14cf2c6f581c51732f2cab490b1b", + "regex": "(?i)^https?\\:\\/\\/hdskhgfbhf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "90d232e20f8a0c4cc29eb50176270326ffc59662d75ae72446a394b9147def17", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c4e75b4a34820b8291840120be2053a94469a9cf8e19a5929d85b8d413fcf1cb", + "regex": "(?i)^https?\\:\\/\\/amnsazka\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d8b93a60da14ee2c34633433a6b778d607387ba1c8e59a3cc970c48be73d3591", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5d2d685ec50e61ad89aba7f40ae16ebcc8e5970dccd901c86e83343bac7aae49", + "regex": "(?i)^https?\\:\\/\\/netdfisksdfksd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "afba819ef3c2421ce89def68aa4cfed9bcc4ff10b7b8c5bf1f511e25fd67be1b", + "regex": "(?i)^https?\\:\\/\\/netdsifsdfk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "86c08909348768594f5b620bfdeb6b243e883dcdf67edab69a643df9482ef1e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+751a2f582c54010703010a17(?:\\?|$)" + }, + { + "hash": "92c5cf4bd07377bb4aa2146c748d1eab64afd991df00d2d9d95261f6401d73bd", + "regex": "(?i)^https?\\:\\/\\/netdsifsdfk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "24aa2a1c044938a6ffe480967982f9d9c280373a51b9e020fa6eec6ef8ed69f1", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2863614731dc9a032e9cfb3b5f1c1caf60de79139c028f29e1fe2e248bb68e71", + "regex": "(?i)^https?\\:\\/\\/lamisdkqsd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "327eebd78ce632f1bd90eef9045f7e39d7d9a017b65d9ea19cac09c505dd9cd0", + "regex": "(?i)^https?\\:\\/\\/amnzada\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bc071af89d43429eaa672618e6b7d4479721192df853bcf54f8475ec26773a9e", + "regex": "(?i)^https?\\:\\/\\/amnsazka\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "96aeb00192ac00b86df4787777a2c83b4a777ab0e7bc8921c6005685539b9569", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7a8083d9c38ca7fb6e7665545acc86d262493e65e452dba79e43d9403fcebec7", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "aa096175d828aafbf5db16e605e51d5cdfd03046033e3b2c8977d8135909a2aa", + "regex": "(?i)^https?\\:\\/\\/pelsdfksdkf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "96fd31bff4f01160090cb0e05fbfbaac23ab954a14e5ba54923f9ef964319b75", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6a72a95006ae7a68d9732a1a49c8fdae8af53bdb5e026793f4c64093293f81a1", + "regex": "(?i)^https?\\:\\/\\/netdisfksdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b471d61c7ced2f3dea9ebbe3ec79814fb8e59ba7f9b7d3125b3c9276f3aa3c05", + "regex": "." + }, + { + "hash": "0463579091f92d9ea12c0b3e2db964edce3cb0f82f949fa0afb4c5ace4a500cd", + "regex": "(?i)^https?\\:\\/\\/meslocxvkxcv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e74962d0917bf30c8475fa7b5b93104ac13e8eb48806bab7432ee8de17d3e257", + "regex": "(?i)^https?\\:\\/\\/netidsfisdfjksd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "230c18a11ddbf22d037069b2b2a1ec744eb9c087e74d20af2fd53d31e1adf76c", + "regex": "(?i)^https?\\:\\/\\/meslocxvkxcv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bc55e64f414f0d4dcaedf3f7316181299a9cbcb503e0b79e796ac6064b13a173", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e24e007b1a0aa53c78433e1b80c622d0ad00f3822b04abd36de3ad3fb285aa10", + "regex": "(?i)^https?\\:\\/\\/netdsifsdfk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c53bc2dc7b88299824675d9894d566019c05657b89179b43e491782737a1f758", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6973879165ee5236ccec22b97ec59bf104b4de7838b9788f0630c9f6e07b2950", + "regex": "(?i)^https?\\:\\/\\/lamisdkqsd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "65f67d9963ce88fa4d869882073114f012e087ab3ffb9088120f4836b195499d", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "be304c2baf1caeb627ad11299e1d85116dcc0443a99dd85706bd3551ff225090", + "regex": "(?i)^https?\\:\\/\\/netflix672login\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a9a46fe9f73d24235b59c666535ec1cfc87cff546a30efdc1b757d67480fc0a6", + "regex": "(?i)^https?\\:\\/\\/isdufisdjfsdf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "428ee9af239094d67ce670217e5b32c1628bbf022ffb7e270e707b58cddb8269", + "regex": "(?i)^https?\\:\\/\\/hennsafaple\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ec1cfb0b2eb2ca9fdc4ccd1de02ee29de1cde7ecafc51b7810c442ca3d059ee3", + "regex": "(?i)^https?\\:\\/\\/dsadas111\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2863883ed2d4e9569f87e41dd74803c7d83b2c13afdd7132e5b79d6c0e5b280b", + "regex": "(?i)^https?\\:\\/\\/dsadas111\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a941d33bff36b870aec87a219ecbab1f7e69fe6877dc018d9b95cea304b755e7", + "regex": "(?i)^https?\\:\\/\\/dsadas111\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "99a9d5e76f887dd2eb0ee2cf5e1d80124aa38a8b581fc8d6c460199d1666cf4b", + "regex": "(?i)^https?\\:\\/\\/sopportohkvcsfq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "95165d1b36f256423f8c5d586609049dd46c1f5009b955dda3b8fb55fcb8d936", + "regex": "(?i)^https?\\:\\/\\/meslocxvkxcv\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "28b48bf6a5935068741bae5af34931dfd693e7cb2a39b119d9c61dc637b69832", + "regex": "." + }, + { + "hash": "4d3d5d5d66de2e75103d278bf5490c3b9f1300e4c62be6db68e53330c8197c19", + "regex": "(?i)^https?\\:\\/\\/paulo22222\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bf93ebee67a1de5c4e5ef17f17d05fb621fa919c274e25c26558a3eb1659da9a", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "86945974e8dc7df2e8235a11374acc673b2ed83c756350faee63458ec33ae4bb", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a078d5504be0f801adfdd975b6d3cb28d0b1d67ce919bcae96339b343f4c32a0", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fevgeni\\-plushenko\\.com\\%252Fveryt\\%252Fgrace\\-domain\\.html$" + }, + { + "hash": "bdd54135172379ae29edc095b6f1adfcf53a522d401626cdaaae7bb4c1e68f9f", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d8b4eec74c2751c19cef94712a6ef81785dc2a8ca695440ded3e39b359475871", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "84d43d6dfad573a325991ab71b11fc23ce31f22fa756732509043af402bb8b9a", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4e5a43e9f4ae5e67bf15d4466acde809a77a152adfdb5e3ff4d44ab52f3cd82d", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c47891d9a5aacc02eee6e6d5b0e0609e507b21d04709a23bd2ae5129207c02ea", + "regex": "(?i)^https?\\:\\/\\/spotiiifypremiuumhelpyy\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "94210b89a468cc67f90e0fd0fde33914b3beb46dd6e23f0ddd8c44bff5710f23", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d71779fdbb5c5fd2b65a481965c104a963884a441b59e7b1024d324716856b07", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6fc9c6d3c15e353d60e04e79470b0b3d33c6d3788b513c440bb324eabff6b4c9", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a90ecf9b03194277bdfd72dc96bb91aa01e40e83b9c75623f194dd481966ef90", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "650d6a7f01af9e358e994c7afa3c834c1dbd192bd4839ee274bd8cd5d8f58795", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ba85d52aee97eff078268483dc5cdb3c373ffb9f6db855f99421877027a469ec", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c3841df33f2e39c1826130d7ff758aa32e62929e582a0e66d9ae74e0cd9b7846", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "93d2c9acdc72373aaf0e6120f9b3d658bf03590dfdaae20882fe6c17338b388d", + "regex": "(?i)^https?\\:\\/\\/bxhexhjechebxqkksnkxnejx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a5078be92e5d00f8ff458e22de0867f2bdb49a63bc377efb0a6d940c583f516a", + "regex": "(?i)^https?\\:\\/\\/shdfhgfsdjfhjsdqdhzsdfhkeqjkdqehfdez\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b9f69cec7d3e8abb0359694330108aec3e7f709376cfd952fe24dbf70633b0d7", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "83dfef0d5e835efda9ee90f6b33fbb15cf6bee38e3feb79af049b07e8f02b788", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "36a6b4f09648b2c85845accb19f94865e42e048137eefcccdee7e0998b70f005", + "regex": "(?i)^https?\\:\\/\\/jghfhgdrtyytgkjjdsdd3622123\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "01e311f9695edc27ad373992b8b998757f9713c08430b7b13c8c3428b0e2acda", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "886aa7bd35dafc227b39a1fa1cae6164085d2239443eb4754de10e02854ca54b", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "80783f955dcd59faf8bdcf7088bb3748ee2ce59c3ffffd5bd588c8e6acfd41ae", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5fa2f800287ee8bf2ff2d291157672738daa781545198f6c17e4b69fd0768386", + "regex": "(?i)^https?\\:\\/\\/hrzhnazqhx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8efd12ce2268803c2e81dbdb4409a6d9ebb3112f8b082b9237af1f7f16c1e7c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+overtime\\-repair" + }, + { + "hash": "8a46115db02da256964c687aa9e8c236069383d855adcc2cd4a6fd8b1f7db11b", + "regex": "(?i)^https?\\:\\/\\/bluxb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9ad51b7635517fad279c3943058631f4c4f6f5c83de3fd64d75178d4e3175296", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "669c83abc7af3f79ed34b2b37cd9ea9c67cd42cc47b6b7fa4f025b7f310d5e59", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "310f677f2c30af59a81481019379c7b3a7b139e104770bf8a1a7ced808a39e86", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6c2343c266fadef81df2384b03e2f309f3b945848d1d4ecd99cb450613bcabf1", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "91355526e6be1e0cc1d61c7bbf17694608b329dfd6a2afaa9d85fdeeff7291f1", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f6ebf180c397cba8490635c7ddadbbff6f61e75f4973456dfe5c245edd65acc3", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6d9a798f0d0a97bf9e2b5d264fbc18d91e65c77c3822cc39c4ea734c599e252e", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7b6c216f9748e57d49bff6f37009e52ea850d6cef252df049a4a4c52db305ca5", + "regex": "(?i)^https?\\:\\/\\/pub\\-c8d0b5b583854ee29514afbafbd8d66c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ddc0619f29c2b8665b5bd625e56ab5977c1fab8e343f2c7bffb46ffac898e8de", + "regex": "(?i)^https?\\:\\/\\/hrzhnazqhx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0f556d0b87349879e23910ad573de7da3bd6ac05e96b425dfb44ce7f0dc05b9b", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "19248c5070b68da200a8fd93413f0b314d163e726ee5f2e203c908955ab6ba2d", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "75e2aa50da30eb58e5277e0360144d82d58c838a3cc07a41000c7c781e141a99", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5a56537aa97aff3266111fbe2103bde4b8ba492a81bfd6ea246a9672bda2df5b", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7301a7aef42925a4217113fe6599656df84a381218b64d69f880ae6384f2fdc6", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "14d9de35c74d8121d326cfd0af9ba85271644c497e7dfeb7b318c7db06e2cf94", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ce605c5cc9f38334a3f834d3dcb9adf31a2b10b86f537821b07cb3b1f948c9e0", + "regex": "." + }, + { + "hash": "9c566155b3b783bfc4ff8a95db2a2b46b0ae8c1f1f77a078c06702d9b146f299", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fa01a917f7c9c44db94c5a9119815aef8aebf8ed4f44869fac49aaa39aadcdaa", + "regex": "(?i)^https?\\:\\/\\/robuxcardsbof\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "95aa4c084c50a9eb683b56989ad36b20651d990f9d7f6fa3e9df49da000d76e3", + "regex": "(?i)^https?\\:\\/\\/iugiugagsdacoxzgchizgcoihoaidhoauh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b01d53ff742549454a2159b07ab1d34f4b4cd25b0294e83c9fc75819df594538", + "regex": "(?i)^https?\\:\\/\\/hrzhnazqhx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "642eaa8ff68f48e871afec249eee183cd1fc36a4297a49b3320b73d0d14eb9df", + "regex": "(?i)^https?\\:\\/\\/iugiugagsdacoxzgchizgcoihoaidhoauh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "31e26afa6be08c4e4df21c06133ba22807862f0ac1d13a9b454b52bccaaa6265", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "64f2f6e4887208ce288401713fb489d13afec9e43cf6d9da312cf4a2c2e4a80e", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c06df50b1e0a4aac34780729ff1edebf9794e2e3245182ae16963442c85ea6ff", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d6437d18367ed99f06e7f5fdaddb196512289ad4dc6f77e8d27f1a6a68def1c0", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3fe467971180abc9bb24597f02c72af05954070b7a16dd19389d23366081f0ae", + "regex": "(?i)^https?\\:\\/\\/robuxcardsbof\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3b19db1ab9a1347b8ed77d64c59406683610d58f25530a9b9cbe8e04bc160b28", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8522e8392a799167207e122fcb52805a7a8292e73ec5c22f8563a635d3eb0813", + "regex": "(?i)^https?\\:\\/\\/zacxaqcze\\-aq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5b39e2e51f5889c413ece9b722f056e2ac2e42b7d9c12e6a8df49c8ac1c58493", + "regex": "(?i)^https?\\:\\/\\/bxhexhjechebxqkksnkxnejx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e1a113850c626e2b36556eec111087349935a94385797f15aa75741f4bbe12db", + "regex": "(?i)^https?\\:\\/\\/dleiblbiineg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "45c88b4d07423f6b8885058ce2f169b20a7a382b71fa3d2d3b0b2c5c904ad67b", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3cb39b11ede6bcead46c294457fbd574a5a2906cb723ef10cfaf024f0364fadb", + "regex": "." + }, + { + "hash": "bf4d37d3324836f6307fa006ee896f83b123bee9f0f437632f8621c6ed72dfb5", + "regex": "(?i)^https?\\:\\/\\/robuxcardsbof\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c26d4eb18143e69d35b86f2ed424a21baa361b86e2e0c3b69e0aead1b1b26196", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d3f62dedaef39293a821776439a78b3ec87a70b07265a71b1c15cd470152fe46", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ee2c09d0f60f0777f2650d5ba44bab25b204506fcb25dae28120eaeff406ef26", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f4d81f1524ec154de25783df33516d087ba8de228529a636394c0766faab479e", + "regex": "(?i)^https?\\:\\/\\/dleiblbiineg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ea51ebb02fb41285fa3fa8e3588c713670d840034f8e62fa7821bbefe43b965d", + "regex": "." + }, + { + "hash": "6fca865475e0e5d32f44f97da51a8317384316eac885c1eb9cb1805480ffbe38", + "regex": "(?i)^https?\\:\\/\\/zuduzdqslq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f222c4b0e3a6010a991b699b560a22d7f07d9df937cb7f17486dd774ed6cd1fc", + "regex": "(?i)^https?\\:\\/\\/zacxaqcze\\-aq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f11c0d7239e1797da7ae45a22679c28cd02b7e17b31f6a9e40d2a6e455cd1073", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ec188df87709151da47f619dd1b01c8486ccbec6ce36bc7b4e344e007951ffb8", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cfdd4126700d452b1d56d7c55df2a8f6dfac7b6ceffffe19436c11e842adddad", + "regex": "(?i)^https?\\:\\/\\/dleiblbiineg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c2b5900c77b82f01ad61af6bfb4ef718d250f98426de51a963cadced66dee426", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "09230dfe20f1936df366aa738b0832a25ee2330a5f5f745a3849a4a0c5fec2bc", + "regex": "(?i)^https?\\:\\/\\/zuduzdqslq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c1c4aa3865d67428de3fa36d8fee578db7bfe54187395bc0afbe0a3f2be70360", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "62200bd1edb7486c406267b2f61204a1289f51e51fb39c9b03b7152820ef0666", + "regex": "(?i)^https?\\:\\/\\/neftidsfjsddf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "86dd830f842cd5c30eabcf2584462227ad45de013e4e76f0270bcfa97e801bf4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "e6f79bd0c611ed13a8163f002a5b01b204d1063b4ed310bf2b4bcff18606f4b1", + "regex": "." + }, + { + "hash": "34755b183577fd51833920fb20b6c0a38f73a7fe78a7772b2157df0fb7447f2c", + "regex": "(?i)^https?\\:\\/\\/bxhexhjechebxqkksnkxnejx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8a01bd501f645eccb6f879786de1671e560897e4ddd24542e7424d8026b2ac66", + "regex": "(?i)^https?\\:\\/\\/hrzhnazqhx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "babf50c21338f6115a93a62de291ce62ac3258a4df8d8346f2ff8c8798a19d45", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1fdbfc27230310d641db0898c7d9289e78528d0155b1782a0c331d74847b4e1c", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8a428f8ab345f73c28d3e0e55666005fdbe6133a1f3722d0b83260263408bacd", + "regex": "(?i)^https?\\:\\/\\/iugiugagsdacoxzgchizgcoihoaidhoauh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9fbc69b21d96cd873316d2d4cc8077d93546d71e43eaa88f1ef160fc4804673e", + "regex": "(?i)^https?\\:\\/\\/zuduzdqslq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dee251a39dfa0b02e9c73b2e0ee5458575e08df12048fd495146a5282c3d7145", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "05d2a4922b8439d3221a1c1762b0b1030c7d7e015c1cf025c90792e30264e01e", + "regex": "(?i)^https?\\:\\/\\/bxhexhjechebxqkksnkxnejx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "97773f05527e90f0ef011c30f5a5d51af60c4af1bdffb677a22e51363e41b6e4", + "regex": "(?i)^https?\\:\\/\\/spotiiifypremiuumhelpyy\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6fcf41db8cbfbd1d0be1389ffff7489e209ae6f7b68b41f21edeac6d1921f1b5", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8d9b8bd081500f74d3b47853bc540d3832caa35665a55eb34056f80b603f4156", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c3cd18cfd72366c90af0f5029e419e97f1fefcd8425f3cb89900744871dd5525", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "842af52934f59916e588186952c1451204c8a39807500323f3b020587c8f8d20", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ae264603d272f7c122f8b3e2cd7b6677d18b8f67f644a83845d8c2c0b79c6807", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2fb4ab8720760d53fdfa9cea7eb57c51a84faf5275d0fb3b9eab97eab165b1df", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1df58e6fee5c1e4f184ce24c05517be5bc9af95f794845bb16a82fdf668f50e9", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0d11b440b2c31a134cb3f72997cfd1cbbd43b7d4eac91ed4ffa3d4c9861a467c", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "816121820277143230c235591eaefabb917f22a6bac32e345975a1115ea3b4fe", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c499c6dc0b00a9f9e0d4af83b0fc723b1085318cf40e7738ed5fccb3817c0dcb", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "709818b301d27edbe2bf07c9b4a84955c8d199735728c62ff2d8d6a11d9ddb75", + "regex": "(?i)^https?\\:\\/\\/dleiblbiineg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "188429dcb38baa5f23d10755b4c57f52c431cd27cca27cdb5e43a048ac03bb83", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9db2d76001076b07298a05f278e7003abe0bb8440b2e75f1277b8badeb68d05c", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "af4eefe08cd15c96ef3a007a59c4c57e10f669abc62d133c018000a88db2e58d", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fb8e526a0f298bb781df6552e71eb338e05bd64a89ecf9edc97cfcdacf3d305b", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4dae29961f74a6786e2d19accc9c38f8837d322846b55bc4ba44b4a9e1d8362e", + "regex": "(?i)^https?\\:\\/\\/jghfhgdrtyytgkjjdsdd3622123\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9afbf5ee070f569494285f2086f79f4e4fd1e3c8c207121c4da5765dd986fe1d", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2a7a90c1f4ca48f9e4ed88fe51acf69f59738bf0e5e9bad4b90d5bf4c712b5c9", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "508273882f02993d82e1126cd8b28b1c2a35072fa2caac57f0a45e4300696133", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4a989b6923d09b47e71aa141e9aae142f43a4d65b6af3da88d29275b4b48d6f4", + "regex": "(?i)^https?\\:\\/\\/hrzhnazqhx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "89039eae82029c778aae3483eaa79aa21116ff2dc50668afd1691c366c693d58", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cea15df2f52129f18f64132b07b0847c7d3b24675b7be1e858e3ed7184f46259", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "86dd830f842cd5c30eabcf2584462227ad45de013e4e76f0270bcfa97e801bf4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f9066a3a8213efafaf2d2e05714bce945cb9906dba322ba23d0a34fd120b6a2", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "090d4f5fc0ae83c043a65ef6f907ed0564ef7cd57ce7f3d39e770fd3b21af10c", + "regex": "(?i)^https?\\:\\/\\/zuduzdqslq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "609d55c42be070df742fbce974ed3e72a0c4218a6b93c961c0eb835c2066b746", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5d57c1b2f70e5c2a20091af0273fc4fb4e35a754ddc7671596877e8e9da44e4f", + "regex": "(?i)^https?\\:\\/\\/bluxb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fbf04ddc79bcfa05e9a62d8e6d8a0ffbf61d0e5349ca685f44fe690092d7a851", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "beff24b5b7edfa6e4d39dd07356195070dfdbb0e6d2b919a0edf3ae9082d80b3", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a5138b8e2b98a5826a645ca836e9b703d5be535929a693c0969abba2760a7c56", + "regex": "(?i)^https?\\:\\/\\/robuxcardsbof\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d8ff46f4a3a81c297388cb790390c498687b501d5e3ffe40d9fd425e7160a642", + "regex": "(?i)^https?\\:\\/\\/q00sdqdq4vdvanq\\.z27\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "cf15b16a52e919922c6b837266de6957179b9a7fca7ccacfa59ab3ed0d04e280", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6ee96d23f3e619fd3308ac361124c6eb0252a3db650a2131fbbc30c465d9c150", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9f1ffe5e1b5e994a5726ef82b058c7f0fdec946f6fe58f59cadf0c57b400a233", + "regex": "(?i)^https?\\:\\/\\/robuxcardsbof\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7be497a70290153babc9170c9739787d1d5c89a02c644436bcfee8835f4cf948", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "508e447bdee7be22f98fd05a7718fe2a251a9588e51d1be04e6d40a4803ddb4b", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1e62982f55a5e9cd3e6296592e69d009ff4392403471481eba40e3e997aeed79", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9a96736e1440755ae321ca79627012ef68c3bcc52ee0e0cc2c42e2832e1023ad", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9a056bd9ca4a37d0a972e7d2cec2795aa8756a803420d206f646d5838ac6c033", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "420237bb43da3f0def3ba395885c634487f2d903577a1476bd770f746635b1c6", + "regex": "(?i)^https?\\:\\/\\/hrzhnazqhx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dce9adf4a36f75fac30d5aef3e6cd342b9f230fc333371bdcef7a334a36a19ae", + "regex": "(?i)^https?\\:\\/\\/zacxaqcze\\-aq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "94015f165842c1ccada379e50c25d349d865955199281937b2ed858fa5d539e2", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9c1cd9ff5be65587213ec57e35fa73de67fab71b6bbbdd8b9a005d04c32deac2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html" + }, + { + "hash": "42806a7c1835f3342a0ed4566d838d30214bebe7887fbfeb322b0a6b5b9b57b9", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "59e2a2fd7ada932364cf68ef5b438850194afd5247c86b15a6e1864f35e18c4a", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d1e56ef55317f25e4b03714e4b65cdc55e577eb15f4b853961d3bf4cb4bdd6a9", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "12a6038b2a5754daf2f406999da866f2e5075c7294a1bdc9e6b5d00b1fdcb011", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b6a87a0f9cdd217778f09c43daf3046e912ff3744c563185730162672e681ed2", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c9fe35bbde9b7c34bfd25a44e74e9d80ed7dc69ceb26c2998400b573fa50ef76", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3e065719a07d33960722d8dc14fbd2fbc085e958490b396ad12f5e74b5a9f157", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "718a4439cf2792089eda3660e304ab5f21653ddea1a2f3caabad1493397a9a82", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1190f673df22a7f927fb60f915f05e8ff5b37c693007afc720a2b65a70a22b8e", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2082855b963f3329645f83d958e58fbc618cead336faebe3c693ac3f7c6c34de", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "07390cefe68928983dcbca1e8a2a92bdb5f8635d18c1da57221f299ab6b4d6c3", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a78e4c4536a0d668e0ab47c8e7940df87d38f2ea51412f2ddd8ead8a29dbc861", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cb82aaea1baae78f555ba3b49b374bf340fdbdbb90c03c9b0f74ff76f3bba22b", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3af5361442bd1fd86eb8fe2c9c0a9ecba3c650ceeeff6d0afe155dc1e32736b2", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4daef84de6e3526767a3703f4a4400d8ea3f1171fd0893cc9d8903f27fd2fb1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "729eabf3ab14e3f6fdb53db6e5545313eb907aa8807837db806d100971570a22", + "regex": "(?i)^https?\\:\\/\\/jghfhgdrtyytgkjjdsdd3622123\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cafdb483e34c7057b431d45476b015c9b34e7bc07339aeab53dbf1ba2543fdfa", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a0329ec1eca6615370b2429cfc3d1230a23e9e27331b57487de8e6c8eaebedb4", + "regex": "(?i)^https?\\:\\/\\/dleiblbiineg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d6eb14e778efddbca19dc368c96f44a4d291d889bc8d120529b08e35d4fce0b6", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7455dc5ed34e52e6194a5b0ed0804e1ca9117104834fbc901f39f2f3788e203c", + "regex": "(?i)^https?\\:\\/\\/hrzhnazqhx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1a24ca240802986d2eac546deb9fe13e6f553c3b9253a95e0674c29ad0a07a12", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cf24252739ef1f4c17475adfd30512cfe3cdfb9fad2e04d056b4603182ee0d0f", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "71160befd259753cc6e5228b8fb1523ef8ba8de4f8046a539e5313078b46b7d4", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0e6aa76ffc6e099e18ce96174786ca968e2bfe8dbaed2a2d612ba358872fd3b6", + "regex": "(?i)^https?\\:\\/\\/zuduzdqslq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f4142ff8849e4ff55406d8a158e3a149bbbbc4b7102511594002adac81426e74", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "592258a1b43e53eae402707e233fc39733f6076ba5343340d920053700fa2bcf", + "regex": "." + }, + { + "hash": "098feea62b12e436796105ae7fe7677523cb9f5520a28ba87572912155994267", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0e4b3b614acaab549b1915bdc27e2fd534c3559f9f0155fde27f9697fba283f2", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f50cdf61e6ef08ac7c0a946093bf8712993fc28617ea93f489e18e6506edd075", + "regex": "(?i)^https?\\:\\/\\/spotiiifypremiuumhelpyy\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "96e63eeaea58de60edc273f05fb0e36dae7252eca85f50b7663feb5397172fd4", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4a4eaaff1b53c1e4fca06e6044dea06575d607bae7d0d640e8ab0fa56198c1b2", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2834d22e9a189cba1b68ebf83355efb830b9dade4c92a7d50a17edc178eaee12", + "regex": "(?i)^https?\\:\\/\\/shdfhgfsdjfhjsdqdhzsdfhkeqjkdqehfdez\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fedfab7fd7883e6d4836fcbfb1466e088530f1143ac953bbe081980155b9acd9", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ec7608ab391ffb0de2e654d7c48f50b4967d3b6aeb50f0b2e1b32ab69202485b", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "de29700a752d7ef56988e0405fafd2bf3edefc85131b8eced477a0b420d2af76", + "regex": "(?i)^https?\\:\\/\\/neftidsfjsddf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9771bb65e13122d59845ee9e0d7599b54f0027dc7be2a1d1dc9c13bd23e3834e", + "regex": "(?i)^https?\\:\\/\\/shdfhgfsdjfhjsdqdhzsdfhkeqjkdqehfdez\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cc6aa3321c36e8a16cc4973ef60ca25c1be93a58042d226d335b81ef52a105b3", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "97668f89e5ec39ded82f556e5a487e1da63e7dde59635edc41a542d8e8869f8d", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cc019ec7fb9434bfccdf0dbb92ec340254c53036bc2f6fc90c342fe70a44293c", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "38cfd0251afc8905d32e4b79e04f797d4d381b4f324b41d7c61bda2148554e48", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "134c30d48ae5c09b2eeda20674b445df47a5e3cefa2fd3aba896d1e5f01fc9c8", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d24cb4f78a01474578da61a85274b4224519a6f7c0f514133630f69d1648c01b", + "regex": "." + }, + { + "hash": "93abb8306eb19f9831b429800d3ac4e0a7864e804bfe29aded2394ef763e4075", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a4193ff0785a65ccf831584cd3f746ce3fe15b6222f65306089413a8a2999b1f", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1a3cb6b24d0536cdcba33f4ded9387d0f476bfd8549c71c358849cc6a3c73cd5", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "19e4beef5271fa7b65654fbc2fdc2be0f9cc183e0d60770547b4c2b340adc14e", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7b3c0c60908677e551834d7969a94b558ce7cabdd71aeee4bda05197c316bc5f", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "598ad9d541628776630008c7d1e4f788ea9972128b65604a18e2f64d84749082", + "regex": "(?i)^https?\\:\\/\\/jghfhgdrtyytgkjjdsdd3622123\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fac68ab47aefa7f8b9b850b164de8bb63b0bd46278709f286888645a83fee90a", + "regex": "(?i)^https?\\:\\/\\/zacxaqcze\\-aq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "700533b91d5e6726ec3261129a043848cb3590774dbdf2b98d3128ae49d6ec0d", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b2e4f1809b0853281f8223de6d19d312ebf961741729ec2cb4886537408f3bf3", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6dc06f98f7c350c6745a988e00e552f523f3b4bb0317b2109b0cc903a346b774", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2b9e9a475aaf39abc719f44e45417d973fd0bb9d8588b444447787dac487f1c8", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cfdd3c8769a3e1dd977262a955711309dc9d337a83dc3dce8bc9879302b27a99", + "regex": "(?i)^https?\\:\\/\\/jghfhgdrtyytgkjjdsdd3622123\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a2a48a72c2ecf0d7e819c238c1381410e0c98ab8d564aefa8046a42cef97ffe3", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8e22535255f9700e445c02e9dfcfd93c9d94d345e5637a18fc26165a9c489f8e", + "regex": "(?i)^https?\\:\\/\\/iugiugagsdacoxzgchizgcoihoaidhoauh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "df73612abeb0bfa7f97f403212596a7d1871b358511cfd6e892f2a3a2746f48e", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fa65d474564d5beb69402ec324e545dfaea855bc96abc18168feb9982b6c3c42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b001(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5816ff718ec51d10147540fb4c586ef55e4bcebb5966ab407bbbc9abca076b61", + "regex": "(?i)^https?\\:\\/\\/neftidsfjsddf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fevgeni\\-plushenko\\.com\\%2Fveryt\\%2Fgrace\\-domain\\.html$" + }, + { + "hash": "698b08fa2cf09e499738a18973d7c3089363b8ae771b8ec2ec4863e3cf281806", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4d133143aadaab2d5ffb2d76e1e04fb6a7142d351dabf35488037d2d824cda6f", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "54852e78afb35c85ad96a9c24059882fb8cacb4d11868d92c56104d1138b04cc", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "37d44969978cd4b859fe9566bfb60cd127ea385f47a635196106a87970af4802", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "49cc15dcb53a3c9b57940b58f0005c305e75de470da535fdd9bbaf81b99273fa", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2da1f1a818e3e3afef8276e1d50a31c59b0ef3fb4f9b6b446f79917a2648a6cd", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "00ee7a492da259d374b41949d4b5048083c72aecf3174b7964d5a3e09679844d", + "regex": "(?i)^https?\\:\\/\\/iugiugagsdacoxzgchizgcoihoaidhoauh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4413d77c8a1d0910352ed72539afae81462eca5f726590250d02af32b65323f6", + "regex": "." + }, + { + "hash": "d5a68c1845ddfaa7cd7ed5540fd7ada93b2c58248f253fefd069248af1e6d093", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4957dddfd1be79e30a835d2e0388267aabb9faf7565e0756ef87141f87d80b44", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d9334729978ef13b3c28337dad1dd83a2c7b935f57f8089b20f3fd3b431fea3e", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "27453a3ee687af4db81ef5d00c65db53a6d31012c14f7d20f210186726fc7f80", + "regex": "." + }, + { + "hash": "3e29dd43e16fea27743c05c6d39c2d67a93b3d816570a5d2a2f648e905365caa", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a9a462fb8028da882d28f0abfe29a5ae430bb3dad06cf27f5403cc9f0425af74", + "regex": "(?i)^https?\\:\\/\\/xzcazaqc\\-eaqc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "93c99915b749598153326bc629100f7fdbca8734fd616c9169f264e271aae24f", + "regex": "(?i)^https?\\:\\/\\/bluxb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f6308ce784c4bbc002c449ac080804d25b29d1137d413881faaebfc259e62874", + "regex": "(?i)^https?\\:\\/\\/bluxb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0e42e903a5c979fd34a614baff83d5299380eda5ddaeea77a304c7327bd1f980", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "36288cf12e7e62b0da095ddd7f054622bb70e405d9a7658b2913081af74e8a90", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7c2129f8c2bb9c5975af37b4eb3c6155eac821ca10817b510a71d8922dea9b48", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a03d58d6a0e57a0be23bac06d04a049de434bdccc69fbbe150ca99c9f1fd9402", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt\\.php\\?x\\=3TxtmrUFUqPUT55qA1cwjPak_ZN\\.yvkWr\\-ZiX6LISpeeFZah_xAwUemvPaWYiu\\~ynuVAXHj[\\/\\\\]+$" + }, + { + "hash": "7792346659de494dfbd470f8e4712a78808aaaa854cdf4e9880a24b72d57dff1", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e3840f719a3642b2b20212e7b63bfff68f0b27b2082752a1bc74d18b2e40f6b7", + "regex": "(?i)^https?\\:\\/\\/bxhexhjechebxqkksnkxnejx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2be89adc3119a55f79a8d9f38d4d343938b2423455e1335fb42b000b3728c7c4", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b891d89115d28ae5411bafef08c7911493de60cd051bc7a37f9c3df5ac50b44e", + "regex": "." + }, + { + "hash": "607a02ed4d7f14a3ca800b44db761b04da2af105b448a4d3472f71c33e49e7b9", + "regex": "(?i)^https?\\:\\/\\/word87\\-dgt\\-link6574\\-omerbagardi427296\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "046c07db21e985c77bbfd7030ec374157385a9d54d7971bb77a556a2e4e80836", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "94eb55ae9b32df343c6ac76cf8a5606f43041b3cc1d13cda78558020e9999c1b", + "regex": "(?i)^https?\\:\\/\\/neftidsfjsddf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "066fc7fca7c36db2c7bfe78a964d6f154cc4bd56ddbbaa4a3151d1a8d511339c", + "regex": "(?i)^https?\\:\\/\\/bluxb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bca2080395b4707e8634cdd535bedac35e65f7d084f3560230070fca07123b8a", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "baf5c215e8087a65402ca8fc78c1af20b9f8e9cc5858f130a23eb9483dad272a", + "regex": "(?i)^https?\\:\\/\\/iugiugagsdacoxzgchizgcoihoaidhoauh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7f86b1e4ecefb80bfa17b865f951327d133ddbd24ee61cce6b62ff4ffbf067b6", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d90863bca9f3af11f6555339c5b93b962c928b6b3e8f7955c5f545a37f393430", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "022e0ef62b641bf9500b998ba1abf8b3be2fb7e276c1e1e580d0c2bfe4217662", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d0e8198333899a344c7c95de075d250395fa55180ee33e7226968939b85720ad", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c605038808848ba32953e067c30fe1475a94f56fcfe6ebc42b124e46bd46dba5", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "04defe733ee446dc4e99027e6308f464cd71367da36e20377eb08c1b80da28e4", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "aa268442d05044cc07e953e44619c170714f89f11961038aff4546e0f4a04327", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6c4ee042968c8e8e211dccf5f4dbec919379ec90fd4370fdf5d7d3a87c4789f0", + "regex": "(?i)^https?\\:\\/\\/spotiiifypremiuumhelpyy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "caadacaecf638248159ebe57c3310f1ac3e91d4b459ffe88046f166bbee187e6", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0923b7e47da5fb2ad6598f3733a5122d0443802067f833bc4c60921a5735295f", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8fb3ba3752f366dea582deaa7f5e2b8f6dd4a31c5a04f84c6f4159fe3255a201", + "regex": "(?i)^https?\\:\\/\\/dleiblbiineg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1ffd703cb6113912d16391c18edb3a604ffabb75d02cb1d525fc1f99956a87a3", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ad8c7623516a83690e45aab7400e46b0c72aeeba27878bea50ac9d360e291368", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d1fafe38e523d5d1c819099c0ff3e437806129b2bf7e64be3b39caf812f3ed22", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9e7edd2da212ff59b2dbfa0b74134ac7445aa1bb539153a931b2fa8ffacf30d3", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "364d1ef6fef0f8536fb8d5f2680c8928326955119dbd976b5d7bc3ae1c63309f", + "regex": "(?i)^https?\\:\\/\\/jghfhgdrtyytgkjjdsdd3622123\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4f2abba15181b1786217f7a4b35db6809b25fb686f0ac93066ae6184e792eb19", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "84d4d5c61f0f54fb6fc880455351a792d7efd89858c19bf8b9e1f94dff6b65b5", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a193032acaf6fcb5edee7120ae5ea3a5143d34d081d322200b6c193c8a331b84", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bf612363d70d1a584ae82de83d51401051c08ed2d5a6e0f794f863170b7c12ee", + "regex": "(?i)^https?\\:\\/\\/xzcazaqc\\-eaqc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2fcce4b90dbf2d6ea3cfcba4265e710cc6f4d38e95295a7979a3e68cc2b267d1", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "703883366ac731360231a8608ada103fb109d6d0093ba7df85dfb763f22febc8", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a7b2a81cd2987e0914a9dfdba6903268c225eaaa9d4c7a7b6bc96c14d4ef5ef7", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8e64307af4455489a651db148dbd1d962ad11d9e6e70b2a9a8514d79592c6d43", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "94cbd1973237a9822408f5500c4484c28b3e389c40afbbfa3aee41f3a0011519", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "66d2424241c639d2b72886113fcda43d59e46e96d2cfc33b60e24490e072479a", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "827f0a734b9eb034353450226976d8a22a653e39ea5a730f4d6c8208ea8d7c09", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0fd260f381d4ebf81828e9c32427ea8f27bc1e07db06b874083356272a4a47b5", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "57bf5f49161140ea34b3e30702670125ebfb82526954f5f198587e7a9781cef6", + "regex": "(?i)^https?\\:\\/\\/hrzhnazqhx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e1e23b84163ad6c79908269ca6b1188e2996ef388958b3504234c73e7f1332a1", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "69936561bdff8f531f863480babb0af267ec5ba8e07e7984e9a052eaae587bdc", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5b07c395c60eeb5834588df9db59d7751218092669539227e1962fb282affc58", + "regex": "(?i)^https?\\:\\/\\/zacxaqcze\\-aq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "44652fa49de60e0e59c144e882386d3adce93507f19e5377005ed61d773543b2", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c83d61a96638231b0b7cf4e4c7ae3dd07e441e8e073de5066e6cfa780c3b5658", + "regex": "(?i)^https?\\:\\/\\/qsdbxfcbjsfzjzajhjeafsqfkbjfhbbsfqfkl\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bfef9894fe840e8af8a29e9a64768a7b2c9cc1c5ec3fdbdae652287f1034e3e1", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0646476a9898c599a80c77e3f31f99889b10a55488a1fffd63d35937094974df", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "27ef329b3581c93f4923e91a73679df4c071127e76ffb381eaecdffe076dc798", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "83c4bd50e407512433a1fa1f7f9729695952c70e6987b65827ef2d628f512c82", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f69c63ceed59197d17cf97b6fe58e48d6e6dd902fc3ab5eb7e940d8619311bbd", + "regex": "(?i)^https?\\:\\/\\/dleiblbiineg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e973f6f485fa9084d95532007aef7a37d622d641449934942d752d9686e9187a", + "regex": "(?i)^https?\\:\\/\\/shdfhgfsdjfhjsdqdhzsdfhkeqjkdqehfdez\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8ae8ef8c7193453e8138ab6668cae34b45dd7b44ace12b5534f2cad632e28c37", + "regex": "(?i)^https?\\:\\/\\/bxhexhjechebxqkksnkxnejx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4202f553eaf368ebec70845457f338f5ab20b35ebe282252ba06ae03fabb0a96", + "regex": "(?i)^https?\\:\\/\\/spotiiifypremiuumhelpyy\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7807f11a4f2c13211ddb4a71c65fc7a69336d368bfe06c62c79486ee88280455", + "regex": "(?i)^https?\\:\\/\\/iugiugagsdacoxzgchizgcoihoaidhoauh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c254e4a53dc6b5271d46578d7d1dd59bf1ba904615e45d15f62a23c6ee6e9a57", + "regex": "(?i)^https?\\:\\/\\/www\\.003302\\.com(?:\\:(?:80|443))?[\\/\\\\]+t(?:\\?|$)" + }, + { + "hash": "bff17b0334724ab5b542f41ef7d023fa4a7c426552cc1ab89edaed257f52d5fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+DMUwa1DtKbXx7xceA(?:\\?|$)" + }, + { + "hash": "efbb5dfefa02297ea9527b799740a68b992221de62d69d2ff7cbe8d908d7a1c8", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "37235beed43457f25dc3d0f715b06977e5fb4df301f4ce80b7a3153a602f3bba", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f84c5a897679304de9f7977dd3e4067e9ab67b0e0b1abba7b9f01e0f1f6d4a4a", + "regex": "(?i)^https?\\:\\/\\/zuduzdqslq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "710e6d88fedc9809b0b3194d9739511075ad4f52f3da45f5429fe8d7705c5b81", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8ff4d00638f9c41be275a467e295dbef128d46a4d941b5fd6ecf8cedc5436d69", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2e61abf59caabf0a60d77240e0028510bbc0c31e066738ca2e90b3ef30530332", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6a9db5e6e055167e5c69d15f98524c2fddd97da65afdabe1543aa1518f6bfe60", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e1995f588812ef83cf79ea4b27b752ab9f0ed2b90dbf12324396ac933a04f75d", + "regex": "(?i)^https?\\:\\/\\/wxnncbwxcshjhfhryuyzrzrifdfd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8f220049362eff8b12d411de1455ee325acf14399f14280ccbd28e55f341a990", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e8b9710c17d1c12f8704c4557aedc864e942a560be6682dc86d255326543e528", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7454b88923901562692decdbd779669865446eef9efa335a5b393cce4c3eebb6", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e8b9abffec73ee3a093bfe731edd5a62d6f0974a60edda83b585a2785a110ab1", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b17fbe3732f463776b759dd19fdbdecfdb3ef83b96bff2851506fbb4f683b583", + "regex": "(?i)^https?\\:\\/\\/jghfhgdrtyytgkjjdsdd3622123\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6e0c2158bd6d101e8c53a93552690ed961943e0cf0aa1e25209788011168b3ff", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9a47770b48e17dc3ac88436f9394effa3036da42c9330e96d7e580062004d2f0", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c3cdec47ba08599783fb54dfa62eac692516f100e1eb61bb3758efdeaeed3485", + "regex": "(?i)^https?\\:\\/\\/iugiugagsdacoxzgchizgcoihoaidhoauh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cdfa3ac5aa7803904a33c37019ab166d665612f4c6ef0afe844e9e306c38e30f", + "regex": "(?i)^https?\\:\\/\\/xzcazaqc\\-eaqc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4ee3ca539e2dcbf02ea3f4e1be73739edd321ae9aae94909b4c090e523e4e71f", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6c0e42fa4812c489e0a1686548dba67bc0d8e123b06cc8c70f85a994ebc4ae7e", + "regex": "(?i)^https?\\:\\/\\/robuxcardsbof\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e8d0f1cbc1131e66603383751e3c32061cd7ee991bb430870257e13b7e2d7e68", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "41ddfd0d44a12828bd21ce9f44b92eed6a8e1ab7c911b076c86a60efec05899e", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "84b2deb17ebac1123ae4579d67369bf7e115c8ae5aeccab63d0c28877c6b85e0", + "regex": "(?i)^https?\\:\\/\\/neftidsfjsddf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "af07fb5a462c4684d4d7b923258cab727724baadbaa18e14c99da4c6e2a24863", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7496f7ace964ab5b519033723b889861221157ff234e18f13ffa4a9135545b32", + "regex": "(?i)^https?\\:\\/\\/neftidsfjsddf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "742102f564c998690ad6dc6e3283af94896268af3b6d21f926806eb8df938737", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5829a83f42c21e62577d757c33a24c6492aa5365864965c41f639dffc958fb2c", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "daf1e53515e5b8eaea7b13283ed37b77299bf1a125db7b83a6b0f147a2631d70", + "regex": "(?i)^https?\\:\\/\\/zacxaqcze\\-aq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d13cd34a283d4baa13425fcc927160616598026f7c82c8c08d0fb14cc89fea34", + "regex": "(?i)^https?\\:\\/\\/zuduzdqslq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2a12ed844157b5a02d8518ba113def13ee92177757b5e31d8aed6e2bd642e004", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "705a91a99b452882b19d5b37e6f48427b659ea6ae9655d0466f51400afd7cdb9", + "regex": "(?i)^https?\\:\\/\\/spotiiifypremiuumhelpyy\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6341d022598666ca2e58b0f01cb5f6c826fd7b9a404f212ce37b5f997c1497a3", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2b32a8dab8c927a0d64b76d013be19e47bf8e9069b2f8c8ca932f89a3ed4bee3", + "regex": "(?i)^https?\\:\\/\\/shdfhgfsdjfhjsdqdhzsdfhkeqjkdqehfdez\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0e5768a4f82924ff0949e128c938e4d9a16380ff16e79de1c3784ac717ea5be6", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9a5aa948ba40fcb0cbc5b8ea8e4aaface5e2ea6a6090f44953569cd8c91fcb1b", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7329c84130b1150163397d752be8066fccd2cfb042c9e50cde5bc1ea1c03b0e1", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "11bcb8b28f056d50d9b724a134fac59304e4f02251aaad6b84c678b8cfe91210", + "regex": "(?i)^https?\\:\\/\\/dleiblbiineg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "82cce60aa4203e2ef1aa7df5d50de36699a50eeb41986025a35218bd3e67d763", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e8f14f86a001cbf3693abdb2c3ca66684370b94e398f2896f8c33571b6649b05", + "regex": "(?i)^https?\\:\\/\\/spotiiifypremiuumhelpyy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5a89eb0a96d5044ab092c5c687a22afa7419c42fec8b41edb07c325477500bbe", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "64bd37f0cef2d5c2d7b23fe90047f6ae30cc692da93d4f27ad6f1e1bbe194aa3", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e8c9fe6eec0c5d187a4969f681f345cf321025c3af0c1c6dfb30a0e80fdcaaf1", + "regex": "(?i)^https?\\:\\/\\/raqegrqah\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c558507480f7bfe9ae4fa538240064c84fe7d73d26d42126aca070f2db424478", + "regex": "(?i)^https?\\:\\/\\/robuxcardsbof\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "eae99079e9ff31a8629bb281ea363f6ab83e607d76118813a154bdc7935923e5", + "regex": "(?i)^https?\\:\\/\\/dsjdsdjfsdsdheuzdcfh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bc6e96619a74864c8bd0d99f57b157f492ca54d500d790e26d9f9ffeb7bf25cd", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "60e9e5ba2da2fb577d13a35309fce172e9ba967c1c8bb10ad8b5c16bc4928493", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bc2dac965ffbdd3414bef5d4b5c63d8171246c28c5f3168d84c44ff0e848062a", + "regex": "(?i)^https?\\:\\/\\/xzaxaz\\-xza\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cec7d00943106939288c9e080002eed34cfdd4d2ed0d495d75d46cd8435ebbf7", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "140e72bf1a8fe337abca28add3878ee54e2d11ae85e08178d64462a76af8b7cf", + "regex": "(?i)^https?\\:\\/\\/eaqvfaq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d7511e75f6c38fe31fbed2554c45d9dad9f5b1ec6fd0ec3af9ec099bf1e5754e", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6f7cb611babd4af67eff7866e52afb079c62abbb180c2d12c987230df810f10e", + "regex": "(?i)^https?\\:\\/\\/djsfsjfjsfhfdfsjsbnbnnvbcdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "515958bce0951222e5d4e37637d554b60ab23e36ec9ed6e52f4dc8b713c491e7", + "regex": "(?i)^https?\\:\\/\\/home\\-107404\\-106736\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "119b0c86e07ab95095c69cdabf53a027a952ca0545a9215e0820af38385bdca6", + "regex": "(?i)^https?\\:\\/\\/bxhexhjechebxqkksnkxnejx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5b5d5a596ad857b267f6e1d5bff07d27b5d385cdfab1f741ebd7720d64966a44", + "regex": "(?i)^https?\\:\\/\\/hrzhnazqhx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d16de5599ee416ee87ec2ce9901408214c321ef2a4bed475ecc67f48cda81d5c", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "83bef5f4de6529f3cb43ac092af8a481227ff80ffe769eb54c8d374ffa5c64d8", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "14c6411b2979ebc3d6dddb4c7b63ce2b51361a8324ec11bb2e1c4a9e2b27378b", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "052652a422d82ddd58e1a89e44b690f9a72f8f10fc2b5d58eec7c3a83110ea2b", + "regex": "(?i)^https?\\:\\/\\/shdfhgfsdjfhjsdqdhzsdfhkeqjkdqehfdez\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eebb4edbc1ebbc58c49b31906f3e1e525d59beae7dfe1fe572f12152facdc269", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ed0b5775f88a6728394e6f8cb9f018fef5dc0b8524bc9e79f4e901b734e3b8bc", + "regex": "(?i)^https?\\:\\/\\/hnbbnbbbnnggghhjhjjjkkjkjhghgghhgkjkj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c720cc9f6d919e835912f254a57c82c5fc85c43543c71b1b31b9437b17501913", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c4f2dc174069d9570357197d101b64b6b55b792576d4c13785b935412c145211", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0d0730f6da936625b644bcb9e0e4014043324a6f73edea4057095cb8c9b1d54f", + "regex": "(?i)^https?\\:\\/\\/supportmusicaly\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6eae022d5828d7f754110e2334df6c5e94b0e9cd3bc2f1591ae970d9a3175d6c", + "regex": "(?i)^https?\\:\\/\\/ee365666\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9baabe62ab2fa7b7b76c03e342b5a6a1d144b8d829256e89c038b56aafedf3ad", + "regex": "(?i)^https?\\:\\/\\/qjksddkqjdkq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "20ed971c7adec3389522aca85024486610e3a52a7663db3275de1b594f6d2480", + "regex": "(?i)^https?\\:\\/\\/shdfhgfsdjfhjsdqdhzsdfhkeqjkdqehfdez\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0d07538182ef966f1bb70ec54a980bf58045c15d46efb58f2973c3b4e0e53600", + "regex": "(?i)^https?\\:\\/\\/spuytiyiffgdksheeutyudfsyreyu\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1e6a4d66c9a0cc42e3ac6a91025611924ad9f8352e713db5bef043c8dcff6c3e", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b63dc9533bb7e28cfa4431a626e2e9e8c80b8554a943f5b62eed9e397b451684", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?tkht\\.a006zhuanyong\\.xyz(?:\\:(?:80|443))?[\\/\\\\]+[a-z0-9]{4}" + }, + { + "hash": "032363c31688cab4e9c9c5c780926c46809290daf6848eaf69a1d2e7f17170e5", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f8f899876adc47f127c47252d0683efeccd8b942266ceb818ca0442f7fb23855", + "regex": "(?i)^https?\\:\\/\\/neftidsfjsddf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "44dfc207730f706b805bb60f9106a192b9af20fca247f1efbb8fc0bf882fa344", + "regex": "(?i)^https?\\:\\/\\/zuduzdqslq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5b634395a5ad3d6251969b3c21fa1eeb272ea21ff7b8ecf14ffbccce9d0b4e7f", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2fd2d6ea927f1e4c2261de048258c13167bd72a229bfc0cc60684636d6324bb5", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7bead7884b067f5d85666a85bf028a3b21e961942afbb0abc2a747ce2d67d8ef", + "regex": "(?i)^https?\\:\\/\\/qsjjqdskjqdjkdqskdjqsqqqaaa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e4cbd7ca67ef273363e1c480ad44d71a78be9b29131c37f124f1ee0d46ba7725", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6cddc82ff3a7fe5e3a61cd800d4a9069371e1d812925a1b5ecb3a6f02f2a43bd", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfkgkdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "06dffdd8632de05d7d6c423ac43aad0204bae9c81619a088292f58b913bfc24f", + "regex": "(?i)^https?\\:\\/\\/spoyitgddfgjreutzertzerzurerzraze\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7fe90246d3ca42252961daa4b2b0d3a40fb0880c4f68cc6ae265f1feda166b61", + "regex": "(?i)^https?\\:\\/\\/geraqg\\-qaezx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1a53244fa90822e1e39cb94c47d8f2efd103a122258d2b2bf03507f60a64cbd3", + "regex": "(?i)^https?\\:\\/\\/netisdfisdfksd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1ccead36b58e0b9c41dd1b417bbcee40f7fdbd44454c54fb9837710e53a40cb6", + "regex": "(?i)^https?\\:\\/\\/spotiiifypremiuumhelpyy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5977a16a007eb1f0e3551227c8f4ef9ce828cab56faaa1da3665799cb3442ae2", + "regex": "(?i)^https?\\:\\/\\/feqadf\\-eaqg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2da1210c59c41c1c00065cdaf2be49c1dfd61e6bddf9755cc0644fa692c77773", + "regex": "(?i)^https?\\:\\/\\/zacxaqcze\\-aq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9a04fc6f4138d4282a5b7a6721a4b8be29b1c0ad3cf786a3a9f4a6b11eca6a58", + "regex": "(?i)^https?\\:\\/\\/spotiiifypremiuumhelpyy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "158263cf14c27eca588f598da6e82f4cf89926f2c866f1090c2582f0b0492208", + "regex": "." + }, + { + "hash": "7740f12c5730fcf1011647534ebd02a0a062a0af079c607645ccb788a02079e6", + "regex": "." + }, + { + "hash": "644d59651284b8627591e67d0b10d8457fe87a17cc3f60dd8d46d008ecd7a1b6", + "regex": "(?i)^https?\\:\\/\\/vqargfqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3d6843145ed5ddd46f93627afbadeab0467f8800aa1f30dabe1525cd22b0eba6", + "regex": "(?i)^https?\\:\\/\\/cxaqzecdqagv\\-aqe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "dde032f7d616ab354bd8fb320071b23a3962d0a0005d6004d17555396e1eec31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register55606(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8f0900e2d8e912eb62d85bdf60930f864ebe8533923a64bf0fb4c0e134f732f3", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b85b6a33d706e780f95c664d5a182f5d4458fd27c859fc1464a6c87dd2ede386", + "regex": "(?i)^https?\\:\\/\\/attmaicomeback001\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "adc49c9d0bc3c7f1a1c3fe904146ff656eb4e28f61015a9d8a89f9a8bd226f36", + "regex": "(?i)^https?\\:\\/\\/aru\\-25469ba\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "18c81e332d17373f89be1713a12d1d02db960609e64f0151290c385dccb3b1be", + "regex": "." + }, + { + "hash": "178d33c24282ac5c3706189bdb3ec49233722f7c359dfda61354d22e0a86860a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a9346b17e5f84946cc4ca984ae41db8a950e3e1789d2dfab46864dee96e5f90", + "regex": "." + }, + { + "hash": "533a15127f006e19b4ec8ff08f44b99174583c81c7e95188676cc51c8dbe90e3", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5e86584190ae664d6ffc02108abdc1568f09f0b0dd58af73b7a78de6d0a411f6", + "regex": "." + }, + { + "hash": "91be197fa4462729cf79ce1b252ab49b7cd23271e40d5850cded818a3942b5fe", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "911f4f230becafe6b036e34c62f277db94977c378e7b00140554ca791914c61a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+12984(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "00f6891beab1aee6c9ca3e8ef7a59944d947062a0cf40e3937e680b7dc3b1e45", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b402a2ac5bd71c3ccb83a5043c3014fdad053c04af7b99a31ce68188ad0761b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixc\\.html(?:\\?|$)" + }, + { + "hash": "77409d1d29028bf9c949f716a2e38986c67815068d9b73a30b595c170e8bf0fa", + "regex": "(?i)^https?\\:\\/\\/nishkarsh\\-123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e6a00a06297292253d3f7dc7ea03518bcd647eef41638c41c29f2220eb08be4f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gccms(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?ex\\=zeotap$" + }, + { + "hash": "44a6bd59cce4d37f50528fb0dd4a7f8202fee8ec1ed70cdf07cfc84696a1d0d9", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cc783f070eb69a8b67aca06659433a6587d2876ce2ffe4a305b4db006e93cb7e", + "regex": "(?i)^https?\\:\\/\\/aru\\-25469ba\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a1fbb4\\-abc17553\\-41cd\\-41f9\\-a680\\-0509162af2b8\\-000000[\\/\\\\]+GIKb2zSPQygO5sgq3yzWSCxMCuQ\\=394(?:\\?|$)" + }, + { + "hash": "7c5396b3d6fe711e7bc13dced570d0536127a67aa95268f250e6207cf4b2fb13", + "regex": "." + }, + { + "hash": "1e7b81b7b036f29bf6cfbab8894ffb689f245faf6b2432f085681c9f54dce0e9", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%253F\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID$" + }, + { + "hash": "8eab2117337e873e6f2c1af1dec454e72a029d692ecf65a86581d46d76f26937", + "regex": "." + }, + { + "hash": "8ab131ecaf22b0697a23d51419a7f679551ba0bb986a0fbcf38b6508ed511a90", + "regex": "(?i)^https?\\:\\/\\/aru\\-25469ba\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "51b8b7bd3a5f73a2372634707eb0d3cfe8adccf54017c669234f5f5f14f133b7", + "regex": "." + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "19a13bb5cc4c8ce00ce55ff830bbbf2c9d579ee6d48be035d4b0c68351d8f95f", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "db16f162f7f1ad79c0a0702eefa39a65afcf9df6bacaedd56887e860bcd78848", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "484602b8c9837189d562288842b7816f8cffe323746a83aa9577c0eb1a999843", + "regex": "(?i)^https?\\:\\/\\/www\\.vedi\\.194\\-59\\-31\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f4d874748b297fe33724f81bf3e92d8e23b28af000980108b0882ac2dc5d0609", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%253A\\%252F\\%252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%252Fmassive\\%252Fseguro\\.html\\%253F\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttp\\%3A\\%2F\\%2Fubokrtxbu\\.highpointmanufacturing\\.com\\%2F\\%3Fuserid\\%3DbWFsbGlrLnBqQG5vcnRobGFiLmJpeg\\%3D\\%3D$" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a1fbb4\\-abc17553\\-41cd\\-41f9\\-a680\\-0509162af2b8\\-000000[\\/\\\\]+q5s_1aZxw7ZcZn0bk5C7fpgqHqM\\=394(?:\\?|$)" + }, + { + "hash": "d3414bad564599de06aa22e1123d71de0a38b4dd1aaed14ba45da7de679665ac", + "regex": "." + }, + { + "hash": "b402a2ac5bd71c3ccb83a5043c3014fdad053c04af7b99a31ce68188ad0761b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4b4c52bb50178bbcec8750c7259f485e5657a989fba476bcdbbfa3f055c0e3fd", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "9b3d7ffc1b29193cdfde45f4dd04b865301fba3dd2e71673b4b851338c1fa198", + "regex": "." + }, + { + "hash": "b561fe63823290529520e95c5b36e6db0b0b5ed5ebf0995e7ba0835413a9f1c0", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "80690c71b3e7f79af30dd2719e2f52b44fbcf207d8c9526042bc4b92add51e54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9010[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "caad022c82b6e50febd0273e380f12f09a3d33d04dd6f28c473e4cf6fdf7e82e", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b8169018fdc71f2b8bfcfa05c59e47704bb53413dbbd57175aa93f0e6914b7da", + "regex": "(?i)^https?\\:\\/\\/go\\.andiim3\\.com(?:\\:(?:80|443))?[\\/\\\\]+es(?:\\?|$)" + }, + { + "hash": "3f0a989311485b303fa6f92abdabc8eed3bcd81c1f5fc38397cf06f72e319805", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "364267238d32b8ea7eb559830578d4a81bd8bacad95190d5e768fe055b0d241c", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f1aed0dc5712ce386b1c8eb6e9354d02c5d0cd665451412dc6ddac68747aff31", + "regex": "." + }, + { + "hash": "931d3a69e3c5ed0e40ab76279b804c4484fe0a56fee20147c802bbbe4a683d18", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "603d8d0a5bebc21e9cfd480e630a9a9b071fe7ab8216dfcc010df600ea0660a3", + "regex": "(?i)^https?\\:\\/\\/www\\.61060726\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3b03c6b5a5597b31bb6d2502dc0f69d7252c2186be2c735f6ac34914935d07cf", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "013d55b8c2df234c30ea07a63c455bd2ec36d5e8de0cdeb7d9903a92f6975191", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "709317af88633a70fd45e734bce833a261297fda461d3b871c9e5bf0ea671ad6", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0da4b9d62972fab1b1e2abbb1dad785c1e503bff9ffe39197a00fcf13b316c10", + "regex": "(?i)^https?\\:\\/\\/fwebserver\\-106018\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5bde27c6ffdd7c0f5edb42722c806662ecf64e73679c75aaddc78587491e3e11", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=http\\:[\\/\\\\]+ubokrtxbu\\.highpointmanufacturing\\.com[\\/\\\\]*\\?userid\\=bWFsbGlrLnBqQG5vcnRobGFiLmJpeg\\=\\=$" + }, + { + "hash": "9d64dc7cf88c5b49db340fdba3e0d5ef30dbc290d72cc7f04e6175e687c1ee61", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5486010698da7a40c098999679a51681ee3c9d3f169d8cf56d3f0fceb57f8437", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8e38cbf9fac2b112a2f28b72954531b131bee069cc72bd88cef73e0e6e785443", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4a49f40df21a5a89dd4d2497918fce3b8d6f1db53ceaf8ea783dfbfb4ef2f7a1", + "regex": "(?i)^https?\\:\\/\\/aru\\-25469ba\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245c9a685\\-5985ff77\\-3b34\\-4118\\-b764\\-7e6cf5dc748e\\-000000[\\/\\\\]+M2CN4WpzFHCdJ5AW2htyJS87vgQ\\=394(?:\\?|$)" + }, + { + "hash": "a43e8dba076a8e5844313406a29ca79f9ad4254368fb306ac602bf6dbc0adacd", + "regex": "(?i)^https?\\:\\/\\/aru\\-25469ba\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "faa444b75166feb16224615e0978ff43ca855079bdf241c621d917719091766d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-2" + }, + { + "hash": "28bb82aa6ac557afb55846400b4c38fb5082a75487e063378bb58f640bd6fb02", + "regex": "(?i)^https?\\:\\/\\/bambangprie67\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245c9a685\\-5985ff77\\-3b34\\-4118\\-b764\\-7e6cf5dc748e\\-000000[\\/\\\\]+\\-c9qhBU_SzvHU9h7x5IV428ziPA\\=394(?:\\?|$)" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttp\\%253A\\%252F\\%252Fiowtxreej\\.highpointmanufacturing\\.com\\%252F\\%253Fuserid\\%253DaW5mb0Bwb2x5em9vbS5ubA\\%253D\\%253D$" + }, + { + "hash": "d510cfd162c0187cdffddd77cf60c21b9f106302a12095510ab56d242201ccde", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "15e43639c0eb868d1c42e773464529b329e23bb018862a9c006d017cbdd1d129", + "regex": "." + }, + { + "hash": "0cb20f700963259bb0bcc8a075c6f3b4a5769773e2f3410d02aaa94dcd202085", + "regex": "(?i)^https?\\:\\/\\/www\\.supports\\.coinbase\\.157\\-230\\-91\\-252\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4a1104efd3a04025b4ab6ef7f55d396e1f2e101b4aa1d6c5b9023b84920445f8", + "regex": "(?i)^https?\\:\\/\\/aru\\-25469ba\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttp\\%253A\\%252F\\%252Fubokrtxbu\\.highpointmanufacturing\\.com\\%252F\\%253Fuserid\\%253DbWFsbGlrLnBqQG5vcnRobGFiLmJpeg\\%253D\\%253D$" + }, + { + "hash": "55d71e127b5fb960d6c4aa1cf4e98aed108c7273adccf3507f8c73c10fb21790", + "regex": "." + }, + { + "hash": "d4f6a65ffeab8c0de0632b2df2b946d03f27d4ccf0b1ad29e3da2ff19033ae52", + "regex": "(?i)^https?\\:\\/\\/mega\\-colecciones\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "80690c71b3e7f79af30dd2719e2f52b44fbcf207d8c9526042bc4b92add51e54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9010[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "082e57f2e2d26cef9dce59dc52ca9354979f8dc638ebc1ee9331506caf02032d", + "regex": "." + }, + { + "hash": "84ee385a79c6c86584ffb19ec1858078c09819446e6cbaa2bf30c92e451efa9c", + "regex": "." + }, + { + "hash": "26cab4fb9188e5e5fa7cf35947c72c89d66261fc27641edb24fdad7b439f27a2", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c903034b387d1e82e5e32512aa1cd8f19bea9f01c7c224702f4d0134390ab330", + "regex": "." + }, + { + "hash": "c254549067bfdd8fb1721fc875d1cbe736359bbf414936df9baa7be334c44c6c", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "eae5647ae284805abe59043ba51ea7045e89f921a0b8d568075991755cdd6cf3", + "regex": "." + }, + { + "hash": "476f85906067873710a2333a875f04d0f9d0d9bc5392865c1247707134f68967", + "regex": "(?i)^https?\\:\\/\\/xaqevaq\\-erdverqa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?88f47\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "a32c517a2426026f0bc996c30d164dff524a1c0f5d5a248a7808a27231e3b503", + "regex": "(?i)^https?\\:\\/\\/xaqevaq\\-erdverqa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7809a261b5d9348c0875272fd5d36cdc9800a7b096994de2363cb64d39dfc1fb", + "regex": "." + }, + { + "hash": "973e446775c67c136a4caa704c9b60e7adc69097f1d47d9a1227bbd5f86bfd47", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7d20f418da3cf5322cf157e7a88a7ee88dbb83c842003ca8f6a42d054211e801", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttp\\%253A\\%252F\\%252Fnchjycemo\\.highpointmanufacturing\\.com\\%252F\\%253Fuserid\\%253Dc2FoYXlvMDc0QGdtYWkuY29t$" + }, + { + "hash": "553078ffcc3a3ec5e8b98fff0c8519cff438ee5a647334dfc1b299a4ed187e3a", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b3138fd233f64bb188fac04bbf6aa6db641a9303fab002e561af244750655161", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2abb73fe7515accee35238a6a435266ca76c5383597d2ad2006cb6d867621420", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttp\\%3A\\%2F\\%2Fghfuwzcnl\\.highpointmanufacturing\\.com\\%2F\\%3Fuserid\\%3DbWFpbDFAYWRtaW5pc3RyYXRvci5jb20\\%3D$" + }, + { + "hash": "96ce9b563f836245dd77b13e267187d3f9ee08a461d8a3380435ac9c7410a621", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "75ab44880e902f4b7f415cc94d5c5c74f6eb03e66224f882e0519ca708ac550a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+cmf[\\/\\\\]+generic\\?ttd_pid\\=tapad\\&ttd_tpi\\=1\\&ttd_puid\\=d814ddf7\\-6c25\\-4285\\-ba5c\\-4ecd0b27de88\\%252Chttps\\%25253A\\%25252F\\%25252Fib\\.adnxs\\.com\\%25252Fgetuid\\%25253Fhttps\\%25253A\\%25252F\\%25252Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%25252Fmassive\\%25252Fseguro\\.html\\%25253F\\%25253F\\%25253F\\%25252Fecm3\\%25253Fid\\%25253D\\%252524UID\\%252C\\&gdpr\\=0\\&gdpr_consent\\=$" + }, + { + "hash": "6cf212506011cbd9ed8fa010fe956735fa1b34a0d0be5d55819eb89c80a26a7e", + "regex": "(?i)^https?\\:\\/\\/online\\-firstrust33iloginhtml\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9ef1421ee7a58d6e7f1ddd4150f5e511c715e4487844ec1e302f12f66fbe6988", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5bcc4421262b4f3a89eb04e060a8583064c8bc7dc4f80c86268776c7286fd9fb", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "92911a6ab5eb5efa39abffea6020cbe270326894031392b711ce66769e9c30cd", + "regex": "(?i)^https?\\:\\/\\/entisdfgsdjkfd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttp\\%3A\\%2F\\%2Fxqejfbhsv\\.highpointmanufacturing\\.com\\%2F\\%3Fuserid\\%3DUm9iaW5zb24uV2FsdWdlbWJlQHVnLmFpcnRlbC5jb20\\%3D$" + }, + { + "hash": "49b7c23435e3664a18d3aa4cdf58f4f9f06a33f720b3557b85110ba326dfaaf8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+league(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b94443a56ad1cec1d50f6681e5b3ccd668ae4abb88a29a6cc106a14598bb36a9", + "regex": "." + }, + { + "hash": "2ccd41ffc9cbca8598c4dee74eba6f9708b906da3da3fce374a48588cb624004", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b85b2e3ae6e47ae7de4e69157ed314ab3c1d274495c6a90a8706256b76238b4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ggyhhh" + }, + { + "hash": "5c680c4ed23d084ee890c7dfc4dcd9ff3a5ffeee65db1feb5b15a85f4d05a44f", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttp\\%253A\\%252F\\%252Fxqejfbhsv\\.highpointmanufacturing\\.com\\%252F\\%253Fuserid\\%253DUm9iaW5zb24uV2FsdWdlbWJlQHVnLmFpcnRlbC5jb20\\%253D$" + }, + { + "hash": "27450acff9ae453b0442eccd7fd963cef9bac6507bbd603b4a8e381ed55106b2", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f0a69a83012cb901afbf3f1ef37150401d9da9713a17d1ef46b09070dfb49346", + "regex": "(?i)^https?\\:\\/\\/hkwjd\\.com\\%E2\\%88\\%95hovcnkuokk\\%E2\\%88\\%95egqwz\\%E2\\%88\\%95iyyvpf\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\%20url\\?m\\=000\\&t\\=000\\&ip\\=106\\.161\\.65\\.206\\&language\\=ja\\-JP\\&d\\=000$" + }, + { + "hash": "8af840eb5921acccef20e7fa97b9e4aab694ed502aa8ba2bdb0c3011ae55d801", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d093b1840053f86b99ee82bde0d6f49d010dc87dcfaec54ae2138a93876d63de", + "regex": "(?i)^https?\\:\\/\\/entisdfgsdjkfd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafkreidru6eyyh2sa2xftz6ru7u7bopk5kepztjsyxkemlcohkulwdpgi4\\?filename\\=urchme\\.html$" + }, + { + "hash": "43bf6e871343e218e08aacf9a5ba754aa5c84aca6ddc350c0a34a9e7cf335625", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9d0cb59d5185196984485ec5f89b7b3853dbc3e5b877af56dba917a2de68a33d", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "70315f9fc045b601dcfed3773ed672b5b82d125cc6e3fcfb19b26c8cb37a091e", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ff6a692f6c8c9f1ca026087cc399c1ccd00840077fa9cc6cb6e40bd933d419d7", + "regex": "(?i)^https?\\:\\/\\/xaqevaq\\-erdverqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7e4cd9d1df2e9add9598076276d3ac926306f503f1186da708ae18a560cd724d", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7257e168dcffb3b02a71fd330e71cf7da2b5f899bbcb9fe8d9fa70e2581f8a72", + "regex": "(?i)^https?\\:\\/\\/www\\.server\\-1\\.welsfargo\\-udate\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2Fbafkreidru6eyyh2sa2xftz6ru7u7bopk5kepztjsyxkemlcohkulwdpgi4\\%3Ffilename\\%3Durchme\\.html$" + }, + { + "hash": "8c1b95dfab14ad4b90b30d1a1e2ba1415c61507c68fa6147be3a4ea1a85d500c", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3Fex\\%3Dzeotap\\%2F$" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=http\\:[\\/\\\\]+xqejfbhsv\\.highpointmanufacturing\\.com[\\/\\\\]*\\?userid\\=Um9iaW5zb24uV2FsdWdlbWJlQHVnLmFpcnRlbC5jb20\\=$" + }, + { + "hash": "3c23fc0ec9482365b2618a7231d841466371009ad3c53fad970eba0866e62256", + "regex": "(?i)^https?\\:\\/\\/xaqevaq\\-erdverqa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6ae4ed8a0d57828946c0005db36d1fedd7361a9aba25a264a7a0ec12e4a36bb9", + "regex": "." + }, + { + "hash": "64bbe2f39503c26d82f2123604021c57b42cc8ac907f0c2eecd429032c228286", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cdb0758bda1ee0674f8a520e30c1d21d16291b06c33b0c4804025cceaf7eb92d", + "regex": "(?i)^https?\\:\\/\\/pub\\-f87e9a7eaac842d39cf7215054386384\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4445ec6fb655a7c9cf06a88e1ea1f6e93db10bff555e14d76498053aac7839d9", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "01a5d349ee34f26f7ce603985ed3b1374cb65349cc8f5155d3119fee36460f85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+N3(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a65d1f30561e5b2c5bf65ae03a60ad6a1fb214def36319bed852427dddea878c", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttp\\%253A\\%252F\\%252Fcfnbwkhmd\\.highpointmanufacturing\\.com\\%252F\\%253Fuserid\\%253Dbm9maXRhQHRpZ2FwaWxhci5jb20\\%253D$" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=http\\:[\\/\\\\]+ghfuwzcnl\\.highpointmanufacturing\\.com[\\/\\\\]*\\?userid\\=bWFpbDFAYWRtaW5pc3RyYXRvci5jb20\\=$" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttp\\%253A\\%252F\\%252Fghfuwzcnl\\.highpointmanufacturing\\.com\\%252F\\%253Fuserid\\%253DbWFpbDFAYWRtaW5pc3RyYXRvci5jb20\\%253D$" + }, + { + "hash": "02326458708089eff69a9feb7ae091eba874d02098c6756613ae69dd5d195ed4", + "regex": "(?i)^https?\\:\\/\\/ismsuynmsosu\\-back\\-botton\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=http\\:[\\/\\\\]+nchjycemo\\.highpointmanufacturing\\.com[\\/\\\\]*\\?userid\\=c2FoYXlvMDc0QGdtYWkuY29t$" + }, + { + "hash": "cabe7393db0c00e9050f4e0754e2737c5b1c583171a5589f4715999cfafa9df8", + "regex": "(?i)^https?\\:\\/\\/entisdfgsdjkfd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8fe24909a59df8451218ff610592ff18c8bf5958cb30d7a0f73256d8cc47a8ca", + "regex": "(?i)^https?\\:\\/\\/entisdfgsdjkfd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d0b96c4b956fe9d7aab9bbb9c9c114a82c49c97047eadb1f2514163c8005ad3f", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttp\\%253A\\%252F\\%252Fetxugdebq\\.highpointmanufacturing\\.com\\%252F\\%253Fuserid\\%253DZ2FyeS5jb29rQGJlcHNvbHV0aW9ucy5jb20\\%253D$" + }, + { + "hash": "fdf69f736e4d27430db2411b580546e2851b6dcfb5bfbcb2e4ee720c10471c54", + "regex": "." + }, + { + "hash": "aa8bca7401ee599dd9179a7da0ea602054d3283e8324d1c28032f426abce9435", + "regex": "(?i)^https?\\:\\/\\/xaqevaq\\-erdverqa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "44456f00d89886b8627b9ec3fbc32e3029b96bf28986f76ee833b8d3816368e3", + "regex": "." + }, + { + "hash": "f5d0d5e9b2b0d8623bba9a1b07bcde93d70f46b339db99dae1c1dfd9bfe39217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9964[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6541965fc2b55a01d88dcba879a06a4ecd493f5a358f1727e773d8361b8910a7", + "regex": "." + }, + { + "hash": "6ee538682946b6693f08a437bdc714aedc320e725f2e3caa73ab34a29c167b09", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "09b3475e6213d1eda27872eb83b02ab5ffcee23e15f74e2c839f4cd3c9fc381d", + "regex": "(?i)^https?\\:\\/\\/xaqevaq\\-erdverqa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "31c4f3c69c4feae7d8fe63b700b0105b5dbe033d154a20d8574a100be89a61bc", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8e64307af4455489a651db148dbd1d962ad11d9e6e70b2a9a8514d79592c6d43", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4388c3fc0470b502080cc6f31ef624ea0ae9f488521302ff79cc54c35d734231", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cabea398a1cbd92d2a0d5de4dcacfa561f90165f3adda49366f1e5213b201e36", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?93b5f\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "a199975fcad198b30a36a38919374cce3f2f9f9bd923f76d51b743109236d832", + "regex": "(?i)^https?\\:\\/\\/xaqevaq\\-erdverqa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttp\\%3A\\%2F\\%2Fnchjycemo\\.highpointmanufacturing\\.com\\%2F\\%3Fuserid\\%3Dc2FoYXlvMDc0QGdtYWkuY29t$" + }, + { + "hash": "3dc5e813ceef0dd26b905b7613dff959efc1e21aa908f43d2d5407a1a5da2b85", + "regex": "(?i)^https?\\:\\/\\/xaqevaq\\-erdverqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "31a52cdc8ca8cbe91543e75b77f1723cec7123702d256b816957cae3fba1f574", + "regex": "(?i)^https?\\:\\/\\/xaqevaq\\-erdverqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3fcafef2235b80f25f11ed2386a0cd8ac6fec3177ef09430300cbe778189c61a", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7e27c4da24c18d6b69e887921e54fe53d55e6a63a8d59e57f16bb5d498d6d647", + "regex": "(?i)^https?\\:\\/\\/entisdfgsdjkfd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d635b9bb282ddea4cffe19943c3a166c947cf6d0ddb8670bf93ba8f28c4b666b", + "regex": "(?i)^https?\\:\\/\\/pub\\-fb308286c5364ab9a9c6b3e8051c51dd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "340812b3a5ba8b9c49d2cef2d1415e65183044f7a4cc8cd46ca2b6ef32d7390e", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1d883aad6f4cd9f06e653fcb25646c633b8bbc837ff900e4354a5d210f3d9d15", + "regex": "." + }, + { + "hash": "bd817e57b53612f5b96b18db8b4647fdc7c71ecd319eb7060545410886e8ccab", + "regex": "." + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?3e084\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "721f6568c21038d4aea8088875c3dbbe3d4296020d2d4a37ff7802205af11dbe", + "regex": "(?i)^https?\\:\\/\\/howtohackanyrobloxgamenodownloads\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f341baea85ef77877a48cc65ccc4c5e47aff7f735385764ecf35a2addba946f6", + "regex": "." + }, + { + "hash": "8ba11412b9505e0de07ca1cbb8eaa28652b8508e52a3ab0413d8965ff21bc763", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttp\\%253A\\%252F\\%252Fhgckpmilb\\.highpointmanufacturing\\.com\\%252F\\%253Fuserid\\%253DdHdqb0BwZXZhbnMuY28udWs\\%253D$" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?ex\\=zeotap[\\/\\\\]+$" + }, + { + "hash": "3bf997d5dd1c5e0c0d9d21ac79bfd77d7936475f04d4ab6f32210bdc67350dbc", + "regex": "." + }, + { + "hash": "19827fd8e7e3a7484ed4c1046a5144030888624d041dd129992aa69162428ee0", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "549ccc3aa224d2bd2215f424532fd07a36cc4c1be581039a633fd54c3b036364", + "regex": "(?i)^https?\\:\\/\\/entisdfgsdjkfd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5706a45c33e48cf96491cb34e99fe74eb31c755b9a1c0ca420d368c30eb3d8f3", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttp\\%3A\\%2F\\%2Fhgckpmilb\\.highpointmanufacturing\\.com\\%2F\\%3Fuserid\\%3DdHdqb0BwZXZhbnMuY28udWs\\%3D$" + }, + { + "hash": "20f7c05a04ae2953b6d33be3cbec29dddf5e2b686293673a9a986afb8856a2b3", + "regex": "." + }, + { + "hash": "58c01d4adf6e1ef60938e2d9e8ab47a9419e6307c488cc739b498c2c89e13fe1", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "063a7e3d0f694555f30c9d644bb7811194e227019c0095d27b748ae748d0d097", + "regex": "(?i)^https?\\:\\/\\/entisdfgsdjkfd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5845ccc69e2cbc8557e39d4ec4e8cf9d89312405cff9a747176fdce258f5b5d7", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9a7bcc7db88f51757ea39c0c837d5eb614d829895455a0e80771c20f102c0bf1", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a54d9289bf3a48c4aad29acce717fd45dff6a83aadf50ac030c12eac46cd47ca", + "regex": "(?i)^https?\\:\\/\\/sharkbitehacksrobloxscript\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "570e13cc49184f1f39ca9fd7a3e39d5fe198c202b3378da1791ff49f97b074ce", + "regex": "." + }, + { + "hash": "b6a8933682b0fcf616c238a9fffc2c7d24b2b414a1df4329c1a69306780db155", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2f1ccdec13dbe562e7352f9986c0cc06f8e1e188ef3f526b2d5c764611319948", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9109[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=http\\:[\\/\\\\]+hgckpmilb\\.highpointmanufacturing\\.com[\\/\\\\]*\\?userid\\=dHdqb0BwZXZhbnMuY28udWs\\=$" + }, + { + "hash": "1a5800b972c11a2c369457b99d018bd2749b5bb0b46f7ee67012c835355a6868", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1add49d0235df57e3781b023dd1931b9198938dff55802fa2cb244c9092cc67a", + "regex": "." + }, + { + "hash": "cb87cb5e758d15d20d528ac14a43886c0deddfcfa768ab7eafa2c80b1930f767", + "regex": "(?i)^https?\\:\\/\\/securevisionfcu1html\\-l\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6e86fd21db5154ddcdeb456d2975dc000cf7f1e2cf8e32c88651d6f81d9b440f", + "regex": "(?i)^https?\\:\\/\\/mytelstrawebmailupg024\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "21b80cc008e2657950b49c88cfd905d70922a57fdad7d1072f9e46b809f3be2c", + "regex": "(?i)^https?\\:\\/\\/netdsfisdfksd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "22a1f2742ec23c0afc436a486e8786c0ccaf87bf7b3195a016acdc9f00e56a3d", + "regex": "(?i)^https?\\:\\/\\/entisdfgsdjkfd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b6a8933682b0fcf616c238a9fffc2c7d24b2b414a1df4329c1a69306780db155", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "84e12198546ffa082bd63f19d260b3e65b73e679167c92a98b39ef5a62be3fe4", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252Fbafkreidru6eyyh2sa2xftz6ru7u7bopk5kepztjsyxkemlcohkulwdpgi4\\%253Ffilename\\%253Durchme\\.html$" + }, + { + "hash": "14c26b9e070c879f19e24f89942ccdfef11d16545e02f7f6289ea47c809c55ed", + "regex": "(?i)^https?\\:\\/\\/videofullhd\\-1080p\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a39cbb703088c8e92cb858c2d30ae889de9b4318c36dea0b4f14c6380d881f09", + "regex": "." + }, + { + "hash": "7bf67f8a3f2f3af221933b1a1877d7cd89ae128e64fe657812b060dcdb54c4fa", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "330776a1ff93d7d8af4197413e192ba6c1f42a76cb82c9a8e075f1591823213e", + "regex": "(?i)^https?\\:\\/\\/sdefsddsf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6ca428c6bbbbab14f0127b4197361dc2b8d32fc01b82f398a0e72bf6431653a9", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "04c856fae21ac1a6a0fb45f5b617ef003b4580edea52f09fde50445869e0d1f1", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "da8d4e6a1bbfe67d1a25844149b78b90db45510c725d9525326575ed8daf697e", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a46f7d7011dca4f790eca2f42f3a97e65e65127f4ed9c65b9cc36ccebce1efb", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7cd5d54c67aff7e6eb58c8ee52412246fe25e55cce619593bbb88d83760f2574", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+espk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99f7b8672057a82898e0de29138dd48c7875e18f88fd592055fc244a305fb79a", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "88101c7c6ced3e29f7ad4fdab021fcfc7ba953b09cd3e4ee7a6a65d14dd4058c", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d4202d0ba9a0a8dd407d8a42977f342027420ddc3a3db8486d79ba794aba58c0", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f29ac075724f13980083a5b123e0c404a5e9f2dce911b465da95863571957944", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "762facc81a79d19f5955f843529f6ed7de9b83137781358a9f9fc255f1cc9a18", + "regex": "." + }, + { + "hash": "5173fec90190857be47eaa7597e5774ccb68a8f72cf6316ce56239db55c5bcb0", + "regex": "(?i)^https?\\:\\/\\/okluytinzabgrtucasoea\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "431ebe1299d9c4f6a4edf7f1e0b92478e7f907ec63c96ac2cae7a7513c48b7c3", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "05d0c6df2aedb3ee3924bad84655cfbae6d7c50ba6f01412bd4879fbb9d32c00", + "regex": "(?i)^https?\\:\\/\\/sdefsddsf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f064b8178bc57edabbd97a6b2a08c5d60e49b224a9cc7eb3ac47b2aeaf5bc5a2", + "regex": "(?i)^https?\\:\\/\\/chinmayee421\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f6d7bfe8fd868d6d0cf91cb8a3790b7f4414c20d404567ece7a5e8d1a10d5e9e", + "regex": "(?i)^https?\\:\\/\\/gfhgfabhdfbbnhd55\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bd49c5e5cbd212f9dc5a2b5e49a3d83fcf7524bb3cc17aaa3a9b2b378d293fc5", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8b4d136141c3d460e8ed1139fbfc91c5a12d48db58042c0ee4540caa779a9e78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?rid\\=HrAQO0a$" + }, + { + "hash": "a1d62f27b102d3a199fe66be2ee12c6fdb72a00f5d7996f1f9dacbc1079c8cef", + "regex": "." + }, + { + "hash": "3389629f7e4caf308c44a10522b06587e910c622ce4153fe7c02dd8a162ce954", + "regex": "." + }, + { + "hash": "674ac0047b273d408d5bf0b6c0e676182ba97f3616f83702075de72447c97094", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ed980ed5fcbcb7466c1dd8350f7032f935a8c93b9af41782da8a5b0a7adc7510", + "regex": "(?i)^https?\\:\\/\\/sdefsddsf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4570f647fce6e22cda6b573877301d7a9a464f567e61cdd22af131d5f14cfe6f", + "regex": "." + }, + { + "hash": "7eee4846cb358d4a44ff1fe34b52fced3571a6a7b6adb5ee169a8f2e8df72bb8", + "regex": "(?i)^https?\\:\\/\\/fdgfdg74dfgfgd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d4cbc9e0f09d9365894e3fd43b95b535dc993de1f28249f7caa2ddbba5323b32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help\\.html(?:\\?|$)" + }, + { + "hash": "d3e76e5e788aadca31689d8f2cfadd598cdecc4761a23955137187488608b433", + "regex": "." + }, + { + "hash": "f7b7091482fd3477e32f1078107604044c573451ae7984a3b41465720a92a550", + "regex": "(?i)^https?\\:\\/\\/okluytinzabgrtucasoea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c684881b6d1d94f384b62faf80ef02085fef8cacbfebea1aaa68c3d12fbefc53", + "regex": "." + }, + { + "hash": "83bf0df866f1efc6ffff762e75d67acb1c5b99954f726dba94e62931014969c4", + "regex": "(?i)^https?\\:\\/\\/dfgfdbdffdg62\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cdda9125b13fac88c1b9fd9f21f47799433ae513917dc2d4851873950c1fb004", + "regex": "(?i)^https?\\:\\/\\/alkiu87\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ef5994e460161554c96dda907b2e8da22d6cb786c33429fb36c806dd285a5065", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1fe8f\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "4e5ab9015f948e7b66b93e4e4faf510dd70cd342e5b8d2aa05295e5a8d4eb205", + "regex": "(?i)^https?\\:\\/\\/alkiu87\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4c7e3324aa078d4029d1b7eb752694e58f091baad57c8478556ac6678bd79826", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdfg54565\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cedbde5230e874a31655a2fa14aa4439088603e88ba7968ed626a9cba361b1ef", + "regex": "(?i)^https?\\:\\/\\/sdfdfgdfg55965\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c87fbfa5bab691ae8bca620e6a27c54029d8c3d518af186381b41035be20f997", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cfa6da4ed867ddfbe9d02003da007ea83d2d493f480b0f94a25dab68a36341ff", + "regex": "(?i)^https?\\:\\/\\/svgfdsfgsdgf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d689192aef2db2743674a228b98043d1602291846ff076cc8f3b55ead2f06271", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "68844aaabe02ac567494cb9b20e5c223170cd3d50604b9027f2d4cfc5410e181", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Organization_DocuCloud_Broadcast_Mandatory\\-Reauthentication\\.html(?:\\?|$)" + }, + { + "hash": "1c7a436c74a4b60a13fcb111ba751fe051c4b0d1839d5ffff8871acd9f301bcb", + "regex": "(?i)^https?\\:\\/\\/sdfsdfudyfgds565\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7d356a052dc6099ced84bacdc6a8f6f6866af5bb2167f0c7b8aea12feb6f8f6c", + "regex": "(?i)^https?\\:\\/\\/bebseoi\\-sadf0\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "dfbe054f0536cd106922a01d928d0660e415b0cded417a730c02f6af79c832c0", + "regex": "(?i)^https?\\:\\/\\/sdfdfgdfg55965\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "428491d6ca88ed53476f0bc6a37b39ced0cfee4bb813f1630222b2c9c0345c70", + "regex": "(?i)^https?\\:\\/\\/two\\-oneo\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e88c6894a59fb72ab33e43933151aae970b40714910ceb6515bbeb1d1620d23c", + "regex": "(?i)^https?\\:\\/\\/alkiu87\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e6dbbe252c3e470e2fcb9e8fd6e23a43e791258c80ea0bd3cbe4928237b50b31", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e3b3ce5d7f2ddbb0019de57ef80e5bae4eb015d37866d12499475e9b9c32564c", + "regex": "(?i)^https?\\:\\/\\/svgfdsfgsdgf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3cb947617d235520c73d5bdc6556edf9bb62c15f1ec28e0666c2f4649d454f12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wetransfer\\-file64\\.cgis72855\\.cloud" + }, + { + "hash": "6ec72a4bedf3caf2951e4dab331cbf0aec298855e04effbfaaccdb90c3afc36b", + "regex": "(?i)^https?\\:\\/\\/okluytinzabgrtucasoea\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "93abfb1c934d4490bc9700b63cc6d07587c85c3de67d30c60437b3b5304d6ac5", + "regex": "(?i)^https?\\:\\/\\/sdfdfgdfg55965\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c8e4ceeae61089ff648bdc29ce6984351787b5275730dde9131545a12063e278", + "regex": "(?i)^https?\\:\\/\\/fdgfdg74dfgfgd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "005ddc976e007182c023f6c79c2280075b5d291c200f89ff8cb07ace573f370f", + "regex": "." + }, + { + "hash": "3cdde54a4e6e5abe2665530ff5bd66160d886f0a87fe9c22dee32fb7973ecc0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index_dhl\\.html" + }, + { + "hash": "f51706905408834f33b23306f9dd93243e9bbdd332ee9251a1cf77a3dcf8ebf5", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2b2a9573b39c23df980a64e88639046a1ca63c1eb4b58d3bf2ce818a8311e028", + "regex": "." + }, + { + "hash": "7173cf80537c2ef0c49af062181f99ad1bffe213b857603f6d16cc193434aa65", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdfg54565\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1135e060474f53d032046e181e99ce74bf36a38e09b071513b6e7998a961bc0d", + "regex": "(?i)^https?\\:\\/\\/videofullhd\\-1080p\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b4dba04cba1b8ea2e15fe8505150cec59f48088c28718e50b489fa0162563c83", + "regex": "(?i)^https?\\:\\/\\/fdgfdg74dfgfgd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "616fadcbc9ca6d44c27cf1008cfae777798e00a887e10671769f6a1759bc13e9", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5e2fedc05fc55f8a1064709cf1bb62652ec65e4eeaf1f941e8fc211da4b71420", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "98408ee93eefffc1c629ff80bb269796fd196896416fffa83aa89f353f252071", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6ca43ea804152d414dcc1b550708f4d7ca7bb3f422ae948fcf5ad022b56c5529", + "regex": "(?i)^https?\\:\\/\\/dfgfdbdffdg62\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b579dabc76645322c1878f4c48fe024d88a4da4adf913f745a07be7b68524edb", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f45623905a51fd3e29dc5bd5eb2806a37e1f9306080072b9e1d5f7e2678e5e43", + "regex": "(?i)^https?\\:\\/\\/two\\-oneo\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8d1c5afc6dc4c10fe3da87f1cf09a997724ea7438af3d37250bc4d94962882c1", + "regex": "(?i)^https?\\:\\/\\/tuni\\-sunmelk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3228dc71b0284918d2b5b7ef5a830662795b13c8296b15af11a1dd99dac5cc8b", + "regex": "(?i)^https?\\:\\/\\/two\\-oneo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4ca4341098918c105628c0248e9ea6623aed808bdbaf2bfe0ee95edb5e167378", + "regex": "(?i)^https?\\:\\/\\/tuni\\-sunmelk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "67c440448e9bf68d4a4511812d61d72b716fd8943e785b725201fa5927454f6e", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "60269eddb325d2c1ba737df1f9cf97d64723ac577411cdb858e37f1f0c99a227", + "regex": "(?i)^https?\\:\\/\\/svgfdsfgsdgf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cb95dde72cc869677221af7f171b385707abf3816d478fc644a4fdf8121feea1", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2f4b9f0294d64b8b6df8dea627872e2ca4a46d9d3b473b0c789a0b0247084f51", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdfg54565\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "eaafa2f71fd5d50fcf790aac03844ebbd7118bb185a0a67e148b24c10627ef79", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdfg54565\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e1604f3bd623d3742b69b471d402149de1a664ffcd39694cd13060f82b75d79b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+in(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "79ee09420ea25834c4d1a91ab9e0fe2793afd1c74ad0a97bd0be86a0234f84a6", + "regex": "." + }, + { + "hash": "b92b1e61698e6cc4f4ced7442eb56ccfe154f3d08c5e64f96c322b0a1f6435d9", + "regex": "." + }, + { + "hash": "3e3174eae57bf9f55044980f3a9533bcc6b7de5538ffa9f589ae52ba22db29e7", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c976695749ce6ada590ef9b85d2668b5df87cfc7fbaafbadcb578f99e37ff0be", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1c382eb4bcf048a449142be11ed2959b7a518982a952a02bcb7c4218e49553e5", + "regex": "(?i)^https?\\:\\/\\/videofullhd\\-1080p\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e2dd41c56fe0c5e49f1cef4e07f801dbf487a15b22c6cf8b484b028acf029f8b", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1e29abfdf012bf1858b5a049e992a6220996aa763cf3c9a3d8b4611aae114388", + "regex": "(?i)^https?\\:\\/\\/sdfsdfudyfgds565\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fce8440096c8a3c321726cbd0cd3285f354b9d888dc568ad18fcbf7698644b44", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdfg54565\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "14b0c7caf05cb27d60dae0e7aeb4c1dcdbf4cf43689ee07381f0546a12bff732", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "39b7f2f9f1bd640ddc96d0475232d2eed3b2afe24b3455724926b292be71ef7e", + "regex": "(?i)^https?\\:\\/\\/fdgfdg74dfgfgd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8633e16f25a1656bf59c8b9313e505b1574a8b19cfe19bd773a54dfd6bd9a902", + "regex": "(?i)^https?\\:\\/\\/sdefsddsf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a6eb01d9aa588c39f61e40680896bece8e01a990a4832cdbd3d27df7b49f02f3", + "regex": "(?i)^https?\\:\\/\\/videofullhd\\-1080p\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "23fa463f56e0f99c5e1e775bd952374b2ce9e71eafc71ccda16b272f1cbc70eb", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "82f0a762b42c308368655c02321a7b1fd21199b84c58875954d34209930162cb", + "regex": "(?i)^https?\\:\\/\\/two\\-oneo\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "18c9b25f65f4347f65b21f12547b0fb506d704239dbc5c6572e1cd569307c65f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfudyfgds565\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6880a16a752288ea2aa5f262225fdf8b7c751deb5405e3548b8b1793a682cb62", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ec83092c5c2ff0207cb937e189d8178dd4b7275d597808ee5fc046b45f759d01", + "regex": "(?i)^https?\\:\\/\\/svgfdsfgsdgf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c2ad314d5e5b84d13f2d02e280c9f75545f5c3dd250fe6653d30af571c54cfa0", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d28f9da358036644a9b94aeb4486f59775779d4c5644679660adc56e2e43a76c", + "regex": "(?i)^https?\\:\\/\\/sdefsddsf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "60f4c2cdf5700e2b05ef31d704f1c4f105805569c0564639045b3b4d9b35bfd6", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0e6aa76b3e39316cd39351b8e9be88a4c1fd90d63f162794f5b9b16a750cb234", + "regex": "(?i)^https?\\:\\/\\/att\\-support\\-100006\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1f8a6fca70a591937a4d8b3afbddf02c3dcf136b4529e7f0296ba913299de244", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?35764\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "014a9364c14759d44705c0dc170b9dc655c574c85cb22b14a8ecfb59d90f35be", + "regex": "." + }, + { + "hash": "d3aa281af8b8e054a02a96166305c0caf61044ee0dec852257c2d13f5de3e63f", + "regex": "(?i)^https?\\:\\/\\/two\\-oneo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fb7c51c00a0cc21693b21b93699c832d7ffe4583c5f5233b5e446d565d8d3ef0", + "regex": "(?i)^https?\\:\\/\\/sdfdfgdfg55965\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "eca3e118abb58edc22b97e34cf2b1c01c33f1f72d921d336151d79770c305043", + "regex": "." + }, + { + "hash": "b2c84b7dbed2f622813bea172227544738aefb2a5531f2408ca9fde8f3865aef", + "regex": "." + }, + { + "hash": "4c4d94ee6c9c4f42b0706687cd71d941835586d3437d621d7645adb41d41ef00", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "41780b43aeb5766431e70466487b9e22a1bf10fd2373bbc48225f37917c9c061", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "84fee308652ce4c7e676750653f5273a886682ab8d8683cf4b5d1f987a3c39a7", + "regex": "(?i)^https?\\:\\/\\/svgfdsfgsdgf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7683475f0c095702f20740c31a698bcfa1aa05995d66b1432c5e23d4d6e67df5", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1e11d2f35a2cf05183eaa665712c7b589cd257b77ffc7bc638a49891b192c231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+media(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95ffdffd64cdc958ddeebe14148d7e98348cd2cc1345f66cbcf64734bb396d33", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2d37a3f75dc171cfd724a30a9524b763d99d5e0e7c492a08bc0d872582829d1", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "770db447d15ee7541830f51f0e032e8252106007b20f7db06ee0077f4fa5f331", + "regex": "(?i)^https?\\:\\/\\/svgfdsfgsdgf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "56a5415e7cb37042d49c3fb6be8ff7b1421612bb27c7813c2dda2656acd8a629", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2833dffc0031c139e69a674542059e1f7213f9655f0809c2198579698a52fbda", + "regex": "." + }, + { + "hash": "0542675f6001a66e1f4b14e71164f19f6f41f02fab1386273be176481b1f0b3f", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b825faca262a8b93c79fb812fe9835b150d3f30970c56dd8fbd320f5ab6a2ccc", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f18b74f013b03eabe7b91fb3584f82caa9c6719f20553d893b72a176f4429fb8", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efe65768128b52245529eec00b9346e8c6cf57651ae5e0d6b05718aecd478e0c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b582db9e75b35f4a62aa16b3a8a160acafbf7dea3286c7262322ac675f687e1", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdfg54565\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a73c7e62ece7ed7d8a6233c3e8cd66066f807c6e41ae8d179ee2be571ff3be97", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0800747cc156e9270e4b545f6ed2775a44dce574e49f4b6eecf7604e775860b0", + "regex": "(?i)^https?\\:\\/\\/gfhgfabhdfbbnhd55\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e1a75b653ea4a5ded8692320707ae9f786718ef762547d66d2d30d648da5b049", + "regex": "." + }, + { + "hash": "ec9f1446bdc1105521fdc25f6e7f1d3e6870f2f68dcf4269ff165fa30b7a2a11", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "df91ae53f4ebea7082ffb3f535b7cd730a0ae12d369065974e76670c2ee17e65", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "16c594ad0e8d04f9264d3bed0e1a813295cdf9eba9569b9ba2e6bb0ad0ca872e", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9f8ad1e230627ae479ced15b36101a92f7f4b1e67a1386bcd20b1be2be58d682", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245ad9eae\\-d314b9fe\\-8f24\\-4592\\-9ec3\\-d3ce390d5cbb\\-000000[\\/\\\\]+zfnasd9YVm6\\-JBfk3Tm\\-wlxaW\\-o\\=394(?:\\?|$)" + }, + { + "hash": "a6fe4fc3da21c77abe001f39f2e9525975014cac3dc0b1fd9fbced5a1c2aca4a", + "regex": "(?i)^https?\\:\\/\\/videofullhd\\-1080p\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "da729b8a0d5891b51e157da867527eb333f801679cf40d994c7a2f0a7863c8ee", + "regex": "(?i)^https?\\:\\/\\/alkiu87\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2077dd25553b8e65dadaf0436c20dfa82c8633f8087c34e93a12f189609b8ceb", + "regex": "(?i)^https?\\:\\/\\/okluytinzabgrtucasoea\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "68801aff5d8889cf84807d28914b09631d17d3ae3c3e643a182d9f3758ce749c", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "835ca465ab826ade434237193f92f4b1ed6f289b75b2666e536e5f8e9818f323", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mex(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ae1f0884d773ff80fc1f889b728f216695dcd2894f91289b1b12db75a357a5c8", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "661a763e0fe1e9c737b4ee52dfec0fe9b18f85c04dc816990ba997cd2de2d3d7", + "regex": "(?i)^https?\\:\\/\\/bebseoi\\-sadf0\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "01cf90d9439ec8e6cb3bb81d9b388af2c4e097837a177a2eecd5d10c6198a2b9", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "914cc8fc67678ee993f72104d4cb033810cb9be80726214f917c6a7ce552ccf7", + "regex": "(?i)^https?\\:\\/\\/svgfdsfgsdgf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8fc2623a629e1a995d8ce24ee61369f16f353b6789ee5c17c9bf2d8c8e68f51e", + "regex": "." + }, + { + "hash": "202af58e94e1119aeccf19a504025b4b68a7f451b2c14c917a385900259b2780", + "regex": "(?i)^https?\\:\\/\\/svgfdsfgsdgf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ed440522f08c2bb47d3648e892f633e92a7d2a984419d90c712f6e3b2abfbc50", + "regex": "(?i)^https?\\:\\/\\/videofullhd\\-1080p\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a8c65e756d14096200e7ab00fbb43999ebf65f9f3ee22458e46616c3476ba88d", + "regex": "(?i)^https?\\:\\/\\/two\\-oneo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8c452bc426f0fb6abbdbe0090bd6bcd5cf5979fbeaf5aed2cde13e3589075abf", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7206eed53f230d2c7ecd01dd978ac3c159a1cf97e7a2250fc26b433b60a8773e", + "regex": "(?i)^https?\\:\\/\\/jjgghhjghgh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "44524386dfc9839189d7405ca5402088a7ee4987a888ab72898064ddaec2d5a6", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "dce93d0be7788a9f0832f7ee50bfac47be58bfe8917f29012fcc1473d9f4f6fd", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7217138e0dada39d7c76b4768e68a30488fa73f3109fc8ff88bd24f47bf43c3", + "regex": "(?i)^https?\\:\\/\\/be10bonusumuz\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8e4a3d53cb75ad8acc0f43717a9352b72b2e230fcdcb42d2cdda96beab77d2c2", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdfg54565\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1822fbaad7405e27f4c806dc1d48a6b4fe5cba4f9671b418eac7cc267fcc27f2", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "146c018f64fe366b5a763dfe7db89328e48487e0f7903869ada603cedae927a5", + "regex": "(?i)^https?\\:\\/\\/gaqrddns6555656677866\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4b4cbc780109b02ed1c515ddbc409fd13ed25f42690b1ddc36b28f56292c228d", + "regex": "." + }, + { + "hash": "bca2d7ce34a17a1cdcbd28e237892ed9b906c5f9531621245ac53cb647dfbc8c", + "regex": "(?i)^https?\\:\\/\\/tuni\\-sunmelk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "35f7a51efad4292d63ff48f20fee18060b53a58ca57156313c26014d31cbc6aa", + "regex": "(?i)^https?\\:\\/\\/sdefsddsf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7e41d71d6d8c32b6562934db96a3d9c575e884f8014e160e8c65001bf56c4a4b", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "541f6c533fa5169c82e5b5c165770abf75e6329df1a4530cfb80789d303dfa6e", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "29f395e5f61ddffc1a170466ee2ac7cc81f880881b5befeb07df472f58f4ef37", + "regex": "." + }, + { + "hash": "97ff975670c41da897ea2a1f16d6a65778b905e3fb6dbaa5296c3ee9bd33e2cb", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245ad9eae\\-d314b9fe\\-8f24\\-4592\\-9ec3\\-d3ce390d5cbb\\-000000[\\/\\\\]+Q0\\-wRJPdTu3GmZCY9Zf_AGtjJGY\\=394(?:\\?|$)" + }, + { + "hash": "8c3eb0f529bb9bca9c677fb8b998a0a67753fdab82db9d856027fe574bce1374", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "609d99071878dc21ccf403a950e7e993d5ad0fab772448199b20a5a2de57e1e2", + "regex": "(?i)^https?\\:\\/\\/dfgfdbdffdg62\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "19900ee2b7ba1cbe54491e78c9caf63b7b1caf033121131f108e966ccd7d3388", + "regex": "(?i)^https?\\:\\/\\/okluytinzabgrtucasoea\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1ba0786bad09f0bd4075ac5274157923ec37ac3cd79e9be46c5391856f43eca6", + "regex": "(?i)^https?\\:\\/\\/alkiu87\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9a01a9821749f3b516d692d300982f46b42cee90e1ff549e871bb39fd277d952", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0cfe58fea4c853357d46ef73ac4ba79c62182417469624e9ebc712661c40007e", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "59ec4b7d0970ab4e6dc4ef712f96bd8b929588ccc53b6fbbc028d938a53e2db9", + "regex": "(?i)^https?\\:\\/\\/bebseoi\\-sadf0\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ea08c3f6bf14819b7848814530351bb517f9f7fc5602fa69f5e70a58ab96850d", + "regex": "(?i)^https?\\:\\/\\/sdefsddsf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e9786b1dd8e787a3eb3c5c70790d9cf83c68092dfc7fb7acb281d88e1f5a05b3", + "regex": "(?i)^https?\\:\\/\\/tuni\\-sunmelk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d8772a3c742cfd7dd94e81073db8fe9f8134c2e282980e5d65232a011b707a10", + "regex": "(?i)^https?\\:\\/\\/jjgghhjghgh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bf0c45525478277cc9298f5de5d2416ed56667d037d89766b9e9a78d0ebb1fa4", + "regex": "." + }, + { + "hash": "b06d8e670d124354a611b052a1db9dee02acab0ee6e2090e80a958de4f4538a2", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fef32f7509b08d3f6e71cae06cbf30419b3f15081a013c7f8502a7cd6e0330cd", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3943c944cbfceea44329b4188f5c450a5b6f08dfc876b92954c51af0ee56ffd7", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "877dc20f99a7401bfcf24ec12e37420ff72ee1c0cbe6826fb2b61f1b945ffa36", + "regex": "(?i)^https?\\:\\/\\/deva\\-2002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "1b12d890a8413720498e5ade13d7c288a2fffed6f2220e4c3638c840b36efc96", + "regex": "(?i)^https?\\:\\/\\/sdfsdfudyfgds565\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ea837cbf1432f348c8c8ecd425275dad8ecd4d131aafb075aac60258d40e1ac2", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a033c28a49eabd03982b1541add79bd9ca08ded6647ad941d657ac74631137c8", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "38a4a358d63b1cd7f6940c23e42917b1322631aafbb7f2de431dbbe0aa7a420d", + "regex": "(?i)^https?\\:\\/\\/gfhgfabhdfbbnhd55\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1d6c4c8671268f7ec00c5c2d6506a7905881b2a417928e4ad0d40b647ba5cbf9", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?eae35\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "10e0fd2775760fddd19a5f7aec749f7639b7b220dee051da08b10aeaade352fb", + "regex": "." + }, + { + "hash": "97fff762d68ea94e78d8a7c7b2f0e1b129064511499d2bb5b5fa0dd167b5f2ff", + "regex": "(?i)^https?\\:\\/\\/sdefsddsf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "57ba6f51de19c00415983cb2bfce86c70607be71424a0617c33ecd3a10ead7ba", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192457bf2c1\\-ee5cb0f0\\-572a\\-4ba8\\-9bbd\\-ab8fe87c3423\\-000000[\\/\\\\]+ovphomYw80YOGfSwwVatMtNQnB4\\=394(?:\\?|$)" + }, + { + "hash": "632d32e1d6abb8d589ce6762fdf24658697b07ec450373a79b90be41e2acb013", + "regex": "(?i)^https?\\:\\/\\/bebseoi\\-sadf0\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9446cfd3a6aa8146b74f299cf7c5449f46ac29991f1cb99068dda776f7e9e9bd", + "regex": "(?i)^https?\\:\\/\\/two\\-oneo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ec32f7320c98c00849ef3fadc9d476803738c10f3ff7bc2e636b49c3877e5aba", + "regex": "(?i)^https?\\:\\/\\/home\\-101247\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "165fe06cd4970f079f4306f1caba48ecc20e760deb58a295e932bada034c2163", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "eeea2b89bc7f1ed6684e0c438688b133a8753591638d3086b41e1fe13e8516cd", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e875b563729d1b634d0dece064c2a7473b50dc0dddb974ef85d816fe5706f31e", + "regex": "(?i)^https?\\:\\/\\/videofullhd\\-1080p\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b2fbcd40504b6d9315331e80534d3df946bffbab2fdd8f87fdb033ca2f5dd006", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7c0a8c5eb9239722de4b0fbafe9203de148d5afd81d341bccf7ccc2e2d611a62", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1b32762713f0bf4e533cce69b436beab3dc09b434e6ed88ba669b850f67be594", + "regex": "(?i)^https?\\:\\/\\/sdfsdfudyfgds565\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c76e6e9491b584591cffac4682ed330ab40a3b0600115fee78dc59758c8d8055", + "regex": "." + }, + { + "hash": "7f9a7941a1803380bc8541ffbd0abcb4358c05bf8ddabf612f73ba062c889633", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "01e4b6592f1137504fa39343c0a836fe320ffdc41416b73ecc1d5d040b190eff", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdndfg161\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "648c4dcf5f95d64751e8fe20f2869f6499826ffea809e7189684ab3ed06b0a9c", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "492bd6b0823a23f6a614b3ff27ca673593b5937c051a58f8cf6596e308436dd0", + "regex": "." + }, + { + "hash": "704999c1901939c6f57b2aae490d98834242bda123c32385fc9740ddd0f053a2", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdndfg161\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c010dd9de5d16a6e0e1a7ae7bdf829c4cedb3bf7ec53fac2a6e4458a830156f9", + "regex": "(?i)^https?\\:\\/\\/bebseoi\\-sadf0\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "86c20054462f94aff104ee93aeb08a83a438bfb56038ad9e542db6fc11269f63", + "regex": "(?i)^https?\\:\\/\\/sdfdfgdfg55965\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a6ff657f5cee2705f071b3a528adf2ba65f68bfa8438aedfa7f84a316b41e2db", + "regex": "(?i)^https?\\:\\/\\/bebseoi\\-sadf0\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "da38c430d1721261a519ded9152509ddbeba48530f0e5d9ead43cf375646a57a", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdndfg161\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c8731c49b648f110f66df3d96034bae16dc28859fe49584819f46b2981a0c8ef", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "210a6afc0d469940464b90f21be3be2d1172dd1b691a07e36871f3ba4f441d9c", + "regex": "(?i)^https?\\:\\/\\/alkiu87\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d8b39bfe011288c2dd6a04f4c9ee6364bfc44f58b7e1c0c554ab0f2a064b15a7", + "regex": "." + }, + { + "hash": "5fee8d9342eb5beb818c2fcce882b47c0e780fa8d5a597779c259b61ee71acc4", + "regex": "(?i)^https?\\:\\/\\/videofullhd\\-1080p\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "372779aa1822a3c92196bd27106dbb9a3d67a2a8467317d6dd9176fd304ab10e", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3c08fd98c1842b37216fc0c435fe77788724613c2337a90b036f0c085d87b5cf", + "regex": "." + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192457bf2c1\\-ee5cb0f0\\-572a\\-4ba8\\-9bbd\\-ab8fe87c3423\\-000000[\\/\\\\]+Zf5pPdNbs5m9qJ41Pai2HA7aSVQ\\=394(?:\\?|$)" + }, + { + "hash": "7b6d89d811bf36b5ec59e61e879deac54b5c93b3ce868a72d73ef134bfb63704", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3ccbe596276aad680f25ca7c67e34e69b84a05ad79bf36b1f80460f3bb699de", + "regex": "(?i)^https?\\:\\/\\/alkiu87\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f4a890d45ec5b301d93705a6943200bf992a97c4421f050396a1980575a4c88f", + "regex": "(?i)^https?\\:\\/\\/sdfdfgdfg55965\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "329d1b162409315da88cb7e5538ef761fcc75eeff5d80e13e4dcd429b91e58e4", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f02ea936693d1aa5fbd81d5a10ed44bc443ecb3e61b05b499ed2cd940ead865c", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "46aa9a38aea4e0a906673f5e1d7299905c36aa2deeb5c10884bd7737e5395dc4", + "regex": "." + }, + { + "hash": "726883e47764557e475c0dd74c517483fec6a46849b8ac6f7dba7a6c075267c8", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9bb8c5e330cffab93e4a6fa7bb4c79d5817e216988f516561e8f86ff1a10b6ad", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "db189bf57a501cf039849d31fa3392b33af19402140255caa4053feff7c28057", + "regex": "(?i)^https?\\:\\/\\/okluytinzabgrtucasoea\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "95f0baf52e7eeda516071a045c6e264097950e6b034a052aae325265247963da", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6d9e4594f7af98aff0f4b0700d2523183382d97a81e8cf78f997ff8bad27e130", + "regex": "(?i)^https?\\:\\/\\/svgfdsfgsdgf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6575ca51d2de595f067fd50c561df19c88af66ff7e6636786c6b86d2a5623d16", + "regex": "(?i)^https?\\:\\/\\/two\\-oneo\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eced340cfbed55c50db29e580624b26e88645c194595e3c7f039e79365d1a6af", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2082d8019d2ab89b23af9a019a02c9805516089dd732e43f3927d71ee124c38b", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7f43c03f08f19f99dbe8a85037ce97bf36e1e7fc09b8d327e93245a07874d2e9", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ac001d37337ac1d95241c180df92179b27e28b1601ec8f74a666d4187d2415e4", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3c964e45f855a60f5539b90fe49eff58ed675bdbba84c8f5ea3aa7bb93930313", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register72116(?:\\?|$)" + }, + { + "hash": "e19965a085035c725be5db20c5148141d5d7965c952cfb46963a2b19070035c7", + "regex": "(?i)^https?\\:\\/\\/fdgfdg74dfgfgd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b0d49e530a86029b7d2c7114c55b7f5729ab3e674a4f7e4e85e6bdddc1c7c19", + "regex": "(?i)^https?\\:\\/\\/sdfsdfudyfgds565\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d76036ea41ba38b72f275f159326e916c7323a52bef4c8ff749f10199078111f", + "regex": "(?i)^https?\\:\\/\\/gfhgfabhdfbbnhd55\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a9db54d0b29602dfffd67c82b55c706fff5c47b7931592a45219ee8feb54a1a7", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2fe8e21a0ed10dbf1c9c78c8e2bdcbf1f9fcf4154605570f41b6802756bd624d", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1d8c230e4d9e7aa92c36942023202fd01432c38f4c614d7b4e10779459e76b75", + "regex": "." + }, + { + "hash": "2efbafed3a8e907623302107ed39837f322d2cec4fa0941a65efd3b9f8f40a80", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "677558f330ce8a98d80fe22cf4018d42834d8e0ccd92f88f32999815c677b761", + "regex": "(?i)^https?\\:\\/\\/fdgfdg74dfgfgd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "616ffaccdf1ee28135f6bb88fe73ea66837e82964d27a0084ff00c09dae1af1e", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f2873758774ebb4dbabe0fd1af7207453e067fffdc3ed7d7a7c9d41ccc2b758a", + "regex": "." + }, + { + "hash": "8fcf97b99541e75e8c9886e128d3d78612110f66236e37b0965dc2bfbdb1fb10", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f8859ca2495a39dcdc4caf63575f7d3063ae173eb347160e2df07e1e7db85c3f", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "cb82e43192b59ed3abc6db58f3a4d3b14fb204ee4a19b2366ca0d4eeadb2fb9d", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdndfg161\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a01d8be7ded1dc631ad73bcc338a0f688245f5fa3cb4970f76c3ed118a614707", + "regex": "(?i)^https?\\:\\/\\/bebseoi\\-sadf0\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8085450ae377efc4c7961763bf3e7230c94a626626803d727af9947ec610e7b8", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0321799964ab5b7c9c3d4869048d240125e5fd0266cf1785d5b99cdad8cf0a6b", + "regex": "(?i)^https?\\:\\/\\/www\\.54\\-93\\-143\\-6\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d9ce4450ad97284b323f4d87576cd68c7d6e1399e1c5f70eaa98f43ca88fdb2f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfudyfgds565\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "72485c4bb23953dec6279a8bc8bade60076bea86fd5d4d9e8eaf6856fb48ae3b", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bc2ce54371fef70a8970dc55a3cf12c6bf2fb05f6de3ad13c3286a39bbc3cb95", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "724852247c423b81b0d1a3c5bed11510e7eee3f8cf2dd2d48550c2f2415b25c5", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b0c24630cc054870834ccb4513d26d85c8f9b5e76ceeec7c947cfb05f11ef70e", + "regex": "(?i)^https?\\:\\/\\/alkiu87\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0db23c8a15f6b028be1443dba1c8dc6678e31f4e84c623348f505f9d33f98a", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8794c09f35f8e66f6d24711d368c672ad4d33a314dbd4a24ccc291551b5ba87c", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdndfg161\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c976b27d4b429d915cefaf0e67484e078bee405402cd93e7408d27e5481385f2", + "regex": "." + }, + { + "hash": "6145db1e1bc805fbb25118e05c83e7f8f48721e43f1c5490eee8f826d70d6ab8", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "af9ddb711d8412c7a6b12006f03e708acf067ded97a27ae3e3bf25386c0599bd", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "564284cd32f8f2daf819435cc2f7c956f47667b9e81d050713f42ba5f9652f18", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e3740cb26f0dff7dff69919a73c627b2e9ba540b8cc67741f59b87244a112c9a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\%EA\\%B9\\%80\\%EC\\%84\\%9C\\%EC\\%9A\\%B8\\%EC\\%A2\\%85\\%EC\\%9D\\%80[\\/\\\\]+HE\\-e3l7FWo49d0Bspo0q2FaMMM7D821Usd49j63ngd94bfro\\.html\\?2pCR\\=bun\\@hyundai\\.com$" + }, + { + "hash": "670d8ce8b1ccfda16f9000c05a3c0c73ef6feca849fbf02fc076161934f831c4", + "regex": "(?i)^https?\\:\\/\\/sdfdfgdfg55965\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1673c913ba7eae64fe0818b954b8c4155f6cbd0b8e30824b103508e1c043e3e3", + "regex": "(?i)^https?\\:\\/\\/pub\\-86bf953b2637443a98776e3d9762b7af\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "416fbd397976034d81d0fabf4653b1e46586958ebf137080d04562527390fd80", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "961d158cc2063f9347c62b17a4c5982eb679f939417cd297efd52b22836117c0", + "regex": "(?i)^https?\\:\\/\\/dfgfdbdffdg62\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b4f8f94bb600f7ae1773fe77fb1a00071007cc3e7bee3b2d8f4e947e70e3491f", + "regex": "." + }, + { + "hash": "e4f70b9e10220135b2d99b6b3313667e8cae8297968589b63dac615a8123cfb5", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "37898bdec3a21233b82dbf9bef715be3425e421d0b662ea861d256a55760089d", + "regex": "(?i)^https?\\:\\/\\/gfhgfabhdfbbnhd55\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e491055abcc4eeb969461c6b19efaa19d21488f8615e995c37369d79673a2b04", + "regex": "(?i)^https?\\:\\/\\/dfgdfdfgdf95558\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c358f808493a06ff63c4ec8a1199a05307c65528e3dc42146124087cc3f9eaff", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bfa8236ad4fd9211de76c7413404fb34cfed7ccf153c5c997cbfa576b6ad373a", + "regex": "(?i)^https?\\:\\/\\/nakalantadnabatang\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0b27b4d4acf3ed186339054f29b065a2af5ed09ebc05d98bd20a17663262205f", + "regex": "(?i)^https?\\:\\/\\/fdgfdg74dfgfgd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "599107cc93403bc3d632a224e1364049877f90418471716a6bfd6de4decdd0c3", + "regex": "(?i)^https?\\:\\/\\/sdfdfgdfg55965\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e8a8948b881e5b7fcfe48e563dece59254ef412b4afa68665efa45aa23780720", + "regex": "(?i)^https?\\:\\/\\/okluytinzabgrtucasoea\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "70bcf39596f9ebe69bfa12dca15c3b5d1ef8b776cd44c7abfaf95be1abc91413", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "efcb84b4aa4c3c6446a2f034c85462b5d270127b81845a708a03df01a55b3729", + "regex": "(?i)^https?\\:\\/\\/gfhgfabhdfbbnhd55\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f4a8ffba4a68431d96983e68d33a0d0a73df4ac93ff1bbb1b5ac619bcbccb345", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3bd0763fff16e8f17af368874f7e9686786b3a91857120df6baef99e176fcda4", + "regex": "(?i)^https?\\:\\/\\/robuxedfin\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3c8fe572d5a8973db1290c5abf3f97309818335e76cfaa8a487c32bc5a27195b", + "regex": "(?i)^https?\\:\\/\\/okluytinzabgrtucasoea\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b56114208476f873d6ab5cd78f4a195ca5e38b2ed143582dad6b2a15e53c689d", + "regex": "(?i)^https?\\:\\/\\/goold\\-por\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80798914e0d1b02018aed2f4d2029df814e99e26e8706c87504ac22866053b48", + "regex": "(?i)^https?\\:\\/\\/ghghgjhgu767676\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "32db78037b82d2abe2f2931bbef53e2689fda3b23039701b41b50de28cd1437e", + "regex": "(?i)^https?\\:\\/\\/hahamarit173\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e881ca1634a3f1ee56f0a95058a6a4be97010c0be5657a93258586a9251fe592", + "regex": "(?i)^https?\\:\\/\\/gffdg5dfgd596\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ece4cedf24da82ad4d735d7799cad88c7b8b8f618fdd45bd2fc2bf889f1d3bff", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfg9595\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "df863409e325f2b6037d6ea1c040605d7f0e61073ba49a5a6653663667bc5d8b", + "regex": "(?i)^https?\\:\\/\\/bebseoi\\-sadf0\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c003422c24351e63f813568b7a6e844173f4e156e3fbd51d3a64cbdd06dad7b5", + "regex": "." + }, + { + "hash": "d80f247174e180363a6eb2bcf6c3a6c8caaeea4a69ea47f1bc47716f507bb3d6", + "regex": "(?i)^https?\\:\\/\\/sdfdfgdfg55965\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6169fb00c9aee6dc4d7d3b8c703dfc437d415f81bfeb0489811e7ac481a69b8e", + "regex": "." + }, + { + "hash": "c20fcae78acaa14af5a752dfb50af7f18a95df2574a9c1907d919b2462851adb", + "regex": "(?i)^https?\\:\\/\\/videofullhd\\-1080p\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c133423c668334091c9bb8defdf246f0d93577f2140e09bd9238cae30f8da259", + "regex": "." + }, + { + "hash": "041e7f3bba095123fe39f5d39cbdb4b3aae5b07f9664598204270dc05106308c", + "regex": "(?i)^https?\\:\\/\\/dgdfhdfug9558\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "74cfc53a92044618df14aa7635c335550b067c3083b6bef106712c533c119430", + "regex": "(?i)^https?\\:\\/\\/okluytinzabgrtucasoea\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "536de9b113f5485edfb678ef5d6dbe33e60a5d89770c2e2b2b2d5b9224cff0ea", + "regex": "(?i)^https?\\:\\/\\/dcdshf62638245\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a85e967bf28d20cc7e168cf59b46db64144584a46bc7adc52b8973289fdfc797", + "regex": "." + }, + { + "hash": "a49926125a2a7fd234e91a0abc1ed364fe9298dc2b06004b949bc55e4bcdd6ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=c3tTCtOglZDeZ\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "0361cc9df9eb993953c08c7e64d09d040c2685a8eb753e6bcba03814dd6173b7", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "24016aed5863b75a5cdee28a5bf44d75f73f5ebdee04ef01d632eca2cb30672d", + "regex": "(?i)^https?\\:\\/\\/dhfbhsdbfbs484784\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3856312d474558fc850218129d6b778df1f2c114d5f437b8993a34e2cd2c60bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "258eb3416b1377436bbbd5506e42d8f18977ca6bccf58482080994cb692c7476", + "regex": "(?i)^https?\\:\\/\\/mdfhvsd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ff1c1d00990ffa65ea32507c18ea59dbeee2443044ddc479fe7c217fb11c6c19", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "295f2c5745a2c951ad1447bab509feab89fbc9c6320655aa5ed29e57e7c19979", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1985f89ac593509f897e31c5d3a9128b9f4f0b1d850650645a407d8b9e846a3f", + "regex": "(?i)^https?\\:\\/\\/dhfbhsdbfbs484784\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ec55e41fc130795a03db1e04f0e228ef996ab9f864530bb4804b68059a2fff5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=c3tTCtOglZDeZ\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "c3839f3a13b276715c4c3e9443de7d9a1daea535f3cbb3ab782d30c940ed339b", + "regex": "(?i)^https?\\:\\/\\/dfsbbdyhgbdfg9555\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b63ce8e894a28eac7efd365fea8d627c8db48f342cba5fbabc2fabbf4eded49e", + "regex": "." + }, + { + "hash": "da61963327b92e12e4b853d142cbabe1545493d9e143bc14aa98d601eb336abb", + "regex": "(?i)^https?\\:\\/\\/abuysdgasd62t348atsdgi7ss8t3w7asd\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb66ae814e573f5333c86b753ff60853741edf13b688ef708dcebcceaf4d47c5", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "66bcd309cfd9dc3b58ca5ddba62abc3f926c53386d3e57dc20070d8c5e09799a", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b42ab7c0ed41727c09dcfbd40b14f85856dfc1ecaacacaec2301a8aad329ed57", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a7da712cc80243884ab35225bc9341ee56aa4b93a5fda3d84b4e4e97c2a670a2", + "regex": "(?i)^https?\\:\\/\\/iy32r78yeihfdf8dysoihf367ryfewhriws\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7b5ddb748428ea1b61957144b06f5853b62e3d6a9e5d1cdb4f33dd5b399c1a0a", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6ea2d301ca5f74200573cc9cde027f16161bc68283710445b93f536fbc6ada74", + "regex": "(?i)^https?\\:\\/\\/zhdsbfhbshfdsf11225\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "67cd91775708b17d5a0a5e4c1c13289452f72cd24d87e24238f4bb74e136329a", + "regex": "(?i)^https?\\:\\/\\/mdfhvsd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a1a651feadacefe606a100f2c476b0dd76ce733832697628cb5e39ae70a19f92", + "regex": "(?i)^https?\\:\\/\\/dhfbhsdbfbs484784\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ec55e41fc130795a03db1e04f0e228ef996ab9f864530bb4804b68059a2fff5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=cKTZ70m6UyCIq\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "194363909ed929fd252c76b5c639dcde0913cda41012db774adb02453a48c77f", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "194d86287b8ddec691b5226f06ab0c26beebe3aa2417b5233390cc46b23c788b", + "regex": "(?i)^https?\\:\\/\\/zhdsbfhbshfdsf11225\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b4164fd0a91d9d72a03cf8d0dfdae14bfd32ea3eedd69720f5b86810f0420dc7", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd623f729c24c5d2e198f95e7194a4e1f98ee695b84f3f5bbbc0c93b6402dfbb", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8554947a2b9f6006dbdd0575264bbd5a3640f9caad3ed021e6eee23ee1f62589", + "regex": "(?i)^https?\\:\\/\\/bsdfdsbfhsdbh12555\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "082e52ce5c7544bf43cb3fbb4c9b4ad3a13d2263c89b54ba91fc017b631e95b6", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5bd2e44f1475f76150652cd410f8eb4e6c2ea3e482e15655da2258d970d9d8b5", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID$" + }, + { + "hash": "ce21d84307fb40d1661c056d7ce942d51591bf97ae2ea57aa750a52891eb1320", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5b635101b5d19452f6397d1e1601afb1b7418c120902e4554a9613c5e87595c5", + "regex": "(?i)^https?\\:\\/\\/dfsbbdyhgbdfg9555\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0c638d86dd6ca9260f6fa9557b51e2967bf562f5283a4bf81e1dac4ed1578181", + "regex": "." + }, + { + "hash": "2bf5661dc648ea34094759c8a35b880424c61059b2a8fdc7b2a0ae630c9f9684", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caca28f949f870b27f12e77cb83e4afc140324ef04654ac3eeed0ad81556c9d6", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fd736f58fa29097903c8d266db346ef01b87f52fc503d6abd79efee7c6baf296", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "99385906e1f863c9586ad8e905d9119cf377b9b8cf750da170fd9a43a88a39f7", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c344e0c810bcd59ee25f28f75b0c7c2f0b16ad0456843af4391fd631c21ccc3d", + "regex": "(?i)^https?\\:\\/\\/mdfhvsd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "daf122d39e4ab7ffa409c7e6c64bab5afde6249c9f9c7e504dd52537c379d6fe", + "regex": "(?i)^https?\\:\\/\\/dfsbbdyhgbdfg9555\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "58168407661325c64593c1e3f4d0bb5688bea1f30c4efa9eaad09c44e7b737e4", + "regex": "(?i)^https?\\:\\/\\/mdfhvsd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "23efe9b28c4e7c0dc3ce553f6df2d4095329f17a6281853ac74e4871fc94199d", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "74810ad4b38d6e6f411b8be14ba0908ea0646df7de586d65362a5981238e6721", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "12b4a57046578daeae48fa38a503194bc380cc4c8f0363cdd77ae8f2952397b2", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8315f29e43961da26d3dcbbc4b642f3b5e71d9a150cc5d296854e34d3c8048fb", + "regex": "(?i)^https?\\:\\/\\/bsdfhbdshbfh8448\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3a80e1e6b653071cb5e68422f5ff0493273d7453dd1c89e228296b111dc42071", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8286cbd4565c7af68324b0d86b7c54889016b687d581f1a2a6c7333150574a69", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9297f8dd1fb537609ad20d1af70f71abe9785f1c734d81bec052cc100def83f1", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5fe271cf1ac2142397b7dc93239129dd8917190034af6dd265876f22d1ddb8d", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ad1c42d426c6cadbef5c5e503566863553c6f42230cbb0b7fac0c748d34ca934", + "regex": "(?i)^https?\\:\\/\\/iy32r78yeihfdf8dysoihf367ryfewhriws\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "063a7058b886aed6af0db8d139efaf0bc5fae76507cf9d6826519b673ac27d99", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "feecd3d86d8f6e5f4a1afe21daef53f0774058c55909c88adfdc2b036597c995", + "regex": "(?i)^https?\\:\\/\\/abuysdgasd62t348atsdgi7ss8t3w7asd\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a58ac3f789efcfa88d8567b45c4b456b9c2ea09ec06f0db29a1d04d8c60a7a63", + "regex": "(?i)^https?\\:\\/\\/dhfbhsdbfbs484784\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "75346486aba084119044e241a20d0893925c4c849ed46ff031fce51ee99cf6d7", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f0efb91ef79eb55911e81a93adabdc00d188ae4023ca9605543e45b77305e9fc", + "regex": "(?i)^https?\\:\\/\\/abuysdgasd62t348atsdgi7ss8t3w7asd\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eeceb8b8f79c8230aa87cf22e80a2ec21615c865ff496e3e6991b68809560569", + "regex": "(?i)^https?\\:\\/\\/srv621618\\.hstgr\\.cloud(?:\\:(?:80|443))?[\\/\\\\]+web" + }, + { + "hash": "c4df1aeed86897314338bfc3f85b9526db66e6aa60e6ce5818167757be588aa8", + "regex": "(?i)^https?\\:\\/\\/pub\\-106af0f992664b04b242874c219a6505\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "350e0e22f612497d789c9df7c0c5f0c22c7e98e9f3e2202764e95d47c1e16410", + "regex": "." + }, + { + "hash": "32b161c3110d512e1da89fc4de3c173c82ea9d3b269e30be1a8488c96ef9641d", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e315bddd60fb847089b330d72aaef5a817526fe6514abf6dad2e4eeaf931781d", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "08243f73ef107c6adccb4a3a0ef70ebb7e1da54697ce7b63d354e788ecd09c81", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=c4LNyohqqGP8I\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "829393da335cf75131ebedd19c6f053c223b010798bcdb651b8c63afec9d4e59", + "regex": "." + }, + { + "hash": "44ed0743e08e0ddf28c48efd38bb0aae3281f1c4d7c7af4c305e76286080234d", + "regex": "(?i)^https?\\:\\/\\/bsdfdsbfhsdbh12555\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "446d269ec7a4d984afcebb6e01b05762e073b259bb2579938075a9b1e0845f45", + "regex": "(?i)^https?\\:\\/\\/dfsbbdyhgbdfg9555\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "25c5fda40e143b093c0a1022f9915f5ec519c6aef440b2e5d6ace504a4147e84", + "regex": "(?i)^https?\\:\\/\\/dhfbhsdbfbs484784\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cfc881cb5045ef707e31de5254489817f8c1b72fb1f36935bc8acfe635d20620", + "regex": "(?i)^https?\\:\\/\\/zhdsbfhbshfdsf11225\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2dba9040419dff67926c1a600cfb0f000a09e5113eddfce21cbb31f77efef335", + "regex": "(?i)^https?\\:\\/\\/abuysdgasd62t348atsdgi7ss8t3w7asd\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?ex\\=zeotap$" + }, + { + "hash": "9a1cb354939b129483487e566fe8d7dffac6031b284ad3c6c571cd943dacb3eb", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "e941b46ea39a565d3ab0f5f2f84e464b2acc998581904fed69832a5a215b75c7", + "regex": "(?i)^https?\\:\\/\\/app\\-conbaseverify\\.146\\-190\\-158\\-8\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b52b0bc48dc7f5a67f6e52336fa0f5cc9c92839e71d31df3ec6ead71f2645c6f", + "regex": "(?i)^https?\\:\\/\\/dfsbbdyhgbdfg9555\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a925bd78d01ed9a25a042beeaaba9dd36a390b49881969c40bc67304aca67aab", + "regex": "(?i)^https?\\:\\/\\/bsdfdsbfhsdbh12555\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c4585a39df93c75825f2e9d10f5e0430a9620f94d8df37d1b66c570b98411f0c", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45ac4701f766a19892e627a086c44c1d3185a491e067f74621933456ad581348", + "regex": "(?i)^https?\\:\\/\\/zhdsbfhbshfdsf11225\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ca23428994d80d63bb5be9aca54dfd0169a8647837366a1db57be73b22adb330", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7553004063b0b24da45e1690292d289be8a614f37704d33fdb02d674a7cc7d05", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "18a759acc6ee69dff80afcdaaa39cc10c52a1adfa72638456e03bb75b1298d59", + "regex": "(?i)^https?\\:\\/\\/iy32r78yeihfdf8dysoihf367ryfewhriws\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e68869628bfb3e63901459ef84fe1a92e61ff10789096bcc6a5297694e07a782", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5b484b60fbe0c5b9c7dd065c66a607898f63372fa18f0c39f3e9f31017436fa7", + "regex": "(?i)^https?\\:\\/\\/mdfhvsd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0fcc355c5f191dca252a68c9b956c131847726cbbdc94d4291614d41b838a7cd", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?ex\\=zeotap$" + }, + { + "hash": "b1960cd633307436c1a5fa4cad8501f0dcd8b9fc26773f348a475127a276dcdb", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f75355fdf0969d17b49c6839b4a8e00d27f5715970ade08498549f3b0666716d", + "regex": "(?i)^https?\\:\\/\\/sign\\-in\\-att\\-107093\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4652bdf9b8e6b0fc7ae4c84ccff351d9118c5ab4efbbcb4846b71b1720e1814", + "regex": "(?i)^https?\\:\\/\\/zhdsbfhbshfdsf11225\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ebc56e843d964a397b1f2f13afac3759ae40c13b2841cf8e7d9e717b3ee51156", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=c4LNyohqqGP8I\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "3856312d474558fc850218129d6b778df1f2c114d5f437b8993a34e2cd2c60bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "8bdd0bd7deeca66803dd3ce9f952f2ce2f1393910598b09b71a46dccd54714fd", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f08fa1b49648faffcc352d86745a1e072e05946396bc2798463073d012fc2757", + "regex": "(?i)^https?\\:\\/\\/bsdfhbdshbfh8448\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c5a6139459e1af347014822643299a9e51a8a2b7793b36a6fe692838cdeda131", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9687f65c3cb6d854fc86093c86e19fa6ab8e47dacba645ee2225bca11fafdd4f", + "regex": "(?i)^https?\\:\\/\\/abuysdgasd62t348atsdgi7ss8t3w7asd\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c17e8548f775611855f6458d653c8ebe23c8a11f86b328cce59ca81c219109", + "regex": "(?i)^https?\\:\\/\\/mail\\.app\\-conbaseverify\\.146\\-190\\-158\\-8\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3c05ecdccfe560a723123bee264ba048ed55eba24c63aefca9a45da01abbc90b", + "regex": "(?i)^https?\\:\\/\\/abuysdgasd62t348atsdgi7ss8t3w7asd\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9e38e6a2f0ccf20827621dd9becfb0d38e645f43f9833b71e04f3643e7f6c58", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e6dbc2392422ffed1b4ef4250cd0581ebf6e3ce1290276c005bcad08466be7fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=c4lVUOafxSFL5\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "ab7d6b9ffef1ae581f6d7a70529d5f921776c8bf53879477735f2445ec6d7964", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4b27d406ec13c301539fe20d93fad370ddb0f16d98bd5950d8616c447d679892", + "regex": "(?i)^https?\\:\\/\\/bsdfhbdshbfh8448\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d92add69aa003037d45416d2b6db8d45480e0ceafa89bd227240e35d8e923380", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=cAAU3O1P80CeM\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "d9728a47a9877d6472f7fee43576faa450cf617a558e31855136b80faf2a6ba3", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5015fb8e00fd624ff571576bc60560b83457256f7f10dbbd613b8dc222a58170", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7e3e11b4ca154e3146619c5c793d2d69a1ba73dbea9321c39e50b2723ca5e2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=c4YdIeuWXTljB\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "e2f475e00d8e91cde600e6476d4e2774fb26c49a54902f2cb429c544d10af3de", + "regex": "(?i)^https?\\:\\/\\/iy32r78yeihfdf8dysoihf367ryfewhriws\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b67cc0cfd4859571383c22088a5636b8e91593b9027734782bed40a47315b470", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "360a950a6a89d914b32da18e3d020d23a3033494eed1d5fbf67b7c30de093f1a", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "33c5302d7d1b3dd3103948c1fb204bc0133992cf8f359c4349d23e2a233b8138", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc148d95e83af29d99bd41bc71f2282c01a04f404eb8ac1792e13405ad0ede72", + "regex": "(?i)^https?\\:\\/\\/bsdfhbdshbfh8448\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ac0bcd30d0c13f3a2783a060ee11ffafdfc08443ffc785609b0f36a7ed59cbb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixc\\.html(?:\\?|$)" + }, + { + "hash": "5e114ca060ccb6d164347182e580f84165926d6b8cfe63da4f292671276d98ec", + "regex": "(?i)^https?\\:\\/\\/bsdfhbdshbfh8448\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4cd5acfb45956b4f2f5b6695b2883360f33233d87740823863c8829885c39251", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8c151b05f08f94a7a0ba833408362e264ea02ca6b99cd750c34a9dc8c96bf891", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4fdf3698bbfe6233010cc20a1500d8bc5b22a5347a6239f47419d2500b677d2a", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "25d65b1b889569f07777bffb786d5760f095aa3a2ef676696faea939cff15409", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f6177b98dec7df4479e8eaed3f5f8fd2559cb3b8ed038708568bc5ef3defccf6", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "85d95a4c2f1f14b59558a8deff48cdd78dea37e62e82850c094e931752f82dbc", + "regex": "(?i)^https?\\:\\/\\/zhdsbfhbshfdsf11225\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e4820428b12320e33cae108d40277c267e7e26e67cdff6596ec0cc34ac515919", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c2c2df1f7ead48726dcf0574fb7f1c299648ea80ea8ca71d048bdfb9e8193ac2", + "regex": "(?i)^https?\\:\\/\\/bsdfhbdshbfh8448\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b625101f151150a20a1f9f30500213a8214d6b2aca01866f85222d0eecd12f17", + "regex": "(?i)^https?\\:\\/\\/abuysdgasd62t348atsdgi7ss8t3w7asd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3929d0f95a38c6a5b9fcb97106a900282f7ebb9d8c30a3545b295f881e6fd03d", + "regex": "." + }, + { + "hash": "ec55e41fc130795a03db1e04f0e228ef996ab9f864530bb4804b68059a2fff5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=c2dyJII4juGv1\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "47412031e5d28be306a8ad92b1b0081f00e4bcb6cd2e16f8a292a75fd0fcaeab", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?532f2\\&id\\=aurora\\-interiors\\.com$" + }, + { + "hash": "a19d7d2e00d7910a9a92cb14ce0fa85cb584f5290c920baebb7fa9717db4cfc5", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "57aac86874c8a33fb9ac67885ea118ae705b2cce3ecaf241103e2a58d2373746", + "regex": "(?i)^https?\\:\\/\\/iy32r78yeihfdf8dysoihf367ryfewhriws\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "30a259a5fd86ef04aedc1ab483219a8feaac52636f1c16f6ec5ad5a400be5698", + "regex": "(?i)^https?\\:\\/\\/abuysdgasd62t348atsdgi7ss8t3w7asd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00e4ccde930a522133f87bacb8f4fb3fc727c56b9633b127d6a16fafbd79bf90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html" + }, + { + "hash": "39a3ae4bed20cc3d7dddb6770dcc5daddaea202f04b10f9bffbb7f981cd86e01", + "regex": "(?i)^https?\\:\\/\\/bsdfdsbfhsdbh12555\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "01e2afc5a61ca19d26d465b0ac227ba99234ce311722f77c858357305f74aa98", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0e952b5ae9a87094ae3d66ed72ae6efbd26380c53b122ff2be74412e7db930b4", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1fa43cb57455f1a91c7392f8b0e45cf1ffac31a9148eb0cd14f5aefdf8474abc", + "regex": "(?i)^https?\\:\\/\\/pub\\-d8e1c56292f940158fd41e67e644731b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8c218a38086c73b30eebffb3c528d1ccd492b98854129b94dfa0e1ae5f0351ce", + "regex": "(?i)^https?\\:\\/\\/mdfhvsd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7e4f17ded92c4e803d25ee8e447598d3063aeb2ba26d9e279d02340e444c2e6a", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1ba09d764b92ff2c9fbb894378011c451f860e0d39ef0fac91234ab8edd3397d", + "regex": "(?i)^https?\\:\\/\\/sign\\-in\\-att\\-106845\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a941ed2897ba54dc81cea23dddc54fa4e69e2b4445585bfa6fa74b8e1f5d8213", + "regex": "(?i)^https?\\:\\/\\/bsdfdsbfhsdbh12555\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7c988fa063db8d87ce11cb46e4e7d41a6fca71292f082c6a9dbc274e3dbf0164", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "44bde675cf8dd7315e638549404d4935b6733b4c1290e4cb75c5ff0d73c3b32d", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "23fae7d4764af6bef3b3bf079ff1cb0b7d525befb81859aaafe9d5174f809001", + "regex": "(?i)^https?\\:\\/\\/dfsbbdyhgbdfg9555\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b47fd1a02db5c40711964812e6cb60e49e1161fb68ed93df000dab26e001329d", + "regex": "(?i)^https?\\:\\/\\/iy32r78yeihfdf8dysoihf367ryfewhriws\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7e88e9af710b4184e64bd529b6873c18a23f7d8eb3a6a4b133b48246bc1f94b4", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cf24b3ee8c4487d1374603c3ce669aedb63e8225ce27609d693a22c8a73f950b", + "regex": "(?i)^https?\\:\\/\\/bsdfhbdshbfh8448\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e4c1d0eb3309b5f01fafdd06baf004bf4702ef85aa2d2f4b8d207d3ac8785337", + "regex": "(?i)^https?\\:\\/\\/bsdfdsbfhsdbh12555\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fd841fc477326f2c7c13e63cb0cd8195d386ba5c09519f0cad5a444a7a73e48c", + "regex": "(?i)^https?\\:\\/\\/att\\-108711\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "95deb30694f060b0d3355f6efe073ef44ae1df862cb12a4491168a4bafa13423", + "regex": "(?i)^https?\\:\\/\\/iy32r78yeihfdf8dysoihf367ryfewhriws\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8e955b141a0d4584db515a0ba4cff3aa3512effee2babf7212758e0d92dc2659", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "688cc4a456402a3d44ee348e8d9df7c5eb21519071c4d70edbe7353e4dfdbe2c", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7eb25b93311fd1783efcf23a4f6b97282e43d93402f6f2c9d848d135748a5644", + "regex": "(?i)^https?\\:\\/\\/zhdsbfhbshfdsf11225\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "81fdb914924474624843e513d2c439381a979895e056608b6d12f30f64739ae8", + "regex": "." + }, + { + "hash": "488f3a6693254b174d962a578abb2a713d100ab02dc1d9866086106337ad246b", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "be0d4abd8208da62a2f4c673d553593e411cd6262b49f3f36fcb8546d296fb22", + "regex": "." + }, + { + "hash": "ce6063c06d4e2f4ea9b0d6fa66c16b0974043239c40fa03dc4d20494ee5ba781", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "076619366ddbb7c85b70df5f7e4a54def18d07452ef97e944631c62dee3b51eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=cKTZ70m6UyCIq\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "780417138829a6e061dd924634bf1611610457a58927628707bc6e0008aa6757", + "regex": "(?i)^https?\\:\\/\\/jhgf\\-101344\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "71fe20ee21f2c8f6c50f5e3789da11d9a33b25de0b7c46a97269747fa9d3b05c", + "regex": "(?i)^https?\\:\\/\\/zhdsbfhbshfdsf11225\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ce16df41e6846d8d49129837a2aa90b505f7361198f40ef34d3bfa61d7cc3da9", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c0a3f7cc9273834dc9ca6269fec3027911de01e6955d6116f368ac47f9b9f734", + "regex": "." + }, + { + "hash": "6c0ef39933cd15c42384c435f8848ae7d2e877dfcfd1a3e150ad9c1fe864ab38", + "regex": "(?i)^https?\\:\\/\\/dfsbbdyhgbdfg9555\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "69b90a3b9be9cc4e648bce622c6bbb4e9aa8f929c86670208541d9c0123e693d", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3d7d6ac2144a8e492fc0fe0edf158004058778689f6f95bb49d340204a46875a", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "29569c075de510aba4a1966eae5835d7b282c3fe4d909f3f37f5145f5c7672a4", + "regex": "(?i)^https?\\:\\/\\/free\\-5654253\\.webadorsite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8db8c0f7d0ede459a10f930973b34197a5ff816f8ad82716946efcc5eaaf0bc1", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d92add69aa003037d45416d2b6db8d45480e0ceafa89bd227240e35d8e923380", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=cKTZ70m6UyCIq\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "24135c48065e16eb79b02d00fcfbe87ed7adcd431899c7c389f54d713837a84d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=cUAsdMoxCYdnO\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "315a5198c25b515945226d3e5055a0f3779c792120bbc736f12cad17a90794d1", + "regex": "(?i)^https?\\:\\/\\/bsdfdsbfhsdbh12555\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "505240ed84a34bde0e7d5abab95420954cbb452faabda73067c2be33623f5000", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "221fe420027994936f8585f6691eb5dcb08b6f692b5a55b03ec970f0dc781471", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=c4LNyohqqGP8I\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "b242b97865067fa90a35164433ef486587287f68b37307b1c96d290a67038c22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plus\\?adjust_t\\=15uncx5b_15vme1wu\\&adj_redirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_reftag\\=cAFN3MRemHySy\\&adjust_t\\=15uncx5b\\&adjust_iredirect\\=https\\%3A\\%2F\\%2Fwww\\.system\\.max\\-mate\\.com\\%2F54354generanalgbef4534zikki453\\%2Fzizki\\%2Fcpsess9457254497\\-frontend\\-filemanager\\-std\\-en\\-us\\-suite\\.html\\&adjust_notrack\\=1$" + }, + { + "hash": "6e7e86f3f73e14f62a067bd12e95f521a828236e6c3661650141b670b000ab64", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2d80b4d0f3a436486cae5a6b4fbac79aaa9c65c9e6969190bfc5f225d2f1f523", + "regex": "." + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Fconsultavirtual00\\.blob\\.core\\.windows\\.net\\%2Fmassive\\%2Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "7111a9edc370784cd9351d962001769fe56dd57481272b59f5482a847853061d", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfdsf23432\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "afb9430f28158965ae56cf04c9076a04421834f9699a6864ec86953030e36694", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc5716d61ef7fd9c76c672daadbf8c7ed802e1c2b9d30a4600ca7090ce1e540f", + "regex": "(?i)^https?\\:\\/\\/iuyoiyw78ry3285uhfudhsfd78yf9284y9425\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "afe5c7172cf539851aba05498d5a6aca716fe08f334561af5660b74f404e861c", + "regex": "." + }, + { + "hash": "8e2de31eefb0df3f7ecf235716ddc0d85908f46d058305e461c77c739e51ae45", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "477c42d82b78645c164f469f90ce3e814fec48a943d89cd3aec7a3864e570dcb", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c25a1efbc92c915525731d02f6aa7439de3ac84076d9f66e7b2debdd80c1bf26", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "87a165de73490bec748c6d5b20e041a193ed88a698ac58df352b3c8306db4212", + "regex": "(?i)^https?\\:\\/\\/mess\\-goolden\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "658bf1eeacf02e847111d0e0b1a092f517ff7ed2b80d7f0187f13caa4a19380f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "c2ce316f30289c14f899b1cd7f24593df1fac70cbbb7161f2695ff701992f939", + "regex": "(?i)^https?\\:\\/\\/top\\-toptop2\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4860241c98b9bc30563c62e072d3f9bf2cf019cfdcc9b926cd253c198fd5a550", + "regex": "." + }, + { + "hash": "0c015ac0b97e52a9fa6d59b8e89148b0082ebdcba7e9a47a78596c334811f38e", + "regex": "(?i)^https?\\:\\/\\/zhdsbfhbshfdsf11225\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "88ff263e9d92cd85c7c0bb604bc10e68639ddb6cee07556d585c153b13b948c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "046cf69cc04ef34da5c6cb36670ba145e728d9e42793645be3b510ed006aafdb", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4900183ceb5165d517e54dc89b56070d2d3e335a6fcd5d815934607f6f01d6fe", + "regex": "(?i)^https?\\:\\/\\/abuysdgasd62t348atsdgi7ss8t3w7asd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e8abaab0448aa4e9a51433f4cced7472845d24e546f945c967b953496149093", + "regex": "(?i)^https?\\:\\/\\/dhsvfdsfbdhs445\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "859b5144a4921c1a43bded940897b5931c83956968a3b74871c8f680d2956a7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "06724168f92c7cabbe4425cf158f5aeaaa4259080f7f9146dda904576e2c66f9", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "836169547e1a9b8a2b0bfaaf2b69c78bb7350378fb2975eb0baaf95db93bb8f0", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8345c10ff64f2d0a5ce7c5e892232588870ba69605c6f25104460826820421c", + "regex": "(?i)^https?\\:\\/\\/fgdfghghujsdgyusdgdfgjhdfgjh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d2c850b133c7f65d980c663a57195e60eaf77339c86a93a198e446c3572d551", + "regex": "." + }, + { + "hash": "420983e3cc427b91866e2a7c2189377c754b5725529f8ae1ddb4a17d9d684e5d", + "regex": "(?i)^https?\\:\\/\\/38915648645\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "abd3a3c2a4dd26d28750c8cf47b64d0ca2b0569d5d549391c81f438bfa7c50a6", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9a04f01653f87d7186f616c79ab5787c8637cc8ec7de4bbb8fdcc9f5bde30cc9", + "regex": "(?i)^https?\\:\\/\\/first\\-register\\-here\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a577ab80d4928d2a61763328286356f32c12e7cfcdb1982bcdbb4d8a9955a3fa", + "regex": "(?i)^https?\\:\\/\\/hazmjaukmmma\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "29875c97f3447d8629cde442bb5e4b67745975ce0093ad0e42c02277ae8bad60", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d419abf1ffeb763579a46fb4d0c9c41ef187e03e2ccaffd3d4db23ce790f10e2", + "regex": "(?i)^https?\\:\\/\\/hazmjaukmmma\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0f73d5ebd028d8288031835f3124a35f7e1e63b5191f4b045ca49032e3584adb", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "13aa15070d2b24d53b600021ce30c3f262a7e6b023f491e2dd9b97c03b9db2fa", + "regex": "(?i)^https?\\:\\/\\/hazkazmmma\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ffdaf22f86203d9beb7c7a117a9aca922fb1984e0994d4882b82a31c2d3dd345", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "123161d510b17c366ffaaf737e2a5ab15f20d9166291d97a943938f5388de92c", + "regex": "." + }, + { + "hash": "6fd7887ed9e95a78aa013b0d5e4deae6b0ec92341d403171bcd3936b826afff4", + "regex": "(?i)^https?\\:\\/\\/fgjhsdfjhusdfudfyusdfusdfusdf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b6b9f88e0c1056891588e59c70fa69fba30701a0818678c8c96c037146ce6912", + "regex": "(?i)^https?\\:\\/\\/nkjzgfkzaal\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "962fe7d52a00d1708a2ddd9391c4f8bb44564727a6ebb93edc22b8cd9b949e9e", + "regex": "(?i)^https?\\:\\/\\/fgjhsdfjhusdfudfyusdfusdfusdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c987b739f646c09f713928bfa371171f4116e30bd1431293dfe8ea121faf6071", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d7c1259764d2fe06a2b5ea4a929f05b890419bf5d64551b91b426eb097ef19a3", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4ef12e2df9945cfc430189969ce7f941abc691742a559cc1289f3f892d597aaf", + "regex": "(?i)^https?\\:\\/\\/jazjazbakmma\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e48c093d09bfe8407596930de41440336de6be2b013fce17cc954282253f4463", + "regex": "(?i)^https?\\:\\/\\/fgjhsdfjhusdfudfyusdfusdfusdf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cfdd9985fe67ca8632a47c0cd0807d97c830d47848cef34f8def9957030cc6a0", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "90299cd7a940aaae4a44c5abc7762abeaf297345126c5e155fb71091d3e056f5", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "111f0d4b63c5a607f8416ed18cf529829c94074c78378dfdc4bf7e89e2c238fc", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6a48c27b0ca919014d62d50b573240282a75b0ecadae7d8d046bb63212846c3c", + "regex": "(?i)^https?\\:\\/\\/att\\-maileronlinemanagement\\-101525\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7d35edf899b3b919198e2928533d5876fc6431572d2796761bb9b1270bca140d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+idsog[\\/\\\\]+sgvgen[\\/\\\\]+sogvgen(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0a4b7fe80967297dba0b4daa56feaa6fb39431f5d91e7051555e1e7a14389f6e", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cd5bdcfab282a5d9957041964eb978f12d7053f39167fd0a3b2896a27739d3c4", + "regex": "(?i)^https?\\:\\/\\/hajniamanna\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "beaada4b69ccbf48ec4f4552929ce5b9601b63cd515fbc63dfba4d9e69f088ce", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b07f031b5a654cb17126665de76f86b1914f3ccf8b3750a64e36b37d30298e6f", + "regex": "(?i)^https?\\:\\/\\/jazjazbakmma\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "83626a593c9579ed55d7dae052618d6aeec3580913a88e0888424bd27c411d98", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e439b69425287b961df265f0e60cfdb3cc1e2f91d9ce5943b021e979ff618cef", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3e62c41874bdc3e1474c58a63bb0c0247cd5bc71343539cd5e40df867c6287f4", + "regex": "(?i)^https?\\:\\/\\/pub\\-f772d63403704de19ecb422e767f160f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9797fc18a6709af0b0b38839e6dbeb858c646d73682a0f4b2bdf257b8cfa66f5", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "aed5dc58d7b0e860eb27e969278a0fc99ab3202362921786a810b21ac61b1475", + "regex": "(?i)^https?\\:\\/\\/jazjazbakmma\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9794cf40fe0fb358cdf042a7c152d7fc6a04aa1137aa593ec22217ea4c1effb1", + "regex": "(?i)^https?\\:\\/\\/hazmjaukmmma\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7f9266195104b33a75dfc477646a052311b6c0351170319afa96ebee9c69ffc6", + "regex": "(?i)^https?\\:\\/\\/nkjzgfkzaal\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "07d73356112bd04f658b7bceb773b0694c4190e0d5629522144cb34f0bef02bb", + "regex": "(?i)^https?\\:\\/\\/habjjalmana\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3d7081d7c80c2b97697e770926b4df6c55928ad269454a4b38c4e1577b1dcb41", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ccd20132d8d6bc27a6016b33bcf1915f6a2fad01d98bb99a6c3e967677d6a089", + "regex": "(?i)^https?\\:\\/\\/hajniamanna\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7a8ed4c544222950bb01a7f5667719afa7ab8853b3421bf4711ecbfc63f254da", + "regex": "." + }, + { + "hash": "51a8fc9c9717743b068e4ca54c63011a0930b209331f0d634cf43b1248c304aa", + "regex": "(?i)^https?\\:\\/\\/habjjalmana\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e9357ba5e288882f4ed19a3cba549e85f0d7445ac080bc36238da9f83894fa76", + "regex": "(?i)^https?\\:\\/\\/hazmjaukmmma\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6c8537f5bb633b12123d3eac02b16431141a0a64ea19287b052a62afb1388d7d", + "regex": "." + }, + { + "hash": "a99d4a2591f196e63e31dc5954e6c32e61c6b79795c0919e1dd52df019a496cc", + "regex": "(?i)^https?\\:\\/\\/habjjalmana\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6fc984500834a5ce0680b4e3bcbf5e467c40c4aadbdf3301f12ec3236baeacdf", + "regex": "(?i)^https?\\:\\/\\/habjjalmana\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "88099943d7c11e68f97604e3b596744c51f049adef3943fc616ee930a4e6425e", + "regex": "." + }, + { + "hash": "e2d4a1ececaa333b992ee0e51a73a67d741a0b32af845539e7098325f6b90ed3", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e4ffb3ca84a340478ad4c64482de9c66684e405745b3c6f1be7be528a4ede045", + "regex": "(?i)^https?\\:\\/\\/anyamazkaa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4145e41da21b1b0a21bfa417538201a0243278e3afeec6c20d4704875f893d52", + "regex": "." + }, + { + "hash": "cac626241a5c26dfcf4b8ac0a895ea83e3063d91cfa0d0510e2f0454c6154187", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "032a9151406d025b39cd884cd688287c5b210caf43c0165760e2babfc1480b7e", + "regex": "(?i)^https?\\:\\/\\/hajniamanna\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0f71fa0f5ea5b4a9b2a42b353a9528534ce24887a901a0cf9abc89fe43f9b56c", + "regex": "(?i)^https?\\:\\/\\/kleifzhamoaoa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7170bc7b555644696919582d7cc8462a3d65d1bd6e0687028dd82510770aabf3", + "regex": "(?i)^https?\\:\\/\\/hazkazmmma\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "eeac8bf69a4053e1c49b87ca46baa8d1ee32c1125d4ef24db18663c7770124ef", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0efee02a24a23127ac663e42c1dba38e90cc1fbde0e53ff9dcbdf7dcafc9c49d", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "de1a3efaad94646afeced7a5f650d720ce96d9dc1121eaae9e73934e2450a996", + "regex": "(?i)^https?\\:\\/\\/anyamazkaa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "09280c4c64ce0245ea5a6a5177a91c0009c7d5bafe55a74544776d6e1a806882", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cfde7bc46784610ccd8109db923674e839342f3ed0abe65634897ac0223d6ad4", + "regex": "(?i)^https?\\:\\/\\/long\\-cake\\-d7d9\\.137952361962342\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "72a46cf6ddac1834c38c2b9a3fe43ceb4514e5a2f8f8ff585b5858e5a28b1eb9", + "regex": "." + }, + { + "hash": "2f2ef18e07008412b9ca4341cc36baadcee420d1caada8a0a2591ae4e156ad5e", + "regex": "(?i)^https?\\:\\/\\/kleifzhamoaoa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a12e961ffb63da22f13e41217e8ce23929ef6e3d0a3549090b7b085cb4dec4b5", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d6352076cd8dedbd38917bf4d04673b7ca23708e1ce3e111e55fc9d4a0ffc5d0", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+010101924593cb2e\\-178cbb13\\-39f1\\-4f30\\-87e3\\-aefa171beaa6\\-000000[\\/\\\\]+bzRu5myjGDJuh3kAqy4RvVi3wq8\\=394(?:\\?|$)" + }, + { + "hash": "78139e945e1ee938b1cea695c605e3449b64deec3548cc950de542da37e82d1d", + "regex": "(?i)^https?\\:\\/\\/anyamazkaa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "979cad2c82de2ef392f166dd7cb789170b7af3f07ac637eff3b18228300302a9", + "regex": "(?i)^https?\\:\\/\\/anyamazkaa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "401cee5c624b2630b4290d5635ee40c280e4a4c68822f8ce9c41c905aea8f78a", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a1241f295bf72b0d811c5f21b1b11a5006464aea75297b18334b9b248a552fe2", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b8aba94ecbc1101201af71484d8974637f25e6c50a1a64c1fd52a7f6f6ebb1f1", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ecf193ff4738dbcc9fea70df6553e1be2f6ede7bd612bd985f71dc06475163c5", + "regex": "." + }, + { + "hash": "9a0b57cfcd6784587de07bb5e704d70ddab6241ad0be4b03af810dc04f4e2579", + "regex": "(?i)^https?\\:\\/\\/hazkazmmma\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a005189ab06f1d7482789911230d11e130e1565495bb0ea82af211d99ac208af", + "regex": "." + }, + { + "hash": "319185fb74ad4c0dda707f6ad25d4a57919d0a9ffdeb4fc565ba19899ebefa29", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2495cfc7867bed95ba7889ccd0fbddcfcc034cf36ef47c858b84450b3f7042bc", + "regex": "(?i)^https?\\:\\/\\/kleifzhamoaoa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "06a0c44b68af38d1610e429bfa992f703e18c8f7b8497888c17cfaf8e504f450", + "regex": "." + }, + { + "hash": "ccebd951aa49d11ae45192c4e1bc6cc6af7b5a02e34f9dc5818b4b3ac366931e", + "regex": "(?i)^https?\\:\\/\\/kleifzhamoaoa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ab3c3134c70d01eb91fabac761aba94547efea14c3a70723ba1f64ca012c0aab", + "regex": "(?i)^https?\\:\\/\\/jazjazbakmma\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "11bc512cf284915a1a206c6d7bf8e370015146fc7d4eab6026b10bea4d5e7f84", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7d0a4a8acbfaddc5fb7e0e2fdc61e2b33c3481407c93602cba0e2eedea388270", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cadastro(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a99629ad4889c655a1171710b3ec44efd355cc7b8121a4f0c4d6a20270acf953", + "regex": "(?i)^https?\\:\\/\\/fgjhsdfjhusdfudfyusdfusdfusdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0463bb5af9602d25f016bb04c0f71bb20f572260bc94b149ca3d312eb8f5630a", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2c219492f2983449d8d16dc59a8f3357961e1237846b22fc081922782b5f4e98", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2fba6a1ab617a75fc1bb478dc8144e1f802e2954d84de6d3d402948883359be8", + "regex": "(?i)^https?\\:\\/\\/hajniamanna\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "46aa0215657dfe162829f22053fee30b99b49af7fa4d554ff0779ca778aa5d52", + "regex": "(?i)^https?\\:\\/\\/fgjhsdfjhusdfudfyusdfusdfusdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6169e75da40709f46fe6c85b7b10d377a926bae39fef720595268aefbc45f85a", + "regex": "(?i)^https?\\:\\/\\/habjjalmana\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8ebd8072050de5c24f5e9752c549b7f3dd8756ac5695c25dbdf42431b06ccb2a", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d8521f29070b3454670aa65e308239230ebe24139710129d228d42f5fa655228", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3d21937e75a3ab1671e6a74a53651f5e49a6173af3182f92b4ddf10f092b3e71", + "regex": "(?i)^https?\\:\\/\\/hajniamanna\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3d0e4d48dc11b521acc4df2e95aa855e1677d2270ee7c05698dc9cdda24cab0e", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0ef42f7f7570766d78916a7dd4427439f45ac6a6ebc730720b5abf7ab5a836c9", + "regex": "(?i)^https?\\:\\/\\/habjjalmana\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0fd21cfa7796586d1ca14dc56fcb5a7b1f0b28fb1f2ed339faf4c9651db80a1b", + "regex": "." + }, + { + "hash": "247875d630a6289f1b7703a9e10caccc03c690a112692158dac6968fbabef4ae", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e41f36c1579620196d6531dc36c5db439ec7e8a5111c6ae6eaa11573a90d9bb3", + "regex": "(?i)^https?\\:\\/\\/fgjhsdfjhusdfudfyusdfusdfusdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "85d9d157089364285b8437645571179220b6c820a6151bd45be14660906a8f85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dcbf152b26fa36b86398ac6008d483f5bb6293bef99d313f95b9e5fd104929a6", + "regex": "(?i)^https?\\:\\/\\/jazjazbakmma\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ebc5728ef298944a5ce4b31e0c9a6e058c3c5e97c8cdbe5c0cdbcf2f608b7168", + "regex": "(?i)^https?\\:\\/\\/pub\\-a9bac13efb844ed6b58056095a40709f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a822337d731dc39dbbb91d1e668f9e627ac80db2fe9d1d803fcaef400cbff3fd", + "regex": "." + }, + { + "hash": "b070e943311e15f2bbdb316c34095dd1ded223a8e83817592b8594bfaffc7ac3", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d2d1b83007e053ab47788041fcf61f00ea2e5cc76efdcb3d77ad547bad7c0336", + "regex": "(?i)^https?\\:\\/\\/hazmjaukmmma\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "278c8e02fd92fbc7221ddead33dc46b2cebd743081c368f30c2c51559b11c1f0", + "regex": "(?i)^https?\\:\\/\\/hazkazmmma\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3a71e6619758b27f7fe2995a76fdfd5cc9c1b1d17b121b15028b1f8a7c453f75", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "40fa8afd75ea5926e6a5c6c84a21c35cfa07837d246463d48ce0f283ce78e0df", + "regex": "(?i)^https?\\:\\/\\/fgjhsdfjhusdfudfyusdfusdfusdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1eb89f934a356cec04d90abc6650363e68692c9d9eff953ac17ec9188f5832b3", + "regex": "(?i)^https?\\:\\/\\/anyamazkaa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5c54f73a29761bfa58c32bd3a223389f31cf9c85d11397f3f6c52d3817871890", + "regex": "(?i)^https?\\:\\/\\/fgjhsdfjhusdfudfyusdfusdfusdf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3734be67d3736b4190e4ef7ee3c786583a9c455140bd8085b83dbcf40fa8ea23", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+010101924593cb2e\\-178cbb13\\-39f1\\-4f30\\-87e3\\-aefa171beaa6\\-000000[\\/\\\\]+Pj2BS9slmu7zoDjgIp1heJM1Zs8\\=394(?:\\?|$)" + }, + { + "hash": "e881407dc10f9e824af10aae8e352c493b732aea01d499833f59a3ad9008b62a", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6374e20dd8b19e07767a24bce088778336021c4caa6370e541d14e448f964643", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ec0c0fc982ad3cf880b8db8975720a137aac2668b3edd130232202f445247fc7", + "regex": "(?i)^https?\\:\\/\\/habjjalmana\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "808072949d23cda5ed17eeaacd3d977e3afaa147d5023d26428933778aba8b21", + "regex": "(?i)^https?\\:\\/\\/hazkazmmma\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "031f0c07c98a80b36b91340db9d028090e5834eb5f8a8c3b2ddafc947357e4b5", + "regex": "(?i)^https?\\:\\/\\/hazmjaukmmma\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a1597dff60c60cd3d656fdd2f329a4e48017af2522d4247ded6d3ebb23539756", + "regex": "(?i)^https?\\:\\/\\/hazmjaukmmma\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ed30f91fd5322871337766395c6a8bcf685e0320e30163c54519d81ff3c9efae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i8s0a(?:\\?|$)" + }, + { + "hash": "c0914ca635c864cdcc2ad99b6a2110605e8315e97a2e26cffa4ccdb7426335a8", + "regex": "(?i)^https?\\:\\/\\/fgjhsdfjhusdfudfyusdfusdfusdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a773a339dd710dcc89eee7f081df9df127f31677b0bd10f81702654e2a210656", + "regex": "(?i)^https?\\:\\/\\/jazjazbakmma\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2e410ea89956c274455b7c7adc91f7c8cb93553623283db4a6222e7da64acf3f", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f3b1d6cc875b18b0cec93a2b4273d9edbc40d9fb588a676a2b1895e70ef5c103", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d6d847dd42211beeecb8ef2f0bf418c9278056d85b54b7e5d6bf2072e2bfb4da", + "regex": "." + }, + { + "hash": "420a99b0652bd2039c2d49b5233cabc857d2435fcd04780db44265ae2c113429", + "regex": "." + }, + { + "hash": "6f6df227653fa61500e73829767841d1926cedbf20a58ba96175d922b560d546", + "regex": "(?i)^https?\\:\\/\\/jazjazbakmma\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5f2cc59ccd4bb475d2af7611f9dac63513699586ac0c30295d045f95480c7bce", + "regex": "(?i)^https?\\:\\/\\/kleifzhamoaoa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "194d969ec7d7e1e4b931ac0d1f97e1f9e70b2aa36949d6b43cfa0707a0722dd5", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fd19097b48cd9b292409757f2e7ecde27b156bdea80bf97e5fd75effc514baf2", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4415298d8d0c3a511aaf29c7dc7283fd754e5bef649702f6d00509e87850dace", + "regex": "(?i)^https?\\:\\/\\/hajniamanna\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5e1fe42b5ff70403fc2e0ae5fa90639ecfd7fbf92193b91eb74dc46e805245e0", + "regex": "(?i)^https?\\:\\/\\/hazkazmmma\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "00e4a88b1c8c33267ed6b141bb3e29a3df4f9cc90671942c56eef4aff188b7e5", + "regex": "(?i)^https?\\:\\/\\/anyamazkaa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fdec944311f69067112c17b2be5e1cd227051f49dd5db1e9951c23e19ea46c7e", + "regex": "(?i)^https?\\:\\/\\/kleifzhamoaoa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1e657683740b8f30eb7c97e64cf5c31833a14a69dbe25654265170404f0fa1ff", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c3436748db6d9b324b77de0f54e29272c8d28763e101a537b563d3f834b28bce", + "regex": "(?i)^https?\\:\\/\\/pub\\-c653926efdbe4b07938ec2918ea6e7f1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5700b25bb5736825082689d93e03e6c6fd0ec2ba607f6bd2f572708f3b0e48e3", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1d39666a2d473eedb937c9311c5a961183fb306d4d564dff34be50b7b6ad3350", + "regex": "(?i)^https?\\:\\/\\/habjjalmana\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "85d9d157089364285b8437645571179220b6c820a6151bd45be14660906a8f85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "11eb58cf2209274698f4acef206a2f2342bd3d307520234cbb161214427e50a1", + "regex": "(?i)^https?\\:\\/\\/poklalzrg\\.com\\%E2\\%88\\%95vztvqie\\%E2\\%88\\%95iljmpvrkj\\%E2\\%88\\%95uqiteb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\%20url\\?m\\=000\\&t\\=000\\&ip\\=143\\.244\\.40\\.236\\&language\\=ja\\-JP\\&d\\=000$" + }, + { + "hash": "e4f6ebc0716625d09204e5daddee68d95dcc8a91325e3accf1bd1d06e7ee7627", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "74c6aa65675aaedb2175a7326138a9458f94ee610d5f562284651bdcd4859a57", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c87f43c658ca94b3c72b9fb14cea6dfee3755f4f3ef3f1585da271c023b31424", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7e51dd55a4f9985373d6bee8c09344f5834f656779ebca4db4e85275a3becf98", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2bbd18aba886aa96e00f2d39e7a51a13728516810e7e83e60ee0367aebd48fc5", + "regex": "(?i)^https?\\:\\/\\/hkfgzalmma\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "63b4824d02cedbf19c4b8791741bd0340a33ac2529e908e9d9ebb67172b00470", + "regex": "(?i)^https?\\:\\/\\/robuxbobuxsi\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "71fd5f73694e2308f31b91c1f76ce9e5fa65d34d0d9d82441396b5af48b7e0c8", + "regex": "(?i)^https?\\:\\/\\/nkjzgfkzaal\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6052e2d115bab2f3373f21a323860d35e8e688584b29abb60e8edcfad153e8ea", + "regex": "(?i)^https?\\:\\/\\/jkzahdazmma\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8987693610d901050602a940ce9ed6cbff4124f5bcf1efd24503ea81e039614a", + "regex": "(?i)^https?\\:\\/\\/ffawdsfcscdzc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "142032166bd274708a48b1a2839ace6dfd4aae6cd3fd901fb569f5f20bb20036", + "regex": "(?i)^https?\\:\\/\\/anyamazkaa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a288f7448c913f81c850dae1537366a5ac43baeb0bd32f4b7dbe60103b652564", + "regex": "(?i)^https?\\:\\/\\/jazjazbakmma\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "75f441e6de197cdb213eade49e9152f6d0422bfbf078b4a085aad68878bf7c45", + "regex": "(?i)^https?\\:\\/\\/habjjalmana\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9a252bb0d81fd62748ffb480b6e981491fde36598bb6c155efb4ce16fb4b0b09", + "regex": "." + }, + { + "hash": "9d0fb6c0aa8a250cbe204c1ab292435579526a22b2a259c707dd44e8b29c591d", + "regex": "(?i)^https?\\:\\/\\/hazkazmmma\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "42829bfdc1fed4baf3214ee4f1e7f46b55dac9060facfb9ca7d6beca186352b4", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ea837ffde5d02a167679ee2cb50a396165747ddc8808a27a16fc52f42849f49e", + "regex": "(?i)^https?\\:\\/\\/kleifzhamoaoa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a31c45d8c8d9c8f668733a425844ad847e5709fc1c49453ca938180d965fdd04", + "regex": "(?i)^https?\\:\\/\\/kleifzhamoaoa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "260ee3e673947b823485a7ba11bbb1e8090ab8cc31c905303a59c13dfead3855", + "regex": "(?i)^https?\\:\\/\\/hazmjaukmmma\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ba4dfa03edb58b76174dbeb0d2348326118c5551b89efdd6a1bf5176c1da2f3e", + "regex": "." + }, + { + "hash": "605372f03f1faea4ac5b86d2c3aa9eb14f2057cab22604682bdca0a975a7c001", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+4[\\/\\\\]+6v97d[\\/\\\\]+\\-bounce\\-rate\\-information\\-architecture\\-accessibility\\-web\\-development[\\/\\\\]+s6r7jz[\\/\\\\]+\\-bounce\\-rate\\-information\\-architecture\\-accessibility\\-web\\-development[\\/\\\\]+l[\\/\\\\]+aG9uZ2xlaS5zaGFvQGF1dG9saXYuY29t(?:\\?|$)" + }, + { + "hash": "93bf03298197c49c408ae2d62fee9e21a894ffd3780a33636e0668020ba71192", + "regex": "(?i)^https?\\:\\/\\/pub\\-a6064266d1924f07be5c711324283453\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8e643d18d7b15162bd26bf93f3fc54f3d5f5415947cec8fbd749e46e41a14c6b", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "946430915434673710a65fabb8d5b765bc89245d6df6a9cb476a5d6108d42e99", + "regex": "(?i)^https?\\:\\/\\/hajniamanna\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "44124621a9915e3a014b9ee9f665a04f9f8746f35ab3d61b6523a6f911c28b6f", + "regex": "(?i)^https?\\:\\/\\/mmnaslo0231oxa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5b30ef10824512d7a9f3af10f28a5e2f7a46593f266d1c5889c2cb2ca8cbcfdf", + "regex": "." + }, + { + "hash": "d908f7f92ad189e60108d47d027bbccccb78d065e212adb712d2b7cc085c5828", + "regex": "(?i)^https?\\:\\/\\/jazjazbakmma\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ff320805c043fe546b072e5cd8b0a0b8c5f088903dd34955c2c87702689a1605", + "regex": "(?i)^https?\\:\\/\\/hajniamanna\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b5fe8e52c099b92ac567b27fa4be9d97b6cc1d88330fe65948ab4ff2b22fe914", + "regex": "(?i)^https?\\:\\/\\/nkjzgfkzaal\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4ad13e19ea39149aa98c47cbd06111243dff868f5f23f24a3a0a76f1e82b8eeb", + "regex": "(?i)^https?\\:\\/\\/xzeqacsqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d42710bbf2f682bbce7beab20ac8326e9c57c313441247db6ae5cf7212cdd4d4", + "regex": "(?i)^https?\\:\\/\\/xceqavf\\-eqa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7e5165dfcdc58440ae61e39a7ccc8d081dab93efb9f0f91a1645c87f51d8cc44", + "regex": "(?i)^https?\\:\\/\\/efdaqfcaq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1a7a180f0ffa2c136e547da01e05ba1d2f28f9934e802ff95bf3946469e304d2", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmskdtlasckasmcamsease\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6796bc63ca02e9ae5c83dcb8800b1d95f5d19200b2e00e82ca0cc06d95437422", + "regex": "(?i)^https?\\:\\/\\/xzeqacsqa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "084e6305df1279e030f57bf2032ac402f0870eaa8707f06e6ebb466dd928a2c9", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b0a70ea77decc8e8f307b47ef1c98436a0df7a3378f683bfd947120e684d83f7", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "22d29b854400a48ed3b75bc9a04ee8535ee67fb467fbe16749111da091de189e", + "regex": "(?i)^https?\\:\\/\\/cogecconewmailler522\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0800cd36a786eb8e1c3f35d4f3f75dbd0e0b3cf5c68231082cfa21541f127403", + "regex": "(?i)^https?\\:\\/\\/xzeqacsqa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "71d807d140a00b804ce376427b30abc25766e9c74bf245a9609484993e1b1e6f", + "regex": "(?i)^https?\\:\\/\\/faqef\\-qaedsfaq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "eae14b7812304cc4f6ca046cd7576b46d272e5bf546a5f847ffbbe8a09a4200f", + "regex": "(?i)^https?\\:\\/\\/xzaqceaq\\-caqe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f7bba1594d65692d3daf9fabb2dee73e5c02ffc943dcc0ae612d3f227e5f03a8", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cc8ace9e1af724484e6a2149cbd6e67607f28c2da42cb691a01b1618d04a6e03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "2297f8e2e96cfe1cfe5a46da6e1dfa6fbb9e5b4235940993150bf7609e5ce310", + "regex": "." + }, + { + "hash": "9e831b073b85cd4d541ab04311cf01e3d7f741e39321f99c39c37c11333cf871", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f15d9c20b93a407c3bad8449f1906c38258d259eba67559823f100160ccb613c", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "932bf78fc3b0d9cb9e28076c3ce6cac485b146f87af220f09a9d2b411420e221", + "regex": "(?i)^https?\\:\\/\\/xzaqceaq\\-caqe\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eddb233af0db36724dee60ab55e6eaf317358acf64ed63c11e0380dbc153b1e5", + "regex": "(?i)^https?\\:\\/\\/netdfsifksdkfsdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "26399d4eda3a5194004b11b118c16797e886ecc603d41da39e2dea22e41a00c2", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "87bbdb7604fdabbbfd6b8d83a53b2d85af4fcc6acfbde8c426514c52de13007d", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c94e3a9bb50329e9624a423b4c124adbf8bb8af97977a30020bb5daf020d57bf", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "94e50e1d9cbf3a3b7f15c2f3ca7dc11bf8887bc2ac9508c4090bd815bc584395", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pts(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d0cb86e3ca5ff8a40e6b1bf3070cf706bdc48465ab61a132989fb6367532139b", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a41b0a9c4e2e2ca3abcb35b1ed7c91b920485a0caa745f12a2073f9ee715074a", + "regex": "(?i)^https?\\:\\/\\/geaqgaqg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a1f6892c98f13f06d2d16b05a3c0af0cf074c149a2097b7ecca4e6d2d50ec68f", + "regex": "." + }, + { + "hash": "18aa25f4e2f2c323a8efa0e843e838e9e1ba55a7825466126d8742592e290412", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fac6cff9f9474710a8c3665b9f634d01bf3c0497ce215e0fb81f0851cebf161d", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7dce37d4e9c58511d2dcf31d42733e566e7674920231021fe8df6a261fedc039", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eece229d0c99933beae813dc2cb85f75a3275781a40748013b94be2a7ba72c39", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c1de90394e12a34d2993f7638d341d3658d84d78b8f781944e39a0ffdad5c8b5", + "regex": "(?i)^https?\\:\\/\\/pub\\-1b17716603fc47cfb74b37ea87cafa9c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0232b7a0eb5244f7037e85a977c7748a634961e1555ef11ee71f0832ff50bad8", + "regex": "(?i)^https?\\:\\/\\/nertgdfgdfgdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7c44387ce100db6ef856874538e35b9b1fe7ec9fc0cf70d5d720c8f37175567c", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c148a0e472558a80eccc120652b243590ca5688185045618539b6dfd5196573f", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3c18bf4f2cf4e2db4e7744605b7a7f4c2e78afab09717559cb658a3cbb9e2c49", + "regex": "." + }, + { + "hash": "99f6f0a12a386ad92768163c507b8cbf41b22dcd05ffcd4cccd9fef3643bd11f", + "regex": "(?i)^https?\\:\\/\\/robloxhowtogetfreegamepass\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a49bb5146ace7978fa4d113d3fb3724ab25e0286b91c289971590f2c17a0d753", + "regex": "(?i)^https?\\:\\/\\/rinduawak200peratus\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d8cff4161558650cbc62296bc623110d16414ad1ce24534580db6912a82fa292", + "regex": "(?i)^https?\\:\\/\\/daqfe\\-aqfaqdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1c89a5ff67155eb2324b47b8f49b890b3920bf49df264ebe807d4d8014bf5b7f", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a3fc017859279ee5ddb863a6139f94bdfcff4372657d3ec468e99ca073d7a1af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+h5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05b4a87b271ccc7a5f096503c7b94fc76aba3c244b6b6bcaa3c3ba5163e5656e", + "regex": "(?i)^https?\\:\\/\\/faqef\\-qaedsfaq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fb0f2730324d604bc5c1bed5af3e333e0dc2e736238cd28157bbb0acab58b597", + "regex": "(?i)^https?\\:\\/\\/nertgdfgdfgdfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4dfb049a0f330f8c8c20d865d00339a6da1cf7d0b174f6dd13544ca07b913e6c", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6b7c7b11dafe1e6f80978bf5cc0a6c44d270d29d704d1e9997f9c5ca893a9fd0", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "601377282c8d21fb8a5163f3be6c1c7f57923ba0c94126b1bc35770d45f9ef0b", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "399e19cad478bf1b6d076bf6700128ca5d6ea6ba6690d309cf343346d532da0f", + "regex": "(?i)^https?\\:\\/\\/redirection46545646\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bccd722eaeec21f2523d5c963d8324514d037ad4e50dbd0e70509372cea0ff4d", + "regex": "(?i)^https?\\:\\/\\/daqfe\\-aqfaqdf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7676fdf03b5f3e35d344199bdb1e3a9b8cb8eb74f89587d0b1ad8386ede96a46", + "regex": "." + }, + { + "hash": "ee6d966aab224c95163f7e24e16caf0d79f4366fbc10d4ad622f6208a88b665f", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmskdtlasckasmcamsease\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "34704d3a0fded642cdc6477bc2b21186d1417f30e5f92b9d1b3b2bf0c51c6ad0", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8559cb2010c33abd25577d9df3bd0c6dddc9826585852cc0ffc6e950801b7626", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "626de7a8c70e0be5eb66e8099b0f1bb34f355e96d400281b29e66150b85bbeaf", + "regex": "(?i)^https?\\:\\/\\/nerieigdfkgkdfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f8239313ddd3d7f446083faa0d417d284f5151fdc2bec1b86e4d025fb5f46e09", + "regex": "(?i)^https?\\:\\/\\/farmolfaerde\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c2fb3f89215bff41cb101bfd74a68d16234ef1c3aaeb9cec0d572b60a91905c6", + "regex": "." + }, + { + "hash": "658da840e3bc2b928276f47f8b5f895f41787fb29d1f30e75843ae9bfc5bf325", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intest\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b0bc1cabcad6fd96592c88318e3eb0170dbd97517255d50f594f709771d0591", + "regex": "(?i)^https?\\:\\/\\/nerieigdfkgkdfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3ef9dc8a6536e728938050d1d89cec724fdcfce4e0b9e96eaef0d93ff4009ad8", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a4d40551c0ace3d6206665a944a9e2044b47f4a030ad7c1681707bd49c650d12", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "325c8348748a1c43893a08d66ed98c7af9cfc026edc0928e0cae787e70a20ad4", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "14b28ba9ec0c737dbd0428ebbadeadb2dd321ad0c63fb229e22a8e1eea3512f1", + "regex": "(?i)^https?\\:\\/\\/xzeqacsqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "98907edfb1a774eedfcad8dc6bef808a797cfe390e03d6ddb71e34950fe42607", + "regex": "(?i)^https?\\:\\/\\/redirection46545646\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f2b9862ce43367e118ea2f5c3fcf56b179646a086bfb7e7adefa47bfeb947f02", + "regex": "(?i)^https?\\:\\/\\/netdfsifksdkfsdf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "dd473c53722506418763731115b1540cb17c85efa6846b8cfd2327325074aa05", + "regex": "(?i)^https?\\:\\/\\/faqef\\-qaedsfaq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fa8aed1b2d5efa1ab5021a9ac95b7f59131bf3f39f2aff2e7a922f406b0f93e5", + "regex": "." + }, + { + "hash": "ea89956c5b3710bc42175b12827f3579d35f2a9bf007b4db41de4942ec1ffe26", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dc3b79cfc3a266a60d96d22ddf3ee6db2ef545e5cda969b5371ae097541b5e5a", + "regex": "." + }, + { + "hash": "a57033da9b55da248084f0d238d3b47606bdfd34ed768fe402aef27714a31df9", + "regex": "(?i)^https?\\:\\/\\/faqef\\-qaedsfaq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e1b934bf9f66c8caab087742afc311c79ee9564e72bb232ab84bb36414565792", + "regex": "." + }, + { + "hash": "53d71aec449896c8b91649166aec1bb5de10fbd4fd298d0ed543de4d5736ef65", + "regex": "(?i)^https?\\:\\/\\/xceqavf\\-eqa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2aeea4628cc3fe0c5d5b88b481bc9a8cb68cacd28bd71c090113a77177efab92", + "regex": "(?i)^https?\\:\\/\\/faqef\\-qaedsfaq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "44c76e6d028602b06bd882dac661658b7c93cfc21202f872bfeeb6011f8446e2", + "regex": "(?i)^https?\\:\\/\\/zxacaqc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c3bd7dc12243a5c988c18691143b25830106e92cc686d0f4c0b4a4361e9f8f6f", + "regex": "(?i)^https?\\:\\/\\/geaqgaqg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ed3f39aa06b72a34b4f92402d73b23396d8a74cea6be4842771c6348adc6eb98", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c5b5a546b099423753400106079fe8b187e53775faa7a2fd15fc8b30ae44ee25", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxzd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0f962336633fa3cbbd2bdedcaf0558f9b876527644821fb3ba8190bd74b104f0", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cecc18dbeed67a59129116e82bce5efa7acc37be2fbff7a87ba6b94d8220a46a", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8ea55d5379f4dc65911c5ba4d315879adbb1181af8b59786d08504c0f98e8a30", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "058224c5bb1bbff180994990214099d642fc484eeaca301a0a4725a981655a0a", + "regex": "(?i)^https?\\:\\/\\/netsdfigidfjkg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6ca4bdeb80a346a696d53517e790dc58d50de9ff1c733d6c3b1c7131824216b7", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bb256c5631f32413eb665099dcd2b283bd75bee5d116dd5f2d214b465974cbb8", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2bdc7d6dfc573c5d7d96a6b95c7d10b57381031065ed1d99a2f44a490a74ea45", + "regex": "(?i)^https?\\:\\/\\/netdfsifksdkfsdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "41152ce560a22047351e02930251b1ac3b9b9fdf33274a1dc7206b6105c010c5", + "regex": "(?i)^https?\\:\\/\\/redirection46545646\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1ce6963d805d6732608c69fa4a9b07fd38549175c72edc1612b0cb1bc68e15a4", + "regex": "(?i)^https?\\:\\/\\/daqfe\\-aqfaqdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bcd5ca28ff06afbcb8d542efdb8f825ac148bb1080af4ff4fbdb863004eeccc3", + "regex": "(?i)^https?\\:\\/\\/nertgdfgdfgdfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "923022ba7d722093e50eec3768bd412b9d832421fb025307e7ce99e11d8847c7", + "regex": "(?i)^https?\\:\\/\\/faqef\\-qaedsfaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7645f7bd159f1d11a804458b73ea140001e6b6776cca8c26576e0c67fdc8c77d", + "regex": "(?i)^https?\\:\\/\\/xzaqceaq\\-caqe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3302f6c4d5c32f233be18ddb117a638ad8a2b3722949a2e4311b684aaca9905c", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "da41a261e33b933092d6b83729ea80a105ff2b3c899cf1cc56a8869e3cac840d", + "regex": "(?i)^https?\\:\\/\\/nerieigdfkgkdfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7b430c57a1b55e08a985bbb7b5c13480979ed35e0409b5ddacf8d8ee4bb0046c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxzd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ff3823b0d8f36e31025f6cc7c655ee0ad1ca5bb46c719a4cdcb30d3cecb35694", + "regex": "(?i)^https?\\:\\/\\/muldoko\\-coinbase\\.147\\-79\\-71\\-6\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5e0a5fc2d5ccceef78c0c41f076bf96e2974c9835c298d11677b6202b5902b6b", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2bdb0ebb074bc6d750f86c2dc48eab9d10103f0c6f0bef7b52a4d5f05ba88638", + "regex": "(?i)^https?\\:\\/\\/efdaqfcaq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e2a168f1277a71f70b44e808d2dfbb810cfe973384189e8acb8b3b270861cf65", + "regex": "(?i)^https?\\:\\/\\/geaqgaqg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "327e55f06591a6f93a285ed67bd07fc1d4663ed93cefd06c510e4efa8ad360d9", + "regex": "(?i)^https?\\:\\/\\/netsdfigidfjkg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9be6436d08f7a7cee57c8c6ebc8a373cb0058620c6d570629a43e2233171c3d9", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "94eb3ce6d52284fcf3b95b93422c8fee3fafd0eb1d61ec341b401de9db50f162", + "regex": "(?i)^https?\\:\\/\\/redirection46545646\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6bae4f6cfd23068ddb58383add050be24358ea44ea1a5685ef3e212ee94d3df1", + "regex": "(?i)^https?\\:\\/\\/farmolfaerde\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "12d93e6a1d9342b18ab80e5dfea6d24d4ecf3be1f2c22f96414dae5a7bb31c60", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6bf87b5482c1213d798d2ce46d203c5b01dea12fec32e9640fe9098af8131923", + "regex": "(?i)^https?\\:\\/\\/geaqgaqg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "171afff518be68e4415289f473b10bb530a36faab74a4cc31518abaed9bea482", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4ceb80bd47992d94ca500bd4dd33b4f51e5d65439b33ca2fb8dc12d5de30fca0", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fb02ef1fab17a542ec3f184b8da71e2060c489c2773e17281e2e1f5a4cf0dda4", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2f0e5e8f5f4e64ed164769467ec2c82eb642e77d8250f7987168de7de604c598", + "regex": "." + }, + { + "hash": "fd7413c463aec60136fdffcdf0bf71c4d2a9da12f64e207c5c48cd6ec3cafc08", + "regex": "(?i)^https?\\:\\/\\/aditya\\-64bit\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "831d33146de7e25760ca4ae07cb290fcca998bbe047fe5926634bc17d6a09a3e", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "09be749ebca9b2245641aef7d9bfa52a7485d0d7b433ba5994dc8a27160abee4", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "970f5f85bfa3206a652ae3e008a19f4f76950b5a672579c3994b2ed122620c4f", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmskdtlasckasmcamsease\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bae45dad1b82f6c5d8a8670d2d30977152cd1642d716f2b1f8a2a4510fbebc1b", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "315ad66388dbf45eb7358f44e51fa52a6cde26820856053eafc4ffcb3ed69244", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a7f0b1f338be008051bfc72eb5dec25506e0d988bca368c1aae95d9f6b3fa918", + "regex": "(?i)^https?\\:\\/\\/efdaqfcaq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "32dbf954398d1e0be709b680b46ba1d7c3b6343e6e3944cc3e16a4e5ee3f606a", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "df758397f5ba893029eb7406031c2e1d7c420c0d39820759164347011c3c977a", + "regex": "(?i)^https?\\:\\/\\/afa01faf01a\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c467ffd397dd7fdc55742e57bddb48308bd50f1760b0f557b137f09339c5cba9", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7e85fbed3cdefa0fb627ee49cf8e439dc1f51363299df895fa0ace42eb47fd2d", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e0c675fde37199a04ccf1015de33ec985c502c6a738c177a19e641944c1d6fc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+27\\-982\\-130924(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "65f3c3f8f6e28c35bcc38fb2fd32acbbadbffd696201e19d42e621725a839ab0", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dee23fcddf4db2baed88c8c74a5a72718fd5475626b5b21bd0f5c87e25026d79", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "76224f8629fd8a2ec8b9f7d6c76d5b337ec80c2a95acac578e97335d090db821", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b16451108b5fe192b4ba81d168c3b56f46e7a1480fc7cecc714709b094d97819", + "regex": "(?i)^https?\\:\\/\\/rinduawak200peratus\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ad9fdf2ac1d65d17cf8ccb6dd012aee9f979bb3234ff1cf6682c3796d30c5bf4", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a4042954a31974dca262220261168eb4110bfae8fe76e7e694ab932a6e557de5", + "regex": "(?i)^https?\\:\\/\\/geaqgaqg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9f48bfcdeb95567426ec62a3c9cd2aa4055210fa9d1a379ad00e1d3b900ab9c7", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1b46ddf8f4f7d7a1e6fee59196fe09566de2181796bd42db8558f828955c700d", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f183428b8aed8e6911935fe0c39df8742ccfa83d65c25c8ad6fc3c3d4398eac7", + "regex": "(?i)^https?\\:\\/\\/netsdfigidfjkg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "63dc004852d52569322c0a93b20fe8786f33826dfd91b2e85213cd6704c854df", + "regex": "(?i)^https?\\:\\/\\/zxacaqc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "58e391a1207921c0fb39f0770bea6cc1f89fbc89a9527e70df9d834f1409f45b", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6f54d1ae0e42b749bb3542893b81ab18666668ba8cf7598ed3bd59c894b99cb0", + "regex": "." + }, + { + "hash": "f5d82b072440975089dc11110704c46f44d4df890ac0388137d0a48bc011d567", + "regex": "(?i)^https?\\:\\/\\/xzeqacsqa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "384bb900a516bc234eb350c3e3e8a5105b83192c208b3543898ccfea26aaa319", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "32651dce2197aabfb40879fc21f2a921fbf55111d849cc8faebee41201156b49", + "regex": "(?i)^https?\\:\\/\\/enrsidgidfjgjdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2bd0984515ca625c9485ec7b9a1535f1409acba6dbfa6d9c9865742efdf80748", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1b62e1bbabfa89f6bdb9db7485d31c51cc09b137fbdc8e9b442e7525717b11a7", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "581cb30a08b646716e3015666d610a2f8be834b53325008393c3b37b4067889e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register47439(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3c032f80d2378275004f31bedd9bd9b26783d9afc610621d2ff41cbe707586d6", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2e974267879fba267a0b2336a65f7108130bf000d6d3e753309ede1874a3d006", + "regex": "(?i)^https?\\:\\/\\/www\\.mulyanti\\-coinbase\\.147\\-79\\-71\\-6\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fccb38767d48e1e2c5015f73b66c379a784e0b07370d23d5143edfd14edc2fa7", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "086ad146d2eb3294b81a83b1acf854e061287e666190e7b4d936676d406817d3", + "regex": "(?i)^https?\\:\\/\\/rinduawak200peratus\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "172e6650a632d498939b19e3777a4b391696ddc849f64a33eebea0f686057076", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c90afb8c8c73e37cafef897f9f169b13d7c2480b31b09cad751d4bf9d42a39e6", + "regex": "." + }, + { + "hash": "4b8e9db3019ace95ef6e2fc3a41561fa0cfe21eb7f6301a1f5ab4ebc3793d1a5", + "regex": "(?i)^https?\\:\\/\\/xzeqacsqa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9c5d8db69f6b6ff82e2f25a3a265f29e65a4b88725a68cb7d736b343ebb39822", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d1fa76d6027e8679497d94271e2577921d8c2587d8add4946e59db3ac9731bb2", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c4e7311c6599794efef09e8e3c98564d647cfac0b5a82f42ce65c44927d6290a", + "regex": "(?i)^https?\\:\\/\\/enrsidgidfjgjdfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4dd8263c4e0af98d5e345f67dbc48a4750366cb2bae1d2d5044b366f07618758", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8d43203d2f893f20a3c25d9f3aa374b5547b57f8764d16548d085f9439ff7eb7", + "regex": "(?i)^https?\\:\\/\\/farmolfaerde\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b162f7b011aee3bfc73579f6db1ad4fbc41ead76a7f9e413aa1af98d5b1367fd", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "702a0572194fdf75fc7d53f886c8c1bdab1f38a923fac04e5d631f6fd06097d8", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "24e52b75c30f8697652d977f4d34c59cc7f3ebe395cc6ca2a57391c5637b2c66", + "regex": "(?i)^https?\\:\\/\\/nertgdfgdfgdfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2c212ff203c2fd4663498ef498c216d40a1bc07ab8a4cf762020de189c39d6da", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7cafbefab61e513637878653a61ce54ced747ae88e2efa83bd930d9f7db4ded8", + "regex": "." + }, + { + "hash": "3277f6c2fd50d398b3358f28749bc9cae6dd053f4ccb94076a2400f92003c5dc", + "regex": "(?i)^https?\\:\\/\\/redirection46545646\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b25bc24d6eab504ae05edafa7753f183b803f91b9284c1fa82bf9de0828c3dec", + "regex": "(?i)^https?\\:\\/\\/nertgdfgdfgdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c9b1e7b30646634ed9da1bb3f398e0bce1fb6a4dbaf0665b0816e36701c8cf83", + "regex": "(?i)^https?\\:\\/\\/farmolfaerde\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d8d6a2684a231fa94a1a7e2e711dcd29bda0a2cc75f8c81b4f8410dd2fb48392", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cbc0d9ef122cc517a6def97a2fb8de95b8a723078aa38bdb9d729bbd53ce862f", + "regex": "(?i)^https?\\:\\/\\/netsdfigidfjkg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0eab4f385a1af9d38f50851d68d6406f921735da8e3954029cefc14ef15ef22f", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "91ab296bb749661c832b7b4e31400529cb435f91281a1b4ecff1cc70812b6f87", + "regex": "." + }, + { + "hash": "0a86d6d6d1b3472b2b6b32d48c688498b4706e97659830b320f6d3b98a420b36", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "82144b8a512bfa023422ff39230118ded461cd84a98bb7a7520eede25bff5d56", + "regex": "(?i)^https?\\:\\/\\/zxacaqc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c384718b3ed77ade374085a88110171a325bdca97b9b0ab45ca99e32183aea9c", + "regex": "." + }, + { + "hash": "0da7f41d2464348e01f1c7ed2d89f1738ab719c1a2e384b68950ea4decb88122", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6771846f3ac4371fe68aac8434eb83b092ba28cfdb6592b80e3399514cb7ad50", + "regex": "(?i)^https?\\:\\/\\/afa01faf01a\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8dc6141dadc1f88c21e1dc7fa4baf9698533428d50262a04f343c1bfce2e729b", + "regex": "(?i)^https?\\:\\/\\/enrsidgidfjgjdfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "82ccda905fcaf91e9b676efc686cb10097cc152d7ee7f4bc133f1c073bed7f1f", + "regex": "(?i)^https?\\:\\/\\/netsdfigidfjkg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c3624170bddf998c11bced92acd315036c6e242477af1aec8c5140cf5882e2aa", + "regex": "(?i)^https?\\:\\/\\/xceqavf\\-eqa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "049f214437680b8aa9fb7e38dcc20437827c4aeedea2abdc24eb2d4fd594d6dd", + "regex": "(?i)^https?\\:\\/\\/redirection46545646\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3d45788173a17d5eeb318e5e54e3e31dbf72ae35d3114fcd5d5812b417db8f16", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b0c2d5eb819f8ede74614f4e5db4e453a991777261046c98f157f73dadcf40ab", + "regex": "(?i)^https?\\:\\/\\/nertgdfgdfgdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2dd15334cf76e2ea8232abdeb306a18cdc49b0d16d4288b0b62920af7d6ab70f", + "regex": "(?i)^https?\\:\\/\\/afa01faf01a\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6cf0c9dad6e4d761eacb78a9f8ccfa67d202c87e20da6bbe9e8d22a9a5e94347", + "regex": "." + }, + { + "hash": "97d572bad57f0d6d936e7efd2e8f855ce8a33d80bfd539b7b190c350ecf9d8f7", + "regex": "." + }, + { + "hash": "46543d61c650ed971cd40fc47f640fa3b2f20add0b541b6832cb32c8f9ff2e02", + "regex": "(?i)^https?\\:\\/\\/xceqavf\\-eqa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "27de5716b8654e1e534bf8594b76259704ce31542c761e038781b8da8c11c5b3", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6168db12c2c115fe29a4467c540ac9e40cb32bce72f519f43b0cb1611f564bbe", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "581cb30a08b646716e3015666d610a2f8be834b53325008393c3b37b4067889e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register47439(?:\\?|$)" + }, + { + "hash": "f7a8b5f6c1d4012de784dd68b5c63a4981e29a38b6b482607a11512367a72cdb", + "regex": "(?i)^https?\\:\\/\\/netsdfigidfjkg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f5aa3816e47814833e43dcb70094dda7eb07e0ab6ca01d4fc15f30f59476b20b", + "regex": "(?i)^https?\\:\\/\\/daqfe\\-aqfaqdf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "582cdef79d471d7380eef888b17e0dc153d1092ec7aa2177635d236b8da56f47", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b471a005d5ff0d192ba6d71bb144989c478a59d78f897201a5fa22cb34974d47", + "regex": "(?i)^https?\\:\\/\\/xzaqceaq\\-caqe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ca0627eb8bfd1bd1763b2dcf8464638ab068436d06e34a1e25645a23e51f82d0", + "regex": "(?i)^https?\\:\\/\\/xceqavf\\-eqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3fdd9e6919fd9af224b429caa269127e1b8f895ba5744c6a1033f87e4e4ea324", + "regex": "(?i)^https?\\:\\/\\/rinduawak200peratus\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "febcc9a7ffe79fee49e35fc5a9228910fc321212c8b09b016bdcd0fedc3cfa73", + "regex": "(?i)^https?\\:\\/\\/zxacaqc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ef755066737094dfe05e41b4a084658b7fd6811a757db0c04d9cebd1e1c5a155", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b65ab6fca1eb58c6f3a75def60b37c4c505272f77b6cb3aa7df9a814d629c7f5", + "regex": "(?i)^https?\\:\\/\\/mail\\.coinbase\\-spprtku\\.147\\-79\\-71\\-6\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b9c8809bb8e9fbb1f27d3934bf18653f4fe6bafd5d2d1515ecb3848d5b5b2c3e", + "regex": "(?i)^https?\\:\\/\\/faqef\\-qaedsfaq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6bfe1aa0ca16a922094d7368b056bf40678f0c7c448e3925dd5a3afefd7c8766", + "regex": "." + }, + { + "hash": "710b15ce25a2d188451deb905cb8b515096ccc39491a513f2936698b9900cd3f", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "347e3daf687e2aa0125d84e104859b112417a53be6af2af4002f07e54199e245", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5a8922bb85357c1e2614fb07b8bf442538d86ce26d938db002c0c75a609b2310", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "259fd68d489417a1e130ed1df75a2a70b8e58246a2cefebcc757041c25ec7186", + "regex": "." + }, + { + "hash": "a2009b1e732611decb554afe4f025e81d566f0172818e4bd31649fb08041c816", + "regex": "." + }, + { + "hash": "f09b6ac9a693e5b1ba7008e7b7464de296a642381d2f3e6ede21784adb48d15c", + "regex": "(?i)^https?\\:\\/\\/xzaqceaq\\-caqe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d016cb7b9db15b2d7dca347f292179dd23dc49c70d03cb8f73a2c4ad1f63a153", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9206832781746ec66039e979b2fbfe81c2e6d871621a4ac0a6de88545b73970b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9968[\\/\\\\]+entry[\\/\\\\]+register82595(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6a0fd96da77a9ef502cdc57d5871e32a0bd45c03d23a6ecf5674613578b68161", + "regex": "(?i)^https?\\:\\/\\/afa01faf01a\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1339e9d389a345cde8d2ec2e6c4181a42ea5267d10f3927614c7ad869609dfde", + "regex": "(?i)^https?\\:\\/\\/daqfe\\-aqfaqdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "aa800306c61cae574af13243a30da89ad08418b64b06761ca9eda7a4cbd359e3", + "regex": "(?i)^https?\\:\\/\\/rinduawak200peratus\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5f08dfc2153690049ef76a7afd12a27b45bb0ab11f5aae89dfea057eafa1cb65", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c851922ad87d080d94033a8ae3e620604e9f1c344d5be7549a59081209b0fa29", + "regex": "(?i)^https?\\:\\/\\/daqfe\\-aqfaqdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "68367b7edb19229ca34383a96daf68d1ca5eb58ee912fe2f85e3b811c2df327c", + "regex": "(?i)^https?\\:\\/\\/netsdfigidfjkg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ede9399a7ed0595eb86df4255bfe366cf745f20c6868364ce2ce994d0d302b21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+done(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6d57b7f01997e410e811c89e0014c79f6c5522afe5d62165979979796fe42ad3", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fb3a2c87fce3d584566499e45944e4763ae78aece4c78630dfc1122e02bd1951", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ce70255e8a890b5aff790bc7dd695b0e57e321608559fe1d264eafaac0fb17c8", + "regex": "(?i)^https?\\:\\/\\/afa01faf01a\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d5a62dae94b15b6b28f142e739a4b5aa55c3832739a4274bd18aff2e410a01db", + "regex": "." + }, + { + "hash": "09a2b19f9228bb9aaca3fa39771828a39089eac3e781baf444ebb93bf5da61fc", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a7430a13f8501acca10d53ba7a38e45ef5af9d6fdf963bd3e008e20c23e56e22", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmskdtlasckasmcamsease\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "39495a5cb85263e417f7e01d59474dafce9451a7e5e067a1fc5b4debb622b38e", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7b31f7912b84464ae6e0a5a2011058696472dd499a2ac1557bef9bb986b2b095", + "regex": "(?i)^https?\\:\\/\\/efdaqfcaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1b7bf44acd1110a1b82a2f29129569d1fae79a2c5f1787cc7e58fdd907b08026", + "regex": "." + }, + { + "hash": "490c59ea7532a1a6e5913eef6d2c3f574ce95e0509ef5fc07716463e230960ba", + "regex": "(?i)^https?\\:\\/\\/enrsidgidfjgjdfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b17f08acd20186c9861e70a872d147a8ceb4b89575dd782a42a4b7becdb2cdf0", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a746a93764fecf798922e1d32d002e634eeb392761d9b9fbacbc979f72f1510d", + "regex": "(?i)^https?\\:\\/\\/faqef\\-qaedsfaq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0920666e293df1b32d1e4e904df9117fb8bc310958e5a00e863c1cbdc67a6a2d", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e46e53c1a0163b1cc62b8dbd564e58f402e99bc1b5f60e5c10226526fe560002", + "regex": "(?i)^https?\\:\\/\\/daqfe\\-aqfaqdf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cbc06b1174a47e2a8ace5c08919275e3f02a41ef3af07fdd69843b329fb97116", + "regex": "(?i)^https?\\:\\/\\/farmolfaerde\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fa9e9fc9ec6a063fc027ebe6e1f313aa9598c3fbb38e6700925f18e6c21b5fe6", + "regex": "." + }, + { + "hash": "9658d2e8012d45db8457a9422bda4a1467c02908551c68dfbaf3a5eb3ca19ffe", + "regex": "." + }, + { + "hash": "de251c107dc75e0e32eb194e9ec2523102b69c6085cbd47e2793f5949e4abf6e", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e70e5ab0973ebcb08b0d5a4a8eaee8b5913d862fcefbe95bea3ea878ba49f8e5", + "regex": "(?i)^https?\\:\\/\\/netsdfigidfjkg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "da22ac214a674a440ec692a292f063e99357eaf49a63a62564fb8b7d8fda335c", + "regex": "(?i)^https?\\:\\/\\/efdaqfcaq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cd62d977097140b10ca7fc83cd79b0b32fcb6e21e82935db0cb0c17e68c4eff6", + "regex": "(?i)^https?\\:\\/\\/nerieigdfkgkdfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dc57f07b6a9bc634e8c461762cfddfcadfad2c0e61bd2b71c79d03a7e67b1d5a", + "regex": "(?i)^https?\\:\\/\\/zxacaqc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0b1cfaf2a5b492e95ff612c8288233e5a41d9b9e012a0339649092a7a13c1196", + "regex": "(?i)^https?\\:\\/\\/netdfsifksdkfsdf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bdc3f8fbc75074aa8a17df07f0a92580f7a01343062d256084d057f8f85a9c05", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "57980612de5d7a2b63cfde2d418bd2cbd36087dd9eba717728b24939156a8ac8", + "regex": "(?i)^https?\\:\\/\\/zxacaqc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d10ac969e5dfc891a0dc45cb1b09cdcbd242a6a68688c8c72abe29be05a0e376", + "regex": "(?i)^https?\\:\\/\\/efdaqfcaq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "93a540b28a2250e4b09148b6390db48bec72c7b3f813ce91f0105c72c6a0de05", + "regex": "(?i)^https?\\:\\/\\/enrsidgidfjgjdfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1dd83b85db7444e84cd3d45bbf756c66acfae41b2c7faaacea7b07b8da9c46a8", + "regex": "(?i)^https?\\:\\/\\/faqef\\-qaedsfaq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "92a233b8d50d085719678debbd42bbdd49aaff36dc7762b302c1641e51772744", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxzd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "db1b43a4c4be0bd1c2a97f69694f39d6a2d132b1f8d138681e6234b72e8c68b3", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f417d51e4ba868ed2584e0e6677be7efc42550c455efd61d51d7e843ef2c1734", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "aa3a670ea43cae91f6522f2e93d60c8769d22d80196bc8c10c3bf90b7531d07c", + "regex": "(?i)^https?\\:\\/\\/daqfe\\-aqfaqdf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d9e76b401d539700f0f0277c9283b0b04de9b9e753d4a65ac37e3eb984b1ebf5", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmskdtlasckasmcamsease\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "659ede28ba1e5df95af4de0b4c7fd364d7f43801bee3c07fbd4fa4f050df0c2e", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e2ce27c471f04d762c041357da12fca72d19270276b8acbbc4e9f607b7b2e211", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8c2b69c1689818fdba859e037e12cc265fb0f662de6b667005718bb66da7c71b", + "regex": "." + }, + { + "hash": "71c6ffc58ddd72fb47f93925f9ef959d623bee0b81df9bec48149b9d476c5c26", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "897a9dfcf61405448cb90ce5011860c089982fec633591eac7de05d61347bbc0", + "regex": "." + }, + { + "hash": "33898433824a9c4aef6c5a4c303640c28fca4f5d7816672c5f7c6d0706bb5fef", + "regex": "." + }, + { + "hash": "3fe2dcf07df0beae9c3cf095694342a3f22fead09b015471f186ecd264bb4341", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bf942a6aeff79c4b3bca41ead50f5959c6dc05dd053d79b6fb20c4492c7f0e88", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f5128891a3eb7e07be76fb14ce163405a59918e0e5c3930b2c7212745eb207d0", + "regex": "(?i)^https?\\:\\/\\/enrsidgidfjgjdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cf0c6481449e3ed003a6fc83529ac0260e513cdbf2c32cffc748cebcadd71022", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9096dffdf332a03046d1caa4e4aaab9cb4aa77c35b4be6c591b20daf8b5f9637", + "regex": "(?i)^https?\\:\\/\\/enrsidgidfjgjdfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "94cb41833023d99c8040e1624b51415631b7ccae135adb980d48700580f34e92", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cbc5a2a189c4c51c5de12740dba59ef9499b84416006dd8ab4b3be99e860110b", + "regex": "(?i)^https?\\:\\/\\/xzaqceaq\\-caqe\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f08d015652576d3389f3f4530b47ed950766a4bf2ee941e2ada8131810b79b49", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "21a0e69058df288ec859c0d02c47a7279098c8b424b69b3ff21365bd4e2dbcac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+url\\-2024[\\/\\\\]+sog[\\/\\\\]+log(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a923c507906d37a57526d14d88f6dc7e4b0c6a4abe7ff619e66846c470c8a2e9", + "regex": "(?i)^https?\\:\\/\\/rinduawak200peratus\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "be9aabfe4e6e34c62e411ad7981e0493f9d86fd593613b7dd6ec66953bb3c7b4", + "regex": "." + }, + { + "hash": "aa8f4703d81b89a904262126097330b8b5f1587ae4fe4ea344e5d18ce3e16ffe", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7d06bd07e61bb1e015da8ffac37d4d656df97766f55cc7efa2604c6fb4f2e036", + "regex": "(?i)^https?\\:\\/\\/daqfe\\-aqfaqdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "eb12dec87779d62d3a88e882af7ce04a629df40bc86e48d0dcc39991e2646dae", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmskdtlasckasmcamsease\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eba330a94e702b0978173f14ef1c01478be7c86c2192321a106ede87f8f3397d", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bdd5881e4067a830bd79455fabdb433ca14262896ea87cd719c574a11413ca43", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8f3aee58d01df69579b9ae61853cabb34075ddc0cf20f99256b74d06d3a0ac41", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d6506bdb2ff27f1c0c9943b74e8411db8d66546072cc90cc2a803758b89a94d0", + "regex": "(?i)^https?\\:\\/\\/nertgdfgdfgdfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "983f395dee96298a397f62faef586158b3f16743565e09143a7eb0c53b49f99c", + "regex": "(?i)^https?\\:\\/\\/rinduawak200peratus\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3a27f58237e238f8ec6181b9fca874e795a1b327a3b4253c11e1c49e74d10a4a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxzd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4dd1016c028f5582200ede750855e1366529a19ac7805859699c54ea9155c2a6", + "regex": "(?i)^https?\\:\\/\\/xceqavf\\-eqa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3639a979775d538fecb07faad42e0adb4ea1d193f6045189156599f0a89c9a26", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e3748e0e491788411c5e8292bb8608e107f9fce71443a5a18b7bcc0e0cf111c0", + "regex": "(?i)^https?\\:\\/\\/rinduawak200peratus\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d05cb44f65fdf18769424b9637e07bda615ee336c231edfb12ae422f880180d1", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c974903660a46acb9441975954499dcaa46ecc23975ee99411b50e81c9ab1e1e", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "092017d83b08550a99435e83e65ac26cae4b9e8ab13b9948b2dad61542d24134", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "96b1b66e0163b9b62e5daa369be7a40b12fbacb1a7d47295ae3dc8b3c584caef", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmskdtlasckasmcamsease\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ca71dadd8e3c05a4c9d08713344ff9bffb26ec8db8c1608cecfb1f72e1acd837", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3aebac7186d6e93ac11ec656cf09c7d4cbe7d4bc0a16a3549d737c1e503af359", + "regex": "." + }, + { + "hash": "ca63ff3f296dd0db8996d229fffd7ae92857881104be2d4cb0ddca67986d8752", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4f9316b78bb6049e41154b8bb29db38af3c95034fd666143b3bf5eb60eafdc31", + "regex": "." + }, + { + "hash": "166907b9c5361de4589bddbe1bd2b7190bf7bb627e13c900d5e92b1b3ceca68e", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "036596848c1eb67a2f4541d7a748e6802611124bd5cd7a44d22dbaa421600ba9", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5a8999672c425744770eed6f1e38894a24361a96f54093d3b86f6e0c24a3dd64", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d75da194c9c4e224f7de39ee8e2dd74a8451f0ccafc65dcba4c3aee656921d33", + "regex": "." + }, + { + "hash": "005888058f69ac96b9cb13e531e1d2b2e1d55e696d85764acce19b1160405364", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxzd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0fee2dc5257a6091603aabeca76430661712be3153a189a15e5b81e8cb582890", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+logo\\.svg(?:\\?|$)" + }, + { + "hash": "42224a60f2d5f87bd04828d2d2b528f3e592b1dc1ad2ec8492bb5d67cca8cbe1", + "regex": "(?i)^https?\\:\\/\\/xceqavf\\-eqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4f2a2500b173469ebe3e7c54ac69740b872773cda4e8890aaab171a6f9d39ace", + "regex": "." + }, + { + "hash": "709dda65b7fe327cdaea763176c98b08ff617e2a88cce0e387263fe0696017bf", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b5799d9dd352393770c322e0e0cd3c6234a747f2a32aeeb94c36d24e47662e74", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5ff21ae3114374521b73b358507ffcc532d5fb0146831a4e8d1202151829f787", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e875d7887463ee779d9138124c57162a027ec2fe24f9c7a53bd89d0322540260", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxzd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3c03c32059c6d64d80157b2e8e519ca203533e1b80513b78de4ba6deb49cb8ef", + "regex": "(?i)^https?\\:\\/\\/xzaqcveaqv\\-aqev\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "21ad2019db6396f45b0af3efea1eb42196c8ffa4e3d184da067e024057acf397", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "730b8f5b7e0bdfc10465457298e817fbdbd0ccdfdc00763343f0466d7e9b76ef", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "35c2a0f6f36364ddd67f8423ac1d08e7c34b3323b68090e405d6ebc6ab0c01cb", + "regex": "(?i)^https?\\:\\/\\/geaqgaqg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "974e2ea6f9cebaaf544377be405cab3ef2c2189900b32a6cb8678533e5b0851f", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "727172a3067a3adb1c78f8bb0ec548dc30d80b7d0b24c22a5f658bdcc632d4fc", + "regex": "(?i)^https?\\:\\/\\/nerieigdfkgkdfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a42ff7caa242766e644256d6cbdac47e30c9f9c0851210c7587597a9f3b58305", + "regex": "(?i)^https?\\:\\/\\/farmolfaerde\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dc3eef52260034f07e2df3db194ec70ac83bcd5a36e9423938b270301601f76c", + "regex": "(?i)^https?\\:\\/\\/aqegfvqeadgv\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5956ec4fd2f182d54df1bf282b2e0151e90a1f9875e344376da940ef5233df03", + "regex": "(?i)^https?\\:\\/\\/geaqgaqg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "705e8c2982a92a0220632ffc7b272aecb0d8a4de1cda0d307b81918d1014e7ff", + "regex": "(?i)^https?\\:\\/\\/afa01faf01a\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "021972a48c0f92e3821640cb6b032619820f1e4a330d86432db683f4fb7b9480", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "23a37fafe0a1034c7be9e3ef4f3a8344b10c3a8982f7729bfc8db0bccc073811", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c3e0e13e010bcc09e0ae100d434fcb9372ec1d9c029682343db38290b7608721", + "regex": "(?i)^https?\\:\\/\\/farmolfaerde\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a34399e346bbb5f37a743225e4c477a08e4b00d8055626bbd2ed68b75d396949", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "66d538e0bf6e436364fe6815a92c7f4fd19fc95332445991aa77731e4ba7a338", + "regex": "(?i)^https?\\:\\/\\/afa01faf01a\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "55d8c6dbc9ecb1f0e476b285431774424d6b3f96c56ab51210a4859e06bd9398", + "regex": "(?i)^https?\\:\\/\\/nerieigdfkgkdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "117f223bc9b3d32cb7658a85be774a199a8a4f7cef65241ae25534a353b0be57", + "regex": "(?i)^https?\\:\\/\\/xzeqacsqa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "348c97ae8ba662be671713b4d22d0ea414934f0bc0a3679b2cfe355761769149", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "914540237ae53089bfc30b8f6bc3decce53ee0bdf2fc358a0017bc4f8c715196", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1e6297ddc7f77ebdbc5c43f43feed2dd03707851a340be64f2dfff5cf307b3ea", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e02f824b2eeac1a92cd179bef9fabb54dc90c77cddd3f16be124b234ef499ed1", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmskdtlasckasmcamsease\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7b3975cee0b9c2006c63624007a230a5d7eb4292f4843d5013664a136e29c4e8", + "regex": "(?i)^https?\\:\\/\\/eltf\\.mnpdgu\\.top(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)" + }, + { + "hash": "451c3edc79f8951f952af7c635b78dc6a7478f285ce0f66c55fcce849c917e76", + "regex": "(?i)^https?\\:\\/\\/usdtrewardnfts\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "50bee993a68617d9f08a00c8ff27bc4630061a72f6142aa340fe7c7b9fa3cee3", + "regex": "(?i)^https?\\:\\/\\/digitalrobloxglobal\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4a7570d66ddd7be011b7b54ef1cd8236193630d7e775af240bb8d927039685b3", + "regex": "(?i)^https?\\:\\/\\/zavcaeqdgv\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5c5c133aa99eb78f7fcbfbaf00bd22b15a889225d1d21f246c94592f74b19648", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9fe5820bc307b7e07996e26a2e5dfb9cb07bf10c1995d630991973051be603f8", + "regex": "(?i)^https?\\:\\/\\/netdfsifksdkfsdf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ce603cc7efbd6245ad082293fa9699d0a9048557895750a755eaf62c9edc4e73", + "regex": "(?i)^https?\\:\\/\\/efdaqfcaq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7a80045b247669df74a314e8dbefd43ad82bacea6bc6c09dbfcd55d78cc8b3a4", + "regex": "(?i)^https?\\:\\/\\/rkwioazjkkaz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "112b30b7e276a9269498eaba35b0d9f4393dc17cd1b66ed489988c823ca6d61d", + "regex": "(?i)^https?\\:\\/\\/nsdtgdfgdfgdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "21d5be99ee400c922d7c56f6614a4c31dea064c6e28af044271c96cb283f91af", + "regex": "." + }, + { + "hash": "a4e1f440e47dbbb16defda22244137f811d21f94ca0dc7753ac0263640c212dd", + "regex": "(?i)^https?\\:\\/\\/nzeftjgjdfgjdfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2f653b43b5ea9174e3fcdc0d39513a6a273a2d02b5b282aee33983ac872b50b4", + "regex": "(?i)^https?\\:\\/\\/xzaqceaq\\-caqe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d8ae3736eb50e714a4ca53bc0b50e97818fe781a0f9d25a436949e5d0f46779f", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b3c47dddc40c068d31f9323548b72a76465f217498ddd7379d7215aec8879469", + "regex": "." + }, + { + "hash": "52c22cd500ee45f9a5c3bb070891ae521007a22915babd22127e8598d1ca49a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ed3055340fc46ad63f4834377f6e699171de2bacccadfe89948814d1bf88a4c9", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "acfb31fa3d41532230878426d56d5f93119dfdadd0ff08b0eb7506c10525aa87", + "regex": "(?i)^https?\\:\\/\\/nerodfkgkdfjg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9bb8a8b42630d397f4173524da0cea2240adcc49d09b7cf9a6e66781f02c26cb", + "regex": "." + }, + { + "hash": "3c8fbb4b98b49cd5da0ab0ba63a54a770e95f40966671005c362a3b215c486bc", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxzd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "dcebaeb8c9d71e6bcdded51fee952e7541c96131fe35f04a488ec7d05c397741", + "regex": "(?i)^https?\\:\\/\\/uie1blx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c2f971e1d17d7a9cc042f3665d84df2341b786274431b5c318b3b7f7d798afad", + "regex": "(?i)^https?\\:\\/\\/netidsjifgjsdgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ab9e294ad1ce361a4ad717fc8fc016c1614e826f7486ff7c10af70c9e057964c", + "regex": "(?i)^https?\\:\\/\\/xzeqacsqa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c6c2d8d5545299c31e18b941dbaf97ab514a255baab4b61447b86cc65516b969", + "regex": "(?i)^https?\\:\\/\\/netsdfigidfjkg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7a37063f076bfb58da915ecc01ac41b6843567405b15f084d8903463bc4d6fa3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sd3tg4revds\\.zip(?:\\?|$)" + }, + { + "hash": "8612e1d795933b9b72abe4d74b36a110cc9828ca3f7cf54ad54a15dba07b36cd", + "regex": "(?i)^https?\\:\\/\\/nerieigdfkgkdfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bddca6446c5a07ae489d83944234d1adad6f29b4560f453c2e59db3bc4023115", + "regex": "(?i)^https?\\:\\/\\/netsdfiigsdkfksd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "877d65033e2240602e8437512e4d931f872921c85651d6faf2d8a8cb94942b18", + "regex": "(?i)^https?\\:\\/\\/robuxcardszaed\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "afc036ed03c674f8739597f5f86f009cbfa042eda809b2d00e5920b5321141e3", + "regex": "(?i)^https?\\:\\/\\/dfgsdgjhsdfjhusdfjhusdfjisdfg\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b58541418f5e1552ff2f256b040fb7f563ad72b3cdbfed6e38d9dcdc28652453", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7a28b063de9304b4b5fe66c35018393a2eff81f80ea0609107ba479f1295c908", + "regex": "(?i)^https?\\:\\/\\/dsakdjas223\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "003ee0813ead9e00723603392ae1e49dc75e91ab6a9494cc531810e54d06935c", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "39f3358d269d5395507894413a1aedbce70fc85696f32cb008ccb86a38477274", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1c5a4659e24f8a9d5ccebcf1b407c1b2cb4f50f74fc5fecf48227b369170cea3", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8257f4c3bb3fffe7de66ce650ab987dd7941a6936c29bf8319993885ee7e0d9", + "regex": "(?i)^https?\\:\\/\\/komxnaguoradaecrtyna\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5013c3385a2edba252eacd49070bd04af7d76587addcf055ed5cc12fdc1c0016", + "regex": "(?i)^https?\\:\\/\\/komanbtuhzakodacresa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "74475f97a5981d2c8f2cb2e8904b686b33bbc959610cc39ea3a523fadd1fc71d", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "96fae1906bfe7b9b6484737500f4490c4422909561adefd26b7e262cd1a78600", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c6e6807183b585fd56ddb5307474ae554d20b3ba887e30ad05a57408b03a5307", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "56690f1dccfcd654d9d8a5b151c5cc0879a5be1fab9d73fed75300380c7c6378", + "regex": "(?i)^https?\\:\\/\\/tukoamnuocaytrjxa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c133070353c95e1621d01443ccc3886b58af7e8a64e7c5fc15e515b90738378b", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "546c0dad7218059eb11cf54a6fb70edabfae9eb628f70a68a3ae286136d9afda", + "regex": "(?i)^https?\\:\\/\\/dsadas83223\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a089d3e4483df6a1eb81cc28140962a0e8ced6d5c56a96645df826cdc922e6d1", + "regex": "(?i)^https?\\:\\/\\/lhwaachytbon\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6f0a037a478789e80104e38eceef2f52f54a417248060a60f3a8febd92559a0e", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7e4fa7e38ad33415eb7f03f06e74ff0ffbd63d60935c921f4506954ee3124812", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hhkruu\\.html(?:\\?|$)" + }, + { + "hash": "b66993a27b1b28935d80b8e8e12036076e7233167ad625f1f3fa9aa1b3cb2127", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c9015aa1c0412cd78daad326c36fe5a680069efdb455e88b4c435382b95241e8", + "regex": "(?i)^https?\\:\\/\\/verifier\\-recharge\\-transcash\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "578c4ce5ddf3921ddd0d43a9b998628439510e3ff3cc2289e84398e4c992ce2a", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "25dedff487efbae998c131448d724d748c3fdcda026e3f68f86c5301f0050a83", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1bac1ac4281f20d3fff94d56103e8d06561296fd17566e01bfd6b9917592663f", + "regex": "(?i)^https?\\:\\/\\/koemxatreixmat\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b02b586d29942e9f3b1c9e5d61013b13c8162f2195f929b6466fca8f0c94c480", + "regex": "(?i)^https?\\:\\/\\/tukoamnuocaytrjxa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "40afce8e00819728b414e087faa72674bce52c406d3ab57d0387fb77da9eca6c", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2c5a0460e4bbfee1190b7d22e7661a4028d685e11a040cc646a183d8a4ca4cb4", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "901df9ead81c66a3add1ca85973b85ed44d72b7862d924f10c2b0e11e68b8acf", + "regex": "(?i)^https?\\:\\/\\/komtlciamstrugavse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "21d51ab0767540a08ebe620fcc1f37ca77d0619f343af7f20b41bd1d961d69dc", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a9beaf435cc7615eb7f97719f2b3e60b230a4419afc52006567e3dd91c4f2d98", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a4b23a3cbdcfeeedf4ee17f9ce899979c97b3f1d2daa51e3e973e545c1b34c6e", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5dd0bbc792ae9f8d18f1e91d4eb10b9b3d12454c81e1d470354be943133ea49a", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4b19d4b602a2cbaeefc5946f1caf38ce3db688c8cb114d253477d2f65da647dc", + "regex": "(?i)^https?\\:\\/\\/komxnabruasecrtybzau\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bb5f6ea9d4aa6986ee7e74c0c0ae5e569e706eb366ebf5ae78e4aba5e992b558", + "regex": "(?i)^https?\\:\\/\\/dsakdjas223\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "298b8756ec082607c3b1a0ff77c932180d68b4153be2e45e4c18732ce6553331", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ecbe9e83ac287949588a937cf28141f7f36f2a9904ede1a78c59b0b1359c15be", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b079462f391baad7d1b433d7d87277bd384ad825ebe271ee5097313c91066a46", + "regex": "(?i)^https?\\:\\/\\/dsadas83223\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bcfd9e52bb7687726723ff76dd323417f50c1fac6db46bd020356a2a92b0327b", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8058afce77b70a104e469cd08ca1c0b4fd5d7b9718f8ddadc2c4a6a778a225bb", + "regex": "(?i)^https?\\:\\/\\/ayusgduasygd66aysdghyi79asduis78a\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "74479408da6599ed98bcb0e3c5ab560a520a5b7aa1b2e3307ed46b596c20e477", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "00bdf989c5d156dbf4ac6f2f3af0504520aa02bc9567e5e2b1416342ccca1613", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "108c04effd3217b775ff376a54f3841a7aa7d8f0d22d0abc7bb9f4f963e84279", + "regex": "(?i)^https?\\:\\/\\/att\\-101293\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "650d52759cd39a2dcb41ae8ac51d6908d794b313d2f3f9c12b312a917b0f21e8", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "62edce8386aec332b760cb2545e5fa4d62fae4748688cb34f29c3ce9144f95ae", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cc017b3064db3b330718392093514a1d7c5fb98b8069306fde5c1c860d783c8c", + "regex": "(?i)^https?\\:\\/\\/aaaaaaaaaaaaaas1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1a1cbe107b01120658be4ec0d444af1a29ea494d9be2866183f0e6d002ef0c4c", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "76d7e3bd74d96b92e77b2459d1ec7f027c83b745917b8df20ab79df7b78a2bed", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "172ec355e8b9f201b3036a2a87ea4d57255d9706a357b976f6a7367d4b5e3542", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1e9bb9de74491c510be5326d87bdfc9dcfe07dd1e72f355abfcbd2ba85cd1cd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+in(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "51f2e52abb8ef78aba528932b32a76676cb91b29fca7d6681a06b2450ad2fc55", + "regex": "(?i)^https?\\:\\/\\/lhwaachytbon\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "446d6d51c7d69251c2bfb502d91c951659d7e4ba3ae6f3ea46999f3d7b65b8ef", + "regex": "(?i)^https?\\:\\/\\/tunkaormfatreioamdacre\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1c49eaf73aa7f1c45c39799a94557711421410db6995b9ec1c17db3ed2039b69", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b87ee4e5f526b7f9765fa2569470892ccb1dba13589af50e2ad158da6b841764", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0033bddd3bad52b9d98a1a162bc726ec652599708dba4127297200a9ab1752f1", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "556c7db93f0d663d8a3c982faf7540b804e8d86196dc0b7c140edb742353dbe9", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdsfdfgi4848\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "287f426e6cb3059b3969fbbcb1e7c5f3a85787a4e73d6f62910b41fd1761bab3", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ad1b808ceff2f0ea844b9080c80d2656eaef73b73f4d56132449e644ac8ae28d", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0afb1438dbaea09874c14d83214dd26360cd744af1cb8598a57a7f10b81ed924", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmshdtfuaskcmasckasmemas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ffde673b484bca9226726682d532c69a67b26a9de28a983eb89bbdf3d4395875", + "regex": "(?i)^https?\\:\\/\\/aaaaaaaaaaaaaas1\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e0c64cb3d3d12366f97f0e2cabd73af31fbe0e5c5c34dea32ad6d7dc1457b8bd", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "964654205835ada3f2d8f67eec452113cb4f404ccf275722a7cf11618fb35301", + "regex": "." + }, + { + "hash": "862f7a0dd276a86602658f592490a69a39af0c7967de841326b4c568570b6fcf", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9230fe34e05d89a69ef891a7a3f566ed24cd056831610b75a5cea62b012c65ec", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8145475d842e48bc4987a2f8a810161543fdad8d9d6782641573e134137f6298", + "regex": "(?i)^https?\\:\\/\\/www\\.rewards\\-trustwallet\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3c39cd55b174709019b833a320119298a37b25280e8865fcf34863badd814418", + "regex": "(?i)^https?\\:\\/\\/saddsasdadsasd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3df924eef57701e18ed03ec973f2f1725df6bb8100c76c92d5346147d33760af", + "regex": "(?i)^https?\\:\\/\\/roblox\\-ux\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a4aa734b6c232fd3116d09957c9499dcebd3d4d2374ede844bc034bb3ac47537", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "970f80ad0cea864bdea2aeb4923308d44519e709306c580bba12b85eb74bb291", + "regex": "(?i)^https?\\:\\/\\/dkasdhsa8323\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5994486c96e632747409105873dd0b1f920f3a202e037dd58660afa29e3976ee", + "regex": "(?i)^https?\\:\\/\\/komtlciamstrugavse\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2fd2d25451046ea4b9df9dfc1058b648c28572d9d669304328083ecaabc97e3f", + "regex": "(?i)^https?\\:\\/\\/roblox\\-ux\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f15867d37540e94e8a7d8468dd3620789d1bafc053d884aac130b3225ff90a7d", + "regex": "(?i)^https?\\:\\/\\/koemxatreixmat\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "085b7eea91c1dd7b77c7e2c36660823ce8ed11f4719f01a73b9ef3f6659b7968", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9a2a994b61897adc2ef813236571e456a719a0fcf78170ea9ab9de86874313b7", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8318463b7fe8d8872f180fb1e16bb3dfd945081fed2c41864e963df4dbba3c2b", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3696be4d7988cfd4e6c4924f76e90081c21fd25d3f85ea3266facfbaa00f4839", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd9b85352b2c7f7c2c80be225d8925418fe32356a4f9b2bfff00ff798eaad58e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cca0692eb16d8693ad08b98dd531f6afc5fe24afa7995823fd0b2299b0592026", + "regex": "(?i)^https?\\:\\/\\/lomtuiaredaktomxagafreza\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cd133084b5875fb62e61211c9d218f12992d0fa04392f691095f306e6770aa9a", + "regex": "(?i)^https?\\:\\/\\/verifier\\-recharge\\-transcash\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c7cb3cd3426523495699eeca0e71989e0c3d517e3c6504bade63a6e5af5b896", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "139b0e396b2c01c31a391525ccaaa45a98f98cf30327bc607f8a3a3797f6d5ed", + "regex": "(?i)^https?\\:\\/\\/dsfgsdfsde\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0a414041eb54b9e4e1b98128e91302a5433cb3397d7f83ce2519e4e2a8371546", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "139b602b929c4236a8b0c41843075882e4ddffb0ac972bfe8bd76afe5d64f3d3", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7f9da0a65feeb908a86d26fd6eb7d94d0779304aa57a54122a8a9c10e8a4ddbb", + "regex": "(?i)^https?\\:\\/\\/lomtuiaredaktomxagafreza\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "aa2af023c4c554c7b841836ce1e1e22e00c7a74ec6926785d2028e7838dff644", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0a940048ff3aa153c1b68e67f8191c9f4dc29776b7a64bc654d62e2166f251ef", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c478ff581b0eb85a1906ab390c9aa5d08984eafe16c902b5adef1d5644db5902", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cf6aba46c84e686672f2f31a7533fb99c1578c9419b0c5fd63e3c3b0f86b86f0", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7332dea5f027006cbf7a7bd67689643fdaa8a13e28c80f58f377972b02aa90bb", + "regex": "(?i)^https?\\:\\/\\/adam2b\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ae99873b6ee387e1d57604baadea3312ba53fc100fe5e0868a6e7574cf51c724", + "regex": "(?i)^https?\\:\\/\\/robloxgottalentpianohackscriptsitev3r\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b23e5f6962a4bbd006398a1fb291d925ea7b6f2ea86086cea629a5755eadc62c", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "75dfdfc326fd4701c7f64952f0c181dab2a521871be6c959e4c49c9639f2d779", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1687c78aa3419d639717e31eb087b391894b0632f83d04af570883a8c9518a26", + "regex": "(?i)^https?\\:\\/\\/ruessr3jqcsruessr3jqcstrending\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c298fcafe73b77fd7fadbfdca2e72f48dad2895aed26f1bac6a50d0f99ebf3ae", + "regex": "(?i)^https?\\:\\/\\/lomtuiaredaktomxagafreza\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0eb6a5a7636139e9d62e76f2851cada437085856ed1ce0f299384d4f08d97b4e", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a66d3c86b01f4ff46f1b8965e65592ea4ad064c5b046f4df309fd5d8d81a3fbf", + "regex": "(?i)^https?\\:\\/\\/dsakdashd823322\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "00367e444bf972023d73b909276d5402685a0afa39a5bff5c6f6cb90031e4f21", + "regex": "(?i)^https?\\:\\/\\/roblox\\-ux\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c17dd285802fac685c9e0ec639e7f10b8d01e8f81a76a724c703f59da251edd5", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8490218d7ac3fc87f961b0ef7e3d4d7c4044126b8ec77717f556175ed4a0c64e", + "regex": "(?i)^https?\\:\\/\\/dsakdashd823322\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c6566c7a35f42ce8eff25a47372529c2ed648a4a88cf4f7b5c1daffd0100b8cd", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "916b9dacc3603f25a174d7f15641e956cbe864812e3da43fad13b61c78b64580", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4c7e0c5a3807765ed85bd2db4c6465254f4e094a5f78be07866725f616348dfe", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b464e66e97d4f323cbfc00f7a7784f241553947ab366cf96b139618a8ec7484f", + "regex": "(?i)^https?\\:\\/\\/dskdas82332\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2e3eb2d2f9c02cfa3738bf4435b0419e6c13164c586185aee83f1972b78a26c2", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c362a410a45833cc057c828074b6bac6d94a146d2744f53c472caab8ab06477d", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3c61dc8a926b4623c87d0e66246cc12b9b00180ff08aa409e2c04943b7faf4d9", + "regex": "(?i)^https?\\:\\/\\/dsakdashd823322\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cb571d11c0d4b8c05bdba420b57beb0ba0d8bac792dcd418d99dcff607dca655", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f2d8a1e2458fca16757d42ba0f38a98f9de51d583acef7ba40c63ad8c89bba26", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d6a75b2f1f98f3d3837156f33f01ed8b95fde6edd261d9cb865af62b48b638bd", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b246851a8368892f53833dea430e33534af0a128d13fcf2878966cc6c31cdc41", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0b4122a68819289d250055f2c1b72c50a41a51675cb385aea96a55e349e1eb81", + "regex": "(?i)^https?\\:\\/\\/lhwaachytbon\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c9c356aec8e868890d82f0370aa2aef2b3cf6c9e39740cf43aa4c6216e735e99", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bfefb18d1b2a752fa7e8e909c99ecb0ffe6abe6c8f78d16ff8f2ee01d28bef19", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ba8079a875b82250109d353047e8652e5d3596bc26f5e7a0b5e384ec7063b326", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a8a284b2cc2a1b3b2175ef066fc93eb843bbb1ead837044edf085f9fdc7d6d7a", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "39f2875761907a7e1e942fc1b294a639df03803d5a8dca2ef096f0ad3a125374", + "regex": "(?i)^https?\\:\\/\\/aaaaaaaaaaaaaas1\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d89459d9aff051929e7efaeab5e6ae8ad2e77b936844a0f3a4ec20ec5e79145c", + "regex": "(?i)^https?\\:\\/\\/dsfgsdfsde\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6e70be0ce52dcae9a6e34b818f6c5fb18ae4edb6ae52c6472293f135c79cbb30", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5a36db3a2fc532a6c67f7bfd478cb5b6dfe135f8a6a0514ffde9081d022e98f1", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1bb50aad0e221fce26afb02dd89adb0596ffa65dc290ca91c3a5c51cb32d2efa", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e3fbc20272a061f9fc1f5b31b4291c7e67aba90013ff6392068d1dec51d36156", + "regex": "(?i)^https?\\:\\/\\/tunkaormfatreioamdacre\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "28f083f5f5f621d469770ef8eb9277d356330b3fd6d8abee15768397260949cb", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4c5b50f121cbe6047e1f081fbb3945aecbbee9f62ffdd87c6d93a204df191b39", + "regex": "(?i)^https?\\:\\/\\/koemxatreixmat\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7d1f24dab23fc02965e9be2ca0f205d4c5d5936c58db9b6bba13417c08260d0c", + "regex": "(?i)^https?\\:\\/\\/gdfjhgtyugsyudyughdfgjhdfghdfgdfg\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3370d31ea0077d4df230722b11ec2526d7e234ec6df23a43186a0448123283b", + "regex": "." + }, + { + "hash": "01c85fffe26eb623bf227e877337eefce4bb16bf26920bb384e864d5c76e4724", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "530941c05c531818769866b70c23a4d12d52450eeb63971690c46895350a2124", + "regex": "(?i)^https?\\:\\/\\/321312321dsd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "384c4c837ff67af22a30ef2f1c775e4ffe14f270bce31c65d13c7907125e5eea", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "403ee2563696fddc7299d1cee559965828bde0313eab7c98718e0d2ba138a1fd", + "regex": "(?i)^https?\\:\\/\\/tunkaormfatreioamdacre\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3b3a05f1bcddf92fe2ba921adcd2101329f921578883264049e1bb4dd82fb7b2", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+01010192455b7004\\-ac373272\\-15a9\\-4d25\\-a18e\\-ea16116946c6\\-000000[\\/\\\\]+KZ\\-ukItmwY2a_gpex\\-i0JReNylw\\=394(?:\\?|$)" + }, + { + "hash": "c1624e4b1df32fa8dd877bec58baa4ee2a8904d58cba39ebb0b21da03804d9a8", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e505e7095f0e0a569d4aedb69314525f67a5eec84f8b12c873c39310c716c732", + "regex": "(?i)^https?\\:\\/\\/aaaaaaaaaaaaaas1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "13ececdcc8a4274e2756093dcae6f6debb2c654da8656630479de1ab83d4fbee", + "regex": "(?i)^https?\\:\\/\\/ruessr3jqcsruessr3jqcstrending\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e60644639982a13272543324e5959407942534010034ee51fd35c731501ab9ec", + "regex": "(?i)^https?\\:\\/\\/dsfsdsdfdsfgdsgf85898\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "abdade81cbc1c48583e11189cfabac58429a3a9261936edee68e299f815d9049", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmshdtfuaskcmasckasmemas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4e2cd6fb3c4f2bc22bed8f3b506c52a86bef6d0e64617453d0cbd9ceca175875", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e7aeca258a57aa159a6be3f708af9e660b747fdef922a4bb42ac4810e7636ee5", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "de1a868cd8f77dd6c656383ab9fb967f36a0e251cb2bb7c4b82c9e094c75f8eb", + "regex": "." + }, + { + "hash": "0d7b2d5d57659e4658c833749bdffa10ebb1e516dac013533de4e7d6218f5d40", + "regex": "(?i)^https?\\:\\/\\/dfgsdgjhsdfjhusdfjhusdfjisdfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd0e549595531b3d2cd43a7822fb19ddbfaf140b89d37f7fa41a43a8dbf48c90", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b4a228c73c39d2b6922becb7fc310eeced123e961de1ef283d3c2ae145d78470", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b319bdfbb6f28ab8055d14066cc7da344002f881120b6c983a7673aeb895aff0", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "49e9fa07b0031ad7516c1f86a7bff7e339f4614b1070b42a768e976eac540d0d", + "regex": "(?i)^https?\\:\\/\\/saddsasdadsasd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c2c87ac733489a7f436d850c6cd84121fc2bbedfb482663b4fec1ebf2675cc08", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "291d4cb521087c3f79b6a3e2df75511ea8d117111e45bd989fa630bb5eefb68a", + "regex": "(?i)^https?\\:\\/\\/dskdas82332\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "46a74838473c9c2e663f31fc56a74f6609835e5dabcbd8a315c099313d48b352", + "regex": "(?i)^https?\\:\\/\\/dsfsdsdfdsfgdsgf85898\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cf32a826869f1e543ea217c7780ea56fcbb62f269e79e0be43fd7a784dfd442c", + "regex": "(?i)^https?\\:\\/\\/gfjfhfgbdfvbvxcft\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b9a94e61c147eb1b9489b3c800f0909e6c91ef9688a7bb51d2d07e844a2b8e5", + "regex": "(?i)^https?\\:\\/\\/tukoamnuocaytrjxa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3fca900749b3e05ff0493c601f401bfa634238e162dbc98052757cfa5e45dff7", + "regex": "(?i)^https?\\:\\/\\/dsadas83223\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b109f2caecc043e76ba67cb373bcb3305108800d5c4ad056f9153203a6b2a328", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8537e29679fb490a14859058f46dada386b5eb549aa178c6c78608dda3a17911", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9093fed0607200d8542a7c7e0ddb73790d434abc40d622c81244d9d84c316027", + "regex": "(?i)^https?\\:\\/\\/saddsasdadsasd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ecef2dfaa94d393800c460f4574e49e2422a6baac8ff5d1ff5e8df54c06f2c60", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "93e1acf3a5249908a881d1b06dd8fd28196a8dc731eab16cf8c7f006b11ff460", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b45c77091afe96da8c655ccf0a24375958202e0496fe83622f134dedd21f93a4", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bd6b6cd6c7c674725f2cd0bfd97da62f4a36bd583207b47d4d73fd6d5f0a4847", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b402a68a56a01d7f2676572460e97248dd365252a9123e70e16e080025059696", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f4129da11db6b8154d22cf6bb00ab1751a543f77def5826617b7cff43fd17874", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2f451601b75a215e7decf43ff003ed3e4ee6322a7328e2d370ac99897a973bdf", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4e5176e05f327612b89c58d8b8f79bca682d8e2f4f0a88867678a94babb4aa35", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "15135d55eff51ddc9a43ffd1a3ad8b1c778f001fa58c070d0edc3ee032b21150", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e36a10198dc9c5f5176e006a6e976e58bb5bdc391202845bfe5d55d49b737aee", + "regex": "." + }, + { + "hash": "af395112a7f5ad5aa498cf65823189f1783fe3a4fe6cbfe50e90838b31e5ad8b", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ac2145b24992e641de326140a4c2124b3b95b9740c4ebe215d5110fda6ed1d44", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0ef467ec9dcf78ea5b19aeef930515e1bb7b3ff431dc272a09c0fc518124fade", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7c3b8d7841f9f008bb684ce58a79842dc9b7cbc8cc2b9a5ec3803c03e7d5498a", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e46a9c358080e1f6d5ed4eb222b7b4456dd8d7601114b0cc209df4d6e2e52d93", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "459b3835f14e3558b6f8ea0444c2e299e6059d43be69823b6d5b6cf0aeba49eb", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9f4858009451ae202936ee080aa0d3a878a3746d25b3c99f88cdcd15c73427d2", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "18de0c978396767a78bd02285fa9bffaa250d04b2571bbd1d09d150809274506", + "regex": "(?i)^https?\\:\\/\\/verifier\\-recharge\\-transcash\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "89a7d68919a85e4276c0c6be5388b0c1cb66f1684630d84ee7ee3053da19bd3d", + "regex": "(?i)^https?\\:\\/\\/321312321dsd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "55307b2214187ba0b62c1d709e07d43df0e4a57c952a755eb0f71a2408411b5d", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07f9ba21b69485682dcb7a3a729c3485055270aed6736202eb82eaa9d84a4c45", + "regex": "(?i)^https?\\:\\/\\/gfjfhfgbdfvbvxcft\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e96d06c52a07b75b295dab55e1b00f7a2ab1e6eb0687519f3864ceec2e317704", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4ae84e5ae19bf9931f8a285600371af9827310e374db0a39ab5bf377a227eeae", + "regex": "(?i)^https?\\:\\/\\/scdsadasfxvx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "57d6ee00f79982790d9a203dc61b29ef70dc1da9f03910088b07fc8939ff6047", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2d46856f9a1589b80bb7f2b3dd86d9778429fad8365a71c15c8d2f6f3be13040", + "regex": "(?i)^https?\\:\\/\\/dfghdfjhgjdfsd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fe9160b724e40e3a18cef13058f820c72d65ee2cb3a97ac362d4b3cae6b9d9dd", + "regex": "(?i)^https?\\:\\/\\/lomtuiaredaktomxagafreza\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "30296d018f0d23566b49a58de699dacf87e922c4a6f8abf5af28c8b1dfad26d0", + "regex": "(?i)^https?\\:\\/\\/amarjeet91530\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f5bbfffc155daba7528603e407279e955c61025f94be9aa1617437da63b159b6", + "regex": "(?i)^https?\\:\\/\\/dfgsdgjhsdfjhusdfjhusdfjisdfg\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9360935c85cd23d3eb2d15e94f43d4508ad427292ba32e3135ec9138636edb26", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c575cdc43ca68f5b818337e1a43e0421b8c7231548ed8b795051a26d5b9215", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d23d186f9cfcf89c2f63994d5cf3781a56c1554996d428453d4b928f9d1c188e", + "regex": "(?i)^https?\\:\\/\\/komxnabruasecrtybzau\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c68a4871a08e86e4995fed90f6884feb458828bb1d5201171920c05181327dbf", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "24fe23be89f1bb1828f74c7ca8b1e4bab046d2fbbf21a7c7e96e1203fc8e609b", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fbcf7069a37605a5128a50d7d8f5d25236a342e2a61f69fac735471574d3bc2e", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "dc8e3cfe161d31b86c57d67db552e8c740017397a70e8abe92f9665610926c96", + "regex": "(?i)^https?\\:\\/\\/scdsadasfxvx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d75a6e3943823fefe2bd13b91a38fddee2ba8da985c17794864d065257916ec2", + "regex": "(?i)^https?\\:\\/\\/aswfrehyrtgjtyjhtgfhnbgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d4f631948f7c6980c56a20ce78f59ba43ab300ae90a292dcf80f7e2bdffc523e", + "regex": "(?i)^https?\\:\\/\\/dsad832\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c33ec91ef9ef055961928eda94324bba5b1688eddf26c6e32f966ab627a4de89", + "regex": "(?i)^https?\\:\\/\\/adam2b\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "adb10256e9443f8701573f6cdc1945c2928ff348e6abbc3dd6921650d16a1066", + "regex": "(?i)^https?\\:\\/\\/komxnaguoradaecrtyna\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b138b1d126f0a7fd0f304db6b692401ac4c1d75f838f58fd507c53e7a6998445", + "regex": "." + }, + { + "hash": "37892071e3f5d67be3c3cec25cbf9a35940acc9c83890f8d8f58c4d68dc65b07", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "905f1716fac2683434557566fcc1567ae577bcfaacbb25f3d9484f1230b6012e", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "77baa70eee1632b99cf197b845dd2309aa18d146a52d1807d69ebb0880f13a89", + "regex": "(?i)^https?\\:\\/\\/ruessr3jqcsruessr3jqcstrending\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d64ff3cd23b5415add2958592acc291f9f5e4ef5dc02551da1cac6ff2f1cf1f7", + "regex": "(?i)^https?\\:\\/\\/dasd8332\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "55d87334d4081134d969e5302517b0cc57729ecf91ab24867252de4082bd3d00", + "regex": "(?i)^https?\\:\\/\\/ayusgduasygd66aysdghyi79asduis78a\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "20b17350c6b7d6b582bc20ff32255fc9a6073b2609e2f0bb6242c26d4024bd04", + "regex": "(?i)^https?\\:\\/\\/adam2b\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5db71d02ca3bb9b68856f3a283188b23e8f0c202bab6ef234d3f9db6cf9f771c", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5e00ca05199b0716b0fdd59e932a6aea701b54a139a0391cde7659b4b288103a", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "523128d8fedbbb5cc5b8b26ed5c199214498110f21e722522c666bab8d1754f0", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ae4781a51b4a57923799bb1ecfb44b1be8fdc65ad76aebbcb9e00bcbe7d579cf", + "regex": "(?i)^https?\\:\\/\\/komxnabruasecrtybzau\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "297c8f92276870e1191c87ba81ba928abe4c504fa5889484af9a442c0823130c", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0b142133e25f5ed3067ff577687418bc30b62e7700312a9a59bb8eef0cd25d4a", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cadf3a1ca015f297a53a894f5621939a8a25ead14c35ca1ef13ae67728ae6710", + "regex": "(?i)^https?\\:\\/\\/dsfgsdfsde\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0cbac321e56ecbf9113a0381cb2e1459567ef1aa05bd96618f591a477ddbd3dc", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2e253fe2911aeb8f8d40598d0bf6c8a609eebe5ad27a5628ffb6f5f8f6b6b1d8", + "regex": "(?i)^https?\\:\\/\\/dsad832\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "426d31ef80b0f365de64ec92bfe5c935274c8641a62cd35f9d659a6e1317df7c", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d08933f4594464db829fb06c0a8ba5366c5b486bd2655419706d01e64567788d", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3e702c55548410cb349b47466654dcf61df51552039426ebb62bd9b478e30363", + "regex": "(?i)^https?\\:\\/\\/scdsadasfxvx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c2a3b59438fbdac2d5827a3c435042b807801b140f8d30b3700672226794290a", + "regex": "." + }, + { + "hash": "7b2a752b08797a0bea7e0f2f89100f399e7e8aa91ce425a383acb832b77c9c67", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a9ba608664d52b6288a6d0c1175e3ef92af127b6c7f0ce802706c87561385e09", + "regex": "(?i)^https?\\:\\/\\/dfghdfjhgjdfsd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fb661f71c317a1cc034bd4d5c6f1fc83fc3ad24bd4b63757f82e3219dd87ee54", + "regex": "(?i)^https?\\:\\/\\/ayusgduasygd66aysdghyi79asduis78a\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "62fcfce2fc4e7cc66ebdf7d9d38b1769e72100ec26c7f077ef72af336c2365c8", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4ddfc51b5665550b6c4cc213e945b1d90a414598218677ba0e1b31ec615f4027", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "59a5ca227510170f38abb10fd85304498d7f36bf43695caea29adae32a9c9fe6", + "regex": "(?i)^https?\\:\\/\\/komtlciamstrugavse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fa2bc620cc6f9cedf540bec500b55727cfc066833492c5484ebb49b1bae12786", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "aaabd21250c2fb3f3370b635a3fdd3c21fc254d92e76823ef0ba23b1350f91f1", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0b1cd7a90f8084d9c0809cfaa54109405c2fde81aaba9b43210749ad3e5a272f", + "regex": "(?i)^https?\\:\\/\\/scdsadasfxvx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fb3a7b10384a969359f767c7ca757fef287b7109a038c775ff6310f31cdb7319", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "114daa715d1ba9cc5dfd89d48d92bd8a2d5777c13ef4d8f5f669a3c770ad094e", + "regex": "(?i)^https?\\:\\/\\/dsfgsdfsde\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d0cbee0c4edd8474977c1114ff1f07e48b22c2c3394de3f3e33903c1a2ab0f8b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d342fe57fbc91fe6baa4d76d5a2b81dd70d833d18c1608568460193ae414ab72", + "regex": "." + }, + { + "hash": "a38039e51f302f86cdbba183f689899a1dd67fba4d668a3d2f4b7cb434686d08", + "regex": "." + }, + { + "hash": "a7f18e2c7e8d1f8ebd404de0b77347b874e462bb96b9a7fa232774e22cddb00a", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "480a200662b4e9bcdac7f16e199f89f674a677d2b9c9b4896cd42d964da80f98", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "efa45b208174794400e86780defed80f20ac39a6bac6a7df3c256742308f9a96", + "regex": "(?i)^https?\\:\\/\\/321312321dsd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3f673d1c4e1d66b8c12317b26cb02f1babcd66ce5b305b9994584c7707268480", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d5f7462801402ad850a1d569c0cfd0dcbbba5f7e3af48cd2742248d692d18ec6", + "regex": "(?i)^https?\\:\\/\\/aswfrehyrtgjtyjhtgfhnbgf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "43013143dac8a4847cdd660c9023daa40ca374f207f95e031d4e8c6a226dd450", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "95582538127cdcf9b297472e031787795733f0c60d3e1881a0930bc310e5dc1a", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4159144ac38bd98439f28c14e887929c0d2dffb9c8184fc28e6d872d74f11668", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rastreamento(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "92c5ef1e87417e6fb7c78cb648da7d0c621306a6ca68db29c9afc6d92c2df9b0", + "regex": "(?i)^https?\\:\\/\\/gdfjhgtyugsyudyughdfgjhdfghdfgdfg\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8524645b802a1b2b0ade21e0f7cf02d21a705f97b1e7d1617ad175b9108d2317", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c382bb31adf3f52000592988a51cfbf73b0cedae6dd1760763bb25d2784c85aa", + "regex": "." + }, + { + "hash": "fa5377e589f510a438ae53ba08503bfd0393ad14cde1ef84540040f59ea2ba92", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "788ddfbb9d234d6678bceea042eab317afe19f74ba75c08114a0c0e62b9198a5", + "regex": "." + }, + { + "hash": "e559784b540b721f6f7e0631defb033cc0044368d6cdab266ddf672b231f3cbb", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9c5d2cb53e049f97eddad6d152bc734d70695112e5b65dafbc85e68da5804d4e", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ae9cbcfe09e1938a70e1d9a2273e6d72f77aaf58fe027bd5f7efd60ab10c9d25", + "regex": "(?i)^https?\\:\\/\\/roblox\\-ux\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "39bf5879241ec1ad1f3d6c27f153dad33cc96423d6cbdec2c31f1be7a9a30f83", + "regex": "(?i)^https?\\:\\/\\/aswfrehyrtgjtyjhtgfhnbgf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "abb000f2b8d39776dff57cfcff7750dc2df8c798553f7ac377f85efb311c8cb4", + "regex": "." + }, + { + "hash": "b73663b80fd26fa24f697be8774d6d621970135684a5970e3eebf32620762490", + "regex": "(?i)^https?\\:\\/\\/seling4you\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3bf62126cb3ccaeae90763093d761046d77bf0cbc1975f82c2e4f67b3391f204", + "regex": "(?i)^https?\\:\\/\\/aaaaaaaaaaaaaas1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c2eb4e686794655cb94002ed75452c8884afab138e032d0b4c5f142dbf4533c2", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "86c00c75c7b262b03cd6f63147ee56fe32db3f40d6340f3d92e4b14892d36bc1", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "13d2e64e55d87f2e32be7c5976041cc6efd1b3184ac37c83373a81d514eb8256", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03e37f5273ed24f08d674f3eb8ac25160c08722d99871d562a4766439ed97fbf", + "regex": "(?i)^https?\\:\\/\\/dsfsdsdfdsfgdsgf85898\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1b629a3d8e0523356aa9ef02aa40bff20b86f5d8d979b93ba1c9d212729d1529", + "regex": "(?i)^https?\\:\\/\\/att\\-service\\-107783\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3b037f7c61196540539d8e0dd7f6e84d6c2721bc7cda403b4a9ea1d764f526d5", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "be99192af5d28c3d19f2c3a66731fe5c1c7940057c161e8b846e5a728259ce51", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17c6366d8b744dd3052a63f3ad5df146b83e31bb8a7548d92fcbc2589b4d77ad", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a762250af72cbb4ed1f107e2aa9ef32bd65d6ec31652ca03033013413bd8f279", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "35f3de608be7b403f7752c92a4224b2c4bf617edd4595c65a58dc0d3130fde09", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2f27f121ec5c10249e86eddd6c73dfc94dc456553f866e2fa5fad822aa75cac4", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "099414ebd669390403bf607352497096fcae885a0277055e927646f878e35836", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ba90e6f49dc94aa5c72c4887f4086a14b718eb6a0ad5d14e51a93da3ab1dc97e", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ef911ae48e77f547a2ddc8c380cee2b17fc41e1f7d37b741a048e5c293681904", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2f1924511d4767171160955085e98e1af80fe23d7aad3ecff301cbf2436c1595", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e786b5ef369eb33c26bd2c021fee184258ca2c38e705a8715876c682dbfab9e8", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "42754541d9b33ac3612cb94356e75ffbf26f4bbfc621f1a7d91ac8bebc933e3f", + "regex": "(?i)^https?\\:\\/\\/recetas\\-consabor\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fad77fe1d17bd7ca207423713fc750dafb4cb37a200c477f8f9c5cf77fb1f68a", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6437f035d72c80593bd0fa2cc26232117753de1f13ee27742debf35af9928e3c", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9f6c8e154c7cc6cbc0f8cdc82c9a3bfb0b756f0457b4697d1aa1211a7e1c0f28", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c7227a366089267a12d102ee084eaf67efdda215e4ffc8bb188ae6b2a4565102", + "regex": "(?i)^https?\\:\\/\\/dfghdfjhgjdfsd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "291696aabf9818d070869e7d09afa1f67cb6bbb1db9213b4a221fec80cd67f52", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6fbe79434487ba8b7eba3d8bf06c368b6744df445e86ce3394f1b57ba4c178c4", + "regex": "(?i)^https?\\:\\/\\/dsadas83223\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3ad1bef6d21b06830fa590d9c38e435531ca6fda7171f1a4f1bc0e65434287e9", + "regex": "(?i)^https?\\:\\/\\/dskdas82332\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4dd886bb05891be58693ec2eb173f5356e9b933c9edcd692800c166180d323b4", + "regex": "." + }, + { + "hash": "90de2c32b2138c3d03ddd9cdff6b8a4c9c2626b1a27af623243c9f7b176dcb86", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c76814fd4b35561f24763c599b9ead7fb63d42e02ee395a55b717e62078b48b7", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "40eb24472b949e5606dcc953d71829a8d6b3e8686e363f2925dc0a3221396e28", + "regex": "(?i)^https?\\:\\/\\/seling4you\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "12237f05501e9d8c2ade10a136be65cf378336e0e1cccc74064d5870df705fa6", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9a9135dafb4683199690b23772331785eec659028e04a2951a2974e06f2d2053", + "regex": "(?i)^https?\\:\\/\\/seling4you\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8315eb7b6d7271c66eca638da097e16f043f4e0adb7464cc8f52011e7d505037", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbd2cb2cf878f642628f84e90445e9a91ef4f73aa8fb0df0d201ee922b6f1de3", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8391faf1dd6c5b7337914f4b0efb837446de15311f33ad4723dae69876bac700", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ed5046abf6ea6974f4f14b8f9455efe3ce38dd106c31578f1c0374c3b0c6bd", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e768f97fdcbdceeeaf27f49661d9ac2eb154336b5b9acbb930b56e54a0e17614", + "regex": "." + }, + { + "hash": "d3e77e66d9cf9c812f062e6993c0e8321e46c409292093be6c92b0c938248232", + "regex": "(?i)^https?\\:\\/\\/tunkaormfatreioamdacre\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8ae892f672312cea815455875b640b06478d65bd8b2e47fe3a2048dde0374793", + "regex": "(?i)^https?\\:\\/\\/321312321dsd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2e160220403d56655b8cf6dd76f9f9e5fa96bf0ce89982c12359f76df2fb8406", + "regex": "(?i)^https?\\:\\/\\/gdfjhgtyugsyudyughdfgjhdfghdfgdfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c8f4cf5940fb8c7027dbcf421f7d68778fb97685e051b9fb1a66eab65c6ffc8f", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "35148fbb6255a5a89a091f8d3982723d3c5d97f05f56f1d18a8a4c3bbdce8093", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "54f498bbb9511121648117f40cf4ce3c6441678580c4e4e59f2c3a9d308d3625", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a22c04d586043199ef4347dadc69a8ca3f072b1548cd0740e6ded7cc93cc9e2", + "regex": "(?i)^https?\\:\\/\\/lhwaachytbon\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "48e581456171a9affe33e20bd96e17f9ed12a915ba6337995fce62adeeab1781", + "regex": "(?i)^https?\\:\\/\\/dfghdfjhgjdfsd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7f86f21769d98b676c97e4418b3d5ab65d7237a207a0ac1a4eb904ca34efa42a", + "regex": "(?i)^https?\\:\\/\\/recetas\\-consabor\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "54a66dee391dd9093ab0b937b8e8eb3e86b0f8cc3d67bde8ae90ba4d854b818b", + "regex": "(?i)^https?\\:\\/\\/sikouy76\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e3b384b4285d001a4e37a410c7f316052b547a5f624570f7051e462625c4716a", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5aa582026dbd2b76720900d5b917213e11aa91808c5d85c47d83dcad51f15b24", + "regex": "(?i)^https?\\:\\/\\/dasd8332\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "75e2becff0a220d221f9bad2a2362c7357bb53b3741ceff6a7ffeabdfc4c6501", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f2b96a1122e2829deef271b22664ed3f1e2d0a63ce8c84a422a28a0b90d77780", + "regex": "(?i)^https?\\:\\/\\/roblox\\-ux\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "46ce9fc059e1e2803787d0f27e4dce0f651df0f2da2f4fea825b7e09e430fca6", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2c8e71b31e094d3327edd5b51e48e4c7796d10d12a229e2c0602fad2c6ba4af1", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "305c9971d315f2af40e6029da8814a00a2033d505c53e4b80f70777bfd3a25c5", + "regex": "(?i)^https?\\:\\/\\/dsakdjas223\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "261391da27aae001dcceac0c0cb8168ac13260338799d63b4931c88fdd44f0db", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "80efc4fdd27846e011bda0ca7847d65e24da9875e17296f02d2fb0a950c4ac91", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7a3ffbc79908a341e47972318838cdc67e2ca3220bc00114e32b4e60790ee117", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a43e19578412b8eea83686e6f740da61a36ba207c44162272310b9f3fe9d0160", + "regex": "." + }, + { + "hash": "b98ab8626d8a07dd8e6ded720f1e946af14b96001175b5d940ab800045e816d9", + "regex": "(?i)^https?\\:\\/\\/sikouy76\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f92998b3dcb95a1f259006d768ea3f4f4f4ca468612b210ddbbb78bfe6917d14", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6a4d2a6f970dd26cd679a653fa90184a19cb1c508ab8106ecdf2d21115b07001", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "77d93623771e5e6a0c84828e3b2a46f3a48ef131401f8d8ad48bbab496e0ce03", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "56a5e3e0f871d0aa1b74fd9ff8c297243150942ead4ce9430ba5d3c4adc04eed", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fb9f19a2487312e7dc5696aca9ffef052a8a7e11199475b83f30f5038da22167", + "regex": "(?i)^https?\\:\\/\\/dskdas82332\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "134c3fd68c063b9b9272a1a9541f4d8fb7557bbf6a9b1108631047afefec6ed9", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f0018b2961e46cab4bf9c317adfa0840e0271752ab8c008e6d26a9cc55ce4c67", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmshdtfuaskcmasckasmemas\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a28408f5dab7eace37a0234cc5863a2fac8ed7769bb84060917280f728c2930d", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+01010192455b7004\\-ac373272\\-15a9\\-4d25\\-a18e\\-ea16116946c6\\-000000[\\/\\\\]+UJzWlcBS2XdS_ysGzI_AMrrUD58\\=394(?:\\?|$)" + }, + { + "hash": "a1d8be4d98fd56732659f47d0d455819c910a4f556ec9c3eb9797ba5fd33428c", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb68d1d4539810b3bdfbb9b1cb12b2d19edba9f35cd6cc4fc8dd0602973e3102", + "regex": "(?i)^https?\\:\\/\\/dasd8332\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ca9b77cc7085efaeea79f1149271790b72a394027660a46ba5e93c4d20da8acf", + "regex": "(?i)^https?\\:\\/\\/dkasdhsa8323\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "97f1e965cc89b3958691e097b88e9ecd5650498febf62305545ed4739e9f340a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c383b7c2c2fac2ddafa21f62357124fd0c53111bd761b6faae7fd4e64e4e5fd", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f2d25da3d08829bd0b53b44c7a4379e5fa67dd03ef2e4b39890c40dc6d28a04c", + "regex": "(?i)^https?\\:\\/\\/komanbtuhzakodacresa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ea8383a79a84da0ff69fd063ed2b4741db9ff58877cef58398e63081044b164b", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "25d618ff0489c6c3712d1836bed67cc654f037baff5ef1f5959a20c85fb7f783", + "regex": "(?i)^https?\\:\\/\\/seling4you\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f1125ca9ff261f5560517027ca249d5540df2e9da147552c9ff721f2d3c372d8", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fedf282e79d304b5e26de03e7bccf078237adf89ac717f45604e64a614595984", + "regex": "(?i)^https?\\:\\/\\/komxnaguoradaecrtyna\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1982e5c6fe2e5cd0c87a6f5c8ad008b2d7d03ebd1b3255a7c030cf3f3579cfad", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0146e3be452f885df48ae8173cefd561796edc1659306fad411dea770fb26caa", + "regex": "(?i)^https?\\:\\/\\/dsfgsdfsde\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0e610b7df679b99f54d26e48280e758b2d7772535ae0b0317844522d8751b441", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4f60cedebff5241987705aded2182f6bc96c532202ea729de6faec093f88ad4", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3fcb2183b1f97fbe65287e3375e02d851e3b9d75d2ff3f05bc5c79a0bc1babb9", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "df2cc1fb77d18628ab3719d731a48a61d9e84173172df9b9bf3b6125a670ef5e", + "regex": "." + }, + { + "hash": "55faaa438eca6c1175f70257cb41cb3b26f5cc742be7a9d08d4d48559b0fc2d1", + "regex": "(?i)^https?\\:\\/\\/sikouy76\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a7945288f133311714dbc9616d74de9ee9c5d157179dbbaffac313c676b440da", + "regex": "(?i)^https?\\:\\/\\/dsfsdsdfdsfgdsgf85898\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9a2a0857f8e97f0cbf509ff88f26ed5318cc8922452fcff301405b7b76d242db", + "regex": "(?i)^https?\\:\\/\\/dsad832\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6e0c692b31b4dfb268492254619efc462e5d9a9b7674f6a89b944a4fdf5301bc", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "775b093aa0967c4379f2d67d0aed150128b2783221d818fe49a0f320dfe1e663", + "regex": "(?i)^https?\\:\\/\\/ruessr3jqcsruessr3jqcstrending\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "032309f7266d45a5e2a54577b2c4fca337373327289ba08cda85ab0116eb88ca", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1e4444d0cf08784565a8964a55fbfcbb126aa05063513ccd4d712cad9e2aee81", + "regex": "(?i)^https?\\:\\/\\/aaaaaaaaaaaaaas1\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "71feaba404f342d7de570949dbd4902cc1798b73d70b14a705f9f4263b1ff680", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2f6181fdc1b10780d8ffc09702d1cc77ab1d0384715bc0249c39013d7cdada22", + "regex": "(?i)^https?\\:\\/\\/koemxatreixmat\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0397d268ded83ed9493c7135183e94bca348398be40cd214b32814a918a79e03", + "regex": "(?i)^https?\\:\\/\\/komxnabruasecrtybzau\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "517d4be4a9ee33279ceb8e54348cc4a464c0a394a9cafbfe673ad8ef6fd750c4", + "regex": "(?i)^https?\\:\\/\\/aaaaaaaaaaaaaas1\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e520847f47a5d1ade2757bb2f5a814a5fed6b6c026ce4dfe035b9f170104de9d", + "regex": "(?i)^https?\\:\\/\\/dkasdhsa8323\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d834944c68512f08eff55b6149b374e072d5acf823b28bb9c28160c849e4f42b", + "regex": "(?i)^https?\\:\\/\\/dsfgsdfsde\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0824b4f51bac6c3c9dd45063291042cf33606dbedbe0cf5d37e271e921f26ec6", + "regex": "(?i)^https?\\:\\/\\/ayusgduasygd66aysdghyi79asduis78a\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2bfda8b4d89f3c0c4cd95fb8401d017014e843c19c4ec64f92d7e5209ee69a5c", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b33bdd972325ccb94aeee1b09669f80c3bd491e1f0d2fbf39611649248d43e49", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "67b1763541afd0db22e96313b73dc8c9e5b297a07c771af1e8a6b90bf59d6ee2", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "82f06fb2cf2c09351ec20ba95f6341a7110a0a6066d4c1865a2a50e571d92424", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1cf9152a836c241d81ff427bfc9cc8d80c06572904ef8a41a6999e6786e6326d", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f720cc86b7112c854511fd23d7c63f859e45a90c03f5d685f8c4e69311a4f1e3", + "regex": "(?i)^https?\\:\\/\\/tukoamnuocaytrjxa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3fe29ca34c1f9e252e88876ba4ec15b9361baa24fe1e4171e452e95ac379bfc0", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "11a72b599aa9dfed0712819c1b0141ec113f0d49a65b71f9ebbab127361e5bc1", + "regex": "(?i)^https?\\:\\/\\/sikouy76\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1edba171e60871b9f4fa8a4c9ed12db65b0c2e7d855884a3d1ea9854fbebeabc", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6ec64a174b4ff23307575e39669aa38b4f7a273209c85cec78737169e42783e4", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e0fd6cb121edd9056f25a2de1fd99f90acf492fd9897adb20fc6d13419b309c5", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a9f62c5ef6d1c36a98d855707351415b1ead36da5f3c5ac73af08c5e9f82d04b", + "regex": "(?i)^https?\\:\\/\\/dfghdfjhgjdfsd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2317fcce8f3bd7b7f950445e097e75d7cbe114666406c89029c4db074d018fa9", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d106dd6d3d904ab6996e8cf44d02431eef36885c0c7329880a46a0e88dd32d03", + "regex": "(?i)^https?\\:\\/\\/dskdas82332\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dad644efdfeaa211560b8001569c23d3cd144363881cbfef679cc4ce91fa96c1", + "regex": "(?i)^https?\\:\\/\\/sparkliemiecomprhensivedomainnamechipe3\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a06165bdc7107e2d8048c6c615e7e08759a613501f6a52c238aaae3aa251cb4c", + "regex": "(?i)^https?\\:\\/\\/dsakdjas223\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5065f10f373c167276480bdbd9ee7bc915d8f99c8f478e0dde4e4bfcc93cbb41", + "regex": "." + }, + { + "hash": "98e5146f494949355cefee3d0a7fac7e8a30b14628d226fd97700fe974713783", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "34d4f6567d79ec39312d7815669209b7c1bbec00826a0a4abf95027ed65e316d", + "regex": "(?i)^https?\\:\\/\\/komtlciamstrugavse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a244a4d18485fed2b688dcced444da75b0894be7c5d7af20276ce4dcc40b26a7", + "regex": "(?i)^https?\\:\\/\\/dskdas82332\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "827f86fb51a9a0794a5c7e4bd5383515f00a9ad0c21fa8a772b404d991fb2c2c", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3425905e5ae07da30818a0c897b253f19ccfd8e2008284862bef8407a21e6c86", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "446216a50198e436909a2358b30abcada6c217d65e626d1873362962fe242869", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d7409688a3d5d910f2a0aa50ec0b84b2a28eb3a32c0b6cf6eb0b4e29c58ea441", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "77e3ba96fac660b93ca11df37ddecabce4601c3d0eab45a206673fb6bf39440b", + "regex": "(?i)^https?\\:\\/\\/ayusgduasygd66aysdghyi79asduis78a\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7e97947f8e3d33b184d9b3967203f893d84af4eabd9a0b6a0213b394b17008cc", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "20eacc2215edbc029bd4f0dcbb8fed81e12212ee557d207f8e90b16f08c65e67", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c2076c366b7eddd14d774ab3daaed9ada0629b1017d52b1cc5f94962b70da1c6", + "regex": "(?i)^https?\\:\\/\\/saddsasdadsasd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "101574b1f3c69b147fbe966f6118b71381de598a1ba895bccbe27870b51beaf7", + "regex": "(?i)^https?\\:\\/\\/lomtuiaredaktomxagafreza\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0ee466f705ab41b7b819908dcfff80cb8e5c40de3c14f54b502b5ed399f088b5", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d5157c736cca11723bd68d59d3557b5265b59e1b354842016920535df5f7ea63", + "regex": "(?i)^https?\\:\\/\\/dsakdashd823322\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c9cccd8c14e0547916121db8b96f0084ff61c1e0365d47246f39b05554ab796f", + "regex": "(?i)^https?\\:\\/\\/seling4you\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b1b2d9946da5d58a3c556677dfa488fc3bc82a706d27a21447694e3f85698bb0", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0c44960efbf6dfa1dc6b8a66ed3a3532f5fa53761a86f0ea993f2226b3232ba0", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8a36550089eb26c999fade3ec196a3e838dd8b46f40ffbac6dcb4df6381adf6a", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "46deb8b7a79442ebafdd835c908bf9730ce56a6352dff4df520d81e3f20832b5", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a1d5c8297fdfc5c8c700311b3064102f8dfbbca153d3d6a3e6121c52462118f9", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2f60cd828ea5ef644c3705e7c88bb2ba0f6d92a2feca4542ea2b523adafb5fcb", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d652233329bfb5523a2eb01475834ceb5e97bbdce6e328718c43a155b16b0d7b", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8ad4f93823f70cc93970e19ac7a943f23971debb207c0ea095113966d61f9f59", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d7b02bece031823da96df3c22c6c1b79db0b6d11ce7e30eb5cc744862ce0bd9", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ad455de127b5df9d1274da3230fc49a1eb62d51980b9cc42aae6c1e22de51413", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "843231b3d6e043a00a8f524e07b20bde92a87d588812de2ce255b780a21e4934", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "403eddf6d5b41e4f62c0c3e708b824efa52bba0e6c55b85a5d96fbaf716f8a5c", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8c06f9936d3bd35409526ee9128c146411c454bed57247a06f45f3b3cc3e2371", + "regex": "." + }, + { + "hash": "a733d30f4e02dfbdb94a082a4dfb496329a1d24dd252ccae171bbcab0544568e", + "regex": "(?i)^https?\\:\\/\\/dsfgsdfsde\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d826d71e6fef5c025d13d0942da7a758aff40945da65da4e7b768a72ac71d36a", + "regex": "(?i)^https?\\:\\/\\/ruessr3jqcsruessr3jqcstrending\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1f09bbe2b4d2e062fb21c802527b0a752dc1dcfb760dffc26754692479bd7a10", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6b897af3b5a3e370eba45a57c12711ba9c40ec2f4cf99fcf231240d9bb931ac0", + "regex": "(?i)^https?\\:\\/\\/dskdas82332\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cabde2e13faccddbbe1ba14e2810ba04b4ed024f0e330e02d7e878e858f005ab", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f5d835045fe0398120722979fa7f172f6ea943a7f30db0fd18101cc7001e018e", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "525657352fad8b6a0c67677eba8d3b0c65eb342fa72f7118f6733028993617f2", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0598456e9c77695ec0eb75962f0dee5656272088e21dd67b5f60b62adffc414f", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ee2fe1942b5db2299edb1d917ef0fefb723518a6377369b693fae90b0f44deb0", + "regex": "(?i)^https?\\:\\/\\/koemxatreixmat\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fa65a53e964e158d0317be3daf163c3075e546e663543ec1bf16fa7644fe786f", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "33761fb180ed5657846abb924d675764d92d1402a865c01bb4fa723052c543fd", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0fd21622f133f16e7d3b81cfd34321549122d8e64b7323aee741ac105104a26a", + "regex": "(?i)^https?\\:\\/\\/komxnaguoradaecrtyna\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c478fc580ab01accd46bd6ca7ab27d489fd197196564d5cd3aadec59f1f8c55f", + "regex": "(?i)^https?\\:\\/\\/komxnaguoradaecrtyna\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a849a36f9010a821ed132e271b2aefd1b25f5e6e9319a8782650dd1fb2e6a52e", + "regex": "(?i)^https?\\:\\/\\/dkasdhsa8323\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8dc655e7d90746d48f5b0076a0a6776e31fc60d7ce9a4eb9a710e5d2b54d5470", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ec98870b92e3979d8f89d6de1dff01ce786717068d9d381e7af76c114d3b6f5", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4502f374a666ea94d862da2739dc5aced55c19370ec9630e06e3c879566183ec", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e2b118791a898a81470888494ed5c3e0253b9b84661dcbef30c0aba62f5d2169", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ce3334c5aa050195ab4afe5db9a10af7d0b0a829aab8e6f79092ed02f61655d8", + "regex": "(?i)^https?\\:\\/\\/dkasdhsa8323\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "58b2fa2e75f64ad81a62265649526a322ea320a56034410fb817d87ced896edf", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c0d22ea0c130cd265e814bd5dcfe7c5274ed844202aff564a53378d15a8972da", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e00053913ed87c39fd7361ffa82e39688f218a9de59ce11531ae65b2d133d9c4", + "regex": "." + }, + { + "hash": "0156442923a2c075d9ecc228b327c37cb078d766b2c81c416c10ceec500eb0cd", + "regex": "(?i)^https?\\:\\/\\/dfgsdgjhsdfjhusdfjhusdfjisdfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cf2aa00adbc714b7f543b635ebf2d46ecb1cd085cefe1a3fc9b2787e0a55c9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+santander(?:\\?|$)" + }, + { + "hash": "12fe75b0882c748c6e5e8529437838b7e671e579c609f78bc3aa6df158fcb4d3", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d4d836420d58adfbdfb3e2ea8971500af4d9e828a0343681158951cc9fb0193d", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmshdtfuaskcmasckasmemas\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "403e6dc5da60c84646998477c6ca3ec1950608981f9cb156c5ee1ece8696e2e1", + "regex": "(?i)^https?\\:\\/\\/dsfsdsdfdsfgdsgf85898\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4b2585cae8038ad782ef37af4a2639788fc6215d8be775b3fc382e842fc86b4f", + "regex": "(?i)^https?\\:\\/\\/lomtuiaredaktomxagafreza\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3dcdd1d9cb96b76604a87abaefb3ec893c9b7c9f996351de3d0ddb16ff8ccd8e", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "df5f924fdcccaa7ef00a4fc69ead81da4662bee3952476d3d4b7b95a72e505c8", + "regex": "(?i)^https?\\:\\/\\/koemxatreixmat\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ffa935f1bae9664209d1fca31b4d2f24f4b2874e11443899966e837d110638b0", + "regex": "(?i)^https?\\:\\/\\/dsfgsdfsde\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3a0045ca6c3a40a363f13e4906c4eb06ed80ad3424d79c12ae1c7e225b36aba5", + "regex": "(?i)^https?\\:\\/\\/roblox\\-ux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e32943d7972d8857346066750830c963d6eb20dc583b41f3f0318a967b37382c", + "regex": "(?i)^https?\\:\\/\\/att\\-100011\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "10ccb57c2b7ad5cb1d7aeb4ce09cd7ea6ecc5652fbc68f08d06a930c41d7e639", + "regex": "(?i)^https?\\:\\/\\/scdsadasfxvx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ff302807c2ef0387357277d111b8b46aa5b8a4202d96c93039b70fe316b94931", + "regex": "(?i)^https?\\:\\/\\/dkasdhsa8323\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "63824f5e476e23d5a991087a895274519e903f8349390580b74d84f821f865df", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cabd1dd424436e6311fab8870bc234f535576aa40e308686c4b9f26adcd2770f", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c7bdf8ed957bc1e1cf278dd7673394dc404750da91dc2f0a12149f0e36879957", + "regex": "(?i)^https?\\:\\/\\/321312321dsd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "df6043b83177653511ce03df5939dcc25788660cb967e3544a3914d0152ac7b5", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "44a6872c1dd4a1c66286f4cd3c600d665003be6271f6ce232aae470800101869", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef0a63eab3169f2194ea3346baf7aacfc8232c7b87dd1c9e4d3534c7611c9e06", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ead78de0092620f6b4464b46725ecb2d6f1993f3bea2d4350b076ee01c44e45b", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "45e9d874ee572fa2848ba29f3d2746ca438f4a0574f61b688138e8fbe5259b0a", + "regex": "(?i)^https?\\:\\/\\/dfgsdgjhsdfjhusdfjhusdfjisdfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92d8dc7039dc1caf6fdda1818c67dcee984bb19a02a79877f6ec28bcf70040f8", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2fbaf1eddb24cd341a932bf08650cdd9c718d20e32c341753c9eaf9762e61e6a", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5991e57b0b2a9c4cc597531f056ec6831e3d6255d7413dd6c6efc99a79384d98", + "regex": "(?i)^https?\\:\\/\\/dfghdfjhgjdfsd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b82f28461a39c4ebfaed6f6c73e1c32adee847b05008fdc33c76397e3205cbc2", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b6cc87bcb008143b80f258ceeaabed49200063637595fce6c885426c6970c776", + "regex": "(?i)^https?\\:\\/\\/sikouy76\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "171a61bcd399845a91cef30494d8a66291a3bab20cbda229f4a84a1c21cc811e", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ff939517585c7be8f605be8a02c3a5dc306090d428cc47f56f617d3916a5f67e", + "regex": "(?i)^https?\\:\\/\\/dasd8332\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "35f364bd45bc4338c8f2bbc67dbda51f878864f0eb0e7e97a71f68cf44e18b33", + "regex": "." + }, + { + "hash": "eac42f7d60818a46964c8405329809370e67c04bfcbfba3e4b2af9d351753343", + "regex": "(?i)^https?\\:\\/\\/legendadventurerobloxwiki\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c9deb3c33705f3c3895c96b932ec30329e7db3722918209cd054625a3a6586e1", + "regex": "(?i)^https?\\:\\/\\/dsfsdsdfdsfgdsgf85898\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e8eeb148dc7df6594032c84a7555d4ce9ff3840091c6b19ba4c3bc1db62b4a32", + "regex": "(?i)^https?\\:\\/\\/robloxdemonslayer\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f29460565e6d80519dfd605959ed834aa7e2396c1593875c22f8ee79f741cb40", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3bf0541d2815179ae1d9fcfc8603feea7454b9ca3a3b49f757490bff5b838da3", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "eefd72154ac5b9592e90c4b09bccea0349eb3d66b977869ebf4aa4a2a3a3aeff", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ca70d9ba791feec26ce8fc45f6b5ef317aa04160651b22972b214efd0e57b6ee", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1ce657f3bc75f7909f72db7abfa4b7488cfe3d01e526308e6f448b6914d4de64", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ec14a09874c6e5f518f645cdab450bc3041c8aed42ea19433debe1c3c7a53e2a", + "regex": "(?i)^https?\\:\\/\\/komtlciamstrugavse\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "17db825192e38175a843b7935cf48db7a8bc36c2f66ea25420b26e7575311684", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc07b6f1d0c49cfb44b9b1e5ae0e2f0faf3bc75a51f45d866d895a7bf27937c1", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0f5d1ca56d37e3c5b4955b81566381982f229bfc7917c91389911bd1640bf338", + "regex": "." + }, + { + "hash": "bc2cecad14625499ecb3b333aec19b798ed6e2c101172ccb56257c5661c9a499", + "regex": "(?i)^https?\\:\\/\\/dsfsdsdfdsfgdsgf85898\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6cb904ecfbc2f8cafc440a4005dc0b01877fe303c7b45a2372e2ec460a153dd1", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1fbf9b9c0e46fddaa90bdbcf94bc3a5b54127ba9a998ca884e7346257f0cb6b1", + "regex": "(?i)^https?\\:\\/\\/dsakdjas223\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3b1f672576e17497798f0b5ffc0e8ba11adba1b5efcd4a177c8cc21225021cec", + "regex": "(?i)^https?\\:\\/\\/tukoamnuocaytrjxa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f0d4511bf12dc0cda345090cd39b312a8bce3c9ee47e2e0291516474384c88ba", + "regex": "(?i)^https?\\:\\/\\/sikouy76\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b52bf38969e761e7113b3c0f2b56d9e9df123387ca3921e79dae56ae9a55d9ac", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9771c609f924f8a0010af0bba70a03a51454cd8f1da56ee09e3c00286b750ccb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wordpress[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0e59dd4c93e46edf9a50dd105d805d65ac47145d4185cbe532b77549edb26e69", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "95b441f72777cb930895f3100a7400fd4e12a6491ddae6e3dafc99c06e9d2919", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fa2737b8b84a486e802a1ed321929eac653ad38d916a2adc5331e34dd05e91ec", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "305cbf73b50b1fb397edd83b150ef135eb76ba12b3e35171639b67258d8adc69", + "regex": "(?i)^https?\\:\\/\\/gdfjhgtyugsyudyughdfgjhdfghdfgdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "446259733c644cc9bd402b3d7951a508b052f3df8bba55ed39050896a5c63fc3", + "regex": "." + }, + { + "hash": "d040217ccd8a6490ceb88b9d01fd8edbf7c0adc91ae1fd47ae1bab1e536f2641", + "regex": "." + }, + { + "hash": "a11fcadfd9f4415c4ed35e59a27b68cee0d0e7cc387e281982193aecec68ec51", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3641bbf1e55857d64b8ab0784d4df180c99e174faa2f002439ae85d94e3d6a91", + "regex": "(?i)^https?\\:\\/\\/adam2b\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b2f93e3ede33e7598454648b4a7394e8e07cd5103c13fdd7dfbc0119acc5f0ed", + "regex": "(?i)^https?\\:\\/\\/tunkaormfatreioamdacre\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0ca7ff5b871ed23f682a7da1fc8770f36969482f24cda417ac685ce949519c86", + "regex": "(?i)^https?\\:\\/\\/lhwaachytbon\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a7c5db9234e385ffd079dd5aef32b94e57371ad9954d942634993a8dc3f89ba2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2dd4565e84d23866a5dd6ebe9018caa8204b4be536102769d92cff08c13ba7d", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6aa964ffd4771b957c5e8fc1ae7b4657bc5b733fedb1bddba10b0b16c3e6fb3d", + "regex": "(?i)^https?\\:\\/\\/aswfrehyrtgjtyjhtgfhnbgf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "247b91e6339f4228d92283e6ef43d576dfbf7c347e417caf7067d2236af0067c", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3c8f4239f7df524e8dd1532d1858f92e99d1de655b6872138e40a94008426d2a", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ac833045d0979ad995057649b3b22e16d2278365f6059643f5c04df97c92495b", + "regex": "(?i)^https?\\:\\/\\/tukoamnuocaytrjxa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "358513ec6c370e6550c031e60f1c30d83887e47b5514c505153924856bc0a4cc", + "regex": "(?i)^https?\\:\\/\\/recetas\\-consabor\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "38da14ef23f9f6764b747109dc60e598ead252d1843289dca671ba5f330a846f", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "14b0e2159212e3a0f18e90953e93e02fde645988f808ca2da19a4d7387b47ea3", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "950194be7923bf27fccc62c89615554653e221ae94f0c1af9bf923643d721b48", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dc89f96b3b72d0fd8de369eb222a6dfdff997f659af41d9898269115194cf14f", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d0dd92c3b1dedcbd230032841ca7d57be4616d2167d2af8ce915c1badd444314", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "59e2d1fe0e6d59d65a32a877a7bba2d6f6e893efbbe3355ccd9b237e2c690f76", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eb92e65ce8909b43f036536e9859eae1bddbfe006e10b52769d16b597a91fcc6", + "regex": "(?i)^https?\\:\\/\\/seling4you\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "19e33bbde46c7e5bc128ad8f29ed36c3dd71c3a71a88a2daa4f89af1d3a9b576", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b5791ac62ddb63f479ae0d750b68f3cd9bfefc32ce9a27fc3c4cc70cff9347a4", + "regex": "(?i)^https?\\:\\/\\/dsad832\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4805d695100f238e04dd4dd26cd9070bf9bb255faf84771a1a4f7511ca5d4a40", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "43bbba9f67826d4cb02598206619dea74580417ab76351a1158ea51b0bfe64c6", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d386edc9d503806bbaa5fac402b2683f63032d9ada6c5624d3b3222c93147ffd", + "regex": "(?i)^https?\\:\\/\\/tukoamnuocaytrjxa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "93763b6da902169ff205555c9c10339b48566344aa85ac164826213705e6ac13", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "983f2dbd2eaa9ee38b7a4eb259d061967262997b62d56c4ae47278111bc82a26", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "928ee32a4480a60b04197cea0e99c74c57c1fa9c56a35489e08d333a5a428879", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b0c24b7c1cedd12ccce51a1105e16812f2dec9fa49c122c9e9a3b935f21459d9", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "710a601bc4ac8e326e15ef2f651a40c17e759eff1edbc6a7d04beec96390837d", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "14f20a65e9375f6878ca52fce98904c9181da2516ba2d447b31d2a11d06c1535", + "regex": "." + }, + { + "hash": "0665591b36976c9ae0df619b242de733215d37f2215bcb5e5e42d5ab2ac55c38", + "regex": "(?i)^https?\\:\\/\\/lhwaachytbon\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "384bc3a5e2b2d41305e2efa1260b4c32d6a11f0ff228c3f06ba3259513d923b0", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "87aa033fbaceeee785366590b86f95bb9229eb1a497d47798fbb667d1ed9e986", + "regex": "(?i)^https?\\:\\/\\/komxnabruasecrtybzau\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "19133eb0fede39ec5d3eb564c60a1ca6c0efdda6be46e3167bac5d9346d48a6f", + "regex": "." + }, + { + "hash": "6f18e6a80310fc23b4b07e9c1f1cf5be3f03614aa5ede2ad7494be9388168264", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdsfdfgi4848\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e5963c3c9de53b1a325c1518dad74e1c3a2a633db2dc240769db59394bdba187", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "74d14bd4e3d192ca168d269fa1e9890e6fd6a1bbb136e7dd0cf8a2b6bc2821ae", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0f849da5d582a772b9fbbf9858dc78b07cffd452bc9d2bab8dbb6d4834573d", + "regex": "(?i)^https?\\:\\/\\/aswfrehyrtgjtyjhtgfhnbgf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "205886207516e9342c85ccd44706c139d8546b9929d232187a53248e5f389067", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0cbe5b5d43fe6eb17f518ffe5b06e12be709bf55fb32563de1011cd31f37b65c", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "191196458a4a9c48a87b8a9bf14ac67deda147b0c09083a2f4cb693b05e98548", + "regex": "(?i)^https?\\:\\/\\/dsad832\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fde0da0d97fb60a5ff70025b8b62bf05d015fc32306a444f4c81bfb977f81719", + "regex": "(?i)^https?\\:\\/\\/dkasdhsa8323\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2c3dff6baf362443771a7502c74b3833994b4a4acfcb4d42f1aa9ee32c286b57", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a11fb4fd2610b8115073d0957a868c9118074af6455e9580203e1cd34a806b86", + "regex": "(?i)^https?\\:\\/\\/tunkaormfatreioamdacre\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b5bebef71e6a7872a0108aa034c067f59367ccaea3d6a8a421e249177d45c2f3", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ba59bb5f2ddec578f1b08d9df7c06dfd687737557a939c59a3d816c6fb1f5855", + "regex": "(?i)^https?\\:\\/\\/dsadas83223\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f0254fad091a16bd077faec5d5ecfe686e938ea79db478d2d90c1dade5692b92", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cba38faf28765135965d287145283a9433bf7e6f6d8d44294ea23d8aecffc360", + "regex": "." + }, + { + "hash": "7333b6635d66c038d40a450257f0d321ac0150fc4b4f303562559f1c9788fae5", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "777a5caa79b825784c3392395eb8f14cca130d8d711c3432a017a850622535ba", + "regex": "(?i)^https?\\:\\/\\/dasd8332\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ae407dbac1a3c0347548fd83dfd1a822b19c5d492c1d845d2d554e3444914d63", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a7e442db48773e92cda26649031a5184cab760db807728f656c5978e03d9278a", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fa8a6032110f4791244916c3471335415ae8b282534d008dec01997fd0d9dc6b", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fab3b17726ec9366663e7a53669fd95a8c9ce8b742d0bb08b59ea6ffef9a4283", + "regex": "(?i)^https?\\:\\/\\/dsfsdsdfdsfgdsgf85898\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "12fee9b6e5ef8ce5a4dfda4b84d04dc3f8455fb46287b06b850a2438576a6339", + "regex": "(?i)^https?\\:\\/\\/recetas\\-consabor\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ec1c17028965530354d0d6a0718c7043e8fc0b398ebe88328f7782a9059d4276", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d24c204fcec50065f13c5e6a83ebc70f7244ba8cdc330ac4db1fcd3cbdda7d0f", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "52439323092c9e1bb5ceeb38597fc91ec32be4715f3e94533c48e5be5a571744", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7ac9e350a725e39109783da49af6d789a7221a9862fa88ec43c46d164cce7cf6", + "regex": "(?i)^https?\\:\\/\\/verifier\\-recharge\\-transcash\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a4ec44afffd7fbd584162899f4329de0d3f5dd547b390094c013d76b460b659", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7c98cca0e104eb668c8d3808d237289f1ea627605b7a2a237a9bd83642bf466c", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0e847bcdd698518115e880dabee18dc9d71e24708705ea1ec3bd324f177f38f2", + "regex": "(?i)^https?\\:\\/\\/komxnabruasecrtybzau\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0a1625735ea2710d55460bdafa7aba1ce87fcbedaef4d462e6a7ff077a179fa9", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "695d99449163184f6a1f6191cd1999539030d1229aaadd138e3383d1b852da44", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bd767dcc6e380ee78d4cc41599d445707827f9c3a5d678d794b405ae59719ffb", + "regex": "(?i)^https?\\:\\/\\/tunkaormfatreioamdacre\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1c09041566f4c3b540cafdf0e7811ab426bc7998a936f400cd18c47f2eca7c76", + "regex": "." + }, + { + "hash": "e8050dd6a177fe35ccc50ea60306a233f26ac2e12b5a18b6533d58e8a43d47a7", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "dcc6ea828f6399a27e1d8efb698611ddf9f360d48752387d999003c66be753f0", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "65388e33b3a172a62549669957247363c3309196115ae5ae0284994114c431f4", + "regex": "(?i)^https?\\:\\/\\/seling4you\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a31e252eca99945bc3915cf0331fae9af6913ee60a4ba1f994b5dbcfa513f6c6", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cfdc546e615f36aae22bb09bdf4a1cc91e7fa346d9bc8c35f95f9b4d4525afd0", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "01c8ec6d7d4e52bebeefe45dd52186ffbce2587f93496468bccbf579d0b25d88", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "10cc3d4f0a03d9d4b4e70a00ef450ca8bc6c4a1364744d451507e678fd1b5ab0", + "regex": "(?i)^https?\\:\\/\\/dfgsdgjhsdfjhusdfjhusdfjisdfg\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e98e45b767911c5541dd9ef88b5037f11760016bb63ecb4ed57d14a626e49b1", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d3cbb0ee2c1ba92c198e04fa13c4f145be126f5f79703b4507b56d0f26229421", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "629a3930780bd985cab36c230a39886dc9ddfc9fad1cda2cfb4d249b9579ac7e", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "013c3c2793ed07f1697fd100e4662bf6f56dc0a620340dc9e7a72d551a56a942", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3a27937e3f2fe3b4e0676823dc60494c4ce90f0e34ca1ebafa349984859404d1", + "regex": "(?i)^https?\\:\\/\\/dasd8332\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "84a3aa244269f66cd09f56a67f76b9828eaca98519de8f816675e1a4290daaef", + "regex": "(?i)^https?\\:\\/\\/verifier\\-recharge\\-transcash\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fdedccca4e3fb2221409761d07e59a80ab8eb4bad678f8aa9f55f7051322f1b1", + "regex": "(?i)^https?\\:\\/\\/aswfrehyrtgjtyjhtgfhnbgf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a872d6cd09c30da44eb91107bbde2ba2928e6611b07b39a1026ff1d3f6b60210", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "07f1b3a49829c38fbf55633464142cd4bd4d8c2563f60097927653587e7019bc", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "99f4378c8504e2ec1c43c683fcb5265c0caecd937a0516f2d478370dbb208872", + "regex": "(?i)^https?\\:\\/\\/gdfjhgtyugsyudyughdfgjhdfghdfgdfg\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a80a4b7372f9518fa6e97ea910a30bd3cc9b7b9e4163a51a815ec46b5c5436d", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3ab20883ea8f9cf6b2d7dcdde90fc611c0ebc748c0be7fbf5e2fde0a0be9ee71", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8161fd1cf467fdf2f26a93f3524831bdfb621b86ee6c2d6b13b7da6d6fde6d7f", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "81eea852989a433debfa5a12f3a000ddc360ff9c99e41220f3f508d46888392a", + "regex": "(?i)^https?\\:\\/\\/dsad832\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "48460db564ea43e30fc25387c5f9b9da6999a859508b651103c8f319a4530e36", + "regex": "(?i)^https?\\:\\/\\/tukoamnuocaytrjxa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8c5dce4d30f3bea4d26b332b8a84265052b87a60b313add38944b13cdb6891ae", + "regex": "(?i)^https?\\:\\/\\/ayusgduasygd66aysdghyi79asduis78a\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "27ef800d4e98a3f1d0ba7ec80f517d455126271863227efbbcb18cb87216a0e4", + "regex": "(?i)^https?\\:\\/\\/dsad832\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e8294856b93a5f0f05050f94253b2f63756192d0ad1f11a9fc32fa53950d1501", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c9740ea69f2be64634466905312589d5115284b858eb4329452b80f973251337", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3a6a512096d09dc1c8d7ea6bec100cb1f1049f4fd562c06032c0e7065c443b7a", + "regex": "(?i)^https?\\:\\/\\/dsad832\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "75abf562e84dc511b8549e24a9c13ba55fab3831281639c44d569403ca612962", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b4dbc74e7c1e8822f4a4bb22afc405d04ea977ca79765e792a680e10ee3560d6", + "regex": "(?i)^https?\\:\\/\\/scdsadasfxvx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fd75d08b9958744c49ce6dfbdcdcb8fe5b81da58ea19353c37f8d0fc03588f59", + "regex": "." + }, + { + "hash": "6cb5133eee5a010b72afc54adf63c86ad8cbbd9e523fa36fe8430f9854c2079f", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0f5d59654411a8593616744ca1de0bbd375bc815a07fe532d6c5d587c991bd2e", + "regex": "(?i)^https?\\:\\/\\/dsadas83223\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e022f54960f2b524beccbfa300bb2826cf3efd0991863e068a994a1c99c91413", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "57a6a6a64d4fd57617f40eb686a05d3263f6ccca4ff1487bd8f074c73391669a", + "regex": "(?i)^https?\\:\\/\\/seling4you\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d97252e8c648aafc9ca6e67da29f8998ba9e797d2bcbb0b5c61e9bfe5cd8fb90", + "regex": "(?i)^https?\\:\\/\\/csdca\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ccd1d10e0e1c30dc5be74a324420c80b8cbceb339a69ffb28d601b53fb406759", + "regex": "(?i)^https?\\:\\/\\/sikouy76\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2679c35cef32167ff7f5105975359b889a8815808c540c3bfb4336ea9c7c96b8", + "regex": "(?i)^https?\\:\\/\\/gfjfhfgbdfvbvxcft\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "17510dc3165229f81b392a2ec1dbdfd50bcb98b114685c2badb12e1c38a29c04", + "regex": "." + }, + { + "hash": "7a7053c2d75e67daf569b69c24363d95fb674b9dfca8f7581fd35b14ec5c966b", + "regex": "(?i)^https?\\:\\/\\/tunkaormfatreioamdacre\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2347a0df4082fda9c09dedcac17a0206188a60373002c57df31dea8490b7c64e", + "regex": "(?i)^https?\\:\\/\\/654965164645\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f0eff1fbdc4319cdc9b395911b0542ed6387b2a1746a141644f6dd3f80269411", + "regex": "(?i)^https?\\:\\/\\/dsakdashd823322\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dd656607103dfeeea576d9382e394385bb0079d115b8348a3cde11423587edb5", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e64befcd923eae2698437ab9f6467fc466784d2eb47d664e679f8041673439f0", + "regex": "(?i)^https?\\:\\/\\/scdsadasfxvx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6fc545c46f9110e1dea8a9abf5aaf3d27cdcf7e11dfd312aa36544b5e11cede3", + "regex": "(?i)^https?\\:\\/\\/saddsasdadsasd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "093a3ec95bd3a6eb50a0757c4800ee11c0ba9ac85e5318f7ae93f83fb1a8c060", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ea72046eade055f1b7160e1278cc148a926708e91386f4dc8a0d31ed04fc1552", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9670d699a0b29b5c29acebae1d0d7b782b603208a49360391cd172bc8fac2824", + "regex": "(?i)^https?\\:\\/\\/lhwaachytbon\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e12f34591e1d1ecc6f334a20bc84f4af9454d3e401bf8631789fff7ad24ebd95", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1f21f0ee7342d1ca172231c87adae776a24342a9936e29278435596ec195724c", + "regex": "(?i)^https?\\:\\/\\/komanbtuhzakodacresa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ebba589a40055a6c45ceabb1df624b705ea4a6a154f2eb613d07ade5bc15b2c6", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b58ffa2bd81e2a9b27eedc294a2b52df77025b0674c96548c2f08b77610fc4c5", + "regex": "(?i)^https?\\:\\/\\/321312321dsd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f9d96a5c2302e64cd3f864618ba73ebd581864e074f6b18cb4c782c6b1d5d8c8", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a400f1c50a18110e078aa3e14a18628acafaea25ab8eda970eaac291904511b9", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "df628e6f750bfc292f5725e36dfaa0987c550f1e314bd071836db9b376c9bf65", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9f8acb6e2424ebdd060a29fff85ef91983eaa1d64ac5541eb2d7ca62bd1e1eed", + "regex": "(?i)^https?\\:\\/\\/dfgsdgjhsdfjhusdfjhusdfjisdfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45d818bbcb5df8c9d8e7f04364f912f4bab2aa27eb6ca98e2de0fa64bd91d00b", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "84548ad001b90d34f42de7a14bb8117ba0f6ca64bf2899dee01f53c1d330093e", + "regex": "(?i)^https?\\:\\/\\/ruessr3jqcsruessr3jqcstrending\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a083c6dc40eba5e3fc2879abe230cb567cdc7b1ff325650218accea5f5557d07", + "regex": "(?i)^https?\\:\\/\\/ayusgduasygd66aysdghyi79asduis78a\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "68a3efdb38edb7e731691533d6782b7d47395d43dc68c3a5d31b8b280dd8d084", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d5b4e89107cdfcb576bfd24be652ac4904260d30461ea33e6dde7a16361dc09", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "97c6d1c5b6626ae01ecc2e1defdf8fff258cbf9cbf6dd5caa5c9bb7525e44ee1", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "976b5f23856a74b15586fdd5bf542eab54b25bd20ec4aa6581141651ed836d55", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7c63e032fd953a57f8eaed6bdc1d097e48f037f3082d5a758c2a237ccc02243f", + "regex": "(?i)^https?\\:\\/\\/dsakdashd823322\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ab417e409a6db6d4d98239b116b7939917290f9500c19f09f29c3ecfb36571d0", + "regex": "(?i)^https?\\:\\/\\/jojiina121\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d4f9b235b6d91874effb282c16dd47b72b99afb18ecbae4bee76f32797a4f5c9", + "regex": "(?i)^https?\\:\\/\\/komanbtuhzakodacresa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ad8572d89d7fa5870896dbcc778eb2af67c6515107dda3ecd53e16dbee7bc62b", + "regex": "(?i)^https?\\:\\/\\/ayusgduasygd66aysdghyi79asduis78a\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5dab7383bccf0154fa94c7c4a7d2c7ab868179c7fc68a2e0055fdd9701768d68", + "regex": "(?i)^https?\\:\\/\\/komanbtuhzakodacresa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9c630c9407af546f30b50beee4dbb2b51ddb19a5ec0ff45159365838ce89e32f", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5cf23167a050e19207809c155daff311f5fc1b5651928270edf5eea006af9e54", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3d11d9bae6022e0da978b332d1df074fc2f0a562a3bbf82f413d1ebe5ebfde51", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "de8cbec856bce21f09a649e2cadf5cf46e1b429946e921d98a4d7442d9fe7cd2", + "regex": "(?i)^https?\\:\\/\\/321312321dsd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fdf48e3f265a00cd5c81bf0851bfe054dedfb462d9e44f384a09d559b6e3fc94", + "regex": "(?i)^https?\\:\\/\\/aswfrehyrtgjtyjhtgfhnbgf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fefb29bc457d5d59fb3da0b245ad48a4e080a3ece29140780e31066ea44cee3c", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "83bf57bac1269fef0f3a62bf6c0400d586ca7cdc5a47d38cdf501f83cd9fb81b", + "regex": "(?i)^https?\\:\\/\\/gfjfhfgbdfvbvxcft\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "30298b6acd654352ef6a62510054db37658ef5453ecde7352705e7f1dcc7423c", + "regex": "." + }, + { + "hash": "b81fe37f56c7bc20a5bd5b2e1ef4fede80ac4ccdcdd3c973bce439ba99262914", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "13bf1c92edafee1899472882febc895126aa730d8947ac97b6ea90efba6988f0", + "regex": "(?i)^https?\\:\\/\\/ayusgduasygd66aysdghyi79asduis78a\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a3d947671d3a4396035fa39369941d4b0df2e459b892ee96eac7d8fe970ddcb0", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "061b1ecc9cc07d0efeb6bc621271ed389b9cb719205f75b37c840ba86d94b069", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "230ff2b8f901dac9033165ee20a1390a8773dc9414cc921e0fa9c4e087822042", + "regex": "(?i)^https?\\:\\/\\/321312321dsd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ebe19a5f5508f7ccb32df0770fb23bac4c43b88a4a84816c0353367d560165ff", + "regex": "(?i)^https?\\:\\/\\/saddsasdadsasd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4f2a7f7c31afd4bef27560dc52b4560fa99775014a648232878d6b828d6d0277", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "024f667222a1e468dbd430cd7b9c434aa4767408dbadd4dab3a9270f9374d626", + "regex": "(?i)^https?\\:\\/\\/www\\.app\\-coinbasekamgammgka\\.146\\-190\\-43\\-147\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e59848a3b3046b4b0d4632b30199d1ee3b33c0b030ab0e7917bd5a68e8f12514", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "41905e657570b44c5076062acfd9556024e048d80a01b033d5a8749bacbcdd1d", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "da034dd92e1eebc97e31032e5bca11223bc6907c10eeb634004fe367c1fe422d", + "regex": "(?i)^https?\\:\\/\\/tremokitzmaitrelzoagafrety\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "250c56a7f75cb18d54540c5beb157f743dd0cb55cb0474f05ba5eb33003938ac", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "57936070f0eac81223938623d1774fdbd768d2ff7af68b0f7da599f0b5007581", + "regex": "(?i)^https?\\:\\/\\/dfghdfjhgjdfsd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "871ef38a821f7b46911930fbe430b763be66e153cab893cd2e92070acf94d90d", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e6cb6bd0ba7d7a391075414aa24fe398fb28e1500048ce4dbd216589f00d30c2", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52311fa0dbc256e371fd7e66776cac4376f5c832abfac18a7085b47fd776a983", + "regex": "(?i)^https?\\:\\/\\/dkasdhsa8323\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e787d979d98e7f2cc6663e7324660c1e067e5b817b61dccfcfa1a4eb69e57644", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f9ec8197204ba1bfed8412f988838e9679b3f56f457be87b447084ec9f626637", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "53415c336473183d2c394535156eaf3c6cb434dc5057446d929cd7aaf1833512", + "regex": "(?i)^https?\\:\\/\\/komxnabruasecrtybzau\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7413d36fd6dfbd97e2a95e56e744c50a8f9172625e2ed4795b6610c570c22b24", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dde0bb05f17804f60016fae80e3f1317865b5c97f714c92003f3e201411c5b2e", + "regex": "(?i)^https?\\:\\/\\/dskdas82332\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "defe436d02d7a01080dbc5ad4235f2ef8d0ae8565588b856b9431a44c867e153", + "regex": "(?i)^https?\\:\\/\\/dsad832\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e329fb9ff942799d954c1be8985eb20ec86d49724b951699f8b0e08568ad8dd4", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmshdtfuaskcmasckasmemas\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2def985c4e249e73eafc331a7bff0e7697adf14e8343ec964dc124a622032fb5", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmshdtfuaskcmasckasmemas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a7e4691a391561762f29ddcc23e895d4398a598e5ecdca1bffa1368bb8377d00", + "regex": "(?i)^https?\\:\\/\\/fd4454\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3a65a85addcea7cde0399f376082f97f5c7a68f4a35db051daecd38b26338767", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "33929e99dfa3da6b8a34dbf1ab3aeda1d4f7980492e0308698eebb31d7e45aab", + "regex": "(?i)^https?\\:\\/\\/tukoamnuocaytrjxa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4dfb28fed2c0f191440542f8ed1a98b6811fb4bc8758ce520c02a815eaf6d768", + "regex": "(?i)^https?\\:\\/\\/roblox\\-ux\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e8756a5f489e841f63d414f32c03c46c3ffe6ece8ce3080a24ecb8397fc16b01", + "regex": "(?i)^https?\\:\\/\\/lomtuiaredaktomxagafreza\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d40b79ccad2550ae1f862b333a8cf6451076ccf1f6cf30399d4e411c0e258f50", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a180ab3b39b2c8f8a0ab4a45cbb8bd4dfe857c5924d0a10c3ecaa46344c56b3b", + "regex": "(?i)^https?\\:\\/\\/fgdfghdfstgdsfds\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5b902f846cce207665a1ec2b3fe54096aba788019e1c2d0d25b6c80bfa4d2b8f", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9a50d1fc15157f33558046d60b42d4b9ee81fe90c9a08cde8a3a0b3fccfc8299", + "regex": "(?i)^https?\\:\\/\\/dsakdjas223\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8f75dc9db1ba0af50d7172171989555620b347700a4e0f1a6e207061dd24bb1b", + "regex": "(?i)^https?\\:\\/\\/verifier\\-recharge\\-transcash\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3289060b5db1150e79688f908160b668af9090d7ba00dfaabe92e439a5f16c06", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e372000132515a145a9e5eec13db62502819612ba69feabde74b2689906422a8", + "regex": "(?i)^https?\\:\\/\\/jityxuanwederadscva\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f58163ab4c89f404ba3b51adb9a2dc3c43b83a55d6073d146833946ef69cda16", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c3ccf9ee74dbc3399c65bf7c228b8cd4e9675b8873bcbe23e2e5975a8dcb3609", + "regex": "(?i)^https?\\:\\/\\/dasd8a9323\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e58bef5a7abbf532870a5b226e9fc68c65318f13eb0c6654549e4a9d5dfe94cf", + "regex": "(?i)^https?\\:\\/\\/sikouy76\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "af5f76ea898616f3a6c0c09eb8c2e06644998ff717ddbcb8e76f36a67c3a2256", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0a1653c86923950d7a5dba5fd58809a0308bb3483cb8a235d66f216f68a42d08", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "58c090aaa14edee72615ed99f328ef40a69ab399bbc851fb569029fbf7461240", + "regex": "." + }, + { + "hash": "d648ee000b674bcb422357d7299250fda098590f864505c314963f988359bf5d", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a656990d59976969ca0075569054819b7098ba14af18a5e33410af3b2a977a4", + "regex": "(?i)^https?\\:\\/\\/komtlciamstrugavse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "edb374558faaf15202e64a6a9f780d5ea478e0801ecca60018e1882e056a0c70", + "regex": "(?i)^https?\\:\\/\\/dkasdhsa8323\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "493cfb668bfd79a7b596bdad6e172c06e14aeef47219d9cdf1a0aa6791e39340", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d22db4249ff75b6b10e99645b0bf66a738b3f4d8607bd803a187d9ce1691639f", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "99473dcca3ee422dbf5969c18b715d5724583b8204ac5def323ed822e0d11a19", + "regex": "(?i)^https?\\:\\/\\/dsadas83223\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3f7f95144fbded9a4c81a617706ba967821d1d4f7c70fb49209be9a07ad01e44", + "regex": "(?i)^https?\\:\\/\\/dsadas83223\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "db347249f8e2a227583b5e6d707b4bf7ecafa8a27fd7a994c9578c28e47d7a71", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "28bb31f78d6df8c574f9a4a25e07475782ced8dc8a1090698a00cc7b6d5520c4", + "regex": "(?i)^https?\\:\\/\\/recetas\\-consabor\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7f2e6aae251a5725e53358b279d5eb58e7b3f211e17276480231b55c78d86c3e", + "regex": "(?i)^https?\\:\\/\\/adam2b\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ca692c521e8e8bda91de58d510486ce37217167ef7e2b038df03db31fa94ef8c", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dbce137bd80bcb9fc971a6c61c599cfadb9745d2fb3e8ef451f62fd5c16b1cc5", + "regex": "(?i)^https?\\:\\/\\/jdsyd8333\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7f58086286094f14318cdaaceeafbe9e68db193fbd0aef7d1235f82489f8d2d7", + "regex": "(?i)^https?\\:\\/\\/tuxmtocabtuxoatwreazaeas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3d936e1de5fbb39eb24a795008ea73fc3cf1530c41d490c7d7bd1e0c52c4", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "528b5e6da1687589b8dfd5771e842c19a9ccf3ba55ceb701ffecbdf3fad94e8d", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "62a0761e147e213a2b5ad0ccf1c667e27a9a240530d1bac6abfc61303df6b747", + "regex": "(?i)^https?\\:\\/\\/komxnaguoradaecrtyna\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "82a8f0dc1581754318199b8d4c4f9e1f8352ac4cab9424aebd03f9b873f79480", + "regex": "(?i)^https?\\:\\/\\/lomtuiaredaktomxagafreza\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0c5d262ad4dccc07947eaaf9623e1d95aad09469992650eb760186006a2cadc4", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "136ce0cdafc99d8890220ae2b95d954a16b5cf452cc356cc780a953215996fed", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1212d552a73afce8191e096dbd4e76beb8112b2385669c8c0bbe5e47af85f418", + "regex": "(?i)^https?\\:\\/\\/reomzuitnadsecvryizanma\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d36664db3655341b1fad3d47c9533cd46d04190cabdb8e76722b83ad8fb9d5b9", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "25c522eba7aa6fa1597f0a2fea068ab4f25e609d790282c6e7df5231a7acf9a2", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a8dc61ccd0458344a7956e9e2226ec39b8ade550d22a9769343135c71a35dd6", + "regex": "(?i)^https?\\:\\/\\/kanmotelatbon\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "27529e43c7bc433113f2b2b5fa375a07c52ba1f1e30cbb8d98bf25919291ec84", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuahckascmaskemaesa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0020f2179879dd20297379fd3c94b4101afcff1f1eeadf6a6c172a955bc4c2d5", + "regex": "(?i)^https?\\:\\/\\/romihuayrnzxofaredacrescae\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "07888bb0285497f3cd97a592ebd698a955fd01e367cf63c485ff9af3c1b68513", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "03f2bc0300544c4cfb440972a4ce4d087c7bc4e5f260af0855cbcefa0a418141", + "regex": "(?i)^https?\\:\\/\\/seling4you\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a288871a5620d71167843c9e7253687a3ce6f3f8d471102dac98e69e7309b3c3", + "regex": "(?i)^https?\\:\\/\\/komxnabruasecrtybzau\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "386a59e2a786dcf2904012bf84eb082dfcfd3aa2e77ebc6a0920f893670f8d40", + "regex": "(?i)^https?\\:\\/\\/okimuaretzuandarecase\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "64229f33ce6114b86bd54638112a9a075dd9de13e6a2642f36c4e578598ed095", + "regex": "(?i)^https?\\:\\/\\/gdfjhgtyugsyudyughdfgjhdfghdfgdfg\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "003df87d64c48355229fb588d5bf48d5019d7276abceabb63e79df4c42a40cb4", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6f7a95a31f608b8a4d99db0e40942e39ad91fd06a585336a0261a655822b6946", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "07a90a6884631b7d8b3da3066d58be3bd5347f0f1253f989ff45c8806f4da8f4", + "regex": "(?i)^https?\\:\\/\\/silver524463\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "7b894a38415a7a5ed1a494389bb05a33aa80a52d012e1ed1472509a83241c626", + "regex": "(?i)^https?\\:\\/\\/komxnaguoradaecrtyna\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "baf44e787bf379a0ce167441654cb99072e70ebfd8547fb3cef5ffa514c90cc6", + "regex": "." + }, + { + "hash": "952a0c60e475fbbbcc5b1abc3a469538699fba28496541cf7defac43867225c0", + "regex": "(?i)^https?\\:\\/\\/komtlciamstrugavse\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0ffe43e8983f196a7feba35f434c0656f3da00d3192c23816f4b06ba4f04ccd5", + "regex": "(?i)^https?\\:\\/\\/verifier\\-recharge\\-transcash\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4620c2fc77eb10d3125b79ac5ac8df31236e7c7d1f1a067bb5c993ad6cfe07be", + "regex": "(?i)^https?\\:\\/\\/adam2b\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0ee4e930f7ede0bf654f33349ceb53bee7a596c5a2811d00152a0caede5a53c5", + "regex": "(?i)^https?\\:\\/\\/drfghdfikidfg5985\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "34f2168aa67006a9da74200c3d341dac403b9ee751b278f8ddeaac6f7f5eca7d", + "regex": "(?i)^https?\\:\\/\\/321312321dsd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6f18bf3ebefe390354552bcad9e5e328fb5a09482e8469c4fda5f18f85728be0", + "regex": "(?i)^https?\\:\\/\\/dfgsdgjhsdfjhusdfjhusdfjisdfg\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb7303862b0549d1ac318f6d9af88895dec332c104c91a039af0c4f9f94ffe0f", + "regex": "(?i)^https?\\:\\/\\/recetas\\-consabor\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "03d54d8bb229aff1fa651e5cf68a0c549796663c29befd92066aa25e945a1214", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9f63013aaf1fe1553a98ee378b16529f4983d9fbfbff7008efe541fc203d8e05", + "regex": "(?i)^https?\\:\\/\\/recetas\\-consabor\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "83bd941c87f54d75b65ae6c8793680903d7e01823643e1ef40a2724b97b6c0f3", + "regex": "(?i)^https?\\:\\/\\/aswfrehyrtgjtyjhtgfhnbgf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a4acb495989a43639a999164bdcc4b523017f24ccd6f682f8727b467cb4f698b", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fdf6017dc6d400f4a8af12bd17489c09671d48162bba0ccfad45842625a747cd", + "regex": "." + }, + { + "hash": "aabc6e178201efd202cf73177707e4f9acd6307eb055eca55e7c14b365ffc5c2", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c79ab078f6eb2721611cdfcc76f2f946f8fe99c811e3d82773bc1574c584e0ba", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmshdtfuaskcmasckasmemas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8ec11371d0eb913dec070c3239289e9284e597926f45ff88362287786c18b582", + "regex": "(?i)^https?\\:\\/\\/ruessr3jqcsruessr3jqcstrending\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7d10e3106e2ee56f76f2d4edb1456eb1b05ceada2ea624a79cf70e2d3542fae2", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7ae3880f8d0ff1791b3c0f2d92b50187b4cb90ad21bf097caf3efa43eed2a807", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "81050838d8fdc1cdd792d4a3784a3651ab51f732262e7bc05b6689233414f005", + "regex": "(?i)^https?\\:\\/\\/tuxreytunckaoemadasecro\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "665affdc20358f20eb89fbae93f6920aa1ff91c24f0263167e7dc05b6ba0ce2d", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a82e9e22de36c67abdba5bb54a3669a472ef581bbdf891841b285644d7b5ca4a", + "regex": "(?i)^https?\\:\\/\\/verifier\\-recharge\\-transcash\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0285eefce981f54eac50701c2c44da82ffce95399be7a4f8753073908245670", + "regex": "(?i)^https?\\:\\/\\/lotunitmuyadercaseoza\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9b139c5b0c32bf6a520a97ca316dc39ec3899c97528edce49a5494cb9b520707", + "regex": "(?i)^https?\\:\\/\\/nghdusfsndmhs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2246a8d7541eb1a9da5f1aee7c4bd7dd838ce20edcd2491213769e3ff5060b7c", + "regex": "(?i)^https?\\:\\/\\/gfdfgdghgdfh959gdfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0f91d87f97a146c328de5dbb08de09e8e4a94a176670c4ddeeab0c33ca5dedb9", + "regex": "(?i)^https?\\:\\/\\/koxmantuopcraexya\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bfdf4d9ed74ca333195193baf145c5c6da986e41189780322b7468d13cbb9489", + "regex": "(?i)^https?\\:\\/\\/dsakdjas223\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "12d644d37b2ef03e29401127437bcc596e999c4be42b17b33cb8be1c464ac2c5", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmshdtfuaskcmasckasmemas\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5b4c8481bc9e3413686b5ef6a0c93f6aae579f8bcf9d36729ae86e1509373dc2", + "regex": "(?i)^https?\\:\\/\\/one\\-taene\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88e18bb9ce7d285ed54df49660242b82340cbbb9dbb12ca4e0b9437277163131", + "regex": "(?i)^https?\\:\\/\\/saksha822\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8b8be03e63fe35319e55f6de9c32476d86513c1b044b0dfb6144d683615a05f4", + "regex": "(?i)^https?\\:\\/\\/dsakdjas223\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c6568483a467d828b964270791ee4d34976c77ca7974011bc2c60ebd5b267540", + "regex": "(?i)^https?\\:\\/\\/banaaan7922\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "04d47739b4a7cf42e3b0caf0129faa992bef149e7f3075682ae60639802ea141", + "regex": "(?i)^https?\\:\\/\\/dsfsdsdfdsfgdsgf85898\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a81242e50bf5e553f7d7ed86954ca7dbcdf680d9019bdc708740ec39effb94c7", + "regex": "(?i)^https?\\:\\/\\/dsajd8332\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4cad091ccb4a8131e8ca55aac66093af42973980b6ea9726c418df1177752d23", + "regex": "(?i)^https?\\:\\/\\/dasdsad98sad9asdsa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a239b10ddcf29727f393172c59b8cd821774ca745e2ae51a4b017ece19f193bf", + "regex": "(?i)^https?\\:\\/\\/dsakdashd823322\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a8fc0a2a5f0191948ffe79da698ec4c26acf7a6ce977b07ae8787841f79fd9ec", + "regex": "(?i)^https?\\:\\/\\/roblux\\-games\\-generator\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "60bd0f0d9c2a86fdb1b268b2e28b6bb08bc60fd6a067a64546e573e367c693d2", + "regex": "(?i)^https?\\:\\/\\/photuopitionablera\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9217313c84acb51497673a16f5a2e454f198f3cd1d4056ad2c42d889d0029010", + "regex": "(?i)^https?\\:\\/\\/dasdsa78232\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "44dfba8971c34e9c7eb42089507d92d6128a692acdcedd749dc559906061649e", + "regex": "(?i)^https?\\:\\/\\/saddsasdadsasd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "913b69d4a9a5c945a1a8f0a002e92280b74c14966749f193c84a76bf0cf43750", + "regex": "(?i)^https?\\:\\/\\/recetas\\-consabor\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fe2193e62c64a75c86f8521f989836d8871c41ea1f9c125c8a65bed71a372f31", + "regex": "(?i)^https?\\:\\/\\/dsadsa87dsad\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "184afbcd876500b21953a9ad0cdc97a0d971db34b3846e9635480cea315cc38f", + "regex": "(?i)^https?\\:\\/\\/komtlciamstrugavse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "960f7916db24f48173dc6483cdf02bb92a5d561152a782b6c532ddbabc5e8066", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "151b2b60b1b65853f0de81f41aa0943e263ceba45773662759dd283941825ea2", + "regex": "(?i)^https?\\:\\/\\/kaeias782922\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9d217a88958e429155b274d5401fe5272202978eb3a3b470d0449c003b44f52b", + "regex": "(?i)^https?\\:\\/\\/dasjdash8332\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6be9dcf94a9b702ac3bfe9f6e7c9a820990e309335a38d1fdc92c40480ff9732", + "regex": "(?i)^https?\\:\\/\\/dgdfsjhugdsujfhdhdfuigudg\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c288591f0be614dc2788aacd453fbdf5a6a6ecbea0adddbfddb937e4b794fd48", + "regex": "(?i)^https?\\:\\/\\/kotuoamtiemaxdassefa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "cc1e0529c3361cf68e263b6f08495305bb8e4aa27be22123e5c20f3ccb372e10", + "regex": "(?i)^https?\\:\\/\\/daskdas8332\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9fe2fc01e0bac6f1dade46bb24e0ad774092ee6a3f2afbac8ff486e5de8ede48", + "regex": "(?i)^https?\\:\\/\\/robloxkodynaubrania\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6998eeec0b8eefbf53891f8bfea36041f696d1bc73e81a794e6ad7bc2e98335", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "756f221c7a889177527650a44c3a0d92f1502c65ec6a772be5f97a1580f33a0a", + "regex": "." + }, + { + "hash": "7b40405e85588255b14e82013c4e70e41eca3c02f57c4fb6783ceffa5af35f1e", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4b58eabb1051a086a8604ba83410331be078b0bafc7da32da43768d95aa7c6dc", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "af87fdbc86e00daedb99f89ba71a28b8272be806c56f34124539e58158a10c98", + "regex": "(?i)^https?\\:\\/\\/hammertoday4you\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9f05fe3f518c3bbe17228118ada533a609bd618934c74a0b924d794f81c02845", + "regex": "." + }, + { + "hash": "cbade5248239595baf9773fef62e651c06fdf2ddb9484f5d71a63fb7ee93354f", + "regex": "." + }, + { + "hash": "ae829c7b4861414dfb29a2b03861e73919cc56f2f73a9b9df28ace2962169baf", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyexploit\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a061394cdd32bb48ff2b6d109f49fc9d461b03651790a88dfc3e9ac402d9556f", + "regex": "." + }, + { + "hash": "9a2aea4db25cd77cf1191fea9d36b996692ccd244733a645938c21cba429f4ea", + "regex": "(?i)^https?\\:\\/\\/rbx025tips\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6993df2dbb3d047f6b471e5a63d88e6359633a03efc9a070b6bd0dd96997bffc", + "regex": "(?i)^https?\\:\\/\\/rbx025tips\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3ecef9ef0e3ae1ea7d4117d2ee1aae76fdd20ef29cf485132b79b58423e0fb6f", + "regex": "(?i)^https?\\:\\/\\/naonatuhiyeudateuapal\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3e29ac2447541726eb53566288379426eb64ff8f7d0269735661aee87b44d4c4", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e2fbbe01e0aa24eb015a26f1cea4f4a16d3b39a6e6738cabd58ee52283bbf10f", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "62fcb926ef0dfab40794935303bd7aaeabb81932952e3959791ec353711c6458", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "79fd81e9817d34d10e804aedd21db12a7cf55cd829588fdafdff387d4b4041fd", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3ed5fd8fbc283df7d055e0efb7e5896e1fd1321eb42733a704a86dc397607664", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a84afd9298071fbcff862851893890b9489f3d92bbfbd2ffc70663e67577d3b5", + "regex": "(?i)^https?\\:\\/\\/rbx025tips\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "65f6b0ce23c5e4d4b07415d468e32b69b0850ea4281796d9d39ed0b9d2d5c1d7", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?675c5\\&id\\=ixene\\.be$" + }, + { + "hash": "448f569fde5822379d273ca85a82ce9d2e19f4e28a7c00506a7fec72bbb39e54", + "regex": "." + }, + { + "hash": "b402e955134321b571156ee13c2d0b13ba4dc9c3fc1e3a97b9235f9daf92bd1d", + "regex": "(?i)^https?\\:\\/\\/hammertoday4you\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "075700fcb28f5ec68d7cb6e9dff77beb4bc348606b0c898377acb202d32c8baa", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "399e2bdfaa938ffee215bd880d097a2eb2e752f705dd8c5fd5ad3881d49a30b5", + "regex": "(?i)^https?\\:\\/\\/naonatuhiyeudateuapal\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "99d4006dc21d7b5f3ee75a05abadc486ded2908c91fc24cfb0ce0a9f0aad07c4", + "regex": "." + }, + { + "hash": "f41f76d05564bf6e02f68c2de3aa52e7ed559733565c69f66ccd31a8eb661f3b", + "regex": "(?i)^https?\\:\\/\\/hammertoday4you\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2d3cf1912d42cf8a1a26d8613e9a4fe08fee633af05bb8f419003b1f8453870b", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "08305cd8c5cf1592141b29b5a375d66c621bae1df7f39f0e7869dcb7ea6843fe", + "regex": "." + }, + { + "hash": "d7ee2df74f51dcea676c032c31029286e281bb658a076ea5e52d4ebe8ebdfb5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?11e49\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "0ca79acb69431a26533218cb110c2aeadceb7fbbefad4e3b919c6624c0d1afb7", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d4cbf2a0cbba444c60a3490bdc175344a2b92deb67d8c4179ad6663e9c63ef11", + "regex": "(?i)^https?\\:\\/\\/naonatuhiyeudateuapal\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "520520613d399c333b546c92ce0a6663b94ae4fa87dd0f98dff6493500a5106a", + "regex": "." + }, + { + "hash": "ba317046a329e25c531a9a725d4dd8d6f910e72482655c07929d1a64547f3c7b", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyexploit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7e4f8dc9471c9aa6392e6adcf55e42824765e5d3e78c271291b21aba8d2c69a6", + "regex": "." + }, + { + "hash": "46ce45fec8c7a368514c97c271234753168ef55b3f33b807dc9366d13973ac55", + "regex": "(?i)^https?\\:\\/\\/hammertoday4you\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f1c3b6adbbb5b1470c7791dc86dda4a4b47580ba00cec7a42d6a5ccc53e9c60d", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyexploit\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "08240ae308ce283759a42a30e3454588d90537f618aae4ce7cec9b3d4c34c666", + "regex": "(?i)^https?\\:\\/\\/rbx025tips\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "81348b09458fc1b9599eaa453b448c0ae44a9787420e7e03f3906f886808c12b", + "regex": "(?i)^https?\\:\\/\\/hammertoday4you\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8bf10014a4895ca11bb83a214e995564a282c42923ae64317acbdb6a5a641a2b", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7be4849d87997cebc218e5f8e7d3b0bca03047c8c9ccd5e661393825d8562d3e", + "regex": "(?i)^https?\\:\\/\\/rbx025tips\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9ac6de6716fdda636988dfc38e5923a3cac16c7664ce5b47821b2f38dbac3c1e", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fe60ecd25a4076d909d5415c49b37d622bbac4b515421aa929ebaae41bb7fe80", + "regex": "." + }, + { + "hash": "7be4f830e5bcfd892d174a4d280cc23a8afcce7a9746f4aae6a80cba790e6c3f", + "regex": "(?i)^https?\\:\\/\\/naonatuhiyeudateuapal\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9ca0c62da4f55914487946ac44c6b128aeb271d195e297ddcf115f35172cec2a", + "regex": "(?i)^https?\\:\\/\\/naonatuhiyeudateuapal\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a6f77da4d9d2161f17aff5bd2c93dc0e2d6d3df23a4dd44bf784cce20ef95", + "regex": "." + }, + { + "hash": "dc3ef7f549025b63949059182f434ed6a51b93674a25725c6a3cde0056f8b7f8", + "regex": "(?i)^https?\\:\\/\\/rbx025tips\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b23b71f173e7d858eb97b8681eb4532e1d78ca040319584504754b6cc494e4a3", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6b78c19caeea4f614cfa50d5f9df67aa5764777d697da248abc8185e1f3b9e22", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyexploit\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ba0053f06c755524479c71b56598892f6da99e372a2a6e1ce4686f0e55895c7e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "975c0565ffda9e7c730b6edc26edcf8b1b8a7b0ce9a31b5c3b619bfc7e589833", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyexploit\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2c54cf3f7fe757429d7fd0dac2ebdf59f6fcab616e9f494ee0adc3d1db55964e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+itsOK[\\/\\\\]+app\\.php(?:\\?|$)" + }, + { + "hash": "c3bd177be1f6001d78dc39f273b9c3a5b770e0cd7f38c60ae958fd10b2e780d8", + "regex": "." + }, + { + "hash": "a28876f0c185b7e49305c423065bf50e46a4493b044cabd5f6bd08ccafbfc749", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2be8c88841513496128113ad9866843e2a0ea747f59f173f512ac332cb7f0562", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "35f813f08a28099d1be639e199bcc5e2b1c7b38e3ec1a3ccf9719e92d906feac", + "regex": "(?i)^https?\\:\\/\\/app\\-coinstrackerlocks\\.146\\-190\\-43\\-147\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "509abb10981f4131852c406bba0a4193636d1c124108997a583b843f8cc18bf6", + "regex": "." + }, + { + "hash": "732eca035926726ccf2a44c4b543f386f60e943f080cc161b52edb81a981b222", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "58b21bccefd772782661f22eac46b4d2c89656775bf0687ab3c1c1013d67bd9c", + "regex": "(?i)^https?\\:\\/\\/naonatuhiyeudateuapal\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2c03205e0cdc1713701549193a7171d81b06492f793468c3ffc4c639cc90c994", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9093[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5bd20d0369fddf30865a48d35b3087fdd6787b84d900f9db6ebe9b76e478dcff", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyexploit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2ba9b282253ba238fda1097bf704a72cb5d4412e60557a5d39ddcbec30d2700f", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a4e1bc584e783b99807e8fe43b0c189fc3eebc95d0b5811dd3ade67d71bd5646", + "regex": "(?i)^https?\\:\\/\\/ttt\\-106893\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cb2a9c7c1c6b46f52c79a039a7c630f846b06980897efb119fdd17d75b45059a", + "regex": "." + }, + { + "hash": "0afb89766792f368896efa7a21c520a143b32ef2dc602aabf0e4a347123fc4df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+My(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1e626d6925cab367081e17f18e369cd2519dd675733bc16eda8d28f9052df3ff", + "regex": "(?i)^https?\\:\\/\\/naonatuhiyeudateuapal\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "954f2251d0bd343351c9a40dfc7f91dfda17acc0f59a5310c1638cdd341b5f96", + "regex": "(?i)^https?\\:\\/\\/paypalmoneyexploit\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "665a8d3282ffae77bb97f465a56101bdf63a134eaa84b34185c8cfdb020f14e8", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "15a505539657e43109002506e5aff008912cb54fb0f9643c991fec73f6f049b1", + "regex": "." + }, + { + "hash": "2c03205e0cdc1713701549193a7171d81b06492f793468c3ffc4c639cc90c994", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9093[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "f8a64760828e7bcb5496b6edecf026cfc98238737470f31e026b7bb0888f1622", + "regex": "." + }, + { + "hash": "ff3053af1fcca64652735810c921fd0f594c2feb95c3c251fad85633525d9322", + "regex": "." + }, + { + "hash": "fea6113892fde5543b0b7d0764d76768551f8a060fdd132099b5f09523a44277", + "regex": "." + }, + { + "hash": "ccc081aa7b910ca394c69124604eb1347f09dfdb05d4311438ab3ee5862e78f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gccms(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "03cdb5c2ca4248cac2398a9d8a6a16f9ceed1ac171dc59150c17ecbefda75946", + "regex": "(?i)^https?\\:\\/\\/hammertoday4you\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "586016e9e24773db5198579382445f07eae2d131155fdda4002446500359a9fb", + "regex": "(?i)^https?\\:\\/\\/rbx025tips\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9365e939ba4e0d525b3548eb18843f1ceaa33e174083d9e6125093692668cec6", + "regex": "." + }, + { + "hash": "a2ae2b2ada113cfa74fb5b99b82c9a208f2a34f9108c8e0de0a9ae52599a96c4", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8ef9934ce2d00af8f0facd0167518ccb325b36f25bb99d24366ee0748466ca70", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fe1d62(?:\\?|$)" + }, + { + "hash": "7a3ab368e6c0bc0bacd11fbcfe940170986fce1c5e7ae39f59f60ce412659100", + "regex": "(?i)^https?\\:\\/\\/naonatuhiyeudateuapal\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "67967bedb916d5b27c6e5d49f337aec06a857405f24eb6583ad90c3ab4bddd3d", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fa16705cf917eeea844905b305738c8b0a48e847c74f48caa1c99155fe242c66", + "regex": "." + }, + { + "hash": "27f6d4af22b14761d601a100c213b44f2490316a0b01d91784ad42727555fc63", + "regex": "." + }, + { + "hash": "895d5a88618253b214b388bf122b29bc9a0c524f9e73e773775f8ad578020297", + "regex": "." + }, + { + "hash": "2c17e12c0c40a4715c2af120038b17bea97e23bb36c04d6a36c5ed21cc709d9b", + "regex": "." + }, + { + "hash": "26569a32b451138041b29b0435d6e3ce451964cdfa387ed0cde0a91306e11254", + "regex": "." + }, + { + "hash": "d29628fb62d9906929ac28f26d2550bbce85a60846868d6e300551fca11a14f0", + "regex": "(?i)^https?\\:\\/\\/robloxadminscript2020\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53466e3500ac994fd13ecfc1f7853f3477ba3dc20b66b17a2282857ea0dfb6e5", + "regex": "(?i)^https?\\:\\/\\/moontracker\\-starlightseeker\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fc203b19c18f26e9e9da8279d663dc5da79ee8ba3940dd48697cb9d6344504b3", + "regex": "(?i)^https?\\:\\/\\/naonatuhiyeudateuapal\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "384fcb2abccc00677cab78e282df95666ae183325c3d8169dc9d1fb1b6edea4b", + "regex": "(?i)^https?\\:\\/\\/rbx025tips\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b74ef3e0c391636ee1b1121dd7549f888f05d3e22b2178cb6e345c5742a89115", + "regex": "(?i)^https?\\:\\/\\/registrerchat\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b3d5c88b64358a0976e71bb34edf924ced00500a0368a3c1fd19a76b94caaea3", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5860112ecf10d1eabe1d9e34b2bd6b2855a49d15edd39346abacc85ee8748326", + "regex": "." + }, + { + "hash": "928eccc4ca9cffe34542280cd5eab1820c83c10eb4f288b9f8ff7ef29df924c3", + "regex": "." + }, + { + "hash": "21827c25fd77d3756e73c0243a707b76bd3a3ac9b7bb156513694deb0ef0f615", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudthaskcmasckasmeae\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "369f0c1b17789e521b908b2cb32199f68e37b58d2888c366d1410ca47a87c1a6", + "regex": "(?i)^https?\\:\\/\\/imv23new\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "dbfce4bc0e7361064d33d1b1561ce5619791f9d0cbabc881bb5e9a44c6e81414", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-icloud\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "776330439b48be62af2b1c1b61bcb6017398a7cef1fb2a30fe4d227bcfcbf953", + "regex": "(?i)^https?\\:\\/\\/imv23new\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a4347ad9ca897a648e77af60b73bf2f94926eaff3d63a103ee72b339ed3e46de", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "43eef3a837e18b78d3bdf2faa7b228a1f263295b84e8ce2748e536f4d2c3504d", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0c94f9f094204c805d2d4e644ad53d27b0779da362e0b9927abb921d7ef284b4", + "regex": "." + }, + { + "hash": "86837175d667e1be61ece788f3e01802048bdcb5b531de433de2bf22bfbcb21b", + "regex": "." + }, + { + "hash": "9fc78f210c331a6c25bfab553cf396c56ef050a8f88f69e61959d90e15fea182", + "regex": "." + }, + { + "hash": "12e1dbc853b334eb15e2431de6cfb0e9d242f125fb60e1ad7c2d8da3b6984593", + "regex": "(?i)^https?\\:\\/\\/foodblognetworkcookingcontest\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bd82e393862c5657c0bf564dd5a14878f49b06d3da287012486bfa467722757a", + "regex": "." + }, + { + "hash": "56eaf2cba72df4a649d723b91c85e8d6cecb4b26ee2dc33b69f0ac44dd45ae4f", + "regex": "." + }, + { + "hash": "2bdb6716982e658531e709519560f0d50e2f3dc55fefb4b9f0ce94061724ece5", + "regex": "(?i)^https?\\:\\/\\/imv23new\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "db1b4e1270f8dfaab9f50061610f3496a6de305a59a1bfb273a9063000b63f07", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6b548c729c45d665db47bd780e1155560c727231c0cf6e743327827ee8982675", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e96abae9bcfce72d122c192b0b598bba07d3714cc3ad4447934295754b764b7e", + "regex": "." + }, + { + "hash": "10e48901692316c94fe2bcb81b9ec5f5e4c7245eeac73c7a26badd0f1886c8d8", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "36e7862ece979e15a5bb21e9fafe9868386c69ee363c5780fc87d0724d2c0732", + "regex": "(?i)^https?\\:\\/\\/foodblognetworkcookingcontest\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "79639c7f85ad524f795b99f9be80328a1ea51801ec191e34775a7a978b8854f4", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudthaskcmasckasmeae\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d28f867eb66ed3d6d46a6da5b5e64df049a51625bd7291e743605469fcf7073e", + "regex": "(?i)^https?\\:\\/\\/foodblognetworkcookingcontest\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7102b091bd4118937b3f6bfc2cc36813e36d0365776abd0e829740f8517e72c2", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "561ea0d6a620fd77f18cc8730acc34d0ed68b78719615a80a2e2cdd8fceb8abf", + "regex": "." + }, + { + "hash": "83bdbd6e88ae38b34ca58f4a313255f9deda49f571780e7022d0b205274dd3bc", + "regex": "(?i)^https?\\:\\/\\/imv23new\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2360f312304118516a0583102a6607523e9c0572868a67f26bc6f038776eef56", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "946fb05ae9d0862f0b186c606f14ebe51123ade4aa94b14308b97242b1deceba", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ccb5b80956ca8c66a089113f6588c6cef4efcb45369b46c40cc6ca7c46e5049d", + "regex": "(?i)^https?\\:\\/\\/brobizaty\\-feesa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9768dbe0293bdd74ea3b0d2e0f9fed140eaa79f2645e39ab70484e867024a598", + "regex": "(?i)^https?\\:\\/\\/imv23new\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d0c6ad934d7870d0dc5156ad368ec5bbb71f19526afdd130145eac4802df7ae8", + "regex": "." + }, + { + "hash": "aa6f2c223a52724d16a1e07ce620016e7f85051d9073767fe71f6603186f0a1d", + "regex": "(?i)^https?\\:\\/\\/imv23new\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "95a90e94759d249f0974c708317f5b034044519355da94d9f3124c785c7a3721", + "regex": "(?i)^https?\\:\\/\\/brobizaty\\-feesa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "06a1f69bc29dde4c15ad00bf6c553c321e4a66a2423352eff218876c679d2992", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bf5fe8a6e8bfc3153f5d17a6e7ea651fbdb7f4bb472f73d42f20fd4c76c51524", + "regex": "." + }, + { + "hash": "b5fed4bab7b7485831c1f6744b1518fa8d11ffafb66b92f681788a4917dc08c4", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4514f900d11f45074ae69c1ebd9753f22e2839bd276a983632b612cd91a8a33d", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?elec[a-z]+\\.impactdriven\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "525918672f490515e76bd79bf53178a0e8c87ce9bb7802157565f134d223fcaa", + "regex": "." + }, + { + "hash": "d9783c40c6d75f354e7eccd18c2dd417b267e23cb3d6275940506cd9f5380d7f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NO[\\/\\\\]+ESPARK\\.zip(?:\\?|$)" + }, + { + "hash": "2f8d95785472983cb59fb3f299d0046ea648aabd4c1760e8889fa70fb8484973", + "regex": "(?i)^https?\\:\\/\\/foodblognetworkcookingcontest\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3238d029c0d939735ba0bc80f27cc1fd43b6233075239e8a491a40db919ea2b3", + "regex": "." + }, + { + "hash": "d7c172256defda02224f2d13dd058658518e2037b318ff6d1d988b348bf22f86", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudthaskcmasckasmeae\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c3b5869cbd023629386f718820fd7dc1647694fba13282a4239228bc7644282", + "regex": "(?i)^https?\\:\\/\\/essa\\-vale\\-a\\-pena\\-ver\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c358776cbafdb31d0b2d7d6ebe384796c03d846cd991e8f3aa813837037e03e8", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "45f655fd7ab5eb1b34f70ae9a3fea1083dda6be3dda91cd3d75df86b7ee00116", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "abd38efa563b260043f7439b81a9e0122145b1e3ff1c5b3ed1079d21ae7cc1bf", + "regex": "(?i)^https?\\:\\/\\/att\\-105972\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cbd3d65677f54b727efce7185e10a3c53cf5611a393edbbef1930cde07d97518", + "regex": "(?i)^https?\\:\\/\\/foodblognetworkcookingcontest\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2c03e804573847da54ccb66d35c139d8ef34895ab2c35ce8a2f7a79be0f0c4d9", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudthaskcmasckasmeae\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d551c37c3fe80d2a017f2fee30545ee88cb9bc2d48a407b1ac3a930c57b8bdbd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sharedfiles[\\/\\\\]+filedetails[\\/\\\\]+BadlandsWarPaintCollection(?:\\?|$)" + }, + { + "hash": "fde60c4a5df10f6609cba2101790b618a99c3149a30499bf0a31556f2ed6bb1c", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudthaskcmasckasmeae\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e791de7f588e2e925790514532aa410df04f94fe0bfcfadded634eaaec2914a0", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-icloud\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b625a3b8a91934b951d0d688a64c9cc64d8996d7c415101323c263d5d7071d6f", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8ba1060a4a7a829e641bbd81055760fc4dd8a08b681773549d6699916045b2a5", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6fa24e89b90c63cd0add81da729fe3c0827a6885ae140c850fb618ec89c340b7", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudthaskcmasckasmeae\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edd1401862f03cc78f93fc6e0c6fafceb51c2747d9f9f4770ff1148cd341ab5a", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fc31549f8b52603b8338385c5cccd2c11c5a6a520ac20378842b54068795b8a7", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b73c4856e6eb20b0d1b00915772db8483367ad3ec85031b292045fef05fb8c59", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "858afeffe7cbf87acc552ddd337315e06e96f80dd7a0df21c93e9a7d117b2221", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5d3b1b5ac4881920a5de95b5edd2e71ba123f7f3bb94fde6aa5e897a4306cd9a", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1adda45a9cc841474e59ea359caf0295712706255cdfd350a725b9bf45d0ba18", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b14cf655ebba48b1005beb91a0775c270eb069e7dda747063230b2c6ec679abc", + "regex": "(?i)^https?\\:\\/\\/aol\\-103605\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ece1b5861422780486b72538abe804884b9b6f66d8e886a8482a5151832a43f2", + "regex": "(?i)^https?\\:\\/\\/essa\\-vale\\-a\\-pena\\-ver\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9a0237e2af0e9ec5907dde73f12413db9c632697aa90438ff9dd7fd248c50c8d", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fc5e104d0513b8cd561bc53a3fdcb89205f3c3846cb810f69420b591cdce67d4", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "654dae91c7b2432c928b884b152b9e0e6dd65adb8ae260a070ca1f02672d633f", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7f509153161fdffd50614701abe9aa8fb50a02441dc072a049e2555cc5117a06", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9a25781334bbb80c915d093696c3b7c2f364949e4d940ab68c4aebf70d285104", + "regex": "." + }, + { + "hash": "8ede080e5652b885f8c76dec69614b70253a69ebd3b0b51651efa7848b57b031", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ac4f1acd3f521c6b6c164b5adda02ecbde84bcd100c24ab9d8242c3698b981ac", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a4ed690d858b4a87b83ad2274be81329bec9c6af2074af5711dbc7f24f5aa", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9135b5c37ae111100b9ea6711897fa5719ef36908573d7bf4521646b4e4df099", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "02925d447ded5192d76621d92d20a9c7fed848c051453c818a4dcd23bb0198ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "80a8f9c508da85630dd83260b61e88a5dbf664e120db41c08e2461af428c5013", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "dcbaf83fc030af34ec26c512026c438bdc6c9cae89a41f7c4f1eec99a38fe6b3", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9f660cb9969090debd3cf37e43552ea322181e40e60c2b91b04e5c4571285bde", + "regex": "(?i)^https?\\:\\/\\/essa\\-vale\\-a\\-pena\\-ver\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3ae8ab68413ae60219afa05f350528e64fe9380a1cdd245a7aad80ab5e05f851", + "regex": "." + }, + { + "hash": "026fee7a5d58e22d5128abfb3e2f49f272106dbbedaf5f19dbcd912d5fe8e493", + "regex": "(?i)^https?\\:\\/\\/att\\-100901\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "499c87814f65c5d448d3bbb3b15d96a470aa2a3c8de24d9b9d0f5b776a6f4793", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3f087ab8fb382ab039cbf9f05b984a265ffa8229adf5267c7132886245b59a91", + "regex": "(?i)^https?\\:\\/\\/foodblognetworkcookingcontest\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7f92a9c3f4a8a28644fb728934ba009c19632cf24423fc25c3dcc5a67ce6e6b4", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "18743969fb269e22065e78e33131afafb7387bfcaa2316eb47d612021e0abd5f", + "regex": "." + }, + { + "hash": "babf2512771c14dcb523be748ba93d9563ba82b71740166e6c97f2b3bd068698", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudthaskcmasckasmeae\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "58b250fda8147ffdf5a912ede189f498dfe6b69b1f49499b21d0e2e2352d962d", + "regex": "." + }, + { + "hash": "e62868587729d2dc0f91c4a315a0cdaec367c4e83dacc26783f70218ea9cd177", + "regex": "." + }, + { + "hash": "f71cbe11d78ff4ec771434bf3ffc9d41a825d0f49ee99a050fd2e05aaa2e07b6", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "485de1143ad4570eaed581ce5d33a36ec189ee390ff9f0b0cb5657a4e6ef3965", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ce92a8f9f650cc0429c093ee4756144a09827c8f291beaad135bec79d8d634cc", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0ec119014474b6043243490ee0f8ccb2273aa01d645bfa3dc2d2cac776c972b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xYLWJYgn(?:\\?|$)" + }, + { + "hash": "f89d9f7db1dffe75c05e99b2edfdfd530b1a0f91f185414bae198e56acc45a6c", + "regex": "." + }, + { + "hash": "ac831acf725211af96042482a14efced1cf8292fb46b04aec774395a9d01e7f9", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-icloud\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0902fe523db6ffaf313806c14d16a4cb9e0e754463048bf49c0ebbc757285e0c", + "regex": "(?i)^https?\\:\\/\\/foodblognetworkcookingcontest\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d5fa3dcca4defde0f072b4a43acff8dd50a59ce16323f0f507b7673c4014d34c", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "21e154bb1c47ecb1485406329c2771e0d2d9c37eb86bfeadd453822a1aea5e06", + "regex": "." + }, + { + "hash": "c57945020a3b84c2c15d05392affa78f15b1a27c29776e58531a267e3b44567b", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-icloud\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6c38df4577c3ce6845396352d1fa6b8abdbb985f215d1a4453e6c7e850614ae4", + "regex": "(?i)^https?\\:\\/\\/foodblognetworkcookingcontest\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bbbe45547badb365b35be2684de68cf1212d677f33bdd660c70e912356632d89", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "31a5522a0940396e9c42ef3c1fd10f8281f45d5ad343383d9bf3636009f64fa0", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e22d6e38544cbd49936fb46bd6a843d2eb45af7c82c89f0ea03491baa38cd1f6", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f86cc15cdd44c482e15419b7b69744b9f95ee6eaaee5362c6e21a823006067f9", + "regex": "." + }, + { + "hash": "a76148fdbc407dc86dbe3c1c736d03bf6bd9468105ebf8012bd7c9ec00c5fd54", + "regex": "(?i)^https?\\:\\/\\/brobizaty\\-feesa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b0f7fbe944c46e7113a5b177c7c7db319d114a95a3dc00f09122681338e0137f", + "regex": "(?i)^https?\\:\\/\\/imv23new\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b818ee7be864b725bb1b4ca1a9bd3af0182bbc3facde66568fb5142bdacf3ec7", + "regex": "." + }, + { + "hash": "508e9db3de3424a267f9478fb9ac838d9972869d7ee77cdd91ff6cef1509c2a2", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d203e0e81dd91fdc36d74e7d0e086e4a01faa0acdaa5bd83d3571b3fd7e72424", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudthaskcmasckasmeae\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d56e4dbe06eff39bf8b9540af7639d1b69c942d791565d4f9294c6a5f99a88e3", + "regex": "(?i)^https?\\:\\/\\/brobizaty\\-feesa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d5fcbf00a40ea44cb83611325084a967813f638f9b249a48ef0d8074e1a92177", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "29cab2ec8eaa22940e275cb245b59a7d2b9a08fd36b3a5890dc0f9f5ca8857b4", + "regex": "(?i)^https?\\:\\/\\/brobizaty\\-feesa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "80a8b5fb4936598930f1d25ffc49cf98a8b7550cb77022ffd3613d1dab260704", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d53117ef8ea4cecdcd793c055946b4f919775582fc9d2312e321cb6b4bfd7bff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "63ade80c4c64a92c503ef8e3714e3560747dde5f617fe92b7ce41c0d779ce799", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cfdd6265a356951108e950bb35b29a101070a3cd9f34f3f72285dff39dd5145e", + "regex": "." + }, + { + "hash": "b1c5bb514097fba830a6e916860a5971d873549a7b598121ccc902f7fe6f1a42", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cdee68b81d035b84ab4befea5377497c75d09b9ac4ed5545570b98d0dbd420a1", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-icloud\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "aa7133552dc24f0a6948359cfee7ba1a4cd30e00532d492d8758e3dda31179ad", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "66dfea70c424d8354d90577beb343176d1761157441ada768836ccda8924e3a2", + "regex": "." + }, + { + "hash": "3360ba1eab0ea0b92d1c32119009d3642db8d70f5c1ec49838bacd9bd854f5e9", + "regex": "." + }, + { + "hash": "1b0b700d18a758d98f00a6d6ee8460735087dcc72543a2d7a6457bc53c596662", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "12fe4c791acfd54ad2322935e502e31dd96e33692957edee5770c5e437755065", + "regex": "." + }, + { + "hash": "1b9a9d5d541d12a71aae37fbf17ddfd774751ffa29e6d8fcecd7abac69e0fe49", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "893780147ba761f76e7e92afa54bd45aa99d5f6cec1ca48c565bd01bc1fbfded", + "regex": "(?i)^https?\\:\\/\\/imv23new\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9a2d21f3989ed05462985ed53178d5f822dd41c042aba8b1405616745f6f50ef", + "regex": "." + }, + { + "hash": "14c77cab80b09b3527e18db227c299d9e0f42ac5741063e688e054975dccb66f", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0c20582d828f0a2912ffc3764561512a2b0abc7e72bd19c21950b766ac281466", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudthaskcmasckasmeae\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "052f1d94c321a279474b3bd3462d8db042afd6472777c7460061dc0ea623dd24", + "regex": "(?i)^https?\\:\\/\\/riziv\\-inami\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f1c395595379a581e6b903178c456bd2cf2d214de2569a47109aa2580bd1c167", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a7985edfba9355201f8322b5700b2fb462748c1092e84d2ce19d1bf73292be9e", + "regex": "." + }, + { + "hash": "e2cc77b5a2b86a9ae3f93ac1cf2cd4020b3679ad29018207f36df14a908cc1f9", + "regex": "(?i)^https?\\:\\/\\/foodblognetworkcookingcontest\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4196e3e5d63f4a92a85e6b58ef9fc45aec7fe44d763b7a2add8f358eab528278", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "705440d59ad7314151bb719a2a5e53686c289351f970b6400e51add2f4c35e9f", + "regex": "(?i)^https?\\:\\/\\/attijariwfabank\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "46bc6ec2b95c94cac6eab225b1a657df006f0dc9e232a7334018b2ea5e91ea06", + "regex": "." + }, + { + "hash": "f1f0e6f8b297a386a599a96f81ec9ceedfaea31d5adb966908e2e6cdeb03fb3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+collections[\\/\\\\]+parfum\\-femme" + }, + { + "hash": "697b8703f3fc104098a28e94acada289c911e31eeb071e8ec7fead0f1272d5b4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register37008(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2bfd23ee6e75d9d826b68942375e3f85762d3f1fdf306ca6d105cc19c9d86ee0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "f0e40532f383cf040e4ee7d62f0bb51a0bf8c57b8d2eff408055a45941b5a795", + "regex": "(?i)^https?\\:\\/\\/brobizz\\-icloud\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9bb8f9af7d7cd0aa7a977db5cd7bde21a38d0748889036cc5881509ec53f7052", + "regex": "(?i)^https?\\:\\/\\/liohbuyzavretycuaokza\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "46fd086cceb5cb410c70dac8cc53131437b561ee70784c970f6afd79fe854b95", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c8ac370b4d80111c828fe00e5c32dcd69fd01977e45b2a8fdfd94f1be1f0cbae", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "05249a85eec42870b01fcc6bc6d35ef20e4a728cacfb4e02776440ad10f3de2b", + "regex": "(?i)^https?\\:\\/\\/gratisbokepgaysma\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "804c601fcd300f643f291d3332cb8fbe714e51312429c637dc6f6c9966da3ba4", + "regex": "(?i)^https?\\:\\/\\/imv23new\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "88a36f2d78de7be3dee8eeda583ae386eccee6fb5f62e90ad33bf3fa5278aa54", + "regex": "(?i)^https?\\:\\/\\/riziv\\-csam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cd4df51cfb0ac1580a50d0b0f225b6a0be50c4f08a61b16bb222d5c4296c74bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5db718fb9abdeb1c5175d7f82146f49eaeaf9b1d9239352acf294632d8d0c054", + "regex": "." + }, + { + "hash": "27de85af2372eeb0ab196806f83119b88539882b64049fbc4da1549079f773cd", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d58e03d25e23673057090279f33a9d8f9da68b166428733535a085b0703ab097", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxrobuxsa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "93aeba8ed707fdf5344456691927bfea75664cfd3de1221e87d075f9a3f3c77e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "30ea2f58c1666a3743dd3119aca7b4f1e7316bbb5781f6f3200995541d0fadef", + "regex": "." + }, + { + "hash": "1c729a9b50d5e4839cd0f8bb99762d48efcc2eabed3ba2aaca632d6fd2973609", + "regex": "(?i)^https?\\:\\/\\/oauth2\\-crypto\\-login\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "827f5ace6ed46d5861ee7cc58e69d12bb8de8a30e87a7a4ba943cdaf22aeabb8", + "regex": "." + }, + { + "hash": "260eafab65e69715949790decaa3ea2d4fe32aa2535b87c7232687e8933fcf11", + "regex": "." + }, + { + "hash": "7933f762725086e56d907eb8deee534602af1447c775b395f3cbcd687e5675c3", + "regex": "." + }, + { + "hash": "8d85bd66b64ae21160b0bd87168f7305d3eb4830fdd69c9b76d5d09bd599bde9", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a7430472a2784d4b48c9ba58d075f51a6f6987e1d5eda737ec4a6ae60c051eb2", + "regex": "." + }, + { + "hash": "22d5e968eead65daefc277cc566a098fcc5ee43bb6edee08f23b74463291afc7", + "regex": "(?i)^https?\\:\\/\\/shaw\\-103098\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d15d8d2aa8fdc65ffd4deb33356eac4dc3130741c1a6ae742409d27c88ecc536", + "regex": "." + }, + { + "hash": "04372aa23e65588b9b494a43bfca83973f2334e30346a3f0f2941c9e00fc3e38", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "94b11e4990cc8a1dc0882340b14c4ed535b421fb8341e526a0343f794dc6af6d", + "regex": "." + }, + { + "hash": "e8083e43c84d1ba55f9c03448b2bcb3338c66a16b9bbec08c9d85f1bc7a2810c", + "regex": "(?i)^https?\\:\\/\\/roketciyiz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "108c208068b9f1c009163de8a2798015c62ff520a86d13fbfa41e560909d5d67", + "regex": "(?i)^https?\\:\\/\\/shaw\\-101354\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "134c6571a5fbf85d592191fbcff36b4f3c47d1181c2efd87b72e236ed3ac2394", + "regex": "." + }, + { + "hash": "4280b1efb8c074b39bc8562555899d3c3dd2aea64b128066a52ccea4501d443a", + "regex": "." + }, + { + "hash": "85c254efadd5e2e0dc1965512973160639953c1e1d9b0f0a837c1030fa8625b5", + "regex": "." + }, + { + "hash": "e8054f097cbfa285096397c961bdc43c846a75b2e1d64450f07b33867733f8e5", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "68522a25f4f2f88e8c6dab7953b93eb06d8321351151b0d8953138fdf6769399", + "regex": "." + }, + { + "hash": "6ea862b039e53601a55a6aa3c260c23c270534a1a6f4b14875dd8bef00971812", + "regex": "." + }, + { + "hash": "855be0e293dfafc74ab754bf0e0e333c98c183ad9c4929741756c1d3f124a106", + "regex": "(?i)^https?\\:\\/\\/sbcglobal\\-102794\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b1b2233b5741942d7da16f11f75305684a1a2664e0e61a5d9686b7a861d86fd2", + "regex": "(?i)^https?\\:\\/\\/at\\-t\\-mail\\-ddea12\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9cb06da71f5336da7e153f2dd2070892c4b235614e8c295f09c2ec14c8baa892", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ma(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5149b5042e9eb7d4c2fe95256a82e7bcdf1b0d1453359778a9129205bf79a1d1", + "regex": "." + }, + { + "hash": "d4d8e9c2db06eeec8b1d5cc0fab8ff0bbafe2c77a9d22af42b1add6c3b08c300", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxrobuxsa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e9b179d13a12bcfaebc2b67d03e2a56a535b5c9f4934e00525ab61084b7e9a9b", + "regex": "." + }, + { + "hash": "f60efd24f0dacac7790b4da86ae40202158522dad22f12292a6151b7ddd168f3", + "regex": "." + }, + { + "hash": "d9cec02de43b57ffbd9c3ead779780082f1cafc4f2d28f3c41910c3babe0b7fe", + "regex": "." + }, + { + "hash": "6faa5062a23965733b6b927a0e170b0ff85b5a6986d4e7d01eeb8f44de3be45b", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c76e1734bb76f068ad3587564aa940115d23e2ac97f4473f2144a81abd81f480", + "regex": "." + }, + { + "hash": "501577bb40bcda1d3a10a95b3516181a254e4f49f575154bd83a1bb7959b3cfb", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxrobuxsa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a69110f00095f011bd29c9d9d80747dc6264e159f9f7390051b60b8c0071dc59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\-338" + }, + { + "hash": "8a24d17ae5b5bf4aa14c1b0f1a7fa6730f53a1d4a69841f765c7aa80fe9bc2e6", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "178b0950c6662c292914f636a103a353edd50d131b8ebd723b3737488a0eddac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+id[\\/\\\\]+client" + }, + { + "hash": "3c9afd72e78094e80613990fdfb489b4745e65c3d6a2a3125b29074b14eee508", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "702d70bfd18b54876c646338c3e614336f648a053bf4a2841b7b61430f98a9b2", + "regex": "." + }, + { + "hash": "9661475e83102d5e89f0f9336f71701bc3c78a0f48365847eadbe989d87f9875", + "regex": "." + }, + { + "hash": "6a303b2ad3c3a4a26487763c63daac9ad37c3f014b9c4ee3ffe83f7f36d90c44", + "regex": "." + }, + { + "hash": "962f087e0f655064bcb5e6449474a3e548c1ffde8c4893d9454f3e62e8e05041", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+id[\\/\\\\]+client" + }, + { + "hash": "fdd5abd20b223dc5f531595d83130ca3828993fccd86a5e4eac9f9ae70087036", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a1e3033f2172fd1b36ddd240252fcf10552e0460554ea8613c98fad16654320e", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "71e36c4214f34c35d29e6e450f0b392d33f46d21c86db5b7ffeed5bc4ba8153e", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a41b874d9994ed1ba04da69fa6a2285682c40b76fb8edad74c59c75d18064741", + "regex": "." + }, + { + "hash": "af5019475ad57e203dd56f13b52ff707ecd792d869f50569ec3ff2d559638ecf", + "regex": "." + }, + { + "hash": "ab9e56c2be94d8dee6397025211f9378c46d041e39614a569f8fa51d0c02b92f", + "regex": "(?i)^https?\\:\\/\\/roketciyiz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c041495044580f7eb7e069f536a26167b83e1c13bc6d61d1a128ac23c686aa4c", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1df62b48b4e561995a84495eea08f430d4b852c79641d02c883b125ef8d19c68", + "regex": "(?i)^https?\\:\\/\\/roketciyiz\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "367e5ed37f01e3b10e75cb1c31bb7cadd4b1b22506faccd4e217ede6f4b993bb", + "regex": "." + }, + { + "hash": "7c0ea7fa62fdb914b079502f329731c4f8bc3d936c6f7219a39916e8d81203da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8e92b7d982fd8100c370d94ac306e0f3c059dc4bf027356fc506c8568119177d", + "regex": "(?i)^https?\\:\\/\\/roketciyiz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5675d2649cac60260b02ddfa474b026539179e44fa15a39510965ba76854d5c6", + "regex": "(?i)^https?\\:\\/\\/www\\.robuxrobuxsa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "20dd4c2e216df9c42f832658ead9bdbea33eb3e0fcf3b67568c1fc3d891081c3", + "regex": "." + }, + { + "hash": "c5ee15713b997bbacde6ccc7976174228d85d514125b047a67ca3594322476e0", + "regex": "(?i)^https?\\:\\/\\/roketciyiz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "066f693197a77cced043c3867d0ce8fc830225a499f952768f230795fa49947b", + "regex": "." + }, + { + "hash": "4c7fdfa50c588be1dedaa9074fdb51eee25c3c68302197411ea1fa74c0cf11bb", + "regex": "(?i)^https?\\:\\/\\/roketciyiz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "59a7b07608f21da3f6fa29d779aa7441a947453a0e0f7784f615ff6e8c7bb20c", + "regex": "." + }, + { + "hash": "49d1ec94ce8f7aac96b3ccc385203b1d0a043576f50fd543946587b5055894d5", + "regex": "(?i)^https?\\:\\/\\/mail\\.flipdealsss\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ljtc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "94c583bc40f6208cb423b923d391477faeb933aed7f8c78967fe5b9bfa37f32b", + "regex": "." + }, + { + "hash": "db34715e08ab523716a129a7795fe16208c6f8c5cbefe987448cceac9cc922ab", + "regex": "(?i)^https?\\:\\/\\/roketciyiz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1c45cec1379b3ceb8192aa073748db5eb69f30f08a7c9e3bbb862788f1a2ef54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "0a87400c746a9814cef3d9e8453f25e20b8161a9a8364bed0e7f2cc0d99bc185", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6c70a56d1bc3967fb94b148c59c6f50d59033798261e975b577f773e22d6ee4f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pl\\.php(?:\\?|$)" + }, + { + "hash": "b1e174771c8627a7f2c0c22917583fcddcb0335e89cca5b8b9428ad226fcf75f", + "regex": "(?i)^https?\\:\\/\\/robuxrobuxsa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e66c81f4434bc6f518c9d11748a090c8e637d26efc129e62a0aa5c80a8156251", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f5d37a13f3360effecac29dd973d883c79cf59c0b1f62e435027dff2d0c38746", + "regex": "." + }, + { + "hash": "4b432baaea22c8b14534c257fd992738e15e2f44ceaa6b4469a4e7382f4e1bca", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a5848ff7d2819b0c661e2fcd7c945b3000857c252f14ae7e37c0b5f0222cd6da", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-uzll\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "e797f2ff3ea1eff5fdd0199127dc991728ee3ac8e7e9e03ba334d5ddd28d706b", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "357282040a57f1fe104a8632091b5bb87823c13c70b6c0fea0225b86e7958f54", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bee17779eb3a0ea101b226313e4acb440c60c67e71b42b6dca7b0312677e7bd0", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "23cb71993527e03ece1bbba952ab17b64b2bd526a50c87a8adff1856b5f1a0e5", + "regex": "(?i)^https?\\:\\/\\/oklutnbgzarecasda\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5c126f21a25d80c767df1c05710586cf91ed624a1fa012b7e2f45a6080a21ac2", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2bfd13f5a4ef2b6d2fb58420f96eb4cc5a8f1af8936303c82b2d1b6b32b537bc", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5c610a92492e1c019145adedd55416509369a791f97ff2fa4bdca91f67ef8b69", + "regex": "(?i)^https?\\:\\/\\/orsotoscani2ito\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cc648251f5a01a9911579f70bfed956eaf7f0e31c892d715099c10878d888939", + "regex": "(?i)^https?\\:\\/\\/wafa\\-bankmo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bbba260532226bc39508edf9791623b0535480bc2ba5eed5fcb1f40a021655fd", + "regex": "(?i)^https?\\:\\/\\/dksdys7d\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "53d79a7af21a72370fe5c348b198b02d5421f3807fb7654c253ccdd82ea71fd9", + "regex": "(?i)^https?\\:\\/\\/huubiinoaa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4f0dd371d2b4568a24cc13e17f9fd9dbfae8a3862389c578537838b4c51fcc12", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+1[\\/\\\\]+0101019245a86bc1\\-82adc350\\-5a27\\-41a7\\-ba02\\-3b3582c23b04\\-000000[\\/\\\\]+R1xcZkdfdJTg7LcOXvpRZUqaP_c\\=394(?:\\?|$)" + }, + { + "hash": "9745139e999a142424c231024ebaca3de69cca1fb40e164b42bb65cdf3f9f0f6", + "regex": "(?i)^https?\\:\\/\\/kotubryuzavregopada\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9642f16f976b4b9270850b63bbaab113f09f38d634152997fc3b65bcba767a08", + "regex": "(?i)^https?\\:\\/\\/jamonopoly\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9a429bdceea70d48bee4727837bbc81535cd43f93551a8382c83e8380dc490a9", + "regex": "(?i)^https?\\:\\/\\/nt\\-userdirc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "be28006066a40cdd6229110c939d6344a7a1cd39022707bd809ff74c6b2fed10", + "regex": "(?i)^https?\\:\\/\\/hmiidastaaar\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8559642576240eab956a6f467d9242f5b6aac2c76f627a6f12db9c72bda91c33", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+web\\-ad[\\/\\\\]+web(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "930047a40652949cd4f1f3b0ab072a093c324c243617c19f61c821a0a4011312", + "regex": "(?i)^https?\\:\\/\\/wafa\\-bankmo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1726307002fbf4b3d6dba155de474d45f30d52049d8a4a4481b1716f15ac3fd1", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7760469e72d9bd50783df6cee5a821816af19efbb9b656fcbfd7e022f45cdd94", + "regex": "(?i)^https?\\:\\/\\/dasdasd78d\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9095de892154c9e9faa540e691ffe6e9e572cbd079415b6e14d4e0376aa41537", + "regex": "(?i)^https?\\:\\/\\/wafa\\-bankmo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "325e3b2355ccb5c5945a5ddeba585b407d8dacf47ff7951fea1a9cc361b0ae06", + "regex": "(?i)^https?\\:\\/\\/dasdksa83232\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ce909392321e10804f822c2fcff0c684c9f07794077f538e16b54ace0200bf83", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f421e44e85bd64981ed50ec9576bf7af7fbc22b02dad872e06831f0492b61f43", + "regex": "(?i)^https?\\:\\/\\/jamonopoly\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "85f37f2b3a130e9d046ecef02eafe1bcaafb7e49cd3bf554d3e60141ca37c9de", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e8fdeadfb5611c14f728fdb826aa6aee06e68461844bc7de9296af829486708d", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3ad13ed1257112f7e0ae01d53b2edfea89a3a0566f13d77b2507c4036e548fc3", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "96612b2e9b0ce12fa4592b7b8e7c7af215c71b16e742ea96c58d49723f5a9106", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5adffdc1a8cc93034f26dc23855fa47b3c7213ee872829ee202706f0ea566c04", + "regex": "(?i)^https?\\:\\/\\/huubiinoaa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f94843072c119e9d74ad76ef362cbb3fcfb0a5a231c10165092eafc3f0f21505", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-xkyk\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "a5c98590a1aca36f0388bcc4f01875af93cbcd2e60f68715659944c769744363", + "regex": "(?i)^https?\\:\\/\\/sjahs78222\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a239cbb86aa7a690f914476f143f67a50f01b897e433f43085f411b8540ff5b7", + "regex": "(?i)^https?\\:\\/\\/jamonopoly\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6ff23e6e8568f99578b1267bba621312473a22c9992440018ca988f4929a5c8a", + "regex": "." + }, + { + "hash": "99ada6c549ed8033d6c7054688de77aeb10a7f558823ac10c39ce323b8c62bf7", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "df60374ec827c08607e3f67339f18d9c136e2e1833f97bf8323b1b489d0e1fbc", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9ba23fce2ab4399ec029b5d71af219068b589907076db128ef3ddf70938fd728", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+EEsti(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9c9dfbda5210cd0d1b70262c30c49d48a90d955332917101e0c0d10f80a36f8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "047c998c30a1cb96933a208ea7c826f1fc744a96e038a2830d5b019c0204135f", + "regex": "(?i)^https?\\:\\/\\/spc\\-swi\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "479ea1ce1dc7070a1bb60e8a5c0500077cb639a5c053bc24032ddb9414958947", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a0b6ea807ffcb2559ae4b51edccbd3eb97e62b27cef6f96fb9cb0ce498466c28", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1f4881c11348e472b9e93d1008346f579929cf52654f89d1d27cc5a1c9d20d46", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35fce4d576027351006373e952a60e495d61194e8e2b1e5d8801508dd88e4eb8", + "regex": "(?i)^https?\\:\\/\\/metropolguncelyerinde\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "833b9028b369f7fa652ada17de0e942c8d83385f1f0d6902f9e64cfbbcc5e526", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c0a9d355cd05f87b3de7bf12d12c774e4a3b35901b028a4262d51c05f6f5613d", + "regex": "(?i)^https?\\:\\/\\/metropolguncelyerinde\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "eb6b31b4275f73b7d5a7a5976045ed0a4747aa5614b6de01e8fe012b81dc4583", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2c086445c36eaf016de03c6a5de340a774d03222c4b78d14cb07df8c6903a9ed", + "regex": "(?i)^https?\\:\\/\\/spc\\-swi\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cabfa7ea52728aae4b2738de75269af399b303c29cf8f1c864166ac9242f792e", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+ljz4(?:\\?|$)" + }, + { + "hash": "b9e61831989cba95191ac414d6eb64de660df8ea473416167b8b1f6fcc2030c2", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "faae0e61314aa88f02a21de065eecf3110cc9fa72fdb1b5b3ba80b257c9b7638", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e16ed2ae241b949d0969b1747cd709041d782c8546af008742a6b9a73edd678", + "regex": "(?i)^https?\\:\\/\\/metropolguncelyerinde\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c0601255232ed0e05e2c591d972ad8aad2cc2babd72e2d71a06835a302fc952c", + "regex": "(?i)^https?\\:\\/\\/oklutnbgzarecasda\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bd385212f574d60726b23374092699a9cd09b0cd97bb2c6ab731b7571fd59e0f", + "regex": "." + }, + { + "hash": "6d746224f764144e9c7506cf9d8d7461d69bc9c50f02bbf7692d4b2b3c43dd8f", + "regex": "(?i)^https?\\:\\/\\/dasdasd78d\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f71c8735606c613208d880b5e8104e4a0eeedc8a848996b6cc41033b0c1338e4", + "regex": "." + }, + { + "hash": "f2274ce6f296291483e85be3b9ff9c9ee398a3228107e918fc0f9c57cfb3cbf7", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "368fc64882def8ebe6f9796082533b1bbde412acb521716765dfe593a23b3a03", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "63820a9d6778b1327fafac4e8aa3930ef694e24ac074d215894562c72de7d2f5", + "regex": "." + }, + { + "hash": "48e8c435b2ddbae75aaef5cfbf83c51d0138a1890fc74bb69a1a39878cde4106", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cdda29113f0c86edf21b3191d1f7235c55e6c22ad475c52e78324e4791ed21d3", + "regex": "." + }, + { + "hash": "c5f5ed5d6e898019b7b2e73c7ac3461cd665584b58fa6fb64eadfe1a729cdda6", + "regex": "(?i)^https?\\:\\/\\/sjahs78222\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "91438df813a3cd5405a7e7c51717d0a64b2e599758efd6824cf8e4873d1dd462", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "77f275762aa1cef8e75fab16c3eb65acdb16716b824f058696cc12969d87f0be", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "231d6c819171073f255d15a3d76ce8ffd7bb76bddef35bef337d93fc028a1a06", + "regex": "." + }, + { + "hash": "0cc159c4abfc5757dcd3c74559feace7983abac74e95b57bb9f976a2f23dc9e0", + "regex": "(?i)^https?\\:\\/\\/pub\\-8a29a7b4d67342b998728b242f1a3f9c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7954d4263e9a46bbe7f30ebc06850d7414abc472e8566db0db5d29914d7638ae", + "regex": "(?i)^https?\\:\\/\\/spc\\-swi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f8e4ebef0fb6eb8b0ae7325901a035f60f9198637f1de76d67463d09edc6a011", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "99d4f6088d19f5ff7a184f7d8fe6469227a86a860902d77f4f7723010c6eddbf", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ae478dbc6563d8e120dbec10e4ec0889e04c586543ef9230ce9cc554e5883236", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6ca2e5279493fd913f05bf10775500001b818e29eef1606e51f70ca9ab63c579", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "000759952019f538565099bcc601308b54b80822651ae63bda39e0fcf3d8c5a9", + "regex": "." + }, + { + "hash": "bb46d63e694bb7490162628df3aa42c0d8d972b604cda4c224979b239052305b", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "62a0296d3a9148eff3ce92838cba540cd1ca6f68194077a5f37573cccdd75511", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "169452669c75a564b4d51213aa1b96bbcf232bc83a6ebe964e79846417981d3f", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5d2132f44ab1b516c642670c195b58374b2ed78982c202a71764936342bef23a", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b5d94857584ecf960fca250b8d1c7428d306690a7a9f807edaa847a9fd3a86a", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "16e52bb7e8dbae9a7d236257fbc5b801c12a8ff1a483e126deb76093be5b4f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1fe6f66bcb19e2b426d26fbf708b8bd6c1abba6de9c27dc0e0df2f5f635d8c6a", + "regex": "(?i)^https?\\:\\/\\/metropolguncelyerinde\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cd50c2a3e0e6f8d13d935b24f7ea740d107f2a33f04e9d302a05408a7f205c45", + "regex": "(?i)^https?\\:\\/\\/dasdksa83232\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c46e3b5862e4b7be70bf3b78e0ffb8830a28889b6bb0af3ce5e6518eda9acf08", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3fcbc6d0236753111f7fe458e17b6dc663d7f82c7186f3d27a49ac4f228a28dc", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "94a8d6d9e1fc20584046c87a6b473972e3ff319be5a177749039878eda9c339f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+KYWG[\\/\\\\]+3FR5FW[\\/\\\\]+0H27MUE\\.html(?:\\?|$)" + }, + { + "hash": "2fea738de61804e6b393d2fb4d55a5cb0263532057ded14fac4513cfba2cffe1", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "07c4fcc42cd67a2a763b244acf7fd3c6754b4d2ba29ffd85d4d786ea0e5204fa", + "regex": "(?i)^https?\\:\\/\\/bansklmabana\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0f5debb9ed3d3c71fbc09d5acb72731a1d049ab0f5f6d8ea4fba2d3c452d52af", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df60e49ec40ac85db19a3a9191a117c1f2bab7589c1a9a7f1f7d06eccc6fa347", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9c9dfb0e07eee5b20f9bdec4fa31a27183f685948bc6f974dccd9fee809d315e", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2e593690e70b5b32b66f1596358be778ff1e340dc10ad8be248cb10fd86bb5a2", + "regex": "(?i)^https?\\:\\/\\/jamonopoly\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "44dfc2ba7cac7fab464f83885a0f2ba017946e5847de78a6be123ebd54b8bf75", + "regex": "." + }, + { + "hash": "f9ba73314a8fdc8e73dfc6d647e7e7a165e9766c23bbc320338d4fa64fadadc2", + "regex": "." + }, + { + "hash": "032a1afd9b4f0675a66798ce0ccb1907d9245da93ad4450372e7965b3cb44661", + "regex": "." + }, + { + "hash": "6fd78959395d5937c93155ded80e14817471ef188429abd0949711843702c2b9", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d01370611e1d8fd73b82447a3a6c8f92e21f1f1cf137fa7d8b01176754fee6fc", + "regex": "." + }, + { + "hash": "f67dd240132664c6667bb578fdc3b2f01693b1750f0050a66505909484564568", + "regex": "(?i)^https?\\:\\/\\/stormstrider\\-thunderchaser\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b6cc457321979db13ad98b98366016552e79e417b202c0468b2e6c889aae6472", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a9c772bb005aa81bb4a7f7a6482bd06581f72666065c17fba129a16ce855b546", + "regex": "(?i)^https?\\:\\/\\/pub\\-ef978774a55644218863ff11e459975e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cd904105844a22f2ded4961609d060520759b4958b21d43e27b29fdbd041b592", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f7200d61fc4ee1ad4e57570a81906e13baf788c614262ac6faa769556f329466", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+SimplesNacional[\\/\\\\]+Aplicacoes[\\/\\\\]+ATSPO[\\/\\\\]+pgmei\\.app[\\/\\\\]+identificacao(?:\\?|$)" + }, + { + "hash": "9a420c7c180abaa70f35549e5e98e88b3600e342b47c66d7fd1dab5c8befb6b8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "997cecbab8c926587ccf1ee3d6644292c22769757c114ad8b49167edb37b6605", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "1e3c154369aac1541a7877f860e14d58a6475cc10293474af7c34b86dedd2063", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "505bb874602b8da01a3ac989ed06570d056ea964cd4e449179556ac87e9d2174", + "regex": "." + }, + { + "hash": "9ee241ec6944f0f5e59cc5befa22b482e9cb7aae9a369daf12c2d2dd054c4993", + "regex": "(?i)^https?\\:\\/\\/hmiidastaaar\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c7689f8ea31d6aad2fcd5bcad3e2ace7313a04febea196e184781e6161223c13", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4a7d99e37772a5fbfd745e7413373476efaf28b491c61b0d155713100a0f343b", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44e06674cc091d303f528eb33d0ed74484757b6e606c30a3f934b183143566f6", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "addcff044bd20c774a81d8e0b79af8ca7fa14bc3ce78e692971d3925c26b7fff", + "regex": "(?i)^https?\\:\\/\\/sb\\-swissb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fdec1f6ed0b6ec3b80294a1251b28240d786101294a7b6d57c498f35920b230b", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1339764a3268ba43851229eac1a056facd939ac7d31ebb2206837b14e46b6b6b", + "regex": "(?i)^https?\\:\\/\\/dksdys7d\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "49009ab4e22766f74ca0f8880ac74189db315c7ecbc3cd588fab9b35590659f4", + "regex": "(?i)^https?\\:\\/\\/wafa\\-bankmo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "582485ead1035f926be7bba780d8c2cea4812606e58f09ab0b1e3e5bd2995f66", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f78cc4cec09dae5d688df19f07baf5ae0979084fb0e342d7d0dcd7c596eaf52d", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "122379ce4aef98b9671a312ac3628f5ea19d8bdf43b72a9e080ff5a30743836d", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f6e2bed0eff1fbc9124b47dea35e797a403d1f4a9b872b15402b41c238f06d5a", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "96e48ccf0dcb3be66430267321a18e9da263d3ad66a5faa9eaa795853f6b773c", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7b2ab7c80253886e39d231f6d47d0444407bf601cff9d4c0bf50ee6b1e426730", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a2a43fae7860d6876f56e9a3647a5f8b3c54214636ab61b32e5822c531e9fa05", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fa16f3636c837c3a613b00c0dcdee1fd2f6b8bc4c813ecbfad97b2a8c7ae2a34", + "regex": "(?i)^https?\\:\\/\\/nt\\-userdirc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a142f8632895408894ff479051b7815378073d123f5d9ef4b3e226fe6b19bad3", + "regex": "(?i)^https?\\:\\/\\/61404642\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "46078d43972b1a31301dea215f411a366f27a64440a8483564e0bdfc0fa6b589", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "40ffe4e9e6c9d84e985506131edd5677b9a54f71a9ab5c011f76011be6ebbf56", + "regex": "(?i)^https?\\:\\/\\/www\\.anilpatel02\\.47\\-89\\-182\\-179\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fb295b72909464077874dba8af3e18e3732fc2bf4d17399d782a4fe72054f0bf", + "regex": "(?i)^https?\\:\\/\\/bansklmabana\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "975543e014fb87afffcc6a357b47cb5fc7e1c951f042fba6be28b94e84db5817", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2832c023b0d033ec664fdae304bef80bcfc21389e70548021b0073f8a554be09", + "regex": "(?i)^https?\\:\\/\\/dasdksa83232\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c16faad9d26b42883efccd9359f111fee2e501d399c198b43df0ed54509ef37a", + "regex": "(?i)^https?\\:\\/\\/spc\\-swi\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6e9588d17559daad35c9da9a9ea8ee573782bca93802f9b40cd0b035ae6a94f4", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f93bfc1600860d12e0937fc595a924ac4a0a8f7de3b2ee27900a288c64201976", + "regex": "(?i)^https?\\:\\/\\/metropolguncelyerinde\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f7a0b1a784f87a40315629e9dc62d0c32b970ed6a2fc838d3c8fd26ed9d267a9", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d5fa4cb017b4baf63ba1e6c6d6f624e764a39bce0273a69af430e7979191b664", + "regex": "(?i)^https?\\:\\/\\/jogosrobloxrpgptbr\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc1a1ccca16f452e0079ba7b50a8cdd7df64f89785fa0759c51dc6b57b41bfee", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4253877464159dd8826f9adb241c754b439d1e423d5ba292d6a52ac985e5094e", + "regex": "(?i)^https?\\:\\/\\/wafa\\-bankmo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c782649d84393ea2ad12e2d9a641a66bea81816e9826ccb326b3d7ede135cb8d", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7f7b76c240d0a7c0bd56aa50423ad94685259a4f630d8431af85051db3722fc9", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "81e45191ffa516c4894cb039f8c4610f49eb3e1e60ab94c29de040a053268817", + "regex": "." + }, + { + "hash": "2111dbac85d94556cd7b11392fc7105c1b32054ff9ca50d513984f76364be253", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "77c9095319b5d1e3522d2cee78e344ecba7f6b17d70d232c0736f4c0143cc5da", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "da1397953a496c719751f97e4fecd4454d545dc49005b311ca379a0e299d003b", + "regex": "(?i)^https?\\:\\/\\/huubiinoaa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a9e4b0d75d3cf2042d6fa768e07f8dffebcfb31f3b6f09614895c4d5b34f344e", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "af8442afe39689c198f23330d4b613db8c0b23bc781a0aa0dcb5fbf8c4507a1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "31e2b015f321e7cfe186c12fd0ddd11d4251dbeeea0262eb05d7c7390071e96b", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "536497bba83819c19c4d9c40477d3424508523b059b4aaa5a3217331dae80fa3", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6b42bbc13b93a47e9c6261f74a5cecc52aad3f9d24295aaab49b55439585d1f8", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f4c940dbcd5a27a235509e1c25de8b9ca12b0ed9735e4db9ea209f75d4162856", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0c2042b343b6adf2039ecddda1baa56f3bda5eac4bb733b52cca940927c4e21c", + "regex": "." + }, + { + "hash": "7c06eafd5bd5b9e7a8937020579b0798d6633ab03b21a64c7c03adc81d208b16", + "regex": "." + }, + { + "hash": "3df90d799b50cc55aae21ae3b7c0c0c5c1c16567851605aa373ffc729bc66927", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "787b91a0f368e9b724b62a558baedc1290d897cf3afaed6e42b14c7228f74531", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dce99d1c0ebe86fd6d13afb438bc88cc775f6e4c2734888d4e17567e16cea23a", + "regex": "." + }, + { + "hash": "e79f3fdd8a48c930b13bb13a530b16c782950c6d8108e817d146fd17055e75bc", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "043816ab2bc432f9add75b31e9f2500a91e9597155c85351d64c44acd622fa3b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1a2d86edfe04905d29b4bb6221735adf885944dd45f4dcfb2c855bfe5424c37e", + "regex": "(?i)^https?\\:\\/\\/bansklmabana\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a33b1adfd881a94ef72e6d55e9261af89638054e601704c63d6ef6c509350b25", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "31a665f5f3b453f987139d283c2e18a4e70ef98b36d2ebb6aa78c06eabaae3ac", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4aa4312e0df5a4af6a83c53d5267ad1ddf026a36c090d66fe022faf5bcfc1835", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3fa781630a7268b980829c097523eccdf113c615d53de12092bd63ab392b232", + "regex": "(?i)^https?\\:\\/\\/nt\\-userdirc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9035de4cb8ba9c62f013eaf18a74f75c62d62863af8f713d371f9b1a92112515", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2fb46b1835fa2119d1b9a05bead989a6bbbab330d2ff8ae894a5b3f87bd20848", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a855ae3438bb56ed13f88a2365ec37103ff314ae33e179beabe4b566f4f2959a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "65ac909fb621b612469656ba4315326837b0c8c6ef5ef9a5894ddde3a219e67a", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-lvew\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "f1ada648c2d7d05c6f33fc081a4139872cf5518e4092348157f0cca3b10c89c2", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1985c6aabbaafbaddd40da693b5fe7a33229f2e51935eb66770154a8ea7158d3", + "regex": "(?i)^https?\\:\\/\\/hmiidastaaar\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5e7030f9518cad727503989d7143895bf386ff0b9b3d4d8c56927b352ff98152", + "regex": "." + }, + { + "hash": "909e2fa11f9db3cca5ea192a3b59afc339f8813d4b101416c2eafe4436b38f65", + "regex": "(?i)^https?\\:\\/\\/nt\\-userdirc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "baf5cee702d5c05f456cf7acd237ccc327c4900c988da9f20be055c35a37facc", + "regex": "(?i)^https?\\:\\/\\/jamonopoly\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6e95872f6dbc4f5c37dc1338aa3d9466eeea27721759269a434b3a1be5317da7", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "59d83a5f27bd8fd268d7485ee2d9cebef77ef1171ffb26eea87730d8f3c06811", + "regex": "(?i)^https?\\:\\/\\/muhammadmubashir72\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ad3062ae249a480d0ad934f48ff2c0049f0d79c0df68d21e43209778bdce9fe3", + "regex": "." + }, + { + "hash": "11e5e487e1c079329df4a2ef8341d0efac1df4c6b5c68065bc4cee7327de535e", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e3d79a839713f74d0b0b70deab8a623c157d4722944d146c4a8f308b13fb79b7", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6e54368d1c87069cff01c041b83a0559f8ddf7c77fedb07763ce9f5118651e65", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5cf9f496e955470d466eabd88fbc174c3faa901feec0c02dfa058156fcd6cb83", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4c99e43f1a53b0468be50a857da97a2e5775cf368a0919c8f94edc5a97fe463f", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03ca8f774f22779b30974a72cd4f1ddd5df3ba79951901ca9b09b7cf86050c26", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d20f726895d10afba85705c74636560f4f86046ce96ad2e52b8094bb9044ccac", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b9fbba0362d1a7ab7beface8e9dcd3f0e43c58f39ad61732cad5ff1b48ac4e2a", + "regex": "(?i)^https?\\:\\/\\/pub\\-d34a5820c1ee44f3907bc51f577e42f4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f2e0f26354455177105b45b55ec59dadcb9acba6f476e9cc6acdc10d22e9f17e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?svBJS\\-s6LrmG2QbiZ\\=suspect\\@safeonweb\\.be$" + }, + { + "hash": "adbe9b1749edc447866547bf1b1f6db557d3bae72d7b32dbcb288a56bee390a0", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "569843deb8798ad16009331a4744f095d7cc1dbe13a0c488c982444c28b2a85a", + "regex": "(?i)^https?\\:\\/\\/sb\\-swissb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6884a5f66cc5fc5cd32263869dce54e6526d6b23ab3669865a683528fb1c1582", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5df24652462659de98eaf2e2405e9c8d3a001613032c540c360903b1fc94c23a", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a1674a53848b19cee0a747277a71d48271385f40437fc9fa35d71a6a5986f2c4", + "regex": "." + }, + { + "hash": "3288e11811b50dfbe8f91e3282226e19c3917206660958f4757e9f26cd88878f", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "aa571b83232d0d86a5e17c5c162621ffeb0f260be24fa2a501561fb4b996f236", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "386ceae278f07f57e6d9c2daeddbbc92ffecd1715dc242dd2fe82c49c440e890", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d3ba5d7f7cd3a37117b30ee541f406508f8dbf7f927a4c02c518a38ce85c28bb", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "57a276dbbfdaa875c55655ebd14de04265f164164b57cf808bdb353441d4af4f", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5bf34bd01f12be5c1990eb068e783bab51d4df0ff26e1f103f02a64bf6cfe381", + "regex": "(?i)^https?\\:\\/\\/orsotoscani2ito\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7da927d13c0d764cc2c48f8e88db697c0233991abd1cdc38bcef454769911cf3", + "regex": "(?i)^https?\\:\\/\\/sb\\-swissb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6aa8537499aed07000604b97338d12cc06cd6618f6c7440f97381c200d1b712e", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e12fb7f2fff1f492276378b8255da8c343da882264a4e5582611d7f086330563", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f93b044ac489bd7f2e83daa0794e9da4fd5d30b69bf6acee94d133d6133eebcd", + "regex": "(?i)^https?\\:\\/\\/wafa\\-bankmo\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "bd33f1bc0205d49f634d06c97953917f1ef549b850c2413159bf0e059ea973c3", + "regex": "." + }, + { + "hash": "ef966beb99ad6febd2bb94b2cb91afbd831241e29091391be560abe768752a42", + "regex": "(?i)^https?\\:\\/\\/stormstrider\\-thunderchaser\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a73e75ca10d7b52f2764a72d59e521ed0d769341826fcdaa53fbb021f97e72a4", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "45ac5293ccfb1c7fdecfcdbf4d3d9c00a19f8291619825a8136f929c4b56ccf8", + "regex": "(?i)^https?\\:\\/\\/kotubryuzavregopada\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2a245a991d159bdbdcfa20a78f433f5fdfc03ccf0fa25e4fa519af6a18b4052f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e6f0640ac4e1b7c1e61788fdad509f2d485c6c45f54c29ef35c9579c087c905a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l[\\/\\\\]+security" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fnoiiefncwuewefimiq\\.com[\\/\\\\]+2[\\/\\\\]+0101019245a86bc1\\-82adc350\\-5a27\\-41a7\\-ba02\\-3b3582c23b04\\-000000[\\/\\\\]+cw5SyJmU9qOJA3zLIEgeUda2M2U\\=394(?:\\?|$)" + }, + { + "hash": "d39b5f6f0a463dd3a888db8d7b618ed952135390220d0234cc9c00d76b4923fb", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "17dbe5fa5e312734c55ecef35c7bb3abecf2391db8131adf6707bc72122da803", + "regex": "." + }, + { + "hash": "09f7ab94b55a8324f7eaa82ce4d693880e64a74802f4735577f8093053e3fd88", + "regex": "(?i)^https?\\:\\/\\/thoughttracker\\-ideaseeker\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a4d4b805476f630d15a123801d511df6d83273f94efed50f12e1794396673785", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5ef2137eafe29a5419ae4770eb66dc80511df3197db8a84623e048b8bb4edd20", + "regex": "(?i)^https?\\:\\/\\/orsotoscani2ito\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e879b7331334b5876b18784cef281b891bdfcb3fc73ac3c132b3e485653bf8b7", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b49047e71052d7d570c62c8b9b5e9f5807d499f048c22b06de5cdf584f0eb7a6", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c49410a4cfbe7b2099225263e5bc8c732158b7303f452ea7f697cf2609028fc0", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "164294da127c9a88df87d2823b86cb900dc41706ba8e9b4acc219a0e2214aa69", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "11eed37f5bc5001be5bb26cd633989cccc62ba49885bdde60e7d87f8a6d45ce6", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "417f7cb63bd587a824d64fb2029b0b0f2386e374a514f3e1c5fb32172e2f3e80", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "34428038614a262c68ac9eef45ca3d384d64547c08dd39fd9fb4a3aace8eb3f5", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b2fb4e694b3dde5f0db964b8a21b7ddd9dae04cdd4db3eb5f4afdd86c4d3a7c", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2714bf1405efc944e447057ac4b1cd4b7fd3584dd78abafa59bb2d06c64d3037", + "regex": "(?i)^https?\\:\\/\\/oklutnbgzarecasda\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "42094552acd4fa8e34fe4f898a22ee754ab1375633051bcf4d2d26d89a0d981e", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-cigd\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "bd7638cad4dd7f746a0935da9d4ca17ab17d019c84e556cc401af3d0bd922a93", + "regex": "." + }, + { + "hash": "7d47894cc3ba9a0b13f83db1fd4d9c4cd651f52f44821385b56869c3e7453030", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "95c7c71503714c3243b7189965e4c49cf380401edcd9fe7f909830314aaa050d", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0f55265d4d0397a5ef21e877a6029fb35ec7ffbd0f03455b5467640743577f19", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "36eee931db7efa5ae5ac65a752194600d1bdc87230204dc8f11d76a526baaec5", + "regex": "." + }, + { + "hash": "de0f5a642b87414aaa1b8c5e3aad3e3a3ce1b90330aef13099cc6d0c52ec5b4b", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cb40530601f17a51529e714d511ac8b35f9f08a87cbdb67553abdfc09c343461", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "94a9a9386e9a13ae60eae9d0119032024c07c8d20db700e5f39b111a0be91268", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3e2962e66fceb026ce676a71d611e1ab72c44fe2001e78ebf705bc45dc370354", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "b66a208150aa2542d574d91b66987b0bd3253202be4b883a3ea9277a2bf79f6f", + "regex": "." + }, + { + "hash": "df4557922b8f1b2a4172c56d0e3085ccc6914dae63ffc18aea87daca8288d1f8", + "regex": "(?i)^https?\\:\\/\\/hmiidastaaar\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "61fa9c9e187a75a0189019ee6fa06bf3d55edf754a0f63ba765d3708d3714d2e", + "regex": "(?i)^https?\\:\\/\\/thoughttracker\\-ideaseeker\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "602b2e83b93a64206581766911c43e44d2b274e9d01a2259ab1a16e86ca2eace", + "regex": "(?i)^https?\\:\\/\\/hmiidastaaar\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f0ac643efcc32f382dd7d044c4f8a6c01aa8773171d6f7417c7358528672c0d4", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "250c6f61e7650dbc9b64f7499f664eb17e37b6a670fc4a0c5ff710b639bb4532", + "regex": "." + }, + { + "hash": "9cae4e325ee21e0590ca1ff2f9e8271fd819610a2c48a5035eaf617e151bd235", + "regex": "." + }, + { + "hash": "fa5a87d62d2a0f296ec6b4fd10ff24dddf5ec8425f15c0ef00d4096c8d3782b5", + "regex": "(?i)^https?\\:\\/\\/shaw\\-101655\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "591d6e3acedddbf93037fb7b7834d9c6d52b970336b87b141505c9744b21c1d8", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a7c699aea1a17db75fbc9610428ffa5a797a97efa00cb6636808a4104400d66c", + "regex": "(?i)^https?\\:\\/\\/metropolguncelyerinde\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "74219daa87c192258342ce6b61ce0f4499b918eac4c8d2d2f64b2bba07ab6e84", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "eed8d2d8e852cde8e95c32f90dda872c855c69c1d57154e6e281a5bf53a97df4", + "regex": "(?i)^https?\\:\\/\\/dasdasd78d\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "54f4555e711d1a0ee894eca0c8f2384bff1270c5a1f90b510a5671830bb94b96", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "102d9b206cd588aef0d92666c6dfb350fdf30cdead2417a0838618b844d49c69", + "regex": "(?i)^https?\\:\\/\\/account\\.login\\.paypal\\.com\\.107\\-21\\-74\\-47\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "52a3bbd41f2724433b5c3a4a05b0374fa251da30229400e8bc9d7e63f065fc23", + "regex": "(?i)^https?\\:\\/\\/eastlink\\-101899\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e094de790c9b5bdc5bcc66e318047521b793fea7bc2426795b375f77a3ed1784", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3928cbdc9d27b06f3d4deabb5c856edf30b51b9fccb4a31e36b9e32fa5cf7c56", + "regex": "." + }, + { + "hash": "ee68cac2f36f159c2e4e00cd580a63d777f6117cb69d6ace795f0d1596847c51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sq0\\.php\\?session\\=671611a5983bd" + }, + { + "hash": "2dba3e7d1c1027d387f61fd98c782f911f2cfcd9a33575051cc817f39dde73b5", + "regex": "." + }, + { + "hash": "2b2a9f6d74ea23a584d885098b6d170fdf3a6babe24d2cf98e60e598042d34fc", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "90935e8efa7984c9da39fa3bedc3ed3088fb0bc3ee66e3cbc65b54327e9046a6", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "65dffa41dba55e82217aca5c37fa5b18e88a8f1411413e6a684b6cede9e94346", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "691e4abf72a68f832661ac35c6b8cbb1234cb1b9b919438df11d40952aad4d5c", + "regex": "(?i)^https?\\:\\/\\/thoughttracker\\-ideaseeker\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9dab7ecfad11dc9238ea0f7ad8f559557a1f04a398ae8bb5c48744666b42a1e3", + "regex": "(?i)^https?\\:\\/\\/thoughttracker\\-ideaseeker\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+ljz4(?:\\?|$)" + }, + { + "hash": "2079690af810ade6d2e8c3373fd8990689aeb61baa8ef85966771f53b4d198cf", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ccdc6c7f0034c6b81ec19f8db918065d7207b48f024485989bf62b73067e2230", + "regex": "(?i)^https?\\:\\/\\/dksdys7d\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2a4232325e6b11ab34748d94d08199eb0aa323bcdc2a6a98ef108475ab18ad63", + "regex": "(?i)^https?\\:\\/\\/kotubryuzavregopada\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4284607e5be29ade82e08acfc1b07621bfb1118a5f9099d36b3950df2c0db549", + "regex": "." + }, + { + "hash": "657f24a0e9bd019304d27409d4e1488d475915669449d58ed31aad42cddedea8", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9f015a67156abf0bc26c5f06fbaeb35fa1a45215bc4daf3064acfca35dcdc0e4", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "09164057315982e2a2ebea28e9e152a93f7f24222669abbf5447595156d87d46", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-dask\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "23f0be502e13a53d40a9d9c9b13e9dff494dce3f84c2372d33031fbadffc640b", + "regex": "(?i)^https?\\:\\/\\/thoughttracker\\-ideaseeker\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "aa80805ded2944ab61e60b33a2561e1db95f92f0ec46f792eb35c721bdc2d062", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9102d04a4a9285e939d3776537798c2fdde012c1fe7ff50079ed0a35f81ed455", + "regex": "(?i)^https?\\:\\/\\/sjahs78222\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4080af04bb452e1d9f555582e051f04108423102ec4fd067fbdf16b3cafa01db", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "783b1104231a627deb56e966faa83203d72f2866a82828a009c6878205ad14ab", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "49fd81486911d0fa296ed15df26b5b92399d5bd651d3b30d3fc696770d5acc3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+px[\\/\\\\]+QmZGk6bR6fAYuqYLxKa7FNxyfuyXMRSZxXLq4Ecq9ReWH3(?:\\?|$)" + }, + { + "hash": "59eeef3c5ec81b57ee04aafbf0763cbd352b653b83f9a9735125ebf58e47b2f2", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cbadb7b9b7b2185751bf67024dd4a3e0683244f4549c2dd2d5d50dcc5daa1291", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "edebdc30fd9ab283542906da92749fbfd49c6dc4eb9b1b642636e562a5b4d6bf", + "regex": "(?i)^https?\\:\\/\\/huubiinoaa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bbe43206c4168ef77c8296294a5fa50a9d077d0a2db3366d48893838100f629d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "198282176ed26431a7a21fa0b23cc68a4364dcf538cbe55ddd79dc359bcc4058", + "regex": "(?i)^https?\\:\\/\\/jamonopoly\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4f93c986e8d2af97a597163aec93409a5ee535ac5889b56962657e0cc8ab4f18", + "regex": "(?i)^https?\\:\\/\\/nt\\-userdirc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1240458d19d26a1c4f1aa5c930b6ffe033354b04666c9a07744c658827972cf7", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "551ef49b5a608e4ba7e2e738224976a8a0eecb96163859623357dd2bedc848ca", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "dbfcf35bb895fe9a08e39bb6ed9c50e6019e2bd1f92a1c82eba4fb92965a051b", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "37df1c892d57d597b4280088d84e80eb2de51dd931d25a82e3d9ef184bfdf820", + "regex": "(?i)^https?\\:\\/\\/bansklmabana\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "102d9b206cd588aef0d92666c6dfb350fdf30cdead2417a0838618b844d49c69", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.account\\.login\\.paypal\\.com\\.107\\-21\\-74\\-47\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a176e0bd7b158d1a2badbedf4888da6355c05c5491725f1ff4dac75c7af4499f", + "regex": "(?i)^https?\\:\\/\\/stormstrider\\-thunderchaser\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "794315c8b57e3299b744db9e142a4e014449eedc9534ef3e69f69fb94c1c2b80", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6fedbb4d92254a45f1afb1138b99db4aef2d209f89059238fd27c69472fbde90", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7f46bfa0332f79a66f57e14cb5f2a8808729407501bced62a0f47566c7ee933", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-qwyi\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "5ec1fcf8726a1206b2f034390650d23624aaf1e7cef8bff4a680bf8e84127a96", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f2e0f26354455177105b45b55ec59dadcb9acba6f476e9cc6acdc10d22e9f17e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?svBJS\\-s6LrmG2QbiZ\\=suspect\\@safeonweb\\.be\\&zEQSk5TiBfc\\-OCv$" + }, + { + "hash": "dafb875459725df725797894a626194c9cf675d6f954034eb445d7855aacae37", + "regex": "." + }, + { + "hash": "1bf46508f381dcc1a6e238d0b95e6c7755028d43ba39d8663ad936f565db5485", + "regex": "(?i)^https?\\:\\/\\/dksdys7d\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "86c062f42d22af497b6281c7871b5754d9282047532f1510ae85f455d39faf6c", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4dbcf615373043a2807711b930f5408bfd9bd7a97d027f1d41c94c490d81b591", + "regex": "(?i)^https?\\:\\/\\/spc\\-swi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e3c81c3ce745b04e87456445d614819e43ac7441ff3e935e163d6933607cdbc8", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c888eebb31850bb8abffe48d8cd5cc831a6c75d1cee7099060ba67dd9e059aa0", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c4fcbefbe88882f79a43965741c76e53d9223bb631698668319ce389eb591c93", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-vssa\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "b17f2d2519fe1c4b97b25f5872056f18797a8638376df41c08203386e2b79245", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.app\\.n26\\.de\\.login\\.107\\-21\\-74\\-47\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "16e52bb7e8dbae9a7d236257fbc5b801c12a8ff1a483e126deb76093be5b4f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "7ffb3a1a7c603b0aa54ade1d30a5ffd3c41804ad564180cf5d8bc5dc1d42ea3d", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9760998cc7526baa84e78726758356d702ffd43ac82ba4693a7f98ddcf8e623b", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3fdd21659eacef58373291f351af6c84f32eee3bca9d40b5c1db0a9ad4c6a033", + "regex": "(?i)^https?\\:\\/\\/bansklmabana\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1dd96f5768ae9271e3f1e8a281d060f272f6a7a2c7494b0ed7a440fde5a47f90", + "regex": "(?i)^https?\\:\\/\\/dksdys7d\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f043f415977d9691041db4dfc80780a26ab7383c8eab6a7cd550af6fe3886adc", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c811aeaceb1d8225992518620f4d12b4fef86129c8103a4245b14877e72baeae", + "regex": "(?i)^https?\\:\\/\\/orsotoscani2ito\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e04eb28df720701397a04264892031ae1cd51e5ad358428ed05ba9061db1db9e", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "22abb6634d03e6d89cfb2d31ced86eaae40d387afa8d500851d0be26cce4badd", + "regex": "." + }, + { + "hash": "a9dbb3f3865788dcb46f5a6ca9165c7221251bcceaa14dec49a9dc2a9ae70ebf", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9dbd0191c44d3d035ebde9cad6a87bec37d7ef1cedc05eb73ecaa47fb1b9e4d7", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bef3aa417383ff04fc6e25fc1cf0dc5b8b3f2d28234c1c6c425c36a3e17d4531", + "regex": "(?i)^https?\\:\\/\\/huubiinoaa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b63d6119ad225ca6901e0dd9496ae2a125b5790afcc1f5763579b6ad3850d331", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "48e856100e241e18c7cfe0ab991feb00675357b81fac06d7bc42ab86e69a351d", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e0a5c9eae1dbbd8c049f1820b660379bcf0b04db03083f32856e95cdfa22ac6c", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "01d6f135475f3f66693fbe9887b32a10e220ccd8352127de5da340c5834f2e83", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "648c315e502224a45d5d5483a9a957ef4c1f48dc9d072669b71868cae3b6dd8b", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a07661a128cf6ef6264123e1416e1ab54e501ca6282b16a1b1c1b912192ffc5a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b1a9aba84023827d9cb80a4f7e9accfd40f41814c2c673e2ea26030e3ac3f67", + "regex": "(?i)^https?\\:\\/\\/nt\\-userdirc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "71b51935a3c5e555cd7410275e0317c3aa10a80ba138309533305130aaddc3a1", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6053a4d227cd8f6c0f5d5080212256f663d0a5e3ad59dd21fa999412e546443b", + "regex": "(?i)^https?\\:\\/\\/stormstrider\\-thunderchaser\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e536ea83c6a7ab1270677781021d1088780eff87c22c9eb4183173490c69507f", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+\\=[\\/\\\\]+$" + }, + { + "hash": "536cedfa4f598cb0467534f04d416e87b29ea99dcfc815ad85bb34fca6cf92cc", + "regex": "(?i)^https?\\:\\/\\/dasdksa83232\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "45b2911dae4767beadd7746e7df0c95e020e0601d7bbdb02c8bf01e1671a8b74", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a9be61ff872eda65dc4900c0839853e3d4e5f3e2a342dcb1a6883d6c71b5b5b2", + "regex": "(?i)^https?\\:\\/\\/dasdksa83232\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bd3840d2b44aa6d180fb07ed1b0542ee18fae248adb1c7eed7b2e7eac6b488cd", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ccbf1b46a30f3c92a7612a2e4863a0afaa3d6e327f8ac2e17829cbbb1db37d64", + "regex": "(?i)^https?\\:\\/\\/dasdksa83232\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b6a4429b57e9746cc47d5387d51e96505d37c9b11380fd0b655f053563be5788", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3e74db28c4479c3c537574c96c95bc4171018cebbb40579b6212734caf03b473", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "25f7a415b5ce58dcf437652a55f3db1aded99aa5339a73daed80fbbdb6e309ec", + "regex": "(?i)^https?\\:\\/\\/orsotoscani2ito\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3d450c8794d27af9db03ff73721f1e1f87325d113a1fddeaf03d6a84becb9560", + "regex": "(?i)^https?\\:\\/\\/kotubryuzavregopada\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1384ca54789ebe1219985923b8936282b06ad6db5f7bc8c4ba24c084484b1683", + "regex": "." + }, + { + "hash": "04be6c8bbe0f259bbb0da33b30dba098e13872432187ed627738274b09e22b23", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4d42d7472b36ee7f9b4d97a937e54a2aa2da127a985f917ea323c8a839ff5ee8", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "64e17aee5926a4f489cef8ad46a744fd438404c35e2c7edfe06013b066e543ca", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e8146b7956e4258fdbe89f43723e327705cbba57c66eb020ec42f964a8bc7312", + "regex": "(?i)^https?\\:\\/\\/bansklmabana\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3cc64f7af377a381b2175db641e5e7faa7e3f4de6471d02a1679b440dd8a8ede", + "regex": "(?i)^https?\\:\\/\\/kotubryuzavregopada\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9a2d38ac254324f5ef2960d8be313876fc3fd2be2565470744cda7a11c4aa937", + "regex": "(?i)^https?\\:\\/\\/dksdys7d\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f63330cb78331dd7946442162e808b9afe2ead3840d178892d6105b7dcb8638f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jp" + }, + { + "hash": "52c262cd10965f24a34aca89401578a36663431bcf648dc0e6b4e962cc30cc42", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f5a0f7e2c0349bdd4073d63c32d0b5717d6261dd9d68378a0e71240662518520", + "regex": "(?i)^https?\\:\\/\\/dksdys7d\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b32cdc9de891110b285b8391aed64bc24e22fa3648ad47c5f4020a17e19d598a", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b83d385add8cd0c6bf3b7c908f6ccfc2fac61ea78d07a2489540bafabd64bb99", + "regex": "(?i)^https?\\:\\/\\/kotubryuzavregopada\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "71784e4adc885a5227bc68a88306380f569b1eb59915f13243b4e4acfdc4b6e7", + "regex": "(?i)^https?\\:\\/\\/spc\\-swi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9a616e512711d2ef54cd6ba6c5af81848bbe987ee0ac027a2071da5e9ae9982c", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5e7de182d61663fe0599c86472c7c5760acf6443985d19f596d2147c005504ec", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4ee7eac5d6ecaa4671818aaa214a5959657fc24090645b3a660f7e80ffb8c638", + "regex": "." + }, + { + "hash": "144a401cf51ebf2319cf2e95b05a3e4f171e35de670bf54d5225686394d1768c", + "regex": "." + }, + { + "hash": "ddf37389eb5c8b681a837062fcdc787794b9ead20dd40b92d0e9f35856e7d4d1", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f75ead5e81b9c30dcd76af6ec977ff6a682a0d7874db51927e37b91d882b50a8", + "regex": "(?i)^https?\\:\\/\\/nt\\-userdirc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6d161b6c3a9d1b83ad6f016fc2f1c2a1e9000d1db753ad3b6f8079ff99c0a165", + "regex": "." + }, + { + "hash": "514fd53a29265dba14e4fa4ae37dedc6e8a65b8d4d93d0659e8cc1fe26a1db0f", + "regex": "." + }, + { + "hash": "077c620daa12a20165ec81def4d845444bb3e5bbee9ee823df9b84983c71ee59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pvn809(?:\\?|$)" + }, + { + "hash": "ad85b59ac7a0e6daf75f82fd7b4745d7a4a06bf9d7d957304eaf02309f38e3d8", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f13d5281ecee53621ac0849245a37fbcb97fa15e90cc7bca83f0d0879107e31a", + "regex": "(?i)^https?\\:\\/\\/huubiinoaa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fd4245f22354094144ee132244403daeb0d1da6d748fecde1330a769c83986bc", + "regex": "(?i)^https?\\:\\/\\/dasdasd78d\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "52f5ae0ec458803e98e559b6ea6996e6b9e076493a44203d0fa638de131a0b55", + "regex": "." + }, + { + "hash": "727180b9885b59b6aaa5c3715bfb81cacabb14fa4094edbfbaf216fcec38726c", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2d3820ac9aa91d6586eff7aca3da551ac6045e59c69f92a1056be476b9606bab", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0b306f0c10b2ef37e5f943fe2f4e48ee774e4464e77489da412747d43bca838d", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a7381265ccf88858a591f4b2bd1d9e357a9b89b202ddd1d4efb709713481dd1e", + "regex": "." + }, + { + "hash": "16e5233d7910a089246ec8be401ae3cb96dc662abcd7ee3ad6de280e77eff445", + "regex": "(?i)^https?\\:\\/\\/sjahs78222\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a570784c4a79d0d526a3173f08c104dd3dce3b37a73eba94af27f1d2e51b386f", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-umde\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "cbafca98ee3ed3a41df20e59c58683efc40be354b1bef9b9f9c3ec6d31e40dae", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9d8e857d63c2bcfc3c4aac12a02775715961fdd28208224ba3654c86ff430e20", + "regex": "(?i)^https?\\:\\/\\/sb\\-swissb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1a7a976f1820f5b504fcbd3dd1aa3976e38a7115bae8a316bf781f597142176c", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26451921d3e15869525dbade5fdaf9c60a65e7f6a09fb0899e31fdb84f3cf26b", + "regex": "(?i)^https?\\:\\/\\/spc\\-swi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "debcf81ca801a729fab666e80589dc75868acf1726651647bb3198c474bb4a93", + "regex": "(?i)^https?\\:\\/\\/hamidaaas57\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cf84c04bd46d6faa6dd91f244e7432f692657b98facf1eaab50e21dc62e23ef0", + "regex": "(?i)^https?\\:\\/\\/jamonopoly\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "194d522d16915894f68e00a7888d3d3aa6588e84b04278a5f8fab64e4ec07474", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a082f15f0b7a8dd43a848b1ad594fad28540a5557836bf5870e3313e07731d79", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "351111c643ce777d547fda8a99fbd5d03387967c55a7f3a0977baf92ff5d9486", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bf8b93c04a2854959f13e0f6d38946d1a0966ce6264e3904827f8659606e448e", + "regex": "(?i)^https?\\:\\/\\/stormstrider\\-thunderchaser\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "aabc88cbb2743aa36195d0e9d5802a40d01fd237a889bc468c158ee11269f613", + "regex": "(?i)^https?\\:\\/\\/dasdksa83232\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d1a48d715e686e9d82e2c8abb5172e606d807269c0afcc3954e0c2f662ab3bbe", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e3937f109e2030a5894d3de99643093d1da51824667e01d7d07b83f28f6f728b", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "babf9d2f23e99313746bcc4daf6f7d395ac0bf91b0d6434bb04d1aeb0f794160", + "regex": "(?i)^https?\\:\\/\\/huubiinoaa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6ad5d4e97a647674ca25baec2026980f05dd10739c5a4e11d37dc4330e0531d6", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "22a1e01338dc8903832bbc4566cc1ee43533e2043c8ef99d115a05ad58c0bc13", + "regex": "(?i)^https?\\:\\/\\/dasdasd78d\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6af0526482b5b3cd408b8f96c9d6df53233282cb3de99ea4d8649f96bd6cb556", + "regex": "(?i)^https?\\:\\/\\/huubiinoaa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "53b05558daac0c779e6a5c03360ae540cddef053efb084f4fbdb4fc91d3dfbfa", + "regex": "(?i)^https?\\:\\/\\/hmiidastaaar\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f965f11c2898fdf2eefd483d8ad3a27090277e67f3fd3e6c09fae83d16667b18", + "regex": "(?i)^https?\\:\\/\\/bvc434\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "477ca1747e066d85837f2d6a3f1628e591b1b199aaea182db85b7cb301c40648", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6ad1caebfcc592eb0da1e34cb800df90be9671cf3fab358268e722a1626abe7f", + "regex": "(?i)^https?\\:\\/\\/howtoglitchthroughwallsinrobloxblo1\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "36e78b83682aeac925d94b16bfcf055cefa112e8519c867108533ee20f03fc78", + "regex": "(?i)^https?\\:\\/\\/kotubryuzavregopada\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "093a22f1af7650ede1e8746bd5a7334fa09160bba67dde06cd2726d3170f9725", + "regex": "." + }, + { + "hash": "b0e17bc474fee1df19bcc43f7e15af5b625dc31bf4f61f0e7d35a11dbc9d00e3", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1e7fcce800eea0d8c765f7f203af341e6c46c542d5435be24291b3745e6ed9bb", + "regex": "(?i)^https?\\:\\/\\/sjahs78222\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ed1f8a7875074fd035963c8ccbbdec02e58b0bbfae3a63f15b6b726ab361db92", + "regex": "(?i)^https?\\:\\/\\/dksdys7d\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3f0a09f45a095f3c91c433b52bc95f17034c740513af1ef4c201aad30360bd84", + "regex": "." + }, + { + "hash": "6e41b860750b421097689aff6527eb1c5f88653b0591f65211f061f537d06bbd", + "regex": "(?i)^https?\\:\\/\\/bansklmabana\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b08fb349bcf5a96babc4ab6fe62f3e9a3e45ec24af34afcf6cef81ff35f15aae", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "22d75e9e5487ac3bf25f97c7b73c45b45f38588769b49f8c2e0bf25da5dd9e91", + "regex": "(?i)^https?\\:\\/\\/32739skasa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8e2b0fc6d76d2b3c56999ba37fb71e3be7de74e4eab635993c96df5ae853ed16", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "125982310d8d94c5807a264d0ce57d93d562ce4bca08bed932fe9cc1cca33223", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "becc04ce0df532fa08a876b8a8c960d997ebd4fe202f1b3dbcf6c5890f56de2e", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "13557fb8dbb51ee347376c1c91f9d7933424124d47c7c58ccc068d4ac126901e", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "56cbe1d238460141622fedaac2829e0c9b041fcdb352a13d51a06699d91f834a", + "regex": "(?i)^https?\\:\\/\\/jamonopoly\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d7e0a1ac9b44aff6a5fffd914168bcc247587d2949be4408875371d2e759c05c", + "regex": "(?i)^https?\\:\\/\\/signalrunner\\-frequencyminder\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9cae61321de537e7717068511135ae3c91459c76b073fe0fb6aec5eddc797a8c", + "regex": "(?i)^https?\\:\\/\\/hmiidastaaar\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "96709d44138b5c1c168e1c40125a7e933624ea18eed2a5b12292c881cff935ac", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "18d1e3ee91f7d0edb589c6b3913ccf647a8d1cfc68b6ae4d014877433820d3c9", + "regex": "(?i)^https?\\:\\/\\/wash\\-alhbiba22\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0ec14009ef0ae572d15e2250aa243f696854d9a7c88c1842d788419e3d6937c9", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ec8fd75e21b2f86f50d10cf2511f41e8a7dc03e7fd0852a5fe5d7540fbd3e3cb", + "regex": "(?i)^https?\\:\\/\\/dasdasd78d\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9a91d31294caf3ac0c12159799191e02cd480d064f827545d873fbc9736b95fa", + "regex": "(?i)^https?\\:\\/\\/metropolguncelyerinde\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fcbcc208f63c8ff6723c511eb4010f580bc11beb410d392f91f7bfd2edd70804", + "regex": "(?i)^https?\\:\\/\\/huubiinoaa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4ccb9687246df8910f12af674bc5e38b71aa4ea61c26b7a4d21855b654750a30", + "regex": "(?i)^https?\\:\\/\\/spc\\-swi\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "68807e4a20994d74ea4aad5033f84d4224fb038fb444883be090c3117be36e0d", + "regex": "(?i)^https?\\:\\/\\/thoughttracker\\-ideaseeker\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8f2db77b621e1c48e506a5e349d57bb19184953da49424a974ba713eb64e6fc1", + "regex": "(?i)^https?\\:\\/\\/lomunzabyroaclabryoiza\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2b0a21223cc3fabc3d1facf879153919673934425910803086e645e3e368987e", + "regex": "(?i)^https?\\:\\/\\/metropolguncelyerinde\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "13a79eecb777c8f2d647231f7fd72feec20a5355d576ead40334da073267735a", + "regex": "." + }, + { + "hash": "59f739d6fe66cc26c1844ede67f758c02d6459ba5f7989b82463e72057daa5c4", + "regex": "(?i)^https?\\:\\/\\/kotubryuzavregopada\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "35fc7e62f53ca691bbcaabfa7846d07cdf89c6505078834d61a21be1809d00e8", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4f5af33c0c5d1ff33203c93822b5807ac878244693e5a1973cb7dbed5c547026", + "regex": "(?i)^https?\\:\\/\\/fsdfdsfsdfjhj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5785eb4625885263d78a539247924445a5e1a92d8dae44ade5cbac6f2d5393fc", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1410ac70a9bcc3e67547fbf589124f63ac1b2fa463f2b08b693e750124b6e4d7", + "regex": "(?i)^https?\\:\\/\\/khk6u6868jj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "17c545e12bc9cf10f1313f461445b4aef183619ec79a8a4d88c4ababea357eb2", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f75901c64387e3f2ae4891f11bbc09f095afa37e8d4879baba6d6345920ca440", + "regex": "(?i)^https?\\:\\/\\/hmiidastaaar\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d2bd1b561eac80d68a88d5705b98e91f4c99878e063dc7d53a8f1a91efa29824", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f9218688f4ad6fdd7497865163cb0ef3397387488ae973a3f4d290d98844063f", + "regex": "(?i)^https?\\:\\/\\/wafa\\-bankmo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eaea4ae6041f12eab81cf7040c96a142ec9734736ba4688a978c5fa10f2f73d1", + "regex": "(?i)^https?\\:\\/\\/spc\\-swi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a259d9fe344410da0d8dcd941e56970119d6cf3b3e567d3ed307a7e0341d0164", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "705e53afc5e3010658f15acef7e962a32d8471d1198b1286c6322f0234901fee", + "regex": "(?i)^https?\\:\\/\\/dsadas7dasd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0a179c38f32c7e5eeb85e0c01dbc88d79f61d1e56c11ed55f477f2ab75032c75", + "regex": "(?i)^https?\\:\\/\\/sjahs78222\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fbe313263793ee541afa6991db84c20b29501af67dffc6fc62a45774f47cf6f5", + "regex": "(?i)^https?\\:\\/\\/metropolguncelyerinde\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "94b23f993db9368903b7dbd994d952cb351441ef0341fd00e0cdf0a8e00dcccc", + "regex": "(?i)^https?\\:\\/\\/saosa79sa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f1db7868e4be4bef0259bb5e38204248d046bf782e8ba2faf3481f0bd9ef3588", + "regex": "(?i)^https?\\:\\/\\/stormstrider\\-thunderchaser\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d09e4c37391fd0a4a054ad92a5b77a17fc1a7044c38b5561d3212c6954d7f2b5", + "regex": "(?i)^https?\\:\\/\\/hamiid822\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "388673f67d56f226215733208594be8a3d22cf601fd47c905d876b619e48d3d5", + "regex": "." + }, + { + "hash": "29ca178de7b7f8b4f1cc82b8a920b8675339b6318f7431a9ec609824676d2c78", + "regex": "(?i)^https?\\:\\/\\/togarywafa\\-bank\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "047b3c33fe688928ea448813925534e543ffebf8c49bac280bfc5c9efc20797d", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-bdpn\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "a4111af9550211947aaaa791503b37712f6eec9150b06f63a49ebded026e48a9", + "regex": "(?i)^https?\\:\\/\\/fgdfjhghgyusdyughsyugyudgyug\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee4c3bcb9856d89ada7e3279736570eff54b9affd32714fb796c3da7396c5794", + "regex": "(?i)^https?\\:\\/\\/dksdys7d\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7084a53337215d54ec7a03dc3f03cc96ac1b623e2292d3b2e048937ad992970a", + "regex": "(?i)^https?\\:\\/\\/nt\\-userdirc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dd5fbf29d71fc7f30bd90e5c1029f07ac4683482adf4b6fffbfbd4b878c05ca2", + "regex": "(?i)^https?\\:\\/\\/energycaster\\-powerweaver\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d19d8642bab2c2ba73171ad475d9394fb1b51eac8b8abd8e8426305fba6a227d", + "regex": "(?i)^https?\\:\\/\\/bansklmabana\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c358cb0c4aef48f532bd22232d87b6d18f5076d34c231c02d2e5c18b8a485d68", + "regex": "(?i)^https?\\:\\/\\/jamonopoly\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "54a6c1dd0503422c48e1af572cf8296820972fa0bf171eba9d97edd54d0c15aa", + "regex": "(?i)^https?\\:\\/\\/oklutnbgzarecasda\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a8a28c35fd22994ee2dadb2b0544494f67d709fbfc86709f7801d8818c0ece86", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f2b6792516a36f2b65e03f571d8abacde6453d1e956369615925c26a51963916", + "regex": "(?i)^https?\\:\\/\\/orsotoscani2ito\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b846bbde2059fd3051ebc60ed51425f8643c7e68fcdd0ab6e77165dcf9057b50", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxm\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a66da3994ddbf612a58780f27060e7572c4b5946037d1ff479851afda563babf", + "regex": "(?i)^https?\\:\\/\\/jkadgalkallla\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6a6b489ddef9c453a83c4acb224151fefa26a08c000c7ccc03235b379fd03453", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2d764acc6e7dd9b24325c02d737b3abaddd9866239185dd740727b6527aa7a26", + "regex": "(?i)^https?\\:\\/\\/netifsdgfdjgdf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6f6732855dfccf78d89d607405ead93c0153dec6e8b681a75a993c21ac982cf7", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3b0e988b3fb13fd2876f961bfd42189f06ba9fbf2c3bc19e71cab051a5f80637", + "regex": "(?i)^https?\\:\\/\\/neftgdfgdfgdfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e6294cbcf27ee373a8b06d3b392c554d15195d0dcf1b9bc1ed028c9549f2d514", + "regex": "." + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+lkaT(?:\\?|$)" + }, + { + "hash": "13b444b54effac72aa3d64947f4b2ebcd7edd188c93eca87d0d59728b9968cb7", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "440c76ff2c5219673578bc364651cf6f4e00e793b91d39736a8d226e57484da6", + "regex": "(?i)^https?\\:\\/\\/bfghfghfghvdfvd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8cc83e4adf1f77a6a03d668dd988ecabd601dda0fb6b0794f349bc3ddf172e5b", + "regex": "(?i)^https?\\:\\/\\/danemoazaza\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d1a7780842ca629fcfc6baca1d3e999bc505c4978991a6df9d5e5849d6828aa0", + "regex": "(?i)^https?\\:\\/\\/netfidgidfigdf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+liiy(?:\\?|$)" + }, + { + "hash": "049fda3be055e50cb04ab1358b5fa5e4f8b5003d688e9dedb51c90ee242643d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+porala8119" + }, + { + "hash": "dde0dab841750393ed4aebaef2127f7fe6ac1a0e9fde86e7acbf2f24c713287a", + "regex": "(?i)^https?\\:\\/\\/nzeririgdfjkgkdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bd2832c6239c688849274095cc0e1a85609cca650e5f8b363f22cff5e8d03081", + "regex": "(?i)^https?\\:\\/\\/curmysol\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7acb41e9d2ea16a8787630732a98cea044999e51812f473287dbf3718ef85c67", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfgkdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ff4c5ad6490a8275415551cac88393923222ad7d24821090f0ea7bd91af705c6", + "regex": "(?i)^https?\\:\\/\\/mail\\-102690\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1b27c9e4914490bc12f581bffc18ff514e7d7a98abfaef398276197fd83dcc44", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "abd3e1895a0aab0fee843dd94525b751f06b2d400a7f6e38aca7e194bd251fd2", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7ae34ce86c82a3dcc52378e4a2a61aa8d40c36a7583346e98eb07ef757ac38a0", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "81f2783360f523528daf133b0cfabf94e5eb3bc628f03e73fb7f5fe78c0bbe40", + "regex": "(?i)^https?\\:\\/\\/sencorplaex\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "81d4e6eaff5df7f2630cfc9d0945f1bc63c39eb61e252269d6652b40dd4a3908", + "regex": "(?i)^https?\\:\\/\\/nerudfgjdfjgdfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7638c7ad090e62cb73e5ce1de3d7b799b9814cb3d9bde871648c37e7845d679f", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "abb0295f48c0400c751c380356a5b2307c578faa5e1683039fea6c92365caf2e", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "aa529133d40ea7313bbebd0ab890e2d642b203804ab8277ae577b5b2b9e15355", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "472546c1bc35c6fde64a34e0c09bcbb810e0923b831ae46b070c8bf2914fea58", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "71eb70ddacfedebc76383959d72db106b7f055dd660452ff333071f6ffd1d814", + "regex": "(?i)^https?\\:\\/\\/bfghfghfghvdfvd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "35edc51f7778e73324e17ce02d395d5c5d699df08a5eab19f6a42fd0ef0b8e7e", + "regex": "(?i)^https?\\:\\/\\/kerfjdjgjdfgdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4a11afd2a36040bfaff02413e9b2964bcd976ddf903e90d98f21aa744bb156ef", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3b5b4b60a19946bad5f326440af5e1e6b398b80bc606f2600290ceeb41ca13a9", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d064bb3d1591c687c7b1e8be5d8e4b68919ba150f7044ccbbd04710b9ece144d", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfgkdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "60e1595e814f3c8ed2474f5e84e20560c67128c5460d23e018c49714ae8f29e5", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bd1d2861c578fbd44857885ed2a27fb07eaa00c78242b6b4fe928070535e4710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+errors[\\/\\\\]+validateCaptcha(?:\\?|$)" + }, + { + "hash": "031f586126ecfcfcb4a456f7cd339b56142e353b5bb50d715150c9dd3af039e5", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4b6130d46e20d5cb9c8b993d22441b0aea4f1f123b9022651ada8623a6eab43b", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4e58bdd99442cd746657166956a9e534daed86e19799703ab798cd3d15cf8c89", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "323c673067a57761920141e859312fd60881b17c69ebdf9c0184fe2bc859e55b", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3a5538db4a6a3b8cf9554c3563ac1f3650cef56c2f49b6b68c82c623aad7f21b", + "regex": "(?i)^https?\\:\\/\\/nzeririgdfjkgkdfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "995f408b806e9315299d544929316ddfa64eb92b32e2ac256a2b345c2b208b60", + "regex": "." + }, + { + "hash": "278c95cf3862e33f6c67d5df6f4d560a6364d7172f7479d59c7c924a0c6b603c", + "regex": "(?i)^https?\\:\\/\\/app878718718787\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c2e88e811c9eb2c1a6ef8fa0210bb937c66b43ad7c78719e67d415a49a895c6d", + "regex": "(?i)^https?\\:\\/\\/nerudfgjdfjgdfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5f19cba507c7622a2500b87526a02eddc62304fc56715f252db10e4a8adfdefb", + "regex": "(?i)^https?\\:\\/\\/migosrobloxidcodes\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d575b02d8f57985f69c8c319c6b688623e38a148318a6100098767259d8e49a7", + "regex": "." + }, + { + "hash": "e5e7d290df263971f9f69f75509242f03feb19a4b529015644d0235b1d2644ce", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2a12b77ce3da5db07a3d4d7fe4e799d7d22c30ff2ba66aaf9e2778d17a3248f0", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "02b69df6282e475bc4f3e788590ea0bd00bfe018243233c5ec9cc57e759fabe2", + "regex": "(?i)^https?\\:\\/\\/bfghfghfghvdfvd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "84204af0a57036be62cf5b2ced5605ed3f1e8b835c28732c5beb9d879e4087fa", + "regex": "(?i)^https?\\:\\/\\/app878718718787\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cd504a260fddd03748b5d767069d09b962abea74240fa2c2ca430f6492720140", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpzaw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "23cef94da35e41f331e31732428d45fa9029f2295d4f8ba5d9d22490fe084473", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+TPS6TA(?:\\?|$)" + }, + { + "hash": "fd75e0a8dad7628250f4367c61fccff83f7f8b347e766e1fba2f449394823b66", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "eda9f4beb38e57cdc90c262d7fbd5484d014c9f15825ec1e32387b664b8453da", + "regex": "(?i)^https?\\:\\/\\/deardardaear\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e24eec2d6b52aeb1a079cadb7fb10a7f12d601756e5932fc2a400053823de22a", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ec1cff39583aff4d6f2d0a1b5684147cdb87d882c09431b765496b7ca04d533a", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "00bd100aaee17c3369adeda92cc7a072bd3d8f4f7c99037dedf450e8aa8af859", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "dc271e0f7bfd3717d81f6c076c03462dec11bd2d80305f4af570ed6349986eac", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7bdf7e148b90c55e22521962846164bca4dcee2d9097a46d664d224f93acf11c", + "regex": "(?i)^https?\\:\\/\\/njjejgfhfgh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "adebc6d1be51c3a5350e7f837c0d59c41e83ec95f56cd4196fa43fe7a1e6576c", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfgkdf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ebc1a7b4f4e78087e939b83fdcc8b0416bbe1fe547f099c7efc917b211e0e589", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3e3e52b882477f30fe32307052b10ce333c7e0bceec7335ca7c0d64c9749e687", + "regex": "(?i)^https?\\:\\/\\/deardardaear\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "06ed16134c1f4427254089acde83689d1260c95489315f25ccbf81cd55ac34c1", + "regex": "." + }, + { + "hash": "0fa3a5d7c12a874f2cafdbc69dbe62bd29970d96846bfd9350f2b9cb622e021d", + "regex": "(?i)^https?\\:\\/\\/nertfgdfgdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a8334ae9aaeec9df46bace9802c1420e0faec13dd34ccdca945bc830ae3b2a0e", + "regex": "(?i)^https?\\:\\/\\/cadnedfzf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d28f97b6f3504710678d58290e763560607f8f50e257486ea608f0a3776c2287", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "eea57f132271affbb55261198332de9af0c064c8d69a9bca231be602946d1b43", + "regex": "(?i)^https?\\:\\/\\/app878718718787\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f7f9ce1aa72d80f406a415a0a237c41c5a894800b926b9f2ab41762946cd0282", + "regex": "(?i)^https?\\:\\/\\/nertfgdfgdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "51c69a72a8a3f8a4367cc46f4a5ded2d2bd4939f48df2078947610e4c9d996e9", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a851fd5e2f0da3b6beac04e284db8f2fc264f4f0c54068b42c2b404e3ed2e55a", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ce43b7db8e07d1b416a420a2f9e3d407c26091ea5d9370d7ba42e6d459c07d87", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "be77f83a8c8bf7b812d807563be14ac46bf11793e63392ad83d658869e1a7386", + "regex": "." + }, + { + "hash": "246513fd9e5037e39e23f34ae911d919b160319db543a86284262f2cb47abb2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e868911c59a93346457712106ffa7ead291de0e7d81c8e0aec47ecd63299371", + "regex": "(?i)^https?\\:\\/\\/nertfgdfgdfg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d713564f47599a036f23f652d3d431b4eda11902f0aa7cc10170087b371abdff", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8bb9abb75c0a53cac33481a80fb3473ee4f5da0cdfa99879083e91181dea9ecf", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4f5684cc37a1ff3f1f1d9aedf1e302c95b19508c505fa41b033d6b1516f09e93", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "710289619af2c4f280f3fdbe0abba3daebaab1d7bfb85ae4b16c1ae33ee799fa", + "regex": "(?i)^https?\\:\\/\\/sencorplaex\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "707944ca257c5dc72524d9a87c6e5ddeda10322285740e69c29e39a19821ef2a", + "regex": "(?i)^https?\\:\\/\\/netfidgidfigdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c785d41933298f6bb36d18b45a1d5f8710306407334f378aa7887c58c6075f7c", + "regex": "(?i)^https?\\:\\/\\/nertfgdfgdfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "46aaf157379cb8a7bfb25f24c6e29132c64786e4ab37fce3ac52006298c77ba9", + "regex": "(?i)^https?\\:\\/\\/username6\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "913bd6082de51e0872e9cc8c41669600e5665984d41f39553ebda6cb307df4c5", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "753456af60d1406c41c9b8f8473a22c9824d50d504e58d7e56ddbfca7b1aac25", + "regex": "(?i)^https?\\:\\/\\/netfidgidfigdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "37e4777502466695853649fc9d7ff84ea818703e10551cfc311a7901fea4a331", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eda98221df9b9b84002d26438eb5053cb2d534414f235d2ce25d528221972157", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bde32eefeac928c95eb9d64ad9cecb7a3fe23d8f6ce9b99ce3a38d69f357f86a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "3fdde3cf9b4aa4bae903475c8eea263e472474f8a360a09f92a57ef8c1c3d46d", + "regex": "(?i)^https?\\:\\/\\/netifsdgfdjgdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ecef634bc8f4e77b608208a7dc4dc96429f06785ec6fb4c5473b6a2e0999adf6", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "32651ca633b3c5db66c2ce26c84af6f6722d0bd37625640ebeaf38f6d61ef2e0", + "regex": "(?i)^https?\\:\\/\\/neftgdfgdfgdfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e8843372af2a7a4322d118da521479473b939de4cb114ccc5b034189ba3fa0d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8612e626daf5a47aab61ceff7d7664dfc85911e75aee5b099914d2c3f114aba1", + "regex": "(?i)^https?\\:\\/\\/netujdfjghdfjgdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "932ce950b2016cb76ddc60898bb6c38d8dc7bc8b0bb014dd6470140fbc408925", + "regex": "(?i)^https?\\:\\/\\/danemoazaza\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "865eed25bc9a6e3c0c07f42fd8010b0050bd5af9c39b04deacef93058362ba8c", + "regex": "(?i)^https?\\:\\/\\/kerfjdjgjdfgdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c14e25555235da1774ac2e7358c0a9280f57147975809901997f920687d9d003", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d784dd76aa93cafe51519b87cf33b3a84fda178cb6c3a252f0e3747c08b6d090", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "40733dbccf5ca255abdf4c54d99db397eb67eb8688df307eeb9d1f8fc911c304", + "regex": "." + }, + { + "hash": "c3cbf8017d630de358ed442a02f0d156170b4ab9a0998dbf026085c0e4b94749", + "regex": "(?i)^https?\\:\\/\\/netufjgfjdgjdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "38144a879aba5838cc1d2786cfe7c122786f062ae0865a8545a7b1fe419da5bf", + "regex": "(?i)^https?\\:\\/\\/neftgdfgdfgdfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6c4e0f8825704d20ff7d72d6bf850a3a23c032d819a815260d21abf7df90d31e", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "94acaf093523a9decd9433523e4cf60d896f748b3d84583df0d8b4bd5a3c509e", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfgkdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c4e6b489fbfe82f682e372e90bd1c6d8223469d79092b4c380b18ffd47a5d6a6", + "regex": "(?i)^https?\\:\\/\\/netufjgfjdgjdf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7a284142d410c899ef315c45be51e8b528438ec7e979851730373b73853207e7", + "regex": "(?i)^https?\\:\\/\\/kerfjdjgjdfgdf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "19abea6f76fa2e9deb44174c6e267208f76652be0c1e01bff6cd5ee80f7e7454", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7df545937c612445d7a2a33d2d29f7ef680743fed2aa774f2ec86d2282173b68", + "regex": "." + }, + { + "hash": "19b58368974d98e20052ac692d28226e393503d12dc013f66ed5c490b13270b0", + "regex": "(?i)^https?\\:\\/\\/rctiqqok\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4624bfddb6a7843c93e42513c1c43d3773179da70df0ed0369f554d6b3462ace", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cddbcd1bce39e2e5ea37e136e8eac3e9de33af40dd3d9fbb96dceea658a06096", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8490a0420b71fcebe8c614c0aba4e6f7351a999646343cc2347c307145c0a6b5", + "regex": "(?i)^https?\\:\\/\\/njjejgfhfgh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "084ebec828b28a592355cf63f77f8691fc1f6dbcf16ee43a1054f9bbf22f497c", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7e8ae21b9f212db7a74c0c7943e43a03c69d9fbd948c0f8a11c93ec69f05a31d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6003[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "656c17c2f00a7d166db193fb110c71c7eaa8283a2ebebc51c8d463f6c8290489", + "regex": "(?i)^https?\\:\\/\\/danemoazaza\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "80ba70e71bcd7303f9aecb6a03ff4e1b5e19d786a03ac057d128cb7ed071082d", + "regex": "(?i)^https?\\:\\/\\/danavectd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "13ef2802bcab7d19b5a46851633d42d45632a3ed929ee1b56686f810831007f6", + "regex": "(?i)^https?\\:\\/\\/deardardaear\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e7df95828554ce09294f81ec36ff88e285411141fd5469da07f72b3d453cb2f6", + "regex": "(?i)^https?\\:\\/\\/nzeririgdfjkgkdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f2ecfe642b7d526863e0b858f459eb1943cd0630887fccd4023ab1905b02359f", + "regex": "(?i)^https?\\:\\/\\/netufjgfjdgjdf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1a58f77d9817509e76dc6ea359e8cae157d42b8922264bd791eeb7735e5db8f0", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpzaw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5776fa1527d331d41e06b6bedd1949fab389b42902d0d164e07bfe8a82674bad", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "676e04ddcf1c89a4a2cca2c183040b6cf00330226c34ddec2f949a34f30781b5", + "regex": "(?i)^https?\\:\\/\\/cadnedfzf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7447c611a70c3f99db1936e9545a6c3caf1e8ce2c7cce425579c3c34a22b82a5", + "regex": "(?i)^https?\\:\\/\\/netujdfjghdfjgdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e899e4c3ee70294031c2af4318e89825ff97d589afab166d9cae8e918a764303", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "febc52b15b9966e911bd3bf0b170cae6742c84ea947a9f7cb54d581a36766f00", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7eca9fa16f0481635fe44aa72cee6a021d2bee8c68d7644aa665a6aab6063b84", + "regex": "(?i)^https?\\:\\/\\/event\\-top\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1a36f41cf73535d79a2f271fba29a2265d6fb9bcd684ec7e1433e2da9178202", + "regex": "(?i)^https?\\:\\/\\/enrsdfgdfgdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "697b08cf20223e50e6f0d9529b398269a70b4fcaf0018d3ef29610fa57088f7f", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0766056ff49a1341c079de3baacedc1f58c8ff82cb8bf282506dd00829c02de2", + "regex": "." + }, + { + "hash": "fbc1c668538b3ca124df0ce521fdf8062284226a8a2a9e93db5716f692807813", + "regex": "(?i)^https?\\:\\/\\/enrsdfgdfgdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6fc5d41062693f72ba14ce9fd4bb8a7d83bdc8afe3b6c40fd627c8ee0ae725e0", + "regex": "(?i)^https?\\:\\/\\/neftgdfgdfgdfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "314ce817821c9f5987f78e095ad4c3d5a41b0b7be9695411dbd2b80ffff4d8f1", + "regex": "(?i)^https?\\:\\/\\/netujdfjghdfjgdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "adf676fe3ac1fb945099de3bd97056409ef80c284bc1d492f7c604d67dfe95d5", + "regex": "(?i)^https?\\:\\/\\/nertfgdfgdfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cc0f2610e9e2af010ff1da814951d8c7c8a450baa9a7d32f5f45c12c71141f11", + "regex": "." + }, + { + "hash": "550fe62bef4f0181732808cf1fa62af6b62a1ce370ddf76785f96596d7aa238f", + "regex": "(?i)^https?\\:\\/\\/sencorplaex\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "35e0390dd8c21a0617d604a21e10fa28b665adf3c8aa9379915dd03bc1c813c2", + "regex": "." + }, + { + "hash": "27a2db8d6c281e28d8e361840ef28f70dde91a5e1d86ff7055f6ff7e05317211", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9b13882b0383c9bf30d71b3069b3ea4fd2af60e4d1383fc70d608496b44a8571", + "regex": "(?i)^https?\\:\\/\\/bfghfghfghvdfvd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "10bac73d196db1d8e3f15cba8f072c113c810f6a09c114a5ce9e5560f3b42012", + "regex": "." + }, + { + "hash": "b5e6ad1780be621eed9e0c5ae8b5fd947f2d1c46c7a18503a5e2ba28a09ad35f", + "regex": "(?i)^https?\\:\\/\\/danavectd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "49d9d11f1ef21dda63e329d4ca2e6e785e84b9ce35b141ad0a386abafb8192f0", + "regex": "(?i)^https?\\:\\/\\/kerfjdjgjdfgdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5de03ba191340be7036fe43f4bbd81c5427c190f15f636093cfaec590d245fa1", + "regex": "." + }, + { + "hash": "8f43cf6f69db486870fe34dc9e9f9ed408e6c69f2ccb1476edd83f924197f42a", + "regex": "(?i)^https?\\:\\/\\/njjejgfhfgh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "931ad9ce3e2f39f5ce4f3e6dc00f1c2b4d8cfa0192de0d25f5a92c32bca0d5b1", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "aad2733bec77e95b2c4c2c4bf1de98c48e96c4d84ddffffa3d013517f88f62cd", + "regex": "(?i)^https?\\:\\/\\/event\\-top\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa530106508a008a68789462113bb2df3e40cfbeec88d0b9b69204b67d66f797", + "regex": "(?i)^https?\\:\\/\\/app878718718787\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2e72e19ec2d55d11a098091c2cb33969e5b767c2a27c2a19bb4cdff952ff2fc2", + "regex": "." + }, + { + "hash": "d3b25b3efc1f2a20ba941767443eef0967d2208089a2c1a6972d11cc79add5fe", + "regex": "(?i)^https?\\:\\/\\/nertfgdfgdfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b82f47d87f991fc6cb689b0a193af04659ce15dbc77cffd157eb4f69b8b9d8de", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "04c3cec04229343bc8ad27e514ebd953fa1f1f945a1f81260f6fe37c1e228a92", + "regex": "(?i)^https?\\:\\/\\/neftgdfgdfgdfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b199a2f43b4b7c2d1118937c7ebf144d2043a522fbb747ae1f86871da5942066", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+download(?:\\?|$)" + }, + { + "hash": "27def63c7189533bd84b3c6230a90c8c985afed859ba59b36f30e4e9f68cae5e", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f0e01014ec930e0967c727b048ac1a0ea462888eac776c3ca69c0e22852bd1fb", + "regex": "(?i)^https?\\:\\/\\/sencorplaex\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6c3425fad24dcee2505eafa2c76a11dbcb372aca0fc0d4e79e637bd4f4756e95", + "regex": "." + }, + { + "hash": "3f7f92f97fc53412cae4a19d5cec3cde1dbdf425fe00ebc9246f16e089da02d1", + "regex": "(?i)^https?\\:\\/\\/deardardaear\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "faae2f0a7898cdcd5b5781d7ee693b1cfd608fb63e6bf713c3309261fd889bb1", + "regex": "(?i)^https?\\:\\/\\/netujdfjghdfjgdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "37be487179671963b34b74e818361bfc7085c3bf11a4b82448eadf9940ceff6f", + "regex": "." + }, + { + "hash": "961607340c14053ef1664edecce8e4251c597ac97e4c933a3575dae4ae145104", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "49f021144226aab8ba6a668349b1c8666561c68f7935f1134a765c8d207d262f", + "regex": "(?i)^https?\\:\\/\\/netufjgfjdgjdf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8f38f73af4e4fb2ff33c254fb9c929a3cf175457ceb6201ac18b53e562b6d95f", + "regex": "(?i)^https?\\:\\/\\/rctiqqok\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3722f1d40b1f125bbd98bf97908516de280dca378fcddc283177513710f9ad45", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "72ea0f72973bcd9cf6e916bb1812b695dd6e2fb7bdb6f36737109f2a28068b58", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b2f6d86dac24a84a1a98efbf06e9b868dcbf7b3b312383b748a192738e826", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "edbc1c2df387c8ac65e180170d8f8bdf737f7530465962d18497192053f83b6e", + "regex": "." + }, + { + "hash": "c9db1d76c2411ab7a3265461372ebf5e94ed9e9f593a7802323ab5036eb62687", + "regex": "(?i)^https?\\:\\/\\/danavectd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+lkaT(?:\\?|$)" + }, + { + "hash": "d2633e6dad677f1cb0124fbdfa9cccf27e1ac86b4b78b14243eca4ee478ec8e9", + "regex": "(?i)^https?\\:\\/\\/hello\\-world\\-white\\-resonance\\-c429\\.investec\\-site\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c9fe0a8ea22772d36cc4703fb46714c8750611a396d296ab6ae5d8df9a5efe1c", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3bbd77b934f703cbeb4d17cbe884ddfc8d11424cd66d47be1314158e9381fc15", + "regex": "." + }, + { + "hash": "dc1af132c6e8ed6b5b486841f32e0cc263739e9d55d337f5375c55f3b807bf00", + "regex": "." + }, + { + "hash": "4df5529c9e20d965f607d84b13ee227821e372204adc6eb00ca4b702ff0909d8", + "regex": "(?i)^https?\\:\\/\\/attcom\\-108246\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "879a198e0eff7b52c6694fb42fad22b1673d8c11d80edf21fd4b9b03d6bc1f9e", + "regex": "(?i)^https?\\:\\/\\/danemoazaza\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r6li34(?:\\?|$)" + }, + { + "hash": "45c589199d11220f10364babafe9108e2bdf7a2a992f1ca6cf2de20a3adcdbce", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+liiy(?:\\?|$)" + }, + { + "hash": "ead798fc5b350311f64a3592bf80062c4ccaac73c95da039f31e2716b955a1aa", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "702a27bc2a96b5c8874f169bbb9d985db453732654910753103c16fb9b97694e", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2eb2a0baa573b9fa940bd236fc1b1a70f748ae4f9d2e4985e532f5c6ccdec976", + "regex": "(?i)^https?\\:\\/\\/neftgdfgdfgdfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2292c183c6c7561f9ff50a0909eee2de3f3d380fea6229367c8e14169abf2b6c", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c4f24e79dbab43047c4da00df7e74dcd5cf6b768f03631c2b63523c136e9a4f2", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2613ed6b936bfd43d7d34a17a926a665d796e11e4b40383f459b2ac72c7627cc", + "regex": "(?i)^https?\\:\\/\\/netifsdgfdjgdf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8da8291bacabb10a824a7e211efb3e7b81f8451066186947daf6ac2e9d37aad0", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cc6a91c192549c90578150645b7f97d6a0d6b9f33b0a7447646134c7fc0099ec", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bd8132922f786b618eb4d54f6f4d5560dc6058f348d44752be68722e877d3aca", + "regex": "(?i)^https?\\:\\/\\/netufjgfjdgjdf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "52be216d827a8a78c4a6ad958cd0f4854a77e6cbe77334e3ad0dcb1cef19fccb", + "regex": "." + }, + { + "hash": "426db386d98d725fd8d522cf2cac1b3d8ef2f9cbfa036cb706839598deb68990", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpzaw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7146a0de8632ba850b389c9a435a7e567fa2aa1a363c8b3f1c605dc450ff9dbc", + "regex": "." + }, + { + "hash": "03df4f4e5584462a21f581acaf0dd2e28efd01e57c488ba009f7c5b473e3c479", + "regex": "(?i)^https?\\:\\/\\/rctiqqok\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "64f1f4097b001be3dc569e30f6b6e87a9c6301de82e51d0360162ca934a5cd44", + "regex": "." + }, + { + "hash": "9d30ac8b3f66a716156e4f136d20170b18a3d15a55104a19dab740f04009b33e", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e7dfd99eb419a5295666982215b3526e1c7335d44323942db1d694651fd98f87", + "regex": "(?i)^https?\\:\\/\\/nertfgdfgdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bb947b8aefa45e4071a746300efdcbeeff7ce940fbce029f62e0dea03909a71b", + "regex": "(?i)^https?\\:\\/\\/danemoazaza\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8c15dacc7d92493dfedb119028f09750ef4bfd9e58eec1513583674e49af9450", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "33898ec108e9315c2a75d5c7bd7648fb8826d2cf3718c5ebb1a4763c1a089571", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5dbfe025ddb7f8dc68cd891012db35dcfaa6c34f42ac7cb80b6382c643d1198f", + "regex": "(?i)^https?\\:\\/\\/nertfgdfgdfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9686da66b7cb21459da7c50b7879a6f41f25f6792ac16b978cff696c429199c0", + "regex": "(?i)^https?\\:\\/\\/rctiqqok\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "993527dbed882ace6f0f2112de188148a3bfb586c42877f019f24b9551c21bf0", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7bdc11469d5c6d629dfd4f0a041724b39b7ddb97bba67dd03968de859a24d0d4", + "regex": "(?i)^https?\\:\\/\\/app878718718787\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e5daa65360ac2da3e7c112c2ba0bedf81a18d3b1835a27ea225bc9596a227dc6", + "regex": "(?i)^https?\\:\\/\\/sencorplaex\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "69b91c522136965863af017bd9da9fded36a01fd64b3c51f7018e0d07061fbe0", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "06177c78d4c77e81c3830ea0dc396cc9b35b6b2eb549ca1bcbe94573835727e0", + "regex": "." + }, + { + "hash": "6e81c3840ec77f8f6812c4b28a9b9352935b48f998cb1274cf21033a05012b61", + "regex": "." + }, + { + "hash": "775b321e25557531829b0017e08de1c1dd71e85a5db1229739ccd8d0102a70bc", + "regex": "(?i)^https?\\:\\/\\/danavectd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wzx61f(?:\\?|$)" + }, + { + "hash": "9d658c1a5c5d9f5adc9684feaccb76117f1d6bdaa2b2015711aeb8cab3fea528", + "regex": "(?i)^https?\\:\\/\\/nzeririgdfjkgkdfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d7dee876b98759a1f4c16c346ec3534a15622a779072a039d541691619dc27b0", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "eeb74517c22e42f91204d71838973e35eb7dfcfc3479a6e485feb788f80d1e4e", + "regex": "(?i)^https?\\:\\/\\/kerfjdjgjdfgdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6a0fade6be14bc5278ffc200190a6c41b66a3efc54374f9f32f02ea267ecd328", + "regex": "(?i)^https?\\:\\/\\/netfidgidfigdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ddc5e4bb760ecf566536a005ff881721ca2d7913cbcdf5c721f8c4cf6fd04b94", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f6f778ea187a8a4bf31f1972b56e99f15fcbe7b458ea78d73fc7228f241141f8", + "regex": "(?i)^https?\\:\\/\\/sencorplaex\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f13179155e6d4b600042704625006e70b08bd21ef314bb65b95f4444f669f38f", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "905fbd114c4cdad3b73233344c0f28c952c75cedb1d8da83be0210d220dbe474", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dd7759d57d5472cc3aa7f0fdc56c96745ac00e2570a85c23d34db620c97c7f48", + "regex": "(?i)^https?\\:\\/\\/netufjgfjdgjdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c6680da9a8b26a13a18b3ea4e5b284ec990859bf7d9913ed1edf8903b58ec85a", + "regex": "(?i)^https?\\:\\/\\/netfidgidfigdf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b82ffb6fe5635821f49708a51277a751e850b6e6fadc3f3025ca83d47bf1e2de", + "regex": "(?i)^https?\\:\\/\\/curmysol\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a6e322564a8cbf4c4c39180a70fed2c09ac13e5266aa1cd9b029c173b363ceaa", + "regex": "(?i)^https?\\:\\/\\/nertfgdfgdfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8b246445dd5486170791703f5d6e8af6802d9652e0e0de5bfce3d48787962e27", + "regex": "(?i)^https?\\:\\/\\/enrsdfgdfgdfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8723715148876766be397aa997f6a7d286d93a5969af8f03b612845721d63637", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b90db9ed831bbdf2513df9ef3e70b9bf3b3ad1d426401de6c7997ba9cbeb28fa", + "regex": "(?i)^https?\\:\\/\\/danavectd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "44bd636b1e2d7e620b60f847dde0550b938976144dd607528205de821da22e28", + "regex": "(?i)^https?\\:\\/\\/kerfjdjgjdfgdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dd23e0b975916e10d2f6379fbf196727ba3be5c04df6dc38e5dbad68b85bd1f4", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "70052a7e558aa8fdf04a5ae9533ac0a066fd0f21e6c0b31d7f4f2a6548ace3a8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpzaw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bd1d2861c578fbd44857885ed2a27fb07eaa00c78242b6b4fe928070535e4710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Drop\\-Womens\\-Blake\\-Blazer\\-Natural" + }, + { + "hash": "c6d59dfd45aa7878cdf9d537a009bc1a3a0985641f41a49dec1cfca6c15b6d2f", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b7af6c2d05cd0980ffb27bbe2b7378d66d81d3a5b5e0fc74e5967fab96d565db", + "regex": "." + }, + { + "hash": "134c17a63ce5a9832092b8e1e896c73daaa98b353eb4a7ab8f204c5ed5f5da8a", + "regex": "(?i)^https?\\:\\/\\/danavectd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "09b35ea9ff68fe1839034c4f079df44f8878cd8f67b9f7fb3ab8298499b9da2e", + "regex": "(?i)^https?\\:\\/\\/netfidgidfigdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5b36266b7f7d24f93ea8b1b5774ee65cf8b8b082a0f8c88f957d9ecced25ecfd", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfgkdf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3a673427a62af0211e293f1f45f3657843c54a09cfa901e75352c8a17f74f06b", + "regex": "(?i)^https?\\:\\/\\/netifsdgfdjgdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3bf090964d67c064b00419426f3b60351e1e39a5ee7a3c524b680f340ee18284", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fa5278628dc76ddd1039380f9ffe7f96767266164811a2d26cdef4ed274763b3", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "71b6153a5938f4a96fb29ee081d0823d43033e0d23ad5026b6deaead89e786c7", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "96901df24dc6f0dd98f53c95e499d003458bdc1c97b0d56cc31db60040543744", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1e1549a74b4ab4501359a69d2eb9677a54a0cfb014e9324ee671baf636e4b501", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8e3576e20188065bca3e384110d53eae4d25c2cedd45846d27831722803799f1", + "regex": "(?i)^https?\\:\\/\\/netujdfjghdfjgdf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f7be8a5e0ea5a87c2d6a1eef7f3dd05f40a3c660823b63d6e40b4a4a5aa2d244", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b19616bf82bd92453f95857e810cbb0f8647756d530028ec106a66cf33e8e2dd", + "regex": "(?i)^https?\\:\\/\\/nzeririgdfjkgkdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a0c0041265e6251a23d73501e6e7ebdffc0c821a0c12d3cfca6628061bd540c6", + "regex": "(?i)^https?\\:\\/\\/nerudfgjdfjgdfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f41ba7b0aaaf0e17dc1ef98774f0a3fceb05bd93e01de00ce753b9a3ff5ed0c9", + "regex": "(?i)^https?\\:\\/\\/danemoazaza\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c04501b69b4af64ca75e19d06cb096ec6822241491441698927009b7e39491b2", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c003750817237d76432ddd7237f21447d250ecb7f266840b2dab35f62a5360b0", + "regex": "." + }, + { + "hash": "93a508f80b6fc7b61027ea654562d88b0cb36a7100d1a6d317eee56efa93ed36", + "regex": "(?i)^https?\\:\\/\\/curmysol\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0f30b3d15086eb4578c73c9d8bfb6003690bfe1d86c731b2ee19e75d6872e591", + "regex": "(?i)^https?\\:\\/\\/curmysol\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0cb22bd1b6e9ccae6d1b73cadf97c83793d309037b9cb6a10ed64391207896ce", + "regex": "(?i)^https?\\:\\/\\/bfghfghfghvdfvd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ef7531fabf4a85e2e9c7cded741806d1273ba2b287400fdf2c2e48ec4375ce4e", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "22c2020376cbe4c960586ba86f54ff05c26bf92c547ef465aa92caf87c0200ce", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d54785bb587704391fe1c56bf475bfb760cddda8eb7f2bd1b092401d0f6318be", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a988607b329e81cf3f22d38f6e26ce8eb935cb5fe50a7a1f53fd515cae964ecb", + "regex": "(?i)^https?\\:\\/\\/njjejgfhfgh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "dfc6f767b70fa702d66057ea954834cff10a37cacec5bc7eb79f0f71e0454ed2", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e3cdcb410f8771e8f0f4cebfcc82bacaf6cd191a2de0e4dfb814847be41c9922", + "regex": "(?i)^https?\\:\\/\\/nerudfgjdfjgdfg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5698aa6607f25930da91f80889e48ab5edd8e53d009058e99ed2154f900d0111", + "regex": "(?i)^https?\\:\\/\\/rctiqqok\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "042b6bc73cc37641c106fe87cbde1e0a2d54c5247f55152bc3163ae93bf1b9b0", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4ccbd7c4a2349c2882cce359998aaeda7840f8a06c23a25f2710bb27f78d9bd8", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f89bfaf2f5e90290458768fd59b0df2747202eb8dc6d1e771bfaf62ba079fcd0", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1617c1cab74dbc378539b417b55dcf64e512c5354f915e12bb0f1a1dbbc1b14b", + "regex": "." + }, + { + "hash": "868d9c114d21c605e557c35ac3b959c9b4a96451fbcbfabb62d04f8eced17027", + "regex": "(?i)^https?\\:\\/\\/sencorplaex\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "10ccc22b5b56c9854bff2b5e1029438c1a8fb6c76ee8e391cbee6c1efd986e99", + "regex": "(?i)^https?\\:\\/\\/danemoazaza\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "649f7357d6019cd88c1ccace2aebdc62db543b165a8921e4a677d248176c6b32", + "regex": "(?i)^https?\\:\\/\\/rctiqqok\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "83c0c179f1b638062c9aac33c327ff1da790ccfd83e158f5fd67263bb975d0d9", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fe397457a4519ca99e71fe20e99211b0a39a55a1a70e768fc9ecffe0a354501e", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3ec96927b11c5c13681281686230f7c8d2df084eda7ee700ec748402a278b6e5", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "06a086b385e725cfe54dc23e856e96438a96e6aab2b19a2c2e55774d8f0832da", + "regex": "(?i)^https?\\:\\/\\/njjejgfhfgh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f7f02351e7491cd9b241af058ce67dfe021c255bc2bf19f535b7ffcaf38a2814", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lv4uw6(?:\\?|$)" + }, + { + "hash": "18c8becf0232a8eb8ed588106b7fabf3432733441dfc36afc17425dd379b31b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "75ca339abd0682b691b88994ea0cf73d9995629375eb0f5c069459b9ef4e76ad", + "regex": "(?i)^https?\\:\\/\\/nerudfgjdfjgdfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9c9523f7fb2c5546d44e3f81c8786dfc80b3a355e105cebdb148e6bbabebdcfd", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ed444f96b0a1686655901a9fb2e1cbde0627efd917697a5a492c82884e979d30", + "regex": "." + }, + { + "hash": "9c56cddaea848bc79c87752aaf338cc66cc50ef4de6f48d42edc727c9feae4b0", + "regex": "(?i)^https?\\:\\/\\/neftgdfgdfgdfg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "067903530166a523aeff193ede63a81569e7fccd9e6b2db477406c11288442a2", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfgkdf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "24726735bc4860947f4005c6cc19ce6aedcebf05923bba05cb509b87e2ab7f5d", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2317f1793aad6a7d26a74a7d416ecf4bb8cee7680a36919620f68fa3c01d595a", + "regex": "(?i)^https?\\:\\/\\/app878718718787\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "833b0706fd5019ac59e4b3be231bc2dd3455938a287abe36386dd3089262e772", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c6e35f0331783af3afa068dbd38c67acb009af32544b45e124b71a5844c56598", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfgkdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e16bc0ceb55f5717130eb096e4eb2eb2877dd8e79b4fd88f6cfc2f74b3f116cd", + "regex": "(?i)^https?\\:\\/\\/curmysol\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5ac6654d27c0bdde6d1c5472ba421170622e6ae70208d1e0ad22be51e2618c77", + "regex": "(?i)^https?\\:\\/\\/lilu4444\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f8add7dba346167a18e173d46d22eee2f8fc769dcb6559f1937a8724feb5c112", + "regex": "(?i)^https?\\:\\/\\/netfidgidfigdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2401211684c245485256c9ed1308aa4afefea390abaf98281efac215b355f064", + "regex": "(?i)^https?\\:\\/\\/neftgdfgdfgdfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "17024a9d40a9b7a00ab4d74738c2bc5264e03c8bdabf24ca5ec97b847d89f062", + "regex": "(?i)^https?\\:\\/\\/njjejgfhfgh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "99f0c825cc463ebd53b758105d742df2f85b7fc2e92fc6663315d746083e898e", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "449e1b8e85dde3f9afe9834b7450eed888ec7f71b903fc7d4738a360847a10c8", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "dd47b168e8449a7b58a46cece3d7d3545a14e357b4e61a238bd28e02657743b0", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cf3234457ef9ee56d159024250a94b598dadeef2351257d879409ab8b317f08c", + "regex": "(?i)^https?\\:\\/\\/danavectd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "57f0e97d87b1351236142777fbf02362da47cfe056341016eaab5ec2910b9bb4", + "regex": "(?i)^https?\\:\\/\\/nzeririgdfjkgkdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2239654c3796b981e97156c59081d08f8214291e401c5d5067ae8a760f11b44c", + "regex": "(?i)^https?\\:\\/\\/netifsdgfdjgdf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ffa9fde35bfc9f89abc4fe51920bd7942dc2e7949f8627e2be5e754688c5ffdf", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "65231783c589b7afea7020bc7cfabaf58500906c219bb93b35b2a5d6b27a1a4d", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "13b4c0d4b91da2d155d4b52d0783bea66a680bfaa58665ba7e3ce9af82ee8b9b", + "regex": "(?i)^https?\\:\\/\\/deardardaear\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f65892c3b92f8492c993329d2531399075bc2f01fbfb58429eb30e8439cd3a62", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d7cdbcea5001b36ad8d8d027e1b4931b6bb65d4c32cb56b8f194de9ef153727a", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8bb39aa17227d6fdaf370bac4cce0e9af55f8d3965114327ec0073ac267e5d27", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "aa90e627ec7dee3142f3203bd0eaa8b02bef831fae81532b7fd3db443e9372f6", + "regex": "(?i)^https?\\:\\/\\/sencorplaex\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "561efc05ef99f3ecfdc4905f5a8430274dedd8cb688c802cdb677ef94a969cf3", + "regex": "(?i)^https?\\:\\/\\/3ghvvjke4\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "2c21c593ccc33e067b78bdd7c06f0972a41c25e0a3cc8d4f9534813cf744d891", + "regex": "(?i)^https?\\:\\/\\/app878718718787\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "894ad194e60d01c4b99b883e0e0fae6b7de85141505c032bfc56d9223693dd4c", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c831c9a194a08a8e520bf225c36507483789d8d88fbc602cdc25c345a92fe9f5", + "regex": "(?i)^https?\\:\\/\\/netufjgfjdgjdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e3b3f3a3911666723ef76ec004018057f41ef28ee5c42d336ec9e03fb747f3e6", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4b199baa12da43eefd1359e5d3687afb199e072e2d08f307c45c903821d54554", + "regex": "(?i)^https?\\:\\/\\/bfghfghfghvdfvd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1afed5d5d4f0667a734a4d09c5bb62bb3b2083716844a7f1ee03c36ab1a3843c", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8585db9f35c668cf49297947c094614ec3d096a784b385160687e5346544da70", + "regex": "(?i)^https?\\:\\/\\/kerfjdjgjdfgdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bb9905df3764e03e144ebede6713378ded1043564f53377755226adaf4dc62b4", + "regex": "(?i)^https?\\:\\/\\/kerfjdjgjdfgdf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "879a5c5b89d22fc9b7511d7f0311b510f6d5b0d88ef1e8aa10a808fd109c66ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+proxy[\\/\\\\]+request[\\/\\\\]+363574d39ab46ab4fb6fdfda1394cb80fccc5(?:\\?|$)" + }, + { + "hash": "d0443a01e4a9a8ec29afa15c1bbf19bdbd16da3b2eb5808f2e63595690df078c", + "regex": "(?i)^https?\\:\\/\\/bfghfghfghvdfvd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cadf0888620d4f79048689a76e1ee14be8ce7c28b69c85820890041ad80b5a55", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b7dbd68757f9b594d1efb9fb5a0e0fb3a227b2f85abd45b3c149ec71ab3e3bbf", + "regex": "(?i)^https?\\:\\/\\/rctiqqok\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d859547c80368f5c1640534005fa31a6e9a244cee8b8291b3c5ab115d66ee07f", + "regex": "(?i)^https?\\:\\/\\/netufjgfjdgjdf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "401c6d674208148fcf1fbde5167ac8380efad18b80e7d4dc938c5a83fd203f76", + "regex": "." + }, + { + "hash": "8e33960840cd34af4e2ac4dbeffcc504b26e04150dc05e5f665d2036c82d0772", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "21c902fdcad0e8d9d1a7a2935f86318d3c4558e503c8424341ac4fcc2716035c", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d386453eb9c47d441aa40bd794361fcdd8a3b9cce6f56067f4883cea3f41ab58", + "regex": "(?i)^https?\\:\\/\\/robuxcabobux\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "574ab4277bc8b6a7afbf9d3d1d35972e946fbdb681de23830fa48a854172429c", + "regex": "(?i)^https?\\:\\/\\/enrsdfgdfgdfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c6e168b0828273c3fef1fa171cc6564a1446aa8d2f80d107057583da24d8e4b5", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.172\\-86\\-105\\-83\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f2c191304d8dd213baa7685e82ffafa41f8330dc3ad9ec683029090483a743c4", + "regex": "(?i)^https?\\:\\/\\/netifsdgfdjgdf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "63746b8c4f833a9661d591829bd3a02abc95ac45189ee331bdec327d73ccf011", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5e891bebd38a0e6acd2bc0fe92abf023de4a717501f3047a4c5c3430409e73f1", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6e86283ce57b87a6c5da39543e57d22a6f85a51bfb06477228e72d0689e01a8d", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "686520b5cb180f9b553eb7226c29ff67252a80598b7f160d36787136e1237416", + "regex": "(?i)^https?\\:\\/\\/cadnedfzf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8ab2ecab6d222be8d46e9ec5c4b0c8c2c3cb950efc5ebca8dff12ca4bd7ebd25", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f84507f3d3fbe0f091106bddac899b0b8c3d021eacc44e34c54c1f9a22fec515", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "df6080cda64753b99e7e16f24853c488f8e0604ace74eec21c04e2ce0ce09ba7", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4e29dff46187eea3755fc4e33c720a05ed5dc7d4851f1bec9a784ca80e06dca7", + "regex": "(?i)^https?\\:\\/\\/nzeririgdfjkgkdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "90fd825232ace9b03b79cdf41ee53962f416b496f019976c4c8acb69bcc34c7c", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3c0ac2146221c36b4df8c6ed8eb653736687fe41629ae3078d8d8ea203f40f08", + "regex": "(?i)^https?\\:\\/\\/danemoazaza\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "68b8f5e62090a8775014808733884932a3f3ef7262e3bfdfcbc757545ce875f6", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ccd13f94a7212e1cb8a7ac45ad41ce755769452f9e9af2db1f6f9801d3e5c344", + "regex": "(?i)^https?\\:\\/\\/danavectd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "699142dfbf0c0ada2f2de08ad7f40ec580f6555c145e29345b612cdbf4660394", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "69a2c9dd48bdc26ff063cf339936a20fe2d687f9c3464023cfb272aee130ca44", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfgdfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8b15206b7f300b80d174c3cda91babe4f4ffcf08cf16a3c97bebd105d1138f8d", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1d7dd2582536fe6552f022a5bfcccbbc05e8fa85f03d930ad542d8c7c9f5046a", + "regex": "(?i)^https?\\:\\/\\/rctiqqok\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f06faa3d7f255b33b0e4f53323138efa86eedfadf57838b1d0033629434cf353", + "regex": "." + }, + { + "hash": "06a044a1b51b3c213626eac5a0c606d3b1df88e5bfd57a5b0ceed2361b6f01fd", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a58ff93ed9d8494cf0434b87f53dac2bb08f35dda5b3a1b0810834b765779b9e", + "regex": "(?i)^https?\\:\\/\\/enrsdfgdfgdfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "21a7d6440127239e657cf9d5f456e27a76b5f4bba9177f05717c23be7da0838b", + "regex": "(?i)^https?\\:\\/\\/kerfjdjgjdfgdf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e8fcfb2a769cac4a81dbf5cba85701840d127c269dad3ca1e0e72df8335a1f13", + "regex": "." + }, + { + "hash": "73cef4d4206592adcbb528ea38cba7e7e0db21f25a9ac4678a713af519539646", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9658c7f5b2a74d81b143e6181b3d2e499241006a7cfd9fb084e81ea5ded6e044", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "07664c34f25c4c8e8a276941bf7f403eee81b08eeb209c4f3093719eb95978e1", + "regex": "(?i)^https?\\:\\/\\/rctiqqok\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7d2ba4082c18389f5c405fe0258b67e8847fcbe13c43449216d1da7abdd248d3", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0e845a08678f97170c9d8d37fdd322ed601b998a7134307d1a1651ab2a6ec280", + "regex": "." + }, + { + "hash": "b3139ee8bf101d6050d4896e11b963a035a458f242ec8b5af9ed410b870a9335", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+amina(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "477e76802f659ef4226a6a857f0ccae49f02f91c3cd972eacb1d9e1b6e27dd4b", + "regex": "(?i)^https?\\:\\/\\/bfghfghfghvdfvd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "902903af0e7d8d29f51c3fb473256e7cabf1ca5a6c21372e4acb3fc0b1c95308", + "regex": "(?i)^https?\\:\\/\\/netufjgfjdgjdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f8f845f17227335e52d94eb5bd6954ab4b6b6e7a3b0b583b689a07ac212afc46", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1702b6d738955d67b86031b361150e19b3d4ea81e77150323f5126af6d1bb49f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpzaw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "efa0caca9850ca4f5b267f06171755e455d1c497b8b794ce7d975558146aabde", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bff17b50b3c254f18416cf9e14a2bc141aa4bb55dd1a31dbcbf6c20843986071", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0f7c6e2b607205c7f3221a361145d021fd1dc05a47180339dce131fcc23370f6", + "regex": "(?i)^https?\\:\\/\\/nertdrfgdfgdfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6f72f3abd078b04f0db7744a7592e3d97e53f4faa785c86db2d42ef75be9e227", + "regex": "." + }, + { + "hash": "4dd135d9ab3c896612d0de34516553a38e292b2ef882935f929883695ee9f354", + "regex": "." + }, + { + "hash": "b81d63258296bfce6dafa9685ca4062f45cd8b944398769c1614cfaa1f5d1c7a", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6fdde6a6a683adab891480ea0b429704f55c1d65631c5317183aad023301691d", + "regex": "(?i)^https?\\:\\/\\/enrsdfgdfgdfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4333b7be053b664b0db7447e6f3f729ee9fe11b3428ea25d161fd95195a9bf27", + "regex": "(?i)^https?\\:\\/\\/event\\-top\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34f5d1b58a008b6e4e83f672ba9338390fcaaed170815444564a7edd039cdbea", + "regex": "(?i)^https?\\:\\/\\/neriodfgkdfkgkdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "640b2036661e5ff7d61f4d466e337ac426673dc13e3cad4f5104d02263950504", + "regex": "." + }, + { + "hash": "3cebb6faf8ab9c16d7f9ca8fa2be263e492eb3980a129cf8ed167efe75095b3d", + "regex": "(?i)^https?\\:\\/\\/enrefgdfghdfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4cec39163e1fdfc17d8bbaa0c6c9b24cc567c2a80ccc60f05930c4816abeee5c", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfgkdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4bcc12a276716558b95aa62133daedca249f82291cafdaa622c6c843cf417041", + "regex": "(?i)^https?\\:\\/\\/telezlq\\-ejba\\.top(?:\\:(?:80|443))?[\\/\\\\]+zz(?:\\?|$)" + }, + { + "hash": "baead11d804aa3fbbfe51bcafd6a85649e59e50001a4b0228ef64b3d8fd2d44d", + "regex": "(?i)^https?\\:\\/\\/netifsdgfdjgdf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "51c68bc6bd83bea7879fc06f34f0420ac84b4b8372ce90d04289631a6881f4d5", + "regex": "(?i)^https?\\:\\/\\/bfghfghfghvdfvd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "efa0616b237601860f7f085b8a0bd744cd3348e73ffb2ab5aaa20ea6fbaf01dc", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a5c96dfc128ce956d1a021ad06a405943250414bedb3643e8559fd975a666a2a", + "regex": "(?i)^https?\\:\\/\\/iekdkfksdkfsdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6cb9031bf948e814c3b7b2056d8758c2a47698a49b03b9bef1a2c43cc2c46118", + "regex": "(?i)^https?\\:\\/\\/cadnedfzf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e46a6c802a28a58fbbe57dbbb1697d286ea5c9cf5505476e105f2983115025ef", + "regex": "(?i)^https?\\:\\/\\/netifsdgfdjgdf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b13596e144382758c2289f9e1f56f30a273091267fde50f1008873cb797e6721", + "regex": "(?i)^https?\\:\\/\\/crazymoloiazaz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "70bdf965f1a7488d2bd6616e7832d414abbf19c68a5e6d2a917994d08cbec30d", + "regex": "(?i)^https?\\:\\/\\/danavectd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b9b31e04a836f792dc031166e26f2f6e7f9eed90a8b6b57e5878b85919bb97c8", + "regex": "(?i)^https?\\:\\/\\/nzeririgdfjkgkdfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "864d71eaebde566eefad89187587f8b23ed9cea35621eb1310c84e3460d183c1", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3e721faa78bab2d551758a15105188983bf6cef1a490de6af9774c2b0c68f1a6", + "regex": "." + }, + { + "hash": "fc2007bbaf5125343766197dc01c6ca736763352573ad2d763b98dec593aaa5f", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6ed72e4c4b94c473877193289f04bfab1cb23bf13b989089ee5d376cba0ce139", + "regex": "(?i)^https?\\:\\/\\/nerudfgjdfjgdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9e174f20afc7b613d1f08e1c05a6b61f0f64a8ee1ff0b6f237c5ace7f1649df1", + "regex": "(?i)^https?\\:\\/\\/nertedrt\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7b5d45c5ee9393394e850e2b6ea98b7d0410bf24d8e462a8532a53263242bd09", + "regex": "(?i)^https?\\:\\/\\/cadnedfzf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0f1323e06704d53f69ddf2984623615dcb3882fb878cd745f6cc33a60ef13fcf", + "regex": "(?i)^https?\\:\\/\\/nerisdfgidfgkdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9235bbca58f1d0813b0ecb411e0a38fbf9255d3457df377b12d09bd690a5d85a", + "regex": "(?i)^https?\\:\\/\\/cadnedfzf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d7fc999a5877c532c8e550d729b64b1ab7f49c3a91c43737e25e3d1f1f0e0f3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "695df5a2bfc0c55980d64f491e04a2b3ec37cd89bfb3c911f0d71efb6d1b121c", + "regex": "(?i)^https?\\:\\/\\/njjejgfhfgh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "171a59a7bf78da4f82b7f5ab6703e5fa9a387189e67eaddf76a4dfe7ac44c6c9", + "regex": "(?i)^https?\\:\\/\\/njjejgfhfgh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9404e9046d88bdbfda1e3e0beb84585f0fb5094551e58c0afda4a75d265e2c7b", + "regex": "(?i)^https?\\:\\/\\/gznwolwmol\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f0d21bf8ce44df04018a60722a81d7d892a223def055e6438c5dabbf7e9ca3a7", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c9b4e6c7d73b87fbb8399abf1bf3c1848827bfe53cbfcfdbccd690491f834d53", + "regex": "(?i)^https?\\:\\/\\/dacazzefrzeaz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "879a5c5b89d22fc9b7511d7f0311b510f6d5b0d88ef1e8aa10a808fd109c66ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+proxy[\\/\\\\]+request[\\/\\\\]+363574d39ab46ab4fb6fdfda1394cb80fccc5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a42203bc16b33bae85346fc8459dbc4f1be55eafaffc6bafaea5a40adb26c2f", + "regex": "." + }, + { + "hash": "f9459ccbf15ba804013492e8e3bb357f18d66088d8e6bf24f19a663a741887b7", + "regex": "(?i)^https?\\:\\/\\/xanderxanders\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b0dfd2de71966c50d7f7f8fca8b90ddb05c841fbc60a057c88e4fd6867547d15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7e8ae21b9f212db7a74c0c7943e43a03c69d9fbd948c0f8a11c93ec69f05a31d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6003[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f0d4b2374a8600cf8e6834a6e915e8b8df5170f3b8c0706a8c925a495eea370", + "regex": "." + }, + { + "hash": "0b147cf573a6714e6565e06600df57358b3cd37554e86c17202c908ec3fd2f8a", + "regex": "(?i)^https?\\:\\/\\/nerudfgjdfjgdfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "949999517672b347a8226627b2479e5d4774233ffab900ff4eee979005192bc0", + "regex": "(?i)^https?\\:\\/\\/danemoazaza\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f1686faa711531d07c2a368b4fff29ed5840bb21e4c9f1249c43772ebb1ad2d2", + "regex": "." + }, + { + "hash": "0928a09a07a80b1f3ef8f1cffa5fe7727360533f10ee35b5a5b581a027eade54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+w(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "380c122e5e939b7fd8cf4e0d6c01acfe09ae008472f8b173b1be898a53a07008", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "78c7e413687cea559597c01c75d9879ba0a307770b43af973d0f9a00fee27809", + "regex": "(?i)^https?\\:\\/\\/foodprollycookingindiacontest\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dca853b08f5ebdb6f049e1c38ec63de9e5ac1953b16fc369caec36fdcbb2e6af", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c66510c0655610133512d32c401ba2f32326c6c9ccf3b2027d6447acb807739b", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "831db5e8abbc6c9ca9c98e79e966eb9f99d16a711bdbd22d69cd00a7b397fb60", + "regex": "." + }, + { + "hash": "5f5825da7fdf96841a98df7746183636b169676459c9c3b4c37df1a3f82a2c2a", + "regex": "(?i)^https?\\:\\/\\/bexnetoutdated\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "5c3103a2789989a571b25db881136f3049552727862688bd6a7fb49bf1eac25c", + "regex": "." + }, + { + "hash": "a67bcfb91c80ee2b22f9320db6fb5fd609fb623ce011505bc57dbdd19b519100", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9143a21e6436064681888b239c0c111d400877dc5faf4b8bb9c8adfc31923ffa", + "regex": "." + }, + { + "hash": "3004ffca7c68513a398295bc26cc50e7334e5c666f536913643559c71c70d97a", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a392161a52a27717005bcacd54bfda5b1db9d1fe4a486d51576c37f0b0b2129b", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3bef12558886240543e5b275d57ed49c62edc5cea464815e7e6c80689d6d2ecd", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "92ab051e1e8f221b86140deceb7d30696dd4dbeb317c41edbde3a3d5ea98dd5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?81397\\&id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "10f1ccd42f85c1a6f9eeac43af3c0340598cbe803e9f7d4ca820bedee4672db1", + "regex": "." + }, + { + "hash": "6d9e02b354f4c61dc99cd974e20cb881aabf242803c7d7c36172e785f0d86f24", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f9a3c819c57fd96b6df9be025c275fbedc83556023d96ef446adf68cda8c48bb", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "22813270e707f2be1b0d701ae8b3945e026e50dd053aff8e205f2e5efd622251", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fb0011372d45d944a7b9bb17259e5169c49becae808f049c1268cf287e8ac2e2", + "regex": "." + }, + { + "hash": "449e69e3b4e5872ce038278abfaa500e74296b6df92053d7b4ea64a90da49e02", + "regex": "." + }, + { + "hash": "077c620daa12a20165ec81def4d845444bb3e5bbee9ee823df9b84983c71ee59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7o4wuV(?:\\?|$)" + }, + { + "hash": "8f825d92f4c57afd8151c89b12d0745dea57f3f08fec92d6d3f58734afd51ad3", + "regex": "." + }, + { + "hash": "f7b7ca5e73013ca2bfc8ed78fdf6de0c4c63c69e4caeed189b0acbf8c8e2b15c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9977[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05c5168fd9bc1cb0b1259333c11229bcb8a15cfa3b02eec20955cf6dad2f85b5", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "341c3d0ce337ff005d34833c04e2eb8dbc5a02fba4f53bf956589dfbb843f190", + "regex": "(?i)^https?\\:\\/\\/bahsk222\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d4d9b66607ac8649841f6695e43899dbece6ede6ce20014d98eba75e89b31975", + "regex": "(?i)^https?\\:\\/\\/glorillacontestintercontinentalpro\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?[\\/\\\\]+getuid\\?https\\:[\\/\\\\]+consultavirtual00\\.blob\\.core\\.windows\\.net[\\/\\\\]+massive[\\/\\\\]+seguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID[\\/\\\\]+$" + }, + { + "hash": "389fc337f6cb54e3ea72dc058ebca3f6667e3110298dc2d14b99aa82a1464cf1", + "regex": "(?i)^https?\\:\\/\\/gbnnews24\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fb5cdf791dfc2cf6ca1ff4530c19308649b479f451c8f645187111ff3e83b663", + "regex": "(?i)^https?\\:\\/\\/gbnnews24\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8810f1fd484b6bf9fad0964983f22377fce125ba8687f1b14f60f377fa586ad1", + "regex": "." + }, + { + "hash": "62a7723bf349618478a99ef5474c5497d716530b58354235a7bec4d081b97024", + "regex": "(?i)^https?\\:\\/\\/juno\\-support\\-0b0f01\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3522c0c026ab9c789c2f76030839bcd7c8b610a6a821f66c5b848feaeddd5f7c", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cc8846289cb98587ed5566df1bbc421526d91ebdd8c00b50950c0e1e6cd8cc2c", + "regex": "(?i)^https?\\:\\/\\/glorillacontestintercontinentalpro\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c513b6101f6f937fb52a8810021dde87e9b89067ece11c01464484e2c96bffec", + "regex": "(?i)^https?\\:\\/\\/foodprollycookingindiacontest\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a290a6787bec9c9f155b0bcb7ecaea75c5e424d6d5f89d6cc964485635dde51b", + "regex": "(?i)^https?\\:\\/\\/gbnnews24\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "47514a7cf566d979b15ab44bd77cfed4368277d8ec72de2d1f879b7770fbccbe", + "regex": "(?i)^https?\\:\\/\\/gbnnews24\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8c15995b8b94fe9c505d1de11aaab3c436e5eb677caec10c7e3a54e7347a67dc", + "regex": "(?i)^https?\\:\\/\\/bahsk222\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cc1e921806bd5682201c55540d99133635bc1ccf85bc1657433662be74fc9315", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-2(?:\\?|$)" + }, + { + "hash": "dd8551d985eb227382d46cb2113c482d324d996cbfbcb4bb35e075561e04021d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wetransfer" + }, + { + "hash": "7c13ab7492386efd5068c89c39978b5be70704ec19b192af5f35ab5e0e83ab73", + "regex": "." + }, + { + "hash": "27c66851e5ca8055bd88e7b0e02013fbc1870381b7aa9250d04bb136d4c4bfa3", + "regex": "(?i)^https?\\:\\/\\/foodprollycookingindiacontest\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f2e01616b086a35d1cf9d20079b4b5c546ece0d2af98e051780fd25a610b185c", + "regex": "(?i)^https?\\:\\/\\/bahsk222\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "634ff8c22cf5b9f0cfebb769cde087d2fbb5d0472e146e9c371c44942f93c615", + "regex": "(?i)^https?\\:\\/\\/foodprollycookingindiacontest\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1bf40ed06076d6c0c35c0c7bea57e4542e8073c5c1179f6eb40d587dd99a9b05", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0800fb0dcaee74ef7b7a889153d889d68436236824db5f9e56af7b14d375a7a4", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a88c6c5597eb5641e23a2b19729054134bdeb6ee7178adad6954201d1decfa4b", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8c8dc25122ffbc632bff39a583f98d25e1104672715b4190f43538037a94ca12", + "regex": "(?i)^https?\\:\\/\\/foodprollycookingindiacontest\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eea5e3cb3f6ce094f538a65bf58d59402a57f27198bfb52b9df3c9de29b84b84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link_card[\\/\\\\]+8c8e6e7b(?:\\?|$)" + }, + { + "hash": "ae263d0a9616ff3fc9a8b9c78049f7babee09789293e37f81f42a891d3513ed1", + "regex": "." + }, + { + "hash": "b5c424c20fd9e15a4e67c3865641f93eb61a6685c723fc4d853f36db25b4ed7e", + "regex": "." + }, + { + "hash": "fc04146ccd82ae8fbb6a8fbf2eb1d914532ff8f77a859a1707c6c0cf0345c526", + "regex": "." + }, + { + "hash": "8c2be1ab36a1d250855fe44f073179fcbb55f97cdcdb6df67a0cff125acc6934", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intest\\.html(?:\\?|$)" + }, + { + "hash": "449e5d9c85261c1c6ac8157d4ae5997df365dead3a4078b1b93b7d7f46799d96", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a8a2c5dcb5a518a1d6351077e7b514193e5b565d252a6d757799ee889a99e8e6", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "50650ff6c4d71d036ae1f8a9845c31867d106f8fcf752b11c78ec69ea921c93a", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "601ea78af776e68074871a746427dee6b9779c9b0728227e0dc53381fe827e21", + "regex": "(?i)^https?\\:\\/\\/glorillacontestintercontinentalpro\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "31524bb1e7c1561df77a227024d8471075a5408b3b96c617465b5fc225c17377", + "regex": "." + }, + { + "hash": "164a9b88355ada1810b8c230c030d54215e96828abb43984ee2e32e4c4a8ce4b", + "regex": "(?i)^https?\\:\\/\\/bahsk222\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cfb9382343b34eab31ba7b2bdd416a8f488d38497383106e69f9f3cdaa1e64f9", + "regex": "(?i)^https?\\:\\/\\/mail\\-105870\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8083e4cc0abb0c4aec1f6ed006835bafcbe5c85eab0ce97dbe7b4046b02c3c20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "feec6829ba00630f63f544829d7d7f6b810b531b5fc798a68613a07558bb3259", + "regex": "." + }, + { + "hash": "616fd1bdb35a4c462575d4abea239737ed7840efb79749f270a90e23bf6891f4", + "regex": "(?i)^https?\\:\\/\\/glorillacontestintercontinentalpro\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6797425d5075b41a8e3136e3c47a9c5e57c4c429fec7df573b2b8b1d73b6ac87", + "regex": "." + }, + { + "hash": "3fdd62a18a46ddc081f3f39498b43f13ff715211353f659b7c9ae178684df2ab", + "regex": "." + }, + { + "hash": "659ea903cc97882d50f6edcd7d79a14d3a697929201f3b83e07394afb818f1a2", + "regex": "(?i)^https?\\:\\/\\/priyanshu763178\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "492bcd544538572043442248871aecb4a4873fc80cd5a978029bda767b8ecf0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pass(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ffd1aa291a0d4581d629a2b481ce9e668603e31b129aed8fa8eb043061477ebd", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cc01992a669288e1fcadf91104e43fac056e88a34d9db17955ebed40fd62d6b0", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1839d9554770d48b4b04e821316e10e864d0434b4579b2c8c73c7c67d0028017", + "regex": "(?i)^https?\\:\\/\\/gbnnews24\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4ab62f429861b78331ee8a4da7cd286653a6a08222e7049dfd68de3837e81a6c", + "regex": "(?i)^https?\\:\\/\\/mail\\.172\\-86\\-117\\-233\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0828a020e7abd9398ad24f1ebad5c0f7f95617f54ec780c569331548c0cf22d4", + "regex": "(?i)^https?\\:\\/\\/pub\\-a4ef3eee299e4ef7b1ed17853a0ab56f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fe3e88d002b4ccc23e410683442ff393ac8d8e18888a8151d408697e55ee7eaa", + "regex": "(?i)^https?\\:\\/\\/gbnnews24\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ea238e27d53a73097b66b56bc1272893f56ce7f7a126084ff34a43811f0646a8", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fcb668b5bbfc235d8d7405ffa911eb6bf9d131405e40a371e16296c96191b926", + "regex": "(?i)^https?\\:\\/\\/gbnnews24\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2c2c8ed7d3ae423baed7af5c80a55ce2a8179925910a269b55c255f99d919e29", + "regex": "(?i)^https?\\:\\/\\/foodprollycookingindiacontest\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3fd4a12bc435a6ab45f2303c4d26f0b95b44880bff6c8f1c57d14f02fb5a3d67", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7de9ade94175b167187efedcda88423fc00712d15b4be5bdf303b77f20f79158", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5d21f2d57a6411c53567c3dcf7e5ec18545a0d8b02e91d41629870d710d6be17", + "regex": "." + }, + { + "hash": "1cf84636ec9f7664e87f6c00bb457128d69f004f9c1c5e16e9b9db865e1a25f1", + "regex": "(?i)^https?\\:\\/\\/mobilinblogu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4db7b047e00d6355175e6736c94cc2b3c068b2d6d6893624fd81ce57e39cfe1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\%3DY29tbWVuozOTcwOTUwNTM2N\\.html(?:\\?|$)" + }, + { + "hash": "051b33255f743c583c7fd44bc8e10519ce8092d7615c8b68490d9756282846c5", + "regex": "." + }, + { + "hash": "389f27c17a5cd7ebafd9b2dd4d5b5c3282348caff1a7b2f72d8c977f8d8089d3", + "regex": "." + }, + { + "hash": "3e831723ff81e2305825c7aaf927716bb0161d85b93c53105fb9d98312c6f344", + "regex": "." + }, + { + "hash": "c98983a367d228e086d25ff4180b454d7290f28ae9c02d66ba2f097dd3c2ee73", + "regex": "(?i)^https?\\:\\/\\/gbnnews24\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0fd2ff154a913a06c1d5a2d2567712393a2f3ae9333d4287af5e9766b265690d", + "regex": "." + }, + { + "hash": "9c5d0a53eabb75b7176da6926bdf8f95f5271d024de6df19273d4bf158930028", + "regex": "(?i)^https?\\:\\/\\/bahsk222\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ab6510af2c0bcdf23e69fb59c0f18790ad1470130bacf0d742d44fea9fcb245d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+giris\\-481[\\/\\\\]+recepgultekinn" + }, + { + "hash": "4db7b047e00d6355175e6736c94cc2b3c068b2d6d6893624fd81ce57e39cfe1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\%3DY29tbWVuozOTcwOTUwNTM2N(?:\\?|$)" + }, + { + "hash": "bafc798d1d70887d5b12f7a005227b73475a789a547fd7937a33c0096e4bd40c", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bf50511ef704d87c90b242c8af5b4b5d06fff6c69ac6c972b78992a9e80a87dc", + "regex": "(?i)^https?\\:\\/\\/glorillacontestintercontinentalpro\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9cf31b7f9587dbcf589f36fbf73f2a5209bb4a7d61b014032155411e88bfcd7f", + "regex": "(?i)^https?\\:\\/\\/foodprollycookingindiacontest\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6eb8eaa94ebc22b21b5f439325c95c06fb043ac6fbfbf9f0ad161bbefbf4c8b2", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6f35a2a86232f7110c8a5676b0d4303e5e96cb9b407ef7e6c2e2faf784e881a9", + "regex": "." + }, + { + "hash": "01e2829b39d2432a040f9ed8250a017da57cbc6aa7630c60638298eb7b809bb9", + "regex": "(?i)^https?\\:\\/\\/bahsk222\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a325d3461887dc7da328a664a013631764f57a20578bea2d55ab81c45ea06440", + "regex": "." + }, + { + "hash": "eae9a21015b077d4e1c2830fe8c31111d1c7c245cd59e66df196e88169b0120f", + "regex": "." + }, + { + "hash": "3a9425de3ac08bd162715d3e53137287bec4b7696d1267c69c7ebaebd86f6034", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+today(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a56c227b72137c8ea3cba483a65f51e67205b3726a3efdce27d6c45770392222", + "regex": "(?i)^https?\\:\\/\\/web3apifirmware\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "cbc3e1bbe3fc8904e20bde9c7d1b5b51ecfb4a77233293ec4e9afa74549da728", + "regex": "(?i)^https?\\:\\/\\/glorillacontestintercontinentalpro\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d43bd36716853769a124aa6425fae46403f8a2c65aca5cf3e8f6363bc61afa13", + "regex": "(?i)^https?\\:\\/\\/bahsk222\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "69a2e9fe06f6055e193e32a33b7c331a88f24cd4513833ede47bbdbc047d0959", + "regex": "." + }, + { + "hash": "f9a13d54016c5113602410c3e2e2af90f193a9e858aca7aa9013b9a7592eb0d9", + "regex": "(?i)^https?\\:\\/\\/foodprollycookingindiacontest\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ca0b487eef3083b645700ff0c1e2720cfa233b17402723a56aabc55a9d5d44e9", + "regex": "(?i)^https?\\:\\/\\/foodprollycookingindiacontest\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "93e13a7f56b9df40dd0756e8b076bf3409f0aa063e9df44282752138cefc8198", + "regex": "." + }, + { + "hash": "f7b7ca5e73013ca2bfc8ed78fdf6de0c4c63c69e4caeed189b0acbf8c8e2b15c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9977[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6f545279e6cf85679a3471c458adec6c31563ae57fb17390c4a7877c4bdbedbf", + "regex": "." + }, + { + "hash": "58074ee9f81ed28b5f12e13e48daf4ae3d546b927b5ed3efc70342af2bf99fec", + "regex": "(?i)^https?\\:\\/\\/http\\-101511\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "709da8776b84767a65ef1ffee457faf77aa99a7cd4cd72ecdb48e333ab19d4ed", + "regex": "." + }, + { + "hash": "aee09096f31e26b809ffd0a7b048d7fef4781695a9e28a7ffeb8132ed70e4191", + "regex": "(?i)^https?\\:\\/\\/zhjhefthdhgdf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c87ff85650ea41aa2d337d8c79db8e98ef3f8e5901da206ba3a5e8fbad63e184", + "regex": "." + }, + { + "hash": "18de34df5bdd66d42e65742eaebdc0622ea128eca257e34017bc88507c9590ba", + "regex": "." + }, + { + "hash": "33cd6f5b8cc5e4ccf98d08058cd03b17d4a75051ce5532c8cdbcf6f535187459", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "21a449158f483d444f49940005fcb82eed141beca8d4903da38f1692159893cb", + "regex": "(?i)^https?\\:\\/\\/hbgqaeh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "916e9930ed48d08aa5e2e1cceb0cc574e77fd1d2ee6b8d1559e2464edabccfa8", + "regex": "(?i)^https?\\:\\/\\/zhjhefthdhgdf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "55d872599da38c9379681b1644f6ccf91a5f66fc7a2d3e7d2f0f89d7b8a2fae0", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9a2a22fef6a633660585802c5db79d23ac6efc684bf5182bd96f42babe798d08", + "regex": "." + }, + { + "hash": "5ee72da208b4bafdd399f731b624e534549ddf7850e149c8f9544ed065683ffd", + "regex": "(?i)^https?\\:\\/\\/qahgeqeahg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "827fb73f8a09a2f3fb44ce7f1881fc195846c171c0e28184776628fb84ef9148", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "75e886f0746685dc695f8100ca79face6ef1073625d869ed32548b5324996fd7", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0232ab318773c1e80f31193946310bfa5c7083119c61d0c49071c606b44fdac9", + "regex": "." + }, + { + "hash": "eac449bf36133d0db77d3ba499572d6e73cb107c4ee10562c3fb4c7ac578ac26", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "383086e74374b286738e4db3e6b4f15ae0e1c320f1e9d0586f792177da338ab2", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b481429f32701f051b674d62752505f7d19dc4697c4cb4f77e013a74083ef784", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b34d17b28326887fe7a651f2d032ba8e3ca8bffe08dcd017a8c0d1c2e807fafb", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a73fc499fb12394d56cd574e9f74db4068f5b21f4351d32ba86c5b8f23720b43", + "regex": "(?i)^https?\\:\\/\\/hbgqaeh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "39693091cda06f47a3ebd46251e986143e1b48e78c49da982a38355cf914a9d3", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eaa911cb301127ffbb9b7eb82e2fbfb693d32d6dffe1bc9054e6a76b3a3ef573", + "regex": "." + }, + { + "hash": "3d435d4bfac9ea956019016bcdf5b590ef33507d2560eaf680ca04eb20571717", + "regex": "." + }, + { + "hash": "d575de6d0fa7d6e84a39ef7be75a28beb12925dbe65155a5b6bf5dc86f7bd228", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3cbc37f9e4e7c3529bfe0b10faeb0b994ca977812c617209928ad89e5172b671", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gccms(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f5ded78e8a0a8e2fbfb22600d9529e5ae1c206615eafafb1260e907c6f9802c", + "regex": "(?i)^https?\\:\\/\\/nerhjdfgjdfgdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "967a877aefe8128b5975e6ea3cb10f3c0ced041f58463f5f2d7359495ba6c412", + "regex": "(?i)^https?\\:\\/\\/zhjhefthdhgdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8995a55486fecdb3ab63e378084ff6478b565958da93248acae2030670a48aea", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "20faee2358816570ba8dcb6fef634fe507c18dcda7c054f05294366cb77e2911", + "regex": "." + }, + { + "hash": "4115192b6b4c0715fe502585fc85bc64ae74a31c7c425953ab44f94b8d395687", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "81bca2c2613935394f25fcaf4fe01fec7d4f46a75da8dafcdecb518933b86d8d", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9755db36f36f4ad155b8efda53472776acbae1c60230d8dc3ab294458d56686b", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bcb7796d3fc3e47542eedbd749a2d55906d9466dad0f0ae7d1882b2f68dc1e35", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c532316728a7dda88d20adc9333d4188bc54358791dc9af98b95eb68975f3", + "regex": "(?i)^https?\\:\\/\\/rqahgbaqrh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "af506602e1d7ad16bbbbc92e66cdc0a28eeac98a55436a35008aba1b23652dbd", + "regex": "(?i)^https?\\:\\/\\/zhjhefthdhgdf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6e6868e03e6c4d1a39e23a87db609679e5122c8254c109399fb97ac0d3466b18", + "regex": "." + }, + { + "hash": "553728dfe8040f359a8f78f2a2d3a2ac7ea7664f1d3bbfc86779268bf9601282", + "regex": "(?i)^https?\\:\\/\\/ezqfsreqa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b9d14a94038f83d36d394043ef0918d44117c07cae05f0f26a4b04ddb48f6016", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "772383e60bacc39a713a8359ca5a1a7627ae3f709b86455fbde5a8d798022e85", + "regex": "(?i)^https?\\:\\/\\/ezqfsreqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0f018dfd83130d806d4b3d6eb3dfc2cd7dfd03a7be0f5e825c409468421dc6f8", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ba2197ba59938c3664360fb5ee1f5f9812e1f74f845bf261f5e6208f855173b3", + "regex": "(?i)^https?\\:\\/\\/fhdgfdhgfdhdfg5676767\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d6f765a62fd78d8b4dcac8bfaa8883f925b96d20860e24b65a94044ec6b02b68", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "184cbca81aa40a4f02bf3fc01ef627aac3d9f502bc80518600aea4ce567bea9f", + "regex": "." + }, + { + "hash": "e3975308d8faa4f23aceef6a3cf0eaf267a863ae6b31ca75d6603fc156b7bf8e", + "regex": "(?i)^https?\\:\\/\\/ezqfsreqa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c29ffcaa1f3f2231bfa37710213691ffd9a727ece4143e7ccc29de2b0354f49e", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b7169cce60c810be5abf35e1383c6d047146b480a89b885ecee109bcf62dee50", + "regex": "(?i)^https?\\:\\/\\/hbgqaeh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cad7ac54a7deb918d01cc5e6328b972828e38140230007826460a1eec20cd011", + "regex": "(?i)^https?\\:\\/\\/qahgeqeahg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "04c8ee82c83bcfcddc6a4790da34c2f4af15889bcf5190f7d69597801f85b41e", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "adbf39095e1c04f6747f8d8ab970ebc8691665541cc8efddb3d66bf0e3a1a123", + "regex": "(?i)^https?\\:\\/\\/undynedecalimageidroblox\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "411c47619ff5db89c8e323d03cb83fe191976889e52f636546e07e62ae58b724", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b024bcccbd3cd9b53454f1f8edfa0085e860d3db114d9bb9d0ad04c86e6cf912", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d639a1716fbac3bc3b82ecb711e892114e8c31757d3c46e61907dd4f9cf3a804", + "regex": "(?i)^https?\\:\\/\\/qahgeqeahg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fa56d6600105aebcf7a9dc7d836c1acbd663a1e0a2cf7c84efc4d8ccfb5a916c", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6e7edb39dd671d6a2c0111aa276ef875e40da5c59d67edec14628ae9a282dfbd", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "229ec3b9d01133dd793136106a0ef7f043932a3496e0204120fe74de487fe624", + "regex": "(?i)^https?\\:\\/\\/qadgqadgeqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "00f66db717de8c1bc9e323613ce57c2724c8abd2a2232801e81f26d48f715b32", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d29ae97f28fa99890853d6fbcd33a3638bce87ea04a531549808a88dc2dba947", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "40468679a46328a09756d8d27d02326859686cb97a869e9028fc4e4cb5b0dac1", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ec18f967f5019ccf943f15dab146e16b94160010b6c76781136ebf32ac6c5fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "8d17b6d1ccd7cf6d512e98dec3fb4735f7f415d326a4adba48154ced03be12d6", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0dca2e2b2d05de11e95603fab0284eef193f21bc6c321751308f76f7f09d17a7", + "regex": "(?i)^https?\\:\\/\\/fhdgfdhgfdhdfg5676767\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a29a6c20f32136f105f380bee074bd01c4243084c0052da34a5a2354a9cda384", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2600e324ab7c5533ee8c707482210d2068bcfc9063c2db249e8305961296bcce", + "regex": "(?i)^https?\\:\\/\\/eqagaqhgbx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bcf23aef29a16072e0798efdd3263fa11cf824883e13d54b1a9fb9546787aad6", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1d02858c8e5537c4e08ad81faaedb3e49ebd12aeec30db8a9f65688b968b1371", + "regex": "." + }, + { + "hash": "6f1b2140836fcc3c9c0089877be81a2115044bb0712b8c284fcf60bbc8850900", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c78ee86beb6b1a50ce4821f5cbe431f412e3cd2fa4e3f9db064e8735bf784133", + "regex": "(?i)^https?\\:\\/\\/qadgqadgeqa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ce4824ca182aeab344f3f7488374f1bb602cc77998217e68b13d32d0377be4d3", + "regex": "(?i)^https?\\:\\/\\/nersdfgdgdfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bf5f7de94cb30667ac90fa5e34b487bf08b2221e81e0e265960fee52aa4cde7c", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0fde54ed1cffbc25df4db820873d8dc05564d6ef829bd0e26323eb05c072806d", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4abd5bcc15d8f5f26e5f5f416722a5d097aa4a26865c54e75b59f2c187579150", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1bb9d1aeb9d04008e0e54f80460b15c913469bc5862c07a8feab7c854c7599d6", + "regex": "(?i)^https?\\:\\/\\/eqagaqhgbx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fc87ebca2f48b23d64edf1d263d62ab34ddd7341943f2daced4b9383e19a6597", + "regex": "(?i)^https?\\:\\/\\/fhdgfdhgfdhdfg5676767\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2855e2c68f510692fb57ac5720b0bd78894d168f344c573abbe08cbe7195bed4", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4802cc9e8206dbecdb4b06032182b1b13de228b8fc143bfbbe383040bd6e1705", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7918751bceba9e9926c004dc65c6698d72139731093086c13a6bd2c7610965d3", + "regex": "(?i)^https?\\:\\/\\/nersdfgdgdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dea9b26dfeb44d65d019bf712dc7ba29dc510941dd5cfe0d5d554a47bec75812", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a264faa3d31c91a6981abcecdd78115f69b1f71fa977d8c32394b80bd65e88bb", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "267906b375f45d55fd824724161319a1776c597d48aca0a8fac275d2a7e86b1a", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "87e178d698bc607da072dd9a1665ecde3589a7850d07b7666cc1fe03dce481f7", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3b3a21ab872734818326aacbde4c33fd21aa9d977f84824de9d253f41bb0f448", + "regex": "(?i)^https?\\:\\/\\/fhdgfdhgfdhdfg5676767\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0fd5774f210734c0437c6876f7c4235e2edd42be0169e6c1f357b83b4dde3fc0", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "146c63d53de6f1621916586ba7cf5d01ad35a838220bbf80b4833e29d09d5185", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "092889f066c425520d51355a56d3a4e29d7e4887b624af1322ec3b02d068c464", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d3260c4acf9197a88114d14264cbbe318e50463ebdf9e7e269ef089853156ca4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "709d1b3b14fd5898de383f6530fd08e72a733cd4f841fdfbb2ba3959d535ec2a", + "regex": "." + }, + { + "hash": "e77ce4f8d54261c401d229f1ec0e0343f210a3f43be780c096bfdde6d10744af", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e16b1c9c19609832ffdc718e95f0842908eacd39795e0b3085e592225a81dfb7", + "regex": "(?i)^https?\\:\\/\\/qaedrgvaqerd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cfe4c20deb5991e5502a879b211e284aef85cb5ea0abcd0a31dc5210dd5be553", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "a39c1b2ecc9f0b8d217ead4b5181607d9e21b7d8f79ffc74b5dc9b968ffc3cef", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f7597a5a9fb226899a636e333ce384added9e9e78a3f7073736182505ad84ff2", + "regex": "(?i)^https?\\:\\/\\/feqagqad\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a10e74e0f319d6d8d828c98507bb22e893c240b010757df379971b534adc6ead", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6283e5b82bcfc941efae5197e804e06067de37f8c9491a3d5c5d4b90e0906bfc", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e4b4f88c0bf11d47eba074861998b2bad9c5d4a1f88326e6ff447998fc06d197", + "regex": "(?i)^https?\\:\\/\\/gqaehbeaq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5a1426bc24e8504ea2c94d9198ae9581cfd0dac7608c3355dc21ad977edbd3a4", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "70f3732e6e8d92a1911e2f2329101a83249afe991817caffd733bbe74c37b2dd", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4f91cc961b2e01aafb3f25e9fe8840a92825927101c4a3f3112adf7a334277bc", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ba8536599e2b5541f15449310e35bb8f0f091fb7a8e8a3031798064e8c37393a", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "57d2259f8d480750fd0221c62605a75dd47f66c650be4f7539aa645dff0ba7dc", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "659ee76f41af6074a2b5326046a71fb2056073935e87a28dbcf7d0da114d4b04", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9f62f5ce343674910ba67a1e8c7b4c7cfcf67c88a1a8b48a4317b954477f5d6a", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6ff2f62f43ae7d35d47e83aae86d7803883a3ee0f2710600b35812eee57e3ec3", + "regex": "(?i)^https?\\:\\/\\/gqaehbeaq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "deb9d5a8e0c922c897a2a564de6ccc62c126448e577a2ce3ef3b9f3a869bb96b", + "regex": "." + }, + { + "hash": "a84387fb2a044eed8bfd188f104888bb892b04f5d6249ae42ddd34d5f9a8721b", + "regex": "(?i)^https?\\:\\/\\/gqaehbeaq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "957a917254fdd07da8fd6ad8c807fc1c992c0c5a45811fdeb1345b4d654e111a", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f92c497d78da808f8d00a7aa5b0e3be75b170f683bc3428355c6a23823bfbcd8", + "regex": "." + }, + { + "hash": "fb7c3d6242ffd5ac8cfa71679ab9e7509945c92ea2e03b938fc5b0b9fc81bb4c", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "20a8d976407c6a1fc77450b963c4ab5fa3c42c603f0958ab60931d84454c61d5", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5cb627ffccf29405e7b07bbe11861327af179bd9a13ffcf56dd8ea2fdcf6476e", + "regex": "(?i)^https?\\:\\/\\/qaedrgvaqerd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "828717bcb3815dd9f2d6704f62ea6882bb1ff05cff690c4a6d16a5e85826b204", + "regex": "(?i)^https?\\:\\/\\/nersdfgdgdfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "877f9a1c6c802108ebaccfbdcc02240b190c49df1a0f54803f0d3da5c510590d", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "85930d2c12f2e27667e3e2fb52f146d34db2ff5632042f25580119d9dca78d36", + "regex": "(?i)^https?\\:\\/\\/netsdfgdfgdfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bb7d2bfddfe85cac5610381ac899d9b71dfdc697585d527a0b74300dfbd7d5eb", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3a84747bfdacc23a1610d142ef7f41486f0e435b476907aec510d57d2b146074", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "632d4d2d29fe646e0b1ab5944c2b1a86126d25ad6018adba030924ef5f252826", + "regex": "(?i)^https?\\:\\/\\/feqagqad\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4dbc7a7931d85aa2a2348002fae54e39b7d4f8b805b02fc7921836ed351d6128", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ai[\\/\\\\]+login\\.html" + }, + { + "hash": "277a03b9c0b40874eec5eae976c3cdbde43b752cc5f988a4255646b18a52e914", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d29a2efa8f68e4f05aa00a6ed636bf285323aa3df8dac3f57a4732d9381b5237", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3b5b76ee9aa5210ec8daaa80ee2b99b3dc8a11fcde935ed5a356b59df5774d39", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "dae3ef9f75cda7c9e19d7244b89da8a1bce1d3ae61788ceaca6b83bc2a36a41e", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f15d79a05f1585e0981ac0eb8150274c23652d6d533dd1ba14e2d24a0b33873f", + "regex": "." + }, + { + "hash": "de11bb3d3e744f3be2ff98a5a8c10b70e2268a521c9c34db713b68690781adde", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "83faec01836783de4ea573e9486c78e14d693cfda2df4f1cb0c44bd65cf0c217", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0f35d53dc3e49af6d38e26c607a1cf34d6226ab6134aeb9b6c5c08465dfbaf7e", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5346f05be0b9bf833c7c024249632952bc2130cf1f073eb2aa4bfd4016e7e0a8", + "regex": "(?i)^https?\\:\\/\\/nerdifgsdjfsdf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "daa850e878c4d84a60c857256c4ee44f9733aa788761e28702bec593f824b465", + "regex": "(?i)^https?\\:\\/\\/feqadgfvqad\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "dafb7ee4d8f9b28e7edee6863bd42fedc1443426e7ccbc90d6760d73640289c0", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bb3dd2b0f9cdff01b234f270169b5ce5f925bbeb79cca50de0066d093ed1c19a", + "regex": "." + }, + { + "hash": "5cb60458b1d5d290d79c03c77f84ab1e3d756616484e5729ae8f53218a7089cf", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "380cdec473840f68e36ccb2eac94489e337828e5a6d7cedd1816eb102e4f643f", + "regex": "(?i)^https?\\:\\/\\/qahgeqeahg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2af7300baab4661d0f3aaf5347d2ade1b1b48a023d4d86dabe6527b3c127e419", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a794321ea33e682084a1e63f0e413c4f96be65e1c66ec68f73ac292648a3fc60", + "regex": "(?i)^https?\\:\\/\\/eqagaqhgbx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f5e20406d4b38b2059bec603425c26bd1cf5c06be82a0ef26c382b092ccb5963", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "769498f5f07d2ea3b47b41251f68476d407fb111be999669eb23f1b12ea7b69a", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3d81969d8eebd0cb778edb2f5d824754a8bc4abaf36809d24ed07501c55bb575", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "31c317c8ddb5a99f5ab85105d466fc23b3d0b92d8ac90da84f152dfea60474fc", + "regex": "(?i)^https?\\:\\/\\/vaqedgeaqg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9a018612d19d576a2122e8e07a8a92165007e592e91a109bdb0483b3a9f4db5c", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a3c847a6d6e17c3089ec1bed2a32fd72e44116af6ed1204079c6ea0b01599abf", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fbf6c6e8b486e497ac9da264a3fed9a5b2b79a82dc40d12f2e799feef681fc41", + "regex": "(?i)^https?\\:\\/\\/eqagaqhgbx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "036f923b33e43f8def6e9fd00e34be18ff2cd701a1e22b6cbe576346a1406442", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "231d66aa08566a9c4b2bc5d676386832880ae174b8bdc9b503f9703020d9fc48", + "regex": "(?i)^https?\\:\\/\\/nerdifgsdjfsdf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "69143f0f203e6e10a6cb040a7396f0c2b66de569855b719d47652973f8ade6c4", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "85f24ca5292e622363d500eb83927e3d4fe23b622a2fc0d1574f6d0729890fe4", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ec18f967f5019ccf943f15dab146e16b94160010b6c76781136ebf32ac6c5fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e5505aeff7f0a02b00e689856c3ba6d9ea185196c872743a4b4cb638383975a", + "regex": "(?i)^https?\\:\\/\\/rqahgbaqrh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c4bfc92d03a2864f766ab56a7944d57d770af8bbfd228e13647f6ed78515a4a7", + "regex": "(?i)^https?\\:\\/\\/undynedecalimageidroblox\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d0ec7fd1007ddaaf06d7af249527877d0736734c41f08b02766e0c7ea52ff66", + "regex": "(?i)^https?\\:\\/\\/jenwnnzds\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "87b4ef0e3ed7bc0da14ef8edb3cf56766fac13d20c7fb07a65270a8e454f475e", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "16e86389977bb5828d71c00a17b1464a13289313f5afb79c5a9695cc60aadc68", + "regex": "(?i)^https?\\:\\/\\/nersdfgdgdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1fdb9ee96d3b378b626043579f5b112115caecd64e60f7fa8ac550963ef9c2cb", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "77c98369f6a8cea12a3101d197e89a7ac7099ffe046e64c7a657d662e3e6aa2d", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6c875d51090f615d13239e09662ba5e03ea3e22aeeed061cd5de504ba7974e61", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f8858a4a2ade9b0d5976018928715d1692aad69b67ff007de9c6e624bb1883fc", + "regex": "(?i)^https?\\:\\/\\/qaedrgvaqerd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c409d3f2d94fef47bfcb483f0a739a14a798b0dae2b25d4404e7bf98bd3bc11c", + "regex": "(?i)^https?\\:\\/\\/nersdfgdgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0e1355c0baeb8de3dc75b1cd6ed6132b6d9f7118fccc2f923b04932c40c5d20f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mainadmin(?:\\?|$)" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+ljRx(?:\\?|$)" + }, + { + "hash": "93e17b67baaceec455020482ccce94ad80da9a2a1c7968ee6afb7595dc32eb44", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8b87d0f8e51e0e7ec0870d2db602b999568e1e8818ca0792544464338219847e", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f320c1b4f6c23685bf6569c91aa6b723c109384682ae5fee75a579841b23574f", + "regex": "(?i)^https?\\:\\/\\/ezqfsreqa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "84347c0d402cefdb44cb3abd7d2559e039206c9b22e9efb7da1df1191c10cceb", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f94cab372ce1b691f91202fa47ae05980428c06845dc7c093d92a4ecdaeba0b4", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "81a9243bea8c5c3539c1033b70b70128df799cd0cdedf52784deb3d62b3900ec", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bf1bb2d48fbf0bf78aac7106ebf801e6c534699abaf8613dc2adefd3321dbd11", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "df412da856a39d3ac9dfcfd5a2f3336e5fac17b47da70e7ccab1af786903eaf3", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9d28e688a0d5c24c2baaa94aa7e11981ba674aa0bf34181d7bc26e95efee8520", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4b52aa1fabe0bb7dc31e706b610b09c2f085a2197c685552856cda027c068169", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "af129cd07d28c67c907d606bcaeb4a1ac62f1546110189425cb3676c5bd327f8", + "regex": "(?i)^https?\\:\\/\\/nerhjdfgjdfgdfg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0b30505c6508759c9f9f8f9f55b3f692551527a7222a812295a10927d14ffe9a", + "regex": "(?i)^https?\\:\\/\\/feqagqad\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7478493527be574e95b42c3babe3d756a4ec12fc31d52975eac5d5011ffd1c87", + "regex": "(?i)^https?\\:\\/\\/zhjhefthdhgdf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e5b8b400beb47dd964f9d50273c5daccec699f46a835d6f04a75bd7acad7394e", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "dd85b8cead654119a9585f329c5bcd7dd0453daf7f003cbb08ea76912cb85556", + "regex": "(?i)^https?\\:\\/\\/jenwnnzds\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "23b8dd535a3dc8dc995fa42c4fb02e3bccea18db869b1a341ab04fba089125e1", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a7e2892a6a36c365e5b2e4831fd918afee6838416c8f0d51272f7ff999ce78e0", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8f301991552d5c171a3fe595f0aeeafd2dd663e35df6eb5a1ac8271d342a0487", + "regex": "(?i)^https?\\:\\/\\/vaqedgeaqg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "995ff749d364d0552795d439c8a6ab3de02d187eb2e594bf4afbad1880d2e0b6", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "63ad3e6af09d1ec11fd208dd2befa9a6518e99ca386b0cb287ecb29eb7c15f53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gift[\\/\\\\]+fall(?:\\?|$)" + }, + { + "hash": "c31fa89074f98dfae02c2dfb1e378817ccb996eb32ff61bf5baa1d4cb25871fe", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fbf8a66321d0a9fe6ef300d0b82373ea60c44b03f1fd2a5dccb6b2511322f167", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "384fb03675d2de655219c2901bdf157341d5b3fb491f67e755868f4c7f28aa77", + "regex": "(?i)^https?\\:\\/\\/jenwnnzds\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "641fc2a51f85f8f3465c6b6f1267f135016dd6a5ac35c0de8b71d8eac26fe171", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "914cd24bcc3e811bf1011a36532145914ff9b8c0ef890bb5a203e5be4438fdd8", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bc0ddb31b6b656a0158ced494f9c9a0a5ee88320be118c8a7cba52102bb47892", + "regex": "(?i)^https?\\:\\/\\/nerdifgsdjfsdf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d657d697ba853122d728edeb7d9e957657533c04a9706cf073ef72407dcf24ac", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "28bb17792ce33f54768688cebded66ff58e43becf456b31ed979095094e43d5d", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "032ac36ddc26065caccc912a2413a4ce6dae1a527bfa6d70052189757051e07d", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "86666f4cfdaf2b925cf44549936d627ed8b250574625306f74b75522a64e39a0", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bab311c7c8ff491dab2b485ea24472945b98cc52c55959d21ba5128ab92eea26", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2bfd3175b6ac23ab3c42dbd7934f4062c5c76ee3129ff210e25314e1d571cf7f", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e606ad899dbe56de8e2c4b06f1b9adaae1efa34d930f73584f68ffbe533cbcab", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4bfec9f928d3c23bdaebcf2bec986375704e6b8e63d1f036d890069e8972fab5", + "regex": "(?i)^https?\\:\\/\\/www\\.telgramsignal9\\.sg\\-host\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "98a996003c3ad966b4fd32d867f517a7f8a6cff776fde0e035a50298381a6ece", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "29564a393ca5f3c11eea5a79a33af77dd14b982c7e5714b2a3b9d74d2bc45dc5", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e3bc728e8bab449d7bc63fdb59535514b9c66e9ecc8215fb37428134bfe85bcd", + "regex": "." + }, + { + "hash": "9a68f551de1faa8450568a276f3386073efac51015ba5ccb1072ceaca6d43c4c", + "regex": "(?i)^https?\\:\\/\\/ezqfsreqa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "91516ac2f57f10eca003d2f1d171069615fa7347337be8013cb512e215487ef1", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "859ecb30823fe63759b2d8fb4489cbb852353b9d5c77853d348de08bd79645ef", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "afc0800ec0ffaa1b04b157e46ad2c904d504fc0760bc27845831d237deba7a6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+assets(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dbbf84e95afb9a1a60a42398076da2bc00bd66d76b3de4dded266d8a63308df5", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0ef11d3d5ec482640276407d67b54cd7653ffa740d7b8aa28315bd6d1579c086", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "aca8f11842b70017fdd68a47f1adf74cdfed26655f0080ac098f7dcce9da93ad", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c0c9dc40cd813f656d7675c88b23186f4baa60a662e3609955d5648f093e54ac", + "regex": "." + }, + { + "hash": "94f270f1e9ed83737140d9abe90fbbc78f41dee89af3ad7be2f2e6ab7cd544c9", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2855fb48a3f7b45c90f6bf9c396fe6210f498dbd8ed87e63ffc4182c7854c234", + "regex": "(?i)^https?\\:\\/\\/feqageqa\\-geaq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5c1260fd7df4acd98928cf35afa0978acd430969c2375761cabfd990c9022ee9", + "regex": "(?i)^https?\\:\\/\\/feqagqad\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c33ab4e33400b388228424745a732e83a744e03281c47f7fdb60852501e11bec", + "regex": "(?i)^https?\\:\\/\\/feqageqa\\-geaq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ebf2726e362a95d6ca8bff2dab19b68ae3302e069aee65c7e0b2ac188882a533", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4d92e26bca8a0717a72035e811673283924ae248c5319ad18e1fc8ec00682b9c", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "54f4852c37f71ebf404e687df9b603a8a051c7db3ee18636516f75247c367651", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8f906bf805b875d54152733cc01ca0b91047e367fef75c6960d830f987932de3", + "regex": "(?i)^https?\\:\\/\\/gqaehbeaq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fb1bf89f9dd044620832c8cae64394b4396d4ec240dd0ac6eee38f278921566b", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4bcb1430ffc738aba6c9736171d631fb325e8626145098945cd128cefada196b", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "58daeabec10762ab366bfdd1b91d390554be4a48eecadee6b733443622c9ce37", + "regex": "(?i)^https?\\:\\/\\/jenwnnzds\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b3e5910902c39a87a4d16a6577165e34f2c58a9c00aca5826ede5d07c60d4f69", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "95dbaa72791d2a07197f1786671c08324874e63be2bddcc19fd81ae1637d2de3", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7b3e7747b1c2c7a06a545ab494a20de88476a5a802247b04b2c1a16bddeb6c23", + "regex": "(?i)^https?\\:\\/\\/hbgqaeh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0232ad93d96103037783d8b370d61403f1a03b91256082b41a186686966afd1a", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0cb6074baa4dc2147b51e64340c8b6db9f28a507061485807b0c2b4fd163bc70", + "regex": "(?i)^https?\\:\\/\\/qaedrgvaqerd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "710a0c0e9e60fd607c85a60ee19d32662bacbc4b10c90997429db95f7aa1792d", + "regex": "(?i)^https?\\:\\/\\/qaedrgvaqerd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1063afe68d4be01924d02dd4481e5fab0b8d9d0480142a1ac9eb890731d30456", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a3c27502571286f99632bd35cba4770ea4b20390e82456545a00a51f66d419d3", + "regex": "(?i)^https?\\:\\/\\/feqageqa\\-geaq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "003d3f14f7a3baa6179682ef1e6941b6c8ecbcc2867d7c02cea6b191f6839bd5", + "regex": "(?i)^https?\\:\\/\\/rqahgbaqrh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7515cf4f92176e9216e9099fafca62a7d8760161189008c59823f6d5442d7b64", + "regex": "." + }, + { + "hash": "4cec8c51ac8a6019e6e36676edc81cd99f7fe9af3533d3739333ebdfa35ab33d", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1798d6b65022239156814b63991e5b0a4898e965e321b30ba7bc6cb0cc32e113", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ece22fba79ac12eb4d18cd2b5523283ef6c0348f4f2ce39252160b3a088527e3", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b07f7c853bffa16d198952f4942422867cbb0704968112120773618b1be20dcd", + "regex": "." + }, + { + "hash": "68c17aee9b5a621bf0a9daaf5dd024e57808780de6658732b4437d33df5c6fdc", + "regex": "(?i)^https?\\:\\/\\/qahgeqeahg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "37431b148e7315481b3a65cf8cc62d24042c4dc3f0937ff55e9f547cea4eeca4", + "regex": "." + }, + { + "hash": "7409f0aefa8e05a0d56ad3185ecfaa6bbf7ca736aefab019260fabd830d4b724", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "264e3a4c81e39d6527b59b20e4a1917c70322ffb7e1ec3bc77586212cc03dffd", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7e9761eaf081b883650fdabe5f7333f5b38ea7e0dd88f9a658168127f759030f", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "459751a7ebcca4f248788c0da97421f5642a0d62ad067a32a2cd42134a8e6d93", + "regex": "." + }, + { + "hash": "178a6b9f5351f0f911068497724b0335ab02d037e8833b9bf804c9ce69ea6696", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "df57fdccbc82405866099652313c0d2d0659320a16670b837a12cc6dbc26d882", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mail[\\/\\\\]+en\\-us\\=9495460f9f14b05b651c36d10dcc48ac[\\/\\\\]*\\?newsid\\=8360061612MDQwNWYxODk5YzljMDc3NjM5OTNjNGQ4YWI5ZGQ4Y2U\\=MDQwNWYxODk5YzljMDc3NjM5OTNjNGQ4YWI5ZGQ4Y2U\\=MDQwNWYxODk5YzljMDc3NjM5OTNjNGQ4YWI5ZGQ4Y2U\\=\\&email\\=bilncher\\@otelco\\.net\\&loginpage\\=1MDQwNWYxODk5YzljMDc3NjM5OTNjNGQ4YWI5ZGQ4Y2U\\=MDQwNWYxODk5YzljMDc3NjM5OTNjNGQ4YWI5ZGQ4Y2U\\=\\&reff\\=MDQwNWYxODk5YzljMDc3NjM5OTNjNGQ4YWI5ZGQ4Y2U\\=MDQwNWYxODk5YzljMDc3NjM5OTNjNGQ4YWI5ZGQ4Y2U\\=" + }, + { + "hash": "dbfcec887029d7985bbbd01925149eff02dae166b2e45fda376d94b9c29dcccf", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e9146975e688e7966b6948b2b6db096603dcf862ba712a1d807a391240f1d4fa", + "regex": "(?i)^https?\\:\\/\\/rqahgbaqrh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "504aa7f9d9fc55d81aabc3917f007721d87de33c658c9c729f8302526bae4e92", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0265d171e47a58e6bb7a44de8f92617137f0e2ed5caf01105b3b1afa4d8807c1", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2992bb913c1f942d44515eca48f889b359a3aa5c84fa820473233c54f6319dd3", + "regex": "(?i)^https?\\:\\/\\/zhjhefthdhgdf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ec18f967f5019ccf943f15dab146e16b94160010b6c76781136ebf32ac6c5fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7e4f4a290e532709042d3c795e617c2b4fb36c6ce3594ae65ca078475142ca1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin" + }, + { + "hash": "3c2b1bf524fc8e1fc4b97de97bf33977f4428941b63ac6a7318046d00f60d26c", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "44134cecfb6a38ad1b000e2247a327dcb04fefed11688a8241cc32561361f5c9", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b562cf1d3a722ac028bec3e2674c4c0c2095e246373ced3d80a7c0ea6f5f5795", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5b40ce5cb222b4cf3c74fb85180bdc5ff14ce260bac997bfc157b9f3978cb8f0", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b0e72ed95e959d4368f2746809f93427f679afd4e912361036d9b63cede836da", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "75d74f2e547b30eda50d47163deee6a13d7ec3efe10f2df57817c04bd6eaad23", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "55d83cca7f9a89eaeb8b82a60300f85ccbe4942ea2ad442a39063f8ca98711ae", + "regex": "(?i)^https?\\:\\/\\/qaedrgvaqerd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6424dd6b1988cf1a0c8a19362da1da2b6c6dbf0bc13bb8e46df4ab19b71310a0", + "regex": "(?i)^https?\\:\\/\\/eqagaqhgbx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "493c5a57e01d33029b8e6fbf8151fcf3adc6f2639808f5917f03cea80289f22e", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f453873287eaee68043b4b26b1c80491167cef23244eae10ac3e5f2a7f97cac3", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2b4b7f237396e84221640d3581da9580257d4ddfdb6afd29206aa59bd6784740", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9e6c04c0a5595c878c5f6f41c68a0c6a82beb0ae5c7dd0a0fac8245de51ee983", + "regex": "(?i)^https?\\:\\/\\/nerdifgsdjfsdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "31ab030f32bbb39fa27c3215d790f97093dc134181186ddc0aadc394efd52664", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8c5d6bce33f0e98140063fa2cdec983a5f75ee5d8467e7df636734f16bd431e2", + "regex": "(?i)^https?\\:\\/\\/feqageqa\\-geaq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a9f6f2e29aa269d8b8f11b966c456e76771a01f5c4279b9ce51780a744fae883", + "regex": "(?i)^https?\\:\\/\\/eqagaqhgbx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "218cf67aa8aa40bb015a5ec8be019068a07aa0aaaf916b7c499e730c229421d2", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bb566aaaa4354f36a8894534ab90a1a0bb6eeb9e7df9c670d11241714e340a84", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "909efc571e2d0108b5e21b6eb2aeff240ad4e10f14ab0c0f6abad21a307c8092", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2db1a5bf153c7120e4127e9d5917f42b000839a7f7a66ca96d09f1c2e0b4dd19", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b80f9839d3296a3511a7cd50f7ae653f238fa22a7bee1ddab746821eea7449be", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7409f0aefa8e05a0d56ad3185ecfaa6bbf7ca736aefab019260fabd830d4b724", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bb22762ea149ac3bb80f465d33b83e0d54fb1d18cfcfd1eef3e9760f7f8be47e", + "regex": "(?i)^https?\\:\\/\\/qadgqadgeqa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "474135cd6ce799b547fc05f3a2fffa7703ab26f58b5af97068d7eadf0d199460", + "regex": "." + }, + { + "hash": "ebae595a76f14d5b78c15a96dfd71b257c336e9fad84431796f9218cc08c1124", + "regex": "(?i)^https?\\:\\/\\/hbgqaeh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "302360eeb832980224fda5500d2c4a91ec9882439c58f44d3c7ea7788cf6517d", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6d07ab68fbe6219eb70def87c16f024633b9cccf7dae7919686aa23d7de4c2b3", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d0814cc4c764ec03e238475fbac9da9af0398a23fbfad37c6717d2688a244c59", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fe6361f81eed8ca0555f40f9658bb9d8e5b8d0c53b0d4d32be51447be7088569", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "89187874f204bb7253ccfb3e44b6915c39d5391868f06f997206f8ea9c8550ed", + "regex": "(?i)^https?\\:\\/\\/ezqfsreqa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d13722cc7245f2103204af8afd813366ab11eaf4af01f1471bd29569496145ae", + "regex": "(?i)^https?\\:\\/\\/feqadgfvqad\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d306c6ba7eb8fe74608de5a3016d2aeaa5cc43ce6667870a418dc0c676df5b42", + "regex": "(?i)^https?\\:\\/\\/vaqedgeaqg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b7362b2e2156b7790f0264f0fbd1e464e454576f1d625c1d223b4f375c5a43f5", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b4f8d4c74e0c2eeff0927d3625be3b2699c7f855238f912354d6259aec383ce0", + "regex": "." + }, + { + "hash": "7a189eb67a24918a7c1571ad49c5382bd09e1668f14c5dbca0e2d33ffba19207", + "regex": "(?i)^https?\\:\\/\\/rqahgbaqrh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a1d6bb14762de7f2df7416af51aa7a4585127ec848d8977c8be95e61d67e96b8", + "regex": "(?i)^https?\\:\\/\\/qaedrgvaqerd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9401209ec4a4a9d3c030b931597f989ce1d241d741d315606e902c1c2ff52f1f", + "regex": "(?i)^https?\\:\\/\\/feqageqa\\-geaq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f675d78d5a261dab3213556903033a784165ee778fb4505f9e88bf3a9ddd4b9a", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "affa371861da19f4b2e0c0ee39f59621f7f673174d6c45d8a8ec7bcd19dfb20c", + "regex": "(?i)^https?\\:\\/\\/rqahgbaqrh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "619571ad76c9ba7f3c369bcb8691ae1fe6540bc9755cf72213c51b42f938ddeb", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "591bb4a401ad283b56b0cf33d4e420cabd76f5e72486db017ae1634162bf92bb", + "regex": "(?i)^https?\\:\\/\\/eqagaqhgbx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "97ffe9d22854710a28c528e91b24aa4791c9feb4702795c1690b230a8277d307", + "regex": "(?i)^https?\\:\\/\\/hbgqaeh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f41b3269ace986407863318c2ac048d7f9ad9a0af09a939bd67f22bb18b42472", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3b3b61312a098c9f92382c0f2086f0386f888bc4c060b7906a5d76afe90a68c7", + "regex": "." + }, + { + "hash": "a8b591c476b758a8b1e41c890b446e19d77f22f2bdf6a92ed6b0609348fbf13e", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7bd1dfb3eaf53692a9eed9e81d2b663bb1c0cec6b94843fbc9821212563a6cb3", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1c7a6efc4cb7f0516ff8d34cfca630db1567f3b9a944b3b789c66ea35f7e0941", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "5a9f1e621a9c39c13f453d8a7ddef5903fb6ccf48d55ef52f6badfc4af7c7247", + "regex": "(?i)^https?\\:\\/\\/nerhjdfgjdfgdfg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d5a218a40e7433405b1a11ea39dfdc1f102a20e7310819d40e63776006586190", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d0a9c716f1fda1a5c857b6ae503e75696f28cc11f66d94fb2b8ccbfee7e51f6c", + "regex": "." + }, + { + "hash": "0d2f01edbe722b9284c4793c3752682c50326b064a248523c8048dd3e75b2d45", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "06a1079ef45129c8ed6723e6a5cc344f4fad22e2a516d5437d7e5ab6532bc478", + "regex": "(?i)^https?\\:\\/\\/qahgeqeahg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cc905b2c60a39fad45239a8db4ccb9a87311d3fb27778cc0fd9c839bca8fba23", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b0795cc30ffe67461e7f3a88ddf25d3d3a352923e965c460172dcc264cc3f09b", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "587ff1eb2d47050743b1a534bacc2f2b62117d5fff7107b4fa17b6ca2bdcc010", + "regex": "(?i)^https?\\:\\/\\/jenwnnzds\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6771f32f736b33304c89ae6f2545f7ea7dd3d288eefd96778b79f368dc68da38", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5aa514fdb4e46d886154bd54d92f0ebb8d82068c9d22ea4225dbca3111bdae79", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ff9381fd35101cb42f0b6b1f1573015489d329c79cad1405192a0c1ee8410384", + "regex": "(?i)^https?\\:\\/\\/feqagqad\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "66dfcfa7362a2c813f418a1b7eb92ef4e26dad469ddbea12bd41e96fbd66c175", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "828856d0ead70a4376d83bdc03ddd5da859202149180f6e413cf31434c70dffd", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "27eb35ce30fd52e352f301eca3171f6eac588f26bb33ffe14bb4aa60d423f713", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8974f903e676119e56ef4c0f7c25308f675c270eab9224f88820a10cf0d44469", + "regex": "." + }, + { + "hash": "64ee7e05cb0ebcc460a5fac09c763571751a492167d9ededb9c1b6548ee23d61", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "abb099c6dbea2c80853df8d6c8ed4c10f97900a4128ceeee6abfa41874e5a9be", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "74c65462cda5376e680293bebac4f960b56c7ac7953cc593b744882a5060494e", + "regex": "(?i)^https?\\:\\/\\/talharashid3981\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a66e948ec1bbf67d99a85e213d93a567a6f2d5b37efa27c7d8f3d3475b4c4780", + "regex": "(?i)^https?\\:\\/\\/feqadgfvqad\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ee2cecba33eca97d8f831e172ddc1352d2472c4a014ba2f13f70839466859b09", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d3ddb9dbe213f34d492a65960d153c026e8ba7802cbe6764a32d07fe186846ef", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "199dd696fcf1c8deab79602130f25c3e4d7683a60dd45d5576d904393335f02d", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d3f68df3a67947dc4f75902d4f3469fd9a6206a06e117810306c26333727c74d", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7d24790486e623b1ef01798528deaad8fa364b3c0f6882069a7bd86c69809ee2", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "314cb241382f2a86f676d3918dd080fd9708c68f5d37ec0ba81b00040096307f", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "44e0148f2c7c7b7986a9da76c75e28e90fd5b904480e9e254055e1fad0704627", + "regex": "(?i)^https?\\:\\/\\/fhdgfdhgfdhdfg5676767\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "638e07e19dc8789c2f1f1819855eaebf2299ba85b6eeb6bf41063c1a82b62ba5", + "regex": "(?i)^https?\\:\\/\\/zhjhefthdhgdf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2aa2afb79a622f6159dd671f5dd7a8b03f89bba8fc15a7f044fe50a33122c5cc", + "regex": "(?i)^https?\\:\\/\\/nerhjdfgjdfgdfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d2d45765870a0088fd6114eae93dae100eeedb05efc2bfbfa738e85ff00c6363", + "regex": "(?i)^https?\\:\\/\\/zhjhefthdhgdf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e65390f0f478ee48192a5fb34f1f9bc736168435cdc57fec425750956fde068b", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f9aea67eb717363af1c40d882568a5d8ffaa9d8eee0cf9e2157a17dc71853822", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "daa06a818cf473990b9925b203ffb66eeecd49b360b959a27751247848c826d4", + "regex": "." + }, + { + "hash": "5d216c8a7c9d8a92d49a2b5391f62c1016b72acd2d5d7ddcf2dce5f08e381191", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0e5e7ccf90e5582fe0d154939927d5a44a3ed170203ab618cb17ea10d1bff935", + "regex": "(?i)^https?\\:\\/\\/nerhjdfgjdfgdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "33fb8bcc6aa5607405cf696c6b1371a0eb6fca9fcaa1cb2861252dea94716a43", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9d0f2e4ee133b2514f578427f768d0c5764a18f05ca1938937f801600b072fac", + "regex": "(?i)^https?\\:\\/\\/hbgqaeh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4b8142677fff323a8c8dd7b575f4cac6f0d55f856cde7c313b9da63d73e80c93", + "regex": "(?i)^https?\\:\\/\\/www\\.distrosourcess4\\.sg\\-host\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "22e314331ef6b7de8bc2afcb7433ab477d4727f569914a54b1ebcc394907aadc", + "regex": "(?i)^https?\\:\\/\\/rqahgbaqrh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3cc68efc94a8ac6361cdcb1398279ccc08358623695be915039f20abe3b74926", + "regex": "(?i)^https?\\:\\/\\/qahgeqeahg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0d1c1a2521d1242e35e14789fcec52e6274c1e57d1d89763525ba1be5e430c7b", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8e9571dbce723384d62818690f4996cb70152ccf2ac2ec4825ee656fc37cc96a", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fb58c54ccf40e9377915fe2b4c7b5b38ba3a97ba7c9d12ddbf991085cb11a8f6", + "regex": "." + }, + { + "hash": "aa3a9e1d7928eb81f89578d50134b06f729668e7b2694c7037e33b291c41f39e", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "72b587211f8cf16a132f18c0effe6f38e938d38d88142dc63339777a5a60ecc6", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fac1ac6aed902a680a053e24918cca19d5701472206915895435b16ddd0ae525", + "regex": "(?i)^https?\\:\\/\\/undynedecalimageidroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d8c34b180b23593fa6bb9303970c3611299c91732d40efc388fb60e1631c6c8b", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1350901f8c12a4eec96b11fa0c9f7a0d3e5bcdf1479f0b1142bb03ee93b9fdb7", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f2e06a452548428225a470b824c16da74253c6b236e6b838f61a95bda3bfc44b", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2df4e8351fce0cfc298f103f60c9696aa8ca0f6b7f89a9465c59c80859ebe5fa", + "regex": "(?i)^https?\\:\\/\\/nerhjdfgjdfgdfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cd9747167dd4d5839e727d0da142ac282cd95d11b56930fa88b9233eb3d636b4", + "regex": "(?i)^https?\\:\\/\\/netsdfgdfgdfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bb282eaf68a2221f80629a97eae09407586e4b650afb3b19bbb8cd09dc455d11", + "regex": "(?i)^https?\\:\\/\\/qaedrgvaqerd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "de4cb65eb8143a73aa159741b83ea01d7a72ec7ad9143b70043b5c51d8724eb4", + "regex": "(?i)^https?\\:\\/\\/feqageqa\\-geaq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f56034a580900aa23f238ef2afad6327146dc3926f464ef25f54e997f986eef2", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6010e66b0b379122dde533cb43b9aade5e2c36694d1dab7cf953205178b9b689", + "regex": "(?i)^https?\\:\\/\\/nerhjdfgjdfgdfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "763b6de0ccf3edbfce6d89d437dc3e86623491a9d52dabaa97c5578d422282e3", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f10b1498bdb6d25c7a0dc5bfb04e9d339ebe32e74441a049798ac4e451ff6112", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "57441b8c702b5ec69659ed04b4fb2ec74f17d9010243acfc24ddd60cd5b12371", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "724774991b2763a1712ffbb33683bfca54ae67c2ff01d4ab17ac7bd55a6179fa", + "regex": "(?i)^https?\\:\\/\\/netifkgkdfgdfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "be4bfcc02daa5c1db04f3464e4380e847ec11e2d0d5759e8506a4ffb57f87a1b", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c0c5acb254d85a97c3d9fbad48b0e4c41fcd663a9d54f28224a9d9a57672553c", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5149469b5997d7ca85f25727cd77b9dffcfd7a0b16019c37b0e9860173ecda59", + "regex": "(?i)^https?\\:\\/\\/csb\\-80i8nz\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "4db7b047e00d6355175e6736c94cc2b3c068b2d6d6893624fd81ce57e39cfe1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\=Y29tbWVuozOTcwOTUwNTM2N(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dd2b9b6103f51c270bd4461b62e942e9c5b58a2e7641528d8828e51ae60a26b8", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f10ea37be45675b55b3894268e25abf52492cc91a4a7cee1b27310dc20d04861", + "regex": "(?i)^https?\\:\\/\\/undynedecalimageidroblox\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4046bf76c8f1a764422bdc35b7b320219da7412947579afa9f60c162fc621415", + "regex": "(?i)^https?\\:\\/\\/nerhjdfgjdfgdfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d47a0a11fde52c39799cf4ffc34c83f087c7922e4dc97ecacb6c7949da3952ed", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "128698f47f0514994228cedc7c418c178187573f7390be9e8918cf58d7a01acc", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5c10b530e255d0a619d51ad372c4108c5fe2e92ee964a7dd4a73d782f3a1a866", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "718e0787d3f69488db27ea1d032cdf7c1635de01d6f891dc2d93fd79bdeb5563", + "regex": "(?i)^https?\\:\\/\\/nersdfgdgdfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5793ac43d0ef26289f0137e7cb71d55d23d54c1c0d9cafb6de6c308e6ae6f52f", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "56779d44088a1a1717df9158734a2654163cc75689340117f3cfa8160555e09d", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e6d91de187a3f1d8500306c41369f19b98f89c62eb9c3c947b89ac66e8761", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3b03661a2bae10120b539daff13e14547d8b38e8f010acdb216a1129b92e3221", + "regex": "(?i)^https?\\:\\/\\/jenwnnzds\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "577d732fc847683d38db4a9b82a6d9647170c3d6801a7dedb324c278b87acd15", + "regex": "(?i)^https?\\:\\/\\/vaqedgeaqg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3cf177fa08ac9f13bac71d16f2c227b12ee38ddcf731d964c8d84256e483f5fb", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8fd3eaf71c74641dc2e4fd009ca70abc7bf499b0d02c3bef206d8bdd11212d9f", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6a9220af8b28c32cb44b3ebbb3398c9d49d224e890781b49f1eaf9e507412fa2", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ebc556410ce4c74e1c329dd649ed7da8b349ca6ac4722569c043d817bec57203", + "regex": "(?i)^https?\\:\\/\\/vaqedgeaqg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "21d9407007f9c9ef428b1ef732ea9ac66c5d2ad4b051777f36f2fefd841a1cfa", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "610a63a0e69a6538aab59c7f5ae53324a5e45ad5dc33a1701747ff0bdd93aedc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "de9c4b71c08a21180b1d631778f20bbbee1760b0af0c1840755ac6260568c239", + "regex": "(?i)^https?\\:\\/\\/fzeaqfsgeaqg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "39b8ef3839f05da6624461940b9df0091e983fd47e92793ebe26e0674ed68431", + "regex": "(?i)^https?\\:\\/\\/feqageqa\\-geaq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d3cb3229c7c51d7330a05b85fbcb344a2cd0d42fd7f907401ebfa0620895232b", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "902f5cdb4ba5c9db44a4fb322c8d7481bb65748909186d4c4f23913d5c64faba", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0c5f675829447d15b9dc3847207a2facf4558e0baebd6611ba3fa91ba72fcda8", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2c8e65ba30b7d69d687013d05e872d34ecbd3a07a97c5e276c50abbd2e0117da", + "regex": "(?i)^https?\\:\\/\\/netsdfgdfgdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9093d4c73e3db34e8b15988d12d35e262ebd5dd82d4ec682a2b9c10a03d3c91b", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3a6b264ab76f7574bb93f9d0afa63b1ed08c62a39193ae87bb21b8925128673b", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "aea86d874e042eec7719267814a85b53308575974aefae8e2682a7f4c9834363", + "regex": "(?i)^https?\\:\\/\\/vaqedgeaqg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2d1204785cfd90fbaa413ddacfd3a0126977bb0a3997a6cc1dd06798e6a25ec1", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c362a11a08e7c5a608229e0bbf4227d4264d843d3df3b7728af8adbc99b0cd72", + "regex": "(?i)^https?\\:\\/\\/nerdifgsdjfsdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8e8d645507d22b39f4340cc423f01af82fab293b8ca81b767351b8bb56e311b4", + "regex": "." + }, + { + "hash": "9029fbc3f50f6727560ef2e19bb3ff1fdc87c99b0ba9b7351d03c9039c06351a", + "regex": "(?i)^https?\\:\\/\\/eqagaqhgbx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "87e1c01370e489f2ecb250297ed1df45d6bb962b469e44533dc88f61e7c15786", + "regex": "(?i)^https?\\:\\/\\/vaqedgeaqg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8ea77ac215dc73ca748fb90fefc9acc333dbe6e81e74ac6b63190e3a45d5b41a", + "regex": "(?i)^https?\\:\\/\\/vaqedgeaqg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "68a323a963110254e7d6d10aa603b2f4f331acbba4872dded7bee3f964072d63", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "33768e8f21c6f7991873cdc8cb5430031ee00fdb5a75c01ad5d4f989e1dc43da", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7409f0aefa8e05a0d56ad3185ecfaa6bbf7ca736aefab019260fabd830d4b724", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register58711(?:\\?|$)" + }, + { + "hash": "3981912e39113fb38fe41f7908718a82e399d76aa634810160c82a30ec5bbbc3", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "92f6e98ebf17e42cfb2be913fd46bc1881fcd9015921ffa7fda4b648367d0858", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "eba94b7cd7294ce3d3a0a8bebc6fa11d9f7f71bb9a509934c56450607e6f2ab7", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3fc0e99d2901234b511146a60a5e99f7e723a06372831a33726b5362a14b2ff2", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "72abad34dab249ec305f7f1f754848c606caa41bd8cd8e9e35f8477824a58a73", + "regex": "." + }, + { + "hash": "2f12ce21b0079a65aa809a323b64cf670cc757227e3f4b817e7df655b6233249", + "regex": "(?i)^https?\\:\\/\\/feqadgfvqad\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fbe3a72ff87581d6694ea2cdd0e1eb09676c38beb9f5bcaeb79bfe819e9ee17e", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "81a946459f8c9d5229b036530cda37938f46b0a21e1e3c35132eb9f18b89adbf", + "regex": "(?i)^https?\\:\\/\\/jenwnnzds\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+ljRx(?:\\?|$)" + }, + { + "hash": "21ed6f56c274d4bd9001fc9f08b6fe113b6c322964da497cc213cbd56c287dac", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1f47704e2cb0e17beaa5cc1ed9406daca4c73e544c22cadc8af288fb279b7474", + "regex": "(?i)^https?\\:\\/\\/undynedecalimageidroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e5b83f0d340879ff1e0fa0cc5f90708e3be1c2a02daf73aaf052580e3a03add7", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "63ad11ca17e1450fde289fe467ca5b5999887a44d2869a9e411d7abe3dec9a99", + "regex": "(?i)^https?\\:\\/\\/qaedrgvaqerd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f88578a9bf7fc2d4e3fe5db1c45599e8d25853084b4b6e68a5853a09024ceb28", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "63cb5b43f64e8b623f27702b503f6f28cf80125ce951f595f3ca16d14537cb4a", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8ba15749bca19fbc239030ba2689e1d6adc040a06f69c6241efdb3302effcf03", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "eadeeccc675a524979509d9f53fec696049d2cca526ef607771dc1316168f332", + "regex": "(?i)^https?\\:\\/\\/rqahgbaqrh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8f645961c2cc318bd7031a0bfa95ea87836b0802cb07284e0ac660afc1a49ac5", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2656faf634d609749c78896933d40e5be636341427710d82430c47d4d0d82f77", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7637c5878c08fa8253b6c0db3257fac2d8218a1c7831d16507d2e2f052afba77", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1a494a3a798ea8caaf5c9d9ff060e763d4a22cdceffc6228c484af80cc281c04", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f0254613f696e480f3d50056768bdd8dfb659b52a5b8bf47543a66937679b890", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3116220be28e250f35970ab7d6d65383c08c98cca2a3ff89a5b8f86a7f6f63de", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d07f658c74cfc903aac28e6d8786d415c8ba033b0386530b59cd4eb7e30b2ded", + "regex": "(?i)^https?\\:\\/\\/fhdgfdhgfdhdfg5676767\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fb2928b670b657f89ad8936ce6d5d80e1000c272e7316a960569d5fb1a8854b4", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1a2e22f960e062b7e378f7d9f1e04fa30350f177574dea8a3ca90ffb4797c2cf", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "25e100af95f15c6b6130df50660fb516d78cfb3f1d7777c4d4bb4db0aaa42ce2", + "regex": "(?i)^https?\\:\\/\\/feqageqa\\-geaq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6e09190bcd6bbba61272db0a6f8ff0e79bbe6184ca9119748676a92b2e45ce7c", + "regex": "(?i)^https?\\:\\/\\/hbgqaeh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1669813d325021d6602b5da306cfa3061654a8426b88ade82a7ba1e4e1e3d480", + "regex": "(?i)^https?\\:\\/\\/hbgqaeh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "06c229dae523c8afb9912a0aa318310d718d6611aeb600bdf256691650ea4d7c", + "regex": "(?i)^https?\\:\\/\\/fhgfjdfcgdesgdsgaszfdsfv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6a9dc456a7e93f0faca57e4b2889d4b705c33d8982a52bcf983043a3029e4025", + "regex": "(?i)^https?\\:\\/\\/gqaehbeaq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1a4972bf6ef982528003c23f71b82da502261e52653c5271b1dd8667924acd2b", + "regex": "(?i)^https?\\:\\/\\/bitcoinsupportnumbr18883095777\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8531e73800b23e62547a634083ef125fe2b462c628fce9193465c0bfebfd67a5", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e536214a240006594a299511d369835d1bf207ea3caaa43adb3fd03de03313f7", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c298bce9c3056752ae865f1aea8885c1734538b25252045d04a5789caa27fbd3", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "12312046c07acf0d178c6f7ef27a4d9400fd27a5e320c87710116ae24954db46", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "60429e13212f2efa294558c489c5f5786995159caba6467f5b343dab00242000", + "regex": "(?i)^https?\\:\\/\\/fr\\-track\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b5a51504097142ea2930cf0209166b23f218cdc297836417cb0338be7aa38028", + "regex": "(?i)^https?\\:\\/\\/dfhfgjkgfkgfiyfifjfgjfgjujgjjfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "89038d8bd6166ed7fed042eb96fe8b366527a1a20f9f8ec7d4136c0f359a278a", + "regex": "(?i)^https?\\:\\/\\/fsdgfrtrfgreregdfs\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8d1901f2a3f691a9a413d6932d1a7dfd27a15b69e2d5a85696c05b17d6523683", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "95c771a44eb73c84e3b1cec984628b42d3fcde99706682e5e04edf1edd9e248c", + "regex": "(?i)^https?\\:\\/\\/gfeqageqa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "33fe6dfcfc1c1c2d9eee657e163f3949f10a1dbc7d8c637d81d9bd8fce469704", + "regex": "(?i)^https?\\:\\/\\/fhdgfdhgfdhdfg5676767\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a49f89ea18d4e4ba77911df6637c916ae32003b63a37befa2fc9068b87bd6af1", + "regex": "(?i)^https?\\:\\/\\/qadgqadgeqa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e41a4c3177ddde8bac31400acb56b98a019405c6d256a353a2da5ff82d120605", + "regex": "(?i)^https?\\:\\/\\/gfvqaedgeqa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "76ad1b993a4d9719207de1f76ab4c355fc85cade9516b216a02af9afa0c27fcf", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "658a125c9382b7edbf0df896def10c0ca43ee3be00fd52c04634e1b23f648d20", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bc0d4033b7c82c03de4be03c60110dac1a969bb20279c95d73045dbdbf28b716", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "93c0bca1c5361cda182f33e3decff8dc9a3a87c566474143c85b89a6a96bd423", + "regex": "(?i)^https?\\:\\/\\/nerhjdfgjdfgdfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a61fce8e3d87173241cec6a4ba620d9e26ad3a660f7a74a78d253321a8dc5b34", + "regex": "(?i)^https?\\:\\/\\/nerdifgsdjfsdf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e78693356965269d1b0b5482c427207095536a7f9a1b3f6fd3dfac387f41abe1", + "regex": "." + }, + { + "hash": "f2aa56a2085b6766417aa140c411cce3120efd61e00c4ec80ccc79bcc86a7d40", + "regex": "." + }, + { + "hash": "7a805f56a065f097c8c101dddd6b8415dae3c2ff9c5130735d0b3a14e84a3266", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "48f054fc54ee63a527104100b0bfb1f8623f86033ace5e8b6802a06b01f91ce5", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "57bf2845183540cd7c11e32a88f7109d698471876100573816c55afb3c417f22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FV1sXpoy[\\/\\\\]+B41xhda0f(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "11ebd623a3878a8f0ce0ab8f3abd9c6fed5a9dad0df68ff1982674244b6c865c", + "regex": "(?i)^https?\\:\\/\\/att\\-108381\\-103623\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "807d94dda2d65c1bcf03ca35fba72a1a91471d46d6070efe940995e4c4d7df92", + "regex": "(?i)^https?\\:\\/\\/feqagqad\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3dc64da2b4d78b4a5c1815182db73822c2e6d52442cdb7d8234b4a474b9bf1c3", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6797633995133ae1c7f2ad474c2c59893c6dff55d208a4889c17bcbc0bae8d15", + "regex": "(?i)^https?\\:\\/\\/eqagaqhgbx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "be282ea7c232a35048a4006ff08f4145f36cbe7f9c3a5740aa3e85ae272b467d", + "regex": "(?i)^https?\\:\\/\\/nzerdjfgjsdgdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b0132f48edf47c877353e76942edac114c63b3a633d40b59ca224e9600cc8f21", + "regex": "(?i)^https?\\:\\/\\/undynedecalimageidroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28e703eb63d25d30eb907bb7182107efe728f521321a97362eb075a33e3ccd7f", + "regex": "(?i)^https?\\:\\/\\/tracktrace\\-nl2\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c1f5dd56840cb34a3aa1c2c1b967df82b3f65495d9c89a22c3fa7a62c3968d73", + "regex": "(?i)^https?\\:\\/\\/zhjhefthdhgdf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5504c25374db98d0ab87d8b1c3fba82a9bf8f93a9a711c44aec5b59be57eda63", + "regex": "(?i)^https?\\:\\/\\/feqagqad\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a8e7329c4cf13c994bb9724481ad4b6be2f518abab61e0291a206f12152852c3", + "regex": "(?i)^https?\\:\\/\\/feqadgfvqad\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "51975a71c26745938b24d2fe5fb9286f4386f4c942637182d0fbe5ef0e15cc1c", + "regex": "." + }, + { + "hash": "55219afcdf9e47ae04e8d27b2938c2a0a3c42581fde93fb4a920bf79994b6541", + "regex": "(?i)^https?\\:\\/\\/eaqdvfqadg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bd49b2279b39d5a9905e3dc1c211938a0a20cdec8ca66f4d88de47f98a690af3", + "regex": "(?i)^https?\\:\\/\\/dsfdsfdsfaa22\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1ce6ab691a76e6fdb639efe31d9f5552e00356eb599d82a5909955a3e8ac3700", + "regex": "(?i)^https?\\:\\/\\/feqadgfvqad\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "86830e2bf1db44a305f2412500198cff14c4ef62c261b9d2b2c33929edf988d8", + "regex": "(?i)^https?\\:\\/\\/feaqfeqag\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "39bfb6d6d1acb53882dc17093bf9d50e58e7ca7dd998fb6237197bb27cd179ba", + "regex": "(?i)^https?\\:\\/\\/gqaehbeaq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "edeb5fb3260eed3990968f8d52b155ae55102cb1cb15c5f252a97a28a7f05163", + "regex": "(?i)^https?\\:\\/\\/nerdifgsdjfsdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "93a2e989de807c0f26854ee230fe338a9a48ab806f120e02a756e69d64b59848", + "regex": "(?i)^https?\\:\\/\\/gqaehbeaq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cfc80b61f66a16da05707f5789c91e75d9594bf5c1f76bbbf4a9aa41584cf76f", + "regex": "(?i)^https?\\:\\/\\/nersdfgdgdfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "76ed68c11ea1232e4a1de5acd76ddbc5bce13afca0eea19ca07e862f7e79b904", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a434ce5ad383309ee4958e350282ffbde941a30c0e0933dad4d9580215dcd618", + "regex": "(?i)^https?\\:\\/\\/ceqdafvqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1b27ee60b3d9f5b3ea10a8260f52e774b2f84c5a56aa071d4c52dec84dd531e3", + "regex": "(?i)^https?\\:\\/\\/nertifdjgkdfjgjdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c64187dc129b891f80862793e17c75af4b00f0b2a7441b2cfe5183218271ba79", + "regex": "(?i)^https?\\:\\/\\/qahgeqeahg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6d0bc3c17d7e9cfd505a33c8757c24439213a1d5177e23ab5e83f8170386e2c1", + "regex": "(?i)^https?\\:\\/\\/track\\-fr\\-it\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "27a25668aaff2b9173a3d1eb39d59d143723c4a128f51ca8f5cdadb841cdfbbc", + "regex": "(?i)^https?\\:\\/\\/aqefgeaqg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c9eb8785cd8dd7d2634db52db5b391141697208cb7af75f5f058466ca3067a16", + "regex": "(?i)^https?\\:\\/\\/feqadgfvqad\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b8f2265b4da143f15e2143cc377ce0eb2b249743888314684b6fe16c42b5f9a5", + "regex": "(?i)^https?\\:\\/\\/vqagdqaed\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "550af6744a7bb21882ef49a803576654d77a5daf711ca1a6af1ace383b24f84b", + "regex": "(?i)^https?\\:\\/\\/nerisdgsdfjgdfjg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1d90cd037fde9fab098051c352aa53776879617d571d5614783a15f96f535f6f", + "regex": "(?i)^https?\\:\\/\\/bitcoinsupportnumbr18883095777\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "52393e1121e4d99d6271a4973e368952dfd93b39f21bd21499b3e66c9e74430a", + "regex": "(?i)^https?\\:\\/\\/gqaedgvqad\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a9ba46009296fccbccdf7d7cba2bd38f9515e551eec0201911bdee92d713dc65", + "regex": "(?i)^https?\\:\\/\\/aqedfgdaqg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d41894b76a5058a2c6ad7caa187ca385398de000d28498c24856483a092c2aee", + "regex": "(?i)^https?\\:\\/\\/gqaehbeaq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0b302e9ca03531bb1702759d30260591cc7195e1ce296e4259f07b6e2a571218", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "12d69b260fe202f081b61df2aa8520fe69eec49f089181b65e0d34696d7ec298", + "regex": "(?i)^https?\\:\\/\\/getr0buxn0w\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "83c062f70d5c4e76a72eb936ca3b06a157d8493492dc511468eba7f254475c60", + "regex": "(?i)^https?\\:\\/\\/getr0buxn0w\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "eda6831057f0564c63151072aaf3d97bac18652b8061ce9291bde96969d56e77", + "regex": "(?i)^https?\\:\\/\\/gesxezi21flebe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c5a048e8499ac39f00a4b32ea2d709a04ced55b98eb28d3ef438de3e589c19b8", + "regex": "(?i)^https?\\:\\/\\/trxezxe21clubse\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c9199f633e7876b681f76dbbee90ddd9f93be58cb2c73469cb544e11ae7e040e", + "regex": "(?i)^https?\\:\\/\\/pub\\-85d281b36102482a82b0a2e36f1b341f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c76d5e704be6b08856deb345e8ae440b526079b95bbbc85fc5ecac781213df6d", + "regex": "." + }, + { + "hash": "9950a40f491baf0d1c1370dc3d90103cd4074892186182ed22ae44d5c8a539e5", + "regex": "." + }, + { + "hash": "2ceb89271321f907b950d46c9831b45f19e9ae29a7dfc259ec1a850d7d60cc64", + "regex": "(?i)^https?\\:\\/\\/zeprx21clube\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "03e0db264466252eaecaeb9ef6609227b16fe17c18f85c3cb1c1f1d7f98578b6", + "regex": "(?i)^https?\\:\\/\\/zeprx21clube\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3c523d3f0db97e791df266cb8c7c89fe87be0d0cb3954982e6d0a0828748da72", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cc9ad5ca8b26af79536f552f0a96146ecc495c667699ad4dc745b56070413957", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1e5068a23f77223974fe8546b4c3b5b246b2bd3c02689e2c5d68ab0b3fd6d026", + "regex": "(?i)^https?\\:\\/\\/kextsisq21flexe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3998c2f2ae210a91c2903ec2a2772808d73ed8737f03b73fb85330cf910741f1", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a3fc9d8ef26d7439243d26479df1e7fe9297059a5a49c4c89ac50169402fdd5d", + "regex": "." + }, + { + "hash": "6f7a37824cd547368b1e5dfd0d05b727198c498d49530185832807a4cd6f0aaf", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8e2dafb9c0ddca451a0e80726b0b4f7ef5212c9a78734249ddcc9d44ef81329d", + "regex": "(?i)^https?\\:\\/\\/vikiiee221\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fded0913fe589b7727d5ddde7a4bb9ea0d46ad55853e943d4786316ab828412d", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "edbccb339c2ad367d1b01d7cf6c7762f2f8f5639bc49c8041f85d68ee7239b5a", + "regex": "(?i)^https?\\:\\/\\/bromredhulkivr\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b109bd762e1e6a335461c8275c035178810ee394c009aa920881e6dbf3c61ba8", + "regex": "(?i)^https?\\:\\/\\/fokiiis8676\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c29f7e5e8c19a2a7e4182a4786382e2684c8125843ef915d70b35b58c73a91e4", + "regex": "." + }, + { + "hash": "21d9c2ea03d72380408c8cf249e9fa20a7f643b1752896e909f7a0760d67cf6a", + "regex": "(?i)^https?\\:\\/\\/gesxezi21flebe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "64e5dba80334b58373d84350cc296a64c821bb4b34017248991bda1387ee8561", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5b396fead5eb74b59f40a8a5e5617ec4394f8ea051ead6c8b4bec58f6d1df85f", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9ca1bdbc5a13ab1bb3602367f09c0438157d6705fd409d2400b0e54dc5b8d1c9", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5eb218a296b6987e8ca59985a77e561d88b90eebd87ba9878144e348f9404758", + "regex": "(?i)^https?\\:\\/\\/bromredhulkivr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "00fdcbf81cd3a0964a72aaaa97ed01e3e059b1fe3b7b0793259b29f7224eb5e8", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "581eb4100e773a0c82ff8bdbc64ba0a8273491b2001fcb682482ecad4c4912b3", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a2465f114fd5dc8a125ad1ab11ca6dd433481eb2129138f76bc03d9341b8e0ef", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eeb43b1fdae698ec99870b94e1d746c552afc9bd891b2f92d682f3c1c3af542f", + "regex": "(?i)^https?\\:\\/\\/accountreviewclaimnotice\\.vercel\\.app(?:\\:(?:80|443))?[\\/\\\\]+nano(?:\\?|$)" + }, + { + "hash": "c768e12283c6bd090338059dbcc16f614f3d695b3f0e254bbab319d16a25e0c0", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfd22\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b41d86be7f07282ccd8b5e7a2b59563a3bb111888c25ecf139d4341bbbfd32a8", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9715\\-robux\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6ee537e984098127bdc917067ce45e498761c97bac7683d073ad6f11a34506a4", + "regex": "(?i)^https?\\:\\/\\/rendsnoxjdfe\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5f68e67b9892faa41b7a14f9d606e1da00369c1e0a32f1b0e2e990d1635723b0", + "regex": "(?i)^https?\\:\\/\\/kextsisq21flexe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8b3abe97d4da1335cee99e30b126f22dd80aa93c260848f30b22654a605f4083", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b7125c70ee2f4388d3f0ce64b8e63d2a4c2695d4a56d10dd6f39f32521bb9486", + "regex": "(?i)^https?\\:\\/\\/pub\\-adb30f3890ee48b788e4bfe6aafd280b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1b0cf0ccaac60e08aca79a9b6b26d46e3030ad7e50870c19ff2aef1150927ba2", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a9abf0118632bcaef03ad931b6fde1bd1b9ec14ff5587ea9a74661445bdd6314", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7f9aa5bc2726538c2f8c07c21fa4b4c6bae212eb89334b5a30bcebc380907b6f", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8c5fc3a58c41c46821c85235cdca1075601b2a5fbac002c287f72cfe1836871f", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "35d18d17b9b69e9c9b720a72dc95d15ea0f0a14f801df33cd588016605f24a34", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0ceee81bbb8d0c8c1207edd619c900b869ba39df14a479b7db49313bfc1b0d5f", + "regex": "." + }, + { + "hash": "06676f55d93a9dcdb632cc551b06e052927a8d1fd563292075f4d73d31228e87", + "regex": "(?i)^https?\\:\\/\\/bosgskee7333\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "911f853ed0b7f41547ba588945b905e3932c68673c205209c3b486844e015ed7", + "regex": "." + }, + { + "hash": "49178d43aae130f4a90b9444d16dfbdbac05318771a543e1c1b248cb30dd9330", + "regex": "(?i)^https?\\:\\/\\/trxezxe21clubse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9a4275691dd23acc65100f866bfa0b7d96b430aa08a402d6e7f5ba17b831f4b4", + "regex": "(?i)^https?\\:\\/\\/trxezxe21clubse\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "90fac5dde29512dbc42ca8578958b7552f45b5223b84ce3b94bb1d7bc381705d", + "regex": "(?i)^https?\\:\\/\\/zeprx21clube\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "098d4ad4a173e29eab50ef07f233a8fb5d9bd757a1c5309d357ce2cc64c2951c", + "regex": "." + }, + { + "hash": "b3c66a403ec1c473acde754c033991ed9b237c379aaad9c1d58336766c8dd6a3", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6052b80b88f7657748ac5b388f0e28c0073e8fdb28217eed386fe761c2edf701", + "regex": "(?i)^https?\\:\\/\\/trxezxe21clubse\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d8122bd21e9c57216cbadd3d2291ac9d759cd5f680f9449eb8f114493e5bf332", + "regex": "." + }, + { + "hash": "e3e47d09a7a56fc13bc8460c336bb23bd38c5f31c8ffc210fe0664ae536f75e8", + "regex": "(?i)^https?\\:\\/\\/vikiiee221\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d16de6eb5cd2cbe2692f98d8c9177b13bc6e9944ec4775192693c3fd947712df", + "regex": "." + }, + { + "hash": "aea88a12c55c1b65c828f217f23dfb26db8de78f0d1f10def9af99a997823719", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "14f97a9b4de9802af89dc43c7e33a7a4b904b08e5a674bd92031a32b906ea423", + "regex": "(?i)^https?\\:\\/\\/sdkasjdh821323\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "db755b7b0b241d2b98e9cd9bbdc8c705d18ba7a02e230ed72caa7e7c6a6131f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e6n9igt7m(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "264eb86756f271c2808942b5dc521e2647297a156bb1c92a530060c1d506019b", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9d95a41ee33b56a11c4c965d9cf8cb670e3be1dc5db7ca4e59d2cc0061649d5b", + "regex": "(?i)^https?\\:\\/\\/zeprx21clube\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "df455eee37585cd24785c71f552bc58889b5cfa0a256265c872a0d7736f96c28", + "regex": "(?i)^https?\\:\\/\\/rendsnoxjdfe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e80008a0847781d3bc2c40e7815d47afc31bb38377d79bf42ec7b5c049905704", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "fd6554ec65638c54e10e1276b2a399c4eb0ba6339e6729cd97eff22a98b3126e", + "regex": "." + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "d0b9f8277911b9296db2ac797fa7971e48cafb3926635bd7bc816f54c08e4f95", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9715\\-robux\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4fb4d6d40596f81b0522660f416d71e4c4fd1386675b665be1ac9382eb9555ac", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "97f1abd53f13d4e450fb8ad205d9ec18da24e824211ffd385009d5d513e0bedc", + "regex": "(?i)^https?\\:\\/\\/rendsnoxjdfe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "113778d991a8f9e752e3f16ae7b10c4e522f990bbdc2426264ef0b20a9e51929", + "regex": "(?i)^https?\\:\\/\\/pub\\-f542177ef5f04f2784d315cce7259b4a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3f2d5efc7de5c7f0cd921f4a93a8e17d3fd39ca41dfa96b6717c22af77fbb", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7bbee36ca87822109611cb174871c4aa30dd6fc82a980a97ab9195400be2d49b", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9715\\-robux\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1276ef1ebf60ec840257560a54d9bfc855e4b2ba36df11ca9b5ef5803a11a4f4", + "regex": "(?i)^https?\\:\\/\\/kextsisq21flexe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "eedb928eff57aa352c46bc74ea4597719e08bb15654b7b94a5e33d4b536acbfa", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d7518230e7f1bb0d1cfd3e3fb8bed635d6a6c3d4a10516678f6f85e9672ae774", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nn\\.html(?:\\?|$)" + }, + { + "hash": "3adf69f13504aef7693f6574b1ea78638c08f6c1a63c56271007d3464a2fd4a4", + "regex": "." + }, + { + "hash": "bfb9d3b3347a0f4915b0d850ef30ca024adc80a6c3d7f983e82408bce4661c22", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "db183596c77e1efa8bc9fca38bd5afc99a28bbc0ca346e215af49f4a8087768b", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b529b91b4baf0ad4293141e2cb914cb206741290f9ca69b450e58caf2d3f898f", + "regex": "(?i)^https?\\:\\/\\/gesxezi21flebe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fbf620023458c364ad79d5672759b2f4a8c5954b3463b39ce382e47938fcef88", + "regex": "(?i)^https?\\:\\/\\/sdkasjdh821323\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "669216af19323a7e9479271b35a3a90075b95bd292473e3114af7dcb81a03129", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9715\\-robux\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "1f3961ce359b34fb391bb3fbb7cf96df0e7013a40d3e288abdb63889770e070c", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3a490ded1f8ce2b16d618397474c0d7a0dea099a48ea001c1432b7526ea8d747", + "regex": "(?i)^https?\\:\\/\\/trxezxe21clubse\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "4c94406dd41a3a552777837a40c3a44aa7f894c8ed0eff8003298b4ac17bd462", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d4278b1ffd167814cf9eec644105f3490af6e80bd0d1e628dac416ff885f33c7", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "43bc010f6e5bca09509c0d839f9e20e103f254281b2447c67a75524c843d4f90", + "regex": "(?i)^https?\\:\\/\\/estanepbcry\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1cf96843cb3eaba94850f873bcdde2e3fa7bdd7ca6dd9ac8ee099caa7ee2d29a", + "regex": "(?i)^https?\\:\\/\\/sdgteyhgy6rhdrtfghdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "879a5138875efe9eef5a9d9285327a9a4cc35aa82921609ddc8e2fcea9fad38e", + "regex": "(?i)^https?\\:\\/\\/estanepbcry\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8a2fd25c8901fcefef3da17141ed892c03effe617dc2dfa1c9b0d7da2742c928", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_armoured_oxy[\\/\\\\]*\\?login\\=cyoqkioqkipayyoqkioqlmnvbq\\=\\=\\&page\\=_wetransfer2\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=null\\&no_psplash\\=null\\&pmax\\=null\\&vcnt\\=null\\&use_cdtimr\\=null$" + }, + { + "hash": "0a8630a27862ac6695fc58f1f0bdc53466452fb170cbb5d073ff86974319bb81", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a1bf4ff967850f508754bf99c8c277f30acad6d71899fa5261c8549ea7a98549", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "22a1dff0f22c509785ce12c7f56e7332a1d4f0d088bc41363217d483c92a26be", + "regex": "." + }, + { + "hash": "15aca72fdc6b3389a2db624e2cb0844642fa5e00a24e59bc334ea4d55a8c0149", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "97cae0d733076f06eab21fb4e3ceae1f219b9f688000c27abdf3424b743e13c7", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ee4ce1dec83001fbe40ed42c4552dd54bb360b5491678a496b26fc499a1e8358", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "80d972caac70dd950efdffc44da0b582afaf01e21cf75ec7fae0faef6b0a3568", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b46a58762650186b4b1e71eec37610d764bb68109275ec7dd8d0dee8202a5b31", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "00e3668365ca0843dac742e773de1e9b228a4371f7ce2353e6c1d05a4e6bed7c", + "regex": "(?i)^https?\\:\\/\\/rendsnoxjdfe\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "66c9fcce711bd3be45354dfc3d049d4b2b2f1a0e3bdb68b69cf6833ec97805b9", + "regex": "(?i)^https?\\:\\/\\/getr0buxn0w\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f8e444eb50b9a725b52f7f3ef72e5f1a067709c9b9dc0e19a1a63b3d074ac362", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfd22\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "baf85355d339dce670d1a0bb9faa245eea0ef4e9af7d20a84008d8fdb37b4335", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8497b8469fe8ccfd2e375322c2ee86ab399a176695c9163943b5360698d1185d", + "regex": "(?i)^https?\\:\\/\\/fornitskin1\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3376d231c3c6c802018e50b1e2460a341bedeb755123d4ffb97f13039fb6bf1b", + "regex": "(?i)^https?\\:\\/\\/fokiiis8676\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "03f6ee80a29894a4f1e2305754470c1dcdd1d741c9dc6f27d287a04d47b0e6b3", + "regex": "." + }, + { + "hash": "f11c46f3c7ff6cdfeb03818b892ab53644590f48d2203047a74b4f6ffd49da11", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "38cf4730543f48a56ccbe9cd9ce59ccad0ed79ad693d67241c044ac3e11102f9", + "regex": "(?i)^https?\\:\\/\\/fokiiis8676\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ce558f6c87b53dd8e4d9cda733eb9ee4348049c97d814a76da08c0800f83b8bc", + "regex": "(?i)^https?\\:\\/\\/fornitskin1\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cc21fda14c66db3a7e651160fb570f70788b9f0fc56cf69df661b04a4c2685e4", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a640086164efd7906ea7a7d476084315f4e2895abb5c95f2dfe4cf25de026534", + "regex": "." + }, + { + "hash": "674af9bb53e559e0383d779dcb23ae234348e41d6d7da532d67d204caaff5fbd", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7a85fd2502202eb09a323d7e8f309e82c55c267bf9d9a50a022135ed71012907", + "regex": "." + }, + { + "hash": "4cebd40ae78ae136a6b00ddd756a496b2b919fd8a6653c85d368023471066056", + "regex": "." + }, + { + "hash": "3a9425de3ac08bd162715d3e53137287bec4b7696d1267c69c7ebaebd86f6034", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+td(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a70aef6cbad8f5554b456b45ca2eaa5d71ab44ff01ebe5e53b55ebbfa014a5fe", + "regex": "(?i)^https?\\:\\/\\/bromredhulkivr\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "09e87400789756e2bab860ac8bf87bcbfcda4f08116cc0ff2770e71e8eb594f3", + "regex": "(?i)^https?\\:\\/\\/bosgskee7333\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c17d4b90c21d3f9b32cdf153be3ff01b38e351968ccfa397b1089ac46c170d71", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ddbc40f9442c85b821149487a706c7ea087901618faf6c7e5246922aca0e4bfd", + "regex": "(?i)^https?\\:\\/\\/sdgteyhgy6rhdrtfghdf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5b0d88919102b04e4223f40fc7ff78d4fce30945ad7a59712e0102ab1fb686eb", + "regex": "(?i)^https?\\:\\/\\/fokiiis8676\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "42b41a26144a612fd6346166b3bbf507c9dcee9ce32defad730340ac7f67363a", + "regex": "(?i)^https?\\:\\/\\/getr0buxn0w\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b347d3a0b2fa3f697977e80278749ebe8cca60144230e8eec6812181c2c176b7", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f756447457ed329fb80614ca4fa0b3051c7d2bb9d3f691e4c7bd34c10463a0a0", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "3b06465bbdc787fc48c61e9a0dec7b1286da0878c965c9b0057a03c90c375a71", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d243d3c22ce21b224232559b99debf3fafb2ba995e319d147f9bb285eb40b7e1", + "regex": "(?i)^https?\\:\\/\\/sdkasjdh821323\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eeb43b1fdae698ec99870b94e1d746c552afc9bd891b2f92d682f3c1c3af542f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\=Y29tbWVuozOTcwOTUwNTM2N(?:\\?|$)" + }, + { + "hash": "465497328cc0aeb76bf27c5db8322fb48c26a3f3ecc20bd627d87ce9102facaa", + "regex": "(?i)^https?\\:\\/\\/brokenplanetuk\\.com\\.78\\-46\\-57\\-99\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "272308e68781e53df61638adc4141fbb4fbc8eb774cac8233aba29f23bafa686", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ec14ba5d25b2ff05042dde9385a8dbf6374f5d2733aba149c62e13efa3afde98", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d3c57ce3d5e8f98d9b5aacf1f077a340a79afbeb2147e17ed1166523a7bc6707", + "regex": "(?i)^https?\\:\\/\\/sdkasjdh821323\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0397371fe8658b7ea9d32d8dd49172c925b70d2640ce5661e29ee6447f75f6e0", + "regex": "(?i)^https?\\:\\/\\/sdkasjdh821323\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "36f3b95722cc7eb1578478250b373cf9444cd1923d4c6b429450763cb8a27963", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "daf1be503d649cadd7784eb3b9682a31da299d799afae6628cfab0463b846db4", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1cddb74c6063bc3b66a5f8dcbcb27c62de9d0ee3f149d3c8b1bf16dd1b61da7b", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.212\\-22\\-82\\-83\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9699e5ea070877f8a0c5145b1b0726bcc8e568c4ac0dda3ebe029bfd7d93db37", + "regex": "(?i)^https?\\:\\/\\/lmc67323\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "83bd25edb5fe103b1ec9e3fde61fd71b39237f747f321b403f6cff8f130b31da", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1b4691d24356f5de10a40131bdeb5dc180421b1b7cce1e5a1e9c2709a50c2f52", + "regex": "." + }, + { + "hash": "30db95eb3edc232736c82b3653c470dac7d250966359e6daf86c6a153d5ce4bd", + "regex": "(?i)^https?\\:\\/\\/bosgskee7333\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7c065803aaabdf64b2f06c62a68cb96dca7f8982a20efcdf9951d56ed2325d63", + "regex": "." + }, + { + "hash": "06847bcea4380ba446671a2d104171c746242e3fd629c3554aceaae5e77b9096", + "regex": "(?i)^https?\\:\\/\\/gesxezi21flebe\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ad532c429b0ec049c606ee2cf172a98523138f362bd4be1a8b1decce8b4bc78f", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "61d216524005970f9fc6785d3e2a9ab5acda46b1f6bf6aafd64833d387449aa2", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9511429e05b00324f34d502de3a92ae0aec4fd29b4d2eff7544ad40b2c25b259", + "regex": "." + }, + { + "hash": "eebf0505ee0cca3177d4a5aacca295b4350d3f0d2a2132353f59184db0255f97", + "regex": "(?i)^https?\\:\\/\\/bosgskee7333\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d8c353b5304053aadf9580d1c8087a14d77c5a74e51750c9d291c93d3daf0dea", + "regex": "." + }, + { + "hash": "c940d9949ee869afb5142de82a9ff085621583809e7b5c01d679ba9eb33e7004", + "regex": "(?i)^https?\\:\\/\\/trxezxe21clubse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "67f44756bedfeda943403837e9e433e27f647864de06d8910ce33b8538f1b25a", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e3bc1e8d63b6d9121880e85bbcaee60c79bb75c0a5df6ca5ba4c7cfb5856baa6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+k(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1f2144bb9408a8b7caef3706d4ea6f81567654fc644487731c2e9ec777a13b67", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "18f2b031f1d1e244589794c1a4b6a592fc0ea1f168601e628e1f29e24254b061", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e2ce198e5ecc17ff37a7062fac3718b5b300b727c607888698bce4e0055fbf76", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bb2dccde242725f42fa40d6c6a572f1b84a8730da160a877d9eb7f887d3f3065", + "regex": "(?i)^https?\\:\\/\\/bromredhulkivr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "29b3fa27ccf99adfd3f7ef4ee5f2fabb5ba8ce62fd184c28cff2a00ef34f6b6c", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8b4ce0f40817d3768653cbc27574a66cc9299733694b84f3f042f071828a26af", + "regex": "(?i)^https?\\:\\/\\/bosgskee7333\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2827c7ec3b09cbd59e9686d072f9314f5e8e30a75b2f0dff2c2b38b60bfb56a4", + "regex": "(?i)^https?\\:\\/\\/zeprx21clube\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c5a457234ca6437fbf463ea931c2466b12816d2d0cb36434369ff8708b48bc81", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e7c598ba75fb56a010040d581d14c7545ea991c78cf2ef78c70350af6ed77afe", + "regex": "(?i)^https?\\:\\/\\/bosgskee7333\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e38c094daf7b45df3f3b2cb3af20185b391fa256e976c241e8c2f406932d6276", + "regex": "." + }, + { + "hash": "82878ae0419663c087a2fe473a7f028f1345a8fb98558370c6714cd065ebf9ca", + "regex": "(?i)^https?\\:\\/\\/kirankumar636164\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ee6854a983725cbbb7ee7d3e7a1af17c8c838ade31ae470532080f148e3cf3f4", + "regex": "." + }, + { + "hash": "deefde3f20cf88bf989bfa77625f4379c73cd1e9f2a406b270690b945a2dc3da", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfd22\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "63cb2f0758b93e9f37a489f8e00952d5312470076178cab9d7dec151fcaa65d6", + "regex": "(?i)^https?\\:\\/\\/vikiiee221\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "de8c82a06c3f387b549c5b3f51a30ba6a34aa33b9ac9ce385aa971c53a685094", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9715\\-robux\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "594128c3967070831c6bd5c1a18eb4056aa06a36dcb79a49c8429395186facc2", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b5c741a702e9028da530531434e48d07a6c00d618bf0c5d83bd48f5d238c970d", + "regex": "." + }, + { + "hash": "3c8f14910bdd04767b068a6707d8deb42b2794073948b1be07833608381bb863", + "regex": "(?i)^https?\\:\\/\\/trxezxe21clubse\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1a8ad4c6c5179ba3a7d399cffe5a732c035f29294c182e7f0e53a11fd88f2bda", + "regex": "." + }, + { + "hash": "0df499013fb7661fcaf1df8db758850f1fcb1f0592244c94d3c83bb4fb3c016d", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfd22\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c64698940d287b0972a1b6cc1ace43fa09241f50356964c680a323f6d183319b", + "regex": "(?i)^https?\\:\\/\\/fokiiis8676\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6ee585e32a60f481e699fdb765763c252e8c25af52937dc9fe6ac6e20466b4f4", + "regex": "." + }, + { + "hash": "30c7fab63a52a772bb64ca818cc5c42813f3529cd23c659736d549fa76896b82", + "regex": "(?i)^https?\\:\\/\\/kextsisq21flexe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8268e8b939cf4c6fb031b2b8217253facffaf071da5cc32c3349486245878fb7", + "regex": "(?i)^https?\\:\\/\\/bromredhulkivr\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "90969b0863592b3b5a345d73922a539863663462cc804a5ce1ac7257bddd9461", + "regex": "(?i)^https?\\:\\/\\/vikiiee221\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1e192fc3ece191d184258420b0ed7fc519831077724190035472984f6d6c9c02", + "regex": "(?i)^https?\\:\\/\\/estanepbcry\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bbd43645cbac2986fbcc679230a8f6d2c87de53df1fa213ae0421cd3b6572226", + "regex": "." + }, + { + "hash": "9404ca2feb1628e94892645e2ab4ce2e4accc9501db3591d910338a0c1332db9", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?parfum\\-homme\\-[a-z]+\\.nsuizct\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "a6bf2c71a9749941fa614deefcab9bb92c6bc6e53cea513eb5bccd610ff7817c", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5e89548ef1053ba29b734f66c4f02c830bc794fff274b9a5e528c9ffe33972f8", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "75c0d92f72ba2b114a2a34567114b1e8a5323519cd4eae4892f57c1b2f169fa2", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "648a70b4062603ad763ad1abdde725be2f72bf9cce30aca5b3364d03f8e8a7e1", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "890df18090f288c9590951f5587bad3789461b9569a1656263fbee9b22649f08", + "regex": "." + }, + { + "hash": "7c631802ea24a6c1d4c354c2bbb8f550983406e05536cef74a1704f5689d9a8f", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f4689d52e5682db54cb9accb589221e21ac1c25a81c798466c0098af1e8551ee", + "regex": "(?i)^https?\\:\\/\\/sdgteyhgy6rhdrtfghdf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b62b6c0cc2a6df092d30e2f6c5f8bf9b4a6e352910dc9edd0e44a099180d8ea9", + "regex": "(?i)^https?\\:\\/\\/trxezxe21clubse\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "671017debe26788d44cc74b4e4a540372454ff14b6472bdeaf7c7357b77f021c", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "5210a9e9090551eccd50f1e2dcb2606f87289d782335bd94f56573663d7e4bd9", + "regex": "(?i)^https?\\:\\/\\/gesxezi21flebe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b40293daf06d12b347e600de6751ab229de118d5d23c4e98cde505d5a6c1d4b2", + "regex": "." + }, + { + "hash": "fbe9f1465484de2807bcc8425c67cb24ba16dd8e4bff88c32c5031d90c4b6979", + "regex": "(?i)^https?\\:\\/\\/fokiiis8676\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "244494ce4e98be76eecc757f6204143bdc9d969ffcd194bd5e0daf21c1e7b6ed", + "regex": "(?i)^https?\\:\\/\\/estanepbcry\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3ab261ccfcd6766f15adc02a208e5c5d32fda6090365053b136c79d54797a1f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "41fc933f540255f5f73a7ba69726230556038ab52c6206dd4b4a9c6028eef4cc", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "040e701fc1f60433a27796233e3536723c29c62b85e4855a0c22ef7d2652c0aa", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "07395e2c07c75f605f314fa5af261eccee162e73dd2e2c0901c2290903fa9433", + "regex": "." + }, + { + "hash": "2e3565630e5612b6fa0fdcf8681c4532e0e4ccec44ceed6d06531ece63f90ed8", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e6880ef5170d87dfe4f859434954605756e1ec2579231093a9cae6f3c38384b8", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "83860c5f56edcd7445e7767978687bf2b839f234fad535b1950ba52b8c56de8f", + "regex": "(?i)^https?\\:\\/\\/bromredhulkivr\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "36c3ce721bf012a48a10bed2827040216282b1e834f0807369dd49f14a34e5e3", + "regex": "." + }, + { + "hash": "097cd76190502da9a9e3de8448345a680209b60b4978de7b98c634a989c6644d", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c88ee0a29108d999f8ef4dff41fe02e47e5e56376ef5f40b6b82b712866d59f8", + "regex": "(?i)^https?\\:\\/\\/fokiiis8676\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1a9684a3965c65e4338c478718922a19b98305131cda8c891769858c8b79bcd7", + "regex": "." + }, + { + "hash": "cc5af8aef714fce7d2840b15579eba5d9423fd54b7682b2362ca4867d75a5a6c", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "521356b02c621272e515a27d9351f0eb39a42fc25c6c131bb9c6e6a6b8cf9206", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "53ef84e602b392cae2f80fce287b24e97a41bfc029053bd2ef684c0d80eb69ad", + "regex": "(?i)^https?\\:\\/\\/kextsisq21flexe\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4d51561de130a40415b68793982a2b8d51aeb28ae68994b4b8b18178a4ead08d", + "regex": "(?i)^https?\\:\\/\\/getr0buxn0w\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b3dd08e5c73982f70dd1fc5cfe206120b4e96fd75a1d7002334c7a0ce713ba29", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6ff26fd778b9dd08c3ba2779d103eebab101e7ef99248fd334a44692044783bc", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "c78b63b9b6eac6be27cfc4f6746a8e3527363f6d86465a86be73ae7e8b32bc81", + "regex": "(?i)^https?\\:\\/\\/kextsisq21flexe\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "13892e8991958350fb5c8bcd07523934ef6f3a5ae8d97a0cb42166f0be7cb5d3", + "regex": "(?i)^https?\\:\\/\\/zeprx21clube\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4961019818aa475b7171575da20a75a62fc5a3f1c32f66eee19c538477acc956", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d1a709ddda0e989e825abf8552620aaf86644f03afce3a2b03ad98fb79124ee9", + "regex": "(?i)^https?\\:\\/\\/kextsisq21flexe\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d826d6119ed8cdc7c8fc1e370d772b28cecc226e66fa1dbbb628aab497e7c29b", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cf152c15e91878d9a10dda1124f1817637351c07bc12b9078cd6ead4631ea701", + "regex": "(?i)^https?\\:\\/\\/zeprx21clube\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "408b201ed14bd6b452e1cf6b3e26de8ff007ba75df71bdc7ac79afa4247a1a78", + "regex": "(?i)^https?\\:\\/\\/mail\\-yahoo\\-01477\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "05413ebd69ca23ae90d972458bfe845e4e686328625dd4c393668791989ef833", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d42705242b5886f080bec00a48526de3900f121697d1863036b21c18362b8e92", + "regex": "(?i)^https?\\:\\/\\/estanepbcry\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "28bb2769554259cc9aefabbc8130dc001d2eae5b37a0aedc1d5100e8653c5c28", + "regex": "(?i)^https?\\:\\/\\/fornitskin1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e0a2091a016b54d9043dcc1119f99fedcd4f97b34a21630a85d2c393b4cfa2a9", + "regex": "(?i)^https?\\:\\/\\/getr0buxn0w\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d89d070eed72848564647290aa530f3e2b6483eeae159fc6c9b05d9106d473c0", + "regex": "(?i)^https?\\:\\/\\/rendsnoxjdfe\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2950178efc42c677477ac6c06a24259a64f217021a54cb9f1930b612cecb9679", + "regex": "(?i)^https?\\:\\/\\/bromredhulkivr\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "966193731e4ec70383e5a8b48bf0357e2293d59e2733fe4763303f4da51ade3d", + "regex": "(?i)^https?\\:\\/\\/coxtesz21friclube\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b14c1191bf5df387578400f31da6712d4e436741e4abcafaaced2c3454dad387", + "regex": "(?i)^https?\\:\\/\\/estanepbcry\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "81ef1040b19102eb212bedf7cb5ee0b365b787ab7c7c3895efbf1e74486d3658", + "regex": "(?i)^https?\\:\\/\\/fornitskin1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e41fb3347140195b4c6adf8650caa0cce93d03df02c2fff6254ed65c8ad3c62a", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e04e77e20d4e62c6beafbfa951e8285a3097cc5071ceae8e0d838dffeda0f2ac", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfd22\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f8d4f8ee851162a4f19db866be0fe20162c0da78e266e37d1be46aa8dac212ee", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b1f0d3fe27c2e1119ff5af0addc0354569f891d23150b18792501f7886b5051f", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6a797037\\-4cd8\\-4398\\-b3a5\\-44a75897892c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "abdd2ee3e40ee81ee8af0a956891f8e103d27ac9bc892622817e6302f3ff299e", + "regex": "(?i)^https?\\:\\/\\/central\\-rnc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f4a235e48b8051c2195c1e78ee10f0578b476d0a6e7b40dbe79492b48f2a412c", + "regex": "(?i)^https?\\:\\/\\/vikiiee221\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4f003c5ee6ab09d1f8868e0faa3257ad9b5b49fc9db98d529128a1636ce4d158", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83233\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5e86dbe1998674dba524e47a7b6b9e7925c27b11f14f10ee7a26a05c4559fbab", + "regex": "(?i)^https?\\:\\/\\/dsadksaudsa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7cf288137d01d32656727f16b702744bcd6505df89aab4aafc6004bd1670abd6", + "regex": "(?i)^https?\\:\\/\\/persxus21gluve\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f0474b0f1af87068cbaf859e421474294084c1ee0c5925f99fd38b4eba1e2b0e", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "607b70fd7a1f8faa4dc73357447361c9d1e7d4f23a437794868d097a9794aa5b", + "regex": "(?i)^https?\\:\\/\\/rendsnoxjdfe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5d22118508743f0547bdfe98341b059ab73ca4a7c788bbe821ed8ea69fdd4992", + "regex": "(?i)^https?\\:\\/\\/getr0buxn0w\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e491dfec5bc831617f2818ca57ef399eb5871d6966986b044e638452dceb07b7", + "regex": "(?i)^https?\\:\\/\\/vikiiee221\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "139b533acc54fd8de209dd60a97d548c78336b73c16b521d688d166a130bb78c", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfd22\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eae8aa226ea2e13a413c05643ea883a8bd3bc8dd94298a6a0c58a82f5eaca4f3", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bd33bb95ec36c69492a6443893bac0d2b862f7be2a8bef9c63a983e6f099ff4f", + "regex": "(?i)^https?\\:\\/\\/gesxezi21flebe\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5e707fcc547e2afc6dfe02512668c424c2184e5804137e90795a7665bed7213d", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9715\\-robux\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "21b8c5354c532d3f18add510f13a6b33af7fa66c7f5c8f032a6e80021389f4f1", + "regex": "(?i)^https?\\:\\/\\/fdsfdsfd22\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1eaf0dcc29f8a34c70ef97af09ab6ef7cbf6abd2bab3e75aafa42286f45f4a8f", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9715\\-robux\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "835965e2a4e3b0f9eb7c0b5dc31cdb77637695b615c6853aaccb55de7242b33d", + "regex": "(?i)^https?\\:\\/\\/zeprx21clube\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0c45cc3cd75e3f9a86486a4249c39b2ec937a80036756da96ebcfad02d53848f", + "regex": "(?i)^https?\\:\\/\\/sdkasjdh821323\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "08c6fae1904e0502961d6e9354cafa1c7488755abb19f916626326b3ddaa2b46", + "regex": "(?i)^https?\\:\\/\\/estanepbcry\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0828fc24c0c1f74f828a3721cab572da24cac35817516c223d1f4887da702516", + "regex": "(?i)^https?\\:\\/\\/fedtel\\-webmail\\-101017\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4c4d85bd4cc41a61dcd2376b1ee1479a0173f4f6654327bb9130a7cd7fab5f73", + "regex": "(?i)^https?\\:\\/\\/kextsisq21flexe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "473371e125ec675311e81c77f93cfca79403d832bcd6f1da94783c3a1a7cd42d", + "regex": "." + }, + { + "hash": "1a29a9ab69482a5581a9e0aac272c02e0b40957fe33e94076368edad7aeee8be", + "regex": "(?i)^https?\\:\\/\\/rendsnoxjdfe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "489493c8c007bd3f1cd45aefc3edd6175ba6b9f1d89447a92ff5bd0904ec75f8", + "regex": "." + }, + { + "hash": "411bf7cb33d4d88b4bb58759ed0fa912f79a1ebf53d6b1a15e916a7f4b58a245", + "regex": "(?i)^https?\\:\\/\\/fornitskin1\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1513a21b09c0e69615dd79a4345fcf57c4325f98ef902e3e9c8a8dd2c802e6fa", + "regex": "(?i)^https?\\:\\/\\/daskdhasd823\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a96e187884655f77df9d8b4276def93de6a08bb3a1e5fe4ace6272ebb9f5fa5b", + "regex": "(?i)^https?\\:\\/\\/sdksad833232\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7dc016070c778b26a02dcb7b27f4b8643cdfe94f103bda4fec384d6b26599e94", + "regex": "(?i)^https?\\:\\/\\/kextsisq21flexe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "845f766c80cc7fe96ac14baee0a499045ea8e614426983fb1e5af9f44e98c93f", + "regex": "(?i)^https?\\:\\/\\/sdgteyhgy6rhdrtfghdf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b5c93278f1bcb0f27716c8e1b9a778db6185f39033ef573071628c323569873d", + "regex": "(?i)^https?\\:\\/\\/kmnxhaurodacretuozanha\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "accac6ac25ed09bbbd20b028c8998f5d88e5d95dc32876bc7a95b335bdbef046", + "regex": "." + }, + { + "hash": "201dbf31c3544a1e9428b61d165f75bd01fe647f32b457c8f025af2d126ed0e6", + "regex": "(?i)^https?\\:\\/\\/vikiiee221\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4beb158ae4a0bbd61ae2934752718c30624c9b09f785278f5c42b863a3a36c2b", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "63417bb31b74d4e0a536061ee2bc3de2375e93fd794a8c7f2c220d2ca8c728b1", + "regex": "(?i)^https?\\:\\/\\/leekerwzokvye\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fd176a51dacd650675e92e021a0061b28c68bf9075c54ac64d7096b434f3650c", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "aa57661c208ab46d5a0ddb03036ff66f6a2a1480118aebaca165a979dec9121f", + "regex": "(?i)^https?\\:\\/\\/anime\\-kenshi\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a872a631d31737ac0dc91ba0ecbb4fce1fdc02d6b3c8ea9891429cabc55e556d", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "43bc540f69158200a64c86b901e494f5718b830b387dba3aad3a3b1f5ee17433", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f9514881f9c453b13a4d03a07e8a8e07d63944d3b989ef479de17e0b4c25681e", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ab20cc3d0446b17cc533060701633a275b88acd65f12c03895cd284729616ad0", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c79e5fd5cd3f7e9cdddeb91af0f05d35473488e06f7dc323cc3cd25f0fbe2", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5e7df1adc8a93294583682044d64a2a8749b0cabd50b76ed781c80bef27d96f2", + "regex": "(?i)^https?\\:\\/\\/fgjfgjkfghkjgfhjfgjfgjfgjfgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "85f3d191637cca51187d10d2600cef4bc660e882bb288a99d1f18430edc016eb", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c1160a047e21c954cdb7b80fc64ac48a72bdebebe07d4407f901534b9b0d3932", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "67028c3c78269f035a2ee2d21fb2614e8a9593c7caea1b5a7ee7d878d7e067d4", + "regex": "." + }, + { + "hash": "ba84c60cdbd8b79e2a19b383dd8b9c9393291366a615478ad70f797e949f5dc4", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfghjdfgjfgjfgjdfgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e155acab88538b3288ada4ada16d4d21fe2a65447fd548222ddb185c5a7eb16d", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d47a762b8a1e4b7d60ec12d7160e18cbb8e8b83a255825a5b14c83c606946305", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "afd3febf9bc879dc420f0401a67966a79fafa71bd9bf9e99207078bbf446cf16", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8e0884d3ffc9fa5ffadaba87c01e0fd2d84deae74e7d77dcebb3cf2d2773b44a", + "regex": "(?i)^https?\\:\\/\\/gabyzinhaadazl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f02e401006b4d7364d82e2ce48cacc1cc7752cf941f136a1947eaf9636791759", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dd775991db24c9616876c0abf85a3259f981ce2cbb170fb467dc4e083d83f9fb", + "regex": "(?i)^https?\\:\\/\\/gdhfghjfgjfgjfgjfjggjfgjfgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d4195e8674c6577f33254a03623bc6c2b37b9422bc2a7770252a41534e2ed310", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c3cba5e9248f51090fe04c7bf149285f0582a8fd02e49a945192b9e459fda23a", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e29d3fd90ca61c4a3ef5a4af142188a31102cbcc14abbd37ed4241e91a410f13", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ea134a1921fe8d473ee50d80020f935ff624780428c423f5c3e9ba68524291fc", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9b13aa1dba1b007d0644406524862db85d1151bb92ee3524a722ad789d8ba84f", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjufguuutrrtyurtuffgj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8522a82b2e5d41285bcef18674bf88e25bd0a09155e96029d50cbea7f82f3225", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "09b3df149ee54e6a0ecc4b25a4d8d17f304a848ffe53cd76711fa97acd47847b", + "regex": "(?i)^https?\\:\\/\\/anime\\-kenshi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8858da9be3201fedaffed84a79d155d8e52adff0e4ea6c83069dbce8c759162b", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjfgjjfggjffgjfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2f458a1446f0bbb5d4eff0a6f375c3c2987f83e07f67a13cba63cf0e7473080b", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0284609a5aae23208a3eec8a5b4e89cd74879a746300d9b45cd32f0cff5879e1", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a5f3bd8d4d9a6a7b3052af05939eec62d5553d6245037d9459f3dccc4e0e89b3", + "regex": "(?i)^https?\\:\\/\\/sdfsdfgrg5reyethygh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b5629adbc40b0b2e6cf163e38b1e03681ebe832c2bf602fbeedf0da79521ca1f", + "regex": "." + }, + { + "hash": "d46a2ddf0c529ec067fade2648ce1aa6cf1b2ba7fc2a6719348d13e203aef60f", + "regex": "(?i)^https?\\:\\/\\/www\\.us5\\-s1gnapp\\-coinbase\\.153\\-92\\-214\\-75\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2ec2fe5145f2cae02f1b2d55f3d730c17b493757385c482113b1828f34478d5d", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fb0f118a1814b1328a2004df3ed546d258697a9eec0b8af2e8b0c55b556ca235", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a265236cd048850343d409f476cf2a0491313c87e284cc346610478694252062", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7fb83b5cbaa241b908671d8ff8874d84f3bc4a37001d49c4cb33e917d0d0e247", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "814c8a501b341a2e047b06deaef304d68ffd3d01c1e60401ae2bc8287d6c63c6", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjgjfgjfjgjfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5787f3dfd1a0ef5954f982f95466d07fa97c81e22e1daad762849f5014440bc3", + "regex": "(?i)^https?\\:\\/\\/dfhfghjgjhfgjfgjjgfgjfgjf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "77db049e7fa452b325a18eb97a982c14edbf756bf7ea376d8c75fd4733b7755b", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0894dd3c7e1a6ac72f892516ede4fcdc70b1d0e18cb1f8f29c0c91060f682a7d", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bf85ebc8c83761d536181abb8e92e2cfc294f4c1221edb3d53f0393f15df75d1", + "regex": "." + }, + { + "hash": "4cdb9cdcdf8e829b349e4f2f5d098b9d57f75d2d202ef7c6c6b88b068cea2f29", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e0fc852e59d82996362f4984872ac45574e7f36347fff8d66bf1100ad14c90d6", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8aec9444ae5c694208bab14375b75f8e99d548c72a078f641428d0dd4b341be9", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "137f99443766a47960cf53d0f6c2367fce6e5dfdca45997679926c47c370c3ff", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbc0606d93c83dc42e15833df6033564ed0a285b2cefdb4342c48ec5ecba1dc7", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfghjdfgjfgjfgjdfgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a01de891e87eed4ecdb8b524f9b883967d4cfb9059f5d1fd048f3aba9dcd7034", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9ef113bc566ef23b0f8bac7445f15225a68c914f68b77181ec09aba1d51621fd", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a727bfa4c485d16fdcac30d0095173e24a4544ccd4b8f9c00c3d8e2e10c4c735", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d8c3b3daaf44b8ff25c5767a7fc28006e289c62edccb6c85941b54f2bf831d53", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfjgfjfjgffgjjgfjgf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f3f715a541eded45cf0aa2ee48d6719d53d4486a823d31bfc0b1f470ade36741", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "61f1ebe819f0b12351005d0b64ac0b4de85a9f6f227749a815d01733eba22f4b", + "regex": "(?i)^https?\\:\\/\\/fgjyryujtyiryiyirjyfjjkgfgjkhjfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7954ad4e23ac5408be0d937d8209aa1c119fca938921582662d60ed546792645", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8dcbcf65a480954f72d91eac3afece6064b23b87941b9d1b535b570230b6db99", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5504bedab37ffe74516ed326778ff38289be79f7e11ce2e23269baf5a998bdb9", + "regex": "(?i)^https?\\:\\/\\/gfgjfgjfgjfgjfgjgjfgjffgjgjfgjffgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8d33239cc2deb99f34b3d03c39c5e3bdf1718418b5c98b5de7a2485b6e42cd9a", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjgjfgjfjgjfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "16450297dedf127732232a10bd26a944ffd82d9290d0217aaa5a8769477dc248", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "46d9e52dc841c9e57c1895853e6b75f49f48c8e48af9a7de35e64136406608f5", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ccf9fc695eb49cc5e4aa7fe81025e48103f4b5158ea041c144b5a8c6d97518bb", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "277ef68b9646819ef95f9ce0a4da70cbb5df148624997ccd67462798c210647d", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d991df81521778767b54c2c10e66926e2723dc6b8ba437f931294e0642c5511d", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c55861d56cb2faf02d144fef7aeb596388af4b36ee566a7a870c630cd249bd59", + "regex": "(?i)^https?\\:\\/\\/dfhdfjfggfjfgjjgjffgjgjf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "03080a5aeca42ddb4844f4f00680cb4d5f316a7f8909bc4a5ba8a0dfe8e28e97", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1bb997ed7df288115f22125f679efd4d42cf6b552d5549edfdf86e0d09d67024", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "962bb44d00bac66afbb891db44e07efa20c87b180e968744d7c6d17e3a48bbbd", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b53eaaae5968e09b045d8e12a0738ece53018f9c3baadc04b7dbb86bf6f616d", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3ff3bde3967ad393e4e41b1fe37481c6072f7fbebf392caa2fd58c74af23d10f", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfghjfgjfjfgjffgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4f91481a5a1967a3e9ad7c33de647f81afa4c0fea02dcc009099b6f730f02a63", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "967aaf6bb5456435dec729bdd7d789f61d1082ec5cf8a712a6fdb54dde22b016", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b0d5628570f82253425ab30185cc03b1f89150efa522085e9720e708ee1cac1f", + "regex": "(?i)^https?\\:\\/\\/pub\\-3a98eac81f234093b9485ca08cfe36b8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0cb3d4bf03e415119f305601c996bd339992ce32082808639c9e664283cc50af", + "regex": "." + }, + { + "hash": "5239261f3efe481dc3e52819a98fa5697d26fa36e6dcb665ae1f7851efdf26d4", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5c104a517a14d4435ac1c3429a121abc326c531758a5fcbb44588ec3f23869bb", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fc4c6e632d28b3255181da6a5c4e7cb0f8a9caffa874e8ad7e3e13990c8f0abc", + "regex": "(?i)^https?\\:\\/\\/fgjfgjkfghkjgfhjfgjfgjfgjfgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bb864e29597102986c4a217a15914b16740e585e51688d8ed5c3e46831772b49", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhjfgjfgjkfgfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d4464a9aa3f6000a507269dc5d04fa929ae0122b2e233f36cf52eaa66513fd54", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhjfdgjfgjgfujfgjfgjgfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d3b581da87629275d82278fc0746bea3371fc134d332741b711672bab1cc2", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjgjfjfgfgjgffggfgfjgfgjj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4eced15a634372de10f64cab8e5e2a49a90ecbc70da8565502ee152c4527dd9c", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f3a06acdefbc5cea39365187b32bd0fe50a3a8f449af68223f07eb587ba3075a", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "44181c11dd5b50e1c12ceeff7f481019e5167154d8b1ba27216e4e2c9e2d41c2", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a0bedee59599ddec3a25880a366687685889ef88070df94396ffe21be56a3b1a", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "93d777947bc29d2b3af3b2c7406b08cc4391eb66cb3c751f255252670f3bc7fc", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3139175e9e5955fd2ac727582fcf555222091520c54a4b385d05a730e5024312", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d3533abbdaccc123cfe5db797bc7b328efdb1936402d7750b4d8db0b48dfde79", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c487fa64bf1c04511fa3540d758f86ba89c8848698bdbd4ab9fc4adc467d1fd5", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bdd0ea0fa30831029c5dc4a97b78b17211188374f185715bb97de068d39dcaf4", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "545a18c0deddff5a2ec67e7370ac3ae9e629119c6cec51c1140139f24ee87b09", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c6ad0ed1d8de4b988d4ed90d61933215a2394fc36a778e01e708036dfcba6661", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6e68c11380117f63c72afc962ee52cb6b4898705e350d432e4199149374eabb9", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9f63cfadda8124a3a9f31b83206ba9a67e161c965f1e654850d36fdc447c155e", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjgjfgjfjgjfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "07390c19f7ad3193fb30aa3d349eee0d5ca2b6f5227f179f21b3f1e2f9588d58", + "regex": "(?i)^https?\\:\\/\\/fgjgfjfgkyhgkgkghghkghkghgkhg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0089ab73a8f94b30cbbc472056dd505b9db343884c7922e3bd621b560020bdff", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4ccb2057dacd7dc4ffd104e0ace63f2ae4391e0ac5b7de4b3291de46d2695171", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a404349aabe9f00aedf78a76fdd2b8322361f625073c0310a74b07842cccef6d", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5239ffcd2ee2a0e92ca11356e1b79eff877b49b12bbc23033f3f31509ef9effc", + "regex": "." + }, + { + "hash": "7cafd850f7670eacff4275920608ee527418c56419a4bdf50a400d28a2b65150", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "344af2535d6d8a1656185e0fb1bfd730946c7291c12699aa8469fa4b00b7f565", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfgjgjfgjjfgjfgjfg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5363ce305d373d69d629236475c44243935531910af1ad7ff0c45ea04025a884", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0fd51a8dd8fa38e954014e3d859f73467c5b896a63af082c94de64963d38d6ad", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1edb894cf97688af67e739c9f8e0020439eaa2f6abd628da81e222ed656abb9e", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "913b0ba4384938852babc058a8be9091d96e1f7c29a3b8517ec23965ab21904e", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjgjfgjfjgjfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "609d8c66941d42cd3bfefa21c6a1bf9dba82374b979e9ae13a57b8446da71432", + "regex": "(?i)^https?\\:\\/\\/1000inwmoviehot\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bf50911376ac6d7e48a61fd3599fa5a1dbd64afd50bf7995299e38bbc21c216e", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f3ab64e54b4f94f3f5f670127b90f6e834bc5204a174cafe585d6196aaa1c700", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "20e814aeb937afc82ba9575b776d429f2d281f3bd88b56d1316ea72fd7f3377f", + "regex": "(?i)^https?\\:\\/\\/gdhgfhjfgjfgjgjfjgjfgjffgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6c1cb31339daa84457e4c441efdbff36c88ff99f98885b2a2b4136d92164178a", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "328061ae32d745d5f044d5096710821eda144916f3c0d4967c67712698a86ef2", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c558d12adf67fbd2d70c83f5997e58d582da57f4f48cf51539e914a608470855", + "regex": "(?i)^https?\\:\\/\\/gfgjfgjfgjfgjfgjgjfgjffgjgjfgjffgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6f6dc4103fe20f33b7a9fb7af20b75c57b1d97739444fdb447f1c4873fd23c36", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ce3c84d24cb21186917610d4ffb176c0f4aaced5c0fe43ab6888fecbb449373f", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a0780f17620a4b780aa592ee9ed19fadd19a55647325d810ba9bde79d1859279", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "aae4ac9b739b9325c81362dbe64b91d891b08e9f07e2685b67ba2a6c917014b7", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "10eee3488a9296228768a5a979f9bb20159b6799c77b89acd34b7a5681cfb5fc", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "947497de4743dfff5be8b90202e28839cd9a3dab9f60e662357e3299d3a4f4d3", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d7d04bc12536c8a5c9c7b4be8690fe1872ff87380f8f9e5c8b86324357da471f", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "913bb71cb8512f8e09db570507bedcdea6ccf528bc5a40df5771589b3166238a", + "regex": "(?i)^https?\\:\\/\\/dfhdfjfggfjfgjjgjffgjgjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "21a47350afaec3e3326a45e2e0eae3608c47d8cef20d7f51b2441edfb630e805", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2d46ced0df98abdef7549cd6c7d45c8437202b66d33b5d6864134e2cef42eb23", + "regex": "(?i)^https?\\:\\/\\/inst23\\-foryou\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b65d479f41f7f07d6897202d7e29031bb6eb62ab28bb82f1d1220a45947840a8", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3524a2f0a6915d0d28d28f0ca3a8ed715f841211518f9bef54e07f5f59f78381", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjjfghgh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b584a579aac0b57d14cd04d46a52d4937b7f1fe569651de2fc0d9c2c919a4352", + "regex": "(?i)^https?\\:\\/\\/fgjgfjfgkyhgkgkghghkghkghgkhg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1a3c53b5f287c684d19763da3a4849a46441c056462901a994054889a2384570", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "897df7e1c22d47d9694663c984a69c1dbda37706008579b56f4cc33829a29ae5", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d08199654f82de738fd90c1267a1deb0f141e0aba4e8f2937b5eb26f7bc0be97", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "95aaec8f14870c8e02f79e95c6b3c59a76eedeb473e2c9f1cfc30c229ae3f747", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjfgjjfggjffgjfgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d516fb94cf9a007c83156424d87d99b573db9f325207ae53d7f89c1049a95a81", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjgjfjfgfgjgffggfgfjgfgjj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "95f8c7b8ae277b769035dffa5f5f5eb4421a103ee904b0d26b43fe13692fb304", + "regex": "." + }, + { + "hash": "7db79228d0731978af6ba63dca0698df93f029129ebe3de5efe173664a9efbb3", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjfgjjfggjffgjfgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "962bb7a6cfc2bce67195fd47fb8033548a427ad18721ae5cb541c4f8d1bb7d4b", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e315c36977a588f9f646eb88597808a0764100e9126cdc6165d58b9d35b351e3", + "regex": "." + }, + { + "hash": "76b23780842b731668d965c0d5bc3e36d09da4d683dff566657d19c5540fb200", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a97c1ac951bfeb1880fddf5de3f0b76a519787219364351a86fe3a7b67e6a1f5", + "regex": "(?i)^https?\\:\\/\\/fgjgfjfgkyhgkgkghghkghkghgkhg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "52f5ec06385203b7b3197a354254c8162612fff9e2a85dbced6304c040432d67", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a8885409d8aed33174dbcae7af6619c81a2de22d7bc3edaf9e54009416a8084d", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2f279d614cff0175c03e914a0618b9577afbc9bab94e36fe73417b0b787e1243", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjufguuutrrtyurtuffgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9bb2a0a6012e86bf085f469df2af5e4bf7eca6709a1effc902b12434ec8d5de0", + "regex": "(?i)^https?\\:\\/\\/gopalphop\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c25a771f509ad50b24635d42f6fcbdea70a41edb872075b1cf4d83466c2c4882", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3a0e80efa894d59775c8455eb4b4673e799d43ded715d9e69a5fe4610a6ab4b1", + "regex": "." + }, + { + "hash": "6cf0e9aea66d18d976008ec74bcb853f31e6f42be2658a519769c8e5cae48538", + "regex": "." + }, + { + "hash": "7161fb839af25116c47d27c0738c0b471d4c5743fabfb71ba308b8416ade63cf", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c045d2bc66dbb295a3834ccd5273817666addf4add5166c5538033181d4e13db", + "regex": "(?i)^https?\\:\\/\\/gdhgfhjfgjfgjgjfjgjfgjffgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d7e9e3022e5798b8c2eb5b95691e461fb91fbc275bafa0203fc994336d27e7bb", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "163e4f55ce0a18cdfd2033238cdf0fe2c2b63bd51f8a74d92c47bbbd7815463b", + "regex": "(?i)^https?\\:\\/\\/sexygirlthailan\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e3876e3aff15466fb919fdae1bf435055013b4de693942b2d5c7d30b4a66bf79", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9a02c0449c24b58e7a5f7b52be8cb4faa880d4235999546e60301d6490262e52", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f87fc84a990d7b75ebf7f5ad63281246f2bff5d185e8e31b39973510be1d09da", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b2464a34f1a6fb3137bc76d66a844b7a2b36360f809e00aca2a92a3d9ece6492", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e02fd521ba13859405f7cf2ee508ade861fe453c253496f63de3843c63212725", + "regex": "(?i)^https?\\:\\/\\/gopalphop\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8006b7d23fa4e6320d0474b8073c0f8405817aa83a921ede10025e2688cd4288", + "regex": "(?i)^https?\\:\\/\\/pub\\-d27030dd4a0b43e19272aa5a2ea0ede7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dee2f7833cbd63ae9ea6ba8ce0d36dd09d5a3ad84cf0e5bfac8511975ed7812c", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e7b408f5c394a6e621cb4475edf65c603cc67e1fba25789a6e22e39d28d53655", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fc8b3a6fc48f2fed028f3278d83a50bb2fd6a6326041157af21478d27eedbb80", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0a1c2b4717273dd4c903603cc7cfd1ccc65ecb26af0635acaa0c56ccd257e6f1", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b14da527ffbf4c357e602b103816ae78eacd39d75ebee7bb03dbf3972a429d6a", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4eec358fef5ba5bc2c8aa1369ecd2b19a247a054bfceba4724edec68de3b580d", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e2a2edddd1e0c857bc3767e95b7c71b7c1a7f6ed8b748a303bb3d65f50a32d33", + "regex": "(?i)^https?\\:\\/\\/dfhdfjfggfjfgjjgjffgjgjf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b8ae5748440ab987ea5d4658fc4aed5a47fa81b01e8bd0a8ac653e3cfd4b3211", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "864cb9cc8f0d9218845158b53a007cb2aa7035c6656e807815edc00213e3c3b0", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5f628bbc2a51c2f55a53edb3130373fbd3329a3b5985328008ebb05fd5885d2f", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9879a7d12b37429fd541515961858cf3260d2ba29d878cc98574d6eea6fe3a70", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "71c6793a5f9063fae509cda8fadf5bcecd3d8cde8d73609b187775be1b3210a9", + "regex": "(?i)^https?\\:\\/\\/fgsrgtuidfgdfgjhudfgjhudfgjhudfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "957e05fae59b819bcc9216810720a746e039e472852238d39093dca4feaa822d", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "705a35812d75ed04889eca3cd50701b6d97b409fb6d3b2d76d0b779c1c8f5731", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhjfdgjfgjgfujfgjfgjgfgj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a2fe74f6d4ddd0998ace9b444938a1b48f566648e95b19911c8c53da0f01acd4", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3985fcadc00c148fe029721f1b0a4eecf3dc503b192c9fb212e77348b71a9", + "regex": "(?i)^https?\\:\\/\\/dfghhdgghfgjfgjjfgjfgfjgfgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d436f69406683b189166e592829c51e44b4bb8b4e808ea7627fe266996a4959d", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "db1bcad156d4b81fef25ea10d3c303274007dc0dfc2a5f3844e14155024b7cbe", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cb8b7efec3de46557636f1840e3115b2ea5557b2b2f3c7a850189643b25fbe23", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3a28f0419af000f3cb31f0ace5d03e6b250ee91deca4c22d1d3f3bbdf28d2515", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "52a50fd379bd44d7b1ef9fcdc57bcd12c8a73d3b47069aa045717ef6855e5b1d", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4a7643e37ea5221b0e452c419adb3c3352911ffa3b285f61f85c7b77b3e5b113", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7f42596334dd35899bd70c06b185cf350a4b19904451d46b18a9663d7590d581", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1b626d71d36fbe82c37a646b6ab2e4c22dc21a23f66fd18a3a6bc7a8474ed583", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9962fd26f38c2b7fe49c5e79c65780ab945532f3cb93eb086c404e5e5f88ccbc", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cfeda2306af728af100b048dd7eebc280ca9d3f5848fcabc356300b985435032", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e5d7b5a39398f555dcfce3b55e4f492af93d7e29b06a65c00168703158aed77", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7dcbdb51a0e0e1b8d7a9f81ece931403d5f962792676a68fe4101bf1fe605cb7", + "regex": "(?i)^https?\\:\\/\\/fjgjfggjfjfgjgfjgfjfgjgf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "108a7e283cc47bdd7afdf4f1b123e9a0dbb5f6785d87b7fbe9c662d93e71a04d", + "regex": "(?i)^https?\\:\\/\\/gopalphop\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dbaefbf290260c1d71b398ba101638c1eb1d1ac7a1eb29b96ed2f4666c998595", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cf5ab9279513ae56671a1f3fdfeb51cef66a72dfdd80112ad1313cd9f49947f3", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6c733a6dfc69f520259bb40a06d8e958ea33d9790a56a2e255e58d855d9313bc", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjiytyfigghjkfkhgghkjghk\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7d8f648b105630c4789bd371445a3ba71164776ecd9ad5119b78f90659f25afc", + "regex": "." + }, + { + "hash": "9a91b781fe6d8dc1ca0e1cb188894ce87a3d7a484ffc729ab3c7d44ccfe99eb9", + "regex": "(?i)^https?\\:\\/\\/inst23\\-foryou\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7129d3897cc5e99576a239fccfdbab2ae5b3d892fa1b611f3e07df477c6fc243", + "regex": "(?i)^https?\\:\\/\\/gdhfghjfgjfgjfgjfjggjfgjfgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8cbd19f8a4df704cf430fadbbf144b68eeac14b7198bfa30002e08262ec07500", + "regex": "(?i)^https?\\:\\/\\/fghtufgrturuuufgfgjh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "71cc420eca6ff7685574fd423535f0f1bdb937c42c33e9a77fef26d3ad3cccfe", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9b03bc7ecc815fd9a99758131f50ff29673d170a2863019cd8e223e0ca4d5b4b", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhjfdgjfgjgfujfgjfgjgfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a7dafff52b685cf3e3192c1aa7929c954af592b831e8a0689baa9dc17962a577", + "regex": "(?i)^https?\\:\\/\\/gfgjfgjfgjfgjfgjgjfgjffgjgjfgjffgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1541bc77ee15188fa661966a3cb25768cf806d352533622ff1597a7de07df36b", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6e87cf50fe7c58dab1596b18430a0b44ff309697c6576737efbcf08154bed5d4", + "regex": "." + }, + { + "hash": "2def3ccdeea912a64b4a69085dc6218487f892c0ecc605971341b974886ce5d5", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a20b3e8eaf2720ba0eb6c32e6755a795c56e1559cba4797cad6304547fd95c7f", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4ca47dc13c785706f0b34ed9425bb34531b818ff71e4ea4b2fc07f37fb42c4fd", + "regex": "(?i)^https?\\:\\/\\/sexygirlthailan\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "dbbeca24ecab900e903185959887027905edebf6d2c1878565ed2b52531cac48", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8f9fa60c5d01071b66587ca5660589b992e5456952adde23cfdeff8eb0cdd53b", + "regex": "." + }, + { + "hash": "4cd338470640203c32f3d8763c4f9c889f63746e86159da74e13fe6acf69db27", + "regex": "(?i)^https?\\:\\/\\/belgiumup\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b977f1ce015b0dff8a48ef8c81b7f8f30b399b93a5a2b9dd598b6989df32b117", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f822077bbf0e88f5454bcddcaeeb691a7b3584147d458b9980bbb1e03777ec3b", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "946fde6849bceacd92913d4dcaab4233c0b69b94d767e9b74e36bce8ad1b6056", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "56ddb676da75b14aa4dc317668eccb05bb5ac16b7ef2fe6dd81072e622b7654a", + "regex": "(?i)^https?\\:\\/\\/ghgfjfggjfgjgjffgjfgjfjffjfgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "af60eb7b0b45b1d079137be6b495380f6d702157a525a1092c76f00d9c905e18", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfghjfgjfjfgjffgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f8c6d39b72148cecfe5bf2fc90f1b8c0b1b18f86a4d5706043ba0058f1ddc5eb", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a507e5aa7ce08b9a8cc168e3575a260a32cdc8cf15619f7565c910d2e59cc6a1", + "regex": "(?i)^https?\\:\\/\\/belgiumup\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5123181c8c77de0b88a9ce5f74f3c409202041c6a6dca38f8b047bbe26e11a50", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ef75831cc247801fa2b41c1677b87b9d5447f7362103d3f6a556508b9af772b3", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "11eef2a34c4444d8fd3aabc48252e3ad2bf7d612a3081965995ef407c9527306", + "regex": "(?i)^https?\\:\\/\\/fgjgfjfgkyhgkgkghghkghkghgkhg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ae6c53ac86a4570a95149cb134f2d277e3d036a05bcb5d64314d76ccf1a4e2a8", + "regex": "(?i)^https?\\:\\/\\/asimuabsolutlymaniay\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "acdbd40f4a9a7a0641c760e3137462528cb3824e06e09d3f5aa8f8721e31da84", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c9ce25ebcc60a2c29f71773e841823e6cd8457b52cdecc46f5c885244efbd41f", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1c972046d646119027693b27b93869ecbeb6ca1299cf404882793f63ab60aae7", + "regex": "." + }, + { + "hash": "d9f0888e7339153b87f332942b271d8ab2e18245c4248a70fff1c2fe1ebf9e56", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfjgfjfjgffgjjgfjgf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5c106d27325c9dc60b1a0757f472f856e82ef94357699396a45d0763bc9fbd0a", + "regex": "(?i)^https?\\:\\/\\/www\\.us1\\-s1gnapp\\-coinbase\\.153\\-92\\-214\\-75\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "82ce25fb6ac1f89a692bebe63322ae1109e6a3c2278bf9bf9b6276fe80b7d8b5", + "regex": "(?i)^https?\\:\\/\\/dtghgfjfghjkghtkghkgkghhkghkgghkg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fa482280cb363f6ce72a98849293b4257157805adf89dfb0d4100f9e93acd6dc", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3be322a5f59f4880653a3c8a099b9c26c68e0f4f6bbbecc53534ccef2fd367a5", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a0082e054839312f129e0aff5913f7fe17d254eba8eabe881ab51595183aabc9", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6f3be1c7bc97e0b4c07af914851f2856968cbfbbd1495e287691aac354fb3740", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b47157c1b33a2c83be4253b13d24b69b113c59e4284300eb1de5245a74cb4a3e", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f81cea6c0b0231163bb63a3828cbe33fc4ff112f9b22a571cc989bc43f2b2a68", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7c4ecb7565b41ca8ff4893e800c1fc57307807814b830461ba7703092212c1aa", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6dd280943a8dc2e11f522eaa4108959567905ce9954aa508ef5d050a41598b61", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "45f6ce367958761f04aec7efb4433d946274c1786821c7b1a8f886f1c91f2c4f", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0e618add24337d9369040bacdafe4d6dad1e81bb65aadc00b22aa1bbb34140d4", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0e57db0edd7537584aa75bf91010859f936ea2b795754b162a88b5de58aa9c3f", + "regex": "(?i)^https?\\:\\/\\/dfhdfjfggfjfgjjgjffgjgjf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b23f9a7b107b5a9b3be556399c5fe2638fd206f90f28a475be79fae883cf67e3", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d2d1949ab08c60938ce07995b6c2b901632f11f1271aca6e39b667000c01f169", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fe3cd4d958670f81651dc550782d2c184d156f924b809219198d15acca727586", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2bfc11c48aadbcb5560591465bb371ce3ab34ceecb9d32415f074ebb124c388e", + "regex": "(?i)^https?\\:\\/\\/asimuabsolutlymaniay\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "95de3bcaf958f7993dff5fabd6fe43923d1f6e660b3b6417188a3c6ca8957e4b", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "418ac10870834fa67a3660502b384cb55b187cdb4710adfac0f230cdf781f5df", + "regex": "(?i)^https?\\:\\/\\/dfhfghjgjhfgjfgjjgfgjfgjf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9fe52b0d4705e6c55c1b5fba7edf64bfcb3712b65c669937b833def183884ba9", + "regex": "(?i)^https?\\:\\/\\/asimuabsolutlymaniay\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7dce9ba52c70fc31cc1cd920b0c9fe5fa59fb94ad1f54cc23dee731e6df381fb", + "regex": "(?i)^https?\\:\\/\\/1000inwmoviehot\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b41f569a4863be86f9315d4d5bcb6d0f92c81e3ea04430456afd62014ecf0246", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5b1ac5631c61ec940ab973bdcce4cb306a458846dc2d3f730c2daa8a46eb9a0a", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "52f6cf69d8840d7ab5189923b3c6eb23ff003bbd6c30880f9237e00badcb3597", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "64721fe00a62b6c3fd1ff460ce725fd220dfcc607414ade1c661787f6c026f27", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "90deaec91e9d86393f8985e2a817573d1a4cbd8ed66952ee5bdb2cafc0d8e6ad", + "regex": "(?i)^https?\\:\\/\\/sdfsdfgrg5reyethygh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7084156e27a14150c76a86bdc6a917e0da3739ea73a821696ce8b40c8900c785", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4bcf8ab5d61c9f4ad083f8555afd1fa5f05c9e3017801595e26366ab803c4a2c", + "regex": "." + }, + { + "hash": "6c39e44470709870eba7b7acd5e8085b29e6bd18ae56b9da707b3d0867897d67", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0d5673f35decb02681a3204119f1087b26d42a807eaef6ae7d9aaed6c697ebba", + "regex": "(?i)^https?\\:\\/\\/1000inwmoviehot\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b0f192eec6711f3090a031d7d58a7a4732a6a32c9025482e117ca3c21364f6dc", + "regex": "." + }, + { + "hash": "8f15de01ce2555eb7677eaac60b3eeea42aeec9455757ee3ba618258ef18cb19", + "regex": "(?i)^https?\\:\\/\\/ghgfjfggjfgjgjffgjfgjfjffjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5013c2cd99660ee7f0c2b69ebb80942a63a299c70276f991282fe44f8eb86454", + "regex": "(?i)^https?\\:\\/\\/inst23\\-foryou\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "99f4ecfa1ab38db6bb03b6a122110cea5c0423d04b5f79a1af5333cecbce01b0", + "regex": "(?i)^https?\\:\\/\\/icsnethrlands\\-luiselary397582\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3f163fdf92daa39c47cc97962badb697bc13921c0b36778e6eb5e1d32eca7450", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2915d1dda96c6cb2495b617b1bc786d6cb948eeb9d64b15f8427833ce7d0303d", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "941d076e2a5f4f64b198327652fa87412e500e4e39dc85b94c6460e99685efb7", + "regex": "(?i)^https?\\:\\/\\/dfhduhdfghfgtjfgjfjgfggjfjg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d674cc13aa73eed51c330e374fddbb4f0dc5922ba120dd147a8293a03338a5ad", + "regex": "(?i)^https?\\:\\/\\/dtghgfjfghjkghtkghkgkghhkghkgghkg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "dedae8d3dee93ce23442bd4f65827172486aef9745eeefd94c8db7070c559ecf", + "regex": "." + }, + { + "hash": "bbd69d898de9700b575d415ecec83623b48b20c13d28c3218ca0ce57fe042ef6", + "regex": "(?i)^https?\\:\\/\\/dfghhdgghfgjfgjjfgjfgfjgfgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "de79be48b5287a7088a38b752e11f2fa5efb0823a7fad298375002b036b80937", + "regex": "(?i)^https?\\:\\/\\/dfhfghfgjfgjfgjgjfgjgjfgjf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "673bbe89f2c3e13a9e1887e7e2afaf6afd4173e079e4fe553392a59bf703ee60", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9e83688a725eb0b5753edebaf41c3a7606593c7bc0ee5ae9d6fd4b3444fc4a56", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "96cfed35fe7ba48833d0633aa4273cc9cf1628d4e3d2b574990e29b910422ed1", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjiytyfigghjkfkhgghkjghk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1eaf3cb52b543f55dcc167bfd887d9ce0a8c0001b2179d9c1452d74ffa2e15b9", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e1b489ec22fee924042dba00639c22886beabf93a11e534c217febefb6a1288a", + "regex": "(?i)^https?\\:\\/\\/dfhfghjgjhfgjfgjjgfgjfgjf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d8efff7839155b15673f4bcbbb7fd30a9cce76c1cfee892614ae6bb0a34160b3", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c175f253ac62e10573d716872da1906ceae74bc2f24413989f8b1d821913b122", + "regex": "(?i)^https?\\:\\/\\/gdhgfhjfgjfgjgjfjgjfgjffgj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a55c020fa101e073bf7ff8345a48d70751623b56a81669a6d969d92b275b1cd9", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "56cb3e012852401c50bb74082f6098cc2cc17d3475abb43b5dd28b32bd2b47cf", + "regex": "(?i)^https?\\:\\/\\/anime\\-kenshi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "df5f5c0e648b071a99012127cb104cc45ae02924bd54c333514d80040a8d96bf", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "dd51d47d3e76046b313d62a1dd9c34f8c2a95bfcf0f3b10b1975d63bb15fb754", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "18aaaa59e0479d0be8cf1144749202414f585b428d39d8351c4fba1b4ac29406", + "regex": "(?i)^https?\\:\\/\\/fgjyryujtyiryiyirjyfjjkgfgjkhjfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1bac6eed925a93d5fba6b83799ffdac5291f63432063a49277c24c0f406de071", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7d2c5aeaaa4194cbb0e8f39763cb54dfac56c4977ec20f112d326900390dfe03", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjgjfjfgfgjgffggfgfjgfgjj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "803cf3d4f5461b532a74014aaaf6470dd8f07a4a74e221877dd9047c46468d21", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfgjgjfgjjfgjfgjfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "606bcc37c33ec63f61edbecc6627d190d81eadf1ff91dbf2bf17634b88bbd3e7", + "regex": "(?i)^https?\\:\\/\\/sexygirlthailan\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "656ce5036debe9b36cee422b00fb5f3c8a7c2b4fd1633bb60c2981c966f610a5", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6eba6ee1650ca6d01cc72ff8849fb2d960423f0f46c0e9aa2e3cf446ad7c6745", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfghjdfgjfgjfgjdfgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2964245095a03766eeebe1764efc0dfad28678e95382b33174dcd6a81963ceaa", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fcbb768a358c945cefb02f3af035d87ac51a4fc3d92b08ac2ea598102e85ae49", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "047bd0526bcf44ed6fb0830dd6b641f5b07b9ba8ad15b10c61474c43ee4ba0ea", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhftgjfgjfjfjfgjfjfgj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e070b2e3e3435416b3bf5e8fb3419e7d5a45823020fceef4d02bf20b3ec0e", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f131e78af5cb1c309b4b1a01e932e267f17b75e39099e821e00a94b51fc413c0", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bd297c9e1a9332cbcf25b43eedd8cf9430951ac46a867071714e5affd9df83e7", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8ae8283469b22c4a0e6a4732d97df789e4a22af900604cf1c0e7e156e2070edf", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f31532846b8daecdec98c68d929d4c4d664264a94b9b5ad16993549328f383d0", + "regex": "(?i)^https?\\:\\/\\/asimuabsolutlymaniay\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b072b3045aa3a57efcc7d38f6abd952287637ab02ce2fcffe196ed6a0b740b60", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bcfd266d81c25f19edf6d07f04f93700de8dcc3aad7979f56cbe14b3551fe72e", + "regex": "(?i)^https?\\:\\/\\/anime\\-kenshi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f43b0433046a35065d25ebeef3919c0a902a61cf1d56b8007d738e3b3c028719", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhftgjfgjfjfjfgjfjfgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6ce463a2c2f651f08c2cbd6b1955aa3097d47976d5a73de816c51960ba8d8613", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "604b844d253c49eac891a22e22ddab87eacedfad0e266d706e13fc86ee76d54f", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfghjdfgjfgjfgjdfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7bd9a70fbf80cde4331fb4ce6ddddbbfe3f280da03d12204cfaa0ed67ed4ef71", + "regex": "(?i)^https?\\:\\/\\/gdfgarehrfdebgd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "435ecb17ed1cf02de4e21e61cc265184a8a3df4d104b4a3a77502b1df979365d", + "regex": "(?i)^https?\\:\\/\\/leekerwzokvye\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "61631fe27117cd235a66ed1465e78e30fcb44bb6480cbe89fb7de0270cfcfe4c", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "29e72bffda954d5a00cf11d6c278a30a6eeb7b010096370d0ffb2879f03868fa", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "178a3037e58478c53675308fea531e92cc32a853969d35dce6bd548ebf72342c", + "regex": "(?i)^https?\\:\\/\\/dtghgfjfghjkghtkghkgkghhkghkgghkg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "92abc4b63fdc956852033af53a2eb6b14d64e0f52263014769716508896595b0", + "regex": "(?i)^https?\\:\\/\\/gfgjfgjfgjfgjfgjgjfgjffgjgjfgjffgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d7e760b64167eca81c22d9b11221a85d3ee2e7fd620b41e8a587279d59c36", + "regex": "(?i)^https?\\:\\/\\/fjgjfggjfjfgjgfjgfjfgjgf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "300b404dd3e5b6479e0555afb203d85dd4319052858aa3c23b03c12a98200dff", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d0975cd49d80a3300ed7b4640aecc423d36b62b9ea1db44ea9cf726dd531f2ba", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0a2f063c135cca60ac8039669fd0629cebbc9cec7a9a606619876b4709fbcedb", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c7d1a31ee92419e2dbf8ce87b508fc2fcdc980821eea85ab03823e97f9708736", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "315f5e234aa4b188777a78f7852d0a838e0d4dc931283e5ec412ee078f62b499", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfghjfgjfjfgjffgj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c987a1876aa450681d9e027c5fd2f32037515c35c9b46f7db3b465d31848d2d9", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6ee9c2756854701af96862583113c464ee89b0979a2f403a71c03c98fecc54b6", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "082cd9512b5d7315619dd0e829d871bcd75915239a8e89cfd3314b1614a59e62", + "regex": "." + }, + { + "hash": "fa2306b51beae2003f4ebeee137bdc979dbce4390c571714273df334d97b4a1f", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a1f64c621a69e34b80f1295591a2d1834da537441bb5be1bf5bc322992bd662a", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ee04d7462f3bed7c073538619279de8d14a0d5388d54d55e95cca3b2f337b117", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bccd5a0220506ac766b9c2ee47b798e4ded16189bfcd3239ac5908c6d16b9a39", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b19605c7c30045e0460b5f1b4ebb2aa682b0bf1614ee0c3fe62330af42f12eb8", + "regex": "(?i)^https?\\:\\/\\/dfhduhdfghfgtjfgjfjgfggjfjg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ebb22ff13e3277343056b773dca81ac53a639d75c7fb10251ea29388b6ec3587", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "97a22b0338afb7e47d416cd444a09d8db77e62aff61abf110629ef9d74f1ec7e", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d3aa62a933fd1ad2c78a83539d07b969130b9ca2d94045e7d1679667fcdf733f", + "regex": "(?i)^https?\\:\\/\\/foodcontestsandnewsandtrendsb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "13a2e119449d84681d77230ad99062fb94a3884fc821b09d3272018e0a25041e", + "regex": "(?i)^https?\\:\\/\\/gabyzinhaadazl\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "384b3c5ad1f4318ec6458f69a5ee1ba07f1cdc2d05670ab465a6f020657397f7", + "regex": "." + }, + { + "hash": "29924e54c9e4b123de7cba0d7700e56fe1610460382b7eec6d00314868f314bb", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d76d1eda0357320676b22987f52e7a2452494216fddad95b8b83d5b522e42865", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfjgfjfjgffgjjgfjgf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4203c27dd4780866c85da121fc429f84c47ee1617424efc9dbf86f63ca0bee5f", + "regex": "(?i)^https?\\:\\/\\/fgjgfjfgkyhgkgkghghkghkghgkhg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6dead965aa4a72939ebdb6c8a1c3a31762fa45564a2184e68b20119aa1a0fd8d", + "regex": "(?i)^https?\\:\\/\\/dtghgfjfghjkghtkghkgkghhkghkgghkg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "05b5486383cf3074c8e85fc55ede0c27c45abadbb9d16a7a2d718d511cb3d362", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ebe84176c9d18ce86231ef9a3bba579f60cf2fda72328c4948fb4b146534a186", + "regex": "(?i)^https?\\:\\/\\/sexygirlthailan\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8d9f7edf8f9c1e945f64937cc10fa0acde8dc7716055e181e3f9bacaa645de22", + "regex": "(?i)^https?\\:\\/\\/dfhduhdfghfgtjfgjfjgfggjfjg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c7425831c7e0ac285ec2133f7bb4e622bbadd64305506c30c9ba3851d612becb", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c220708d7bb08b66265ea0cf88c87098ec4a9735e44ebe9ce038c5ca2cb3992b", + "regex": "(?i)^https?\\:\\/\\/fghtufgrturuuufgfgjh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a570022c5cd2e504116903604bbc310d82739158eb3c73e1c66f2b5ecfe8ed75", + "regex": "(?i)^https?\\:\\/\\/anime\\-kenshi\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8077fef01a32b9bd5d74b8de4d688e93e9569bed5377da5a6e5a2821ff7bebf5", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "842f6adfd9bec4b2db030a8287a3cc0c19edc0a4b75a95636e280f7642d27b76", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9aae4c3982b493c655bf468c6fac75914fbf7549fb3b4be39044ff6859bd46cb", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "eedb30fffdc87681526619509509983e4837cf07e81e7adf3b057d0b9e11b0b1", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfgjgjfgjjfgjfgjfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1bd146c11321917b3aa1e92909c7b4d090d67da981c6b336397f6e964db22342", + "regex": "(?i)^https?\\:\\/\\/gfgjfgjfgjfgjfgjgjfgjffgjgjfgjffgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c6f9a07787316d8886dd61bdf811950ca7a31719b3db0b2159e17de470324645", + "regex": "(?i)^https?\\:\\/\\/dfghhdgghfgjfgjjfgjfgfjgfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2116a5dc42a99b86f392bf28127bf5630ed0a0aa203f6009ad1547b5423a8c8f", + "regex": "." + }, + { + "hash": "85378736f6478573cc5001edec99e895f1c81cb39ed90d1a2251b595118f420f", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4c174b7ff166dcc835efb066b3f8bdbc39a7bef5bbd955e7ec5998d57cb79ccb", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjufguuutrrtyurtuffgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "69e4fe05dc45834efd95eb00c50862f172a50e3219d794371acac5e9c3f17edf", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfghfgjfgjfgjfgjfjfgjgf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c4a40d4cf84511eb628cc654380c38a5789c44515b1eff5c0691bd8310b3e1f3", + "regex": "(?i)^https?\\:\\/\\/gdhgfhjfgjfgjgjfjgjfgjffgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "292d6d938a669409a9596e618e20446dae268d84416937581c9c920e52601c6f", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "23cb67066e32093156d3dc6774e389d565b4ce982aa7e21fd947b1f7f087268a", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfghjfgjfjfgjffgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ae40aa63cd771ad5d17f7bd392f571023a348ae3e06f9b95c1012dc056486f6b", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aabc467ccd647477394c171310a3af7c3206bffccf5274bb52ab38b771b646bc", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c90e79825566778d118df2168fca69411c1b0cd3f1efaf4b73b0ad3f5a5da04c", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7ed9a6e8037d50be7cb88dae6889afd2d9047ebba5796ce39d660a794ee5806b", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e80524fd186c13e28dab849ab1c55ec8bf76f1d593d3ae90002446fb2003a899", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4707e7371ec89f636b5521657441fc57ed7f3ed3fc5d62cd35223fa2006e9460", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ad8514ae2b36433cc0de369d1d05adc77d565145bc30d0aa7368552abb663469", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhftgjfgjfjfjfgjfjfgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "51422b65119692a73f2472ad301957990e0f923ac0f3390806ec920f023023c8", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "60f42ecac74ae80e97ba4af1ee079f5d4612cbd57c683e7f8fcbc713e482ba28", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "da030ce4dacb8fdf4caad8020eaee03c9d2fc4a035f7b33c30cb84bf4d90e200", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8ff4cf6d2e14c9a5f8475ffc88b01e35393ee52e2b8af9fa502dcf7fee4664ad", + "regex": "(?i)^https?\\:\\/\\/gdfgarehrfdebgd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a82fc6561f0b8d92eacb2573ecf843bcc307fe6510bb233679664c8d1da827a2", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b25238fefd50c9bcb71f3844ab093256403ec6b4ba387434811ea4b55df37130", + "regex": "(?i)^https?\\:\\/\\/yafsyfasaikhas\\-jbashivhdvas\\.3\\-38\\-253\\-43\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7af62160e8f0a2d8fca02554ab391af1014bd5d53de9405e6deae759a6309028", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "94b957f335d36deca455555cf1d90ffb447cfbd1a91de52cdbd6c905a8d12d6b", + "regex": "(?i)^https?\\:\\/\\/dfhdfjfggfjfgjjgjffgjgjf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b8183bf9865771c90fc26d05397394901f2e029ba4acb9481c34d2c3dde15a7f", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "39938c537fa94949d96d29c025c15e18883ced0bde2481088a1e0dc308459225", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a6149057e4a96248600922dc33237f7a76b265c2a3dde7ac82d105e7209b8baf", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "62825040b78bbac66f92b1dd000ddce4e840a4fb63e6b50b88611fb933bc408c", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "01c759a285f8f148a3a41c40ffbc350285855892a1f4aefad0158501a2514e2d", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3231b6ab524985aff9db03192ac09116921e6552349975c504af5902ee06df91", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5a8ec6bb212e9ee82e12bc9dc9fec7cc0e72884235741c9ecf3b83b36169d7f3", + "regex": "." + }, + { + "hash": "79ee4e715626cd659cf403658e83e150dba575a73e798735a8d92130b2aeaab1", + "regex": "(?i)^https?\\:\\/\\/fgjfgjkfghkjgfhjfgjfgjfgjfgj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "271ba7df1eeb92d1f0f0e17b4cd7650fce5cbff1421188a36198167de2eab805", + "regex": "(?i)^https?\\:\\/\\/fgjfgjkfghkjgfhjfgjfgjfgjfgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "300b41f7f9fdae88a7c363d92cd7e65456c81077c99028e437987fb5e79c7214", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfjgfjfjgffgjjgfjgf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "deff7d85314b7a41dcbe111ae2388696cadd8ff446d64ff01462eeabc05ac069", + "regex": "(?i)^https?\\:\\/\\/sdfsdfgrg5reyethygh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d841a69d59f29ce0ce5002c03bec040fca8f59b06219c8a92f18f94b007c7623", + "regex": "(?i)^https?\\:\\/\\/fgjfgjkfghkjgfhjfgjfgjfgjfgj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4ddf958aa5adc578844318d0a6298425a175e792fd750d1e958a29c72509e0af", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjjfghgh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "01bc935ea24dc0e79df3fb25516b1f8771d0669aa1d69ac89a28d9a0a33f6de4", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "691e7610350fef1c27b64fb24e44135d11f0708c384215f0cca3a4f84b54ed83", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjgjfjfgfgjgffggfgfjgfgjj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4a99be8ff2f1fea266c7eb6da230b9615d7b2a9bff6f130ee082e3b2c158d517", + "regex": "(?i)^https?\\:\\/\\/fghtufgrturuuufgfgjh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ea8958c6dad5582183d02f85bb2fc0c0a22738f5f87125563322b3b07623de32", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bb252138d4a1340f8bbb934f5c74c339c98456deb1333752e161f63c7aeb9769", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7988a0e8a7ff2df304112faeeea40a9f5df036a1e043277f7ff778e4aa07e6a2", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "40427f815b5d948b68bdc4b514b885230acdd163019e0ab9f7d6b63fe72559b3", + "regex": "(?i)^https?\\:\\/\\/gdfgarehrfdebgd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8362f2b65c7ca003cec6856db2d3eeb3012031335a2b09e9a69bf689cb760212", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjufguuutrrtyurtuffgj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3188e269ebba3155d4ce9a3ef9d35be0f211d7fb71f555d4f72a2338951882f7", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f37127cb34d1e311751067c2cddd228222b887ed9ee7c961544bdf7a5627f610", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f759cb1c7fc6aa191c0d9ea8ffe2a9fec208c5e8d56977107e84e775e86d7e74", + "regex": "(?i)^https?\\:\\/\\/sexygirlthailan\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c9b10c9d6bc770f7d6c24468e153b548fc3250f2c550baec5ebb7de51127bdd3", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6becf2e74c11bab715120000fd775fc1674e9e2916e7cd5ea05fa6ccf454008c", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cd29950a986b95e0e35d4483ad3d09a0831843ef1a59187897c644b600391b6a", + "regex": "." + }, + { + "hash": "f2e06871c4159a65351ce99e4ac8f5495b186569d51a20265f24c022079f971a", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "85c98963d35af4253720b0083cf6737a1b422fc70fb1cdd953eb7d89d7320b2e", + "regex": "(?i)^https?\\:\\/\\/sdfsdfgrg5reyethygh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "12af8745d725d4302d535bc86c1c806ef3d10ae176f8dde601864a30876420e7", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfjgfjfjgffgjjgfjgf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1af7ae2a8fc2030e1010b19825daf7a7b5695b3b25cc69746fd2056918cb8edf", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "86f2e798bc52df27fced28c1f63fc9784b4c097a3a322b3095c5e0cd7f7e8b53", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "71b76f4f35a94137c386ec2e8b568a835a90e5ef4c8f0268fe94ed49c01cf4a4", + "regex": "(?i)^https?\\:\\/\\/gopalphop\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "361e23d646b29ff687424834a10e58f49361686fe838635b77be6553ee7d81e9", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "31608437fe864ad98d5ca343a11ca11231610c8dcf7f532326f1005e62a54edc", + "regex": "." + }, + { + "hash": "7ce35da329ca297286aa82abb685612a7fdd0b94a5514479d8634f06caea7a36", + "regex": "." + }, + { + "hash": "5e345195e5aeec4a50651668b3ec87c7a4e03b8bb2cc759e709aa64cd15234ac", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8acd5edd83762204c1d302da618714c0ba847f262bca20826666d5906fef745a", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjjfghgh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "afa1ea55243088b68e43f7648f3ceeeb4cc494aa18d317a254483d7739ed2d25", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bd3e4cf71ba1316b90768728dd85a774ddfa88cf07e50c760b793a05fa70af1d", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c9c30a9dc1291dd522a65e22a5ec3f4a2eda8093847744624c3ec9a5b20c666a", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ec32da63253c8113d9314cf0f734ed84a3df4a14a858c775a9bb4e9886250312", + "regex": "(?i)^https?\\:\\/\\/gdhgfhjfgjfgjgjfjgjfgjffgj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "66d43b2567d597a7a4e39dcebc25ead5cd86f68635302ad78e97e59c00fe322d", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d6505d7c55e666d636f800b416d84a29765b33994c088b3e45d1a74243fdc89a", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhjfgjfgjkfgfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "823fe16a57571d5032d914ceb67afb2553fc0c9e8ab7dc9a5047ebf0f9901e3e", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjiytyfigghjkfkhgghkjghk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dd9be580483026ae47a2e63e848f6edd0ac940fec01444761a24b9269876d15c", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "27d0df417a84f20f59dad7afe1a202a4ce773cac83e8c35dab4d7538aa344510", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjfgjjfggjffgjfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "049f1665d82a029f334f81f8306dd00825a12499adaaaeae9e55c415fbf52954", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfjgfjfjgffgjjgfjgf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2c0839f0bbe88cbfd4ad279d540e6b011c658ad7b22adbf33426769423e94257", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhftgjfgjfjfjfgjfjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "44132c1cf916c5b0dc742e69fc074011ca7f451433a091f4dcbc5ff6612b6a31", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0c6df3db4f5ddbb5978a02dfeb14fc43c194f0073536e16fb199bd8354577f45", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "237c4171fdaf774cb7f3eadf337c8d11a7449961abe6ceac0f6404ecd490d3f3", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "66bc5cc5db7c38b8efb112df40ecc0e8f32d7c684a26e8b8ccadad85a217b6aa", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ff30e0a3ba3f368a25533385dd67e512a9c764e67c80cc4a0c5fee4b31cf84a2", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6ab0c772c95a77468ee450f733650f7ab1fac83ca7b477e833a09457c44602aa", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhjfgjfgjkfgfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "aabcf23dfc44d6b90d4ddf59af4eaae112713dffb3893a35654a9b21b8e3fab7", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "242458cd09d795d67459cc071acc933c57caa0ceba711c2b619906e14970fb56", + "regex": "(?i)^https?\\:\\/\\/fgjyryujtyiryiyirjyfjjkgfgjkhjfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "33c5a249cc2d6f4e04729d0eb7f6f910f2273c45a0128ebca8bfa41d2e47d38f", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhjfgjfgjkfgfg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e524f356b1012b8f60fa29df704a0657012d37ecc652ad25c9176ee0e4ec6636", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "786dca2453c22fe070a7c3543eb55664b1224becf35891a2831ebb980c06b34f", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "476096719b56c8e6482560354ea0042c215b124d4741e6acbbfb955df2fc25bc", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "25a4c7cdb69c6f49de3408e64552086c47a15430991f9e55cb69fc2ee388b51f", + "regex": "(?i)^https?\\:\\/\\/dfhdfjfggfjfgjjgjffgjgjf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d7c50e36bb5209e9e5a749e5812e997e58f8237171a1c2dabd07aff619158a0e", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "880225ac2ff0fa694fb26a40554c00eb889ac9893133e0a19eac5dc081e51562", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cebe4465ce3119f09211bfe93861dc5b5191f287a592c8a5c708bff489a9bc27", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0477dcdc44d558de5092d724eb9158f87a1be6250fdbb2f25a697f21aa054d48", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a8d0bad30697ddf52c860a25a765a0d39c0a9a5cdc38d5f5f97a6eb12f065c95", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjjfghgh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ede0146047184be51fe7ef47a2bab99d4520f770fcd2d5d1cdb5497d1fd5d545", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "49f658c917b17b87c2941cb511ccaf4d71f01631ea2323094c9588df38b6a927", + "regex": "(?i)^https?\\:\\/\\/dfhfghfgjfgjfgjgjfgjgjfgjf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9dd833099b6db837e9335aea9fe97a443c7f6e4db4f1fc622b5527bb6718347c", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bd160da8efa74fcf01dd09114ec8259bc3614535bc58fa3ebe5ae9c286a490af", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f3904203e146601858710bca97208b02d5950711d8ad5a7dff45bf58bdfad7f1", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ff46caf00b33e867724bb1004566aeb7675b6f74908cddf0c67e37da4aab91fc", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "deef270196f65e0119a57fb55b5687d114790955d6cbc01f2570f4c56c921dab", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "42459b6e133cf441abc7a6f71b785771e901dc73426680f0399610bef109c7ef", + "regex": "(?i)^https?\\:\\/\\/gabyzinhaadazl\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "626dcfa2223d275f739335072f0bde0620527abf13577a1f2f6622cb79cf5251", + "regex": "(?i)^https?\\:\\/\\/gdfgarehrfdebgd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "25d682e1b86604e4baa661e7e6f20377836fa5bd14bcecb234d708fba27c3339", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ce117aec7344406704fe1f782184c13991574373b7e378a5f0c4dde327db48f9", + "regex": "(?i)^https?\\:\\/\\/sdfsdfgrg5reyethygh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2af7845b0feb3580db9762e09ebb0cb7835a949cb5b2017eeadf278c852d6356", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e3d7de72b54744aedbc5c68b6a52686ec6c1649a3becd8d111f900454a414b03", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0da7ccda226e606ee6042cbcfedbd07e45dcf3869bcc417d485cf799444246f7", + "regex": "(?i)^https?\\:\\/\\/dtghgfjfghjkghtkghkgkghhkghkgghkg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5f58f8c89204602d53869561e07d2453e283ef96752c770e87fbc17ad925c474", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3785133fec109670c3272e94694085b3942593d175be273fe919e8768ae7af16", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "188443af0a37f4e2054346ba90bdcbb5ad5d9a553c4aef63b359f35f1dfbae20", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "529d6813c1c7588691de9a007ddf8cd7c5619591bb3aaf1e2b7bea7146272a6d", + "regex": "(?i)^https?\\:\\/\\/xxxrobloxid\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18475c03744f71d28e00b9e151cbfbf6a4463556f9b95cf38100111287e5c70a", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "de1a6683e89a7ad5f55579666be63fa17a6034ee4f30a0ff26b55530568d069d", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "644d9ce4928be0236642d83d7964601e9fc312f74080c67ebf35ee4cd4861c04", + "regex": "(?i)^https?\\:\\/\\/inst23\\-foryou\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bc2cbec8c96b3a855db834cee0b060a346ef0a63f172175bfff7c32741427c50", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "203138c85148860c51fa389faa29e904aefc4f4ddf852cfdbe6d233214793ed8", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4a2b0890b9376b9d880ea6f63c6f787aa289a98cb3f5d83600e7072128033506", + "regex": "(?i)^https?\\:\\/\\/anime\\-kenshi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d4a3a301737857bca97a3e8427ce004b788231a07ec615d56e22a871f3b0570d", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b7af588ed11ef58674bce6f527cf5ee7991892681170919ebf1224d1bfe5bc4e", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3d26d980ba79ea7f1946629ee180373b89fe69e0a3ed2bae0513e05f3c40040e", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ae2da54fb1e05c1fe14d01dd7abe08223f748dd779c8567ba6fe7cd702334e8d", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4dc772ca8f544ed345ea9e445a6b0942463ffa5dfff79ea1f3ce048401bf0e2d", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfghjfgjfjfgjffgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1b462eb3e54f1b2aaaa58ebfaeb72b08bb8bcdf8784d4d0a4da055df4c184795", + "regex": "(?i)^https?\\:\\/\\/inst23\\-foryou\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f7be5ba3aadb071ebaee3f41379d148521a0144365d236c878f63917829dccca", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8dc623d4d57265294b3b8182a2cdcf57815797a4c11c018bc4cd640d5b6a501b", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfghjdfgjfgjfgjdfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e1b99611da417b548b0aa89a9805001410a2fea30e9bc74ef11e19b283ab4c7b", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "72504c9b17df3db503f47cf8444b145a9a895c2a13a70a7efb5ec2dea7c50991", + "regex": "(?i)^https?\\:\\/\\/gfgjfgjfgjfgjfgjgjfgjffgjgjfgjffgj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e6fbd248955bbf58002d4b2221de09f479e8ebdf9a90141f224eda73df24e806", + "regex": "(?i)^https?\\:\\/\\/fgjgfjfgkyhgkgkghghkghkghgkhg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "45c89f2941eb4605f1cbbfd3d8ce42e65434d715dfbcfd9b34c8db3a62a31af3", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a7e3610ff11e7d6f435a28d432f062ea82701b6093fd3ac17fcf1ba8a3cb4f09", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a093a89b78c117897c0fab8e3b546cce18635b0003236a4e0c540c01cba97b7e", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e37f2a777b5891c3cb227e295913fd4639d6d5d7b6bde56cd22d108d16fee1cf", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "095e7da945c3988b22f07ec09ff36e75e1ac17eb703b77020a05f997d76902a8", + "regex": "(?i)^https?\\:\\/\\/dfhdfjfggfjfgjjgjffgjgjf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2ba2862ede4382b0357a2c13f3b1a397645d93a4d0585f5a8645b723761913a6", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c71026cff89467fb7c98213bbdbcb7869ea4c2a305d561fe5465ee30fe3f6aa9", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8730d1adf15ab9fef01cd9492b244e28dbd9d70747d75e2a1339aefed245aa21", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c955d9d86bd815f46a88e26399524b91ca14d4414bc5b3bd3d7e32f0b9392965", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "76b6a29cd89ff154c99818abc41601126bc677127f16451595cc706e89ffb817", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "168d8e195178306520753a2d644e509d59a426b25d2b9790957a00adcfa95264", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a325065f68273f9067f7e725ba6a8970203ca0772dbbca2d2915af74e0d5dc24", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "904be7f16827cea2669e3d8feaed5e70f7eb76bd14a3815c52f58ca1174eb4aa", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "82d7c335423bc376b5086941682e5b0b48d5f5d52828e3dcb3f9f3749dfc5b47", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "61d8070fb6caa906e24db5800f0a421e87c0563a5651f2eab9f13a4779db1db5", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "401e7c2635f197c40fb0a65baee49dedcb1e17933ee5586049e9d0fc8b1ca020", + "regex": "(?i)^https?\\:\\/\\/dfhduhdfghfgtjfgjfjgfggjfjg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6eb39d371a291d8e21ca9e8e7a735bc582b9cfa0b0869dcc8c02fbecdc45770c", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "88480dc8c1df5f660294faed2ab3430b34849f30df8015a71342db6572b52d7c", + "regex": "(?i)^https?\\:\\/\\/dfhduhdfghfgtjfgjfjgfggjfjg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "51901ee826bd403bd617723a7319b31d7f4a263b671d48755b4a1054aeda8c07", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0b3071815410323d393f1c958807e8e1e544eaffc25d0fcf29c09827b7377d7a", + "regex": "(?i)^https?\\:\\/\\/inst23\\-foryou\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7250ac1f781be19b9805696291292cde595de7704303d0111546e5bccbd61a63", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "81a9719b159d44df103aba567b56ba7fb975ce5c048386174ad822508efa1b21", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b58f0eb1eb5151936813fb71ebca658951e97057836e6a85f3891bafe08cb5bb", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjgjfjfgfgjgffggfgfjgfgjj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "542d66937a30079c4f12893b8a447ccbdf2e70e98349d8bf5c8fa4e11afd6799", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfghjfgjfjfgjffgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "43922bef684471651e189be8151cad8efe7487d33f7aeb879243db2971d0999b", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b1b51004ba51afdca1e647b918a1f629ac4f5dfe3a0c07ce3fbce653d0634290", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "32c4de5fd1265072887208e3636cf35a5cbb76f92ad0ad30fffd24ad8cd6990e", + "regex": "(?i)^https?\\:\\/\\/supports\\.coinbase\\.134\\-209\\-219\\-230\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "79f8c4c4407e7750419043e5b26c5358ed3a257d6b7997958f196cf1552c89d4", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9cfadcbe03d62208ab0601e77b4b9b4063462093e0c28bca26111d94e766eae0", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "527698991c56ef64f3d08639e8068b6af88a627c8ff0bef78dc96b98b9cd2f8c", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5b404798621611a56158272ecf479dbfef311b1eeb2fdb730e10cf71e2e9c8ee", + "regex": "(?i)^https?\\:\\/\\/fjgjfggjfjfgjgfjgfjfgjgf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "eeb43b1fdae698ec99870b94e1d746c552afc9bd891b2f92d682f3c1c3af542f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\=Y29tbWVuozOTcwOTUwNTM2N\\.html(?:\\?|$)" + }, + { + "hash": "9bb8351bf2a8dbed6a79426563f5de77e8804b4d282c885154208c53ccff4d11", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f5aabec8c021e1f54291a66051a59287652543e35071acc3c9523a5242c3d149", + "regex": "(?i)^https?\\:\\/\\/sdfsdfgrg5reyethygh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f4010b4ac39d038e2ca89e5e76095ecafdca4e6860f8a59dcc1d96b4e7a29509", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a654dfbdbcb27acf68a2eb2f3a6e46344fac44bead1aafdc82bb33e0062e0baa", + "regex": "(?i)^https?\\:\\/\\/ghgfjfggjfgjgjffgjfgjfjffjfgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "925bae67e850a8eb74c6b93bb9a38227b2639367ea4d5e4040ea51aefd5c8027", + "regex": "(?i)^https?\\:\\/\\/belgiumup\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0b8d758e91e424e84fed733ca36b50797451f89496c73b26926b576a3ac6b455", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{12}\\.wavezeno\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "87a161b5babc0d159547763a075d2e66eaaef4097c96efc7e680f4944d483b53", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1da8534dc995069e1b7c897836d033b7266d54f52f54e5fb05256328e847d97d", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjufguuutrrtyurtuffgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eab1e4a288d1bbb96db584555701c0eb8e8e20cb2b08e7526d24ea9c70f9a6f4", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "28e77ab40a5b0fc9efdb70e06f78acdf2de4bb89b81df961d0d4f5e42103c9f0", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c8e490a37ddd164a78edd23b854730b5b1d902896a7d464ded27cd16e8b86b79", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfjgfjfjgffgjjgfjgf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5085bae9fff2b0bcb7e8b4a6f7a4aac9e259a2316b05b5e6da0e5692b9d8f29c", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1280bfa9a25fd1e32f1c5ed43f9fdc7dff75ab659aa739cc3915ff9eee3a79ba", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "37e4efcc41aae17c9a4b3b8265f2762f26ce2a78fd201fe35a6117cdc9e48bcd", + "regex": "(?i)^https?\\:\\/\\/fgsrgtuidfgdfgjhudfgjhudfgjhudfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fb8e772b493366ddd51e4c15c9f5137ce621682f8ec2df6f2699358550c3c3f1", + "regex": "(?i)^https?\\:\\/\\/gdhfghjfgjfgjfgjfjggjfgjfgj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3dc698d5c0cd3e2ff7e28b3221dec45efa3d6d728df45fd1397a0eaebd4d487b", + "regex": "(?i)^https?\\:\\/\\/dfhduhdfghfgtjfgjfjgfggjfjg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1a2fc13ce7a8569a7080aadb95c9e7e8250f5cd30e177eac374b9d35b892dbcf", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d5e47fb86a378fe8b702c828a3e25a5af3587752c8ce9521470f03eac0ac6dda", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fd30818b94f3d198c9b766bf2666c90d1a15753035a898d4112280f3847a758f", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "80e0709b98615d75945ddf83f4ceee9e3eb65170976d1554eb3513671393d0d6", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fcb6e90525c7306e050377e1a33558cd74752b26d23ee9b03e8abe7f9299f699", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a7575d2fa298ca2eb4c9416e1ea5027d6509d0e9111fcb4f8aef8cf6b739e9aa", + "regex": "." + }, + { + "hash": "abb1ecce45b97015650fb6456785c07973a078a46cd960e6cd5e63d289494d2b", + "regex": "." + }, + { + "hash": "f9ae1f490cfe57f286989430a8b4a33dff775bc5ba1ddf0e8bc31981ce7b4d7e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "171c21df0be6605682c97c2109ce145f918062cf38db378193e19c7a4330f319", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f6eb0779ffba2e3ac3de28369fa9f3a8ba274d00a4825d7295c2fc08b82a818c", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "499dbc0f8ba15bfd1b526b1e7d81820ab929524e36101cefea64f6a797474128", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "897a7b5a7bf1fc2771045dd1cd5412f8df1603a32bf6fd1ad7091058dde8f344", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a220bbf9e50a022f09632dea772cd138f917ca882eacaebabcb5bcf40f01de64", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfghfgjfgjfgjfgjfjfgjgf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3376d07c356f06b3c84ac0d4d52cc932a9acde0c4535dc69c26959a6e8585eca", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "581bbd2a93b1bc986985f1e1b707ec97e6b8be661e1a22a0a34dae4a135ed1c2", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bff1cfa155b24c7c0e69e94a9772817de9b9f1d5b8fcb5b3bc08d5f5bc5b8a34", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e8b44038c41ba872e2b79f2a4512f829ea22312d5c3de053b76ab0e8ce050b51", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfjgfjfjgffgjjgfjgf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "24d81cd271cdcf5a40ba49a838a00477493550cd1ff92d04c5fc831448147fd4", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7a806e73509d22fc0c426a7032f95640788288870d3cc36a530926182b2c095e", + "regex": "(?i)^https?\\:\\/\\/fjgjfggjfjfgjgfjgfjfgjgf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "273e19f45d2d51a08351f0204c28fdc7d78f6a2eb54c56cf88015b3bde7d74c9", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "09df8a5fc651ee9f0b1794a88b380ebb53c5c885c90eef955861da7eb689a705", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "892acb24240ef20f9831cc13b77a996b00d3dc05e9f9fd9b5fd415bcc72c7b34", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "251e2da11daa3a5921dd98a06ae73c680d3cb25fe5154e50370aa806d0a1259f", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f5faf71f245d113c1c7915fb309842262150c409605faedc25b69e184770645b", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfghjdfgjfgjfgjdfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "401ee32b33d6166bd4def390ee4077a0ee6c0993dee3f11565f06818f1703f29", + "regex": "(?i)^https?\\:\\/\\/fghtufgrturuuufgfgjh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ea3347be6de3e26294ad9026355b7f9053db9771cdb349d3b5dc451abb6a4fff", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cfae50bc72535fdc86b9f89ab84d38db8e283248b46a770be4f25fd14e387b0b", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjufguuutrrtyurtuffgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fcc6acb55b5c35de8768d4b61896893c4ef44719b0b5556c861fbb2ad265ca11", + "regex": "(?i)^https?\\:\\/\\/fghtufgrturuuufgfgjh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0b018fe9ce408adafb8839457f173471d4c1b3ccc46c6b7f5bd48238b763658c", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "10b49f15051244d9479144abc11171eb3239180632db78a110c66d4a08ef5ad2", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6a92c292f3ee215c8213985c0a09a03997c890e63b828cebc4c553261e3cdba1", + "regex": "(?i)^https?\\:\\/\\/dfhduhdfghfgtjfgjfjgfggjfjg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cf6894a1a2b262e0a8071c66f12a8698cbb0c56db5832267b2a1de2e86590470", + "regex": "(?i)^https?\\:\\/\\/fjgjfggjfjfgjgfjgfjfgjgf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b84687992698aa5a241f88774132fd1b37af7d83c29e47041cbd4cc71e70742b", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "27f6c4c3d96e0d902ce19181f45bae008c28f99e320e0346768fff6d727a11a3", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8a244d33490143c81dfa97dbb215fc4608fedfa08f0ded27768560ecb079e454", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9a017e66c35a234acf7a299186109d5f703459306487c82705d62e8b7b699c6f", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "21ce821d866d0c2f3b1b50d6bf26dd792aec71a2dd32ada9f72f5357987446d5", + "regex": "(?i)^https?\\:\\/\\/belgiumup\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1e2b48b1e420292c7c72aee7fae5748de1f6903c662f3e7d88ccee439140f0e2", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b5e30340d420e74a04fe26e8bb16ae6be8fa7bd0a5eb4ee4d44e2653c585ae11", + "regex": "(?i)^https?\\:\\/\\/gdhfghjfgjfgjfgjfjggjfgjfgj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "297ca7ce36c38a1d96cb14563b713d70e637838243f137c18155477e7cb4b1c8", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b4168add04c775ad9c3083efb4057b9f338e1a1d88be72f95816cb514855d552", + "regex": "(?i)^https?\\:\\/\\/gabyzinhaadazl\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "46e29b84016313c99f6729c67e82d079989b231e380820c4b21e48268f1c6642", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "350e35fb22f5e74c74a74f7a49f008575a1792c1bbdbff8ad52110d333d9f680", + "regex": "(?i)^https?\\:\\/\\/dfhdfjfggfjfgjjgjffgjgjf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "477c7ed30541afba4a07d5c300313ff0e5981dc5bf96c04c76e3c6624329efe1", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjgjfgjfjgjfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "33c531accff653832bf878caf3ce2c9c6848283993a8e04011fc6f6b52e09c36", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "acc8ca76cdc090a54c08e7975db66493d435c0ca3d73323074a1f1d03b9b110b", + "regex": "(?i)^https?\\:\\/\\/dfhfghjgjhfgjfgjjgfgjfgjf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8ec1232037b7cda7c822ef7fd280094b49335e393a19add9dd3be880eb736334", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "302ff35fbd8ec59c1afbaa622430c9aac910cbfc69a347715fd6f1a93cb6d3a1", + "regex": "(?i)^https?\\:\\/\\/fghtufgrturuuufgfgjh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "71942274ad8d079b1279e4eb8671343dfa187df9f543dd0746a8013a7e7584f0", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "96cbc51ed411fc8d2f71feed73956c8ef98b6dfb12f72cffd71e17b5c032d4e6", + "regex": "(?i)^https?\\:\\/\\/fgjyryujtyiryiyirjyfjjkgfgjkhjfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ec636407bb9a74e70c6c09da1c88cded4e003a5bd2bff497c3c6c064bd27c0e1", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1e2ba5d168a6d8c656599b0a12de4fabdbeddb1d3df1bef89d82779555463834", + "regex": "(?i)^https?\\:\\/\\/foodcontestsandnewsandtrendsb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d8429844522968262230903af28173ef329c651b7a093c1a19e0d978457f58ba", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3c1d4e1e31ec80602c4205d7b173ab8cfbd1c8cbafdce16f822380f34d704b26", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "842349bef3ecad3ca3351dca9e442d1b03496849dc72ddce73f2ab0d2e4741c5", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b5ab1df69607e157bf4ca0a0a8379068538f958ad80d29e185d2132656465219", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfghfgjfgjfgjfgjfjfgjgf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "08a8f9df581d32586a28e682edd8590d9784809490c9a0d0dc64b5b7db2bbeef", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7bd18f8dd3430dff53be57e30c7d1e61b881932496d1ce9b761ba8a4e4514d2d", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "82c5eb9f83fb80b4c2cc24ab309cda933189ac40099984b14b065a3c6de9053d", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhftgjfgjfjfjfgjfjfgj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c53b5531ff7a7c3055a27613b41de7b5df639c509d32ccfe65ebba119859aeed", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9dbd0c0072f1e9ae2c8373403e82444b998102b498ef9e57f108493288a6266f", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a5847cd35ea78645aebad979dd806a3e25652217b65ce7a7c347920548f52a7f", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6ebec7f4bed364ffdea11947549c774e68c1ab019f80c74c1ebfa83cec71778a", + "regex": "." + }, + { + "hash": "5dabbf525396fb8cdd677130a163ac2f80ec78e592db9894a7f7b6a1f9bf6663", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjufguuutrrtyurtuffgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "98ad4dbe91fe672a25039ddd316c0526f0cdc2393f772c0391e4c1bdd82b1102", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2f1830215a2ffb98ab9cdd33b3fa8cfb4e2cdacfcc6738400a21e7129bd1d1ea", + "regex": "(?i)^https?\\:\\/\\/fgjyryujtyiryiyirjyfjjkgfgjkhjfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3d559d81b6d0a976e4637376013d638715b9c74d31d3ef24efab9f14d9ff475f", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8c5096cda583f5151bbc5c24b945b76fe02425a27bbb2bc5788cbd534aba3732", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "900ef4f247c5bd12f9bc5a2b503fa335db88265eacfb8f27e20004985adbe3ad", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "305fa9218308a5e6a85622db41f3ee2f4cc95cf63595103dde753e3f16b4b3a3", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhjfdgjfgjgfujfgjfgjgfgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "99f9acb341240f650fe31e4438385bf865275ef20e1af567268fae26b6526707", + "regex": "(?i)^https?\\:\\/\\/fgjfgjkfghkjgfhjfgjfgjfgjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "26f0adffc9f6d68a7b89741b737b7e852c48b4ba00d2d200cb6cd34dd99bff73", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "33d33297651eccee447896ee5cde3b389f586685eb1c1d3f51ef04dff1eaf26f", + "regex": "(?i)^https?\\:\\/\\/ghgfjfggjfgjgjffgjfgjfjffjfgj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6c87b7a0f02b73736c2fe37275bceaf236c7414acb3d0446271ca2c2e9e6b49e", + "regex": "(?i)^https?\\:\\/\\/gdhfghjfgjfgjfgjfjggjfgjfgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "93b29c6238017bab464df518b9a53321a035acd05a05388890ad2224105be30c", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "313e549cac19bb3d90e3c8a4d44a8d2ce97a2f73b20a90e4da8e0250af3811c8", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjfgjjfggjffgjfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c5a01d68fca06282b8f5a0ae8219c7bff92dfce4d60a3bea83d2d4fa5faa4e60", + "regex": "(?i)^https?\\:\\/\\/ghgfjfggjfgjgjffgjfgjfjffjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "594ab44fd4e9e606340633757e8fe8ef430094471374add5429c884134a3a7d7", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "aff1927347ba3b1b8ce80596a156ae4e088416c04982842b74d31a7d24664a14", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9d50253e06641f654dd338e961772ed253bcc5d2089f03870532f5099eda767c", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "beb9ce98cc423d1f6fc84aaab3d8aa9daf653196336667c91703f69fba4ce289", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f04770c54eac715c13bf7dcbed2553a669f84aad3aeb19e0781db9c27b02af22", + "regex": "(?i)^https?\\:\\/\\/foodcontestsandnewsandtrendsb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d7b7170423403c78e0a1e56fa046e1ac3a27fc8133cc2b6b465d628744da5958", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "278926298b424ac27bd99158c892e50af29717d40e4b692f39975b4a6c9d94b2", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "44a9f44a419bce350524e311b2bc9a2ad9cbf538ee21be4378fb6b052c47d0a2", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "134ee3489f5a3fb657eda3d575945375644fa6a35b76187516730b40c92db8d6", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhftgjfgjfjfjfgjfjfgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f3e914bf9e6b8113b0ab01124646f213da735c08d498888a167202c99476a779", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "56a84a4513c786c5014b4c57e2ce53d935b4a4672ed33b79b3af472785364440", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6d59774b61f4a934ffffb38aafa1d39096bf19caa0bf38083562884194fadd22", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "aa9ccb0586b7f67718dcc0105d50a7f69ba2b035bd14712f525d5a1cef1c5e91", + "regex": "(?i)^https?\\:\\/\\/ghgfjfggjfgjgjffgjfgjfjffjfgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "94312b9d69bb869164026a4c7e38a97d4adec8251c4ed4f892a4b7d4fdec2ad0", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cfdd8b7e959039a3b96ae2ad9096b027de2d8bc5c242479412a2d24f6b59dfe3", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjiytyfigghjkfkhgghkjghk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7920d94647ac8a45781e4f892d1d3994bcb9595e94c0d1a8ac9eba5dcb5fdce6", + "regex": "(?i)^https?\\:\\/\\/asimuabsolutlymaniay\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "021effacd4b82a333f56095f8f36fe60a4d807f5ace4e9a134123c0a546de66d", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "78af12fef6a1b3e41d836107ed10ad7aab790fb7d3e47b119f2be24e91adb9fd", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b3a1ae81cae5d311bfca657d1bc84e4c8bf2e15bb6e49b5666d08fb99e0ed759", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f34383121ebecd6f6801fd6cb8f44fc56aad026da0bb2a7cfbd83dbfaf0add41", + "regex": "." + }, + { + "hash": "987907da03c098cac8bbaa60c0fdbb970ee19f31ede931ace75ad9eb57f20bf3", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "23578cb8e5b11c03bf4bce005ed6c2417d815bce28630730049a08fd94e09fd0", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e558ec90d606ce8f13f8845f8b711dbf87e72fc4cc8695eb48cf071f66520f75", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f3a05581db53bea3fa4683788152bf58d0218ba5021b7d12392a211cbc3537cb", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfghfgjfgjfgjfgjfjfgjgf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1fee777500c79aab55be810042208a6c105960c3d12427dd13c3d3189208b0ea", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "431ec43fc9203952639977ccd4d60df03081360e7ebe9aa5ef6d392fc607bff5", + "regex": "(?i)^https?\\:\\/\\/fjgjfggjfjfgjgfjgfjfgjgf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "93e373222f3b26358a937391298b6956baf0832b88d0d5af1ec34a030060f031", + "regex": "(?i)^https?\\:\\/\\/dfhduhdfghfgtjfgjfjgfggjfjg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "07e7a631fb23548f92566c76b46f68fb7f47954e5dcad938d9f2f6e54ad58835", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7e269391d2ccac7cae4499d839e8e200c553b291e1ff1a2e913b5b98e51970e5", + "regex": "(?i)^https?\\:\\/\\/dfhfghfgjfgjfgjgjfgjgjfgjf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ff4c44e1c211f21f84f30b214d05c5df8d8a5a48169dc8514f355ce49da22312", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "acce6f7c08df22123085ced4664d32a4fac595beac329c369aec5d4ba258863b", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "31441a5cb169f524088f206011bb98962d9c063d7ab38d8b1d7796244a258bca", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "94255a800c29d6071ea9a6f68373e4865ac1864b503f5d68a9d4aa7c29761e28", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "047707ee70c769cdf16bcaac7914b1f002a6509f396c167b95da25b83c8066ce", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ba8454cb38a7bd9a711d7fe6e2b25a5bb0a91574dfd50467b37c3d60f1c05e10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ctmf\\-ntwr[\\/\\\\]+njmprwdf(?:\\?|$)" + }, + { + "hash": "d6396b8a7d478edaafae46de66d323a5378f8db704ec9577ed78e5658938cff5", + "regex": "." + }, + { + "hash": "08c6158185599fe9d723e4e75a57287943ddaf81e60da9c1ed09643319997411", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfghjdfgjfgjfgjdfgj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "96fd584bba301eeeeb03d2fb3bf22b123d4b682874cc0e65cc77a31a195dac09", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ee4c680a91d290801c72acf40edaaf628ac3a60c62155cb7c53311e7b2541a21", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "962b64496d77d08d091eb8db992653acb3671777d56b8ea362edaa5a766af8dd", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "31e255cb6ecdbbb8ccf2fe115ee4e8bac3e0bc5ee35fab45c03976a607dc8997", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjfgjjfggjffgjfgj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/tinbon.com%E2%88%95dyxoijeo%E2%88%95jhpzss%E2%88%95ppcnhmp@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "b62ed44ce0e8b32ea128ccc0073c185e6916e0c23ee1d406fb0a9fef57a0d0ef", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "933d432d05abeb0e6bf271bd62000206568eb8f6292ccb724919a1e0490c884f", + "regex": "(?i)^https?\\:\\/\\/foodcontestsandnewsandtrendsb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2999e427bda9654da504db1e1fc18a3f65fff521089cca72b23a80601f088ef3", + "regex": "." + }, + { + "hash": "2281affbbdb7e293186297bd11c9953ad12ad592fb6fb7164e1264ad754cfb9c", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8be0b558f0ff07911498d4ab5693f120273d7b34f1a76ed8bbc25989f9cf76bd", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a0ac033d0a173ce4ee111d6a5992dd49803f5043d7d821d1345552a9bd71dfd6", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2084523d4e6de169c15baf08d1116c2cb2f3ce8e7713c30985d6fb0e24aa1807", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjgjfjfgfgjgffggfgfjgfgjj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1d9ad612c3945e30cb78d7986cf88bb3edc5255f65e3048cc54f8ac37cb3a3be", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b80e896f5ca8e51b9607dc5025c680fc2f7cdda4a75b8fba2206b67f2eceb869", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0a37265945138ed840cd3c6d3f744ec7a3f7242a4dfd3f4d5ea231630a864755", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "14c71a3c109171ee9b7a3890435f5ab6dab40668b9200c8fcdd0b9f359022d53", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b05dc5325d794f925f699af1961c926496baf8c4e943361068b7cd651a1ed0f9", + "regex": "(?i)^https?\\:\\/\\/1000inwmoviehot\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "17cf8ba95e5f8c119d7f7587830f5c74ef927b1f010c6f61e2808fd61bd7368c", + "regex": "(?i)^https?\\:\\/\\/fgjgfjfgkyhgkgkghghkghkghgkhg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "60e91ac99b5207c909103a2bd81e75a9f2c3a547878c4d41ab40ac0ad50195eb", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ecef60e26766139776f17fdcadb87e66a3a26517a3295232958e3e525b2df93e", + "regex": "(?i)^https?\\:\\/\\/anime\\-kenshi\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0e7ea1c74d37de3167c73c3f44c280eab2e5dc5e3a098ee3369cbcef4cc03d12", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77db43c8f366abdee95f4565eb257b67a071492689388ff199ac6916420706d4", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c212a2aefbf9db8ae0e27f41441bd9d0e72ac678715e6227c57462134b34973a", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "387d4af827a0a221427f915ade2577ccc8c4d5c3d8d8aae6b72e73890d52f237", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6d5588c402e6d2b4f85b0d064e339d3edbb3069277be6fa7dc2cbb5a0cbe5c22", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfghjfgjfjfgjffgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "db2070e600e3d8ba4e328dde6aea092274c046ef8a004ebffbcff2df279ef253", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfgjgjfgjjfgjfgjfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dca844741e6cdb19b0ef3d49f51cccf274f1524481fa7546df414f9414639556", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d5ba6175157846cd4390202fa1978760496444d7d491ecfc64d61068a6b4a877", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e2ce1814a6cc743abc39ab6f92299876efd427fff9e458e22cee29e8d136dea5", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0ac4d984e9bbeb62e3beb86f66a0d921e11b54ce488fb4dae2c00583aa56b7a9", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "62e5c8ea16ae2dd31af5cb93d51e75552724c9d2ed1b659ab6b4e30bed34ac00", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e47cf45e48b30e8e6c143adf242d24458f71b0a92f2d8e154d54b84ae2d07aa8", + "regex": "(?i)^https?\\:\\/\\/pub\\-5fe402304b2343e58dc7818fe79ea92a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a4dda96c48ac97b29f489e1cefc4bbc7c38a71acd3d813abc9eb36e25a1f2", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5ed0bcd337b8feb7019f0121e44a0610c0236c41d7c5a986710f5774d7a1ccb9", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "10f1247e1a16060c5d437832badc902f4feb547d40fb980335d9599dc9c13aae", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfghfgjfgjfgjfgjfjfgjgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "919de31088f18be2f47c9fc5e6e73e5469dc43d49ca46e21a746de3247426819", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bdfb63b9e27ed683cadba21e9af3a48b516b8790cd6a0848657ee4963653b006", + "regex": "(?i)^https?\\:\\/\\/dfghhdgghfgjfgjjfgjfgfjgfgj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6164bf9fd9f5a9f136a0c54a3b0af3516c35d101fcb482017ca3109a6932e78e", + "regex": "(?i)^https?\\:\\/\\/fghfgjjtfrtuturturjtjfgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4b272d686f521c0ece421dae840229a14a8b6ce59705e31f2d6cced4eb91b0c3", + "regex": "(?i)^https?\\:\\/\\/belgiumup\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "288a43868d756a20f5d8b285e4df1656aa43a7163cb9ea359c390325b40a563e", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f9304564140fed22b349375412a582223dd45340c623d69100f4346bd3894178", + "regex": "." + }, + { + "hash": "fe91e9134d97df7b886451a9132795822794fa0db6dbfb33da05021877e7b898", + "regex": "(?i)^https?\\:\\/\\/gfgjfgjfgjfgjfgjgjfgjffgjgjfgjffgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5cffc306f3cbe05a815dba79e819f86f912f1d736246e5c737f40dd74c824b39", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "57a2921658689b599e20d6845a5dc29de1e631cfad5241a696074fff01472fe0", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8c06804c311e65fb808dafea9616a3d9f9a42d9eda47c27849facd6a3026dfdf", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c2785bd126f9c01c2bcccf6a1a787d0cb6097083052890adf9a66c0243140a97", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4afdf0e3bbee1907b9afac4f6e16a7cfe8bed7a669c8901feaacea8208af71dd", + "regex": "(?i)^https?\\:\\/\\/gopalphop\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "29ed7b8f9392a6bb74f08e00cf6a1e2ebb8fde516a05d85d95425e73fa87962a", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e01e5c84d6484f25e1ecee834ee6bc3b49e9bcfa16939d68e228c277de3aff30", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "96b661ba05beb23bd8b1b6b958e8e0cc7d840c1e1e3eba173e5659ff9007f579", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "df86567f5b86b40035f28f06618c04cc6b926c5fb082d63a8f46b2cc9315d904", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a5a40dc8bb657afae3c38672c29d18fc497c55dd720801a888103a394f2fabb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?55722\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "ce3c154bb5a91abab2ed223894f9a9f657e4a4a8804db8244a3d21957e911f36", + "regex": "(?i)^https?\\:\\/\\/gopalphop\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "00b2c6a10c81c4266253847d8104bd86368706cf5e2ce30c8a1ba8b73d9fd4f8", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8aecb85dca4a09bb767fecbc8e93eccf2697634164203c0adc4df25f7326bd88", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "da3d870ccc2b9a8404606ea00af954c9c1e13b490e0a265de2994cb15e8d818d", + "regex": "(?i)^https?\\:\\/\\/dfhfghjgjhfgjfgjjgfgjfgjf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c79a0d4575447bb4753ccf0cdd0c6cc2b0da4d828389a4b468562cb9698f95e9", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b9927169aee4a49aebde7d9d0105b3a64a95b25b75e52d7b1aa686c93e39f68e", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cbee2b7fa8ed81e28cbd3381ea98cd818673d4577673ac51f0c598b56d9d0ed4", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "130a65d673bf126b40f64def2ca20ba2ae9a37fd2c76a99f5ef6077827d11a22", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "73f2a670c8bfec241099d36eac3b0496b32d6a7e246310025166c7961544bad1", + "regex": "(?i)^https?\\:\\/\\/gabyzinhaadazl\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "817faa3d4a545b8a192bd28f23f28928f4cc287eaaf47875345d5e76a01476da", + "regex": "(?i)^https?\\:\\/\\/gdhgfhjfgjfgjgjfjgjfgjffgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "964746230d127523a9b11ef97033ee9ff5afba9a013bc4a4bad89aba15fb3015", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a0614833b7500b9196690d995358460dd157f618496f8d32704f475c304f1bec", + "regex": "(?i)^https?\\:\\/\\/1000inwmoviehot\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "168166478f9464baa196f35223711d099e58a1e8b2207420b30adc6d3d9b4927", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "97a25747e1bb7edcc9a7d9092b7ae79c661bc10110a74ac2f9859039ce1f4060", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e8a8b4ce93c039f64f4a0ad51e2dda4a24e7c14c5b79b795c365ba51a64d180a", + "regex": "(?i)^https?\\:\\/\\/dfhdfjfggfjfgjjgjffgjgjf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1fa42d2572c975335e4b2bc97d79b0853bb5a6be3cd041284b90436f37b3a57e", + "regex": "." + }, + { + "hash": "d7518230e7f1bb0d1cfd3e3fb8bed635d6a6c3d4a10516678f6f85e9672ae774", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "abbc0cf6e2ef14ffcdc0024dc6fb928f611b6e9ab4151f4732179477a3af5fbf", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3a9425de3ac08bd162715d3e53137287bec4b7696d1267c69c7ebaebd86f6034", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ag(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e9fe11828cc96554f91f0d40570b521d6c228796f8b53361814acc4708eb4944", + "regex": "(?i)^https?\\:\\/\\/leekerwzokvye\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d978e3379cf9b8dd0a4016a08c0b1e3d70a15b9d0e3183914cee9013b320e615", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjiytyfigghjkfkhgghkjghk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "941d44859a6a7ef4a46e9cda3463ac6e8b696bb19fa0ac65e9fc488cd31e0314", + "regex": "(?i)^https?\\:\\/\\/www\\.134\\-209\\-219\\-230\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "78e070270a09abd9e76929404e56fa10cf90e8d5008cc85bfff61b97d472b31d", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3e3e886c8065983be84cb3d0ce9401b29ad7dd132455836508ece93aa1d0d81f", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "653dad74546b5cae493dc40c318d49667422335af813572c6f96a9ee396eedaa", + "regex": "." + }, + { + "hash": "759343977453294e2791b9b048a69405d39cf6a18ae4d8ee3248205649e2bc5d", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9426f79a585c2fbcb5bee295228f676c3e5ae402c94789def19feb085f98df6f", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "569098f1e4b01b19c746e1c0886ee69102c854b3c9ea49565c80d279b308e8b5", + "regex": "(?i)^https?\\:\\/\\/gfgjfgjfgjfgjfgjgjfgjffgjgjfgjffgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "67cd10375f3719a87423d40bcfebd1da4b001e5307329072053e7c314bb3eebe", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ba31f3048062e483bea585d91c4128c9377401318032ac33d8d532eef4e94cd7", + "regex": "(?i)^https?\\:\\/\\/dfghjrfgjgfjkghkghgkhgkgkgh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "09a1795795729e5905a1394dd1fc59926aab76884b7dadf9aa619b99a4230fb2", + "regex": "(?i)^https?\\:\\/\\/gdhfghjfgjfgjfgjfjggjfgjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cf054c93035aec58b134f2779eec6c0cd9248c6cda60fa91eb3f4d554185d519", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "92abda2975d01bc919f2c83031065266086b378f68cf8e543ab366df631cb057", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a58ac36ae78566091c3938a09bed4a2d09827e0ad457487e44bcbe6cd2a7df23", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "325e911fec9577b1ec3fc8340464a4c1ae639a35dc09617451a8c1252a594d2b", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a6c9db2ea0330ce28842367c6dce91637a4d5404795e6c76d0e6decdaf7adefd", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5670700a50f939d72c5c9dbbf524c8eebd2713538d6120b3da268fe7be60c145", + "regex": "(?i)^https?\\:\\/\\/ghgfjfggjfgjgjffgjfgjfjffjfgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8134a9821c0ed57a424b2ea8f74f8c3c0646f4c569eb0a83c41e995fa2bac856", + "regex": "(?i)^https?\\:\\/\\/asimuabsolutlymaniay\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a17bedd70529d7da0996ba4ef1b165038bb92be1566767da0e88bd4e223c4", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a184315fcf597eba1afa2c19c28d3187c3bdd0d516c4f5c69f6a4db52874f6aa", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjufguuutrrtyurtuffgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9677a51be212742f6a1f490dbf6894872562dea38477947b52cb64178571d779", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1778965fee04eb840becdda6e79c02bf4a7e7a8b1a13e7431956e22c39074683", + "regex": "(?i)^https?\\:\\/\\/foodcontestsandnewsandtrendsb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e765371cd6dca26912f6add356b41f327494fcb10d5aa4faf92049d6d8cb937f", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eb4ea60e7793d0174d6d4931a657d914d77e95f1e3799a02d99be37119f18fb6", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjiytyfigghjkfkhgghkjghk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ca58bf17fc56683b8c6a09ed12886f9306c602ea9c073c5f38a68d0d4bff9f9b", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4c9478f23a624aaff664a06694a88ad6f1abcce0a619e6146811e1c38b4ae103", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "88330ce19b2b0a4663f5cd643727e3abe892025c34e41a171dcea37965b339f1", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dce1805416b05d62f3b8fc759cfcb9623799fb62d7cd771ebc7f7616ccb1173b", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8f4cd793ae037b395326fcb7df7e0457b8fe6bc10c32a8b49b1355217ec95f82", + "regex": "(?i)^https?\\:\\/\\/dfhfghjgjhfgjfgjjgfgjfgjf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "98a4c8e4cbc2f61f7a2e4975671d65fbd66909e5159001a73a02305b8b5353b7", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3585ac402fb537ae6a646ea6172f666fed730ddb3fba8a0567af4699371cfbf9", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "82b48e01758be971000aabc6fe288b483fc84d7a4f62a1676aad4184719229d4", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fe80ed3cf24ba45b8c68cc5105af5ec52c4e00aac1fc08e05998e7f9ee197d0b", + "regex": "(?i)^https?\\:\\/\\/fgjfgjkfghkjgfhjfgjfgjfgjfgj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "247b0b056fd94871fb9c75c37cf996c47109834ec11031644bf2b2d1f9b8bd26", + "regex": "(?i)^https?\\:\\/\\/fgjfgjkfghkjgfhjfgjfgjfgjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0c0e710dffe05b03cd2a3c63fc1d224192be0b0b0c12638caa3404d68568ec78", + "regex": "." + }, + { + "hash": "9d953b1ca7670b54991187329aa7fc43bf14138f52c30236239c87bc1d4d6c1c", + "regex": "(?i)^https?\\:\\/\\/fgjgfjfgkyhgkgkghghkghkghgkhg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "157009bfd49dbc1d76c7eb690de3adcdffd2763309cfb826fa6950fb1986fb5e", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a6fe20374caeb5f3be78bc3ad3d7931b3b8d2e68854dbb5bab15656738cfc3d6", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "50164551cefc289a7821466aed2ccfa2a664abb7a2869cb4d8f4617a85197800", + "regex": "(?i)^https?\\:\\/\\/fjgjfggjfjfgjgfjgfjfgjgf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ccc2bc6a434edccb155c09a3298b3bb7571fc89fe1550eb12d2dfe4bee475c8b", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfghjdfgjfgjfgjdfgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0a37ac8bf6c6d49bbb430bf2534385c7989ff1d9c22aa0e3b139898e5a9553c6", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "99268a1f6de8eb010bae9b1438abb615dbec3656f919b9100ca0bb4366e77272", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5f25b9cd4a3c50600a3515bb920aad27ca48d591ed9caad23b8866b21086856d", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8f52070733d9dcc90745bab2f40f0c9c09bce58f065f334497bee0a89cf86fcc", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6bf587a120500e82161af6eb545a4ecd0d608edb3baebd145c6ffd97be627d21", + "regex": "(?i)^https?\\:\\/\\/gdfgarehrfdebgd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7268e57f56ca3428c604d07f5cf871be236bf6cce0ef63cf41643acc4b7d7dc0", + "regex": "." + }, + { + "hash": "5504df9d9ceca44c6af4d8475ea3e1bfaf43336e17bbdb82cc21cd53c72bf8e0", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "35e3baacb985322dfe4dab193de15d0d9a98ef1fdae94024d410c85784121508", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c31f9cf6e9ad429475075f005e8fe2f2f97ec4460bdb720317a3abfe79040857", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1642e87582c47cfbc8088e67eaafcf37aa03c385f10bc9e5b7a39d86b4a2bfaa", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfghjdfgjfgjfgjdfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e060a91291607fd848e9fed0b2773e737895ef2285d3803d019d1e59756928a8", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ca70fb8040b21420f4821accd5f030b8b63171937aedec7e3617478dfc1d92b8", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhjfgjfgjkfgfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0e84c010ebf49e2132e7fd3fa7625ef56dab48447345f9c7cddca62082e09d35", + "regex": "(?i)^https?\\:\\/\\/dfghfujjfgjfgjgjfgjgjfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3998b3570b31dbfaed452faf42bca764b33c1e3e393ec5c2bfdd74e5049c1555", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "06df25a2cc7d1291e39a23df668e2deb2b6cafba568f45bce45a21e47b88533e", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7a97f7b7b542d4a6d83603518e2c570a85085e79e17466ce8268e19de914062b", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "995f4e6d8f1cb50deb647ccc44e56d5ceaa4e772ceb2019c4162a8596b61d92a", + "regex": "(?i)^https?\\:\\/\\/1000inwmoviehot\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7b25c3ebd0302e28bcc3ad3ddd1566c24ababfa3e0618bd83cc3935ae40711a3", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7ba7139a865649b27d44b0f63bb908c9880ee9bf3141a60ebc211c261d0c805d", + "regex": "(?i)^https?\\:\\/\\/sexygirlthailan\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "21cea25554f54421068151c2c276881f8ab8a6cb00989adf50490cfdb83b0d38", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "50b248dd45fe123995de50ba8508f4aabdd0b16e242c00cb43f5683b0d4cea12", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "438880552eac13e0f3dc7f0edd883163e1dba0fe24b92fe3a7d8b6c52f4f7692", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "463b67b0ead1659c092b4cd2db5557287e2e828b47857231b0e3bdc4ebe72f6d", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfgjgfjfgjjfjjfjfgjfgj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "09d1ea7fc0d9ac3478ddd992e6c90d1869583a09e8d1820848fe970078cb6a4b", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5de86e84c8a7133c2313b70ca3cbb3258db72ea53f43a1628062e8ac1c7adb49", + "regex": "(?i)^https?\\:\\/\\/foodcontestsandnewsandtrendsb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ff38691ff4a986a8d6dbef9421d54a43ffd51fe95a745684bb1ad7ef7a94752a", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b5bd55603b6fc417e068aaedccd0f436b491478f632ed4f580522eeea10d7f79", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "10eacdb7a46edf11e81a02e7f42a7e93f6dfac5bef7a65b933ecb6fae47c8612", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjfgjjfggjffgjfgj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e7966d499214f6e24beff30a7836658512926b472a557db399d139c43e95a9fe", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b8fcbe38bab42209b4643822076380d9170987d4f99622df4b8f5f6dea474", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d8786a4bdf793414a6662f4a9f1688a703afca312eec81e89edc22eba988cd8a", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ce1a7e7c0c68ebe6ac2d2c4cfbabec5eddded2b3ca82d29659553725b14ab9a4", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfjgfjfjgffgjjgfjgf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "435e7226d685ae1f67d3cd2426790da5e37c308bf7e6a039bf2db035fa2aed51", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9399951f46010f78963dbb1cf47a06fa36a3a6ec3c9a34e112371b68c65a8c63", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9a01882d305345c1fddd9c8e9f04c40488a5249193b360a2974d57ba7e501cb0", + "regex": "." + }, + { + "hash": "56704c88038389f456aee576c60782a17dee69f67a627534e7195dcba9e8cb29", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d9a0d2ee00c8447f24d718d138d94d3e6927f2bbe9b73cd85fab606db5bccdf1", + "regex": "(?i)^https?\\:\\/\\/dfhfdjfghjftghjfgjfgjfgjfgjfgj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "aa2642835c010a2ba2225f233f9de93ec37eb26c834b1870378be80b331e49e7", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bec479142ca0d90b45f75c32990485865f08a891eae4e9a67c15cb8ae94ac8b0", + "regex": "(?i)^https?\\:\\/\\/fgjyryujtyiryiyirjyfjjkgfgjkhjfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b354949542b573026063f871ae75619d8a402b0a74496994048a245966b421c1", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e6cbac540443ff1bcc16bffc6e471897b76730ab52769030857e95c5d48806b6", + "regex": "(?i)^https?\\:\\/\\/foodcontestsandnewsandtrendsb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "276bb3e031a52d9763af66d627beaf0a07c07bf16ad7287260dc8d8fac6aa456", + "regex": "(?i)^https?\\:\\/\\/dfghfgjgjffggjffgjjfggjfgfjjfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1d5ee0489c2e7caea98c246bd5db5f9b0abc4d29ce8d2cfca297caec4ac8dc35", + "regex": "(?i)^https?\\:\\/\\/gdhfghjfgjfgjfgjfjggjfgjfgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9647cb5808cf68a1f414e58b98ea921c051f9a8d106761eac9e9ed04bd28c8d8", + "regex": "(?i)^https?\\:\\/\\/leekerwzokvye\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e71aab25c98c547e53cee4c3d572a87e6b6a75d03f6f87f52e0d1163b252bf1e", + "regex": "(?i)^https?\\:\\/\\/foodcontestsandnewsandtrendsb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fedfc13f266e0fe635b66f04233bcbac53edf0a005b6b6bed541422101b25e5e", + "regex": "(?i)^https?\\:\\/\\/dfhfghfgjfgjfgjgjfgjgjfgjf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a66e6c2ed289a6aed620c35d11117a772e1bdc280960b8f31d61c89ef01b0d7b", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfghjfgjfjfgjffgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ad85e22228704ee441b5ab1565b39164b482573beaf8c49a16276737f84e5667", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ab67549e220d8bcaae6a43279f929075a24b673e17b7db0df86c5a5e3701535b", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c6d4d87c2f2077dcf0e0abc33f25bd166cdb946b2a4335976950e665394338a6", + "regex": "(?i)^https?\\:\\/\\/sdfsdfgrg5reyethygh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "721fa180742f45a18f463e3d3c779282f75a93343abf0f870390bf26a0ce2c00", + "regex": "(?i)^https?\\:\\/\\/1000inwmoviehot\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4415d62f2e8b330dee93f373eeb106bea49df9cb2c798be66b123378b9823e6f", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f15d68165bc6e00888b0239232d71a6c1a7888597d7df8bdf3e6ab3feb849ef3", + "regex": "(?i)^https?\\:\\/\\/ghjgfjkfjfghjfjfgjfjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2c891b806fc3188daa2fe4ad28cafac61752f9a1420196a42303585bff3fada6", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0901d55d76f23e6410b7f37acada65f231792a2f166b92a38fd7595179cfc7d2", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8ef9b9b566edea0de2dd6636a1e21b4f53c73b7372c0d2b554ab67d3e3b440c9", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjghkjhgkghkgkgkhkhg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b7d4e248332d7cae1ed0693c71f57292b5941caa6398ed88ed970dce027db8f5", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4f64878bb8bee8047eeff8fb2c91ee8e4c59c12cce0995a5cdbae4b8f3bcd363", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sj(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "59d82eeec5cdbd417feac29232ef049e06f0267035dac74e22610cb3a0bd7bfb", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c6f1e5a0c7113dae70405538ef07c11ccbe239d4c815ef469348ccfce870bae2", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "905f8e5e3300e0e9e3f100eee8e2b08d48864f59a5c8c4cf797d240b78f75700", + "regex": "(?i)^https?\\:\\/\\/pub\\-1e6bfbb4788e426098d335547c105daf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2626036780b091347f5488ebc80cdd5337e7de89cf3b0b209feb5cbecccfa902", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "70c46a0ecb11e209c64203d4a564f7ce269edd01713fd5e63a5b117afec07955", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9fa87eda322427dc41c4249d20165757cf1785a5832621592a0d822a893ccfa4", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "68ece8a82c51df6fc4156acf32a661a3966e0c51696b253ca7c4134f40a90606", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "52c20f1425832fefd482c85baef7ebbaa3a524bb60439186e6be948a21b33e66", + "regex": "(?i)^https?\\:\\/\\/sdfghdfujdgujfggjfgjfjfgjfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0d7bc2f2b200c9386c428736fcba320190029f875760393b354ae8f2457d9635", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjgjfgjfjgjfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "81f50d4e440ed2c8264302bb94116a1ff8bb447864152608bcf6dbfaccadebff", + "regex": "(?i)^https?\\:\\/\\/anime\\-kenshi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "31c3900bc0e79e157d7006e64ecb31157beec9b91d27c49d20067e05c290c82c", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7257141a5bbaae24c26ffec4ba25f63c8d558ea01e343f924c671a461d71ac76", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjfgjfgfgjfgjgjfjfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "dc75a497a8c59535f40edc26eef48113f1ae1eb678f5a4a44774771d0e6bb5d6", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "82148a00f6d7242d0499a6882c972d9a957148287417ccf645a55d6022bec9d7", + "regex": "(?i)^https?\\:\\/\\/gdhgfhjfgjfgjgjfjgjfgjffgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "26b2cb43c3f065853c6a0ead22c569632e971681b3f3cc4fc4101e15701d0898", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8241b8c49792cc5c06b9191393eb8e9a4d7204c6544c4f5dc264e075fbc06adb", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhjfgjfgjkfgfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1384d3559e2cccf57b43860916963d7f895d99c074f8b76ab4739772dfaf289d", + "regex": "(?i)^https?\\:\\/\\/rezabioskop\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "302f3696195897a28d7e2e748c49fa5b323ad35f4719e67902ceb286ee55e877", + "regex": "(?i)^https?\\:\\/\\/gdhgfhjfgjfgjgjfjgjfgjffgj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4f93b1f9ffbf9a65d0da1c696c3927f48f2d1b8f61c1b9acfecde62f8a300acc", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "111f9fb9f1fdbddc1be1c945d12d1406ec87e1d5d71d87a75b72d8f2050c37a1", + "regex": "(?i)^https?\\:\\/\\/anime\\-kenshi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4cb225cafbb77bf38d49f3e2e27ba85253ebf539b87a9a01b69542ce530ddc1c", + "regex": "(?i)^https?\\:\\/\\/fgjyryujtyiryiyirjyfjjkgfgjkhjfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b98d7bbafc588772c1520a042c2b8730a65f4a7e784cc8e50db0f3b6ec59ad7b", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7cb3bf23abf066b790c44300033fe00f9483928407978ab05daf94e77c75a0c2", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "610adc3c9726d40c68148a1ad8c54d0d00d5e5016cd64b126bf5b7b9fba3ade7", + "regex": "(?i)^https?\\:\\/\\/jogandorobloxpela1vez\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "de236f3b87db7adff517cbca58cf42f8eef4b2c179b0ef66ab74dbd90b5f6e74", + "regex": "(?i)^https?\\:\\/\\/dfdfhdffdfdfhfhhdffhd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b42b7f4585a45bbb6b343bf957f37a7fb38cf28777ee63b5ccc444f75af3594e", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f8239ca29e07d99ea768c4a14226a7b9781deccb26e971937b994950525cb4a4", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "212bbeb4079a5c60a73d57f7a1380c9214f589308ab4029a0cdb99595874364e", + "regex": "(?i)^https?\\:\\/\\/casinmaxsi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ce3adb682e2adf41bffcd7a29fde08e992534176037ac14731873c234adc9462", + "regex": "(?i)^https?\\:\\/\\/dfsghdfhjdfgjgffjjfgjgfjgfj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c17506650d88e5c117e0d520d032835b68ec5eade0daa16ecf7591d6309d37c2", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "653d25c0dfd4113163c79d02efa528a872012810cfc729b6b84d8a948907b38e", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjjfghgh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ccd5c236886cab437dceac8544173dfaeb2e5f9aaa70a4b732a7a2d417be1137", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3a9425de3ac08bd162715d3e53137287bec4b7696d1267c69c7ebaebd86f6034", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin[\\/\\\\]+host(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aee4452fd9c0a3f1c5ed33a9c5a0b0911e53a5317dcc2ffe38e25ac6ed2e082b", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7d2b756811026fa5c050494cbf23caa50c5a7d1d6f61393b887f925a3921b7cf", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "00e43195605058bb3b51b02363c24cb3eec5ea6df96f7f9d6283fcfa26cfe51e", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfghfgjfgjfgjfgjfjfgjgf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9d87c62f4310036506b8a5ddc7717f5b50982866145bd884cf8c8068f091f732", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1b74cb67a05e32b395e22320bc50b2cad7598d0b4749edcd93044964221662cd", + "regex": "(?i)^https?\\:\\/\\/gopalphop\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "97775b6393b1c83e241d4a65191055bdb2bc4ef0204d468d1ce5c39e2f1bedb4", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ba2a6d7a34d3f2bc2a718989a2529bfc0659db383fa833ecbf6bc17a15f2ad60", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "32c49869ff7dafdb4470188794b2d488c16a0e1ecb6b574d9cccbce3366045ae", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "acb745a10adc81688659553165a7b6a71f2c86ef8b72db84517523cd6b89d0e1", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{13}\\.flashpicks\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "66ee912684de7ccc373a3c912b92679600b3aa40b6b26fd454a9ce563b71d976", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2f1419a18e05ddcd58682cf3c78eee83b0447e7c604ab4c761c885dc499ccde0", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6f6e19a9116af90f0c57e2132612ef87e0a2aa62bf21e3359b4a536f8d3e43ab", + "regex": "(?i)^https?\\:\\/\\/cashapp750dollerr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1521bef3a9eda6c2d26a694d9fd802e48d18221072aa852aba17ccd5d50426a3", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b33bc0529a70d5d9ea65e3dbd8c0d5c8b42f00b0694a46992b2a2c52f30ed4c4", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f945f4debaa0b1eebf24a4e657fc278cec9298d551b27a83631081e851c03474", + "regex": "(?i)^https?\\:\\/\\/fghtufgrturuuufgfgjh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e12fb1d83406b919a5acd393a102ea39a0c3a15ba1b5e0a3c22b70291c739d15", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "827b941b0bc4161b2f3a18b9c9fcea0b1e6db5f9640a33019cad30267f38b094", + "regex": "(?i)^https?\\:\\/\\/sexygirlthailan\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b3ae8956ca7a27b13dbc4af5fbec20e1f1a278aa678cfcdd869d35e6bbbbf175", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "64d17233ee2bc80135e9bc3a50ee84e9ca597c8394212bc5df561e5cdd8c35c1", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "edef67fcaf230c61e8d49aa2226bf24dec9aae24a740e08d0be8a122a92af2fb", + "regex": "(?i)^https?\\:\\/\\/fghtufgrturuuufgfgjh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "be5ccb01e20cd36a1b5f2187f7f1ec8315ceca28dab7ac62ff7b5cb92b0c8e4f", + "regex": "(?i)^https?\\:\\/\\/sexygirlthailan\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d388b8cf510c57df610503f6ed2dc72c10d9ec4a2c35a96199cd363a5a165", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "014bd87fb74110f884fc88f4e122f9aaefe719c93fbe0c001c3eb55709028eee", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhftgjfgjfjfjfgjfjfgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "467359a658974316183328c4170680619c177c9e557f3c1c306d26ac5f3876dd", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfghjfgjfjfgjffgj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7d47da4f26919d1f6b9e331e7896afe113b1d582e56696f7b0bc38a80dde9b69", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "02fea8da12b565a8cb717149f4b953f370dac7104c5bcd8d31a77ac4fd6015ae", + "regex": "(?i)^https?\\:\\/\\/fghtufgrturuuufgfgjh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b8350f05c98ed83b36ce84ffb4d20281d270e44bd3c20be2f77159e4dab44fbf", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7a248e99388359616d5a7685aa2f3e682987578f771f7b63e89603eaea99ae10", + "regex": "(?i)^https?\\:\\/\\/gdfgarehrfdebgd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8d97ca86e3eb300a05ff1986aafdb7b37e949f9d4a83b21cd7a6ed9d8207b130", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a61fac31b06f4a288a8434c03c7ff3cc6b92dffa3b8d5cff38b6daa233f09a52", + "regex": "." + }, + { + "hash": "ba214aec37b767ba9d62e9e4737f8937d2eefe020150d1b06970923c32ddbb5f", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "83cea20bc75a5bed004aa9e0ec67cb04d9b60ac00e4d29bf7fdd1b9655a05834", + "regex": "(?i)^https?\\:\\/\\/fgjfgjkfghkjgfhjfgjfgjfgjfgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "eeb43b1fdae698ec99870b94e1d746c552afc9bd891b2f92d682f3c1c3af542f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\%3DY29tbWVuozOTcwOTUwNTM2N(?:\\?|$)" + }, + { + "hash": "b0e76a11786213348409a73470fc922b4109c21e33af5a70ae3143897ae1b99f", + "regex": "(?i)^https?\\:\\/\\/dfhfghjgjhfgjfgjjgfgjfgjf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cbadb04f9301a935f396cae8a49fe665b9ebe5d8f0a544048b584a420e26475a", + "regex": "(?i)^https?\\:\\/\\/dfhfghjgjhfgjfgjjgfgjfgjf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7b6c3961b7d96735121ba791b531f6589f54660851ec9788537b152bc2856943", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cc8877b0e7894b342bf254ff3b53eb17e34ff68b53dcfc371f9dca240cebc1cc", + "regex": "(?i)^https?\\:\\/\\/fgjyryujtyiryiyirjyfjjkgfgjkhjfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "313a632c75c775ef607f6939802d010668727a37fbdb33357dfccf9295effd6d", + "regex": "(?i)^https?\\:\\/\\/gdhgfhjfgjfgjgjfjgjfgjffgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c2c81ac125fdb043d08cafedd78958daef0cd0d855939a5d99fe2a95d294ad22", + "regex": "(?i)^https?\\:\\/\\/fdhfgjfgjgjfgjfjgjfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cf2747c3514c6d525195c4e62b38d36fc0c14787d976955ab38946a92b64ebbf", + "regex": "(?i)^https?\\:\\/\\/limpohann\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8bdd319ea6416cb024752e892fe248616b9d51ff3bc226b050f89d9e1738a2fa", + "regex": "(?i)^https?\\:\\/\\/dfghfjfgjfgjgfjgjfjgfjgffgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b3f1b58c30060f6b091c7a52b9805d44004f331430aba41587a0890315b97c15", + "regex": "(?i)^https?\\:\\/\\/zadazdd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "855b0cbcc7d0d66adf2bb59638e66901fe4770af1d333e1d40b174a8ac1f9cd8", + "regex": "." + }, + { + "hash": "b8bfe323b1c92a2f21299893bb848df7bb3f74202230d60eab30154a251450ef", + "regex": "(?i)^https?\\:\\/\\/rapidskate152vtdwxjvd3hvrapidskate152\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ee64bc7fae284cc344d34c0f2a0476b905b2a7485081b6214dbedcfdf847c84c", + "regex": "(?i)^https?\\:\\/\\/gopalphop\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fe80c9ad9d2c5a45584036ba5ea48dc929de636a17cb2fc4b4afcf4cb9a151b8", + "regex": "(?i)^https?\\:\\/\\/inst23\\-foryou\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1dac548a03c434dc6e6a0469948ff2accd5b75b2eb11cea28e1987ab80a46f2c", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjgjfjfgfgjgffggfgfjgfgjj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b5ab54e880969fdd2b0f047da76bb6e377198e004b0d62ed676b0831e36e2c93", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a8c37088b8f8ef926ce4e21cf6c2098e95365844ba4bc01c525e327f11fdaa62", + "regex": "(?i)^https?\\:\\/\\/ghgfjfggjfgjgjffgjfgjfjffjfgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b242c0454dc94d95200eb6cd87dfc346ad8d94778b963a95bbb1953fc231d4dd", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjfgjjfggjffgjfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "77ba5d6f2e2e1e5d568fc9287d97415ec577332448f566b6b2e2bf9dfcd2bdc5", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ed4291e8c5c81948cdaee676970ea9a3355debf0c67a862bb97be4fd05a8157d", + "regex": "(?i)^https?\\:\\/\\/dfhfghjgjhfgjfgjjgfgjfgjf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "39b861cbd32ab1545961758a612bef3fe5f25ff761a73e83d00b12c3208182fe", + "regex": "(?i)^https?\\:\\/\\/fgjyryujtyiryiyirjyfjjkgfgjkhjfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "909e314fd8fb48e083e1b9d669e4de8980acdae9d8abf38d96af316414f5bf76", + "regex": "(?i)^https?\\:\\/\\/infosinfosinfs\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "04f92324e558dda5519bf06e1b2754cd3e498a1b00245c45f0687dc38db3c516", + "regex": "(?i)^https?\\:\\/\\/fsdhgdfjhftgjkfghkjghkgkh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "856e29fa2924d15a9f79e2f6976f6863d4bffd5bd4df04fa7f25a0fa2e3240a2", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c3e33447731b0abf0b1f174204d5934af6d211cae8b4ffb1cc69dabeedf8fbcc", + "regex": "(?i)^https?\\:\\/\\/berkenofexueiyde\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fa0181c4c0dd278bed00c0485d24e84c27c334ad96366ab3427846fb02571769", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b5ede38196ebe7d810166f6db86709b3223c5d18371c5682de85e03924eebf3c", + "regex": "(?i)^https?\\:\\/\\/us4\\-s1gnapp\\-coinbase\\.153\\-92\\-214\\-75\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "43c25c7ab01d34503d70646fb975c72c937dafc3d95b90fbfcf01eb7eb8fa82d", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f2d81872303e328871f2d92571f7f17ea4602991d557ae4ae679ba627a593cc2", + "regex": "(?i)^https?\\:\\/\\/1000inwmoviehot\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4f5712ee370a9fd43845d667cdaf8392aef6cffd2d6c8da106c1c2bd93e29b32", + "regex": "(?i)^https?\\:\\/\\/foodcontestsandnewsandtrendsb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3a517cb362360db55fa30e1007344059b35203a476cea8d72d9f120200a51f93", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3bf6866dadf41ee38cf67adbb7c116edd9bf941839b288fae5c7d9b3597bef7f", + "regex": "(?i)^https?\\:\\/\\/gdfgarehrfdebgd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b55dfa551c80d9b00942ed007ed435636f6c0e718f1ce0c1a42355855672d572", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfjhfdgujfgjgfjfgjfgjgjf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4801bd753ca7b1b8104d0c43a17ae51c082208533659bd5a88aad27cb35bdac6", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfjfjgjfgfjgjfgfgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "68e7b95906dda1f537a97d1e0df3b2e2534fd90df7f9ee5857278fd8549ad3b6", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjfgjgjfgjfjgfgjgjf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d3d33b56a74365d4c4cc09290fc1fbeaa56c2d0b16e7010828e852fd0ce5abe8", + "regex": "." + }, + { + "hash": "8712fa07af3ab2acf141c51ca8a1c71decc9e1431bcb6243f0587eac53a7d55f", + "regex": "(?i)^https?\\:\\/\\/ghdfghhghjgjfjgfgjjgfjg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6541f80fd4870b1332ce3337c2d66439bfbc3a801019f3ecdc559a62b8850a9e", + "regex": "(?i)^https?\\:\\/\\/ghfghfgjgjfgjfgjfjfgfjg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a144e90e7e8b5c6d04142e24bc86ccafa71de16cc70d13f7f1cad6ebc6ae06d9", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "584d7795568c43d38012275f3ed22b87b97a73c8ff04916769b4703628b7454d", + "regex": "(?i)^https?\\:\\/\\/fhfgdjhfgjjfgjfgjjgffgjfgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a43c88734cd91e1aba749c56e4ecf38f4b0d11bdd84a2e364678d715205cb8a6", + "regex": "(?i)^https?\\:\\/\\/leekerwzokvye\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "05a0a0482fa6285a01c966cb160872bed380485743dae57e6b83b74dc5696a49", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "165f5b563fd75b68d70e7fbfb135cb9a4055ef79b4ff8591999a7268f6b0b719", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "75476f89fe9b4054269d74ffc1471580f57a0fba19391509ef210520645236b6", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfghfgjfgjfgjfgjfjfgjgf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eae72d5dfe1c8e8b57f1f397f0329bb7228dd26e0b8c61698d1bc260ea9d97cf", + "regex": "(?i)^https?\\:\\/\\/votingigranaccountsloginpageuntovoter\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cc5a7a22689e886ee82040aa94a73ec9aafd906ae16c8ddff7e4d08ab9ea6a25", + "regex": "(?i)^https?\\:\\/\\/gdhfghjfgjfgjfgjfjggjfgjfgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "993504b8a7e991197db2243a2975e6b05689ffa25011dec6fc70c5e885939e13", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfgjgjfgjjfgjfgjfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0d2b7d26b89f8eb05435b73d1baaa1ada9b40bee4b96db1e98ee546a1e7b7c5c", + "regex": "(?i)^https?\\:\\/\\/dfghdfdfhtudtuffgjgjffghj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "40c88c9095f47ec0f686ad0a327ab6953ed68de4969360e9104d894cb678d294", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfgjgjfgjjfgjfgjfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7a075070bbef41d8cdfa6febe6cf80d5e75cda17fc9638a57c1aa2bbff4c25b8", + "regex": "(?i)^https?\\:\\/\\/dfhfgjjfjkfjghkghkghhgkkghkgh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bbc2e6a115ce0e94875b0436faee52a484ad8bfef31e70265d16841eed8e11bd", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjghtfkjghkhgkhgkgkhg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6d93b4dfb04e558f7f230c436789724d84630b8f64eff35343e4d402be7c728d", + "regex": "." + }, + { + "hash": "2527efcc0c46495379e063f74148f7bc2023fb318ed62e4fa14ec8227d35d07d", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhdfghjhjfghjgjffgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a11d13e3e11711fd5053e5accfe9126149a5ea47b4f568fb3a2c63e17a91045f", + "regex": "(?i)^https?\\:\\/\\/hikfreefire\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e8cc6bb85647d8dc5b718b950c78dd5bc6dee849a2381a43c1b298ebb993495c", + "regex": "(?i)^https?\\:\\/\\/sfghdfhjdfgjfggfjgfgffgjfgjgfjf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4c999f3af328730f3a460c0cbd194a9178c622b3ab423bbb0a0dda582fdb5e83", + "regex": "(?i)^https?\\:\\/\\/1000inwmoviehot\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4b3dd237eb021474965c28129b30439878c704c107be32c4e7309ca285791e0b", + "regex": "(?i)^https?\\:\\/\\/dfghhdgghfgjfgjjfgjfgfjgfgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f3ed7810cb11e959bf392187198678b7087ff96ede269b96ca19b4e668d4a7ab", + "regex": "(?i)^https?\\:\\/\\/freeweard109\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "55d718e0ed475332097e173a0a776863b395587d5ab78dd1cfea50b1e075973c", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4222b07b941ebf3bd3ed5c449868f473942754fc4bb581b9f41b7921b6896950", + "regex": "(?i)^https?\\:\\/\\/gabyzinhaadazl\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "953daa78670c1845ffaa1a7612b79c4cde508fc3ed7ef74ef449c7a5f61ea093", + "regex": "(?i)^https?\\:\\/\\/sexygirlthailan\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9c63d283268c582e0f82642718322e811653c4582228be91ad19ae32781f722b", + "regex": "(?i)^https?\\:\\/\\/leekerwzokvye\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "df94d56a91fc8905a01c89164f0d05a8e7b8be0d8fd5a7241e7c33f9210fb906", + "regex": "(?i)^https?\\:\\/\\/sdfdscds1654dcszs1z\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b32d77d3c3e6638f8c2fe605c36cc81f820526136f4a681e4bce7455bf0253d6", + "regex": "(?i)^https?\\:\\/\\/hfdfuhdfhfdhfjfgjfgjfgjfgjfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2bc7784cf04bc4a732e09530739e124f358eed3ec1bb97a8d4dd94159b622cb2", + "regex": "(?i)^https?\\:\\/\\/support\\.coinbase\\.134\\-209\\-219\\-230\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cb40270fff5369c9001212b4c2f2b0e4d0938327dcd98ef7d63a4f252c8afcda", + "regex": "(?i)^https?\\:\\/\\/fdshgdjhfgfgfgjfgjgfjfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "702a4842b2e35a8ee41a146c5923cafe05161bbfce86d70cc7cb0aceb27c6476", + "regex": "(?i)^https?\\:\\/\\/dsfghdfhdfhdfjfgjfgjfgjfgjfgj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5506416d9153cc422e7daf7f01beac07b5f13c7ac976080770d32f5076dfbc5f", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhjfdgjfgjgfujfgjfgjgfgj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ac971f67c88c5cb2bcb19306724f505db1f3d7cf3ccb728473b603792624149e", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjfgjfgjjfggjffgjfgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "46fd0ca09b6e21e10e42957396466d3702a8125bd6c97e0de433028bd8f0e032", + "regex": "(?i)^https?\\:\\/\\/leekerwzokvye\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d7cd213c7a732ff0011a45d753f9f56389cc82178d6ac49b26d40c1660403972", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a0463b82fc5495719f3017cf20c7d897d45534c02a439f3191b26e8ff4435b48", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjfgjfgjfjggjffgjfgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f7a04e3216d9bc7c217cd767f8a9c6b70f656575b3b9efd1b429e3c4172cecf9", + "regex": "(?i)^https?\\:\\/\\/dfhtfgfgjfgjgjfgjfjggjfgfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4ce78933b5e179485e14c02db0fcd3e4cb6bac846136a548a90cf7b244021391", + "regex": "(?i)^https?\\:\\/\\/fhfdgjdfgjfjfjjfjgfgjfgh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e20f4cba56de14a8fec8ab0b4716474eab8fe43f70b32e74c1e0103f8492de3f", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b2dfd29dfb4144c4b2645d80104e959cd1082a2eb4f07e253608c79f6e9e0b0b", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjjfggjffjgjgjfgjffgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d92905cc12b9596266c92a4250e8a2f533450632109e2e66706b3ee8cc16a6a3", + "regex": "(?i)^https?\\:\\/\\/diggerqeytnc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "08311f8e6ac200d0bb3bde54ac75741d80431373ebe1faf4d09f1e49cdc91855", + "regex": "(?i)^https?\\:\\/\\/fgdfhdfhdfghdfghjfghjfhjdfghjgdfh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4e8e78321ace135acafb8b4747cfa80ee76db75fe952f8db2321ab7e613e2f6d", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ffce1dd79b1553b259f8a2a95d9f79e931477a7656c753e53253c628fd9d6d9d", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "df412677814b60e801ef885886f123a36ebd1eeb20f077862cd37a0cd39a7912", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c955bff80d00756ab7c8995f3bcc4c6a4ec53d221cb59e404a5ebbdbee9fee5d", + "regex": "." + }, + { + "hash": "94e5ef640cacba34fa6447e40d44c45331ef5a56781e665c89635f30d8fb6aa2", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "72638bd2cb434bbec57d14d807951972f11728b03b4daf7dc985fcbe4fbe60bc", + "regex": "(?i)^https?\\:\\/\\/sdfgdestgrestgreere\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2aa2fe1c3a2ea98aa5c2c5b870c9940810ca1523c1278e2aa849c631df117194", + "regex": "(?i)^https?\\:\\/\\/pollyggon\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f5bb3d3e5b89ad077e4a4a0065ecf3b3c31695920fe7c281bd63dc38920b7201", + "regex": "(?i)^https?\\:\\/\\/okeyokeybro2542\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fa8c540ba73f4192aa66e45267a7f7af5e3273c217cd3195d2c600b1c75b3eef", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "38da51a09297ebae59dbe0eb90b07cdaf1fa78f972a3024b5e6442c55eae7830", + "regex": "(?i)^https?\\:\\/\\/fdsfgrthgfbhrfgtetgre\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3bf64bc3e84b3bbfb986badce808659aeca78bae26a52fe354abb983424737ef", + "regex": "(?i)^https?\\:\\/\\/cookingnationfoodnetworkindia\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b9cd82ae0a5b85f3e70b26f476132869e7288482442de775f49b2b6a8bbbfadc", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b0d567038397241bb770f8d1b67307b5493ccdcfa8d7dbefb30ddef3986187df", + "regex": "(?i)^https?\\:\\/\\/videocliphothithhhhhhhhhhhh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a33f8a006a95d16543f7fc6b70f7af613429aac137a199489e250d11860afa34", + "regex": "(?i)^https?\\:\\/\\/okeyokeybro2542\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5858790c7645a52fb8b285fdf92fcbdfad5d4f3cc4860bde0c3fbe1ad4447149", + "regex": "(?i)^https?\\:\\/\\/nnooneyit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "80a7b48c7cde7fe7e43d6b1d5d42e3e30987edd42935b9021a39ae0ea13929cc", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-hotel\\-sulake\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3e06da80a155e93540fa12db17bb399241c64af72675d04ce2aa2b574263d765", + "regex": "(?i)^https?\\:\\/\\/65gffgfg4g4hh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bef27c1b556a14b987d89ad0b860e7608a6b70ce5b86cf86188809a327ccbd88", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d6e7b0985ad709fae3db1c2d87504b7d1e113de47a8120ca43c3f3137971e814", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "52dc0e21a71c20e888a86cecaa1df71098aaa09a8d805ddedc0ca7011786f915", + "regex": "." + }, + { + "hash": "3c9a0ca5cac38e7e88027e21a1a1bd57d3a9094a7cac30f07d823918e2de0e7e", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "96a60a2c1ae45cc04ca037297024a9aae4a4e682013d05fe0cb7771a7f1dc35e", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a96e7dd2133d57553b3d82e66321b9a97125a65f1eb3f1eaf68aa25ce1bf47e6", + "regex": "." + }, + { + "hash": "b85baa5de5d03364121a3ade758f4c6a545e8bd2db0fc3f2304e66c540147c82", + "regex": "(?i)^https?\\:\\/\\/tuokmnutonzabtreoia\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b2f9e4b587ac94b4d54f8263a8df23b771dd3395020587c281449606dda42471", + "regex": "." + }, + { + "hash": "85c2655e22c919e89751923e1cad6c0b3a3c4436de18b978428998a2cafd7bcd", + "regex": "(?i)^https?\\:\\/\\/tobeljik\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6ee8973eeae4415af7d720f47054fa7d76c4e6cf2593d962a017f61f6ef0c620", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p[\\/\\\\]+244985621(?:\\?|$)" + }, + { + "hash": "fbb1e59cd4854806b9c2498d63aef13f42b3576e66c464d0adfdab92a73188cc", + "regex": "(?i)^https?\\:\\/\\/freefirerewardsofficallink\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3ad1999bde5ed7e1f2f573813edf7386140016ea5ab85af9130cfd4ac4f76f2f", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "06468736be1ef9a843056df3290d472bf72844115b8b9bc8024970119db916b9", + "regex": "." + }, + { + "hash": "4193078c674f08dfb95cf6ff355cb63ca0551dc60504b797de372f9f488c37b3", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8750a825d77d04efe019ab7eac4337a9598fa2be61969b89eb39a314c52e9dc2", + "regex": "(?i)^https?\\:\\/\\/6tfgffggfgfg4gh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "673dd3c433e8f0e0e84f7e002ca99eabeddd4d658f13269f506dcb12c97abb27", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a63bb43add38ac016f6d6d1e03919d57425a5fabb0fc7e16578536b49cd8063f", + "regex": "(?i)^https?\\:\\/\\/cookingnationfoodnetworkindia\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "275f05cdf84326185111acbd116e64501fef9e5609bbc5305b302c9ea6b617ef", + "regex": "(?i)^https?\\:\\/\\/freefirerewardsofficallink\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "da3cd5571b8ff0abe2efb6a52e7b7b8da834aaa9f4dc88dab36f12bb0b2d3a16", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cd13650691ea810e286dc23f2e7a2153ed6ec57fc2f286e888a0ff3355135cba", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c8919b249ecaa39fb14f185f1e4cddca78023b6bc122028ec911049d9790179b", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d0e008f74935e177791b3c6451483371f945fad0e05a0f20c29b4622c2a4145b", + "regex": "(?i)^https?\\:\\/\\/6tfgffggfgfg4gh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ecede449eae6512ca1b314ceed39cbdcc3a004e74c8baa9b05798e1d98e995a6", + "regex": "." + }, + { + "hash": "a2d93daa42e35eda67910537b476fbe30ecabe655ce0bb2dfce2602090d993c9", + "regex": "(?i)^https?\\:\\/\\/garenaffredeemrewardofgicialff\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9ee88d39c9437b31a97179001453db7dd5239a34855c72228fbf0216b673472c", + "regex": "(?i)^https?\\:\\/\\/freefirerewardsofficallink\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "03283a7b7d59fac850ffdfc6ed2fc8bb7d9d60f512b221e3a88b820fd71d54f6", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f8d0cd0d80e456ed2d229d096ffe02f0c13b596a3e8fb193f5b1d4b18e41799a", + "regex": "(?i)^https?\\:\\/\\/yoepchkjyl\\.com\\%E2\\%88\\%95tncdndx\\%E2\\%88\\%95dhstjupi\\%E2\\%88\\%95ymksftuffq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\%20url\\?m\\=000\\&t\\=000\\&ip\\=37\\.156\\.216\\.137\\&language\\=lt\\-LT\\&d\\=000$" + }, + { + "hash": "f9718f6ce9f877e303399684c0028c3ce37d449034cce9d9c025781552bd1f7c", + "regex": "(?i)^https?\\:\\/\\/sdfgdestgrestgreere\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bf8b30c3c3eb8e423da32ebf19e42dd4b0d32a7064f0a7c2acf23e9a9fa824e8", + "regex": "(?i)^https?\\:\\/\\/atljgto\\.com\\%E2\\%88\\%95oqgikvhjl\\%E2\\%88\\%95bioxd\\%E2\\%88\\%95vfvcenhff\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ruvqbpzyzr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6b425b10e7745ce5ffccd791f9e957e73e5c9ca7e8532b118ef2f19af9059399", + "regex": "(?i)^https?\\:\\/\\/videocliphothithhhhhhhhhhhh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a49fc72ef4ceb02a84d29482c02a0c7ea6f499734300075f18254e513fc8bca6", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c742d60e1221c7a0c4600962720f0f502d2a690eff966bdff2b7f8a34744a055", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d6a14e9d9386309a985921354234830676a1a5464c8008438edeb4d9539ad388", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "28f89859bd04ae5c95be02b62ae74dcc7d03107b7d252b0a2a75ee856971c170", + "regex": "." + }, + { + "hash": "a385665e505f26215100a97886c002daa94a03e5b5456dca50a7fb1a85b0b2fc", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0a7e00bca3328bef5192e1cac24a0177107f174aeb62bfe6da4990e38d609969", + "regex": "(?i)^https?\\:\\/\\/bizzesda\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "99ad10aa9fdbfa88145f6e8b069fd5ec53766c054991866d37d29f3cbf20d97a", + "regex": "." + }, + { + "hash": "eeb43b1fdae698ec99870b94e1d746c552afc9bd891b2f92d682f3c1c3af542f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\%3DY29tbWVuozOTcwOTUwNTM2N\\.html(?:\\?|$)" + }, + { + "hash": "d6f1820e31ca68235232d01848c1f1422caac82bb9c6645d1ab496e58d03ad09", + "regex": "(?i)^https?\\:\\/\\/garenaffredeemrewardofgicialff\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4b17d5b5138b3948b5705b2f732c76d1a07c1fe3df40589d6ab5f47fe734cc8d", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3a9425de3ac08bd162715d3e53137287bec4b7696d1267c69c7ebaebd86f6034", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mb(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7f4392da15dc7fe8de75dc728c5d3497e9837d01c018a94aaded614f6393d608", + "regex": "." + }, + { + "hash": "7247f3b7239a4890910bf591d5437acb9b8581d7c5e44f889174833d7451f573", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontest01\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6ef8bc72d1479e2d37a0014d75eedfc5011ca4da16dace5627a2bb043de4945b", + "regex": "(?i)^https?\\:\\/\\/belgikbe\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4741e536f98467df23a3a8b9512c1d5349e99c124d45d1f0ba9f8763c47e0402", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a55ca4f52018b909d9224bc92d628376fb3c5db9e22601a27ff5fc1c9b295617", + "regex": "(?i)^https?\\:\\/\\/6tfgffggfgfg4gh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4d46a90752252865d6eba82cc35df745338864b674e4e59ea33be690b1871937", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh5h4h\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e76d2e9cb6efcc948d36ba8214a4d13f54ccec8e1dd4c96653bef58836c743b3", + "regex": "(?i)^https?\\:\\/\\/cashmonygift\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a757b25fef29d8b8899d808a14c143d8ffca8c2e8242ac3ee054b09263aa1e69", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6b7c18833cd5d5fcbfc229807ded1f3b6473f541f87cf417f7995bcb65aa9f2f", + "regex": "(?i)^https?\\:\\/\\/mail\\.supports\\.coinbase\\.134\\-209\\-219\\-230\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "32b12b9d6b16efaa5ed7ae4819eb12479b8fd9033bc989791c1b7b566b86300e", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cf6646849ab13d07a442aeba71c4a4bbcf0e27ee768fa0cf431a5d7546cfc76e", + "regex": "." + }, + { + "hash": "55f1d855af5f765a503b191776f33b503e1f986b84fa73ffa78539c0de268aee", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "71fd9e64c7396fb5b03a0123a4cf117e78747db1906c377a31b81b1ac2446347", + "regex": "(?i)^https?\\:\\/\\/cashmonygift\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f08f2536e2c757b5565e85f306b6f70f37363c0a55bd20bef4871720d3e2b4c0", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a922178f66da95134f21ff79c342105a23618d2e740149cb4e92c79ef3a60", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a37dd7383c9ac60edf1c272987f45ff7aff51bf59f55ce0f1e271f65374315d5", + "regex": "(?i)^https?\\:\\/\\/tuokmnutonzabtreoia\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "af2f0ceac20e38080bd9db7a90f1059432e4ddbb4e5114550426f0c99f85ea44", + "regex": "(?i)^https?\\:\\/\\/jailbreakhackrobloxpt\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63ecf91e9d5ceec736d8e7f162b1a9e1861c5974c414ecc8f7d57d4cd6667a3b", + "regex": "(?i)^https?\\:\\/\\/geradordecpsddtank\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "23dfed50ef00807acd2eaccf03d163ecada26ee2949980739ef5c0a102769fb8", + "regex": "(?i)^https?\\:\\/\\/tobeljik\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3871159a807aa4e376359e4329c8d221af02fa0733e9a0d482b078b97dc663d9", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1c0c78b977cb7f432af1823019a9caebd048a323f39f7b3d1e35df7f62e257dd", + "regex": "(?i)^https?\\:\\/\\/okeyokeybro2542\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a9d3a8dd2f1ffc0a2d7fd70dcfdb4f2a4d7b31b5932b123209395a45ce9ab089", + "regex": "(?i)^https?\\:\\/\\/tobeljik\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d71b2154b8401c4923b00af871a42a90c2abe075689a38775e9cd5cf3841f4d3", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fab90453bd104aeeba2342de71ff419f06d6023d589dcde3ebee1edde3a94f5a", + "regex": "(?i)^https?\\:\\/\\/garenaffredeemrewardofgicialff\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "01e3f47ab1ca2a66a7ee36c139253278b1b4be6819a2fc26ed34a9a7daf3b8c7", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontest01\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f0065f301fa587f1ef2fea60a6b0c9ccc283a0756d1d517fa10d650813991897", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "87303f6ce5357adb28e10bf4d7a0dca755881b6fd26a40bc5898b6d70a2519e0", + "regex": "(?i)^https?\\:\\/\\/zajilnnd0\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c060648ec74b400d55a2e780401122b6308a4d663f5e47cbf9bfff3ac9f3700b", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "098d966c255c02cf165818b38bdd173f24772de4153f32b0b0315eb3051dfb3f", + "regex": "." + }, + { + "hash": "7f42c7dd383efd4c2dd3a817063e1b107fb6a1c0c2b625ef97bc03cf1a68a7ac", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ba1a0a9c32a995671cd5be41e2607a9bd1a74f3d2e8ce8f33d9c4d70c93897f2", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7b500c92f564c7831fde44268f9ddd3bea7cf2292e42c4661f9f7e923f4f802c", + "regex": "(?i)^https?\\:\\/\\/65gffgfg4g4hh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d0e8ab75594978bd5ae51accd27d0fbfb28e80c330a61e1abc4afd218da69243", + "regex": "(?i)^https?\\:\\/\\/nlsamflesh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9b59646d1a2274e5f6e7a70625dd5c164a0e6c3879ba32b13c37313892a758c3", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-hotel\\-sulake\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d0d68e300c6678cec1ce2f926d174047dffa5bb2fc80160add63381187872a87", + "regex": "(?i)^https?\\:\\/\\/64fgfgffgh4hh4\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "da72e7641c2b8c851302172098010acefb7131170b42c7aadc0451d786704d11", + "regex": "(?i)^https?\\:\\/\\/fdsfgrthgfbhrfgtetgre\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "35798f7aaa204f14e6b00096fea016ece5a77cfcf2f431a8002c3c42f7d954ac", + "regex": "(?i)^https?\\:\\/\\/cookingnationfoodnetworkindia\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "76099dd043e72396c3bd1790af9a9f465ba8f90f9f37573e83899cbc8fd4cc6a", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9e83929a0c04fe7ccf6f0da33ee399b9d508b1d882db5a24cc543939314825bd", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "59655d97670f56f2a9f6bf860bb54c982312247be07981c288ea23377e09f523", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1e7bfc01255fee5914c6ba57ef143b74113c5bda91fefb6b8087888df54458ee", + "regex": "." + }, + { + "hash": "4952f0f96b40aa93a5afe87d19a79d5b6e1b4ff84f84811da54b324698c69ec2", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e5ec8cfeffcf2d6126315e1cf22e595e3e6dc636b89fcfa423921b31045b4fb1", + "regex": "." + }, + { + "hash": "7c40c87e09f63d4aee3fb546e44fbfe8d309442f82696e51dbd5320aa55bb939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+JHASDWEfderwerwerASDWas(?:\\?|$)" + }, + { + "hash": "4f002d15fee702f91a563b5d2a11cb9291eb95488daf9da7fbf0ef04e634bb2a", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1d9ae4ec9aebf16bbc571039a7e65f4ad10d3feac10a70fafab89e924795f80f", + "regex": "." + }, + { + "hash": "505bbec70c56ff274aa4eae6404a327c94f7ce4d5e56453381235ab651546613", + "regex": "." + }, + { + "hash": "22edf637b2f88aa07d1c6b1bcbedb7ba811e83ddbbe3870fb87b789139d8984f", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1b9a59e3180bde4e6cb910a8c7dd39bd15accb02e9ce61f5760ea56e2ad2c756", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c295a167c32197d0e203cb6201a49da8a94a475dc7ec06e8020d94e0fb5bf6de", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "76d3c55ccb53f00f3dcd8636e446ad5c70054f721e24a65d8ccc633adb9bee1b", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0337cbe00fcf583e517e305b6ca7384d9271451f060cb4988539a0d5b86e899c", + "regex": "(?i)^https?\\:\\/\\/videocliphothithhhhhhhhhhhh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fa7df94e5ff4d03a1d92ffc24fbb9b815bc8930b2e433570375be8da118c9bd1", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "14cd1d28a5cbc933e3996032bd6fc3e6cd193603912845e5bef98c49e4bc7fc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+voice\\-08463e(?:\\?|$)" + }, + { + "hash": "3315be5ce23df3b5f15d76ca67f291c9552199a2f8dcd94ea8f0943b4f0a8e8a", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "87235d1f772a66a20f24a3b7a11c82f838850895b41fafc58fc6a6e6076daf88", + "regex": "(?i)^https?\\:\\/\\/crypotologginn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f7938214a94391a9caceeee5fdbe259dffc1a4935051f2d6a93f5684c1f0b8b1", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "46d0f15a8848ee49ae62430174ba044fd59fa3c9215d096f7dca741440fa861f", + "regex": "." + }, + { + "hash": "0887ea2fb38b5293f2a78a56302be0b21837ee830e9fcdb618e76991c9f80d40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Auth\\-Bankid(?:\\?|$)" + }, + { + "hash": "4995f1cfb86e484e8d37d760005fd6fd3fee0fad909868f7eb3fe2bb1ad9110b", + "regex": "(?i)^https?\\:\\/\\/comunicationmailserverdomailserviceintelactual1\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a61f72829609f1c117e153da96a518d2c1a5384a6b5b3b7ec786074327cdb66e", + "regex": "." + }, + { + "hash": "c03896b7f36c994df114c58fa1e446a59aba78747d23879fd8e7dec1f0227de6", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6d3f37c717acfe87a8a62a71261ee495cb09d8c08c8cb6357aa90f639d2aecec", + "regex": "(?i)^https?\\:\\/\\/6ghfgfgfg4g4g\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "23efd51932c3be90421150defe4a0a7aa65e2e994e41048428a2ab6783e0cdfe", + "regex": "(?i)^https?\\:\\/\\/www\\.us4\\-s1gnapp\\-coinbase\\.153\\-92\\-214\\-75\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "25fe6a1d1921958319b9330b09a2917adafd4ca539f87a42577d14f42a1e5891", + "regex": "." + }, + { + "hash": "e91454a6d71dd9b1ee03d0939288397df3a40e776596b9de57c692eb629449df", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0582dd58665064835dd3c991e721a04cff88525781e0bb2e6ed8acc2e5c76ed5", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bd9ba5ae08421f6a2b2f5672118301a0ecd8b0e29cfbdfb559265b63881d4e65", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f8f837771f2011083748afefd641ec7d7084039f494c74e6354c9ab539bbe7e8", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "68c19c593d3060994b0ec9be940f6955edee44c6882ba5265d6493ed9dc5d6d5", + "regex": "(?i)^https?\\:\\/\\/us3\\-s1gnapp\\-coinbase\\.153\\-92\\-214\\-75\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bb9f493c39d2424a74eb7bb46309cbe0acce69200c56b7864da8069b08070e30", + "regex": "(?i)^https?\\:\\/\\/freefirerewardsofficallink\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b44947d42f7368e43d5cc6d791ccc9edae94891ec8fceecf3547e746e748220d", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "482aba110679f5308ea836a124c7fb1024830112ff110909d96d2fe78349e10c", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh5h4h\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b260c3705b469cdd18cd7fd696e85c13026a47ed77816bd7b2f2310aff27822e", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c51c0e988525893aeeb3d762bfb9c0cda311a66d7c0b827d26966ca7706085a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+up(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "779b6b46a653afec326d01c6b59ca9ab51bad3c11d946dcccce46ed9aa1bcc03", + "regex": "(?i)^https?\\:\\/\\/garenaffredeemrewardofgicialff\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ea9b43c6478de30f55f9fd56e6fd0809a0749bf8f1850c7d979a9aac97bcc087", + "regex": "." + }, + { + "hash": "14e8f64f794576ca32fef721df9752a27d1f082e14b964b4b0c4f404745ae4c9", + "regex": "." + }, + { + "hash": "b5be497568f47fe5e68c9d009bfdcc45c4d498f1da2dc1fc7c20ac0809c62c56", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "577910c4fbdf45650eff87e467e30d51e419e3b3b5233036291176a90336575b", + "regex": "(?i)^https?\\:\\/\\/videocliphothithhhhhhhhhhhh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b294fa6915b8e852b2d29ebc3135fdaa8338dc47acb3b560f76faf025d12d7dc", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cf6f908ecc09e13bcc3ee230a29d6d54e89c09baa55982f888a3e1cf5586363a", + "regex": "(?i)^https?\\:\\/\\/okeyokeybro2542\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0a18db539ca03a0f802db1e7cba5fc787278a9bc9350f04467eba1479ce982d2", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8ec1cdbe7655c4229762e6e47bff50e7335e83041d08f7063044fab4e5dad9d5", + "regex": "(?i)^https?\\:\\/\\/videocliphothithhhhhhhhhhhh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a8fc7a6f3d64936a2920e72f499a08ca16d9f344011ae86daed1659b0edb3f8c", + "regex": "(?i)^https?\\:\\/\\/fdsfgrthgfbhrfgtetgre\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1721ff81a49d3ce77f91d6755dbd6323e661b8b200325ab9948addeaa2fa9622", + "regex": "(?i)^https?\\:\\/\\/nnooneyit\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bd82e4253ac6dde141e3dbd783500a9c8b081f4437cde6efd477950f84cc374e", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a6eb2218acced136482f26fc355d163effc319a90437eb5ce996ea11af950153", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "56f9417e069cf460bbbec22e1badec67ba225ccb4e5cc1da79107a66743ef710", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "42f60326eae391d1756ae35c14b21b552e8e87af3e6247f41a02b63dddf15623", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5cf9aa2ff2d7e8c8315ed8dc43606fc7ff3dc3302886da9064836fef20931ab1", + "regex": "(?i)^https?\\:\\/\\/bizzesda\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "23f26815cc01ac251005dd3fcd7d9c6a5737cb464a2c1a8452ecc237ad149af1", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0cb24a50d0bd87da6f9b9b1cfb723605a2d51aeff3c20959d5702ce5b1a77c3a", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "874ed8f7b3d012f7b33a688093d4216dd298fec1915a84da8e9d522042e2eccb", + "regex": "." + }, + { + "hash": "7c9fda1a5abc8c79a025fb7b92bb3551456a610f0872403a68724ac838d67c12", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontest01\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "44e0df399e49f2abc3c102acb1c1bf910ebdcc6011f48b96e72149092c638647", + "regex": "(?i)^https?\\:\\/\\/freefirerewardsofficallink\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bc9ede1482a1c16001178724274ff840688164f0d75a757526155c9d84dcb1cd", + "regex": "(?i)^https?\\:\\/\\/atts\\-stunning\\-site\\-d54df7\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ca2b576e1d2ce3a5e00e76f435ea97393c156b31e696368ed7e98444ae3ed339", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6c276a01cd4ea4404f574edb2ac4c77d453b037bfa62b74c42c3314f36421573", + "regex": "." + }, + { + "hash": "157588a110d8207aedc461a48f0d86f9f5419a6d00fc7e483aaa57223e9675a8", + "regex": "(?i)^https?\\:\\/\\/cashmonygift\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "12ae28c6d82afabfd122c07b838d5b5090be264e81d1ea31b8b87fab339d88ed", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c80e2c996251cf4b9860e437cb7783f9974eece2a061ff0d3941569b757facff", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "41bd6fb482f9d8e542cbd9d7b6fd2f2b2f0423125452eb8279896a67bb9bb984", + "regex": "(?i)^https?\\:\\/\\/nnooneyit\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ab4d3d2a8886809f182845ab73be1034f9f5da53380b2ba642f73d196202c2f2", + "regex": "(?i)^https?\\:\\/\\/okeyokeybro2542\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "df5fcfbad96fc859fc3d06d20c4597f7e21851338fa7fd40b1cfc1311f4e0bb8", + "regex": "." + }, + { + "hash": "909698031a76d5c8a49d3f8abf0facaf2f3c71c880051f1f561f542920d5343f", + "regex": "(?i)^https?\\:\\/\\/geradordecpsddtank\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "12f07025524289ae4ad095b29e33136020116c1839cde251470bf6350b74e161", + "regex": "(?i)^https?\\:\\/\\/fdsfgrthgfbhrfgtetgre\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e505cbf04a3d304a52d560aa8f7ffbabb25a96d47604260dbbb9ee9d45b82c97", + "regex": "(?i)^https?\\:\\/\\/crypotologginn\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c53e8b0650ce7ed32e29015f8fb7d5925e528ce40f95317e9adc9f4f2e17c139", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b96a5d722dadb3c81c7e7b3a44491ba2eb09781929117b4974544d7ee85ff65b", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d83e5faff6068fafc55d3fa22a45d4111bcc704c6b372a9e4281dfd82dbaf841", + "regex": "." + }, + { + "hash": "b347688fd600962786e09936620e0821b7d06e13d289be9c0954b0b326fb9f07", + "regex": "." + }, + { + "hash": "cfa63be3417752b4b546d9a34beac52fcf1967a4774ff1a0bb42be0e6be5a5de", + "regex": "(?i)^https?\\:\\/\\/freefirerewardsofficallink\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "dd4edced83134a0127113e69b6ee243ce77c2d16f8f1a1ea0098dc35f2b7908a", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "97427b56d9d5f236d8265186b2186b4e4bcf5d3de6b0abb8e6f12761206e189a", + "regex": "(?i)^https?\\:\\/\\/bizzesda\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9d878136532902957177dd9d657217e7454b6f505d086597368b3f62d1848d1f", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f9edac1e6f2278e067b5c6dc0d79bbf3e0ce2b9cb0204e87d5c111e2b5a2eb66", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e3c619c15635ea0238ee7b19452486fefd139e2a31198006de632257779e651b", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3df9c3cf052c8a159425f41081cd0a848e3885163fe1806cadae051f533f7eb3", + "regex": "." + }, + { + "hash": "6fdde0061b54617383b56fde2c0e26e5202cd8406e8bedb3b1d21566c0e437ea", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "93c13770c1929b73a35cce75f708e5d114b5c388eeed49a7a0ca37f6d1621645", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e8ee5e502b430e11103fa2992d833ab863ff475ebb91aef1699763b22f7b2bbe", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "13c88d8781ec95cce1939ee47e5e736c724e07dcc87cb82fcaef32d009e1885e", + "regex": "(?i)^https?\\:\\/\\/cashmonygift\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5f44a54f95f60ccd63247c5540214562155b2ecd1d72a10f835f9497b03cb3e9", + "regex": "(?i)^https?\\:\\/\\/daskd833\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "01efd450fd67f526880234ec72ffcb6b2eee3cfa973a2dbd65acb8ce7c6ef5a3", + "regex": "." + }, + { + "hash": "7c9f634cd16018553b17fa1094c82b1aa4a64833a01a5c47ae1b159845ae2c80", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6cb5ac6e712cc2d28344a160b0f8cbec686f7ca4c33ccb2b385f4642bf663b46", + "regex": "(?i)^https?\\:\\/\\/tuokmnutonzabtreoia\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "473e693a299a659f59fc4aa4a97cc8bc2c0475d4eda3fb343f3347898eef1f58", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "186db9eafe7f249aa778387aea254a13cc3c01194713a3bf6a491cc9e7c65cd9", + "regex": "." + }, + { + "hash": "64fda65fdea75af66ee2ed74d552d6df3b420404fca633c45cbdde7b4a0a2dd1", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "95d1fdb9f9ec49ab05ab6d83a1141df8e4f7f7bfa8a73ce43e6538c59153a216", + "regex": "(?i)^https?\\:\\/\\/lomnzhasuoekatbtyuxajsola\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "945850000dcfe1394da000364f7a051c4dcc93acd454dd580ebaa03eed818d5c", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-hotel\\-sulake\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1e442e131ec0e4bbfa7f8345d7477af8c5ab5be1c498019c4c3686fe33ea0065", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "60e9ac61d50d2e4be5711bd10eedf29863ea7d440ed035a768a96cdcd4b77e18", + "regex": "(?i)^https?\\:\\/\\/tuokmnutonzabtreoia\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ed8c387575668bfcf190f39154d0b599f22b7ba4a4c473ddf0da3cc5750db656", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "40461206c4a9f73ce5adc2376ddb5b8cbf27865c8b9afcd36d4d4dabfda09fa1", + "regex": "(?i)^https?\\:\\/\\/nlsamflesh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b87e7a00cc87f51b3afaec97a6a79a4e61a336042f316077f4a44d3428307920", + "regex": "(?i)^https?\\:\\/\\/nnooneyit\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "69b922dd007175a9ca09bfd85cf3f509d18eb4ef190b6d277063747fbbea525a", + "regex": "(?i)^https?\\:\\/\\/geradordecpsddtank\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4eb8c0daf88bb69157fe5e08499878c1ff5fc8d2d13963e8b323d513c0b0bacb", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e8f104df953d29c89c096b52929bc37dc4bf8df7cf2617e324d4b21d9c1339a9", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "96891aa07d4b66a8e32958b6a1c161bfc7f808dbdcd0792514d8f3c6ef9a263d", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "794a2e1933d7e2e3dd234a5c611fd0495dd67ee379d2a5015efc5fa722f8205c", + "regex": "(?i)^https?\\:\\/\\/6ghfgfgfg4g4g\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "81453cc7c958fc95db5693bb4c705c2cd7f7a16bf7ba0c67358f52113642789d", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b6c1ca330ef423fb1d0ac6b056059c4d363e75d737382af877db6d5ac0b05907", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a6ff125b13ca67facaf4c4570cd5d2f72d1c25e580efa3b959616e387ea43c33", + "regex": "(?i)^https?\\:\\/\\/nlsamflesh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d4c58139159a8a26aaeaa8433750ff23170de39f843b997106b106eb53756c70", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dropbox" + }, + { + "hash": "0739402ad6431b4a3ec82b76de3f913e6210de13b20788e1c6ebf2a98a03f180", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "29f3702f92cee77b0e483fc112b78a03fcc81378e329ddde69d01d7957d180cb", + "regex": "(?i)^https?\\:\\/\\/sdfgdestgrestgreere\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9360df9dd8ef693c2ca0235be3d291ad70969c872012042728f40e0f98fde8e1", + "regex": "(?i)^https?\\:\\/\\/videocliphothithhhhhhhhhhhh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3c6c5d521c8f7865c0c5b2c0bbf212d1a797161bd21b18e6f365c105b4ebad39", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a733aa38d85e9bf567ab392d128331a0e7edb69932a78c554da136435866d0dc", + "regex": "(?i)^https?\\:\\/\\/garenaffredeemrewardofgicialff\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2feaf6cad5f612ddba9e7fea54a608c188869d0bee1b0f9d891569cfd929ca6f", + "regex": "(?i)^https?\\:\\/\\/nnooneyit\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "843ce083bb070589cf8e9d3a7fa2b4d5eb921f9ac14b4c2b011099ef22122740", + "regex": "(?i)^https?\\:\\/\\/crypotologginn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a27d5e24d8b7deb033685ef2d6ae8837194c418986089b73ad5387869901f868", + "regex": "(?i)^https?\\:\\/\\/lomnzhasuoekatbtyuxajsola\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f6ef38b20d8e06e3a7d74fe5d64f40baa90a9cf4e5c2b5d0ad6847891f397d08", + "regex": "(?i)^https?\\:\\/\\/64fgfgffgh4hh4\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "82c504833aad93253ea4f9fb9aa100214e3428898c1d42812a9f8d77ff0dd06a", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a730492099e944a142a1dc3eea2bd646b185e53490b746c15fab46d839118eb3", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a99af91cb2635b20b8997dcf5897c27e0060d214442bfa9f6d5043bb9d801c25", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ce7bf47d60675c849a3b732d20ec826e302c520cce2b438a7f0a19b7774e887d", + "regex": "." + }, + { + "hash": "1c724a7f5bdb1c16b97f70e112b6d04188df6319eb56e1bead77089a17cd4f62", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e8184fe60c0c3d45b82213458f4e60d91b34f9762a29c35855b022a310488c6d", + "regex": "(?i)^https?\\:\\/\\/cookingnationfoodnetworkindia\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "72895852ec0a8ba6ec351cc115e036706a067423c40a3b03835d27726e064681", + "regex": "(?i)^https?\\:\\/\\/lomnzhasuoekatbtyuxajsola\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d89dc971522849b68426e37e920666197e933f65a11f309173b33dda70cae59e", + "regex": "(?i)^https?\\:\\/\\/cashmonygift\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "85c2c705816162fb5055016b63f2c427e3f63c120854e2790df74110cae52b46", + "regex": "(?i)^https?\\:\\/\\/dgfgfgrgrgrretgbhfhty\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7809c99df50d0e547e5a9dea07b01a6594341a4f62e555d4581e488d2fafc895", + "regex": "(?i)^https?\\:\\/\\/daskd833\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ebdc8275e6161e91141883ab2336041923186b0796cd80ddf77dcc00af89e268", + "regex": "(?i)^https?\\:\\/\\/nnooneyit\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ba31a6dc494d1e2314db6d6c1ad8a2bec561f2790b4a987637da16a7598f4ee0", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "381b04359e77b1e56ef82387b558a5780ec972917e9f4de61dccae85063b8e8a", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbf87f097f107fb8cef28b3575d33fffa622eb157c7cda225cf806cf80496e", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f8e49f338e2d83353cb0711eb23268cd3f2b06be3b354bf74c954de5012133dc", + "regex": "(?i)^https?\\:\\/\\/belgikbe\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "37d050b1e9c5ae0e061839788b794a2a9d63720a272d02dcebd9f9ba05b599a1", + "regex": "(?i)^https?\\:\\/\\/zajilnnd0\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fb11d356339ec3f271803c1d679acc8e91bc361da72952d8d41f94a1a59a85fa", + "regex": "." + }, + { + "hash": "428488ef16d128651cd6e1379d24db5b9f817d685a87b9bb892aaff89e5d612f", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7e97046747d102d68058f1ecd2aa4f83abd933654224ecc5c853a95813eab9ee", + "regex": "(?i)^https?\\:\\/\\/sssss\\-fda6c2\\.ingress\\-comporellon\\.ewp\\.live(?:\\:(?:80|443))?" + }, + { + "hash": "5706249d35e66441aad3807785cf91fdd96c221982fb3d8cae8c75835d319c9d", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "24e919e0af666c4427a51e8acd8e4f793540db2f4f684ab1e3e832ac1d630ef4", + "regex": "." + }, + { + "hash": "fc7508d23d981498bf70af0c0bfb151eab0a3d94ad8969818d5ac92562775c78", + "regex": "." + }, + { + "hash": "8161bfd3d81969a18fc3fba9c9c948476d05842896c92a83e625179f61570b4f", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "abb6706dfbacd38154ddf815b4b5d97d2ea4cff970c6ff0e5b410f5bf6d02e6f", + "regex": "(?i)^https?\\:\\/\\/cashmonygift\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d75fe532a534a81d2f18d62868592a7f01762ebb61136ec69175912f8688a7ed", + "regex": "(?i)^https?\\:\\/\\/okeyokeybro2542\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e21242824c9aef64e660d7ca02d76199946da5ea3b0924adfca181f3c18a4588", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d5ef9e606bb05e327ae68706330ac573ea0a9e73a1c36eabc3aea9aa2b1df770", + "regex": "(?i)^https?\\:\\/\\/garenaffredeemrewardofgicialff\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "aae9d0624ccbe6734976c9f57f6814ffe8aaa2733a16857951fff795cef0fd1c", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "004c9031e4c277e46905795a0224538f8906445e9483a313313ad6e49f6ee1e5", + "regex": "(?i)^https?\\:\\/\\/aisnl\\.ink(?:\\:(?:80|443))?[\\/\\\\]+th(?:\\?|$)" + }, + { + "hash": "72a4ebf8bca9ff611223186d81aab8bfb0ce8c48c7a4e2747ec3fb2d52daa608", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8c882e8793eaa385e7c98f46711d8d32c268d3027e3f964f783576c82d28c840", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-hotel\\-sulake\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2f41b91d4528b94fcdae471be957eb665fc169cf3e04648a2ad3c5171c280ca5", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7e27edea73501a62ee529076368e6600483273023f807a05cb2166b951cc2437", + "regex": "." + }, + { + "hash": "1b4b1a811643335066d6ca5eea8b8fcf13d8a3cb710eafa55cb82c064c42b338", + "regex": "." + }, + { + "hash": "49bf3c0112f5200a2d2c1b1d73ad152d66919862990f52adeb130255dd2afc14", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ca0b5cbc850dad040908bbfb5e43b1813b50822b5978882c762fb71f44c682a2", + "regex": "(?i)^https?\\:\\/\\/fdsfgrthgfbhrfgtetgre\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e7e81d71bf50fe4c8385eafc4cbb8acd2e5675f1a244ea9471b4c6ec61153e00", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "226a4069158fd8de39a7c3f0d94d4a231014a831246da69be95789444e9e3ff7", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4f088321525a3a4ee21a6fd5a361bfd295248b551c0639694935d26f5ae5fb0c", + "regex": "(?i)^https?\\:\\/\\/64fgfgffgh4hh4\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a85fec4acd9f0777f733d709bd40e3a959d5dc7234a62699ff2bc8fee65b9975", + "regex": "." + }, + { + "hash": "1ef46dc305eaa56f00114017cbe540de9cb2b923ecc2181f432edf3d91da41ea", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1eb8882bfafbea75fe5a7aebb18d66ec4eff63c9f589aa7ee4f4f91ee558007f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+purchase" + }, + { + "hash": "0887ea2fb38b5293f2a78a56302be0b21837ee830e9fcdb618e76991c9f80d40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Idporten(?:\\?|$)" + }, + { + "hash": "8bc52039e9f1c765e3e698043a1132b463773a017d1ac58aae8c5dc60e5c3c3c", + "regex": "(?i)^https?\\:\\/\\/nnooneyit\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "dc77f3afae194c8096f3381e649b8ca51537195a7d09d5fac7c4c133a9e1f817", + "regex": "(?i)^https?\\:\\/\\/cookingnationfoodnetworkindia\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1e66d9a24e429e32f04fb1ab7d80c304e999e1898117d7d60f1411686c95b498", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cd5070f2a505daf4e758e377785fd0cdc2ef68547a177a7472e5a950afdea024", + "regex": "(?i)^https?\\:\\/\\/6ghfgfgfg4g4g\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6eb845c6f452f25ce6bf0d8520fd849350394a709bd6ca4824a06c38821103a6", + "regex": "." + }, + { + "hash": "f81ceceecaeb8e08806507aede14e2e5cab597500a323df4d5a33491b9bea9fd", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3df5b0242382e6c316c79c3ccb15c559657634383eb10b8710c8c01f66daf43d", + "regex": "(?i)^https?\\:\\/\\/65gffgfg4g4hh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f629b8b9a49aed4dc216300ba9e4ceb73cac033f88fe58ce0267f05f10b88b2f", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "00c9ad2fb7d93d179176dc80ba14c2459a25c6ffa0659e31e36d95de1dc2c160", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{4}\\.idavs\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "ee6465b39e435f793cd1c9c966a55f1772fff34b990782b867224b4494f2980a", + "regex": "." + }, + { + "hash": "dc38a2a5428039f1186b8c61d9cd56fffb9918e2b32ece684dc10c582f0c88cc", + "regex": "(?i)^https?\\:\\/\\/sgymcwk\\.com\\%E2\\%88\\%95vyyepwlgem\\%E2\\%88\\%95jccrhqg\\%E2\\%88\\%95jojhz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jwkdtytnk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6914b04f833416eb2c4693b19ba8d03e9fae8da80813b194ad22f6bfc23c3e0f", + "regex": "(?i)^https?\\:\\/\\/geradordecpsddtank\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d64802742205faf7f635093b11c140d4ae7053055e43feedcee588a1443fb59b", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bb73a92eac2a96796942aa8fdde8e05f7539c2691b4ba53bb4a9f2853e531f55", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b6332bd3fc6e1b8c13341799b20d268d2b2280f542d1d6c734f6c0ab2e7a53b4", + "regex": "(?i)^https?\\:\\/\\/dgfgfgrgrgrretgbhfhty\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bae31a85929a942cd166581a2fac172718b249c000dc4e32fc68aba3990c5db3", + "regex": "(?i)^https?\\:\\/\\/okeyokeybro2542\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "62be830d0e0b104919fdb4f5769e939807213c41d4e98e340a34fb486e89bd43", + "regex": "." + }, + { + "hash": "0800567c86060b6f0c9c62a3dddd199f082299ccb74802857fc51b015f77cbc8", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "15ac387bb71dd5a6c985fb4502c79c20999f6a23fb8c8d7cb96988bb132b11e5", + "regex": "(?i)^https?\\:\\/\\/app\\-nickel\\-espace\\-services\\-mnsfdwa12452193\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "70f3fe00855911e4761c3bd3af8fab1b6b97561a15d298c00541d979466958cc", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ce211abc18f69a45fa57663b12e17215e22e68e48fc061f7513318c1353a058f", + "regex": "(?i)^https?\\:\\/\\/videocliphothithhhhhhhhhhhh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "852ecb85a74d7a6b0db1f318f34541c810f166164dc5ec63586663aae7c45b3a", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8a3e90ca9edd7d01f735d05d13c9db7f9f04ad269ce36846d1ad65e2b7719ab6", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "10f101ff71a90538a354ade8f78f5b1e8a137852c69a08fc321448ccdba58cd8", + "regex": "(?i)^https?\\:\\/\\/hshshs\\-102205\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e96eb719fc023ee8e6a58d544795454d26579e2c30bd7f35f052e6158bf407b8", + "regex": "(?i)^https?\\:\\/\\/dgfgfgrgrgrretgbhfhty\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d16c86a7a7234fe0c043c516bc8d074518fab77ffcf9852a1967e50c3dd1e5dd", + "regex": "(?i)^https?\\:\\/\\/64fgfgffgh4hh4\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e086b006de81268661558cd91744ee7caf286e00c4c2303d47a89c6e5ca6e69e", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "04d50fadea2d034148fd6bcffe62109def39bc05ec079458a2cd7bb9da55a147", + "regex": "." + }, + { + "hash": "52ce0bc465584acb0d5edbf91c8a4137493f790dd968659c68dd87ce6eb3619f", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "206b1ae8b9a68cb2587577caf208c019f3f1b8aa0791e3bddd38362b867f4c09", + "regex": "(?i)^https?\\:\\/\\/nlsamflesh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "32e55b4a023d415822596cc1de9b4f2efacbadd16157f55b6932658e254a2217", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6a6b735c0bb163c0d32b3d11bb22a377cbb5d40ceb9478654ea9498ff0932a47", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9ef33d7983897bbeee19998be9e382baf8e1e943e5e6739d74f70b8f4c48d445", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgg4gh4h\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "51be3051a90c52c4fac80a1a234aa19c5cfa9db9ea23c0350a4cdac53ec63d38", + "regex": "(?i)^https?\\:\\/\\/zajilnnd0\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "531a54a7ac1be58b7b93252e62adf3737e3b26634198fb85dd69e7b73296e156", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "aae96423e9dbf1e10285b3b0590c1fe51f57254d8fb3065b8a7c172c2b66417e", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontest01\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4df0faddc6f6428a0f367c6b1d4ce1f0ae27d21f7e33c6f9936ee104aaa0eb68", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3d4b337abc7994744e98f27fcd4d4d773df2027bf43ea4e534c9f1709638509c", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "51903fc7aa7d652eeecb0e8b0db00f2587f63165014d6a46ba53575ab3b81e0f", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e6f091918e2dfcf915b7065ffc413b5029e8aa55e99b1d03a3e0329963af4cc0", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a259c86c1f2276d87035b6d65a03625fb6a1a567ea33e8de86902ce3c2598dc3", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "09d182ff0e48dce67e37f87dbb0000b37672b21c6863b792c057b8fc8171659e", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4a7a6b4bd8ff07d0ab065af16203058623f525ae6742dd57c8533ad243baacb4", + "regex": "." + }, + { + "hash": "6bbdc3638506f85d7b2c4cd56980d52fc544332b5f4b19c7a82775d0748d5b8a", + "regex": "." + }, + { + "hash": "d5475198d0e691bca3992da6d75b2088cb7f4b764ce8be41a2ed00f9f8beedd9", + "regex": "(?i)^https?\\:\\/\\/64fgfgffgh4hh4\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "55d7da6c86f26d80242ed1d985faa998110b9178683cbfec6b5231cab30d1985", + "regex": "(?i)^https?\\:\\/\\/videocliphothithhhhhhhhhhhh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "57a602e0fa75a54f31b3fe0276a1945afc98086efb815b645c8a97b44779e9a2", + "regex": "." + }, + { + "hash": "2306c6749eef7eed5e4ca9dfdba24f79eec15e74c6e3e8fbcb1d0681da9875bf", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a3433e5b7eff501e52d7154451108e477c52f553d69ed689ade6a1313dbf248c", + "regex": "(?i)^https?\\:\\/\\/okeyokeybro2542\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ece4261708ae2267afdc0cfe47723fa1f90dd556868ae1df46cfc6eee0fde4ed", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fa1c17a3693292224f018c388f490faa6ccf2770775bfc3ffdc0e86e82922711", + "regex": "(?i)^https?\\:\\/\\/cookingnationfoodnetworkindia\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7301941ae4258afed5676d6bd38c5cc4a1a819d3bf9205c17d15007da62eb069", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "dc574dd31d2d6f2f0552bc16869077e6bca0a511caf2c3b5f93c1fd453f4fd9d", + "regex": "." + }, + { + "hash": "2dfd706fd861530ec9fe26777de6766592aefb0dce91ae7889a8ae6ddb09526c", + "regex": "(?i)^https?\\:\\/\\/nlsamflesh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a9fe24130b18ffd0600605ed4a0980c8b2f68d385f3829dae98f4d4885b7dcb7", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh5h4h\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9ccff5bfa925202c0f467674519fe496652464f5ff236a5939478dd50a9f7fad", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "db6b66c9bb9b8845104b2b14b5273ac2ebad6c918d437fd56740dfafdd6c11ee", + "regex": "." + }, + { + "hash": "b380b034d01689c81e70fd17d9bb436e0f5a8ee192436c9a7719b0761a3bed8e", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "85221816d467b832faf895e593899a0cc78528f445730711270b02811122bd39", + "regex": "(?i)^https?\\:\\/\\/geradordecpsddtank\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ef754fd8e5e5b4411f68d5963f1fee2768c703e847e2759e08bed40fb1eb0dd5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+garesmi[\\/\\\\]+logins\\.html" + }, + { + "hash": "09a1ad590d15b41088ab463ebcaaf3d099fc18e1a50c51655fd737d96c8b000e", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "61dcbc98e1598d6954e30288e86cdc46f2bf08507acf52cb408cf03e133f07f3", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "eea5e3cb3f6ce094f538a65bf58d59402a57f27198bfb52b9df3c9de29b84b84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+card[\\/\\\\]+cd2ff830(?:\\?|$)" + }, + { + "hash": "98697ab4a258b51f29f6547b48820c3e2748e2981e746492cdacce62a7c23625", + "regex": "." + }, + { + "hash": "a9e96a6ff9f411a84575a9c2271ed4698fc53e2d886a10516a5e6fb00b48f58b", + "regex": "(?i)^https?\\:\\/\\/sdfgdestgrestgreere\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3a847d318a89789ac4dbe5fd9327c9d5dbe62668ab63212016d6c40a8c523cc5", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "966175465886bf942ce65514c340a5964ead038ddb686ec8b044b8f378e32a01", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3e32efda4d68639f8a4826cdef39b79e7af182aeb7c76aaced7782909ba610ce", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9cb8a73920b57fffa6fe0f9da59eb0c307159148d6d144e079e5f2f149adc757", + "regex": "(?i)^https?\\:\\/\\/belgikbe\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "dade5233ef3d1e8c85bd0043785ddea4edd72e3c9b4069d1a4b1ebea7368768d", + "regex": "(?i)^https?\\:\\/\\/belgikbe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fcbb28be3969cac5971bc500fca87196059e9aac823c9c1e8ab547ea9aadaca9", + "regex": "." + }, + { + "hash": "a178b2bd5d2bcbff1d0b43d4fd12258092432ab64931ff4c16373edcd6b6d1ed", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3b861bb7a41c11da00344fa8caea17b5465c01c2381a8d70eabcd9146e410afe", + "regex": "." + }, + { + "hash": "7034800a77cd06d922bb774353a64efea09890f0184061d716b147121e3b2261", + "regex": "(?i)^https?\\:\\/\\/lomnzhasuoekatbtyuxajsola\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "097c8ee26c879a8f5dac158db9d587a640f903cba0295fa3a82fb4f8112affc2", + "regex": "." + }, + { + "hash": "894ac1fd618c10e20e7516a8fac18ae0eda24cdc5fd9a069a75bd88816a9f510", + "regex": "(?i)^https?\\:\\/\\/lomnzhasuoekatbtyuxajsola\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2072a97defc8dd99a799e6de2a6fc7108891d3326065019008954fdf9793c82d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en\\-us(?:\\?|$)" + }, + { + "hash": "9646ab639d4535bf8a88f4242685abb82e83ad87b33e04d220d428a763ef5653", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?columblxx\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "0a7e671ebe69ecde45126ceaf895f8121ad6daebba93d732f7e9c477dc3c1760", + "regex": "(?i)^https?\\:\\/\\/65gffgfg4g4hh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "baf45e94dc06eec53f6763fae759cfc100699f4992b08f4c1f3a1ef1e8aefc78", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "95f069d66de63d9afc638faa0fde99ed4bd425b26e3bf001f65f2904863c4485", + "regex": "." + }, + { + "hash": "6c527b8ef48cfd9b8fec2b85b7ca8350ed9605bf7a3a17aa104249f8f090c6ba", + "regex": "." + }, + { + "hash": "0830007f860b0e8db999482a63c262c717431b6472b3a3b75300630c326c5f77", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4e6f407cc6844462fa8680280e25e7ad4e9f7380daed521bda1078242a519525", + "regex": "." + }, + { + "hash": "eea5e3cb3f6ce094f538a65bf58d59402a57f27198bfb52b9df3c9de29b84b84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=AsuT2u3Nw2cV8dLhxxWjZTrsfLM2NB\\.WNjw62C3qnHA\\-1729751630\\-0\\.0\\.1\\.1\\-\\%2Fcard\\%2Fcd2ff830$" + }, + { + "hash": "b23d52853460b74e7491fe9f15e1394c0468106404807b050794cdb97e8321c6", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d531fd2f27a1058a34feb185c4ec7fef51353c1e69e0b18a7ba4c16db1b989e9", + "regex": "." + }, + { + "hash": "6e252bbd54fc0425667345619de63f2f2ae72540b042963b74518404ba7ce387", + "regex": "(?i)^https?\\:\\/\\/64fgfgffgh4hh4\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3d68b86eb77feafcf57b840fece7611cd4d5471443bd6b1cdaeb53cdb7e2195f", + "regex": "." + }, + { + "hash": "a99c905848b137620d6885a67d817364335797618376c1b603a68596cb5f46b0", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e65f90adc5492d88c5cb1b31cd2fc74dcc807ea5cd32fb5f3259a04aadd05f93", + "regex": "(?i)^https?\\:\\/\\/cookingnationfoodnetworkindia\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d23d4623104f18769aff72b83e3862cbcb3c166116295ca9e775ee555c834d0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "983e56029e3802c023714d2fee2e87af1357942cdf6c78c5244042f2eb6ca7b3", + "regex": "." + }, + { + "hash": "128642304ec94cb6026387ef5b800655624f1162a105ba9418e27924cbae993c", + "regex": "." + }, + { + "hash": "459bad77b9f26de591fec4d3a6a277d00496ec06dde3a53939e27e3a76b8badb", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5cff0304be5b6906665c18b8ce046d8e2d72c6b89bd7f735cb0cb4a2496670a5", + "regex": "(?i)^https?\\:\\/\\/dgfgfgrgrgrretgbhfhty\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "78b597e1e90990eafff27d9df8f836ca4c8a27b10b772242d7f7f467dbb3ae39", + "regex": "(?i)^https?\\:\\/\\/6ghfgfgfg4g4g\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6b0b9d6c8e9c36b5e70c6e533517417462a4a52bccbab80b308f2fd73dfc4015", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+(?:\\ |\\%20|\\+)+Ucgjz44GoTq(?:\\?|$)" + }, + { + "hash": "b10bf420d76d93394ef1d2d383f9d663b2ffc5f243801605196c36a4e537221e", + "regex": "(?i)^https?\\:\\/\\/bizzesda\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9962ae0e14618efb58496b7f01b9916a3bc4159259554799b09c89e65a128574", + "regex": "(?i)^https?\\:\\/\\/videocliphothithhhhhhhhhhhh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eee7fc0830f54e371b437e9159509a8108ddd9f2a2b94cfe58cdc1d78188b285", + "regex": "(?i)^https?\\:\\/\\/daskd833\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d9b2bf39119133e7f9ac59f6dd7674077a0fe250ed858d8a31cebae92dc1c490", + "regex": "." + }, + { + "hash": "223322e92b5b73cdbb79c5628c72e04f27031098272f50e3d9cdb5ac23887ae6", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "31c3549b38e995f64cce3079a7cf36bc6d9957636b15877d1a168211354546aa", + "regex": "(?i)^https?\\:\\/\\/dgfgfgrgrgrretgbhfhty\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "10529f28a28c31ad9ff961606f4e88b9fee0539d08ae1cab7126e4143c898e6d", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c835ba3490ae68c6036b6e5b08aa92c584310ee6e1d83e2f1ac1b9cb53f9f474", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6c70cd5597e59609a63f2da8d47fd155ae96c9e71cd31a6c3ab7898c0d68f6f5", + "regex": "(?i)^https?\\:\\/\\/6tfgffggfgfg4gh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c984ea7b5c74f332643f233fcbd44c3f42a1b3bd9b66f3217a78c8f1bdbf1e55", + "regex": "(?i)^https?\\:\\/\\/tuokmnutonzabtreoia\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "84197290c35b1e77af91302c2ad3d49a876d6cca46e9b350b57217f1571a4026", + "regex": "(?i)^https?\\:\\/\\/nlsamflesh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fd306ce4e360af82dfa04df5f2998ccec35824e626693fceeba495063ee80860", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f1713677a445151acee509671ac3910782df4f4ed7467335f006c8d7cca8fe0b", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9fa81a33849f35bcb6d01856adfbbe2e6483bb0c207483568479e23337584d87", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "457064a83c53fb07afbc4c74abbdd7d288cc1fa207fbb7969cd0b34e7623e084", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "793b79050ac4cdb045291421b8dbbd2f08ace25e52c9c51d561f95d590316ad9", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3a46b3172094b2aad4602525aa2f33a4cf38604eb9cf5bad6c56983a8963f1c9", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d7a75794d1b8511e5b87c516c51a6b0fe198565c48300ed893818deaf5f688e9", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a73a84c21cdcde140b73de348c271b0964ba0807420ba476e0509e3db7d18", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "44a620674865a81fb24b426a8a1caaf1cde5e673126b306f2a7bef6f54b11b71", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "466a0e2da4f39e399feb37bde38353075605c58646eec7cfb6941d75ee467edd", + "regex": "(?i)^https?\\:\\/\\/dgfgfgrgrgrretgbhfhty\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "067dc46afa6611c5f35a2dce1d61dd784e345da2ee2123c1640a4c415de5c59e", + "regex": "(?i)^https?\\:\\/\\/yuiiodfsdwer\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc73bc95200093c5c477fd32f3a3f9f497ac1a5029e75a0ead86008109487e72", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3b7c1354d8aba9589180d50139fb6678d868c837a2ec67c04874e81ec7da979e", + "regex": "(?i)^https?\\:\\/\\/cashmonygift\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "767ceb6d7c65b33357aea1b4e88f412679ebd837ca30cadb662bfaba7834e12d", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6538c74da0d14295a0337a4683d34012678af9554663b26f835525b1597a9c0a", + "regex": "." + }, + { + "hash": "bfb9366f8f83fca8f7621fd9ffca4ffd89fca132944dbdbb2ab13c8d81984c6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yaya(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e83384f7b125cc0b9da17339b88bf805ac5901e05546cce19b41d48a5b8a8352", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e391ce2cf295773f9490461c7d9e2d079eeae0def4596282631d3924ee11e079", + "regex": "(?i)^https?\\:\\/\\/zajilnnd0\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7b08a1040d7d7a2aa93c1646a98b1e63bfc437abcf66c24809d28b4d9a3d3d20", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "77f23d48ac71d81a20b1edab4437cf82cff284f1498f1ec7f52b2d1dfea96cd3", + "regex": "(?i)^https?\\:\\/\\/belgikbe\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "909e84f790731a8711e45ddf4300c9f846e404c29f6f0fd303cc188cc222fa32", + "regex": "(?i)^https?\\:\\/\\/daskd833\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "903dfccd3c1a0ce16e57a7c5b307326bf3899014948cb0aff5cfe19683014d77", + "regex": "(?i)^https?\\:\\/\\/6ghfgfgfg4g4g\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "93c6765336ae99e4ab6d7f0f43e61d1ec6398e3692e4df9a665658fc958b8d8a", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2e0053f10aa45519007a1d456af8606d46d7429ae11afa2204530101dd0469b3", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "77600946308779fdd6c14c67923beba5d57aea51e978464e513e156191157fdb", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "99e387591be69df632f669052b38cdd784920ff799b9607f1b6239914f2193bb", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "009197082854de55f0359d50190bf915fb86a20c5d613070e75f7e8e630c076f", + "regex": "." + }, + { + "hash": "3905abc23bc091efff4c6dd99990d18c044343402e2798049cb2665a36ad482f", + "regex": "." + }, + { + "hash": "2d3bbfaadc11c35ed5ab6468c2134ad923a1e2076654755cf04eab1ce166b27d", + "regex": "(?i)^https?\\:\\/\\/belgikbe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bb5f9fabbeb6c33ad329f72d4d9de73bdfa9e4cbb3868bc3ecbd848d86d5479a", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "389ff4e81cf5ae86388a1522ea9ea08416cf9d8f782e3dfb692e579663452fc9", + "regex": "." + }, + { + "hash": "19b808ebf10a0111a6a381715e4000c9f17e564997b31075c885ccbeca4aa45d", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fd7866609dc88c99f2c6135ef0d629ba1aae2b48d3a0322d0664facaa23cfb82", + "regex": "(?i)^https?\\:\\/\\/garenaffredeemrewardofgicialff\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a1ab452eb561292653271c71d3f1ce9d15108909625df1d2af90cba9fff26a1f", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9c2a60ba0dcc245dd52920c89ab090226759d6a957e777286e354f6fe43afe36", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-hotel\\-sulake\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e87994098e63a3a2781b18b311bc58be03886752ba95facdda46669613c2b36c", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cd89668159eb3915560cfe2ea64e9e8ba77f5ffdfab2ef17580d3f891771c179", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontest01\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a33b71f6ddeebe0c9f347d562ab8620f6030792fae67cd389d16eea1ce972566", + "regex": "(?i)^https?\\:\\/\\/65gffgfg4g4hh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c6b716438ea4ea22fe5882fcf309a943b280bddb7f92a924ee2485e7c7976910", + "regex": "(?i)^https?\\:\\/\\/tobeljik\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4e8e7d0ad67b6adf58f2d16c7b5713e711995eacb1ade86479795527eb28143d", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "99b3f7d40ee968d8347ac21d449166788001f394a6929a942fad67db05b98e7d", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4fabb5b3252b2266ba5b234921d2f39e9e72e52a30abcf5edb5b18767c7aaa20", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8612a6a2ae7895429782cccc9944ce0ea049f3c850a9ba5161d2777bbe70f293", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "97056eed27e8568efee93df4b32dddfd175929ccd592caec621058b64b3fd236", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e1ecc27abb7acdc6f4213ccc1bc88bba8a4b1946fc2ee6981bdf4b0aca5ddd5b", + "regex": "(?i)^https?\\:\\/\\/64fgfgffgh4hh4\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "11bbdbbd29e9c9c47da367bf710ddae9aad63ea22071007d1449dff5cc879007", + "regex": "(?i)^https?\\:\\/\\/crypotologginn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8cabc13b9ce48580b1ee2ff43dff9f035269a732da87e1b5ae81557856378fb5", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "83314ed7c565e996bab826d53f71946f9a53d81dcb474bde084d0cde770c1b5d", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c16624a3d00abdaa6513ff7ff32f3024573b1a9b380d387b1baf3b3b3812acf1", + "regex": "." + }, + { + "hash": "0cb300110bb9dc5eb3da58a7817c21c445274984fa759f83066114695d927665", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b3542992ab18ceeddf57a66d38890e4786e41d7105773c096f68b9eba46cfaa5", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "24248f9b0ad49bf05739c4343cfca27013f007276e8af9d82ffb751d1deb3073", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "40abb0fa8b594af19e8a69176c297a9776cdc275ec0f3dac9efd3bb5d29c9724", + "regex": "." + }, + { + "hash": "3d45af0cb86b761d5499e9d7f1d4f13fa1fe645968263a60b4a4253cb3355208", + "regex": "(?i)^https?\\:\\/\\/pub\\-757d90453ebc4e1f90aa31f9b6b8d6e1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "88ab41082a1a618ad683c58a03538e00453a11e94b4f96d7c4748bad8d03aa9a", + "regex": "(?i)^https?\\:\\/\\/tobeljik\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e02f3e05d96e119bc7605e4359d530ed6f22890f1e7a2b27f3ff5e37904f070b", + "regex": "(?i)^https?\\:\\/\\/daskd833\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4514a4b90ccaec44429352c3e1438e58017f94dd615364d6a8af4bba3e3d9793", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c10934961d88cf946ab4d99e7b1a63c0346c74107c407ef7d4ef4e758a0e7c31", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eedb4be6dadc2e81a0ef4f81c7149ba17f8fddc2503cdb7340b93ebc3035e830", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2072a97defc8dd99a799e6de2a6fc7108891d3326065019008954fdf9793c82d", + "regex": "(?i)^https?\\:\\/\\/exodussweb3wail\\.gitbook\\.io(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "12e0cfbc7f83a22fdd81f54d4a6a1acf20b7b5f985b334093b0008ffd83134e7", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ee2f85429e9e4b1fba8e91f4900918ca1a6eb7d0d0ccd66fcaf5d935da3d7289", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgg4gh4h\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0940769d9d3947a36182ce0a24732e75465f9b32670781bc45cd05d0479b5722", + "regex": "(?i)^https?\\:\\/\\/zajilnnd0\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a4b5d2139d8252ea42df5ce486864c5994c32e859555a3e69770d926986e8933", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "280cea3ab1a9a9ebed981e1cc7412cfcbcdec7bbffc83c2754a5baad29f7cb28", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b1ff5db67e050ea7c76409ca6953d54e0848f1bcd85f3187dab4204921ff9117", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "64f28e3312d3c3045b21603e6fdeb702d535c8c664fce0c5fce2ad430330e56d", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a0ac1a2dbeba862063c4fd5590ec67fc24f36d5fee50a20b0d2feb1273624ad4", + "regex": "(?i)^https?\\:\\/\\/tuokmnutonzabtreoia\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2fb89d98a90d0cdbb34a84cf24785a4c7ad59f54cd7fd4f1a73df09d859018f4", + "regex": "." + }, + { + "hash": "8d59654c27b0c722a749735a137d37827076c5230b569df366611b1ca624bb03", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "37910ce82bb607d34f0257c7ecf03fae3d940e0e7696a0e0ab6226ff5122386a", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b591727b2bb7e2bed4b7aeacd12acba120d46a5d4ac487e2fb4b165bf190d9cf", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontest01\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "53224effea97ee71533911c9ca16fd746602005f03e86d66a9a3f2e428bbfabc", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgg4gh4h\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "793ef6419190a3db446b8473be6a87748d52ae9ff3c9ee5efbb2b44901c94995", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a888fca53a3ee2be943fe3e6f6a253f81b1f8a11a7994b4dd5304f9721741433", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c478ac1d4b969d5c17f7996c5ef12f72cf4b503ff55b0fc0ced4e4c1a74c71be", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4a7a0b0ba89af1b6cfcb1b11c8d2ef499d43bcfd79bbb1a11fef34a8ad79d604", + "regex": "." + }, + { + "hash": "9dcd365f60de0606d14b2423d081ace1b63177a76ccd84a49cd66694c5047cb7", + "regex": "." + }, + { + "hash": "8443839f9f16ca61e9cacc63cd856a88ec958268088643acb84ac25aa602f89b", + "regex": "(?i)^https?\\:\\/\\/6tfgffggfgfg4gh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "315a456118ae45c8a689c72ff40237bf2c549b008263d1121be74581017ee026", + "regex": "(?i)^https?\\:\\/\\/help\\-case3523\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "14f92e06581b47f03db9787e92de96b20bbe06d2032a46b1e9202b0664808e05", + "regex": "." + }, + { + "hash": "a7d00e47646a35b35c7fed7a0982542f48909a26801e798ffce48f222921523b", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "194b2e66c32b5801f99c1402d5cc4341f3b485ba8ac57a0352e84402db6ef95e", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "fd74168ed3fbea7d978233b330419ccc7a36dfc6dfb81957ba464c8120c64961", + "regex": "." + }, + { + "hash": "b8625ce301756aabb840b0a2e28a416c68741bf0861635251c46b7fbfafc040b", + "regex": "." + }, + { + "hash": "98905d45bc786abfcd6bd842c987b02ea235058f80f6f19b66c4ddfdac185c5c", + "regex": "(?i)^https?\\:\\/\\/lomnzhasuoekatbtyuxajsola\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6b0b7af0edab34433b525e5e9bf4f4a86a86dcccce5ec38ce15f3d81d77185b9", + "regex": "(?i)^https?\\:\\/\\/tobeljik\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "13eb123d3eba7c03e4fee5bb8631bcbdfa3c1bb8d6acf26cd68397b2e109de93", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "70de2a0cf4017901e123c5ed22b5f9d103e6baea35d6b92fc2987d34d2991281", + "regex": "(?i)^https?\\:\\/\\/crypotologginn\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3c0934a634b50a82bee44f9250d8599b95fe226654947cbe38e80d5edee8e9a9", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "27146e5b4bba9af5eccf44400fa5023a0d25d88533dc6da01a172f3f257526e4", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d10f4daf7d869b9e755079dd0a02fd297d2ff944a6e4cab3d693b633224806ed", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fd84929190004acdc425c7f926e9a49fcb9806b07acbbb36370773f71481a1e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "ab8829b64c3313fce39a75ca6069f7e7d4be4045dcf9f2ee912898300bace01d", + "regex": "(?i)^https?\\:\\/\\/6tfgffggfgfg4gh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2946e7a20730dd9a32205e1440217f5501080d3fee55685263af0893f7af0e6a", + "regex": "(?i)^https?\\:\\/\\/zajilnnd0\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ed2050649598aabbaaa3f285740f784a3a49da3149e5030627cef5107ff31da8", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh5h4h\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3628ac142d93e766572ddc2c68ffeef234a998117b71c0d8840dfb1a4ba4da83", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e3346f435316045c64f1f5e9a125b56d63519e9d63622f90d62377b17b16bd1c", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1eaac30d946557e1790056cbe4471868ddaa0811cc59935e2c7cc4e110e75302", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c6fa8ba529183fabe84ac06e8052b66dd393bfb50e9cbd7763eda7e1f6db5128", + "regex": "(?i)^https?\\:\\/\\/fdsfgrthgfbhrfgtetgre\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7f6835c06f064a6b9c51740ff96f0d2ccffcbc8d01475ae4354c67f7f3ddc53f", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgg4gh4h\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "997ede67b288ec292e34bc7223513be777c0372eaf71ee3869f2658262673296", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f70eb17170faa32efb2610d6ae487dc2ffbc51edfae0a28e1666f743d11c684a", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fe029fb6e0cd5a7e68701c477b2dacaabad8a19d82aae2cfe1ac1262ede0e20e", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9d6017b9db0b15c4d527014c474514e16499b4576ed786af420614320363c757", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b02b116dfc5600f579b7b723ad0dab537c5426df516ecdb56840d2d0f0325080", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "af4e7cfd8bfa7031a2eb274ae1e480346dfad763c3e470672d58e94f510d147f", + "regex": "(?i)^https?\\:\\/\\/tobeljik\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f954e28e5fbbb47a1a6ee8cb2b80b1c8a0d2280ab471324ac84f660830e237b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+H739HPW2[\\/\\\\]+Q82HPY3\\.html(?:\\?|$)" + }, + { + "hash": "50b2c1d6f71c9bbd885282e137230c042189de658ec476db50607ff618bce385", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f72f86af61bc8b4e9d4bef6d7b9ea31cf633d705479e1a4dfb0cd6492d48b52c", + "regex": "." + }, + { + "hash": "3f532a32b30f9e8e2434d3c8bd3699dbcd28bb28ca43f5344e5873c40aa3f78a", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9984bcd8e2b0abc904ed115bf2e31ec647d4e32195ca46925b81200744b2075d", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cedb683ab835ad31f157c2a9fc2a412f1464a9887242a5c97fc9bd20ff708a79", + "regex": "." + }, + { + "hash": "f9bc256d5db27c521dea48d957aeb26100083426f1c382d4a24effb873233f07", + "regex": "." + }, + { + "hash": "a659d9712fa6768eabe968e5368d6686db6e6b188b8c0f19d7e1afaaa6a139e7", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgg4gh4h\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "39f61d4154921b230383f42ee7a7907c1ff338be88066f4b5b436e0f26a50d5b", + "regex": "(?i)^https?\\:\\/\\/okeyokeybro2542\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "77badeb9fbd62f5aa1fda70f14b65b25b76cccb953ab3bf7739d0612e152d617", + "regex": "(?i)^https?\\:\\/\\/tuokmnutonzabtreoia\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e2fbd22043e949c6272bdffc0bc8673575304e0564f8a67690622c7757b6df77", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a6cbf1ae421c0f3640e3286ebc6b968162e4e5f2e8a98514806533b6c99bcfc5", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ddd032c43d5ad3eee84233a44ebe527353f6970eb7864629160ab47d4dd15d98", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontest01\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "931aa240f11801d99094b624a6ae54174c7dc2056d1a3820c2e7b83dec1aa7db", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f9092d4242e4ab5518e2e3c29a13b9a45e1612a30751830582535a4ebc4c4e82", + "regex": "(?i)^https?\\:\\/\\/crypotologginn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2b85fe29dbea88d571758a269a18c6bcf9aa6e59176df906a9306b29d5b2812f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontest01\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7c81f79770ffb18c3d0d634a150164eb22b660aaf13e9f0840b5a3b37adf4b56", + "regex": "(?i)^https?\\:\\/\\/belgikbe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "19247052e87019a44736928e1591c6f475caebecd0bebb3ce9fbed77d3165108", + "regex": "(?i)^https?\\:\\/\\/belgikbe\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "24aa4e2edd918b637fbf931d4ff9ea3cb12d33a84ce3531082da5e665149a522", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9ba25604c907c884bf3a5f1fe8bf7cad99948e43594ed8b244ca8e37f8a90b2c", + "regex": "(?i)^https?\\:\\/\\/garenaffredeemrewardofgicialff\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b4dbff77b5b64fa7ad6121414f1a34ed0e64b6a5f0bdb17cc754b22005ae8563", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "06ee166eb362f1140c12276601e2081aef07c5bb4de527bbada4221b315094cd", + "regex": "(?i)^https?\\:\\/\\/daskd833\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "22e2b8407e7d37cfc02a507680e5d1c60ec28694b00d5e88a55ccd5760dbd747", + "regex": "(?i)^https?\\:\\/\\/sendcashmony\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c2d3af8704e4148ad46c316e37ea8f83f8c7e335fff0e1a28de55d15ac8dfafb", + "regex": "(?i)^https?\\:\\/\\/zajilnnd0\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0828c52f1a3a7a2e7a694633251ec03c27422be88409c292db2323fc6781564d", + "regex": "(?i)^https?\\:\\/\\/freefirerewardsofficallink\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "436ef36feea700e16d17096be1b6a1be6ed4f4a901cf6a1258d3161af2913e92", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ed573cbab5897451be870b1d75291d619719fb32474086bc82ab8e66f802ec93", + "regex": "(?i)^https?\\:\\/\\/tuokmnutonzabtreoia\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1fa4a3506e784265b35d83cb50b371734c0110a7196632b96690a8b5743e9670", + "regex": "(?i)^https?\\:\\/\\/dgfgfgrgrgrretgbhfhty\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c9450f5e537738eb929c2c880f46e0417bd6bb1db18c5efec9863e8bf0eb0672", + "regex": "(?i)^https?\\:\\/\\/fdsfgrthgfbhrfgtetgre\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1aaeaf6dd814f62f1db69a92de693b38dd2b2675f9f0b4b4f2158653269654e3", + "regex": "(?i)^https?\\:\\/\\/daskd833\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9ccd9ab3e132315756f95dd4f09164aedab5a5645b3bd45de1c66f9d4ad04d61", + "regex": "(?i)^https?\\:\\/\\/07f7a20370759e7d1e7c301e9da6d62d\\.serveo\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "1c5c76614894ff900092fac668d18184ce70335da556e3bd1aac9da6c4dda54e", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ae1f258e1c647324ea63da3635eb647295b486e9e90a648dcefb09bd3bba7814", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a5fda77cc7f759e04fdf586a480bd30840788189dd1f3651779c77445b971487", + "regex": "(?i)^https?\\:\\/\\/5fgffgfgffg4g4g\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5973cc9ed64efb53107b6e62241c36d193107879a9c0d6b703ec2933fc41d2ff", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ba859a57cab59980b20015714656eb8f858d0687ff179882aa55301b9f5b2cd8", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ef91a67404f70324ec65c1a36e6563ee8cb26cf8020bbf934a9d9e383929b025", + "regex": "(?i)^https?\\:\\/\\/crypotologginn\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5ff27ac39f2aeb5418d346b124e191ed26d8c45aa987cc362e7afbab781f37ab", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2e59f07eb55b24faca646a87e958193fb801f7523b504fd27ab7aa11bc317550", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0eb508acc00cdedd1c9d06f1c61ba0d6c4b71d38a90594b5b01da7b8f0fba469", + "regex": "(?i)^https?\\:\\/\\/tuokmnutonzabtreoia\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d40b19ec00f6efea91e877c782545a7b4c582c00a09c2d7b345c46f6df416eb4", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "84663e53a9e21e75f27ec493e65b606a464d7db01df1b4cafc90e97deafd4f71", + "regex": "(?i)^https?\\:\\/\\/nlsamflesh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e911be6b9c5817814ae7bd7fece1e509a887d61553b7991500def65360a18044", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b450f1a12c60cd83be9f4ec193db630e68cf86eb297fc32078fae4640582e512", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "91895266b63257085a8a9c5b9dd3e0346fe71b66fbc53693590cef66a8815bec", + "regex": "(?i)^https?\\:\\/\\/cd873b9786b4a616469fc07dccea796b\\.serveo\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "7b027ecda6b95317670ae9d283d82e1e07d0572545788515b2c88c74e18afd14", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7fb80de2cde53e86c5a86d151967440864de417cf0f69d6b2f1f1a300efe6736", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "13d335a01ade257fe604bdfd5546b34e5f815478b54a1a2465d4f353e992f3ba", + "regex": "(?i)^https?\\:\\/\\/bizzesda\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "61c33c984a19e3aaabb0f7c33b0da24e37496e9d724fe5464f943023deed76f4", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "793e81177841060fd7dd662d3451f4f83fb8e903a9e9b06420a6d7527abf1882", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ad62805ec49e73042dac543b9c33570475bfc002bce08bba54b3412b5c0370f7", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0fdd2adea9c84af5a54b2454ff7b65808a02e3bed8ae3b8effac0088947ad894", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e559420b015af2592991d44d3c5ee87b8ce523e91e997aa43e5c47fa50098854", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "022e2ad5a6d703cf2a5d9546d5939dce62d674c7842abb8ddf9c05dd65405cb3", + "regex": "." + }, + { + "hash": "e286cb2f2f9bd3a44b25c515c9344467b8d1f5b3cf9c4ab2c2dfe8cb9b8a357c", + "regex": "(?i)^https?\\:\\/\\/dgfdhgdfhgdfbdsd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "dab26ee2b5cf7be97ecfc30ed6a2be19267b0b2bd1353f9588b007251be0b47b", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a0c0264a3cd754a0b6ee562a7abccc7318039294a2562d4053143409ad139e7b", + "regex": "." + }, + { + "hash": "df2c050a934ddac4e42bde9d0c22a5453edc1bd752401d5fb8e77a4e326d2535", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5d7c2319b21f5e3d944160704d3f0b7710a5c9c0f3a6effe2db01d58ff9180af", + "regex": "(?i)^https?\\:\\/\\/sdfgdestgrestgreere\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3d43adcda7f4a6e709bddedac77fdbd08d35f1d8be2919c97af28668c88e7768", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "916b1de63aef27d4951af9e516b3974798c04ef0e3a897b9c90e0e9bebc4f7a2", + "regex": "(?i)^https?\\:\\/\\/sfasfsafsafsafsaf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "98a48f8ecd79100fd3d2fdd323a2ac4ec5f5dc38714685c4bfa76755ffeac47f", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c4e48d468bf70826a0538a4626df96bb784d9d58b5001750d704266d61eecebe", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "250301bf22ebce9563bcdbcfe10e79c1ee238851bc0488d48c628e7727df2e65", + "regex": "(?i)^https?\\:\\/\\/foodnerwirkcooking\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a73ecf1997dc2d46c58866ddb48b035158336936a44a24b5cbf6d18c36f8089a", + "regex": "(?i)^https?\\:\\/\\/molowospoetyfoodcoiks\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "12c712b8c518b80453729c77e151a4f81a7fc872dc246cc27046efee416d3ca0", + "regex": "." + }, + { + "hash": "bc30efab0b26d041fc567a455406be3312c253487c08115c28a453d9fbe1a2f2", + "regex": "(?i)^https?\\:\\/\\/sdfgdestgrestgreere\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3601cfb821466951fd626150774de6d78c84b25452f1bdeaa79eb032582d3614", + "regex": "(?i)^https?\\:\\/\\/6tfgffggfgfg4gh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8339dcf64cb0e10a3fb464ec8072b059e7e34d35ba11a369fe28ffbbb8ddb49a", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrfgr4gh4\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "eb54eb6f38d321864cba796a59aa72c6711fba48a478441484a0ef531625f9dd", + "regex": "(?i)^https?\\:\\/\\/try453c\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "64a0e27d037d5f072f60e8b6aaa643ebd92c70b9871e45bc89f4d4c922fa6b7e", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "202552e854537ca62fa39034c8ea3858ebb5662ce10b5be67ec999789b8b8cf9", + "regex": "(?i)^https?\\:\\/\\/6ghfgfgfg4g4g\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "18187c84137640cb0ad8dcfde3aa70c8e92abd86bb8daef9ab9427524ef75750", + "regex": "(?i)^https?\\:\\/\\/fdsfgrthgfbhrfgtetgre\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2b9e8c0705d78a771aaeca0aa086db506af478b1fe6c642b594e47b65e7712cf", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d5b111b92935768bb42f00b7c2ce942ede8c7f8ed8aed9c412138e4789bfc2c5", + "regex": "(?i)^https?\\:\\/\\/renemembcss\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f315ac8ac78438adccb07e5bc9f9eb059c8671cea4a4a205e193ce5fa22c3095", + "regex": "(?i)^https?\\:\\/\\/nnooneyit\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b3e8669e1bb056da4930b18cf7f5015b7ad3feaca8daf110875ea553a91bf7fd", + "regex": "(?i)^https?\\:\\/\\/sdfgdestgrestgreere\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4fabd728ba1c4d82208cdc2883c1df1a30f644752f6ce1e63fdb256563b8f588", + "regex": "." + }, + { + "hash": "9ef01852fdc8749fc51dce5f822241061546318a14d0ddd1c912247ec10245ab", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-hotel\\-sulake\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f93312a7d18dabbea51e97bb47c56adaa4e1827ddb1ffb8533431fec973234ea", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dd4e3480f851cea81f2b5cab5df4f31825102c6a2c55216423c6589704c00eb6", + "regex": "(?i)^https?\\:\\/\\/2tddadjscoply\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "25c2eeeadafec888c99d71aa61c2939da0ad84007ffcf0da0661f10a5b29ffdb", + "regex": "(?i)^https?\\:\\/\\/dgfgfgrgrgrretgbhfhty\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5ef033ef5d7228fd09c21401df9c00df1cc21da1e08e95d28086c1c49552a8a3", + "regex": "(?i)^https?\\:\\/\\/64fgfgffgh4hh4\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "347f1a4c612da3e7ae774b01db8c14ac06669a8788354de2104fb3c28a11b739", + "regex": "." + }, + { + "hash": "ba84c6d780c599cd0268800974086b1ac4ec5d646a88a91839fcb3dab46d382a", + "regex": "(?i)^https?\\:\\/\\/fgsdrtgdrgbgdfgbf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4715257b0fafcf4eaac818942df43f04be14b7cbd2e60f7295ff33695203f0c9", + "regex": "(?i)^https?\\:\\/\\/link5454rgrgfgfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "02574bc9b331c8251008c77025df824f2218f08b8a0bbf9074f7a538be13ac1f", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh5h4h\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "65ac6b4d3df5293ed0df410af9594ddd9d7dc28f45403f0038fdb0c546989a0b", + "regex": "(?i)^https?\\:\\/\\/dkbrobizz\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "84059a0422d9d4139b2ca059a1adba1992b8626f8ed7621bddbe9a1ba919ba69", + "regex": "(?i)^https?\\:\\/\\/bizzesda\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8a0b4a868370293e6d335afcf97bbd85d6b91dc2ad55ccc107307da6a4af7656", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6007420c92e1602c1a0d0c78116e25fb4cac6fd58c136b56f8ca93b8954764df", + "regex": "(?i)^https?\\:\\/\\/myepoxx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9969313466e8271fbf0af6d15042a5552a8c8f15eca3a76f8f572fcf90fb491b", + "regex": "(?i)^https?\\:\\/\\/lomnzhasuoekatbtyuxajsola\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cd621f64379fae04f9547f6e76275d5be81171344aa6514f6c905744ee477a07", + "regex": "(?i)^https?\\:\\/\\/bizzesda\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "903d613c08d6850b568774d8879598dec224e67005ec076871ee6e53313ae3f0", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "914d30c8925c40cceeed7ffd145d15808f4b561deca9a9d382287db23b547792", + "regex": "(?i)^https?\\:\\/\\/crypotologginn\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c3826b56c7086a8cdff6e92c97f23bceb9ac0164da1546301c6b629bf4bf61d0", + "regex": "(?i)^https?\\:\\/\\/coinbaseloginu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3c01c503be6e40d6badd3c3a2d08836ad249d3bbb40d25fa0a40149a9bf117ae", + "regex": "(?i)^https?\\:\\/\\/laden\\-be\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5b5ea02e68d69c2dd6a22522fa9a12ea8b903008f7fbecde44ebade4aba0be9d", + "regex": "(?i)^https?\\:\\/\\/infusionsfoodneteork\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c215384f6464a59d1d275651e3e97ed9e5e5a02507802df245cc623de2bc2de6", + "regex": "(?i)^https?\\:\\/\\/video\\-philip\\-37\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ab49699e8ae9ec9eefa4af5e704c8d19c35309e6e85634dd1d56f34f4a18d3a9", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d9a0f55692e3afbdb3ce075dd86f2cab04b46ded34858f20589e6bcd39339c0e", + "regex": "(?i)^https?\\:\\/\\/freefirerewardsofficallink\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "51bc761f7c4f64024e17a88ecbde7d6ddeb5cdc466592282f7844ebf50925f36", + "regex": "." + }, + { + "hash": "34d4bee1a7f132f835b5f98286a3d1ddddd43bef5c55697c20b477533f3b478d", + "regex": "(?i)^https?\\:\\/\\/okxmanshrualcaowewax\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "661a531d9c04a9ca1c4a21f63f7069dc6a2be0ae89878bca2235504153d528cb", + "regex": "(?i)^https?\\:\\/\\/cashmonygift\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8ee1a736be1f0afead010c05fd69d50e8e03c4e11b132ec45aff0290b231bb51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tutorials(?:\\?|$)" + }, + { + "hash": "b11beede901138ede2d8ebaad12aab090e45ae3db9d677793945b6115ef22e50", + "regex": "(?i)^https?\\:\\/\\/belgiumto\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c940687f13f98f6df13aef9df6ba7723418ebacbb51e5cdc627ffc05cd9cb870", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4h\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "661a4d378251dcab9704faac6511985a73817ee4f118ea73549aca0d73b12e05", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6692b4c155221d292218477a32a1d237c91412d25d4864deda270ac28aaf55c9", + "regex": "(?i)^https?\\:\\/\\/6ghghghgh5j5\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5bd511ef9021f778a7e4950bb4dfdabe11a9b5f29b302c6917f038fc4a809f09", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "eb4a65cd22a85ed0425e9ac839b7e3be35c6da997aa930953a7b88b07843b8a5", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1b272bc5a74b71ed2ab3d5370430b0b9e3c6b8ddfea0b08b719ad60e7adc8fb2", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b9d8b5d8ef4c6b2a6f414ce79994422b55d10d79305045b352858c2205af904b", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "32641624b40b3e59f5ce3f7d2a3102293b875bbf2034e80cf3b79ba0dd9f6844", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "95aa9fff4cc9ead7fe7a3a21502e8b14755dfc959fb70d4ef942d3424a7732aa", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "201522fefcc7574e813020a0d8dd987337ce520917a225690a8f371540474687", + "regex": "(?i)^https?\\:\\/\\/6gfgfgfg4gh4h\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3e1ef72f75eeed4d89cf06aa1f98d4f3792b9fd3cecf83e68ee422cce59243cb", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fc0e76dda471504e78e8b0c81568ed92f76cd42a9be31e8aa946442f356d1d43", + "regex": "." + }, + { + "hash": "b9c87be6d76116efc009d31f8d1f85136c2818dce0d8b1fd9be49a1c69f1070a", + "regex": "(?i)^https?\\:\\/\\/65gffgfg4g4hh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d6a725bcb09befc8d07f44d76984060d7635979477b236ec12f0a90e07da32cb", + "regex": "(?i)^https?\\:\\/\\/rblc213\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b469be2190660de331a07126a341587dd93dd8a54fd14f59695352069cb1d841", + "regex": "(?i)^https?\\:\\/\\/lokumnithyznabreyuzao\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7b258199b294c1cfebe2e36226b9b03ac40a34f0f40ae3d70eda91aba4f2305a", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b860c2712b09db1a4a9339bc755fa3182de87379d79880ed65fa20303c34d8d2", + "regex": "(?i)^https?\\:\\/\\/6ggfgffgg4gh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "80a889dcb82f1594afbdc2be4ebf3e3c29a3e4331fc10334cfee4c09250c7878", + "regex": "(?i)^https?\\:\\/\\/gvdbvbvbvc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "37a0a09cdcb84c0553ff73be17e93ccc309a8e414b841a6e587f6163942f3ba8", + "regex": "(?i)^https?\\:\\/\\/topo20\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f756aed172ccccfcd473893600d08d63e1b6cca122cdfbc08fb071de78c78438", + "regex": "(?i)^https?\\:\\/\\/lokumnithyznabreyuzao\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d4783201cc0f9bbc04262570b60f4206ce99f5b7ecc5a70f0301270d85cdf701", + "regex": "(?i)^https?\\:\\/\\/topo20\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "79e0ae3f64bdf25a24013731eb319712e04dad52516f262b74d89ed049293918", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "79da29904db4ce2696be3058379f2b8ca5ffc7058ae3241304d79a08ef24a735", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6aa90480354fbba5bd76ab20f0779e39b80b0367e8fd22dad02b27038073a7fd", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3dc803949161036f285d6a6a57811647cba6b605d682dbf7896f3309aaf8b849", + "regex": "(?i)^https?\\:\\/\\/6gfgfgfg4gh4h\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "17b64ac70a81b6550f5fe67e3ac4c9a587fd3ade99ace42fa77678a8095a873d", + "regex": "." + }, + { + "hash": "4a7dd8f5b8680cbad337e75a0cf97655be1b7078c66d079caedfeb7de1ad8032", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8c1560ff9b40c8e31d0b15eeefb5148e632e984b8c821d03d227436f400af0b6", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "361e3661cbe27f581a76460fcab98d4172356ef9315da359f8c37ba792d99bc1", + "regex": "." + }, + { + "hash": "5b1294965961c9d2fecfd6563e17009775129f699dcd10101461c0933276cf91", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "641474295dab0ec71dad08cd36d9fdb5ab61d32259354c18f25a01af70b880d3", + "regex": "(?i)^https?\\:\\/\\/6gfgfgfg4gh4h\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0ff7b6b5bd8c897f1bdff178c10793a144d4e3e9a2f4affbfd1e43193f23e609", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgf4gh4h\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ff049696fe42e7cb2256131018c1e1ae962dffc6b5e112807a68e805929c75f3", + "regex": "(?i)^https?\\:\\/\\/6ghghghgh5j5\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e022ca61d44515baa02889c47bfb9947fc0b31642da7756af38c776a32fda657", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "55d8b6a67ccee68dd188c7c79db3dcfa0dad71cb82f4d13bb267b70da3f0da1f", + "regex": "." + }, + { + "hash": "85375095b79d04602e56375be2156cfb2436a6e3d4cea6dae5cb629044d1951e", + "regex": "(?i)^https?\\:\\/\\/7ghghghth5h5j5h\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "213a09e8514ed6b7e8c88c0fbe1f41f5f96238e8b0b25e92d99a86b610e9796c", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9a5fb34e4166c1d48e16fe46686380b06788d59b2a1ac254bdd2455cd94fccc9", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c760a148adaa93eb206cb4b4e7ba60fd0370546968a7eef7b9e925b436bb68a4", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f8d1d4e659454df4e51579a0d4553a923e521596f6f0972dbbfb644282dbc063", + "regex": "(?i)^https?\\:\\/\\/eqahgeqa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5dd26f5b96b37e62c6c19621999fd658e5bf18943200cee3476b15b79af0ec2a", + "regex": "(?i)^https?\\:\\/\\/bafybeicxcabehctrz7m7fv6vuya6hvck3onziquuomohywk56gnxvtkyje\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "1181f234500e791c89c1575f45934e3c8228eb2664d52a09281287bbd6689dd8", + "regex": "." + }, + { + "hash": "7268f8a0a3f99a107acd12b912407ef0471c38be239b5dd30cb5a8a983453565", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgf4gh4h\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c01ebdc4b4c7188a64e66c58cfd7a5ff707d62c6542f7096073212bbd4ea24ea", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgf4gh4h\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c8353c41003d1a801c50c14e5a49236ccd85bbb3a0b01b939401c58058be2275", + "regex": "(?i)^https?\\:\\/\\/bokepkimochi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dbbd606b62f780d2b456b7d5deb70a21ab1ee2ec6e1966ed004909c960de2573", + "regex": "(?i)^https?\\:\\/\\/eahgqaeh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "116ffcfdc09260ac1769c8cc8e246b17bc7a9729b2bccbe9c35ba39e4e4679b3", + "regex": "(?i)^https?\\:\\/\\/eqahgeqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9010d8a569aceaf754bc3b1902417bff4a9274667eba5394f4eb6658c5559917", + "regex": "(?i)^https?\\:\\/\\/7ghghghth5h5j5h\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "dcba0b593de085da61cf676cd493fdd5048fb8678c98d7eb9e2f11bf182acc23", + "regex": "(?i)^https?\\:\\/\\/eqahgeqa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1c5ac68202776982ab00c96afb26a32b8071235c186662226df37d17994835eb", + "regex": "(?i)^https?\\:\\/\\/8fgfgfgr4gh4h54\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0925be1447eff1fbe25b03ec07ba76a150c47b8c67557615abd883a373f1fccc", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0c8bcd03a60dea91b236c88d8e67f5026cc32e70068e580cfff69d600dd4b899", + "regex": "(?i)^https?\\:\\/\\/7ghghghth5h5j5h\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "67a8eef91874148af61e7e88b5c5ccbebc1c0de4d2188252402b62da67f6aee7", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6bb3abf1c57c40f9bb22c85f0d3bb3e9aed53d095f80a27893f13eabe2041255", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b85b6f41d6a4930aa26619d527c1c61965eabe86986aab164b30d802fb18ddcf", + "regex": "(?i)^https?\\:\\/\\/6ggfgffgg4gh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "09a15db4c29eb4b683d67d4c91eef58266030f9911393d9395dc354507f1478c", + "regex": "(?i)^https?\\:\\/\\/hgbeqdahgbedq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "df6873bcaf3c1a467ad15cf01e1c565fc78d0ffa78d2da30186b83d6f79b58f0", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c987c3066e27365ebd82f0118a52ba3194992c37bd9bb92fa038c5b84f36c41e", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4h\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "843470fc5312964470bab823762fba169311e5d9496e9b5e678e22b8e88d81b6", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4h\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c88d95d5cfa08f162d2f63bd6da686f8096d63ab35c730c317eb1e198ac37c07", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2117327cb42a75439d68307b63a555aecf4416eaafd55eb462816e7cebc2b194", + "regex": "(?i)^https?\\:\\/\\/kcoasajxcaustjkacase\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b109663914821bd9c823abb89588806cce749f030d3ae032d49308c7466b046c", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3af52de046d6968f8ffb44a357e6c2dfcbf21bc6e9263c2d425d43ae87353153", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "95c7b0f07d942f9f233bfcb6a6f989860eec5a551548feeee4e0e63423cc81ac", + "regex": "(?i)^https?\\:\\/\\/xacutaravideo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "aa4daf38860d18a5a41d2e4d86ed04beaa58d214b46eab454edaae64689820a6", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fe08ab2633e73480c49013b8a6eba23453fa5ee8368720c17c955b68ee46f644", + "regex": "(?i)^https?\\:\\/\\/eahgqaeh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cc25745f29ce6412eb326700498db5f0c18a1b61d073c0ba19a4295ceb49cc3b", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cce1ed5b6208608c4d11a294a161648c86ab9db84c3c6bda0d2f158f25a31d4d", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b5ee7d728084dc690e9215355ce80dae317a829b575965b69bbaa71cfffc7899", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5e1b0ab22120eb30a69c599bbfe47cf3a914015265b95e920e7b909040c4fd6d", + "regex": "(?i)^https?\\:\\/\\/eahgqaeh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ae822dcff2525565607447944a2e3ebc3663c74221d72144b2bd1fd0f0bfaedc", + "regex": "(?i)^https?\\:\\/\\/7ghghghth5h5j5h\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "01d51fd817c9b5da2c5f388faefe3cc644a2990cca36ce81414f747d3e5aceeb", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "96a25c6aa987b677e0a61a36620366c3cff78deb8c72f7e895202e9793f65e19", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4hg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "89e7506afae79b1e283df67822e685e8600958c03b36fb4cb5b05a8e1994f503", + "regex": "(?i)^https?\\:\\/\\/kcoasajxcaustjkacase\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b90d145c1ca25b7bc275948a465843911cf55b38cd9204fbac793e5ae052e6e3", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "93c09d2d32dbf11611d0f12ecb6a8473bed088086b2371c0df1094547a668b1a", + "regex": "(?i)^https?\\:\\/\\/6ggfgffgg4gh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ba001944295142fdded940b6c28e8df31c3956c6b4b4b533166ee5f5be5bf636", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3adf784027bc92d068fcbf9e4c99c7ff8c8cdca40da6224456c913c6ce7a0807", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0b43237c2007981a4f3068fbbfa55f456a8fea0f3772b686f7b8553c7c53e726", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4gh4hfg4gh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4969b1118498d6e952d5a523c3279dc9608ce5016b4f6d337277cc3fa0580988", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a411424f9246cc6ea8777a47e5407a04adce06b0b69c6e7c312bcde4706d4a44", + "regex": "." + }, + { + "hash": "a4fba0fee44eb565034893944379c6ef58460140da76927457643d412c4c333d", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aad80681877b60b82a474a66118940a932da51279e1eb4177c2534cf9a037129", + "regex": "(?i)^https?\\:\\/\\/oxcsnetsol_zhscr9vrujicehkrfr84fhoq5x1a\\.nnetworksolutions\\.net(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "5272ce592def4d16ce5db68836703aaefa08f0840fe01159ca9b681f86bab320", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4hg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0d0d3f97e8af91e53c14d1dc4ba9e0f4d8f8d571339709595097f127dc515734", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "74e236771afed55e0647b8c1e9dcae253c9c80ee4c6d9db08e28e7c27887ffff", + "regex": "(?i)^https?\\:\\/\\/tfujtguijyh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "16cdd87309265b6080e96e2bbac14c5fd25d7d8982614a52bc6e30bc34f22114", + "regex": "(?i)^https?\\:\\/\\/65gffgfg4g4hh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fee174a2ee382c20b5b03c1ed96d94a6e03a4b7cba1db02ceb9de04b6c9cf33b", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bccdf0dd392b249536d00bef9f886b3d56960af8f71fe1871a6eda1c1870ec37", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4h\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c133a024b8c6c54e7eb051e47a8ee20b4cd7c5f598df96aae738b12cc708fd2d", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cab9474ffd9771637885d48f347eb42a1eeec4382138f529f3e7f03ed393a0d2", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "653bb0baddf9c4e536b61c020da8db9a5572c29f162525b788dc50d338f6e472", + "regex": "." + }, + { + "hash": "9b6849cbb0fa089128b8f124c39a7a25fc521f7c40303c1f9fcb9b6c5567917e", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fbe4d219120194f4eb03c4e483a719797fb8ab654580d8383b4b1df0b8ee783e", + "regex": "(?i)^https?\\:\\/\\/7ghghghth5h5j5h\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f4dd9460bac7dacb5dd1e8af1701f3421b669954ec4012ec76f691972ea35d65", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2347b0a1e5a54f16af85b5989992753923fffee1c47e905805c2866d05ba5cf3", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f2940ee961da743e9b660bd180229fcb0968d77278d449282101f0e7fde78e0a", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4h\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "aea5c4dcb5d9018ab298bc2930abcacc3915868134c0812cb8a4e22d992ed1ec", + "regex": "." + }, + { + "hash": "3d90bdf6b015693ccfee523d26dbead12c768c938d94a62370b104232e0049cc", + "regex": "(?i)^https?\\:\\/\\/eqahgeqa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5a31f5ce0e0545147942bb1e7281e31e7d6f626151ee68850145979dc22cb915", + "regex": "(?i)^https?\\:\\/\\/rblc213\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "26c405110283770f2ab165da25a4e480505e939cdbe08bf9795073ed5637d26f", + "regex": "." + }, + { + "hash": "6cada6649957e7e7aac52c7613bc459c7b5697e6ad74edb2f680c14602b1e267", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgf4gh4h\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "52768b85060c4243b6bc50e6dbdd084aba0178e9f7e15a3759735a90a90e5fed", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bdd0fc794c9d50fcdee4d7c900b41721d8238eebf244ef3aca806c2617c44f89", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "45416ac7c4d6774fe1ee8dc05a679209448c7d9d5782c7a302f02bd585913a1b", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d9d4c50bd9ed3ada29b3b5ff84e29d13251477a8948fd036b6db6c7f89790", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g0dxr0(?:\\?|$)" + }, + { + "hash": "1f4805f30db544919cd3f319903e555dba00fdfbc48b30a35836cbfd529f452b", + "regex": "(?i)^https?\\:\\/\\/gctovgvh\\.com\\%E2\\%88\\%95kzfkuy\\%E2\\%88\\%95tvtim\\%E2\\%88\\%95rbkcyvttra\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=foqujnm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "374bc79d0613834cd29608286f157b3a0c28a51cc000c92a1c9b3b205f75165d", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4gh4hfg4gh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "35f8fbce0765c46ed40190c1eecc22ed6e602f3fdf9ba686376b93d4c03f3600", + "regex": "(?i)^https?\\:\\/\\/7ghghghth5h5j5h\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6c61cfb29df743b93c897fb06d9a2691da318cc347abefe583305b8460fb2e7d", + "regex": "." + }, + { + "hash": "914ddea9eb26539594993218be07d63b557b71a6606ad99c48ff1ba3c85422cb", + "regex": "(?i)^https?\\:\\/\\/6ghghghgh5j5\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4ae8c8e08fe86c3af14c1090c8959653a70d9b41b136a0f7e713fd04878eba1d", + "regex": "(?i)^https?\\:\\/\\/topo20\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f17deea4524e95b32f41df2e49589aa1580fa7b4956afeb9e5e1bf6dbde3bda6", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "79e00e7e77f22d84e3d9865813ac753bddee51245a03325080b084fb074b31af", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0ea19c522228b3049771b89e5f1d1d4729057d5dc71beb76441d9da857f71b8e", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "41bdde1a4355075beb8a3165603dd77dddfc2fda65900e2ffcae1f93a653f034", + "regex": "(?i)^https?\\:\\/\\/6gfgfgfg4gh4h\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cee05ffe7bb811be3d5a6eb5bea958d37f8743f52f99d2f93d3d5d8851ad1f09", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7e4f4c4d37443f18fc4310b9a883f07dbdec81d14dc3e5f0829f7aac1023253a", + "regex": "." + }, + { + "hash": "3238f4cd37413edee053b58985be540441925ff8699807f63d5c4571d6cd4d91", + "regex": "(?i)^https?\\:\\/\\/8fgfgfgr4gh4h54\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3d909826efc5113a44f77a22b74267b26f64b4e4a4a6aee922651e64e7178a45", + "regex": "(?i)^https?\\:\\/\\/6gfgfgfg4gh4h\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "095eafc9b1063fe3193c6bfdb48c7e449ad52463dcaa83892ecbb1359d089447", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cccf43ca454a7beaff451d7f47e936139abc312f4dbeb1268e340b9669e38eb7", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7c5dcdca78d29d356f60b7c918ce33e3092cddc9e5d623452825445ae23cb88", + "regex": "(?i)^https?\\:\\/\\/lokumnithyznabreyuzao\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c9ceafae913a0594141ba791d5a11def500ecfdc73eac450bce7ccb1ec6418f7", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cd2150cb4ebf94af370a83331dd813fd0c42ed0a68fb0dc9a3362c87992dbdf3", + "regex": "." + }, + { + "hash": "f800fced5f866e4c24eb2b886b107fb07b59aff662173052957d8c43db879bb2", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e1f06198bd20d9933bc50f0f1552d26ae14cff0f6e0960ea3fffeeaeaa518f60", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "80ef8c930f3d8ca61232b3f6a707765725ee95ec38b53074731a71174f0060a0", + "regex": "(?i)^https?\\:\\/\\/gvdbvbvbvc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2dabdd2a8694ef9d2c42aac54a6c7896ce7eb4e2a7bfa7833a0bebaeaba53c67", + "regex": "." + }, + { + "hash": "9401b55618b0f63433c4fb1759e1ff2fa74b0dfc7355de139c1f3bd62aa4d9e3", + "regex": "(?i)^https?\\:\\/\\/xacutaravideo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3cec71b594d3e949728c4b13ebd638f275da1fab1407addfce52684c4222651f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home" + }, + { + "hash": "3d0d531363791d0313e8c338dd42cfe78790e2f6e188b92387ff68dac89991eb", + "regex": "(?i)^https?\\:\\/\\/eqahgeqa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7590bfcfc79097ca4e293b0338af41592eed779d36ef097b4fc8ad9519324be2", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "aa0993df5ba407c186e0326972d5c29433ff512d6b9768abc8fd08266f3bd5f0", + "regex": "(?i)^https?\\:\\/\\/6ghghghgh5j5\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0ef1731f22848236d367a87ef95c555f05b05091269cd4c9fecf15fcc5c51486", + "regex": "(?i)^https?\\:\\/\\/image722sasa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "56a5514be077d7ca8bd804756a854fb210a06cb9c290cd7cdc3c6af7c394cd12", + "regex": "(?i)^https?\\:\\/\\/rblc213\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4ddbfadb0a542d10bd2b6e4c88f73efc8e2155ae2555f69eb45ad4783a053fe0", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1f8a7c8e0a5d0af412a5db90592d51dd4fae9f87ff14371047027d6c286fa98b", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "89d03358b95f987c601294f5602f5e2cfdd78eb6d4285b3319f70ba595c88bba", + "regex": "." + }, + { + "hash": "280d0fdfefba7f80e8f9db4299ec17f1cec49d46c1ace13a34949d445d33fed6", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e8cc519838190ad85fb1c50bd8fcde6a6bbbaa51c185547d2028518aa7ab49b0", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "115c309584675d2b5a0460c6496a0f29641ccb051c251a8401cca0bea6d8b6a0", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a435bf5933dabadc0732fdad561c241be023e951928e1d47e86c2fa5c11faa23", + "regex": "(?i)^https?\\:\\/\\/topo20\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f0d44f7f8d033c75e0f6abdb17077a989b5d609384ad1110a1a8f8cee3f798f4", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "547a94a19575c8f80d1060b7625eed87c120c935b20a17aee5031ed2e9af3627", + "regex": "." + }, + { + "hash": "f3c610458da25230eb4a8af44994dc00fc33f2aafbbc7cca0158a916f22db2ac", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "acc85f20139d1eee59aa12e306166d3265abb27bf5587ba35450eb9037c79769", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "96479a3fc62659a3c9b3dc4f7e65dc3bc940e9509ac892e9cde521021756bbd6", + "regex": "(?i)^https?\\:\\/\\/eahgqaeh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "517d21fa339fd768e9b3d9815efc9a9fb0aa8f61354b1f81beddb59d2c1ae464", + "regex": "(?i)^https?\\:\\/\\/image722sasa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "49f0404e6879c94a08d45d93803b833da6aca5ecce59172f173325181887dfbf", + "regex": "(?i)^https?\\:\\/\\/7ghghghth5h5j5h\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0308a2be9ffe0dee8c4372d62623796c345457ab125c3eb0cbedb3bdfdfd1ada", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "06a0367667c4e5680f7ff4bd93f8625c6e77cdf729b742d8529436ee524acaae", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "296469d15fcd94c93afec050df286f628276a6c1c557484929c26dfd496c734f", + "regex": "(?i)^https?\\:\\/\\/8fgfgfgr4gh4h54\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2c08dc55f77d7bafe3c7d0abbfb36fb499f06483963ea3860fe1b0cceb936bb1", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d04460fe99738800243d03ea4dade9baeb1f9c03231d8c36f4f505f0a81fe087", + "regex": "(?i)^https?\\:\\/\\/eahgqaeh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f93b0be356d4013b7bbc4e5495534004f1f1a3370b5ae35bc8722c56640d760e", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fd2d9a15d18fe2ea7eeb5c1f5fc7b36ee3b1ff185f9b6293e374ca43e0e631a8", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "19eec6af69691b6c4d7597762367c2b44ce002b3de11861b7f9405ac555d63d4", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0fb50e22b49eea517d626f732a1b9378bdc60808f4069ede63edaf832119b338", + "regex": "." + }, + { + "hash": "26b2abba202a5df50718da2124648f799813a70b3d2e6a1cd3873b200c49b846", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8c1bed119d8f6b74f684250e92d204fdba9547f49fef19abed8e92e19143209c", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0c52fde9a0e0ecd1ef94f5c646a560dd071674a740cb41e22f2bff937def5b7", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "05d26c75ba2c16d44cb78f2953ad9c88b5eb4003e60e990b2dde620f7b356c46", + "regex": "(?i)^https?\\:\\/\\/lokumnithyznabreyuzao\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3265b0700bbb1ccbe015db22cfd68bf0e49f5354e95c6e8ccc8d02f8d2ce5f46", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ec51688e971e2755725410ae0add2663dd07e8ff3cb75851597e1c11a8e3dcde", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3c3af4debfa73a1f2ece3306eb6004e9f0801bdf845b1584ebe37cbb0516ec6", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "97669c24856b71b00d1bde2f1058534320a8f9c0bfe2eb45cc4e5679c0745c6b", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ef9e21a0fb528c0a61c13d0453682be2da4a7e666f4d7740159c499595bb7653", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ec8f5a50655de3ccd467e9fc1a299654abde95e03260b24c999aaadf945997ec", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1f9e26d7e6c6bcec8c215b97e4b7732db2c4f335ad2d1bd5782d10ad6d1b3574", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f909f9c641a31df786bd305093f425a60ad7b6130b484f5b030c5a0cfcfbadc6", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3c8f8dbe0ab7df563b8412bb61ec4567085009a7868b8a998ea28301a0d5bb42", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a6c380dd9051f5f708c4c9f3bde07061d1fc34abcdca60fda4d02a666853cab1", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6f5080a1fa40a6219e583543de9a2939149ec584678981a963974dc97e8b1e74", + "regex": "(?i)^https?\\:\\/\\/rblc213\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b9fe185b83ff9eb39770a7dd7c4086d83390b059f4cfc7d8c050cd2a3c7419ff", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "efce5bb1b03443aa67611a58eb7036ea8514c47631ee15e604fccf8fe2b3515c", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cb95dc21010873a6b49813312a34fd3bf49c5e738d5029a5588716e1582703ed", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7823545904beab153cfe6e507627870c11afac059af7a6304a494073ec28b1b9", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b347ca0a94102a0983f156f2b7fb74123b0817d72ed615d85f20e9dc136e2039", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ff351e9f707514aea8202a7f8bbebcf81e89a380550893cfd37027232bb3b6d", + "regex": "." + }, + { + "hash": "9745c68d3f17768f0eb691f586a07764aeeb0d41bf8e025c3135caeb1fd28a5a", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ed4bf0585b98d124950d24168702b64a54176f50b1a21fe5495717fb6565b659", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pwu7ks(?:\\?|$)" + }, + { + "hash": "3bb1476ea1390ed49f4a5a85019eef3568e0d2316a16b447682fe66479a8651f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\%3DY29tbWVuozOTcwOTUwNTM2N(?:\\?|$)" + }, + { + "hash": "b6cc01cfee68e4b47db0b4244a4134d1e1a8254f38bbf03294202fbf0eaa2b79", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "300ba0baff2f2bf52772433fdeef3bf5da4184c3650655f412a0484103c56d9a", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4f56478f395d9b55290de98c4b9f0c54ac9fa69f924f56b35b4dc61ef64cdc00", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6a727e20cec200519f0a52b5add400c11e9efa7a87f7c2fcf93724ca11a3437d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sp[\\/\\\\]+pin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a3ca3af02bceeca49d81ac2d0fed3805abd26e146ef29b0657a475212e793c3", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "699803c173ac49e8fb1776425d9e29bf26dde52f8433a2d5185e5c7c45bfde85", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0608625fa7631b2fc2dc610682c5443c5649373c8c8dbf08b0645d04ef6dee6b", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbr7kh(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88943db6100c6af46facef37618549d664e3548ec2b5daf388ecf5680e3173b6", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c01032a59220a8aa8e70c18cdb8b43c4452085f2ce5531f5cf50ad67ea166f6d", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ea3393d7e1ca3383d7bba308fa17b082a4b46e3981a92caeb764c3055684871c", + "regex": "(?i)^https?\\:\\/\\/65gffgfg4g4hh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b0ee640629363ad790c28d200e5c9ff016fdf7ed72ce4d80bb16ba6bb0eec98c", + "regex": "." + }, + { + "hash": "a44592fa9a8528f15c2474abb0adb577d66f05b4373a64639fb0ea3bbb79ba78", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "838647f91818ef0449213479b87b9d1903a642c2a522c185bfb1aef705dd1c94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+comitment\\&id\\=Y29tbWVudDozOTc(?:\\?|$)" + }, + { + "hash": "3c2ac4fd8d12c1a7de9212c71df48b3ae1d46c1137aa873d387e22bde7863d5d", + "regex": "(?i)^https?\\:\\/\\/eahgqaeh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cad7acf36081357e51b658f776c1fde70758adcf27c18ceea3ff7d0021b4d63e", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c216bff9abf08ffbabcf768f1b8dc6594a493907d636f851ba3d101e16910cf3", + "regex": "(?i)^https?\\:\\/\\/bokepkimochi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "de8e0027b00905571e4b30ad20bab453a82c34038b4d9f550a7d666c179db958", + "regex": "(?i)^https?\\:\\/\\/6gfgfgfg4gh4h\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "726808d2c90e84fbbe11059f1cb79ea74de843fc04ba3fe0be41c34d7f2f3edc", + "regex": "(?i)^https?\\:\\/\\/rblc213\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "95fcc2d23fcae0f4f1dcecf7f4d2929152968046be9c2047945d08974b6c97fb", + "regex": "(?i)^https?\\:\\/\\/kcoasajxcaustjkacase\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "55d700d2b8b2af07def3f23c7ab93686167e8af501bf64bc3cde80f2dbe82a48", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d8a07d140aca862db946f4c68042ebb66a0b9fa3b3ae9c0be6976a7bcd327549", + "regex": "." + }, + { + "hash": "d805a8de342230015381ba6630c34229ac33e880116303213db7be1bac207e06", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a22588094e11409a0eb3ccf67efcceb4878df55bc4c75dcea3916744e6ba8393", + "regex": "(?i)^https?\\:\\/\\/image722sasa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c08ffa679807b5e5045fe97d59f86e04df11651ab43a269fbe92adbe12939cba", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4h\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "07b1dc8a06a435fbcb6fa10691ee906a5fdd213056599b87fe4c7663a03f2cd4", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "77895f2e67d851f73bdcacd0f566a5b6097484e5627b93db068303ed2424f5b4", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fd143e2cedc44c1b407715d0a61125d0e28cef48c24bed524f5aafce6a814a32", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "804cad67433fdf840edca190cbbf79d647d098514cb8256ab5d69a6fc4f8e722", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2c2188ecc913fdaf92f34ef41f58e188a7d3bdaedb43ba4dcf0a8df115a9c58b", + "regex": "(?i)^https?\\:\\/\\/eahgqaeh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "22e27677391c10e0cacea02ea37f27d0d2625325a8d5ce956f1917215fad6cc0", + "regex": "(?i)^https?\\:\\/\\/hgbeqdahgbedq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "12d6dce4bc80e7dd612a808a23438be4de616cfdb1eb48c929d7ec3199224a0f", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a1cfa1591e395b02dcb90e752af4c5882b73150970816d35eb842cf872107c5f", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5f68c1a66fd0aa96c3a692e23c2f8a0a80631f5f4e5608a9917318f70408efa2", + "regex": "(?i)^https?\\:\\/\\/kcoasajxcaustjkacase\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c22d5612973771b61f39619570d45ea6f4a23393da47f1dd26eb39459ea9330f", + "regex": "(?i)^https?\\:\\/\\/hgbeqdahgbedq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cfe225b55382a26e09e4c95f5ad95fc0b56a52bc49cc684783477ae0a06a1be1", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "434afa458a61f6a7100483f07c3f168e525f79258f9e35da9c3958257847aedf", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "71ab776a288fc069c92c190a4f0ddd8b319d820337f098daa03a007903965c73", + "regex": "(?i)^https?\\:\\/\\/kcoasajxcaustjkacase\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "03f20591b6bb445fb95a59596e97f18bfddcb54c6d14f0800f29ff8b2930268e", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "524333531006b873599053f1a2c14ab7a42ccdceacc33444c257ce75e1d24863", + "regex": "." + }, + { + "hash": "ca8cea22e2c6c8fa59f957e4421bd33284dcd9a78b54f40d93d4f94f0e74e320", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+es8(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5c31376d0e6358796f8bde71bf611842b780d6acea95ff2cb8174961aaf32d40", + "regex": "." + }, + { + "hash": "fbcbe8b86ba0e0d7053d06d810181803fca779ad87c8dba64ae4f5eafacfb4bf", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b6498db31a8550faf3a21b60088f648e440890e067e1dbe0b6b3d9cca2020dfa", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2c5a86cc662d15a6022117d55e6b8261683dced294d59b84e5f47c9ae380fd1b", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4h\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1069f0ac65d7d240333adb1045224aca2f21c6a6a264ea9127772d7ea56a1cc5", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0e867aaa3b1607db98d85176e18581f421ea61dab04663f7d0749ffe8f4ccac3", + "regex": "(?i)^https?\\:\\/\\/topo20\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cd1e9d7310bb2a955f911fda73e603d6cce61107b4ac621717bfdfc9175d1feb", + "regex": "(?i)^https?\\:\\/\\/skroshan6020\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3475320684e48bffac06edbff395e40b0fcaa41940b9d74c9df24715ad664735", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "be325ba3c47df63afa233ea027aebb8458a495bee8c8b96c9d4841e2c175f1ad", + "regex": "(?i)^https?\\:\\/\\/topo20\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "844fe200c0f40dfe9dab5698701d301b13b96f77e183f47da1fa2940e0264352", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6ad5dcdce047cf99afbf7361210f7c91baf0969c2fcc85b47e8b42d790cbcfad", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bbd4d497adaa225b7976b6c9f8e9d29032b4a6a82d91f610be89c4fb47bb5b9e", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6ea2f0b585d83119ae478bd8857cf22a3bb7c7be72198160cd36281545ecc9bb", + "regex": "(?i)^https?\\:\\/\\/gvdbvbvbvc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5b545e37259a3f4a5dc253be1ef8f0686ea833c6ef4066a2ca78ed577497dc6e", + "regex": "(?i)^https?\\:\\/\\/xacutaravideo\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c210fa2ef1bba378ca61bb49b0e424f1c8b566e6f1719683c348468544de2128", + "regex": "." + }, + { + "hash": "dc5771f51b5497296dab7edb441e5cb9a38fcc1a482aae4ef4a6e1d1a740ca2c", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "13ecc9414e4f8c2b35c44ad968f4045bad3081db3fc621e30bfa8eef860abe84", + "regex": "(?i)^https?\\:\\/\\/gvdbvbvbvc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d0505fcfbbeedae8e30c43322128cf984cfca24bfacffe56cb191d66d7076f6d", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bdd59dea181a0e7ab96d22bfad8edd025b9e09dc46bb563a152f7a138171130d", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d7fffb36fa3aaba0e722605f4f6d2b630d9f2dd29a0efa30a79c67a11f1f8456", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e600cd8f5bcd01d3f21eff9e647f5c1ccd3a8eef464a9aad5ebfe33f35ac5f8d", + "regex": "(?i)^https?\\:\\/\\/6gfgfgfg4gh4h\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8f7059b2cd90e0f658aaa9943c6dd241fb9e01c69e71b336d675e130264ffbc4", + "regex": "(?i)^https?\\:\\/\\/6gfgfgfg4gh4h\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "66eee3059ecc988be3cc2410c64b99b5499182470c23ed22443e6309944864b5", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3553f756e19d823ad534db8c9a963fc4380cc405b8fb9823a723b9332506ee19", + "regex": "(?i)^https?\\:\\/\\/topo20\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "228e4b9cf98dc0bbcc727e2d0ed734ebe095b20a2ad10fa1c1a82ef06cae5589", + "regex": "." + }, + { + "hash": "1547938f09094ca0bd6d7e1fcb67ad5b788839652e17f80c48a0c3e18a2f6fdf", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "495277a8c1ab38cbdde84ffe0e84704f60b56c43a60f2c46de82155ffd9ac66c", + "regex": "(?i)^https?\\:\\/\\/hgbeqdahgbedq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "272856ee2e90fd1443e7e39503b5ec1afde8e0ed42189c51bf209468105c67e9", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6f93f9d9c2262ef6675ca81873a148df466b207bc29b1fa2aaa90e99d295b2c5", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a061ab771fe3ce145c5362d52047734fa89ff0c4d9d17a1a5eb0285f1039cf58", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f27cb269ccaec6d56622110f56516bea55e237d1ce598bbc322d6e8e6c8cc7b", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "11e5f73176f33de2394e433490fb527b5bd8fa5aa289f614e77acf22cc5aace1", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b23b8d17c0d902de3121fbece37e68aeee9c0c8e6f7adc673fd2e63322506e56", + "regex": "(?i)^https?\\:\\/\\/8fgfgfgr4gh4h54\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b164c1b0463ecf16c853d57d389029414abff1c6ba77d5592a431dd532afef93", + "regex": "(?i)^https?\\:\\/\\/6ggfgffgg4gh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "273e8236ef07e7f514a1e96d710ab50c57209a7c7a43f23260766bb4317d51e8", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8cd51c4b46ed18bc5ea4766085080e12757582d5fe6d012bf683f0be5c9c2bde", + "regex": "." + }, + { + "hash": "9c57b1e13db6222da1b3437cade416412c759c45300df5e4d53fc797c8fc32c6", + "regex": "(?i)^https?\\:\\/\\/6ggfgffgg4gh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f6d5950a7da56027f847dda6ce864c96f2776238ddaeceb680b96f6547c8df06", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "05d04318375cc7082d1886e160a1a127d7c3dfd86fe2be02e8587079fb9971a9", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b44f86754c67771e737f3a11212149268b3817a94e4ef8c0c711aa339ad243b4", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "95b4f0b868342243af1197d42620cfb5da55076b21b11c125424bfe1c3840a9c", + "regex": "(?i)^https?\\:\\/\\/topo20\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a13c7d551117bbe4365f0e22ae6a27dafde57a3261928e12bfac6a88812df2b9", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8ee1cdc4be11c4c389e58d9fd09caa3d10bda050c77c7810cf08c626967cf259", + "regex": "(?i)^https?\\:\\/\\/8fgfgfgr4gh4h54\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c68f31e555025c14bec129a3f9f0620fbe0746d1f7a0d8e9e2a2155aa739d1bb", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7a4dbfddeb48436a7765a7c50f0c58dabc342b525a397ddb2871377b177732b8", + "regex": "(?i)^https?\\:\\/\\/kcoasajxcaustjkacase\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "926a1eb8986aa60e27691bcc9cd51d76251ab73235a159f96adfa2157a26fa20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "304c12a50ae43b8068613680bd4dfbf8afe09a4f1f6e9f31d0db94b0ceedbe62", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "80dd8e182ee3334c674ef8612ff107696e334f372f749b1f466f2d5cdc27820b", + "regex": "." + }, + { + "hash": "633f30ee365a6520fc11ba53d34da38b4c9aaed779e9099eaa4200e8e4e8d292", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "354f2c92f070b60440a0bb204cfcf77fb9c22587cff5f538a5c080d85645eb2e", + "regex": "(?i)^https?\\:\\/\\/robloxpetsimulatorgiantcatcode\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5997e1b4f2598cc3120a4d6eb3fb50d45c36750daaee32329520bd0f3c77e0df", + "regex": "(?i)^https?\\:\\/\\/image722sasa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c9bde602e7aa8627ee935c9705a230442b27d8577e64c9f2daa1b0d213f5ee13", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4gh4hfg4gh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "897d5bf836ae46b6e7a42a040307ed8d41fa2543828dfcf7f0634fcd4d248d9f", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1cdd89629329129977c60ba3e0f31d1c7678464bbc4301c4a961939e0d8761d5", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e7d7dd7367bc524a966d403133583f1526dc1ab25d364847e53dd0a53c58bdfc", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5b07bb7ee22511e42e0f351eafc609ba482dc5ca9f2f6d3663c1faa7d3198165", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "727b6a6051e97df82aecde57928540f9a0999bc91daaa0f35525c4d7d06a5020", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0c44e033dabc102ee047a85e32a050b0fbd3fbafda9b1af339c749edbbb82a89", + "regex": "(?i)^https?\\:\\/\\/6gfgfgfg4gh4h\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0c7cb43253360cac4b52608163cb6183ba1f6f765b1bb2ba628a6c60f64a23a6", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1913f33a6f4995885e311ff4405454bea72a0404f95ab1434d4b45acd030c1d5", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6ae42ee39719d5f61b185e5d1300e2d7945d2faf7b324eb1058ffc9e9df6cc4f", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3201c33ff6cbf67a8646354f5e96b0eebd4eb75fd43b7b8655b8ba25c49373d8", + "regex": "(?i)^https?\\:\\/\\/xacutaravideo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "601e068f6b3bd043ea93d732bc349df53a6fdf76d460bad123bb6b7fc9b37fa5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cod[\\/\\\\]+scc\\.php(?:\\?|$)" + }, + { + "hash": "81e1b5c18de989ef3144eb26275668d5c74bba8b6e549da11fcf875674d926b6", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e4cb5711d565c71f3a9628ce1386b1c529847150089d855f4fa5b8ccf0ddf29a", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgf4gh4h\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "42aec46c3f646ae80c09201be7e9287f5f2a51017766fa061242e4b74c9a137e", + "regex": "(?i)^https?\\:\\/\\/eahgqaeh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8fed65268089757e4510a8ae534507b56266f77baf2a18f10fe0a162ac028819", + "regex": "." + }, + { + "hash": "cc7774fca8537827fe80a8207e8c480cb6da2078690e29d221c4606ed2c568b7", + "regex": "(?i)^https?\\:\\/\\/hgbeqdahgbedq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "821460e6b0a3f16b2ed6f61fa57f4cacc60683ea2fb8f99401f12fad778cb479", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgf4gh4h\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4a7fa7a0abfe554c800e14f76794fc5fe2476c1e358578d2f2e2ef499df51d4f", + "regex": "(?i)^https?\\:\\/\\/bokepkimochi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "96ce62bdbac693cc2b8ebfcd0ae56422329daa31c9f492d77d8f4192edc4ae81", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "69b1ccea6e9962a8440df197a066f48dc70c6f6e3b8e6036729e17299f48952d", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5977015cc6b99e62b8f482daf13e37d964587386201bb7b3ee6ec34fa79d9d6f", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "78c7f46c2ee1ee33f158d8078a47c50ea533cb77617b569d08cf6c343f442e2b", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "adfd07bd8f718c7d4aa3b1942a33dd52ed220c64c97c685419d89e99193c16a4", + "regex": "(?i)^https?\\:\\/\\/tfujtguijyh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2b46a7bf609c0cacfe468a987b74f552abe007d383cded1a54230a39d8d06253", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "57f00cc21e57630ae2f032700f7d38d329b2fd14baa0c322c5d575c238d01696", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "92f6deb110a548882341a22d76857f5b34bb200315b9678d9b73c690e96d7b5d", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4h\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8e2b8959b097e0e7401c7bf283f437cd104586cc2474fe108733c2bc17b3c013", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "53bf9879a762fc0eabd1390a7a2b6aa3eededd9462e1cc728cd5bebe34117af1", + "regex": "(?i)^https?\\:\\/\\/6ghghghgh5j5\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7c5ab222c1cc36c9dfe6aa60fbc1193098a2cde11bac10141fe9fd0b17051803", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4hg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "446f43d8de206ec1d4fff799569c9d0941816e9cbf9a3d45cef5c510194bc044", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0e866b8f84c7cfc1ce39434734174581eed030c070f72e3d9d3b0690338eb47f", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e0a20e58697bd5ebe529631eb91587e85e4623841e3c043c586979b8acc931da", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4bcbd47c44cfd3b755329f2c4a79b7f8d9ce2e88ad62dd0dc6af16860e9d9b8f", + "regex": "." + }, + { + "hash": "d7518230e7f1bb0d1cfd3e3fb8bed635d6a6c3d4a10516678f6f85e9672ae774", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nn\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "944c9427e47436715be309c085691c0801fbfe2c58a9a783da6c615b064be1c6", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d1eb35a6b1aaf6a2c1df74d64216bc4bfe2ecf5164397555ed791a40e7911f4d", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fb669ea676815f1309f7cf61807e96c008e84236e7c84b7a65ebf8c71be6132f", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "416107375b7b5eb02f95e4280b7ff14f5323d75e5b8e11deea63e98438fcb1d3", + "regex": "(?i)^https?\\:\\/\\/image722sasa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6c0e3bb791d85d98443e962997e3cdf765aa4fa341c3318dbc2ce431652b7cd3", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a6a356309b7205b1338022ae435b4a2f4a2ef639b60dd34122f2bbbd93a6af83", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bf846f83c62f26793a993efa8f7b9c35c96fa889640105cfdf519578b1bac753", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4d6c6dc644c276c542a9a00290561f602e16d8d0feb6ef473eb07a32fe5ce966", + "regex": "(?i)^https?\\:\\/\\/hgbeqdahgbedq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "095840130d55f2a155b07afcbeb607be4d769af4a6ba354003d6eeabed4c8c70", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b0c22a741b8f85bf6f1699b2a724848c9118822f3212c8a73a71552a0e6ee988", + "regex": "(?i)^https?\\:\\/\\/lokumnithyznabreyuzao\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fb2a14b53b2aa690353b836b7ca26031e75603e5b0003cc24fe499927d14b09a", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1754c1d5b0430b9deec81c8d3e47e72866ae823c3355759e3edf32bca2c85d88", + "regex": "(?i)^https?\\:\\/\\/8fgfgfgr4gh4h54\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7e51b700d8e1f385b187b9f24240d835ce5f69cc272808d869c999252769795d", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "326f0478ddb0985d783962e7ddc9a18f4527cab9075ddf263bb3ac258fdb4fa0", + "regex": "(?i)^https?\\:\\/\\/casinmetropollgirisler\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "545a6a96a62bce6bdd3912557ae8806714a22fdb48279eb384b11e73385c7a40", + "regex": "." + }, + { + "hash": "a96553434a2657cb3ea93174e6bf701ca0b960c1a6ead12d6b6457484dd1ec6b", + "regex": "(?i)^https?\\:\\/\\/6ggfgffgg4gh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5dd0f8e9f65c92f6a768cd152b88ed15c9c6697f9d6f73d921010383194f727c", + "regex": "(?i)^https?\\:\\/\\/gvdbvbvbvc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d614b9fa69349f4c72782e2596e572a21ba3af7ea46de3252f64c7e73723bfad", + "regex": "(?i)^https?\\:\\/\\/6ghghghgh5j5\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d0992568b0630a35d19e76bc89c29604a32f2e72736e86ee7421b59e70c0b617", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3c587438bf64b893161d38f27213bb4097e89f240fba771f6f90083ab5996c1a", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "93c1c0f21152f329e3dfb348eb3e688d10da425d6abc3936fd128ac37d338488", + "regex": "." + }, + { + "hash": "35675a594792673eacb0a5882e82468d55c45d408764c27ae9776dd23507553f", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "58ae41d728c311930023f28aa4681d212e2753b070bdec87b194eb13930a0ede", + "regex": "(?i)^https?\\:\\/\\/eahgqaeh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8c5d727da0fd2ed1f989c98c84de9a479cbe8883dcb7ceed0589f28eeddb06c5", + "regex": "(?i)^https?\\:\\/\\/rblc213\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ec509fb435a590044256e85dd4a509e6140c9a991e912a6db6ce17462b1545fb", + "regex": "(?i)^https?\\:\\/\\/lokumnithyznabreyuzao\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8750f205edaec92e7721e77fe6ed3fddd2f02fd06f06e9177b8f4b233df0de7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "2444026c91c31a893b614cf00b18e1d939eb74b21fb64d370de3fc82f8f90d36", + "regex": "(?i)^https?\\:\\/\\/6ghghghgh5j5\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "54611f4caa10ca0fe44b6d014546e605fdd9d7af34e426903f1519f9b5fb6b5e", + "regex": "(?i)^https?\\:\\/\\/rblc213\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8e226f5c8df1340abe026b9e45b216829967eb907bd2857f9c56686da1f24985", + "regex": "." + }, + { + "hash": "73b2315620ccfeab737366918123f3558a42ce3e89d969329300acb2afe6d287", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+j1sroi(?:\\?|$)" + }, + { + "hash": "b0240d10afd309c2501122ae3a6ee0dde92b676f7eeee1b4c7bfc1816ccaa04d", + "regex": "." + }, + { + "hash": "1fcd60cee3ef7c9064c1aba4b9a446f0fd05c6057de7662ffa7420e8bb6ceff5", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "40eb4981219114f154faf86fdf518e09dd4e729f660b708bf271d6f7ed9db303", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "139b889b31270821b2e47fc919c8550528ce5ce5ad3dbf7bb183b4b55b2b6d98", + "regex": "(?i)^https?\\:\\/\\/hgbeqdahgbedq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "950cf1364e1551c3fc12a8496d76b98723e1d550983cf10c0839a401b8ae186d", + "regex": "(?i)^https?\\:\\/\\/qaerghbqaehgb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "64174023425457ac7a46c7fe628238ec0651cbbc98e28863fa3047c85b3e497c", + "regex": "." + }, + { + "hash": "740970b28980f7af1c40eb2140fec16b761e27767a7e92bc23e5465f436d710f", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "00ae02a9d3a49c81e0c446da29c46af2788b6edd77f1203b3aec30211629a7d6", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgg4gh4fg4\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1bb9a1c35e81e814a3d0874051563613c7404ed841a21a9cd7f8cbe1f6d2c192", + "regex": "(?i)^https?\\:\\/\\/kcoasajxcaustjkacase\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a7482569a2461c875f17fecd33140c3dca9f4d18a6ebc0b696d58888055bc", + "regex": "." + }, + { + "hash": "a729ee6d2f058175da4fccd390c1027607342101ef678e82911da09d73c5bd57", + "regex": "(?i)^https?\\:\\/\\/lokumnithyznabreyuzao\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1b7b1baa08f5f1833daca6fc95e15e9b2763a025dfb9628c5862048ac486627d", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e086d94779f0bae0158664fb2937cfd40549b262c6bccb070ba63919cc47ea2f", + "regex": "(?i)^https?\\:\\/\\/8fgfgfgr4gh4h54\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c797e58a490581b71bec60c479515c9f85b75e328c57de086695c989fd0661f6", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "59a1ea9a82fc17e284546fdad5105590d824b37ad761805fc79b29761324637d", + "regex": "(?i)^https?\\:\\/\\/thailand0238428934234\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3bb1476ea1390ed49f4a5a85019eef3568e0d2316a16b447682fe66479a8651f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\%3DY29tbWVuozOTcwOTUwNTM2N\\.html(?:\\?|$)" + }, + { + "hash": "ae3c4fbc137614c9f0d581405de6d57635788fb1a409639417a07d3e8273e23f", + "regex": "(?i)^https?\\:\\/\\/gvdbvbvbvc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2424754dc14319249bcea315a62c7f00d4a4c8513c3bfa05d67863825a3791f9", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3081cf37baa50395cb28441834762054ed4a0b6daca910bd20339ae98baed9e5", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "22c2d88d3dad8135d17f757e622a4ddb78368e3f268e6107c682267e1f09371a", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9fed56a8419678a4ab0b58b3750b64bfad3847c2111a1ca7edf4560fc1834b3c", + "regex": "(?i)^https?\\:\\/\\/image722sasa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6d016d0a042fa3b28ddbe0299c347ef048046b35b48431383415626a493e7707", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bd072192826e86d08f2511fa8b0177ac6df577befac7332b92ff9f7fefec25ea", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fc82a695b9ca660e9dbe8dba14891aac3e5c3b6a9fa0ba96cffab3e8eddb12ea", + "regex": "." + }, + { + "hash": "0d5b89488c5f80f3b6b1092b0286cfad8f3b859f0d7053bd9c6f14e01e6e6591", + "regex": "." + }, + { + "hash": "7eca671a1a3b00374ecf0cc294851b7ba698b302427523ba46178d2a960d970b", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4hg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1804292e3d4f928cd62d3d1712d392d63167f3bfb9f7f06f70a03d464c31061f", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "83568fa396139920391ed95c0fb216dd36a9e11ec539f03c107ae8a6daef795f", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e72bea58a3945901577604c79b8bde84a7bfe50bf3d23703094799446f597e37", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "36c275e8551c5a80637ccce950c369d411e5de0c0eb06e24c6c0cac194dd70f7", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgrg4gh4h\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "33ef667d25f5be8caa684c43c5f71928dec404a3b5bbd74612047f24cbdc94d9", + "regex": "(?i)^https?\\:\\/\\/6ggfgffgg4gh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3866ca0202200344c0697911e73809e0ec40aa36331bc8d970e105917996d665", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "912791a233b0c4d84b04a4813e81f27b5c3b79b5e24f23431d3f355fbc79aff7", + "regex": "(?i)^https?\\:\\/\\/6fgffgfg4gh4hfg4\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6286382ad3995a04e0d54183cf6704203c41d74ef7a8ece40788c66edbb2acf2", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b6c16e83af700dcfd19fc15f8d28d7b122a18f8b7379d42cc035ce0703196f41", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "10d60d35cf3b14c4db60b5cdc7ed0605164a30d986790d51582dcddc957b734c", + "regex": "(?i)^https?\\:\\/\\/image722sasa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "619579209075da77d505476cfa6c9336531cf1394664ecbfff8c578b0bbab984", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7259d27d58ebef69c6b64d73f6d9e2094400aa12ed6d2d57b34d2b6f93ef67a6", + "regex": "(?i)^https?\\:\\/\\/eqahgeqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6c397d6d4907f98bce6aaa0fbb3cd8d299b5133a2dfd01764bd7837c2b4494de", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0a7e1de30760a336ad17a3dd734f869796a406dbd589f657665fab36b0a2ce93", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "17db41399d54314bf8a1984a8794605d80bd18fe9b54fb687189a881ad5c9838", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c8c34419dafe3fa8a21c0d267bb48403cad60d25a1c633b1305062d874948123", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c58cc2b76063b03a01ce7225c66c699d113025404d06b6431eb6871661d53ddf", + "regex": "(?i)^https?\\:\\/\\/freepalestine658\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cf66644c003c0789e440bbdcff56819618b7d702d8a40617fe737d072901c22c", + "regex": "(?i)^https?\\:\\/\\/bokepkimochi\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1bf04a249f356c4302f3990b895b0f873f413fcce2f6e5278a7cf2c2229216f3", + "regex": "." + }, + { + "hash": "95b49729dc92df1977f334f308761098d8a7cf2766751120172d488528b0d278", + "regex": "(?i)^https?\\:\\/\\/gvdbvbvbvc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "76dcd9f3541a5978efa38cfe4ef5dc37178601b04617308b6f840d6e91f99b41", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4fbfc4ba8f5284f9e361d1d3a4f9596f3b73276ed0c5a93e82f1724ff751a3a1", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgf4gh4h\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "03debb9fbb8ef4f9f624d0230992c76301f63c71d9b7727c0f0deda00963a0ba", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d7518230e7f1bb0d1cfd3e3fb8bed635d6a6c3d4a10516678f6f85e9672ae774", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a0caa78c5856df9ee4ed3f7ed2412df8c9a25f607dd56cb5f1e071f516cb6c9", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4hg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f921d3bb19974599ae235ff7e8c39d11f95e8092386cc3277adc917353e05ca7", + "regex": "(?i)^https?\\:\\/\\/6gghfgfgfgfgfg4gh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6169ce76c691e93862f3d84ec2aaac24aa98ffa6be2d261286abf53c6ca44d39", + "regex": "." + }, + { + "hash": "0e12947680f1605c16b6c24dd00a531dcfc8c7279a1fcc3fa150cc5547d10bea", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfg4h4h\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6a727e20cec200519f0a52b5add400c11e9efa7a87f7c2fcf93724ca11a3437d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+spinne[\\/\\\\]+pin(?:\\?|$)" + }, + { + "hash": "6d16d5207dd586b5c59d79938077f9231001b88c3bfa47230a500948d966d85b", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e227805043f01871fb99c99b76ae8d8a859ede899f42a05e37965a5195dfd61b", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8a36552e5d54e3fabf376e2698c01d419dc99e6d835da73db1c957e7a2338c69", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "29480fb9b89528a142e411fe934d43640c49f865dc49fe4286880cfa9eff37e2", + "regex": "(?i)^https?\\:\\/\\/rblc213\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2fcc7d8e02cdd3e25a73daac2ab156cd1dee63ff97b18b258961e7939bdf40cc", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6980b14742b360bf52582bb82c324219f7fd9b93f64080d48c021d04fc37da96", + "regex": "(?i)^https?\\:\\/\\/6fgfgfgfgfg4gh4g4g\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "081d5950a2fbdfdbcac8c8208742cd7ab6ff1268b2fa1e471ea6c85bf3d80c73", + "regex": "(?i)^https?\\:\\/\\/tuoklinabreyuzahgredaca\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8e08b856e53bed8d611e8708645c37e11269cfa96a7b72958746bfeef6abc03a", + "regex": "(?i)^https?\\:\\/\\/6ggfgffgg4gh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4596df7a6c074d9cf0a43d87c65fb22b911dca0a57def8b724ea1cee9b19c255", + "regex": "(?i)^https?\\:\\/\\/bokepkimochi\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a142079bac5ee35bfdf2c7c039ac359b485783a0be528f4090ab0378be941e5e", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7b38485cd6b6393c56dd37d625282872eb2b8547d8f09957aa1fb2925e5cd46f", + "regex": "(?i)^https?\\:\\/\\/tfujtguijyh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4dd8b47875d0f6a271dcad5c3b657fbf25d529c2d9ee8f971682b372b3a23e80", + "regex": "(?i)^https?\\:\\/\\/cvp\\-v2\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "12a61b7a9531ffbf733dc1bff0e1bd74fece1aae6fd29ea0851505fb26bf11ba", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "39d257bbcd539cae1740813edafd4a562f083530aa2bf05d14787ecc83df70c5", + "regex": "(?i)^https?\\:\\/\\/loutimnthgbreuozaka\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "151be7ddf7988a96672a023bc7ddc927be36664ee3f557fd00d6708c4475ffa5", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6819f6f7c8485a4348012119dfa123bb62e9af32821a65fc1a9640e604b6cef9", + "regex": "(?i)^https?\\:\\/\\/rblc213\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9b0c569afc12840fafb8b312d0e40d7e396a6eeff25263db3d147fc5042646ce", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9a89ea561ead7895f4c41ad301f010687b00ec8bf3e61b644aaf4090d5528392", + "regex": "(?i)^https?\\:\\/\\/celeirogranja\\-fb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9f8a8c8b72aa61e40bbd2c2efb923411c03b0792a1e9ff739a7d165629ad7ccb", + "regex": "(?i)^https?\\:\\/\\/6fgffggfgrg4g\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9136789bce8dee4d5365a7003e83aa8f3f7b80cb87353820e7703fba8092a4ba", + "regex": "(?i)^https?\\:\\/\\/8fgfgfgr4gh4h54\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4e1a658c9fda0e9295d38830b9a6b3743b1bf0cffc576bc5637a757037985c68", + "regex": "." + }, + { + "hash": "8c25e742f48df6ae942c6f135470fe0ebb7ad90072f683f4db7f6a45a547662d", + "regex": "(?i)^https?\\:\\/\\/gvdfgvdfvgdfvgfc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b9cd9097722f886890aba6e17200bcb956b320b1cd1c19989e3a676b51e3bf54", + "regex": "(?i)^https?\\:\\/\\/6ggfgffgg4gh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3ee7df3940fecb8ab03b0b4718b99f63d776ca11159d949591d313c3b727fbd9", + "regex": "(?i)^https?\\:\\/\\/56fgfgfgfgfg4h\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "82c95685f81c499c08723cccd36743d3835a437cb94b22216f0521201cd40813", + "regex": "(?i)^https?\\:\\/\\/6fgfgffrg4gh4y\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "313d6995f35daed01ccf28b9a8dfe4179ddb441707bac4324a4dd59dc85ebbe1", + "regex": "(?i)^https?\\:\\/\\/8fgfgfgr4gh4h54\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "59a53e369821e05731178f238c288a49815518b2266d3f504c05e1c7abc9c734", + "regex": "(?i)^https?\\:\\/\\/r1a43r\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ba7c32d88829c8b709e8d202e2e397151e6281f1d6c948a05656716cf5add815", + "regex": "." + }, + { + "hash": "e20f6993f5b00a85e9057f87b4bb7d873538923bb0f1ece2494016ad1419b57b", + "regex": "(?i)^https?\\:\\/\\/dsfbgbxdgrfbvdfbrfbfd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b52437a4feae29ea252ff34acbcd2eb7b7d9cbf3b221a46a9a06130d911f27a1", + "regex": "." + }, + { + "hash": "51b8d9ef0d763d84144a86cf0b21b7ee35709d70a102bb42880b2a6fac599afb", + "regex": "(?i)^https?\\:\\/\\/cookingprograminterspacegalaxy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "68ca88d62b3e831f967e81d45bd97703b79f9e03b56bfc2943674f4e3c51db3d", + "regex": "(?i)^https?\\:\\/\\/juno\\-verification\\-f15d3f\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924bc598ad\\-bb16c257\\-00a7\\-4a5c\\-8703\\-ee489105467e\\-000000[\\/\\\\]+g9tdck\\-5wV7Vy2WTpHV1QSS4i\\-U\\=394(?:\\?|$)" + }, + { + "hash": "702a5f9733baf3031edef4f5da2b2970f1a0cd3c7771cfa980622a825cd38536", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b95ae9e35796a4da807e7adfe6719f263b582258a235351f0e5ce4ea03adfd85", + "regex": "(?i)^https?\\:\\/\\/everybodytalkss1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?web1324[0-9]+\\.cweb06\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+fbdhfbdshfjn" + }, + { + "hash": "7a0c0a11c134aa374391856102ecba7fef09c2dc144cd9316056255546207b61", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "edeb5814d41d9e48abb0515c9eef580b5d644c5bdaf31b5a18996858ad10de59", + "regex": "(?i)^https?\\:\\/\\/duaosdawndoufnhejsfpiesfnuesfhs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "43fb98d156e24e45a7637f2896c896340d97af948030f9b8eda801d935e395eb", + "regex": "." + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=p\\*\\*\\*\\*\\@w\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "71d8e281090625ce777f457cdcafea8af750c593b7f1be88e2bde009846778b3", + "regex": "." + }, + { + "hash": "ccb5c31daf721c5668b0c152e94a8c3fc1aa76c2af45753e5c82bb9efd8051db", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6b899cb0d3a04e2f1041a23f0fa9f9b9eb389b0afc76243202e558c68abee192", + "regex": "(?i)^https?\\:\\/\\/3656f\\.vip(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a5af7e585645eee1ca33da55a68b0f054004bb10c0c22787334bf120b7de382d", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9705c58dc71a02238914cd87b26f07d1d8f3f1a12f13bae8dc98ff93a1ae33e3", + "regex": "(?i)^https?\\:\\/\\/seedmoviehot\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ab5eb1d455f0192194a58d60673336293e5a5103b7a60eab0a475df1648d3bed", + "regex": "(?i)^https?\\:\\/\\/cookingprograminterspacegalaxy\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "aec21e8ad78ee79e9b2a8ff03084246af3875a9339b327d58692381d6fd3a46c", + "regex": "(?i)^https?\\:\\/\\/dgdfbfbdsfsdf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6d9ee331263989e88576224488edebdb027d7ae3d5412f6fdee5287a40673262", + "regex": "(?i)^https?\\:\\/\\/ghrtfybg55rhgftjgfsfd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "800c6091c200e04034715c24702dcfbc5672549ae2b29de0b182876b296fae22", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "90d12fb4aedba1054891c178c2c91a50b1a22d1d61aa26b34e4eeab86a525478", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d8cf5470baaf3a102c555a708eff30ae6f232a0241f4cb03c423a7728913edf1", + "regex": "(?i)^https?\\:\\/\\/oklimngtzyasueokldae\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8d294b471d4e2280c644764e82ce358d69eb6a84688cc8b25773a01f29e55373", + "regex": "." + }, + { + "hash": "ccdcd96cc8e1f3519a063346e40b44c0de40c53ff11e495d2dc98ce304fd1b6f", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "dc8b7cec9a3d2eb5de63f7df92f336cb7a2892a25cc98ee708582ec3321c10ae", + "regex": "." + }, + { + "hash": "95fc7fb5fc4af33972633202c988ad9a1802ed145bd8649f9e651f2498c31738", + "regex": "." + }, + { + "hash": "5e2edd6d9420b0b86e8b03c8cfcbe8014fc5b49a4b1067b323497a44e40e9fb6", + "regex": "." + }, + { + "hash": "2041312d2a83a0e38fc5850340ee1e48884a89427212045987f0e209e7e8a034", + "regex": "(?i)^https?\\:\\/\\/sotquie\\.com\\%E2\\%88\\%95fkcbvldhvy\\%E2\\%88\\%95qxvwjoh\\%E2\\%88\\%95unmtcem\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xtjlnrij\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "251eec8f976c51f6037f1fcdb89d02994779d69fde2fd8daf9aca9ac0dffff4f", + "regex": "." + }, + { + "hash": "8f69b4f517f699afd1fc26048805c81004a2d1e5b219eecca459a9a54dd99960", + "regex": "(?i)^https?\\:\\/\\/542vsazzxczxczyrsazcxesdfasd\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8c6dea958ad012a68ce707c4a793fc0f7c927935984bac28ecddd8f239c795c", + "regex": "." + }, + { + "hash": "26285b51695ff24c37f0675e11097f6b91a796e25dbb4f8f873598731f5c3f6f", + "regex": "(?i)^https?\\:\\/\\/dsfbgbxdgrfbvdfbrfbfd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2d1230da85ba73617a2215243cb7c1dca07a251b6c644067b414b3e1106dc8d0", + "regex": "." + }, + { + "hash": "be77edb069ed3a9bb963576ef190e65761abe85f24beba324d2ffb859f198df2", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "88787647fa68b4309564080a9ba0d317819b9ed63b65c840857a3eafff553a40", + "regex": "." + }, + { + "hash": "05428b7ccecd256cb4247ab0746a3d98d14a7d1a0bd4f10b1d961c563bd28e14", + "regex": "." + }, + { + "hash": "a833eb742ed03159096cca9b64bae23f6bae31b85b4dd8a5d83b3527b0257200", + "regex": "." + }, + { + "hash": "3404109184f133fab46b18c62874295647080db350f5012712cc9cb009cdc8e2", + "regex": "." + }, + { + "hash": "0fee1c0dace0c22723ae7ceadf1662f2453a1907987906140d0d99c65a5266a6", + "regex": "." + }, + { + "hash": "340474e28611326fe9a6b149de37c1359e6aa029afb93059709a8f4db25d742b", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d9564cc6fc77557859b42dc48e3678b4dcc5aea9dc3a1d395455c188514f15ff", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-6b698f\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8db8ef5b39396541921027253cde3d95c6bbfe26d4b99328540b5ed9eacbf3b9", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "da65b9f24d4459a0df99719e40e13c416f89c0ab7bdcedb7b3563a99c9034c6e", + "regex": "(?i)^https?\\:\\/\\/duaosdawndoufnhejsfpiesfnuesfhs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a18cc6332680d465c5e9449c539e8024e06152ffc16234669ce844ef239f69cb", + "regex": "(?i)^https?\\:\\/\\/robuxcardscx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f7eb1f273ea3340898f15d25870dd52568f45e429d66165848051615d84c58ac", + "regex": "(?i)^https?\\:\\/\\/robuxcardscx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "30f72198a5278855052ef328a5608920e0724032191b94f44a553d41dcbb6299", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "818b086395749be43cefdc3f82e853e4614a79fec08d9e7988b7d67afe930805", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8c23df0f6d861554fae4d48703895f841e03386da593aa3e3fa0ada68e3a2b2f", + "regex": "." + }, + { + "hash": "6d837734b790de2684f65e8d6e9082b9a00a85d96ef3911963fe008e5b1c1b91", + "regex": "." + }, + { + "hash": "6d43b374bf7fd669526b545bae4b7cc862b0ec7ccb976bbb7438ebd151df6487", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "57d270ec56cdce45f1b4d32ad9cae13fb5ed80e9e01046e8b1a594a478bfa4d4", + "regex": "." + }, + { + "hash": "90c51cd1e767ef4959d6bad4072492d810386b76644127312f8f5944b00a8504", + "regex": "." + }, + { + "hash": "0f3cd1704bab70aa9cf52a9e410b10a71fe324ba5aa6c9de6e7dd3a47703fc62", + "regex": "(?i)^https?\\:\\/\\/cookingprograminterspacegalaxy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c3336a2a04e4cba77e5d41190984cc20fd53c5c589ea021066c324935c9cf8c2", + "regex": "." + }, + { + "hash": "838647f91818ef0449213479b87b9d1903a642c2a522c185bfb1aef705dd1c94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+comitment\\&id\\=Y29tbWVudDozOTc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "625d2636df1c40f4cbea634d7445a6edf8930696d25c995ff7e1e479e21091d3", + "regex": "(?i)^https?\\:\\/\\/nativite\\-com\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3a684a54b4dbabd2455f242ab37f874e85ac8b5d304e1323aa851fbe8dcbf9be", + "regex": "(?i)^https?\\:\\/\\/kolutinzabryucbagrea\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2d1cace20cb64a2391d364b6d666c75c580e14567b3c71f533b81f82a1060f0a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+postuser(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "470ba126df548a8ffd9ec44e0bcb8643527e73b90d44206fb0f07ba2f5fd7ab4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=8172736\\&page\\=007$" + }, + { + "hash": "ba90cbbad617c2f7c64b6201443cb66313a63892761111502206250594388242", + "regex": "(?i)^https?\\:\\/\\/everybodytalkss1\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "642c181c2b71604559afe956725cecb9a11605296a075774384fae3bb4f823af", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4ae839cb75f9d7cceaa576364e8ea701ace41e4f16a0d0dd7238d0688b854b88", + "regex": "(?i)^https?\\:\\/\\/everybodytalkss1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1144af8589a4c90b7ec719dbd72791f10f5adb9493a2a393c8f8bf5bb3d5b1bd", + "regex": "(?i)^https?\\:\\/\\/robuxcardscx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "760948ddc6f6923306384c4e915f6fdbe9797d5d967a4c3ad867382793406434", + "regex": "(?i)^https?\\:\\/\\/everybodytalkss1\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b46e35ffd5a8ea0226ff5f07cd16bc46575c42ab30a4f02c79015b09b2569fbb", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "439880b504fccb94bbda9bff6f5517202dc9d1ae1e7f176b0d77bd076a5638eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us[\\/\\\\]+webapps[\\/\\\\]+mpp[\\/\\\\]+ua[\\/\\\\]+privacy\\-full(?:\\?|$)" + }, + { + "hash": "751b5a7c90f55eb5f70101661e9afe8b2bc15cf3354c03dffc5649f6a47c002b", + "regex": "(?i)^https?\\:\\/\\/dgdfbfbdsfsdf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ed1f9bee83000c750b93645668459ba6ae52e4d8ea0327af907d551f71ce03fe", + "regex": "." + }, + { + "hash": "93636da8448fb874d0a7fbee4832098fa80701635110d5726be7cc70aba5b18a", + "regex": "(?i)^https?\\:\\/\\/nativite\\-com\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "996999ea0c9b028b5076d45928a90843cc825d788fc3fd6030b2cc6fc1b4ecf4", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bc9e8451446e73d8b5898fd008be452c34811c3dddb81e85670f2ee9d5b83ce3", + "regex": "(?i)^https?\\:\\/\\/542vsazzxczxczyrsazcxesdfasd\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b9d499cae884dc8b00405e03a3e6ae2c91915cf4bc58a1c8869985fae0e0d333", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7687780b61292b733e40d8d6aa3ce19b6d90714ca49ac89ce849b73c7f2aacfb", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "799d68ba86d8a66a2472bcc1f6fc16f9e76f778c09481e218a11f7e70ad2364b", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d57568967db86fbda12325f00285706c9f160d80264e49a99f4d53bcf53f453a", + "regex": "(?i)^https?\\:\\/\\/duaosdawndoufnhejsfpiesfnuesfhs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7dc07c5480c856e2ba0cec5a202f19d2b78ebb1489daed47a2092217b477c89c", + "regex": "(?i)^https?\\:\\/\\/robuxcardscx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4d8472abd799df2eba01113dc6b781abe0e821f002b02b1eab64290d131b592e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9964[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "32033ed9455437e66ad07c70743f50f16b295e42bf9e8f3ec91d9971c68d50cb", + "regex": "(?i)^https?\\:\\/\\/seedmoviehot\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c834f869ae4048001f12af4b2fe68b10e6e66720f23f924cdcd7a1545e5e609b", + "regex": "." + }, + { + "hash": "0a6a31785b05ff08bd08e8d06070b8efcb40f80449bb854bd117621dda618506", + "regex": "." + }, + { + "hash": "3abdfa8134d3856c02638a0015056f8ebaf485216154bc9011bb08a275619fe3", + "regex": "." + }, + { + "hash": "07f4ccf252fda2ec7bf05d9772c3c447efff04f56f5bd394d5724cc7a5bc91e6", + "regex": "(?i)^https?\\:\\/\\/everybodytalkss1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e818a1f31d203c9d34030b2441fad060620c8b0f8113e7d80221b66fd00abe9a", + "regex": "." + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=s\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "bb22b56308e9cbc01095f3f651d3eb7c5b2bedd60faa491834f5c7d73b89ffe3", + "regex": "(?i)^https?\\:\\/\\/click\\-here\\-109739\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dee34cb072949265d3d81517f77088862a155c263b90ef4f82ae3060abd9177c", + "regex": "(?i)^https?\\:\\/\\/kolutinzabryucbagrea\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b8d19bb4831678cc826006ce7946fb4698801d81a5099e8c480855ecdfa82163", + "regex": "(?i)^https?\\:\\/\\/542vsazzxczxczyrsazcxesdfasd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d3d203a88f1e0de547d1329bda18b10db9903917a90cb0e936c6730957b932bb", + "regex": "(?i)^https?\\:\\/\\/dsfbgbxdgrfbvdfbrfbfd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1282ac3045f3fa888b9f6759d83398076fe0a9553bb5418d74a98a7ee660555c", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "42530778633edf548879c25c87d11c568a03040fd65112cb921a2df9039a4ce6", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0c1920a9a7413da10bb7d67bb5d6b0c26f776195675f3fd2e2bbd2ed6f12890c", + "regex": "(?i)^https?\\:\\/\\/kolutinzabryucbagrea\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6ed714eb60a6abc8ffc644ebd524048f829bd600ad142b2b8faaa06d0994057a", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7c8146012efe04b3b3f619e446c8c7e265f3b6fba35868ead8ee3c1eb0e6f8ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8affc4524495365b065a57a88e9bd27563255c08e31996ddc0029227ee0b4d82", + "regex": "." + }, + { + "hash": "6a302f3bfd1500b72066071f5ccaf3d86a7a41e37cedbc49e83fce9bc78d104c", + "regex": "." + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+new[\\/\\\\]+dk\\-2024[\\/\\\\]+Konto(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "44c6a0e05170125397daf90b2a95b493dca1989c4392406b17e77f85771cbec7", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "761faa72d796833e555a634c61194efcd97f9e4c1832aa2627f67c959549bd90", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1953a43b1b89737799d23f60bef5d04773dfe006d1db731d65edab8ebc8d7663", + "regex": "(?i)^https?\\:\\/\\/oklimngtzyasueokldae\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b46077220fec6e372b3609694740d936bb2c36c838a0fef524057be97f1b64fb", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "96f243fc85eaa87da828c822053a8e11a60652ac5c54e135d97a0c83be60b060", + "regex": "." + }, + { + "hash": "607a0e1ce31fe1b555f3ab1065c7b3c22f1a526e9698b0f5a2a99f9d3dadbab8", + "regex": "(?i)^https?\\:\\/\\/pub\\-90e791994d1d4a0dbce6f8b175d1ab79\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "50e799178676fe0b6feddd99107a020661afb56f65c2d3307ec684753bcaa948", + "regex": "(?i)^https?\\:\\/\\/542vsazzxczxczyrsazcxesdfasd\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5a31fac9f630042173788d331c283ca062b0831cc225128f3bd7a0007a2bada2", + "regex": "(?i)^https?\\:\\/\\/dsfbgbxdgrfbvdfbrfbfd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d24036c108069af402fe9047be94e8ba26a57641f1931a8a06d75f9cd4fcfe39", + "regex": "(?i)^https?\\:\\/\\/dgdfbfbdsfsdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "db16389cd5e3f61f1e542a92283b88f4524ad4739e99f16cb2aab539587f3343", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "82598a91a1fc0d136371ff8a59afb475a0e771a8db583fa0beac0203800e56a7", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1bf03290a3950e55355a910c832c6edb87ced757cb0e302a0054dcfd0b16aa51", + "regex": "." + }, + { + "hash": "23cba693e4e3783a7dc0312c51dfd2cf227c713a059ac303c9b76a24de8c10eb", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2cd448359fb43929f1b2717f00c3f05938443d20353be8c64a8e08f6323d9c31", + "regex": "(?i)^https?\\:\\/\\/bigcineonline\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c53051bbf69e16b4b343e102cb774fa9bd00d5bc885ca9bda2ebd74b690caa57", + "regex": "." + }, + { + "hash": "80a8d2dca3bb074c2cd13febcee5240ea5ce0866f0c6e52c4c224cdd155d8c05", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "470ba126df548a8ffd9ec44e0bcb8643527e73b90d44206fb0f07ba2f5fd7ab4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=4303227\\&page\\=$" + }, + { + "hash": "a13c6b792e559c12e954bcbc86640fe96958dbfe91d15ffebc837ff969194e19", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "520e1c700a5eb7988277ca20ebb59f54ab6a7317cb9aaa87e9db0eaa90c2cff3", + "regex": "(?i)^https?\\:\\/\\/dsfbgbxdgrfbvdfbrfbfd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e8089d6f78943de12494be0224cdc6f2c4fbf3fceaf8a7050c381d87dfc2fb76", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a70ffd62637bcb1d7bab85d2a1d74370d453448aacf7141016f01d41f3259e3", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "68536feef5438c7240de49e1d9e2762d605185c88269a3e145dfb2a3be3fdc8a", + "regex": "(?i)^https?\\:\\/\\/modernhomestyle\\.brightlinkbase\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a83b7613e7ea847d55629c00f4dcde984d1ab994a434d840b8d36d742bc6980c", + "regex": "(?i)^https?\\:\\/\\/robuxcardscx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ec1cd7b6edb5c72a58ce929ac760a2c4706d38a808e6ba8b9afbd2e82d8d3975", + "regex": "." + }, + { + "hash": "e24e0dbd6a14a5681d22df99a202cbc5b31bff8b4af148de9a0c89e6407b513b", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "473e169abbab67c03763f5e107c39a53e1a2a30bf5c833f65e24e1a129fbd117", + "regex": "(?i)^https?\\:\\/\\/efi89eoflmnfue89fpk\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8f88c7d32529fadd8f3843e46920354450c3eedc349e05eba3d061e0e2a6c1af", + "regex": "(?i)^https?\\:\\/\\/kolutinzabryucbagrea\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7c8181cab33e998e1fa46a47172564032ee4cbb2cf5dd23391272566a1dd611f", + "regex": "(?i)^https?\\:\\/\\/ghrtfybg55rhgftjgfsfd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ddf3f431cd8550fd1131e2e138ba8fa9ae4c9c9607778b9e956a3e48a19244c7", + "regex": "(?i)^https?\\:\\/\\/cookingprograminterspacegalaxy\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5e71ea7f46c866c6801b3ca6ee2802842d982d85e4ee5d75f2ed68ad869cfa52", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9c8690723f1ff6b5335d0b55b13dcf9547de29d675f2ec7d4535ad6b8aa25928", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c88cd68589f47d9d8261cbe1fab46bf93efeabefeb66ff14e30537a74adde6fc", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c530d52ca845936b515c482ccddf7985f6b238937d9d159c9940efcd77bda781", + "regex": "(?i)^https?\\:\\/\\/seedmoviehot\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9063dd284ffcea15529fbecdcc153bc296ed87035b3b36af8ab2b23839a9a514", + "regex": "(?i)^https?\\:\\/\\/robuxcardscx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "73b8a8f0d171736ad4293f2a0a41f7c5ae1722cbb27449666c48344b5d63657d", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "db6bfd98641f58cb5cb09d4ebcb56621ae98909f9a8c9ec3ddb3b5b3cbdf69b9", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "054c7059076283b7bb850618faef6a0e5e9de22dffff87052c5b1970da104a4e", + "regex": "(?i)^https?\\:\\/\\/duaosdawndoufnhejsfpiesfnuesfhs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bbafe2828ef92058e5437d064b2b7cb9b60519158d82f6858363ae3f9a6f3a67", + "regex": "(?i)^https?\\:\\/\\/ghrtfybg55rhgftjgfsfd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e910fc73ab4b2727f9212f763c515028f993f6f08983410bf2702bbb55be975f", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f4d821b90118abc2c6fa9c3b54b3f104ec771bb7f01cebaeddd1a8a6f7ec89d5", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6483f534787157cf54e8bf285bad9bb7d4940cf74f0231bcfb389eddc0eddc7", + "regex": "(?i)^https?\\:\\/\\/cookingprograminterspacegalaxy\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "439880b504fccb94bbda9bff6f5517202dc9d1ae1e7f176b0d77bd076a5638eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us[\\/\\\\]+webapps[\\/\\\\]+mpp[\\/\\\\]+country\\-worldwide(?:\\?|$)" + }, + { + "hash": "1ff87bcb0bbc5250ae284dd4af7c29a6e6c35d2b0e8a622604bcc1161c75565a", + "regex": "(?i)^https?\\:\\/\\/kolutinzabryucbagrea\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+28o7pf(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fed4b4e5f49f593cc92160a04b16ec1da7235e599b83d37d46997e51b686ee82", + "regex": "(?i)^https?\\:\\/\\/nativite\\-com\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b74eca470835f81ab38fedc18bad84aa5265a71b026c6d0b182fdf96a706fcf8", + "regex": "." + }, + { + "hash": "37f274fa222f9297af0cb47b81d9d62d3e640b86723b4e9868f3db9e8bc8923c", + "regex": "(?i)^https?\\:\\/\\/kolutinzabryucbagrea\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dd9b9ba9854992adc71d78639f19f60003f6d614818ba130516b57d13f3302ab", + "regex": "." + }, + { + "hash": "91becbd1dedf8f91daa76e1a0e5c1daa3bbb057f012b7f5133bbd791df819451", + "regex": "(?i)^https?\\:\\/\\/bigcineonline\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2227ec95f79b2c2090b6e5d35c3b3b306ae1f4c1ef1a5c240e9e42c4266a0eaa", + "regex": "." + }, + { + "hash": "bde72de60783a9dd2289444a18bb745f20d25ba22dfbc79c725424157b1fc657", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2wAprjXX_zBn2MuhEghzjQB4W4dW9IEqr84FrGj8xYZ3X1Q7DkgHQ7f9v7Lt6qT6yRiq7SKXP_jjLzJ38lv72s1j0u6R\\-y9O5wfYmuNr3uI9FxiAM\\-GUqGQ1n9xRx5aOSb5IeOlSDIN\\-xGfOHXepxqkheyVjYi_wfW1lu5vpb6daRd3QCx7xBNLi_Rm9RjxJW3W6EYDiJhZXrTne37AlahI3pSpdf4ioAxh5_KGaDEmNUETnopzj56y0(?:\\?|$)" + }, + { + "hash": "d3411219803a69138d2f722532ecb2d9cf4e79fadafa3419d330f2b3ae11923c", + "regex": "(?i)^https?\\:\\/\\/ghrtfybg55rhgftjgfsfd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e42d509d66ba7d8d379ba7f6b549c1fa4b59c7a1902848ee96a2ead536591b9e", + "regex": "(?i)^https?\\:\\/\\/duaosdawndoufnhejsfpiesfnuesfhs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xufohs(?:\\?|$)" + }, + { + "hash": "9a44b388bfb781c5b700e2464df21839c85759106400145cbc7f767d1289f27b", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "75caa5af61e0188621d7a28e998532ce24a116e8dcc6d02a545dde06d1811516", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8030c5d258c5b118004e48cd0a7e32921726c3c63849f9303e280ab2bf0f651b", + "regex": "." + }, + { + "hash": "a0248b08feec01ac528af99096601b596b99afa210c06d9422a04480c528a4d4", + "regex": "(?i)^https?\\:\\/\\/duaosdawndoufnhejsfpiesfnuesfhs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "22abd00763c49c124e420c3f1bff097ced016fc3055332ff454fcff96a0646be", + "regex": "(?i)^https?\\:\\/\\/dsfbgbxdgrfbvdfbrfbfd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f658c1a350d5cf2051929e9cd28910cb9fa2a1c5f202bef3751df90ac218306e", + "regex": "(?i)^https?\\:\\/\\/dsfbgbxdgrfbvdfbrfbfd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "59a5656162aa644447ee2641a92a70e79618f74981ecd54d11ccb6a4aac00aaf", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "968945e456181f03f3d4da8e710dcad6ba7523f8b31d70a2d6c36bc8187bca9a", + "regex": "(?i)^https?\\:\\/\\/nativite\\-com\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f9457442b7b1fb8230cc01a8979c7cd735933599631967256f869749b9b1d535", + "regex": "(?i)^https?\\:\\/\\/nativite\\-com\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3627c11a8f9b23bd00c658178ffd346fa7695bd588ec4911ae02a782156f0bd0", + "regex": "(?i)^https?\\:\\/\\/cookingprograminterspacegalaxy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a7be00283c66af38b8d6478b9a63dcd0d3222bcde56a6710a3594c363863731b", + "regex": "." + }, + { + "hash": "d2d113831c7f9b538cbfec614301aee83ca5823c18e1c2e553ce1445e568c068", + "regex": "(?i)^https?\\:\\/\\/robuxcardscx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ed3066e622b9fd4b7b7798b0733a756b6b54987f99703349621681042e3d41bd", + "regex": "(?i)^https?\\:\\/\\/oklimngtzyasueokldae\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d2631d2c04af1c4c22f7a7af355cb65f9fb00ba814c9a89783af489d9843f1fa", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "02184544afd9852c9164fcf98c8806e4a339b571eb4d89604b0e47f20ceca1e1", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "beaacac94dc44c3da22b6969f5a8e487a5448c84413ebf986f945b8097d5d09b", + "regex": "(?i)^https?\\:\\/\\/542vsazzxczxczyrsazcxesdfasd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44edc0f1c45617cf52a8c3b6e50f850c51b7431b72ed1302427a2b4a2f6057fb", + "regex": "(?i)^https?\\:\\/\\/ghrtfybg55rhgftjgfsfd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2e8f57ce943d34655c2f4ca3d911bf5c59c0f16f665a1ce4d64fb796335e1b42", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d1beee8289e9576bdef5f38ab75ae8f4aa88b8bed72a0e1ac1740f6c31f69990", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "631963a08aaf823fac44b0cc626a4acf67bdd2365bc73401803659cf3accd4d4", + "regex": "." + }, + { + "hash": "b0f73b40aa4f7ea1a785a4593550d1243a9208873eb4f25d2fa4ee5f4becbb43", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f2e436b4e4a1a8cf4410c9978012bc9fc86b7b9efbf11d09b6f0974ac3c5441", + "regex": "(?i)^https?\\:\\/\\/dgdfbfbdsfsdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5bccc486071ecb529754e49bd54da1ec52cf4ee4de86e919ea617f49a29cfa60", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=t\\*\\*\\*\\@b\\*\\*\\*\\*\\*\\.c\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "8c36aa5ad10b66c189e00e627270d363f6429ea95d8cc2b8f996d88558388d04", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "482224d91c49637cbefdf27e3ca6af07c071dea9924166a0ad3635660478b12c", + "regex": "." + }, + { + "hash": "d4e428467d19999b3cadaf504cf72fe03d60c825f5a1de527e76189a87c8a7e2", + "regex": "." + }, + { + "hash": "f921718aa9c7eafb2855c59d94a9ccc7337b1b889efeef1c98640ac9fc707034", + "regex": "(?i)^https?\\:\\/\\/seedmoviehot\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "020f6e48a370e30ba1713fcdab62f890cc038d0d0c178d2e514bac115a637b7b", + "regex": "(?i)^https?\\:\\/\\/dsfbgbxdgrfbvdfbrfbfd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d73943d0582b67acff2cbe2e34476fadc6aa78e9e0e5a601c0fab76dc42a1051", + "regex": "." + }, + { + "hash": "9d40ad195e8bca0eb92eeb39108ffea98ca8ff7d0c071556331d2d0f9517861c", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "314a2ba5877e92da2778a1c6e1dfea26183e5547593311ba9a65c08c56a5d8f3", + "regex": "(?i)^https?\\:\\/\\/nativite\\-com\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1edb637900c3ac23b5d919ec761acf603adf7efd80e247120cddd809e94927f8", + "regex": "." + }, + { + "hash": "12d6088de5d8fe5da4217539a4e433a1ea89cddfe19581fa7105878d801cb9a7", + "regex": "." + }, + { + "hash": "856175bc919993919ee7c4c2085750e0d63959449600b0b6ef4639ceff897096", + "regex": "." + }, + { + "hash": "a7105af237e8f8b6fe5bdce06fa7788ad860f90341e2ee8c2e8f80034703df27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+JHASDWEfderwerwerASDWas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "36dbba287d5650aaa69bd442538a8a5d1d5134af376509d49e6393caf78b0f36", + "regex": "." + }, + { + "hash": "2679d6da6bf5c9520ab24dfb757ffce6ad2d6df5ad401e50a9745377af8aec70", + "regex": "(?i)^https?\\:\\/\\/cookingprograminterspacegalaxy\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9ef3ac8515c470bf43a761d651331df80b6deb6d090016e606592d504a77e277", + "regex": "." + }, + { + "hash": "c6673e8b05589fa351040b6604f1011d7bb9574bcb62ec22f964da84c6a0973a", + "regex": "(?i)^https?\\:\\/\\/sbcglobal\\-107003\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cddad0830c82b0bc93f335714b23c16fcbb205813cdac25c59babc3f967f9dfb", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e3f7f9b431eed9997d0441b4ed8d08e7897ca73b340bee07c22b6bb37b8b33e5", + "regex": "." + }, + { + "hash": "688b455c6c374aced622f1a84d4ec0b5775361b0135f38bcb4bbe4e6c0fd5337", + "regex": "(?i)^https?\\:\\/\\/bigcineonline\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "14d8ed85aa3be8cd0434f54505b4e47d52bb82adb6befb99f6938f56566ff227", + "regex": "(?i)^https?\\:\\/\\/robuxcardscx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8c25c9c5467da740093213f1bbc80001ec4cd2038de37dabf95dfe7fc1ce6c5c", + "regex": "(?i)^https?\\:\\/\\/dgdfbfbdsfsdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "305f9ca8b86af1b15243c6f6a0d1a60c8ba05a1a856a5ac325f737dc7100cc6e", + "regex": "(?i)^https?\\:\\/\\/robuxcardscx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2f6792ec811b12c6382d66c89314c8634249b0fb36d3375823b08b17a873b78e", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "68b2a5e8118a6a3628736288a0d880f1a4f659c53ffa66e8bdc64c2b2cdc8a63", + "regex": "(?i)^https?\\:\\/\\/seedmoviehot\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d1be864ee0b6a0458c575d12a36062f0dd076381625362c5b7370760f41e445c", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "405260e323c241de02f372c8f4223fb1efce8d2b1e80a2a40c09b171fc72d89f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intest\\.html(?:\\?|$)" + }, + { + "hash": "5ca5e5f42111bff9de207e17f1ebcf56988263d12785db3b8199636a3d4f90f5", + "regex": "." + }, + { + "hash": "6d8e380b63dc23a73b4af8dec00464deb8995a7000d4a28db90f6c5b4653c99b", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "26f0f904394119337bb63363b939735adca05bec906aeb63b5634c1a450c68b4", + "regex": "." + }, + { + "hash": "a68f3f7977822d7225a4fd96f0a19fa2dc3d79be175592e06787cd9cac2b3e92", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "19b8ffcf8d00b4659f28b5ebed2016892cd424e2073ebb7af9ef21a4c275eb32", + "regex": "(?i)^https?\\:\\/\\/duaosdawndoufnhejsfpiesfnuesfhs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d4bbfcf44875cb88925ef4225f1fefe1ca8e6d58fa8a33f827c8a223fceda089", + "regex": "(?i)^https?\\:\\/\\/kolutinzabryucbagrea\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c2f91da9ec9dc4fef29f509ec3c37474ec09c7e704208a412b3da79cbba59d3e", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "533a4f7e0a54c3ec0bf8a9a137d8b3f985d0d0b9c3b3b5e0e8e0d3bae1b1c6c1", + "regex": "(?i)^https?\\:\\/\\/rgre6tvyhtdbrtydthrtbsde\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bab3bcd700994cd20c7194d94e87e771cbe8735ef45521525a41e0a03b82d755", + "regex": "(?i)^https?\\:\\/\\/oklimngtzyasueokldae\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "02730cfeb046823c2321462a95966933ab6420259fbb18d801635c577af17b82", + "regex": "(?i)^https?\\:\\/\\/everybodytalkss1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a718aa44dc0410d682340eddb30cf0e211addc7517de79749dbd14569327bf6e", + "regex": "." + }, + { + "hash": "0d79e6189393867e01e3be6eb7e0b4ec588787b63d5fa2ff3c1134d151379e58", + "regex": "(?i)^https?\\:\\/\\/bigcineonline\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4423a439976620bd5f9302fd840e7ff21077a6f50e4dc5cdb19f3e8a80b589fe", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1844bf0e95371f843a2b92ff8e46f85173834805be25bc78d50a9d35b4fb4f1f", + "regex": "." + }, + { + "hash": "414521e48daf6abf4de342e0b7861cb4480dff4a1a4d97f070c57e2a92893020", + "regex": "(?i)^https?\\:\\/\\/seedmoviehot\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f1ca9130ac7c84806391dc0d1aa766ab4d0511f92919c03fb388fa495cd451a3", + "regex": "." + }, + { + "hash": "134c4b9202afc95eea73b4478b3ea04d2124a97b6c45ec3344902af47d51e450", + "regex": "(?i)^https?\\:\\/\\/everybodytalkss1\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d3b73b7733d7db6533c2a897aaf02e234a56462dc09ec354fc76395a70876f30", + "regex": "(?i)^https?\\:\\/\\/beokoishogyweyovshovuseoi\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4dbc2caf02a03d97df33f5ff33abbbb32ea5dc6ac0a04e21c8449dc451ad1b8e", + "regex": "(?i)^https?\\:\\/\\/noreplaye\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+new\\-25\\-10\\-2024[\\/\\\\]+NEW" + }, + { + "hash": "025756e1f6bc6dac504d377cf00bcca92ada6792c53220b97a2bb07eb6063e20", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0887ea2fb38b5293f2a78a56302be0b21837ee830e9fcdb618e76991c9f80d40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Auth\\-Bankid\\=0A\\=(?:\\?|$)" + }, + { + "hash": "8b54e9e294b1475b7dc206c3bf54f8ffb3ee1e9970271d9d3214cb99f358b589", + "regex": "(?i)^https?\\:\\/\\/vitorhugoautomoveis\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e34568af5b51ddab4af7d3bdf72b4c977f02bf5c17d2e308a549d3a14acb2dcd", + "regex": "(?i)^https?\\:\\/\\/contemplatingcookingcontestannually\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "66461e39ef9be630fe064f3281629cf7814283454b4e8d1efa3731340e2f46fd", + "regex": "(?i)^https?\\:\\/\\/dsfbgbxdgrfbvdfbrfbfd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0d07879c9d22afb3b4ea6b95ff90296fc1728e23a673722c5eec12758677c5df", + "regex": "(?i)^https?\\:\\/\\/bigcineonline\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f8dd046cc39a9b4c206cd0d8fdc429ac7c4718bddfe47215c71307fe00141a67", + "regex": "(?i)^https?\\:\\/\\/restaurante\\-polomar\\-com\\-br\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8ccec948d0c9e0041dd48478dc1f23a68852c2098ff6ec37709af8e51ebb41e7", + "regex": "(?i)^https?\\:\\/\\/warmwelcomehome\\.brightlinkbase\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6ebac08506dc0fb64e8d32339c9ca50affe1d6a0659db629f87a21bc98648f8b", + "regex": "(?i)^https?\\:\\/\\/duaosdawndoufnhejsfpiesfnuesfhs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f1b8bfa63bb87e49fdbc4b533f18e47be5e2e7f8cb8ad2fefebb649e63ed510b", + "regex": "." + }, + { + "hash": "7d1049e1f00cdad51c4908283193f8f950caabb7e37b02b9609b72dd47e20cf1", + "regex": "(?i)^https?\\:\\/\\/nativite\\-com\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3cd88ea59131ba8b451f4796c2456bc9a2508935ddf9d7f18b13e8b2c1e2f5ea", + "regex": "(?i)^https?\\:\\/\\/duaosdawndoufnhejsfpiesfnuesfhs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "52c60cb28a2600ded49d15c0c7e7153f99726b1362f5f722767bc45f1af1fcaf", + "regex": "(?i)^https?\\:\\/\\/everybodytalkss1\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d0975d9bb64b4b33f064f9dce00ef2a1b3ac7c30e7e0a662144f6bc119aa3440", + "regex": "(?i)^https?\\:\\/\\/seedmoviehot\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4795a0ddd0f55fd2a13e11d201f14fbd496747c6ac37c60a904e9155e2fa0c5b", + "regex": "." + }, + { + "hash": "3144a7f4f82da67b0ae6c7b552d820ef7191d665ac58d966703054489eab5eb8", + "regex": "." + }, + { + "hash": "b29943b22ff23a3e47e7afdf05e192493be0373b12136ed97a0f0c6e69e5c61d", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2b0d8a954de09d467918ce9183ba7105917a027ffdaf58f25cf51f71ac39f27b", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "974543b1e29ba6b42d5407a301ff80934294344c37397fe1d7f55cb5c41110e2", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "825bea060605a81eb355f41264b27fffe89c15d7c005a0954b5963571f4e24b9", + "regex": "." + }, + { + "hash": "6424e780cd49eb77e1ec2a04b6dee04674e77d43044cf72405e674268a210ad1", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b06d71a8a678fa321abb6c988cfd33be7628efbb7ef87452bd358c368843897e", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3f2724de5f79378b3553c23955169b96174a6555cc4be686fcd1e93ca999e0f4", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fd75d6533898fb3cf6b15b0240db51bf7ed828ab71d34560b4efdce4001d5113", + "regex": "(?i)^https?\\:\\/\\/hotboy3103\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cb95ae75e0253f324a757a2eedaac919966dde31665df66876fc7d491905d5e7", + "regex": "(?i)^https?\\:\\/\\/deploy\\-preview\\-437\\-\\-dev\\-b2b\\-lululemon\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "9fe2c92c876705a42f7d2c4911036f8a20399b8e9ca97274a74b93dedaa5858a", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjjfggjffgjjfgfgjgjf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0cfa897e74db43dbfe799323ec99d7eac220305ea0fafd45185d8511f7a9120d", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "af54c806a5c8728e9a80115096a5de310e87bd46a1acca45c1e7f8daf89fe284", + "regex": "." + }, + { + "hash": "71108daf57de8383cbc0b6fddd9a4dc2bdd3fdc593e242760d53fc66c4dcaa85", + "regex": "(?i)^https?\\:\\/\\/att\\-currently\\-10\\-25\\-2024\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dcfb4e10f791dcf0883e6f860c20b18779ecf036a5b066d6be50c386600792b0", + "regex": "." + }, + { + "hash": "4cd9961406580c53aad6592fd26a0959b56ba85eab7e24032166db65e9b9bfb4", + "regex": "(?i)^https?\\:\\/\\/dfhdhfdfhgfhdfhdfdfhhdfhfd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5a31f0d0e96615e6ef342a0f9afcc7bd4e0d65c564e6b304ac06a353c7bf0fbf", + "regex": "." + }, + { + "hash": "e0fc83631844df4cbf5656faec4f317bc9367348bc0b64cf0c95c2a76bf9e116", + "regex": "(?i)^https?\\:\\/\\/eqahgbeaqghaeq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "be30031902ab2ef4f6548dc03718f2b4f95be3771b9b2ddca129da06eab35d4c", + "regex": "(?i)^https?\\:\\/\\/hqaeqadhgb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2946cb11b90df943088027d5f0d748c2c833f69c636db5d03fb6a259deec1c84", + "regex": "." + }, + { + "hash": "10e02e322a9e6a71b40e6ab27b2665b3e28bfd9814188bed4d5371c00a1181f0", + "regex": "(?i)^https?\\:\\/\\/axzcxqa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "14594090919792050293e0d3b6d1815ae43d07b3cca288596f76afe0fa2efd30", + "regex": "(?i)^https?\\:\\/\\/hqaeqadhgb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d25680d60048cd4ade1a0df45dd0546c9f77ea24235c9ac18c5e64eb8870b", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "384bfdbe87be0e8c2ebc2b3803a08a56d5871654bcfa58fd368f7f64d3511ae1", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f6159e883fbce8dcc36288d725a8b2b56af1a1ce76622082ed7c6f3de5d5d9e7", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ccbf48d1db9b24e52abc04076c09ebc31c7e6ce054858a21b611250e478f2d53", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahsqs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "84dc2346a3551cd0990cee60b2790157e4d630027443c00908aeb72e2b0c3979", + "regex": "(?i)^https?\\:\\/\\/qaegheqahg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fd5b0220e31370e68e7b3b485bb0338c1702029e5cf9e54cce9b0e4ba6c02a50", + "regex": "(?i)^https?\\:\\/\\/eaqrhgeqahdg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bf5fba6b4c2f7da13692ffbfef42df39d004bad1036860c143a1a4615b7820a4", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "92ce242b4b0a888e784504aead2a804aa7fa6348c45463a8749694fcb582dcaf", + "regex": "(?i)^https?\\:\\/\\/kueqxz\\.com\\%E2\\%88\\%95qsoqg\\%E2\\%88\\%95wgrvjfe\\%E2\\%88\\%95fjtvcgqug\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cjgsenj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a92fd5e939aedcd4ad486d5375fac1fbecfc66d82a7e9d6222d8bba85915477", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d4c59c90154969b1522f4e9c5b986bbee540504e5bafeb3ae32853a04e2679d4", + "regex": "." + }, + { + "hash": "435e4f2f86146f1bf3060f7a0f59bbbf83d6f7196999192af7d0d2acbfd10890", + "regex": "." + }, + { + "hash": "411d96a8ff315430c3e05c23cea117c66c31d1f61ee733d476f6bbe565db225e", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "717022b4bc6e14b9d05786b7f78f18f2f93fc7e1d3da4189d91165fab04b00e6", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "72d787e6ff49b8515d184b4d9fd5c37aac46c43e8d1159741ef48b101f68a71c", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d508dce6a0ccaabf4e5bd7ea9d4a0122f9ab0e968e905d8bb9c80cb61606bf1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?organisation\\=bnymellon\\.com\\&adobe\\=cGF1bC5ncmVnYW5AYm55bWVsbG9uLmNvbQ\\=\\=\\&sso_reload\\=true" + }, + { + "hash": "df70c6f02f4ec778978b909db56ba2500eb101c29108f1e795c8a31e8165ca95", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cafdac7f3c37b1af36b537f3e9514143723a38571543300c2ff739e6fdbe3875", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e691a0bda0992fe83e26ebd28dcfdf208e7fc274353a088da184f8b91899cfda", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f4c9eaaaf9e9aaff022d55c718eea178195c9805f14585c517a29513ade2e410", + "regex": "." + }, + { + "hash": "838647f91818ef0449213479b87b9d1903a642c2a522c185bfb1aef705dd1c94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+comitment\\%26id\\%3DY29tbWVudDozOTc(?:\\?|$)" + }, + { + "hash": "d67d494c853c0550ada460d79af12ea27d5b2445de66f4f428a7ca8d15116aa7", + "regex": "(?i)^https?\\:\\/\\/eaqrhgeqahdg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8894dcd5154ee0dced443938d74100bcee69ff405e96a13a5773bd8e9fd5897e", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3efc1002cb1888c04bc54f702212c757f2959e0dac4fdc920cc2d3a2f7a8eddc", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahsqs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fa72d3daea2a70e36bbd00cac29fd2e18b10960150ae43efb5f303183085a7f8", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b380fe64af0df335ed6c1363bc5dfd8e5d84bb3e0b04d531fe45eda443e3f85c", + "regex": "(?i)^https?\\:\\/\\/hgqahgqea\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f561b0ddb2a7f12741e0483fc087076b3dd64a77f0dfbf367a751fe27e9ab99f", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "892d4a0119650fb9a403b9ba01918a89a0b9fb96e39234508f03a329ca67da7e", + "regex": "(?i)^https?\\:\\/\\/dfghdfhgfhdhdfhdfhdfhdfh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4bcb08cd233470b6a2fda6e84ab4d6b62dcfdb1964bdac8b6c548dc6460e1ad7", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahsqs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "edebfd82d7655b4a6e51f78b414f3396f1d1b0f58d189edcd3460a601c83e8f0", + "regex": "." + }, + { + "hash": "461c5e56bec609953dbb55abd9d4e57274a15c8ec62a6125d699645a285cb685", + "regex": "(?i)^https?\\:\\/\\/egqaaqeghqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a9aba7ee3f0830183a44223323c07f1cc7a5a2384c6a82988c9469f9ad996304", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d09344710d44efe2ebddf9f95f74f0d07c0fe351e3b326a4da276623ec8a7646", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bfb93a9dcf3054558f723b3249674a972edbe66c5050ad33f621f428705d800c", + "regex": "(?i)^https?\\:\\/\\/comfortcorner\\.dealworldwide\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "accaee134e2e39dcc6de942206b4a76b2be8a52b94a881797477b46215b03161", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9c76ad804449c6ca5b095bc5d7ebe3307042045e5d68dcb7db21efdbecf3cf44", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1d20da202ed9d25f7b4faefe227d0183c1f9b49530f7278a22bfec12675048cf", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "270de38aa5bccdbb706997c0ff7a87e6e06c6187399b7785bbb407708b8bbd76", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cb8bf4e0928d8f308cca2a84f7ba01b9102b669926b60cea0cb107678539fd1b", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d7ff8308fa3a01a5e74990ab9e094a5b024b893236dafdefd60b23f9475b1522", + "regex": "(?i)^https?\\:\\/\\/eqahgbeaqghaeq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9d6672f0f049ebc525373fc3c8b13072d0384e34d20cd1e45265981dbaca8215", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ab73359e3fcbb1c96e7052c9338fbd4e7afa49b0f0bc9cb5e67cc3763c3ff5a1", + "regex": "(?i)^https?\\:\\/\\/qaegheqahg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3cec9f395ccc42c9aa9312eb666ef602c958d1ee769d9f68d2c1b16c8c745782", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2bf53a07490979608860324967118f3f6b6ff136b16c0cf5d2eaa3196d0d0da5", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "317dde16db755878329ead9bd3b732cf02d21d28105380dfb07c86a4199ce473", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a9efd2ad27b8b2c885dcfbdf6d1d30b711d98dded05b08ffe2a408db32c65d70", + "regex": "(?i)^https?\\:\\/\\/axzcxqa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5044fcc030f145eb20c86ba86c8180cabb6abb22197a949a986d32368c01a185", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3b0e8e2a4634a5ecf86960c0e17c3e8cf28ebc43655b1cb23390204c08265c41", + "regex": "(?i)^https?\\:\\/\\/hotboy3103\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9a04abca5b1f1c5a08612cd097e47966171c46128682fda3a178a5d2af7c5f71", + "regex": "(?i)^https?\\:\\/\\/dfhdhfdfhgfhdfhdfdfhhdfhfd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8f6c6ee6989d442b2cedff9d3e62ef4477c06da92352ba77fe14438cbce09410", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ecf152363e230fd062b410d10d0c59a451df6135a4dcb65940aaca2312a90762", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a309252776e1acaa19194018b1f3b4e9e881ac1d1f25dadfc8aaeff052263654", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "daaede1244c544673e9f300e3876032c8ef9f4ee19e453e3f46346291992712b", + "regex": "(?i)^https?\\:\\/\\/genretor191\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "877dcdfe101bc9ee233fc6d5f991b578102e5d96e25d5faeec0119c25bd3f6fc", + "regex": "(?i)^https?\\:\\/\\/hgqahgqea\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "61a46017e18fbaf48d9c85037449c98a3f9ff30852c528b041ca2b08a9650474", + "regex": "." + }, + { + "hash": "f3eb66826a2860b1c9e28caec0182c5a5060f299c82a7f218170ef0fa082403f", + "regex": "." + }, + { + "hash": "ab36c63f7d27adb414bf531a6f7698fbe604399fc22c52576973e8dd1035c898", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "53b00267011c1f7311633a4d47a94ee41d9115609029f2d731f1a993f2d8f987", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4761c40f86422413485813c4d83d99a51558924ee9cac1e08b8fabfdc89766d1", + "regex": "." + }, + { + "hash": "27688784add68ffa981e797e190a2b1a96a4f9df9e72f30e8e1f049cb4071339", + "regex": "." + }, + { + "hash": "1f57c4271a648e10c384eb2ad5293856cc3e27e1b19e5578258610ed08fcf789", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a1935f6f1d81005717e6a76c365d13fad30d625fec9d08bc1c675030d3961ae4", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6f90a47bef54998111da79217baaff7e8d00a7b5d3509a6edf077dcb95c733a3", + "regex": "(?i)^https?\\:\\/\\/egqaaqeghqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a10d950fe8f5bab7778f998b70c012f38f1a8bd1b68ee7e12e5b35de1a1459d2", + "regex": "(?i)^https?\\:\\/\\/hgqahgqea\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "83dfcb5f92286629f736ef6d35aea21588013249d270353b602f5a628ed82f11", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "640b88897100ef8707c97322a744c5e0b7b02d7b0d3796b911395a5f7bdc9c8b", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "23f03d22871f69bfa41b84ca6b3bb844066e4ca4d5ba97d68b7a5b9f5071926c", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5e648f9c648ca976132a7fba5c1fc287bc617eb2b167c37a92dca9cbe168f84d", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2b077658204ce5b915447ce0e8df0788158b54cfe20628a1ac04e6a5694de3af", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bf856e52f75bb47c52ba7fda715cbeac928778d1109771f1aa04c434fa8c154b", + "regex": "(?i)^https?\\:\\/\\/qaegheqahg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "648c302372df271e58ddf274bdd0337f628003ebb3dff98b411083571b93bfe4", + "regex": "(?i)^https?\\:\\/\\/tasxwxf\\.com\\%E2\\%88\\%95aoziib\\%E2\\%88\\%95wkwdu\\%E2\\%88\\%95fyjzay\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bhvdadl\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "78c50c97dfc1ef27a9371e0f3e80b6bdaef2fdbb968d6faa8f4bca5c598be9ad", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d1b7a9390c7ddf9c23a434f1945b582ffdefa34400953c3792ae607f45a606de", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjjfggjffgjjfgfgjgjf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b4bfd8bb0fa6642b6706f9de438ce8f13ee14b67abeba66bd344cdf657af003e", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9029ce606f57cac1ab3eee0dfcded4b34e7bcc63bd6a2e21a00d9b8c2759cb6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+logo\\.svg(?:\\?|$)" + }, + { + "hash": "a50ccbb7ec193f2ecb40b41464517a777558b354b4653323f086a61b40b4113d", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3df5b820c4ad07b7a4ae8fa37fe604f34ca1677708c3935a71948ce5a27aba66", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ab2d96f8fa7c64ff1f8af800ee26c9d6a0b9e64fca5925a2cef6400ade77b030", + "regex": "(?i)^https?\\:\\/\\/hqaeqadhgb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6c7397b819a8a913c3350929bfe7ef146170cedf7a2110d64cfd1ffe79b9b99c", + "regex": "(?i)^https?\\:\\/\\/hotboy3103\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a5d6f8574c5e23d5116163064013766cd3204c833344547980cabf48fdc6c833", + "regex": "(?i)^https?\\:\\/\\/dfghdfhgfhdhdfhdfhdfhdfh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c7cf6d9f24c6f2ca2e6f85c5ad27425f03c7f4bedc41212496ae90bd34944e85", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "493bdee4b027dcdd199257848021a19b3862c6b34e9a039844ca6f5721f3587d", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9fa88e2a948a16e252b6a343885503c7552c53e5f1b16e2a5221f60fb30f6010", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "539c3dfc2ae8afcac7c8033041163e294f959947004064b44d57a4d6e90f8e02", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "558d019f68ab817ba16f1216e5a945d456e0b6f2d06e4a9cf3cb08d04b9192e4", + "regex": "(?i)^https?\\:\\/\\/eaqhgqeahgeqa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a36aeee931fb89a3f12de7513539ff5230015ea43c4808ff59a8cfeb3dccd403", + "regex": "(?i)^https?\\:\\/\\/eqahgbeaqghaeq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fef30e2fdd8fbcd882bf7c03f4c9adf39599aeb4bdd6e5ca6c763f98697b10b3", + "regex": "(?i)^https?\\:\\/\\/rosy\\-whale\\-mwt88g\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ab3631aee15a42ec5a91d84a23648dcec4669df425474d0cd871203fb040c767", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "60fc6231bd3c959ef65c603c15b61baa8f53631268d8917600a3743d3c89c16a", + "regex": "(?i)^https?\\:\\/\\/qaegheqahg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e6ba9d155f3dc496e900f7625c3c876d79c9a36784a59b7ad30fea7ef9e9a", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "291661de1da6bc89f96bb4e97fe3113ec449df8fd98360763848d2f0925a2196", + "regex": "(?i)^https?\\:\\/\\/dfgxdfghdfhdfhfhhfdgsdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "38da0eda4b784af73abf0d4121caa8271190b7990dc169670ee3bb7dbe9bb3ac", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2c8910d749d6246f32fd814a0845e15304e82885e41bca122d6f86b008a4c805", + "regex": "." + }, + { + "hash": "4222a6007c939ed5bc65f5778558b1f8f3d58f10a51716c0c4398fdcb3c0d3c8", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjjfggjffgjjfgfgjgjf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8b7cae6a64ef1122be579dce6ab680c250f3774dbd729a4394dd5694b206c548", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "48244fb0c037a14a323ec604ad4c1ad8e8891f1d5225f8d12cb291db79548635", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "431ea7a4eaef457bf5015d97a7f47b04d584ec5b48d13f4e5d72d80d1df6f9f6", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3d07367a14bd2e38da7923221430e408790c786a2cbb973512779f344239813f", + "regex": "(?i)^https?\\:\\/\\/dfgxdfghdfhdfhfhhfdgsdfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a41edcf99052c172b41fc09e0cf9055c19c2ade0406ddaf4108b23cd764ff361", + "regex": "." + }, + { + "hash": "2bfce669c54653c371201b346a6c410912600e635ca9a65e7d307fe2d2d26c72", + "regex": "(?i)^https?\\:\\/\\/freerobloxgeneratorthatreallywork\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "887800e75bfeb6d4aa096d11b830d2528e07bb6cf2579d8c1a7b84cb43fbb11d", + "regex": "(?i)^https?\\:\\/\\/blokchain\\-logi\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1847d8b40d663724a13b87f2b7ec2ad143511dea07871267abe27a3d9d904d05", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "df404e382d913a921160195c0e05cf02b98758381bcbc15bd2498f25daec4647", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index03\\.php\\?\\=fcrd\\&belgium1729913081715\\@icloud\\.com$" + }, + { + "hash": "0673559a6c1c0488fdfd7ec96ee8d0823dd33b4843a2f4efac3921afec3dd0f0", + "regex": "(?i)^https?\\:\\/\\/muscleshirtroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e38f0b631995727f0c68376818b10d1e9f59204c39ef831b2d62467bc9d9ee25", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b1642b27ef6446b70bf3e0b74cfb2735f40956e62ee8df68f4196d8d9daa8c09", + "regex": "(?i)^https?\\:\\/\\/qaegheqahg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "52dc8da1032b7002b001a63240fb7aae8372f0e6c9fa49932d839684532e211b", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2349fd0ee1dfab91d8bcf91e51fbde1ef8a838a2abbb0af557b9af9ed3ffbf60", + "regex": "(?i)^https?\\:\\/\\/yfqfznqnek\\.com\\%E2\\%88\\%95srypvx\\%E2\\%88\\%95zjiqhacy\\%E2\\%88\\%95uuhkpju\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=aingmixc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1933063569201e5ad4235328c1f9a2ae22f3e0038292a0ae91804a20f9f57ede", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "842089b83873e029a3fc3991f69d89c48ee7e0212caa60701e631295053c1bc9", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjjfggjffgjjfgfgjgjf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d508dce6a0ccaabf4e5bd7ea9d4a0122f9ab0e968e905d8bb9c80cb61606bf1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?organisation\\=nwo3rrbm2fe5jfe5ri2pfe5r\\.sfe5\\&adobe\\=ZGFuaTJwZmU1bC5mZTVkYmx3bzNibTJAbndvM3JyYm0yZmU1amZlNXJpMnBmZTVyLnNmZTU\\=" + }, + { + "hash": "2942338b7f6aef22b9825ca5cafe6c58830e139d15b0068416298a16ccc52880", + "regex": "(?i)^https?\\:\\/\\/axzcxqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "98e33b951463b92bc539d8672cf8f53c7f573dfb71e1d53d81b4c38d09368853", + "regex": "(?i)^https?\\:\\/\\/jenkins\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+ll1I(?:\\?|$)" + }, + { + "hash": "6b137c7a882c4be774e6f7c3fc7f3469ea0333e290c5c5eb0308c16e57ee9310", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "337e16a7b5ff755b7eb8c29274818c7e06f44607fada371b04c2578da376d1e8", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4c351dacdfe776268d878fed12dccba801694dda8a3585d4c835029fc7cf272c", + "regex": "(?i)^https?\\:\\/\\/hotboy3103\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0dfba0dd113500b569e02306fe8f501edfd9c2a22bd42195578511cec511553f", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "df6845cdcc9ec5800561db6634b4dfc6cf751b03b29aaaaeb0bc10c61ce4e659", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "86131d8beedd9f471e0195afe74ff1b15aff2ecbb98e1059f1bce7f98601891d", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "32c4217d922d917a9dcb4dd80bb7b075294ecb6734290590cb17c071f4936020", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d5baed913de3d8e16b6b7012d3490e7eafef48030b2fc7af4f5220d9671a4d14", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8b69c183181b57c00c4e9aab8b70395646b9a72b983fcd0e0ba83035529843e9", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3cd8249357bc72270a3d1f6da2c02d40eba7b560500ac7c3407bf0d4fe99af3b", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b079017201221ebf760677dfe3ab3837fcbeb75956b0927d1073f63ad53a7f35", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahsqs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "35719b19a2c6dce8e91cd71e5dbaa4492e36b40c25aca50818c54747fb76e527", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cd61e72df1f2e714cd8826d8c889d0c60f02b59711e551f4530592444494bf8f", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "64c90973be5f437982c491dceb55e326f77dc2e979a59db87e470e0acf5c1663", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6ce4817d7f8a25d7a8390035556eeb5fda2e52f10f01d0539b53f99068607299", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "72133b4396a041f01d171cde440451d0432117e2126d4a59add31df1264b7c1f", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f3d1099db6dacf6d027d1e8f6878eef355f7e0697018ba1713fdba4aa11b26cc", + "regex": "." + }, + { + "hash": "0a6f3b6d3b756c71d95cfe3a35783e5c532cb1957dec785e589807c38b475476", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2cb71fdb9a9f6c454e8d6526eb0f8f49982af02a58863b9b6da165301cc19288", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b3e8f1954657e184d3c2df5cfdc68a7298d8e23701d4ee9f9d633914981fd7b0", + "regex": "." + }, + { + "hash": "171cfa2710e9e5db7f7b4aca9fd86270ed5049a7bc90cd702710c2263e222b7f", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4e1a6b8fa3537e7f0b6d9d6e9ed1baad932f71d60d1c89f954250c818dbc49dd", + "regex": "(?i)^https?\\:\\/\\/dfhdhfdfhgfhdfhdfdfhhdfhfd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1587078ce1a1de3ef5f8fc0fc7da45e7270092bfb267163601b9d37d958eae5f", + "regex": "." + }, + { + "hash": "f7cfec680713add91a8dc8190005495ff893b00331a90675ce57046cce74d57f", + "regex": "(?i)^https?\\:\\/\\/dfgxdfghdfhdfhfhhfdgsdfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bd1633061f16beef69fdc0dcad6c48395a847f4876f9a6de195281794da0df7a", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4f912df40bb90583be6783b6d0106fc453fda6ad6f2fab7b485dc9e6951c2c2d", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0ea150336b3e699571072e77396856bb2132ff699eca02824828e2bc5e4ff0c8", + "regex": "(?i)^https?\\:\\/\\/eaqhgqeahgeqa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "aa8fb01aec812ee9836047339f2dc24a54abb69b1419efcf372a5ca413293c22", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "347ea8683a7092dad9e3a715c524d1470f36c72c979cfee5d6a0f8770f7df34c", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "8ab253fc5c20d6bbd8ecebeaa117a681a6be40edbb0c299d88a2b1354905722b", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "77d98bf6b4eaea52efb31ee2ceb90970e2ecb74ffde46c2bc9ee4080f797faee", + "regex": "(?i)^https?\\:\\/\\/eaqrhgeqahdg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d508dce6a0ccaabf4e5bd7ea9d4a0122f9ab0e968e905d8bb9c80cb61606bf1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?organisation\\=patfe5ntstyrfe5t\\.nwo3\\&adobe\\=aGZlNWxmZTV\\.\\.\\." + }, + { + "hash": "ea86c753cd2be04178302a18c356dee1a30371f9208aace0f712da5d9baa32bf", + "regex": "(?i)^https?\\:\\/\\/eaqrhgeqahdg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "056a79d13109b1775607df648e33c38417b94c8ec23f7f8784d6721abf040a73", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f561412d14096ff45c626dbbf93b514e5ced2e711881bbf0f531e91cb151c1aa", + "regex": "(?i)^https?\\:\\/\\/eaqhgqeahgeqa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m6hsl6(?:\\?|$)" + }, + { + "hash": "d0287ae546c059e1bb64e1237d02e7f6928932231b567b6d9aa01aef44646bc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index02\\.php(?:\\?|$)" + }, + { + "hash": "0c8e6812524af1bcae1539e36428cdbd06dd0d5529b1c3cb6a68d960ddd91d69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?organisation\\=bnymellon\\.com\\&adobe\\=cGF1bC5ncmVnYW5AYm55bWVsbG9uLmNvbQ\\=\\=$" + }, + { + "hash": "ebd61a445697ead19f9fee617515426edc74e2f7620ac6173a8b62e28ae26e56", + "regex": "(?i)^https?\\:\\/\\/eaqrhgeqahdg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2fb851d3d19ea0511f5a601eefd087d73f6e81f4f4deb07a98c2e9b937226dde", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "495a3d84324d7abfdb6387ea7430beb88f7ee5d77fbd641fc56e673fab833d85", + "regex": "(?i)^https?\\:\\/\\/axzcxqa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f401d980ab475c6754b02cbaf084b4e6370b6f56129691cbabb1977475c93c6f", + "regex": "(?i)^https?\\:\\/\\/hotboy3103\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b319d2abf59a829a4094a06af097b7a5f225aad4af60236712f26202417be964", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "38622b5b624b5cb50967e82a7d2024d28658dd2229b063b5703f87afbdaa7146", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjjfggjffgjjfgfgjgjf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "735fdcd69ffcf32d60a4346ff5bb94a22b9138868abb4be034c90c6a72386e67", + "regex": "(?i)^https?\\:\\/\\/dfhdhfdfhgfhdfhdfdfhhdfhfd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e36a2d916da7b3d2dd199f3446ef97a7378c4b457ca4381d70bdfff58f4690fd", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahsqs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3b0efaa8a93d75031030f2f46ddafdbacdc766439678d0143fa7c3a6acefd3b2", + "regex": "(?i)^https?\\:\\/\\/dfghdfhgfhdhdfhdfhdfhdfh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "36c2ac4b1e71e02e84cc4d325cc3d99a26e800f940d8763aee947cfbc1485568", + "regex": "(?i)^https?\\:\\/\\/genretor191\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "15026189eba9e95bfc5a8832c001df1fbc5c174373ad5c258c79745243ad6330", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "26cc88390c30db92899fb8f33c322bf4c89184279c64f2103b684a0e410fc763", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "26a4e62222c56fa2c1fdfa2b541d3dd2ad1cd0201ca4ca90388c0f71272984d3", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a1f6db23386dbe9ddc9a9ac8039758db697efc4d9869e93f122e122bfc722d7e", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ba3193704ac5784ca8d0840956a9c576df6869ec88831567fff08e43e0ad1908", + "regex": "(?i)^https?\\:\\/\\/axzcxqa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "166959da6434f1bef842a118099b835b698b9ded159339503ed10fe0bebb33f4", + "regex": "(?i)^https?\\:\\/\\/eaqhgqeahgeqa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ce70039d10e5210fe5faece79edb3db081ad5291896d563c507d05a76060832c", + "regex": "." + }, + { + "hash": "dd2b50069fd6a38b5f86125fdb267e75ce98e3e4576e447a93c1f21cf87b4845", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3360c55a50cd1a2b1a7f8e56aed87f37c2923bf74a9883dceedde1e1f7ab8f4e", + "regex": "(?i)^https?\\:\\/\\/dfgxdfghdfhdfhfhhfdgsdfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f1cae82a40b207b73abd64f71d566411cb2c0bef7f5270b202f4e43ffc65a9a8", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0cb28ddeab3671febad348fb15eaf6109bf31a01090bde9b873e95741ce028cf", + "regex": "(?i)^https?\\:\\/\\/axzcxqa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e1207b67fd90762180c04b3ae605c4ec45cb07f3221e9675f5cc4e1179fbc38d", + "regex": "(?i)^https?\\:\\/\\/genretor191\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2e61fac35ce5c3a4e32acbf8799c90ca8d6ce895a09e7a103543edda30b9557a", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e0fb05329177c423604ac9bc8946769f27149afccfcf9f70615a5bd7a2c4aba3", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "12d40d032ac0a79fb521304cbe133dced73716f6606926cd8bf2c4e4c7bb52f3", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "581ef76d2fc1617a69278d4c1d4b92653bcb5cb73bb5c908f90a5fef218319f2", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2e5928fec075caeb6e6ca4b29962b3a12e3595affa446724edf993b9e4b64b27", + "regex": "(?i)^https?\\:\\/\\/eaqhgqeahgeqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "764493b5aa827e452f7d325a12f82d9f67a963d5a8fcc90d345d3c29d82630e1", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "90de33a99a69898d11615df11503e9a93a8b0e15a5f41e5afbebdfca41c8259a", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "413a00081726784724ef69316d1add540d280006781857cd2dbe954b32103845", + "regex": "(?i)^https?\\:\\/\\/eaqrhgeqahdg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f1e31093daad9577a1874f4736acfb479d6a174e802d09427fa4c8fe4269805b", + "regex": "." + }, + { + "hash": "39b76fe8ad76038d39fdf36e9a0748c582ddd24fb20efc017635a0cfc3a4441d", + "regex": "(?i)^https?\\:\\/\\/hgqahgqea\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "485ff27dd7312e687939fd660f950016294d584f921dd8a5acbd849715cf2496", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "89e7ae14e20afae174d027f99b4911bced4660c64915d784914a511d713a773d", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjjfggjffgjjfgfgjgjf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c16214392474df5f8d516b35c46be0bc19ee14d0ee9b0548becc494e83292cab", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6b542232899f8f282bef16b0e5129b3186154bec0992195cd33bbacaa6f7a019", + "regex": "(?i)^https?\\:\\/\\/axzcxqa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1fdbfa256877cf8d70f22afa6fc69513345640625f15899e814e8370b03df94f", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b0d569ca1e24262b41c11c04aeb4c83199e685fc3f78f4f529b9ba470189c512", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "58e4cff95a38cf929b8efbeb0608603378c2573091ba01115d8ba57876be4919", + "regex": "(?i)^https?\\:\\/\\/genretor191\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d6bfd67ec260226d2e1f2ccd4fbacd4032b4ff9a6fd0f6a72ed946d23e8adc40", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "db34ff827cc50831bf733b78e52fbc07118b95eac2f35580c92b4cb76a50414a", + "regex": "(?i)^https?\\:\\/\\/qaegheqahg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "dc893be739f891eff2fdab107b11974252ebc0dcccfaf5e0e7910b451000bec5", + "regex": "(?i)^https?\\:\\/\\/dfgxdfghdfhdfhfhhfdgsdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9a68bc72ac81ef665b60b4534630bd2369a6aad9421965715184936b49702a77", + "regex": "." + }, + { + "hash": "8b69a62c461a7995d0be9bb4b93bdcd6553f570f5d930449e21b42edd3d03ffe", + "regex": "(?i)^https?\\:\\/\\/qaegheqahg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6a206e554cc5c82583fc59318cef2f2157d86dd048b3a89c8b1eb5421ebd800b", + "regex": "(?i)^https?\\:\\/\\/eaqhgqeahgeqa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8ab4b1e7f74420185f8bb8413fbc993ad312ba8f030a90993e45ddba4b9ce668", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1a468b5bd84875dab5629c91411b7af79f2637744e8184caca434af76fb8c3f9", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "efe6beb054714a254b67a6ae12f34b133d6057e205776f11e53be2f13ce8362f", + "regex": "(?i)^https?\\:\\/\\/dfhdhfdfhgfhdfhdfdfhhdfhfd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a83b14a45cc43dd6ed34164ec2783defb1e19e3418a8d0cde917b4761fc96b34", + "regex": "(?i)^https?\\:\\/\\/hgqahgqea\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "864cd20a614af75494eb70c532cd6c483e8c3fd8aea22865e3cc1a625a35d7fc", + "regex": "(?i)^https?\\:\\/\\/cdo\\.leadinbox\\.app(?:\\:(?:80|443))?[\\/\\\\]+ll1I(?:\\?|$)" + }, + { + "hash": "297c605a9a817ea4432c6dee440f076bd7baaaa708154ec568188d6c18231b64", + "regex": "(?i)^https?\\:\\/\\/freerobloxgeneratorthatreallywork\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9100f72cadb6aa1570f190f0f8b23cd8c3e8ef8db2c596cfa3f30e6904eb4318", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "09a0defd82cd5fa42f5e31d198711568aa230ea1cd0541a1a7a48bf63a52bf57", + "regex": "(?i)^https?\\:\\/\\/eqahgbeaqghaeq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "64d8c30abc440fa4fce942f1b9b25986b843c595c02eaa51634ca49cb926adff", + "regex": "(?i)^https?\\:\\/\\/qaegheqahg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7b5d2df6f61ae75e2f8fc24f4bf27ebd84f344a2f0e55faf3577bde69e96aa04", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a8de76695f1810876c7c740c472fee38c0def7d549930ebde0ca8d60b2c9f5d5", + "regex": "(?i)^https?\\:\\/\\/hqaeqadhgb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "658b11a8434d7c47b90e52d72cc626506906ae9e5d52826a086baa613792119f", + "regex": "." + }, + { + "hash": "631a172f5519d9ce9e0aa9cc4a476220a397fe539b803e6d91886fe517f0cfdc", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjjfggjffgjjfgfgjgjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "772bb4cd12f3ea6eafda60551ff0b341cb6e002092009bccc8aebf9d4839a71a", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "634f0b28b5a21fe712562645097e79f806b4693e17dd62669ef9ba3ccf25bb02", + "regex": "(?i)^https?\\:\\/\\/genretor191\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eeb4e711e154442e2b1ff9c4d8cfd1a3307df5d81fb560390e560026e23db591", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahsqs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b277b04b52baa1ae5d83ee98263444957fa2248ba700a1f0fc312a76f9ebce50", + "regex": "(?i)^https?\\:\\/\\/egqaaqeghqa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bd01e4327cd15a99aa574cb1847ba158a7279fe4302937abdd5490c2e8ae7863", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahsqs\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9f66e81bd0135f1302a369ad464114846f2420d3b26f82f0d4deb0def2b6b843", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b4fd565598ad19e1c5cc94e42b73a6dcffb8ffa89384e96a98468aec5476e496", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cdbf9a3fc455961a450ca0fd18d805669fab98a9c778d6d93ed8ca7bd55443b9", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "96584bb0e9ff6684fe9ca4d57fee86cc7b3537b03979fd966ca96c4bdef719d2", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8da7d62cb614683efdd3e1e45549b6040c93991a47c46dc481004409ea021827", + "regex": "(?i)^https?\\:\\/\\/dfhdhfdfhgfhdfhdfdfhhdfhfd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "01b9b9400a55f5b05325a031f04de051318e657f75e5576a37adf2c9d10e09ec", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9616f7cf5ef2b333ddd1890dbf882f09bd611a882326102a26f3dd3a624fe918", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "705ae71fb64972cfeadec8773899876c50ffda723b7bd44022c611992defcca0", + "regex": "(?i)^https?\\:\\/\\/hotboy3103\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "af3a97364dc3315b8bafd5315f3b09f70b37bd56c863cb851fbddbc712488cb3", + "regex": "(?i)^https?\\:\\/\\/genretor191\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6403978fdb480096f716f3a8a721a7c928ff51f321c69451176fb5fd6dcc4cf9", + "regex": "(?i)^https?\\:\\/\\/dfghdfhgfhdhdfhdfhdfhdfh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ff80fde47de88992afaf9310f36d64d7e03da56d2d23b68c4df4c5e20996f807", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6341b67a5701a6b711254cc744904f03632cff771e8fa5dc4b61c8c36ac663f7", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c2fb8c25f7913c77b9c931aa85538ce730c477a84a111ea966eba214cbad1029", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3d0edd879a5865b1cb0caa3c3994cbdebb7a4cffb601a9c433197cd6db98afca", + "regex": "(?i)^https?\\:\\/\\/egqaaqeghqa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6d575dfcfb6a2008bc35121de94f363b07ed771b07ab3294324b51a75acb00f0", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1a7f4c5adc3cd83c51e9b905b432e90c7880c7faaa2ba86ac24fc003da0c1a6e", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahsqs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a9a9f70e3bc1a5755ffcf3af6b51377c8038aafd1662ac0e7720ce868bef8e49", + "regex": "." + }, + { + "hash": "b9d9b104ab94f5ce1e84176d041ec4c39b735223eecdfd88ee666cf58fe5b935", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "de8c7ac89c80bc39b5b811a210c9423eead086d203b97f8b718ff71f537cb642", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ea8c0fb6a9c0bbb1259fb9120665fd85aa17555d23f97f153b2ff3eb961dfad4", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5a22b6921f8f37a1afd8b6568f5c8a6f433654a61352261bd35d6d867931d63c", + "regex": "." + }, + { + "hash": "b5ab87ef83ea1c6453f1a3f4977c4da16df44820f3976ca34338c8a8a486c825", + "regex": "(?i)^https?\\:\\/\\/ahiwbfc\\.com\\%E2\\%88\\%95mxrfwgbymj\\%E2\\%88\\%95rikpqid\\%E2\\%88\\%95eccqc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=yljhwubwk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "858aaf6415367a6251bed259cfeb16af728ecb521200e08ac5e514817f657915", + "regex": "." + }, + { + "hash": "da72cfdb015f8210a9b04c738edd658d79431ff26c411a03b6f8599f9f3725a3", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bbba0a9ab2ce66aa94c1fce75907e3bc19af702724476e3dfa876818cfcbd60f", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0c8e6812524af1bcae1539e36428cdbd06dd0d5529b1c3cb6a68d960ddd91d69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?organisation\\=patfe5ntstyrfe5t\\.nwo3\\&adobe\\=aGZlNWxmZTVuLmJmZTVyZ0BwYXRmZTVudHN0eXJmZTV0Lm53bzM\\=\\&sso_reload\\=true$" + }, + { + "hash": "4abdde2f17049b752f269ffa0fdb61b0aeeaf5f79a362848bf7faf06233971a4", + "regex": "(?i)^https?\\:\\/\\/hotgilr2001\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d67c7b77b669dd0cb3990ed8d1c030b74d99d5686693ea17fd189314723097e5", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0bc64f3f9f828f7bbe334be4090768ea9a683b4dc03e64bb738165cd029a3e62", + "regex": "." + }, + { + "hash": "2bfc58c2fa4797fcecf1a272ccd8a9cfac1ba0d25fae9e7acf2cd7f5a840d2e1", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "902f649f7800da7ad4420364ae9753f439f08e666faf09d487bcf1d770a20114", + "regex": "(?i)^https?\\:\\/\\/hgqahgqea\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ad421af8ea18907ae4e4dcb622c6b13522eb7e804ec587c36f354b3f6a93b7c1", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c8e45088a5dd8c26c2501407b40607d0440395b2f0497b204a12c3980b898dcd", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5bf86cc4aba033c78d537adee9cd1c46513e7833432f36e54e7ba6fb873e1d83", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8f3a74e05b48f8e226ccc002e0b1f55cd45e63d05bde0aebc75b821cc4c460b4", + "regex": "(?i)^https?\\:\\/\\/hqaeqadhgb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "64b19835efdab1b39d8abfe79736f19e67f2ad0802fc025e1828152e4ceb298d", + "regex": "(?i)^https?\\:\\/\\/eaqhgqeahgeqa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "df6200d709720827dc538cb78e7a6845b47d873d478f1867fc23bd4be1955a4c", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9b87f5add736ba463b47deaa98c244e47614b348c348a35294d0d29915040f92", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0c8e6812524af1bcae1539e36428cdbd06dd0d5529b1c3cb6a68d960ddd91d69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?organisation\\=patfe5ntstyrfe5t\\.nwo3\\&adobe\\=aGZlNWxmZTVuLmJmZTVyZ0BwYXRmZTVudHN0eXJmZTV0Lm53bzM\\=$" + }, + { + "hash": "e8998f1d25a1f98900da7f4375336aafeeb5d9080483c3ae454b47e9f88e29e7", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e2dde246162aa6026126f08b9379f59206eee8107b6de9db7a28bee96fe7c777", + "regex": "(?i)^https?\\:\\/\\/eaqrhgeqahdg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a1c72f066355b3709002668b3f82d5e31eaff99a895dfab269bb028d6afde31f", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahsqs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a6af765e31ddc72087ad6f33e64a91f7af0183e2d04743cd0bfb9e4f49f1ecf9", + "regex": "." + }, + { + "hash": "7a672f394f825ff379860b0c559c9280fb1d2ac71e3cba606324a291fa759e25", + "regex": "(?i)^https?\\:\\/\\/hgqahgqea\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "46d9cde8696eb754c414ef1d30e25dfa7387cea9fbd939b00917fda03c6b7d30", + "regex": "(?i)^https?\\:\\/\\/eaqhgeqadhbg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1400850a80bb4cca63173606ac7d74983691e2a02c01fc5483cbac8baaafda92", + "regex": "(?i)^https?\\:\\/\\/eaqrhgeqahdg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4df516900833061eb42c4e0dc9d31468360f21cdd61436671967aa5fbdeee869", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8f512e3b8de6ec28eba30bf2bd4189866443ff9d50c2724099b5c74e30c55e28", + "regex": "(?i)^https?\\:\\/\\/qaegheqahg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8497881f13ef63fa853e5a5a1bcc05805ea512a4055a2dcd505c1f05533154a2", + "regex": "(?i)^https?\\:\\/\\/kmfyu\\.com\\%E2\\%88\\%95dpjkurq\\%E2\\%88\\%95ctlgmo\\%E2\\%88\\%95iiifx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=himiimjksm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ac51780bb95950386cf85d1f9f3515d151008a6318ded052ae448aff373a6464", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "25e13f35eb9f33ba6699a95280e9a84bb84630f5b8dbbad7abfbfdaf4f853e9c", + "regex": "(?i)^https?\\:\\/\\/hqaeqadhgb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9b6d31adb10c2e0d34bf0cb0e4aa8308e25bfe6f944c31acaefddd21ef1006ce", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e3bc77c820cc0f6a2af14a7c85731880aa47fb7cd5b667141c111204dece8988", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ff1cdd4edf7848dd7733eefeda612fd5ba344f2978fb619fe84e5f2220790c6a", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "50e1a38240056ce632529510651d33266b27059b7770b2b10ce2de4da9d285df", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "92d8722075d8ac77a0e9393a90cd2c98dd71a2ef5b8acc7e900faaa63fc96867", + "regex": "(?i)^https?\\:\\/\\/charity0729\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0292411cd3385b82f1a972a88c53a3a8a5ae70a53df37417e2235c3cc36372d3", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "521ba98c695f1ea044ec3d3a7026a9c8af83fa2ef6017f98041d4471cab47144", + "regex": "." + }, + { + "hash": "c02c37690b01a40d58e11d8b91ed135b90e487c5d990decae23d1819ec49f3e3", + "regex": "(?i)^https?\\:\\/\\/genretor191\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "29992f8a831e38aa7104678c282d2b84c29c9f3ead8b44d7c935cbd6625821be", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "554c620546b17c8acc989a90b1850527bb6f498ed958799e2dcc4a669e9cd838", + "regex": "(?i)^https?\\:\\/\\/dfhdhfdfhgfhdfhdfdfhhdfhfd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "50e0ec6cd9278080a37cbe1b3a642c76c3a12f239b07111c665da42f4ea4d0b6", + "regex": "." + }, + { + "hash": "70c8fd2811e4d168cfab74675fb45bbfecabc29e8c28c9c551398cceb248b108", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6856ed91bf3cc02f4ab2b0d9806bbdbe7cfe7d30e8927e7065ae9bb65eeaecfc", + "regex": "(?i)^https?\\:\\/\\/eqaghqaghbe\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "78b0142187c338549af2de877490f563f790e23d10a13663ed9d16164537e453", + "regex": "." + }, + { + "hash": "0027b6346395ea75f766f61ffc7fb69e8d586a229d768a4d37c69323b8a1f8f0", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d3c011d932992356bf036061b89e58fa60b8e1e9939f7a70b8cbd4d0a723614f", + "regex": "(?i)^https?\\:\\/\\/egqaaqeghqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c51c63dc75524c9db2ec6448404eb1d94922d22e0f2b53853dadeb8b4aaa44d4", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "65e7c8e26088b185b65e88f2d6e3c0fd8c4f54a6f33cfb250e54bf84afb5e09a", + "regex": "(?i)^https?\\:\\/\\/geqahgbqadh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "20883f70e3f37c3ac6acf877c5026a8e983c600200ede402709634a2d56445a6", + "regex": "(?i)^https?\\:\\/\\/dfgxdfghdfhdfhfhhfdgsdfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "41a615f6b4c0979f14dc07411c478d6d03063fd1a07df4ee0fd7ad32d2fe8100", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3c238724bfff271998f875df6f6143246473dd1bcacaaaea051bf867f2812538", + "regex": "(?i)^https?\\:\\/\\/eaqrhgeqahdg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6821c3f454b080157a5d89afef3abd2bc7d69492646192806460ca22948b2ed4", + "regex": "(?i)^https?\\:\\/\\/hrtzrqahqah\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e0a381cd58248259913caa8966c2a650c28b7fe740861523b1dc1d37aaf6cb05", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c2b5b27e0db00e885e0b0c0aa76d02e9cccfafa76d067734142b59a622c81096", + "regex": "." + }, + { + "hash": "972f1e652efef03337996ae3d65a6b5304d8bc56ef0a9f3bef08534592b3e033", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fa715adeb394065412522c83250e652f1d817d4aafc76019e976cf23c92395ee", + "regex": "." + }, + { + "hash": "4ad1f7d34e5ddc20cc5d34da066661dd74467ee282abe751bc04a89ea2654b90", + "regex": "(?i)^https?\\:\\/\\/dfhdhfdfhgfhdfhdfdfhhdfhfd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cb160b2699c6510505a2c9cc4b678d0ac8baf0b2a27a97c20708879f1ad56ad8", + "regex": "(?i)^https?\\:\\/\\/freenetflixbyuv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5b298039ee0e886195f28a337b25d63f718a7c32b33fc7aad1771a5ce0d4d9f3", + "regex": "(?i)^https?\\:\\/\\/eghqahreqahg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a2659d8dd8173122efbf1a8b1185b6abf760dbf69fae0a82d75e4c48548d0b56", + "regex": "." + }, + { + "hash": "d92a9c7625efef0e11838ecc5c3876ef4fa85150929622cb807ebd40dc9dc885", + "regex": "(?i)^https?\\:\\/\\/eqahgbqaehxqx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "db182d7d236589e6c40ba1d5732c223671a2a69433f5cc74e17573a3d20fc5a5", + "regex": "." + }, + { + "hash": "fc8299d569d666b1f3a88ca9027391f60e16590ae08eea881fa30b9c23cf756d", + "regex": "(?i)^https?\\:\\/\\/eaqhgqeahgeqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2084335f6c105133ab7beec6c714daa0369f48b0fa96b5474e40334d40c28ea1", + "regex": "." + }, + { + "hash": "5744d60c9de34e7bb157542799182f085247cd9ec480ddb7cc8fa9ac770818e0", + "regex": "(?i)^https?\\:\\/\\/qeaghbqea\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f4c648000128509dd142d66639d27338d7e85dc79c641669c26f1620159617d5", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestvotes\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7694a3a4032b8d107449645aa37254d1cc1fdafa59ea1ef0189faa83d15d1901", + "regex": "(?i)^https?\\:\\/\\/eaqhgqeahgeqa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bb374ed59808b825c4b055b6867ce00ca620a5458a5e007af1a909b522ed7af4", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjdfghgfjufjfgjfgjgfjfjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b2f9e6705a6bd7ad263157bd7ec34f4e35dd4e60c422189e354eefb79dc78152", + "regex": "(?i)^https?\\:\\/\\/hqaeqadhgb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cbd313a35b8ac0fbca0eb6c7edded10ba8f553fb6d96990a99947eb7dff20d1d", + "regex": "(?i)^https?\\:\\/\\/geaqhaqd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e70192c9f8de552c829fff5993ec1e502afe686af688fce1900ce2c298471821", + "regex": "(?i)^https?\\:\\/\\/eqahqah\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e4913ed399071ab922e7ca408b93b1a5ab17c12019662b76c721f30a83b15407", + "regex": "(?i)^https?\\:\\/\\/axzcxqa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b73643f41d2a130ad21ebc97303d89bb7f9c7665c92f0f829f5cc892b959cd9a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4240e690439dca72de3f8a98df7a4e344816d0cd313e54414bfc4feed5c3d1bf", + "regex": "(?i)^https?\\:\\/\\/lumbermen\\.com\\%E2\\%88\\%95zcpfh\\%E2\\%88\\%95ntbywjyr\\%E2\\%88\\%95lhtzncjr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=huffman\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0c76419bb6daba22ce6645a6d60c45c3b5dab91a2b4c35d0578e134ea3694473", + "regex": "." + }, + { + "hash": "806968512940b3e0b088ac3e78f4e7b2c4e9923a7bcf9cf74f55a7e3f097972c", + "regex": "(?i)^https?\\:\\/\\/les\\-cougars\\-site\\-de\\-rencontre\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "64d86878d7d54274328c697e452d665f7ea1db55e996da71ad9ecb2c19690f22", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-videos\\-porno\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "58ff1bbfc79bb6f9fc97c9bd462f09f106a44310473a59923e6124b754e2f5bc", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-femme\\-mure\\-coquine\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f1aefd47a18ddc60bdd8fbbd29963761b7e08c32f90a6cf9960f0519b25dc3d4", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d4ff4f6d363d9f27554738d41315a3d0c42b93fc4e3bd0cca87e58c24779bd1e", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c5f3a96d7283217f7f8bde1d7bf54876523712f27b8142f351c522dce240f533", + "regex": "(?i)^https?\\:\\/\\/gbdzqr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d0ed80c7f4a8b395c3bff093be6ea6d5f4cca4a51bab793c0b73aaba5e546", + "regex": "(?i)^https?\\:\\/\\/snap\\-hot\\-femme\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3f53b18dc9ac9c36c0d955568d4a6f8e7d55df189bbb6a9b5f41afd1d073eadd", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "55b00879eae618e7b0d21c990e2cf495a708e762d74ae288f9d0c8fe1de4229b", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6406fca7e1dd01c02ccf36932d7d90f87208b42e4955aa3797ed1aca40547a77", + "regex": "(?i)^https?\\:\\/\\/vote\\-peace\\-supportttt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6b8743e493a1297211e606308419fbfb933143ebcdc800c6da2d111b1b574329", + "regex": "(?i)^https?\\:\\/\\/fkdo2oznt9w0920f9ocnekwkk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cd29ceaab86923047319ea87a66dc750de3994f96b157d1769e8329ab77a783a", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "052fc512d799cbcb66162154ff766e32e46d3d5cade4132b8e01b71e6c1feb2b", + "regex": "(?i)^https?\\:\\/\\/videos\\-porno\\-kardashian\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "87d5072dfa861efef4bc1899875d001a56792e6f676bb4b456c29355ad5022f0", + "regex": "." + }, + { + "hash": "f57ef88d059e24114007f7b21bfdf238e4e1647054d2ed180388714303729359", + "regex": "(?i)^https?\\:\\/\\/adresse\\-coquine\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "19533a5a5f38ca99d773cf793660a0bdb8327340b1ea46f29b2f5177c986738e", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-plan\\-culs\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=f\\*\\*\\*\\*\\*\\*\\@c\\*\\*\\*\\*\\.f\\*\\*\\.gov\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "8affdbda809100b018c25dfe228caa034a726b4f5eeb32c18fa8d16f39b5c4e4", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ce33df7225bfed6c844f1a11d6545f7655c678ee5906dbcae4fb3b8639a52c3d", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-fille\\-chaude\\-snapchat\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=o\\*\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "e82dda646052e7ad53db3a1647c8d0e0f8135758125031f10b074b2a13eb9fba", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "15c69852eefe33080b6316afe92043e1ebd2da9a9ffa5b354b349ae48b024fcf", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "96504b871dae38a9be93cec9fdcc245ff975e4cdb80a0baa3bd237516daca5b5", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-fille\\-chaude\\-snapchat\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8ab9fe6cd917abdae5dbfb4ab9b5773b9633f67b4b801df33601cdb920a1889c", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-plan\\-culs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ce92ff8551e960fff5654eb5a7c566c318bae5b55532ab6e9ad9787a25c7f5f4", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f06f96bcc075676970ddd9f66bbf51d0015473288718d1df568db74a8a0cbef2", + "regex": "." + }, + { + "hash": "8cbb1792273e06fe132ae6cb7907e0bf3bf4ac1822e3d5d4c6d7ea28676926e2", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-de\\-q\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3886c3c6675f60374f5db888283b1f562fc436ce359af9a67add10aa087d310e", + "regex": "(?i)^https?\\:\\/\\/les\\-cougars\\-site\\-de\\-rencontre\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f4dd9b520fab999e97a6fce019a3037aeac30e82a39359ddbf0eed6f91e5bdf0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?\\-O6BFTUZYG3E81\\&KRJ75X2WC4MHAIS9D_0PVNQL$" + }, + { + "hash": "7a44b6acc2274b1a27f86e2db26f6bc5758394b183ff7ed6b82a8c3c211bcdc2", + "regex": "." + }, + { + "hash": "e4bbc854044ee9866aae30e8c1b223a6746c45c099fd94fa82948830d35f07ae", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsaudrhascxkasmemas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=y\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@m\\*\\*\\.c\\*\\.jp\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "d8961548b5a636f922f85d7b576c691ae6d6a11521f7140e6ece1096a1247120", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmtykamscacmase\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2401aaef8c37ebe6518f3c2fcb441e3bbef733b00a97fdae3d38e2a0490a4c78", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-cochonne\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ddc0ab02efc406e73d7e7f95f39804f8e4f568e42ca183471c5ff8895adcde9f", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c26b3a599fd1fbbcdf10e6f08f020943a884879fdeec56a293c78f518f4e13f0", + "regex": "(?i)^https?\\:\\/\\/adoos\\-rencontre\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "151b2e29692d4c96895f55aab755bda6be557ca6f865de8c0c5617bc3ebb719e", + "regex": "(?i)^https?\\:\\/\\/adoos\\-rencontre\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4042d8366f42b80918370b189cb44ae5713c876f754f9bccd0b8d2e2698f7154", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-femme\\-mure\\-coquine\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "72781454593d4843bff2d137ea239ba186f4c6792fe364f51624435a1aa7e31c", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuaxhaksemaems\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5b8663be1ebde0aad887e7c1acd72157480b84e1e347d5af10b56dcc098ff284", + "regex": "(?i)^https?\\:\\/\\/snaps\\-hot\\-fille\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a75421d8b38dd004e0f11f61f200c24040723e7082139984bb4be5fc3f5f7", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-de\\-cul\\-gratuit\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9f62fa66368a5de15ea890d139af318fe530ba7265ce55519b25165c6e78ab63", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuaxhaksemaems\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "74d455fe9c677e3feb594eca1d6ad25b351312034d229c51ccaee8dea318e5c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Ame[\\/\\\\]+COURIERIT" + }, + { + "hash": "8ce9cb66e76bb99e3452eda9ddd0e1ce591c6057f0db306e847d9dbf7ea8e458", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7c06c605e4589f1c0eddb63c1fc9120c23040956936263b8da5cbf2399595418", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-videos\\-porno\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "62e1a03f8de4f2772ab92a52e301852eac31cec60a351c53ae290acad2bfe48a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsaudrhascxkasmemas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0d0a32328550d43dc07ca3be2c80d35b5c75aa443acf251a38e9d082a13531ea", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-coquine\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "40ec05f1a06a5b48e2b3c579d0a8a057a611bb542a5efe3cb9de25821f32537d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthsckamscamse\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c78477b30542c386f24eaafb2bc85f66dcdf91539c67eba78dc87a2da18f495a", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "826877be13869471de1178937e1629cad52f0f44ed58da30e057dc2665b5dcfa", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3d81de7315139685db2efc1004d5cd92ca45033454593b2a5938a4f5f574ff6e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b8ae7d687e1b1afa8321daa4d5f03bcc94c9c2ee708d84bdc4ca066c4383b7f0", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuahscakscmase\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1c14ecaa8d0bc4cd42ed1979349d83f2e233c8ad2139fe51acaee86a03101a64", + "regex": "(?i)^https?\\:\\/\\/vote\\-peace\\-supportttt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c8116372e327c8436b8a562040c350eeeae72db50bc5db61e97167347575518d", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-cochonne\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "547a65bea84cf152acbf10a8cc3d3daf0ed26f20d9b900296342453f51f61aa1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ae82c4ded546320694acd35e172406b0af4b71df6ee2a593a11984eec47f1328", + "regex": "(?i)^https?\\:\\/\\/les\\-cougars\\-site\\-de\\-rencontre\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3b5be91e85d6fb2c40e0ec5dcb7c83aac9371a3158dc775cfe3c36a985774fbe", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmstduhackascmasme\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "de79c537ac4d9b8b088645047d03f34cab64f9cae5d2e19c59a9556b4cde96fb", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "413a9d3b9a57c3de9da4fbfb473f45395142e80b6348d2ae173871328d5ece5c", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-femme\\-mure\\-coquine\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a05fee3d6ff6e7a1e98e6fb18d5be922de542d6e993c6841522352925e8a9c4c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a01e07ebbb06ca4fd00a5259c75053538e6c97c48a9b5052f90ea7338824c74b", + "regex": "." + }, + { + "hash": "57f0f512bfc48f9f7ef1928e69ebda767118b6249f1efcd1476edcb3db209da7", + "regex": "(?i)^https?\\:\\/\\/gbdzqr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "19d9fb13492a46078f02d6b34ba78a5ce408b816d011f68f86198e979413b2c9", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-paris\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b2cd77292dcb176bbe9af53d38bb6fe71af4da3563f976123bf55b95de5b3977", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d3b7ae06bfe85776f1c159b3e65baeb4366ec5ccf648b8fadaed89247a1938aa", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e8cc3eabf4833ac97bdc8b71d7dd41726a3d727de218abd73ff1f1f58c32a220", + "regex": "(?i)^https?\\:\\/\\/ocpasleakmsdtkamsckaseakesm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=h\\*\\*\\*\\*\\*\\*\\.a\\*\\*\\*\\*\\@e\\*\\*\\*\\*\\.ee\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=m\\*\\*\\*\\*\\*\\*\\*\\@o\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "09a16954262d6e723673d6c2c8845f2972c556f37da06fc84e5490ba2ff58d92", + "regex": "(?i)^https?\\:\\/\\/adresse\\-coquine\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "33c50e4c9cb42e9e8ff12c576bcfae1f249ecc221fe013e077564b98ffe31a33", + "regex": "." + }, + { + "hash": "77061f0ec69113ef0575ae362fb851392038ffac82e66b46e19adbb9e5b2237a", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e2e674108e8a59a8cde6831b1324d43a8aa8abf296f9d943bb4d74e548a5676e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0cf0d6f797b10a393e6d624a1eb7ad855f78579c5e857407e881863a4e2f22f8", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-de\\-kim\\-kardashian\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e3915b2eed46f5c092a4f40f6e4d5dd925b96b3e970faae897bd211bbd38716a", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "369f84e67377954ffd92915b856950bd01537f01a95b82def49b62a17c07df9d", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-meuf\\-chaudes\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7f68ea4ad217406912efe076e294fcd3aed1c8241c1808b6de10442cad8a89a7", + "regex": "." + }, + { + "hash": "89ea5d62e9fe4c63184e97062f66d523992ac57ed9054a317d8fe3ed602370c3", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e01ecaf4e4da0ee6e11acd9120dab0eb2645bf0ea715aa4c05b99319f6bc3b7f", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9f4837de72cc62968729ff37aa1a744c6a1336075b9df6cb0266fd82b5f001ed", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "68f5d34adae89a44d2b2dd30e8d43e39f60dfbba6deaa118b2862baf9eae6bed", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-cochonne\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7b405ebc7f9330cc0374d4c6d07d13fefe2a0a514f2762f54a3c0f29aa6b5fb2", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "79244bfb8e92d0435b73cf5658626d9fb67c803f098c01a414a809b074fb4e28", + "regex": "(?i)^https?\\:\\/\\/chaudasse\\-snap\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8133678c72031232fe13b023ab8f07a1b303a8476fdc7b9efc74056f10dd90b1", + "regex": "(?i)^https?\\:\\/\\/rdxrandy\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=h\\*\\*\\*\\*\\@n\\*\\*\\*\\.e\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "57a6a72668ab8e88febf45962ee7880df1e96c5514f293cb18e62f8843a90875", + "regex": "(?i)^https?\\:\\/\\/osabo\\.dns\\-dynamic\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "f451860f2c306cf3461295833725cc59c0243173920aebf38c3599d8a764483f", + "regex": "(?i)^https?\\:\\/\\/cougars\\-site\\-de\\-rencontre\\-gratuit\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "710a881a461922a901daa685286797a610ebea8dbc1200613f3751a7a2e6ec24", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfykalcakscmasemase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "18c9253e670dcdd17636e946370d823bfbe16b1e3fe4ecbb671a5fb1bf184391", + "regex": "(?i)^https?\\:\\/\\/dunk\\.com\\%E2\\%88\\%95pqksdb\\%E2\\%88\\%95fojpcou\\%E2\\%88\\%95ekriv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=string\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9650544c659a815ed9fe97b7bb6f778ac14e21edfc2e8524d2c1febfea9a72b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuahscakscmase\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "15a846d581c52ff8faf1028e43e5fa5206307509a770928c585f7228bdd31d6f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmfyuakscalsckasemas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0318f146a8a88fe69fd60b020e259c45224a381edde6001b56c01e0200deeaee", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-porno\\-photos\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c316d4ddcf03219d5694a6f5c5d65affd7523bb487efb844e2ec62cb092ccb31", + "regex": "(?i)^https?\\:\\/\\/boone\\.com\\%E2\\%88\\%95qhndhgo\\%E2\\%88\\%95mwmdnxzu\\%E2\\%88\\%95wceqxm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=licentious\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a513cc56cbd2bb9992f46ca31ebcbca6b991f2e3cedd340229d222e737f42b02", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuakscmasckacsem\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "48ed96aa694968066d5280da3f790cd33cc6a2d6e679d50e8cd39a241746c674", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmstduhackascmasme\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4e2d6de9aed5bc8b5bbe359ad3e87558d0085f51a4cff5bed7224911bee1fde7", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-chienne\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7d82ad23af643b58639338aa46e8e3824c01e3dd0fd2db62e5adcc725adebc68", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-paris\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "84dce7389ed3235d6659a72cdf21be17255cdd8fca59ff959b8946337c0a2189", + "regex": "(?i)^https?\\:\\/\\/ocpasleakmsdtkamsckaseakesm\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "18c95d8ea43d4d54d34d57d59923969aed8efc5e01d6a8fb53c925c7ddef7bdf", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7924fbe90676211e598a59c79e0ea1e80911707eeecb7c6197ce652db927b9ab", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-plans\\-culs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "95f0c3999ed2fe63d83017146af3856c451733f44c667218d3f72050e8130f34", + "regex": "(?i)^https?\\:\\/\\/gbdzqr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "dad35bda17a4e6fb933a9a482ec990184d0e0deda1d5ba0a6fab5a1578e4f5ab", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "86dde3e38b0f093c0b6f353d5b104ca17ca2d15329017b50fedc2600c24b50c7", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a0333fbdc7a62ed040a56fb2e4d1c003f753c4a36f871410b16d65c1e80d4299", + "regex": "(?i)^https?\\:\\/\\/fkdo2oznt9w0920f9ocnekwkk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd56a1a26030dfa6a11e44a3202032fdfa58d981b19636f57e606762290004", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-paris\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "952b419cfa392c2d16c62c0dfe7b0eb100c6bc6ff65f0ce9ae53d865bcedb240", + "regex": "." + }, + { + "hash": "58269a6ac3b2055c2d0cb72946bda572bb167429645ae9c2e36256da235bca5c", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-meuf\\-chaudes\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a199d50d640e0c731ceeb6e233b729ccb9b9382a0410848945d0ecd46e9bf77c", + "regex": "(?i)^https?\\:\\/\\/snaps\\-hot\\-fille\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=c\\*\\*\\*\\*\\*\\*\\@t\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "c2c4600be485cf7fac41d069e50c680ab9179d77e30c17334b2b2ddecdc0dd88", + "regex": "(?i)^https?\\:\\/\\/www\\.adobeconsole\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8690e9b8ef1735ae480b51907f97521ff4ab39010bbdaf0363b28296e41951fb", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-femme\\-chaude\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5dabe5ba6ac9dcc3ca79f4fbacc7bc8a205c936cecfc7562fc6d2abebfecbbf8", + "regex": "(?i)^https?\\:\\/\\/pcoaslerakvmsdyuhasckacmamseas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f3efddaaf36a37abcb65ec9302e8502ed96726461fb56ed369c4414fcf1fd39a", + "regex": "(?i)^https?\\:\\/\\/kardashian\\-sec\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b2cd77292dcb176bbe9af53d38bb6fe71af4da3563f976123bf55b95de5b3977", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "02ffb9fc204d7a362d72871249875cb57344f057c22a6e09bc639f51025c44f1", + "regex": "(?i)^https?\\:\\/\\/fkdo2oznt9w0920f9ocnekwkk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=d\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@a\\*\\*\\*\\*\\*\\.es\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "86b9911d02da63a36a399522ba45ef1193aa70631327c3be2e3968e38ee128b2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=p\\*\\*\\*\\@c\\*\\*\\*\\.m\\*\\*\\*\\*\\*\\*\\.l\\*\\.jp\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "4f7601940f2e327226c7996543943f2b36c73a81bc74eed533d5c24ad9d2c1a7", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "81f5c23d162c9d5da899662c3ad66b160c4da878ab93f5b3479f6a93fd787843", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ce12631f56ed5648d31f85163ea94c87c9f72ef16abce71c7a49e832ab49b1d3", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ce215d7da734af3c1647a470635663ccb085ccbc16b69026d385dfccbde024ae", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-de\\-q\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a85e6235fa3212393f8c3121247586b66b9d28fbbc109bcb5cff9411ba98d1f1", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-plans\\-culs\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c9af1521e77d9c157797b1ff12207405be13e4fdb2720e4f530f50e7d22993a2", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-cochonne\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ba21b0d2ff954e2be281591582bafba5b4f0de1de5a07372eee0b34478f40692", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-femme\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a925d8e175e639359fcc6bdb07e90a784193aa2799977af71c352e4e784f0284", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "68bd42434860860de769d1d7c4da6670e472d151aab8b1f264f500126e38561c", + "regex": "(?i)^https?\\:\\/\\/ocpasleakmsdtkamsckaseakesm\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6e102d26172bc24af952a9594690b188788ca16a87465a4e3832c6afcb8b7486", + "regex": "." + }, + { + "hash": "302f3e0cfc55c3234255a7aa214dfa4ef75a25dd404ca1cc77c602e65cff1bc5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsaudrhascxkasmemas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "829e1e2dd8cc994b8700f68b608c7c0c94cc7baafdf26e7c491dc8f076dfa865", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsadtuajscaksemaes\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=m\\*\\*\\*\\*\\*\\.d\\*\\*\\*\\*\\*\\@3\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "2c5a4a43cbe40b73ef1e9fd9575b03f98f056f0b9b368f86c8020d7d5f5d6401", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-paris\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2c808384a46605dce0192cefb83cb21d645a3cb33913606f51cda971c955ec34", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-fille\\-chaude\\-snapchat\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9b59d5310be1d383c1e2bcc8904457c034462230a6a90305b6692d1481bf920d", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ea0e1f74287842136057defe68e97343be386d48cb12f985a5e892b1d9ce2a0c", + "regex": "(?i)^https?\\:\\/\\/videos\\-porno\\-kardashian\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "39f274ab1295405b245031abce4c8a133c0186c62e45df2b3b86ef802b82c63c", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-plan\\-culs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5fdabf58ba83c5a47c0a92e15c1090efce8cf2ee9f4b940e70d4c4641d967553", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsylaslcakscmasem\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f816e3fd79a224319a111116b2c93a097efc203b2e2a9345e9e4d9ed34713eba", + "regex": "." + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=y\\*\\*\\@y\\*\\*\\*\\*\\*\\*\\.c\\*\\.jp\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "e77f6924327b3d4682890b3dd3e57b762b958f96b3cfaa15e1803dc0171f755e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmstduhackascmasme\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "44a6f039c6789744ae6139936bcf0e460cb9c64d5783d11de7f3f30eb409db01", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=j\\*\\*\\*\\*\\*\\*\\@l\\*\\*\\*\\*\\.c\\*\\*\\*\\.edu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "f9d88585af9d6069921ac3fe75301330656ba95fd34d65d886899553c81fda82", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "19a9f3792fabe5ad6537190435e3e56ef90a16bf1f70205f18d56b908171a915", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ce7dc1bd1ea32c568f1cb3b4b580dadedf5b4e7ce0f43f76a35679d62eb8250c", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d0896a1f2e7a8ba8a1b085c9d5d088896df0499aae7f9ed1fd408e80174f7ee7", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-femme\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b6ae74bbba776625ef32b6aa81baad5b997acaa58df6bbacbdb8b5eb2941ed1", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "16457aff2ab7ee97497b9d8fe903468fa899195b4c38d14eabd9f5df572b6b5f", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-de\\-cul\\-gratuit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bce850681332358b334f8f2131ec8f5142dbc8447ba8aef7806005bb21856e44", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmtykamscacmase\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cabfb8cfb157bfaacbc10d96a2c501218180b3deeb19ff15384284997b16fb0b", + "regex": "(?i)^https?\\:\\/\\/vote\\-peace\\-supportttt\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4e7a31530b1ae6f4e68e95e999bc93d1a21dc16f23c6cb9172d778d0c74e90e6", + "regex": "(?i)^https?\\:\\/\\/video\\-kim\\-kardashian\\-x\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a574f4b19a96789fcdf9e7a9b7832be8dd7515dc9a7848fb9f7cb5f40f423647", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-plans\\-culs\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2cc6c99c95513d42d7b101e5557cbc2f3bd37203cdef06f2521e0650b7960cbf", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-femme\\-chaude\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "99bca6dbe18d581cabc5d5cfc85d5f3ebf1e45ddd45b2b6c6339c63ef3f3ca17", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bc952204a0808458a566d169a26d7d37e415c61e4f4d8de431eb56fe554e8e65", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtkacskasenmase\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "236ee137207f2443d6b4c6375d9ab29c18882a7ef623268f738ac655ccdbbc12", + "regex": "(?i)^https?\\:\\/\\/video\\-kim\\-kardashian\\-x\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2b2f149d4461c6b035d3b66d5ec0daa2f53f7548cf8ba88dfc550d1c207bbe27", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4d801ee61479f98ab6c026f1f19da9c0f1f87096a2d2f05b459c756efb96524a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsaudrhascxkasmemas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6282569a461dd071c626c5609c57a545a67d5c49780a1106e51b74580686e8ac", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-de\\-cul\\-gratuit\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7590360586d4224888c991a51e87eb773f347ac810ef6e52539dffcc63961728", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-de\\-cul\\-gratuit\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e8e4632e0a6a1e90cdccf0bb672cf3c21700af1e054ba3b91e82be940e8755bc", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuaxhaksemaems\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3a35ec57a173041d737c75347b2c1047bc0f744d42ecb75e1e390f6bbb128348", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-cochonne\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "14a33bc2f198f403e32382e932fbd534ff8ca819d49f6fc1dd4f66b49f848647", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "14b8218bda6687a0c8b6ae90e9cfed97b015874612f80dad46940c716c5bf51b", + "regex": "(?i)^https?\\:\\/\\/libertin\\-rencontre\\-gratuit\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7ac5a4c06674129ef4dc2e03f4bd2e973f42eb2d072a2d2af1f284051307c971", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-femme\\-mure\\-coquine\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "936063e769afc4c6ada8bc3856a56aa8fd3fdfd69d7224747ae0ddb2e4d22509", + "regex": "(?i)^https?\\:\\/\\/adoos\\-rencontre\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b974705e3962dcb129cfc45b11c217afe3a756b5fb32a847f85a9166363fbda2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmfyuakscalsckasemas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1844d44ba66d35dd9e0a6267cc182ab27a22ad32b295cf13e752722dc11cd927", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e9350ce9a360f84fc29acf2871c01f7c8dd9fcff5ed32260a6d19df913c393b9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c785e9a345ccf96d6d3abc298d76e15e132f1fb460c5e87197c768030230d0a8", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a2c480797b875e0db7e71ce1952e3df66ed6d1d711c1533b1e0d21ecbe2b7b41", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmfyuakscalsckasemas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f5aaf67b1788377df0f83dee899312a8ad8ba6ebba386c50633ed16c91a5f786", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1d9ead50dc92d4542ab37fbb8a8ee391b67c08e4d74279b1e92a6efa5551fec3", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "216eb29096270dc3577f4483eb11055cc891373a21019aa1d187dab9beedd6b3", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4ca42cec97ce86aca929a2680ac20922d935ebebcaa4cad6becc22e8f18520b0", + "regex": "(?i)^https?\\:\\/\\/adoos\\-rencontre\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a19328fdb6d80e0b1958a4b3bd1753a81592c60b8f6c424045de585f45cd5b41", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-de\\-kim\\-kardashian\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ef5931785346a4294dbc56b3ccb26281ca082a84a0c66d05e320839becb636ba", + "regex": "(?i)^https?\\:\\/\\/pcoaslerakvmsdyuhasckacmamseas\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "61532b76beffa8479f4c34b96a1c56945882f892645025e340575dccbc031d4d", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b196fc6aba1a687249e9175f800d7e4222ac7877a030e5cfa44cfed98b3af3b4", + "regex": "." + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=j\\*\\*\\*\\*\\*\\*\\@l\\*\\*\\*\\*\\.c\\*\\*\\*\\.edu\\&ocvtpi2jtynpatozzmhn0j3re0x[\\/\\\\]+$" + }, + { + "hash": "06081eb26e5e77071944c8ce264ce0383a5e0e5be6feb1274a8ef97db95e4951", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-paris\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5dd045505e352821ddd75917833041682ffa6fc5bccc5706b7c7d98eb168e391", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "71df4d985c0689b89c9ce843d99b2dc2c7d5dbb1ffd55ca84626a2b4c47f5239", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmstduhackascmasme\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5de02d9ab667ca924655e1b92e19279152a286c90277934e77e10e98ba0923b3", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "becc93a1d2b6686a554ec878a3504d20dcb49eb4c0e6ebde382962ab4d704daf", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-femme\\-mure\\-coquine\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "40ab0c7a864c9f0f7c599dc41ff5bc805f8bea9ed4406e1eed948d9435580a74", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-plans\\-culs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "56e559f11e949d87c8987ef89005ffa559977d88ab3157dc97b81219e99fa5a9", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-cocine\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ce906cee084e18c58647948ddba8d78a4ce1194d92a577329c7d2c0614b27db9", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1831951dc95500bab5603a42ec42dd8782f2b8794048ae3573e93252c705c3a4", + "regex": "(?i)^https?\\:\\/\\/libertin\\-rencontre\\-gratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "03e0ce68fc28e399f86e078c0306453c2afd3df3d59cf6d3fb16dce39ed6ceac", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsadtuajscaksemaes\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=s\\*\\*\\*\\*\\*\\*\\*\\*\\@c\\*\\*\\*\\*\\*\\*\\*\\.fr\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "db18f075fcc0f6ec47693098a87313f464622c4e21f8c42dcb111eeca432b586", + "regex": "(?i)^https?\\:\\/\\/fkdo2oznt9w0920f9ocnekwkk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d6f7eb21d622cd35b6ca6c1682e779bc39180a3c763c4c1d48710754fbd131c0", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5ecf368d669534a0241207710947de39c078a095bf1102e74e64637bc68860b4", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuakscmasckacsem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8ab9c32b5c16a3cb1a32a49e9e53b59d053c03c2975c685dfde29e78f5411322", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-chienne\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "016020e20dfd5d9fb38103ce66aa165beed205efa26ae11dd2e1b8dbed261272", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-movie\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "81506e5d130c0a3792d435810672a94477378829560ba7e611a026c1c167464b", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-videos\\-porno\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "999644a9c715e3fabd6ab448095ffb48fb9ca1cb8236279e6ec66041bb58c76c", + "regex": "(?i)^https?\\:\\/\\/zxczzxcsadwsdxczxzxc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=i\\*\\*\\*\\@a\\*\\*\\*\\.de\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "d36b383a7418210ab9d36f29e83690068521e75bd88d0da9d4f05db904cdc5ea", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsylaslcakscmasem\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3b651a3d2a79964ce7727ef2f53cd4b3a386dedde3b3ea273d88a9c1fd384238", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-cochonne\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d419b47fd13dfe20ff8d565a3ffc7a0da704e26e3c2bee36edc73dfe88571d5c", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-fille\\-chaude\\-snapchat\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "84193e00e8613829097a2062d9901ecad83ce733cfc485255134cb75f4df26d4", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=p\\*\\*\\*\\*\\*\\@c\\*\\*\\.e\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "a45aa1b98cca36fc3e6e6c7a626ea1b5117155b8da3c8ef09ba67a9908c3e627", + "regex": "." + }, + { + "hash": "776eaff754d49486b9904cd8ca9bb6046e541d6052a38a464c0ed988dc40c298", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9745032c713e725c1c4b9cfd487f0f9016474b31e2e8cc2f00074202ec1d6f46", + "regex": "(?i)^https?\\:\\/\\/kardashian\\-sec\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b28fe3fb68f3f2f129eabeea9c15109aab2dd48fb7b3c557ecd79c4bc880ab4c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsaudrhascxkasmemas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a31fd3c33aa8b8c0420fcb12f331b16eddd12736c0ac5fa02805877b8bb8d598", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "aee4b60c5fbae0e0393e57e4a0529eb9e3a47d4ab9a1c875f2ada7e450796126", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0dcaf5c1998bccd985ef5d5db9ab5a1d5c2cf6ce6c9242646715fc542834eb47", + "regex": "(?i)^https?\\:\\/\\/cougars\\-site\\-de\\-rencontre\\-gratuit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "55b61e280e97f1122e76c0ead3bd69231df6702a7226b2e6a2bc507f19a1850c", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9d168d1d99b38a715fe1c96fbb4d3591d3506b97255f9209bdbce65b4ac65d56", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuahscakscmase\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0d631db990b931fcc14f2b6bf82a97067217c9bcf03e4fe85754ed12f5a88fd8", + "regex": "(?i)^https?\\:\\/\\/cougars\\-site\\-de\\-rencontre\\-gratuit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ecf14814b60c24085d5ece028a114b361bf487a21f1d1ee588de098206708b1a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "202561940c9f8facac649439682c3cf7e8ef0c22a8df54c9607da2f8e42515bf", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsylaslcakscmasem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c77ea35a1c5a2d7da9526b5c8a6d2524a5de6619193bcb46d07a3c616b7764e3", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1818e6c02be2e1b6bfbe9656f11cad3a82979190682afb24bd039e493140a27d", + "regex": "(?i)^https?\\:\\/\\/adoos\\-rencontre\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f134b6b8ed552d37b2fd14ec933a127604a99837f6760ab1cb68e3bb11e72af4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthsckamscamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3789ffddc8e4f1222f5513620fbcb52d9de1628f95fdc97dca30c0ab88ee96d6", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "aabb19eafd96dc0d588579f98d17cc2e4ed8aaceaffa180b7b7d4ed3a5778f0d", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coqine\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f26ed40ddfa39ca977cf6c7100b28388b3652d75d8bbed922143011cbf9a2d59", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a97c7a5941a20caa95379747d02e23c2cae0e966b2fea5a69d0b975b03c76695", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8dc5bb36ab580905162e3d41379027a6a8385b78a8c27d9127fa385cb7afaa3d", + "regex": "." + }, + { + "hash": "9a8d35dc240135a8e1977a49cbbdfc8e637867f315f6a2492e77beb5946bf6fa", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6a9d158b0902ffa7d13186be50c6df5e8f2c72c228dbd2cb2a9bd10c392cf400", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfykalcakscmasemase\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "56ac6fcf7f2ebba185d27cf640c10c488da3c759027a1c7e6e3cbf63e80b4e6d", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3c96adcda2a3f4227680707c481018241fcfe6b8aa29451bd62a24f50742efae", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "af5ffc2fb3a3c5936db5ee102f5576392bdb1b39c696e958eeecf6fcd22f7a7c", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5c8a87d1b68542e13bac2a1a8f9fbaa811f8bb62fc036ac189c13da131c98e75", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-videos\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f574b6ade2b1f61b23c01de313bf61ccaa400716a4ee899406a0fd65c007e82f", + "regex": "(?i)^https?\\:\\/\\/chaudasse\\-snap\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a9efc8d056faf1ea4a8cf6fe877c39c05c3633638ddc289ae63d44540624d24d", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-de\\-cul\\-gratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c6fadd0a35e8b6dc62f9db37601bbfa7b949b67a747a0c4cdfe089da75bb4f24", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmtykamscacmase\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6cddf17b6c74f35f3e67b2666526cb0e4cb3b238e8a1166c65c392ec44fb5a4d", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-plan\\-culs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ee5677ffd29bceb8bbf3a398b89ffbb5786e9b142a820d0053f610abe14ac75", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ce43b8542d91693fb1f306c2c45dbd8cfca3e0b387f2befedb57883f0f286260", + "regex": "(?i)^https?\\:\\/\\/ocpasleakmsdtkamsckaseakesm\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "352241874ee959992add7c9ed5bca131c35745e5727e754fccd081a254dab4b3", + "regex": "(?i)^https?\\:\\/\\/libertin\\-rencontre\\-gratuit\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9b0178ed574e8dbcd208cc33978d7d48ffa5edf688128d17f9435b15ddc20b02", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "972f0a7033f6b40895b1a9682e66919d85b282da606e67461426943af5626014", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b3d5c7d0b30180d1891f7880d1da7580999ed48c99f8a9aad7329a8a35ecc457", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "da387f973f0ae769c7b0f837b88241e5b7be91eb6ef886b721ff997c9cf88ab1", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-de\\-cul\\-gratuit\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a2b6add728c2429f0e339a755100166388f814e27b3b5b885cb95afa8891519f", + "regex": "(?i)^https?\\:\\/\\/cougars\\-site\\-de\\-rencontre\\-gratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=t\\*\\*\\*\\*\\*\\.g\\*\\*\\*\\*\\*\\@d\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.org\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "d7c1169237ac04121dd9f879c150f8d92b8e9a4ff719a5c3485333d3eebf399d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4240e690439dca72de3f8a98df7a4e344816d0cd313e54414bfc4feed5c3d1bf", + "regex": "(?i)^https?\\:\\/\\/cornmeal\\.com\\%E2\\%88\\%95kawxean\\%E2\\%88\\%95bclzts\\%E2\\%88\\%95yerqi\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ftc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c646a13bcdbbf3ddd5fe6a8582fba47132b40ff687ec8254bf0093d282943c15", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-fille\\-chaude\\-snapchat\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3d0ee9222e504d4b3b9944da6786592eafa87850f60709fc981b79a516c6d237", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-chienne\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "87a3eda873cf8e4b4ae4c5b5507c9e9f6d33f8ae934255ad2ebeed7e21bb0af9", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "716597c2c4c68bd8fc2a60f035add0d84ecfe010a5068a6fc1d8428ba9c2945f", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-plans\\-culs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5cdd3a1b967794d6293388bec8b5b90b33444d90d229918cbcd2623f6aaefc57", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a200108b51483ef5ccbd3503316fd68ef0f0ffc0aad1102a6be37761955907ff", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmfyuakscalsckasemas\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e88408f2334c9ebf0305923bd91034c23dcd55b63c987ee49372d92a3951fb4f", + "regex": "(?i)^https?\\:\\/\\/fkdo2oznt9w0920f9ocnekwkk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c11ca2b7dbad3f8508d9c15f9a984f85852f42e253b6afa802a857da4de38bc1", + "regex": "(?i)^https?\\:\\/\\/fkdo2oznt9w0920f9ocnekwkk\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "040e460d7099d2733370f79233f5f1297bb0b8c56f16373c998952862b94c849", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=m\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\.eu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "b354b3d4c5b70f6acf6c8e72a39962fc4afd4aec30f234148fab32a4d6e71fbe", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0349cfc6f2aa190e83d5b79fb13de94ce215b6837bebc4f4a8f9a7b9a48358e4", + "regex": "(?i)^https?\\:\\/\\/videos\\-porno\\-kardashian\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "56fdd29512b30a45b80a671489973ffc143ffdc742a55ce8e720525d2f91927d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsaudrhascxkasmemas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ca66414c87e0e60f13357f116caec3d3e022a808b82a61b096c21e4f653b39ca", + "regex": "." + }, + { + "hash": "b2321ee64c80dfc4cc1f8a549cbffb890491f63f65380928225b536c5d04025b", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2b84f67bf17cff7c4d8dc256228d2e318aa874537499f18b1de47950fd9d878b", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coqine\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "28153a3b19364d19b423a0b5ff83d7ca2bc7b73937228353d8a53f0d13ec5ce3", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-meuf\\-chaudes\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a9be5921560532e52b94f2e78343b7e26e45711ed757cf4b4dbec897d10ee74b", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-porno\\-photos\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2527bc544f91d2c89bc13d413e7da0e2c7b65644f8b19963c7fe952e33a1be22", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuaxhaksemaems\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f46887a0c89547863d8628b6107e380b84190df656122c78745aced4788afab8", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "52765663fc0d57fc8bbc130c997113cf27a26f9fb9afc6c5a045bb6be5efc6f0", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-femme\\-chaude\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7213f6da5e8b53e350d37cdec853bf0c4f078192c93030fc31f6e8614d1f5025", + "regex": "(?i)^https?\\:\\/\\/videos\\-porno\\-kardashian\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fe448a2cd32d6510ff80854b574df7b6ef042b8096647be195ca6593ff2a7dce", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "31c37ec070d6a78f1e8ea2bea5426bbf79eb4ced86df767e6c55b6133f2f8fb5", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coqine\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0eeb634f6fc28fb1cb3d07f7769342b779ab0052310aca0cf9fdd2f329368125", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-cochonne\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d9c471b5950a43bc5d41237e56c80791767adf12e732ed6d7b7f51ecdb0a2d97", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-plan\\-culs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8d9a02d8c879fad2304b684537907f1bcfb9929bf4def8aa9d01b12b0f38bb73", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-chienne\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2b4ffdb4a3bb8598f576a460ef3c568984d86a1d3209e0ecb693b97c02f31324", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsylaslcakscmasem\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "92fbd83abe725c28cf813bc1380245d32a4cacb78a8c4b48dd918888f5a5c811", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "25ee0ff148744e718e847ff0f1d78a247641fd5a6a60002a9b77cd7946f86520", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "478d093c9413f90b1faf9cbc28762fb7a27b6e095a24426b4aefd8fd45e7cc00", + "regex": "(?i)^https?\\:\\/\\/snap\\-hot\\-femme\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "436ee89fd83605cbb781ebf68496f545f22697db93014060e410c2662de94b23", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "15dc5f55b4bfad3e72ba8d866ca50fafd858c5f02fe04c8403ec3c10c624f9d7", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a8886f75487ee66b72fb2f2fef68a1cefee41faa7ee3186649cca2db9823c56c", + "regex": "(?i)^https?\\:\\/\\/libertin\\-rencontre\\-gratuit\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d94af44bc5e303c927f68ece38095552ac614341ef7c62467135090692feb5dd", + "regex": "." + }, + { + "hash": "6aa24aff8ee3cd9b344c020afac47b9d9377d14f3bb1b6b3bb7466a1c8292517", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=w\\*\\*\\*\\*\\*\\*\\*\\@a\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.c\\*\\*\\.kh\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "1450b04b216a4ff8d6bf8938723abf59b8db422e155aa75b4b690f0a30ba7fd9", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-chaude\\-pseudo\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "13c8cdda53a22ad440c43c77bd1f5bb18eac7b986a3ab3ad4d11f869def25a83", + "regex": "(?i)^https?\\:\\/\\/chaudasse\\-snap\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=t\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@w\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "0d079b6e4bd7dbd63fea260610eb53662c459faca144969a9f94b6c3c674cfc9", + "regex": "(?i)^https?\\:\\/\\/snap\\-hot\\-femme\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c33b01e62f8eb7b31d186bcfc9349ff2c5c56b8c2fe2ed52eb32ccc602dc7ed0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "eb4c01c04e643e8695202edf0af5661bee21c1c09db95ed3b52b20259b00aafa", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmtykamscacmase\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bcd54d2e09b1d4bf0a26c3d8003c2e4e41a0b20b7d98ee489dbb01ce681d39a1", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=o\\*\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x[\\/\\\\]+$" + }, + { + "hash": "b4d51261658650eaf8792913f4873bbf837a63a3030e3a49b1ad91164e238c23", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5690963b46b8a43aeb745aa10b9767894f45f74fcebac65511ae1b613e2c6695", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthsckamscamse\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9f69b73f83a98f36680c0416b9eabd07ab3d0781e8d6f477b5020681ec73fc15", + "regex": "(?i)^https?\\:\\/\\/rdxrandy\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "612c71d7d262d747a141c0a1ef0c9878b3bceb7d0d923e60570791d8b94ba8e7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthsckamscamse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e1e29c53c67b7da3eb6a0513cca726f43465ab3dfbf3b06b0565173162eb0eba", + "regex": "." + }, + { + "hash": "4c00abbcaac20be8866fd734d51ed154ea29ffa29fa5e16c6e2ce0c679ce3aee", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9fb6041d184bdead3f0502147aec34e1b10a7044962fcd2b5b59c7e2c23f6bff", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "68bdce951a0518e56587adf010116ead8c6885d80c9f159c95d7b1c4e3d13a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.gM3nzxl4LdJ9UDHeKmf9Gqm0qAnJPitnvggxh6A8n\\-2FkiEWmw6r\\-2Fm9SsgEzpuwtj05TAxg1pYNPr7dVSrCFzFmuPg9eUbD7CZFl7Zse3dZaKtkrwKwehJ6y0N4XIkESfVuaCY69H\\-2F03hv2atyBVwhWyTa9yNngL8vPLKeROiZM8laVPugxUBnlFG22BrnZuxwKQKXRfpmGosIPHVz0tcq\\-2BSGiFv29vjTErTyf2rk12kI\\-3Dy5Z6_E13YopbqzKGB4Vf4BkK3wD5quWcbyyQCsuMSeHaitxCPe4wYGEt9GeuTHtmFFjIx8cPAIaAZ\\-2Ff\\-2FlrSZrFOA6o\\-2FL5NG\\-2BYgjfbie6cKiCh7DfMsSjoqFvKR6MTRt6WvNXVjlkYoypRD6kOYWzL07cGYJ2iLQdaX45BjulTvBJMGJPToybMBDNckdvRp5fun1LLsuq3RwSmk03hLnRc4e7UBDTkIPtFVMBrOFHP6nDEhuGytL2iGNjVOtra\\-2BfWhDIsOYINbcRoyo1veHVzjlzFIogdaL3X\\-2BuAk6u71Z7FrgsuW3kYFoUHRhCs0J\\-2FG1Y9kvgF1imCiJ0cBVIh4cx2SFXiKGGkHaa\\-2B\\-2B5PgCqhgbgdJ1nHcLJ6XiQG3J\\-2FYGwClAYFWSOm6L7AEMzcS2vTxGqJLZ1HsWSxcv1CVeVcRRRy\\-2F9sGyFA\\-2BaxOlAlCG3UonnXfJcOVtG4ZxmhAZEdwTXtHlTnEOY2ha\\-2B8mLJPn\\-2BPxYDJBbnxLEGma7Zv56wJw5FpMhOT" + }, + { + "hash": "dadd9070f2c264a7f1a72db90e9a4c5c37e377b3da625ec6f8b32c6f9cb9bff0", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-femme\\-mure\\-coquine\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cff39decf663cc8404a11c8b09059022292845ce32a140120ddba6e4e7061a7f", + "regex": "(?i)^https?\\:\\/\\/rdxrandy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "411524fc79027b186f26ff73d65224d985622861301f746e0bcaf95f7c9991a8", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-meuf\\-chaudes\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d0480199456e4c9444370c181122c75b6ae149c4b51a0e0b176e6c028b219924", + "regex": "(?i)^https?\\:\\/\\/pcoaslerakvmsdyuhasckacmamseas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bd17e06fc1e4c99b13c8d83271b6fed79e4eed86cd8f4bb8755fd6c9e91a56ce", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1b4befa40499151259641354decb8b0639f38f4c26559327f5342904430a61ec", + "regex": "(?i)^https?\\:\\/\\/je\\-cherche\\-un\\-plan\\-q\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "64e1f255d7a908e0a7ed9df1caf5b0d6139019bf97b9d925618bc525a698403c", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "49ba6bf9d2e6c2030f4ae65c32971be924656d0553d8795e448f07c2b028d194", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-plan\\-culs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "305f7a6831d0f4a4143ea1e0f21973373bd8f824440f64d49b0021a7c7272b1d", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-de\\-q\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5e00736446c93b728f29fee69a511bf68894f53b7ee2153d8b2b4912b5e66adf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuahscakscmase\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "93b86a341139518d33e6322fb2f5cb692ed1e1a52602416b4cd8cde90ed6aec3", + "regex": "(?i)^https?\\:\\/\\/rdxrandy\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f42b0cda5a17a351323e1867a8a6a41e621f20367367fec99d574635864a5da7", + "regex": "(?i)^https?\\:\\/\\/zxczzxcsadwsdxczxzxc\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c358ecb16101959311851e5a515a1566377d3eee639d1effbc717d4d41c6a798", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-femme\\-chaude\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c5a4ed79a6d57e3257dfed491d64f948fac18aa9431092142c51782d8e1c9fbe", + "regex": "(?i)^https?\\:\\/\\/videos\\-porno\\-kardashian\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "94904ef6d5e5a56eac0492f6070018d8ab4285846bb6f4dce934ac91f6980069", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1f364c970f0dd98f743df8aaadda7a8a36c1fb7b9cff9b6f42663f53032d4dbb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsadtuajscaksemaes\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4503a6c0d529ca1c1e2ba501507db220bd289f558859075e6f23600d6da0cba2", + "regex": "(?i)^https?\\:\\/\\/wold\\-shop1\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "625dda9cf82667dc4dbe210f7a2379cf3a31ea93ed02ad50766423a519e31749", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dd2b8b7355424dbaa8cedfb59b48b82b8a328e920e0cc869219d0ab028a59f83", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a84a9b672a5def4f59c051dc88bdd26a650a0163f19f139e2284b669d7d620de", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-paris\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5a6551dc7d2c97b4acaaa4a8078a5d7660286d69aa1ac338000ceef259df5464", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-coquine\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "69d3f3936397b43330b927c8ee3de168ccca80400e9a8671e90fc06f40395f16", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-cocine\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0f2cd2490bcd43bce683ca640c91cfc7eabebc975fd2d26450b2fbf1ae8c8612", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-cochonne\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bfa377e316bce6e8c85abc0fdd1da14c73e8c038e5473cd1146634e5d8b1c19e", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-chienne\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d3dd420c60e6d42f84e647f44157e7d14233a9d7ed7d257f7749d5df059495ca", + "regex": "(?i)^https?\\:\\/\\/pcoaslerakvmsdyuhasckacmamseas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bdc8b97f2a1b9462ff57dc06dcbcf82a2834828c52122f360d94c1159beafece", + "regex": "(?i)^https?\\:\\/\\/snap\\-hot\\-femme\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3c8f91a0043297b6382fb7d2eeecfa062fca3e56f470d334e28a117e6453c37d", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e3fcf8ada1934dac621ff5079379c34dfc3bfc8ad195cfd34908f442c2bb923c", + "regex": "(?i)^https?\\:\\/\\/adresse\\-coquine\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=e\\*\\*\\@e\\*\\*\\*\\*\\*\\*\\*\\.eu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "44dfb0342aafd7180e635b4162a3eeb82d37c986bc991bb26bffe76a85d5e355", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f7a8e8ce758a6d5509e8b97413228e07673ea17f69bc1861e4d5afdeaf2cd34b", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8214bb41611dc0ff9c42eaa97e7a9660fc441d862e225821b6296cc53f93c914", + "regex": "(?i)^https?\\:\\/\\/video\\-kim\\-kardashian\\-nu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6b0fd76837fb72b5fc0de33fe5b71cafdd161cfd3e85b47b24f118d3d84f051e", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "44eee3b4b943f8e0c7aee25a2e13b69c6542f2a9c541e03028280b69aa8c05f0", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-femme\\-mure\\-coquine\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4eefeb1c2fcd588742cee53c73e40d30d2b10f67f9de0c7d3a78b2120308f90b", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-meuf\\-chaudes\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bcd3b298514f19337a092de0d87deb8bd0dabdcecd73744376fe8f043135d2c5", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7481457194041a898e5e6c8886a1255706d1407a17faa2d3a265e33ac99949e1", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "044a09bced8b6eca7f0d02c3ccb699d1c38826cd69faae7e9ca3696e06ba1611", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "eab98a59cc97cc293e1d678cf0bc644d9b78c3b17274c5d045fe39d4616d3b89", + "regex": "(?i)^https?\\:\\/\\/vote\\-peace\\-supportttt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "814a4a8fcc3d554959b7a8d8ae9e51936990ad89c778feea88bbb88858527815", + "regex": "(?i)^https?\\:\\/\\/plan\\-q\\-pres\\-de\\-chez\\-toi\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=f\\*\\*\\*\\*\\*\\*\\*\\*\\.u\\*\\*\\*\\*\\*\\*\\@f\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x[\\/\\\\]+$" + }, + { + "hash": "d896b180121a5bb7dfe97e551f05bbd9f6f58c0c645a5cc2f1626d76348f4b49", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fda1a17c240a313799cb5c6f11015859dfde816f358ea11be42136af5986e3e2", + "regex": "." + }, + { + "hash": "4f5a90595eaa09dbdeaf87b797389084fc30f9a0813bdca9505f7d62b2ebc659", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "69800aba466413798a3326f5030a7b81fafad600ce017180dea80b39aeffafe2", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtkacskasenmase\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f83268f17cd812cdb17c2bc68d8d72f49ebdf98d330ccf359e8d70036c0a76f3", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "695d65d940bc9df1914f619d5a1e0b14616d8b46b0d386457c72785cfa367327", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmstduhackascmasme\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9a9642ad399aa13205805f223971b8b6370e8853d4a92422b346b3ffe3d23225", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "577dccc991e0697803ba78ca33c1d8a84a9c8fb8f7ff8a5c516eb0801d5bc3c8", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-chaude\\-pseudo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "71eb90419833da4e70b3a5eab3c27f4faa8624057084a5774e34c29da30984f1", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-femme\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "05d2331fc653f0f7b7b58eb29283d6423851f1d705d9e57223c47c1085e0046b", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e600be4f55382f938921c98320da3c7f9a517297c8d2fe5c333983f78d733166", + "regex": "(?i)^https?\\:\\/\\/vote\\-peace\\-supportttt\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a02428cfcd4baabf52ce7e86fb8f855ab2ac54428479b0056223ce06b34785e7", + "regex": "(?i)^https?\\:\\/\\/libertin\\-rencontre\\-gratuit\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0c63928d2062528fa587397cdf93e5c94c9c310b7476582f9b8f5b85a35ecfce", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cfb972b44d196bcdbab1077db83974d780038589a281c6052875f35ad69648ee", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ae0ba28fe1c41d66b1c2e9b11d15aa66f7e697a7c1ff15df56223985662cc774", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuakscmasckacsem\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1caf3c09c80dc1bb3392d9cabc972386c5293e655daa88f2f506c707579ceae4", + "regex": "(?i)^https?\\:\\/\\/videos\\-porno\\-kardashian\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c5e115b4a60eb9d617643f60847953eb1b2cd49198485724d871c89f6069e168", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-movie\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e588b7987771e7bb071ed7f2ce90a525dc8d25e9bc3efec9e60d4a90904c9086", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "57877410da840bdcafb9ebd737c140c500d2787ef0deb219574651cc16fb0b1d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmtykamscacmase\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "35afee92826d1f1ba14021237b92a63aef26522f2c68e7b4340b50f467966396", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b4162919f0235d5ce61d3f19f4da912ed4c71710bebd23cc9c16e00dc0ef80f6", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-coquine\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "582155138fa74fd68041a7b3eab89bf10b037ed4ca378e2251b50a591f492075", + "regex": "(?i)^https?\\:\\/\\/adresse\\-coquine\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "31119e88a93d44b62a79bc780f3de72b40534047faf6a7bad29bedbcc22bd5ef", + "regex": "." + }, + { + "hash": "e796ac1f4c8cca4b13ed6f9a5dc06e6fdded531b67c286d89d1094d90cb38eaf", + "regex": "(?i)^https?\\:\\/\\/campingever426\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "48f0de2bcab38d8c345d97d4813e9cf8853beedbde062e7176a72ebb0b8fd125", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c99afb63a1932d3df95ec2d5d59ba0fe12b1b525d987a3065053ba356aaae8a0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a1093a59a2eaefbdd753e93ea88db4304125938f38ec804bb03b83015693f73c", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-femme\\-mure\\-coquine\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=a\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@j\\*\\*\\*\\.de\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "4b8eb1f3b4e85b3ec0355ef08915f2f98561e7726939c261cd1e576d8a6e63dc", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-chienne\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "21b8fedeaba0e5efea7a031092e82c4b3a9d5fb6b4e4c10ae1542b2b6ce60b3e", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-fille\\-chaude\\-snapchat\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d29a7aacfdb6118ba3206e658e4adad602bf47ce9d8f5d20e06307bf64a9a40a", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3380c114a210c78545671cb6265c5e52bb5b6c8f034bcb507373fdd27a8aa56e", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a0789c55286ed82a3def615c83bc6177a86ce4f9e9641df71fa1448e794fe791", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=s\\*\\*\\*\\*\\*\\@a\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "be30f9bccb007567f720395afcaa538f312972edb1f682000be73b6e80b3127a", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuaxhaksemaems\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7e4f4e3a9109ba3dc18bd196213d9284a8da4a1c4a18c6c0429d28d4e8b62cb0", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5fb645e99dee77d96d0e343014368b785df70bb1d99dd1bc80715713d6944409", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuahscakscmase\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b2e077418ff17bd3d7e5a19a789b3d6a64e37e8cf9f6d91320a39fe1f01494e1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfykalcakscmasemase\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b95340a817cbad836b3cd2d27068a9a2ab974ab48939c4bb527863fd4f0b8b69", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8627786d6c6ffb6fe913ac42b5e009647bb09ce877b0fa788f5d93035b0b311a", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-de\\-q\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6a5f77932439b48a97118cb126da8e82b8f01592f7714ab183872352d0657b68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signup(?:\\?|$)" + }, + { + "hash": "ad315265d7c99f903eb9bf33f0e9fc3b62bfa998e644e84aeeec3cec55a3b8dc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b4496b8356a36a37b3cdba775cca89a8e7981cf6cf91c70ee25cdac042c801bf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuahscakscmase\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "eea5b98eb763c13efb941439896e24a1d4d6cc9a06538fdb017d345193c0c734", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6fabc4f3f0c2d7f2568e8540c8fcd47985f5c9b09ccb78e4df97d82f9e3578eb", + "regex": "." + }, + { + "hash": "53b0a62f4fedef10062908363065fd2dd3be20660ce3a2a400a93ad2a13296db", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-chienne\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "92d468b77cfa4ebd76b513d1e2ca0f30760415112a68a7af6a065ffe1f44911d", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-meuf\\-chaudes\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "21a4946708eebff56e8bb32f9b4e731dfe8b898c684ea460a08cbfa399ae40a9", + "regex": "(?i)^https?\\:\\/\\/adoos\\-rencontre\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "53dcc5c5074ba08f75d21a738462ededc9ab7e409e77215000fd1a6766efd6d5", + "regex": "(?i)^https?\\:\\/\\/vote\\-peace\\-supportttt\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e9b125ccd9b1c1c5e364c71c80c787e03c67d4366ad3970ce7d669106359ad59", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "32b340b27de8d0362ebe878d72c9ae04e29f0a1f199206a3d6fa2c3ee171f8b0", + "regex": "(?i)^https?\\:\\/\\/ocpasleakmsdtkamsckaseakesm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5243701019ab8c987aec1961d0f7202641557b944c718bf5d65f17c04542f951", + "regex": "(?i)^https?\\:\\/\\/rdxrandy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=d\\*\\*\\*\\*\\.n\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "449c92b887adccd5f4f7932472892cda40aaf916466c22f08650d2bee5315be8", + "regex": "(?i)^https?\\:\\/\\/postamd\\.cloud(?:\\:(?:80|443))?[\\/\\\\]+md(?:\\?|$)" + }, + { + "hash": "2330118e0448e8f3d621ec340bfba5988cf2a0c148fce06ba662871c00fb4b90", + "regex": "(?i)^https?\\:\\/\\/ocpasleakmsdtkamsckaseakesm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7f0aec0e35dc94789abda1aea63bbd55fa7031a4dc537125951d97ae6bc9c515", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmfyuakscalsckasemas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "58ae8fe53941ded20f30c4f3778316982da88f718a7fc82d47d051910f28eb5e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f78cd410c8d0dd150e5a18d869f114c6abc5f50cadc329e40d30841b68fac1e6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bce8fe05f7eef2def96d2a5a5fe2b2cce0a26d589b0fd3d39a5f542230855288", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-cocine\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a340bcdfe8a5ad40658df4fc33a7b27bbcbcbb1a7c2cc5744da70a0bee49c621", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c280c8d5447f8f8d15e3b9e264c9ff3df254462bf28c895c840c08a9bd382f6c", + "regex": "." + }, + { + "hash": "dc77d3958ec80576aaa647732cdd3963a4bf4ff29880da746458f3c6f2a9ef48", + "regex": "(?i)^https?\\:\\/\\/cpaseoalvksymalsckacsmase\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e2a373e9767b003de9c80decdab2e928f8f6fe7bc1d685062c3fddda76c0689c", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-femme\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "232853a89f2b5f92320f95af3c253c62d6e54a4663554739fee1076a3ed45ffd", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "dce68f6821057db03f6c58b0c9f7daa4030053c7f544121d7340384af381121c", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-cocine\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "17516b86e4593daa017b7057a45cd48b5c57581b8dee8e8b6db180cdc879c3f4", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f845672144343739873695fd301f9953882ebda222a5a0bc4e248b8428928b77", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3c5240de3aaadc7ce75f17fc954868b051062000734e74c7f9127b910f195ce0", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3797a1186895e39fd8e407ef7d083680b3c0cbd2c1180cb3990ed083c8bc4624", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfykalcakscmasemase\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6ff3f0062882eac25d5c4dfd9050760d4d471fc4e3e9b6fdf7c5c0a95b894281", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-chaude\\-pseudo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f0ad7827bdde8b0aaa92f48fff3738f923aba154502a2abcab135f48c4e7ca10", + "regex": "(?i)^https?\\:\\/\\/snap\\-hot\\-femme\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c340608967cbf6317f371bcd3d5f47904e52171eaf3f26e3ab5bf21e5122982b", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2c17ba9c0d8e8fa8928256f59c670c996789cb8241dd77c69976c1b924779636", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "25c94f01c9fbd54464fb97538bb16740d42afb6951ebc68eb9a7a74473bc37a9", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e41f4c032ba5414a4131b11244f4b8e026a1e224812faf6651f7ab708ee75910", + "regex": "(?i)^https?\\:\\/\\/wold\\-shop1\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bae4085bb82e0ec566e52dc218f0e5daa49d9c7900fb2fa811dae313ec477d37", + "regex": "." + }, + { + "hash": "7a18f6f8b21ea7debe5ed4ea8372d08c4f8e3ccf04aaee9a53498396cadf17e6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsaudrhascxkasmemas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5082c6a5784ea24deeb84422a37d7381d1fef301bf7896951e366366dab755f3", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f20fa5e8ed207e069669a183c8b3257fc321b44bbc59aeb7d0061e96a3169fa4", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-plans\\-culs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a6c382babee827f519b7810dbd9f841dadcae8c87257c56fa6c4e8f97a40c057", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ff6aaf0d16856dbacef4f56eba8b499bf013fc4a76f69d1c9f93124406c96ada", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5793337e7826cdf3b65d356eeb6b59aefcbfb1397d4d4efcb5326569263c0520", + "regex": "." + }, + { + "hash": "e479b014434474ab6d1df84548441e2fb46029df393cda3a0ea4c5bde485ba59", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "905f45f34b7a7a2c7612fdbcb357c74d511f0d810247b864febad692389cc6c2", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-de\\-kim\\-kardashian\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1764aabac69f4a675fc7d15920bd8a813192dc6d46ace5993d3beb119982abe7", + "regex": "(?i)^https?\\:\\/\\/plan\\-q\\-pres\\-de\\-chez\\-toi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "851cd56aba95e03257084cbe89582dca02a69a37f373403675086eaf30267031", + "regex": "(?i)^https?\\:\\/\\/zxczzxcsadwsdxczxzxc\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a46320632f34d596c5f7ffa80f1744e56fed9250bf549e62f630c5d846158d8", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-meuf\\-chaudes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e754eaeb302174b18c00292e0f82ba159c80a5b58e09f3c06416241d1f6cbbbb", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d39b177a6b151f16565dfc015cd388cd3268f7cf24c267426588a518435295fa", + "regex": "(?i)^https?\\:\\/\\/rdxrandy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f8f05a2610e03c10c0b61d4fc6099af6b78b0d19adf2bcf7fd1c5052defdaf3a", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-meuf\\-chaudes\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "116f0ae38b1bb3510b87da9cc91fabb285f536d209ccc7fdcdd117ce7049092b", + "regex": "(?i)^https?\\:\\/\\/libertin\\-rencontre\\-gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d4faaee84f2a88554d6b4934c784e8d18e90b9f8e0f3ffa475a906818aae1ad7", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-videos\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "711a799d585af1d2f3e681f0f1c4a037d2e6c3de26e7194978690fbdb022374a", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "886d5685948c235810adb69f051cfd219064bcba9e4e30248229d53b3e5c8b1b", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-de\\-q\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "dd35a2bcbf195551d219d85621f2e712b8d1db4342fc30933869f973cb5bdf72", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-movie\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8df004638bdff8db43174acbe80d2fce0e0bd8af983897d98dbc55d3ea32579f", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bb9c95902a150f236142a3e89c6d7aaa68f88130ad986b9d904ac48b3b030dfd", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-femme\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1778274b8453ebb2f25d24e4dc59d0a5c36950057d557063fe7dbc5ef26eadf8", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsylaslcakscmasem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f04ba9369853916d018c7b6060a0c5a1710582986b1c77eaba8ccb01cbb72bcc", + "regex": "(?i)^https?\\:\\/\\/makeup\\.com\\%E2\\%88\\%95gamgf\\%E2\\%88\\%95ncgaj\\%E2\\%88\\%95kpgdx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=inman\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0eebe58a68b18c347a20ed369b37f1eca687d8b081be5499cd1add43a6aeacc1", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "35e34e7da89cc3fda9a68ce1cd8ec9709fc574fa17d82f73b118c982941d0c41", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coqine\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "29b1b899823cbfd364338246716e5c956b71462f2c2c6595db76932180d6bbc0", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b6acec9df95d5f847e5f3dde10f93f6a34628e54317ce4c79175d31f11363794", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0f55976d8200f3772f5a0b04f0ada21c8894c02214a2a3e83c0f923597782194", + "regex": "(?i)^https?\\:\\/\\/video\\-kim\\-kardashian\\-x\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "25aadc6c3a541af5c409f473ddc93c960a145e1fb3506ab146d08925eb9b4930", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthsckamscamse\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b2cd77292dcb176bbe9af53d38bb6fe71af4da3563f976123bf55b95de5b3977", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "07472daa4814dd0bb7bce399bed8339cd44e24dd27ac2b8e8bbdc6d05e3eb286", + "regex": "(?i)^https?\\:\\/\\/video\\-kim\\-kardashian\\-nu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "aa67cd709b84badd977d83ab2ddf62bd3b31e25805718cefec88ba193fdc402e", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-paris\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8ce9ae6117c6845c62a975a153435f2d8026dd880509703ee252175b6dcc0c6f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "88d8e173498b3d66dbb6915217233b05fc5ac0e4de5ad8e379c817133e9106f2", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-femme\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "04d5e96a09bb73b9a19a99c68f8288e87beaca09dd2922d80c5d6c1aed401dfa", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmstduhackascmasme\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a71587943b60ff446da4f6561b13a706bc2fd25bfcc435c2383e20b19533f7d7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsadtuajscaksemaes\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c3cad813fe001232c860a72da129dfb28041e33d1460d6375160893b58c21f39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "71fd6b57c10796e8baef6f32b41b6f371e5988816d568b1360fc879efd6f3efb", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0da43d4da69ce36e4504ff172f58bb98caf041c9bb3856c269fc069fd1f40292", + "regex": "(?i)^https?\\:\\/\\/plan\\-q\\-pres\\-de\\-chez\\-toi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "311ae28fae2fe65ebb79435fd64b367febfaf0385313a335050e14fff8c62739", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e59699e89b16214790217989679a1f333588dc66bd82f127a998ded4e7397337", + "regex": "(?i)^https?\\:\\/\\/wold\\-shop1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "76676d5843f9d5aa7c646d238e943fb78aec7edcc9bd748b5706a988907e8ede", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=m\\*\\*\\*\\*\\@a\\*\\*\\*\\*\\.v\\*\\*\\*\\.hu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "a8a9f67e6404b83b296fbdd1345feba654d83290e55dbc65b3fdcda8863d7a8e", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-de\\-q\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e199f80104568f1b1ed21a1f46844682966638dba0941890ea1e68940603df15", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-porno\\-photos\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "954f80e157955ee74583e0f5713b8b297291ea6a0f78e00cd8cf3c54c2a80e8d", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-de\\-kim\\-kardashian\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7406bb290e18bd12d08dd2bfe44d784c896a2b7eede15693028c8f4d23c2526c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmstduhackascmasme\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=m\\*\\*\\*\\*\\*\\*\\@g\\*\\.c\\*\\*\\*\\.edu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "ccc2f37f3cb0adc690484ca1011901a53cec72d4cb8166ddb340af1a86672d2a", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7a8e149034b8f81b1a3bf36c482816ff2a2e6aee5cf2ffba81375d60d77661b5", + "regex": "(?i)^https?\\:\\/\\/je\\-cherche\\-un\\-plan\\-q\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7110be5a2fc48a17a059e9d875d33a98d5f2565b6eb13a3c215f176dd021420a", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-cocine\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=l\\*\\*\\*\\*\\*\\*\\@f\\*\\*\\.c\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=i\\*\\*\\*\\@w\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "1f57659c98bb612cabf6b257141b51523c47825c4b9ea8de848f54ac29a06043", + "regex": "(?i)^https?\\:\\/\\/gbdzqr\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "633ddea61ebe099454690e3df8b066e7b2968300eac274ee4af1485e6bca84aa", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "536412589e85a77e2ea66980455860bd6d3fb60fd42326fc69ac5461bbdb97b9", + "regex": "(?i)^https?\\:\\/\\/les\\-cougars\\-site\\-de\\-rencontre\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cfe22db374f8925767da30111729c7705eb61b3fdca5c062e3e7042c683420ca", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ebc548b22ff94145dcaf4f320304018790d56fe1b6530e44e535837a59b0df7e", + "regex": "(?i)^https?\\:\\/\\/les\\-cougars\\-site\\-de\\-rencontre\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ac978e2bd8b282e34ff97887ca5a60f281107a3053a01ce626de12048b90512e", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4ec524ccbbb453f0554bb3cc5156578ea1121d8cf3bbb2dad0b08ed37596f5d3", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=g\\*\\*\\*\\*\\.a\\*\\*\\*\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\*\\.net\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "db18c2aadb6fd1b51fef7a929443a1ddd651ad021887e80c413eca8d671ee6ea", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6a9248161817227758f0987d1e9fadd644051f6d92c0eee45d1f86d63bc65882", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuakscmasckacsem\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1fa4f8820ef8307f6cd5b08a5fae45291d41c8cf2c74da607894eef3c93a2f21", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c3b28053c1c1e28ddf13d5cfb34e58c688096a2cf108311c267ae5e5076bd424", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-fille\\-chaude\\-snapchat\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f70dee23cfcafba74e3ea5ca022b543c5d617d1570feaafd7472073db6f08eb3", + "regex": "(?i)^https?\\:\\/\\/videos\\-porno\\-kardashian\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3791518d8fa40a57f6b61de7bd6486cf960df64227cb3d60e216fa6497019cc4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "162061a9371af25e470157268542d3b8f770d40a5a7dbe1a7d7e93a2c44e981a", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aa3a17bca285ae080b2d37843ec9d55482764d6dc6fd1fd4f9170adb29e03931", + "regex": "." + }, + { + "hash": "9b5ab91797afb1741b6c74190065545e3f9f1dd8668b622a1b3a77f1b493758a", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2bd144318c3085b6dad79c0b82bfe57f21e97f69db06f9f5ea4b6f7a43a25818", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmtykamscacmase\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3473d479bb51302a0f39bd12fc81455d87a67662c59563ac220d9dafb4340e44", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-femme\\-chaude\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=p\\*\\*\\*\\*\\.m\\*\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\.eu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "a6aaa6465343b1d32a176834988c1815d34c7d90c4f18cab80fd5f3353f090dc", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-chaude\\-pseudo\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2eb5cc3b7c4b9a1c6644bcc6fe5a7931ae5f9c5222a5b512762c2fd10e5ce7bf", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a7acf58ce64d544a3688ec940e77347249459664cf05194901b690e3e338afe7", + "regex": "(?i)^https?\\:\\/\\/kardashian\\-sec\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d7c5ae7e4e58a905e80ac8e1f76d59b7da7442b2e63cd0ed28b796ba8c2f2a61", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coqine\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "449c92b887adccd5f4f7932472892cda40aaf916466c22f08650d2bee5315be8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+md(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f4dda3887b8738cf566523f7db16ef91422b7f916a8d66a767736ef953228d49", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b3c68f66a009232d456f136b96bcab81787c4302ee015e81938af16be5373ca3", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coqine\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "049c838e3f8d2979fc887c9fadc5fdaacb02479f41389ca5b30e2927dca10e6b", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-cochonne\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2c03e9f517429903e4dff58867f65943928522e0958a9476a90350ffa11bdbff", + "regex": "(?i)^https?\\:\\/\\/zxczzxcsadwsdxczxzxc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb3f520dae13993c0be7a38b8bac90e466a5e89d9580e6b2345b5f7593080b02", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfykalcakscmasemase\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4eb854d2eda2b127c56997b4e49609849ee3bce9b1bb90c12c632937252c141e", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "54cbe7c0644cbf7359b44c72f709a74add30e66fc2af97cf5ef774384de0f37d", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f20586cad4b58d80a7c2c6572648c9a9cbe9a69ccfa4ad82b4630dcefd06cff7", + "regex": "(?i)^https?\\:\\/\\/gbdzqr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "89c0a69676500b60fb05ee926a3505e4962a7f70c2a58e5245f5ec890d199502", + "regex": "(?i)^https?\\:\\/\\/je\\-cherche\\-un\\-plan\\-q\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "17789d3074ab20851bd0e8ca3049474163e9429bc9c5771197ff51770829591a", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7483a90fad180ca8893171232b14702a176a3fd129d66b8739216a571dc88b8b", + "regex": "(?i)^https?\\:\\/\\/je\\-cherche\\-un\\-plan\\-q\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "808581b8f4ff47b7b8396d2fb45c92d027408a093bbd73ea9d2efe3ec72273ec", + "regex": "(?i)^https?\\:\\/\\/adresse\\-coquine\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e590997aee36c4a14c4a0c9a0523610ebd6afc15fa163be71ebbdcb55522a5c4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d9cedfe04afea6f11b954cb4d95282de4735cf2a802f173602c940c42f1de3bf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsadtuajscaksemaes\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7bea919efbce3f9e09cdbcab6a20c54f2a7edd384e3866fe3cb9062dea468bcb", + "regex": "." + }, + { + "hash": "eced8e88b48b73a260578098496e41fc4d091ea086b14a461e753500587e4e5a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahsckacsmasema\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "36dcfc7508035ed705914317e810d213ce28e5b559ca3c93e77e73f7609ec5d0", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=j\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@a\\*\\*\\*\\*\\*\\.es\\&ocvtpi2jtynpatozzmhn0j3re0x[\\/\\\\]+$" + }, + { + "hash": "d2d4760e09d0beadc9940745bafc95e690b5bf0f8d2136d4b7d2a593932ed50e", + "regex": "(?i)^https?\\:\\/\\/snaps\\-hot\\-fille\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2d3c3ac860916a2d7238f2c288efc084766ce66e53294342afbc7b0fce593636", + "regex": "(?i)^https?\\:\\/\\/je\\-cherche\\-un\\-plan\\-q\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "da3d997feb440d86053d539820bf06a5068ccf7ee3f606fd898e575c3083fd1f", + "regex": "(?i)^https?\\:\\/\\/kardashian\\-sec\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0c4522452591178124ff610f55b08725054ff672d1f374e3793021957ec47375", + "regex": "." + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=i\\*\\*\\*\\@3\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "aac6d928591bc0b3b5d6691583cce16185021054c45d8793c3ac4e826dee13a6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "457378f22c66e94adb2b4467145ac9dc60c972c2241ffbc13016424e3c611dde", + "regex": "(?i)^https?\\:\\/\\/kardashian\\-sec\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e7860f6672d71f3a7615bf9f3a4642187072d353f40c20614bad60052629657f", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coqine\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3da0aa60df4283d95cf8b1f6a83ee3a219213d09ef62ed27bf5424d0777b554c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuakscmasckacsem\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e0fcef6ba42740b567fc2b0c7575e6b1734125b89155948d0a36c7b0e0768c58", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmfyuakscalsckasemas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c86cf25d6abefbd21c998446db50d24acfc123f70c355432a2961ecaa8e42efd", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-de\\-kim\\-kardashian\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=j\\*\\*\\*\\*\\*\\.b\\*\\*\\*\\*\\*\\*\\@f\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "23e08d489358d179ef7d429d650315672dce737663ac972a6679bc4dfe0e27fb", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-videos\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a654340eedd76c2468829a32132c0b9b7b28642bae5ee343f758037acc21710c", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-femme\\-chaude\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "80ba55c83afbc1db231428550fd7e2466f4903d9abdbe102d9b3752764face30", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmtykamscacmase\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "077c620daa12a20165ec81def4d845444bb3e5bbee9ee823df9b84983c71ee59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Xznp51(?:\\?|$)" + }, + { + "hash": "4defce4d15c4abd223f322c7122ca62fd4dbf4f32dfe0695f7fbee60b0719b58", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtkacskasenmase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8690224ed6ff19f0d104c4cbcd64ac1cd1a1c2b27d4868c820753717be4151d7", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "58294d649aba6eb542d131979610a4bb71f740393de82fad1b400827ba4867fa", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsaudrhascxkasmemas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a614b51b1380dbee0d17cf2e0d5de46289d0bd48112835d504a7cb4d7d2af8a7", + "regex": "(?i)^https?\\:\\/\\/pcoaslerakvmsdyuhasckacmamseas\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "223cfeb61bf3632e4831f9029150fbfcafe1c37c96eeae84c9af4acab18423c3", + "regex": "(?i)^https?\\:\\/\\/jewish\\.com\\%E2\\%88\\%95dicnn\\%E2\\%88\\%95pkhrart\\%E2\\%88\\%95axmlqk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=nymphomaniac\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "652366e7d6b08ab4876e9ac51535e70bbc750a255f5a415e1c2998d0562fbc2c", + "regex": "(?i)^https?\\:\\/\\/videos\\-porno\\-kardashian\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "367e838493925d3113a70c22ac3609a58cb89153953cc7878f50a59f399fbc36", + "regex": "(?i)^https?\\:\\/\\/les\\-cougars\\-site\\-de\\-rencontre\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "99140fbac74021e7732a51dd4f0fa4bdda3d03deb1e8b3870ee8511d7bbbedc8", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c99a50504f8320db576bc04d12ef6891091613a7bd65c9a1e1a44fc9fc7d2aab", + "regex": "(?i)^https?\\:\\/\\/fkdo2oznt9w0920f9ocnekwkk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "567717b40a8e331cf96c82a84aec33517436e83a907c9320de54027ac7dd4bf2", + "regex": "(?i)^https?\\:\\/\\/gbdzqr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "99f4301e71bdbf24949bbc6509ff00c812c4e665cd68e033aa98b4c4bfcdced2", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuaxhaksemaems\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9b87a41d1528b0dbea5898dc7a140944342532c87f8dffeba04fe64c24fa51eb", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-videos\\-porno\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f4dd9b520fab999e97a6fce019a3037aeac30e82a39359ddbf0eed6f91e5bdf0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?GD9TJ6QY2ZCSO\\-0BIP7KMVRE8\\&1L5NHA_W34FUX$" + }, + { + "hash": "07d234e782088228a0cbfb2dce9e140e00caf33e3d86136fdf3f91b50d9dd0a6", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsylaslcakscmasem\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "54a6212f960babb02b189d0ebed91a947cfeaa81d1940337e62cca0e35d61e07", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b6cce27233ea6ed55b6873c4ababae1546dbb221505bce953c3725747709a0e6", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0a9398f097c3f872dfc6cfedb7793119e76c982b5e4a8137bb95e71e30057578", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtkacskasenmase\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6ab08ac413158ed59c31c4c21c8375847f1743c2507cc6c24e72e6a35b35eb77", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuaxhaksemaems\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5ed228b91cb89b776da0f0c37208a95f99a5e1ba6d0932971b2117f2fd7bde3f", + "regex": "(?i)^https?\\:\\/\\/ocpasleakmsdtkamsckaseakesm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "547411bc5a11786684741646dd93ffcd2ef8e95095f1705c10ed05f58f87e530", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsaudrhascxkasmemas\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "378503a33f460f1e01a489205fe0d8695c5bd48a5e8b86a1e5f47d9328c11696", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "22a1dbf7c2627517d451a61ee91c07c0231fb4745c85cc4619ae2e2ad881ea17", + "regex": "(?i)^https?\\:\\/\\/fkdo2oznt9w0920f9ocnekwkk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "72a4d3d54b18ad3734776365f17a1e66a0fd46fe3cbb5f61d63378053ef7d1ee", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-plan\\-culs\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a68f8aa592f88532dc0b4fe915db7ba0a05f8bd45e80006df018fc785f838387", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-cochonne\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d4b15946e7bf00e63dcf01d06a99a1417e28c740a21a17f5ab2789caad26faed", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-femme\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e941945aab51134d9b19208942295dbcf15a17f30a304d3767136d99175dcc18", + "regex": "." + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=c\\*\\*\\*\\.j\\*\\*\\*\\@s\\*\\*\\*\\*\\*\\*\\*\\.c\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "0f6ecde1ac733139ebc4dc476e5f462e3b1ab46fae788617f146c7911124b9d8", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-de\\-q\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dd656439b9f5cb5ef4e079c6590bf16d7562dbcbf90952cb82c64c61fa64a7d2", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "abd6c3eb1eb72af9d00b8a0e7cea48d314a082455eb5ab414ece6418acce3c31", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-coquine\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9a50e118cc2371a979853da15ea67063b2bb7105af6beebcb4e2c4b6aa58e250", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a1e66c8ded432d2064e16679a71adb0cc74392d7afb8b881181fda1c3c82c736", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-cochonne\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4beb88172fb8c2ea4a9c5b20a362eeee13686d33cdfb2eca092ec42732eeea00", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b2cd77292dcb176bbe9af53d38bb6fe71af4da3563f976123bf55b95de5b3977", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register58711(?:\\?|$)" + }, + { + "hash": "f7767f0b274cb755b145166d03858ff7a1a7a19b4da56dfbfcfede269e0d7e55", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtkacskasenmase\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=f\\*\\*\\*\\*\\*\\*\\*\\*\\.u\\*\\*\\*\\*\\*\\*\\@f\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "45373387ee5b11f6e376115efe106135b18de09c492ea1ab219223a001b90734", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontre\\-cocine\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "02e70b391f6e2da7b2946768dfb63bea1146b4c4aa18d5c7e38f399638bd19e8", + "regex": "." + }, + { + "hash": "74543d9a0a6a547756445829f0df10cd94dfdad2a666e1bc5aea0e4f33e02583", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "eb54342f01398373ae621df1ed923455a5fcf04a93e1ed251fb45468e9c36cf1", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "50df6575a5f0dae661a87f60036a4922ff2e9ee7c3ad09edf00fe83085280026", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtkacskasenmase\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0eaf94baef3ecabef6a6d13868458a726081cd7dbec5c8327f421403830948bd", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-plans\\-culs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "96506c86613742c181a0ea327fa37bc67a205c7d721daeb28d7c78cace44d6d3", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtkacskasenmase\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7481c1b5c14494fda5a8b2d0421f27efb487d52c7bb02bfb6b4ee8b89ea0e4b0", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a191ee6f48c92a03832323d2f3adbd1a6923387cf1c31b5a2c0c4709fa5b9230", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=r\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.o\\*\\*\\@u\\*\\.t\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "d1ec35d4b8fe5687f015215df5a4adbea579b1970c5881ff24e6e9a52e3f3567", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ec7614f03a5181ddda4772fbd64df8f6fd078f2f76133b482387061336bc2b64", + "regex": "(?i)^https?\\:\\/\\/cpaseoalvksymalsckacsmase\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6560872ebd47272366cf55d0c8b6a38d44bc2d7ed086447cd567049e7588418f", + "regex": "(?i)^https?\\:\\/\\/wold\\-shop1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c3cad813fe001232c860a72da129dfb28041e33d1460d6375160893b58c21f39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "68b89c35e418d357787811f3ec4b620938e8032a4463e3d5c66b36805208200c", + "regex": "." + }, + { + "hash": "271b2e0ba843ac8b20038b7064b48f5d553513b492cf149e38f3867eae980e63", + "regex": "." + }, + { + "hash": "b1099b5245c2bff73d88ec08e385d70f133136b61b937fc3da2dac8f3f8a29eb", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cab938bd99a206bb23090b89431f48434f8b9826ad2f5993b3c7ec050ebe7a58", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ccf9d81e5d9066723c20461c481a54df087d3565326829e6280bdd49330b8053", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cd1eb3757940e90b6cfec44d730fcdc721af95b4cf20bf8fb88fa4b196eba4db", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ac7030235d1a632556716ce8be98cf44f1efdbdd9e82ec9d57177db6dfbed562", + "regex": "(?i)^https?\\:\\/\\/fkdo2oznt9w0920f9ocnekwkk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "05a07f74b77d38ae7b81aba16527e5320c078beea65292c8e49266c7e22bb9e8", + "regex": "." + }, + { + "hash": "d47a32df7ce17ea375cec28add07f7eade7e620985c80708de1593fbe4c84047", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=i\\*\\*\\*\\@e\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "1aeb4b733c26f904ee5f5d90907fc30e2969a29f853d9c173e145e2e0d9d3ea3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmfyuakscalsckasemas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1ce3a84f044a1b9472676af2d46d6e834f79b5a5d17edd6750baebfa8748155d", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-coquines\\-france\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "19bf9881b80fb589ab613e49a8a0950a89b826b3357a1ac330f1176b6c1de830", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-videos\\-porno\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "52f6f8f02b2fb716042e766e31703687529130f1caccfe9fc169b52d7080b620", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=t\\*\\*\\*\\*\\.k\\*\\*\\*\\*\\*\\*\\*\\*\\@e\\*\\*\\.e\\*\\*\\.tr\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "727bbe73c9349d4f271c2fddb64195efe9b5c53fbc9851fbf9c5b06e1414b1d5", + "regex": "." + }, + { + "hash": "2f127fcf749ca70d4b2a1d00424c33c4bb817205211828c56e272cba24d131fc", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmstduhackascmasme\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=d\\*\\*\\*\\*\\.v\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\.eu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "104cae591b25dee36a99210ffe4a14dca5c6e56b17324b1dfd4468aeab74421e", + "regex": "(?i)^https?\\:\\/\\/libertin\\-rencontre\\-gratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=t\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@t\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "5464c3ba90151da6b641ca4a335c824dcd6e1b2c209dc6f6eb37edfac6d56f77", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f4a15895d0ad84a6cbba1786b33efd15e154455347dc943e2e2c31068a5c9985", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=s\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x[\\/\\\\]+$" + }, + { + "hash": "2a3429d6cf330d96d04f266f1781bbc5aa4726a0846693dfb204958c68568b49", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsadtuajscaksemaes\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3360d963d21d01ad8bc9e00e02121463cd4b453fb33758bc5cd961f639a364ce", + "regex": "(?i)^https?\\:\\/\\/btinternet\\-109408\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3a97b2c9ba1150d3d3889cd1ced61507737f1f4a8849b478176c46d6fa305275", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "14abee4f74b1d3a9461cee4c41b061f878565c6c19d659838472f5e1a7625581", + "regex": "(?i)^https?\\:\\/\\/pcoaslerakvmsdyuhasckacmamseas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b113b2683deded00ee0cd2f9b5f0bba9e2ff76cd1b67a46c41e97780d31dfba0", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "35223fb66d9e521cb14d0605c89d002093f5c10b00b6f28f379c10c8c5caa2c4", + "regex": "(?i)^https?\\:\\/\\/zxczzxcsadwsdxczxzxc\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "650f4cb569e25aea060ade42117a00fa2ea65e3971a6a6c68e0a1587efd06fc2", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "49ef795ec66a2712ca16e9a3832c4ea7eff9dd14457bede4d965b9b612795476", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-paris\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "337e6b7f9f482a11d5a5a45cc84d850518d1928a0b4b1d5a68a23a7594d11bf5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmfyuakscalsckasemas\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "da4d9d5f2b33e16032839794fb57a2799985198cf7425be26b7e8a03d6c9e932", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-plans\\-culs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f086b8281a046a643980f96539e01a57499fabff44ef1481e81b0880225c1b8b", + "regex": "(?i)^https?\\:\\/\\/kardashian\\-sec\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1fcde6b8ef48ea6faa1a47d491b165bd87925776c869408b3cbccdea6bb64102", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "197dd4e057d562dc35565b80797158d06a869a5bcfc70274ada286369e0a47c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intest\\.html(?:\\?|$)" + }, + { + "hash": "7d4d68953ac6fb427c11914d0431825143fb4f584a09ca5e236adcbea15dd84e", + "regex": "(?i)^https?\\:\\/\\/vote\\-peace\\-supportttt\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eb90b0368f7b8655e16b876d80295b03b2eb3bf27b0972624d47379facaa1ef9", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bd5db7252d9fefb0834d5ab5c655fb000309e430b734595dd0e84f01cbcb699a", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-femme\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6359b2166118b72252cf0658ba6d175fdcfd6d74f58e061b533d3b542fa33917", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-hot\\-movie\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "80a7c785eceb6201b44a8a3fd1688b148a736d7c6da343aab5813c23e5eddd90", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-cochonne\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "64bd19b49c1d55022e9d9ee9ea506bf0afb45362c7af80d2b7c7f2852661b975", + "regex": "(?i)^https?\\:\\/\\/snap\\-hot\\-femme\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=t\\*\\*\\*\\*\\@t\\*\\*\\.c\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "1cf182405ed9843d8f2a81ee58c52b10b44012ee30f18b0698e79443d0916780", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8a42d5f3fbcb46b17a1be94c605b39abb433f914c3d2aa4856afeb62357a5c3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index03\\.php(?:\\?|$)" + }, + { + "hash": "436b2cd6a90047b4f7a22e4f4b077ecb25df74f68e464b1c1e14a82b2aea2197", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "22a1232656441073070ea704e88d6bcf645b4cca1369f403c3672ba96a9375b5", + "regex": "(?i)^https?\\:\\/\\/hawthorne\\.com\\%E2\\%88\\%95wynaxqtr\\%E2\\%88\\%95sukahvp\\%E2\\%88\\%95beseqq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ocean\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c88c8088ffc5b2181056e3e45d4d020c03dc6d92aee7defe80a172d5ee46d9f3", + "regex": "(?i)^https?\\:\\/\\/cougars\\-site\\-de\\-rencontre\\-gratuit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "db738ad1905fedcbccad73cbe1784fa59e6342808941193ebcd4f2d813179cbd", + "regex": "(?i)^https?\\:\\/\\/zxczzxcsadwsdxczxzxc\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ee537301ae6f4b4f848fd74b402b186733e999473906b3fb27117b90b3673d8a", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-coquine\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f38be0e648f759203cce416f6ab45ec0b74aaba552f9cd21105467ab6b59975b", + "regex": "(?i)^https?\\:\\/\\/chaudasse\\-snap\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e6a0dc002a1ceb6233411001e7dc3d1c0cf90ed73ebf3f2ca6377cd141e81769", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuakscmasckacsem\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8315b732cc784d3f91a5ea863576e7bd8d4cf19270edf2c8dce34674a6755745", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmfyuakscalsckasemas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "74edf781aec1fe4cc0103613363e6de958cdbd4e69b0f1de3c6dc93347d328fe", + "regex": "(?i)^https?\\:\\/\\/rdxrandy\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ef755f51e2c26ba95d89070e86db8e8e07535a416df0b29ab944ac30209dc530", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-coquine\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4ffb0c01f99300693572bcb592e253b0dedd260494191ffb74d61bb2d99fc049", + "regex": "(?i)^https?\\:\\/\\/ocpasleakmsdtkamsckaseakesm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f571ca2ec40a4ae2a873872271ecebf23445d4ce25c3ee44e117085221307", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-coquine\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "af9d312605237e7d6424c25b463a18ba0c5ddded60c2c298bc4a62073fb6690b", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-femme\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7612dc087558cbb76066da3a95658bb76dcb978b6bc0a6ac9fa30fbadcebbd4b", + "regex": "(?i)^https?\\:\\/\\/libertin\\-rencontre\\-gratuit\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e7a56e94a8a3f150f89da4d8f75642410a6ed8a36158967bfb4a026d584545ba", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuaxhaksemaems\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9433e6dc25c8782fa900acbad8f48a486a9f3f2ba223727720bbdfc2619dec7e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtuakscmasckacsem\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=j\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@a\\*\\*\\*\\*\\*\\.es\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "e187575cd66b11c6d1ca1a2cb108520a461febc579a558d00f5bf0556f4774a6", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsylaslcakscmasem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "78c5f66082f01e0a32b5c025dd12fcdd3f2feb3ff93e99a6693a22d3242d0143", + "regex": "(?i)^https?\\:\\/\\/snap\\-de\\-meuf\\-chaudes\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7e06c8c1f9b00e8b317f6b34f55e3f977fcee0a678b5796621032156d91bcd2c", + "regex": "(?i)^https?\\:\\/\\/cougars\\-site\\-de\\-rencontre\\-gratuit\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0b4315074ef04c74cb6383eadf807144c660189724d6997eb0c54fe652c5021e", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\-paris\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "79ee0198db5ffc899d9d38c4cda662400633db4a2bb3dedc072f7a68b5f80107", + "regex": "(?i)^https?\\:\\/\\/rencontres\\-plans\\-culs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5a7cf9bb1714495acd3cc3b89c4c700d4d82092a7e46b8daa044908846798df5", + "regex": "(?i)^https?\\:\\/\\/rdxrandy\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f4dd9b520fab999e97a6fce019a3037aeac30e82a39359ddbf0eed6f91e5bdf0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?2\\-OC0PK3NTMWY49A1S5Z8EBRGJ7VL_\\&IQHDXFU6$" + }, + { + "hash": "064692ab160ebe1373dd73d1f5eb390de80a37d723395f1df80b1bcba94744fd", + "regex": "(?i)^https?\\:\\/\\/chaudasse\\-snap\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "29878f2f510f12fd5dd83ed9eac5b0b361e5b40f5eabaf86bbd9fe2da67b9e90", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e2fbd30253a53a6a5c22ef28e2ec2000bbd5695d269e85e8bfc72e0638d50c55", + "regex": "(?i)^https?\\:\\/\\/plan\\-q\\-pres\\-de\\-chez\\-toi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2e7276fa12b2a98d2a0193fb2855a25672b0c6f7a68a847cb632721536790c86", + "regex": "(?i)^https?\\:\\/\\/les\\-cougars\\-site\\-de\\-rencontre\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d4e4ee9d29d8e0c35cc5e3275e58bec559824aae4f2b2a3feeacb3dd57f8fb23", + "regex": "(?i)^https?\\:\\/\\/d5661d\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "56569d6cf74dabb5d88d414425dd4daa9f2ecd59a5217384b82ac7b57fc9d85e", + "regex": "(?i)^https?\\:\\/\\/adoos\\-rencontre\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "30914ac9cb987c00ab3c641f526cdab134e05d52df1c935208b73580627a9ea0", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b34d16b3e4def078aa8045bacc1788f1ac1e3d50942809865ab9bda8ce8084ab", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsylaslcakscmasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d427d060e2349952dc0a4206c17245b8dca7c5396f024878b2c02d40d3f35a72", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-chaude\\-pseudo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "650fff43342379721b8acfa7ef8d1074bc9a0f1e485a504c8ebb193e733ddaa7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfykalcakscmasemase\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b3d5e224b78f74f46a51cd5f7317b2edcabd3749405611ec3fca401514c68de2", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8810d51a7070fd25f235f9fa5ebf2c3f2c1391d95fdb635689ea1cd699eee6c0", + "regex": "(?i)^https?\\:\\/\\/zxczzxcsadwsdxczxzxc\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd850103e69fa45e5c780c68e7b37c1154c56e29be2ffc1efbff095c08ee1d97", + "regex": "(?i)^https?\\:\\/\\/www\\.cslogin03\\-clientsubmit01\\-robinhood\\.50\\-6\\-194\\-133\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "482a4f1c2899f13dcf3f84f88f56f0c423055ca784f1bc938718e714a41a0417", + "regex": "(?i)^https?\\:\\/\\/rdv\\-coquin\\-gros\\-seins\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b736285e3f6cd5f05bf4fd97d558cae2c1bed11e188920436258fa9e1b13ea09", + "regex": "(?i)^https?\\:\\/\\/nom\\-de\\-fille\\-chaude\\-sur\\-snapchat\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=t\\*\\*\\*\\@n\\*\\*\\*\\.e\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "e8756fc4790e99a22e7df2b52ae961d4a77b8ba26142450c1f681427d3930ca5", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-gratuit\\-sans\\-payer\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=u\\*\\*\\*\\*\\*\\*\\@u\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "e590f26beaf333630da2c0b135baf9524e8c674b093e84fc4cb7f327d06acfd0", + "regex": "(?i)^https?\\:\\/\\/ry5y5ytuyu6u\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d3968c0ba9a5d4b04e8ead58e3e383e011b33ee418ad143715917febc326acf3", + "regex": "." + }, + { + "hash": "e79648148ade7c5225518682445dfac759ed0651ccd71815570dfa61fe3f93ce", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthsckamscamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ef59776f04c3d40625be506a519ba4a41e9e54105b3a40e6cf19fe7477efdb3a", + "regex": "(?i)^https?\\:\\/\\/cpaseoalvksymalsckacsmase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e6856ddb4fa8c9de5301db7bf60a05278e5a13176361ca24e36b70e723e1bd52", + "regex": "(?i)^https?\\:\\/\\/zxczzxcsadwsdxczxzxc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a61feabebfffa5b7aeb8fb86635b5df157dc2cc7e33b9b26b2a08523cb5c66c0", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmstduhackascmasme\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=l\\*\\*\\*\\*\\*\\*\\*\\@r\\*\\*\\.r\\*\\*\\*\\*\\*\\*\\.edu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "d9b9fd8a32164f24f1b270ba0cd6c2322c73e4d88a9b431304a943f7deb08107", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdyfkalcakscamsemas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "933d0ab9b1a7a21f45b6e25c94f371d0c4d6526c196313ded6f6f7f3c2250ad5", + "regex": "(?i)^https?\\:\\/\\/rdxrandy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1f36c77c2162aadcf3e2b5ca46321c486ed6deeeb2398ac99dd079de47d61c0b", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsylaslcakscmasem\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "197dd4e057d562dc35565b80797158d06a869a5bcfc70274ada286369e0a47c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intest\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5c44b8cc69e8527190c43ca46dc5f2b12f048e30a8acda64df91d3825c869002", + "regex": "(?i)^https?\\:\\/\\/vote\\-peace\\-supportttt\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6407ccd56d8e292493771431b476a0e3ff49567eb2bd405b2df80f7d6079d500", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "41f79950f4ef4e4430150621af71334a5158df8b833b38f84f0f891b9d00df5c", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-chaude\\-pseudo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6fd82905a2661d48ed12d7b6c23d854e32d11d209c997c879a1412da6bfd3c8a", + "regex": "(?i)^https?\\:\\/\\/pseudo\\-snapchat\\-fille\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7a7b315e67a3fe62993c6c24e7a47c5fb92d272449f885e9ad982b825618614a", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-videos\\-porno\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cb270a7e936150ac81754a03ad6a3f74c47ce60e7cb91363c5a641ad78b3af47", + "regex": "(?i)^https?\\:\\/\\/snapchat\\-fille\\-cochonne\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b6059e0883b823cb53069ea27528339480da286f1a622045b5dc26faf01f7a4b", + "regex": "(?i)^https?\\:\\/\\/cougars\\-site\\-de\\-rencontre\\-gratuit\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5395f6566a6fe743718679501c0c8811607d8d0f259b7838487a71ba1708f575", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8d43b69b44fcebf42dcd262dbe0b501ff1b256efba1170a516ed2345d332485b", + "regex": "(?i)^https?\\:\\/\\/rencontrer\\-des\\-coquines\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "aae42adb47e2247da72527eb6f5f4905003d84ca34c85cbcfbb2da7484a7ad23", + "regex": "(?i)^https?\\:\\/\\/annonce\\-cochonne\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "19bfbacd65708e189b2ae4c0db2d0a3633f0320e9995513683d968913b52f6c7", + "regex": "." + }, + { + "hash": "3ece61d467d13839a56ac115255cbe47c7bfb4f72596bd01bf64a77f0d8ed10d", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-plan\\-culs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e5844c82d0f1b50e06c920dd22631edf53542484a9cffbc4a85cbd7c2a005011", + "regex": "." + }, + { + "hash": "6ab3cc818459b8bf6843b9b325749c7d07ae6863010eb5dfd611b3a378f05d84", + "regex": "(?i)^https?\\:\\/\\/video\\-de\\-kim\\-kardashian\\-com\\-ray\\-j\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "670df0ab78596ee2d960cd00d98a3b0fbea44ee8bab80dee7736f98555ae5490", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuacskasmcamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4dc3ee2c1c0748d8167d249064872d98073e701375853b080df873f9bacf18d3", + "regex": "(?i)^https?\\:\\/\\/ocpasleakmsdtkamsckaseakesm\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "09c36e9afdb2fcc2122f87d4f894f51b826f8bf3e45febb115459ae38aeef7f3", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-femme\\-chaude\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c9ca07198c9f9645bac22ca9b6da3a304c70c927d78199655d7e399e4ecab9cc", + "regex": "(?i)^https?\\:\\/\\/kim\\-k\\-fuck\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "cd506ff344d15a2017ac25ee4f1b4ac2845d8a1b4439554cd0cec91e9a119b04", + "regex": "(?i)^https?\\:\\/\\/kardashian\\-sec\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "335afed1fe490a4787e9623813a1236b61ffa721479db6d63aaa19866999efc5", + "regex": "(?i)^https?\\:\\/\\/annonces\\-rencontres\\-libertine\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8552eb16a76b31636072163db787d91f941535ca965ec3b0bfc06aef25245c70", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a184fbc3fcb0b59ed4fd72d63b643b293d20e2e627a2dd48345c07a321248019", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "408b59f73f5753ba03ac8305b4c41219d212471b90eb8b685f30784c206ea019", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtkacskasenmase\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1a989016227c04248ed51be213025986f96506272323820920485f3de09dcf11", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-porno\\-photos\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2b047c5f6f2335a766c6177eb75f8a6f2430c6178f4e1780dbac28760935a2b4", + "regex": "(?i)^https?\\:\\/\\/snaps\\-hot\\-fille\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "13b4db57faeb3db70b9f8a40cf28505798f4898a0b5fbe15271bd53c02778ead", + "regex": "(?i)^https?\\:\\/\\/opcoaspeaovlsdtjamcsasmease\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f5aae9b791764eefae449911783196ed44595e3e0a4358b37591acff3ec5f44d", + "regex": "(?i)^https?\\:\\/\\/zxczzxcsadwsdxczxzxc\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0a9fca349232003f70473ca8dd1beda889ba14322898b748089a8331c762069", + "regex": "(?i)^https?\\:\\/\\/annonce\\-de\\-coquine\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4eecabda26d9dcc5ffd4bb4a8de41937c3b4676e53083ff3c73875d8dc70d1ec", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "829e3212bc59d1b27b17d251d94f12ac233ff35f9356e929ebf8c8e82aeea2e8", + "regex": "(?i)^https?\\:\\/\\/plan\\-snap\\-hot\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ac14d8e7943d28789a0e10d2657dbd304b59e7f5199940596a50ab8ccf7a0b76", + "regex": "(?i)^https?\\:\\/\\/video\\-kim\\-kardashian\\-nu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "83c43f5e5151739f6270287b3ef2a5a52fec5fc244ce7e3d6eb97138e1242339", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bc0d9490a9fa617d1586d5d52bf4e67cf7df54a20a06ced9749a295f8312bf37", + "regex": "(?i)^https?\\:\\/\\/kim\\-kardashian\\-porno\\-photos\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e4f3b8728b90d344bf6cb2f7374d84707d67bdaffa2721aa92a25f422074c431", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvksdfylaskcasmcamse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c2b57c766c090c8835d3ddf9391e785c6baf445cc33b430b063c18832a7810e9", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmtykamscacmase\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cc901079b3c03240ab7a73172fc962c2f2bf3e6cabbc0e5f858d93866a7de405", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtkacskasenmase\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "923873b0e93ace1adc2f05bea2a4575558ffbe6822af4eb1d3fc6307dc1f77e3", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=m\\*\\*\\*\\.j\\*\\*\\*\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\.eu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "4b03479dfab32c317ced51e0c9deb328b4e4fa607a540d94ca06d45df67a0f6a", + "regex": "(?i)^https?\\:\\/\\/gbdzqr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4a115289f784d8afdfca0164a05d08c416d7395fd3d59a28e7e7d9fa2289028c", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-intime\\-gratuit\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "81fd0e972da08da6679fd8da397c54f41483cd00ad6bd20bc5b577f6fa1a90a7", + "regex": "(?i)^https?\\:\\/\\/plan\\-q\\-pres\\-de\\-chez\\-toi\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "394385f03a93c6c9c5b9f173a87108960abe9addd73a550b229ce47ab4bd5e7e", + "regex": "(?i)^https?\\:\\/\\/czxc3325\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1b74f28ec25e1c70e114869df1856eb89e9b70f14917f381683ad4f1e66ff4fa", + "regex": "(?i)^https?\\:\\/\\/hbraqhbgqar\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fa48f0c181c0bd9727e83bdc6a3c50dbdfb04ad8b68742db34c82e624b42c529", + "regex": "(?i)^https?\\:\\/\\/euy46ru\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "09dc1337020ea4743c40f3926ff6925dd56b80bd27373ed74bba519b06920617", + "regex": "." + }, + { + "hash": "08281115ba523f53dac6c9bca7adbaec9c22fc948bde9b68b18c896a8a9b3c83", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9f1f4f46ef4635f0e411dee384f04e633d1f5208a5770250415cf57d9f29a37d", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "42037e830efc9acce9f361f6763c45c357b4430ee32d0e728080a2593a0129c8", + "regex": "(?i)^https?\\:\\/\\/eqahgbqeadhgb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "26e3242ca2f80b73ea9d4bb46bd673e4369fd71127cfc426e05b758a2b3b16a7", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "73642ffd1bcef461412b6a1319885ad38ad31cc898be6be444b986747b515a9f", + "regex": "(?i)^https?\\:\\/\\/sdxfsdfsdfsdfhjhgjdfsdfsdfhjg\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd5cd22c86b789852b0eda95c3217355c85451860aa2af25aae7a5127654c04f", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "99e36f7a794c4b12a1e729cc5d27861eefa83752c7745db9fe626baf1d95633d", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4d4284fbaaea96359287752d3b11bbb1718071191210ddeaa4b62c03258d58de", + "regex": "." + }, + { + "hash": "88d8b8779bb32193850eb95033a94ec84300187d6ca90fc51908cb8e453b05cb", + "regex": "(?i)^https?\\:\\/\\/zncjm7688\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e8fbbdc12a16e679d6d389b5f1262ace217b791f81574f10818cd4c7ebd1d84a", + "regex": "(?i)^https?\\:\\/\\/stumguysdmd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "136cbc463a0a133c967c77469e4cdaf742f4aaf03311536510a044ac62ed89c6", + "regex": "(?i)^https?\\:\\/\\/euy46ru\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7e335ff5ddbe9b30de3fd639b8ceb238d339dd6fe6734f804297a611f04f7c0d", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ecaf899f73b5e1aad896c0b05bc25b354dfe6b93a22f280cd34b20061136e82a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index03\\.php\\?\\=uqxl\\&gigabyte1729964872900\\@me\\.com$" + }, + { + "hash": "d6d8454b2e23d4308165d0015cafed6c35194692e9869d78f0c057e509cc4e37", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cc88cd75475e33e26d4a5762198ab6778e9142b9615ac10bd37e31e016444d5d", + "regex": "." + }, + { + "hash": "1911f6defe3756f19097aba4cee0888540e921ad36017b03576193622bc569cf", + "regex": "(?i)^https?\\:\\/\\/openseacase\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "14bf78c8fd3fd2cec6c590d584a52a7f7b9ebde4a1546f4f26695a52bcae0f84", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ece126dce8a9fcc6533c8a4a6426869e910d4d370d362ee84f7139acfbb79e09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+comitment\\%26id\\%3DY29tbWVudDozOTc(?:\\?|$)" + }, + { + "hash": "454a03ce69f93a9c38c35aa70c56de45e4820db053953711b7fa102cd06b281d", + "regex": "." + }, + { + "hash": "ca6905e1174696076f9311c5602cf60a95d8871708b3c4266c1c7f94cb90dc5a", + "regex": "." + }, + { + "hash": "486f1a72236648eeb9af9e799ff668e71e08f2b1dd17150cc1bcc26c20d12631", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0bc1a6e9c61e29f6a48feff9a3d9bd0425d8275f79994eac60701b3af7bcd7eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+web\\-root[\\/\\\\]+restricted[\\/\\\\]+top\\-module[\\/\\\\]+userpref\\-data\\.aspx(?:\\?|$)" + }, + { + "hash": "ab651bc1e0b7e91e50599200f2c248767680bf9283c6fecf07af13872cc86a1a", + "regex": "(?i)^https?\\:\\/\\/fortnite\\-bl\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "05a07a4e6199c61594be7abb55ecc244c7fa2a9bdbc6873d3cfbb4d50eda916c", + "regex": "." + }, + { + "hash": "89a3693d41171adb6e7b132b67f5cbf19e1a3decc7f96654ad212c689b23dcc9", + "regex": "(?i)^https?\\:\\/\\/freefreefreeksndjrjr\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1504c13565c68c2834aae69bcf3c9b23a6c947af5daca038c883928f62304ac2", + "regex": "(?i)^https?\\:\\/\\/eqahgbqeadhgb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8621037ae0d319960a359016c3e3b7a64410a322a52e3c6f143a7ceb819bd2d8", + "regex": "." + }, + { + "hash": "1547f64934c5bbef81da10f64d527cb2b011f40a478ae67931455f9cadd6e758", + "regex": "(?i)^https?\\:\\/\\/sdxfsdfsdfsdfhjhgjdfsdfsdfhjg\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "18c9253e670dcdd17636e946370d823bfbe16b1e3fe4ecbb671a5fb1bf184391", + "regex": "(?i)^https?\\:\\/\\/bishop\\.com\\%E2\\%88\\%95dvmpijpu\\%E2\\%88\\%95grcmzhe\\%E2\\%88\\%95yvouyrl\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=metronome\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ab71696913440f4e192317b450ad03b3c70e793f193219562c2419218c7e6a27", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bfeec9599e93afa8899a3472c4411bb2a5e65b88dc9a3ae1ee0a0e0491257b99", + "regex": "." + }, + { + "hash": "4c945515935f089c65060e3c7f8b9e69c814e844dfae6db259495e8e32ca248c", + "regex": "(?i)^https?\\:\\/\\/robuxcidiks\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8ea71d5c80c4d473cf3ac3ce2b07badf40ae8ac26b264b7a9810a2c64cc96949", + "regex": "(?i)^https?\\:\\/\\/mcnauusu88\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "440ce76d4532ea7ebf239047a5e6ce995fdfb32f10c4a77b3b11a201851bfb64", + "regex": "(?i)^https?\\:\\/\\/etrhedhjnt\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "749ada31f0e1ee5fed0bc413f804171519e26aa6f8119afbfb8d988927216245", + "regex": "(?i)^https?\\:\\/\\/loveyouboysecc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3d07b288c761b34743aea534541f3d842a40f6d9d2849038ea8f4ba1672c68d7", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6dd2ce5acead8ee385a21874ce332c3b4fd13e53fd282b1b8b27ac0388788af9", + "regex": "(?i)^https?\\:\\/\\/caqscaqev\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "82f7b2a0d2985be41358bac84d92499bd7aab5a244243e92e7a3e1556ea2c737", + "regex": "(?i)^https?\\:\\/\\/stumguysdmd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cdda605e8a977afffa325504bbfab617585277d8c48d88594f56725e42d592fb", + "regex": "(?i)^https?\\:\\/\\/bomdiakewrewfsvcxzcnvzafajwegrwee\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0a4b3ef356f71aa44b2710e67dedd3b9537b785ff52b1782be67fb549140c453", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0d0d5fd350847b2965c49349aab6c05bd5fcf081def90982b71da42f3162cbe4", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9dbddf0da2c616ae51afe92652877dcdfa64a941081bf2a09d66d093d2f5e962", + "regex": "(?i)^https?\\:\\/\\/cui28uh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5de0a47736c5a0d7b8e8407d082559ab603add1fa91514a68bff0c067d1a4d2b", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f658a4aa76529d22a2be03d086c665a66cf7a54142de5b0fdee93a3f9d86a0da", + "regex": "(?i)^https?\\:\\/\\/ccleaner\\-customerservice\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d89d90f9c71be43a946aa79ee716ac35dee3ed9fc30b47d4aacfdfafd94cde1c", + "regex": "(?i)^https?\\:\\/\\/czxc3325\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1206a3e410841c27b51e2203897f8cdc3f4e61c954e14c4acffe7198d377b95e", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b1351bb43782a0ad8bb0f4e0c6a456141b21136aa45ad2e2d2e863e7c7833630", + "regex": "(?i)^https?\\:\\/\\/robuxcidiks\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3aeb3df1606a69febec364d9267747c678ecc3413f01d4645c1db115f1b89fee", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d541f661145cfc59e116f29d481bd1d0578e3edf031dfd85f28f72cc7708419d", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "12b93a8508f9e68739eba3029c75b8e6385635e396152d30d22624ad9ed73a4a", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0923f704fe56197edeab8341f7c8e1be9266c760a1259aca17df29db965c8859", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "900ed17c3419f0a1dd9fad5698e204791345bed338ffa058d60a0b7fcbf2c434", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.SkeXxCei\\-2FQmXEIW3A0ys1J2OLpIUiypk4ZNyixfcZR8\\-3DRoDw_GrNePmNEsuemZLvrIDQrewHibHsTvzMArePfXC65I\\-2FQ\\-2BOBl\\-2B2gM82FSuxzoBbd9GdbVfPP6yl\\-2BnVm\\-2BuaIXbC1UbEt41tpX0KTmjrXe5GFMzi9BrYhM\\-2BSCQla2ARsXbdlrxRTyDBCAbatc319RV2podBa2KbfnCF5INKtEHKrEWTFZ8xL5R91hxfEB8\\-2BJwMnNf8zWzb44qRpGWmYwZVJp6K4H1iqvRda9k8fGdpBNHH15gHDm\\-2BUc8x3\\-2FdckD8oS0UwhjAjqCkeox\\-2FK4Y\\-2BtzMySLyfcVpyCypVjkXwz1fQMPNIMpQmGBgOj9T5cs8ivbfCyrK41qG8Cer7W9NYPIbI6\\-2Fm1nUkUnVTTD3sBJ7EIVFo\\-3D" + }, + { + "hash": "44c6f56bc743b388332ef3deaf0f97ca7e16f2fe0cd0892bdf31f6edd47c41bc", + "regex": "(?i)^https?\\:\\/\\/robuxcardfsco\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "581bfea265eaf221e1aae42f6887a256671e94fa070ed7ed5869f913aa16d083", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "50ca883bd1ffe13daa83735002eda9e8e190045fac793990e2d55ba14893fefb", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4202f599124936f4a3d1f94ecf2f04f6555ac7f7aa0293644c406bd5cfd0159f", + "regex": "(?i)^https?\\:\\/\\/loveyouboysecc\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1f8dd22c71b9dedd6d95aac2d4c72936563bb380ad1ba65fb22ed5c308da5d39", + "regex": "(?i)^https?\\:\\/\\/fortnite\\-bl\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "428ed94e52b3c26af33793a9458c808f386839757fc1baa01de29cd580ba4a6d", + "regex": "(?i)^https?\\:\\/\\/zncjm7688\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "56ac0d4343b31ab8578479f54af4e878997ef3eb5df84874ab33faabaa36f405", + "regex": "." + }, + { + "hash": "a61f26a3de71f30a491a698940457070b7926ce19db32858bc6227ca7da2d168", + "regex": "(?i)^https?\\:\\/\\/asdjh2uayhi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e3ec9089a0194904cc22a30c1c94220c365aad5b58def4432d19d9504ad55074", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "72af1738a98e3654acc49704aea7fd490261eed2b0dcbc42085ff9be86974de2", + "regex": "(?i)^https?\\:\\/\\/rhgruhjgxnthtrdfh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "416a38bdb272749e4c7c8d962eeae1f591cf3a5dc0d1b561dd0e8f3fbd7b5c95", + "regex": "(?i)^https?\\:\\/\\/arqezhjqahj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fbfd54ac42755d9ee40961a73bbc29df4467e81ff1a4a5a494cb1e0a55eada1f", + "regex": "(?i)^https?\\:\\/\\/freecards2023\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f08e3f70e88ec5ad968c268e54c9fa85560385deca6aa7a559184b476275fb0b", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7ba7d4c163241569f797251906338c1bc8ad8d96e6e750a11a71d0b67a738cc4", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "52a3277f7663998cae3d7d3ac15ffcb9c73a8693e9829af04a07c61ae339bb82", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "70de28af90e7d7f55994a6a92e86563099fe1f08e9148a6bf81c7e84ed38a88c", + "regex": "(?i)^https?\\:\\/\\/eqagheqag\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3c8bf271e6dc514965a8caed81fb4d605455135b8fcefa06c1b54631b7639591", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "93e13cff77115216d361611eb8c1a7056de7cc5cf38c7f8855b70eb4d093cbae", + "regex": "(?i)^https?\\:\\/\\/canhnamnuditnhau\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9769c61ef991c92fb3548cf1d5d5113e67918f9e8740311df5bb8c8bcf431250", + "regex": "." + }, + { + "hash": "226b6f4190c9437acb5420d1958eda786ec1f2050e9ddbd636a43087411b5140", + "regex": "(?i)^https?\\:\\/\\/mcnauusu88\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a68fc1f632a7ecd264c036368659208d6799cd8c6e870245aa1946bf0a02a18f", + "regex": "(?i)^https?\\:\\/\\/charitysupport1277\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a73ac8d047f3dfa5860e20849b3c0f971e93e3eed8785a22e7c3988c8fc2afdf", + "regex": "(?i)^https?\\:\\/\\/asdjh2uayhi\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9d6570995088ead0d0b2afb209c4ac3634c0e8450a1eae65c958fb89cbc57680", + "regex": "(?i)^https?\\:\\/\\/aogrzowz\\.com\\%E2\\%88\\%95wfkccsz\\%E2\\%88\\%95meyvl\\%E2\\%88\\%95nhbavqtgv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cyfvrxpge\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0a42d13b83100b584badb31d11e7e6175afdf8479fe2e5a84cda141ff3d74c", + "regex": "(?i)^https?\\:\\/\\/stumguysdmd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "136ced433f736e63fedd51febacc9a9204377717acd559778a5bd671f0517628", + "regex": "(?i)^https?\\:\\/\\/eqaheaqh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "df2c7a107791f241744e36625d1fc3da5f321712e5c9a47287c7ca4038d24d16", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7250d2ad189441233fd1e7213ece830532afbccaf6e18dbba5a9279641f8156d", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cf6a48c3ba3f8f37044857ca3caa2d96d9f9f84bf40c14bc570f640e7f72d3af", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6f3b261da3710db1522246caaef6a56bda2c9e5ef73020a0a1bfe232efab1ee7", + "regex": "(?i)^https?\\:\\/\\/canhnamnuditnhau\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c1de5ab93433cf17bfe8cc86e82f15dc79b28be8f14f4248004df4e471a5e516", + "regex": "(?i)^https?\\:\\/\\/caqscaqev\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d13c7dd62b737a34c87d59891eba24fde7c9b3ca87457150c0607894309d32b2", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b82f4409c217661ee263de482c21336c02d8e93c6ed3b8ac84a774278948ddf7", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1a8d31c88e4bcf07123a88c905c7df31ffb591398885ab6c16cb93ae6636de71", + "regex": "(?i)^https?\\:\\/\\/trapezium\\.com\\%E2\\%88\\%95dojtgti\\%E2\\%88\\%95pfcjl\\%E2\\%88\\%95lvizzk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=line\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8da1dd81933a7111dd6eeb2113031d3136f8854173c5b17da5869215e424967d", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c367350438f2ec7f833501f0a702e2c58e8ea8857240436202e07f0ac9612e4e", + "regex": "(?i)^https?\\:\\/\\/bomdiakewrewfsvcxzcnvzafajwegrwee\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f5df81f12981b3a8539a7188909a5583a4a61cb27dae77f16eca1e60b74a03f2", + "regex": "(?i)^https?\\:\\/\\/hrzshqa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c8ad22c03f3fd948f749f6c941eeb848d8d775850894ea0fdaf3e6f50786f071", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4d9219990eb4e9031dd047e621d58ee8e523e108eb0c5b83553a01fd35220e7e", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "99504da479ec7502f809ae050548495ce3e33949429f5302d865387ba603f6ed", + "regex": "(?i)^https?\\:\\/\\/eqahgbqeadhgb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e58b050afe5cfebe4269221c13e9a19ee52ffe03ae8a252db8fe4160f223949c", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "710ebd7fad96b9c5dc50e28ba1bb7f9549cc271301c76c18ff86c6ee086ec52a", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c8f70345acd3a2d0b91c074260db6c0d2d97895881d859a928d08ac339ba22a1", + "regex": "(?i)^https?\\:\\/\\/openseacase\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a1420c9d49cd10839d867e82b7d33b124e3c1b32c53fb2fba43b9db0693f7a19", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Panelbcp" + }, + { + "hash": "a0762a9c6b51b92d832a89ed4032b20a8f947958f9460524752f52a632590b71", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c2077436c2807cccb43bd398b8f1f5c4b4b6a09f7aaf16d97e0aaa5ad53947ef", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3a5bc05c5ad4787da4bf5f1fa5f5e395a438a7b19f735537faebf9ccf76c6304", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8e3fa314fe8dbe6110250a76b4237f340f52712e541099410a83a5a0b3c82176", + "regex": "(?i)^https?\\:\\/\\/czxc3325\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7b5d0587541fe044fa72eec5d9baaf9666f799e6392222daaca3b25103c41e7b", + "regex": "(?i)^https?\\:\\/\\/asdjh2uayhi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9a25009f78c781d0ef8d628b7f3bf8565b59888eceda728dd165062fe3b8074a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnnz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9dd86a3abf6cc1c5307813619ec0efa3d39eb29c5c0db3e188b9d1b87447bba7", + "regex": "." + }, + { + "hash": "b09891eb7f2c9bcf5cfc62a6f4abd46451e4d8f63989a776178c28cd958c8693", + "regex": "(?i)^https?\\:\\/\\/arqezhjqahj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a7223b8379619816378fde879eed888d731ddfd34cc320be036ac5891e73bb33", + "regex": "(?i)^https?\\:\\/\\/caqscaqev\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c2ce4ae64ccacbaad54ffbb97caaa3e1e2795d9f5b92ac395d4e18d7128d5307", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5dc9e9524279aeccd85ef878d71ada64d2e7adc9fad00a49a69edd06020b5a2d", + "regex": "(?i)^https?\\:\\/\\/hrzshqa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9f80b4e61f1f1c495564e780d84320fd2dfc62723d3e8538addbd7d71af8807b", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e83613b6d5a0506ed63f165e3dd2432a0984f924a936b0bb5765725526d9000b", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8115aa063fee19fe71775bb3c815c19d643feb1f1cd1a0581c5c4158d652cb2c", + "regex": "(?i)^https?\\:\\/\\/hrtjnhaqfhb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0a71bce7c3bba6f40c6cffffa87e8e1d8c1695056001168d4badd146a485ba", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e8a398a373b4ec8878de574ff50071bf5ff91fc38017dcb890372897c1f60b05", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "035afb970a441b65c4f0cec02210e83fc391a7d5906155b846fbfe05a71481b4", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b9cdfe4b777d9434237748eac2d4471df6dec345b18e1b72b8f95d163f9217d1", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "72a64adeb6b84c264e2538b2d6adb6711ab3a35eac4fc661f75ddc41e48ec0c7", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "43f75f92c0c4097f6b4e743e0d10cdaae5786b86bfd3bc72fe02868cdcb26705", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FCKeditor[\\/\\\\]+editor" + }, + { + "hash": "51f2f77cccd1174a0687f1f6d3eedc6f1a0e02a87b9f14223a20b415ea56e996", + "regex": "(?i)^https?\\:\\/\\/robuxcardfsco\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c343ff2cb522d35083ece6d05257bcc09092af334a929878d6e8b5791fadccb0", + "regex": "(?i)^https?\\:\\/\\/robuxcidiks\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f0e4028d4e618a29049513effcab032146c078fb0384250a08ae271aa72e4bf6", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "68c55708167f56abce1fdbf974f310b4e53db7ee91236a1a8901231c46f03e23", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "628262391a624b6b4b01ff80680a8e9ecacd160d004596f395ebed19192b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+smartlink\\?smartlink_id\\=6\\&publisher_id\\=17\\&network_id\\=1\\&click_id\\=bmconv_20241027035243_237f5248_147e_44cb_93fa_cedede191073\\&pub_sub_id\\=2\\&pub_sub_sub_id\\=to$" + }, + { + "hash": "a7ac10b37abb6b8d41045509aca49ce3ec7a6459c8f9d17da0a600b180b12f2e", + "regex": "(?i)^https?\\:\\/\\/quickswap\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7590dad82eba3adfaa3a49c16163a7b4db40ae3900493e0b84e98363e7534466", + "regex": "." + }, + { + "hash": "99ceabde340abaf63d26b834c152e645e00c7a06a2997f911a0c6be2549519c3", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "25cc82b368e9faba16b1e6c318ffedcc1556adee7d85053ab94da42758a2187b", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "98844d0bc9a904efb23fd207e657e6362bfaf9c03077a67b3049d3be5424ae42", + "regex": "." + }, + { + "hash": "65f6c4152fa7e3ebf01d2ae09f4dfdab9f2ed7bf13b0878defbeecf4e4ce8771", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d8124ae9247ab40b9ba9a9bf54da0733852221d1dc5ba6872f95f8b9eeec151c", + "regex": "(?i)^https?\\:\\/\\/freecards2023\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "02a8f135a0f11ec3ea64ff9fc221c866eb2b147971bcd2b94b3c265d22394cb8", + "regex": "." + }, + { + "hash": "0957e609d2504c97b44d961b32278b435ba08cf5b2a9f6718321e93cd19a5764", + "regex": "(?i)^https?\\:\\/\\/mcnauusu88\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f22a4b28747c45190c0015e4ca7ff128601a31d5b9de2eaf9dde4202771b370b", + "regex": "(?i)^https?\\:\\/\\/stumblediamond\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6ed761fd382f9c7152cb9770cee47cd782d84faa91dd23ede68608b8360d5ac9", + "regex": "(?i)^https?\\:\\/\\/etrhedhjnt\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d2caf3ec89ecd364b2ebcba2e8a2021efdf0951e0e9ac59ed3f40ccd6180ae6a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9a89b97ab2bf03f9104e116b5393dc07a044c4c8810ce89789b51445ff3d660e", + "regex": "." + }, + { + "hash": "23b77adb53303cec402a0cddfe3cc56956951f6a4142788f1a1a5f3058504dfa", + "regex": "(?i)^https?\\:\\/\\/robuxcidiks\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8b3af19cf4d43b8c59900d064a1abd300339c08c2724cd7df9c42d9753034790", + "regex": "(?i)^https?\\:\\/\\/mishowergirl\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6ab38b146ea0839029c1357ad14736fbcdeca02ae43d9707cb4d8693323d314a", + "regex": "(?i)^https?\\:\\/\\/mcnauusu88\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b3eeb708542b8df720f60f6691dd229c1a9d7b3e14570c429f4bedf09da4da4f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "983f485d4a591ca98abdb6e8adcf1aca925e5f02c335984fe6737493e1b68433", + "regex": "(?i)^https?\\:\\/\\/freecards2023\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b5bbcba53fbd5e8df2fc659aa893b80d04863d3305bdb50d7bf2709e798408fe", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cf6a76ebdca44e77f4ded6526e4bbf5a1df9bd379d7fc646e95f6ae73e5c675b", + "regex": "(?i)^https?\\:\\/\\/openseacase\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f15dfd11a86e74e0225c5ad886c5af05232b4222f6f1c1fba1475f103f52b817", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a925acc990659da9adfbbc1ca288ceade4e744972af74fa220c0ca81a1ddefcf", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3a6be777d91a50f934db2631fb6c28d624f00f0f735ae87c436b3413da4298e7", + "regex": "(?i)^https?\\:\\/\\/mishowergirl\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0fa3a8fb55cfb8cfb6212ec8860ea96f51adad47574b4743579e7f9039fc8c7e", + "regex": "(?i)^https?\\:\\/\\/bomdiakewrewfsvcxzcnvzafajwegrwee\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ce557b67269ec3a74dc0ab9f14d623af8cd8f375cdf1022bb4ce5614208b1efd", + "regex": "." + }, + { + "hash": "2b6a701b10557bc0f0507fcbc90657dd0e9abb8e885accbc9c4ddf62357a20bf", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "80fb895fc9ea67c656c56f0ed47c3d89ff5f48c83303a9976591d770f0dca2f3", + "regex": "(?i)^https?\\:\\/\\/stumblediamond\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d19d27faa20710ee333cf37f3f6ac89f17c51000f01539ff7ec8da2b2d036dc3", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "496e9cb544f540224a29082e1abc35dee39ec4cab7f70ed52148d3b5f8b95a42", + "regex": "(?i)^https?\\:\\/\\/mobilegiryeni\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "18c9253e670dcdd17636e946370d823bfbe16b1e3fe4ecbb671a5fb1bf184391", + "regex": "(?i)^https?\\:\\/\\/proviso\\.com\\%E2\\%88\\%95gimhxdlf\\%E2\\%88\\%95xbgxgem\\%E2\\%88\\%95hehmpo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=reparation\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "401ba563223594e67227315bbb34e7dfcebff44729a6a4c0ba329d4287993bac", + "regex": "(?i)^https?\\:\\/\\/freefreefreeksndjrjr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d8d6011c0da93f3b903a4fcde48316e62db4980b498aa0f05a96aa78660a6220", + "regex": "(?i)^https?\\:\\/\\/hrtjnhaqfhb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "40730a1b7bbb5caf9ae2ea67666daa15e50700026329286f9d31ea65f8575b17", + "regex": "(?i)^https?\\:\\/\\/asdjh2uayhi\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e8b8acf46a3069e08be4cd15873c1489cf81c3652eb5059ecffb3efb06351a89", + "regex": "(?i)^https?\\:\\/\\/mcnauusu88\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0556eb8c8e55b1a9830c611b3c3d7000fcb132cae09b0b8627a6d3c5b4679d58", + "regex": "(?i)^https?\\:\\/\\/rezshjnzsjhn\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "09a7056db2d9d4f0a46df345fc8e249b589382fb0ca5289dbd8d93cbc767d139", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ffefb219e6e537139428eb8f28a0fdf43e7b03003ee5dcbcee8451ed3e15270d", + "regex": "(?i)^https?\\:\\/\\/etrhedhjnt\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0673a7d82fa7357c2840b6b9dcefe4b516304879948bc9b25c79e2c544c8ac19", + "regex": "(?i)^https?\\:\\/\\/canhnamnuditnhau\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4046022ead65e4b1e4c570a063eb026e20fbfdb8de4f5c3ffa50a2694122bd91", + "regex": "(?i)^https?\\:\\/\\/stumblediamond\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8bfb581aae04a01386e4709d8ac4025c286fd091567597942feb691324011533", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "89a38f58d94c9d03c8dca9ffb396dc5cd5f64088d5cc73ffcf9a79191888645f", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "14b2dd9096953fc186236322c996bc7df6bb99e5fb06d5d51d86674e11f5bb45", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "81f5c756f9d181c66fa697f9d8fa34bcaf23f0050e8f4aac80b55881a4c6e6b5", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "32b431420f35a31b75d8095a0a0dff4bdad4e273b0296ac254ac02def1701fcc", + "regex": "." + }, + { + "hash": "bd17239e5b247b854476d65a2ccd83fb731cbaf460a9586bfe593143af5ee650", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e9eb6b61f4729af26d90f50e71c1d8f9c1f56a687140274a5ddbb69f91c8c0dc", + "regex": "(?i)^https?\\:\\/\\/eqagheqag\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "dc05c9c323eda0274a4a625f3e6cc8a318906f1e726cdc56d6829087af3606f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "d3d9d1aaaedc8a1a0ed282b5f7297e2f57f4cd512aaf6150a6ad2de2477be5c1", + "regex": "(?i)^https?\\:\\/\\/fortnite\\-bl\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1eb85a70c5c5e3a7de94b717af2338b2e7e6bc57cb23dffa9fbd6eda26043790", + "regex": "(?i)^https?\\:\\/\\/loveyouboysecc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c88487776eda87b63beda31c8fac1c7de8847ef35251959c89f77da9a2ad3607", + "regex": "." + }, + { + "hash": "59a10e733b15ce65c08698fc7fcb56c6628c1334f5552f0331b70c751f0b6dd6", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "61dcd583641691f063f8296f25bbc8b6fbb3b05771945b09d6a737a719d8e05c", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "be9abbdc48a02ff5a831b0b12a45fb785626f65c3c3edfac41cb17eaca4dbde1", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fd4696f1c88c92e8288f53d8f8a4d8f07fe30908503e5948da185944e57a10ea", + "regex": "." + }, + { + "hash": "be4bb46a8df6938022fc9be8b295caa2645624ca46da7759ff63a7d8fe60570c", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "51a8c4401c776747984cc71df7b2bb1097ba5ea0aeda0fd06b2ebc765017ba6e", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "47ea8239555c64807cd75abe6181ff3fed0e399d85569bb6e147316fa7bb4144", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "80782517a14df537f2adbebb886f27a6400d152e174c732fe7bbe3b4650b1a39", + "regex": "(?i)^https?\\:\\/\\/mcnauusu88\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "df8f8fcfaf501849bf7295a5c030832d133ea118809502f5da67e77a7d38601d", + "regex": "." + }, + { + "hash": "1a2fd6613fe6d08d7a38b52b7a477d22804553557429bad4fb3a259ba8422934", + "regex": "(?i)^https?\\:\\/\\/robuxcardfsco\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "12f0d332a2f6ca5bca5a1a06c1247b59a3c8a6f8339d2cc6c3d41b7e4f8f5992", + "regex": "." + }, + { + "hash": "dc05c9c323eda0274a4a625f3e6cc8a318906f1e726cdc56d6829087af3606f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ee2b6a0bcbf6b3df6bbf7debd2997a4aafa673e72e0500e2718a560acfddec3", + "regex": "(?i)^https?\\:\\/\\/hotgirphilippin\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a1935d29942cf6593c5948d7d48b6bbe170381bb53d9a710a8736cd5f347e07c", + "regex": "." + }, + { + "hash": "30e032f5b25fe086115adb35200aad0a3b57b305c359f27dc4af8db8f62d4720", + "regex": "(?i)^https?\\:\\/\\/rhgruhjgxnthtrdfh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3ae84c52331064b5e034a9add9ab2ca1d52ca4e6531bb371715d3eeb50bc3df4", + "regex": "(?i)^https?\\:\\/\\/mishowergirl\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9c565677d9382a0741e202ed6e240fe820997386aee5ee6efa6a745da2232864", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2fc480ee109a865e719c7e20bfa7fba9bc01bf085caca1a846e3a8ab432c92cf", + "regex": "." + }, + { + "hash": "dd3548198d807405836734a01df8d447d2dd679624bffb408f80130f38ae7fa3", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1fe668adb343bcbf6a7bb3256520d79c2773002c44421d8adfe320aa4b790d51", + "regex": "(?i)^https?\\:\\/\\/zxc22asd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4ef1bc7a8826aa78a17e61a3fabf079d013c4fde161720832c9ac8c09df91797", + "regex": "(?i)^https?\\:\\/\\/fortnite\\-bl\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "718e6db4b0d5a054ea92a5c50281d9cf7abfbbdff550c6d71b2d3c36407af411", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "973e82936e27b37ba739602548160eb4dddbf13696b4054ee6570617b0b0046b", + "regex": "(?i)^https?\\:\\/\\/openseacase\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1137d6451dbeead72d6bbc569a1f711a7dd93c33c714523c0783a886e28b47b4", + "regex": "." + }, + { + "hash": "900ed17c3419f0a1dd9fad5698e204791345bed338ffa058d60a0b7fcbf2c434", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.SkeXxCei\\-2FQmXEIW3A0ys1J2OLpIUiypk4ZNyixfcZR8\\-3D7NRc_tKlzhRd88haPuwKpAm4OPN\\-2BfkD4eKxN61ResO2fddJju\\-2FRTwBhNefuC6LGm9NRma2E4mods199ikSPlPU\\-2FyGnZqXNALuMYi5jishkAPThe\\-2FE6UXeV\\-2Fn6GMES9qSMn8RnsOyK2OyK7baD4B4pUe9UoKJl8DKQCqemf5NdB9idOo13C1hUxHUMwopjV76viLW2NYGWtQjcuXXDfLHVbhnRwxO6DmhwIQZZtVYW05DL3RXaXyiENzEwJ4mUpiMi5ixnrVslT6yLzjEI9RYoQLNJzaOvO2ZdkuSGvFc6PuXLK2zf23ADfh7bYjRicgN52dfRfoXsDMqa\\-2BTr6CUQRmXj4SoxTeC\\-2BhIJR1kpPhor3Fs6M\\-3D" + }, + { + "hash": "a45ace8f0ac99afae4124673401d6a6d0f1be8013fc1efd0baf70058aad107d9", + "regex": "(?i)^https?\\:\\/\\/eqagheqag\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "aaaf0f3f6b122259c0fb831a99a0019bce476efa6526b7e1e493dbb3bda612c0", + "regex": "(?i)^https?\\:\\/\\/canhnamnuditnhau\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9e7ef8a7907049317350368d05e6dc791358c08abff80651aac0b93bb7cd0db6", + "regex": "(?i)^https?\\:\\/\\/caqscaqev\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "84327fb2363148b89e2156ab5777fed34856d7455bdf624a322efee049e68ec9", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f2d286f39c4bff06a4c9a9391fc127208a59878c4c406407b4c310d760071f30", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5ef2e96bef48a432e93262926bb313625bf44e8509f7b96f84a983b3e857a996", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e38ceef35969c99347ed5984cf45bb6a5711fb896ccc443fef5333e4d414c867", + "regex": "(?i)^https?\\:\\/\\/mail\\.167\\-88\\-160\\-27\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b0f1bd2507e365287373f2bd02614064f7b314ef699b9ec535d0eead3e412c3b", + "regex": "(?i)^https?\\:\\/\\/zxc22asd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fa168b19c282129a759f1b41f0521564692452596c083070213af049472d3dde", + "regex": "(?i)^https?\\:\\/\\/geqahgqa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "490c199d7edb1d85b9c336f12f7e7562a4015ea329cf3b70dc87f62a422ef9e0", + "regex": "(?i)^https?\\:\\/\\/freefreefreeksndjrjr\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "984b1531f7b81aad51503cd6bd5e92f5a01d1c330ef45883104fb0321981e48c", + "regex": "." + }, + { + "hash": "080028d5eb457f1cbd68abdde481412630b0f354bd8d454c7b8685cb9c2c9208", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4f2bb99b927036ea955fa39a2dff7cfec05f0ff1c0f2d62960fc355962818215", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "899e8ea6046c8d24689e9fb4917773bbf6984e227523900902e8052ca49821ab", + "regex": "(?i)^https?\\:\\/\\/fortnite\\-bl\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6fc517a41113d41eae9521d6b6ac695aa6b76978e39af8390926bdece36447e0", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "063afba8e1415a68b925667aa13efccde390ebc46d9e00ef6ec3f502dccb2269", + "regex": "." + }, + { + "hash": "5dc3679b120293d68a47e31cb413fb4e654e251d6b3c9e70b78a7692d7161ede", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3d711010948e6f9adf3f0a493669e25dbe92a08c4ac9272d47cf4cbea6500437", + "regex": "(?i)^https?\\:\\/\\/eqahgbqeadhgb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4415e2e82f399232e1a407211fe57629e3f1129d2f26967f4ce79ae22e510db3", + "regex": "(?i)^https?\\:\\/\\/eqagheqag\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f2e0d0eb0c890bda4a855eb9abc08424bb8755d196fd3f100b4cac90b3c441a6", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c3e77f25a2170a0cd51c6aa34967a5d2fcca4da78a888514b0465cd1e8b8aab0", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b60534c192349e758e4384c1136749fd268c7b86cc2e9f2bfc44bc1943cf5250", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnnz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6d89d398a3175843982eba7376a940faeb149c8c36b9279af694f1070764f10c", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2d7e53e176a774bb4377d97ecd19dd78e73dd0e0c346079563ebe1ee50b9eab1", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d04576559b630f33c2521d9a260732d99a48306d67abdbd66c35b55633d73462", + "regex": "(?i)^https?\\:\\/\\/cui28uh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b46ab2ef1c2257dbc1f23580ea6418807e3d1408360d40a8f3902cf29632f07", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d61a226ee439bcb3dbe40551e373ffa790fe4bbfa614f29f092e1424802d749b", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "991892ebe41dfac6b84fcf234aa7ca77d7981e164b1b48bed694d60f6d8c19eb", + "regex": "(?i)^https?\\:\\/\\/cui28uh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "69671986d917edc0642a34430e9e32c8dbac0600f3a3fff2ec77c4e245101764", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5c617f12472361836cba474b068b7a604d3670d12b810d18832e37490ae53fbe", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "877db4cd7ec3319f561380ff319c25a27fcd5b1230b11af0b3e86b336f5613a9", + "regex": "(?i)^https?\\:\\/\\/robuxcardfsco\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5f199459dd54a7b9813f1d3963ad654c898db58e0b342ac4239b4147c31b8781", + "regex": "." + }, + { + "hash": "aa3a0f44c14238df30755f5770849fa5f405c8a9f21d453efaebf195c98b50c3", + "regex": "(?i)^https?\\:\\/\\/hrtjnhaqfhb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5d7cc242e6ced773bf1e8980af25866adae0495606c5019d4bd77633877426d2", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "25de657892ade946985da6f4d6b51ad4faca6a6496e7bcc6484df4499a6d3778", + "regex": "(?i)^https?\\:\\/\\/hrzshqa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6856fc1d22d410115dee2db78e6cc3c5ab8c1acb5d3ca581c97cc6ce374d4688", + "regex": "(?i)^https?\\:\\/\\/robuxcidiks\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "96a25ff2d62ca5206413e74810b0a460307b67968aac2037e6ad99289ff1b1a4", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "66a7c362597c9ecf48dc876e52cf41977bc05160da45bada60f345292fd2a7e8", + "regex": "(?i)^https?\\:\\/\\/rezshjnzsjhn\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "66a715f234a41556037275865ea87042b08c0d1355b1f83edd00cc632eb29d62", + "regex": "(?i)^https?\\:\\/\\/arqezhjqahj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a9cac097af33f72f664bfccd8c266c5cd3d6ce58d0ed63ac61973e424b3db6d2", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ce3c89c3f0713f73591118d1a2926ff5584f76d41bef5722de71271b2bb99d43", + "regex": "(?i)^https?\\:\\/\\/stumguysdmd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "75474fbebdaabefb4dca890ba4ca659cacbb7bfcf9eb02645bb01aa2a713a4dc", + "regex": "(?i)^https?\\:\\/\\/fortnite\\-bl\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "41fcfc07f801aa03d99bf664e624ebbe3edcdf8702770081236e2716bc1e651b", + "regex": "(?i)^https?\\:\\/\\/eqagheqag\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c26da0782e4dbef1429566b730ead14454ee04043c60fddf7e32014ac3193a5e", + "regex": "(?i)^https?\\:\\/\\/caqscaqev\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "84e1a0ea4a9c86848191b065b57a281e1bbcb86b57d96fd0f743609ce6b1c67c", + "regex": "(?i)^https?\\:\\/\\/robuxcidiks\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5c686b831af84c83fdc36fbe27577e76dec1a5d99c8bfc77918d415a58816161", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f80336c63c5e338eaf17236f887f73ee082e72535e8821f73489b553dac081fe", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0df4e8f4ab308663904de2a5eb92ca6219587240b7c88fb7bc2cd3840b44c63b", + "regex": "(?i)^https?\\:\\/\\/bomdiakewrewfsvcxzcnvzafajwegrwee\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4f4066c4efedf42abd8cef5b7c55ac040a7912111164127de53b2ef13f44e09d", + "regex": "." + }, + { + "hash": "e47ce6736a8ae830ba32f5913c0e75bbdd7edb25e590c14f0fb91ddc6af49e40", + "regex": "(?i)^https?\\:\\/\\/cui28uh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2ce2130ad8b500fddc484a92ee4f801b005941bef81c7110bd710d8bae335e5a", + "regex": "." + }, + { + "hash": "e814f95694e892b50b36d00b8df4576943a2a68aace36fe8904c63d728d46d33", + "regex": "(?i)^https?\\:\\/\\/arqezhjqahj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a27d33a9b2e42e92b4596980443dc31731cc503ccc61683e8e975d8162ea175e", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5243a356863b2d1bc4cada18daa41faee9f8555b34bda041166d58e2896ba844", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a89add5c82ea54ad033a00f4ffeca8f7fd4e203c1ba118d44964ae0e292753bf", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d28580cd5923015ee9d76e5ba5b36b9c0b9d72e1e72f0f8e193d016c4178b8d7", + "regex": "(?i)^https?\\:\\/\\/mobilegiryeni\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4d0ba33c8965c532df43d57f1275bddfa2b9a46ad20543f39375f5d4dd4374c5", + "regex": "(?i)^https?\\:\\/\\/sdxfsdfsdfsdfhjhgjdfsdfsdfhjg\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ff83918d938ce7d03204c5007de7beecdca12e1fb679b87e627db923b5f8a04", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0efe4f04ebfafc25447675098ed71c2017c7d5523e5a54fe798619533cedc4ee", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a4cb31a9d42e397d012482fd9b5c5f587835b3b4008e12b00ebd05b5a27fd396", + "regex": "(?i)^https?\\:\\/\\/hotgirphilippin\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "625de0f0dd6d2f73b30a55cdb3d8a6ce0fe3f9a0025977e71591dffd7740ffba", + "regex": "(?i)^https?\\:\\/\\/hotgirphilippin\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6f24bf4a923c33ce9330f4310cdf7c59065cf569c951114098933b4f62393819", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f89d66101f17c090b587ecaff81257cff670f693214dae270afb8e00794adf79", + "regex": "(?i)^https?\\:\\/\\/euy46ru\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "25d29615551ad4d89144e516bfd08fe19bbe9387f00b405d2b6e677bed15f0fe", + "regex": "." + }, + { + "hash": "3fe774d1c4683f87cb2d86e55830f17e7d5d52bb9b7b585898078419136fa896", + "regex": "(?i)^https?\\:\\/\\/stumblediamond\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4bcff1037db6d4f180494c8fbedfc39a67baf906f6a1f829e0afcc8861040f79", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "09e87a475f570e6154135f0f174b6a6f6625b44fc59c0b0d863e6739bcd5233e", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "14b543883e37bc15e620a8acfd2a0d47ed800ceadb8273ffd5563ebcbf65a47e", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "536481e2a92206455eaf106779c2b1fb887c322101c6b15091d927cda7470e0f", + "regex": "." + }, + { + "hash": "eab9239a9d3bea8c7e5d7374502199f9d42151503fdfe70e036c766b51b99893", + "regex": "(?i)^https?\\:\\/\\/babydadylove\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6d57fa3364680d022b5f93bfb73e00a144362a8ac7303412d1e7be6f9752421d", + "regex": "(?i)^https?\\:\\/\\/www\\.ms152\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1c5b7d6ee88c477c5e14833b0f07e9cfb598f35e0d747f1315ffacc1d6ff98e9", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d050aa0b6edb4971fb7bb9ac7cc392f827986d27cc5893533e79e46da1cc5a79", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e2ce07e2cb95bb2bece3f676bb285518fde525e929a90b47022d138de495a3c9", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "dedc8a352deb527423f3c3eec17f465e0947a49022792a75fefe6107ead91731", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fab931aea6687492f1531cfd314b9439b6004e2645f08fd644c018225e1df283", + "regex": "(?i)^https?\\:\\/\\/arqezhjqahj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "890dc2bd2fe5ff5a07afe35c8134d3fc9af75eecea2f663272fb1c80cd30e3b6", + "regex": "(?i)^https?\\:\\/\\/hrtjnhaqfhb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "607a8ff8e97e9479a61753becf33ef1d725d907509e08724fa2b8936c94f8d60", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "64c81d7fa3585b880c87cf05a59e275e6bbebc24961db806b9a12b8b19b88aff", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1822a69490fa6b97ad448e96f5c18d884c80d59d8186ffc25515ad640a0243b4", + "regex": "(?i)^https?\\:\\/\\/342115\\.com\\:6899(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1fee9bc9c2b03012b33b17deb41ca185ca1cf481178285edc57f4f9797c2d366", + "regex": "(?i)^https?\\:\\/\\/asdm28k\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2d42b48e0005c4cd9d737383326dde4af2c2bd2d696e452d7df3e07e211db572", + "regex": "(?i)^https?\\:\\/\\/euy46ru\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2c3f96311efb1d015abbfcaffba4206f63fada9df97870dda3672e0e37301c88", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ece126dce8a9fcc6533c8a4a6426869e910d4d370d362ee84f7139acfbb79e09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+comitment\\%26id\\%3DY29tbWVudDozOTc\\.html(?:\\?|$)" + }, + { + "hash": "134ee72617e225e2f2e472a10520270b0eb3684e69fa331fc704a21110eb8317", + "regex": "(?i)^https?\\:\\/\\/stumguysdmd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6ad4660a30a4c38c298ce0e49149479910cf3f043419902ed2d197157a2d656c", + "regex": "(?i)^https?\\:\\/\\/zncjm7688\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7f0a316a44a78b7921405b5b2e56dd055c99c4d6e8c5d6a1ef1bbddbb6e81626", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?usms\\.hrhlpghq\\.top(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "d4466be37a71438e89a1463f85854aeaf1a1f217ece382e063a4fd3a513da770", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0273e12affac48f10c2b540ed96ca88c6c22e827d69a52bd53f0a2de02446c67", + "regex": "." + }, + { + "hash": "c02ccdb2785035fc8657ca3d9d1618e7541b17ee1186b3fb8876686a70082d13", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnnz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "665f5c3b89fdf1429e6a572fe96a342148722d9a5e81b495175a5c1e181f48ff", + "regex": "(?i)^https?\\:\\/\\/etrhedhjnt\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "477ca324b3a6b9b71bcacafa562b643b4a82a04dd0a87ffde52154d132589021", + "regex": "(?i)^https?\\:\\/\\/freakish\\.com\\%E2\\%88\\%95qempbegn\\%E2\\%88\\%95cavrogq\\%E2\\%88\\%95yyohqriz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=toyota\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e4ce84d0e101643071acb4f0d6fc8c3ce597331d85df3ebfed086c796f123e22", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "36b1905a8818d930bfd7ed0380a55c6684390d232ab4ddc137a20b078b9a65c2", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c919314556dafcc2ff1fbf79ab10410739874d5fa9aceb30f86cadf874ebac60", + "regex": "(?i)^https?\\:\\/\\/mcnauusu88\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a19496739bda275cac778e66b8b8fce59b583b5e246624816de276c56df199f1", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "320167059a076655d3319f917cbd47060afdf7d8013edfb23ca5693aabd96a51", + "regex": "(?i)^https?\\:\\/\\/czxc3325\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "14bf5f9d5c13582f7c4b8df0c1b55fe99353059d5bbb94873cbf376183f41773", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2689b5e0f821d7376ed6a25f54173927a2698bb11a1d32216e3ccb56e32cd743", + "regex": "(?i)^https?\\:\\/\\/hrtjnhaqfhb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8a7ac98c3224ae2c9d246e55f96bea3a0bd435f2bc5e5db3ed089305c4317e26", + "regex": "(?i)^https?\\:\\/\\/etrhedhjnt\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c668e12967a4fee11f866f0b1fa8d25d2bd21b37e31f1ec958613209ce9b7b2c", + "regex": "." + }, + { + "hash": "e2b196806d1ad9038a3b14cf47cc9225060436906a9c90fe1a02d2a44309b735", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5973631e56f609502cc7496bc15f358afe39b0976131e7296393e49e68b28c44", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "833b98e7955266952b69325b666305718095133d2f611bd46f4768b6e727803f", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c6cb73e5baffb4b6502efeab900b728b0ab6821862f18e8c724fe6d9bb905141", + "regex": "(?i)^https?\\:\\/\\/mishowergirl\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d0f8164b9bba571d22bcfa327f72a9490dbc52d45e06bbfb4e54658875160723", + "regex": "(?i)^https?\\:\\/\\/fllbatls\\.com\\%E2\\%88\\%95yacycuseu\\%E2\\%88\\%95sowosl\\%E2\\%88\\%95pixjfgh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vblbr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3be5a21493ece669c60d7b9f64a27de3093c6c53e14425b6055a34a5092de187", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "79cd167ecca4788da4132355f97af1fca6a1693362fc1da5cea32165514c1e3f", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4d654fa981a40ede2544af8479b946a7d85c6d4c451954c0d05ffb2493452a4c", + "regex": "(?i)^https?\\:\\/\\/caqscaqev\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f680716e41f2d215e4dc139aa5abbc48a02602245be4b892becd4b66151e65a9", + "regex": "(?i)^https?\\:\\/\\/mishowergirl\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "da75d678f49e21ddb54ca0204e1bc077442e3b62ad4ccc67d3768436ded51eb1", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "44df8ac6e2ddb9ad09e13f325e8c635629a8ee00122a94936dc0897e7f6bdcf0", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "60d994b5709274f342b315e4f287645a717f1b21816632d0e3f00f076901b9f3", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3196b752c7be5544a8a3320962c001c9b10a2210afe06103e930f73dc0711ac9", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b92b94b87b51b85ee47a8c4e5e5de09e959fc5307eb11c58672a3dd7b12c091b", + "regex": "(?i)^https?\\:\\/\\/arqezhjqahj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8f6c09cfc7000b5f0ed6f38ae7d3268d5bc76f2922b800c86c4539974d2c375d", + "regex": "(?i)^https?\\:\\/\\/hbraqhbgqar\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8f90bb89a02ddec395f9bf491fc9361c73a3620c10dd8f42feb429dd7a8c1fbd", + "regex": "(?i)^https?\\:\\/\\/freefreefreeksndjrjr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8715b7e4c436a6b19139f17c6cedeebaa9e853e7c1f730400536fe7baf208a90", + "regex": "(?i)^https?\\:\\/\\/eqagheqag\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6f6239dacc4a00418b7f437296b9125eb9a7401f5bc0b3c67f909cd3cbd188d1", + "regex": "(?i)^https?\\:\\/\\/eqaheaqh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "94ea24ce6cf9fa14746191d43f5509ff6ee54a1d085b53d579ed27b26234dbc0", + "regex": "(?i)^https?\\:\\/\\/czxc3325\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "87c8da522ea884a71be6063a7d415c34ef359a3b71fb95ca79b9f8678487df2c", + "regex": "(?i)^https?\\:\\/\\/mobilegiryeni\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2bc279a3e5aef4e4ccda39b108cc93ef450290a87231d19eee15388f17cb3b77", + "regex": "(?i)^https?\\:\\/\\/etrhedhjnt\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2e04a45f8ffddb6554086dd49d38b35d4bf2cdece6786fc5d0494a7958c62bf6", + "regex": "(?i)^https?\\:\\/\\/canhnamnuditnhau\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0901aeddd799ab43eaffd12c780956039dd8982fff6b97f5592cc7030088d37e", + "regex": "(?i)^https?\\:\\/\\/eqaheaqh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f33572fdbc0e5ac28455ec91c8ee965f7793b00b7b965a3ce566712a7ede4", + "regex": "(?i)^https?\\:\\/\\/eqaheaqh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bf5097acf654ade05867dd9ed2153b711e3111f301399afd89ba261ab262136d", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fb3a0f7879638cb0f8f63453ed4345c94bbddbc2b736bc14e23529b6cce513a1", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "deff2cb73102b9357c3973bb97a9daac6c9b46b12d80ed29a2f88ca44aaaffd9", + "regex": "." + }, + { + "hash": "1af70d02f12fb4311a3e6a6aec16382cb372542ab77e905bbf8ffca07a3df880", + "regex": "(?i)^https?\\:\\/\\/geqahgqa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "274556c96e891d1b99a3191e75959d1a5a25e71853c44527f59ddf8f0a07b73b", + "regex": "." + }, + { + "hash": "bce8fa970d51158f23afde875fe4db2f78d5ccdcf074edae81122ad002227957", + "regex": "." + }, + { + "hash": "900ed17c3419f0a1dd9fad5698e204791345bed338ffa058d60a0b7fcbf2c434", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.SkeXxCei\\-2FQmXEIW3A0ys1J2OLpIUiypk4ZNyixfcZR8\\-3DVkhh_5x\\-2FGzeKFRmGToGpdWGrwkjlt5NlzOZz4F3VarhN0IvXyott24r54031PaQbPcbtt\\-2BJrnwu\\-2B0F28HyVEGKE\\-2FL7ffH\\-2FugWJk5mz9gylXb7WI7vpnw\\-2FBzlE\\-2Bqx\\-2FfdFrO6vS7RFKANOFRjd19\\-2Bz\\-2FtDBNeN19hHtzxVewPBSlf7pEDMQv8tWTTYJVVsT4TvP8izEwe40u1Xw93PGZu0RdV1IzrKeiR78WXkiabfQFuFxpLvafeKYqnjG\\-2FH12txHm1Rrbn3S\\-2FLRWU7WOMcx6J2uQPuJ\\-2BrQYQNOvxat1wc\\-2BC0bfPF0FvdJZKH4KZ5SccymfKklXYlZw1gBBgDfb9CyeLhvx1j30dvXHfDmucMmOzBgL9uM\\-3D" + }, + { + "hash": "bcd58031be24e007b6f2cdb317c6b010f44252a63e7c5dbc42fb92d396077f8a", + "regex": "(?i)^https?\\:\\/\\/caqscaqev\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3176df73e1ed4a64a51b06b250987bb1b2ac82ac00089a9ab76785d4a682d67d", + "regex": "(?i)^https?\\:\\/\\/rezshjnzsjhn\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c409f9b278da4ca5a277bdd0287dbdb314fa58874df8a157776b33ea51d35d3c", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a10df781f64d20f070371f36cf0e552f3b43ad7d4a8144d22a0d02eb5168293a", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7bff320b4665667ecdc9a050ba7ec960cfb2ba6bc62ad558e3694712a8ced6d0", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bb5f890fb526e95f9769469b940aabd583c70ee4d478024acab60a8204e1bc01", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c5e116e6136461648ff00408ba5590add58b643f8285bf0e18afeb0179a0aedb", + "regex": "." + }, + { + "hash": "bd986d024359fb226e856ddcd7d921923718e92ad2b85008f13301f4c3045eec", + "regex": "(?i)^https?\\:\\/\\/eqahgbqeadhgb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cfdac74b3869f42ca64a817aa60942744e73d1fe925a71e3a4d6a2c3f83f77d9", + "regex": "(?i)^https?\\:\\/\\/stumblediamond\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3bbd3f64d5b019686674f449b3166d73c5a127226d9fa5618eb16d301a4afa88", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6bb2f87e8b689212756d660511244339b59c70483ee94ecc67181186698e9142", + "regex": "(?i)^https?\\:\\/\\/zxc22asd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c46243d498c719698c40b8978be9b0e7dc65b9c3e3a8805a07165100e0f26e3b", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "18f2f53fa139bee548e3b9d86b830c7d9643e1f0deb2beab0e341a20c4813fa3", + "regex": "(?i)^https?\\:\\/\\/zncjm7688\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "112de9dd24b663bac801c5d51f58c2d6563c14334bb6953add51433d9e3eaafc", + "regex": "(?i)^https?\\:\\/\\/hibernia\\.com\\%E2\\%88\\%95zncjoiw\\%E2\\%88\\%95qsfrq\\%E2\\%88\\%95ihgduc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=toyota\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dbd1f9ec5964e28e0936ce61fb3bb1222f3a93e75ba1426bde18e2852938a32c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvvd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7d0d993dd074d79f958e35f067020a0a974886b9c162fe74043c26d7bc09fa2d", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d29acf84f64f5b7efc20a3ca017a74a41376e894e2c50a7d2b9a66e1036e696a", + "regex": "(?i)^https?\\:\\/\\/asdm28k\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "365faca51e0ecc9e2833a78ccf7142a0d6c263e0cca237af538a70159c806b01", + "regex": "(?i)^https?\\:\\/\\/openseacase\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1c45d2785b4a34cb54512bdc1dbc71787d79107f5a0a08ded56334827fea37a1", + "regex": "(?i)^https?\\:\\/\\/eqahgbqeadhgb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0e8ca3bedc6bc23312db1ed919085e07abade8a45d47d3ca5a39bdd86aec49d6", + "regex": "(?i)^https?\\:\\/\\/charitysupport1277\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "228689c9beaba87e6efc0a53910325ca2c17f379c317f897e483bc62bf9637bc", + "regex": "(?i)^https?\\:\\/\\/czxc3325\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ea339019bd772dce3ee3ba759c43485549694216cfd907ec3407eacd638faaeb", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d8122290e94c8638f86bbb9887fc104169ec8055bd2a47f99e63c7cb9a698a03", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b5eefb7ca5a6c46b0fbd48ceb2d67fd22b0a7e8f9548c90b2c02bae525c170aa", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e39389acaf4b3f74742e1ff8363a3344cee6595b9d6df75b3d4f159b8b081fea", + "regex": "(?i)^https?\\:\\/\\/hrzshqa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "aa4553e0d239bbc0f7c661d5e1c824054b6af3c394b832808cfaf8e8d53795c8", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8794b9d81f3a5424be8090479872b4da022c40bbc3a232a8bc958b9435ea20eb", + "regex": "(?i)^https?\\:\\/\\/zxc22asd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b0a715b86b29eaae42f18ed6e201da8f1b896bda4185f44e2ea2e7245ff44b43", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3871ed05f9c043af91125f5e7447aa5e31bb2d28336310c3e478285994a63d54", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b6a952d9a64ee1e5fbfc79cb94a92a261e8cecbb01af5f084ddd753181401189", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "76378f2597072395dadb9150682b84ece47f9834fdc23dabea04c926c531533c", + "regex": "(?i)^https?\\:\\/\\/robuxcardfsco\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "90c5efdd29d9046f661b772d508e1c2db229a743dc2131a37e04ec868a93fbd6", + "regex": "." + }, + { + "hash": "3ece7cba7757ddb93cf333fea7eebc77522db7feffaf13e94c632ec9995e3559", + "regex": "(?i)^https?\\:\\/\\/mobilegiryeni\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c93d0d0d548f23b9385a04eee2356fbd568b656fb0e8a34ccd3190ea6837bb58", + "regex": "(?i)^https?\\:\\/\\/eqagheqag\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bc308401cb56d39726b0e8d890b013989be2084752e6288bd76c953f553eae39", + "regex": "." + }, + { + "hash": "a8df65dfb1ed4007b18d093ceddc4f804a6f7fd5df86e82484fb7b40fe7d73f0", + "regex": "(?i)^https?\\:\\/\\/rhgruhjgxnthtrdfh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "476f21d8ee80842aea4ac82f0afc422d41ad4be551997ac53d67aee6077782c2", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6a5f16746274516fe91ad40cecc1502a96e68dc95a705d45a9ffb9181ccbebd5", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3d70ace16a806ba5da2e6a1eda139c6f3362cff4de36781faa8f1b2a577d53ec", + "regex": "(?i)^https?\\:\\/\\/asdjh2uayhi\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1af7c5cd166b6ff99e5f34ad5ecbeb3965f9b57bbd14a6cb21a78e13ec7c13fc", + "regex": "." + }, + { + "hash": "ccd18908aed921682b1973ac6855a0d7359fcc214d3c18c40870a9a7c9a67673", + "regex": "(?i)^https?\\:\\/\\/att\\-2024\\-109290\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4ccbaf4f00cbd3f13b0184e3812bbb8a426383d65b561e1078417c74d5d6146d", + "regex": "(?i)^https?\\:\\/\\/eqahgbqeadhgb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "08a8b73fad65d5f1efd4d62a7fa8fac453cdc6cfda8b462b29fbc0afb5b29f04", + "regex": "(?i)^https?\\:\\/\\/freecards2023\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0b3ead4b7b0488c66e18ef2bc83571da57e104b1b9c37cdcca4464b5acb190f8", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "57061bbf09c94d0b37827165b6c1f346c507033141504d351d6bd34493cee071", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "23b3ea917ae0d83a81c9226d382ccd78aefc0181004291cc3faadffc26d8f733", + "regex": "(?i)^https?\\:\\/\\/cui28uh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d7d0bb281bda2a9c1a6a6cc65e854b34cb6a032ee33fa7e3550e2e7bb3e3fae2", + "regex": "(?i)^https?\\:\\/\\/freecards2023\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "297ce0d899c04fa0cb6d25127cf61dce42f0eeb6d2e83754733b36bf73f4e3a0", + "regex": "(?i)^https?\\:\\/\\/thunderflower\\.com\\%E2\\%88\\%95qwouzyi\\%E2\\%88\\%95nzuyasfg\\%E2\\%88\\%95sskodq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=adhere\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "feeca969b8a6a2e5295be2a26f51f8cb02df2621fbae6c52c41835e3257f1262", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8da8e4ffa04b5c5b9dd5e1542e1194243378496d80e016395afb3c285f01ac7d", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a9c7c8dff6701ad381c11223a818b2e750d91b8b96036d5419521ddf133669d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+194998[\\/\\\\]+messages[\\/\\\\]+10[\\/\\\\]+clicks[\\/\\\\]+56607[\\/\\\\]+7(?:\\?|$)" + }, + { + "hash": "72ea1d2781789d6f647f9acfe259d566b5c135e5d5bab1f87d2a240bd169ad16", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1a2d1e49d81781a40f03cd354e6b94245d5e3a7f89e5673d706fc2f47717b98a", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6d55d5d193e66d0afd2c2d033f9021f26782d6b8f071f0f2c97c34a20a8ba6b0", + "regex": "." + }, + { + "hash": "20a09654cc920f0028043028aca7f036d6cf6052ae51e4d9d86d5f85e401eacb", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c6db657c82afa8f9cd5cd110acebb168d83dee53ed469d0d8025bb3c69ebf879", + "regex": "(?i)^https?\\:\\/\\/charitysupport1277\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "de2a9ada623e53076c7dccc6a3456e8dbafa0e93f64451f1bbaac1a00972ca1a", + "regex": "(?i)^https?\\:\\/\\/canhnamnuditnhau\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e532eeb537e4305b08c35773a11fdbf2dbb8c096109981716daafcdee168a4b5", + "regex": "(?i)^https?\\:\\/\\/cui28uh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ed1fba006020b24b2bb7295463071bfaafa97a8ae5e4a169b7ed818d29ed2d69", + "regex": "(?i)^https?\\:\\/\\/sfwebmail\\-4ttar\\-up\\-incopr0\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d03b80de3221f4df202b2997f86738a5529e9f0f63e43386c38a435c9d04f5b2", + "regex": "(?i)^https?\\:\\/\\/openseacase\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7afaff5c7944430c6fb4d5e6145a7a33195182e3001070ef630b96915eab28b3", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cc77cea918d0839b76711f1f5ada25269f5932ce65d316b8746c0fae86c8553d", + "regex": "." + }, + { + "hash": "2b85a38bef1cb29f9a32879de4e1810eb65636f66fdfb614b6cc6b3c532b4848", + "regex": "(?i)^https?\\:\\/\\/shriomprasad2506\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8391ec6abb7e3f5462742caf4b9875e2b8088c086ec866a41f7172f0e3157055", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b41f92318c65027365cdd0c8860f5d8092513a9979cb20a1cc5a52bf0cd696eb", + "regex": "." + }, + { + "hash": "eb92e34b2b32f9047ba353c41e9e8718f619194ffeb9006251bf4df763dbd100", + "regex": "." + }, + { + "hash": "339e5c3fab3555381a9120a4ec6ecb66592477203820df1b4b523bca5ea479a7", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f043fa65dc06f36d4fba3dc3519fc22f62f90a3733a92abcbe21be08e089c771", + "regex": "(?i)^https?\\:\\/\\/babydadylove\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0d2b6b4f364df657a04440a013c764ead94514f8f6ea73798108e8f334bb6401", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cdf2d2f73497b13aff7faf5a828b35f827245be8531ca2d17e6d8fd99fd6f65c", + "regex": "(?i)^https?\\:\\/\\/robuxcardfsco\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7ce31b53824b0fda80c0cfd26e282620ac3518258a8999001b19b64fde185a41", + "regex": "(?i)^https?\\:\\/\\/freefreefreeksndjrjr\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ee7341e8364c03e3869447bcab92526f50b8a8aabd02be2243a383c3af754394", + "regex": "(?i)^https?\\:\\/\\/rhgruhjgxnthtrdfh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dff401bbace72ac7814c0bbd20011a8a3215e38bc41a27bf8e8fa2044b003dc0", + "regex": "." + }, + { + "hash": "952b26bdd07ec67558bed0b9168672d45ddb8576dfd764e9811f2bb820e9ad30", + "regex": "(?i)^https?\\:\\/\\/freecards2023\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b649009caffecf98a4ef7b5f9b49ea1b2c6cf3527f1ada18d1dfdfdd87d722df", + "regex": "(?i)^https?\\:\\/\\/hbraqhbgqar\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "080f43a7715ad1cc05e2accb65dc3bd63016b11063bf1cb74a45728a43f0f208", + "regex": "(?i)^https?\\:\\/\\/stumguysdmd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d67dd614cc591f5ddddc9107527076e3c4680cc8b018e5b99677925605d22c98", + "regex": "(?i)^https?\\:\\/\\/hotgirphilippin\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bd6076c6ccc8a9b2794f79c91817203905683e063f5a44815a5c1bb09c4f88e0", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cec142c85a8e018607ed91337e001fbc0a92c02bc97b70da5547a4e5e00726ca", + "regex": "(?i)^https?\\:\\/\\/stumblediamond\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e810b0da37d5ef6983d251e2d113585e25f1273fab1ca4690c29253ed0d5f01c", + "regex": "(?i)^https?\\:\\/\\/eqaheaqh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "38214eb2f52f11988b085e441abf1540c095fa4363a0e5c5c05487c25e1dccbf", + "regex": "(?i)^https?\\:\\/\\/asdm28k\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c722165672d8c063c239cdaf4b4157514ea1369a20096016f51522d23b1b07b8", + "regex": "(?i)^https?\\:\\/\\/arqezhjqahj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "84055633aa65be1644426c2dce8bbea07ad585576b7571df3f6d10a75b6fc6a5", + "regex": "(?i)^https?\\:\\/\\/sdxfsdfsdfsdfhjhgjdfsdfsdfhjg\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a054ff1308859546347d0eabf60ab1329d42bd9ff085ba203c117cca3231f425", + "regex": "(?i)^https?\\:\\/\\/euy46ru\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6c1ee571fe2fd2894a2a110a4682c6248d003927c9f235b9e159dcda69a934b5", + "regex": "(?i)^https?\\:\\/\\/hbraqhbgqar\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7278bc1c300630e2daab8a8631bd89dc395a9a4688b05fa082dee8cdc6e803b0", + "regex": "(?i)^https?\\:\\/\\/hotgirphilippin\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5f9987c29a8e0cf5ad455cc2ee7317b6099cee47a0c54edaa2efc765f658a3f6", + "regex": "(?i)^https?\\:\\/\\/asdm28k\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9938789ca9b9e6f57456cf240322ec94d78de7afb5d1af78a5035bed48e91e12", + "regex": "." + }, + { + "hash": "5cd3e8485b3149d51e88b0eb0b72fd13db6ae8e497596ff58056ffb3d1ccc735", + "regex": "(?i)^https?\\:\\/\\/canhnamnuditnhau\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "64a07b5ed42bc4156872f0603b6abf2b0cd5ad95c5c663985da19f9b9048bb83", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cc64d959d2ec147c8d2dc863d4f7afaa22087905e329b84feb50f1c2ffdd7c51", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9e06aa725a7a11f8f867ea0980024acf8222227c9db3143f386138e9e0762f0e", + "regex": "." + }, + { + "hash": "636a5eb6f893f54aa01c4efbbbc919a3120c23488a24e624b3f3c9724dfc22c9", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9890717ebe1c51b717aa52c2fc5f18f9b6df3cf06384cb982eae9502be6a1414", + "regex": "(?i)^https?\\:\\/\\/asdjh2uayhi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3e98339e2ccff3bf1788a9f350ee54aa7bffd29cfd16600db90aa295735b9c13", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f1db8d266d715ae9b64f20b5db6d8da1b8bf243309acfe67f4704759033a974b", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7db28ece920c59039e35a5cc901f1667a3c65a39405e70b726d5a98104ae49a5", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c9b4f4dbfd570b3fa31810a33d4e2c8c7c372d3ada835a93c9d353217d071834", + "regex": "(?i)^https?\\:\\/\\/freefreefreeksndjrjr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2a19927d7760d10439471127fdf9c1ab5985bff711038e4c368e744ccf34aab3", + "regex": "(?i)^https?\\:\\/\\/hotgirphilippin\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a2e5e93f413ab4c488f5f337c455a24ff75a6167da2bd59e4ac3d655e2575721", + "regex": "(?i)^https?\\:\\/\\/zxc22asd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e60e07f1c77983bdde3df9b2b4a0a5b0a7f0049a043bc233d9d4ac44b1b000c3", + "regex": "(?i)^https?\\:\\/\\/arqezhjqahj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "83399c3540d93a86bf82b75aa6b1f14e2c3f5e5141e7ec5ff157ac76a1bdcc5d", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "80e0366398fe7d789de19f560195a851a9acf6fced94000e9d4abad5556b6cf5", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6d8680fddd93bcb9cb2e5afeccc45c409550dd38769d404e71007db01775cc7f", + "regex": "." + }, + { + "hash": "bf8433fa6245e029ca3e5b5593d4c9b74651fb9877b43ab4248b2222853b6252", + "regex": "(?i)^https?\\:\\/\\/babydadylove\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6cad39ac260fb35a112cca01f702a81063763c160535356e41b42a03f29fd697", + "regex": "(?i)^https?\\:\\/\\/hbraqhbgqar\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "72595b27112a02ec82251fc1dbf28704b3344e90f91d5f1acf01fb483ee0f235", + "regex": "(?i)^https?\\:\\/\\/zncjm7688\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3bef98bf9e8786f1119b34bdae0ef8c324a10ce6efab3d3106e85fba9b3afaed", + "regex": "." + }, + { + "hash": "b9b34e856628b5c8c71dd5b3f97b2d9c9de62e487e5af2247ecc5456497ebae1", + "regex": "(?i)^https?\\:\\/\\/zncjm7688\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8c85b7aa1e20026aca030b144a5956985cbf94853290b9d17b09e4e9936c72c8", + "regex": "(?i)^https?\\:\\/\\/loveyouboysecc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f8e4b46dd847ca171a5571acb39f850cda4a5c61ad77a593f9bee50cc304610f", + "regex": "(?i)^https?\\:\\/\\/babydadylove\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2789f784e8661f457d0d8f019299f525f9d4be4957084d3c26d4a1e8087f05f3", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a3856ba854bbf9b624d27531f08d13a78a3b3142cf6ee1ee563547b1ec8b0bcc", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnnz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "42ae5d5cb684d05403e3daeeb88bf3d2976fc07fbf4121351c45db56faf4adaf", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4dfb1069100bf5a791ce157ccf85bc20901a018c6b21ba6889462165bfb05c7d", + "regex": "." + }, + { + "hash": "76ad8dd9080f8be162cba39d42ea91b97ad12aae8513a0044c6cac1654336b01", + "regex": "(?i)^https?\\:\\/\\/loveyouboysecc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bd30a7ca0b840608b99160f24556dc550892abfa8f06806a93a47f6ecc691c0d", + "regex": "(?i)^https?\\:\\/\\/cui28uh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a4841790fda21fb7b5a1dcaab76a77a74639ca39890b142ed782d71ac5f691b9", + "regex": "(?i)^https?\\:\\/\\/robuxcidiks\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "09bb6d5b495da2cc99f60b8cf45ccdc1c8b6b3ea4d1c426e72f34469457d05f9", + "regex": "(?i)^https?\\:\\/\\/charitysupport1277\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5d25300d0c0704ba37888d7ed15ad7a22fb778e2db2cd0e41c7b17ed0a99d63a", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1f8da66cfeb48e470f7b9527f2b5ff3c7e466cc8f031e79a5132792edeaa3890", + "regex": "(?i)^https?\\:\\/\\/codmobilereward\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3bd110c7712491c2a8a341e0625cd30b79ec291f56ad9a0bed4a819dd0ce2463", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "213349a79614280ac3e156d7a473821d0d3c925f488ed52a2d53f394e1ab138e", + "regex": "(?i)^https?\\:\\/\\/rezshjnzsjhn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fac1a8e68d7edefe1d52f9c11f4734747c89201c1a39ecb27687e5209451f528", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a48724cbf1ec5a52c3efa804edf89b103bc633c56ce62e4b05e23a0ff6bf8591", + "regex": "(?i)^https?\\:\\/\\/czxc3325\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c9576029ef7ab780c4e0c75037254449d9fecd7e96cab3dbd0b529e7330754e0", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "02fb113e4f13b31fe9ac2f364d3a7653e3f373361ba23d05a3fb993f7a61d004", + "regex": "(?i)^https?\\:\\/\\/buiysufyuyweouyuoisdoiwe\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3023ae3af438fd82ddacd1433be025c86480de7395ba0cd54ec3881ea3dfc6d4", + "regex": "(?i)^https?\\:\\/\\/zxc22asd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9ccd02893bc7db6f09ce8932b08c170a34f689e37cbb61a60b3ea3d9100b06e6", + "regex": "(?i)^https?\\:\\/\\/bomdiakewrewfsvcxzcnvzafajwegrwee\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a1e35fa7699b91476c5d6b0e681d0d32d4e65b9609c04d5620ed63c6fef6f136", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "71d8e62cfc646fbbe68cf86ad04164e5ada0f83d735037a16a6c2dfc70c26d04", + "regex": "(?i)^https?\\:\\/\\/eqagheqag\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "19a110360a3378a583738676d7a91f7b2011cfd5064a61125e260195bf2346a8", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8fb2b9cfe27f39f21be385ad164b2eb2b7e866df4c289c6272d1b40faf857c9b", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b3557f63ce8a6e93b2b7e667362e8c60e6765f72e49d1f729fe8904ff40e6e20", + "regex": "(?i)^https?\\:\\/\\/robuxcardfsco\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e187b2df0e7847806d22e75b8a3ba92edf423cb4955ba426256d20f53f1cdca3", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "892758b9b8c113949276ca11c0fa7969131c547e1de863103af7c531b91a6eb7", + "regex": "(?i)^https?\\:\\/\\/abroad\\.com\\%E2\\%88\\%95luxsde\\%E2\\%88\\%95dqzvhedr\\%E2\\%88\\%95ljccelgv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=guyana\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cd60c162b3ba012c590dda6b3c8acfae7f5f853856d785d0bbf60e45f1b29923", + "regex": "(?i)^https?\\:\\/\\/freecards2023\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4fafa3c4cc0f4be5eb99fff79a211179eb2b4fd50d08107d2ee4a1807b876219", + "regex": "(?i)^https?\\:\\/\\/stupefy\\.com\\%E2\\%88\\%95qdghg\\%E2\\%88\\%95eqcbio\\%E2\\%88\\%95qwcrdkiw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=canon\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a9293fd63ae5d31cf9b8060db20489198a055de6ea545f946565665a17667fcf", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a58b1eaf738e971247045d61e029c755ec4e0448a49a9256dc01f3afa2783617", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7a3c7295473c317bb57bbd8d4d5b70b106fddcd1ebd6b9e978d69dbdcd992902", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d4a31ea9a3edaff767fc2e49a513c45d89f64a69dd043094bedbb40af198d78b", + "regex": "(?i)^https?\\:\\/\\/eqaheaqh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7838ac4a0c6332cb1cbe9fa2c54aefb63a9ab492503e359e7ca13684715566e0", + "regex": "(?i)^https?\\:\\/\\/czxc3325\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "604906c2367bb85b7c6ca00b49bcdb43ea7bb010dc8af797dfdb7af3648a593b", + "regex": "(?i)^https?\\:\\/\\/mail\\.robinhood\\-secured\\.50\\-6\\-192\\-59\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d7406731add3d03519567914b98e6f01fe1664b9818686d30990ac2d042ea2f0", + "regex": "(?i)^https?\\:\\/\\/mcnauusu88\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e73add85e8b9f9696e2f10fd86da09c158c593c9b518f44267be156a4d1a0db8", + "regex": "(?i)^https?\\:\\/\\/mishowergirl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6baff181be5418805a2c99a8416ab679bc8e94d974b16c50e79de89f5f1db138", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6109dbd030aa8e0570bc294210f89a2f1ffdedc5015561052934cc6a392b606c", + "regex": "(?i)^https?\\:\\/\\/stumblediamond\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5fb5413edd8f0d33954799b8397a38823bba0aa1d05370cf2ec0ce2dd7f9cd61", + "regex": "(?i)^https?\\:\\/\\/eqaheaqh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "341c4d77d72b5bf582a6818e1734f4ea7d97bd07f31e92373abe660a48518374", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "805454063fe6b5dfc7391cfe51cad5a71d0b5824f2578c56c04665f6cf2f2bc7", + "regex": "(?i)^https?\\:\\/\\/stumguysdmd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "12c65671322d2c0d1deaedb2f7946df79ce66b868da8b31bee2286223e29e478", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0c7dc977c636e1cebc32e719a1a410ce9236620872089036089774a90bdbd1ca", + "regex": "." + }, + { + "hash": "d366b39c2bf9f1f6c1ca173c7da3ced3b907c606343de46f0208d0cc0bd905c8", + "regex": "(?i)^https?\\:\\/\\/eqaheaqh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "96660ef16117f0e19fa4cac8bf2fac2b9730fd9c51d84e7cd19e0ddc441b84bb", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "16e571cdcdff4870116dcdd93df02c20e066c58b633552d734b1bdc611359015", + "regex": "(?i)^https?\\:\\/\\/xccccccc798u\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7c3570aec84383b755fc41f8660c2ed86fc76e8d2f5911353360219f5f73e8f9", + "regex": "(?i)^https?\\:\\/\\/asdjh2uayhi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7289c7fcf90b9a6513a6d33afb41ae1a210e2d530c098fbd80e6f3e9fc71f7ce", + "regex": "(?i)^https?\\:\\/\\/eqahgbqeadhgb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "76b24d42679a1b47849b12a31c832fb982aae5b6ab31b0b54a5c0e06d66edcd9", + "regex": "." + }, + { + "hash": "0b41c777b58e02363c835b644b36653a1dcecde8f022f1311f25b70c983c7513", + "regex": "(?i)^https?\\:\\/\\/cma2uuhsdj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1d70dafb0339c912bea8c302fa40563ecc91769b85cc4dc0da30a5fda112e8c4", + "regex": "(?i)^https?\\:\\/\\/robuxcardfsco\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d53c4c465ba6dd68b76c3a0bf3c76e87a34e6d17c1f18848208d7f84dfecdf4f", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "14c2df3c3c9e0cdc0234e2dc29eeb21569434914c448985d5fcf49dd801aa40a", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "60a9bd808d21e3d8d7676c72b0f97bd92660d93266086418149dcadfad7d5aef", + "regex": "(?i)^https?\\:\\/\\/areaseks69\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "17508a17109d2e5a9b51ede1f8dbe368f4b91b7be7335a1fcc11b5afa3540ac1", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c6560a1ee408af5ab94701eb8578082dfb0e31fab228760d018b7c83595b612f", + "regex": "(?i)^https?\\:\\/\\/ceaqdgvdqa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "339284561fa72a4769c19c3ed3df5f3ed0f1810ead81a761868046ea6d4b878f", + "regex": "(?i)^https?\\:\\/\\/robinhood\\-secured\\.50\\-6\\-192\\-59\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d63909418bb411a6c204b5d53e55caf47d2e801fd5f3f697f0c987c78fd3e5c1", + "regex": "." + }, + { + "hash": "1a5857b2510302dc2bf6fba02c800ac6c78ef022accd8774c2178208150bd742", + "regex": "(?i)^https?\\:\\/\\/mcnauusu88\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d7b77e11c24c9a38b93ef9944b8061fe5d58ec079792f66a5016a4a5c2eabec7", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "87d5fd4996f8ed65f3fe1dc897e2d44ea5482c9ca2bc4b06595d2564d5f17000", + "regex": "(?i)^https?\\:\\/\\/robuxcidiks\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ed6b6bb27dd73de0e1500ee62590e84a4b0166742d4ec67a4a0bb161038a8a54", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnnz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "40ebe02dc9160129a383710e9b327124283808a57bae6a2e3377369df4fd2b30", + "regex": "(?i)^https?\\:\\/\\/buiysufyuyweouyuoisdoiwe\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c17a46af63a9ce4e03ac6c9654e8ee94c8cf26fec6ea0f7dd67ed939cc20818", + "regex": "(?i)^https?\\:\\/\\/mobilegiryeni\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b0e549e935b45208ca8d23215eeeb88db0ed64b6655ca5ad34ea617c882d8878", + "regex": "(?i)^https?\\:\\/\\/robuxcadsoz\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f70d9df81e4638044a0dfc8c02c8d4f2833586532cab4a7b98eb556706942e28", + "regex": "(?i)^https?\\:\\/\\/geqahgqa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "27685ea3309133529fb11a5c17fc99c2fa9640641edf7f632e8035403b6d1b54", + "regex": "(?i)^https?\\:\\/\\/freefreefreeksndjrjr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "df9498b5863f54a859c28d285489e8d9910bf1961b298716818ae4b1f23f239b", + "regex": "(?i)^https?\\:\\/\\/claim\\-migration\\-rewards\\-now\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "60491e2711c7fcd0bb43d665ae9dfd13b5e0e8bb5e62f53dc7ffd7a9bb9bf2dd", + "regex": "(?i)^https?\\:\\/\\/mishowergirl\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f1330283d8e80eb7904aa9b53e9861ee4b318f8ec1366077ff5bf38c856a0d49", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ad1c0f8c612ed86c66f276d1d60e8da9cd566f5e0d07f0ad539c7581f6ffb0e4", + "regex": "(?i)^https?\\:\\/\\/geqahgqa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "87b4ef1af7a5a0e95e0890d65e1638f0c7fcf423f19d620bc1c680e8eb0a9c96", + "regex": "(?i)^https?\\:\\/\\/caqscaqev\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fbe4bdfe8c7871e4458e4ef1e96aaf2f10e4488ac3c479965f795ed59df1a71c", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "61090c7731886ce0f3b7199cd4736d8e9887b6a1952b9921dacf35ab2dbd2f40", + "regex": "(?i)^https?\\:\\/\\/mobilegiryeni\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "95f3dbe956945a2a2a5d24fcd7de7714a9450480a30fe7479e7398b5e77e93be", + "regex": "(?i)^https?\\:\\/\\/bomdiakewrewfsvcxzcnvzafajwegrwee\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "463b3ccf50a0ebad797b82c3aae95b860d4c7129c10345c3f6193c9417dab134", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "658d7b2a6affd68b062c0210fbb9c425108951ddce63b4626efabeb0305903e0", + "regex": "(?i)^https?\\:\\/\\/babydadylove\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "792afe68b564f98914f078205303f25716a7f071fcf1d3cfe360ca4b349e1899", + "regex": "(?i)^https?\\:\\/\\/robuxcardfsco\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "501d2baaeb9a3b1d511722601960dc8fbaa8d80644dc513872d8f6cac3a27c5e", + "regex": "(?i)^https?\\:\\/\\/stumblediamond\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3029593f10acb2ce5addfe258dc1c16e23935f63cda7de6d87f483c717ace167", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "95fc181285a9040978f5b58618f01b3d29f0f8f18d0be92816531ec673461218", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b35e7e1f66abf511750f0c08a5430f5f55f071ceaa8010b2c24daf06bdc349ae", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c9ca0435913fa819db9cdeb0f3ee33192b301f763a7e5a49473ac85c68f55c60", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "aeded3bec3da745d60764ccc02a2d9b5d5ac17456a27f1d37277705eed03d0d7", + "regex": "." + }, + { + "hash": "c1070fa2db04c1bee615ba9cacb79510adb2a3c653e4d2a1b23a8bab0379b1c8", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3f7f769870703bbe1985e720d193b9ec65373ca9c31040d999f4d7acdbe77f3e", + "regex": "(?i)^https?\\:\\/\\/mishowergirl\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0bc1a6e9c61e29f6a48feff9a3d9bd0425d8275f79994eac60701b3af7bcd7eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+logout\\.aspx(?:\\?|$)" + }, + { + "hash": "769029e6abefb9a2f6aa673b4eadbe7d3fb62dad038eff442f30a49b24298757", + "regex": "(?i)^https?\\:\\/\\/asdjh2uayhi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "718136132558f20e202ef9bcfde5d0df62ec04c6f43ef00709000d0d3e9607b6", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7136e8931d38957519cc074a3c2bdbd4678241110f8df09b54fa1703e382a526", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c42f049767ea144c369e6386dd67c1efb72e55f013ab11a8d1e66baa26b51d2d", + "regex": "(?i)^https?\\:\\/\\/asdjh2uayhi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c5a7597359d7e87aafa1468f6d5df5582f870cfe5df29d8a93064184b3295a1f", + "regex": "(?i)^https?\\:\\/\\/mobilsporhaberyenigirrs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4176f5dcc41f2770cc4272737d62e93c298b2f40f983a733000bbfd4ec0b3551", + "regex": "(?i)^https?\\:\\/\\/mobilegiryeni\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b8a3d8cbfd9f71ee333f070f4a51f10242cb57805b35db2189928f6be7bf4568", + "regex": "(?i)^https?\\:\\/\\/qaeqahbqdagh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9a6126516fe10c8df195e1f0af340c0124416ad9b62769064c2fd1db06b47f30", + "regex": "." + }, + { + "hash": "41417db0fde43fc346a94809883966209713f3ee898b4bf801f0c31b9333a830", + "regex": "(?i)^https?\\:\\/\\/sdxfsdfsdfsdfhjhgjdfsdfsdfhjg\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6145c0a606c84ef99e65bd01eaf4cb24530b35cb8fcd8aa56cf3b9029117e130", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0e00fc0fedcdc88af5af498843a4db78f728fd00d243710171e1424e17f8a4b5", + "regex": "(?i)^https?\\:\\/\\/mcu88as\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "63136197f0e71ef56b8ac69f0b63c5dcb1b10b2b917c9bd306a9fa27abc7be1e", + "regex": "(?i)^https?\\:\\/\\/ewwetewetg3wet\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "686b8a4850f648934a29cc99dc96f3d61976b3f1d05dc012af08ca0bc964b146", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e8a8959da993a59ea97f6e63430beb474f67e3df909fae00ad4ddbb02da52a38", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4ca4b9dabf06c1935fe7c98dd8acb493fc8643bc3804969b7ae473ca1af9617b", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0fee637a22f590abc05f74c901439508f01901eda4a219b4cabb554d3b5db06c", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "49ef3a8946412bd16ac89d1ca30a29ac0cf71eedcaf4d6e9ae62899a7c8c7f63", + "regex": "(?i)^https?\\:\\/\\/gokul2827\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "78a76a2d91eafc09024da98f1409c8200ef9e6e5895292d6c98ab0faf4e16262", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a3fcd1cc096bc4304d8ba9d042f99899570804f4b794affe59902dc5e2bdb674", + "regex": "(?i)^https?\\:\\/\\/rezshjnzsjhn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "914f432617e003b074f9d2078804fbe93a6eb2c6df19e2e6977c7ed2c3c2bcb8", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "914f4ba42257aa03dcd2e5fdbc3958de4b68fee5acfe4914ff35cc1dcc6ef6df", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9237a663f49229aa24c86b5f5b106953fc5aad00252c4fbd63dc36955a562aa5", + "regex": "(?i)^https?\\:\\/\\/hegqaghqadgh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8aeae594fdcf404ba955f8814e7568f962e090070a7b30d9f0c95a30743b9895", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "67cd96eab8aa169b8f1ba889d6689d1dfb1299108b62450323271d7ee547572a", + "regex": "(?i)^https?\\:\\/\\/asdm28k\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9e6c2fe47e61fc5553b7990f9ca2e8ed757c4254cbe4cfaaa9977a78513b7644", + "regex": "(?i)^https?\\:\\/\\/etrhedhjnt\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4209b0399f71715b7abd9f28e9ec825ec8208846ad29daa9054a5f899b2e4462", + "regex": "(?i)^https?\\:\\/\\/cxzc33aasd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d8fe0cd3163f14a67d08e54ffcb3dfd3d9fdaeadd5f618e4bcae50868a5fe447", + "regex": "(?i)^https?\\:\\/\\/etrhedhjnt\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e5afca027a7bd61ddea50c605d9c8c87ab03232d4cb13ccc6b86d8f5db4543c5", + "regex": "(?i)^https?\\:\\/\\/msmad8\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "64bd258972d8bd09a9149beea0ee94df57644dbd4dbfca56130c8470a8ae50aa", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7967fd4cc374d1c005f53fc7dfc262e870abe73619a9404c0eb7d84d95571d1b", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5228e242bd4139efe0824e2165321619c20db9ba1321139e66349bc3a7fd3e98", + "regex": "(?i)^https?\\:\\/\\/hotgirphilippin\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "161740461ae09f0810d53b54ac87808fd0dd6ccd2456a6a817261e51a3626435", + "regex": "(?i)^https?\\:\\/\\/zncjm7688\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c79a316c903a61ecd46c1df3bedbb8f41a882c7cd3e8e8534fcb98c90a14cdc3", + "regex": "(?i)^https?\\:\\/\\/geqahgqa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "aa09cff7e8e49eda180539eccaaebac7b904e64bffe51bb8645a86ad8df0420f", + "regex": "(?i)^https?\\:\\/\\/hrzshqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d4e8c3f290a7b0ff8987caeb0c5ae6c1762825cefc0ccfc978b44422d937f896", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5ea3192bdb475901604e8fcfbee47a0ab6e55d9b1ec12e76c2658ef60ea0338d", + "regex": "(?i)^https?\\:\\/\\/geqahgqa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6746e53ad71efd984e9993a89c6343c81199aeb3b6ccb752228da275939534a3", + "regex": "." + }, + { + "hash": "e38c74659495fb4e5cb11a02030b2e03194a89c5d2364062ae6260b07f4df85d", + "regex": "(?i)^https?\\:\\/\\/cfjdfdidfcdxferrgmjiu2522384\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "45e93e15993fdf1968d446f0f1f7a546384d0b848da9c7c58993c48c884d71dd", + "regex": "." + }, + { + "hash": "9a35b0ba8032ca84d670547f2add6cfe48d81398869da17292aef8e7adca0538", + "regex": "(?i)^https?\\:\\/\\/zzaazzaaz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "35f8445f90813da53d5cd2d555784ac9f0223c6b92fb8664a4124a57c5b4fa7c", + "regex": "(?i)^https?\\:\\/\\/buiysufyuyweouyuoisdoiwe\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea866f5bf5b344342e6da9c27e205b29add8eaa7297c70e6ced9674e72c2c29b", + "regex": "(?i)^https?\\:\\/\\/geqahgqa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "844311d409df48c7505ad02a92757d9610c6c178880cc6331e862c5bb88c1812", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a1e32ec559304e6379caca40049269751b6eb44e92dcd17ecaeadf88d28e8c89", + "regex": "(?i)^https?\\:\\/\\/charitysupport1277\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "82f44c191b6ba1c77f246ec1a1588f8cbad068b1a6bf3682d893d615ba5274b0", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "031eb26feca148437a16cced7b3489b167a137e5a1e7677266be66ccc8658468", + "regex": "." + }, + { + "hash": "5973b984058935e6c2a0ed28fba68c1bf9e0fb816f07f7ad5e989d5a763c53af", + "regex": "(?i)^https?\\:\\/\\/euy46ru\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "779b2449cf434663dee44824bfc6d14142e4d4ce2868dd136a4a0ea408ab0e8e", + "regex": "(?i)^https?\\:\\/\\/stumblediamond\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "70791541972e36d03a8d54ba35fc99251d4a76c735f3b5e1bbad82120cdb7884", + "regex": "(?i)^https?\\:\\/\\/cui28uh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b9a1f761d387b15c7d69713b26aa26e005bbfce81a89ddb28c01912048d1ebf", + "regex": "(?i)^https?\\:\\/\\/rezshjnzsjhn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6ea2403192f0fa45113796ce1c2b2560d21013bfcf7d994437601c5933e1d750", + "regex": "." + }, + { + "hash": "1b90d7bc0740b960ffa95a98c4ed52eceaf43faad048ebdea4d9de952fd4b52c", + "regex": "(?i)^https?\\:\\/\\/mishowergirl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7d35956c03ee32e880ed93cdbe367e0086c0c69329a4e94c4a6135c4c722d893", + "regex": "(?i)^https?\\:\\/\\/freecardsin23\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eff201a5fe5bd5882654c875497bf224844019ab5f28207f854cfb17d3c192fa", + "regex": "(?i)^https?\\:\\/\\/cui28uh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3389f41d88cca1e6c33b3e2e6bd2a0bc96e14114f10cdf3af19d443a690e377e", + "regex": "(?i)^https?\\:\\/\\/dfdxdf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a0f9b23ab604cf0942bf5676207ac163a45325106e606965e6e243323526f84b", + "regex": "(?i)^https?\\:\\/\\/czxc3325\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "66fb78b03b926e4116ad23792be7ea57c1bda1a01f7cb1bae26bc8ecf17c753b", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8601603133fabe0d896f96a1907fdf778a769d05cf98b60ea11e992318aea2b8", + "regex": "(?i)^https?\\:\\/\\/hrzshqa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d33252cc9dfc89c3d3d4b7600406143fc5e16106864218f35bdac74420e29e6a", + "regex": "(?i)^https?\\:\\/\\/tithe\\.com\\%E2\\%88\\%95skjus\\%E2\\%88\\%95zbprgb\\%E2\\%88\\%95mixyk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=chinaman\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b038edb4fcf902ec3bf8761a5f73142c12986c5c13c75dafb08eab4072546f6", + "regex": "(?i)^https?\\:\\/\\/asdm28k\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cfc9f88e7af4676de7f579a2475f3ec651d740e97eac845a8690d7811dcfcf06", + "regex": "(?i)^https?\\:\\/\\/eqaheaqh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8f8c4a86ceabf9e28a53e8af916122edb91c6b711702dc6ddb1e238cbb5ca882", + "regex": "." + }, + { + "hash": "d2438dae6e84c8bd33b24379c55c7928b129099e66a0786544c3b645fef5a569", + "regex": "." + }, + { + "hash": "7c53f706f445d17b56761a562d4cdc2917fe2ccf93c2f3631d85cb70902d6a9c", + "regex": "(?i)^https?\\:\\/\\/familyvideo21\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "22335bd3649a178b7fc05d90ac1374564d2e63ea3d5a6dfde45167fdc492a8e8", + "regex": "(?i)^https?\\:\\/\\/eqagaqehgaq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "098f3cc9a86305d8e2bdd3d8eba9d9d5fed43ca9158e6e2dbe8ffc75dfbd9588", + "regex": "." + }, + { + "hash": "e399c4a1d05f419c9659d22b2d5800ccc25d46725a4e3a3d85a81fcb5e12d955", + "regex": "(?i)^https?\\:\\/\\/dcvfxvxcvcxv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "17ca765bd40c8e8a922f29519b79dc95fbaeeb6910c00cef9768c2069cb56401", + "regex": "(?i)^https?\\:\\/\\/arqezhjqahj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cd909bba9d425c2e7cb3eed8790b72cbc0679b0a03298c1704abd6e2beef185d", + "regex": "(?i)^https?\\:\\/\\/dzaqfgqae\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3cc6c36e8a3e8aafaf7c144b4f12bc23be1d339276c5383eef77aeb3735ef917", + "regex": "(?i)^https?\\:\\/\\/mpharaoh123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "06b527aaf85557a6cfe9682aefbe8f2ce63d309c77ac0dd2220d531ed0298b30", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2f8db79ef1a6b1d6fcf6d4a68339ab96d4fe60783a046b24b175b5805213837b", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a4c728f3cb5ddd2fe8716fadb7a548a1a5f44b2f85fcbdcb7c3ac15cbd5337a4", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "03e2fd080d45b13a11572e1bcdeac894e0beed8b032a5641af1d7a21255e074b", + "regex": "(?i)^https?\\:\\/\\/datesrenew438\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fe024c605f024460fa61902b6c5f89b353a66336efc4ff4ca29897358e620fa2", + "regex": "." + }, + { + "hash": "e1ab7d5ae18cf74fe44b82f47c5fe699b647623de7b1cd3d6c43cba7ac8c7a09", + "regex": "." + }, + { + "hash": "7ccfa8fc88aa72f8c727943dfdb2cadc53e3f8578eb7c799564d9637f94e49c2", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d90835cea91d49f8fb563119ca8d7cffc43130a19b2c56ae1ddcab575df40a0a", + "regex": "(?i)^https?\\:\\/\\/weren(?:\\'|\\%27)t\\.com\\%E2\\%88\\%95bkqckf\\%E2\\%88\\%95rjbzjb\\%E2\\%88\\%95lptguam\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=kettering\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e68512c7adfeec6e85a5a2f3ecb93f254667f0f7ebdf4024f4e7bb3227378199", + "regex": "." + }, + { + "hash": "3fe74ddbe06bb7fc743b0b2c43bbee27b6d19423778cdf90b4a685dbeb53879e", + "regex": "." + }, + { + "hash": "f6159516ed3a9c76a46661f8d71d7d30e5ec8cf9e93e30e1bafcfb9cfed29f45", + "regex": "." + }, + { + "hash": "85c95b2cec3e81b57cda06513f1302dd9b243d7d01910dc265dda83595e4de5d", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "13b70332f31023d364b3b0e52479c4136769620b69a6c90e92ec05f74b814bad", + "regex": "." + }, + { + "hash": "f0e0cdae60bcbcda2ad9d61fb100dde24513f05477666d26ff267ed2c0230cb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+QFqRhOF(?:\\?|$)" + }, + { + "hash": "ccdcdb2b4c94cb53c019a8a2d4a3209a49d5308ba9c4734599b0adcf03a48c6b", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "565056790649daadb6d50104fffbbc2eac5e26378fc1093083c505e89a80e8a5", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=s\\*\\*\\*\\*\\*\\@c\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "0739f2ee3e8dd9f954c5a79d4c2769260fd207e25a5d38f3e24b1522bc4bcf6e", + "regex": "(?i)^https?\\:\\/\\/hokisaumurhirup\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "de8e08b3f0db0935ebbc515884312a37a36847269c6dc76d7ecedb249b5f8057", + "regex": "(?i)^https?\\:\\/\\/antaiservice11\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "581e5c1a78cbbbde6d36f945d6e674f70f1a181faef5babb86cb34f6dc96f59a", + "regex": "." + }, + { + "hash": "071a8ba62ea15cbc9d7d7257c31b9ac41b9cbf32c7da8b6a05be22289e102af8", + "regex": "(?i)^https?\\:\\/\\/antaiservice11\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e8d036bdb99bd5b3fc7f64b83875e39e1fdf8c3f51b4ef3479661b646aa0eb4b", + "regex": "." + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=h\\*\\*\\*\\*\\*\\@c\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "df91aa1b26c48284ade679e0c51a4ac0b3cdefed9284e40f21620c0be1bf909b", + "regex": "(?i)^https?\\:\\/\\/metamaskextensuon\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9bbddf07c6fae678c9ca60e2eebb0325c293fce8f71986741d8f1af2f972650d", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=u\\*\\*\\@f\\*\\*\\.h\\*\\*\\.gov\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "dfe5fd05fb13b50287baad00560ede382ec4564e812266b386d6d94ab8c735bd", + "regex": "." + }, + { + "hash": "2e3e0fbd5224e2cb1684e823114c7b2ea80e523b378480b01dac1f3193904518", + "regex": "(?i)^https?\\:\\/\\/antaiservice11\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "916bfa148f4c23e09d08f7985c8b5b135b2ed942eada298df95036264e29ccfa", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c8c301f9d673e8671ddc6744c525259670a7a288a2bc6238f30dfcb88a6504b2", + "regex": "." + }, + { + "hash": "4ef18208398a95f087d91772d34a81748e41e52043a8bdd1474aab6dd0a201f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?353c6\\&id\\=(?:\\[|\\%5b)REDACTED_DOMAIN(?:\\]|\\%5d)$" + }, + { + "hash": "7a6791a4c7b86e3f22b5e00925337fe3547f48bc709c761cdb147df9abc7233f", + "regex": "." + }, + { + "hash": "dde05259fa057fe395170900cb36d2073af06fddcbefb00df0b2dcd1f4142380", + "regex": "." + }, + { + "hash": "3f166b9106e4689a85783e8918ef98b744bb06d82c8d6814e279479a10781319", + "regex": "(?i)^https?\\:\\/\\/raj\\-kishan\\-2002\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3fe79af78001ba6308fe3af70cefc0b1b5946542e57f37e1757fc8c2ae5db0fe", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "05b86e9f70492f5651e396278cea311c52fdf62f556d455639e798620e26dcf2", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d7e96e08bf94f0804a2a17ba5179329b3abece28435a32962df2c17eb17b6b82", + "regex": "(?i)^https?\\:\\/\\/netflixgpt\\-a0dce\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "f22d3c891a3ab70dfe61c1b1f62b87d9a7b62478891ac9b761b34888d3f0dc66", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+h6" + }, + { + "hash": "77d2b18f21a65c22f8dd12976211c4900c69a2a853374a1b2f46fc96c630e50d", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0c965c5e3f55c69906b5c151c0b78bc9d20417c36138baffe68fd079fb7983c1", + "regex": "." + }, + { + "hash": "06677939caed8b8e1a1fe3c94c7513f8ec8515bdf0e95bd05f0a138ae2a5073e", + "regex": "(?i)^https?\\:\\/\\/metamaskextensuon\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2cb9744efba95dbca957f19944b594f9e9d852409090991f8b0c97f4cabb5dfd", + "regex": "." + }, + { + "hash": "3bb8be7d46773acf8e54a94cb192a47d7c70347e5b438168677d40fbb258eeaa", + "regex": "(?i)^https?\\:\\/\\/hokisaumurhirup\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=v\\*\\*\\*\\*\\*\\*\\*\\@s\\*\\*\\*\\.c\\*\\.th\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "4cbf031c211f17ced04b59f344b39ba8b659977b9144f3c51cdcfdb1532c3360", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "46ced3cbf72c30687e5da96ab05fded159db0a66e5f6f7fd932c9f3d301ede6b", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "49982bab7c16aad7f59a95478e9639612c1cbd32ba59ae07a913c96d5ec71d4c", + "regex": "." + }, + { + "hash": "2d3ccf0244e4461b770fdc5e6b3cb8e5c5df3d59dc136041ea6be0675452cdc0", + "regex": "." + }, + { + "hash": "4a98043ad725fc2708bf73523c49edddd3338cb4814506829d3843f1023ce8ce", + "regex": "(?i)^https?\\:\\/\\/antaiservice11\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "dc794bd6d2fb23861c4cd7bf75680b7f0e3ec4e576e19b3ebd03125f63ed1cad", + "regex": "(?i)^https?\\:\\/\\/works\\-0824\\.ystore028\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "07a97d75ce8ef9fd984f1a18cfeff6e6bbfcf091e71718743f9f14bf056a82d0", + "regex": "(?i)^https?\\:\\/\\/necromancer\\.com\\%E2\\%88\\%95xpsqwf\\%E2\\%88\\%95ugczc\\%E2\\%88\\%95rgrqgn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cartilage\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=j\\*\\*\\*\\@f\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "c8116ef32db5557b641ffc4f7b02c5b2c6a939ae801f9aaecb289919c8dedeeb", + "regex": "." + }, + { + "hash": "b6a95ea2fc0946e8f40e291f7ee8dc6e67346fc17e16d0af211adcf1a46a4874", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ab6510af2c0bcdf23e69fb59c0f18790ad1470130bacf0d742d44fea9fcb245d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+giris\\-481[\\/\\\\]+kidsyogawithnil" + }, + { + "hash": "9850c830bf9f01a16809bdc29636bc3a0add09a1b99f3d3fcbcac861cded25a2", + "regex": "." + }, + { + "hash": "7319bea98c16b38dd8e4dd113e8b7cd9c369618c9a7258a33dd2ec907e2213e8", + "regex": "(?i)^https?\\:\\/\\/chorale\\.com\\%E2\\%88\\%95paoxqsfi\\%E2\\%88\\%95pltywak\\%E2\\%88\\%95ibcfl\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=maxima\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d4c745f8ee8fa842fdd811f129ced859e2be302a79792f9bcd57662aac62c01", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2444d2d3ba0ca5f7e6a29af772abb78d200bf45281f0c2090a8b677f178f7a72", + "regex": "." + }, + { + "hash": "6f5a123a219c35b300d4597464092cc33b72ec780cda2e6fe99c577528a8340a", + "regex": "." + }, + { + "hash": "d387fe14642f5139595d42a37e5d9bfa1a9cd005fded658e7861ca2a8cca60cd", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1b7bb9aa0d63b63bd1931d51809135efd9626608c0d231a87d1a32b436535883", + "regex": "." + }, + { + "hash": "22d392aa296e432fb6b015875e3e51a5fd10c3c47d2ae43d442cc19b384d1aed", + "regex": "(?i)^https?\\:\\/\\/karamazov\\.com\\%E2\\%88\\%95vclffb\\%E2\\%88\\%95exzwgine\\%E2\\%88\\%95rysnkqrm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bilateral\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7914c88a4950872649a62ba1050dcc59dd200e0792f5cbc0a553cd11a294b015", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ee2e1cde837f1f8e4eae5f965049b13090644469c91a8a5687690e0a1c56c232", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "88807d7613a3f083abd8a80267993a1a9954710d0a903463875032528266b625", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6b540ad0ac3587c726f516b2585eaf1bb7409368ceebf1e98dd93046a4fc9c18", + "regex": "(?i)^https?\\:\\/\\/antaiservice11\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6b945ef766ebcd94e15cb6ebd9282c685d9d9332ffac4a1b43ddc03069b086d3", + "regex": "." + }, + { + "hash": "7d1f38f6628367bf3c79788be8aaca58de23193145665b11559195b361f0644a", + "regex": "." + }, + { + "hash": "879da38539650f01b76178b493a1e07a1347674a8444bbb7bd8b6ce78b965957", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.34\\-168\\-206\\-177\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1339a6ce5957d026606805e13139b85f48de2ccfadd62cd25390b8d23ce9d380", + "regex": "(?i)^https?\\:\\/\\/a117c854b5b44553dc059211f65e8e67\\.serveo\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "09beb3fe548b79511f426d2861be0d9c4ff1a66b5431a3f5c60ebc87631af926", + "regex": "." + }, + { + "hash": "411a314e4099a0bc6a0cc8e6533b70a99de87987e10acc1a0fc54d97f239f9a0", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cc01dafebf8ddab9d2e469c641d1588d9e2e3937a1756a53d400c5a8d062ce84", + "regex": "." + }, + { + "hash": "13c836c6bbaf75ef863ae611ca6a2faa1d0130ba84fe98f853bc8b289b23183f", + "regex": "(?i)^https?\\:\\/\\/antaiservice11\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "160e09c9120843e9e0a04f41e2b1042e9d805c8ebf7e989c72940d7b5a9a376a", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2e9ccd4542bdc3593196c3bc841a5ed9a5f22e85bd6549dc202e2631f031074c", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0cfe38d0b0b62876386b831234c330b775e7cf9526038bd7cf3b072266c9fda0", + "regex": "." + }, + { + "hash": "eb125105225f0fb45b99d444257f842a151b62874ea53d274fba7ad1740749b2", + "regex": "(?i)^https?\\:\\/\\/antaiservice11\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c7f267606e6a59f433218f6e831d924ab1864865ca34fd90b932dba477c07a2e", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f8fc106962abee196e33f6b99fe1d4d9a4214ccfdae6eb6626447fa457d07a6f", + "regex": "." + }, + { + "hash": "fbe9496c4504c8f7e6a37f3c1728072da5b1d0e067e50b3c205bde90fa27b304", + "regex": "(?i)^https?\\:\\/\\/pranavvmore12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "63ec411ca2c634ee87162270ee10cf1bf5640d078f05be2f981870e69d4c503d", + "regex": "." + }, + { + "hash": "913bd2efdd70d0f70a4b3a11996bd6ea3cf73c129e58d6905f23666f1a94df90", + "regex": "(?i)^https?\\:\\/\\/burro\\.com\\%E2\\%88\\%95lftxvd\\%E2\\%88\\%95qqhyoiv\\%E2\\%88\\%95vsyaxec\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=easy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05d0ed1369d0f84aa7841f37bb2c58adcbd64d755b0aa28b9d6a87c10efb463c", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "efa2838999b5a6bb27f1cba514f2fd23a47b5ec59042903dfc9c3d587c7e046a", + "regex": "." + }, + { + "hash": "00368fdd8fd97c5c2eb7cee8df3ca281759491273a75a436c0afa7e21ca9791a", + "regex": "." + }, + { + "hash": "f7b44507bc9d1beed8ed63393e1278d2ec99153001bae167c4a1ef4d05b157cb", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=b\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@a\\*\\*\\*\\*\\*\\.es\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "c6054834baf16e42336eec8d9b5c2b994546f9e6cd202766b90623ec5458cdcc", + "regex": "(?i)^https?\\:\\/\\/antaiservice11\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "baa0598bb25506df63475e534a5568da1ac1c21bfd2a86f8b4ec2917fa931c4e", + "regex": "." + }, + { + "hash": "c8a4c514d8d894b3cf73cb2b8d557f3303cfae6cce231a9b4b58084d3be6707b", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0255287ac791e5bcf1cf294d86adeeb1da17cf24a1ec5325ffd461dbe79e9334", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sre53t(?:\\?|$)" + }, + { + "hash": "2dfd2a5635ab17227abb2bfa11cf31c392608c4729ac94400e87ecba262405c0", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ee640c440ba1b8d82801a0db24f3e63c9b51d9f2edfa20e130de68d216c6cfe0", + "regex": "(?i)^https?\\:\\/\\/whittier\\.com\\%E2\\%88\\%95jgeis\\%E2\\%88\\%95lfwvqcp\\%E2\\%88\\%95gvonofc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=chantilly\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3aaf822fbd30e5819fff236e66c72d2e0afbd1c692f619c0aa6a6444ae5211cd", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f9b52831a2f1ae4c9b6f8f29caaca73a171df2269e2ca6c8a4a93a42ca534f45", + "regex": "(?i)^https?\\:\\/\\/metamaskextensuon\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e2e6c919754f8b3dc2862bb0e08ae3f159dcaa478b86a36a0ca2c87a956e9df5", + "regex": "." + }, + { + "hash": "e8e4ee6269426a8e4aaa5bd759d2e888a02c29bf9906d2b8e1483c2fd300c3bf", + "regex": "." + }, + { + "hash": "8d29160ad80989549ddac8c26587f794ed76ed525a16e5a3657e3e3c36e1cd90", + "regex": "." + }, + { + "hash": "5cf26612b7c1aa7a0a8e507fb3ed7dcc0c07d3689ebaa6dab0c24a3b11f53ce8", + "regex": "(?i)^https?\\:\\/\\/incubate\\.com\\%E2\\%88\\%95vtrfvq\\%E2\\%88\\%95efklundk\\%E2\\%88\\%95zocgfv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=graph\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d75abcbaca8bcf25a84bdc81737a4a74478964dbd4764ff9f99e59e2fb75514e", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ce7b675fa118988f1681121ecc458770f2533b07f67920693ea25994b158daa9", + "regex": "." + }, + { + "hash": "f08d485b970af23348502c50505b84bfab01b6eef95b0d59a14078067b61eac5", + "regex": "." + }, + { + "hash": "22ab8beb1fc7b573ec5442a53bdea6f9ccbd79ebb651d8e41180c1005d2e04c1", + "regex": "(?i)^https?\\:\\/\\/metamaskextensuon\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9f6fe194409771eae028604e5b334a84fca94e505999740adcd026a51ddb71fc", + "regex": "." + }, + { + "hash": "cba3d67eeaf5b98f90e58cbbd7c20ded2b864cde9a45fbbdbed3547feb32dd71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+h6(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=g\\*\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "b49debd5d5695493367f84fbbb80c6b96be56dbe8f9e44e74f8e2bdee0e9ae0a", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fe23fc794054f29f2d7b86ca6fe0ee91fa6b24a71275210b1fcf25d7744449e2", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "687da0ef4e9e671c1fbcd3ae0b5b4e658b3ec5721e20fcf8e3663db6e5a0d6a4", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cd73a71cb5b3a5e3aaaabe94bb3ae0608fc921689f57dbedab0e8927753dbc4c", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "54e77279d626dd48913fe49dbf1413b9034b8a1a6c410809c3b3663169e43209", + "regex": "(?i)^https?\\:\\/\\/fringe\\.com\\%E2\\%88\\%95tnofapqa\\%E2\\%88\\%95ikyyswv\\%E2\\%88\\%95cygqpzt\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=frightful\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cb406cba66b2c8bd3b0dc8f4914f3ffd7e54a670e90e2ea1e9fc08834856f1da", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d713125dc9eb56b0433312adb5af24fffddc5bda98d10e01408450845687e823", + "regex": "." + }, + { + "hash": "de25114de9a2c3f8afddcb5cfdd0d5a926e72d59c5de8ad9d094b50f9b6634a7", + "regex": "(?i)^https?\\:\\/\\/metamaskextensuon\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6ab36d37075b5d9a57d6b0850605689315b9b4f869ef01f24b564e70de5a2a21", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d123db389dcbda89bea45135bf391ee08a4b0faaf5aec46045e8c7a577207447", + "regex": "(?i)^https?\\:\\/\\/metamaskextensuon\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4c1244338d03e36513ea2ce62603112e851c560d943f6adb88785bacb75c6690", + "regex": "(?i)^https?\\:\\/\\/sdfgsdsdf\\-37f6d13a53c3d015287464ff9f186\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f1f1337318ff62e4e4332df61dbec5507a67e89a77ba59bd1a91e5ebcca8ed78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f9983\\&id\\=plazadeespana\\.com$" + }, + { + "hash": "1a7ab547fb4acae454ffeaa584e06f2bc11b155e0141574b40bed7cb12f433c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?488bf\\&id\\=sedimento\\.pt$" + }, + { + "hash": "3d25b6ad2d3fc0b8b1915d455c29589fd5e55a96ddccf71f522b0e513e0444a5", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "62dc6389d1431074f77a24aeaac01e30851aa305f5a542c73d4b47adb3b97942", + "regex": "(?i)^https?\\:\\/\\/rakeshpandey12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3c8fe1efe2ec47ac55290575d78eafe5a198a4ead092cc83c545dac0d245e373", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "44eeb23b99577edccfe1866dc01686b57c92a8c6485b843a1a42a4e587627fbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "aa87a007fe3aceb01ae9a781f2e120ceb92d2aae8559d8347044a471708bd2b8", + "regex": "." + }, + { + "hash": "b277a6bf4f1b68c1516a63eeb05aff88981e16324c952caba0ab3dffea05334d", + "regex": "(?i)^https?\\:\\/\\/metamaskextensuon\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "00fd0b1c0d163d3decfe459ad667f785afcf6ec9c97bb450083e2caf4f1d948f", + "regex": "(?i)^https?\\:\\/\\/qaehqaedh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3df97703820b03b232bb71da0f9d34d072af47e300e50a4943905aec45d071a2", + "regex": "(?i)^https?\\:\\/\\/b\\-t\\-106384\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "221e775946eb99473beee638c9e1c10e9c614873644312f073880c2850393101", + "regex": "." + }, + { + "hash": "5669985279b9ed9f04ff15da72e85cfe95aec4f4546530c0c044b104e7e02fe8", + "regex": "." + }, + { + "hash": "18c9253e670dcdd17636e946370d823bfbe16b1e3fe4ecbb671a5fb1bf184391", + "regex": "(?i)^https?\\:\\/\\/cheshire\\.com\\%E2\\%88\\%95gwfom\\%E2\\%88\\%95ikoso\\%E2\\%88\\%95zyyudnid\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vestibule\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c6faba8ac9ad786cc8cd17390490216960a592b782087dae86cc74ee7f639494", + "regex": "(?i)^https?\\:\\/\\/girlthaila34e34\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "72bfee9aa459ff2a92b0fb5c8595717ae9d4f8f306c749dfebc18e9796e47edf", + "regex": "." + }, + { + "hash": "f315a17df9229aab32cafa6a10e8b6c23c4da624e9d05ac5bffdbf12afbd9990", + "regex": "." + }, + { + "hash": "4bb133ed6fdf318290ad5d42be24918a26ffdada7d89faa97f782ebe38edf65e", + "regex": "." + }, + { + "hash": "6c61f4b5f615349e0ac5659532c9842b58b2502790854d9ee9f624a45b72f186", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3ece361f89a274b524f4eb7435ddba09cdea5658d75390c61fb8201b5bb85292", + "regex": "." + }, + { + "hash": "fccb5b553727b59137ae6314831c19cee0ad664517d8e3e7777a01ee7a5a9f67", + "regex": "(?i)^https?\\:\\/\\/antaiservice11\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c3caba19d98dd5c9594a770caf53b5209c37abd5070d607bc1294a1112f73f8a", + "regex": "(?i)^https?\\:\\/\\/metamaskextensuon\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ba0d3578c536bdc00fa755de10792185e5b0a6b6c5e99682562e6393e6ae3b74", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcongresscontes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7f7b508a506012ab196b5791d9a3ff80a53059aa5b414277f86626b4b48a34e7", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "aed571cf07b9202c899f581451e42e389cd8b964aba4db00034f9012cdacf60c", + "regex": "(?i)^https?\\:\\/\\/ohcnstvmg\\.com\\%E2\\%88\\%95njdvdp\\%E2\\%88\\%95rxollisiwf\\%E2\\%88\\%95jchcyymty\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zklcprnhd\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "64d13a557685ba577f73b6befd56e0ddd0785f68317cd34795ef1bb94de2ff1e", + "regex": "(?i)^https?\\:\\/\\/xjvjkjhw682668\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c87eb2f52cb495a9be76fbb964b3201faa2c54eac559d8260c19fe4c82e3dfcc", + "regex": "." + }, + { + "hash": "e3329005af5e8bdb08e6e74c2a84166f7e8c17e965fd911d1e0c6bda3e0b80b0", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-add\\-vote\\-anchal\\-login\\-page\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "616e6fa0ccafa31d59168676b2f86f0f8b8e296bebd3df3593749468d8733014", + "regex": "." + }, + { + "hash": "a6ff2fdfd615b668a69cab5be36ed02bf12cd471233eee07dd0abcc38fe6b34a", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "24013946ee4216c12426b80f8ca434981fdf489bcdbdec71b29dcbc139074036", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d9da600df1ceae930788aa754e9b2607d0696c5caf19a2001e64e5ee3575a3f2", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1d2efecbf0b97648f05cfabbb6ad768feec7463773aeda124a8f5b0ff1c7efbc", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuakcamscaksemase\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "443394483718b6c09fb2b6e191240c14d997a880c7b26dba0e92a322f72b6c3c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4c942e7968f5205e1f572fe497c6d3f7b63473de746d8a03d2705ec672bb1ee0", + "regex": "(?i)^https?\\:\\/\\/brunette\\-cam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "425c085ea508f3551cf387c36cbbd7133c07eea1751e3546aac80b7fad2b4088", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1e357d608d40ac15c4c1b1e1de9ebb6b23a4d62f943916781ab27c942ed5d539", + "regex": "." + }, + { + "hash": "c68a797cba1f7a1ce473861ad25f941d087fd4ccfba24d2674124dee179f3bde", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "73f95326e3876a378c20cdf0895c4f2cd7c4e42c0654ff15a6bfce4a7f9254ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mediapart1(?:\\?|$)" + }, + { + "hash": "786d3af20399f362396c7a6af0b416c1e61c81944f4de6cfad6ac74fef5de2a7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c8fbe6c105a8b8e111b4875a8fe43f89555a77ae4f9872fa6faeab74c0c086de", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5e70104653a27886d1262fdd1703b0cc8dbc398a06b32bc48d033ee80fb37386", + "regex": "(?i)^https?\\:\\/\\/chat\\-x\\-gratuit\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4957ad7989c034ff336753583f0d32f7fe61485ab129fb99b23d5f8c5e955668", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcvsmdtuakcamsekm\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e7558011680b4c1d3e2b1e22eff8cbca1c3ef30e34949005a6af9f3167f8a51b", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e6293b1b4e8d5b74a913db27da9b526725b528cf02057050e42f13e6e30c5472", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0fb5700dd376348b556f888a681dbc36ee8d3ea193522f9cacc0da11d30eb429", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9915340442d10ebe2e8d9dcd4f031c0467ed69dd822870c567abc094757dec6a", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2a19b5fcf791e05c43fc43525a6eb1de8c13c7154b356c3e2fe2b88c184e757d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaskcmasem\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8552385f0fea4d79560516d9da80937fbf65d912753001b24caa35a56f6687a2", + "regex": "(?i)^https?\\:\\/\\/reiprojforbo1981\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0b1c4b0f8f40c9a43f31652eb14aff83e5f58e75ce48208dc750a672a9c8f2bb", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b367d6556ee5891ebfdf5e56ddf0bd7c0a5bfda58168d48d93738dd69ef8b6af", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3e2d8e2cb75106d63ee1d8798eb16c80310a8dc0a7566301dc854e8aacb314ec", + "regex": "(?i)^https?\\:\\/\\/severropub1976\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f9ae9f93613d603480b58a1caf057fc85949460e3b99e4697c420a217f5fcf1b", + "regex": "." + }, + { + "hash": "a5773e464e84d8c31f24a5232928d9c40efa7497b07eb9d7953acc933fb2e317", + "regex": "(?i)^https?\\:\\/\\/caepalgksdfyksalcaskdmasemase\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5a40b9215fe932b6bfcf5481be3b86346697f71da1d6e9ebda0474830973bb83", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1e7b0d7e4cc383f4df4fffc60f7fda18ae4ca4ba110b081ea809c58cda65ec71", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e6fb8e701166d4a82febff7ce41dc751206f67a3e5516dc601e2e5da5dc32c19", + "regex": "(?i)^https?\\:\\/\\/reiprojforbo1981\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2d68dabc3ba80d0be3cd0985b4b4d3688774e3b41e639d155b72e0abc4284e68", + "regex": "." + }, + { + "hash": "4ac678c550507c7a1f5c9074c5f2d92f27a0a165316e8f4ecbe8dfe4fba2fc89", + "regex": "(?i)^https?\\:\\/\\/pub\\-5e5f2378ef1745eca5eddd3400c072bb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7206742a65176224a629d7899dafae66f44fddc0f1589ca748d4de726378d8c2", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuahaskcasmemas\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "62e16f08806845aa663fa7e3d407f3fae9764ba2ea6738347ef79a4f2b889084", + "regex": "(?i)^https?\\:\\/\\/grinsubshelre1971\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "73f2fb2a2374bba4b095092acd57f80bb813b2802c7154a9c5a3138f658695cb", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cb9a8dddcd3517c0f04b77cdd45e44e0e2865931a931cf4ce5649e4d95a38fc2", + "regex": "." + }, + { + "hash": "cd9411121f8fa8b540d1bfded9ce8336691b112e399b473f36d0a4ff2f186929", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5997f5141feb6cbcbb3229765b8e507d87b3f89660175bbbd526b624d7db12c8", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0eabb9deecb7c825a1bc6bd84abe56a3edd2037df86b4abbb0e361bd7f96b1ae", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6417e257bcac864ca63ff784016ceb61ca3c50fc25944482f0c296ebf2c81341", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9d1e7dd8a2bbcb06df4182889b7a1d937551b20849ee6d70b279b149e4501d57", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfghgzsds\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9f6d725d00547a65e0d044ac18ce277ac5244487e31fcba433e570a14d9672b5", + "regex": "." + }, + { + "hash": "eba94831a9e7707a25b997139fb30d16300b59cf8a23c5ff607abb5a683bbcc7", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0e5eb06c06a5f4eedcab7bc3fb482719b8734454fb25ea5029e671a77e3eb050", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "37adf4a489b54dc6c7484434ca5b751635a6f7e2dc5c927305dcaff0a66dd52b", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c635ae29d8f2e3e14f324826c3dcaa62a3f8960191ac39916bbc3952feb12d8e", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "838647f91818ef0449213479b87b9d1903a642c2a522c185bfb1aef705dd1c94", + "regex": "(?i)^https?\\:\\/\\/supportquickfix\\.vercel\\.app(?:\\:(?:80|443))?[\\/\\\\]+nano(?:\\?|$)" + }, + { + "hash": "b469eff998f20b2cd1da263c9c640675eedcfacc7377521cbcdc3c674014330c", + "regex": "(?i)^https?\\:\\/\\/hbqadhqa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4e8e7b9b69276b3d8d4afe197bb81417a232c1bd2be655df1f36aa39604cdf70", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "deb984022a0da0eaadaff0cdc0902e904b98c9479d0ca7b8f617c57ecbe293e0", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8aa04b9264156fc83618c4324dcb480f320e62b4166cb7881d1d18e10c87d629", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b0629d56dd9f4b0dbef00f7a59992b663f856da00e85ceaa79774cd4033ce67c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsefa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "efa2187e792ac4e5a1fa68c9a25ea080cd0466ce1eac999046241b3092dcc448", + "regex": "." + }, + { + "hash": "47ea2444f39d42f18237eb25d6f3300db3f0a1b5165c0ea2bcadcfc2067e989c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "daa8060ccae507eb6d53c36a4ade367ce0bd92d465decbbe7a5e3a0bff11db44", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a73a7b317c0eb6b08b75a9971e766b3f2082f4604dae48529206015d8ed7a209", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaschasemaes\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1279b9fcfb16d2edcb9e7107da5e8aac4c61052801e80fac8311b5dd97cc4c48", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "51b859a5a58051bc11b094f5c86b01411cf467ea10761b21522baacda2893f36", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcvsmdtuakcamsekm\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6f3542f92c20f2566910b4931a010b2cdabfce1bcbb2e46bbaaf686dd1492ad6", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1a24e88ffb7bac6cf5332efc48f48dd816e2aa5d9b4bde29d1f7afd82c0d3e1f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaschasemaes\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3819755dbeed2218077f34b0ac4959c3b5e8a6ecca9a5045c57e60f6a0f38dbc", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaskcmasem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8361404a15bbe088f25e0d45b2aafc3d25ae460be677a361711863c397edf284", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c2985c1ce7576ca00d2188462a838405fa1fbc523fde590b8781062f14a1fad9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0a3dbfba42143960320e54113607ad02b76c37b8f54b363edb005e8fcbca3089", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "87a1b52285cbd5a5a9c68a4b211a24fb669b9d83d055f0660b83ac839161e8d9", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cbaf7221f700582b44a6cb142bd5c4e3529f881bb2cc55f1c5e49b2fcac25f40", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "686b08dc607fc5a6420361750c0930277c22cb989ff132ae95660c3b6dc8a280", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcvsmdtuakcamsekm\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5b36a0cf6f155aeaa8067a2dc699fa259c3673da4a1b30cd7093ca1212c4cfcb", + "regex": "(?i)^https?\\:\\/\\/soibourviagen1971\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "aa5708408db071b071ca54f10fe4f02ce03a2ec9ceb256fa20463e3528c25fd7", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgfgggfd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "12a65a6751e5caac3bc81a48b9f3c2460ce21b7966cb56f44a5f46bb06fc60e1", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c208516155660d63fc1f0226b50c6175c6f096854862c64cfa15d32041a9c213", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f90e5dfd5210226fbc81f19413683c35c0bfeea735ba8b0c34641a965037a901", + "regex": "(?i)^https?\\:\\/\\/xcam\\-sans\\-mail\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "38a8dc593c12dd842c97be213c465037757c0329b49b9bdb2323c24ffcfb1e3e", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "44ec3f126afd69f3671f904dcebb3639de675a76bb79833eedcc63d755a82dcf", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9dbd9908838a6c5dc49df436fc514b542e0a6ec8c8a0cf5cf3a733deabf42660", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "73b8f5e9c54b972b1252eff063f33eba7e22f43fa6842789dcdbeb498d8817d0", + "regex": "(?i)^https?\\:\\/\\/qaerdhgbqah\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f8c320b3e92f4dcc65c2fa4e8e93a239d6856154fea3d7f6cb53ff044bc5aba0", + "regex": "(?i)^https?\\:\\/\\/severropub1976\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0a216ec0269630e9914ba26ec75c138f9f70f6b1757f3b142a3b4e9ed304f787", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d43e143e0cde51b2489493a66393831fac12301c54b6b48e6f336bbc5920c06f", + "regex": "(?i)^https?\\:\\/\\/grinsubshelre1971\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f7562a43e260ce16306977c338ee1cf1d06e94173e27a940d6845d28fadfa9ce", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5b28cb5d6647177bf531007b3a9f8826b3a6b5221be77d2bf839435bd57fe52e", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6cf0e87bcce5ac8867e0cff2329b9a0a8a43cf95b2aa95ac2aa5a719614e482e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-msn\\-porno\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2a41b7741459f080d2b8fc6ff5dcfd21e3564cf52f33c1624fa3293cffafdbdb", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4e20d166da00e9f8c0245ae258d459707fb015a9bf43f1d33a8f2942d0803f1b", + "regex": "(?i)^https?\\:\\/\\/glicanfumo1980\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9fd834678550074caea4e9647343696206e48e8661d1585bb6e617e885c71948", + "regex": "(?i)^https?\\:\\/\\/qeahbqaedg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1120b677df5a1dc27900389b5a3db7ed760f8a77095d3601f9054b1babec5e01", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d89674f79a5074774421e0495d29f8718f450cc939133cdc90c8b3b76ee52428", + "regex": "(?i)^https?\\:\\/\\/qarhbqaredhf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2992217930e11943a5367da19a9222305d703e7b4d6fd79fc07c30cced0c1e5f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9690d7990438a3e073b85caeb6b5e41ab23ed78e814981b955abaa154bdafe77", + "regex": "(?i)^https?\\:\\/\\/hbqadhqa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "12d40d4c91ae18774084e529d74c6630c374284fe5d2cae62fcc92f37c462727", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1eaf824a8d5da999ffe63b82bbe1daa83e64413f303647d1a0111d59f5649a55", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9777a7e6ac68566d592abf0c0abc8e5505308d70b0d2f5ffff87808598824674", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyuakscamsckasme\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4fd7b938011ab60310ef25617fb552c46b33e1c67af282831088948ed1ec95c5", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "41c62501cbef65f1f74dcc017496f1d3d93085b0682fdbbefeacb44a4e5d9102", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e8b4b6d7c5ff33226be4e20948e54c37db4afe4d29cacf03c08e62da05aa6d25", + "regex": "(?i)^https?\\:\\/\\/qarhbqaredhf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1a3fffe9beed8bf57535b6fbcf584b23219cd66aa5854e38d63ab87b9cabdf9d", + "regex": "(?i)^https?\\:\\/\\/fgjhghjuykyukuioletrw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6523143eebae1a6dd8d5696fbe1a2c12cb8eaa8662b783cdde0a0320a2110614", + "regex": "(?i)^https?\\:\\/\\/marbtiwanters1972\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a1802fa566fea288ada651b2db7b6c4e8dd2ba84a437730f3c9847d1c5542d9d", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e8a36b8f2bcbe02380c6ec060a6d2a078e12518a1aff7d73ab737306f3a55bd4", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "65dff0ff3402d4fcb504dd80a62ac968e4d5066a842ac4e7af7f9602333b7319", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sre53t(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "842af8595c707cd32b3802c29fb5ef2daa4f2190b26b8e123e01f822e01122de", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9afb4526679f130b023e7cd3afbaa9b1ef561257e708e3f49bc7c56ed83b3ccf", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0c944e2b5d38e13c3d9aa40bde58204bfed11e807ad8395dd1bd78942f3d531f", + "regex": "(?i)^https?\\:\\/\\/chat\\-x\\-gratuit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6b77e28f0cd1b8fe1c6a745df03c3ad8db808178215038350b69e29029eb4174", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "697b0d94d070dd851964a5167e5643e4ebce54907617e7171fab2ad4566d8dbd", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c4170289f117dce9c2555374307677bfb2f4805d4fc8af6c42b650a42ba3f141", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a5d6a5d17fe1f029947d48f5e63cf74e1b4e4c343b5b95ec34c4546380765dab", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "72832033f7c7d2d812e6269f14f4675de8664646f5e4136e9873cce4f865d51f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutyaslcaskcamsm\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "992691262813e671f873a745bd9d99cf5696ebdd9de5e2bf45779676eac2e091", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c8fb0deb7d9c83f76ab9c94c5545041531ca926f53f4cfb595f6671a0d19ee8b", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2855ad9b2c4cf9829991356e57f9d06e60ea3f0516d98b348b606599ae1aca97", + "regex": "(?i)^https?\\:\\/\\/yrwhitmdnwe54295\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6abaffa5112b85d0a341ca762acbfd8227d37d7a21f44de34a953df24728d5db", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfghgzsds\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9ca050dd7cd694736e7f63dbe00364b7f670deaadaef2bbcb80d304b09115851", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e9414ef79d2a0c1ba92755f7f47b5ef2db2b5379c611c6e4ce3caa14659bc966", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bb25372bc981cd706d585ba9073aa691eb5dccf6ebe1cc96cc8260c0329eaec0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcvsmdtuakcamsekm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8bc7694c775dd6335e1180a2cd534b4090243a6117c8be1f7148cfe4040dd3ba", + "regex": "(?i)^https?\\:\\/\\/qaeheqadg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "192f078104fe5e34da6d39033f8c9bb6780af32de4ce179d85c3a862a925b86e", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "979ce99faaf9b123c018e0869bacee88a3765db33ffa209e0c3dfb23368a55fd", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-cam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d1fad3cdb54ce1c8e1e6340c833b3c129e15c8f9d96af1d121e13f1283cb0418", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "db3f40075cf1ca580af0a4cb7313084e7fd2baa55bbeea1164438963b89cefb3", + "regex": "." + }, + { + "hash": "4daeac3f68bf108b90e44edf582193a55a7237441ff62c9bd71c26044f6d33c1", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c91805e8bb3de02194a06595b5756c3c8465079b0bf10b26bc5310e8af896b8b", + "regex": "(?i)^https?\\:\\/\\/hizahpova1977\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "82a8dab0563c926716c25fa0f3ff88db84a94a8d110d49e843b9db9f07c74414", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaschasemaes\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "89eab855c35cfab04e9d51544ff99d488078e46533d58cba44777b6a9ce3e519", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "67f46af9997ab57578009f24f8fdd123f2f20a614f0fc2bcaae148de434ec914", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgfgggfd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bb733712c25c31d3a333291651e51c3544d1de1298bfd6d7c4489283352cce3a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaschasemaes\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ccc26c4b789c7e4fd6d77d8c476d97a7dc51b1922b3890c1662e7ec369d0d67b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4418b3cd684eca7588b2f7d9d6ad6c4ffce908be07aa5a939e09d84ee38b7c1f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a0a74b2ea20c119c7b00ca04ae632c71d5437425eafe80700cf3f65f20e3f33f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5db7a5529e3f2cbbef6e16276b766db7c95edfc5354a73d0922b80862ed350e6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuahcsaksemaesm\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "742bf712b78116e98047185d28eec82974854cacbad93b4571b141a7a50ccb09", + "regex": "(?i)^https?\\:\\/\\/hbqadhqa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "dbd2d822904800b093477eed28773cab726764bdc933d7d1c457d53ef0046cc7", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b4115203756dc379a13f7a5ccc6cb463beabfa6ebdef57c884152af83e8e27e4", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "63414ead028358673db081cf9e941c2f7672fad3e06f1e25b05b741bcc1583e4", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "adc4bc4420456975b4f43acf41d9ca22186a47b586c8ecd17f7a0b4589674eff", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "621f52203ac95d68f0ae606872ccf4ec51a8ca3b2cdead35f76c61e0ed61ba4b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyuakscamsckasme\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6437c4a7fe802dbe7869a98995bf0cbdf7fc628d13fbe5096a264beb71c51d4d", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c9615320894b469b07ed5b8894dc66924e81e0b2f398b10554fe6dd6e162bb82", + "regex": "(?i)^https?\\:\\/\\/eqagbeqadhb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4b19e9bffd86520688ef22ef9ea2a3df81e9aecb50ea5d53168ec63e22ca0571", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuahcsaksemaesm\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "73494c9597c05642217ccfb26a8ff53a203f397a9a92bad6b39bf556eae7a80c", + "regex": "(?i)^https?\\:\\/\\/caepalgksdfyksalcaskdmasemase\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "46628cc9671bc5e2b89c652ba91b1d0bf8b0edee79f611aa346d65174826f29c", + "regex": "(?i)^https?\\:\\/\\/chat\\-18\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "96c4ebf7d2fc4b7fc174c26f408845954add8c6e47b3b31277ffac756f013132", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7bf64bc092f4f29f414f2448d0c6b4fadeb3d97fa3f3d993c9fd90dd22bf0abe", + "regex": "(?i)^https?\\:\\/\\/caepalgksdfyksalcaskdmasemase\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3efc511ac6e61dbd9bbe10047cee1b21dde36a2767f75e09aa016bb9afc1ed1f", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "19b84dc68a8bc42852b9ec76d5207033c278885ab989d20501b84faab73ea76a", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "58aed9d045e2678f878d69f13e3e5bd666eef370a151b57396300008bcb2d3a0", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "87aa3077e5a36f192aed7be3dad3bcc4b6b7d1960a91935674bf85bfeb77f7fb", + "regex": "(?i)^https?\\:\\/\\/xcam\\-sans\\-mail\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f0bad78d44d4ca1c0c3625b938032c5f6f0ef7850eaf49ce972ad3cefdeb2423", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cc88cef8c58f156e4c60d547527cf124d1845d8c42279d399e296db6318b081d", + "regex": "(?i)^https?\\:\\/\\/glicanfumo1980\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "997e6ba920eb8a44fe866b8d7fdcb729d33a8f1934ae6cf1ad6bf53fd87bc2d2", + "regex": "(?i)^https?\\:\\/\\/soibourviagen1971\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a01e6dc9ce0f9f5bd6eebdef7181b512ac83e255f52985a6502b25285e72ae78", + "regex": "(?i)^https?\\:\\/\\/goodsitecosmo793\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8bb95c48b8c3c8b60b8f7a0f1d64e9a658c348a826bbfd74473625be2c55605a", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-free\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3e06efbb91fa17e63a1a0179608157c7d05246c54f75d718ed91be2706c22d32", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "accac3f1f54a7c5b151e6d379ea1f9bb68e3f4a8196ec1e7c1b9a3c2cb41de85", + "regex": "(?i)^https?\\:\\/\\/firma75\\.samsun\\.kavak\\.rehbersitesi\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8ea792684c5df601cf0c068cbd5c494d8bc57277de58e12d5cebc05f4fe12f3a", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3f085d1a646f793cac8255fc4beefba6bebd190115f9e9044d22389cf4c1193c", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "857de90771a8c1ec29ce489079b61396a7b3916537353f87db5ec32dc21b8eb5", + "regex": "(?i)^https?\\:\\/\\/reiprojforbo1981\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0ef434a77b9d06aa17c2534b1eff5ab168d7f7a97fc56520940325306bc05402", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuasdhaksemaes\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "467fc15ee234cc40dc57e168887a266fba84f7267e0e4514e398534cfefbfa37", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "16e780b253a333b09853df347e60fe5159cfe30b09ae921d59fae57ae246e568", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "afb64efd375eab6c56814b1ecb9184a6f50c17645267ffbd46002d8e3582b02a", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "712933b9d46f6e2d4c6bdb6354481c0294a6adbb3715945ce803f251a56629ab", + "regex": "(?i)^https?\\:\\/\\/webcam\\-msn\\-porno\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "995d33ed290990baa23a95145b527152f92b6a10ce4bb7e915676f78cca19085", + "regex": "." + }, + { + "hash": "bb22dfc471faf0d3f0616226b506fd5157d671f4c0752579a6d66beae7c9e724", + "regex": "(?i)^https?\\:\\/\\/severropub1976\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2c3f3d23c063244321b17df044b4b220b9314e50d2b81c6382427010bc490e7e", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "477e735bebbe1461cb189918a443db8ff555204d57d2cff37fa28c245c19abb8", + "regex": "(?i)^https?\\:\\/\\/hbqadhqa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0b9aa03b248a74f2fee7056e7a641e603e5dad67f3cc839bab7b40369718ff53", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "88efad3408aa90f1085ffa893227f32564f326c5b57e737822c90ebaa57aa16d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a82d884ea54a696ba794f1ceb344a3883265bd40d83720a7dd4d45348bcbf4c0", + "regex": "(?i)^https?\\:\\/\\/soibourviagen1971\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cf25c5dddc05cfd1c5e8d3ed8477cf7f997501ff68c59ebe9a8312f7cb8a40de", + "regex": "(?i)^https?\\:\\/\\/brunette\\-cam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cd290d1ad24a1aee6bf02d0197ce12b6bddcfa20b540d80c210ee702e59e5194", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c02c92afd41a163e83fdbea7be312ab29971fb100d8af124c688671ae66d7d2e", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0e6a8e1f6a8185912f532f0d6dc7acce5e5d3c7bdbb5f98d858aee484c46e84f", + "regex": "(?i)^https?\\:\\/\\/reiprojforbo1981\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bd2ac6b0ec0fd973641cfb10c1f616a88089ae334293210581613db8a973e5a9", + "regex": "(?i)^https?\\:\\/\\/soibourviagen1971\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5aa5b9bb9d8f9c23291730a113a0cb9ca4d178260ac8e319a56513eda5a24c51", + "regex": "(?i)^https?\\:\\/\\/x\\-videos\\-cams\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ddba40a2e0cad596f949c1d8b39fbc3d49f753a120a3c82d24ba7b78613fa7d7", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b6543674f36d5ddd8e30248f9141a6d4df4708f119caceec068042792ac2ce8b", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a1a9775ab1c01e581a5b11be716f11c6ddae02ab6e5c692b4161f41db552694f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "ca2b8d94b8024b66ffe33b5cdb8416dc14f8aa0db4bf92d20a7ceb0c34000ef2", + "regex": "(?i)^https?\\:\\/\\/hizahpova1977\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "effb1ec5f097286a2f8c95f55636a98894db2877cca3426e726ea6bd2f243ac4", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c470bc8da4a52f225e371f78c6ea5b55d7af7a70c71c44896698a2248512ab72", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ba61244a50f39218c2d742cfb833c0d5f33c34e09046aac75ca97a06e747edf5", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c97425cf31a8688bede17425d0bd3d46ad311f2b063837abac897a56efe8a1d2", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-free\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e41ad5ba75a24c15f9a0882ff91677c05eaef9434a36db17c2ee5505870d6259", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ab3c39135119e4dc36900d39dd2f7f21f59aa7910d37d57236b6e368d2f029b5", + "regex": "(?i)^https?\\:\\/\\/pcasrakvcmsdtgaschaksemasease\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ca0b2825d46223b19152ddefe420a9fb8a34cd0c6a93c219520a576db69b7c99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pel\\.smak(?:\\?|$)" + }, + { + "hash": "7aafba4ab102c191d7ce297d68433d77a3d01d20d9feb2f7788098d8456e1659", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutyaslcaskcamsm\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b070f77a504b04b625aa8afbd7e35e7ba7038ebf39d8e837b88309ea1795d6af", + "regex": "(?i)^https?\\:\\/\\/chat\\-18\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fbc18ab757c1fafaa8f6df48f2ea98c8cfc0b116753d3b8ed14209e0f2043050", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b94303c115bda723ff1ab407751cf588036dbfd093f95a3ffebfa876b123cb48", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3f5308bb775c8ea8596102dcc5a03db7473128707159bb2699e6c3046b3b102e", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "457876419d69aa7285f79517939741968b6bb992b63d044603216e76a30b4d3e", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c5aec50b1ba2d13318f59e1e21a319f283c20114f4ff5ba2cb23a6d115170e1a", + "regex": "(?i)^https?\\:\\/\\/xcam\\-sans\\-mail\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6a72423a3b118c8f333a6dd7d3833bd72f632c2b2d63c003216955b2d6fbdd21", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2c17089f602216d1c129b89757d807809e7ae0fdb74f3c73f352403a2644bc67", + "regex": "." + }, + { + "hash": "5cff724362d3532fda0894cf04cd8c0e111103ccfb05cd62ce1720ab03a089e0", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "93632ec3744ac08950d44007c2f4b743a4336fca17f9c134867563b172718879", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmstdfuakscamsaksem\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a20b7923b8323b7afc9bbb83496f220c9f363d6853edc81fb2ad38ee82953f20", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fd734c6eeaddade476c5ce2cc534baa9955fb2d6af6309e72b672d906fe0ef80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8ff8a4042d274f0415e1ec6c7e8ec8361d145a272817ecc4a5d11e3633c40e34", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3a95c9e90e53d2403921ccb99a107c827a1e855f726277d3199a269aad46a37c", + "regex": "(?i)^https?\\:\\/\\/glicanfumo1980\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0dfbb3fd20ce3fc854530914ca1518431f3e0788f89069efea6e67f3752f007d", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8e92ec20e277cc74819eae1395835580337db9c0e775e1c852db718575d9dd66", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dd9b1710b1cf64a06af002c6109f9ba0b950dcbf5e4bbaea02600762b8c7bb6f", + "regex": "(?i)^https?\\:\\/\\/butterball\\.com\\%25E2\\%2588\\%2595dwehkgzn\\%25E2\\%2588\\%2595kfxkituu\\%25E2\\%2588\\%2595uzurd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pickup\\.co\\.jp" + }, + { + "hash": "54615802bf327a26fb7af088f0c09e0f9a15398a6fa1aea02309ab36e68d19f4", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e0ca3b5b6017da905cbb4cc6b1eea5937666b6d0f488f4204900defeb42a44e5", + "regex": "(?i)^https?\\:\\/\\/soibourviagen1971\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bf5f8f9ecfadffa11d2cead70c20d020f4086d1648b8bec8c4dd1b81d95e289a", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fcc0e69f70dad675df04dabca8ac68a5f382cd25d1ac4d2733e580b98aeb8b96", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "80a7f441065e33d4db62e26c244e1a6a511b979a96eef5143aba3f7d1a9a3204", + "regex": "(?i)^https?\\:\\/\\/qarhbqaredhf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b6456eb0049cd2b26219b7c7d5d195ea955df4363df342ff186988ff7f3e9", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5ecfadce5475c67e51c2acd58e4ab2a637afa12b126835290d89b47ff7ddc120", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1d884732a8e33ac47a6ab369d432d1b6e2afb9e11a7a930daf932fb95e97a46c", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "dc5783ae954a57db041fded841272e12e7fb1bb08c128b62e8b8bb8e26acf1a1", + "regex": "(?i)^https?\\:\\/\\/qeahbqaedg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c7ee1ebe731eecb89219087ed046152646c0ac2c3a2d993f599e25190d9170ef", + "regex": "(?i)^https?\\:\\/\\/qeahbqaedg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9c5d0f96ebe9d87b2a7efcc522ad98596e71b719874a15623e0a00775fb6903a", + "regex": "(?i)^https?\\:\\/\\/pcasrakvcmsdtgaschaksemasease\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "013d372d8cdaba3bfa46d2418fa6b26ef320e79454071e43736127928c8b0ba8", + "regex": "(?i)^https?\\:\\/\\/grinsubshelre1971\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "858a4aa882cc06297c96e42f34f391054ae3d9f8a28f7513c612f73a03eb42f8", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "270d98242eb742fe3e20a0b0b334e6b4917e5a5a7cf0f17dfbfacadede3dab90", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0031b4ed9b7b0cd8814c3e50c8d6573e078d8061fd41396a8ed1251b5a8d8efa", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3ce42d76534b2403871ed4005d9ea8a668081c93fde232bdaa3639941a2086c6", + "regex": "(?i)^https?\\:\\/\\/x\\-videos\\-cams\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ef57636cee8aff8ca628fe723ae7875ad7029d8050fab9178ab0996ee34431ae", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "641406505bcd2d72f129b4ed4af5465d7631607574d57c3a17a5bdb3ffb64b31", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1a2ec56d8f1ec53aa731d8fcfe1db0f1cd3b4b78b33d53872cc61b61bbe3dd8b", + "regex": "(?i)^https?\\:\\/\\/severropub1976\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4c7f79f9d4b9a315b8b06aa6d60b3ff9086369befaedcceeaa9e6babf056d407", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e0a3d8d63dc0fc4268c169d0f50b2d6d139ec3fc6f04fbeac70ecb499a871c0b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c9db58cd148ada6b673119bb65ef70ce14162ab0e88ce4a64ed57eb57886fb34", + "regex": "(?i)^https?\\:\\/\\/caepalgksdfyksalcaskdmasemase\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "33fb77178d97ebb10783b915808b1dc68f97ddbe36d6ba56b4ec4ffeb6c4e2a3", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c604f039003e9c968044cc0bb0cd024e06906c5119ab9cfc891f5b8416a0d5e4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuakcamscaksemase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "71a83d5fefdbc0ebfd43ee369e879bdfbaa3929b7cde2092504551df1d202f97", + "regex": "(?i)^https?\\:\\/\\/x\\-videos\\-cams\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "80305cf720d77926e1ae6d47a4bbe2a99734095d3d6c2bee35f7416dbae36436", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8d33802f49288b849ddcd60be0830721857a0cb17f805762c3b7f53d6cc39a77", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8974d1ea1a3704d56f5920adbf2acda788dab8b42ccf15a66a578c61b77c3c65", + "regex": "." + }, + { + "hash": "c01e217e4c155354ac6f4daa417ae1d73900bf7b784e67b991a45b6b0cf5393d", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ed68c325ffc67cb27a984992a6902dec8d9618ff97d8a529d6d939e24df0a52a", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "947479bb6cc29a536260d762198ce4a665da431c86c023e3067626532ee3583c", + "regex": "(?i)^https?\\:\\/\\/chat\\-x\\-gratuit\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "365cb83f0c3e75f27e59e339d2bc57f4400f8605699bd12081526e57edd257c4", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6b21fa954807e48ef7ce7e3f03535ba1cb1afe20c3006ce7a2d1a1f55f9ad878", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "52ebc0d4a08f76cdbd75103a773e59e8df75d62259415eff1a6eb401e9e5992a", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuahaskcasmemas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "496d146f794816f4cba4146e916ae365fc8cdbb1b49460a44fa8f86cbe0479cc", + "regex": "(?i)^https?\\:\\/\\/xcam\\-sans\\-mail\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "35112e947735b2b306f5e2070828f21e572bec247c32c3f7dee587bc0cdd05d4", + "regex": "(?i)^https?\\:\\/\\/sumuelrobloxrobuxhack\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d4ffc7191872897d3e5164b4e826c8fb930445efafb98724a9b750f5dff221ef", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "25c168fffba95a9fcbf4c6947f205f5ddba6a575f114c0ca6049211d43273278", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d834e5d33b4c3f5c39414d04d6558585546cc3641c3b0a95f23b35ca3d7bd262", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutyaslcaskcamsm\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "45a4e681413021029712655e4ff3a1cf61a4698135c829739ad583026fd02b0d", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5e70178ea80fce09bf1215deaf511902123a606780195a1de1004a3103415da3", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "615f05aabb93d37e28f25ee81ad0d1f8ddb10e75f32333cb66e269f4a6d889fe", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "37a76dee8f5554e021e276377a446cd5f7a585889f95e7129ab338033f1d46bd", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d0e0349dca9b1bd59c90c8c6a870c5634bb6a59b7b411d8ef5eb87534801fec3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmstdfuakscamsaksem\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d9ce596978bc9663b973b18d5992dc158d42217f4c5422dcb0b253e2930065eb", + "regex": "." + }, + { + "hash": "6a6b28c6e393ed539ac55d1579a8878ede0ab72b7dc52e82231c6825daaa3b7a", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7553745137e40e9b9bc44578be9d3588772951f426e72357036eb4de3eda321e", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a38b4517813ffc00fa283b0afe7f47833a52046889442dc68bf2ead3a85899d4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsefa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "64b14530807b9f9d04382949b281542d8063b939372d4f63f3fa00b4b97a7dc3", + "regex": "(?i)^https?\\:\\/\\/eqahqarehjzn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0e5e89fa21a5efa273635cfc859066d0135c5c3ddc2f108509d498e71fefaf26", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7fd826e94f9335a847a71fdee71856cd137dcb8ba54a19516b7f70b771ce460d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutyaslcaskcamsm\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4443f170f7fe6fda0d71c4cee9608e46545e07bd070ef688369e8d11c86f609c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtukcamsekasme\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "128b841022267a53039eeceebac843519f5d098065cce3b7b739b0c4b51d6887", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e802f7362e722e49c4433b913e7d0ef01bb4a2ff25bbf1f3768795082485f2a2", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a1a9775ab1c01e581a5b11be716f11c6ddae02ab6e5c692b4161f41db552694f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d54471fd6a91e792f95cbb43db18d0d36bca8af7bd03140f2fc10d604ea2c8ba", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "766555d1c4972370f991a160a67b0e322dfd7e34bc29fedccae9b58a0e3b6ea2", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c5ae5868286a32225419ab9a50e436e00187a7086653139f772ca541a01b9681", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8f64133ebf91058850e4b8492912afae6fc2b5d3c82dc25d3e1637b9c891c0fe", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsefa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f7be118af02036a78bb00c8554f92e459570362bbce8d7322ea6290b51676cd0", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d963a81a6b4468444fc7a426a6803f41dd91457842b77d50fc580cfa1451fa01", + "regex": "(?i)^https?\\:\\/\\/reiprojforbo1981\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fa56be9909c883b981ed84dbae4fce0a5bb60c63fd19913a7409c1fc54f6c9de", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ad78ec25b61447a80f847fbefbdbe0368b21ae5e221d275db495aad30c3381a9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyuakscamsckasme\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "da15fa1fedac7b633e93038dbdf9ab100ae4a3050997771c9233f8f3db958998", + "regex": "(?i)^https?\\:\\/\\/mgbpzmw\\.com\\%E2\\%88\\%95zsapi\\%E2\\%88\\%95euwtmuyj\\%E2\\%88\\%95xzpzzvvzkz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=nkgfio\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1212740e5253e1a700378e0b770387047b05a81ab6b3016c0a9c18ee7ca38d4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "7669900230578c0bcdc39c41f3b519bb3b2a9bb8705ece9fcbd8aa7b17fa5445", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "93aec48ee5a24f35d7d33ef0a5c1449482d2bae23da3efd79ecb0dac03d10d62", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaschasemaes\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "73333f6776c580e3a069226c295f15f1c4d2631713c4a97344c4e795563b8d98", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d5e6504f2519db4ca96149e5ba4f146e3ede922fdcb866e784a2f0e408efcc07", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "698b3d5c6e996f43f321b7baaadbe0ac38a458cf01403e96e03146edc27313fc", + "regex": "(?i)^https?\\:\\/\\/grinsubshelre1971\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b274da5ee9b44d0a34f1ba19da54c8147343c9009699f91cc43709aa517305c2", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7e267584cb7451cd3ea1a0d619c8dc7e27766329091ef49630ce6156effc4333", + "regex": "(?i)^https?\\:\\/\\/pcasrakvcmsdtgaschaksemasease\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fa16c36527485705b3ab7ffb8f31513b5b6a24b49474dced06addf80f57d21a3", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d8a490d7d819353dd01d0d5e2093dba2f0200bce20fa24e3719b599d73165b4e", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a761a7346777d74495f49d625ba11fedf3105dfac1e802a248c10fd583fbde4b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutyaslcaskcamsm\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "21cc632f0612fe872b49ae4d8a38a60a1797d557bb0a123fe70faedfb7ceafae", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyuakscamsckasme\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1add530a28d46d92ab82abb0c60470e6d55d466f5d53d1841f3e1bb4ac63cde8", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "93a928e8c72fd5ccbb549093186b1db912ffd9125d0c85d417fccda57e23f0cf", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcvsmdtuakcamsekm\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c841caedb2a8c94aabaec9d2f44c9471d099591c6cf514727f0ec1073831b99a", + "regex": "(?i)^https?\\:\\/\\/soibourviagen1971\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c38369ad8a3b8ea941f3c46a3d1ed3524e93370fa42cab1f966dd385be0096c8", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "399e6bbfb17ca6ad2642671dc417d5aa84a927bf795d70ab90b9dcc081feddbb", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcvsmdtuakcamsekm\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0dcafad68ded45446b943aa84ca71b5a2bb59e41be41eaac46c8222731dfcf75", + "regex": "(?i)^https?\\:\\/\\/webcam\\-msn\\-porno\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c0a3c43d39e9514c8635c45f6f4024e07f6e6866c12048892ff6ea6814825909", + "regex": "(?i)^https?\\:\\/\\/eqahqarehjzn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cb29cd64f8a29a3e376d091f4bbcdd8babed6dec71557d2da94aa71923adaff8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaskcmasem\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1c22b526f0ebd26c48216710cd7053e7a66f3e3b19d3a53410d348ced4bf2109", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "992e421c1aa6b4917ee89fc2d90291313f6f76b18ccfc9fc706d7d2ec8092fb1", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1e19402ecde82d1d5b1ccc12f95d21b4f8a77eca2e453d8fcebd93228d27b157", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ee2e6374d6cc8d21e58d7e1db0722acb1038bc1a634233ac69b142edf74e0c0f", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1dd91b25e8e245ec7a2ba1368c7306feeb306ec94899ddef78303a9421b74404", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html" + }, + { + "hash": "b4ae9192610ac9419644e07ca06632a7815322fe02e8d6c40bac7189ade57dd1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyuakscamsckasme\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2964c863cbd4d5e8edd1884d1aa361e93daa55996b78980c5cac5173ae7ce564", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fc73f6cdf8bf1461cd4878c61791ba47fc2a2212ef45b5c5f50267e7b736fec1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8344e35c5ae55798d5f2756f420be1cd11d06b875b543d6f99909160a73886de", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutyaslcaskcamsm\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "dad54007bcd4356bc4cb0965fd6123e30fdf32dc88bee1de0f94e7f09ed561dd", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2c8be559d01250e8bd99682511bf46246834913979886cc53be69b2fa8041fa1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "0437a88004e2756b3913bbb440526460671c08389b7d45226a69869044fbaca8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "476f9d5952ae42ff40cfdada160c9ea827286824bb6004e7684c5d37bddd329c", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0eaf3483ac05434f01cfb1c9afd16fcacdf999de338d365502a9d9a13e0ee44b", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5c02c7998b8e3cdc9a00717f7efe2d76bee158ce75328db357a2adf01cc021be", + "regex": "(?i)^https?\\:\\/\\/qeahbqaedg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "69c1213ff1b0b5b057d50522c12d619b6168a01c9b1e8a6c37df67277867c9b4", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-cam\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "090dbec55b45d681c6c1bb84462db70dbc8bafc80c262da0c3e87f521519e252", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bcced08751ddf9af38ddaf122b7d6cd2635a903e3cffa52e8981984da5e4e7e7", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5506f4b40dfe9858e464da8dc1c4a451f8cd229098cdd475d2013ffea0969c5c", + "regex": "(?i)^https?\\:\\/\\/soibourviagen1971\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "024fcd130889e323ba1c8763e8494f4074418822ef9dd924c4c7f83c113dbe77", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaschasemaes\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7b3903413bba289da2f42f37952278414ac2126ec4c96641239211f67f794931", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e48218d3ccc3c644570beb841d6881cc35b9eb4d09ab1d3c24500dbff0fc714a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cc670a2fceb22f8e889bd004a9da6ee693769505284d39f5c4846dcb76cdb213", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c5d4cb9f5ce80c6d07f8acf0f02a86cc3145bde09a5ad4ea82e1f561a5507d48", + "regex": "(?i)^https?\\:\\/\\/brunette\\-cam\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ff64db8d98f43a10b729d25a54abe5f998a5850b0ac12bd0f174ffc4325b390c", + "regex": "(?i)^https?\\:\\/\\/severropub1976\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8ab4fa7c6385a7092c85fd7d980f3ac0c0b833cdfde5d440c54f0e4cf490977e", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4c998fea3289cf3f1d581c36896ee1d62c26319dfdc93b0de67935f078248e51", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fd73dfd4241ac38f36e96bce05d396afb2a6e6f3fb1de90be348291fdd0d233c", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9f6233ff2939b25d088b1de23c2e4dd79acbbd5765c15bcaa618b6be2960c442", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "347cc63de1eea6e90d9ba8d4f8dbc49f23493870f6089d43a3cff3fe9de03ffe", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaschasemaes\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "afe5c402780e847f791c0f90e6e3464311a06c7fb4e35d2da38722b19b8aad4d", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0255b68585fffd5a0dbf290d7aacc22c4fadd60fdc8333116aba4ded80d0f854", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e8bde0556ca6ff15813d178861b5e4b2feb8218dd675c9783ef51bf593a80dad", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "07476c03169985428a96f95a2fd38aaa706cd576edffc451ebe4aabaa81c3838", + "regex": "." + }, + { + "hash": "c6e3746ede6762f10bbedee40773f484d7838f27e786d9862eb2fa3b6da4a1d2", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f5d3c245111cadb709d87defecf724ef7870bd1df1b079fdf18197c152e819e5", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-cam\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a0f90b7ed23ad4c82cd2801cbf65adda0a2d49ea8308d3ffb26a6c736f4ddd2d", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "03407cf79a15d13da8014167fbe642eaa7edb995cd54f791071e662ef8d8ea3f", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3187a8bca0a19c5ab854633d171a3cb84bc2ea363853c043a32784cc68e1966b", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuahaskcasmemas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7eadac083920d648142c545bd9c7fc419acc3961ce024038a0e8a4c1004d1de7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtukcamsekasme\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6a0f57049ab2f1e0bd51981ff469c6b5eca9e262cef681198e97e02d43650ef1", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8987b45cd8f37566ac5d547c797ad2029b0e2a34a038a7ca1a0bd5e41eeb88f3", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fc30c2fd633222ed2beb7c53143a39d37ef34593fa970960d409e1ca7caf3346", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "35116ba258e0036edffd8c6a04ac90f2723e8bebc1491d830c33892e90c21155", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a49b8202f7ad8539aad287aed1eb05b819ea0b3343a6aae8207bd3729ee0904a", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cbc55a165d5303f1e449de8dfc58f06bc200ed0a44be15dccd207544844ab20b", + "regex": "(?i)^https?\\:\\/\\/x\\-videos\\-cams\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "da616052884625e58e2642c5b1c4037cf180b9ba8177f2b7ee00776cbfd120f6", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c9c3908bf193594331f96299ba1b73d070adc05f63a6b3b9fe446270ece6594b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "948faeabb935e001252ab96fd1a0e08c7ebcc8e2f8893c1b04ad3cc0c6b5e4f9", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a1093c9e5914f165aa772db66ed5e9d0f4dd2a7edac6d7fd35015fa8bf350365", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuasdhaksemaes\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c207e2867db981e05fe6a0c282cbe166e9c26269f97231820acb0efa6768f426", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ec50d79bc318950e8ea415282b4c378cb70837dac8d10d14d27e8d6f5dc96d21", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ae99e83f42d027f4aa4f0e590820ef8d9ba34a2a2f00a9a783b6c2b5b45a2cbf", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7a92d8107a0a4b0fcf6d45f8c8ac633a2cc8c3743546d8015597043f0118d01b", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "eb54c858907e1a00f3219939186abd69d71be13675b216df2bf7804d7d2a0d94", + "regex": "." + }, + { + "hash": "eced3d38d0cb0a0240e1e05ffbcdd633b5159e5b14bbcb2bd1c65eccb7d1d8b8", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuakcamsekaesm\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d8c402d960ea5470cb39550c61b5de4ac0c4e6145b4f2676e1c5154a61e0046d", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-free\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "76ed4a936f4705d7403fdbc438026e302dab3282b82cb25aa274d80b370b998d", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "68f522efc3db13897bdc63034b5dcce175c387592558ceff6a86ceb2cb0c367c", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "999eeedd88cf3747a000f5c383605924a8af729a246bf962fed0b826ca42d69c", + "regex": "(?i)^https?\\:\\/\\/eqahqarehjzn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "841f72618ff5ec9839859dbce0759ab3ee61a3c4585047857ebc202a267faac2", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "26892dff6add81de6400ba1fe19648a8076de0d46b7626807cf9b9677c54ea07", + "regex": "(?i)^https?\\:\\/\\/qeahbqaedg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "79c743d39d7b029e3d3cd600be02a2d860e95c00a91600c620abdb231a6967e5", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3315814057f499d5a873cfc62d132e65edc98668e08ca382c781b5f11a2927d0", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "436b45634946cc10e2f8842169e66d48959bc1beb9727e0cbadb36edca9667ae", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtukcamsekasme\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4f1eba8c2611ecc79b23d7236b498f1ff2d2b3e4169c8ef6712201442eecf80d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaskcmasem\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c14aab4d4965111b400418ac8e74be2d3f8bd5f7ead2fe124950676295e1a7b9", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d760f42f9f3bcc0b196919c1ffd727fca01935a03ea98d2180240d53cf4d4f84", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4f175015fe70bd8d3aba1123c8f16b8a10836855083edac48ad2dba15385cb3d", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e64ca09074f8d6abbd6d2d76893f1755930109df891391080627c9d698e15485", + "regex": "(?i)^https?\\:\\/\\/eqagbeqadhb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1681edd858e3ed6b81d1ef017e84d385e2e1ccc8f382c2a4b9ffa2c9ce5599a3", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfghgzsds\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cdaed37d33cd8289d91dcf6b7530e73e02a8353e79ccb4c4a81a520dbbe1ab85", + "regex": "(?i)^https?\\:\\/\\/eqagbeqadhb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a88a553061a18516b724d975e616aa68f8527d64dae45ab6a901cce3b83de24d", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d8c3940a4b5cbfa4e577650d6c823198ac3e7e70c17eb2b38f7f02d999cf7c8b", + "regex": "(?i)^https?\\:\\/\\/grinsubshelre1971\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d35dbfbbd5e4f6bbc62404ff0c7ec5a89a3459246a170937a657a59fe9d7089b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6286b46ea8a342d65c31a25d2281accf6f4b9287a804b2507284908074969249", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9647ada8d889fad68a5bd5465938a746221f25973a44b73e7e2f1557d5497d42", + "regex": "(?i)^https?\\:\\/\\/chat\\-x\\-gratuit\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d657bc46f90cceb3ff029a1d019ab30830beb784a23558f9310d9d387ce14233", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9832d9a0a9374cbeee6fa6e42c4a3bbea4660ab4edad7ead05f9df3a09d0b469", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d478c3a66b3928749f61914256184549d4760cd3786a6483e392087495089a1a", + "regex": "(?i)^https?\\:\\/\\/qarhbqaredhf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b10b2714310ea8d990430fc9ee247870b8b3043ed1560201398a03d782bd4b85", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b69b6378755fd847738142a285fee4ee1849236202b4251b1f64ac5e7500a316", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a9be2b7bc9e93c86e030ffa4b615980e419b615e42be9fc5ece5f107c99d7f59", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0916bd97e84a9208f8c3be26f9b182915cbb4211a0e090e6573eb2e54889d1cd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "506461f4c657013c2cb79af2ee24bf48834a666bd35511679fe7681189313595", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfghgzsds\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5c9094090be81fae86fc65f305e86977486c5a80f83edcfdd43e14c19847bd9b", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "431e3495c29d83542611da8e73570cbad73199c998833f7cf1a39c6335004d80", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a46537f896542cc2e304bf0e32c31a10e855293c116bec12082f233d67b22998", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "31ab3210bb67387ad4e6c356ee76fd3cb5e6f947349987bea85b1def11307483", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-free\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1212740e5253e1a700378e0b770387047b05a81ab6b3016c0a9c18ee7ca38d4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?5ddKMtsiAp$" + }, + { + "hash": "a0b972a7b9aeebd5bfb4bb2f2fbab90fd4724f4ce1d358f796cb1017737f317c", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfghgzsds\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "efe668033c336fae00c0d012e6e3ac88ba98bb3c1be7832d5a73ffc7bbb47f82", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bef2b594e9da36084acb60862dadb8d7dddd19d877ab6e561d7059222ec25e5d", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8405d4b78f46a408903dbd2a35f157b36993bdcfc3fd1f142d132964e06e4976", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a169ceb14a2935ae5de0511aaa2136e0a05a26398f69a91547490c8625e00e33", + "regex": "(?i)^https?\\:\\/\\/glicanfumo1980\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "90d14b4da5ccdb8598ef6b96472f4c68479342351f859cf2ff2d587479736f5b", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "82d5d8b2bd36d62497915d99d5f405fb9cf5693b6eeab2e78e54537c53f9c6c1", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmstdfuakscamsaksem\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "28b7bebc74aacc00e29d0ccac178952faa46e8886ab3fafa530c168b2b0e116f", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "625d83f718fabbb13c3a774fd2ad3ab637cd4d82decaa11a697926845b4220ad", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtukcamsekasme\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "04cbc21d334f67fbf4e1bd3e9027eae715c383042d6ddcf00843c71ee166ebf4", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "21c509e769b42e2eca4c04050e0fa38ae7a1f0cd235da3424ce5bfe00679bbb6", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8da63443e3087f792fc5c9a931174c390db790f0c2005cfdefd097ceec603083", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "dad5a2b4c02c445595915ac6e7e7f0d9cf5e7d33349fbeaae37a50ae82806673", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4222b754d4c9270abeadb4ee5ab71c5552e11173107e14086492e007b109707c", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "920629c45f33deb30a747d927630113d1ef4288a763bdc76e9f975651bfa32eb", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cf245a5abc077f9bab19b686739f1ab6ac50e57329cc08571d7e04950378c6a9", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuakcamsekaesm\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "aede69d03cc66574f2c2ecc915a27973792fd7afb5183e99940cd1cbe20a34e9", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5fea325b7a31f41b3126ecd06ed1b7c6d4a0fad4ab8b88d459becdd788a59c2e", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "626f2ec894e8b1810e03565f59b07d343ab8a6df2119bc773b1c01bef7bedcdd", + "regex": "(?i)^https?\\:\\/\\/chat\\-18\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b013d3666e718134f78c700c09ea481f3508fff1ed802e7735fd4c2f8b097c10", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuahaskcasmemas\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bb59f8dcf9a6224774489369786ad03a5f80826f117eadf851f23720b45c99d8", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a239706fe94ce0433c2f84f349f51cc044fd12cc3f53f4ce4d216b158513fc00", + "regex": "(?i)^https?\\:\\/\\/eqahqarehjzn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "baaba17b54f79f9ab492a97cf56e9a345bd9d997a4d7a150c0cf25dd91d69677", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a8d0577db3f481d8e2835dfaa8f652111ba2a19a2a7bd0bbf0ef5c891a6165e3", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f18bd76d79fe48129d7d5d3c61fa08f3fb18a131f2df1a5bec8125e83f3b9572", + "regex": "." + }, + { + "hash": "660f947b431f7ce5822f504332b75c6d4fbe99415a7ef90c1ff387f3b1a605b4", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuakcamsekaesm\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "723fcb375adbf5f580e4e3ac7b2804dcde40651f084b178322ce082dc703e91c", + "regex": "(?i)^https?\\:\\/\\/hbqadhqa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c045129cab0c189b3cc5a578c6d44e7dd13f88d7520bcfebbd412565d94b8f1f", + "regex": "(?i)^https?\\:\\/\\/eqahqarehjzn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9fc07951f4cbe3326b349b0b3225345ed5e7ba056552aca48f8b08c550e9b89f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9a5fcf79c1ef8cbc34f3759a8a04187fd11239f053cca1d1e08549e0de85a1bf", + "regex": "(?i)^https?\\:\\/\\/xcam\\-sans\\-mail\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a5831a7777d50df48db827838077a9cca6d1f7019e30450d9bc52c1157b7df5c", + "regex": "(?i)^https?\\:\\/\\/hbqadhqa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "19e30fdfdbafbffe44cb6632e293d6a866c65df3f53f392928590bd23096479a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "30413218d7b2ae7c98ae246bc1c2fefb8be08d37bc22481d8dbad89bac184b88", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d1ef9af66a72fd9dbd6444ac3cf2f43e0d80e8fedb146c1b31459e957c59d045", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyuakscamsckasme\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f5ce5e2c371598a437ee6c429b0e5db77708b81e0ba51aa993d051a959e4d002", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b162bf2ca54504c008196cfdd3cfe17151a39abb52ae804a14bc0530a2864f7f", + "regex": "." + }, + { + "hash": "c1288cf402bbcdc4cb07caa9f308e5e878b639d0a5a9ee2350392566f904e5db", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "53b29f635424ae1c85bb56d99623e54e1f5596c8f4faaa2998558386f8e7a983", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuakcamsekaesm\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9e7d42133cbf85b13fdfc251ca42e36518c8df1dadc787d7b6868ea49a9d6de3", + "regex": "(?i)^https?\\:\\/\\/severropub1976\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "275a2282605a20349fbf99d90b9f7a2172b247e8f604f85aa86180cab5c32aad", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1b320c64f74a7adb0cf23c551157bbf0afc8433f96aec6568250ffbd6b451641", + "regex": "(?i)^https?\\:\\/\\/brunette\\-cam\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3994519d1ac58d3bc48968b53d564522c84b7bf385158cdb80b1caf714e33d8b", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "86dd577c789ba669f437637ce815a96a6d52d5f263cdbf04e98e59d970d19d2b", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "29993d444cab1afbfe77f11c760044a260fd70d7b59f55f2a0831ff022229f3a", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fab919c52fb3a268d59bcf2514a3d2aea60f26d24790ca74af151c6b8f97e798", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgfgggfd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6dd2ca415942f2bf7dfb868f9a1a6e69488c2c37ae8735f0b903dfb2d821c69d", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a1a9775ab1c01e581a5b11be716f11c6ddae02ab6e5c692b4161f41db552694f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99969716013ec8170aa947ae197298ecba11832d99dadab0fd2866cd12e8bdf7", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-free\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d7f1a0ce61916c4cba05bb54a0b3d9f73c8aba147d0fc6a586e1e4d7a7fca320", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "628ca2f843b55a0f5d2fedbc7206eaec9e7c564352c67447befeb2922074a827", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1d4d91e5f85a44169766cc59d7ef8c3428e550749cd14a297052265741e6d03e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9462f0226f837e1d2a464d76088f7aa9e266d17f261db13be69eee8ebfd109e0", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "640b924a708c3b1d99f94b9024ad50f04c6c7fa97baa6aafef626b0989484fd6", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "33cf756ef6a3f5686c79a9f76911636a6006f1fae668ba87877e0a03afa547ae", + "regex": "(?i)^https?\\:\\/\\/qaerdhgbqah\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1b7b9063868ad8c3d2b64296f78df4e2a53f8afa2070df94048da5f0bbb5f64b", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bbbbf6c3bed002315bb325488aa4b9a784d77e6e7fc9775a2648703fa1cf73a3", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e4f26681579436115dd1f316c9a1e9bbeacf82c82b07ebbbd70bfa33ed4c714a", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f0d4d1d13fe2a3a12c647ce7594529bd8a4f878b2b5337b68928900464e6cb66", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "af549f1380b41e3c68ebfdc7f5c85fe00989a26fd2956543e81dc0b669a96f67", + "regex": "." + }, + { + "hash": "cc2102fc44bdce0a099711b2b0cd113d0ec7f9daf1d912f5b9b7204799a43b28", + "regex": "(?i)^https?\\:\\/\\/www\\.robinhoood\\.com\\.165\\-154\\-236\\-158\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "26b4a56497e22f9a7a8ecd55f9ec2c35911a6a9b6645dc34a2888014dfed8f23", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0739d8a4f6493099119a84c3c345971b53513857c005c300e12a6d26ef4b0f8d", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "089488a908dd595a979b643a04f36a05e066485f192fa5b782515e7995642825", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cba38d4d2a8da35512af38b922f0615dcf57dc3e92374df0fd26fd28086f7010", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ed9254ed34293524618b3be37ae27f18ea228c1efcdfab662c641d9413026346", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c726b3ac64429d85cdc3eb1b1991367ee32dcc36283a2fafb020e496b1bfb4b6", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "77db8f02484a3b139e9966b126a8c6c0e5ff04d5f7bb2331abaed0bd76be097b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-msn\\-porno\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7f051fabdf150d573e0a0aee023dc7cb9064a70abba43d20b8e30bb6b1c87aea", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcvsmdtuakcamsekm\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0b2736b2b413d03b7867eb6a1148a93d2cfe2380aff95ca1984a7218245f6cde", + "regex": "(?i)^https?\\:\\/\\/qeahbqaedg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9b62d06ebfe4d52a8d0457b6a4960d69709f376b5a804c62fb67388b95be1d2d", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ef3992bb09b79073a7644e4c8241719f3ba240f51d7649604bd3e0ab348107a4", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8728961a549c2544105b99592dbee017946bc9e4182f90ad7f0a76c8eade8958", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "61537138924beaa3f7432c0a6dea6dcee10fdf1d4cf7c18b6a53d8c17d42c59e", + "regex": "." + }, + { + "hash": "55fa62efa12572979a2dff38778f8113c5c9151a5da5761ca270c3584301fd7e", + "regex": "(?i)^https?\\:\\/\\/eqagbeqadhb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2463cef0dc6880430c1b885bcf8182cb366faf0431ca33847fd333c1b83bf5c7", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ad78520704e2433b3aa5f6056f6affe957a0523cd4d3f7c71344a3332d0a36a6", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8bee331e7bf77ce79cf58066b573b1c83d84fbe0c1272a5a0a0a5a66ca04af3e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuahcsaksemaesm\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a445b51a4cfdb2866231db686ec4a9ada69c7250415d174253c736a235be32e8", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "acdb9635271cb8c3017be29dbcb57f0a56c25d9a104ef4a79c60de3c98348227", + "regex": "(?i)^https?\\:\\/\\/eqahqarehjzn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0bc1c5defc90c902c5b13c1417c103211e5b664e24e667f9ddb4cae35e6e98b8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyuakscamsckasme\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f2871fc180ab25b5d96845c42f85fe1d18bdb0e9a3bd824c80f827cab82507b6", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cbad00c847922ab53ad04033907dfc24ac86be8cc1496ef3048d3beff7405c4c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f6171da98d568d7e7fae053e31c9a2249a7115f99b25d4c430db13f3312b6fe4", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b9a8012803901beaa52be980a00bd4eed3c62985fa6fed802648a0f6e578e01", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "37a78f8749d57af90aeeedff9685fac54c0a6d234382c5589af92b6dd3ffba79", + "regex": "(?i)^https?\\:\\/\\/x\\-videos\\-cams\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a54c038dd6ce9ff7df732f5886cd1177f7f5f355ef64592b828884ce1426e4ba", + "regex": "(?i)^https?\\:\\/\\/chat\\-x\\-gratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "816f692988c6114fb96e8130ff072bfbbffc8e3e1bb55aa9f4931f967c5d916e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-msn\\-porno\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "36722a136c60f172feaf30d1b9332c328174e740b13eed812c79949411836b9b", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c958accf357718020f10194b4b37acf3d635306cefc3735b23ef2b988c243365", + "regex": "(?i)^https?\\:\\/\\/etztpiaqsp\\.com\\%E2\\%88\\%95miixxqdz\\%E2\\%88\\%95vmmzz\\%E2\\%88\\%95czhlgbdifa\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=lhbuirplb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1617d6fa99a05529f4a7751c1a45d4f994c7c4a949b19136c06d031092048a4e", + "regex": "(?i)^https?\\:\\/\\/qeahbqaedg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c14834d24958c36c546cf4c2de5a87ba297f553c45616381be64386c93df48f5", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "876cba06c61a85b59a75db20a53c6a568cd5699802c95ce7f0e7e5d834516dae", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "94ebd8f258c1b00711a7c5d5640a47240f9050b033de68591e7a128b5ae0d092", + "regex": "(?i)^https?\\:\\/\\/xcam\\-sans\\-mail\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "07f9761fa9c0a1daafb8c67d16c96fb9dae368956d925e55bb560d3bff37cac5", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "dd69c3926a3236954282b3d65935b621cdda3cb39110e8dc1945eb7b083f7c74", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3c04be53a6b096931a438f2a6f17e25fbca655a13eef2ab24c3cc9f15dfc367f", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dc890ced36895b0c389bf742b6a387742df8c1b84b3923fb7872d45e26b1dcab", + "regex": "(?i)^https?\\:\\/\\/severropub1976\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "93a516771fb79d15be09fa99632ae00d2748b5e910ffebb0c457e6bce061479e", + "regex": "(?i)^https?\\:\\/\\/eqahqarehjzn\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fc56836d6e869d4ca635dbed28db97a48e0b7ddb836a1de35a3e902f93b8b8e4", + "regex": "(?i)^https?\\:\\/\\/webcam\\-msn\\-porno\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7924b4130ca343295276249e0eb356e05f9edac04e2a88d165edf4e098f436f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index03\\.php(?:\\?|$)" + }, + { + "hash": "d7e92baca30a4a46a3a9361fbe9236627e9201f7c8b4521aa876127aed0cec95", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "acb578764512374f35b3fea61f71fa4bd67dc822922839c8545e8c99ec406d41", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutyaslcaskcamsm\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bd88bec47a14ab8e831efdb7d407f4985e2c1c2c12f6755e5f5886bf4422f651", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3170dec73561f50eda1a9bc58726be97e7e40070bfb2f63ae6dd9cb7e4cb8577", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4363c8d8fd9f7669a9b0b6938a6171e8905396f261cf1c384c648b4d9d3ea6bf", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-free\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4f55bbe444d2a5dacf78d1f2aab800e44acee084b2d80e8a041bb2db9f9490f9", + "regex": "(?i)^https?\\:\\/\\/caepalgksdfyksalcaskdmasemase\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "20c977a118f732a37a0d98b9e682f3cf993578637a6867e7e08bbd2cf0744951", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0da78670e2a0b1d9f0256cb6120bc098898cf3cc294e4cd915dfdd11e4d2bf11", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9a731c2a4a33de1407b845e91060f74b13c8ee8f93489a267ae3eef5d45af9d7", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuakcamsekaesm\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "12826d5047a41c025fda07724ff85b313b86d90b9e5d841c3fb5a41daf1dc487", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcvsmdtuakcamsekm\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0daccd8b8b807c66386e84e77ff9d479708f1612322218f5dfb1fcd034154332", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuasdhaksemaes\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "406a24d72354238f7aa6d9f38b0bb7f4cfbbcf8b759f5b06917e330d8f4f7804", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9b44a04be33074910b35c2de4b451c864d724f6db28dd04e013961880aa499dc", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "68f5ef241c60735f3acc9bb91df0084fdbaab2531c716e6f46ab8541c4e90e20", + "regex": "(?i)^https?\\:\\/\\/caepalgksdfyksalcaskdmasemase\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "15271275f6b2790a80dde8e458a14972748e1cdef753f24c9725ae52d92ae77b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyuakscamsckasme\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "858a2cd8196b1e19345f9a02dd626177a0d9369c10e05156066617f7e1f86c17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pel\\.smak(?:\\?|$)" + }, + { + "hash": "ac21bdd72b40446237efdea1454b4eae605c6d2683ec04d237cc8bf468029583", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "02d2a3e74a3840b1847b2700d8cdc73ee2cea78d97007ce484f0f3ce52ce32ac", + "regex": "(?i)^https?\\:\\/\\/reiprojforbo1981\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e193abd32b1e6ba7c55610b48220a1539971f5847e609669c0a111f39bad902f", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfghgzsds\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "53bf4be926d436b50ee1eda4cc7353b2f9d10faef2dfa533b232fcbff9d0e4c2", + "regex": "(?i)^https?\\:\\/\\/qarhbqaredhf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6220755ee016014cb65a94b03e5f4132e70bfbc33f1743e85b98bda98ad54621", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f269611978d879d6facd69483979a6629c24838d81db890d2d2e080a9cb327a3", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-free\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "10ea403ef749698baec2c6d9d28e81b84a16cc7bf23762f973d5588615805423", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4502025d14765dda138218dec03927642c655d1781e9e64e284a9336916371d5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "22c26fffc338ca009efa172040537f8ecde1688e0206520cb55eafb91f914f8e", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b0629ffad705430cddd83cda22382c89ae6eda36432378569e562a7bef89b54a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "bc4638688e28e153d4ef48fff2d95eedb0bbe8992c1bcac0160bae27899145f1", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "19acfac8843022b1ad5ec9e7bd912137c663c34ecc61e09a5982cdd4f90f1063", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuasdhaksemaes\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c003d9c031e0b90d82110c80149f9187e067891a035d63c3a5e1e00dde04b686", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmstdfuakscamsaksem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "50a8517009e6248f32ae71ca568516869ce56c8b7e980e1ae8d6d5a976dbebc1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dd9b1710b1cf64a06af002c6109f9ba0b950dcbf5e4bbaea02600762b8c7bb6f", + "regex": "(?i)^https?\\:\\/\\/butterball\\.com\\%E2\\%88\\%95dwehkgzn\\%E2\\%88\\%95kfxkituu\\%E2\\%88\\%95uzurd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pickup\\.co\\.jp" + }, + { + "hash": "305f6335556f4e8bd410e4d4f131a4df804122c59bd67a03920d3748c20f1456", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "84291042c111d7343e297b2ed46ef4a259ea70fbcf3200506eed770423861d75", + "regex": "(?i)^https?\\:\\/\\/marbtiwanters1972\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d699a2162a9d47fe1dacefe19c1ba8782c48909db8d69ed25195ca4cb7afbc39", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-cam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "060adc37120fed95e8532b019065da52d01cec1484f5de899d23edd7404faab8", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3ea62c5a0ff07d689414bedcc95affbbdf5dc67bc8d60a216312ec375b657261", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-cam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "43f7f8020e1f0668772e752a6c9568d34ce2387e32908b6f5608a1cdaa804c78", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuahcsaksemaesm\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "841f6dc406256dab8a147a6c5c62c735470ba876c39b59f8b357fd9880e8913b", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9a42070f719297ba459a38be6b34ca645d9c30fbd8a82028f8a94ac2634de5d0", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgfgggfd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c4558935d9b4124f00ea061f926c82f85ad2b2f38c9455fc9226855eaefaa4f9", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b83514e0ebc4a6af611697d12e8282855c8ac79afa990a142cf422bd28fef924", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f11c2be5f5fa26772952703ce1bd2670c18d58497cc1f7f8318d18218694a5f9", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7153d189156e95252096ae6e62f6ee76e6eb993ee855f2579bc15c726fba7521", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-cam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "02559ad454caa818ff41b700901607d90b65b774283fa56c923e50d31a0ebdcc", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "62e1b692bf836fcb3de362e846638401ac278ba6cb2f2ab3a6bde3cc32580c53", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fbb19a4a38b33242c0ba6072aaf88390676e74a330ea69129d6f8e9f8180a2f8", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7c525cae20f14718c2bc50e5a88167f4ca7c5d9a8d197b79f4342aa8a13cf235", + "regex": "(?i)^https?\\:\\/\\/marbtiwanters1972\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c8f4b8db1a25f343bc0ab633ab5e01b3bc228d706095c474c17f94686b298573", + "regex": "(?i)^https?\\:\\/\\/rszqgqag\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1e60aaf5503ce018bb0064b30498507df2eb2ff86ef355a5473f58cdad97a2b4", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d963b9efaf3916e172f12baeb5a32294f42f95da44f1c3b389527415c8a5cdf6", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "23a353e39ed988e0b74c2fc02201118b3b24523bf5ac55f96d87c37feeb52f8d", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "32df058445738b2aa93045526afd671cadc239970084f02492596ad1ff39526b", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4ca1da649b1ea9fc81d950b757bbdbf325f0e3f0b78ae12c801e8433ba058b99", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9136c51499712407ba20e25da37944d76ecf9db006abdd1b2d26b4d34ad6799f", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0895836a7be1348744f5a9af7d3a16715696a59df50055fcc8c9bc4b8c5a15ba", + "regex": "(?i)^https?\\:\\/\\/marbtiwanters1972\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2e952ff5f7aec813933622b76931eb985bf3621cdff134a3c466cc39531966c7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmstdfuakscamsaksem\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "448b55978479bb92457363cba12c823df2b85969039a8f1f1926aef2b3a4e4a6", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9c53bcbbef66a9ded942c9f4972c3960efe4b61a48f6deec0d20066bdf1b5194", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuahcsaksemaesm\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7da8eb68de116d0b05e01e689f00f0c5ef80d3486f9e69cb3cdd0d2200f379d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9142[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "042be14b26dc11dbcc618d1c9439b276c86cd2ec1b65ff465754cea1c606d97b", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgfgggfd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d67d2174e84418367b1a8b2306fd33eb95ed4291492d44f783088eb3ed3ba395", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "68566d01e57d5a597823301005ea5b03c24b1556b67a557c5d91be0d7475beeb", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "399ed7365cae4d06996afce9cc880c3ae2379f4c210c7787633ea65f4fff8d3f", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "829e0f1100df55ddb56b01aee88ee98bbd38ca3fea8ce19c929f7769ffb155d4", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f8d0dcb1cdeb19e9c8435c37afd98d1cecb89a311b6a6c6a856d3c2916bc0865", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d739d8e52ffb91150f7515e31126b51f65b5d1dc5b08ed6285a034b19edd9abc", + "regex": "(?i)^https?\\:\\/\\/eqagbeqadhb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "800680ac714323ed92e4ec55fd245f7b55438e4722bdbcd00f49c72cd41e510f", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3086b2e43f9158a96348c12edc6d2bb01a9c7afdbb7e1e5220406f7ad80be1f1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0089af65a1609ccbc493146175c76cc715b0af19f61cb3a0a17576facb557950", + "regex": "(?i)^https?\\:\\/\\/vqnlbohxg\\.com\\%E2\\%88\\%95phrhzurfjq\\%E2\\%88\\%95tsqlwxrr\\%E2\\%88\\%95stnuwnixj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=mnybfpdbx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a5402874540df584c380799c573ad70e2a0f76eb5792db712d1a3a8ded18cb52", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "146c18d037a7309c90d760b695937a43c01c773c45a7896d3896f0f6ab838843", + "regex": "(?i)^https?\\:\\/\\/glicanfumo1980\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c5588b243fd151b5f443e8fbdef28cfc069e2dd8fcf8d1771e7d65b04869618a", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f9a3495b00fda82c7a82618422b43799eda0cd42c7bf24da3969d268d0afef12", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a659412d2fe29b7c03f245ca1757b9d2f3076f01db2ccd5d42280fbd047a4d9d", + "regex": "(?i)^https?\\:\\/\\/caepalgksdfyksalcaskdmasemase\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "85f7c6313afec6651e3879ddd58a17e17adb3fad25e760aedb9a48311c0a1162", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "abdd4367695b605a46581b155513a06511b234d16cba808eebc6c283a9a794eb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuahcsaksemaesm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "612ca894041e38566a8d061da0c5da1bd6ebc98607a33326174fcfe277f3c459", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaskcmasem\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a1989d171b47d71a2007384beb153329084769949c017940e1cfa0b8275b22e3", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d2bd4ce56fde839910151774ed30452e81a7cfca95b21d4b4fb8c9f28e340f92", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1d972773d1978e95d0db90a73c304e93966a51968b32403f95a3182d6dabe46e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "32898d31fc61bedecc1be6da51a4367a154eaac9f793db273ba4210d540cad0e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ff6414822ea6e4bd20d43c991bc5b6ab4141608f570227ae5d580a9da8d8868d", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f841018e1d05d9954e3617b5dc41807b95ba5f7b4f69fe50fa1c89e0f56f3b48", + "regex": "(?i)^https?\\:\\/\\/hizahpova1977\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "dbcec8474be6999757b04e151ced231a071d81c6e05447b1e6f1cf8fe5d736c5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmstdfuakscamsaksem\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d35f073914b903de8d70999cb3efdb868b17105f5ec0f8549ff213c27f184ea5", + "regex": "(?i)^https?\\:\\/\\/chat\\-18\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "626806beb83caa0c7cc2465ea705c99390a5b4f65cf6063f41e7fe9630d98a7b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaskcmasem\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7c4e3dbec680e758d13e22dbab1bf7250aa6de576b88c6f58c6fe9fe4cc40b22", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c6d40a32d721280a68ab7d0d9cdea3308c2d36048c7924015d3e6fa312cb2a26", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "45d60d496b64fe5686bf477f41a1232c9a001f0862fe47ac20b10f9a0ecd0846", + "regex": "(?i)^https?\\:\\/\\/grinsubshelre1971\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "76184eacec9d8f20a6e71bf87335d969328180f7266161ad17bb032a126c67ec", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c77e5d217c0f364dd17293a1a795d15f4836d28b7894e88f4822456097c67974", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuasdhaksemaes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1f218b131cc3581ee00db0bd23d4dcc96baa1b2c4d86e6e4f5f172c73ba0ed40", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d22d6841d5d00a0bc131b3b41e098ab704d611e25fa63a42fdae6235dbb3cd7c", + "regex": "(?i)^https?\\:\\/\\/eqahqarehjzn\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ee3cf1bd219e766195483989fe2586b55914ee45651bc36054c25c873e7f8455", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyuakscamsckasme\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a124e7a62cc99f13431baa25f346f7b643dcd1a381b5984386cb148e2a326b7e", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "147134681c71988caeb51f2ca3c393f4b2f651c9b426c969c5e1ec033d7a42dc", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "14cda110a4c46b692ed425d52145f294892c05fe3df4007d406dee6697020dcd", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8c4510ded299c3a6435095065ffae1d655bcc02433baae5f9977d9a46f545c34", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3fe41d0bdb0f8af6a841e3d286bcdd0d57a54ac0e87f9db840dec2929d7010a2", + "regex": "(?i)^https?\\:\\/\\/glicanfumo1980\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e387eb822f61003d28b9a12f62df05bbbdcaacad460323aafc3f25302c784676", + "regex": "(?i)^https?\\:\\/\\/qaerdhgbqah\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7e515d8b48069407a8257ad36db6296ab013fc99144da41526973f6be2c220ff", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-cam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "894ab28b05acf909bd99aee0de1ab31c8fa02ddd4cf68e9657202ef5a9e622b0", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6010a468ea1de735176eddf22db2418cd109e4f17d0685e870d51b05e9723a55", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f2cc65c10d3f9174d75b5cd22dcc7696a820fd2d1f84c565d4bcadf4dce75", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8484fd77a5e80dbb599c535538970e14e3c417400c71aca260bee15ea146b217", + "regex": "(?i)^https?\\:\\/\\/asefsgsg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4cb80f7425fbb30d9dd65ba44950782b93b3e5cf949476de88b95ca152ce2b4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuasdhaksemaes\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c8ca11812a62088ecf506bfc3d036ebe96ae1fab12439729e7da056439df6852", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfghgzsds\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "782343a62a821feb4a3f7e8c1fba22032e0bf46c98ca4d30259d0baddb498603", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6567cbbf23cc2325e3bafdd12595ccd457d889e6190a8229829833b5acc3853c", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bca9e0bb49036d9a7f7b36f99f8889502c6dec34b80ea046ce550902b99b4849", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "20495730408973cf0c5d9d24407f3e202d99975291903c29a1f2b461be93931d", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7e2a9c8bcf6d871534f678d8df4dadb3abc7089051ee9602738c680419454871", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4c7e07f8e416b4857b8c64f809fda15b9b29b8be7e68e0905314696a80d5c446", + "regex": "(?i)^https?\\:\\/\\/fgjhghjuykyukuioletrw\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a730ad5902e7d37a7e7a3b03d19a2d0105ebd14a4cffdd35bc47548f97d9b08a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oyMDI0MDkyNS4\\=wIKXMDSoASAFQAw3D3D(?:\\?|$)" + }, + { + "hash": "e818084932cddc09f968ea1993eaf97b4ea88ca52de39ed3d0979c9f2913e567", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "164faa74280e4543f97234cda2627914d06c355fc2dc3bed2b76af825011cb3a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuakcamscaksemase\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "67f21f13a888e14baf0d584852e6233b28bd83b51fd58f142434d9c1a2cb6852", + "regex": "(?i)^https?\\:\\/\\/pcasrakvcmsdtgaschaksemasease\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e55f7044a07a568461abb0a7e0c0740bcbc37da2e9919c9abb44e886d6a75b4d", + "regex": "(?i)^https?\\:\\/\\/qeahbqaedg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d0d63e60ce8d7c683c53283961d5bbbdd8940dc5ddca9958a5ac9ac4441ed6d4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaskcmasem\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8ebdfb0cf943d4c62ecca9ae72b0336a21e9eda4e1cc71748725029775379551", + "regex": "." + }, + { + "hash": "ba7bede2ad5491f6da4cbf145fff27de5458aac79e5bdde5bc3671f4ba23acbe", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "74efee94a9046a64c77c24924332c85f6f3a08de49a1eaa4ee66a4fc19828700", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-free\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6f6e0decc4021c88d8d8961e4b900ac9a0f646805274a9cce23dad89741aa7b3", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuakcamscaksemase\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5a358f5cad7b7012baceeba01f9232131cea07fec2020524e84d9c39065a40c7", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e810e3aa7a33c1af1ad2e29784ff322f04c0da95d15987fff33e1f8d988dfe78", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6b94a9e9fa2232d7807ff54f7af25693d898db58972b0b6fca6462e4633798aa", + "regex": "(?i)^https?\\:\\/\\/soibourviagen1971\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "817f35b9f1d8119ac03fde684517a7313aec4d709c9decf093c6d041ac2dd556", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfghgzsds\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f2678aba9e728d97a9f29e2fdf9d45b132024f545eca714aeedbb141c55e9e4d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a0faf524406a8f56a09010679f98336bfcc0e4bfa6edc5643d256a7dea48f94f", + "regex": "(?i)^https?\\:\\/\\/eqagbeqadhb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cb3fb63e2c044312fbb42f68890ca0fd93d3859824cb675e1cbcbe8a98a8ec2c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "360f1ee7f95d5ecd20d59c216329e2633659461e231118992f484ef25e84741b", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5669bd475f9008ade515036457ac406a449f953744617e5022331af0f393fdde", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "762b5b823a0439bb393cd409d27e945b77747bd7568ea9779d3a1d5b3480a911", + "regex": "(?i)^https?\\:\\/\\/grinsubshelre1971\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "92ff5579776b2d3c8d0cf0de6705e1520670c05c0198d4f4fe35f42144e17f44", + "regex": "(?i)^https?\\:\\/\\/firma118\\.samsun\\.kavak\\.rehbersitesi\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3334b53d3f8f95a32290f62d28532f421e48922db05b331f192b51f89e0c1ea1", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaschasemaes\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dd5fe6d20a49d455dfb5b5282bd4fe7bfbd7b81a6f2db1f10fec0def80ae8b39", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4dc32e6d02a0b62507d65f877280841b733b2670fcce04071df26a86def079f3", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "03df7c72f498ca8db8d4f7b716662b00b8a9f8385e21e32d9a1568116a935814", + "regex": "(?i)^https?\\:\\/\\/hizahpova1977\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c133f84b93d93f2cc00cbed3afc219d4c55924383553351cd25d7d7c8dbbc25d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtukcamsekasme\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6d9eff1fca4f6c574d1ccb1d20159c668894964f86e2d067380a8e1fd23eaa46", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d3c082c73df4cacc3500fa56b7d5621296919febbdc97464fe6d93228867d2f2", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1a1c3ac6315f5a3004765d37e50b17295cdbb0ce8ee71f2565c566002830cce0", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuahcsaksemaesm\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "72596cd06bfe8ae5b5cebdcf1dce2d93237690e389a7dc655f4282473a5d3d17", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "40ab511bdc1647f1c81ddf7f7dc383244027dffd276b85c407ee5f445c325797", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c913826b147f1b4e79d45c781f415cf0a50ce0da818e0483703d2a50fcd75470", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fb66812430bff62fa203ad4f098f10fc32079902e8eb814b26f55320b66dff8c", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgfgggfd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3228adc92ec6ed1e8c442fbec08077366e0dc5cf91df0efd56b13d3573c3eb51", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7637c27354651e69db942e00b6901770c6178b21fc325cbf9759a868d4a4d57f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c5583e6c08627e5243b2ad6348975327c2384e58cf3d7d3657de73ed548ca7e3", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7049b355bf4921b4f9359c42ddae2b2a9f3401e00cc4e3cc844415db1b145175", + "regex": "(?i)^https?\\:\\/\\/brunette\\-cam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0d1e679ca19df1b5b7db2ec72fa2107ceb8592443b9d363f34099e2b0bec602c", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0b0c94731b2de6751c06b48a512372171cdd80396c4cb0355e8e33f12770d6c9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "46ce9289e764521f809fad67fa01cbeac5e5356c6ed43e9d7a35e2f15f8d9dc7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "051b483443b66c43b3f09a05d8ded7e6fd5bf4c3b087c634988dcb223552ea09", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e9afba50d0d52ada4e162f17891d08b44447d08b3860936e3c21d3cbb670d1a1", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "21d9861490e2c35680df93d81794c46ae309f2915ee8eedf4aaa15a6a2819d28", + "regex": "(?i)^https?\\:\\/\\/qaerdhgbqah\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bf0ca84122319beceedf75888ff25851c4862ab2829ba4b7ef59d7e8453b5234", + "regex": "(?i)^https?\\:\\/\\/chat\\-x\\-gratuit\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3382b20756a8fb155cce0416089db8fb9a112f470086e545723470f1a45eb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuasdhaksemaes\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bbd42e6291e24c6a3900a54234bd6c9158dca089a03ae9f179d5cdbcea8b9f58", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahqa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0461780dd8a5f53f42fa451ef6c3e4e103e145a4a58c163ad479594c03972872", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "08956278239de353648d64e472cafdf5b178476e43a1c70ab9829e2ea2843d06", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d0c89c2231637851b25b24736dcc15e288624fdb76812922b67fb3af977106f7", + "regex": "(?i)^https?\\:\\/\\/qaeheqadg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bb9980cbfd661d5f339ff178e22561096d666aa07254a035e83057f3bc8c1273", + "regex": "(?i)^https?\\:\\/\\/glicanfumo1980\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6472804f96229ed1aa0738a14970711e06d65ba550c9b9a3a7c34b51a677da8e", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a22668e09cf0045f1f3c1e5497db9bd42bd30454b6c5abcf648c0523d9f42ace", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuakcamsekaesm\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ec8f3ae39563b539cab9a92458e48abad454bc0d93ac376260f5b5dab1f68f69", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5b303f61a4e4bc631d2b1813d85b530c3817ca3d7b52b9ae1b6969dc69984d05", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "77baed31fc6484fec7c2cd207506e5fe7d183379df1621716c9b2095906c0933", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c478c0e7efc2861d5d591e23c582a26e3b9297238223ca5617a034bc46fe8ef2", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2fe866bb0b9afa977bbcbd8f3af661f396cbd7eae2b3edcb64bee39ec0705899", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0e6af36bc5db65ff673a4162ea65a239b1f736b372ee74ae92ee55ef0658b247", + "regex": "(?i)^https?\\:\\/\\/xxx\\-cam\\-live\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "923aebe0fba7c853ca3a8e25ff43314795248433943381a978dee187de728a40", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9dec9c75d2173a2577b2aa7241fad79b9bc442fc68f9f7dae973d03d3f10edf7", + "regex": "." + }, + { + "hash": "cceba4e2488de9a3512466c3dcd2cadef95fab9c8bff6c388585e07e536e87a3", + "regex": "(?i)^https?\\:\\/\\/chat\\-18\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d2c73b79d2d9b2e6ffa0598f709a88b29207e311bc362f525320fb1b505aea13", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5fa2090a6e409c9ac3e0545894b8b8c2d6de9103d4aa0c2ee1e550aa3e8e1c65", + "regex": "(?i)^https?\\:\\/\\/marloukichea1982\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cc57b26f70a576747d3fb1f23c2540e9e9ff0d0a8d4d738470d265941e312688", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "ccbf2af20c2210c4380879f6cb5e9558230cc47df9782dc2c5c8fc7e4fdba557", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f9b044a8d0006ad2b3637449facece4a1fa733c7cd628f1f0cd4c6100e4005d6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1cf8a8a0b1c9aab16580532270a99c93e10dec980108e8a0ab2e767fd1ce1825", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d9a02244c12fec0679b2979e0be0c608bfa5497e694d60191424083261f6d797", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "43e483bc2ff269d30fad1c74c8346ca1ffccc7a46f6d009114dfdc412f5d342a", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a3c244571b1794e9a57fba180f8e45a82d6ae7b4dda72178dd2fec808bc40c74", + "regex": "(?i)^https?\\:\\/\\/b88877\\.com\\:8365(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ee404a9507bb93ed120ec883cd586f88ac6e19a148157e1956bedea897fa43bd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuasdhaksemaes\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5d3b199ad97027cc354dde3bcf18eea3db9646e179414ea2a78bff4b3cab7cf7", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bb5f705a28b0bbd3d5ff7a325867fc76ba6c028661d54db9e48d6a38ac2838d3", + "regex": "(?i)^https?\\:\\/\\/caepalgksdfyksalcaskdmasemase\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e771a7a7df210508014d3aa7cfece5cc7de14d8869a623d866827d609aad3d17", + "regex": "(?i)^https?\\:\\/\\/qaeheqadg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "22859ef91d8dda77777902a397e6b40ffbd5d8bf73e01d8ddc5cefe147fbd8de", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmstdfuakscamsaksem\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "837aa2c99aab550983bd8eee37cf9016f25b6a33e9761539fe9f7246f0374338", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d0c5ab3c10153cf4aae6ffd37c90a16adc0f89fe64e9be7e4597233c6047343f", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7954ec598cc86aa532d44031601af60773ab11c240ff1da69a4b234872b41111", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a7b270e06cec19227ca5b7d93062648ec4f34ebe0a3ed83de07761d9180f6829", + "regex": "(?i)^https?\\:\\/\\/hizahpova1977\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "be9a721383741be89b2f74b68c25d081bab0cd95a311f087031a4721ea9c074f", + "regex": "(?i)^https?\\:\\/\\/xcam\\-sans\\-mail\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "16e5ec55fb17da01806a0301321a582c465650c66792ddd650f1ac1c998bbde0", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d476c1f06993ff3a88dae22f9f362890c7dd84607b5f59ec9fb0d1417cc27055", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5e554b13fa31bceaa1116e9cf3bfd7fc5b30135f7b5a52321c61a9a21fb40c24", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutyaslcaskcamsm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b4da732d631c03b9ce246f64f70616404ecf57bad69707e7cd1483d00b0d1c85", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "030d733c7d76996c9fa40807e72fe805006eb60e64b3f6bb2fc72e6d2bed6463", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "418ab7df677ea930efed2178b6d3d1d92d5099d8f2f58261370d0de268f37cac", + "regex": "(?i)^https?\\:\\/\\/fghgfhfghfghgzsds\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7d1bf71c5d96d8b5eb0b775c92457474fcceee529c66675105dd33f0c94f197a", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c0a99c5f714e9c6c7c01ad19713d33c5d18d576a34e09930c85dabe6b096aea0", + "regex": "(?i)^https?\\:\\/\\/pcasrakvcmsdtgaschaksemasease\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ceebecd90121b790d5c68e3072ac2a82f62332edb23908d16bdc41a135de857e", + "regex": "(?i)^https?\\:\\/\\/chat\\-18\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ebd6c3224364273102577ebd2aa2a7946329832525ef44c60f2f417d91fc19a0", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "061b80693607813d5c2b79ab5f3bf7bcd762576b3e9e66ca2a68c7d8718c3c6c", + "regex": "(?i)^https?\\:\\/\\/hizahpova1977\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "935632e6de4a8e1243876dfa2c1fabab0eb84caf2e54299e7a4cb7038bad9cfe", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b294c8d1be70cc94007ba52a169dae15dfe4ec347e28eceff494acc7d0f5545d", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "42841e36e7dcfe06027ce756714ec5ec78d03e82d1ce9fb24c39b43375423737", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "fab9c0df173bedbd998d9f4284cfeafdffcb7d6594c3bd532a5f39a72712f07b", + "regex": "(?i)^https?\\:\\/\\/reiprojforbo1981\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fc75f517491ec9b8dff1747f5385484be881cbc2dd579d45811a96ead54796e8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuakcamscaksemase\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d71bebc81f8280b8e3050374158c0ff59289fdaffc4ce0fa02deacdffcef7574", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1bbbc3cfb1ada293a41d29a597e6efc230763602503412f90745ff8fff9f5a86", + "regex": "(?i)^https?\\:\\/\\/niukzbnn\\.com\\%E2\\%88\\%95direvd\\%E2\\%88\\%95pdkhifbs\\%E2\\%88\\%95xhols\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=twfktkn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eddb5feb86d7ddc4e4df16be36dcbddf076b381d325c91d8c9598e000959c3cd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c851871ba21d39000de85d4d26651c3dcf7212406f97c4e02c59a3786b42b525", + "regex": "(?i)^https?\\:\\/\\/firma67\\.samsun\\.kavak\\.rehbersitesi\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9fc7bc73455f1f1cb8bc7fe773cfd7e7652c1fb4d9dbec922371f6825611b861", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a7c02080fe57c7e01535c61e1b44159668832c7e77d1c6f49dbabbcd96de1ff7", + "regex": "(?i)^https?\\:\\/\\/caepalgksdfyksalcaskdmasemase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ad856075562c919f0c0e97579cadd033ea147c05f890a4209eb56b0da5aaf2e0", + "regex": "(?i)^https?\\:\\/\\/qarhbqaredhf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3f90366a7cfd4c5c1fac8da6f16ad1aa9c6844e5e2b0a911295459ef2bf2cc32", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvksdtylakcsamsemas\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9b110bad830f915ee5f6de1095b8effc598ae9cb563c7972c29f3eaf60e9bdcd", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6e70d2268cefd32f54b6de92f5c29a26ccafb21a3ac053d8656afa2e0cdfab50", + "regex": "(?i)^https?\\:\\/\\/sdwarvdyqn\\.com\\%E2\\%88\\%95bdnlbwys\\%E2\\%88\\%95rtcqg\\%E2\\%88\\%95qdwmkinbw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=owgyvsjz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "33347fb5bc465bc960b6aaccb7058a3246192d52c5d020c4159cb29ab369b638", + "regex": "(?i)^https?\\:\\/\\/hizahpova1977\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "559c564445ded8bac5c2437b1121be4c834cbb67fec838f4f84ef6a1013f7e26", + "regex": "(?i)^https?\\:\\/\\/penpiderthe1973\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fa1656c421e536348a3abeec99225291c4810046bf5b8282cf34916c769389ac", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfylasckasmcamse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b9fb30b157038175309af17319b5beefeea2f5e7ff5ed91710013ec27febf4c7", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuahaskcasmemas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bbd6a191066b531da4ac0402a51b403c32009e27370828ef7b2aa9b746eacaca", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "46674fb3887226f5a85395bb9d542838bd355bcfb669ba4dc84bdbfa7cfef886", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b82ff5c6ae94d22dad96109e04e0e78911a40729d096d646984984cbfdc4d45f", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "77c43555c57998269f5bb65a253ae08d85d3ae8d9d87f738dfee17ffbfea099e", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgfgggfd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dc3f5ea4ce18fb750509df860b6f7fc2e1b46f55118a56ce88712fdbcc2a6a6e", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3ba0ff78c19decd728a3557382dc9da2e8a667f73210767ac62344d47ce0c71c", + "regex": "(?i)^https?\\:\\/\\/chat\\-18\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c362e1c41f853005bf6a124359d436a6b22992f142cef55f82c95ecb4f684475", + "regex": "(?i)^https?\\:\\/\\/firma92\\.samsun\\.kavak\\.rehbersitesi\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "12d90239fce582652867fa95a27ecd097bafef2a2a8ba55b8436870794e87906", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "03a2e881dcc691ff1046300ec2311153cd99e5f3e6e28a36f518791e493885c6", + "regex": "(?i)^https?\\:\\/\\/ocpaselakcmsadtuahaksemaes\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "defd529fb4a5508a30dec069038a22cb5fa176ebd375f5b406a45a6d1f93d56b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuahcsaksemaesm\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c6bf71d4f4efabf6756478d6cb4ac30a055fc4788cc361d57aba2f0cfb9168b3", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c017c315e476d5decdca6bdd462d33ef6699cec5104d6dcbfc4f87b7d1f6aaa5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "2fd24f7294b534afd7172a029adc51425861c7c78486af2ed1b11f0d3b8f4dff", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5ad0b8e57dcfebb33440e8f2f2b451b8c3eea3a9563b8533a0ffd25f57cabe60", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "076610bfc7e1a9f59a8e3e91ef0998f048ca9ba0410aa8fe1b75dbc45b1f0d29", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-cam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f41bd0516a7d8bbaf4aeb95963e2ed9e0c3b954ca8c27146ebe14d0e2de69fe1", + "regex": "(?i)^https?\\:\\/\\/xcam\\-sans\\-mail\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "79cd0e28f4c883b88fa2a61989781f641f32013b318a527a36dcd0f3f503628a", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2d843898a90dd877302ff1644bf676c58645b9bd322d3b7e818770b6aca5fe47", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porn\\-tube\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "41c60e6c2ff13a8533837c5839a2b7c39477f05bd3b54869c209de9dacd68acd", + "regex": "." + }, + { + "hash": "a54dcbfe3947b9b6c87cd019748fea58eea10083e90a600331495a7dbc2c2027", + "regex": "(?i)^https?\\:\\/\\/brunette\\-cam\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0582f3cf5d31ee0e759c531edee07a925be367e5b56449459a491f9e3fcda481", + "regex": "(?i)^https?\\:\\/\\/x\\-tube\\-jeunes\\-salopes\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b1fe71c72f0038e864339a1b98a830939f80aa6be7c037e0facb74cd4274601b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cc0159de0dafd2dbaf2362b03459d86121f9858e5f55cd549083a98c6f7cac3a", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-free\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "983ebd2b0048c4afec38a103c0adcefd4fd75762b65e249c604d8a884d40a658", + "regex": "(?i)^https?\\:\\/\\/kramexincros1973\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d7c1235e84fee2ff66688c6c02929c4e3110b6d91c56f374457a0f9f2a1cb2a8", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "640e96929a5285799545c756fc3a383f1db766230b4ffd4f88cc53e682c11a9a", + "regex": "(?i)^https?\\:\\/\\/qeahbqaedg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f254ed0ad957a03f79d7ca6778e3ab4367253bd88cdb4197bd59640240a1f16e", + "regex": "." + }, + { + "hash": "56a51ee0127152620df7018977452dcf0bfb31ff670afcf9c8b43ae5034f3d0e", + "regex": "(?i)^https?\\:\\/\\/marbtiwanters1972\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "709d1ae9e51980fd501cb3bc524c13944b8ff839176d89d8debc2a0baf1caf21", + "regex": "." + }, + { + "hash": "25ff0cc45d3b82f7f03d7f6922de3a49fa8cd4c3aa9e62946ca1a94681f110eb", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "19823d1aa3abf3779c4d96aa34d6776a4d77ad2de26be6106d847f101d1bc486", + "regex": "(?i)^https?\\:\\/\\/grinsubshelre1971\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6edc03ea50f1cfd17a6874a64807c805d1455c6f951868bf9fe12f38020a03a2", + "regex": "(?i)^https?\\:\\/\\/charity2572\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4a99081ba971d3940f7807ab09a5c512ef8dc76c9bec3dc14c847fe055a58cd7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "50002149c979893dc3e5e76bf37dba3032561e8f1566864ce1f0d68d62291868", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2fea39eb6dfb654cb22180797c6ff73e9e7b7e9f438804def278d746ce2245e0", + "regex": "(?i)^https?\\:\\/\\/webcam\\-msn\\-porno\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ca4b655743499b8b845cbc5e7acfce639b8325c69336ce8f464451981fd999cc", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gay\\-gratuit\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "de507be443dfb40b583cfc2168f68e85b244c50b676e801241b0e84c8a2c37c2", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1c7ae31c3e5abfd1d07192cada1e0e695283e85c2266b0f1a81f3bd6f189bc2c", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "61e0aa10391b34d77348594a8e80ada81ad1001a0ce3b9d005dd44919169e715", + "regex": "(?i)^https?\\:\\/\\/qarhbqaredhf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c8516b412c8ddd784655c9af7d4bb5e12b474412f2b0ad4f03b8f708d5db8a6a", + "regex": "(?i)^https?\\:\\/\\/qaeheqadg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7967db0c2164c5aba8a3884cd873e78b96a5bace128a9b07ef6aa0c43d324b06", + "regex": "(?i)^https?\\:\\/\\/marbtiwanters1972\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d278c0f20622eca1f6a32d5fce2ab933dd5ba89d28de5d2957fe401985591783", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-webcam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6e780343748c85cf8e5329004f5860dc7db484264415497f0999692e8ed772b0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c455a4c321c81eeb31d5f604bbfcbd7af802251f30bc1852f46ae15886cf6c8c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasckascem\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "19a094cebc19b482bdf124d4498349260d2b6b1462efec2c3a7a1b22cce5485d", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7f501d7ea44a89fc659b933979e224b8f70084f9af1b49eacbf0e15239f65227", + "regex": "(?i)^https?\\:\\/\\/cpasoraklckvsmdtguasdkasem\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b113116c0d2ff18bcf467df95289d244ac70444dd6d001fb89d07454a3605b0d", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "da036994681522efcbc8103e697df8b6ff400a7a5760c7e0ed34f2cea75fecf3", + "regex": "(?i)^https?\\:\\/\\/xxx\\-msn\\-video\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2f44343039b96606dd544cf7df5d3827ff98ec4e0e78025d2f6c63afe95edfb0", + "regex": "(?i)^https?\\:\\/\\/ocapselavksdmtuqckasemaesm\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f6112d297572ce78b9cbc1500b4a2307f9f0f7553aa49a49e685ad84737bdf7f", + "regex": "(?i)^https?\\:\\/\\/qarhbqaredhf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d65758ab742e82a3a18deb8129068ac5b33bf71e8ddf130757b2c0d0a8c8ea58", + "regex": "(?i)^https?\\:\\/\\/pcaoselavksmdtuachakcasmeas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bc7f4dd1e7c4ee75035f265cef84a9dc7979458dafe5b1cb14a15b49f0eda904", + "regex": "(?i)^https?\\:\\/\\/keynetbumbca1989\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "56e57970899e3696aa961ebdcc6f52aac5b91501843353198bd279109437d2d1", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcvsmdtuakcamsekm\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e04ea46d8454b01f82592421fbbc0c559b5749be2455a996e1e21b92f16ec3db", + "regex": "(?i)^https?\\:\\/\\/orerrubtua1972\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a093e02849d37074d6af928154436e55df39da6e626f9be2544aee83ed327250", + "regex": "(?i)^https?\\:\\/\\/severropub1976\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e69a9e46806bc9151a9bceaf97962ebbc9dca98153aa82677ca505f3d72fed90", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "276b308927518f93ed1817feae7518069cdd5f325fc5e11ef49d652b02726fe9", + "regex": "." + }, + { + "hash": "667b71827c27ddc1dc5bbc32af2958088885726c22584548cdd14ff1464f0569", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help\\.html(?:\\?|$)" + }, + { + "hash": "77f21eeba82288caab8e9c953af047e748555bd1e4fa0ce2e05cf6b43435c012", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-amateur\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "73f95326e3876a378c20cdf0895c4f2cd7c4e42c0654ff15a6bfce4a7f9254ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mediapart1(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3fe25cb121784c4d0db0edced851b2e4f67e1aee215ae178b0e50c98f59ce662", + "regex": "(?i)^https?\\:\\/\\/glicanfumo1980\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "364249f1b3b5c6e7dd55816e3deabe22d2ecf9a1d0cad7f29040bf76ea475759", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "61e0ae16b3bb2bf770da1a0932f9bc5b3a73d422d7e40a55b68ff8c3e1848dd5", + "regex": "(?i)^https?\\:\\/\\/chat\\-x\\-gratuit\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "79eeeb4ac8bd5d499f4314f72c631767cc4e00b114c10031e5f7986fe9ce5720", + "regex": "(?i)^https?\\:\\/\\/qaerdhgbqah\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bd819bef10514b0afbd8629ef0182091acf102570f11384058fd09ecf2ff3d20", + "regex": "(?i)^https?\\:\\/\\/qeahqahwawa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b28fd43afc5e10002130b622e611e2a09b44df9fb1fbaa8a24037e88227b9cee", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "444a0f3f14ae80592c0f28858930d35c52d63788baa8ec4fb23066c76701f15d", + "regex": "(?i)^https?\\:\\/\\/severropub1976\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6dfd3da4b5f95e3bf46d57276135e34e58b0cf02def0bdea78d8bbf0973b7c78", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuakcamsekaesm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3cbc47dbf4c1f7ffef0ae8934fda4309e89ac46bd4dc7a07073f6d86487ad307", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5fb6f6c610cb55993af2da1eaa7cb7a2d386e3a476b5fa44622197d97eb2b977", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuakcamsekaesm\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "975c260c910d3228db08cfe0e06d6aee7ab80832a1cabc3ac62665eb70492396", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuakcamsekaesm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b7fb06d02fc24db421e0bd0aacc473c4b731d226f995e44b27a18fa6c83b7f26", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d71332c93e3745a7a9b98b2ac04fd4f5ebcd8581f5f182e5648bb5a3254080fc", + "regex": "(?i)^https?\\:\\/\\/opcaspeoalvsdktmasckasemamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "56fd64a434f1dd07905773bd46c93ffd3a4a2ec351e965d257bfaa01fc4916ef", + "regex": "(?i)^https?\\:\\/\\/xxx\\-chater\\-pute\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7b38162c3347649f8ad1327d36fbf7a975e08f9be29eb458b8dce492beb73679", + "regex": "." + }, + { + "hash": "8ab2511a09a0376afa6d5ff2fb2cef10cc16b0ed0dc2877daea1e03a797e149e", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2bc7f8db18afccfebf501103507b88431ab4f8c89aab60a778ce6cf618bcfc2e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakamsekasem\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "adb14cd7fa1d8b2895beafa15f5dfbcddfbc899d505d5d0b95ef76dec5098b45", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmadtuahckasemase\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6865f9f55da9a366c4e5698f7abfba30d61261016e83bfd3c0f8256417c1bb9a", + "regex": "(?i)^https?\\:\\/\\/annonce\\-coquine\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8477e563ecaf25c1b6af1ae51c6256d3be55e5378b3268338e9980799f6499ca", + "regex": "(?i)^https?\\:\\/\\/soibourviagen1971\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8c9994fa3ce4f225048870bdf167f385fb29f199d9e7a830bb3334602a308a4a", + "regex": "(?i)^https?\\:\\/\\/eghqqeahgbq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8593a888ebd65d6dee240dd7af0b48a94004c1b55fb61cd6cc0c9fe065a400c8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamcmase\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bd820095812d6a4d48756e17191781a3baa764db1e9cbdd8fddab9787e7e3d90", + "regex": "(?i)^https?\\:\\/\\/firma94\\.samsun\\.kavak\\.rehbersitesi\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2d42a17f6c5b4178538a7df06422c1971cb9bdf82991cab70eecb0a490c03fcf", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmstdfuakscamsaksem\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9c3ae0d154e255a4c3c4d3d01f87bd7e637a16952cc8d232dc9b19872e785b92", + "regex": "(?i)^https?\\:\\/\\/pcasrakvcmsdtgaschaksemasease\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d8a0db53553a6574c0ef5f42ebd77e121e1482e7ec97cbc52e5358f15bf70606", + "regex": "." + }, + { + "hash": "4dd8b947ea7f5e73639c943a5263011d19d5677ae4ac8d9d11a0907ee565f67a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakfsmdtuasdhaksemaes\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "96584a37058b3f8c5cbac183945e55ac3d9590fde609a877253ab52179f0ff3c", + "regex": "(?i)^https?\\:\\/\\/xxx\\-live\\-webcam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e022725092728daca8c1bcef864ceb31e71884a8f5a9073c0629104ae9574937", + "regex": "(?i)^https?\\:\\/\\/wijohncagna1979\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c6cb7865458b363abe157ce888b6180d8b1b7d939b7714a2362fa9847d1980b1", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksdmtuchaksemasease\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3f0aaeea3586d12f900f4f31d329055da308d3e17e2282428e0e1289b825e9e7", + "regex": "(?i)^https?\\:\\/\\/www\\.swyftxau\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "dc8b3f1dacb422b25d4fc75dcba90532992806d685b88b3cca9f543d8473b2e9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuachasckasmeams\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f9ec4c8d2a46af27085e8b1196cdd67aa77e01d36c2c9c4159f27aaef751ac06", + "regex": "(?i)^https?\\:\\/\\/qarhbqaredhf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "82b4faa93e8540a81b49d3d5346899303c937fe4d6ffebd39a1219bf3ef4e3a3", + "regex": "(?i)^https?\\:\\/\\/pcaosealvksmdguadhaskeames\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1831df8cb9bad04f06651f5ef6cc69a77e8b004371bbde031a747ca70c14e945", + "regex": "(?i)^https?\\:\\/\\/nwzkjlv\\.com\\%E2\\%88\\%95glesqiqrz\\%E2\\%88\\%95kbejvskxi\\%E2\\%88\\%95rvgfidtdm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jfcja\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30236b1bad3e698734a06f6b06f2e50137d2bfa6585fd05b625cdaeba47c98c2", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "78abbded99925b46b98100b4dce6241941f7f6eda9628376e2d00afc810a8d88", + "regex": "(?i)^https?\\:\\/\\/ljkhkjkhj79\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e482f15fec409959a06e70a488927309948e53d54c8922ca29042ae5a39d5f2f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasurahsckasmeames\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "21b82ebc52293ec34ef2b6369ea782b29dff730cb076cc8fb947c1a815fab679", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c684a2e299250f98d7990ee631561df153c504b4840cc93d54d10459918c5a1c", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7e658d44f16de130709e1f3259a4714a8be2a988068b6ccf94342afb9928c2ca", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9ccd4a117d05c5989f07eba127e431e01fefacbc2e5f7ab4a99086915edc9761", + "regex": "(?i)^https?\\:\\/\\/adeonerzcf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8fef9929f6e36e137cad61f24c59b9d3f8eb804f828106fb8efdefd476b90427", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "17c694fe8c57a2d4513d5df381f4ce42526479baf18b060e07d37f999df47d1a", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b4815feda22486a01dc8ecd0708fc54af5eafd992c5d166d83edae8971b540f4", + "regex": "(?i)^https?\\:\\/\\/cornbetmanaxtemwl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a30ad5a049fc4426ae55603b9b3f7d6e71981f20702d310bee1e9b7710dd19bd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduthackasmdames\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "df62a779e085f8ea77d070a031d7e5f2c65c92d8f96338f4f0e9f8e5cc351ffc", + "regex": "." + }, + { + "hash": "6b875f36edacd670d117f0b78ce4c53563a70aaa129a8903a24930fd7773f461", + "regex": "(?i)^https?\\:\\/\\/opidorancgnrrw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4cb06cea69eeae1e0ec7724bca5abf461e13464fda223c3186c3026c68848b9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+policy\\-community\\-standard\\.html(?:\\?|$)" + }, + { + "hash": "315c5faf07e3b699302f50a3c5951048696de04858a0b1cc489fc9f6020255db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP7951[\\/\\\\]+CA[\\/\\\\]+3426(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a4acfcbf2d0fb09ca31d11045358acf78120a5688eb258345060d1fd8f1b1915", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduthackasmdames\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "95a9cc13eb18b539eb691c5f2f3d5774593c1b31751cbdb8f1aa2d85c529d058", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "17ca75fb3d6c36bc4644c8bf113f10bbed54fc769bdc35828737ee35024780d7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6422cf56ffdf3c0f31b7b43ba808c993d84c8b528e97b73aaf0cfde1d7c49c02", + "regex": "(?i)^https?\\:\\/\\/dasdasdasdsa12sa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bb9c3f67efbc1532f33689a8e89396bebc53919a213bab3a506987a226d9b7a8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "32ae18d87ca55a0bc37c3540b044d580903ce4d12d219f6111750cb039447a69", + "regex": "(?i)^https?\\:\\/\\/zajile0\\-727\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "67f29b2a49196e5e5cd866eb66570e86629630ac1f5604bd901cf3ebe595fec5", + "regex": "(?i)^https?\\:\\/\\/bafymcalientewxl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cf8d0f4bb2ceaccb347cfb7a816363a1c56b59954d8dfbb75c399d78712951e5", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c5e119a087987e6b09d206bc9d5237390734533174124e5311e854d91ebcd4e9", + "regex": "(?i)^https?\\:\\/\\/bravespiritnpw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "eaf77441610960e9647bd4f40567fc467bc3f8662fd41e5517829285a4908351", + "regex": "." + }, + { + "hash": "8d471276ad8a4348b1dfe4994adeecdfbfe9a95b079beb9fd189303250a0b7d3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d652aba24da97a68b5dd92a4bcd5f4d21c85e42a95011e845e9991797eefc6d1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahscaksccmasem\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a3fca6330335cf017bc4c608633fcb8e98c7d0b719de755bf6eecc75215691f5", + "regex": "(?i)^https?\\:\\/\\/pcaosealcksdmtguaxkasemmase\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d1f863c8df012b53b58b74f00ae26d3840fc6f8dd23e7e169d0445bb96303ced", + "regex": "(?i)^https?\\:\\/\\/shakazilkreewcd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3b2c42a42a2a9a8d46e403db292a6295bf72058235af97fc648b6b43ae711a6e", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cddb6eb954afb82e1487527ea3e75ef75bd137d7756a8c3a690321773031479a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2a4871c4602ebc55db3021c63fe157de52d5bb9c21b35cb8d3642738dd5587b8", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkalsckascmasmedas\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5c42a955cec8119c8e860a0f40ce360d645c63af77f59f43deaa1c134bdebc94", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuashcakcamsem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "acce8caf3cbb2eff0335f8a1194226837955e727023bc2e1f068c6eb7bedcbd7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7f86f5e321be623d20622d0f05cebc12b2e0e2d5d659d26be7d97db6a1d15815", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "33bb9a2b0156f66c696cd706911180aa1d836ac3cf381661fd3971dc249bc957", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e7d77209c01643bfd0a74427a320c139108ce00db7b747d00cc94a3a5792b8a5", + "regex": "(?i)^https?\\:\\/\\/mrkatstayfunnysubr\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8c2106f034288d2a1d5fb635a90d5bfdde2393d5c6cdc82eddf76ba5e0c0197f", + "regex": "(?i)^https?\\:\\/\\/rahimriglahbb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3e83984d77d478c4282fba1cf8ac64cc0da806ad1d5bdf8f3dd274ca9c30cd31", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsktalsckascmamesas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "997c206df7728504eabb48252e5fbefc361148e2e614fc521c1b25ca2e494a78", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a78ea7d1a01bb6c028a057230cef9c34442bafb8ff2ada883d341ca380fe890e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakcmaskeasm\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f26c25d141b5c8ff31b53d1716efc3efce641d4e6d932b0af6a75c4f9b488f5a", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a08399da367575af9bec70c3e29c5d07e14331955a42bb6bcdcd3bc4ee237327", + "regex": "(?i)^https?\\:\\/\\/lydbhfa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "054c93ca87ca76807829b57d8b71b1490faeabcc6268cb53daba7fd773ed6418", + "regex": "(?i)^https?\\:\\/\\/ljkhkjkhj79\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f81cae09a1f5859c8e28bec763ec10d09cff13b2f5a12455195db53b4e24807f", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "edbc96343b80178037914067e4cd8c017c69999f356f98e7ccda050420be1c69", + "regex": "(?i)^https?\\:\\/\\/tailerodyxee\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "26798485cc8ee29a2b2c9d4732cfe59645e82c528366c56cef7607560096944d", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2b31829ca6c11d95b28ca1a9ca00acfe2c883ab8397bdc8a3b9a24a6210175f2", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7eb285c16a8a575e5004e81894a2b196290fc7bf89f4a7444a8b69cf1a6b01f3", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0556d96176fbcca10de2ddb7bf6c1256494875d61191489f7477754387467328", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-porno\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "962f5161b55ba481b3dd4ed22ce836a12a6594978ce2ec96380a5eb0cbc929b0", + "regex": "(?i)^https?\\:\\/\\/dasd83233\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fe17bfdc5ddc0a4015af6b136be6d8e067a52a6ae3f36a3e9e411cd9b51fd370", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "05563a299e3346797230bf2e0ebbacf24c19cd74cfbc8dc3ec332791c5c87678", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-porno\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "60d9ef1c7a2c320d22e481abab67a5fd69e3647873c9703bdbd76f66a870da27", + "regex": "(?i)^https?\\:\\/\\/animatyirf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a284d56b785ed34add8ed07210ee0abd1ecef073f9de89d70bbe20ade22a28b5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtkacvas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "59219af9bdb45959fad63a6e4f5f38aefbfe7f1ae54b7b371865bf336a8a4396", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsdfykalsckasme\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "13eb4b09d854dc32976b4d556a195c04a99d918ad410fe7a43bafd359e01146f", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "636a4c3d12370e6eaaa1b15d4441b163cb074668ae622c880758d61c48ebffbf", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9d938a9d2bf3371ed696284f0ab09b7c1d2b43bedf7cc512306bfcfb346dbdcd", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c834356f3f70d7b6a48de7bb9e44b6a6dc69155b750743a9c24cf30bdbdfe08a", + "regex": "(?i)^https?\\:\\/\\/gfhhfghnbv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1473172ebf877ecfe8ea11321f2c0721a663b525440f8610499212caa8e93dff", + "regex": "(?i)^https?\\:\\/\\/bravespiritnpw\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "122905ebf21e8baa2ea4e0b2beed02d1208ba3113754fde52e154e31644bd6db", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "aabc1085357c678f2d218df574147fef3aad2787e0b55d89311aed6eea73cd87", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4f6e43975f134a32e1ae5698046b70a1c7b3921a551c1089bb8398aa220a3b0c", + "regex": "(?i)^https?\\:\\/\\/dasdasdasdsa12sa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bae4ba0ccb04c164be0070d10ab4b236424377bcde6c94beecbd1c7cf980cbbe", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0d3c7d8ba3c467cf50662a2bf6710f095fff761b1c54c737531a3b0412ab11df", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ea25a0528671256dc78a8067520499cc13fadb424f672c67eeae9b4c4fe4d30f", + "regex": "." + }, + { + "hash": "17dbedad4d9333182f97b6e052a67fe4cf98c0bee3fc6fd0a34c4baa6ecb98b2", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-camera\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "80a8dc4c1c997b734b7074db4b386880e1572d4bf338c20e715b0a500d15a552", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcsmasmea\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f2549ec3af9b50567e7946f0f1c200be0428d7b0f69ee37211eeaf04f3332708", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-x\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "49171faa32b5a54e2f7a8e5b872d6979607144bb1b3006bd27e1a6c66af6ab5b", + "regex": "(?i)^https?\\:\\/\\/zajile0\\-727\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2e80ca336e38a7fd825a181cca3cfab118597afedb2e5303b6873f25058d1367", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7df45511fe121aeebc3a20354c31d71050652cd25c90f43d1a4d5262e4888b45", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "53d98a5716269e65691ab0cf00c3de347fb595a79aff2412d29a5c229414ddec", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmackamsed\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "dade0bd404e9c13ca552febdb59e7fa6a40552d90875d792332afb7e5d296da5", + "regex": "." + }, + { + "hash": "ae530e2c6d148eee477bf63c38cb76f0a356918474833c1b27bdd20dd0ecc052", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9029cca487e4209214c6475c58b308d7bdd184f3b1d24dda1403d55910310513", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmackamsed\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7df43108b18ac87ce5664faa7cad18e27b7eeee3398d010339f880325b3522b0", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ab8e5c2e862385325ce0bf80115ab3dd1b99414168ebd3ba281ec3f41f78c0ce", + "regex": "(?i)^https?\\:\\/\\/pcaosealcksdmtguaxkasemmase\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "98364743c3cf03f714560815971deb675d6fdd616d7a896f44004800ec2f9bbc", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f4a18a19427b9f8aa461ead658a1a00935936c7b8c81e2df6f689b0613a9e893", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "28bff48d5ae8cfccb19310c5b14778593dc90e9a7ef56da5b18c1ebe0219dd2b", + "regex": "." + }, + { + "hash": "da3ab0b0da6a704e5942399ec1d13b0941a8fe9cfe67e252089bbf2aeae21af8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5adfde99a3c6d19344a532b7dcca90456bc282efe180ec7f71d034929dcd94ca", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4c2510604cadee3e453e8df6c339e364f1ad0f6679363d7e2797eca2b9b0dbcb", + "regex": "(?i)^https?\\:\\/\\/parnishabvbolts\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c0048062fdb9ebbb3fa71ae37056a73c52cbb8b02e45c52b857eb68b6fe4cb7c", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-x\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8bf102692814f98795e82f857dd9ea238facf75772018d067db95d4f5ffcf382", + "regex": "(?i)^https?\\:\\/\\/zkiiika10010\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fd652d67cb5100562a69d014b219e14fed658d972f5680af3941bec010d29233", + "regex": "(?i)^https?\\:\\/\\/shakazilkreewcd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "852e4fc6eb3e7c51cc339898e7bb71c9164f28ab3f6afa97dfef84a44a4750f6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahscaksccmasem\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a540d5477d3a69cb090d96f1b6ba85f6e5282f61d0308a33963deea07feca663", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "83c45b5bc044e4951d110afbbb127b690409dc93f367f7bb40020249d29b6aaf", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a6cc11bde8c60b1c4988f4b094845be4e3fb0db28b841a995a9fc4b64acf65d6", + "regex": "(?i)^https?\\:\\/\\/zkika100\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "01468d3645c549fb0945176e66cb664f7449b4d43119b10421b354347882098d", + "regex": "." + }, + { + "hash": "54b0cf79295127d5e6470de661e2b2feb997df993bdc86f67a6969195e9e8e4f", + "regex": "(?i)^https?\\:\\/\\/zajile0\\-727\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "80e534b301744310ff8580d333109183dd727410d3a86cbb1a000c3d53e2f4d3", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "02801ead8029f6139bd6e74dedbe32163f5e635e62ad574350cdd631648c0533", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "514f648d3bd249857ec066d85338e56a6a77a609510fdcfc690f13f720afa13f", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7e96ef3e104fa34a48774d3ac662ee5e705187d98068775ed2ea996a23d94e9b", + "regex": "." + }, + { + "hash": "fa9a27937f444d2e9a0c2f18c0c2dfec20869236f072ffd8a0793c57434efdc9", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "dd214dff7a0cc1381d2b864cf8e89c3850c3a928054573248d2b0eb3cb2408d9", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsdfykalsckasme\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3dc56bd102322859a920df8ccebdc3d0d7e2e2025117525b5627d0d1d09335e1", + "regex": "(?i)^https?\\:\\/\\/dasd83233\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5fa2187c06aae27fdbb50f31a0106ccd6213468c976cfc9ea92c2d9676d675f8", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f956e406c2a79052a536a182b1f38d7b2983f77333fe8e3a3b1bd666717e69f3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkalsckascmasmedas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e36a5b79a63d7ca2ddec32e6aad69ff75fa625d56fef3d8978fb7362ae11eb83", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e5b7d1c96c1a27eae7f96a1a5750a12391b8a262fa6086de76107a3e70a7dd8d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d98d4103deb4b7f8e8e7b33364dc9f6dadc71ba93dc452241b4102d7ad3c44a1", + "regex": "(?i)^https?\\:\\/\\/adeonerzcf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "35beb0342cae9c0b04d556bad0b13b01c61533c7149284efe192e62f56a2ccbe", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsdfykalsckasme\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3c03770913e7986a3af840d51359a9cdbce399ae42ba7619e28e4fe602fa90f5", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "92dfbb7b87cdbebfb389340b434098c0ce7f963f21d7fa9e02acb63fd9d542ac", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a7b20e71bb69413d041df71455ff09a7aaa803143d5652552daaaea781a5f3a8", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a093c62f537065f14f7c7f38908a96bda78299640a110bc9e50a74995835070c", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cedb935b3ee25f79806bed14fe77b3fdeb7af7e3d2a3790b7318f9da20f76238", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "68a30f46de350328afbacfd6aabc80c11410830b2e48df5144015e4c39d094b4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "96a441d8226d5d23c90950803d7b54d4f37bb547436f815bcd15f9e9325b5693", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7fd8ef02ce09c32fc57bf7bd845200e739fcef5ff57180b52f7a74075f22ecd8", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b4a2352999792ca6d6f1a8b55a0d79ad11c06302735a9cbbd901fbddb3810889", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3e74cbdad3449ff278b095bfbbb5d2fe9cf4f1adb02318daa9170c0d2e43a594", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0d7b594bd985a6eadb2bda7e8beeabfea8738ede910a52dc4ffacbbae306e383", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "deff65cdd8718005fc8e2e88fe7add466b2d220dd47be48c2e86cf6269ff5542", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d29a7d481cb898598aebefa17cab25e7bfdf8bbde627e8ed2696758dea080506", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasurahsckasmeames\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9093260f53de07a9a10a0306b2f6b8a7e137ee7dea7792c71c287d7d3657dde9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsamdtuahcaksemaesm\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4f6e6e3b89b38a644937a8428076900ffea5dc4d1d5889336db6e7ed7502b52f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuashcakcamsem\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d5443e59dcd00ed9adeb6693ec03011fbb2bf3f1a94a9c3f7888f2dd683cec9e", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "291d50babae3071c23306834f47556eb933f5a117e17602812dfc709fd5cdd1c", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsduthasckascmamse\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6a6d37bf3c9fb716af037368789526e04d3c95f7b38409beb8dfe6ef3a514d2a", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "12863d402574f060afbf2d67972bd4c966ea5d65159516517706c903d70d972f", + "regex": "(?i)^https?\\:\\/\\/parnishabvbolts\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ba85839df6de5892051f0eefd9855da78ced7c92b13ff72e621fe2f971ccac9c", + "regex": "(?i)^https?\\:\\/\\/bafymcalientewxl\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a822c20970dcdc8bf6b5fdbba047bbe72decb6d43943ef3236fbd33f8755f434", + "regex": "." + }, + { + "hash": "ebc560e33af7650bf1a7091dd47b4aa013714bce9a7bcd09ff7470791e3c526d", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d15b09bff3c7ef7afd2f08e5742c30b3588581d6fa9b657b95fd59ffe4407427", + "regex": "(?i)^https?\\:\\/\\/video121312\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3e454a350e468c1a16303a9aef81e33a24af6b6ceca962b7c8e28b6d5a79dc21", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ee52dbd38c2e12de8c1860a5e0417051e6c93bf23d8b5dffff187c6686d25ac4", + "regex": "(?i)^https?\\:\\/\\/tailerodyxee\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f590982a69f82ed96b493b0828bbd4d41d07f02d57e5fc2eaf8c590d65a083ef", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "60f4a529e1901e21fff8870bbbf7a2511f05c123a09f70b144f1128055374552", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ad1c2832bf0689371ae197fcaaf8339adda8ab7661ef14e02a1922bd34838f2a", + "regex": "(?i)^https?\\:\\/\\/animatyirf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "57c3307c851fc0c0f873d8003447f44b648a11d7511c27d9abe6a045a13247ad", + "regex": "(?i)^https?\\:\\/\\/cornbetmanaxtemwl\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "778961ee5e9ceee68e1134bd3a85d63d4394ff4fbcbaf449c15960ca13d6743b", + "regex": "(?i)^https?\\:\\/\\/zajile0\\-727\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "36429bad67044b8b9d9d4dc214e86279687959207b5c0f0961f1d853f4a4f39c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "680e63509522c5e8e3d37959186d2c0d16cce97184d467311de465ce515dbdae", + "regex": "." + }, + { + "hash": "d67d143ef5d77c0f9597ea7978db74c42505b7ec3c20987be54f9ebc22082f59", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porn\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "82a8a0d73297118be378519f8979001a2cf11061bb0236162bbb2be442d2641e", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsduthasckascmamse\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "315a363ec34d408393447ddb7f33e34c43e08de67e15d2b8e006e4a0f1bbaab9", + "regex": "(?i)^https?\\:\\/\\/opidorancgnrrw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0ef1f0fd87b6c1be8b9d5be51e3ff0a493d3fa72f979dea56e666821936d0456", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5aecbf29f1e4002c754f81d2f0738311f39b3143aedb91fe797e7239763c9aa9", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "57595c81a21da56f8783139d16a17ce2de81fa97446be997fa2b66ed82b37eb1", + "regex": "(?i)^https?\\:\\/\\/parnishabvbolts\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "02b624f57a7538b03fde11f542d78f87ab788777d07f19623e2e7ffce7aaf21e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtkacvas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6b7aefe5f2fe9fa37f17e3822ef49ef5b8932a563538cc8e1410aa699edac2ca", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c53e5113a81242e28b086eda840a0d173ad0190f624a8531f0df443f9e28606d", + "regex": "(?i)^https?\\:\\/\\/mexewutesxe\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "12ae292b0198e07c63d344e86977fe32e043e62dd34264e6f1d6de09633af07e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "347e99976e68b0018afd419f65bd12a869d0ff2c044d71ddd21b336cb7a879c1", + "regex": "." + }, + { + "hash": "16690743d61cebe67a71f372d8b994c586000290ccc524af5f4f2cba2c5b7957", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fdd34cd3ee3d348c34beff7d8a899b25d6a3ae03272e814c461b243e43e38580", + "regex": "(?i)^https?\\:\\/\\/zkika100\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "180d5f36333e6b99d93bfe5eb91a9d6c09b525e77680d5b8148c2140de617332", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2a344b5f757583e93e5c73057dff51b6aa6794a9d909251151ea9385576495b9", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d178ca5a87be785aed96c3e337a3553319962145c56e7910d100317eb21224bc", + "regex": "." + }, + { + "hash": "8bb3ce2a77920e01db2f267d96542b3e0e6030c32c5eb1f61a3673e806d0a995", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9f69005b27878191cd58c96fc920ded43033157214637274d0e1f002638c5a4a", + "regex": "(?i)^https?\\:\\/\\/bravespiritnpw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "82f03a455edf2e88f2939f1bf4c902d3e515e42dcb65c73d95abcdc526b84d5f", + "regex": "(?i)^https?\\:\\/\\/warpathloweprqwt\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fbb15d729652a7cb17f852e1fecfbfbe5e444a43d4addb6adba615715c650e2e", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6ce6686e64113f9e225b31bc794fc0b480d05b0ad428e41b5b362e85023ea413", + "regex": "(?i)^https?\\:\\/\\/dronprancingdmb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "191192d6ae61a8b2712eb192a90bd008e8136d78b41e50f95fe2d7936178acbf", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "62428c7f74653fb6b6907eb8637de40bb02d494ff790f866dcdc6add37b00e09", + "regex": "(?i)^https?\\:\\/\\/animatyirf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d88d21f7a906abc7f6ae7ea2c7ecd857290e0d3eb0cabc10412200aa7a1162f9", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "da725c7376d1da7db529eac94ca24749355828630a9bb246ec60c2c37100411b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakcmaskeasm\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cab99629cdf9b786cf30f9b943137f92a76eab0b4958d487a5a14300a20cdf2f", + "regex": "." + }, + { + "hash": "4c3aad29368e93df157d4b6a335c86a281d8af0d485b7537c5bbd7d9dcee3008", + "regex": "(?i)^https?\\:\\/\\/update\\-outlookoffice\\.us\\-ord\\-1\\.linodeobjects\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "26b21bb72c93cb58b309c16dbfb96211cc277b0ef89cc1692425efe97aa0e45d", + "regex": "(?i)^https?\\:\\/\\/cornbetmanaxtemwl\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2317a9972eac80a18d1dd676c4486f13a67d7c119bd742831a6d046e9f5baa64", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "03df9bc69c60f69906778f273be560545e60309b878f7b0e9eee5ea33bca217a", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "caca79ac214420e06659688534c306113a0dc9e8dbead97b95a1a9bccb33dda1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5f68ae4b8a51291ba861e598584b406c75971da307ae3b469b7cd2742c647ce5", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "730192186f482bb8d599fe94424537099f03d31f372871f109c097f00abc31c4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fbc10c70a7d1d0eea56e1ba3a8899bfc9ada98075057541f56ed9659e7daad29", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d0e08803347883bf382bc37bc9238f5caecc98f7dca2e3f302d42571d27c0f20", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "98840e385824432cb481aed706023ca3f1b4f7ed22a52ca084ea7093d397e4e7", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e7c0b3ec02395ef3f449399a77edc9c83f59b920c5b493dc3e1ac4f0065a3ca5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d7e07053a1e744cc953fc5950c480ebbbed0bcdcfea6528c2a0f4a7474ba85ae", + "regex": "." + }, + { + "hash": "7301072ceff8dfa159d409fa87c93ee019b6637c71a38f8e8c01d39db8e8e3ba", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e8e2dc6b1950bccb0459bc54865d4e67a4b48311bda4589bb7d2a011033eb87e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "da8557cb4f27e04ee7a16d30e39196fd15788ea476b92bab02eddd9099027e27", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f09165763299f431a0d72107e8839d3c9f0a56b1bbcb0774494c69f538b46d3f", + "regex": "(?i)^https?\\:\\/\\/lydbhfa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ee2f4883890ff5839ff429276b299c2434f09b719d8b17492d6d6a09c29a85db", + "regex": "(?i)^https?\\:\\/\\/opidorancgnrrw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "df707b2e2dba3f90f1ea98430a4a8bc2cf90522b1b7bac934305d54716265dfb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdsfkyalsckascmase\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "546d0a6180bd105c1bccbcea9a0aabb278143d28ed153f381ac0ad567532133c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "92c1d8ef33520f4805eb3d415e338121b69f5fc1086348c17aba47195be53ffa", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakcmaskeasm\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4762dab79b47360b78acc5da24af9071682a2dba4dce9b3a3a76dd5523b49fbc", + "regex": "(?i)^https?\\:\\/\\/dronprancingdmb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9eb5cc385a3c266e0dc4d90380d8f1bcb133cfe131dbc984f297e0d7f4935443", + "regex": "." + }, + { + "hash": "c2ce9edc978647ef1140d9ebdb4b4512bcc107b2b7a8733f9af8776431ecf44d", + "regex": "(?i)^https?\\:\\/\\/gsksc\\.com\\%E2\\%88\\%95qfmsfa\\%E2\\%88\\%95wglvfta\\%E2\\%88\\%95fcbvyehpd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=lskrcrkzys\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6a4d0b82e170a1af81216a3e822b3e0a4b5af27cec5d44dcbbfea15e0e896c95", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c841c5bda866f66dc0737dca105f7cd9f7d658476631cae61199cbf93e0ba9f7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduthackasmdames\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4176caca57d5ed46a2a0dd0793911abefcb65c224288746642e3a4abc30e72a1", + "regex": "(?i)^https?\\:\\/\\/ljkhkjkhj79\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6821d8362a79406d9d6c801e4669b9cf96128bfa0b7f3a2c7d67350f323b86df", + "regex": "(?i)^https?\\:\\/\\/shakazilkreewcd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "721f6bd223596474b03e264db3a61ea43cfb0ee4a5b2e38a17038c14b49ddec5", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "84665673468fc5e089f8244a818578a5dd63b20adfc75db034767ada818338c2", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "214e97f5bcdb6363e4dbfa8609191d89e29bc6ab8818e8cd62586451a909c457", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "09a5266c8e6682aa7b7b4680a393ee0fe1cf3377676582668e55fc6df4cb3b44", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a82e28ac43e4654f524c151560f612ecae1d34be1e3f242ac2baa2e7965d34d9", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1b0b33fffe064adbb89028dfcef493de56c02252fd1b6a82e5adb12362598a07", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkalsckascmasmedas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b4db4fd1aadde4119611599cd49b03f85c8420a89fcfe10ab26bdaf563c9a323", + "regex": "(?i)^https?\\:\\/\\/video121312\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "45c8a08c567691573ed85bede0cf4280fe11f72deb397f701a8db6e57e565455", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdsfkyalsckascmase\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "99e688489bdbb3fea8002b460661e2e17306d0ff4b0af5d7e3c309816fca864c", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ca5808d0c690f5b2e95f8b16796023be886e1590edcf9c26d5ecafc01894b75d", + "regex": "(?i)^https?\\:\\/\\/dronprancingdmb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "793ed98a5d9134c6b43d0058e462f65ab4440e61f7300486d67c859f3352a5b3", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9808aa5c4c22f7e5bd532a84c1f6389a5b859ee386e84df23ba9d0b9a01fcf5a", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "15948abc2f8bab3852cd370afbbd0bbcc4b021c9548cdb6c79767556265c3a53", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3e15bc3ceb6b4bab81be483f3a62a800e83984132c31cc4f4f001d6d43e82a2c", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9c1cfc6b0c246123c7078995ae4416f12a377c075469c0d305837a1c79717eb8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "db3f97b7241e7f2c406539f0b6a70753138e2487ed549af19b8a6737cccf9741", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "616ee3f1e5a7eaa3897e19978dfcff8bb395c8530af540c6c18db5aabfa6228c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtkacvas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "00f94a158d2ddc7d0830cf043d8e4eb9af35924b893b48143586d85f73dc8e0d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "93d7bdff8d528e2325e52d6077db10ddc35da4b147b6767f15d594e485c64cae", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkalsckascmasmedas\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "616e32927c44e5d7e4dd1c626a740f3c7ea8a7591619fc6b267812793f76eafc", + "regex": "(?i)^https?\\:\\/\\/porn\\-sur\\-webcam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e721487f0390cc34a212649d796644043cbb92044bf4aee060ec95258247369b", + "regex": "(?i)^https?\\:\\/\\/zkika02822\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "85850fa08736e16e5bba2341c4cfc05acf7aa56457f5731b329120d5ee845794", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "adfdd63212db718a241912b3a13f11b9bd6d326fa78792ca808a04c78fa65d3d", + "regex": "(?i)^https?\\:\\/\\/zajile0\\-727\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e46e906a299fbf3fe91823f471ebd73a8e321d12a6dbef002afd3a0a553b91ce", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "28962eaca2842774fd40c54af4acde91e54dad16b8be261f331814d4ea32f384", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasckascmaseas\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3a6a9c2c211b6a6b8709ecfd47442f620cf7766ff4f4897f5993fc367cb498e1", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "315c5faf07e3b699302f50a3c5951048696de04858a0b1cc489fc9f6020255db", + "regex": "." + }, + { + "hash": "15cf54682f8366c66f636699366a5faab482104ffbf1505abace4a9b157c24b2", + "regex": "(?i)^https?\\:\\/\\/mrkatstayfunnysubr\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e824e12642311367fc6d144ace671556872551fddb5999c55ecd2f5d5cae7248", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "00fd21ad1669f31d4d7e3a8d5bdee010f5b09d39566fdbef77e6635ffb2b1b6f", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c919e0eec358d5553ed9fe11a2cea40992e4a3019ce3ccf865c0cb7e5b4be6e6", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "18479b05871ef0189a0fc76e708c6dae6b97c26182f4aefa5fe788b77ac48b3e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsktalsckascmamesas\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b77ae1202132acfe0f79ffb627f41dfd632630d4c60967a392cad4f0719b4a4d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduthackasmdames\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5b6d23a23d21c997fd3ef5a0197aa5152fd24727c2053a2e98666f1be420c3bb", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a03df5e974745b54bb7077bf79c3ba2ef669e45267b0e79354b374c1cb6a7f88", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "09a7a2a10bf1c4a845c362f0d68b3b94449b28ed985c5dbf46a009d3238a45b2", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3f7fca40b3f17efabd6d9c60a0ac5660869e3669236d0b43fa10626a5ba2887b", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-camera\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "268594c180faca7d77de8c5b91b596a0132fe212f945e47c88a97e50b65e6817", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "dd01b265565e25e9674a53092f6bcc6aefaf697a8285b09c4ca58fcac78fd8ba", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ed5129e2af2aa71f7de62beec6ccfd3906a3f38ad2cdbbb9f8081913ae6f4ee5", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsdfykalsckasme\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b6a85c0d6cfb59d7a3cdbb82c04a33bc5e1962d3baf8ba61878cf8ce68139b71", + "regex": "(?i)^https?\\:\\/\\/x\\-wecam\\-live\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ceebb67d77574e201e7900094bb73f09fa22e099aa50532f32c35e49e3b4f29c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamsckasmase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d278677a993bb969afb9f974d83f55d011b0060cd77e0c55581aa5ac3a2fb9ee", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2a8db4a52f38f52fd1a7f5dbe43657d7db2b9136bf7895adde43ae60a0ce1dd2", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6406ecc89cafecda75550982ca31bd308749a1f4ea4dc0a790bdf8cb3c3c08d3", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "adebd3d75fd0a02b4c563024fc412f1c8b5ec96229898a3e7c87fd603390fbed", + "regex": "." + }, + { + "hash": "008653491b86ea6ba97b6175245c815f3f11c60033c03477b603abbe34252cea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0e6a5cf385e26e140b128362b5d69f9265488213ac729516622290641dba975c", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "83df22e17e38cf9307bbfeb126b639c51b9ee2b95227bdf772b379ae1090a0a0", + "regex": "(?i)^https?\\:\\/\\/robuxcardscos\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cafdb82afac9149f41b651b4c35bf1b889e975c4a80516443348c24d37435cdf", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "807d87737dab7332cf44cd5c746c0f6fad961778d15430ef76791002424d93b3", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-porno\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a7c0a30b0e36a6bab36faa39e528fd0ed9e0957f5b66b471249b5b6450197591", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsdfykalsckasme\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f3eb6e50cf42f79998d88fe7cb78436c59d1eb7cfb5325a32205b75b5cbab775", + "regex": "(?i)^https?\\:\\/\\/dasdasdasdsa12sa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "31c4c63d0ee59b4898350b0dbaf7d66cdf8e108380164dc4d371f16e98d616bf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuashcakcamsem\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "40186a8f20c0a6e6479cbc6e82d41e3c77ec419a24984a1eaa18c35159a7ddfe", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduthackasmdames\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "347f740b66939bbf22257b521e94e6721b0bc54775d5cffea92eb9da9e0b7355", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d70adbcdca5c6f5f80f007cf38c8e13af68603588cec442ad6bda045608ef3d9", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "911fb0f8e1edd4b9f044d9bc0192c86798ce35cd28a46451746a74a42654d799", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "67f2d279d7c22b1e452a7203e27c74f26aa9340d2e95f0ebf45c0ff31f106304", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduthackasmdames\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6c0047d3314d0e6005334e46667b7093328f6e04c2a3b50c2213d863d206ff2a", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ec9fbcfaa86fb0f7f9c8adda717c6775e31435f5bd03ba2567e76c9c0f78f03f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsktalsckascmamesas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fa2863f483ad0b1f638aab3e9b3db735d3ff1f5f87e4b70962b29576fa62df70", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2679516e8104469f9ba2a0158e4db8f5733225a1cdd70f6acaab802ac4f13604", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c3e7a15f01b65db8963db80e9df68a7842eabeaee88b79bfa2c7d42caf9ed2c6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasckascmaseas\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "64bb9fd7877ff88bd0214b46f5eb4bdaa0f38bb1821cb9f0f60a214d9e5e6c1d", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b4d5247d42d63402ae9137923b6acc26fd1b3d2157ca51c2ea09f14c6ac25700", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b7b18b001b798bc38e1e4428a6f69dd8712e58621c5f4f8dc6a1361bb55eacfc", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3e835d39b3d4acaf167b02f13d78eb93b4688d8cf90e72fde52fbade13857edf", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d344656b9826097b165c90ef344bde198c338429d7c522f78398bd0bfe6beb7f", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7b1826ff5fbdf9fcc0be09b9f838ab3a6bdc383d8a514e6b7d7d3f01495f14c2", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "87cd0f9a0b5fa3be0c3cb5a4ed52c866152594d3a1a9e03137ef363b32faab75", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7d0db65da00999ce59d7aa32e075a941a62b21732bb953a828c23624e3399969", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "70ec8605f1a6269ac9de2f1e0d35afb04e17d626ac5081983e4fdfb5b77be63f", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ae01cd202fc1b8558f094a2cb34f6bc7314d8439e389ae93b209cc29fe325cbf", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c73ebfa7208863b24dabad136c5d7985cbfe6c84318dbee4221fb64cb7a07d43", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "14b230bcdcb1829b27a3f282eba3ed6fef07bd177e2786056d48dfef013d9742", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "014b25acbeffa7601f62634db60ee89521b7eeeb1a6f6492152f4bcd376f1076", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "71b62240e6c21948b7067d6a9904d9716a33d7c80bbf8548826a31ab39cda8c8", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0d15edf317206dfdd09e65d274cac9a206b2294395b9ba1e7d14415649397201", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkalsckascmasmedas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ab48fad1effd11f64b1f1c87f06f6086b7406d19a04dd2a7fc2c8e37e18d6d52", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsktalsckascmamesas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "05dab9cb04a41dd934684fa6de43770f014c3e0d1c524d339f28f1b338258373", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4a1bffdc97740fcab28780178e4d10ff56e1c3641350f7bca8fcaa7e31c4035d", + "regex": "(?i)^https?\\:\\/\\/rahimriglahbb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3bbd0824fc1ea9fa6a5edb975568b7055e1b982d6bff392b3003acf37b811f39", + "regex": "(?i)^https?\\:\\/\\/luminorenafvnp\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a4ce523a64f9584a37140c57148915670453368102424edf7f0f59471d4c99ff", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c8ada97c683d5764236842a9ec399be03ed3e50a5864053805510efe61c2630c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamsckasmase\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5bf80d3f31d81fc87a861c60b565125f58428c95a168d884b8a28e240d8dbe8e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasckascmaseas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "64f2b6dc2e3de2aaf19903fb975074a0d4ac365be4adf0eb8b5ad42e4e07e497", + "regex": "(?i)^https?\\:\\/\\/cornbetmanaxtemwl\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "650d32946e8196d0e7957927c2f1757be9f5652bb44d044e4c124050afc99051", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "25b6f581c77842b1a2ae48318c8fd583ece64c297a74547c889c408fd9164629", + "regex": "(?i)^https?\\:\\/\\/pcaosealcksdmtguaxkasemmase\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e9bc49575fddba4a6258f90a7644a2bdeeda790c66728efefa75932c9e4cb2c7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmackamsed\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fe6b6e6d52505e5f53034b348fec517443504b78cc4eebd8fd58896ec00f0171", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4b2241b4f4eca499dbcd2de474728ada3164ad70175acdfb925d568a71ef9b5d", + "regex": "(?i)^https?\\:\\/\\/dasdasdasdsa12sa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "aaab0587f8a7df34e2079c92cea971bfd4ff4bce3844e2db17f8244b55057fed", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-x\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "54cba32a476cda7b232f651da2a34de9b5817b3902e68a8db5cea66f5578c80a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsutdhackascmamseas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e3bc3856c270964a93489be45aa5c4c517178e340ecaf30d0fb39c8cc6b8b1ef", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0e5e899d6796a354230dc345b21c481feb2499735c99f5cc449c390e3945ed67", + "regex": "(?i)^https?\\:\\/\\/pcaosealcksdmtguaxkasemmase\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3e74da80b9e7a2d6d620582cf865e6836441f2b0c30664f4dd8fba782fa35267", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "69a2c2ae3a459e925495a7160cb4a1ce848789a8f3599474ceeaf9046cf818b1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "103971d0e5187f6fea37c909eccca127f347391a0ff71702a6ce6789f0cf39c4", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f7b48d8af2b3e0b751152d372bc1bc3bd139d649320889cf33092c3cebf6e666", + "regex": "." + }, + { + "hash": "5adc86f04007a1f1e0754c5f96d3fbb94525c439e1809f0a8e4cf01ea9c81a2a", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "723f036f212e343bd310046f011c2a321a7c9f7f1c6495b63e2b1ff1d1eb7de2", + "regex": "(?i)^https?\\:\\/\\/bravespiritnpw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "eebf873aeff86423ed9f97ade591c8fa5495aeeace6386148aa1fe257052647e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasem\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6548d177531fd035d4d140c594b19230dc3e5e360d6f21aa560eac2669f64ff6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasurahsckasmeames\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "869b9f2028cfae8cf128c0570d31fdad602c12187c274efc1d4175781d8f2ae7", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7e9726e3aefca2d4428ee279cb6eeb612d64ed3834030d996917453d5f54b9d7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasckascmaseas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4023a2c1ac7685e920127c8c195f73ddb2a665a97dd96998f85a23690c0b881a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsktalsckascmamesas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e46ea0808521e55968954f5909fcd26d08a977bb6873b75fa6778c22c6b72072", + "regex": "." + }, + { + "hash": "89185e7660a3b9a0b18b6a5cd3f133cc5d71915735c1d6363cac062c64d784c4", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porn\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d516a51cc7510b9e1e2b971d30e8ca6ed656e03443ce265cfadeeba3298ed28e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasckascmaseas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b46054b56943548c1199b402fcef3fe9b980a1c67f9468343d3cf8a051dff23a", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-camera\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6a6d27213723a9c4fd97dc95d0dd3866f2dbe0879cae2390a308f49793f04bc4", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "750a65903fa64d7f0f3a16bf828533fcc6080d7b3dc6080f1fb5589000ad7a8a", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-x\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "89c0ccff6f6c458cd6174d7be7c097d65179f78950189fd14a3f38d1157052df", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "82d5793dfbafd255474815f22a02f7db8572c55e5acc52b59c55577271cd39cd", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8fee5c43f1f58247bee3c00180bd8cbfe0e2573a6b3b311401783e5c029baeaf", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b11b8eae7f63f002fac213cd5f3cd220e49e589cc380e9e5459d37d35d81609c", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b6b9178ae8d923aa64b0d112fee087693e8095e7309fcee16d6d4ebe006169fe", + "regex": "(?i)^https?\\:\\/\\/tailerodyxee\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "deb670f689dbb94aab7dca445bbaa1128b9e5dbc512f5f5f11297e0a0efaec86", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsutdhackascmamseas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "15cff91e81c641370893f074271bfb05fab8b8c3ba3efb87ddb140a1c5469d89", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmackamsed\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3c6b9c22c4f81f6a9da5d019cdbc9df2d1749d11727fa6d5731e6dd68dfeba3f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcsmasmea\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "855996fc7e99cf3e9e90f9c42783065d68b01e15f9d829447f3eb2b739fa99f4", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "19acf40bfd13bce10686594b41a09287b738c87a1deff4b5b9eaa26d4c7cc56b", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c655241791cf45847cb708da8ce581391bdb04cb12a502003fdc626ab56e0b4b", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "74ed4fc25af40317bdd373f36f5f5f153f0bd7b9d9184f905d231ee6a6a5e665", + "regex": "." + }, + { + "hash": "f8eff969b0b0fa7e2c2a14869e42ace91efe49438cca3729b6311ebc27623f54", + "regex": "(?i)^https?\\:\\/\\/porn\\-sur\\-webcam\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "650e58c6e0c2175e03cb6f83220bd84b1d7b7819b459f4368800e4bda0713a0b", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "38214cf387f2913545fbe1e6f19bc33779ff238a378faa282692acef60e61bd7", + "regex": "(?i)^https?\\:\\/\\/porn\\-sur\\-webcam\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "45343ce876cd41a9f6238a6bb8ad17d56ee133a722ee789ce688569025af0c61", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "914c4daee00f4318b260a88fbcc12c5ed2b03ab722bf87c8945e2402ea6b8548", + "regex": "(?i)^https?\\:\\/\\/dronprancingdmb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "39e2c10010dc35a6a49345261a695d257db45b8ac290bda725854eadb0969114", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e1bcae7e7a2826d8dd77bf3613b6a211acbb824747f702eb5a2194f7cf481bbe", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3cb353ceff67d396b083ab433c701edc12447ebd1a67db75a31bb7ea675867ab", + "regex": "(?i)^https?\\:\\/\\/www\\.1vip365666\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1e9ba4118ddd71664b6802ecb0bd8235e3dc16409181c1c84024b62aca3b47d4", + "regex": "." + }, + { + "hash": "95c51bbbdb0768c382d61af4251276c41e0aa0bca24962ecbeceea0adaf642a7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "dce1d01eaac1eb7e0dbc809990bade39b701fd016b57e92c4231a704cc850c5e", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsdfykalsckasme\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3cb353ceff67d396b083ab433c701edc12447ebd1a67db75a31bb7ea675867ab", + "regex": "(?i)^https?\\:\\/\\/www\\.1vip365666\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "065e4355cd3be6931cb1477c635fc4e4eb9b8553f8523c5b1d3551d00184d4ba", + "regex": "(?i)^https?\\:\\/\\/zkiiika10010\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9100166b64aed73793cd5f922a297ed046f0f4a95bba6839a7ff5469e6bb88a4", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7a1a8d72bb93b1552a45bc59f58b8288a3bcca94ff667ab306513b4bbd08d9a9", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bb1e0229f76473d3baa7e4dc89f8688483c8c4784f68f34977bfa42a3436cb82", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtkacvas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "46bc5062b10150f52a1619eabb46d376ff8148db0b1fed9ef4bee37314936ab0", + "regex": "." + }, + { + "hash": "c88ddd2ea332321c37c9c4d9503bc54c39d8c975a8190340c87dd40b432f8227", + "regex": "(?i)^https?\\:\\/\\/porno\\-par\\-cams\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e1f000b43caa619cd87d0e4124331318bec5f4a6ce2b0596e42ac6d97216a78a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f6e254db88b83e3947fd8ecc85ed28ff4e0e5c25b255cf6d4cdf0a5d8b80f0c8", + "regex": "(?i)^https?\\:\\/\\/mrkatstayfunnysubr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6634a46dc612d3e9f6dd47ec433a74a9e1a96683fc76a4a42fafbb01ed6dfb1f", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "718b65fde204200a9cef06253312d85178ad933e3e3cbfd722bc77aa7af83692", + "regex": "(?i)^https?\\:\\/\\/zkiiika10010\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "077262aa585d0560da0dcbded03210c948d33c3a7a952543eb3f9e3dc5657a85", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdsfkyalsckascmase\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4707faa1edcc061f3086896d389fb64a40d2c5651c1284c1f41f06748186f67f", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a8493b33c21bfaafe8d0783231a65f49b3d07aed4a0a7b66db46bc72f9a627a6", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4c0e272c158d6b42f033a262d5f8b7535d16126d53593ad990360d3b5114efa9", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "256179689d5af19803480b71448963b4637aa830281d121933aff8e113a65806", + "regex": "." + }, + { + "hash": "d8fe76ada274d28abc482ca7ef2ed673ad3ecf33600d13f097adbf320afba189", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b61067e0799e9177d227e79844b4c9f0d4744e6c49614d503297ca2f1f049b7f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "83a4c4aac68f14b7a8bac6b4b8992a7ec3fb0484bf4d29bed313cb0712c7e5b0", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "29f680608bfcade343db5aba57874564e90339edf3fa5ebacd0c4e78b0429ec9", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a92505f249b2c361237d869eb33381e1700517fdb51727e49421622d3df1e4dd", + "regex": "(?i)^https?\\:\\/\\/zkika02822\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3821074107da7f86fb8512d6a5910cf72e2c01dd15a037997bac32e49b829c62", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "391e1824a5da93f09c50b891a364806040948982345ba684e496d82cada92287", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsamdtuahcaksemaesm\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2bdc63fccf45a90d8938810855bc053bb4778389d22bf1f3ffdc1bad13b22035", + "regex": "(?i)^https?\\:\\/\\/porno\\-par\\-cams\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2f1cbe7ef8f88baab40b945c98101407cc86879a3231cc5cc3da8790d8b22895", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsktalsckascmamesas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9ab0c93a735b5b7bd3b9ef92fb45e28489f0aa24b2c629f5604185544a7372cf", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8edea04f57dd42c7cd597b9af1ae7a3a50862cc8cf4d4b3bab393b62d69cf52f", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "abb17611db4ebd5e3d0f545ac59eea6529da6fe5e5f99d61e965a402e85c2277", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f08d84273c2e6b452940e7c964ee1df453b9a4b669ca5c84dbe7b705521bbc01", + "regex": "(?i)^https?\\:\\/\\/bafymcalientewxl\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "79fd16c550071aca4362bce9f83cdfa4d118a435381ac0243e485e0a17ddc201", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dade4d4b04ec90fd81ad3b82b079884de7908d27bf5518eaca8d422a72bed2e1", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ad6221706332564ee073342e1d94a9c981d1e1e97f72b205ac772c03374bb089", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "049f8728859f03b0056e94f9404b8148387522f53154b9f41255ebec8d921568", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsduthasckascmamse\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1620bd134493c1d4a43ad28af159564fb0033084c07ad2e458ead2f48ac678d3", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "68808ff4c469c97193fc549585640b582212e42194d8db825c49d8de940c0109", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f561dc8ba880c35c81a6f45f54d8b166bcbd270811e4d8d051081d4a965a85d9", + "regex": "(?i)^https?\\:\\/\\/gfhhfghnbv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5a9fef83c9fd5abf77d194c76d0679ff40785ae51419304caf9dea9ae384c69f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a7426b61b8f1dfc923293ddf6a3cdd53da7fba75d0cd4344110ddd8c65ae997c", + "regex": "(?i)^https?\\:\\/\\/zkika02822\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "183b8808fe0f718944474c1d1d3cbf7e132abfdfb3759fd296a877ff215b91a6", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e66030cd504e6b7f8a299682db81eaca655e51cb797287affbc8c85a09759bff", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakcmaskeasm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2752bc62104dc5995581e5ab7108b24ed3d5607ba10e675ae3b48c55c1246412", + "regex": "(?i)^https?\\:\\/\\/dasd83233\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2f9667b4fafefa28d7005355501a3e30c72ef9470b0995aa944273af9503b746", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c395655c0ac6052e57c708ca984be4d1ec41de21b7ec202bc797929d8ff15ce8", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcsmasmea\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7b8f1adf653aa18f5ea2ae974c67874574553405e077c8614394539bb54611c9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduthackasmdames\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "340516e97d4207ed9f2da4baa47bee37aeec83ccb7366e3864e75900078c9867", + "regex": "(?i)^https?\\:\\/\\/porn\\-sur\\-webcam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ceaefdeb0ef7345ce4bbc75a748fc09c9c0a1dce6afa9f9999f79cb04f03e46f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasckascmaseas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fe0edde7f1d6cea51c1d7bc1ecfef21b9d9fae9e0d8a7dfd17a13d08fb6562a7", + "regex": "(?i)^https?\\:\\/\\/tailerodyxee\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "480125365a61fb4c8121347dd52277fb83a2ae4d9e808b06f378b54bfd3bf012", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "094466374885484cc6f68bd1393ba55f4d95e00cc31d056cc877911324881338", + "regex": "(?i)^https?\\:\\/\\/video121312\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "80d8a1ddfa98693baa12356c0963e05a56e379ccbb382e60fe06950ca55ecd6b", + "regex": "(?i)^https?\\:\\/\\/dasdasdasdsa12sa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a6f96006bc30fd9f478d460662687c7b686ee420513b3e47c4071910cd022ab4", + "regex": "(?i)^https?\\:\\/\\/warpathloweprqwt\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f2aa1789862c11be163706b03946d83c9389f3b6992123e100374601d2240d38", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f390bf3d78677083a09e21996577aa1daacf57babf6996e9d348d66de1024422", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1tmadi(?:\\?|$)" + }, + { + "hash": "5dabe66825a6759ffd50845b94ac29c6c59fedeead6b66d77c479b5cb6984315", + "regex": "(?i)^https?\\:\\/\\/warpathloweprqwt\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ece274eced16da3e4216e573ac9f3277760864414bb04ff90d53a64c60659ee9", + "regex": "." + }, + { + "hash": "da19508ac1603cbc40b0f1effddcda0ed9416a0573b80d92d17624ed8c34443b", + "regex": "(?i)^https?\\:\\/\\/ljkhkjkhj79\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d48ad35430d98807e8fd59865f3015e59a8eb2b8039eb7aab209972135a91d8d", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "61dc490d4aab822a46263485ea2340ef4c6468e48a2f15ac2e0fa143249f410a", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "abd319adb1374c497f9aaa06f68dc5fa58f12f4546a479ee19d107385688d7d2", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "18aafe3cada391b3361d809a7778305e1d426aa2ad52467627ab0693be39add5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcsmasmea\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5c448fbc08dbc9fc3986571caaa61f59b5aa1db570b2fb7526ba7d35c8604d7a", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsdfykalsckasme\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bb284607af6e4a32fcb7485bce893aa743800068e92bee91786ac7d83fcec09a", + "regex": "(?i)^https?\\:\\/\\/bafymcalientewxl\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1a499d0ea28f5d289d40b15196ec11395074582eb26702c5b0fe2e2774e05238", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsduthasckascmamse\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e8b8074d7ab64cca34806316390b0fdce3a30f247a358eee320907fc65244d9b", + "regex": "(?i)^https?\\:\\/\\/ljkhkjkhj79\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5e342ea4a177f33737c02adc0e7465a421c81cfd7be3b56f57fc32091b76e53a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasurahsckasmeames\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9d950bbf04a098abc1957410f65906c9d3b042c9dc527df90c62138a7f614f37", + "regex": "(?i)^https?\\:\\/\\/zokisj2212\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fa5d3c5937ec9dc347f57850074ccb9711b343c68e4b02d3bce8750034316c31", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dd4eca9aa9925203c9c51e4e0327d67056fd2e0beec630768a40ea898262f229", + "regex": "(?i)^https?\\:\\/\\/cornbetmanaxtemwl\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "522f3aabc4c5b81a02ac50cb197619e105891d7801dde9ac301266f0b3207771", + "regex": "(?i)^https?\\:\\/\\/video121312\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "66c94326f61598e893872377a526737dc601a7f7d579e4cfacb2c71d0c705690", + "regex": "(?i)^https?\\:\\/\\/warpathloweprqwt\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e5be9cccec80f2d9904cb0ebb2c19b627b0be47979d766774806e576a129fcd8", + "regex": "(?i)^https?\\:\\/\\/bafymcalientewxl\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c8f7d157fbca4544bb599167a0658392b62236d9834dacf4eda1005a22c4f963", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "edb30b715b7eb67d3b8dbd5560f880890b49aa66c14a6ad294cae96587c7e75f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamsckasmase\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "074776e9fa0aff5e7f9f84bc10c3141a4275ef6c947ceefa6846d243b5a489bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+sign" + }, + { + "hash": "eebb3c1d436834e0a7c339f8754256f1a129b2b85037149022501ea8aee1ee47", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "32804499946b714663cc219a36bd9121b05eb2e4132a34f3064c0de7f994db5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1100c\\&id\\=ms\\-formation\\.com$" + }, + { + "hash": "de8c7450bd2d37d68c10fde535afd831017f2cfcd61301e3e73e690abc851cbb", + "regex": "(?i)^https?\\:\\/\\/bafymcalientewxl\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8da8ec57a7bc78ec38b5ead2e2c64f8397919b861699120ebc29eb3db52687c3", + "regex": "(?i)^https?\\:\\/\\/robuxcardscos\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "913650d6fa617f9c0991ae57c2ccc303b27ed6ffc0dc37d69743ed494d388ac2", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-porno\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7bdf3648e41a55a92524157e542c30805dcc7ef191d1ac18bfd04969ae4f57ea", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7150e2d20262403dfc2f2ab7f4f09c0dc3a1615760fcf287230659584a8a9617", + "regex": "(?i)^https?\\:\\/\\/ljkhkjkhj79\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0f1f1390c726503083bc6fb08b6378b8aadc5b9b99685705aa0ce07deb087e1f", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "15a8bd1feb32854aa9d8c07d8b4353a455d02bda1400d2af04618c5279243456", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e88ca77dc1f122be3f624f81870d4053e02480522fc1462a28f776f5b9cffec0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nl3[\\/\\\\]+PaECHB2TA_U6Zr\\-OwbzMKA(?:\\?|$)" + }, + { + "hash": "23908bcf542f668f4020aad247e16cfeaf1f2298ea4205d15897376d4d18c971", + "regex": "(?i)^https?\\:\\/\\/porn\\-sur\\-webcam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8e2ba3017e6230fa8ab69722f497442e8931d07f6d4c4e40c56b867dcd9bae85", + "regex": "(?i)^https?\\:\\/\\/zkika100\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dad5d041d35b1416c9d18544502e154a03d7967e986fb5d3d605f65405c908ac", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsutdhackascmamseas\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d1fa1def623577d6502f650e4aaf1281eee60e47a4c9abce47730f86c2b920c8", + "regex": "(?i)^https?\\:\\/\\/bravespiritnpw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e513ffb3de7f66a6542054ca0414e4363ab955bbd1c007a325d148cd0adb9f33", + "regex": "(?i)^https?\\:\\/\\/opidorancgnrrw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4bcba4a5eb3cff10db232c04d6111ba6254c890a51d01dce49487896259d3290", + "regex": "(?i)^https?\\:\\/\\/zkika100\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "451a25035bf7c9c3d6b7995f4c5f5374b34505f22347cb8eb4f8d72f2cb50c3a", + "regex": "(?i)^https?\\:\\/\\/rahimriglahbb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c3cb4040303acc586837e3844313960871a8e2ed3d3fd916955f8e07e0f05471", + "regex": "." + }, + { + "hash": "b92b94fe1437600540e1fd950eb00c08feb2f7816db793b1e938e4bc94473464", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsamdtuahcaksemaesm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "542d60898068f567b3c8a643aea1c93cf71e5e529467dd45d7a05f287410afa0", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cc5a5a8d41e2b3ada803236342b5d4decbc7c45666d410cdb994a1b29c17a461", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9a3246fcd7f95c348027d2e7752ba7b0213efd9891e133b05bd9a8f24ab95f18", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b411710b504044c2afb771bec388c140b46b6867c440de38d9b17b99d0ee3e5f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsutdhackascmamseas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c499e879f07a5a44ed9f1cfcc9aaa1e6b10972b58102078adac9d63b427f0bcd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "11203af838f73a9ef0ed16f99543e2001a670a9e782408e3936fd3122ec5ec89", + "regex": "." + }, + { + "hash": "ae006950a0809f0a874624ac87b34c3c8823874019a49d8a4db77a1d27ac2b03", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2839dc2fc7bcc56fe09a0c2733d6b9540df68d41f9e3591e32fdf13eecf47ec6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakcmaskeasm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c3cbdc0a3b00b7e7c850d78d882e784511bec6e8f6593e8ba47703896a3d30bb", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsduthasckascmamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "165ba98523dbacc811dd2818124d02e2fe8b0665f761c97a317b34ca899bc502", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7f866099a0788ada8f8fe57053a1b66ecc075ec4b51d4f841cd99c600fdbc771", + "regex": "(?i)^https?\\:\\/\\/animatyirf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7a879149bde4aa83a39e8bdb7c10f6cd1e9c25c3fb7ae76b586057759376cd9c", + "regex": "(?i)^https?\\:\\/\\/mexewutesxe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "834f5f606bff856e12bd2771a9c34a6f7fe67965c6437bbbc65614343dd111a9", + "regex": "(?i)^https?\\:\\/\\/adeonerzcf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f89d21dc678ec63c9d1c93e733e760a175f630e642e95188fb0f6a84b62f1714", + "regex": "(?i)^https?\\:\\/\\/zokisj2212\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5922b76e55d19c33341fed9e349b85f0535a17204cd8d7710d576841dd722984", + "regex": "(?i)^https?\\:\\/\\/bravespiritnpw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9102cea54d1f48ae5ddb02323901a9e48445e48b5fc175fdd2490d543eaff7cc", + "regex": "(?i)^https?\\:\\/\\/dbidryofo\\.com\\%E2\\%88\\%95xqtghehh\\%E2\\%88\\%95hsovpc\\%E2\\%88\\%95lrmpppckbj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jwfkhzchu\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c00bad3c19b73db4dca94d1a8774be03df3796cbb8beeebd669f12641cf8e8c", + "regex": "(?i)^https?\\:\\/\\/bafymcalientewxl\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "485b9d5e910668b827f98acff82abbd24d53c017f64f9094ac8dca93ce2beedb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakcmaskeasm\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "403eec81ee73c98d5462e7003abcb6002f3f64d8dc940a9bd651c446acaa8685", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5ad08a86fefdd52f22c1278eba3704beac6994225893a81a8d6cde4892902806", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f9ac573c0afb3e0906e15c90d456bc0e9099b961cc311e56f0c15d9e2a47c8a4", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porn\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9db7d85c65e51f25d312571813e9cbb961437253ea78a89e9a390b5c73a7bc9e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0ef176f25b43ddd98466c2a849f456df0e56d1f368f8a34b6bf37381f6b9af43", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "479ec3e0bf2e2d751506e5d6d6a07ad0e44d24c3427d1592128499fdda0791bc", + "regex": "." + }, + { + "hash": "8e22b37b227e91d69203ebddb1ed0f2e26528112116b41c08d6c7e84a69bad4b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtkacvas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "58076e4c16510c3592515b640e9839a6c3001aadf8d86ad5fe8f43a2cddb3153", + "regex": "(?i)^https?\\:\\/\\/pcaosealcksdmtguaxkasemmase\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0cbec3545533b0b35fe093894d352fc16e31a7f3660f2ad01e5b7a98c056a954", + "regex": "(?i)^https?\\:\\/\\/x\\-wecam\\-live\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "641ba0b888620dc0bc070198c777e0ced27773045c03e2dbef2eb8e2bd76aea5", + "regex": "(?i)^https?\\:\\/\\/x\\-wecam\\-live\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8d1ce76355f47974c4e76a8040a748c5f43eb9c23f91eb7e935f05dcb5b3a590", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsduthasckascmamse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "52ddfb0cd6d403f466364b0ad97ed64fea48e0dc442f7ca265b4f1b3a769eac9", + "regex": "(?i)^https?\\:\\/\\/zkika100\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "defd0acdd6a63ef039313f9a73546876a75e42a5ccbb292d5221a2a8cd34fdfc", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6417076437c7939eceb97f1cd224e8e944a86da33fb18d699d62e8588bd1dac9", + "regex": "(?i)^https?\\:\\/\\/pgzzu\\.com\\%E2\\%88\\%95jgqud\\%E2\\%88\\%95ffcoooasob\\%E2\\%88\\%95celvszkilu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=agsejesmb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "83bd721dfae05109ebb4e64ae3eb5aa0f993ba19d98e5f64167e258c96250f6c", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9c7732b590f56062848d22e5c84c319781ea5fb7a4ed52758fba18ff0013afae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "89a72efad63a450147b9b0fd0e6ce5a88f16e626a09ebad420c6c182c7128cbd", + "regex": "(?i)^https?\\:\\/\\/billowing\\-term\\-60ac\\.updatelogaccountprogramedrfwerwrdhslla\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8c5d5e50a4d88bd1dfe7ea649e350b3cd862594a3f71f909a56912c25d3751c6", + "regex": "(?i)^https?\\:\\/\\/bibeznikadssr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "edfa7d7cc54084a137540460153addf7edec7267ba6c41bae8f348f92db91611", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "178dfaea210920cc4fb4c8434dca9e211e441c7952285d232b8fc63fae1ee5d6", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "05823ad85505ca2156880efcc517078bee8086569719b68f7204e0a7a2f09909", + "regex": "(?i)^https?\\:\\/\\/video121312\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "68ece27653647d773ddc14787cd528816b405ce48d77d615d2c4967de6a094dc", + "regex": "(?i)^https?\\:\\/\\/lydbhfa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "01c5be211e6b735131d28075f772f797ba570738ebf4fea9281303c02a1ef461", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasurahsckasmeames\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4dd1d88a026536d6e1dcde312c1179af9e08b98c50e17b6b95d3e7289a535c9b", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-x\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4fb28ffba783e4d5a747dda4dba26ecab3c17b8b80224831f952fe9b80fd3662", + "regex": "(?i)^https?\\:\\/\\/luminorenafvnp\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6d9285aa7f68f75f493e0ce26d57c2b0287dde7133c64dfbcc357fe4a0c89126", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b90dd7f51d066c6e8d9e2d349512f9c0772f26a42bd4feb35f28ae679579e1b8", + "regex": "(?i)^https?\\:\\/\\/video121312\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "45148d7c42e23aae0b8276d9e91ccfca1d6075ac375ea51724f011562462b1af", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsduthasckascmamse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "da7a5057fd53f6169c27742155951ad48f157e16223b7284fade2f1e0e8dce72", + "regex": "(?i)^https?\\:\\/\\/robuxcardscos\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "20152abbcb7dcf79b102316ba50df073e128a296220f7ed88f48825c22787e2c", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "da1c1d45ef14bde6db90e2f0462f2ca5265f9deb948f34e60324bef3f7856de9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamsckasmase\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9c75b4e22117be06240e6f50e349cdab3cb1f14cf5e66e3b956a41e3d781d229", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "610a91fa03c9645fff0b2e8eb2ebb5a9d3f2a961438bed5387bfc7ebf00950f2", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bf615024f0260f610b11127efe0652d5087b73558483e30129fee6af32d6efcc", + "regex": "(?i)^https?\\:\\/\\/x\\-wecam\\-live\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dc770236230a9d51722a9218b54a313d4c53f12422585f0a4c68bc6bbcea5ad9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "916b7f7f11418d4ceb33c73a9512b1f3861153d5968cc4fa4b55736bd4976258", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "178d4a61c0c68e29c6575f6a8e89bdd6ca2b86f77db683f6e1a5c7f09eb48d78", + "regex": "." + }, + { + "hash": "85d9ee003aeb661ab6390d47b39d07c403647b4bbf3c733bc01a4a9ac10ab2fc", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2e9db6276cc52afb57383bc5977eb1251f8567cbc5e00dd8e22946bafed8c2b6", + "regex": "(?i)^https?\\:\\/\\/robuxcardscos\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8aa45596c8de4e63557c05e242b1c311ba5a4ddd24131414224054927d0e079b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsktalsckascmamesas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "99f71814d1233e5eab3576b0f15917ba62b230e9c9d8e8c1a61d99e03d1a2701", + "regex": "(?i)^https?\\:\\/\\/gfhhfghnbv\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9c3a1f06ac155319865319baf95e37bd89e55d1484429a14bc8ba361e894b445", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2ba97c840ed0192aac7847e1835d9c00ee217d20a7e10e815dc47fd8748d960d", + "regex": "(?i)^https?\\:\\/\\/warpathloweprqwt\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "18c9253e670dcdd17636e946370d823bfbe16b1e3fe4ecbb671a5fb1bf184391", + "regex": "(?i)^https?\\:\\/\\/descend\\.com\\%E2\\%88\\%95yjxosl\\%E2\\%88\\%95oqlpfph\\%E2\\%88\\%95yfqxl\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=icon\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "63fcd87a11a24f71965874696f0a40de9cbc80a907b191cd9f3abb0864096e5c", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f8d059510841554bbd0ff5facfc849a64f27f8204ff42640b5164017dc85700e", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5b482bd59d78138e025753191b11d3bbf4bea44dfb355b758de95d72b4f3b733", + "regex": "(?i)^https?\\:\\/\\/tailerodyxee\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c6d531f7bf9b185530fdfad05ad3637ee7d4cb5d6ab0c39153544bdea6651cc9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamsckasmase\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b43ea908a1af2c1305ac4e559d1b52285b0af893c8ad10182f87c1ca2929d9fc", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "07883ee36127b029de8bfc863e698b010942cc29740467b1d986d97cd28cc84b", + "regex": "(?i)^https?\\:\\/\\/robuxcardscos\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "64a00e19cfec64324145c156d7fd5bb746433b958d87fb2f0c4b68d1041cdd2d", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4c3ac9432441a087220f9ec9a9645beed57c064812ea4c5f9d221fca06d0152d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9beeb873a542284132d85a153b833230e20dc6777afcc0571ab67c606e2274a5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1e22c666e1c8b221cd8a0389258a52ba80cbea501b6bb9e7df3e92bf4abd1200", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtkacvas\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fa8a75cb0631d941d003b958603a6c331876897791610c3c4f24248728ab5b63", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "af0a5f2ea5dcafde30da0bf395aa46d5f29c993839dfd4c6bf48a5b73ce1bbc0", + "regex": "(?i)^https?\\:\\/\\/dronprancingdmb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "38a2b50edae3ef779b5771e0f3fac0647815a68dd9a4c2293f23780a1e3f03c9", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "650e36bd3e2d5e18ec2bc5e1e177676ef60a5ef539fef95307c2c4f2125c7924", + "regex": "(?i)^https?\\:\\/\\/lydbhfa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "df2c32e15cff57ad412591e94c5578c616305b3268092b8e522f8f5abecb94f6", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b9fade6ef108233febb198968ac814c002d503f9191129256f838146cdfbd628", + "regex": "(?i)^https?\\:\\/\\/pcaosealcksdmtguaxkasemmase\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5044389bb9d3a99f25285d75f67c72ef8cd7870f24ff6fb9a4e8e795a29bcaed", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmackamsed\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3311f240301f9010b279eafcadab2d822e78a5a3349d7a329348d7f2d3c38e76", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1d8cdd32543b2c1d2894a46384090d7f040569dabf120f69cb58e2284af24772", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2d85e857daf92cc0e41fdbf9b739682bf3329ab636af9c7368cace555beb987f", + "regex": "." + }, + { + "hash": "fe919c69867c6604cb43c315f615d84b339fe0b491db3e81cd90ef9bf4af8ca0", + "regex": "(?i)^https?\\:\\/\\/ljkhkjkhj79\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c957ef63c02193cb20297d8a76bd20b2c6d3601b0adaeb005183369c59e994b6", + "regex": "." + }, + { + "hash": "7dd78433e44e0f6e531c2dd17e0cd6f994b4a01793745856c62292ebb81effb6", + "regex": "." + }, + { + "hash": "4b39e0f54eeb1cf6602cda091e2d88624a517be0cda2f1ed41ad7b67912fd9f2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1be0fabd87c4beb085deae925215ebb70a82bc7ba48b0eec6c10ade490f50498", + "regex": "(?i)^https?\\:\\/\\/bravespiritnpw\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7ea01c4db820843a06bf765e02c202abab2d005fd15c39189266dfcb49d33d6b", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "82322990657c4bad5306c6a9fa605667d6dbdf1316806dfe5fcd5f68973a2421", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ffc43f2845e9541465fe9f73add32bdc392c860a3acba33e37b9e49a13c4db27", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-camera\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "026513147e06d9d81e70c8ba28175aef7cd3ea4e797d25637f6b5b56578e9c03", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8bb0ce95d94ff315bd4130b945e959d423b97c2903e47a17b0fb534d59400127", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7f503892b37e495cdcf77de65832a25fdc0eb289a2dc88a304a98e66f75d3119", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "726ab12576d8bae783a1ec4650dd80259c757c412bccc29fae66e88305494fa2", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bbafc95e047cbe7e30b00547b83465abe9480e521a34d6d02f372849214a6b95", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-x\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4462f05c8e1821b18fad1bd8bfcdbf19ac899f262af76921c1c36e614c8ccdd7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduthackasmdames\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f86c54856766cada798ed99d96d48442901820cad0393d580353c7b0cca604e7", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c26b51fe6f7605886cae1226cf34aa951f8b0fe3db75c999a2482935b2dc3a78", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a4d48cb2ca518014d2c282ce947a36c7df791b9b218ba1ea4075d35e756e4f7e", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "55353e7d50205f3396cfde7e5bc584819317ea36951015679134427ca3a75364", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1e60d713cd2810b6a5b95d53b40f585879ac071c424ed8514b336dcd987c39c0", + "regex": "(?i)^https?\\:\\/\\/video121312\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8289a0a0395e53d567bb9ac75ed0136d5c80f4154e7092bf8cb98bb4f98f03af", + "regex": "(?i)^https?\\:\\/\\/animatyirf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3833746ea640dbcdc1295847fb6f28f35fc66529677b64fc14f03abdc520b81e", + "regex": "(?i)^https?\\:\\/\\/x\\-wecam\\-live\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c47f1052932eddfe6e205e689c375088de133612c0e4494c356ea528f25eb999", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakcmaskeasm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ec0c29bf29cc6648a1deff74828409f9502a1908fabcd359642014eaa03ba21f", + "regex": "(?i)^https?\\:\\/\\/porno\\-par\\-cams\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c73ab2e728340e4a069efbbd30d517b4d98c9e11c5c8c0c7bc718a8e0dd42800", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasem\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bf933c7732fb78a5a49e213b9108af464f0ef1b3fdd67da74d4b02c8dabd324f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsutdhackascmamseas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7a92568a607b7c50bca55a02b2212d4d143132fd9d81ebc0d755152445c91724", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porn\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e0fc81db52a14344928dc2775206ec343ee0ff0d3678c520f44768163f212620", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b992211ee8099c7dcee7dd6069eef17a356a433198bd8371c44ba79a90fef5a7", + "regex": "." + }, + { + "hash": "25fe1e416deb2404d9083465d892ba3ceec55abfcbee4ed0041822b024bc4ad3", + "regex": "(?i)^https?\\:\\/\\/rahimriglahbb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f96eea3afe74a967eaee4ea43f897cd6df2882d54524048a1e594f1b628a9882", + "regex": "(?i)^https?\\:\\/\\/zkiiika10010\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "243b16dba76583704165122676ae49fee227e3d6afc8b15bad7d039ba59597fd", + "regex": "(?i)^https?\\:\\/\\/rahimriglahbb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4c00ce87b8419352145843f733de3ae1a990648b5bd60958f128f4dea7dfe23b", + "regex": "(?i)^https?\\:\\/\\/pcaosealcksdmtguaxkasemmase\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e3845a6a9bdcebce5a05e18f4e09e5a85fcfab8750422b1507e601d12249f629", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsamdtuahcaksemaesm\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cdfacbe32a493bd7369cfe79e63baae29a84b76ceae0504f5a39c626be607cbd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakcmaskeasm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e7df7c08cf50b929afddde465f58dd4f0fe1bdf562a38176a2038db02ff4e81d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "186d76bb02809ebb73609e3684debed3d3b22bcb5bef5e345637a14a7a769b04", + "regex": "(?i)^https?\\:\\/\\/warpathloweprqwt\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "482430d5df0c5a0a0fbef2801cf5b068e8dd587cb288e35029f57a3068c9e23b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "33345dd82f515e21220bbfbf7302bdbd767f9ae43b877ea8dbc4d8e88e5100e2", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d369b3e4c6803de3f3fe17c097d6bd552c0a20624d270d75a3ee28b5e4b48410", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "96cfdc8c9da8875e462dc037c1ba1982a8a60fdc7960e7bbdd3159187d4408b6", + "regex": "(?i)^https?\\:\\/\\/robuxcardscos\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8700ddf68bf80c90506f5f0aa0981d92ec9166eab01d3ce59675789a9014139d", + "regex": "(?i)^https?\\:\\/\\/porn\\-sur\\-webcam\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7c7fa7c0356b85b0683332018b8b45f64afeb7b7f99eb15898214bc3ff729df3", + "regex": "(?i)^https?\\:\\/\\/zkiiika10010\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ba90d825ceddacb7eaa076968d2854baac91df2e8c057cd37fe8658cc8830a1b", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1df68a01fd61d1fdf53fd46886ce0865d9cbb495eb0d034bc4f8263d9b3bc635", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "35fc47eff95ed68043c010c12de02fc761328578a903140c14bb83185a3ab389", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "549e16a48a27456019525d84573bdac45416c2f6eb29b4c309ad48f99fdb6d60", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-camera\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e9355380d7b0eff83b519657e814d93a3b3d6761b733c473097e350e0319808a", + "regex": "(?i)^https?\\:\\/\\/dasdasdasdsa12sa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f26e1f86542fc3bfdaa922889d4f2023fdd70281664405b7ba1f568d7d39c00f", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "056aebb4305239cc35982e35f6ad1c9806c2e431cdc870dc33c08e87a939897f", + "regex": "." + }, + { + "hash": "6973484c5074e6ba3b52be96ce4b7b0304469ac92796096f07d7ef64c1d0f0f1", + "regex": "(?i)^https?\\:\\/\\/warpathloweprqwt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "869bf7fdc5119b28b7dcb5cb2cf8972c00733d5cf328fa2711b946a2c84bbd80", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8f6c93706aab42c17c3c7c1411b0a1f00f8141be1a2178ab55d7510205051096", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsamdtuahcaksemaesm\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b312e8f9fc852e98fa2313e8dd3a06b262125d8c90c8e888c7293a6616388f0", + "regex": "(?i)^https?\\:\\/\\/lydbhfa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "eab9c94a08f02027c968cb0377a7785c18a4f0ce96aa1ca0fb912ef8a13aa4fa", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c516764f8468e2499028379b971a917fdd64faf9ca7ac0f4194874aa3b5c93f5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasem\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e7cc4ed4ada436d00210f0fe2b9e7cde7ed7c1e238e4ec1adb2e49b3892a9cee", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "150242afaac51b48673ef47425a23b46926c297e4c4b1bd5455cf6c8c430ff76", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a7ae63fbb2bc4d6a0b0be2818cca752b57c213be824f657621b8db543be8153d", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9b6db12934f83f5a6d20f3b6c62811c920208e9b67db34004ba760bf62bfc7da", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4c7fe3100a8a0a7b7c67be2242e8952249c7ad75b0c6cafbe4d3eb5b4192b48c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "beff45e24dbf017237eb7dbd34e6a2caf103ef2c0721c32d83ab95e156b8b036", + "regex": "(?i)^https?\\:\\/\\/cornbetmanaxtemwl\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fe08834f7e6183bd02ec1a91a4a0090b208230e378b644d71a18a12efa6dcb78", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "022e9e558b9f3aa23565c294cf47d3c080debad4ff3b99f50b6a016ba24d4fdf", + "regex": "." + }, + { + "hash": "ca71e5d5ed14746d4a726e874b1c6756c3e3f1142445e1cd95b0d9e0a144a7b0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkalsckascmasmedas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3d0e263d291461c790226104b1ec12c388e3e81a053cf865adb00ca0267af9df", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "957acd6048820e444310740d102e987ced714246b1a12a7e42a36534e0d94ecd", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eb639fd48c7dc794a7b02acaf77b5c2ca3b2d95753640ceb5c734805d1d9b6bf", + "regex": "(?i)^https?\\:\\/\\/mexewutesxe\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "338139e7fdd9c1bde8ff6c2d8ca513b40def96382d583a1bafd15817eb6f039f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "aa6ff20deb2106b7b255ca8816a8843296df872aab57a7c5f2ea9f1dd9fb6444", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuashcakcamsem\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9495c39849fb02a679afb302e30bde5cd74773a25863cebd15ba76760aa2f292", + "regex": "(?i)^https?\\:\\/\\/video121312\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0afb008ed422aea6684b85e6a0b565940c16537db6db56d0f2caa2828822bb41", + "regex": "(?i)^https?\\:\\/\\/porn\\-sur\\-webcam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "dc8e601a4ff256f21d6c95c9e571c751ccd6f80e7b523511aa086d68e9adbaa5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "02daa6710acb642c98760eb8c19efb0c4b678b4881dd89cf0010cdd683f64c5b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahscaksccmasem\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "54cb876c348f5da9501440342ed62a3f15bf70c15eec80dc6b81eada6f3cf2f7", + "regex": "(?i)^https?\\:\\/\\/zokisj2212\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b3b077a4f766fa683594c02da2b252203b5aea73f81fdfdea2300f8cbb0d80b6", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3bbda22204d232ff1730957b5d9775aaa1c0a389435f8afbb68266e89b87fcbc", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "140953e73049f99226b48d69b49f8aa30b62644bbf1b8ae562336c255c267914", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "30a25f75b3c2853779ed1262c5a9685bc25ef809a6da6db908a557dee8b42ec4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "db79788af1bc757313b02203c735fcdce8ebb6d5ff7ebd79b5ecb50901310204", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "01af62d0649e5f8cfd90c65d87e9a2ccc754eaff62d4a259b2565d5786677528", + "regex": "." + }, + { + "hash": "37bf21f909db8402fcc11f61441f4e162a3ddb52fee61bbbf8b53855b6f884a5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "015f9eafb83fd8b603b9735a4c1f7880a74fe8e6b6d77f8542ded0e11a6c1f41", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porn\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7b38a4f41f3cd5382b073214ad2a19cfe90c3b4f5a3feee280d29d39d300ebb5", + "regex": "(?i)^https?\\:\\/\\/khiyhu86\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bc4d313811a391af393da9ab50a57a1a0282a5b82da2e166abffbd48cd358f19", + "regex": "(?i)^https?\\:\\/\\/zkiiika10010\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2312d652afe1e9bc5cd27e1861dc1e031f1fab85239697b45fd947e94da98fe4", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "794304061952648d1f7bc3fd1eac36969271ed7e69438febaf9fcb51eccd2c95", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b4e1d5336c7187c785739e25e9603d5ef4ea08e18e899f105f6e01da6bd3bfd2", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "02c0a64116ef2d0553eecf90ac22558920496da1731c86d907d47ffb1e6f78d7", + "regex": "(?i)^https?\\:\\/\\/dasd83233\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "574caa208a5e5ad5ecb9fb51ca8d5847fb8f3f5ed765558f785cb6b9cc3a96bf", + "regex": "(?i)^https?\\:\\/\\/dronprancingdmb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5642c37adea9d6103248e35d8f6af44a231bde6d11dc280608150e4b0478c5d8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakmsdtuakxcmasekames\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "18443ba8dff3555a68d53077ee12c1d8d31d7427007758449819427270c39dac", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "45972f56c50c37b67f70568678e8746d75577801ea4ce68ea91af224319b29fc", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamsckasmase\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "41989c7e1bdf9e3110e0f64893d482efd613609cd173ca831056fcd816067c79", + "regex": "." + }, + { + "hash": "88104d81d31bc4f8f4d504d8413157d01824f790f17df87319e8a4c4d560ff14", + "regex": "(?i)^https?\\:\\/\\/pub\\-ef4a34eff8484416acd0df7791e8264e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bafcda32f45a9ab905aa0ec1ccef59dbd1317abe1898b9e5928ac4586db5d1df", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d1b707aa733460a9b43ebaf47aa2e8584c6f5fba194e693d541577bf9b21098a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "49fd2db5c7b53efb5a74b3095906dbc093af772ec4cc68c97db051e4bfffabd9", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c4fcf72d93152877e553bc3db9004dba37268d5e686b0d57f87da04f77f2c6b8", + "regex": "(?i)^https?\\:\\/\\/kenya\\.com\\%E2\\%88\\%95ronwi\\%E2\\%88\\%95frfhed\\%E2\\%88\\%95wmenn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=chastity\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "67a83d84c8d95be517709a87ee4cccd99d7a70c9defd308eabb43132a2289c6b", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8bf188bc4fe65a8ff2397cf82b5c3e9c0d00554e6c57ab2b122e60f7b091e3b4", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "390cbf013d2f45ff1a9a06b45811105f91104f0635f2ca091745d7eb20d85e9f", + "regex": "(?i)^https?\\:\\/\\/tailerodyxee\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7534babfb510b6d3146fd626d198049709d1dd0276dc107e62ee4704ec430500", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d810ab314e9c44f007689511767b9c8fa0b82067391573404c76b0ba7e7dbd63", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsutdhackascmamseas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "610a93b44f60cf79149e8c12a3d9a40f4c8faef9244256252105424c3c535027", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f793012bb197c6e0f65601ab2fcaad238e9566b1073f08b93854eeb813b71ce4", + "regex": "(?i)^https?\\:\\/\\/qimovzbk\\.com\\%E2\\%88\\%95luhxsfgdl\\%E2\\%88\\%95biflfuij\\%E2\\%88\\%95tvvwdtu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cttsdrgl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6d75c0f346581f9e7ba6be59677735ea48734983add018044bff6eab75bde98d", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-x\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f81cb1235166bb6e3ed038037c3c5e4e248168aadb063a6b78244f2aec6f487f", + "regex": "(?i)^https?\\:\\/\\/cyrus\\.com\\%E2\\%88\\%95frzbtv\\%E2\\%88\\%95wsomdnub\\%E2\\%88\\%95rwbgeudc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tennyson\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "412d19d37f3fbbf798cf5d20c3741e40f69163b6332b13d3002fda86df539a57", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2dfbbd4f1f80eeec3a8831106016b9d73a0d13cc10b90c9096d4eae3a5d48576", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bf929e951bc70d9753f86d65fcd55b58daa94f456e62c813eb68c359f2f5ab45", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "485a8f116287cc53dad2259307d4a4d0ab39e16a981aa000158c715ca5340668", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pel\\.smak(?:\\?|$)" + }, + { + "hash": "0284d5e2dd77492c3e44ee971e3e2ccfe1e3d274d2957f488c28189e0f00a9fa", + "regex": "." + }, + { + "hash": "b013e8b11faf4147611235354c7698f9625a7cc5b62773f3d9623270b086ed2b", + "regex": "(?i)^https?\\:\\/\\/zkiiika10010\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e3cd9f54ed87c1e55a9f0e2caece19236085f1dea200e7db7a9ead433797aab0", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d8b16b87458fb915bdd856dfe37c87de6c8dd62058646ce3ac7b66f3f5d99979", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "86b9ba0627c1c0eece659e37cd84681f267312315bcc4c6d02043e627bb19b4c", + "regex": "(?i)^https?\\:\\/\\/ocpaselakvmsdfykalsckasme\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "68fc3b4227157b35bbae69a5962a59d043824968623c701da65c529257448aa8", + "regex": "(?i)^https?\\:\\/\\/zajile0\\-727\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6ae4fbac0fbf607fa7ba6ac7a62c0a344ddf60bc6f51ce61f49f0b26fa5c399b", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d8fed7cc1dbf85af205877dec67c4b1cdf0142e7d6fe7cdc911dff6b54464192", + "regex": "(?i)^https?\\:\\/\\/dasdasdasdsa12sa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "38cf6a08ca1367d72664a584e7890057d4af8d16fd8c4fc5b77f0d1e458e6cf4", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a142f2d13d1d5ebb341200fcd445fc0375629d4a64d47ae323fa16f88b0f40e9", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fbcfa3d305f000a35e8486decd6283400d851dc3c4c18526bb3f9ef67cba538c", + "regex": "(?i)^https?\\:\\/\\/shakazilkreewcd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2a1e028867617daa9a54bbbc3470d7bc5252f004b88a991ac9a81cd7dbe71e16", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsktalsckascmamesas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "68f5b3d8440cc890d04c110e14c78a1d0428dcf500c5b00525f0bc3e49f204e5", + "regex": "(?i)^https?\\:\\/\\/parnishabvbolts\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "da127af73ef510f0526a50a0143b13b6937c4550f8bc886e27295ecc2272a5e5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduthackasmdames\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d6fb4ebb7bb44fe448638e26bd6ef95da71fcd2354bd5fe960c6776c7c7d1133", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d4c5c40b9f121675db2492e43f9964a0766daff2cc0fa6bac0b1f4912f680b0f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcsakscamse\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "20fa910bfc0cbf1499049ef43d2ca64aa93de702394c70b6b69cc7c10fb8d6c5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c2540d2bf06fad6804a49a255e1e67033ea98cbdbcb044301b82b364334a256f", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a5d66cd46bb8d39e3336e2c73828aa9ddbb19018604c47f4637b675fdaa76873", + "regex": "(?i)^https?\\:\\/\\/pcaosealcksdmtguaxkasemmase\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0ca73dedd77f239d40cfaeaf62a5e3ca90f460b7a06e49c4be3d98912db363d7", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6d3f9087e328c6141cf45cbf53a3c0b44f3273cffe91cd245399cc543dd0fe7c", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cddb21a5f7c2c7381dda522d9b7ccabf630e2efb362bcba6c2c7717dc718251d", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "431e5a19766dc9b06efbee6b33b11174be9d3c5ddadd7cece5d6fcfe24643c9f", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b4aefef909f645b649cf2075193d6bc76b917bbab9908808b808cc3fbca858bd", + "regex": "(?i)^https?\\:\\/\\/shakazilkreewcd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6a1fb0d0be750b3df9d739d91412f1cc612e8a12f27cbd379718c69bed96b19b", + "regex": "(?i)^https?\\:\\/\\/old\\-scene\\-5ceb\\.cepoyig5575492\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ff6f1979f0eb1ba12fa5c447d100bf8749c800931593573021151bb1e28a4c53", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4a7fa8dfddc2feca878f8b4ac239eb0c2d7cc4d79b996401a641a654fdaf9a32", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdsfkyalsckascmase\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "12e07ccb03471e6d6498dbcb6e554eade805d9409e007823f6072bd509dbf66b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "160e06327ee3190a1b043ccc465c1f27f5df954872c8635899e71c3424d41aa7", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "29020758c3c96cb59a7478269749248d1ba38425b0d4de0aa6003de04289842f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a36ae16e79f738e385e00582b246db63d94572aa9c3a97f458cb4977ce1f734e", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "91beafdc7cb7e8a11ad8fd69114aa111ba5262e2f45187e769c7a400ae7df927", + "regex": "." + }, + { + "hash": "1c7a8bb121bcedc92207c4f8291464d4e192b6899eb696aead362697d41ffb32", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a77300c8e2e55143363c5066d26bb920734f801f0774d6606aa9517d9536f632", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2d7ef855de68f85b867e2f0ee3adfd8f51dc015f2b03d8fe4710ab12376d2b42", + "regex": "." + }, + { + "hash": "b2df68645fb820a8f4049ff2db01269706833bc86924fcfc1a2478ef78eb2f2f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamsckasmase\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8f9a6a7e9340e51600367dbd5fc83fce8ddfa0b506af16e2a45f6a4f97255277", + "regex": "." + }, + { + "hash": "763159b39fa4cdc0aeffd3f276c4e629fc67f3b6fdfcb739b4ec59f842c4f5f8", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "eb4a0e94f9bfe66203d0c4802b1118ea52c8126956ed1abaf65776496bdb482a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmackamsed\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "88eafc072b3bbd73436da345207e82e8d90fde909e689ef6aa0f14f364fba831", + "regex": "." + }, + { + "hash": "7c0a5d22f8e87bc5365f6e60b432e652e045ad07f43987a632e9b3ecb2c7bb7f", + "regex": "(?i)^https?\\:\\/\\/zajile0\\-727\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3765b24c66d66a169045e91d5bb1726ef70804269d382740eab158fc94860466", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7406062dcff9a1d39aa1231ae989d8c48932fc23d6972970b4928207db08988c", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "76d594f9a78568d8388a736879ec1a5b8847c7559ab321c835cadf430a1c08bd", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1165f933841c702274da0192de989e273aa6e1b5b20249fd1cd9b9acd200c353", + "regex": "." + }, + { + "hash": "384baf5a50a8798345efcf043dc548c3a399cfa5bedaf11dbccb304ea0e05a5d", + "regex": "(?i)^https?\\:\\/\\/bafymcalientewxl\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c83554eca84f417dbadc3f258b1334deae0b311df3b3ec3cd017f13b2438a022", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porn\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c9581ee08ef6166535c2ba64821813397b41f193c9a6abf44cb2f54f0256229c", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7637d869b3da805b4fc9d3edb8048e0e12d54d8e6ccbdbac2afbdf124accf16c", + "regex": "(?i)^https?\\:\\/\\/luminorenafvnp\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9d38b61def4a7d04c4e87bdcd2807233862a8f3e9015320138713cfe4a5aacf6", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2ea0c1cc1ebd712d6d01409b8d8b3783f6a71ce874f82f1dde7d1a7c8e0773d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca\\-csi" + }, + { + "hash": "9d19f44a8a8b9dc290ae4fc728cef548dedb4097d168e6b6e62c1df9ebbb13aa", + "regex": "(?i)^https?\\:\\/\\/porn\\-sur\\-webcam\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "affa6e3dda4e1d372e5b33148fb81fadebfea6c21833a49e31248e5bafaea231", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "99844bcad9d6795aacbb4e11895ef3d235f3d24bedb472330a77f1edd4c4bf5f", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d75fbecbaeb10c8ef79fcd8cd50dac66e5de6e0e5840a5108f9d8b0ab594fcb8", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d70aa14d5c80f6a0be71bc003adcfd828fe9e6c8f2b2c0087f575785a7f92d66", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "71e3ecf39b8df3bd52d8713c12b06d5a7bc2695b4fe31bbf3c27b8efef1c958b", + "regex": "(?i)^https?\\:\\/\\/x\\-wecam\\-live\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e536d9022bef3a8f3a44eaa2f01c460f6d7cf919ab0b3db66a7ebf89995f36c3", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b57c5c5ac699b212aa833ae571eb29df79e780a5d1d058dcfba27a2f9d39429d", + "regex": "(?i)^https?\\:\\/\\/dasd83233\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eae1d30d3f728da9acfd40c67ac1e53797ee5463942590a696efbe2101a2cdc8", + "regex": "(?i)^https?\\:\\/\\/x\\-wecam\\-live\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "77db8b014a8d4987f0fd2045e2a6f6490b924bbc93411eebefe899d36f75f27b", + "regex": "(?i)^https?\\:\\/\\/lydbhfa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fc36039260284b887041ac0879b945a8a0ab11d968d0b582f1728e0aee47ae59", + "regex": "(?i)^https?\\:\\/\\/www\\.jbc\\-deals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a2fe1fc191124425025793795e6173fe1b907353a6e2579b2e34bfb91b27b53d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcsmasmea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "af7def8fdfaf5929eb8ebc17db0927de1605379e2e1c0c9220369d846c933d1d", + "regex": "." + }, + { + "hash": "5d237f86cd4f6568924bc72f2e19575b9cc836e8cf6f2ee55723cea344f31eee", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c3158435f762957276441a99a5db5b34edfed7c49736136b383f1da1dfa11ba4", + "regex": "(?i)^https?\\:\\/\\/zokisj2212\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "601395c2b8884ccb3813871e68f11256416861b14bc2e94ca0b7ec0fb7ee9bb6", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1fcdf3fa9b5e6b2d0fc72dc7d2d54dd1a10d1531c96201e3878bd04c42515c2c", + "regex": "(?i)^https?\\:\\/\\/dasdasdasdsa12sa\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7789ad654b2860c5cf4049156fdb7919dfd1066736c1562748c7637498e4b3f0", + "regex": "(?i)^https?\\:\\/\\/bravespiritnpw\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3380047b6c517091f87e50bcd8c93e5d79bb0f4fe3b5ac4d284157328376e07d", + "regex": "(?i)^https?\\:\\/\\/lydbhfa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c3241d9ba92fad172672356fc93ef12c4a9c752d96a85d4e199ad33197bcb276", + "regex": "(?i)^https?\\:\\/\\/dasdasdasdsa12sa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b0ac71d3a2393a9ccf86f417b8de26f6c68bb12c50dec5b552d71f2923375bf4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3821465e99935febcd81df2351c6345505b31c48d051c7249cb6e50a506312b6", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "280c4d4f54518fe7baf9b6213a9cb48752fcc24da0f5ba68c6af839fed690328", + "regex": "(?i)^https?\\:\\/\\/dasd83233\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b9d935ee8b3b29513cb12b74945e20c405fa2427f0a3cbab490d7baf3845dde3", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmackamsed\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "60d94c559d2ca53d525c29611861c0feb4a1525f62235922920692af44bffe33", + "regex": "." + }, + { + "hash": "5537e661c2fb2a98b2265d452e3c1fb792ea2c4f228b0ff25c66ef590a886fef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5d7cbc03552538f1a8617096bc75dca55fe8dc0bd08141516d762ff8dcd13fd5", + "regex": "(?i)^https?\\:\\/\\/bravespiritnpw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8f7ae69d52a61d46f305349e4bd8a996c9e062a6037d784eb7a22d15fe66d0a6", + "regex": "(?i)^https?\\:\\/\\/animatyirf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fe0848f813accc0a110be6759c0d8a20fc5c59a35405d16cfc9e67b29eae0a47", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-camera\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c07a80f7cc4490e01c28e2af77a2eb9cdf4aa82e9116da74788581bc5f9e6853", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "496ec1efbb93fb0f50cb40059be1e5097e50bc7ed13375d377c1e9593c3612f0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcsmasmea\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c091a8c3c0283a252e36ddbca68ea5eb8a7fa4bc5232b860faa51a2563a6da6d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a29ab85ee37fb83114693219da4f96159cb4b56e6c31e00315b64dfbbc31728c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahscaksccmasem\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c07067e4e861f02cf8f17dd834b489f7beaa67821936f098ef0f6737f8b415c6", + "regex": "(?i)^https?\\:\\/\\/tailerodyxee\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "952a14575153764858d8e32e56261aa8893546eb6c007c07e90410b56182b128", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasem\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "673d347a5922e7f8d4bf393d4d288785a1f88718d98ce9f51ae815e48c9f2048", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "adf61b60f37797e8ef8a451f15403997b3d8f7a491caa7c78333841cbaa3337f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "08a0719fe780ff20c05b42bfe2fc7ecf7846d776773ea4ae391bbef0c0ecb735", + "regex": "(?i)^https?\\:\\/\\/mexewutesxe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b562c8094581c41fcb30bacb18e77bd4f53d2e0ee004415d83d89acdc3a6c401", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6a8c12eb4435b4240f43ab6675c0cc566986a8015ad9f6cced430825d83bb81f", + "regex": "(?i)^https?\\:\\/\\/xanaxandvicodintci\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74343eb40129699fc2e18615943ddb499f34e1176776157817dac277748564ad", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9a2a1b5c6e381895ece3763f15d957b426f6a59acfa586aaccc43a384ed413c7", + "regex": "(?i)^https?\\:\\/\\/porno\\-par\\-cams\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "84ab58461b9e2ed62dd1e23223a4a402bd8917b3844dee980775a4ac64d291f7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f4ba10670151feef7ed9765173b4afe5fbb336a98c5f1d64bb633fdca6a9c2c0", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c3e319dd351099c5303393fce0df711b21b094436346c1e5f6cdce3c5c31840e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d8fe168486a735ed5cbf427a4faccbd4817d49656e49e0d70b7f1242a9d665e7", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "63fc1453b0509c3e159a755daae57fc15a799a4bca5f8e618e62d4993a1921fb", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "198530565c4c253332828403cd447319e6b08e01110b43d010a1a7ef2528bd36", + "regex": "(?i)^https?\\:\\/\\/dasd83233\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "277a910764f6e1c4b2136ca9724762a7ec03104678925cba08c5367faaaa28fa", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d5482c07586da546d5b2c06bff691b61c7d8ef8e2299d40a0328b334f700e56c", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0b8829d47d3f10275f562905e038cb50f1eecffd2b927b14b66107a4d7bab09c", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "654169f30eb5ffbe72b5dfca134ea033faf76425e5c43dd75e43baf9dae15ded", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdsfkyalsckascmase\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c26b09d80f002a114709174dce6165c810080b0b0dface9df34d2bd3c6d2d0ab", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b62e89a6776758fecda7ded5612943fd68bd57a3a9b8cc9b68e8744d87ed37a0", + "regex": "(?i)^https?\\:\\/\\/cornbetmanaxtemwl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "29504cd1aa68fa1b00fab3b9657d55f7a1a5ecc1051551f9428d8167866a4233", + "regex": "(?i)^https?\\:\\/\\/sulanjana\\-team\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "06ee2412e6200bd0960171697d3ed50b3cebd6b900603bc6054f027080651db1", + "regex": "(?i)^https?\\:\\/\\/redirectdep\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d3d92b4041371dbddbf1fc6699232ed2c16a0c2a2af38d7bec88399a0d3b7c71", + "regex": "(?i)^https?\\:\\/\\/porno\\-par\\-cams\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "633f3bb43a6564577c6d763212d0f15a9deb7d6c39779976b5dbacf968d59bad", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9c0ec5f0453c66f381cbd607db9aebd8321229e707f7fecc280a85f303d0b98f", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bd1d3db4312f2ae442623096e4e3ee9c9c4da0236869180a503a8e30e4137d2e", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b0139444ffce0fe57d52c9b6893c77faa11f4a1a8ce8d917f54c0da21b544b1e", + "regex": "(?i)^https?\\:\\/\\/luminorenafvnp\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "107f4908f39decdf7860c61594eead90acb83b596a5d1dfcd1ad61ee743913c2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "39f39a10bf26e9b22888e95114d12df427505fd14492b023ff679b6e2ac24be9", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-camera\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1276fb31791321a471c025e48f069cc054381dc7f31251f64d55da82a1489292", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f62eecc55e89caf9cad2bcc07c75ff6dedf51154f7f5f541cf538a0fe58a04b3", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bc7f624ef5a0e03c849836031cf67f0081db0d74d2382b8edaeda282de40d740", + "regex": "(?i)^https?\\:\\/\\/tailerodyxee\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3d3327b37fd0c7a1bc23d5aef8303b81c0c6287f25ec757696dc6894e01b62c1", + "regex": "(?i)^https?\\:\\/\\/sadxarasa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b891475b3de0d9f61173a180b8185c4431238222b06d0007e7c7a8def9c9a256", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9ef83118c4363ccf12fff5659abde2d024df54c97c401367f6fe8a46a0064ae7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsamdtuahcaksemaesm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "184cd33a5028043472e8f9b3ddf562d7db090b26d61ed799eb990e866913e5a8", + "regex": "." + }, + { + "hash": "93a5453e19970da86d6ed7018f28dff278e7180b7b1e132c02c0405c7822282a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "440c4dce3b37a3c0fa32fea620cfa2c7b3014af95f04eff7491e7d46f7e5e6ce", + "regex": "(?i)^https?\\:\\/\\/ljkhkjkhj79\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "629a635708653915c1243166b53faf4fba299c547e9e9c06fbe149f56bfefbfc", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "102e380c6345bbb6657b2a089b2aa89fbbc5b6e7fa70288470742c5789b7b640", + "regex": "(?i)^https?\\:\\/\\/zkika02822\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6a9272e0b3cd7d0048147b302280ebea3dcd651077dcebd087d8a7afed82d2d9", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8328469c51c242bde777493aba963d438ba9aca9c4feef983e9bec775f423a5f", + "regex": "(?i)^https?\\:\\/\\/shakazilkreewcd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "88a3ed2d582192410f65127a9228062892206178f18d86b053709c71a6d007e9", + "regex": "(?i)^https?\\:\\/\\/khiyhu86\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "79675fabeeb15a29bd19085e931b3f59d23c280af2d13aba941a4b722117eb0d", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ce16f0a93a203841d45f47982404ed8738031034d8b50538d53cba9003a1e656", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamsckasmase\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9300f7129762472e444826aa0ddebf3110d3e7216814d8c91634d73b586dff2c", + "regex": "." + }, + { + "hash": "9ca10acff50c7471b3779e490f589ad1d6e6a72883f72d01fa7c9b8f248e83f0", + "regex": "(?i)^https?\\:\\/\\/autonomy\\.com\\%25E2\\%2588\\%2595dwncllkg\\%25E2\\%2588\\%2595eoxkoxh\\%25E2\\%2588\\%2595qzrra\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=sprung\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "eb4c6958a3180ce460c6025d2ce1783c8beadda87327d4e103fa41c3f0436487", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d92ae27048c4f126fce06cb9a79ce17ca909c909e96869dc86ca6a89683f9202", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8ec174e2c8e707dbf253986615a042948715d0e876f658bd69d22292852a7465", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-porno\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "859305e1e50658ac693967d3954a23a5e411949b711aebc8d18e3f46c20359cb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a20b453d31a57297239a2da0598c0b2322bacf8e4692c44ba3212b4616a9c4f0", + "regex": "(?i)^https?\\:\\/\\/ljkhkjkhj79\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "eae82ccb828b968eeb7afc3e67667646c442be3c079ddb235dd836f7c712c0e1", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bd3830c4400c207a07f28bb665cb7afbe8021037e5301080365b21dee7be4ee2", + "regex": "(?i)^https?\\:\\/\\/parnishabvbolts\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e1986f90073c8951e193f57dc82433ff65f0880403005f37052593004158d2b4", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3029440cf545761fb03459da01895d3e3157eba6f0906d51d8ed1b463e8cff34", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fe44deb33649dd759912e5bae4a918aa8a2ffceaf17540a7b3c65c5f11f57de4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuashcakcamsem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "de1afdfabaeaa77af250801aac45be1d297090fb8d66fb65ce8285a372cc71b9", + "regex": "." + }, + { + "hash": "ece2df48e0eb6ba70398491a35201976950d48107dc4f6e9829f2772b10ddac0", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9c569c364be085680bfcf05870941db09f2de7e3f21ec053711db9f2eeda33cb", + "regex": "(?i)^https?\\:\\/\\/trustreward\\.vercel\\.app(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a35c4cf70e62bb2248807eed4ac142fa6aaaf30f1efcead1dfd1e6d63c11af1", + "regex": "(?i)^https?\\:\\/\\/zkiiika10010\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1880e571a6f6b7594b03fc1daff909023621ee9c5ebfb462446f23efab840f18", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5c5c8f1d03a726bf6df10970f40600a76b29061927a573f967722a4a12f13021", + "regex": "." + }, + { + "hash": "3a420cef8cc4d8eb9a995563ce58da5767d999f5cda571f18a048a65a55fc977", + "regex": "(?i)^https?\\:\\/\\/zkika100\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "483ada3817fd9340ecc5a9756fc581800989407bc423d25f3ff56576e0ece7c0", + "regex": "(?i)^https?\\:\\/\\/robuxcardscos\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a1d5a780c5e8e8b2e5f0a0cedc6fd39949a22a423d0e2d32763a9637b56bbf90", + "regex": "(?i)^https?\\:\\/\\/dolleybeckldewb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "64d154a4399e108d0cf55fe100aa0d4e88a90e7b9459d9a76d71b1f1d08dbedc", + "regex": "(?i)^https?\\:\\/\\/shakazilkreewcd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3fd438fc5e9f318fd3a0fd3008ec0bbdf7d24c55a68d2bdedc0a74a51ab56ea5", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "07a9b0476a4841360266b564a96c8bad6d2de33de3df602955325a0c24fb73b5", + "regex": "(?i)^https?\\:\\/\\/cornbetmanaxtemwl\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2c03541fa474bb8f02b52936bf37016d910988c1cd230617261845da2bccf7bd", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8b211a94c8ec0df019cfc73e5de58796d3702305715492d672682f52aef8cb12", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a88be6e9c89183429ffb438ee032b57ea8ffb70faae0ecd80e9bd038586ac36b", + "regex": "." + }, + { + "hash": "9ee906a029b782be668435bff5b3a45bc1abf54b177458c93448c0e41aa76c2a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcsmasmea\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e2e613708d7b0b419b8a18a523d853aaaf9cf2284b04fccb040d7c3485066f05", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3c04c5b7fbac1052b62a5542849174e0cc9e81d5f16a7e59c013ae24f39c289c", + "regex": "(?i)^https?\\:\\/\\/porno\\-par\\-cams\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b4a12f2ff1b7af4736a92de48227aab85bd65875d25263e08a9e0227399e2adf", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "017d6dc8b5ff39d5c35f372e925f5b12f86dee4434740f31fbc4920029fffd9c", + "regex": "(?i)^https?\\:\\/\\/a0u0ed\\-ex\\.myshopify\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "58e3788cb8c79cef3a595bfec58b448e9b3bbf622a395f12f42bd91eee729676", + "regex": "(?i)^https?\\:\\/\\/knick\\.com\\%E2\\%88\\%95twuwqb\\%E2\\%88\\%95ltltxs\\%E2\\%88\\%95mwnglmig\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=edwin\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a93c9a29cfd5cee668175598229e82e748a75279f5670c88fe4f5c5ef70a758c", + "regex": "(?i)^https?\\:\\/\\/12mahboob\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c99a47df396b61f2f15bfb4dac5164057dcc1ae56542c8692f190257b1cec643", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8584b18f31f9a8ba6199b9e9776bb3784c032653cc3b1a528ed15f4f4d5a1297", + "regex": "(?i)^https?\\:\\/\\/zkika100\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "64e154c612eb9c49a1f2f0e385b14df45070fbbc039c473cc079cd0a17eddeff", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b4dfb26230b73324cf4c458920508e9d220fff6d10613564a9d2cf70026e7370", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-x\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "444ae390ff2117f2d6de1918a15c11b5c5415eee78bf65b3f0cb9b1da527a101", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "608f191513f50e247fc8510dcbf2e3499ceecb4df418fb55ea75bb6139dec2eb", + "regex": "(?i)^https?\\:\\/\\/sadtbsizb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "45ac04c453342125e1b140fac8205ac7e1c129bbd8ad6b202f9dfcee93405523", + "regex": "(?i)^https?\\:\\/\\/khiyhu86\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c42fca6c6ed23f41041b3797b6083c5d842a577ae41ab8c77966b5a22cd545ef", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "549c4e907bf2ba7e83557b32c3d843b5e5515cd918cdb4db0935a935d6d1efcc", + "regex": "(?i)^https?\\:\\/\\/tailerodyxee\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "339e6cda4f7535258e5f9ab904c25469b8130c9f0aa35fb6b561e1a789b778be", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3c1840f021d3c33a5ce74e851d7026c6992c075c29e0e668bb08345af62e5a7d", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bd28d2c7454470353b208d50038cfeb570938bc993d5e6e72850f400885135b9", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "eb54e8858423c0aad66aab73cb0b4fb3ab68e5f05df11ae0154d66e9ab65d01d", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4d7c4b45de9d30db4873bb0dbb2b7fde9b31625816b0f930a5d7a8e8e7b85dfe", + "regex": "." + }, + { + "hash": "87b42338b6a6b0b589ef77e92fd8a41da7b23c77fca05648109593462e9c7e41", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "22339b8b5586ca5bc4a67ce870dd60236cce5b9ab56d948b497738a69f29a8e8", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "111f208f0b044d05132c69cda6990a690e0ef028fdee3bc5956125a916febe25", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasurahsckasmeames\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d577a38359cf8234ae7b8b414b2f9c5b7563b9260c15e6cf83a8feca4b414f12", + "regex": "(?i)^https?\\:\\/\\/rotiuf\\.com\\%E2\\%88\\%95gsvvwokfpg\\%E2\\%88\\%95espwia\\%E2\\%88\\%95bjtyk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=duqmurdlz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1b62e4d4dec1570a0ceb5e10efa61d8ed6842fdbabdc1bc52c86a890bb753af9", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "64bb1a0d6d74e65e02998ee253729b0b2504eb54bed0eb6f2158920c9400d4dd", + "regex": "(?i)^https?\\:\\/\\/shakazilkreewcd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "485f572bda2b0d5b4524f6e4068cc159a2086874a2102ea41827836f50caeb20", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "77e3aaf25906b7f6b4eeefd15d0715756f79798171cdf13162f906506cf60898", + "regex": "(?i)^https?\\:\\/\\/live\\-chat\\-porno\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cd3dff9fc96ff47e58b02db78231ecb36ce301d33dc9a1cd890aa57329a2064c", + "regex": "." + }, + { + "hash": "c82e693bc3012a97cb933f8599a7caa09e4dc5478ce465984486bc2fdf0c014d", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-x\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1bbdc110d0edb94f2f6622658b123117dfc2b1d3ea365a2f37838382eb1b9780", + "regex": "(?i)^https?\\:\\/\\/bafymcalientewxl\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ab49a3e10152c994f0356de9211ad642e41b5b6183fab1a64c147df4343e01e1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6c4ec7edcfe38339cec03af0c4033e24ae0a3c23d69e2a509f0a6f8889f2dd1f", + "regex": "(?i)^https?\\:\\/\\/pcaosekakvsmdtkacmasdkamsease\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ff52448d04685b10540ed3218c866a4f7956775eeb488211dd2425517867836f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "98908f09c47e1f5676fbe13fa0888ec20dcedc4dc43201e144508c8e95faa4c2", + "regex": "(?i)^https?\\:\\/\\/x\\-wecam\\-live\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4894aeb345bffdf87870a59f31ab764b2942300f9eb65f0c3be54baf71bc00a6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f421dd0397d7e7b1b987e234a9f57dbb5f94e95608a33470696cada6f6c0b3b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+k(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ddf3e4c38dd6aaab9ea6cd2d8160b977b494bbca0192f99326a66db4d22fc076", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5200cbdfff3e7056485b70d91f11e47993c065f2009aa611913e4ca45800ab3a", + "regex": "(?i)^https?\\:\\/\\/zajile0\\-727\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a9ca2dd2636d2e0c2f01c77b29df64e341af21ae7241fa2d6e0ddd0d22f22b17", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7644cc41d86f1dfe527c5babc613b7eb5522cab145deb0c31758788d0194df30", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9d1ebb11ab6351d3dfc46ad54fc44d75765536c4b4707bb8308f021670b082e6", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "32b3c8c7e64d25daa32369cfcb242d5e0e0f190d01a0d271cf74616e931a9921", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6cbe6a83df9eab972eb6e73f86ec00ca429351c74c14439bea337473a34e45a2", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "aa8f46b96d610c73cc660c3463f562a8f958e83ae64b57ae9ffbfa9698ae8bb7", + "regex": "(?i)^https?\\:\\/\\/pcaoselafksdmtuaschaskjeamsema\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2ea01b8c2facd903ec08717d843af14fba68a93edd4c2a9bfe1417308100d278", + "regex": "(?i)^https?\\:\\/\\/pubgmobileus3\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3714adb8d5126527d53f7b142b2f5d318b36782d84027bfd22d11c64a078eba0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "19a9a1d6062390cd8f31c4c8aeacf4c7d0ec89798af3d71a3e58226850df0090", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-porno\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4f42eaf3e6aa03a1de400f19f2cc1ab37759c11943a6ca31a07fdbde60dff622", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuaskcasmcmasem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e1607a24296d824db9b5a5ded17479ba96be39e664ff47985937b0c9ce9eaaf1", + "regex": "(?i)^https?\\:\\/\\/gfhhfghnbv\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e805fdd3acdb7a2d39d987e00013d94ad4e33e600063a80b3b155ceb37a2e088", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6dfd2d387056a3c8c5e43a6bf8986dfb566a3b60e120f7106ead6db0a62a362e", + "regex": "(?i)^https?\\:\\/\\/dronprancingdmb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8058d9ec59c35e43b3afea0f4b1d2c55fedf6506f093624683cdecfd4535ab42", + "regex": "(?i)^https?\\:\\/\\/vjzajjelda\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "331a429d8b98c05d34b0dafea03f93a6974ca7e43dab641820dfd42f1f9950c8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuachaksmeaes\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ed803f8a1e5888c88ce7383f667672a7a6886aae9c14dfd33396caba4c95bcdd", + "regex": "(?i)^https?\\:\\/\\/sadxawa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9a50af252b921d80f2c48beebfdea7c96a10cb8b9bcac1dad3c4451a89709986", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8aa02392b919e715ad5a76df8c22b0b2fc2cced1a37b41f27d22e04a356bdcca", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "66df877ae3ac72a07b9f3e826888ed6e9a36bb1b2d4bb2c71b2bca71f5cb6ef7", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "68ec37ea261d355b7086b1ab8da6fb72eea9881694ba8f70b134999c61547f95", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktyamckasmemase\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e7fb4470c32a893ee4629d0e5358196b76a6b3ebaad03a21dafae85982c38", + "regex": "(?i)^https?\\:\\/\\/adeonerzcf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "69a0f5c782475cbbd3594d6ac669478ec955270a7ba79b355ab177a5609bf2aa", + "regex": "(?i)^https?\\:\\/\\/heidaroswitokihoqqws\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dbbee27b646bab9bf51577d6f06d332c7feba41fc160fdafb823158b5dbd872b", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8054a89f52908667eeb0d8f5349ef9a9d4125b785b21f77516e0e88799e61568", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtklasckasme\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2cb7661bed8b1e035e8a4c258ad8c6ca68c18c6efef3d8c54f92d42d1838aa44", + "regex": "(?i)^https?\\:\\/\\/zkika100\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a1cfb275e02969c061a0c660ed8f71e146aa62594eee5280c6fa5d868620f713", + "regex": "(?i)^https?\\:\\/\\/robuxusername2024\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3b3b792e860a16b6388329b6349bd4285f3ea5af82b74e54a408038213ff920b", + "regex": "(?i)^https?\\:\\/\\/video121312\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3f84d327611677444f368b48db99e1ce7d55a66ec77e81d6902fa03678e87c45", + "regex": "(?i)^https?\\:\\/\\/animatyirf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a24214315c47ba78fb3d923cc1e89b6d0a546b89968ef28fa424ff58afd9259b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "608f46d6ee01be71911e68e7c7fb16631ea4426e6fe93bc086b59b6307709a5e", + "regex": "." + }, + { + "hash": "fa69db84397e4838d75e47a85ada4a29bb9a8e63cdb50987d61cbb21eb41035f", + "regex": "(?i)^https?\\:\\/\\/lellmanundefinedsnihueb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5a9dcf5ca829ddc87ddea6e9bfc7ed67b53533ac1dc173ae0496e7ccdfa9b259", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "09a0e45aadded978daf70f6a5089250aebab12702f85412a481c10f87ae14a55", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4957ac5dbe9ed93a83071bfd547c293f25b69cd4d6413109aa2cc8a64eda16ba", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f453866f3262ca3455b36251d2dd4956e2845dc7dc9274d1b1551ab3022df38e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdsfkyalsckascmase\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1fe6fa3b36b8ea09a4d52e635792d6442f85bd3cc893efecd3e62fea93862a12", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "54fcb535f4b621d5f98c2b9ef7fb076d73da899138d3a074e31733216f95a9e3", + "regex": "(?i)^https?\\:\\/\\/shakazilkreewcd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b4a1432e4058adfc56d4daae54e43446a1d013fef5616be744a002df5242e98d", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsduthasckascmamse\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1e46ad1bd2367f82636c9510fecc556442fb3fd854a48dbb0ae4c9560ccfa819", + "regex": "(?i)^https?\\:\\/\\/zkiiika10010\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3a073485f9c1a3ada88ecbd80808b8cfa6ed700a073475809b08c410569d33c8", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8f70add52c09f331529f9522cfc755b0734cf8b1d21d7200b190725dc916dee0", + "regex": "(?i)^https?\\:\\/\\/parnishabvbolts\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "99f47faffd3e589b7fa8ea7e1a27531eeea429ff29b2b21b383a122c1213cf6a", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e5da410599346ea96265975b80cfcaa45249fc1dff852e936806476ec6146ad3", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7146ef25019031ebc174cace743f4ba684f1ed2ce274d3f4a26e3c7b1ed3d9ef", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-porno\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2e35be8dc1c27339178fd4f81091247196ce9f8671c7eeb5f0602fad68c4ec3b", + "regex": "(?i)^https?\\:\\/\\/cmetankabreadsunzqvdut\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d8c4478c11b995c619a07a1fe655d159a6c48e4017b1aca1bb7f9fbb44e043df", + "regex": "(?i)^https?\\:\\/\\/madeonpumpamzawu\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0280023d06d50c12d79d7b689feabd3f3f023cee8379f7899b20f2bd94470a4d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasme\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "65755eb5f30e3db38f91adc5fa93c6ec40b57fce2d3e9f54faa7f293e68ed22e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porn\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "09f7f4818f3dd3e948ea1b9e16fb2c83fee2067d6f4f2c823b5a1560faa7b340", + "regex": "(?i)^https?\\:\\/\\/b\\-t\\-104201\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a730ad5902e7d37a7e7a3b03d19a2d0105ebd14a4cffdd35bc47548f97d9b08a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oyMDI0MDkyNS4\\%3DwIKXMDSoASAFQAw3D3D(?:\\?|$)" + }, + { + "hash": "ed0ee02d9deff90c45b8c02bb4a659ded7cc41d80cfa5787a5957353f7033c6e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakcmaskeasm\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d028c2aa9097842e61c8443420f60e6a066cabc4b9b4acc5218dc80702feada7", + "regex": "(?i)^https?\\:\\/\\/dronprancingdmb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "16e8e95525f588f9b8534162a5cb7d6802dc1a3669805d68bc2db2afdc513579", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "21a45cfea7b7808c56b15e597989f7464f66fd7e19816f848735bfce69da84df", + "regex": "(?i)^https?\\:\\/\\/zkika027822\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "28bef99c2bd85ebd1d070e69125d338eb1ae2bb94def75965f54be5d90c199f5", + "regex": "(?i)^https?\\:\\/\\/porno\\-a\\-la\\-camera\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bc64f787a7816eabe804091239659d8fb383e65feaac43a0f1469650b618005f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsamdtuahcaksemaesm\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2dd1f1a4e5da91cfb69b5c521f0929f3d52eb8d94acd983ee072a46354f6d393", + "regex": "(?i)^https?\\:\\/\\/gfhhfghnbv\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4dd8e86d333f37d00dce7574997dddcdff96b45af8bb9e433000b7215010b230", + "regex": "." + }, + { + "hash": "232810667e5f9491484e151fbc3d1006b09a6154a895743540826882973bcea0", + "regex": "(?i)^https?\\:\\/\\/dronprancingdmb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a6e3c50d53e37773f123c0860088b3c310d3080fd8de11d98c8a24ed44deb0be", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "11c02da5a309937ae5c18301c3d0dd9142f39d6596b85212187e6dd9db89e188", + "regex": "." + }, + { + "hash": "1257d89991e89cdd63440db2a812b6641de729b466e8f2a8333d2b48bce4bb50", + "regex": "(?i)^https?\\:\\/\\/animatyirf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8ef91a7bc491c69dfcca30747aad7e6fd593474ea92452a7e62804dcad564da4", + "regex": "." + }, + { + "hash": "a6aa5b0f7fdbaaf8ececaa5a87e869885c5fd70b402dad5701be03c6089ee363", + "regex": "(?i)^https?\\:\\/\\/aoiha41\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d5fc4b1a17acaadde7530af9113fb630df365a4e7671611e96a31fa940ec9aaa", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscamsckasmase\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "cf6656fba4e845f94b837340f0014fa9d9dcb9b15d0241e58069e6bab26037a1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasem\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f9654fe362e681389f5250c67b8e0f86bc54c6456f06c3076950e99db00da3f9", + "regex": "(?i)^https?\\:\\/\\/opidorancgnrrw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3c08e5627f17acf224f089a1ad0bb88ccb2f2c81eddf167c309ee2af67c448ad", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakcsamsekamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fc733da151cb7d0ca7581fa6ef5dd94707d8c41b6ed28ec03b02c58b60d036aa", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4ee7ddc0baf09efd5a4abca908e86a8aa71d1e52cf346acd3a622e03ba6940ec", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakscmasdkasemas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "46077bfab69b44d538825b2a612ea863fdce1bbe515bc643e50fa20fb6098faf", + "regex": "(?i)^https?\\:\\/\\/mrkatstayfunnysubr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ce9085ce3d0b742ef664cba4752a7d8c6d99cfff85fd3a8af20cbfa9e60fccf2", + "regex": "(?i)^https?\\:\\/\\/animatyirf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8e92eb79313056ea917282d12c90752f1f009c633ab2d62a9710f08aee6176f2", + "regex": "(?i)^https?\\:\\/\\/zajiuel6\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ddbc27d8b95f3214bbaa78014101a618fef55e978ce441148d0cdd2b68548e04", + "regex": "(?i)^https?\\:\\/\\/kendokamikadzervs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cd896fbc08ec58de92517167ec94dad54f936e8d244d19dcc00adba0277e3051", + "regex": "(?i)^https?\\:\\/\\/zajile0\\-727\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ebaeb9bfc985daaf0315da92c22e90ec542cd9f7d071251fb11391ce0335aa5c", + "regex": "(?i)^https?\\:\\/\\/elfundefinedfmusr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c7f241b89481859460313e79c994f3f204376766ec490c83102d7b64187ffd92", + "regex": "(?i)^https?\\:\\/\\/rahimriglahbb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c83f1dbdfcdcc21b36db11a25d7826304a298f4efb3f1a8fa923f102cd2d9f38", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsduthasckascmamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "19138e88482c0b5eb472872b19e431c705539f290c86a2b9e8abee7049eb62c2", + "regex": "(?i)^https?\\:\\/\\/deadmorosejpzggxi\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "20e8adb6fedd96f80d1d0728c9b0818afe1b7592c0d52eff7d2789e24fb32a37", + "regex": "(?i)^https?\\:\\/\\/cornbetmanaxtemwl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6eb32c66496c7dc86383e5efaa5535af44ca49d56b721562aa9f034e2bdfbe03", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdykalckascmamse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b5c7cec58b2d6de15aba0425165498910fe83f6eaadd8edc949060e5022931ef", + "regex": "(?i)^https?\\:\\/\\/zkika100\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "43885c5dc813dc89ad65af31cf79e52f8b2b3e572fd29fca8b82a66f1d7d9f7e", + "regex": "(?i)^https?\\:\\/\\/gfhhfghnbv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "29504d37df51c01e24549619d1195230cb8a7fd5f7fe5c7671b3cdfcc2b292c0", + "regex": "(?i)^https?\\:\\/\\/dimonvorabv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4c004e7fd7baac35bb0d14cb625a7c5ce1b6871b7d25bf4810fea9ccf09e3e93", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkalsckascmasmedas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a23c07a17272b9b755b218fb6d7d17dc0fe7dfbc9e08a25ad8aa9bf6a015f8e1", + "regex": "(?i)^https?\\:\\/\\/porno\\-par\\-cams\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "60e97c85dbba260586f41940b3d31813ba2edb44635d5277822c151191552af6", + "regex": "." + }, + { + "hash": "b1387ac62f8d82a74e64b80e2419a6bc9230893bf61e32dfdca6301cc55bc123", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsktalsckascmamesas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "41616109c35c94ed4358ea9eb8efcba4041dd8082fcf3728aa7e5a10418198f6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvsmdtuashcakcamsem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0bc17233d611a95890a7977c6ffce8af3ce344a15d601d95d1e1cfb2461d4843", + "regex": "(?i)^https?\\:\\/\\/mrkatstayfunnysubr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a0089a5071a6e382c541b1cb5d69f93f9c254ea5bf748d28b28ba6ad062ce0d2", + "regex": "(?i)^https?\\:\\/\\/pcaosealcksdmtguaxkasemmase\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6a830c495170771a53fe28aac05bf73e40739a8235e4d6fc2d50749278c3f2ff", + "regex": "(?i)^https?\\:\\/\\/pfoasleravmdsfykalcaskcasmemas\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6beceb19a697dd1ce7bde5cfebe35618a7f7dd950d4b49a164ab36fe2719e445", + "regex": "(?i)^https?\\:\\/\\/dasjd833\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c5a322aa415986c14207f2e42fedba39cd48dcf3b78609f637991746ee4169df", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+d8ouxa(?:\\?|$)" + }, + { + "hash": "44437c6a4c0caceb7612f5e104ba8c9ee8331486815702d16980b1354cb95de6", + "regex": "(?i)^https?\\:\\/\\/dfghdfghgjjhgffjgffgjdfghgdf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "779bcdd8a5df3a6163c58e04ddb17037bc866447f69470b09a16eabfdd24ddae", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfjggjfjfgjgfjfgjgf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9c95cdd980f44cb7aff5663b97f0d508a350abc3c9597bd892b729439c4b9de4", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "23175963e18cf961dc66cd10f6c132b76d86614fcc7861355cb20aff58b73cb0", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6aba0397c3c0e12a76d3baca8a8c7ca7b9a66b2d37fdad8331d34b513b79fa6b", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "83627dae8004f2748b0c5d03677c72fe440e5dc97237c36d5dbda914c2d45104", + "regex": "." + }, + { + "hash": "3cddb0083351f75f55157a786ae6b4c4ae014313a659767b46d3691e1c3aeff9", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7c53131978c459001559ec25236009f06793006cc228707202c6da7f90009668", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f2598e5f0876b610df61ec810c5c9a9444f21496937f10fda7f844de431ccbc5", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "53646ec4f9f5766d2037660d139398e0a37c7bcb05d71e28db5c7a2c5057b5bc", + "regex": "." + }, + { + "hash": "1b89e44904e9a10a727d4b7839c312a8576fc76768f0ddaac644ffa5ecfb8731", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e1fed0d60a5b8695c636348d2869eeaf0ca2b7d35db38877ec2a785351bdbb41", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "23793c2fe5cdaba664d01099df9059bc7074c7e0fca532f5d3d9654f1afc25de", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a404f1b9b485d998609588c1585013f01ea3dafd8d7f269ef2a0aa09e92fa155", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8fc117d3dc80292a336f57aa4afcab3a4a2ae801717b53fd790a9426b297fe2c", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5642d4096397e8380808b5e5660cae9484694b382ee7113e33d76d7e998abc7c", + "regex": "." + }, + { + "hash": "1a96ab9d67eaff020d7c665dc0e6f20f664589a9a54d6570e715f65212bee048", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9c76542aec00b95254269bb4b302b710194957de795383ac4905f6741b9b90c2", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fdd3eb599c73fa9400b94928fc67294bf22d765414803c622f2c8bec073667cf", + "regex": "(?i)^https?\\:\\/\\/bony\\.com\\%E2\\%88\\%95czejgw\\%E2\\%88\\%95yomjnjly\\%E2\\%88\\%95btohazy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=edwin\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "76420f3e7eb65756d0645123675c9b82a19a2fd57e2ddd78717df47caad8a6df", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "34c06a8d083f2b4968eff7fe24e3ee4939d373410bd8c7deadd757b6d16ed76b", + "regex": "." + }, + { + "hash": "239874a0b2ed5e2ee493f41f8b11f07195994fa0fbe5b2d2c6557016ee15983f", + "regex": "(?i)^https?\\:\\/\\/od\\.sgkhiiw9m3529\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "21ced3dad132562679e68fb78a6b81a21d75869ab0a9a4b3d70bedbc4f4b5430", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "308c4819219e768c1794c26cb61d2f83ce7dfd7683a3d2e78ffab75c44df38d5", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "45a4741303844253329d5e124975f272907d42e45aaf41152eb893edb92ea095", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d15de9ec33f53ac4a87c07ac94d8d33d42acc2acbd4f63657493dbc2e573d1bb", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fa1cfedb0847814497a451eae0d9f9d9c4882accaef59a937d9ddfe50aac3d5b", + "regex": "(?i)^https?\\:\\/\\/tube\\-porn\\-webcam\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f8ddf4f069e3b44f9d21822bdc2a083e51d9118d5d2f1fce51af54f81bfce316", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "aa58509f7cd177c0ec0e5ae2bd7007786555c9a75e8d2e39ffab82fea0d1360e", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bc6e2c5a0f8548e885cb2ea80c24cf9c8767746b527c9d969f6f44a859e96fb4", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3571ccf871a732d7da846897871a27c445d0ab7639808cafee7e39c62ff8fdb7", + "regex": "(?i)^https?\\:\\/\\/dfghdfghgjjhgffjgffgjdfghgdf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "80c11f631686ce38f389176e2db8282e9c6d37209da34e9044ec730665ab798f", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c8f4af8a22ee1125a47a575c37b79be0d4692c2542cde08ca7137f9834cdec6a", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8987d6774d4e2662c2d8295cbc3ee605cc74dd325db129a2b562a4f2e5b1dbe6", + "regex": "(?i)^https?\\:\\/\\/osiufhsdjhfqjfhaioerufhdsqdosd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "36fdf8e191482503aa41cf6cf234b06bc9e26bd370236e2058a2ccb801b6fc11", + "regex": "(?i)^https?\\:\\/\\/xxgratuit\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f75345ea6543a7c684b4c22183bdd8f47f7141bb62c49ec56f2ba125fcb5f26b", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgujfgjfgkjgjffgjgjf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "53efcd5c19fb2e7916d6c51e8ecafaf37f22277ddadb3ba0b49318d79f363af5", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8e8d08a5115b4f55e122a0de2b74cb112e989be6f1d1d02297ae41f69731bd24", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d41962aaa49dc7f9373a485a180118e761f98fcbfc4b14c7d8c1820f457559ba", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "25b6763eca889d53806b0da3b6460ce73334d68bd39e9b33cf806b6d7a9a5423", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "25433e8a241e49d4df669969623b96fa9d6ba25fc77702a0e8058c67fba608ea", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "34045048574a3d0054959c45e7d7183545904546e050f3c728a7a356778ae852", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "aa87cea4fef20f24a0af81dd3cbe9799e058cee0a63d0b57badc0db6b88f8d38", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3d6c15b063f0809bd772e616fd06680e55c5639efd59b01692faf250e8572cab", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "123990a2543859f8b975c49e159a108af63a335c8c4166cbca4c8227256dc3ad", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ebc541be72a5c22c2908aa5a465a8686d4d78007b35eadd593395c1da8862b01", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "116f42b5f975f074d4dba1b6e1f0686b2a4c78494da775aa3fb37f25d22cfc9a", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bb2d4e32265f7b5baa11a0b72ada0c1767f0f1ba3f5d0d41a647f4177ced068a", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2b9491eebfb8a21fc7b0fe2eb18a22f20f4e2e4192255ebda33edf4d0a72f000", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "71c63d9bab6445e2ba842f29abf9ed57025927ffd08d32ff49c99f23ee5b7958", + "regex": "(?i)^https?\\:\\/\\/cam\\-big\\-boobs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "73de7e182e521771d6c0ff7d7efc326a61178a18491df24e9264cee909de63b2", + "regex": "(?i)^https?\\:\\/\\/zezue3793398\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1ba066e23a1eb0f4b0f5a5db3bac2c8c702755d16233b72c35c574524eff08f8", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cddf8c699ac78f4b0911b2d7880435ba189758b4182ffec3e8ceba62a0c3723b", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3b56d714f0366f5d0da961bb369118c1f0e256b260d53fcd2d168b5846a83f2a", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9dd8f27e076f20416a6852d2376a651a7203a0fecc4f3bff66447e3f66bdb5e4", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a6e1d02a841f6a2e720447be0a9485f05468627a1167e2f5c3da3dd98142302e", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5fc53563238f1e08884c7c19e5301667914d7c46237f589d45c1961d7e8680e9", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghjfgjgjfjfjfgjggjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1f090273ba871df2728037241787cb844220c1e5a4f68b1d03d212eb649f9e5f", + "regex": "." + }, + { + "hash": "41781716104d0b00403c10519103a16fdc876f9d36cbfa453669dbb7f14d1b17", + "regex": "(?i)^https?\\:\\/\\/aiufyisefoiuhiuyseufyzeyrufouyguiyqu\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f9716518ac0946f0959cd7d27d858bb80c1a784cecb5c237f4de938ddd27ff99", + "regex": "(?i)^https?\\:\\/\\/dfghgfjgjfgjfgjfffgjjfgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1b3206b2fd92e8441fa8693dcd1d20f4ce01d59d2078cf5aa10a45a0f2b05e6b", + "regex": "(?i)^https?\\:\\/\\/zezue3793398\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b9531bb8742add2cb59259bf6655e0a8c8dc3c993fe29d9cc2470cf173ca9dd2", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fda950640126b1e0b456b2b3fdad82723f31e5727c6fea10659b7e36efc97605", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9e3073765a0cb69cd97c1db546576529bf08979c3320d8e1f73dedf28fbc6e41", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b29dfc6750b78da14e4732949aff9b762a454c7d6d68b830d0dc76ddc99d664a", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e439b302ec54ed4daff5a2beefa019e6d08330c57c06a2d69af1b8052796f321", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bb7d23ceb366ead2b514ea1f41524140bfd2cb42d9bb19d42eb461af6e776133", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1eaff62077e5e9dfdf1e20e18bd127d226696f39e061d2c1b3b98e91d23531dd", + "regex": "(?i)^https?\\:\\/\\/osiufhsdjhfqjfhaioerufhdsqdosd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7e65e6530efdf9dc40a57acf6f247c3db414f631f3afb9c8658a2d1ae3bdf77d", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-tube\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4917407fe8337bb44bb880e9cebedb27925447e15143a9b3a794a809271b6e8a", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4dfb3a316af75db71cb66b9243af5244cffbb1804155a13dd7cf43811db229b1", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "89b8b9151d676e52a59fe90d0bdbcb3faaeb3d876177181a1d154e3a6d9ca6ca", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7136ba44bfd81cc19d3eecbf647f11914925657adbe4065902d2df9c23baf748", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "833919f8c84446297307a0fb0b19af2b39f88ce94b0144793b6670b147a1ff0e", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3d339a3c2dd96c1267f55da89e762d7dc299818115d740c4484944177b72774b", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "41fc9371aebe59c7bd0262a8b0844864ab93d84b96f88dd796d77f89640a69b7", + "regex": "(?i)^https?\\:\\/\\/chatgratuitswebcam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "11a74e12a6665784ff1f4d89026b94647117a167211f1297f9b639344264d2e8", + "regex": "." + }, + { + "hash": "ac0be1513cc7092d7006481c0ed5dbd9821d798a478d0e82722dca6d554787cd", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfjggjfjfgjgfjfgjgf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "30c7f28955eec77d204599a1692ba1bb15a21b541ba4f566396892176d23f4b6", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a411ac500536976a9e6acb302ae8aa7086b60fc77693bdf8dd63a3be9c5ed89e", + "regex": "(?i)^https?\\:\\/\\/azeuiytuyrtrdtzoiuyiuyzeutuazeuyiate\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bc39e2ed6548e9f08dd53a0fc442d45f07c8383cd0f7737e922358adcc3ee863", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "03400819a8c71ff72ddf723e21e7e04b26d37f7faaa10b0171640729c1daba81", + "regex": "(?i)^https?\\:\\/\\/fghcdfghfghjfghjfgjjffgjjgffgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ad44f8457d94fa1498c8d4fd954c8f7eab45af48869dd1f82efda357c326c18a", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0902c00b5460957f384db1ff41f3d1ebdb17c01ac68376a098998b69179a5677", + "regex": "(?i)^https?\\:\\/\\/fghfgjhfgjjfgjgjgfjgfgjgjf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "26a439c627ae38f56ad2cf1f468fbc041a400fe45d5c89c5c4b7836bfac0a32c", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "830716ab72c962f07074a60fb23f92f0676ee054b8662114aecfc1c899d5155d", + "regex": "(?i)^https?\\:\\/\\/tube\\-porn\\-webcam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a70aae46aa4d1417c5d098dc1c4ab286967e54c50e9298751bd2b44975f155d9", + "regex": "." + }, + { + "hash": "c478c3738e90b2b58a76345ed670dc9913f6c71d68526c55fab6e51f006cb8bf", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "64b4dc168648fcff69565acd7fef3fe28ef018574fae31f8e432f1f411d19610", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c558150be03fb4a90746b0982d35553f4ef24db4b85c21df544c988bcf51c652", + "regex": "(?i)^https?\\:\\/\\/needafoodnetworkurgentcookingcontest\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cf1f445cb87a0b450c4f8506c1652c8e3454bd0d2deae171a37e2c1600043e6e", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "31d4f21f3e70deeb60fbfbbe040607b10a274b697d42f3a07d129031fc5943ea", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fa6555dbbd7d0e2ce28f879afd2292835f57a1c06061eb0ed557eaf807097a67", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e96a49bfef1cc5df0f38ab244a93e766fe40c5ddb1e1a98c73c5be4dfc1da353", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "20413053f7aa6759ac8c4fb8cfddf61864202bee474466a5cd60f21b37e367e2", + "regex": "(?i)^https?\\:\\/\\/cam\\-big\\-boobs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f390a48885f75f5de93f19bfd8a85a71a6bb23d6ce20d9edcdc69e7144fcf942", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6bae977f3d7e92c3ee1be331bd7a1518eee25cec56ea9864004f7ca47ff7301b", + "regex": "(?i)^https?\\:\\/\\/sdjifehziohfjoqpfjopzejfdiojcsdfzedf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "56a8e333d0c6e0e2c9ef6d46aa09533df9c0e82bf6865452298644f3fe965a3d", + "regex": "(?i)^https?\\:\\/\\/zezue3793398\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e7e9125060cbf251d73502cb5981ee4f99d502451b819b8ab7b8152f17f794cd", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0ef2381cb04d94f21b6b709b0ea27cdcf212a384668f3c80e31989626b7ea6df", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ddbc5ce1ac00d429bc55086f148f28cb400c115db06ed630cfbf4f5c4aff16d6", + "regex": "." + }, + { + "hash": "a054f27d8386d91d84bb103df0970525c8f00997e70ed8ad1f41a8161b04476a", + "regex": "(?i)^https?\\:\\/\\/chatgratuitswebcam\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "27fc35aff42693c09c6e26d12576b67d21fafaa007211243284efef586efb46b", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6192dc5c743f9349a83de4d01b9dea96c6d14df7b076f402a0395112bcfb9c1f", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "95f0fb990eeb03b095473b646d28fedfdb95aa9036b5431ef61c6972e763681b", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2543aa31cb5ddde90cb0fb65372d1dc52ea0e3052b3b73d0eef41a5555185a36", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cc6006ced969062076a80942efd089a64e720b6aabfa7e50468fd127b61a7dd4", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "29e7f4315447750c8c14aff65be83428292e6291b096a46ad74674be32c46207", + "regex": "(?i)^https?\\:\\/\\/zezue3793398\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "14c7bc84d53d4e138f668e040a8b49a6252774712bce0d3b6c1a00cf1a7c680b", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dc27df4764edf250506d9d61687a01d8125dc3571f0b644b493f66ba08133361", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0284f0981a0a8d546ac026bd1d3a86fe48797c47f3d5a0c0097643b164ccf53b", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6a8def42050dab928a19c9cfa1eb9e3d901a07312426b660966c7513ee0f45d9", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ea55ff5223e52337562e81ba2c214400cfd7d1b8b02bebcca583bb37f50915fe", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b199265c04f31510e9f1980b5aaa5664deab2ad1fd2dbeddbdf95507a0a8d324", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3c09757c0799bec0839aab3fc630352bdc06a78046836f6994015850981c68c8", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfjggjfjfgjgfjfgjgf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5d2da63d914a711c873f766a658f8c6213f8eede936bd355edd1b1ecacb8881d", + "regex": "." + }, + { + "hash": "1473063291249eb45bfe6fcd73bb0ff1d46e71f99eacad51b0308a183dd77532", + "regex": "(?i)^https?\\:\\/\\/tube\\-porn\\-webcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "54646b98984e9575d612451763da78f072140d0de4467fc0b6fb6126f0d83d41", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgujfgjfgkjgjffgjgjf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8df01d2c9f61f584061e2dba5948b6bfc114378fd4fa9959f7678a057ec9c201", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0100929d1af6a0ac0a9a16eaf20bf50f06451952ccd8c710b9f45aaeacf49466", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "752b3be87607f1500c24b77e7bf81758f31de40870c0951fac7aa4b5648169ba", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjfgjfgjgjfgjffgjgjf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6e04e045cdbc344525be8bc450c157f6668c9510e1960e4d688b49d2342e7114", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c003218be553b0cf1e9dacb65152d1bc8e7e733b2cda8393ccc38d3fa7c524d3", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4cd9bfca78695ed277fb743ab65cd4431df89896dd02ac0fe511a038d64c1c47", + "regex": "." + }, + { + "hash": "3d5a4fc2e6335d7555cde23691bda983bc9efc1225c0f8dd944890bc63bc9e96", + "regex": "(?i)^https?\\:\\/\\/tube\\-porn\\-webcam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e8f113d524276c857da263e9207f8639f140b85c39e11662b615e6e64e02290a", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f611752ba63d39f2520f88e32e2a68547e481e0052265804b4d380048fafd264", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "21e2fcbf0b7412e965e6cd1c0d1eb481f53007fe16de163a230900a0896b512d", + "regex": "(?i)^https?\\:\\/\\/tchatgratuitwebcam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "90ccc47a7fffcbff51edae7b4e577205709657ad99468e98e9e43845ff5f073f", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a6c9507c1d5422d6903389ddab6d03e7b31c93dbd3749c51ee17c2dff49885b2", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e911618b9f12a9a80b19fcce3cebe41f041a51b25b5cc44c278157b8cc12cec3", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cd73d6d1168bafff6fcc14859f1fc1a95483a18d0ba060477673cee2090b491d", + "regex": "." + }, + { + "hash": "37f9e5e417cdd21ad478e2a40fea029864ae15d76e22cb291d7c0f51caf5bf23", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "89a7b4f6b55d678687b75a535c13ed7cdaa4d625769b53952c32e912f550b74e", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f380522f5325b649f87ae0c2b13107a7aeb04967aef3151b8ff7134a7fe02bf4", + "regex": "(?i)^https?\\:\\/\\/cam\\-big\\-boobs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dec399f0356aff58f541b429567de261fd3bf052e231f23a15e7f63de8126ff3", + "regex": "(?i)^https?\\:\\/\\/sky\\-102337\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d00353559bc7ad0bbb3ad86c5798cab1b8f70165c431e30469297da91ac75c54", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1344906d3aa7f502052d4f6675dd9f80fa6ba28cc24b946ca478349560e9790e", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5816b0e8e965d6770c5c5f599b0be194ca817d365ce1f677097f2c5f964d101e", + "regex": "(?i)^https?\\:\\/\\/hao123fgdfhfhdhdffhdhfddfhd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "282a0ace01c4fe82ff1070255ecf4f8dd232f6fd03e9148fd2725a40d9dbe91e", + "regex": "(?i)^https?\\:\\/\\/fghfgjhfgjjfgjgjgfjgfgjgjf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b22c8394bf62e4246865b2dc93cc4b18c52fc5420b2471174233579bdda2fa22", + "regex": "(?i)^https?\\:\\/\\/video\\-xxx\\-cam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "291dd2937276561786819800f043e88bc96558667f4c8ed373656f6d4f331619", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2f6765bc44c8a7426fc0629e09fb04b4f9d42ace7a958cf8f16539e7fc737811", + "regex": "(?i)^https?\\:\\/\\/dfghgfjgjfgjfgjfffgjjfgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "33cdddd12dcc76783fa0ade581074a0c8186c3e4da7e7731cd8430ffe4eecaac", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9a5016cd916b1b23ca9842ac2f1af4aa7b6061b70fdb53330bd9aa5b8d73b760", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fbf8699c5ffd98b7d50591f4585a9a9c26b32c2b18c40ab106bd3b0161c773e3", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porno\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "90af152801c2c5092454472042994a3458e7f8ee1da99353bf67db9f7f3a6564", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a6916fd280cbc120131f6bbc8ce11e456d11ab18a3cbcad417da6896d2768a6f", + "regex": "." + }, + { + "hash": "368fde78c0cab77e34b655b38839ccc3cb200a7f25c9d57b5944b691fb51ebe0", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghjfgjgjfjfjfgjggjf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "86837b7688cc60a33131379c9a2a45fbad75b9501f58864ce630689468298dfc", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7a465224a1188add4639f2208c988a94786220513eae0bafb4029f84cfc986d3", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgujfgjfgkjgjffgjgjf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b11310e4d6dd17436fee5692cf4c86ae5a48a3e6ba6c333bf643a7d2997c95bd", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "294b3b22f3de641dd0199f7a4e8720ce2c3cf1a0ba433d6d49be1d49d8d5df9b", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d78516722406d39a6fd62220c0bad035074951b7604f59af02387efee6fe5b54", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "da7a426c77e12f2f945de42e7674358e6695f31ecc64588358329847c06ee3f1", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghjfgjgjfjfjfgjggjf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cc676751b3379cb219f47ef5e1cbe5de56f3dc085fccad04d1e5083aa9b6411c", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9a6343a901a731cb6f73773ac769744f643e336e3f8f2837f3e9694b53b94c83", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d6213384c4c452e33b6083c0470b37169cbc6ad37c9cc1e2b19e7068a5b79655", + "regex": "(?i)^https?\\:\\/\\/hubrblx1\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5e7dda23d64176fbb5abe544dfa5ef535b0acfca0390fc9212147a95332e68ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+new_track[\\/\\\\]+t4[\\/\\\\]+NTUzMTczNXx8MjAyNDA4MjIxNzA2NDUtNzA1NS0yM3x8c2F5emlubmlAa29yZWEua3J8fGh0dHBzOi8vZGtiLmpkZXZjbG91ZC5jb20vd3AtY29udGVudC9kL2RrYi5kZS9sb2dpbi5waHAjUFBI(?:\\?|$)" + }, + { + "hash": "b41f3f6e7d621de9743c1cdc015ae4737648a5ee8281154be0cdd609fc41ed3b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+new_track[\\/\\\\]+t4[\\/\\\\]+NTUzMTczNXx8MjAyNDA4MjIxNzA2NDUtNzA1NS0yM3x8c2F5emlubmlAa29yZWEua3J8fGh0dHBzOi8vZGtiLmpkZXZjbG91ZC5jb20vd3AtY29udGVudC9kL2RrYi5kZS9sb2dpbi5waHAjUFBI(?:\\?|$)" + }, + { + "hash": "dd3a50479b75d8ee0d65f479cd4c27715aeabd02c45775739c4af0763803b0d6", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "60205e531450e5aecaf60d69bf8b87d54b1c02ca97fa61b60991325878221853", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "55b09fc55717bdeeb946e0a42a555ff0e4b6f3ddf9551f2a61859d24b0cecbfa", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fe91849c3baf13465ed6e334d84dc52067d6ec92af61a79e8dda2075cdb61092", + "regex": "(?i)^https?\\:\\/\\/tashadreamlifeavdtziy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "59a6071412917227a6b2c26e244f06debe74ee87f2548a0e837e61f0c2112e59", + "regex": "(?i)^https?\\:\\/\\/chatgratuitswebcam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ce3192cc2afe640312f83d177f85ee3b055d63e105fb0d233ab6f809bfd452f9", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f3aba315c11dff949b9187bb18b824b8a19726856c4ea99325a697f776f55049", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9813bd779fe94786824ca81f800c76f0ef0f807c87389b0e4b176833133bc5f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1" + }, + { + "hash": "10eaf16065b1823ec96071f9f852a253ccda8492e0a0fa04adc9954c352ab04c", + "regex": "(?i)^https?\\:\\/\\/dfghdfghgjjhgffjgffgjdfghgdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "780967ba679b2cabcbd1b6d05677d25480b68e44c90b1d1a07541c1ef81b3347", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "621f23b583013fb0d5a6db9af58124375d5168133bdc683993ae502e983dadd5", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "574ad40d47f0f18a4ac8115b91afa3a87cdc92922ef8193d051aade053ff1121", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "54fc536745a1a425b652400586211f08e0e4feaff0b3b30609add4964031a88c", + "regex": "(?i)^https?\\:\\/\\/xxgratuit\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "578745538ca91b1e175acbf7a33bb0496b72d29525bb2a705d6f778cb3ff82a4", + "regex": "(?i)^https?\\:\\/\\/sitegaygratuit\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "acaced48b829ffe72a667762496aace70e77c1ab78db4f8bb02bfda694f9b1c7", + "regex": "(?i)^https?\\:\\/\\/fghcdfghfghjfghjfgjjffgjjgffgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6a75a3fe3c3e28179509bfa804d9cda5e374f4b995434e8e56661d4f5df4301c", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "223cf04d0e33ff464b5c54ee612fae92999b8992d651069f60e213c240348ea0", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "13aa7596ce31391a45b1301e1a00b6b528818feb6357235dae054f9469ed0b40", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "aa8f53a55e2df939324eb7779423a0de512ecb9278a450a3ae799282fd03ae9a", + "regex": "(?i)^https?\\:\\/\\/video\\-xxx\\-cam\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "54edbd3d040fccdb9803c79c98457ed0103e4e92e7b885fb9747938ca02bbcfd", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5234cf68d547fcc22b46b31e3f8f9c959a70c793200dc534600fa211623ee954", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7a02da07063f3f262f6b17abba6f5793efd6b8bbebce784f336cc808fa81eb97", + "regex": "(?i)^https?\\:\\/\\/hao123fgdfhfhdhdffhdhfddfhd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1a8a194d9201fb8a899e7d8bdaa7443da2cdc2259d8c9f0d79d7dbf5c23738b5", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "871565b0c7960ffe66c7de103bac7c9d74299afc55b7517854cf2c138f0a44fb", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2e817dbc4ea9ea3afab113d3b256eca72aa636e1863bedec986bf93328ebb1b5", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fe2318590232c00f9babd32757c18d2a806b321232c0b2364e7d3bfe2fab2760", + "regex": "." + }, + { + "hash": "2a72b5f5fab2f38425037017d5584da5081e11710c71d283db974571423d4f0b", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgujfgjfgkjgjffgjgjf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6d5717c998bf2495200606bb66dd8c6ad1cdd8cb18137c664fa6bed16d54c3b2", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7ead0ae72638f7623b35a8fd6bbad23f4436a58367477aa62fd7e6b327646333", + "regex": "(?i)^https?\\:\\/\\/dfghdfghgjjhgffjgffgjdfghgdf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b2e49b95994ad4c4d86380130d64430a8cb060038245d23daf9e574a8490c7c7", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c344563093f8e42f7be8213aea670695365dea8eb7d05f179f1cebe22a3fc8a8", + "regex": "(?i)^https?\\:\\/\\/free\\-9455\\-robux\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2855a46b9759a49ff9a36a575b830c205e862dfe13b39893b0dc49cebe00d68f", + "regex": "(?i)^https?\\:\\/\\/tchatgratuitwebcam\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7038a88698a72d80a3ceaee1fedd268c7e885a9c68fcfe79a7e84bc85c31cf00", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "23786a9342cbefe10c7cfa5a49a64674d4cf071e87512fab9d2fb6e79b865881", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1a9671200ca895afa3ab6318153105a02376be8fc3c30c2750836678d8e94e25", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c994a07abe515e5f96486bddbb0cf8bad0d12221ce6ff3ecbf1a0b85933f7", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cd66cd3a7b1eb68ced05852d8e7e95034c2ebdd7bc0dada694a9acaaefdb05aa", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porno\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "070987dd58edd17cb6fe29d657be72f2272737c75f4c764adb52696e8761ac6e", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4eefea68ca6bc9dd6ad0242b86b3420c6a3176c8eb208fa9e37dda928890ade8", + "regex": "(?i)^https?\\:\\/\\/free\\-9455\\-robux\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "11a71925dcfe3509a6e23c9ff8be393ce2579d0812c3e1b61037f3e86aa1c825", + "regex": "(?i)^https?\\:\\/\\/hubrblx1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5bf986ecc4928ea3eafb2373415c72f3cc14841d50a94da3e7d39a2853850b76", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "687d2c359a6726676cfdaa614e6c59707224487112d0b310289a994b1e9d886d", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c4e6cce4dfd2dd0391a43602e1b2fe6bcbea32e68308bb949319cc86788e0085", + "regex": "(?i)^https?\\:\\/\\/dfghdfghgjjhgffjgffgjdfghgdf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a8dbdc8ae1aba489313e3639239dc9c0d76818a5a24c6d9d5286f521eef250e3", + "regex": "(?i)^https?\\:\\/\\/sitegaygratuit\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "062501c1a2051edf832f00821c0feb747949c6263bb1e3fd8bce6a520b9f3632", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?r\\=\\&visitorId\\=671fef1ef716addc75102721$" + }, + { + "hash": "9063e21c58ecc756078156c49f9fe794fa8088908f352ff135522a1ac3bc98a6", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6424dbfc0e8e9dcf291fe5657e62c622a0fc0ca840209c4913f2c3065448a983", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "019dd61d3a5136f27581fbbae90ed6cd44507a84319f1f8feb44b9b24c1d8232", + "regex": "(?i)^https?\\:\\/\\/dfghdfghgjjhgffjgffgjdfghgdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7311f40346c88dd91fd86b3218eb6d016d7e556edd8c365237cf245163502d46", + "regex": "." + }, + { + "hash": "acce44434acf2a08b213b00c856c3fbc639045d4b4187e33f047719f6dd88907", + "regex": "(?i)^https?\\:\\/\\/chatgratuitswebcam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "97cad9f41c4a4c0c6cbd39b451949066b39f6a8ae49cb4770e63024ea3a3dd77", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cdfa26bbc758834bbdccda9e5cf04cce2bac730ee79c42303deb7aed6caf9e0f", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5cfff691a2faf78c65535bdaec6e8d33a7ca579d296deaa1525044da8b7ff5e1", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4d82ef5df0fba2a72302264c1713e10bf431bf016b3eda5f67f9de129ba9a3dd", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ffbdfef607aac8e89252f354f923f6dcd4b645d876f6f7926f27270cc8cc4ef4", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2cdab04618cbfb2c65719da9f6e93d70f5c60613c37b332f4ad702609b83c7a4", + "regex": "." + }, + { + "hash": "9421156a8b12d7279c803564bf60402bac5adb8b07578cb3b22dd2120b2cc858", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bc07836437bd2170dac5dd49aa0a0d8dc534eaf5bb6a403b531307c048ab3fcc", + "regex": "(?i)^https?\\:\\/\\/azeuiytuyrtrdtzoiuyiuyzeutuazeuyiate\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7e00c3f341bc85b0b6e89a9119537321cc3dec3787c33f4d49db13b49c255465", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0ca67c25266a2c7c2e286cfd74489e5cdc1469aa5acd880cb0cd69fac3b62539", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "267925ac3433124d5c5efd84d6f64b870bc641fc9373ec5c96e24ce0881c999a", + "regex": "." + }, + { + "hash": "7e00ad0bd5a9f187e53e910f223c1d9e7f796eef24089237472dc4e3da630f3a", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7455a25b3e399a3e016c0a7f9db9a944a18940d22d01fde45940a18d4f186974", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "403eaf2eb97ae85540feee761802bdd67ee4ec6de41dfcde56d01a10b4016f93", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9baa3fb14c4a7a0eae4c7d2990a945255493b8b47920e7e5b0419eac4e1171c6", + "regex": "(?i)^https?\\:\\/\\/osiufhsdjhfqjfhaioerufhdsqdosd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "74d4dd469a02979396f80a419ad9e56737b8ff2ed492a0cbe3956fc4f5f2a88d", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7bff7fe1504ff7d36ad46a705edc0fbaad93a54e632bc232868eb8df5c2ea7e1", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4b58832ada56946402cb89307cdbe28df46219434a2dd44d8b6f178f604f905e", + "regex": "(?i)^https?\\:\\/\\/fghfgjhfgjjfgjgjgfjgfgjgjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b30bb43639ea6b5105f024cd873faa7f25bd48925d47cae1fe6d440131bde7e8", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e559ce7d3e72ae029ed169433de5a9b884ca68c5f942098c2f0669f8de1f1901", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9ca1b77caaf30e4ce723c7c041c62eb99137829a8b1922e48d61057ecf40138b", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fab9294a90cf0f602068a64bba0d6fb8aa4c2eb94e6be285082e971c4b3848da", + "regex": "(?i)^https?\\:\\/\\/fghcdfghfghjfghjfgjjffgjjgffgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4eef09d91a4b8284fbd9b1c4d3786815a0ddcaad89bb94b034d02ad31ec879d6", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3f10ddd694a522e4c1aa3d8d53e9a2598f8d6a2e6a191df9662e708ccf129f30", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c579bed5a1824e7a265f9c7e26b7b46fcddc1782748ff7b9a6f51c9a5ffad994", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3cc5a94365fb564d7d4dde166c6ecfd26bf497dea8b1ba43c579be45eb940837", + "regex": "(?i)^https?\\:\\/\\/cam\\-big\\-boobs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2950f20586fc5d14b7ed1ff49adee15cdda38eb7413849c77f6dfd2dbaf8b62e", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "64e16d1898f64c3079e4e1367c44959e5f60d11326b456226b602620dbaa6761", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "014658c3c0c7a1c4fe722656d45031dc8c575929151e4295136a4fbd51f734b6", + "regex": "(?i)^https?\\:\\/\\/fghfgjjfggjfjgfgjfgjfgjfgjf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ca233eefc32dc5b1f635f54618d533f40ac0cb84b7a1b27900668f400f65c326", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "90415206e0308ec6eb653856fb3a24a5a3d1f6675b15b20e71e2eb8a01d5bc40", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "12575d2c00f93111598a0a936f1cfa522fb16e5975e4efa4ee50e67f1e74ca85", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "72477ff16744c00abe51bd84c86a88335afaac6991a79208174ff9b3d4a0869d", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7cf2859f60c3511918cb9d1846125e9ac626cb4f900ab657b351fe5e9fcc095c", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "031e18da47fcac53fa5b7393427e45ab332a109977f93391fdddb6d1fa721994", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b0d1888c319453ffd308953659cd11f24a16e674b52fd7a9f91bbdbebf70ddbf", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "549ed4518b833d8a9dd0837e240c2614773e35228ee62235fd8ae4727b6d23bb", + "regex": "(?i)^https?\\:\\/\\/dfghfghjfgjdfgjufgjgjffgjgjffgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b78287949e5d9f847a29063d88ccce95ae1decaf35ea197ceb6dcffe886ad508", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7e4c67f485a05a3624dfb259673627adb06a1c1fff32703fee3360dcb525faa2", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ac83152268d7a47ab8ce89b4a6a0310c4469e291dfb5d4fd5c907909ce1ba12a", + "regex": "(?i)^https?\\:\\/\\/aiufyisefoiuhiuyseufyzeyrufouyguiyqu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3b3c124081b6bc9ab425048d875aeb954be7d46bf38ee03b2cfbc8875c606f3d", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5f6fd5715ae3092024ee602a59db61b5308ac8011bcaa941e210976087c88085", + "regex": "(?i)^https?\\:\\/\\/tchatgratuitwebcam\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "64ee27a924130852d67c2f02e496f956d0ee51597d021e2b1abd879ea7302626", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0923519ff2b8c6bd380aec01c693faf34929575353368105730fabd099e10531", + "regex": "(?i)^https?\\:\\/\\/dfghfghjfgjdfgjufgjgjffgjgjffgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a2845a2611a0801c15deda827356528180e31660ab52d73af1737d1972e3c6b5", + "regex": "(?i)^https?\\:\\/\\/chatgratuitswebcam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a9883c4d96aca665eeace981cb36adcded85259845dc2f08ffa01649e3743946", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f9babb9c4b147fadee3dafa44711f35c529216242e2c241112ab26b466f3665f", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "386c74d6a19748a6c0453779ec7fb9ce2f5f5e3f768d6500492ca9b6d8c6df19", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ef598472beab2f436e23e9f9336d39b9132565a12b97f908c534a9f121d3ef6f", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "476f0829785a57f3f5bc347e5834b56a4f123e3634e73528bb36b93db6990fb7", + "regex": "(?i)^https?\\:\\/\\/dfghgfjgjfgjfgjfffgjjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "37df88d38865262f43c76939320b6c0e8fdd09b47af6c7f7c13849fa12582139", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3469cf8fc5025d41a82d7f08207243d6adba6a2ded93cad4ac53cceb572243c0", + "regex": "." + }, + { + "hash": "7667f75154e6d12583138f779a5a67d02bac39aa57553a6ba9ab55bc2c4ab713", + "regex": "(?i)^https?\\:\\/\\/dfghgfjgjfgjfgjfffgjjfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bc2c6b36700cf1949f8e411a5d535207711a44e32fc3147898f10ff2188065c8", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgujfgjfgkjgjffgjgjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "acffe9a504c1128b1fb8a1e71ffa9507bc9b15147801be06eb7653d3fca72762", + "regex": "(?i)^https?\\:\\/\\/needafoodnetworkurgentcookingcontest\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8013e33763a721d9b8e5a0f4bf9ace3b325f0892283098e729db125625773429", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fad7e59eef08f113f6fcfdc0fef32600d5746e2b11b4e47b807d81c379055a84", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "681962d99afbe29785ab5fb1d8f1039b9836869b871f3141ffd056246ac495cf", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9157929c6fcddf7c28bb8bee360e659b4ffaf4aa00a3438f8ff2955d3883b5ee", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "302f50c882e35977b000d970b23afce78e6be2ed20142a401f81d6531ef398c7", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "27de6338060bace061e8aa0e5bc8e5e35a4efb7dfd1d7b3ca65b06257d552560", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bbbbe8cea32d0296d0cd95642884ead62766364889456482b1b2b30c2174907d", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "19ab40294fe975e5b91298444114e0394d3c5d1363b9018639bb13eb9dc1c6bc", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2d76afa143abd6060e224a63a3852a7da0ca5eba12e407660c24362cb9afc2ac", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "663ed7a420f7191ce3590a1a60e97d7d6ec81c41fc1f4061c6daacd7f32e59ef", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "171a525797bffa9ebaf1b968f716347a07d9e79d2a23e920a3ac3bc6d6a1e934", + "regex": "(?i)^https?\\:\\/\\/cam\\-big\\-boobs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "12304bdf15f42651bfa506cb3ec61499014dbaaa67746ee36e8773eeee2ea4a8", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a55c70e5566ae63466e65793836d012afbb26305a9ca1bb12541e85ba01e7e55", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "838647f91818ef0449213479b87b9d1903a642c2a522c185bfb1aef705dd1c94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+comitment\\%26id\\%3Dy29tbwvuddozotc\\.html(?:\\?|$)" + }, + { + "hash": "e92647c358d932372aba265c9c1d65ab1f7862aaae2a0ab3c27491469ba19e7e", + "regex": "(?i)^https?\\:\\/\\/hao123dfhdfhdfhdfhdfh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1512713325989c402f9fbd408ee35a72c110e8b0ae8ae30e5573e564f556869a", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ed81626c4cb42cd9c52a184ebce049cf309259c0140fc5257650a81af5fe9f06", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c889c0cb56c97dee8a9d6eb2caab4ecaa6a2c100a9ff6844732cb9cc4539477c", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "104cd0702a33210d94645dcbc1d373087a458d3a0cb055311e82da3766d06b96", + "regex": "(?i)^https?\\:\\/\\/sky\\-102293\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2a72e2e3863657fc8566087b04df3bd2e011ccd842f547356cada7e68a7b5770", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c86cc6f32964d0d60d99a2fe023ab889651881aa37c599c74268e464a4981ea0", + "regex": "(?i)^https?\\:\\/\\/dfghfghjfgjdfgjufgjgjffgjgjffgj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ac6b722e9c485a7e2bcd9e82953982dfa8f4cfbb2105d8ef4f2c0d26c8cc847e", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e7c0b5a79df386834fb654deaefda3fc0376ab70665fa274ad4b7a497c19b2e8", + "regex": "." + }, + { + "hash": "a9ba39d40a863fd7522c57308a7ce93fef4b02d49d51f982bb1c57077c75ccf0", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e52065c22192f40b97a986596cb1d404eaebdcdee82e715dd087d7c004a54703", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "22d567ff9a969aea64b5afa59199bcc373a536a7a54dea3cf8fc1e8c9b800b1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+events[\\/\\\\]+ascd18[\\/\\\\]+goExpo[\\/\\\\]+public[\\/\\\\]+logView\\.php\\?ui\\=113\\&t1\\=Banner\\&ii\\=4\\>\\=https\\:[\\/\\\\]+ptibook\\.com[\\/\\\\]+\\@[\\/\\\\]+neteasehardest[\\/\\\\]+900[\\/\\\\]+$" + }, + { + "hash": "4a4ee83dcabb7349a18967bb79022234713f6994a59adc9cc938b8979c8d7e82", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4e5ae777a86a530d9794198a217ab17d3d8758a939ccbcc5b0346475688cfd4b", + "regex": "(?i)^https?\\:\\/\\/osiufhsdjhfqjfhaioerufhdsqdosd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c0a33d1825935fd62eab6e38da2e741d351629b270e08e40c794b302b96f17a1", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "35af948c208fdd5a4162f1782be3e95db86d8432b718907e13ea7e9a1681b114", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "94d7f5397d61e0e5840e626576a2e1fbc3eaf9e1f38782a033f08cf1907c2f80", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "577694528660075a112e02586a0db27ebd62a706874fdd3c406fa2f2ddead887", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8bc2a725a84f94f913d38bdd2b11b24c187bda2b7a8fa636727f8623aa3a3290", + "regex": "(?i)^https?\\:\\/\\/hao123fgdfhfhdhdffhdhfddfhd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0ad272b0952bd0204084320732dbdf98f6d2a41f8c84e4ec5ba9eab9aef3ab2d", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfjggjfjfgjgfjfgjgf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e12f2bdd93ee595e7adc233f6403aa7d2b86b460741341cad386622edfac9e2a", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5ba4ef76b4c9bf7ca34cf8ef74467bdc25f1e80ac6d6dbfe551e90b4c8b7e53b", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3bf957c86b5b52162488db0b9be9a3874bf6f95d77e2c8914631ae6c8f9ebae7", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1ce3c205cf1809831be2621cdcd677f9c6b1feaf0a24b34b5dc21dda911dd51a", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "21118fe92d7465f32895687fdf928f9f47c674a2f767d11614d67cdb0b348e85", + "regex": "(?i)^https?\\:\\/\\/tchatgratuitwebcam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e26aaa881ccb71b38292938ee402828b326d192660491ab3964cf08f4019a8b2", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c983e58e8a3ea030050dc74586f3cef0daacb6fb51250c1d12a0a72302c51a01", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b06d3728abb109cfdf5f2bc852efca3a75b01459b4c32a2d95b732ebd88d5b15", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d9c480b782d7983da8f07823dd9f0fd6b40e01f0234b22d2eed0db43bec4f78a", + "regex": "(?i)^https?\\:\\/\\/hubrblx1\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2bd198c21af2e83f8d1a58f64feed83755d731293b86261ad4e6bacf07a395e8", + "regex": "(?i)^https?\\:\\/\\/tashadreamlifeavdtziy\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f8f9ca6cbb87d3064036b3bca6d187c2667b001fce1a7e88335a3a0e3ec2be49", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3b2c0fd4a27ee9a37d699069baddf0760e7748879b495e761460d932b01a8ad4", + "regex": "." + }, + { + "hash": "d203bc4bc93a8071690a505392fa438c5099725c69461eafd765b9a79e605786", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b58fff1d39955e94f604f5cfce4c1d6fea4f6c3ad9cb1f888d115da929c9fec4", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5ba4c013aeef2135d145fda6ced841911948b56c78c7a39aeeeb73d572cc7cef", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2349e936c6ee63fc34d4264360bc87b964f9da5590a7b44935d0681734892a04", + "regex": "(?i)^https?\\:\\/\\/fghfgjjfggjfjgfgjfgjfgjfgjf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9297b7f46fd651a5f581653daab9e237d598c879332266de86653bee4f063385", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f2058826f57078879240db08deeb8bc5735ed9d2c2bdba682bbc16be9d9b058d", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "919650f864a750dc20f1e8ca8cd99b9b8376a8bf8707f0fb8a51bc1474d0919a", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a4650b226e4c6747b0727b1ca681f344f8a64c99d22910da6f25a6411f4019fb", + "regex": "(?i)^https?\\:\\/\\/dfghfghjfgjdfgjufgjgjffgjgjffgj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "38df44d2b2208bf8f51179cec4da4be9a6ffa610fe6364a7c73504f844af1dbe", + "regex": "(?i)^https?\\:\\/\\/video\\-xxx\\-cam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9d303e84978ea6ef1a62ff8975c0306e5a36b548a9b0b2de30ee2771c57f973d", + "regex": "." + }, + { + "hash": "09581c69210c08029327d98ef09e2c77128f592be06fd39e3a6863c2e8577055", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "29fa4acee7704a73fbd12718042c3a746b5c08a74cdbbd9bf98fc968ef479fbd", + "regex": "(?i)^https?\\:\\/\\/tube\\-porn\\-webcam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "af9997915eac5aca43d8b9411682b91bfb7b5bb2a7ded9eeb2e2a15af3369b3a", + "regex": "(?i)^https?\\:\\/\\/aiufyisefoiuhiuyseufyzeyrufouyguiyqu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "44c8f4501c51889dfbded64c875e6e5ab998d5663e317e0d9d0c04bc5d0616b5", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e04ef89fda0148bcc9eaf45d533116fd34a134cfa9a08d047329bf6334f0390d", + "regex": "." + }, + { + "hash": "73641682336f58e379c1e35f2cb3cbbb904ba185f0b478ad34db192c80f8dbda", + "regex": "." + }, + { + "hash": "16e8ded2c71fc5ad6ad9f7bf9b19f817b1cd3b90af94667cc8f5ffab0c6c1490", + "regex": "(?i)^https?\\:\\/\\/needafoodnetworkurgentcookingcontest\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7be4818a4db1df05648c38f336890fcfa915492d07f4960df93f7f88ffd89fe0", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "643f642a5ba4a51c591a098dadd88939d0d1a74abc1ebd8b92065697ae2987a2", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c08f4d7eff705d7d12502986e78c9038dabb6f6c0d180a50411662033df86685", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e8bdccad382392b04c66d1b7662216b35f7d446606d76104966ccf629119cd38", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "467370f9577f59c0b20c59d08651a903a55657bcabe6539ee7bf2b74abc2ffd3", + "regex": "(?i)^https?\\:\\/\\/hao123dfhdfhdfhdfhdfh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8344c76610a0e9c396c144233d933447ff1c5fed4a8bdbbcc6910c4f19dc2a07", + "regex": "." + }, + { + "hash": "daae2544ef6dd10f48854aae6c92e3abc0c8f1a79449e5c48cbc541ff17b685b", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "131758f3d2421874db44ffa011739049689f46d2e9fe0d5e12bd5c4129e307e3", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4c03dfa6ab52985badbac4161bebb9d46431d911bb9a9ffe776dcec3ca84caa5", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "61eacfffb799b22503760f2281315e4f2a7f9e1bda7d41fad57873aa2d683f24", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "79daec04e71dd93688c71144c4ebc44d10d1d9a1a62032b11406086d0d8976ce", + "regex": "(?i)^https?\\:\\/\\/cam\\-big\\-boobs\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d41826a4e73cede2b0027ad00312d54f3e824f6e3831aecfd8ad57722548950e", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b9fa58931ed0a2f1e465812ca5f221255bd4adccc78e0d32cf5a5b1e117cd881", + "regex": "(?i)^https?\\:\\/\\/zezue3793398\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f5dffedcba9ee08210d9afa4976be3521021d3ca3984bc37a602cee54edcc9df", + "regex": "(?i)^https?\\:\\/\\/hao123dfhdfhdfhdfhdfh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3930c1f4cbdd22e0c735a8f72ed9cd4f9641cd8a0af86f052652f69a74be58af", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-tube\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5e0064b4184bd87725ce3bba9f86a0f8b201fddea7946829ad99abb2ce25694e", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8b07861ff434fe78c951fd4a288fa0037c3d0360f575762347c45ea04098ea91", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e2cd43dc5302739347eda5b614f310d50fafba5313d298fc75067a1cff0f7dc1", + "regex": "(?i)^https?\\:\\/\\/video\\-xxx\\-cam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cba300199c6bdd2d6c9d89c67473a9e6a0b869e9aac08b0dc57988764e076d9d", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2fc43721b59ea5d87ec1d9c92e9d1274cfc94d5727c60504c5cd6ba9f937e317", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjfgjfgjgjfgjffgjgjf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a7e2e99a48e9bbcc6a290d32cf33e5f272785aaf3549416576128da4bf79de2b", + "regex": "(?i)^https?\\:\\/\\/chatgratuitswebcam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9b015ef0553e4aac9bc77453b71bd920906a4446ccba86f8de908c7456c1c3a4", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f7b438f97cb01849890cade71f519359d6fddfd10ce339f20db595273465e731", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d349deca1cb45d56b46c3cf4b23b664591b2363f3e336857c67e40188d5c2076", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "062501c1a2051edf832f00821c0feb747949c6263bb1e3fd8bce6a520b9f3632", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?r\\=\\&visitorId\\=671fc582f716addc750e48af$" + }, + { + "hash": "4f6405fc4e602d6d4ae64e82264c712a4b487bdf44fbfac154fd9fdec43ddef2", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1ea683642e9990c97eaa07841dffa86e4cb117f836825deb07b6959dc43172a2", + "regex": "(?i)^https?\\:\\/\\/sitegaygratuit\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1d97043dbb9243c3ff822dda544cf84a48a9906e279558f9f7e7b5a86d2c8333", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d59f5dced86e06ff26b14427abedc5554bf0b5c4229258a0453cdbad763529bf", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "70c887b15d5447c074666aa85add855f1b1d731842bae00e74deb63b724b7ae7", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c14813d7a7d62c0d4ab367e036375fb49868adb263caa4ef1395663033e0278b", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "df40cbdf03f6dfbfc331110519ee0a455c9d1d3e9ab68afaf92c0aacc603e2fb", + "regex": "(?i)^https?\\:\\/\\/hubrblx1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a8511d7ae07b91f752a137a7dda789b378ad56f0fa3b1dd6ce57626f9c91e6cc", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "05a0dd97f4cea56f09fc940b26188a86bfeee461a8179ea5be37607438a66afc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "20820a571ef95c5810193c3c6def49fe3f7157214319de61d967718b9a2ced1a", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "27f694d9d3752ea826fb2761bb9b4d696b0db91ac73a6370661c0d9751b8ac73", + "regex": "(?i)^https?\\:\\/\\/free\\-9455\\-robux\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "329dcf454f15fda7180d1ce2b1fc1efbc9f2970450aad90a9e82376f9d31787f", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d8b1e7dce999931af25c9f698d7215b2034fcf97f4fb3477de591968bd3803be", + "regex": "." + }, + { + "hash": "aea5689b48b89de07ca5f7f88ea9b1cd67e972aebd03f107cbce1d89471303bb", + "regex": "(?i)^https?\\:\\/\\/free\\-9455\\-robux\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b6daf278b4a0ae10b8269cf3a4f97979785884097f6c5e0539c210c1b5db359c", + "regex": "(?i)^https?\\:\\/\\/tube\\-porn\\-webcam\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0284a8895852dafbfb0659569e3ecf0cc7236c8b30b9545599c70e538d737e2f", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d6570fc87533a49883132552973ad021c918ecc1b58a00d26c00a537e0149938", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "efadc87838d56c0f5c5ec37ff359bbf3ed253af20a97a75d62a26a284825d18b", + "regex": "(?i)^https?\\:\\/\\/sdjifehziohfjoqpfjopzejfdiojcsdfzedf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c4e4af098779022026f707dd6fa11c6f6159576fca30a58644d91bf052b65dce", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ee6da7a1395870b79489c2e164d8510e54a11fd3e52bc40cb7f3f3f8ffc5709c", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "80fbdf202b1cb950770b824732064056601d422ad82aba2a0fb2b1833ed16eb7", + "regex": "(?i)^https?\\:\\/\\/dfghgfjgjfgjfgjfffgjjfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e7b4b9efbd06e3b092e9c614632a15be026db98804b115c8cc5c4e3510b21926", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7f4326c6d16be9996dddf825895f066ffedce1b9c46a7f3bb7f8fafbda5345b3", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0cc196886989206e77eaba4bec605d6ebaf38b4df259907806d3391da6f822aa", + "regex": "(?i)^https?\\:\\/\\/spotty\\.com\\%E2\\%88\\%95rpiljqf\\%E2\\%88\\%95mmxhlyjn\\%E2\\%88\\%95klakj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=salvatore\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c4f2fe3df6ae24bdb2eec53a921ef309515832da02b41700d065a82231033896", + "regex": "(?i)^https?\\:\\/\\/hao123dfhdfhdfhdfhdfh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e5119bc26d51a7ae1ae2a25283d0d90ee5ba88af3f82f16d2668c4b25cd86704", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6ebce9df397c7209d9f7df10e5617c81f6846902d70b8e2c432619069f1ee0b6", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6baf07c75bc20078edc357639b8b99c571e25c7db8e5da1e3d544ef87259b599", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2cb9b305a3a97329f2738a3a0f432f8233d0a47af0d4fcdd833ae29df1c9b6a5", + "regex": "(?i)^https?\\:\\/\\/dfghfghjfgjdfgjufgjgjffgjgjffgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "401c685636e48ed71bb76ff4675f48ed2be29088283d2ca8b4690bd22c685a90", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b2ad558c68675109535b98e164896f8d06dccac716eafd192546cdff4ffac62c", + "regex": "(?i)^https?\\:\\/\\/hdatsistemas\\.com(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "4c0e7bed3a1babe66b927510bc97996c991a770f0516ff831e4e360f0330b53a", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b08f0a490b7bd2b56b2120e6a9e0822fc2ad7aa2c41e5ef64380ec4ce33e949e", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "44eea685d386305b3e250959378dee37d61f5a06bbab451c44fb6353340c81aa", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "73b8da302c1f5c4a79acab169547ae6295b77fc0e363ffa5134ac4923b51b690", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4e850543dd0cde5ccbfed3756d9260c0581a964ed7d50f6190b1015f3b40e834", + "regex": "(?i)^https?\\:\\/\\/tchatgratuitwebcam\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6a67faf95b5dbca58d3efd16c8c2730716b445843caa62414f24540aece81079", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgujfgjfgkjgjffgjgjf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "64952f7b24ffc389b6f355422d6e1afd6bdfc9cb6b97a4922d96cdd85437b47e", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bd7ab57ba93497a929535d626bc65e62f230075c6966c19aaaf2cd390ea7d473", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d8c42fdab599f05fcb1131471e71e900df4fe051ecbc1ce77a3a4220ca105314", + "regex": "." + }, + { + "hash": "eab989132c108b3651d9795e53dd67d8f01adfa431d9c6950292650ed15363df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "22d567ff9a969aea64b5afa59199bcc373a536a7a54dea3cf8fc1e8c9b800b1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+events[\\/\\\\]+ascd18[\\/\\\\]+goExpo[\\/\\\\]+public[\\/\\\\]+logView\\.php\\?ui\\=113\\&t1\\=Banner\\&ii\\=4\\>\\=https\\:[\\/\\\\]+ptibook\\.com[\\/\\\\]+w[\\/\\\\]+login\\.htm$" + }, + { + "hash": "7bffe2297496e367c991538da99584a84e12ff39f64f2ccdf3840b0a6c824933", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0b7af86bfa05e2b165f1e81075643215d66c3ce83c497356baa5007130ff23e7", + "regex": "(?i)^https?\\:\\/\\/fghfgjjfggjfjgfgjfgjfgjfgjf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a4ceb650ec731a4bad4b882f9a98a0b0f9434c5e4f288ac7a057de98520fe267", + "regex": "." + }, + { + "hash": "1b11f5f9fd4b667e43aabdf228da4cefff790ea1f3fe4bdde819d06b9bce140a", + "regex": "(?i)^https?\\:\\/\\/fghfgjhfgjjfgjgjgfjgfgjgjf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7e434b89e9c03eae41009cf5b7f1b41774fbab4e728f7228e5c5da72c31f314e", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8bee571b71138228f3fffea327013f1e24844f4ef4a5ac2e25092511aeab5016", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjfgjfgjgjfgjffgjgjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c0c5d58974692df292239c44a0bf490953ff2b13db5024271da88adf42199fb4", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "52051477fe8176b1d687d758a04ff489bb7c88ca6da62da171486638caca9471", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "34baa6bf4510bd2db22d48d9bd8905a08b361f10a78d1761ab2d01c8bc5a9325", + "regex": "(?i)^https?\\:\\/\\/hao123dfhdfhdfhdfhdfh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "94d6d9a37edd50180337ba10e268c39cc7a99d7a1095536f67f2fa0939d5c6f6", + "regex": "(?i)^https?\\:\\/\\/fghfgjhfgjjfgjgjgfjgfgjgjf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "86944ba1bde49fb7125e12feb7a50ff5c8f48bc56148873282ee105e56b7f1b7", + "regex": "(?i)^https?\\:\\/\\/needafoodnetworkurgentcookingcontest\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "624aee90492080e352095a17b59c7aea2643502189e5af817dd36f8c367883b1", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cd2925ba1000e767f25aeb1eab418246347f6fa789028e1ded49ea80c02c9b95", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fda1f7b6332da7d408b73b1084c0999264c8dc59abba96d0fc6478b9536494df", + "regex": "(?i)^https?\\:\\/\\/zezue3793398\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3c03e6e7c06605af1f1f035ced188c6df281262297165b84c2d92e72393f5db0", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "14f9ab16de6f6a7e5fa8e36fa9b81e6a95e3a16ef86c4be11d9b31ba5edae95a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "9db79c2eded9c6ef3d1d39e5747fe46e18d8a19f0fba9139434cbc60f54d8821", + "regex": "(?i)^https?\\:\\/\\/tashadreamlifeavdtziy\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f71c57862b18c28f7b6c9bf2391820bf94606eec56bd1f3ff839c70e7ddf945b", + "regex": "(?i)^https?\\:\\/\\/pub\\-3e97c4b1f54a4412bbdc4ba4f8fbb913\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "135572dba947f622ca26bf2896c7c6d57c4ef61d2b0a9d418a0c909f8923bdd0", + "regex": "(?i)^https?\\:\\/\\/video\\-xxx\\-cam\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "da6196f2e704d09901760d93722ccd76eb9d824795c4536e652ddbc0136e9383", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b74e7335009e1b85e7fa798fa4c40c3ac298a354d986b16d75848f97e3ddb342", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "81e4a92b6dcb51aa3885e9ad74752a20dae2674ec0205f6cc019bf5a92b6de1c", + "regex": "(?i)^https?\\:\\/\\/fghfgjjfggjfjgfgjfgjfgjfgjf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7a6577dbd531786c8501061be02b4f0eda90eea29309cb62d2d4584443fe8564", + "regex": "(?i)^https?\\:\\/\\/dfghgfjgjfgjfgjfffgjjfgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "08012b4f93599b3a4e7c48a9ab01c8c1798c9ea54d361fd1802ad8f6a2b127a3", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7bffb8873c77c3ea175002391bfd5ee71a52661d8d0eeb14d84e551ca5680730", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "083397c2f5227321a6f4a9bd537d7e85717abab1f4305b7c0e79629938d97491", + "regex": "(?i)^https?\\:\\/\\/dfghfghjfgjdfgjufgjgjffgjgjffgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6f3b98da0f15c1c36673e0acdc9af4f4f797a040c2ddcb5fda3ddb8ef491defa", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjfgjfgjgjfgjffgjgjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f2146a2f86031c61232e41ab6249478583e4860e9892d6ee25d256197e2d65aa", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c60482942b2c60a511494ef4beff019c0168eea0ebff031fce930e4d11a0398d", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "474aeb1627abe2aaab0551c3eccc5769dc07764b5d3ab947327d12cb976ffb84", + "regex": "(?i)^https?\\:\\/\\/hubrblx1\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1d9a31b894e0e63da106d7a11c759e62d99b68a3430f047164160198d30af1fb", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e28fcbfcb24b7f9992f99d9157fff94a4b66cb6a94b8cbf2b93ca191e7b0092a", + "regex": "(?i)^https?\\:\\/\\/fghfgjhfgjjfgjgjgfjgfgjgjf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4a36e6deb6d6b5df67a54839cfcb7e8325f236a23d500e350fb86ed7a6211262", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "844374d3ff7bd6620f89e8d7df0c8ae493047a6a9ceb48d5e9c3cea80160878e", + "regex": "(?i)^https?\\:\\/\\/video\\-xxx\\-cam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c3ca229d74ebb43c7638082f7208a2ef4aebd3b1d1ccd1e81e0eb3c4004a9e25", + "regex": "." + }, + { + "hash": "517d549d1a8d4e5d25b889ce0f8bcaf8466bd753a4439a053c22d02e39ab159d", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9953c2711d78330f26902b337f541532b1ec3626de9d8305d1e31862e06bc7a3", + "regex": "(?i)^https?\\:\\/\\/cam\\-big\\-boobs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eeb530c28e5176eb9f89226e56e51d1fcd909aef8e29cb1f82c780a29ef79fc5", + "regex": "(?i)^https?\\:\\/\\/osiufhsdjhfqjfhaioerufhdsqdosd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4f57be61d9a56c1914b9c1918eaf37f5816d0a3b39ee6ec3b538ce6615464091", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a7d71d08e946236bcbc0213fbc104ab7cf55d5a498011c8ff9dd10414eced6b5", + "regex": "(?i)^https?\\:\\/\\/sdjifehziohfjoqpfjopzejfdiojcsdfzedf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3fe28a83b1504b000e30948ff093aa55156dba8a489edeaacbf64a72ec56eeaa", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "967393fa32a278404748cb6ad6d6b47d7581fbe280487c5517e883a943422557", + "regex": "(?i)^https?\\:\\/\\/fghcdfghfghjfghjfgjjffgjjgffgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "64814f98f48265b70e3f448cb26a5e27813b1b8e259d94ba5d857f521c6531dc", + "regex": "." + }, + { + "hash": "02579d7a8d14d23302c15694578b6263ab1cc4214f5d0e069b2290be34f936cd", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cb95df526831d15918deeb37b06a9f9988bf4b612bebcdc304d66bfbf998104a", + "regex": "(?i)^https?\\:\\/\\/hubrblx1\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4beb7a0899972b4ef6a0c9906d49eb777b45e822d4c27ab331aea2788f81fdbe", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "70ec1c35d3d40c43ff5d92149ae053623db96967f8b5896f45dd5408929d3d6d", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9ce0739e630bf4961ae88dffb1537c7c36c120f2c3bd3cc6740615f3549b988e", + "regex": "(?i)^https?\\:\\/\\/xxgratuit\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cf0629c1b3c4bc07cfbb440d7611d07b78add58a2c712a191192879ae45274cc", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "50ca1aa78c7e245a0c85c380525acada569d1d1ed0bec1e82a90da8f7c74b9cc", + "regex": "(?i)^https?\\:\\/\\/chatgratuitswebcam\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "33076e990545cd435a9110282585041e44509281904df20609b395a4a467e0c5", + "regex": "." + }, + { + "hash": "252a354d1cfffb7c600793a3bba86acdc7c4334e667c116de2c8dddd7e6ff84d", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bc63e9641c9f08cf7a4c6d139710afe451f2c0605821b101bf029ab00cf3929d", + "regex": "(?i)^https?\\:\\/\\/cam\\-big\\-boobs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1fbca91d1fb2ac6fc4a040f9b165ba56c1ecf11683b9d70a646a3d7563230b69", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "49336abf4af1cf7a15973b699419c914e0c15be1acb68deaa2b6538a14ff5f56", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfjggjfjfgjgfjfgjgf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9102007254c53b89352ed37c9bc32b5047920aace5741407c2f602bb2a9e417c", + "regex": "(?i)^https?\\:\\/\\/tashadreamlifeavdtziy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "81f254140653595115aab78702f6b09b064483945406f9f3ced54a7f42238b5c", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f14d607f62e9322556e316013380bbf3f9cbd5bfa8ae1f5e4efd7bc594c11", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b9536e0cf113e6e2081b939711e299985cd8eee1e5037621f0afb1b973128cd3", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b09f8511dcff4246e44a7110a32f44d29dbf86e62123ec6789dfbf6d7d963047", + "regex": "(?i)^https?\\:\\/\\/video\\-xxx\\-cam\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "050320bd90f002e62d453dd721c5e11c4843c72c555bedfc14386ded27804510", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "eeb473484ff1b77ee65191ef5d310b57863358d5556d1cbec266c05a0a43dc2c", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1d7d121ce94368dbab3e5ea5a3993851ad7a312a249883c0580008ed398a88bf", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "aaf857b240b2c7f32b8f0ea7562ae0ab2c9f3e5d8994b3df3f2792086076078a", + "regex": "(?i)^https?\\:\\/\\/fghfgjgjffgjjgfgjfgujfgjfgfj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9012b3aa255b5d6bb39e58b1107e5b532882965c69c5da76211f5c0b12139f96", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0265985fbcb12bf1c776462bdb73aa12e831fb39baad962cce237149245b92f9", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "df604e32056a4c1ab853f65014f8c86dc37eb1f0aa42be22a446f54c12d459cf", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "03e32f2ca01b3d93c7e65fa31476c6efa0641620e66318a0a57c6cb532a5d1de", + "regex": "." + }, + { + "hash": "17b6cc326be579f8e19f356a398f6f868959ca3b8a87c26dd525359267acf674", + "regex": "(?i)^https?\\:\\/\\/cam\\-big\\-boobs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1de5abb0ac87fb32b41a16ca8a2a2ad90f03473b513bbbb645e231df3c283646", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e7c51e82039e514385c521f1b9b8c25be274b0b3346bdfe3fc1a59653e012c5f", + "regex": "(?i)^https?\\:\\/\\/osiufhsdjhfqjfhaioerufhdsqdosd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "17ca6b46d0332da678dd6956352544a16f8ee8a9b9812906726f690fc47cb640", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1d882b7fe71d2d2983a11ef7d62be5c0fd40a38b7c0972c5975aa570815c78b3", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4998a759cffaf95d1a390780fb153a86f50d338156e9cea8ce1b0630b4baf2ac", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4846a37532fdf377695f639092d048b25a1d15b846f81b883c05808f94cf2e1c", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3bf62bbb062f30b873376f9e9f3ab24f317ef3957aa21d3d6dd2c5275399b03c", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "547a778f3b243f7d97d0d3887f009ff0fcfc04004c47a827453f46931aa34ff9", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ba3dbba90922c12b699a9b9751737c2eeb0e2560c9afcd79af78c9e278cfe7f0", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5e7ec615f3b20a02355d1f090dadec3a2aab0a42e2a2796c1beed5b5c8c0c243", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "06fb428e1da7534c84c9e61cacc725967ef2b7e4624b42e293e87b9e352627fe", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "59ec98b53993e0d37519839f2d605f74298185f62c8f8fd18f89b3da4e53b648", + "regex": "(?i)^https?\\:\\/\\/aiufyisefoiuhiuyseufyzeyrufouyguiyqu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cfd16d6dcec1b9331670fad25f1c42bcb967aec9040f5d27967bd538fd9571e7", + "regex": "." + }, + { + "hash": "673d7d88d007f79c3f449744a587565b3dcbc38bf92d46411b45c899c72c84db", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3c6bafa78b9cba0dd5914a533ed2e9e5f83cbdfe80fce5e82076d2c1323c133f", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "171cc1091efc8e9fba2ffd0fe38db0f6fdb4f809ff660239e1ed6af8e9a5bb82", + "regex": "(?i)^https?\\:\\/\\/aiufyisefoiuhiuyseufyzeyrufouyguiyqu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6f6da4796c1d7f964a6a46e2f6b768d8d4b98fc96db34b98b45e6d30fe9a3da1", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfjggjfjfgjgfjfgjgf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f3dd4457628b01966ed3f34d7f754c9da49e742ce4e6ab707152c54490d460e5", + "regex": "." + }, + { + "hash": "4b1772e58b1943bee41355bbc380626bf4f6da5ffb736512f5bbafcdb064c9b6", + "regex": "(?i)^https?\\:\\/\\/hao123fgdfhfhdhdffhdhfddfhd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5787993f8e5e4056dc082f7b4bbfa55a1ca934023fba9c1f015763a155babcc1", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ed8123724f7164b82c41359f36924842f6149394b00196caee4a3c259c767ac2", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c5c6608d7f3277d4f2d4f81bf7dad43e342b68005bbdd600201673ca0921fc48", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c976e00f7f9bab6c8bd199e9ab6ef0772441dd68c585f8ee36cc11cc4dd46e01", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "28beb2f59b5be4d0dd17360cc747aa9c843095ba9aff7747006d122e796b1235", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "59b70d8586dc7cf8c761fb347833467af8cfb114ce8c8612c84b589cf22a0539", + "regex": "(?i)^https?\\:\\/\\/ty\\-103631\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "121296f89fcc8863e8452b98eb0d8c85308e5085693490ef038296e1bef7641b", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a9d2f70adf11eaeac44b34edfad8967eff56f5f34b7c3591e16dc9fef720916a", + "regex": "(?i)^https?\\:\\/\\/fghfgjjfggjfjgfgjfgjfgjfgjf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c826cbac720d92ba7cc9d48cf00a5062fa378df66b40dd570b66a1b016734117", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9cc7fc943332bf0b8d60c4afb55144cae1233c7e074e1fb4ef77216782a5caaa", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7206ae4df2be020cf941b06cd25799f6df74d4868d666a5880a4422f472fdc21", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "93a20450545823934f5346d5421de5a518daea9d0aa9d94a75dcaff6f537c295", + "regex": "(?i)^https?\\:\\/\\/hao123fgdfhfhdhdffhdhfddfhd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fc04605cf2075c168bd92a3518d7fa222ee8d2a29673b3997b3613da79462c48", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3fba6a936e879d35bf6254288f995c58b84572d6136f14d47cdb95094f1898ad", + "regex": "(?i)^https?\\:\\/\\/fghfgjjfggjfjgfgjfgjfgjfgjf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "357ae6927bb45591f8b3dee7e1cdd0d6de4d9c7ad4675e6f74c1da7155883c33", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3334e7bfd77e250cec62cb7ca530075aaa0392000071545d1fd5257f4998bd2b", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ab36ebd64212bb04d44f3f313b72a339684770a76f01380d688ab95c1b883003", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e1eaf70b2e65e8506640c8ec1b6072c321e8c22c0a1dd324f900e8ada4450557", + "regex": "(?i)^https?\\:\\/\\/dfhdfjhfgjfjgjfgjfgjfgjjfgfgjgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "020fa157344fa14865995af04fd565ecfc1938949d8fcf021376fac1e4aea863", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6921bdb089782a4d29b636c1c623524a95a87dfb7c1464004a303d65224f4e02", + "regex": "(?i)^https?\\:\\/\\/hao123dfhdfhdfhdfhdfh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "772313098511a312a5ed06bb0f16ca0207824cb786fa4e8ec8ad5bac1078a4d3", + "regex": "(?i)^https?\\:\\/\\/free\\-9455\\-robux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c4e78118b988e6b3362e147fef7035c2aecaf1d020b96d04437257921ce05d79", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c1a343d0bcd5a9cd345eff98449f7692e2dd5e03e46f7f947d54d99c9fa36fa2", + "regex": "(?i)^https?\\:\\/\\/xxgratuit\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d9d4fd923f634a6dc6d436f7146662f1bdbdd7b77775bab7c81c87e473b618b1", + "regex": "(?i)^https?\\:\\/\\/track\\-dlcvs1pc\\.4everland\\.app(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "689698e356017cabe3f7aa000c05630ee6cf29950012a7af597a6dcb91ab4fed", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fedcb15d3285375f98e7bc42aedc8f191ddc12b4871e7edc776f7043c124b0ac", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f0896251f59ad06373b45738a6f890ab81902cf0213e3fe9566c6f86bd8d42df", + "regex": "(?i)^https?\\:\\/\\/tube\\-porn\\-webcam\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "51b8791371d6b471318bc372a76e441a5784cb4d91d2f0051d0ebc6500e94cab", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "07e7ae2c8550b1c5021d4554f07592bbe0652b52442b2c9ed6e8642408d9465e", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fda1531d566dba81ffbf218f5b85c7c5f5708a0492ae845e7e778808106e02cd", + "regex": "(?i)^https?\\:\\/\\/fghcdfghfghjfghjfgjjffgjjgffgj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c5f512033fd4f9ee93905ca9b8cacc3072ad9f1e91c827e8ab357e1daaaebbcd", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0ec12f81e3cdf83fae70e13f80a37a8b2456eec4879d0a053bf5d3f5d875d389", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgujfgjfgkjgjffgjgjf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9c6acce56a0d6f91a7db90acacbe5d5a67e2436a2e75aa693e9fedef1c787576", + "regex": "(?i)^https?\\:\\/\\/hubrblx1\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "02d2236187761ba65a5c3cde93e6ca535692131de967bdd886f3570f8e5a4489", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d5dd56f95ecce040f49b80f49091ce41878f2f60b084622fd095c99921de2497", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "23dfeadb2698f7ff7fe418355bcaf3d3b32d2d46e83c1a5369de79f3ade07a3c", + "regex": "(?i)^https?\\:\\/\\/tashadreamlifeavdtziy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e559c051c86d9824ccacc0664c7e97fcd592c1e494b8a319aee1516bce742f21", + "regex": "(?i)^https?\\:\\/\\/tchatgratuitwebcam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1eaaa259140ecb7f6b2f4957dc10aad378d0e5e2368778802a8bf953a38c825d", + "regex": "(?i)^https?\\:\\/\\/fghfgjjfggjfjgfgjfgjfgjfgjf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "304b6bcd45965433ccf49594be0d5553175cdc4100c5eb855a72e2f22cd2e290", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "81f5914c9532daabd5b25a784aba08175288727eb1adf864f85fac3aa3b413f4", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1389f8f40dc3b72129a7075fa4cabdf90527af90e54741d7d385ba0057f28faf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+BAAABjF0VUMAAAAAAAAAA8eBypUAAYKI49IAAAAAACyAswBnIDOleETW3AtSR6yeuvFgLzUTugApDwU[\\/\\\\]+1[\\/\\\\]+1xLS5aH\\-UmfxoNUHgmQWnw[\\/\\\\]+aHR0cHM6Ly9iYWZrcmVpZzNkM295YjV5NHltbHFhb3M0aWNsZnQzcXR2b2c0N2lrcDR0dmxhbmpscW1rY2xjZ3F4aS5pcGZzLmR3ZWIubGluay8(?:\\?|$)" + }, + { + "hash": "ac00dff93b366a68164018d1a071dde5408a6b76577b538515e57e40d46df5e5", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6967cd70384d7f914ca66cae8aacd85018737a83fadde6b527679b349c29deeb", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "316976408e4c53cacfafed8f6587103ec4d7f7d69bd10824d8df8daad97d16c5", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "56b317a108dc823dd5ef197a26b9f6342ac567eb0b3dc2a44783ced081eae17f", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2aa22edcdfe879ab4f29dfdeffa9d7ddf161a1ae98f0e2f9b970cdacf8935c31", + "regex": "." + }, + { + "hash": "fb1bcdabfd53bb4f77d0032e9eb76441971ac9062f369ef631a264816b7b9ec6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "fb61754dd7a7eb1ab6d33efeaab12bab54665e090f860cf638fa39209f989d3c", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1229d36d94ee333ecc2c2298cf4092df5a30194ad6d7dc299e0c95887d09cdcd", + "regex": "." + }, + { + "hash": "a0a7d904aaf4d0536bf3b514b6e27c99f1a3fa488176231d8569421230048840", + "regex": "(?i)^https?\\:\\/\\/dfghdfghgjjhgffjgffgjdfghgdf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "dcc6fd1edff39a89c67334e619f2168b107fff3c21087685f0c63bbda1e9df7f", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "71b67d0f06f402378974a62522c6b95603cd322e7f4f68274df2adef10cb2943", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f17202290f551e11655aafad2927f80169e6e26e3121e1b6f301fbd771ddb045", + "regex": "(?i)^https?\\:\\/\\/needafoodnetworkurgentcookingcontest\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ea774eb17f3a1616c806ff36340055fe2cb0d464a801228073e8344600452ecf", + "regex": "(?i)^https?\\:\\/\\/dfghgfjgjfgjfgjfffgjjfgj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e0df9483ff4246dbdc240320c52b21dd34ce42b7c3d45d2507825edf745921c4", + "regex": "(?i)^https?\\:\\/\\/tchatgratuitwebcam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0a1853d3ce51ae4a34d428d3aea512926088309dd60ca64a96af95230a5b7596", + "regex": "(?i)^https?\\:\\/\\/chatgratuitswebcam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "abfa7dab52c305f1d91577c04f39adc2d7baf4039d4b837bcfd9bdba6b29aa3d", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e47c4cda44abdddf81e2575ddcd68f16c57521df67eb78c4634a6d30f0064e89", + "regex": "." + }, + { + "hash": "625dc86acec3af9511aa64120e5698c74ec88e89a350757cc3e9192e76e30ff0", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4c1731c4bb12a9a4ebf8ffb1d8248c4e6c25d22fe02c6a2e87f9c3d217c039a6", + "regex": "(?i)^https?\\:\\/\\/bt\\-100831\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d916eb0005b3390282eaed67f8f7970265b1103efa9fbec1d6601d62c81b1aaa", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghjfgjgjfjfjfgjggjf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "068e48028d500c0f83e894941427b4c6ebfb9b47cffa2c280d343b9af9c46830", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjfgjfgjgjfgjffgjgjf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c9c3cef8fc0e077eb57759fc116748ec6ca7f61244247fc51a68bf1449e7220d", + "regex": "(?i)^https?\\:\\/\\/hubrblx1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c20817357476586c91fa0c08eccd0f46fd20d024a1d4a7ffd5613024d33ded21", + "regex": "(?i)^https?\\:\\/\\/dfghfghjfgjdfgjufgjgjffgjgjffgj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bfe070e0ef367925e856c64cfed179cc9d4e387e7626c5e3302011c9297c2210", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "abb63c76f769e1da09acf07342bd764c99b4b3db4325239b2d8fc14ac43ce0b3", + "regex": "(?i)^https?\\:\\/\\/hao123dfhdfhdfhdfhdfh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9c7686391b166cdf01b8ce6d3c1321bdecb281f6f188f29e4f8bf3bfa4ff57e8", + "regex": "(?i)^https?\\:\\/\\/hao123dfhdfhdfhdfhdfh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8bc7c795b634e4f23174d04e558bec7228a5736097a3cdcca977ae5d9bac509a", + "regex": "." + }, + { + "hash": "cddf573acad69047e4af12a73036b9b4eb7ab56a13270c00a5acf805155709e8", + "regex": "(?i)^https?\\:\\/\\/zezue3793398\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fb00f476e2b9e9aaeea52a41c1bf400a1e2eb7d827bf79846299da0ba6dc9c1c", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "fc733144fe0c8c85fb9bae66930f64c5069763687ea6f8b28ee3a21ff4a516bb", + "regex": "(?i)^https?\\:\\/\\/dfghdfghgjjhgffjgffgjdfghgdf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "af39c371a44f9e9bc22ae6faac2be9e786229e4ca5186bbb660c7ee0d286c1ca", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cc770750267df13cc0cfe2982a8cb2dff560c77dff55acc5994377b56a625ae8", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dbd393aeaf57d1f98d16806b40f17d2f7eadb2b43d42eb58628d4847fce84867", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ff3259d5bd50f6d782bd5039620e6f219a4dad7f9cd43f8000bbe5eb055a809f", + "regex": "(?i)^https?\\:\\/\\/sdjifehziohfjoqpfjopzejfdiojcsdfzedf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d998029e8661bff4d7ae04517e5ee3c8668b4cc36e1489b4aabdd10bbfa219fe", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "eebb37b093bdc8a22ce322861bf278ffdc11d2dfcd9f307bdb6b02b3730da070", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "25c90b27cde1bea956490b4021a39ef798f5925433b519859ed8175dbd7e0239", + "regex": "(?i)^https?\\:\\/\\/needafoodnetworkurgentcookingcontest\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fac169a05ee9e1b5667a0f1121522fe154f3afdc8713d0bc3ff8b62c4cd3a481", + "regex": "(?i)^https?\\:\\/\\/tashadreamlifeavdtziy\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a89a1da2b3f24702b9c9e8e6e413ec1e30afdfb8fa21eea27af0633689ae671f", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a0336d7ec5ca6ab27680892b8eb1807d7caddfd3b994a31a147a65292469054b", + "regex": "(?i)^https?\\:\\/\\/uehiouefhpzidizuodjskjoihfizehihkjhz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ae30ff1d3248069953cdacb08696f666d467a3aaef8202a99760f6a3135ac7eb", + "regex": "(?i)^https?\\:\\/\\/osiufhsdjhfqjfhaioerufhdsqdosd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8344737dfc1c64baf35dfbd996b06b0e1cb566aeab9ee28b26d243102c82dacf", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjfgjfgjgjfgjffgjgjf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a2ffc7a095141e2e38862dc14dce0e889361e2b59d58d032002152977601e64c", + "regex": "(?i)^https?\\:\\/\\/fghcdfghfghjfghjfgjjffgjjgffgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f9b08311fe4f2a17e7885187ed66d34ea3763f29fc7a117c5698cebba649780c", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-tube\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b0ee20cfd6d65c9a5dc282a9e182eb0be5b9c4aa5a044631f9a29243de2e59ba", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d516b1d85f4fcb6974cd0224ffa1aba6c6875c031632c9efe30cff6b64a36297", + "regex": "(?i)^https?\\:\\/\\/osiufhsdjhfqjfhaioerufhdsqdosd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "caf3379e0e1dff293908a967fe46e18ba7281fe3f7ef9ce0daf84fe6b6da7520", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b18f26fddc1269d305d37ce40c2b280b5fc3461564e333431df24934e6fa6f5a", + "regex": "." + }, + { + "hash": "177d08997a2cdc6567059f14c398f60e3949c09a4e34f6cdb74d0cbbae345421", + "regex": "." + }, + { + "hash": "88e72395f6c979158dad8f694139b50d61ba2e5a4bf459a8cc1d99b02d549f20", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1ea648deb2aad93b0761c1b12b5b2f2cd94c983152f29c9681454f53d83660e3", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-tube\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ebae7ca66035bd4be6869c0fb0b2023e33b3980da64a74cf2261297fb6f37cb8", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ed80aa23448c6bc1b6e5203a002e9724a872d57514076efffa849ea68d5f82ad", + "regex": "(?i)^https?\\:\\/\\/zezue3793398\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ae6c8c84f854ce1ec560953f3fb5c59efbe7fcf30c00d047b763491173714430", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "03cab80a3013a56d69eef94752fc5347212fb4e9b0642105d1d2765fe30a09d1", + "regex": "." + }, + { + "hash": "7fee4ca5649c0d027c0d063bb8798041c0b52acddbf50ed48ed4edcbd844c374", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b199654dd93174d23353faf9ddd97df8ca6e48653f52dffdb184e3e73abcfd0d", + "regex": "(?i)^https?\\:\\/\\/sitegaygratuit\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "529d0c9e634addae2edc476f2bdb4821a942ca5938f9daaf7e324cdae9baf6aa", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjjjfgjfgjfgjgfjfgjfgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "df40633039dc57899197a3169b8460684e5a6ba3dcdc02235f15fc7aeca82981", + "regex": "(?i)^https?\\:\\/\\/where(?:\\'|\\%27)re\\.com\\%E2\\%88\\%95mvadzgwp\\%E2\\%88\\%95erezilk\\%E2\\%88\\%95shtqt\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=checksum\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a385eb6afdd96dd4e822efeb055c3250d04f39c77b49fcd08a233f00d808235d", + "regex": "(?i)^https?\\:\\/\\/planbaise\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0b355d57df14eb97d692a33873a0fff3528f2096ffa73c0014daceb1ed5e9d45", + "regex": "(?i)^https?\\:\\/\\/get\\-free\\-9950\\-robux\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "095e2c30f6538799648d87acd87722566f82a15d63ef189a42a259e796699074", + "regex": "." + }, + { + "hash": "2ebef774e2dfca60a205a56a63a303b776478a4b42bf67a555176b5ffb8111be", + "regex": "(?i)^https?\\:\\/\\/luluhaha1102\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0abde4adb42913d5f39dd1dd88e3f14ad303a33ced5e8d7e08f010c29ba5a", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0ac47c2f16c5ed9ba7ad3cb11f68b9c46fce4b1f0ee9a4865f01ed3a912ed8d9", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjfjggjfjfgjgfjfgjgf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "83392419b9f80c759847f6a17793c48513b56ae38ab5990c924a1d60518d2306", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2747bdfc7dd235ccab53533eaf5f9fea04693a84f9ff4eb1b659f59f1066f1b1", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e590a15471da39b992fe34f95859e544c47bf047456a12ff1ba21bcf0cca2b63", + "regex": "(?i)^https?\\:\\/\\/camdefolie\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "13525551691028fbf9a9f04de953cd53f626c90acdee6f0722a70feddcfaffc4", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f08d49d73f5756761492aad865fd39e02d465759aa227ac5ffa9274312c38819", + "regex": "." + }, + { + "hash": "344a8ec89fae3c32526b27c0755579f285ac34e55b99f14f84458a9ebad3ca06", + "regex": "(?i)^https?\\:\\/\\/zoieufzxksdyuerzurtfugoskmlszruonx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "57984a3b3d245ce8fd6e03c94d2c231e390380ed564d1a7e29f9c39909021524", + "regex": "(?i)^https?\\:\\/\\/hao123fgdfhfhdhdffhdhfddfhd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5690006bc5c109bd605260b47e3049a8742c4ef179d4ff3bbcc60377e99965e1", + "regex": "." + }, + { + "hash": "f20f2458559b176b4e49627de7c4e514bbfb7480aae8e1d11842d7de656d9f78", + "regex": "(?i)^https?\\:\\/\\/tashadreamlifeavdtziy\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d9c4326a9a35fe67286cf30c11a75c66139193f12cfbc17d67fcf5551cbeeb40", + "regex": "(?i)^https?\\:\\/\\/kejutanundian\\-wa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c2ce55c58f2fa7e205e2c318d67e07cd80d31d9a869725a4ab3a6a040cc771ac", + "regex": "(?i)^https?\\:\\/\\/sitegaygratuit\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "497663b880456b9933e5bdb23ec2e1e80539fdc2df5daf1c2612f65d4b549ba1", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "30c9df3b542294e4eff153b541f630ea17f1a7a6a841ab33c5464599a080b5c2", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3ad120f374dd88de3b8e6a260c22d0dcbd81517de21f39b05ef718ce74577252", + "regex": "(?i)^https?\\:\\/\\/jyotir07\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f7593b1b77dfcc4b5b6ed42ed91008daa0d3b63906602390408a3129451604a7", + "regex": "(?i)^https?\\:\\/\\/tashadreamlifeavdtziy\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a054da655557dabe096e62ab8d8099fa1077ee7b6e7d04024d633cd366e72c43", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d20f6d9df0dea618a621e756f831d648871ab94c94e1a522268262f9f77d935d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "7c9fec4649a657c3efaf80f86dc7aa226057f9d5849c6c8be61997f84651fc07", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8f22d91343a35c77013e8dd2ebbb6bb20d1a5c90a585d7a0d3638ccd213afd5d", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d1e5317485444ec35c429228bdef8cdc74ac23efd152e105c9210c316f931eeb", + "regex": "." + }, + { + "hash": "0b8d607976bcf902a2a1ac6e569129b075a210649e279ec8b9a9f18b75ff3c82", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "097ca136c1642e320540303e13e9719c1968d35b109c10a94cfc3220c8f66ece", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7054bb707c85ac65e43c61ff3ee6be2d46df683716b6ef06acea2b98a06fd229", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bd17f2eaa71e1bbe04852c8996afc2ef026b03d5028a992023f03f963627a6c9", + "regex": "(?i)^https?\\:\\/\\/aioudhjhkjhufhryuyfjxhcjxhqihfioqihik\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "140998af46b5b5870562b72b277ab9085e9cd758637e28c854e16b09d9803a95", + "regex": "(?i)^https?\\:\\/\\/hao123fgdfhfhdhdffhdhfddfhd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2e3e4038176189a3c5502074e047fcf7cd6a6a28a55f293c39218cd239c99596", + "regex": "(?i)^https?\\:\\/\\/rencontreasiatiques\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d689a58f57fecaeaf3885723a4111cdb0675bb8bc21985e7c9be4ebb3c8aaa3c", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfgfghjfghjgfjfgjfgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "aa03913bfcc9f80960901cdf4eebb491539d6b97032e286fe180c21f0ef16d65", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "22ab71e4307523571cb70725e941646ab3e78d72cd16ec805e8c5291e57588eb", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "448f30b343561e7b9e421521a4026c572b2fc586e0084ce91d1bf1f73040da95", + "regex": "(?i)^https?\\:\\/\\/azeuiytuyrtrdtzoiuyiuyzeutuazeuyiate\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4df0ecbbaa948e2ecd73817841309443f00bcd0d5d2dce9685f73fd2701b985f", + "regex": "." + }, + { + "hash": "726346f2a8f1a88f4603edac7aacf260cd5ef20b74177da475ca9f7af3b0e5b5", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cc5cc3c6c68a5fa248028e4240e9013266a6ed9ca11f8a9bb06a944ed641da23", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgujfgjfgkjgjffgjgjf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2f14fa423a96c779789699c00e862b90848599ece24387d135dccee1ee53eb60", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b3a55a338a6a44d99b73a5a6104f09ada0176330554a0bdefb174c3e2d12e31e", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f87fc4119d6430ac2de723a203d5dba39c3a3d0f04baea827397d8127ce3b388", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f841d20fc8ad135d3ca8a220e2d3257669f860b86bbc878917ea52aee5fc7a59", + "regex": "(?i)^https?\\:\\/\\/free\\-9455\\-robux\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f10b5038e55991387bb9bd42e42785dbe4fc56bf12772f565b5028715b3efb82", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cd5029b81e8ddf6bf3d3b1a7ebd40c3e6140dad37ed8edbe0a0742e00bb2c107", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "14b011c90b3c9fbfefea5e44bb838254d4aa80aa1d75cd621097b8eebfe0acb0", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjfgjfgjgjfgjffgjgjf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "83f837745eb0ca72da27650c5074660facaa62642c4f3cc35addec574a42dca5", + "regex": "(?i)^https?\\:\\/\\/fghfghfgjfgjjggjftutufgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8878c03e6b7ae111670099f5b788a89e77b6f4dc6e2b02290ba682c3ceb253bc", + "regex": "(?i)^https?\\:\\/\\/aouiefyiousdhfsdifheuirfhisjhfpui\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4a758925e0376f18977db93666d9c38c06684dea355a3836989376f949f13fd1", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f6f7f261d0c7137811a3a151efb5e4e1a29f744b10c55965f5402d07c49b7872", + "regex": "(?i)^https?\\:\\/\\/tube\\-porn\\-webcam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0236de9221293b147956b9ce133ce49b1a069768a7562185ebeb83c86f8601e7", + "regex": "." + }, + { + "hash": "05a0dd97f4cea56f09fc940b26188a86bfeee461a8179ea5be37607438a66afc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "8ae8f29b545ec7121367db903302bf926cc694aaa72965bc5a947a3a65af3f01", + "regex": "(?i)^https?\\:\\/\\/azeuiytuyrtrdtzoiuyiuyzeutuazeuyiate\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5322223d27bc9e8d5f849127ddf85b5a037e3df7bb2754b0cbcd7dc04d4144a5", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porno\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0a93092644170f1c4f1447ce0c7c4fcbbfd03cb90c9b8acf02970b4610c3a61d", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2f45a8d0cdb31046416fdcd1affbf781a690ba57704187a94118eb6e726d3753", + "regex": "." + }, + { + "hash": "8a0b2926c0901fbc8cf8572336dc899dea54da18ca35ec1fb70401e9fc84e4a5", + "regex": "." + }, + { + "hash": "729e06d9c66179fd36eb01a62fde7e27608b438e60624bd256e8a98d8f3afe09", + "regex": "." + }, + { + "hash": "9558918bb4dbe9e4d027e1db5c73b8acd88ca75ecfe5a1eb11c4e4804f5c7592", + "regex": "(?i)^https?\\:\\/\\/rsdtrzertioroqiuydiouyrfygdfjsdhfpus\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7b3d2689a6b8ad4437ca53a6bd6dff4281725f6eeefc074dc462135a5981f4d1", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "401b80d62f8657e1214898ef028f9cfe1e3ecaaf85c84dea6085adbbaa51d256", + "regex": "(?i)^https?\\:\\/\\/fjgfjgfjfgjgfjgfjfgjfgjfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cb37022fd051fba91c7404d15ba306e2f2f9641b596ebf71efdda616cc6b2839", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghjfgjgjfjfjfgjggjf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c17d699da1aa060a616b8d484c937c7bde3f1234048d8662ae26cef1954d4dfd", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-porn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c63537cf4e647e427f542cce417e02c438e3929e8ad232841c344f4d9eb10e52", + "regex": "(?i)^https?\\:\\/\\/needafoodnetworkurgentcookingcontest\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "856e132139b512148085a2e301f34d0073c69b90de1777718562da1e7d6a46db", + "regex": "(?i)^https?\\:\\/\\/artaopietyarcfcgkhjklmoaztuyrtcsqxdf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "062501c1a2051edf832f00821c0feb747949c6263bb1e3fd8bce6a520b9f3632", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?r\\=\\&visitorId\\=671feb5df716addc750ff328$" + }, + { + "hash": "bef487e8315dd904d4a3c032ecb00216497cc1a85c3e8bfd69f92c6cb794a4e2", + "regex": "(?i)^https?\\:\\/\\/hao123fgdfhfhdhdffhdhfddfhd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "062501c1a2051edf832f00821c0feb747949c6263bb1e3fd8bce6a520b9f3632", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?r\\=\\&visitorId\\=671fc1f4f716addc750e04c3$" + }, + { + "hash": "1687d583086690ed62e62448029d7450b8e8509f9a1cb82151de044d095972cf", + "regex": "." + }, + { + "hash": "310f8e540332d0c7997cc0e277fe7ee3453a2fecd5938646b6e3a6509d4e0ad0", + "regex": "(?i)^https?\\:\\/\\/mhlzieyduiytguytrftrzqzedpiuysi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "abd32a097d626371dae5acecb81d34b8374d5d969f6095ee16b31ee210e79699", + "regex": "(?i)^https?\\:\\/\\/dfghgfjgjfgjfgjfffgjjfgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "931d7cb5c0def1546fd8efb3139d667533e900b1c0b89f9215ee9c2ff972e9f2", + "regex": "(?i)^https?\\:\\/\\/auirefuiosdhfuhsfozehgfhfoiqshfoif\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6914b0085e65c37e347b261302359d15b7ae7eeffd3ab21823b30db252f883aa", + "regex": "(?i)^https?\\:\\/\\/tchatgratuitwebcam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7fcb4ac6c4218e181ee9616f1e98bda3ba40d25732c46e0a2ac16f065527971c", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8fcfc52bf749823fa82fcade58ca04fb48761ad4b6923bed2180d20e25485a3b", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bff19487db7860917e14c53b2673d4d15d91e45fe397088e773dbf0417e14454", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "25ff2741ef614368b9ad7cb31aae4da0227899f4190e9c51e9ee5b65260de294", + "regex": "(?i)^https?\\:\\/\\/hao123dfgfdhfdgjfgdjfjfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dec32ce4bd7b6d86cd9200b4f760cb27937b0785cf46729dbce3284f56cdc4d5", + "regex": "(?i)^https?\\:\\/\\/needafoodnetworkurgentcookingcontest\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "16d2b7e144dfdad4ff3fff24eb5c3fefc5ab67670a508ea96b6b3a08f38ddd8e", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "bd3347ae7f9eef4396680f1c2a6edc1c25f7b695ddb96b6195e7d7a1dbb681f3", + "regex": "(?i)^https?\\:\\/\\/fghfgjhfgjjfgjgjgfjgfgjgjf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7c92ed2817899cf242b50a4fe95b436030ac556e631fe8056e0d4085d36eb05b", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a50a669d2c76cc7fbeb1638b33b896ccbcaabf2a2d8e316eeeb15879490e0956", + "regex": "(?i)^https?\\:\\/\\/uytiuyresdfgihuydrtsdyugkgdfxesyu\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7525aa5070d5296215a4c36febb3d94cfd5273af42ca79a64e329c4b22920fb1", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b85b623d3f3631d2b6f19a64558aee3c9b9491b8928c2ed02434bafdb119d484", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghdfhfhdfhdhfdhfd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b8462d785f54cca415f990a3439f7a47a83e0e0d1f5000ae1649906cc03eb5b8", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b590f7bb18e3f69ec6b8072c30ebdbcad5b814bcdbb8f9341b6e581e7553e818", + "regex": "(?i)^https?\\:\\/\\/fghjfghjhgjkghjkghghkghkhgkghk\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5jgpsz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a7e3820b4181d9bb91edb0065fca34dd675287ab943ed779917e07a48d88b463", + "regex": "(?i)^https?\\:\\/\\/undianpestapanenbri\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "25d20492700d703c093d3e37599d5448df318569999ed2bf14540b417e8c48cc", + "regex": "(?i)^https?\\:\\/\\/aiuiuyteudfoiqydfipuzfyioeyfiouyf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b992ef1b52d0b491b74826c0bb98bc38a4bbc727d625dd5be3536ed6f66ccc91", + "regex": "(?i)^https?\\:\\/\\/hao12dfghfgdjfgjgfjgffgjgjfgjfjgf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d631142d8b939901714f1c5c57a23fe42445e3f9c22ef424e23e9b40ca4ca360", + "regex": "(?i)^https?\\:\\/\\/dfghgfjgjfgjfgjfffgjjfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bcf43cca299dee13d8c2066303049f10144c9d9b49adef0f986ddca1102b8a56", + "regex": "(?i)^https?\\:\\/\\/video\\-xxx\\-cam\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fedc77eeac273771981b894a24a6f2fe1bbd2d5476f3090eeb60158ee3cc9d78", + "regex": "(?i)^https?\\:\\/\\/rencontrebi\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "82c0b0825bc4ad9457c447d2f00256dd55694bce1bcbfee616ed9b2a8274087f", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d7cdb3c8f65d2ec7d6f85928606fbefcde066e90ab5abf742f9021d94552ad75", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgfjgjfgjfjjgfgjjfgfgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "70852b871b4f7a788d947ce49ae2c57117052a7260730f58bf73d84be519de86", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcam\\-tube\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f7cc7e99622525983e2b607ecf8f9fa2299a535ddde4d31d3fea99b929e08ce0", + "regex": "(?i)^https?\\:\\/\\/azeuiytuyrtrdtzoiuyiuyzeutuazeuyiate\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f4841cc735d4aee739391e1f3c8e73f1269cfcfe9e628715c2ef20deae2a8", + "regex": "." + }, + { + "hash": "d5752468f614daab0a420a3bafed0374dea39f9ce6441826f2d2c826581aa086", + "regex": "(?i)^https?\\:\\/\\/aquawelah\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "eb9dcc51dbd126ed859f480a3b43342a2d7cf73aed8902ec3c3f574bfcd0ff2b", + "regex": "(?i)^https?\\:\\/\\/fghfgjhfgjjfgjgjgfjgfgjgjf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "66d246bb4015879741e0f2684677dc752728bd1f6a34c55c2c395ebf8ecb01fb", + "regex": "(?i)^https?\\:\\/\\/cam\\-girl\\-tube\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5ea3d3308abdc26a4d688542fcf6a194429afcb2b262a249c0c4646425a3cc85", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porno\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ab48be75e92823d8127dc75f05e12269529839b9ba6d6f9badba173ad979434a", + "regex": "(?i)^https?\\:\\/\\/iouhzeiuhfioufhioquhfisduhfiousdhifhh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d0e8d0803ac8c68d6b63c06ee2c65974d5cbc7b2575213df344f0390e00452e3", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "177da69a9c3facd1c7c82b690e91d3a2c74238475225dd829855f4c3d895f806", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a178a778b4868dbda41020870e1f3888c2826573856c09229118a5213c4b8bd4", + "regex": "(?i)^https?\\:\\/\\/gunmetaladorableoqrcq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d70aa1b4fd2bff3acd4d0959f5b4fba6cf8c0efa39c776713fb5a7c6ff511213", + "regex": "." + }, + { + "hash": "650e74a1c4b818a605a12aec034448a574e4eaff5cd955d6633c9df6ab9022ae", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3d45d0bf502ee0889aa82764391b1c393cf2ce72e8ff1a54c831236fe77108e4", + "regex": "(?i)^https?\\:\\/\\/fgjjhjhhkgkhgkhgkhkghghk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ba006413167deeb03fa4d19ef1f2b975c8d84f7f0d1f08d8c79248f46fc7b098", + "regex": "(?i)^https?\\:\\/\\/fgjjhjhhkgkhgkhgkhkghghk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "85240f05013327134ed458570936bd6957c3e482d333020b134b433a9d5837df", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjjfgjggjjgfjgfgjfgjfgjf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "333400b4c4926d4718a00f464505a95d831ee1b2dffd3fde35af9212aa2ff34f", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9658bdf59bd5fd0de38c2637c8135350638065e262dc0d0f28ebde2ab6a4c88c", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c2b5926a954df7a202928d469839c7c312e9715b05c63941fb42187578128dbf", + "regex": "(?i)^https?\\:\\/\\/kelmeycta\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "da16c26981c8c14295040368384e9f58233d167e8cd23f6d365a7bc579aa4abd", + "regex": "(?i)^https?\\:\\/\\/btinternet\\-101295\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f158dd80e532c2aaf3ebfc9b5ddb1217831e23a4fc6b69acf4d5a89675232803", + "regex": "(?i)^https?\\:\\/\\/punisherfakbfwe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3e3e7bca5a36285cee2258b46c8981d0996495281834a6fbfe8cbb0751f461e0", + "regex": "." + }, + { + "hash": "de9a434838fc1c0c93035d30afca8433d3f3579264f2ce217e910dcc4eecd0a2", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "990885f4cb3d4704f25990e063b64a92ab677a37d553fd4f0e2929bf20571dfc", + "regex": "(?i)^https?\\:\\/\\/cvbnfgjfgjfgjgjffgjgjfjfgfgjgjf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "94b178ea90213c5c6ccc861c34286fce50096bc7456fa9f04d1ca05051eff559", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4fdfb120bd1eb9ffe5e236be3dc94ecd8e6ccf217acef40fa714dc8237c0529e", + "regex": "(?i)^https?\\:\\/\\/bigbossmactepurnv\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6cf0b893b2da6e4eeeaccece867c2b57a70b5a8b711d9e307f4a4eaee7fe1aaf", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8cbbb5eed4156ea25c7c6394895833f5cbe1cdd85938a7c91665924ffd12a5fd", + "regex": "(?i)^https?\\:\\/\\/fgjhjffjjfgghkfgjghjkf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0e00eb59d1728d696a0270cbd716e4f4e66d6b3d83028858ad3737c11a778adf", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4bfe4d16a30cbd75e8e36d58f35da965a5fc81dc0db7e8ffb2520a7be567fe5e", + "regex": "(?i)^https?\\:\\/\\/cvbnfgjfgjfgjgjffgjgjfjfgfgjgjf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "35f3ed443880f97f53a34c76bfc9db4915837178f7de054a35de8f26093434fc", + "regex": "(?i)^https?\\:\\/\\/messaahwyged\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9b5addc656a457cc4e8df4e56403f16ea942528c6d974b87ad7bf01718cb8626", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3a4277dcd0eb5ed20a26c6b852cf6378fc390f4248adee2fdfc48f75dea083a7", + "regex": "(?i)^https?\\:\\/\\/webcamhotgratuite\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a58b602a3840579e7d580fe4768828ddf14564bc8c61162e84e8bf62cca14d41", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3376ece7d7b83e1b51899d2cda889db1771bb5562e39e9d2babf998300ad83a2", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1f08e0f8384418f91f00f2b6b7b492eb04e4b980c320f9175286a25710edf62c", + "regex": "(?i)^https?\\:\\/\\/peaceful\\-noether\\.43\\-133\\-42\\-91\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "0031aaad6ec9a76ed7d6414237a2314214c499b54c12a2d0c4b773fb8b98c544", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "62dcf240f525b2d2482f72a2c0061aa388fbc791123eb960757733fe36c278d6", + "regex": "(?i)^https?\\:\\/\\/dfghfgujgfjhjfghjjfjfggfjfgjfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d9b9c3689d70a89ef4a8adf49df6051a0a8e98641d30983445b51672f4079bc2", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfdfhhfdhfhdhfhdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2ebe8f2bc12a0f4c284890a4661baf44aa60520ed864cec2d7c2be992435ae53", + "regex": "." + }, + { + "hash": "ef96b07024c89cc91a8e189d6077f01baad4b29c0d4557677a2af38aa521a1e4", + "regex": "(?i)^https?\\:\\/\\/webcamshowgratuit\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3814505146ed7b048921715cc48f2f4d73a75f91fbfa1f490ca6c5c25d3e5eb6", + "regex": "(?i)^https?\\:\\/\\/nhg\\-100251\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f7e147689d77af4af6fe7e4e54f8747ee2a11ece5217ba8cd32cbf9512b63c6a", + "regex": "(?i)^https?\\:\\/\\/kissulyagnomeszhmsx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "636a69186ab8b0dafdabedba290d51fae5a24698ff97ba864709a3e8b0f88449", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "218236e55be76f9f890e3c0933fc4ef0b2416792f242358bddd42da535a3f2e9", + "regex": "(?i)^https?\\:\\/\\/bigbossmactepurnv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "dd879f7997d2c8565d7739db99e50b1aee9d36bcd5f26271a7555f6e0012dd18", + "regex": "(?i)^https?\\:\\/\\/10298fsdewc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ebaeaebd1ffb1f78c17621fa55f4ed25b952dad87a67a4e0e22a56c57603dbd6", + "regex": "(?i)^https?\\:\\/\\/webmail\\-105503\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4cc513b9fda3879e1bfaf417a0e07d03431908f443c787328b7a07e8e31005e2", + "regex": "(?i)^https?\\:\\/\\/kelmeycta\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d5e4064c10602a4827f323aec2b3f32f730428bea573bbfe59c2bc889c777c0b", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2c21df24359156ff6d0be771e3f6f9ab2e8fc37e97c6426f4e870116a20dfe84", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "93c6e071f7a5a0123e1f78d6659892cc52b82086edacb811a91276b004a66265", + "regex": "(?i)^https?\\:\\/\\/fghgjfhjghkjghkhkgghk\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6ef9af3cff3b8a00c558bee05dad82df72fa79ec27c217ccc0412b0e2c640de3", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e8245312eb7acf4406227b08713cfaf2c4f234f65bef0eefe349575a3394622a", + "regex": "(?i)^https?\\:\\/\\/free\\-live\\-cam4\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2456ea81a1b1c8e00df60c255b00ca14250be63d378a17b78e069b874b8a178f", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c831cb8936ada09d9784b0945e797fcd43fd62fea05ca94861958eb9728ffccd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=(?:\\?|$)" + }, + { + "hash": "93abaa0b3c749f99c6a3899e898526a33c5f2bc69ae69bd55046df31fca65c5e", + "regex": "(?i)^https?\\:\\/\\/crowmistikagvmxsa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6a70785224f83c83da19626d3c6a886032ad6f15276a515edf58a8f5647e0be9", + "regex": "." + }, + { + "hash": "eea542ae78db77bd42e7317133658e782b985c6213f42ad51cbc0a53f1fd5b46", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "203170ad7bf65fd80017c9355e7512405804eacdea45a805bdd0cead3b7096b6", + "regex": "(?i)^https?\\:\\/\\/pirronevlemmox\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "aa094d3f971d4a9918168b12e6ec7fe6636cbd31bec4cab5046e5a027aa876ca", + "regex": "(?i)^https?\\:\\/\\/crowmistikagvmxsa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bb99a0de33e461681435113a04159553edadf722e4d38e8ea9e73967a395312f", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f414300f0a44cc0f81e7946b10074e403180228b9cc891f507d8a87ca3a6475e", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "125ed6d4bfb010f6473ed9dcfba2097f606efaea88b83f4ef7900aa1b74f53a0", + "regex": "." + }, + { + "hash": "7f6cb51979199c6a4da4b089f2bff85f21268203cea1303e04991c9f7a953f2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dhan(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fb7d9346080b3a33ba033b0ec9cc8b14501afa32301118027b8ef2b08b826ccf", + "regex": "." + }, + { + "hash": "0d3fcd3193bec7323d2480aed2d09f6b4c0ec323c54d18a35deb7e34ee28b7bd", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d794272b23a924ad61a654a7e77b0e92832b2ca5a8ea78d895890bbcc8476172", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgjfgjfgjfgjfgjffgj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2def05124309118e7b0f6fa33f621409d7c424df833a12a08d3ab23d674e7406", + "regex": "(?i)^https?\\:\\/\\/bamprzwpm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9da30dc7bc693024b56c3652f222e496d9d3462c9856390f756a84a658578505", + "regex": "." + }, + { + "hash": "3d2668a71c5497ac0573c198332ee85075ca14388cb8cee20f8e4747d203898b", + "regex": "." + }, + { + "hash": "94bef13c65c814bfae4004322dc8c2aa7cd57f7c5c8a12ae43d3e152af6a8763", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Lanjut(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "09bd6ec2db07e5af3a084758e4f86ff00469fc409351fe5e65172eaf98af5453", + "regex": "." + }, + { + "hash": "d123dad3c3a08ce990e66dc015c5c34c8267a7597a0547aead287ce77ace4b9e", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2a7a749a315677afe200067259e33875befee72b08fbdd4e9834858a4a96f68f", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f3edea997d4fc5ed291a08b984e2775d339ae064f8c7e0283f85d414cc6f6827", + "regex": "." + }, + { + "hash": "b06d3f0f148a59dceb90b163532636fce1c88bbf5510651b4a03c6d67ad2f39c", + "regex": "." + }, + { + "hash": "477c2a759822409b3f57a3952418c2756e4f14c0a540425ae4c55105d4463fea", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eb6bf379eb20efa4feb87e1cdd705d340d9aa922ebc0da736d6be20e29d61752", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1bac80066df2a1954902d5effd3a8b1e9ad0e5531ab9849a5f260e8f57a842a8", + "regex": "(?i)^https?\\:\\/\\/bt\\-mail\\-100261\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1e355e97a5f6f5921673bb8f34f1ce2e90592230638d8cd95e81c660115ac448", + "regex": "(?i)^https?\\:\\/\\/punisherfakbfwe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c7d17087c78c44614333aa6c2d71001986b05c9e91e63c74011b3532db8df86b", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f4495e181db999a45b6f083eab58c5ae35e8abd89b141d5d58842ef9150505f0", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "937608fea30ef10c232812bb52e2cc74f3a2b761db765424daaca3f51c4b7071", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9096c0eaff74cefccd1f877684af211da16ff2ebfe4c73ce52abe09ef4a6b37e", + "regex": "(?i)^https?\\:\\/\\/lardenburghjlse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b3ae9383caa4461c223b64c393abb932d094ea96bf17d32d3d2d90cf5520412f", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfdfhhfdhfhdhfhdf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2bc25406aab1383c1170a7319a573b3d6165b13190726d894a00cd049da6797c", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e93d9\\&id\\=fsraw\\.be$" + }, + { + "hash": "514291a6c63c0d86223dffb9bc13e5ee6709222e8ef666b7000f723bf6393c43", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2bd01fb739c7d244574b2ce67e2601a1f5e6108db6d02ec2a31ed862b343eb0e", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cddbacf8a93ad00f986ab86a1e6f734611f36e0a32e71bd6ef9fc780394f8aea", + "regex": "(?i)^https?\\:\\/\\/bt\\-103187\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6eba77f92c1f729aebaae78c0de525dad3f29b1557c1620bc312b3451f781446", + "regex": "(?i)^https?\\:\\/\\/btinternet\\-101389\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eefd80b3fb17e8daba133c2ffb0f0a99e8ccce22d07b20226c057fd040f0df74", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgjfgjfgjfgjfgjffgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "43c2c1d18e609cf5d4830e3a2361f3f68df8af0ee95108f0338c04c56fc776a1", + "regex": "(?i)^https?\\:\\/\\/10298fsdewc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "77844cd0741b09575eaad8836f874a5fd0a6a8c9976afcd1cbf6bc2d2d0f9920", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhhfdfhddfgdfghh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cb56d58199e8b0d3e5525030eb4a0b3dfbed87140ceb133a2ce43fc3c0cf28a2", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3b030adebe63b13e7e8724b56e3e9e37587054ac0112d1424ddb7be0d5021765", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5cf97f5101bde8a0fa4714e2dc6534d5c9ce87c3e111f1e6eb06a4567da06b5e", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "51f671a221e9384711bedda2c1ef6310ad087f534ae1c1773ccf099ddeb139cc", + "regex": "." + }, + { + "hash": "d0408e08778d03713dbb4a9b659512d2fefaaa131d3b5e0d9958c3946242b29e", + "regex": "(?i)^https?\\:\\/\\/free\\-live\\-cam4\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b69b9e748696dafe4aeb1a4dc4c80572a6d45ef2e859a451e3c600565e80eadd", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "aedebd7138190aa0bbd3f76df1200ca8e2b747bda3cb506ed420c438d3f1d5bf", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5a9d92c2cf6d1db656de1653200743b4ae62faf7a67e8adf6f5b0da1b3c78f59", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5d51661078f366e7c59aceaddcaf14374eb8738b733ff8473f2f499d307874ab", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7f6c6bb898d8eb5067719212f91c6d11cc8018099d9413989ced37ad02fbe317", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f78cc62f1ab19215f9b718a6ec192334a00a63ba4bc6cc325c9cfb908774537d", + "regex": "(?i)^https?\\:\\/\\/dfbhfhdhdfgfghjfgjfgjgjfgjfjfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b509d209308e76d405573063a846704defbe1e35a35b31e140de272efff64d29", + "regex": "(?i)^https?\\:\\/\\/lardenburghjlse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "817f6e9a4a262105d629b4be0eb1b3cf2a140947ceec880989a53ddf7bd1f965", + "regex": "(?i)^https?\\:\\/\\/home\\-106680\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6bb14fb1fa679c02b8906d855697b634551166d2ab262d31948cfcb75f090179", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3a808318c82411c7b99308c8a586a71aa1a6d666f05c396157753f8d782be0d3", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4d65d2f6209be644d79c91450105e9a38dea0469cb2d612cf86429511c3a5735", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "23dfc0799bb00ffedcc54615bbec1cfcd2f2a1265bfb8bee4e41f62dddca82b5", + "regex": "(?i)^https?\\:\\/\\/ghjghikkljhllhjljljhhjlfdg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b17fd6a4de2ea4ac2632d42a80d9d83a26e5c045e5f9c102c2ccbe73c098f681", + "regex": "(?i)^https?\\:\\/\\/tugasgoodjokerclkxqlo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e802fd0d5b0452d1cd529ef959e08e2195e788f390662b9547c7ab4ed0585abb", + "regex": "(?i)^https?\\:\\/\\/fgjhjffjjfgghkfgjghjkf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1804da1712e49f02a5eebcb3d1d98e020b67f3afd210fa740a1f168feee404e9", + "regex": "(?i)^https?\\:\\/\\/342096\\.com\\:5569(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "457343a04cfa9ce2863759384ee0b95d1f948690553405fefa63af8bd2cffceb", + "regex": "(?i)^https?\\:\\/\\/10298fsdewc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c4f28db505ca68a5e9a1072e0ef50b39fb19353b439b8e33d570c230e409990e", + "regex": "." + }, + { + "hash": "f3edfd2a5b21be0f41b6b55f2252be4be0d30622fb3adec69b8303ef194e80dc", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9a350245650c71ecca4ee231f83f15dce32663a91118685ea64e29e59532fd81", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f606f5bf47003836623c1b9ce1cae38e6542cd7226909e9893337921a90940b9", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5257996cd47ce2dbee81d885037fdf1ff90ea53b385e24853dafd1d45742a4cf", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1389f8f40dc3b72129a7075fa4cabdf90527af90e54741d7d385ba0057f28faf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+BAAABjBn0wAAAAAAAAAAA8eBypUAAYKI49IAAAAAACyAswBnHwVvHum1Gsh1TWuv6kWrvmo7FAApDwU[\\/\\\\]+1[\\/\\\\]+4rHgjkOkekhgXs17AlmxwQ[\\/\\\\]+aHR0cHM6Ly93d3cuYmFnYy5lZHUuYmQvTGFuZ3VhZ2VTd2l0Y2hlci9zd2l0Y2hMYW5nL2JhbmdsYT91cmw9aHR0cHM6Ly9hZnJhaGFsa2hsZWVqLmNvbS9DaGFtZWxlb24vZW4vbG9naW4uaHRtbA(?:\\?|$)" + }, + { + "hash": "ff4c4b5d8dc24a3292558fa900c0ada9420db2aa5096afbdd5ab25e8b5072019", + "regex": "(?i)^https?\\:\\/\\/btinternet\\-106345\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b876cc26ed1311f769c6e28f0ca99745abb41d5060b717577c54f474fcdee03b", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "80c193b9ef0b1251e2c150e12357e1dc7d88a67328ed8a4f9fd501b94559fbcb", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "440c460de0350da20ff05dba1f5e4cb69bb8e47a36adb404cae78f75d9624295", + "regex": "(?i)^https?\\:\\/\\/free\\-live\\-cam4\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c38214c00b806cbfa15d6f6e6860aa856ca9e49de3741115a119d539de75b598", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a74f439c1037a885e6f75ed6bb7d53b10f730bea1029237713bd1331b39debd2", + "regex": "(?i)^https?\\:\\/\\/dfghfgujgfjhjfghjjfjfggfjfgjfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "598a660f8e0520ca0292eadfd4e75df09251476388a35116e38a88f0356b95d8", + "regex": "(?i)^https?\\:\\/\\/kissulyagnomeszhmsx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1681977325d8a4d4c7e488bd7e2c2c8253398239e7859df98587cf2f3db6829f", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "daba7575977dad08c5fa6cd1c870947ca2e3588ff403f09165d51078f21e0b15", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3cae214826115e89db0cee047615d47fec6a56e2b3b1dcba44245b09b1d582b3", + "regex": "." + }, + { + "hash": "c11c44a45fc835ae37e7db02aa99577db46435b57fb8e32f9f6eb3035c7f1e2b", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b8c5552113aabde18239cc4eb818a7b21432c467d09e79a2722bd6755ca8dda8", + "regex": "(?i)^https?\\:\\/\\/kelmeycta\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6c3483cef11b312f2a3d74296698b8d3c0a30bbe74d36620699463574df21ac1", + "regex": "." + }, + { + "hash": "e47997ce0946aaab31256fd19a111f271dce53d2ab8b313248735768b140ce6a", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "546492be211d64c681b48f4f3db447483c12cf285822e3f48fb82e552b536182", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgjfgjfgjfgjfgjffgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "87a119c698121554c97c2a97834a348a688982b40cd09bf1293bf38f98136524", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2cb2e30e9adad494722441f5c9cdbcacdb3a8793b1d50cebbac7dce3a6fcd085", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfdfhhfdhfhdhfhdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "18be6f5c6acfb8443b1a2674b094457bd1cc45ae09ade6528e1b84463288e536", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "70664a1bb58fcfae6c773f6487d5200ff6eb0070722b83d2fb4d5d613968fdc4", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bbbb4dc8f461c92c245019795decfa6699fcfcb2d9747e84ad9c29e320c61aeb", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cddb4501c207b6fc926492b85ad1d97c3b93a7a1273b26eaa2c4fe3407466054", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "33fe45efd44f5560df19cf87c7f2c954b91f328dd6f03c084fa4ecd8c65a3d37", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "923a9fba71531870ca1e67c6cf9f011f15003db5ff6b4933f82e1259d4d19f6d", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9926cd38ca9c0f5812af82f42c2fdf9d52bfbdc23b709cbcc6b1a5a22dc9c9d2", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "475b34fdda45f5656ea8f078d80d0c4a40e28d4d61f4147966da81d038b33721", + "regex": "(?i)^https?\\:\\/\\/dfbhfhdhdfgfghjfgjfgjgjfgjfjfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e533fa6749298926cb033a6ecacc196a1e9a0f4ece987af22b93f2dc47035507", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "686b9b8eb7975d2c2af3b6ca979bf8ce8cf11052abc56038a7ff0b8b179be323", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgjfgjfgjfgjfgjffgj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "014b4143cf1a50206b4b84177a23d17bcbca125183878bcdb2e100d5265bb245", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a6afe482f9ae620b696adde29802982937299236c8fd3cd6966a2462ebaf0865", + "regex": "." + }, + { + "hash": "bd5cbafe336f5043d9deacd88fa8bb7a7e9fa1941f9c751e0c0decdcb7f5ba36", + "regex": "(?i)^https?\\:\\/\\/webmail\\-102620\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3bbd02a90d25121b661093bdf71731606aad834f8589b350ac37aa8819c0d75e", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "865ed358e547cfa4bf757b1a276895820871eeb30bba4264b138e74b9052f16c", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a9a408780ed6b95077b9e250efc735abb2fa92c563341854e6e673d98b18b175", + "regex": "(?i)^https?\\:\\/\\/bigbossmactepurnv\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e1083f72688a7ae85679cb4ff427ce629550ddd8c4700ec349a90fbe83277976", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a4aaa332681e7debc0c10794cb0cf99fe2b0043013d3d1c576d89c87608d5a40", + "regex": "(?i)^https?\\:\\/\\/tugasgoodjokerclkxqlo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a8c629a784e9c697c2c5afdda7a3bf55a01ce46ef5c8ec56b30a29adb553a006", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "46094bc2812b2eb0a593e46cf0b12ae8d0b4b58b1fb975b91fbaaa5771cdba18", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6a30c34933d40c986a377bdc33d031068a01dced93dbad2ed5ca47d4ca6ac286", + "regex": "(?i)^https?\\:\\/\\/httpsinstagramofficalwebsite\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2d7e9eb08afc8b867b8b552e0dd37f6d755d57880b93c265b408a03a5f4fc3c8", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7f8346b698431ba7acca65ce6fbfe78b2ba8e9b5f13677b003a278e9d695699e", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "84abde68c6364a6efffdb12d4770a0025f8526ef07ec54261df307f8dd2651b4", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "210184e2a75d6cb7da12b39ed723a083a9fc82a91818083679d676933f7a0212", + "regex": "(?i)^https?\\:\\/\\/dfgdfhgghffgh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0d0a51200b5cf66694d283a2d3625ca5de63ded4fc47a9fb7b198cd8713128a5", + "regex": "(?i)^https?\\:\\/\\/agricolecredit\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c635b4c9409f3706ed5b1229cfb39b552618beccdfad36bd60312b73367a9b94", + "regex": "(?i)^https?\\:\\/\\/getrobuxs10k\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "730bcad0e7bf031d24dcdf73de720f62c3246e46a4d00a9ee8d344545dc058a0", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9890f8668b150e7113b0c705ab3c21333e0bac359a95475c88a811ff29729ac9", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "fa9e70b705c2f567f39be2ea18d97aaa19da91899a11a08cf9f5f765af59b088", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "251e673ae26b77f609404a361853604f8bdbcdbb5214a2144cd43d6b9410289e", + "regex": "(?i)^https?\\:\\/\\/nagieiq\\.com\\%E2\\%88\\%95nuavxeut\\%E2\\%88\\%95rkesg\\%E2\\%88\\%95rfomukto\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=lduhuhs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d7a4c1ef94e7f3a033c0eddca1fc6166f68021f5095f51b2f4cc81957907598", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b32c4127819191221260d4b4f8fb0dd222f186026a323d37b30019355f22c11c", + "regex": "(?i)^https?\\:\\/\\/free\\-live\\-cam4\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "904e7c218981e3a0f37843c6319d5c4057d878e84a801897068ed2886a820dcf", + "regex": "(?i)^https?\\:\\/\\/dfgdfhgghffgh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a4849b5c267ce690d7b727d7a6ef39a001ea3fc90ef565f2be738d09a4a082e3", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1e4432996d9a0dbc623c4097d07553d3ff4597ee19e206afbf960bf65fda72ca", + "regex": "(?i)^https?\\:\\/\\/dfghfgujgfjhjfghjjfjfggfjfgjfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+log\\-sog[\\/\\\\]+NEW" + }, + { + "hash": "ff86081e84442dd9d831a588e50075e0dd70a60606e105924cf76c4082111727", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9c9dfb7808fd5e58ee010b3925de36a1c3bfac7c70faeac0a57924575f7c3555", + "regex": "." + }, + { + "hash": "041fdf3d7b012ef5e00cf99cd501ebd6286a7c625554e57556f7426b1ac41a60", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a2d9922adb6f1556f80ce2d8378b71d591314d625b4cc960f6f5ddbb409cd9a9", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d3a14b62119aa12080aaf7529b1a15d29b2f2aa78404d8fe40717e35b739a0f3", + "regex": "(?i)^https?\\:\\/\\/getrobuxs10k\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f41fb01571280811eb8e0ef68488d7e663b1225a42baabc4cecd1adf854e03ab", + "regex": "(?i)^https?\\:\\/\\/lardenburghjlse\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1844d6f3f8ec965dba6f80bee25ef443d825dba869b321a69046583996ca5d95", + "regex": "(?i)^https?\\:\\/\\/10298fsdewc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f5aa36ec91eeca0a4a3e45d135423f9f9dcf6127287489992ac0982c8fc50899", + "regex": "." + }, + { + "hash": "018f827663c940653d554b674cffb69fd5cdd794b3e83b05939471b43dd186e3", + "regex": "(?i)^https?\\:\\/\\/webcamshowgratuit\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "87ad39e6e7fa9a9be84cabe05e6b9eb86a28a2909f5618af964a8d8438230f48", + "regex": "(?i)^https?\\:\\/\\/ghjghikkljhllhjljljhhjlfdg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1a967268c9b088bb77ab3db947aab08e5972a35ff649366a185e246929ace113", + "regex": "(?i)^https?\\:\\/\\/bigbossmactepurnv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a83b4e9d95b7dc45a3ceb2e8c43842bad095ac763142d45d7793eb2a2b9d7ab4", + "regex": "." + }, + { + "hash": "416f0c39896af7072d222e39614db7a6f811b5b796f158e78a8b3a54020c1025", + "regex": "(?i)^https?\\:\\/\\/webcamhotgratuite\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b27789707672e3d3da31353430b01d734bbd0938feca6aa1cef189a960ee33c8", + "regex": "(?i)^https?\\:\\/\\/codmreward\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f22a1c25939bfb84b44bde4cec809080f4606dfe88e941890c9feb76e130df10", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e64b9df923ca8565c86bcbab3bbce1385e7cc2ea2faffa4f1171a7fc23af3fe6", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9fe209fb990c827e4f95af41d4b9496e6e8e45f93f172c9537e616753c18af3c", + "regex": "(?i)^https?\\:\\/\\/agricolecredit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7d10b64c1730079343ed02fa67d261f7adbf893dfc1fdfea90f70ad9f175417e", + "regex": "(?i)^https?\\:\\/\\/bt\\-mail\\-100973\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5ac67ac1b1e4b1546fe140cd8ee7587d5ed765d8360e4d4e6b8b5b9139003660", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "38143501d7b36239f6a21bbb2f4c3ede192c4bffcd206deaf34c706c5518680c", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "581c649f67194efb18d6a77f40edb1190cecd2645fd867f12bb6992c2ddb058e", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "df66187eda19adf3a453ea68e0adbe46236a0d47353078ee13bbaecff60b455a", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f75394fb57c0b1cda14729a8418f71bc1440355b9b1a1bc4f713e06c1e28e8db", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5b8439fb7a9f3cf8f20e2f646f1a1ffe82f7c64256d474e0405fed656916d6bd", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d3c579573522c74ca774556542384a248dfd104e99582a0426171f73c555213b", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjjfgjggjjgfjgfgjfgjfgjf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "279a281aaf322060483bc0e847577922b4ca8586ad3fe9abfb5f19e832766e7c", + "regex": "(?i)^https?\\:\\/\\/httpsinstagramofficalwebsite\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ad475946d467a74b71d07be45518be03270948561d944f5c1af04a1626d4c537", + "regex": "(?i)^https?\\:\\/\\/agricolecredit\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1a5864adf594c23e55a3c713025b2452c1399e29be45b5556d44c4a36f05e3b6", + "regex": "(?i)^https?\\:\\/\\/messaahwyged\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fe636447038a2455aeebfd1dcb3cdc5567784a753fe67074cca5b2553e0881a5", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjjfgjggjjgfjgfgjfgjfgjf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0757791d5fd3fec4fbc11c9d0cb2430549bac40563c8749c9f79ff79013f8d00", + "regex": "(?i)^https?\\:\\/\\/fghgjfhjghkjghkhkgghk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bc34ba684394244ab9ddb3d0c3b06cf358a27b36bb75a0b240cac0e08fb8e4d8", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "452a29f6c357b77c4855bf52c2848032eda8a5503c2c118bdad2730f85f3eb59", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0318a12ab093a1e677b8bbf1ab729e1ace02157611aa716700b5869fde5948a7", + "regex": "(?i)^https?\\:\\/\\/webcamshowgratuit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c42ff1d2546f2e3c38ffeaaf3bb18dbbe51e44dcd6c3db9a456466d5416179f2", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgjfgjfgjfgjfgjffgj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b138631340ba47cfe9c0f8c0f9ee5c6af8c395f8f74edb4454a0492907def5dc", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3cb318b5a6ec511b83e45a917765b829a0a64644f8e65c125b4b8c26ef6f3cba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=Ya2cWG75$" + }, + { + "hash": "5829a23695910a9ae26a96cf7b22644684aae30f131843a968d24665e1d99a2c", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c0a02c75ed809e35a9575ebdae20b6333fd0eb62665880565e4a63ff7043089e", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgjfgjfgjfgjfgjffgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "74e3fdbffd57758bae2bde0e69249781244c887113665591370ce7b472437db3", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cceb843d89adb49fcfd51749e9be14a38b3fc4098ecbe0aa6a1ee82d68e88d0a", + "regex": "(?i)^https?\\:\\/\\/fgjjhjhhkgkhgkhgkhkghghk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "921e5a844f4af2fac32304d466e734928ea230dc7c0ca656a17ab9ead99e414a", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "021e2ed60bcb2b2c50ca47481472b1f114e3abc90c8d5dd2f03c084fc64c7044", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cae5b52474a60b09250793597aaf6b5493417681d55a7bbf49e32918fc5272d7", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2fcc1dd6f126b16ed61aef5331c1d133bd3f4db845bf8df8ac2e4ef68265823f", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "21b5e2345d87bbdee20872752cb8bd4f9bdbe8d558f7772911fcf11c3299be0e", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "90c5168fb5585ef41474409cc7c8d4ef1bde8334d26d38ced5c457bcd74728d8", + "regex": "(?i)^https?\\:\\/\\/dfhdfghghjfghjfgjgjfjgjgfj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2a7a911b05a9262e1d02fb82a13dc9e17b7ede0ca8f18173b796927b29f3a2df", + "regex": "(?i)^https?\\:\\/\\/webcamshowgratuit\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1fbc41424e699af811b5596ba46c4a94fe537c31f87fbea95c294c23de264898", + "regex": "(?i)^https?\\:\\/\\/gtqmqzhohv\\.com\\%E2\\%88\\%95gegdtrqx\\%E2\\%88\\%95qnxalsz\\%E2\\%88\\%95ionhvcc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hlkagop\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5bb894cd4c3644a3fa91d4a22cdfa638d09d9de03a5a11b4bb97a8862968c423", + "regex": "(?i)^https?\\:\\/\\/ghjghikkljhllhjljljhhjlfdg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9491ee8f39450a6913c5e8d832d0ee77c1080e047708710b2122f473efb507e6", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+LOGIN[\\/\\\\]+betal" + }, + { + "hash": "dd65ee4505f1ddbbf57419acea32697803c259c48257a6f7608d6519ad6f1cd5", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5ade89d218cbb946e6df25687014da962cd37a12b6fc8e11e31a60adb83732d9", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3553fbc94525591a614b23e548250bc86fa00fee957903f75f1fdaf1a8b0ffc3", + "regex": "(?i)^https?\\:\\/\\/dfbhfhdhdfgfghjfgjfgjgjfgjfjfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f3a15b0e2e61321ea41f5b00eb33ea9a7eba7f4f8c5e845c0b16a4abacc06080", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8454dfaa62eeb042fd2f929e62690e7db50cb0b5f6ea1eb1c03eb04e69e85c87", + "regex": "(?i)^https?\\:\\/\\/webmail\\-102279\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3f9647bc781a92bcfb63b2d1076d79c330756031b17702cc673164399fc7029a", + "regex": "(?i)^https?\\:\\/\\/getrobuxs10k\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d4c9c9f5094550a25bf47396c14310135c050b67dab4885710d44d89007b2cbb", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4b253c0e6f560e06b5b2249aee831b5ad2f92551caa68d0acc0f8ebf2b4dd169", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "437de10fa231fa49bfb3756f20ef5b60719f3390c10f8df45a1cf596c3944077", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "104cd6963ef5e094554289a48331f08273f54e70cccf4d7c4321afc54be6391b", + "regex": "(?i)^https?\\:\\/\\/messaahwyged\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bd8129b77acc56bd27c66eb39e5ba29ee5bdafd58445bff0c99d60753afd3866", + "regex": "(?i)^https?\\:\\/\\/crowmistikagvmxsa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cf84bb16a5f07201ed862606878b44ecc3d8da8bf9762c39c22d858886d99ca9", + "regex": "(?i)^https?\\:\\/\\/webcamhotgratuite\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1c490b28ccb070243488ce0a9a3a782899b5e8dafd4c71edda96f5118c5b195a", + "regex": "(?i)^https?\\:\\/\\/webcamshowgratuit\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ea8f3cf25638e2a4567a8e06baafb55ef004b203c9dc54e0e976e2ec52825ef1", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a49fa7dd4a84cd30bf4c38ec43be7963981d9050956c498cbdc6687224a8b07c", + "regex": "(?i)^https?\\:\\/\\/luxurymengxt\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a1bff01d29f4900c7e4f192501fd38224b10dc02ece78dde790cece0ac18ba85", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgjfgjfgjfgjfgjffgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b96ac27960090a0e8ba5921571a72f396dca3ccb0b4a4d1485c00a07b108fc49", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjgjfgjfgfjjfjfggjfgjfgjf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0463eb146ddd147646ab1477f6a08d72e3adc27de0625621396fe2fc9122d64a", + "regex": "(?i)^https?\\:\\/\\/embraces\\-web3\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "60a9fca70cab0090c3046a35d550ecb834b1f87067dea7f4a362688459b6f3e9", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjjfgjggjjgfjgfgjfgjfgjf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c7cffde3f36153e01ef37b8c433d352859916f6615e98b58987e6893d37c952a", + "regex": "." + }, + { + "hash": "9c0e10c3d3d4adeee3459dacdfb675d3fc1fa7ea38c9a4d96c3ea4891c284824", + "regex": "(?i)^https?\\:\\/\\/agricolecredit\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1350f548a991dddb84224bdb143d6240dc76980def9d5f7f76f3ecb8da531ea6", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c041f9b963c704d97aea7955f941e2117efa6f78f153df97a59a99d5c1831e06", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cd4d7d8a5bab744b5941d70c8f3240fbc202a19a552fa60bdba633f0fb7925d3", + "regex": "(?i)^https?\\:\\/\\/dfhdfghghjfghjfgjgjfjgjgfj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "22b97ffc14d87feabb79790d1e6fa495f17ae137cff47ea709358044a0052948", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "081b7a7f34135e0c33568d6faff6e9edbc7bc37127de95c66401edb95623ae9a", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7b3eb7892a6fe0c15fa07f40b27f9b8a697dfc824e7b35a98940ffcc9228845c", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a2a7e34cf3548b1bde964dcd18c926595a1b74b3777de38b57406928256baf9b", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "95679db46869389c1743845acadfd561fb22763c55f1f9401da82c84c57c153f", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "00d6e086a797136f0df2b53264bf88d317eed8a117eb6361bfa66a805ca4cd7c", + "regex": "." + }, + { + "hash": "aa6ff7d3dcba455d4e0a861cf5a3dde405f47598c0df8b0ee0488fc872037a46", + "regex": "(?i)^https?\\:\\/\\/httpsinstagramofficalwebsite\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6282c97fbd407b086a704044c412920c59db1a88c48f5aaedb16737daac428cd", + "regex": "(?i)^https?\\:\\/\\/dfghfgujgfjhjfghjjfjfggfjfgjfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f0bfc96c11094249d2acd81e7d9b5a500f1debf4a0c9d5d6861d3dae6d0b257b", + "regex": "(?i)^https?\\:\\/\\/fghgjfhjghkjghkhkgghk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "70e8b15983661e3dc5329b84ea4da30776c965cca3f03d9016f369ed1ef06f93", + "regex": "(?i)^https?\\:\\/\\/agricolecredit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a19474e3d539f91b70365d3e42afebda61e5fc92af16d1c5eb64d6e0b71280d6", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "01fdc36caf2b980affed34706baed5ea957685a980225332929f9a122585951a", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cb3faf66f306bc84f19b2177be720069965544b7f8baccef5199dd49c7e5daab", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfdfhhfdhfhdhfhdf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a53f8fa5a7e1d9b50cded1d075b97b530bc68d9c1d389ba13db5d60b93ca4251", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d7ee9d99e9db1ad114c5cba5589793429de373a7cf7c9f5c5e4e242428927034", + "regex": "." + }, + { + "hash": "bb868f95852f3cc4dcb8dfb9db461b365d463e7222fc2f9c50c68382450204a4", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8a03f9c9cb5964b5a9111086e528fe37c35a6dae30914fe05fe9ca50a1761822", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dbe1c03bc7eed4250b43734693cd583503cfbae74753ceb432b661573ca257b6", + "regex": "(?i)^https?\\:\\/\\/fghgjfhjghkjghkhkgghk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "71b61e131a1946f6bee8dcc3c5d175adf14d589daf183ff5756f584e333681dd", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8531b73ebc8eb7275869c85f10009f28111ee6ba21791c322503b84e1da39cb0", + "regex": "(?i)^https?\\:\\/\\/free\\-live\\-cam4\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fc5ea353ba0f610037fd52d6cd8f699948c59b38bea03ce11fe6e4f1b733ccce", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "711a74f17220df53386106a1120a6a498000a569ea7d750801f63aef88de56ef", + "regex": "." + }, + { + "hash": "d6d83ac8e6e68a59b64475899a5e59493930f6cda805732461adc2484f8240b5", + "regex": "(?i)^https?\\:\\/\\/ghjghikkljhllhjljljhhjlfdg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fd427da6965772b31d5251deacc812dbbcfbc1a8217b1f97fb90cb515edf833d", + "regex": "." + }, + { + "hash": "3fe2edd010f5c5b6e1ce1f488184d835b723c98b4ca7d560faee53b8365dd03d", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhhfdfhddfgdfghh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "feec88ece178eb6f05d9044ec2647861d960ef1010a81c6027ad77b3618ea071", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f90ec348c94d0d30175ba0a82b370bd9f714935fdf95ce361c92e77d30491e4c", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2a88923ba93b4b9d03ba920c09b56755ebcc6a3f44e55406fa72a24a40770a19", + "regex": "(?i)^https?\\:\\/\\/sky\\-100034\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a1530a1f5486869c9f1bc98ed81e4b77440dbde2c1e6aadc0cc65bc8a22074a5", + "regex": "(?i)^https?\\:\\/\\/bt\\-102538\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bc3479f0c5ae85b20b4870b25fa81d0626ce4e316ed2b978f235a98dfd965d68", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4ba42cd6679f2e29324268dd2b45de0335a6bee698247924f867aa46fcfa66d4", + "regex": "." + }, + { + "hash": "031f0b04bb582a5f5ac52fceb091ab1d98aa7c0b9d7b32f36c0f0beb08d02866", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3b2c31a71b26fdcb9740e443b4b9cb6dc567229e085bd93323e345eb03d727f6", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "30911a2f3da2f5fcc4e1ae9d285297e5d9f26738f0f75d2a6afe9b2de8d73236", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c95549fe6ce2e9e8dcef219789b09120ca8606b05caa7128ed8aa62136b8af1b", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "663402c8455138ff25efd3d863b9ee5c670e4f2972f4e958cefc0419409a30b5", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b3aaf55491ff40d43a85214810b8f4be45e57eadf28558f0c25d334bd394bb36", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "88e767db2f73d2e6bf3e86031e61a0120e7cfa8cf190312788c223d7ec7d9463", + "regex": "(?i)^https?\\:\\/\\/fgjhjffjjfgghkfgjghjkf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a72792c8fc7232c5c8c6d7d697b1c630e815356ac6032afad64f8183045be107", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bd49da0fa83057fbc1dde4b43b35b71304475887f2647aac11e7a106b9cc26c8", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a3e38709a329fb9db07a9cc5d54cd428c76d899ba479b98b3ed3d7587c3fd49d", + "regex": "(?i)^https?\\:\\/\\/luxurymengxt\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6c0e6e85f8fdfd275fa27146f3a0c184e4513cc677cb52fa927d51606ff56cea", + "regex": "(?i)^https?\\:\\/\\/bamprzwpm\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ebf2765af59a19acfe264ad1e8233fb62d725502edf65f213b9621a788106ef0", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "52ddcdf5dd19a0051be5ca85e77d903d085326a345e8aa84eb7a9cec8aac2334", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ebba488f558025aa721fcf5b3da3142d6a5e9594c67e084743aa4c529d0f72c4", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4aa42ae09af5af703194008af077ed1a290d8cbb73c4cdd7c8907a562acfd733", + "regex": "(?i)^https?\\:\\/\\/dfghfgujgfjhjfghjjfjfggfjfgjfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c9de9ebabcecb50b2091d6171c1bb40eb225749838d19bb81a80ed2b1911e3ed", + "regex": "." + }, + { + "hash": "cab941029fb40b1b7ebbe50c774d7773094103cf3fb3464dac2e1d3b520df517", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b5ec0bd060942e3d7567cecb15ee9cbfc2b6f38d4967724d438067cb3b8cc381", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7a35a52ac7863167e655a4966190535d2b2d666595abaab166e932317a95dcf6", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e0a29ac868173d15fb485761d1de01b6d69b34f9b1fbba874fc62a54874fa16b", + "regex": "." + }, + { + "hash": "b31369db3db269312f78fc0b1bba7ae04314a0fad6b2c7da89f889b304b9c903", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "eda56e36f42fc8d8dc82fa136ffde4526659d3f6ff960884fe38ee8cb033bb2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\-308" + }, + { + "hash": "ce5e811a3d5ff426b899692fcc25bc92eb418451de5d5761893e6cb070f0d0c4", + "regex": "." + }, + { + "hash": "8f55ec5939aa2b8e959aea3e01940b87fba1eadff2473848d61e1f735f25fb4a", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a5b079df3561aa7d5f031f8bce8bc666cc7dc800cd1c302049e20835a86066b4", + "regex": "." + }, + { + "hash": "87ad56df63b5f2376909ea1a26e6eca4c75f15812f7240949f36ceb4049d9a7e", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ede9440741fdf9102a727710ec7bd409fa86b6bb0c8937f16690c7701cb93411", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c4701ce1f75de77e7858602696ef6fad144dc3cbe1b15c94af6695d7b5c9f5dd", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b8bf14d85ae8f08b4b69b51c4433a126b6bd037e5d885a009c6b0590ef0256ce", + "regex": "(?i)^https?\\:\\/\\/bt\\-102082\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b0e4f56e6ddea7b2cedf8d649e5bf825e07d9bf3b31fb0de9569e4a3981f0183", + "regex": "." + }, + { + "hash": "8ccd691b1953f17685bba5b9c640381a6c50e5f89452766a26897d16e2360948", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7e51ec4cb926197baaa821f61bfea67b257fbc0c0ec4aec81bc4e921b0055682", + "regex": "(?i)^https?\\:\\/\\/10298fsdewc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4def1d5e08deb237e2e56196a3c8125526f6da7bcaa3279b7fba8ae85f6d84bd", + "regex": "(?i)^https?\\:\\/\\/webcamshowgratuit\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5b485debadd7977c5bc14c738d43a873d53351ac6dc1dc456d142302387c4759", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "741315507a4e0e7f5cdfea744a2c0e26f89fe0fc0bddf4a916df23712639ece7", + "regex": "(?i)^https?\\:\\/\\/agricolecredit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "59497cfccf9243359301b7ce7d1edbb8ec2803724feb1180da1f137d440e3650", + "regex": "(?i)^https?\\:\\/\\/fgjjhjhhkgkhgkhgkhkghghk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vn7jlu(?:\\?|$)" + }, + { + "hash": "db6b1ad31348c90cbcb4ad60b3b43798eacce7f97ea2ef50db63bf493f6bc838", + "regex": "." + }, + { + "hash": "9b3b1695ae2bb798c6e1ed854096255fa4cda57a053f9392a10fbc4c8834ef24", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b23f0f5d3463f434337277c3516b252b5ed08570000fe7588efdb50be4eb86b6", + "regex": "(?i)^https?\\:\\/\\/web\\-106872\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b2995f9fd1fc140beb8f3b776dc28c3bf8dec6a9bff3c7149d57e979ba0237e2", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjgjfgjfgfjjfjfggjfgjfgjf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2a24df5c6258e7423dfbbbc138ecb5e4a0400d235e2e8b541bd06af30f6196a1", + "regex": "(?i)^https?\\:\\/\\/fgjjhjhhkgkhgkhgkhkghghk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d6570482cadb0e6b97b515d93a1a8998d68d84691a61746c931b651d40f33b25", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a9be68fa7c2fc24d7ff2d2ae4e2ac480b63206ec3ed1983a57380f5e064f5659", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin[\\/\\\\]+maintib[\\/\\\\]+inde2\\.html(?:\\?|$)" + }, + { + "hash": "9beefa36ffb804bc3e91419078ee485b5aa4c5aeed1a0dce6089fad01bb59891", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "197d2b8454a82f3ef03745ca3ee9209bb90474ae4c8fc0380431ae0c883bb132", + "regex": "(?i)^https?\\:\\/\\/agricolecredit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "de4c61d1f345a29846ed0ae3511b022012b40e0dc91d789931439c73a4b52b91", + "regex": "." + }, + { + "hash": "3e74dd038b051eb18f61e82177b4def233af8d75622c2796d09659047d48a022", + "regex": "(?i)^https?\\:\\/\\/fgjhjffjjfgghkfgjghjkf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ee6d64cd2776b23c9a5e83f4a9bec8ecd89e3ebea0bf8851aa28c1b7fa941522", + "regex": "(?i)^https?\\:\\/\\/httpsinstagramofficalwebsite\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f91c8c9055793831af5d4bb8b17a13842e08849991f125c49471c34a0b7d4be8", + "regex": "(?i)^https?\\:\\/\\/punisherfakbfwe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "457ca7caf1ec1106720368b4cc881b080b318c80b8d8d52a326689303d863ce1", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-francais\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "95fc3fef90736a1d2e4098be78b04257ee4778ad00c8f1626e51217c78f46a37", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3425b98ca282567cd22b6f221dafedc8f8d11343323aa80d710e832016b3eef4", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d048889dbc51ab96b16adab6ffabfcd32962065b7f8040c6dd26982be9fd42b7", + "regex": "(?i)^https?\\:\\/\\/dfgdfhgghffgh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "83bf62483153f7d2e3f998b5fedf91447c0443f3842565ba59181817dcc5227a", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "31a66363423ab8e97cce521423053c42a490720d145232ef8ca561498a4f4d1c", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d414fd2243010bdbec23eb013d2b99afc39185c493e43ec37391839d76da5054", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a287b6119b6c319448ead8191ba7f894c218e30f3194975d5561e3ed8b5aef6d", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ffd1373e7b0d11372c2023914dd235630ea7a139cdd08698795c90f556867935", + "regex": "(?i)^https?\\:\\/\\/kelmeycta\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ff64238f96f570b5698a75422cb8ec57f55bc20f2aca1b84ba35a5ed7e5a1d64", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4725c1ccf7f66f12763efd1469a0133deabbf7718ae712d6edcd931f02426428", + "regex": "(?i)^https?\\:\\/\\/bt\\-100628\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "95d121a0297b9ab096e3853b412e3428e8caa349e4abe1928f54dd237b8dfd8b", + "regex": "(?i)^https?\\:\\/\\/free\\-live\\-cam4\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "76ad32ce982b7410d78417840bd6dc591da8a52d0886b67ce8aef8eef2f6492e", + "regex": "(?i)^https?\\:\\/\\/dfbhfhdhdfgfghjfgjfgjgjfgjfjfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bea1bbafbc2c040631441b9cdc1ceaa0c9ae738db7400050c2132f23790ddb78", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "687604a97fe445346d60a6efc5cae9e418fdd8244adae7f881e504e23bc4e16c", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b167ace3cd719cd762c0af702e705d8c459c15980e603336c75eedaeb125a03", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6f6211b4560b22eaabc59efafcff91b53fcf90eb11791f0cad4c582d725e8d59", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d834e04d80e4742a52868c6bd0e4cb7148c58b6b5dc2e98fa869699ec0022a51", + "regex": "(?i)^https?\\:\\/\\/kissulyagnomeszhmsx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8ea577d57f1cc71252ac9b09bf8a7aaf07c5fc60a6d20664bc10e4ca3e67c680", + "regex": "(?i)^https?\\:\\/\\/fghgjfhjghkjghkhkgghk\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a43c7c871471a9642ad36ae8761773f4f986bbfd5a9ce9aa76001b6e1741c15d", + "regex": "(?i)^https?\\:\\/\\/pirronevlemmox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "181899a192d9d31ce48a2c742fa3f4f3a098126fad702de1f3b1331629b7307c", + "regex": "(?i)^https?\\:\\/\\/pirronevlemmox\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f89b557c774fe77d7095d2d9e696668b09708baea4d40dc1fa5e41e7883f8cbb", + "regex": "(?i)^https?\\:\\/\\/fgjhjffjjfgghkfgjghjkf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ce603ca43c9bb3cd966cbd3649cfe5adbd82683e048d6168c553d96de641387e", + "regex": "(?i)^https?\\:\\/\\/getrobuxs10k\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ffef34a0e366daca061d11e3f8deaca7f7358e8eab9217107c6898e3b135655e", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0b3568c2bdae14f51e7099e0c616adbc462f5773ebeb3c03d3385ff1ab597c06", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bc644a3d1cfb8430473ecad8822d89accff8e68576824caa7027d9b53b2a15f8", + "regex": "." + }, + { + "hash": "3929f6d731cbf4fd30daf7bcc720adedcf6d576889ba192820e317e745ec98b9", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "325edb5c65fed181b51ef9ed6e9509e954332482aea64dbd3835e0027f5d58d4", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "29420c1308acb145008155d05cd1a7f7b03b5b8c9cc22f8336caefd1b25f41ce", + "regex": "(?i)^https?\\:\\/\\/lardenburghjlse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2a8c5dea86ccae9106d9916957142621b6f79048f57fb8e1755d94c86b80397e", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b411b0cfa035ccd26b911de9cfd3989d5c5fe3410818417199bdba53554d7ffb", + "regex": "." + }, + { + "hash": "04de24394352d3395c1295cf9c03a15d883e836a250e26742e9d07e5ef893cba", + "regex": "(?i)^https?\\:\\/\\/luxurymengxt\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5ca202d97fad04089d8e30f19a2fd8b8db5d0e8880aed7c4493c2e7b9212ba22", + "regex": "(?i)^https?\\:\\/\\/getrobuxs10k\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a1a3f5fe18a49bd8d3ed993c16c60ce1cbde644d629c55972450789d84224bc7", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bd2a166d059b7ad9cec9d01c2d0cf08a124b9a4b7a822699b0a2c58ae0927b14", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3f9031e1a39bc0b6a366d1f48e7177a5db03e70d33be567cdc48ca8937c346b5", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a0f98355375658c126b37d009120faa2cf21589b7e251202935c87362d46c3b3", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "11e56ce7b79432c629ea05e9b431e1e5d49b91f5b0ccb235b6240dafed34b12b", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a2843927a20fae059d63d3af88440ced41780112de5e5a446809b0e86b4f0b5c", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "06411ff89f0134fc83ea44ea5ac5a8831e6e1f312c5c183154fdfb363cbe09a6", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7dd7e63f64d707fd84d79c2117b856ee8f9a398dfb3226e985140a47b7596e42", + "regex": "(?i)^https?\\:\\/\\/webmail\\-109557\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "41a68a70e9f698eb6e6103cfe64221d8517c6dfd69533328185138640245cd9f", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjgjfgjfgfjjfjfggjfgjfgjf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "78fdb8be66196ea2b9536b804a221d156586f44f6c2260b1021bd94c91074a66", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "859346df707e48907b0fd3b9eacb54d8d877b6bdb9ac4fd5615fb4aa946f38b8", + "regex": "." + }, + { + "hash": "eca349b31f974150447ec0fd20a13b8ccd1409ee525a3509bfb01d19693decb7", + "regex": "(?i)^https?\\:\\/\\/bigbossmactepurnv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b6b91b1d0a9d799ebd08bed6ee906a21026b28f5bdaa7e53117d914d9d132a54", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "38a49a739c414195de8508f3a2ed2f451a23f25c5f0982787170672d502504d7", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "812b2e1a3a3d9b18eb4797b8ab9ce658e7d6852e111467e460d8ec86c4c7115d", + "regex": "(?i)^https?\\:\\/\\/dfhdfghghjfghjfgjgjfjgjgfj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d65cef708069709a1868b7db17dbc2fe84fd95f28d268d2aa4bc34940f271f1d", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7da0e359dfff3467335c8a385a1db180d6d465699c6260181d430dc9c0e7feba", + "regex": "." + }, + { + "hash": "134cc14fda18a014840f5ed23ba7e5b01a6083ed7a4fbec5cb0a3417a03763c6", + "regex": "." + }, + { + "hash": "4502daac923386504d2b698c3ccea157764387ed0250d71341236ec32728979c", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "daf14ac0e188fc87ad3447cdcf6737935b15c4bb849daf2b301fbc3d2da5146d", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c1f5ef0dba2cd604fba502ab5e12622bb6cabf7da8b3591e0dd434add7594ed5", + "regex": "(?i)^https?\\:\\/\\/bamprzwpm\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "df55122c97eac4d0390a6d3b2ec4154b4db2c20d4431c661c51512483f2f0872", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "923aab5594aa50859759ff4aabb480550ec1aaeddd47c34088cf1579541bc5d1", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "aed59a96dda08218913a6e5b8d3970eca55e177f0b43d0100b52aff4542ac87f", + "regex": "(?i)^https?\\:\\/\\/dfghfgujgfjhjfghjjfjfggfjfgjfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ca45baa9c9905d0af2d353b752e7185e517a223fa75bd79827f3e47358a56287", + "regex": "." + }, + { + "hash": "1400fa0f8ab7f18ead4b85f1cb7d7441518e8d677002ee6a66338b5cb1a391d3", + "regex": "(?i)^https?\\:\\/\\/kelmeycta\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "687d199f566b1a89b74d51b0ef632690fad1a82db8dff249acee77efe45b0ae5", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "06596d5f171127ea804f6e175ebd1c6682dd8ee5ceecad544f2a25c12e00b726", + "regex": "(?i)^https?\\:\\/\\/punisherfakbfwe\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "76e650b8cf4bdf71c20546d5ae7d858540494d727fb24c02c8419016a3c78a34", + "regex": "(?i)^https?\\:\\/\\/tugasgoodjokerclkxqlo\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d3d3469957230e70e5e2c75f6a5a4a89f4cae4326c3124562e798fd0826189c7", + "regex": "(?i)^https?\\:\\/\\/bt\\-102768\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a18010dd5ab772542b94213f8afc5fcc557f1ce4042e61609b65cc8dd187a3c8", + "regex": "(?i)^https?\\:\\/\\/fghgjfhjghkjghkhkgghk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d70acc9d3ae7b90365206f438e8e16cc8f4175df0acec5e1012e36525ee6cbb8", + "regex": "." + }, + { + "hash": "b0a5459b9412dc18c3f30251d5e6161c75af0aebb566f4c6f4fa07157d7328f2", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4143677f81cf9f9748aab659970327b28ae8cd79af0a5506fef1f5b327ac908f", + "regex": "(?i)^https?\\:\\/\\/messaahwyged\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "18c83ae9c8b3adf129c1dab51fe5246f95848ffc360becb2c45f0bc3e47885ff", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d258c0c429ef225e4cbe14b7496a50f94ebb2f63f37b2446bebd926a116579d7", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2f126cf7e9409ff3dd980154d992df393877dd828d244f62509d130d5e29d673", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-francais\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bd38737ada4e4b56d7bb42b54ccab23f40f324ca51652f54b2ec569c4ae4710a", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4dc6eee231c8f8be4123f260bde007dc05a33898535208c37dd2b80fae778d98", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5bd532374d70bd281cd26860a9c0405e4235769f2987b8497b24859c1497671c", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9ab045ddbb65c222c962903ab8128af917908a4aab23c63a12ca797387e13494", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9c11d033fc9d44789658ace208a8529c8c2aa75a1abd7c0715716af62d7af8da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+seite(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ee0c592893c31aa429d3e2afb84bb45d3866e89a00e24b9a8f571519eed7fdf8", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b0f87e446fa995d38aafdd530e8b5fd96e197c14d78ea732d57402a4f320ba8e", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjjfgjggjjgfjgfgjfgjfgjf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f10b1de3f0ef79c293ffa0924791f1b897721d3d553d507a2e53903a207de0fc", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhhfdfhddfgdfghh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "50be9224a13d0399cf5f1ab0ecaf3d503201b97425a2c0040aa52e6db4842edc", + "regex": "(?i)^https?\\:\\/\\/punisherfakbfwe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3d90766cdfdac23bcfac71190241cdc8e2d00d1efdf5a87359f076b6cc68e01c", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjjfgjggjjgfjgfgjfgjfgjf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "37be569fd9a8a6010445ba88145192bcd24e19447188e80f1ee8dbe910f37a66", + "regex": "(?i)^https?\\:\\/\\/bamprzwpm\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8e2b71c2eb1f8d032670e8fc337d71497a84f6c184ec040c7095397289cedeac", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "daa0a88144239bbae1446d62a0f1e48f7ea018b4cbf6dac92f143ac04c3767f1", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjgjfgjfgfjjfjfggjfgjfgjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0d8393cfa6ac10d8d84441459218a472274dc256081af4cbbbe2583d04e76f2c", + "regex": "(?i)^https?\\:\\/\\/webcamshowgratuit\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ba7b011a4d7834c3c62ca586f2418f5be033f9eb6bc53a910452b7345b885d27", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eff649ddfa1aa2f2b8e4d94f7c0b22ad02ab92ce725976249a341fe72dee57fc", + "regex": "(?i)^https?\\:\\/\\/hometerms2333\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "99e36a6da9e4faad9de30e5d0a785e5e58bd070214df4ec529cc5da7aed61f44", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "afc0800ec0ffaa1b04b157e46ad2c904d504fc0760bc27845831d237deba7a6a", + "regex": "." + }, + { + "hash": "5759883d5321369ddf9290d3c1d4abf524a5960c50c670213502dfca08176493", + "regex": "(?i)^https?\\:\\/\\/bamprzwpm\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ec50b8506c0284c704366266b43127915ba682ec2c9333d494aed988079e2cb9", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4bcbda2d2d3812ab4b4903f7086f5d8818c9ee177cac232eb65643ae06a49878", + "regex": "." + }, + { + "hash": "cad7556fdeefec6966e8a577043bc2ff0ce1d54ba71b3300bb83db19628abec7", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "96f78679ef9ff64f12820b11d63f0c33f65e91581991744d9cf265800a9ed3a7", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7c442fcd9d2ec64a411466f30ef8e4683b4fe6729ebcb5d3ae5b3a0873591a16", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4c91caf3683d68481fe6f87b10d2005ae8a44a9d49d6e22be931ba470df6dd6e", + "regex": "(?i)^https?\\:\\/\\/kelmeycta\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2390804ca10ee49fc72c21ad4b5e3dfcf9275ad3f7ebba4f7b6df4ce0fa21a0b", + "regex": "(?i)^https?\\:\\/\\/lardenburghjlse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "63ec506750b3be2642a29e2207a32fa5e3f66ea8db8f8b67fa6f077d55a3f4c9", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ec9b8b94ee66e4dcb2949d918556ff66402297c2d2d2d91f63a1eab168d54564", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "81eef5e7b9110d8496b22de9eece0f664a7e8c0cf628b6d4776be431fd73fbd9", + "regex": "(?i)^https?\\:\\/\\/fgjfgjfgjgjfgjfgfjjfjfggjfgjfgjf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3d11f530e71ad79657d01a59d6478d2e2073aa98ae3fae19d5c70e6ec6a560d2", + "regex": "(?i)^https?\\:\\/\\/btinternet\\-109859\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "aab3337e235db2117cd67cef218a07a2e4b5deb9363972e73faa3ba6ee7579a2", + "regex": "(?i)^https?\\:\\/\\/cvbnfgjfgjfgjgjffgjgjfjfgfgjgjf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f57e1631e7024d4e99f06ce70fb4e453e8c51b1850b674e5c7ee6a3b42dd6c8b", + "regex": "." + }, + { + "hash": "3af596c8b597595d6c0a39ce7a3103ad58454db41e178da045b0ad0a3e063ac5", + "regex": "(?i)^https?\\:\\/\\/free\\-live\\-cam4\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7ccf31fc1391f280a0d325c7a70e8df8afced8c902bebdd132e85e45a327bd96", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-2" + }, + { + "hash": "721f15d0ab1a883bff3793cd764521241af7e3a83c091a1b0e885dbebdadbb76", + "regex": "(?i)^https?\\:\\/\\/dfghfgujgfjhjfghjjfjfggfjfgjfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "dc384edcc4caaeb768b141942e22a1bf1c6b0653a23c137d9c1aa42e33980fc9", + "regex": "(?i)^https?\\:\\/\\/webcamshowgratuit\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0a21551b955ac422229f907ab09c13f8d1593ffd66cae494df09f3c7ed246eb0", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "79e2e1e0c65b06592da2950a2b26b6bcc64a3c8e884354917c55db50111a94a5", + "regex": "(?i)^https?\\:\\/\\/tugasgoodjokerclkxqlo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3b6d3edd692530bd10e421b41e035d65a22cb320ff31a19c5ea2208096a9b146", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "287f21de15af771c567d98a12cb5741af6b461e8c3d854405b25dcc14eaf073d", + "regex": "(?i)^https?\\:\\/\\/dfbhfhdhdfgfghjfgjfgjgjfgjfjfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9ccae4251bdd0905267b308597a640aa12a16dc71c5ed50ed09e94a6e66319e4", + "regex": "(?i)^https?\\:\\/\\/fgjjhjhhkgkhgkhgkhkghghk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9d500b21c35457711faa57484e2489ab77eb7fda6f4cc5c303b7d6fa999bdfb2", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0e5e25d3aca319e403f9417ca00bd9056bbaa1dfdc6fad8bbf8e6215f2212051", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "eefd1b087b3bdee36f2a833b1406d5e071b72145cd83555ae73e0fb920310bf1", + "regex": "." + }, + { + "hash": "80a887837cf5fce2c3974144d606041c695f1eded3d0cc5d1f22afc72b09e7fb", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cd21b1b334567da0d955a567c61b0915b596096d36dfce203f0fd26bd4db9ba1", + "regex": "(?i)^https?\\:\\/\\/httpsinstagramofficalwebsite\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "beab8490f9bcbe365032c20116faf8cfe1c686edce4599fd96955a152c178130", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ea6582d9b628bf3516e5acdb1813104d7c3d7e69a666de4908a326089256244c", + "regex": "." + }, + { + "hash": "a89944d3b35b5bc33c6afe03191d0889701781adb5a19f6c11e414de4bfb521f", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1bbb89ef6313607fe32f1d9bb56e4feeef6c82868e3921b3ce49af0fa747f0d2", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ec64dc1c09fb0494c0f547e8db26bd2d1ffec907efc09cb39d81539b0fdcec24", + "regex": "(?i)^https?\\:\\/\\/webcamshowgratuit\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "062501c1a2051edf832f00821c0feb747949c6263bb1e3fd8bce6a520b9f3632", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?r\\=\\&visitorId\\=671f8c54f716addc7508e4dd$" + }, + { + "hash": "a4d4520be199252e893857b1224cf84a0d69edcde9d7994944190073083bf080", + "regex": "(?i)^https?\\:\\/\\/dfhdfghghjfghjfgjgjfjgjgfj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "876c225fd7263b20d526d39170442f71bac7f2b02e8450d4be6a42ea159e7b2b", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "06fbb6296e746e651f9327b5f3bf520720885122e8b32f9f346fb4108a5bda2a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-francais\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "77e3cb45745777ee25521bbdbcf7455682c0df83549e37edd601b3e9c33fab3c", + "regex": "(?i)^https?\\:\\/\\/dfbhfhdhdfgfghjfgjfgjgjfgjfjfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4b8e673581a5fc3a8cb84e350011962f815ab2ab6fbdfa8f1e7901d136bb4d6d", + "regex": "(?i)^https?\\:\\/\\/pirronevlemmox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a84ac1185385a094da02d9380eee0b7c2d66265461a1f4c03464b68d3bcc3797", + "regex": "(?i)^https?\\:\\/\\/agricolecredit\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "afb9ea143efc33cfbc88c133050728c42f11854271be9a494745836adbff5269", + "regex": "." + }, + { + "hash": "4a495d38737aa79a36e84c7990a47f99e328834c38633aaff4fad888931ebb44", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5966528af981a7d14ac3dd9155ca86e0b9473915f875ac9e8971e77ec4112978", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4c941cc18a57e509d52c1f94d960166f4133ef60c134577e94da12f1ca44da50", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fa27d12420e46364a7d8736dd43d65d8e8e89ab839f8d7576cdbd2254b0b0c03", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ee52006d053645630e3b047d5c93958a0c998b9a0a652d0c9cad3868b36cbf9e", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "561e6ca674c08901948c65b0fe96102f408943d8f8f26c0b559a625c1d7f3e84", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "04f94112875051e979e7c76b39554e9a66df379fcc34bc1d3297994fcfd7d446", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a15933fc582a735692cc3fb018bb318f62f4da095bd5b2da41cb0e1dded1e4fa", + "regex": "." + }, + { + "hash": "20798ea3d37a30b6a6c58b5438217f91f3a006c30b8d4fb5b67e83579c6b8326", + "regex": "(?i)^https?\\:\\/\\/fgjjhjhhkgkhgkhgkhkghghk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "88e1b2ddcff8c5ca0d23412b13ce1958f8fdfeb00e369ad8f4d8d79fa3d5efa4", + "regex": "." + }, + { + "hash": "db7078405231528125dfeaaf1e56d905f11f260e1d2b2a81647b8cf06733f745", + "regex": "(?i)^https?\\:\\/\\/kissulyagnomeszhmsx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0d83e8c5ceade2b9af68c34c0a59bec430106dcf5aa9e1ea46aaa8b0cd132dfe", + "regex": "(?i)^https?\\:\\/\\/luxurymengxt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1d2ed26277bebde0ee84d82730906bbe6e49bc3624be718ce1f752ffbf7e6bed", + "regex": "(?i)^https?\\:\\/\\/prisscottzpzdnfz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f5242a66bb0e97e5a894bae86f0e124f5f668d84209ebad7a8f06f5cc3d0d007", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cfdef5e095650a6eed569132a817ed0f580219c6963c8cf951c90448e7de23e4", + "regex": "(?i)^https?\\:\\/\\/zealous\\-shirley\\.43\\-133\\-42\\-91\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "4a93227bae5395ad96bd4629778d0a7c75cc22e855046bca280100fd5222a15e", + "regex": "(?i)^https?\\:\\/\\/dfgdfhgghffgh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "08a8b31a3c7bd336f27aa15cd86b733fe631ee25ab6316e27ff47f74b1218cac", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c5f55504253f4fd3af7ff986f4288645837681c89c30afa10db5bc5e7f825a75", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0f3ce54bca40b977300732edb3433409750033d5eb89241b94c4acec9abac409", + "regex": "(?i)^https?\\:\\/\\/gunmetaladorableoqrcq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "88babec547ac7f82420792efd8bda40c8534e1769265c06482453bb5ed56f586", + "regex": "(?i)^https?\\:\\/\\/messaahwyged\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f2d8e7ed24ca439d915c0db099832903c9b917ced7886adf6de11347b3440922", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f20526fa203ed86995da10b48fe8a9c6c8c987bd1ad848abcc047547022359e5", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "252a71daf5251ccb4d89eb8bdf328059618d5bd11d0244c765d54fe946c05d82", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "585c4d937c5dca84223504e57ffe223efa190fa6c488a08ee5b83ddc085e0468", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "44c805c8ce559e4442a58b6d3fed0797551ee5b31393b32c2839748db5a8acfc", + "regex": "." + }, + { + "hash": "5656039d5927421b4343bd0e607969a882e111eb065a122bf0868f5ece8d5635", + "regex": "." + }, + { + "hash": "e01240fb44a947751218defb77ec95a8f85eb3fa5a730fbd1434b32eae9a7233", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8fb3b96207f74c043bea2d6380e2efa38e4a4c3b785f638d5ad07c1680050b54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "009315b16e096cac472b629e8dc8f24b9b30438e9b2674cf6217686f922e81dc", + "regex": "(?i)^https?\\:\\/\\/ghjghikkljhllhjljljhhjlfdg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8e04b9861cfad7c2f5e40684f647907944fa32123bd0d68f8c8492b7d4ad31e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1TF8hEjq7LWGagQRqZKjZGAS(?:\\?|$)" + }, + { + "hash": "daf111acf59a6517d0fd64f2a6ae2f137f3d2396fc945bdb9f9182204114b805", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "44c7a1e09c74945ded2dcab119aa056aa8280d9ecf426c7d0cce307cb06a295e", + "regex": "(?i)^https?\\:\\/\\/dfhdfghghjfghjfgjgjfjgjgfj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "71127be20e6185bdd97c4ee9f6990eb49835809be5d7a7608cef84f2ea175ab9", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2079c691a2f0923b16227d5d64d377fbc149feae0d180dc127b22ddba658ed46", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fd302b26825ad7c71e84978fd02e5944dd152a6e9c5f98f1826d3fa15a5fa27d", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgjfgjfgjfgjfgjffgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "99d4a5607d11f1d830a8ef3b3027f77b81d4a0f94fb7210244f6ecf137e19faa", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cbe0cd1b00390c7bce758bbfe5e74589a61d5d908543b4e35ebff5159030b275", + "regex": "(?i)^https?\\:\\/\\/httpsinstagramofficalwebsite\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "43fb492e41b9603762e3a5b46714ea40a633c28b3dca419aeac86852256a71a0", + "regex": "(?i)^https?\\:\\/\\/iqfcdzspw\\.com\\%E2\\%88\\%95fcojz\\%E2\\%88\\%95ueinsc\\%E2\\%88\\%95gtofvag\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ksmaukqq\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "171cba7977b42bd332c8768a45de62a176b9241b2ca78f3d0872ad60e9eade62", + "regex": "(?i)^https?\\:\\/\\/dfgdfhgghffgh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9ee245ff3840624f386ca135b4446f64c331c9431d4beb085c27239b7ee8460d", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0d7b5ec4d18354b42ff9c1062153a0f56971af2cbbb42ffdfdeba2e3ddf48b3e", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "90631642a6f3bf324e36cf51aa6dfdf4fc3e8a25754f7e2d013dde656147979a", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1527b37c2f244f2b1e9f670e691658ecd108fb841df2ebdc36a243866f09ecbb", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8ebdf0806d46a53adf869e374ed7cdbe1c7bfcd2b759ca694ae5baf9bc100320", + "regex": "." + }, + { + "hash": "958683bf3fe5e4f96b20a2bb5532f35a6c770efa874365ef1b20a7b279dc59c4", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "67e18120c3dab3fa815b2f056c5df10c05ff6e7656b807265f75e101b40afca1", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2803f43241e3c3a98addec98ec988f82fa026cc415ff822f2edc61ce47c6ee53", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "435e4cdf216b8c714b99c4569a2b03186ba078638965fc356768f2a9141747ab", + "regex": "." + }, + { + "hash": "ba2a59405074873ca8bcf5c7e7d5d725de1d5aad3b1946207b13085b097663b8", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "04419deff7d137e2e0237248c7fa9c5da8d0840183a1446ec33ed9063c8466a3", + "regex": "(?i)^https?\\:\\/\\/fgjhjffjjfgghkfgjghjkf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "480a9a09639d28a5c2f11311e10e097e0444c0e19f90a626945c856b0e119632", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "69c1d4e6a0438022bd7a72c6732d83f265eb24b938a82b791b4c73f7ee635539", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nbca6gb6o0ex\\.html(?:\\?|$)" + }, + { + "hash": "e90263d4e83385df42a2b6ae0b18b2378420aac885b300491d4b52427a687398", + "regex": "(?i)^https?\\:\\/\\/dfgdfhhdfdfhhfdhfhdhfhdf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "32df07d8a90a57f68c26ad3f77981365b6bfb7dca3b32f551252841ffd5fa1bb", + "regex": "(?i)^https?\\:\\/\\/httpsinstagramofficalwebsite\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fbb05568a84f8e010a7e02c8c9631940f580af6e85e549f9d534f4a6dab030cc", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3f27eb77f9b42fecb8994d6e7d830131f50fc321917b7dbf557e662c58b995ea", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhhfdfhddfgdfghh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "44e0ce708179ccc46f5d60771fdfa29942485833c56b9fd87618fca6020da67b", + "regex": "(?i)^https?\\:\\/\\/bamprzwpm\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1d9ab8b4726482f5e8b7c33cc88a674f929163f1d015099f14831534d7a8ea00", + "regex": "(?i)^https?\\:\\/\\/bt\\-105782\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8cbb1f099ed5d1cf4b29f2e7373686db2944da3f197567b0868a7e2a66250d9f", + "regex": "." + }, + { + "hash": "dc05ccad0b7cda85abb231e37414c8cf4e993221b1d472818c1c548e1c982b74", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9c8a4d15b95ed2db75c5aa4c6bf62e77e7426f3893efefda80601dbdfb5b5b07", + "regex": "(?i)^https?\\:\\/\\/dfbhfhdhdfgfghjfgjfgjgjfgjfjfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fa7d00ebe046d39556f455eb1d7a55b1ded4da24054844abc466fe5ada88f5ec", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ff80de7e42ee0a8179dc9b064d1bce6e728cd72138f7387bdb7c47747948bf39", + "regex": "." + }, + { + "hash": "27ef4df35294cdba3f3e9f921547b61fe769bd4e7465851256e6929bc87a345b", + "regex": "." + }, + { + "hash": "1d974dca0d6d379ad650f6216a2e10b12f266cb5739c308004c118fb96166fbd", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4ae87b1000ae199fc760b9972b0bd1f93ee2eeb786cc40bb66e9f175f84e7108", + "regex": "(?i)^https?\\:\\/\\/kissulyagnomeszhmsx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "24514d776002e6001c5a0c48df3a375beba2bb75fcc6d0c96cb07e6c91a266ba", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "248c2f92f0c50bd0a61f6dd59d088b3ddf9ba07c0f2aa64bd48b66da623841df", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e6f01cad52b7a6cb9152e5fe9935de8a3ef6b905a43393772ba18d3d623f21d6", + "regex": "(?i)^https?\\:\\/\\/httpsinstagramofficalwebsite\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1202cf7cba9d7c3f119addd99e3dc9565d6d10e53580816cc0d64e912d1c952d", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1db5e8231bacd5dac302bd43aa88f674281b029838f9add5d84e53cb49a63687", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "acca7b907d679ac4a8d588eeb1672a68cec14771b693bac3f2e9f6ca1662b290", + "regex": "(?i)^https?\\:\\/\\/lardenburghjlse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "94bea18ebcd2d2df7f0e50b9871e4e6ec1430afc4bdeee642c40d8a71f3c9a1b", + "regex": "." + }, + { + "hash": "4052b5d3b9809c43629a8242ad41838c654afeae3577a44774cb576213e283d6", + "regex": "(?i)^https?\\:\\/\\/webcamhotgratuite\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0fdd284e29049b23671ed5bba14b57f14b5482ce797763082ba022b3994be2df", + "regex": "(?i)^https?\\:\\/\\/lardenburghjlse\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4a7f340cd96cc84613834e5879a8426f13694e0ca9769ba8ceed5902e9bdef30", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b584eb60e06d07ad0482050347dfe322d18c80989271c18bb10c49ff90121c7b", + "regex": "(?i)^https?\\:\\/\\/ghjghikkljhllhjljljhhjlfdg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7061c52e7cba91105e3c3cdae1b73b6ad3275be43714d935f3aa26739c353b2d", + "regex": "(?i)^https?\\:\\/\\/bt\\-109894\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8c45f99ac00048d894a848234cd905c2e6cf063fa6d9fddb91f46ba1397c5add", + "regex": "(?i)^https?\\:\\/\\/web\\-109795\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b0e589f26fd85dbf62014874b367c2e27da338beeb195fcd2bdd56b676f92f2b", + "regex": "(?i)^https?\\:\\/\\/dfgdfhgghffgh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "11650d9a7a1c7d94bd9021a99615bd6b0154814db1b61ab0257b38ac1c591d42", + "regex": "(?i)^https?\\:\\/\\/fgjhjffjjfgghkfgjghjkf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ad8cdd3d67bd6cc9917ddcc4b8d6054a3552ab7e65922b84bd85e86a1ced3b0a", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cb513da9f797001affed141fb4bd212628f5871a38f550002b3d2b2cd1ccb676", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bf9305030d5508783fe69c8e8679e30caf3cc0e3c882be5d4f56951b59424834", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b41158d815ffe7df737b7f62cbf055def83d190939328f92e6773357d63dcd43", + "regex": "(?i)^https?\\:\\/\\/luxurymengxt\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "20152a67ecae3e449d2080150fdce98ed16b6e8bf5ed7cb88d0229feaa7cf292", + "regex": "(?i)^https?\\:\\/\\/fghgjfhjghkjghkhkgghk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "99621f637f78c49d4c119d8c9af6b58427b77a83850b1f8c66653971410b3539", + "regex": "(?i)^https?\\:\\/\\/httpsinstagramofficalwebsite\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e923b98ec4330693e781dcd46315f592595eceb8f0057d99690729d9040e4252", + "regex": "(?i)^https?\\:\\/\\/webcamhotgratuite\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a49f86d4510fafc5c7a6715c1d7e4ab7eec72b3eb23b2c21e9eadaf25b2bd0f9", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0b88afc509edf0aa7ae5c3ef638dcd0c4da1198ac42459c4dfd2f54cdd40d3db", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "19420c1a778adf41d898544e6d751d5a14543e5060099d5d4c3b60b2d1e4bd36", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f3a01c2492b386520eb1c004849a8b1e7066bbaf5fa958bba4ac3b9ec88ce909", + "regex": "(?i)^https?\\:\\/\\/hhyyhoh\\.com\\%E2\\%88\\%95esevvvf\\%E2\\%88\\%95qevbcwgu\\%E2\\%88\\%95jeaqwnvcc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xxbwfxxdm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b22859c28abf60f0dfd68cc35c2f2cfe498e46a815d6fdbac03655ed192aab9b", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2d7e9182e2fc9838f0dfc43b1e71a6105b569a2f8f81bc9dbc82cd0587c9f32c", + "regex": "(?i)^https?\\:\\/\\/tugasgoodjokerclkxqlo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5dab1a210845033ef2ddbbf697453e692a3185822808aaad9a6460ede4e6b857", + "regex": "(?i)^https?\\:\\/\\/bigbossmactepurnv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "18cda3d64ee1fc8efb9d8d0069038065b6708cf1ac14d1acaa089eb4218bdd1f", + "regex": "(?i)^https?\\:\\/\\/pirronevlemmox\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "420322a4f8971861b3f0d55fcb1fb83f3480ed204c6dc8b4031a863cfbc98c7e", + "regex": "(?i)^https?\\:\\/\\/bamprzwpm\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "df45756a097fe85729ac851bcc7c3b1bd4c85163ef84685d367ee4283f64cc9c", + "regex": "." + }, + { + "hash": "e6a2e16bc1b6bb3bed8d945f24371849e774adb1bda84d75d51633d8d3ac337a", + "regex": "(?i)^https?\\:\\/\\/kissulyagnomeszhmsx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "79e09d40b4445cf4ff44eaf09866d3876eb9ba0475d95faddda6f6959056e918", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ad830e5526fa7407258b25619c7f5b51d5a62171ae5fa433f82305855b2b7a36", + "regex": "(?i)^https?\\:\\/\\/10298fsdewc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c4e432b6539d095156282616a86ab6a439b499e1788b1024fb42e8eb378db37e", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9fa80b0f202aea50616e6eb5f9de9db115fcd2f885bfe3e083e1d3d989c137bc", + "regex": "(?i)^https?\\:\\/\\/kissulyagnomeszhmsx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9c28934d8748e7647430ada13ce40b939fc6dc5d1f8921b9473ccd541a25ce05", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7a87861d5a92ef67924188e74a0c570c250c0107c2731a3e3f3cc5866959ee4a", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3c6c2b8c7d6a05e67b417580c1ba4c9968c6bc5e233e98642f0c3907470e986b", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "92abd16f0280831693bc6c7068ae1a8378f5219eff551f1d3a4d7eaf765a0cf5", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "70989ff44867b6fff9062a97f5325dced507ba2f4779fe77a8bae2b7590866ff", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4ecc093fa71edb8adc534f64ee191eb90743d4da229150409bedde83a4880cb6", + "regex": "(?i)^https?\\:\\/\\/tugasgoodjokerclkxqlo\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3e115469b8384d657cda54968bab2bb077f8e54029d0ee0e50489121d91a6da4", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "03a2afe945e77c227904f620afe148474573db960d87bd9f5453f8f0063e2b9d", + "regex": "." + }, + { + "hash": "05ddbf564035a62c07fa6341a788bf72182e9b6423302e8d13ba197a177b6ee6", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4897e3552fdc75e5bae5c772a522ce5bdb6ec91f376a501c732d97d006f2551c", + "regex": "(?i)^https?\\:\\/\\/bigbossmactepurnv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dc273408ea5cbdc1425cb2ca1d8550125276ad61d636706c4b04f44a2cc5d94e", + "regex": "(?i)^https?\\:\\/\\/webcamgratuites\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "abb6e21fe70847ef9d2ca65ec67c0dd173110f786441dfa313b3e9fc08cdafa6", + "regex": "(?i)^https?\\:\\/\\/gunmetaladorableoqrcq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a19965c326f2bf9b97bda91ba63be6a14428b107c2742cdff0bbd52fb5fb604c", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b80ec468343b2bbedb04a7b0d37fbe79bf67bf224593fb987d7c31bdd654c878", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "64f149187be3d508f127f843915f26a8f59fdf48a4d8c32b08b2d2e5d33a490e", + "regex": "(?i)^https?\\:\\/\\/messaahwyged\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "35bef0bea300d22ed09ac67888cec39703bb3eb01d94f119563f749350ec3426", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "378b8038ee9fcd15f5f8df9daee4ca2e2837d5373c176ae73a0b311b3eeddb86", + "regex": "(?i)^https?\\:\\/\\/messaahwyged\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "aa0376af7268a74c0052863bfab596e2e14d1b689a7883baf5447192387445cc", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1d2e7560c45eef2a44e22460f3b2d88284181ef978c8430527ee9fb8e61115b6", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1af7c716102cd739f76c77ebeb2904091f564e4d8c8b580c43ce3cd6f895daa4", + "regex": "." + }, + { + "hash": "af992b0f49558a2c9e906a3e37798ee57f99e9d5788dc119dca896fb9c46f6ad", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "43c29f052b292a2915510c7ab8ddfdd167c1d7611775a6f0df43e4aa7a3d3bec", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a7c7d2c66961f8ad7a10053ccca5039da6de0ae8a9bb7f628c782b9d7e7e0", + "regex": "(?i)^https?\\:\\/\\/glad\\.com\\%E2\\%88\\%95hikotcef\\%E2\\%88\\%95yvjxsloq\\%E2\\%88\\%95bwwhz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=presuming\\.co\\.jp" + }, + { + "hash": "1eaaa9c4f59d463ad8464d91403c4a46a4e8a2952da8559ac7d1db1caa693d76", + "regex": "(?i)^https?\\:\\/\\/gunmetaladorableoqrcq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a9967e7295f2fcc9e0eb88388adf9fec8da7a8ae3a756f73676ac5f0222f57f6", + "regex": "(?i)^https?\\:\\/\\/10298fsdewc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7d823a15a3ea706a6e40ccc868ec77d0a4f630362d118121e3ecffb4b88ceb82", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjjfgjggjjgfjgfgjfgjfgjf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d045471255cefaffc5b49180171e3c954a8540ae338cd5b4cc3126a805a5d1bc", + "regex": "(?i)^https?\\:\\/\\/kissulyagnomeszhmsx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6a8c7f2976593fddf2b45d8983d07fffdabc594c5213392a3b52f9fdca25349c", + "regex": "(?i)^https?\\:\\/\\/bt\\-internet\\-106962\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcaffed0ee29179625dd38fa34f40b644a7341711f441a2c9ee40f9a54cecf", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f68db6e3c31b484779962f5b233f070742887db9fcbcb253c10bb8ddfe9c39c6", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fefb541a4130a6725bc617cd772fb0aa7a633cc766d3f6d0c62c76723d4b6b1e", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0b30f01a92d3a6bdc382c7c3c19069cb50eaee79a91fc5e6237c36d434f2a42f", + "regex": "(?i)^https?\\:\\/\\/pirronevlemmox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "19bdd6895a65b5406a2f6bb0c978de81661d7cc86f30765ac2e86402f2f500c9", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1bf02e9b5239fc8fda96c324b231064ae28e25c74720edfdd17fb83f01e80509", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "84c2f0e64673d23fc57089c7d3e80c0715306f6083bfaae9520ca2781c527971", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d908ac68e8830a9d8a0a2369c08492b0aba87764661e23f45cb98160530914a2", + "regex": "(?i)^https?\\:\\/\\/bigbossmactepurnv\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5b07a1f6374dc3be15dbc03fdc930f51f55ac464022f6b25c8459842bd7576fc", + "regex": "(?i)^https?\\:\\/\\/10298fsdewc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e3fb45645a8e82b8fed21dd4aaa0695447a2b234b68044a695dd132ccd3708d0", + "regex": "(?i)^https?\\:\\/\\/messaahwyged\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dc75859222c010766dfac388b59f5509aa6933309159099b7f57eeedcb02003b", + "regex": "." + }, + { + "hash": "9190e22189eeed67a6a558406fffc9c4e22dfa97a13c3b57e78e14546238ba95", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "827bef6b89238d87111f6deaf0b1949f558884c8b4e1621f09044786498a7ceb", + "regex": "(?i)^https?\\:\\/\\/gunmetaladorableoqrcq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e7712023b5e4eef3f8abe2899a36c3f8c26e9f0a10a359f3413acfb928f210ec", + "regex": "(?i)^https?\\:\\/\\/gunmetaladorableoqrcq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7d4d2aba3ceae788256a156d10b5cd30a6d9e38c52431f358167afe6456901f8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-francais\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a9e973ad93050319f8b63f91d081b5a0209cc038853bb53a220e9e7b395baadf", + "regex": "(?i)^https?\\:\\/\\/kelmeycta\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "02daa24c94f505c455ddf09d708267a75309532774189c53ae53ef9b463e75ed", + "regex": "(?i)^https?\\:\\/\\/bt\\-login\\-102393\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d48abd1a41c7ea93f0f6bc7edd5f9f52f1e21ac3db33aaf3f2a8c4e8686ab34a", + "regex": "." + }, + { + "hash": "711fbc6911b401c05deba5235a8140eb2c0ce5b0f33e16dc9259889a7a4de180", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f4f0f108a8c6e8c5e514f164135d7a97ce05c41f9aa4944847ba901f3f2871eb", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9c0ec412eb638c426082525f01c3e66df2a14fbb4e8cadd544a2ed81085b1e20", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "24931cfeb645d8f292f342750ae1ce3a085c20ec7ee217d296dc19a8381b956a", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1120fad4da0338318b75d2d744627f29210b4c2376ea5dde341e187b5cf0a7b4", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7ea09fffe727dc4c35a55a3644b09f221747338b80584cf6568c55bc4e69d3b0", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "285700b4ef828ae3d23c0b47d395868059ce80496ed3b89054b870beb055a77e", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c2c44f60a9974709528bb304679d782b9749a915ace8f872f0fde7769cd72171", + "regex": "(?i)^https?\\:\\/\\/wootmasarukiotornv\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "beff0a059fe6f12626b52ae41d2eea642610a83c5f3fa8f710bd3d02196433c1", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bd28fcbc72ecfdf3f634717583bb8fa646413bc64c6920ad974ebd2802b12212", + "regex": "(?i)^https?\\:\\/\\/luxurymengxt\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8259a4c0dbd76fd72c1a3f827ccd603a000f7f0d1b74066990f66bee966648e6", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "acb7515111e434d0677b530e745aca47bd25911b5b4ccf62380c89b2364a5222", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5e2eed0682081ed71b7b10e11cf26c8335232eec3f718005e534fa6b62ab24ff", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ab48f1c8fc4435bac950ead58a4114287ea628dc50b8fb5911df5609d12dd903", + "regex": "(?i)^https?\\:\\/\\/punisherfakbfwe\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "83fae89e7d82db49bbb9aa6ccda0ddb8c00d5ebdfc01eb28b0f27aa58c75726d", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c6a409b99330273601d5e76ddc08c9fd2649fbd1fe2a10c082d68d2b1454fef7", + "regex": "(?i)^https?\\:\\/\\/dfghfgujgfjhjfghjjfjfggfjfgjfg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "84747764d5f36cc86fbbf5fc0677de4c06d9077e4379a0dce2f6a319873727ed", + "regex": "(?i)^https?\\:\\/\\/crowmistikagvmxsa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8ee18f9644877cb4420b0faf3c6b5006d61aaebb83ec7c16758b2394c61e32e5", + "regex": "(?i)^https?\\:\\/\\/ghjghikkljhllhjljljhhjlfdg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4ae8949ddbf875c579c577f7cc5dcb3b8a61e8ba90567eb207f93988e6f216e2", + "regex": "(?i)^https?\\:\\/\\/cvbnfgjfgjfgjgjffgjgjfjfgfgjgjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fc20fb277ee40cd8a85787f5e52f033c497e8609a564b1c0677517ec9fc8b1a9", + "regex": "(?i)^https?\\:\\/\\/dfghfgujgfjhjfghjjfjfggfjfgjfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "052ff91664ab6dfdb9b2a2c860c1351ba178c7a57861a5ccbf8c407287eedaac", + "regex": "(?i)^https?\\:\\/\\/luxurymengxt\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d2fa9b149d8aec0bf504b5c0e69f192b00da33790b5bd9a60fdec90fd0fc881e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pel\\.smak(?:\\?|$)" + }, + { + "hash": "b464d168377107cd46971231ea387c534776952fbbd661100bac40b73094ed63", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9d875ff5c245391a8690e0e884658740e2218ab787980b38b9d95d6902718729", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a969d810238ebeafa98d9c2be4a5d2cd8878420047ded74aa57fd1e15862c0bf", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6145c6b8932c07a62b541b2101752cbf5cc37a724682e537b722b87c957b51c5", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a2399c3d853f990993b2f90625a7530965424938309adb3227814cd9e503d6b9", + "regex": "(?i)^https?\\:\\/\\/crowmistikagvmxsa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c8aca42cf72084860d70fb71c423ec3a92f077567eb99e5d6d790fb26f574839", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "063a26187333eb4ea9fc2ba323fa1d78b06a7e9677f2f9fedbde14882a5d926d", + "regex": "(?i)^https?\\:\\/\\/bt\\-102676\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0cb6f37560d01b1d7fd989d60b96c095f6a4547a82d5be20ad6494cd2af82bdc", + "regex": "(?i)^https?\\:\\/\\/dhdhgfghjjfghgjfjgffgjjgfj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "52f536dd8d6ec44b4302ecf8b4bcb431861a27e6d120b98fac371af15bdfdcbf", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "67962d906afb03ba76363def6cc9c0e711bde4ee3fa8aaa29db05a4beb4260b1", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "378912c2aaaff110123b26fb92a9ca810fc7519ecbf58706c802bcdfbfa17a75", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "14f91f2416cd33e8a6b1f598b7b202452f4bf3870777f958fa3fba11312d68c9", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "42a7f3d9940f0bc17e27837e20050f2a50e61c4201395490e150d98665ac3749", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1156407b83c7abde757cec76a80913aa61185dbd3ad8de111ecdd5553f2c205f", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1d3a99ba73b2dc3ea997acc5e5fdc98cdc1c263f666400db08615f2bdcee5121", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1f2152a10dec28d2f8939bbdf7dfe58bf8eaeb36435442e178768c22155dc1b2", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e47c2896606007fd39322262055d18c24008c323d516cc71ddb1385d4669fb04", + "regex": "(?i)^https?\\:\\/\\/btinternet\\-107998\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "03de5656c8505351faca4c0a666ced98d06cea0a333448023d9a5bcdd38eefab", + "regex": "(?i)^https?\\:\\/\\/getrobuxs10k\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3833218571f8109580b64eacf816743c6a4de31a8496cdce2c3acc04e3387c1e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-francais\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1e12d0bc7321219a8f5c528eb78c4557670d9e9ccdd098bbf2ebaa6b5c52cb1e", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "065e7fb40dd9a939620db7a997480c59b5895993c7429fb0435bb7d58a91e12a", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d097df29601f6ed2d8a43944af628ec9d5c92796953de93cfa1d876ecade8a26", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a0541e60516995b0473598ca1f9682103e2ff1cb80ae158ff34d359b1c0548bd", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "42542043f9f93402e36f5cf966a48b6b875ecfaf752b6eddf47ae5bb52446376", + "regex": "(?i)^https?\\:\\/\\/fghdfgjfgjgjfgjfjgfjgfgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "542dff41d7d9d011a46c2c17845d6e1acc7ded09fbc50f139f2c2b3973600b4c", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9fed71f5f378d01dc0ae93d18b7e2998768d26c38a1c252041bf0f39e4471eb9", + "regex": "." + }, + { + "hash": "1c4013f3bbd12adac7a04749ddf9b54f2275aa84da3848af756a3917c3a9af0a", + "regex": "(?i)^https?\\:\\/\\/pirronevlemmox\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f753457a43b9eaf270e935b367f849df7532efb25e4108ed16a764aa3c39bcbe", + "regex": "(?i)^https?\\:\\/\\/bamprzwpm\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e5904bc31f1562007ed036da663f99d6ac31b5bf970e17df48f417a79b4234aa", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9b3d9cf6c7fb5ce057b3b704e099ca615a4937887bea3b31d0741d0c59507fb8", + "regex": "(?i)^https?\\:\\/\\/free\\-live\\-cam4\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "be25eae1af60d322d8232875c6a8c55db0ddbcce32017d3ddfc3782c93fa14ac", + "regex": "(?i)^https?\\:\\/\\/10298fsdewc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "27cecd6281bca23df787d3a5c423e5579abdb37272e920e19540166ef7aebb4f", + "regex": "." + }, + { + "hash": "019d9b4aa514909de8938ef3080dd453799a707314149335f84fe13b9231061f", + "regex": "." + }, + { + "hash": "076c9bb04f8b020953f581c89d612350f62b850e1de4742aff06e72ff745f782", + "regex": "(?i)^https?\\:\\/\\/fghgfhjfgjjfgjgjgfjgfjgjgffg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "39f3d8e9c817faea213b745a66ab4318a20b7a95772360c5cc014254fbcf2309", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c7fab3b4f569006f5326903b01a7b88c44b9dfdb93ccfd40a72cfc045fc1f61e", + "regex": "(?i)^https?\\:\\/\\/charitysupporthome11\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5e7de157e70fd1ea2e12230afc11f724624fc345a0a88f381db5888b8d9b4772", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f007b4708eee44b4fdf0bc86a25b19328d2af3f5695fb8cce7357307be0604c9", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhhfdfhddfgdfghh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "18d182d8aee07685f80467e95f61f26f2c9097bb49b3cb45ed96070c1e997f91", + "regex": "." + }, + { + "hash": "9eb52606a185d27af5e082ad76e68a71fd454ed1f78885b39c9baf1aaa8b7cc5", + "regex": "." + }, + { + "hash": "df57fdccbc82405866099652313c0d2d0659320a16670b837a12cc6dbc26d882", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mail[\\/\\\\]+en\\-us\\=421b0bb34445aaeca8034a475d86fc55[\\/\\\\]*\\?newsid\\=6094404622MTQ2NDQwY2Q1YmY2YzJiNWRlYjk5MzYyOGExOWMwMDM\\=MTQ2NDQwY2Q1YmY2YzJiNWRlYjk5MzYyOGExOWMwMDM\\=MTQ2NDQwY2Q1YmY2YzJiNWRlYjk5MzYyOGExOWMwMDM\\=\\&email\\=gallagrr\\@warwick\\.net\\&loginpage\\=1MTQ2NDQwY2Q1YmY2YzJiNWRlYjk5MzYyOGExOWMwMDM\\=MTQ2NDQwY2Q1YmY2YzJiNWRlYjk5MzYyOGExOWMwMDM\\=\\&reff\\=MTQ2NDQwY2Q1YmY2YzJiNWRlYjk5MzYyOGExOWMwMDM\\=MTQ2NDQwY2Q1YmY2YzJiNWRlYjk5MzYyOGExOWMwMDM\\=" + }, + { + "hash": "a6c35da0dff8b47528b267fbc58f4895145a19856e794668a706141761109f47", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfghfjkjghkhgkghkhgghk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6f1b67945ea4621753287850fc544fa59a57141cd815d87acbf6e15b031acea2", + "regex": "(?i)^https?\\:\\/\\/gunmetaladorableoqrcq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5bdeeeb73b31132d4716db22ea9e655c7c25eff7cc8a4f17b0773d0ab04719ae", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "71b6efd9411855aec1557e0347b2cb85300c84a8a5d38a491c335791eb902eb4", + "regex": "(?i)^https?\\:\\/\\/crowmistikagvmxsa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6c52133b4f606f0a88a443e35f0ba227db498de42a7ea639d97ebbb35529ae4f", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1df5dabf8d37d36aba9e150d542d6c1973a691f4bcdd6a067709bd84a51253fd", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "81ad52ab71d487a5b14493ef298a7e52f814d8072ed56d98be9c6c4541ca35be", + "regex": "(?i)^https?\\:\\/\\/fghjfgjfjkgfgjfgjgjffgjjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "aa907947efb5836815e460622fc325b29a7b234d5b9419c776f680f7b1829fe6", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "eecdf410775b6c0aa33327ea9dfc970497c14038494ef53da3990bd61d536a4a", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dfeffb0d63336756d9844e50a8c44f6e7132a4cef7143b7e089f1242fa4334f1", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fea66a1a524412a9a4d346af67f78ead53431e966584eae90acc13431f4548cc", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b77ad8e3c33902390abd966736dc9ccff8365f5df3d66be83bff68607f29bcc4", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e26ace48bc26cbaeb7af7a0d1b800e88e15c79c6de6c3e3b6e32784001f5132b", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b460cabedfd33dc0353c1a14c116754e0adee18ea09f523b918bf79edf9653c6", + "regex": "(?i)^https?\\:\\/\\/fghfgjhghkghkghkhkghkg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7ccf05f411d9ee7a9635c29155650fd49cddb22876f601106b94e984c1c7afe6", + "regex": "(?i)^https?\\:\\/\\/bt\\-105902\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "53410aecd8df95e8cb2d50f9562552714ac8622fbf8b0212c1db95e8a6f063db", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ea5548a2169a8a0d6852f7443fa037b2ff63451f840c3462b2e926a539f124b0", + "regex": "." + }, + { + "hash": "ccc2c19f7cd109fd9098adcb9fa5c479f499167e91448cb5724147631f31d2b6", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3b903423e84309820c989acd85f3bec2b230427ecbb3f7f4806720cdae86e046", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ae4045d6e1f95b6dca0e1762714f42aa42ac3f8f7ae7fc6898baa69201b78f0c", + "regex": "(?i)^https?\\:\\/\\/home\\-100473\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "06f1a4b7fe2aa7bcdca199a58942e26298c1616855f8e3cd33f246c6ab9f0ce0", + "regex": "(?i)^https?\\:\\/\\/dfgdfhgghffgh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8622dd2c3d63cf5d35d81c2f6a9eb76ddc4149c2cde9ef33c54d3c6379914106", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "252a9d66588fbba149b012e04452573cb327bc5b2cf1b8afc0979fd30839b953", + "regex": "(?i)^https?\\:\\/\\/x\\-video\\-live\\-web\\-cam\\-4\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "09c3f82082ea10a2a7cfd48b3c690b66c51230de6f64dc581a61ad19fe4b49cc", + "regex": "(?i)^https?\\:\\/\\/kelmeycta\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "dd33c4a2246123d4afc4e9db695d19e08804726d12ab54552ee40657ec3d681a", + "regex": "." + }, + { + "hash": "3c64c6ef90cf389f1785c24824bf1f44bc1ec7e7bc109392f43159bdd9d593d9", + "regex": "(?i)^https?\\:\\/\\/g\\.libreddit\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "21ebd853b6d7d045b75fe6ba281a4108d4f435537adaa0b6c584ee44c41aaffa", + "regex": "(?i)^https?\\:\\/\\/getrobuxs10k\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "99dacf0a22ff24578b57c277cff6dbcc98b30e217f5138bae7ae2b6e58aa6908", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ba80db930beb1d0cc4a6659bea1cb40460ee730e89cdf697f26f7037ace9c0e7", + "regex": "(?i)^https?\\:\\/\\/cvbnfgjfgjfgjgjffgjgjfjfgfgjgjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b40fd75e53e4600fe843e63634c4925e119114c6e6cb57420bd0ca1c2e2a2", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "97694f5c6a0d82ca332ac401b31e238b332a12defdd43aab49583383821abd70", + "regex": "." + }, + { + "hash": "018cd7c845afcb64a662a7bee12feaf6c4d2af0fc65a12481ced0884561e160e", + "regex": "(?i)^https?\\:\\/\\/fghfghjgjfjjfgfgjjggjfjgfgjf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fedcbb398e109285649d5b28863ea771b558c4e7b982eab1351514d650ee7663", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ret_url[\\/\\\\]+81db5f11e207bb5480d26666acc4657b[\\/\\\\]+ret_url[\\/\\\\]+ad2064b2308a65a1b5937b7f7199e1f1[\\/\\\\]+login\\.php" + }, + { + "hash": "1eaa677d9a2441bc32a6fb396e820f75edd6048efcae8815864c429297c929e4", + "regex": "(?i)^https?\\:\\/\\/diroccocalienteuwl\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a0bedb60147f4473d513fe330eeecfb56360d253a56ab78d07bd80310b495b9e", + "regex": "." + }, + { + "hash": "d332262cd2483509271ecfad233d35c2d0a7811be7f05dacae5bfb8df2da1823", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kW3vWp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "74d485758b89becfcfaa966fc5916d50abe33160a2af28591772cf543e381fdb", + "regex": "(?i)^https?\\:\\/\\/freefireresourcegenerator444\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d6d8339aee2de95565109dddca17261c868c003e345e569e060518fde6f10369", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "19e43bd40ff4137b696eee72e944ee8deb6b84e2e6bc561166deed1dc3e5c5b4", + "regex": "(?i)^https?\\:\\/\\/punisherfakbfwe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8e2b11e91715805a7e5be50a04e7872ba8530c9798218f6b1f964553c9cb87f3", + "regex": "." + }, + { + "hash": "401e8bb01e9046f049ff7b8719981e0205cbb8776935690f4ebdca9766613503", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cd626b1532a3c21bdd2fcd9c62d25d2fffd2384a1211b38798a2cc62aaba4250", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "efe60ef8adad4599468de2cd5f1cf455639535e47bbab37d57c98f43064248a9", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3b5bd9acae5a43a8fc426451eb84c1df329cbf39096d2c7d2a7521d3b3757683", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "76ade8d58cd553c4259bc13890f553b1e097b92a1f033794ae8c7a2f46f1767e", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjjfgjggjjgfjgfgjfgjfgjf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "96d25b3f6bebadfff2acebc2ae793bc78d25ac5116e1092186e51c2084f2d3fd", + "regex": "(?i)^https?\\:\\/\\/getrobuxs10k\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "dc9c05e76d3cddf7cc0896fcef3427d211013f70384d3cc6891a37ae165bcd25", + "regex": "(?i)^https?\\:\\/\\/luxurymengxt\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b471eef4e9a1e4397e1d662183436983c018b38f612614f90fa5d2a65ba845f1", + "regex": "(?i)^https?\\:\\/\\/getrobuxs10k\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "46ce212e3747f553c22342cd9fc4d2e9971e554052af6b7df294134a6f91b6e5", + "regex": "(?i)^https?\\:\\/\\/fgjjhjhhkgkhgkhgkhkghghk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8730b023287f5ef4d5717bc40b8fd5556eac12281a9500202ddc75351cb9ab9e", + "regex": "(?i)^https?\\:\\/\\/dfghgfhjgfjgjjgfgjjgffgjfgjgjffgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "dc48d07f6f3fcd3a6d99e80662de6ed34a5dea6010c0d7c076d597b2b4edd894", + "regex": "(?i)^https?\\:\\/\\/fghgjfhjghkjghkhkgghk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fa716a8ed5ffa80005524907e9bc7529d6d8b38415267984267f8624a02e9f7e", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e76dd87c6c4342e54867f91d1942bf26dc19f8188b6fa2b24d7c10612efecb19", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "92c55e207dc4253c32161e18e7ec2efd4c8f9bce7e8aba576229c61a91480d7d", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgjfgjfgjfgjfgjffgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9063d4f807eb22449ef9bd161d37aad85cedbf86ef7553f4e0cd0ac89563cb9f", + "regex": "(?i)^https?\\:\\/\\/www\\.oli\\-school\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7168224be5e4d1f5ef66b0ca1695c8e3b01bbe79e702ef1070285e3ce3b6be0c", + "regex": "(?i)^https?\\:\\/\\/free\\-live\\-cam4\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4afded259369d516a2cf1d747827b2ba281205ae85f39a8e838ec23987c40068", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhhdfdhfhfhdfdfhdfhfhd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "954f5b20d2aeeda63b29c5d1ea550a1f1cb8c353f8e1211b422fa0dc62d7b96f", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "debd927121ebf88073d1268d6c21b5456b09fa49fd7f392891ade04f71a83976", + "regex": "(?i)^https?\\:\\/\\/fghjjfghjkkhjgghkghkhkgkhgkgh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9d654319c47e0ac37f42725934043c10d8b5bc9e42fe2bcd52abaa8788386c88", + "regex": "(?i)^https?\\:\\/\\/luxurymengxt\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7e4c598b60405dc79879ff608759dc45e826bc635e8d92f8538e6075a499f132", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjhfgjjfgjgfgfgffggjf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "75e27558f050ecede4766e8f11dc70a50afb2b6fa7afc6ae602eea077c098d12", + "regex": "(?i)^https?\\:\\/\\/camlivegratuit\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ff6f45908d22382ef5480a764ad1ca9a882f40a6dba33fa8262947f005beeabb", + "regex": "(?i)^https?\\:\\/\\/fghfgjjhghkghkkhgkhhkg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c8e8ae36baf3b670fb06a3142b8a99976dc77305276175756129407a323d0f02", + "regex": "." + }, + { + "hash": "8d333095739d32e5d676333391039d8d916faff516ad5977e7cc4f7d091d69b1", + "regex": "(?i)^https?\\:\\/\\/ferstnsurk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "26a94680fa726f6954943cf10c80a7a915b82792d7ade3b89c80d7ee85cd2341", + "regex": "(?i)^https?\\:\\/\\/rst7yrhse5yhdtiursghsrtyhbbdf7yrth\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d5e651f43aa8601cc434ada2bdf542da15fe70b82349514ac6ed18eab86aad1a", + "regex": "(?i)^https?\\:\\/\\/messangerw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2cd442f276c19ad69b463ffa35f2bbbe03700840f808cbdd362d939464b8c6f5", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhfhdhdfhfdfhhdfhd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c83dbed2ea3f767a436e2bd72e720e97546c63eb875a2e7749dc8705ad5aa529", + "regex": "(?i)^https?\\:\\/\\/dfgdfhgghffgh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f7b46211a117c8d52d2d7a01820e4086ca9fde9f1b9abe3ce2f40560db2dd575", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjjfgjggjjgfjgfgjfgjfgjf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a97139c0f621fb48f3f8997b82c1222b6249ce889747bc816aec83bc5f217ea5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+battle(?:\\?|$)" + }, + { + "hash": "2bdb5e8800e68c1da8e2a83c5ffb21569be5931718574f69e2f1efa83d2ab197", + "regex": "(?i)^https?\\:\\/\\/bigbossmactepurnv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d8945c2a6f3296398dd4d151b30bdd5fba938c0cf9cf569849e3f407198396fe", + "regex": "(?i)^https?\\:\\/\\/live\\-webcam\\-gay\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a9a95b78c6f214022c6b3cb02ee6c40ad1558af901510dc770081be4aeb5436f", + "regex": "(?i)^https?\\:\\/\\/darteyuvepz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "957addfb1eec4b20b9e1e90a85fd62474d53e64363d375ecdcd98bc36f3580cb", + "regex": "." + }, + { + "hash": "41c637946b24635f04dd7710ae6afaa6503267faa75d505c13ee701fcf2badc7", + "regex": "(?i)^https?\\:\\/\\/bt\\-102480\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cfa6368c05a3fbc81d2bef6ef0771a40c78bd164c5be260f4cd382913ce6ef94", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "42091fe61027857c70fe6627d7bb67896812aa2277c45c149ad6e6795bc0a083", + "regex": "(?i)^https?\\:\\/\\/instagrampageinsta\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c116a6783d4d7d3c943b27f6804b94ea7c54d78b7438c3ef37d568c76cb95125", + "regex": "(?i)^https?\\:\\/\\/jribnrnfni5885bbcuf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "10cc288af0d8523f94fd0c4a7a2a7493255678ee09053d01480a8e15f7795ff1", + "regex": "(?i)^https?\\:\\/\\/5tfvdgvg22fh5j\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "41435fb45c331ca6b27365478455d901de70ae033ea1ad65ee1b9fa0b5f20cd2", + "regex": "(?i)^https?\\:\\/\\/chieftainahbfcxa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4eaf6f8dbafea393f76b41d006c2bad56bf7cad8347ac2295aab154cfc558edd", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4aba73fd332eda16e1d6269245bc77262953f4ab86aae379651e904c0c2272f2", + "regex": "(?i)^https?\\:\\/\\/gwalakominr0\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6ef9495b3ccef419824ebac6b1bc1701130507c17b7838f252c2fd599d8f7def", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "679cbe6e2a19f1fe9f4b60ec8d6fa6aedd4c3253cb3b768e007b52d87647c3aa", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9bc18b762bc45bc7f01c436769e7ef5173d5b6abf89a3a78670ec055778a3158", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c4dff9d75efed3ee054c34989c6a66bb3b2e27f1267af5bea76aecdf221a34c7", + "regex": "(?i)^https?\\:\\/\\/hgqaedhgqah\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "70bd70792be0408829801fde10d44957c0cb84761be400aa53546121b2a67d1b", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7427d20317a6c05da0a9fcc7beb49c48610a1113f421900fff068389f19111c8", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "66b0a324b0f03c3a20a062f49add920b29c227e36a454800760198f905184901", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4d407e985e625e5218824cdb6da60b62d79a5b0aeecdec6c7f22de92df2c1376", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3f64f8347a6113ab07fb4db4401f622a0df3c90fbb648cf1b9dc069b0ce37e61", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "90a99f342a08518d453449798f810b7445858c739fa6433429f9e9056178d6e1", + "regex": "(?i)^https?\\:\\/\\/pooiazecb882vvhma\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a1c0424700329777cafceab9aa4fef129f2bfc8060f2fced6445d00d66ff40c3", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "658af19ee247fc7589e992f0b30218cd32a1d3effca47bfb02c6a38eb3d8d3d6", + "regex": "(?i)^https?\\:\\/\\/aehgbeaqhgb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "18ef8fee69e3e880966d39db1587494811f14396bacb0d42bf829751e4f8b37a", + "regex": "(?i)^https?\\:\\/\\/loginirhiuhriughfrt\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=j\\*\\*\\*\\*\\.c\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\.eu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "8efdefd24b37aa3b86523bee1b41ea107fa064f59f8c69236a9dda534a941bbf", + "regex": "(?i)^https?\\:\\/\\/monicashkhbbit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "225683b5545247f1d6007c94b994f2c093e48800328962b6c7ef6caf9371d0e5", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b8541921de65af90cffc508f0be5436166ab80320131b0516ed7676dd44c359c", + "regex": "(?i)^https?\\:\\/\\/monicashkhbbit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f3159cc54cf5a417177cf1ceccd3e1030c74eaa71726f20366d612ed22d3bc24", + "regex": "(?i)^https?\\:\\/\\/zondergut\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f2b66517028c15395e8a1abff81f1fc132dafd94e78c9c4ea41f7e28cac21e46", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d1a469fba8d584c0cb04067b217f298982fc745e96938329ea22e6bbb10e804c", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakvmsdtuasjcaskcmasekmaes\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5341107236f6290e5cd7d557fd26d33b45073916cb4466d32e78d636b27c5eb5", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "68b2634181d54cf51e4339fe0e5cbb53435d655b8cb954fd2478500a76fc7d57", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxsemterquebaixar\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "201d93ae133d9cdfb80fd732d798af7b53ba3ae46a3d4a8061358d4a5c93fd6a", + "regex": "(?i)^https?\\:\\/\\/zondergut\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "808032875258b4c99a23296f8017c150abc751f15be575ada5bd9d76fb6c1a16", + "regex": "(?i)^https?\\:\\/\\/qahgbeqahgb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c9558960eea87661d52b0144755047d2d0aff52e0972aee67e939510a4e57eb4", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bfa8c6cdec391e8a3443161cffd7e77c5632c5212efc65f91b09c86c8d34ef5f", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d8b5e985b705991db95ff6adad3d135dfca9ebc420c8b6fcef75737ddd7ed99b", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5ce4c3d6050e3ded387669a9827f5545f8c4ca65ec307822665b16e76516b9ba", + "regex": "(?i)^https?\\:\\/\\/farrakdib882bc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "82de10d1a95fd5cf524b2b4f68e8b2af3b1d40b0207526c37a80ecfc5d1d59b9", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "75dfaff5f62b25d6145886f9d266fc63d34982e6c47fdf08c0172eb06a46dcd9", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6bb190d5dd55ffbbbf5ba266f3a791bffc4eb9a7803dff65adfb053e062f890b", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b49bb072984aa83b5b79ac28a151c8a53c53aafca32fa8ce8fbdb53df33a2", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cb373274da092e7d51627b773f4890e06be75fc2c28333e25d8cd158b85c6e3c", + "regex": "(?i)^https?\\:\\/\\/5fgggg33ghr\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "627f2c2f663512bd26b4c2699f7cb043a6221c73f22f020c90522d8d13c5578c", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakvmsdtuasjcaskcmasekmaes\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "653b7bf88104942a52cb17554d0e626f5f6f9c47aeaf563ff0d7debbfddf32f9", + "regex": "(?i)^https?\\:\\/\\/estafetasyp\\.top(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "00317bde89f7cf15e87670d86aa58805ea3edd7a0d445f0ee01de65b0162b8be", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5961e1a6f35eea7d9366ce07d7cbac75e34f764c0acf0283fc4e9cae080bd63a", + "regex": "." + }, + { + "hash": "39e2fa2c5a76df6a4c679a0c82e42155a96c0072b77b12fc05d913a09b9943a6", + "regex": "(?i)^https?\\:\\/\\/zondergut\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7a443d766d7101f240cbd7c8f3ce1ec88a9f4fd6109f58a1f57f95c506e22bfa", + "regex": "(?i)^https?\\:\\/\\/zondergut\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c6654cf72559655d255ee287a1e089ddb44794f6c2db2c7776b7fd078ef6ab1e", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b42ae28a8c5a10943dab2171956fb77604380bc3e844d4bb9b7263b25eb452a1", + "regex": "(?i)^https?\\:\\/\\/emoiksdifoueoidvjuoisd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8c880db32e2e5bc6ddda74644276e34056a30ce20ac9a76c5a36b603c4784d1e", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cabd822f3b5cb2a335340e1f7d65d28bc8d057349581ede78b6b14054292e5b5", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a30f0bf213af8a621b2cc76b8a88da4139e4e56b40786d3b7981ee0e590f087b", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ba4d2c3902ca8fdcda563a413bf9cd8597f77862cb3f052369315ecd4929f222", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "12c620ed606eef1494b1887cef1733ae93e0f851846eff076be3485543d7e236", + "regex": "(?i)^https?\\:\\/\\/monicashkhbbit\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "867e1d3e4bff7ea2ae250317da48cb2170a25ecf11478234b53ce29918a4eb8d", + "regex": "(?i)^https?\\:\\/\\/hgqaedhgqah\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2999e318fe9847cbd1947d286f15a1d6619db9cb107d9e0c141c8a798678acbe", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmU94GBbtrhAxjtSp5d9PZ6JjcbmJGFSMcr7xWAUzuqrir$" + }, + { + "hash": "94d6d2cde5aa56a730647c71ed7c09bdebf6f368f6f1ffc1e869605c3e11bbed", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ca8e3b4a1be6d98df3f2f04a6b414d5774ebce21402f11f970003684714b726c", + "regex": "(?i)^https?\\:\\/\\/hgqaedhgqah\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f23614710348e3b78e89e20cfda8b44ca841cd7322af552964023f550d75e353", + "regex": "(?i)^https?\\:\\/\\/buehnerderznjpfy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5256c82e11f121cfbf6debc3efb18255f8f51255f5e966acf50775db411e9b4b", + "regex": "(?i)^https?\\:\\/\\/farrakdib882bc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a9ef0e2495e7fe167cca334b003c60fc860f9a959bd0059e6c9b2a128b4f2369", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "f9a3b4ee68b0fa663452775159e664f34324a37d6c5c56e84e91e9e29266ea89", + "regex": "(?i)^https?\\:\\/\\/robloxcodesforhairforfree\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9e40061565ad8e5c27ee0b8ec7d69c2be0f20532d400345669bf449f8c5e6b58", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wetransferr\\.html" + }, + { + "hash": "e42d7f430519d1f83b788e9984a51858cc25225cae0cd9e8413c7638a00cb8da", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=s\\*\\*\\*\\*\\*\\*\\@c\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "0889a9a0a5605ee1ea8cf020d9f97b7c66ec079339b0e0e0a90f1d57646ff323", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4197dfb85ee98211513da220459837e75e45a9af80f85531bf2e4553ecae3a50", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f53cd1a3d15104164ce9cac661f868108d7ca48e00122ea50ea24acdee54e1e2", + "regex": "(?i)^https?\\:\\/\\/lemonifhrrhe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f2aa73fd46a31e0dc23fca831c591750ec72cd785660a3d13a01312d0d3d961b", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e9d6dd1a9827fd6411fe72ee46e1fff9c40222d1bab5c321a2190dbec79d9002", + "regex": "(?i)^https?\\:\\/\\/freegaza71\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b19923383dd694174cca32c02dd1f5d725a2067028a8775f55cb1df1d91973e3", + "regex": "." + }, + { + "hash": "b0e4fd74d44f736c677fe2bfdeaafc4507c8d19eb1740c845702fe36ef37d813", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7609f71aae441d204c579d21c97baecc917bcd0a49c1dadcd0ffb94fa8ca99d6", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8f3ad5fd48ec7ddff16d92125a6ba76ab27ad9813b89c7a824e5abf8d30bf610", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8b1505b5d262a2d6129f9192bcccca6e6af8c599cd70ee05dc7f004e574ccb30", + "regex": "(?i)^https?\\:\\/\\/btinternet\\-101456\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "94905e788cb79e945b56a4830377d000a122d953989dbba1caa2cca8a1d90a3f", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "868d310668770518a6567fd4b872eeb5d5c8cb6e0daa49f9cc5b947587538c10", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c47089ebd60acd71f30d85df5cd30419ce0740fd5c6447130c425c6a9caa93c2", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6aa86e620df55be86fa75b62f6f453934f27fb8b0d91a3f7649f5285fd509821", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "47953f2908b1d7464af2d94aa32fd85677a0968e29c19c1a5c3d949f848cb31e", + "regex": "(?i)^https?\\:\\/\\/decalsforrobloxstudio\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc83a2a5e6e290b12f9ab99207ad369fe85cdfc815fec27b314a469f42a9fdf6", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e7141874e9866a68a9d68e63889b22ce9e07087a6c6f57fd2a5ad2fd1c7b9cde", + "regex": "." + }, + { + "hash": "067db6e7e8ff189dac262b0aae40559673d6b8a011e20dc66b7e5ca8626d7e8c", + "regex": "(?i)^https?\\:\\/\\/loginirhiuhriughfrt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "da1937e88db092b8d3ea2bc4139c0147a0797a06a885342da1338ebad5f18976", + "regex": "(?i)^https?\\:\\/\\/freegaza71\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fef359e0a21b3956e8b100262e080056d2b9662131333315493d7ffd93a67918", + "regex": "." + }, + { + "hash": "4e6d52d91f4d4ddb79e28774e977e16a4736b60490278b1ce0575242ba7c456e", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+j1sroi(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1b0472c268999c5a45e487475e113cef087004dc687a51a4f2787c7d7f0e8670", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "858111961c5a8711c6ca12617980503da7a4ff21d592742681f01108572ea5dd", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "12a6080335221bdd98daf76f92d20b69ad46be169931eee4fef532d8bb4dd20e", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5c334fe39074a3420ef5399b1d5b0e3faf6ea00befe075d828eca51f2f4bed6f", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "67cdcebc171df6ea7b87e0dacd8ea2a332d60d72f422766528683f0bdae2b08b", + "regex": "(?i)^https?\\:\\/\\/5fgggg33ghr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e0000957f79443d0195074030840141ac27d70c476653070eb06a70a1b43bd60", + "regex": "(?i)^https?\\:\\/\\/hgeqaheqah\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "91903d2ac9c81b6a9d8860681ae0547ef17b861354051b7b52662a47f12cbf1e", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2b0ab9b53a7329d299aab7d5aba2aa162257f03c1495679f95ff96e88ddd9d4c", + "regex": "(?i)^https?\\:\\/\\/bigbosspbqk\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cb3f69023722a2d053a33a0c1ae1c16b3d0406bff79f337b0d837f87462eea5c", + "regex": "." + }, + { + "hash": "d2c77dcb1238135963382ed600dfe12ad3a6f86de50138a1ad0e622d978323cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f8ddd2e8c87cc67d8d04355b673fb9952163d9b328a3cd4971c406abd7bf5395", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3571138c28242e8a7eb5222c71a8f8f9e393d5992e37d0f716d15173d2491ae6", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6319c157a0bd4130e6ad8f82bbee2d24ceea32126bfc0846dc8df34d94c98b43", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=r\\*\\*\\*\\*\\*\\*\\.o\\*\\*\\*\\*\\@t\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "9399147cedea9f8a0429d97ce7fa31bb3249f313d716ac64a6bbec0cce437299", + "regex": "(?i)^https?\\:\\/\\/webmail\\-103131\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "22e38da966cbf0a674d3a980c94601394c72b39c9dab453cd5e1aabf428c01e7", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1c0c1ce93d2c098372417852e01aae47d92414fbf3981302a75e64ffd7ae2c7e", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b5bae7b212960b06907a698656e21ffbcb3076fb615753d3e08151fa2c51f", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cabf9dc293a484e4e507e35658f8f16f14a2f2b1601ccec4ab413bd866a5a4c9", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmbubm54GrUco488BcjuAfuJqKL15bwsQPrA6gsSFFgtoz$" + }, + { + "hash": "6e410d1d3a3f3a8f22a99d4a5066f63e8e103791ebd7a0ecbce921e816c10070", + "regex": "(?i)^https?\\:\\/\\/loginirhiuhriughfrt\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e3849038db90fb822011c8d44da990f903cb7f65ea7930d1102558bd92a35504", + "regex": "(?i)^https?\\:\\/\\/5tfvdgvg22fh5j\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d776a90127f8fe2268a3a04953fb709be6fcba553899797dae0247231e05171e", + "regex": "(?i)^https?\\:\\/\\/instagrampageinsta\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a78ecddd2343eb703f80d2fbc8c8dcfbebb2096ee608ee7b8421a94a388b94be", + "regex": "(?i)^https?\\:\\/\\/hgqaedhgqah\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f75691568a3aa16068c1ab1f455bc2d47344cd8dc5b688f80b96d07c53fef269", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+banta(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b35e1359145961c4a07803db0af570171752b50b1d4b3cc73d705bc854c40e6d", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6cf1a3df9c19a6603c0401d0a274b2290ec7fe902aed0d8e5fe0e9fb42ba59d7", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7c92226c3643b8ddecc553eef1aa0e0e2d4dc539b69ede5da6a1f20ebe54124d", + "regex": "(?i)^https?\\:\\/\\/aehgbeaqhgb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ca8cd0494cc39cbe114babcaf92eda7f707d586c63e63da1b3ac35911dd0e0e4", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "23b7295246fe1339a057818b97b3b48c83ebf70032a5a5d5473d073a524fcae9", + "regex": "(?i)^https?\\:\\/\\/hgeqaheqah\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7a12d336a3236e08b9d49a3050efd04ddb525059d89fc1743fc5b35e281adf01", + "regex": "(?i)^https?\\:\\/\\/5ggffhrge3g3hh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d8054c13e6dd0a862e246c78a568f75f38f2d4dc25f9965cf96e8d4cc0c8463e", + "regex": "(?i)^https?\\:\\/\\/5ggffhrge3g3hh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmbubm54GrUco488BcjuAfuJqKL15bwsQPrA6gsSFFgtoz$" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lv4uw6(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "43e443e943d09e26df01541c715ee832222dda10c50065e39434424304cef61e", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f9e4ec7ab96f7400c868e373691847b1f96879078c1c276532bf24f97e465ec3", + "regex": "(?i)^https?\\:\\/\\/loginirhiuhriughfrt\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=j\\*\\*\\*\\*\\*\\*\\*\\*\\@e\\*\\*\\*\\*\\.a\\*\\*\\*\\*\\*\\.es\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "a4b2e560c480c179339bbe0e9c527b39248c7aa1477ddf4c6b20f7a9e464c6c5", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b049c3436faeb50ca9118124cafdff2aaf02a1b02f212ff89ede3c69ce4ef2c", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7b4035ff346e6d0073a09425d36bc45e1e0d703cd783defcbfbe0dbe9dc5a275", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9fb0a6ff6116ba594e854d87ab8a27b0cc693b9b971ddb82c333596962ad139b", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "db735dde464a60a7db2b3102a6d7e9d3a01ba313f8337ad664eb2f49b769cba0", + "regex": "(?i)^https?\\:\\/\\/5tggdgbdgwg2g2\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c2157316bbbcf8e17b5592fa3335e6f93d1603e7cfb26c8a9c944e187fdfe726", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3d25344b2fdf0dc2640b34317ba84fd54672a5c9a5b8206ff8fab6610895c6bf", + "regex": "(?i)^https?\\:\\/\\/qahgbeqahgb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "641f2d2939adf5196384c90876a43d34822cdec6c02f81411bf2380ed7197f70", + "regex": "(?i)^https?\\:\\/\\/swizeofgf092bncff\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b14dac9c097a2caddd49dc5ba96d608c569796985e26c5862bb02c5dd0f88aeb", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "66173d3a7189fa20cb7b2bc9aa2c99156c542df233128a9e430ae6cf37cc6a0a", + "regex": "(?i)^https?\\:\\/\\/zondergut\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6bf5e1fca1f6c15bc6494163748a7d6d21537c79c6405c085504ab8718ecda69", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "19a09eaf7ffc8f25de261d6b579256103fce725bf0efbef66c197ba8a11953e6", + "regex": "(?i)^https?\\:\\/\\/bunbuttundefinedlqjdr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3302bcb4cb921c2c8dbc2d14619968facf4154924c48fb2ac731bb0ccb6f4e09", + "regex": "(?i)^https?\\:\\/\\/emoiksdifoueoidvjuoisd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1c5c786358695b79680fb2ea1c71ad58d1761576bd355619cdef181dd1d0d98f", + "regex": "(?i)^https?\\:\\/\\/farrakdib882bc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6b782899ba10f4665ed18de4ec93a7bdc19c98277a3524d008953db2ec18b848", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakvmsdtuasjcaskcmasekmaes\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ad50c77b372c695827842a961d6cca5982ac1cc2ab840c9764ea9e6aebe4ed1", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "882d92d1a3444afa4d30f7a260d378d26586002097cf71488ce35a081765220b", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8145f1e32ece0d53a3990179339e9dcc874d72294c36bf35791e98243ab0f377", + "regex": "." + }, + { + "hash": "4cad73cbb98b0c9466220e730fdbb0f0def4171505a2856ca7782ad8116e9623", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8ef9fea93aeca5a23fa734e4517929f4b6fc359037d5c184944c0be50cf48a1d", + "regex": "." + }, + { + "hash": "8beec63b99ab5d4cbe1a022e3296f16131012fc12d667b759374e4fab30ca6d9", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "23b7145579b76d1c77697686dbad73a18b2aa06f96e45a31a1172ccbfaa633d3", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "271bb2c44d719cc86132f683a7de24acd7d3a9507a4e86d6bae65c3bdb910629", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a7ea0d9dcc9e4ff39fcaefe6505ff20f97a2cb9472bb14859103145925bfac1b", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3e8324069f2cde61a778aff7616ac7f1534fbedeb32a4b78a87e028f30ddafa5", + "regex": "(?i)^https?\\:\\/\\/5fgggg33ghr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "14b8ebb649a552e0e641da47f94e18bf041a1204152463c386e6555e5d7a0275", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c26d2c822f50e57376bc95e00b85bd618e722867efb2eec3919f5094da0b1881", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a1801504365916799fae3b809d7f81c27a4d207eb8eb2dc02d1c77c385265317", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1bbdefde8f5aca248b51b447b2d9642a5fe8fdf724e09fd0c28932c65c49db1a", + "regex": "(?i)^https?\\:\\/\\/qahgbeqahgb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "019de89b11b4d8dd9d33fef6837ef219b98180af33bc3ae39a3e23d5371cce35", + "regex": "(?i)^https?\\:\\/\\/5fgggg33ghr\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fde0781c8e900355f3e147e3b37016b9c25180a2642b8a95cb9a9e089a002a02", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=m\\*\\*\\*\\*\\.m\\*\\*\\*\\*\\*\\*\\*\\*\\@r\\*\\*\\*\\*\\*\\*\\*\\*\\.ee\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "e0ca0963e1e35bb258996225373d35ea05560b3ef7bd2a262f3395365425d3f1", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "79dc4a15c644ca00bf8d6a3d94f75411e09b81365d0b287cf8ed30170fa10ba8", + "regex": "." + }, + { + "hash": "3091928fab859a39e786ea9573b51016294504f9ab3511f96bab38b7fb08a48a", + "regex": "." + }, + { + "hash": "688b2fd3a5ee68716f500310f80cc396ff18c07c832edd567ae06a64f39140a6", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "67968cd602643abed93efa5b300ce8bab628357e8e25c8d0304e380fb15387ec", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "073f16962ba5843e805abfbd2d8e615ee4529a1635839baadf6e4fe2b88697a3", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "864c4c3192912b802d41462b88c1d4773a2661da58d2da6af475b082503a40c3", + "regex": "." + }, + { + "hash": "9e994b1be103673503f389444d6dc1396c3213d44bc4afc0023802c9ed3d5721", + "regex": "." + }, + { + "hash": "1f9e37f75f70d845826791134e876181fea6b939b6d04bb9c3b9a9db75a562ec", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1206c33fbccebe82bc909cd39ed1b66f8dbc1033dd60f0a016b61573e337c61f", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cc1807c73ce0b974c19f6f070b7776037f3561930fb5534971da24e585753ff8", + "regex": "(?i)^https?\\:\\/\\/qahgbeqahgb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "529dcd72dc904a8055ae23f8ca003dc2e74cbda3742dbccfd449d83ee2686e4c", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "16e70de659acaa5fdd339e8ec7e79707118ba9b14a5f35b00d7697fdb24e3238", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c3c3ef8c719d58191284436e976bb5ce0f64f834d47422007fdc90ae9505def9", + "regex": "." + }, + { + "hash": "b8187fa4f50b37941bceb12e260e8257c0e5e072fb6cccc2c37dd541e6d95337", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "06ed2e7d90837c33f0a163fa4ee94198a4f250b5ff20866bb39d48d0af701b3e", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ce909be36d166171911ab2af0a3495e8585f4f34a32d516ca1d6ef11af3c4e9e", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0fee2b8e5576002ec10b9eeb8ef0657eaa8eff4c2163910593c3ab4f46cfbf96", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4980356459a491131bee55f60f533d4d51bc0df1d27f3d639d16296d561feba8", + "regex": "(?i)^https?\\:\\/\\/ceaqgveaqg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fbb01acf22b3874d98309fdecc7c592e95ce9a3487ad76b19f7de8ca7b2546f4", + "regex": "(?i)^https?\\:\\/\\/chieftainahbfcxa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "531a803e2a243c09e0b874b7abfb153240f4ae35f098d4f8600cba9e83ea3ca9", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b58f1db60a6c5f7e58fdb134af6a72bad0d2212e337b74d2d87ce8c27aea0437", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a65d887e9729fca91454d862f6e539c55eaa05a11079ee73e0f3df10d39abdea", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxsemterquebaixar\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8c3f7e28c5dc5c4c1fd608bfa9c0cbaf71010c0b6d99b0fdf0e50f12616af73", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "72af63fa3dcbc6b6f3528500bb2bcb232df0e3f875841b3e5912aa6bc3115976", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2987cf57739b1e9cf40d84940500f303e978ab3676cefa594f1b971b946fc947", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6c85c30de620426c55bee6b8493cc252d2dc7b3b6b7d131a8e0ddfc9ed9cf372", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0c8b603e78a36cbcaa4d9bd252f887a722d3c02aeffc3b160eb6c2d8f8ba4d4f", + "regex": "(?i)^https?\\:\\/\\/stannuqwpj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7918daf78c885e9deb7b1b8ae5746e8fd3d85a8797ea4cffa19fff0f0ff9f9bb", + "regex": "(?i)^https?\\:\\/\\/bigbosspbqk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d834cacd94d19050be389c69cfc8e052f4878e6de0bf30c11ea40c00db5cc237", + "regex": "(?i)^https?\\:\\/\\/farrakdib882bc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "546d1ae6b98c508648c39c31ebee8c5f39a18599bc1bde7eb21ee137e94d07b0", + "regex": "(?i)^https?\\:\\/\\/5tfvdgvg22fh5j\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0d266cc93b45bc7e61c150869788ee982894c55e7a5d0694acc31a7144a7615a", + "regex": "(?i)^https?\\:\\/\\/lemonifhrrhe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d55135f60e7fe3d5622ee3f5e23d20c3ee7febe762e6dd4c1d371c8ca74e4412", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "eae7ec12a4a93dd6aea35be92722c0ad487a03c9d6faa8e802ee2e84ee3e5e13", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c6e117575b9e5ec58a90bdf4ec3d10dde89df64a20491bb5e29c4e3b754e5d3b", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "19bd294f932a815dafed10c4098f8c15f675445cf63209d4ca75e50d74b44c48", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5b4cfa16289f6e06ee4bcd2d2f61b75c9ac21cedb1e293663caf8e26be327712", + "regex": "(?i)^https?\\:\\/\\/freegaza71\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a2815e4aecb4de2240a269d9b498d064e1f02a2e5a060bc76fdfd46b64ca4738", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d09e729573fd8a9a7082f4ccdcb7675bb1d062ae5822d3aa68201a7768e59999", + "regex": "(?i)^https?\\:\\/\\/bunbuttundefinedlqjdr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eb547eaaa761df79cdd588f5076ae2554b71c1923a87d6b13c609989d76e630e", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f35c0bfdd0b58f7034fc4dc8202089b6713249a29ff6c0ab805c1ad0b9dce9f1", + "regex": "(?i)^https?\\:\\/\\/monicashkhbbit\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "92ab03c6b77d2ca53bf98d4f75ba4cf573840dece88db7c39d71a443a02a2d65", + "regex": "." + }, + { + "hash": "fd75537f12cef256a5bab6ec29706616b4a1abcccc510d104b5508eeea31645e", + "regex": "." + }, + { + "hash": "7c4e5f6116f74e750e2f677bcf8d269847a6cb750980dc861b4062b6177674e1", + "regex": "(?i)^https?\\:\\/\\/5tggdgbdgwg2g2\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9fe5791bce49e1f7c3cdec6fd1f713da5f2fccc8b9d0fc28c7adb80c8dc710f7", + "regex": "." + }, + { + "hash": "26470dff93e784ffcb5cbab761e34b6b3b4633b42980c4a36d43897c918a41b1", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d841afb985d0f61946a945253b155023f410d7e2f9c89cd16736efd1947db9c3", + "regex": "(?i)^https?\\:\\/\\/buehnerderznjpfy\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4c02b2ff394d81b39252726f88ccb4e791e6a00f3378dac2c45ab6dbdc4e7365", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "757c595c2823d0f346bd9ecc33bb55b7dadfda715378e5b67a5ed22e993c1150", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3bd1dd48c30198b58c5f6c97fb347535a85d9ddc1bf6feae94b2c24c126c60c4", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d830c8e6e8f45e9402527c22f7e1d67e99a14951d6cf7e72ba3f7155454ba7bb", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2ba97a80dc00940e765d08d52c5ebfab76bcc8abe2f7dce5a4a8d3fe91ed2c0f", + "regex": "." + }, + { + "hash": "83153dfc01b66ed987614e2d9f07950696519719e85606b8e2cc20bd6ce83447", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "52134d9428a017969c165b72e5e50b9b2c815d30054aa1cbc8995342b6dc508d", + "regex": "(?i)^https?\\:\\/\\/5tggdgbdgwg2g2\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b15ecf3ba25f8629e3a95537dcc735c365798eb0c0b5f1d3b9a669b2169dd1c1", + "regex": "(?i)^https?\\:\\/\\/chieftainahbfcxa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "24feda1b6590e3e98e4f119c1b4351ee2c1c8125d40df8efa438949985c4953e", + "regex": "(?i)^https?\\:\\/\\/dfsvcdscvdcv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "520e0448f3b24785655710b1e049506337c8001fe55f391e62699f77795720f8", + "regex": "." + }, + { + "hash": "bdc382a29db0e38677f3c8836db14a97e7ac5cffbc3d6717cb372ec34bb182e4", + "regex": "(?i)^https?\\:\\/\\/dfsvcdscvdcv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "03f6aae3cc3483bd0cc47354d07e06b86f3ab59539ce3e00d300920b6462b5fc", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1744f253d080995433e182e41a9bd6d6931380d28a09dec0be82185040912c88", + "regex": "(?i)^https?\\:\\/\\/swizeofgf092bncff\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2cb20dc4499ed9cf794859320dc6e43a7495bd850a7dccab688c9a99bee8ac62", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "57d0a8829614f82e80cf6052b02fd89c2cc88aa79754ee47777ceaaaa55d4609", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "41a6d2e5df2432ec2191b3db764cf0d1a2ee3f81b170d8597c115df72d26d3f7", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3a08331617ceb16200220c680026d34030f24ad6361d7990f40d12dcdd740322", + "regex": "(?i)^https?\\:\\/\\/bigbosspbqk\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f72f6baa6ec6751d3cf233c165409a14e3d704c51daa1e478f5e5bc55c251d86", + "regex": "(?i)^https?\\:\\/\\/jribnrnfni5885bbcuf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d7cd80fb75261c0f4d61766d5e4b07ee85f01b00382f3fd8618926321c7feb77", + "regex": "(?i)^https?\\:\\/\\/currently5267\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a33f0974be919738a477d68be7f8013d4611d4b97f097eaed1a0bc017a620e6b", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3a421d3d3d5d8b374c5616946beacd996d0abba99e6c7d25cef19b2b49e61376", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a0831100f0aa3c7bb6ec035821c9b5dee5234d582022810807a378e827b72011", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "276889aeb9b0fbf4fbe5b8fbb72b4be3ab32abb1fc78d3a43eda45aa1ae55877", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "76ab61a6c18ab87c8ebf3bde58c5946445c7e10aabdd8c99a5460c0b35e9e23c", + "regex": "(?i)^https?\\:\\/\\/ceaqgveaqg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0f1f8abb732bae0d18430442e281630878e9117479c58f0ea19278791a40a00b", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4b82ab20181cd6abecb4e0b5941ed9121f643cb1427ff2b6d279da2e46e87383", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c8c33b1ba6f43227d93b68cb8bbab250585a1e822040926c9236673b359b58c7", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "742bef364f4c0a4bed3a347297255ec66da016a0987fb136952566a160439ca9", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7280a35c133ff2bc919e8e36103f138c0ea485dfe9bcada5f23d1eb30334c5bf", + "regex": "(?i)^https?\\:\\/\\/dfsvcdscvdcv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bd609102c081d05bb92118d950d23a51ad07762c4afc9aa3d5ac7d506281cca3", + "regex": "(?i)^https?\\:\\/\\/5tfvdgvg22fh5j\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "65f6f360748f5efc083fc9f15536c6399de9348e991d1d6f7b52f8408c35916e", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "79ec38ddfaf7c89b4efe6f718b1ea7d1578b7a28f579cf4a2c65e524aa3de431", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e6a0d3c7ee33abe1c2184f8be134b0ec9616c67c3685ad4f47c2cf263701cbed", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9ccab9345c6e57bfdea7d7de16661ef48b0b3aea46d88e09fdb0c3f475917d66", + "regex": "(?i)^https?\\:\\/\\/5fgggg33ghr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a37d16bfb7114b4a92ecc138558f98ff4c66666c644181b9f9b8ae39f36294d3", + "regex": "(?i)^https?\\:\\/\\/monicashkhbbit\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0c322bce939daf3e0381d06abc05c61deb0236dea4a0aa1992be406e9e30da56", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7456fd337e21129610f676279edc2756bc6b12b0eb8f91fec92c47c82660b066", + "regex": "(?i)^https?\\:\\/\\/emoiksdifoueoidvjuoisd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3d430378fa87150a5b96ff1168fff97a484c9acfb581527966c3a7c493c00800", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d5c234d321138ef0dfda0118777d83691005328e62d4089626a447536691122b", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b4df3b7e5b486ac9f4ffad2b11f03eea33430d10e87a88a5de2df55091a27cb7", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8c1b2f7abfc88e7abb5cb921eb23b9b52891888a8c8195d956a98faa326649dc", + "regex": "(?i)^https?\\:\\/\\/5tggdgbdgwg2g2\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0be6a988d90fd19b22a500e5c486a4a0bf894f3899d7315ab555d6ad4ea69de8", + "regex": "(?i)^https?\\:\\/\\/swizeofgf092bncff\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b294400fee45b4779dd3e354fe9719e9a35b4aecc6e89874a0fbc7c3912460f2", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e094fa058845f51e735a0f8c314510011cbf1d351c36d248157835929784da25", + "regex": "(?i)^https?\\:\\/\\/hgeqaheqah\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "70bd7b4826f7388f044b2dfaddef0810444bd20300facd02fe075d485f1392a2", + "regex": "(?i)^https?\\:\\/\\/buehnerderznjpfy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "db758d034237526c598f414d0d630be191579ef7a64c8093fb3676f7d7315d51", + "regex": "(?i)^https?\\:\\/\\/eqahgeqah\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "de9eed619c9de87964ef94f80bb9e9e24450829dd492df972c29b2cb3b916d8f", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "da75832fa54689f5d9250b9f5c0a31c507a8e4b35e3221c7320e67dfebfbba26", + "regex": "(?i)^https?\\:\\/\\/buehnerderznjpfy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b0ee227dfdf2f0f3c132784bee1d03678a04a6540dc223d020226b64ae9f7fda", + "regex": "(?i)^https?\\:\\/\\/bunbuttundefinedlqjdr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6f904cd21bc4da672e5eab418682016459947d743d19f41990ba748fe7ee889e", + "regex": "." + }, + { + "hash": "816f4c74f6079caab70c046595b567296f4f5a885cd531b3ce064d16d9bd6b30", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8b60001040277a0a1ba0b31e85cde961f2da0c214c48b978942e4e08c2c5e0f7", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "011ecea4ed206f8c95d0f7a4daacb8fc3e3b9842b51f8a05a1604ee1ed498fb1", + "regex": "(?i)^https?\\:\\/\\/jribnrnfni5885bbcuf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1fbc1869b50a994d8d096a974d906122a5c9545094f67bed840c4c94ffce06a6", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "891867bf5269421c93d3ec0903f0af5c18ae309fce3129b66b51553d8eed83f4", + "regex": "(?i)^https?\\:\\/\\/hgqaedhgqah\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f3ddae901dc2bdf276cb6bc5132332c498ba8e0594d17c0215f94ed4c2ed63f2", + "regex": "(?i)^https?\\:\\/\\/5ggffhrge3g3hh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a1c026356a1985ed24b09709d40d2bddfa10a607eafce44340f18f9f5db08021", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "399ecd13bc3266769f9c3cfcf9fc93e8a7e227ca841a0b832040d2a5514c0f6a", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "683c8ea717bca083d895f08e1d4607344f6eccac01bb4b77b7c48ec522d3b0c1", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d1edbc2c20cbc630c6a93d7ab7ce31ceb4c5d95df5a525597c9b450a3825a809", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "69e63b9f1880db41d2220a3fd74a13c5da822c799a5152ce9b6f060a6ae4bd63", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7f9a7bb60c94a468fc8f133a76090278c055ab84a71e31f3482e3274ce7265db", + "regex": "." + }, + { + "hash": "c8176519873a4c4499b5342d4dc3040b4140d60f234d13af7009ecdfdf385ecf", + "regex": "(?i)^https?\\:\\/\\/dfsvcdscvdcv\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a965786a89389efe4191c2051e391c2dd452ef931f561d3e61a68a11e75fede3", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0b8869853276eb1ee0e07d47ba20f0defab58b1d14d729084e70e0b4a66767a4", + "regex": "(?i)^https?\\:\\/\\/freegaza71\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f628b31e5de2acd7564c5939c3c95ef9cb073f626bfbb64b43e9fb04f0868790", + "regex": "(?i)^https?\\:\\/\\/lemonifhrrhe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f6a1917522447909bb56964bc4c1a22a4058117b262302caef17cfab6a02f761", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6b31667c895d9f1afff61df1ba561983583b82abf0dd3c7340dbfd06f2eb3e06", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1502cd041cb2c8bf59ca7eedcdd94a63d1244617d19c285facddf616042f369b", + "regex": "(?i)^https?\\:\\/\\/ceaqgveaqg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "04c8c0f0473809cd5c8eec51168a167a711ea4e10a2a49b8b953fca2f251ee9e", + "regex": "(?i)^https?\\:\\/\\/ghanabanklist\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb909b894022b4c7a41dfae355c82524b969e5f1a5ba795988e81232e956a095", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "445205cc76a57969a4ff77d967179995fdb6b4568353a05d7c5ccdb80b704ba0", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "da120b5cb6b003233cbae40bc0b5bc3bd6fbf9228d03b69a5461f977ecb369a7", + "regex": "(?i)^https?\\:\\/\\/gwalakominr0\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cddf012d6b4bb69bd140d864c81e94519a1042332f9735720da76907c0734daa", + "regex": "." + }, + { + "hash": "4ba4a326b720ab1c90b069195f517110ea3a5d0e22c3996f0ddbef7c15f2b452", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b81f542df00c665dfc785da5dae79b03dc48bd99903b76422af1d3c7deab9705", + "regex": "(?i)^https?\\:\\/\\/ceaqgveaqg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b0e50f8ad477ca3bb4392ce4b7003453a6aa1a88e5c5caff28c2ccdafc453712", + "regex": "(?i)^https?\\:\\/\\/chieftainahbfcxa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cdb069d4884db8f8c711780d080777a1989280ab4479bd00841a46cf3b160852", + "regex": "(?i)^https?\\:\\/\\/lemonifhrrhe\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4080774c681073e00804e393a922522b7015193decec361558d5b8a0abe802bb", + "regex": "(?i)^https?\\:\\/\\/lemonifhrrhe\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fdf6413ed44e25a7ffe6a58d717858b26947231e741fc2ad1a0e1307c5e070b8", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4301349a29ebf0f3c3ed3bac12926d801d9fe064ac55633c971f0b9a0feffd63", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1822a69490fa6b97ad448e96f5c18d884c80d59d8186ffc25515ad640a0243b4", + "regex": "(?i)^https?\\:\\/\\/342115\\.com\\:7730(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "003d443f6d8a71fa18b43053fbfb4c3a4fa399cdc6700ee937c892dba12f5a71", + "regex": "(?i)^https?\\:\\/\\/eqahgeqah\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "192445d3e8b23d31fb45207eab63a93c824de9421e290d0b0c92fe95ebd547cc", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5b5d8e952a17ff317bfa5eb1835a74984ba7cfb6af38c9a8016b9f359f314a64", + "regex": "(?i)^https?\\:\\/\\/5tfvdgvg22fh5j\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ad6a413764b8e6233e97a99f7bf44358b4897efec508efe820d815227d496bad", + "regex": "(?i)^https?\\:\\/\\/5tggdgbdgwg2g2\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fd5b7b43ed1fe350d03d249706f2c6194b3cad50809545626999333f2c707ce8", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a4b556a75102cc3b0e60cea977694cdc0931d7b3d0feadab63aec0cb1031ed1b", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4cd9881856c3509c5920822187c9996de81972783137d6dc17e36b96a16e2723", + "regex": "(?i)^https?\\:\\/\\/aehgbeaqhgb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "eceb1aae8cf1bc165908da89c17d38f138a11d49e7fe2152116438c7192eea52", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ed8180aae7095205adc1546f36802f0ecb38562b5ecd71e4546493b6efdef4fa", + "regex": "(?i)^https?\\:\\/\\/pub\\-90cc1486c7d74931902a2564fa693a00\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0a16d28183497d4f3061fdfd74a463df6caed9b68316ce200decbf26f1096a87", + "regex": "(?i)^https?\\:\\/\\/dfsvcdscvdcv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6fd892c70eae6c4e1988a65631843e5377cb90acb62f7ca1f1b34a292ebe9700", + "regex": "." + }, + { + "hash": "a8e7cddab42dfb026bef118eb08dfc9ba6f7a4eb6913702473993f21af30fb78", + "regex": "(?i)^https?\\:\\/\\/jribnrnfni5885bbcuf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fbc883dddb04fff4126ee44c591808e571073ef82a77a8b9ae867030b1c04d1e", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "58269c17f05fe597eaa73dfb34887e03194680ec25eaa2423a0f93429e6c6dae", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0ca79d9f5da0b773c6b338f65bbf6899ade084c99153aa066a9ba607f32cab59", + "regex": "(?i)^https?\\:\\/\\/gwalakominr0\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "abe39cc9e21e6a6b7ccda11f5abd2ca5fb8a4bff2f82170e9f61327a23f5a2b4", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1df753117577ce7d8f87dc8ac64c670f9352d60bf9d19cdc2521784bc9461009", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "be3872827601dc3aac5382c674892c6294fc6f91a974fd477ebab75aa98aac8c", + "regex": "." + }, + { + "hash": "d442c7b400235d99331618d2c9845b05ef4050303e13b4bfbd4bfe4269ca1051", + "regex": "(?i)^https?\\:\\/\\/bigbosspbqk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7e4fa1585b088539bb10eff770b62e3c1ab0447755623617e0a63b7cb8cee0e6", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a1764cacbc5eec91283ffc83626661b6d6f986b3b1013402a8557e82e6e006e3", + "regex": "(?i)^https?\\:\\/\\/bunbuttundefinedlqjdr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f1bb97d2c7b361412ef4544b545d12a5d3ea310542752dd5590b85295d10049a", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9b62a23940e1b137c55dcfb71074714f2a71e43771b023b05bc6fe3d92c3ae7b", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "73112eba2a252fa8fd8047c52f665c8c9d6a03436e0afd3f2dec7cf84467899c", + "regex": "(?i)^https?\\:\\/\\/zebida9ayahderbzfcnodo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7a37ae405d1c0a686e84d3fd88beecf548396fa911239d3f2e13a4d4231f3a1f", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a9ef0e2495e7fe167cca334b003c60fc860f9a959bd0059e6c9b2a128b4f2369", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?rGBCO4Rd7PABest$" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r6li34(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b94ccb98db64d9c3fd11c2ee9f9139f29010fdbc9adac9ed261e319e45a3ffe", + "regex": "(?i)^https?\\:\\/\\/ceaqgveaqg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4328fe5097f17b83957dbc61ec0c2649dbb2033e1a19ce70dcbd85007e657ff6", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "640e375c87dc2e0f2b7b3c5bc167a62682755c5ddf6a1a48f7f23005d8dd843d", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "311acb96ab3ca8a728f0ef4a8baaf03d3433bde6a7576ada31abb09faa6bead0", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d62c0a30a4d61cda0258ddfc2fa550e6c81581c3f0239ea509f1e26d42f7bc1e", + "regex": "(?i)^https?\\:\\/\\/lemonifhrrhe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1a9a4810876b69e9798f852bdb2555d610671a79e04b75212cc98247f41ef9fc", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "74cfbdf9ff4e67e890671a6b813a5ab9cf0fe0a959288d169bb883ae1963f265", + "regex": "(?i)^https?\\:\\/\\/ghanabanklist\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc9a4b3c282747de1f15df0cb3a028b6ff5c8749c447e6ff13c6862ee498bfb9", + "regex": "(?i)^https?\\:\\/\\/lemonifhrrhe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d35dbe721774c7823213be6f30358cf7d51ffb0c816e00ad505876cc917498a8", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxsemterquebaixar\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7f86c2042e36e9f3052e48eb35cd6b90628696e6734fc15813a4d9584977a24d", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b490a73bd72f1c8fb9a5501ed9cc3835efcc466fb00a338eec2c3ae93b39f286", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bce819300b18bc99753fce74740407f20dbe41cf403fe25ddceb6d2a051f529e", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "315c94880731bb5530b5e458268dd059b76ad53275882f652f8cbf6e363f2c1d", + "regex": "." + }, + { + "hash": "873026c961a53143f0f5432e2a1053e90a46ef52b7497ad469c7e3e2c786354e", + "regex": "(?i)^https?\\:\\/\\/ceaqgveaqg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4e81c13cf0b4d91ce28470e1fc68725d105774e66ca6596d30124a3ef6fb6849", + "regex": "(?i)^https?\\:\\/\\/ghanabanklist\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df453e7d80bf8852aa081c44537dfe5759fdcd1783ab08cfa96aa2dd96caee1f", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0d83531194e2244b7b44ec19c30e53d56b91df6213e2d4ad8745a747088a9ca4", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "40fa5f89e003a487219bac3b9478e6112ec29104d4bbdbbd1349f1ee502f5d10", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmbubm54GrUco488BcjuAfuJqKL15bwsQPrA6gsSFFgtoz$" + }, + { + "hash": "df628c33810b66c07cea4c997b0acfa822a962c0394c1a7be0b21d97d7ee369f", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "03e3daeaa543495ef248787ed4e4fd51356cb40d535fed53511bf5d57276e4e5", + "regex": "(?i)^https?\\:\\/\\/5tfvdgvg22fh5j\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "16814d038598016e74548b438e5d719c461ac62bf70928cffbd61dbf251e77c6", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "44e0f339a850c6abea5507ac7c0cd58cbf9af23c2665c0f9be96818d33101941", + "regex": "(?i)^https?\\:\\/\\/swizeofgf092bncff\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ff7a893983f218c7a28c284ae2dc225a5291f210390e05192612217436a9ef38", + "regex": "." + }, + { + "hash": "803429c7a87206ec804114d4d6c477bd6d64c53b7435acf6ee404d51fbf0a1e5", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8ef9dd958e94a5b4868a13d46d29fc5080e6c570568787063e92f73d037133ae", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "07b0ab40a1d4a5374f55fb71d631598f8e6c452a50201826cbd27f3e8eecab71", + "regex": "(?i)^https?\\:\\/\\/hgeqaheqah\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ea89f4fbf7e1d12ce529582aa7a8abf9cd9cef6bdc9a03d5dd5410635c77d2c3", + "regex": "(?i)^https?\\:\\/\\/zjjvemmwxa\\.com\\%E2\\%88\\%95xpaxhgta\\%E2\\%88\\%95jaxeumzj\\%E2\\%88\\%95ccsch\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pyvrm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6ec609fcf2ca01ffc6aa1f1daca1e6d82d7b4a1c0037a84aa56c9f63570f164a", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9a44b78cde54a2eb14aba47723ae9fca3b3ae8905b1ea91a71670c88941ff245", + "regex": "(?i)^https?\\:\\/\\/bunbuttundefinedlqjdr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bcf47dd3b579f5fa322f496a922931b1fe603a2f39c1ec4eaa1f65d455037ba0", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d1abc28e69184856cc25c335ff1be7b05476994b6d6726b2be2d7f8ef7c53e00", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=c\\*\\*\\*\\*\\*\\*\\@f\\*\\*\\.c\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "c8b233afbd02356a7bff80b5261beae60230b1cf9c9c4ae181af34145a0b2f6c", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a99cb7952525bf599d6e533fbe8644d25083f7fa4ff699371095a6e4908fa8f3", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "24bfd52a9d2d9b73b01138b343f9cecb3f7e92ac14f13e1d85d6c14b46e57529", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ef39649dfbe4fbe116b40d5a9613186808a8779c362a088b3b33e47cb9c4afde", + "regex": "(?i)^https?\\:\\/\\/bigbosspbqk\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4defe2a398a7958f70ecdab031f0b422591285b391f3249c09a27a08cf4f9c40", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2e5956a6903b70085f99babb6862181df31a088bdeecc3d7caa70a0e9df06f0b", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "df73866689bb70644831e49819576b7b1ae2ced92aa7274a90ee4881eacbf5f0", + "regex": "(?i)^https?\\:\\/\\/jribnrnfni5885bbcuf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "74a8964ba22053658b4ed8a309e2a40c9506b347f19181e8d9154e0740d7bf2c", + "regex": "(?i)^https?\\:\\/\\/stannuqwpj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1b74abbba2c920a2e9551d5efbdc89c78a4e7ddaa327c8f761619a243dfa8886", + "regex": "(?i)^https?\\:\\/\\/hgqaedhgqah\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cf0c659b5b9feab9a7ffd8b01141551bb4be8735e13f0d4f4e2dbabb41ed6b43", + "regex": "(?i)^https?\\:\\/\\/bunbuttundefinedlqjdr\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3198337bdfd5cbddf28a872f370206bbcdcc3d14bd492a1bdca83abf9aed139f", + "regex": "(?i)^https?\\:\\/\\/5ggffhrge3g3hh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "258ae622d844ff3bafb6d5a061b48334ad2f1c511857ce3645baaf427010aa03", + "regex": "(?i)^https?\\:\\/\\/swizeofgf092bncff\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d64fc2731196ce51929d5ee5e3b3d2b94964ec7f7767578fbaa45a591111a1aa", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9ad597d1bbad4d3423a6232f5947e3cc9384ed1de249ad483fdce56cac475206", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "03aef6f825eb91f4b382a1799d5326a5c3db7bfab581d02fe0333ffbe428da64", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "06629421d8d2aad3d06f83d4812478123a8697fde1021afbc1647a4b9c4bc6b5", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7f3f1caf75aac524ff7ab711c01d17e4eaed6d02e401d736befbd09fc07eaf91", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "24ced9b1047b7cb35fbf214c41b4768968d8c87cc0276b292de78c67d9ac0422", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "dcfb2c57091cfc96fe2edf84ef34165540275fa662b17412ee117f5786338007", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "08a8625cf5c581d79af4409972e7497b0eb836cd5379da3a69c3c5f6ebcc74e0", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "eca3e720dc6e6c65df55626ee1768adfebd4f26d09858f3878314ec2792ac428", + "regex": "(?i)^https?\\:\\/\\/hgeqaheqah\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e3e9d0cc9f31b2ba9ae5a4b57e3553041c697e65219a56ba6c6d557c1c937f86", + "regex": "(?i)^https?\\:\\/\\/bunbuttundefinedlqjdr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fc300286ced5bd8781e4577a682afd57824e2fb7714f4a4d9cce3486bf7c5980", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "814301cc9749b5e9ff7df25729056ae30d6d8ee5ddeeb179a753f77c7b9c19ec", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "240115a585a2fe12e5fbb9141b7aa9b2d5b781774a462372273ab50d65863d1e", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9db1d616329376def84f87e92527316c13cab0b743969085468fc419a4f9b694", + "regex": "(?i)^https?\\:\\/\\/federicojzq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "943368f4ca0085606e9246035964c7f5d9227eaa9801e36195efdf7610bdb9ca", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ca69b15cfd1864dc113ef557bdbb28e1157aef11dbd2fcae5b16928297839c75", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "54e704dfcc855096eb9b05ac6c18ee5f4a1a6e2ea3b92c8da2d994e0bc648640", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c604c7e37bbcc3a09b960b325106940914b450c74f7ab82f5127e9d0136aab90", + "regex": "(?i)^https?\\:\\/\\/federicojzq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "df9a2ac8ffd0f220a69366c3f615f945eae55f05ce6d01b2bdfea42fe4ece648", + "regex": "(?i)^https?\\:\\/\\/ghanabanklist\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b9485a0476e5d36b517e5afb7a3094b66bf609b5c844c113a3d14a9bfe42b9c", + "regex": "(?i)^https?\\:\\/\\/5tfvdgvg22fh5j\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a7330086d706b9a092040013af73789aa2ea5823f26b37c91fd546aef8e59734", + "regex": "(?i)^https?\\:\\/\\/instagrampageinsta\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e2fbae8a012a10a1d43f17fe1fc3710101808c30e822d5527bb36778ecce337c", + "regex": "(?i)^https?\\:\\/\\/pooiazecb882vvhma\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d0dd42290334da61c2a501d991fb0a8880bb5fae0d9a7a2f0f8df6fa1a6cad64", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7a074b6ed7ee95edda92024a0541094aee17a9855d05479e6db65eb0ac1484d6", + "regex": "(?i)^https?\\:\\/\\/ghanabanklist\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "22a1e57e4e3ee701713ba9369d10af920c3ab165fbce355759e28375a4446936", + "regex": "(?i)^https?\\:\\/\\/5fgggg33ghr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e421771c3f175af87dfc97aed6811b95dc13a0e66a2173223fb87717ada2e0fb", + "regex": "(?i)^https?\\:\\/\\/zondergut\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7f05c091d759042a0602674ca39d6842fc3440288d0260df29060a65891931c0", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e168eb9792bb795db0a36520ae575d1db115d3fd05bf36c103182974c10c65d5", + "regex": "(?i)^https?\\:\\/\\/5ggffhrge3g3hh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ca706a64bb9a41bb555e175e00235c54bd32f4dfbb672d0a3555679ab2a50a4d", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ceb254239bc5b634f9f3f6b7cb7644dce3c71dd4253ac26f1f1d1cd4e134b924", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakvmsdtuasjcaskcmasekmaes\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7e88519f816e4ed2a4a5adf1ea2c416647a7ac9bf74bf64ba6850c4bbeb1741", + "regex": "(?i)^https?\\:\\/\\/freegaza71\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "76d3d17bd7927071654ab0bd71524341508010959b447e6d82fc17730bfb4187", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2b85e1a4dbf94664ced221e27311d352d8451fb537c5d593067c44187a3367ec", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7e65c0f4ac23a441f8286adced942690c969081b136628e7d4921abcdba6d99c", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f8ad6ce7331e9bd6852dd216f2b1af689800f2c6eed427c0a412137a29119103", + "regex": "(?i)^https?\\:\\/\\/federicojzq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1390a804ac4e0c6d153cd73b9f3ab30317f132c74f6523bba5dfdb9786533c35", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d87804452281b4c076e7f07ddce0b105c1b9b7a57a213763ee61b72420bdb736", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "13b49225109664acb35bd2fb182ff00d95e6e7c14525e79abc34d2a9023f3aaa", + "regex": "(?i)^https?\\:\\/\\/ghanabanklist\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4141f197ca452cde90b51d7690d6700daf9cc757cf14024f9f8488659cf1cdba", + "regex": "(?i)^https?\\:\\/\\/chieftainahbfcxa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "667b824954754d3384539f861835e66d0f52734a240fecc8ad2c4a462a008b2e", + "regex": "(?i)^https?\\:\\/\\/qahgbeqahgb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ad5383c51484af7e71eee492501fd2b34a3752869fca5b5525039b7b8cc49145", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b23f60a2330b2bfc222200a8a7d7c38e736f5d7104b6c3ac0948323aedf1a4b6", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "441588c8876eb867bbf1ec6d622550b45c0b20177462e611cba1c7e6de59e2c0", + "regex": "(?i)^https?\\:\\/\\/buehnerderznjpfy\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "99e3b7b326aac0f7c5d58216ec71e92bc0898cfc626b6dc83615915501ea16d9", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "de25c5db923c00b13f04190ec2e0858920f73636f59470289e8402004e9b8747", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+all[\\/\\\\]+edg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "af54951066563155c683795dec8267b739457c1c40b3976def2ce7e52994b7f9", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6853148c03bf1ecd5c26b075499e90508220408ebff51801277e79e32c07021b", + "regex": "." + }, + { + "hash": "dedc2fdc5bd47747cfc499cb0bc244fc7e727c803fe1154fa475cd1e2fb77e8a", + "regex": "(?i)^https?\\:\\/\\/eqahgeqah\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0d2897629d5503d0ddade501b6847e3ad71b8ac5d693ef334604147034961637", + "regex": "(?i)^https?\\:\\/\\/stannuqwpj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4ae8e8e91bedc080e542483ec470944483b6381e5e03ad84be8be49ca49ef2dd", + "regex": "(?i)^https?\\:\\/\\/jribnrnfni5885bbcuf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3a5a5fe229808fb3763b3960916f3f5bfde7a06890ff4c4fe044a87fe51d6e9a", + "regex": "(?i)^https?\\:\\/\\/jribnrnfni5885bbcuf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4d43f446eefd1ada4fb0e6b3dc7d3cfef22188a7c6466f535f637d4c983a4bdb", + "regex": "(?i)^https?\\:\\/\\/swizeofgf092bncff\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a89546c9ce4d65153513aca8936c5181534370e2e0703f3f4bdee7e3fab8159e", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2e3eeff5c356f76b62700355ab4e89414583829b0345c704e1ef375293249dc3", + "regex": "." + }, + { + "hash": "0b01f27b8f00cd904e7d0d565cc88453b0e50a9c3b686d8aa1ee04cd8058768d", + "regex": "(?i)^https?\\:\\/\\/ghanabanklist\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6d58da9ca5a0988cbf1edb062b4c76111bf4f41f3d7ce1ad06d786649bfb7170", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "841f89adf9ad25425ee133b9f24f2f54f13f379b4a583cb784caa59653d2e9e5", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7d82afbebf1c73b6e76b7b87c8b7d0cfca4f80e6c22abfccb153c4e34eede316", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "546cd566ff41a908a14f672206d6c8cff4ad7ab9f4af9ecb05442ed0eeda30b4", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "10fc6c8ce1ab983a8c55eb282ee0ca9f12c4c4f64ca0cd4b952f409ee4ac96ec", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a81820a7f4357d169efef7878571bb6bbf915ca0fa0087a7464ea6f7f6d8a7de", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "113f928fce0f6f718165f26fb4b93a138c3c5f2b2676ed30a96cf597ffad8394", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cfc835f98e3fc6fb5c56c31799531b372b547ebf986d474c156a2141b1a2c8b0", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "26c7481151189bc9fdcd54ba8fb79b05d57ee040be9587a408ec4413d7fbba92", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1d8810fb996839838dbf97430b3b2cc6992f66587ffea032198e786ff6ecc9b1", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e397aae2430492ae1f7d086316d59202d5372e90aa8d9af8f23b1dfc8751af0b", + "regex": "(?i)^https?\\:\\/\\/instagrampageinsta\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "17444ecc232789b22d7db4771ffa1a84edd0f0457a57493eebd33cbdfa8b2d26", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5c315cb9df2eae072eabbad1acddb29e929e54082e2c77fe4bd94b3c1504075f", + "regex": "." + }, + { + "hash": "639432a0a784e02e985e719b3ad86141629d066f629d827ed1be920a155a7c97", + "regex": "." + }, + { + "hash": "c20f4946bed77dea97ae0b689ff768b17373c5046696605c6c83edb140b9e7f8", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "831e7db603edaaa14c28eff95bde8b9b1b3390a98d48aa64c9beb7e54ccc1265", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "acdb4fdeec348f2e7dbfb62da38b16c6b784e79704f924ab7fbb768457f955a1", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "37eac1e529929684316f03b0a6674674e569080d94514294b5835da0e6543741", + "regex": "(?i)^https?\\:\\/\\/5tggdgbdgwg2g2\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d8941efc4e5028512d0d645911cf30e7d2e96e73f9b3f93d47892e0ccddfd98a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ctf\\-write\\-ups[\\/\\\\]+cheat\\-sheets\\-and\\-notes[\\/\\\\]+windows\\-privilege\\-escalation[\\/\\\\]+windows\\-user\\-privileges[\\/\\\\]+sedebugprivilege(?:\\?|$)" + }, + { + "hash": "ea8b01e35e7279e128f71295c950bd5d8c8917c62fb67195032099cffaf327c0", + "regex": "(?i)^https?\\:\\/\\/federicojzq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6fd8be33ab0343324f3dbad07364b295de25c1bf1fd9da0ca3d05f9a50de7edd", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "96b681e8c9da072ed3333ea5f937c1e2b9a6838240c3a7482812337e98688649", + "regex": "." + }, + { + "hash": "aea521a3e85c169dcfeea980518012206abfb66466b9ffafc92685b7e0dec49f", + "regex": "(?i)^https?\\:\\/\\/hgqaedhgqah\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a5079829e000764ae15ede9d55265b90300fc97df6fe989522606311a0dceca7", + "regex": "." + }, + { + "hash": "f6d4dd22615fc8817be4b8a77054da3802a15b2980a0f178b018c6306eb3e69d", + "regex": "." + }, + { + "hash": "cfd17b2157d6502670c158b1144f5c845dc68f1d59c95dd8a1981e82ff43ce15", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c367ec7b59925362a93b2a6074a60cd9d9ddb84fdfa41f8802ad573318652903", + "regex": "(?i)^https?\\:\\/\\/aehgbeaqhgb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8794825512c4faec2999593a0cb82ae1cb07f256f741a21377788d646e41d02b", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "187e414b50377b36a7e9de5bf00ca416e02cfb1f17abdef7ed2ef27100321190", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ee689c5dc0e24c7e371261ddc5f46475cde60ac2693bd23ed551cb17cc93ade0", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ce7bd6fa8d9a02b0891ffed8e09d62b37fc99e64a94ab241427101a1f73f02ea", + "regex": "(?i)^https?\\:\\/\\/dfsvcdscvdcv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "86214c01bc71b824b35b9de50853b279fbf0cdf239bccd221e2028078746cd2b", + "regex": "." + }, + { + "hash": "e7548ab6b0d35ad63740ebaf9feb755167937c4afd345bf3b2fa649399494b80", + "regex": "(?i)^https?\\:\\/\\/farrakdib882bc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cfd1c9f6966196d87d89569f7f9477461281cc1c16dd014463f38aa4fb134ec3", + "regex": "(?i)^https?\\:\\/\\/yuiqta\\.com\\%E2\\%88\\%95lvkdzz\\%E2\\%88\\%95wnucrdl\\%E2\\%88\\%95dhityan\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=mbyfxohgnw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a9ef0e2495e7fe167cca334b003c60fc860f9a959bd0059e6c9b2a128b4f2369", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?rGBCO4Rd7PA$" + }, + { + "hash": "0d7911f5195ead3f85c8220a93887b4c6287b1c31b89dcbd7b9c10d8eaee7285", + "regex": "(?i)^https?\\:\\/\\/buehnerderznjpfy\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1982ab3e8b28e07ef02fc3acd541a6d2abd56f62090c39b31bc6b099dd26ccd6", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b0c22c7a1141546ced2fc52c9e9b8bb381480d07a224b5b871a7361140907bde", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e08d53fad0d6e3f0a5e2831a2f34aa43ab3b16a042631be50419389fc0e1106a", + "regex": "." + }, + { + "hash": "8ccdd063e548b1f9f2925be7936dd940ad073f72796c375660ec2170f3b2b6cc", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "83ce330fc3ead19dc2e2b436ddc98b44b829bcd5443210bcf4ce19a604d5c38b", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "627f0cd7ad1dd0891eb731d9f94d35d3adfe6eda8fee7a5aafd3c535058c139d", + "regex": "(?i)^https?\\:\\/\\/aehgbeaqhgb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2250094534cf9c10bbf2c50f342bc0947aab4a737f6b51b71c8c3c330fd8851c", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "76dec1afecf0196bd53a309f19bbde4ffc5edd48a7f213966ff6f5d743c24f1a", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a58a9726a8576f088443af5e2c01f0b620c066f9486c74f2a95ad3fbd3439e59", + "regex": "." + }, + { + "hash": "aaaacf9f1347c92c6ede41fee1b90270fd4c282f4a56c836b949e2ca2b929d88", + "regex": "(?i)^https?\\:\\/\\/swizeofgf092bncff\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=r\\*\\*\\*\\*\\*\\.l\\*\\@t\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "95625e90b13ab38b2def01807b1f2bc0562d0fd5bde96246feb049db2bed3dd1", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakvmsdtuasjcaskcmasekmaes\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "966b6103c1ac9ddc976a57b318d710b20d30b3e3b80aade8cf486bd2da4b8a48", + "regex": "(?i)^https?\\:\\/\\/farrakdib882bc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "12c721cda60d6d90f6f94fbd83f69232ae47cb5f0fb015f85153ddb8a693d324", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakvmsdtuasjcaskcmasekmaes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6821a88d5b8717c066f25188f15f3808f49495c55be526941366b331fe78289b", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "febcb97da0d79d2922dcecb1097ad311bddf57ad9b00bc05eb9ee344f837117b", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e5ecbabe5b56eaf9c70dffeb75f69991ea84d234a8a60b32ceedcad8f9e06305", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ebfaa3147d6b1099b0d8cbd36b84409dd41c4908a25054d03a62e111490c7dee", + "regex": "(?i)^https?\\:\\/\\/farrakdib882bc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f3efe74b5bc8f59fc97dce9ad4301e342f3ad9614d28cd4daf8b02263d130630", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info" + }, + { + "hash": "f9e497328a9604e24ebe92c88b20f71eaddf11367b60bb6ee7b8eca7264f8f98", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2fc46fab377ca1ccbbe4d00c7b79a9f89034cd27d106c1184771aab24057a62e", + "regex": "(?i)^https?\\:\\/\\/emoiksdifoueoidvjuoisd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2d3b66518882109005dca19fda1522d794a0d704fcadad58fcbb0820256f1195", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fb7df502cc3d61d5bb9f4e18e984b99e51ee7e99882ead13d765468562b64e2f", + "regex": "(?i)^https?\\:\\/\\/farrakdib882bc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "73a6a12a6adaa668ce287b126ae7027629c43781b732bce12c9b1e6d4d583a87", + "regex": "(?i)^https?\\:\\/\\/bunbuttundefinedlqjdr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3b650b49b81e57cbc3f19f8e030fa94f5c0cc9c984ba8b4970d0d04e6b615f62", + "regex": "(?i)^https?\\:\\/\\/loginirhiuhriughfrt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "213adf961f4e742c732ba7e2ffe2434a51acebf51fcd93e892bbe670914bd820", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "092320428750fbcd1b80cb6a0fa3efb518644d5a68931ef6e7f675d1b0709bab", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "21d502464a71a5a195a6c23b6e3d316c86cce2cb6900a5d9744fe8a8de978236", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxsemterquebaixar\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9db2a3be7e4937e4e3139ffd5c7d07c9b474b97777c1dd00a34458dc5437fcdb", + "regex": "(?i)^https?\\:\\/\\/instagrampageinsta\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=a\\*\\@m\\*\\*\\*\\*\\*\\*\\.eu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "6a9d3f75f64dbb4f898c870857e269486cc484bf2650888108c808e0c323de29", + "regex": "(?i)^https?\\:\\/\\/5ggffhrge3g3hh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "95d1bfd6ff1ff36d7aa1c838e7cfe9951bd0685a2a2dcd52f3cba014a5149940", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c859ab0bd9082ba606270e0dd80a1813129bf027d36f5f53f50d8264c2fece9b", + "regex": "(?i)^https?\\:\\/\\/gwalakominr0\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "80ef8f60736d061367acb388307c65943cf2aa4b913413d4cc214fa52b318a09", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m6hsl6(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9247d300592f766cd374b2611b8159d50018ce18737c15aa0fe531dc0d3bb84", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "783834223013d17f4aa82a47c0c2a061502961848dd612f002c36206f9fed57e", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2e827b849bc03af5a32472d1a7d7141b4af84479452adcafee159770990ebbed", + "regex": "(?i)^https?\\:\\/\\/5tggdgbdgwg2g2\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3d8136c3741512fe1f680bc733d2e3cfa50a94f6db04f2ba4345eecfcd0ecade", + "regex": "(?i)^https?\\:\\/\\/instagrampageinsta\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2ba9ba640bb3d869499682671fe55ba75e0151c68e609500843d10506db4873c", + "regex": "(?i)^https?\\:\\/\\/lemonifhrrhe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5b36786cf7a8dfdcfcde77cd90f9608368ce7682e874d1f248d51adbbf5617cb", + "regex": "(?i)^https?\\:\\/\\/emoiksdifoueoidvjuoisd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=m\\*\\*\\*\\@f\\*\\*\\*\\*\\.c\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "41767d1e8531e9f9188e3bbf342db6bceb4e80d6d02981a661674bea6e77d5f7", + "regex": "(?i)^https?\\:\\/\\/gwalakominr0\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "709194b5d846b36d60cdd68750c5b69ea0e0d7c24d6f2702c9abdb9ff0532689", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "44df08fc2e70ff062b1f45f11082693da8135d270f7787eb4f70ca6fa9415f57", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "26cc28838e1747fb940970128018e8c6a19f5cc5d48339b3fadb64bb4b7b36b9", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9102396492884a53f86fb6c5ad8a01625ca8a457f9fc52d6215fc06ea7dbfc27", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e8fdf82ac78af197a0fda1ed18de349588cf8f5d276783575a05e5875d102ae2", + "regex": "(?i)^https?\\:\\/\\/5tfvdgvg22fh5j\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "29f666c5593483c1cbf459b64c1a2dcbc3c5623756f428340772da53a5d21669", + "regex": "." + }, + { + "hash": "6c507a713bc9a6df8893c88d27c6d5bf3f2486f6d70d1bca2bcb436c2f4904eb", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a9d20bd08466ae4018b0eb063d4a0252ea1d1e65addc3de45add606a9bc0c825", + "regex": "(?i)^https?\\:\\/\\/zvitibtmer\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3da0da96760a6a99e25d75241c54c119faa187d02915741a9e7351cd6907bee4", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ce907a4a20944bc23c0339eadaa916001eb4b96aeff512e8a94b3110fd57089f", + "regex": "." + }, + { + "hash": "d691473d098c04b1169434c85926099a845c7f5e50bb8b7e92778467ded33f6d", + "regex": "(?i)^https?\\:\\/\\/stannuqwpj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cdee58737c255012288de83f0b087aeb939ba92bdf149a94965128f9a61beee3", + "regex": "(?i)^https?\\:\\/\\/qahgbeqahgb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "20f729eefaef690cfab7c12182ee0599bc368814527f6337ae9a602d00c88fec", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3cec5a94e71f4451d0df434cbdb35bc98f6e0575ba22176f46c9831735255f14", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b6d5ba3fbed58f7ef5ef0574b9d7575b00d4d36b1cb4f6f5aa6459c942a1064d", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=p\\*\\*\\*\\*\\*\\*\\*\\@f\\*\\*\\.h\\*\\*\\.gov\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "ce7ee8a74126d29ce711bd43cab784eabc0773b076335a8c880eb171785c22cf", + "regex": "." + }, + { + "hash": "ece22c6f713d126ab256bc9a79d3d35148b7b7bcbf26a41e16ee00cae3f0c97e", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2133a44eb6e9d960e989bd9c7e228585ea56b707079cac29ea3480c49c7fe162", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "41686ebb47a42ac3777c87927cc124fa9438131c8e13c2165c9beaa308dca069", + "regex": "(?i)^https?\\:\\/\\/nueyucbbbhlmq0010\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d71a6db0c25ce7f62f3523ade3e707269a8737257ae40dd0fbec2f5ea9ac7505", + "regex": "(?i)^https?\\:\\/\\/eqahgeqah\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4d225ccf81ceec3277efc87286583d519953b9022f838445bb41ecdacea2a6fe", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "876c54ac904a4b025736bc4111b6f41c11df9e1ef3b9b9845211c78abb05cb4b", + "regex": "(?i)^https?\\:\\/\\/gwalakominr0\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "57d023e66de853a764dd12fd6920d3987d85d4c5c4c87e8de8ff0e5c5e1b3091", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "edcc285e5a1db15e631e48e5b00f151f4df2cd6f056605c0cd6d8f28f3a99ab7", + "regex": "(?i)^https?\\:\\/\\/eqahgeqah\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d1f850a9a14937b59ecab93f0894878a8954b551e9a73e0b1b1c81fad74a6399", + "regex": "(?i)^https?\\:\\/\\/pooiazecb882vvhma\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cceb0d2a38842c37ffebcd287a634641f31f586df1d27128e28a417411f76f6a", + "regex": "(?i)^https?\\:\\/\\/chieftainahbfcxa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6af8308f0f7ef955e4066df6f8ad25388920a63102750d04fe4c3c23a5b9d680", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2bc2ba3bf81c726effcda0a06d996a36547760618042664284108abf57c6262a", + "regex": "(?i)^https?\\:\\/\\/5ggffhrge3g3hh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b9aeb60e95423d8e6dbe5b22e3c622ca52ea0fd2b3a00ce39305cdeff285fb84", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "df68f911ec71cd849f98bb9d5604bf351c81530a899730e4cb3dd7b3d8c8c016", + "regex": "(?i)^https?\\:\\/\\/pooiazecb882vvhma\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d296a9ba565474cdec6186247dc38c69f439106a09aaec0a599406a991fbed43", + "regex": "(?i)^https?\\:\\/\\/freepalestine774\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c2fa88afd25d163819b594cc2331d6ec8a7b27bcf115df5d5e290ffb7797da83", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5b30db46d09ee37b311e9d173e4bd7f0a9b1ecf242ad86f93c81ce537008f52d", + "regex": "(?i)^https?\\:\\/\\/loginirhiuhriughfrt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "417c566d6ee25949d169e6d5a7f320f826a1fdc67c7079e31fa3b6b101c85f9b", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2a2e17c431c511658d1b1853046123d8cbbd4493b1b43fe924b0be2606d35d3c", + "regex": "(?i)^https?\\:\\/\\/emoiksdifoueoidvjuoisd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vn7jlu(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d963d6888847ec5f4ba5b5cf08b2497ea4d2321493757291a2ee3031c6611122", + "regex": "(?i)^https?\\:\\/\\/loginirhiuhriughfrt\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ab4dcb3811fac0dce9866f6082f1554eec6a845fb2012690c51742eb11414680", + "regex": "(?i)^https?\\:\\/\\/gwalakominr0\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a065f0ea8be55926eccc65bb0f8810306472fa1ccb4a87a8d269a0a408a29697", + "regex": "(?i)^https?\\:\\/\\/grashunnyqofig\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f0e418bc0a9e217a351cfe243012d1aba1e23aef503d958d12e42356f515cb7e", + "regex": "." + }, + { + "hash": "1d9df1f0a200cfcbc2e6b72e4014884dbb67361f60b6772723ba818cbaea5d9f", + "regex": "(?i)^https?\\:\\/\\/lemonifhrrhe\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6646e7747199289790e1915e0a2b04b1fcf626e04839b368d374b4b539d8e3c8", + "regex": "(?i)^https?\\:\\/\\/eagheaqh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "41456d2b6f617bf1e8b94b3314a49ee6d206c0ec0cb4aba4f4125b7f35d2950c", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6becdf54cdf78f0879ebf541c50729784e11291f0c385549e53b09f833d0d07c", + "regex": "." + }, + { + "hash": "865e9b092034443c36e2fd92c8ffd7adb381a937a4d31a1f76bd63372531ac7c", + "regex": "(?i)^https?\\:\\/\\/pooiazecb882vvhma\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6c8cb16dd2c3aa3f51625c3ff87421c3e7b51acf9bcbfb560bdf8da174bd6c1d", + "regex": "(?i)^https?\\:\\/\\/at\\-t\\-mail\\-b54cac\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3b3c9de2fcd8321ba84c8f2e287bc7dbbdd53b3a9d11989d56f2f8b23f1124c2", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "22337d17a30ce639ab02923ca1c0a6037cafebaf0207c5c5f2868d7a2c2d5e5b", + "regex": "(?i)^https?\\:\\/\\/pooiazecb882vvhma\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0d28b8fc22facd1f9dabe69f5de701bde0d86cfc1855343ea7da6833fd8641ef", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3f7fee55e7f55cbfba2efcabd860051f44ca45e2ec8606d9ed3d2860f3e9a377", + "regex": "(?i)^https?\\:\\/\\/ceaqgveaqg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8c366374d079c84bb2bca84cab49d32d995f35b25ce7aca199c7e0649ee3e681", + "regex": "(?i)^https?\\:\\/\\/pooiazecb882vvhma\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ee64d0128de504860de1e2645fc4fd44abf7eb17605d8aa7c4a27b8b3b5d577a", + "regex": "(?i)^https?\\:\\/\\/gwalakominr0\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "27bc2ebab95017ab43519cf9e944cc2194575fa59d764d0c3befa28af6e67681", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ebae914a51f1fdbcf49f10c8cb9cf9ba69076f7d373b7d93f0b2afccc3abc12c", + "regex": "(?i)^https?\\:\\/\\/ghanabanklist\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4023ad2114ee004426294d741991105047e90533b1d3bdfb81ed9c46e500e46e", + "regex": "." + }, + { + "hash": "c76d1183bad4feba9cb81a7cf399c35c49b33fe34d2421d90dcf6a7641ecba61", + "regex": "(?i)^https?\\:\\/\\/qahgbeqahgb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6ef83059f623f8b6e3cfdb341dbe251bc0ab5e288032331c663fa83bdae67522", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "61a4f2ccf8b717bab82528ed0a911698188642b745c1ddbff3bb9dae656eb8b1", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5973de76ae45043a873f529fd5e5fea79dfb3847cacaf8d028148d7dbcfd8dca", + "regex": "(?i)^https?\\:\\/\\/zondergut\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ad63dc592a2b5d1974f31b68c2e1c891eb7445431a797a501b80bae7ea9234c4", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "298b06f45e13faaea24cacc8e305a6fa8b6ce9ec02f7aeef4462a70569bf2605", + "regex": "(?i)^https?\\:\\/\\/hgeqaheqah\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "51903f4b53f4bb5dd480097731ece60a29427ea867359eae0ff9ca3adadd5188", + "regex": "(?i)^https?\\:\\/\\/bliss\\-roots\\-cbd\\-gummies\\-reviews\\-2024\\-25\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dc3e1403c1fab3ecd245a92c85bb02197874c19867c55b84c58e6b6b6f63ed6b", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b04106bdbd32b0fc7af7597ea6507b7d5bb83dd8c5d97f5a7b326a8e6a3c996d", + "regex": "(?i)^https?\\:\\/\\/5tfvdgvg22fh5j\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2ae5299d589ae4618218086fb801ba7500d377869fed5df7b1a844422855fe68", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakvmsdtuasjcaskcmasekmaes\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b90ce1aa38cfcb682f1d291812b59284cb5577897ac3c77ad7e72240d03a00ef", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c16f8b92c90a14ae8f8a9eb175f1213c057d060f121d6180d91fb2e26efad792", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4def79c057fbc590cca6903042251d1a2f922c2ff39fa7e4ad7865d2b4f809cf", + "regex": "(?i)^https?\\:\\/\\/srija575\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "172e672a032274cd959dbd71b52d4b5f59ef0163a0bcf9b62b765e9c84382a98", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9f697a25747e2772d768312298fc41de29280ff8be761267d081700a65257471", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "49bf5fa04d93a7570590ab7f0c100ee08953008f9613badd027881fb16561c05", + "regex": "(?i)^https?\\:\\/\\/instagrampageinsta\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f81c205e5394d596efcafe995ad0857fa00c30c4b8f8d2e356278cde00a08232", + "regex": "(?i)^https?\\:\\/\\/farrakdib882bc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bf92a7c457f67c4fba8c8938e2fce92883e07afde6bdd08c3be50d1cc6f5c050", + "regex": "(?i)^https?\\:\\/\\/5ggffhrge3g3hh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b2f6c1153fb2cc879e82139058e13622f6b218f11d229cb6f85b4c44441dd5c7", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "22d43771fd034baa3517d98f01e22719377913322bd5fa32772acfd4d7dcfa09", + "regex": "(?i)^https?\\:\\/\\/stannuqwpj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3f0eef1d6086e130e328c372fc654202255b8f73d777602bfa17011a07a86ba3", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ffbb687c4eec14c81690dee58827209f43fe5efb8f392461cddb0a486092d73f", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bb225a0369938284d79a1b689f12f77c213c1460c5e53c784e2901dccbe1bbae", + "regex": "(?i)^https?\\:\\/\\/zebida9ayahderbzfcnodo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fda9ae5d6321069259bd3c993ec49fd47a08004376f3330e0e0c4276fb2b11a8", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2c0bba756fb255b9b32a73784a3e5f883e61bfe113227d868ab40c7880ed1a53", + "regex": "(?i)^https?\\:\\/\\/zondergut\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3b3c64fa142f4f0a940e9da2a5f772873fc51100c778f98c46ff4b95646d645b", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c344503e3a5450bf7356ff8f174b9714fde1faf843998e6116b04893fc87ccfb", + "regex": "(?i)^https?\\:\\/\\/5ggdgdgwgf2f4eh4\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "923859ce449d389733fafa26f23889dad4aea9a086debfdf8811c8b03152d015", + "regex": "(?i)^https?\\:\\/\\/gangsterkentoshrl\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "805613b6d6e70f63a785ba8796178e93258dd348173e558db5f9bbf40a18c387", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "28333c17e87191a65b09311cef262ad24b993bae749afe0cf8b09fff0bd95e8b", + "regex": "(?i)^https?\\:\\/\\/ceaqgveaqg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a44607ff306ccdbd937fd75b1d40839a874dad8d32f73af60844ada123328bdf", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "12fe73bd9ae5d420a62505f56fd686a324491718ee419e3aa433744825030a4d", + "regex": "(?i)^https?\\:\\/\\/aehgbeaqhgb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ca96633a003aa6b8a3714bfe68b03adeda603b49e0da26f170c462e0ae352ac1", + "regex": "." + }, + { + "hash": "4193078c835b4cc2c0d666f39e64fee655ba46994d6ad481411af04731118886", + "regex": "." + }, + { + "hash": "ae9cd264dff1a9489fb216e938a5517aeba8bea8790d3e97b320cf7ac2f5818e", + "regex": "(?i)^https?\\:\\/\\/federicojzq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "98d572195e51f02cbc87e199b552f806ccfb7e44aafeaa563891f9a5d3f26a8a", + "regex": "(?i)^https?\\:\\/\\/ghanabanklist\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b02b612aebcebcdd2800f2808c1c48c98c89d3b89a3291a04bbe646b5c676e5d", + "regex": "(?i)^https?\\:\\/\\/bigbosspbqk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2768bdafd4688a89d7b53bb0ee7e2dfcdfd50068132f780f68d34a41aa748df4", + "regex": "(?i)^https?\\:\\/\\/monicashkhbbit\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "642235f4565975aa65578de8d922fa65a99c938cd05e85f73e044023917a2184", + "regex": "(?i)^https?\\:\\/\\/5ffgfg4gh4hf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e38ccef85e0cec23fade98e30aa77bd4db16443c22fc8cb408d21fd8a2a92dc9", + "regex": "." + }, + { + "hash": "d4a3b968fee052c8c91c5b26893904f4a2ae429928291cebc70b871362478524", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "63b0046061ea57a4505b1c7738d103e30a139b5d2a7ac0c67a67b12c923a5c8c", + "regex": "(?i)^https?\\:\\/\\/qahgbeqahgb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bc1423c32d9278dba5c6f708840c53a796a067f470562c2919803dc141ef39df", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pwu7ks(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4007b0d630cad63fd44893a56920660fe7f6cd462e7171246e70e25e9b906410", + "regex": "." + }, + { + "hash": "2f44e0c165f78ce80750199bfc7af41a3b51c800cb0ef3187c610d2674383f76", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3ece664130b712ae696610fcb1f893c0d13fc90e59f5b7be039fa225bb8a6418", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6b942e6d5c6ce1c6c14cb713e85eed3f63a875a0dd83f7d1fe335f7bccb8af4b", + "regex": "(?i)^https?\\:\\/\\/instagrampageinsta\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e83d91680ead416efd62e21e9f6de65434d75093358f086b7f623dd9976c14a9", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "21e2b8c9c5af426866bf1c186adc149d22bdb4ffe69eb51fe6a43e5e14574586", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4d51ba7ec81c17f2737931728662093c977c1c5010931091070ba6100f0e2feb", + "regex": "(?i)^https?\\:\\/\\/uzebbciz882bbchh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1af7e07d80bac034d6bb324d51df36f603077b6f6ccde62f76dbeb50b5843e92", + "regex": "(?i)^https?\\:\\/\\/federicojzq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bc63ea06ea65377e4b7e061a1e904a109676d9f4b05fced7bc3c845594af5ce6", + "regex": "(?i)^https?\\:\\/\\/stannuqwpj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6a37c86efb3e15d5aa8de42b7f8ff3015cfae6505e796bdab20a6f071e5a12ba", + "regex": "(?i)^https?\\:\\/\\/aehgbeaqhgb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a4005b0d136b34f4ec012c4f2c1f63a4b45411eb60dc82392e27f5c56da513c2", + "regex": "(?i)^https?\\:\\/\\/smokkergewghvv\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=m\\*\\@n\\*\\*\\*\\*\\*\\.c\\*\\*\\.tr\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "d16bef549145ccc53a56df5e8d5d239f1848cb2830ff4ffe36e0cb404e554441", + "regex": "(?i)^https?\\:\\/\\/5tggdgbdgwg2g2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "941cad81369d2793e409a59d03de5dd2e5738890044f4d8bfd02ed8c3c5b8c36", + "regex": "(?i)^https?\\:\\/\\/bunbuttundefinedlqjdr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e8e01cacdacfeb72f3050668147c33d04e8fa02a7125635db5e213f928705d8a", + "regex": "(?i)^https?\\:\\/\\/bigbosspbqk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "53fd465883e090485b0d50ae7935fb21a0864ec7749aec1657da885c96601a79", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fe6ef4b5882886de4eec91acd8c3b22e82b3aad102aa926b51e2a8c95b5aa768", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "73868e622f97176253ab65978206c089557170d4a2db804cd347ded106b3448b", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8161b1be619422065e5059e8ab10a59bc72524dc97efdb286fd02a28e4bd9c15", + "regex": "(?i)^https?\\:\\/\\/gaqeheaqh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "84235523255cc79db06d620f01d574ceba5d5780363c68a9d8322a0233dc60db", + "regex": "(?i)^https?\\:\\/\\/pretagoniste\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d80dede92c231cdf783db6e09d1671891e337a6d9e785a1be9c9bd1cadf8879d", + "regex": "(?i)^https?\\:\\/\\/cjhinazeo9983hv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "55f18eeeefb9663f1f2b7b2ed698982f5944608647ce7d4ff34009d54b0e9f0f", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ac83fb63f6399bf84cdd380c2cb4ec94b2b7bd0cff97eb50e46ef854347ba210", + "regex": "(?i)^https?\\:\\/\\/zaeazeduhqd324e8bc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4e68a8ed634c8f7d5bb56a92d243aaa0076644fc814b4952a44a9ba36679ef8b", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "aa7f80d823252c7f79515978ee72cb886c135d08b5730fa0ff418e049ef35f8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+im[\\/\\\\]+6037295[\\/\\\\]+d600574875f7ef5c75a91131c8bf0823099d3edf96fd52faf116fc5dfd156c48\\.svg\\?e\\=6p7wRydUFhu4i_B42NqCuqP5Qmv9HgAGCqKljx9rXCs0FlTqUsKYbvt8XbV4Vj3Pz17p9hVmsogIFELkL7k7ZaZEpgUwa0yavnBJTH0D0_W_qnzeR7JHNyx0cZBpY3wLDvoCL7wkJm_Ar5TPCXh6XleX4iVeGj2rMCSkFdirruD3iTbRevpwRoPlSWYUbOG3WsgWKy0rxvXIouKotYS_dfnBrLBr4tSG__vXk0\\-3Sy5FzqarzRYtrZBzxOa1douTRPagra4uTwhiDZOQQrJUL4m0KaKPJYjFIHbtKybPb8I5\\-_m5YeZOtllrwUZO4zrGF6nsmkpVRuCSHHY$" + }, + { + "hash": "52b080b50374aadc3d6e249cc35df72062358facd834ec358c2704e42bea6489", + "regex": "." + }, + { + "hash": "812d5a902625ada5e05ea22fe206beeb37a8585caec251f9bccb15e8a332bde4", + "regex": "(?i)^https?\\:\\/\\/zondergut\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5a94cf99f2fc78e5f3bb96bcdb2ef63f3d498b32ffbb5564564d0c31a5257c28", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b23eb712e60331292ae8c032eea0130dc30d81f91f417eeb2e260a156cf95e04", + "regex": "." + }, + { + "hash": "bc95de930b6660f21b954c9a96b1fd5f3b977ce00f857ec85cfec52125f02844", + "regex": "(?i)^https?\\:\\/\\/5tggdgbdgwg2g2\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "258e91f447fdfb7c82204f9be32af557e537194de64217cbc2404c69335373f8", + "regex": "(?i)^https?\\:\\/\\/kircklazeibc48n\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "df917709735faeecc435a3fa6b7381a710ded40a5443fda3b1d767f04c8685c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\-267(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f269a41cce458ab1bfef930c33e99d3697ec0bf541f8439b672c53a2b4947a18", + "regex": "(?i)^https?\\:\\/\\/daxoozenpaymkwd92bc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6634f9618fb72562e69b5b2646511c6c4a27f93395f14ad133405cf757698a96", + "regex": "(?i)^https?\\:\\/\\/gwalakominr0\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "70c7817f1467ab5ba11a0d4de599271d54c8651027a4f665fc29fc0966732823", + "regex": "(?i)^https?\\:\\/\\/eqahgqaeh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6ad19480e1656e026a7bab114c17dfc46c15b85e0fc2552a1657826d0cab36ba", + "regex": "." + }, + { + "hash": "3392a7c963959dff45d2131c9b3f380aee8d2d3da2dea8e280e5fa390f3b38dc", + "regex": "(?i)^https?\\:\\/\\/didinsolosdb928c\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c8f74c36ab7b61c94b689a0a95a6784ba04bd76acd096d222dada97d8987d887", + "regex": "(?i)^https?\\:\\/\\/cvfxvxcvcxvc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "050791159087750be363f9282fae226ef59c1d66be97c2a228049db6c2fef2de", + "regex": "(?i)^https?\\:\\/\\/ziziskwhsq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c8e82fc149e1b5ddcd00e84cb68aa71491ef9520bd4bfb676a8d363d9efbbdb1", + "regex": "(?i)^https?\\:\\/\\/instagrampageinsta\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f79a8b5f037106f4844ff6cad3236a29593ee0553fb9c4953b0744b9e24c9db3", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "12febb423a3aded9428c8669ca90da6f46dbdc8847716088fbcf962ad64d1e81", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1ea9fe3b4c9be57d0b8fca580ebfa61268ca10a558747ac04941bff8f47698d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?L5Y0PWLgrTf$" + }, + { + "hash": "ff59277e9496577170c598e725a3109c704537b82f25b1f7e74665e6aa463866", + "regex": "(?i)^https?\\:\\/\\/daroocnwzi9920m\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6eb3d0a78cf4d8740afe66d542bd481a1c4c7f2f2d0ad6b31b2355ac60a5c78d", + "regex": "." + }, + { + "hash": "0e86d87683c66c7073ff43021a9e947a8e39551191f6ada06ed52a937e09c724", + "regex": "." + }, + { + "hash": "a00531c9e73fcd6faa3b1827dbfbbdfc1130fbeab7f1366e548614f0ad4bf0a5", + "regex": "(?i)^https?\\:\\/\\/jalmesicn993cbnuif\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cd13fbd804d26cfbbf4f1cb11efc30ff007b4fb75f270d65f816a49994453ed8", + "regex": "(?i)^https?\\:\\/\\/4ufifa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f3200bd741a50799234613608e4834e7637f4a2b9395c483582c7f255d1d9d61", + "regex": "(?i)^https?\\:\\/\\/machyinlesrois\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1ea9fe3b4c9be57d0b8fca580ebfa61268ca10a558747ac04941bff8f47698d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "7644791f787577fe935fd91853d5601ed5f34e3b4e5dbef012ef0dba7d041766", + "regex": "." + }, + { + "hash": "8d19e021119335509f508427a016fed9a7a52015e5713e6c847b0f16d477890b", + "regex": "." + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=h\\*\\@b\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "f78c8ffdff48416eb7f4da8b415e6dfbbe8ac59f88f33a5819f49e8fde18fce3", + "regex": "(?i)^https?\\:\\/\\/ceaqgveaqg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a773a34b8b633185e85526eab2ecd0b2e4166b5922d102450cf6e8b632dab9f7", + "regex": "(?i)^https?\\:\\/\\/5tggdgvdgef2f2f2f\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e9022eb12322aeb1ff59cc2c843d047bb70027e6566c549fe802cecbb3b32edd", + "regex": "(?i)^https?\\:\\/\\/qaedhb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d6e7bf2384a19c58a7c84fa3f58783104aade3d12ec5d18c2db9e4b82bb0964d", + "regex": "(?i)^https?\\:\\/\\/prixyelkmwo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f032b24aac509f5fa38cdd0139446a965b08c98bcf5a1b92c5baf8e96c599144", + "regex": "(?i)^https?\\:\\/\\/barclayscorporate\\-livechat\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "c8b28d4f66ddf8a72e574f6950fd0962007a849ea51216396224ba7685ec9004", + "regex": "(?i)^https?\\:\\/\\/hahahuhua\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1fee3eb304b74013ac0f3138d169ec54d01b26c3f884268902158647be026732", + "regex": "(?i)^https?\\:\\/\\/xxx\\-voyeur\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0367400277ec2dbe5b1decd1270aa7cbcd99c84ea502d2f385f9d6526d3f70ba", + "regex": "(?i)^https?\\:\\/\\/freefollowerslogintoget\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5965df0a7f6a394081c4e4e0c064d2da77709c4212fb4af3d5ad71b3c4937915", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9c8660b6721baa3ad6e9d4b036e49f14037b8eda4c6bd749dcf415051f1a00d6", + "regex": "(?i)^https?\\:\\/\\/xxx\\-voyeur\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0fcc94b0b614c113cf97de8979e3686144ce01eed0fb671b9730d2af02fca9db", + "regex": "(?i)^https?\\:\\/\\/hgereqradhg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f09143feb0b8c89a7ba840dccb39f73b5eb8777d65a0cbd0d81bd96db7d6b2e9", + "regex": "(?i)^https?\\:\\/\\/anarxegnssyup\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8e92a015916a3895e940417c6f045eebe1dc9e637b158b550d246b27a3e01970", + "regex": "(?i)^https?\\:\\/\\/yourtigersandboxutjey\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "d125fee755e7172aea676ef151c4c0073c72b590832b5a86e7b0f20a7ed508cf", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "aaab319f090205fb5c73fab199cff925a75b43731ed0ab7af6738970e2c39159", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "354b679ad5b29b042cd0e4382de9fc15fbd308d9f0d41710ac0f214ac82b9155", + "regex": "(?i)^https?\\:\\/\\/tboon7822\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "85931fa5c2889e17e89d7c86b62a13945e59067d109a1e951a496419091d53d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a69bea52\\-\\.html" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2feabe8db682d509ff8d1c4e5f7ac76e698cad7211d26481ecdea6aa2de42cd6", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "36f95af103d3490f391dde47c93875a4de631e1250b78c5ad57d39b1e764d626", + "regex": "(?i)^https?\\:\\/\\/porno\\-hidden\\-cams\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "857136bf61232bf7aef545f249346e1bed615bd9a68a436f80cac26f9e293483", + "regex": "(?i)^https?\\:\\/\\/cams\\-voyeur\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9e86209967874b19f27e728f874cf415f40744884857e68188d89bf590e90c11", + "regex": "(?i)^https?\\:\\/\\/eaqghaqh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6230edda716db127e531d3734e9ca6370e01fe4f2e9cf080adaee6897a601fe3", + "regex": "(?i)^https?\\:\\/\\/tavirealisticssfzqxx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "59ce86c9a51a960b6438b64212056f73d2f7b072ffa50d396a5b91119d7fb9c6", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-fuck\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fe086eb24b93047be59b6dddfcee4b0558342827ce2286cec2bc1d92cdcf6d86", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "928ea1185153b635a413c1b735a05240d93f0c18e823f250228a20552743da28", + "regex": "(?i)^https?\\:\\/\\/forevertnrej\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2d68ea43a9f53c8346637a2e6163d20f58e3fda9441e5b2ca58a17c901ae4a40", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ae6cb91b58f5ae634669ed75fcda577a5c27b9fa316c53a3f0b600551d1d1951", + "regex": "." + }, + { + "hash": "bf933cc9f1f793689495fa9aba468037cc7c531f87527f174af368ef2f51172a", + "regex": "(?i)^https?\\:\\/\\/mail\\.143\\-198\\-144\\-193\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "805caf7cb74672a9f0d12da7a6432e25f40a2ccb6f7a7d9ae9c6d2dd0ae83123", + "regex": "(?i)^https?\\:\\/\\/eaqghaqh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "17262dfa2a8a71659533921999f4b5a2a9f719415ed68c99372bcf1789aabf35", + "regex": "(?i)^https?\\:\\/\\/wellcomepueeftf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b0c5268587db553f2536d64aa33f3b4a96e25810864d347d494a65c766596078", + "regex": "(?i)^https?\\:\\/\\/nighthuntermootqyq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "0b18405dce10a9bf72cfbd4620108fff7ce693116d83c6dd3bed33544e66f610", + "regex": "(?i)^https?\\:\\/\\/x\\-hamster\\-webcam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9a688d17392d1ac2b8405222003e258197d94deb0ce4594add9368ffea743fee", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "4ddfff26461f285915d772973c8a1e3963f4176d608868f7c0bf918be7d5a460", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2d7ef54a27d918ab11635244b2803df91c8a454fc170c8f8e42d8a96b27f5acf", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "24566c73f7ac7c8676fbef8590c37ab82f1b581dbc09924c66f23ab25f1800f3", + "regex": "(?i)^https?\\:\\/\\/slooshorgoldenelje\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c8319ef284a4bb158930ba5ec62d2006ccf74911c60160ecc9bcd092ee0bac03", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6659abd018f8ccfd673bfb1de507ac90a450976b7c69eec7efc1d9d3e391f0db", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porn\\-tube\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4998cd6905c588ce609e591cb19e6efc8fd4b76896b6de77c85b251351f6807a", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b98afe62be7b9fcb5842129f1eec6346e2cc01703f917349ea6caa998bf613f3", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0f9dc8a0225116c39d3b4de15e58465458187182fe2e3e8d172eae362612d55e", + "regex": "." + }, + { + "hash": "38b096f40a202d812849ff291598d570eede06e8cdf4b94896e13e362f6c9eaf", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "10699f9d31efad2804fb09a96cf9158451eee583a5027d5c0bc07283df733eae", + "regex": "(?i)^https?\\:\\/\\/att\\-currently\\-10\\-28\\-2024\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "01ec8dfa8a44e89ef89a961791752c6a0c5d0872f401dc942eb66ee5af43a2bf", + "regex": "(?i)^https?\\:\\/\\/anarxegnssyup\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f70d7555e845da4edefbcd723c96b41e1b959b035f583847191c8211c15a33a4", + "regex": "(?i)^https?\\:\\/\\/forevertnrej\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0fd5d198ee06f9cde11fb8fc085eb9c987506c248718e6d466c208c0b46d019f", + "regex": "(?i)^https?\\:\\/\\/eaqghaqh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "117cc605b7eda56acfb4448bee723bd1de642baae05260e3187f6252622001f5", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porn\\-tube\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5e8880155c3dea5f08e2175bdafe11a420e45a1f29975b00bf047900a4156f13", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "84058fa50518fc25f3a8f978b0cd1c69dbd92cd5035e9908e4a38b064aa37839", + "regex": "(?i)^https?\\:\\/\\/diwaliofferinsta\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0c76aa69a02c990535eba8837e2fc02b60b2bd6df4f12207e3f14f1c70736d5f", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cc5729f28a080bc515d20393fa8ba54506ee4caf8b2fcde5567cf3c38ecbc16b", + "regex": "(?i)^https?\\:\\/\\/oltnrxpxpt\\.com\\%E2\\%88\\%95qoocgmhqre\\%E2\\%88\\%95xyejufms\\%E2\\%88\\%95xwjhw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=wqamifosuy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6ca1f4026675f3d819fbb6c223308f81ec9149cb02f7f8184b8f698b5cbdcd33", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1e623260a138059f6206d2a6e4e24b7ed10840c82aad2150cb5b4b6915eac1f3", + "regex": "(?i)^https?\\:\\/\\/tboon7822\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "28bfae62859f3b636a9fb19a9f628fb4a0b1d1c626a228ac993083c90f3b7462", + "regex": "(?i)^https?\\:\\/\\/free\\-porno\\-cams\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e2a2bcdc0e931e8891386183954b9d9b7868455985acdb55b00e39d71abee14e", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c927f68ad6dd2c15253e2596f48aedbe769208d5f216f5b6884d22d495fd737d", + "regex": "(?i)^https?\\:\\/\\/instagram52065\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8477d7f8cfd87ebcc4d5c863d390f4a553dac3f8aacfaa9ad103a009b244f9b4", + "regex": "." + }, + { + "hash": "edd120867cb8ded6198bf359366ba57b58ac23078f18445b43c0d3c363c0306d", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0d1cde5071d740011cd110c83098ef276ba3b40658ffbda9b793f82a1a20af66", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e55993f4ea347e177008166cb3b2188666b070ed6c519d705fb009c04e44e24b", + "regex": "(?i)^https?\\:\\/\\/tbooon222\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "cab9eb136490b9098b79c06e60b842171dd22aa05bf340294dd8d4f4bba41c2b", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4eefb7857571d4559b51efc230f5453bd0aa11cdd9254c6eb39581c77aabd4b6", + "regex": "(?i)^https?\\:\\/\\/gheqahqah\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5065138be0cbcbd3c8b0c60ca04b574e82c06783473742218fc77a8b1bba922e", + "regex": "(?i)^https?\\:\\/\\/akirafolkwqgss\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c604969b2bb6491f3c3d8ee24b86f436ae2de48fd456cd93f899c1c1500c31de", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2e9d27909cc14f6230d948296d3382aa46706c91732a3f4fe3e4e044ae06b6c8", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "33e1ea984e840ec6fd191a12da78c0149d3a4a67457985ccd41a541cd09ce06a", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ce771a79f751fe5100b18aef07becb96e7bad159f885c024fde0594b24ae8e8d", + "regex": "(?i)^https?\\:\\/\\/vting\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7d105f37e4f61594c4c92df25c35718370802844d1368a4d4487dea2e74010b1", + "regex": "(?i)^https?\\:\\/\\/forevertnrej\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e187bdcf997af73f33ba4703094a8440efe4767a1f71ca488ab29f23849c8254", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c04154406fc7b07982f1d157f1a5c47d32998401e9019a813e325066fdd595fb", + "regex": "." + }, + { + "hash": "c5d372c280ae75eb53a55a0c94bf9b064a5631d2ac0d246d3375e8ef3c27a8a5", + "regex": "(?i)^https?\\:\\/\\/newtonvirgintankstmncpmo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "df57e75ed5521dc450f3d1c3f1456784d7ca6063fe2810e2e19e2ee4b87f21e8", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e2a3dc6c4c2a1a9e63b73306a745e67aceb160cc489150d963831cf380f705bc", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porn\\-tube\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d82526704f5ef23c2698a58444de33ff8779e7563bf06c39913015d80cab09fd", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1cf102e7e98ec9bbdf31e3baab86fe000a55decdfeacd5228a8d3f33029b8376", + "regex": "(?i)^https?\\:\\/\\/porno\\-hidden\\-cams\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c83f039d9cbe1416a7960e77f7704b74931c31d7d29e785001d63793f5b720d4", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5e00f591872b36f98897a6585918745126dc8b1e250a54ab7af3f1c3d66a12fc", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d0166cc6055d872e98b5c6de645bc1062ec5e80e238f2799f0cf83ea2328f6c5", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "874ee5908d2d04024af094476cea65f884ec0174a5b91f2c975fd16a148cfd53", + "regex": "(?i)^https?\\:\\/\\/tbooon222\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a3e339fdd71e8c3d4b7f576d9df209cc891515c637061e6e4244d6bff72e6a28", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8476a697433dfbc36b7faa2be148fc669fd1e6ae3317c350c518945283c7cb79", + "regex": "(?i)^https?\\:\\/\\/diwaliofferinsta\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "43339a1271da89bdcab14a6e3d266f6f1abcfc9eb39c49e96334c76a6b15c97a", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e9cc647a7f88d0d9050f7f1bc0a46492177c7ff4a6bec762ecbcf59648ca3cff", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ba67b31ef53280869897b9b9b0a5eab53c79f88b1f361790b3de0267452dee8b", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bf8b172ed044d0ff9e3e2b8ea2d9268097328767f94a14d290e1338e4e42b5ab", + "regex": "(?i)^https?\\:\\/\\/tboon82829\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bc34e64b0fab710ac4f212e29d0828f4ba6a7fa8aa13aba2ffec03100525467e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cc21bdc95e616985d5ccb0b7253afd6f8339245334f5eede660ab85c81e81f59", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0cbe3b3704f79c36894d6ff8c5a33f89ee7b11fbdcab6ff1f7200eded0eb68ea", + "regex": "(?i)^https?\\:\\/\\/ermingcavsj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "482433ad791d9127fbb07caad4018da3bf95c030b719f685040149442710faa0", + "regex": "(?i)^https?\\:\\/\\/tboon7822\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "117f3429bdc223a23b89bf5be9afd8cf798da75e23f809bffa89cec3849af810", + "regex": "(?i)^https?\\:\\/\\/mail\\.suppourt\\-coiiiinbase\\.31\\-220\\-17\\-159\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "61574c3b6c87f33902374901b37ae260c4e9dbb31c73cb9860cfd16e1349a8b8", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d4db5ed0788b1ce23fec5a7c971aa86e39437f16f543f76e356a2d907bd44057", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "c04d044dd61b1504dff33e5406e2eab048bda7c42db74022e3875382159e870f", + "regex": "." + }, + { + "hash": "348ccbe024ce027db9b7a1901fa9542e7c617d56f9cc7732ae7ed4981c55bb46", + "regex": "(?i)^https?\\:\\/\\/diwaliofferinsta\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "028074a65ded8658720b490f8aa9d79fe626ba9e8146a97353aaf484c65bacc5", + "regex": "(?i)^https?\\:\\/\\/freefollowerslogintoget\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "afba03ec7e94bdf2ce6eb7d08b0fae629f74ec8e262a77f7e70a183bff18c689", + "regex": "(?i)^https?\\:\\/\\/wellcomepueeftf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fba2fc13acf2e8915f2bae4dfbdfab3a6870b066d57d4c17a7dcce4b1b6a2577", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f91ce77667275f4e8ecd6b6e6776527c9072606de7591fb4892a824a89d800ae", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c143153ab5776dd19aa6194bb76cee6472fa6029be8e0bdceef34c8d93200394", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9690d146a201fbf18fb563331e6dc49a6c64a168ccb75808b2c05274d5421fc9", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7c40e6365d938e0595c8afa4077991e9f6506a02498bb62faa018aad0b1aed51", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "04d500196aac77eb984e805adbcbe1a5f6b74455256da44d17e4ca8403e940a7", + "regex": "(?i)^https?\\:\\/\\/hahahuhua\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0f953d486a1f5f9e8ff7f460c6261da53b2cdd6d20406f94cafee24588cd5303", + "regex": "(?i)^https?\\:\\/\\/tboonskhouun\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a58f3ea422eb5f25ba35022d3fafa95ebe8e7e50c19a8827cc07be15d61fd30a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+newhover[\\/\\\\]+onedk" + }, + { + "hash": "01e3ff7c65a52d6c97e224f90a9465a5fc2b8ad9583f88999dc6c516801fb005", + "regex": "(?i)^https?\\:\\/\\/slooshorgoldenelje\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "aab21ff2367cd720b7b52f58ee17d44e09306d1dc8baf27c9e3a0fdc36e04965", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0c0007610ad044677894d25d565cc0933ac31fe97a81e35b2058bbe9ec20a21f", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "923714040d016e06fdc9113268ba793fe1436a0b37ebc15fe81727d7e5340d62", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4ca176c06fd6ccb30a03e3bc18d589de4de2831f7e5de0a31f308b2b1c90f3a2", + "regex": "(?i)^https?\\:\\/\\/dfghndfkig562\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "29e73ddfddcf3747e01b50d8619a0d28c14670bf955ff67e64b79fe849df59e2", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a9232f8363e6cf739a3db314841cf42af856fda9a6b20b9b3ee4395feda61b6b", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bfdfcfb25eb7373e7f99c3712215232bef4f44b40a1c132bb93b470815443426", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "26a9cbd2049de03b193e49ef68f9892fba2d6bca1b75e06ddac661e3c27b4222", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4bb128dd8d86ea201062bd9b7a9e101971b28591b3501e9a70be3a9c1f6528a3", + "regex": "(?i)^https?\\:\\/\\/porno\\-hidden\\-cams\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ea0e1baf5a54e0623f88da8ffd3cc9720b10849e5f60726ba030188c2822c5d5", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2072e5bf226d940532fa5aca8d999e111ead56214b76871c622e46da2485fcf1", + "regex": "." + }, + { + "hash": "f06ff8b092b09871701aa8d2e4a086e8641dda9af7ccd93841e74c34f8f603f2", + "regex": "(?i)^https?\\:\\/\\/slooshorgoldenelje\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c42fc5d30b71f2c54f4ce1f26521d7e8526a9963597a1293206c9f8896c76112", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+webspace\\-explorer(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "16878c73c5e103af126681f2f1e652a4543794a7af4ae14db670ed8a8e148135", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "193ca7fd4ec16028f902c063d12e21559835991153059ebd839a8300639495fc", + "regex": "(?i)^https?\\:\\/\\/newtonvirgintankstmncpmo\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4c5b7d614c9157683ba824e69682d7d207dd6a984b5a996ee23efb80f60e34c4", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "438d4682997df042bb083686fca453c7c93a4415e9fef7854a7c7892be024448", + "regex": "(?i)^https?\\:\\/\\/nighthuntermootqyq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "761258792f089baa172d3fbb21739650096dab6acde4b933396eac4d9a62668e", + "regex": "(?i)^https?\\:\\/\\/free\\-porno\\-cams\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "008823d71008f5060d6c1baaed6e6b2769181b347cdf511cc3155448c6763043", + "regex": "(?i)^https?\\:\\/\\/forevertnrej\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "014ad0d611173a1ae3bfb240d00941a6e6d33a3e2447943c30070cccd78c28e2", + "regex": "(?i)^https?\\:\\/\\/xxx\\-voyeur\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ed8273a7a29e46fd5bbd3b58cd91d36813c812958a640bd18185cee72527d92d", + "regex": "(?i)^https?\\:\\/\\/kjgsmiutte\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0830d131e350c24a46a804bffd241903246c4cec9c8a636f46de25ed701bddcc", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b585f4a448873a0134ff4ba6a6061e99a5611b229c8245bb1a0efec70d001d5c", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "19e4532f1a0b505ef6fa7b41d2a35fcb6d5b9ab0adddf824149b18e43dbc7ef9", + "regex": "(?i)^https?\\:\\/\\/66ayujuadgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e55450bfc80d6b346782ab3a1299ba32541a3056a8b59c92b2c25fec98d6c7b2", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "23474e3fa6c80e8078373b6a609bec9a918a487b5cb49fa6e30167ea20e6e5fc", + "regex": "(?i)^https?\\:\\/\\/anarxegnssyup\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "afe5f7bbcff628b8136f7aa94cf7bae1588e2e132b639d122a1f442093a30382", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "31ab01fad4e3c49dc22c92aeabeb596e6edb2bdfc7694da7e77862a50af854e5", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d8b12dab3d36fd42712e2947939ce9da062a50f0c74718b185e79d1ab0716b3c", + "regex": "(?i)^https?\\:\\/\\/gheqahqah\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c80f0c16c014d92c907cea275539174ab0d2beef16b40c233f73faa03ee9f3d3", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e01225e98d0108894b166eb9165ee7b1942c553a1bece44de2e520d802ff697f", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f3901a833a04e5854e7fbb3c2e6cce3f53307e7b82722d0bcfe77afb0a69269a", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5a359577281aa709faf0879fddd515dada0633014825991f9be850ac0e65933a", + "regex": "(?i)^https?\\:\\/\\/eaqghaqh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "379729c96393b6fe5233186a54496107a7af9c152a66405c0e462cc77b894e9a", + "regex": "(?i)^https?\\:\\/\\/tbooon222\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7ffbc2246a95dd6e5b3a02c22bc4aee75952383ba5cdc51bf304d987943c5f6a", + "regex": "(?i)^https?\\:\\/\\/yahoo\\-104004\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "15941d2ee1c3e169a5378eb4d7d650183990c68195db66c4ef2e35e1d9f41918", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4def78252bd72c61ea6fb553f489980d1a995762966a17d64045b6b845f41534", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d7d00536c87dc889eb5410d2f1de0b6b314970f47829fe1f6615263dc4015526", + "regex": "(?i)^https?\\:\\/\\/newtonvirgintankstmncpmo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9f6d4221435962fe3b22c1492d47df50f1eb27776ecfcad07612a51fcfe4e6dc", + "regex": "(?i)^https?\\:\\/\\/crickqwelcerloen\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "49b7863f145f57ff1e468b3c3757d75dca5c72c84207f4159ab334ca63d367ad", + "regex": "(?i)^https?\\:\\/\\/tboon7822\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g0dxr0(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d4d9b4148419b0319a423f2e94c2d881d10dccddca7b8d43310251974c55a24e", + "regex": "(?i)^https?\\:\\/\\/b0saman\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "c038724ed7ec2e7c4bd4014a88a5e1e30749bd971a70bbbefdbbe80b00e50ded", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fb9f8f84e2e15e72c0f1dc38ee877cf43d2e00f51bac7332f82423a1fa2aec79", + "regex": "(?i)^https?\\:\\/\\/free\\-porno\\-cams\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c2fba0b42f322203e0edec5f18ccb75b4f3210e0f65bbc234206d76e9bae7a8f", + "regex": "(?i)^https?\\:\\/\\/chopperundefinedkizqk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2a887a566ac449f2fb4dc76f5bc7ea87d2029e2ed42811677ad60d0aef7ceeeb", + "regex": "(?i)^https?\\:\\/\\/tboon82829\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "354f48d080a92953c3604d9c131e8d1c1af6f72ad21373844b99913815696971", + "regex": "(?i)^https?\\:\\/\\/tavirealisticssfzqxx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "276bb93285ad29b41e3866dc155757c7b610af41be8cb7706b22eae5363d2b16", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2f8ffff75a20e99f89f805dd2ef7343fec337165668473083d6864ad8d07915e", + "regex": "." + }, + { + "hash": "8acaf660c4e600dae8be4d57866685c68d1fba2a02aa5857dc98bf511d9cd880", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=t\\*\\*\\*\\*\\*\\@t\\*\\*\\.c\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "315a92507130220815974b19ad030d803306a44b64ee009a5a44531fe5c0f788", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e1c77b5882b7a0fa6f7affd21cb80f2639aa5791247336c7702faf5ab176bc50", + "regex": "." + }, + { + "hash": "230c697e17fdfc4e439c62e168e98f9871c22c60059286461085dfba0138675a", + "regex": "(?i)^https?\\:\\/\\/tboon7822\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c3b2c935face38c654ee96405076e2d1ffd91107389058482a4b45f8619ab9c9", + "regex": "(?i)^https?\\:\\/\\/freefollowerslogintoget\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "aea827d7a8c4f10c62aa98c1c936958e4eacfb0a66ad43a2936e9f7e030cbc17", + "regex": "(?i)^https?\\:\\/\\/floomeeroblivionrevhbzw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "49aa3793eeeb2f2bacedbf9ec07129235a9ba37c561d84cfb477a29129a8626c", + "regex": "(?i)^https?\\:\\/\\/instgram6526\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "dd4c966c3a892c0715b07f197b69c12cdd25e80fb4c2d1748aa381a44d5fb7eb", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d81062f9ec75749de5920090abed44b63a8abcbc978c8bbde3de2ec6fff060ab", + "regex": "(?i)^https?\\:\\/\\/instgram6526\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "79eebf56753d69b249bdded10d121b7b8782faae88da804d8ebab40d8d25629e", + "regex": "(?i)^https?\\:\\/\\/hgereqradhg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8479f708b258cdb2658c22455df99325b0e9394033fd819101cc3990bfb6dada", + "regex": "(?i)^https?\\:\\/\\/porno\\-hidden\\-cams\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b0e5e7da6762129034b43bf24850a9433bee35ab822d10fad4e0d03f4209f2c9", + "regex": "(?i)^https?\\:\\/\\/hahahuhua\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c3cc033e63707e3dee483aacdcbd806235cf5a90d32889ce74182a8091050ff3", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "482ae1dc767dda357767ae5a18b1252c0163c529495b9a4ae2bb308328a5f38f", + "regex": "(?i)^https?\\:\\/\\/dfghndfkig562\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7f86f7f27f1da08494b0178d5d2fc24590a9439d8a91ad71a299cf6f6c3197d6", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "155b4da424fe7147b7ee5e296fa1bac46bafb5e8a5c945a9d47cfc2a05e0f2de", + "regex": "(?i)^https?\\:\\/\\/c0invasase_pr00_l09em\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "58b27b8aa57e2ecb653ddd274dd04bcdd892818736ec47287f48e08878160b31", + "regex": "(?i)^https?\\:\\/\\/x\\-hamster\\-webcam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f57ea5fd23c9a0e67aa799c767b386dc447ac009f3e4b964e5cb2ed42a5f644b", + "regex": "(?i)^https?\\:\\/\\/dfghndfkig562\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "587f405ac414ec053c813dba0e7fb35d4f07c15fbee34eef128d31ec477819bc", + "regex": "(?i)^https?\\:\\/\\/ermingcavsj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "87a1b37b57a4a00cdb0abb65daca9056b36a19aade8c8227dc5441bb831f82af", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e47952bea34c0f998f52bae19df0b482362be8f007beab478fc9455ebbe8e6b5", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "280d8c174ed05e80c50b09ec4b4d37030ccf5ada532fd900b9c8889cba71d8cb", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "641fba1220005b6c7282782f1177046cc84c1a2f8a261bad859591d7c6062a32", + "regex": "(?i)^https?\\:\\/\\/anarxegnssyup\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3aeb66cdccb02cd9536b08bdf8ec8c54f88e9370aac2d517f3f19e5c9cf81cef", + "regex": "(?i)^https?\\:\\/\\/chopperundefinedkizqk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "03eabff83428eaa36c29018ade3c2a1f5e02a86d99dc7faaadd05cc2f1dad0b9", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5085becde6ecf7deac2be268c12481f202239b66dcfa14ac2263bd7274896ad2", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c22daf9b7f13a963f73d8eb5a2b895616cd7805d4cbc2b32d1c384d8b62d347b", + "regex": "(?i)^https?\\:\\/\\/slooshorgoldenelje\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "653b7bf88104942a52cb17554d0e626f5f6f9c47aeaf563ff0d7debbfddf32f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c86bc48cd07ed5103b4b2c4da30ef25e91d6b2f6c334690cd9ee4bac75645f6f", + "regex": "." + }, + { + "hash": "5009196d3393b377d478e16252bb49965ac680567a291ec01334ae162ac985e9", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ccc0fd431d6888b86894b68dc4100a21bf101a86a9c7b15d61b7324931a8db9a", + "regex": "(?i)^https?\\:\\/\\/newtonvirgintankstmncpmo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "de9cd2a76540078b7d8648e049c448c18fdd1e884a4268e22785d65ce29dd616", + "regex": "(?i)^https?\\:\\/\\/forevertnrej\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "380c135094ac2ed45474da71c22bc90805183bc2153d928c42c764323d325d43", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porn\\-tube\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cbcf6e04583c1150ec4fe9298c9a289b7d935c3f37ee6a44d6e99a707bfb1089", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fc3048476ce35d204b7e6ce8819197a58349fe6430cf8bc536cbf1bf6377d127", + "regex": "(?i)^https?\\:\\/\\/crickqwelcerloen\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "20825e0910b2f4bef65bafefb0c1c2e8bfe54723612899fd167be4693ad686a3", + "regex": "(?i)^https?\\:\\/\\/akirafolkwqgss\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c2c2e8d54858ba73b0cb94095f303c903bf2070267e4967f2c953448f50ae83b", + "regex": "(?i)^https?\\:\\/\\/hgereqradhg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3e0f43a067937954633b18c67fa77d479e7e8196a957bed1161f8f86b859a642", + "regex": "(?i)^https?\\:\\/\\/dfghndfkig562\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "277a2477c1c903cca1df58289f38c7d1077c1921485993f05539cc8d86f362ca", + "regex": "(?i)^https?\\:\\/\\/porno\\-hidden\\-cams\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "864ce6e04968d4a6152dab76565844ddfe227e4dfbf27489ab9d56abfe7bcf21", + "regex": "(?i)^https?\\:\\/\\/chopperundefinedkizqk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f1f194833d47c15a7cb7cab67a2a52319f8543ff1b6347e5c1d800f76f62b7ad", + "regex": "(?i)^https?\\:\\/\\/diwaliofferinsta\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c14349044fa847ebbfff3a793546ac743b9b2343e0e79731b06bb7a87878a81f", + "regex": "(?i)^https?\\:\\/\\/instagram52065\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1tmadi(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dd33170c44f94bc43d61d8d40639bfb7edcec9fed82db5b0ac87c80476d137a5", + "regex": "(?i)^https?\\:\\/\\/tavirealisticssfzqxx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "549c5b5695e514846aee6b526d7c21c183bb2a0d7e7e3ce575a181327c553e73", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "53222af909ded4226580d6fa477a520bfa8c2bbf9ac32072cd2befb821c2406c", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7153e642562483423a22d34fec982e35c8599420320f0940874495c5e24d7139", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ae0b59c6ac191fd431ecef7071464311979806f6a48c0361296dd09ebbb5bd2c", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7763c645186e719f9d95734797831aadba92d9c4645cd1d7becbdfad312ccb07", + "regex": "." + }, + { + "hash": "67a4e3da386b33dab567a9b75dee55e99e5a6a0e429d2b3be5cfbbe2299f3cc4", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0d1585259790fabcb16341d209369e9a02fcd1c575fd6bacdfc5daec0de693de", + "regex": "(?i)^https?\\:\\/\\/hahho\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4573be8b9145ad5018345b3179e3e28026721eb04dea443b7ebe8e4cadbd99a0", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "aa1590b06d17c4c3433ac447dfdbdf0b38c0e91743990f507c0af5e0fb7801b0", + "regex": "(?i)^https?\\:\\/\\/xxx\\-voyeur\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f2ec24d53956a17e586acf1c8c353408460b5c61203aeff36cc60bc3633a7362", + "regex": "." + }, + { + "hash": "23780879c6fe224dcd61fce245c1705ad75235a06ac2e2c7157e2cc884201060", + "regex": "." + }, + { + "hash": "4a9317a10aa7d21b4cbb36eb7aee14aaf2a0d7fec1d32b895190241b1022dbc5", + "regex": "(?i)^https?\\:\\/\\/chopperundefinedkizqk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a22546b4aae9a34aa5d33c1cf139f36003925a5397cc8762c05c666aeb0df621", + "regex": "(?i)^https?\\:\\/\\/hgereqradhg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "08879b3f4d3e13edd75edf92820957f28c22cdbf1b029436d54b1731c328ec91", + "regex": "(?i)^https?\\:\\/\\/tavirealisticssfzqxx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bd88843fe2d390a0cd8ecaf22394fd2ebaf114534b71295d503dcc3895b53ee9", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe219545070285475b003283c2e899baf32b5998d0bd2365d3556c5ed090e233", + "regex": "(?i)^https?\\:\\/\\/freefollowerslogintoget\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7c8153d0c513ffc36b87d64a35e13010a46e6e72c92ee26d87ab74c4833f6bec", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "07d7235f9b1af0a58cfd10ab04b2feb8e99581c1a78cf61591999aca785e7145", + "regex": "(?i)^https?\\:\\/\\/wellcomepueeftf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c462ef561ae82df5649a3420aceebbadf3f6aaa79b375c147d10693f7eb7519b", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1b11aaf979414875a648e3838b1fd968c85966fbfb66ff17255936d597dfd99e", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "06590449beb87541c7557fcba370610c1f549939280d03823ea6ceac43e4aa2c", + "regex": "(?i)^https?\\:\\/\\/cams\\-voyeur\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1721e44c86df94f70b759a6262d96aa9a2f937f17a1e9d92e7d2959b3763e515", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bcc0ecb9af80fb81895a9c9e85c835896279572950e54ad50c4ee0639fb63964", + "regex": "(?i)^https?\\:\\/\\/hahho\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0eabc9a390323fc128cc060037b65a659ff0d22129a255257313646e307c31fa", + "regex": "." + }, + { + "hash": "3dc5008e09efef0ba3adeccdbb50af2b8740af51e2d99067567ceb0737b1f5be", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6ce61bed042b3392c53c7ba42c1173d177d2d46cd987df57be484d79e8153b5f", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0d1c34b0bb23465193a2e8f16b5c036387a138fdc991d3705b3f483cfe1fafe3", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f5617a37fe033a50f4af639b1010b9cd20a7e42a7be0c23a92d12aec5217d6dd", + "regex": "." + }, + { + "hash": "380c0181525fc3a619f3a14c0d7678a925a2652e33fcb268eebf5729712c3020", + "regex": "(?i)^https?\\:\\/\\/yourtigersandboxutjey\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a9293bee4f1b302499049e2629f909641f29a710108abe8668cd0218986d5207", + "regex": "(?i)^https?\\:\\/\\/hgereqradhg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "13b7f8e4475f576d457f24064d02f7f8f77feb9a7f9724374f79035caefee533", + "regex": "." + }, + { + "hash": "cbbaf1945a7f72c945e0afb990bbb21e269156e66e1ff9e09fa77c15103d05c3", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c254118a4eadc88a88fc5ab4e29d2379ac460fff30cb7d8837a051dafcf44014", + "regex": "(?i)^https?\\:\\/\\/tboon82829\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0fcd294b1c0fc2ee5b75060e85972dcfa4b8c8fb0c07e53266e2a21829a0f8cc", + "regex": "." + }, + { + "hash": "df946c5ae99c095ebde6558238e0cc30dc4b8f9bca36715d7f97901fc82f503b", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "19a95844b1f270883db3a67fabe374c70c2f1acc812076079a4fff9ef90e481f", + "regex": "(?i)^https?\\:\\/\\/hgereqradhg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f10b6b07a6fe3763a4f262fbef774b5acaf5c2668e4b028f3b1fd52d147c9e25", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9a04de64575065a88020d3cad5e59f2e70bc302d8285305b1b48200087e41e8d", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?web132[0-9]+\\.cweb06\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+fhdjhfndskmd" + }, + { + "hash": "67975138b114312316676f6dfe8e7f65feefab46070dc523aa1063d5afda7c43", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4f4038e006cf22b2d2224af2106a42ef7693de1886f8dcbf3f85d89ecca32fbc", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-fuck\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7792bb9d652601a71439e3faa4c31252b52eb9edec684e6ff2e9c05621f9c798", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a6010ba67d69832884c18198cff06221ce0ffcf36e64844d1d74abfec0d2526a", + "regex": "(?i)^https?\\:\\/\\/gheqahqah\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b0e70840f81d35e9ed285868ab238f3395aa29d7d4b7304eecaff64bbc934e79", + "regex": "(?i)^https?\\:\\/\\/hgereqradhg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c43364[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "99ce1d4aef6f0b38f8ec2b16bc3d3e2de73e024b3eb17a6f20c89189b1ae41e6", + "regex": "(?i)^https?\\:\\/\\/eaqghaqh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0a929c6001b78bffaae92d435c7f8f3e54bae94c334642e4f30e8301b6b37a0e", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3280ebac9bad53cb678f317ae3bf126ffb8bc07700c2408e1c80085d519efc3d", + "regex": "(?i)^https?\\:\\/\\/diwaliofferinsta\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c6bf106f79aab2cd6b0c78b8145d7189d121b55ca6c0a5c8991f6ef6ece0e8ef", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b8dc209e8a8779a622a367ccc4ff2ce0ae2c3b05c0d620e73f5755381dbdb726", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "00ee72452c3a2722278c3f653718239d5e72aedb39d45f53f555357707ae3a0d", + "regex": "(?i)^https?\\:\\/\\/yourtigersandboxutjey\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f329f4dfda2ff7b6d43c5486981fa549a473cfaba125e6cabd5a118adab8d357", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3f6e935f9b4ebfd3c5c344b1bc37af3666f4fc5eb35b330dc9c4682068e5de2d", + "regex": "(?i)^https?\\:\\/\\/akirafolkwqgss\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dc38648b83bd08855e12d8145c801648f2eda39bae6cb89685fb5a4050825ec3", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3d68d377ee7a8bbbe89500e841305e1adb0703b93308970184973902a4a3f92c", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "50ab6890d5574fc16ef21b5b8c84681fbab6755b3fed81e40437dc0dd8622f50", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5e7190a3660578e48c3deb145301b6ba837fd68d65477241741840ccba7dea77", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5706ff7d09e4e01c9c2b64979417fd13de1874098222825e88c7f3352314fb0d", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6125647341efe7f1ad8f98c06ce56f4f7becad12c909fb0bd006f60812ee91c4", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fd033ad7179f195081e3452db6e399d31862de4f6ca0c90da6d5c9b846ee6a8f", + "regex": "(?i)^https?\\:\\/\\/free\\-porn\\-video\\-voyeur\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "81ad25e65ce23eb5a235d3dc570c60483363be91f3af2f22086e36faeb0ed517", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "70a904cde680d2235626dddd0a21d8bef62e76e5e6af6d676cc837cb701b8300", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porn\\-tube\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9443b6d34092ddb0d20d3fc1d1aa94365cc542f859c088ae8f0f107ffaa4aef2", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4cd5fc0ccc3e93f93131d414740260e226e944f9f55fca30282e556172ac8b64", + "regex": "(?i)^https?\\:\\/\\/akirafolkwqgss\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a730ad5902e7d37a7e7a3b03d19a2d0105ebd14a4cffdd35bc47548f97d9b08a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oyMDI0MDkyNS4\\=wIKXMDSoASAFQAw3D3D\\.html(?:\\?|$)" + }, + { + "hash": "92233acf8c3ed1fdd7fc6d036a3701db3469e9c5e030edd761067c2ef59bcee9", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6aa9e831296928e932fee9bfdb949cbbdb913a32c11034009c2633c98abdedcc", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "20a07d9f45154f78408b7c3910883f3655821af83ed9e5c2c2f39e2c77a03e30", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-fuck\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "da6584e45df4462c14740c0704e0173017fb9587a8a1f12c1e09cf80dbe9007b", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "814cb9a08a14c0c2178bd954694412b70c62a0e6ff7a5b735fb9e0cbb2993f03", + "regex": "(?i)^https?\\:\\/\\/tbooon222\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "230f8265d6b2de107f018dd0ca821e38fb681e347873f411fafa02acb178759e", + "regex": "(?i)^https?\\:\\/\\/ermingcavsj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3d711c1e5a08301639a40b43c02d6ccb6fa5ccfb0e20b479e26d8a049374d14f", + "regex": "(?i)^https?\\:\\/\\/priyanshu\\-coder81\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "25d7cfa83af5926bd3682af46ad38107c3badecd5bc74a9cdd9d8dfb6e7243b4", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "877c531b209808eb4c513987fb95baff27e518d7ec527bca59c8dfcc9c5d6124", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d0b4be48a1548d7d1b6c9a098ef57dd0a357d9f8a4ff2aa2a68b5747317ee97e", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "294b206b891a1959dd2c0d309dcea3fc25aea08351a1a64b77af55c47ba4b094", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2e000b062ac0c94ecf04733e0ba1afdf33994ea187a5f9360e836d2358f8c61e", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e829d7ea5f720df693dbd7a9d70b10f14ef3f5061667e738a82ea8d292d1a100", + "regex": "(?i)^https?\\:\\/\\/akirafolkwqgss\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a7f14edc4844ad686c5e9914e1931887e542c142ecfaa0d9cce4a7f7ca8a5d48", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "27d0c037a277edee22e8086b97e29976b6518a056024900c1b5a461079093282", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "152113afb8d431d27e8d63b29173c84a12eabb48dd45380677c5311fbd7481ff", + "regex": "(?i)^https?\\:\\/\\/akirafolkwqgss\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c367fcb8604dccb5e5e09d65b65ca55b74fadebc8b79d7d894c770349793e63e", + "regex": "(?i)^https?\\:\\/\\/free\\-porn\\-video\\-voyeur\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e6db84551ddf87fe5de0a5e7624f03fd941c4ae606184ee5e2769f5726d03b6d", + "regex": "(?i)^https?\\:\\/\\/ug79oihb\\-iuhytgfuie3\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "46a700e416272d0ba96a06c31fabc7ba0022c5c94089dd22a2274d6688373800", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7963b91bc56fcdba294af5580d3f13750a8abfdecc1d5ba60d12ba9207a7e665", + "regex": "(?i)^https?\\:\\/\\/yourtigersandboxutjey\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e9ebeed0c04226e73cb733508e348addec66e8fdb7eca01ea4abb6b428629910", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "35af64c7ca13c6cb2b9b57b3248470cea215781fbb11edfd4f8f378ec8e2cca6", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "50e182d6e02ab55cc17d178cef2c5194ddc8803f954f53f03825f7f669be8bbd", + "regex": "(?i)^https?\\:\\/\\/ermingcavsj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3b65118b07992acb22ec7fd22e38111ad369d8ad7a3915666c4eff4e1a2a2825", + "regex": "(?i)^https?\\:\\/\\/eaqghaqh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=e\\*\\*\\*\\*\\*\\*\\@m\\*\\.f\\*\\*\\*\\*\\*\\*\\*\\*\\.c\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "3c18a05ecc4a8252e26f2c4d6d603a26a12631df5790374fefdea83272adaf0f", + "regex": "(?i)^https?\\:\\/\\/slooshorgoldenelje\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f560488dc14bd832e32c09144f6caf373ce9d65f6c9e821c4b8958ed8fe42e91", + "regex": "(?i)^https?\\:\\/\\/tboon7822\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "77d2599d3f012864784399be2ae63dbb69b3e0a41a1d3bd7ae52cf527040078a", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6713b799ba467eb54b8f70d94fbcb48df65b7688fa0cb46451ee1f5d11cb78eb", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3af53f10f302da4e8357213e46002881224c000d75aa81c81aad2116b1b22ba5", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d639ea06682d2103620ad04c1ee29263960a3355b1251ae5b8a37b453b20bb5c", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4253b02c1c2b0532e88394c0d917e3df958fd6e723d30eadda10fab595854b48", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a988e16cb53d9e37a4063b0268cf9c1fb9eb8fd1d52132de0e8afc23816b27fc", + "regex": "(?i)^https?\\:\\/\\/x\\-hamster\\-webcam\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wzx61f(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6e54e83ec2558317c9c84deea991fbdfc7e33adb6b2461e00435103da9d4c31e", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-fuck\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e82933be59058f7324c7d05106340d0721cfb9082ef98ac165150af5784cdaff", + "regex": "(?i)^https?\\:\\/\\/dfghndfkig562\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c558839a499ae96e486addd8a4d034f8c1249232959eb019f8d8c53cb334d4e8", + "regex": "(?i)^https?\\:\\/\\/free\\-porn\\-video\\-voyeur\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "278c959a5d8ee7b70d86d2a27bb96068630215ee78450cb5f9e1452db067a191", + "regex": "(?i)^https?\\:\\/\\/wellcomepueeftf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1bbd31ab8e00e293ce6a0fba2d4bb3d150a57bec2adf4c3f92a7df9e96611007", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a78c252dc07408845fda54ec87cfe369e555a59148a193317b1f556c1331180f", + "regex": "(?i)^https?\\:\\/\\/instagram52065\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a513000bff3d017db7fbc2d76ca0d5b3d8f3ae3426106b3cd27b520166543c06", + "regex": "(?i)^https?\\:\\/\\/wellcomepueeftf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4d40197bc6a3f999f5213ecc73921eaffc63787e87855d1e57c254ee4480ea37", + "regex": "(?i)^https?\\:\\/\\/margetjhkwzu\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b55db98248225d42f64e899f73dce1bad96b026391ef1f6a11e9f82bd6e7c6a7", + "regex": "(?i)^https?\\:\\/\\/hahho\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e79ff9885be010a4a9f26d628f59fd470e1ed3f0480714f144b7fda9292d1401", + "regex": "(?i)^https?\\:\\/\\/slooshorgoldenelje\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "30c99b3e5f455c461cc723450c6948a7898ffc301d08330e10010c705c91d11a", + "regex": "(?i)^https?\\:\\/\\/tbooon222\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8ba10a866abc7317b55291795de6ce7953eb142399abd674a0b5a3447abed4ab", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "09b3d1dd18c6cc713416b336ca9e40940ac4cfd5f09f0c7ebf122469781cc89d", + "regex": "(?i)^https?\\:\\/\\/floomeeroblivionrevhbzw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bb467234d2e4ed30be22c14bc786f80629dc8d8a96f80ae16992380356bd61a7", + "regex": "(?i)^https?\\:\\/\\/donfasr995\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "27efb9eafc3443718c2f37109a95847787460031dc7e755d6ba024bd6b3c008b", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ed5111dcefd8764f0955a53a1c3548eb8ab9dc75bdc2e93a68ef2144e262cc10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+1[\\/\\\\]+click[\\/\\\\]+W\\-2DZXPxuxjD_MQwEsULWj7yoVhaVDccYuZ0F_9kNkyMvKkOUh6dlydDty5hPrljc119JXj1Mgmm17PpwHzNPXZOD7lABn5hNpvrk5I0J40mbu4I5uVeW9kvoEBj\\-FJaepwL_Sqk6_VuW\\-IcHLqz5YfewDDW1It4TlGhMiQ9_qmaolQdh6lzXXc_TNM1Eu1CpCPIpe9QUBqhqEi93cdibAFcSG8pdafTIQBfcvZBlR3HHGfK9S3D2AnBU3AqEuM1Z0NrqDPDJgZYeW9SD8f9JF06Dsdzh6CPCAFpXaDw5nbPMLfO\\-O6kC9t8mgr5wdcIoBFQM6LpNcjoPFFdm5Bi9Mg064e6UasYdMm1DNF0SOy6MxKMoPzJ\\-cJ_bg5Vr4fxIx4iLyCxEFk1a_2cJg0BgxyvlcYCpGM5SK91L8FcHWIl\\-brYUD65JBcyML9dTJr4gSQXFyxUgvXYu1lLWGm0duWgfHcdIWAlXi2ymvvhyNO0V5cd0LAA0AHU9BxNwEY7NNVOdBW5tCj4bTjAhoBnPwm3mMtRGE3O3\\-QMMby9yJUvsbnRg9YDhk0PKMRiPc1Eh9CFj_dLPJppjXU__mGl5xxugR3E9EctsiIL\\-Gf9DN4epLV9J6ShYM\\-Ks6N_HNMzploVa7AkuRnErxmu52\\-7D0pxo3llfeQ392Guf2gJIiT49WL5cA1akC\\-23irj9Lxs5220QSSL_w2XHnA5iOQGtT8Xz9PoJbTl1vdyM5o52JXcEAzKzSoDDZxYuG\\-YceBM8dMbd47HDDiNzm90CNcv473QvFSC_y8DWRPgz3BwfddAjvylVY2lHLZZGzVnvk4B(?:\\?|$)" + }, + { + "hash": "f7cfbb133d37d56d2f75b0038db3ec89f80bb392aac6a26f1a9185f8eb1fb4be", + "regex": "." + }, + { + "hash": "6a5fc662b2cdfc7ec92c36473af986df6a47d724a611765d657c0761ea248b93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?hqwvMTzBWesd5H$" + }, + { + "hash": "93b4d87439ba05aae3a70a80675c28bb4f93b981d100a7ee716c583f949d56b7", + "regex": "(?i)^https?\\:\\/\\/kjgsmiutte\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cf4bff75eafb8d830f87a0dc723e442c7ee4ff96dcb29c9daba035ca964fe683", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "93bf1de3bc6a42a74ec8c72d1b67a31d8ca005b15f24286b96d79ac06a78cb72", + "regex": "(?i)^https?\\:\\/\\/free\\-porno\\-cams\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "aedeb87ee7ff16fe2901beb1cc0c47ddeb98d7eacafc753eb23eb5caab7ebf00", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6646c41875201aa058eba12ad4920a26f36c7b6b0082a3a4847228d0a19d8e34", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "75ab3170100d7ab20086c0a4eb6b33233f7dca5c6304683354ea0b1f2c5b1003", + "regex": "(?i)^https?\\:\\/\\/xxx\\-voyeur\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b08fa8f511ad43cddee0defe1284393c0c5ca593033dda4bdcaed888e5440537", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5f62138fe6e52469f455d7353844757b16d737a607cca7491063a05a8a90adbd", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d0f8f77f2ca1fcd239c7c1c9ca7069030ab9e2b868f404282e944fbc737ea0ce", + "regex": "." + }, + { + "hash": "03f6dd92675e1a828f46a17991aa7ba7f6696daccef12d370a152eb475936a65", + "regex": "(?i)^https?\\:\\/\\/instagram52065\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3690c3764d9010be4a75fa54bc32eab630edbc6430d2b9ed0324443f5b516989", + "regex": "(?i)^https?\\:\\/\\/margetjhkwzu\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7b40e7542693e98d9f53880be4b7f977eff0f769cab14522e2f60b833af3db36", + "regex": "(?i)^https?\\:\\/\\/x\\-hamster\\-webcam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a1ea1475f9b7cb85e015450d962ce6fec0a04832ac1e8fe2eb1c75df01cea090", + "regex": "(?i)^https?\\:\\/\\/tboonskhouun\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7c533d4fc7feec4cff6b67977332bebf2bafb4574bec07c42d863125c2ec3736", + "regex": "(?i)^https?\\:\\/\\/chopperundefinedkizqk\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4cec16e56e01c92cb9bea340ee1baf8bb0353047f906633f2c3534bf030f919a", + "regex": "." + }, + { + "hash": "e36a85754caabf60fb3a2835820233bac9516ae5e5acdf451bc24c73922b1916", + "regex": "(?i)^https?\\:\\/\\/instagram52065\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d06468ea842fa0fd0ea24e917351a53b5e3ee8a668643e8bf7bfe3f3c946ed60", + "regex": "(?i)^https?\\:\\/\\/cams\\-voyeur\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dcc65cdd4c66f9e5bc47a90c94d279f7096e798d4c14abaece6b4f28e15969b7", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5895803218cc201847e0e031f6b52e2c201ca1feb9b80491161bbd64e0533b34", + "regex": "(?i)^https?\\:\\/\\/xxx\\-voyeur\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cf1fb62900be70a8f98c21e768bb4c958ebb6a6cac48ab0d1194dec036905d3d", + "regex": "(?i)^https?\\:\\/\\/floomeeroblivionrevhbzw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "86f2e7ee03bfc0f90c3d8391e241aced789575b12c0158d52353304e21fff8ae", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a3920a326b157c932346029bb1e1092999013f9d24aa2637cee04530788b8190", + "regex": "(?i)^https?\\:\\/\\/tboonskhouun\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a487388a7c34d5d0c87576e955ca7378a1b41d9576495e00cb717ab4acfcb7fb", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "313eb367ab1a9a33172f0ac05d5fa1aed9f0b74cecc595e492c935de4d4cd543", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e5b847b380d2c142876e938b4fcfe6b388249292378b12e36ec45b172728ec37", + "regex": "(?i)^https?\\:\\/\\/forevertnrej\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b8c5c09c5992dded98f28c23edc96fd8d520bcc1176c2384d48e862fbb3a8122", + "regex": "(?i)^https?\\:\\/\\/akirafolkwqgss\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "35112ba0826d0961250efa37e07f0e135940f11dcc5d72527fa221719c32a90d", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "845d0451b24c343e7f526755235d9a585ae42cc49f3a9d944f4bf0ff38b9e734", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-fuck\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c86dedbd195c69c12690cb9621d400ffdab9db843472c343820e4a2016e5aa66", + "regex": "." + }, + { + "hash": "482a46fff594976b5531a445a92749375b90b55a6aefc0806794e591c3bac4b6", + "regex": "(?i)^https?\\:\\/\\/pub\\-c706d8fdacca4731b02109955c249d1c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a9d3f44a27d2c75ef925f62feae4ebc0adb0b24d99c6e5c9aa42a9c633a474a0", + "regex": "(?i)^https?\\:\\/\\/instgram6526\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7d0a56888d3bfea59a28cb26d9415b26687b5e455f6de521609d2a1844d74f61", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "361e7c769c92925ec41c49b02c92d3aa0636f7b97470daf8165467b4aeec913b", + "regex": "(?i)^https?\\:\\/\\/freefollowerslogintoget\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8d174a815972469a403a41c1be581ccf45ae4cefb54e8830ef24eff232d8118e", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "111f1522b8b1eef78cf6460f3166735c6a509cdb3faa0a65641ecc397663d37a", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "df898ac034e3222e226d434b68f1935893461148a943bf36a03bc1b78a484a2a", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "24955fcadeb2dd2335cd78e57fbb17372b0560a35ea1640e4707de34fb023e70", + "regex": "(?i)^https?\\:\\/\\/chopperundefinedkizqk\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ed8085be09fef2bb4df16294b267a7fc5a65220f4464a00b109c24222db8693b", + "regex": "(?i)^https?\\:\\/\\/forevertnrej\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "12a6f094db7810bbf1932602189f454dd8811574d278b09cf72d0966185919d9", + "regex": "(?i)^https?\\:\\/\\/gheqahqah\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ca708f198226439b53a028a7be9a1b83add8fed9350a697a4efed5851be64846", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4b43ce2d595b721506449666bc83fd84bf2af1f761f31d54642120a559fe930b", + "regex": "(?i)^https?\\:\\/\\/dfghndfkig562\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "38b48c2087e440ef219afa9609dc9d7eaf63871ab395ff44c50c3a872bfd7c05", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b1e1dc3d9bcf183432742513d6b8e15c789609b71df5ffca22c81aeaa7d451cc", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "979e2ad0978b7e34177e89c8646076ea132aab268cb4c00c7bccf28971b6ab79", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "df2cbb3013294963fe10489ec7b85d05fde17727a1aae5bd0b27483de589f910", + "regex": "(?i)^https?\\:\\/\\/instagram52065\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "28275552f9d9bbb0ca29bfb331484bc7ce014765aa75360a2531c82bb1145858", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c107a064ffa83474ea1b74cb7691dfb74912bb79bfd739e1743b91267b19a287", + "regex": "." + }, + { + "hash": "8f8c20fc00f3c65feea2f3f96e8608dbc1f87258c0df8546585dcb4c48ade623", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d285f1f9c86844bdb7a2696bdb396ee432ef52fb8d460a88064e98ede754b3f7", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+d8ouxa(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d43e944a3fcbfea7af8cf662bc96993f4f2a3bd62cebea31af535abb2c5ad00d", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cae5b3227119363a2a3ef7a4ac576d8a1bd6ffeec4d358684e6ded774d32cd3a", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bc34e64b0fab710ac4f212e29d0828f4ba6a7fa8aa13aba2ffec03100525467e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "786d9a6cb7530ca5bac27e0efa93948e0f07e48d2b275d09f256a6590481df92", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "442fd2ecafd025987d8819ebc6d6fdbe8bb5fe95a83328ad47ce0d5468cfad88", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a574bfbf15e2d12295d21ae7d73cb52deb741c9af80eeb50660ae6c8778272b0", + "regex": "(?i)^https?\\:\\/\\/nighthuntermootqyq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "814adf6b13a45ff32950e6df6e258d7a3eebf9bd64ec1714bdb5118b6cd06de6", + "regex": "(?i)^https?\\:\\/\\/instagram52065\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b0d7fb6e5d008a244fac8ee48ca8de269e2bcbd29549c403c5105d2ee9a63915", + "regex": "(?i)^https?\\:\\/\\/hgereqradhg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "77ba3746cf7ab988eec9e3c99314cc8d898f750f678e57ef349992243a131d7b", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8d6482c22a82bfd3e5e8cd52d58f67bf0fdd700249cd0b0d51973a4dfcfce732", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "317d3d863c17926d2be5f246cd87b9c881d0c92c787a55970c5237aa76a521d7", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d80a6c681e7e97ab286a3fe2892052362bd2d81547eae56cf5cd85a49fe00ece", + "regex": "(?i)^https?\\:\\/\\/gheqahqah\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d68998bc7ade6ac780a0d763c64e566f5993dd0ac43c25dda7c39ec8eea33e89", + "regex": "(?i)^https?\\:\\/\\/pub\\-f55d7d3f45034f9cae38ea412cf33088\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "76161be953c0a24d58c7c17328b2c4e52f62d4aedea024f1dd94bbe2a8f963e2", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b46e6c7ed93dd228393b610ec500f44759aa5126f24d9be905ba9794be3d7da7", + "regex": "(?i)^https?\\:\\/\\/gheqahqah\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3a5b5970f6b7c778b9829c8f47fc3807956fc95040515a5fcc8e449bebbbd17e", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-fuck\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3c0998d5a7543c63cdcbd66a199a4e8f4669f49b6fa8af6f67682aee45e18ba5", + "regex": "." + }, + { + "hash": "bcfdd7148a3ed6c017ed500a586737166f47cd8fab728ef82d738e803eb1854d", + "regex": "." + }, + { + "hash": "5965f2547cd8f60a91a78d7384fd147aa83a30620775aefae1b452ddfba8d254", + "regex": "(?i)^https?\\:\\/\\/newtonvirgintankstmncpmo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "82f7e2f9c27d8923c12f567de48a4c0daa0e0749993e8649f3ea91b42fec7108", + "regex": "(?i)^https?\\:\\/\\/hahahuhua\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cbcf4e0eebbe1c3b79fbe69560076f65123e0eaf094ff7802043346844e8b57a", + "regex": "(?i)^https?\\:\\/\\/free\\-porno\\-cams\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "74063bbaf0c8d4f45851facffe4817d7ded1db464ea693a17abb891bccb356bd", + "regex": "(?i)^https?\\:\\/\\/tboon82829\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "556c7f8ac672d3032e8a57916ed03bea216e75b8de07f2f62ab388ae8a85eace", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5895ae009db6d0e6b3087d64007fe32d93d8d3e7f32b75f4baa98f2d2a24a01a", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "49762c63cd8b543dc3191b36b2f930d42182f1f7f49679d4d2820f58bfddc181", + "regex": "(?i)^https?\\:\\/\\/tbooon222\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b1354b34c17514308b4754eb9cef52f1844986edea9f3c5b8e1fc76a9b213126", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d2c77dcb1238135963382ed600dfe12ad3a6f86de50138a1ad0e622d978323cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4145691e9d2be034446e1cc6d64abddce24b6adc559abb7a8fb66a796e90ec2b", + "regex": "(?i)^https?\\:\\/\\/free\\-porn\\-video\\-voyeur\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ce5e43a0832ca9e4b6037220a45626a3036a54a68c809f72e1e9eb39c9447991", + "regex": "(?i)^https?\\:\\/\\/instgram6526\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c301811c1a12abb59abdf8c835d661506e070bf0818683c3b0167ca90ee4e336", + "regex": "(?i)^https?\\:\\/\\/crickqwelcerloen\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2752c08ad5e042318cdd9c394601758e1a72d00dc0291f7363222c654127acaf", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "493218eccc3d32d85b7cf01e392b23ec147963acf70b711498775989aaa660d6", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b4db96092e51ddb18c9aa451c7a8a07a664bf3f8e860c57fb767b1f287dacf9e", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d9fb2a266da3e7d05b4eb65ef7d93bf7eecb633b076b4355adeb819ef9a61cce", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ca211ef7ce409c5333689a9a9c1452b8ef15598b0d3381f63fe055664512be42", + "regex": "(?i)^https?\\:\\/\\/anarxegnssyup\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b013d43df3d0871ac787f2e7ce2cbee38a38bf2df2b11f40cf6d9a6f560044c1", + "regex": "(?i)^https?\\:\\/\\/hahho\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7c8100088953b79ca2c5e1031dd1658080a1a5ff6bc74e4092cf393fd5f619e9", + "regex": "(?i)^https?\\:\\/\\/floomeeroblivionrevhbzw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d05c61bb13aaca85ada0bd4d71d46f24df530ea1a47f9fc9252070be4e20d2a0", + "regex": "(?i)^https?\\:\\/\\/nighthuntermootqyq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "35242e47ea6e503440d4d1e41c9e520267a37973f0cb71ea6b0549d5dd4903b9", + "regex": "." + }, + { + "hash": "c358751df80a67d5c038f7a8ba3873be1f0a608f658c9cb368504c1c15e3ce88", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-fuck\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "99d461b42b989a17f77d63245f1a30028759662bccbcdeb30f4eaf9a188cd37f", + "regex": "(?i)^https?\\:\\/\\/66ayujuadgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7616729a7376347cfdb45bb1e0a94873a234c8180a0e6e1ac0c81bef8412b25e", + "regex": "(?i)^https?\\:\\/\\/instgram6526\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6b7a5733f7fd1afeac5e3f16483ee70c50d295d278b5e2e9969028073a741261", + "regex": "(?i)^https?\\:\\/\\/tboonskhouun\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "13a71dc6ccb2f5053dfe4c36eb5c2518967ba6be8f49926340acf2b73a90043c", + "regex": "(?i)^https?\\:\\/\\/cams\\-voyeur\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2bc2cd8160b33826d677d06467f02af3fd4b7095cfe7e0f74ecce2dce1d59adb", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b1383ba58f837631f55911860495cc666875c227a3cf5d2b88922c8a4327ae06", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "37657aa20e4c626911a23cf3b8c90b3e46ba99dbe93de0acf5003e0c15dbe226", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4891aed52335665582abc62c2b55b6db4ef0ca4ee3a36ac088584aab27b4162c", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a0c02891c809cf32b8e6e49b00f51da13e7c9422335228bb1539da07139b239e", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porn\\-tube\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f07f7339c01c48f489e1070648f807a8ac348718619e7202d81f614f2aad7405", + "regex": "." + }, + { + "hash": "ab8e918bc2929f3a94781bc6366bb6ecee7fb9ef958e45fbed1eddfba38c047c", + "regex": "(?i)^https?\\:\\/\\/chopperundefinedkizqk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ffa9a0de3dab5da8c4cfad071fc6e440f1bc131eea15b5df2cc1d11d5b20f748", + "regex": "(?i)^https?\\:\\/\\/tboon82829\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "86176b953200c9898eef919b4b2a4e7c87e501a409b28c193091536fed556be8", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bc9e26ca35014becf7fdf4b2952dbb306d4ac9df0cb7ddd9eceda72f71f1590e", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab04ed5bb3290878cd5d2a40118e9f0312eb7f1a9d50aa1dff1b6aef9acef6", + "regex": "(?i)^https?\\:\\/\\/surbabdreoiggg\\.firebaseapp\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f81c5d15a75eb47dd8ce5d91a975b4ddd1fc2c03924f12768cc0102a95cb13a5", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7283cc8000215322c2806467eba40178dd4ca84a3b0774a817a7270b72b9d58e", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ec27b6cf18124604b9f162b722cfeab51439b042814c784c82cefd7c78034fcf", + "regex": "(?i)^https?\\:\\/\\/hahho\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4570f643241af6abdbc470b1f10e875b886c2aa42a6d0387e6529b59ad42955d", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=o\\*\\*\\*\\*\\*\\@c\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "b2288a0cdadf9e1fbc4aa4ade716e352340e5d96338e7c6487a7b537c438066c", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "573f416500db55f7838aa7e3ce86aad67516b18e195db8122264974fffc455bd", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a67b0f6e39ec2d1e803f2b7a019ee89ea7129257a50c23cf76acccf70bfc98c6", + "regex": "(?i)^https?\\:\\/\\/dfghndfkig562\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "962ffbafbca6ce5de5214cc33107d8e2a8d0bacabf16003935ac06203ad91117", + "regex": "(?i)^https?\\:\\/\\/pub\\-d79ce6d512dc4cf884782a1a45296bd2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5397f54ac2405722f5181df46d0aa1926b7ffabb6e5100b1162349dd3bb0f059", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "75755f932cf76f6f10b038bc2b67bdcce30a9c4d2cffb65dc0d4b6a9110ecd7f", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "61a4c37878dd6e8e617820ed552b48d1b70760cdf38c617aeb7caf424af65f9c", + "regex": "(?i)^https?\\:\\/\\/tboonskhouun\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "15acfe751e909063e4f505191765cb9750ec17a34c914e2466e67e134b61bfec", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e7653581967914ef3ba29a1fa58ac9abe4ed5ed5ae5a3237c508f2250709ddc0", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "01c70463a227f2a9896068ad668af65b3e1fe11912243956068f453537634a3c", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "885b8fcecf5ca93a7bb1c3e6298e4609286c99a927cceff486c5fdf63c24567a", + "regex": "(?i)^https?\\:\\/\\/66ayujuadgj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9a5814d6803ed632503121b6f8c7b4ed3f5143cbcb1286769af01a457b430351", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2f8f75f91813a4604681274f762d2657d3919d9fe698064464d729eb5788eeb0", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8aec44ce0b74f12728b76bd1e4db113d74d80db6a5f89440dd87ae8e702ff1d5", + "regex": "(?i)^https?\\:\\/\\/yourtigersandboxutjey\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f3b1715d784d22ddbf29859ff3aab7e85bf44a8842e36a5b5dfea0e82b1dd459", + "regex": "(?i)^https?\\:\\/\\/xxx\\-voyeur\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "be28e9781e955f27176eb7dde2e15fd5dd003fa720b2cdf39574cf9fa5207c31", + "regex": "(?i)^https?\\:\\/\\/tavirealisticssfzqxx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "95f3fa35e515a82ef48f37bba6eb97a90f2678f70af442505a3f6fb78667ca68", + "regex": "." + }, + { + "hash": "41c44a95b766b30a9194632325ee2baaefbbb5d3949118f89403174da73c3528", + "regex": "(?i)^https?\\:\\/\\/anarxegnssyup\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2c4814cffc0ba7a3bafe54a3fa31960f5bdc384be728522fe0e18122be4fc9c4", + "regex": "." + }, + { + "hash": "befb527834a49a42b632e5684a6bc52b66fa050c98a780759ae5b8c02d020a70", + "regex": "(?i)^https?\\:\\/\\/instagram52065\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b753ede0e623e90687f334c88da017baf98dca75b3bcfe7327a0d19c03f1b5d0", + "regex": "(?i)^https?\\:\\/\\/hahho\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4080e136058fcb868586ee845b145192248749b2ca579aaacecee5fdf9eff972", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ffe31b593ccf3e5fa8978c631128aea56651f56f8f56bebfa922338181bb412e", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "597771ad1a2c86f5fced48cb52b8df1560f35c08e690edc6cb2c7a55d49e2143", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c2c35411262b241f1c429c543e75691a91bef6b6f6995b711bfd8dfe1b732069", + "regex": "(?i)^https?\\:\\/\\/x\\-hamster\\-webcam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6ce43be2108baa00f7147401376a8c9135e350c4573a76701bfa79cc9475ea81", + "regex": "(?i)^https?\\:\\/\\/tboon82829\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fbb0302c7ccebb1fe37333ba275b59ba613bcb28ca384b8c28507864d5500e11", + "regex": "(?i)^https?\\:\\/\\/tavirealisticssfzqxx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d75fe17e43bacb498a6e3c8028c9bdcbf6d745df36955b5ee90647df8efd5ef2", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "0211b3f82358044181bd3965a11b9bc04dce2df7e186f10be3ac49deeace60fe", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "193c95c86439aa05091c0bf2326198e0df27152a11af581eba31c9e688e14576", + "regex": "(?i)^https?\\:\\/\\/free\\-porn\\-video\\-voyeur\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2025033e2901704958a8dfb429a1b75529fde36faf6238083c16c62610c1853b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+YPnJ2d\\.html(?:\\?|$)" + }, + { + "hash": "c462dc5c0ac5d44610e93e4d103217ee32737661bd06c627e172160bec2b1eae", + "regex": "(?i)^https?\\:\\/\\/anarxegnssyup\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "559c000817eb2c861326a76720ca6771bfea11e24acded4cd5814d265846f651", + "regex": "(?i)^https?\\:\\/\\/webmail\\-108439\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "344a8827b15a6d8d9a62ca579a7ed3ab26a3756ea1a633bc1bc8ec57d1130fa0", + "regex": "(?i)^https?\\:\\/\\/xxx\\-voyeur\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2df413a8cccf10212d9b7704524ef4faaf28ef21eae372932a2c61ab83fed16b", + "regex": "(?i)^https?\\:\\/\\/kjgsmiutte\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "77929f0d7ea7dea8c7db609bba67cb0417f3df04af0069436dc267d684752803", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1f1ec55a35cc605ff10805693552f2ba29b82e0522bbb918546aed62c3e276f6", + "regex": "(?i)^https?\\:\\/\\/tboonskhouun\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f80361585b784ae6390cc6e6834b7b6ed85c6e83270afa877c54e39f1964cb3c", + "regex": "(?i)^https?\\:\\/\\/ermingcavsj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6eb8cf823cbe25dc16c86f0d839ac0f56cb8dd5a6ecb2109c5b9a20e9d6c70cd", + "regex": "(?i)^https?\\:\\/\\/tboon7822\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a4b5ec42fc9e41d900c1d273c648ffbe3969ced3bdbf92022538df542cf62311", + "regex": "(?i)^https?\\:\\/\\/cams\\-voyeur\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "35f3cccc980fdadeccf44b2bb36a3f166f8d38bae1e9022a9fff7457ee7ca9fc", + "regex": "(?i)^https?\\:\\/\\/kjgsmiutte\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7e3305ee8cd94b851164645fc49b1578c0ef807d05b80dedf4d88580071c4e19", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "aa0e6a36880e1eeff99408dbda583bf4ee8547cb272a98425a4203a2b2b1010f", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porn\\-tube\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "aa71e993ccb7c02326ba07a0b53245c220f8e7d4090dce88a7fb32b96ff01851", + "regex": "(?i)^https?\\:\\/\\/yourtigersandboxutjey\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6d74dec1dead6c0a330e9b8f8eeb478b638df1439d57477b38d06d0d222e6cf4", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1c3b04c67cf51d472fb30d2d76650be0282be7a49a12a813cea71caa3f0e77db", + "regex": "(?i)^https?\\:\\/\\/instgram6526\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f3908abfb11595b5bda8e9af594922a3b5c143aee41e9ec48a3b1dc83b4f5e01", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "107f869b04c7c6f1aed8c18712b46eff744d4b1a6800fd7e3d7486fb5f1019e8", + "regex": "(?i)^https?\\:\\/\\/porno\\-hidden\\-cams\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2bc2a6b38bdbe9a61ed1c2466d8f01825b877379bc2f63185a5f9dd3d31be1f5", + "regex": "(?i)^https?\\:\\/\\/hahahuhua\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "99e3cc429a8a2317351abc0fccb68d56c1de29a9372a917716a6370152bf1b22", + "regex": "(?i)^https?\\:\\/\\/x\\-hamster\\-webcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e941ad313785264c406d3c148aaacf990cc6dfb562f05cc80b7baafe3c5593e8", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "64a0a85386d47081642db09995ab9aafcdb730f1cb5b3e0b41c61ac57009dfe7", + "regex": "." + }, + { + "hash": "2dba35a24fe7e3915db1dedc3d01777f81dd5d198f09e2f33a6899498765b258", + "regex": "(?i)^https?\\:\\/\\/floomeeroblivionrevhbzw\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c93d062c9495211b694df80a986981e5cd54546aa9979952e782676d27298e3d", + "regex": "(?i)^https?\\:\\/\\/coinbaselogindesk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8d3b367859f43ea22a7c46e5eb1b551c391f891078d13622f259ad6248ff731f", + "regex": "(?i)^https?\\:\\/\\/hid\\-camera\\-porno\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "846567e9cb14b71ded322781a8dcb719cc968805a8aad04ebe7c163c213ce9b5", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c004f721a2259baf8a5f402613e86ce03e4dabaa74acae77dee484a186d81f67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?wocNtjbmyJCDk5$" + }, + { + "hash": "ec0ab0487a61799913a7f53b5e71b50a1348c520669438d8be90e5727df7238f", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a41981aebd81d9b29172e9ae9597c6d5ad9e58ee13d3e52450bc16d128866f22", + "regex": "." + }, + { + "hash": "b0eeb76b41d9b154e0cfc3e957f7e9ad40d054816913b61fb5b61ef9db239326", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0f30c65d43ad65ed0cb0cc040544843849a8b7953d6b905ca33ba50d4369ac6f", + "regex": "(?i)^https?\\:\\/\\/diwaliofferinsta\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5ed2cc5e488881e5909771d75fd71bc9ea0439bb294310db6b41f996dc578418", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2d9007cdd356938a7066a054f18d8fd3cf4bbac4692737622eb81bd8d7404665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\=Y29tbWVuozOTcwOTUwNTM2N(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "cb37110231a8f844ca8e9822e8c5dcd8d9151ff9ded04aca585e321149123b48", + "regex": "(?i)^https?\\:\\/\\/freefollowerslogintoget\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7b3c90510c0b1c035dd4cbd4558d979e57bac5920102af948fca667ca5da1b5c", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d2caf2b1bb27bcb8aa6f3826c63b6589e86efda84c4eeb7ee32d9e56810073ac", + "regex": "(?i)^https?\\:\\/\\/nighthuntermootqyq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d0164416ff325d0e1ee9f243a3d2e2ca987d470f6480d308c1ebc4bfb488a5e3", + "regex": "." + }, + { + "hash": "e74950a345cbeb9596240f5f8ad64f64ab4368c919e011f663d9b098973566d7", + "regex": "(?i)^https?\\:\\/\\/slooshorgoldenelje\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7db702719e6e0f51cf5f85493f6a1ebc07cd22cfb1490f8b45148f04060f7e5a", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f4da84da15fa4596d0094a08e10d6b2a5d3ead4845250330b645342a493225c3", + "regex": "(?i)^https?\\:\\/\\/cams\\-voyeur\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a666c3f71ee5b9f89c6aa492f993e774b15c2e7bf2907cf88ddbe5904c273677", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?YxmElEihu1fns$" + }, + { + "hash": "11342f33a90af3b8139100890dc26a04fb4c698b019cf8f18bd7f1d50f2c28fb", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e588510e189edfd670b19b2f249e9c70e99372e417eefcc92a4c7e0981643a88", + "regex": "(?i)^https?\\:\\/\\/cams\\-voyeur\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a6cc7f4abe1e2e296a5353773c541f9357622a63e6325ab65dfbed21fdac8e8b", + "regex": "." + }, + { + "hash": "d23bc840dd41d28112bd62ec33e0454165bec4bae39121c7a001c4d58b6248af", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9c562cfff47a152928e3fd4945f4d542225365b00b1d6be947cfa03cb2e6dd96", + "regex": "(?i)^https?\\:\\/\\/wellcomepueeftf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "be25ab7262ef7cae3f5a2107b417ee43a13fd2725566cf8232a4722c987ed145", + "regex": "(?i)^https?\\:\\/\\/xxx\\-voyeur\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "550f1f4a77c62fb446ce2ebd2ff57541fde74ded2c6e9a29190c1028f46be426", + "regex": "(?i)^https?\\:\\/\\/wellcomepueeftf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "70792c45212a0376e5ed7bbe8cf3343f10a28b1c8bfffbf2888e364ba5b38085", + "regex": "(?i)^https?\\:\\/\\/floomeeroblivionrevhbzw\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "24aa73d2e45dbee0b1683070a46a8cc189c547f7987576ad1e37628dbcad421b", + "regex": "(?i)^https?\\:\\/\\/crickqwelcerloen\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d43b94335db9faceabc12ff275b14e26d88ae6d04269140e60912776205cc535", + "regex": "(?i)^https?\\:\\/\\/gheqahqah\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fb5eadbae2061038101752f4267774657de78a4b3467a9728a2f9f91719de09d", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f87d99ee3da0b4ef3ea644420b8f5938e166f63a1015139f846476c5ff840240", + "regex": "(?i)^https?\\:\\/\\/floomeeroblivionrevhbzw\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5a360cda8d1c3a8ee6d65318f40a8601d56c7d59ba32ef070eae7c10df049cc1", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cd9020c338cbb1cb3bc385a65deaf71d288608f52dfef043009f5d69c7542902", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3cc16bce1bc0738565a9c459ec22029351a0047d2cb90c63a0362a6214c9973c", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "577280418bbedb309c8977e889411381b9e860ba42bd1943ca16bf9d028176ca", + "regex": "(?i)^https?\\:\\/\\/tboon7822\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a290fa892fcc4f4f738f8083ab618612d654e67a3872f5c946ad387cb1a6b777", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3e70a155d0553dd685d78524705dc4ac8b39dc0afbdd3f3b3c22c5a7880c1722", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "29cad775407450748e58d0410fd5b455542f97d704bf1215c89b893ae1343055", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4088853fb418865b10a700b2d6a4907db5f9d9cd12e6b584e39dea0a81b56ae1", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3c0846603f601c95d639580df0099f9cdb373cf418d0e47313b4b5781fd2f4b2", + "regex": "(?i)^https?\\:\\/\\/floomeeroblivionrevhbzw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "41a6d617353381d011079e0b793ca03c9cbde79cca6d706780723722351d9dee", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6cb5f70a59778e53d5d7d547efe7dffc31cc69116bda6a92bcf98440c374ede0", + "regex": "(?i)^https?\\:\\/\\/crickqwelcerloen\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eae1fe60de76888fdf78d6dc4c62911bba24d95121b0682c6109c6b58e52e92b", + "regex": "(?i)^https?\\:\\/\\/margetjhkwzu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7189c9480dfe0591fbb2319bc839c0b03559bd769aa250888f69832c0c19a666", + "regex": "(?i)^https?\\:\\/\\/akirafolkwqgss\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0ad28a4e3dc2bbb5654a6bb7ec3ba5639ff54b7bf84591111b7d04b232b65d98", + "regex": "(?i)^https?\\:\\/\\/crickqwelcerloen\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bd49f80ee5ccdc860a2f83c26a65d7098db035095f1ce03702dac6cd5d547984", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a4ac0bbde2c37d6d35f6db77a94a9c914f934ff7ea0bd37163915f6493c60c45", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fbd06024c6a7e6ffe88bee07e2f3d2a4fbcd6b82a3dca3fae44c523afd198650", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6092722b9ddb7e9d06cfe7d447daddddf15c3b2b29f811e54ea2ecd8a8bc7d83", + "regex": "(?i)^https?\\:\\/\\/wellcomepueeftf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "970f069dd8869e1a8d84b9d284ddfe6c806b43a768f2ecbce7b5fc4bd29ba408", + "regex": "(?i)^https?\\:\\/\\/instagram52065\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d8ff61563719efee5214bc98cd36597b80034a8db18d9ae00916f2ec137890ec", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porn\\-tube\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a465b63cee33591134725b4755404ed3876e70fb4ffbdf2a140df602111700d8", + "regex": "(?i)^https?\\:\\/\\/tboonskhouun\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9b43da44c7a5df7bc2bb4a35e92a34ee92e1b41c4a0fdfdd8056ac6d12473ddb", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4a7aa3c9db5a6e1f5aa41fef37e8baa0ab2beb8a2b13238500450a5370dc4ee4", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f4a86c0bc68c74d4d37c65329872dc9dac941ee549997af6a783979e344cbded", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34d4e77b37f2ba4dcbc852204c6abc03aaa95f84e6b44eda66ea15a34ab5b8d9", + "regex": "(?i)^https?\\:\\/\\/dfghndfkig562\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "814a09d5d295446d02b3dc15bbe36346246e82a4577405404b36c1096025f369", + "regex": "(?i)^https?\\:\\/\\/misterbigqutrakefnmaw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b3a15cea5b836a5f18783534dc5f127b101315fdd77ebe3fea44ff39c4b748a5", + "regex": "(?i)^https?\\:\\/\\/65986865146\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ca5f1795f1ef925d9a70d71d4cf383a5ec238db08c64fbbfe6521b32497d1623", + "regex": "." + }, + { + "hash": "ed57d5d35a36e28ba77e1c500375d2fb656f42f692fd197db8f35d05b5fc2535", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b95ae7d4aae186d6978c826046c8ff20910611fc142273bd6047cc0463dc54bf", + "regex": "(?i)^https?\\:\\/\\/kjgsmiutte\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "dcc6583340de67e09f3a5cae3a1bf7bd82c83d165ee6f087a36b6ea17753f783", + "regex": "(?i)^https?\\:\\/\\/ngayhomnya18\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "47c0998ea739646e0700a26db48c4adf353b2f1052936d9bf171cd6aa053e9c3", + "regex": "(?i)^https?\\:\\/\\/tboon82829\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "483c1ad28242936eb084ddce29d8e8c9ead371127c92bd914484cff8669ed24f", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1a24ac7c1a894b336d5c6ff3bdc6bdce4382478f3dca99ffa824d37eac8379a3", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "603de81357d0710cfa7cf93ad10918523d286bafa868edfa64f8b00f43a1a553", + "regex": "(?i)^https?\\:\\/\\/slooshorgoldenelje\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ab2d98dfa021bfcd497fc9f84296c359626ace9585bec83c0842c157e3fc145e", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "64e5c2a31045db9c7efd5f8b61117066bec6d1c732a8ed7d287821fbe30f9c06", + "regex": "(?i)^https?\\:\\/\\/anarxegnssyup\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d70c90002fd83440f71f07c14a00f8504f506558a22f168f18230d032bede100", + "regex": "(?i)^https?\\:\\/\\/jarvisnjl\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b2ad39588899fdd671ec70414c89cccc3721a812a36918819b4b3fa7a4cd3930", + "regex": "(?i)^https?\\:\\/\\/nighthuntermootqyq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d63161a2b26c5cb15125418ad8366a511a5c3034854c724d603ac82cdff1d985", + "regex": "(?i)^https?\\:\\/\\/66ayujuadgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dd65052e4dbf4c73624d9f7ce43f782fd4e656a76863a67010401064e87c497b", + "regex": "(?i)^https?\\:\\/\\/eaqghaqh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ed4b7e5d15e15f2ac11a3613b93f5af60b31672f07aaf92b6d7f1728bb8f9360", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "aa950ce1ec9810facbe46edabbac71631ea59396e59e720b96df98cf42431aa3", + "regex": "(?i)^https?\\:\\/\\/x\\-hamster\\-webcam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bd1d9903ca3b38f9b6998003fd41d680caedc8e26b2fcfc5ba778a7af99fd08b", + "regex": "(?i)^https?\\:\\/\\/wellcomepueeftf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3bf98dc562481266b2770cce84eef49a300e1d01c0278de05f6bed63c3967de6", + "regex": "(?i)^https?\\:\\/\\/yourtigersandboxutjey\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0a4421934f2b43dbc1ee6d2e8152202971135065e8124a37114da82f8d41d0", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5656f6d4a7151241b4140880811fb34d665d0b5c3dbd91da2a483caef600e8ec", + "regex": "(?i)^https?\\:\\/\\/naivetealiveobkr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fb1106832e4db5095b70d3dd11a1ae3bdb60ea78f54d0eda3a82612001e2e42e", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d01359f2b05ed70e406f7e39b7332cfefda3b9a95abbbc9ccaad5afafdf14603", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "27bb4f4a117df87909cb2ac5e8b14de8d7631599563ae9aeef7e361c4b70fc3b", + "regex": "." + }, + { + "hash": "13509dd3fe31bd0efc21fd19ee3c447c62a84bdc295b9b4ab15a0ba57329b198", + "regex": "(?i)^https?\\:\\/\\/eaqghaqh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9e959e4908dae74a6eb37c45d60dc8465c5ed3d853555b8760dca2ffa75bf962", + "regex": "(?i)^https?\\:\\/\\/stepicsmihxo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d20e25d187f9f7802475b6560172837eb3d0e8f747b2715b8d7fbc1dd06381fd", + "regex": "(?i)^https?\\:\\/\\/hahahuhua\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9ad574b29322c98875f6e664f3c9cb69a9d1720377a35d4a148f36f2ed62ab5d", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ea8938b7def2ed84971e40c9e9a9483693e648640f3561d5c09554b018b9cb1c", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a666c3f71ee5b9f89c6aa492f993e774b15c2e7bf2907cf88ddbe5904c273677", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?YxmElEihu1fns(?:\\(|\\%28)$" + }, + { + "hash": "2d84cbd55f919df45221c13c7a51c2613b9e09d058add6009a0f6d7b9c69841e", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e3b2835565e8c4d0e83067a52b63640ada775bdfcedffc718e8c0c21d5726626", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-fuck\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b30bcd17b9d7bb1ed92ec9d247ccfe0af450232f32349e12392260f4792dfe31", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "229e03434cfd373989ce4599b8df93bd4dc29f4888510fdab18b425889b05674", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f9246b424e3d222e8d4c132dab3f11c9485ce7f1bd2c806c05ee6ce4f8dfad11", + "regex": "." + }, + { + "hash": "96f755767ff100cc24c20cfef7022b82e934ce01865d1cccc97688ab325fe190", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "106a784a99dfd13178d2bf129a6620d9028a65983b25839a7f907d36e9c9bc85", + "regex": "(?i)^https?\\:\\/\\/tboonskhouun\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e3c8c7829412c4a3072b105bca52f2aa1521a0461e6c29f8a687c9d79f09d4e3", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c80e363a77330d3c3204d5c9908000db9020c3ed05a1020890735386eb831635", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6042f64e00de4b5217817e6c0ffc666634b5a028750d14a2da8849e3a04de16f", + "regex": "." + }, + { + "hash": "adc4931a5948ab66b5da43acc659d49dda2d9393dd645f5d1c666b0f295877b3", + "regex": "(?i)^https?\\:\\/\\/phapharotdroeritxlv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e26a3577ceb24c3d52189985d61b614a436b28aba8b7b3bd0cd40ae32b0dce16", + "regex": "(?i)^https?\\:\\/\\/instgram6526\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "bbbb53eb84aafa2f0f7809a6464ea2c1bd56fb607b078b77fd277a9b5b989f54", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "077c620daa12a20165ec81def4d845444bb3e5bbee9ee823df9b84983c71ee59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+FrXxz0(?:\\?|$)" + }, + { + "hash": "6865b5b2c153396b25285a295fa4c5a1faf668c3c39be5140349345bf43cc6d4", + "regex": "(?i)^https?\\:\\/\\/freefollowerslogintoget\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e584a9cbf1d5612692b21cb43cb91dccf162f6d435672377c43d89d8b7596004", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "13c6f9c50a27d3334b32d80e3a6e74f458159e260437542ebf00c75170ecb050", + "regex": "(?i)^https?\\:\\/\\/newtonvirgintankstmncpmo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a17803ee17d1fadb08e4540d6e68d787562cb607dd837003b93ad41fc5501e28", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bc6e51ca30fc3563192c86d9723ed7bfce8d31e1e65ea078402c99379b4f3bdf", + "regex": "(?i)^https?\\:\\/\\/mail\\.68\\-183\\-135\\-153\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b2427cb776a8c3c7bb1a6b958194b2b7fb361ab4b5b773d45e32258d4a61b53f", + "regex": "." + }, + { + "hash": "8c15d6a844a1869fe0c0000288ee3bff5dc6ef6b519a3305dedd76a666c0b388", + "regex": "(?i)^https?\\:\\/\\/ermingcavsj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9c8eb3832f0257c934ca7e10665f3829c78f8ead21b57be046da37e8cc82f975", + "regex": "(?i)^https?\\:\\/\\/brunettesandboxqcs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "02dad6f5aa7b7a4baca5b4dc213e8d812af242bb847a82dba909fde5165b645d", + "regex": "(?i)^https?\\:\\/\\/boogabearshinywhkbhmj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "25c1abc1315a21541be17b990a3c6a1220078e2cb635566a322d3bf5c91b3d69", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "20a835e71b9207e516d24e97f343e26aa5d5ebba9ca618cca99349bf753fc309", + "regex": "(?i)^https?\\:\\/\\/instgram6526\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e911f7b77adf11d9574c6d20c5c693bdbf6ac23858bea3ff137dcd07a8f9cac0", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "70bc0ed1874082df9b1a2c92cef25d2530c760aea2c050d594f7b96922a98aa3", + "regex": "(?i)^https?\\:\\/\\/hahahuhua\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "de9a9910a7c7481054c555d20d5b2aaeb5341cf3dc684d481ba3a6ef7933a1fc", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e48263c81962ee5ba727d795273a16902c3a1e1c9093a66ba04dffb90876b84a", + "regex": "(?i)^https?\\:\\/\\/hgereqradhg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ae82f25fb9f78375a8db7de405a3514d5905bc2a2c70c4ddf7023745e261b1db", + "regex": "(?i)^https?\\:\\/\\/free\\-porn\\-video\\-voyeur\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6b89cb3bb4c0e8a107a6206775e0eae20a2f1a996bcebb85c901ed0a713db395", + "regex": "(?i)^https?\\:\\/\\/leoksrd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ee1e19a187c5d7bafddca987c88ebdf474505e9f2745209fbaf810a7d03149e2", + "regex": "(?i)^https?\\:\\/\\/sderrgeybhjhghhdrt\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5bccbc409ce28d1caf54ff141cdc2fe515470dc4e4278c78547700d71672e854", + "regex": "(?i)^https?\\:\\/\\/hydden\\-cam\\-porn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1459d882f528158e324024766296b5ac9732815a6a6a461798807a8756fc7152", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-cam\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "52ebbd32a59fe8b9fe4a7c0acfe26daf9f6d70b817f996b1bbf231225fe32b59", + "regex": "(?i)^https?\\:\\/\\/duckywatercfiiaqg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8d87c2bd60896cc24efd672cd6242639af9fdc38b517b5f1d194ff17ea0a9e71", + "regex": "(?i)^https?\\:\\/\\/tboonmhbouul\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "451e650ce5a53cc356fef5e43dc52152914315fff035a35f735b5c1cd77b2eaf", + "regex": "(?i)^https?\\:\\/\\/kjgsmiutte\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "df5f42c0e69fa919a4259864d4a1a1742a0d22d7c5446fb4743268741d0bdca5", + "regex": "(?i)^https?\\:\\/\\/anarxelwz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2833b832abe11780407d33d84bbd4c749120d38c287b3cd48ad9b47508e79feb", + "regex": "(?i)^https?\\:\\/\\/tavirealisticssfzqxx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b5e677263be2fc6b9dc4719a1a027b93f01934519d532c6b81cd44170ec66e80", + "regex": "(?i)^https?\\:\\/\\/diwaliofferinsta\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9ee2965e5625d82574d03a00e287cfccb8a6d4d7dfd75f0d3884e4d141bdf128", + "regex": "(?i)^https?\\:\\/\\/ffredeemsitegarena9936\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a84311503108897c107aa3238b7957433a50a33735d8de78e4cd3e299284a65a", + "regex": "(?i)^https?\\:\\/\\/selxppsulp\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b5a58c5a6aa2beece92a8e07b92c4796acdc58bcdf03ddc88df6528cbed38354", + "regex": "(?i)^https?\\:\\/\\/tboon82829\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "02a49a5cbe058620efabaaf406848ea9e17ca9a00bd51581111cdb43f0a4c018", + "regex": "(?i)^https?\\:\\/\\/gheqahqah\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "715373a7026048d053924d838dba92add3a571dc52ee08e279afa78ff4e5d83a", + "regex": "(?i)^https?\\:\\/\\/tboonskhouun\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d9a08c76226d5551a278ec9f32c3f32df49398de1020cb04186b71693e96e53b", + "regex": "(?i)^https?\\:\\/\\/free\\-porno\\-cams\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "f70e021c76b61d48c4a8890fba7136cf2fac087a0bc0dd5da7b23703e562025c", + "regex": "(?i)^https?\\:\\/\\/ksudnpqfw\\.com\\%E2\\%88\\%95uliuk\\%E2\\%88\\%95ntmbgbz\\%E2\\%88\\%95yhkqnlhj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDhmfmpf\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f2dd4297402143ee42e6d992cb59779180bd3fb3c6337d5b9c0cf91ccf3b9a83", + "regex": "(?i)^https?\\:\\/\\/instgram6526\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "51a77096e0b447d6309e84967c062584789c5de3b266a742ea2ac999d3fba5a0", + "regex": "(?i)^https?\\:\\/\\/kjgsmiutte\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "58c00adfe492a232b710e7d59b8b4a061b71febbd17ff37844722485c09209d5", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-fuck\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e0d1d723acb9aad04f16286a1dd5b890b223c8cc6802acbc81ab38dd069d0544", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "69e4a7090909969e2e87291c43d383d1987ab413c430e4b52824d58696b100c0", + "regex": "(?i)^https?\\:\\/\\/x\\-live\\-web\\-cam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bd82a8997ad1ad7da8e9e352de680b6568a19b55ce510167614194caf0291da5", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a3d9da5711cf7732e4e213e059d1ce62e17c9c6cf77d67b2a570c0a1345bcf47", + "regex": "(?i)^https?\\:\\/\\/robuxcardscnsw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "62304a2d9b46f17a183a908a26ceda437de359a877635d77eb7d7d3cd1143b6d", + "regex": "." + }, + { + "hash": "709e69fc4f17b587ea9187e4e04c53e3620991a42d1c59374b16c93a66ef3b53", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=96845\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "d2ca96fb513a5f488f780adcd3223dee3cee5701f46e0c5945cea5d0bcf3a51b", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "638e6b8839110f88b756c7fa4678bac7dccb9f385154c0ff0452ae745eddeb9c", + "regex": "." + }, + { + "hash": "332fda06e078b21f4927271e1309c3ea65cbe4d8ff1b9cc6907b6fe6d2121df2", + "regex": "(?i)^https?\\:\\/\\/amazon\\.co\\.jp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=1101494974(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0c20743f68ffe8dd88d59a537e7e9b4a01c9d1d95fce009571b342d3d8e477ec", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9238e3e63a497fa7ba0294343057840e5e2f441e477a0805d60f6e4cc5b089ab", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "29990ae127274d1b85c74963540a56cff59df163fdf64e66751454cc18674d90", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-live\\-show\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e8fd1876f468dc2b2b30b05cd62e001652e1a29e69235ea2e476db65671dd607", + "regex": "(?i)^https?\\:\\/\\/51987024589\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "853182c364416ad52fcf68d1eaf1a609611ba60cce496c1e0c3580939b05abee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mL85Nj(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96905c9206b9f7d3d19942200a7319f9c5bc380f3fce7fd81b79555dcf21f8c0", + "regex": "(?i)^https?\\:\\/\\/robuxcardscznsw\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c88b10b8e9f729e7d5529d77ae0a9acd52a0ac086bfd213792415f9b43be72e8", + "regex": "." + }, + { + "hash": "2ebe55b21eb93e4a2a0daff4eff4ed7f30ed519f8d70ee61e828bdb226028fa5", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-live\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "221e78fcd1e90983cf102c376c741eae0fd09e4296ff7fd5bb2eef9138f60aa4", + "regex": "(?i)^https?\\:\\/\\/lives\\-shows\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c0e0d1d6ded49bb372641b65e65e1353d34b3caab775d91b2038e9d61888817f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3XDcr(?:\\?|$)" + }, + { + "hash": "4a66389376bc202320063f7df9ed5e50fb6570cc0d9df98d26700965839a5944", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "26ca97cfc3b9ecb2cf4c2196ec4ac22582fae259065099ea0a410ec09578f720", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e372c42734b185a244a9f82d3574e577d49a9110a43daa3734c3198134837576", + "regex": "." + }, + { + "hash": "c1bec1812e1842d64906527f5f00eb193a4aad6b9131f4bc64f7c18006af096e", + "regex": "(?i)^https?\\:\\/\\/eqaheqahaq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ea3313bfb16d7ff435f19e96d6e11ef47eaac59f0b2d0e26d53febb87bef7e06", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-web\\-cam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b3ee0eddfc2de2959a7b984da4544ad9f13200ffeea07e42b0c110eab1f5883e", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=117285\\&N\\=79\\&L\\=19\\&F\\=H[\\/\\\\]+$" + }, + { + "hash": "c8caffd479f0b323920a16c82c2779942196fd6f306469e0add0240918e13988", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=96158\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "14ea3598d1355533313313f2441639edac4e95e4eb2407d970b6e537a01495c3", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2cd8462b182bcb7e766a3bd9f05069bd8b0089e49ee726732c0b1fde882b644f", + "regex": "." + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=r\\*\\*\\*\\.c\\*\\*\\*\\*\\*\\@m\\*\\*\\*\\*\\*\\*\\.eu\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "3f5ffdba13fc87a34241b972d807320afda89afaa80e4ba2c82ace1794c98c48", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8ea7d40c6fd6c7fbd577384815b2b0504658f8e75b083e1774ee7920b5eaff30", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=101674\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=86500\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "952bc3b3a507c163bc789c936fd81445c1657a310a02ea9d053a5f70d622e26c", + "regex": "(?i)^https?\\:\\/\\/an1235265\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9ccdbc0ec2b93fe323f4c6c3270419dd8df22be303ba162540f4928eb6a318c5", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-live\\-show\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a6ebd984dad0a5500f3b371c2063a381c36b5c467bd9ce601331cd2d04674a7f", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxiz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ed30d3c90fbfd5f47b6676aea58112f191d4d3c477b39700bf3e545c3260ab3b", + "regex": "(?i)^https?\\:\\/\\/robuxcardscnsw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ad83c6ce1bf41b528de1df28bd88effd8428cf499191c03e1c402ea24f8333f6", + "regex": "." + }, + { + "hash": "cf4b803ea80546eb7795bd2ed9b68d7c886e31355962f6cf951ff2d50c6b125d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?email\\=herla\\.joseph\\@deped\\.gov\\.com\\.ph$" + }, + { + "hash": "aa159fce4a9ad18b96d1066070bcca1e07d0343bd17a4c67757fbe2de29d198e", + "regex": "." + }, + { + "hash": "e334dc3777d9ad61c965663fda88c43c1d35aed8f74e378a9f0c4879d6186b9a", + "regex": "." + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=104704\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "9e5d22fd7e13163cf9286b2fffd695b437915140b3d667d42278d0fc03021b5a", + "regex": "(?i)^https?\\:\\/\\/www\\-websalope\\-com\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "62b0e82f1ba96b35562850485a6da0d8512f7fc2c7067d3eccdc9bd72d0f69dd", + "regex": "(?i)^https?\\:\\/\\/pub\\-4b22c63549fa4fe4ba4e72908d60907e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5a14a6df4437feaac27a15d114e7e2678b985529ab712c4f2e6cafb385612dbd", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6052c8805af0980f1881b647f96e6d41104da7e45fb99eca462af00fc57b96f5", + "regex": "." + }, + { + "hash": "814c3f23e246bfc6dd54f5fb0aff15a0cd9d38938974145c6fdab001aeeb9030", + "regex": "(?i)^https?\\:\\/\\/x\\-live\\-web\\-cam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "da19a414679400eb1e0d5132606961265c0739d5e6a68f49389dc34cf49f059b", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "dbbdee4eacd926df0aaab59f655df0d8e12305b4e52809abe1f321442b7b7d0c", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-gratuite\\-mobile\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2fb8a384adf684f3d0cc5e1f52f8533fc6f41ad69315271c145a1c2620288e7a", + "regex": "(?i)^https?\\:\\/\\/robuxcardscnsw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7ea0e621b1650cdd6c21930a8f8e8e6ead2b540661bb8109568fa09352195947", + "regex": "." + }, + { + "hash": "e4bb38cce6c0388f333ce6148b3a672a4940e6a6403ac972eee642f4eb0365df", + "regex": "." + }, + { + "hash": "53094ba1b41174c37352c80a981fd1490138b6e74acd5c295650f4293e3c6e5e", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "43fb2f4a1e686c6680f83c0866babdb1322ee40a6ebfdec69a79c437852e8d52", + "regex": "." + }, + { + "hash": "49573aa63b630f93838e858a24bbab84a9c9547aa08801500bb6475881ad59ae", + "regex": "(?i)^https?\\:\\/\\/fortnite2024fr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ca71e73244d65783309ef03661a80aaad76609fe3102535dd0611cb8bfa26c36", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-live\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=91734\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "dfefff88b8ece91c8241c9eaf4897b16427141c561fe21014ff3a5d91826fe58", + "regex": "." + }, + { + "hash": "912772cef4d07ca5449917795f7a87f8156258401c691ffbd731f4916712f99c", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "740953e1775fbebac95dd2c1e1cb0cd3a54f664205d2d5c1f8d2678b7ac31ea8", + "regex": "(?i)^https?\\:\\/\\/fortnite2024fr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "54b0b56258294d88d66df6259ffab71fb70fb76ecd78c759604d980fa68a83f0", + "regex": "(?i)^https?\\:\\/\\/votingprogram\\-foodnetworking\\-rs\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fd39146818f78353b8c2a05a2c436c1e33f01879fb7f2c9c09c1904170ce28ca", + "regex": "(?i)^https?\\:\\/\\/cams\\-liveshow\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c254b29878ed7241d10f738852d9b8b110ecb69c4c8949cbb4f957872868dcf6", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "194b31b4d4b280b1b78d3c31eb0510902aee5e3bca7d6231af5dd3b05e5d2746", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=k\\*\\*\\*\\*\\*\\@n\\*\\*\\*\\.e\\*\\*\\.tw\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "f75e5bb369bc64a6925aaf669ffee85fc5ddcb5aa7c1eb640bf985e1127496b2", + "regex": "." + }, + { + "hash": "853182c364416ad52fcf68d1eaf1a609611ba60cce496c1e0c3580939b05abee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mL85Nj(?:\\?|$)" + }, + { + "hash": "1a7dabf94fc98d8901be0c5e231a6a1d10a0c49d2b8f4d4082f8a2059b36ddb2", + "regex": "(?i)^https?\\:\\/\\/supporbit\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5ff3c136fff21047df3a91d0827ac2d3d7ea2dde9acc1a900586c1263442e000", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-direct\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8b21ec8da30cce0cf7557b29048e46c289a0e1ac9c26dce66bdaa6a5a264a74a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2OfdXPfQLD\\-r_iApfJj_VXFPcCRQitwuaaaEcZYpYHVl2ZLrXkgGV7wx778vc4B74lM9Q8uIlssdm5qtMYE0s\\-BUTozzeofx0_4YgGjrqShNFvNcPJZdHEKY7gagU0KI0HmTC\\-WG0zTez8FsnGfNOdza8ZFgFn1qDaO39w7MiHR8q(?:\\?|$)" + }, + { + "hash": "0f8a005504ae74c9747714c0663a61e47940440bc2adb184374aeaade2129db7", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-live\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "40650f00559aac9f27e73a25d4bf374b086b7f41da926286e53073bd33647878", + "regex": "(?i)^https?\\:\\/\\/robuxcardscnsw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fb526787230a72d67ecc37733aa68a5b50689aa07e4ebfe6f42d31e3b43c38af", + "regex": "." + }, + { + "hash": "cf153ea589be8d7f3e32fcd0862780709327a3685ff3909f88fb63acc9e86524", + "regex": "." + }, + { + "hash": "df401d45e8dbf790e5e962c151f7ebd966703eb668d57e7f4e6bd9b25f97d944", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "604993195bfe7ed46bdcc5a2b053dca8d045d59dd77719abbbf76faa766db7b0", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-live\\-show\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2c2149f0186a9d67d8045ffd3ee72672e1e99bc67f307b7767b1344c573e444c", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ed0b89ef115b4668b5a9527d145c0b559df235b1702709fb00cd154fa100113f", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2d9007cdd356938a7066a054f18d8fd3cf4bbac4692737622eb81bd8d7404665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\%3DY29tbWVuozOTcwOTUwNTM2N(?:\\?|$)" + }, + { + "hash": "966655cf80fe4bfb4ab246d759bfe33b32951fea16e3c06e1a5fb334c9f1ff54", + "regex": "(?i)^https?\\:\\/\\/fortnite2024fr\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bbaf7da01471f1ecbbc2e35ab2eb3050c87dcb844fb8d37dc9d15ba3cca668ce", + "regex": "." + }, + { + "hash": "3813615b20736751c851461f5fdba2d0a0450bd34a500d80166244bc150a6ebe", + "regex": "(?i)^https?\\:\\/\\/web\\-cams\\-porn\\-sites\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0871c229cbdf78952d1d22809109e0b0f8238a53518a24142e394d1928b5d004", + "regex": "(?i)^https?\\:\\/\\/domimix\\.dealsofchoice\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "46a78c0a2709544ea865f71ba347b5fb00ad648309ae042c8fd20ce48acb496c", + "regex": "." + }, + { + "hash": "3690b7a727642968709fe173e9434ba9f22815018ef181ad81937a5537296259", + "regex": "(?i)^https?\\:\\/\\/supporbit\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e62b15139562dd69e8283e23f428aef67d308b4eff8af0326b39219698b32933", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-live\\-show\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d614d59f8edbe7617750b831b45cc1d62bd767fafbec3a42e9a865fcecd77100", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e22df5f99ebcf9ca83fbd9fcef3c1efa6126bbcd911140cec0ea34a39e1238dd", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8bee1032261dc91aaa4005f594cd326a43d48acda08667300bfda3f75d17c53a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195061[\\/\\\\]+messages[\\/\\\\]+17[\\/\\\\]+clicks[\\/\\\\]+300[\\/\\\\]+7\\?envelope_id\\=13$" + }, + { + "hash": "6529eb69af5d50728e3a6ef5163e01a446d7560b1968963f6126ebd49a7ed93d", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-france\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "aac4ffd2c455608b26ee5d0c12c595c11f5d36e798210034bb4b18949097d669", + "regex": "(?i)^https?\\:\\/\\/web\\-cams\\-porn\\-sites\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ca21c83d5f2681a0f444aebd4cca1ac45c308620fc5b6a2d46e7a37c9574381d", + "regex": "(?i)^https?\\:\\/\\/fortnite2024fr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=94980\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "ef1b7ba4d4061a4d10f34646ba253fd544bd06f185591a6d11330dd7820eace0", + "regex": "." + }, + { + "hash": "6c340194b7599aad6a00f46b8437c2d35a72dda780f5587e3730c72edf8b2815", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-live\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?web132[0-9]+\\.cweb06\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+fdfjdicxuzs" + }, + { + "hash": "3da170ccbaac9e858804937db85c85e2e9e13eb8d946b7333513d45d3035c310", + "regex": "(?i)^https?\\:\\/\\/www\\-websalope\\-com\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "91be242336b4f1e7878e3ab71a4b030341247e7948718be155de166b7ed7ca3f", + "regex": "(?i)^https?\\:\\/\\/robuxcardscznsw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7ee9a43a0ede2afe90f19cedab6d423f24fba998721a6caf91e846d9f12089c2", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "10e015222c073d75111d57539bac034a8dfa17eeb077f0095b692d1f1a053bbf", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-live\\-show\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "49f31d42c2501f1a33fe0c26bb6b230f00b4ee7ec1f25aaf0f3df9c567c55715", + "regex": "(?i)^https?\\:\\/\\/x\\-live\\-web\\-cam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "94642b3f5b5a9a6c93d73a25947ba5ecc92b11e9e1ebf994d8c84cf1befa5faa", + "regex": "(?i)^https?\\:\\/\\/www\\-websalope\\-com\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bbdbeba410d27f0501857add36c72dde40b59b45d0435569a209ce95e5f8edfe", + "regex": "(?i)^https?\\:\\/\\/robuxcardscnsw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=85159\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "81e4614467059300a5f9ba5d7ce521e5ddabead40f8ec79d0dc142f11d1d3e9f", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0b1425f13e6a0b690d4596ebf9aa97508463f96742d2171ada61eed8f15f3196", + "regex": "." + }, + { + "hash": "96a60b27dcc68838f997dee5c0764c6fb97a2cd91ad6e5b95b15e38522ee80b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "b0a3eb79f6b5618bc12a5d456e526d1f9f2ad3fda90125159853b2d4fb7ed971", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "50d446ad920e2b5e33bd3edea2bf5447be3ca000fcd3a52909b9cc0388030c43", + "regex": "." + }, + { + "hash": "66923d5b2f9e760f1113b7710d87b424d03c4e501f9d55b60e40d803c1a18b45", + "regex": "(?i)^https?\\:\\/\\/lives\\-shows\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ab6aed54acc8bfbfdf187e98e18aede41bff0de481c45405a702acd80ddf05f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "b0705fcc4bf134c3de51b585e69181b15ea276edcede1ea1daf7ba889566349c", + "regex": "(?i)^https?\\:\\/\\/fortnite2024fr\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ac512584fbcf6712308b471fd926c283f9d7fe67fbd514333c7c341731351db4", + "regex": "." + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=95684\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "c6ada6f7459604caa31c49ebee8f46aa13b6c6b9fe57312bc3589369f8360b0b", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2e9d5e6857dd761131fa3a0738f22fe162546eb655de8db92b934b6dd0718a5e", + "regex": "(?i)^https?\\:\\/\\/yahoo\\-104200\\-106472\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f74ff58a19f941ad5f83ac3d7ce8acf32ea5dd3f542c6db46341f011a19234e9", + "regex": "(?i)^https?\\:\\/\\/robuxcardscnsw\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b232a2cc6ca9e6e91ee26584441a6fda644d78f37e8684e488673452759a1b31", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "28320910d223f4880b5b340858416613dd2a7576cbcb700afa9ee32970fa8ef7", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "74ecdee777d3ae8009ceb48e604992dcec5ffc2da4838ba8c4701889b953a8ac", + "regex": "." + }, + { + "hash": "5d2245e57f61cba7c6465dfc5e219edde7581d526d40bc03908af85cdc36c803", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "df2c55cc1d9249f4444c78adeca96b452021090738175e85543e56e7cc742c39", + "regex": "(?i)^https?\\:\\/\\/web\\-cams\\-porn\\-sites\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "71a4bd784e0a94d7f810e97d0e1e8bda890e8b66d7d6088cb6f167480f20fb52", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3af031cdc928daecbe1e5cdac4945c6c0b451a694c864a1ea95b246e1f06097a", + "regex": "(?i)^https?\\:\\/\\/estsfeta\\.top(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "328e113e32de8264521e20e0d563e81976f35386861c78897725c6f29e644995", + "regex": "." + }, + { + "hash": "41c4649ccd79438ee5963ba17305e8587421a507b6ca5df0638589dae6326369", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-gratuite\\-mobile\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "61dcb112bbb6b5cd4231cb798c7a9316666ce230a09ceaf9b5cff155e51683b2", + "regex": "(?i)^https?\\:\\/\\/eqaheqahaq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2248b225581524a1b5cb106169f14b524d961679ac9d3b88e8e78a24f7a916df", + "regex": "(?i)^https?\\:\\/\\/cams\\-liveshow\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "01ef3643c1a754e015b42d5effa9cb74248acc2cfcc4769c21d56f4b4c3bf415", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+es5ry7(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f20fbe4f3d866f12312bb05bec6fedf79c4cc32c2d16d5d6709d21713d75df6a", + "regex": "(?i)^https?\\:\\/\\/wwwcasibom628\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=94411\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "57bacba5eb609af63631170ab82e4a8908951bae17c48dfd6a6a1afc2d11f736", + "regex": "." + }, + { + "hash": "5fdadae054d307a6629b6812da6808241717268f6c99c61db73dfcbb1107077c", + "regex": "(?i)^https?\\:\\/\\/eqaheqahaq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "15474bb622f13371e75986d4b4e0b32b4cfccf54cd0d50aea1b7c84a9205cb03", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "42879f504318b3958d9d9fff538ebc3a779fb2960fdcb1719f3937787ae14bd6", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-live\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f82320683787600620f108526702c6817b67ccda6fe8e435d37981189ad4a167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "b4d924e703a454b04ea455d35ee14f8fd11e08f6fa21294b5e71a5e28066b313", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1cddacafd551f799a5094ef025c193281af69a1278de98d6d3ee016a665da94a", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-live\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b8dc72a09a09b6e5caef9118365eabcc185c05761875edabf7cf5d737017c90f", + "regex": "(?i)^https?\\:\\/\\/vivid\\-ipad\\-wallpaper\\-news\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0916a6fb1e228a9356745e7dbbdc8014493686eba982694b6ac4ad0340564845", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "57246c9e68938f7dcefdea357736cf201722be66f0dd9076e17775b689f912d0", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-live\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "88b04fd8fd5976c812694d0b45663492aa9fb24a41221c571cf466c53e29a0f6", + "regex": "." + }, + { + "hash": "26cf956f8456bf6dd92cde77494117b2c3c6b0180f78b1910dc509712fb84c1d", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1e4675b973b092acf0da80806ef3a3596db8c1ff390e7a80db687d7ffd64cf46", + "regex": "(?i)^https?\\:\\/\\/eqaheqahaq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ad1bb18a3ee94440199a780fb18682e544cf4030282ecf946eec2bee5fdb2534", + "regex": "." + }, + { + "hash": "ac6d3954fe150ef5c48431f9890e78f05b4afef8c8fecd4b72b8c1efb8f8cca4", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7c922a08f10a9408e9b852ca2354780db593a735af873b5d7d90e4ccff28ca93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "ed80e70dc52568513fc3eb6c901f716373fa75fd5dbeffbe96044ec23a6af2f6", + "regex": "." + }, + { + "hash": "c07072adfa83a2dbc9a70326edca8638b4024a47b1d4dff30cfb62d22dd37111", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-france\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fd65f1f4881aa13f3fac2b6b73f90f534c6e6d6186444e13b7fe2f39436a8119", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "467f43492395bd8d28fb8ad9d5656a256030b69bcdf773cc7760773ecb6e3ab6", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-gratuite\\-mobile\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "38b4b67fe3585b27d3f1e9d1698cd05f9164f7d19ece892814c56296d24de4e2", + "regex": "(?i)^https?\\:\\/\\/lives\\-shows\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "babfacc69f687bc7e379024475518e9005f0ad9b8d48e1a1cbb5df361a49cfd8", + "regex": "." + }, + { + "hash": "5323a3c631fb802a505091e33570d0ca49e85fbc3d91cc55499f3da8cfca013c", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxiz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ecaf4d786793f0748906f0f0cdb8d089ff900210ae49983fc8d0ee6d213fd8c9", + "regex": "(?i)^https?\\:\\/\\/pub\\-c7fb6a30e2174c588a13298cc272bab2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "72f05bf1cd649a5283fd3d4690d92bbbe5540a672f8fed74d927da75ef789d5f", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-direct\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8f905cc9fb037e8cc324f1d5724f88febfb9f5848eaed41711c883e8c0ffc391", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a96e76363f859f050a51fabc4b0fa561eef055e98f179f54cef7e0c9d80ce1f3", + "regex": "(?i)^https?\\:\\/\\/cams\\-liveshow\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "00937bd272ae49f984b56f995d13b2a03a31070fe36cb8791af9b4a45097580b", + "regex": "(?i)^https?\\:\\/\\/cams\\-liveshow\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ede0574d843965872388aa91900f4add05356eb99f3ee444380b68ffe6c3c7b4", + "regex": "(?i)^https?\\:\\/\\/robuxcardscznsw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dd21dddff0fb0c0e087acd64b2842ab97e2a887edcf1d14ba266667ba2dc42a9", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "080a473166ab13bcc62b4bf89267c701c41efe61461914b818fa80dfdfb1a236", + "regex": "(?i)^https?\\:\\/\\/fortnite2024fr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dc3be345b657437c64877d667090dacbdd3e20e0a3a18c15b5994a2d5955f70c", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a666c3f71ee5b9f89c6aa492f993e774b15c2e7bf2907cf88ddbe5904c273677", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "05b4d4a05d624726da40821ec2e6b964d775ff990411952ef19d5f376e8cf97e", + "regex": "." + }, + { + "hash": "38df2a255ee32b4f35300d48d5ac028129e63580a57af187dd06591a58a68ade", + "regex": "(?i)^https?\\:\\/\\/web\\-cams\\-porn\\-sites\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "54d788f18c56e181f38de3c04e5385a665726f0de77c949fb1fe34e0f78353da", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "be5c7ff9efb33ffee462e847d0bbf5cb2e03659af30fbc2d862218a4469acbcb", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-live\\-show\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "af1256edecaa7b2a9e122b7ddc9315d9d348dc15363f6213e90673afa62dbb92", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-live\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e0c83b49916773cd1c23b7fff4ed3fb640fe4eee0520c2d8c24dd375f35482ac", + "regex": "." + }, + { + "hash": "b3a5a452e5eff7846454ae0c3d90c08fc78ce90d9bda52e86204b473c1ac6e82", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fd1ceabccd08902e17edcfa042542116c548bad072cd1f9868fe98a5d02ff36e", + "regex": "(?i)^https?\\:\\/\\/robuxcardscnsw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f10e1a29267d2d4836e994f3a52533787ccc8e6af5a3a0e055adfdea185b500c", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-live\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7ecebd9893439af9aaebbdc4a6109a1b580a13e2c2ac5bf9028631170c5207a0", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b0a5862391ab3b5b5fd763f338f51e8b19ea1ba4690a8ac06a2a25c88fbfcf82", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4a99199d61196aa7126a6d9a4e8b38873521f5ad60dc448ab111a455446d1b1d", + "regex": "(?i)^https?\\:\\/\\/robuxcardscznsw\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=87173\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "71e3aea83964e151b3df371d5f75c80e6f00e92f95522739fe51aad0ce9fd0c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "efa084ed1dd10494a650ba2ad890095ddd8fa2685d41a806a1fed29784ff13cb", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "60a95be028841db3bb1e832c2b1e13915f9a69e4350076468e3a5cbcf5f64311", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "483ca93ccde07676d04898d05a83cd8381fa1b2ddf4704b5dd5b14140cefd114", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+trade" + }, + { + "hash": "380d81530484be46ec3156dcd56593158910a5cfbdbfdd0eee1ad7baad2207f7", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2e8056987f6e50780f74b3ef5d85228f097519b48c5faa27496c4528bcca90e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9037[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "26453f827a59cecd5aa152666c41d08a61f8531a17fea4aab662655ffed7462d", + "regex": "." + }, + { + "hash": "6a79750a7138c676a13dc285f0f58a16a45f0ccd702ebceb216077b4f8a4f8ce", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxiz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "56a8afbc185d6dceba347d4d67c43ad7de8c47cc06e5e03857c653b0f7ba1f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?rtxHyH9dpD$" + }, + { + "hash": "31996b78a885b3e2477fd0c3888dcbe8f6d5d8b25f3fb399e32ac60f54ebeb1d", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b7afaabd6aa586a119d42f2c9c626fd112ad8ef7c9eaf0bd4213aeb6f6804695", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "70ec64ca1ce8a237e4719382a8e1ff69325c39f43f89ff023d19594110753c54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?9liiwiywrtaw4ionrydwusi\\=i\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\@i\\*\\*\\*\\*\\*\\*\\*\\.c\\*\\*\\.cn\\&ocvtpi2jtynpatozzmhn0j3re0x$" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=85781\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "a85e57f7c16da75e88dc0757c0fd2f663cdc89750309be751c052488633e680a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsncdjz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9c2a911c9e0ec4f1ce090047814f9e8ebfa19c2aa53cb96acff522ce8e8e100c", + "regex": "." + }, + { + "hash": "c6fa5c1918a5abc017e4caab5648879e4cb8849a93a84ca0647ce19b92a15997", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "69c1b66fec25256847bdf40e66ebf5dbe3f6c9e9df3d629ca490412c8bb3d88c", + "regex": "." + }, + { + "hash": "379748490f6fecf8da1039ea4f66101d12d8c0cd68256bfd64eb2847863aa2a9", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "763b2de69ee78e9e56d79cac03d8eee27b3288f70302f38d69a55e7a87e5bf3a", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-france\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9i19st(?:\\?|$)" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=97475\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "b2e4da5e36f25fc09216b2e9eaed5e15c2cd7813a81b097376ded7ad04eeee62", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ca4b2c8f71eeb8afa47229fc86cc12845e091e2fd7e21e262d88922660d1be07", + "regex": "." + }, + { + "hash": "a79406ba487159389d95aabed252ca564452aaa02b42c2b0d08c8c2007acb08c", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vl3aal(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ed5111dcefd8764f0955a53a1c3548eb8ab9dc75bdc2e93a68ef2144e262cc10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+1[\\/\\\\]+click[\\/\\\\]+W\\-2DZXPxuxjD_MQwEsULWj7yoVhaVDccYuZ0F_9kNkyMvKkOUh6dlydDty5hPrljc119JXj1Mgmm17PpwHzNPR4Kd2F6hmU6Xqz1IBWTKce6X27edZCz8opqADh5leJDiwxENORcdRCqNcgq2qdJr7jKE8BBSq43HOFXQayIF9gsVOYtR7v53XdhXUYKDBarMytX\\-sWrn897A2B3yVUojLFCjnLS1APFXfOHzPwhJunDwoP3NHgSf6TcrLjNCqi7YECsUDzFckNKi7HyfsQRfrAFgrHOVYlNZHkS7w8__R6Bfl4hhrWtODdtJil9Avp9PSGiaIVOrGQOv8Groc2ZvsmkqevrwLBmp8UBDaQY_J5k03hydQ0k30XRtlSglR68ttIyjyR49TWl30Z1a6YH3A\\-z2Y7d3i10\\-_1Kob_4nRHPNV6E7jnz_jFZ4W1jV0fNZX8LWk06HRDmZXaugaD6Bqhid3vfNnGmITYtXxUx0WBwZRVWIxbVig0OwewcuEiLb31UGN0G6iWWIV8GRtB00q6me8kFXNsxhgXbqy5q8WuCBnP34Gv5ys\\-aPO\\-c4RvjLsJBwOkUq3O2O_Qpq_YdGuifMOaK5kA8vl_NKK\\-TFiL2YjJbB18nyfpNgjyAMOCyuPQxXcpqIz73KMz1tKU_2GbAGunWMzHWM89FqDr9nF_KYfHuFk6EiaGSWgJnUgxWTgxbap0FMr4xQSV2XHY448x71wz7KZYJCsACVmi1MN1dMpQJAwJZ\\-NmZ7IlEDEYDk9zuF8WWF8tw7p4jdJuPqPIpU1ZpusskA7z1sbwgGAv8D_TPp62vbKw6iL1vTfFr(?:\\?|$)" + }, + { + "hash": "130a1aeb95d0434e2b366e7ff83fc843bdd7c671aad7ecde39f561196254a6e2", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7bbea5ac7188d715be936f64121636a9adf3b3d831814966a72dafbb39b7f0cc", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-live\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ffbd5522a9b87b67c05524c4c9cd42535519888aa30b8290c0ea2c9a519ecfb6", + "regex": "(?i)^https?\\:\\/\\/51987024589\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1bbb55e2434f8094586fd7578242e23b23dabda77769f136e4e3592f563992a6", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "097caaea470a903ace0fb46d150eb71a1aa453e08fe46c886667263989a78ec0", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b6a8b2aef90d93d2048a80c1750e33e7831ad04cf5e3ee85478d3672cb1a078b", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cd90a04243d04d4944a6b05baa404e4f7f5331320f530458186c2ba5b4668463", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1206da3da55460e272bfb21aaa3d645f9dc4789c689a62d86d44ff20d3d7f61d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+purchase(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9fd4f12599cefcc4f69086862220aec67db2d118efc84d06dabdf64c80075fc6", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3289445d7288563eafba586735d4a6517e11084df1b0c0e6eb7676e5d4fc1e3f", + "regex": "(?i)^https?\\:\\/\\/51987024589\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9fc74eabdf27819881b65782eddbf1440ea327776567d2fc663a1c06fdf2497f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "65678aa7dd8e518c7407c379ca47826954f4ee0791b4b5e9b4755d05e17bf67b", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4d4697695d475423e301ff44d6a48b6749472a3679b426ac5332af94580c2d43", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4ea2f7812db9b0ad113cf5f8870a7391f53162b617bf3b4416422ed4a7473e9e", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5cd09a04400f24d8302a478cf78f1848ab8f126de0534cfa1a55defcc9d3c0ff", + "regex": "." + }, + { + "hash": "a8e785b7b76f620a565063da177d984232fb6e66c67ee72c570ed9eb70ce4faa", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-live\\-show\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "47a352885a13765b9110ab070f156ca8a940b5a3041228c1f23f302a6cb96e0d", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0c01bc1d8beeaa7a790d1fa4580a405180e9728cddd4b314ab8eabe8fe2329f9", + "regex": "(?i)^https?\\:\\/\\/supporbit\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e79b9705f27c9a1425cab640f318987d417c76932a902c9436c9b8cadc502ea0", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-web\\-cam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4624c07ccf6edf18caa8e758bf604ef7d0ff3e8a45f129213099a86fd03bb89b", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-live\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7ae331591926f48a0722ba08e22fa8a01646cf7a2e89a88cd0ddebb23084dca9", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "727b9442cbc64967580cf5cfd4f837898ca25010aacd3ff15968de3cb32aec7c", + "regex": "(?i)^https?\\:\\/\\/51987024589\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "081b95d3063ff9402c142b6a20a616eaedcf33b78ec8d3ec14b07d53ee62c726", + "regex": "." + }, + { + "hash": "3c397ad0b0d27da06b1f9e17ee87d286a70cbb28179e58860bc1d127f33db4b2", + "regex": "(?i)^https?\\:\\/\\/robuxcardscznsw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "61c241ae0ac5f1d5411337b2c936bb6b579f4942b55851e64b5ae2c255b60620", + "regex": "(?i)^https?\\:\\/\\/robuxcardscznsw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "914d7980e3c96224136913e07d69d5a663537dbd4ab2176e20f1a311b672b993", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e9fe45ae6679bbb7da18f43a014e9a1ed944b80a6713565d534cba80542d0872", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "07a9693f063c23b031c2539c95ba6e018089624e565e688e8c0b9e2e27eb746b", + "regex": "(?i)^https?\\:\\/\\/x\\-live\\-web\\-cam\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8ee049f344c1bf522243fb45a3581f0e1ba7af411f51d87120f64d12c4820140", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3380031b6726c8ca003257adac787f2bcba89c55f000050b4b4f552ea9ea4430", + "regex": "." + }, + { + "hash": "df26f0e72c7335d6ee99c7ffbe626b49d03dbca700e90c7fc8eac54a899f0f93", + "regex": "(?i)^https?\\:\\/\\/fortnite2024fr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1cf1e0645ea84701f34e7ce228bd62486aa348356085af4a700c531c8c290e00", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "837a1ec929842783f77837ed1feb98ddd9516502e5b472d9a4d8c48e10c59fd6", + "regex": "." + }, + { + "hash": "bc2d052ad2b800d509f39a32a9f029821363b7b95deba248261e1619c30c53ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f561591072ba4afa6cdd460b9f9556e4c93339d6d5de14b7b2e0aa0c9efbcf44", + "regex": "." + }, + { + "hash": "e3cd2ea2bccc5c2c4f00276445b87997e4779b7ee3f97ae0089bf5bd81b7b196", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5b15bfc82bcb6b89fecbdb87ea05fe299fd130da33514600e7be1efcd9ed12d2", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "05821b88dafe86ffc9e822c6593bb469e76f6a18ad9adbe2b7ad8545209c2305", + "regex": "." + }, + { + "hash": "13369d018cfe3e5f4bb122835bc5d424cd53f8d7d88ebee39988133fd8449d95", + "regex": "(?i)^https?\\:\\/\\/supporbit\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "09a7ac2323b4935b46d2c2bf4dc065a68c281eebc12b16bcee289d0799c42283", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=100331\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "cf4b803ea80546eb7795bd2ed9b68d7c886e31355962f6cf951ff2d50c6b125d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?email\\=julieannemg\\@gmail\\.com$" + }, + { + "hash": "ba82aa22e52d7e28089a93c8a61fd980e997c26d55e74acbfcb43b7b31839086", + "regex": "(?i)^https?\\:\\/\\/x\\-live\\-web\\-cam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2e35edeb5b2334576f2b5c6d45cffb67a9c93d7a67cccc0b6ce1676541ff7199", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "752a9bb984098e640c1f7f891d799918b5ff1b6751651123276456e858dfb1eb", + "regex": "(?i)^https?\\:\\/\\/robuxcardsncdjz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bef2527723add40a9a7c0c0b912e2d6a09a2daa70c592b17723fa629643d43d9", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-live\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "66b0e8616f3f1bb48ae5f555aa4b83677f3a6d907fcf6c82b8e183e8e583e378", + "regex": "(?i)^https?\\:\\/\\/robuxcardscnsw\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=95394\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "bd98e2d8edf3b2ee8eef9a72a362dd296a9af4403e4c8c2e6d91a8214b6c96ae", + "regex": "." + }, + { + "hash": "950c930e352018cbc4831a1c7caa9ab1e7740a6733cad109bf5e7a75d6e337ba", + "regex": "." + }, + { + "hash": "11ee9d9c4978510fd74cf69a5d6df760f6f7f4d2e7a051b48f2ee401cddb5f81", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "eaf722d2298d155557def524d0d1bde27fd693e8e22295601205f8255463d2c9", + "regex": "(?i)^https?\\:\\/\\/vivid\\-ipad\\-wallpaper\\-news\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1e22517ac36312766a0f58cdb5984123e73d8a065986092ee854fc4a998d6e92", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "be3862cd557f7b16d0375c5996a196f15557a0893b3cae46dc806664e48fcc12", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-direct\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "93e361fcee32bf183244a38a3bed3aaa67c8dbe59f2852943366b7d9e02d8f4d", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "84f7ca996f24f5e680a1545e6a2ebf5dcf691deeda05f13071f55f8f1650de43", + "regex": "(?i)^https?\\:\\/\\/etsurttyd\\.com\\%E2\\%88\\%95wltfpnk\\%E2\\%88\\%95txposxabl\\%E2\\%88\\%95vsbbat\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qyrvodinve\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d6e7fa33f34225d4bda928c247098a1f8b05d41ab3754241460a684727b68f8a", + "regex": "(?i)^https?\\:\\/\\/www\\-websalope\\-com\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "56903294b6a642c364648d4d83138787ec3d8c75567e218c06e59db36036765b", + "regex": "(?i)^https?\\:\\/\\/3115cc\\.cc(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3998dc5b4e9d9503117f787b23d658572a5aeb4250481bdb042ea4312ee9187e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signup(?:\\?|$)" + }, + { + "hash": "527647575395e26124afa9f761c8e3eea938cfd509ad10337618c7cac6f69421", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "08906cacd5acaba01363928c24a2c7ffd9e20c6981523c6064502f46f1e691c0", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7478901e879064a2022b30c306082db95c81ef645c14262190eadcf3014e7474", + "regex": "(?i)^https?\\:\\/\\/cams\\-liveshow\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a008b6c624e01fbaa37e63c8d2bfff867db8b66b14d08b99380baf61f96d6c90", + "regex": "(?i)^https?\\:\\/\\/51987024589\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "95a9c3cd5f79c20111d366dd93604a101add137346d1e552c4834152f6a86ebc", + "regex": "(?i)^https?\\:\\/\\/pub\\-9f5da3aa9238401d80016f1513cb84bf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d4a37ecca186425e7489da3c60d84b0a02ac1f5784a47b97cc9f5d121f9ad1d7", + "regex": "." + }, + { + "hash": "c58c793088cd6defa5a0472f72b9aef8443d6ef2a556ca603614de3c28df5d7f", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c76ebbf54d827ed59312897f369d0d18e4d22999d6f5e0f044712da12248dc5e", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-direct\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "09a08c7c8b7ffe8787a1c67ad5f5296add89045a2c5ce8156780c500bf634ef2", + "regex": "(?i)^https?\\:\\/\\/fortnite2024fr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5ea3281cf78c475227c8c628e5bf1bac06e522daaa7fe7a16e052652fc0a72fa", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-gratuite\\-mobile\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cedfb6739a206c7dd4741c33f416bcc891183505ff44ffa7711c762ba7b21d03", + "regex": "(?i)^https?\\:\\/\\/fortnite2024fr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f560031f2d32cdbc5f0977d39d1cfa88e0b56bdee5f6edd21e42926a35ff67ca", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1844bca863d2c38b0e8b4a1e5f47ccae38889b7cfb579d7621d8ee461de3edb4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195061[\\/\\\\]+messages[\\/\\\\]+17[\\/\\\\]+clicks[\\/\\\\]+300[\\/\\\\]+7\\?envelope_id\\=13$" + }, + { + "hash": "bd0e800db148438344d17d0fe0c47b8e948318f58df4acf07c0cff46f83351fa", + "regex": "(?i)^https?\\:\\/\\/www\\-websalope\\-com\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1fa4cee3368cbb451b59773f56dfd394a6dfa3e8507e1a49502f00ee73743dd9", + "regex": "(?i)^https?\\:\\/\\/eqaheqahaq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ed5111dcefd8764f0955a53a1c3548eb8ab9dc75bdc2e93a68ef2144e262cc10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+1[\\/\\\\]+click[\\/\\\\]+W\\-2DZXPxuxjD_MQwEsULWj7yoVhaVDccYuZ0F_9kNkyMvKkOUh6dlydDty5hPrljc119JXj1Mgmm17PpwHzNPYj4EEBCZzSMP95L30uF\\-WhMpjijxMkRfX3gLnbHddF0meLGi27kWZFVFFjoIWvNOq6RUa5YTXykJe_SXK2YaIi5vdKj36\\-QXUdVjigtyy\\-Pq4_cORL0W9XGUl\\-aHCzzvS47ISFbuudHS6I7FxwdxJfhmlUmUHzwSdmBXlU9kOVqCZ2hSikJ4xhETrXIMcrTPfgh1HvsIFvJ0bMnh0x8KGv00OtuIT9tcjtkAcxUf3coDmuySRbEEDEg3j4\\-L4eA8SVAu5pgsc9uznOrt8DzmjVoHO7uiBQM9UVgpHm4TsGT5W0cS4InPHwlZxKgDWZ2MtaT3rzOMqasKPLkEZXMBeyMI0UItyQ1tyzRCSiwxjfPer2mVKcFA9xNIntGEDEJIIN92RoKJQGoX4OMtEsssuNVWCAmBqTHLwLjsipu9c7vBgCINXFnnKPdqW\\-QJwZPoFc7yp2beROQVXRdz5059SErWj8jw6SSy0nqxuIIgpIzWYxHLcOD47gWJcSCe083hFS7V1RADEynk1LM40YX0I5stUqFDOzbHEye5svchyux61PzhfruaiCJQhs6JC_5OG25DKEOcvY768VgWZiFsVc401USkiG4QztLgw7qV7f55qcyl1R1iS24_FAeNp1T_R8UAm9WV5aG8fnTZrRS8MsAl_3\\-dXpwXXUHcH\\-6FJZP97JFspHCXYZBXYOyiRLbFoBXamqNJKGsyyhqQnM5SWe2jrYuPEnPqgdY\\-bqVWL3u(?:\\?|$)" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=89225\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "ebeb2232e2696754387beccca57c0ca7bda9d8350f0b727585e89c2931a0205a", + "regex": "." + }, + { + "hash": "843452c588455d1a5d2dce6b34ceecdb249c14fa0bb765f9d279a93a31e9fc5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195061[\\/\\\\]+messages[\\/\\\\]+17[\\/\\\\]+clicks[\\/\\\\]+570[\\/\\\\]+7(?:\\?|$)" + }, + { + "hash": "35f8e330bc98ca7f73103d2ef0e85bb5d7b7e7ac488b2fcb88ed9c5aef8b86d3", + "regex": "." + }, + { + "hash": "36727b404446c35299f0245faf3502e85d869d841726548bf83321e2c8572ea8", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5fead48fb3038b854061c531c99ccf97ab7719a59234ba730302d02501d4c129", + "regex": "(?i)^https?\\:\\/\\/vivid\\-ipad\\-wallpaper\\-news\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "16e75a07db25b9d4ce8654169e40d1b66bd7a8e97f1318aa8552b6351f35a632", + "regex": "(?i)^https?\\:\\/\\/supporbit\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5b3065df99e63a0a0f808e44f649df955dcd4b391dc9767da27bf90b75f352ad", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9771007520a394f5b18b27464a5538c64f867b9e6cba9f528d50c58f3b499ae2", + "regex": "." + }, + { + "hash": "483ca93ccde07676d04898d05a83cd8381fa1b2ddf4704b5dd5b14140cefd114", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "501d7476fbeeaa294f47bb6b2c23dbb12b4cd78112411fcc66e1aa39c66d77a8", + "regex": "(?i)^https?\\:\\/\\/eqaheqahaq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7456cff4bf9c78f023a39914ff229fbc249a9104212ef41d99b3acaa5aaeeea7", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-live\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6a5fc662b2cdfc7ec92c36473af986df6a47d724a611765d657c0761ea248b93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "5205192c196e397affac76155ff14bcd3b49a364f82d0776d647e96d92f1f382", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-web\\-cam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "38da013718d945f72478cbef9d63de41aadc5ca87e265dd166d66f07a5a5d23d", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-live\\-show\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e910bcf3cfd53811f6e4edefe85e429de859da009556aa32044b6299a224cbe6", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a9c7c8dff6701ad381c11223a818b2e750d91b8b96036d5419521ddf133669d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195061[\\/\\\\]+messages[\\/\\\\]+17[\\/\\\\]+clicks[\\/\\\\]+570[\\/\\\\]+7(?:\\?|$)" + }, + { + "hash": "c9896a81c1161910f517aa44bbf0e7278e43cf8ea6f333cfc2675f20acaac5d8", + "regex": "(?i)^https?\\:\\/\\/robuxcardscnsw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9747e9e422d275b0dafb96876e71e710404f096bf6d083b1f5bad48d2a5d5ec9", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-gratuite\\-mobile\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a58f3a7f3b84b626e959d5227db91e92b8fa6bc02a6a355ff5ceb661bd188134", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c6aded25a9fd6b21946778354c57002574f7395f8067122cbd9e7583050bd5e1", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c0175e5dcf8912a42d9e5c1be09108cc22bbaf8772bd4297ed2bd05b590a7225", + "regex": "(?i)^https?\\:\\/\\/51987024589\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f3692de5c49aaa0907dfda3b468f4b26ad4ff1b37efebc66d6afe4a78129a1ab", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c83fbd064b563d9f59ff48a4b1deef7ea6e27b7819cc2d83e969c289c55966c1", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "63cbcf1ad1be89c5c87919b5b03094d705a9007335173f36a701c76a13d800b3", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c070b5907d14eac0a840a230752fd257c1ce082bd9d24201909de1027a65cc8a", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4cebfa5beb0b19ee8ad8dbfff93a939a3d9c08ac75b9c70c58285905041926dc", + "regex": "." + }, + { + "hash": "374ba3a5bb9e4ca170a907aedb60df1d66d5cfbbb5fe334acb5f985ac1964fbf", + "regex": "." + }, + { + "hash": "00f614232905844ee4c8c5fbf0a30bd5fa6a856c89e79bc4cf101bc2d202bea3", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-gratuite\\-mobile\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a8b51bc619f321d73e0e21c89fa757a6f11ed9ed21d09acdc1ad1d795677159f", + "regex": "." + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=101639\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "0cd557f01f2a73fc405aab1bb23be880623c5e5f5781ec39ddc4073a34538b96", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-france\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bca9f9fb502db268f038d4be9b6a280e353fb09b5cc5844b6c74c74d042477ce", + "regex": "(?i)^https?\\:\\/\\/robuxcardscznsw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "56903294b6a642c364648d4d83138787ec3d8c75567e218c06e59db36036765b", + "regex": "(?i)^https?\\:\\/\\/3115cc\\.cc\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "53b299327d2bbc528291f0470e529e2e42e3fa2c6035d62500139707569b4d47", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ea86938fc21f6922b5d802f37bf0822ffd22aeb1570191c905f87d42ef7c75cc", + "regex": "(?i)^https?\\:\\/\\/idsroygtl\\.com\\%E2\\%88\\%95segigszm\\%E2\\%88\\%95gpeoho\\%E2\\%88\\%95vixwwfbv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hjrifeswl\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "3b86b0bd68f9ab209eed72a681fcb5e952d14305eddaba41fc9d7fb4ef18f50c", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=96074\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "56fd9aa30aef11b0b4256a6acbbdeff8692d2222ff1000384943c68ef195b485", + "regex": "(?i)^https?\\:\\/\\/lives\\-shows\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5cf945f9f6271222384e8941533e513d79e563d686bc488113865ff5d257e288", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "37df86fa5ddb611b3371dca85ccc197de5b71d46673ac4ec7531f08555f0e02b", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-live\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "360a6da24da715a385bda19bf8f95bfed31f2ff2599765767f415adc819507f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "a1a32cce6851e071fb481734ac698c87d59459e1022df8556acf3dac9333796b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsncdjz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d53137eec9dbda1e33f23e091c5429ae85493a09e6c9c2d24350a9118f1483f0", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ab6aed54acc8bfbfdf187e98e18aede41bff0de481c45405a702acd80ddf05f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?IKd1Amjor5MjV$" + }, + { + "hash": "eac64592fad26dbf8080acfecdf258cf796c61eb1e0cfd2a40db344db9b7d17a", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4fca963b9410a90879b2206dc154047ae2529267dbec58fcfe3482e448ad8649", + "regex": "(?i)^https?\\:\\/\\/amazon\\.qrgzpof\\.com\\%E2\\%88\\%95hupdtsn\\%E2\\%88\\%95tdyxh\\%E2\\%88\\%95zfezkiv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tvejrxg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b55dfe1d29b42ff6423c3b00f1cc3c83bb185b3d1090fe10ab7d53a368241f22", + "regex": "(?i)^https?\\:\\/\\/robuxcardsncdjz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4a4e33e7b300846762fdb4d44794a331afa0af363db7f97f967b0c039d1f9f8d", + "regex": "(?i)^https?\\:\\/\\/cams\\-liveshow\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f8d16695bf291492a55f4af6f9bd9062a08367252de54837188ea6cc692c7ecc", + "regex": "(?i)^https?\\:\\/\\/web\\-cams\\-porn\\-sites\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d21cdbd626f1310e01161a9759e19df2719c1c3b1c3b5cbe2e1c386400cdb", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "586b0893c1cb6353cd2f37d8740fc406b18b986cda8906b02871314bcce795f0", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "af0ac21a5c062ad43b2ccc4bcc576749c7922e52665b2c85dd915062429c82f6", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c208519d38e80f066d98daaf1edc2964df765fe0aff5056d0fea400ed4e7930c", + "regex": "." + }, + { + "hash": "b92b16e94eb7c6409507b6d31929ecc7f5b7810df34aa21065a6967dcc2e2daa", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9458569da5b38432ec3020ad56257480fd6f9ce291aa88fee79253e37326964a", + "regex": "(?i)^https?\\:\\/\\/www\\-websalope\\-com\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cf6687fbae05b7bc39b43bbaa04806fee032465047b16500d31211362dc508bb", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-web\\-cam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8db8988ea18b395c258ebb50a8dd67a8a3f3a6640f323ea980687950167cc8bf", + "regex": "(?i)^https?\\:\\/\\/web\\-cams\\-porn\\-sites\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uv40aj(?:\\?|$)" + }, + { + "hash": "1c45f7db0c3b866bdfaa26d8bd5791a47928ebf566d51430f05c47009c9bf222", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9094c8584bd6b54844c4cc90b5cbe88d58b83f94c94aaa2e444b9e1270c6475e", + "regex": "." + }, + { + "hash": "4761dbc7a78ff60dde7595a9b0d7f4c78c762262bd98d42aea6fe0fe70513ec8", + "regex": "(?i)^https?\\:\\/\\/dittedragonxlxr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5bde7f4bf7b8be626f2be2e13d361bbea28d9b090113c28d1b6ae0e3a0f3e818", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-france\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d4ffa8109ed1efacd4d8974d1d08d36c2deb3b488cebc942bf2b8ec70de813d7", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-france\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e1feafce233dca5cb21031d7f03041d9108a6b26df6614f2a77868b3db95f26d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CAL(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7bff21a3d1a5a54257c4a7ba30dfc8275faf1a416f4736b260e3a87e83243cfb", + "regex": "." + }, + { + "hash": "cedf51bbbc580e6cc3c8b1c5c83e14356d05741cce352ec65dd6b4075076f10d", + "regex": "." + }, + { + "hash": "cedbe4e5cf55c44a805c7d5f5e35158345efedadef6f7eea21a6416bb2effb92", + "regex": "(?i)^https?\\:\\/\\/cams\\-liveshow\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3832155524b4a64ab3e7a15b4df5219e3c8af0f318e8ce73a7b73c1ba59e8f9d", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0441b4ae802a3060132cc40c1d54343aaafa95f9808994f2d60936fda62d39d8", + "regex": "(?i)^https?\\:\\/\\/www\\-websalope\\-com\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bcf41a21ec63914084802800da89cf497394c3da06043424b087a30effa0424f", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "026f29d9a1aff767a8818febbd3f68ee1c0f8357922fe629b2bf60e3179790f6", + "regex": "(?i)^https?\\:\\/\\/robuxcardscznsw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "76d7fa6a403e048fa71055f7a4ca95aa55aa3272cff511e730c033529459eade", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-live\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ffd1614df2a6bda46e85a95b2549e2daab977e607cba2a939d52a47cf231cf04", + "regex": "." + }, + { + "hash": "47622a7781e4614657d6259b4d646a3cdb102960d46feea047bf4bbe150b4d41", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2d9007cdd356938a7066a054f18d8fd3cf4bbac4692737622eb81bd8d7404665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mment\\=Y29tbWVuozOTcwOTUwNTM2N(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f7f9282d11b4c3039baabb5a607fbc7ad39fcaa50536c4d0e2fd6a07b54fea56", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0fdd702bb7489fee0458dbeb25de8b8c3598d462ff925b7617e26a8750bdb809", + "regex": "(?i)^https?\\:\\/\\/votingprogram\\-foodnetworking\\-rs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9afb0829569242389c12f281865173dcf64edc96d5b5e804c8825ed951a7fa6c", + "regex": "(?i)^https?\\:\\/\\/www\\-websalope\\-com\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1b214ae6181db5e32d8dbdef24f6fe21f4b326f1bd97e6a7ffe98848a399da54", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-france\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d3860c0ef49849b09a831923290a9b50022c8231083d0f0e2a45a256625c8502", + "regex": "." + }, + { + "hash": "7f420173f952d733e2d1e921017876b9a9b26c9ba763e47a7b4d92e338e822ec", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f5aa6adacc7e5192f565cd4401ad81c75cd0442a46a3a59222ceeca8ac0ba4bc", + "regex": "(?i)^https?\\:\\/\\/eqaheqahaq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=164331\\&N\\=79\\&L\\=19\\&F\\=H[\\/\\\\]+$" + }, + { + "hash": "7afa795f12de0264376ab6c7ff145392271b743367552b407647c471b51fab31", + "regex": "(?i)^https?\\:\\/\\/amazon\\.exfqayq\\.com\\%E2\\%88\\%95rlbcwzepyp\\%E2\\%88\\%95uwirqvy\\%E2\\%88\\%95utiwlk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dvrnhkqpgc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1844bca863d2c38b0e8b4a1e5f47ccae38889b7cfb579d7621d8ee461de3edb4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195061[\\/\\\\]+messages[\\/\\\\]+17[\\/\\\\]+clicks[\\/\\\\]+570[\\/\\\\]+7(?:\\?|$)" + }, + { + "hash": "2a8c95f9aab8000053e171ae7d74362817d21ddc719cad38bc979b910139098c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsncdjz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "20b145c1784086aa62d5bfebb51b8f3fc64cc1f24479b4461790f5ed5e5bc1be", + "regex": "(?i)^https?\\:\\/\\/robuxcardsncdjz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "496e758a1544ed23f7d72470a856413f4e6700fd3a84b8aaff5c2b5b54e1c269", + "regex": "." + }, + { + "hash": "0c6324d298f73c8b360c70cc75c07cc6976a7649347c3cf480c83b8bb97b4e10", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "434ac7d33f346836cbe7cfa001c290b2151a7e10124f569eac876790615d35cc", + "regex": "(?i)^https?\\:\\/\\/supporbit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2e04f8da6cbc014013274035a1df17b383d860b299e6578373bea2c7cfff573c", + "regex": "(?i)^https?\\:\\/\\/51987024589\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cd1e29395fef230bfaa8db1e1819c82f933317315a46a65ed769eec571bbbfb7", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2ebe7e5630eb8d17fc2d60aae379d82d6f2b8832ffeff84ce28dac291ce1a506", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d98dc21abf5cd2c0d6466294adfc8e52c6e373609d96ea621ab5f0450e6fadf0", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "66349758225f4eaec13b67e35e5f6bc879c7885a700de330106acb758176e678", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-direct\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "34d0622c74169d1a4ee984d1cd9ebb8d36f642e28fcddde12ab36370ad1eb3c3", + "regex": "(?i)^https?\\:\\/\\/robuxcardsncdjz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c4dfe96ab4b6629268bff170a98ebae7981a14065c73aa73d49b8353434fdec8", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "61d2c2de5349d2f0e92cc589c695137277d82058852558378bc9dddbdb47c214", + "regex": "(?i)^https?\\:\\/\\/vivid\\-ipad\\-wallpaper\\-news\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "37bfd2a67529b74b4dd80c3ddc868ea05888189239c22290ad64aca3d1a262e9", + "regex": "(?i)^https?\\:\\/\\/eqaheqahaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "68fc02aee46bd2f9c5b262abfc8405bdb82b070176842523ccdde0505836fa07", + "regex": "(?i)^https?\\:\\/\\/eqaheqahaq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "902fc4c203afda3f5c3b56d3f7de59353bf78abe1e31fb2201bc3c51fc3c6d3b", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-web\\-cam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "56a8afbc185d6dceba347d4d67c43ad7de8c47cc06e5e03857c653b0f7ba1f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "2d7e0c7f0eb867de71a8a606f46b1ab3da02994c15a14a154ca0a384e9733323", + "regex": "(?i)^https?\\:\\/\\/web\\-cams\\-porn\\-sites\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6e5493a4184c4910cb27c4ef39bcb6e6001d7123a5c06d0d6141cae81b82bda6", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "77a655981010b358147a61168f9a1598598ab93a737bbbc5e70fbf168294da08", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-live\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ec557f7563b1ce77c1a6df39c869234129c580f3183774deb490dc6b0237f3ed", + "regex": "(?i)^https?\\:\\/\\/web\\-cams\\-porn\\-sites\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c57983a658b70ca18109c4332701aa12ec5de26d0915b877e3c00a13aa482c59", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "20c9e45c2e47b7834e9200cd6f5748a3c33ddfa4a0f1f4ffe7c7ac3ca7f44d72", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6e4130d2f847f70d8bb0acd3e7794f798e7a8f384d5a15aefb578cb4f16ce0b6", + "regex": "(?i)^https?\\:\\/\\/x\\-live\\-web\\-cam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a9a966605125eaa97658d1356f3a00f6a94714f0f30bfeeec3536512f9d780b3", + "regex": "(?i)^https?\\:\\/\\/supporbit\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "158262ae86a9c1109cb1bc9267de4c6c27693fdea957ef1076a90bcaba5c6662", + "regex": "(?i)^https?\\:\\/\\/pub\\-c00950aae9bf4b408c840397161f325f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8d33b999fae170b4a079537d7295bc92712b7fd1987b0c98f73e873c17213807", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "237d9883f766f42611c75c6287831e5fe784b0b3e583ff0766ae3dcca1007654", + "regex": "." + }, + { + "hash": "f8fca581e8250d7ca7fe79fe2abccf38f6920cfc58830c492975c8df07604e44", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "67aecccf54d330dfe4d6e9cf17f893901dd5bfe362f554d2822d4c7856e0c9a1", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7bf6a3c4a1faf8cf2c460158a971e2c913b645ae580e84d754f3652fe70544ec", + "regex": "." + }, + { + "hash": "de2843149a0e62038b3980b0e04423125c1829837da44937e7c61adb81a8cb62", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-france\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9e7bedd39de637e7746e896baf278cdc83db2815abb4bfe7f535d27bac753bd4", + "regex": "(?i)^https?\\:\\/\\/robuxcardsncdjz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f1aef487fc84a831d98fd2bf87e6eb96dc3b51ad3bbf8052d24474cc574b1878", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-live\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f453659f64ca9e9b29bcc79cc2ba92de4481eab5a545ab0ca4d5b88848ee7ad9", + "regex": "(?i)^https?\\:\\/\\/freereedemcode\\-2024\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f8894b759688e8177988e1cb56e83cfd2944c2ae67f35f9cbff195c749c934f1", + "regex": "." + }, + { + "hash": "f67bb0f08338860d09ef63c40f7e6cce168bed194c5b67388cc7f692c4e971b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+serufuf839899873sierrkklfzxhkj3q4q3(?:\\?|$)" + }, + { + "hash": "ccefad4489f6e72fd7c2eb0ce69e5fd5149458015d576b98fa280f0a151f3acd", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-free\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0bd21e7dab39d73767e4131a6482be449e49c6fad5ae6b54ebf764e38ada8b74", + "regex": "(?i)^https?\\:\\/\\/pub\\-9e9538550a6d4f28a2ad6546460fda8d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e688b5979de5b7f8ca2c35b1f8a0742cfaf969a1159ba5befe190d5600cb9ffa", + "regex": "(?i)^https?\\:\\/\\/supporbit\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b98c693aa4415755721ef7351af255f0250995756ccfdf5e22c0909f6ea2c8c2", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-en\\-direct\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "294b55d1e50430034d4fdfff92625928aaead016935bd8379d41e23dc7cb527d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "2c8e6abff7c87dab1b763231693f5681995680a13c831b175d944c91116e8ecd", + "regex": "(?i)^https?\\:\\/\\/www\\.miguoleyuan\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8a016122c710b43035079494da9fa70321e2f2c73dc249a5477a867390e3c479", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-france\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6a5fc2ae0de9b88c1a889057876d1f538654dcb620bf4570b45dc22d7bf5baf5", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bc34e64b0fab710ac4f212e29d0828f4ba6a7fa8aa13aba2ffec03100525467e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=92487\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "f5e2f35db042c821d3951f76e03f051bf8ed7752ebbdd6c414405965834b1da8", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f99f066dcf3e29a2f809cb418e643bc6b384e6f3fa7b77fab3255e35f9f53059", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+form\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a53ffc5c5ff54577716ddb60b7b4ffdb1ef5f0c003b75633560fbc56614ff65d", + "regex": "(?i)^https?\\:\\/\\/jigikiw625\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=86451\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "db205649facd4d255502dd32bcdb160dadcd3821816219c5b9407022132eb206", + "regex": "(?i)^https?\\:\\/\\/x\\-live\\-web\\-cam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3a494c2ffb09af7539bd76f264e939293b98d9fe499713e747662c58ed8629fd", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-gratuite\\-mobile\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "79eed30afc8a099d8f5bad61f49933cb7053c0e4b55d92ea8b2cbfe35fb8f1e5", + "regex": "(?i)^https?\\:\\/\\/x\\-cam\\-gratuite\\-mobile\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cdeed00e54a8f36f6ff034b50ed4db3ad472588354ad7dee00ae56aa761395ff", + "regex": "(?i)^https?\\:\\/\\/jardinideal\\.creamclothinginc\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "313a8bdaa12c88fb6d26d1926faf61ac7cc67a9afd7743f5d3bef625ac1734fc", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{11}\\.burtlington\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "ffe4574ff6ab6c2bc06d2ef25bf065990b68f3a8e46400fba6bb263e1d1d1d25", + "regex": "(?i)^https?\\:\\/\\/koasryruxahsanzhasua\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d3863afe2081b6918fcedb642948903e9a15bc43bf09aa09523e94ae3b90326a", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a419ee771ab640e132dda4d875e28e00083355a34a89561d0ea63e760fb6b855", + "regex": "(?i)^https?\\:\\/\\/robux\\-fiifd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2e8056987f6e50780f74b3ef5d85228f097519b48c5faa27496c4528bcca90e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9037[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "14fbac2b415e072bc408aef016f82a20f11432aa75ae7d5fe3fcc60416cdb486", + "regex": "(?i)^https?\\:\\/\\/vivid\\-ipad\\-wallpaper\\-news\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c004f721a2259baf8a5f402613e86ce03e4dabaa74acae77dee484a186d81f67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=95899\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "a194def8419f334eb00828a2e0de82f1c2bc005c24e1e15c67290036466a6677", + "regex": "(?i)^https?\\:\\/\\/cams\\-liveshow\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "625d991fe85e328a7077254b139f19b63a2a61d31eb6db43c252ca2dd317d280", + "regex": "." + }, + { + "hash": "7a65ddb63d64bc9da92eba428b0a118901961f52f8bef6026c000cca6c41aa1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f6e286c1b96a2d6d02c4d6d533443fe52e04e79038410af5ef35052ad058665d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsncdjz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d20fb5ccb0e4d0ba401f40a7c474f7ae6d2ab05abcf3eb2c14274b25e6336413", + "regex": "(?i)^https?\\:\\/\\/www\\-websalope\\-com\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2853b98b1f0c1b77489efd569adeca764d59bf51ea372ba9da4e5e834944446e", + "regex": "." + }, + { + "hash": "1a7040eae7e7fda27a49ab369ee8ffda1a44acf67bfbd97afead97f41ed9a15f", + "regex": "(?i)^https?\\:\\/\\/qaehgeaqhbqah\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "845f1f43cb0c1a41bfc7dc9e53c134e26373e7f3604edaa621d06ec741a1b19e", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5346cd00e6d92ef3b64b05e234f724ed5d6f5a6ab0ecab6cd9441c7d82218c5d", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxns\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=98305\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "ad63c76c5bf09de44104dd7964bee9ccaf11efac6d0c6bee532ea6f17f37dce8", + "regex": "(?i)^https?\\:\\/\\/robuxcardscznsw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e8ui19(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df5067583b73e2955595dd871c735fe25d3d2b18ee57dfcf98b7ab5bfbf9475a", + "regex": "(?i)^https?\\:\\/\\/lives\\-shows\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "99da50b31bda0ca56b2a0d9f2c5cc27406e94097b1780473971f5e7f971cc688", + "regex": "." + }, + { + "hash": "23f2d9f208130f4a7fdf549302e572351517fdb36de034e6a977cc233ce98a2d", + "regex": "(?i)^https?\\:\\/\\/ghdhgdgbdfgregredfgvdfs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=97339\\&N\\=79\\&L\\=19\\&F\\=H$" + }, + { + "hash": "5c504716f04067a81011872546452283b50298c15933568e499609cbd53e8e51", + "regex": "(?i)^https?\\:\\/\\/kelchneroldtersjie\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "37222e9d5b290695c391c08f41681f73381a81691b26013d9d9e08b3ab98dd07", + "regex": "(?i)^https?\\:\\/\\/rubakkorcssg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "dce9cfe8e3f3c9138b0c827a766a20c41b1d95bfe851dde5890c9328d3c425f1", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-live\\-show\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f82320683787600620f108526702c6817b67ccda6fe8e435d37981189ad4a167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?64FtkfPCu$" + }, + { + "hash": "12064757ad89c071f88ebc639b9e79a11ec5466aa6bb0295fbd2b060d579f468", + "regex": "." + }, + { + "hash": "f7cf6165eca66be8ec5e11e89cb40898fa158cdbb2fdca6be8552cc160d5d279", + "regex": "(?i)^https?\\:\\/\\/cams\\-liveshow\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "67b9f350ed8b16676d45e9a49148d4e84f7f5bd79279907cd3192006d2dfcca2", + "regex": "(?i)^https?\\:\\/\\/anarasiusunicornobsfep\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "406b854b8b837684f77acd83488c149a606dedc6da3cc2dd51398c51067053c6", + "regex": "(?i)^https?\\:\\/\\/vivid\\-ipad\\-wallpaper\\-news\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a68f57c34985391508983866d0a6b9ca9c50d9dc9cbcc522fd3b73036bf145f1", + "regex": "." + }, + { + "hash": "1884816fcd063d376b1672ef7eb497dd3944330dda669e2c2b887b9ccf5b994f", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "32c4da6ba5bb259a65848cbff46ed34ab545395141ed499ff7dd91929f294a69", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=199894\\&N\\=82\\&L\\=21\\&F\\=H$" + }, + { + "hash": "e266caa9d1aca260b0379ae9a28502ef53fd609be428ad1803145495bee528ee", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7a0ef1cc3d264ca1adc47cd738602e5d7059e6c8e4dd8404e87475558457603c", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-beach\\-tube\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "81529eef64a058ac542c6a3af043cc10dafdbd67c87bb455d5035227380b8f78", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tube\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "92fbe4f365f0eed8ca36055059aebf0c3511e7c1f5359574e4e00701ceaf648c", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ea8b11c8faa04fa3c3e7ad5e1554cf09f8dbefbf331c5deecaed8ecc149bce4e", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9ad58d3d0a5f4d9dccb6ba766da291e62d3c6775e0f299c98d8c5b8e698adf28", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f9547121a1bdfaef5c04826fb33a13c5d52bd2ffae267f89856fd5842c59d122", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tube\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d20fad6dfa71d50393a7f8c340dc89c49079844db9e531be974c7893466d0f17", + "regex": "(?i)^https?\\:\\/\\/videotodaycomrggfnmgf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "defd20791f55f84799803388733fafb04d9a1c6699f1914593c72518f9d536d2", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9516e47a383f87552f3d29fb6c3fe39707f07cc94e10d81ccc31316ff3d17c81", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "81619d6fcb08ef725853720d430484cff333fd027fd0ea51d966d2aae7a2c233", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cebd24b449209678fe3bb364958563053b6aeeaae7cc5096bd5f973557583761", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tube\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6a92d942d84969f8d4bcd51aeb9b232b6c9bc82af92d1b5c6b2dab6add587808", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "402b573616e35fba74ce13aa773240217aaa4c3d6a83db4ff170787f95c02bb6", + "regex": "." + }, + { + "hash": "6991bece8af873990d0a70dca101628f742607b14c57eb7cc2f43f87cb3b7b72", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8d3b1c48e2e741f1c3fc27496c30cef01471c713b0d179bf629b3196dbc491b1", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "889d2871b5c54527eb3e527e0edc67b04fe1d9291ca2897c3233ed699302589d", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a61740cb9c4eab5422133b2d02ca60bb27cf84c84031417b6babaf8f276f8ccc", + "regex": "." + }, + { + "hash": "bd608b92eef899d5a8380ef9af7526d54ac8ea23c5cf296ff8f4cbd908a51f42", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "62fca652f3f7f8c5e3769491b22ddd0f0f2efe2493f48863eb05dda72c395315", + "regex": "." + }, + { + "hash": "9969124669141c375b4f7e1d62fcbd3214bfdb7659484799e0c2d1c04c4fbc33", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0b01d421f35a065a95e8d3dec2f1c14d0c942204ebbd71b2d57b706e6feae234", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d240085cb6f006f8bca5d6c58851fa5d8149750ded903293cf0cdc6cef36fcb3", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa5610099e7c063cb3344aaf700466cd12c9c8f88294b9fcb6b11ad1029ae88c", + "regex": "(?i)^https?\\:\\/\\/ghgfdirtyuirtufujdyhfdydfyutdy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "650e1eca0e9f7fa723a0bdc6bf9af4ab55faf9f40c9e2fcbc396932e55bfa19d", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5fda67e9c08260380015e9ed4c1da38933a78f9f59e4810e8789e8c674b3d0c9", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b95acd565e2c3a60cb5aaaa71b4afaee5f35ea6a8569fe7a1314e701aa74e446", + "regex": "." + }, + { + "hash": "ec32e18b0c827262182125a4f2a9fe9cd0c534c522d469718a78ca7d2f8ea869", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2df31c0d60de7a42b55b3075cd8fa44fa9ee548c6dbeda22f57de8528c38c825", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfhdfgfdhfdfhdf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cd73471878416a8a69b5bfe512d51fd01b1746beb72acaf022801e9da09f9b59", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c52a5a77d7209223964b6b84009c4f5d3c03b75b023b843dbf07a6acd179df28", + "regex": "." + }, + { + "hash": "80a7c7cfec5f3aa062df4c6bf2e2056ac721622ca6d194b90fd71b41bf5b1521", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "660fa6db2f0aef97deedf93e982b84bb9a438e7a6fc9d2480112bdd2994e041d", + "regex": "(?i)^https?\\:\\/\\/ghfghjfgjjfgfgjfgjdfhdfgh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "70f3eb35c78141a4d19c5aae378fd8d3c78981e77556a7256af96089fca8d80b", + "regex": "." + }, + { + "hash": "ec8f535dec08f375339146566878bc37875e5dff785549aceb5f4da8050f6546", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Media(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "00b30bdcf5e4db8ca485cecb1eef9f906c665b18abeb93a2f253f7575b7beefb", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "68809ae3c28c7b89d6c03931d255aee059cf2afe77c49a04bf458c74f27d673c", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5246315c7380311e42cb76166eeab4f26f07e66e56960d512781fa2dcc47fd61", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f6111b5fac5e1a1947d16f3170aaeb8c9ea18731be69844f19a498982fd2b63d", + "regex": "(?i)^https?\\:\\/\\/bnertfjgdfjgdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "70ec5a57a665f9111f535380c8a1502a4589d2eb39905f17d58cde452244e309", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c16676e4ff745a43758d8ad5582281c2102ed426586fdd72b299282a841053ef", + "regex": "(?i)^https?\\:\\/\\/dfhfghgjffgjfgjjfggjgjffj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "36c3445fc7f4dd8b9ca198d4e8f5718e71cf87f582fbe0f381854173b5de2845", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1620e52a6e1b23b958c49baea7996eba0926d763834cfdb7a09a1ea5a08b7933", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "03df18216a74a9851ade78656578765f7562425681f0fa56ccf77b98a08d59b4", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5173316f5a8b7892afa354f06f2c9aa5f22cfe9261f49ebd1151d0cb7cb1bf85", + "regex": "(?i)^https?\\:\\/\\/nersdrgdfgdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3bb84a1c8dbf4e05affe418055e552cd77051d573bc3d53ddaad199580b53129", + "regex": "(?i)^https?\\:\\/\\/dfghdfghghjdffgjfgjgjfgjf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "035a73b69bccac7bb45b42b9ef46d6d320af4734618667ebb62789e6192de395", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e3294cea718c98d2ad10bcd60af723bb87c5ed60fd63c674adb54f7db85322d6", + "regex": "." + }, + { + "hash": "9d14624cdb9de6bdc28f6dd94a08d1d6deb4ee8619764d4a3ed77a4649f1bb8f", + "regex": "." + }, + { + "hash": "17e905c21701da72369299b271c9bdf02b375a10d51979fcdc76ce954aafbef6", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "197d9fc0b52f8503d78bf8587c04819569551666f0e9240383eb5f47c530b16f", + "regex": "." + }, + { + "hash": "2ba9fef00e809195d24d59f66c1b616dff06526e6c1d7c4ef4d21c5f5e8f8e1d", + "regex": "(?i)^https?\\:\\/\\/nersdrgdfgdfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f903f04704496a1a641e7085f3edb1ee961509a8b290de5ad7bd425502bf92a3", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "95fc68b88b4e9712c7d0b9ba1c7005711ab9fdb09b33234c6ce3faf2185acc56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vox\\.fixar(?:\\?|$)" + }, + { + "hash": "df558f78a938671c59f035d6626f664ed514049a0e214dc522f0bb9955ace305", + "regex": "." + }, + { + "hash": "7637ee088f5eefc637ca4094f2c09ff35100cd3483fe2779caba7f6505e37414", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdffghjgjftufgj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "72b5d2b1a135dd7f8ebac883cc91dde4058beae13934b18c3dbba2c22a945c67", + "regex": "." + }, + { + "hash": "9c3a411783bcc9baad519f180253f7834efeac1309ce9fab98d6bf5ba7065ed8", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdffghjgjftufgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "edab53bd791c7957bedce4dca1300b114fe47ee874dc7facb172c24cd673119c", + "regex": "(?i)^https?\\:\\/\\/netijkdkdd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1a8cb19439949cea427e0a0bcb80db71fb4b45f3e82a3cb32366467df19382f1", + "regex": "." + }, + { + "hash": "566a266bd3e67c069e6cf5dc1a252417a202d5e5fb124becc0e48687d3091fee", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3871c5275fdb1c305fadedc93c46a2d2e6f49847cc8181a622c2b70f62aa4957", + "regex": "(?i)^https?\\:\\/\\/osglhbmnwb\\.com\\%E2\\%88\\%95qeepwhilg\\%E2\\%88\\%95cggbjdlczk\\%E2\\%88\\%95efibc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bxhltb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "41a6cd20ad7fef0dc93046924c9df504b0b3a7cbfff18149a209cb4777158fae", + "regex": "(?i)^https?\\:\\/\\/centrum\\-109249\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1b99f91c9e777dc3975e4ce4eda09127bdb83e835035a2d56195730077fe49b2", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1a2f8084526f6b8f758aeb4efa2a63f4dc8d558901c8602cd1c74705e22f62f1", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ec5b93abe66ae40b2dce678f8472eccb93f72c97235efae4f027f714f830aed6", + "regex": "." + }, + { + "hash": "418a2d415446a0c8049ab17933e3d9181a2997d35fbc341920a260d41057a3e0", + "regex": "(?i)^https?\\:\\/\\/videotodaycomrggfnmgf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0c008ef43e138ced6ed17ee024f9ade97c663c9b61babb8677144351015eca63", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7590972af6fcc0f6e07c5422146cedbc5e8f60a6c32869ace80e9457453e30e5", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e38b1e30584084ef5e4165d00bfed4b0c141f262d8ad7326fde39cd47f96f4dd", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d36ec487f8f0fbf847a82917765c3cbea5ea93c1a2e86650630bca552228e74f", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "574ac48fbf817bb5f8a5b76e075f50a3ba31d1ca8c1383ff63128507fd9b9b40", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a7a6ed0cbd127dc873a3cd6a96ce43614b027111ec6dbce9a5e6d985e3ed2f64", + "regex": "(?i)^https?\\:\\/\\/votingprogram\\-foodnetworking\\-rs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "19e0a0021026b65a67a6d1f7dbfa960027f8ad13dacfad179fedde7c80774338", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-beach\\-tube\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "805ceac56f08241a4fbb9bc0aab726bbd8c5c414d5275a86c89fc4ed399cb9aa", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e57de8ee0dc14bbab2f2330339c9bb15722af3f35053df459edea280da338144", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ed5111dcefd8764f0955a53a1c3548eb8ab9dc75bdc2e93a68ef2144e262cc10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+1[\\/\\\\]+click[\\/\\\\]+W\\-2DZXPxuxjD_MQwEsULWj7yoVhaVDccYuZ0F_9kNkyMvKkOUh6dlydDty5hPrljc119JXj1Mgmm17PpwHzNPUMe3UlcUvDMp7lZYWU\\-2AV\\-2W56aUMSPFcKfMuNJoXGTJTi0PAtCbhCSOHFGX7\\-6gcOi6sLhUdCkzI7SspMcucn1C24YZiir449\\-DYJnY7kck3MdmX\\-mCpaDJAyj_ySAVKq3j4KkDaKAjM14vZS2MF7ciWzaY3Ub1ntz07ZVKyWDBEGNOoGEjXt97Cg5VXVxP3YZCRp4tP5qg5alBhp\\-pIjHmhmhSm7eEcPBbJiLf7_GeUGkspmGutcZqPsY4Pv6gMp0QbXIA3shDrv0_5rLYOWtaWqVV9KCi_rGY0IQ\\-MflrpRilBeRZI33_ttN2YK8jvmpFxILGItYulkweK_qojlBJZ1rjwCZXd6X1jpmzCNSOEv6hTwJqv4sHlz0lQhA9sZY\\-_C7vt34OxACmyufTUaqWhqFe2w8n\\-5TKUkO3Fd7hk_3kXZMo2FSa\\-ujcpspCN\\-\\-CF4q0vw0tcclf9hryHQKvqRVBnBOnU\\-17kbJl4I7ao09X4cORFgmkXIC1\\-AYkt1ZuDSjCdf\\-_UqLRsSuNkJsNgn\\-HmCWQbA8IilNCjJtVlrHEZuV2zBlwtLE5XZoXER6BYOSY5il7jrkRghG2llkxhxQvTButHy1MY27qNJX5D1Co9UO91zp_zi6m0gc1Fo1x1rYGiWYrc0_x_r06CzQ7rOZQUerO_s9ZLI5QkC9\\-B9IylJcY\\-KVCVHtslfvt9njcemH_u6YFxlAtVMtMtl6JtF2UEPXznMugnPSVom(?:\\?|$)" + }, + { + "hash": "4673f077ec85dc3a460777a76d9c1d9381d07e962506f9c34733226725a29181", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0a8fa\\&id\\=topdon\\-france\\.com$" + }, + { + "hash": "446f3ed0d6d7840eeb462f553dbf8bca0f90d99c613a9defe6887398b1555a19", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fe028206bc97dfa5509a340ad24ef6173ca1c0d0e117326a97a2b59494dddba9", + "regex": "." + }, + { + "hash": "e6db8ef498ef169eae0e04e1fd7cddcaaae61f4967afa34a577bfd530d60e4c7", + "regex": "(?i)^https?\\:\\/\\/videotodaycomrggfnmgf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8f2d39f7695bec75ca5d2f681ebf4d092cd6cd3ad1952fc798ad8bfc88f084ad", + "regex": "(?i)^https?\\:\\/\\/candid\\-voyeur\\-tube\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7ca950b28917df1ec26c24af290d279c8621918538af69d2d3902907b6498923", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e2ddcde7b7abf7f8632ee77925757d38096ab3349c3b211ab8a5b873c709ad35", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7d4dcdc50d8bbfa399df6dc9929d3ee860a2e089e3e340ce16e174855439e7f3", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e83344327d0e579d6a21ad18da40ebd1f20ba88d14da7e9f5cc09b46283f56c7", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2a8dcfeaac8e6d8ca26613269cb5a6abe932943d14591392741b7666af1cfd00", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f74fda4de2e1a87dbd13758eba3bbe76543e295c110c935565af544d199309dd", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2600877c1a123a721c7b1f8d7404c0bbc02ae89bf090d55d55e4f673f3d3cc53", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "169431dba5999de3292ddef185e48331cd7a9fcd9facbb9e394fea0103e6db58", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9d9373ac958f7e172e9672746a09dd65de232c115980f659f351969a61d58b24", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c6c248d56018e32cc80e75d14eb9ed9d96314b184fc91d9b7d68a5c297216963", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+magi(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5536fc7e7acf4d8f6c859954ee82924bb1693b8628e6864f33c9499648d5ea14", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "32ae0496586acea1a489bbf2bbc179c271d80e1cbc7d8c61a6ac4513eb55c879", + "regex": "." + }, + { + "hash": "19a3aa9c649df0605247fbc435830fc35fd4b25af5fb53a2e8216a028211b50f", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "71b53f775e0ebaf2c4f53859f04fd8d40483f586c91e722aa35927cb425b3d8c", + "regex": "." + }, + { + "hash": "5b32db451f3ad6418bdb20199c4fd37ee5f92ab097016c8e4c07db73e6d64ddd", + "regex": "(?i)^https?\\:\\/\\/netijkdkdd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "36a63c14570ef23e4d5636baabc01931fdaef7264c32b299a7d0b8ee7c173b9e", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhdhfdyhfdhdfhdfh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "110446e93fe3db24b7f65afd0ae9b5ddc45dd2e18c46c46eece986414f9c7525", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1b9987dd595a890b54aaf45afa9f82c351dce6f246fc9f3943543912e978e903", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "94fca322ca0605e13a76660e55040247adda2fdaa0ece12c9f2c3998dfc08f8f", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "51ca513f14db6459b2163a9001bf081258ddd4e478470b09ea7d9a4d5d18621f", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b92b89366e3f57fbd1eb8e7e5cce35e89388139b4769a768b9a85d173ce6dc07", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "92c516855aa314264d5cd44d6a1e122e5b756f317e5d6181fdf036931f431797", + "regex": "(?i)^https?\\:\\/\\/slcghgcs\\.com\\%E2\\%88\\%95exeyhurd\\%E2\\%88\\%95mluwzpy\\%E2\\%88\\%95tmgydyp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rbwxaxt\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f91b10b4b95761ef10833681749cad7d42547783b84e9c831020dc17c4a570d", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8a34eb4af085381062dce4a9fbfb51a53689cb9c283d07fae08fdb1bc47864d9", + "regex": "(?i)^https?\\:\\/\\/candid\\-voyeur\\-tube\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7ca97948f2cf8b89777ad3366ee3dcfd20473a0d004458e7ee92ddb09bf880ef", + "regex": "." + }, + { + "hash": "66fae57d7e2d78c60d315f83b9179b1482af6ae8e7259dd20edc81785dba998e", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9cfa8640135fd6a067087fbcfc601e6a33a3ebd973d08c28585976895ed700a8", + "regex": "(?i)^https?\\:\\/\\/votingprogram\\-foodnetworking\\-rs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "86940109f7fd537f203ede376fce118003ea6c2e26abc219eccba5e00dcd7704", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "32255e910030ac77e284f1a3102edb31f44ac4d4dcf1f8b3771efcfbff36d5ce", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhdhfdyhfdhdfhdfh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a8fac3a23dff6867a3e544c765bbb99be81b71510c0faca7f211f712b0af70a0", + "regex": "." + }, + { + "hash": "ed6bd1ff878503712637e6510bbb30f6ca24e0f60aaa5801b7af9de2b0b05c81", + "regex": "." + }, + { + "hash": "9136b73243ad1bdce0c461311b8ab445da9405c9cfe802d77a76e05b3cad5f07", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6fcf2b586f8004ceedc7ffa25b7376a50d57c89ce53a2c46ce0fc5108a3bf782", + "regex": "." + }, + { + "hash": "fcc09b65696b99906e077ce69899be83b66af66578ef0311bf03f08c60f1c54f", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4b615cda1ecdf334c993f63443620607550ba9ed3c8f88c2d660175a020954b5", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "63dc63b9b5343864e18f51911a4fe25c295418b31546491536ac0e95e7456f83", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "45734b5e40940446dc72ec249f77be9e1d501e6be376c0dfb849cfba49ecc295", + "regex": "." + }, + { + "hash": "d8772124e5a32f2fd5178e94618e4a6e1780551e7f167f44ccc9f191c0e67088", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3f9029f76bf35b01a615540de4c6754a264e53383815138de4403c2b385f4b45", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5e8963f9aa60cad21bb122ad50d92f2f6270b1550f3aa065f8b850ca1d8f8cc1", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f5fea3b62f47e7679bc2e9f2394a66c47cf8580004223a89da170fc8c0b419c8", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c200a6597e479632b0cabe05a85819cfad0bf2378c75129e205ddeb686ea77f9", + "regex": "(?i)^https?\\:\\/\\/videohd1305\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cfdc594b0cc2365acdd56bb138bb2144f73838c35712b2ab44541e8a3167d61f", + "regex": "." + }, + { + "hash": "f091f2e483569b827683830459e8817190c37936e30b58012bc8fce1b190406e", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "451c07e4a3a3b3fe46b00da70eb1d803dbce449fc933079304658c3ebec7f029", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a2599e820a6b3c8c7189a58bccbdc13c0d3f674c8b3286f6065635c69b25477e", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "dbbe71ae3ad6c48214e9da48f8d12e78599b1fd094b642f7aaaf2b1883e86543", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5965b328fc3ad6bf271f791d61f25cf4250428c8d26dc6957219d85842776754", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a0469a65d4e8085eff19233cfeb25ced89c65d52f34a35b5f7f4e3474ebbffe8", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "320dac76c005733ec668d4ee9ae9d1913b07e14612aedef0960e37586e6c8dce", + "regex": "(?i)^https?\\:\\/\\/multichaintoken\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "ae6e9556ae26931c33616cd08e4b8601c4da8c431ebc1c5a3f503afca3795496", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{6}\\.anydaydeals\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "823213594470e066d40324bb5262f322d35bc60b5bb94013041f83995326985d", + "regex": "(?i)^https?\\:\\/\\/shahzadproject2\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8fb2198b6b67703cbc19357dd5c370a573c1559e07feb45845a5cd674a524cf1", + "regex": "." + }, + { + "hash": "53637d5f518e527ab552344c1658cd7bf3367d52f0981c48ac55efbd81f41562", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f2227cfcf67fff3d63ff0a94151dcc2bb614e42771a408579eb40e7363ee8b97", + "regex": "(?i)^https?\\:\\/\\/netijkdkdd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c060eeeb540a065427fa6f21d4b6daa8079507a194bf42203145b45f4f1085f3", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70762002b90104e4794b43f8cb26ced4f9d63bd0528624c4ea7750f8ab38d07e", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8aa49e0e8c08f2e9027141bd6e2e5bca3140e4607d440d2c5afaf8a1f12e11fe", + "regex": "(?i)^https?\\:\\/\\/creedcraft7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3be5ffaee5a02f6e4b36562856b8675ea341ee1e7d086aa2747719829674ab3f", + "regex": "(?i)^https?\\:\\/\\/instagram474853457\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "527651644530175c2ce7763773f22d733cf9906f8d5ec4178cc64562989d549f", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ae01350fe4988f923f86ff29cac4efa691b6289b7442eca4542eea019548fe8e", + "regex": "(?i)^https?\\:\\/\\/netijkdkdd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "38b5deb207e9e55f2496dcc137ddecf9984d57de66eee1470b657a5f0daacd63", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6fd7027623cf846f1835ce04cfb4ce107985d89a9a238d2f7c7db2367a3293ac", + "regex": "." + }, + { + "hash": "be32a155fcc201d0b2c9cb56ee0e33cba1dd44f7faeb930151c4b455e2379ab4", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "504a8cacfea5a90d104ae3918ee9e51cf61f51c49ac1336188b57c76995f7e13", + "regex": "." + }, + { + "hash": "d387d5dd017678e3eb7d48a4eb17486825f99942adbe82e449e5b61af347fc06", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "49a0d9eb5509e37741b57f0e30cf4859eed87e1e23b2dde36d23b644721e934a", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "21d5d74369eeaf4b72e3c8001498a360239757acff7b0d470e49eb9fea313fda", + "regex": "(?i)^https?\\:\\/\\/dfhfghgjffgjfgjjfggjgjffj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ac27742d82da58ec261532751559ed793e5afb21f61ebe4bc6cd6a745a9d5826", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfhdfgfdhfdfhdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0eecd1b888962818ec1fb5babb7b888ac03e9c3f139505af479089cddd377f82", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c0380c36bbb6012c1b399e905bc29be56031f26e90310ff0cb99148202451b05", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "643fe4b6c620b9f2fe9bcae572a2d288309083898f3b14a6f84fe467ab261460", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ed1ff24a5fffdec7597f2a833926d911401e4f1c321eb3b718a08e844f22cd47", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a1d62af0c865ca9c0d576225d3705a8429883ba034308b35958038e121d45525", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "39ccc162170abc40a8d2831e46c8f3b12e68df93016f324daf818628230a71e5", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fe35b6b419261a06c7a6f93700b65147e266f4c9fc0c04a17206a99a88f6f028", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+EU[\\/\\\\]+chne[\\/\\\\]*\\?token$" + }, + { + "hash": "752b678973bb08159091490093def92febe0c24cd0c447af1d0c6b358e3177e5", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "916e61b160c5a3f4820d3e476616e97b8772d6a72d259c4315d7d4c12f35962f", + "regex": "(?i)^https?\\:\\/\\/dfghghjfgjfgjfgjgjffgjjgffgjfgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "76164136c74a03bf6296b615074767f63fe365bb72512f34629f8a6f385e1e3d", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-beach\\-tube\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "77a6f1905b064a25249afbc53a4877e8266c35704658952c5070c5f3d31e528c", + "regex": "." + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?web1326[0-9]+\\.cweb06\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+wkpilwnfdkasbh" + }, + { + "hash": "76128e987a5c72b6550fc1bcd215023eb693e6d7c6921513d83f2beeea90c2f2", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fc0e1b3a1345f322b0075fd74aab64907a365a07fdad588a6a737557f2d5b187", + "regex": "(?i)^https?\\:\\/\\/dfghdfghghjdffgjfgjgjfgjf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "32e5f0cd6f45479cf0077c269694b687f7123f55cfc7eebe52c130a151e73326", + "regex": "(?i)^https?\\:\\/\\/dfghdfghghjdffgjfgjgjfgjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b67867ed2656252d09891e4220bb6e658e599c9d78491f3c2afd40c8ec60c039", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e8c5a5b32b429b79bf53dcdf49467880efebe90412bbc9d3827d590b47e79d00", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c7203677b429fa9aa2191a6a5985cd788504248efc9b4e27501378ec25b4e85a", + "regex": "(?i)^https?\\:\\/\\/nersdrgdfgdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5d797710fd0d9a30bd403d17e51c8c2dbb4bb9b4677ce0684c93888d2f095141", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "de9cf53291556b83b697fd8237f345cf32cead0f9c356cdeabbbfbaf246e4262", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "35fc33a098ed299eb5907a47d1cf209ed40591cd42df04582c70df7a38ce174c", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=150778\\&N\\=79\\&L\\=19\\&F\\=H[\\/\\\\]+$" + }, + { + "hash": "64064ab8b809b85363b5748847fe1119422232282497576ed4982ee59e4ab945", + "regex": "." + }, + { + "hash": "5a31b652f3bfc08f36c8d1593d7920b627f65420e69b56cad9eb0df53dbb69f9", + "regex": "." + }, + { + "hash": "b34764928484aa2d400210daadfd02a07dfa626a332e6708da229a972c7f392b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?hSOTbx8j7$" + }, + { + "hash": "5b0dda08dc7c093eafae916a07c26a21e68f672d354bda19958d3be70533f426", + "regex": "(?i)^https?\\:\\/\\/currently\\-att\\-31\\-10\\-24\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "18c0f1f25db52463f407ba1328f7cb516603cb8e41baa7db09de696bcc1fb1d9", + "regex": "." + }, + { + "hash": "cbe77a04d87e43a12545e990d01ec046e1d4290132e1bd552b27493a79655279", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "365ff859843d9acdf9938e7fa65ab4b44c82494924774e86a7383aa125bbbaba", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "658a0351d63fd78e8c8b84dfe53b4bcb2ca8545029c0fcf7951e44064aff0a31", + "regex": "(?i)^https?\\:\\/\\/nersdrgdfgdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e0cd501a5ab56e7ba27a108e43d707e404e347af0cf95a4427c09c2f7d6b3", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fbf6c9f7959d6d79c250492dc335ef2d0aca543bf4e0b8be1f4a420236189ebb", + "regex": "(?i)^https?\\:\\/\\/nersdrgdfgdfg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "354aa293642951daae04d009cdaf9140614599394b260aabf09067ee2ad83eb6", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b1bfc5d08f66ab6f40621c7c5527dcc4924835d8abeddedab5b8c73432f431c2", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e5ef9cbf84e5d56ec7e4c60feaffa921b69b05a7d8ac3fba4a184ebcccdddfb0", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c54850e78f28bc49276350fa00c256e7b28faf79039c26ad3c609a1ac5a3c27e", + "regex": "(?i)^https?\\:\\/\\/entifdigdfgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "03e252e97f92ae92afbae032ddd28041ffdda720a161eb39b7478672ebfe6c38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cacac\\&id\\=topdon\\-france\\.com$" + }, + { + "hash": "6cbe784ee5421c8b6306486ef65446e0d24da11acd624c5c465aac15cb98e6a7", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fedf2ba8ddebaebd58d75e705c8b364c5ea499c320ae77fcce2a04bc44b99921", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3fcb0b2fdacd0a7b5c6686538a521ec0c3e156b796631a492740940d85f1e8cc", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "834f161ff207b80a132b42a3c549ee53b77120a237c3231fc6cf18dc1a6a15f9", + "regex": "(?i)^https?\\:\\/\\/ghfghjfgjjfgfgjfgjdfhdfgh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6a3019d9141440c88a5febc9cbc86f73fb9d0d3fcaa4a881c13909ac5abe81e3", + "regex": "." + }, + { + "hash": "da12acfa40421dcb7e1fae3b00115972cab1a0cf25279b9d55570bf63e8279af", + "regex": "(?i)^https?\\:\\/\\/dfhfghgjffgjfgjjfggjgjffj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "357258927b48ced923e0165a95c65034fe110f2f04e5ab5171cb212b7123432c", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2914fb19a4b9bb754ab009912ba8a16e0c0af4432875658d3475615834fdf5e1", + "regex": "." + }, + { + "hash": "b34764928484aa2d400210daadfd02a07dfa626a332e6708da229a972c7f392b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "ca70a63219a7a6486100a2dc21be7be40e0965806e35975f974a406998baa270", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b3aa1b7b2218f7f72b2c3a4985f909052b4fb1291d8f5af2cb7dd4b7d931a277", + "regex": "(?i)^https?\\:\\/\\/sbcglobal\\-105449\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d76a93cd92384f66b396083a34498a8f8a67d41f495c5d5d440eb7a82bdb5fd0", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7168c028b3b5f92d21df1135d3469c4275f63682cad5bc899affd100ffb4f3be", + "regex": "." + }, + { + "hash": "0b7af7c64c263a8abe7c6bd4b14080918f3e5eaca6325f777208ae58dc358c4a", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "20ea898feee938fc0e816a89fc29694176a2a4144b66af1528a0fea5137a17b8", + "regex": "(?i)^https?\\:\\/\\/pub\\-d125a705fb7346f8bbdd7b540f2a7d86\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "041edf2ead9e05059553a8bda232602c0303bd0b30cae8306caad1405558b0d3", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "926a9972ab9d2f19d4afe3287e46b4a66ca90238cede6f2a6b2591a84e0662ac", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "331176e5f5d6c7327fc94e19b7753ec1ca90a18bdf664af33981802c15613662", + "regex": "." + }, + { + "hash": "3fd44157acd8fd65b94a763ee63ec2faf69dd4a90b8e1504b3459f2bdf1e221a", + "regex": "." + }, + { + "hash": "2ca2cb1c239ecdf13e93888172f79e6eb49753b8be04fc46c1ff4596aa0a33d7", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cbe7d439c582965f42be0beea4936d621fb380935c4d7348727d76c2f23cf204", + "regex": "." + }, + { + "hash": "96a4d8bab5b69f0e5cc572ded09462a4d52b653e5878fb10291ca41e1056b132", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "928eed2cb265acddb42cc45e7603508dc00d78d45c015a70ce312844eb3b7819", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "dbd33874516ddd8d3e86fdd8629d2be687c80f72795664ece6d90ecfda2e3b16", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6856294a8b0bb04f86dca29d2c419f421e4101ce4c86675859a1361a645b8e2c", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "90afc73c44735a8b5f8c8fba261570f43cf15fdff76dc1d917d183b71b5efe9f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tuclj\\.com\\%E2\\%88\\%95lvxjcczv\\%E2\\%88\\%95pdhoqlmws\\%E2\\%88\\%95yzdpzwxj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDybs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "885b839f7bec7163630f77cbd29bf198814c43cd11251a90151e5a2f82846b10", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhdhfdyhfdhdfhdfh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ebaee711b8679f41306288d94ea4940cf4176f74dd99acf06e99611d87402f28", + "regex": "(?i)^https?\\:\\/\\/videotodaycomrggfnmgf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8ef9a0aeb2e9984155d7dd9ee4bf8e93f8e7d4c17aab72794da8e7e91b71b38d", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7849fe9b3d86145ad29360d23268ea6e3de3c935b70fbd1a442653a18a204802", + "regex": "." + }, + { + "hash": "222779ce529ee237150cbee3f5b64034a71bbca3c706ce4d06127ff7dfc13936", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c8111681246fc6b31f9c82b0225640d7b916a0abe276ca8fd4b7caf44d13c775", + "regex": "(?i)^https?\\:\\/\\/nersdrgdfgdfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "546d616365c332ba9618082450b4876360f0156c823d21d908af7bc0164de8c0", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6a3e65dfaaac90b104fa24f0513f81484faaf49b8cf0c122d59b0c712dc72f1f", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebc15c7118bf7c3e57cf4f66a0aa8e2c35124d441d965cdd2389b52e881daaa4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fd8e4\\&id\\=topdon\\-france\\.com$" + }, + { + "hash": "c211a08cd49e6b2cbc9297638c7adba18fe6838ddecda6611ae99e837f2ae17a", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c0d25aee9aa1f24d52597a8d18fcbf9321ff0b4e2752789325eb41a882a7816d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.lyvpgqya\\.com\\%E2\\%88\\%95iexrfixo\\%E2\\%88\\%95xgyuv\\%E2\\%88\\%95yeoblkw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=mszcen\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e7ebcceb31e05a8b3a38e7c505a0e57c863ba8a167223d5461ca7d9d593105a", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b138de0d6159a7590f0d9e1af0a90b713bc2e1f95faf584ba1fdf8b0fae8a54c", + "regex": "." + }, + { + "hash": "d92aa54a5ac3274d551345b65c618e583568fcc30ec811c87768e7c06a9bbcca", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfhdfgfdhfdfhdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "df40cfe3bdc409698383a41f3da789b8bd94195f0512e1d86f2e4d62a916960a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "634ffb8f6dc4a0e4fff60bd9c050325845a5b5afd207ba21945a3fd912e9af3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "7a124946a89bd7e922ac0bfedbab99d0dabb17b3ba2240dc409790fa0ae0859a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "74d1e1538fe677966f40a60773abe4ffab7ce6ea6b703720c42441ab42ff6f7c", + "regex": "(?i)^https?\\:\\/\\/dfghghjfgjfgjfgjgjffgjjgffgjfgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fa5ad701a84d4e82e758c093485ac9521d34bcbca1d234ec6f7591541b263d41", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7e2abf1a52ea89ce6dbe27407e61177822693a11d763fd23793890b45b9086a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9163[\\/\\\\]+entry[\\/\\\\]+register58711(?:\\?|$)" + }, + { + "hash": "53dc8884813cf5342d5c232a54188d6dc8940ecdd47416cc3b1c66a70872f2cc", + "regex": "." + }, + { + "hash": "f401a35fce0c2f15695b8b2e79257474d39b42e1f9e7d4649cb74fb040ab9fe0", + "regex": "(?i)^https?\\:\\/\\/ghgfdirtyuirtufujdyhfdydfyutdy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9836a504640dd75a684b8714c6701d346ce46e30ede69f674e3b1dc45a120621", + "regex": "." + }, + { + "hash": "f3e9c13102d00a2e0845048446e8892b7730bd3df16ba6139ccd002986690b87", + "regex": "(?i)^https?\\:\\/\\/entifdigdfgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d2acc21a75e604979048c56a2896dd5fa89274fb55ba0287fc0d45939c660ba7", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "70912b9ca3a50c176b534459e3ca03fc161ccd65a6db173739e9c43ebb10714e", + "regex": "(?i)^https?\\:\\/\\/dfghghjfgjfgjfgjgjffgjjgffgjfgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "abdac42f3f9a39a17f8eb50674cbc6c5daeab9a9f8b5ffd0e8b47120390f9a5f", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b0c5a5c87d0b91db963d4c7daccf4ea79724632fcde9dc17e49fb91fc0d1814b", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a8cffe841d732c5a26484c0c3701ab2d0d8cb1ce11230f4eba6018b983072745", + "regex": "(?i)^https?\\:\\/\\/nersdrgdfgdfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "076c97114a9e7da5c5ff4043d6932c7c1177235c95613225247d0a9c5bac36d1", + "regex": "." + }, + { + "hash": "72ab9867271f2806f65401090faa74edb0665d470948c8cf2a40ef7a1c16909b", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5ab28a8c349983139d55e2ed2313e64906e54016cc8754609c9a68913f28bb7d", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7eee0f8e26eeb66ef3c8559d9507067bc03b42062765a41233523c1116b272b5", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0942661fc7d88bb53fa100a49dec28612fdf84cd67699d09bc1ab4488c6c0a60", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "67a3a50357a1654b5c436ba7bee65460a0be2ebe6b18b60a14e65a74b05a8c16", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "aee6fd4e452c3df40129ef715201b9e525aff49d2bc46417ce254d6d27d1f00b", + "regex": "." + }, + { + "hash": "a54ed228043413a135876eef3457b5fc3ee882a26d7f397ff1f66420905b8b35", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab7aa011bd13bfe54abfdf2f4093990d78d174ff6cddff126d1ff2c1f56d46", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bd087fe140959cab8b77b3767e43d1da2444d1f0ae9bdb4c104a41c6c75914b7", + "regex": "(?i)^https?\\:\\/\\/votingprogram\\-foodnetworking\\-rs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bc63bee3d4da4f6d71acfa693397d94772204e2087b990252ab9a07356f99cee", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1f9274583812fe0e1f46b0387b584cb4feb73a22b0dad932757455bc3b08d18d", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfhdfgfdhfdfhdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d081427bcd7f820bd6daf144d18706fa5d512add0f7cec51280756d644ac7bab", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "37d401f4acae49dc0e242e555d1db64f11d18f045a2b2b414ce41fbb156beb12", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdffghjgjftufgj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0914b7030f6bbbcc8781b5e8732777fada48a7fe6bd4d005a62beb5b794bfd44", + "regex": "(?i)^https?\\:\\/\\/pub\\-b0e85fab42e74c978ac9230f7e633475\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "da7571f2dbb7141c600a81e7dcdbf7b5c2ff256f421e919f145f917b62b98b15", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7acbb4cb4f117b1cfbc085212c2b957f775b8f984c1e7648a6522cf5f35f89e8", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-beach\\-tube\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ede9e1fbee67301807f9a987b436522386bc7195083ef8aae39249a5de394544", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "08d4a6c702e00441427c2ab4ebaeea15c342a5f1c085b66c2d66f5490d73427c", + "regex": "." + }, + { + "hash": "00c9044dbea17bdb66a72c865da082a4369b8e23455a220e312263410a0a36f0", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d2d15947f09f5e5b2eca27d6b313d28001a19a1dde4632355b09a0922b390c55", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1c5af9b0c67c0f3817cdeee861a236173ab4abd63770647e76f8cbc3e0daf86d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8c157a5a5efcb259d01fbb9ff43e589edf2a5bcbcc29a923c38e088dbaafa6d7", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e1983cd2c45148f2a67565f0e728362024b6cb874aa3906f79c86bd100fd7aef", + "regex": "(?i)^https?\\:\\/\\/votingprogram\\-foodnetworking\\-rs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "45030b36688e3d25e649d0a7c64e961070b8fea6bc2fad35b15632433498764c", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f69f587384b2059833ac3dbedcdcbf63a0ff9dd373f9d9a5c520104d3dbf75ad", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfhdfgfdhfdfhdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e01ec16b718ea95c994532f61fcf5e818bdbdb890a8074577310d0659ade2e2a", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9d55ecc4d39e9c509182693a315182b0394ac6b3f0d0ddbd50b9c2dc6da21466", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "beccae81d624e0f76de715b287783b4aa30f05c4e5623ce864e46114a7e6d694", + "regex": "(?i)^https?\\:\\/\\/entifdigdfgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "465c898115f04de90e993934bc7ac36e04bc74e4b4de523ee55cc41c4eaa43be", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ef93cc86d01f14a52732f29bf2d57215935766437593d6985c500d49ff807e23", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6a20b1200a13c825b1f6c03349ce5142fbc9a44b279dc7b1b2b4589dc4e840a4", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdffghjgjftufgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "16c47d95600d6673891b21cfacc7308c4016dda5c29b0842422fa61184c42a95", + "regex": "(?i)^https?\\:\\/\\/bnertfjgdfjgdfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9fc838d3f2e9a431af7d03051b4ae660375d072d7a1882099b65f6122442a7f7", + "regex": "(?i)^https?\\:\\/\\/wwwogunblogfoodnetworkin\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5bf3356bbbcf167c33c22ebf1889d6750d541cf8de1befa3144007d0a1b42170", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdffghjgjftufgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b2424333a812f80ccc9eb2fa2b2ee19882231d0a38e04ebf256730784e8c8cb0", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f18b17f762f742633dfcda593d9f8b7752eb2914ad232901a693c82748a7ff4b", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "14b37c75ee6e5fdb3723c4dc84d603da927ed5dd43e1b9a2815cb18d7c0dfc0f", + "regex": "(?i)^https?\\:\\/\\/ghfghjfgjjfgfgjfgjdfhdfgh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bf1f2b819773e904695778bef95997e5a94f4fa055c9de037d437f59f4b96bf7", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c68fcd45b6f3a2cf22d207abd8e47f0c889114ffa14af7a632b7c748d2ae4579", + "regex": "(?i)^https?\\:\\/\\/ghgfdirtyuirtufujdyhfdydfyutdy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d7b7fc5765426006ebabab27e54dfb0164bf0e8977cee1164011260f7e6c0104", + "regex": "(?i)^https?\\:\\/\\/www\\.137\\-184\\-239\\-173\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a340d83bbefe7a6ef3f025802a19c883923e78cfd62e702e33f32d07786485ea", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0035e106cb48fe5a16e1ae00d6c4e0192d6f22ac10c59bdc52db41966a6f69c8", + "regex": "." + }, + { + "hash": "dc757464091ba7eba0426a75fb0d13f1ab9f6a04e833f11bb7afbb2d57672ae3", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "94b943461e21e42dd4c1b29bb770e3767cc3067350dd9fa444bd9ab825654194", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7c97a55e380e3e010e8ae58ff4042c5114355389be23cb4bbfebca720dbae15f", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tube\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "771d068f56c86a98603b03ac72aa0acdf84bfdaca060f972b01b6a77c14a5974", + "regex": "." + }, + { + "hash": "172ee921b392d42e57283418160b2faaf9bd2fa5d4d39844a47c812ce683b55f", + "regex": "." + }, + { + "hash": "32cedf50000de4ba17b2d84d77c626cff306c4c488e8110966641c7f7646a2f5", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6b21e77e0c525878e020ce9334f5c77a824d5332408aef1ff94e347563a94808", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1b8f2b7699f2f4197758f5b426107174931b14f35f0605ffe6fde8cb8b02fe41", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rvsfvw\\.com\\%E2\\%88\\%95nqkopzbu\\%E2\\%88\\%95izlnos\\%E2\\%88\\%95wcyhsa\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=yeskxn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "752b9fa1349e1b7cbdf41645bdff72aa5225e4d75e675fa66e9d973fb88cda57", + "regex": "." + }, + { + "hash": "ecbeffa9e9ab58d7efc4e38fc5fb993ee39fa44b22c65db52f4ac17c50d98a63", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-beach\\-tube\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e504b27d664ca762f9bfc3f4e74b31a242ba2d96d0d3fc2bc600a848a9ce7bc4", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ff6637dd2eb2e15ba7790ef7b0693e96042bc8c0b178c4c6577250c023a9b994", + "regex": "." + }, + { + "hash": "dad527bbbd3b677e4aa5e7dcd32807318600acd8e0af54fc71994a245666ea1a", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-beach\\-tube\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "18a1c7f69a0b380c6906d9345a05db9dc360a509fd9eed2ac1cfb56e3fa0ba53", + "regex": "(?i)^https?\\:\\/\\/entifdigdfgj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "862186c69061473635ed7ccebbf1f01bdf5ae27b4d07f3bc819d02aadb1e5d86", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95b190e17e75a0e433b44b6dcc5d376664dedd0c3e443dc155857ff2e0eb0e34", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c47e21f703c58cb84d4122e77bbcee5a362d7490df058927bf8d6a3f3df93307", + "regex": "." + }, + { + "hash": "96e4641595124111dbdcd6a07d19707fb53600609d5c0a21a55381562912e280", + "regex": "(?i)^https?\\:\\/\\/ghfghjfgjjfgfgjfgjdfhdfgh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "04be7787e437fc8a1c463a5f3c1bea508d1bbece6ad0c5ae2e744871981d247d", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "51734fb6ebb96a9cde797cd2554846baa829a250cf3457aa8af3e1d1f4bbe49c", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a4b2cafbe67e1377f9593a8fb19e9fdcae7625ff6fb7c52307ccdfbb13689069", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "343ce2e168541a05b56a9240a3a94f05dde718c1bcb0488a8fcca2c3f6453a06", + "regex": "(?i)^https?\\:\\/\\/ghgfdirtyuirtufujdyhfdydfyutdy\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c0a327b02f4d881218b54da8e13e10a9f1fcbddef520c36f9dfc240bb057f05e", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b6da569b19e58817ad7ece869df4e7f9ad5c2b2f18cb50cba241f1531d1350bc", + "regex": "(?i)^https?\\:\\/\\/ghfghjfgjjfgfgjfgjdfhdfgh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "40529b1826432e0dbf2368e35910318735907be6453e736468f20d1063101144", + "regex": "." + }, + { + "hash": "1a498d8a13a575eafeb499c8a39d2384f9999767aa0720541d83dd3d743b31ac", + "regex": "." + }, + { + "hash": "6d552e11b57c7011e8cf6833f671ed966c5ca23915ab8bc5b5a265b54d2476fd", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdffghjgjftufgj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6dea343de21ef36fbcca5d20fbb3452fc0e5aa20196e3dd2f7bf93c50fe334ff", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2896b72fe115a39326e1b827369dfc2c1b3fc7676fdd3f050f4672b6fe8add87", + "regex": "." + }, + { + "hash": "0800fb835fdbd095d5dff34d35d0f83bb29a943edb6b4713c1fd11fdcdb72ecb", + "regex": "(?i)^https?\\:\\/\\/ghgfdirtyuirtufujdyhfdydfyutdy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "975cf4f959b36b7f719774e1d47240aa2a0308a7a4a4d06cda727cfe7ae8bdf7", + "regex": "." + }, + { + "hash": "4b8253d1a26e210dcdec9f777553b958208a4587632ece3bd824ab142bdab94f", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fe35b6b419261a06c7a6f93700b65147e266f4c9fc0c04a17206a99a88f6f028", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+EU[\\/\\\\]+chne(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95fc68b88b4e9712c7d0b9ba1c7005711ab9fdb09b33234c6ce3faf2185acc56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8fd379e39abae1c4c14199a9e9937e7bdd8c7e333895f14c7e240af4bf83f7a1", + "regex": "." + }, + { + "hash": "901dd86fd8f3a8967158bae6302c12e0dfc367328035d9a5015b6349574aa6f1", + "regex": "(?i)^https?\\:\\/\\/netijkdkdd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bf4dc1840ca27cc93abf0392d027aac6be3e05c956cc58e3544a4dd6c790746f", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2bbd90cb245d4b0df4ad391b1d1aeb246ce1da916bd53247d1e5d5c05cda6cdc", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9e5ddcb26e160d429438212793f6786d7e9a7d25cdf1a9cf9bc04f32f14eeb3a", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc77047acf609370cc6647c0b4baad524db7cf3c674f5547fa9bd6dd90f4ba74", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7720cd3f0837b9871245180aabd8eb071993fd1c3edde3ed255499e5c89969fa", + "regex": "." + }, + { + "hash": "616495ad981fe3eb5759e2171aebceeac63c7504c815f969f893e22745cbdf7c", + "regex": "(?i)^https?\\:\\/\\/netijkdkdd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "53d7d24d21caba120b9c80c188b9205bb3c4904c931f677bbc5e403b6399d89a", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8b2ca33718ffe681c344f2664b740dfc45c203a20089f25d8b0e95f4a6835a49", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "abda11f7bbb0b4c95b828faecf874ea80fd77bf10eb060a74d688d6ae103c129", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfhdhdffhfdhhdfhdffdh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmek6ruLsw9Z4Kqwx6mD71SqvzzxmEHXRkHDsHzE18YopT$" + }, + { + "hash": "3eaa2bdc19c33945c8c123b2f9b18012cbc397c59ed6c4ebc2e91b90e94a693a", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bb2dcae35f1354421024bd7d4ffc83ba250b308098f392322333e2f1cecac426", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4d0b44602377c2d459fe5e56fba7a3dd5e6dafc8478daf43fcff37b9cecc1dad", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdffghjgjftufgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "42822704da732af8931128b2b4dbc16ec78ebeb7006a3d5615842046305cf9b4", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tube\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "979ece489fe82afdd103165b0d710717b97111eb9e6af9d102145395e2a1c0f9", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5082deedd0b662f4e7d0cc9f77eb54ee4e06bca09635877fd1faa71b3f83f47f", + "regex": "(?i)^https?\\:\\/\\/dfghghjfgjfgjfgjgjffgjjgffgjfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ffa2e1d8c908776f211fceff89a76041fe624c206991563a71ca11b56597e36c", + "regex": "(?i)^https?\\:\\/\\/ghfghjfgjjfgfgjfgjdfhdfgh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1c45165fff6bcff555c0a45d1173670992a83c421dd94cbe56121ff1a4790c62", + "regex": "(?i)^https?\\:\\/\\/candid\\-voyeur\\-tube\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "67fb65731b7a231b25ca3aa59b6f26c5a7907bbfddbdffee137f868a15262fc8", + "regex": "(?i)^https?\\:\\/\\/dfhfghgjffgjfgjjfggjgjffj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b044ff8292e1e58e16aaf794263230e3828b0643946fdf3cdac6d4da1463ef72", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b20dfd4ba8ee794110be557ad9671ffd6c37ec6d1b6cc8b2fe1d7ba660117345", + "regex": "." + }, + { + "hash": "ddf2c65f31e1a9e27f2824d81cbde8e3a939d664baa6ff818c64e2012a182b05", + "regex": "." + }, + { + "hash": "853c01c529fdc70193091923f4c8e8a61ad826b73528600efca129d2221e15c8", + "regex": "(?i)^https?\\:\\/\\/nersdrgdfgdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "de5fc523cbf36dd4514f2c13ea5477ecd4280f7246a903ef4ed1f3c82a5349eb", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfhdhdffhfdhhdfhdffdh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "22b8970440f39c4b9eeac25967a74aed8cca965d85c04b774dc94abb1c1b27b4", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a88cc8fbf36826ebcbb3e26fccca753a7f5edccc212b645c11f512fa82fe9a65", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "42a7d7a2ea1ba4bcfb00c2ada704de6138185a9b12405da46590dab61f514843", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "28b4b6287fc2000565226156ecaae4a4c45941d3c185107ff622fcac6a271934", + "regex": "." + }, + { + "hash": "5d7c91e23f29ca7564be004acd5438aa65872e4ca38e88fb85e39b075ee48f72", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "042687205e9bdad5b5aa502930ec4e747c216c4bfb2e3f3028b74bbe71b0fc87", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5df584527cbde23f9cc36937b1b340db42ff9354db360f56be91f1e14f2dcb44", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfhdhdffhfdhhdfhdffdh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a9ab3042d62ce9814528a482ca96499fe85d618dc9ba47b1ba598efdd91ac2ea", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a5b210de5705728ae3352458240c854521b43cb225b03033bd9fd836131f283c", + "regex": "(?i)^https?\\:\\/\\/dfgfghddfhhdfhdfhfddfh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7e2abf1a52ea89ce6dbe27407e61177822693a11d763fd23793890b45b9086a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9163[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7575e6ff473b2c1560cd3ae1d93acdc40fdf3b3fcf378af34badf3b79ad5bf29", + "regex": "(?i)^https?\\:\\/\\/bnertfjgdfjgdfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "877d8f8f5249f4cb6d5e96eede47e03f251507e96314e206b1b66b0e588bc9b0", + "regex": "." + }, + { + "hash": "2515d6d94ea4b3b83bd5b814842b7d806f13b3ffa1a2b3a4a7bfd9322ff232a1", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "29b11b39a9dfe40104333c7d4a14a47079fbeb6e98757f54b2deb0dfc2f60e9d", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "02b6dc283a48aedf762df6388539c3eda4c08c74f9b6e0b529028cca602d71e2", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfhdhdffhfdhhdfhdffdh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a7302253b9b4ce13f0c32312847b12debb9e0f5e49b32cb4ef72519d1f78fd22", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5ecede5a261823592baf1bb52dcaa61657a0130b85bac15f52fb7df76519f7a", + "regex": "." + }, + { + "hash": "d6a7820ca283e4c54f8412878bc6f9ae8bbe8090f5cbda1959594626c28a8873", + "regex": "(?i)^https?\\:\\/\\/dfghdfghghjdffgjfgjgjfgjf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9bb897024b9909a92078f0af16af2eb34a918978e617406b68d7c1d90e6880f0", + "regex": "(?i)^https?\\:\\/\\/videotodaycomrggfnmgf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b0fe9ff3dbd35b533c1dfc5370adcfa511d561b8cf068fd6fcbaa25ea5dbafcf", + "regex": "(?i)^https?\\:\\/\\/bnertfjgdfjgdfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f5feea09e222ace045e3b649563e60c5651a5fe037e2e26bfa308118999548ae", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cedf83dfe3745cbdce5fc47459be4e53ea10a9f09fed852e6cf7fa71bc81be41", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c79ab45e2800bfd2affa4aa3ca6690ab942aa825f262c44ed102be30cce7c829", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7ae39cab38f4bdea37ba44e897c5f463463637f571b4cf36e2df908a351c0c51", + "regex": "(?i)^https?\\:\\/\\/bnertfjgdfjgdfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "559c287bc86f6c059fbc15145604815c3f32feb9e5c4db25e068f2d058a6d5f7", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1a2e885339b414c76c94d9fa0146541131dd90c3800ee06e2f846c881e2b74a4", + "regex": "(?i)^https?\\:\\/\\/netijkdkdd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c88d69c5ac6da5eec9b4e8530fff54f1471de2e1e7cdbec2afc166002aa06c94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "f1f11c3bbff737de34eee260a7838560fad52399c2cba092b0d440af8b8b8d97", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cdbe4c93ba403fe4744a931c120f01dd7d6db798b0f4a966bfd29d21366bb4e3", + "regex": "(?i)^https?\\:\\/\\/dfghdfghghjdffgjfgjgjfgjf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0973bc2a61e29d3629084cabe34a09422630da545df3c3589520a0d1ed0ca0b8", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0d28b44b46cb2de3e33f8df252191c652d304d25817f3456cec6aefeb818ff00", + "regex": "(?i)^https?\\:\\/\\/candid\\-voyeur\\-tube\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bc392ec76931f86d523923fbfa50abb6521a1bd5c5fc46e5a848a79a4cbbc899", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7b38adb389bdebc465b9a49485e73ff23532aa2cc887eb8b495bcd86e03ea49b", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7e2abf1a52ea89ce6dbe27407e61177822693a11d763fd23793890b45b9086a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9163[\\/\\\\]+entry[\\/\\\\]+register58711(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4db7182444e53d08cea51e378eb4d387b783684f8f0579f2d094a4fa5984d978", + "regex": "." + }, + { + "hash": "0940bb8a8f4d280a456e9baa8b0ebb9d2de230be056da54b99c4073f1f77a265", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-beach\\-tube\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d71a3d617dd0d1b0606d8f6d99d4fb42620b3c768f6e9ee89722eda01ec548b4", + "regex": "." + }, + { + "hash": "8858a77b5840f7a215956dc3c1556442b34f53a348868f74546d73d9267f3454", + "regex": "(?i)^https?\\:\\/\\/cnn\\-cameroon\\-trending\\-32e8c\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "8723ad77c79e06121953ed43e584236ae0c169e2019ad6f609cfb48b723e7a40", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4717ac0e1054ee8f5ec8939360e0d201d930594352342810746af03ee1942359", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0ce07606db998ff71572e08dd386e5a23cdf66c0b875db3ea91db41c8563bb61", + "regex": "(?i)^https?\\:\\/\\/dfhfghgjffgjfgjjfggjgjffj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b6acc54d2be72a79745cdbac256ad406ce169f39f14662efe39b436c6d6b5851", + "regex": "(?i)^https?\\:\\/\\/bnertfjgdfjgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "be5ce26f6e29aa4a71191c6beac66104703b4b2d6c3c09c79915b13448d276b7", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bc9563eea6e759919b25c66e8c97eba0a85b97d4c4e8fb2e0216170ec78b280e", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea0ebc0742d37e3d21b5406686cca08ed6692abaec9029e45b8f9640d726222c", + "regex": "(?i)^https?\\:\\/\\/candid\\-voyeur\\-tube\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a38524b37573efe6611421d06504239b5b2379e382a0979501274745fc9ddc7b", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "496180b0188ed047d76ad2b09584cadbba9b42c91d8fd2f6acfc1da27a46603a", + "regex": "." + }, + { + "hash": "6b896e107ca35822090cf3291842cdcfebc1324c82f99fe3b46b12115cc26f8c", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "aeb5520b12f8f05c7b6edc24512df4b363c6cfd7f3124fd38f93212bd3114d10", + "regex": "(?i)^https?\\:\\/\\/nersdrgdfgdfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1c45afcab8dd5d60b5640b01011d1d79566c30da6786cf617161c6c559aa8444", + "regex": "." + }, + { + "hash": "12d2deb06734c8f259a3a16722d55fd376d1be0ec471ddcaa10dd28687cb5250", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "adbff90887574437e5c7d4cfe3e49116ff3a1eee5f2dc83ecce1f22e3afbd68c", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "df40cfe3bdc409698383a41f3da789b8bd94195f0512e1d86f2e4d62a916960a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?8yxe9QmjRS$" + }, + { + "hash": "1c0e1fc71681cb745887f2b58a8c55b4312588edfd0c7d1ee69f5e04b7887d48", + "regex": "(?i)^https?\\:\\/\\/votingprogram\\-foodnetworking\\-rs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ea8bc665c5e56e4ca4aba811cfb2c0a82b6cba5f12dd8b2d60d9ac4b7d3933ba", + "regex": "." + }, + { + "hash": "2d3b19fcd8146b21cebaeea0dc38f9bb0d98474df8270296c78c1f1d4f53720b", + "regex": "(?i)^https?\\:\\/\\/dfhfghgjffgjfgjjfggjgjffj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7e97cd684aace5d6e186a0d72d4343da0731684de8816e1e85aa39594230ab0c", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ba5f1832c3fa685fa60a6cc24ad5bac276cb750166f232d9134174516de2b00b", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0dd068a6bc43913c94da89995a2d2325b6edc10d6e0d68045b36e075b8e3bcd3", + "regex": "(?i)^https?\\:\\/\\/cumqze\\.com\\%E2\\%88\\%95ehmkuuc\\%E2\\%88\\%95uxmbir\\%E2\\%88\\%95ymonrog\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=oessf\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fc5efb1b60d73067417f9b0d2e6e103801e2e8e0c4700607faf53ecf879bf0e8", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfhdhdffhfdhhdfhdffdh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f032cb9c04261db6792ddc5061ea8f5556d6885fa75a4b7ae8e3c15ab30212be", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d0f31a6eda2c29a85fbfa339ddf1c2befe0213a8f1bc8f7502d6820a5e116a09", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "17b52e742b39059fc3431ef89f9098c3f433fe767ee6d54c09c3f81aba273866", + "regex": "." + }, + { + "hash": "0526ca1ed5909ea79c1194fbf4fd51b692f14a33c5355eb26fa18f0cc9325682", + "regex": "(?i)^https?\\:\\/\\/votingprogram\\-foodnetworking\\-rs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "976e543b0bf244a4b1de0ae45872c8f1a833e706539b4619c6592b99dcc326ae", + "regex": "." + }, + { + "hash": "903879d730dfda676058ed3c3e04aa98ea0bda64a1fa65054ae2a2263714e30f", + "regex": "(?i)^https?\\:\\/\\/ghgfdirtyuirtufujdyhfdydfyutdy\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6def52e6059ffdea40565b0cf2fa7b2ccfeaa18aab1ada448889e156b23a21ee", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b35565e9b7a0da8be80c3cfe495c0c6eb28c92024e197ef92099c5f9e25ef0ea", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5e2f6ca1c517f55c916f997c75c5585bf06be2cc6660134798e79712dd5dd628", + "regex": "(?i)^https?\\:\\/\\/ghfghjfgjjfgfgjfgjdfhdfgh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "894a05472ad48bf2e12cd940a374e2db3d57e405e30fa979c7ef977e5a62351f", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "416ae5d0675eda4b82fff28412f152ef1f6d827a660284906214b89cfc8b2a1f", + "regex": "(?i)^https?\\:\\/\\/bnertfjgdfjgdfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4ddb4632819549b9cb91fda85718e8a2d90528d947c905c5d424c59557a525ef", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "71e3aea83964e151b3df371d5f75c80e6f00e92f95522739fe51aad0ce9fd0c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+agora\\-zanichelli\\.html(?:\\?|$)" + }, + { + "hash": "6359ab4fce5ed1b5b4a09e2054ee9246c80cd95a5fd9623903ad68c7d8433da9", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9b87cba3e62b3dc175a808a6f3ac95ddd10dfae6e5b858f80bc3c048da8aa145", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "bd2a5b32ea43938c2697b53b47f7afd80f839cdbfd0011558e552abd9ad6daef", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhdhfdyhfdhdfhdfh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0c458ad8e127f0890e7d55c1585f9aa2e78971e12b6efc0ce94d645febc0affc", + "regex": "." + }, + { + "hash": "d26325d876d62ccc7a1fea7fefb8a49b3c28c2f769ad148b2c28209d552c7f0c", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e7212ae1e91f7829c715e8e80dc4672e5df94c54fda065dfb232c1cf50ed43fa", + "regex": "." + }, + { + "hash": "0d5b9944ed9e9ed2151de78dc348e61c67e3606b540f66b9c6e21c68c84c8a35", + "regex": "(?i)^https?\\:\\/\\/fdghfdhdfdfhfdhdfdfhfdhfdhd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ed5111dcefd8764f0955a53a1c3548eb8ab9dc75bdc2e93a68ef2144e262cc10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tracking[\\/\\\\]+1[\\/\\\\]+click[\\/\\\\]+W\\-2DZXPxuxjD_MQwEsULWj7yoVhaVDccYuZ0F_9kNkyMvKkOUh6dlydDty5hPrljc119JXj1Mgmm17PpwHzNPbbK2yQqRY5gLpqz6JIS7utkRK6sbtNXVs4SYKeUV4eh2R8VLLCFBEUelQPKXIZ69ecbAdnYndEeZQXJpHmwsvJ1sTMYp6amfYjTnxkgQNdpmetxch05DUb_EnE_FNql3TVfS_DNkXGXqNHKbJvClThsf\\-H3qZSsJPzCwFcXYNMcCy24X_XdM6xbEpJMsx76bjLtyuNm0NwVOrU_cr2wi5DcPlWFYUJsLjy_JqKvEwn0bRihUSNVQdUpNF7LehWCJNkO28xTI2s21A\\-yeAI3ZNpCVXODgo2QJjFIlp0EGbh\\-nZLUMhL4f5WYJdxx5srBQdOxJuiMynsh9Hh6cntt_fo7xJf8UZxU9muV9LkhRuTm8END0qkEtQcHQO_GeQexb3VJm9CaVO5gZcTPxt0JfL7Rea1fMidMfniRt3HnUu\\-EEtCObqvqfDYN3JOEoTQfLlYSQjd8dve\\-4KTeBWyCSEYJDl6eF3KmMnrc9e8Mg0wlrfM919TApWjSjLdkQoI0kDaI6TL_W4zzBrbCNXYbiHil5x0HF9z94AqNPLgkLCgAZXcEVdOlRIMQMvD411962LzVFL7Ncj81p7lmSrRLpoTfna4DO1G2EV9XRaoBlYTFD1SJ6xEO_BTPL\\-ZhymJNNlHi2aywRt5IZbz4l9t7FFoCQxdaOeRlAzG7LLPukuM3xX6tRzucj1MkaRlp3iBa0kbANFZC30rGYM976dJr9hGurOERfr55Tkx0kNVaeBgR(?:\\?|$)" + }, + { + "hash": "616fef6ed396059df0edfb3f9b9952919ce8e8c9eb8bc548e5be1e377100873c", + "regex": "(?i)^https?\\:\\/\\/ghfghjfgjjfgfgjfgjdfhdfgh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4d822da412aae7d0d2b7e2116eba4882402e6173a553fcf11e92875f6d5dd7b3", + "regex": "(?i)^https?\\:\\/\\/dfghdfghghjdffgjfgjgjfgjf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fedc2571674d75d55dcdafac3ff6822291366cd54d8ef4385f4c01615894bfe0", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c33b2c173674323b749cc019b0ba654ea1bb315f673e65b5f405ba78f24b8721", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "18474fa6e6a116f016dce445cccf589fafe32d700aae64d0f4a92b21f47607cc", + "regex": "." + }, + { + "hash": "a4b2cafbe67e1377f9593a8fb19e9fdcae7625ff6fb7c52307ccdfbb13689069", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?YSp3WmTAEe$" + }, + { + "hash": "a6da325a823f9f3062a4861043becba8ccfb927cd87f41d71d5b9bd3399a3847", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d248e\\&id\\=topdon\\-france\\.com$" + }, + { + "hash": "d70c2ef4b2667d4b75c547e697f744b4848c8e1ad6a788708399928cc8493a7a", + "regex": "." + }, + { + "hash": "64f10eb7b4e13f2739a70707d3255d11c2cfc2b783dc4c8c4b58e5a27e39d1be", + "regex": "(?i)^https?\\:\\/\\/netdfkgdfgdfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7feec67983080cf1064277527de04a8a81696543def64a173546c8bc7944b8d9", + "regex": "(?i)^https?\\:\\/\\/ghfgjfgjfgjfgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "87aad18e38d5149c6f30ef5622ff12b4a08e1a11650a05df84ed067e2e03d3a1", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c9b43d99983fc17dd256e7bbcb212d4fd49e20888c7c3e63584855fcf3b799f2", + "regex": "(?i)^https?\\:\\/\\/dfghghdffghfgjfgjgjfjgfjfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a9bfef6a1dac246c0b056b548d1a1a4e9d4e2ab81badbbb5c823e2ecafb0db45", + "regex": "." + }, + { + "hash": "b6c16bfe1cebcafc1c4a352a8541f953fa26a7392200b4eb4046ce319091cc88", + "regex": "(?i)^https?\\:\\/\\/dfghdfghghjdffgjfgjgjfgjf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f52469d112c5a3a83380448258ed57f7b498a57d8044d2fb04917ba19195c33c", + "regex": "(?i)^https?\\:\\/\\/dfghdfghghjdffgjfgjgjfgjf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=201577\\&N\\=82\\&L\\=21\\&F\\=H$" + }, + { + "hash": "9019e9a9c4124065b537e210e3c298fca9c438e61228353786cce7130f811af2", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1f558bafb3e915d99a7b64deb7c481de32a3ccd118a30d1d9c9132364ed051ba", + "regex": "(?i)^https?\\:\\/\\/sdgdsfghfdhfghjre\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7507f474ed78a5c82e24e38a047fac4468899690421ccbe5b7300ca4a46fe5dd", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "651d25dece6e78e2708def3e5914f0402682df7fe0dc4f99a3bae391339402b5", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a2fe17fed61e2e3e42f699f33a3bd73d928bb96e1eea1ff28b827a6a8468a3b1", + "regex": "." + }, + { + "hash": "2714067d2258e439fdaeaaa0311f58f5fa91039a12ff35fded2b4b6147ff254a", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfhdhdffhfdhhdfhdffdh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c6c248d56018e32cc80e75d14eb9ed9d96314b184fc91d9b7d68a5c297216963", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+magi[\\/\\\\]+magicmail" + }, + { + "hash": "7a124946a89bd7e922ac0bfedbab99d0dabb17b3ba2240dc409790fa0ae0859a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?qUBT82CMyOVBa$" + }, + { + "hash": "e43957d723dfef48ebbc52e8459405fea8819addd507b407f1f1eb3121263684", + "regex": "(?i)^https?\\:\\/\\/sgjhsjhusdfgjhufgjhufgjhudfgjh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8dab1421bc9530790fead169c710c2a7437cb9fc7efcf9395e6bcfe1f1fbd09d", + "regex": "." + }, + { + "hash": "fa239735c6f18e0f8b03a6e3ffcbc70063d01ce1e414d1de5599566ff6591dc6", + "regex": "." + }, + { + "hash": "ef3569fe998113ebce198b91e7483fe45315dd39b8daa78df1e1a1ac508d06a3", + "regex": "(?i)^https?\\:\\/\\/sdgshdfhdfgjfgdjhdfj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8143493655136d40dbb6b4c82c9869215283112d086a6f1086b0e0cd0776a238", + "regex": "(?i)^https?\\:\\/\\/kejdfjsdfsdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "060abffd6a090bd7f7100ab9174eb50c0d123cb95f32640fb193f6fcfe559e47", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c5e1cd9225f6d8f3d32b63034c9379fefbbfc098ef6ff8abcd1890b7f606967d", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7cf2aea44d9f1d2e747fa8d016914874602425e4eed6a5f48ae49cb03c1e37bd", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhdhfdyhfdhdfhdfh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c5d4cc0bdd85711e534706dfcaf4cd3b8682dbb142d5742e23f015513edf4b40", + "regex": "(?i)^https?\\:\\/\\/netifjkgkdfkgdf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a798bb91ec88ebb26aa9ea484c9131b6ea5845c586472b31ef201465603c8215", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9f6d0c291f179884bba9d7ef5ebda81f82636d48f211f0a398d99baabebce07e", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfhdhdffhfdhhdfhdffdh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "10e49a52800a51e5d89aff3082cc72e341ca91b8661c49a002fce5650b94dd83", + "regex": "." + }, + { + "hash": "8ae80fedbf52c5414a7d65add60c4b0532b0f415665fa60edf3953ca83f6820f", + "regex": "." + }, + { + "hash": "5309e96c469f55b14373c82daa701dbc612e3f97739671261f65863f344a38c9", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfhdfhdhdfdfhfhd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "665055403746a222fe79d0f01bb2da078e9e0fcefb6ed5bcf0b545b1acb37372", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7e435d558ae31fedfbec3cd1f3a06a518c9a13955122bf38aa75c63ca13e5fad", + "regex": "(?i)^https?\\:\\/\\/bnertfjgdfjgdfg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d98244ceba03507f0563b5275d17be7ff5f6c36e92003296e578faf26335c86a", + "regex": "(?i)^https?\\:\\/\\/ghgfdirtyuirtufujdyhfdydfyutdy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e4f7bb6c1d679364ea9e4f206dff7f7a83d8dbe0df2dcf1114665cd6615fbb30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "4ec9810c88d6abfd9a60c529065b2990260ea1a0b80cf43565b7f38fe306483c", + "regex": "(?i)^https?\\:\\/\\/netidfgikdfkgdfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "84d8192959f63c8f8cc5d22e27ef562805f3817a861e5fc86cca38485cc9b80b", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6c7004566e725565e62b966131f51340935c96490a43a2f0d995f04c3fb2c877", + "regex": "(?i)^https?\\:\\/\\/dfhghgjfgjffgjfgjgjfgjf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "71b6d2437914b3385302d17f5ee6b718c902940fd53336fd3e8a4d4bc4134381", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgjjfggfjjfgjfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d7b73efad85c0378097dae46e45ba50460b8af54f57780af40b75d8cb115d76a", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "097cacafd384ea89e22c7d160633be935dc72564a144fd059575f508c78fde2f", + "regex": "(?i)^https?\\:\\/\\/dghdfhfdfdhdfhdfhdfhfdhdfhdfhdfh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "caca6083e90ed3953e1b2d3e37257c98f459451a5415d29347f4c39c3495e876", + "regex": "(?i)^https?\\:\\/\\/sgsgfguidfgjidfgdfgdfguigoidfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d76dfd470c1e44ad23f5d161cd3ac0124ac9b6f963b8114216c1dc3cd521b43f", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6b4d8a1f613cd6e1f1989924a0beb83b2ccb48a5870a1a68174b2b80ae83642d", + "regex": "." + }, + { + "hash": "7b6d2819586d40683f58edc7304862af3cfdc6d538e5e314d1a1c4d99d821caf", + "regex": "." + }, + { + "hash": "33c5e5876aec2d6489ee24f31e63223d333724ae60bb1f6c12189d8e30a777d3", + "regex": "(?i)^https?\\:\\/\\/nmk6vdxb1\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "4245e51744021658b31ca999161372930e67dc8666df5550bc7e1ff6a93b05e2", + "regex": "." + }, + { + "hash": "a58a5f56a4d4c97f2108dbaaa15eb3774c8850d5ffb35263763e737f76c5367a", + "regex": "(?i)^https?\\:\\/\\/young\\-nude\\-webcam\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ccdbfb7b6747d7c593eb7db5e38794d947afdab289accba155d01fc2c96733bf", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porno\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b35ab4ff21bae540191f9846941da217b80e2b79482339c82960021d48ad0294", + "regex": "(?i)^https?\\:\\/\\/young\\-nude\\-webcam\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9d6625d2e6434cdc00b9cc5b91353805275efd7e970b6c88b099c230068da2c9", + "regex": "(?i)^https?\\:\\/\\/att\\-104788\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e499a1906073b4f9c487029a0e85b93b04295d40965d1df71fb768b8cded7f91", + "regex": "(?i)^https?\\:\\/\\/young\\-nude\\-webcam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "473e09326bee3036dd32c3ecaf335faf56b0f079016b060a558885b161a4f815", + "regex": "(?i)^https?\\:\\/\\/amazon\\.drrrdqwgqd\\.com\\%E2\\%88\\%95kekfcpyjc\\%E2\\%88\\%95ojunazkkq\\%E2\\%88\\%95mkwtz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bzrsjqh\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8f02fc17aca057f6fd160b08fc9ba1bee942fbbc23a3a224f00831ce8e00e97", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "228cb67a58bccb68e7faf0f47209bf12708ca0e8a6f3557e933c3c2ba9b9f9a9", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3276e7bc1ae63dc026f234f295cfd2cc3b78d113a6a03645423a1ba43c344422", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\-267(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eec37cfcd1d24cd2f67fb51636a4e53603e3440c1583cbf9ed75d6502488aef4", + "regex": "(?i)^https?\\:\\/\\/cams\\-4\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "aaaa39ccb97a690c3e19beb279c63e4af53993dde1eb5b60d8ff3bf79e9650e6", + "regex": "." + }, + { + "hash": "6deb24ea3a5accc00bf6709b03a9c7fd9b6f26a4ecec018293098363e590ba8e", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ed68bed280fc8acb70ab0b155c0882c2b65707ef537908af2be7db160596259b", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b460047c31a9a3eb11796f7ce6126b2a508262e887d860428121209e791e07cd", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "390bac9aa3693218c5ade69c38dcded5a8d70f949b8ed9831113f322271d0027", + "regex": "(?i)^https?\\:\\/\\/askdjfkasdfgjhkasdgjfasdfdg\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a1a1cc17781996df9775cac3028981fd448b06f5dcd0709ff851abab182307ba", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "528a5e0fbf75aa8fef3d3ea8e664647ded87f99c54ab1949a4f1d6635e9b11aa", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8880db082062a01f764eb751510f41bbc6d72c4c0781c07cee33b2b4941186cf", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "76d3433d64c910afada4fcb812376dce87ec83106d063cf11ccc0249de6b84a9", + "regex": "." + }, + { + "hash": "8b54a0a05a1c6daa24f84a53ad4ae0cc02e5132a5de2d8becf16e015d133c3f4", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eab023a6b2a589e92733058c2edbb27ac916eaa4005dc20686f8223e5f3b325a", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f4bacc99cd3266c297ce64c94d15baa5e3cc94888661085074950ff377ad000f", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a7ac725c3e34cc9c08d334a9eabdf42ed32d8042eb09c67cc25de779a947ccd9", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{7}\\.softcloudlane\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "71b8754aeb404cd37a2572f628141edb2f7267f793eabed1e71e41e8133d5a55", + "regex": "(?i)^https?\\:\\/\\/9d1b12ft5\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "1240e5d6671ad7e7812b69863d04cd6e1ba3ea49fb8565933f1a620322e1754b", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porno\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "54e4c52ded5d7a27b220b99162d6af2da67bffca9e49168aea4b9e96447311d2", + "regex": "." + }, + { + "hash": "a02327bdaddde348ba7a936b8f5b9c09f25d3ed6b5d2ebe9b26271b101fcda71", + "regex": "(?i)^https?\\:\\/\\/fhgdfhjfgjhfghjgfjfgjfgjfjj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "66fbbe85422cabc80cde28f7490f8246b7ec7ef49aafff22eeab35bd42f6a6d3", + "regex": "(?i)^https?\\:\\/\\/kikuiyiui\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9fe20ed7bb5c1e445851c5194113b9770ba062c7ad0111b3639b0be862c16fc1", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porno\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7b3d521f4ddf8223c0c0fcdfb1ddb5203e32ebd2579706d2088c72d90b06b64b", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d25120e5d6a3a708b25d126a146d126c2fa8884a95e5fb32850e37be0557894", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porno\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "250a2dc020cfb6f466e8c896c5a8cfc238c8a91684f2243cd253f4f4c48f314b", + "regex": "(?i)^https?\\:\\/\\/amazon\\.uwzifawss\\.com\\%E2\\%88\\%95yangcqd\\%E2\\%88\\%95swqid\\%E2\\%88\\%95tjlxv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=odpny\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b67c38b6c6a236d885307254cf02a74f8080038f4d38be9ee6489f6822d94fd9", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f4c00cede7b9187815cb26dce806d15d6c23194545cd09d28d843c798e860cc", + "regex": "(?i)^https?\\:\\/\\/6216485416\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4ca22ae4dcc26b5099801cd4b34fd1b7d0c6afcaa3ec9767a3ecbbb822006e0b", + "regex": "(?i)^https?\\:\\/\\/uiyfoidshf67838yf6dtsr972y35r6tef38\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "365c795a7d34132b3ff2dd696cc598f01144967a4e6423bb2ee41994936512a7", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "09522810ed9ca5092f93910d980f57134819b066522ec67cffb04bdb85a51b56", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3b56cdde1256dacdc8fe4b3aa6e4acf668de6ab08d7cd1d27ad85fe73aa2f004", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porno\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "62b5b2f47fb32e6e3f4e6e4b30f8a4ff2fb8eefee77b2073b395b7588c2437ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "fb3c1666a3148bb98b2163cf33450e72e7f46deac20cd92653551a753d4aa6c8", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-gay\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "25619de8ade3fa5af137e6f46044b87e9e50428f6a2a6512fbe00c743f560e73", + "regex": "(?i)^https?\\:\\/\\/kikuiyiui\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ec5b1212e8efa2aaa6a591dc0d005b98b751d5953ede60e511cacc4584107919", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nzrccheb\\.com\\%E2\\%88\\%95izguhdyz\\%E2\\%88\\%95hvlghhu\\%E2\\%88\\%95tyotlqr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=guigg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7f9b30a159ce078440d27f22c50610b2b8045fbe310764a60a7cc6043c222d47", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e46aee47b2cc30bbaf989ab7e1f003389e18c99d41ba31da3b2b635ef7b3a6ad", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "961d9b285a6acc3424c39b8cc13d36bda65bbf174610aae0d2be05d6b5439a0a", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porno\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "db16ad8d82b8e46614d714e65b77e9a6fd5d564266124363b6af01def04ef70a", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-movies\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e21c49c3c949ad64d2c0e10379720dd65ca5e3c4be860b930d73051f3da5cf02", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bfa068b09f1c42ea2721fa9c603f0b71cdb10e3c921789d2f46b93c9dd89f279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "6edca95a88dc0ce8c14e35da3582a643ea61654b7dbe13825f097a2cfd6eae41", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "08a59498ffe7749f5c579b00ffc1c5dc48ba255243534379b309acb015dd59e6", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a226c5893c97ffa5445b0c4ea715722e206a83b0a5a26ec54dd6ba366715ee23", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "47a82b2be070212ed86e3614876f15a4310cf74e3c02a4444d37eea0fb8a1864", + "regex": "." + }, + { + "hash": "d3c0702fe2489dcc9294614bfcfd8b2c770520ee708ddc46d312df78554c93bb", + "regex": "(?i)^https?\\:\\/\\/a66ze6\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "627cd7d74de9296719c68166652efe2fdaa45c45d8f22d29a92eddf48e7600c9", + "regex": "(?i)^https?\\:\\/\\/att\\-service\\-101632\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b00b5b7253deb8757ea06ef888f324edb0750fa7b09087185bba1d2a1280414f", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5da2ea168241a9c6338e5c7698486eab88a91eb6b5f78950d98ebdc31c653c4f", + "regex": "." + }, + { + "hash": "b8bfd7426753f1d0d992a60ef538864f7bba75edcdf5721291a8554c541fc3c6", + "regex": "(?i)^https?\\:\\/\\/att\\-101020\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e88ccd8afe2874db76aff8914dfe53aaa6aa8e79f79c2a257e71367d3d68e2e8", + "regex": "(?i)^https?\\:\\/\\/uiyfoidshf67838yf6dtsr972y35r6tef38\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f7a826edbde4eb21cabf5e5ffc51dd7049abade94dedf35b60d389db5bf52ade", + "regex": "(?i)^https?\\:\\/\\/64mj8klb9\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "c976db24db97ee54e7103f9d04cee63b94c77193a04e30be9293d991eb94c68a", + "regex": "(?i)^https?\\:\\/\\/howtohavenoheadinrobloxmobile\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2dfd8829d0d315b0dba298fe796a083694f831a7bcca84b735695a333b79dabb", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "779ae90c922c226154d0445bdd3f6324fe6b308d6a8077892b2673a88071501e", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a22529323d77ede5e556873e064a1c4036d7012b40eb07b7e444aa42914548ac", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2be89e2003b3be63609e90907b96e3a705992d300890b9713f4c10a627d38116", + "regex": "(?i)^https?\\:\\/\\/abcdrtsggswrrfgdg\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b4b21d7786d4944041656fafb11eafaa4b8fa9e564568d6ad32d7fcee4feccb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zu(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "60f18aac80023309c04195fd35c21d94ae869bc062375d36353022d74631e2b2", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bde7b427ef98fafa03f9e5afeeda7a628be313b22f0588af934b2230c4dc37ce", + "regex": "." + }, + { + "hash": "9035c57ad2f3ec0609759ca25b47fd334a4f53935d07f318d7ff91d01169e20a", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f3a1a18383b13df9778f62f98554ecefd9ff27a37154866c8632a54f5adac851", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2246fa3b923e308f35057f2a512f79fae6253d6d8446f118592ccc4b8fefb34e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porno\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "75252b961185b78680ccfad734a141ca25825446c5a602ddbbdb63be02531150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link\\.php\\?M\\=202128\\&N\\=82\\&L\\=21\\&F\\=H$" + }, + { + "hash": "01ecbe3f4a56c11185129666bdf8aefb9b85eefa7e4b7edfd2eb5279aa98b5e1", + "regex": "(?i)^https?\\:\\/\\/cams\\-4\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e9b11024ff421241022ef635e0c31be864f7fd83d30d73a0a9525cebbb82d4bf", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "94b6c9eda6cf6b97eec83f5ea11b2fddca95e0e233a842c1371e340d1d037258", + "regex": "(?i)^https?\\:\\/\\/young\\-nude\\-webcam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e4824345f9eb53b4c15cbe23d55a8ecf91abc919d666264880ad37241eec0e43", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ba7b116de558e6c513368fb07900f7240565bf7e90e7453acb7fcd43d230301c", + "regex": "(?i)^https?\\:\\/\\/cams\\-4\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7eadf28e87cac533a2b08bf18c845b80b1d41d65b30c9e7c37fb87d897159134", + "regex": "(?i)^https?\\:\\/\\/kikuiyiui\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "be9a60c4a5dac41232d7ab084e89218711f77b2497c777e6b2b0e0783ae7f2fe", + "regex": "(?i)^https?\\:\\/\\/pub\\-d5e67f1b43f045b5ae445df7706f9682\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "20e8c58fe27aea6b6ec314a8c34a59ccea89b966547f00dc5a9f2642c03e5598", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3191d534f1c0e0e4bd5fa50282ead61e8d3947e505f5b504d098c1c70489ef9a", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c6d4ab8606d82c4569146de046dc46fd55b269a1710e2e5c95ab8344ec8edf2b", + "regex": "(?i)^https?\\:\\/\\/kikuiyiui\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "18d7fc6d6d3fa336ff8d5818a538a8e4d0fa74037b202c0e62404c25024d383e", + "regex": "(?i)^https?\\:\\/\\/videondaftrsseadsgfdstewtgew\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0854afd2c85463675ed83a6ad946775ca1b824465e439843ed16c076a404b5e", + "regex": "(?i)^https?\\:\\/\\/0qav6f5c6\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "6aa977b474308eedf825d6bfb790f92faa232ebc70ddeea9536c02fe6597dd02", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "581bfc3f47fc67294430496729ef480e131a844e99068ccba6d38b301a55a7d3", + "regex": "." + }, + { + "hash": "93bf8a3252ffd75d8c53a2ee484b1b73d460b639f8061f8f5cd694f7b2744061", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "01af1c69c2bcae29550f632ac142012097b57542afc0191876757d56f6b0e49c", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "28394f0b8229225ecd764a138560809e9c39225d73cd554fde56b0ca4f5c5669", + "regex": "(?i)^https?\\:\\/\\/goold\\-free2311\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1dde34e3f3290c4272cfcac4c1fb41da5e220e86472ac4ed912aeb254fa680c", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porno\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5ecf4eabdf2f68d765a0055572f61b4d72ed929ec8cdaf74e9bd7df8f32b558e", + "regex": "(?i)^https?\\:\\/\\/askdjfkasdfgjhkasdgjfasdfdg\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8289b0bcfd5c7f02c5888328be5a2b1d2cfa8c1aa2732796d39a6e6ef7a85b61", + "regex": "(?i)^https?\\:\\/\\/io1hau4\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "88bab835c52dcbf6c50c0a8e86a44ae37b40083e32f8d33fbd7c0d4c71bfb529", + "regex": "." + }, + { + "hash": "2e72dfe3dd76d20fbaf821ae14313988ec9012cb66d799a84dac9bd520b5ddf7", + "regex": "." + }, + { + "hash": "58c0a416b4f77e3caa974d3ff2ffc296e7f038a15006c22d7c888c6f9aa39ce4", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9be4efe407fdf7f28d21eb009f3f73f5017490a2699e8a2402df0087041ba61f", + "regex": "." + }, + { + "hash": "9c765c40954aea97149b51c0a0e9e6640923ce6d8c03d8763a39fe3719da90c1", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "27ef5023e2b287cdf46529ad3a0e160fb6e90582d01552268f6b185d3a466293", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?14489\\&id\\=topdon\\-france\\.com$" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.qdkztu.com%E2%88%95yrjfxdmo%E2%88%95gmppkqqgid%E2%88%95ytbqubge@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "e46eedc0cfee38a357adc9426ee751914641cb69eb5ed613dd3b9475de923dfd", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6af2c72d52196d9f238423d0c95908e1ee95d95ca1257adeb2a7cb7c0d506cd0", + "regex": "(?i)^https?\\:\\/\\/uiyfoidshf67838yf6dtsr972y35r6tef38\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fb293ebe28c00c25cd76f310adb09951e1e212c3045ff93c4891e4f3d564293f", + "regex": "(?i)^https?\\:\\/\\/parknord1001\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uv40aj(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d211adf9650d615c775c267767a8653cee6176ab5df4d1aba686cc5a7923518", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-gay\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2a5d80b9f4f871c5abb2fb9808248bb4a6dc09b08f033fe567226f46298bf3a3", + "regex": "." + }, + { + "hash": "162009843ed99c3456a64a06cea22675bf680dd397420cfaaa37960b1a3d87c2", + "regex": "(?i)^https?\\:\\/\\/videondaftrsseadsgfdstewtgew\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "65ac1e245686728356842b2a63bd9c4b7afcecacec4275a7f8ac82da3ea33223", + "regex": "(?i)^https?\\:\\/\\/parknord1001\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4733014c55748ca46682cf9754fabf4d2e5bf0767e9697f84c733491808797f6", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "70627d63200e5d2c32a24bbf266e7e7e33b06d939da0c2df18e26e22448a480e", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a1d8a3bb4b55f3f63ef797936615f399b70b73cc3dbe6ec09adb1459c189636d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "454113402cd2dc165d1839e43cb4c2f95671dfa78d5d696aff90c7ab7cc2b44d", + "regex": "(?i)^https?\\:\\/\\/young\\-nude\\-webcam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e9adbf51e7215529d56cb538167b72115478f2a29f97a04c89dbd8ce3289e122", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zsvmywae\\.com\\%E2\\%88\\%95ubfig\\%E2\\%88\\%95pildzj\\%E2\\%88\\%95kqsvf\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tdnjbp\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "875cd201c87631624ffb2faee82cdae3306ed82a43105125a5fc6995061cbd41", + "regex": "(?i)^https?\\:\\/\\/kikuiyiui\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ee68f4ff4e64dbcfac51bd75037cad4d4649fc541723a48b8314e2abff4e4e07", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4cb4432fe2ab0b8fd479a6b3475995c6b740c755ef628924e480ced89d889d31", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "edbc3a21127b374a0495c1e25d0b26d5ffb188a08dfc0b320c5977e5df5b9c8d", + "regex": "." + }, + { + "hash": "22388f8de989e8c76d08752dd23ecbf11d3bc6b7aac819d8f082a5fb7ab8c76a", + "regex": "(?i)^https?\\:\\/\\/cams\\-4\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "81a9691f1713c0bc7f77c4e8bebc13f34c280fb32b1fc41e0487edf10abafc13", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c2f3be761e501af3765a3cf44e1df08ef4bed2961fcdfe88790a9a52c205f0d1", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "eddcf2330119e5b08f3a8f0e3710f45ac8e42e812e1067d8bde61c95c55f212f", + "regex": "(?i)^https?\\:\\/\\/askdjfkasdfgjhkasdgjfasdfdg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4d52e8482f7a23d1d8ac13e1eba9e35f2d37faec97dbf8f2af1800d2edc8f5a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "0146f43e530df8a3387ac4e204b926edac9f54377d3618076b0f5b80e990861b", + "regex": "(?i)^https?\\:\\/\\/videondaftrsseadsgfdstewtgew\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "90fd30e01720940072d328d10f1899348855633a7c8e44d384d1f1c94ff4129c", + "regex": "(?i)^https?\\:\\/\\/6216485416\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b63d031ee0c352c2c9a72ccc1ffcda0fbc3cae3bccda8ffa7129d6c78d225623", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porno\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1a98fe2d16b5b81901c09e761db6f1df5aa970286be261d69910880846d5bc5c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porno\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6e876f3076ce9f96d5eee0929d73a796b9432f96c0346c181125713d8719cd1f", + "regex": "(?i)^https?\\:\\/\\/homemail\\-1027824\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5ce86df8695fa902ea9197d9d1dc0edbeb1fbb769a71b33619593750402abba4", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fc8b226cd0257997d1b74c30081c0bcc20a51fee909db35c27269ed729219fa4", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab888f2383acc55a2fa35bd7dc4d2ccbedfabb90832ff258f8de5d09e8d98d29", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-movies\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "23fadb4967fa6e0d1d64af313b81d8860a2023888b5d3b9c5e18f0e581b10786", + "regex": "(?i)^https?\\:\\/\\/fhgdfhjfgjhfghjgfjfgjfgjfjj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8c886e717e7c39fee42466c4c05c1a0de0b082e311c07a7c2a0a01577f21e09c", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e81843a0bec1653841b5c6ffa777986b0db54343eaf1171ddf138526c84fe276", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "afc06fd5ea9f70653a753687e13785a4705f1b234581fe68724f307b229bc3c9", + "regex": "." + }, + { + "hash": "82ccb2c5b1a7a2727f056f6d12e21696b743542124b46b08eff16910c5838bbd", + "regex": "(?i)^https?\\:\\/\\/4\\-cam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "529b344e08ed868d4ab83d04c9ff963cd1aa1d82d9afcef2e22f101063be2983", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "612c2f602fe231febab252c1f2c6b430e5610ebba0819b227651bf1dbec7fa42", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f2b9a383bc6ebc2d88047ad11676b3e41b32c4811477059744ef5f60d0ae2f7e", + "regex": "." + }, + { + "hash": "6c3983a5f33e1a5e1f48e241d9c9a860eaa310885f66fb211d5b27c3732156bd", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porno\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "03dfd3426f37fd743a2e26eba85c86186a89ad79b1213929cab4c91e3c212c85", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3b1f38d506ee1e477d43dcc38ca4f15b31e7e103be38035d2fa890c58b79d753", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "303350e13a80ccd43cfcf1ead92cdf511c1f1c6a3dde2b1d222b83e5bf0495c1", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ecf2d3e5c8b4d98fe051789ab802fb71c91e4afc50ea1dc89598974c96e96887", + "regex": "(?i)^https?\\:\\/\\/amazon\\.jjffpjdqfj\\.com\\%E2\\%88\\%95sxowvfmw\\%E2\\%88\\%95pytdibtpdf\\%E2\\%88\\%95avnufv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=saxwk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5506d454e1ac9191c413395113a594988ca1e34c33f980b2a4edb70ca73e5147", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cc77223019fbbfb92849a2607d5981693a7cacf207ded2505f0abaac976328f8", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ab6ab3496f18916df188facbc3971be628bc80cf1d3474064f946279bb67a177", + "regex": "(?i)^https?\\:\\/\\/videondaftrsseadsgfdstewtgew\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e02ffd21c929e0e79325854680764d463e29b6867404beba397366b599b5bb78", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8bb954cf7bd2145159606211e57c1bb04baf6216d17bf46cb5c5164a60edd15a", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-gay\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1ea635d97c179dccef097d614d5e00fd5b70091d1939d6fe8427f6c50bd3acc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\-341(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d3bc5d49ed222ebeea561285c2943f083607ac99e453e4efff772c8d06e7e39e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.co\\.jp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=6905104746(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2c89e29065e9a0a46f4f8aff54949ea7b2a97446bb2d767f1d24d0ee6d6e8370", + "regex": "(?i)^https?\\:\\/\\/videondaftrsseadsgfdstewtgew\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02bbf92eeb7079cf2cd7dd936ae6d418d54911285830f347fb9dfe1b0b1bc711", + "regex": "(?i)^https?\\:\\/\\/cams\\-4\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fbe32bdbcb4b768586ca2e45cbebd6df5181048970abd89e944b46841538f785", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f75913aca9390b16e88df2574edab02d99fe9a63bf89d2906067937ab32107c7", + "regex": "(?i)^https?\\:\\/\\/cams\\-4\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a1788ef7e03bc976d8b27b8fe5bcfe2c7d2c0fac9bfcd913b70c6889a464239a", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c32428bbed07e2419294f41358bf1d3872269b4a54c23582fcabcf51ec059aa0", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0994752e6d967565a1f6f22e9bc5f2d546a620cbc0db3835b0c203e5720b173b", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5b842f02b1eb4f43996c60abeb6a5c98226e809eadd5aca1ec0755e69ab7d586", + "regex": "(?i)^https?\\:\\/\\/askdjfkasdfgjhkasdgjfasdfdg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2dd7191e965d3a6619cb54c6cf28e8d29390391280cd9fc4f9796e392b633ea", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4b582d42364453665b414e80a446fa0281f90509d9144a7ca5bb1ddc54337846", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bddc7402de3c7c39ea6246744a3d5009a23fd811bfa1e1d9430787eda780a0b9", + "regex": "." + }, + { + "hash": "1bd35151b87963d8bfe8fd662a120dab2ec320b789492c33a838e69ce2dc41ac", + "regex": "(?i)^https?\\:\\/\\/4\\-cam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "81adbb657ba37ca9c093cac57a1e50ae98e72496ebff9a1f6ef5be56428ef394", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b27743841806ae032b45595793189844542d8e59a688b94cfdaf92436567df40", + "regex": "(?i)^https?\\:\\/\\/fhgdfhjfgjhfghjgfjfgjfgjfjj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "03288a2a48a90f32ca7994fe16de2da11fc3ae9f87e5dfe18cf3a1e7fddb98e8", + "regex": "(?i)^https?\\:\\/\\/young\\-nude\\-webcam\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "10fc30a3731ffa8dfb0ed255203e9ec9aee9ddb3deab191f8a61b5f9746e9a62", + "regex": "(?i)^https?\\:\\/\\/akd13a\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "b96a35eecc5992ea7c28c7df677ab9fc96325583620c126af58a09c57bc64887", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-movies\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f75eb9a9324b78bcb53a5e231d72d8bcda5dac4ca69f49ab8e5aea18142afcd5", + "regex": "." + }, + { + "hash": "a1d8a3bb4b55f3f63ef797936615f399b70b73cc3dbe6ec09adb1459c189636d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?n8oqBitwYbZcM$" + }, + { + "hash": "4f25a1bf7cd2c9bb44c79c4d822345cba07c87c37bc00d8735ee155931f13cd0", + "regex": "." + }, + { + "hash": "8da7f221a23be0e22f8135b555e8a41d48da70341997706033faf8dd80a85496", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-gay\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f11c91d1ca844208976601956d57a54f593116d7556a66f775a5578bc2097bc5", + "regex": "(?i)^https?\\:\\/\\/kikuiyiui\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c45815ed6c16eac1074a33bc2c0daad6b07cd7791036752c72e28facd72693df", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e8d031a082439b135465dc2686b502826a592f20638f9b6cef661c0cec971661", + "regex": "(?i)^https?\\:\\/\\/service223\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5c90f8364d7193ebb608e9bbae81d5dc5418206f6212532b6bf0c9bda914a5bd", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d6914d2088da6a241a9b87591fc224c0867c550882d61c2c19437aa88239879b", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a2909f0dafd4ac9bcf3a00c30dd391c094114eaa80330e773cbf036c363db520", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a7b2aeed8726e95d1efd8fd0be0b4ee3a6e563487ec0abf0fa0a187794f48c3b", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "035ae2d4d10ed5fa2b19a023865a67dc078d407dd43d39520599943edb32cc40", + "regex": "." + }, + { + "hash": "2a129356c4ec16ba91bd859155a743d32e30eefadcdb5d0f5cfc92ed8d1ea968", + "regex": "." + }, + { + "hash": "bbbb94ed1f78af9d9dcec7217ae465fb3cb2b9ae2949b5b72ff160e8ee6a3828", + "regex": "(?i)^https?\\:\\/\\/cams\\-4\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6b86653293b60c04b6ca45391fdf56dd47118d96f6165e3b90d53a63c6fbc3db", + "regex": "(?i)^https?\\:\\/\\/videondaftrsseadsgfdstewtgew\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c16f4b64af80cf04fea3f08f159d5492decbebabb31afd9dea750eaae19c66c9", + "regex": "(?i)^https?\\:\\/\\/askdjfkasdfgjhkasdgjfasdfdg\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "28f836e1b9d36586f10c2ea43a632d2664cf2094f33293035bd1ed6732c004da", + "regex": "." + }, + { + "hash": "82f0460ba3bdf18a6ec92df3e030bf9cd6bdeb5fbc0722297b4e92631c5807fb", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9094cf068baa49fdbeff34447609e292f76144d276a0b767236832ede54ee505", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "44e0d79fc4669f2d097c46c9ecc348e28b29e5c9278b3dc9d0416b984005c007", + "regex": "(?i)^https?\\:\\/\\/uiyfoidshf67838yf6dtsr972y35r6tef38\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "336572f423155c9db7353c7028f49b9ada24100bfb52ac551c5a9d7b76cea76f", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "91511de6f5e5a917d93681338747b71cc44887696c042ce3259b536696512d07", + "regex": "(?i)^https?\\:\\/\\/4\\-cam\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "17cab2e02bf52c90c790e891d37e72e0399c85a025c7201542c26af13091c5cc", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6b4b21d7786d4944041656fafb11eafaa4b8fa9e564568d6ad32d7fcee4feccb", + "regex": "(?i)^https?\\:\\/\\/francoseason\\.com(?:\\:(?:80|443))?[\\/\\\\]+zu(?:\\?|$)" + }, + { + "hash": "b29da84809e01017e28ba9128ae343ee2eda57f1e8ce0e1db60ff3d006a9ae0e", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b22866aedbf1dd14692da0fafee8d2778e83794b2fd7a09aa7ae4fed01fcc5bf", + "regex": "(?i)^https?\\:\\/\\/8jheet\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "50be0a17c047fb4b907b9f9b65ee0d07b8c0736c09e89813c5411509392b4c2a", + "regex": "(?i)^https?\\:\\/\\/2kup1oc\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "c53ef4436d74f17173f303024fb28e7c99531011b93472eb91be5a9f3ccf4c7c", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8afa955b0655337bc192c439b1e0ea4120055f97133d01ac650ce7c69623ed42", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c162723fc7ade8a81ad9d4f5a3c21ad3d9a7f2bad58d354e1810cf59f422dc70", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-gay\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9afc8bfde9348bde13b47b84431e3596909b4226a321a468e3620794cb906395", + "regex": "(?i)^https?\\:\\/\\/cams\\-4\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d1571b14efdcf10a3d85e59a10915664fd5663fa8af73dd34635b6cb7e2c8531", + "regex": "." + }, + { + "hash": "834f1a285d1dfc24799d27c0c33648a73f2fac239a59f514ff75e76627c7cdb1", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "45d618a6d2e55d36f37c6f510b34e87835e026e1867283538be9a5ea0f3ef947", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-movies\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f4baa1361e5fd629cd8ab0cd83405cc97620f8b6147d22a04ca14616aec530ca", + "regex": "." + }, + { + "hash": "6cb503260e6566fd2a3402d9b11890d2cbc36970b190779a176807bd461f7c48", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24a24a32607178267cbc970deccbbb190300db8917c502c151a4f42ed0390cda", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-porno\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1be06bfb9a71f35caf1a8447c1ce4b88526cc6b3bdcc9558641e4aad92377423", + "regex": "(?i)^https?\\:\\/\\/7d57kzyue\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "6d24710f49cf104b7b86c3aa1118cda510b5f39fb12aaf86dfdc0677c0c7f209", + "regex": "(?i)^https?\\:\\/\\/sapnaa123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "792488433e3e76f9a0795ca61deef95739dced16d106a9d7bb7233f8db7a240c", + "regex": "(?i)^https?\\:\\/\\/uiyfoidshf67838yf6dtsr972y35r6tef38\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a242613e54ef1ebecf8e5a0d3a8ef3b1e0af837b268211dd1ad93b90f3de307f", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a036a7e0f96cd6b610df653d1dff3d6928de9ac02c5e57254f2b71737c53f8f", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8d32c2cf7627bcc0ec12b1244b5147ab5267df4c2312fedc9bb6262fbf1ba979", + "regex": "(?i)^https?\\:\\/\\/6216485416\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "38a4df5bd2bacd2f55cb29a1bb541e943ab9a9bdc383fb355906e9ab59e003a0", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d1a76d874effd3b934e8408fbe99529714e94d7e60f1c717299d1dd4af22db7f", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "78ade9faa53fc4ea98ffaa5c502feded9a3c7f86f4e6b17ae1299536604326d8", + "regex": "(?i)^https?\\:\\/\\/web\\-came\\-porno\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ac218d44a84d1be34055c747694ac1bb4a37ead3cc2f1562d84b5fec9c0082bb", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8b69cb2488f82049b5cdd5d02361b538ec3866a6ec51313443dbcb1dd4d85cc7", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-gay\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.gwwmrmngyq.com%E2%88%95gglrhzaay%E2%88%95zmunihffv%E2%88%95siqbm@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima[\\w\\-\\.=%]+" + }, + { + "hash": "fbcfdc657b35be8c6d8b545059a5a05b197fc58497f187a0e4309b384afaef3e", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-movies\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8bc5076ad1cc80099ad61d55f0c568cc9b0f60d46822ab7592432b9e1e8ce7a9", + "regex": "(?i)^https?\\:\\/\\/6216485416\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6a0fce1f892aef8baa703fdbc1a95197e0286c24d62b098f3f03609fff026511", + "regex": "(?i)^https?\\:\\/\\/kikuiyiui\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4193d911883092373e1d59b845bb636040d8d88b4f8f5172cb92689b2b4674ca", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "30a28fa35ceb3e9a41b9855497d71f6517ee821c54bfb2c68468f7105e9fc48d", + "regex": "(?i)^https?\\:\\/\\/eh7sr5tqm\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "1e2b2e2ce9f8d111bea656a5fd814327d7f1ae370238c5e78edb860b8c51fe7a", + "regex": "." + }, + { + "hash": "c3e3f138d10bee54d7c7ef2e844b7600ba5a078fe737060e23f110abf1c10b6e", + "regex": "(?i)^https?\\:\\/\\/3ieovsz\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "291b1b4502785ba9a60b48574bdf9e5b3ba51813a33d96f82613b7bc92eb21c9", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b00bc5808a263b7ea2040f7b7527eea5f0cb9f213a47ebcb7af52bf4fd7836c6", + "regex": "(?i)^https?\\:\\/\\/uiyfoidshf67838yf6dtsr972y35r6tef38\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6f5020dbae4b470188e453fc4e9b416d3fab96d2d4bea0ccd55e4d9e752442d4", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-gay\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "98694bc4ab98f198f7b3ef75a7295677086299fb2c298325f9b7696bf0b04f12", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0d2f437db78e223d6dd77e9f8b51d918e974256658b8a67566520068e734c902", + "regex": "(?i)^https?\\:\\/\\/3d4xut\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "065528c154aee90e3ae1123d756a4f0ad4f0650a948f0dc35d5c4ab0f2b0acf8", + "regex": "(?i)^https?\\:\\/\\/4\\-cam\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bcd3a5fd2e6fd77f4ab47225bf0e4b4b956c5ddcfd680825662d7033d56b87f3", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcbab88759b2e09237d27dec574bccca946e996137ab4a710de5beee319069b0", + "regex": "(?i)^https?\\:\\/\\/fhgdfhjfgjhfghjgfjfgjfgjfjj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "698b95e52c30ae5bfeec7dd562160d484e470ac35c786411079ccb4e735652a5", + "regex": "." + }, + { + "hash": "43f74c804f5a13333fd6a1668c8d33eca9f8d1df0aca374edc1de9e84dd969cf", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-movies\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6cbeb9a50bbbdf53e623df572a3307ff20402220145038013e8304660262264b", + "regex": "(?i)^https?\\:\\/\\/75bnhvmcfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d70f942d1105ecba303563fa07f0af337ab21284b091021e4265b390197e60ec", + "regex": "." + }, + { + "hash": "02c023dfd074fe931ed546c6a6b573480ff6d62fa7532482d6368c75183de1cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e300a\\&id\\=topdon\\-france\\.com$" + }, + { + "hash": "fa9ae344874d3c64df0e757e581f0ca0ae64c8ee6980392b06defb850c287e0b", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "86339917e7a69e912968433af71a73d519ffb9b4a5e84dcd86a3c621f22872e8", + "regex": "(?i)^https?\\:\\/\\/6216485416\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "dffe7bbeb202c9ec2b6352d9176d7dc77e592af74d9e82582384758bb221d60e", + "regex": "(?i)^https?\\:\\/\\/7khg8ws\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "61e0590623082e6d7f8609bcf0f57899a7b6685c4b32e3702dd68e6c2b1e4313", + "regex": "(?i)^https?\\:\\/\\/bukankeranaakutakcintafull\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "29e7933301cd32a52e6a85f7b08dbd64688651ecaa647cc905c2ade36b3a34e5", + "regex": "(?i)^https?\\:\\/\\/att\\-100603\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f032f3b26cb59531c056afe1c580035fd86bd9bb30205f2b34c54a231e4b4927", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3af069218012d00881fe6a54c548d3a68b250e8a7a6fe231e56e43e161229f71", + "regex": "(?i)^https?\\:\\/\\/videondaftrsseadsgfdstewtgew\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cc8a986df7ecdaeaa6481948601e60b34579209e2ce112763e31bec294fc1a4b", + "regex": "." + }, + { + "hash": "0c9c7eade61e523b32ff2592b5297a3c1217c2c4cd5e338cfa14916b8c4220a4", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efa4db76e5519b25244da137d75767394cc82e8c53ca21564c9857684218e8fd", + "regex": "(?i)^https?\\:\\/\\/parknord1001\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "88ff3d738a1f32314b6c7f4d7d0542763a6f1267d79d0858d2c4f85858780344", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a411cb78f4d048cb0347f29661f321eebaccd530d23ea8069f831c3211d3d474", + "regex": "(?i)^https?\\:\\/\\/parknord1001\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "86517faa9e121e899f4948d9b4474636ad94dd7b97c8cd0eb17b91d5da70171d", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-gay\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "251002a4c5c4f64d37f7bab0579a2ce96b7174f179efa21a5bd5e30558a8d9e6", + "regex": "(?i)^https?\\:\\/\\/att\\-107695\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "67e6e3f1f49fd4ae57774c0625f16d147777d80e29c97c086fc34bc46774e552", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "76ad803292c73efe6141840b5706f911b9f5cf15ce385f3b30e29bf38c751a78", + "regex": "(?i)^https?\\:\\/\\/young\\-amateur\\-cam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e5be5d2fb43b5ca5730239b945a1dd3d0825593697607f85681aacb6714563ae", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7eb2327ec1e4613b0e64d4ea9350e521f17c9c8718a4c6b0372edc750dc2f2b2", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b6a48e30c36184c63375c1c505ada80d7d2e318ad23b535123b777430d29b11a", + "regex": "(?i)^https?\\:\\/\\/pub\\-1538f12dd9c74588b83b1219d09a7fa1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eda66ecc67b0d5432a6d74e3777e35335639fd93ede4e6f215d977deb0f307f5", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a076c225cfc9220343815629f3750e7ec7a31f88eb6d2278f91efdac9b29d102", + "regex": "(?i)^https?\\:\\/\\/jisan232\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9a7b9761296284be6562ec45d64afc07fadbd64244d92763267a3c0376abbb2e", + "regex": "(?i)^https?\\:\\/\\/yuqtwg46tr872ty394yw98ry390ryw99yr9\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0284b8bfbd81b5de22d2a9d726132d6ebedffcab57a50e89be9c53531da62147", + "regex": "(?i)^https?\\:\\/\\/amateur\\-cam\\-movies\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5211cceef8b3acad4cf4e640a7f1f0fae09b2ad45cd3cb438edef3de5e0a1397", + "regex": "." + }, + { + "hash": "2ea0008826a57b67e471dce8c12d2ef3d595a0d1ad9aed87bd46b49d93bb53c7", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53b0fc98beb120ee8567949f41ad0f7981be8332593694f293218de6b6a930c7", + "regex": "(?i)^https?\\:\\/\\/fhgdfhjfgjhfghjgfjfgjfgjfjj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "38a4a5ff5e7827f658bfd0c87920fdec23db5dc7c2daf8be34491b49604261fa", + "regex": "." + }, + { + "hash": "0d2aeda7863ff47d8a7a21e720935abece9b5c81672c4327be70f04f16d01894", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1a62746d6f39a21db4a26ef2a80307c15536c5560e319ed14ea13d2639b0e8e9", + "regex": "(?i)^https?\\:\\/\\/cams\\-4\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8627610c67000ea8d0818425ca7396a29c1d8a12f5d25db382348fec68c2658e", + "regex": "(?i)^https?\\:\\/\\/videofdzhnztr\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dcfbd77701cb8624ca90a9c70c04ee1aea4c8e433662028ec62a4a9dcaaa7126", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "84d8114ae94f6b5f7e88d55f71fd24013786af4e9c4a9ed6d678342a5e3c2297", + "regex": "(?i)^https?\\:\\/\\/askdjfgasdjkgfasdjkgfdgdsgfsdf\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a5aa569642f703a6efd1e36dabe2d2b139e590f5ecff915bb7a6739e9b7d403", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-gay\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8b7cbe843b74f575df22ce1d75c96ef22f1d94c795bc48313fb1740901b745b9", + "regex": "(?i)^https?\\:\\/\\/6216485416\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ea3b4dc152f373c9c574f3b1d6d22fdd4dee4ecf49a36ec74c45b5e3c0c0c82d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "1c7a15886e302bcc83abe3ed1ff55ff4976af2b52e12bdba6c198085d9683ef4", + "regex": "." + }, + { + "hash": "ea23840475d5cd66474866195b7f56a40c27215a820fe8967638de5c013a2a11", + "regex": "(?i)^https?\\:\\/\\/awh9duoawhoduawdoiawdijawdhjiawlid\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "eda71e2bb7978b97292deda114ab1a68c2aa0a59a2e4dfff65590d12b283b85e", + "regex": "(?i)^https?\\:\\/\\/videondaftrsseadsgfdstewtgew\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8627b053431fb5dd2879acd821a0aa433e2f3da78a89c623881dc38e4c7da076", + "regex": "(?i)^https?\\:\\/\\/kikuiyiui\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3f64e6ea68a2e57307bfdebdfa45c990a15ccaa6ab9bfc469332a87af429ff3c", + "regex": "(?i)^https?\\:\\/\\/askdjfkasdfgjhkasdgjfasdfdg\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "859ef501ac8f9a01465506781a13d8a35e430c0b9b5a21095f0fd856d3cc6e26", + "regex": "(?i)^https?\\:\\/\\/348615648158\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c5f5df95d444d818f0e251ad48c986f11608992508243bfefe8e9d1844f2c600", + "regex": "." + }, + { + "hash": "5a80267b06bccaea097849424aed301e47e56975b760028f363c5816f408fcb3", + "regex": "(?i)^https?\\:\\/\\/qmc1osf\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "b44f477a2487b3ad70efe6120763415cd636c93c1417e1a5191c00fa3eca3a52", + "regex": "(?i)^https?\\:\\/\\/vfgeaqdgdvqaed\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2246d81ec3c989b99d7652fca5235b1b9af799310b64f7ff0d571b3add57d910", + "regex": "(?i)^https?\\:\\/\\/pub\\-a618d3ab3d894ff2b87d8a7a110471ae\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "226a3be46bb35f571cda5e12c0b8bb9bb3572cea5840b8ce6d8286c50df99c21", + "regex": "(?i)^https?\\:\\/\\/numberonepukukqaug\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3821f28b5b5532f6f8049100bfb43bd2843890b3869e67f2fc5396ad49a43e2f", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "93e382eafea999c582b5f77b55f850dacd5b4422ee8c6ef3a239235ee11f3af8", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a39c36da9fbcf43e9eb39a17f7158993d1f8504b2b6d4be1bed83abbab06b5ca", + "regex": "(?i)^https?\\:\\/\\/acskiey683\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8a3624788716803a8ecb0d74273e16829a715927c5621d077c849f8d5890b86a", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehdsq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a762897ca4564dc54f0efcc31a73ba4396eccc126bb2eac1ff367700af7045af", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3785df73099a3214a3c16f65c1aec7ddeb05efea3d4673626cc9759f06735b42", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "920956d6b5fdf1f0e5ec0e268041479cdcaa843629c0fa2922384083b89d4773", + "regex": "." + }, + { + "hash": "d0e82afb1ecdbe236fdaec326db64c081dbb1dd7d7f627a470d84902fa5a1494", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6944d0efd1f4eb6bb20c800eea34ea781544112b0ac54317799fde15eafa4350", + "regex": "(?i)^https?\\:\\/\\/hdvieohotcofgfdgfdg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c3755f9eac1adf38c4d7702da3ff4d122146ddb84dc9c15aa7ec38ac1a01cbd6", + "regex": "." + }, + { + "hash": "dbff1b0545ce3e5db4f6010765878d8f3ec2a35037b691582aea54c7c620dead", + "regex": "(?i)^https?\\:\\/\\/qareghbqaredhg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "38869ed74991df5dccbe463f7d5a2e276c7bd4a11853eeb67ea9c79536668565", + "regex": "." + }, + { + "hash": "bb28917581d2f470f0cdfd49039622cfd84c270e3074ab5249a03b72b0ea5a7b", + "regex": "(?i)^https?\\:\\/\\/juno\\-customer\\-a0f935\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c47fa39df06870f6d9eb8f678865aef6f6605927af05574c873c12d7d231f9ec", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "35c273bdd5888d0b1365808f54992f29aec8e416bb57811d9f36ca2ca2bb76cd", + "regex": "(?i)^https?\\:\\/\\/hgeqahqa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2efbe503638f02043dbbc199494182b3952773204527960e8e6922d259a04767", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e9ac36fc2e4e1ec9bf42afde5546b100d194338eab6661bc70b05e88f1d873f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ref\\=premier5x5$" + }, + { + "hash": "eedbc91e17e28599c37fb0ed4fb2d351d0cbc1e5cc87a70f6a0ec254d556a558", + "regex": "(?i)^https?\\:\\/\\/ghbeqahgbeqa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bbb8a1a1d077216624f839711b68bbc6884963bc1c91d29e52865757660489ba", + "regex": "(?i)^https?\\:\\/\\/easyparknor\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ebbaa7d86f87cfa910a021d748d8e373a0926befe454cba1e3b1c2475b2df2a5", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f759a293213cfe61669f0ca24b40549f76755e823336b0eeabb68247b90d563a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?u0fEhCN7ckS$" + }, + { + "hash": "5785375b6a60ffb7d7cad752d05364cc4bb50dad5854e5b5ac89072ed609baa9", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b8f21a0d9cf4ce00ddba5905b487dba76c25adcec4edfe25d5abccd7c3319308", + "regex": "(?i)^https?\\:\\/\\/weetcam\\-com\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ec0c2106fd432df072045c64b7c9d6eb5b44d61480ca3fe18e880c232ddeb4e1", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e78746d6f60ff2b16656123d709b88fef165f4e0b4ec89a0b0083a98f9de4ba0", + "regex": "." + }, + { + "hash": "b5c82118d758d22219273b34fe826da07b1ee4762209a7032a8be2275ce086c4", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4d6550406618ff777a8f5d66ce173f52b0c726778aed1a5f6227b2b69369af97", + "regex": "(?i)^https?\\:\\/\\/xw3sd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0bc6284d6995ccc429f3397022485fe0b677425fd6fe9048049347d91fee9889", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "71fec6b21ed8487c2be63960e84a70bffb7ab2ce40d2d66f280cdcd8e6eba88d", + "regex": "(?i)^https?\\:\\/\\/numberonepukukqaug\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c207dbec645cbf60e967b117b5e9c186c86be0ed5874525aa2ca8c1892cc3d55", + "regex": "(?i)^https?\\:\\/\\/www\\-salopes\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7c2161185d2c66d61d4ba18bc5eaacf174e45e8e917a5b7bdd1c86686790e307", + "regex": "(?i)^https?\\:\\/\\/hgeqahqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f41701ad1abefb4488bf1dbd5fbf8e9ee85a9d08bd3ebc1e4a3de23ee6109f7c", + "regex": "(?i)^https?\\:\\/\\/garys\\-sublime\\-site\\-fad54e\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "22632cd89c28f93ecd2d6ec30add8677c1c553432254ad25cab6eec2c86cd167", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fba864f1f80a0048a64ae7bb99bce7209b26bdf198adb54cdd151ff2a84e6582", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4f76462eb1f747611b2686652f0cdeebedcb06a72c62b82ddac79496202fb0b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index03\\.php(?:\\?|$)" + }, + { + "hash": "16949139193a3104ef7c60ba96d5ca0085e84d33af7e84a4b5afe9784151bdfb", + "regex": "(?i)^https?\\:\\/\\/vfgeaqdgdvqaed\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a641bf97b74114afe052f7d3b1a8c0f88667c6dcfd324f71cee412c71114817b", + "regex": "(?i)^https?\\:\\/\\/xw3sd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4b0327e1f3e10daa2bd9dbb6dad80a6a7ff0793c6dd6721d183e6f459d1ce21b", + "regex": "(?i)^https?\\:\\/\\/xbtn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a0890d49823e184afb9bbcc726984c4fc8abe32855b46543a6926d977faeaac9", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2015bb2d6d01fff3b40b1231035dc9b15e09ed6421e2bec48acdd46c84cece3c", + "regex": "(?i)^https?\\:\\/\\/priyaaa23\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d6a15e3c481745a7ee051ec05d2d425e2ab984250d578af262038dc44bf3e68b", + "regex": "." + }, + { + "hash": "8077b5d402d8f78868fc4e20d74c536d8c86059ac6b4b481889fb607ef115738", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8f5f710a826a5d24b10db72fe5efce8f563fafa87e0b301c3237a9bfda4e4001", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4a368f4a61ec74704438cb73cc2a0743a20cc6348661806519fbe93293d2ed86", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e80284cf00eff6436a9d41c2cd9ff84ca963e419ded5e42fbe40fcbe68b49882", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d044c2ea2039b99989f3d3212e87018f79c7a8ea266b318fbed7300576c5064e", + "regex": "." + }, + { + "hash": "30f7b8225d08dee8a7022c38aa4f2d60fee7ce2c69772640dc858010530a1807", + "regex": "(?i)^https?\\:\\/\\/de3d2\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d67cd516efde83d170c76e089e3852db812a466f769226b8352b13e5a480983c", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "825937e879a0280e3591f1a31af7292c40541e8a0e027139d6a947965af60336", + "regex": "(?i)^https?\\:\\/\\/www\\-salopes\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8145ce360dde5bc828d54f9156a5a5b2c8735b466d36df67bd3d3a99d327a901", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zet\\.himox(?:\\?|$)" + }, + { + "hash": "29463fc96727cd70ad618262cc03ee72d8e2f0e77958cc9a759b588caaf6a4c6", + "regex": "(?i)^https?\\:\\/\\/tnaolhha\\.com\\%E2\\%88\\%95uuotkx\\%E2\\%88\\%95qqgavo\\%E2\\%88\\%95gcugniip\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=owlyf\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d8c486963608052e39eb46626a5f0a7aed46b3672767080f1723f3efcd78a40e", + "regex": "(?i)^https?\\:\\/\\/weetcam\\-com\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "57f07c48c2a7e5698dc82c31f80a8e31d179dbe306fb7f05572cbf0af85d19c5", + "regex": "(?i)^https?\\:\\/\\/eqarhgbeqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "faec19321b4456121bfe1379df60516b15dd96af2b70d8716f148c5e5fbc546e", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "95b441cd3462f066e786870908244eec06bc70ddb82141b65b8ecde2dec2cf26", + "regex": "(?i)^https?\\:\\/\\/gaftw133\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7bd9462b7785194e5e6f7075c4b4e17cd950887a505f0f568e40649c487a5113", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8537a5ae8d79b8cee87eb0b947b0c8aeee047d20c8a1a2a3bc82356aabf87e4a", + "regex": "." + }, + { + "hash": "aee42c1840c4f22250190b3ce5d21d808966598a362efca69daa1ba54504984f", + "regex": "(?i)^https?\\:\\/\\/hdvieohotcofgfdgfdg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5521e04eb29be9fa4deeda670acdb98b35ce21d4b772394e3d044da83e0bebac", + "regex": "(?i)^https?\\:\\/\\/d31s5\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6f5e10725e26527ef9cf22b2044741816b9ae32d6b0292cee09cfaf27d5fdafd", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7a35bc7a37c224143e9dba499343c82fd52c81a3bf245cf4f9e2b03bac356d8b", + "regex": "." + }, + { + "hash": "81ef2d4e24697ac0efa4cfdf5951ee2702e1c578e32cd88477bf7231cad5c66c", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cb9326073ca9144f3422de3d9e556c0ea71b2d70659ab80acad4646297294619", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ed8c1cd6347259fa5b0c3ba1447ea8c967eefd34e886ceec8573b5570c69a7c8", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c6cf61c2892159c31485de25bcaa3efa504bcd5eccf882fad37896115b514eef", + "regex": "." + }, + { + "hash": "b3809afa85c70c48027040d72415dc66c3a0d32b1ff59c9deccde8035fe976c9", + "regex": "(?i)^https?\\:\\/\\/www\\-salopes\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "52f679d84044ccde4c9caa2d5f84af22004e63792fc73197495b07c0d9b37304", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "844f9cdf20a67c0232619b0c273c928be70816e2b3f371a2b9ce32b348c11582", + "regex": "(?i)^https?\\:\\/\\/qareghbqaredhg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "550fe508854293a92d58362f62d184753e25cdc962dc259f6f6c446cb62fe8ae", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "713618aa0ab65d5ab3da95123425b7811900c0ba6ca964cf46e92f0efb4bd24e", + "regex": "(?i)^https?\\:\\/\\/wesrdtcfdzse5d6tfuvjdtufyi\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8f09fd3d20a7a7c3a23d556a2a425bc6700140b9095eec0017ee80de61f61f89", + "regex": "(?i)^https?\\:\\/\\/areioserfdskjlsfhsouhfjklsdhfuifhh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a4dec7032f966796e1a42ec46bef8db002320c09983b538cc731c0464a8c4cb5", + "regex": "." + }, + { + "hash": "d575fc9d81adb76e12ea92621dc9554b7682bee17710960f750f9e833dce3394", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimatvtrrbom3i\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "298bf47d4b765ea6b33b99002430ee800fc1ac05d60b9c1b8060287eb989a557", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e20f66dac51e346b4d4ecc02a469cd783108bd11f108ed36a5dffab709b20", + "regex": "(?i)^https?\\:\\/\\/ghbeqahgbeqa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "74e3fc15e7ffe55f3c642d23325853f38c96cb856d8986ba649c33e700f47d98", + "regex": "." + }, + { + "hash": "b633ddce09334d1edaf6105a201642998bcecdc1290120dfd16a89157b5b5501", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "79da0ca5ecee473b742941ff93bd0fa5a36961d8af05e0e9cfd58b25a8fe28a0", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3a952cef3c96fe09e28304059a6149ba1fc1b996080a490b50e055261ce39162", + "regex": "(?i)^https?\\:\\/\\/aeqhqareh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1212151faf2751de76f7813359201b47c72f48b5cf86be3250d48e4850991529", + "regex": "(?i)^https?\\:\\/\\/azeoiufosdiuyfosdihfosdhfoegfou\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c83f564ffd1440ddbb11f15c72a68454a889815b01f3f0b8030087dbf5414454", + "regex": "(?i)^https?\\:\\/\\/weetcam\\-com\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4cb0d03c156cc51cdb25b2940774544b18079e37bf5865c47cd2ff3560834bc4", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e4ba9cddf971923afa5c60cc1fc4584ffb31ecda775f22fcdaaf232f8b8ec", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "37d4a3ac2b8f53e43288eea849c2647c305f9537e0a894850481f72b07039d36", + "regex": "(?i)^https?\\:\\/\\/vfgeaqdgdvqaed\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "88a335547ae92624964aa761e8f6b9fcab2240ad3a07ceca0b9681f046290a94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimadisewg8m\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "4e457d2a11968d0925ed5be45192c55c773d5eaa7d2c2271e32861d5a6a4ad29", + "regex": "(?i)^https?\\:\\/\\/aeqhqareh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "df86d29003213f20dab711b2534ddab7ad072b4f2f4e8e520e6692ce2fb45ebc", + "regex": "(?i)^https?\\:\\/\\/zqw80\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "87aa5bbdfccdd377000a3d65f623f586d8997db647ded875be1a5ebf1af0b58f", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4624c1df29e82e282b5517daa80a9819269e820e9bc33efadb65d92c9884d867", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6f3bb26afff5980ec85d8e56aa841ba9bf6c535bb8cfad89f7aad298c96ef553", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6b7caaa2d642ec1d29c4c8e13b86be69812d1f268703527e45fa64b2f1ae1e7c", + "regex": "(?i)^https?\\:\\/\\/easyparknor\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c216b5d758295e4d1a3734c0ac304bbe3b2f6f1a568114d8ad41abc17b964cde", + "regex": "." + }, + { + "hash": "ae4d8c22fab127a36caea4acf5258fdf4ed8c5030b6d225477995aff85ca7089", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "55a3c8ce87190f63f9e2250bd551b8289ea1adcca521f3461a4ebfa65c79783d", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8c2bdc0cd23d4ecd5784f922afd05cc8b67342d79d7b9ec51d344ca8ebc8fc24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimaw5levoptu\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "b4fda850d0a1f9dcd24b49197cb1187c8086f48b736d820dfda6b15438dfc9d3", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f92c3ce4daf6d40b7eeccf7b9eca79969816f3fe00cea3b4dd855c2ec42cdc63", + "regex": "(?i)^https?\\:\\/\\/de3d2\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ae4d8c22fab127a36caea4acf5258fdf4ed8c5030b6d225477995aff85ca7089", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a9c7c8dff6701ad381c11223a818b2e750d91b8b96036d5419521ddf133669d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195021[\\/\\\\]+messages[\\/\\\\]+13[\\/\\\\]+clicks[\\/\\\\]+4303[\\/\\\\]+9\\?envelope_id\\=12$" + }, + { + "hash": "a61f87a5097a4be3332bc633a2f4e7b714ce772e3d60139163859d990813e0fa", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6f72cafddd371e32a0784ebc0ae1e6fb35b145257bbe6b9b48c05cc807b282b9", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ad1bdf92f5a8483f00e14a856dd07c89e9036cab07d044b2cfeaad4f8d70cc49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b28acd568bd7918d56e18c0758243c2c34a2c374ad44b815edc201f5e356e1fd", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b23d5bd9632d906bd3b415b6efd4b4faa6c26776882ba18d30c28acaefd8b716", + "regex": "(?i)^https?\\:\\/\\/azeoiufosdiuyfosdihfosdhfoegfou\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "05d219a925453f7de7fb893d99eed1acc5a52f3019420d7e08ec9832522d7cb7", + "regex": "." + }, + { + "hash": "0a86f75d69ff74c1b2d2fb4496f3fbc4fcadb2e1fe77445f210be628f1e2d8b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?RcYgYqSXCDX$" + }, + { + "hash": "0c5f72793b4091659ecd0bc0e820d4e09bdf6d8dac19ad52e64fe6c60acd8dfc", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6c70ab49b3799fa9bd6a28366f4b768e7bcbb071099e818b934f01ff66c9ff7f", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "22c21a58582477632f3276190b85ad37cea692909942919c2cf2fab08a582826", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d5ef199339d43a9a99fc2fb533b23cccb2f47de01c49e747bdff22cf93ced523", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d9f0c5b249935dad4e64baeb950d198c463478ea2498a12fca1b28a35e5195cb", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0a2fa97c56658812f46dbdf4113d426b3e957b1e5ebcb7d9c25af4be5556e95c", + "regex": "(?i)^https?\\:\\/\\/zqw80\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ed1f866dc41ba010d7887cf19721bf4dc512c694231b7740a64716ba022bba86", + "regex": "(?i)^https?\\:\\/\\/areioserfdskjlsfhsouhfjklsdhfuifhh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e0fccc48b158e510d5a5cdc50f78a7edb1b80d1b2eb5f1ac5553b541c5a81d90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195021[\\/\\\\]+messages[\\/\\\\]+13[\\/\\\\]+clicks[\\/\\\\]+4303[\\/\\\\]+9\\?envelope_id\\=12$" + }, + { + "hash": "1a6f315187ea895e8c5ba62f0d123e15a08558223b87dc92226311f65073d13e", + "regex": "." + }, + { + "hash": "83e82b64ac787622e5825a7eb045003d93287ca7e4b94057f10b4f565ad7f2c3", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f1a3690d906cfc9d99459507d872e03ce681613ced04fcacd70d6c630ca299a8", + "regex": "(?i)^https?\\:\\/\\/qareghbqaredhg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bf1f5eca5a48e0a19728a3876897ca51b7ce33759d21b7dd4eee999c304d01cf", + "regex": "." + }, + { + "hash": "794a7170e511d7ebd66ca46f90d02c6edf22dcf0bb73f83d109a068ba5923b42", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0ed7c15d24a1226965b234ef4cc9843d5632ccd8dc01f68f64ac906c9cddab62", + "regex": "." + }, + { + "hash": "516bf84bf19c9903dc8c2f7fba3048ba126cd5c08ab51e05210fa7e7d38e2076", + "regex": "(?i)^https?\\:\\/\\/easyparknor\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4da810cd73945f61c10ba5c4a011415a86c842f8ee96a504b5320a83e52f852c", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ec5ba4d9587c7f9cf005e3d73ec5b2787fae6f8ab96be2855a920f37d2bbb5a8", + "regex": "(?i)^https?\\:\\/\\/de3d2\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4aa47d38ed0ca3e4ac7d07b6399d29769522bde57c1305fe28bc7cb5ec61d37b", + "regex": "(?i)^https?\\:\\/\\/weetcam\\-com\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "234938d957e19b856577f94ca3da8bda32e07151b04260ca7c343378f9f85ec4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimajl3gks2456\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "3b3b45e4f60d02cb3f1955978aa3550d5d686f1629bf674bbc04a001a82722d6", + "regex": "(?i)^https?\\:\\/\\/azeoiufosdiuyfosdihfosdhfoegfou\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e8b9c41624f98ca873cccffca7249400bebf701ee05ff051a5fa0c1635037006", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "89a7f75ca3f557c472b115223917ae4cd5fce60e24295c70beac3108ae5443ef", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7b86bcd539b148ed60728f4307f3a5611ed9f814717236e3cb75bed70be6a2f8", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "62fc4069dcca85e4b2a73ed07df603ad2cc907939294a04026cccf22cc7a8f32", + "regex": "." + }, + { + "hash": "96ce05059f93001b5f528d8034331e22c6501d10552bfbca90b9e0b39828bba6", + "regex": "." + }, + { + "hash": "7732dcce3224abfdff6193609ec44ee90f5ebe64ad6e48e847b1f427dbdea29d", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a49151d4df9863608a95390932c1e3f43be9197ae2dcb5caa62f50475386f6ec", + "regex": "." + }, + { + "hash": "ddc07cfeafb7dc410bfb9fb9a02de94a860081e0ed5161bbfb3852073ace22e6", + "regex": "." + }, + { + "hash": "4dd104ba838db04c939198c103657c6dc57e231351d03a2a4131ed1fd84e67d1", + "regex": "(?i)^https?\\:\\/\\/xbtn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "dffe180258f8904d3218f8d6b675cc4b5feeb93379e0368112fed7a9681dcf65", + "regex": "." + }, + { + "hash": "e70eedc9ca8f5bbc0794c23874677c7cc239674e8a1628174948004581c456b5", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8f9f33d259a90f67f8e642c171bacc3b08a090d26c0355b8907cbe7f834a4fb2", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6944803c21b5e0f3371abf580117673f8ab96aa76265a7de0b10586a036fd691", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "06f10f124b958af837594faf2640d03e4f3cf5cd23f81adaab307056e7fdb7d1", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fbc8f051dc0d670018607605583341bc88bbc3ee4e3b0eb1dea24fddc8c44284", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3567e8f48ea374ad617c5154ef382d256a7a4d4f01dffe06c9fbc1c5adf95747", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6051036d0f8e3ba56b61c4f20465a3a2088cd7ab68068a30d49f83e1fa6d243c", + "regex": "." + }, + { + "hash": "f4da40ff80af88fd2182dd5ccae2d8880a364edd12632dab1910f0ec124a9558", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9a893031d574251f3d226ae364925626a9b1ad6fb2957941111a59abcf1be2cc", + "regex": "(?i)^https?\\:\\/\\/www\\-salopes\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "392984133c21861b8f537bc58c048844dafcb7f88c0d0d5b521986436e4eede0", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "478d6dafa4801c6dd21550bffebcf66ff4d52dc1d677abcd45f3d8b05fe67b0f", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3226cff77f595814abc53d6939638581836be1db28714d362e640203b56ac814", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a1244716a02b689b702ec34cdfa5b2444cc8ae543d16f5b8464166a20073242f", + "regex": "." + }, + { + "hash": "40ebca89a220ae6151dc98875d3090fed0a12f3a66e8e31a63ff9f967004d947", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2a1e3ce7fe1bc7220a16e168b51e390abf696f33b3b6672d49c7f584434dde54", + "regex": "." + }, + { + "hash": "27c43fcf7a2aa2ec0edca66e3fe204d0fed0a303d59e3c7d541231bf2fc50b87", + "regex": "(?i)^https?\\:\\/\\/shaw\\-109730\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "61e07cea9376e01dace22f1d9b1ade4564df5a1e98bd38d583a009df4f7b8cdd", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4a6dca83bcedc108f3c36b6cc0a92e983ce13408b33880ca05c490fe7a921353", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6e389a89e357e9491b56cffc7ce817f8f4f7d9ec8aff1c1882004e7d8d446953", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qcxqly(?:\\?|$)" + }, + { + "hash": "e0fc755f87da29309b502423824d7b8a89f6f4aa3a6f231fbe4a44c2c8a4ea93", + "regex": "(?i)^https?\\:\\/\\/bri6337\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a9c7c8dff6701ad381c11223a818b2e750d91b8b96036d5419521ddf133669d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195021[\\/\\\\]+messages[\\/\\\\]+13[\\/\\\\]+clicks[\\/\\\\]+4056[\\/\\\\]+9(?:\\?|$)" + }, + { + "hash": "12e0031309dc4fbc15d8de04a2fa12952166a789034dc3343d17b082f9eae2f9", + "regex": "(?i)^https?\\:\\/\\/numberonepukukqaug\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "150725f996763f0ef75bba5b2204ded57299ff30c6ab9a4296828a55fb11933c", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c6e66ca72e86fc42ceaab54f7e3b15fc384fa7acbaff690299dae9b3da387d59", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2e811d908f29dc8f9e4dde28296c0ad4ed2950697236049fe5554390e4015e0a", + "regex": "(?i)^https?\\:\\/\\/aeqhqareh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fe60f05025969fc19c4aa5cfdb5e39e887b412cb1b57a5e6c1846fe34a36c4db", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d49d8d809e104d8c09c10ceed28a517cf1e8b59607fa1e918b87b788e7aec178", + "regex": "(?i)^https?\\:\\/\\/aeqhqareh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "929168efcc4ecee8882be09a80497fb684f5b6fc9c7587b3848c44a98c5c5602", + "regex": "(?i)^https?\\:\\/\\/att\\-inc\\-107651\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6183cb5749d0ee02808e137acd8b28f1a1bf258caf73c90339dc5ad461c2c796", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0fec7922d082432cc163f57af614fca2e414dc7e37fe56c52110c8170a1d03f4", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8e38b6da3990f5abaefa0e4aa399582eb194e4a96f38f51a5fe6983e1d6e129a", + "regex": "." + }, + { + "hash": "417c883c689ec47aee3680e94ded11ee9c04e3f2450daf02d33364e5b8cbf87e", + "regex": "(?i)^https?\\:\\/\\/xw3sd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bf2a6f32f046ab1ea00a30215d4144a037bdcc47605ddef08572ffcd1ac7941c", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bbe486f77974a400297ea0dba670b95cd56638a11c92ca1f95d2f95ab633531d", + "regex": "(?i)^https?\\:\\/\\/www\\.3656cc\\.vip\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1c7aeedebb88403bbc0ffb37840850a308c19c4626d7e095a5a053786d23ddbb", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8df000d87ee1a1a03281e9d08f115a8497e0c1f514ac7554a5907a0f2c15c866", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4f25bd4373f63b7912c060f0bfd8d877e239c82600d0588aa543477cdc224ed9", + "regex": "(?i)^https?\\:\\/\\/de3d2\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0cb203fee5b5666d2129f5012ab89a5f36821f57b8f6c854c0449f3b822b0714", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "df68b45fc554a07549a3ca440a938031fea64aef7f1591ddcfd358121916cdb9", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8bee1032261dc91aaa4005f594cd326a43d48acda08667300bfda3f75d17c53a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195021[\\/\\\\]+messages[\\/\\\\]+13[\\/\\\\]+clicks[\\/\\\\]+4056[\\/\\\\]+9(?:\\?|$)" + }, + { + "hash": "6145f24028e5cef1de9a8a5846896ea84308e121e5e37e81c3a3e7f7d75d5d53", + "regex": "." + }, + { + "hash": "81ad8de145d6b9b232a13c6c26b1b337bbd2f928a381e1f363459309af5de8d4", + "regex": "(?i)^https?\\:\\/\\/areioserfdskjlsfhsouhfjklsdhfuifhh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "70e92e99e3faf5413de6dc22a65eb2a225722b81dc6c6287d7cb27ce105a3934", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bfef67965e57bd34ef2068455b73719eceb1d08766c578d4f0a6e96e982b3fc8", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c1079592aa04933fecf07a5b975373750ec37947ae3b3ee8f533d81444e4aa91", + "regex": "(?i)^https?\\:\\/\\/hdvieohotcofgfdgfdg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4256af56c0416fd55ecfab5fdb8b18752434c9b393a995a74e553e8f370e2909", + "regex": "(?i)^https?\\:\\/\\/aeqhqareh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "befb01bcc6a75ef81a05559e81b0ad78e9f21b11e82c116767530325bc1a1253", + "regex": "." + }, + { + "hash": "4db79efca72b698a50f10d32c976121bae441c0fa2b6236cd2b55121671dd5d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195021[\\/\\\\]+messages[\\/\\\\]+13[\\/\\\\]+clicks[\\/\\\\]+4303[\\/\\\\]+9\\?envelope_id\\=12$" + }, + { + "hash": "bf921d04fe7cf7e596739d63628fd895dcea87d7b9aa2e4eeaf654cf83e2e58c", + "regex": "." + }, + { + "hash": "f903ba774a1bbb9622b40ac494d6bc668b2d7ec248bb312f8927a6935faf5e13", + "regex": "." + }, + { + "hash": "f9bc8332ba7e6b2ce3b23023c7d5ee56a16a34e05c1a9cddd7a9253a6e35fb31", + "regex": "(?i)^https?\\:\\/\\/hgeqahqa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "29996b837cd48722b929435b6f803913e851208926445b347c200afc7f702eb6", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1e7b67015f7bf21a050ce09476942b961b599a342a09eb423b3434db44fafc2f", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "437e1139894837aac284247f0798f362f5a957fb7f39bfb64ab8d7dac0a94317", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "805445ebe0b91dcd6c26722c9ee4ff66936aaa4b4597ceb24c42e01bc6275cc1", + "regex": "(?i)^https?\\:\\/\\/d31s5\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2c5a8c8f32285b2bdd36a2fb87c54fba9094ff9257e4ab3f9c2fa17cdbf3e4f5", + "regex": "." + }, + { + "hash": "2cda0eb73b177db9a0aeca4ee757b052f6af1f809e8ebefa0eeb20533a755f80", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d9b2dde50d03329ad3b366d53efba38a8d93e2d85b36d57303de13fc36a89d91", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6b67e66bebb53f8ed48b4d8345d16db6265de4fb6225ee054fe9929b49825caa", + "regex": "(?i)^https?\\:\\/\\/navy\\-killer\\-0580\\.typedream\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "33c53ad277de3ec2696640459510bcbfa9f17a11c54aaa3086d9197c87402c63", + "regex": "(?i)^https?\\:\\/\\/easyparknor\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "702025e6a83c2d28308722c2395630da75cef8e1d5eaef4166e5585d23fb7836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=syaud\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "da3d91b0a1e4fa4d1ded22923e36d4e117a20003e464a248917259ce42b431b3", + "regex": "(?i)^https?\\:\\/\\/easyparknor\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7b73c3cb14fbbbf709647c566051c1767d110d46ceaa83cbcc6964b89827d237", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1831d5ee7b0a336d5ea065926ee2c4a8bca66a45c8ce1a9febdae8580f7bf659", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima358j4ua1w\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "cb3590947d757a8cb5634a7c10a60017872335e8c34923593dc6d4f67e01dd29", + "regex": "(?i)^https?\\:\\/\\/eqarhgbeqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "557747002cab03228f12bc4693afabfac9df8c686e9617a044ac69a79b3430ad", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "52eb9fb14370b729daef60884f753e11ede7ef2d90b3fb1b219ae131aedd095a", + "regex": "." + }, + { + "hash": "ecedcd03a8dc27a2fe020c8f355f0dcdee7e73a36d90b1f878377db8dbe0397f", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fdecb924d914242c9f858330443f58db1dd4aa780273a27efd5f4943b3e20a66", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f7e46d06c5546378d030199f1a28779481d8144b2ac8bd1ce448e3d2f91d7b80", + "regex": "(?i)^https?\\:\\/\\/hdvieohotcofgfdgfdg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2c74d3184a700b42ddf9e61f54d9dd80abb2f5b0c4164bff53a02b108b3a7e48", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d0641275a3eb21572c8aba57e610cdaeb1ef272632c77e743806cd889ce3a026", + "regex": "(?i)^https?\\:\\/\\/xbtn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d76a4784fd2acb473703b166b85a855b0cecc12d525556ac0b1191d607582c99", + "regex": "(?i)^https?\\:\\/\\/tenxreward\\.firebaseapp\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5bee7dbcfc24971fdd94f5c89174ebdef71d7f7f45e5cba668809a8a60d15c2", + "regex": "(?i)^https?\\:\\/\\/xbtn\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "155bdddb638cea959fefd54aea43a5a764cf73c04fdac2db3869c08aa3dfa32c", + "regex": "." + }, + { + "hash": "3cb318b5a6ec511b83e45a917765b829a0a64644f8e65c125b4b8c26ef6f3cba", + "regex": "." + }, + { + "hash": "322594ab0e4d4c816248b699860e613eaf0f36c6a02e59ba9919dd6eb7110f37", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "75cad857258b37da9e6ab751f8b4e45d48b1b8cb8a65ec6e54055b2bcc9a6025", + "regex": "(?i)^https?\\:\\/\\/xw3sd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "82f0abf0d86e16425ebcc7e6edad15519d318ec535b17578f643fc9f7683ee31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+inx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0a23ab56b0de28a9d50e3856a0b2613bb5b06f4992e012331a1dea3a3d445c78", + "regex": "." + }, + { + "hash": "6af2c18ab9d8122a3156d0fee0ce60fbafe2ace72768e4f92cc9bbb0fe0ee916", + "regex": "(?i)^https?\\:\\/\\/d31s5\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bf0cfdb03b0a4b81e98eda18c0c0c332192f90848c93b0e6da598983198da5d4", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fb5c8275e854e8db0e66afa2bc71b1401d985b2602523acc0f543a437938233e", + "regex": "(?i)^https?\\:\\/\\/xbtn\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4db79efca72b698a50f10d32c976121bae441c0fa2b6236cd2b55121671dd5d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195021[\\/\\\\]+messages[\\/\\\\]+13[\\/\\\\]+clicks[\\/\\\\]+4056[\\/\\\\]+9(?:\\?|$)" + }, + { + "hash": "df9a78db9df13ebfddc4738e266e3e23a821477da8e341097a4725a2d6f2f916", + "regex": "(?i)^https?\\:\\/\\/bri6337\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "486097d636e5cd819f736a2bddc4fb43f71d6072e1f807a5356d4ff85d75cb0a", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f320b92bdb0938aa83a4dfa8100471edee6dcd48afc31a7098eb9da614af7a27", + "regex": "(?i)^https?\\:\\/\\/weetcam\\-com\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "de25fd948c3d982fe6a56928efd2603769e1eed0d8b4355a06737591bcd0f1c7", + "regex": "(?i)^https?\\:\\/\\/easyparknor\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "52eb980f98ba1bf8675a675791fd9bc05ccc402d0282b09f4f6b8a672df861fa", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1b1e90549d324d1a4daed77c5d872bc0277308f681d08c44053caecfae5c3c74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimazj6edq13n\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "94d647c1cb1c3647f180a61320d884c7deef2adb952d3f53d3ebb59f30d0983c", + "regex": "." + }, + { + "hash": "1a49186a4b8da054133ffc8a5532a3f51bbb8710bce7121e049c70be9f074b56", + "regex": "(?i)^https?\\:\\/\\/weetcam\\-com\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8c45a5c49ba5908bbc5907ce473449b22a9a9a0ebfb01f5ef7e4c1b09ccc34c0", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "480a028b15eb676785dcbe0cd1fc488fac790d760c5208199bf01133cd8099d8", + "regex": "(?i)^https?\\:\\/\\/areioserfdskjlsfhsouhfjklsdhfuifhh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5e86dd89c178fd0f86f13a0434ae82e55251eb9f345b1036daa6db7ce9ab8751", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8fb73db687decbdebad360a9ebdb693616a7530363493166c153789577377af8", + "regex": "(?i)^https?\\:\\/\\/www\\-salopes\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b67c887d5ea692a66a02bf8f9d7adea8da8cb43d72a288c54b18c9b3a78253cc", + "regex": "(?i)^https?\\:\\/\\/webmail\\-107799\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4eb8f0db50e1bb1c8f77b10070f6a1d9013a5e5ad7410f0a674160b63fb59a48", + "regex": "." + }, + { + "hash": "1120bbbba8232fe1c2e8bb1f60a53341ac2ffd2f38808078ad5ffed9c4f84280", + "regex": "(?i)^https?\\:\\/\\/numberonepukukqaug\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0fb56e68a558e6927712ebe21430b1b37ccd23f7825fc31f2514061b65390067", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehdsq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a951ae8f0e525b15548eda6325a8f720324b1476a2eefda4d195a72bd2982", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a3caf10e064c79c22c16c187343c19c2926a2ab7d32839f560b67a0983519287", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "66bcacc621d4ca601ea1b26b0984eed394279b1a4d6e493f08ef61636db6205a", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "84d870756183f63e830b21cbaad7643d0bf4fedeec77edc6a1f5eec6f902a5aa", + "regex": "(?i)^https?\\:\\/\\/www\\.3656www\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "44eee5a8d5ab223cd71002d8cbbf8839abc44d0fc0e822ab5228cc6cc6725d02", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d0894dade3d61775ca384696ef82619ffa2681dad85e2ab5a6e652a9d1a8a76d", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "417f68a1964f4ae12abafad50a8386fe452f3212d34b1dbbb5cc1e6b1821aedf", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "64e1eebef21989a769390a260472c71b28a025f80f55c36021750b6e9487be38", + "regex": "(?i)^https?\\:\\/\\/d31s5\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8339b7fccbd312941908ae28c9e339c39d0012c7479beaac53a95e7bed8f7388", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a64185d8e3e341fa10b57ba555f9368cb0a7e622ef4f0a15bc21681b24f63c74", + "regex": "(?i)^https?\\:\\/\\/qareghbqaredhg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "51f62c80c7cb96a37154f696eafa87877c287f806932365f7bf87cfe9e493529", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9f767eab6b96470c1e8cd26c77de308f9478975cf57615431e3a258cb8d388ee", + "regex": "(?i)^https?\\:\\/\\/azeoiufosdiuyfosdihfosdhfoegfou\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "15cfa0083480e55f337651713de535762085f7f7a37166df64718d2c658c802e", + "regex": "(?i)^https?\\:\\/\\/bri6337\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "843452c588455d1a5d2dce6b34ceecdb249c14fa0bb765f9d279a93a31e9fc5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts[\\/\\\\]+195021[\\/\\\\]+messages[\\/\\\\]+13[\\/\\\\]+clicks[\\/\\\\]+4303[\\/\\\\]+9\\?envelope_id\\=12$" + }, + { + "hash": "a159b3eb648c073c572b8465e3c9106e085e2681622432dec1579f802962b715", + "regex": "(?i)^https?\\:\\/\\/xbtn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e0fc3fa1ecaac01c1064537a826e803397eb2bee65a66d72c9bea723793bd60e", + "regex": "(?i)^https?\\:\\/\\/jcb\\.naucujy\\.com\\%E2\\%88\\%95fqidu\\%E2\\%88\\%95etoazpboo\\%E2\\%88\\%95xfkxz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xyvqbb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dfe50396468329dd7cbd5212cc936dc25a0424a26fd5b9fb87eca5fdb1c46664", + "regex": "(?i)^https?\\:\\/\\/zqw80\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "02febbaf998e336ee578f2bd2d5b6c23e9ef2788f2340bf5ce1c6b21e746d2aa", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2cc69542065f328cd2cfa22d36dd49fb9d880edb6317e9ca9eae116b336e30ed", + "regex": "(?i)^https?\\:\\/\\/ghbeqahgbeqa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c661b8d482d8857e2d6f5ce755975ebb0c63590d0884411b345289eb31e97d01", + "regex": "(?i)^https?\\:\\/\\/weetcam\\-com\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "71d8b58369b03ef1aca025bf8723569c2f5a5fedf7e0662ed02b3d88afa50909", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "58b23d7dc13a8e5374c939841b33a08363706176c54492fff1aaa08b604f55bd", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d0b4023a578de33a14591180a5bdc2d63fd9a71c30b37a6dbb986ed09e610d1c", + "regex": "." + }, + { + "hash": "8147eabf806e06aa593de3c5f26c799af5be9f0ded893a5c48db4ac276ce148b", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "59ecb753a663b958de342c22f6e0b5ad9ae155a13e02fffea755ad7c5a1cd08d", + "regex": "(?i)^https?\\:\\/\\/qareghbqaredhg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "19ee7c856af4a0b4f0ee9a39217734866685ba628f2813000f2a57f350224877", + "regex": "(?i)^https?\\:\\/\\/hdvieohotcofgfdgfdg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a5048941a0ce0d515f994385821aba43262ecaaf566fdc7d66a26f9b9e891", + "regex": "." + }, + { + "hash": "f7f07975dd8212bba62435913542207e5d6c69a0849a2fc491516a1c4f1bacc0", + "regex": "." + }, + { + "hash": "542464c8ec8850b7558055c9ddca38602660a4af6dbb512838ef4fa10e2c4212", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "01e03267f58d5b561722cd9ee2b4de1d776b6e88a3e2d6ee8f9040a29ac54cd8", + "regex": "." + }, + { + "hash": "d45d3e3097d095983329ba65509c4cea35576f6c453c5677de139ac45a928d84", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "31abee0e9aaa99d36b5e56078ce4fc8207d0d5eb148a1e972cc4061543f537f8", + "regex": "." + }, + { + "hash": "32ce5de47d95a71eb8dfeafabd951745fc51b3718b71c47e7be6567a80dbacc1", + "regex": "." + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima[\\w\\-\\.=%]+" + }, + { + "hash": "7f838185e8e4794a057c0d386c31431ec57d48b00d31a856f5061fd2b9ec60af", + "regex": "(?i)^https?\\:\\/\\/aiozeuyqiosufyiusfygiqsdufgzeyg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "834878c5301e166b3df108391ebefc137d0a2510d2c3f1b2846085077c6cb088", + "regex": "(?i)^https?\\:\\/\\/zqw80\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "845d9837315f90022adac0219dd857bd83053ad4c38ddf63afe8f77c71b27c1a", + "regex": "(?i)^https?\\:\\/\\/vfgeaqdgdvqaed\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d3c01d4b42b4e61685645793118e8d07b59b1a7801a8b31fdc8bce6c43c4c566", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6973c430d71ebad3cd1e8ec10c45c55a0fdcea62420d00081656dc1897bf391b", + "regex": "(?i)^https?\\:\\/\\/areioserfdskjlsfhsouhfjklsdhfuifhh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "77e9b150e26ed91dd9e53c22765599a0653c8ed1764d602c00f68e95939d2535", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "07d7b445f5ba8d178f30b4c7fcfb3e0872f095336ccb673841a296a9ec030720", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?UlSP2NZk6Y$" + }, + { + "hash": "ae1ffe8bb06fde10593ccb553fcc4808616a1dd2d90e70d4f009754864fbf5aa", + "regex": "." + }, + { + "hash": "84976c491a40233d186b7aa9a8aea4e424f2a4f48672a8c5073d59f589694b45", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b80e0b40e02b20733ddbaeee588c54de1cdbc05fffa1e58c5dac9efbf4259080", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehdsq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b8762db88bae99faa531c1249ee138c9364ad277dc7fc276998d13e0d4a12c07", + "regex": "(?i)^https?\\:\\/\\/numberonepukukqaug\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f22761efe94c3d63fa20c139d252f1ba6d444e870adc8f7d039803443064bb92", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ae01041677c05a6fa0791d1651b8c4897eac090cb570beddcbb6f6ec052d7cdf", + "regex": "." + }, + { + "hash": "a8b59858228ae616d50a2c382e077cf5fa3756ef98173aeb379e646cb790c4ba", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a6e19a5e9453c89deb88098f71c966845478c5410081750ca7ed9f0a8d07e81f", + "regex": "(?i)^https?\\:\\/\\/numberonepukukqaug\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "797f711e29f87a2735366b4d28951ea5b22f30b5b405eb8e0a12808438509ae8", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e64c643c4051f7d99bceb052152c0a24769a151df5b2e64b3926cc84acb353b4", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cca0dc4e606b006b471f2d07e7bb8b3067beed54838ae86af46d9e5ed1a615d5", + "regex": "(?i)^https?\\:\\/\\/tenxreward\\.web\\.app(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e5047c43e1eda039ba38461caabb23c34f821609f6c9e2ae46e95699cbf3a4e6", + "regex": "(?i)^https?\\:\\/\\/weetcam\\-com\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1344509630d1a8a3d66f09129ae54bcda70bdf6f9c9fbd748057948eaf4be14d", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d70ce450ecbe788ff9ca6f169e6a8d3e8caf61ee68a39f77c70d9f5e6b8bc68a", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ed0ba69800ef16303a1e46e141d1af7d0289e6309ac369f6d7cefabcd7cafdfc", + "regex": "(?i)^https?\\:\\/\\/azeoiufosdiuyfosdihfosdhfoegfou\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "368f032be13d337dc77e3cb857e0ea4fb3b338dcc4122ca967c84e453e772f80", + "regex": "(?i)^https?\\:\\/\\/www\\-salopes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a054f680ac81c31f173912aa1afb69a0c8a795d2ee4dc9916c8323d5afebf6c0", + "regex": "." + }, + { + "hash": "ad1579cf831c42a4e416b03e6b29529ae6905b5528638ff4752be1034170db40", + "regex": "(?i)^https?\\:\\/\\/xw3sd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "19244e378e07d67547e0e70bf366b7dc7735d8416a796183699b7108edce9a57", + "regex": "(?i)^https?\\:\\/\\/xw3sd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "778419c226156c24d04e1dbda2b708e409b5f04179092c8a7ff00c91d419c675", + "regex": "(?i)^https?\\:\\/\\/ghbeqahgbeqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ac72cd0a39281b832b4e8651bf89695d6ebe23141e1afc54934817f3656b0612", + "regex": "(?i)^https?\\:\\/\\/xbtn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b1b50cb5dfcfef534cc290172974faa62d75d948e27bf85a170f77f3fd4b99bd", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehdsq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "250e8c43461fbb7bd1e3c2ab2a713610e6a2ce81df59466dbbcea03dbf2e5934", + "regex": "(?i)^https?\\:\\/\\/d31s5\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8b541d7b9263e934654eeba2dfad78fe0cff639b74b564c42395ccbcf0a2e173", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "be9af733ae1bf6f8309cada735bf881f2622d09249f5572805289d383a2f744a", + "regex": "(?i)^https?\\:\\/\\/xw3sd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "34ba7aed2fc8d8fa139b58a3673cabf41d1ba0c1e162391e1dcd83ec943a8d15", + "regex": "(?i)^https?\\:\\/\\/de3d2\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "77a02ace8f054990b869a0c37256c44ec7b944f89f177e9cefb92e5ce47128df", + "regex": "(?i)^https?\\:\\/\\/eqarhgbeqa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "86e8bf1021323dff7499358f0d3b0c249bba06cd6bfde074b05ebac3b4cd5972", + "regex": "(?i)^https?\\:\\/\\/ghbeqahgbeqa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f98478ca8a7f80ffcca58355f5aa7de1a92e5617e102fb94227c10965acafd85", + "regex": "(?i)^https?\\:\\/\\/www\\-salopes\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "af39a9f693e6bd7c66ce4cbec2b4325767168cf075689f483d0afb46b4e7689c", + "regex": "(?i)^https?\\:\\/\\/azeoiufosdiuyfosdihfosdhfoegfou\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f8f0a7ba4dad02e0858968818fcba34960c4fd6aa0fc9d4da494db2d86994b37", + "regex": "(?i)^https?\\:\\/\\/d31s5\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "231709329d570b34116306ae3ffb7797a108f67a2f772c2220ae2c47277f9b27", + "regex": "(?i)^https?\\:\\/\\/rehan74888\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "513d03f8fe9e4ac8f08f2ae89eac81fd96415ea183e3119bf2a63f67435731c0", + "regex": "(?i)^https?\\:\\/\\/hgeqahqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9f8af651a699f0630d027fb9cd8eb13ea3aac391b2fd4eac1e21742881f30c96", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimaaro72bgxuu\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "06ed0e364f9787c8569edfa91287f762cf3c6d905af461239a3183e032db41e0", + "regex": "." + }, + { + "hash": "2f8de854702e7ba221cf6030d222a1e018a5b0e84f8e4291e0033b713866f207", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.zqz[\\/\\\\]+\\.qxq[\\/\\\\]*\\?fqCflKJM5$" + }, + { + "hash": "e80c18023f38dee6af77cc9a5d0ebb8137c09247dce0f25a2c4abd9b8ddfa979", + "regex": "(?i)^https?\\:\\/\\/eqarhgbeqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6c348b05823d67b3833a3992b5b7e77ecfc32c60f3bb4209cabc7995d4d09050", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7dc0ebb98acae604fa7e6115bbaacdf63efbf932a501b9ff83840d343e524cdb", + "regex": "(?i)^https?\\:\\/\\/xbtn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d56993d8230d45433e089b4b6ed89bbbc12ed3f67ebc47ff94fa59b37b74f7d5", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ec55c6790a39cd9e72f14ea0cccc947bf3f11802a148e829d0a4cec8d324ff1a", + "regex": "(?i)^https?\\:\\/\\/bri6337\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1a49afa1a3be4eeddedbdf3a2adb84beacacf2427fb30fdc55364667a3a31142", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8348567a2dda822e0c302af5576015c54443c3ab0b1b451b415f989e318e2fe2", + "regex": "." + }, + { + "hash": "cfd1e0d9b3aa5679c3b3e424b64a036767790cf5394e8f7b94e6c0c7cac00302", + "regex": "(?i)^https?\\:\\/\\/amazon\\.anfblmbgw\\.com\\%E2\\%88\\%95lznppaz\\%E2\\%88\\%95kgkbtlvik\\%E2\\%88\\%95cvdaurgq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ptbycrdeiw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b6a43979d986b2877fd9f48d92bcf122ac2361aec3cb0f6958304a6885ca0cd9", + "regex": "(?i)^https?\\:\\/\\/zqw80\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "96c478fcd982323f8bcd1589fbd8e3b775bf8971e28cc2318d6085eb2f2df09f", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4e6f5117341ac90372446dad55c0d4350be2fb32f15edf9f7cfda5a643dd512e", + "regex": "(?i)^https?\\:\\/\\/easyparknor\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b1b2529632a669292a039635d6feaa90ac48cd2371f824535df1457b94f0ec50", + "regex": "(?i)^https?\\:\\/\\/zqw80\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b435cde515c981c0bd3fd383998380084d026d9c7d184c228524cf84e0d8b6af", + "regex": "." + }, + { + "hash": "594344ff9ac9cba7991e460b3726c4ac095fae486bcdcb78eb8f4e0c4f02c9ea", + "regex": "(?i)^https?\\:\\/\\/bri6337\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "890d5fd10c5448da84da385e33ba20e510ac91391f0697edff14dbcf75015533", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e7a5fdc5fc002bd26403b9aec941dc1262130e5cccfacdeb750907988b456ba8", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "093f08259cb04be4caa2e5673b77b801569327ca66da38746964067f5e14155d", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ea9b32eba0f0b639dcc3e4f0edb2f3d4d2dd501a3577d67c07912cb6b58ebf74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima2znzop5o\\.co\\.jp" + }, + { + "hash": "b59947e0a5e980dc18b4576bb70fbc1a3b43d031a8d5942df615415c4ecb7a0b", + "regex": "(?i)^https?\\:\\/\\/bri6337\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b63f67113c807ce1a68bb5d938ae5221ece2e6d0344d89bd742f5cb3a62b4aac", + "regex": "(?i)^https?\\:\\/\\/de3d2\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5adfcb6d21aef827ba6b3ef74eb8ac63e52c8c966744552537fe544844ecfbde", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c2fa01fd487e4b90622ff338c40519d4cc80dfe693ca06d31668adcb6a22afe4", + "regex": "(?i)^https?\\:\\/\\/vfgeaqdgdvqaed\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bf1f9bfe012c7efc835d4cebdac1e650b8ceddae70977e37d2a7bb1cf8726ff8", + "regex": "(?i)^https?\\:\\/\\/vfgeaqdgdvqaed\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "77c9570d2b056ea32b55b4b419ebc6f301caa14db5ad6e00df724a9d8231819d", + "regex": "." + }, + { + "hash": "4198a145d1a5c6fac54bfa8f38867f2e42068bf7ce2c9173449b73718d9205df", + "regex": "(?i)^https?\\:\\/\\/weetcam\\-com\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "be9acc946ba6d76f8fcabc7ef29a6c944d8a4fa81f42ffa59972933def620312", + "regex": "." + }, + { + "hash": "21a008a0d20d36ad602fae8bbf2041f9d1123b8e361651781d3e18300e237d70", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "315c5849503f64ad398fe9c6a78f77d241ee8cb386664d4117e58e903e78cd7a", + "regex": "(?i)^https?\\:\\/\\/eqarhgbeqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7cf2e0c5442ff71bc7deee085a280ff2bbe7ccf77dc567e0bbb1f881417e6cfb", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "363951c9f1e4155848211cb824b22344fe76dfb0c843945658d342f77a5d252d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ysxiia\\.com\\%E2\\%88\\%95ixbwaalsko\\%E2\\%88\\%95losdqxea\\%E2\\%88\\%95lfvcnubgk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ryrgbordgm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f315762a17003c885d165fc717417b0655525943fa5242137b59847cfec092cc", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3a466d11da1641c279ee31fb6a64a4e7b6f1531f7172009659b411de81eac43d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Dqk3(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fc36e46eda3ba0002128b263d05a7c5aaed6ce0ec621770438ca16f4cf488daf", + "regex": "." + }, + { + "hash": "4900c2795941bc96e66851ac322eeba9adcd55af8a0369bfcb6e7d8f5dc5b6bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+sign" + }, + { + "hash": "50a8a8077f661bf1bd82ce55d14adad042f8b0c0e09e159429bc9e6e00811712", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f468972e03a7f2e44877b3583c89a6bdc2a9ab15d120f404e21f12f06bfacb86", + "regex": "(?i)^https?\\:\\/\\/d31s5\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b7a56919a5a6bd4a303728f7c8bb5f9f6969aa3b124a7bee7bc0df7499dddcba", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "76e6d34ec1659f3c528838b9709d63d46d9e12db3e9f445bff2b80c94cac1ce4", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "943c2a19266a986a15d374a47da676d3f557b8d1d337edeb1e4f082fd5d77a21", + "regex": "(?i)^https?\\:\\/\\/de3d2\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5a206531a282750b220a8fd049239b2d658ec38f2e7ec87b826b2b96941e7090", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e64f574369fe473f41e0ec727003231a23bf491edead7e1392843125f0a3fb37", + "regex": "(?i)^https?\\:\\/\\/att\\-103784\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ae4d8c22fab127a36caea4acf5258fdf4ed8c5030b6d225477995aff85ca7089", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register67918(?:\\?|$)" + }, + { + "hash": "3c058940560161f8f11b762e407fd1c6f297622be7cd30a8c5ad5a58d9a65182", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d78c596cce9e0262eb649ca28afbf02ae0bcb06d9e57efa04f302b7c9b611af3", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a43e4e9dd4e427e97875862bbe71f99d4f393b3bb3285aba597c684744fc02cb", + "regex": "(?i)^https?\\:\\/\\/de3d2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "22ab43b75f0050053cb38c541219d0019b57115ab694f13f8ed043fd637e0359", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f35c85dea59c13947c1e3ab0873c638af30159a93716c2554bef8b3c44bf3bd1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=wctvuwwb\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "717c83a30afecf73114ef76d80cdffc31f12b55bae21841e4a4affc7b9ee5462", + "regex": "(?i)^https?\\:\\/\\/easyparknor\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "347c64d9a393042b3b97e409a5c144eac7675e1d958defb5e35be892a9f9c69c", + "regex": "(?i)^https?\\:\\/\\/bri6337\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c52a7138d3476d016b6d431d652715f90af62eff021633f776b7d0f883892e34", + "regex": "(?i)^https?\\:\\/\\/bri6337\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "66fbd373897fbadce2ff24f2a6b8332fc6437de80477557b90ee6c2bf0d5cd7a", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9ac618dfad154641e8c029189784016a1f2a189c3e05586810c5b66d8a654d76", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9ce041d0d10d73458b854a94ed2535a5e8930d9b5689684780d3a6647e702faf", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4b2b52bd928475c324c9b2dc6ade2ae57db20211f1c28ddd393e0f6ba4f60cd4", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "95b8a57a51b828af13b10d7a12242e5acaf6f2808c7672b0474466f0b097b4ec", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e0a3987e990e0791af3ebe8bae2de5ce28feb7c0b5be7cc8f975d88d4cb7887e", + "regex": "(?i)^https?\\:\\/\\/eqarhgbeqa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e69109b45a14ed900692ae59bf849f95a131be1438443ced132763720ecaf9d9", + "regex": "(?i)^https?\\:\\/\\/aeqhqareh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a65d7cd4c9f83e49b73ec1a43a419603c0bb93d12dc9fe38a5a4b6ee2ecfe809", + "regex": "." + }, + { + "hash": "38b460abd2645a323800bb5c088a9f80b934b12600f34962b24944ec2a6823ad", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "52be48b3317439c57e6a1d5056f38c3fa921e15265f5e8e2f5106439ab33655c", + "regex": "(?i)^https?\\:\\/\\/kenh18vnx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e69ae391b48f371eb3db67dc30d1f3546650ad1202cb8152a6b7493cdb7470e2", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c53e2534c5d0559a892c67a035c611dc621a03e27bf1d4eb95318b5fc6d2e9bc", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "449aee36b7bcaee7038a2c65410aa4206aceb1b8558b92df58c07581fab8b3c8", + "regex": "(?i)^https?\\:\\/\\/currently03\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "db7359af98e7bfcd5733bb8273a4e12e6bde843f2c7ae8f0f649ffe8d9428f5a", + "regex": "." + }, + { + "hash": "bd38385d88e8c70484b5546ecaef3e67f5a7be7decd88b7963c597c7ca30a158", + "regex": "(?i)^https?\\:\\/\\/hdvieohotcofgfdgfdg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "648cf5d9df9ad628f220bdde58ef0146219baf1ca33597117b8d7a19cb3758fe", + "regex": "(?i)^https?\\:\\/\\/www\\-salopes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d250c8d21bfd0f7116aadff70e7e61db8465baa0a9e6ece057db21b92015537f", + "regex": "(?i)^https?\\:\\/\\/xbtn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ae4d8c22fab127a36caea4acf5258fdf4ed8c5030b6d225477995aff85ca7089", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register67918(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a40055affffe82b79b340e1782a89cfe115fd3e38ab164fcfca781be30cd6056", + "regex": "(?i)^https?\\:\\/\\/numberonepukukqaug\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "abb6fe2153a88a93deebe46758e9c4a8d43c15f53a608f3becbc296a3d2518b5", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2168a82fb421e30dd0a6d5a2ba178876ee01fb9b78621c3007e827a0235f91f4", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a7100d2a38ba4855e4991305d97ced2179bafbb4de93ae2544fb3c57970f9e4e", + "regex": "(?i)^https?\\:\\/\\/reclam\\-ilv\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8df022feee62a4f7102507bf49921e797cb2cdac9a79f2260bdd9c32f9f9211b", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3a557c263d3b35c4d1a31b67a03015f8a040b375504c8f64297b86e26ae95c28", + "regex": "(?i)^https?\\:\\/\\/hgeqahqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8d9b42f0e99a63fe7b478f2e2c53170b0aa096446f8a2a2c5c2704568bb75c16", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "916b8a215e9ae2720ee280f8ab78f4f5289ec90e7309648a63c4a9d1a4d3fbce", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "13ec75f3a81a46adda11aff11fa8889dcbadfb0b8a7eb65d533dc1141a454fe4", + "regex": "(?i)^https?\\:\\/\\/geqaghb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6a4db47808e1e8394380fe29c98f5d8073d9c1cd55f02ec8a7f368bae4b2de71", + "regex": "." + }, + { + "hash": "fd1c21a59b4e46d5dc20678008fa587b8a0a3e01c07d511133bed0e5e6cce44f", + "regex": "(?i)^https?\\:\\/\\/qeahgeqah\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2bbdbd3e0495b7b71a6f01eac64affe54474be6e3640402d231e3f9af9219176", + "regex": "(?i)^https?\\:\\/\\/azeoiufosdiuyfosdihfosdhfoegfou\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9e9931a797fdf0349472c860a0e9d7ef9fb15e5bae96de7a7e0918b32dcab7cf", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c4f2a0f7072a89307da263411023c177bb457082c9a4d18d7a6e56dc3e5eba72", + "regex": "(?i)^https?\\:\\/\\/hdvieohotcofgfdgfdg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b481a6dfe96c4eabfd76c6de8fa24e3fd42035016f816716fa443cc7f7c38db0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?LapSugJUgEf$" + }, + { + "hash": "92ffb4f3ce4b25b97c4935bcf3d74ff472eac2fa448b916e464990f4c8fdf34e", + "regex": "." + }, + { + "hash": "28e72c9f584b38454344508488abe3f0fe060ca756f0235b379b8b963ca6b176", + "regex": "(?i)^https?\\:\\/\\/de3d2\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "254526b2297947603418462e2b4debd47f17fa7e05722e3cfc2826e4e980669e", + "regex": "(?i)^https?\\:\\/\\/acc4565kfnvjfbvkj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c45f3757240e82e417f8095a114a5d1bdbef136ea927427659e2c3b231bf1a9e", + "regex": "(?i)^https?\\:\\/\\/yourluckydayqdbmcyo\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "96f78b3aae544f3cbf7b15f733cc2b861b829ea82e01027cec97c5ff5c7db6f6", + "regex": "(?i)^https?\\:\\/\\/ehgqaheqadh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eb4cd917dd910de27215e6153bf54c78d759322c51f67eef40db1665a87e9efe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+live[\\/\\\\]+intuit2024" + }, + { + "hash": "4d0b4e4ab68a6f8b52dffc0cea385b1bc45de3966f0d33e1ce73c679c125e66c", + "regex": "(?i)^https?\\:\\/\\/grgjdfoigjdfijhuigjhfgjfgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7f0a5dbe273434e777f36edd67ad609618de23a42279272e534b7427c668e77a", + "regex": "(?i)^https?\\:\\/\\/zqw80\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5fa2d2c324666e2137b7b9d657e0ff9755942a7814864321a648f75d409a6914", + "regex": "(?i)^https?\\:\\/\\/numberonepukukqaug\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "66174750717154aa00bcb399340fbd7fcfbe7a48a230816ff5f1193510e3e4ae", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6b781b2518b63e284a59dd89296d95f8c30b0c9d45e96f87a07b3b2a1b9bf5cc", + "regex": "." + }, + { + "hash": "705af5106803aac0b32d719528314142dc471b029b487c9dcb890410468540a5", + "regex": "(?i)^https?\\:\\/\\/aeqhqareh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "20a83fc1f84b49740860423e8b2fd0af89f8f976fdaffb1caf37cd11d489bf84", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c5a8db1dd0850b54f34f2b4d1a20d3738dec3b70a2ab5a70a78b5a4c60eec6df", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7c811d3fd17b7eff8e75a1c217733f80f5fee0bb964cbdc136acd1d1a2c678ce", + "regex": "(?i)^https?\\:\\/\\/areioserfdskjlsfhsouhfjklsdhfuifhh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "88eae047da2551bbac58a8ca4b5f23d52b85e08e385c5af58975a3e67ed61a5b", + "regex": "(?i)^https?\\:\\/\\/hgvgdcjshds4546\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4280d207fbf066d2d7e16a88063befae09e9411d8cfbf5da22fe95bcc8be5a41", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xxlqkw\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "5521efb8646e413bae219c80b67ae7e55154f013220207e33f645087ac07fc1e", + "regex": "(?i)^https?\\:\\/\\/hgeqahqa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "13a2f59f56ce9bc0cba807b46e42ceaf713b80c46ba380391453f1a911dbb8f2", + "regex": "." + }, + { + "hash": "40faecc15c21ca07f3ad899a1229cc666e32ff0c2f4f0cfedbbfc1cbc081c777", + "regex": "." + }, + { + "hash": "a1d8fabd6de7217dd9fa721196fc06a346aec8c60775485771fbfbde34efacaf", + "regex": "(?i)^https?\\:\\/\\/hqaehjraqhj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2da104de54405f7ec2b570be64e20bd9550bb21d46d23eb75db3ff27890ebc2e", + "regex": "(?i)^https?\\:\\/\\/qareghbqaredhg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f68d75ddb91dcb89821f64c071315e7b0d28aafe525a7e15819cb11497539765", + "regex": "(?i)^https?\\:\\/\\/numberonepukukqaug\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d0e89487acff44ede1dfc5d0a1b976142943e02f96d8544c3b93834d26a8d4c5", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ecbdda22669b843974d674dd9691967b9bd9f6737522cd296c0634352ab86103", + "regex": "(?i)^https?\\:\\/\\/acco456ergerger\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d29a8723895392e0c2cc3597239eaf01ff602b58b79371114695ea338e98463a", + "regex": "(?i)^https?\\:\\/\\/qareghbqaredhg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9443aeef275b1a3ac3719a80d173782dd82e5a7aa4c4dcf8a55dd56161a3cdb3", + "regex": "(?i)^https?\\:\\/\\/eqarhgbeqa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4d653a0bc297a4c116b3e80bca2d16accac39d7e2513aac45dac515fa9bfccfa", + "regex": "(?i)^https?\\:\\/\\/vfgeaqdgdvqaed\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "119b8ec6421951d16d06e46501eeed44876aae683c579b541be58eeb2fb9a6c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimar6ma9r5ep\\.co\\.jp" + }, + { + "hash": "44787b96aa13dfc5013ea6a3d3ed95daf73e5c701f0e0ff0dc2910bd5918f6d7", + "regex": "(?i)^https?\\:\\/\\/msk56ffgejrfbhdkb54\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "57003d620cf142980e34336a7bb3cf6602d8a1390ae88407200d118334e729cf", + "regex": "(?i)^https?\\:\\/\\/www\\-live\\-putes\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8fee73d03ab95c87349b3ccbcdc32da99ee8204b644efcbbb752f724327ec239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?lbT0z4bQll$" + }, + { + "hash": "54cb5b6e72c19818651b4705cd1dc31c587f44b7e20e943b14c3b2b96a816361", + "regex": "(?i)^https?\\:\\/\\/xxl18videos\\-xxxtube9\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "dd35969e6a9a2a657da828ee6f4ca2d3295af6fed9e7ef23a6b103626287935b", + "regex": "(?i)^https?\\:\\/\\/cvcvbvcbvcbvcb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "981352219b6bc78cecabee2b9d7969fd4e7757e086cec00eecbfdcde00cec486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sorgula(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd9bb8989ac6ad835dd621b047f914364e9ade369e4e47d472b27b08f94723da", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8694cc5bd1117b9555187846a3c27f2d3229d1c700e5982e2e068a0f63674cc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "357222a7c80e10dc6bef0b540f685dc3a1f41a1eed44896a0d322113c37f395f", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "835cec33b2cdc0b4886fce4f4bc2b13a65b19e176964fcc07db3749ba25f604d", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "90a976b119f00dcbacde0fe9a732403267ec00b73f51293e01e301e185e19272", + "regex": "(?i)^https?\\:\\/\\/xxl18videos\\-xxxtube9\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "94cba61147ec2946720b95cb1445b04dc358d7d50050c28e14ea640ccd5194be", + "regex": "." + }, + { + "hash": "008977de5a2c50e4c184edc805d241e5def97d425d71492ac99af111c84e5673", + "regex": "(?i)^https?\\:\\/\\/instagrampostsby\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "399373ca9908db41c973c910144c4498c44ea145beb254c98b6c7dbdc37159c1", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "59b7f49ed5b29b6738cf3d1ead139abb0ea953aea67bb0c6cfda889708fdae86", + "regex": "(?i)^https?\\:\\/\\/gdfhgdfjighdfguiduighuidhdj\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92ffad00e6e9cc0bd2139fdf570cda0039cc5b6e0572c90b86e7ca35f51eab62", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?70JxtnN505jm(?:\\(|\\%28)$" + }, + { + "hash": "d577b0286689bc16f4a8bd6e68ed6a427ad6dd4297140f840107a3bd37ad5195", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "99a900def2d7862f63699825ff6d614f00a1b68866a8368fa76eccba220824fc", + "regex": "(?i)^https?\\:\\/\\/webcamexhib\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "635944c607d18395b3c79dcd72d87fe3f21f74ce75103141471b43d4b3e11306", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "17dbd39ae8add3c49f2e45560934f70ada34883dd17ee407feb9bdfa3bbc5bd7", + "regex": "(?i)^https?\\:\\/\\/gdfhgdfjighdfguiduighuidhdj\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f1e349d60968b1ba856413ad7747f0c338d9e44c2900362a5516fda1d1c0c1d4", + "regex": "(?i)^https?\\:\\/\\/instagramreelsbymeta\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d896e7df633f95483023acfc4d382638cf898eb8eda00f2180fb0b520e0f8a16", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porns\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "20dd5e0f384b9e146e604338102639879ebebd1885d8c02819fbb48349b9e95c", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ca5fcefe8a56b3495c14f21d58715ffcaa1135d5e34ef0ae77dfde221331931a", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dbd361ca6beed3993c9763c9e2d857e3ebd79dbc2e3585e4a41e34ffdb8f2e5e", + "regex": "(?i)^https?\\:\\/\\/ssaas1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d934400766755cb03cd8bfc34c27e1d89da9b3d89a598b33aac5ae6eae221", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8974bae192a6243b62cb12ff960bf7ff3768cf9616cd1c823a35022487839085", + "regex": "(?i)^https?\\:\\/\\/instagramreelsbymeta\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f259a945cbbec1b67ef734c5622af000e2b8740418d20c18b7e252581704efb9", + "regex": "." + }, + { + "hash": "ad4708d5fde8ca790112d3db88cfe65070a4a80136f9dc4053f63796b580c0af", + "regex": "(?i)^https?\\:\\/\\/cvcvbvcbvcbvcb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f58105b96e62096f524d29f2294375d115c64b333a254b49eb0219cbe767ed57", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "999ecf95374d073e581d177c20944f05a7e9c7f93d57e3d3325b8daacde6c367", + "regex": "(?i)^https?\\:\\/\\/instagrampostsby\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6a4840e4aa9bb4e8aeb5c6ee532e193707888ed957e0bbafa0a2fc65e7f79a31", + "regex": "(?i)^https?\\:\\/\\/instagrampostsby\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "55d78754b315032fe1cba84734781f30918e1d1d2a2962dddd899630b8257679", + "regex": "(?i)^https?\\:\\/\\/freefirereddemcentr\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f0ef36c4d22ac3e6e6720df43e4c56e9172693d7e088839dcf8feac6b042ed87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Isl7Hbw(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "21cc09d19686ec7b8c3318732b9d0d5d1b8dbd2ab74b9201af9907e7c75d21f2", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5ab3196de2e5cc4c566660d697559160a5a1b7b1fc468f2f2d18359134168946", + "regex": "(?i)^https?\\:\\/\\/ssaas1\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a2feabf5f974e13bbe7ce213d5bca327e5c8d5f608e904e7681bfa2419ebc8a8", + "regex": "." + }, + { + "hash": "2cbaa0e63f1e1a6b3eb343692ce5fa1fd3e34116688e88fa619053199398e799", + "regex": "(?i)^https?\\:\\/\\/zzccaacxz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d46495df701db5d8a39ee6493644d0119faa4a9bc8565ad0b33feea809906a87", + "regex": "(?i)^https?\\:\\/\\/webcamexhib\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f756e1ce2fc0cf9ff8a13cc030d6100ffe2650890418332888dbde6e9c9b2a3c", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9i19st(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c667566cb761f79c610989f2c79c97b20c3da6b00853f7c2ed1739ca6b03d84c", + "regex": "(?i)^https?\\:\\/\\/xxl18videos\\-xxxtube9\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "92235a5ea8f80502616d06f42fe4c9dfe116e6fced1ce37fe18ccce4601460d4", + "regex": "(?i)^https?\\:\\/\\/m\\.sms\\-91\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8cc911b72169ebd640d98e12741dfc196f2ca3fc5026a63b46f7dd45b890c9c7", + "regex": "(?i)^https?\\:\\/\\/instagramreelsbymeta\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "29e18268d942e391c961436a7cf78443171728a99801efdc430ed7c49c702283", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7b6c5cb8b7ba394e75390785430b27dbbaef979166aa4e2ff39254402c73c30f", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0fee1493d3aa44930612bbec24c65ced84da2e0213482c7d3267ed6bf470258b", + "regex": "(?i)^https?\\:\\/\\/instagrampostsby\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "51ca058425d6d4dee44712ad3ef9cfae6b0982b7beac0e02ba08f05ae2fd0b17", + "regex": "(?i)^https?\\:\\/\\/cvcvbvcbvcbvcb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0cb6298cfae8dcbc30ccc5f244a1ddd2c6733af0100071e233a3b782e4c0a280", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6def2e83c63dc3e47e2eaed31c2ef9333ea2ab07d49d088864d3d6e415d64f07", + "regex": "." + }, + { + "hash": "4a2d44023c470be990f1af390fcf51f0c72372785d81135174d0b124ca99d8fa", + "regex": "(?i)^https?\\:\\/\\/facebook\\-profile\\-00045528889\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8c4551ccb4e6e77e28ea6d596fd61be1ec266c0927de1c83491c2dfeb36e6f5e", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porns\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "15dc2e5928c6767f51616b9b235bdd898c357f7b48caa0fa1409a330ff837600", + "regex": "(?i)^https?\\:\\/\\/girljanda\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "092882a7efb8ce743eef7a83518491c3c7c2aeade61cd7b7d69faa1c5e7d7e07", + "regex": "(?i)^https?\\:\\/\\/observation\\.com\\%25E2\\%2588\\%2595seagwlge\\%25E2\\%2588\\%2595bwpxfmlr\\%25E2\\%2588\\%2595erdkbjhy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDlony\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "df2c3b4419453d7a22ebbf4218a0a71cccf272fc87832f972f4bef534d739d11", + "regex": "(?i)^https?\\:\\/\\/zzccaacxz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7c8989d0e87d4ba564a31aa664c3c51f31d69bd3fc4f3886e0a0d4802dbcb258", + "regex": "(?i)^https?\\:\\/\\/facebook\\-profile\\-00045528889\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0ad2945dc54d134d263d145ec416c108141ba2ef14e9584a0e726f76f9146798", + "regex": "." + }, + { + "hash": "373a5169f2eeb8e5f4f9b38310a98d484fd511f966b75912d43f8fb3146e6923", + "regex": "(?i)^https?\\:\\/\\/votarsong\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2bdcf52914160e984644e891813ebf4d5e32e8dace6aaceaa4182ea759ba3740", + "regex": "(?i)^https?\\:\\/\\/girljanda\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a184c1b606dc5526d6b3a1babd7019c3c7d8ca10384f4aa6b4a25158e47b9410", + "regex": "(?i)^https?\\:\\/\\/xxl18videos\\-xxxtube9\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "919699ed65b184db363f066f3a5f3fa3d15f5ed4d79c3525aca5ab4f4d20ea98", + "regex": "." + }, + { + "hash": "61a45d6e007e31b6d073f5b62e8baaa100db72bfe31ab8a5a70f2c8e6dd8bea2", + "regex": "(?i)^https?\\:\\/\\/gdfhgdfjighdfguiduighuidhdj\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01487e16b2aa0cdfe1250b381504f5c1a2ba70900179052586fc5d3df0adf77f", + "regex": "(?i)^https?\\:\\/\\/femmewebcam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1a106df83efc9bae790da70a73141842212d22e423a8d4f7a87ecec3592d786c", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porns\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eb551eb261e2d5beb883dcb3c7847275d77f50ba8ed14f587a7c545cbdea3cf3", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratoradems\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "faa51ed71b0b0e9a20bfa791fa71ca1ab3d32e5f8fe0221fae42270b5138b6ea", + "regex": "." + }, + { + "hash": "5b364d4f4f418a322250a1e946699ae2677b2454de0c35f855ff82c4a927e44b", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1ad6c0180ec845a5b29c2968066fb861a78f938eac0fd66f705102bd2215cac2", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porns\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dbbf00b7e77677200386c985e23ef072bd61f20ee890cb0d45307695dbdde036", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d1ab551b23b2dfd42d0a6b9e6a305c54222494feaba75c624988bf68ba8d7dd2", + "regex": "(?i)^https?\\:\\/\\/femmewebcam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c6653339c07113fdc6d7f06461fb34b68665da42281c850cd5ddd9cf2b87f390", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3091c5ad6de650777f7b4546c0f043f46e421e5107e38bfbc3d1a3e7a57ecb5c", + "regex": "(?i)^https?\\:\\/\\/facebook\\-profile\\-00045528889\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e6f0fd5c0f2714fe8364ee617e3742cb280634273a857346912cb74e5fdad162", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cmzQXJstKRXhZBJdrXcfvtNDPPpFCdDozOTc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4052ff4e0d6e6862cc6e7bf4ec6291c6862e8bba0dc3258972a3b83a2946685f", + "regex": "(?i)^https?\\:\\/\\/cvcvbvcbvcbvcb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "82de0ada7b35801c0da4a1463b6e386a5f582f18967627236b4b6e0836427616", + "regex": "(?i)^https?\\:\\/\\/girljanda\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "09155991f69b1710deaa3cf06d1e05990a7beb72c884dddc3da2bf627ffb9e29", + "regex": "(?i)^https?\\:\\/\\/xxl18videos\\-xxxtube9\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "095e52d2ebe9564faa34ae15617e617ba5c142112a0397be20ccfc21d9f6fb38", + "regex": "." + }, + { + "hash": "54b6aae4db7b9a90b5c4812e8718214422576de324aa69ae7712ef705c2b1ab9", + "regex": "(?i)^https?\\:\\/\\/xxl18videos\\-xxxtube9\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9d1691f17796f231d5a020c534997e9bb1f9dbda96df8041f33016ab8d8ce807", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porns\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "26a93afef3d6c134ea77ffce81f380816fa2ec7ab5a2a3b2b81948e1195b35cb", + "regex": "(?i)^https?\\:\\/\\/votarsong\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "00e7fd8aff211d0296bcdf187e0fb87c49756c638fe7b774faccb6314da49530", + "regex": "." + }, + { + "hash": "0a86f75d69ff74c1b2d2fb4496f3fbc4fcadb2e1fe77445f210be628f1e2d8b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "36a12d4f26e17eb671c5fd5e50a1495c7ac97132662846cc5339a573f38c24be", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0d63ddfe9b0b37b9a9bc38de06201d65a0241dfb6a136299fba190b93470f426", + "regex": "(?i)^https?\\:\\/\\/webcamexhib\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d0897e39ef077655b3a28107b187901cc42e0c0e0c1e69e1731c9606f9e2be1f", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bb9932f94fd8504637ae06ebba70c3eb296689851dfa753f28cf9b91f46af5c5", + "regex": "." + }, + { + "hash": "c5cd5eda0a99dc0e3ac9ebcc7324db6d967ca9035b075d9717aef2b58bbe32a2", + "regex": "(?i)^https?\\:\\/\\/webcamexhib\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d6e56dd7bce6cc9434d7e195e461496c56c6d6b2f8d71e8e74f085a63392dff9", + "regex": "." + }, + { + "hash": "05b8971fb5a8a93c446f12572c603231e7ee067abca7a1f41e22d05a0453d347", + "regex": "." + }, + { + "hash": "b63fa0a53b0f97735f27cbf4b8fa7f7c00cf519e71ba54050a8b9e808c8e4854", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratoradems\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "96f773a42a41f05dfb133b2253ac95903b528c13f50ce5a7b6035a2f4f4ce521", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ca6ea7fa2556ca1fb54039ea3742602ae4c716b01fa7e76e7f20c493554c81bb", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratoradems\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1e356ff427d9f6919cfe04c19fbb3ccde6bfa665f57201faa68a3ead6af9fb4b", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "14d967435269b87fad7102d4e32fbbd4ab2a49fd65df88ff9a56af7e2bc0516e", + "regex": "(?i)^https?\\:\\/\\/webcamexhib\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e3fbc405a159eba76fec4a79702dcd19492d4750d7940c1dd99337eab2d98e81", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "21854405e488a1abe76e8215a493d27cc46cca7854cead640d6fa46377772fb9", + "regex": "." + }, + { + "hash": "6a83a4692c01adf1a9a7b71ac8a130651629df67875273cec9f6406fd4611770", + "regex": "(?i)^https?\\:\\/\\/liveshowxxxgratuit\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "06de5b9540975d1d3b24b3289d013ee4fa5ed2693e00e3423fe8c6b1749feaa3", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b1c50d2562b396f80d99d2e059f62f324ea8a110cc2e06c261178e6be904e2b4", + "regex": "(?i)^https?\\:\\/\\/instagramreelsbymeta\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5b63b830ee76e9f64d81b15382aefc8f933a14c1ddb65f4df8fedab0d8d77242", + "regex": "(?i)^https?\\:\\/\\/girljanda\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c2580f7f2c484bbb84f11b89ea08405bc85af581f73ead974f507a38dc434", + "regex": "." + }, + { + "hash": "bcd12cf0c9126d359c3694b73f07f4252cdd260853c9292d70b051149c31a0f8", + "regex": "(?i)^https?\\:\\/\\/liveshowxxxgratuit\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f8e4ee29b5ed6925b57dc7c5b52e1bb2c07f22e6be3cb7ec8249a8db2d1b86f6", + "regex": "(?i)^https?\\:\\/\\/instagrampostsby\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "87f5dd448aa658d4fcd2557bc8a6d1ad6c0eb1aa49b6fb2ddf0b95e5f3a476d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "f759a293213cfe61669f0ca24b40549f76755e823336b0eeabb68247b90d563a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "777a9bc76ebc6dda9fe7415f78f83a9c652b538921bc9773fbf8f31ad810fbb2", + "regex": "." + }, + { + "hash": "bfdf2abce9924727477ae5d218e19984f7ba0dc0cb94813ac4a46c3b66585701", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porns\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "07d7b445f5ba8d178f30b4c7fcfb3e0872f095336ccb673841a296a9ec030720", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "581c5906f80b031961d950845bb35ccecd5181c25b38d51800c41b1746444ce9", + "regex": "." + }, + { + "hash": "1c971648377dbee92f74292462eb60dc6dcd559cbf8b307be8e1c962df38f331", + "regex": "(?i)^https?\\:\\/\\/zzccaacxz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "63462e1937e733c158cba892b046d17ecc7d8cfb512c4344ae0f39dda64eb591", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4dd89f9449e18a7e28b3c30fb4df19f871a2f57305eae8ea1b8aaef5cfff3ed9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "3d11acb6d08effed146c1528b64c44b1481797eea597f9b902d6a905a874f35a", + "regex": "(?i)^https?\\:\\/\\/femmewebcam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e5d5fd621d897984de11d41e0091c20ae5262cd30a6ccf6bc6e9e1b55d161e0c", + "regex": "(?i)^https?\\:\\/\\/instagrampostsby\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "856e3894be721c5f54c58080b4b5d35d933b932bc857dc0285ff6f6d54994286", + "regex": "(?i)^https?\\:\\/\\/netlix\\-film\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4e4d868d7d26ad98b633128f5a58f0af15db39012e29cf01dfcee28b2951b850", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cmzQXJstKRXhZBJdrXcfvtNDPPpFCdDozOTc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2f8de854702e7ba221cf6030d222a1e018a5b0e84f8e4291e0033b713866f207", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.zqz[\\/\\\\]+\\.qxq[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "17cacdf76f15903977ebf8ce415583576497fa7adb5d383084625ebeb09a5ffa", + "regex": "." + }, + { + "hash": "de23a3fed360c39775d612c2ee5e3e659ac3e5b9cb94e6c60752c4e32785570e", + "regex": "." + }, + { + "hash": "cf4fefd58e9ede66214d89e751c495c4ad4fe702e6b8aae0f788eae6d85c0062", + "regex": "(?i)^https?\\:\\/\\/netlix\\-film\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6fd8964de01c032d171cddda1eb95e0d0859dde47da981382eaa40b3a8b82356", + "regex": "(?i)^https?\\:\\/\\/facebook\\-profile\\-00045528889\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7bfa5ad76ee240e5b991d763c164a8e2ea17bc888dc547034c1b0afea447b678", + "regex": "(?i)^https?\\:\\/\\/ssaas1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "640e588d1adc12bc3d3ce81043a5436eef4701b32dd3070293aed49cfed0c783", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratoradems\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "14c74956318de2bcf23751c82ead2c2252e473aae1ec97ec7ffddd401bd02c31", + "regex": "." + }, + { + "hash": "be388ac1e3715a730199598ace0fd7bec26700221f8d84d2af4c4a9b367d50d3", + "regex": "(?i)^https?\\:\\/\\/gdfhgdfjighdfguiduighuidhdj\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "761f19a3839d01a45534dbeec2e02338283fe4c537c799a492b1e7532f9cc008", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "54d4d5a699a578d3a165bc56dc356a6dba03e01a282e9647bb82d3efc875cd84", + "regex": "(?i)^https?\\:\\/\\/gdfhgdfjighdfguiduighuidhdj\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b31205630b96fa07b64a9ea93ffe19113739ec0c7fd78578174d7639244af3f", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratoradems\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b481a6dfe96c4eabfd76c6de8fa24e3fd42035016f816716fa443cc7f7c38db0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "a09349a25b7c38c31e4d380255ec6aef1182f151c4bd9939f59724c85e44e2bb", + "regex": "(?i)^https?\\:\\/\\/netlix\\-film\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f3b130007af936a9a7c695e446f1d322917cd1c283b5300d548495137afa2026", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8cd46ef9d632ecc69d1ac49f53cb613d9575616b506237ce796d98d4040f2c42", + "regex": "(?i)^https?\\:\\/\\/facebook\\-profile\\-00045528889\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1243f0d5c1caa5f034d4f92c0de146e7796fc90ee69e1d6e50eb416c5dae708e", + "regex": "(?i)^https?\\:\\/\\/votarsong\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8143d0086dcd728f02815f163303bccfc2c1a13db1b1b77ba738a38bc7a9f480", + "regex": "(?i)^https?\\:\\/\\/netlix\\-film\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6c4ef043609145851d88621397272ce40cc49488beffadd45880000bc0a45978", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e175810ba5b9d4d7d8f5a878708395cce1af7d28080f38cdab988e07fafa9f24", + "regex": "(?i)^https?\\:\\/\\/instagrampostsby\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e9027a657c94114784aed887b86ede681ab875699bb53684ff66d8ab463f427c", + "regex": "(?i)^https?\\:\\/\\/girljanda\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d4bba38af46d3e55a1af986c276172ff50d295f05685dd500484ff9a303f37aa", + "regex": "(?i)^https?\\:\\/\\/renz\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "87f5dd448aa658d4fcd2557bc8a6d1ad6c0eb1aa49b6fb2ddf0b95e5f3a476d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?pWAqKhy5mdU$" + }, + { + "hash": "ff0500e3a22e54ae5f811476973d895cb6aaaae962dfcf9a4a982caf52f95e6b", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6c1c8f7c9ee4cd6e21305f00ea1d8c546a6a4d19c1f9e313912c21f605baac2a", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "31c3968633eb17623e0a008e369fc5d475c5e8600334a5d886947c9eb0c08176", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ce[\\/\\\\]+c[\\/\\\\]+66e31ad81db2dee43ea3e7c2[\\/\\\\]+67245c5618590321d39afc3d[\\/\\\\]+67245c7034cf4a97102b97ec\\?signature\\=d0025f932281fa6745e55877e80569c08b8e12920767490f54eb79ab1a48e14e$" + }, + { + "hash": "e7e90288586ad732479524160a4ff6096d00847a5932b47b859c62baf32c1173", + "regex": "(?i)^https?\\:\\/\\/webcamexhib\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "10b15b6a68ae530d292166f0e92a6e1b496d79ddd742801807f606d15f22ace7", + "regex": "(?i)^https?\\:\\/\\/cvcvbvcbvcbvcb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ffe225f0e7132238dc4675507ea85886aa327f85753eb199e50b3bce39bf0fa8", + "regex": "(?i)^https?\\:\\/\\/webcamexhib\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "288a15983abcdb8f4ffd44ab397758784c47036be35f47523e54d6400be75d12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "315c00157c304c0b6290ce9ffd19fe681f930a5ddf99017905ca2e486b58088c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?Goyj31CA06w$" + }, + { + "hash": "d6e735ba5c9fa8ec13d549eba36d00e8ab8cb18e4bf49a1e794553de01c9896e", + "regex": "(?i)^https?\\:\\/\\/ssaas1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "243b8e607b4540d65142cc3a94b77831d76af242c6e54f01e3c3786a4699a5b2", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bc7f1ebea20311a63fc676d28b4d2a363d447f07b8dd47f2f36d4381484d3890", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cd90649a77cef963eef07914a01eefe9c1df2b29007b50a933bdce745d2376c2", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fbc1d0ca704e41a18a1e4e824233619a17b1200635b6f8ceedda71b86797a603", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c8e449409a1ae8afeb92ad461f0df6ec5dd4d25627b8aa59d352a20570749aa5", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3ba0ba5f073034501c63c715f7881e438857e53b87c46102133c7d1f74111f48", + "regex": "(?i)^https?\\:\\/\\/girljanda\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "97debf414bd90353d9054f46a9cc1b84e0af9331208909a564b5ebcfc91f715d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.chdwrbbz\\.com\\%E2\\%88\\%95ducwcnkn\\%E2\\%88\\%95alxowzphg\\%E2\\%88\\%95cuson\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDjplz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a794550cdcb3b34b3902153c210a58098418c99b6a3927d629c6609bc5c10c24", + "regex": "(?i)^https?\\:\\/\\/facebook\\-profile\\-00045528889\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "449a2a3e5c913a623440d7532d82044e975c10c1721b91f14762e74b8e9fd5ef", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c668bbd4a10cf25de513d12048913d1e64aa4e080aa4dd27cfa325715f7202ba", + "regex": "." + }, + { + "hash": "37eab511140bea51d982efdf41dc53ea3de331f82c32ff588e316993c632e2f4", + "regex": "(?i)^https?\\:\\/\\/webcamexhib\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "613faacdb10d6000ad360ecf80ec054fee0d32987123788ac0a107ce46195318", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "29921eec0621720861ac91ef3bef547186619aff603637ff3c285939eb4c61bf", + "regex": "(?i)^https?\\:\\/\\/votarsong\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6406e8e6d948bd7677e2cb4f2cb66c02a10d7ebe54d0b94c5df809dc22c3239c", + "regex": "(?i)^https?\\:\\/\\/femmewebcam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "845d0a17f84be85e89585cd1a9911f69c2661ad335df4bffbcc09d2b51eaf089", + "regex": "(?i)^https?\\:\\/\\/freefirereddemcentr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ceb2111f74323075b5c38396876c4b8ce97aa245e21ba69897ffb1a94871f7b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "3f6bd15eecbcad9b240b90b745ebf39ba3090b99cc1d477dbe0946d788064a73", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8fee73d03ab95c87349b3ccbcdc32da99ee8204b644efcbbb752f724327ec239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "b23f3a7697a5cd8cc7f0c559313d28bf0d5c23bf3ffd6207f3df79c5bbe398b2", + "regex": "(?i)^https?\\:\\/\\/webcamexhib\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "315c00157c304c0b6290ce9ffd19fe681f930a5ddf99017905ca2e486b58088c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "d8b26f29a14d43b7f2189d10c4917623051d9eaf3fd711d4fcfdb14d76316def", + "regex": "(?i)^https?\\:\\/\\/zzccaacxz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "16426b20b4f4ddf3fa94583d0f007447ac3ec14daaba25d8f02e667d6c3033e0", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxnza\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "fbc98c915ca52757e6fcdb62ed1afeb768a9a5a626ec16c10e040b8c572a6192", + "regex": "(?i)^https?\\:\\/\\/sgenerale\\.cloudns\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a48bb72400c4bbe5a13058b704559d054d0e56875a2c672ec52a718b9a4dc010", + "regex": "." + }, + { + "hash": "f6d790dc01b7fafb5bd0ba6e37cf0ea5e8b9bc6a5fff15349999c3c8a33da30d", + "regex": "(?i)^https?\\:\\/\\/facebook\\-profile\\-00045528889\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4478756b664e52f16628acc65683475c678f131f833a63105e3a13c823e79358", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1c39514deedc5e24a7cc1c2b714bb3af010be831087e9d07e53cc5c28e5015f3", + "regex": "." + }, + { + "hash": "4d51517ad19b4327a200eb693728dfd5b9568cdfd190e815a8da94081b73431e", + "regex": "(?i)^https?\\:\\/\\/votarsong\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0c9c06f004248bc97c25741368412b9f388865006848c2bf2986b975746358bb", + "regex": "(?i)^https?\\:\\/\\/xxl18videos\\-xxxtube9\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.mpazmovob.com%E2%88%95fcdswss%E2%88%95jubjwcg%E2%88%95sfuveda@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "a046e6b85f1b587ade0331c16944e68ffde71dc0f42017ba3720ee80922de516", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "87aaf4eb818058eb839d6ade2d321f938c1e019da0990e42e4a9f5b2d975e244", + "regex": "." + }, + { + "hash": "6e38429ceffd49218694f60568cda80f82824798c951a4d096ddc5585f9f1bd8", + "regex": "(?i)^https?\\:\\/\\/xxl18videos\\-xxxtube9\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ac5f542a110dff4c716ccccf71ce586634d0f173a3700c057d3bedd4b5d055c3", + "regex": "(?i)^https?\\:\\/\\/femmewebcam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8a01859a01fc1aa0d74b93b3e1cbde0ad59f53a53be036e34c5f515c99f4f75f", + "regex": "." + }, + { + "hash": "27bb05b746bf847b6486f1e324daf88712035f70f44a73d57f9f83b2b8e125d1", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porns\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6ef968dd57f92b2ccb39aacfbf79ea7d4339aff52d825003ea6596c33482b404", + "regex": "(?i)^https?\\:\\/\\/cvcvbvcbvcbvcb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ebc5a2b3840f88fef2b1f016aa4a17732aaab8b8b83ffc012c80f305e6b8b70a", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7a37d8e1d7becef8984b05513c232c601ad719c24007cc563886ebe5c7979ac4", + "regex": "(?i)^https?\\:\\/\\/instagramreelsbymeta\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4301927f61325c69b53b9896d609a4675f55ffeedde7a463379e8e2335b8ad1e", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "733293a38cfa859b8bd865c5ec8038f06d4c08af950b8f8d85deb0db0266a057", + "regex": "." + }, + { + "hash": "1e69e92bba553e211033de1b2f734ee6637dbf57daca62702e677be200ba10ca", + "regex": "(?i)^https?\\:\\/\\/femmewebcam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ac8b672e5850f48ffc65618fab88de5f12d831f0473be9cc1e7f246ab7f717e0", + "regex": "(?i)^https?\\:\\/\\/gdfhgdfjighdfguiduighuidhdj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75f8d237cbbe658474abdf15db7c653ce432f0782dca1831a760b1bb2af7f9a", + "regex": "(?i)^https?\\:\\/\\/facebook\\-profile\\-00045528889\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "981352219b6bc78cecabee2b9d7969fd4e7757e086cec00eecbfdcde00cec486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sorgula[\\/\\\\]*\\?i\\=2$" + }, + { + "hash": "674a049fcb5bcaceffbbb6ffc4dbe4f4ed027906b9fd7de29c6e0e830367bae3", + "regex": "(?i)^https?\\:\\/\\/zzccaacxz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6cf22064db714ae2f76df9ae53d13c049feb347cc248a30b36b57f2e3db7dc7c", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porns\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cdf2bdff34694afe8fe6d53c2a7c73d224336779f02e5cd3f1cd88a4cec70c22", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxnza\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "825b02aa5c2ef55443e6421ddd8585e864acf54d09e81be0df978a0a8a46897c", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxnza\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "180d24ed9e773f91bfc5e3aeebbe27a91de5dab1cf2be2b690ffd39685d738e5", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2090f4ef2b7afc99281636ddec2af0bca55e636c99d341e122d09095979b6fdd", + "regex": "(?i)^https?\\:\\/\\/liveshowxxxgratuit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6a6b19b35600e31f4cdbbc2f1006723b792419649cbe73c4b998f4e80c4dc2af", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a9293a34c0d4a784e8561af1035b3e9b0c81cc05b744db7a567bae56925101da", + "regex": "(?i)^https?\\:\\/\\/liveshowxxxgratuit\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "10bdcba7ba01aeb269e2a92cfb74156c2c0467a4313345c9bac688d531ace84c", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f50c58f2c1461fc704a1668603b8bef8408cb1d321917b246d003d2f50e492ae", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e5f1f5ab07590033f0a0dd4b04bde0ecdaaa7e1f2b4f9413afe99677682428b5", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f15dd8d12ab39e65903efb54cb8b0ccadfae46359eecc2a45f4fc2fe0d8d3f1e", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratoradems\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "46546ff9b742b19b94ee848bff031feec827459dec74d827438e57e603813e96", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratoradems\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c54860d2853a81bcbfccb3d3e603e28dea816552bdd1f87b6582d2aaf76220b0", + "regex": "(?i)^https?\\:\\/\\/fcuq5i\\-dt\\.myshopify\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "711127d6f6546dd663c432f10b2d3510bc002ed3e237d9ead85eb21e18faab0e", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "95ed39b31ab4974e83f4a776ee539e9943937a41693d38aa85c4d140d70591e8", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8f4358ab86509be88b5c315c8171d8657d9130ec24391ca8cf18828f3f4be4b9", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratoradems\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fe35b6b419261a06c7a6f93700b65147e266f4c9fc0c04a17206a99a88f6f028", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CH[\\/\\\\]+chne(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7e81defc68f96f7008de7c7581d1b66d8bfcaebf04090b9425be238ca7ca7357", + "regex": "(?i)^https?\\:\\/\\/cvcvbvcbvcbvcb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "981352219b6bc78cecabee2b9d7969fd4e7757e086cec00eecbfdcde00cec486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sorgula[\\/\\\\]*\\?i\\=3$" + }, + { + "hash": "13eb2ee153e8bb3ce07e2ba7519e8a8f0b1c5908d65c66e95f9600f528248a29", + "regex": "(?i)^https?\\:\\/\\/votarsong\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4e4d868d7d26ad98b633128f5a58f0af15db39012e29cf01dfcee28b2951b850", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cmzQXJstKRXhZBJdrXcfvtNDPPpFCdDozOTc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aad219d99d20c089efa1a1b0e7ffb8df9476f73c7b822993fd6794aeae1fd6a2", + "regex": "(?i)^https?\\:\\/\\/votarsong\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0d3f8b250a6133ee5623007e246d7a77121719dd6db1cb3e16183f6d9cd76521", + "regex": "(?i)^https?\\:\\/\\/zzccaacxz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "973e2ed23f17aec80d9bcd80a754a017d3f92bba5e1f5553e719bcc8b811128e", + "regex": "(?i)^https?\\:\\/\\/netlix\\-film\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a888363a63355a08198be5078334a16d2e58fe5c05fdea9a048b8c567b36ba2e", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "efe8bac043084ac66d6c647e385e9f91bf20d6dd02ab8809ebcbc23606889796", + "regex": "(?i)^https?\\:\\/\\/freefirereddemcentr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "03e0fdcfc49eb87c45888c7c6a575c833b6af089cb4f7b36cc92706473666d0d", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "df495932848e7b37d9212cea97e509ef7c08f7e4d6af733bf3af0d3d1f2561a9", + "regex": "." + }, + { + "hash": "c78b4b91ac23a250a2c91053467d9a75e23a52bede401d051cb104be7e31ea35", + "regex": "(?i)^https?\\:\\/\\/instagramreelsbymeta\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c210ebb7a229406fbd25e442bc94e72d301b937dcb365c2e43f1c73ab4be1c59", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "017978c06072aa077fb0385f894d66c01156b77fad0a2ddac71824e81393ee10", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "549c52c248874487c122ebcfe3fed70da8fb8df9b6ba34ed7ee126df4904eb4b", + "regex": "(?i)^https?\\:\\/\\/ssaas1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "198593464041d51ba0745d478f2b06511c4b6dff821373974952e406b7dd6947", + "regex": "(?i)^https?\\:\\/\\/instagramreelsbymeta\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ceb2111f74323075b5c38396876c4b8ce97aa245e21ba69897ffb1a94871f7b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?0K4eNClo6TwspR$" + }, + { + "hash": "976037b515c17cdfcc6f43ea738655f90a03d71ec50a2af5fd06ccc9e99ef6e8", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c6db58a2c24bdc9fa9c1d0b5df0089e2906541f373474abdc2c931585589d9b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0fd2f62e7330f96ba7949cd1fc9d9abf5ad59be1c4f88eb42b1782005ba81238", + "regex": "(?i)^https?\\:\\/\\/femmewebcam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4dd89f9449e18a7e28b3c30fb4df19f871a2f57305eae8ea1b8aaef5cfff3ed9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?TS0Wb4xpdtXa$" + }, + { + "hash": "d203e2b9c9cfd86095e5123e2ccc9518806c39cb3332e18ddae6d1b1f70a3264", + "regex": "(?i)^https?\\:\\/\\/freefirereddemcentr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ac420b1038e8e60f0c77f45578da36d39fe612e5f5e008583a809298a644454a", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b14c063b58d678dbeaf06617393c897f891395d86075af623484d6104f3e6863", + "regex": "." + }, + { + "hash": "3b0608440a73e9074f0f67532623d92eb61b8bfc9c7ef17b661b32c64e32b4b7", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6ae4f0fdcfa078ccba926595bacf0911e48367b1b11885cecdc5e48141697c9a", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porns\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "92d41123bb2f6fe343d6d70956fd8e2bb3fb20278b8a67f99a2f82c5d358623e", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxnza\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3ec941091428bb7e8c9254b33b24a3044b9847dc78746bf69f96bf2f1f80edbe", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3a0e9f1bb244661f8ea25afae20534803a348eb035c07e91f4ac1f918f3e1e38", + "regex": "." + }, + { + "hash": "81efaa90f0138fb691673ebc9b2cd5c75a9b694451f0ae12139bbed9114cab99", + "regex": "(?i)^https?\\:\\/\\/instagrampostsby\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b7fb8a117268c2aeb9959fb7277d8e2b30da2ec0f61d085badbc3ecc7d749e12", + "regex": "(?i)^https?\\:\\/\\/votarsong\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c31697455ddb32ce876a806cf164e35664aca06860efd2133e19bcc15ced3cac", + "regex": "(?i)^https?\\:\\/\\/zzccaacxz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e8c5b4bcbe638c3a0f53a7ee0cc25cdd37157947a00320382cac37f32d88615f", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a27d2f05ba6f1f4fcf31170920b6d8e37f23e69ded9baa3811686e9e35896f69", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9642f0aa0ea13efa88ee8830a60ca6ab67530405b70d715ca0f7343ca55a2c13", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a99c9f4da53c942a84f34ddcbf811790e2650b5b1d446ffcf68fd215d615c44e", + "regex": "(?i)^https?\\:\\/\\/freefirereddemcentr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0a86a594324a2855433db20d1e62787dcbde7258b6d9ae3a2247a2480744e9e2", + "regex": "(?i)^https?\\:\\/\\/zzccaacxz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2f0e2971e73ec00b66cc6f6569928176575f491384700f7378e584c12776857c", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxnza\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c215819ca70f7b373d4b598feaadd679b4932ebefe23085188813a16a52601e6", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yhto4p(?:\\?|$)" + }, + { + "hash": "7f0d822481bf7997923e174e19474c1b2507e5c57a24da3b058cc909d72a240a", + "regex": "(?i)^https?\\:\\/\\/liveshowxxxgratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2c0b11a7e00f74a56d370695ec05ec9fe866ac345dbac685e3422038bb38d917", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "521b97f5e704315980aa8992ab0243e12b2b8cc2f0a17d85e2f4384edceb3c28", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6560926299a2b31d0ee53eaea5d73c0707fa4e8c2334f3e6477214e1b0bcc428", + "regex": "(?i)^https?\\:\\/\\/liveshowxxxgratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "962b47bc2aa4274f2286cc1fd24d9b4668c2f1ea9dbe498e70b33836de4670ce", + "regex": "(?i)^https?\\:\\/\\/instagramreelsbymeta\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "27a246738e12a805de70d75c78b86eb75c8ffc74e223434359c59c5d83276d4b", + "regex": "(?i)^https?\\:\\/\\/xxl18videos\\-xxxtube9\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7e884d7e6764e61127d47c5f9c17e82f63df108e45f085ad8a02bc21aa2f1806", + "regex": "(?i)^https?\\:\\/\\/cvcvbvcbvcbvcb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "03f226baf99e92179780e340f7bfe78fb9255aedc1d6e791f8972e99482fdc96", + "regex": "(?i)^https?\\:\\/\\/zzccaacxz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e5367bc64f4a68c3e31fc3ff5b87f1bd8bb68e1a0311f1d6dc22d2dd14401baf", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "302e3b7f375721cac51d3c1a91cf132290331cc450e00edd8dd9eb6916c34f2f", + "regex": "(?i)^https?\\:\\/\\/instagrampostsby\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e818f86f914895b873c350c2b0122242d33583c55e05459ba565d2d98fd33342", + "regex": "." + }, + { + "hash": "4046937380ab2279e4797499646a338ee601ce5c63779dc694c0f50614e8c9e9", + "regex": "(?i)^https?\\:\\/\\/gdfhgdfjighdfguiduighuidhdj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dc48535205bd29eb986ae2272e00d36c0f39c7147fd1facdb2bfa08458c43412", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxnza\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e5133d86a80ad58f409da19b6cec537353154a297339ab0f044b6c9bb7bb9dd4", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratorxmlk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "acff2b0ddc9fee209678780cd4ac279c3ff8f35b460ddd97a13b695c21b76867", + "regex": "." + }, + { + "hash": "fe35b6b419261a06c7a6f93700b65147e266f4c9fc0c04a17206a99a88f6f028", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CH[\\/\\\\]+chne[\\/\\\\]*\\?token$" + }, + { + "hash": "6a67da4337a70ba44e78001e1f717e26cbf75d711e51288d742117c1c882107e", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b29bcb94e1b54f243c9efbb1068b6d776e4744c85c46fde7fff2cebd8f8eac08", + "regex": "." + }, + { + "hash": "151278722986c4096ac64e02413b6c604a250df1058a7b9979a6487ce70354e7", + "regex": "(?i)^https?\\:\\/\\/facebook\\-profile\\-00045528889\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ee3eb86aaf0292bf9ff36f647b6c08cb4d04925456768cf73d48ead9fbc15c28", + "regex": "(?i)^https?\\:\\/\\/freefirereddemcentr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c5ae5512f84bb9c0acf4d4dc2c379a641b4a0f1a5a83d15860f6ab46c9b75c22", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "814a0b821c488b4927fc0ca211e0359930456916cde7256291b97bd570e2a556", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+zangbou\\-factoro(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fde64f13e79c828a8fbcd0598624532946515d00e85274e77ad1e30fe6aba225", + "regex": "(?i)^https?\\:\\/\\/moedasgratishabbo\\-gerador\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a513014684557e33ecd27a2f64ead4b73fbcd2bcdbee9f8689514bdf249735ca", + "regex": "(?i)^https?\\:\\/\\/freefirediamondgeneratoradems\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8e2da6ee9a31d36fdf3020167cfc480953c865c272bef144876ca3431c677a3e", + "regex": "(?i)^https?\\:\\/\\/votarsong\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "650d2a29a9310782235113275560e8105df5b75ea391c8dd2e73cc1a1dbb3bdc", + "regex": "(?i)^https?\\:\\/\\/instagramreelsbymeta\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d9a090ba27b1682b09e47c0eace34ec16af2a90882edb7cb66b0c053512d5c15", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cb87587f57463411665e74e7d83a5631a9867d8cfc0cdb1ebc5db079bdc3575e", + "regex": "." + }, + { + "hash": "fc754a5c06e4bdb6ff37e1b5927bf67efe2de682a9d451eacaea2d62d4bbf70a", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a1b51b372c3b18973d93d6df65d88cbfcb2effd3a74e70023bde10feab4e7528", + "regex": "." + }, + { + "hash": "38370144fc6995d21aa3beeff87bfc8d60874b24b268d0af9748660fb6cad48b", + "regex": "(?i)^https?\\:\\/\\/robuxcardscxnza\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3f10b29f9beecff8e779babcaef0c498458b4ad46b647af8d12dcee5b55f262b", + "regex": "(?i)^https?\\:\\/\\/girljanda\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c7ee2226f88c1a7fbdda188f3f18ee5c1b2b84d0499f0e997ea1517a8db040a4", + "regex": "(?i)^https?\\:\\/\\/girljanda\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "56efebe3036a70a133cf9232ec4764cab1bcc41b31ce32a8c9ec1c7e22deae38", + "regex": "." + }, + { + "hash": "c9c34fa81b7c061caa00d67f386dad243c7695afb8666db09de683d35785425e", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-tubes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3d0e0796a3c77b4cdc905d00feaefd4f50564780a4e361071eb281c314ef3f86", + "regex": "(?i)^https?\\:\\/\\/facebook\\-ludo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "93b8294817d97fbb41d5a1ccac0f237b6810ef251389fc5a265b9424ee50a84e", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a50a0af39ffcfc724bf9acdc36f5b8d5b6ca69da90fc71b9454296a3ff54520d", + "regex": "(?i)^https?\\:\\/\\/webcamfemmenue\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "449c000b7445fd6cfe57d9c605f2d52fc983d61b8d23f4f455ff1d3500128790", + "regex": "(?i)^https?\\:\\/\\/ab416\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "777137477be11ec4799abf43d3951a11979e836864fdca488816b6b4b55fc818", + "regex": "(?i)^https?\\:\\/\\/groupe\\-masnger001\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "616e0025505e573652132f7f7c8f5a9d396a83c4ca1c77682cd2715464a160b8", + "regex": "." + }, + { + "hash": "d0c6a73e414f1d49e05217cba243f218a85ca851180840e2f18d20beb77271c9", + "regex": "(?i)^https?\\:\\/\\/femmewebcam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1804c6a801d7a8b391798ae2e91e527723282c121040345e7dc811d17fad3163", + "regex": "(?i)^https?\\:\\/\\/femmewebcam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9914e1c2c6143da53e953670d245346b797d5e48a0dbedae201f84d6352fc5a0", + "regex": "." + }, + { + "hash": "a7e47d391e58a63265453981e077690398e57ee7d44111097687effa199324db", + "regex": "." + }, + { + "hash": "e0a5a50158cd4aeb3bbb1ac0c75e70396aaf22bf70472a7389cffcfda39c81ab", + "regex": "(?i)^https?\\:\\/\\/athis\\-mons\\-pouffiasse\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "164fa3e87175ce9ee95106ab7e9ede12e8d7ea5930998e980c7b69010341b285", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "70051b1016b804c797b9ccc7402d856264f3e4a6e4aa9c9ff13a79c34d1b0475", + "regex": "(?i)^https?\\:\\/\\/baise\\-metz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cc78d22703ab89bac2d450080b1005278c33aa40efec815406764cab6b9e6759", + "regex": "(?i)^https?\\:\\/\\/beauvais\\-conasse\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5ce4472bcae00ba4072d380014aa135a887d631d5163844b9bac723e5c8d3154", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4df591159aa492b17e74001344d504a24828a8f412eb6dab6829733d29b568a5", + "regex": "(?i)^https?\\:\\/\\/service332\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "58543a79c38d73ab8ba912c8d07896e1fa0a76f0717698f82ce1d22b544e9d0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "a2e55600573b92adbc9ba601bf3553d45271c957f9668decdf85574806abbbc6", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8ca27cebf120aeddbbcce186e305b79f7bcb005461166f158d4a43e1d98d4a7e", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2fb4727fcf1217473fc46f1dfebbc7ee412adb74219669f45238f7b9c4fed2fe", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "66b6ad6b7e5484ef0654a6fbf7f0bc38452a449b4d6b313a1e1aacaf0357f458", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-pute\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9501c393223e9e6a61c36df83c6c377cfde3e4206c06bddeec4dd295c79b8911", + "regex": "(?i)^https?\\:\\/\\/p0rnhud\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5aa5c46b5bfff4274cd7d65faf9e3d8dbd2c38a0ca0414cec3b23032f6107d1d", + "regex": "(?i)^https?\\:\\/\\/athis\\-mons\\-pouffiasse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "02a45979aefb29da6fe9b12b9bb4dd23e12e64524e6697a25c35b4becc2caabd", + "regex": "." + }, + { + "hash": "237d3350b8fd6523663fff66a60c0b4d5b2ea5ca827fd19ac1b5a467dcc3b707", + "regex": "(?i)^https?\\:\\/\\/baise\\-metz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ed510f326284856ad2118ec8331f0d964ed5f451dc4da6cb24e84088a627f231", + "regex": "(?i)^https?\\:\\/\\/cul\\-jolie\\-fille\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d4c508f023e9fd3944162f373138ab9dcf8603512cc55b88c46db1f37ed24147", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cf75cf73d701608eed0679ef509ce02361fa19ec9d2a547e691ef13b30121650", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-videos\\-xxx\\-tube9\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "13257ef0b371123d6d6d0851c2b4cb16e12e44658e99812f5b56d34c1288969d", + "regex": "(?i)^https?\\:\\/\\/charleville\\-mezieres\\-nympho\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "40557dd04e1fc558adffb4f76ba9ee54bd982e4f048887b3fb65e798ac5cb58b", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-gratuit\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6bae20aaeaa29d7eb0507f81bbbc27bf4bd884e30967673ed8c35a7713bd3cc4", + "regex": "(?i)^https?\\:\\/\\/xxl18tube9videos\\-xxx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a226dba6e693aec35833231abaf38b3f8a05c2f8e4890b00a2d8448301436720", + "regex": "(?i)^https?\\:\\/\\/seance\\-de\\-cul\\-gourmande\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8f69e0a126a8770581076a6e0568a619304ca9b7b978c066bb3a51cbca5c62e8", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "579a5a737491fd62a2dc247c7541db712d6531a6633e511bf9eb2d5d4170224f", + "regex": "(?i)^https?\\:\\/\\/xxl18tube9videos\\-xxx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c00342c49d26a3982063eae4f7ecfa4e0e649cd6f2e888e3c82d18aad5bae06f", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "04cbe2715f08bb0dd762d8aeb5c848ead65ba4410e7050833d2ce723f7cfd843", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-gratuit\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1bbdf415a77d04b4205d5a36873e27d3cf3d81a48fda8f397f776e6439a01156", + "regex": "(?i)^https?\\:\\/\\/beauvais\\-conasse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "450414323df9982b972b60e6418292f02514011c955112cf3bd5fed823b11bef", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9562cf9e79cbf6aa3e28688942333a2659815ab38d979e78e0bfe680378fb037", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "807d46f44990f6773a86e369186287d3588153fd5ac9bba5cfb986c514e017ce", + "regex": "(?i)^https?\\:\\/\\/bergerac\\-grognasse\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fd5be5027b607aa8d5b80aca32bb04d496192be4f103026546688cf31f18c5c8", + "regex": "." + }, + { + "hash": "ebc125b6ffa866f6d76a0c24a50d2771918fdd9910d46d10e9bba715a956e8bc", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-pute\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6437551714038877f2d3f52915ea2b52108c7cfe8b83893bf89357055cc72edf", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "90c5358c3fa8b95f89cd337fecbfaeef5bc12362e06767d33f7722eda498da22", + "regex": "." + }, + { + "hash": "31984db1c2907960a30e35534bba0716115f3c45f13ba10014bf02b1c4a7c594", + "regex": "(?i)^https?\\:\\/\\/cul\\-chaudasse\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ff80a50397cdf8b1fa73b48f09030ee98096e16bbe6808f9d44954ed091a18fe", + "regex": "(?i)^https?\\:\\/\\/athis\\-mons\\-pouffiasse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e69ae6866cbdc9a0a0fc69eb8ba22b53135ae789369796b46f17d799c66e385f", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0cbe2c35dd399ff221db3597402cfeefec44bbbc66786fb4b11b23220da9079c", + "regex": "(?i)^https?\\:\\/\\/baise\\-metz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "38da95fa93e2c52ec47f8b34eae87b068532de6d25ce063933ab792a4555c207", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ef88f78133a0fcd12d43bbe04378c21e3f984b7f8c755c4a47889b016dc88e07", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "81ef4c1579cff9cf3b7ac16ea4534cd0ff8464f8badd4d47ce93b305aae8b49d", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "60136261c5d08ce450f13caebb002c5a8bdaae2742f3a4ae4be92f97457c18d1", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-gratuit\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "be4b459be95f0d06d93eb1bf48e47650a1d182de5b5a980b37bd5226cf80828c", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6d37a60bc4f84a25607aa174674746f515acd40d5c35c44ce846003d38f7dcd8", + "regex": "(?i)^https?\\:\\/\\/service332\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6eba34b3ef377f634b4f5bb773beb6cdb75cb45797b89d4154e3ba35e3866c86", + "regex": "(?i)^https?\\:\\/\\/montreuil\\-pute\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d830c5edbeadf1e10a055e60368a034a4b1dacdbb157c43cad7a58f3531b39fe", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porno\\-gratuit\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "75340ea12e5fed271ef23a59c753c8d0b41366b8639de09e6916e827012dcdb2", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "717c77ed617651594011432673801e093987130879e872f2f11aa6d0c7dedda3", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-gratuit\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "654d566bbada7bf92a3287e48e5d1299d3a487ba28136b3175b2e2306ce05f15", + "regex": "(?i)^https?\\:\\/\\/baise\\-canon\\-demoiselle\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f56dc024086e0c1f9e78ed628a4059e00fcd4b05be4dd74b3e8041b5dc53d65f", + "regex": "(?i)^https?\\:\\/\\/issy\\-les\\-moulineaux\\-catain\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "74560fa6c6edfa34f3d8a7709d582355bd06acc38a1002ace619893dabeceab2", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bb3fdef38c9f6e79f72818280660a1a3ff8d2e1d44357ff3bfcedfd307feb03b", + "regex": "(?i)^https?\\:\\/\\/montreuil\\-pute\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0143607feb12f8d1a6b8f292dc0c3d8ee7c31681390ed61a9a84e29f58cc4683", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuite\\-x\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d02e67c31ff0f08703060ff6346fdc159c812bb0800466cb4dbb43320e7af0df", + "regex": "(?i)^https?\\:\\/\\/charleville\\-mezieres\\-nympho\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3d7d0e226904e3ef6163c08ec4bf578c832b2ab25fa929ee987f2c7f140604bb", + "regex": "(?i)^https?\\:\\/\\/bergerac\\-grognasse\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "44bd9268101b4725068565290aaac6411a1c9b701c4f03cbd6fd424c48347d42", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eea51c9fa7ec189c52f98a47e14d66e6e32f444dee40428a7445a6d63f1c4f78", + "regex": "(?i)^https?\\:\\/\\/seance\\-de\\-cul\\-gourmande\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ca6e889b0d46312323182c8f69df68226883bd8faedcac870815affefb378371", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f6d5bc4ef0c06a91a6708383bb699a76b9e99c8e042b5abd8f05a6ce480da092", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "28e70c450670b4eafd3eaaba938967aa66ff0dff3591274603125f46d5ee3ec9", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a8335139733ec2d1d345597f6b51872b4ffd8d8902ec34c40064bd1971d5944e", + "regex": "(?i)^https?\\:\\/\\/pierrefitte\\-sur\\-seine\\-chienne\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3b7cc8cdac458343a15b586d731c4b564867f445fe58f486ccdc43090bb6df79", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dde0b7370e2c2e561c5452c0858d0f4d71986c0e8c1f0572e1f0bbdc93220c37", + "regex": "(?i)^https?\\:\\/\\/cul\\-chaudasse\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5dc306d051b7e38b3cea1c4aaed665f3a861990f5379afd4ff9e4283e37dcfe1", + "regex": "(?i)^https?\\:\\/\\/service332\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e755691272f5aae6fe23e9638d4952307363251a1c2ab5e67ad752f9991b5727", + "regex": "(?i)^https?\\:\\/\\/issy\\-les\\-moulineaux\\-catain\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "35143453e6b170c0eff8893974ea85675e1c3c215badc74d95288d63d00d5bb1", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a404357034dc11d00b8c4a0a972d3aa7d20ff0a5749f0c54828e16f327b55c57", + "regex": "(?i)^https?\\:\\/\\/att\\-107283\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "52167174b0d53669f38a199ff595698642eecd168bbaf2a9e0b2e74a6f35240e", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-videos\\-xxx\\-tube9\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c8f7082ae81b3867b7b52343974832041612db129a4170a5937b98d0d07cad01", + "regex": "(?i)^https?\\:\\/\\/charleville\\-mezieres\\-nympho\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1355a6fd27e011c8decf59ddf6bb4775a1f900f04d4fe05e6c9b2b26d76921de", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f1ad74e3a7cb8aef4b1d2751f119809d608d46618b37bdfb1ffb273e39e8285e", + "regex": "(?i)^https?\\:\\/\\/soissons\\-chienne\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a6cb9a87ba84eed4d4250307a71d0e09c20fbc5283e41d7969f16731439d8a3d", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8f75cd3d24c24d518527adbe6746b9d06966d57108519d6def427f330d702850", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porno\\-gratuit\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b7f4ba58df9359bac4bb6fb164e9299e29da7d8db925478c5b9ea8f40e73cde3", + "regex": "." + }, + { + "hash": "171b4240e5672c940224dfc501c821b079e4ed067b66a276bcc1898af22e82b7", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "003da201e56adbe2084b0e7d09b9ff7f99351c926554745a6540490269be155d", + "regex": "(?i)^https?\\:\\/\\/free\\-10030\\-robux\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e0c859bd9751133f10aa95564841b6f5415b5d62e703210072dcf4084db5a2a1", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7d61b0771a6078064bc01fe816f0a89c4caf61f1a5e393167e754370df213021", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e5c23500ec70f133b15d522ef503917d72a2fe0fcb8c59f17469be0720b12df0", + "regex": "." + }, + { + "hash": "976bb633f52eac730baa346949a7e4e3a15797a0363892c0f3f36f4f1661a202", + "regex": "(?i)^https?\\:\\/\\/p0rnhud\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5c90da4c123637ec05fb0e00b554109bd439fff56403fd4cdba56d489c30be2f", + "regex": "." + }, + { + "hash": "0d7a44dd5640e90b6e662515934d549173ac8031b597837615235377bed338ef", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3e064d23dd180b9536d4a2849b44243d7dd9a23f37d8fb0ec89f3d4b32c810d1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d2cacc865914ebd32362112293f9967cd4c6ed369ed906c7ca0ddf2efb13feea", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-gratuit\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bc95c8a7aad5f5accaa7f0746dcc9b65ce2aae75faeba918b621c9d34bdeba37", + "regex": "(?i)^https?\\:\\/\\/tourcoing\\-garce\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9c7eb193b36ba44568633a86a7bd3f0f12eaea8e85f87b490607c9ebbe3551de", + "regex": "(?i)^https?\\:\\/\\/pute\\-pontoise\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d832db8c7826cadfce1a76825da28b0e2bf082302dd21e6724d6330c594cf135", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c200649c391e2083e622c88a8e77f4fc84a11be2166ffab646e2d98250c8a1c0", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ad04db0373bfbb37f85c173ac65bbf9381d935f8a966396be02e65308c51073a", + "regex": "." + }, + { + "hash": "bc4110b67e9aac65b931cccfb0b9eb109db6a17a3dd40fb2a7bf570404fa62d0", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "eab2f74b5ab457b4da03aafabbc8b8602189ee7ff92cb0dd570c90e899c166f1", + "regex": "(?i)^https?\\:\\/\\/hbibnadyalczakho\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a1b58b33f1bcd8f7c8eb647dd8be88749752d5f0c642b9d8b67ae52057951992", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-gratuit\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0091911448f2a049510deaec8f5f8c394d0d59b6194a6e31b3eb2c38ff8da68a", + "regex": "(?i)^https?\\:\\/\\/service332\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "58543a79c38d73ab8ba912c8d07896e1fa0a76f0717698f82ce1d22b544e9d0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8663[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a470a80cec88659de001fdd81905b2a5ba3ed3b5f7bba0d8b0438d513397b9f", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-pute\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b11bd075b313b7bf8c4bfb44be270ef52409c56a9ba62a22279ce6ba8534a982", + "regex": "(?i)^https?\\:\\/\\/baise\\-metz\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4662b6d278811dfdc1609a84030196cba5dc7128bd1449a731bbad6906735daa", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b0a39ddf990928d9a4fa6c7684673fc53823925a8236a9e2c3b7e5bdf051666b", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "64f1e05d65c40ecbf859e28f8ce2ac034674c9651da5087bfb362a50a7c7f260", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b782cfcb67a76831d294b585aff4c65569587ff63f7f9ef066506733a66326c5", + "regex": "(?i)^https?\\:\\/\\/tourcoing\\-garce\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "aee0a58363abbeec462672f2b377644c7b1b415b0c4d58f370ebcdad7c6a180b", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "39024e2e3cbe95546375f92d2c8929eb6d9dc45218cf234cb19ba6bc9fd4d869", + "regex": "(?i)^https?\\:\\/\\/pierrefitte\\-sur\\-seine\\-chienne\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9ac67886171b8ab8554c46934e0cd750de319131e62323d10a6cc87fb33fea35", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b87e49929c921119ce54d69fcef5871c33417c1ddc9a4a4d77d6b4714d8a835d", + "regex": "(?i)^https?\\:\\/\\/athis\\-mons\\-pouffiasse\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8728b85ec7f7d8e882e894a6fa6f809715c08163d50e79b275995df27929c0f6", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4b8e09452b8dacf8aadea3d8ec088d99feaddb9062066927227710cf62166395", + "regex": "(?i)^https?\\:\\/\\/videos\\-xxxxxl18tube9\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "be26554d5956a463fc39efa3c58e27f6bc57212fbb5beae4de60f24ec2b90fe0", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "55d8663a747a6b038069f1eec9e58d866db65d44309bbe7f6690db536402a398", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ba4d3814bc04ecc15e89218497bf0e73f7cad2df330488f2786bf76c1f23adc7", + "regex": "(?i)^https?\\:\\/\\/login\\-screen\\-100144\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "36b48ee2387fbd0ebf9e7185a5ef97900f9fecd01c4a64376a672dbc656e3ea3", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e012111b5f3be377fc4569ef1147166ce5a3347cbe3ae40da4133cbbdf12928a", + "regex": "(?i)^https?\\:\\/\\/tourcoing\\-garce\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "502712e3c11b1b7631caf97567eac9104a57b6c1e164d60c808b7bccf772e4e6", + "regex": "." + }, + { + "hash": "9d40d377a9a695a61eab0e85241718cd4b6f035a01824172a6fc342df7e1a903", + "regex": "(?i)^https?\\:\\/\\/charleville\\-mezieres\\-nympho\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5bd280ee73f6cc5a15f9e0e14fee84c79935da860b639fc8cb653f02d7b8c8ad", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6394b964c0e8dd7f501157d3d2c46b10b105ac3fbe4694ebb682e52c5014823e", + "regex": "(?i)^https?\\:\\/\\/newshiviphotoshoot\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "16e83ad803cac5f7d74bb9d11001f4b58c32ff866c94ed3cd96bb38f5019a829", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c86c911d2b9c1124e087f19cfa97330db6b18bf4b2ade5ddea2b1dbdb505cb6c", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "dfc7e333334d3b4e5dc8585af3d609579d7fcf97027a5110960d1776216d78e6", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0c94ab91b633034b9daf804c2c60fae2ed64d39bd965476f48aac47b946e6e27", + "regex": "." + }, + { + "hash": "6d58fcd6373a9bb78c61c3465a842d14a0e981b37904d2ad175121a955c022f1", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4cad55888d34132028d5d6787d7d3cd391abc147f9e906cccfe32b5b5828d8e5", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1541d2a69a2b7caaa8f32a4a80e4be94cadc91a368ca5bdb1b68db80b9d3fc3a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porno\\-en\\-live\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "74788c007600d73e86bf091d720059162fb61a44b780381d57cdc7887b7aa2b3", + "regex": "(?i)^https?\\:\\/\\/baise\\-canon\\-demoiselle\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0e42e719813e9114d48b5d3b8131d223936fe31cc406f93c7f21715b7eca79d9", + "regex": "(?i)^https?\\:\\/\\/epernay\\-pouffiasse\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "edb255f23457961dbb586dd9d8aefd2dbf94e487cb6dac9eb019f7741347e347", + "regex": "(?i)^https?\\:\\/\\/tourcoing\\-garce\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f3c648ec1b94f8145662671a6bcbdcc7e269e93f55497bf10d90c118972214a7", + "regex": "(?i)^https?\\:\\/\\/soissons\\-chienne\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4c99bed24cbb9d4fc6cbc5d2158e7964b6e13918270359ef71420f39c6eab247", + "regex": "(?i)^https?\\:\\/\\/soissons\\-chienne\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c14de5aa8bdc25de37a928f5afbf9d25db4a47b3198fd649c853efa9bcea2bf6", + "regex": "(?i)^https?\\:\\/\\/baise\\-reims\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1e69ada93c26f1884ab3d00f70fc3066285b151cb174434d09a7f6dafd1a993f", + "regex": "(?i)^https?\\:\\/\\/videos\\-xxxxxl18tube9\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8e35868d3e07817c7533944214d21a9d5d2dc890097645ea94ec55011b46a5ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mysite(?:\\?|$)" + }, + { + "hash": "8848e9f36769bac57505e2cd0c8401eef2d7c803e60ea12281cdb16741b7c789", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7b3882936708ca8ff06014eeaa2333b8b56bfb0d1d15bd25ab2f9214dc6a6188", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "164fa3e87175ce9ee95106ab7e9ede12e8d7ea5930998e980c7b69010341b285", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?AWiOWhB4j5tc8$" + }, + { + "hash": "a0338cbd341d31850736b4115c86b366df079dd621e5e668b9c210651f23a1b9", + "regex": "(?i)^https?\\:\\/\\/p0rnhud\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "47336f7ac24497e9c9b3a2b1abe67e1869ef0ab0df8e5530a36772daf8127d65", + "regex": "." + }, + { + "hash": "eb49e7a0f4f817f34cc2628957d55fe2c09d642186953acd73eb4b9cc21a6366", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-videos\\-xxx\\-tube9\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f69c5f8e054527c74152d642876669e3b84e45bf916887b6c2714d7441da2b0d", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "644d5df7b37736b0bcc55c12d2487a67320259540e5afeb8b02fcda87c9661eb", + "regex": "(?i)^https?\\:\\/\\/hbibnadyalczakho\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e524d61675d5fe8bc78f7ab292d8854b1fa8525200736ccc8ca5be6ed78795d3", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "483c8c7b9afe47cff7f9c6553d80dfd3bc9f33687fe7e84543d8426f865fa08c", + "regex": "." + }, + { + "hash": "f9d96180454850e134f34724a68f106f7e91a71f696a7ca2cf7511c223ee3644", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "20a015694294c653a5733691b547c58a88cff612ecad54212b34089f20b0b6d7", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8b074867c6ea0f862cefab4082e8cb0a48e08155d2d114ae880278cf189a3eae", + "regex": "(?i)^https?\\:\\/\\/p0rnhud\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f89d5c17233dda43260f9dfba0bf8acca1bf5c434d066c21536924566ef823b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index03\\.php\\?\\=ttrb\\&flower1730550807022\\@me\\.com$" + }, + { + "hash": "fb3cd524a90fff224a3eca2dd2488306e6bf4595ef11e27183abb0369f09e71a", + "regex": "." + }, + { + "hash": "9365c17d89cc193f5907009a10eae562a3e41dee1fe4e628f99915bfd5096925", + "regex": "(?i)^https?\\:\\/\\/baise\\-canon\\-demoiselle\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d419f908f5089aa8e87e024db7374bf523a25d41b1cb64ecba6a9b90bf4d3cd9", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d3327939596556e48943608403f57dd8f83ff376cf934a538260d5929b096dd5", + "regex": "." + }, + { + "hash": "58aee9df7acfa9a1752bb7fbd40657c70000fc851c0a0b95aa5861573797612b", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8aca9c8878d7eb7dd21a8bf2d8714428af68764051d5a195c171e89e840ade97", + "regex": "(?i)^https?\\:\\/\\/mandoo7777\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b8aec8136d8fe02db32a234a34ba979cb22f606058900b0412a9788cd0a790cb", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "aa583704bae9404451f31cf003ae8ae089dccce1a61ca20b1e980b44b5a7b54a", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "69e40d5192f3e2c1b85633a3bfba92b1f90cd187bc498e6a935427c7f0929205", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b974fc2321f3c2d03e56ada78690e6974f8184693b40ab48c4e260215831f6fd", + "regex": "(?i)^https?\\:\\/\\/free\\-10030\\-robux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "23e0a272f1aa7051101aec51d7c1f2d2fae7c89f6f75d8c5ae31abb8765f2fab", + "regex": "(?i)^https?\\:\\/\\/epernay\\-pouffiasse\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9425c30605240a40a07de8594ddd386528a85e810e232e43755cdf211b946ad1", + "regex": "(?i)^https?\\:\\/\\/bergerac\\-grognasse\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "26099998c124eea0751c6207b3c05b73de0d1edef076e3ec155b8f1bcb9fccd4", + "regex": "." + }, + { + "hash": "90cbe0cb6ce91375cd3e5cacf6c50bd0da622ae75afae7f9f9c8ebac5bbeb6bc", + "regex": "." + }, + { + "hash": "466705e6650c8e7cdc6ae7d6c286b3ddd4b8798287a747d1b0eed208c8d051be", + "regex": "(?i)^https?\\:\\/\\/cul\\-chaudasse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "20f1f4844353798a1843312a4c0ec5e970dad199ef1fbf2d3e4b1e04683ffa64", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuite\\-x\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2cc68f58d676685b4cc3671dfb89b27aa3bdee9d1d966ebd51c8144eb850f20a", + "regex": "(?i)^https?\\:\\/\\/baise\\-reims\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "028461623372037209e9150fb956076a1f2f55f86c377780097dd9ff007f4f42", + "regex": "(?i)^https?\\:\\/\\/baise\\-canon\\-demoiselle\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0ea1e10583712a8015a05e2ec48c901e6b7ae5925f9d93bed5889e94ff781220", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6f49a201422d3461d8aa076995ed7b649f19640b6a007304954629694a9475c0", + "regex": "(?i)^https?\\:\\/\\/p0rnhud\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "92875197207c86c5ee53f2e1e0c9cbd65c9463ce5a0de1e3db793ddfccd82543", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "73c40b1751204401509d3a593f12b0dbd695e72b670f8aebcff194b2f7bcce18", + "regex": "(?i)^https?\\:\\/\\/issy\\-les\\-moulineaux\\-catain\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dad547e6f288a8ab5e26db8f5b4056da7b8c48c3997da5d86dfd8da520f11642", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b875844b700a9586695e4d9dc2b19dc63fb9ca13c8a811e9d8ba554d4a8aa33f", + "regex": "(?i)^https?\\:\\/\\/pierrefitte\\-sur\\-seine\\-chienne\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "775b5e47c3696d76cf39f8da72e2cbbeaec5528d2494caabf83716b292e62c6a", + "regex": "(?i)^https?\\:\\/\\/athis\\-mons\\-pouffiasse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ac9714c293bcc80edc4e5d1e2b976dca619f795361844bd9b3f5025b5fa6919d", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "efad0459532b825edc465cdbb98101b26f6acd8e89ab877a7b6a68a098f9fc12", + "regex": "(?i)^https?\\:\\/\\/service332\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2dd1bbf816341117930ccfaee946548bfbde372f11b5c0fb08ead2b652710b6a", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5d9cd94d8b1538b52a9ccea230946cad05bac89147900cb1855e32a751d89b25", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-gratuit\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7be770042da225c6f2cd8d282b0d50cd9b86c6237199fe9a77ac4f6d7833c168", + "regex": "(?i)^https?\\:\\/\\/cul\\-chaudasse\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "276b4797569de29893c70239a7a1bed8c8a80e7c3f4c68e72df79eb631f39ed6", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "57933dafc140b28752ff38717f02ece4480da8cd3e471441bfc59ea9597d0667", + "regex": "(?i)^https?\\:\\/\\/charleville\\-mezieres\\-nympho\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "00a9d890f5703321dee4703f137cab0eba5093e5754811e0574b247384fe1eee", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8723145b66ed056ff78fa21f1684bf94d2b3ca30f30ec5135a80f946a371f755", + "regex": "." + }, + { + "hash": "03f213680ce12b3ccef5371de63023e4ec7ea98b3e38821d4affa946ef989d7e", + "regex": "(?i)^https?\\:\\/\\/epernay\\-pouffiasse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f7936dbda76883ad8524139986c96c37ace49aa6b654b0c6bf928adef1668581", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c3b254e7683cd23186106ef4a275a77300bc6092ad8d151dd88b12684fbdd016", + "regex": "(?i)^https?\\:\\/\\/soissons\\-chienne\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6e5e7de316fa7bef58ee619531a15a318236b25fb5f22377056abd8698f73a83", + "regex": "." + }, + { + "hash": "8c199c46d9cc9dda2ca08c1ae893e9522f0f29ad4cb8fa1cd73052c9f172bd18", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuite\\-x\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "69e694d491d8a65a672f1aa8f45c8a00cf1e0f271a4e40c7ff447023d2ea460a", + "regex": "(?i)^https?\\:\\/\\/montreuil\\-pute\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a7e30c47ca449d837d57f813df3da3ef897797d8d146bce28b1ef95cdbafa943", + "regex": "." + }, + { + "hash": "0365021e0161cb78e91b819c2e71d8805b70d93a6d7dabb37145b3ac4017efdc", + "regex": "." + }, + { + "hash": "27892318fe7f771c539ef282c9546d91e00095b6ddb9246d7949ec081b1f094c", + "regex": "." + }, + { + "hash": "aa0ec9f5e9097c28d23dac642c93e4299dc9cc1ec583f442b8c6b221870ec1d4", + "regex": "(?i)^https?\\:\\/\\/baise\\-canon\\-demoiselle\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8cd568d1d471e35a3d5573f56f10d2841d96a58388b3be71d17137728aee3e40", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuite\\-x\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cc671c7d9127a7650ecbf537a3b60acc7de9a398782f33c5d4e07c95b6c4855c", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9a61b23a2a9af906bda74dea7c0fbd9a6463993a9a31e2a0442367382baaf6ca", + "regex": "." + }, + { + "hash": "d4bb63387dda1f99e49535a78f7de83276be2368623bb76ce3508ceaa4f97742", + "regex": "(?i)^https?\\:\\/\\/salope\\-chambery\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "20b1d01347bfa1a9a04e885a3af46dfd4ebb401e23d386250fff63cdf985a418", + "regex": "(?i)^https?\\:\\/\\/montreuil\\-pute\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0c961c6f44aab41b3d5114a06a9f6814e8ed26b58c505c7a3fc3761527670e27", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porno\\-en\\-live\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b232be56813b6f83df43961ac16e990065c35178f592d884087b7da19b837ba1", + "regex": "(?i)^https?\\:\\/\\/bergerac\\-grognasse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a083de81caea9dbd2e4d139a38df5753cfb41f8b54a94cfaf6a6e1f6ccd95fe6", + "regex": "(?i)^https?\\:\\/\\/baise\\-canon\\-demoiselle\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "186d9e290e0afbc17c17b7d4cd33fd133f7cfcfd0e79a6a073a2847ca114f61a", + "regex": "(?i)^https?\\:\\/\\/cul\\-jolie\\-fille\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "868e26020e81143f7045996fbfda9eab09b7ce85d7db2a721d75c3e4b26f0717", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "247255408f26b07d6f8365d8ef09d85eaec6853fe4afd47033d4384ad68e2026", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8ec0d9685ac0c219c106fcabbb5c5c2a144aa0c3656216e4f97fc9325a7305ae", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1fa410c00909414a2ebd346cdd1a68c0eb08ae63c7162b476e55c04e971a8237", + "regex": "(?i)^https?\\:\\/\\/pute\\-pontoise\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2ca2b4fc3d39ce4458fb053f00eefdd296d3b0f2652fd87569f47694a94633b4", + "regex": "(?i)^https?\\:\\/\\/baise\\-canon\\-demoiselle\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a4f649a7da211f4caf430095f37fcdb0cee164344d62622a32caa404f5e57f13", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-gratuit\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0dd0e82ff96fc5616be4bfd12c5cf8437aef7f48078e8c97ba13c26adfb0cd0c", + "regex": "(?i)^https?\\:\\/\\/salope\\-chambery\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4a2509b4711ff9e7861478765cb61050f783567a8d1e1533db7418e273ce6ac5", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-pute\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "11f5f7c65da4065b0924303034f7de1c8dfcc7d915e74656e790ce7760fb0cab", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0280ba9bbee45d3130e4cc7bc1248727ab505f15a136c29531a812b143651687", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e227cc27960b06241bca32376e05a2aa6d206d9adea7efe61d97b1b5432bcd18", + "regex": "." + }, + { + "hash": "88e7fe3e884adc9687dbc2ce1778787047caf71468233c36de2cee088cc313c6", + "regex": "(?i)^https?\\:\\/\\/xxl18tube9videos\\-xxx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ac83438717bec834298106a3623a318e4bf3e1b394bd8510525c77af8b42cc11", + "regex": "(?i)^https?\\:\\/\\/pierrefitte\\-sur\\-seine\\-chienne\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "01e40e33359add181909890253a313704390877a25708026abd181dbfcca9610", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "83281ced60781ce7318dfb61abdcdf4ddb5c174148b7af6e7514a4a26b34e5fd", + "regex": "." + }, + { + "hash": "e5beae22c6bd96e827efbfb2770b1ccdfa19c56ec0c926d2b008e6dfb7f10f46", + "regex": "(?i)^https?\\:\\/\\/tourcoing\\-garce\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "383049f0b6a04643c16c3566e9a72af0786da0e619d54ebb2e5082f1064b0a42", + "regex": "(?i)^https?\\:\\/\\/issy\\-les\\-moulineaux\\-catain\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a54ed9c98f7903c2f7031b642a6856bde23877c4448861de123dac947656603c", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "55f160137790f30884538f54fe2ff56ea599fea7b9c3719a9c8573ed1790fcb6", + "regex": "(?i)^https?\\:\\/\\/free\\-10030\\-robux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e66c07e84a0cb2b4ea2bf73cae8b7ef490f6bb066b4ec30089129c74c505129c", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-gratuit\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6ff3c031adefc869acda6578d543def18eaa45d759ab474181ed6ef6f5b6eafd", + "regex": "(?i)^https?\\:\\/\\/cergy\\-garce\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "779b0ffde78f983fa362085635212714513a1d181e17e14a221fc67b741fe1f1", + "regex": "(?i)^https?\\:\\/\\/beauvais\\-conasse\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "656c52c439ecf4b01002bc35055f7b8e4c9eef31c5bcfcbb6686b1765ee4480b", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4ba03ca6692c6462d4d3a9ac45d50ce9216b025cc82482f867601f1f82f1cc9e", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-gratuit\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dff47197f7c03b0f9106ef236fd4347223f6463f30870f45114f70503df21e4f", + "regex": "." + }, + { + "hash": "812b3c18befc52272ad5ebaee9473e294dec7e3e7dd9baeeff1f5fe333b8fa55", + "regex": "(?i)^https?\\:\\/\\/service332\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a66d815d7b4ddc79423d1edb1631d1ed28c9632d30690947f805a1e34f57cb50", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c2a3e5217ea594d5636179c6baa18cdd6032dd1c391f827286fd23b41f7f9a6e", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porno\\-gratuit\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8da8c702758518f8e1de3d0990f732b3c6d00f1004ec79fa488a3b62d3abbd66", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a288348c7369ffa4b0187f8d14d15ee393fe44dd1c4d5b5f30de762629c1ad12", + "regex": "(?i)^https?\\:\\/\\/amazon\\.oymjqe\\.com\\%E2\\%88\\%95znttbj\\%E2\\%88\\%95cvfdxccba\\%E2\\%88\\%95xlbzgxlgzk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hbdhiy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88e715bb91c7e5eedd62bb5fe9ed88b6ee1ad9457d180f2b8066d9959a298537", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1f918a82f7d67e41925f3616606b02aaac365f02dd0838309a573b6fe3aaacb2", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.akrieeu.com%E2%88%95kovxkawqa%E2%88%95zqvyomthjv%E2%88%95wjjncuzlnd@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "457be299a189abde944f5118c229f9cdbc729bae8def20f897201a6fd78715ee", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ca70a114a365826ca5aaeda00c7af37fe30c09cefe5a530ccf800df8db043fb7", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fbe96da5f7ae919f653ce72581a04e79c33e32895d9b34a31ad25bcdb3a964c9", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "851c269e83fb0488bb0a230bc4b816c623ab4a31358b32e4b84794d36e00ffd5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p[\\/\\\\]+373586292(?:\\?|$)" + }, + { + "hash": "56697481995da0a346d9708c6b5a44857cbabcf0e770dbcea3bb67f89fd41f56", + "regex": "(?i)^https?\\:\\/\\/videos\\-xxxxxl18tube9\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a63bb6f30caa96a5d71379bba794bdcdb73ff4fea00a2005e11ef80ce4ce9403", + "regex": "." + }, + { + "hash": "6ad566701d7c5999acab4eeb859b986cafb1a16444035bd4887a5387c52dfdb3", + "regex": "(?i)^https?\\:\\/\\/beauvais\\-conasse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ba58a44c8e3f6c75cb0115682d8c21a4257bff58f16fc52db47641470ee54d0b", + "regex": "(?i)^https?\\:\\/\\/baise\\-metz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9b0ca4e7a355e747871666cbe438b014c473cd0316eb26fbb90f5cbca6f246c2", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-pute\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "74d4e9c7a122e6b26437c369ee643bd63a4493c2eea324b9a8f800f366b708e7", + "regex": "(?i)^https?\\:\\/\\/seance\\-de\\-cul\\-gourmande\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "80fb579ee10d42af9db4bb6d19ff4a4b432d808acc2653da078af71fbbfd8d17", + "regex": "(?i)^https?\\:\\/\\/montreuil\\-pute\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c5f364f67e2bf341726238df3752c0e979d1875645eb9a08c0a19c6b98a59279", + "regex": "(?i)^https?\\:\\/\\/pierrefitte\\-sur\\-seine\\-chienne\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d516e6c4e84bd74fadb4bb1c6b8b23105beb1e33d78211e7ec13dbed91649daa", + "regex": "(?i)^https?\\:\\/\\/soissons\\-chienne\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9063f811673f538e6db621c82c00462dbc26061feabc92641f7742b0defc4407", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "324e0bbe68587b441a0520d4c3f5a4b2df0a01489b6bcd4956d7f5b07dc00fa8", + "regex": "." + }, + { + "hash": "ac277e75461fb27d6d51b00081f9ce1f190c2cc8e8c124ebc944583e07311d80", + "regex": "." + }, + { + "hash": "ed8c0dc15fc080b1a7c60455d6c65e041dcdc8e2563e567957775947042b2e1b", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d15baf7684dfeb0f64cede3be1beb1fed0b02658bdcff67f221e165e70c8eced", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-gratuit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0a6f4570966a8c7c953c221faf3a824c93982249a2a500fa0c4bbedc92d6298d", + "regex": "." + }, + { + "hash": "eab13773b54d3b049c06191a7d907f40819aeef41389a227fdd1d9d5a088da3b", + "regex": "(?i)^https?\\:\\/\\/soissons\\-chienne\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e4f79f6dbafcca12de73fd9be12681b337e40c0797e0a711d3468f167869e586", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7b6d7a2756d911417daac6689146f79a32f993b156c47a967eaee64dce0ddb58", + "regex": "." + }, + { + "hash": "031f4f8cc37ae60a8d1b082d359f913b37e7672475ff6b9c5bd21618adc0d0b1", + "regex": "." + }, + { + "hash": "fbcb3c6ab1aba211e1c161b3231e826c13c57c85861c3b5379675127fb0e0a0f", + "regex": "(?i)^https?\\:\\/\\/baise\\-reims\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bc342bee9e15369b69201631d300ae83020bc03a6ddcc9314fd7c55a0d30bf12", + "regex": "(?i)^https?\\:\\/\\/service332\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c987b73db6b473c41fd9c546ead4c02d0436ec46128e0334eefd371b877b897c", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-gratuit\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "81ee4034409ea5f27d0630e0a11093ab007e85a4143503c3a68e2e79b8cc5fef", + "regex": "(?i)^https?\\:\\/\\/newshiviphotoshoot\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f8ffebccc098970d3185dd366439c5be7f98444ff57be3b517d22cb2921c4b8a", + "regex": "." + }, + { + "hash": "c9db6274cb52e26e1074e825396c9e1578c1a5ca3374165ebac6fe8c0dcbb464", + "regex": "(?i)^https?\\:\\/\\/charleville\\-mezieres\\-nympho\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "446505db8d2f18e29ed14a0bc51caea79e06d937e42f75ffe3dc942a4063b53e", + "regex": "." + }, + { + "hash": "5ecfa2e9ee5a6957b9c512c99de762322c5ecb1ebb39ab71a16cce0a5e104fdd", + "regex": "." + }, + { + "hash": "25c2cacb0fac5ff38aeed3c8ed87d2060c015827014a65bdc3b2839139ace3ce", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-pute\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "201d02b86b7b954e57ce126cd84d2eed7e5e366225c97a332dfc5bce0f3c411e", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6b31e1c49b7642f995f40791316a928f20bad8b8eb5912d5a71784151ca4da52", + "regex": "(?i)^https?\\:\\/\\/baise\\-reims\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5779067173cf211710763f556474ffee6ec05769747cefff4761c4dc70990932", + "regex": "." + }, + { + "hash": "e185f95faebd65b62485b93baf950c45ad4e9a750ab91d178cadb5535b31d4fd", + "regex": "." + }, + { + "hash": "fc30106cc6a99ce92756accf1f0196228e5821449198297df3b8fe3816ee5247", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c8ab734d6b58bb6e0e4c85464109e49373839bf2a37a046fd844d0d888e8e15d", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "381b2b34ea0105982c9c9a5eaea41622aaebef5c861fcaaba918184346cb8300", + "regex": "." + }, + { + "hash": "308c296f82b6a13e3dc5d2894dbd2f75ca65581a354ebae2a8dbcf19b7675c47", + "regex": "(?i)^https?\\:\\/\\/charleville\\-mezieres\\-nympho\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c6b7515db3414fb8d9793a17a762d76d35267edd0b66ff6564a15b96b7165d54", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1839d15dff91f01984bb4f44dec68d0aa46ece8927c18bd0f6c67abe2325b1c3", + "regex": "(?i)^https?\\:\\/\\/athis\\-mons\\-pouffiasse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "62390fc8b92a2f68983c2428949f95a806585da7bc2bf0047264db16143a6abe", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "de8ca9654d65a663f79b51ccaf493ea849bab4cb0fc65bcd35da6ac5ea038810", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "80fb546c47fe3b9186bec6c9b03f1bbbc7f9836ef1820e7451efe95a69f8d4b0", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f41fc466ebbbbe3cf9177ddeaad398b1ae8c97ffef9c77ca2e0092516d6264bf", + "regex": "." + }, + { + "hash": "e3600c54be3e5f7e1143a57878b8374471b5d891494d856792e4e784eaf203f5", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "428e6dddea87704c569a0794c247946b4366c55e8f2396b8eb5382becabe51b3", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "54fc6ae3b976da47e02821dee5b398be4117919edc664843a8dfa6425849d973", + "regex": "." + }, + { + "hash": "d92832b3cf2413c91d8bea29e5c768210593010861a10b81bff2ab3699c0f2e9", + "regex": "(?i)^https?\\:\\/\\/pute\\-pontoise\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "82b4f242ee7220385962fd954617a97542a3dae6f18e3cea22bbc2193117a122", + "regex": "(?i)^https?\\:\\/\\/cul\\-jolie\\-fille\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c5a4132dde8a760fb64132365d0658dfc5f6007262404c0478b03cdb5c19d11c", + "regex": "(?i)^https?\\:\\/\\/xxl18tube9videos\\-xxx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5bf9984290a13b6565026b5c55130eef44dfb5251dfc7eca3765f1ed9b68e5e0", + "regex": "(?i)^https?\\:\\/\\/videos\\-xxxxxl18tube9\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ee3cb37ff33f460182e9799326cc9d7a0dd480d9f7c056d92fb18da01a833205", + "regex": "(?i)^https?\\:\\/\\/pute\\-pontoise\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4673200662d6a14e63f6e83e84673958d12f2088af6d24229d9c599b227f1ba3", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5b846d8b78a427bf9c37f91513483658c578b1cd9fce18a9ed21e331f82ec4f9", + "regex": "." + }, + { + "hash": "64c98207e808af1b0c7976fccb4c16f32872b38decb342bcd77d5690b0fd82fe", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "edbcd35005d159c37d03c75c823e22e1bab24572cd39525ddc93193e98823fd1", + "regex": "(?i)^https?\\:\\/\\/pierrefitte\\-sur\\-seine\\-chienne\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "231777effc3fe5e6a51c03cfc617510708c8d34ee631bee7d6c646634e2753d0", + "regex": "." + }, + { + "hash": "51a8e062a6d9ca715c5a072d87fdf18776fa90d730b24d6e0eabfcc87400ce21", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dbd21748863ff11fb71d98bfc36b1d2d50e8ea977dee175f7a4e0f0f8de10569", + "regex": "." + }, + { + "hash": "2f4b493f6074c87977316f7d509f143a6487012278ec4f6163357514bb2d98d2", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-videos\\-xxx\\-tube9\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8c4da388e5558bb0f3f6642693a50426b8538406a0b1f4f3b83a899e334d3c1c", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fbb101aa328d8eff10b3fe02feb999f90081e0672deec10677f3051b6da728b3", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6d5858245e3b005b5e4692774600817e84dfa986ce7c515afa67f242ef73a6cc", + "regex": "." + }, + { + "hash": "04d59ce48ce40c07625a66c83cd3073b61d97ea3010bb425bbad3857242759eb", + "regex": "(?i)^https?\\:\\/\\/frlink\\.zuflo\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "74cffbceb6fc36d1257857b00a9c90b4ddcf3c5a17fc49bc8ffeca17a9ea9834", + "regex": "(?i)^https?\\:\\/\\/videos\\-xxxxxl18tube9\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e1872da48f6427eb1af9dc2bcb1279cea66a0c919f063125a557d9929024c6eb", + "regex": "(?i)^https?\\:\\/\\/baise\\-metz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a0be75e8b9ba3d83c0604b04e4a17eb6c878dfe5755ceac313b835e159341dde", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-pute\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "46e80c61adbda44b2e299ae3775d45d7687b07ff973bccc0d56816e002010b42", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "226b35cc69c6d32fbc69950d6946690107363adb1df05161edf074f50c33a1ba", + "regex": "(?i)^https?\\:\\/\\/pierrefitte\\-sur\\-seine\\-chienne\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1feecf4dc4ef820da7c243f90e14eac3ed4b6a6f3d00831a3687906a2d1b5bc1", + "regex": "(?i)^https?\\:\\/\\/baise\\-reims\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d040c6c139db9a6de2063a1438f5d71b7808be3445b7bc576f78756bb918f4f8", + "regex": "(?i)^https?\\:\\/\\/athis\\-mons\\-pouffiasse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "eefd3ac2efe57c34ea2a640eb14253232500b88c43cc59d20dd6647b4261daac", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4db791e80e9c5aec8397ff604d662f414e5616d509ec97d30f0c2886300ca212", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9ef03d4e01aac60c94bb5c4885e47073e64f072ed40ded07bb03b987f73a7973", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-gratuit\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "76180cfc68c37a95238206d8f4eb16dc2783165f08541c30e502ede3ecb31cf0", + "regex": "(?i)^https?\\:\\/\\/seance\\-de\\-cul\\-gourmande\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1259a5e026344b82c2482c2fab419aa7ea2e5de44a07b7bc4fbb5e157dc0de91", + "regex": "(?i)^https?\\:\\/\\/baise\\-reims\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ba1894e5751ecdef8e43f523f9a334bfd5cd207ac9842e044e054933ef827552", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9b7859474f277641fdfaf5bd8f1fb44c2888f795c05b37b70e53241d146680d4", + "regex": "." + }, + { + "hash": "54cb01a0b0679b4f8601c00fcc85de75ed73921e0182511e3ae6c80f05731ddf", + "regex": "(?i)^https?\\:\\/\\/cergy\\-garce\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6cadbc6eb669335257ba32f1e73723dcdd31b4b9d4be2c0cb62a65ad6cfcb0c2", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuite\\-x\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e3c1bce7cae465dcede59ea1948f2237cabcbb3c159c05474f2642c398bc9399", + "regex": "(?i)^https?\\:\\/\\/newshiviphotoshoot\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "19a986838fda14d4683a29859c970de86a1a777261b453ec79f941ef5bd0f85b", + "regex": "(?i)^https?\\:\\/\\/athis\\-mons\\-pouffiasse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8d3185163405b64ea75a83bbe2b630fc9ae4535b51956cdea25fa09c2b89e0b3", + "regex": "." + }, + { + "hash": "9686e6674f420b450c4d4bf2103f665c89a400c1ba009de5705b2f258d51f03f", + "regex": "(?i)^https?\\:\\/\\/pub\\-5a2f3b224a2d421c9b1aeb76eb463394\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "77862c62e20dac6fbbd4f02e7d365f29af3a5217aec48ab3956c7a88a660509a", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c04d8b2cd915fa446daf346e042716bed0b96e4473cdec88978f28bdb2fde764", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "446d52b5c6c76df082a73cb29a90310b2958cf666bf33ad04f76034b47cdda9f", + "regex": "(?i)^https?\\:\\/\\/tourcoing\\-garce\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fbc95827e125e2cbdd3487fbe39bb02ed59c8d4a7c9d4358937451dacadd496a", + "regex": "." + }, + { + "hash": "2e2dea8be5c10b21155511a9ea28f377e047b1f635bf84384e5b8f1b5de35e18", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b0fe5a8536f46dd1edadf262743fd5ce0bee64a707a20e13758ce92d49b1c643", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-gratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1e226e6aef98e562ba17cf80b8242e0342505c230549bb65977b9c174d6525be", + "regex": "(?i)^https?\\:\\/\\/montreuil\\-pute\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "37433a11278d7d6d64a124559b12f5722c3607dbd42d4583f4e09ad9d35d5713", + "regex": "(?i)^https?\\:\\/\\/montreuil\\-pute\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8dc32142fd3836d4df8f350b34a1040f79b48992d76a0a566a173e23f215d974", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "22e20c482068ec1c0ad3913ccfdc8304be24fa5134f522704f36ce1ef554f6cd", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b6ac21e6489efc348c7f55a21709d253e6c88119df7cd5ac39095c5c7f7055ca", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a601667c5faf6bb49bdd2102214d88dbf83bc13f8b201c784754e9a1fcf293a8", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "146c39bf0c6aabdf7e86da7cd5ecc9ca32c7725145b86dee3014d0b2d4a5003e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0a6a5f3601981b95ff6d89d0ed0856eac8a2c07b806158552f190825cec2dae5", + "regex": "." + }, + { + "hash": "63dc98e49c1167d59e1befa6d5946e50b95cf79e17e79bd978343d0e52eccaa0", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5d9cf8db331761ccc8a15c58ec0c9744d2afc4ef1a4f5ae99e70bdef8e689ef5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+k1in1q[\\/\\\\]+0neM83hG1ady\\.html(?:\\?|$)" + }, + { + "hash": "96c1028792e634d1b60f7a11eb07d067aa49b24e54168f67c39a7c5be59fe79f", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c9b1a6b2ba1dfa6a06b9fadc644aee17ef809c7c3ec50cb6b92b33f829b1a416", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-gratuit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2569cf283cd400e8ef4ba1bf5a3aca0265b75e43e0890040197f04eb9d449ddb", + "regex": "(?i)^https?\\:\\/\\/cul\\-chaudasse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c3e7181fd5e07311d431dbc56529b50d99549ad2980de26f5ced50fcad369ae7", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "14bf39f9ae80f3a8780bcf6b6fe52446ae77c299a7a405b7ecea7ea1751feb74", + "regex": "." + }, + { + "hash": "4443019d768c97c337247e3ebfd0b0f007ca04df49cb9e38d175c532b27caf9a", + "regex": "(?i)^https?\\:\\/\\/baise\\-reims\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "63b42e59f012dcafca8aa06131499a0a43575341f713d4606d407130dc33f858", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7507c94530da9e7bea9429f3e10baf88c9ca892bf1b2e305decbe88a6c21575a", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e8c5e259a5507123346ee0ae821a84785f11fba1a1f319013a085bf09b438361", + "regex": "." + }, + { + "hash": "40ebca7a40ccca0b4f5bc3603b2d422a3861c0199516905280f167cd01981f28", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d1478dabe5011f2d5bb120c724185b2386cd01147967280e72c2e8d9c662173f", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a28865058e741cafcb7ac8061a5664afddfa641f51da47da576be23890d1b64f", + "regex": "." + }, + { + "hash": "a700394818e9e06aa1f648779491a931e7f52e8778158f6068a88c48338792c5", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f75366362bc157a89ff13ab72e25299fa5e4330e4893239b391338bdbf8addd3", + "regex": "(?i)^https?\\:\\/\\/cul\\-chaudasse\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bd7a7df6efdd0d7d343313372e34bab9b500217e1d1d0839b34da17eebac2ea8", + "regex": "(?i)^https?\\:\\/\\/videos\\-xxxxxl18tube9\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "74787798b86faccc8617b94aec7da91287026c9a42b8552196e5269553aca101", + "regex": "." + }, + { + "hash": "767ca7178f1dab2784aadec5d46461dcdac6dda7a32cee8310fff77cb3808ef7", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d9e75817e413be4c3bf6d0d51dadf2e27270f964f16a5a04d41a333a66a0ca0f", + "regex": "." + }, + { + "hash": "9bd76b00b873b6ab67e5ed68c899f8d9cd6edead85b7984cae97fbfe57e32c41", + "regex": "(?i)^https?\\:\\/\\/salope\\-chambery\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "18a7f02646b9818c53e38e06a3b34f8f2af75bd7d852930d574f3a02707439a4", + "regex": "(?i)^https?\\:\\/\\/baise\\-metz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1c7a9653fa581952aa538d78914a3e61f88b3c5e0586eedd78154cfba40b0842", + "regex": "(?i)^https?\\:\\/\\/issy\\-les\\-moulineaux\\-catain\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9699511eca4829907094b9783bfb8c7059ba89366a6430600d5a821e61c83b96", + "regex": "(?i)^https?\\:\\/\\/free\\-10030\\-robux\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+OK[\\/\\\\]+DK\\-Brobizz" + }, + { + "hash": "4e7a948cb5de3fe30a15f57b7d593c7b54ed6155a97f3400ffbe2ac2c46862bd", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2ccd14604b231d11948433aa4bc683d0fe2d3b061b266854d1d97d33b5a8044e", + "regex": "(?i)^https?\\:\\/\\/issy\\-les\\-moulineaux\\-catain\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "793b6d01d92588e053229f15156c76af3c57c48950926fef0d16207f40a60f71", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6f93c2a1641f1e72d21c84a8ac702056e52bb94c356832a71d99fb9d8e579367", + "regex": "(?i)^https?\\:\\/\\/newshiviphotoshoot\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "77b5b2c76de8bb21419e1b6cfac7681364dff13e2fb4d86bd8943da737621034", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c2b57470ca8484870e0414a7b7c1b7b28e0a6d2755b1bef44158d609366b99e8", + "regex": "(?i)^https?\\:\\/\\/salope\\-chambery\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "35241b12bdf9283922a566c73ac395219563d3fc77ac04242ca67bbfb08d66c0", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7b38b524964b7af6ca227faba5d5d54bbe26270cfc361bbc7c7e523a35d14a91", + "regex": "." + }, + { + "hash": "b47f170089f6ac1578a808a858911920f86f63765c5be632fbb10d10ac9f5878", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5d837fca8867717127fd940bf496d97f18585aae431c9f930996ea333ac92814", + "regex": "." + }, + { + "hash": "9ca035e9d7882aa463409cfd356fb7347a1454f5b553b5acbfd09a728279b9ad", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "94e1e04137bd5a68c79a328a38252b8b32464d8ce99ec705e2dbbd7c436e2f09", + "regex": "(?i)^https?\\:\\/\\/pute\\-pontoise\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "85cc8a71584f05af62fc7000a7a32f80e8e58b713f100caae187b3b16d34c447", + "regex": "(?i)^https?\\:\\/\\/epernay\\-pouffiasse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6fbefe77f5cac4337f43bab5b81c8ae434c28338f465961bf639c3cdf23accc7", + "regex": "(?i)^https?\\:\\/\\/xxl18tube9videos\\-xxx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3c18ec7847ef9c31483025e86a9228b85eada1c66481a14b28de8b39a3d7ce4b", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "002701df03ec939295fb2e778ccc78366d5383f6e5c4a79fddf0a4f63f1b37e7", + "regex": "." + }, + { + "hash": "1a2f3cf93813c7df4dd23c9c71e9a9744ed1f4ddb395a8a44a3ce10d26bf61cc", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "31a60306dde64c84adec3749ccb7034d785bc43589cbbb5361116649ad688895", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-gratuit\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8cd37f86cd42dd9851deea3a0456065c9a85cbe372bac4a4162e2b7396faf1c4", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-gratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "601364f82ec52df1ef2434c3687c1ea703445bf211de4f2c10635ad1ba29492e", + "regex": "(?i)^https?\\:\\/\\/salope\\-chambery\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5da7b67bfa42bb3733275d72a376f82e84ae6cdf359c88295bb56f8274bea6e7", + "regex": "(?i)^https?\\:\\/\\/pute\\-pontoise\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "852ed6b90aaf3f45e2d8e95965b753e2b6cb1ffa4bc1e6257dadeee91fdd407a", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "79ee86c4faa6a302a72d7c892af90409a935d2ec0df7142b03233a48bb7bdc08", + "regex": "(?i)^https?\\:\\/\\/p0rnhud\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "12cc6d6d8cc44b42e0aff7a2821aca75004ab5fb0b31c80517228dad452e8ae7", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{4}\\.pifro\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "a3742c1e07ff8fc693143378b1e7c02c88476155e0c9881b2a8c3bac74f4fc85", + "regex": "(?i)^https?\\:\\/\\/epernay\\-pouffiasse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9c957139921a104ea49008cffd5a282f69359009129aa8ae8856aa4434b004a9", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "236018408975a1aa652353086f1d6e3dc42fd65fef835a9419e1c98ef2ba5581", + "regex": "(?i)^https?\\:\\/\\/cergy\\-garce\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a0c2ade252ab0b2ce6c5ce8204cd0b5991f79c67b4e9b2971803f2a5a3f683a9", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0f91569db7d07b8de24d45f79caed36a4ac1bc7f5a2d9ae76592509acb424113", + "regex": "(?i)^https?\\:\\/\\/salope\\-chambery\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d8b37f6e8ae87603c29b44bcb7ade5972ef8889ad52069ba2530f7a87ab66ed8", + "regex": "(?i)^https?\\:\\/\\/videos\\-xxxxxl18tube9\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5956035b11e80d4cc93c481f8982118575948af098dfc21ac7ecbf65bfa45f17", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b7539682928afad427ffbf2f7cd4d8594e9a8f723816e722fb842c590f310fd1", + "regex": "(?i)^https?\\:\\/\\/newshiviphotoshoot\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ac0bcd30d0c13f3a2783a060ee11ffafdfc08443ffc785609b0f36a7ed59cbb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c53e6d503a8c77d06ed161697f9025ede41a7e1dbcfafc42e8350b8fd14c03c7", + "regex": "(?i)^https?\\:\\/\\/xxl18tube9videos\\-xxx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d332079d948f7e5892b739fdfce6b254bb1214169604411d63cf7590b103112c", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b7ff7bf9dac261e11716dc54f0691edfd86c9fd347308bcf3c60bb8ffa521b96", + "regex": "." + }, + { + "hash": "49a0c283b137f2a929e0138a8eaa0c32da5721d029875ab541457cada0c7a32b", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d842052f306acfe6e9694281fc86202ad7741e0e884acd1c1a8fe8e686a5704d", + "regex": "(?i)^https?\\:\\/\\/1bc1bq\\-30\\.myshopify\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4d43812c31889df87858cd4ba2e28d73c2ee70f3780785c0fa66b677d4399d0", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6914b3540153fc894c26e49630cf1e1a95eecdb582820c7d8875d1d33c6b8bc5", + "regex": "(?i)^https?\\:\\/\\/hbibnadyalczakho\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0cfde66e1e0fb172132a8e52907cce59b5143a0acdae5e12db1a698f20bb7a41", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b1ff32647a87212576ab30c0763891e3e22b88c8aaf4cab9b42b5395698a1d80", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "96f202b180a754cfb3d4de91fb6870b2cfcc2bdd2108cbd3eaef975595c1417c", + "regex": "(?i)^https?\\:\\/\\/epernay\\-pouffiasse\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1202b3565295deabe536fc9acbacca3e8a3b20c15f3022debd1f8f114fff0e0f", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9189befa4d6899d537ec4e1f7f2f1ede313b2e885ef6c5e0951360f3fb597b5c", + "regex": "(?i)^https?\\:\\/\\/olive488548\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.uyhyu.com%E2%88%95rlsdaovs%E2%88%95coguwidwd%E2%88%95ikwsuoiz@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "a45aa3043f433149833cdf9b7291f14c5e85ebc12816817e9a2f72b358fdc416", + "regex": "." + }, + { + "hash": "9bee17ac6310f9ab9f3c743e80ee889eba23ee61197b5adc41680506f5b44b5d", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9ca1032836912b9e07f586cd355cd6048f150ef8e30e79e4e3940f5659ecc8bf", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "451c7a8ad11a577a2c18378f66da83702422c6703e63b8dc01157a97d800ecaa", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a8dfe911c4904b71cf6fe153b87c91159c8ccbd712708960d2df8b0d7fe905c7", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1312a015a9178069e6edd48ffed0c79bc4242fa2b3d1313243503d861d21123b", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a39c6d3018ca7565b9f5f7b5304888502c9912f697a6677b67b5510a8b029ade", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porno\\-en\\-live\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1325c55ddaf82df716ba6e52f072240f13a7bfb63feb7efbdd8e6c271e8c3a10", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porno\\-en\\-live\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d1ec5acb215effa6465ef10ec0e81945c1039a592f145ce7f1318adad6f9eb9e", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a85102277e702d4a631e25beee0dca77fbf42194119785912fa360949c5aa1c5", + "regex": "(?i)^https?\\:\\/\\/service332\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "aa71927418383a5be8ae4f39f627437e0fb2069dbdd559bc33ec1f34ac040ffb", + "regex": "(?i)^https?\\:\\/\\/cul\\-jolie\\-fille\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6d573a75d6cd1736f5d2cf4ae1a8ca1ad0354e690af465bde077ab7862f479fb", + "regex": "(?i)^https?\\:\\/\\/bergerac\\-grognasse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7b6d52468d783dc27812a348425cbe93c0196ff190835ef2ad38a5fbb4461e9f", + "regex": "(?i)^https?\\:\\/\\/charleville\\-mezieres\\-nympho\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "642cfdc5d11d1cb57f4bc0fc6c5e4ad3c5d3051326d45e50ab506b818e56a0f7", + "regex": "(?i)^https?\\:\\/\\/beauvais\\-conasse\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8013c515e3b4277c0138be208a95e3bb8a1ff91d0757f0bb7bf8c99acd69edce", + "regex": "(?i)^https?\\:\\/\\/epernay\\-pouffiasse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1ff884c679810df69b36ad6b39e0353b43c66c2846c044881033ce549653055d", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-gratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6a795308fabe20a8b9e48f94e3d955687a96fc39bc30050fcd531605a12b780f", + "regex": "(?i)^https?\\:\\/\\/hbibnadyalczakho\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d8069a2d4fbc183204df8aab1ec1c494b144843b279e209cb92751895af1a4ae", + "regex": "(?i)^https?\\:\\/\\/baise\\-canon\\-demoiselle\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e2f4e6a3304d79d44bfb9a4fac6832a5d4342087b556cf666a062a351f3e7117", + "regex": "(?i)^https?\\:\\/\\/bergerac\\-grognasse\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8fef7c9df1685e7425873991b800e8b31f6a9acc1c6294090c6ab633739ca41b", + "regex": "." + }, + { + "hash": "a4193a3deb671ae0343578153450daf1d2130ca2f1a1abfb1b5021858e7726d9", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4e6f543a3fb92efa8ccba064a3ca0fa6d0c454e954aa7bd6e49ccac96b84bff7", + "regex": "(?i)^https?\\:\\/\\/p0rnhud\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c76e072dea43c1ad22bf3edc9c0cab2572571c4755e003952ee7315f6e297a50", + "regex": "." + }, + { + "hash": "6e2598643d7ae8b1b9da61db9786d5a7f8d87d99bb43ab1082b53caefff01fdf", + "regex": "(?i)^https?\\:\\/\\/welcomecdch5\\.firebaseapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e3d7f0c5767ed07cd7a1282732bb889aeb1ca1f938eb27814e2493dd31523780", + "regex": "." + }, + { + "hash": "9cc7e288d6b5f7cce0e7fe2398232599ea0b963c9c8908d4762f7a935b19bacd", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "86336d0f7921a2146fcd3ca2a090ceca4c3e2589e41872131da16f60df73ef8e", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "315f10f3a6b45fc72fca74fc898591f2d6680693fe13de0fbe5ba87d640fac70", + "regex": "(?i)^https?\\:\\/\\/pute\\-pontoise\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0a416240c6a341698fb8174472c8556f55d6ca75167a3762bc632f5dde5b4299", + "regex": "(?i)^https?\\:\\/\\/cergy\\-garce\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "25baeb3f7f1e04593c92a57be0ce826f2d250d75ae7fa9ad8ded17f2496eb946", + "regex": "(?i)^https?\\:\\/\\/msngrcall8657756\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "391edd761b6c4d966d3305b7d5a164594ae004760ae68ec6a1e96712772bd5df", + "regex": "." + }, + { + "hash": "a6a3fe45ce23e3ef59dfcef58756d7ea0858d6beb16023bdbe4e5207318a531f", + "regex": "." + }, + { + "hash": "2451420290f6e6443f9d3044477092489d3800c285389b91d8781f70228de420", + "regex": "(?i)^https?\\:\\/\\/www\\-credit\\-agricole\\-fr\\-4xmqsx05\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "11de42ec163620ced17805c6f750b2dc6a2a0963b6afce883ffdf27536d452c8", + "regex": "." + }, + { + "hash": "875c29997f29dbd803c4a79a0ec1f9efda5e3d68bd2a9f32cf9ec79795d6a8ba", + "regex": "(?i)^https?\\:\\/\\/soissons\\-chienne\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4b619b0431c51d9c7b4844562fb71e65d9880afec48b397b8cf15621214ff755", + "regex": "(?i)^https?\\:\\/\\/lovely699x\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6beced2e4438985b1e4469d6bacb123fdac93785131252624ee53cf5b233796b", + "regex": "(?i)^https?\\:\\/\\/cul\\-jolie\\-fille\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "876c1192673cefd4feb0fa4d0aa1aa2fa1f15f1680429eda09478519ec752994", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mkzuhxepow\\.com\\%E2\\%88\\%95pguknqmqgu\\%E2\\%88\\%95xystoe\\%E2\\%88\\%95zxnstral\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=iysqibzh\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e7e8b97d374e816b689b0b4909c447d07af35dbfe3479de9f5761ad7d70941fe", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "45af87e43e61584063cd279bcf23954ec7b181e3a18e8f4f1f90cbea3fb581b2", + "regex": "." + }, + { + "hash": "e1e2f61cfd115a5e01f3425ad350ab701a49d6c52fedb626523ad141a8412ea2", + "regex": "." + }, + { + "hash": "a7689464754d2b3a0c336c407e0b2a7cca288f91f68e665b4630ce165510a408", + "regex": "(?i)^https?\\:\\/\\/epernay\\-pouffiasse\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "84e20de1ea9e5c832853565f259e039689b4613608c8ff8b56fabf7340598b51", + "regex": "(?i)^https?\\:\\/\\/nique\\-putain\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "073f849beeb37eed97534f9a0e359fb7792f3ef88b35be6d72aeb40f16a6d009", + "regex": "(?i)^https?\\:\\/\\/p0rnhud\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7e9779606ee792415a60439a3379f7a03c49a20dcbce869bfe832664b590b0ff", + "regex": "(?i)^https?\\:\\/\\/seance\\-de\\-cul\\-gourmande\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b3191ae6c9882fd8b696a555a6bfae52a37f9b3b9f691bd6c0773511510fe3e", + "regex": "(?i)^https?\\:\\/\\/issy\\-les\\-moulineaux\\-catain\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0869e378b380dbfd47b4fba5e9c915b9dbacf52f00efcc93cc1172eba1e60c56", + "regex": "(?i)^https?\\:\\/\\/bergerac\\-grognasse\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "943c9d608e5e5e159df225332407c6dc32a1848e29189d9bf29837cab9474a24", + "regex": "(?i)^https?\\:\\/\\/instagram6106\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8c457b9380ac2906a6441ad6122c7117bf956eb073c78c6d7cd468c80ec41d42", + "regex": "(?i)^https?\\:\\/\\/cul\\-jolie\\-fille\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c7100bfd6face2da48efd3ab079abadbe5aa85a384766ef68ceb7ff2655cf72c", + "regex": "(?i)^https?\\:\\/\\/porno\\-coquine\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "abb112f539a9525f328efd1b1653ce14634f71148e6ec8c257c0e0bb16f3b65c", + "regex": "(?i)^https?\\:\\/\\/montreuil\\-pute\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "287f2e2e1f6fbed0ec78e5a5a6d32829d91f1b24d58a47d3eac924a94b145216", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1c7cd3760a1cd2f508a3240af3f29f325795da73b43be76df046a21df795661b", + "regex": "(?i)^https?\\:\\/\\/avignon\\-salope\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d089d35090b553276e7caba348cdac36c74ba096e511d6a2da90c8039b177159", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "31ab89aae8e1a344439cc3003e5874c5c2f345d91520c6a7cc761a544686e13e", + "regex": "(?i)^https?\\:\\/\\/epernay\\-pouffiasse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6efa42464b940e804054cf4f35b825916a7365646a48a882d439b4fdaf11a4b0", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9ac6aada621561cfde7daf472f46d42ea0891e55617e73219722479648ab1397", + "regex": "(?i)^https?\\:\\/\\/baise\\-metz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b294e6e7511b54b86341f5e8af03a74eb1eb7522902af69a4e64bb9cdd6fa768", + "regex": "(?i)^https?\\:\\/\\/levallois\\-perret\\-pute\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "272669e1afa1f5dc224884263b2c380baf475ea6b9f4c7cdcc0010509f1fb7ba", + "regex": "(?i)^https?\\:\\/\\/soissons\\-chienne\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "891fc1f7580b316c035bba943fff7a98ecb6ef95578e30c49701a314fbddfbd3", + "regex": "(?i)^https?\\:\\/\\/beauvais\\-conasse\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yhto4p(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c5305cc81d072795a94b3d97b7f24f9355458f9f085b90954f428597aaffbe74", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-gratuit\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f4a0f5543c9989a284cfa7f0a25e4d4b6de873da13f982fbf159344ed29ad851", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porno\\-gratuit\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0b27ce35e5853eb05da4f10007d189b1517c6e9dc150035a65b7104187517e9f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuite\\-x\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cba33ae9859c6606f3340bc45e72173e89a355a27958929bf3dc7f6773131d70", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-gratuit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "62e53f0950148c0dc3507297c56fe2fb04d1fb39e4b21371e572e6e4cb0460d5", + "regex": "(?i)^https?\\:\\/\\/plan\\-baise\\-petasse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "91be3d9737779d47b1ba9b0944be40cca9db86b4b0f57fb8502ba35faf321f45", + "regex": "(?i)^https?\\:\\/\\/videos\\-xxxxxl18tube9\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2b048ff996f15558f25cd81610f778525b0f0949a552a33e20d418bc71e4b496", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porno\\-gratuit\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a29a0f8265c9474ea7b6b2f073409dd648289f27e9a0a627fdb9bc6bf0b1c3cf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahsckascmames\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0914d98e3afdb160a96738fd6dbac3865bad6c50ad458970dfda126ba767f750", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a9ef9e974a0de1a6d650efa0257c2db867810785a24bc12ae154465f5402dd6b", + "regex": "." + }, + { + "hash": "d8060e0a15b5513b94182139e3930e3ae3cc82c0565ca10dedbcffec0e9906b9", + "regex": "(?i)^https?\\:\\/\\/salope\\-saint\\-etienne\\-du\\-rouvray\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1384e280405ed66e4463abb81dc9232ef1f8f1f209097b30a55df2697c431038", + "regex": "(?i)^https?\\:\\/\\/free\\-10030\\-robux\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bb7de65a03f6c2b18dced14772c05f7f00dc91fa98d47e2e2a0b1c86a3d45ed9", + "regex": "(?i)^https?\\:\\/\\/beauvais\\-conasse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7a461c4fa5fcdf4dc5fa66e8b33341443db8a2e37da6704b04c4a617183149c0", + "regex": "." + }, + { + "hash": "9c8a3b551ea70d4598e2780ff5707762988dcb8e0e3d1a23e0bbd9a034b1e628", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dc4837b3f62b0da1af1350c297e1e2b3f65e6fc62222658335070526de0a228d", + "regex": "(?i)^https?\\:\\/\\/hbibnadyalczakho\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "873078e93aa17a7144a7d8d4a6540724c55d40207ddeb27e6a02fe0ea24ebadf", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-videos\\-xxx\\-tube9\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "df3ac84e13ae76de3bbe0b5d609cfd384fdcf8259141b11e17e8f60dedb817bf", + "regex": "(?i)^https?\\:\\/\\/hbibnadyalczakho\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4ac64dd76cc6e60da6c9e3346a4f8c211c37e634869836dd833b55a3422a4918", + "regex": "(?i)^https?\\:\\/\\/porncam\\-gratuit\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a4ce909dfbe6ed137b2a0a03f08cced9ae68ad8148eccf0be246066c274df753", + "regex": "(?i)^https?\\:\\/\\/tourcoing\\-garce\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a1784a02f8688c74c96e244bd5568c56c66bb9ba24b98446dc98469d7588c992", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-francais\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3d1c7fc592b6f0341fc7f43fdfc6d4b0686a4e23315dc5ca757ef92ea915c7b0", + "regex": "(?i)^https?\\:\\/\\/cul\\-chaudasse\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6a1759e3277acb9d44aa5024f3690e9646428aa8d48381d2662f3f9f47714749", + "regex": "(?i)^https?\\:\\/\\/ocpaseobksdujasckasmease\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dcba2a1d353a8f4fccfe7b9149092375b41c7d649179e22f034428b95fe5d201", + "regex": "(?i)^https?\\:\\/\\/rblxclaimgift\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "008d64ecadd6cd5282c3c2b39f042b4190ca6c8229d35d79860d4998818f6b61", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "19a12e9d9e721504034efe99e94c08d18257b8a7b0f6ce776fcef31308f36f91", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakcmakcamse\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6bfe3cd0d8df214564c8b0bb38f68816ed76eeb50ff6705abe789be5c402364a", + "regex": "." + }, + { + "hash": "084e2842db63efbc25b60abde2b851dad8ea57cb97ae0dce24f77a8773ca08ee", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a58368e37bf9f9397f360301fe7bf0296709dc75130906417062526e35c89230", + "regex": "(?i)^https?\\:\\/\\/putain\\-xx\\-streaming\\-gratuit\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ab7d04a65b1f80d813029a29eaa1a62f2f825d3bd1eb0ea66d82f34ebe8d3dc2", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9c6ad3acfde406db952cc9dba23c53f131f97cb73ed9b19016978c7a3ab2aa34", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c4f43941d6061452bb3a0dd9b0b3aeb02d4480c444392d64a353930108d13", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5e2eeff4cfebe8f892db181aacc56b2032eeed06f6d44767bb21437c31559a2b", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9e7d98497a69258690079ffc9ef7e39daf107d222b194ee0a74283b6cffb495a", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c046ae4c4ac74b67cd0e73735aba0403c70667884509f0fe2d5cb7bd63b4ab14", + "regex": "(?i)^https?\\:\\/\\/pcaoslerakvmsdtuakcmasckasmeas\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b2993cbf26d49aaf554af4689a7effe96529fef7260e0eff4530bc8306a9b201", + "regex": "(?i)^https?\\:\\/\\/vzvzviuqei\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "63b4426ae728b4024955a3ded187cc810ba559078f16ac08f1f0758b00c07aec", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "62863ccbc228e0e22cd9ee2809061f9e700ec96ad4a2ed3a3b2f0e23bf5917cb", + "regex": "(?i)^https?\\:\\/\\/extremebrasil\\-gta\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7116ee356b4d3d50cb92c4ec36011d14bc8102c7e830dffbc6cd86fb67352e6d", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "21a0cd651e0be2a08a9f302c5d1873cbb8690d9c8cc641d2a94dd67e250e1c82", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2015e22b3a1a650b738af15f6236f12f4f4e2d7a4491fc023d3572ce4ad52382", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2df395f818688459b814a308466cbc83d5bab0a64b71c6849ddc2affb25a5150", + "regex": "(?i)^https?\\:\\/\\/putain\\-xx\\-streaming\\-gratuit\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1a2ffc6d78d32ca3f0b57d1199f30f78c83b032d3bce8599d73cafedefd337eb", + "regex": "(?i)^https?\\:\\/\\/zxzxzzx6w6q\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3004bb491fcfaeccefdbd5928aad1f60f0261c2861956a43086886325184318a", + "regex": "(?i)^https?\\:\\/\\/att\\-102729\\-106803\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "77068dfa9566da8d6bdeabbb7d05961a888574546bdef86b21d1e4fb566d61f8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fb3cbb9e0611113578a9e5c29bbc766fc1c2c155010a56d563fd234ca9f5632d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtufahscaksemames\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d1efad455d6714ac6d7c4b46b57c1e9f01064fb0a0d0d85cd91992c0ad8487ce", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c9ca3d1bd1bea48c9ae946bb5d341481bb1a10e4a1209f057da6845a2723fde5", + "regex": "(?i)^https?\\:\\/\\/zxcwxc6s2zczxcxaedzxcf\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "64f206f78a107e2e385ae13c17fac7156fd6c7338a2b418a6b05c6370cc0feea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?DLYoVVGa6M$" + }, + { + "hash": "e5f1b01499af727fdb856508489be94397bf26614e3ba93e7e74c7ac66048bab", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuyakcmasckamse\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "995fb4660f4654f388d223a07dd4a5e0900e8f0075d26cc5ba0867c238701320", + "regex": "." + }, + { + "hash": "b10b851f2f1aa197dbe4877ce4c74c657f6da48dda9d0ddbbfb5a4e3aa789e84", + "regex": "(?i)^https?\\:\\/\\/cashappgiveway01\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "da0392f46c05f487dbea6f7d333616d6fc948e3a807574b045f815fc6d724df6", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6b67974e2ff3f7a6658dbe3beeb0b8aca9c364fe72d9292044f3a7adc3050bab", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bcd14fd86ac06b28ed37b96634fc94eb3ff940771b4c61517cb9548185c3edfa", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfkymackasmem\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "30eadf0e7957340e35cc418dcb3afba5cdfd06504394187e6b7db66de5c68b12", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5a7fd80d5787f85421f35ed3d3043e73b03bfc96f358c42c230a5a3ae8a7a965", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "868dea428e0a33721bf53387a3ddcdcdd98db4f6882b35464011f354144e253f", + "regex": "(?i)^https?\\:\\/\\/ahmad\\-support\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5e4a25d3e8f3f623d04a3c0cdee42e039de94482a65649b51d35ab5eb702939d", + "regex": "." + }, + { + "hash": "b5fe134712f854fdfb3ff4abb040bb20efea0d0bddd8cfa0fc4ac5b216ba5b53", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfkylasckasmcamse\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "658d1a240d282723cd9cc889646e0cebb1e0cff2e5a643b3b4af058108e5b177", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsfylackascmamseas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cd90e720d42c9277a97f8c1865b581b72e3fc5de45f4b97be6ee0979656e1cc3", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d16dbd0b4d3d886904003611b0fe3c5222cc76902a104575a6b7e5a6ff5665a9", + "regex": "(?i)^https?\\:\\/\\/zxcwxc6s2zczxcxaedzxcf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df1a1c3c721fe4fd2e06c9f11f5d7cbd974dbd51a139d1f97103175915dc87c9", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "01bce28597c7c7aa94137594e09a4479a31e1affa9cc1f1b7cb09e629a19b602", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "03ca94ea9234f9dd82100f0a594f56f18ee895fe13f46d1902c99ca2e99ee652", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "64d8f68dcd2aab321111566861f51121ee76f0841606dda4314534953ddbf573", + "regex": "(?i)^https?\\:\\/\\/cpaseoalksdtmaksckaseasme\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "86df85db06633c813cd86a54256901db48aa29a8e5f19834cd41637116660982", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtylasckascmamse\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d7c5056efdd6832a328f3c59ed1afef7ef33e2c761bb46271c6a86883dfe8e1f", + "regex": "." + }, + { + "hash": "2606eb141b78ef54b105ecec838189a7766fc5c7f9ca588f5c4ddab1f7278221", + "regex": "(?i)^https?\\:\\/\\/rblxclaimgift\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0031c6bc6090aef524ba6204d62bfb419db949d54cc5e8b81cf98a47118b64d3", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4f429e6c3f441b3a1cc0c7940550d29e84e33a6ac3687bf6a32e5a6562716d45", + "regex": "(?i)^https?\\:\\/\\/cashappgiveway01\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8d9b37ca2879a777a7cd10eb7f90f288cb3394d8669e13e31ba105f4d85b0bb0", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuackaslcaksem\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "64c9627f7a817915e1e0f2a4773d84f84d3fcf803f6fa64c36401a3700ea1578", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "00b2329f8fa49cb2da2346d8bed7035d4b24f39028b072305b9809de8342c15f", + "regex": "(?i)^https?\\:\\/\\/extremebrasil\\-gta\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "069de87bc1217ced9c8664b80ecb2f69eb2455e3af8a87c9e3f0c9abcb1f817b", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e688007169c9553ffc4f993ef34502965293a5364e7eb26d993a6df59b9a69f2", + "regex": "." + }, + { + "hash": "fb00b017497c1719d0f6a2d1075a2a09d27feb8bc88a7e101696bdb80f899c66", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f2875089f8ac2bf1da552969e3652f15a40cfc0822b72b00152c27d6c775d0be", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bce803057d44a546e24805be58c36d6575f119e1b15e735e845bc72561254409", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9cb0edece55a2926c5df490bab08fb74388e2dec77ee95ca82ddced0255cf80d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1945b90c06546ef12714290d2f41ccf3dd5d1ac45fcbd6f0439a47efce33059f", + "regex": "(?i)^https?\\:\\/\\/instagramhelpaccount2024\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2090656aa1916ad1c05b7361f027c7a13268c65fb38418ee374da22e47282f9a", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8ce989eaf1b5d969f6075bdd243d827fad3017554036bb5fe4bde7ee7d10c32d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtuasckamsekaesm\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bb5961fceb971323f325f4d0ef616287e5da07e87f07c7305ae25b1e7146c705", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "95b5b05264f28e0ee89713a59ac2be12d05d4b4381dcf4b3771ad8e2f0012b46", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "caaa1468d226a246429ff86809135f4181f6fd68817ad90874f951c3575ed4f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CreBDV(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "04877689a5031c36059b50aad502b30776c6f1a189ecd0620c296c0640e23734", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsfylackascmamseas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8ba1d3121fbde5a7c380d80507b894909fb84a0b7fb0bdd0ca4476d968a72291", + "regex": "." + }, + { + "hash": "e598d37f1b1db431b37cc7fc4ea7714ceb0dfff7c8778eb8a6b9d76e0dd63e9a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtuasckamsekaesm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "02f98bd8d98464263b5ff203ab01cf3ce380585a519e1a706144fc2180b31d90", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1aa562592cf806a5153987f199ac77a1587aba4f6671d1f456bc9d8ee51be9ba", + "regex": "(?i)^https?\\:\\/\\/cashappgiveway01\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "65609c50eac37e5f2d2abc08577c2d824d5e31c06537af47f8186b0760f63db0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "33d3d0784da4b1febabfd652a4cb3c884b2c258e673c974798efde441055e10e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuackaslcaksem\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "046411817375e45dc881c17fd7593343b093b8909028ed198d6882a1ba199b7e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6b0fd271f11242da49fa617a7a3bfd65c2c7b73bf05c78781c7e800ed1f644e2", + "regex": "." + }, + { + "hash": "20dd709176e9f4580fe000b444d3140e4f7db2724e45484df62e94c07a2c3f91", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothingggg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f7b765d286af24ddda2af9a1a2d978805d1fa1ccb26f7c1971037d9cd910a85b", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1b89d5e6b3f15c86fb5ce2ac085a4ea5e4ac7d8f46ac9e21d4d69ab931811027", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsfylackascmamseas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "74e30f9dfd2599bb46e05f6dcdb671bc1f906f42d15414344b7fd9299dfaabc3", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e81885635e7db92b9cbdd474c76040567271412f36a41f0170d239359834b06f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a264f54a714bcb06f4a5cfe754126b53714b3516011d76e84e4a4f6b04b531ef", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "337cf56df3634385ac72fe3790ed9266e14196dd1713427ed2cef02a61951bd0", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a1933ca52d535f2ceb21f48620765b2c1aa41f4a660cb38cc87fa2d94cc7bf87", + "regex": "." + }, + { + "hash": "931de56ba1df53ada1abe3e95271c31f537303e7241ba22a83c3e325fcc64cf9", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qcxqly(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e24e6c57373f9350f7a4bd2adbdda030c08bc050b7a8bfe6d039378b47aaa852", + "regex": "(?i)^https?\\:\\/\\/zxcwxc6s2zczxcxaedzxcf\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a904c14829977c8859ade310ab01706220f33857001960ff71f08549b75c6f40", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2b0da4ac0e4e2cbb0b8fc6bcfae4ed199e84506f3db501a43cb566bfce90df1e", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2edc7e51edd040fc1429c0a1112ada723f5816f1aff1de0c0e54b95fc308723f", + "regex": "(?i)^https?\\:\\/\\/hgfjhfgjhgkjhg\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b5090df6dd99eeaa7152ada1db7760dd127b46acb03c1db0eebb0963c506e77", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "554cd8e5d3ccad6d10e833956c25d44dc2fd9c88ede48b6998340d1ab14b167a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahckasmeamse\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "997368dbd15ed43d077fa0fe1db9c6537ae46a3460d0282fa35dc388184db059", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0e5e1c5fc36ef9c4fd043d522467b1a67fddf3c16956edc5e000d8ea966a9dab", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "67fbfc76981e3b11a27b5167dca2cdedf03f18e9422a096119c98d92bef909b0", + "regex": "(?i)^https?\\:\\/\\/vcbrfgw3er\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cad778cd0a0a13a010956eb390440c45a94a1163a4bb1c688ccf88f0d728a0f3", + "regex": "." + }, + { + "hash": "b2ad963265d6fce20f140bac3fb71f2c7fe4339d64f7a7eb9c86ca391fd5f241", + "regex": "(?i)^https?\\:\\/\\/rblxclaimgift\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "67a3a07567297019ccd9db81afb958e81e50cb1a3cdc5e2252ac4fa3b45cf9b6", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fa2fe7a758bfe967131bd876aa781ad89ed01ba0499f41bd731e6bea987c2773", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "941d115d07919fa360f57dac7e330700e3957e7e5eaf5b5b94d57cac16c4920c", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "725906f20b665eb26ee2bee1f392f9e7a0e4a8115436ccfc1894439221c20ca1", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d24cad58c134bd47c5e30e7054aac1ec556089b5bb3801c4ba533e8ce1c9fd62", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1fcd976c90e5ccf401604fc3fd10ef1f4c10ed994a342a7844d23682f93cb508", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6c70b5279441c7a16bcee240f6efd19234b94f9e1bd6d3adedad2167899f77ed", + "regex": "(?i)^https?\\:\\/\\/cpaseoalksdtmaksckaseasme\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "36ee22e3286c1a52040ca43dfd7434048ad1536510c97d9cc3da744d6b8b397b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4a93707980dc1a3f4f337277afae5c51053793c4f458dccbb3f081d18039f129", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "226b0562623bad350d6a0c1237a6bb7f389964fd3ec1a10cb202271d3da171f5", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6b722e475eaa465900ff769bbae6ac0c84163c95c9dca2b9a9c23248298fb340", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5e892d57b84542064680f5ecffe120010d1ab104e87d43c500ac7e2dfde89124", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9c5d772b124c96b8914b6fcca54c9f6fe90ef90ad949709f40d650d18d5511cf", + "regex": "(?i)^https?\\:\\/\\/instagramhelpaccount2024\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f8ef27550f8a990a8c6f37d4b7c1ddebfdcc938a72a9e227364789b4bfe3b3c7", + "regex": "." + }, + { + "hash": "a7da1fead8e6b3e52c58b0c96320210208c758c4ac0ccf7789739906ecb8d51b", + "regex": "(?i)^https?\\:\\/\\/rblxclaimgift\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bb9f675266f767e2d9494a9782ea4447477c3c43872ba56c6c074bbeef26b394", + "regex": "(?i)^https?\\:\\/\\/putain\\-xx\\-streaming\\-gratuit\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a1d687b4756b3f123e1c92863dbb7c13b547d58f0271615f5f98881b02fa3fb2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtylasckascmamse\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3727d62b94be08229ae0270b10d1cbb505058caa2a93f90d9723a395990daa6a", + "regex": "(?i)^https?\\:\\/\\/givemoneycashapp\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e3cdc0018908ed692c9b091290875e8e80dfba91d5770344130bd9466cf35df9", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0895369a956300004d55666c4cf881206f1235010ac4e6602fe23f3cc0852ca7", + "regex": "(?i)^https?\\:\\/\\/zxzxzzx6w6q\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5e1418f8ef7d3dacaa7098a9249406bbdfc8f9bd81b339084e1846265476d67f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfkylasckasmcamse\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "92d41a4b9e028f3473477f918e834d2a6c02f0bdc69f141466e2ba8e47747a7a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsfylackascmamseas\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "165b376011033459cea0a05243f5e4a1434cc9312f8f494e96434b6b5b73306b", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "aee4a346a13e0207b5121ce5cb62ea5e0f1e75956a0e158b3003a347ad0a6a1b", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6c0ea15e3c583ab1d53d3e11f689a6a40edc2b5640b2f359454b994d7c385e14", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahckasmeamse\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7a37c0edcd3f82928c8fc12ccac2aa2f6387f240e229c175d1b35f142271a929", + "regex": "." + }, + { + "hash": "d94a7ceedef77e212a6bcd87d435d11476496474dd83ddff00f4fc7f5180c7ad", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahckasmeamse\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6b0f84cce6ef9ad70abd71a6743d2f122629d9571993f283add7340782934d18", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8f88d0b7f726e363f0f068d8e36a72d3057c8ce5dc27574367f8cc35a3992f77", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtuasckamsekaesm\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4e2906f3ae24775753c76698fb8682677c1914b841e119fd952c291704b39623", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4f40a12da8fca807584e639e16744f5a75df986c8e552830f96bb2ea054d6ff1", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "338095a6339019aa240b16db98b34cbd382e4282119a1eee6528ff5466341551", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b509b4a1b8da9d97d84dd8a77c81b4c06b13c25a4a9bdff838a086dcecf85fb0", + "regex": "(?i)^https?\\:\\/\\/zxzxzzx6w6q\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "197d8141f9adea7dec8bc82035576549222755159424568a7af5847bdc6760d3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtylasckascmamse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5fa917dbe59627dbe85a20a8fd5f771df62b213380c4a9471f51f6a504b3790a", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "46731d2f44e069b2852ca3308b3fdf660e985c840da9600d81aa22184b581a12", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d2d1755e648687dd1916282c673ebe44b5e18717c543997cb7a65e7dcc0dc9c9", + "regex": "." + }, + { + "hash": "9019cdd52f7378feacc23bfb4b85e509bc51e2e672b68db9b146001cddc60ce3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyklcaskcmasme\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4198d878f90016c47782472c917ee999fdef935b4093370c6169ff1ffeb76922", + "regex": "(?i)^https?\\:\\/\\/extremebrasil\\-gta\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e266c6834c537ae1a0fac667033dbe28bb71bdebe76788c834ac34e94047170f", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7db22925da665ab94ebf243ae8d3c7aeb857ea9df7503abbd7e0fef7e9bc0047", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e5325aa1abfdb52d81e134f07ec764bc437a1d242b96d17de1b35b4dc9f11511", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "065583fedf0bf2c8a1c8d2b9c4564952559834e2a751bc3e408837ebce9a1c1d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dbbe390283952df44c988ae526ec7aae23b6d6abcfe12b2487fee40c0ae86175", + "regex": "(?i)^https?\\:\\/\\/securelasopa965\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9376c57bdca396a929aba650465ab31cde85d0e3fd06cc1dd92c0a53759971b6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuyakcmasckamse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e086f564f6b252dfc1fcb3407d7235dd71e6837510e656c7cb8f71e6f4f4f193", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3c9a2adbf35419f21d96224719b300135316a105464734fef4dd824e7d84dce0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfkylasckasmcamse\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "52768def54f1d2cc6c59356f522318281f07d6cc0c21e39ea707904b5bc37bca", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "09a484d2e6542fd1e32b03265c95677b561360616538b93b8911306b5e745927", + "regex": "." + }, + { + "hash": "8aff5f61df218973a816007f9e374e251634907e88c14de52a852457b773fab4", + "regex": "(?i)^https?\\:\\/\\/vzvzviuqei\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5b323b4cbab1622db32296a4e59d45754314b8dab340e1b500e9bb7a07d18783", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0fae230b636ab03e3b2d63e37f117e3c841665edb735421aeee9b020990b9d7b", + "regex": "." + }, + { + "hash": "81d4d48ead97e7ca3d4be610b75b3400a2b207ddae4bccf5abde10c31e3b193d", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "882be6263c596356b3d8c92ab67174e84868dab750c873a4d6d08f2d1b98a708", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtufahscaksemames\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "eebbbd98d6a4b609d4fd499769279588e44efaa29734a1d06d2aa372042b78d7", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothingggg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9836dd6a3dc54373cfd7d0c11d03e7bbc2eec728de17b7fa2d4330a9757acc11", + "regex": "(?i)^https?\\:\\/\\/extremebrasil\\-gta\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e9b1e00e57865f56c0bdc41a3faa8788ceeb8b2087a1e4d785fb691692a2d724", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuyakcmasckamse\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "94eb71e05430e504fcc1557b381d31c8c336e5d65205d3aa0ca16031aee9b5ee", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "44eddb97639c4965a6a9dbefbac91693ae48256880c16bbdea86fbefc176387a", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ac2e967f2dedbec120588817a81f729f780d126e84926b2b66da35554ce77a2d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtylasckascmamse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "73a651375d96937280c362fad3c7ec5fdd10c4dcbca739a390fbbbaf82f31168", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0d26988a0678f329f2f94f9d93c07084d75da9aa17e32a49e8653d315662783c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f1db7fec2699cdb31887251451693b1eccfd943326e5547bba5dace51e42236f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4429e72da6389d83fe87567f9eca504a1019c536a2ecf0adaf37f131a1f26649", + "regex": "(?i)^https?\\:\\/\\/networkslinoa157\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ef97c7f9558474ccaecf423779bb0041d0956f33a75477932ec098aeeaec0b35", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b0f7b99efc29d2e4db8687b0a3258d3b5387e8358c1d426d5062fe76be50d7d9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f9548b7ea8ac3aea25a7aac75706cf66f12bab385f8adfc89543653f7efa3a12", + "regex": "(?i)^https?\\:\\/\\/home\\-106227\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "abb7f7ae7982f81fe99d717b0bce85a9d5ad8e9e6a53b4d3de4dd6d2f1e6bb1e", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7bd94826bc4208d0e669cfb72ba6ccadffbe6e71512c36f5a6c49037ee7afb0e", + "regex": "(?i)^https?\\:\\/\\/putain\\-xx\\-streaming\\-gratuit\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5f193409489244a366576516abb1482c8be40dca3d491f237370add15660dd5b", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "377ea1eb59c37e5a22e006ab664f9fad11bc19b46f438622e031e7d8bf1b74c7", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9f041acd485cdb9856f070a5e2362e223f021f419c6db7f082b330006d76810d", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothingggg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "40af1853b0537e3b189ff2db4aefb937434f90dc1c68dfcf7328e61186d62453", + "regex": "(?i)^https?\\:\\/\\/ocpaseobksdujasckasmease\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dc3bc4d29de4c689fd2af9d1bf58f8921ba993c50557a34556c2ce1b73d694c3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtylasckascmamse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "71021b20d0e8abe828da952653e088eb4016e4f00d86c2d1b064ae3a500348db", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsfylackascmamseas\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "98841f1a2232afd5d4e352e5c7d188cc3068e2285aa125925d264d4d463958a1", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "df3a1f7799057734677b4f28ab6b84e7628bc1609960dc51b3840a2668702d72", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuackaslcaksem\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "28e763643a2e6ada38c573807a79b322b4f4073131b5fe2678da134d02166a50", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "171cb5f3b067e066fdc7343599fa32d833b0a52d49071277ac9af7498a40890b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuyakcmasckamse\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1f8af6b0b019803b996b5c8857fb6dc808001087c9ea7d34dc9c50dbd248604c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuackaslcaksem\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "64f206f78a107e2e385ae13c17fac7156fd6c7338a2b418a6b05c6370cc0feea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "d575190d067e1bbf0c6dbb67fb0c0f35333b0d5ad5be42fe59c259b5b285b8bf", + "regex": "(?i)^https?\\:\\/\\/cashappgiveway01\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1d20a1912f1479619cf5f80a873aecb5f936cdab5e56e15f8640756995b932f2", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d16d08d3ddd4483e33dac2215613d89cebf1307c8bcf59fa83c9ef8daa17ea90", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a996fdacbf560517952008e94ff1a91414238661e496d4de7eff65a2749decbb", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9a424fbd60c1b67c3323bd177b9b9d99deeb75957191b40c3a43890d25d26055", + "regex": "." + }, + { + "hash": "3f59c0d194127dd094cc5606f9d3db15db27a02d94ad1bd60bcc1f0a63c98fcc", + "regex": "." + }, + { + "hash": "6c55890b977f62bab406766c2d0527c85ab192d992fa082c13beceb0fee974ce", + "regex": "(?i)^https?\\:\\/\\/putain\\-xx\\-streaming\\-gratuit\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "763bce1ec0adfcdb6a0f51e66550682b2b6a0e2aa3dbb936cbcd7a48ddd3bd1d", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "95d8f750411cdc3e43da228c62c05c6512a06a4d33f7ccce1929807f58c685ae", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfkymackasmem\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c4f2163f9f72bed955cef0fd3a7d352c74dd6aef2c374ed4623534ce8b780f19", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "75477955892c8ff7dbc5070ea335c07f99149a359ef87eb4892c89ef3610b247", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9bb8e18f5c5c7c69bd34e072a9a276a9cbcce866209978bebd16e06af53ee55f", + "regex": "." + }, + { + "hash": "e988853d430c5109f223e838a311700f15ae21cc338d05ede932f87cac3c3410", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyklcaskcmasme\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ba5fb2811894fa8f5a618a7aaa08501cf9eec1424d38474eca7b438c43bf7daa", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothingggg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "50abecae64668e47895f4e8a17f295d83e749c38df35c6958aa7a85b9f0c8585", + "regex": "(?i)^https?\\:\\/\\/ahmad\\-support\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "36e70c1e9f272e7ae18221960b17a52d7f1de540fdcd6577b3efcfc8fb54934d", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5b86f94207166678c9bc46230b19dca8694a2185481f0841bb49b46c9d58e4f7", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5d3bea76353245276102f965b9d35d4a9346896fb855f0e46c04b7b06dbe0353", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtylasckascmamse\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a99dfbff53ebd2531ebbfae5fff274d5d91885501686785bbb6ebe8e66a150d2", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b13b2f354295f80feba99b9cd01efcc2ca23d03e952afaa320ad846f151015d3", + "regex": "." + }, + { + "hash": "6dda5a0a73c9331f440b5a4da3ef8638d292fe484ad767a6e707aa8b8b6f413f", + "regex": "(?i)^https?\\:\\/\\/zxcwxc6s2zczxcxaedzxcf\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fc4e3a8129a1f5cca9b9850731158744ef2fde1710df900223edad443dfbc27", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0f95b2f968b0b415e58dac0a21335492275433dfc96571927940577c9b24b440", + "regex": "(?i)^https?\\:\\/\\/cpaseoalksdtmaksckaseasme\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c26bfa52470d133c0444a4ad1c1f98e242b855d6d5968ed706abeb0e552634e1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rkldoldanv\\.com\\%E2\\%88\\%95anmtvfv\\%E2\\%88\\%95xgwbceot\\%E2\\%88\\%95nyyrcr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gqczg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bcd38b29d4aeb8770689a96fb3eb8032b9a38b21752cfce47bbd2282734239cb", + "regex": "(?i)^https?\\:\\/\\/ocpaseobksdujasckasmease\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fe35b0e6d15d529cdf6de85db4290dc86db0b38f3f77c068e7c7ef1f685ffae1", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a0930aa4d6f8c29a2eae885e1536b2622d0fb318d4127eb918c2fcc00d0f012c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuackaslcaksem\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "57c3d2c412adbd7f7fd7fdb11862a057ca01ed1853b355e66c20748e26923e4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9963[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a4fbbc89907884a890d2a5797e15d5207aff5fbfaac2a088b6d044ff3e87aab6", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4c03263aed1bfc95c8d20d292315ed552426d13ffddd48b7a20c909d50d2578c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c015f1a437d3dfb35af9b9a11c7e576e14a7f15c2c30a026e6540923f812ba66", + "regex": "." + }, + { + "hash": "c1c0399be60e9b9e95337b8357ebfd55e10e41d2fc6f397c23eac11c545edf36", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "553607772bcefd09fae17b5493f60ba325e1a701e72ba24bae4a17e0db0b62aa", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "597b0912e7d5146aacdf8c0f247304a8b0f12ce4bff46bf4938b3b21b7fb18d2", + "regex": "(?i)^https?\\:\\/\\/comodroparocabelonorobloxquandoestouj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d085627870fcf1a93d40a4a52d95c4e02517fe486c338664491d9fcb20fe6b63", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b9c8d3301018a2f786b2b98371ef98ed2de55a811d35ca30c8ab94d42af46bec", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "10fc9529ff2ea8008a2d1edb5577fb7b7b3da1ba385df94b4ee6f97d0f1400c8", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e6e55c506af6f0d063b90a7920e6ac3a62d2aff3c14971e73f868ce6863300ca", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "729d71e186700401193510c6f23ce9b1c9dece71f79c08ad4e8a19fea33cea82", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfkylasckasmcamse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fccb6359159977e01a2453a8cf44e8ae864424f1feaff028327ed46b4f507117", + "regex": "(?i)^https?\\:\\/\\/extremebrasil\\-gta\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "83918a5ebc8e92cbbfc60fe15c967828bec2a957646b8aa6a9970430172630a2", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3bf0af4233959324222961eb9b3853d29bbd76c53fb9cfc9a46cc2fcfd4112c4", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyklcaskcmasme\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ff17dc06d07bb8c28c9e429892566fc00fabce2c2d60a859f799ece690b8d088", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c2b5d5e25616d4e3f0aa5376f6976251520d89db3cfdf1ab2c510a1a77187db8", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4ca1811f11d78fa199c9906ec7f0304ba67759f99eece4a86dda2e7b87f60aba", + "regex": "(?i)^https?\\:\\/\\/asgyuinnbfrceccyvmjnbfvcresazdfdcf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8193e98e11658aafd3b7fe6f68ed715cfbc309965cf866fa68134fc2a97c5608", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuyakcmasckamse\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "addc0a05040ccfd457c3ae0d68d21aef955443956ffa2c90b7b8485ccb47ac58", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "78afcce85432e7b331d5742575531541b4283fd007a69deb52beee3fd05aece7", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "70f3c69843c81d39ad7f23953b60068a4124e22d442bb215a96a955124d32cda", + "regex": "(?i)^https?\\:\\/\\/currently\\-mail\\-update\\-108310\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7c60bda7038e0cedbae170cee786b906351dd7904fa3aa5d968063005ffc048f", + "regex": "." + }, + { + "hash": "7be61b3c6aa9a436051dfd9d9c76336bcdb6fea72456259340b677518b2ea7c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "6eae78a5cc119a8153912ba7c0a177c304ee07334d7c7bb102043768f58b8dbf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "18f118074a75e35e116d09cfc53f4b578bcacf2dabefaf9cbbb42d02e3643399", + "regex": "(?i)^https?\\:\\/\\/ahmad\\-support\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "950c4a7ea845560bf28b6626651b0a8aec4a734354b78aed0c0df97798661cc8", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "749ac2823fbefb0f8bb36ed005484d27021c2269e6ec1b17ba63d10d6a950c16", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7eb4fc11a84aa40d6e812d930638396ea51e752d33d6baaf903338f3f63b3db3", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xxx\\-streaming\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "591daec2f4143053315796107d1fe3c7412a0fc398ca83c17998e87630e3605a", + "regex": "(?i)^https?\\:\\/\\/ocpaseobksdujasckasmease\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7d1fafad74dfb7764d09cb93ca60eb6bbc4776a0863e1ac2329f295f8a1d3c9d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtuasckamsekaesm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "71ed0083304a536a2266b20eee9f6330d9a9b3208ff7ca8057a67aec834955f0", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "61a4de84a4e7fd84a5d6a84bb12c5ae7682be11e1e9edb18aad9e43338c46b84", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "230ff0859fb39f234d12bacbed649c4f9afbaecc4650491dddce686eddea730b", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "003df21bd05e5c102daed8367356d6abfcca710a683699a2eeb4859b8a633b92", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "38c8a1f0f6beeaa6023ebd0fbdd4f28aee55d1055942f3bf083d0217a89a6803", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8b4dc95f51a9a1e29e029e12e5881bc3177a56563a7432672b73a041761573a1", + "regex": "." + }, + { + "hash": "5829d1c946c479ee8996241c5c045133a952bf0f6eeeacd41213cc0e2cc985ee", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8d233a4981168ec698f1247a0000aa5919d7430c51aea507a483c985a339ceb0", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xxx\\-streaming\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fd747f3596482e7cacc0f554d0d09d075b52d2e6256b83a276617a962f4ab81b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsfylackascmamseas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d624d4def415c729fef679ef63a992c0fc8a5242639a6ad484b25eccd186cd1b", + "regex": "." + }, + { + "hash": "5fbd3ec99a336543a3403fe06e54895128e1587b41a07cd4a772fbc0f67fffdf", + "regex": "(?i)^https?\\:\\/\\/givemoneycashapp\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f4d83a4e5a836d437394be385295c1b47b643cc443721b6024483461329c7acc", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e65c197db6eb4bb9c6fa66abfd08e24f0c31bceabbeeeb6a59197269173cc467", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f0d4ce83bb27bf92ef80d4c6e3a6bf0ef5e091e47df5b287a133246fa70e4d3c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahckasmeamse\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4cb9e7583148d587f0761838c0a75bcbc8ef1a90ac64b22a1aca6273b889ad0a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "55a387c2b987c853fb4dbe14b228429ca1a411e55e44341acb8012e738cf3861", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "085bd07e7dc6620bcc0d170a82883696c2afc7140e92ff9506a23320856d2b6a", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e91438a8d088b8a185f19d9b4a5169ca8b1146ee5530f0c028fab4cd151ba890", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c955b58177abb4bb1e9623cd3e8b1f4bc74702670cd2c99c84a7421346be10f9", + "regex": "(?i)^https?\\:\\/\\/instagramhelpaccount2024\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1839df6c8ac86b3353cefbf72db4505d1f92d2e1032b1bd1e97a9d925b6043e1", + "regex": "." + }, + { + "hash": "cda30c010cc1d2609f89a21d96bac4b1d73329496b026f0ce1fbed60ebcf3202", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xxx\\-streaming\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8c2b3080792a58d3d5bc214464449127e86867c634a52c414d33671273b8d6f3", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xxx\\-streaming\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ba843aa5600dd1bb6663ce54ea96c19580b1b0475de8aacb013f9d29163ede6d", + "regex": "(?i)^https?\\:\\/\\/pcaoslerakvmsdtuakcmasckasmeas\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bb5f0e2a2afbd4e291b29c6cb70c3965788a1f913ffd175ccad3d9f61c25e0d9", + "regex": "." + }, + { + "hash": "c60a63aedabc47bf8e8bf0ce2c82181a767925aaf70c63b5f88c50b5cc110c21", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothingggg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "328ef4a1bd6b20feabdbb69cec83495ddba46c4285e89125d29374c0b6e78977", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtufahscaksemames\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "25cc555dfd58ccabea2256ab264bf943fb4c66ad286f57287940e492e672d8a0", + "regex": "(?i)^https?\\:\\/\\/pcaoslerakvmsdtuakcmasckasmeas\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f227a9fb766d3b19fc66e28da0de1b7db37ea63caf815cd190ec6ee3e488273f", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fe39c91aab0141b580a1abe7cb62295a0d306f36e69dcdaeebd4a97840b2b0d9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtufahscaksemames\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "58261bb0c8dca4ee5948cca0c62a1f774ad860e8d48dec5b90db6925abd625d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6422b89a5035859ed8dfc61397067ef86bebe550ca12539e00cff37c51e53b57", + "regex": "(?i)^https?\\:\\/\\/1oglnsesslonuptemesenmanged\\.50\\-6\\-196\\-67\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "43284f4a12ea564fe28c8b1f16a206fbbe551f55293c1f6274ed804983c58534", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7170fa89d55d7b9d454492906611138fc0b1f4776051343f608002dd5e7f623d", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b860815ccd6cd84d7ef8a9accf64165bc5499b6f49a6b6dcf0061df3186f5c62", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "71ab6d6c672ee318e39821ac7151ed0cd4700768c8e8e2d38e6b9e71f3b1d1e8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "23603e7891133c133c8e16a52b5df336a6e52dd602bbf866125d31eeabd75c80", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtuasckamsekaesm\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4fca14a40fc0129d30b6f36ed18ff7e7ebab1358236f1e4db433af19b5d38062", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5adeffaddce7b4d5b13c7563872007c8ba0038d79a6bac55e8c4f4c1da9f619c", + "regex": "(?i)^https?\\:\\/\\/cpaseoalksdtmaksckaseasme\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cb95e81e8bbb56289e8030987c5ba5ff4fa198e87954fbe566f892e1e861ce3f", + "regex": "(?i)^https?\\:\\/\\/ahmad\\-support\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0517cd63c18ebf783df30bb9860eb4abc3c5a2c682cde332ebdd7236caa46c73", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a89a529bbe0e436b5881ca73f4d6dece23a6eafdf46e235a450907da29e47482", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e7ab9dbb43dde8273f86f2eff758373ad7c1212f2c26d688d3a15f2ff2a6e458", + "regex": "(?i)^https?\\:\\/\\/cashappgiveway01\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4cad7fa2bcfad92c6f7dc6dc0104ba33f53391c0e64d0a9e445624c9b76368c1", + "regex": "(?i)^https?\\:\\/\\/cpaseoalksdtmaksckaseasme\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "50ab6f0d2f2d89ab288a46dcab48571a8c08a6f76fc2aa6393d34ea8d696a5f5", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0d5b02c7d31fbd540ea9aeff1329ecae7ad9d222e653ce769dbd1ba3e25cd525", + "regex": "(?i)^https?\\:\\/\\/pcaoslerakvmsdtuakcmasckasmeas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "87e1a3c166926e3be89a9932a9631cc26a024386ef4c592b166ef67c4b39b4ca", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5173b8d28c20b350235a4598871283bd42bc18755564d3f6114ced83f6c4023b", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "845fdc09a1d9819f8b3bbf37d307df04510043e6732fd88a0ce0693b7dd0babb", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2f19d4f223599e67fcc8d0c8be147823d950c3a31343cbdfa50585a7128c9136", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyklcaskcmasme\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8ae2fd9d2ee977458c21a1d4cd603a862dfdd3a88c903e4fada2ea23cc4d6975", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsfylackascmamseas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0a92de79270ac3481ecaf48c58140f98fa9c7ee38961eca888b50a481bb3bf2e", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "46d0838475b097342eda01142298c60d77d524b2dedbe905917c69cd56b922d5", + "regex": "(?i)^https?\\:\\/\\/zxzxzzx6w6q\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "61ea7de2e41fa62fb1e8ec47b9df3b8d93b6c821590595f9e0c02a7bc384127b", + "regex": "(?i)^https?\\:\\/\\/cpaseoalksdtmaksckaseasme\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "eda50557aab47b0b0746547bd61e8db4edcfa5c6b20f86f2dd7c741cb4ec2253", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "36184219e589f2567cea821424243fad4be5cfafcc82ff99751c9055acadc4cd", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3f80ad4affd4a5d1674ab8c7cf47a5fb7f89554c90a6733e4231edd77d6e073a", + "regex": "." + }, + { + "hash": "8afa8f6d5e7745eb29d1e358006ba964d9a3f3e9a1fb165d41786b2cd0eaf659", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3e31a56583f5bbd59031e8ffe77ceb57c8c17a582dcb65fce2ce6b796ec9292c", + "regex": "(?i)^https?\\:\\/\\/rblxclaimgift\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "184a8ccdff288fe41996d01cd097c7c4f9bf5dc26a84933c5b5996e93c6f548e", + "regex": "(?i)^https?\\:\\/\\/givemoneycashapp\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7d2baa3d33fe4a8d79d3d981be52d6c1342952f9214c8e11a643da628c7849a1", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a8ef49afbbdb82674bcc4cbe47fdac806fb2e5c837490580de2478240e5077c7", + "regex": "(?i)^https?\\:\\/\\/asgyuinnbfrceccyvmjnbfvcresazdfdcf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a24225aa95a64433da1f19b1016dee013518e025b084f5b91759264b87611fcb", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "546d83c2a0e717be2386e3ac2f8323acc40dbd1602ae9a17df46f783c5a0e9ea", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtufahscaksemames\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f897a22bf542e5f803ddc7b762deb9d20e127331f840bca0effef0540db298c5", + "regex": "(?i)^https?\\:\\/\\/instagramhelpaccount2024\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "19e40a7639bc0947a99b7e0382802a8d7907a316bbe46769eb828272faba08bf", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d508628ba6f7a9c244b46ff5db23e01e65b5cc59b79ea4252df19dea5fda54bf", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "eb75e7ade6309473e69ccfbc589810fa46b48bd80e6266070e855596ecf5ac06", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f9a35d562f630f0e266f5fa8c7c2c0de39b5344b0f55a31b19b7af8b13b7a1bd", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ea3b4dc152f373c9c574f3b1d6d22fdd4dee4ecf49a36ec74c45b5e3c0c0c82d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fb0214a3cab8183949508908f0e2484060bf452b30955c94109cf44456d67e7c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtufahscaksemames\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cc5ccabc726b0052418392226417859dc57f6f58b4165e7e4c4a1dd9503204e6", + "regex": "(?i)^https?\\:\\/\\/ocpaseobksdujasckasmease\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9fbc7f170c6fecf7de5eeb161a9a0f66aeff7eff1927297827f664263f5dd455", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtuasckamsekaesm\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3fc07973e2e20f53c10e83842a9a0766c3e2e4cf244b480873d78716d3d6e361", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtuasckamsekaesm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ccd8dbed518915f6c0d1f3bf6f049908c8adc54a55265d4966345687675082d1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsfylackascmamseas\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4d51cb0e698bf10269d727da2ca2e34d177993d4e3b5ee78d9c3fc8cc87c4dfb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "648c4e50a2a2a7af3b4438b20372b86f2d37e59956606def8f0ffc05c684c8b3", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0f779a01d91e3856d1a087b8b8b496311ded57b0d9f3dfca10be0842ee83b263", + "regex": "." + }, + { + "hash": "3d2c7d1dc02a814640527d99c5676450ef9266cff89a8390837b38af2c8b0fb9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuackaslcaksem\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a9db5b13b770c6f77550003148ca306681e43ddf28f65e05d33a75c5c19a17d7", + "regex": "." + }, + { + "hash": "fb5cfdfe66cb42d484250d5d82d0226b8861bc3603dcf09518f95c418bf0cb04", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a710a1cd92f32e0800d58b6b303df5e03e6a8041f1b3c50a38c2e6f62a2f21cf", + "regex": "(?i)^https?\\:\\/\\/reb\\.txx\\.gv\\.vp325\\.ayutec\\.ir(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "5860e9b7198aa9f3fdc23d854897b11572a647e5069c1ad21bbbf9e8e245677b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=82526X1534134\\&xs\\=1\\&url\\=https\\:[\\/\\\\]+evafestival\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+includes[\\/\\\\]+docubigpond\\.php\\?q\\=jdemalo\\@msm\\.com$" + }, + { + "hash": "cabda2d27cd3e094d2b769ae47f627b0e5e1e045f2e2a5227c0ad5bedf596b01", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "43fb9cba9e1806547e3270bf593f060338ab936e1367b521b9eacc8326ac000f", + "regex": "(?i)^https?\\:\\/\\/extremebrasil\\-gta\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f205a6e9987999aef5e1bb6159bed8f8d4290745b205a1309c0f914cdc7cbe9b", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "015fdedae6c6397f1a7dc4a419c2a9f17b8d140b5a01435f18fc2cce3b825735", + "regex": "(?i)^https?\\:\\/\\/628539\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "61574b91af15a27e3c1d0e657f81bd7864a6218225b10476598b4695abc1f4c1", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7f0531b80ae9cfc059c555780163a1e583f7b4a29b2d2806ba3031b443931822", + "regex": "(?i)^https?\\:\\/\\/zxzxzzx6w6q\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "945863e4c649b910310166e70ded2f8dfe9e5350dcb5df329e1b81bf8bd74ed5", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d16c8d2913367ceefe74f78b945bac79be3e65eeb074f36525a251eb6b0cbcf4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4ea2e0a00dfbb162e28579c51f0f19101653fed13fb06819d5bdaad0417b65de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "3c05bb7efe9ab39c286b178dabe9b5f94ff7d25bed4815cc1ed6df72db1a0214", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "66d2fe23cdf00877c908c48639223f63f4057bf39d2f464bf5902524e823a9f7", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9f3184bc3de66025e422ee45d435f63eaa2820457fdf86e4874a63888a424469", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahckasmeamse\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "63ec2cc965967c3272b4382a0ec7c67fb38eabfbbe490628992b0536012ee339", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtufahscaksemames\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "cbd3ab6ef478b5ee911e524b052d0298f642a72e3769d6505b83b2bb13c99978", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "27deac33952edad398ae2976da4ee3098944c16fe56c154ab5f5d46c8a301920", + "regex": "." + }, + { + "hash": "065eaeff91ae4761e131529b69a27bd55ed1ce643d8dabe7a1340dd080f67d26", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8cc10cbb1fc61f9e635fa9d577493d9fd0f34f49e7f3c6e454d2f7d85353bb94", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5159139f1bf01c91a62b9fcb7af61b9a8054f6eeabfd711436a1fbcdc70a01ac", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1be642519f8ece975fc5e1324bf5a8206d386e01e5a19e95fc11420f62e3e74a", + "regex": "." + }, + { + "hash": "d650b3d2dc3781ea085a623a007d5bb120190c95f3d8ca8a746017b749df4a31", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuackaslcaksem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a11f52e667f5f3062c2504eb73d0291a37bcd008053d5321acc98a04d1748c6b", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "250a3dac8a05fba1c26659d66b4ac103b0787e0a98081da864f1c227b59ceeb4", + "regex": "(?i)^https?\\:\\/\\/instagramhelpaccount2024\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "afba1750e8058394283eecf7c6031d10c5528ca6497099b26c99280623a47ce1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "727112d7838e0fc8eb9735417410dd36b13e3af373136f16481a8e1b91ae52cc", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuasckasmcaksem\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3791a80c891b38aaa36c6a7d3ba0ae8f7d5f8122ad02b6be82e17af18c5bc9ae", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6549d980b4a5c6a839e4c2e0926cddab3d8022b2331236133b21161ec551bc1b", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ed425fbf7aea78938fb10180bca57414c9591bb8230de08fd8a5055871e0e9a0", + "regex": "(?i)^https?\\:\\/\\/vzvzviuqei\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2cba1e71f2de00c65766d230cbdebd5a7b672e36ab6e3708c274bdfdf3107595", + "regex": "(?i)^https?\\:\\/\\/rblxclaimgift\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f7f99f7130aa636e75994f3995fed1066834af25a1e711a447955a31f5372690", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ca2155aa7b0d11c55704ca552ee9ca3b74bc371407c78746a34102183f5b9f27", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "05e82da7de19e4f103442461c578c6a70e26ecc6a6196c288839fccbcb45aca6", + "regex": "(?i)^https?\\:\\/\\/ocpaseobksdujasckasmease\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "72bc7399a90a4e1afb69b51ccceb7bfce63453eeec7df33580b4bc3ea37c337a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "59b7dd69db4580d3cb402e44cfc03c8fdfc33364d0db44e88729a8f2e90b6fcb", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6eba4b541bb63fd5fd2c7909cab37a5b1e45aa9a7e7757441a3e31af945343c8", + "regex": "(?i)^https?\\:\\/\\/extremebrasil\\-gta\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0c32ce0f3f9805afa94962f5e0dd42015eca58ce28a6274634b8012b2e4748c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "b5e6cb653f05a76ef5e9c812db0c0705cab00ec60c9f08b467096cf19f7e9f40", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4faf7c9f260abea939657413258f110ba5096b076576590983a960112497e9f9", + "regex": "(?i)^https?\\:\\/\\/att\\-102882\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "db737a218f769853557a86d28b84a2d5ae77630399fb32c4d2907d161871597d", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e55817e1cd98e4c3df7f8762761878e5992eec7e9f8cc36141c8f7cc2ca7299a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfkylasckasmcamse\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ce9385d539bcb2146597c828d29e4e522895534106955dc0437528b205cc10a5", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "807af77b57e8fd43a3a49abe8bfa01974a24cba8bade37b05f089d21999230fc", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothingggg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "248c411ebe14c033dadf9ba6f501d22e968d2028e72f4859078d40ad00e55870", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6819d5d2e954fdaf8f98b42c63c6a691db9fefe1b6c216194d662daa9c128b75", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5e11c6b91a289cae8402d1ec0be422965a413cc4486da613da9d055dd3659f50", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahckasmeamse\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8f5513e5f06ff8567ee348c35059f61e6e87ea88c18be85d9392d686e42612a0", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "55362501e03728c15c8fd80be68ca3315adb29267eb3c4817cda20fb8f85e10a", + "regex": "." + }, + { + "hash": "5dd2edf4618addbe5402f8f05f86b333f9850675d45d53dce26baca085b4b4a2", + "regex": "." + }, + { + "hash": "2f4bb8d440ddba07e81d458e61ed02fa69c5bd169331d9a0ec74ee027e8be2ce", + "regex": "(?i)^https?\\:\\/\\/vzvzviuqei\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f66eed3fd7d3c5d9189fbf4638801197f6752b97c9fc402f8b60512d8c705cd2", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b8391d068e51e839c5dd97f4205a2f0df0930f404574141bda5ec9978e00c308", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfkylasckasmcamse\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7e2a4777fc5308a269942963f468ef1af05ff0a9fa11df31464ad78e09c524ab", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xxx\\-streaming\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f750b1869e17adece102d3f5d9894cf768190c0572fd4742bedb46a18839ecdc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfkylasckasmcamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4a4e3985eff09e643115173217ff7ef40791a3a065abdea386f5085972707aab", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuyakcmasckamse\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ae99da38ce4e0e37b25bfad7b47e3888385e6a6349dcd77d31644c9377961b86", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5e1b17510828f9e1fa3944b780e364a953d54b818ff91b82372c8816ea0085c6", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ef994da63d93026f2a06dc3c6e19a90d75186e8a3da9dea28c435743c1e0232", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "30eaab5e9d1c9dccde403f4d46f1d719d889b023bfbf112023e270f2cfc172f6", + "regex": "(?i)^https?\\:\\/\\/asgyuinnbfrceccyvmjnbfvcresazdfdcf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "01fdec3b14dafb2bfc32f52d31ab4e0c054c4bb8c662d1abc33e11630e126068", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "541fba04bd82ce05f00f8920f82babcb8b8ca7edfca41e9051ea105fb8bec511", + "regex": "(?i)^https?\\:\\/\\/vzvzviuqei\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "41a633bf0b716b77e64aa4d9d5849546166966950da75b4ad06663728c068126", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "451a22edbe1075f09bc3b16d9c69085962e68897ee6009a4c5ba5414c6c6e16f", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "47c08bcd12475070cd775c30dec4aac4dd7c28761bae71d0ac42db2dbb32718e", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2a48b5ee29df59649ec86e5543a6028138a08c198a1b1c49c8b9a6165abda10c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2413327bcedac64f0af1634716f97857910835886440b0fc0fe5dc7432973c68", + "regex": "(?i)^https?\\:\\/\\/vzvzviuqei\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7427b9686e13834a85280f783d0dc3ebe582ceb1042644f3b4ef13162753de95", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "64d8edd5ecdc94ac72537cfe9f0a1eee7b101c5c4b2233fb47fc924043225bc9", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdkfylasckascmamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2bd0071d49b58d4928e969ffa8849b243409e5d603de12ca80598e6fd7f90ef3", + "regex": "(?i)^https?\\:\\/\\/ocpaseobksdujasckasmease\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c382d31dbc201bd88b4293cfa522527c92da205127d9afcefc2af4bc52417238", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakcmakcamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "73086cfa016628cbfdd80efda8bc4aefef90f458d5cbdde8f508895c41d5df6e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahckasmeamse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c83d80ab19a2ea15cd399741b4be305f4aa304922012d327f1d51f144b90e4ef", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d8aed14fa82478dee3efa1f63c516bf71b0f6fce64fc636d19b5b38b65736331", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "715064b34ba258c3ba7a24d547bd729e63ccdb8656f478041cde1454d4165fee", + "regex": "(?i)^https?\\:\\/\\/ocpaseobksdujasckasmease\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d4e8be2e2f3386fbe6b412c687af6dff22659cce69ae6aa421a3c93cb1ffd056", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "832836b7746094b0a55333f85cb727fb44861979bdcd3b7a302f4e34bab94d04", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0463644baee97ae8f2a0d66470d152c247b2d2ad79ae81821652e2cb0d8a5e4b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtylasckascmamse\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "196286cbda8cceddde682f92840528de03384d7f85420d76c41fafbdae85fe4f", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothingggg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2f4e92391e6d566307e98622df3d999330bdd31aeb50dff1b4143fb28e3f5142", + "regex": "(?i)^https?\\:\\/\\/putain\\-xx\\-streaming\\-gratuit\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8bc7b69cd9703912ac62b0dd5fd04bd066f84c482b5a4bb17a85233e829f0d2a", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1d9075f468824194823d5bd737a1ea6ff4650d2621113c39cb4744ac258819e2", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ec2d4a5fafb3a5fdac1e1f89e8b58ed198d70a00699d7970d7ba5c20c5eb42e2", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "62b05c16e21d23f148a15e56b8398ce344ef44607e4d57e490522d1c1826494d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfkymackasmem\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2a783b6c9fa6ce01c5417f31132278f58371a0f11758bb522db7d47ebb377e91", + "regex": "(?i)^https?\\:\\/\\/ahmad\\-support\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3a288ba63a7ea3f9e18a6c44f6070b2d6fc0e8503f5d04314a1900288348a21e", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5a8ec35251c60fa6c1df8c2b26ac6327984aa937f27b7ba47e1008e4e52c1f0c", + "regex": "(?i)^https?\\:\\/\\/cashappgiveway01\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "184a82df1b5041bfeb5c16e7c650d0a5eccc0f232b10b3ecedd64321982306f3", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "37be105b1cf53026d1b5e081f8b77eb4e2e5b2ea1451e0ed272289a545330f28", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c5f0389fdbe27c7935ed4c7976868e2940da8cc2e209778b18e3cb7439feeb63", + "regex": "." + }, + { + "hash": "fa81c4f2eb9b2b386a66368fd2177c62923dfe49bb404d8914ae44b975a7fabd", + "regex": "(?i)^https?\\:\\/\\/www\\.binance\\.usverification\\.167\\-172\\-195\\-140\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6d83fe1e25ae9e7542cb6fbad33a30c2ef8e021a98a3e1b7824f588e20850ae8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtufahscaksemames\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "caaa1468d226a246429ff86809135f4181f6fd68817ad90874f951c3575ed4f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CreBDV\\.zip(?:\\?|$)" + }, + { + "hash": "ff80dd0518fdab4f8c1e9763ed9dfa66ce091a0c34ec6521b70af6c62ec5fd4d", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "827f552f7602896401d54d4ae6fd7d95cd663cebb985081d417cb1a021348095", + "regex": "." + }, + { + "hash": "3f55dfe10cd619699b22d9154d07cd46dfda4767444490dc98eb12383e5cb2f6", + "regex": "(?i)^https?\\:\\/\\/frostwashere\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "81b4d9620ebff16d5c76fbbf3d7ee5eb9686b467af9ed7a8f680d6015f3ce7ac", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6a72a52b6ea8ec3c8558518fa49c8d94e63aaa050c448d7a6c5ce400359018f8", + "regex": "." + }, + { + "hash": "1df7fc682b46a06a6ae686186079889f9d0ef6c8856e5a4c795c3f5a341e796b", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "80ba67b987a08e2d2610afa2d26cc8d49b3f17d355d858b33175a98dfeaa5ea4", + "regex": "(?i)^https?\\:\\/\\/instagramhelpaccount2024\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6920c62bfc2748a05d807dea4121166e68334909e1cfeed195565957c90e1330", + "regex": "." + }, + { + "hash": "86170b08a0e342badaf0f2b99ef980862238495224a3727aa99d5e1d54f9d2de", + "regex": "(?i)^https?\\:\\/\\/video\\-hdvip123\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "87d5968083a3e4a1fa32572208642c799343db225999e40c2e106c85b69d09d3", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cd5bbea8d3e7239108c13c362e756900d384e8cb83237deef51b281bd8c930f5", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e8e4ac448c92e660005c57e5ae8d3d27fd1ad072595a2f2971b67c3322fe9d73", + "regex": "(?i)^https?\\:\\/\\/ahmad\\-support\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hm1h14(?:\\?|$)" + }, + { + "hash": "72d7e8e6b3d7fa6ac0237250022334937ecc987ba00b1029127f2f714aeb31d6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8056cfeb3b86d9c0d57ee9c649696fbccd01ea15f415ba06a8369fb3affd7995", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1bd1227f98f5e1a158ddb78e1e6ce1b69f50b5580c98db5f17354a7e087eed67", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "27456900261a15784e7dd272fa68fe4ea59a4a320061ef5b73325218a17328d2", + "regex": "(?i)^https?\\:\\/\\/asgyuinnbfrceccyvmjnbfvcresazdfdcf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0ec12b68151be3a55e45c1f87858f3e0f475bf86a2a974aee87698b4c72f4e16", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bf8448ef3388217bfa7f53da3b82123786571e9df5d02e1e88f8f715d1ffff7c", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothingggg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "90cccfca541e9dd2782d7a345dbbbb9097fad0c1d4d7a26c01955caee800efdf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f72f79a3e4b9ec9a4688c753b8f37310fa8600a7f759bf851540da284fdd389f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "354b8f1b29eba25ba0580d3e9c1a20fb23d461c766b98a585b7c3321d4914831", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakcmakcamse\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "af50e12b4399ec53d88e655d7964e0b529f7d5e893cb0beba3fd6bf4e980cbee", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "212a3e245711a2a951277982536dd07806ce157be9003f3d88b2319fe3adfa71", + "regex": "(?i)^https?\\:\\/\\/putain\\-xx\\-streaming\\-gratuit\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9a2d7396a8289229da5a09ea7bdecee5a824f6c3a7b1dd5db3c174bc9f02ecec", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfkymackasmem\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2246f1902b1ce63ddb595ece0fe5afe8b69819eab0fbd911d8894b240f336df4", + "regex": "(?i)^https?\\:\\/\\/extremebrasil\\-gta\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ec2dce7f139a9d6c2b9c5bdbbc591219f00da9196fa5f6760a9450ff81eaecc6", + "regex": "(?i)^https?\\:\\/\\/cubedefenserobloxwiki\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "09bb9fdfe195d9935ae09a08799e5a085b8a4d742090d5552c33c3008fa75b34", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c1c422a3f92644993d7e6422cebdf30d912437fdb55454761e0f6f701e0b83da", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtuasckamsekaesm\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f954488df5cee1ca21b72c4920a7827b34c6a5b5e7c22e631326d248a5206dcc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahckasmeamse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "06a0cd307ca904cede1735d70c83dccd84046ad15a9a6fc1450025ffc9640093", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "845dda5eca116bdf12219eab508105dfeb74b1dd45fe3cca575ed4f84a7c47c7", + "regex": "(?i)^https?\\:\\/\\/zxcwxc6s2zczxcxaedzxcf\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "153c9b78df086d337e68664d0f0884199d14fe3fe664c54b298cc0648e87bd30", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3949fa8773ee6a86fa9b614e8ff810deb97ec500376167d2416dcd3883080971", + "regex": "(?i)^https?\\:\\/\\/test\\.n26\\.cm(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0a871511df3f8a035e4244f41721ebb1a685f850d79411a7fc7457aac2d82e4d", + "regex": "(?i)^https?\\:\\/\\/givemoneycashapp\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a7db99fcb6cd842c14f5782334f4e366d818c86edae66d21db03b23b0a1e5973", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "12cc6d6d8cc44b42e0aff7a2821aca75004ab5fb0b31c80517228dad452e8ae7", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{6}\\.pifro\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "b80f0f8d163fd47db0b7150db2d0d7db2803a9dfae9e6fb88a3db131ed761feb", + "regex": "(?i)^https?\\:\\/\\/ahmad\\-support\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "09bec774b69595aa219cae6addd46ff95536f9edfdbf051910e06bc781ae9f77", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "57c3d2c412adbd7f7fd7fdb11862a057ca01ed1853b355e66c20748e26923e4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9963[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "f8220497dfa656c37c695ca64650547c779ca78bf6d17897b25aeeb4b4b8fa7e", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f7e434caf65f24eb9680a0075340e7804c8f0312ad3628bc33e517eb6195ba24", + "regex": "(?i)^https?\\:\\/\\/zxzxzzx6w6q\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "22155deda450ae85520d2da95c77db5bd7d5a249bf9492177588d09308b7c772", + "regex": "(?i)^https?\\:\\/\\/uu1kefhf\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "19af73d3af8e5e6f14be3b5b6c77e94aaa047e4c56cb5ac43129e8dda47aa43f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6aa2a576506306d80b920ea6924d929447fe82d3508744b497123e0bf7e27c20", + "regex": "(?i)^https?\\:\\/\\/extremebrasil\\-gta\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cb514cee15838fc2cb4cd721bbf72063cbb181df7b09bcf97e73d10c2cfc3c2b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuyakcmasckamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c53ed5ae7c19b24d79238bd9e21217d32c4ecf12bc67ca95152ae667fec7471d", + "regex": "(?i)^https?\\:\\/\\/instagramhelpaccount2024\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cdbe8d4523cd81bde27246fd9f0b09a9844b7f798669e27345b332e9b38d0058", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyklcaskcmasme\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c7971078fc4da5e7161e2a1f32f684d5f39155e9db1121d50c11e21101a364fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=82526X1534134\\&xs\\=1\\&url\\=https\\:[\\/\\\\]+evafestival\\.com[\\/\\\\]+wp\\-admin[\\/\\\\]+includes[\\/\\\\]+docubigpond\\.php\\?q\\=jdemalo\\@msm\\.com$" + }, + { + "hash": "1384595e25b9a01231e216075755f106f3bbedcb8c079d78a2ecb39213205656", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gzQ\\%24XJsw\\%3DdtpCKqMKL_BTsQln\\%40v(?:\\?|$)" + }, + { + "hash": "2a41adc740f82ae25c5d87490751c46fb1b301428c9dfeb5d20fdb480006ff4a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "de8c6e3a6fc0b64282f5b2148ba4fdff0cc46cc9676f8dddb7ce574e97f66cb3", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f8952c4335b6a99acdadb97bf074d2fcc789a42bbc903d072f3e20303c3624d3", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d07e903c830fe88184be19afd70efbdcb512fba63bb03b3aac1766159a0e1cc2", + "regex": "(?i)^https?\\:\\/\\/putain\\-xx\\-streaming\\-gratuit\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "af54f530a6a00aecca13b00774f438df9e4ab5b9b8ae47e8f50dc98748ba1b41", + "regex": "(?i)^https?\\:\\/\\/att\\-104725\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "228133445e468ed5cb31b6506905a7accf88c86c0bc56a1a8aaf4e523f33985b", + "regex": "." + }, + { + "hash": "53b0107d4d16ff5292b93089eb5e32bcbc9d4e2bbd08bbb62409a32513e4a300", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vbbmpseo\\.com\\%E2\\%88\\%95jkqnjh\\%E2\\%88\\%95ecfpjpsy\\%E2\\%88\\%95mcbgymhdzj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gyirpnmhf\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3df50441d98182dd90b0cd4c3d7901c58e70ed1ad4f073e8c19eb18a459c662d", + "regex": "(?i)^https?\\:\\/\\/cashappgiveway01\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "113fbe02cca2fc286bf56af46e5dcaab80c4bf7a71b2f96393f423b68e51d156", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xxx\\-streaming\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "da13638e216b4006eae9f58d7ade6306c8f9c3dc14d450694a251cea69803cad", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e383917289c4307815f521c5c019eeb6b469fc496ea8cb076d816dc9c3772abd", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5a895856dde6d8c7d0edf728d9981bd8eec9b70aa1a184b788d02aa6a1a20833", + "regex": "(?i)^https?\\:\\/\\/vcbrfgw3er\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "166955c99412528e91047a7d717b21f541b1fabd6d8a6822fbbb6933e629eb47", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c133aab34d0c05716614949e6e47e1e6fe4af832aa735491e1bea42fa04e87cf", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8cbba53c69b1d69f3ad8cdf35f4a4516bf2cd2bbcb81c9d55a000e417a72d24e", + "regex": "(?i)^https?\\:\\/\\/ociasepakvskydmacuaslcaksem\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "19ee0c6e5d07f2e6968d616a31409b7510fd9f50ac1e8fdb3ef5d441c88ad618", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahckasmeamse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "20b6638f762f63b194dfaa020c09c1554f55b0971b66db33c71d7b6bc32aa27e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcvsmdtuasckamsekaesm\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a1bb1a10748fe258b465716396d9252a10f59ea0f9ee4e27dd25e4d7f44ae21a", + "regex": "(?i)^https?\\:\\/\\/putain\\-xx\\-streaming\\-gratuit\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "18a160d6fc575120eb8ace5f40fdfb0fc640ee574bf1427330adb07b43d4ebd3", + "regex": "(?i)^https?\\:\\/\\/vzvzviuqei\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c891cf7504350aa4497c687a1f8b58c7dcc28f3eb123e019c3efe0b94558944d", + "regex": "(?i)^https?\\:\\/\\/zxcwxc6s2zczxcxaedzxcf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bqj7gj(?:\\?|$)" + }, + { + "hash": "477c8e0fdac64b0c1f8497c26d7fe9284671e2e27a6244affb74b875afe8513f", + "regex": "(?i)^https?\\:\\/\\/instagramloginopen\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9ee2e9c3c9e8026f9a16509506581798fb3aa19d83e1aba2fd2ca06c6ab7fa73", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xxx\\-streaming\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "da1591baac7fc7d8d79c5babf4bdac3c2722099e06c9d4839bd9db0af2640f56", + "regex": "(?i)^https?\\:\\/\\/hahahaw9\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "68e70fe116b26bde1b966905a48359f4b7dc72fbc67d9091b4c6316110f8564a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "14fb3ac4a6694eb2e3ec4b64dd52bbbb7f8b4b407e429aad2c5881b41d032409", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f9aeb8468419013845f10d7b5997dd164171a2721888010325ef83f571a1a973", + "regex": "(?i)^https?\\:\\/\\/ocpaseobksdujasckasmease\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b14de8b498839486b10b52428d8d1f6e4703059708135ebb1885b83a9b31addf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakcmakcamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5c61eb05e0effde0e3af1e39c5f6ecac80c0c1b2688c9cef34e4d90a08371e42", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ceb23cee5b8d85d391ff3815276cb7b50cfdc8e7ec5546f3d2745fe97d8e2a6b", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothingggg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ccd5d60834e288e2079de9aea27069e29fe6c6096356ae9cad24ad05d7e3eb4d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakcmakcamse\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "dee2b0f231e8446c6f03ad5742005c8e37ee0b6df19ca923290737d85ee11254", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyklcaskcmasme\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0284a9a4f9694f37c389191f546ef239885ce36d6a358422ec5e90f92f14cd57", + "regex": "(?i)^https?\\:\\/\\/vzvzviuqei\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d70f65f37efc0e87880b50c7740a389f1a98736ee33b5a75d9b9689cb4bae2d7", + "regex": "." + }, + { + "hash": "989074a7ce8921e581fa204debf36044662a20cdfb0c5d1453abe45a3a1e2449", + "regex": "." + }, + { + "hash": "e3fabfd4acf2105ea929303bd1f576a9edb385b8f1a019606c6ee4d1afbf31d7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtkalcaksemames\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "380d60bbdce462c8a147c9780c0243c780c4b1ac7f67b863b70d14bf9df47513", + "regex": "(?i)^https?\\:\\/\\/zxzxzzx6w6q\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "13b7ed2a2444d5add37ec92f77d8edc7b1a666349954045828e57756354944fc", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xx\\-streaming\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "74d4adaaf32d1fb2c3eba47076a2637f367e09d2c2ffae53bf3fcc4b866ccb4c", + "regex": "." + }, + { + "hash": "50652083d835dc9af78e48d9e58ad4d9efb7857cfd5f5803b5204a24c5b672e7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdukascmacsmase\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "65acc8a9932b416b04e328742608b07f5f6f0fc9fc4c7e927de204582caa9317", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "61d81fff3d8d66e0d692197165fbebc269a9ff5b58870e0cb5967442e482c77f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtylasckascmamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6afadb9dd563bdb2b73b07fbd558577066ee486870650e07b920d07ac2c7a45b", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackasmemasea\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b1b2ef98a2df3be0c621883575dca2277fd5b6fdc8ad28bd9a72503daadd08ab", + "regex": "(?i)^https?\\:\\/\\/vzvzviuqei\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d713f60471cc2b4939b8b929edb9be4c6a7c0f59e9fd474fff45830ef0e77730", + "regex": "(?i)^https?\\:\\/\\/rblxclaimgift\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "710eb7ba6f47ce6c14ae279139ff5e7b97eba6dde6302fd268fca89df826174b", + "regex": "(?i)^https?\\:\\/\\/pute\\-x\\-streaming\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2301d15d07f2de66666c9edeab2f430cf1ed66035d5abe0e7153bf6a5c281736", + "regex": "(?i)^https?\\:\\/\\/pcaoslerakvmsdtuakcmasckasmeas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bc30f060cd538b6834bb29fe5cf71c36917aa674a39a6ec2648698c6983a3333", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\-gratuit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "354b2bf6223f33d761c79183c3676c53514a3c21da47c6259cda5f5f250cde0a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d0ccf5a1b9b5625b9fc7a43c68ebf268670aa90931da7ae9aac93082ad8ba0d1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakscmackasem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5fa97a3692c540a435569aa8f4f89d279d91d4088f8e19ccd486fa9ab0062f2c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftyaskcmaskemase\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8d85a3903e199dd41582150216a8c1280576394b923516dffb1eee496bc43457", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "2821484c735c59ce234ed0b8953122b4c0f8709524e20008f764603bd2b4526e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtufahscaksemames\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "659e33fa9141bac7cafc3cc4ecba5fe48b2b133a0489ac174d9a1db4eb9b6872", + "regex": "(?i)^https?\\:\\/\\/cpaseoalksdtmaksckaseasme\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2a48d3e9384c08ef6a55e28e6b93997f8cc26a4101de747ffb70f23b3967b48c", + "regex": "(?i)^https?\\:\\/\\/freechop6060\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0828fdbf66d0647755ed7625ec4a8c693f851fb6a51fd163f4b2dccbfa6f58d6", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b9e67f064a886d00b5cf027e78a1388087250ab1fe418a6ac276d849deb60ca8", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmskdtlaskcasmcmase\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "aea52c22e480e9ce53185f05b49a845576456a3b78050ecc6579e504ffd1e692", + "regex": "(?i)^https?\\:\\/\\/h2ourtimeprivatephotos\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "544ed9a6dfb5c4f0f8276ad4ba1acdd9054df3cc0cc8ec11b99f343378e41bda", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1384f7caec06fc8780f640e1b3a99b9e66835effb9e34eb499b8761ffd20c185", + "regex": "(?i)^https?\\:\\/\\/instagramhelpaccount2024\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6575a6a8f9769ec746f9cb05de3b3ece09006452adc1894f8ad5d63b56af36c5", + "regex": "(?i)^https?\\:\\/\\/karinaomgrobloxaccount\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6821503cdc470ae5dfbeab15958d0c6b77c54ba4bdbc16074ef1528246a21976", + "regex": "(?i)^https?\\:\\/\\/help\\-and\\-support\\-ong\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "314ada94a8b86c14c75415aa8a88161222c3b22bbe55bd0058b984c8b2c60121", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuackaslcaksem\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b0444d83d3e32c67febced9cc3081ad10f9aeec62cfc0c65ae3f333288926ed4", + "regex": "(?i)^https?\\:\\/\\/sfdsffgdfg5885\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "140ec6f110046802add5204e41022cd5b210ced8df8eceef4cd7cb65ce1e31eb", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "24653414df2341d7c554b72d2e0c572fc2cf65750bb6112a3b51868b4e4cd1cc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasme\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ba800021a700acc76c18d791643285e591f43e7751be21672122b8340fb5b12f", + "regex": "." + }, + { + "hash": "fcac3af6442f0679baef6709a6710ac5942f4244f47448212aa00b9fb695c3a4", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e1a70760cd099f07b064ba2ec37170fd1d6e65c8e75e5ab00c8efff018c5930a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdutakcmakcamse\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "426d83167f9cb56d69d5127ebb2131310c9dc6b8c418fe771414cb58b126a80d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfkymackasmem\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "92abb1bf258300d6d4223cda3785a71e203f977372bed523dab0e68c7668d276", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuyakcmasckamse\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fd1446c8a229fbdefa3b3391e3650e89531a66bb9e64ad2f1fd2bad3cafc8082", + "regex": "(?i)^https?\\:\\/\\/rblxclaimgift\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0f01f4b1b097ac44a4e3e009db10d4b2ee6fb2be793b6a5eecce4a0757fe3d3a", + "regex": "." + }, + { + "hash": "7f58df897c5b4d2c93941025ed7a9fae92357641c217d1ec2488fbbd9f6f1356", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxx\\-streaming\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0a23f8686641aa4abb5eab8de9d58f8d003829e4dfe67d794920edc98a2721ad", + "regex": "(?i)^https?\\:\\/\\/rblxclaimgift\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3f90395b423bce10afb2195a5ba84315266fabddd98018e3726226459666391b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?uri\\=b58459589\\.com[\\/\\\\]+Account\\.php\\?key\\=proxyAccount\\=$" + }, + { + "hash": "e344820c256081343f23cbd31719ea0cc6ffe4f14fd08dee9d165cfd07f24bdb", + "regex": "(?i)^https?\\:\\/\\/instagram837\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "87c8d7cbb57a68f334b529da94a3a585f453fcc2c47b114907f728754e390f19", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9ca439a2b895aa085392b1cdffff86daf71fd15049ee44d384e471bc6682ad86", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "77e99f88572a40ec6a065b1194dc624a71fe45434e018c603d1f4bc209fb1a76", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d081c7f45d2acc743b8b4f1e951701003c988558a246f1fb9dd7bffdc0f6b772", + "regex": "(?i)^https?\\:\\/\\/9005120021846\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4d0be0e7c9654bf95551d6f183a2c59363c6eae8733e5c526ead043ebbcba10a", + "regex": "(?i)^https?\\:\\/\\/instagramer01827\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f8c1c0a316b463395dbf7c34157475f73c8d31dd140476955e29fff878c704d0", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cc8a117da5174a47fa29312b4d5539c4701b96a80eb1cee4c5fd75cb35b8da05", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e16813827427e7a59c4edf6875b9d39b56a4f715be0b4395b43ce2fe231cb3a6", + "regex": "(?i)^https?\\:\\/\\/carloscoutoadvogado\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7adbb137965d5a4577601eef548a9ab16e8d6ae1c38684355c0bf7646526f506", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6980a74e708ef056e4c5c2872691522da5ef5c5f6b2f035ba5563cd598bd986a", + "regex": "(?i)^https?\\:\\/\\/payeer\\-752000200\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "03f2088543b14c0c12d94b6d6e13d9411348029ffae6ccf1dbd3e19ceceb5c6c", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7062ee3c9212b5d228f4fe6fdfb630ff0fb1df5ee29d7ac3d9c722b66d364554", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9193[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "74780c6fb5cbf8c2725ce2baac0b0e5cd247b302ad0568af88eae743abc8cc66", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c7cf6ba7a10e4dbdc23243cbcb0c541fece3e94c020477556b8de391d1a8e219", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6f0668bcda6f70f43df1a11111f9de493f6d34c7fbcb64053f784f00e9730e8c", + "regex": "." + }, + { + "hash": "705f43dc4728cdcf8b98b9d9a50386d68f1b2263f462470f5dc6655a567003ef", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "70ec3cce5511c49d63b57c8cd4276696490312a2dd92937578987e62eeb6c331", + "regex": "." + }, + { + "hash": "a14432e33188e7ce634b177201ad4076f15225fb7b404ee6f2518d7caf9bc229", + "regex": "(?i)^https?\\:\\/\\/id065489d9100\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "35b6781dcae154a685e896885aaecd8c9abe7948871558076862bb89b53f51c8", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d2bd767ed256abea5e1804ebffdc908f1d3c804ee9583d36c9197070bc1193ad", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6a9dd3d21b87db8910391b68e2498ea2ee1a097cabdf8b501f641aae60db805f", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ecd4cb4de8dc09cf0a4c11e796cf50e46a06a8ec9629ff6a7aad6cfc6bbcddd9", + "regex": "(?i)^https?\\:\\/\\/kajalmajumderfb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e9af6fd81c94eb207b0d20b592c376b60a59007ad2339fb01140fc5066120b41", + "regex": "(?i)^https?\\:\\/\\/carloscoutoadvogado\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c23c730737292cfc91420a8c2d117302c279261f8f1b7367e57782592572d10b", + "regex": "(?i)^https?\\:\\/\\/reddemcodecom\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "25cc5dc1252150fd4a6157db9e16d279fe4f8cf90769c93f3ab89287fa8cf501", + "regex": "(?i)^https?\\:\\/\\/netflixnet1\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f2b904d8daad3f0b0dcf51a28edfaf786364484c9a5ddf4c98b760702b02924b", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f0a660eec75be40a8ba301822a4b6c9c917edb06d319869634c3d0c6a438fdee", + "regex": "(?i)^https?\\:\\/\\/carloscoutoadvogado\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "339ebce3037dde778eb8a88571f5d597c2e55560f6a48f7d6b4099aa734a57ad", + "regex": "." + }, + { + "hash": "5b0b0f486c867c65c3fef3978246e1cf6ffdd41a925919fb32190709cadd9a9b", + "regex": "(?i)^https?\\:\\/\\/carloscoutoadvogado\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1c4080d25f2e0320299ed4a084cf64aa426a5616947344946b34cd99b570efeb", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8700edaf8ecbd15f38d628beb5e585a2bd425d4fd6dc1772e469632976e44323", + "regex": "(?i)^https?\\:\\/\\/carloscoutoadvogado\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e43c0ac2c0cd9b2d65907eca9a239787d6d3247f74bf07ddf009619f14fcd152", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b57fe6c5bd71b38c2808f6d69be163b0c461bbd47a0d882424dfaf822dd1e183", + "regex": "." + }, + { + "hash": "64a04dad1a7b1477db429750352488dcf2b21a974a935327eae6aabfdc729ea4", + "regex": "(?i)^https?\\:\\/\\/kajalmajumderfb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fe415eb7dd18ff68ffe095109ef25cb77c0d945323a7d591edffb098f8ae092f", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b7a5fd81cd9f5c49eaefc63e50e822c5f3237b8d9ff92dd99429a31eeda6d66c", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "128032986074e159daafb9974a4b4de6b934423577dbe0d3a9143e1a4145d012", + "regex": "(?i)^https?\\:\\/\\/instagram837\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0438ef6b9e5c418a47d98f90cc0f59968bf692e82c222b7f00fd522825b93d17", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c26beeffa68486e1df8a7e7e73f67b0cb3d4d2a056c1cf6962a9ec798b8b043e", + "regex": "(?i)^https?\\:\\/\\/emelochibg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3c397948075c49b2ff83496f8bdfefb93a8be040c48c5e3bdef7a50bcce62403", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8cd56326b1535754785e76bfcc4e0cd177ea107809f78ff40ebedcc427841762", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6374f43ec1fe20f9af028b61e08367c6f673b36aa4b8f04b18189cad4f48bec9", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-calais\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4f720884622ffaa8a858972d20ec8cc65c3fb72e7f8da43ce38b631e9c69fe23", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "097fa3d4c8184fd243db233772b384ef42ac538517725b176e18f56574f0b35e", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9495e60d695911349ec32ad4e11358c467b31a569bb580b812d92102d952bde8", + "regex": "(?i)^https?\\:\\/\\/payeer\\-752000200\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2c7453092305d74702932b5cf0d037c7582e94bc17da3777d751f1e540189eaa", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c9189be6604cc7a41531a0431d5eedf090d890bd165dfac6c37366fdca8e91b1", + "regex": "(?i)^https?\\:\\/\\/payeer\\-752000200\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "74e36fcfff6bd2a4edc1b0fdbdab1cadbb664f1232b4b0788265bf0a1d410789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auth(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b0cc86b15077e93fce676be7d38259fcf3d5ca5d6b86fc9a8764b6de05c2884", + "regex": "(?i)^https?\\:\\/\\/payeer\\-752000200\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0872043fe75fe2fd087a8412d24a9d2aa4a5302a603506bd9fe14253e5ede569", + "regex": "(?i)^https?\\:\\/\\/emelochibg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f12a08b9de41b2678959a404d50bac2a580bb57ba3511b509e5101e1304b1", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "db5e218446af8dc0c4f6e6121644089ca1ac8628e77c2ca398e708e181739e9e", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6d7514a6e122e336c5bbeb16dc965dc558d1a443f8af664bcf794a794477ef6d", + "regex": "(?i)^https?\\:\\/\\/webbew234\\.yolasite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95c71cb883e152fe40de050268127dcaa1faff874212b142fd5de247391c882d", + "regex": "(?i)^https?\\:\\/\\/9005120021846\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1c6798ce429e1cffeb5d0b82f2fde36e9237b671b187c902d57b9f678302272d", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a443b71adc61e1bb62b1e433f8f10f8f64bd6bec45319c51f1b83226d6cf8978", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "33cd1b20dc14b95f2a7c721faab76aef582f3950a1c84220dbd44febc19a5243", + "regex": "(?i)^https?\\:\\/\\/id065489d9100\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "58e4a3c9c60b0b6dffbd28d767877360a62043fb6eb79b6a8401b318f6499ac7", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6a4805164023ded0950eeeadb021a55e973a6f60f67b869b7dec5aae0331b78f", + "regex": "(?i)^https?\\:\\/\\/9005120021846\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "65ac127bf1cd492cd4bd1b3cfef511a8ea08418768d6df9c8771555a74760fc7", + "regex": "(?i)^https?\\:\\/\\/emelochibg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "30c719d6546f38f77e83e2af4e073830bbe9df694cd679e110f2a2cea296798b", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5adc0846594a9511afd7356fe80cbc194b84610303239ce3516b9dae2ff46ed3", + "regex": "(?i)^https?\\:\\/\\/mail\\.renhart\\.att\\.162\\-240\\-229\\-140\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7a3c4c2f07313ef27591728d59af6d598fd1df671c767d210de94e392697ae04", + "regex": "(?i)^https?\\:\\/\\/emelochibg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "21a423a9ee1851a77ed9a5cc037e8f36fb0076f5a472774156c3556cc9e72ece", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "573f90580ef5f53b9874a3ea44bd3e458a56766f6bba08027d66bee123affc05", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9a4496f9aa0d0d227b6f8c29fd2b219d4ac7996367d8128ee594797f3ea61610", + "regex": "(?i)^https?\\:\\/\\/atyfgr000vee\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "520e2b5e506f806a56975b38746b0ccb194643583dbd3ec96d5b00c1908358f9", + "regex": "(?i)^https?\\:\\/\\/instagramer01827\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7062ee3c9212b5d228f4fe6fdfb630ff0fb1df5ee29d7ac3d9c722b66d364554", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9193[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d7a74d5682155f43bf2300ca948d83786b1a2d7f103d8a0563216717d0830857", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-auxerre\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d1f83904091269d6cb9be65fb678480b22d2c27b7e2b95c6a7f56f373378b0d8", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8310774d8929f0e88dd6f59a1978927fa1f335cfdacabac930a3a7e6c6ab4d58", + "regex": "." + }, + { + "hash": "381bbf789dbffc5b029a1c823f4099a762c296dd1599b3a134dfcaffddffb3ef", + "regex": "(?i)^https?\\:\\/\\/instagram837\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8f64ed0411dee2226b80484c4cef96e4ccfae9a819e2fe13e79f379bb7658581", + "regex": "." + }, + { + "hash": "ad3148a2a10c4213a31aab0434ddbb1b915384bc087b1368bcca571709eb5817", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ec0a9107573379b7b8e0533e20bb5f227a60ecc62b897ed6f4b57ba13027682d", + "regex": "." + }, + { + "hash": "529b4b7649e606850ae001f33bee81e44b773c909fd97e8cc2051ac990785c94", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "09e2c1ed1e81eb83c265dadc30bafce40fc93ffcfc439be6922605663d5310ca", + "regex": "(?i)^https?\\:\\/\\/netflixnet1\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "133915ce2804e99678f420c7a88a1c300f17b04cf737762b32f6a2415a6e2f24", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1818a1866d5a6803a948fc73047755772d892d9dd91632597ecc378f775955cd", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a89556ae9900c5a44469215fc702df2526a093ae25bacef295536f859d212e0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=http\\:[\\/\\\\]+srv223363\\.hoster\\-test\\.ru[\\/\\\\]+DGT[\\/\\\\]+in\\.php$" + }, + { + "hash": "476fc02d34f217ae80df4af520f527e7eca32491123b189c114d0f7c83cee474", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e0df2c1dbc6dd82ee008575e0be5b3a5106d89027b3227da5ba32ab95c39f465", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cmzQXJstKRXhZBJdrXcfvtNDPPpFCdDozOTc(?:\\?|$)" + }, + { + "hash": "16c55da14a3adb4f1796f5542349d693259821570bfba4ec71614d624e5db6af", + "regex": "(?i)^https?\\:\\/\\/instagram837\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "39941bfd71fa91d9b14432f8da8d83d2fe0d18bc7e917f60bfa811c5ecf7d7e1", + "regex": "(?i)^https?\\:\\/\\/carloscoutoadvogado\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e7b442eae42a1bff1c5122b19074919814de69aace293b0735d75ef214ef1a8f", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "19b8e4df6541224366b98cc21a5aab0d6d469e7176b0fd8a1d61a4d3972b8779", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3dc6e684e92930444f8d2a8fa887b36f0ac15677f2e9233f1adbde57687ac403", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d717405a5b6c8991d8ccd379279c056ea14fea6ac12cf18cc4f29b179d65849d", + "regex": "(?i)^https?\\:\\/\\/reddemcodecom\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "914d647d24393d5eaa1fafb81ac69bb7f6099580854fbdb4465c1cbee101e2a6", + "regex": "." + }, + { + "hash": "6ae41e407ea0fbeb3b177bb9efb4185656342cadac10440570d79c9dbbb8950c", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "178d74047ad2ee206bf1152404d038119b8443a182b7b071bfaa3a954939c064", + "regex": "(?i)^https?\\:\\/\\/emelochibg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "dea9a73f9b3d121e7f11e2fce55adb6e193a50cad01e5d5f87aa2b63af86f5aa", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b6a493f86c764c77db1ef0a9505cc25665f4c6b9eb30d43d33981197f4d10a6b", + "regex": "(?i)^https?\\:\\/\\/instagram837\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9d30919e85baac6d5b4e38b2ec3f675f5e99de6cdedbdb31f74d55a2c8317ddc", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c7971078fc4da5e7161e2a1f32f684d5f39155e9db1121d50c11e21101a364fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=http\\:[\\/\\\\]+srv223363\\.hoster\\-test\\.ru[\\/\\\\]+DGT[\\/\\\\]+in\\.php$" + }, + { + "hash": "3ea68d637d79fa9881b875a96b635761cdd2b15f975dc6d01e261bce6665f8fe", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-calais\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a37283bb3bd2fd38c75e971c0b57ec56d024f29b65f1a7b9a607ba5e12925a65", + "regex": "." + }, + { + "hash": "6eb8bea9d7051af59780de512748b019d2b9afe9255b3cbf244f7c770b899bb9", + "regex": "." + }, + { + "hash": "70a904848135bcae1eced4bd265ce5db64200236efaa34059e7457c249fc7af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=http\\:[\\/\\\\]+srv223363\\.hoster\\-test\\.ru[\\/\\\\]+DGT[\\/\\\\]+in\\.php$" + }, + { + "hash": "128bb8be67fb2e0b2bf95c84c2876c0f4385a996d8acfe102b830d0e39915809", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a11fb2c59dbf031e023739580722e2999b56c620c2841e26bb94d5c02fb21a8a", + "regex": "(?i)^https?\\:\\/\\/netflixnet1\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3f55f8701cc223b5c0dbef8902f0c86406aec69331178e3093302f6c450bd1e4", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c5aeada66abe43ef32ae2715a42acd4056a99ab0c04ccaf67ed19f7d0b62f8ef", + "regex": "(?i)^https?\\:\\/\\/guvenle0deme\\-al\\.000\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "221fdcb4f2ba51488dc03235198d13b52c6a1785a1f0cf4e1a3b0d0392d22736", + "regex": "(?i)^https?\\:\\/\\/reddemcodecom\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "10692e595cccd678e556582b5c15fa2e7bbc3f57e9500283ed294d1fc9b27fbc", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e56c39c5b4691db2bdc1c7fbc07eedf75459c345123f1d87270e85e5bc9aae75", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5a9462c144f6558c27cbaf751143299c44996813aa0a8dc11d0ee530bf3edad8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+GORGON\\.html\\.zip(?:\\?|$)" + }, + { + "hash": "35e3a51b7be22a023165e1659ef95318163270f9ff7cc55044c632e21e52e44a", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ff59171da0dba3c92e488cbe99c8fb6a8eacd70c1ec31899af096d3b9f84a000", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bbbb287c6361e6b810d41ccba8bd9d1cdc4761c9c1421aa7acb5961f4659968a", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "81f5345909c7fc8e428b0a1e0344ea48975d1ec6c459774f885bad86941056b3", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-auxerre\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8e8d77353de210b62ed717802961c1b74be26d05a24e3cff17a9bc42ff13395b", + "regex": "(?i)^https?\\:\\/\\/payeer\\-752000200\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "eeb43b552fbe68563ac9765e48c52282fe5ab5981f2940e1b4eb2e80edb33c43", + "regex": "(?i)^https?\\:\\/\\/id065489d9100\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1d90a2ae932645c8ce2d509bfb18302ee8f1b5f3dd1bcdf029b0e15463326880", + "regex": "(?i)^https?\\:\\/\\/grnx\\-anmeldin\\-42627\\.yolasite\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6bbdc6b56ba768976f19ab62d5e28c5de2f0c1eca3d3c6d4bd03e72641dd9d89", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=http\\:[\\/\\\\]+srv223363\\.hoster\\-test\\.ru[\\/\\\\]+DGT[\\/\\\\]+in\\.php$" + }, + { + "hash": "513d10770092df2715a743d2ce5d215f08eb989b5e422b67f2bca843fd4db641", + "regex": "(?i)^https?\\:\\/\\/instagramer01827\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3d67baad3fc57b3e8648a3fada37b758d421ab8bfd936663cf5685e428bf6ff5", + "regex": "(?i)^https?\\:\\/\\/emelochibg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c55842c63e1177ec1a00133804b1c85f70eb91b451b2e41fb9b238b2fb273b6f", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0f13d674ca070e5d3a4518293a5f97561c3bb9e41d681671f86a5ac827e63573", + "regex": "(?i)^https?\\:\\/\\/payeer\\-752000200\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=mail925bbd824c4482bd55ee8bb55408$" + }, + { + "hash": "e5205c2884d2105209f182f9ff3a40abb1612f91bbe542a5a03a06cf2c789fc1", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-calais\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "96aeb9d6828d79420ca6d3d9c91cdfdbbd3da9f402af54e84083692349e2055c", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4c35609f10916ea83f3366faabec7d5c61aae9b90f042846400df45514599300", + "regex": "(?i)^https?\\:\\/\\/kajalmajumderfb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "20bb5b9b84a70f5f7c628acd685b55134d5dda5cabfa06d96dfb6c16338d604b", + "regex": "(?i)^https?\\:\\/\\/reddemcodecom\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fb66852421bd88aff90e82ac178ccd0ce43b767c49e2ed323f737bf40f06a5e9", + "regex": "(?i)^https?\\:\\/\\/netflixnet1\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e9ca35accc6c4a0b88575c42314d8c236276ac7260c706f6f68015d569e95193", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e78628baea0a28cdff04e5d18911c82a5095b416c350af3263e31c1fe620152d", + "regex": "." + }, + { + "hash": "7062ee3c9212b5d228f4fe6fdfb630ff0fb1df5ee29d7ac3d9c722b66d364554", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9193[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8cd3bb44a7f36a225dc3a888f71194e29fe91489f0931e2d5a164749f8ddba99", + "regex": "." + }, + { + "hash": "eddb0e71c9997a085ebd262faf30f948e5b523a6c2a050b7eca2c3fe0740e19b", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4a991b889b41053199be88082d9c75489449d7467a856bbb4414e6331043d08b", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2af780c970000ea57b21307ade17ac2e798ed78be3497a745720649549dc82b1", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a5082974d110c25f99bb74cfb9545b548d8f636492bf007bc08dba9a7e6df312", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "051750938f94dc313c6062322654e3e2c15e8efef35262a99b76ce0fe503143b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?kMNnrcYxD5GB$" + }, + { + "hash": "eceb90524f53c4a2e4c0fbaeadec1ca902fe6521da1fa14bcf4aeb73c9579c76", + "regex": "(?i)^https?\\:\\/\\/reddemcodecom\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4e6fc6eeb0f06f3e9315eadf1ddcece40ced2ab490f46d027f15cf45b1bd442e", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6e706f6d4594fe48188b429735dbf538f82eb068269048bc0b57bb9ed3971cd7", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7a182454eb9262d477c6c5850d6264cc5270dd4ca20a63339351302da928903e", + "regex": "(?i)^https?\\:\\/\\/emelochibg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fefb9031db7b2807e1c7adc1f506f1d3ff044e35b2ae508165d3eeec313e0914", + "regex": "(?i)^https?\\:\\/\\/emelochibg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6c002ecf9b2f3a7c9a0948c64b3113f083d5e28ce5c7ca5bda31743374694ed8", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d044c45a112aa358004e10211aa398a753b7f4d4fe132ee06916e0d86ebb3df9", + "regex": "(?i)^https?\\:\\/\\/id065489d9100\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hm1h14(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6f5ee3d3c86f638af20c30b7b12892b4439d2b4f448ce6a8694972746b81be4a", + "regex": "(?i)^https?\\:\\/\\/emelochibg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f7cf2c5c8d9bc28de63d5d7793c44f18e7785a4f6a539cc541d6ece827a9c640", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-auxerre\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b89103c3b05c0c4251520e1c964941dbd9591104eb06b9acbd0c6572c83bc245", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "00884803adf8e837ffceb38bc14e311c8693483cb1703bb3e3cb7ac7e429afc4", + "regex": "(?i)^https?\\:\\/\\/id065489d9100\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7bc7b9de9250bfaa15ce1eac7a123a1b5613f95900113130fc3848f04e436a2f", + "regex": "(?i)^https?\\:\\/\\/blue518017\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e1ce04de9f6b81d94134ce2d7ce831db40fe73845813a3409d26bef91b634", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0b35f5ecd06450bbeacdc58c5398f43497f52d4d6ad44c268add236b87edc814", + "regex": "(?i)^https?\\:\\/\\/instagram837\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4ee3c1828741258cdac31446a2da65fb279a4f94d7ce5d23757d16772cfc68cf", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c9fe0ad30f5f640bfa29afe547f518f7d09772868e1706f81227f89277bb9d87", + "regex": "." + }, + { + "hash": "68cad4df3f468b6e293fd75c4f1f8cf272c723a156e9fb299b2d944080ded3ab", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d07f24882ea76e723f129eb9135a6857b35eaf7c4c4cd13772455798f5c91c6c", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b66aee09416f2f6e047a4e765a0eb1d62d46b530d7a98618ee522a7fa036fd8e", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-calais\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2a48ef61ef824547752d5adf35c7de3e6e1ad52aebd9da2e4ad1af4ddd0a4f1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "13840d5a8937fcb45a4852e05e9063ebdba3880c936845c9c0fb60e2d9f4bc43", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b9fb504373d17692f9cc3ee77bea86eff9abd2e4c4a9f1934caf51119dd3b00e", + "regex": "." + }, + { + "hash": "a7ea996b889c55ccfc050659739d20cbc82efe008ce29755cf065b0a9abe3d52", + "regex": "." + }, + { + "hash": "6a6732845d7f4d8d195f50a17cf23be2e57f16dbe19c2ed357f6226c8b362ca3", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "99153c3c15b907a607dbfece6819c4fec7601a4feca1832846d0dc36f9d10cf7", + "regex": "(?i)^https?\\:\\/\\/instagramer01827\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "401c642de701d3328721fb344f8c485e4e29777f4b6b7d8f70a2c64727806248", + "regex": "(?i)^https?\\:\\/\\/mkonbzhagsyrinkoaea\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bdbe4e4051d30bc4f74bf6f204849e3a436d25c16cd9af6fd493cbc67d2cbcd9", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0889620e0c0048538ba01b1c31d9a2459338579234b239b6f98f25404aaa7e44", + "regex": "(?i)^https?\\:\\/\\/reddemcodecom\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "521b8b561a9a5e7261b0ed297fb8184dbad4273dfcdf4d00489481085beb419a", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e9bc6de4f2b236cae28aaadecd45b5459bfae092dcf345aba780d122ed1311cf", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f5e29debd9c130a7ca43e73a3268959ac447d54dffde16a7b23c92be8ba5a359", + "regex": "(?i)^https?\\:\\/\\/9005120021846\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.iowttjqw.com%E2%88%95xecmfpqjnc%E2%88%95oizzaijz%E2%88%95cpsbngmyj@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "ff6a6db486154cfa6b7c655f8290df586a7af41d012483694a64e1cbb1f10b78", + "regex": "." + }, + { + "hash": "f53c0a0704f3fc5610942b58db61898534fe764f62d3ed0d7d40de0f98657878", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c09f10c730d6a64a096f4fcc8309cf93d80810380ff5347bbe93bfbfb1cae0d9", + "regex": "(?i)^https?\\:\\/\\/instagramer01827\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "97473f02e0d19f1fa3ab5677055247f92ce406a58c27a2c5414609e12b8dacf7", + "regex": "(?i)^https?\\:\\/\\/sign\\-in\\-att\\-109300\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9609e3c59118e54569de46f20c9ab306d0819f895da14a6d6b54a803ced9919d", + "regex": "(?i)^https?\\:\\/\\/instagramer01827\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "94d64498a42a0aa86608976af09bb0d54a07f2215c0aa7b0a9e9d4ea5459f6ae", + "regex": "(?i)^https?\\:\\/\\/kajalmajumderfb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2d85dd6f2a690a28ae5a97dcccda17f706e49c246f728d2ed8d2dccbc00ef01e", + "regex": "(?i)^https?\\:\\/\\/payeer\\-752000200\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c0a01eb5ff23fbc58e9c4d96c1ea431415a0c5548b1c3db581664f4f3aeaf35e", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-calais\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e3d702da6e05e3955fbb5ad7be4943ad96048fe07735b23dc9cfe4e02d42ada6", + "regex": "." + }, + { + "hash": "e96d08d84663a9b10afbb89ab83c21ca6438ab3064aef77b2b7dcdef28c2d51e", + "regex": "." + }, + { + "hash": "051750938f94dc313c6062322654e3e2c15e8efef35262a99b76ce0fe503143b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "ba8445369694c9325fec21ea4bb63858ff1a49c7fe70ce149161e73140eaa3e4", + "regex": "(?i)^https?\\:\\/\\/9005120021846\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "62fc93de9ed00042ee71aad9e5ab934e7f081d4d33ffdb39fccc14d27062a92f", + "regex": "." + }, + { + "hash": "bd60baff96a59099dcc0b55d3322b1b66884a63bc16da017ac68884a0230f869", + "regex": "(?i)^https?\\:\\/\\/fakeidok5\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2a48ef61ef824547752d5adf35c7de3e6e1ad52aebd9da2e4ad1af4ddd0a4f1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?Ynlx04BqSj6$" + }, + { + "hash": "1d180b9b5b36c2807cf45762183a3997450f21ce033cf7a02ec2536d716821ce", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8923f5cbd33280eafb6e04fb9186207b62ca5d4235dc12684cdf03ee812a8713", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4145d3e571f994ee9e30274262d6b454bf280975ecaab7d688760c869cd2c429", + "regex": "." + }, + { + "hash": "a73a362c0290adf959a5407221d01f2e7b4aba05ad885581427dc9e33e6b4db8", + "regex": "." + }, + { + "hash": "eaafb2a366e37ca3225d73d85433ed37a07fdd5c44842e527786632db0e97c13", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4f2551102b35c98dcfb5f6666555eae0fd8f7aa13c7ad9d4d3f47d574e75e72e", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4e1a07d5fc27c0bcf747603622fbca0d047fa2c9c3b682682c6be47e1ca1d1d9", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e79b3a94af0ee00be25de513eea5869dbe93c6c23bfca0c00542a14cf0349709", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "eb9054497f0944826e5466fa3958a823ce0cfcc7df26b0561d815720a31dc52f", + "regex": "(?i)^https?\\:\\/\\/instagramer01827\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0156cdeb227086945f836bd2f0483b71098c385412415d1b861ee25819b2ad25", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-calais\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b4d9fda461b386e56cfcacfb1c9877dc4623b96f93e7e30fc9bc47fabea4eea7", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8a341aed58499405fb23e5c3db929d2f05b319b6932c6e15e559d39e534f369e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.blxaomf\\.com\\%E2\\%88\\%95uynjamewf\\%E2\\%88\\%95nfbirfzi\\%E2\\%88\\%95jiopcjvzl\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zizghwuhtj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4eb336a22c1e597c260471f4e984cde576f054381abefc7ee39b442b2761e0de", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-calais\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5a7cbf697bdb13a0825dbdc0be4be415cd10844297b1ce726c434c308cef34f6", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d436f569e02321ae960c4fb93fe9ebd9c669bfb18d4cbcdd030c7ce7aa46cc89", + "regex": "(?i)^https?\\:\\/\\/instagram837\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "089005a9c3835bf1ef0512b192d6018eca980c02a012a5c52f26a88a9dce6c6a", + "regex": "(?i)^https?\\:\\/\\/asiamilestone\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "94a98bc30f3891423fe4209b60b340cb75d20ed784f9132e7268a0d6b3ba0dbd", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "340c8b6da7ded8e54cf787ef835d0fa2e041d4dfbf0f2c2b390898f24ce892c7", + "regex": "(?i)^https?\\:\\/\\/netflixvideo1\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4a2d80a5deff7ff8f089186229813b555d1010259b52987bdfc5bd37cde1da4a", + "regex": "(?i)^https?\\:\\/\\/kajalmajumderfb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "05b8547f16f683585d4f2912785d04f9b83a7270346989439e772e1cc0ca64e0", + "regex": "(?i)^https?\\:\\/\\/854210198455\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "07b121cdad013ee37def350212c6408cc7f17c0bd3a7b0de90f8d88668ef63c5", + "regex": "(?i)^https?\\:\\/\\/id065489d9100\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "29870893f941ce68406a6e57f17e6e4fbe2a6917307e2e07fd6eb88d816277d9", + "regex": "(?i)^https?\\:\\/\\/instagram837\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0872f2d9819224f31e49724e505f18028714d5fc9fbf97122c0198207f3b99f8", + "regex": "." + }, + { + "hash": "beb9efe5b7a2338654d8af0dafda21a76f903910190899b707f47d4328281d50", + "regex": "(?i)^https?\\:\\/\\/kajalmajumderfb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "29166c7150ad496603a5bad19e619632df5769c0dd64979f552c24404e15d773", + "regex": "(?i)^https?\\:\\/\\/id065489d9100\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f1bbdc7c1b47e1d337db7a2eb894b96187bc712f6519a8b0a320c146f68640bf", + "regex": "(?i)^https?\\:\\/\\/renconte\\-coquine\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ebeb8dfbad364ed5c3bc94816ebf847cc75a3646864cf93f40333bc20dd7fc0d", + "regex": "(?i)^https?\\:\\/\\/instagram837\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8079763b010876c88d1428c32ebd361fc6bd41dc2720e798f3683346be7309e4", + "regex": "(?i)^https?\\:\\/\\/payeer\\-752000200\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "befa9aa8df7d53a726c2247be685d1c3d6c23a576d55db819bc2c010aedd6764", + "regex": "." + }, + { + "hash": "2867caa7549e322068a7bcc2c108250c51eabc5dd9d6a8a9464dd27cea119965", + "regex": "(?i)^https?\\:\\/\\/payeer\\-752000200\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9cf860d09a4fb537f6946f6cfab97f7eda1900b2b5e69877fbb2bdf0600b8a20", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi05\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d344670139f98578f807ade042658824a51c1c2f98c7e67e6f7e1ec9c370bd35", + "regex": "(?i)^https?\\:\\/\\/netflixnet1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5860e9b7198aa9f3fdc23d854897b11572a647e5069c1ad21bbbf9e8e245677b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=http\\:[\\/\\\\]+srv223363\\.hoster\\-test\\.ru[\\/\\\\]+DGT[\\/\\\\]+in\\.php$" + }, + { + "hash": "6ee8624a5014434a2ab5be326fe1b82e9f1f57c43b9b8c2cf543649f3c5bf5e2", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "33279550d26bfdfd43fbdfb4d1af5263ba56363caf2e094f585928a7fdab7603", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "709df610a28944804f22222352ad2304a6bb1555d91b46cf9c32431e700d67eb", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e3ecec531a01c9d320c8583266b744d1d5aaaf2b335221c3aac35256e588da17", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7b69031d42e8eee226294810dd2729a646eebb7a52089c42ab96b42bbb2a8ef9", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a3431fcfa743b3bf4d67980616c346e7069ce7f4e0cbc67cbff5bd15814562e7", + "regex": "(?i)^https?\\:\\/\\/eqhgbqadhbqa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ba59829e25b10e7a743ac871253101d5aae5144465c5740cf6e3101bcc3d3d15", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a6548f0ce230268c48b846bd9782b0bd54c166c0cbc7ec1743d7ee887fc7031b", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "38a84bc8bb11cb826e6f70e697a639c5d46da08e65c824ee0c70229b75a86edb", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "83bf3f6bd666291453a527bf491ad974ec548828f99ce6107caf7e97a2209c5b", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bfc7f9100cb9ffbea0a2a8ff2282e7251b8af6517d1253a3f1e78d3f1b3bd05c", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "69a2eef6e88d66e793d315a2e9ea18dd0754eefc5487b11c657e75895bcd4312", + "regex": "." + }, + { + "hash": "c0031d8bf990af65a81fadab4ce9085e5e463a6583cb58d29542e7a4c08dc604", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgcvc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "aee6f471b7f2ab86d29b4b7ea7a4c9ec2cf218c9f3c213720e3d941121054e83", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gen\\.xira(?:\\?|$)" + }, + { + "hash": "f4148bdb6304f63af03026180cdfa99f2c226abf6de36f14a63f9acd23994c52", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e558af00f5b52007795336bf920c89e200806596ec5ef2f424472e6c0ba767d1", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3312f8f203e44faef473ca56de63806f90b69754b0b3b66852dc939add2be949", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d825fbe104860f7d90b16d7c88c2dac93544e843589a1e705ecdd19121168d3d", + "regex": "(?i)^https?\\:\\/\\/ewgfergregr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "96b6ab21ab09ade0bd932712fd7360caa33ad799aa326ebf62356ddb49f51d4e", + "regex": "(?i)^https?\\:\\/\\/nrjfjgfgfdgz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5a14c3ebbfbf5d43090d7b12ba78b6a390871a6880bca1aacd4201e9ba68599a", + "regex": "(?i)^https?\\:\\/\\/youtubetamilanyt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1cce97fd90464ca51acee47f8ffbd05cd714e813bae5da1d348da9d90fd831d8", + "regex": "(?i)^https?\\:\\/\\/netrfgdfgdfgfd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a89af64486a5917125786d2075975956219456035ac429ebb9cd3b68b255bd69", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5ba4d6c435bb22ad7217d02969d12d534df9c0f1920f6f4aa660c27743501507", + "regex": "." + }, + { + "hash": "fd8452eb342be73ad6f831e8e59b517964c2afd3c61180179230e02624612db6", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgcva\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1c402cd4302c83bbb29003a257d241d98ff65a4501e0e2b2df48e7ff6f7eb93e", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ac14e26f70edf9a6703123f815c436a4186c4869fa19375e6182aa13a074b5e7", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1535485242429a00ecb5cdacfd4fd641445252707a666a7b4b60fa6753bad08b", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3a8468d5d0ba3983398f05225de3a12c88d161f73d7af6e521b0f93da05afc48", + "regex": "(?i)^https?\\:\\/\\/sdfgdfgdfgze\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "76b2be12a6d0b0b252a9b2579d4038022fe38d52c88d6f56dcc40f15fab16767", + "regex": "(?i)^https?\\:\\/\\/ewgfergregr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "670de9e83aee29d735620f61f3cb7529ddd789264cf06c673d4750ec42ca037e", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "83e8c77dd9d6e4f943f03b3719fd1adbed0b4092d4b921b069b4ba1d5852b47c", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2466c675ab9eee41d87a6310b6eeee2b28a9830b5dd2aa1e49d7ed7492cfa1b4", + "regex": "(?i)^https?\\:\\/\\/top\\-ha\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f9f2b8cc0778a96814004456b726212a886994e865d815ffbe74be2e642c3f67", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "250391e54464c65b298a4521bd737903458bbbf0b82643394d8db1b6fd074d52", + "regex": "(?i)^https?\\:\\/\\/fs36f\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6991af56e2bc5907c074004b6434ae37f346f3bddf1e93d7d7e08474aed8d251", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fa8a615e94c24b69171a1ff3b5a3ae02a059aa3ad053c23029bdebcecc4371fd", + "regex": "(?i)^https?\\:\\/\\/sdfgdfgdfgze\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0526e4f80dc733f434084f5d013b320d908e0b691c4b1fcd5f7900f3c13672da", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b605162bca54b8b2d9d759a0feb492cf713277cc4bd2995223679dd6a437b1e4", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "697b6a7881e3814bca29c605b5991b3be3033610a66ccc4d7aa69ad107f78da5", + "regex": "." + }, + { + "hash": "5ab3f286c045f2e234eb087083e6b25fdf5f4f68cc5d1b6b5fd7819aeb29a96e", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fef3f9aed22e1fe5da4555cc1cafc975f11f08ce86fdd73e697b8bfdb8376aa9", + "regex": "(?i)^https?\\:\\/\\/top\\-ha\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "03400b97c8b19dfb328834284918d2be75e25f98086ef594ea72eebd8595ac8a", + "regex": "(?i)^https?\\:\\/\\/freeofenters\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c984925d8423d55f7e0317796c79af1abb4f9d9ce71fbdc454bcf2076affea20", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ba7ba4b31b3e7de91005aaca8c0ebfca294fe73f831380c4effafa41a10fc7f8", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "904bcf4486b65f3efd4d8ade93369754cf9d04219f36cc5e72eabef6906eba71", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4467e3c329bba87ae239d943ec435d9f653a00ff42ff4963adc2862ea879c6fa", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ec5f56f141f7c7b075bcd2c958a115b5813b5009a5561ca3b5249f7e448bd633", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+trade[\\/\\\\]+index[\\/\\\\]+login" + }, + { + "hash": "ec835266148aa86eb97fc77069b1261222bfc3e4120d3ac23f669d0451b373a4", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1fb575eee5336aa9d883621a8712af941253065eed6acb3ade6c9072bc6afe7e", + "regex": "(?i)^https?\\:\\/\\/aqhgbeaqheaq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e2cd9c9cff8ec21bc4d8f8e0f91a0728fe903f8ccc426c56842ae87d146958cb", + "regex": "(?i)^https?\\:\\/\\/youtubetamilanyt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cb8bf6f5e5853f16edf7a0f1f827e64e7418ee3a23b8694432c41949d5b619ec", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "45370f289345c263927f83d8cae48ff4275b1d9f379f8610fbcd945de7ab0086", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "70deadbea0c04e79b69ef4c16d889d65a70b57c1259f8a46ed7530781fa901c7", + "regex": "(?i)^https?\\:\\/\\/eqhgbqadhbqa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4a46c6c24b9cffaf2b324bf96cddb54519ecba26d8fe5d17a591be76bfecfd78", + "regex": "(?i)^https?\\:\\/\\/youtubetamilanyt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5d577e9405892b0b05a9d908cca5e4a495058c349ec5f5aaefb5c5560648f1f4", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "73335c8e2701fa8fc84f1eea7702945962a58051eb3b6f20fff6ff7e7a19a6a6", + "regex": "(?i)^https?\\:\\/\\/aqhgbeaqheaq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e3fce7420f5dfc6fcce820bd730b98d8da2405e149eac734dd65498961e2008c", + "regex": "(?i)^https?\\:\\/\\/webdeveloperahmed92\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "35e43c5a488583625ae3ad014e298f17e9f4ad3fd331b91a55dd389ab1f7fd55", + "regex": "." + }, + { + "hash": "80a8aa908aea4605fe02b4ef90b63d664ef627b4114ca60171f207214e1a22f8", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgcva\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "47627af8f23591946169250c0fcdd5fc6b658122eea15b5d84525d23c5370eea", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8134afd59602012565c4b98549421dce644a9cb2c0ea8de6f811c0dcc1f8d68f", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "e0a5e7b7eb1233aa6175e4304113eeaeb7fb3ab8e3b2eecb70b37f5f7d79fc2f", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d5756c66502e266b4c28e69f4e9c0ef5c95cb4d402e9cb73f0f19db7dc0adb71", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgcva\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "77d91449b209edc29813f2977f2acc7abd3a9c927f96bf7ddd0e4471b33c39b3", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e96e8b563f07572f289f647065adeff85e1efd520479cf377e21e8c3d5da99c4", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ba58c9f935f5e228ae7d38bec8cb7abf8839ae841d10026227109d3239f14e54", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c6f1f4d71fa816e292f2ff2549ef648b37494b4a2a7f4f714e290aab2116d512", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e7c64a4b99825f65ab5a5c44a076ac577a67a932fc25bee4d9bc2fb84db514da", + "regex": "(?i)^https?\\:\\/\\/hgbeqaghbeaqhg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0e4bea0a13d128a76d5e80d28c42eca1e5a81998ee7fe8ef1f93fbf589ef5642", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "53090a27d477f61b6e4f7fd8207d0671c8b7c53eb2e0003ec7446b6fa274533d", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "13e24e49ed04f3aded5eb43ad7b6a6017794f008ddf08afca483c36430be9682", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e3e47e8158797d918efebbc68d9d647c8d21b35167cf5a7df6ec876c68b11279", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a259b1e8e41ac2bba5838d58612379e425ef59100f8faf3256228ca7cd18f983", + "regex": "(?i)^https?\\:\\/\\/navigate\\-loginscreen\\-att\\-102370\\-109388\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "93c6b3c429ac255f384b97c8ce071b65a2e6db5e0aa5605a9266a716b50137d3", + "regex": "(?i)^https?\\:\\/\\/eghbqaehgbqaed\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8aeaf66f16aee85a8faf5d5aa44f0fcfff6d338d262cf9d47954fff0e214c504", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "097cfcbdafce40636ae1b8aef63cba3a34750413ac4b015b528e96e66d933b85", + "regex": "(?i)^https?\\:\\/\\/nrjfjgfgfdgz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7168dca59329a048ae853bf8262bf9ee4a8d8ddabbd425ce98f2ce599c866e15", + "regex": "(?i)^https?\\:\\/\\/youtubetamilanyt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d39653ddf35b6c78c038a05108ce1997660497d8ec0794edd8dfe6467bf6c325", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "14cd7fdbfb496bb72d4e629cfff457aac95f43bea4a7b5936f77b552c196403f", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4d4416bce70de5b1fa5fa0b64e934cc55c936befa56e7b293742a35153a29502", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6799b1f3f359f0f30055b3c1ef206e0d04a0cdada88fa311bf7299deb0945080", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "26c450319110c62e93209ddf8f9ecf62eb4cfb66446482893bb93acebab63e4e", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "856140512446352c56c0acdde773af30f040fa3b9c3c68002552f6d3deb7908f", + "regex": "." + }, + { + "hash": "31870952d040db735f90b2ea5116cb2aea13cbb3092b9d71624472fca1e9a2ba", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1069b91734c0d30f942bf0343294b9fc2a96a3c48901870737f527c7ce8d695b", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a99c15a0326fd0afe05352bcb1f4f15f21994b4dabd8f3d4891942c1ec210e81", + "regex": "(?i)^https?\\:\\/\\/eqhgbqadhbqa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8bde76556e7922a9a00d05620447c193d6c0620b2f4c4136c8d0b22c6324d934", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "39b8207516efe40e2ec4a3941e2dbaaf83e0f4a2d5d09771bd460eb0f16f32ad", + "regex": "(?i)^https?\\:\\/\\/sdfgdfgdfgze\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "be4b9793c1ac264bf9c6038346573baf536730075c41bcf3d9850f8dfffbb8be", + "regex": "(?i)^https?\\:\\/\\/freepalestine110\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cb371de2ac97bfbb9ef8e4429c63dee8b990336062d313235969df251c28f37a", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5883a8ce6298d198038aeb1f1e050c7b6261f2e10059cd14bf7de199dddd291e", + "regex": "." + }, + { + "hash": "fb8f3c5959428361b66ece6a473d04517ab108d372eff60614ce6a90ac3403f5", + "regex": "." + }, + { + "hash": "4cadae7e7071e64c6a3e1a0f0d37a9fe449929b88cba8e48a231df52d2ad600d", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "061b2a6cf8b276f5797ec623c3b91cb5ce83da16bd6e54607b4207118a830ff3", + "regex": "(?i)^https?\\:\\/\\/ewgfergregr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e39b36eb0e590646403a512c700ce29bceb25a649480db2b937ab65309868f4e", + "regex": "(?i)^https?\\:\\/\\/sdfgdfgdfgze\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f3abf2066adf418a544dcadb49645df657d803bef31d52207bbd379a90e1e018", + "regex": "(?i)^https?\\:\\/\\/eqhgbqadhbqa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a7e20267a0bcb0b48aaa6d124c91851a655ae664fb504a7ee27d01c2134eaedc", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "62fc8371528dc0306b3e44ccf76057af6b8c043750c5803f364221526ecc862f", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1450e773c507e3c369caf42ed9c683b91d5ecba73541c71a8d01676f384d8c91", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c455fed3ac578a90ca747c6262258c93543d7a3f2e1664d9045223d23758752c", + "regex": "(?i)^https?\\:\\/\\/qaeghbqaeheqah\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b46e255f6cf90ea27b53db30dc66eecb94e4763282bf19b1326b8addb30c9925", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "80c18be49e550b4bb5427eaf015dcc764a0f6e4f3222d026a2319732899c05d3", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d991c5d76e9387c00015df72c0fb15ccca43abfd805fbdfdd6e0702462e65aad", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "60264b0f63554e9d2ff8e4097448bd64839b19ce983b18afcbaa9ecc5fb84e55", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7c9fb60248bc2a26604c9ab58e53bc7fe658c6c841814ecc19f2ec36f17f0700", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fa729d09a598bebca642d501fbc009c3bb5d94e91636cc28c5e543e4e7d50857", + "regex": "(?i)^https?\\:\\/\\/qeahgqadh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "76dd668973036ce950a5494744e3e3ca3bb473f30b6811e9b7608b67cf5fe803", + "regex": "." + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "f6d14d22f2ad73e0dd471b6eee2318dce28c070b7c5f339830815d156b827a3f", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgcvc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9a0080228d1bdbc4c19c32bed7ce08dd187bde71d77150e4fff407b96321828d", + "regex": "(?i)^https?\\:\\/\\/eghbqaehgbqaed\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d547600c778a0943b740caa4684673c309982e5a137e9ac900c435e7b41a9a3a", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7003b5364386fb42705b202ba201b817deae008c41ec969f964810fc0a21376c", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9c777b4e4a47e59a13e877a2f6a8500cca05aa7c3cb86c57e1e4f2c2e7f29a90", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgcva\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+6l4ixr(?:\\?|$)" + }, + { + "hash": "1b0c34d10c28a86c4d509cde4d791e13f7b3f9accf0fa2d8543833950964c04b", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0709a28034872aba7e88754631aa5b88aa3f028a1fa38abd052461f472a32c90", + "regex": "(?i)^https?\\:\\/\\/ewgfergregr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "63569a7cc7e13d72fd8730e2a0180496a799243ea861399224fd1475bc1d2139", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3641b6ed6454eb1222b3e6699210e0144df5ba08796c57d49695953b347810c7", + "regex": "(?i)^https?\\:\\/\\/ewgfergregr\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9e5931a20791d64a0143c69bbe3e05bbc68a5417be965cbc8e9c2d7917e33ddd", + "regex": "." + }, + { + "hash": "9a0008dc6a5174fe3f45d28a304f804532a8961c15dd4d17d666055b8c4c9466", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "578755f55a65b240e2434aa7b9c44524a0f2c22ec3e739caf5edbf9ff0baaaef", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "96cbed12785f2d6ddee1b747ba8517faf3453475c8dc34ac79074042855d92f8", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c1c0704f3475a71ea78e013ab314fb2592064944f189812e1e23505023b5100b", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7d47ec9f586d68bcdc171cee0592170f7556f49bec37f6cdc6de33055604055d", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a0e118a90d3fd4ba9a91e7c513e85535632714ae2fa79d7a442e915578690f80", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "81ef368688ae85976fd3512a440487fce60a917814f0423a2abf40a68305bbb9", + "regex": "(?i)^https?\\:\\/\\/nrjfjgfgfdgz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b7366583039082d3f706362c27225dd91f80e92ce92ac78f1bcab0af9097ecbd", + "regex": "(?i)^https?\\:\\/\\/netrfgdfgdfgfd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7f2e8c8b277a4acfb468a28ddb2ed39230ba8245c980de0bfbe4be621639edab", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "966bae404c5d76e45493afea8a9c6fc5226479aa59db8d22fc2fc08333005836", + "regex": "(?i)^https?\\:\\/\\/att\\-104476\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "83cfe977b8203c0984394841bed58b81a44a6cdf8adbe41f7b0acb2908f55971", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f453f915c011be3f1fb5ae3b7c3123d8e30862c68cc36f5504c5a3c3f10df3c1", + "regex": "(?i)^https?\\:\\/\\/qeahgqadh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a96ee0e28907599c9c9ec370dea6179667459ec14005d1d897f972f81505e442", + "regex": "(?i)^https?\\:\\/\\/netrfgdfgdfgfd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "53b275680c6566479de3b5e0e6b209388e5654d25093ac6f0e4af08f1351eacc", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "184744c73132ae82abe3fc432eee552737ae802e56bbdb613fe791bd0e0d5af0", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "c6f9f6e2e2ad9a0f8710a55692c500f17d5256bada8ea29ccf899bc7db1a855b", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3ed53f801a2edb128aa4db21dd51ec9e0f794b6263c4467ce8c44d69426c0f0a", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3f53e4033fc30f484388df64e6ac459e2aaeaca1544bc00c974ff06c0428e094", + "regex": "(?i)^https?\\:\\/\\/eqhgbqadhbqa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a53ff0c619c233b66f981371930a5e61e884db047d03141bab4b0e17030fca9f", + "regex": "(?i)^https?\\:\\/\\/att\\-103293\\-103538\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c383d45ab0e683ffad8a046597bfa79703f6d582c5fe3a70cdf997fed88dd648", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "1736afaf4c1855f549cc23e2e446dc55b0dad43a08071f5c774637a80920207e", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b7f4a2dfb97d2f9a18dc80cf99481d9de0d441b5ec14878a1b6f8dee20c33ff6", + "regex": "(?i)^https?\\:\\/\\/fgeaqeaqh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a7e3e4b784151165ff0aee26a353328f2ebbc29a08a93f5f448a2bfdd6886743", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5adf679bb8402601170f13578b16e64fc010c1cf0ca530dbae0e2e201f4d9f73", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "56e55ae96f831f485419d33151ccbac7441037ff1f23a6e7f90562986a54b670", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1570792d805e4dc1599b486a8fe14a1b54b8dc3bbe748a0cd1cfab745abe897b", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "56bbad72cbb96a4a4901be872da5c6e6d4bfbb5f3451f2fb40011fabc23cfb58", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgcvc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2e16665582453123210b7943f279394a9656791b639a97ddb9d89669625a63a7", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "10db2755b9d5e7267c3286df125f5d043c57fd9178eda3bb93d640b08d71491c", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d5447ffb3060c079116641a38cd8f4f94de7fe3ce66f64a6cf15ff1a32010d40", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "bf1b6bf86d174ba906210d8110c00c2634319bc09ed3c3271f025414dea19329", + "regex": "(?i)^https?\\:\\/\\/qeahgqadh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "21ebc155ca7f008d288a439c06bdd8a500df10b2d3dfa198d1c78738294b2b92", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4f0d7974049bbf22a9839ab6a01538501064cd67781a75b3e06acb512169b4ad", + "regex": "." + }, + { + "hash": "0dbb33b508f808ae9581a4680c507e52d91bb51a8b6b3f5438d1d38c2378d94e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.betpfowy\\.com\\%E2\\%88\\%95udtilxjp\\%E2\\%88\\%95gnidqyn\\%E2\\%88\\%95frtehr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=obkeqm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "82f015f49288d280d9f0d264e4fd872622347f29b00f9001057bd447b93c9d1e", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8b916b4cb317d07b1f9d27e326789a6c584b31350e4e48262e440ed3c4049b19", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "be77bb1a35596360ac4cb60362f6803d673190cfa9c5d524d1aadf46a7e78e44", + "regex": "(?i)^https?\\:\\/\\/dds965\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "52dc368533ce69128e53cfdc318444a2f9c272c83f49e08a2a9119b545764ef5", + "regex": "(?i)^https?\\:\\/\\/aqhgbeaqheaq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d6384f7128ab4fd53cf1639d77ad6ebfce1b85862ef310c166d7329f4c73dd32", + "regex": "(?i)^https?\\:\\/\\/myinfo\\-2u\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a85e1ae40390a9cf5dccf6e981101c693d62cfea05c849380470cda0930c0165", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4606f45ef51099b0d78bc074aeb506132dae3f79fad04b044cddbb1190ddeea2", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "90afac7b951be769d1ef4d860d1a406ed4d30afdb5734a5cdf73ab731f551e18", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7342febfbee77f62729cab2487d30629201b0a3ddf4102dcb0fe1cf6d022bc49", + "regex": "(?i)^https?\\:\\/\\/fgeaqeaqh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a05476946838ffa8b1f81fcfadb616897cf3e86e5cfa6c31b1e01a3803311597", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f35c67f69c67f451f14b05b4a6f895bd651113ae69173fd0781858c16c0eedeb", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ff04963c3a131617eaa098289f9a22f108c2e8a2ee37643a6570300c6e2f6a5c", + "regex": "(?i)^https?\\:\\/\\/eqhgbqadhbqa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7a2880e99edfb41b886a7319c4010d14423349c6fe932ce1b4637af78fb1f8c8", + "regex": "(?i)^https?\\:\\/\\/nrjfjgfgfdgz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d16d4eac47bb17ba7d34ec51c4beab261bc4d0fc4faa7596718cf004c32aea66", + "regex": "(?i)^https?\\:\\/\\/qeahbqeahbqea\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2d496bf095ae6032797eb1ea2ccb7143b13c8a2897dff21e4eb617d2b5f95f6f", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ca0b5596dc7cf357b4195db64389fc061d7edc5bd711bc60cd1c3f0c5b94099c", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "576c4c96846516f331d4eca8395429ccdf9912fa10c720e8deb93e0bbc36a36b", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "807d076aa85656b154b0f316538d2ccbf6570d43e117c0b77baeb388fe2ac141", + "regex": "." + }, + { + "hash": "b1137a3d318d8484aaaf2809b597ec47ca2fcf5f99854dc02f8ac93ed7cd8d29", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "38faf7a99d282c02908a583808aa99f23b6c7942aa319530e9c9c69d92a65a0c", + "regex": "(?i)^https?\\:\\/\\/sdfgdfgdfgze\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a7d7a89fb481afbb0f73010918dd3108d937b9fc24c83579c38080f5c99849e6", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fa1cdbdf63fc70ac540363c0986854dfa9389428fa8429d2514c22b8249590ae", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b96c30884bc88beb4d0b471ded03bbd1919836a6d7b5ac3840c2ba26a522d64f", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3a47b1f770c703a1522e0cb9785ddf6c468ef3ebcadc1e82c4aded2306da81d3", + "regex": "." + }, + { + "hash": "4725d1adbdbe8703e9ff5881ac4c52109ecd830168cd935ae4a38d8ef436faaa", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1f91f7c678d03d9f78eed620087fa54bd3055e2a9e917d3d0b794c62f19bcd72", + "regex": "(?i)^https?\\:\\/\\/qeahbqeahbqea\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1e2bb1333e2d5a46ddf1b17c9310156c40e8563d0cb0e1c40c053d85da053d31", + "regex": "(?i)^https?\\:\\/\\/metallurist\\-steelfinder\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4eaf06ad816f16b82532afc3bb990557c88767b87977e7ee69a45fa7930205b7", + "regex": "(?i)^https?\\:\\/\\/qeahgqadh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "663e72c1bc282ea5e02d0c437f3d9c5cc1a5cc7903604996c68fc4671d772f38", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bbd6561d413b6e9cd4fb2a2afaa94a8f0c77eb093671bd846d42736da23c565c", + "regex": "(?i)^https?\\:\\/\\/netsrgdfgdfgfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "59219467b2c78c546595a9d8d9d2b51c6da63403ca0df58e41ad55809f55767e", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "55a454020c5027f4fe8403fd51731e9607ca2b7caa76cdb1d13b7a593d22738e", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ed1f4aed2c5d33da47512b92a50e96fd9ee58de329ce12e3dc6e7d4ab704d455", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2def8128774a9ac143da0778ad8ff4f074f5faba856c765c52a76c8de9d146c0", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "83613be42f622c3f4d4a25d08c454037f7de710370e9ada26d088471605af415", + "regex": "(?i)^https?\\:\\/\\/fs36f\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lhfrry(?:\\?|$)" + }, + { + "hash": "e876b668ad15c1963b577883c41002a427a6feb370d5a9c41615ed102deb2e90", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "76cc2a39f90b83b0dc0af4ae3bb3757c2c30d74f0d26a8d3b2f23379624daaf0", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f0e000d74b918de25ccdd00d7e594efab615812cb3ca61f4b3eb48ec08f4f2fd", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e3e48ba1a6cf22ba1c58dfd08cd735b4d3e0a9e680ffcac8470eef1698627059", + "regex": "." + }, + { + "hash": "95e7ed9cb8533c6afef6ac639a174bc6fe55fa59f0020ef200c7d966288bc736", + "regex": "(?i)^https?\\:\\/\\/sdfgdfgdfgze\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kghluh(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "29027a5444b2cb2586349b6c5db41f4466822264a55f4a7c6d9890dc4cbe0c3a", + "regex": "." + }, + { + "hash": "857d5f13064b81ca6a7102bd3fa9e06ca16991c3a36108ad3aaf008be52d6427", + "regex": "(?i)^https?\\:\\/\\/sdfgdfgdfgze\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9f6c9a02618b2e5ee05f8a2ace1ae732f605f187b2516bee79fe03dd03821092", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "64b13cfd0bbf9c96fa7bca5acdc51c9d6fbb11332e731530340ddfb96800463f", + "regex": "(?i)^https?\\:\\/\\/netsrgdfgdfgfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e91pan(?:\\?|$)" + }, + { + "hash": "b2943b2058339c500bff9a0090bbe6ac428ef2556d6021e7a8023a8ea18f3e66", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "544df1a74398f9b80b191222134d24c390d5596035864e04a01347218c4f48d5", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a37d744e93452be815f77c4ad73738b696e79911a7d2decf5fe46d6a9dcc8391", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "70bdaf21b9c96263a3f70785e5490dd8c8c175f378f8366f597ab7c2104489dd", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c77a58b8577ee58f6eb5b0124415822250837358727c7652da9b87a748166dc0", + "regex": "." + }, + { + "hash": "34f584bafc5a8f9adff65d0367270ae7d988e27dc91297c485c62ea1c11a2fca", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "015f815eea10377bebf07b01f9153cb92bf3af4178b51d29de7a27760b56d351", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "036f22ac35c910ec2a5afcadd2ad6fe87ea8b4dccf13a39ea3f63cddc993a508", + "regex": "." + }, + { + "hash": "4786a97b78f6c9db9f011257cf2df7ad348eb0ca6d128ac4048ae10cde42fdd2", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7e8adf3d2c52b23b2b1eff12bf38f3713538e6fcb96e933bcb7bd52d1462d19e", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "113fca40cec24529c2cb8e9934cdf92796e0f40fbe317a85d38f4d481ec2257b", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e504ab573fca2e35702e240d0e86451bdcdd262fe14f2bfb4480b0fd2d64d560", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "efa044b45d7d0ef58718d31d225fdd22df5d1d336b2d4fd2cda4a040905e44bf", + "regex": "(?i)^https?\\:\\/\\/metallurist\\-steelfinder\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "22b8e6fd36ee77d309921e24028e278a20542b9f6d0e07127a678da876ce585e", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a9f6066c8f2f170a7b80ae302ca38f3f24d1cf948d4550a0589cb25ce2fc4cc4", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d4db0eec3595c3d7055cf1667a03ac0fb640908ec607fb0fe2329d9ce6bcdb4b", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a13c8dc3471d4320128584c2f8f69bdcb2aa2b767cfd8e0b063ae2dafc77a5cb", + "regex": "(?i)^https?\\:\\/\\/freepalestine110\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9e9578f11d198add7e1f11df92720b5b03d34b3a961844c59ceb53c4cd9aa55d", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8903f932daec77d3b2db58c3e9cb3df75dd8da2ad3d74ff22967c4f8f038a690", + "regex": "(?i)^https?\\:\\/\\/metallurist\\-steelfinder\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a55ce58c7dc76eca48b630d70de0d8a745b21de73d7f974b7260eabb0aa6d1b4", + "regex": "(?i)^https?\\:\\/\\/qaeghbqaeheqah\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "874cdcee2182cec27ec8d2100e0c5331b221b422fea14eb54447da77440fd67a", + "regex": "(?i)^https?\\:\\/\\/freepalestine110\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "115c1428db6ba4105e34582d230031b017a6682e21b572f0f2377388f4cfee81", + "regex": "(?i)^https?\\:\\/\\/aqhgbeaqheaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b716d2413731c39f18a11185c466db173eec43e003a6fd63e7ed9edfefb09f49", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c2b5b8938ae49efe6520b714d44384ef24eb53f627e54e9064b3cd1e9d1d79f9", + "regex": "(?i)^https?\\:\\/\\/dfghdfgjkdfgdfguidfguidfguiuidfdfui\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4ece8f4966726b0e6d41ebc6ac11859a4e26472a03cfdf32c90107d3a6b1110a", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgcvc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3091905573ed2502723dc1d35380b867d7f4bb21e05395f09c1ae9ab5dd65a60", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dc3f4ff041117518ef4d673986332e2a7e633620aed9ac836305599dd3ce7190", + "regex": "(?i)^https?\\:\\/\\/fdvqagaqehg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "83a4241eb8223ce5c23a4b0c783c9011df5ac1abfebce2684d92dc67a1b2ed68", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ab09110d8af4152fa705e5648d2f0df9fe9eaa2637c4706d9cdb15656a02821d", + "regex": "." + }, + { + "hash": "47992c392e176d6321b479388d57de7188cb42db33bc5cb0a7918caa6b66dfe3", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "12cc0f7afb7a199fbcc05d5e0dbd29bffcbb4f805a7bdf0ad9fc1fb71236abfe", + "regex": "(?i)^https?\\:\\/\\/netsrgdfgdfgfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b1e17fd75bb6a7530a53e0a7c5796640183fe10706b1db2edde2b4ec5b368c21", + "regex": "(?i)^https?\\:\\/\\/aqhgbeaqheaq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8feedbb4c22257bee6aa8fcb03a19aaa190cb28cc5a709db9e05fda67c710108", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9ccab00979f0d4f0f5e055cbe015c28b3d5d78273c0fd49f56fa32f613a5fa0a", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "86d319a65b20e7b990b995c7e137481eb904e7ab6145fee9ae11353702522b1d", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ae821246af08161426581db35dc02b8309091599796282b4344a6ee73694435f", + "regex": "(?i)^https?\\:\\/\\/top\\-ha\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "713b616188f448cc5fda549c14a97baeb2f1357757084b6385de5b0f905af7f3", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c04172dbdba60e772b4074ccfa293d8d5678bff846a134c58e7214f154d23e55", + "regex": "." + }, + { + "hash": "d16d000bd6caa2bee324408b220f24bd58129402792f04736f2838658a4cd595", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d8fac1499a15f3a926cb3e3d614d4ec0132dfc922f497ef6daa235a09b5c4", + "regex": "(?i)^https?\\:\\/\\/qeahgqadh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7a87d3716cc40547420fcfa5eb0f0c48dfba1f14ca64801dcde24c226aef0903", + "regex": "(?i)^https?\\:\\/\\/freepalestine110\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9973ae6b4238254a97b44abca88532ea743a5279af77423c4b6cb3a3d937acec", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "94eb7b72454268dedb0910cd347cf71306c69222adbcc2625df3f109576e1003", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "04694b61204315497df4c8c38abdc480a2d8fef851976f65ce3a69243b6d0fa5", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9297168df2a5b405c7118c1c0783ebb006ae1268a2f8a2495b3d2ad7044cb9ea", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgcvc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "aa159ce4d51a4f331b81207177f0db8ab967214bb64ebef4dca2ce30eba6d7d2", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e3b378dda487bedc1191d04130d90d2f8684197b7416325743ae9a4febf2ca1b", + "regex": "(?i)^https?\\:\\/\\/fdvqagaqehg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "01af770bc2350771240dafba39f71762e9de0426169eb7c0bc73165e43cf84e5", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fb61ff15ecb0a64ae9bac8e1c86b7c62890ce6c17e3e01789c46945f29cca9db", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgcva\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9eb57eed1bee121fa6a5a128454b21073f1e530514497ff7cb96c9ceaf267fc4", + "regex": "." + }, + { + "hash": "a41b330bb30197a40b788d0291edd3768814e45a3581d809481b00d228afb29e", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "77892b2c9f630cb598d33e85210fd1baa781a42c237fc8ffaca04c186edd3fd4", + "regex": "(?i)^https?\\:\\/\\/eqhgbqadhbqa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "728975881b7daa8ac7dda70d1a3edb8d1729db4329322c3eedfde13e0a5a2306", + "regex": "(?i)^https?\\:\\/\\/netsrgdfgdfgfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5cf9658d2ea12381cba8706d36e2168b0d5007b7c9105559b8958c1e51013e93", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6aec140438aba1fa79576918e4d3c18155caaf98e69cd4a286985f9ce1ef732b", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6417ffc1a94e67848cea545999d7be1f6fb4f692547f6d61ba60fcb16c0572b9", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8fea39191100c7df3af4576039b650a90af07425617eab6d5e2ac5acfb2877e3", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0a9560cfe95144aa0ed315c5c65ab80e4eb2ad88477e87a52ba5790ce673cfb1", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "457313dc8493aeee1c3bc8c0cc49d05c98ab610b58a84359ebddebcb0fe10857", + "regex": "." + }, + { + "hash": "9a4240a8b8023bcd8944b698430e63ad99ecc9d72592b194b4318a66da4aae6b", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7fee5e1e2d38f861b1a4bc6c514257c9cbc67370b9fb1b9c51a7a2a7579e8fe5", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "241ba8d372a795b45c7c0a1cd469f0f793842efcde7b852e0f293ccc53ffadb5", + "regex": "(?i)^https?\\:\\/\\/qaeghbqaeheqah\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2281f8d43999bddc65f5a8f7f913cae2bbc5bbc2e6e1796e6389eb153616ad7e", + "regex": "(?i)^https?\\:\\/\\/david000635\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "bbdb42838553433a3d4cf3e7037c8602e7bc400870779144ee90ffb66d700719", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "71108e393d279334d7a47a216f942f0afcb7da55eba9176ce43198f5504b1408", + "regex": "(?i)^https?\\:\\/\\/qeahbqeahbqea\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c333cd5dfdf3fab715a3f319e07b1b53a8bf77d8f3580c63466f391286e0dc90", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "23efb61f214b574b88372a32c4681279876a1cd1a6eb13bf0e8c0e56fb872aeb", + "regex": "(?i)^https?\\:\\/\\/qeahbqeahbqea\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c9ca7f748ff476c3f2a17c3e9bccf5034dc4ef1db6b6d03f36db267967592789", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgcva\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "99387889dff7526b3e8e17b0edf581ee98e6a952e44ae157fe692316d6301339", + "regex": "(?i)^https?\\:\\/\\/fhgjkhklj0000\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4a7fe5757fb083fded848ba2ea8996c5542372cb77348aad00ba9808a0f97071", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d120e952f800594cfa1d8e17a72d7a82ad0ad61382cc761867efcc1c8a584a09", + "regex": "(?i)^https?\\:\\/\\/sdfgdfgdfgze\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "461c47eef608f56de76837ae948b706bc527a2eb37e4b9530ca5e73283c08e9b", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "654127eef78a98900d780bb2be747a44b4e49f88b32fa0b0ad3510fac51ade07", + "regex": "(?i)^https?\\:\\/\\/nrjfjgfgfdgz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "117c607348d1605537468bfd7b5ffd2b3ca5a74fdfec2e9926ab3dd435cb3d0a", + "regex": "." + }, + { + "hash": "5dc9f015be1e1611d7cd6796bb148f3e05f0e62e85f9d218b2ffdf0fc9b29482", + "regex": "(?i)^https?\\:\\/\\/freepalestine110\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "112be99f84ee299c0ec5c129e1013b8a62d9c84200a483d04762d38694429c18", + "regex": "(?i)^https?\\:\\/\\/eghbqaehgbqaed\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9999fc6b018599aa43fe5008fffdd7ee88b5fcc719a39f39ceff9cd1d4eecb77", + "regex": "(?i)^https?\\:\\/\\/dfsgrgrer3\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b5ee3d4e7dd8a4bc6587b0bf8c49a53d3d3cff829d12da44dd6cab966a297ad", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6268f816915233dcb6132b0f98fb05153e4c66a8768797c6a2e1a6ebe61074fe", + "regex": "(?i)^https?\\:\\/\\/aqhgbeaqheaq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "377d9e766429259ad7a3dfd3bd29a2585fb9e3dc9970b126ec40889c2800a0a6", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "03d9c6bbac47e6fb721323721d9e4edc2d64ea9ac07a2dd89c707c2b973981ed", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "46620184337680c7313ab9aa40526ec6e785cc1e313b54246c5ee479056881de", + "regex": "(?i)^https?\\:\\/\\/aqhgbeaqheaq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fcc68ce539a3389abb69e7fac41a21c2432eb5075356152cf5fd3099e6bb8d18", + "regex": "." + }, + { + "hash": "8133d4358b9401fe8c2a89ef3d17a33f731daad4db4c31831b5db24cd0779b0a", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2466f2c2fa712efa509a3d9bc4e5ecfa09a24846763b873194639a66ee34d6fd", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "eab1e6c9288dafa04f94f99240d5b7ea16f4b696e3b0d6a06b2e000b8cc8d544", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgcva\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "50379cc2caf5359a663204b4223ba352083a7f420503744e43f51ab5379fc7e4", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bqj7gj(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a2e03999a907e9e35c752269d1cfa42f03e4d02b0d82a6be6c94a392dbdcda92", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9e6cdf8273789bce8054d384866d51cb23645d4a197c88cbc72a95e107dd1799", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2ca5f4672a5fe14d4ae15fbf6c6172c13d07f3dbfe689b4e8dc6f6312228bb57", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgcvc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "02b684ab91f5d37f71a99e2541243664c8ceb63856d1f62827a9067380557d6b", + "regex": "(?i)^https?\\:\\/\\/eghbqaehgbqaed\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6c2719b2110d5b826c143e559a8efcb211028d4111d3909f71f46cacd8d1743d", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3a6bcd65d7edaee49bf18d2aa081bb58046a0f38b677db141c6388bae2c1bede", + "regex": "(?i)^https?\\:\\/\\/hgbeqaghbeaqhg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2248e38b7e54ca5348eaa6aa524556e28f2be56c1f6a4221c492bbc773fcb7a6", + "regex": "(?i)^https?\\:\\/\\/netrfgdfgdfgfd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6c386d0988df7b34f33000d6f1dd5e3399ad9505651e6901615de55da016e636", + "regex": "(?i)^https?\\:\\/\\/hgbeqaghbeaqhg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "959d7094534d76295075dd5a526d47db281886c3e066caed3e2f19165b3afbe1", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e77f103004a5bd96a2ca43d1d24be5191fbd7facd399c47fc8feb99c88e0deb3", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "702d11b9097c6223d1f132f50330d5251a3b480d2a995dccf6a0870801f8874e", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "27a2a335b307797f5f7dc9a71a224f07f4966a92621a20a6d9cedaec364a70f7", + "regex": "(?i)^https?\\:\\/\\/myinfo\\-2u\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0c76e2316612086b3a198c6833b97dc4c5af1de49230e43e8b8d9f6aadb9a287", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cbd5217872b8895cafcb15aec5a857c2771c95c4a96712a2ace0a27a6ee3051b", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgcvc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "70e8e31ac67cd888dc577c4ea1bd9834daf6289eaa89f0986386c827d5616677", + "regex": "(?i)^https?\\:\\/\\/metallurist\\-steelfinder\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "246517c968e24bbcc0d42570b0e679138c1e1fd48421dfb70ec342da60e98eba", + "regex": "(?i)^https?\\:\\/\\/myinfo\\-2u\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "43f7e9b136ac651e6fd5147ab18b5db6d361805d7747b7fa016cf477d7d7131f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6899[\\/\\\\]+entrance[\\/\\\\]+page[\\/\\\\]+promotion\\?focusTab\\=copy\\&id\\=0$" + }, + { + "hash": "f5ce425e8c5f7e943800c124a4f511ca2d3799d1a3658ddd2fb89f814dd8a98a", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "71fdb5f4871d180ea597a2466f4e8ae72fca407d6c9a9d61ed20c1026e6c3328", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgcva\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e26a40053f18a20bb97d3eaf9c22ccfc2115f92ef3562e1ee056d418cf83988a", + "regex": "(?i)^https?\\:\\/\\/eqhgbqadhbqa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "65e7a8d14575ef2498de11138737d7fded8e3ab07e3756cfcfe7840b3c551f56", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "278c5d61be9d110df8a474e4fb56c834a9b63ce3982586f4af0dfce128cc4ce9", + "regex": "(?i)^https?\\:\\/\\/hgbeqaghbeaqhg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5ecf39790d521fe3756fec963da04a10b64fbe47fe04bfeca4f4b16ff9640395", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b87ec11b0f1b0fd4cbde8533781573ed8203bd3ddb67dfe06e6c092d7e471fef", + "regex": "." + }, + { + "hash": "8490d86d7344d1283fc88df19e6956189b948ec6a274a7893d3c65531d37fb9c", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "023a34789253cd812ffdf9195cbde5b2b22f11a0dba35519503a06871c6d59fc", + "regex": "(?i)^https?\\:\\/\\/aqhgbeaqheaq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "558d57a2e6278348e0c44dfd4d53221aa0a964ecb6e1ecc39b14ec3db52d5520", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8797a41d0a6cfb286ed365df712f28c550318f13b17aff99fb1d966a7e6fa730", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cdf0ebdf180f33a52f0f1aca0119e2630ff9cbb703772ff3bfd0bcce2a81e257", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e5596c2a8eb2d7618d5d751d7fb08fe9e252a34849ffca25382a8ac79043f066", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "26cff989d317d54b2b642bb12d5b3e080254a4fc9ed3039ea9f57605bf5367fb", + "regex": "(?i)^https?\\:\\/\\/fdvqagaqehg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b610a5f57c10c395493c2bc8728dd63e88109402155941d3c9f06843b26b113a", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgcva\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "04d4fc0cf57d0041979bf574c5da0a9bc10de3ba05e394d2552e45f5a3e3eca9", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "70548a8a6dbd68602ae4033399ee0aed540d243910ea9bc8d04b3267b4dc4893", + "regex": "(?i)^https?\\:\\/\\/amazon\\.dbkmenigen\\.com\\%E2\\%88\\%95pjdzm\\%E2\\%88\\%95scbgjpqix\\%E2\\%88\\%95rfyky\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ekkmaodtmd\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dcba4edaee98b7c29d43f11fda5545b5bbdd821414777c97520051a7562e846d", + "regex": "(?i)^https?\\:\\/\\/netrfgdfgdfgfd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "acc868eeeebb0b755c61a346e88f044bd7296085f0ece943912a863d7c318f6f", + "regex": "(?i)^https?\\:\\/\\/eghbqaehgbqaed\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0a21472166bfb978b1c0f2f2b2fef8ae224fdb755afbf6ae42ad42dc0fdd8578", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2e82c5b1e758919783f4ad824e1b9d5bd005c61a8ce5f257f4d66503ab95ad12", + "regex": "(?i)^https?\\:\\/\\/fs36f\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6d75931b511b693ad6a119eaa91430a0bedd4f05fdccaa4ce4abb834e819b15f", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2e04b3ad49fc5c2b06d075e805929a54f5815cc73faefe2223b4a2fe34e09b99", + "regex": "(?i)^https?\\:\\/\\/fdvqagaqehg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "401eae2264aa752fb34735231cb799a15d5400fde81a3bd9b376878f3a4501b3", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2ca52856c3974d8c30db776b69a6a2519ea6050caf8607e39600c3f065c567d9", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b3aa47136efc21209af0da1f96a9a369318ea831e2372c4d06fac57ead8f53ac", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4760ae3ab3362b8b71998f0f32f88186f5c3c44aadd324aec84b7a3c6587a554", + "regex": "(?i)^https?\\:\\/\\/myinfo\\-2u\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7954d191618a08d994ff55d1bf87309131ccb8719110d5fdd90d56ddb44734f2", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1eaf0a5bcf41a0b1176150dfd172ba5115cba022835b2c9eb8ed22a2007bc4c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "9b3b3a1d4c96a8dc0eb2289ab3e5ee03fa09317e9f5bf40457b89c40fdb9044b", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgcva\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "de8edaee3ce44e7eef03bccddfcce2475ba16062c081846dd0b10808febd48ad", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "dd21cf26b1feee36e0db9da38c9714f6eb4fce1a50327df0cb25bd072b891618", + "regex": "(?i)^https?\\:\\/\\/dfghdfgjkdfgdfguidfguidfguiuidfdfui\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b974fe21be9befa23400b34522db411d94cc8b39eb69d972e6cd80cb29b5f01c", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7771e24c651b85c0e7ee0cf43a1478f0c716716392c4e7646bbacf7a24fea205", + "regex": "(?i)^https?\\:\\/\\/ewgfergregr\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4a5516e4ffd053b0bc1e2c189bfa91942c0b549f8cdc19f6c9e3ad515a78f8ed", + "regex": "(?i)^https?\\:\\/\\/netsrgdfgdfgfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "dc0505ba65845e8337a5c8bd9a76952103fbbf26ab3921d2adfab909f8f783da", + "regex": "(?i)^https?\\:\\/\\/eghbqaehgbqaed\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "317dd236a4f1b6bc1b4dbf9b786830284af9e2ecd3697e296ef2598920d0a49e", + "regex": "(?i)^https?\\:\\/\\/myinfo\\-2u\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4f2abf6bede1366cc331967e1e05e95f67370838ab78ea6cf45b77d057ba6cab", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b3a13b1a7afa574f0694c53fd485fffdc32f8c9fa2e92cd032eb38d4a607efc1", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0975ef7344c1f579d40d33159beddd396393b0722bbec756bbb6d4d49cf35796", + "regex": "(?i)^https?\\:\\/\\/fdvqagaqehg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ff64bad6a08316722487836258a16aeac4dfbb9a82c6f63ce61e590f56b987e3", + "regex": "(?i)^https?\\:\\/\\/netsrgdfgdfgfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "697b51de3aa27a8719da70960afaa99a8afd7cfc27264f19a089228e6bbde288", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a3e5c30fa6f91bea4a45bbdc4c599b1a702ce5b457ab65563ff7791dddf2aa1f", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c45584b025946af992ccec5d2632c1e16037e0bdc1d5890f4569aec797b0679b", + "regex": "(?i)^https?\\:\\/\\/netsrgdfgdfgfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c841c6fc4893aa766d10ea3d0289ece6957c863dd09abfcaf926c832fee9169c", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cfc940b12be26ae080ea7a3c9f11e6e0bd06a4c5a43030beeee1d48ce8ad1d98", + "regex": "(?i)^https?\\:\\/\\/freepalestine110\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1e35e27cad3f48404e36ca05844abe4cfd59559e800e8354416ef2ccf3a9e5cc", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "50156c0d5c2ebce32250e885bb1f5fc238882492150d4a19c75fee32491abec9", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7447be8d728db3e2b58accc8ae2fe96b54791d59b549a0040f03cde58816dd51", + "regex": "." + }, + { + "hash": "8d474b2f3dca6d9b8543b4aa3ab23847f95502bc598cc388956b65e79b6d5ee4", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b4aeb18ee739d7e86f3f19c8534ca81f5e0757bb5c61b4bf7592c4a21cc7a305", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0f1ffbf291bdfd0c93df9f79ca02074d90d719815db7cb78ad36150310d5ab2f", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "96e588f7bf1383d44b835b9868db3237898d6e4fe3141cfc5b712fa358084504", + "regex": "(?i)^https?\\:\\/\\/eghbqaehgbqaed\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e5c299795754f471935bb514f91052ac725aaf918bf3286690593cd353c14ed7", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1190b0d65460035041dbc1ba4bbdea874b75628f7fbff33c2f2b1679aed1ead7", + "regex": "(?i)^https?\\:\\/\\/hbqahqae\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8c15dc7b4fe6d7f3eeababee6f0bc6a9d9d9e6074eafdb562fddc4980245ce7c", + "regex": "(?i)^https?\\:\\/\\/freepalestine110\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5ce86f781077de92e4b55ef929161e2abf8804731794417677fdd0e2870080c5", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ee3ca57ec320d8ab204fc34d542d501bf50d952414b2c119e687d2e3f4e72f03", + "regex": "(?i)^https?\\:\\/\\/top\\-ha\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e82449f3ce0c67cfca72c93e8a9feb36a9260a1d0f265368e410fc28f4f1feff", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4991a904d4551322b8d88d514e94729d878da56a369e29ef09904d697210c61a", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a7b2397f2fa5a80962caffb833c8462c3522c8dc1f1b12e0d60be44f189c5a35", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7feeb433f74b6b84c62daf3051a03bf590e64e172ea86aba72b0e5c23afc12cd", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "803cb9ed490464975f47914c89e920c7381cb2ec0e9d274de2c63b9debfca909", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "61ea43c2f951f6c278c2f6b4f448ba19e62b496acbbd4a4fd96e0362dce20436", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zzbabcde(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f151bd04f4756f3f53622c1d6cdaa6d1ed74bd2850996c5bd1805575883f158f", + "regex": "." + }, + { + "hash": "cf05b72c5a0c97aabc2c9b1315b46b33bee5109f140ca0587212e14d04f878d7", + "regex": "(?i)^https?\\:\\/\\/youtubetamilanyt\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "96a2e5ee6e9a938e4bbc99899fca9031ab3650a9999797b8b05333f730acf3ac", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "154733c7892f98895ce48cab5f09fc394d8c0504a5ab43cd2f85287e13b62fd1", + "regex": "(?i)^https?\\:\\/\\/qeahbqeahbqea\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "54ed26507d2731cfb87f95f082a20e9d2bd8c9b735d6de23bf0d173542429598", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e4afbc37348ab810aff700d0db1cafffa699c4540fb13bd30d0298512be9decc", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d7c577da9c2a8895ec093906b40d68abbe10de5ac1582373be56dfb5558a5a80", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1fb2e2aafa0bd60e5fc8a5b69657e5502ea743ea13367ae977616272478915ae", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Konto[\\/\\\\]+ID" + }, + { + "hash": "0279eb799581214db348b2f78eb3fd55646ba6cae0e5fe75c6a16ae1a55f3b27", + "regex": "." + }, + { + "hash": "90cbf0c3e14da176dd4fe22a9f1d7450563d02773b22cecbc2b369aa75fe359f", + "regex": "(?i)^https?\\:\\/\\/top\\-ha\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "056af423a28cba732e72a1295e9c5c81103a81ab7f367f60c9a59c01cb576cec", + "regex": "(?i)^https?\\:\\/\\/qaeghbqaeheqah\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d2c7e49f3ab99fbf9a3d281a04b81fe15b3b81834ffaac5fa40518771ca4b125", + "regex": "." + }, + { + "hash": "f7b4c24f74c1a5eda08c7ef6e31ba40aaee668c2991e3420c997e731becaa9c4", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4398fa61d9488451a3f61caf5c4f39e8458c3e3076b91ed26e104f9f293e1d36", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "71b6a59786f12f0242b71b116f35646f9b3243cc9f5fa36dc03064ba5ce29392", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8603c9f58a4bea26edc310cabf8045a001e8a692879c7b91982c0bc59c2342e5", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "24101a46fffa11a1a76fdd23d959579abf881d1109e248ceff4392407e785d8d", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5e34138f005f88799b515ab3cf9344c694959154e4da964cd649ff81615e69c1", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7df569d66518bd8f149b3249f9f841922fedfe2a03c5f1420fde2fcc1ee6ab35", + "regex": "(?i)^https?\\:\\/\\/dfghdfgjkdfgdfguidfguidfguiuidfdfui\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "aacb6926fbcffbe0adf1edc6988bfa5328bc95cdf4b775565906d12826335747", + "regex": "(?i)^https?\\:\\/\\/dds965\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cb51acf3576687a26bc98e579424154a73c81f812b30812f2af0d287ef2f4336", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "34f5a35e7a16b65c7fb00786b66928624be348c1cc183ec025dbcd0aa9613403", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a68f455cfb98c8b0b130201f8a456a82b9b70fc5e3c8fe01d7f784e043b58a73", + "regex": "(?i)^https?\\:\\/\\/youtubetamilanyt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "715020800cbe1e2a02e642613ee851a3bb30327cfeb1c3944ed6c29ae8f58c03", + "regex": "(?i)^https?\\:\\/\\/top\\-ha\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0aa9ae918627753a2070ba2b1bfbe45dbf74cbd80cbaca77cde3af5b1b4c4e6b", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "642c03241b0eda5f3d4ae161681f4ff463d1c142a9053c09c393a62a6a01404d", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8700af54cc6b488a4586eeda8fb675ab3ba67d24d1b5df402bd6f6e700a48c00", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "39d2c518dfeec4986d442ce97d30fbeaf7c7bc65fbf551bb55a2838c733357be", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e88149fb291bb85d4914b037184d96771dc2705f010516bf02887a027d6c3ae8", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7c00a13004108d0900b8337271e9a7fad36d21b6016da7c534e8750323b123bc", + "regex": "(?i)^https?\\:\\/\\/dds965\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e797ec6f3c7db275342197150951e38ba5fa4b08d8548a4680427eeef92a7e01", + "regex": "." + }, + { + "hash": "9ce0702a4b913ecdb22e5f25e14d4c3f9530916299e7a852093f42b3bc3bc888", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "38cfb970742461bd989a91e184507cb72f2fa03cdf2ec8c533bdafa0afc8edb6", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "329da24bb8dc2778a9254f16b5bfef263a6696b3200f9b2c1f36b271ee328fcc", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8c1fb1e8ff168688e2de2645bfd8ce9435f74c0fadf20eeb8ce9a8eff0c8eefc", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7308ba774e4d5292558e2a0480a42cbc22db647e56169e2b0a061272d773a40e", + "regex": "(?i)^https?\\:\\/\\/netdfhfghfghg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "69a0a192b7828a01bef4ae04171c79b3195ba97f8667651c5de36c26e952ff1e", + "regex": "(?i)^https?\\:\\/\\/dfghdfgjkdfgdfguidfguidfguiuidfdfui\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "01c5f690b54e8d6445d2685b46c1d4ab701dcb4a2b5a13f5df69a256147cdb3b", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "06fb4d8c09303d50dfb2436cd88f993c84411180e693376610327f48c9a376fe", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "12a2c49b42b98d8300e18f8cc701f62a35576baa444eef38c833620c2abb881a", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "eac4cbfda69b1c16c3e69cb32d8bf9732b0c1537379a5e43d739c21a8b1ebf4d", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6422996a7335ca0c5f624f4dce75c5d395cb662f749fd0c762e869fa9173fd6d", + "regex": "." + }, + { + "hash": "01314fe5906d5d4ac78b2dcef2dddbe56cf18e729d5a37812d4a8775eb24d64e", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fda1f0a145b8431259090faefb7b3a166f47aa6f58f8f9cc6408782fc95c85a1", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6e25c75a727638d6d9307fec7df7bae7e3da974fd3907fb9f45981c97bdef8fb", + "regex": "(?i)^https?\\:\\/\\/fgeaqeaqh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "265cc6da9d289af2c89bc41da6dbbb4bce61b176c52ea05aa5ac213a1158b312", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "09e8da212b94397ef108d151e8ea195eb165f09af2f0227a6e20c72dbc747765", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d6e5b84e643e33d4d6904fbf442283fdd24d3741ee646b0817a30c125e6ab5e5", + "regex": "(?i)^https?\\:\\/\\/youtubetamilanyt\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7a0e86ae93ea3518aadfe443450d1ca6a5482732d62050976414d8034f8b10a8", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a48b1ea74fd1365358a2c6301d33a06504aa87b2dbed07e955de9836a5ab620d", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4d445d623be477d69b0b02ab750059357a5576f227c3129a81420b9127e0c26d", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "048e45a58bec1a6d1858e8ea8b2758acc5ddd260f5122f9fc835289aa133a891", + "regex": "(?i)^https?\\:\\/\\/qeahgqadh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "23fa037d2abfead8dcd4619492e50a95918291c3c02cd0e6360edb73458cc911", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6aa8c44f4e655ebb0e5981aaadf1423186a3a6af32c3449242be34d72968a370", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b8544107ceefd84f01c2114b3fa79d1a77654dd4dfc441221833c7aabe590da2", + "regex": "(?i)^https?\\:\\/\\/qaeghbqaeheqah\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "71a820a0e6947e2e2ace6e7376a5bf89c2dc3e00d8804e8e5f9ba7d384340b51", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9918c5e6e2ce31cd12cdcf8027dfa2159b57e8dfec9c22267a95bafdf1088cee", + "regex": "(?i)^https?\\:\\/\\/dds965\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f2369caba73be486c47c40bd74a2b99a5aa328f9bfdad9740419044b25fb1a17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bittrex" + }, + { + "hash": "eae1bcdfc8bec56b801d7b366abfac0957488b8036c09f90efa0d101a698ff00", + "regex": "(?i)^https?\\:\\/\\/netrfgdfgdfgfd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c6d8083b3bdc8d4056d9e2301ed6e64df49e0b6056fb4c5f46ba958e04cc43de", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "37dfa8a4d9708ed04231513ba338d533c1bb43077e9e5873709507768ed59ef4", + "regex": "." + }, + { + "hash": "8b2cdadbe01e6c08f939617a8407b7c47f3fc8ff7edf6ce4bf7c3d486b61a8e6", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b464607e177f702647f933ce99a352136424064fe6846c0f9b63c887a953c9c6", + "regex": "(?i)^https?\\:\\/\\/qeahbqeahbqea\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4afdd95f855532a0b60e60022867438a0f84d923079795e3d7a689422bc69b33", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "67e643f67c7c4e8105b36e5ea3134575a935609a394305bd3cf4d5d7eca55c27", + "regex": "(?i)^https?\\:\\/\\/fdvqagaqehg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "af5f4a72bb813ff8671a6f18d7e77c3b26458b26585e664f3ffd361002448fb0", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a8122cb254f86aa4e3ebfa5aa4f5fb2ee4e52c66c8b905a74b4275823c46f0c2", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "080a307fe49bb1e210a94e8c44fdb418a51fd5227199cf34cd5db637bf5cefb9", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e315ecd1edea66e64015331030898fd086098f67e15e44273d7c8f81e29f6c1e", + "regex": "." + }, + { + "hash": "813cf63982e61d84280bee1a6d7734684b16bc06f9181cd1f241f16333adbbf0", + "regex": "." + }, + { + "hash": "c9fe73b5bcc9429dd7815e90a53690aec7b5e68b3f4aa4eca67dcbf724ad5920", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6c1ebc190e0caaa2dc78846ca164971d92defddfef8f243f6e565e12f992f939", + "regex": "(?i)^https?\\:\\/\\/mega389ss66\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3af0144d881590441f000294c04623779114f9013d42edb7da2c4562986343b4", + "regex": "(?i)^https?\\:\\/\\/pub\\-d46e733020f440559de44d0e7d1cc544\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "03e02a8b4ecc850f4462a82b9ef94ae1d470bb2f9584e5db2ef74a208dff1873", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e39b7acfbadaab6307acdd6723256f59dc74e60b517a657b5163bad58905e314", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2bcc989b8c59951f5804c4de027ec1e5b21288e602756a33072b8a367e38b73d", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b5a4a83602d81c49166d65af9841e889596072fd5e0714cd8b89403404df21c6", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "42804f9ad4411aa696c6b31213f1b75748cce1acfa66e29677311f16a1fdcc27", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "73019bb4ac2d696787018b19c594c0d77fde70cee855bf864790136c030d8bd9", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgcvc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "00e76eb45b95548902de5e813ae325fd1ced97546eeb2336b11b913028473395", + "regex": "(?i)^https?\\:\\/\\/qeahbqeahbqea\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c87326a0799d11815a0b6b230a291027817616c8614327ed82870b15e2db454e", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "4620d8576e389712933ea1f62fbbbbbcb6488ac4e635a068a126f42cc0617cff", + "regex": "(?i)^https?\\:\\/\\/eghbqaehgbqaed\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e5b7ea7c4d0dbb604482a8f2f058f97ae16458d62e565b1e5f2ecc4d4da3697f", + "regex": "(?i)^https?\\:\\/\\/sdfgdfgdfgze\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "79fddb2b5d4c25bbfc7daa201118cc2a68bbaca6c25d790f71cc05d31407db80", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iiion0(?:\\?|$)" + }, + { + "hash": "84d269d6bd58e8184b270e3c8bacefe935bc60543deace036af511e8b003e512", + "regex": "(?i)^https?\\:\\/\\/dds965\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "10baf3cd6b7d82113aefbfe52a76141553f4947a950fb2b6f3afd15f93c70a9c", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c6ad33672f898c1e838c3d5e0ddcab4ad5885df78d45fe6315a665fd55daecc4", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "59b7f73ec4b73bb6bdee0dc1bd6e78ba3edad399392ef5afb945dd760130a61e", + "regex": "." + }, + { + "hash": "5ab340e063bd6f645e2b143a0b1730a5a25ce1d0948f5338202e86a8f4a8ffdd", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0c01febd779961f699ec8871e6b199dd71ea2ebb74bb5d0aae84bfc45f4af20e", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ec0c5eb6ab8f900f75dd09850068368a99fa13556bc41241d7918a0b7f940a89", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3a49e8d987bbd83af3b21fb2b29849ac4d046dc73436a16831a9d0753e78c69c", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "90d1a68503e31fb5ccde042c0afa8a45eb7862b77dde4a0b6d8391f9e9956cb4", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "31601d6787bfc0b436d215008d6e2f289dd1cc39b0e437ebd1ee1b7041b96abc", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "53fd63bcfce42b18ae62f3379ca34eb29e440b154844d1b1e7cb78b80d6c75c0", + "regex": "(?i)^https?\\:\\/\\/fgeaqeaqh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e466996c27735a0d2a772f92c51d42a9a14b539c4a641cacfe93798ecd6237ab", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2a8d4c6938b33f095c7c28f160ca14b610b839378eeed4c42623f45fd2c2dee3", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b835c9c0254e9d82516ca1d60ee3f175ee5d0834d4931f237709397e4bfcd734", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgcva\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5b84ec9c616937b41ae8355b35b21cb49259bbfb78afed8370415b0b6b837761", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ea9bdbb2bda9ad4def3194ef082ae1912e48f319e582ef3494511836aabcf955", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0218009726c02c4d4d9e4c0a778c5b47949e03267a51b928d01c3a94e333b1aa", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "15a847157baafed2b34329a3d244603d6f25f684b46b9c760c71195ce252457d", + "regex": "(?i)^https?\\:\\/\\/youtubetamilanyt\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "76ed5c08cfc4df07992848d190a39cee623522753bad0e10d8b88f2c724a0a26", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3f6701a7166b7605b30373fed2e08763bc1b3ea0955895655efbec317395b8c7", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5ab26b7afd3cd6b699f7bfdc3dbc1128406e678de99c8b20e4df4d709e5d5184", + "regex": "." + }, + { + "hash": "e765572af9f5d2e6c0f8b3e6ec484b85027157b9ec7ff7a18cbe54ba291ba1e9", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ff174b6c04973d89fea9e36612339856e8dbd5f469872bb50735aee87e6e910b", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5f89fe319963b8548481edc8c7cbb6a870c4e5b28fcaf8564bfbe98b4bd5d426", + "regex": "(?i)^https?\\:\\/\\/fgeaqeaqh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3ff783532dc973557b903a6980899f01df3160ec81f0a6bcba967cd0794e17ed", + "regex": "(?i)^https?\\:\\/\\/fs36f\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "27ecd5ed6714182767ff32cbcbba15b8d18ec5f656d3efc74734868fd0b659ba", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8c85b4c7a78bc2777637502733ee8013c1d2f2d3f8395dc29c919ba283fb4d83", + "regex": "(?i)^https?\\:\\/\\/qeahbqeahbqea\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "94b63f2be768df5fd97079f1e54f01f3fc6d816ab215929a0bc74996264ee808", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ea86ec9c06f0d14a719af2f8b06ec341421b8cea5444ed256aa57d648a82be9f", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgcva\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5898a08f0660e1e87608b79795fb11893912caf8fd977148d60d896d2738ec8e", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "01a2a8c73661202a2541cf77f07d59073a20820e86b6cd22081f1dd76f955a75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+JLV1bakakPOStByQTi6G(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d9da0c612bed31f8ad4a65e13db5b4697b16e4486e45ae850d44a2ffd14c53a6", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ef39009c5ebd5d61aa2a91ba881e3f019f38452e2c7858727f53062264944979", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "056c048a6bd7d8239bc87cbe42f1aef901ba24ea6bef6577e7009c4e11ea914d", + "regex": "(?i)^https?\\:\\/\\/ewgfergregr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "705e4c5b7b88c8d2b03d9edad7417434977f70253312876a73dcccb8cf74e527", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgcva\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1899b9a1c3ea8544ee0d8375be9ac39c062d4d1b615f8ef23f41036d51190a2d", + "regex": "(?i)^https?\\:\\/\\/top\\-ha\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c8fb3fefdedbf271c36775e42959c62bae302220eff0c1f6f10442d32bd38563", + "regex": "(?i)^https?\\:\\/\\/qeahbqeahbqea\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "976b610ecd4de37d0adf59a46a68900593245859a36be22fcf65678ddc159636", + "regex": "(?i)^https?\\:\\/\\/myinfo\\-2u\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2a8c73769445e11b63a9a202658ff4fbca239a1764b8a08d4cbf3fe3e19c1625", + "regex": "(?i)^https?\\:\\/\\/netsrgdfgdfgfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dfe510393c5b0ca62e3983393f186bfe86237662fc269415d6d8d936f8dacfda", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgcvc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6cb9dafface54760cd2aaf022202edfced50ac8cac705d82900bc66c2adc0349", + "regex": "(?i)^https?\\:\\/\\/nerfgdfgdfgfg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "028e76b4228a899716baa5407eb9f796774b8ed3fcb64a5486e919aca3bc62e4", + "regex": "(?i)^https?\\:\\/\\/fs36f\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "554cd771f93d1107d4758e927c9f0d4bd43006fa0c9db868245b1abacddace19", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ed6b127d47998589a4713a2027d2262c935cd3e4c2eab3c91aec2c0ce18aba30", + "regex": "(?i)^https?\\:\\/\\/windstrider\\-skyhunter\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6a8da9d0b8c280557cf5c16ecc5b5d106fd8300b08e8ebfc4362056b1669d78c", + "regex": "(?i)^https?\\:\\/\\/truxoamxhtokasexcrtunzag\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "870052837593e1f056a2ae6a629064f068b2b7048df819a8133771625d7f5bdc", + "regex": "(?i)^https?\\:\\/\\/dfghdfgjkdfgdfguidfguidfguiuidfdfui\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "234b3b894e701d4541cd1583722e559ea223aca7b4b6a11ef7ba9bd33b18f1bb", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c9ebe9222dddb550c41eccbc7b4b6a3099d1085e6bf221ba5d96258651a91614", + "regex": "(?i)^https?\\:\\/\\/fgeaqeaqh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b590d1246689f22211e70f412f67c447de8918c8101c904392ed35c58951d6bb", + "regex": "(?i)^https?\\:\\/\\/qeahgqadh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "36a61e331909048582892f209fa7e09ffa9fa30d8f968551102d95184440c6e3", + "regex": "(?i)^https?\\:\\/\\/fdvqagaqehg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "79e019f0b72e6220221dd4b5a352615107b51005672688ccfb9d1d53c68867ff", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahgbaqe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e16835a5bd6003865456ad27ccd14d981a836f7b9324db289fe2ec89130a36c6", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "137940b46c45efd7c64c17f8855def1615d33649e9f578b318365320a2978a26", + "regex": "(?i)^https?\\:\\/\\/qehgbaqadhgb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "033705d0ccc0e61e90926b5f8ec454e8e52cd21c33e9faca5da72064519e2bae", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9f04d5bd5bfd4beaf2e3235e579b427c65df66f741f87d353543b549b8809ff3", + "regex": "." + }, + { + "hash": "9879ec8207eaa7b22ad49133cad8bfa576246c15418fc172cbd28d41bb5fd951", + "regex": "(?i)^https?\\:\\/\\/eqagheqahqae\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "57bfe04f36d05d74830e09ed69722c6a315892358d8155995fde6d91720ded77", + "regex": "(?i)^https?\\:\\/\\/qaeghbqaeheqah\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "352de3e06f43b23e4578003129ca22769437185cc5e7b96e414c0ff3c521b37f", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaehbqae\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7651decc7b6a65589ad243cfe2031b3e269788287d2ca517bb3b7dd1c24dd55c", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8f518ac428f473f15086a40a7fa8f7cce4c62303295ccec9c4dbfc97834b241c", + "regex": "(?i)^https?\\:\\/\\/netsrgdfgdfgfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "218c8f17e51ac72061933f867b2b607a2ba249cb47a123bc50d3f27a77caa4f8", + "regex": "(?i)^https?\\:\\/\\/ewgfergregr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e3931bcc986f3dd76e5c36b626e6462879e3bcd681c04436b3dd1bd788cf32ef", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bdc39200c760f30cb6e01f831915aadb3053f3ce1173d31339d4f8ce2022cd9f", + "regex": "(?i)^https?\\:\\/\\/netrfgdfgdfgfd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bb6c99eda10fff5ac076ba64c80fb8d0aa7448b58a1afed291b34e8fa44ef7c1", + "regex": "(?i)^https?\\:\\/\\/youtubetamilanyt\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5824c5ed9f881b7f5a658f24e36567a59c8b389331de6bf8d69b1305f450597e", + "regex": "(?i)^https?\\:\\/\\/fs36f\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f7f9e3db4486cff9fe0c8c93b360ffc0a05262f79707687fa834c284db677d73", + "regex": "(?i)^https?\\:\\/\\/aqhgbeaqheaq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "64d8e1f9a7aa828965526949fca9579544a3e71363f4c1d2acc740272aea6ee4", + "regex": "(?i)^https?\\:\\/\\/metalshaper\\-alloyfinder\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c2c233ca021a9b144ed4150fe0576c72b0cacfc4e489c181c9fa3a6d0e346365", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d805e21b27ba0e5fffd04065ea579d93eb7f29704b789cd70b47348735561f8e", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgvcbh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ffcab248936b612920b13b98552024ca88620070fe3668609e251361760f3d8e", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "852f6eeb9fa200f78cd1855a0ce70cb7f495fa0aaceb1c6c17d490234ce87e5f", + "regex": "(?i)^https?\\:\\/\\/hgbeqaghbeaqhg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a851d9861efe305df3aa7461c0c93b67475920b279c41ed3df7f3d5981644f83", + "regex": "(?i)^https?\\:\\/\\/qeahgqadh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ac6d0a8ce80d8d6c5146f5d0738843367649be34908a96f792957ddadf0b7018", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "674ad88f10e5f6896f1b1847d7ebbb3d0e721a177db2e41c0bf23decadb8064d", + "regex": "(?i)^https?\\:\\/\\/fdvqagaqehg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7b73b07c9c9209d13524e416fe6083caf165369bab1b06345dcb3361eabd7dff", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "417848956afa63192bdd283e68b7e9e5f4800daae02352e26079d645a05c6cae", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "dcc149454dc3e34ac1396c5c3a0af54280dc3822f7cdca242f5139bc4745cd68", + "regex": "(?i)^https?\\:\\/\\/nrjfjgfgfdgz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "655101225e8392d15775fb578a8b41b837862c6b3f8c72e892160e5aec7eb5eb", + "regex": "(?i)^https?\\:\\/\\/eaqgeaqgwqdx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f8233948adb8f40a6904a03370dd3cdfb9266643b7093a0b7e27bedd39affc77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+favicon\\.ico(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "6ff39465a30ceb15056eadd1006c7dc837d2b9b76afd58bed242a124bee98723", + "regex": "(?i)^https?\\:\\/\\/enrtgdfgdfgdfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b98d4b5557299e0b6e7eb10425a0db5a3a61c7218b7eafef087dc7ccc810d5fb", + "regex": "(?i)^https?\\:\\/\\/hqadhqaheaqd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cf056985268e9a2202b0281948a8148b52233c38a62f9ead82222ea299874d81", + "regex": "(?i)^https?\\:\\/\\/dds965\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "76de6689a3b5fd94a162156fea327faafb6d0812161a772fc961c9ee5cae1e1c", + "regex": "(?i)^https?\\:\\/\\/dsfsddohjsfo4789\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3264b60c0118cf36171113801f92e87eeab2a88907cbe6a30e797d79ffe65500", + "regex": "(?i)^https?\\:\\/\\/metallurist\\-steelfinder\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e6db60ac4422730a3349018b21e079b3a05577ad39f823e21c95eaa5d1e36139", + "regex": "(?i)^https?\\:\\/\\/rootwalker\\-earthbinder\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "341cd15910d64197c06c65f5a648faec6fa35a42b15b46f47c84662b530efb9a", + "regex": "(?i)^https?\\:\\/\\/top\\-ha\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8181aa21d6ab16e338183b40ff50cde74d4a436615a1dfe01cead3e535ac92f6", + "regex": "." + }, + { + "hash": "7e963ac21c999d7f9f037fc3da8b809e365ef9c51cc2dc16c2d123a80de725a1", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "78abf63671655b4933aa6886dc0ff0ebdfa8740e29329624320ec9dbcc781759", + "regex": "(?i)^https?\\:\\/\\/nertdrfhfghfgh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ecf2fbfda8923b510ce6f0f333bd03629dc5407a040612b9a8ecedd379117c0a", + "regex": "(?i)^https?\\:\\/\\/nfghdftyfg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c3622ec3afc1cd7817c7e3e42a8b781418a635e0552ae17ad076ebf4d0c250a0", + "regex": "(?i)^https?\\:\\/\\/dds965\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "659e7775aa900763358602b1316fca05b834a48d03c3192d6625e2c752a414d8", + "regex": "(?i)^https?\\:\\/\\/nrjfjgfgfdgz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "05c1804511ec6f20f66ca5b970efe792726dad5ab55e9a098f3c4018f606f88b", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e9fe3791d899dc98981537a0085e5fc342ed7850bf2d10d31aa0ebb4607d563c", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqaghqeag\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b1b0f20a2397111cd72515d5d0eb2ae3af4a5300b7285ccc6694ee24f1d85f1b", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4dae6c1daf60c1cf61dd55d0263e8855bc6cca13c64ecd3f57b07c90d1665d32", + "regex": "(?i)^https?\\:\\/\\/dds965\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "89d5bb2f0cc7c40c408e2c84be72bd6e2e074680f7deb93d269e94195731435c", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgfdg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "efecb0d744c3a24ceabbb628845ff2437113bb57f75033d9e54476cf636aa16e", + "regex": "(?i)^https?\\:\\/\\/fdvqagaqehg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3fb34aae2bb9687212148710e6901d6aebf72e9dd633b77bd2e311d0d40bd422", + "regex": "(?i)^https?\\:\\/\\/netfgdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "19e02a030556d4b2be0b2b66cdbe1b3409007486d8f92c513cbb8aa84d77f6e3", + "regex": "(?i)^https?\\:\\/\\/synapserunner\\-neurontracker\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6f57990d3d7043cd354f41ca9bbe91dba03d7794da5413bbb09ed9a44a74a81a", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgcva\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7d2b75ae06f3d900b4a6b3003df4fc239e5fa63ab5f3117181d594a38262e551", + "regex": "(?i)^https?\\:\\/\\/dfbdbdfbd2\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d6a75a82317674b45544b1a4ba41fdcc4aad4fb338cbf4128abd2676ff85fe72", + "regex": "(?i)^https?\\:\\/\\/avdfghfghfghg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "308d2931fff73d042ebc45dd5bb96a407e9e7750a812e3874d33be9e1f8b7257", + "regex": "(?i)^https?\\:\\/\\/nrjfjgfgfdgz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2285055e7c9c2cefb55e0d69f9c9277a926e5e0b765b1d3f22e46e367abaeb59", + "regex": "(?i)^https?\\:\\/\\/netfgikdfkgkdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a30ff5e5f2c4be4cc66bf423fcde77062816898fbfef22dc8ab9fb1420d600e1", + "regex": "(?i)^https?\\:\\/\\/nrjfjgfgfdgz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fe6059f0e579836a7e3066980bfcd9f7e82d88b6bbe266f17ab6eb7efc5ed436", + "regex": "." + }, + { + "hash": "f9d882c15ce72d69947326ef5e01bb8d90dc3a407027124d6c164c32b6b438d0", + "regex": "(?i)^https?\\:\\/\\/msngrcall80765666\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4245d22bb49732978a1512cd83f51ae677617b75edfd9f40869f1ae8ec40f159", + "regex": "(?i)^https?\\:\\/\\/uokcasythruozadabtryza\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f93fa1b9406f84c17a499fdb7c14396b9ec1d4954e9fc95ea1dc7db29f51d", + "regex": "." + }, + { + "hash": "4e7a0d5ab01c087312fcfcc6a937030a2e51533eb98013fbda581b75b1efce1f", + "regex": "(?i)^https?\\:\\/\\/videoxhot19\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "823fe134611a94ae3fe28ca4f96bf37bfca26e30a44e5bff7049f9e0ced160d9", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-manche\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cd74d62d4d323e714f6533a139db9bb14ab35fd5492d945f7cff527c4561d07b", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "594380671481bd5eee96ee0db6fe102f5cdf36b5c797fb302396e6ba283e06e6", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2ec2965d132b70a1058b27bb8b046cf7b12d11f421c3d8b3542eaf733c1ac615", + "regex": "." + }, + { + "hash": "e38f0ef3cbe27bbee3806ae76e9ee8d3c6c6b552fbcfc5a87a7354754e4f0a08", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-agatha\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0fdd87fc26fc276f8a0a6f9643fde6fa26847601667326fde9f24b6c9c5cd780", + "regex": "(?i)^https?\\:\\/\\/femme\\-cherche\\-plan\\-cul\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d841ba14b1210843a14f2a03e412dce1b470739ac983ea986703271e308fac12", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-liege\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b532dba702cd8b3721ebbb7f25a6c762b22be07e0a59a156a89f0299629a07d1", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelie\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6b6743b602cc94f7949c0eaeb6f45701b974d2283bdc6c92af959a46c2ee5eff", + "regex": "(?i)^https?\\:\\/\\/hotvideosx88\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3bb84fb7f814274e22a37cc16daf7182cfe6d6e173dec7d807112bf82cdfd6f2", + "regex": "(?i)^https?\\:\\/\\/love4you69\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "26391ea67daa65f39a65fa12522a8b26cb1350c3388c4d9199b02fe9c7ff51b8", + "regex": "." + }, + { + "hash": "deda22f2e05c7c18aa8168f525bd27996ad2d4621f8b50017a60ae2a88c545ff", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-sur\\-metz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1bd3baf1c043d11e6136f346bddf5fdecb9d7e4337fc1694d0fd214ead9e0f59", + "regex": "(?i)^https?\\:\\/\\/requirecenter\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Home[\\/\\\\]+Index(?:\\?|$)" + }, + { + "hash": "d3f67c498c49dfd3c605233d131d1c4edf00dc018d82e33cb3daaf2c0214b20a", + "regex": "." + }, + { + "hash": "59a57c5dab40eb30d041a332e6799d69c2c35d58a8626a266872ea767d17e693", + "regex": "(?i)^https?\\:\\/\\/hotvideosx88\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cc8a39a0e757cedd2d87481f08ec9569d4f9a3dbe8296d797a309ec682017446", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?nVfdgF1WJS$" + }, + { + "hash": "e1200e60afc5a96523912724f45a31cea9f811540f9713037fddb71d7ea6ab23", + "regex": "(?i)^https?\\:\\/\\/uokcasythruozadabtryza\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "df501b6d21b1ae42d2b6da91148992cff6980834cbd3fb501bc718c133a35007", + "regex": "(?i)^https?\\:\\/\\/videoxhot19\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a89556ae9900c5a44469215fc702df2526a093ae25bacef295536f859d212e0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "31bb80fbdd77b60e89b65662a61430663191985c300259863f0d5d6e235378de", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-liege\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4a7dc0b45102a90fbaa636958ce61aee6479407f177a76c7773ee76322aed6e7", + "regex": "." + }, + { + "hash": "877830ac8bd7cb58a81a47dbd00bf626fdda00ee2c43392fc61954f18e912e0f", + "regex": "." + }, + { + "hash": "bb56666cb8fdf3e36c94f8a8dc17426dabba3d1f54186e6863192941c83c4c3f", + "regex": "(?i)^https?\\:\\/\\/msngrcall80765666\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5de83d1eb42cc63d1c21c3ed62d6c6d255a306ead80cb794199c3b43686b72dc", + "regex": "(?i)^https?\\:\\/\\/hotvideosx88\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5088e2e4cae5ab2ce5b82440d713efbff663245a7abd7037588a67fd3e862304", + "regex": "." + }, + { + "hash": "4f0df1dee6acfac9573b774e343dd00c23c3bfd4ba5b7f101b0a6dd5f191e7fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register86307(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "68b855aac2803e4106421253c8a8d740032df50b69e564f1f6c3fdcb69354775", + "regex": "(?i)^https?\\:\\/\\/talktalki1\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a1a1bfe2f88e5cc13bf6e36d0c698bb003dbda8af98bb9d32e30ffd24196138c", + "regex": "(?i)^https?\\:\\/\\/hotvideosx88\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "559bca69cd24c02c9c564df210cd4a0c1e35745a40e6b1ea720d84b30d6f3215", + "regex": "." + }, + { + "hash": "6bbdc6b56ba768976f19ab62d5e28c5de2f0c1eca3d3c6d4bd03e72641dd9d89", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "483597872cb7ebacee1be71f2908bac19bfb33ea513006b5e658431f1671c78b", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelie\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7bbd1fe50220f434e9a0b944dfe9adc70bb5b4215e3dcc3b3f781c5648784373", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "daf1dcec6463996dde6323a1d223062b8c94212c009e235511efbfc1ce1d57d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fux\\.zuden(?:\\?|$)" + }, + { + "hash": "752aa265d071d5b1fd63f99ba0943d6ca3bf00af3acef2e18b9c4b31ff61f3b2", + "regex": "(?i)^https?\\:\\/\\/bets10laz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2a127ddbf739a9907b5ab4800c4a20752f7e51d296f144a33875f21db444a594", + "regex": "(?i)^https?\\:\\/\\/femme\\-cherche\\-plan\\-cul\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "df9a1d5df5d6213fc3acb5cdc48319b3d8d98f56333a495013597bc99b5709e5", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-agatha\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cd9028ca7c85d722792f637e346532ae011fe5ecd66890fc422c7723182af4f7", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-liege\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e315d0f9661a7035fcdfa8cd0472147fc134961b251d75b1732f6e2a6406e216", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-sur\\-metz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "117c6be0b745d6565b8b0f90c48c4cce76d811194967772e75cd62cd02f2a443", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?qZyQrf28Rwm$" + }, + { + "hash": "a5fd5cd1a4f38583a9f6c0f2ac0ebd45be5a5fb83b2e6c2b1c4a60e9b5278876", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9183[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05828daced0a5b8113848755eed2cda153e9493f2a5ecfa9697aecfa056c8c60", + "regex": "(?i)^https?\\:\\/\\/hotvideosx88\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0db0384117b916f0b6d99cb8dd11a3f5cdbd07c5eaf7784963479fceacbff9ad", + "regex": "(?i)^https?\\:\\/\\/femme\\-cherche\\-plan\\-cul\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f97bf813915f50db90f5b4340dbcc6bd7d904d75fa35dfa25ae470306ac45cd2", + "regex": "." + }, + { + "hash": "dcc6a4b2b929e2e3c23e033d564ae7e851453f3dbf965dae86680721e57099e2", + "regex": "(?i)^https?\\:\\/\\/mmmommm1221\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "689dcf552a2eb7ea7da6229976492f79cf7d858c68ac5ad688b34c207226cb71", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-liege\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ccd2bbaf4e3854428196d94f49cc8268f0169a195ca26e51dd88dc3b72390596", + "regex": "." + }, + { + "hash": "ee1ec03885ebac34ea0dfd67ea673bd353d90f5a053a28dcaca714cc0bd82ab9", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-sur\\-metz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "df5dc7529760320ac3a6920e99173b73dce7d0d3b0ccab207c24e095772ed8b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Home[\\/\\\\]+Index(?:\\?|$)" + }, + { + "hash": "d3879eb6861c0f7eb682690c24620797c940109aa02e234ee84d623724a93625", + "regex": "(?i)^https?\\:\\/\\/enabn\\.com\\%E2\\%88\\%95pmxrkvnphj\\%E2\\%88\\%95rmifdrqwwb\\%E2\\%88\\%95ljhnkay\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zyoonl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c0e0d1d6ded49bb372641b65e65e1353d34b3caab775d91b2038e9d61888817f", + "regex": "(?i)^https?\\:\\/\\/dlj8\\.cc(?:\\:(?:80|443))?[\\/\\\\]+aY(?:\\?|$)" + }, + { + "hash": "ce7dad40529779f884c499639d31fbf54b6f462e75ce09c16ffd68b859e336bd", + "regex": "." + }, + { + "hash": "9db7416c02bdbbeef2fc60ec1ecd6d724c1b143758727bda5e2cd25deb8857d7", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-sur\\-metz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9ac662f67e9c5c20a9cc0bdb3cbc3acd08c1aab40cda0f410d5c83e5f2ee56cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "fe97cf7a218f08b936ad9f825e47a58d45d96e0e2970d0c16c02b7709de42bf5", + "regex": "." + }, + { + "hash": "6e09353782576b25ead43f199890a4e10db31b011a0224da3517452c5a65b5d4", + "regex": "(?i)^https?\\:\\/\\/plan\\-libertin\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f08dc5cef6f769dc2e8a6d2d53f2af462edccf6c4901802f66ea8ed9e4e90632", + "regex": "(?i)^https?\\:\\/\\/plan\\-libertin\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e5ecaafbb0a7902c7218528318d818b1c938553e74bcc7bea5878850f5786f1f", + "regex": "." + }, + { + "hash": "814c9c35bd0443d7917eda55b8bfb67eee2e393ccdd46bfeca610ee014e89da6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+LU[\\/\\\\]+LuFrais(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "24228863e26635f42eeea752ca94d7a9e8c6f061f7e78dc5ae8a400e07c36284", + "regex": "(?i)^https?\\:\\/\\/juno\\-message\\-center\\-100544\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dfc764d6e1680bdd206aa166cb2ad86a24a00a5c758c13bbe000982370eae23e", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelie\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1eaf0a5bcf41a0b1176150dfd172ba5115cba022835b2c9eb8ed22a2007bc4c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Home[\\/\\\\]+Index(?:\\?|$)" + }, + { + "hash": "f57e4a863bdde1bd951538e98fb01c7258af39cb93bf9a0a55cbc4fd1678af6a", + "regex": "(?i)^https?\\:\\/\\/love4you69\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "be28e473af979b9bf8d1dc987f5931f4bf817081b707057cceb271c5d23aa6c5", + "regex": "(?i)^https?\\:\\/\\/femme\\-cherche\\-plan\\-cul\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Home[\\/\\\\]+Index(?:\\?|$)" + }, + { + "hash": "8700c71622a564bfeadbf732dad0633ca60b77d2f0d42429ca9fea1418fb12fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?1YyNsZGAw4$" + }, + { + "hash": "18ef045eb64ad258d990cfee2ec89a357ef69cc68de2fa829d7f206cd3a5f410", + "regex": "(?i)^https?\\:\\/\\/plan\\-libertin\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fb9d3d0da2dc74f09c0c6cbb55c70f6a826daba81bcfc8f2607696b953c650bc", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelyne\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b2ac14fe686038c0903063b0af31cfe9fc0e68ffbf8e7d6260c405a0814c63c", + "regex": "." + }, + { + "hash": "9690fa76477d857b5243af47231502c1b81e9e3d3caec5bdfbd3b1b5cff68d83", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0e6a45c6db28ff918276a6b90cfaeda7b5a61bd687f0c4676f62f1f6e035d373", + "regex": "(?i)^https?\\:\\/\\/bets10laz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f1b894de16c1fed255d262bd522c2e9fc33edc16106ee9ccb91a83a3ab608b66", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-manche\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8b879f66dddd2783b29d53adbb67a2daccf307555ea153f2ac3fb0e28e09e894", + "regex": "." + }, + { + "hash": "4f641745c17c46919f309cf2c47c764d7f71754208247f729666e7b755c573dc", + "regex": "(?i)^https?\\:\\/\\/love4you69\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7375cfb1edc605869d03560f9238f6b205a30caad4ff12213006de30f48767a8", + "regex": "." + }, + { + "hash": "94b77ae496fb5f0d47762feee6c8c7b33dcbb423aa599127aefd743d76c31e88", + "regex": "." + }, + { + "hash": "0b27ac5347d6ad8f221869904ea5837997f1da56ed470cee20706125694e2a88", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelie\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "71813551f733d6bc2220506901d74ca05a14e075efadbad33e4aef30811fd6f3", + "regex": "(?i)^https?\\:\\/\\/msngrcall80765666\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "df5dc7529760320ac3a6920e99173b73dce7d0d3b0ccab207c24e095772ed8b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:\\?|$)" + }, + { + "hash": "6560086c1ddcd02dbcbde010ebfc91ead9fe12dea6cffbaacaf3f2ee3dfe93e5", + "regex": "." + }, + { + "hash": "47db90704dd1e6969126eb29c9c68dc6aa654db118c14e3fde6d63defec2025a", + "regex": "." + }, + { + "hash": "015610dae8daf7d97aebf1787251b7ba03d7cf5a8a324c21d80a53b70e268fd0", + "regex": "(?i)^https?\\:\\/\\/bets10laz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8e7cff4e5fbe0af5729e2bcaea2d1488e679107590745a6705407b05086e4114", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign" + }, + { + "hash": "ca5fdc718272b252f02a563932e62ffd3d519eaa9240b38389668acc80c2d2b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+microsoft" + }, + { + "hash": "e26d0cd1e40a1be4b365acfafd967768c213706b55e9d67926b661a28b568576", + "regex": "(?i)^https?\\:\\/\\/bets10laz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "24fe6d3cdcb32560b7912804546d1c9c55a91fa8951a3f450ded7f9ce03c013f", + "regex": "(?i)^https?\\:\\/\\/femme\\-cherche\\-plan\\-cul\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ef16295f8c52c1deb5451c0d1bc39f0dee9e3ad0e63d5c0c77a924405ecc0e5a", + "regex": "(?i)^https?\\:\\/\\/pub\\-2128416bc34c4fd39e4cdc97a8d758a6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1331558deec4f6d96fcc646a6c9600e5b1a60d461eb81089e073d0cb0586152c", + "regex": "." + }, + { + "hash": "9f633e92e9ef309117e8a53cb24750ed2582ece59cab5ec73af7e840be04e6d9", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-sur\\-metz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8bfc513b3cb19c1f7b8fbb72bb70fb374dabbcf34668e877d2ad56ab4da8f44a", + "regex": "(?i)^https?\\:\\/\\/hotvideosx88\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c017a6fcb8baac2d3c9f0c553d7def7c3d53e3686f3e1ca358edcfdf36a9d686", + "regex": "." + }, + { + "hash": "efce1e84e8fe433132f14c84a944dcd0116793dab44b95fda784a89d53ad4b98", + "regex": "." + }, + { + "hash": "7ba7f3b3a1b1f57d2a72711fb7c71c2c31abd14b3cd9870f48c4e3fde7ba7bad", + "regex": "(?i)^https?\\:\\/\\/uokcasythruozadabtryza\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c0e0d1d6ded49bb372641b65e65e1353d34b3caab775d91b2038e9d61888817f", + "regex": "(?i)^https?\\:\\/\\/dlj8\\.cc(?:\\:(?:80|443))?[\\/\\\\]+aZ(?:\\?|$)" + }, + { + "hash": "687686bf5222328826af2aaab514873a5cefa27be9898f643caf5abd2f62ebbb", + "regex": "(?i)^https?\\:\\/\\/web\\-101074\\-100720\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5860e9b7198aa9f3fdc23d854897b11572a647e5069c1ad21bbbf9e8e245677b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "14d92be452aa22e341a15bdd81ee6e36cb3ed1c76b76830295700ea02e7ceafc", + "regex": "(?i)^https?\\:\\/\\/uokcasythruozadabtryza\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c3e6735a488241345b0057ff5f98601bd3cc49e16b25deeeb9ef1b82e648e4bb", + "regex": "(?i)^https?\\:\\/\\/home\\-102352tgfr\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fe6bea873800eab58d4e07616dd76f169919ffa29a7eb825dc36e65f04e97e01", + "regex": "(?i)^https?\\:\\/\\/hotvideosx88\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c008a9e34882eefca908e42b202001a7716e1b673a877c5106be9b7e9f8f0f5e", + "regex": "." + }, + { + "hash": "f41f75d78cd2df2acf66136bab9b4378a1ceba5e8c7c705af038aea404220523", + "regex": "(?i)^https?\\:\\/\\/femme\\-cherche\\-plan\\-cul\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "78fdfb68e9e20c21b26dfd6b94033c9e3dbedf1b31cb7515e18b741cf8d259a6", + "regex": "." + }, + { + "hash": "c7971078fc4da5e7161e2a1f32f684d5f39155e9db1121d50c11e21101a364fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cskie4(?:\\?|$)" + }, + { + "hash": "9a61f2fa64741a6ba6628cce253d7f28853512a7180511a117f6183c558478dc", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a2428bf09792d65b130fb0d219f67c7a6d9d09c12a7a4c8f6dae0ac41c9ba0f4", + "regex": "." + }, + { + "hash": "fb616bf39a71601afff1bb299f7c18c124d8ddab695a974e2204b3811c4a52ef", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-sur\\-metz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "814c9c35bd0443d7917eda55b8bfb67eee2e393ccdd46bfeca610ee014e89da6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+LU(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "43bf3467f8277c2e2dc0073c91c84c58c71876aa38cc6604ba0fd0b050ce7afe", + "regex": "." + }, + { + "hash": "87506b727130c2bab9fe7e4b8c8ef9d5d195b691808506e97593e86311bcc840", + "regex": "(?i)^https?\\:\\/\\/love4you69\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f4a01bad3e47922f1eda56b7f9ad8e0a402611885aad549731ab0425cbffedbc", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-liege\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b2994292ab5738af75db5a0f2522fdbac99161ef8ebcf2844ea40c2bb6042059", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-agatha\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b40260e77d49565a969c05ad6e327a71b4e7eb99d25f768e39c1f898c2c41652", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-agatha\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2f4ed9f6bc90a71209f7a0752b6fcc8bc150b4a7494758d8d7298437dfb77be2", + "regex": "(?i)^https?\\:\\/\\/videoxhot19\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f9a3394431d32e39627b40ea10a0020ca4e1e89566c471413d8a975cc3f2511e", + "regex": "(?i)^https?\\:\\/\\/mmmommm1221\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0187ab0b51f90367a8a461e52063d9cfbbac72aa9edbafcbe99a51450135890b", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adrianna\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6c8742a94aaf65cd5f5fb0dfa87161fcf926cf436cde2cf4393e391d3bdaf768", + "regex": "." + }, + { + "hash": "a5fd5cd1a4f38583a9f6c0f2ac0ebd45be5a5fb83b2e6c2b1c4a60e9b5278876", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9183[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f5fe11cd9563eeac6d502930753522ebc95de092d2f770de4a44c3dcb8a7374", + "regex": "." + }, + { + "hash": "606bbe093c4b6457082df1ca3ec906979df63bc9646ea09be50923eb727db9f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?SQzzWcLBZwFR$" + }, + { + "hash": "6d724287f9e54e7d86ab8da8f8d991e5ea372088c3b506431e3c230b4ef4ed02", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+flmsaunone0p\\.html(?:\\?|$)" + }, + { + "hash": "8700c71622a564bfeadbf732dad0633ca60b77d2f0d42429ca9fea1418fb12fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "0a9318a35cfe5a15b09948f8dad4df3e3bd13792e59cd135a93bf13757a86ac9", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-manche\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "858c3dbfad8c09c833032c42d86398858c69f6ac624c649ea4cbde39f756dd8a", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-manche\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "abd31ac4f84dade036a5732c6112b326129b0d822c717487ddb89a68f1932c29", + "regex": "." + }, + { + "hash": "7d15242141e5ffd2b57af4f2a32d51ae1868bd3723073610643050895bdb1ab3", + "regex": "(?i)^https?\\:\\/\\/femme\\-cherche\\-plan\\-cul\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "28216ecc21fcb8134866aac1f261e373889ea5e14132bb0efdd118dcab357a1d", + "regex": "(?i)^https?\\:\\/\\/videoxhot19\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cd894edc0d4b6d1a4b914dea620c7ccc514cd8834c68123626677da54b855985", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a8e72bafbd5cf4906f8e1ee1ba17c51310b5064fd796ec0b0ca2dbb537eabf7d", + "regex": "(?i)^https?\\:\\/\\/msngrcall80765666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "140e2243949d1560d99cda6e793a33eae44187e3e0e056d3727ad08b5ac28880", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-liege\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9346b3a60166092c30da9a57f99e4159229e72212eaf9e70efe0950cd493fff3", + "regex": "(?i)^https?\\:\\/\\/love4you69\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3b9aa351d831474d88c86523524d6ea2e018837e10bed31d330e347549084f6a", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelie\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9a02d8d2a9588cd2fcf9d34f5b5c3fd2c8f82a256800783be48cc551e0b9648b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "69736ba8893697a828fd45d3d24405c5991729971979693a55a53525e36d3d6b", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelie\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c1e88bead18be5212eaa9fe96a28119a4ea96bb241769ac3021c51eb4b2c3c5a", + "regex": "(?i)^https?\\:\\/\\/femme\\-cherche\\-plan\\-cul\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c668c4c2c09684e2055d2ac10e8b7fb79de830fe03e2be63759409428bca555e", + "regex": "(?i)^https?\\:\\/\\/plan\\-libertin\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "651ffb9293eaa4c90af45c54d68a973719ea3cae026de5bbeceb0f9a6c089e82", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adrianna\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "86034cd5d5858ce7f3956aed1d66262a6cdbb3bcec896aa44455747cc1ed5e47", + "regex": "(?i)^https?\\:\\/\\/tvyoa\\.com\\%E2\\%88\\%95xxntjjffpp\\%E2\\%88\\%95bgwzzcfto\\%E2\\%88\\%95cvfyuqtdkm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tvsff\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "27deefdf6db65ebac9126a356938f72e7544fc93937f778ba18046bfcd122815", + "regex": "." + }, + { + "hash": "9ba296da405c2a91e07ebb69aa5d44f5776fe4ac16fd970cfa9bc633a7c227cd", + "regex": "(?i)^https?\\:\\/\\/plan\\-libertin\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4f91019b988f76a47fdf45891a7a461b83034505476f4f38dac9689a6debe741", + "regex": "." + }, + { + "hash": "31762d8147ffc1fcfd2f9ed98a8f58b3a8bedbd6cd56dd0beb2906512016c418", + "regex": "(?i)^https?\\:\\/\\/amazon\\.szryoxjw\\.com\\%E2\\%88\\%95lmihqf\\%E2\\%88\\%95knlisnat\\%E2\\%88\\%95wamrrfwe\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jgsub\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c16f28bf2df83e71a1241e76b4b584507ead625b03e6933cba8a62a43d0917fc", + "regex": "(?i)^https?\\:\\/\\/chennuruakila04\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b6b9e9361c0f7a3ee0f62a8df117f03f651b85d34723e59946de4e56256cbcd7", + "regex": "(?i)^https?\\:\\/\\/femme\\-cherche\\-plan\\-cul\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "17e9de61b3cc528377c1dbfa80c2b2785e23c9aedc367f15c07e0512069d9d10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9972[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1821997b11fc89078747b1715594debc2a82efcb099921f881c935bb942c6e13", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-manche\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fa27c8282137da9f79eda24f29aacc2a65565cf291c419ec5d002e153e818377", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-manche\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "68c180f7ac4a3555239ad9c2b056c6c6de94bd676b07b6d98dbae313ebe91b71", + "regex": "(?i)^https?\\:\\/\\/love4you69\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f682e23cdc52f5fe1acd23ddecba2112a942ae109c5b204442067d7d3d3bc83e", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-liege\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cc8a39a0e757cedd2d87481f08ec9569d4f9a3dbe8296d797a309ec682017446", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "416f776cedc79fd2985115d4415466262f90f754dc5d97ab36ad577cd1baab2a", + "regex": "(?i)^https?\\:\\/\\/bets10laz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a5fd5cd1a4f38583a9f6c0f2ac0ebd45be5a5fb83b2e6c2b1c4a60e9b5278876", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9183[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "5f656e7004b53645c12158abcb5135823a06e0a4791064669708cd492c99405a", + "regex": "." + }, + { + "hash": "70a904848135bcae1eced4bd265ce5db64200236efaa34059e7457c249fc7af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "2c0b58625827a138b0152244949605b2149e274e99949662728942443120c2c9", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-manche\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "513819528b6d6997a9c3ca2d763ed820067110b61662110146803e4443954232", + "regex": "(?i)^https?\\:\\/\\/uokcasythruozadabtryza\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3ef902857ae3db1068cccb426e2313ac5ea869ccb1af9a7700876085226584e1", + "regex": "(?i)^https?\\:\\/\\/plan\\-libertin\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a5072f882560310a36f2485e9aa27f4f7a91764f9a3e49fd0bb84e87f2280f0f", + "regex": "." + }, + { + "hash": "667b89140d87b7b7075baa031c12fdd6aa96e2a13df05a0347a20b80afe65918", + "regex": "." + }, + { + "hash": "5860e9b7198aa9f3fdc23d854897b11572a647e5069c1ad21bbbf9e8e245677b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "1d9ef58e5a0c70fd7e28d3118b6def1491688923ba7bdea8e8ffbf2216e50742", + "regex": "(?i)^https?\\:\\/\\/mmmommm1221\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "02ed63ee46b2ecfe77d04368ec56e6ed9a4eede2d8a6cd695f9e92a5c016776d", + "regex": "(?i)^https?\\:\\/\\/msngrcall80765666\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7a974de07773e4378339fe84c8ca7b213da6933e8dcec93d7c5319a513377855", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelyne\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "81fde95f16dc2b1c1a74dac0a61c560e373eca3a2a989ae0124d652ddfb19123", + "regex": "(?i)^https?\\:\\/\\/plan\\-libertin\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cac238581dcaebf3ece2f9ba19056c1f12b12784d0f380f0df2b130285f5ea91", + "regex": "." + }, + { + "hash": "4f0df1dee6acfac9573b774e343dd00c23c3bfd4ba5b7f101b0a6dd5f191e7fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register86307(?:\\?|$)" + }, + { + "hash": "11f5eba42ed70d6c19e0e762f1f9fb346b39289cb8cfc590ef3bf40cbe3332e7", + "regex": "(?i)^https?\\:\\/\\/msngrcall80765666\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "37ea212d0bf42d733b057b7f61ad259e76c770b7f4ac1acd830ad25fd9117aba", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-sur\\-metz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1165ccc5f199db8907e10f147f047e0294ae1bd6b5b8ae52ca9313d305478460", + "regex": "." + }, + { + "hash": "7de945e93dd157871979be230158604c2a054dc96d134b2a64233460f596b48c", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adrianna\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "aa0e83b9113f8b5927869bd74aa1af6c76ecf7d31580c241ec71c7235e1e8613", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ti_dn__\\=3b243f7a\\-2090\\-4e4d\\-aade\\-88117cb6c726\\&__u_idz\\=(?:\\[|\\%5b)\\~Ind_ID\\~(?:\\]|\\%5d)\\&__turl\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafkreidhvb6lyoenjqeeyadjjffcubgbnkhhiipgupftm54mm5w4vvqxq4\\?index\\.html$" + }, + { + "hash": "f0254e2b1962cf19b826e82618cf7fb4ccac5f1575b0d1ea27f73c18a1e3d661", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelyne\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cf75d6575dc4a7760450cda729352eb9fec624d4977384a0effa311ad22f4ed3", + "regex": "(?i)^https?\\:\\/\\/bets10laz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "99ada645551d5c83956c8bd09347019f11e1c896b9362475f6bb592722512c3f", + "regex": "(?i)^https?\\:\\/\\/at\\-t\\-mail\\-5154d6\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "54611c42942f56a868c29309af37048988f732ec2f4b1393bec18348cccc14fa", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-liege\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c7971078fc4da5e7161e2a1f32f684d5f39155e9db1121d50c11e21101a364fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "dd31a83835760cd9ed5a96967314749d95e97e2fc454e2f53fddab541a3ddbb9", + "regex": "." + }, + { + "hash": "230f078530fc2d4e70d33116906eaaff8076f282f4f1f6510f3006cad1b803f4", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9ed07e051ef6be0ba751a54e6c6d6dc391122cdf8d327b03800ca8b6abb0e2d0", + "regex": "." + }, + { + "hash": "acca51587d8a229bc6ed9f45905171fce0fb4b9166bb1be1f404d7853361792c", + "regex": "(?i)^https?\\:\\/\\/plan\\-libertin\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "90458148ebfe66017b9a3b9c26b197ead4a26f5221b275f597a9c3d5fa8a805d", + "regex": "." + }, + { + "hash": "ae4f912d47515baf53215a0ec5b0f3b6ea28ff51c2f2dbee688facbc572bf97d", + "regex": "(?i)^https?\\:\\/\\/love4you69\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2e35e4226cb2ee753d9241898dc4361d3e3a5288086b8f791beaf42d42c5d863", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?UGJn6qQaw$" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:\\?|$)" + }, + { + "hash": "077c620daa12a20165ec81def4d845444bb3e5bbee9ee823df9b84983c71ee59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+x4uagz(?:\\?|$)" + }, + { + "hash": "76ed0e06f8981fa5f06b7bef02a1e5f2db92eaf6050094d06a9683c87133af47", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adrianna\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e38c6d9a00cebf5e5671d2f81cb20a826dbc1f0ac968febc82033979511df071", + "regex": "(?i)^https?\\:\\/\\/hotvideosx88\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "441550dbebfd9bec6610e208019cfad41c6349030f822e7a44ea808468e1428b", + "regex": "(?i)^https?\\:\\/\\/love4you69\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fe35b6b419261a06c7a6f93700b65147e266f4c9fc0c04a17206a99a88f6f028", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i45649e[\\/\\\\]+chne(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Home[\\/\\\\]+Index(?:\\?|$)" + }, + { + "hash": "74d1966ba2d10a2ce5b0873b566f51e1905677be05e777790db9ddcc7175774d", + "regex": "(?i)^https?\\:\\/\\/bets10laz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "29e7123d808275f2862ad17cb3c659ba3a445eed8f49a007d446caadbb725511", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "25c94d60589c34488e20c9b9276f7b879ddfc3b69a2733b1844c209eb11befe4", + "regex": "(?i)^https?\\:\\/\\/bets10laz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "33efa27bc30de0331113f0249694a61c7b49a942633f0d0e21fbcd7f1ce4069c", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0e42050af63bd42ac1c5f39c28f11f3fe950131106048d5f0108512150c7ab45", + "regex": "." + }, + { + "hash": "ce7b304c1f8b97720ea0d8035666ebfb2964f400ec41ed99ae62cdabdc625e4f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+walletconnect" + }, + { + "hash": "180d505eb9bf8085ec48f0eed39d271d28c12f21bf88b5b43fcf5c03e9a9bd2e", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9a7b6c753e649a85437ce576291b90d64dda4f3dbb1c463ef357b5b76b639929", + "regex": "." + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Home[\\/\\\\]+Index(?:\\?|$)" + }, + { + "hash": "e73ae182801f7c7cf566899beb1f3bd4d21a17a7f5004503d847d356693ba56f", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-liege\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1b21fae566e1386c51681ce00321b7a198b9570d24e5d0c054145479efebed51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "4d465a39e16a091e5b41f44e07e434fe127987bfa374d4035d9575df5da26948", + "regex": "(?i)^https?\\:\\/\\/mmmommm1221\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:\\?|$)" + }, + { + "hash": "bfc77a9b6b0f3a1d3c1ec193fd2c5cee6b9490d4cdb8f68525e568e62e525acb", + "regex": "(?i)^https?\\:\\/\\/amazon\\.sycfaefqk\\.com\\%E2\\%88\\%95ifaqqsqsg\\%E2\\%88\\%95psxgocmwt\\%E2\\%88\\%95bhcwvyujgh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=svfabvqx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "7093502945a2d0d0456595cc4e62f600d23c08195d4c6d371a273bdb6184e0b9", + "regex": "." + }, + { + "hash": "70a904848135bcae1eced4bd265ce5db64200236efaa34059e7457c249fc7af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "e0226b084d885785bfd663ea8e8d20ec279205807faf30860fe8a1bdf0fbcebe", + "regex": "(?i)^https?\\:\\/\\/videoxhot19\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "78aff3e143f8652a697a05b0313a91f38ef13f5e750f91d148d06ebe3595309d", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-avec\\-adelyne\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f0d7a8131d1dcb8e731f01b149615e5be30d0bd79c921cc9045c939957efc4ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:\\?|$)" + }, + { + "hash": "4253e943af6c900e620fa9ea75a2c1a6caad58c97a811b590f6799b7bbe370d1", + "regex": "." + }, + { + "hash": "82c57c34d442e757326cccb1a870f45f3e28396c2d235f3d7e0922eff0818b3a", + "regex": "." + }, + { + "hash": "8fb720e02fd9ac294072d41079c196707a8ebf524dddb5ee01c66ef0de9b3aee", + "regex": "(?i)^https?\\:\\/\\/videoxhot19\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5b54d2bd2caab7203cfe083c01296acc7aae9c55a67076ae24ab6951e806fec5", + "regex": "(?i)^https?\\:\\/\\/www\\.info\\.spectrumid\\.194\\-238\\-30\\-228\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "789b5fed62bc5fc8ebf99e7c114926def5055c0e0f6c24df04c69de02fd4480f", + "regex": "(?i)^https?\\:\\/\\/plan\\-libertin\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cebd9575ca76bfd3ba2896a2a2774fd63b9ca5338c4ccd989449e57140a7a0c3", + "regex": "(?i)^https?\\:\\/\\/starcaster\\-astralseeker\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "df5b10c596e609756a4dd175ad777c91beef7ae61c6720427d1257548708d33b", + "regex": "." + }, + { + "hash": "a1a14aada96b7e80f86c72ca9f7b9f897f87c79d500657a4126e960eaa9b3ab2", + "regex": "(?i)^https?\\:\\/\\/msngrcall80765666\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a89556ae9900c5a44469215fc702df2526a093ae25bacef295536f859d212e0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "1eaf0a5bcf41a0b1176150dfd172ba5115cba022835b2c9eb8ed22a2007bc4c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:\\?|$)" + }, + { + "hash": "ec5f56f141f7c7b075bcd2c958a115b5813b5009a5561ca3b5249f7e448bd633", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+trade[\\/\\\\]+index(?:\\?|$)" + }, + { + "hash": "1de5c9014d1950782d4d9cc00a582e70207d1cfabf800fef35d5949d201907bf", + "regex": "(?i)^https?\\:\\/\\/bets10laz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8c19324feffa5d23c1f07daebb3086c0a6bc99b33b56e0f4b50b050d62c96e83", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-sur\\-metz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "334bc27a3bcbc5f3a7f71f0688242b5c03db620ed8a25666d124f6f1244ef80c", + "regex": "(?i)^https?\\:\\/\\/pub\\-3406230276b94596b90a540710fdf2b8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "51bc981b4467044708f073d88fd361b100cfaecfc3cff8687b0613caad52adf2", + "regex": "." + }, + { + "hash": "70a904848135bcae1eced4bd265ce5db64200236efaa34059e7457c249fc7af7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c[\\/\\\\]+$" + }, + { + "hash": "52f5af66295aa6cfe13fe7f9e1294a4467078187d8e068da2283f557a2efee64", + "regex": "(?i)^https?\\:\\/\\/lovin\\-date\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "04087c59e0d4705746d740d4a8ac5882fbb3dd3bb32ca2ca78ee8d07640f0f5c", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "276bdcb8a549ce8a458b224ef693b0beb251863cd1f5be83b906fa2862f4844e", + "regex": "." + }, + { + "hash": "734225177f9d1a224b67056efa15136af7e3db8c4a263b73e1f3b294c38b23ef", + "regex": "(?i)^https?\\:\\/\\/xcvxv4274198e4a65s4dadbhagdvafgr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6950004c78bc07a64e486dd44f9b9ae1ff1c49ffc7549e262b47620537a37878", + "regex": "(?i)^https?\\:\\/\\/gonn6f5kg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9e7bce419414b30f763fbc4ce86247397005178ecde66313ac1da4bae06101cc", + "regex": "(?i)^https?\\:\\/\\/rencontrewebcamgratuit\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1a4c0c2aae40d8d2e7520b5fd99447be2dad99b7ed6f5d09e04e3fe329e10b2f", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0f302ae134673d14654b619c6031c0243a99b428cafb9f8b1d3e333be884f193", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "618feaccc5b44a88d5ac47f3278d2091f66e0dac92d27ee3d237118933502dec", + "regex": "(?i)^https?\\:\\/\\/zxcnb872\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f803db1fa78d0924b13ef5ff04477e3482cb7dbb3517319338d8dcfb12b0a1bc", + "regex": "(?i)^https?\\:\\/\\/nasnd828\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1259716a4122f3dda3d36a0ab1a5cbe3460fc1d1d3fc8086fd997abfc913e038", + "regex": "(?i)^https?\\:\\/\\/fdtydrtgbgfujhrt\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1e4687cfe210e279023888e916113d54fe1d6ba796dc55777dd3ee537cd3f576", + "regex": "(?i)^https?\\:\\/\\/cxzczxc2dasjhdha78dyui\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "218cf71674e43a19222615015b1a323d63115e5a8f76ee4483c00ab3430f4d94", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f5d09691fea17541f5d331ad2756bd067e033e30f47c7837040a880533ad0e56", + "regex": "(?i)^https?\\:\\/\\/xcvxv4274198e4a65s4dadbhagdvafgr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fbe5ac36e8a42ed8e0b527f7b3d94d0253e3b4fb4c4c08df138ab0880d4566c8", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "87ad06f610c025a88086c1bf2f4dd54fc4d48c9eacee38a7559ea7dcd7828963", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3475b7d67940b2be434a1022e3d9a99076fcf826bf955f2eccd3eac713cc3136", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "42028641916b616edef51aa48e45de879938c1a4c46f804f1762faa1ff6769b2", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1df53500e0f13dbf2694ce31b0651917d9aa93e202337a8a9cc05e7d7f986d2a", + "regex": "(?i)^https?\\:\\/\\/zxcnb872\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6548c91ab1a3a159579cb5ce0fbe12f28a4f1a64d62850b19441beb43eea4b58", + "regex": "." + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?tm\\=1\\&subid4\\=1669784627\\.0264340000\\&kw1\\=make\\%20money\\%20from\\%20home\\&kw2\\=social\\%20media\\%20automation\\%20marketing\\%20software\\&kw3\\=lowest\\%20car\\%20insurance\\%20rates\\&kw4\\=make\\%20money\\%20from\\%20home\\&kw5\\=elite\\%20dating\\%20services\\&kw6\\=best\\%20mortgage\\%20refinancing\\%20\\.\\.\\.\\%20311\\%20\\.\\.\\.0degree\\&searchbox\\=0\\&backfill\\=0$" + }, + { + "hash": "41fe43f4a4e4d69433f89a540bba9549eb25e34c84047388362b96b8f51e7ef7", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e38f4e3410495abdafe4d864e31a992c2d1d34a792a85e90bf4144adbce9955a", + "regex": "(?i)^https?\\:\\/\\/entrecoquins\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a220050b291f8f54e0e529889d7900a7faa178a3043119b382464d56148c518e", + "regex": "(?i)^https?\\:\\/\\/supportposte\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "337cc9468534cd001b7d45e65b0bdc2e961f2b0cc66f5023e2b36f2787068625", + "regex": "(?i)^https?\\:\\/\\/525asd27\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fd46607ac8c0c5266e3b4f549dbdb842d026806acd28f8b19403c61a29fbc78f", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "75937ec1b5cc3e3980ada50adc9bbfe97512ab32600977d9129cb13ed43ac4df", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "51f6e96647254ce4b8ef6dd00416e4ee72d8f29a37040aa5e11fc44dc8c14ecd", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1dfa4033c4a7a87387e185d3fff208e0c72b7dbf0cdf827c62a6f59342f95675", + "regex": "(?i)^https?\\:\\/\\/hutyxnaoemafredasexa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8b1a54c289ee17d10383887d87cf52efe96227f131a1c37310aaef23f2dde31f", + "regex": "(?i)^https?\\:\\/\\/att\\-currently\\-9\\-24\\-24\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e935a684aed24e0f7a1a7b7b12d22143b9e5e6edded70f31a09d3a03e1089d22", + "regex": "(?i)^https?\\:\\/\\/offfff\\-109184\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "19e38d3b3eba13d4ce951075aa0ef26098572b48ab439ca7794f6822d7731083", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "46aa049339226663323a43988a8953da05052ca52c1989461069899467c0f845", + "regex": "." + }, + { + "hash": "f66e1a49afcf3c4dc6f4991eb77aa1f3775bf1fb6818d6eaddad56e9331eb434", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1754f79c883c984b33d8092fef9bf08e3ead6543eaf789717b94ba6abeb792cb", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f51758c124a1e1cbf27c819712f1d944296031654add36bd4f516164c3ff3695", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6f62412a5850acd5aae9bdc2cf9c02d5abea99dfd2fce7d7d8136ff17ce5e9df", + "regex": "." + }, + { + "hash": "d44668d8661fea96a0f8adebd63855951ccf4c65d32948af13a814074b15249f", + "regex": "(?i)^https?\\:\\/\\/lovin\\-date\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5f6fb22dc107c53e2d20f8f258f82ce134bd09a82497e77ae4261ad434a8867e", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "650f7c208573f25116eced3c8f611d0955e103f01d20c642c369d5f333583e0c", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "31d4cf2c63cfd5296915bc7f72e9d868156b26055a21fa687e94ebd277585744", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "66fe52c7506eb571a4ceff0b75e2488d3ef53ef4ea20ef20a6a33d6de89c8e89", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0a947445fd44b8143dffa12c04c960a470cd06b9ece072698dd7444a15e6cc50", + "regex": "." + }, + { + "hash": "774029d3d858728128617fd9748a99cd6ee59e54bb8938881ca74767f33c4806", + "regex": "(?i)^https?\\:\\/\\/525asd27\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3d21f8190cdd733465fbdd5ec0efc390cdca75bbd2dabfb0ca79296c194b0458", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "12c68a3597c8c0ec24e236c18320cf0aa24e01c3e63be6ee6b2f523a6321162e", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a1786c4bce2353f02c5f71ef0dcbba7e679687862532bbe0652f381f57f3c25e", + "regex": "." + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=mail30c9884497bec12ed45ed3ba99ff$" + }, + { + "hash": "ea08d0222beb6c77db515b7289f66c6db1e27c08e4058e18694fcb360cf4c12d", + "regex": "(?i)^https?\\:\\/\\/zxcnb872\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6f381fdb513f0174bf8d7ac7d0edbcdbda7dccda1d3ea3efca53a1ad851e9a64", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "548f9c40949b7a33fbefe4c04adc395aad2415abc980f6f996981ed9f22993d8", + "regex": "." + }, + { + "hash": "90af394cdabb052add37b79a9f13344a5988fd9bdf3b60090ea8e66741c53e8c", + "regex": "(?i)^https?\\:\\/\\/aksdj28sdh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9869a8fc799d1157a008248e4b4d431f75b081b38fd68a3f9ddb5df03c59e527", + "regex": "(?i)^https?\\:\\/\\/hutyxnaoemafredasexa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9cb83f459f26ebae2305f058a3ca005e9de79fe43911b21acdb9743881864500", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a3b760495db6e3e08c14bc182bd53430ab95a2480a91bec91623373922cdda54", + "regex": "(?i)^https?\\:\\/\\/gonn6f5kg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5f6596dca0e8eaaa2b02a48fb64983c8d90f112001a8640e4b2d91a13fad2870", + "regex": "(?i)^https?\\:\\/\\/supportposte\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9a3278dd04430fe852cfbaaf1ef772969543e474666cc9df8b38d37ce8a932f8", + "regex": "." + }, + { + "hash": "dbd23e7cf25539d94c595ec9834adfaf9fe01cca99682c94815312aa9e789e75", + "regex": "." + }, + { + "hash": "3bd09ef79006edb3b176e9ac719545de0a06d94430220ebbb79801f205cb95aa", + "regex": "(?i)^https?\\:\\/\\/gonn6f5kg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c2547ccc46e0d834469430912e68da6bd876ab892ade85f97984a9b8d0a473e9", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9a351819bde7ffa7251a3d266af1b7307edcc0d250911c94bc28478fbac5cae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "0751846c9be6d7dab7972547094d779993a4e3107533750782e8362e7a28f3cc", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d234146ca52aaa36ce6c7695f97a013d336f9f651d27c9bd47c58b6edbccf21c", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6e10fb84b4c64c5caada0f788236f1ad42d792e06835a9eeeda61b42965cec6d", + "regex": "(?i)^https?\\:\\/\\/francerdv\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d8ff73d81fce47f36b9fa58d199b46ab700f6b0adb07997aa4e7862c5fa3ef61", + "regex": "." + }, + { + "hash": "679c25d2317aa987ddc04640d49482f5a2966de285946c1ce64fdc464a94124c", + "regex": "(?i)^https?\\:\\/\\/jardinideal\\.novedadesletty\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49f658ab66fac0d0eb183e7a2c74ead7a22ab15f9c08a69d7e4a3fe2e17d3803", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e4ce1a91e4d4fdc0cd895487f52d825036a61ac766cb14d179aea67ff8a4f053", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "44a60a732bbdea2ed38934a1df5e46763bcf515c1b1c2c2f090771e6f41c56c7", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c11ce1d507a2c940559afad2351bf9e1bdaaa80b022872c00114b2ad0c027ece", + "regex": "." + }, + { + "hash": "5d223654593c5c5f2ddfde74c94a44c1763600f6c5cfc6f38c918ef05a3beb30", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "09739ae5bf27849e3d7558bd3abf4a50941344e32ab112ed8a315a6e81772112", + "regex": "(?i)^https?\\:\\/\\/rblxxv5\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "60266e92c1ea3beee2ef1d374410ed9c5b59e531ea3cabd6685132e168c5f15e", + "regex": "(?i)^https?\\:\\/\\/supportposte\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a77367d5a410eb37c53ae47468600d849000fd4253e9e5b2c8b7c211750bfcb0", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "69b14655ebd1b7399621375bf6411ab68e8090ff289869ccc0f6603c7fc014d5", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?tm\\=1\\&subid4\\=1669784627\\.0264340000\\&kw1\\=make\\%20money\\%20from\\%20home\\&kw2\\=social\\%20media\\%20automation\\%20marketing\\%20software\\&kw3\\=lowest\\%20car\\%20insurance\\%20rates\\&kw4\\=make\\%20money\\%20from\\%20home\\&kw5\\=elite\\%20dating\\%20services\\&kw6\\=best\\%20mortgage\\%20refinancing\\%20\\.\\.\\.\\%20311\\%20\\.\\.\\.0degree\\&searchbox\\=0\\&backfill\\=0$" + }, + { + "hash": "21edf3cfe71e88d273fee8c0b11777ec9cdfc6bdd27e65de7373e671be0a43d1", + "regex": "(?i)^https?\\:\\/\\/tolkienboy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ffc43ece605610d6739686a5d1a2a9b1081fb2c82c1e47e5ebcd6c4d41b90a28", + "regex": "(?i)^https?\\:\\/\\/naj27uhsk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e0fceae749bab614ce6d3fb09f63c576421a09f64ec06f3b1110ec4541e874ee", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ccf9ed283a50d1346bb09ee5a07086cbbe705a991d890c232587daaab3780661", + "regex": "(?i)^https?\\:\\/\\/aksdj28sdh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "73cebc472cfc78a7e0aa1a2dc37e36990c73d6406a30899f42ef62ec3c417027", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "901d41c6e54736fd3a83073003b17350ba3159863f522fee9d16d4b030d81e8f", + "regex": "." + }, + { + "hash": "61d8081c8b07a1b924090445ec3bf1277198f61989595661f1f6342539d85d9a", + "regex": "." + }, + { + "hash": "f445dce1b11a7327bbefe46d7e19947dbdb30a16c0e145cf05601af1630e65b5", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "abb6e0d496548b62ae25ea47d5290379ff0c62145a3a3fb67a3da78d28b484fe", + "regex": "(?i)^https?\\:\\/\\/naj27uhsk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7a0c3c90058e840e658507f559c431e3c9e762e370e19b6e74f688bfe0d88b5c", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ae1f306a5109c145cf18571d8706095e0ed7d19bacbc2b52c64cbbc1b4b39ee5", + "regex": "(?i)^https?\\:\\/\\/lovin\\-date\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "904bfbe3e71b2ca292da16f74aeba7a8ae9e145f64a9db9347059bdfa8196cd4", + "regex": "(?i)^https?\\:\\/\\/rencontrewebcamgratuit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8f8ce2bd9f6230a488baae5efd1ee54746d08855dddb4fe38837c427644cba2c", + "regex": "(?i)^https?\\:\\/\\/lovin\\-date\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4d921f64c789faabfb752a3701c9c5df25f46a859ac2501d80a0679b957e87e1", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "02115f76a7be67d55b740cd205e20802627e6cf2be4a470ae978c417e6b0032b", + "regex": "(?i)^https?\\:\\/\\/nasnd828\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3d554f6a576953ffffb92372bcebb8bb832d00d6ab29843f7f083e2d720081e4", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b20daeafebfbe71e9650d38dba0b282f27027665725d02013844f5830dba7259", + "regex": "." + }, + { + "hash": "6fa248d380b50f0d8089efd02d4f7e9997c6e80a6398193c9ad6aa3cf10f72f2", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2a8c8449ed9f24cc2e41550cf77d20881e0b0c537d373fbddd67a3c3bd5b362d", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5e1f073291a654c48f2f5ab8e45a0399da3b740c2ee02527a2ffc439aa8f80f0", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "28e72d836a6c8115a12796c5055aea5ad02f8c7b156f43a45c258cba09b08501", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "acdbe9700248362d9832484e180c1d4429a3b0970fc7c6ed9f52907423b138f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kip\\.sonel(?:\\?|$)" + }, + { + "hash": "e4b6ecb3663c1636028218a4eb041a3827a2422131435ed2d905d2ead0074b84", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7df5af213fb948a75cab095a11b96d41893aa368ea17b3a96bbb7c772d24d85e", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c3921c6de6e8359830e6c59745c73b107bbc2d6c1735d100130eae896cd7f963", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8058313562f76dc483651f3235417c87259c232f57e8d3229eb4c054f1d2d245", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0a941a793ad3abcdab067fd0e7534b74256965e1cb9fdf44a215d852eaa30eee", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "591b4e948c2a3b4ec74f1c6eebc9b4e21b253cb1d139dc6eaacef27fc4a246a3", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e794f60d5f84be07d98b3c8a6f5bd9010f2f0bfae76a97c3a09a6ba08369b486", + "regex": "(?i)^https?\\:\\/\\/brown349686\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "b460dfe75442418eaf857d2dbda5c3675dc72564911701d135a0c00a9d88e4ae", + "regex": "(?i)^https?\\:\\/\\/bennyeu5kg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "68ecf74c5ca599b1acd43572d4ffc5f8e49ecd797910d611894f850952c5bdf7", + "regex": "(?i)^https?\\:\\/\\/francerdv\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c[\\/\\\\]+$" + }, + { + "hash": "a507e7c708a558f9faa9a538c745d697b5316cd5669287805dd4e79e08119363", + "regex": "(?i)^https?\\:\\/\\/instagram630767\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "28f0310407455b6403bd1b37a8acb6bf541ea40f9ce85643a36d8adaf45fea92", + "regex": "(?i)^https?\\:\\/\\/rblxxv5\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5f25548d5ffa53a8396ca0256329438ae0eaac7a995bfa924da0026620b13ef5", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9b9e725bf6fadbc4e88a05cdf0bb12dbbf27cf07413c411e7017e76d3b815d15", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "761fbeba833c2ca3a52a1f1241b93e0bcc96bacec1dbda96c8ee08d44b69eaf4", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "de28cd56b9c77ba71f2ccc9f9e53e979a2bc8336ff0871d3f8b8a844924846db", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e6288bcf0cef9b857f1cc3b0187f9f7ef98f03cccab8f377a0563ca8fafbc533", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "82f78cb88e291a3950c0429a3338702b5f1a6f0a2dadec69d560d71616970709", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "75cdc115258c26ea781b161e4edc40808f01b6153306f82acebfb205704f0068", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fda9bdde8df25565c2715a26a8354e80a98e66911653db87d7f72a1e998a8d8d", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7da0eaee29f81b5a0093781f08fa66b5bb24226686953301fe3c7a08339d83e1", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e88b908f2bc7210bad851b63b30b2529060009f2933c0720e5a0637fa27bb", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7ccf7d2266f772099dd460eb39ffc90edb5a0a4d650ff5293393343241d8055a", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "69a0f9d3e990443f2085edbedb29d94e5b6dbfd15e1009a8c20374961132cd34", + "regex": "." + }, + { + "hash": "19a1d73cc1d7686f7c09785a2f20a991ab702f17cfb440e7616e01ef48eca6d1", + "regex": "(?i)^https?\\:\\/\\/instagram630767\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "898788b879ceeb7fdbf92e80ea2baacbe2d410d1fbee0021e0d29fb336805e51", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "73c037289de7b690199cf306d00ea522e9e431b4dc7d02dd764d8acc75473aff", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "874cfcd837c474f53b05134631bab9ef5b3ca47fa7e34f4bb11c8b93f4cef4d7", + "regex": "." + }, + { + "hash": "a72286693508037227eff36e952cdff78d1692e1fdaad57eea33e6fdb68b945a", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "18c8d58650badc790f20db2ec25c90dfd061eba125dc49fd513142add8d9d98a", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "581e2f5371a39402276a7656a36fe3a45ca45530b7f917241555f8419785ab73", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c[\\/\\\\]+$" + }, + { + "hash": "05b40d5638a919e0fa0f953c5ffa8719beb5ea16797dda5227fe4c76baa7ac44", + "regex": "." + }, + { + "hash": "752b62949f4a8438fe81ad10a35a0ae1796d05c0d1faf4cba96a5c5fdd2c567b", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "89270d7ae346449dea85da6d932062fddf839e8b4d686e675729039a3b9d910d", + "regex": "." + }, + { + "hash": "6d89f134d06e543bcbac9afc5ee63c7a7ee7b685dddba7df5f15793b0408b489", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "36f92025f2163c7867d2835fc0600124e020e4e427fd254416520cc64937c7cf", + "regex": "(?i)^https?\\:\\/\\/tolkienboy\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b81daa3f49b1ac2b18993e1244fee085863ce98d21e7aa13b795241ae2de6d6f", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9d0c77a40228fc6be5ba6bdbf66a467a7f245f9861e8abe0169d60746903ccea", + "regex": "(?i)^https?\\:\\/\\/lovely4youzz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c31fc87513e7d4d5cb9cffa7bfa1f9a3d248071e51039067ad9052557cb80ab7", + "regex": "(?i)^https?\\:\\/\\/lovin\\-date\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b3ad2ddf6a291b3bc368751e149a437ae9e0853b8e388bb7613126cbead96819", + "regex": "(?i)^https?\\:\\/\\/fdtydrtgbgfujhrt\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7ce2dc18d023d23a4c31f706d8cb596f55a4bc428b5b3d9acdd9a399641457e1", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eb49ac25965f3c2f1997ef47064d90b6d4cb1d59b96944845b6ea06479e699cd", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "427c4bfc3f09e1821e369f4c018b9873b407adcb5e795b55f5cf1c51d18fe7f4", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd796612aea985b10137bd38519000537a685d7522ad1aea2aff92bb7a9347", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c[\\/\\\\]+$" + }, + { + "hash": "4ba0cc2714d3949f452b7557d512a478d22a8ea243add602b85b30255884749c", + "regex": "(?i)^https?\\:\\/\\/cxzczxc2dasjhdha78dyui\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c5583f46b0654793c7f8467a26bb650dcf1d53d1ed07d214f08ff57a55e258db", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ed6cdb516bcb43295889e903e2d8f34e50ee1d2e2084f3d624b433815d212911", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fonts(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "21854c5a86607b07f1c5be9cb5605d56369ceb4b5e3655501e1383a6c25d0e7c", + "regex": "(?i)^https?\\:\\/\\/female\\-fitnessfigure\\-body\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1de543f37dec6cc192e3bc79296852607ea00d654fbd6e139fa4d380634614e1", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7a1d507f1da24bab1d6feba86e2e25b575c412c48711a10f3b9acdcaedf52e85", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d68f2c68077b53f5834f90b5de81d673307b895ce470cd4435412f1baa945", + "regex": "(?i)^https?\\:\\/\\/rblxxv5\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4b273ee8198f8776727cfb8f37f92f6a966bb6e5b5f884d9f7497c9061832f04", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0711b10b9c22347edf05c24bf39d2266376b6336224fb3cc89cb76a4dc0aecda", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "80301ab3dac5be178eb8061a6112b1938d843da93f77027b62accd1d7a1ce045", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ef313f64460a00c4194f3a56548af0d4894a80fa9f876b38321f586267302462", + "regex": "(?i)^https?\\:\\/\\/instagram630767\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ff80327d6d7c3d8913a8e66c6ba5d5e8db4557b28f64dd1cb0fbac44c4efdbe0", + "regex": "." + }, + { + "hash": "b072afd0517999f261a5df9d45304b9c629eaabe44406a898c6b9796fa4a53f8", + "regex": "(?i)^https?\\:\\/\\/female\\-fitnessfigure\\-body\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "baecbd837f139b7e9fe92669a2489715a692e0b13950b5f7646471a9c5aea8bd", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1e227d0174cf773139332373dded06c41654c6441f02af219937fc5bf61ff4e8", + "regex": "(?i)^https?\\:\\/\\/rdvsecret\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "734231fbdb1761061e04427befdc71108cb02265b110c38c96b47ef74b34b9c2", + "regex": "(?i)^https?\\:\\/\\/rencontrewebcamgratuit\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "95debd1d600721bfcdc878149a2a08f6162bee2cbd6005259558bdb22db73cde", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "658d62eecba75eaf62ca52b634976a193c5ad59a11ff1d35790c196959b8f5c3", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9a35e79029ee7b23ead36b8767b8317bacd112d5f82ab622fbc2856fe7f5de85", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cc4e0731ff104d027e9b83ad512504ed175a5d6ce69d59ffa69a0836c85aed4a", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-desir\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "031e05227d59c0b1d1ee5e8c73fb6d70dcf338957e119a5cb0b187d702f19c5f", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bef3158fd449c642efd3afad27d6d01c35df75af0c0a7207969072265df38b49", + "regex": "(?i)^https?\\:\\/\\/525asd27\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1e69228214ade1a9f778bf854531e9cc5b6edd1a841f046e12e074414863f3a3", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2395d55731091b654070eb5e129d5ffc27be1a783da7d04b5eac99775bc40675", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "daba2a60f654b3163ba434f8114fe90acf325b790b3d1d1a80ef111b0ebae83c", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e7163221ac1d7b97125bc489ed0fdfee68c73cb2b4e98cc251dbdb0bb660f3d0", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3b197481ea10d55507fe19c3e53bc7c38c15d9743ab72ac81b375cf203b7fda2", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e5be1e5d1d8e9cc912b762602c7afd98f87ebc85baeb03ad993098e2e108fb5f", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "134493c7783a0cabfeb7e727cd4f9655eff761d14c1969d71d568f08a6b6f38a", + "regex": "(?i)^https?\\:\\/\\/nasnd828\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "40c8a1ac14f0872aa1f2f6b1d5df67549be40d6e743ffce9d147222bd19b9c0a", + "regex": "(?i)^https?\\:\\/\\/lovely4youzz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bc4b703736e773dab5d9a7da37d19eb4b56c29134f8e94a3309fe46e0f4a79cf", + "regex": "(?i)^https?\\:\\/\\/mmmommm1221\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cd13e923188f97d966355ab59209a056115a401d159ab4f3110f9eb258b87c9b", + "regex": "(?i)^https?\\:\\/\\/naj27uhsk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b01d7f16981b0262a635cb551d133dd734afdcab9ca42c5abfcdad16a204f696", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-desir\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4a556adbb3b8599cd5cbfdfbe34e60da0086bed7ddf915d8fc42862bcc08df8d", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2fd6d5656bf539c76176c33276d858b7718bb55bf0d53aceede0a16359c13cca", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d70f839c7fc4a03f44cfa30890fb284d0f2ba98b7bc538e4bafefe8cd7cd752a", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7f43ff26655ca89f242e07424e930332e0b92c235c7908f6df34c2f5278ef0ab", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d3019475b532189a0bac448276913191a05e6957a2ecb0f715b6c31868e007d8", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d0cb0829385d7d762401446ac21fe7f8ff24d88daf31bfef02dd1e8734f2054a", + "regex": "(?i)^https?\\:\\/\\/gonn6f5kg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5142d2596f7a8875eb974cacb4bcb145940c75fc8381b1083ab223fe8deaa427", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d894d9dcf47fb23b230ab71b11ada92e71ccc89da4c2b87508cc8a8a6a68a8ec", + "regex": "(?i)^https?\\:\\/\\/entrecoquins\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ad85a111890e9352d986d532974c3444449914562d8dc303db277b385c9977b7", + "regex": "(?i)^https?\\:\\/\\/fdtydrtgbgfujhrt\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0944271618e9cdccf503e1528f0a9342f3ef12be0bea3d6b46afe2393c96a146", + "regex": "(?i)^https?\\:\\/\\/female\\-fitnessfigure\\-body\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0db0a00f4483bfeda9591a7d7d6c60a4202d456c13e847c96c920d8d5c4a30f7", + "regex": "(?i)^https?\\:\\/\\/supportposte\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?tm\\=1\\&subid4\\=1669784627\\.0264340000\\&kw1\\=make\\%20money\\%20from\\%20home\\&kw2\\=social\\%20media\\%20automation\\%20marketing\\%20software\\&kw3\\=lowest\\%20car\\%20insurance\\%20rates\\&kw4\\=make\\%20money\\%20from\\%20home\\&kw5\\=elite\\%20dating\\%20services\\&kw6\\=best\\%20mortgage\\%20refinancing\\%20\\.\\.\\.\\%20311\\%20\\.\\.\\.0degree\\&searchbox\\=0\\&backfill\\=0$" + }, + { + "hash": "cfaef69f640662f744fcd8e1dffd41fb935db1ba550f07cee9f9caae8f9ec030", + "regex": "(?i)^https?\\:\\/\\/525asd27\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2946481836b02566289d291e3f635553db30b7b9b16cef5400185b71c966135e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wallet(?:\\?|$)" + }, + { + "hash": "9a684307d2545a561ec740790d495b2cc5935b68bead0b56f4d0d4275f99e785", + "regex": "(?i)^https?\\:\\/\\/instagram630767\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f35071ae17e0321a36c4650b0f59e2a5664d6469c2f148c62d22bc9636dd4751", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "76ad1d40d7612b14d1074820c7e3e4fd345abb55c8b7e6f578fc1556ff65c245", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "f0acd48f983f65099c5421e3e583c3f548f0509e93c711006bed1cb6cae566f1", + "regex": "." + }, + { + "hash": "0d2b63cf90c5f52725e9aab38b5c1360d2200dea63f539878561e6e25de3e9a6", + "regex": "(?i)^https?\\:\\/\\/xcvxv4274198e4a65s4dadbhagdvafgr\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "546dd31a47c05d1768283e0f974da377c0dd7943e1a663619eb5592a93313484", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fce83bbcc7ce419a5ec24db11a2dec4970215a47fd2f7f70b6a22748efb621a3", + "regex": "(?i)^https?\\:\\/\\/gonn6f5kg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "63740001f99f1754911e64e8f49a1f5d2e8be0a791bcd9262e9c7a7203e227e7", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d717ffac03d1e5e529a26bbb694123577cd9e5a92cb9c136808adcacd829a348", + "regex": "." + }, + { + "hash": "bc2d168e888443701feaba4f8c0d2671612190bd8e418639e9c9bdf27728d78a", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fdf61e5273faa1609ea0a536f1ecdd57249183b11fa44d451a6cddeb2c98dc0e", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e606dcfbad4f029125e2917316f6b8590f9cf44b9f1dd1cbac5a9500048118a1", + "regex": "." + }, + { + "hash": "ef41120046d79c7203c8b9085f74e971b3611b191de1fc651e4ccc25ec166c47", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "25b6e22e789a5e1b07e18c0f0beec95349fe6303dc239fa334826ff9b03238d3", + "regex": "(?i)^https?\\:\\/\\/525asd27\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "febca03ce9f84599ab2027d6dc2796e05984559afdf3d7c0bddcbd67ed38763d", + "regex": "(?i)^https?\\:\\/\\/supportposte\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9fb2a349c0a395036ee603770f53ed86d5d007561f2ac017577a2da85d231b7a", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "88d8b5860f5e484f07777267ad4e01d87a9f60f2d8b412c7cf4bcdb403c3415d", + "regex": "(?i)^https?\\:\\/\\/525asd27\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "05b48251864afe39fff9b4d91ebd23d848e570d3d68e9edf2771598d265827ab", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ae82d5dac3c8c62f9d6c3595efc211d961ca058229e490500c4a4ef1a7b2983e", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "90819600abcc735c4bdba66b4d381a33e16d367ab8b24e8cade9d2897bf7f1bb", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "816f929dffb39bcdb97ce33bc7ac42d1f3ffd16804c7ba00b0587d55cbe4aeb5", + "regex": "." + }, + { + "hash": "d43618190a7a8ea892351758467713cc328e276ecfc18c98bcfee346a8845b14", + "regex": "." + }, + { + "hash": "fa5d24cdb60a2b3caabc554dc0263d5634558b0f9e10cb9d8dfb2593885787f4", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "13b77574cb6c2feac9e216088592a01eabcaa2d9c77ef628cdd7c8e5fc0a90b0", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "02742a491c5f1c37ff423ef8eb1f2486310b2d2461bf6592cc15f98fa911db4d", + "regex": "." + }, + { + "hash": "fd2e32ba53907e3acdb2b6989c4c3327b7589b7167c292b2430b00a73a24ff7e", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxosz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f92c23fc8d70ff33c449b25a3380f2e8837205aac659163475c327849447ef38", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "dc4ade82eef838f9cf68e1cb1da59ad7abc4a7f9c2a4b93587ba869fb5a4ef2a", + "regex": "(?i)^https?\\:\\/\\/indiagova\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d0b4772b3e9cca0253f7cfee2f6b2be245129c962b9bb2a70d66847d701186d4", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "663e6fcd4e2d29a525515a676264e45abf0dc2705c024f4d27c22d5e3ad95bed", + "regex": "." + }, + { + "hash": "d691cd354d5cf7b00d33b8e237b9e6c16a7bdd899355dabe1ecbd08862fb1145", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7cb9fafe3ad4d58575b732e8902a3fa7ac2057bb8b126aac4e7e567c6a25ea8d", + "regex": "(?i)^https?\\:\\/\\/nasnd828\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "49e9dc243919f6077ea2bfd3b4c7668a67baab4e317f24868e6833ef9c859cab", + "regex": "(?i)^https?\\:\\/\\/francerdv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bb946bf3a78d14856d1ea8e5f7501dc713f3cc78b2dcf4b09c3a4bd6fd1c229d", + "regex": "." + }, + { + "hash": "c33b860016817c59e1b82811ce50a36d11f2f5b9770ffea7bd6a6ec742c76edb", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "086ae53b9e19254ff359e616c9a3b9c1df5d8a930b4ef9d0a2330e6995f5253b", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ffca0b59687c3a70905d6ace05432b33a3677ab71bbdfc24b39edf87cb4b3fed", + "regex": "." + }, + { + "hash": "bdbe82681d19f148420bef20404706f90ba7d05c0039dab78106485b3b75f53f", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f21ec98c0c9bc7a4063f73f1431cad36f1c6b5d5183797021af922746fcfc1b6", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fde9029032ea631ef44880b19f2dc35f3031b0a91c46f7378d41c4e5731ef6bb", + "regex": "(?i)^https?\\:\\/\\/entrecoquins\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "04d4c2ac6cb59bda9eb33ccc8393d88c401c5c1ac16ff0255ec894b824111692", + "regex": "(?i)^https?\\:\\/\\/nasnd828\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5dbf00705109d622ee149607bfd84f23bd2d3d233e6d4dcfefefa3333f526284", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7a12d473cfa9eeddf1e10201750c20743f4284481e4ee743760d5f5d050dea68", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "49918f067b17237775e37b41911163a415875ea16ee64cd961aa2e7ac7ee9d4c", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9a05fdf40561f761e919dd0b5d4a9f1056f57c7ee9fcbf811bdadf68547e6ddc", + "regex": "(?i)^https?\\:\\/\\/lovely4youzz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ec8d743d54b1fa23b0ee52b562132185536a810f91c4ddccbbf386797ad693bc", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c9b49a48ea2ffbddcc1f8891c19424a0d29a04a9687dee48a098fa69282ef2ac", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "14008de4bb7519a402294226a621fdd8318f3aacf7e387c8e632538760bd5158", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d01624d8d19f06b194e7a0ab032e0a62481248f5108f460d05391f0073b6a0de", + "regex": "." + }, + { + "hash": "72132d74adb5f0a7474235cc9ceed510286ee789890d1cd6584a42ea526783e5", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "42e8ad8d0f2659709dcafd512e42b219cf8a957e864203678a6b59b0c7999bea", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fbc19c1e6e28e3c885d3053f231aab1ad80b1aa31e64cbfa61ff57ece2dd4ebb", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b2bd0724e36196ce13cf1bf09e4b91a8df389b0fcf5c4b953dd2b1b8570f04cf", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "59bdc8ab11aa3033ca2279adc1a5044309fe760f3d0ad52641987d22aaa3b858", + "regex": "(?i)^https?\\:\\/\\/tolkienboy\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7556ba18bc83a78294d61377a396d4ef9ec6ab03d0c8fe167730bbef8266f86b", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "021e196edc5d366a57c1fa8d29fdc6e3cd4815b0894dcaa168c5f29b0637f212", + "regex": "(?i)^https?\\:\\/\\/lovin\\-date\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "12d67d5e885bb9b5401a4c1f8df4aa40dae28d12f2fed487ad3ca3765d62066c", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?tm\\=1\\&subid4\\=1669784627\\.0264340000\\&kw1\\=make\\%20money\\%20from\\%20home\\&kw2\\=social\\%20media\\%20automation\\%20marketing\\%20software\\&kw3\\=lowest\\%20car\\%20insurance\\%20rates\\&kw4\\=make\\%20money\\%20from\\%20home\\&kw5\\=elite\\%20dating\\%20services\\&kw6\\=best\\%20mortgage\\%20refinancing\\%20\\.\\.\\.\\%20311\\%20\\.\\.\\.0degree\\&searchbox\\=0\\&backfill\\=0$" + }, + { + "hash": "82d71015501e2cee2070fba74c4efc0dd05c4c77047db90e3a742f809a68800d", + "regex": "(?i)^https?\\:\\/\\/lovin\\-date\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a00518769de83ee4980c2476fade5d71d8d313bb9ee29d4451e197918ff413a9", + "regex": "." + }, + { + "hash": "7a4db228c20222aa7214466ecdea6cdc2a1578d2b8aa50c3a8873e55974b2f5f", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "25de2bf4cadedfb2ca0076e998b57bc3e63edf233fdc384e71c4e0bc5a071a12", + "regex": "." + }, + { + "hash": "08b781915ba311e6627d90e252a15da4f9ba1591f42a5aabab4e1527ff5df78e", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "40793a3d67d63944dcce3731d223cb20baf0b5848c46779c72ac1353794adc9c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mtATZdFX(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e9905c55cf0d1256f7aad495728aa36f490598319b4ba7df7df5e02146452d2a", + "regex": "." + }, + { + "hash": "0ef190d36800641dae75f680516fea4906866590838d97d643edd1bc7e8f9a0a", + "regex": "(?i)^https?\\:\\/\\/hutyxnaoemafredasexa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "67f42433ed94f6e8f412065efbea41510ee2def679aebab8cb371189fe7c2979", + "regex": "." + }, + { + "hash": "381b19b46ead458d51f44c41a6702a8876514902f1563ace167fed3f2702e837", + "regex": "(?i)^https?\\:\\/\\/bennyeu5kg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8287609ae41921c2a12787d9e98cc9cf9d55e969141757d0dc6c8fb094b5ba16", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d4d92d5e77e47cf60a9ec62ebfeb489034b3e3f9a6053a2f8fa1d081a647c692", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5cf22c6b9370f2e24fde359b292a7ff2e59ce024abb752ab14e5f68f841578ee", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "afb6dfb07fcb886352be072b78ac13b3f57c908165eefd09b4fd154373412c9b", + "regex": "." + }, + { + "hash": "c0087c89cf1de171a66d994f4706937ca99309e51c8157807cde3111aa8b0fdf", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "61297bd417e687cf2c7b86d246774a58cc7956c5cc0cc31bbae30942f04e251d", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e536f1c9d635d838121b0b587538cefb20ffd452bf96ed9de6e37c996a1ec139", + "regex": "(?i)^https?\\:\\/\\/supportposte\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1db596c33957c5acc9d252738f55df4a4f7d9967c8c21b1d407cb022853a841d", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d3497b45cba4e8136645f7e0bc31d45dabd4287b539a72fa054d29400fde3839", + "regex": "(?i)^https?\\:\\/\\/zxcnb872\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d369de219002ae4943922e22ad34cff4ce6d6cb827c38b10d4001581ca082125", + "regex": "(?i)^https?\\:\\/\\/bennyeu5kg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "94620617996ecbb5488dfd5e21093e91296c35b75e98652cc7838e3223a489b3", + "regex": "(?i)^https?\\:\\/\\/aksdj28sdh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7ae3bc5b58bd556e733eda1a4336d5ca159055d390025db72b824bfda8c89ade", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9d1331c4f0e1bf76a5fda8c003ac9217b78692fa9bdb0aa81ec3ade28d771e56", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ec5b98eb46ef1b6ba11a792da8d87ca49fcf94db5143fcfbfb2fa9dbd431dbbe", + "regex": "(?i)^https?\\:\\/\\/hutyxnaoemafredasexa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6892a6e3e95b787de3805922b28730b5f155bd9e827494e270aa5f5724e33b1e", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a434bd63d917f02755eeb16f054095e745a62d00a66e7ca26863391d9b2871a6", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2c21455b4a6e4d0f53668212c816c360bda86506a404db365b5239411a10ee18", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "57d2b23f524b84f8f65b09520d59a4b54d00feb12d5d9bd191f877def3708816", + "regex": "." + }, + { + "hash": "37d4d7afdb1a9da72155a7a6786311bdc8a85880ed03c72b6fd7160c0f57082e", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "622099859e9b5014d6d701b47e926e64ccab7ef31db5045ee482eb5cc74d7805", + "regex": "(?i)^https?\\:\\/\\/vtr466urd5ee64c5yr6d6u666\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c2889ceb731a0153b4894f6df8c08d25b47553b6b0bb491a41535ffc98f41e96", + "regex": "." + }, + { + "hash": "cfedcbf8c0ce3233fd56b24158ebcc7136eb763631c1e45e3a49f4eaba7c5b98", + "regex": "(?i)^https?\\:\\/\\/aksdj28sdh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "959d9e2160a06b4a8fb67e60024198b80d79543f71c1d98a0fe3750000203636", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f3efc30c676832e69bade5c2b1c6deeca9406934d60f6c9a4f9d48acf1cbafd7", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "457023ffada26dd2929f63139b712ac5a927964136503ce0fc4d3f390486d210", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8b07fc15e9a6af3a3fe880878ddbbd1ae003e6ccb5162ef36a22c42e06f932ed", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a803a552eb8040970597eb3b53e680a1d33788e5a2293223848f6a540d7d71b4", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b80f58af151881b2d6fbe800ca2be7c0a901c2dc65fca42d08204c21087ac46b", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-desir\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8ba8e24743d7f4dd939ec6c6d5446947aa8e318e438baf28e754386f1fbfc9b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "de9c609b4baefe625ef19a70901e5fdca60d72f7ed94169171469af47c57723d", + "regex": "(?i)^https?\\:\\/\\/aksdj28sdh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "78fdb6607206b4b54c3ff9d3c2474ff818db82b4e9904cf64fb083888eb55736", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "18de4bcdb964a7d3dfc31312a3e9c8ee431df485c31c15998458e7a71d2cd49d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.pptfaf\\.com\\%E2\\%88\\%95lfqixh\\%E2\\%88\\%95bzbntz\\%E2\\%88\\%95tvruocw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ulwfud\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eee7a997db277d062d82efdd42dd504a75cb0f4d3efb9ffc75026ef7143dccbf", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "315fa9b2647b034e33b3d208633348b2c82aeaa7c7cbb19effb2085787eb433a", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d07f818a63507cdda112a700c030ec450283ea98b55dcaa552e7f170560fe486", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1d02098a657849a154409e0f7861cf5df1ad2b70526e549df3532d86fb9a97ba", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "be3690bdc6d91f45b27e04b4c631e35754f3a50c9b09f8cf4301fd2653e3bae0", + "regex": "(?i)^https?\\:\\/\\/rdvsecret\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6bbdc6b56ba768976f19ab62d5e28c5de2f0c1eca3d3c6d4bd03e72641dd9d89", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c[\\/\\\\]+$" + }, + { + "hash": "3adf4422c572f0e0994e5fc1b6cbbd49f48aabdfe527da40169e3d7511524009", + "regex": "(?i)^https?\\:\\/\\/rencontrewebcamgratuit\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "96b185b3d3e13ae643b306cb2e93be1c2b6280ad12e92f882f54681a69988db9", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cd214c7e3fcf4cc3bf7039c4e9de49e704f9f5046c4a532786f239a252af9f99", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8cc1e938c60c5a8c97e9924351471e42df087c0d6e7671158c6c39064ea7d7ce", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "533a74219662dfa7dd5fe8f870b11cb0067526268585765a144a6a3b4dc1521b", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "217512b4612e02e2107f7b403218d6ae2947e794f0c2c8d59e712088ed428dae", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8818ff59718118f98b8f9cba9a31cc0b43c3c24f493f799783e86ef9ab0708a0", + "regex": "." + }, + { + "hash": "acdbe9700248362d9832484e180c1d4429a3b0970fc7c6ed9f52907423b138f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d3c6da4bf86a997b672e555ba29e70f719ba0c9d2b5a9ede8faca5fcff72d5e", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-desir\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b56282b614dca29c21ecb0a231e9b20d414c5687a37359433a2f30ea613f4869", + "regex": "(?i)^https?\\:\\/\\/manpower\\-gummies\\-australia\\-2025\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1688339bf82bd1975755ba80472f72665f5997f930b3dc0d3b6f8b66352d48e9", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e8e2c6261613821d77661ce011182d8012f9ab12ab9e196bf5875b71882e2f91", + "regex": "." + }, + { + "hash": "7be6a9b9b7142b7569e2ac0f277a6464f1eeadf8bd1eab728ff14be29c99878b", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "04955d23972b1084ba6e15f8dc0818b47acb23c685df7b660f2adb7e97e91496", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?tm\\=1\\&subid4\\=1669784627\\.0264340000\\&kw1\\=make\\%20money\\%20from\\%20home\\&kw2\\=social\\%20media\\%20automation\\%20marketing\\%20software\\&kw3\\=lowest\\%20car\\%20insurance\\%20rates\\&kw4\\=make\\%20money\\%20from\\%20home\\&kw5\\=elite\\%20dating\\%20services\\&kw6\\=best\\%20mortgage\\%20refinancing\\%20\\.\\.\\.\\%20311\\%20\\.\\.\\.0degree\\&searchbox\\=0\\&backfill\\=0$" + }, + { + "hash": "6026e32e72c2329916937f83bc14c90297fd2e6e54bee41a9888cae6fa4f9fea", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "365ceff8c9af3e9af5d8cb9b67659f76ddaca3edff9c0e3ed7d8c223989efe3a", + "regex": "(?i)^https?\\:\\/\\/rdvsecret\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ec639b4790fbc822d345546a00a455e67ead810cfeb96b544937425f04767ea8", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eb75e56873f4e74773b48d3ced636dedfe6984a5b94195ca69caec39410f2eeb", + "regex": "(?i)^https?\\:\\/\\/xcvxv4274198e4a65s4dadbhagdvafgr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "60fcd3d4feb6f8319188d8ce87747f3f67a11586919bff966684df1f14266dca", + "regex": "(?i)^https?\\:\\/\\/supportposte\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "646478ac026fcc80c6c8731d7310ba19536f70d71aa208276ada834d6d9e1aef", + "regex": "(?i)^https?\\:\\/\\/fdtydrtgbgfujhrt\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c78462e2b160394c287367ce6032a99534ac80ec93c3340fc05320da116cbadb", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cc5a3e8fbea4189e59a6e502a16b0055ed8cc2abf9ccc4a65a9d43812060bddf", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxosz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1521eb374cb06d213300106da7f8629a9fc46aa7e5b883aaa4473e587420035a", + "regex": "." + }, + { + "hash": "93b2253d45748c4fd7303dd90ec1f17518546b556dcc685aebe81dd8c597bd93", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "149af9dddc550b814413c01c5ff9ff8339555e93e3597ace97c452e2297c03f4", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "028ed7cb1a1d04fd553ac371ec22bda7afa93a9e4f14cc39f519ad26960e2866", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "51e9f5424f9a386971c30086aec09dee4e480eb1915da53c5664de0b63328ebc", + "regex": "(?i)^https?\\:\\/\\/hutyxnaoemafredasexa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "606bbe093c4b6457082df1ca3ec906979df63bc9646ea09be50923eb727db9f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "4f91be62ae44df83521233d14726c220779bb5b34679f2cdf64b340216abb06c", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b18f68037cdbaf5d9bfc6a35a339b97e068be83062394ca3148aecf58727b2c2", + "regex": "." + }, + { + "hash": "8e7cc50b5e083ab5a31226cb7552d6a406750d668465c14811ddd9d311e8c178", + "regex": "." + }, + { + "hash": "e3fc0fa3bc264a5f993dbb7b623a91ce31b0e446f39457d64d2f506ce6816849", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7b6dd4b589032f52e28ffa72040bea76a8f4ee47d2090f515128775b75a51975", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "38148b4206ce00112bedb72a38616fabbe5a83027792414307c5aba78dedb905", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "3bb175313f3c1faa730ee0be0538120a0adeb0e2c1424cc1d409261e0e3cc90d", + "regex": "(?i)^https?\\:\\/\\/gonn6f5kg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e65f067beec452cfad656d3f9325263f5dcf5dbd2104cd6effbfc6354e9cb495", + "regex": "(?i)^https?\\:\\/\\/gonn6f5kg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "63b4f3fc4aeb1bcfbeef90a4158fd26521b4ddcd0d4d7f8643b468d5961d9534", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "eddc61d0c5a7441a7ef8c356ff33fccdf61228d1aefb7f4ab857286c66a5f57b", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ef972cee11a45640bf0032467fc70e64f67a5649de39baf511d1555eeeb5453c", + "regex": "(?i)^https?\\:\\/\\/mmmommm1221\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b1fe3312878185aab4b7045cda1d77c68a35f8a7a346c452bb850968d0d74ac9", + "regex": "." + }, + { + "hash": "0541594fd744a94dc56d14c8b2a50955b1cc711c813c65608f5cf58763979a84", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-desir\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b7dbbe3788a5e0748f437add6fe375e7aaabd8b564e41468d8fab3621e2442f3", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5e14f2c0816a2a966d95edf882668dabcbf3c898d7345bc64af623555389eac1", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "237dbc189b3e6be9e510461b2a5721c033e1ad801d6c531144b01ec17a2bd880", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "60bd2d17c6de5b2d78c5ef71ae288cae7e117bb7ebe5fd8d1873e054df230eb7", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b4a2a1843112dbda584573e223d4a20c7df1f7b4e115e7a4c0a7c25e87b3add4", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0b1c002b5b05e831a0e078921280ce70d259d39f6175117d186b80045a6d3a9b", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "dfe592ea3b92aecd07c4c3cac2f07756feafb2577153d357979edbd8163ef797", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxosz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2ae5829328392417075272cef242cbceaed89175251a6e12a5af099cf0d0a62f", + "regex": "(?i)^https?\\:\\/\\/home\\-106387\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "76e64d8a6a3fe57729c443234b2ce3020fee04c3a2be5f32c9f9ef042d9d573b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+viEm8(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "52a3f39e272dc0302089764e8148948d840b31f792fad57b029d17630cfdb38e", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e814b22573f5a19271e9b934c0ce51c270715630fb7347f379d45f78cc78f9c3", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b2df59968a7576c724c1d585b0c614ead41a433f290e15bab38b87716e7e5233", + "regex": "(?i)^https?\\:\\/\\/lovely4youzz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2b07a91a0f5e250f6320484c9fb1da45c61445b19120c9245775b9d22554817e", + "regex": "(?i)^https?\\:\\/\\/zxcnb872\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "beff632cd0cc36af64e0fca4cf36ced690db7789c748891d5973b2213518637a", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d12ba0a837a6358f91d71f57cd54e4aa8e606a895b61dfab27139351ade3a208", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d853385f685e53ee04fcc47d07b183a216201af313da1b76c9449d4380a3169e", + "regex": "(?i)^https?\\:\\/\\/francerdv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0feeb1a19a16d50805fd89c73eefc8a058f5601c84208472c129b5d697629806", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "18478aef2ff48504155d3d20ad5ea41946645a7c74ae1b2223b20cd270f6e846", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a7e805b09e470194d6fd45211c2318e6d8fd204c155a7f9b2029fc3544f0430e", + "regex": "(?i)^https?\\:\\/\\/fdtydrtgbgfujhrt\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "eb9277bdaca9b68e8942a1174dffcda152ba7dbbd3ac69ee2c1b27d8439a9ee0", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c6671d126124113c46d2d5444235c1a4f61ab0f1ff8972108063ed1b33fe8a2e", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "da12f888b34af299fa686b35c414e64e6195c9abbe1bd29143829922da70b685", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a6aa71bfb75f0d1d3be8a5b41d6e75b28bb98038dc1841192e0fb304346f8a65", + "regex": "(?i)^https?\\:\\/\\/525asd27\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "361e21efbc6bd04f0c9ecbbc1ac079243b784ef7ddea42c810a9c1d88800b988", + "regex": "(?i)^https?\\:\\/\\/fdtydrtgbgfujhrt\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4b43f081c9d785bb2bf9f13d39b0c64ee09b0519426420f7a1f38f17faec7acb", + "regex": "(?i)^https?\\:\\/\\/les\\-annonces\\-coquines\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "94b9adaa0a7d053a16e779b7a8f9cf76fa3957372d2ea8edac626d30a8c07613", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "34b9535246778d0e11575f8e38e673a24c182890965b8a799c24a2293df23ea8", + "regex": "(?i)^https?\\:\\/\\/gonn6f5kg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ed0e484ce3a819ce28e7d72dcf64cf4ff76999c9111eec045e7ece608416e175", + "regex": "(?i)^https?\\:\\/\\/xcvxv4274198e4a65s4dadbhagdvafgr\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d0b4ea9cccc5ddfdfe1593f39bb70a8593322ae45d03b0c235b41ffb32bb4014", + "regex": "(?i)^https?\\:\\/\\/lovely4youzz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8466e380838b9b49f408b36e0c2919fa1f20a805450794a8eead672cb0d99cc7", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "46ded6b567e1a5ad913d81a142cf392a6764f310234720d6466c20a73b838ac1", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7283bb35218c0f069ee1d9a1ebb2ad837f88b328714796c1603b76c988151aac", + "regex": "(?i)^https?\\:\\/\\/rblxxv5\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c983d05f1d37b68d56886f14831cbb2dfaa46f70cc1d883505079a87bba55161", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "53d7f93f7ea77e91b0d5e6cca81e3af8037e74bdec5b2b290485a194dd1b0f2c", + "regex": "(?i)^https?\\:\\/\\/525asd27\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d341c1f3b102ac346131a0dedba9af188db4e7fab44f20757d61ba58062777cc", + "regex": "." + }, + { + "hash": "a1800061d666689eb11fdd3d409aafce1c809baf3601977077a0fbfac348d239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "44a63b220e10134cc50fc9bbfc335eb6140cd2011da509c4d9ff3681b740c5db", + "regex": "(?i)^https?\\:\\/\\/cxzczxc2dasjhdha78dyui\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8ce9b203b1c51994a63016295aa5d54d2ebac6f258a52d7b8ff1ecad6ddc9a56", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "26c03649745fd1ec49f358edea6e6fe164e26e585e7a2994f851b7bbfa0bfc30", + "regex": "(?i)^https?\\:\\/\\/cxzczxc2dasjhdha78dyui\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1ff8554009f815913feeb0e544839726e3a6f44155fe2c22d6cf133371b4b366", + "regex": "(?i)^https?\\:\\/\\/fdtydrtgbgfujhrt\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "552c811633e9f249e8a52dfdee97eb9dfa195ba40127d2a1a11425582b56fa04", + "regex": "(?i)^https?\\:\\/\\/instagram630767\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "03ead8730201e0c1ecf2f9cb102fcee6bbc6bbfda90c9cc53824df541e7eb716", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b2e035acc8f96eef17ae1962dc4b6cf90de48b5afdf6d5d7022db0053ba735d9", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1874f4f0573fb95434b6b966d005da4cd8d7c99500d5d3c2bb3f98596ff2212c", + "regex": "." + }, + { + "hash": "61b62f63e1a9de1bfcd9b648ef0a023082de38eb04909f923a871ff3839be192", + "regex": "(?i)^https?\\:\\/\\/rdvsecret\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "abd374fc90967b344226a04c328562fc151986004dcd1b390aea73bdeada1597", + "regex": "(?i)^https?\\:\\/\\/entrecoquins\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "22e39cee28f44d71e1bbe410e97ceb6ee79d2e0653537c48c082940ef3f60293", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c220b9aec5dd3161c2689af2c68a368820530add6aa094f910f30499fa268061", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2c805bb0fc1f69143964076cc439848cd5aad7d3a9b1f19f8e13d96a99d43016", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e56cce10a45b3d2bfb8d4af5f9d1dba662d6a1e6584f6c850bd295bf84311759", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d3ddffcb059777877ca5d03752d7a444ef7d3a355d5ffa1166135f02a97d2fce", + "regex": "(?i)^https?\\:\\/\\/bennyeu5kg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "061b75a5fae549c77f206ec0ba5b1bb2b8c2d7db63b8e6a68cc2453aefd0508d", + "regex": "." + }, + { + "hash": "09d12dee0d71be95ee5647ebe1de0ee2047889cd3ed2683947000865185b4568", + "regex": "." + }, + { + "hash": "f60ecc9c8a8cb1218b0da39984f8678b29267251a6a2b7e35cd121a56a80255f", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "44e09a61f046b453aa9915f9a86c1a5c2afebfc79d09eec872fcfeae3096b432", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c7971078fc4da5e7161e2a1f32f684d5f39155e9db1121d50c11e21101a364fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c[\\/\\\\]+$" + }, + { + "hash": "3160cbcaf90b48a24bf2487f52661738b0b4cb3fced9132b07a824c12ab0cf03", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0eeb22b61aa46829200cfff5616e15b16c3f007e56cb95b328fe4d61765332e8", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "628277a9f60294a98907281f7cd770cb53ac860ef16fc55ecb8a1f23e589c4d4", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "17dbd77254c23650ba3fbd501ded898380d292fc11eefa05444749b9a962d3bb", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f5edf01df9efad4bb9a5e2934d2c62108f6ec950c9c4e00b2e37398346b0b2cf", + "regex": "(?i)^https?\\:\\/\\/lovely4youzz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "612593d27ff5c1b3d484a274c99b54c61f585317b12178187cae0da9aa705809", + "regex": "(?i)^https?\\:\\/\\/tolkienboy\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2946481836b02566289d291e3f635553db30b7b9b16cef5400185b71c966135e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wallet\\.html(?:\\?|$)" + }, + { + "hash": "6bbdc6b56ba768976f19ab62d5e28c5de2f0c1eca3d3c6d4bd03e72641dd9d89", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c$" + }, + { + "hash": "2b07796643eee58705472cf943a0dcdb8f49e98af157604cda1dd5a995b1527f", + "regex": "." + }, + { + "hash": "6e0e4fdde0a6794b5f1af23c0c2824281174f970545ef5f452202e0f040e155a", + "regex": "." + }, + { + "hash": "9a02d8d2a9588cd2fcf9d34f5b5c3fd2c8f82a256800783be48cc551e0b9648b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c[\\/\\\\]+$" + }, + { + "hash": "e37483005ded4dfd432a9609bd1bc652539281bebd99f3c1c11626ebb8b0572d", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8030afd3cea9143b6673c4e9d58ad2c4083e466efbb93fc64510c0c24950df85", + "regex": "." + }, + { + "hash": "2feafad9f1c9c6c7e27f98dd850eaa1f6c83a91c74cb317eceb12b5aa49253ef", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ebd7e20fee6740c5ec944174d9ef32cc256af5200fbccb4fb9f2ad9af66eb0a6", + "regex": "." + }, + { + "hash": "e60e8e844217680c85084f73f0831facf0eeb76d61eb1762e9ffdc3b24591792", + "regex": "(?i)^https?\\:\\/\\/zxcnb872\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6a9250d12ddb554654a116cc83684074f073d4587256bec709b92f93c4646f75", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "43f7e9b136ac651e6fd5147ab18b5db6d361805d7747b7fa016cf477d7d7131f", + "regex": "(?i)^https?\\:\\/\\/ubub467\\.xyz\\:6899[\\/\\\\]+web" + }, + { + "hash": "b6b3312e9167fb0e922fa1013f7319a53e79a3fd82220403eb01951469c0921d", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d49dfbd02f7175e75fc18616964cc4ce8a69f6df0c9068baa73f3bce0cfbff44", + "regex": "(?i)^https?\\:\\/\\/zxcnb872\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7c1384444dc32b957444cbb17150dbfc4709af3050ab586aaf0cbb3afc5723c0", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "889d7e34bcb39b414cf82305c24fd21afacba5814af98ac71736092a4c0c3757", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxosz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ad444e509233bc4b8668f9170073d551771d4b93f91347d45d02ec6e99c52253", + "regex": "(?i)^https?\\:\\/\\/bennyeu5kg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d97857baad957ef4e70497778cb4583766845c8245bad66e06d744713c88eecf", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "526878c11436bafbc2b7563a58400460bf2764f949c8d8cb79a9b899bfed4d54", + "regex": "." + }, + { + "hash": "ff6659b4a844b84351f8b3c9e705c303cb9b6871c816a0487f9d7aca10dffded", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0cb3367d413ca810137aedd5025b2650204aab5ae8cc46a8867837f10aa2d086", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-desir\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ea72f7becaa7b35d056e88b93106424de06ebf426ea875efacb5bd9a79ee2d3b", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "411dc714d0138a9b79fed5359ec01f1ccab997a2ee1cab309ada27938312dbf9", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "05426477e9b9dc76d56c5e0feb269b163a542b0b7a0ac8bd069f850d88679d0f", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3f53df54940e94d2734b06dc3eff55ac4709d175ecd9ae5100657a757fa38ae5", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1a626148a787cc7ac70e31dcd4e83e5d4540295a78556053c0efc56549951578", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0fef417d187fc1459f77f692dd7b76ece3e827cbe5b8f4d4fb25535e3da1f32e", + "regex": "(?i)^https?\\:\\/\\/naj27uhsk\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "401e16bfb37f8a6505256487996a46fcb9f4e0229186c1b4a1bc5be10cca6535", + "regex": "." + }, + { + "hash": "c3cd3dd46766199df6ded6f8502c924a77cb856fd19ff6f4b21481636f6ee72e", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8d3be42ae0c7c5de0e4b30af90a51770c42a45bed72bbb006156a98723d304c2", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2b46ed0b0f01f0fb14d9f66b930e41439edc48780df65e82c51743dc4f3d5dfc", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b5a58ea805cfba44e78ca9f3b9c9f457d352d9d108d878321b86b641bece5462", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "021e491ddf5f4327ae0c635663273c49dcc8aeb4a67b54befa03c8d592cc092b", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0aaa2e636232d2eef54fcf91270cfdc87d30697f4f771b1ec8cfdfcc02aa58b2", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f41bd515113b525a2392b1575a34d6b116f98ece56a27683907e7492fd441567", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=bkplOQnB$" + }, + { + "hash": "e0fcbc157440877cd8dbbbf97eca1f3bd51e8bc99de852d4842b843304e23014", + "regex": "(?i)^https?\\:\\/\\/aksdj28sdh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "90af14e0c9f33af1b2a6558dbf813aa8ceac930d943932b3aabd1d6bb42fb781", + "regex": "(?i)^https?\\:\\/\\/videoxhot696\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "24632f246c4d7017b3985a58cebb823a5265fb4e783805b9925a7548fc338bac", + "regex": "(?i)^https?\\:\\/\\/tolkienboy\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "25eeca9d9e18a1d9225781f0300fb4cbb5eaddbc0e64ca654cc690ca788bde32", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-desir\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4ea2308d040e99d66b4baed9c5437e45240bda966bff5cede46854a4df915d0a", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "077c620daa12a20165ec81def4d845444bb3e5bbee9ee823df9b84983c71ee59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rI0viN(?:\\?|$)" + }, + { + "hash": "089588c716170b5f7b964b3a1f7df843d4a38e448e4ed551d2a98744441f2b9e", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "29ac7b14c77fbd27effcd39e83d6bc300881b2023eb68d5ceb80e1ee4abddb94", + "regex": "." + }, + { + "hash": "334ba117f351fc74eeb8ca911c15be03c18dcdbe55b9b48da76b507c2d0e3de4", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "139bfa8657bee815c0193229aea3d9d3ba67a99abf10e0db315c31c9d5ae2f9b", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "654d8adcd804a1e80ff5b227a083b2a7f164152149161554fbfef8a033d79b3f", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0cfa661717785d25b8187bd4ec034a72ff83501aba1def036b345f445963cc5d", + "regex": "." + }, + { + "hash": "df5dc7529760320ac3a6920e99173b73dce7d0d3b0ccab207c24e095772ed8b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?tm\\=1\\&subid4\\=1669784627\\.0264340000\\&kw1\\=make\\%20money\\%20from\\%20home\\&kw2\\=social\\%20media\\%20automation\\%20marketing\\%20software\\&kw3\\=lowest\\%20car\\%20insurance\\%20rates\\&kw4\\=make\\%20money\\%20from\\%20home\\&kw5\\=elite\\%20dating\\%20services\\&kw6\\=best\\%20mortgage\\%20refinancing\\%20\\.\\.\\.\\%20311\\%20\\.\\.\\.0degree\\&searchbox\\=0\\&backfill\\=0$" + }, + { + "hash": "28e75f7efc5b3dd13bd65bda189e828dec1d5bb2c0fc536ed31dce56d4f5360c", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3b2cdb89dbce5e56e7d97d2eedb1109a8c5423cfa61843d19bd5b20e48c8a14c", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "87e10a8206c43a5fb9af0a8ae8a8058c166d414f809b0a5258431c26297446b4", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d4e4d682efca18716567a102d7f84286b0bf67d90a03d6959429eed88f9e1239", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a246eab308a6c0c231005a1193eb95b755191988a9e708ae270b6b14d63956cd", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a0f9741def719784a187d194c8fdf3cfb820d20bf97f0040e2fecbcd25907834", + "regex": "." + }, + { + "hash": "a1800061d666689eb11fdd3d409aafce1c809baf3601977077a0fbfac348d239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vib\\.ligat" + }, + { + "hash": "d62c58fb1d5dae82846d0175653758a8f476c4b54eb4457fc63ce84152bc75d1", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxosz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bd01bd74db2d3037968d0057353434a0165f637616b5ea87b14243ee04333f22", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e09259838d4ab878582f670b986fdd2a3a7b1641c952e227f0a7527ee73a5097", + "regex": "(?i)^https?\\:\\/\\/female\\-fitnessfigure\\-body\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "97692204a4647db5e266905f7cde27051eb1289d24497ff239573eed4c34b512", + "regex": "(?i)^https?\\:\\/\\/francerdv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6495ffd03f81f4dc966c2616359d4bde6602dbebbe2cce5f284e54cba87c9260", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a08251781e16faf3f52bb7526aa0b24d31234e351507b5165862b31ca984b4a5", + "regex": "(?i)^https?\\:\\/\\/gonn6f5kg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4c7f26d17e625262ae029250401e930fc1b48f70dc0cfd244e8b4e5f1cb442e1", + "regex": "(?i)^https?\\:\\/\\/instagram630767\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d4fae963296faa0d06c0ea29a3fa9241de745e8dc0ee5e0ab5269c74a69df3eb", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "723f6904fd0c025602fcbba0630d91620a5e0c0bbb7f3599da72a1f2d6c31d05", + "regex": "(?i)^https?\\:\\/\\/francerdv\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6fb1f23313efb8cd94d546b7a517c173db4dc9084d017de1b9187f8f1d13a3b0", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5b3282ff3edb0c41d19758d581d8c8e453b76c0c7261804920f888579913d83a", + "regex": "(?i)^https?\\:\\/\\/tolkienboy\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7d1fd17025030b77ac0220971d00ed7f61bc2b68d6cc134fd1391b7e237e408a", + "regex": "(?i)^https?\\:\\/\\/lovely4youzz\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2f3b50c6cf5a8cacce0494388206cdfb39d52e4db9584ef76bf5695a6a7820ab", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f5a070fe8bb5d2292ec12ad654e3cb1cfa5e1e74919f0fe6d8ecfc71bcf66078", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3116c197a9f72a816228e536275e85138d38a6deb0d7fa20e457a590e725217a", + "regex": "(?i)^https?\\:\\/\\/rblxxv5\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7d1fdd7c5c3e534f2da8d2e6da29c2b00533cfbcabfebed2d76824654ea392b1", + "regex": "(?i)^https?\\:\\/\\/instagram630767\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5ac647a93c8d9ef2c6a23f5c881992095efc902046c86b0ce27dc48a1d850141", + "regex": "." + }, + { + "hash": "50be23c74a92c42e6d4a45611ef6bb45d28053b88f670a31a775782d0d1b375c", + "regex": "(?i)^https?\\:\\/\\/supportposte\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "98363ed3f48948ea66c1e9a04fce8307e4f7bcc837ddc12081561291730958f2", + "regex": "." + }, + { + "hash": "7b3e894ddfc93e205c22cd9733aada3a374cb9ff4ffb55d56e38a1e08f958d05", + "regex": "(?i)^https?\\:\\/\\/tolkienboy\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a649db7a6feb3366d7f72e9f42cf90eda99cce77246b23bc63daab6602dd3662", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cb78c94b94b474af731e938cb03a2056e5eea5f3745e2636148e8da30dff9fb2", + "regex": "(?i)^https?\\:\\/\\/zxcnb872\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3f53bce6027cce73a53829ebd89a0bee42fb4ef9f51c43965282e5e39e018d92", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ven\\.xilor(?:\\?|$)" + }, + { + "hash": "bd5de23d1db4c4d8aaa37ef9e9bb80b86d5f9697582c5544a8c8f3fd1fbc3a47", + "regex": "(?i)^https?\\:\\/\\/525asd27\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bd7ad8ccc367aae2c3a02b3f9aebc24a1786ce8118eff55f088a140dd76b6000", + "regex": "." + }, + { + "hash": "271b8ba02137a05f75e5785d8133ca97f2a4f79aa895bab444790012d9faf8d5", + "regex": "(?i)^https?\\:\\/\\/aksdj28sdh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1527a9843399f2b4aa9a727360e1bea19ef0cb08419f4d263decc44c1a84c392", + "regex": "(?i)^https?\\:\\/\\/zxcnb872\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f75e82dc9bcf0b4d780e501585435384567acf0a011ea3cd8aec71b6d85c970a", + "regex": "(?i)^https?\\:\\/\\/nasnd828\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "df230541208f568ecb2cf86aac11d938533a5807bd4a74f9a8b7bd33c2358775", + "regex": "." + }, + { + "hash": "92fb8f5447726025804d401978675f22c6e4b08a817b1d9171390952497694b3", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9dab88ae137dc3582994657f960b9136a4a81a1ad0fe3a0f34e7a4c63c212a75", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5b390649d2bce9c37f9eb61bb783d69d0cc5bd8130b983323247babe8f71608f", + "regex": "(?i)^https?\\:\\/\\/cxzczxc2dasjhdha78dyui\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d96369dab5fe348ba57eb8a819726b55bf63b394728536083c57460500b8fdc4", + "regex": "(?i)^https?\\:\\/\\/reb\\.txx\\.gv\\.0ga3\\.tiktuft\\.ir(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "85350f53e3c683ce0ce4106bbd0e4974ef9eb34ffe4f9556beb5e0f5aec65ef5", + "regex": "(?i)^https?\\:\\/\\/hutyxnaoemafredasexa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8e335854bb56f1a43eac051b257d2f62e58e801254355d9a1da1d70d224cdb64", + "regex": "(?i)^https?\\:\\/\\/naj27uhsk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3bd1f8caccecb175615f6122c8fa6cfaa84aed712cc967094b4f3ebffb4b65b1", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0a373e3f03bb7d76c559b1f3503c772566dd44d71bcf810474bc65409cf81743", + "regex": "." + }, + { + "hash": "57985f5107e8fcff80db71ae261052274c91593dd965759ee7a18d2a6f6821ec", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "073f8a0c299eb04d9be7f3d6d8c087e13828eb8ed058816704069948f99f80cb", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4e2924cbb1ad14130d052da0cc9097bc21a32a42336dfa9902c181185ad24339", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8a36f03c23f082f2c547f39fcb7ab80b97a354e2521df97d7a73a5f07f175a7a", + "regex": "." + }, + { + "hash": "665f15caaaf6d52b8a54bc353ddcb63fe186228e7e901d4ab23ff2086a307fa7", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxosz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "107fc5cd412e633444e97b8c052373606078508166adc4481f691131ae1c9d2c", + "regex": "(?i)^https?\\:\\/\\/newhotvideos\\-88\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5860e9b7198aa9f3fdc23d854897b11572a647e5069c1ad21bbbf9e8e245677b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c[\\/\\\\]+$" + }, + { + "hash": "f0ac751f5024422e60c67590e31d24def5ec3bb73acf0ae4e69a04b836cd383b", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "53fd81495453079bb06d3fdfa953d4becd17c8b5364b7b2ed5a2bfdc505dcf0a", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b5be1c879d8ef547b14932d712546daf5f5698e8ea0535db57e3dd9c6c7d4f43", + "regex": "." + }, + { + "hash": "56fdcad40eb9ca3e84be132f19fda5d696b59c2b9663f8a7f9520be88ad7563d", + "regex": "(?i)^https?\\:\\/\\/naj27uhsk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a89556ae9900c5a44469215fc702df2526a093ae25bacef295536f859d212e0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Flink\\.kemkes\\.go\\.id\\%2Fnursked\\&sref\\=inbox\\-shopping\\&xcust\\=mail30c9884497bec12ed45ed3ba99ff$" + }, + { + "hash": "e33410f1370cb3e0bdd909d6562729efd63046c880c7596f5f48d01a170f339a", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-desir\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "074e6e0183a44178d07812a686bfcfefb567aa4d8a1375cd8887894a779677af", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d043ff7adacbb498e09989a6052344b225a936673bd99356faa3bdec6d5ed39e", + "regex": "(?i)^https?\\:\\/\\/tolkienboy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8d1cdef2889f6e0f93c657122d572258fae90a63873d7973d3bf378e517de679", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "513d652de4de980c99a73ff96d6bf6ec40141dbf896021a67d3a8807efcc1497", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "006c9719832d5c6691b179ce51715796904e7bc4748fe41c609ab1b07818d082", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9c0508ca75762c5eedc4413ce1247cf903a598f075df3f4190c8a2ae57a9786e", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "173852e8bae110c7b619ee9e2d90f3d7e15405edc86715faa3017da4fdadeac0", + "regex": "(?i)^https?\\:\\/\\/mmmommm1221\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c5f591386fe16e474496882ed9447e0ff07417654062f0a9c8159311adc66cec", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a89556ae9900c5a44469215fc702df2526a093ae25bacef295536f859d212e0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\:[\\/\\\\]+xfinity\\.com[\\/\\\\]+learn[\\/\\\\]+cima[\\/\\\\]+login\\?referer\\=https\\:[\\/\\\\]+link\\.kemkes\\.go\\.id[\\/\\\\]+nursked\\&sref\\=inbox\\-shopping\\&xcust\\=maildfdf81e6b777a4c2b1461eb81b0c[\\/\\\\]+$" + }, + { + "hash": "dd5d364c4231d1574cde051d679f151d89c1193d265ef81c4158de1c5c11f31c", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "341c05c9d9e1015f67e0fdfcaa723dd56863bdf57067a660137deabd7764e936", + "regex": "(?i)^https?\\:\\/\\/playmovieznet\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "93609bc6372264a6023be60cfde6e3cf5588f3a0fcf6455e37ed597823853888", + "regex": "(?i)^https?\\:\\/\\/oakleycenterr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "13e270e1207b6d0779e979954ac7ad1d87d64542626f1943ef3107fe364d5eab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+get\\.id(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "25d2ed9800038fbf4595fb1775c76679a29e92bdbc05be1aea0dc5a26eca4773", + "regex": "(?i)^https?\\:\\/\\/aestheticlolita\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bc8391b59146c498b0dafcf0d73e20c3069e02510a040296741ab78fc0930671", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3da02040c0e753bd20322592fc74d06164e19e473776d9b8f8269b327e1ba01a", + "regex": "(?i)^https?\\:\\/\\/bennyeu5kg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "85846e1ed2b3fdb79f0165dac857c62711282157d21c0d0faa238c9d5c641223", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0\\.6267628372450482(?:\\?|$)" + }, + { + "hash": "89d5068493fa78a01e221abe37a3eb5c8041d4c6f5076a5239bf494d48fe0e24", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3a801eeaa407c3a0e901c08737b14e3d7f5d38194504b22c2fc7e0fdf1c97849", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "cf1fe6ca533f2d39db0f6692278a5cce283380281f60146bf135217f9657637e", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fa56446acb7a1e37c98ffb3fabf55e97d310ef42cf47057bdaae510086c79df5", + "regex": "(?i)^https?\\:\\/\\/hutyxnaoemafredasexa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "27bc7bf7f4b201f7624a09d2506c3d045c27f6f726e85d58c20a3d8b577a9dee", + "regex": "." + }, + { + "hash": "047b2008c8f98c6756b556d317072b33cdbe9bb1242c99aecd1f14f5439615d4", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e6e1be7b4dee4cdd2121e630c5751a25f051bd96cd2301967d002b8094be3b86", + "regex": "(?i)^https?\\:\\/\\/body\\-building\\-pics\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "59c27336955ab4d5d2fec9ff70ec1d1a1203ad0141fbcf1237d0364c056c2ed4", + "regex": "(?i)^https?\\:\\/\\/xcad22asfasf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "779acde0feefbc986835be265662ca969dce8d2aa8667095f14e11105c5edb2f", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c8849b28778185e2d965f25ac245676c69b06eaca60f5721129eb36e2f4fa987", + "regex": "(?i)^https?\\:\\/\\/tattoocelebrity\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "793302dbc2cd25d490ba995aeb3178201f0f090553ead87a20747df2d7cec653", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5a8e9ca7394a8aad578c5ff1ef74a74859902718d81f528662cee0f62a48ce70", + "regex": "(?i)^https?\\:\\/\\/cblogz1\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6b7c046f5346313c5f9605e4f51308e8e752016d693b9fee13d6541c0d9479bc", + "regex": "(?i)^https?\\:\\/\\/female\\-fitnessfigure\\-body\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4b22183e43e68f3f48daac581dbafa6512aba98d8e1c5418d32e30e7e4ad1c51", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "959d7c89eaad8a93644a99698f95a561dbf309985204e2a8198d4a2f14106167", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-rencontres\\-coquine\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5b58a1357f345317553ee9886725e32dc7d7b45b76a33c50ba439337792ae15d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "b49d781015bae8d839c5fb1af2cfffad24d0968fea0a9c85310712210ec18e12", + "regex": "(?i)^https?\\:\\/\\/hutyxnaoemafredasexa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e53234dcc7570097529020b5adf4f8ed13ff10409135721c4abec835b6fa3ce2", + "regex": "(?i)^https?\\:\\/\\/sgirlmy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "416fa2878ce9273ef093f0adcc7d3c00f3c26a04e543af1c6cc26bd2596669d6", + "regex": "." + }, + { + "hash": "e7d78681a80b5c7b13079f670757b9a28be91efce11a84671981a884d2d47a61", + "regex": "(?i)^https?\\:\\/\\/rosemarygurl\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "446766b794a73f82ee0545f419d685749075490fa3b41e76f0275cecb42e759e", + "regex": "(?i)^https?\\:\\/\\/supportposte\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d9daad6b05a9c676a801e238c989e94d3770714a28ef8ceb143cb293f9553feb", + "regex": "(?i)^https?\\:\\/\\/cxzczxc2dasjhdha78dyui\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "17d7294799a3d83706d2ca34dbba836e7d09886888c779e827088be722ec4402", + "regex": "(?i)^https?\\:\\/\\/rblxxv5\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "69ec4c8b385020960280cc5aa24d5b3c5bd3ca39779a1411f69daeb4575d06a4", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "22d43c060067339f1bbe4bb6bfc5f52c8b140f4c1549a8bfecef89c032c72fc9", + "regex": "(?i)^https?\\:\\/\\/nzxjc9829i\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "209058124bec2d49a2b8b122c65d158a03dc092ff9465c43a2daf4f6f5e6b905", + "regex": "(?i)^https?\\:\\/\\/xznu828\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1798301fa5c88e90f31e77c83c1a7ba9bf977c78e08813517ab690693381e0ef", + "regex": "(?i)^https?\\:\\/\\/sitewebcamgratuit\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3e159fb5f10515f0dd26808bdf89f991459d59d09a29e14c58c57a9457a53897", + "regex": "." + }, + { + "hash": "aa71596ddf26734732c7d93114118231186d74217a80f1ff4d44a3044ef10f0f", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8995a938f9f7c363797fd3e6af00443c1483a7b2ac30373410c3f27004a342f0", + "regex": "(?i)^https?\\:\\/\\/lovin\\-date\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e3bc0e407ec08e3bf7bd18ec373b21630d7e0c636e787cfbbfbc4908d32a8c26", + "regex": "(?i)^https?\\:\\/\\/45s4a54d2\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2569eecb1a9320239eaced2f09bbb6dcbfe29bed5645894b37b61919340aec68", + "regex": "(?i)^https?\\:\\/\\/bennyeu5kg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cf6823800b1e9251834276d21ba80cddf7132410567df63c11d10d470312e6ed", + "regex": "(?i)^https?\\:\\/\\/mmmommm1221\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "585846b846f839e49e8d3a5ea1455c8fff563c403b9957fd46311ec5db924e7a", + "regex": "(?i)^https?\\:\\/\\/fucksucer\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "327e976374820b82e0e992e4e882dc3ad49dbbd9a98fb09ddeddfe0de2ea5a90", + "regex": "(?i)^https?\\:\\/\\/epic\\-free\\-v\\-bucks\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "96ae60c9269699969ce5e59815651ed9b42f507b76d3acaf8105af28db4cb83d", + "regex": "(?i)^https?\\:\\/\\/electribytes\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2493b0909d38a395ad4138b68968efb02ff5f953e8df71696cdf187f72f57614", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1aa509f8d53f3c79c6317a31cd8fb37f2a70d7eae7e5becb815fafc451dec463", + "regex": "." + }, + { + "hash": "1d9d4b616d62d6d92f62bfee19768cd1c4048abfd13660a75de4dec41da7f151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "cc2134299d438087b7b414e308c3c08bb39562659dd8f3d5fb9c831dddccb52f", + "regex": "(?i)^https?\\:\\/\\/hutyxnaoemafredasexa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d657110ff3b0e3a5d3c8e7c92c4f84f897b00e26ac6873736000ec4824a1e0ca", + "regex": "(?i)^https?\\:\\/\\/nasjhd827u\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e0129d74c17ad4f442a61504aebea8550d4d5518633ca018f2ddfcaba6cd0aa0", + "regex": "(?i)^https?\\:\\/\\/meandeme\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4e85e45ec049e08dab9e7d212c4a637f58f34d9acf62420c94a2af6909bb3ef9", + "regex": "." + }, + { + "hash": "43c2570da73e1b375cc59c41c9314c51a270b93579d212ff7c3b8e865b00ab6a", + "regex": "(?i)^https?\\:\\/\\/nasnd828\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7967fa92d23cdd979f47ad0adf36219743364126287ea0f0ed089e169f069576", + "regex": "." + }, + { + "hash": "2656099824ac5eafdbac730bfca9208a00dc9af7d53b2977d661c24f6e720a2e", + "regex": "(?i)^https?\\:\\/\\/rblxxv5\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a6cceb3c64f410e2e77b7ae12477846a79f67705e4f5951db92943c9d721d1ff", + "regex": "(?i)^https?\\:\\/\\/showcamgratuit\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cf10eb2db25e7d421d1c689ae997298485f61b224898eebc4569bd8c7b8f6e81", + "regex": "(?i)^https?\\:\\/\\/camxgratuite\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d3c0e8ea1107ee380184843597459f860380244a1e98db0a08b2196383e85fbc", + "regex": "." + }, + { + "hash": "780496eb7d421e0299df1aa013f72e38dc15ddc274b4f26979e5995ebf855a02", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b80f71f7c1897370624d6e3d031b13ffeb05b7b9c0d8f90a81d37402ae9a1087", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdjhfdhfgjfgjgfjfgjgfj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "daba5ea4001f7ac80e7aeeb81ee124a21eae4b42e79c0e6534fa7fb49c79d652", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{19}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+0b739b63a9" + }, + { + "hash": "202a04c22107648c032babcdedf23776faa0dbc617a74fadbb3a39a31f17231a", + "regex": "(?i)^https?\\:\\/\\/thahareather\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "94ead1f0c2c5cac9faa1ffe694903aab816666d18ee9d346df05425ea65c2f30", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdfgfghgjffgjgjfj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "bb28ec0b4a2d98d0e9a9bc5a2e8f65437035407fdf3432bf75e6691f1e9ee3f2", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdjhfdhfgjfgjgfjfgjgfj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "539523ff6479e1005aec1938c8dd5f06383ed1b0629d0086bf9194cfa2c8334e", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjhfgjgfjfgjfgjfgj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8d3b746c000f45bc6ea71891b43965c776027110956d7c78935985b7cfa67c37", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjhfgjgfjfgjfgjfgj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "457b4eb9f4cdccba7f5d2c1905d1bf942cd64fc053bccd04d696f6a1dc3c321c", + "regex": "(?i)^https?\\:\\/\\/dfghdfhghjgjfhfgjgjfgjfjg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "868ea1b1d8535a9acc4eb139d402844d26cb526155d3e59c9b1142b54160fe1d", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d5756757ac3e164f1d11cb3f2c1517cbb558c28554a732413afaaf5180a9b8b6", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9421998ec6303ff6fa1229f54e0690faaa2fc0ec35dcb58eba876ca2c7969146", + "regex": "." + }, + { + "hash": "5268bb437794fbe837257a9ae07068535d7f931616fea83b0fb9c61ec6334d79", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5a890f8a32c6d49197bc0753958ec5953d727fb5402e701037498943d1da0276", + "regex": "." + }, + { + "hash": "2950a625fbeb250c32f582fa74ac6dba0539ac0bedab86d4730c2ea05829c8b5", + "regex": "(?i)^https?\\:\\/\\/mmnnpolygo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fda1fb3c1d313696f729aeaf332389466dba8b27958e57637b0c8d48124cc6ea", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7fcb1c331c63d9a092ea64f94525c27627ab698af3ec317d007cff00d4da2d5e", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdfgfghgjffgjgjfj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7bf6f31ef74cb8a152d5970bde5b159077cd187af34cad398c5bd39205c8f024", + "regex": "(?i)^https?\\:\\/\\/xssajzeel\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e71a21fa83fa56888cb3dff7f4db3acccf6bf9b98df5f6aa7ca14a144063793d", + "regex": "(?i)^https?\\:\\/\\/mmnnpolygo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4073e2be73bf3e1ad6420c6565693f835501ce3af70b95f647d81b040b037ae2", + "regex": "(?i)^https?\\:\\/\\/ffrewardredemptiom\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "46bc1c057700d77318065386619a94760cd6934f3c098ca6d5d32068dfb834ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0b739b63a9\\?t\\=Y2FtcGFpZ25HVUlEPThkZTM2ODk2LWRlMTYtNDA5MC04NTU2LTI2NmJhZTVkY2E1OCZ0ZW5hbnRJRD1lYTA4ODNkMC1hYzhlLTRkOWEtYjBjOS00ZDUxMGMxZDZiMDEmdGFyZ2V0RW1haWw9YXJ2YUBkaXBsYXllZHQuY29tJmVUeXBlPUNhbklQaGlzaCZlVVJMPU5BJnJlcGx5VG89Tg\\=\\=\\&p\\=38$" + }, + { + "hash": "132db84c8434812c487471a18016c5132d2098d2b5faf7ee1cf8dfe6925d08cc", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-celestialtracker\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "91830e3908f9b808b37e753f5808b65e2e9dbb802c40b9523615275889c31928", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdfgfghgjffgjgjfj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c88eef8ecc5fedf8fdd592be470b5423a77b0c6e0d1ace560f007ad0de6c565a", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d1beb68c97419c0aea91c91840caa03cf9ea83da1dd15ec3f46c89205ea05cff", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "94467e4ccd233dac4a235f74e8a66d2041fbbd923cf75f47d208f610579ad265", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "56cbca016d09d4e3ab31af88f1ef6abc6029db42eff2f4f41386048ac10e7cdc", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4f391356feed69b8b9abf4d37b8e30270a8a26230c5ecda003e172f79d3c7c7e", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7b31968ec9b2d93e786817ee4260bd47bebdf0216724cbd5646fc7b3938cebbc", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "76d3716996f341b7e8750051e312d337a862acda2b0b02decf0a9861795ea951", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e236ddc47ccf47957c5f4406cc6e84a17f31dcaf42d555856448addd8850bd88", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "75dfd2e7d818844f43f837e4d88e4eb727aa0adecdada76cbf78b8a64849e336", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e87932de23a7c852095c23e8ac71b9055fb24ef86bcf22c21c11f239dc17a14b", + "regex": "(?i)^https?\\:\\/\\/fghdfhhdfhdfhdfhdfhdfhdf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "842f6cbd514ba6215f46c4ca8fedcaff97e6518dfce18644fd0d983d3c035eba", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2239e45e87e47ee97d2480e1999d06ab524f421d60399cdc44633e52a948d6fc", + "regex": "(?i)^https?\\:\\/\\/dfghdfhghjgjfhfgjgjfgjfjg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4145735a58eebada1c601ebecd50e02c27773a6c9ae575090b204b8bb9121591", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghhddfgdfhhdfhdfh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8ab43b578a0f6c316f1d5c1047165331aded30cacc1c7c5359eff3da980bc4ab", + "regex": "." + }, + { + "hash": "ecedbc66abec795ae53b0cce88c21d4757b85735af06c7c231a3fc755ab47d7e", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eecea05eaa6e92eaccbbdac91a5e6ca6cd504417b5219b465117ca35fccbd7a6", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4141633014b59f2974b782b978bd54d865c4b528f62ceeaec2d8a82a3a5e7956", + "regex": "(?i)^https?\\:\\/\\/fghdfhhdfhdfhdfhdfhdfhdf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5395dcbde03d548cb3431a1efb48572f71a748a874d628d1e3a6b1572cba9ac5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register52968(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c430e5ea67b52135534f36b4306ffc3c2d169b2c910a563e4e414b316a8a324", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8da7937355ecf7bb4254180e4ccb6515479e3fe7da9b1e167e53b92dd23b4913", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "dee3d5c3292057b59d43f14f22e38f123f1c8524cf0163ec1068b1e0637e8247", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdjhfdhfgjfgjgfjfgjgfj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c51cbb4ebc91c698558b88193680d21c3950c796f582fc8aa24c14c8745e70bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9142[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "1be01cd99a64a57c17279d0e525fb2d0fc263d6221f11128d14ef71d11c626d0", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d894b18b5076684787f3779bcb18c83229176ab04f797fe38eb5d59b598b59d3", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-celestialtracker\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7bea7688a06d18dbc2e215641960aca7658aac6fccdd6fe4787a7f28ec616994", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8bf10ea6cbc0bd0628408f5d52abcb4902216cc1e0d33825518b7b3edb6ac6a0", + "regex": "(?i)^https?\\:\\/\\/sh4r3n0w\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c4e627668693928e131c38ddbd60bed74db3516672c7b027544ad593a7ec49bc", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5b840c73a6e28c232b1c59708dda4e913c961ed0e90d114106d180a5c93d4210", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "72b5785bab77c288a2bb366d86093a78f68aaa0cda54af17d537da3995297cdb", + "regex": "(?i)^https?\\:\\/\\/hotlink11\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "89d918093d94eb7e4f73e00a37a358c3b7028b03117ef3f0e199c863f47919cc", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e899605213db3c05291fb46af3c027468310427293118297cc8a0a66120c3b74", + "regex": "(?i)^https?\\:\\/\\/robux\\-eksimerrr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "221e10bce30f019b06744a9c4e90c20329ee6c4562e519537d2a2f8f9e109346", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvfjuy\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e71aea3ec823c49b746d9031a55ae725189ee7bd5c00414176182ae78fc3eacb", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-celestialtracker\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "dd85b4543e1a50096bc46e8def0c242f88e7cf0750144dedf76b890c30ba1379", + "regex": "(?i)^https?\\:\\/\\/todaynowclip\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3ab25ed041e9fdbed6acc974a930aee8019610eac4252f89aa6a32caffff9ad3", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1317410f92ca53e4eda4bcd5486a96e376eb6991747f6adc923b07a9b82914e4", + "regex": "(?i)^https?\\:\\/\\/ffrewardredemptiom\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1c41bc4c0d74a22b90427ec06609a29094ccaf45dbd8d95ea5891c21dd8ac31f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "081d8ddd0e3e0c77d4d7079545ff0043bef194a89ffd42474e7242e95d60f63b", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f5c1fa5f010d297e53cf0940c8bb32a01dbc50387d488e64e41680b5aba5289c", + "regex": "(?i)^https?\\:\\/\\/xssajzeel\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a641ab5254d66d7187c5d55097d1e8895b1526a03139c764d050bfe5bacde882", + "regex": "(?i)^https?\\:\\/\\/thahareather\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "865e4aebe7cd23b6170a5bc0ef82cb35ff503f26c7818a92054d867db1cad120", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghhddfgdfhhdfhdfh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1f8aeedfdba5c112a2580e99c2bcadba4c177a0187f6fb309e0bc0164e17820f", + "regex": "(?i)^https?\\:\\/\\/xssajzeel\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{12}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+0b739b63a9" + }, + { + "hash": "8058231b49dc902d9a23c8175cc48eb6b5e11eb7fbab227ef85ac05c552fee3a", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e160bfe20c54cd4b9172781ec544f53b3c636ab67e3183c9d9f033fdc62aa2f6", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ecdcc01087fa4ff1551ac9c335c91cb0f7247ba58ac8dba5bf48d2700b05ce94", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c3bd743dbc048a4fa130051db6ed2d8f831e504652260a97bf7e52b277086c62", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "42da30f900422d6ea228c9718adaefa922c1dbccb0b223de205e4c4a85bea0e0", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-celestialtracker\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8601a3e5ec0fe8d9cd3a9fe0be7fcb7ccc21ca8e2222be7c2473929ffb769795", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3866c1c079f66b3061b6e0a2ee0a674f2781afd22e515203c764bb7c8c1fc6fa", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "184a28742805ff0c15adfdac06ec56a6728c6c579c095c513cd8060f2f9a1332", + "regex": "(?i)^https?\\:\\/\\/fghghjffgjfgjfgjfgjfgjfgj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{11}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+0b739b63a9" + }, + { + "hash": "12d6303bce15f142c87986eee0c76517f565f86175fe91979f87b33feeba1a9f", + "regex": "(?i)^https?\\:\\/\\/dfghdfhghjgjfhfgjgjfgjfjg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b5e65271d851c7619623d30c7f803da408073facc075e3eb04adbcdb667b7bbe", + "regex": "(?i)^https?\\:\\/\\/hotlink11\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{17}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+9efaa330f4" + }, + { + "hash": "8e22671d601f5374535dcf5ec7bab07d404f1ee6d5829f144c6e38012fb3db92", + "regex": "(?i)^https?\\:\\/\\/fghdfhhdfhdfhdfhdfhdfhdf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b0e53235d1acc07bc13cfba5dcc9cb315648124cfbb492f0597472437095943c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9001\\/?" + }, + { + "hash": "9fe2d86786b884280cc5ad4b03dc4684c8a3fe2d88d1ec88c398df7556936188", + "regex": "(?i)^https?\\:\\/\\/sh4r3n0w\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b0f14c0f3dd5bf54bb82ba39ca428b0b0bf00e7f10f0b4efabb3f2ea68270413", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdfgfghgjffgjgjfj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "14d8ccd70c966dbbe1fb64b87e1c26ff3f02b5130d6d008ceb11e93d1127144e", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdfgfghgjffgjgjfj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "95c8db82f9f1c758cd8dba2f371ae530e7100391b52c439f43ca58440471a0fc", + "regex": "(?i)^https?\\:\\/\\/ffrewardredemptiom\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "07b1b986bee5d693f537cd5798f10ed902576008ab5ca0914519436f6b487fe9", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "dfb78b81b673c1cbd4a4ccf0e0b0c4b91aae0e78f72be1ca833079f970158f69", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "64b12fae265c09adfb43f64244a2fda0bb9a58c90c4c4ccb2d9594892384eb96", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghhddfgdfhhdfhdfh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5bf92f3e79f9e8a6c8c64089da79158f9ea079088db4dbc945a269f0bd84596c", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjhfgjgfjfgjfgjfgj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3634c5c0f4be7b9bc24382d17ad0411ed53afaffff1303b6b6534c130a0424cd", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8bcedcf28248345cdbf7510fd833ad8e4d148a4439d8a4cc70778d5a0f818256", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvfjuy\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "68de1adf4bd1b41462c85e4eccd94b9c1709c2fa196a495d278137d9fe8ec75f", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "62fcebe4e739fd87fc37b67bad071d874739af6f248cbcbea14411f8b22775ea", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "845f9c18acb69a896a7abb3c68c910c4ed6b8030cd39b2e22eb96b9d813ebd2e", + "regex": "." + }, + { + "hash": "3d5ef4130b198e6f5d920a2e97b853acd24dc65936f087c2791957c67ed39728", + "regex": "." + }, + { + "hash": "56b357a898cc08d192b796487bb0718df94f189ab9a5f2a2bf1c02cdb1403033", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8e3503422fec15254dd7db7981d9b67f01b7a1bccbefde2c43868eb21d4a1b8e", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "25c3a170dae7bf2693aca8bd6f5dcf979a4224c084f27a13d2e400b225605d26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "27de592ea0fff06c53a643368ef00ca07b009c2efa74f2f6e321767caf4c762f", + "regex": "." + }, + { + "hash": "a48724404ca3d2657f3c04a6483e079d507f185cf51e808fb2b8b4d8705a44dd", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "14d87c9c21bf7684014e1e9b4e277e160c5262747128390d355f3406f21abc51", + "regex": "." + }, + { + "hash": "67ae3d89ce5cc6afb69d22c8f0f5a7f969f1040073c8ae4da18d8a869c2de8b9", + "regex": "." + }, + { + "hash": "539cb805427647698b1e7bf1e2625cc9172b5e292e36c89b491e5a73bfea430e", + "regex": "(?i)^https?\\:\\/\\/mmnnpolygo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "baeac63732600ab77aa1ad0127f95a5ca2ca605d92d29ea0b0d5515a74fd8219", + "regex": "." + }, + { + "hash": "9401b6fbe1d1aaf27f44c0950f4012a87514b83c300236b89f84c3ef4cad861c", + "regex": "." + }, + { + "hash": "86430512c7c015ab5c544b004080a43da050f5038d66b73b3b9b23de25ee9b1a", + "regex": "(?i)^https?\\:\\/\\/robux\\-eksimerrr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fa71e8788495dc3b7738fe8894c1e65791271f1836f5fecabd66778bb6c546d6", + "regex": "." + }, + { + "hash": "943383376879358b79d2c87299e60bb129df257da16e610c40ea1917f00e392a", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2c13a6c48a4386501dbe62d53a22e8a1018b807c79618987ce7532f3ea3dfb50", + "regex": "(?i)^https?\\:\\/\\/hotlink11\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bf57caf3db22ba902c39d60e84fbc2706f98ec30dcbb1668d3437b320eaaa784", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4e68c4ec4860e84531c61a990d08e1ff49299426777edac6cdc798c874a1a792", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdjhfdhfgjfgjgfjfgjgfj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9bd787487b28f40487dc6d8ea6dd14666078cd73e50fcaeb1b7c21e956ca549f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?user\\-agent\\=Mozilla\\%2F5\\.0\\%20(?:\\(|\\%28)Windows\\%20NT\\%2010\\.0\\%3B\\%20Win64\\%3B\\%20x64(?:\\)|\\%29)\\%20AppleWebKit\\%2F537\\.36\\%20(?:\\(|\\%28)KHTML\\%2C\\%20like\\%20Gecko(?:\\)|\\%29)\\%20Chrome\\%2F86\\.0\\.4240\\.75\\%20Safari\\%2F537\\.36$" + }, + { + "hash": "a7ae341dc87470a72f004bcf34bade808f2b331f3567d6ec4cf663268fa3bd24", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2a41ae2499ad5874ec68709095a21ffcec5bfedd4ad1fef37bb799365e67134a", + "regex": "." + }, + { + "hash": "2af73c343544a407c1b96c2da92bd76aec62178222d2c98082c9f8e137defad3", + "regex": "(?i)^https?\\:\\/\\/sh4r3n0w\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{13}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+9efaa330f4" + }, + { + "hash": "817f97db1a2cf4d05ff05cb98b7bef5090ba69397a494892f74760338b0c6b26", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghhddfgdfhhdfhdfh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6463b8456df8c149ad36cabae0f70e30c1d749feee2aaec574dfeeb55234b2b9", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "63ea6d34f28fd9a7af161113f3b379334c1fe77e7a57cd498015b5b152a5be7e", + "regex": "(?i)^https?\\:\\/\\/ffrewardredemptiom\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "71b5deddba8820abe6ff723d5011bdbf75ec32c89d73995ec9d5010b1429a68e", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c0a3b6462d4982b917244ed1a18f06537763c0cd1a9c1fd3eaf13622fc49e014", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghhddfgdfhhdfhdfh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bcd10b31ae22e2da6bdf2882350abd9259eef2ad93b101f06a99ab93b5427086", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1a1c967bf092d5fe3aa0f7905a270d11d98677d276c2241ba8f8068178ef07d4", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "20deb40120046e1baa3fe77c3cece30879f91ce1d7341ab275ed80fefe695c32", + "regex": "(?i)^https?\\:\\/\\/xssajzeel\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "858c126ab1dc32ddf0c4dad73e194c9add61c00235950d2422f8f5d4754799f4", + "regex": "." + }, + { + "hash": "4209c270c5e4f97d98f8e165ed11cb45d253a9ab707deccfdb633a101f8bb28e", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9c05127458c8bbc58c0775a8ddb8af8eaf1dcb6f56bfbcaabccbbfaa5eb5f5fa", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdfgfghgjffgjgjfj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a3d9e4c2833c04f49cea388f2055859515d3fd7659f315c2495f782857ac4150", + "regex": "(?i)^https?\\:\\/\\/fghdfhhdfhdfhdfhdfhdfhdf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ad9ff13f548b928bcce233dce1472e3adfc7577cf2f93ce9d5ab8b3729240d79", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdfgfghgjffgjgjfj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "84056a3674329b7b12f6b70d4ca3109805819ffd8dc0c9f9da6fb589867c0fd1", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "529d4a83ffea9d5dc1a79d4868ada1cf7901f7b7d7281192b46e5ad63ec4da3b", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4553c2f8d57b311b4a9eb939aaef5353a71417fa77f7077147f848502fd6cacf", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1bbd5a389209e03c1fba141cbfb08f9b2e3edd3b5b7b321946dc171219d76d59", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-celestialtracker\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1899ad48533af35a04b006a55f4c05c04aae0fd6a44f8f49b91ad3b676e17315", + "regex": "(?i)^https?\\:\\/\\/mindtracker\\-thoughtweaver\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8fd3f59b0f4404007b06c1b23cb263d49d1914f28f1d4731e4040e9246130411", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3e32622868e272a133f600d77bc8ac81c2fa8dddef576d836df3a66aca872878", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fe97d56fd869cd4873d551375bdcf680ada9c97c7a7294590b19f05c7e3ec6ef", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cdf23cb272d3775db42fba28bb78c46d94769301c278882f381d08380a394d1b", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f02e2ec210997294644139a0739b3b8de550d177703d5e4a4a4c5079998c2d13", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{15}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+0b739b63a9" + }, + { + "hash": "d6eb3f914dd42af517374267b8e07e2d9e568f3d160dc71b53e8d9d8b78b495e", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "dd77410233c420a4d84889187bbcb27274bde7ad44b887d0910454debd2aeb6d", + "regex": "(?i)^https?\\:\\/\\/sh4r3n0w\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cdae0a565b8095d062e537c0170fcf47cdd99ba407bf9c97010291cb195e2e20", + "regex": "(?i)^https?\\:\\/\\/robux\\-eksimerrr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "337cb624367912eaf454b2ad79fdbc98ec26ed875075c8cdf22a6d9425536c41", + "regex": "(?i)^https?\\:\\/\\/pub\\-de9a071ae6024ddf8a3c7af9383cde0d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d9287f17d38a23683bca36353acf56aabfbf60861772ca5880edc07d7f2636cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+in(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a66d17309e61b19711814c7931b2fa2d94511b3acff077ffc2cc9c2974db3654", + "regex": "(?i)^https?\\:\\/\\/hotlink11\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8e95495159bf08229df203c10ef53a9aff9897e41e2b2c43f3184b90a5a008a0", + "regex": "(?i)^https?\\:\\/\\/todaynowclip\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{19}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+9efaa330f4" + }, + { + "hash": "7c3fb4b3fde84989437019ff41b0015b90afa5542ed954f6a30f6d9496d56099", + "regex": "(?i)^https?\\:\\/\\/thahareather\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7ffbd29aae52252016a89da2eabcf6f3631ddfc38168fab4e7d272aed3940973", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ee1f187d530bba873eb0a2c7ad9aff46eb67b8e070f60b7b2b89ea10ef8725e0", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6af0f51f9931c2bba63fe2147e9afc28d7ef24cd21c2609579f29b2060acc6f6", + "regex": "(?i)^https?\\:\\/\\/todaynowclip\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "237877c71a8f8030bc3de4244d06342ec960a42e9d85fdbd69de041bc45c2f79", + "regex": "(?i)^https?\\:\\/\\/xssajzeel\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c51cbb4ebc91c698558b88193680d21c3950c796f582fc8aa24c14c8745e70bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9142[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ffbb2eee2e0e5362f95c3d2579f8c7ed9ced2c34c633dd9b4578824b6a75428c", + "regex": "(?i)^https?\\:\\/\\/fghghjffgjfgjfgjfgjfgjfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d6a787a5539140c434ddd57b35f97e032055a9b04ce6eb49a427cd05213e833b", + "regex": "." + }, + { + "hash": "0dd0d7ddc108068a06ed546e04f2bc7ec8601852eb1f05988177661154c84907", + "regex": "." + }, + { + "hash": "6cb5e678e2f1f24a9f66f5659dce460b37a41be33d826ed0e1dece30ee47064b", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "34ba3b475ced3cfc93a54f3ca97ccd54ce4729571a26e8deca50a17cd383093f", + "regex": "(?i)^https?\\:\\/\\/todaynowclip\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e0d180af7251f114bd157fc685ccf39dc87a3bb416f532592bfe7ba7e065e945", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3b5ce5b4d1103be7fd840a5847b3357e5b4f703ffb71699f1e0a3407bbf0f3fa", + "regex": "(?i)^https?\\:\\/\\/ffrewardredemptiom\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0143f6e62aa4b7719b90643e51142b79f057c322583472072f1d5ba65742cae7", + "regex": "." + }, + { + "hash": "ece4df88d06838581c80170f92e00bf7e77c0111c6ada9e681aefbcd3800a92d", + "regex": "." + }, + { + "hash": "0211375eafa7cf602c299222286b5a37ddafb3951f0f63589323304dd4c25dd1", + "regex": "." + }, + { + "hash": "868e5a0be90947408b4a75d433b24240001e5d65d6e175d4625299e0c059e4a2", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ec8377a0337cd37f765d606ff5f24d974e25d6ad6445af3c089c105ffdda733f", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f5da5f5d7c28d6b4b186470f440c03eac84d6bbe62fdca540c7594eac6b5cc92", + "regex": "." + }, + { + "hash": "14e8f9dfb146cefd86806a048e7a8721fcce2aa3f2dc9d7e1288f56ffa3cb521", + "regex": "." + }, + { + "hash": "f7f9ba4bff42b43b52dc5426cf872d38bd6668acdb801e8706e8fe2713ef1634", + "regex": "(?i)^https?\\:\\/\\/sh4r3n0w\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9136ef58d07a7f62973cbde4967fe5e5b73c9c3e3f12f5ef1ec7bbe86f3d895f", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{17}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+0b739b63a9" + }, + { + "hash": "1cf9c17f20754dcebe83c853a061afab8b813b724ac025aa1905a9c421d4e49e", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c77e36d98b16ffdf28c89d409618c862b12be2ed7989281fd7ac40257d7c1a99", + "regex": "(?i)^https?\\:\\/\\/mmnnpolygo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "89caacebf0221d49d0faec379dfabcc42bf26833612bfba769c5d9c59f84e230", + "regex": "(?i)^https?\\:\\/\\/mindtracker\\-thoughtweaver\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "eab0379cfe3ee37755ef1bc99f79418362b626aea7d391fd8986534af8b0d1d6", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjhfgjgfjfgjfgjfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1e7b41cc96ed809c7224ba254fb9f808e95abfd750ee9685bfdce125f9a483e5", + "regex": "(?i)^https?\\:\\/\\/hotlink11\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "16c5991617c538463471e6ef2031db23e73a9f1864cbd52241a8d1b9a0600317", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "818b576d3a017c55a33e8bc91f2e0db511ea28d003dca5f1be815afe3f65e6a0", + "regex": "(?i)^https?\\:\\/\\/todaynowclip\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "aa0e83b9113f8b5927869bd74aa1af6c76ecf7d31580c241ec71c7235e1e8613", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ti_dn__\\=3b243f7a\\-2090\\-4e4d\\-aade\\-88117cb6c726\\&__u_idz\\=(?:\\[|\\%5b)\\~Ind_ID\\~(?:\\]|\\%5d)\\&__turl\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafkreidhvb6lyoenjqeeyadjjffcubgbnkhhiipgupftm54mm5w4vvqxq4\\?index\\.html[\\/\\\\]+$" + }, + { + "hash": "0328c18842bfc1d8e691f430109ad6dece01a3e8246039287d904d6043161ae1", + "regex": "." + }, + { + "hash": "85f7bb53fb4eebf81ab30630cb7724a9d192ffdbd084ebefca5d25910abf8189", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "16886e21aaa2035f59d78eff1396aa77cbb67f4b012876f9de48d964aaec874a", + "regex": "(?i)^https?\\:\\/\\/hotlink11\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cda3a94345cc01b2aff7a03435bc93f301d5fa3fe0e6642b12d3c363bed1a7e1", + "regex": "." + }, + { + "hash": "391e3eb63a561d4601b4ac7b6aa86e7e2fae59f3b504ba9fa845326bb8511399", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "6af32d93a4d2e09fa998be729446c924874f1af458244c230aae398fd9b985d9", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4f08ce53afaf75a206caec2e8dc293699707a2cc6bf2fe8f7798cbbe2d4a111d", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f2ecfff3bdbf94b00ba85543735b35cdf941b3163954915077e6f62096a0d1f5", + "regex": "." + }, + { + "hash": "52e17d556f6be6de80d2be811e7d05ca94ddd708800ccd10688babe9678d0b02", + "regex": "." + }, + { + "hash": "2edcc024d3138687b5cae4fa7e0684991478edbd5af181dc17aa6540c1809a74", + "regex": "(?i)^https?\\:\\/\\/xssajzeel\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5bd23100e36960d9e9a9a179e3f66e45910999bfd35a9595dc52717e2362b2b6", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d6e58342d66f131d6cd7e4cb0a02bad1e2f57fa3ca7617632c7ef5df60b645f0", + "regex": "." + }, + { + "hash": "fb0046d25be2732e2edf62d3833f25fb6fac608b7f6bbc11f530afbeb07234b1", + "regex": "(?i)^https?\\:\\/\\/fghdfhhdfhdfhdfhdfhdfhdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "204104de2802b830d7a294b9a9ee7d73687ac57d75e29dd29c63172966813ca6", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1cdd135b6a0be8bfb69072cbd3e3ba3764bba510986b8b236c53dfec18649b8a", + "regex": "(?i)^https?\\:\\/\\/mindtracker\\-thoughtweaver\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "00a7eac09a8a526749ad97787c4cd3e446c31c2ebb2debe5427bed78ae4d2687", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghhddfgdfhhdfhdfh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ef0a04e16f777bf7b5a89752006305e64f67f4b7bf46b5d80cbdd644c5ffff9c", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjhfgjgfjfgjfgjfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "31a6e51aa8dff21a8f99df5a07db5ce124ffe770cdbcd328f8bb9ea5f5614473", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghhddfgdfhhdfhdfh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "17b69b4512407acfca91ce763f60eb3c4045b4e15b6378a894b4392da5ed47f7", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8eab5a65f53bb54851037f001905b247f7f00e55d3c5ffbe1eaca62ca0e0f513", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e755bec04fae94b7ade3b31bac33751177add13d026a3bb902e462f631887ba7", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "080afa78faa8a314a891c0e6e6449267dd7de99f7031fa629708ac652c961aec", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdjhfdhfgjfgjgfjfgjgfj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "22c2e6273f4dbc97daabaf5997edf903fa52f6d4fd53d5075ac006a4a500072a", + "regex": "(?i)^https?\\:\\/\\/fghdfhhdfhdfhdfhdfhdfhdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "94b70ec136f8a2966bb36b541b876e7ec4cc8730c6b7beea7b6e280d81631899", + "regex": "(?i)^https?\\:\\/\\/moonopolygo40k\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ccd25919c555757c65dba9663683758ffa6cf9dc5f0c2886bedcd55cec6bae1b", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f87d6df1bad71b62325ecba8b963ca72d925a6a04049938332215d2a0673797e", + "regex": "(?i)^https?\\:\\/\\/todaynowclip\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d47a881644b07eb5eb1180254023a8955abf243c157165f1389a21092e3fa899", + "regex": "." + }, + { + "hash": "f930d4261e0fa1e050baa5e26d02e55a837437532d7363322165ca54e93ae65d", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjhfgjgfjfgjfgjfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "438877466aceec196ee0b65f6b799588dc9c0f1fe85a14c8364866b1f2232ede", + "regex": "(?i)^https?\\:\\/\\/hotlink11\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5e002290f9418f34d60aa0796cbebc6747faa583813213bf77c8d941a31d5d47", + "regex": "(?i)^https?\\:\\/\\/dfghdfhghjgjfhfgjgjfgjfjg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "97c6e2b5d2b7e8fe7d73d6d56d4ee88346b595457566e4499bea8e80fd0470a5", + "regex": "(?i)^https?\\:\\/\\/moonopolygo40k\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c8591bc89b5f33098edf4ea3641d4301b82f19f181d0245b84e25cbe76fe1320", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6d59a61b0a315079764766d2b68545fad7f21109c2aa2a802b429003f2ef03a4", + "regex": "." + }, + { + "hash": "84a378dff771c8a2dc3351c9911d478ebde6ff8e47a52e14da5b92c362f5292b", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dd5fbc4b78a4ad0a4ea0f24c9eafe57fa49029356c8dd2807f29fa821fcecf52", + "regex": "(?i)^https?\\:\\/\\/mindtracker\\-thoughtweaver\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "406b7cf9594a2215ae8348170450630578994ab83554541e6e205de062286962", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "29ed57acec6d874b1e13a6923fa5617bc00a38c10900e603cb7507b3cbc9da6a", + "regex": "." + }, + { + "hash": "1f39aef4b5bd975fc564fd713c02c7141141879010c42276705f40f3b5ed679c", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7507ad6659e996e1c83f5aec2a94e85a04f9bd06bc04af8f3f1aa24ca49c8500", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "15e449f2d6fc108cc5e80f25a5853782dc2c0ed15aa772816947f7152c4ec66d", + "regex": "(?i)^https?\\:\\/\\/fghdfhhdfhdfhdfhdfhdfhdf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a1e690853bfe1c343a90bee3eef27b536aa004e3677aa5642eefa9214c59d64b", + "regex": "(?i)^https?\\:\\/\\/robux\\-eksimerrr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fa9e837ca0dcaeeadc66343fa1de70a81ff8c7c97cabf57e3812f4ad4a3c5f9d", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "369f1bb661784a5726ce2d125f5b913cabe1c38709e6e8eb0dc873e330a925f7", + "regex": "(?i)^https?\\:\\/\\/ffrewardredemptiom\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "80dd42d6fd66984c58b27e8a714ac9c8df8415aa5a614eddc9e6755e15c04de5", + "regex": "." + }, + { + "hash": "c34045123e4170e1b94277ece792863df16eb01b37384f75a2ea29da976ceb93", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f5a09cd5f5689f0a88037698504d8e899f10b757c305e18c2f2a86778553d4ed", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "91824ea223e1007909ef75e94df84707ace25a997fafed60e2d34eb5cd49147d", + "regex": "(?i)^https?\\:\\/\\/fghghjffgjfgjfgjfgjfgjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a727eabfd46f28cd9f161808773534ea4c596cf1b8b64b44a6c4ec0f8a84e8ee", + "regex": "(?i)^https?\\:\\/\\/todaynowclip\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7c63c90be6affdbd349d10d653a61f4211c5275d331b303bad3a0d7760db52ea", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "14fb9e225bcf778a9900a72732cfcbb042d8386261cd87bc545a784ed931cff7", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjhfgjgfjfgjfgjfgj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cbbad55b251f8837a70fa281788ea0c349646c7fa342d703705ea995fa675419", + "regex": "." + }, + { + "hash": "2f27ff5e5d7c6db0e79871b424ed12b79797a9c833900453df97853d911fc57f", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9a638e4e4f5a855d6c37fa6c1f9e9d8a92cd07019838ea0b7c6c51a578d51e28", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-celestialtracker\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2c3f1b3897726188fc3570962054a5eb62161d4732773e7c6696b86e56cc3cf8", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "259ffadc525abaf8972c4623d53f73b5f89af6f192bb0d7ba54af69ee9730c51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+87739\\-974b18[\\/\\\\]+one\\-page\\-checkouts(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "446501c4e8a745a63787ae68127fd8aa2811ce23a7806e478c4b52f4cfa9e1c3", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvfjuy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{15}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+9efaa330f4" + }, + { + "hash": "35f800dfdb5db0e1f2021d2642273c266f12d4eb811b3456f1c01a571a82a37e", + "regex": "." + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{14}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+0b739b63a9" + }, + { + "hash": "495aad85f9c4453429d5293e1aa9f810384700162b59cbee1740d6c18d8c1134", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "004c120694ab5acbee085bc6a9f061c19bfb04e46a78845ca4261aa9afd42f55", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e1fe99d96fb11eb9833d6e676fbe32e18c0910f4853e3fc358f0a216c2f4c43c", + "regex": "(?i)^https?\\:\\/\\/moonopolygo40k\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "eeb70f2052c45638845fc91938fab288d4ebf5ceb1d94d60fefd1a401db5fb4a", + "regex": "(?i)^https?\\:\\/\\/moonopolygo40k\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8e396f380bb36abf9f400b51dc2074cd4d1ff33292744bf847b26a09c008187c", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "90c52af20dc3c6306ed1c2fdc92e98c2c7a4d975099af86481fb553f19151060", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjhfgjgfjfgjfgjfgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5fe5fec32efc1b02e1b5574c4cc06a828d461d50701e41e38201bd2af1c153a2", + "regex": "(?i)^https?\\:\\/\\/mindtracker\\-thoughtweaver\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a3e5905e42fc7c783931bb2c4cefc45acc96abe3e3de0b75b03a3559585e4787", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?yzsyRtwXIIGd$" + }, + { + "hash": "89d0c519e6b33d027be157042a906026338ee94eae2d2d7c5f4631d2e590d984", + "regex": "(?i)^https?\\:\\/\\/ffrewardredemptiom\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cff3ed3327dd16c5c142ad105f58a9967b5abb821a4ad8a95e3677c513c36d38", + "regex": "(?i)^https?\\:\\/\\/ffrewardredemptiom\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6f7c4a30023d141077689c9683767b9abcde91a1469e102bef22043751406270", + "regex": "." + }, + { + "hash": "aa4d689c70d23a9bcd36e2d1cf1ee3a117c1d8ec0f01d15c8cd4b2b2b41068a3", + "regex": "(?i)^https?\\:\\/\\/moonopolygo40k\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cddb3bbc9aaf6af9862d3839abd051a3e49a98c06108ba1064b6f601006995b9", + "regex": "." + }, + { + "hash": "52166c7dd9d8206690575ad97e8c1067ed8904fe456a0cf48221eea4ef6b0e12", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2f34b79cab17a78344447d6285863654ed00884ac372bb2858e69332a2ff01fe", + "regex": "(?i)^https?\\:\\/\\/sh4r3n0w\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c51cbb4ebc91c698558b88193680d21c3950c796f582fc8aa24c14c8745e70bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9142[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "e8f0926d9bc56f6b303be5169e33b6ff8df41b763dc263e3235e962288a5f08e", + "regex": "(?i)^https?\\:\\/\\/shar3h0t\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e49d229cb27a8b92d9b84572c1ab25fd450e3b01e7c5ddd3f6cf799a9c991e6b", + "regex": "." + }, + { + "hash": "46d00ab064537c7c2b127f0605676a1a33f2312e9ab18dd1f99f2c29bacecce6", + "regex": "(?i)^https?\\:\\/\\/hotlink11\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7cf28c48af72c261ae3c664e4cfb7e2baf5663a8566cc35c34c6bd294eed4df7", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fxqrtvow\\.com\\%E2\\%88\\%95bfqiqgmv\\%E2\\%88\\%95xciubk\\%E2\\%88\\%95uvvfeh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qqcteanc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "82c560dbeed7e3bb501a9c5415a2331f7c8d4a661be50867469b2c8418145f40", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdfgfghgjffgjgjfj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "94b24504be9bc944cfaa9f8556b540a163f3d89afb65040e3fc74cdb900226a2", + "regex": "(?i)^https?\\:\\/\\/sh4r3n0w\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "10ccf1582334f03ab814013e65487b4bf7e5c62b3b089796c601ab538d471b73", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdjhfdhfgjfgjgfjfgjgfj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "19bd3cf6fefde72f740374d4c27635c05ddb96c4287b8426e0cb4ea06a6005ed", + "regex": "." + }, + { + "hash": "2b46b605986089b74955a973285997b7ce59d5a6210b06011d4eea40f00dce4d", + "regex": "(?i)^https?\\:\\/\\/robux\\-eksimerrr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "419025f844053217d0a50d96c8ec2c164ae824a4c5e8b79df9b08687ffc352b8", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c51cbb4ebc91c698558b88193680d21c3950c796f582fc8aa24c14c8745e70bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9142[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b7705fdc8db95afaefc5d45ecde3fc62d0e8b37e542b0cb12dd2bce4c020911e", + "regex": "(?i)^https?\\:\\/\\/thahareather\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5e8660adf2d7ac881126fd171623a1380943ff5bc7be8ea3f99dce9aa167a9cf", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1945b29315c1b455bf7f5a7aea228962df80de362359636b7ca45e4202980063", + "regex": "." + }, + { + "hash": "929142fabd827032b057ff8ea6602f3824d513401966c7b4db3606e0fbf62034", + "regex": "(?i)^https?\\:\\/\\/sh4r3n0w\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{14}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+9efaa330f4" + }, + { + "hash": "df2ca70cd0570c3945c2a4757c12c3bd52415d5d4fe8338e9b9df83ab60191c4", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "04c36da8deb1279818dad11a6358d02fd7b9530abdd65f7d661193f822964c4b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvfjuy\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e78de8907857955d6e479d767fc6108855e5a18041f1540b5ee208cc81f93c26", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c0e0d1d6ded49bb372641b65e65e1353d34b3caab775d91b2038e9d61888817f", + "regex": "(?i)^https?\\:\\/\\/dlj8\\.cc(?:\\:(?:80|443))?[\\/\\\\]+bc(?:\\?|$)" + }, + { + "hash": "a38b0066368f6121ad97e7c88bbe25b15260e052b24048130a1a3764597d288e", + "regex": "(?i)^https?\\:\\/\\/fghghjffgjfgjfgjfgjfgjfgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cbc08a0cfcb5e8605fdf6ed8e351ed60577ccf68add708a601ab73fdfd35c145", + "regex": "." + }, + { + "hash": "c68fbfc975e5ff11f6709d9060214e56eab14de2cd32e250ccbb409d79227ae7", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "15759f1e4a7dccb0fd02719608c8a16955344756316d19a239519bf0296fc25c", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2946481836b02566289d291e3f635553db30b7b9b16cef5400185b71c966135e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wallet(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e787d82cb22a36512342780646e80512ff2f181ddd4e948ca57bed298f1e4e34", + "regex": "(?i)^https?\\:\\/\\/robux\\-eksimerrr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f0d744db1e992c84109bac7e3767859ddac2986258fc86411e6c18b329a47262", + "regex": "(?i)^https?\\:\\/\\/mindtracker\\-thoughtweaver\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1b32d9d8505aac25aa28ef9c2899ce2192560f7aed6dc582b33157cb4a4848bc", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvfjuy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{13}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+0b739b63a9" + }, + { + "hash": "d13732f0020095858b86c16ae00978e66ffa820694f278fe59ff4636780f931d", + "regex": "." + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{12}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+9efaa330f4" + }, + { + "hash": "8f222b8461ee1a56747844278d2c182c50f5f74f2f77233bccede08d840fbca0", + "regex": "(?i)^https?\\:\\/\\/robux\\-eksimerrr\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "178d154b84c8fe77c07fccc71a80a25d3ef7144e97a4acd4b068701f3440ca91", + "regex": "(?i)^https?\\:\\/\\/moonopolygo40k\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "93bf0c1d13d3cee1427a5979b750d223cb56076e30c8cba5066d5fa3052fa8b8", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a75742ea658185d07da4015569efe0fbfa7232976d4207f024dde6df60085412", + "regex": "." + }, + { + "hash": "8eff51a175fd951473cb0292deec317d4cc3f32f95c4ae7a26907dfdee8a84ef", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{4}\\.dlexu\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "0b3566433aa38ce919b4156686e1000ba31e86a6ac29c04ddccd02e96e220a08", + "regex": "(?i)^https?\\:\\/\\/todaynowclip\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "74557cb4897ba53a3138af55088825e72c85df8ec958a1735f51f6c2b996b824", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghhddfgdfhhdfhdfh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "88090545e419a7d183b459c7506b14a5adacbba5b609f1007702783ae6eb6120", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-celestialtracker\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "80dd06db8848591fd03b0c500bcfbfabed3de8dd030074f2232559a8d8f924e5", + "regex": "(?i)^https?\\:\\/\\/thahareather\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "581e0ad5bc639e9318e7da3f8ee50e5aa8e7a8b06a86aca3cc022570167fe69c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{11}\\.alerting\\-services\\.com(?:\\:(?:80|443))?[\\/\\\\]+9efaa330f4" + }, + { + "hash": "e24e35b6ebf4231daa04683393870cf06a7488c3779e2905def3c9f25b8cb9d7", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdjhfdhfgjfgjgfjfgjgfj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "814a22747793adba99412a54e21afc02e7cdf62c5daac473a8700fab442fc927", + "regex": "." + }, + { + "hash": "f6ef06ed938b537e3be30021230ab906a6b853d5df095296a68682ab681d8bde", + "regex": "(?i)^https?\\:\\/\\/dfghdfghdfhdfhhdfdfhdfhfhdf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "785fc48522c83f1f61439de8303cd30fdc19798c3926c8aadc8611742dad288a", + "regex": "." + }, + { + "hash": "84d4d3215352a99b6590ccf311add6c79e6e3e7e911fb74fa4e983d15d298978", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ff5216fe07e7b46753737619531a7ae662b0ac26dd4cee331d6e3700006e3d98", + "regex": "." + }, + { + "hash": "ac42c9b71e58887606b25d63332701bcc594c3c0c9168de1233d8a208f232dbf", + "regex": "(?i)^https?\\:\\/\\/xssajzeel\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ce7e8db1d76cd04aef3f0181fa63679a1a628bcaf3d9689ea8567f30f72682ae", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghhddfgdfhhdfhdfh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f1836052a4c57e8108523cfedd66d59c77913837ab4c218d2e246d19271ff677", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "945b2af4aac447d73bc1e4358c56bc792d8832e8063e5fe7a9faa8fa0e0ac2fa", + "regex": "." + }, + { + "hash": "3e81d0d183055cfd0a09bbed44abc4a2ec0b42ad19a048c4f39c5dade224903e", + "regex": "(?i)^https?\\:\\/\\/dfghdfhghjgjfhfgjgjfgjfjg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5d5731547b6192a1e39472d4e0f590a88ddfcd3e8b62ccf04962aeacd5e5e109", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhfdhfghjfgjfgjjgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5ff3a76058928ba6a17be36365efea1d9fde680eb9784612660a29e66275826d", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "79e0f3bb21ddb3a493199bbfb1bf41b2456a0e1b159f20885222e8b4089102fb", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f7b73eb801995674ecc202025ac9ed3300c19758c9af6501f45f201121671bcf", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wonzsh\\.com\\%E2\\%88\\%95bcazi\\%E2\\%88\\%95aydcsvshbm\\%E2\\%88\\%95rqiqonda\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rnldzy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "25c384d8a5e057133bf41597846a6a5d6f23a848361e7ddac79fdbb9f3e9ea64", + "regex": "(?i)^https?\\:\\/\\/fgjfghjhghdydrfdhjfgjfgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "acca72d526d5953cef350aad1f01e1252a7b36cb40df52d34316db3f76331dc6", + "regex": "(?i)^https?\\:\\/\\/xssajzeel\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "615f08f7c97b986a3ef8e1bc7c28c2e4df6a1618dad968676386f85f85b817c5", + "regex": "(?i)^https?\\:\\/\\/xssajzeel\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5082fb4a8f17bdb6964aef9fa7997f13787a8188cde622dd25b4be3b5ab2ee81", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\-200(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "904e022ae25eb43e98528d60ff80a0da16bf900214122e0504f114868c1ae4f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f707b\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "5b6d3abce3b4370af82ad9b79f1d724e4df55d26fbebd3e224e7202f696a5f93", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "db703c5bafd09726f6648716260ec1af969afb4cfb58c5caf07cfb06845cfb7c", + "regex": "." + }, + { + "hash": "3fd4a93331f4b2be1c1a69fb4645e7e7b8d7fdf48ef5f1ecbe77d09579cc4a2a", + "regex": "(?i)^https?\\:\\/\\/sh4r3n0w\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c7377837f63a881f10d6b532e2f474754498d69df5cc5724f835353e06b49288", + "regex": "(?i)^https?\\:\\/\\/mindtracker\\-thoughtweaver\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "da16e45126d1bef39b5ce48451dfab3cb7914fff3683086a05bcea8ceba49f5e", + "regex": "(?i)^https?\\:\\/\\/claimrobuxfre\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "457b39f736f9b49f2c9c991853474b72169347672a51600eeff4316cd4908b27", + "regex": "." + }, + { + "hash": "91abe21388eb0b87c3d23d870613a8bdb7432d45c9c0380a415592e4a99a374b", + "regex": "." + }, + { + "hash": "d09ec085df110ef4601493f642891cff1cee32ee524fd806e6dc728460ac2780", + "regex": "(?i)^https?\\:\\/\\/love4youwelcome01\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "06de97b335c21927f135727933d3733ed207f75fbe9545955d232c18c9050094", + "regex": "(?i)^https?\\:\\/\\/hot\\-today\\-clip\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7732e653fe4703cee8741f68776ad73d329781a27f578d572b1d6c4817745148", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "79c4d6f88e6a99b0906486ab2dd4bfb432d8401eb677899afa18af8bf101643e", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "13235d461f3a954794c9eb318ddb307b5fe7a7e67b64e14e1d663cec89e6f7c9", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjhfgjgfjfgjfgjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1aa5b36491445f3b31087bec0493e018d132d0074e4a13f1ca6b85934aaf8fba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a980b\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "cebeaf329424618164dd0656b7a6d6f7c98996919f43a02ec9d6a4829f12af97", + "regex": "(?i)^https?\\:\\/\\/thahareather\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6ae4698393b49c4283e6c5b4a5ec412d5fd36c1dd6762074215ecf99bda68e38", + "regex": "(?i)^https?\\:\\/\\/dfghdfhghjgjfhfgjgjfgjfjg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1744f106695a5815a7836c7294ab2fa2a79ce0dd60dbeb920530daa3ef67a5d1", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7a2de0e4a7c55e308f25aeadcf3fe1fedb66464bfcf16fbfea7fceff81eb21f1", + "regex": "(?i)^https?\\:\\/\\/il8979547890\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b0a724cc5d1c90f4a805d966819133424a638ed5d7021ce75960c5642df4971a", + "regex": "(?i)^https?\\:\\/\\/credit\\-agricole\\-fr\\-4xmqs7\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "424066b4a64a81586ed2ff73379b5ed915042522337920d1e175b4bc788a48d8", + "regex": "(?i)^https?\\:\\/\\/fghdfhhdfhdfhdfhdfhdfhdf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2d7e0f062a7a44d8f5b1d161724ab4854aac31c20cf8edff1b56acd19c246d4c", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-celestialtracker\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "30046cbdd8b583d712df541e8627c2118abbcb524c6ad542dfbf29e8b5d875fb", + "regex": "(?i)^https?\\:\\/\\/ffrewardredemptiom\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bf6b4525d9e944b4e5666d88a4e6914a0397b54b827f2f8bf5899920a8b808ea", + "regex": "(?i)^https?\\:\\/\\/robux\\-eksimerrr\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9f7671fe1656dd01a6f8d774b24dc12329b7399ac33ad408f30c6224b1025ac6", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "26b46c0d4a9ca93671f47d12a328eb466647e4258f68520efe5d7cc1ad278209", + "regex": "(?i)^https?\\:\\/\\/mindtracker\\-thoughtweaver\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "942561b769269fd4c5bae6b4c2ea70cfd56c1dc09df276df9ef6aafae3de7776", + "regex": "(?i)^https?\\:\\/\\/thahareather\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e397bb595a3deba85a66fdd4af6d4bea0a53afe767b2d99262989c7c434ecdf3", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "297cb53f112237aff356550d6d6fb41c6aee2049c2fe6873ce8021c5363c2238", + "regex": "." + }, + { + "hash": "ef41ed7d3d3f3265c9f4c64011cf6c04ca5c9eceabf89dbcd4ddcf80a12a885f", + "regex": "(?i)^https?\\:\\/\\/todaynowclip\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9a1c59088926fb02f0890de2b4be78dc2a8fba8ebc8fed14489b24f2bfb1c4f9", + "regex": "(?i)^https?\\:\\/\\/robuxdoclloclaim\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c2bff5efd725a6f92c643aa41a2767c81a63266ba0f5e75ce5c85592a8209bc6", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6e38f019fb5ce4873df7319cab5048a12ebda34a4c638df28a2948e6e399f89f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7c971d31d239e57d7aa540f198635d7e50283bb49578ce06c6839491cdf444ab", + "regex": "." + }, + { + "hash": "327c71c2dcbe0e21b44b7964d570c5e0514793a85af4b4fc1557a81a0d83fce0", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "914f8c78193905dfe15096691416d2048bbec433009eae2c52365fb5ce11ccca", + "regex": "." + }, + { + "hash": "fe6351b82a4f9fb996b2638335520910a8414c81a5f31ba2e552e0b58d7781a4", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "53413b453fbe6aaacb98592344686b717a5a4c759787c4f102ac846862ef5179", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "050348521976cde00146e4977c41e07db3b8a1f00eb55702c768de09c38d3358", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "dea9edde8f70708274cb4c4acc29bd9008b78225c4cf4fc8ae959daaa299bb0f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "17b6505b369e24221ca9206409d8a0808d54277173f683bbd0040edced22395b", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "095e9a9a6de679a9ec1e2154c3801f805a91027c0eb00a697d1a297be929bf2c", + "regex": "." + }, + { + "hash": "829350b99a3d86f0a89df1bdef3e02785598404ca4c80a4f175126409d5ee84a", + "regex": "." + }, + { + "hash": "90934b832704da8c8bb07f877099c92f88b74cc41bb645f84312b1c32853faac", + "regex": "(?i)^https?\\:\\/\\/gay\\-boys\\-cam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "023624b66a6dc57264baa338fcfc03aedb5f2530356a56aa6d9831af208240d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a45cc76d62010795fa94267d737b0278b849e00131215117ebd2eede59b458ec", + "regex": "(?i)^https?\\:\\/\\/gay\\-webcam\\-gratuit\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cb358e6ad5b75ae416ada246c66e423b3b5f774f09b9d41b14255b11e3bcd6e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+alfa[\\/\\\\]+ccccogecowebmail" + }, + { + "hash": "6e047cf7be12621472876145427b5eb6741fc4b1297f21fb6766b66a0637f176", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "bb564c9b2c15a5d51e1a61d334f07f5be1fbd0c8de5ce4abfe8bd63f03f2d05f", + "regex": "(?i)^https?\\:\\/\\/couple\\-live\\-cam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7381860b998180f042c7f01a832b07974ed9db3669897de5c852772d798ffc19", + "regex": "(?i)^https?\\:\\/\\/cam\\-en\\-live\\-gratuit\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6c0e37bcb7681f70d8f988d938e22c02ba863a0a60b9dbe806d15499624b60ad", + "regex": "." + }, + { + "hash": "5a803872f46d632af82c772680c4d78e24e3e67a5a52578ef8b2803f89ea9c78", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c7e16cd4cd91c31a66d420d3da45917208a29bc7644cab36ae318ad456c1290a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvnre\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "96c1ae22e4f7008986acd596292e2e1bc61bad7163cf4de5005bdce3b8730ee3", + "regex": "(?i)^https?\\:\\/\\/webcam\\-hot\\-gratuit\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "be30f2df3143610713e09ffe2fbfc3e9c3512211de126ed8c7fbb04cd34f36e1", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d08585238dcf2469281f17df8004f40552bbcdfc8ced4ed5028294f41f8cd592", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesandgeneratorforwindo1\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4e5870043e7eba932068d4face5d3ae73dd357fa1299a915441a21f975d44c2e", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f2b95a316284b11b4942887b88e18391d8a8022d2c48028589e496fc6c81fd3d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4801aa5f14a7e5a1f7a90cd2521e39ea6bc9ed6ab7a0b9a1afbc1592df74091b", + "regex": "(?i)^https?\\:\\/\\/porn\\-live\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3f0ed17cbb56e8ae4d0cfb90d0d89f391c35ec71ff274dc47cac38d7c4690ea8", + "regex": "(?i)^https?\\:\\/\\/sendrabootsitalia\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c9bd314c19b4b458b186e077f77db84fa7f8f1031fa8477f6e0d87701a7c827a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8c5d160ca2b649cfcd2905b8907764cfe55535c5f8f84322a17244d77425015a", + "regex": "(?i)^https?\\:\\/\\/gay\\-webcam\\-gratuit\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ce93eaff22d1fc71a1cdc16a737cb279ffd1bf813e67ef1f546c84a98f0928c5", + "regex": "." + }, + { + "hash": "fd03f0a2e0d33a90e72af10e144829be7c2b1b3dc32ab36c3f52b636b5ec306f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5997a69dd7ff928e7549c722066217f9b94c868dbc960da937a7946923b9cb39", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9ba26232bf2bdebd0416465e4b3bdb790a3b1883fcb82d5942ec7bcddecd4bdc", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "95f8a187608aa11a432188b4984cefc99815aa4e94d9611f9f8914105f82bbcb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+optimum" + }, + { + "hash": "0b8d4afae412e523866c023c01bc5524872e928508cbea442f2462fc08b9956e", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3ccbe67f5db80af821512fd64739e97fb646dad887a6399acffaa6107698a0d8", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "de1a149ce01e1759ecbaf4aee8cecaa88387ff2ca02687c87372fc5da73cb570", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvnre\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "414332d0fa12e638353a3268172afe7e886f71ba4befb8fb7e3b70ca39d674cf", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b3ee43513caff150719f963e09dbfd3bd696115cc9ca0b6d7c3c76778b66d986", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1721bc0589706c3ec290907694ac4c5821765e3b1a57c8a4da92fb6a808facfb", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4a1b13bc4429a2028089bf161c14a9b05858d4e5780b82d05aa0d5628f85cf3d", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "db3452ccdeb90362aa80cc1da7d412094f8b4bb9654022cc8e6da0ebfe48c4eb", + "regex": "." + }, + { + "hash": "8554621619e915e16f3720bc3d040c9b97522ca16e932464746cd7ec6e5fe308", + "regex": "(?i)^https?\\:\\/\\/couple\\-live\\-cam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a61f9d5207fced1be6c80b3459e76d1d7b0700d4070e6623143377048acd4e1b", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6b4b57d68c29cfcf98eb8347529daf7cb39468659ba7885f7f69dfc870eecc9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9093[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "13bffb1a7eea6b1db45bbada43a4170c6eb73bdd05f0d20eb6fac495eb70da9f", + "regex": "(?i)^https?\\:\\/\\/gay\\-boys\\-cam\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "99a6ee0065339d915443bc84ea12b1a8985e08c65053c344584438ee235770f5", + "regex": "." + }, + { + "hash": "5e0071827fcc69bcfdbf0f63e00c65559802f485d040ee94c9df0614265f1973", + "regex": "." + }, + { + "hash": "a3e5905e42fc7c783931bb2c4cefc45acc96abe3e3de0b75b03a3559585e4787", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "2fc45922ac00e0542930f2fc68518e941ecd1b130df0e194ad703d7c69075f26", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a1a6137b313dfe2a9f26a7165d7e719a5cc750f5641bc1e4cfbc02503fbd9deb", + "regex": "." + }, + { + "hash": "ab6593888eb40a17bb2e9deef9a5a525f3456ff0e80116096b3c4384a604b6d3", + "regex": "." + }, + { + "hash": "31910bd94c1fabce582d82fce403935cc72f53f6af5d83cfdb35fe7f7bac96ae", + "regex": "(?i)^https?\\:\\/\\/freeofferca\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5bf8496fa66b8b77a780a2e45c153d7c37162837400d83e79c6ccd40343a3cc7", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "26ca151359c998228d05f08f190ee7c6bc08370f7b2295a23a744ef7e405a906", + "regex": "(?i)^https?\\:\\/\\/porn\\-live\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d35d390ee550214a2760a212b7115f93d7760e2e48457f56878bc1e83b7f434b", + "regex": "(?i)^https?\\:\\/\\/freeofferca\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1144acb0f7a7984446b5d64f4cb29f0d1f1004e0f0ca6eaf7e3bff3f595410de", + "regex": "(?i)^https?\\:\\/\\/instagram0736\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0feec155f0ee2984353bb78f4e96ddee5c9c8bf26a56a6c7d2fd0c3cba8feef8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2704e06da0dd364f5d53112a96b19daa6f60d043c78de23ad7a5f513b7f8b364", + "regex": "." + }, + { + "hash": "93b404f97c3e8c2a861a1b6dab91863f3ea6b69589dbafcb4bbc88839ffa03f2", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8056eeb9b9a9645400d237d5ff780e3bafba90eee932ce1f628da01d9417239d", + "regex": "(?i)^https?\\:\\/\\/cam\\-hot\\-live\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d1f860cc0ae4b2aa0ba43e9ac498faf3a7ce644ab379782d51c81dd655bde841", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d7e04f28ed2340aa1ad85aa9cbd3e28a1bb78c40fc7bdc61bb6690d100ccf68a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "13b7151c886f20f3f543c496706cafba81e30d232435f379805772608bb1f78d", + "regex": "(?i)^https?\\:\\/\\/mrjackyvai\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0175121e2b3443f397c78ac55e305b30b6cdf441248587ca752f89cdd8925cd0", + "regex": "(?i)^https?\\:\\/\\/pub\\-d30df380dd394bc793feaf774812cca9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "aa0b2ba189a066bd5d990ee2dc96552b962d315e6fcdc55fa41325c050198311", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4256e8b5a64c565a0afab41f7daf7d0113cee7cfbe02da9c05aec7a5c9e9ab34", + "regex": "(?i)^https?\\:\\/\\/jksuhdfkjsdk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "59e222ff2ebe485e4404c7c5e6dab74d51b5a5f24816503deb462ea5f15e7d17", + "regex": "." + }, + { + "hash": "b7dbbc06eee38d1b640ff33d33619d91fd4dccb44401b046c04c57535dd6148f", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9cb0f47fee20dda5803b1ba8547a2e3394b5e47d7ce6675d322a73878379afba", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8a2f9ddabf12b071f5a53a1f37bd9efef3107c2067863c5cd25b01beaf6148fb", + "regex": "." + }, + { + "hash": "a0f80a38dc90860022e24220e8471fa6bae033d2f71cff7c81742135db2f2b96", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ca458bda4cf48352905a2dd7dca27ecfc005f8d3328be46fdfbed08b1e39391c", + "regex": "." + }, + { + "hash": "f50c0650ddb91f6777444dbeb8890be14d672603f9ef40b93d31458d3729fa69", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesandgeneratorforwindo1\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "80e0145b79f3d2dd21b7e1d39437c16a7da29a3dd8c10232ca1230a09edee3c2", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fe233a86dc6c535a7bbd77660822ba732e3a83cd0ea5814438dc49c94dd5a7ca", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gratuit\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "52343d78e155e64d630df7518f816910a7637f1351426302561bb460cd1cae67", + "regex": "(?i)^https?\\:\\/\\/robuxcardsewfk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "31f6f88af103ec7de784c4c28b7da3f01a3d6d747d490627e25f3a6700449970", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "aa6f01749602d85e58ea3957140e0acfcea673cbb273464adcd8d397143d3cf1", + "regex": "(?i)^https?\\:\\/\\/jksuhdfkjsdk\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b0c2cf6b6a71020ffcaf7ac2e9e34b094f6b71a653365eb97da6cd3d58929ff4", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjrfz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e8ce31399d9f366476b541389b6bdd9c654eaec980c7862728faa6a7c69229f0", + "regex": "." + }, + { + "hash": "9f48834152103259832e8197d2a0ce001ad7dc5ac57d41dd5ccc73a7a4b344c3", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "70914bb78b439b8b5767451c6bf83b1ba74c043ecfeab1db24dfd5a6977c41f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?4aK0pqfyOPdCOs$" + }, + { + "hash": "99fd4966c1fcb9db2803d41ba73e6f7d0583a0868375adf0bc90be4bb3f3465b", + "regex": "(?i)^https?\\:\\/\\/gay\\-webcam\\-gratuit\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f4a8234c090b29521b55924ea95d62935682f37a23083798a86149fe23857057", + "regex": "." + }, + { + "hash": "6b4b57d68c29cfcf98eb8347529daf7cb39468659ba7885f7f69dfc870eecc9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9093[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "547acf3dc58be2bf352fcc89c67a63787ec408a97cce19a0dfea8ebe3bc0cb88", + "regex": "(?i)^https?\\:\\/\\/instagram0736\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "28675796affc85b0336fbd23ac4a692868770a1e3f811409e895e042c0db6486", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesandgeneratorforwindo1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bff5b38d8376ef643b0428f39a1fc40a425907192efc5b0697c2bb53e4614aca", + "regex": "." + }, + { + "hash": "f412637fca368ece0a18af055e7bbf110ddd119ce060fc45f92185939baf1f86", + "regex": "(?i)^https?\\:\\/\\/iqegv0\\.webwave\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1a46188ffebe454431449125656030c8447f0f744a5110f631e4d15ee3064765", + "regex": "." + }, + { + "hash": "f1adacbee096922ebe84e9846ea8208ebb69a1f9a24e721bafa0e1153decd0f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "39815a77fd0af0343887dd6bea7e7c2fa83ee1bb35d50cf37927a1f4b4bca603", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "030d16ce53bedb189d536a85bcc43b42780713a359c3815c22d5e2816383001a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjrfz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6f1b6b04b8ff87601dc17ccf18cd9d2d231b99a0acd851b4d7b2b33ce78f172f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2674408cbcac4fc2526944cb6754a2e15d1a2949fea2eedde0d5cb86931a970b", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "108cb970bba0e8934deb10eb42fe47b20a7ba7a8745f1b834d84d81d16767643", + "regex": "(?i)^https?\\:\\/\\/gay\\-webcam\\-gratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dc48d16252d3a2306bd1461cb758dbb9768511ea589243e83850cbb725381210", + "regex": "(?i)^https?\\:\\/\\/couple\\-live\\-cam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5ec1a45d0d4661b2c18cf3712ca2b41e17f3912ef006ece3f00d2289255bf072", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cedfef92b57db9710300ac2fb5e6edd3b2d0312b34849b44117b9c6f04af30ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9037[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a93d6d238f8756563d38a60f45859605b52c170c14d6ffab70b2d26f6366315", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?dataXX0\\=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\\.eyJ1cmwiOiJodHRwczovL2hlYWx0aHloYWJpdGFsdGh1Yi5jb20vIiwiZG9tYWluIjoiaGVhbHRoeWhhYml0YWx0aHViLmNvbSIsImtleSI6IkFVeGxqM1h6cVFNcSIsInFyYyI6bnVsbCwiaWF0IjoxNzMwODY0NDQxLCJleHAiOjE3MzA4NjQ1NjF9\\.dPvcUE\\-04NQN3Om9AxS8tNVVPL9ZW3189nnlbK\\-R_T0$" + }, + { + "hash": "082ec52e1017c70bb8b7eea9b0a8fe77e9e46f7fcd497d3c2950b70d5c32f55a", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ea770c5199c46b6d28aa720459af23195a9893220f5f1ac43149f692f6300bd8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsewfk\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4065ab0d1f69a90e6f7ba0382db98e6627e355de5095a4f1691431136866a231", + "regex": "." + }, + { + "hash": "1a29caf034d1771f48af97f2a0f2acd8afe09d4ce07dbd680d6cb6cfc9d5fc9a", + "regex": "(?i)^https?\\:\\/\\/cam\\-en\\-direct\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2bdb1910c4475c25d6a136727e82137f9bd6c3abf692eb708c6664d67036601d", + "regex": "." + }, + { + "hash": "1de5efa3d2481bfbce47dca65edc353cf40e46ee51d84da16a9919dd90950256", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8bb9cf453b425bb09e1af647258472afeb9d35a8f39a00a01749cfff924ea13a", + "regex": "(?i)^https?\\:\\/\\/couple\\-live\\-cam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "52c65a70ab80fde1a656b13b79dcd7e2947c9d18a64f54660403460e967151e0", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "73b301518b72825cc0519e993e683ca5d6320e728a6bc38133fd2e0aa5975ff0", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fa9afb865d27cf734ab7cf3dfb1b58a0500af1f5c15fa6ec5b357f12b1d12245", + "regex": "(?i)^https?\\:\\/\\/porn\\-live\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0dbb98ef5d19b8fb797a0296a0dabc0d891b6cb712c149c776b0156d312d307d", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c720a11895542f96e040ceaffca29742821e42fb79b0fe802f4fd404956dd4b0", + "regex": "(?i)^https?\\:\\/\\/gay\\-boys\\-cam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c6bf0b32ab7e9ba3835facb9f728715d6907d57c915e3db2a98c004450af5d15", + "regex": "." + }, + { + "hash": "843c03215ddbe91d19a50f30e6fcf84f5ef2184dfbb20adf1bd570ae9f5bb2e3", + "regex": "(?i)^https?\\:\\/\\/robuxcardsewfk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a7d0052470c804fe82cf308fbffbaa0a19fac1fbecdbad73b1f02ee338049c05", + "regex": "(?i)^https?\\:\\/\\/couple\\-live\\-cam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b49d7b26a87a632fd8e87197a488c5add796f904f03187b9dd9867072def4b4f", + "regex": "." + }, + { + "hash": "d5c28d36d007c784cc02715088e7fdc2201b3781cd030c38b76bd710297bacdf", + "regex": "(?i)^https?\\:\\/\\/freeofferca\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ce8b7c133ae4e5c9ff5edfcf244db88789dbdbb6550ca48ae982052bbc2a4a0d", + "regex": "(?i)^https?\\:\\/\\/google\\-bloggs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "257620a44ff65147f77d0b4aafdfcc964d139c91eaaf54cc268b9391d4dd0688", + "regex": "(?i)^https?\\:\\/\\/jksuhdfkjsdk\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1512f66463a77831cb606322beeae55c7737c6bfde82c75a812158ad72104558", + "regex": "." + }, + { + "hash": "967553605dc98c5fb360313951fc2b80704241e8677e50cf635299de11dfbc3c", + "regex": "." + }, + { + "hash": "c8fb1b72352b95ab31010f67dab7a191556e324b67f2308160506655edd2f350", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84aba8e1045b9db0aae98eecebd960523ec6c0195794cae79f4799eb68fec119", + "regex": "(?i)^https?\\:\\/\\/robuxcardskx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4f42a75c4f1812b4923db0e4df846ee758d0ce2bbb561f5fa2157d24b8c6b275", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gratuit\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5fc5103b0fb91968c5deeeb4df494bf78061831be4bda3c0c89d3b0fce0f0c20", + "regex": "." + }, + { + "hash": "5d3b8c65fcffa84eb964089904605ba78d82775b1f673fb822a9902507033fe3", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mnoivp\\.com\\%E2\\%88\\%95xglooo\\%E2\\%88\\%95nilpkpbwgp\\%E2\\%88\\%95ygaohc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jwlslwl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a191a54436e8900c1e9a0338622ef83b285903089e0351758f498443a0cf50c5", + "regex": "(?i)^https?\\:\\/\\/instagram0736\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "413a47712763c39d1ef40acad918d42aeb8f50c1252d898b16235d8f8e29059b", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "44df966549c5079d57ce9b62f7d259898f6402fa8ef25fc91c56e3a4b382fb03", + "regex": "." + }, + { + "hash": "5231b9cb57f05862e1d8951160484a7e0c1108ae01485f2cce37114f1fa6d16c", + "regex": "(?i)^https?\\:\\/\\/gay\\-boys\\-cam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5164f\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "c47e322e1a88ff1ff4b19272bcc08b05445936c86e99fc91dbf6d6f32bda56db", + "regex": "(?i)^https?\\:\\/\\/thrthrtyhryrytr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "391e3eb63a561d4601b4ac7b6aa86e7e2fae59f3b504ba9fa845326bb8511399", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f17d8724261301eb549614268a33a2f041ae423130df7e26af31f72cab6199d3", + "regex": "." + }, + { + "hash": "2fbd04a353387bd7331539c14dc3545d00aca1434c28f6d9511c298d8416340f", + "regex": "(?i)^https?\\:\\/\\/couple\\-live\\-cam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a6872086fd28c85882d033d8666117a947d7d8712d9ebd8da41495b246e23894", + "regex": "." + }, + { + "hash": "cd5b21f111ce94f95664aa4381e57191c12b9afd808cd251d798c16c1f405c84", + "regex": "." + }, + { + "hash": "37a7a372c6a51442dc944baf9f06bb6232732770407ce704722f219a3f8831f3", + "regex": "." + }, + { + "hash": "d39b3065a2efaf747e374e7e7663bf358f362111f1507826deecf414bb04e622", + "regex": "." + }, + { + "hash": "2b0f29ddd2d45d79ab139b08cb2bb34bb474327b0a335ddecea87e334da0dcb5", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "49912427700069d1195918751b25fb1c051d65d0dc4e880784515a2ccd0cd21d", + "regex": "(?i)^https?\\:\\/\\/cam\\-hot\\-live\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1c0e1e883aa7cfbaccb126bbab684ff3069bdad8858146f9e88a97a938a85a1f", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7fee9f0558e65c284d6a4c1644429632a4c6e640ec004ca7b601b3cb3ec9e97d", + "regex": "." + }, + { + "hash": "8443143baf4ef55c69e8c21c536a52749fb749a5fa323c119559652c906622d7", + "regex": "(?i)^https?\\:\\/\\/cam\\-hot\\-live\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cd6250a9d0c4c4fd64de79c0071bc481d51ef0ce3b875fc5d0b288f4f833a644", + "regex": "(?i)^https?\\:\\/\\/gay\\-webcam\\-gratuit\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8152193da38495c40f5be80a74b8306778ca4ae29cc33376890f75aef7dbb784", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjrfz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fc2323c15c87854d3294026e657d9b21c5dcbd430ad9bb146194a33b99f559c0", + "regex": "(?i)^https?\\:\\/\\/robuxcardskx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d87721bce1dd9aa45c9504a510f897d99c548eb9690b7367efafa76e608486b8", + "regex": "." + }, + { + "hash": "a855adf361c8dc4b4ac697810718a7b7b32d05f7bc19bbe4444b653959a13ada", + "regex": "(?i)^https?\\:\\/\\/cam\\-en\\-live\\-gratuit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1bb081f81cd6cf064afce7946c148f7b990ad6f38288696e3b7568b09c114e50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "0625db0117cdbb25a18294f49273389d2db88cc2d951ff63f9237833e355a408", + "regex": "(?i)^https?\\:\\/\\/cam\\-en\\-direct\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "02797ac7fb26c636550cbff3ee784d511d8a5f3f6c32255d7a7064b0166b5bf2", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a1c79584f2263019d5775dd90a8e0941b58e577465e57b42b4017dca78d80467", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d713966b4815b18e7403292f862df7cd8e7498e0d1e843b672602ad1b0f0a9bc", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e4be9cdeb21310b1862022da38f58b04fdf314ab385f954bf8c57cb219246074", + "regex": "(?i)^https?\\:\\/\\/princemalvi01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "327ed1c43da824eee79c9f54670fad55a4f916131f6a929ac45bbe670cf5cf06", + "regex": "(?i)^https?\\:\\/\\/webcam\\-hot\\-gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6c1eafeb925f9549fb40793a7f3a344870bc66823c18658cb85ddc2faca7d4e6", + "regex": "." + }, + { + "hash": "af5161df9586785a51ecc007b33a17531641347ab1eed846c4ead31212e9ed66", + "regex": "(?i)^https?\\:\\/\\/freeofferca\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "860a3f93c426a30f6f6e0339180af1af9f5f93e0887d0542269f8089a5993bb9", + "regex": "(?i)^https?\\:\\/\\/robuxcardskx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e3fc1d314673718e70c9a7d0043c0a22fe3095ac5b576399994d100e9cf36f77", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?df2ee\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "a73f985d538e81f7e74e4549d46b8974a1c2975feb1ee44eec4addfa997b5bc5", + "regex": "." + }, + { + "hash": "b77af7e11f694d46d6765f6bc35c1ddbd57c0b02036d9095939cdac06bec4972", + "regex": "." + }, + { + "hash": "d1be4c486cc0022b6a0e42bf5fec9339310dc2c89b8df2ec12773bc5e5197c3e", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6e9586ba0338d87568f93525a0eea0c6178fefc8b34a2a6fce69f0dec818dcee", + "regex": "." + }, + { + "hash": "f93066a123fd740e60138ac831e5ca4b8e9d7c1f74d510d556f196bde6399cc0", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fde0fad85422e54d9acd24e0201634b633a581f46907f716e87780018454ce89", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e558ee7b08a0ed663a2855b837f6e85e8ef1d3453a9bd5fff9b94575c0ec8c33", + "regex": "." + }, + { + "hash": "b9a7dc145d866e94f617f0fa733cffefecfedb0b9e784c01d2d6aeef86089d09", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "842a4e3b1bf4c40c08b5ee49f1f5fe422c1c1cacf15053fa45d00a242da0a774", + "regex": "(?i)^https?\\:\\/\\/instagram0736\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c6bf76287666b682497f5288daa9b659c3095342f1115c9ce2f8687368322f77", + "regex": "." + }, + { + "hash": "4eaface52dac01cbe62268266bfe87dcf03058ea6e1a5dcf04b37dace89c656d", + "regex": "." + }, + { + "hash": "b6c10a689805374fed97a796b643a8860ffbcb58ecd8d38632b4b072d75e28c9", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e8f1825228c8e48b365dc6dd462db8443d05cdf422f0b92ce4609ad596f8fc69", + "regex": "(?i)^https?\\:\\/\\/jksuhdfkjsdk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d2fbac3f2d4f0c7a4d0c0384a39e4b2650fd207398500638ac95ee8ea4925", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f885806e00527ae62471ae60efb7fcf3b78e28be23d4ff7e2014f922ec01a780", + "regex": "(?i)^https?\\:\\/\\/webcam\\-hot\\-gratuit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "87ad476b8a89ca6dc966b74b4d8bbbf1613fa97490f14e1746b398cc6d700469", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5173ff3a7e1f33d7efd0923e93af41391c520e08b44be78c2f8610cc60047902", + "regex": "(?i)^https?\\:\\/\\/instagram0736\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1eaad884a88cc113202c1240ad33c29ccfbddb2a6f88acf9364b802fc7d3fb8b", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "82865b286c42186b772d754f5c79bc6f7b41806c11596e19a10a8fd08048a939", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "822d6721484360b8ea63386911720579df1fd5744f43c8bff31c815e03565253", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cedfef92b57db9710300ac2fb5e6edd3b2d0312b34849b44117b9c6f04af30ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9037[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "49aaa2455d2c00ef0175306c86ca3f9f72e1e4deabb4249a99d14b617713551c", + "regex": "(?i)^https?\\:\\/\\/reb\\.txx\\.gv\\.i416gb\\.kivia\\.ir(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "b4c2de78df8f64ddc9a57662dcb5d883f05a17fc64f28b48d32c592c450b41f8", + "regex": "(?i)^https?\\:\\/\\/cam\\-en\\-direct\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6ec706df089dc2f94594c73350900731a22766519babbf77c7ae46b3ecc3f838", + "regex": "." + }, + { + "hash": "2c177945dec5d024235b953498b91e72266d42f7421b134a4c59645c658f3951", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8214368fde85ce2cff9f7a3f16bc42295050259cd625d4242517ca29842a4925", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvnre\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6e19365f315b8d2c53c2a7658a2f86209620726e2cdbe502f9c2b83e38d1009b", + "regex": "(?i)^https?\\:\\/\\/mrjackyvai\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6e105ade36c900e02c2958c5418ae5e822263e467bcc018d7776936699efc085", + "regex": "(?i)^https?\\:\\/\\/home\\-106202\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1239531e43ce717b666ca5a1ceee0fd1abd0c643c3ec8165e4c92450b08213b0", + "regex": "(?i)^https?\\:\\/\\/google\\-bloggs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1fcd9dd77155a1765e463bfc5d515392693614d2299d63b42ca163bd7bac0ad2", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3f0ed17cbb56e8ae4d0cfb90d0d89f391c35ec71ff274dc47cac38d7c4690ea8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+it(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9063a997059690ddb4f250095008c52d1f9b14db73516c6661bb11357bad26e3", + "regex": "(?i)^https?\\:\\/\\/couple\\-live\\-cam\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3d256b0e7c7b7ad9cb2f6beccb459d60a0265dfe6acae1bf02aed8d8c6871ffb", + "regex": "." + }, + { + "hash": "d49d69e8a7459a92ec73142b3c337f0c94b8dd61827cd5ebce60edcac42cee05", + "regex": "(?i)^https?\\:\\/\\/pub\\-82179997020b4096b5cddca11755008c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "06084d3094c6950a1d0321ce86a1e6c23aadc3998f992a5d0667e55a112488ae", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjrfz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "237854486f16251f76c569a41cc2db4fefbfe7fbf7b077055c871999b5c9b563", + "regex": "(?i)^https?\\:\\/\\/gay\\-boys\\-cam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "040854d0bb5c62f5f4d68a84c56171b4447fe80b41c5ad510b7c0b8c74db2919", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5d51f9ddce532c4cbe69621cf489e8a413f922eda4109bb39b00ea12d0a0f634", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gratuit\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3389f74e17191c75d61cf6e892ffe5a003a58325704360bcd27fe57ff1b79156", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c1c0f21cb9702bd1b9d36a75c012fa01dc67c497cbd8d1c63cf04619da224bd2", + "regex": "(?i)^https?\\:\\/\\/gay\\-boys\\-cam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bfdd82da889046c2693a268752e821b6a2fc8b08c53dec8dbbb09fd90fb88fe8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca" + }, + { + "hash": "6e41c35d84618da7f51b0b8da8e08db716025fa63b79a335b542db44f7b16e67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?HVCepAS8DU$" + }, + { + "hash": "c7372a91632b49ed112d954dfff8a8f2821c4d076b6dd51a7dd2101ca70bc0c4", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvnre\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "be285aa5c7a2e4f4d570c23a36c9665788385be4d2ecc4c42edea739dbec6cd0", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "62424e19647d5149587c56724d641704a0199e6dd7932344be2ddb865e19a59f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "49aac194d9672291c5a85a29be5c705d342572f0f601b01320115b181d32570c", + "regex": "(?i)^https?\\:\\/\\/robuxcardskx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ed8c6c60f5dbb5eb43cd645aef4d20255949f5683b831bbc748d66ffebd80e04", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1bf436db62b1eddc7860176e6823af9ebc53e19157192c52a266e22f17c462c3", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d61446bbd3e176c97ded5a281d35d1a15b8648c21d016f8cde1060d2d6e171a9", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f8f0cbac86645bb577108713520fc4711bc3bc836479f86cc2490cc66ab8e2c3", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "70914bb78b439b8b5767451c6bf83b1ba74c043ecfeab1db24dfd5a6977c41f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "9f1fc148f3bc798fede55246094fd86b10748f1e40c81132c09dc30ae0551392", + "regex": "(?i)^https?\\:\\/\\/juno\\-message\\-center\\-101525\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e43c7e4a9e57a1dcbb0ff0b0a9db2b978f8bbf603430dbc5616d028f5af4d7f7", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmws\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4a985ffa5117848f50850752b0b62f50163edca1d0852a6438c5abd96bc3d8b2", + "regex": "." + }, + { + "hash": "412d02972ec37244c5e81c5f15153cea335a756bfbc28cb412afb03bd80a7cb9", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "23cbedf4f4c180a54a89af99e0b9795bddb51f3a99304b9adb8152161cb7e3b3", + "regex": "." + }, + { + "hash": "b92a36c8c9dd79367a5e6d9d05e8de082fb5a1660e72c0f9a2e6c4b511cc6582", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3df58cdc8dc4b2fc399c60049ffefd330d2ecbc74a187da09ec17bcad96ca508", + "regex": "(?i)^https?\\:\\/\\/pub\\-1f4eb328c8ad42f09723130df9c71ce2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b916c1fb3e95e88a6e5e365b78461420b323640e76599f769a27ee3e1c16b5a4", + "regex": "(?i)^https?\\:\\/\\/robuxcardskx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b7ff10ea3810eeec4cb058503a50c939a783c2a1b0ed2d73e95fe10143fef33d", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bb867bce95b4b9bd410f1f44be07b29919eece4d73ef0a0ee76ece4a733436d4", + "regex": "(?i)^https?\\:\\/\\/robuxcardskx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "09153f7dfc286ef332641fd199cc6a593287a444b1cabcc4775013cb9a10e418", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?bc794\\&id\\=bengoldsworthy\\.net$" + }, + { + "hash": "f72fca467ae11d42bf88166f8c54b28b545b2634d6d9687ea878f0082ab4f4e2", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "68b2d1bd88ed6f761b04c5b76d4439ec2ae2bc19d85e3f5df4007064b87137a7", + "regex": "." + }, + { + "hash": "7b1822b36c465c9723936c5fb5bf644b8ce0959a17a65075fb18b643d54069ba", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "843a4ee94c712dbdf22ce2c89c490b300d58c46f8f69ecd7ca81a4e2edf8c552", + "regex": "." + }, + { + "hash": "6c234c89c7893bf47db279363f3cc214a5ae5726772b77d86d9bfd3b3303ed98", + "regex": "(?i)^https?\\:\\/\\/freeofferca\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bb9441d4df9e6bae6b73054e8c752298ea63fecad635fd457bf8e903008f6cd8", + "regex": "." + }, + { + "hash": "313ec5de9920b0d905737102fb12543512dd5c78911fd71b0a25fed712db4665", + "regex": "." + }, + { + "hash": "8fd342816b7715dc056960c9c84d60498b1c8924c4824b881e5e4ce982cb33fc", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "14c2c33da7fbae1d17e734df3d544de7597aac84a930fa866c9e72dffa003f1a", + "regex": "(?i)^https?\\:\\/\\/gay\\-webcam\\-gratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "48014f4bb84aef0ec98da66a18d38c08799b73d7079fe3473aac49509196dff1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2cda6424cd03240810d5c3d24fa41117187b04de854a19e445a3621454ae7161", + "regex": "(?i)^https?\\:\\/\\/robuxcardskx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ccd871f4bf595416312ad24d0c61d2a123f78ce62126c527f00ef230becf75d9", + "regex": "(?i)^https?\\:\\/\\/google\\-bloggs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6a0f1ad4fd8476551d993fa8e259a736cc08bb4958f6c2ec15cdd663a86de4c9", + "regex": "(?i)^https?\\:\\/\\/instagram0736\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5025346e12b828813528a00248117af5d26ece9d1b2c85c4d4216bfd3429d2f1", + "regex": "(?i)^https?\\:\\/\\/gay\\-webcam\\-gratuit\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a8c6e870985e4a6dffd14796ea05634fe6fcc3b95a2ac6c977b9fe01aa51f5fd", + "regex": "." + }, + { + "hash": "e198c5dcfc884facf77dc330cc93b2cff2b8de9e7bf83c5ea4ce7755cbfc194e", + "regex": "(?i)^https?\\:\\/\\/934o\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a62a330f7e70b383b87dc181cceb7af23b98721ad893cc42a629fd31f678a20", + "regex": "(?i)^https?\\:\\/\\/porn\\-live\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dd771d6767666a1e9142e873917c1e4713ef6720296e7bf90bf9c79d1bce9415", + "regex": "(?i)^https?\\:\\/\\/gay\\-boys\\-cam\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6538a33ce0337350e52c3f5548cce9ead998800c6174fbe1f1f27a8a43b0dfa0", + "regex": "(?i)^https?\\:\\/\\/freeofferca\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "866fe0bb7f093a549a1275f292bf3987b8887cc8b5675735410771b281d7c0c4", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "de29e70f5a8ec5562b3e556784173efc5eda16a10a141eef9a6cb5d05bc44376", + "regex": "(?i)^https?\\:\\/\\/gay\\-webcam\\-gratuit\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2abb669e8a1bb08a497b869ae01962acd6cca2d23d11fd7e5f633e7bacfc3e32", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6eb078cc1688f37bdf445998b2614b14916164e0853f31958099d333f488945f", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b6692122def65d8af59811c1c6a5d74a06ead1c594eeaec69e38f0a9f1f5e993", + "regex": "." + }, + { + "hash": "e505d67c6ac0eec6fb7e3cfd542ae9eeb41870f9cb69b6cfbb5784fdfcb9813d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df6647802511a5f64e39c57082ebdef54c6b1b7a692fe807ae0f34d1ad5b6424", + "regex": "(?i)^https?\\:\\/\\/robuxcardsewfk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "70de7e831f42718fb51146c11b5d369e0f026cd5e0964e6f455aed2d1f7b5448", + "regex": "." + }, + { + "hash": "8c1517bb39e35e60faa32201c0e1d4f39a81032c9d70ef75f2c2b546e3af27e9", + "regex": "(?i)^https?\\:\\/\\/chgxjhzcgjhxgzc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "71abeb04ff7b91192223337639404a7a59314d717a56ecab9e8323b8cd5c6a76", + "regex": "." + }, + { + "hash": "0799ace04ee980666e2d16d8ead807120e8839bfa2d3478af7990f7c0b9ffabd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+291[\\/\\\\]+7890585[\\/\\\\]+0[\\/\\\\]+0[\\/\\\\]+0[\\/\\\\]+3360[\\/\\\\]+bcf7510e6c\\.html(?:\\?|$)" + }, + { + "hash": "ee402be4559184398e1c97fb542673765d8240d92ebc138eed5aed8aba2e3fe2", + "regex": "(?i)^https?\\:\\/\\/webcam\\-hot\\-gratuit\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2baa0252b17f356b705da84477b8ee66da13f032675534a669fc84b3704ac427", + "regex": "." + }, + { + "hash": "db661f1dda36a4b1dffbfc561dc6e6c42457912b1c6253afbf200a92614f88bf", + "regex": "(?i)^https?\\:\\/\\/freeofferca\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bd7603c1597c2b6549c37003856caa60245a7aeaa3cf0831a845f7ee04f42581", + "regex": "(?i)^https?\\:\\/\\/chgxjhzcgjhxgzc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2f96e288e5d755d8a9f20d0d2fd251bbfa35ea6d100c5ebc4bd6f9fd923b34cb", + "regex": "." + }, + { + "hash": "64164211153363d4cc42016d2762cad0ec3359056247b2617dc43a43b475a5b6", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjrfz\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d928a30a84293923008ee0dc1b1684f9b376d72ea75ffae99346cadc7f8afe53", + "regex": "." + }, + { + "hash": "853cacd8b86d88fa898b22f520cfcc50185ba0c2ac80a7c1e7408d2c7cd6c339", + "regex": "." + }, + { + "hash": "c2ad56cfc93545b64137ae8c7dad2fc17a39ff14673404643f8a005a3c6fd7e5", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bd17b5a04fc3cdd092c0f692b945db41119e7bc43e9c1c3a86dbd5cb36e9426e", + "regex": "(?i)^https?\\:\\/\\/couple\\-live\\-cam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6c1c53f13d2445a3309b1beadbfb9fba1bddd62018a66f646577f944b7f23c0b", + "regex": "(?i)^https?\\:\\/\\/jksuhdfkjsdk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9be9ad3ccd9325203c44ed8fce92617492bd7f1c5e5e3e795c628865dbad09ab", + "regex": "(?i)^https?\\:\\/\\/cam\\-en\\-live\\-gratuit\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6b4b57d68c29cfcf98eb8347529daf7cb39468659ba7885f7f69dfc870eecc9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9093[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "0684307e2c8aab30627d8094ee5aa5e6bfd1272fb8f105549ca123c47da627bb", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "36421fb4deb873b0d6cdee405ded5ff042ea9a531b23d405f3139e46e1e18d23", + "regex": "(?i)^https?\\:\\/\\/robuxcardsewfk\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3f0ed17cbb56e8ae4d0cfb90d0d89f391c35ec71ff274dc47cac38d7c4690ea8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "20410cdcea7c5cd83f0469a98894aad02c2137185128b678c30f6092079c9b27", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvnre\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "acb59544bded5f61b61f69a645fb802396645081870f752e9f6d0a8b95ce3c9a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "dc05db6e5993ffa63fe1a2e1fa6c27404dc6d6be779eec187ded5934e7c6d909", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "34ff88a1e8113422e6aeb9fcef94c2d0a17648055bfb7865dd0deb1e7b56bf44", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "77dbef1ed873133caacc4d94a7e232c74c798afdcc5fe2971cb7009d517e7b71", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7301b28779740522e608d536854852ba4fc290e93d2e751699f6bce3b46449cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?vsdkuenuqj$" + }, + { + "hash": "31abf6e2ec329540093f2382ab9cc90c6ca2bc1d66654c1f2677f96dfdc693ff", + "regex": "." + }, + { + "hash": "302f890552bb3c51a8dd1f09216a668519d938f54b2b978faccd887ae9379201", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvnre\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "47a88e8ef228125cbf13fab49795b66a324e545086af0b4b7fff57dea7f09d7e", + "regex": "(?i)^https?\\:\\/\\/robuxcardsewfk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "aaf84c2cc59fea9e52c02ced84e444397a41f1398e6e6aeb16e47cfb4f7742af", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "cea1871d6a1e3c168e0852ef16adc564c0ffdc54262133dda3c783d636c4e0ed", + "regex": "(?i)^https?\\:\\/\\/cam\\-hot\\-live\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a757588c5c60d31be7b4a3f232d569f1c2bf55a8547a6bc456840ec340e8edc8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvnre\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d8b16bbfb090511cbc2d121e194b9387f5e6aa456c95fa619d0fc432b9c638dd", + "regex": "(?i)^https?\\:\\/\\/robuxcardsewfk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e7c5a860b96abf07c0a6255fd45f96830ea954ecdfc9eb9ac9ba32ac6d6117b3", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b4aef0b1f3f4a5083cebabceac6c342b7b848bffd8e29cf6d8193857d1b3bbc8", + "regex": "(?i)^https?\\:\\/\\/instagram0736\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "84d2a1fcf8ce3327db4fd4bd5c46e86aab620723abc014f46e705e0a97d2fafb", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b079ed123c480314959dfae1c5c027a7694d71ace201331497bb082f2a242a01", + "regex": "(?i)^https?\\:\\/\\/votarrsorg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ccbcd46e36e282eda7344d526a7496ac81ebcf140fbc89776e01a18b6643542d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4dbc7a7931d85aa2a2348002fae54e39b7d4f8b805b02fc7921836ed351d6128", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ic(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8453df68d85f2fd3b757f646723ba0550168390841c32434b7d82f0a96b6db45", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "695d33531ea228e6e67ae86978ef486c5ab65c410aa06123dec5d53366e2ef29", + "regex": "(?i)^https?\\:\\/\\/pub\\-d89f30ad0eb34e4a8a842d7808563024\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5c8a9515d6dcbd5aeb26ab72eb9bc1be60d3aa797a0501bb7a5e4c17adefb341", + "regex": "." + }, + { + "hash": "14b2d04db6d5c8144c74518e403969e64588ed35265c3fca346408967ccc550f", + "regex": "(?i)^https?\\:\\/\\/cam\\-hot\\-live\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "aca8ca9667e09d3d1179b8d92308baef56a1e6fc6b8354d466d34ba8c73d5dc9", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2bf54ed802c60fc50a718063d9d3701cb6549cc08d9698a4c59194109036bd79", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjrfz\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ceefd0966882db6774251f15ace146cd6d5fa5d31d854165a3872bfedbe1686f", + "regex": "(?i)^https?\\:\\/\\/cam\\-en\\-live\\-gratuit\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5e2fc4b6a9e5e8ba401dfa31627d08e2f8e2e6bfb42b86495fd948eb48b44443", + "regex": "(?i)^https?\\:\\/\\/cam\\-hot\\-live\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6a4d7155da285a4e4dc6810e627ffaa5bddbd4fcb93fd1c52626af838bedd27e", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvnre\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cedfef92b57db9710300ac2fb5e6edd3b2d0312b34849b44117b9c6f04af30ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9037[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ddc58b217a51fde527938725089a1eba9109ddac44b9f91077ca966f290b5ce8", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gratuit\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "eb9083266611898168020c3dce18bcc0c3f8a908234008c87e250482ce3823e6", + "regex": "(?i)^https?\\:\\/\\/recoveryfacebookid\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "accae414e92c6befcc9235537934d014bfc30fdadc7c9ea4e6b2d95bbb23c2c3", + "regex": "." + }, + { + "hash": "0a2fc399358f80319702438fdbee54c04a9721a83155260d642e39ea1da79ce4", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjrfz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e5d9e33279eb63b59032fcd2c3e571ec3e9db27d7d0ce0272b619596dfdee9c6", + "regex": "(?i)^https?\\:\\/\\/bcvbn54bv\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bb28a035ec8b68fa7333d55015dfd28eac2110b0ec619439052b87ad940ef779", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "40abc46d558f2f7b2a5661155cdc29b9b4db036e5fa055b7d2ab8d7db9bd4872", + "regex": "(?i)^https?\\:\\/\\/google\\-bloggs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ecd40ce3f312c40706b816a6f85e1876f6e35d0feeba9b5d92938ba314e09232", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvjd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9c28004e0df302a52922ccbeee3fa0add1b8322f142dc60cfa5db2a7786be085", + "regex": "(?i)^https?\\:\\/\\/robuxcardskx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "85cca3d4b2f63a8d633337ce03f44e7afe3ede14a88358b4d6e5f476f29a6af5", + "regex": "(?i)^https?\\:\\/\\/pub\\-035dea70c9594901a18b6f258df9d741\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5a9433e949a597f1c3c5634b005460e28209ab4a435c28394b62fc4cac8da117", + "regex": "." + }, + { + "hash": "8f7aad120067e8739d7f2926abbd64558df28b03fc52b2e53093edea27e2161a", + "regex": "(?i)^https?\\:\\/\\/chgxjhzcgjhxgzc\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6042bdccda7e787fd0eb4a96d3f462cdae2ebff338bcc7e529ad449c032901e0", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "07e77140efd1891595bc2fa5f7a447681f7502ebe190c1e8179fd65f9365e741", + "regex": "(?i)^https?\\:\\/\\/jksuhdfkjsdk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bb94a90c1839b929383b7024e4c4726199c9e190b63ce6cc9329992a6c8eed54", + "regex": "(?i)^https?\\:\\/\\/freerobuxcodesandgeneratorforwindo1\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "deda93ac7a8aa97e0225e417806b6c154bb4f50a87396eb307f0aafbb568ca98", + "regex": "(?i)^https?\\:\\/\\/robuxcardsewfk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a7c0c9482801f53ff61ccf9bc969632ef97245dc46cdb8be980b19e560bf8ee3", + "regex": "(?i)^https?\\:\\/\\/webcam\\-hot\\-gratuit\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "354a18b93a513a7a86bbd6146f4ab005018bdfd4357928b92d2ff5a682e9f724", + "regex": "." + }, + { + "hash": "1e19707823e2e1920ee13e125aee8a2558d566f99b8a8d45ed7eb7d4ed3070b1", + "regex": "(?i)^https?\\:\\/\\/robuxcardskx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "70b0491aa98d78278ffcce2aa13e50eb91672af02c14aa0157f87654110d4042", + "regex": "." + }, + { + "hash": "086a161783cfb882cf9635bc8068f03b4cafd6e172a7815cd68e2028b24befde", + "regex": "." + }, + { + "hash": "665999fded65e90362f01bf7f6b4012b52c475b61ebaba33dbaaf70ce2f4d81a", + "regex": "." + }, + { + "hash": "a194628f621ec40ef089cbd41085efe4e7b7969d86118307bbe35fe81db7fb16", + "regex": "(?i)^https?\\:\\/\\/mrjackyvai\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "53bfe0d83b564e32eb35ea7b8a74feb87898f68476995dfd7acb8be055cb5793", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1924f(?:\\?|$)" + }, + { + "hash": "519715dff3ffe99366f7c36e9929421c08c52ce860085c8445bd508d747b2899", + "regex": "." + }, + { + "hash": "466a161036bd43e0912d0192034700498f0dcc90f1f98fac4cdc15a71d5b256b", + "regex": "(?i)^https?\\:\\/\\/freeofferca\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b449eaed153f1ff1c4004ec7a79edc44a83e7530f24d604e8197501bba699ddd", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "82c0e682c58d41bc5b603e160e3544f015cd3c85b7dbf0d75190ce6feaf90f78", + "regex": "(?i)^https?\\:\\/\\/reb\\.txx\\.gv\\.y9p\\.si\\.hysense\\.ir(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "59d8d1a6c55c79cb60b4054030103ed86b016c9b91a088459c0068b2c80c6fae", + "regex": "(?i)^https?\\:\\/\\/dewa\\-gov\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "eb75704f306ebb42ab36b68b00d81a55e76747b2f5f9ba7959622424b6059ae4", + "regex": "(?i)^https?\\:\\/\\/google\\-bloggs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "56bb24555262c913f2d76f67defb8131033fbcab1672701f92fedb6cbcc34ac8", + "regex": "(?i)^https?\\:\\/\\/robuxcardscixsw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "06c2fcbe07f78e0d768f5e35702c73b4511a06862a3a75289ff763ea5a94f6cf", + "regex": "(?i)^https?\\:\\/\\/jardincreativo\\.deberdeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c684dfb79121e8b3552da8ba785b520f30f0db77b92513083ad5bd7de6817fef", + "regex": "." + }, + { + "hash": "c470a57a084297ea903f9f0addbd9cf410ccd43f9c327dc1873cdd17530669e2", + "regex": "(?i)^https?\\:\\/\\/hypeitredirectblo\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "05420668b6e8c1a5e2de8a15fd9f6d8a516b89a33ad16e9899abf44f58d8c9cc", + "regex": "." + }, + { + "hash": "e79436209d6bf51bb981dba3125fe08eba91337e0ac008de2758a264b2d3af05", + "regex": "(?i)^https?\\:\\/\\/hypeitredirectblo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4a2b998ae205274ac9244d9efd1b8d95ea8091071e2306d5977e5430ae27dc1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index03\\.php(?:\\?|$)" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "5cb6bc8cb1ba95034ff5bc6bf57a0be966ba1bdd893cb717405b106780a81531", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dc0bad4dcb85654acff59d6910d3c28e5dda45c9a0178d082ca48c6cef870b01", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi03\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "794a58866362f9b8bcaa5385802c17c9262a2a5e724c3addd2ade207b34c1dc2", + "regex": "." + }, + { + "hash": "19118a49bfd037191f34239f1b3bce237992e94cd7415d037f8144c896e40c37", + "regex": "(?i)^https?\\:\\/\\/bureauamend\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1c5b5f32fe4311619a5bc54b8df1d6135ca16e351e929335c8e1dc771230ccc8", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8419e268271758f13d04d452fd6902e270c52b38adaad57868a5d5c85163bc94", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "66b6489fff77142c4a895a347977ca2ca5624373db6d3f5ae67a9ad12a1e905a", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi03\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "74fc10d7cbf17be94ac2b942cb90ebbda750ed37e313e5a2774df88ea8d92f1d", + "regex": "(?i)^https?\\:\\/\\/ps6\\-live\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "8e2d19d5b7234b4f5b6d31a17b7321c7c0d2826ab0e386414da77045473b0f09", + "regex": "(?i)^https?\\:\\/\\/aapodioqsidfhsuzgjuyfsqsrfs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5065be9d2b9bbc4f89ecd5776342d136d9502fe97a933ac8bb3657e44f3791eb", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8aa4db9b0602a58f9b6650e9b8db58560d021a1487821d72daae393b264da1d4", + "regex": "(?i)^https?\\:\\/\\/xhnxjxjdhjsjbksksdb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "931ac2cd5682735a95c5daa6a628227c1da6020a4107d620d9b0be4ad1ac9396", + "regex": "(?i)^https?\\:\\/\\/joker\\-2024\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b14df75f90a60e24ddb87ca3cd515c763af2be521fe8ebe330a09d3251baf9a8", + "regex": "." + }, + { + "hash": "ad1563538401c4821a679c2e0af9ad383bb34c796b0c4d29327a162fd476703d", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "028e5c512c88d596d2f9e24dfb491fb64d9955ce231c21c36ef26bcf204b7b50", + "regex": "(?i)^https?\\:\\/\\/g4u22g\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "0a212b216ec6397a42e5570153c71ff9d9bee2d9e95f884780d94faa9abd6c63", + "regex": "(?i)^https?\\:\\/\\/best10katla\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "82cc564cf5f9f5fd98d8038c771e52d5a5236a92456caad957a6d3a6f1a19c97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "005d40e85f61fb9a073a0709f750b9489f04f02fa894d07405ddef85b20dfee2", + "regex": "." + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "c97f869a292574ba4279089591215b8a3e049a4018fb76eb5395aaf3b58652a0", + "regex": "(?i)^https?\\:\\/\\/instagram063806\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "32318edea40b505386fb1223b51005ef234bacbbb14d756a7da79cc204e7dc20", + "regex": "." + }, + { + "hash": "024fd67f86d73f0c0b8246be56f3577817fdf43456aefefed1394f0c0bcc6a1a", + "regex": "(?i)^https?\\:\\/\\/ayudas\\-rendda\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "f421284f95a7f77a681876fc5437a072403258d2d6dede12ae587d22462b5964", + "regex": "." + }, + { + "hash": "f259baabab41e46d173c96353d9f86d91019a05962789bd40443b7dc9cf8a946", + "regex": "(?i)^https?\\:\\/\\/ps6\\-live\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "389fe436f37f9a4eff32b3ecea56cc1c61ee7ac2b4ca1a91d5a962b5117e137e", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "93bf2243555bbb07b3d57f6671308bb2a1d22ed56b1a213405872fb165d73ca3", + "regex": "(?i)^https?\\:\\/\\/hotclipwave\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b67f5ea4bf0d0cc2febe303e10397c826e003868403a51e3b7d1f8e734eab2ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "12405f52a29a88c2bca62574239b25a7b27f63563de9aa2a60e33955e42b7b11", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?espace[a-z]+\\.bausmall\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "a56ca4db7d7126632a9549708abe88e6e385bcb4f066f5a91f83cbdae309ffc0", + "regex": "(?i)^https?\\:\\/\\/uyrygftydghfxdtyrdghdtdfch\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bd50d22cbb83b7dbb2e252b4fc9fa929e7e6b510b32cb1e527d3bc01e576730d", + "regex": "(?i)^https?\\:\\/\\/instagram063806\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "a094667f0c47b4868ff899e98c2827ba4bc714b5aad26e3fd411bcbea1c9d9fc", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi03\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0ee49f5cf068689ab219fd4d4e66c6d8c5bea139dce93117c6da9a4eef722617", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "ddb8ba36774f67a7b597fbae366a793bffb76bf8dc959200e755b6b592736858", + "regex": "(?i)^https?\\:\\/\\/todayhotvideos69\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a0c036713da79c3eb9f297f9670d2d571717d15b20d2e140570f4cccba42f0cb", + "regex": "." + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "e911f564bf25c5f5667afa2beffaf16066ac000c4c65ced0e84c0db74938c408", + "regex": "(?i)^https?\\:\\/\\/bygoiweoiuisdivuoiweuiovwe\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3b3ab4ef64f32041f3369d686e28811d3481a1abef86eb939c57d6d5475bad9c", + "regex": "." + }, + { + "hash": "f02fa6259a5aa8fde95ecc7a79490cd962c907454a79d1fb349d9e0e214f7bea", + "regex": "." + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "a023973bbc56312acfc77c71ccd57bc91192ed0bf6aaa37bf1d7e5767d9dbe9a", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "c76814b07b0ab58e7e38d1a065e4c4b2b0d4800a4ac80995bb63ce9a6e2bd357", + "regex": "(?i)^https?\\:\\/\\/instagram063806\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "b0a7a381fd211d0be79ca74ae8fcf1aed419e8e56871acb06eb50076bfb7fcc4", + "regex": "(?i)^https?\\:\\/\\/aapodioqsidfhsuzgjuyfsqsrfs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "2b2ad49ef0bbf3dde2fb211aed24f9444606fc8c03606b68d800d400755bb3c7", + "regex": "(?i)^https?\\:\\/\\/bureauamend\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5a80158c36b3bee9eccd23ae382dca0482be3f6d76ace507c05e1f462aa8956c", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "2839daa21526cc8fe810ec4c6ea16fa6b65804401bb243567bb63823d0da645e", + "regex": "(?i)^https?\\:\\/\\/todayhotvideos69\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "cff3d73b48b18d2577761972637f91e7706d66c4cf01d11d5020642b4e8d75ec", + "regex": "(?i)^https?\\:\\/\\/hotvideol0vexx1h\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "47a3bf911aa706dd1eaa050d05e1eeae180b5735fe31f94af87ded9f543b5287", + "regex": "(?i)^https?\\:\\/\\/todayhotvideos69\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6f72ba412c6cd6a3945e968dc5ca5bbe0230ca25d52a41ce076cabfdaf16a50c", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0211a73aeec5d574f5cfe674d349994a13f1d70421e05bdf652c582bf4fe0f34", + "regex": "(?i)^https?\\:\\/\\/bureauamend\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a11f88c30009365f8cd20111c77c24452595f3785f9795178e5e76033ceb587d", + "regex": "(?i)^https?\\:\\/\\/aapodioqsidfhsuzgjuyfsqsrfs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5ce86d278e7e4bf1fafdc24d38cbaed83ed57ffca502992338481437da9e1ea9", + "regex": "(?i)^https?\\:\\/\\/bygoiweoiuisdivuoiweuiovwe\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "6a17d9c2e808df4f3b73b6413a3e7d210ba86d19653185923cc39ef1e426533c", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcxvcvvc\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d56e40fcdf83a7ba623f353eec09a6f74f7ae0b9bee622ac3e65ba6d5abb0164", + "regex": "(?i)^https?\\:\\/\\/instagram063806\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9c53135cfcc56fb9ebd42966d06dcf1b8b7d531172d0ad53436492b142b3adeb", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3b062dd7a3a9981cf9f5deac96d01ac7dd09cc5652ceb355fd12cb70eca6af46", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcxvcvvc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "c9743d2056e2482d835aac804d3d520d4d9ddc9db1eefbfeb95588b31e2960a8", + "regex": "(?i)^https?\\:\\/\\/bureauamend\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "378b2bf74a0d31b4694040afe68c9e39662461d7c5b142c5bb0ed077b6248621", + "regex": "." + }, + { + "hash": "163e93195b88388a6553f9dfef7f1e81e5cd2d398af4cb2593364f767934491d", + "regex": "(?i)^https?\\:\\/\\/uyrygftydghfxdtyrdghdtdfch\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "61abc3bdcde830f998a2f61472a98467b42b83885f8582505b87f701885542ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dta\\.html(?:\\?|$)" + }, + { + "hash": "54fccc5d8b65fec45aafa0f25fdb75ca3216d269c0e31b93fb33c4eeaeebb461", + "regex": "." + }, + { + "hash": "ee2e71ba619adb929e82ce20bcb0e5775503f46f61d2997b169895c2176ebc38", + "regex": "(?i)^https?\\:\\/\\/pub\\-1930f79ae04c4a73beaea54057c5b622\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e3e8a\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "9e5de2c2be4e0aeb36165785bce268e8cf8ace4cd3bfafb7ef0eb19975591434", + "regex": "(?i)^https?\\:\\/\\/joker\\-2024\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1caf6f495db03e29154f7503bcdb5e8cc59d22248b454d1f204eb8777fbb8c13", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "85d95cd4b2a4f36c08ef6513eb490792f727df89b01f9eb3a551f55e9c02477b", + "regex": "(?i)^https?\\:\\/\\/estiloelectro\\.bausdeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "75cd14e0c957e978255c2fa13613e7601f22129e2afbed6259c22daac8a04db3", + "regex": "(?i)^https?\\:\\/\\/hypeitredirectblo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "8cabb65bb13a706b5344d457ece71875f89c4541de3f5145027cf7e5f44eb593", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi03\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "32ceee5637517a0c0ec5f8e36caa8011382ff4edf52fbf5a71196d3747d24f63", + "regex": "." + }, + { + "hash": "a2c4314cf8e0e6b302ea1369836816ab15f066ebb3ecc491b46292f7244ebed2", + "regex": "(?i)^https?\\:\\/\\/freefireredamrewardsfreebdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8e926787a732fae86c28167931752d9a8c804cd9c79319e737ea0d38bace8285", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcxvcvvc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6d922880a3c6106d85f3c3bd9d1efa5c23ba70e66de8c8406121969d45686a6a", + "regex": "(?i)^https?\\:\\/\\/hotvideol0vexx1h\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9e7be25715621934bfffedcfc6575de629374a2009b5fd913ff12195acd7c83f", + "regex": "(?i)^https?\\:\\/\\/hotvideol0vexx1h\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5000f97a8b6414c256154a4b9d8dbb3cf39c7fb56eba77b3a2e84ac44eb5b666", + "regex": "." + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "dafb93a60a8d223696183e20aec1c09e71650a8e98c4b254aeda43d08b927207", + "regex": "(?i)^https?\\:\\/\\/todayhotvideos69\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cb198db8d5223be8e69d632acd574237f430719d6dfa329d58c57acb20c6c938", + "regex": "." + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "83bf8227801b56f8f1aaa67eab692d85111eab58d52079c67084794568bc4430", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2fd623ebf21740b80daeb612b5c17be17e6894de300aee4e194fa8bf0ea47144", + "regex": "(?i)^https?\\:\\/\\/joker\\-2024\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "11a7295e405d4c7a96583fec0327c3aff4ea6b8ed22eec21d0ac17e575d666bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "3cc191d7b885f6e01121af4ff8c33a0cd6af113645ed739b0f7fe84cfb08ceff", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8e39de3a7eecfb269fddb84a400faff9e12b689a74b3296b17692e998c1b6929", + "regex": "(?i)^https?\\:\\/\\/978784\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "005d8cc7748e9ab030b413c11714bdce38fc9b60dfcf2d70a81fb57d0be89df2", + "regex": "(?i)^https?\\:\\/\\/yiying909\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d9b95e38dede19056bb949dd9fb574e8ad48eec978606c0c33a5705dd9a5fdb3", + "regex": "." + }, + { + "hash": "f001b3c76f2f5a3447ea21c310d88b79150157f928d6d7e5691397f67f3e2f71", + "regex": "(?i)^https?\\:\\/\\/instagram063806\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "9a749113c9f3ae043b190a2b9e56f9d4e3eb3590f82974d56b138650393f7b46", + "regex": "." + }, + { + "hash": "da16e4953508795964049271fc855f7da9a5e64c5eecf94d96b728e067571dee", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcxvcvvc\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7112cc42dbcd54cffd2b200e01bc58cd980249131854e5c0330efa89efe5842d", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi03\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "172e6be1e5e27b9c08ec5f786eeaa3aa5afedfe34a1537dffdfee746504d815e", + "regex": "(?i)^https?\\:\\/\\/978784\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ee6d73e41856719bdb25ff2185f7142f732b1c835918aa335aa31c544a1cd517", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2f14e29285e2f8799bbdca92ff8fcd85a6eb0a94474a0c61043422cda17fad78", + "regex": "." + }, + { + "hash": "de2942c624898cc08abb81360037dd7d0778e876e6af8ab6f9d33f023a390e58", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi03\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "7b86e2dadf4652f1216911fc2272e693a1e1ab6d6a2967b9f14d7a66a92fbab5", + "regex": "." + }, + { + "hash": "12e1643b45694ddf5d25fd075eafab21eafd103326c1e34bb869749f75cba13b", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "73426c5888be1831d9f930a2657f0353a52b26e6611605382146e43fc7b3d045", + "regex": "(?i)^https?\\:\\/\\/hotvideol0vexx1h\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c4e72331e222cb38bd8dc80945eae9783ea752048e54bdf0027044595e2e2627", + "regex": "(?i)^https?\\:\\/\\/confortartisan\\.saredeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d3087dccf85213ea1fd1859bcd3903156910631d5b32e94834b6d135c3931d7", + "regex": "(?i)^https?\\:\\/\\/d345456dsds3456556dssdsfh5667mu\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1486b23c335f6d86cd14a7fa0cfd7c54e3e19e80417c2d3761e4d2ab4299de1f", + "regex": "." + }, + { + "hash": "f6a119219c14494654fc095312a62e5d7625936b8e671542fdf056aa124276a9", + "regex": "." + }, + { + "hash": "42789b5905a40fd4daa4bff64bb84223af7d7edcabc0595790df5f9dbe4b83ae", + "regex": "." + }, + { + "hash": "99841792737607584af54be6af836c42fdb0d9d2cad0873a03d0998239a5150f", + "regex": "." + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "82c5cb0a6982b326198853454e3bbb538c5741aa6ccf27113e2203f178ddfdbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "4e8e6c5401bf2d459336dfcecd7b5ed68aecffbb5a323eaec9389cf853220446", + "regex": "." + }, + { + "hash": "d69132e4aa16f53ee181bf366bd43004bae74d50b6e626c42923b60694a24417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "e9110af79b02ac537d0a97716fb79da532ad5d5ae4a88ff3519f0db3b306705d", + "regex": "(?i)^https?\\:\\/\\/hotvideotoday69\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a9691167792eb9b3ed076b3b0d3da3ea2728ad77a49e67bd940833668fd8b3c5", + "regex": "." + }, + { + "hash": "915125f06809597b191047831d23b05c132df38c216ea334193e81544c5e7ecd", + "regex": "(?i)^https?\\:\\/\\/bureauamend\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "82c5cb0a6982b326198853454e3bbb538c5741aa6ccf27113e2203f178ddfdbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register12332(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "89b46dd1da78e2384fd1a6c9633e735708252d924ab27ac50512dfb7160fb2cf", + "regex": "." + }, + { + "hash": "d916b9d8749ee8fdcc3b7782309bd66db1c5a447864c6735521117febe5fa578", + "regex": "." + }, + { + "hash": "4b035a119713c86e541c126d710996901af1eb47cc2c8406cbd2d0d414c776b2", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "9a35a54d6aac674b6abbe2024cf049ad446498813f4efdadb01e4ee4b18ef044", + "regex": "(?i)^https?\\:\\/\\/hotvideotoday69\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ece55b2caa1b3b1ce1288684319bbc53b186bd95dc31ed0451b728cb055a9040", + "regex": "." + }, + { + "hash": "82a8cae235a8e99c1f8758a58d5aea3f17e1a7552320f66d6a093ff4a66a600a", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e38780ee516d2767ef4c5106e02389823dbfbe6d424439acde9102008edc0738", + "regex": "." + }, + { + "hash": "fab34a8db1502f11be3bcd1cd815e6a9f1b979fe20ddcaca85236abc011d063f", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "3d4b41d0b010bd7ca5aa3ac2e54dd729456f38aff80ea31460f43bb6a877d1c2", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "2da3ebfd4ff0a9bceb065b5ed8228c76d3cfaf3f69943208bac7e0a08672f272", + "regex": "(?i)^https?\\:\\/\\/0niineservlcesrogue\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "651f3019a4c490c6efab82f1d0ad3335d17e96589a888d73fe0e83cf0059d4e4", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e3e8a\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "09bd30efbb2c68d566adb09aa17d584b9bbcf1220a47b1df9ddac69dd0aa7c83", + "regex": "(?i)^https?\\:\\/\\/casaconfort\\.bewadeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "859b70b7307cb3d65484cb6353c5f27868740f3eb05a7861dd65becfc574f601", + "regex": "(?i)^https?\\:\\/\\/978784\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7f4226096ccbc3a2ef757952a260201203278965efa44cc9605d38045132ef00", + "regex": "." + }, + { + "hash": "4e20edbee32653ad715b0eb484f6cd15ca4f96f4425adb43a7da228577e0055e", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bff583fe04686fbf04cbdc85aab09105454ac2ea7d2a135da5fcd1cfb9a172d9", + "regex": "(?i)^https?\\:\\/\\/978784\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "39a0e467c669531204d2ffcd50a73495dc0aefc47fb8609bdac050451a948bbc", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?espace[a-z]+\\.zesastore\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "9b44ebb6c8417c864db14e8be53c58b2255fc766df0afac075d454edc6c93834", + "regex": "." + }, + { + "hash": "06673fd211a1ea4c494ea90e4ef03cc196e6e209880d60f4f81b32d24a1d83a3", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8d10e069f919f7112a4d8ca2d35fc4115ec7f4709f854aac8f7703df106147de", + "regex": "(?i)^https?\\:\\/\\/ayudas\\-rendda\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1c2c8ed728f8e92580899714f7828c32a1252d12d86a1f57a2a1227e5a908054", + "regex": "(?i)^https?\\:\\/\\/cozylogis\\.bebandeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "402b9866a598b3206e26fee71d37a0a9afa33070317db3463e1c15f4b45d55fa", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "38daf30c4e1d51cf7c8b794da6ee03ce21d01b8e91758787808b299b6967bc99", + "regex": "." + }, + { + "hash": "995f6fd542825cd243db8ea47eeec85d2c1cdde16aff4ae1e050c45583e5e0a9", + "regex": "(?i)^https?\\:\\/\\/freefireredamrewardsfreebdf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "5a33cbdb438a3946b3e5b420fc638fa39ff4a01872ef556888706c6046c038e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+B[\\/\\\\]+login1\\.php" + }, + { + "hash": "a0248a2aebcc7a604ee6fda3976bcfeb3bd3ec98f89bb3c77944907501a38529", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "dce6633c8254786bb7850da37bafb0dcaa4a092a3a6c97564c08e2e135c32987", + "regex": "." + }, + { + "hash": "fe05ee7b74e8af78ebc18c981168d6e26093d91ad4b3cec338a6bc3b9566d7fb", + "regex": "." + }, + { + "hash": "eab13d21472efd21f03dfb3359238324cabf799e9bdd63bfdfd27ae4aad3db66", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1aa5b36491445f3b31087bec0493e018d132d0074e4a13f1ca6b85934aaf8fba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "d2d11df64e1c73e7049a6baecbe992c99e556cdca33cfd181bcfefa2bd819920", + "regex": "(?i)^https?\\:\\/\\/freefireredamrewardsfreebdf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f606968bd3949a19feaf3daafa872832ab075c4227c582d3d3c17d8bffe53a32", + "regex": "." + }, + { + "hash": "8f64a7a7fe70ce31124842c4f8783679d3427d3bf079f4789c62e218f59faf85", + "regex": "(?i)^https?\\:\\/\\/xhnxjxjdhjsjbksksdb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "659eece600b3aee58adc7188a8758506eeebed25dff609d508aabcb8883454bf", + "regex": "(?i)^https?\\:\\/\\/g4u22g\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bd88d2a5717033618e5fecf5b10d19ed69c8133f40cefd43720c654fb90048d5", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c43364[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "d0cbb153dca6daf92209248173729797fa32194a3b559a0bf865555519fac26c", + "regex": "." + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "da85c4f1768f6d4fab4804dd718d8a7e22f0c797f5718d3bd70a77ade10a0905", + "regex": "(?i)^https?\\:\\/\\/hypeitredirectblo\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e7947e9aa2eb13d3074d60dd33d72a6dbaf7d62cde307d41d9e4c0ba7dd0e3ea", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "629a5e3488a802d6dad09c0ae923b6408730e94bb47ace9b23a84aabe6aefb51", + "regex": "(?i)^https?\\:\\/\\/pub\\-f6add3451c3841ae99278ca1c912aacf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5e1476bfd86e0e15a509427eef21836266b3fb36059dcb7aa2325ca73357a3f5", + "regex": "(?i)^https?\\:\\/\\/jardincreativo\\.zebindeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "28e7cce699006c767f8b9cdc608c4574e4f14d79b42796def2c8bc69c9937782", + "regex": "." + }, + { + "hash": "b4698892b8383cda76d106d6f56eef200e9649044b5d72a25a8e5b8e906e0591", + "regex": "(?i)^https?\\:\\/\\/ayudas\\-rendda\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "727b027dade2bf7f84a7bf237b279b80d692e134857920375d452b40b67733a5", + "regex": "(?i)^https?\\:\\/\\/xhnxjxjdhjsjbksksdb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3473600d792dcff60bf7c3719e7dfaae861adf75304515bdfd3d02199ff6b9b4", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8832b4ce5bb42e0c1fc55b65f30d44d9b514194c601d6ae4c50dfeab6fffb815", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b2f6dd2a104963abaa150508978cf574369e2d168836b5dd12e2e9368d521c7c", + "regex": "." + }, + { + "hash": "6e87bb4ff8c3094bcd6fe1b4976b3d829b10c79d11e7728f136e5330b39756b4", + "regex": "(?i)^https?\\:\\/\\/g4u22g\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6ee9f4185ae201d19c4995f41f6eb35b5dbece3ec78d1a448f6a806afa2004a3", + "regex": "(?i)^https?\\:\\/\\/joker\\-2024\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "22d440f7583a62aaada882c7d546becab4eb15ee91985210f853f193dce88cc0", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a50a0aada8938d3b832415678531ec8a84ff306c652f7da015d43a966e0601bf", + "regex": "(?i)^https?\\:\\/\\/fyu435456msank85387sfyruk538gfmdannk8538\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "079cb0bfdf5c60e77f5db988f07e45a29312e5991a5147dca2618d54e24dd2f7", + "regex": "(?i)^https?\\:\\/\\/ps6\\-live\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "43928efd017cea8cd754649b6f68436545a64f1d49464176bd19f4ad39c6c387", + "regex": "." + }, + { + "hash": "efe6f21535d482c6141b3fe0e81f30e79ffa44f5221d5ace325617b0315d071e", + "regex": "(?i)^https?\\:\\/\\/aapodioqsidfhsuzgjuyfsqsrfs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "786de5428c6a679a35f710b67f2a65bd6e399aeec2ccbd7453e788d4b5500765", + "regex": "(?i)^https?\\:\\/\\/bureauamend\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "87adbd1effac3dd0a0c42b78d0c37e7ecaea21fc272ee456c5552f41bfbfab6c", + "regex": "." + }, + { + "hash": "8a16a4d801dc92e90730670ae2b8efab53ed0146c482cf078080ef6cf7f2775d", + "regex": "(?i)^https?\\:\\/\\/hypeitredirectblo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "82c5cb0a6982b326198853454e3bbb538c5741aa6ccf27113e2203f178ddfdbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "539579fe4c6a9fde8b8264773e24db133aa5916f75abbf9bef4b62b6d9741214", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "3ac713e642247477e2b5817525cbf47f58d7d253c6069dd2042438238dae4b5b", + "regex": "." + }, + { + "hash": "0598d335b1ed290eb1eec7cc704477b5baf696161ff9353c58ffcba46d9ac8d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c1433060d07800cbc2609a8c7613d8c93f6808280d201761c1d6fe381d91feca", + "regex": "(?i)^https?\\:\\/\\/muhammadsikandar3105\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2d7e6b2715b51aaa3f8d9dd0f76dcbc47305a830654b6c1c01b7d95391237731", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c43364[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "7f1760a2ad68640a3106f7ddd2694e9d645b8e63792e643215bc050da931d175", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7a7bfb190e647a26f3a6e32faf2a78b17a760d01bc452bccadcd20749220a468", + "regex": "(?i)^https?\\:\\/\\/hypeitredirectblo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "89c0a9e52a4678b2cd1a6203c04254e5f3ca3791295c96c528e89e096ee20dca", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcxvcvvc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "46397d0bc2092ce78949795aa7b5aeb73c86e60a7e756cadffbdc1517bc1caff", + "regex": "(?i)^https?\\:\\/\\/uyrygftydghfxdtyrdghdtdfch\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f0d3482bbe53f046af8bbb3bec197cee4c6e723526bfa3bd0e8b7c45df15d703", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2853b765d6b64bcb530fdce21dab2ff64aed3d1a0867588c67f25f987c2966aa", + "regex": "(?i)^https?\\:\\/\\/aapodioqsidfhsuzgjuyfsqsrfs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "93710dba5a8b21dcba6f381abd3068b9818d39561e21fafc4ce2217d0811ece6", + "regex": "." + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "b7b17139f8b3d5ff6df1ab143c6a2bd9a53898817709399aaf3a5a0d97aea7e6", + "regex": "." + }, + { + "hash": "1fee789b9bb0af6e7fe6aaa7ea64a96346c20535b7eab22afbb1ecafa3052e78", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcxvcvvc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "648a0df71da12be2fffc7fb3b85afcf0913ae436218b32c5a47c2f516ffcd953", + "regex": "." + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "3524befdc20645a46ca2c4c91703618d91fe57519d4d2f828c89c4548290ae9c", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "dcbf71009d3a40e5bdf80a59d4b9f84c8c4a4fd9ea44654a42a234138561514e", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1b8f2a2fc173e8059dbcdc27cc9d5c7ab66b7c8c7cce4f4392f78895cb73c93e", + "regex": "." + }, + { + "hash": "99a65b9a3f93c85bbe1cced0b583e7bd9b5a9951d9142f8bab1139b05bba492e", + "regex": "." + }, + { + "hash": "e10e99e31fbc23080bb85123d71f0cdee57821812517777262620956598210f3", + "regex": "(?i)^https?\\:\\/\\/uyrygftydghfxdtyrdghdtdfch\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8405acc4d36386564dd90444dff5acdd71d3e9553deec7e3a3a6443bb12d207b", + "regex": "." + }, + { + "hash": "3c6bf8a979018b382c8363c60275fced170129d6ec8835433f9289b60b170dd0", + "regex": "(?i)^https?\\:\\/\\/jardinsano\\.lapadeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "777c620bace353dd8f3b645e1801e681caaa9b52a2c4b9a953cb7d43a78f0d9d", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6c73b2a926bb6f444c8cf1f4d236e5572c64370670eea7b0be69808c680447d5", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e4bc83f50249831b9909e9f93d115ae2bbbd77d90753a468b00b8f1d30bd8db5", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "1a2dee89ef3489ce55c2407c347e09eb50e418467f8458f38bd741a75d2e63b2", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "83cfa8a7a4ee4db864852af91bb22303b29a6638940a9b4196065c57bab05738", + "regex": "(?i)^https?\\:\\/\\/978784\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d0ada26c116b9f8268acae96fc355308c4ce6d52f31f9657126398cbd65705e4", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "84fe898aa0e8633999c293af6c84d78431687a6e3c56e38ff0bee69d7c5c8bec", + "regex": "." + }, + { + "hash": "18f1a81479a9234fce1c7fa1a129571b0928b9b4524d7d2ab2c05915c2c9a1f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "908103a503064012854a8d17ee41ec18a63b4b583dc6573908945ff77b474cf3", + "regex": "(?i)^https?\\:\\/\\/pub\\-cd62179811b04c48893068f096694bc2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9e7bdfc06bf7aedeb7c727814aed5558311c3368295db1a612048270a52ca9ee", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2626516fb62ded48dcf1400aaaf969fb898ef58380d627d86ae58f2fb07d3273", + "regex": "." + }, + { + "hash": "8c6d6bf40cc091c2dc3f90c83b24b104085c93d46ae37e08425412bbb031e617", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6ec6ba65ac9ec257f3bebe5e1b61c075692598374011bae0f037c5d34174be15", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zqjdhqg\\.com\\%E2\\%88\\%95tlikhll\\%E2\\%88\\%95lzzkjau\\%E2\\%88\\%95byogjlwb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uxcdeo\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cc1e860f752425432c34989f86beb5be0c987d8ce74c8795e9f8109a9feb31e5", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a6012d4f1c35044d62b1d92b69c7351a9c6645a69eb2c039bdcf8d98ae54afe2", + "regex": "." + }, + { + "hash": "581e93ab89bb4043410ee90a1a9fa0641c7210d3021618bc68ec9af283bdad8c", + "regex": "." + }, + { + "hash": "5fda63c10f994fd5228a0357400de9f43747c941c82a2f91a704ce1df8b10d39", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "54e486c2474bca4e5e913a8b3835331c26da2610b58ffb0d0d87b7dce72907e3", + "regex": "(?i)^https?\\:\\/\\/casayarte\\.rahedeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "18cd89c38444b47f7039aa372b8a3a93ea52059da0486f273f69a94c946a5054", + "regex": "." + }, + { + "hash": "d43e55a25684fcee1b8e0b59fc39a603a5a28b23f6ae770d2acb528176623411", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c1c45234985b0d8c9c047aeb3f4a52f7abdff8504ca05b4616ec29eff671ae8f", + "regex": "." + }, + { + "hash": "1527613a4d3037654b44f94d758e3ecc04070d6a545d1679de25aa85242c9bd5", + "regex": "(?i)^https?\\:\\/\\/ps6\\-live\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "93c96cb9f70d9f2c4da9c0dc09807003b10557b7a81b2d1b21ab289ac6888233", + "regex": "(?i)^https?\\:\\/\\/electrocasa\\.babandeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ccb5201177d8091ec565dacb8d194600d4487b749ea08fdce0dbcbe8edb274ae", + "regex": "(?i)^https?\\:\\/\\/xhnxjxjdhjsjbksksdb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cc5c72579d9279e80f3ca42233a6c92db585b4f8d4b25379b7bbd9d7547e75f6", + "regex": "(?i)^https?\\:\\/\\/freefireredamrewardsfreebdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d4bb2bc7aac0e0dde6767f8fe29680808e49dc8dba6c03a2bff633ef59210b36", + "regex": "." + }, + { + "hash": "c737541324e469a1b854d5b13670f7795ffe392c7c0ea18a6414bb9b7963de66", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "154e897e8cb8e1cade3ea3bdc67a7d1898b3f619b4781b5b36a79502afba8f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "cc918af27878c944aa770d7b39649ef90ee9b4b45e07948090ac3a6863fd1992", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi03\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "925b7c08e546cb6971aaa99a888367591204f414726600b10b2a4dc5479dfe8e", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1b46d7b0712161d16ca70236091b6debfed25a0cb330b9641c929882dd3472cf", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0d1cf32677e2428a278ea5cebe03c8cb6d69180d5b5dc3359fd542f68aa8320e", + "regex": "." + }, + { + "hash": "9c1158bb6d574f5aea630526fca46b6440bf8fcb4bce8e2aedf7db482576413b", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "83bdddac4d4504a60bc2f45121f53a647ec379cc63574be8403a74317a7bf429", + "regex": "." + }, + { + "hash": "108c14f027de73fb44a7b031ef3594f64d01798c84b26d5a20a5cec1dee85109", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a0a78ebf80d772d60e862259f8873a1e25b3d75455f532d55419392a62d8ed4d", + "regex": "." + }, + { + "hash": "ec9a68b2ad5172aa46c3de88ac0a1f42fcb08f68cf712284be88ba4c0be4610a", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fbb0ecc8220ebda96cd535b7eed549a562bc9f333e37713f97bf67ccf0bfa3e5", + "regex": "(?i)^https?\\:\\/\\/vcxvcxvcxvcvvc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "effb4cf77fb7561bb2485dc5e163514c0d04f1e5ce9ff4ff8e0d763c4ad78144", + "regex": "." + }, + { + "hash": "eba91faa669a36aba629382dcae9b2339573fa68eabfbee00609e32e55b24bc1", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "89e879ff84b2335461df71f2731411e157b58ecb81ada9d87f8e22639ccc1c37", + "regex": "." + }, + { + "hash": "8fed8775018e9d4fcf9d3a10a4c08f944c5923544a877c2f02c64e9cdc75319a", + "regex": "(?i)^https?\\:\\/\\/appcrdhvbcredit3\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "bf1cc11ca12223e28d1c5f82096daa72e5825588ec5c8b70fb09a077641b9086", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0cb369f8ea4c438553a3ed0903e387bcc512040295d947ae755d306635eb3f7d", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "72afe8f7272f1b1c1dd097e2d12a9eedeca5e584cb254d124a7db986a25605d2", + "regex": "." + }, + { + "hash": "6e192b0c17a85b12b53aab2d7819794c825ba6412d68b5c9e8ad6b2195469e42", + "regex": "(?i)^https?\\:\\/\\/simproformula\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ed440d68e252638b6b4cda834d20e6527a8978b2b3bb0651560044fd7f1f00bb", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2041dce2cca603f1f3b11fc1aad203dd06a52a87493bb38880d68ea359678f17", + "regex": "(?i)^https?\\:\\/\\/hotclipwave\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "a54e9c35e55bff10522fb8566afff09b0a5ea2ae183c28c09565c8e49a6f1cf5", + "regex": "(?i)^https?\\:\\/\\/php\\-salmon\\-oyster\\-adperdoti1985812444\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "f0e4dee4910ac4321c46b3f58ff45d1439859c7f7d4532941b0d9f45db16258d", + "regex": "(?i)^https?\\:\\/\\/uyrygftydghfxdtyrdghdtdfch\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1c0e409b159bc2a290c279b5f0e021d424305100dd1ba946b66aea99a399a76c", + "regex": "(?i)^https?\\:\\/\\/newhopelutheran\\.us3\\.list\\-manage\\.co(?:\\:(?:80|443))?[\\/\\\\]+\\=(?:\\?|$)" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "14c6d77e9394545a03d443ccac431c36a9c67e7727df0fb80cb10cb9576b62ae", + "regex": "(?i)^https?\\:\\/\\/bygoiweoiuisdivuoiweuiovwe\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "02ffc2abb624b7b4c177c5dd7a98893547a05f5bd51592e2bd41c4377fcc0a31", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1d23979a10d0061cd0f67d7551f7d465cf17e0d4a16ddbf0b1bd463c67db3df3", + "regex": "(?i)^https?\\:\\/\\/uyrygftydghfxdtyrdghdtdfch\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a67b3ead0b5953c57a40a9ffdc156e3b85f120964203b3f608c1bd209e93d495", + "regex": "(?i)^https?\\:\\/\\/ayudas\\-rendda\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7d22f2be7b6d012ad0d01b2fb24b9b79292168949b082dbffbce6f26476f0ef8", + "regex": "." + }, + { + "hash": "20885b8c6b5061a3599138b38d9e4d0aff215b4c069c7f32baeae4d628779082", + "regex": "(?i)^https?\\:\\/\\/instagram063806\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "153c0f0587537321dda2824ca58393f2ab20244d2ef4269ea7d9c982316bf222", + "regex": "." + }, + { + "hash": "af2fe91a5ddd4a98309ad989d075c3c226c3eff7c952c5f1166d85d0f78e7f7e", + "regex": "." + }, + { + "hash": "66922ccf756a6eabe081246ed0ca8880ae0af18474dd6e5859465acd353fe961", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakvmsdtuasjcaskcmasekmaes\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df50b855a01b6f9a0dfc3200c14166f907094be0a26aa596543a707b8f29b0ea", + "regex": "(?i)^https?\\:\\/\\/hotclipwave\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9609040a52d2c17085a1ab675f31782331848a21a6331a644229519b4ee043ab", + "regex": "." + }, + { + "hash": "8b6992a44cd409eba61fb0d7ed6424415ba1db16f527ad676ba5b19c30a9c93c", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "64e540a73b13caa714ffdc4f2559d7f06a9892e21dbc65dac361e93ee16e3c2a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.uewbcuweyriwerweo\\.com[\\/\\\\]" + }, + { + "hash": "d7dea3f2e0c4eaa924661b1a7ca15b586c4b6ccbbe401a37c564a9d93f219acb", + "regex": "." + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "76edc6b83b47db78b80109a0f8adb22fefa7fd99c7919b4e2030116ede884986", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2da1221d25c69f65f78f2b9fe3082bea74bd92ff268dd77c060073142ed19f9a", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "caaa039a03b5cb890844bc9ccc539ac6a894ff94d03fe0dc3c42f4d9bb0d1384", + "regex": "(?i)^https?\\:\\/\\/jardinsano\\.doredeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "1a46f759588fade1157c408a1e528b4cebf2a168ffb28969d24bc08bdeb9d557", + "regex": "(?i)^https?\\:\\/\\/978784\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "f2d8efd6520ed773ff9a4b5bc360600cd798a51c89d777a20820b06e2a4894bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?method\\=epic_identity\\&security_profile\\=high\\&client_id\\=5e9270319a17085ede379c91c831eb05$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "609c6d9cd65d8a13a973ecfc769b4b172a982c3c536b4cc71b738dc6a64bf8c9", + "regex": "(?i)^https?\\:\\/\\/hotvideotoday69\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "91511a465d8788788245ac9423c2ef49c74bc4c08de0222e77260a179a853a49", + "regex": "." + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "3f0ad5251e95724df0a02928d901ab629ddd7e920e8f98cfc82ad30253d78434", + "regex": "." + }, + { + "hash": "8d29379a4cae4e0644f044b0354384012bff52fcc118167236cdcb78f7a0c9e6", + "regex": "(?i)^https?\\:\\/\\/pub\\-2962dc671ba644ebb3c05b2709871f5c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ec1fe9d28ac25b2747377ceba34e578354a6f485cfc11fdc65ba8bb316242ee3", + "regex": "(?i)^https?\\:\\/\\/decopratique\\.saredeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f11a4d3806f82e21b6d67b47f7425960f0e81ad9f872eb41c711ff7624ae9ee", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "6a45afe65bd489d27ddbf21caf232163a224459453fdcb6b2b2e44d8361e9119", + "regex": "(?i)^https?\\:\\/\\/hotvideotoday69\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "a30f44b7622b36fc4a90554743f10bb2a874a253567dfaf4e22bedb2f9cd7530", + "regex": "." + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e3e8a\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "718e4560a61bf9f52427c1eab646df363177ece865fdf732e4d161a45d59bec0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin(?:\\?|$)" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "7ebcc9984b0d8f8f5c196ab81ae90675a6ed1c1a44ee307790f22b49a0bfa385", + "regex": "." + }, + { + "hash": "81f2596dafa5542214ef19ea4a78c4ef1f911ea8459e4acd2b0927802c1cebf3", + "regex": "." + }, + { + "hash": "478dad3ba580f6b9a2c7d10be19e8d6b030a4dca1404cc13f752907bf3e902f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cdf051135c9397a0c412e6e545a1c975f0c177729c4964c3fb8cd73171588efb", + "regex": "." + }, + { + "hash": "45f6b100e5b1c8ab5f523fff7df7a5b4b91a56151310d8f718bcea4582c7a6cd", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "641f39acfe8f9fe67215cb93e68f08e65644628f63d16db608486c3bb09f3635", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f54d9afa18fa7ebf93000b405c5a88b3a5d86b6a8ec85bf098c27d1cba8289c9", + "regex": "(?i)^https?\\:\\/\\/aapodioqsidfhsuzgjuyfsqsrfs\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f7e0801cccfca7c2856b55973ddc30224b32c8aa287214828cccd38d75707553", + "regex": "(?i)^https?\\:\\/\\/pub\\-2c7801fe0fea4bea87fbb86f4bc7c24d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "20dedb9a59d0987f1540c9ce5fd7448d09ac5496f52db9b7e988726d7bfb5d0c", + "regex": "(?i)^https?\\:\\/\\/hotvideotoday69\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6ca8aae9a6c8fdcf162ec1953cb7d3bec8ab92334eab1942e5cd6e3d4a6fd9e1", + "regex": "(?i)^https?\\:\\/\\/joker\\-2024\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9ce06e5b0cf448280addc79da1ba4f477a7df82d73ccedc559e189d859fc902b", + "regex": "." + }, + { + "hash": "eb36fe04483f05ca226a1fa571cc852ea3cbe5596a3916209a3f39a1a70b73b4", + "regex": "." + }, + { + "hash": "4176843f9293d770a964e0846645be16deb975f4a4db4bc83dc1336216c17810", + "regex": "(?i)^https?\\:\\/\\/xhnxjxjdhjsjbksksdb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "6d8ebb5d74632269a3b6a39bba2db3c8bacf855880f0c6a055e512f79fe69e6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nanajo\\.php(?:\\?|$)" + }, + { + "hash": "8666088ca0158e3ec430344c524b32fa30389ab29b54814fff05cea344e38a92", + "regex": "." + }, + { + "hash": "8058124462f9b9e8d01b390564e3cfe30226212f78baae29648684ee13b7235e", + "regex": "." + }, + { + "hash": "334b77d08e2219af9ffa8d6a56ce9f7098f794e5bab85c081c116ea419c88a1a", + "regex": "(?i)^https?\\:\\/\\/ayudas\\-rendda\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "476f6b8a5d03d6b89db93acba27e26dca810cec459eddf23565e4e60787938a1", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b34d5fd6f41b0948e6deaaa605e98b0b09a4ff574768f6c0645b297c5c8b297c", + "regex": "(?i)^https?\\:\\/\\/hotclipwave\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8937e177d7b1c17841cd1b205e3af0950a2e33f982fe57e76036702829215091", + "regex": "(?i)^https?\\:\\/\\/hypeitredirectblo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "83101754303f475cac6cee86f3bae1fd5bb2df752c60889c8e5139d0b8d3211c", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "4c3d8342b81b8d9dde0f61fcb97e74505726df919e34094a5cf72d3dfc98cbf4", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi03\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "585298178ff4b58b79ff5f2a3a3a950f820a93877b3dba8c50125c123fc5717e", + "regex": "(?i)^https?\\:\\/\\/vieconfortable\\.dozedeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7413d981d192e3c35e6543becef93962ef7930f58ae7512484358289ed49285e", + "regex": "(?i)^https?\\:\\/\\/bureauamend\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1df678ee9632c18b55e954db55dea33b8b9d00834b4cd6fd82030c80a7ce2ce0", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "d76683a1fe164552c2f83fcaa759b7a785ee2ad5b6de696e63f764709313d55b", + "regex": "." + }, + { + "hash": "9f6c29c687eadad9f1f2fd9e1da7b2cbe38f48564067ff39b05907984c5ac3cc", + "regex": "(?i)^https?\\:\\/\\/bureauamend\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "49f3694d7d4fb6f02c800729c1d201e077aeff0393e5b783ef2e62cd925e084a", + "regex": "(?i)^https?\\:\\/\\/xhnxjxjdhjsjbksksdb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c9cc1c68ac36c17d78eea94578da15bf3ddf3a0fefe3d5c510c7d0d79ac715a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "52a5babfe7f2c1c6ab0b1d40f3b275274f58cbba914ce173a20b894f70083367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "4f91e094bb233b3c6f0239e464616de6e48dce0ccb8d658168f9dbfe05f87448", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e38f56870717d83e241707d503b72a6a6529f35a452599922eacba350b8e9611", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2a48294b403bf7c5a87b1b6753395e135b68b5ef74f474978f68749a2bde2565", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "bd29ea171ba3a8b98fb4ecdf93c83101350a9a61d5f305764c52243a35c29708", + "regex": "(?i)^https?\\:\\/\\/bygoiweoiuisdivuoiweuiovwe\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ad813d991a047c86393b7d60fabc6f6d204fb6e66ad5b8ca2b69fd4508abc61", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3f118f2a21b2d604c86d32c2d8e890e7d26d9d21d9dc8ee7fcb0f7b071f3a887", + "regex": "(?i)^https?\\:\\/\\/love4youahihiahihi03\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e513eadc4d039233fecf315c8296acb2216af5747f0f98ae4921165dff5562d5", + "regex": "(?i)^https?\\:\\/\\/joker\\-2024\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "aa2a27e214914908d63860297aceb3da825cd5d9d72acef4b456f252ffbb70c5", + "regex": "(?i)^https?\\:\\/\\/g4u22g\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9dd8243ac42be5ce05f66032ceb1aede5f6433e0c442934ac006751a4a5949d3", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "3c39f203631617e62a1132a08afd28da85c1481ea299f1314347e59222516253", + "regex": "." + }, + { + "hash": "0fde6a36435d04f657c1ebfcbe05e872e61f03453acc836b0dfa64843d0e3121", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8818e\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "78b0584b1481c9de12d8c0f887ce29cafb5115345c5b26338e5b44d7fd77be4e", + "regex": "(?i)^https?\\:\\/\\/ps6\\-live\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cbaf99a2dff8d5b1b6f950e278c48582187ba31fdb7ffd45d6f81606c98d1fe5", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "a1ab14881008b42e8b174ba6341f82bf304fade912967278b93b49eac36a859a", + "regex": "(?i)^https?\\:\\/\\/joker\\-2024\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "36e4f9ce89f79c62b2c4b192e463f8fea44c2151a14fdaeb6ff907921596093a", + "regex": "(?i)^https?\\:\\/\\/instagram063806\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0328a44f123040699d64d292559d73f7a2a921daf56bd444244a13775bb660d7", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c955f873dc487f29ad64332b3adf878d66b35f82fc264b360c117f574d559d89", + "regex": "(?i)^https?\\:\\/\\/ayudas\\-rendda\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d5efcf5b99e3b8d7c0ada71093984474d6b260210d63afc27e39cc1ae547bbe1", + "regex": "(?i)^https?\\:\\/\\/aouifgdskjfguyfgkjsghfiougfsgh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "02bb843e32ab8380463317ce6b25494710c1f60310c2246e9749c02dd1b1e9ef", + "regex": "(?i)^https?\\:\\/\\/joker\\-2024\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "96775de27902f304b9a74f7398feba675e68fbce80104221e3ff92f0841f0dec", + "regex": "." + }, + { + "hash": "9c05ad00ba72af6ae1a8060095b02bda6a3992e34033cce87d61bf2d371f36a2", + "regex": "(?i)^https?\\:\\/\\/casayvida\\.saradeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "42d8c4b6f70267241f2cf5cbc809d138c626673d809a31aa16d38c9b662ec2be", + "regex": "(?i)^https?\\:\\/\\/freefireredamrewardsfreebdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7084d3a2180b68301f28974cc6c70abef4621e6a2fb134020cd219f87338f93c", + "regex": "(?i)^https?\\:\\/\\/instagram063806\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "616401e1c937676a20d59a602bc4a7408e6a28f9c583e21e13e833b1d28bc7cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e6fba122b398af47db986b45607cb50fdad23f4ccffa3de5b8a3a43f179c46b1", + "regex": "(?i)^https?\\:\\/\\/todayhotvideos69\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "64c9566c94fab12e9cf73e35e6d1f02f608d7dece2cb741385ff5d15f89b2de6", + "regex": "(?i)^https?\\:\\/\\/hotvideotoday69\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ecdc19ee04473d41bb4038bfca052a11994ca4690d57205c3ea6fb1b0eecef05", + "regex": "." + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "6e41c35d84618da7f51b0b8da8e08db716025fa63b79a335b542db44f7b16e67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "152107d7fa3ff2d0a7d976409670dc46bc76f5d51a9620f584b71f537ea179d0", + "regex": "." + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "9e7b194695354483e57e04b223a5ca72bdc73d232cc7bec46a3e328892675e64", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "063a52968780d9f4e28171ba3d11bbab052b8c0d61c0c6d6dde4081fc0b05bca", + "regex": "." + }, + { + "hash": "f6af3b4f806609385fb34590cf0b2b59e843ac866e66ca49cdfc60e930eed790", + "regex": "(?i)^https?\\:\\/\\/hotvideol0vexx1h\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1e605d8252f6b8ea0f205ee03eb79cf169766437e14b3e10c12c2ec197624d5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "0da324109510ff79c2619ce22ccb987a3a79dbe96a6c4f0b7df7c8c0ff631ee3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "b678015869b439456ff6694f2fabe44624c9c7a9c9e5e3a77b58a3fb5c6bb7f1", + "regex": "." + }, + { + "hash": "0be66d408fed5d40480552681701ad7f85ffb7449bfdd2b2aae4e647a48b9ea2", + "regex": "." + }, + { + "hash": "b5ab5f7aad15680b778e187604bc751e72abd93af03a3de3c74abadfe1b1f86f", + "regex": "(?i)^https?\\:\\/\\/oiuytrezertyuiouiytezaqsdrftguikol\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a39c0b514699c7216e9a8450f43ec7f231c035b798cf861562945ea109df7e6e", + "regex": "." + }, + { + "hash": "2fcc5a43f97049aefd86b94d649252cdc3a35051c343f66c139a2c32eadad2fe", + "regex": "(?i)^https?\\:\\/\\/xhnxjxjdhjsjbksksdb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "52b0f7976d3fdee6a17f5259b0cb7428c4267d689652751a12d230765172f973", + "regex": "(?i)^https?\\:\\/\\/g4u22g\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b8d6499c13faeee018bba6eefec0221cb8ff11d6bc39a44a97cb67e749f93829", + "regex": "." + }, + { + "hash": "82c5cb0a6982b326198853454e3bbb538c5741aa6ccf27113e2203f178ddfdbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register12332(?:\\?|$)" + }, + { + "hash": "127291aa8d3fa21623547d0f7e1d566d31911043e7e215e72d5b7f20678a619c", + "regex": "." + }, + { + "hash": "e4ce9bbf90325141c2a9d7b928adbf6558f255f79b2a53e7a85cf283ab91898a", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7c929e047bef2c5babb80f1367d53e457259e5cfc844029def2a4f4829961584", + "regex": "(?i)^https?\\:\\/\\/hfdjshfjkdkjscv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a4bcd38347475ce269c151114bbefd5a76c394316b9fd9b51948588d157dc329", + "regex": "(?i)^https?\\:\\/\\/uyrygftydghfxdtyrdghdtdfch\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c20735ce846e34c30c0ecf5355d9824817b30f9a36dad30fab04604ad145fb78", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "3d0ea7e4e62254ade5d2032c3aae3ac841f843adc75160d4dacdd5131b5ac7d1", + "regex": "." + }, + { + "hash": "914fedc54089d4a693a3a616f047a4b8ced1518250098b437da737791eb9a6cb", + "regex": "(?i)^https?\\:\\/\\/hypeitredirectblo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "86f69bce8d8b87d0b1c396f00827f807e4d88b70f61c85f269f4ce5214bb75b5", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "5d3b6d65ae3b6128df74669a4553b284c256cd68d0df783c8671fa11464c8169", + "regex": "(?i)^https?\\:\\/\\/v\\-bucks\\-123\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "82c5cb0a6982b326198853454e3bbb538c5741aa6ccf27113e2203f178ddfdbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a691b4f679a0bd8c550a05834d3fe20e21193943c823efe215a26729e6fc85dd", + "regex": "(?i)^https?\\:\\/\\/ps6\\-live\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ec0c99cc546bc18b737e4ff6c2d884bb5b22a069f407df309eb99f2ab1e84cbd", + "regex": "(?i)^https?\\:\\/\\/978784\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "7e4c9f0a45e83d702c884458c6436537088b5ea61e9bf46cb0aacabf4c54c6bf", + "regex": "." + }, + { + "hash": "d7c5a4af432a34680ff583069c779ce1ae542c8ecc2cf3dbb06ad824855e789a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wis[\\/\\\\]+clicktime[\\/\\\\]+v1[\\/\\\\]+query\\?url\\=https\\%3A\\%2F\\%2Fsites\\.google\\.com\\%2Fview\\%2Fca\\-2k\\%2Fhome\\&umid\\=155450f5\\-c081\\-47d3\\-bf4e\\-d2fa5f7f2004\\&auth\\=215f1a6ecbf033888ef4204498c1bcb4ca577ef8\\-22cfda50794a2252cd75eaebf806cec98881da18$" + }, + { + "hash": "d3f60e6858f271036fd1ceecf1aaf492a5c5406b6b8a0ee239ef438f53a11960", + "regex": "." + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "20faba408fc3dc0de4e6669b6cdb796e27da7cea15d31738eaa6bf9c5057aae2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3b30de5c\\-cced\\-4ec9\\-9dac\\-6355876f8573[\\/\\\\]+2\\?tid\\=fd02f91b72dd45a6b6e3b235eaeb510c$" + }, + { + "hash": "13aa13dfed5f728c5ddeb7a93c8137905ab8ab17eeb3190fcb2de84f16588695", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "529b596ecf84202d86c8b3abd117a50b6c2fd45ded0821af06a50045ee5c5a9e", + "regex": "(?i)^https?\\:\\/\\/trendyclipville\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ad45c2535527d7df529c1191844b44d70202e8f103263bf1748e891974453d68", + "regex": "(?i)^https?\\:\\/\\/vieequilibree\\.nasadeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2503442507fbaab43bb3cab0ce8ff1f562b289153cfcd61d285e41f26af4c7f0", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "c88bc2605b08b7895b194f02f3e567b20a5d3b228ba71fbab5457aa2c2d7757e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4cec676ab20771b6b33fa1e314fad8ae1beb281c5387c832cc6c8d5741cceb8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "7fcbeacf7dc7b552a2a657fc44e7bbd17c06855b042064da1056ac2211ba8926", + "regex": "(?i)^https?\\:\\/\\/brown744329\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "354f0fce434e6334756ec07f1ba6616c814793023f7d8abc4c8d81e37611f294", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bc0d6ab0af873b4c6b45670b8b5740eab6fc8637a8752cfd557e7f456f932704", + "regex": "(?i)^https?\\:\\/\\/ps6\\-live\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8d75b9f16b04a6a2f3a5a5cb2a12a62816bbc85b72f3db4ffc985a910fa3b66c", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ffa9ce5caa1c19874c7e9e82724c610ad528f2a679b1b3b6e9674f9653f19b0e", + "regex": "." + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "8651d87b4fa650dbc66b60ebafeb951329970c8bfb53e83597b6241e803271ac", + "regex": "(?i)^https?\\:\\/\\/bygoiweoiuisdivuoiweuiovwe\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fd17c9a30a6fa279babfaf64bb714f04c02cb7ee82e0392f9802f4668f4e0570", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxredeemcodes20191\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8a30c2eb8e6196c2eed1089de3955b7dc14c13f7ec3a732fbd801dce40f0fe7d", + "regex": "(?i)^https?\\:\\/\\/todayhotvideos69\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3ed54e955b7e323c465815ee4eca1aedb67db17b111d5c599396f90bc4ae5e2e", + "regex": "(?i)^https?\\:\\/\\/g4u22g\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "76385651599523d04cc38018c0a2f040c451fef6495b4a3a790b064a15881788", + "regex": "." + }, + { + "hash": "90934a4a4d9675c87d4a58594f0ae8c032407a6a06b49ec9f18822050d501036", + "regex": "(?i)^https?\\:\\/\\/ghjggjkdkeorhufbrj5564\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "edcc466959590e79c8608e1211bb720161e81c648b6901514f917016d201a5b9", + "regex": "(?i)^https?\\:\\/\\/ayudas\\-rendda\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "ceeb311ff58888aa4c747adde2e5a6f3e8b8a3e556881d4c3f0422224447c1dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1d814\\&id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "ed7fef87ec1d090180ceb9b5d976e5d1e545fed283b13598ba41154306ec8ea2", + "regex": "(?i)^https?\\:\\/\\/uyrygftydghfxdtyrdghdtdfch\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "87de23fb716d599d1e7b663d9f24d045a6b22d0ff2ee9df937cd2a331a15db31", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ee7bc159205fb70e433fc197edb9b1d2439f70a5956aeadb4e82f20c2de84273", + "regex": "(?i)^https?\\:\\/\\/instagram07387\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "4f42b8c9872574a80bcb904c4ddc9cf741a55f4160a33ebcaa546f3cfe9b050d", + "regex": "(?i)^https?\\:\\/\\/hotclipwave\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "6a790ef041e6f4165a83393ec6308fb13591b62d95825398d35cccad04176908", + "regex": "." + }, + { + "hash": "f5ed04fa3ae748a43e361dfe1e78f1b8288353d3b1506edaa6226f8b6a4c5dce", + "regex": "." + }, + { + "hash": "e4afcdeac65332b589a96604ef9c8bed05d8c06f4fd71dcde501ad6ad604f2de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.VSkZUn7GsTQjmsvIYelykACOj9T1q7S8DmiNYfkdmusnuhgDzXC72e2dajBb2RkEWDWu_ajGsQ1omqfAbM\\-2B3z1zb\\-2BPvFO\\-2BlJSRUQ6Wd1kwcKw0\\-2BrqMCTKe\\-2Fn1YJGQIr7SWq9cX6MIZYRchkOSxA7lz84MBu7y\\-2FY6W1bqBaLCC1lQOfGX0\\-2FjkerYDtvQii3PLUwbHGfjy0QABBPlxtEB5VGCz5j1LPff1YMctaHhBCKiVbeSP46Vl3g9Kv6vOGzvFxOgBs0G9n5\\-2FVeCcfzo3wPhsHRs0Iu1D3rkAtA2HImCfnjISWxz\\-2BnL1aBSR\\-2FwlXjtNUz7YG4n38eeqTKkhuA8DptC5nIYHvw8bUwaWCGeRALZTJI5arTlVUA\\-2BgulU3hSGbngYDugHh5KuoVmByVenajPMFBu16\\-2FIUr079u\\-2BmFURPg8MV7JNgBdFUzLVgzGY4NWZ7ZtTEWhJH26J8h1GMprdnv8o3MPhm0zWumYdwPVPQrzwLdwTf7zQ4\\-2Bn3bb4CsJznCPszS3DmbQ5E\\-2BUN8w8Er\\-2B6U\\-2BZnGlcHXpeJdD\\-2BUDcHe\\-2Fv2pQj7\\-2BhIuFcqCUAgkpm8LD0GG4MQcX3hhpJnGt3Os\\-2BU6X0nSlt5LPDpndjxV0xh50bOf8jHWkucQRG\\-2BNHclxFaJbo\\-2BCFuCspaSQaX6KONyCARXsC6Oquf3SSsU2ZC3CQNpJoCnBvcUPdWcof1izOI2XJRxsl3lzVe\\-2FqP6T1pj98NZbbACtLd4LUchRL6jrATKE\\-3D$" + }, + { + "hash": "05b5668f281cce4be08d37c12ffb8bec26d133aa2b0f8cd953586bc0d954fda7", + "regex": "(?i)^https?\\:\\/\\/joker\\-2024\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a718f28c5cb74c669cbf3f5ca56a29abe911265f6f20b7f52b412bc2db704702", + "regex": "(?i)^https?\\:\\/\\/msngrcall6758chat\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a66e3271479a07c07963f81aecf06b875972f98f989452ca120892bba589aa65", + "regex": "(?i)^https?\\:\\/\\/pub\\-061971e7b2ab48e0a86ad5b45ee6492b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0cb2ca703e3ff7901e6f86e22ee41dd35f3b8278856ebc0b05ed8bc8c8849c20", + "regex": "." + }, + { + "hash": "c6c3d4e9350b5cac786e22737c78e231824a23bb9439db59a5fd1b37a48fea6e", + "regex": "(?i)^https?\\:\\/\\/todayhotvideos69\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=estimoveneziano1379\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "a00804fa6fd11ebe971f940aa73c1a259c370bf00d1f20cbd46abd92b6eb2dc2", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "91f5d443c2a3855d374c6aafd42e900221c07fff5347b8207b4d18de2d2f4837", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\-gratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d776a0c79fc91291f545d1fdf6dedaebfa363e648e576c97f446c8c25b59b89f", + "regex": "." + }, + { + "hash": "51c6e11f46016e2e91fe55e51e3b92688d0f8573571473bc60448cc114aa5703", + "regex": "." + }, + { + "hash": "c66c3d65c38c9f7c4e6b62f2d8b0085656ee98ce7ce304b5fcf8eb927d993caa", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4f1749e1d1176128ea91e370d4193b8e227280c50ff0f759ab956e40bd2023b7", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-camera\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "714b06cde757cc483f63451eaebdb3dfae92d9c0f5f5416dc68dc39b5e4864e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register52968(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05fa45ed2513ee1698d02443a9c7ec74133dcb32d0acbe61eaa611047a7962eb", + "regex": "(?i)^https?\\:\\/\\/robuxcardscrnx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ca636a1d9eb67754350f79ff072d0a6d9e848385bc4de17190956e84dccd0110", + "regex": "(?i)^https?\\:\\/\\/zzqqxxzzqq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "cf0663f2fc356bb7b9842b403e0c13d50f819046337f756fe89c69de2e457c5c", + "regex": "(?i)^https?\\:\\/\\/zzqqxxzzqq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "08f5156eb78222a2c82d3d346642f60bf50f4a7e08216994cef50340b7e76e49", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7ab69\\&id\\=worklimate\\.it$" + }, + { + "hash": "11a7be4e2ba9c2c662b857023c99e0e02a23a6087341975c9180a4a66bab6c3d", + "regex": "(?i)^https?\\:\\/\\/hackdrillingsimulatorroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3baa2c737bab563900b1e5b83b744cb5785a002af0d7a0d415620618a95ef124", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4de0beabaa10abe672f154721449e88b7b1ceef56790222a755398bdb4d7a4d1", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9151d3a99a0d684a30bd6a6eeccf267a70aa238e537503399c5b5944844ba3d1", + "regex": "(?i)^https?\\:\\/\\/lcldetecthumainweb09\\.firebaseapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "56e5fbe4a935a4ae6de3e3646cc57efdb3dae208ac9fa5b755c1168a5641c9e5", + "regex": "(?i)^https?\\:\\/\\/ffffffffjjjjhh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a491bcb0a33c16d9183c1e67f1a04f474ef1add6f732d5186d033ebe7250190a", + "regex": "(?i)^https?\\:\\/\\/amazon\\.iqxyabrfi\\.com\\%E2\\%88\\%95eoghsfr\\%E2\\%88\\%95tnugkhwzy\\%E2\\%88\\%95drampvfbba\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fewjomy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "94b6a1f39d1b5e7875378dbeb93958cc8d75cdcba5c3e511441a8f9cb725b04a", + "regex": "(?i)^https?\\:\\/\\/robuxcardscrnx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "77e9e88f361441575c2d77c28dfcd9203c38ea71f5515325141e9fb4658d2415", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1ic1h79r3[\\/\\\\]+l\\?btd\\=dHJrLmNvbG9ueS1zY29yZS1yZWxhdGVkLWRvbmtleS5ydW4\\&exptoken\\=MTczMDkyMzM5Nzk0Mg\\%3D\\%3D\\&lang\\=en\\&lid\\=7dd5a582\\-b0d4\\-4d5e\\-8984\\-002c286eefeb\\&pd2q\\=YTE9N2RkNWE1ODItYjBkNC00ZDVlLTg5ODQtMDAyYzI4NmVlZmViJmEyPTZiNGViNThiLWY4YjMtNDhhNy1hMGNhLTA3YjYzYTEzNmY2ZCZhMz0\\&r_countrycode\\=US\\&r_lang\\=en\\&td\\=dHJrLndlc3Rlcm4tb3VyLWRpcmVjdGlvbi1taWdodC5ydW4vc253ZGFydGY\\&lvc\\=957c6b9e$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "a5f33bc6ba7ef67105b5bd89cdc324fbf5c845834052ae7dcedae1ea7025dd70", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9914ca2c8572e30c5b1943c103c6d43ea4d494ff50b9a1e521df99b738648acd", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "95aa48121ed3c67fac541d5081917c4ab769e2a095f3408538d6c9bc977a4e10", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4583e50f7b7483c4d133639598514012f60ecf9bd84689bdbaa35f5c910c14c1", + "regex": "(?i)^https?\\:\\/\\/ffffffffjjjjhh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b34e58cbe276dc0c048b41ba2f654e32566184148d0e5ccb0efdaf3f001b6df", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5dc93a4c7a3723667537d912eb26333308a5e72a3f5c12a9b77cd9adcfc4556a", + "regex": "." + }, + { + "hash": "46f11659d8dcb3ee106a37123fa036ee2256b9475a40bf03a0ec7042038f01e0", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4f00a919f6a2d314580f87a32f7308d56a51a11a231bd50bed8ed4792e70bdfe", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3a679e83626012e768104e439f8a9b091a09a447ff223f82479be2a7590c5a24", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8c368f4f9740fefe54caf6cbce656e467f5f09b12243371c0d1412e7d9d33ed5", + "regex": "(?i)^https?\\:\\/\\/men\\-webcam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a1d82bcc9a8fa85afc2ad7d909b2795f767d009f8a1813f0f128f4b31d29595f", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "a01e92e5a720b8962c6965cc13560195579c5d0a5059494257001374eabef8c1", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "df41414c101ab1f26ed00d31e0712b8d7ac011e17c9a20d879d9e4cbd4a4fe61", + "regex": "(?i)^https?\\:\\/\\/men\\-webcam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "68fc20b9bdb90f0508a7622938c04ef9c459cf63a9b6bf8a9c537feaed41262c", + "regex": "." + }, + { + "hash": "17367703decde92da01ac88656fd9273a8de863168656fb7fb526ce994332af9", + "regex": "." + }, + { + "hash": "ec5b42497f7700c2eef42d1778ca124ff171fbbf5fb024fa84e0bf7da040eec0", + "regex": "(?i)^https?\\:\\/\\/exhib\\-cam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "794a722f5300d8cb2dc34166137cff2e65d78b132722189f56af7e650cc2a9d1", + "regex": "(?i)^https?\\:\\/\\/livecam\\-x\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6c52dad7f9ed794bd20b4e7209dc1c5d892e45e008d4afc73177a3661b0bf9ac", + "regex": "(?i)^https?\\:\\/\\/men\\-webcam\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ba82c8c3296cfeb40ff841062f79003f3a8892bcef8e52d57b58035764275b36", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "230c12704eb6c4bf53e092f52fb446f1949aff672488c467d4702ebb5346c1a4", + "regex": "(?i)^https?\\:\\/\\/robuxcarsdex\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c166913254296ce5ddd924429aa27301df0f6c6c4c9060b7495d24c5c522359b", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "07d7b2b30e870448c5e6846ab8e9f386505444f76d9cb60063e31fa463ef97c7", + "regex": "(?i)^https?\\:\\/\\/exhib\\-cam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4b3d4342f63c0b6fbca040145c29c9e0599e5d0c0a2c27f714b3ee2c435c74c8", + "regex": "." + }, + { + "hash": "77e9e88f361441575c2d77c28dfcd9203c38ea71f5515325141e9fb4658d2415", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c\\?btd\\=dHJrLmNvbG9ueS1zY29yZS1yZWxhdGVkLWRvbmtleS5ydW4\\&exptoken\\=MTczMDkyMzM5Nzk0Mg\\%3D\\%3D\\&lang\\=en\\&lid\\=7dd5a582\\-b0d4\\-4d5e\\-8984\\-002c286eefeb\\&pd2q\\=YTE9N2RkNWE1ODItYjBkNC00ZDVlLTg5ODQtMDAyYzI4NmVlZmViJmEyPTZiNGViNThiLWY4YjMtNDhhNy1hMGNhLTA3YjYzYTEzNmY2ZCZhMz0\\&r_countrycode\\=US\\&r_lang\\=en\\&td\\=dHJrLndlc3Rlcm4tb3VyLWRpcmVjdGlvbi1taWdodC5ydW4vc253ZGFydGY$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "f5ede28b34c7c37b21af43bb68ca1469c0ddee354243615a8226a3ec460c8f64", + "regex": "(?i)^https?\\:\\/\\/gulse\\-birsel\\-immediate\\-hiprex\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "5a348ef9e6b7cbdb4edfccb5407b11c277bb09aa10fa791956e467f1e264e71d", + "regex": "(?i)^https?\\:\\/\\/chat\\-charme\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e78dc1cfd00f59f00994d5be345baf592218fc92284c3e6416a0291c3e4c554a", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-camera\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "35853a7d87bb556df0688ca1303fa137d32c13b42de35a046c1944be2b4f72e4", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "88c76d026dfe177a7cf8d31231d8d6587124c8565fbd91ceceeae5764ac0d2a4", + "regex": "(?i)^https?\\:\\/\\/webcam\\-exhib\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c0701d2f87e0a5ece8fb0903dda8a0699379cb67388dc044d5913ed81940f6c0", + "regex": "(?i)^https?\\:\\/\\/fffgggfffhhhyyy\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b875091258e6976c27fe005193f50dc8b13aaf4c42a98f026cacb648d9fe362d", + "regex": "(?i)^https?\\:\\/\\/exhib\\-cam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5oob7k(?:\\?|$)" + }, + { + "hash": "30ed4cf64062aa869d36e7ba89b25352c63c30e8c93dd18b0e9f5010c89ebb3f", + "regex": "(?i)^https?\\:\\/\\/comdireecetee\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "2a24155ed9a45d75605c10130404a3f171ac22dc61531804bb4a21ad5afeb5d0", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chate\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d4363fe3eda6bd2d217bbc7f69519a3445a20664633303971707dd868ebd7b4a", + "regex": "." + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "8995cae30e673af500214c99d619caf697a4ef5b5c7c28bc583a56e9c9c7c368", + "regex": "(?i)^https?\\:\\/\\/deliciousmeall\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=giskovcycles\\.be$" + }, + { + "hash": "243b983299a174eb9c08a40805cc014534b907d31d31497054113ddcd93760cc", + "regex": "(?i)^https?\\:\\/\\/webcam\\-exhib\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "0da3488430052a7c676357b5155dd7a6754ab4bb60c8e459decbe520c6f69161", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "df433d729c4322e4c6e4bb4831e90f037bbc727776c7e4e0f4aa70e2d643a491", + "regex": "(?i)^https?\\:\\/\\/www\\.3659vip4\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "714b06cde757cc483f63451eaebdb3dfae92d9c0f5f5416dc68dc39b5e4864e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register52968(?:\\?|$)" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "da13527feb29615143671264b20f6d19c10d04207370b06682fc88fd1db9c629", + "regex": "(?i)^https?\\:\\/\\/servicechrorusorange\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4a9816dd2b575a4b99a08819a74c030da51b4de10ba395e027da3febd88ac564", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "cac2f57481fffa1730bfc7abf4a30de2fecd3ebf319b0ec1faa8596ae7404524", + "regex": "(?i)^https?\\:\\/\\/chat\\-charme\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8da63d20cb2ddd0ec18830eafca031f5aeeacf0ba4c9bfbdb8b30f5ea7f54197", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fb3cf3244d4a8ac3703317532bf51fa6450322441a19e0715affb36edf040cef", + "regex": "(?i)^https?\\:\\/\\/zzqqxxzzqq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "858d37b1f66a459d5ca1ca2fd5459f965b22a46e30a4240dcfc5a0b3da74a0d2", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0218f4486d3f9619d3bcf6461395f9b0aa697265a6b9788528952103442e8a7c", + "regex": "." + }, + { + "hash": "fc20a015cf01ea86e71ce77f79db76de69780b8500d59d0c77a95a779d13341e", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "58c01d565ee500e6233c906a367614851cca52da4c44be4070cec07e43300880", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d1923\\&id\\=worklimate\\.it$" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7df46ffc6ce82f9bb0ab27915e290bf9946a345d742871cfa773228e0608a2b1", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "63adc41471c5a122b565580c14e2db689bbdaef524df8a1b9021021db0dc407f", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "a7c501398b235b2cf7c461f254a71d6a74403c00b40a1a176bfbad1337d3e2d7", + "regex": "(?i)^https?\\:\\/\\/men\\-webcam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "0ceeecf96925ef7f09ea2c275e450009813bd27abc2f1489bf260627ddd1cb4e", + "regex": "(?i)^https?\\:\\/\\/robuxcardscrnx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5f891e58e6973102ffa15f40b08c78be610d8a4465c14cb46ffeb35a12103fcd", + "regex": "(?i)^https?\\:\\/\\/livecam\\-x\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "4bcb62a6fe7e1af0904b271535cbf520375153c0163ea38bd8326f6a09bb15fc", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "eb90b6ba85f9c4c5b44e55080a00d5cfe81c5ddf9c0c5f9a948f486183390a33", + "regex": "(?i)^https?\\:\\/\\/savespalestinej\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "56e55ad11d358c4f0cc656f3ad45e1b7e280d52ddf20e57d90d1367186df9f8e", + "regex": "(?i)^https?\\:\\/\\/zzqqxxzzqq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1f479e6606b04b8894a3382e665fd40d191d4895ea01e375b0744443e8f0d87a", + "regex": "(?i)^https?\\:\\/\\/livecam\\-x\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "fb028cb0b091c25b7abf3365c8e14913ae4eb10c4c8bc95ff3f201262e8b5f50", + "regex": "(?i)^https?\\:\\/\\/dayamendefreefire\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68bdd8fea2d901a69e354037a194fb0a1a8a2936859aaf951db3294cbbddd210", + "regex": "(?i)^https?\\:\\/\\/deliciousmeall\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "96e8bdf0dbeee82dd0a5d707d81a90c71bb89a9237b9889ca24c4ab982adfc79", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "cdc994214f48b14e927524cf6cf108e5a8de73aafb6f152cf03b8f3b64c92727", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "0da39765c6e57da226d1af91c963782d00d383d34ca9fc405c7e1013c2abf74e", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1ce6ba34b760fff3c72a89195525a62b501381e761a411f6180bf60a05c5ea5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+unit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "419a940143f26b3a5e6f34048d8a1c1184d7e48de306d2641eb5a6475ac06043", + "regex": "(?i)^https?\\:\\/\\/ffffffffjjjjhh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bd509b3844f4ff485252c632679a832596d9eea289cb6ec7e8d809de74413d99", + "regex": "." + }, + { + "hash": "08d4a1c9569528aa186f13e3402650c359da57014a823223a1de4ff0f4bbd0ea", + "regex": "(?i)^https?\\:\\/\\/deliciousmeall\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8b607324ac0d89e63a1bdb9a99a655754056b45c72e9c710c96c65f9e4bb4ed0", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "dfbe3c3bb382484aa96050d9fe60ffa1446a6aa872e1d71917f5babcacf2beb1", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "d7ff36b15d9db3d7c0463848148d84b81870f30af0773df27706c2a784be879d", + "regex": "." + }, + { + "hash": "bd6b408453e55196c37fced7b6753ff858abffd0f66b50a172e6376a28c8cfea", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-camera\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d3bcf34969cd55e77a4ca56423f94438638a29c0b9922f88ff22322df62e82eb", + "regex": "(?i)^https?\\:\\/\\/chat\\-charme\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5e702edf69dc2d3a9cbe49ae489156ab474fa4ccfb67b9155dd00cca45d6de8d", + "regex": "." + }, + { + "hash": "6c202d66d6f06c18e40e07415aaf0272ab20f51d13c5f06d7c5877d59d4d9f8e", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fbb1bcacac7c46e03ff63dddaddd61da3cd1cd33c9ef48a43f773f9321aeaed2", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "98254513b627fd1fb17d647e6e8f23fcc3d1240400da62acebc3f1a3e84f65ae", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "621f3a2f563c647fbe8439ed14228d7666954a3985d50a7dac611af294b22be0", + "regex": "(?i)^https?\\:\\/\\/gulse\\-birsel\\-immediate\\-hiprex\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "46e87c24869f6826ef7a8f988267040b665be37c8764591c4436041c928de4ce", + "regex": "(?i)^https?\\:\\/\\/savespalestinej\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "94747d3fea611e4e87f9fc2647b4c5bda63ce25875eb9d2acf68983e50c9ae47", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "ebaec33d76d392dd7c50cbd13b3df89d9991cd892bc26281892711baecfdbee1", + "regex": "(?i)^https?\\:\\/\\/xczzvznbmgh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bf1f1e6ca9542805cdfbe5ff08a19574c4d4f0071a2177c88b24cfe21e67925c", + "regex": "(?i)^https?\\:\\/\\/zzqqxxzzqq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e8702af84d64d281d5f854d4a28f21ab2d4deaabea8e361b0f2ae357783d5b3c", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9e59fea0da629e07b0fafe1b6b8562fd7bb09095bfa9e60e1e9237da15e1b253", + "regex": "(?i)^https?\\:\\/\\/fffgggfffhhhyyy\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c3d5f6a87f5456cafc432d9809cf2801c9a943ea1115aa0ec6bd68e3a197b011", + "regex": "(?i)^https?\\:\\/\\/ffffffffjjjjhh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "8cc9b28e39d742e18866dd2605082b2ea9801fb4ea000fcb7251bf0637c260e3", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "46f1e7949e55c429ca51a5b6cbe6c438750658021c12e8f4cb1342d87cf0748c", + "regex": "(?i)^https?\\:\\/\\/thehahaheka\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "29b194312682cfa15d8dce62e68fa2f046404d35c1918da85104287c0b984ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f85aeefad992a3a7e73b6f24d542eedae3552b0868138360cc5f7cf80c56875", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2495c74f0e46a137d6ff82a77a80f7648075c83defd51ff48de39ecdb22dc3f1", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "24a248a10b0d92e0b550e136721ed9ea2a84490c4e599ce283147cccae73aa44", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3e62450c268301c9eb45a64f18111d470dca0af2a0de6ab81f4d783bbd9feb43", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b1b576dffb983a22b157f62e2a2fdba37cb4414dd2957f48ee879eced542c91", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d1923\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ccbcb853043f1ec4062a4dd741c7cdd95a0623b2bd54353f6f07a24a5deb1326", + "regex": "(?i)^https?\\:\\/\\/savespalestinej\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2714c11530deb3ab6397171bfc6c53e8abf853ed8c6dc72ff42d17f9a53af9b8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-exhib\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d7cd5d5c56716fb83738a0bd49e9479306611ac5bc50ff06c4c41e5138862cd8", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1bf08c63412b4a22b1ce5b93b30b0d41f36f01c4b032b25f57bd8ed09b009920", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4c3505cfbdd9d4db42eca6e9171e184e566a727d10cbcfffdaea499f3c2a3faa", + "regex": "(?i)^https?\\:\\/\\/chat\\-charme\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1f48f9313b45e541aa664ebdf5d137cd674f5c062a5530ccb83e84d8f42b070f", + "regex": "(?i)^https?\\:\\/\\/savespalestinej\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "87aa113010bb4db5acc60580155e0fa606440b3e71941bc177990d8c7c0d32d1", + "regex": "(?i)^https?\\:\\/\\/comdireecetee\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "3ee7bc17a94d3d1eefd45ed57fe59eeb48b10f0f677e1e5a0f12e8c737272bd8", + "regex": "(?i)^https?\\:\\/\\/zzqqxxzzqq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "39f6700522aacb46ba8a65d92b2605d88cdd5dd8482bee70def8ce6d29f05a26", + "regex": "(?i)^https?\\:\\/\\/amazon\\.kcbub\\.com\\%E2\\%88\\%95ucblkrrarh\\%E2\\%88\\%95egkcep\\%E2\\%88\\%95grfplh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tztthgcs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "68168f4111137de4290fb9ae63fa59ce89c381f4f8c43069b49c3d108d39e1bf", + "regex": "(?i)^https?\\:\\/\\/fffgggfffhhhyyy\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "1bbd0e4d53c8c068ae2be565405a8dde58d90c0ba14e39c17a513c67ac84f8b4", + "regex": "." + }, + { + "hash": "ff7a586401fde6b02e5cb68ccd066178ea7617a85e5e279651f9f1bb275d1e77", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chate\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "94b64c72b680c6afc81de21b6513c1dee6d02637c604aa01cd1b8ceebbb513da", + "regex": "(?i)^https?\\:\\/\\/reb\\.txx\\.gv\\.zxpb\\.azarexpo\\.ir(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "c7261a48ba77cca90d30db5f28a64c357d2d18c41d9a44e7674c725537562e26", + "regex": "(?i)^https?\\:\\/\\/exhib\\-cam\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b0a5a83b291ac50bd9ef64f71568a21c4da570bd0d84573a243257fb3b9fdefe", + "regex": "(?i)^https?\\:\\/\\/thehahaheka\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1969eb14412c660266d63a4ec08685e7b59faddbc8b936cf0ec2eecb88717f4d", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e9eb8b4a24882df86fdec9efc7cb80430093ce9703faadcb544d924b9669a2d9", + "regex": "(?i)^https?\\:\\/\\/thehahaheka\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "6156a055ac83303bc95c3d54febe37cf68dab4e34f083b57b6205b90952e5da3", + "regex": "(?i)^https?\\:\\/\\/robuxcardscrnx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7ab69\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "4d446aa8efbb9a22431ef945659edddc6efc8360d0e994da62bd925d55f0efaf", + "regex": "(?i)^https?\\:\\/\\/robuxcarsdex\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "09456806d8225b47435e0a45c1a99e7161e80715bb4143fd5ce30f8daebd7e07", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "dfb7ae6fe8dd2e0eda80ef1c73b28a6a84f516503101eb93a8ab344a65e84976", + "regex": "." + }, + { + "hash": "9a2da80e43f9aa05c154e2559da26237786a1c4f157b39dfb359d7b90a95711f", + "regex": "." + }, + { + "hash": "14c7691e4c68aa5fccfda38abde2321e5a585e6455d9a04b65746b957e39def4", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?electro[a-z]+\\.babandeal\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "6f7cadd649d89c4702b446cae5e054eec680b07aedbb20e5c225f18e82e90c50", + "regex": "(?i)^https?\\:\\/\\/privatepicsonzoosk12x\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "7d0673f6b6a12121b78b267cc09cb054b57d85f3a17445836dd9be8f00f33ac8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7ab69\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4b226bb6209168ba4aef1fcb11e56e12c5d7dde6426299e9d2f85fa47d3fe83a", + "regex": "(?i)^https?\\:\\/\\/zzqqxxzzqq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8affbc3e98070b48070bdb7431378a3477bc80757435c49e905f9576eff58a21", + "regex": "(?i)^https?\\:\\/\\/webcam\\-exhib\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "19ac307d7f50825f46bd3286d4f0c387c0a8ae20c4b4bd7f89d1f99aae08279e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.lwahkat\\.com\\%E2\\%88\\%95fiybl\\%E2\\%88\\%95yvszkznak\\%E2\\%88\\%95udbkgw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=lcckjjcop\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "6b72c3adc9a31adcc4c56e4340b7f3d48405a5c970e492a882939d3499e41055", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?1eb09\\&id\\=worklimate\\.it$" + }, + { + "hash": "68b8a140cd56468123a51f676737abf31e7a849975dfd67f6271002ee8bfc993", + "regex": "." + }, + { + "hash": "60103aba3164bc5922acbbd187289ed5ad1ca957901903dcacd6955599441548", + "regex": "(?i)^https?\\:\\/\\/thehahaheka\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "65498f51ae38b16f7a035407392e7a8ae5c27bae6f57b78f7b94dc405cab2eec", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "14b25e0c0cecbb7e0fa77d68a3d92efc6ca4869d27c6a4290294ed6f30f57eda", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\-gratuit\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b59199d54a7f5eb09a71bcb777810ec2d6965d328c619013f01e0cc0e7513d3a", + "regex": "(?i)^https?\\:\\/\\/savespalestinej\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?21993\\&id\\=worklimate\\.it$" + }, + { + "hash": "b2add13a6008c156ac9626abc678baba9c7c5cf236257ee417d82cff3a2f76fd", + "regex": "(?i)^https?\\:\\/\\/pub\\-87589f1ef1fe4b8f87ab2c3340dc6aaa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c6c3da144a4c0d52efeca5a39e221d52b2a4aa6209ae340447006765de89db7d", + "regex": "(?i)^https?\\:\\/\\/currently8943\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7ab69\\&id\\=worklimate\\.it$" + }, + { + "hash": "d396001addb27201049c07c05531da824c2db633195224bae2d0d773becdea50", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "64d18cef0a8abbc568d2f6b72946ab62719fbb8644e9f839482b7f4040b990d0", + "regex": "." + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "9f04bc154f9dee36cc7811facdd616e8cbd3b262917dc4477b47c2b401004859", + "regex": "(?i)^https?\\:\\/\\/comdireecetee\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "235c134b505439bb91272bc32f6cbbd16359c221d59bf604281a2afc7e4b0b62", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xol\\.zovek(?:\\?|$)" + }, + { + "hash": "0187ac65e95bae89d12c7e6010f8616a92b1d65727cd4a955c0466daa0f43184", + "regex": "(?i)^https?\\:\\/\\/zzqqxxzzqq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fedc45d7c7bf0b82a9f044729cc34a5e2f37c338777495a8cdfc75751656ab02", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c324d5524702986939b9f54aa418cb557566053306238f1ece2da8c45e963fb6", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8da655d6dc3c6c27fd2a7335b53d3bb8cc67b0b92cb909347f828512be17f8fc", + "regex": "(?i)^https?\\:\\/\\/deliciousmeall\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "13d263db95087f51a28de37a6588b8d9ee61da33a07551c0a2b2fdd9fff328eb", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "11de45866734451d2f938fbf58c4bf1d1f3352ccb787223bc514b956d1e43d1d", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-camera\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "38b407eee0a90055062da59ac75419e2e292a7a8f4d02e5b9a1c129c9a0d20f5", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?hogar[a-z]+\\.dowastore\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "b45c71c3f48ceafda4728df8c4d4d5f1eaae49dc70349c7206ec9ccc61b3bcf9", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "25b5e58c3a72a8ad607bc68f4eb5ea65cea3c903ed52be082c832f155d94d848", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-came\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3eaac3dcd20d79835cc9cb460462fce8b4b045066b79691107131dce03fe14a3", + "regex": "(?i)^https?\\:\\/\\/fffgggfffhhhyyy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2de6cf8b389901fbea00646608bd53798f5e975dcd55313b304a3bdcce4b0c48", + "regex": "(?i)^https?\\:\\/\\/fffgggfffhhhyyy\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1d1ba7db38e8311c6cd75e9e7f7d5b22841c3c45abcf7ba6b526f39c980200e1", + "regex": "." + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "1c72f8a9a713bf1d66478b5c029f6603f322126c810e9b85824d1bfb85c28255", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d91655ff7088dbd7490be63edd01ebc7fb3e83c4423d2b58435a3198481113af", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f437883a3476a6ecc1e5eb452cac7e55944de40b6596ca376d7e84c70b71c35b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c4e473a989a58fe241a6445747ec21f645e5a3a1ea71fb073b9b9a6ca042a47e", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "d63946bbf8d2b25761b53d633bae4b766f15ba3d79b5079f0b76175364a1f637", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "0c20f02749951a5ab334902148ffb816a79b19408ad58a2404eb50a9cbb558c5", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "332721c4b0fd8e19f6141f21148bf24885413f785a14d0440709ff0f3ce9a8d7", + "regex": "(?i)^https?\\:\\/\\/gulse\\-birsel\\-immediate\\-hiprex\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5e8bd15c1c234799af0f5fad93acb54f766e3a63ceba0dd0302ea246660d40bb", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "56f9643f16bd484661e5f9f985ad6fb30480f06d1b68ce8840a30d4f12d3cdfb", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chate\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "42b4ac52253b03becae3b7a03b888f997fc1afa1d08aee34fb28adc2069080ab", + "regex": "(?i)^https?\\:\\/\\/deliciousmeall\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7e8a47550e62d16fa1dd6ba76fa1b426128d8896c8144698130564c80ef6caf5", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0ad69a87c404055389d5ae16f398cc0995e0dbd51754b5eead35fd46f9cacd", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fd4443a41666f456993428fbbd056c501661d9700e7807739171106d2ed061f9", + "regex": "." + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "638897aa1c4c15fb491d5dce2972dd97da8e1127841ac941f3163f922def2a53", + "regex": "." + }, + { + "hash": "6c5082bd0cbc75abcddca71ad260e903724855b396f7c52570c0e4f3f50ae809", + "regex": "." + }, + { + "hash": "01b9d22a5ae91557cb248907e805f7510d2a2b448aef5e96a306d9ec971e770e", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5cd37e93e90da55ff6e1c9b6e035f60f81cda8687ff0feeab1d1edaf84d73900", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "177845df132150ac1abeaeca36343a6b517c8b430d97d6f9c719a5c4ce17b047", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{4}\\.vtnex\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "24221ccfe2ce3c303380641ec3dc8e34c47722a11822a3fcb1312a2a8be8a37f", + "regex": "(?i)^https?\\:\\/\\/savespalestinej\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bb9c967bd532347d5edf4d1efc3186b7fb25dacce24b649968ede7cbc600f518", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b0f7e42677a5a134e4335ec4d6324ba4d5519375d569dafe9a10f129183f8169", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "637430e592c174e0280468fe88a630e706099e2c1f3b6ad820cd5bcaa7266bba", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b3134f39881cbac70393ca3e51dba3f90c49826ea7b28ac3c091de99d883339e", + "regex": "(?i)^https?\\:\\/\\/deliciousmeall\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "bcb04decc74852f38e51e088a91c5392bdc5dffcc69502b95dfa933c7dea2dbf", + "regex": "(?i)^https?\\:\\/\\/ffffffffjjjjhh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "78b54dc48372378e9cbd6e102a786bd4b820560c0ea6144e9aa3b03b07b54f4f", + "regex": "." + }, + { + "hash": "ba7cd53d4d881bfd4dfbad39bb409efbaec605552298e9c2eda054aaa2c4772f", + "regex": "(?i)^https?\\:\\/\\/xczzvznbmgh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0d28bc5c38c2d215bb4565cd945f6a599d02e4a8644dc3950cc00ec840f2337c", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d89d20955672e93629180ca3e440614eada5ee30b3a34b6fb9fbccc073b4e115", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "a7753718a9cbcaf5c90adff1911748fa3598d4464a87fde1042d7901917c70ce", + "regex": "." + }, + { + "hash": "f9a1919c8325a1383fcc59dbdd8f44d83c16a773603ec99c2fc43fea56ea4244", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\-gratuit\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "acca81ec40e4d13bc32fc4d057f29ac645542f4ba1ebe41b8d94c0c00c6cc255", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "392869c9837f5af96b3a5272817b70955c68084ddd40ea49267754c3b25c03a0", + "regex": "(?i)^https?\\:\\/\\/xczzvznbmgh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "55b62ad7655806a2ba73bfc50470b9513a16f8a86712a0215f24841de5cb3b39", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\-gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "c52a217095f85e268f984fa3803f58fd095f5ddfeccf672c3060fc6505e7e194", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0cfa7ab8f68c4eff3e483d366bac72ba7c2b40fc6a5cf1fa5c83d32db44b5553", + "regex": "(?i)^https?\\:\\/\\/fffgggfffhhhyyy\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2f6533edea66328776ab2ab5e616fad62b23ac0c953ff85cd05e362291b49a78", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mkpngov\\.com\\%E2\\%88\\%95fzaisa\\%E2\\%88\\%95bwebl\\%E2\\%88\\%95zzlluyosb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hdlxfunniy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d05067030671d51d04e74addfb8198b782268155efc5319df2c90f6262df1345", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c362204b6478a47b349167e1454d98abe6b7c9a85dac0f286c293ce67ab6b55e", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "e8b9e3232e5abb6cef4490597f634078f29135810655c84e8491500fdffd25e4", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\-gratuit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c4cadc331ca9fe39323bd39aaaccc674c79876eda5923194fea75fc85958a8ac", + "regex": "." + }, + { + "hash": "29e717817c431c9145d26e62b76abe76f1b3f6a73a9f0bff200f7bb8eb8b0dbd", + "regex": "(?i)^https?\\:\\/\\/chat\\-charme\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f2d22f35703218b4ec742d4cedef2a14329ce24ebca91c2ba398018e9f684e6d", + "regex": "(?i)^https?\\:\\/\\/thehahaheka\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "597c87e2b59c7c6239403899b89fa31cfe2e3dffe7671c1025b3b5bbecd3e50f", + "regex": "(?i)^https?\\:\\/\\/men\\-webcam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5a87cd8ef93f76580143a11aff2b0f39575612a3e817906fc6530559b58b0e70", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ewnrdfb\\.com\\%E2\\%88\\%95nafxyqumv\\%E2\\%88\\%95kzgsbc\\%E2\\%88\\%95jorxh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dsgypdv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "14b24220708b6cfb375195a7e967931bd8424ea25c7a87d9a1851914b19a3351", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fd44608a984aa9ba89ff719b00425781ac9b0721e5263515542d433f58636afe", + "regex": "." + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "a9966839ed10073a127420d52d4c174551f7f3e637d82668399a8646f362ff01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "106a245199052d1f77a16e98fa417c9e747f2e31edf4ed3217365747a860a506", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5fb5fefb84bf4e435ed7d0e09ca3af09706e44f735bb39a0a7e5ae2fdda64810", + "regex": "(?i)^https?\\:\\/\\/dgdsgdsgdsgsdgdsgsd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "17e932ca2c69224b4c9fe7ba4c9309aecdaf1df94584753986391257e730e097", + "regex": "(?i)^https?\\:\\/\\/juno\\-webmail\\-108608\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "18aabeedd890a7ada4127859facd56dd009431cc5484c2a020583c748c8cad57", + "regex": "(?i)^https?\\:\\/\\/chat\\-charme\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7eadf85aa570dbaa75af6a49ba9d8056ddb38f9592908e8b3a46c0cff29d6097", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "6a72078bded251b022ecaf53da229c685766b6fa8ad6a9ac011937e1f16837a4", + "regex": "." + }, + { + "hash": "0bc6333404565b0253f9eeab1513d50eb8a5e0904de92a064831c9871287af3f", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?casa[a-z]+\\.zehestores\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "ed513cb66929ab7dbbdbda387aa4d38fdde39ecfc7a25ef5b3030d8a15e7f7db", + "regex": "(?i)^https?\\:\\/\\/robuxcardscrnx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d1923\\&id\\=worklimate\\.it$" + }, + { + "hash": "bd60e8cf1e21a1a62f0c63dd8d0a92211f32e739521fcdb502d2661659411b59", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8dc65e3733400a47b8aba4664054cc6789d1c81d8d0bf8a39e22dd69fa3ec62f", + "regex": "(?i)^https?\\:\\/\\/dgdsgdsgdsgsdgdsgsd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "b3f14c07a26c35ae629538e5560623e373d6d9cd1cb7618595628d58a3a0f8a2", + "regex": "." + }, + { + "hash": "2aa2b00f6546f532d9a32b96f57645013b63c017f4d98a54b1249ebb3f356cf8", + "regex": "(?i)^https?\\:\\/\\/fffgggfffhhhyyy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "64c954eb73d6ce879044f1d628003f85f3500a52282d1832deecae84f6714568", + "regex": "(?i)^https?\\:\\/\\/livecam\\-x\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "6797d7f0623a0ace2e272e3ccf622ca4c39f668df2070bdb5cd46f41aaae9b74", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b1f0cfc3bc6f3710ebbc231c8edd91a01aded09160a87881e507d4e9a76a1ba4", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "be2551650f412b53f6e04ef6c36d3fd06342c212fbd71c9a4e6d4e6c94aad816", + "regex": "(?i)^https?\\:\\/\\/amazon\\.onjkbsemj\\.com\\%E2\\%88\\%95rvdmestfkq\\%E2\\%88\\%95vterwqjxx\\%E2\\%88\\%95fbuejdtho\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ddoholnbtt\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "f168c7ac31b622d57fe22d107d3f478d1321da81e80d34e898cd5009639a32d8", + "regex": "(?i)^https?\\:\\/\\/deliciousmeall\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "401b54c0e0b8c844020ddbd8a892983b2418d367f168be64d22faca2a127ebf1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "ebd7829ffe7db08b21e13347322f27b77817e01dfd66e812378d68289a414fd1", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ed5110395b6ccf32f1d89967a23bf767f7b4cd6a52898acea3b0f7c61732968d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "cc67ed5379383891ffc14bae0d4fdc1d454043329b019f2f8b9e6ad735b68cc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "55214c3cd04d67a5661f8a49fe0ae6b5cad9e3173fb24502eb1efdd80f309995", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "8328aeda0ad386579c7ba7cdd9d3c0a077aa3f319ff6d83a65e529aa98ac3ade", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "b82f91ed26b9318f006e832bea6ddfabe8fb15b1fe9d4bc5b1bd896a7a6e0bd3", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wfwkqqgfy\\.com\\%E2\\%88\\%95gniutamy\\%E2\\%88\\%95dfdxcjrn\\%E2\\%88\\%95bzritrma\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cheztwdomx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "45e77df89ca7e1eea8b475b82c90abe74870e259c5b8f34e73da148df9e363af", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e2ec8778d6b9b6435c13f571282a95b6a140ad403c7e14a8a34a4895980971a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "cd2169df660fbe51832070f20a381bf9d3e2cad89742b7628497bbbe9a5a3b45", + "regex": "(?i)^https?\\:\\/\\/robuxcarsdex\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d1923\\&id\\=worklimate\\.it$" + }, + { + "hash": "446207dba6727ac6e15dd05f4021206826872a097ffd3c707273402f6016c0f4", + "regex": "(?i)^https?\\:\\/\\/savespalestinej\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d7858e21008f26ab86fcb42392fad105b1057daee42e012d5ec8b31374ef591b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-exhib\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "78309c6a6db2628266fe4dba398bd48bb2258414cd6c8a3989270e5525a545af", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "237c7267eaeafc4565c66e34bcd5764f921c574ef926e9037aba06472a34f570", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+6rqJfgq8dINmODsVSOeH5VezhKy[\\/\\\\]+Imt0G1_DvhFi(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "dc8ec7e2598012c91749979fc6f32af1bba6be758c352d90d105341a81287654", + "regex": "(?i)^https?\\:\\/\\/gulse\\-birsel\\-immediate\\-hiprex\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "78af3012e7e4d9c92497e521c87ef325f787fe64a23199d2181fec05f3ebc112", + "regex": "(?i)^https?\\:\\/\\/gulse\\-birsel\\-immediate\\-hiprex\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9b3bdd279f48422a93425b711c07ec100a68c813c1448bea43d28b50862741a1", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "66fbbd7500b411e3ccd44c73ad86f09255881129a8e85d2af738b543f0d4f339", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8f308f631635596390ecee51067f095cf9cd7316256e6e740ac78490b8eb583f", + "regex": "(?i)^https?\\:\\/\\/thehahaheka\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "40462a60f45522c2dbdfec5f139a70d30377ec93150ff9fe2a6ea2a3487b49f3", + "regex": "." + }, + { + "hash": "3f6b879a729f8c130deecd7169422cec00935d4d36d865e303d8952a4756b111", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-camera\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "51bec6f5856fed220548c3d426c17ef6105a478f681b390b6581d7b243cabb5c", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chate\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "54e72b0483af5ef2cb89ecff36bc78a9d53526b4c2c8ebef348094d735432105", + "regex": "(?i)^https?\\:\\/\\/ffffffffjjjjhh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "e38498d42c44b3b5e0f9e8c424f2bef84761314f4f5a2f05fc5f5014552e28d6", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "278ca172835a365a22f8f9b22e1fdf0d7fe755a353d12e2e675a5b0c359a1254", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ffdd7b9bc987e9509cf256175ab2815323b69683bf4214139cba20135249fa8f", + "regex": "(?i)^https?\\:\\/\\/chat\\-charme\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c2fa4084fdbd3bff8c9ab342071cc767704adbc1803cb5e918b66d023817dd75", + "regex": "." + }, + { + "hash": "1ef484a5bed582c9b230278ac3d36d8254aaeafa256af83c55d2f697dcd5354e", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chate\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "6575ca77464d20ddbb8be9699dfc22b7295bf6982bf38705f103ac1e04618537", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "dfb7cd236e238b942135f2ac4f82df0d5776a8eae2bd6252969e25ab04042c18", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "70d8fed314cf02427ea3c898b1bf876ef6bdedbdd53bd254824cad8185e81463", + "regex": "." + }, + { + "hash": "403e435f06f5c7c8560770affac1c9ff0ced11d5ee5dd1858ebfecf8b94c5b0a", + "regex": "(?i)^https?\\:\\/\\/chat\\-charme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "68c8fdc4e402d3632e1edc8274583725c76d81b954bda1f1cedc3ac02fafe0b8", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "697343d53e4a5a2ff0127a192eaf9a2fea5f173fd6d5e34ea1d8e568deeb05dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9048[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "5b8ae1c0ecc54f808937357394722abd6a1f05e5b0513e098ada600cafac6ae4", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-came\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "59911465e280e4205a5aaced280b6dbd067bc6af53c108ffb9d20575484e320f", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ae4d9109bc07eaaab24a8757308fdb6f5b9ddb84c6bdf81c0c5e08e1cfa3618e", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d67c0886aca7a3f0320c2c3a368fa7bf5d670a3a2e8219bee31dc12270dad63c", + "regex": "(?i)^https?\\:\\/\\/thehahaheka\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e79ff9a8ff1494dc5113cb2a7cf8851ffd0bdb1319514c73f28449d47d89a4ae", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-camera\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "146ce0a85292b7e627196a409e2157dcbcd9ad79ff9a239b38f613fa10183407", + "regex": "(?i)^https?\\:\\/\\/webcam\\-exhib\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "779215e323b714886042cec214ccd2c4a68328b938d67bd3990ecb0885c19af6", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chate\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "0f3ce8d9f31fa0e457eb4b74a15763973ebd716bb8505d60e4017ca4c6692c29", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ca58d55021808ac244e9370d8b8f169968c6134ac106dd9da39643c5a8d06d17", + "regex": "(?i)^https?\\:\\/\\/ffffffffjjjjhh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2aa267e831b7c570e51723ecabef780947a29485584eda5bb05e4531a1d0075d", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ee4c0baae2bd9f5257ce36f14c0d30b5be22f2c5a080ed99b9a88f60b491ca43", + "regex": "." + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "e58b32483e1f84f96b2a86fadd956080e4dc98437dfd9b42e34a4941627ad062", + "regex": "(?i)^https?\\:\\/\\/fwjfjafawf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ffe41be8e1b68d5c00efb8b22f24f722f0897a30db868746bf2cd1b9fa58ab92", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "275a0378169487bbd62dc734470fea825c393be1b53a2723e36e6f6d59a71310", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "597cc7d54e0aaaa9ceeb503da0b49bdabd0781a0940243edb7d1928f8960fadc", + "regex": "(?i)^https?\\:\\/\\/gulse\\-birsel\\-immediate\\-hiprex\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6a757dd34c6b60efe36ec3ac71b09d67e7157dfed0f161b6576ee5787cb4df1d", + "regex": "." + }, + { + "hash": "65a887e34ccbef9336aaf393e1cf86868259a6b155b17e0833b08022b77a586f", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "12c611fac22bb247daf7b250c01c4d0fd1e2613caeda013ac690bc4bba0fc086", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-came\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f00107ef70321515cde5970833da5013a6c57fc4e39af743faede66331ac8c00", + "regex": "(?i)^https?\\:\\/\\/webcam\\-exhib\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b92a66853e99862ae0b353a1d2bb36a123be10ffeaf5e6d47615861cec78809a", + "regex": "." + }, + { + "hash": "2fe72fad7186d8e9ff1a57f131dd6bdbc40296949860ffa304b14f9515882c42", + "regex": "(?i)^https?\\:\\/\\/robuxcarsdex\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "18394fd9063d9da87ad8777225b0c9677361164a6706715923608d25a4773c71", + "regex": "." + }, + { + "hash": "117c9b12494f837512858b4904bfde3ec383ab8f23e3ecf1b19bdd5b1b44a898", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d78c3317a4ca17eacadb1695487685451e53b9607f0202976a9d5fef82aab2b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+6nkzlx(?:\\?|$)" + }, + { + "hash": "c5cdc0596c617aef79aa1aa10da3d65220c7802eed60815e3db0b2fc0f082fd2", + "regex": "(?i)^https?\\:\\/\\/webcam\\-exhib\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "21b8ab091b44bd35856ccd0f86399edde39b005e920773113c1957b891fc92ca", + "regex": "." + }, + { + "hash": "2ae5e11cc57a9ee6a36e4f2f3926cc03c74333b999c74cb15d99d419a580603d", + "regex": "." + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b04c42d63221c4066e4b7dd5dba8a8909fd907e951f4a588759619386b873a2", + "regex": "." + }, + { + "hash": "60f138b1362fa54cc40800f16aaa3ced9d3600c9a62548ea83837755fa05462a", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "94fcb22042b1be55b5ce691d2119a315c24d92503f56acb03e38ea716b6dee11", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fcac2b3e73d55c767cdee48f6d03c5dd71f5e5f81df03345161705f7e7f60cd3", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b2c569dea4227c5da1d0dd6909e9efce070b526626a39b91083848eeca593d62", + "regex": "." + }, + { + "hash": "95ff8c1a94a4d43563b28abb0aef2343cef113d46e796f9d6b732cbebde0963a", + "regex": "(?i)^https?\\:\\/\\/robuxcardscrnx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8633c7b62d4a5c1d81430f44e839b7d319c541ca307d93f51a3f6ea112ceaff8", + "regex": "(?i)^https?\\:\\/\\/habbomoedasgenerator2011\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "0cd5f9c9e07042588b1cca4897f8d01e9f37176652d6764a781bdb66f29c0753", + "regex": "(?i)^https?\\:\\/\\/men\\-webcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "daa012e6c7876550019cac3a6ef0cd5cac54f873f188793089235b2aadb0cab7", + "regex": "(?i)^https?\\:\\/\\/fffgggfffhhhyyy\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "601e2c73c1fff33530f6e6d99db7fe2b24d04f4b6ea667dee9a028700d9c044d", + "regex": "(?i)^https?\\:\\/\\/comdireecetee\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "56fd2656b23425fcdb919f595fdd1e791d79d7cb865512b6e90b7acb857f9fb5", + "regex": "(?i)^https?\\:\\/\\/livecam\\-x\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "36a6194aa0e4cba39e9c8e228eb987e4c5b60d554c0efbf5450cb9fcc48407a4", + "regex": "(?i)^https?\\:\\/\\/chat\\-visio\\-gratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "3e29a288148ffd4f1d93145ee5c7b958b3e76c2f175148942cf9f495ce2fc72a", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8e6b8531bdc222e9d8767dd2eda14c17d8c2e1d034c929d4aa402304d61adb6a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8474c8267eb32e588dba4d51df0121807ffa45cd5bd6c36b3c9eb01bc62a7055", + "regex": "(?i)^https?\\:\\/\\/webcam\\-exhib\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "904dab1da60a758b7ae0e1e64ed4793059ccfa95c3dfc74e3ac646f02d4f4293", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-camera\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ecd4644ecba69d2478a8fa721c7d433f1702f9be33ab7c2d6cce946ef8c0cec7", + "regex": "(?i)^https?\\:\\/\\/chat\\-charme\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "353c8ec0c6bdbd1be4139c0ae6c42e48e022e433e9ea2de7a61ca106f2b4218e", + "regex": "(?i)^https?\\:\\/\\/robuxcarsdex\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5ca7dcfad52eba5cb7c067e20a522e199495e693036076e3470097879f83b53c", + "regex": "(?i)^https?\\:\\/\\/gay\\-en\\-cam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "f479e05740e13e5d545622a6c2037e0d3228d563d8ccb8d935e940c5cf964574", + "regex": "(?i)^https?\\:\\/\\/savespalestinej\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "52c605184a25dd197b62311099d9399ae2a4752988129967361442d1535cb7a0", + "regex": "(?i)^https?\\:\\/\\/comdireecetee\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "80770bf639980f71646cd5e531797e3dc8bb8f07a1a8c447f2bc770fbe10eb5a", + "regex": "(?i)^https?\\:\\/\\/tboonskhounaa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b28a963ce27b5ea4d2d990a0cde1c42ce2b620d0df920b6c6c8c9a62b71415aa", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-camera\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+4eef59(?:\\?|$)" + }, + { + "hash": "b2f97c64dcff225903e2ce565730ee1a8c2c3a7a28444a5a6b2ae7c3d00c6a33", + "regex": "(?i)^https?\\:\\/\\/mjikjju12\\-secondary\\.z10\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "697343d53e4a5a2ff0127a192eaf9a2fea5f173fd6d5e34ea1d8e568deeb05dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9048[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ed80c8496ea50abeaa8dcb612c631e9652b4408d71bf57a566a768bb0aef34f2", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info$" + }, + { + "hash": "767efce4cbcc36f3887585bd22fa138781e4515cf05084f833bdb5e10b8662af", + "regex": "(?i)^https?\\:\\/\\/ffffffffjjjjhh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service\\-ID[\\/\\\\]+DK" + }, + { + "hash": "1821ea48c2e0931b03b8109e8c83065ddceb973a65515863932992a0c5ef395c", + "regex": "(?i)^https?\\:\\/\\/www\\.airdrop\\-trustwallet\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "de5f87ead30830fcda0ab795491ef05495a85a234a49f5b8fd02170e5abe2889", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "e9bc626ee163441f626999fb1d1502b60bc41d52c6b9d001bf7d53258b85038d", + "regex": "." + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "28245ea59fa57f66d1a743bb6517028f9d1f38c92b79050843d1bbbd9b99269c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxseh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "235c134b505439bb91272bc32f6cbbd16359c221d59bf604281a2afc7e4b0b62", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a3a8f1905cde6ef6c2be83a17160be79f7818e366ffa3f26be22bed864350ebf", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "849004813146aea25d0913c9ad56c1a42b3da99f828dd27236029f110ac9ae3b", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "a746f47fdb21e7b15096ddbfa8f6f6f2a01a1747943437d0b769b534741bb5e7", + "regex": "(?i)^https?\\:\\/\\/jardinsano\\.bewadeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c5a7b6a40d7e3971240ab673a2e02ed9a296cedb333781a3f7c4033a82afa866", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ffbbc26e999015f029243fa77fdc9922e3249ba9be9fe7f382cb0c6b6996f31c", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chate\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\;\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b92ae90688639c4b165d1c2a91ccb093f1ecb17207f19c2bd9ee21d5010636dc", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7ab69\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "71f1e56ea7eaec68098c9de3c1798aa4c68bbd5135e76ef048795368d54880be", + "regex": "." + }, + { + "hash": "8acd66104cc7cae0569aa91ecd34bb07fa8319b2939c40d3878e928d9ff88ea3", + "regex": "(?i)^https?\\:\\/\\/savespalestinej\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?632fd\\&id\\=worklimate\\.it$" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "44eec2f19a3dd1230667dbdfcdc02e103c849f4c2d4d330c0abfae904132998e", + "regex": "(?i)^https?\\:\\/\\/comdireecetee\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "80f7b68cd4cce8fa01fb334a39ace0ecc60bfb98ced9079a15716ec29d85461d", + "regex": "(?i)^https?\\:\\/\\/exhib\\-cam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "bccd0ad6bf2c67ec92722f76016f129fff71a54f3baac71de9f43113f027b8de", + "regex": "(?i)^https?\\:\\/\\/robuxcardscrnx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7dcec86fc0dfc3d5c38b4076d7b081b17e9fc1456f79e27a4c90cbf0d9c9b6e5", + "regex": "(?i)^https?\\:\\/\\/yutqewyudtgasbc\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "150410db04faf1d55858ccacc32226d2653921623b556e4238dbb6217a8fe65b", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a722909f85cb7bb93937c1c30f87c8e1644dc79964458733198f8c12a38d3a42", + "regex": "." + }, + { + "hash": "5bf8eff70bcf9d25b45451cd586dbdabeda4cedf5ecb61b0c53f8593296e19f9", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c455b313f2397ee2885b31812735778d0316c8c1e5486112216aa93f4e3cde44", + "regex": "(?i)^https?\\:\\/\\/robuxcarsdex\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1257804fa3b5ef1ccf1cce8b31d0295c68930bbf54bb13ea3e728abf1629a341", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6d98e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "003d18255d5d5fada48263c19fef7047b069a4824fc1f7b25a4fd75b4674fe23", + "regex": "(?i)^https?\\:\\/\\/livecam\\-x\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "6a79f7a1a52c027a4f8d12fc13739fab5465c5006376804757834b8627e02c6d", + "regex": "(?i)^https?\\:\\/\\/ffffffffjjjjhh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "377a3dbbec855062beec5aac1c58346f60ef66c3f348de03d1886cc03400e97c", + "regex": "(?i)^https?\\:\\/\\/gfdfbcvbvcb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "265678323ca7d430ca10f220b3cf0f923a4568d6430fadcdf6db7d24bdd92426", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "82897af27650c0f9477d7ad8f70d8097c8eac881588f4f66508a3dffebcd6808", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "660f0e7c6cd1d2ea7a1a75a4a420797b21ab808727d1ac643cbbe66e36fc704f", + "regex": "(?i)^https?\\:\\/\\/robuxcarsdex\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "277e655599cc72865a1783aae27f0751b1063f53ec969481dc3fafb3bd39009e", + "regex": "(?i)^https?\\:\\/\\/taikhoansodepvietcombank\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dd9bdf6df1ce7792e597c4cd7aa68e6780353f710df2f9590a05e4a717ffae87", + "regex": "(?i)^https?\\:\\/\\/gay\\-live\\-came\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fb00725d2852d1635e6fd4595de5f70921929753c2cfd003c3d60b9a837c1026", + "regex": "(?i)^https?\\:\\/\\/robuxcardscrnx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5c61422dff24f3aedae5e9390d0a091de8b7a7c46ce8b3d112245cd7768c19bc", + "regex": "(?i)^https?\\:\\/\\/deliciousmeall\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?30962\\&id\\=worklimate\\.it$" + }, + { + "hash": "f4491e5a21f432c54b0baff46b317ccf627e5486c7e27c3829bd635b24107114", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxsyw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "31980742ad337f5c4b1d5ff76dc50aa4df6bdced349590529fea8d9fa3963e60", + "regex": "(?i)^https?\\:\\/\\/robuxcarsdex\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "513791bf2769b5c9d8ad8714bbaf9c291f7197c7a8e7d5ae5f67770f759962d3", + "regex": "(?i)^https?\\:\\/\\/lite63web\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "054231fc14efc69a9398d55c7da052763a6fd9904a70c8600377092d3ff5fdb9", + "regex": "(?i)^https?\\:\\/\\/robuxcardscrnx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0d45b2b5615aa731bad2be6065af7cdb15e5d4d348dc2ca9e0622bf50126856a", + "regex": "." + }, + { + "hash": "4197c93c9255e74690eea802f7cf4d48dc59efdd2c75bbe85b8df5d55b974731", + "regex": "(?i)^https?\\:\\/\\/robuxcarsdex\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "df433d729c4322e4c6e4bb4831e90f037bbc727776c7e4e0f4aa70e2d643a491", + "regex": "(?i)^https?\\:\\/\\/www\\.3659vip4\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e212d8ae8df720de9c57a5b1edc49d40d2dcde129cd46e73f3c60b9f5c5178fe", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cam\\-gays\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "39b8f68e02d3aa9d221b2f05db50fb7f0034a3776b77d769bb20aa436ee3fcf6", + "regex": "(?i)^https?\\:\\/\\/deliciousmeall\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&\\,N[\\/\\\\]+A\\,https\\:[\\/\\\\]+openphish\\.com[\\/\\\\]+feed\\.txt[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c5a78ee6ae3ac937d36a356e826e3e7d2fac36b16c1c2599b9c35a40ac3bf73b", + "regex": "." + }, + { + "hash": "4b19577e5deab15e9be417a9bb50c31be9c9439315acef6bc697937a60cbda01", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb0474e746b8bf8757d24193c41508aa07c9a9f7196d4a5f1fc3744622e0aa", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e1856bb1c5153f91a465bd89d4b30c7c79a44f779c2c405ad517179ee7ea603f", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3d1aa1d8b3fd27f22641077d067f3917a79faa97edad8242f10652fc384972a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+unit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4ec5c7f58f92dacf47b574e20465311306f307865af72ceb492011b2ecdbb300", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxxx\\-streaming\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b7d49f68c9d2a7a4bb7e11f878bd1791f5597b58c89ec334ac3b2bb57229d9ba", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9287495ac7b60766d38fbb79ec625d367186571f7b4514576a7f9404819380de", + "regex": "(?i)^https?\\:\\/\\/moonbetsv128\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c2fb63f2661d9b6c74b3defbc339705f33c10f3b7a91c1199590ba037da6b3fc", + "regex": "." + }, + { + "hash": "2c8997defc2ce29f3092f2332bbccf337ae11c6ae3fddcf0b50b9239143ae61e", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9c0ef36fe989ff86ddef736819ba8b6f4437d83b04933410b051b4c961868c69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "612cb5153d47a09950f1cdda50bea1c0b40bb7c4180eecdce839db301b14cae1", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "877d817eb16ab461ca1f5f59898fea7e9f8f28b633aeb2a55425aa4ea71c972d", + "regex": "." + }, + { + "hash": "abafd243270fef0d704a77ed26a47ff4a93df0377c4e7709b6838a0bc955ea47", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3c6ca6d0ba2bf8ed336d91fbff98b305521d4c1e1a4e9086a291aa1360bc12a7", + "regex": "." + }, + { + "hash": "6406304e461a1d30d679752c375b7a992ea46c66c852cc809842f9bfc749dbce", + "regex": "(?i)^https?\\:\\/\\/bandarjudicasino\\-338a\\-asiabolabet\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "982562e3c1abfaee358a14b89fdf081fe81c49b9ff012d646a023c0bf9898658", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9d14d7344c2353185e6fb35900680c636a9994569bac2637fe0d31b991cd7c32", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c43ec709d977c003f9aa1697191733ca1dcf4891406eccba521264d8614a07a8", + "regex": "(?i)^https?\\:\\/\\/511555\\.com\\:9900(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "44c8339749fe16eee7e8f8c1d4875c353ed51a837de2a7e72fe83a4b01734835", + "regex": "." + }, + { + "hash": "5c90f913ece0bd2cf143cde9cbfcbfaeb8682bdeece23e6a404ff16be0001f44", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0tbwqv(?:\\?|$)" + }, + { + "hash": "d7cdbe092489225cd77be740301858ba2e2ca1eb2f41515ddce668460b2e5654", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxcredit\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "194b2e19cb4adbcec919c7434182bff4bcd2e66d531712d898d9fe94da288681", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "99e6b065b8052abfb2b9137a9196135d286e53084ad4b7901507db0638a81dc3", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxcredit\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "17aef6cb6134be519c309202554924ea506dccb37697b7ec14d22284c8c4c410", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1e11f1d7b603962c527b87190c09ea665315d56a81f6ca1b262232cb7c4bb02b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "944c8384bd91afb2273f0672abf40b493695ed5105320515a4329cc2007cfcfa", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "48931f7d7a3ee9156df3aca42f5b693c915090e081c46ac1c21227b62ab657a7", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "68c175627037a339cf8fbb640a5b1dfb68490d248a19d09d310be761e528c850", + "regex": "(?i)^https?\\:\\/\\/okxamsrhgvuexjnakjsfha\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d638ea8870683b1e0e294a77a380b51d71803f50959eaa5ad356ac8b1ac2bd00", + "regex": "." + }, + { + "hash": "6a376079c61350a3780a57596d02f78558c81c6b9c9bce1be499a3bf6351be31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7d824b957861151c07811d2b50491247f898257f95296ecb4cba02e0c3d8693c", + "regex": "." + }, + { + "hash": "0e4ba00e0a7e0ed5ba51003cdb0bd8945db6f3dc2827b77260c839ba5e740658", + "regex": "." + }, + { + "hash": "51e950ea4fa02ecd585c7235c4ad8c6c0066d070bec730c8ed5bc2c2e5e765f5", + "regex": "(?i)^https?\\:\\/\\/h0tvide0xxlove26p\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3fddf52061298b3a6764b5001b31e7d642bf88b0edb9418f19f614c3152164f8", + "regex": "(?i)^https?\\:\\/\\/tr78951\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "96a4f84c85b37f704eb5d97f1a4bfc2b351863242cb3454159b04d01a5657a21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fip\\.qiret(?:\\?|$)" + }, + { + "hash": "775bfba9050ed307cc60f7ee6d5bd6723f453d9312902c1bb3d3f142acdee947", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8ff89946d0a53d846849295ea3de41b4a227efb6ed8c0033f23bad1d546efd35", + "regex": "(?i)^https?\\:\\/\\/sdasadasdasdsadhgf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "57f0ed237a7a9c9ff4c083b6bac0903cb4914c8eee61e7fc9d70ef5f28230589", + "regex": "(?i)^https?\\:\\/\\/sdasadasdasdsadhgf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ab7130720221d9df58ead1df1f10215ed70946c99c419471971bd99655b90f75", + "regex": "(?i)^https?\\:\\/\\/okxamsrhgvuexjnakjsfha\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5b487ee9d74b588d861e190c9b35b1ebc1a8b01c5dd8c13e98652fab3e78fef5", + "regex": "." + }, + { + "hash": "e374f693233ad9fde60e390e93265b5fdaba6a3b01990a51aa3ea6a0a5cb4645", + "regex": "." + }, + { + "hash": "57849cd82d772d7a4479bd53d5cb671da6fbf8d9da0070918dedeb531e19e9a2", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7487f4e3a3a6f15b4a5558c923c65466dd32804dc9da94a55d03cac6f9abd6f2", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4fb46e2c1ca2e47f6795b7add14262d2f64831bc8c304d3f6e9236ae48d61aa0", + "regex": "(?i)^https?\\:\\/\\/onlinerobux25\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c43ec709d977c003f9aa1697191733ca1dcf4891406eccba521264d8614a07a8", + "regex": "(?i)^https?\\:\\/\\/511555\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "81efbe4e854521690f882d30dee060461a088e8bd5da0872a450dc7341185d42", + "regex": "(?i)^https?\\:\\/\\/sdasadasdasdsadhgf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "34732260a890d40278634596ae8a536a57834bb37e05cd0392a2033a460210da", + "regex": "(?i)^https?\\:\\/\\/okxamsrhgvuexjnakjsfha\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ee53be9816cf456ea0457eae66476ff0d1ecdf165b8135b8546c8a7f871cee31", + "regex": "(?i)^https?\\:\\/\\/foodnetworkgoodcookingcontest\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "02fa41e06e30b0df6b71fbe2cfe7b2d0591618540a6f0d032a894466a6298f05", + "regex": "(?i)^https?\\:\\/\\/sdasadasdasdsadhgf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1bd1709f3640737898577fbd46e4dcb9bfec03e59e32e6df93e416d8057d9269", + "regex": "." + }, + { + "hash": "d0a936af6c53bc06ecd3ddb4205f993318125f23e0f058c5fe2450ccb069ba44", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4503d593384b1190b7043cff913cc11f636e09880699e42a8498cfbb8ffbf509", + "regex": "(?i)^https?\\:\\/\\/foodnetworkgoodcookingcontest\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8318005aa02c598c39c4e4b6fbc7d39738b775dc89a03a3ebbe988113deb6eb9", + "regex": "(?i)^https?\\:\\/\\/moonbetsv128\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d24cf302c6b750a2f02579b57638ee5b36dd28582f4c46a8d727d934deba183b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "5d83020cd4b9cb8a287b9180490e694ed077f7e1e50a027e9ee7b582ae9cc512", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?microsoft\\.trusted\\-mail\\.live(?:\\:(?:80|443))?[\\/\\\\]+[a-z0-9]{16}" + }, + { + "hash": "5b008348e732d0255252fb563d149fe9469fa4e788ddcd7362d1e5fc33bad5f0", + "regex": "." + }, + { + "hash": "13184aa3e3e76cc57ca03fbfbca4bcc5afaca809b30f4a2ad3f0cd4eab851c01", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "303353768f574ec60fb07e971831c292bf4530954fbf3a0632bec1149e67e7b9", + "regex": "(?i)^https?\\:\\/\\/mak585585\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9ca499e3df1b601c93affff4c1271d52f5e8206addbba4e2abfb5981f548bf5c", + "regex": "(?i)^https?\\:\\/\\/dancinrobloxsongid\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fde9060fd3d7fc6e6fe3cbb03d420bb2fa1eb28bc0432fb50aa418bed08f6f5b", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxcredit\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d1b74416213b3ad49b161cbab7b74786f78a118f30952d80ec26850f9d84b8e3", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7bc702cc75be8a0ad758e10005428aac3e5adeef7b4432f51a627ea3db93526a", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5698f97711809aa408cfb6b4893ba47793b7ef35843078978161b936516d6cc1", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxxx\\-streaming\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c22ddc8f99df56efde9b6948c9369715d59bd2323ef9e6aa5c58514a2691a6d6", + "regex": "(?i)^https?\\:\\/\\/moonbetsv128\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "61bbc1e5b29ff8ad6fbd1d0b4603163b64e4eb134c0338d8106f72502b042191", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ejipn\\.com\\%E2\\%88\\%95oqnqdev\\%E2\\%88\\%95bydnvia\\%E2\\%88\\%95iornswp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=egscpjlpwt\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f07ffb1657558c730b00cd09516895758433399d92b0a5c943c997b0f23cd323", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b585358f6b80456b2db76455c8abebec4fd4403e4c2ab0091803982734964219", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "206c431ff8691ec7bf90be2759537942333416a86d9013ae537f1663fdedca2f", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1bb0bebad42d8d6dffb4aa7093a407025bf38c975f429c214f8aad3fe1e0b6a0", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5d83020cd4b9cb8a287b9180490e694ed077f7e1e50a027e9ee7b582ae9cc512", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7h7mj4b84wrf9pjo" + }, + { + "hash": "e3ec69aa508d85b07d89d6590f6f30f551b13aba296c26136df8a588e22dbbcd", + "regex": "(?i)^https?\\:\\/\\/moonbetsv128\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "13be9429c633401de9a42cd0c2b1df2acada5f5199e7b7ab1e718d233af5676c", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fd036734e68bec4bd6ea8ba5e166a1bb4488cd705d8bddb68294566ee3d86c79", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6fedfd226f0e35bab0aa209e00b3db3ac2028ef3e186ec6a1401cba5dd5ac734", + "regex": "(?i)^https?\\:\\/\\/zainmughal1995\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3832480b01bae8ea5c4bc52040aaeac7969bf78051aebbe9d8a834013b90a873", + "regex": "." + }, + { + "hash": "45d835304af5273687c5a0b8a451703a1881a64fb49c095b5b7fac0b3756cd5c", + "regex": "(?i)^https?\\:\\/\\/h0tvide0xxlove26p\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "49f0e64a5333e4d1ea18c3cf3b23c19db0c41ae6e271fb10771af89f6cb37cc6", + "regex": "." + }, + { + "hash": "ce3af546e1a569886f2b27e40dba2dad3f7aa47e3f21685156a61c865142e325", + "regex": "." + }, + { + "hash": "a80325094629f9009de603bf4dffc3884e52a0e3be93cb8a86050f4ec5817c2e", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "970687de7ba88038e75184b1f25b63270c3de167956295c5d9e2d390ac65b763", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ffa965e5bf7f3bba0af4c15856b1ef222feb97037d55fc59d033d551062bf12e", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0afb0d034a1a2f7159fc8eb417c66c7e5b6d4e85a6236d5ecb2dc3df8372032c", + "regex": "." + }, + { + "hash": "61deccb8aa645e053a99c9316faf7bc99f125866fb5353cd95711f13eb2a8a40", + "regex": "(?i)^https?\\:\\/\\/okxamsrhgvuexjnakjsfha\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "abddbd9f7fcc016f0d0d5ee2c2ea55bac77dd4e489fdf57de00610815d426268", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-18\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8c4d70e2044135baa6b0e02c221d83e6d9f20d5c5a8a18e1c9883d691ce242fa", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zjvnrw\\.com\\%E2\\%88\\%95ifczxhp\\%E2\\%88\\%95tqwyhuxk\\%E2\\%88\\%95anqzqrpcs\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pbuxfpncxk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fc2076e8f90735e442219857cefa021a30bbbb027d5bedb946e7b24e377630fb", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-18\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9c7ebbc1538e7cda3d1c2b5bcf275c251d6a92a15bfcd5aaab968648af770119", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-18\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f87d0666d9d96f72d47bc9074ba08c331a3d9dfe3b15c89207c1c0ccc5b208aa", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "12ae51abcc96360bc63aabf7307df4119781629eabfe87930c97090f02647878", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f4a2e777892c76ed55127d27c890ca0292cd4fafde4d74f360fa54b249b3cdb5", + "regex": "." + }, + { + "hash": "553011afb52ff7d73ec2e596e1ea261b38ec6e47935d9d22c465c2f776736b2f", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e10e7e85923ef69be7f8a86957d0648be19f8adc15c77ebbb4dddab8635e919c", + "regex": "(?i)^https?\\:\\/\\/onlinerobux25\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "acdf5d14db4c602d4a37a40ffc6645d7967cacf3c78f93bc3871f3cce85a9f23", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9c6ad1085bdf09162f0aff889d315c5cbcdb905cdfe9492ff7f31fcf1ede2abc", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8b15431b08e6660f0939a3d2d1b16f1edb010dc5f3c1e0e79f84265116173c20", + "regex": "(?i)^https?\\:\\/\\/bandarjudicasino\\-338a\\-asiabolabet\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1bd3b946366809bf87201e5d10d14d3a6e931a997db5b6401c5fb7815b2a96b8", + "regex": "(?i)^https?\\:\\/\\/putain\\-xxx\\-streaming\\-gratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4a2e1\\&id\\=worklimate\\.it$" + }, + { + "hash": "b29b5d3af13abc99b0661575689a7bf824df34e98142f94164f5f2db9dfe2ff1", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e1b8191c602d7d2925d7af08823e870608039db282074be5f1c90208d4d82362", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxcredit\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4e81816415fd622974d45dc17688193e5cfe9e292c41bc7cc5e73fe62f4ce9c7", + "regex": "(?i)^https?\\:\\/\\/sdasadsdaasdsdasda\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "daa00c586b29fbeaed973b408776f5222c0b5401b279b5f51366bc922e55a76d", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "016087a1ec0e004a6f6f558f5c58f30828394ea7960b4595a76e60138de92d40", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fofzjr\\.com\\%E2\\%88\\%95xxpzrqt\\%E2\\%88\\%95aaamdkips\\%E2\\%88\\%95ytjlylabx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hotvxg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aa2a435ec8c5684f6c599e0584a016d0725fb54eb603833d213cd85ca573199c", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3cb91ead83748ec53270e50b9df9a5792cac2b5639f13cdae1b4b9bdb39f85f0", + "regex": "(?i)^https?\\:\\/\\/onlinerobux25\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2326b0d21b73c9eb680811069b4548edd41a9a3c56d127886dfe09ec851ce7fb", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxxx\\-streaming\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "708777dce149c5925509125172993baa84b2ddbecc0a0a49a0db0c9139af87a9", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1736a1b1ea9be2e378e46019097f53d3735349ff5363235b722953e1828c0bb5", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "529d5ebbb82301d54e612eb49ec0c2722ca95c7138f96ecead3d68ed7ac9207f", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "01ef7e913d6d3f4ddb22ab02c0cf547cf9ddfaafaea5c2650b8daa699f864e57", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4d442051e2d07a554f61fff3d35135294df5cb68ec945923f9e93ab091317340", + "regex": "." + }, + { + "hash": "9f8041eefa0894d7010ba41c67d85abe8d17f7dc4bd87372f468c2291fa5b3d5", + "regex": "(?i)^https?\\:\\/\\/sdasadasdasdsadhgf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ffdedb594380e2ad318e172ad350ee954573c7c3fc39fbb712268814a802972f", + "regex": "." + }, + { + "hash": "c33b756e0eff55b21dd209e48daa8f771b40ef7cea7f6431768ee96121573119", + "regex": "(?i)^https?\\:\\/\\/h0tvide0xxlove26p\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3ea668607badafd38259c5cde68c257977c9dff6b03168dd60062fdd751ec15c", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2ff28c21564e0789d2a64a0e8057179e32d5f911064fdcc32e58922fb632b5ee", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxxx\\-streaming\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bf50305d6df4d9b8f21c2f09ae86f18f02fa1f87c57724d3fe5933d7a7b3247e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ntbopoa\\.com\\%E2\\%88\\%95yverfvo\\%E2\\%88\\%95jujno\\%E2\\%88\\%95zxrik\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gjzmvno\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df668c5f466ef9225b0dc6c8be291d81924049c3c2e6cfb1cfcc6cec5eb35939", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4f253f9458ca41ffa9ccdb4241d1ca242a93df59734cc71a1b7b65228492a45b", + "regex": "." + }, + { + "hash": "dc890ebaebd088316e4e5c02d0c57f70222c1e4ead3ee6988654e8067c5abd15", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "31c4580e01fc103f3d86546245913f0548d250c6061d6e5d12d7ebbcf1a1696f", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3b03289306d7b58eb41a8529324d0ae7e56bc7ff60341468d8e18397fb0700da", + "regex": "(?i)^https?\\:\\/\\/onlinerobux25\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "23cbcb5be6444a6ad053238372e7bcccf97dbb0a4276574273d6b04f28198135", + "regex": "." + }, + { + "hash": "ead7641dcf25c971dc92fc13eb5ec79556cf9010bfd405521ff85c8fe70c66a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1fe6350e66e1a30d14cb3324382f1a8308175d4521a5cebeb6b3563843e7dc86", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "164a94ef40a8d5edef89a65cc558837e32ae23d3fcb025074cb04145dde0ec14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "de9a48b8b877f43ce08e183ab6656159dc7b56a033d2aff6d5df23bd32a144e3", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "61f167a5a302692733faf5d9b2e85549723eaa767ff4bcf9112947c62a84ff98", + "regex": "(?i)^https?\\:\\/\\/sdasadasdasdsadhgf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "06626028ca9a7b90a0e33ac2937ed9678e4522d40a8f316b069a00115353fb74", + "regex": "." + }, + { + "hash": "1a348f6a13718effc03eb495881e8f09b7cfd49b7992e3b00dc4857198fd999f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkgoodcookingcontest\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9567541ab76ab42ef7a8847bab8a54e94b1eaf0443492ddd5069db69d15f496f", + "regex": "(?i)^https?\\:\\/\\/onlinerobux25\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "086a5a3833e274dc9d1311ea031a5290dc6e963ed46214142a94e8b16e6ccfc8", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxxx\\-streaming\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cbc0b24a7d1fc97fc190ed00622dfa8a24b048472d5db2ed5a93c92407729a01", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxxx\\-streaming\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7556f53dacf51f4dc5dada9cb3488a084b4af8f3d31ae11ca9fb3f413d64d05f", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b4f8030d3483d5fb6c894d2a3cec7123fc435d1c690ba3a771324fc8c89d9104", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ce62c9f15e85d43fe0e316ae8e61b502b1edab4ec5a58e310af4260225a1d97b", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "490fe1175d341be7303f89e0e2b0fd8f4c47cbe6f365af6c666a07fee1591fe3", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9999cb62ef4613fbca9339575810fab6bb0243385990e70a402e2395a22f08b2", + "regex": "(?i)^https?\\:\\/\\/h0tvide0xxlove26p\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a88a92f454ece1e144a77cdc93ce7419cb71f4710b57354d8b98cd25c33a06c8", + "regex": "." + }, + { + "hash": "6e1971ae09eed39d5962fe86e17a7463e0a6fc2d99e43740fea677fcc69b8ecf", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8b4d575f0e068c61a98035f367d05c97ec72969e9d7d38f9a8658acba05d3821", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a61955491d108c03068d2bae3088ee20b7b4e80f0a1fc52a23115960ce7e74cd", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ca0bec2b3f801178d3b8035f98133a129d67ba8235abb87089ccce4625fd9b65", + "regex": "(?i)^https?\\:\\/\\/sdasadsdaasdsdasda\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "056acc899c0ff2fa2b0afccb2eccae02fdb881942735909ffa993b0f9f2f47cc", + "regex": "(?i)^https?\\:\\/\\/putain\\-xxx\\-streaming\\-gratuit\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "93b45ef7a67e6e65d29d6c70e0b7646afa9bde98d60cd9a2e239a489130fbe97", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1d9734c098b6009b16cc998b40d5206ee5c8863380e86db2c607bc331777e4f4", + "regex": "(?i)^https?\\:\\/\\/myjtexpress\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "228ec7cdb862d36a2b0eaa728637c6f32e80005bf0fca73391c76c2723b0d29d", + "regex": "(?i)^https?\\:\\/\\/putain\\-xxx\\-streaming\\-gratuit\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "aa7164431c7e13bfccbd16ebf8e4817a9f5649b1d4b945b2b9fc9441f35a8605", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0665a7e9ee2113610d36a66fc1bdc9a7babba4aa2acac4b71f800623842b21ca", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "79793553a5e57289f93f0d467582237c44baa630b4027ce448dd84d839d46cad", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2a7decb43e3067c31b58e05b72258b03315815ae3659c1d28a93066afbae7fff", + "regex": "." + }, + { + "hash": "7c130ff56d1479effc8a0d8f94522454cca8c9307877a30bd66940ec8f0bfe2e", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-18\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "42da35872f1923fce0b2708a623b4db7e291b21884eae78a64533e1eee35577f", + "regex": "(?i)^https?\\:\\/\\/bolaonline\\-neobola\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8f82311ebca484c4c287fa57b584ee2cfcff1b99d12a6941a7d4438211d7c50f", + "regex": "." + }, + { + "hash": "5d83020cd4b9cb8a287b9180490e694ed077f7e1e50a027e9ee7b582ae9cc512", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7obt0p38avc6jyjy" + }, + { + "hash": "e8f0454142cf0576bf44b4ecf421d48a21a38bd9ed8e3134ba3329aebae769dc", + "regex": "." + }, + { + "hash": "16cdf0f30863b5c9e814d8b26fb077735e2bab94adabbd13d44ecc54ba6bfdd7", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c43ec709d977c003f9aa1697191733ca1dcf4891406eccba521264d8614a07a8", + "regex": "(?i)^https?\\:\\/\\/511555\\.com\\:6899(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eae823682aab7312a170d7741fd3dbac0c9f39aa082c8832999f6be3e81deb93", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8b669413c263dfb77078a54f21db2b5678401c15d0c343d5a573f0e3ca172374", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0e4bd461cc13928f733af89bdd8ae463db54df34b4a0cb0e5e656f864d7c0df2", + "regex": "(?i)^https?\\:\\/\\/bolaonline\\-neobola\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f0a65aa47547d545378fad5537ca2da883b4a5c8ab04333434e75f4e36d4b0e6", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "84a33fe0f95fed88a44aa4757d5edbc4adb17f7f15af80fe3148b33cfe633388", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "49980257a7613be51c6102b4767d5de56cb3f56c07d04bb98223ad4fd516dfb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p[\\/\\\\]+462398082(?:\\?|$)" + }, + { + "hash": "ff6fb0ea2653e6cfb8dac6c7db6ab101ae615643dc8aa1e7b9c1738e1822c034", + "regex": "(?i)^https?\\:\\/\\/streaming\\-pute\\-xxx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e81802d616b755b4c06f4676fdb0f6baf91b6ec54cead418138d2ef6090ef85d", + "regex": "." + }, + { + "hash": "ef39190e3029e4a798e7c7e6d4863f1bf05cebb3f3726e13ed9cae57a96eb924", + "regex": "(?i)^https?\\:\\/\\/revenue\\-rewards\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df705b945d2d7da7996eab079df518f7ef9936cae55fba8935f986bb2ea61d9a", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8c851155384e2938db8ada808729a6ee087e144684b3ffd88171a0b00f49fe2f", + "regex": "(?i)^https?\\:\\/\\/okxamsrhgvuexjnakjsfha\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "69504d0253993954fa40cb90e00725f05a1c8ee0b1f4d65f2f0f4f6ffcf077e9", + "regex": "(?i)^https?\\:\\/\\/onlinerobux25\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3fca4d26ceb7b1b92f81f83cfaf921a28ec1c675e455e286d41ff936dce78061", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "edcc2da78d4f3b66e8be89c826904f84b584539b53bc811d60b9116421024403", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "031ee8ea159e03895356dff9dc9ecdb38fd875a599596d02e3677b6a6ae3fe33", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "055642040301e3be12549c771c5e894cc488b1847e922f29dcf1d772ab081af8", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f79a57603449281e8e1f54e132c12a3eedfb4a39cc231fc648f24a4f47554498", + "regex": "(?i)^https?\\:\\/\\/moonbetsv128\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ce1603ca5d58d3153e1e1963c15630f336de8209400e34215e5805849d4bc87f", + "regex": "." + }, + { + "hash": "529375a47eae0fae5ef3f5d530f0855a945c5d220cf14b3671231a504b755825", + "regex": "(?i)^https?\\:\\/\\/ghfmnfmfghm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "98a9e6707c14ce04b87be6ed6e416047ad759be718b48991de26f8d4265a339c", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8c1f42d45ba53503efbff6f658440f42eccf9f6cb8a60599b7ddb7daf04f0da9", + "regex": "." + }, + { + "hash": "ed92f7db5da24e8e806d8f078ba9e5aaca05e1349587fd19ce1504834d89847e", + "regex": "." + }, + { + "hash": "85d94f0f9cc9d888a3670cba368c96b051102658981ee7f62d57b5840b5593c8", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxxx\\-streaming\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8e4afed68a3d9e4c9acbd43ac26b75e0f41730339d8a33af6612b0c6d6ee0fab", + "regex": "(?i)^https?\\:\\/\\/onlinerobux25\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a0242c40bf769b56df5d6f7709d89b7c6f65ce49ee8d115f945be6b568df5661", + "regex": "." + }, + { + "hash": "a73aee7c6e8bd631120d44e681b85a5b80395416cf72c19d3d4fe5f16a09c127", + "regex": "(?i)^https?\\:\\/\\/att\\-107735\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1486a54cd3bc894cb48c858ad8be0e1dd14a4535d7548a7823eadd665ae50eb3", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e62bae58f099111012ca8a104df465cfd650b4ac182529bc6fc8b3b7e5ccdaa5", + "regex": "(?i)^https?\\:\\/\\/bolaonline\\-neobola\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "417c9d3494bd5a12c8c2a264fb5da99c64c3788fa2796bc0f6e931d2a71c1501", + "regex": "(?i)^https?\\:\\/\\/bandarjudicasino\\-338a\\-asiabolabet\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8addee18be8b68dbcebb57576726a7f93a6621aa201406c15e8eac57a0188bab", + "regex": "(?i)^https?\\:\\/\\/uy6t5rtggn\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2015bc757b9d8eb560c5ab38d047cc260cbc482640f7fa000fb5fe7e9567407f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkgoodcookingcontest\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4ad18cbfd62173b6d91c8c27e6df903f4d118ba12fdac5d4ca8cca47dd89327a", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c2fab8488e439c4a5b2ed166c7be78dfa9f701d78578900abb6a9a7aae3f66d0", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c8e4dc2f014049273fdc5953630b4448e696b1527a5af9d70ecfdd894a7b3d98", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3ece8e947f30b99b5dce1200f592bd54cc45f6804f50325e4156195fb2a617c1", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxcredit\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7ebef62fa0bde08143fe1acaf7ecf2201c337cb6734d4a5413bdb71127e31a33", + "regex": "(?i)^https?\\:\\/\\/bandarjudicasino\\-338a\\-asiabolabet\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1efecd06a1c2f97803251838b9f99d525c2f375cfddca5f83e28d3a4fbff3b08", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "be0dec92f6d63753f19d7b765c2e7f7317bcce8ae489cab60b9087de17962b25", + "regex": "(?i)^https?\\:\\/\\/foodnetworkgoodcookingcontest\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9190335c65ac44c7625c1b26129c053f62fa82db3dad57985f3f4a267927c9b1", + "regex": "." + }, + { + "hash": "5bf8ca8382f1e15b1cffdb108222732f12fad5b1466e91d691161c9dbf3a1cd7", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "68841c7cf366ba4f91a97dfe8a2ba862337d607105a3d04ccb8344336b18270d", + "regex": "." + }, + { + "hash": "f3c4efdd3e635aa8ecccf1b1a33c7411e3d1f7430d2d4e4728095e72175a89ab", + "regex": "(?i)^https?\\:\\/\\/rachels\\-stupendous\\-site\\-ccda7d\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ff93eb9de7c888acd98355e3b785751215ca03427b8a4ca93ec0652d7e03a7b4", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ae264c5e740f3407253dc788e10045e9c6e3addaad9abdc2a4fd7594853ad4f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c022998758269c1c5b62a59d5637f27b6293f80a0cde8991d01a37082ad5200", + "regex": "(?i)^https?\\:\\/\\/sdasadsdaasdsdasda\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e9109dcd11f3712ba18742a344f9015b61cb332e5cc2749469ce74bffeb490c6", + "regex": "(?i)^https?\\:\\/\\/foodnetworkgoodcookingcontest\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "91f519f051c58b968e5d6f4be55e489b924f25f7f4aa38edc28f41c2434a5980", + "regex": "(?i)^https?\\:\\/\\/sdasadsdaasdsdasda\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "db18837e3bb20327b245514efb9f382dc0a343af66dec73e9b06180b63021cb4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "489180e639ba21f20dd610451ef466e210bad8b898483eff0e6eb5b599a7146d", + "regex": "." + }, + { + "hash": "ffbb6afb7ee98ee6e49e8a452ce56dbfd9c25c0d60fd8cf0413ab59ecd25f48a", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "23e04f80020a986cd0477b6775afa5d4b2cc88dfd1246de47334a58c1e77ae03", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d24cf302c6b750a2f02579b57638ee5b36dd28582f4c46a8d727d934deba183b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05b7bcc6ab544556f9d76a8d71f43413dcd8c85918b70ff6b4fbd9403355df7e", + "regex": "." + }, + { + "hash": "1379eae6eabc79dd3929bb88d89aad4a9c0f5d3097e3a87e054d6ed3014a94fb", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0cd69964415669d8e29601446b26138ecdfd1a3f70b5bf39dfc8b5e2d6323", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ea0e61fcde9bcdfb0c55f21c61a7445edf0334ccc2b54e99f2116c41f1d323e1", + "regex": "." + }, + { + "hash": "f5e242efbfe102c32b2a9f6f041955f7bd512a4b8e2591aeb4af3bbc25c639bc", + "regex": "." + }, + { + "hash": "b4d9f14cd8d0621229bb59abaa576dc953ed6575bac20375a7a24dff353804cd", + "regex": "(?i)^https?\\:\\/\\/okxamsrhgvuexjnakjsfha\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "137ff39ab930d6314f792f0af63cbc8e3d6e94bd101e4eb07a099c67d24fdddb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8a7ac4d7d5ebf7e285c2d514c51ee7c6d04745d091c5b5ca729b6aa5caccdac6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+no(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "975c72abe78e8abd77fde31bacc665109a07061c13eba8c00b39fa404d2a84e0", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b9f61c92e9a63d45d59e1d8c7bde9644a57a79202c3b2b8fe6689e6132d512d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "89d5e8f9b0e9c58baa50ba87063bb727981753727150e53211eb030caacd4973", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+in(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4d84e54ded76616698454c99ec91c279b17a676a9a07d0ebadc0eaae5b302c4a", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "653bcbd08c7a6315d5605ff5b78d6354774523efc601aaed4bc2b8e173fa4281", + "regex": "." + }, + { + "hash": "26f0fe24a47cee3b4b15a91d4ffc15dde6d2c82a9cbd451c06d948f4075b1278", + "regex": "(?i)^https?\\:\\/\\/bolaonline\\-neobola\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8f9f833faeb2a1ac6165023cd03fa8bd8ac247bf20d9f62aaa37726d7eb39c39", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-18\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f3abe46d280e17d7bb9aa480896575b4ae729cc62dbafafbcfc3bd223c698651", + "regex": "." + }, + { + "hash": "56b3f9130b8f98b6933b3c0905ab402ee0300811dfcf0be7b80936dc177121c2", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "98e3771959bc01b7bac7dda7bff4a09bfb270d6261a3439b0fb13855b4ff5deb", + "regex": "." + }, + { + "hash": "971f103be2c230b23f72d37fc40c8867ad2f6b5b6c2b9b3632485e59f8752d3d", + "regex": "(?i)^https?\\:\\/\\/bolaonline\\-neobola\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c52a9496c2e9590c53f1f6342714c52f294da38b2cff4651992e3da06274a9d5", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2cb2ad6ee7e501a595c413ba7d66d0c7e32e97912bcef1e036b4ed5c80519f20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\.php" + }, + { + "hash": "4751149ad8739ae23ffd9cd3fe4fcc8a10358a3a0e444048ef3dca6499a605e4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.omfbcmb\\.com\\%E2\\%88\\%95tabdzd\\%E2\\%88\\%95ftcva\\%E2\\%88\\%95zvyrx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zkymnkdecm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ccb5b2eda7aa3416f8009dc14e81aaec95a6aa3d1baa967f4af06323c9c51a68", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "727b6ed63802553dddae0cb564b3aead56ff2cf49a907ba1ded96d5facb8833a", + "regex": "(?i)^https?\\:\\/\\/sdasadasdasdsadhgf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4141e4f20ecfa06afb35f7fe9e2e6e14ed88a5ae11bf7c20df1f53993f14b46e", + "regex": "." + }, + { + "hash": "d8b4808cd6248e65592c12217e539a3157132184cf3ba5a8d8727c2cdaf24607", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "96a4f84c85b37f704eb5d97f1a4bfc2b351863242cb3454159b04d01a5657a21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cfdc68f2ecd8e0a3c6f4b9755115794257b56226ac767ecbcef1d7afe3ac339b", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1b9029373ecd12fe42418eaa2bc0e7beff78710c546f70e40d6d31c47dfbb736", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3f1d45a595cc6eaa3f2916cda592c06aeb8029d7d99a1111d6a185f169e9b18f", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-18\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "50bda5246ae3478dae5ee0f6bfc96631303030f94c694a580d227556ac731700", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0d4cd70045ed98db0592e5cd841abfc7738c12b8109787b17f732b32551e1372", + "regex": "." + }, + { + "hash": "d0c689ca6fbd102db0fbdfdd614f769e635525a72ef389bbb317e19216d82588", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f445b8026c82916422ac157966cd4b5c61e33c26777f6b264a032e13bf6a6428", + "regex": "(?i)^https?\\:\\/\\/putain\\-xxx\\-streaming\\-gratuit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "edcc2da78d4f3b66e8be89c826904f84b584539b53bc811d60b9116421024403", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Order\\&a\\=daikuan$" + }, + { + "hash": "1279b424f53139c3cec273c79e653773f4b4d6e2f500f75cfb4f8683179876fd", + "regex": "." + }, + { + "hash": "2e2541b8a042bcc20c12ad5f4423be3c4ba78f175abc4ab09efab2907c7e6991", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3856025ddabaee5f83f4cddc45b88bc5e776ea9a43596b1fcf1626af3a4ce14d", + "regex": "(?i)^https?\\:\\/\\/sdasadsdaasdsdasda\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e55b9540062e75155465ce0c7f33c29a9362b37e49fd7e3d37055ece03e865de", + "regex": "(?i)^https?\\:\\/\\/howtogetfreerobuxcredit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d3068272d16ed46cf313a3cdba2709de6be59c344560336c7e6b6e5281555e86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2c9f775438de36af8d0af1efd2ef18841b8036e0c66448b7f74a108d9078e9cd", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "72bccaae2ae7cbfcd1cdfbf69d3fdbb2c005181d6704a1308939b3f68c6875a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-2" + }, + { + "hash": "153554c56f5cd3c3ac215c192364d9906ef041012e7f38e2f22cced7ce79c33f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkgoodcookingcontest\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "89ca57fca62bca80fa1ab67bcbd9ba966e9dbd31c71fef2de9a863fbd263d7c2", + "regex": "." + }, + { + "hash": "da188527e524f3936bdc98ec97250768198b0c0c479c1cc50baf7e1ac5665170", + "regex": "(?i)^https?\\:\\/\\/onlinerobux25\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b29d38af0ee9e36e450dddb49832146ed389063988c97aa6ef698fe0a8db4a5e", + "regex": "(?i)^https?\\:\\/\\/dsg135sd1v3f5ss\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8b7c976ae9c2a91d7752a13b173b2009b6927e2fc63e4e0c1f75284e2edd785e", + "regex": "(?i)^https?\\:\\/\\/onlinerobux25\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "50df694e1abdf2c959449ac5a85f2436041be8df98ce32a03f507508438ff707", + "regex": "." + }, + { + "hash": "2dabc5f850607a057af0fa629305f1d63b2ec82ef16f2f56e748b440329761bc", + "regex": "(?i)^https?\\:\\/\\/dsf416574sdfdfv16\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "59c281e6fbc4731b0ebbe35294ee53fe7c9a9cd013688b16843e46817d663ec2", + "regex": "(?i)^https?\\:\\/\\/31468416514\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "98081262ef03ac1cffd45972e67d68940c41bf71ee0dbec6cefa7a5e0f144ea9", + "regex": "." + }, + { + "hash": "d0d6ce3fd05216277909318cbcfb3b735a8e902d83789ab6e95511248eda1c85", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2d12e725f032490e5dcf3cd6f26093a4a3b992a3efa5a3221da7bd26dc83207d", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5239df431ae31761eacaa6c0c2b69096f09b9d3b8a67822cec92efa57d83ccbf", + "regex": "(?i)^https?\\:\\/\\/d5zd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "216ec265f605889435b22ae48b85c24b0b7ee3a3bbd76d65ff4e371005cba136", + "regex": "(?i)^https?\\:\\/\\/h0tvide0xxlove26p\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3c23a6af00f43f731045e6df14f04859d93002ea09568610cd4b871e154f2561", + "regex": "(?i)^https?\\:\\/\\/facebook\\-hacking\\-1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "61c2530c1dcfd45cbf3eb2faa8da160e8251d1c200455db8f8a279e8c26da5cd", + "regex": "(?i)^https?\\:\\/\\/sdasadsdaasdsdasda\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b5ed43cb1ed9c4703b8f74869f6126e0c9a25bdc3f3a650c3760ebc1278667cd", + "regex": "(?i)^https?\\:\\/\\/hotclipparadise\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a45a0c80f557392e672916aeffe88209d9b3c1757098d524fba5c8b741862377", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-18\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "72a45d51f80d7c5261ea9571cd88b0e1b86a827c2426642f8c84c3d313d5cb84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "db6780c253a3dbfaf441b0276094b38cf6a46a57a5966153529cba39a77df0ea", + "regex": "(?i)^https?\\:\\/\\/bolaonline\\-neobola\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ae00b747c09ca11711836feba2bbff4cb0a4120607666b7801751aa6b9a7634f", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "07726a7b8f73b7c1b0f77ce776d0441afd42c19d762dc717c51c479fabf5a327", + "regex": "(?i)^https?\\:\\/\\/h0tvide0xxlove26p\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "48028eea1b09d8b1d1b237fc94cfaf29db59af2a53457aa85d098be2b1e31ff9", + "regex": "(?i)^https?\\:\\/\\/pute\\-xxxx\\-streaming\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2c3f66cd24c7d3922f04d5bed875923b9fab205d85d607784b6b27c280ee60d5", + "regex": "." + }, + { + "hash": "0c4501421789aa0e37d1259e8a76f23aad7fa7635505b3e55e914c9ba116ee5a", + "regex": "(?i)^https?\\:\\/\\/netty02\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c02cf9c40a3ad54a0fcfa6dc713cf0d24cafe534fa5f182c22316b03b12314cd", + "regex": "." + }, + { + "hash": "287fd5df6e332395c4288c210e04165781e5146b3a7425f1115712bd171b1d25", + "regex": "(?i)^https?\\:\\/\\/bandarjudicasino\\-338a\\-asiabolabet\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "688bcdd444352a05467bec84971f3b0e129632cfcfd92a0a58816d9c1fdc888c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+formulir\\-konfirmasi\\-tarif(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2360a152d5c0e41c4086034f4520ef1df53c7c1127aeb208e045eb5c384b80f4", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "32286b5bda509efe656fe8afbb1a3040bc7d1f56808efdc517bd1bcb053b4340", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "12a2d4904f0a65cf1723fe97ce18fee2ba53bcbc9550114e236b8d5c7bae49a7", + "regex": "(?i)^https?\\:\\/\\/br5d4\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "969903d3330f5b4781e3e0dfe2ddd94a9109efb1c3cf1da881276c78fce2cd06", + "regex": "(?i)^https?\\:\\/\\/fullvideocomnfbnghhg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bca2f5472f5a1a12887f3903553e5f45bfb3dc592500e03b9c795981d1876097", + "regex": "(?i)^https?\\:\\/\\/xhjhj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bd07db2c36629624d3e5ac6811db4d41c33faea0023daf0821fbeeb377cd5a3e", + "regex": "(?i)^https?\\:\\/\\/bolaonline\\-neobola\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c43ec709d977c003f9aa1697191733ca1dcf4891406eccba521264d8614a07a8", + "regex": "(?i)^https?\\:\\/\\/511555\\.com\\:5569(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a584875249a3611523dae693f1e6013ce241a6529b7b0efbe5dcffb5bc4cc5e4", + "regex": "(?i)^https?\\:\\/\\/femme\\-webcam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ba18aa240b861281bc9dd50db7dd689297b4013d4bd6e6f78999bd10b0aa0614", + "regex": "(?i)^https?\\:\\/\\/nfinedarin1972\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "186de5d72c48eaf596c92603906e65a2eda396a3243e6a3a6ace9001fedb2655", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0cfa5f0c2606e0184f28e199b1b8b56af0d4d3a3cec2465c93ba2bbb0dd64fd8", + "regex": "(?i)^https?\\:\\/\\/haljmkanaa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "983ffc36ac3c34b23f22315de917f43c7c7e9270bc2c3bb1057921c89da8a2a9", + "regex": "." + }, + { + "hash": "b0fe7f43eda591706c69fa7adddc2ebf67c2e23df0b9a97c6e19d91eab326e64", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "484635a13e1a66a38997a030712d092ce1ffb0537705efcb8df3df770bd087aa", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gay\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "37893e50ae8d2446af7c638c51c64746745c38ab5dcf7b6b5a9e5d690a68a6cc", + "regex": "(?i)^https?\\:\\/\\/girl\\-cam\\-tube\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "dbe14bdeda8f994c607f74ec5f21582388c50d8ffc12718b58204a5ff280ff42", + "regex": "(?i)^https?\\:\\/\\/putain\\-x\\-streaming\\-gratuit\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "34d4c7c35c0b649d24eddf06e6e048aa7573d78859739939b4de3a971336712e", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a54c6c0d2f8e35f35308cf4670cbb2832b099dbc48b831a572014edef0b03342", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "08718c88b09e44994f704ebacce276e002a1bd08da2f6d1036adb81ed3702dd4", + "regex": "(?i)^https?\\:\\/\\/cam\\-teenager\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c5f500fab95b979fff6c9abc51b2cacfb6ed5f598be7648f59e59f1933c8f3d6", + "regex": "." + }, + { + "hash": "7bfac114bc8094f66c26b8452db90224282cc25f83953c8e7048410eac069210", + "regex": "(?i)^https?\\:\\/\\/erteireuspeed1977\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "90b549dacf2beb0f24398c6c626982e1d503d479b646c5c11a32197eda5026a3", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5ec1d9d66e9dd884abc1251f0292acce9bcd5ad46cbf2fadf014ff17e3a08802", + "regex": "(?i)^https?\\:\\/\\/coreywhite22\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "13239415282f948364bac1ffff52578436f14e2c9a97840c17690ca9c41c621a", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c891ab62257489919975d1dbda74cad34c0b0480332089a226ccbde31389ade5", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1fb25663b9d53b4e8e0f7467b9da2981b99f7f7b2ef01dc443a3fbd1a4d4695f", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "864d1b7f1a042e9321f74ba4c2d43ac28bc37db9c6c8e501f201d9bb8bf5b44d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "349ab6e9e0ddc1333538db355879bd59fe6c59685aa6bf595be7067898015344", + "regex": "(?i)^https?\\:\\/\\/femme\\-webcam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f17de6aa78084da1bc0e8e5df6abf7e39b44fac9e93cf0df8fd844fdd742bb06", + "regex": "(?i)^https?\\:\\/\\/freefirereedemcodefreegivewayfree\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2bfdc22a6eb1b343f06f3dc83fdb7f42cb99d082c5a0eafe63504da2e545f4ee", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2cc516b896ca9120443711977905718fcd1bdef7023226c3af1a75fc7b46d538", + "regex": "(?i)^https?\\:\\/\\/wap\\-cam\\-porno\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6e04ae104c01240181dab09fc6bb00456f2c737e5ee51eb5cec619cc4bfc6ae7", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gay\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "05d04d7f6659ab9782c0043fa2f2e7abbea925097d4cd040cc087ae0ed91e186", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "6a79283e1a31bc9175cfa4c6b5759d9e3079bf4bfb839755742d3955517c660e", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d80a2e280cbc852df8a8834c6bd1285dac63086a11e605043d7df989a2e31a93", + "regex": "(?i)^https?\\:\\/\\/haljmkanaa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e6282cf259a4e04162ba42b3899811043f7b682ffa7ef6b443f3526040da0f71", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1821ddaec3f801221ecace159b8b59a807a5cfc0b2158a09b102e1366e3a3e30", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9686691ecab24dde0bea8f548e3b9e60c0992a29c2e36178932ca5d9cc2b5ef9", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mgrskojuoq\\.com\\%E2\\%88\\%95ygwlnyjkys\\%E2\\%88\\%95vjwxutln\\%E2\\%88\\%95bgdbnpru\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gdfxyy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4ca2d444e9b4bf433b158a9c0626b54088bd24eb7e1ff7308ef3e4526d6d9a39", + "regex": "." + }, + { + "hash": "b669b9365924ae095dd269e256e7d88266d6bca0424e233bd95e04915e6b760e", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-cam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "492bc061745d6cba7afd6fbb1689001bc5731854eee325f971bcf27d7455dc92", + "regex": "(?i)^https?\\:\\/\\/huedegtioden1976\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d085744b6c01a7c0c0a5fa53e2348b1303ce78773d0d13e1e41819fc414c4e01", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "251e5bd6f42896e20eca05978e8c0faa52ff02d011af17d65eebad08583099ca", + "regex": "(?i)^https?\\:\\/\\/annonce\\-plan\\-cul\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "628c718b56aef35f4a26aaf55f223698d4f90763d87d590525d36aede6d4867a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-rencontre\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "943c5e28218d968537f9476c0c0da21b6bc3717adfd09ba46c0b3b1b4bc2a115", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "574c341f46566607731751b59763e5f482ec5752a34347e66c2ad2d5c182182c", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "246d7a91679d568945e31b736f0e3e8d9d17ab0d727d78ad424b240839899136", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c68f647a847edf37aa8b42d7fd16177b3fc59849844063e525ebf7e19963c0cf", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+irio44(?:\\?|$)" + }, + { + "hash": "11379b85ba982ae6f9f6ef5e0a4504181609d1b47d8a04edc2a819879dd3160c", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxx\\-streaming\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "84dce83093919a3f7078cd9542c685beb2f23f89f79549423324434c6ea4c924", + "regex": "(?i)^https?\\:\\/\\/cxzvxzcvzcxvx26\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fa7256cc1a0aa533108bc7381d8a20618a956bd71f2b9a0283319c2826365177", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "21e2017b7acc20881e333cfc6052ea38f52d09946c7dab63d2da84c13bdda6c6", + "regex": "(?i)^https?\\:\\/\\/cherche\\-plan\\-cul\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "726aea68a5e0ac88a24ab84d987b983dfa4e22cb6dd0f90d3f273f37cc5e802d", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxx\\-streaming\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9102371592b9544351d1bf9c0c3cc18c21e2720e70a2e4d9228171f53448f091", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4a7c57f90856d39a6c85cd8fe9c29356400bda4c9c08e49321751f37c62082b1", + "regex": "(?i)^https?\\:\\/\\/huedegtioden1976\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "eeb4409293ce5b92948b3b7056fc8343cb4e142892417db27ce05c9e9f989860", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cc25edca283c530dce40bf62b981b4ed6106f21d44fa659cb5d7ed8a135ae7ae", + "regex": "(?i)^https?\\:\\/\\/cherche\\-plan\\-cul\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ce43f7766316996d6a03b3b5626f73b41522c924f35673722b411081ee6763e1", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0c44dc6a22f606063bbfcd0df455f4707261e66cab138bdbcbbb576941352105", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-movies\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1251f362448dfc56fb1fbdaa76ed3e479c2335bb2d83f30db49a682e9236306f", + "regex": "." + }, + { + "hash": "8b548f2b6a80184b4eded3e07f0e492f3b22fe3207f8a9a9cd7f07373e51db8c", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "92f61b7f9d4469ff141e224a7d53bf3dddce07d76dfd145cab98061d3d7235ce", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "83ce5add50b320cab7cef0c86e020d3d335bc0967f36ab1769c47e25293d0757", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "aa80e50bacac38a602b853dee4f222855d10a4b4eb475f6837987096d72737b6", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b62b1888095e462215a01896f9218d6a0348095e6e815cd19ad927d0339a3627", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "59e20c392f239e5a573f2c9d6b584de01ab050204bc862f7b5ce28e351c163ce", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "af392beccdc402e84db7bf32ea7575b7bdbcfb5dcac92402c4675b2800fa2b62", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "90cb5ff07d13176f21bec6935bc80d1faf59b994224e6ad18a97394049547ad1", + "regex": "(?i)^https?\\:\\/\\/girl\\-cam\\-tube\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "804c282339902de5947b73d96c5d728992748987cb80a29d0dd18e59052c5f11", + "regex": "(?i)^https?\\:\\/\\/baklaallajl\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d58ec5d1a0fa604d91552a300dd53d4580a253a1e8fe2831fc271e8e21e8e645", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "90af8070d580666233eb519f75fb601adbfd2e314f29c999b426b033cf7e1e88", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ygqhzbljzn\\.com\\%E2\\%88\\%95vqxbebqy\\%E2\\%88\\%95vrjlesouz\\%E2\\%88\\%95cwztdrgacj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ifzdis\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "430109d5ea46bc8521f69bd4de386cbdae23b0588d17329300ace3d96a644dbb", + "regex": "(?i)^https?\\:\\/\\/web\\-amateur\\-porno\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8b21829162cd8d4f8134f8f5c42bee844b68aacf6405f968144db6c141aab6be", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d830836cbd2499f867d5cc556615b5e6da5162f67f7e5de5d06ea8efda84a89d", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-cam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "df1a3262ce6a607e499acf20bae9a1513e3ca702501a28a49bb4cd62ed75786c", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "12c687f0c4e20d9fe8c330c3d0590cac5f268a9356bb0f53b5abc9a182bd8358", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4c7e2692e429830daa3009cf838c8396ab2750418a283a4a6e47cb24926c64b3", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d06429650f39052549fde80e9dd82835b59415b33d4fed96273d0aba0bf2b707", + "regex": "(?i)^https?\\:\\/\\/webcam\\-rencontre\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1dd89411d1c9f8bfd0524b0e028d9e3ca003b5c4efacd0f745481d3ee8adee14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "667b273ff6d0450708326d5b102655cb8a7d339ea874e371df62761bf47cf659", + "regex": "(?i)^https?\\:\\/\\/baklaallajl\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "59f74806eece3c357eecb869ed85dfc397ed38c84aab55c3b13e942570c2ec92", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register51268(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38b011f22510909caca6f07cec66026fbe6470d96fa76ef60e9197d14df822e2", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+irio44(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d8124c7b8461165db9522de9c7d2c5deaafcdea0ab2d784e03930ca7dedfe452", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-francais\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6e0e0fc8ee0108c6650ff7df4b7c4993a946c4d840ef43773426f9a2d6b36e60", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "71411595b18ceb30dfc4030b007f2acacede8de8197e5c167ee51b65ead60137", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gay\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ec18e5bb1f75e964d1c71835acdafa90cc9dac72dd95bd77e85b850167d7933a", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "59d85901453192aebb67668f76d5cceedcd0a92b70c85e53092e91ed3db5a563", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a74693af6e3bb709467e6fe49a338e983a8cf453106193948eaa3cd50bd7747b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "12d6566333f4fecd844bf4f6ffb8b8d2950b9652af979ec2f66614afa8600413", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-francais\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9e7e2f005a3076cb20a174379ad880817b8bd9de928b96e3dd93fcd6bd337452", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dbe158358d0e5dc5086023811996b1caa6e318ec81fa6b9a7853f0edda4d71c5", + "regex": "(?i)^https?\\:\\/\\/hamakioa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0ef1272b2f1018b9e7c41b797e4e124205a34b17ae8b814a699c9e2a71c5762b", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\-gratuit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1d903b3a57863ae8fda8c8331b449ad5b457f0ab768bf85117101e6680e3e042", + "regex": "(?i)^https?\\:\\/\\/femme\\-webcam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "baf8f90bd7afbc093e7333c0c5a9b0f9079d62d7f3267cd5e7ab76002c5b5ab0", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "00c9fe8157a8ba8790f365815ecc832a628db52f26fb2d801931673dc30f0118", + "regex": "." + }, + { + "hash": "fb6693b28fcde7db997752d48ecbb5e234698a17f0fc32d79728a011aaedfe5f", + "regex": "(?i)^https?\\:\\/\\/erteireuspeed1977\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2bd01b4705edf6d3598c3fcf5f1382ff35b03164d2eca7cb2b6b8c2e103e7a29", + "regex": "(?i)^https?\\:\\/\\/baklaallajl\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "aa0e83b9113f8b5927869bd74aa1af6c76ecf7d31580c241ec71c7235e1e8613", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ti_dn__\\=3b243f7a\\-2090\\-4e4d\\-aade\\-88117cb6c726\\&__u_idz\\=(?:\\[|\\%5b)\\~Ind_ID\\~(?:\\]|\\%5d)\\&__turl\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafkreie6ikd3stv2aur5olhjzre5unmt6gkdsxqprwsmxypmkjz4tmpsou\\?pagefem345\\.html$" + }, + { + "hash": "5a3ce0bf87cc5fde35678162ca3a0ce341548f0db8fdaa09ecbece93d67e0346", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c2a3877a371dda39ec8cd3fb366c1b9689541e3e81b0859760d63200cb702e65", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.s[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "528b438ee602d9402513ab0bb0ef50d4ce8123bf246405af0b8d51aed0db1da4", + "regex": "(?i)^https?\\:\\/\\/tetesocomp1972\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cb9dcd51052daa810c7b27ce9641f7b140ffb4ddf76243145cc8381e79d74411", + "regex": "(?i)^https?\\:\\/\\/messeomn\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cb5662fa5da2b4a3516b06d1f94e9c72d3e7b076f8bb64f31772ba02aa0126c8", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2ivkxt(?:\\?|$)" + }, + { + "hash": "df43d69c873e90eb68a8160cbea810357101d0c6a254cfbd8f49ff157557dc56", + "regex": "(?i)^https?\\:\\/\\/putain\\-x\\-streaming\\-gratuit\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5a3c50a2f67aafe50a30243c7e2d240e3944ebeae4db1116b3f339a64b73edfe", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a49b99c9d3b25ea603ad6723651788b87e7dce9c9a3d7bd8191e8862fe0665a6", + "regex": "(?i)^https?\\:\\/\\/putain\\-x\\-streaming\\-gratuit\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "71ab1985897de6fb8c6faa8d181f9936e76877c2c1a72be5f5e140aab1b4f18a", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "38b40bf7c183fb5bb5f993e9789c5bd6c7f35e80b5c36ca96e15035685e2d7dc", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2e163961f3963c30836a1f8245d9f8d674b875aa3afbfb160127dbab173a232f", + "regex": "." + }, + { + "hash": "9f76fa93e31cf154e536f443ad657b0fdc077be259577a9b522d2c8c93507746", + "regex": "(?i)^https?\\:\\/\\/girl\\-cam\\-tube\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a574e5df2300cc6f4ff50838b47fba7cae51e8fb8763eebabdf02abebc759c17", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "116f26cf293751129b08373a32cbc3eb365ed399d4c319ab0ea61ca2065e9f36", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dbaf00924ded1db4124a7ece0d8d3912958fc414759881d7c1ed94ad96ea0eb8", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9dab6023ba28505d214b387c29ddfbd7e0d56e1ccfe8dbf4ea023299ff4fc35b", + "regex": "(?i)^https?\\:\\/\\/tphonnanelpi1977\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "20deed54c654e5ab817ac0d69a79d2fd53e6b9e7e95410d2c77de1e9db00fcc5", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "bef45971b97214251b3fc119ce779e976ef2fb49f9dd2e232a0d28796fb7cfe2", + "regex": "(?i)^https?\\:\\/\\/freefirereedemcodefreegivewayfree\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5b75f6abaf1427fa41145a840510891c1683f0360819a88ae10b300cac50bbb3", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b42a00f02eec5cb33c4ef183b4a01de8b350272da103e8bb316ce36dc78be9dd", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "af5137c3cc2b496a0c3f40642cc9ce0218ad25e602b25439c5a353e30c7d0f56", + "regex": "(?i)^https?\\:\\/\\/haljmkanaa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7a7016188e8917ad23bd10623bb6a7e79222c6b2d2c5103c55ed9e7570df10c3", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\-gratuit\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "63ea996aa659a664f1c94fbdb98784519a9fe183db5228dd6068d777d8a56a53", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "814a79616c3047e6de74f43cb3f81631788105f6a0a7a49a727dad4617e3c59b", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "11901b11be7c5999e8018e5126908a6bc9d36148e30ca0256b110f8de6b349f1", + "regex": "(?i)^https?\\:\\/\\/putain\\-xxx\\-streaming\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a30fbfbe065d43ff579730a5ac32465080cbe04af82fb693abb94a534e438d30", + "regex": "." + }, + { + "hash": "2e612b48eddaddaeba375743e515754672f30e350e0d024440215193cfc4404f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "50bda1e12129c8a1d535c79daa936c9100a703ac207a1e1346837bff5caee2a3", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a486288fbee7a36feb543350d0265ed000a1a3e514050c38a266340ab455e956", + "regex": "(?i)^https?\\:\\/\\/tetesocomp1972\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3280322363880e3f992ae3fe111b3288121ab2224d482b186495fbb34b6b7b99", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+4eef59(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "014ae66c75f429e0452646dbc5a4dcc8c0da65b9d9639521e281f3aefbc1f131", + "regex": "." + }, + { + "hash": "dde0cca06e09b0bcf29f0ebadce60e2589350c9dda4c1f094b28f27893ba9985", + "regex": "(?i)^https?\\:\\/\\/putain\\-x\\-streaming\\-gratuit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "178af13dd64c0ece9974db4d5d22b8d299b588b6f12a7a3d2d75d99679aa4613", + "regex": "(?i)^https?\\:\\/\\/cherche\\-plan\\-cul\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "20eacfb1949bbcee942ff97cfc922fba57d9824ff937b8eee5b129e81d65f2a6", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7b86df5d5855e3bf3e801aef3755ec35f93ad12b23c07571e8e7eb64c3492cd6", + "regex": "(?i)^https?\\:\\/\\/dfgjhsdfgjhusdfgjhusdfgjhufggjhdfgg\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a3ab4d24776328616ede38924c7e3b266f48f9e15fb916ec85253269bd1893a", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9b6d5b53c061bd11ed2a83781e8784290f6c6d07dfc31fe2c463354708cdc3ec", + "regex": "(?i)^https?\\:\\/\\/web\\-amateur\\-porno\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7ff55c838412b1d18394c30d4b6248d9e5556fdc4b9e01f27532e65251126649", + "regex": "(?i)^https?\\:\\/\\/bhakliaman\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e82d0384f0ee4176a03819a304010bd469ef7f2c2c47aefb676e1db1e85659a3", + "regex": "(?i)^https?\\:\\/\\/dfgjhsdfgjhusdfgjhusdfgjhufggjhdfgg\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c26b809337d89529495e0eb30ba4690dc31d36b9bf7ed0e3c3871e3597ec9983", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\-gratuit\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cc7873379b8eced7f3434c856fda28c986ea7688c0001576529ed5d32c196b6b", + "regex": "(?i)^https?\\:\\/\\/dfgjhsdfgjhusdfgjhusdfgjhufggjhdfgg\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd18ae70d8b4419fa23bae64a1fe7e8fb089b8a371e2850758d768698f2c5941", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\-gratuit\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "71b74f0711908a545a0cc583e2e1c303eef4db70052eb04c1dec06aeb9af476e", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fb6153d0b92b7959d6e3daeed320da6b16fe7da936b625b83908929bf7f1cd5c", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "313ea6dd1ffe3fd62c7dd6d43e0217d527e6add5eb9f8366ad09344caebcc9b0", + "regex": "(?i)^https?\\:\\/\\/putain\\-x\\-streaming\\-gratuit\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d83017dde4c88cc53f19d043e00e525fc3271e6365c575f5e8e1ae27b824949e", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "30a7bd619288d21af275692adf96d1738b6b86c1e9901ad2d7e7ecff1d5e13ad", + "regex": "(?i)^https?\\:\\/\\/nfinedarin1972\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "133145df223828843a3d33e87c7eb6c951f8341636914e251d9c18bbce1ac089", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c96b5ba2075b401d916bfc6512753c782b26b47fd8bd1f8bfa1a9c4b425304bc", + "regex": "(?i)^https?\\:\\/\\/dfgjhsdfgjhusdfgjhusdfgjhufggjhdfgg\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "56a5ebf3370d33ff81a9782557bd4ee811634acad7aaf87e4432b7e271db8735", + "regex": "(?i)^https?\\:\\/\\/haljmkanaa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "853c12885041f6d520ea92a249b1ebcf4a72281878c5988b9971f09f4d560f03", + "regex": "(?i)^https?\\:\\/\\/at87uijnm\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "79339e3f403ab9061460d478f65b81d4a652e53253f4b50a5ea8662709bcc1b5", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a3a8f03ba682f46fef77a533826bd4c591b0a3ac1db6a107f2f34ab09313a146", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d55154b9afc091b997dd2407509e943f12028f902f3ebe23872da35e6ac9ed4a", + "regex": "(?i)^https?\\:\\/\\/bhakliaman\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4cb0dfe34c8726af3d77a8f38014945b947c9c21c084f0c1dc0e240df37df3b1", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-movies\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e3e9f34f420672e56d82ba50da9e7efb93eca30601318f7f203b2ff93a878dcd", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "121638e826d5e911db9bb120bd939173902121ab156f09a2ec8618ac8f572f38", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-cam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f8c19815676203cdfa3f67f6d99a4a2be64832f9e7264d7fc97fd526d2618cb2", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5341616437d95f4e69d65d5b95ac81b89b39eec59a0be3601553c0b5987d4b34", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "aee0d419f5d39ed5ac040a1e5c981fbfc40d8f46e2c74b9e0090805954b9de04", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-ebill" + }, + { + "hash": "c79d3850d9ade04939c4b0696850f249d15ea9e17ed69ed8e2b6ad04b3add30e", + "regex": "(?i)^https?\\:\\/\\/wap\\-cam\\-porno\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4f5a4791cbed83dd313587c9f304d8968bb6951ab1755f474cae9dcef7dda0d7", + "regex": "." + }, + { + "hash": "cd4d63a8914f0987db77bf4a7b12df113989faa3da7c8e1dbebe70e9ab550a24", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5e89ce99f44297cba70cc57dba1fa55f8202a48afb3d717c6d975e100aae71bf", + "regex": "(?i)^https?\\:\\/\\/cam\\-teenager\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "961d03949d57278d89187c60071589df83d47c9a32fba93b79d077812aeabd91", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1a46a31a6295239234d9fc17f1db2f472ec4952a4c6817828ffa157bac9bc5e7", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "27de305a6ace021d51ac29354a61a21a80ff67559a1741445988119bc82ce2cc", + "regex": "." + }, + { + "hash": "dc480cba9eacd4d9d9b588731f044c1e10082907d1a861323e45f937a17ffd75", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bf57aa41b23bf0a719dac387bcab4f82c8e69e24765a33160332efa723248591", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6d89eecdebd1fcfc97a6b1b111ccae8f557785efb395a6c294877aa19ed8620b", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d4e82d0c93ff12d6343def47b68a49f64e7d03df1070815926361f40827c34d9", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8b8b3fac38bcd0f5e29c61cf43fa9c329dd105e05d7632502279b2bef86d40c6", + "regex": "." + }, + { + "hash": "8f4c38e5ea870504ff76c395811728fd8e6315a668ffa3e550f663026d71b047", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "017de1eeced0a916493f1e1949a1a9fbc16768fcd53377ba8eadb7e76c8ba0bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "609a59276ab901f2f98a6693de19153e140566f98173d1712f0fa676abd07dff", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "60539fdaa5ff4e5046d9bd4eac60eb2d788c355c2261d37f708dad7746878f24", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cf050be6094cdca2d7a9577ab88428a8917203c1bf87b2708285d0b8272af33d", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9495d57ca96790f3254ffbf06c7e33f2d12e30d5ca8b79c20ae54fad75f52971", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.s[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "b81de7a7ea6950b0b1aba2ba53ee33fa16f25306305c67b4001b1e8f98e7c379", + "regex": "(?i)^https?\\:\\/\\/tphonnanelpi1977\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7020c31f731ea91a8ca9c13f98bb8d0c81c50268bac3f2e8d171ad176d0554a9", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "697b100eda8c7a920e97df0f606ebaa935b72b9380250f124378bbeae8d9d9df", + "regex": "(?i)^https?\\:\\/\\/bhakliaman\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0de6f8b425aee0ada773665796ffd0ecd1caaa47437411180e23ad19dd38626f", + "regex": "(?i)^https?\\:\\/\\/cherche\\-plan\\-cul\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "52136fbb3d395aafc5d20fee60167429ec3ff948db77e36f09c00e3cb03a9b6a", + "regex": "(?i)^https?\\:\\/\\/haljmkanaa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "abdad47c05b5d73ceefa62740c0567275c3362bcd0711aa211a924b0d4e8169b", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8c36d108c8303902cf74700e50f2bf94f9a0ef3f19c2cd98d1c983f8997be60e", + "regex": "." + }, + { + "hash": "e0a252c4527969dd30234439b397779e6ff84069221d8bcaceb446399d536a29", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "86662c8923a5f875bee01ad9508747bbf59f2a45a1b4ca65068292fc037394f0", + "regex": "(?i)^https?\\:\\/\\/couples\\-en\\-direct\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "178b9abf384a2ef9998a60f472ba563b23496be2dc3afd28216c9545a567ee68", + "regex": "(?i)^https?\\:\\/\\/streaming\\-pute\\-xxx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7084e45eefb5df7a94156345edecaa56497546d79d76caeadeeb758f02aa2f1b", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "92ced98a999400f9a398e6594e8a6018fd808eec7ea8613ab380bafbe94aa535", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "59f74806eece3c357eecb869ed85dfc397ed38c84aab55c3b13e942570c2ec92", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register51268(?:\\?|$)" + }, + { + "hash": "4193bfafc2d1749d18ed9957dbb2bb932f475bda9e2e323b2e989c47520cd0d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dpress\\-blue\\-lizard\\-maktabatkoha619774(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "09df113a03f575e7806fa90b339dcce1cd43cc34f0525afd8e82c46be6a666e7", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bb59d799dedc68c51315ba145a8ac1adde402f48a68015b7fb7601699a2cd595", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a4b24d1e81b0b9683741ffe8850d122187eed4f1f209a92a5b9543e26e7c978c", + "regex": "(?i)^https?\\:\\/\\/clipcinemas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e266a054c0e998c6c07a2a63e0dd9dce21226b4834aafaaba169f16e1f5989b2", + "regex": "(?i)^https?\\:\\/\\/couples\\-en\\-direct\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3e7202f3e00914ed744a136fc291faa4ec0c7373a3e6bc6ab952288c289183b8", + "regex": "(?i)^https?\\:\\/\\/claim\\-solana\\.free\\.nf(?:\\:(?:80|443))?" + }, + { + "hash": "b57986ec244b6e515797261efb402d492ad1d2271c0890ea4b15fcb8bb008526", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1272744b65d5fb9a205f98d3d4a4d3fa93c908f1f9709ddfdaffd3a34a8c6497", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3d6cf778e893fa8a6b9bd9f3fb7dc9047e9077655d341486c4f81cd4fd27dc8c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-rencontre\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "67cd978fe731b1fad78c0c08bfccd7df22496f8baad4204b5543f443750745c2", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "37dfc767605883267efbaa6d2fbf4ec8fc5f0b4ab48e22c6cafd96f93b1ea36a", + "regex": "." + }, + { + "hash": "e1553f916e884f685a583ee8e3145cca0d6eb01e431c010c28e893fac6b367fa", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e2a37a223cdfbbd5939f1816335243b1b48f776055ab452b36a9820b0e467942", + "regex": "(?i)^https?\\:\\/\\/tetesocomp1972\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "87e2361fef13fdf4707e1935359d89c058b0faa98f9dfd0366a7c2011671b9a0", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9769763c2b7973ca6d1783a92c259ddbe87c7550a80d38fa887dab915d18682a", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "14b8ae7bd6c7cf0c731b912559b38389ba8656b38e1ed124bf7e28f886b20793", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "dd0f64642945216c51de6b34c15d7fa650ed820c47ecba7400fb9a29c3e874d8", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fc207b5e8657875d0276596a617e35b00188ee93ef039ecfcdd48bf4be82a33f", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "32653e545246223ef0d646182a6c478db42c0437a7968759136b69da865457e8", + "regex": "(?i)^https?\\:\\/\\/bhakliaman\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a7b26e09fffed92b95ea979dc7659e0e52eea3901925f0dfdfea6d11b0bbc238", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gftaun(?:\\?|$)" + }, + { + "hash": "f0d22a44d811199863751103b74409c5422ed1374228376abda7305371c57bdc", + "regex": "(?i)^https?\\:\\/\\/saitigaji1974\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "df5d96a0edc73ce691d60ccf85129765755efded9ca461b9de98431d650987ad", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a6e1e6b5e6d9445264fc477936274e469baacfa277e70bba5a54473e5a211af7", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fbc99f513ecfbd64bddbb7f21595a9a732e2c29779f948239a1c85366eb7eafb", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4c997d61760b4cd4abc97aee07617bfd5ecf8b62a79269b718f9dcade954ca6f", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d2649ecfa8a86aa30620c365fac8b210e6673d4d843203552691ec611497d74d", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ff66727175408fb76e772edd861fe0196ce18219db30585c3b93b9d6a585b035", + "regex": "(?i)^https?\\:\\/\\/messeomn\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c3cd0f59b7400abd2c41c29d2dd7f13902bfc929602c1ec362b01de4c043c6c7", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "82861e4ef9cdb0a9bc8af694b2e8b3e7fc51ab2469699b54284eacf8b257df3b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c2f3772513f8b365de5d7e28e0766a0373198bad919820c88e9eb379a0abe8d7", + "regex": "(?i)^https?\\:\\/\\/webcam\\-rencontre\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b80f5aa14e93bb0578e3ea4f77e90710263ca9427d1e2645d24771a89487d438", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f3208b9dfc7f87c0611624aca65b0da616049da457c42fb2965a2dbb2b87c314", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7a46dc9f9c0389fa5163d75e471600dbf40ddfa61d443c6ccfeb2bb186ee5450", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "619213996354c36bf9aef2acd92dcd4c4295bed6d27d3b1b1bdfdbb909baf449", + "regex": "(?i)^https?\\:\\/\\/cxzvxzcvzcxvx26\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6a80bef4583564b683ed2e505724b963d9c8dd3640c045b5db5f6eae84bfbe7c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "26bcd7d46e92ffcddfe34031c66cb1f9e0a1d1487b389c8977a381468081d1be", + "regex": "." + }, + { + "hash": "dc27979177a669c44cfc77e3a920ae92a5968e8c7387839566432c5f5c188abe", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "23fa710a9a1402692052b58afdbff17d2512626ea5053ec1036c1bbd582be702", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4e8511cb658dcfb33ff5a80ac7aef4572d4256850de7aa845631a69afbd2bf7c", + "regex": "(?i)^https?\\:\\/\\/streaming\\-pute\\-xxx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "804afaa479183978d413134d3d841bfe8cd99eff70d88d7fc26a47e682486b53", + "regex": "." + }, + { + "hash": "be32cd84e25129563af8fd0c097e7cd155cb26ad427b7eafe39fb2e6dd4e5b86", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3e2da2f095cd01f790eb39ef43a33d8de7527375b22214025cff8802551516ae", + "regex": "(?i)^https?\\:\\/\\/goldyuiyu76454renwest77234\\.yolasite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "95b43e9746af38328d4dd18707168f21b62e64a1dbf4f23d8e9a1b44417f27a5", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e3c6e5ebc5e7ab71c6a9654add02abdd55f7edb7354a0a22c9ce318a987b9032", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\-gratuit\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e38b4e6abed2b11d5b4c954e4925cc11f22c5569ddf860fd0c9fa25a2a00b688", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "436bf1e6bde2de5a641837d6c6d96ad88d5286c88361d4be34c54ab61c3c771a", + "regex": "(?i)^https?\\:\\/\\/c0nca3t\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3a65b65bfe0bca33b772ca527bb49a1149b9b2816d77c611b981f5c12c3c5d31", + "regex": "(?i)^https?\\:\\/\\/haljmkanaa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8474054c470034fd676a2d90b1bd6750cc1ccd86a72a432ffaad75aab6dc699d", + "regex": "(?i)^https?\\:\\/\\/freefirereedemcodefreegivewayfree\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ce6de443db8f68366134c9ac0cba595430005fad6c8e4358ecf5bbf5c890b800", + "regex": "(?i)^https?\\:\\/\\/bhakliaman\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4115b1a7be35890f34cb3094e6bed458e626ea17f005de8298394ac1fa2e7aa7", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a180eb70ff8fb46e5b880b8becfa7a7de500163d08ea22c6b9224fda6cbb2999", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9c53fc2b426a7ec6cc5fae7dd76d4170cfe1411208c8d960474cf0882f06690c", + "regex": "(?i)^https?\\:\\/\\/baklaallajl\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "13318c54b02c7a6d9662e084a8864aacfd77b5766414302599140fbbc1e7339e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a687b7bdae5d66bc6d178271c1957c2420f7d19b4ae6b2f8fc1ac71d2a300deb", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d8c36a70adb0fc4aa19c47d1254bf6f9648e12cd449441bff2f2f990741603ff", + "regex": "(?i)^https?\\:\\/\\/erteireuspeed1977\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "87adb4990fda2a4864d4d7adc835b7900cd8b553509ad6b88069edbc391462cb", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-francais\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "187205694f6a9ad2294c458ba9767417b88bf1443d2a6d6e54d752283b8443fb", + "regex": "(?i)^https?\\:\\/\\/baklaallajl\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "72785571b348effada784f90a5dd2053a2fd07742a359838e70bd62a5133dee2", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "09bb8d202dd9ad285415f14a866f0894067ff2406f1a0b4ab6beca5f2838a558", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "59735ed56ec8dc7baee79ec5d894a8a2a53337c7dc14e8c8dd9211e82064c832", + "regex": "(?i)^https?\\:\\/\\/tphonnanelpi1977\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "87aaa78582f57a15ccdd759cd5cd3b26e2964681e0963a3c4ec96b9dc44b5680", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8c0181f6250f0b42e553ea19fc1a2cef1fd6b9f1e1c9c3d70e2f96a2b7c2f9cf", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ce5e91217e439fca474ede2da2cf9a4d72f3241426fe3d8873c5cd3c5c66043e", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ec81656f6398b76a53d24a238cd86971a0be47f7455eb916429f78583967dd50", + "regex": "(?i)^https?\\:\\/\\/huedegtioden1976\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "434aa6a235467e80f0b9acf3c696565b6b528933d08bd6363bbbe5f71952aa9b", + "regex": "." + }, + { + "hash": "9c5d5b00fb0e5b7c22e2113b730d3d93caaffb8e61698c05db19c797b592b71d", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "aa8069c826a982c15349698a8ff73a5a758ff6c2aad1a96113e792144eff6645", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fa2bffd1cac6ed58ad30ff20241e313e6dc86f5ae4fced1275215ef425d2733b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0e132778535eaa9d95386248d8f495af0bf6235f3d2944517705096704f620da", + "regex": "." + }, + { + "hash": "3696a85c5cf5d3d093bffc91d3166ce85a42ead329a5745274654682f5829ce7", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a0c2206aa186de05e068343d696b73e265dd1bfc8456c36a7cd4e2ec434119a6", + "regex": "." + }, + { + "hash": "304b9b3b54c2f49971bb42194d8f25d75dade298436fcf1d3a6e068919fd950e", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d9fb9802af703a7933d01f029bb04321e600e9b6056876d1da0f9520e1d74341", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e8c5422ed830711370ad861d8dda248c44a6432f8149d15ee748b76b758f4228", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dc4a888e1b98fa1a60636e7b8e16dd26609e7f9740650871165ed5bbc75a6817", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c9b11ab4788acf2a2e91536049b2c06fde38dc398e2357f1080ae5a4d2a7bd12", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gay\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9fbcc01f98991de028fbd568929e4ed8058894e6dca167953e2babdc1bb2f114", + "regex": "(?i)^https?\\:\\/\\/cam\\-teenager\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b6a47ff2a2bd8a31aeb125a86eaa0fbd92fa7a6a225a6b9b1d251ec49b390e0a", + "regex": "(?i)^https?\\:\\/\\/haljmkanaa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "048ccb5826280d21ecd6229b0b62e6496b372e1a360d919900b1728f8a4d05a8", + "regex": "(?i)^https?\\:\\/\\/saitigaji1974\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f0640b1ecfa77c227de1066cb59052c66070bf653b4d00c51f4d5e9c8b9f3833", + "regex": "(?i)^https?\\:\\/\\/tphonnanelpi1977\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a8cf5ab6883f9cd420bbe6a5b02cb23d4a1fbb0fedf23ff34a10d8cf6c9349d6", + "regex": "(?i)^https?\\:\\/\\/putain\\-xxx\\-streaming\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "686e5a4d608a13cd4b0c9db00b0cf6e692cffb4737e231f0525bfb3556c7a299", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "12163fbfd1332a28a9c4b23c943a2f294a7920981ad4067b4e3a7ce70ff548f3", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9e7e1b2d30280e9bf311989da2b7f66d27cad6e91c5e5bcde80b4fd0ce4fa667", + "regex": "(?i)^https?\\:\\/\\/freefirereedemcodefreegivewayfree\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0031477096b7944465d6abc00856a663d92e0f5d0f0639bf5bb802740931258c", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c0c5fef27ece0ab598e7d5ce8789ed513842c22f19ff1f25ad747c3641a80aea", + "regex": "(?i)^https?\\:\\/\\/clipcinemas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e0d13ff6102ca7be84ffe6c6a48bd81d0448f2a90924fb2a1a379372b975da21", + "regex": "(?i)^https?\\:\\/\\/cam\\-teenager\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bc7f6f11234f32773f246ec6d3505fccbe3782e1de35e44fef4f78b3d322ba37", + "regex": "(?i)^https?\\:\\/\\/amazon\\.yqmbxje\\.com\\%E2\\%88\\%95kydsygoaf\\%E2\\%88\\%95cqdib\\%E2\\%88\\%95upuknaz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=okfjk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5oob7k(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b32d09e62b4d36155297c7141b507eed6ad8fc68b9f1cb6f697007c727a62439", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c67d8684cbdaf799ee5be8f4bce6a15c9689f051947537b6bee81b747997f130", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-movies\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3b19eeb0928c72fcf05590ae73498a752e79056d6d0cf6094a03c61aa557a95a", + "regex": "(?i)^https?\\:\\/\\/erteireuspeed1977\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "10e97005a58d493a6ccbcabaa44a67ec57f764f68ac5f1370fbc7a4799586916", + "regex": "(?i)^https?\\:\\/\\/couples\\-en\\-direct\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "92179ee3e5d3a6da833b22ae59f23b244724d6e5effb3242448ad19d32e837db", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f5d8d31cd1b88cce4117fd8cfd5d3f265b711fd6734f65f26c6634eeb451c8a7", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "09c9aa16f3dbdf138187a0a93b6429404592a8e305d7885cf33e13631218bf54", + "regex": "(?i)^https?\\:\\/\\/femme\\-webcam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2e95dadf743d9ccf9f7d75f2b03ee0e0ecee8bf2bda75a4cb62bd7b7fa61b8f6", + "regex": "(?i)^https?\\:\\/\\/dfgjhsdfgjhusdfgjhusdfgjhufggjhdfgg\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a12014301d451985bf50fd71292e908c9366e5e8f8f8f5499f67433e37fc735", + "regex": "(?i)^https?\\:\\/\\/web\\-amateur\\-porno\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0709751f49335e56412ade248e79ed2a4dc581fcc2c04e2e4e1c754f0254798c", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "25453430c1e2b6665b517bff6cd958b25abb5bc346b22497f981e2ceee3d3aad", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e714fe79b8ae457e40ae22a913d972ce7c4c5ea9beb5dd4e4d7b3b1b7213dfc4", + "regex": "(?i)^https?\\:\\/\\/web\\-amateur\\-porno\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b91605983641955499853c23700ace02d6dab038244449f4ce8e4357138e5e0d", + "regex": "(?i)^https?\\:\\/\\/couples\\-en\\-direct\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "eb4c6906173520c6269d15398ea416bdd4c651539c3df2d1fa516d5feba408d1", + "regex": "(?i)^https?\\:\\/\\/messeomn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b78ce298012aed2f81672b168f362e118e4e7fe00f794bdfc6ad007b9d72c19", + "regex": "(?i)^https?\\:\\/\\/tphonnanelpi1977\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "164f93cdfe0f4a1c93e8fdfdd85379dceed9b4bc6006a12694d9a569b44db2b9", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d689cc5734179816d650e04df1b3771bbab8b17ed1dd154a55768280a775000a", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bb378f0f98d95035f5842832d0644b65365d3a8610c49bc9439f3cbe10f2f891", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4462047d71e400f91503dc311e455398c688ac7746c96428859712a9424fde9c", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ccbfca50e6e70d693fa86e3c00ba2f533ba7104d902e5de200c92d70dc16f030", + "regex": "(?i)^https?\\:\\/\\/cam\\-teenager\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8bc5e98ec14c563008f6046d7822708eaa7a24f99f4d8bf54c5bed81ccc575c0", + "regex": "(?i)^https?\\:\\/\\/annonce\\-plan\\-cul\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "becc2759c67c1cfd068bb1707d61e954f32e828a212622316c1a6c127e3896be", + "regex": "(?i)^https?\\:\\/\\/tetesocomp1972\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f9b5c07349499aba0ae0c2ce91e7dcf2f4f31d22a8add106756a23105c7486a1", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "610926785dd737894278229e8a6bf89137ddba7abbb2f5b6625754d294d6a2be", + "regex": "(?i)^https?\\:\\/\\/cxzvxzcvzcxvx26\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9d219f09ce0b6d7a30a041dc400c469339f98d0c41818d5c791961c04d4d9c70", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "212a9e3b96ac2ef620a0ab124c39ef99be7e259ae1f21274b0d89f018c19a68a", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "eda982a4175e8f56d11d4be7cfb62cd2da291860e5b65938e60917aa18a07a87", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxx\\-streaming\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d59f906993fea2c683d609a51ee998b68e831639633b32279d191a17532d058d", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-francais\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e5da695cba904416b9d5c6b894736a1a10b366ed169b441032fd02f78d14e30e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "292dbcdb2d676153dbc854e25f564c909adccf53c462242c57a6099927235aab", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ea236ee9d136dbe1cc3b59e86c33f24262c1832453c467626c93d3a64e30b220", + "regex": "(?i)^https?\\:\\/\\/messeomn\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e01ed408703f519a53013dd937d8a149761c0380099ca082880899e3670213d6", + "regex": "." + }, + { + "hash": "cd1e75e903397ac2d0da05d24720be4e1a6e95ea79bf73fad1b2675cce9cbd2c", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c392b64a8db7407fe559b256634f1b27b91e2d08555367d843228a3dee0ae29d", + "regex": "." + }, + { + "hash": "fda698237396f7cc4961c6cca665f32491dc89b13a36714d9604ec0191570438", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxx\\-streaming\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "420a99f33e36ddc48536a16cf6bda8a55ea155eef2f724b6e1232399e7343cb1", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ff5221faa6141ca15e4408cc6e58148b630a8e277e2b105cdfeedb912140018b", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b5a42d4917a0dedc4c0b2876bdf3aca82102c25b0dd44526c218f5225ab6e7ad", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "62ed2734748a05aced6295d37363577ced930c1d6423388176e53448461f9fb9", + "regex": "(?i)^https?\\:\\/\\/saitigaji1974\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "97da7c693c7e8d0bc1804ca4c1d552b4db7a2e4e81424f7106e9089543f12c7e", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ac833e6059cfa2b200065136e68a58ad7652ac71cd4b15dfd58c4d9032e13a22", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gay\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e09242a88e7fe6c1889307587666a34c137ecc7307c6fc80462ed13f964fdca8", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "33115d60e6ed2aa4401302716c249eee867a82a74b62280228ed671d8e4dd02d", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{3}\\.urj7z9q\\.com(?:\\:(?:80|443))?[\\/\\\\]+EajOvOEBUFfP\\-mUx6d9kOCqrrWPg" + }, + { + "hash": "dc0433ad4170055bb6d00c6580af4fec12f1021a4f671cdf9d81c316540b7c70", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f0439c8e7bf6ee529e4c60d2ba7f860c6027aa32b134967d4214b35667f2fd7a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b3aa9f93533dddb2e00ae3b27b11b09d2418456858f92adc0c1ad1c9c6a0c288", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fde02e3c40f107fa5a0ca57f129fb8b0a36b54afaa89f6c50c97bd1f69a5383b", + "regex": "(?i)^https?\\:\\/\\/tphonnanelpi1977\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2d3c5e5ecf748b03efa31e68427a81c383525df04e12477bccf6755ab451e0b0", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0cfe9a1d4505d4b3b963d3753c9454a978322d6391918da1f99336e369a70297", + "regex": "(?i)^https?\\:\\/\\/erteireuspeed1977\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9b1191e0221349d32a0a12a29434d551228e34cd8aa87552b55e1ec860201707", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e0604559f72b67e64587bfcf7aa1f151ab311df6612f6085f6bee3e100fc849a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ee6d9976b59bc6aa1a7478ef7122373f488320c50cc6bb0106403cf93f7eab7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "757c07e094790d6dd04be03d6159cb46fd2f03b1fd7651b15123a4d7a5372bb9", + "regex": "(?i)^https?\\:\\/\\/webcam\\-rencontre\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "097c236e26126949e0b265d3b56cc1eb8672308ba21bf40fabb7392bf20350cd", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\-gratuit\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "042bdebd2cc9d6100c9a3efed97a3701692db11a360b763bfa07cc7a7a794c93", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a489b12ed4db5f5eef46b8e068196844f37047dc70e098ea56a75d37fc30e1bc", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "513dfbaf4af091daef58232d6ac74c8416782c40769b6e0b1a7f41442f404fec", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f90ef891cfb0af7ac2251a1821f3aaecd64b3b0efcb4ba0b56514f1c17c00f1c", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f6f7ec6b24da0c76a7c42e2942ae9a91d679b81547f54fa3129b9fcd215469d8", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a40440ef0358b59a7365cd272e3bfc5c08e9bdb2cfc71bb9aee9939de2861c4b", + "regex": "(?i)^https?\\:\\/\\/bhakliaman\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7d4783ce5f55fbe096916c919c3e6d7ae3b96e9d06308ead3684fba34a73774d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.jngpgti\\.com\\%E2\\%88\\%95ljwjzdiqse\\%E2\\%88\\%95wbicmdwzo\\%E2\\%88\\%95xmdervvurx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pdwxjalum\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a39c01792e91f50e39b974e556ab44d3026ba685b477eab4341f4682f7f18d70", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2df31a81d0eb6869f6bdf8ca41c2f558732931f5c4623cc8a32885c352cfdd85", + "regex": "(?i)^https?\\:\\/\\/cxzvxzcvzcxvx26\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ab641fae518c0d61d25f3c60a0e5c2718108179f26b4def1f253eac76ab89d9e", + "regex": "(?i)^https?\\:\\/\\/couples\\-en\\-direct\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bab0326c001b65c4cb6b4b90dbc39345ccfa2407eb8965e78f69ac045cf8f2ff", + "regex": "(?i)^https?\\:\\/\\/girl\\-cam\\-tube\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7a189c31b40586c9bd2c65648fde0c3a12a349eaa9ee180fcc4fc584781017be", + "regex": "." + }, + { + "hash": "4dbc72045b0760c919ba5ef639b933225983a3b071fef37dc7b1e8dc3c21a04b", + "regex": "(?i)^https?\\:\\/\\/annonce\\-plan\\-cul\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ac8b8d91133bcf0a2d82309dd37f50cda33eb18ea8ccfc52e99d9cab67d3aa2a", + "regex": "(?i)^https?\\:\\/\\/ar203019\\.page\\.link(?:\\:(?:80|443))?[\\/\\\\]+u9DC" + }, + { + "hash": "859339b82fe2501c0d801671cd11bc0806a3fb6ad1f7088e2b13a2532bfa2277", + "regex": "(?i)^https?\\:\\/\\/putain\\-x\\-streaming\\-gratuit\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d0c632c92295dfcee7d3449aae5492dc4123a6c8f291cf72b64ca6c6c313ee40", + "regex": "." + }, + { + "hash": "b4dbe13d39f446cac856c7c12db5b0954178906af8305ee07f494a1c0825520a", + "regex": "(?i)^https?\\:\\/\\/comfy\\-cajeta\\-f34ac5\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "654da453c54b82e0eb6f32ad80df15f198232ee7b56f8704bfba83023baa0f59", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9ef8fe952b11c2d469da8fe2068997fbfd3ea0bf7bbbe42b838bc199550e8492", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fbe721e2fe51f37d33f616b35ff9e9d3ac8e1adceec3cf1629a157bfc03cf62c", + "regex": "(?i)^https?\\:\\/\\/tetesocomp1972\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "73f6e73a781140e894d83c7a47c5453b0cdd8d8976309c3eccd44521b9ebae01", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "89d9ed43845076e84188b9e793a08d0e0e1cc6c953de8f3b4106f6b032391e2f", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "33fe952910bbb2fe739c108933e70fe2f61017010894504d2e9e1b0f446d0fd5", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9f8843bb5f352912c87c4b18524b6a8156f9abcb50371a2b1b2063809d007608", + "regex": "(?i)^https?\\:\\/\\/amazon\\.caxte\\.com\\%E2\\%88\\%95zimjcpqc\\%E2\\%88\\%95ovxpebld\\%E2\\%88\\%95adwguythld\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=twclprujz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3a4e8d1b1dd74dd215536baac8022c1ca0a95cfb835318c2206a88cb7f13fa91", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a01e0683ef8cb598b270c27e8d17d45776a1868ba7de7608d4d937fca06805e2", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f13d3974224a8d85049c1dd02bdbbe7f7bc4e5128e99ce0353f5c22d3d6859a1", + "regex": "(?i)^https?\\:\\/\\/annonce\\-plan\\-cul\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9584c4ce51727526c04402971ec504d67a79e7066b742a4a29e526b8c2cf0d90", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fa9e6b4f5fd3f0df3d16b735a29cbd56c1bd5e9567071ffc071e61424d09a086", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d4761197a3b738f07ed8773e8e0ac52674ee3487a8407760f89b5aa3252ab13e", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "22974b553f25650946f89175d15ba1eb3df57077b809d1acf4a0859ac43704c7", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1c72290f96a5206daaa4f652fca1f6165eee358c52c9d88b841ce027711c3be7", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8962bf7ec96ac98c2340d4d54b3ac0eb1cd123a522c73774dfc53c4505f943c1", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "10eac342348c1b313887984826ccf8c87e940ca645c7e418d585fc09b4d76da6", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.fo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "449e1b2b527ec6b9e7c27b9b24ee6dc670b8c1031f60f7948c657aece0043ab1", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9c76c1d0c8df142684e7a0fa0d9c0b84b29e0d9440e92d6e64dbdb665917a067", + "regex": "(?i)^https?\\:\\/\\/putain\\-xxx\\-streaming\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cb8b44a3b2ba7d4770ab9b3a574031ac5f41fd58cb2dfeec0ecf0eca5c91b619", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "76382b3f0be5bef5a802d2197d93cb2b1b321545de4d6997ee138860f3a34f0c", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "790180dabcfa16d62c04fcb7f334dd228b7136b1257a5866ed923ab3218701aa", + "regex": "." + }, + { + "hash": "1924b06632b74551c29d66579eb899f7eb5294c927ca5f773431d13cbd7e84b5", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fb3ac8fb8bb675da106935c543796f4003f364e34f27e7a81590464831f713c1", + "regex": "(?i)^https?\\:\\/\\/freefirereedemcodefreegivewayfree\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7ed91ac1d52eafb3b423088d2b3b0d5405daae7692d7542f67e02c54f5fec18d", + "regex": "(?i)^https?\\:\\/\\/tphonnanelpi1977\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "26b47fcca6443680a2133659d671efd896a9d534530cf7ae809a77831028b99c", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.s[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "5bedf0d77af1122e52a5ffa1cd3dffebde8eb8a4c2d965fa345be34a0f2fbc50", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "909ec86d1f79a5e812096d873cf0e83ef30d31bab428140a9cd2f51a3ffd1e57", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "165fce52164338a942dd8989efb39d5f36db61f9d63aadbae2b95d32915df0e5", + "regex": "(?i)^https?\\:\\/\\/huedegtioden1976\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "adbf52711d134549c154c96833fc450df3a0fe8b22064a8845d1fc7a59d942b4", + "regex": "(?i)^https?\\:\\/\\/nfinedarin1972\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "00a77cb83cde4725e28a66552a714a1a73f32b8d232362b41ebcd6ad6688ad6f", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "71e3e29007bd8bfa534195c5632241d1301b48a4580a069e3cc6e20af3a9c360", + "regex": "(?i)^https?\\:\\/\\/bhakliaman\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1379e317e774c7d8a279914544099572693d31594dba6e74f475f772327ac8c0", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-movies\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "18cdc4c3924f99f33b6fe8f2aa68cdcc1265c30f31ed406c3b4ef3369d6c30e3", + "regex": "(?i)^https?\\:\\/\\/saitigaji1974\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bdac4a0a8b06acce9c7a3ea1d77d00a5cba90174d8d1bffc62302fef21eb5849", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-francais\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ffe2c3c5fbc219fc4760f2668219de78fcf563b0184a933b582e161950a1030b", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d7422f95dbc71718a39acd51853e786d756c5316ec269bc34807629a662d2ffd", + "regex": "(?i)^https?\\:\\/\\/annonce\\-plan\\-cul\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b449d33a198299c7a1e12a1d3bf68a657066d2fa0b3fbe9d3342a15291417151", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f70dd99b28470a00d3f4506529b8cb404e4640c0065c5dbc1eb75380886f34e9", + "regex": "(?i)^https?\\:\\/\\/cherche\\-plan\\-cul\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "17543630ae1b95d08957428a6ad50f8f635e18e4b345a078807bee72375130a0", + "regex": "." + }, + { + "hash": "14b8bae11e6e8098da75b654478f99a839b8ffc032483603a0e65bae82a9d803", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-movies\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "94a8a3d76e622cb2bdb466bb7f8f35bd5ff94497667dc958710f94b9cb34f534", + "regex": "(?i)^https?\\:\\/\\/tphonnanelpi1977\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dd77f1c2f39d12eeaab32d84b22dd5309bbabf9fe2df3e095a9a268677464592", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "387d00aaf608a614f7a2a790a7c0391c5ecc97c34ff80a217851dfcef629a9c4", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "11a74a527fcd2f5e7686d04789b9534e94f5167fb20fbff6411af5ede1c38510", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d5750119ac8b4b73b4cc6f52cc50f5bd457abec0b0570147cfcfb4153bb91fea", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d1256b2dc367ddc38055d992ac8710c024d942a33b341235970ab114f2e360b8", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c969395ff7f143cc9ba8e1772d5be9db19e15cb167119d129013e46cb1447eff", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a58ac570cb9b6814d8a2d12ef035aa13bad5a3decd554ef30606ae7bb2ad0ced", + "regex": "." + }, + { + "hash": "60f40510490041c7b9696fe103cc1304ff27d0a729fcde1e2393226251cad853", + "regex": "." + }, + { + "hash": "a7299e14317afd4bc51afd195608b23b43dee099059e88106e5432cb7c4576a2", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7943005677cf2d80d033eccb608fcaeb3ba17f3f1c3450ddf1476d10a105f776", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2422a0244dbe4edabb2dcb8e3bc52145fac43114154b394ff05abcfcba13560e", + "regex": "." + }, + { + "hash": "9a0544ab46210b0161dc2e1c68bace4411b588d5ef5205ba07d6062d0001092e", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "25765a1f638ff1552f3fd88f5ab5927975da794501ea8f3de88d3695eafeaff5", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "804ab08dbc6ef658b755e70c8528cacd39303c021554a9ee882a1b6149b4fdc6", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d48ab88afa81612c97c35c49c279e849adb83e2b4228e651be2a172c5ed3d478", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f633f634ce855e8619356cc703f3d2bac1b99edaecfe48e17093b9dfcceb645d", + "regex": "(?i)^https?\\:\\/\\/dfgjhsdfgjhusdfgjhusdfgjhufggjhdfgg\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eed49227d9e0c048be8a04a8ccca326e917f184ff2249444ae44f8cab2a310f1", + "regex": "(?i)^https?\\:\\/\\/tetesocomp1972\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b782a967bd074df3483802594a73aa90aae1e608587411e4a3abe2cd3eb9fcb1", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-movies\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "72bc66f016e3e8255f36efb7c9099f76a29b904c03046df80a872753872c5d24", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e4cb25fd07ca7cf6558628c1868d64a0fb96eb88cdba71e2f0fe0501c6a985e4", + "regex": "(?i)^https?\\:\\/\\/nfinedarin1972\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7cb3c39573c92f76230fdc31d8651dd081917f64032ca4f794299558d94407a4", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-francais\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bf5781eea35a0cbf19c4f0ca6d0130e83505f729a0fafc6d1609308b87bb7f4e", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1a291397c1024097f277ace4f56aeca8d2f57ff7cc1c5112cb440891beb7ad62", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "dd5d03abc23b659912978b005400e67e7f5151be83fdcfc24518d60928bdc624", + "regex": "(?i)^https?\\:\\/\\/putain\\-xxx\\-streaming\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f89d9fe7d701a58e57437ed5c662f79da74b36d6f900dad48f50fba4ea3630ca", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e911aea8e231973ca2067b8a8c94d4fe6f3961c34d76e1f2dcf1e9bfcf7c4eb6", + "regex": "." + }, + { + "hash": "1c0c106091249ba09d8dd7d69ba586d658e0575ec64426a79e6ac7c5fd1323f8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "61fa2a8944d5105a7230575d965b858586065d99da1bea964928c6957b7a3ef9", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eb75abe8a6fd5cca3fd32c20db25352eed295aa89906ee24feb17dafea407164", + "regex": "(?i)^https?\\:\\/\\/dfgjhsdfgjhusdfgjhusdfgjhufggjhdfgg\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "113b2ccb1d5db3654773a0bcff012ff8c350cb6a682fefc6a2c8a9df30c472ff", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d1e561d0a902f93b39048f6e616f6cc55516e0ac727f219bf5d37b676e479015", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "509acf962747569d610541bdf338bd6d3be81070d6aad9d8b5708e409071ac3d", + "regex": "." + }, + { + "hash": "9ee1b6541172634f5aaa56acdc784ab31c4dcb08d2fce27c4f3c2c461f86c14f", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cfc59180746dbf9fd0df591d1335283a6a7a812cc26726b62792c92ae946a348", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-cam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a24612d98672072587879fa713deb3c9c95c7f6d8bf420b4d8ba29281bb47e81", + "regex": "." + }, + { + "hash": "5364b75f86ca3c85ecd45413b0443227d0896f28b92de062e9667f67662b8807", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "463b34f4ffb015d8b5c88455ec5dbe821be5bf4bae5a091f4275b8f70df9ee07", + "regex": "(?i)^https?\\:\\/\\/baklaallajl\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9411900a373f9ebc6d401877e99a172a137368d6c53f43f5cd94a7164b39c7ba", + "regex": "(?i)^https?\\:\\/\\/messeomn\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "833be09fb15546a230bc959ba89d221bbc6d8e1d4c21720523fff6d4120f37ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "c2115a15bb22fb41148c73a79a0bf1c343b6aea1c63179f7cb0594b4bff7a6a2", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gay\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "325e4798972a2478d312a62ee0199a9ec1a8c35a4ddea805febe2e56f26ee50d", + "regex": "(?i)^https?\\:\\/\\/clipcinemas\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e193440df97725495fe08432f95da8206a752f66228cd5e626dbb235dec43789", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "892742d28b22d38012d769402a3772617ee6fc4470acc8a2c099c7fa65d8738e", + "regex": "(?i)^https?\\:\\/\\/annonce\\-plan\\-cul\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f5742d5165ba834961dfd964ead34835976963bce5884c8dc1e59e9ddf5399a6", + "regex": "(?i)^https?\\:\\/\\/erteireuspeed1977\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "44e0f4b48f886cd0a495590684dbb6e70ca7d64fdf88cfb98fbfd09552efdf61", + "regex": "(?i)^https?\\:\\/\\/huedegtioden1976\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d2eddec78d4a714cd601336ea2af0396df22bf499f0ca9fb0186f3d8a272b290", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f21ccd89361119c1ebf69bd5b624fb1371acd36336311531bf0c8a4bdfb0758c", + "regex": "(?i)^https?\\:\\/\\/saitigaji1974\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "393079ad405d59a3bcb8c17d88a2e3f7da4ce2b985aaf1dbea7b35ad81e148a1", + "regex": "(?i)^https?\\:\\/\\/huedegtioden1976\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2b31d6a0a939dfbfe108086c13dd7d0e7801a11f756b66073a61b4b31f13f3c2", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1bb5e2b4194afe166a7d6f754799366ba19201a527ae9b5e09b019d1f031c67c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+confirm[\\/\\\\]+login" + }, + { + "hash": "fde917ebd7239b5e01386dff8e27e352c8f16b758aee530d5d96c85a13fc58ee", + "regex": "(?i)^https?\\:\\/\\/cam\\-teenager\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3e4501883ce626cef3c4298dd8b67ae0cbdc7bf8d654e3fbbb26a7e7732f15d2", + "regex": "(?i)^https?\\:\\/\\/putain\\-x\\-streaming\\-gratuit\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a8b89603f19b74e6dd37f50ab9d5ba90fcbe43328d6d55cb4e5fda530e6126b4", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "43923ec4ce3658e07a58af28a49c0a229231fa34577cf52e2ae9669af930958c", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c14a0f020b0c77f824852bdc245d275dcecd2df7d9db60bd2ed9804155dd3afd", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "533a8df32cf32d31a36a431a2fe31866cce680935833533facd09db31bd1ab20", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "96babb3323ca545909bef84f01cfafb534550c6ac07afa702323a955883b623f", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b44fcfac584ea40b9485c36b7a2fa8ce7ce6ef693cbe3e4a9dda31715772b839", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-francais\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a1c0082ebb1fd9162a932dc9d11191e623b2ee0def93d172cb5b96171d34a025", + "regex": "(?i)^https?\\:\\/\\/web\\-amateur\\-porno\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "db678d17b582d962e0cc38eca7b0250c3bcd7f16bc29df19b76cd194a98b318c", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a8994d4ad87377455c9c3a4e24b7579b252288734982bbb705a78757afb28fa9", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "13171af2c302886fe48c872c0104a4f663c7a12397dad41c8d720b3367ed7645", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "40ebcb8489b757abf16bf884b7fa183647e6198e2d787aa45a8c378fed715ed2", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "035aaad27460fbaabf6830618b9d6ec306ae959ca069b83a9907354d1fa7792e", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "baf8ce7e582317e55baa791858009ab8e4ff82348d41f45b50a0c2ef2af9f290", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9b0c39e6e7f469a849b470d4750795ab0e941769cf1cb7bfcfdfaedceae8a3b2", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "df1a388cbffa01a196850c631e48a96ca374db46313c5051d9209db71661bbc1", + "regex": "." + }, + { + "hash": "59ee7584a8bd7fab65848499960826e4f28a73311155f0f4de2227f91f58f857", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "276bf0db87d963478e70c7b95a2af09dc5cc9dd90fc02908a6c7404a19adebe0", + "regex": "(?i)^https?\\:\\/\\/clipcinemas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6abad03c0784d4ab4d16a3a558fa9c2e66ab4f66891abf494708f982daee77ab", + "regex": "(?i)^https?\\:\\/\\/web\\-amateur\\-porno\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9586ebd8b961bf3dd46c9c441167074c2dddd14560c791f28495a08ed481b3c6", + "regex": "." + }, + { + "hash": "5957ab8a1d31a81a809bd275f92d158911ca029818625d67f9226e44ad680994", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b7360d411199a0cdeecee5cb0182c6add5c8d2a91896f2cf38b829c853f2c06e", + "regex": "(?i)^https?\\:\\/\\/kolunhtuzmaksoetryuzanda\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2b9dcbf3e07b5decddaf42308c5d75f1a16ebd6a5478727f46ce4aee7db0b5b6", + "regex": "(?i)^https?\\:\\/\\/erteireuspeed1977\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4e2c8e8c8f11690513b11f635483f2609e496dc2b7f4bcd4bd6a61a89bac4365", + "regex": "(?i)^https?\\:\\/\\/clipcinemas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9093638b0c303469e550a396bd5b7b588854fa4e20f3e73aac12b47b1a003111", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "221e2fbefb31793e5be137f93cfb82e1a1f4ca0ddcb9d6e7b23dcc72d46633c4", + "regex": "(?i)^https?\\:\\/\\/bhakliaman\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0b185ae8817eb5f8a412aa97ddb67c04d790bc5bbbcaba0a52ba6f3f30cca98d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5f2ef741de1ffa57005292d1106de4de90a3d2ae48a9018614a7d5a0a10e2399", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2fa34862d4f416497481d41749498506b2a65007d44062be351db7fcdb55d1c1", + "regex": "(?i)^https?\\:\\/\\/clipcinemas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2ff24a565716b4ca7013ab408e710e9f64d27fb3d6956d784515a12ce3164c5b", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxx\\-streaming\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d2639856f73f2303d36fba44f95981dfe9e9ef850a3b45ff32a8c9a4953afa99", + "regex": "(?i)^https?\\:\\/\\/wap\\-cam\\-porno\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "604296b6edf78850711e8dd7fc2cae7a6deed7e2d82912beb8cb6d8a5069a934", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3334c8b402e74666e5bf5e345d324a02a986b0501b769b058890165dc88bd253", + "regex": "(?i)^https?\\:\\/\\/chienne\\-xxxx\\-streaming\\-gratuit\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0cd515877823eca2ddc4ea324270ac5824f523025404f0ff08af35a7efd115e9", + "regex": "." + }, + { + "hash": "7f7b41f167cb95eed66d9d75ee9ed5cae8b73966c107cc5dff9ae97545c382ae", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "10eeeded3be5b4ff6f253f1ccdf3a1cb39186fcdabf838f0d30bead4596a2d45", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a144413b3b9a1d2c88b363ecf4361ebb7c76ca576cd87c69512040b02b407dec", + "regex": "(?i)^https?\\:\\/\\/erteireuspeed1977\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c3af3c1f715c224445aa72c840d44313cbb01a75a06f93453846aeda557d2a0e", + "regex": "(?i)^https?\\:\\/\\/femme\\-webcam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b2c5bd1ae355a983bff98219a9f768d21c19d9e852d4a11139f6f3725e5f5e53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "593b75f8a721b5ec071de20bfc52990cbacf466c170328410f4bbdfae9650791", + "regex": "(?i)^https?\\:\\/\\/nfinedarin1972\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7fcb77f357884a8b853e25d15e7c6ca91e738053a096a1e15748946253a54d9a", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6cb9e450ece1f863c433457b855b2e11431c816cfe45136237e9f27d5e0453f3", + "regex": "." + }, + { + "hash": "ff5ef5455d3041ac048f14f6306228495b2be15d7d43de19ee3019a8d9831bf6", + "regex": "(?i)^https?\\:\\/\\/baklaallajl\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "35e49cfd79abb657bd6a52fc48eb7de50f918c0b138d02c45a409eaf2d69528d", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8dcb3d79e6a78a961912eeca9384a57a7404ca71f2b6905af85a1fdb118d2432", + "regex": "(?i)^https?\\:\\/\\/femme\\-webcam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "40fadc2c538db2a232765b76a081b58c22c852f71d685d8646665abaa692834a", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ff300a75f3f9115a8c91cda1d1ee9ea424e537884ca602cc663cfed8ec0c60f7", + "regex": "(?i)^https?\\:\\/\\/clipcinemas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eea540c06eb9c02c7bceb608695683acc5f604a44b1ea1d839c52fb97c194d43", + "regex": "." + }, + { + "hash": "f41213663b6062bcd20a0b28d723eb8d995297a28dbf2887b3c188fb0380b7fc", + "regex": "(?i)^https?\\:\\/\\/cherche\\-plan\\-cul\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c2a3bb128ba346bb88b6bd22a2bbe722c6c8c1b7ee58df35783e625a6e443d35", + "regex": "(?i)^https?\\:\\/\\/luntlarolo1986\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "833bfd9347be10a34570e0f07ffcb691a5ce439e6fc3a74a14ee0a340562ff4a", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b5be6670be33a7883b14dfb39518d02b243a7b85bb79842a231681a5de820ca4", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f0bfd3d2526424754b7f47d7f438523c9bdd376da138b7581eeb685ad3168d63", + "regex": "." + }, + { + "hash": "418a361ae790165a25e0e7699c3a67969d8ee773e5d46191d745ace7dd8e85ba", + "regex": "(?i)^https?\\:\\/\\/dfgjhsdfgjhusdfgjhusdfgjhufggjhdfgg\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8034f1f52fc32a3c32a1e05b0cb36538cad66a81bd32b956d4dc872aecd46899", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d3666d9adc8c7e27b56c9ba51cf937fe9e4f27af4ebbf5e93035c34ce9cca655", + "regex": "(?i)^https?\\:\\/\\/unachcame1978\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ayouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "20bb3c04867f951b5b0e3d5095761e7701e7e3bac339abb1a0fc889829faea80", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a6bf111cd7c74ad20755ee47caec03b4b5faf5a2014a29b7333246c7cc85bccf", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f2ec8edacee026d52bccb4cfd14bf7dc268d5905e8cb0ffca5aa20399ab60ee9", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "16e5ace6efe7e0d6bf767ffa7200f4b011d2be91d88d0f2c8ea9ca370dc2b579", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fdfro\\.com\\%E2\\%88\\%95wmock\\%E2\\%88\\%95iygmy\\%E2\\%88\\%95pqtkmbu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ydefbv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ef6d0c88cb1bf1318b54283599f98e4f50d27762efc8ab9c955b1f451e54a4ee", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8331040f9ea888abd31350c1a6dd8904f89f8c71d24a1c9b191f9c25a2cbeb84", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "5cddbfc389678d0b91ac2aaa2735defd4ac49197a627906f541537d72e13cdd7", + "regex": "." + }, + { + "hash": "5724cf61423e093cc1b5849601df78d72f25a38844bf979b14d0472157b21eca", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a226586ab1663d0fb27b628c161b26be6e9595bae5eca4da3b7f7407d7913f37", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b4fdb4224e6b7f3650726786d97a61f00bd6fb811628ed0f7d969cab1534cd7b", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "45780840184f1ad017cb7b3957e4bb4738291450d8ab6395cb82587c2e162961", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-cam\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c623180c19eec5c2b00eb168a1e743405dd1b809dc3cec7d33072f8958c47fd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+AqLKuSqnC5Q(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c1c4cdb5c998b210ac3c9f6a53f902245dd6b6605969ebb4d94cf439dcbf363e", + "regex": "(?i)^https?\\:\\/\\/saitigaji1974\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7723636f670f4ff42f4b6e7e0bf29314c167d772453416bb9ed8a765c035c820", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gay\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cd1e252e577cc9b06d70aa42d400823efbc848c1b5c2f3e814aea2145fdabc00", + "regex": "(?i)^https?\\:\\/\\/girl\\-cam\\-tube\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "22338384708647589bf7d6107d04fd44bb90646ee18fd8b95a6be7bb7978a035", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b80ee8872760095fc304cd1d31ea72f56de0baea4c9eaf484f2afd1a0b5d40e7", + "regex": "(?i)^https?\\:\\/\\/baklaallajl\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d4fad2ba40cf5175beac0d88fe9708215a6c86c38451fe4631e566c4627ecefc", + "regex": "(?i)^https?\\:\\/\\/erteireuspeed1977\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "83bd292983ae35a82aca0adbc52cd211809faea106e023dd9699c285c773ab49", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+shc7pl(?:\\?|$)" + }, + { + "hash": "7c5361a6059064a0c99f4076534fae6415473f3fe6292d7e44f24c2c7d467885", + "regex": "(?i)^https?\\:\\/\\/nfinedarin1972\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "85d946de2c4f5a4661d907f3eb16ca0519e69f665d801df955b46e292ab2361d", + "regex": "." + }, + { + "hash": "99fdb375e08d509612fdde9730183acbbed16176a7e4adb41f264e99d1d0d8fc", + "regex": "(?i)^https?\\:\\/\\/webcam\\-rencontre\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0a7ee58a7ee4c8bb35d71a27bd02f9c243d6c683f4e52a2cf604a6f93416b6b4", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-cam\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "db2012cb445cbb0e0b062020d9f63ccd9091c8f21520a98f1b700194e62d4fa3", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2853c8df4499c1cc9bd78dfbcdc6c8ff6b4d9c9d9936e0e1f0d23503032f3c88", + "regex": "(?i)^https?\\:\\/\\/huedegtioden1976\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1eec670176a3bfb1e302f4b9b8b1c67481a766aefca5208c4096b9efac90c5b6", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "73f2fe5ce1aa3ec0dbd5d7d1301455e9f11027893bc4582e8e01b2c21ada2903", + "regex": "." + }, + { + "hash": "3365114103466bc668f03643d81c2e978ce283b5051a1840b490d16031ea42b5", + "regex": "(?i)^https?\\:\\/\\/www\\.fcdeal\\-super\\-deel\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "accaae20ac4573910a3870436f873970f96b0675c2df7876c27948faefe30613", + "regex": "(?i)^https?\\:\\/\\/girl\\-cam\\-tube\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e5d954dbc53415430941192528ae5e32a60cae060740cb6c2ce132a5dfc6f474", + "regex": "(?i)^https?\\:\\/\\/annonce\\-plan\\-cul\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1bf0669f5d3f57445d2718c84c013f5ed1b97d1e5c6c6093152ff617eb932e0b", + "regex": "(?i)^https?\\:\\/\\/cherche\\-plan\\-cul\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e1a37da62545cdced1da7f3292fb759d1a61bd4cf585197289c5347abf6d669e", + "regex": "(?i)^https?\\:\\/\\/couples\\-en\\-direct\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2ec25adf06db6283121af2053a8a7c16ba0abbcf4ae3ae5643bcea0e327e6158", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49c849756d12cd8b58256bc177f6467b5f4cd7f522af6fa4e63216635de55911", + "regex": "." + }, + { + "hash": "e77f6c503a953dd2d6d22eff40d5c179718747abd8a7869d991f37f40472dbe3", + "regex": "(?i)^https?\\:\\/\\/couples\\-en\\-direct\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0f7182f9ed1df8c6e58c03be48b5fa950aad0561f7f600f2e25fa8ad39248bf7", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b524590f45caf2065d9f0f92dd6618d890200dc35bd597ce09b28917e4004465", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f2d8e19cb2ddb42cb590ef82d5c4a421cb12a4c5fa32578a85ccd0db1f6ef384", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9f01e72daebc0ae1a9ae90127fb3d57e51daef66251ada51a5ea38648fd28069", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ac5fdfa1b98c997c55c9251e48093c1e368372b5ee13d06cef24ad101104eb9d", + "regex": "." + }, + { + "hash": "fe35b6b419261a06c7a6f93700b65147e266f4c9fc0c04a17206a99a88f6f028", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chfek546dz6a[\\/\\\\]+chne(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38b559a2c6d1f796fe9e79a7bb9e046f5b1a9c8f56102f7adb0944ccf989c79e", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "460738ef724e16da6dfe2b1e0254d13508205f31358d42db159a59f0732f16c4", + "regex": "." + }, + { + "hash": "f2146a6b5a4f686ede3657120f4e580e0146cd748d8b4b78a4ccc4e73d500b8b", + "regex": "(?i)^https?\\:\\/\\/cam\\-teenager\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ae9994636a1e54dfac0f3b87baf1222f5b4df1da7394391b8af0513959b99190", + "regex": "(?i)^https?\\:\\/\\/nfinedarin1972\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f437f09a5bc464c6aaa31ac59e5b89b7d9ea23aac4cb8ddd0db87835a8619a6d", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "72800d82297a94b3de45be963ad6119ed832a672a7f81f0e2a61bfd0a544576e", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8e2210110f50f58169c3151ec7d479dc7f78e785ce33e7bbbe1199daa98c7292", + "regex": "(?i)^https?\\:\\/\\/tphonnanelpi1977\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4751d6fcb2a2a775368687b9afd5c855748b302dde57d065db151ed753592df9", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gay\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "95d18a8a47a1c0114225735b190c24168bd007afa5b4d5654272f3eb7e041b97", + "regex": "(?i)^https?\\:\\/\\/girl\\-cam\\-tube\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7f17177012ad27259268d475e396ac2c61c08c8edd6d0cea16d4a8502967144a", + "regex": "." + }, + { + "hash": "36a18ecbbdb8addc5027c2189002dbcd0c40e6d35ec30287f1885f122018574d", + "regex": "(?i)^https?\\:\\/\\/wap\\-cam\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "bd81034833c37f2aa774a76f509ffd79031bdf569d7a53affb3d55bd4a7597eb", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-cam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fbcbcfdd1c09a04ae1f0194437e3a852c104c7e36ecd861f4f1638274b83f3ff", + "regex": "(?i)^https?\\:\\/\\/tetesocomp1972\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8f646177b4c81f7bf6d28fb1333f8bd04e60f64a91453722934fef5330650aaa", + "regex": "(?i)^https?\\:\\/\\/saitigaji1974\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a4baa396276aea5fa5251f022ba1cbee934a0ac0b2a66cead23a6282a772d1bc", + "regex": "(?i)^https?\\:\\/\\/hamakioa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "14b8b59ef41dfaf4e3938338d05c6d4f0a36ef3e8e3172b75b8b9905ee42d286", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fd8446c931fa4a4e8a47cb9e45e8d8d4d9dcf25144d546c8877185f6a974e975", + "regex": "(?i)^https?\\:\\/\\/huedegtioden1976\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cf68c3909f8c16f8c153c912a6dcf144785c1216574dfd4c83944cb7a41d5fdf", + "regex": "(?i)^https?\\:\\/\\/streaming\\-pute\\-xxx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ca5f756b90f13ef73385a8e6b1afc8a021784dd259e3b4f97484e1c8660dc554", + "regex": "(?i)^https?\\:\\/\\/web\\-amateur\\-porno\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "afc9cfc6e96c5a64c4fb8630913ca996567de93a9ab8ce7ffbbc819467d47305", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9ca136188d00f3cff34213069ceac9e418815260e879618b010d5a2a8a888e11", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bf85dabe45e7f3b54ff4f89fba04540bf6aa5e4deabc17588152ab58c29f7976", + "regex": "(?i)^https?\\:\\/\\/french\\-couple\\-cam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a8247a8d55e3e6f6d5dee67f7b3e662d42fb9adc7f2e2b4f381414588fcf42e4", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "55341657a2899cc18065eac2c53049465608703615904d5398865fefe57978bd", + "regex": "(?i)^https?\\:\\/\\/wap\\-cam\\-porno\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ce92835f326afd86304e0ec57264cce4388f6a274822896a92145e0759411e15", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8db827285374fab188315aa502118ef050493263b9c8285fd04ab2031d1bdc4b", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxx\\-streaming\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1e69562b07ab9783b2b6c2d66be2d0e488728f58da92841552d07d4ce6375ded", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "eb9277602f15cd699f41e8e4fcf96623aee4db9d1f8a57bb002db3217002e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+EajOvOEBUFfP\\-mUx6d9kOCqrrWPg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e6b2b62d24363f4313a6dceb30530520b37586d5933a435c913f99e45bf38065", + "regex": "(?i)^https?\\:\\/\\/haljmkanaa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0c0045506ef9b2224e2af9f52f448f106b1939f04b39a326746572982595e9ea", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c4e718b3d8bad7b62a61789181618568721789da7451002d3c2b916ee224b5f2", + "regex": "(?i)^https?\\:\\/\\/salope\\-xxx\\-streaming\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2e9739f7bba5ee417a5f958e47534326eccd06ff0e5d0828b1ff48d6084fd14a", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ba1aad8bef5af9afc8a58cef28941e48794948e8f120676b488708f73f1fff28", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-xx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5fee8bf2913a433f070e4dc3328bf06de94a0a5a18a24511107ce9c3d904c635", + "regex": "(?i)^https?\\:\\/\\/girl\\-cam\\-tube\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d7e9c1460d9366771e737b367dd934205c6cd0771349df896be2bd18e359fa85", + "regex": "." + }, + { + "hash": "c060fca74a859bb6b90cb7b020675c43e3e33e1c20eca346f1ca00dd1343e174", + "regex": "(?i)^https?\\:\\/\\/putain\\-x\\-streaming\\-gratuit\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a715d53b69e6246bcb01155af390cec6b7b94a1b2086e3b10e2c63902c6e38b6", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f633687a46247a80bb429bd0d938f410880f88c3f0cc053881412046b9e69078", + "regex": "(?i)^https?\\:\\/\\/amazon\\.hwdqkt\\.com\\%E2\\%88\\%95rjpyshjv\\%E2\\%88\\%95daqdqmxpk\\%E2\\%88\\%95cxbwtp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tmccz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "61dc1e5cdaae2fbfaacaf73841319ea57fad2c5584fa430a10ca21c867a6e201", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxifes\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a78e62f3c7af1e9fdfe91936d9641786829f424d9578a540806aba9c97db7e6e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bdfbb690de048f9c6cda881775b86ef89755609d807fcfa634b9df6d5543d422", + "regex": "(?i)^https?\\:\\/\\/web\\-amateur\\-porno\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "83be8c77e02a1f7812d3b3c48e69a78c50c61a5cd551787cae26c4462d563ea8", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "822d27c6add1cd44449ade362f51e95d5ee5acf50a314ea6850d79d0ab0d1ac9", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bae4bff0fd8b73edd82b11212ee2b78d20c678d66ba8048ce6cd2e9dc1a4e219", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-francais\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5bd5c639973d3c8ed6145620f2fef0e15260cb203b5ffdabc35857fa4ad03329", + "regex": "(?i)^https?\\:\\/\\/videoxhot6969\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f750561efbee6bdc2703d43e102237c60433411ba67cdd59208dc19d9068969a", + "regex": "(?i)^https?\\:\\/\\/saitigaji1974\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "89236d8695b9e36d1ab2a22f7e438541fee704c9140b67a495ff7cc5ecf5deb8", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2a9d991e83ef2abaaf5833d260546b9c87f27b7b31b4c5fd1d022d18b592a046", + "regex": "(?i)^https?\\:\\/\\/couples\\-en\\-direct\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "beab1998ece021be40da31109f30c15caa6cc726f114e4750c94dd22530328da", + "regex": "(?i)^https?\\:\\/\\/hamakioa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7e2712585e3f32bb62da9bc4bc5ff84d03c733cdf33070de19651d7e979b5a65", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fbc954eded61883458e51fcced704c81116f4f8d6c1b56333a1498815dd0e6ab", + "regex": "(?i)^https?\\:\\/\\/webcam\\-guirls\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8c3bb0b5342467fe7c975dc4b37883d429f3e786f0be38c2c848b7f6477e7c5f", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-movies\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c4096a31a3669215748537f8a5162cb97d1a3c80e9d54bc2eafc44029cbf463a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8683b7f034f63b974785430106e5f0e7b04c7263604e8169c51faa47e9bb1fe5", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5cff20970c7184a7ca14e21f41381e39f9bf6ba529ca4e735c436bed15718d65", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e5b258d0595ae4cc1aeac382a529859886cce0048b70bd99126d26453752c0cd", + "regex": "(?i)^https?\\:\\/\\/sexyclipvibe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c9305bbce8da968e08ddbe0c560fd25825ca0d7105011c6e3b5da15c280d9b6f", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "75e2b20b3feee787177388a477fd540dea54c67a67b5019e24eac66ec7203ec7", + "regex": "." + }, + { + "hash": "1eb8a721530c510f09c6966cff74a172adf28be871e97395c512633d69538e7f", + "regex": "(?i)^https?\\:\\/\\/putain\\-x\\-streaming\\-gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f205998716c172f387a612fefcb4a934ee75cda2ee6d5597cf997210bbd2259f", + "regex": "." + }, + { + "hash": "9bb500d2567ecee0f2518a9be79204108188b2f92ada5b0aea2d2b59b9a3d0d3", + "regex": "(?i)^https?\\:\\/\\/haljmkanaa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "01b9b27073e047be06a5909d2619cb1197bc7a489fc40df56328ba834dca6b1a", + "regex": "(?i)^https?\\:\\/\\/huedegtioden1976\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9041522788201e8054ad8c7cd5126e73d105b11b36bb984f743d3dd1d21257ba", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3e31797bc7e0ab5b55671dab94fcb77b1c1cff59c486eb9f154eac92b2e81d57", + "regex": "(?i)^https?\\:\\/\\/annonce\\-plan\\-cul\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a941b37d1bdbad888fb3765dc2a333f46dd241f3b0196c797d31fbf05606f7fb", + "regex": "(?i)^https?\\:\\/\\/streaming\\-pute\\-xxx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "92d8a9113377362967521ee0c96cb506ed3588508f3352a31f2d7c3c287b69a9", + "regex": "(?i)^https?\\:\\/\\/kjljl122112\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3d5a8df13090c42f0888bd25033404a10bd23b31fd59b5f4b39debfb2aa55fde", + "regex": "." + }, + { + "hash": "dc1a58d0994a10a48c00232d0381751a5a1d7f69f887bdd51544df2c44a7dc82", + "regex": "(?i)^https?\\:\\/\\/putain\\-xxx\\-streaming\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "19a0676eb9ad75d3557b7e17dd47171551332d6256694815031e93f9a71572c9", + "regex": "(?i)^https?\\:\\/\\/tetesocomp1972\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9d1e429c5ee4574725312b99999aa2e5ffe69a291de020eba004e4c1ee6d672e", + "regex": "(?i)^https?\\:\\/\\/hamakioa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "864ddb4d2a3e02499667b19cf7e29753cff014ede427f00d05780f87c8e1f06e", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-cam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5b1536a2a5a3a3748741d43c03600865105e0e71f2673735dff7933550fc3276", + "regex": "(?i)^https?\\:\\/\\/cxzvxzcvzcxvx26\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ec7685ec3a42a731dca78e50b16abf0ac692b0e606a591c2364d20966faf00ef", + "regex": "(?i)^https?\\:\\/\\/robloxroghoulcodes2019yen\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7cb9ae3b7c91d927a7fb7e343b8aa0049224adfddf5a6c0666994ba4dd0ca3f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cc0564bcd3c92d4b67358a730ea518be286600968d3445381e2495714c67d794", + "regex": "(?i)^https?\\:\\/\\/girl\\-cam\\-tube\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "946933c2e1ef68eaee5310aa06cf92bf56192b481b19729a5102fd28179831ba", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e3b346650674cd7afbcb47eecdc00f4d83f4d3a0e5faf8ce4cb71a1b7efc2f77", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e3c075eeeacaa93e3c4a46b5f2d6ce726a387715c48cfeed82c6167ed4853a94", + "regex": "(?i)^https?\\:\\/\\/webcam\\-rencontre\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2133510591a6c897784db62cfaee6395107dc5c24c6b3a6fbe74aa17dcfcc10a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-rencontre\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8880e2701e5b8915949802b25604e772fd67f4451d44f16893cc7a8df738993d", + "regex": "(?i)^https?\\:\\/\\/promamopej1972\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4aba07b788b96a1a4c5a9788a3c5d90b38876c74d0841bb95b03b137b638f023", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fd78c1693a4c3a8580580c3d32aadb4c69d4b90e1636c9d89a980defee013763", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-francais\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7c40bc6680712aecaa9a77293b4696b0723eddb732a4c123d4c1d60bc227e598", + "regex": "(?i)^https?\\:\\/\\/femme\\-webcam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "42029a8af0e8cc44077046fec18cbb0f1e182dd2ccefee7d0e936dcd2813c313", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9b9e41bb767edd0aeca85d735a8b788efbc93ac75037995eb682decdc78f1d57", + "regex": "(?i)^https?\\:\\/\\/webcam\\-nude\\-girl\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b3a055563d4d78f48e67fc90678239d3137debe622f6d88c4d53652b7bb8168d", + "regex": "(?i)^https?\\:\\/\\/wap\\-cam\\-porno\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "28f8fb34cff78a1783a41b756ddf4b6b37ad9d0d0d266c1f65fca8e0788db127", + "regex": "(?i)^https?\\:\\/\\/freedisneymoviesnew\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "d8a040b686efa2ab9ffad2b677a895f358e2429f8044edc0659245412cf22aa0", + "regex": "(?i)^https?\\:\\/\\/cam\\-teenager\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f35c0b5b1e4757e8eeb8c29b2362cab075df67168d886715a32e83d7fa6be7ad", + "regex": "(?i)^https?\\:\\/\\/dfgjhsdfgjhusdfgjhusdfgjhufggjhdfgg\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbe75f27b9de27f2dc8bc9afc9fe0f202a838f6eebcdf6776615ec535e9b67ef", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-4\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ec9a663274bd91e3ba43b6253d7e68f5d1690b5289e7a5fdaf157b2d4b279d3a", + "regex": "(?i)^https?\\:\\/\\/freecam\\-4\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "621f43856a96f9c4fec748498727eae2d081809fbf7615a20760971e69244edf", + "regex": "(?i)^https?\\:\\/\\/web\\-amateur\\-porno\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "56b3f17631b1c462b0caf384db1d3d5cf67bf0251a3aa132f8a31bb6d0e8d9bd", + "regex": "(?i)^https?\\:\\/\\/cochonne\\-xx\\-streaming\\-gratuit\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4ddfd2986603efdcf04b9fc66d25624503c8d5c1d3504b929371ad053798522b", + "regex": "(?i)^https?\\:\\/\\/ertirelo1977\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "baf866ef39ae6539a3638a474dd8c17509dfd323f8b663dfcabdb4564c7b0dd6", + "regex": "(?i)^https?\\:\\/\\/tetesocomp1972\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3fc09d8a2968a9b4b1a49bae62dba4b298f6be8795bc490dac1e404d78b52547", + "regex": "(?i)^https?\\:\\/\\/tilkingmave1974\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f2d2782eef3eacdc4b61d82f45880c01a89c6e1ece353a9f731b6c16035fafb6", + "regex": "(?i)^https?\\:\\/\\/hamakioa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "314a8e33412c3790d19c0421b7930a15d164f3607a521a65cf9b43ad506f5dee", + "regex": "(?i)^https?\\:\\/\\/enimvimo1972\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0d4c1255cda4f11fdacc2f60d574eff14c0c5470b66f1562d3ec8302d2b344d7", + "regex": "(?i)^https?\\:\\/\\/chlorasygca1971\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "95f805fc3bab92d35a6282d4974ceede8f80940d6c544107692feda15773b733", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2fcc937a3eafd898ab3e3404c0646f337666c3e8626f86a2bbf0c8c2d7559c83", + "regex": "(?i)^https?\\:\\/\\/brigcawhipte1973\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5b588e67e1128b3823f266ce6e28936530688d12517a5721bd7c9595b9d4aceb", + "regex": "(?i)^https?\\:\\/\\/kzlfzei\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2cdad6f2aff62f0f635a2d9b7260e848137b325807a4d9f0167842b9565362a0", + "regex": "(?i)^https?\\:\\/\\/saitigaji1974\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b610b1911949650d3f93091adac526a6eca323786f71cd9ec5af4ff5e5ae41eb", + "regex": "(?i)^https?\\:\\/\\/pemenanghadiahtopcoffe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7706177388d9efa3518bd3a0385291bc63ffa3f0754a6d489c72cd386ea4dc0f", + "regex": "(?i)^https?\\:\\/\\/hbibna\\-czh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2b536e1b061786781a17c760f2055c9770ab00c5fbf3b954a280937491a68cc8", + "regex": "." + }, + { + "hash": "8858964f90f4fbecd7560c91c26755b32296b5bc5964e276ae00a4769847d90a", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-amateur\\-porno\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f69b65d05a6fd805823b78636c73609777335f06460645790bc2e630c0cb2ba1", + "regex": "(?i)^https?\\:\\/\\/robloxrobuxpastebin2021\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6eba9fac660ea53120e984f00bc9e030349cb81977a4a79a8fad413b24f50aaa", + "regex": "(?i)^https?\\:\\/\\/salope\\-x\\-streaming\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bcf239589398dac48653313c879440c74cfd019421f9c707260ad33b8695cfdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index03\\.php(?:\\?|$)" + }, + { + "hash": "14c785024a8054763f122089884c09836b296744b4ce18a236f9a5e8342c78cc", + "regex": "(?i)^https?\\:\\/\\/cam\\-teenager\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b67888c640dc1b1b257d135f1b2d30fd02a05e0aed8c30096dba2661eb3ac923", + "regex": "(?i)^https?\\:\\/\\/sugar\\-0007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8a017f79e8b91f564d6033251b0f13aefd3a35d0e13c91c365b071d5972938c7", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "015f37ef6accf2fac61f2e06ffbf306d47912c9a1e674fdd59fab6754d9b2638", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a2fe79f991f1f3455a86af92865363b452d8caaa8b9b9fe9bd3fe3f9b47c4c10", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ojdfov\\.com\\%E2\\%88\\%95nrzcy\\%E2\\%88\\%95qxdzyrpata\\%E2\\%88\\%95yphzsz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDvnwjroz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "de2a99d496c8c1d20948d71a00215a0566ddd6904ac11221525ee50d39d11791", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftkascmackasem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5c5402476f46da2855856ae15d09f778337ea7ada06a6df7441cb07810cef03a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a0e1121255bec28a922c2cd25d07348bb2de21aaf3de269f2292a0d6d3573d08", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zaumxmq\\.com\\%E2\\%88\\%95yetmga\\%E2\\%88\\%95kimul\\%E2\\%88\\%95adpcrk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ajehm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e80586ac317d6ab1e1fe2221a9d03332396a762a2a94d78586c2e1f977b7010c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1ee522dcc40b277b6f2104e48b9b00984e50767fa05ae9ba894ea6ac750ef5f0", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c494b7cf0156f9c71ae050819f37600304b6c6b87479f7e441c45d3159e9bd3f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasmed\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6a06e343d81c6f04b3b4e7da910879386aa91d0c8683ac3f7bd759d0ce6e3b0b", + "regex": "." + }, + { + "hash": "df5f50527f193f3c105c57c414edb1edd69948d22425f5b5cc11942aef9eeef7", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c7d1e23f488b5173c06490c8ece7923cdb944296d35a430cf8fcc4e29c36a23a", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "291b73f19cee161ef665b608ae0b4a6a68d17cc5020ce2cce8ee59ac727cff0d", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b9fe188c81a740989d11b03aefa7b22bcace1e8aaab0b9c00ea59548bc3c4b83", + "regex": "." + }, + { + "hash": "31526fc4f4ba66161a44af57f2ca3183706579dfb6e4a31cc98318f3e2e927e3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3f56de82f8376fdcf6902739334af34bcad5dbf8b5b8e9968ee31be31db16c84", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6c85943572cf3b81095fb874f60418e106f815ffcb31f0e136c810d169a96695", + "regex": "(?i)^https?\\:\\/\\/pcoaslekafmsudtkacmaskcamse\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8fe2917237c3e09b044d29eabef8790ce276f32e4db5b876130db10455155067", + "regex": "(?i)^https?\\:\\/\\/sawanahdma\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "aa8b07525fb1779280cfe358af898b25241c78797b3532d31bb5628846c6d8da", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuacalsckasemasem\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d4bbd242a972225a0a56d4d0d0fbac75511d56d29a8af099494855581e962098", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a1692292e2d6254d47ef36a0631e848def2b9bd7b6c7176a284f98090f63c68a", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "330735c22315f286dec0bc5c77e97108364c8eef0bf350a213c21af1cb3f6c88", + "regex": "(?i)^https?\\:\\/\\/afaakyarbi22\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8e6bc6e04a058b8744bc6497124406ca12bcaf4473bada40a1e1503431573e0d", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72506efe9105c23a8b0e8787604a345817917c2cf4362426c1055ec80fa0895d", + "regex": "(?i)^https?\\:\\/\\/sawanahdma\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7b3c1ffdc14c3d5fe01bd1ac6728ba6239b91cc73548bae474d6edee79efe0ba", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9001a911d8cced4c5e664e934f74b50addd78590dad6290ef794b6f767409e14", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudtkascmasckasem\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b23b3425568bf56ff69ff51b21c934e1910c3b5657067f496e288274aac9f2bc", + "regex": "(?i)^https?\\:\\/\\/wanhakalll\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8d85352d2c32d90a2a69e4eb1fcc5edfd4202bd316051600256561ff8dd49085", + "regex": "(?i)^https?\\:\\/\\/pcoaslekafmsudtkacmaskcamse\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a4ac682d99f3963ecb36b7f9910a154e04ec0e5b9a59e71e9e49077b07fb7061", + "regex": "(?i)^https?\\:\\/\\/hamilkaka\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f57ef864f3120bc14cadded3d27e6fcded2db9b7e09c9669daa90a1fe3c26806", + "regex": "(?i)^https?\\:\\/\\/afaakyarbi22\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ayouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "08a8d66b36583b8361ae068dda8d8308a4d3d01f7316522555de02c6bb935f3f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d2a87c7def09d52179bed7093212e43cac0125118092598a06fba23f3cbffa7e", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d3d297f7823028a8f61e8bba4c98a900b43db987debc7d2d8b02bcba1713e3d7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuacalsckasemasem\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "91021b1cb5a1932093a388dc98e3e1a1439d93edab074c2c0bcd7762aa7d481e", + "regex": "." + }, + { + "hash": "877cc2d5fdd81b5b4242588e56bc139c273de24706ed6faac6969b99a9dfbd47", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c913bbebdc18da9915fb608aa60c8a61b93eb80f6aa6d80d8147b22725fd8140", + "regex": "(?i)^https?\\:\\/\\/pub\\-8fec045b15544214af2420030dca026b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d691e77c3ee245ce4b803a5c05e89c2d5a380b7160c7c8f51130143f895bdead", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7319d5889c7aa6a5b2b5ed0dfa9820aa73044c9d1a30181ae17462266e925485", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "18a7ddac664a299eed2737f808ce5667baf58ed06b265ecd4ba48d3601c5037a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0ca6f6f0cea8ff58bb0e234c2f52d8706085e951d3a1702567e8b35e47a8eae4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdsfykalscakscmasem\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5f58931b91f246c00bbbc40d7c79fda6a1f6bf69045dab00497616fcb700a596", + "regex": "(?i)^https?\\:\\/\\/hamilkaka\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1541f882362b7813f64c01591aaf2a6320f2d79271a7dc46fc3bce22a4306f6c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fde6e9a66d78fa11ab5d6a1d8c02bf776a591035fddc6d7a07dae3307bea7424", + "regex": "(?i)^https?\\:\\/\\/kolomnzyasigtraza\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "0524024f93c42a6d8ad08737d0408de6ef0cea6bad66e8747b348bcec76e3aca", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6a672b1230e507ef9ccb48fb951840fcdfb55bb68875e778f278be22377fd3f7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1694933d0a5283e9e27fcb87660c0efb366564e269af97d32581e935207e8845", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f0bfbe5a790a7cb2fad5989b67244d770fcc1fb9864e84a1a1e597c11ef3bcc9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5e86b6766c9b9745d3b677ee4ee666c2ab4abfe7cfe20deeac413b48931920a7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5ca23183e16db4e9a83ed41112fddd931f85cc538256e7cde7a825b451dc9058", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c6d8fca41c12d6da937e466a8011abc3ea2a0e6ae02ffcd138f1b59a2105fba4", + "regex": "(?i)^https?\\:\\/\\/ociasekakvmdsfytualcaskcaksem\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bee1a899a404acbfc35100f26381a01f6577060e73f3a11f51a6473669956264", + "regex": "(?i)^https?\\:\\/\\/ociasekakvmdsfytualcaskcaksem\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0ff7f941fc8e3708e51e81f21b6db33e64878d308b1b6936eade3cc35896c1a5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "565054b9f6b96cf8cde292d7e1cdcf3f3b3f22b661e2793b46f88253c28db749", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bc63e8c5c382a39cd5c1209c5ddd9bc66b13a91f2a9b4edd5890b9e1d0125eff", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuacalsckasemasem\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c6d4267b496b81f0db394afcb3b88bf27f398f2ed8f71e6080193a4f6a900d04", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ad3078cd578ab506049de15b580f0c7c851863e4b2aa44ea3935679f5ec76028", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftkascmackasem\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+$" + }, + { + "hash": "e513fbdae61d9c66698984ee421f13d39ba6e3bea8e1bdefb07236b5df333d08", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a641c18e1928f49217a2de667d00266453c0b4b44f20de0798d15c182b97b836", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8b4ddc7a5dfc538caaab8fcd9ea37ffed0b15fca7d443f990ac5bbeebb4335b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fux\\.vutek(?:\\?|$)" + }, + { + "hash": "4253c01a1644192031f407ac175f14a0adbded901c49f3d0b76730f55d04b9e2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "15751dca99ed3e8403e115c9830fb47e4455773315ef3666e43a5071e41d6197", + "regex": "." + }, + { + "hash": "f5128925030d126a72388139bb67e51508fec37d4679589cac92dac9dc783889", + "regex": "." + }, + { + "hash": "24651fbcca4d738fc9b352ff50f218e6a6c22eee1a1eeb84dc51a819b39c4ac5", + "regex": "(?i)^https?\\:\\/\\/sawanahdma\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0d5b49de8dd71d909c61b8a8d794a8988bdf9e75a91436518e7c1ccf7a73eccb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "12cc909ccb8d080a064617cf5cae3d36a235330b03383ae8647921fa3988f80d", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2ba20e96904f30f95ca0c53d0d000567611ed68de5ce8396e722a7dd0918b316", + "regex": "." + }, + { + "hash": "dabaed5aa80baf297dbf110a1c15336f8228501084d71a1fbe3fe59d99aa4924", + "regex": "." + }, + { + "hash": "8d3287e22fd5453bdb6416f77ffe888ef9c4d631c90447e03eb870a42aee1756", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rlUPqh0eg5vIRiHYn40Y(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5dfd807dc585952a73edae8b8fb1aa7e934197006a20ef61043ee9aa82a0ec8e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasklcaksem\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6fa221b3c0511e255d2163d5a83b5594c00761b1af621b3ad76ae94df06bf093", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6b0b8876255bdb1202c3980c771475c43197f96b6ec785bd63c25b72ff196ef0", + "regex": "(?i)^https?\\:\\/\\/kolomnzyasigtraza\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b90ce4fbb74deb245edd1fd92912e149e6341588696806cc000e9f414ccafd0f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtyuaksckascmaem\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f96596187e8b7931a7f60d0fdd627b11b0e1985bea3322ecd5d5ff1299854206", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5c8a2e2d9f7e8654fc864c32caba8f8eb9597573b76a732447fd7f57c4fa7a18", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f9031d0a969bbb1238956612cad2b619dcae87e94d21c6adf1712d36812d7fa9", + "regex": "(?i)^https?\\:\\/\\/sawanahdma\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4ccbe9930d9d8227ad0f51f2a77adbf3c88a8a2449604df87038b730980bcd8c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "38621761a0bbeb26e99ee2ea95a4eb9cfef5ceb88717297a5fdb90f86de0aebc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fb8f8c525b91a794bdafe4746d9b3f08c38e2a0f4ed972794da68888c9acbde0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f711795250fc39502ac952867de9c7d64f3d763206bd2dd0603503700054994b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3819ef45e7389ac8c2a1325f15ffd7d87d3114fc04770541b611b659f3da530a", + "regex": "(?i)^https?\\:\\/\\/nettennz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5536e25a30a8d0ccea8d3d213751781c5da48c1e85acc3bdf80e25d83ef35774", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7b2ab38807df1466c0878bc52ca8202e56ab9c903118fbb57d1813b93da1eff3", + "regex": "(?i)^https?\\:\\/\\/wanhakalll\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b62bb63842203afbc27d714e146ad4daae1ea315818d6dc1a32e3b459785847d", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "08a05d4ebd4d20a0a6dedd31e07cfe5ee946319c79de977428049e20cf015faf", + "regex": "(?i)^https?\\:\\/\\/refreminsnet\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "665ad9315ef5f5aa099a5feaee692c7e639a876c10f70ea9f1c7068a0d4fd2f3", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuaskcaskcaksem\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ede9d9298ff4c031977df7a6bb2b124885cdee2fd44e0f959b4161d1dad602e6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftkascmackasem\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1a72efc07182347b6d60b5f6e4446c59da2025ca120884f5bc40ac661b4327ec", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ayouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "cf15fb54f3fd5e732c35a608539853b334e7e29eca36613aa9aa6dec28eb1630", + "regex": "(?i)^https?\\:\\/\\/todayclipzing\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "affa9837446a16c99b81e62f91593f82fafc135bb02b730492ee940d24f2543d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "e08d55ebe5a6651c6f0691e97f5a8ae25ae91177cc1bef25af083ebfa308d3fd", + "regex": "(?i)^https?\\:\\/\\/sawanahdma\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ddb733ebc97b20e75bf5c02de82765b6ee7fcff54fb31fc06671c73d3ac795ad", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasklcaksem\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "492bc29d7dd0beb05914a1ba91a8fe3f6808a9323b8e2b6108e4d76538095fc9", + "regex": "(?i)^https?\\:\\/\\/masterdark239\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b669e0e6439700075104837213cd07a39967be24d0b9d3f639be58645354bcd6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8dab6c95d76ddcee1d45da3b166dd7bffedb0e61c01c0725e5b8a276cb06d6be", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "05e553b9c1a17866e094e0685a4642bd84a76f2a07558340a397db95a879c384", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wapxmugjv\\.com\\%E2\\%88\\%95qfpdlsn\\%E2\\%88\\%95crkgeteln\\%E2\\%88\\%95ygfdtx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zolxkz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b0709d51ed1019ee9a3bf620ccbe425769d7c86c955a8ed41def7d67dd39fb2a", + "regex": "." + }, + { + "hash": "b2e0345ec3160d14ddd3a4debc5aee41383e19bec8a3bb51275e2c9fe1ed8179", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c817851e6fa4f730017d385ca24edb6ef3197ed7c40ae6f0366c9b32d20430ab", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa23522032dde5d0caf8f19252b12d1ac4940bb77dc9e4f459733f30f2b3566a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a9045035b4e8046625acde119b9ee0c65752532b1724ddd7c51cd9ebd7a48c5c", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e08d03cdeea3d0ac15518f4365068e61e1e8980a18cb791a6113a19888882fdd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuacalsckasemasem\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d4425298a264863663b7f1ab2848201f7c7ff386b7d39df3b41950e8a09bbef3", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2af00f65ed8a07d1292e1b4a6a37892df7379eb82906e0aac62f272193079984", + "regex": "(?i)^https?\\:\\/\\/venetian888\\.eastasia\\.cloudapp\\.azure\\.com\\:6688\\/?" + }, + { + "hash": "742bc6e8d352b0864840aa5d1542d87a33fe7b32a6cebd3d0cbaa1c5b55afb50", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfktlasckacmase\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "60515560fb30a827bd04fc747a7d1129d93d0ae119f0bc466b8ae680dab229f9", + "regex": "(?i)^https?\\:\\/\\/impotsgouvfrancccce\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "94b75ef4e39c6bf8c8fdbab46210c1958d6bf2ce0fda6f94185e6b76ee165bb7", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ayouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "310f24727a6276ee5656b47173eeae827ab433ab3dbd71ad5e4843f092ad0b38", + "regex": "." + }, + { + "hash": "059568e151e8be0d439b6e18e1a0fb55464bb29e7e10e9a9e42371cb1029dfdf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuaskcaskcaksem\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "df45f662887cbd622f7d162bb820390d4201e46a23fca180b127d8f6a43e97a8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdsfykalscakscmasem\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cce193feb7c59cfb36295a0028fed42b3b5f40199882d210edd488e877227304", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6ec66f9ae783387745d15f076736cffd29a30c09e342b093398d1df43d8cfd79", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "13312138b788135b9b5b6aa4e192e56d992f9bfc7a6eec2d9447599937211d3f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b6a9f2898d19b9453140b1ec9b54831287092579e9dd37f6757489f6a4789ea1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasmed\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "299231c2e32d860b94959329927bef418019344d0b87b2f2ce7446a04b67d3b6", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a09717f1a37faf3ea9ecb7b306de289eae224e02fa7ab0c0737450093821e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7bbe98e089d461dadcf97bb593b6c1f2dcf413012fc594e8fdbc50dc0c970948", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftkascmackasem\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0318f734d5148a47efaef7a2317bb713084e50dc4006a2fd626149745677fe87", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e8a867df27e983c03098c1e98417dabc78576fbaeaebe7181873a6f31042a7d6", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ea2860664c588f6f2638f54a5bf63b145d3a53109af336150176a89eb1079514", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "a1bb75f0240bbd129638ef6450aaed3738b055558ed214356e26dfa602619ee6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2c036260482010917d7a1a0ee1fb9ed1b2af3a2d43910d205693f63129967935", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfktlasckacmase\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c3c3bed833717fb3a949800eb2b8f6f13f3d3c1ce9ddb28e8e29440805b3f575", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtyuaksckascmaem\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "dda0945cecc5e7b68e63e28841849520e3b690e0ec33fb02d14610afe53f71ab", + "regex": "(?i)^https?\\:\\/\\/impotsgouvfrancccce\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "82a873d0b5c05a4916b0632ae07d11b0f0ad4a71954a9705685cca486c1f727c", + "regex": "(?i)^https?\\:\\/\\/todayclipzing\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "710a53c7ed2808647966f9c8b2b24612ea3212686882f24d1e6a721c11d40246", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9081942c81df92c9c0603440968d78dc2290acb2ffce6077b2a87cb8768976a8", + "regex": "(?i)^https?\\:\\/\\/afaakyarbi22\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4b39aa6bb82d278cdfd146eb45954a27f46bcf2e5db16b3824adc9b25474c4fd", + "regex": "." + }, + { + "hash": "48f0d47e7b92c2dc398907a326556c3af84646531268024a994153b38b42d8d8", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "dfef8adc3e85cea487e603346e8328955b9386653ce0618c10de2dcec0063f90", + "regex": "." + }, + { + "hash": "8e6406835173d4a46a37c05134e6c8e945e41d0857f3192f593d4b8389c8cdbc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtyuaksckascmaem\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "21a0995480bbd6ff8f6199ce2ee6c19ad14884eacbb1a5bcb4568d444a73bd5c", + "regex": "." + }, + { + "hash": "b6054466cbab797bfaf8b04893754b5c4071eec73cff54bcfe24ebf7a4262b81", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a191aca6b709295ae9a965e17e5b81cc2832dc9922a2977886de5e41dff2d530", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudtkascmasckasem\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3cecf041a8ea92034c5885de19c33553fdd1175d2171ee85cf3b97362b10b5b2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b319b005ed2774b57e90e75605c4bed616b45a1a658031cbb4a53014369f1656", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e9af176a9a332057f764dfd57cc8f94fdfcff993cca509195238ee95d5ee1bb3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasklcaksem\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e78ddafaa9d1773366cf7420e8be115260ed89db49d2af0f0be32aa04030b36b", + "regex": "(?i)^https?\\:\\/\\/www\\.it\\.prod\\.eu\\.phaabqsa\\.64\\-227\\-108\\-172\\.cpanel\\.34\\-101\\-112\\-49\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3791f6896dff99942af7b7d958dbb1173ce96b86beb9e60585bdc7a72bf771ac", + "regex": "(?i)^https?\\:\\/\\/wanhakalll\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "936043ec40e6f899fd5e1c2acf66c2db7b69fc94790628541e41a7bb02602d4f", + "regex": "(?i)^https?\\:\\/\\/pcoaslekafmsudtkacmaskcamse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d87785321885a6c417ba6e2250155073134782a7c30c3a7994e86364170d8d1d", + "regex": "(?i)^https?\\:\\/\\/pcoaslekafmsudtkacmaskcamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "af604755da4f50643e64280e5e7eb01f3c191c94245b3a07f8320a98672de326", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bc4155c16536d1291a6bbb8d1d262d193470145f7b209c668d9dc06156df0d40", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfktlasckacmase\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5895476b96a87587b195e69ffd0c26ec3f7cd1de7d0c5d7f802fbb337857cf90", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "665900ebfa7741f6a0f70ea7af84786a3f4668dcd5a851196cae6ecd04c40b59", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "904d8153256585c09c3f4cf63d5e4fdd2d7186fb358ed686e6fac1b452577d67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+JtOxU9yz7iPISsNM\\-pg6jglJWhG8jgUY[\\/\\\\]*\\?encoded_value\\=223GDT1\\&sub1\\=317a15a57f0445e29eb0cdc2ce23237c\\&sub2\\=\\&sub3\\=\\&sub4\\=\\&sub5\\=22829\\&source_id\\=20490\\&ip\\=2a01\\%3Acb10\\%3A44b\\%3A5900\\%3A90b0\\%3Af5c8\\%3A9e07\\%3A6c15\\&domain\\=www\\.followthislinknow\\.com$" + }, + { + "hash": "b469533306ec5f6da5a90b075e8322ae58f8f6e3d00bd3d761f04ba26760f10d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuacalsckasemasem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b23ef0d386b06264b6b049252c388c0e7ae4cef1359c50468a1e6a38111187c2", + "regex": "(?i)^https?\\:\\/\\/ociasekakvmdsfytualcaskcaksem\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "de5fca801d4842175b8c88aeb4d2fe29d0c7a133b4182a89deec47eb965190dc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtyuaksckascmaem\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4d5df1d3f630040efb52ec10020a85a9327f5cdcce461549b2ed8a905f46f8af", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1331594eee65a74be4ba1e4b3267346df92191825eebb4410846ea3cfcf313ed", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6319f10f68e8b3dffbb9e013e2c40293a4d7cf34f34af0d16674da0acc8506fe", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasklcaksem\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2abbf248ec3c2df072e7a7e8547d9fc204c718eda9c9a33216af9e6e1461c621", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6394cdfb95df5ea94b90eafcb662faa0a7cf7350eb2e22ba9e955eddfbdee1d9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "adbf0deab865b4c8a2b0d6fd5215bddb6699e1be7541870af58d2aa551d0cc3a", + "regex": "." + }, + { + "hash": "8cbb8e23cca5e3103e2007ba31c4b9d87eaf2b4cff5b65db71384f3e9ad9dcff", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+shc7pl(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a12ffad2d853f722a097268adb53b59b4fa73f9fe8345bf6df2963bb7ae18c2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e9b1a3dc4823ef99981f5b24d2c8631e03712f4ec682d5ce711e3c839283876b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuaskcaskcaksem\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "32df4ef5a2c0ef89f5b6ab9f62056089aed4d913366ff68d12d99bfcf7961251", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6cf1fb66921c24bb1d6388e22b23836b264361d2628b01c7fd33442d87eef421", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e79b24acff952b25ff234e480d9ba29cd044b1dd7f369b9b3b7769faf126f4b6", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d09729c97bcffa5c405ed66ef60081f53aba4c13e9aafa12b4ee007958afe4c1", + "regex": "(?i)^https?\\:\\/\\/aquascribe\\-tidekeeper\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4a66567988ed6e00cf4027e89e65332d4bdc3657b2cc343d9588ac8f6564a9bf", + "regex": "." + }, + { + "hash": "8c3b840f2dfd19bb10b5f7aa30353abfce16a1ed9c41c8efcc8347ae4150d425", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c97f23a3a11ec2dc93e4991886a43506d76ba12ea428bd829e9c41d9d23cd418", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "384b999a5f89256cd938cc75b175b4f0458df5ebc84001b89aabecc9cdd7e7a6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "70795f79567467594621dbe95821594880452e6b863d57014e65e7e9412adce9", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "852f1322ce00798b91f8cd3f849e89c36caedd3280cc8362feedf1a5f8913350", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fb673ef06f8770d071b95a9b844048010b3cb70e0d25403869ef13dd0e0e9693", + "regex": "." + }, + { + "hash": "db18ab91c9f346a6ddeb91715664cc000a035dde69438fe66152b6a8630b6f00", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9516a803f42191783f1c5c92ebd1bdd0d0890dc98915c75f34c8c1dbbeb5f120", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.youts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "dd7de6e96df9f7da1509cef743201a968b4d42f726f41e91187be007a20cacf3", + "regex": "(?i)^https?\\:\\/\\/hamilkaka\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8962ff88766b38ad27111444ff4c822df7e85bfc1a5aab4a49a117cf806ae7fd", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "308631d9a80934c494142b93842f3a49f58298c8e7b836fe3e902c68e2ab49ff", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9d40528bdc1764aa69457acfeecb22daae54e6245e398d0d37368be4ec533b0b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9462272bbbeb590a251f9197a6794e3c26a387123a049276d5b47b430d100be9", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e167faecc95d7084b967907c2cc0078f79750c2c6023ff1f1c0557569a2b62be", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ayouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "aec2654c2724d60b4220d52f2c2ff5f8d1a5b753e24d1c2eea3ee6c4cd42e8d0", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9a25c6015e534d96117a4d300248e9e22ce7d93f716cbd297da6d7cb33d5dd0b", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f74f1522d31a8fe896b0673d11c0d580d93acafad06881a20ba831676f18297c", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2edce9b92035dfc13434a9eaf0896ff2d684f09611a37aae843bbcffd9dd8f4a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdsfykalscakscmasem\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6c387e76da34d2e7353cc7f4bcf01b5b890db170d5cae2338ede164f6b4ebc93", + "regex": "." + }, + { + "hash": "b7aa29c13b5f205fecc275904db09227d29bf8eba9df761bf791725de7008ea3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tiv\\.rumex(?:\\?|$)" + }, + { + "hash": "b7534f877ec3eef35d84737ff09ad944999ec396e0e5fe396eb944b491776393", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fbfd8760a3caacbc2fdacca3d9a1e37678ad8e948eb7a2f0c0e2f4fc1c6e52f6", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4b6172f287ce19db113eaffe502acd1d9d4eb1aea3accce281c211a36f7a2288", + "regex": "(?i)^https?\\:\\/\\/wanhakalll\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "734215031287e28cab41d878461280864d723323e859e13f6e256008ceeff349", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f77630642110c192aa9fc63285fba48b87b79155e1611b08851da8f301509316", + "regex": "(?i)^https?\\:\\/\\/impotsgouvfrancccce\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3c23791cb272100685b29dfdcb09b89ebd7b5d1e80111a4260e4f1d6fbfe7099", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdsfykalscakscmasem\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "33d36d364946d77adeb5839aaf4e6dae137281151ca3b512b4e451396e36babe", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "53d7806f8ae1d0850a3db9db5e5ac84ef6f9e2927c71cb1a59aee09433af33a3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "088719fa67df09f2bfe90e5352662476586e55897cdffa18857feac89993b84e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\=\\?ch\\=1\\&js\\=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\\.eyJhdWQiOiJKb2tlbiIsImV4cCI6MTczMTA5MjI0OSwiaWF0IjoxNzMxMDg1MDQ5LCJpc3MiOiJKb2tlbiIsImpzIjoxLCJqdGkiOiIzMDMwcGJodGNhNGwyb2IyOGcwZmliYzYiLCJuYmYiOjE3MzEwODUwNDksInRzIjoxNzMxMDg1MDQ5MjY0MTU0fQ\\.JcntHpmAb8SMeJhEoiS7Y7MdToQqE6D9mm9jo0UgkX4\\&sid\\=89e0c495\\-9df2\\-11ef\\-bffc\\-2cb5d088f730$" + }, + { + "hash": "69e4770f92bb34d17a22276d5a0cb46191d18586b48e19e0ff91ed96d6c39786", + "regex": "(?i)^https?\\:\\/\\/sawanahdma\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "86c00885d1ac2e159c5d01fff21383b0d1aab889cb331c2a84ef98cd2d1775a3", + "regex": "(?i)^https?\\:\\/\\/hamilkaka\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3862d73268d83c5cd1a43fda4fecb258f5bf334c0e04dd968092b176a776741f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e69a9ed73d9491e007af6e399f7d4b15b71496a5d9f47910e15f9594ab52f275", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuaskcaskcaksem\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5d250cc6e2a20ab0a959e7a5adaecd0a5c920e5ce4ee0465c69b2fb5c2de4e83", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "53efe3081126349ff89e146c986e9d2785a440ea14bc0c128486a42f344fc884", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ef598e413c9689184098f21b83035effe1b957bcab96f1da976d120c7f825e38", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9e7b51c753ce06e2b937efaeac2b576fc4983dffb406523ff200efb78c9d51da", + "regex": "(?i)^https?\\:\\/\\/afaakyarbi22\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4a4e70b66ce868a48ec1a2d11ece9cf0a56845ad00481036817ba1ed24a25dd7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdsfykalscakscmasem\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "86b9b1741ab814fbb4ea83c7854ba539339f37f666d9b031a863c712cdf68c67", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fa1c5c43b1c0a18324312160e87e91d3800f73cf887c761918786016494658ba", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a78e7ec253a2482931cb9d3d96780fde16f1a3ed0286e18638395149f6b2b115", + "regex": "(?i)^https?\\:\\/\\/aquascribe\\-tidekeeper\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cadfe63582109da0b29e96cfd07ceee11ea8052097c86e3c129d06569abc33ef", + "regex": "." + }, + { + "hash": "e383524c7991142aeef45edd68e844b3ec2140c5d833bcb733bdef321ac9095c", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05b4f3c0ed9c5ea03061c5898d2460129b4976341340ffa60f719b8ef119d14c", + "regex": "." + }, + { + "hash": "2fe804b4a82faf75e07d156d6d72e5b3496a8b3acc42f390496678f743ba686f", + "regex": "." + }, + { + "hash": "7d1ffa5c58f5e5b5d7303604ec60e9fc3a4c010adef9ca96fa1fbb54c1e32b44", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "df4956409258d6be0d2baa39a9b89420cbde5b282a0f855b8c390bb1c1d16510", + "regex": "(?i)^https?\\:\\/\\/ociasekakvmdsfytualcaskcaksem\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "013c4ebeee8b0e9a03a0aec30436c6e3798d9576bae5fe042e80f718068c78da", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c0fa0979887bc112e86b663553cfb519d04157931d3e140f9249d76ed8048764", + "regex": "(?i)^https?\\:\\/\\/afaakyarbi22\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "58606c9fb7193ddd01d5b6538001962908aef9b600e0029f88cdf356a126d0c4", + "regex": "(?i)^https?\\:\\/\\/rbx2gen\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "a4c779947fddf930b9ba2b89e2dab58fc930d8f50bc865e8852d17ac6f5e2dd7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "58833495b019203b4978ba75743f45e4998a8160ca2581baf023e4706fccf765", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4ceca6ae25f78e5a9fe01695b4bf48f2da3b82120651b1614e0100e0aa5f2b57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4abd3deda2c7239f29fa34a730d65b47d6d38ed4a0aadafbb91af468cf3df002", + "regex": "(?i)^https?\\:\\/\\/wanhakalll\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fcb6f6b89df47c8d72a366defe2e810eb35035e1ca6a0d214754cc749605c52a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a82483dcbb4f380760dd673a666504fa35e4502155787eb46050226a5727625d", + "regex": "(?i)^https?\\:\\/\\/aquascribe\\-tidekeeper\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b65dd45b93ad02ca70751c3dea617f6f1e05996c27788dc2fb742f4b13cd13fb", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rcifzu(?:\\?|$)" + }, + { + "hash": "fa8c4bc12b733bc4c3cc5f2ac9401589717ae4b3833bb7786de18dab623babfd", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasmed\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c337651048a7a7ddcaad81e0a7aeb2db5203ba755138bcf7ca05b05de1b27216", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudtkascmasckasem\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b400a5576abf0073190f5820095c2db72842fa70c3b5709254256ea05c555954", + "regex": "(?i)^https?\\:\\/\\/aquascribe\\-tidekeeper\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "851c08378278fe8c24c1b5d94f1c331ec2fb36fbc80b7001e849348c3b90ec48", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bdcc0721b6140e3bb2e225fb0eed9630f1600a101997dbae8c0d860e281aadf0", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuaskcaskcaksem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fa2ff681171106f7bdb8b0fa7c6f09f7dc64aaabfba02789b0b6e555735a640c", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "17cf17ec41e9f483a20853abc148a18ad350e5cb13aa745901706883702d5f27", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8259cedcd80d8c6eeea2c7f6d57b5ee1673e6531690cebf15b2d1be39c0646f7", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "605358a2aec960a70c37c825e9528449de8dc5210b7f0cb2e9f16355970bda82", + "regex": "." + }, + { + "hash": "6646fb4d88b851b40c6676c97bbc9e2c85bff73adabc278ce9aff27831234cb6", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d65ca8c7f11cece9c863ffa9e58161fcc84d498970eda7693607d952d42dbf3e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdsfykalscakscmasem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e22d3e0df547d39c5b39c6d70e939a14d337f511d63e89ff9fe8e81043156567", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f79abde61858cf06d0b8197b910dcb30d799167ff2f27ded3e54bdbfd391e94c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasmed\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "95f300ec936861923460a229bef0b531652103f3f52e8d9426d4c931b7237927", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2cd8cd5e40d26ba054f98abd33956ae635c6e421be94456a0144f0c173c82faa", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfktlasckacmase\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9e17ec640a8532c1a52605514dd562c935839d14a8d894471bebfc7e4120f306", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "26283f7ca52399cf2f70994fe309d4e7accadb1218b0f38489213ab36990e8d7", + "regex": "(?i)^https?\\:\\/\\/nettennz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0c636e32622fe7413e500c842374c6dc10e4e9f169901608731f7eaf4beccb6a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dd4ed431f7275f6e229fc066e62883348b8c8abaaf23244bbab6254059670293", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8fc2a4c9705ca564c7c5d9469684964d1bc30bbd951a454aa440c641646383db", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8d9aeeda2a71210e47ecb3e28c797a3a36088ecb0723f4048f0c7db31133391b", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1a1c87e845df82b7bc3cfa17be98cf6b8bbbf8d11e1bd465bdf01a83f12f3e32", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasmed\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "72f02a080c3409ed97c170a4f2aa3600e9cf2940598f749f5d6962137d71f339", + "regex": "." + }, + { + "hash": "449ae71657dc38f444892649b114a47e5dc713af7fb34d2b38fbd562646f131f", + "regex": "(?i)^https?\\:\\/\\/wanhakalll\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "20dd861d442b94b5356c4c5b1e06091001482be37d6a948e267b571fa1f562ce", + "regex": "." + }, + { + "hash": "a9e9516b83b926b851d8435ac2bb708b9c49e53770bb21e966c719624b010789", + "regex": "(?i)^https?\\:\\/\\/pcoaslekafmsudtkacmaskcamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e72ba2ce65699b3c7e541736c38702538098da3e497c41096ee8042e07a809a3", + "regex": "(?i)^https?\\:\\/\\/kolomnzyasigtraza\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "97ca3d30891641e4d5fc2c9091631aa8ccc75a5ef2cfc95eaffede6049998969", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtyuaksckascmaem\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a1d6377bd326930b638a0a688d769fd44078062df8ceac31fabd5ac04492a808", + "regex": "(?i)^https?\\:\\/\\/sawanahdma\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "62a79381f9f00b3b3aeebf748e5c8d8a5372df379fe85ed401770ea99bb7b7f9", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cbcf84ea406bcd12ec3fc5cf5a329012986fd0b99bdd1c439dec5a34e67deb2b", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f1cadb4debfea2ad08a3268812a120b563810774dc518e9f28863e3d9524c82d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9a73c67f9d077d6a2b4bbca0abfeabb3d3fb76fd0bd0b7dca84cc04cf7270212", + "regex": "(?i)^https?\\:\\/\\/kolomnzyasigtraza\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "04cbf51c88098315c76f3e97ef97abed1d9e602f1289aac89cc9ac7d60ede214", + "regex": "." + }, + { + "hash": "d478594d95825b044813b7e7d1fa877847b0322afc2c88cb3302fd23ba4f9530", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a443f4e7ebee7849251d68f9a8744e348db5cdd8c99d2e377f18adb4e0c396e3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9d8e644105e31b22a88d623ce0bbf35daaf83711512dd5b84c0035c5be00908d", + "regex": "." + }, + { + "hash": "7e061ee20197af6ebc9c4938ec6942c59fcb3bf0161c34c405b5d0726ce405e7", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "529b7e2cbe315f9d1e2adf5b14ec45d653139579995282cd00a8492d24116285", + "regex": "." + }, + { + "hash": "3225965547be3a61195792f4af174de3bc1593679a760338160a47c378f63ab5", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cnkxkkeqbb\\.com\\%E2\\%88\\%95fraehxh\\%E2\\%88\\%95jzjgfn\\%E2\\%88\\%95urdubm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dvbcdvjj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "8c8532796dc87ca0c2e55be0bf974bbff2317f7d2cabcd6e6ec15eec91b6a5b3", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eda5f0918661a5235ea6fee86632080f753512d961f0165843d2b039a33ee8af", + "regex": "(?i)^https?\\:\\/\\/nettennz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "336036eed384ca9d01c521b01a077a1be8a5f0bcdc1b2da077eee480809cbfc2", + "regex": "(?i)^https?\\:\\/\\/aquascribe\\-tidekeeper\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d2caf7ed973b032b376cec40677ea5c3e9220a2586cf4089847f6c77db893894", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasklcaksem\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "63408b2e59b33d9425da5238587527f68bd8591fd02b9ce5ba8cf072b4cc474d", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "3e980011bafbf2a13128bc6605814459d56c0dc93be95b30b269111f8d169815", + "regex": "." + }, + { + "hash": "14ab93a7aba576bb9949be039b4ac184fdaed1cdcca755b8095df8d7ecc682ed", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3efab3ddeea781857821456c75b92644a05d8af8fdbb8446ec25a6c370dd1724", + "regex": "(?i)^https?\\:\\/\\/refreminsnet\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "794a69af24010d88b7e37f19ab90238fa493415b6ec2d557e2748209507e9609", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4dc38b639a3fa505fa80d5b4388db64318d5da98ad34e00122caa9c79dfdab3c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5a34e66b9a38b3e3d4fd3fcd9bae0826ecdf461a1458a136ad3eda26b546f3af", + "regex": "(?i)^https?\\:\\/\\/pcoaslekafmsudtkacmaskcamse\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "19bd139070b1e80de04ae55c99e18993e8aeb45266249c3592f30a9f1d044062", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "68ca8e4bef8e2821636adbece79f04ee6310c4a520e82a5c702a7fbbf41ba376", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5bd2f8b8d702fcac75692d11a310bbe85990b4405d1b8fac7a2b7532fd4624e1", + "regex": "(?i)^https?\\:\\/\\/pcoaslekafmsudtkacmaskcamse\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a4baf2b115f2b81b3954028ccae5ac98282152176574c0517fb40bd3c40ad65a", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bcd156b48a31e20a5ae2f2f729544a5aba7d0126d08aa4408b8c6dbc77c92332", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a718660a28b8dfd00850924b4991ddf6489d3e89aaacee70622af1032096c4c1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "14bf5f9bc4fa9459e4e17fccff0d2792e24e2e48f46de6e8d3f400014396bbd2", + "regex": "(?i)^https?\\:\\/\\/todayclipzing\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8f7ae6f50a50cd521fa90a0ba08021c48bdcdc700c4ceba2f058e387ee4a6fc5", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?domo[a-z]+\\.cartfinder\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "e3c6e577d7bfd12fac43ae03cc1e0e0ddda6af33dfc787a61c2b11a2f2e5015f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtyuaksckascmaem\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3d5ea13e89389dd87e174b08d1a73b165efd78f8a6493c8a3f3324031798fc55", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftkascmackasem\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ca6307b4a695ce351ef44b5fa3a10567379084b657a6fcf3b10299e0b5e584cf", + "regex": "(?i)^https?\\:\\/\\/refreminsnet\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5286f651b25a90d8ec4f21d711329d6cd1994ee9b1013b18d8d6da14aee1c78b", + "regex": "." + }, + { + "hash": "e3fada410dd70422cee5ff3374f9ee5701a951391bf6e021bdc5f52444a0752c", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7567c07c810648a9c0cc0fc2f70694dc86de1f0c9d19cee97a699e28430600a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+otp6" + }, + { + "hash": "b7ff49c33eea2faf85f8981b5e7c42736a86702f11932d57a1b4b7eddc869ea5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b3a59b72f6cf2ffc6b43af423dbfecd4ff9584e973546e3ada28598fb6a6aa69", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuaskcaskcaksem\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f50c75d7e0be5a5ec8ed07278bdbdc62222b29414679b37c32ec0c823f645ce6", + "regex": "(?i)^https?\\:\\/\\/pcoaslekafmsudtkacmaskcamse\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0f2cfd0101034e49616c621b37a1dbbd1a974c65094e34ab5c9aa19c2aef201c", + "regex": "(?i)^https?\\:\\/\\/impotsgouvfrancccce\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8ce1745f029ff26d40a918dab3a73df180e11a34f4baaeb61ab7b004107d545e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "e3c0494d06e2a34f53b62fdabdb01da2e5eb19ea6e00bfab4f9cd2ad41c2e982", + "regex": "(?i)^https?\\:\\/\\/afaakyarbi22\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "74e620eb166591be8eb4a1a04f2e01bbcb5f90dc123a0f87b9a2e074363a8d02", + "regex": "(?i)^https?\\:\\/\\/ociasekakvmdsfytualcaskcaksem\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c5c64c718c8e8ca061811ea1a50ab162b8dd656c619f80faf26236d3e34e8b3b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasmed\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2d3b9c50c8ef5ec728004dc6b89ac6e162c0d24abeff4978f0151443db7996fb", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudtkascmasckasem\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c8e8f56a0e2a5fb844f45dcfe7687abf19515aa26091cf23cc22a1edc4e3435f", + "regex": "(?i)^https?\\:\\/\\/www\\.shengshangyin\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d24cb72a766d01f93e94506cf43a1f490ef8f3eddb336d0d2e5c4d5fe8554d67", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasmed\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "792a1b9d3408693e7c1a3d2ef96b34baf8017b803e8eedc14323ab0d5734c539", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudtkascmasckasem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a38a3aa9110ad587d3599bf02842d61caf0ca519a75136437dc714c741bafe73", + "regex": "(?i)^https?\\:\\/\\/nettennz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a3c2b36543dcbdc7e7e94428da735e64089460f75b041b1480435404cddd79eb", + "regex": "." + }, + { + "hash": "fed6eeba14c418c15d4cef74df8f96da1f12d3f1d74dbcc665d1cb6bc0f40c78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register51268(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "750aa2e62a7051d0a60612ce845cb5c705336211170d265a2fa2c81187439592", + "regex": "(?i)^https?\\:\\/\\/ociasekakvmdsfytualcaskcaksem\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "f134730fefca543ce71c4bcfcf79f8b5c0b3eabc49c3140adf2b1a8736b46db1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "013dde23d2a0f017b5e6188fedd73b73e167bcc856fd3c9543a93fb61b30b1d8", + "regex": "(?i)^https?\\:\\/\\/aquascribe\\-tidekeeper\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "864d7e93e034bd73a74afe17641da74a7b7ce3d78bfdb35327066b27908c9521", + "regex": "." + }, + { + "hash": "a7e3d73a39050b0ba8cc9fd88f7de4b83b1d10fd0290d59960a0a3f5c2bb496d", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cf0d354c021a50a8fb159303128ff1639eab5f97fcc63a1fb3f49e0fb9715a05", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasklcaksem\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d70cb7616cdca8ccb59ec33c931f37242d8cfd309e540fe2e632ac49a08f7cff", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "54cb5519925c99191ce7fb3157276ad9fa2eab725a8fc5ba0c129ea6003319e8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e76dcafbeabf2faf4958d4cdd16d4b61dd97eb15605ec5f07f94b97c71a45baa", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ebebd6b10572a51eb391cada4c2b7e2bb263b0743fedb704c7643a99a67899f0", + "regex": "(?i)^https?\\:\\/\\/ociasekakvmdsfytualcaskcaksem\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "35beec1d9c4d534f91c4b96763fd8aba74b7e47d0520928d4adca787d9f031c3", + "regex": "(?i)^https?\\:\\/\\/impotsgouvfrancccce\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a9d263d2e9646bc658435c2807cf21932a9386209a9ac6f2334e3b1003ebc629", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtyuaksckascmaem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8a25be82ca43ba3b9c9e34da1372381047162481d4878fe7141f560fe82aa87f", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a4ba886e82716fe188851f1e67923e2b3dc60bfe38ed05c9025a5d5e226131cd", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "97614d6f39e6c103813e7555517e17588a48d7234bbc3c38b3d8b81eb8cfb100", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5b3da0b9d54b5665263216b8ad69623c45d0b9ab2521402bc711829cf6b12d3d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaklcaksemase\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7b503dd17b4bb37b46c1bb08ca3fae902630a25dcfda1840604db8488568642c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b916b12815035e14fda54b993fe07a06a5cfdd6fce935e7ff0ffa57b6a6a40c5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasklcaksem\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f5611c15ae24807ead05554bc5b548d693be34871bd181b11846b3437ffbff58", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8133c2c86d3712c25ab8a1a314258dd62377b485ec61d481df95ee7fb64bba97", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtyuaksckascmaem\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b2e4c9fde45efb85666e208604881748b9a86079885751bd8981c57964d71cd7", + "regex": "(?i)^https?\\:\\/\\/nettennz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "42a78589226a54e7cc455e3dbeb571461e66950c75e94caa3dd5daab71cfc9e3", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1bacab7da63f7671bde92ef45f0bfba2fcc17b2296c6cff92cce9e7beebb3bc7", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7f6ce427ab5dfd38bcbfd66d0bf84ddcca52f4a9ef485227384a39cb671ee638", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bd9b30e0e31ec2bdd28f36f5f0fbaba899071a3f9711e983aa96155916d63469", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5b29b6bf5452e7db29d47db56cba925e00d25843d732f06757cb7909a96965b3", + "regex": "." + }, + { + "hash": "d0936530c35b9a034d697806fb78844db149571111ba4aafe5a454c44a2d79d7", + "regex": "(?i)^https?\\:\\/\\/todayclipzing\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c6417a0e554701d06f2ba5eecdf1592069558eb5b4830fcb7fd84513b2c1969b", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a843e4038134920c4b6d94e710cb61f3565ee7bb7ddd8f5e1e02aecb6ff1ca3d", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1a7f4a871b52a7c3abec93d76d32e764165dd8dc0ae6173e97711c7a31b26277", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ff041522f7db31449ab1786fc7c7576fe521f582b864c3a9d80c8b9e62610883", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fa28543f2fbad1a14d584e35a56c336691c33de4476c4a02c2a73b374f9e390e", + "regex": "." + }, + { + "hash": "d26368cce700fb1da4b16ef1b48f75723265dc8c1c5f7860395434010806c186", + "regex": "(?i)^https?\\:\\/\\/www\\.3ce4e4403c15164436\\.temporary\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "9a63ed62d580e594215308cbde459a16b07c10ac932426d5c8dc21d2858ee2a1", + "regex": "." + }, + { + "hash": "41c639fc80400265ec8fc67dad74020178451916f5eccc98028cb9cbac5c2da5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5a80dd38be94c53cd8155e9e117841675b5a1fb6f981980cbe57d5754f1870eb", + "regex": "(?i)^https?\\:\\/\\/afaakyarbi22\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f7e16275498de150a680f9153189903cec58fcca78db6a5eb2721b8b2ed4a8f4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcvmsdutaklcaksekamse\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aa0b78bb0cea64c38f6ecbb9841d81619cf51f94c11bbe30d5e820bdc7d262f2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9fc8c4879e540e95e5c34a1f3b669f84ac6afe99b862772f1be13079c6f7918f", + "regex": "(?i)^https?\\:\\/\\/aquascribe\\-tidekeeper\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f3c4bc428bc8845fda0607e73318a23d7bd3898cec211894151d6fb37315c91b", + "regex": "(?i)^https?\\:\\/\\/nettennz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "70e9e05e91bffa914457d60e417e7d9dd980fb789ca7583b1e7cdb73e4165b24", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "656cb22f70393d3af943983b0a4df852fac1451adf18cdf8258c1b9b73877b03", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d5ef77a031508eff86d266b48655e649f7b8f978d88f676d4c6bd94831d3e3ba", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f8224076fa7e089cd93c01f754f977eed3002f1e33cb917c3693f53c162abc43", + "regex": "(?i)^https?\\:\\/\\/pub\\-672f77cd1979434e90c688f19ca517ac\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7616e42790fc904fb9fbd9fbacacd37b65c934e58530867653388baabd1d9a14", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuhsackascmasem\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0dca0a8ebd51c190800ac6ab4fa1a0f27d75ebf7922b751fa1df08dca9787d05", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cf687e8b4cba94b9a548df9f179d711c63ad03c519111190adc00124d87984f3", + "regex": "(?i)^https?\\:\\/\\/issuefeedback\\-matter\\-content\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "60105db20654ef6060ddb5102ecd7bec294a4e91e3cdae3f917f26f30c002aa3", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fd73ff7aa3193834caf67ff69e39caae273ce20d41caa6b4d3708e9d5b68cbde", + "regex": "." + }, + { + "hash": "777cf9b64221c17535e90f3e6d3a3262619519767150992be92d58ea9cedffad", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftkascmackasem\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f18876e5232a4112f49a88a1b7313879ca4325ed13e47ac924006b17352b5a4c", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "8c99d1f51319f23aff33cb7c39ec59d46d187de1d3631e1f3bea98277b849dbd", + "regex": "(?i)^https?\\:\\/\\/kolomnzyasigtraza\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b818a4e3d278ed55bd49d7c3bc93cfe32730b34c131638aefd11bcbe7e7bbeaf", + "regex": "." + }, + { + "hash": "8cb8e6ec20e0941af2b4725165cb663a6b0140f0e12161e1583eadf1b1515e07", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudtkascmasckasem\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "943171bdcc2ef13910b3b66c0e20ced6780d63915bff837a2d0c374a174ddf25", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtyuaksckascmaem\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3a0e86e96c1ef1e957ef3f3c1129ccc1328c919c1d6074b915616187d9e726c2", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "10fcfe2b6cc1f2f70618b34db70e9c1fb1defaef04cdfc8c763e64c3b8ece52c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a64101afe5b24fde0a5af50be3894c55aaa7c1997426a466bc85517f15050100", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b0e401e2168337b21ad15187d363b9974233110943f6a0a19308316a231060eb", + "regex": "(?i)^https?\\:\\/\\/afaakyarbi22\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "07c4160b9f7a7500d886a4b291a2d75bb9095221cdb770b55a22666a2d5da876", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fd17599e377339af76a447b7cc71f16112f793744d0d4f34c1e926b77d5c4b20", + "regex": "(?i)^https?\\:\\/\\/afaakyarbi22\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fd03bc0174b5e9ae1335641254f173989fd7b98856c5fbc66a8455f98ee09351", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7ca96405ab975b5ec041e50d6d624975bf1d95c2d4d54f0b175f01485617a6a5", + "regex": "." + }, + { + "hash": "6d3ffcfaa95c2b0c35fda58f81ce88e60726bbfac52339444ff6d7fb0cfe80c5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4a7ac5730b9cbef7de8bc11e89b463b3d8ee7ef5e233c41d993cb33e9653a653", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b9152ba81cf39935b63f8995f93ce45b5233971b2ae7efca0c1b9e2a152ea265", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfktlasckacmase\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "73251c151f3f26ac2a85005726b9aea10e39404d03a8a45e310d63361f835afa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.H9TKbX4nxbldnTuCcS\\-2B7QU\\-2BVUi1X0M2712w5kQj29pHJsYZ1Ib07Wxn8y4Jyd1LTSKok2HQYVWzbyG6kd5mlcw\\-3D\\-3DkKx8_jEqpDrJXpEex\\-2FiczsuuIMKQT4C9gmY4mMVrj7wgc78w5ccw1KyqsXgThmvQsGp9Sxl3E91ovi4lDNL1wcRzhcYK6tl2fdN0yEYPtJCnxOk6W\\-2F\\-2Fbf9GmSGOyid4F4tSu3g2KBSI5z52PI04ACDEJ0MMg6WJyPlQcsZZbXVSwMeRiNvF\\-2FL8xCetgh6dbRM\\-2F0lUUa8kvWKefefja4rDDXkF2LqE3Vk\\-2FfdQ0Ussm2XvJc1ncmtWTegXvqWnoLlqVFR8qRE9BcafDjdXqDSM2sj6O5g\\-3D\\-3D" + }, + { + "hash": "5a8013a7fed71bfb0cc3f94c1b1fbb9e2b15ac1a2a00f6028dfd8dcff78ee242", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftkascmackasem\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a6cc571d8bdb76add27a9465afb0958bcf4109effd6d3aa86a48c32f29981983", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "97944a62f2ba8b4d4fedf21e20df178ea36c4fcb8ad9c4df0cd426fbcb9a2f3d", + "regex": "(?i)^https?\\:\\/\\/hamilkaka\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b70178bff1236273efc047b23337d9cf516232d74c8c5c603216fd44043c1ac8", + "regex": "(?i)^https?\\:\\/\\/kolomnzyasigtraza\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1165461a17c69cbf073c40dfc08051f0ea6104d995a5f2c94b5e97d6480ad53e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfktlasckacmase\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b5e3bd02e2a1bdb898b9369e62d24c922e2b4217dbd4bb1084ca70c5a1531ab2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasmed\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fe39c29dc05b77b5d39d6079bcf1d044dc760b6faac875e2ef76c40b72d44d9c", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8146f18751d17425e7bf26929e70ea0b2e2985adebcdd94a2686ede91e965da8", + "regex": "(?i)^https?\\:\\/\\/sawanahdma\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "68e7492c9f61611d06f06a8d60b29603ea030a55fe4c0120cee72158df86e110", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a325d1bdd1a8ec1037e66b27f3df43415855b20b6d3fd3cfd1f824e92ca42d7b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyjacvahskamemase\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "03ae0bb8eb266dfc949ebbbea1a4a8a88940c4d27638b362045348e9555ca4f1", + "regex": "(?i)^https?\\:\\/\\/comeidreect2672\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b402816b729ab6a9bbda199107173787e38716ac365d53f4b02ca036835549ae", + "regex": "(?i)^https?\\:\\/\\/okx\\-web3\\.cn(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5fbd1c78b4ceda91791fa16da30e2ab0a28d2869ad3fde615e2d5194e540e182", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3b3a7ea9aa55d38658cbad389e639835c87f0d04489197c7976f0023cea22c6f", + "regex": "(?i)^https?\\:\\/\\/aquascribe\\-tidekeeper\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8712356163986b7940448205ad6ce53d1dc60e23456eafed67f664b2ff31e561", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "72a6adc2d22943ad0366bb68db57a75a43033cecfacd5b856657429270d27f4e", + "regex": "(?i)^https?\\:\\/\\/salimonfraction\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0365f8020dbbacd233278b3f13ad9267d6e8a862ac469694c7108516453a1725", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e4ad55a8101112827e03bb3cb577d2145769210957034fd80261dd61d462c6b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsktdfalsckascmasme\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "af9d063bfafcc5b7e81bf9cd98c0a3dde782aec3e65f66fc33dc00e561c99f31", + "regex": "(?i)^https?\\:\\/\\/nettennz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "12866fda5d0e702d70d65793afb01a704d2df890d2cf73a3d4b747489a4c60cd", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "faec43ad77b33b3ceb4c3e85d611459c0a9c0c5fc18641e6964b283c28bc819c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsduftalsckasfmames\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "86f6d41dc382492a1ca8eaab9a86e202cf18929343fd42ca69d36a6b9f45a183", + "regex": "(?i)^https?\\:\\/\\/refreminsnet\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "79db62a94c4227749eb8a384250576030d85c09f9ad4cf20f7fce62d289f619b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckasmed\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "df7381953aad40e901aa27410b3cd61d5730f449d76a50fb7384de067ea51253", + "regex": "(?i)^https?\\:\\/\\/kolomnzyasigtraza\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0b3e4b8730a055994058c38dab2700ef8ef52864d39f1e740dec2681548dc2a8", + "regex": "(?i)^https?\\:\\/\\/nettennz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c33758896edf6d1e0cdaba4e8161ebc39274dbff8a64afc3fd56c02bdf0fcaf0", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "895d995d9b7ca7350950fe7514b442a28de5cf0aafab8f4723e35b70e2f03643", + "regex": "." + }, + { + "hash": "2da15f95aba669e8517086ed5c93ba45d929ba9cd074c44e72f7d29429a44d1d", + "regex": "(?i)^https?\\:\\/\\/todayclipzing\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "62b0c0bc83fcc590fc89adaab26360cda2be67afdfccc6c81608a90da23e7aef", + "regex": "(?i)^https?\\:\\/\\/ociasekakvmdsfytualcaskcaksem\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5ef0ef7ab7d78f6ad9fe5ab4bf0b8688be7268952c14ac87d033e79bb4abdddb", + "regex": "(?i)^https?\\:\\/\\/pcoaslekafmsudtkacmaskcamse\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "68bddbf227b0e2fc3d14f5b4b00508d8860343e70f725e89ad0cb95ab9858cf4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftkascmackasem\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "84d4c57cf524a93e1a994c2f48e8192ec8ebebbb6c57073d428126eb39bb759f", + "regex": "(?i)^https?\\:\\/\\/securitylnstagram\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "32db15c43a3dec2dc91e9b252769e29e8d86667a6c782259e5993173960649eb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalsckacma\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "87c8cf6d298e3e88fec960a8454f3a3a5385bf602c88670a97b11d0318f7726f", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "a50ab861939fd171087762726fa62b438dd6d8ffc07cb4c375bc0245a79880c9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdsfykalscakscmasem\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1926708cc1d602d143c2aa9e8f7f2909ac6031a7b36334383442778494660a94", + "regex": "(?i)^https?\\:\\/\\/hamilkaka\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1a16851b984a1ca5dd728dc018c1e0d047470e2c6fb5061f7d9198eb874355b6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{4}\\.zekno\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "fa69fbf3a5c23281a5f9cd5b46d5d50adbe802ebb8eea9a671e6e566ecc051c6", + "regex": "." + }, + { + "hash": "0efefb8ecd04557f7ce31c57c5ba13e9b46e7dd45d9562a32062fa9c4cd16c64", + "regex": "(?i)^https?\\:\\/\\/intesa892222\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "85f71c07de8de86584c205adf4a0b3b7c221b5a7871606b2e50bb0e82a1e9102", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamvsudthackasmcaksemas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6eb3561c66cc427538a67a9768406f9f085ca1f27fe4deaa6166a350ff2d398b", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e9119c752561c235ec5b171654f6891dd8035326522c3414c19b777922d53179", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9687ed152506ac2add4b23827e30d7cf5a4c5559283cdbf88a3aaeee9c6a57d1", + "regex": "." + }, + { + "hash": "8e3f7613517a9c3c6e93bc9915c704f025450c5c94a5e8faa7ef8e37e165e5bc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytalsckacmasem\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c9308fa38c1e7c151838f9f1cea02fc89df15143baa595045be0251cf1d9d301", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvskdtlasckamcsamse\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "904d8153256585c09c3f4cf63d5e4fdd2d7186fb358ed686e6fac1b452577d67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?encoded_value\\=223GDT1\\&sub1\\=317a15a57f0445e29eb0cdc2ce23237c\\&sub2\\=\\&sub3\\=\\&sub4\\=\\&sub5\\=22829\\&source_id\\=20490\\&ip\\=2a01\\%3Acb10\\%3A44b\\%3A5900\\%3A90b0\\%3Af5c8\\%3A9e07\\%3A6c15\\&domain\\=www\\.followthislinknow\\.com$" + }, + { + "hash": "c720d94153cad7a6f8bcb367886eed4585be30d112481eb1a12055ce8fd5bf74", + "regex": "(?i)^https?\\:\\/\\/hamilkaka\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "53228f8dc7232762f16024ed7a78949e2511d4266c7e328a607a5928e46b7fdc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftkascmackasem\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "60f490ea80edbac4e9d7812ed3e10f688ef65d3bcef46b1efeef5cc78c7b6ee5", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsudtkascmasckasem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "59224b36521353d12f331fba616816aa435e0d25298257af3747cb8d5db97422", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+form[\\/\\\\]+help(?:\\?|$)" + }, + { + "hash": "4ddb17f1421255472f976e4c8e3f47073631e3de40ea832ff8e19eb53f75014b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskdamsemas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "706680cb73d284cad006248e03a97c18b72d1b509acd72ce8e956f409f8f01f6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuacalsckasemasem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "28559ffde3cf910df12aa79f3a06aa0b29a6ec8efcfe58afee3ac66c2eea6fd0", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuaskcaskcaksem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3cf156c557b6279ea3bb272c89f29e07f68f6320bf3753a810e5fa7f4a4b9bc9", + "regex": "(?i)^https?\\:\\/\\/kolomnzyasigtraza\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9ab13d939fbdf7e4414f797603b8fd7865c0bb38aef351a0cb0de4af7a20d69c", + "regex": "(?i)^https?\\:\\/\\/microsoft\\-password\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3837f2da621636ae6d551828a39f23d81fb640bbdfabb1ee6c641ad0b7144dfa", + "regex": "(?i)^https?\\:\\/\\/hamilkaka\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3e28658f764b020c27735a2989be6afa2753170a04fa5ed251034ce9e6d5f8e8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfktlasckacmase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dce691afa9126873da8d79d7a1dc6dd5839b722c49c04e512a8b557bc8cab84f", + "regex": "(?i)^https?\\:\\/\\/hamilkaka\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7dce0ab5232358de2f66ef7d0bd7f0a0ae0e86f109f077674d746c709544a007", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdtkasklcaksem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "cb9d1821d09ce240a3642adfd068f878ec4fef305db0a98fe0bd95969789e715", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmsdufyakcmasckasme\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "22504b537ab729ce79a509e0c7707415bd88eefa609349d865d9ae3df6b4735e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.lemeloets\\.com\\%E2\\%88\\%95jrxoaioik\\%E2\\%88\\%95eskjgcah\\%E2\\%88\\%95bxqbcu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vtagzrqk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6a1feb648c061bc5cc8bedd464d30297184262f76ce7a12e9ae0ab95b4d34d4f", + "regex": "(?i)^https?\\:\\/\\/reformncsnet\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ae12331e32cd3c993af9335f6aab429f9bebcbea6bb9d6e58cf4f0b6432a4b11", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "413abaa39c726de3d9610db8fe9c7310938595502241f6e7a23893656eef3400", + "regex": "." + }, + { + "hash": "f590283f9d88ee0adf499477f87b2e2ba8d9cf3a62fadf1e58fcb3b7e097810f", + "regex": "." + }, + { + "hash": "df6230d072f869e40d2862f04a1cac960937b00521e26dc1a18fca0e2d29aef9", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zksuqudfh\\.com\\%E2\\%88\\%95qbwpta\\%E2\\%88\\%95ftbipryg\\%E2\\%88\\%95hzfjemxt\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=trknadl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "188011dd664c14b0aaebbf58d4f2bb650e48543f3fa61bf8952aa95af6f1445b", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9cbcf5f38c02ddb5bf360e18cc002e6cb911c9f3f4b6804a74d9df076a3c4137", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ympjizmhqm\\.com\\%E2\\%88\\%95vegnu\\%E2\\%88\\%95nvcrmgv\\%E2\\%88\\%95fvugcmsas\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=btntlcl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "609a5370510910611390b5de27cd3d85c6ff789aeaff9bcd2cd58b20dc9c482a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+A2Yr9Nv\\=qfK1UtB\\$nhditgid\\=1HYt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "899e781f716b916f2c57e6de97f924f1e41c7899acae833fa1d07b78fb349ebf", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-dans\\-le\\-nord\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bafcef1384a551c43f8d8c8482f6b40fbc69fc422303acde71cf5d0aa634c550", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4d927e47bce0f0dda593734d54aa806fac5345ea3e4485fb93a15dac6119e1c3", + "regex": "(?i)^https?\\:\\/\\/petites\\-annonces\\-plan\\-cul\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9bee20c813f0d3de18158edc097b627b958765e353fb5c8ad7bbf3780b024675", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e935daa33317ac36309f026941eb995961a6d626e15a04717b9c26390908a34c", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c889e447a79e17720f7c6c0b0fa1f4069a6cfc365476b65f8a8c107ff47b6570", + "regex": "." + }, + { + "hash": "51a7a0bd328408143051ce53844511c118255268d03bad7b4c00ce10a6aa8022", + "regex": "(?i)^https?\\:\\/\\/amazon\\.yccwauqlq\\.com\\%E2\\%88\\%95bbbso\\%E2\\%88\\%95gzyyulbz\\%E2\\%88\\%95jhikfqzz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=urffkngvp\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "337ec2f44bb0b4254c367a68607d2d8ddefc08e63ee7f4c94a33194422024cc4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.whwya\\.com\\%E2\\%88\\%95wzsypae\\%E2\\%88\\%95gjdhii\\%E2\\%88\\%95gcjnlu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pgcry\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bfdd25792333dd7e014b77588fb1f33f14c80967ce6d8fd4cf87bbf338285572", + "regex": "." + }, + { + "hash": "57d0e9df5d92886da45ae04564045b6bc7984fb4dadae9b2134891c9cbf322f7", + "regex": "." + }, + { + "hash": "df86d04ba2ef89a6c45974c07241b1b4edbefc5314a75f5b92cd46b947e727be", + "regex": "(?i)^https?\\:\\/\\/instagram52607\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "36278603021af642d958e1f78712ca678a10b9a77ce07b9ab3d8779f1fc281dc", + "regex": "(?i)^https?\\:\\/\\/cliptodaypassion\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "82c47336ba5e79ddf3bf2500d5035e74d8d3bd66fbc89a91e702598365a15029", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ca5f6e4835b385b5cc11276c84d93ecd1158033ea4d5a96e2d23347eca8821a8", + "regex": "." + }, + { + "hash": "975843adff80ed830ddbfa7a1dd65da68a433bf5fd0072210d71eaaa564cdfce", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "af4eff406a6a21610afbe886297e277efd35ccf6f42e7ea02d06e354d022f488", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{4}\\.bilpo\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "9be98089bc10569147bac46ca89751f14bfad47f3df1c4b8ee8a5aebe547eade", + "regex": "(?i)^https?\\:\\/\\/instagram836\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "26456255a63757584eb2ac1e8fa5348bae730cc3651069dd1d5b3cf3492d082e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.uoznlnk\\.com\\%E2\\%88\\%95wjzqwaev\\%E2\\%88\\%95ylqqwic\\%E2\\%88\\%95taucrwffj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ihymkuvi\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b4494cdef879939a9a85e062c4e2846d357420a686ce480c85a4c719c81b4e6b", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "db790ea2f2915367117cd95385b9b6c1350499dc9e487b6e6e3269e14359f456", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f79adfeb56b623ef468b32b040b776b7f966f966e55526386948ba93decb75d4", + "regex": "." + }, + { + "hash": "741321786cbdd66a11382e9e152097c0e9af7f1f2cf430f4422835eacf0f8ab2", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e0a38dbdab65df47c30eb2e82c471e9035fd43a5339e210a103dfda19af9e31e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fcmoaskyw\\.com\\%E2\\%88\\%95ycruso\\%E2\\%88\\%95wzlmd\\%E2\\%88\\%95uldikhksr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=mvkfa\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe6066ff380c032e67bba05d2ead2af54be965641c3c79bad9922fc4b29efcd8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vwabuarm\\.com\\%E2\\%88\\%95ragswzyilr\\%E2\\%88\\%95ygkepl\\%E2\\%88\\%95wiwwlnus\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=kscxxpnuj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cecd73a6ef32dc5e5bd5faef244b3e7b3f21715b48291fb1ed577e5ededfaf4", + "regex": "(?i)^https?\\:\\/\\/femme\\-plan\\-cul\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5f680638593eef9db84499487726a773a09c01d739de811c0d35d1c48b640ecd", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7b87048ca81b78f3a054d50b80d529dc58f27caf8d64fabc6ed026d032d7b6df", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "49691df5ef463c923c5f3af21c99a315434da750e2a0ffcaa4b8183f6a639021", + "regex": "(?i)^https?\\:\\/\\/clipwowtoday\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ayouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9b87bd567be12d8743f594a7b0f0c57fd333811a31734aa6ae979a3831779bcf", + "regex": "(?i)^https?\\:\\/\\/freefirergarena\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4bb2bb907bfcffc37398f2e8ef3999000edb1bd31b66474e6d652534039e0587", + "regex": "(?i)^https?\\:\\/\\/instagram52607\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8c6d4f62531f53a636e1352f70a9e9223db2fc52f7c9a93ad49e6410e1761b1d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mrkbcfzwxu\\.com\\%E2\\%88\\%95nvbsrcgves\\%E2\\%88\\%95gzfgqatx\\%E2\\%88\\%95maevnlrr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=lmypn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2ca2b0c379bc79870bef36a4d5d2884a3f020a29c9cecf32cf3c30e00b941da1", + "regex": "(?i)^https?\\:\\/\\/clipwowtoday\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "128bc9827cd192c616bc53d17a12216d96f28a13f98dc395c5b7edaf69107810", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-dans\\-le\\-nord\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "73a1e4f7dfbe0dd0e72104d1601f9845697b5598157037bae55e064bb378d936", + "regex": "." + }, + { + "hash": "804c94098e7da8b5d03542ef730fa1dd3ff58c174d62dbadf33fc871bada4710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b3168e102be9965c3c018f140e2af3cb9d407c108e799ac1421e4ce76101083", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8af46fcb2b61d4f72526b2a0301bc6b76f56d052cf138179f1dd9def11e34e55", + "regex": "." + }, + { + "hash": "96a4ad846a095e61a25191a716345221ff26a2d4480150c48bbe44ed8bc74204", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c9ca981e013d9934c4886858673fe8221d205f9ef3dc1a7929e487e006ae6727", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "30d6c7f3687a8f2aee040b497afccc16eaec5e6ba2b07e74a0a0e316c782df65", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0de607b3598f1f563cfd83790ef3b974a4e1e66faf7232c5855ca4ed2af2b9af", + "regex": "(?i)^https?\\:\\/\\/cliptodaypassion\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "542df2fa2644f7c18a2170e6a2b098150bf9cc4a9c8b053ded3c71be3ab086a6", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2f900559a529773b297db828afea51c95d1835164b8e8489511c26bea3d305b0", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c635575f9144be167cd6676a917296a4ec7f4dc989a15dac5426fff3137744d4", + "regex": "." + }, + { + "hash": "16c4c679658315223afd2ae0b453fc27d74d95120d35e82fd2467fe61bbbeb8f", + "regex": "(?i)^https?\\:\\/\\/petites\\-annonces\\-plan\\-cul\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "69e4e7a3d8716c3bd8601009012419fa10cf3485bfc54830d9b083cf2a21436e", + "regex": "(?i)^https?\\:\\/\\/hukolmnucaseastkascnasheaza\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bf6b99353796e0b873bae29ec01f80e8e5c36e0dcb90c76e9225f58e5fa2a013", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ptgmm\\.com\\%E2\\%88\\%95fxfus\\%E2\\%88\\%95yinpf\\%E2\\%88\\%95bgbpj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=atzqivua\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "52be40befe78073e163577ad4aa8b3784d9d2b3229d9d9458c413b61ae9d2c49", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "164f15bf35de7dbd482afe58fb0a7b2b7513602b0c5e07c3a2e78300c2c06ff1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "049f8f8ac30f6c14838bd09676911126f48aa58073800bed281c4a2faf9e689b", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rucbizbm\\.com\\%E2\\%88\\%95myxejt\\%E2\\%88\\%95hjmjpbpkq\\%E2\\%88\\%95bzguixlxxx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=yuwzwnyhn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99e6877a5a54b5483058f555d8a29b60d8b56f7e2ef8c97e0968f27094297c2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "28b7be4a15be0e7777517663244989fbce0f009c96bc9ab94f947026268edcc7", + "regex": "." + }, + { + "hash": "049c9b16861b9b3a1e3805824dbcc51b6a568f2329ef22e046ec1fb5ec49b648", + "regex": "(?i)^https?\\:\\/\\/amazon\\.hgltwirtq\\.com\\%E2\\%88\\%95pzwozno\\%E2\\%88\\%95vkolhxlp\\%E2\\%88\\%95xnjevmxiv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ohisitr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "82415459c83433ae54b1f53d7de9e8e190391b0aad5332c7383c23dc713327b5", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-64\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0e8409e1b886c17d36f89585af0056925e9a7707138bb2d5223fda080914d396", + "regex": "." + }, + { + "hash": "cc9ad7075ee27e9e2f9fe81d83857dd58dcd894700ecb789923167e576ba8419", + "regex": "." + }, + { + "hash": "a42fce50102c265fb79545a78c40b48ec79540be5759acbb3425a7685cd9a99d", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5vq511(?:\\?|$)" + }, + { + "hash": "09015511a61641d8b1fbfbe9586c0adaad64a54abebeb9649a99e7a68b9f83b8", + "regex": "(?i)^https?\\:\\/\\/femme\\-plan\\-cul\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "921efdbb58a6ec18f68514cb0004b9cfe0731b3fd546a093c284f13d75d52518", + "regex": "(?i)^https?\\:\\/\\/freefirergarena\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+62dabu(?:\\?|$)" + }, + { + "hash": "49173a55727f72c253d81b72c008061ea5495bf5414e4d3ab929ac544562c623", + "regex": "(?i)^https?\\:\\/\\/cliptodaypassion\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2ae516d5d06b0df8c0cc41ac58dc2a05a2674e4a9b204179c8e412acf58e6255", + "regex": "(?i)^https?\\:\\/\\/reformncsnet\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "26061496941f57cbec2285a1a3f975320e86014c7f099b17f5f16da9e1488ec5", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ensoaykl\\.com\\%E2\\%88\\%95xmcqh\\%E2\\%88\\%95opwbbgosxs\\%E2\\%88\\%95fndvjz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dzlrjsabc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "304b96f0aa75c057422da25e1cc1709982c857fa6856d397a111351236074b9d", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8f24f47907c6e4cab73fb950d3845e00886291753aa2c91654814258488ee60c", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a1f65e280b49b3656c8687d0ed8a39df5016e88d1fa58038684f5ecf0afe6542", + "regex": "(?i)^https?\\:\\/\\/amazon\\.dljciwm\\.com\\%E2\\%88\\%95wwnvpwr\\%E2\\%88\\%95obxueuxi\\%E2\\%88\\%95yrnbe\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cmhppcv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8918dd794e9c2a58608e81fa75965ecaad8d631e480f379c2367be7575995982", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ayouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "09a4b941fad87ec47f5216113c66ff5207c361db06095745a637adceabe4fad1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zhsiu\\.com\\%E2\\%88\\%95refaqpof\\%E2\\%88\\%95eueojpqegw\\%E2\\%88\\%95birhbt\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dlhvc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ab9aaa14fce4e9327fd3a187be7ed3cb93401e0a597a286d2156ecbf168c477e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.bhwqihzij\\.com\\%E2\\%88\\%95zulyahdof\\%E2\\%88\\%95iatuajdee\\%E2\\%88\\%95zzvwksk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rbmsro\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49337590db7afa017adf43387a2185af01b8a84b10a342b66b5f7e48e73d9e5b", + "regex": "(?i)^https?\\:\\/\\/reformncsnet\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "435e9119a996b9e60d1c2ed70fafe67ee693503a2925cd0157bf26ce524ac9b6", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ytcvrgmhr\\.com\\%E2\\%88\\%95eefgm\\%E2\\%88\\%95zehnaeks\\%E2\\%88\\%95cfhaqzhizp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=aqnwskxxs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+htjsfc(?:\\?|$)" + }, + { + "hash": "1f21883d9ebde97b83860fb821258e22436d4444782322e0f4d7d537cfc618eb", + "regex": "(?i)^https?\\:\\/\\/instagram836\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e3e4dcdad2793245a79e50cc4c65ef4efe23b727c8687e9ae9248b4a025f53ea", + "regex": "(?i)^https?\\:\\/\\/clipwowtoday\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ea335238977977465f1577632deab666bd0b0f3ff8d42337b3badc5d1f4ff2dd", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-64\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a81891b69e3971435b1d04d69b14947061d3a81e6d4eb6225946fb547e0bb127", + "regex": "." + }, + { + "hash": "f2540d4586fa0c3ee5becbd8fd93cdf8c757eb9432ab97955f49d2d666662241", + "regex": "(?i)^https?\\:\\/\\/amazon\\.qtexj\\.com\\%E2\\%88\\%95giyrgtnjck\\%E2\\%88\\%95gatoyiuo\\%E2\\%88\\%95tdvqckgoh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=kivljtplr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a0828694a383f36d8f2f4f005012177972efce125e8665e70f79afed0e6543a4", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-dans\\-le\\-nord\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b0d7b932b99ec1a8c1afd3fb6d7ea39592e8913e671e02a77e51395faaa45c56", + "regex": "(?i)^https?\\:\\/\\/clipwowtoday\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "59bd0ac0c2279562c67bd863727ec9130f01381c949de14e27b87bbca260e05f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxndw\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "316928f4416b1627d19041f570ae4e73a688aaccd624e5cdf54fedf78c3cd908", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ff57a64628771a7c881ddea12c2bb905a0125bd557edb473d5383839ad1db6b", + "regex": "(?i)^https?\\:\\/\\/amazon\\.unrhaxvnaf\\.com\\%E2\\%88\\%95bhkyuv\\%E2\\%88\\%95cnond\\%E2\\%88\\%95rxfaw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tieauhfz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2d490029f546db6a5ce3be632f76b255105b8e44636f04502618671868e1d3f4", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0656868c1f7bedfb6d082fe41587de5661430538ba733e64630c46375f302291", + "regex": "(?i)^https?\\:\\/\\/79\\-124\\-60\\-164\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "784736f81a88f2509f10229cfd9edff15eb965f1e90216913c7b8453487db293", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ppipqxzu\\.com\\%E2\\%88\\%95pnjqpyyswn\\%E2\\%88\\%95jjrdpwb\\%E2\\%88\\%95ukomh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vlitwprcte\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "adfd583dbe10a10e61afc7fa1bf71506806677cdc6147749a1081996653021e5", + "regex": "(?i)^https?\\:\\/\\/instagram52607\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7c3b60f66d5f81c59a4e699c2ff3ac6c030123d8d1fe081d31651539652b7498", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "19438336df01a93fac411ec05125216921fef07f6987c049a04f5213fb992654", + "regex": "(?i)^https?\\:\\/\\/cliptodaypassion\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "692135f13ef730331eb64076282e43647b5cb85224a0a4a4b9963821658ece00", + "regex": "(?i)^https?\\:\\/\\/amazon\\.dcmocp\\.com\\%E2\\%88\\%95ctdzcbh\\%E2\\%88\\%95vtownrorc\\%E2\\%88\\%95qoowjfz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dzcleaxx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a1a7e72f5bbcdec937a3bc640db3a06f551d276caa291cbc024fb687eed5ec2", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "dd5f8df069dd7b10fc30b8c5dd67494336055a56b2651cd96c1afe662b7729dc", + "regex": "(?i)^https?\\:\\/\\/amazon\\.jyhmbkuvoo\\.com\\%E2\\%88\\%95hijqy\\%E2\\%88\\%95sapefjfml\\%E2\\%88\\%95lxobbgml\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=woqinxphm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "609a5370510910611390b5de27cd3d85c6ff789aeaff9bcd2cd58b20dc9c482a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+A2Yr9Nv\\%3DqfK1UtB\\%24nhditgid\\%3D1HYt(?:\\?|$)" + }, + { + "hash": "eee7b20aa984a6fbd87f58dd6e0243cf9935906243c629d2ec59eb17a1b78de3", + "regex": "(?i)^https?\\:\\/\\/clipwowtoday\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ccbcff7a47a790e56df1493245723e71d3cb6ebdedfa4395571b2aeb98b66f35", + "regex": "(?i)^https?\\:\\/\\/instagram52607\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "228c251649ebfc5bc38046fcead0bfd8020e8a0a63cceb12f12f43880c418984", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register51268(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e4be17bf17f066c6104de51bf4acc8a74e58b101723bca21aee121e7e57341ef", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2aeee7f95475507c377e0e7414240f6aa085c9ea655e52b96a452bb51c411459", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d5fa055d10c13594c617f19e8e808164b58e45765b9c411d427bfa06bbdb1ae0", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "868d5a10113bbf649f43180590b4fd1dbc9625e064236d1b3f074421d9cc729c", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.ayouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "a8efc66c8d6bba578fc874a79e28e6187be4c60257f0c668690c219d4a7f2126", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wwzynj\\.com\\%E2\\%88\\%95jtlmkhmvvf\\%E2\\%88\\%95hdpmtfpokb\\%E2\\%88\\%95sjwzpuiaz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jtkwcqkcu\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b299acc60eb0bae2bc0a9b45e44545442df873da95c5a3d0db111e767c28d07e", + "regex": "(?i)^https?\\:\\/\\/attt\\-106733\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "38b5690cbb26124cc18f1f3e467682b955ae838692611868e9d4e5adbc6fc8c6", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6eb8667c0da3b468149b73c669feda527f6c1a25ff03c8fed8087993d11e4c1a", + "regex": "." + }, + { + "hash": "178b3bb6562f061219c54a4e22e80ccdb0662363498db2136d766b11da1189ad", + "regex": "(?i)^https?\\:\\/\\/amazon\\.woask\\.com\\%E2\\%88\\%95mxrskdy\\%E2\\%88\\%95qforo\\%E2\\%88\\%95pdgoodg\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=kqemrdhyad\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "00f688c45748cbecd8f16d5d769be3362fb0c169c56934abb161d2c802e7f77d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+telstra[\\/\\\\]+telstra" + }, + { + "hash": "4a5cc2f1c762e3e47b29386f6f4f8f74af0752803c1285bab1c55acfe60933e2", + "regex": "." + }, + { + "hash": "99da75c53959399de4181d9b78c4c360b7bbab8fa1b0f68dbef20d529d4488aa", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxndw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "cddae3d22b7ae19758da63f21a2af3e5f93c07e282bcdc72ba2240a34cf68904", + "regex": "(?i)^https?\\:\\/\\/hukolmnucaseastkascnasheaza\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0a493a23cf62ee8da054d42eed805d801d6b79ada1f8952417d9c5140766ab4a", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d4a42d682bf685b518e06b6cbc60158794ea7cf440f6f1f90c8c3f3f33129806", + "regex": "(?i)^https?\\:\\/\\/amazon\\.sskgmwreiw\\.com\\%E2\\%88\\%95htfoy\\%E2\\%88\\%95ozhbv\\%E2\\%88\\%95ihbmaxqcjf\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qxetv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fc30fb059b0c37f2d7dcfd61d0ba19f8a86b7a326cf500febebe681305a5e2a1", + "regex": "." + }, + { + "hash": "caca05534ff2b9c2509116bfa2091d23c8ed7738f0e55407535a985016a6d406", + "regex": "(?i)^https?\\:\\/\\/petites\\-annonces\\-plan\\-cul\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b63f2cc4adc7744c538cfc96e81ad91b92620e1569cfbf32d3fedeeb206b071a", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d71a76425e498dc27decbd2a52879eb833ae109263ecc53f469ffb2f1c61a7d3", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "03cdd819cc2f6129f9e7b1229d69b981b883e58dbcd3004b0821b387d443dc69", + "regex": "(?i)^https?\\:\\/\\/instagram52607\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7ca6501be7f1217e47a4df5055b68a26040d27562049bf1942637be763ba5f18", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0d793434023f48129e79503d0007b36ef39e8e574c979cc70d7ea16dcd596891", + "regex": "(?i)^https?\\:\\/\\/freefirergarena\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d1ec431efbdfd32bf4d5a714a00debf6a5c3bea938ab8bbad90fffe8b0deef28", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b01d0fc2e0deff74ce3a3bc33d1493367d49618ee7827c06b2c8939bec310349", + "regex": "(?i)^https?\\:\\/\\/cliptodaypassion\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a83b81cd85a014893d833dd9f9e0327ccd361ffed9f0becf87d8e4ef416b61ec", + "regex": "(?i)^https?\\:\\/\\/instagram836\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ede9a1ca609ddadd4b4af42c63c8c9ad8323c4e506783b0ad0c8aa315e4814a8", + "regex": "(?i)^https?\\:\\/\\/instagram52607\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2833d63a6c2cdd76ca4ce8aeaa09bdf9acded4dccf553db0707cb386addb59e8", + "regex": "(?i)^https?\\:\\/\\/petites\\-annonces\\-plan\\-cul\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "115cff19ad85b80393a6ec6b13f4b62d7284971d833eb4fca2cbd41327929090", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "faa087f4ca8d19345eaefe65e205c8ca0896fc01cbf6d2498f3d2aee8b65a062", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5ba46bf5a16a781099114201176ccfd8bcbf3ab064f207f696cc476552c9293c", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dfe52736a3777188f39bc143f4fbbd795c6563222e7a1ab8accba0be7906d378", + "regex": "." + }, + { + "hash": "544e76e0b2e790f72f1638fe7a2f7f102241e4d6c799cef7a2152f0bb274f876", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "73a6c3d07413179eb693b03ec19a480775833e174ab3655ba1a14d039ebf4ad4", + "regex": "." + }, + { + "hash": "ca9bd5ad1ae40e90588e6ccb5a505f7f353b474279cdd112b0d085dc4aafe2de", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f10b003480af9dc8532d3299962514b9e00471c29869f03ec2bb0ca5af8b3e34", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "defe8a9c6441ebd0c8f322be529f23a78615ec04e1ba46e007f3d787f6377501", + "regex": "." + }, + { + "hash": "4e4d093c46cacafa823c02b5d585e1354e8f751672526b459082522d32759f57", + "regex": "(?i)^https?\\:\\/\\/petites\\-annonces\\-plan\\-cul\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "daa0b6310307f0b6960ba8634dc029656cfe81a7b8024f7c335947ea85a53c47", + "regex": "." + }, + { + "hash": "1f48eb6f6ab116e07e892200c2d3ee6858ca04d4d2f3b25598167d25200bf5e4", + "regex": "." + }, + { + "hash": "6d0be168820245038747222252f250748ed22791f1c89e0b45dd4532e4ddf767", + "regex": "(?i)^https?\\:\\/\\/freefirergarena\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "de0f47e43998e469ba65b01c66edce207926b934a4ef33fea2e8da8162063545", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f71c491394b2855aa2bc9c7eed9e641aa44e63c5c2f28d0918a386d88f962ac8", + "regex": "." + }, + { + "hash": "3d45ef77111487f0ab9a6ea847a006de02d0a34797e4365d59dc5adabb924044", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-dans\\-le\\-nord\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "82f43f9777abbb67b610cbd4a463979f04932f93508b9bd11740da5fb3ce3044", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "236ef543d0d83af0d6f190fd231b253a0d27d4eb4118a1b55ac2e44cf26e27d9", + "regex": "(?i)^https?\\:\\/\\/freefirergarena\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "aaaac0173bcfc21afa5d3094bf9c30551a982d206f9ab4c2d4e6fc0607da2a75", + "regex": "(?i)^https?\\:\\/\\/hukolmnucaseastkascnasheaza\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f841cb0ff18b4d51429e5a02ac4146e8b207102114825424b34161a5c042a634", + "regex": "." + }, + { + "hash": "96ce4b1ff10cb6af2228ed48430713af0dde2ac18a77d6ae0c522123ff3d1409", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register86307(?:\\?|$)" + }, + { + "hash": "a7e47e6635d25c4c69232d7d13d2800278cb97f1fd7ea610a5966833ce86c57e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.dhzkuql\\.com\\%E2\\%88\\%95xnanr\\%E2\\%88\\%95cimnu\\%E2\\%88\\%95lsfyrwg\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gqoemiois\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c0a37a39a6f3db5cab92ad3264689cac10672577b68c36cf5e71d6635997c6bf", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-64\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "642c280a6b0c3a73844211d9ee5a767a907f9e7154e4db59ea48d954b8936582", + "regex": "(?i)^https?\\:\\/\\/amazon\\.avfaintlqy\\.com\\%E2\\%88\\%95xdpbdpxzuy\\%E2\\%88\\%95razwf\\%E2\\%88\\%95tuexsnamo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fylnzenzw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a0fa0aa1b5cfbc165f8f81676799e734724915edf53fd08a67b19f32648e7ae9", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b9745739e09b95ff149f9824a714ea787acd1e8475411ddebdf7017d68b9e98c", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1c38fe022b45a9d61b437651026188d0bd350851135c0c58404dbb820e5f75b0", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tcfmh\\.com\\%E2\\%88\\%95nlasoaodfn\\%E2\\%88\\%95rocgvj\\%E2\\%88\\%95jeuhr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=yzozethqy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "24cecdbf5b7c8f259cf925c179bdaa76c29057eb0f14bb2ba1921ba01ebfbef6", + "regex": "(?i)^https?\\:\\/\\/reformncsnet\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d972c36033ddbe79a63629e4308b0084e1e20f16d4f1c9d9da80bdda66b91f84", + "regex": "(?i)^https?\\:\\/\\/amazon\\.jyelsae\\.com\\%E2\\%88\\%95cdbllxxkzk\\%E2\\%88\\%95mtxhjhnlpt\\%E2\\%88\\%95czamrphbcz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vnyuvplrue\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7d103f4231af39c02b61267d91bd8383e49b05cd3a223fdf1a5bbddd33f410cb", + "regex": "." + }, + { + "hash": "89e7e9bc6cea34c27f703f9008156fc8d2cc365a1b7151b06a58f41b8e842a61", + "regex": "." + }, + { + "hash": "d3317ea9fb4848b81bf839a80aaa18b9ba555246d81d55d02225c30e0119d25f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxndw\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1e7f20dea9791aca99fbd3e3ed646cf156d784ae9476fea7c09adf5502d7c831", + "regex": "(?i)^https?\\:\\/\\/reformncsnet\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c888f7b890c58da65bdbc4024d8f37e95bd3242c38b537c7b102da6116f20fb6", + "regex": "(?i)^https?\\:\\/\\/amazon\\.blrdhmqjhk\\.com\\%E2\\%88\\%95rmhiushbg\\%E2\\%88\\%95qpyke\\%E2\\%88\\%95jwxrh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dumcp\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c90e8b2ab380183d6db9612503b11964696654dca25c242d0061fd7e888aa238", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "3a0025685e38c4a3ad4f5bc1ece7877fc27203b63f482abfecfb9c2cb4c35d24", + "regex": "(?i)^https?\\:\\/\\/amazon\\.oahcwmilfg\\.com\\%E2\\%88\\%95hercycy\\%E2\\%88\\%95jcuwxpmwlx\\%E2\\%88\\%95uznwdfnmr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tabheee\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d9a7607894e55d7279e68b093d9dc96a899a6a2f2196f3b42415debdb548246", + "regex": "(?i)^https?\\:\\/\\/42426138\\.com\\:9900(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eff45061ab9065368c9d03b3811cb821efe941453a1c4e1e9b5053740b74a1d1", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "03d5a4f690c7ef784efc1d5c7f5e1f4af18cf1e8b8e9a01ef4ce9863825b7667", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rpjronijnm\\.com\\%E2\\%88\\%95ahtlay\\%E2\\%88\\%95wtykoiafa\\%E2\\%88\\%95pblvib\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fesjayobh\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a9867ca92c615c72443bc29a7266e3861f8b1cf41b631748bde5343521d8282", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d9788a138c84e1ad484ebd68b414fb89b2c566569a75d67d854012fcd07a625c", + "regex": "(?i)^https?\\:\\/\\/amazon\\.igvmiorpab\\.com\\%E2\\%88\\%95dbyobp\\%E2\\%88\\%95pwrbbo\\%E2\\%88\\%95fiymptswy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cvpstc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "03231b585ed3a1d286dac1118922bbfe3f55e53a2deac2f5fdcc1280b1fb2b6e", + "regex": "(?i)^https?\\:\\/\\/petites\\-annonces\\-plan\\-cul\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "aaaa6b7d9ae73139022c4ff33c609574ce6ad13353d1a11ff6496e4666cdafe8", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f047ae2acc824e2ff60aee0a629098c6d4c3a5456b25f0aa56c24bbde359daad", + "regex": "." + }, + { + "hash": "ba820cf623b705a2e4f7c2ba4d8e1dd3e85c4c84c76e1bdc1a7caac6d46ff55f", + "regex": "." + }, + { + "hash": "842f8f3b204c6c70eefdce3cff9fa59499e65d239c7e8b3fccfedca87f425723", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "090d4a15dbf84ef93f081f66e9ae26f6b58ec5ced5d24aeec4149f470db035f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6ee5b5bbe79ad97df427600df2bcb73a155733f47a37bd0546cfbbb9cc0cf0ed", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b16219ce8d32a87874f4bebd6721536776c0acf596b0ad30dedda86aeb32b337", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7ea0fd32e5a91d8421d39cbc911c9c3ae25fc75aa89a7e825ba1793b2d363192", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.tiktok\\.com\\%2Flink\\%2Fv2\\%3Faid\\=1988\\%26lang\\=pl\\-PL\\%26scene\\=bio_url\\%26target\\=https\\%253A\\%252F\\%252Fwww\\.google\\.ru\\%252Furl\\%253Fq\\%253Dzlqgnnevjgjjpnwipcuxkjblbsgeibykigsqoxzuvmmfimft\\%2526rct\\%253Dajxdhozoatihybsxtcjnqqfhklwztbhxvvbqlqvbejfogklmkjunvihaxjdixkhtlnzbbdhh\\%2526sa\\%253Dt\\%2526url\\%253Damp\\%252Fs\\%252F\\%2570\\%2561\\%2578\\%2565\\%256F\\%256E\\%252E\\%2563\\%256F\\%256D\\%252F\\%2563\\%2567\\%2569\\%252D\\%2562\\%2569\\%256E\\%252F\\%252E\\%256A\\%2573\\%252Fe0SKP\\%252FZG1qQG5ldGNyYWZ0LmNvbQ\\=\\=[\\/\\\\]+1[\\/\\\\]+010001930cc9bf63\\-c75fffad\\-da20\\-4e5d\\-96fb\\-d24c0cb48143\\-000000[\\/\\\\]+x5wVDbf_6bsVgR1lrQaoc248eGI\\=399(?:\\?|$)" + }, + { + "hash": "64950fc4b4ca0dd59f937ca7f318e4f02a08e4309a5353b8a51307af78cbf6b0", + "regex": "(?i)^https?\\:\\/\\/cliptodaypassion\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "96ce4b1ff10cb6af2228ed48430713af0dde2ac18a77d6ae0c522123ff3d1409", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register86307(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "5ecf9cda40525eebfe578e22c0d03cab166c8d4fd6ca419b1542184a4d9b9d28", + "regex": "(?i)^https?\\:\\/\\/cliptodaypassion\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "5530fc82f959b1fa6113fb8eaebc7f3879973ed063c1db52d71969b15fde3f2f", + "regex": "(?i)^https?\\:\\/\\/reformncsnet\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fd0347f38c569ed60c36caffe3655408acb5eb67cfaf0f16d2da3259873dacc4", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxndw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8750a90a8234354d92d8a8e003805b6f731abd18eafa65eb78d74466e420cc86", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7ea0fd32e5a91d8421d39cbc911c9c3ae25fc75aa89a7e825ba1793b2d363192", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.tiktok\\.com\\%2Flink\\%2Fv2\\%3Faid\\=1988\\%26lang\\=pl\\-PL\\%26scene\\=bio_url\\%26target\\=https\\%253A\\%252F\\%252Fwww\\.google\\.ru\\%252Furl\\%253Fq\\%253Dzlqgnnevjgjjpnwipcuxkjblbsgeibykigsqoxzuvmmfimft\\%2526rct\\%253Dajxdhozoatihybsxtcjnqqfhklwztbhxvvbqlqvbejfogklmkjunvihaxjdixkhtlnzbbdhh\\%2526sa\\%253Dt\\%2526url\\%253Damp\\%252Fs\\%252F\\%2570\\%2561\\%2578\\%2565\\%256F\\%256E\\%252E\\%2563\\%256F\\%256D\\%252F\\%2563\\%2567\\%2569\\%252D\\%2562\\%2569\\%256E\\%252F\\%252E\\%256A\\%2573\\%252Fhxi9x\\%252FamRlcmVrQGx1bHVsZW1vbi5jb20\\=[\\/\\\\]+1[\\/\\\\]+010001930cd77210\\-52490d4b\\-d78d\\-41a0\\-86f7\\-9ff5c1838c80\\-000000[\\/\\\\]+usZJa4lr0bg9TNDSoT1hhW0s3m8\\=399(?:\\?|$)" + }, + { + "hash": "8b4ddc7a5dfc538caaab8fcd9ea37ffed0b15fca7d443f990ac5bbeebb4335b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aad8a146430bfe6e5d2af2d9159d30a2c8cc2c72a42881166761bd41049adc9e", + "regex": "(?i)^https?\\:\\/\\/clipwowtoday\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ae6e0f55c60271a6172a81284d806d40c886e89ab488fc404acb7cfed81f07fb", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "98cd1bdb047029108881e5adfd5bd8b29798b5e19b264489e0c7cbd680a6eeee", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c9def4ddb9a43bf1cd99bee0935f199c7fe6baf0d137a86a4e79d0243f84a625", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9d93b038acb158ed1dfb5cdab671180fe9fa5a8be7f5c78c6f1de140b279c55e", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d0990458d69ca813287b0139013831ed3cc07f5c8ce778ee98628a8bee487aaf", + "regex": "(?i)^https?\\:\\/\\/amazon\\.xeflrj\\.com\\%E2\\%88\\%95sclqzjkif\\%E2\\%88\\%95itzsfpt\\%E2\\%88\\%95jcfago\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=eiutrb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "06083ce37fe889440bca89b1574edd68c3d910cae56b2b34b4b510da41812699", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "37d033560b6428c338e44b84688bf6f94f6c3eb6fe5e6337c03f9d6fef86c543", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4398eea108dce52052ecc61c08180dcf34463ebe0e40a162c804843b90047d6e", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "12e15602da3fcde7c04432e1ea7367c61f4fbaed2e9a1df3a0565c632b670486", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tylbjr\\.com\\%E2\\%88\\%95yaakdzsg\\%E2\\%88\\%95poszyiv\\%E2\\%88\\%95qepip\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ahlrdwfok\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "153cc7333bc8cbd5758a0ea0177e08439ddfb9eecb4edaac1a09014d1b5738bc", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0ed7e0270271402644833ecdf442f7173b854464558a5e3bde60d5e9a00e71ba", + "regex": "(?i)^https?\\:\\/\\/reformncsnet\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "18cdb6c1d7c32f9cfd3ed6b45518ab80136db69f77a7005c89621a1bbb64f4f2", + "regex": "(?i)^https?\\:\\/\\/instagram52607\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "38a8d683a943305b1e53b3830a7c10ee1581da9e02304cc8d4a53ac536143c39", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "120290fbfb1bea05a454ea5ab0f9e86d3a65dc9a73d9d381fe7a1f6ef8dd691c", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-dans\\-le\\-nord\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "10fca913df096dfa1f140dd9e3c155ed37131e82414cc7be50f45bb58e9b4b84", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e6859fbd5579d542c3191474237b99f98346a53f5a2f164acdba1eca87b4da27", + "regex": "(?i)^https?\\:\\/\\/hukolmnucaseastkascnasheaza\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "77db8b4bc07df420ba5402df779d799545cc187e4d31c461618fb57672cf021d", + "regex": "(?i)^https?\\:\\/\\/cliptodaypassion\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "58da71e3f6a3f47732b6c8ae77dc9909f2d2280280b43c64f61d9443999a021c", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4f1ea70d4647eb74cdc0f4aa1e5ae0edbf3baad94c32df7e9d794efc0836b0e2", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d643dfcbda14243ea1d517c35b76866f81850cc09cabf217f90dd2d599c8d06a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tn\\.jsp\\?f\\=001IV9Bz9Jjc6iRYDHQzr0_Ax2BjBfzNVW6k4Z\\-TTHZemoC4o7ywlet1BlATtTCfVGetXIwpXH4JXXFL1ur678zME1663ykeqMGcdYLc6lam9QSmEnAQo62Ao0ARyDN_QbGxCYt_fbxpEU\\-GqaFcKcqR9h48DeurD7hxy1gOsdAvQhr4P0eRq2NJXVhc6TD2o61eQrF27ojo3c\\=" + }, + { + "hash": "9ee965870e2cf66709b2517a5660a15c9981fad41db5412b0c0078fe8f074795", + "regex": "." + }, + { + "hash": "d70c02cb12c803385b605ca9996af43c6df35bb46645c5fe0b0b31d74d9ae9c0", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wogyyvnld\\.com\\%E2\\%88\\%95puvlfpo\\%E2\\%88\\%95yeqgr\\%E2\\%88\\%95tcaeo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ikwfj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4860c957dcea06d346f39059f0557aabfbfd2b3bbd6e8ba4d368a5685dac233f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxndw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f29ae6aa50563bef0962a84d50bc801281ec008da0e3a7810cf77dc70aa6ea47", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cersjg\\.com\\%E2\\%88\\%95wjrxelb\\%E2\\%88\\%95ywmfo\\%E2\\%88\\%95ydvgppggae\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=kmnlk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "92234cbeb1233a768bd31d3356e7b613abb8e17f1efabf6be62cbc50518ee9cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9970[\\/\\\\]+entry[\\/\\\\]+register51268(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ff5e5f5290e19b7cb9c6b554f6935a626513572b77095727171c43b46cf13067", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ecpotnbh\\.com\\%E2\\%88\\%95cthsqwnfua\\%E2\\%88\\%95zqgfwfgkn\\%E2\\%88\\%95hchzpo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=eygod\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1bf4ab279016f72cb6715ce6882cadfee89c792ff976df4bdf4f7e7f1b28a4ea", + "regex": "(?i)^https?\\:\\/\\/hukolmnucaseastkascnasheaza\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d45dba87db4a95f3df06310c24461e84459ff98718b7d35f5f1acad622007059", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g[\\/\\\\]+o" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+h5cz3f(?:\\?|$)" + }, + { + "hash": "0526b5a31dfe9c2ab6c592022d39a7e39c0978150ad22542e5ba2497ebf75c74", + "regex": "." + }, + { + "hash": "8894b3ad497fb6fdad2860b2a5ae7e9bbc68b21b275c996ed5465c20e0739c28", + "regex": "(?i)^https?\\:\\/\\/amazon\\.hnbxn\\.com\\%E2\\%88\\%95nazhso\\%E2\\%88\\%95ukhhwy\\%E2\\%88\\%95xqebzzecb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xltdlmotm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0baf6fb41abb9ef4a28baec23c110e612b6e824b526838eca605c9bf4eb8231", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ansjhvzxa\\.com\\%E2\\%88\\%95rfouxx\\%E2\\%88\\%95abqrnywr\\%E2\\%88\\%95dduzttroc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=yyxvypc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d65744c2ec5ed0ba94b2f3fd8e140889fc371ec062d1f70d159efc21ff75fdd0", + "regex": "(?i)^https?\\:\\/\\/instagram836\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8f2d6a6871060021f4fd226117d0f4bc51c5e4a2c019d319edce7ec9cda41e82", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b0a3efe98c4674475b0359ede6dd9d64c2725a664dfec29e97f9d3f6c47be8b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s[\\/\\\\]+JapFmoe(?:\\?|$)" + }, + { + "hash": "6aba5a9c3b57ee6d4c384b2dac3a91c8975567836762e4efc5a969229dc2b838", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "38c534f20d83d3a85cc038a5df0755be5157ca72936835995bd694470a5ef2cb", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d16c4fbd516a56c5757ebab0a456c0c6c5b6d51ebd11dcea5811fc5bfece29a0", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0e8b98a8f5a9edf6b26c99bcfa19026922772bf141180f69d258e322943d1a31", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4751b4136a4cec048892cd60aebd5b1fc3b13699152c344351e7f047c7d2c991", + "regex": "(?i)^https?\\:\\/\\/instagram836\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6746a5f1cbbbd58957bf4fe1dafee923b7793f85303ce1811f7ad53aa1daaca9", + "regex": "(?i)^https?\\:\\/\\/freefirergarena\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "228c251649ebfc5bc38046fcead0bfd8020e8a0a63cceb12f12f43880c418984", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register51268(?:\\?|$)" + }, + { + "hash": "654863615cc706f74544950e210e51de4e59419fcb25faf1be5b34387de4079c", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e5b8b828a723022774069803221786df603086da2fb583c35caa346a3ec52d1f", + "regex": "(?i)^https?\\:\\/\\/hukolmnucaseastkascnasheaza\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "49b7df0e4f25ca12333de8bc3775682207f19737b802c557d802851255eb5f19", + "regex": "." + }, + { + "hash": "bddc57283422c2d935f18d8d86f55015fc2742046e7dc21488a58776cc3ab11e", + "regex": "." + }, + { + "hash": "df860cf42138f14daba4cfe60f2b0a2d76d50e75d34924c1051c0eaad7d1dd71", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ba90b5b20c06bd887ecdd6c77c0a870fc011d9080a116d98bd0ae4ea43021155", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-dans\\-le\\-nord\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "cdee59575c55dd32cf8fc6cc770c3643752083f2984412780c8bbab88517fbe6", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vcjrqummn\\.com\\%E2\\%88\\%95hmkkgdsb\\%E2\\%88\\%95hchdcmg\\%E2\\%88\\%95vdlck\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=khyhcgn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2d12a10b6b9b55a8c2754b832343f5447383562c060be07f9c61701605ba63b8", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "dd02aa409ca35388bbebc325d91fb8135d1c98e9e6f5c040248706c445e17948", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "df94562688c63c433e096aa650179198a01abb7ce63a1a1f04c7c9fa6e4d20ae", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nddbuuchqm\\.com\\%E2\\%88\\%95whdfh\\%E2\\%88\\%95dgqcqeg\\%E2\\%88\\%95oirdl\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=kyzgflx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "718b862b509959a634143d4c76569ae7996ed2a1ffa7a4693b3732c5ed1989cd", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\-69\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "18c04f2cc5c65ebb7120b8472b286bee83960a877fd0b1e1c8aa0365151f1f04", + "regex": "(?i)^https?\\:\\/\\/badgirl18love\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3c05107803bc6c3062818f2e084eab74683a63f17e339a15a0883ae442fd0e03", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "340810879ef06786f96279931a13e7649019019c06dbbd7e848471adeb2ac253", + "regex": "(?i)^https?\\:\\/\\/amazon\\.egzscfns\\.com\\%E2\\%88\\%95yblmvnodfb\\%E2\\%88\\%95lxaesbptf\\%E2\\%88\\%95cetwzu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ltkbetndc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hlg8k1(?:\\?|$)" + }, + { + "hash": "60a1f844aebe71f3e4466abe12fc60a48d674748bfba53d240d57245c1016347", + "regex": "(?i)^https?\\:\\/\\/alb\\-se4zjzm4wskjnkthhe\\.cn\\-hongkong\\.alb\\.aliyuncs\\.com\\:4953\\/?" + }, + { + "hash": "aefe27f1a45d8f29ad08c3817a8cbfe926e5b57fbe1388c1c9086aba3ea9ed25", + "regex": "(?i)^https?\\:\\/\\/currently\\-att\\-11\\-8\\-2024\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f845996d95e3ead64c6636832e5b45a101c0018ba3d843612d0926d8c46ab99f", + "regex": "(?i)^https?\\:\\/\\/petites\\-annonces\\-plan\\-cul\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bd5d1a52505899c488653780d43069af1a4815f2ed3e15cbc1d43fca3456c7cc", + "regex": "(?i)^https?\\:\\/\\/hukolmnucaseastkascnasheaza\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6e878787374aa84fc0075e802822dd0349937cc24e51e441f442defe491ea906", + "regex": "." + }, + { + "hash": "8bfc9925134eb59b8ce26f99bf1f034efe5f1cf7830d9d5986da6d129cdd0316", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1924f8430603e4cc9673bcbb8b491e54438476aba035ee98438b2d53779918e6", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b7aa29c13b5f205fecc275904db09227d29bf8eba9df761bf791725de7008ea3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "abaf70b03be514f67d0268fc56dd8eec9a82911db1c4be5c12dfc809f7124c27", + "regex": "(?i)^https?\\:\\/\\/ggfggr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "eab0d72e2eefa7f60a377b22efc031c1ed6a6d1a52a525d45d5802684f03ca10", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vopgwirjti\\.com\\%E2\\%88\\%95sexkjndaf\\%E2\\%88\\%95hreujoibnp\\%E2\\%88\\%95feaswsdobz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=nbggznxl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b2468ae3791230bae59ea5542098d059308597b685e853426b3beb9630f951e8", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d631b51a22ecff711c1e6fec40677b1f393ae32a8d35a681a6d8526ac457b9e5", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-dans\\-le\\-nord\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "705a90fc4593fc4397568a82126602e789cba0d4fb4733aeecbf8831c0d4b305", + "regex": "." + }, + { + "hash": "0887dcf2218d81e0aa4c6012b8338219df422773f0962d626f51661829769176", + "regex": "(?i)^https?\\:\\/\\/gray868470\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "e1b4a46bc6ea2bceb436d515957900137cb38d2a27d5a59416012c8eb81b1f4b", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1cdd7e6e36ef4e5943fc66d74dd12ebf7e24ff926792184c4cfb7c37d74c7347", + "regex": "(?i)^https?\\:\\/\\/instagram52607\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "090d4a15dbf84ef93f081f66e9ae26f6b58ec5ced5d24aeec4149f470db035f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "c8e4efbc8e76292d1d0bb4da433ca6c82c44fe6d6416e8b9867011eedf8098ac", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rhdtepitwi\\.com\\%E2\\%88\\%95ertzwv\\%E2\\%88\\%95wsavdxtl\\%E2\\%88\\%95qvvykn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rajdsgdg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0fae6d85091dd690d5f88f2e8636a4f93dbabd79d3092dc6d48083e01bf412d6", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tsxmsioez\\.com\\%E2\\%88\\%95qdbcn\\%E2\\%88\\%95vhlkfrlnmy\\%E2\\%88\\%95izbldzqqja\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qknic\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "94b12f084bc87a6f5f39fbdcf70bda657c141b98e9076c03721ced194e41d492", + "regex": "(?i)^https?\\:\\/\\/cliptodaypassion\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d36d78a1535c41172ecbaf2abb2275e8c5a418707a45dbceb6e5a58e77c7b02f", + "regex": "." + }, + { + "hash": "a7a68fee586f2532ce599d403ab38d9090d950d6d9b13b3c9a433b80f47cd479", + "regex": "(?i)^https?\\:\\/\\/imtoken\\-im\\.org(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "1bfe168ab3110f94b402efa0375b3469c411a2361134299f2aefa0e90c9bce0a", + "regex": "(?i)^https?\\:\\/\\/amazon\\.lovpzucb\\.com\\%E2\\%88\\%95hlbtbjn\\%E2\\%88\\%95dbvzqcghhq\\%E2\\%88\\%95wancy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tjedhbhqiz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6dda51e004cc7862903f47a87604e23fe2f7a163efd1e8008b7f1f3287a00a1a", + "regex": "(?i)^https?\\:\\/\\/vgtf232\\-secondary\\.z23\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "48800da6fe76bea6029d95ba1083e9b2319cc1ad0191c1b42952f623959eb697", + "regex": "(?i)^https?\\:\\/\\/home\\-109047\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6edc1b39f836dd7658b25393f00b0b5fc7e8d75bcc8b4904ed6b8a8dd7416bc3", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "baa0f1e2e294207ff535f681cac8f7526bf4a3171c215d3c16fd52bbe089fe50", + "regex": "(?i)^https?\\:\\/\\/femme\\-plan\\-cul\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "92353dd4fe23182ce7dc4bf2a1f319a509d0f619ab66fe4911cf3b70598ea082", + "regex": "(?i)^https?\\:\\/\\/clipfevertoday\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "06ee0e39e17a08aac0b51dcbaedcdfde7f4656db8606c35fd8cf52633961ccc1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.kkvcoorhot\\.com\\%E2\\%88\\%95gjqxtww\\%E2\\%88\\%95vpjtiyf\\%E2\\%88\\%95xomylt\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=goutru\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d1a4d4b3d1a4eba0fee3f696f7117577bb0cd0e888bba2bb043c0e8c6fb3655", + "regex": "(?i)^https?\\:\\/\\/coinbase\\.verification\\-account\\.64\\-225\\-62\\-96\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "68a34a133c405a94ed798e6efa05fc4f66ec1dd72cda8b1d69df626fe5b23ecf", + "regex": "(?i)^https?\\:\\/\\/trendycliprush\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2c2bce2e021917613a5d8f38ec1692b5e727d8ffcf6c69a55753d3f148481bec", + "regex": "(?i)^https?\\:\\/\\/hotclipchic\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "64e540a73b13caa714ffdc4f2559d7f06a9892e21dbc65dac361e93ee16e3c2a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+www\\.uewbcuweyriwerweo\\.com[\\/\\\\]+3[\\/\\\\]+01020192fe9c189b\\-c39d58d2\\-66e2\\-449d\\-b3af\\-c0e2d1ff9848\\-000000[\\/\\\\]+l76e8yKMswdH1ntG7b5DJDq3bV4\\=399(?:\\?|$)" + }, + { + "hash": "9217ee59a21e864825b68a19855f8b2531f9609fe04082550f0557237ce64476", + "regex": "(?i)^https?\\:\\/\\/fdsfsdfsvcxvxc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.nfo[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7ea0fd32e5a91d8421d39cbc911c9c3ae25fc75aa89a7e825ba1793b2d363192", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.tiktok\\.com\\%2Flink\\%2Fv2\\%3Faid\\=1988\\%26lang\\=pl\\-PL\\%26scene\\=bio_url\\%26target\\=https\\%253A\\%252F\\%252Fwww\\.google\\.ru\\%252Furl\\%253Fq\\%253Dzlqgnnevjgjjpnwipcuxkjblbsgeibykigsqoxzuvmmfimft\\%2526rct\\%253Dajxdhozoatihybsxtcjnqqfhklwztbhxvvbqlqvbejfogklmkjunvihaxjdixkhtlnzbbdhh\\%2526sa\\%253Dt\\%2526url\\%253Damp\\%252Fs\\%252F\\%2570\\%2561\\%2578\\%2565\\%256F\\%256E\\%252E\\%2563\\%256F\\%256D\\%252F\\%2563\\%2567\\%2569\\%252D\\%2562\\%2569\\%256E\\%252F\\%252E\\%256A\\%2573\\%252FsD2Db\\%252Fcm9iLmJyb2JlaWxAY2FiaW5ldHdvcmtzZ3JvdXAuY29t[\\/\\\\]+1[\\/\\\\]+010001930cedd09d\\-08050731\\-ec7e\\-4b4e\\-ab62\\-424287eb070d\\-000000[\\/\\\\]+TQ1lHf1u57JOXbJRhbdtzxpaUAU\\=399(?:\\?|$)" + }, + { + "hash": "d978a133693b0c33e879f8010d80c0a36af1caa39dc150c05c38d0119327c155", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-64\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "39f6050191cdd1ff337965803693aa66433eb697f4b2cc800cde2509cadd6011", + "regex": "(?i)^https?\\:\\/\\/petites\\-annonces\\-plan\\-cul\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c4e7d9fd40809e93512b16847db8f2a7b4ccc5721547360134a9f8f77fb7bbc8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.izcjcal\\.com\\%E2\\%88\\%95herxrzftpf\\%E2\\%88\\%95pildtpj\\%E2\\%88\\%95agrlbdc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=whpgrlvs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2ca52cc23fa923abf5a817d1ec7f55de50bcc246cc4d9c9cc4480339186e6182", + "regex": "." + }, + { + "hash": "fefbeb6bc92d409f4e7bb017924e0cdb632926eb6f3fc0b0800dfb08273b5177", + "regex": "(?i)^https?\\:\\/\\/instagram836\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8331c0b34be5db0c29ed8aa6d7a3a02581502f0041be088f73dc733e35d5e7be", + "regex": "(?i)^https?\\:\\/\\/hukolmnucaseastkascnasheaza\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "706d412be31575ad06f985f7a1923bd75028a2dc664ada38e85272bef0d4c392", + "regex": "." + }, + { + "hash": "9f31b299bececb5b18c684c78eb76d0e8effc2ef7d7867c25ecefb263c6bc8b0", + "regex": "(?i)^https?\\:\\/\\/reformncsnet\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "090d4a15dbf84ef93f081f66e9ae26f6b58ec5ced5d24aeec4149f470db035f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe35b6b419261a06c7a6f93700b65147e266f4c9fc0c04a17206a99a88f6f028", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin[\\/\\\\]+maint[\\/\\\\]+20244vAPP(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "974e44c2af5d145fe5157b86a92fc19975022c57a902b307c582f72cba49d7e7", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vrsmrn\\.com\\%E2\\%88\\%95wsoonqj\\%E2\\%88\\%95kdjncaaawu\\%E2\\%88\\%95itxsmo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=odbtn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9673e036c3b8cdf29807fb8e353f437d3fdbe17d3991bfc2d68874a504d1acd7", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "020f8775f0c780e8cab185604df6ece70f87350a537c39ac30dfcfd594f5824b", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "08332e376027ce0f12ec3c65fdb15e3a8fb801003c705a417a248f0242fe6627", + "regex": "(?i)^https?\\:\\/\\/hotvideogirl16hub\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2510302eb656a660daed0974bee7d5687e44ecb56a8aaa86f11b6624307e56ca", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-trend\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3c05fbd1c1d08205b96f9cdc8425592ed6189d1d661e73aaed10eaaa6df0f314", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d0c5aabbe13dccc433e804b448d73845573fcea7fa49d7ef1b147a8a7902a03f", + "regex": "(?i)^https?\\:\\/\\/global\\-hot\\-clip\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "665fb29c7f9ef9d6dc8a517145013f88d3ea6ac4959a5365a4e0352efb1398d9", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "26790007d1e7599fcce3ef6e4f87980877297ad1305f3848bed6063e03e36995", + "regex": "(?i)^https?\\:\\/\\/hotvideogirl16hub\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2e3e0b9b85a8b22a27852915b0fe170b74996a205fb76317a41500f9622f18f0", + "regex": "(?i)^https?\\:\\/\\/hotvideogirl16hub\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "882d0410a332a49f29624af3ec4f0142e5d030384f3b64abed4fe53f8ffc3a2f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.clbsbn\\.com\\%E2\\%88\\%95wrijwkj\\%E2\\%88\\%95vszirjetl\\%E2\\%88\\%95uzrelix\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pcliz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb541a0f7fc75fc700cd84b1cae3c4f65cb5be23d7b013ac5e6803be72d2658b", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "abbc05bcb604240c9838cd7948275bbfe3a159da69633d594d17b349994e64ce", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ea65b97236f765edb63e2c90239ffda3ffd90982ae2f152639c3d56d837f187e", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e7d776a0170c0e6c83895c98f79c21d69efe69e30452b41698f8c7982fca1a1d", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8fc2dd3954a325d6b7f66d4d73dcec97c857b5f0ad9a0d2247678a38d022dfbe", + "regex": "(?i)^https?\\:\\/\\/amazon\\.jppqahodwe\\.com\\%E2\\%88\\%95efsdcsj\\%E2\\%88\\%95beffztq\\%E2\\%88\\%95ochqs\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qebtor\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dfc697392591b35553c81b399dc4adc38786841a2037481ab6a8e8a0cfb64645", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "27ec3fb3e705f096ec3a534b5b6df919d031f507588eb62b6e6c5a49f6f69e6e", + "regex": "." + }, + { + "hash": "098f95c5f1c34513de97715260cb8854588d1027e9cbe691e6fc5ae0e5fd683b", + "regex": "(?i)^https?\\:\\/\\/amazon\\.iyshuid\\.com\\%E2\\%88\\%95bkhconlk\\%E2\\%88\\%95schzi\\%E2\\%88\\%95oxbtchv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bnesj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6ea9130ab31d32a58ae30f2cbbb790b4966ae1a967e6b4dd6649f21dfdc878a1", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7e272c769ef179c1b7ef68849522aa36a4d6e6982eecf699fbebdbf376212c1b", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tybsewobxl\\.com\\%E2\\%88\\%95clowm\\%E2\\%88\\%95xegsddvtlx\\%E2\\%88\\%95nhqqhy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cnrwbmyt\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2e0433c14282f23bbbab961c6f488ddbe3fe3523a6e00c92be399e4bab786485", + "regex": "." + }, + { + "hash": "a7aeb878d9ada4294c3d39cd17e791b479bc192777e5a3eb6d17f3146911235a", + "regex": "(?i)^https?\\:\\/\\/robuxhilelirobloxapk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "042dc51bbf80b707d3cc321b7091ee65434e23cd90f917574fd1ea9a44ebb4a0", + "regex": "(?i)^https?\\:\\/\\/robloxgfxgirlaesthetic\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dfc697392591b35553c81b399dc4adc38786841a2037481ab6a8e8a0cfb64645", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register12332(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9e4a8f7083e422f3e716e97eb0e3fd30f4216314bc35df55c1c1b40fb2610a4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zghstv\\.com\\%E2\\%88\\%95lhisu\\%E2\\%88\\%95mvoythb\\%E2\\%88\\%95zbmvhnc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ulfijwv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0916f7ce1620f5deb2135fb397749302337ad12f0d72a0638980dd6804bb3b25", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3be349a98cceffee38a92f72ef85c758a5c383d8203c77d2afc171d2a56f5f39", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8248a9546bcf4aab5d4cfb8b1d9463e48710405f9a8ac1707b6f5515f83d3c50", + "regex": "(?i)^https?\\:\\/\\/robuxcardscn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5dbfe1a239a182b87b5031b715a0f953f99fde44bb3046c5a415bce2a3f8f938", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2c17119ba0fc107869c4002ac6b70ba88ff341588af214127615da8c4f3c4727", + "regex": "(?i)^https?\\:\\/\\/fghghjhjhjjklkklk\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eae7f72b912c8e1da7af8259d65339cab0c06d9331d80a00e957f7b224756c36", + "regex": "(?i)^https?\\:\\/\\/hotvideogirl16hub\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0e8bb73487fa515ecd1c860f2d9dcec404bd6016ea940092cd7a6714278bd5dc", + "regex": "(?i)^https?\\:\\/\\/hotvideogirl16hub\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "184cdf1810a94e575e32104cb466dde7833e2bca651e2fd0a69a2636cc3274dc", + "regex": "(?i)^https?\\:\\/\\/votingcontestant\\-foodnetwork\\-sc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0437b442e295ed662312eb65018be7c13240590f896d468f660350e6c676722d", + "regex": "." + }, + { + "hash": "b2c5b7dc5661ac86a1adc11b90720aa1ba056e6c51f5e889d0ca7b110bd864fe", + "regex": "(?i)^https?\\:\\/\\/amazon\\.oweqqipvp\\.com\\%E2\\%88\\%95qfilgfopi\\%E2\\%88\\%95imnbbdmd\\%E2\\%88\\%95jpalo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hvmjlvb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "833b2ca836da6085ac7dbf4211c2928658f9bfc7945fd00a5ccb678afff2c7ea", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxooew\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b32c7b1aea43d37993e7262c7b7f566e49674a27639521fff5aade48d829636c", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "76abdc0af7818c84ad2415a264f3ad1fb1db4a3ab2bdea8dbaf90deafe3537ab", + "regex": "(?i)^https?\\:\\/\\/amazon\\.awolmfzrh\\.com\\%E2\\%88\\%95vlulmobg\\%E2\\%88\\%95fjhdzwrp\\%E2\\%88\\%95wvvbfzojnz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=obetgcz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fbe7a572ef5bc3a406e80d9e9255cfd04250511ce8579ecfccbccd394db748f7", + "regex": "." + }, + { + "hash": "3473f28622876398030f9938d169713c2edf8d8954fffb38ada8513a3058c583", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fbmordoddh\\.com\\%E2\\%88\\%95nyrhfvs\\%E2\\%88\\%95pauvu\\%E2\\%88\\%95bcnfk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fsmcds\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1535f63ceaf392b825042b2356068bd49d2ffc89f155b1f236ba5236d1e6a175", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "99a6e1cbe4c485e0252f49348b30031f2c9270eab0ba056fc8d58976b472370c", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3b03a71cc1827a1f85450fd36aea45f3c921761c482f28f4b946a1203fa235e6", + "regex": "(?i)^https?\\:\\/\\/g\\.o\\.v\\.fourth\\.grant\\.uk\\.id\\.login\\.update\\.ssl\\.encryption\\-6159368de39251d7a\\-login\\.id\\.security\\.trackid\\.piwikb7c1867dd7ba9c57\\.1c2bd080bdd6cea2c3fac22999bfa0af\\.mailingmarketing\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2088fcff4dee74915e4aa0102b11313ad9f267f4b7f9ca8d8aac4c0661f4245b", + "regex": "(?i)^https?\\:\\/\\/allaviuom\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fd14c3a62d2fc00cb76614f2067e439c2f53b0a62d93800a4826c3cfd7c7eb6f", + "regex": "." + }, + { + "hash": "cc9aa36c6d8344f53cc34e57cd51aad7116f864da66c9c18903345ddd3fe8196", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cmgknmrqj\\.com\\%E2\\%88\\%95qhpmmvl\\%E2\\%88\\%95zykbktmwuq\\%E2\\%88\\%95lsueikouzp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xbgmpdkb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bc817a9156764d5c7d6aacd59b644d837b0e3ab612b87c7dfb5f77e61ada8360", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ryxzqwkoq\\.com\\%E2\\%88\\%95eitpaxzli\\%E2\\%88\\%95bgiuiohmna\\%E2\\%88\\%95geoft\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=imlkv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bb3fbc0e21740d38a4c25065761d8fa742e16b2a895d4f6ffcfa37349ab028a8", + "regex": "(?i)^https?\\:\\/\\/ar334091\\.page\\.link(?:\\:(?:80|443))?[\\/\\\\]+RtQw" + }, + { + "hash": "a02320e4cbe543d672c4a186096b988a19ddf5af0d7b6f7f13151a169bc08e76", + "regex": "(?i)^https?\\:\\/\\/amazon\\.pfrpcuabgy\\.com\\%E2\\%88\\%95stemijnpes\\%E2\\%88\\%95uqvkizfvz\\%E2\\%88\\%95ptumor\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ucerapp\\.co\\.jp" + }, + { + "hash": "bbe4c66cada5bdf89f731d82e5d9b2dd3e3299feb3bf21a04179f15691fbb193", + "regex": "(?i)^https?\\:\\/\\/jojobndem1\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0fdead93eb30217876afb9b3e3ed508217d4bf0eba5e07b0d1d2b2fd23f135ca", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "373a6b6c3ad4201322ef8f70d20b7bf30469be9ccd46901cfc89e47badf0586d", + "regex": "." + }, + { + "hash": "ab7658506f4dd737484598b6dc2ffd5c3e9a55066f695dca870bd4baa2aacf09", + "regex": "(?i)^https?\\:\\/\\/amazon\\.uynuwdl\\.com\\%E2\\%88\\%95lolxysne\\%E2\\%88\\%95gqifkz\\%E2\\%88\\%95vgbtwrao\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uahhrpn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f6e4aee73cc65886c85db5a43ad6f05dc92d506cda41adb2282b2eacf02ab43", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ef974a56badcd32dd956cf906ae2be131ed45cf58f03bf73360c7747693fe1d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-Log[\\/\\\\]+LOG[\\/\\\\]+ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38dfa6ca2072748b12916d634e321fb53f953647385edd733d96adbb864f330a", + "regex": "." + }, + { + "hash": "1b322e553aab156e0e68a6901aa4c3fd46b4dda9362a7d21535f9e5014a12f44", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "39499c842daeb642cf99f74e1f5585b0345784ff2bdcecada3d37885773f3e43", + "regex": "(?i)^https?\\:\\/\\/amazon\\.btaapb\\.com\\%E2\\%88\\%95txkzs\\%E2\\%88\\%95eanzjp\\%E2\\%88\\%95nhjdz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xncgyeu\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8621f7fdf6e21f73c0c7177c5ef2d36b222129d7e8e66d77d1cf42e974cd30ba", + "regex": "." + }, + { + "hash": "b67300896ebd9571a2cf86ccb4a856def9d2acb90529fb5e51f9f081ba55a83d", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "779a7c4207caf32f5d098559e811e0736336251885836d4ce60b4404840cbcb9", + "regex": "(?i)^https?\\:\\/\\/amazon\\.xavffslhu\\.com\\%E2\\%88\\%95zzsemgvrw\\%E2\\%88\\%95jrczvx\\%E2\\%88\\%95yyysfdmvu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fkwupjuwo\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e596914b19c4a6c398b92756d761ef32a31b45572b79035c031990ca73a34462", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "107f8ac762354d96908c5621437a10d66603c6f18b94fa6cc931cc4dfccb4086", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-vault\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9aae7384e683e5a3116149cfac3e1e350e148a08924a2ff1a85d4cff316a25cb", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wrobsh\\.com\\%E2\\%88\\%95uqqspbmu\\%E2\\%88\\%95vgyqvhgdz\\%E2\\%88\\%95lclym\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=flpygqu\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "952a69b8cc6602c93ccb8a2a5d30be9c57df7af933eb26b9a89a18def58c5ed2", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-vault\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1b121c48ce58e9c09e26f7678da7b3588e8cad0bc0c0b671bac49cbba2897181", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "048eb07d9aa6b7ff918ffd074068d516cc4ad0acccd43d74b362914b69a9ebac", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodcookingnetwork\\-sc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "845f310dade12c96bd1ec2a1094eef3249275b3c42418e9c24cca6ca3c93d502", + "regex": "(?i)^https?\\:\\/\\/allaviuom\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ca71ed701bde128d2b99363c9cf1d04f9b1c7ab6f26bf7e9ba6bed660f415447", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodcookingnetwork\\-sc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6eb8c3c406400cd36bafaf12033f837809596c4953047bb4165afc854cea27ad", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ppmvhk\\.com\\%E2\\%88\\%95aotiybl\\%E2\\%88\\%95iwtounfftx\\%E2\\%88\\%95vcqmegwdh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ziqnegdy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a374342c647bff75b6f96d1399e53f7514d4e9d831ee9b1bb894cc5d9d38919", + "regex": "(?i)^https?\\:\\/\\/amazon\\.imhctwu\\.com\\%E2\\%88\\%95cfhssw\\%E2\\%88\\%95zrocgkrbbj\\%E2\\%88\\%95remcq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jcynoo\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "60e9e42f63469d51fb697411f766460b659a255e02c00c468099223c9f85a2c9", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodcookingnetwork\\-sc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "11a64577bbc9c33b652792ffb9d344c8432d93e7444c6ccd4fb8ec34c54073e3", + "regex": "(?i)^https?\\:\\/\\/paypaypaynejpeub8\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "17445e0d9d5f307cc74b3f9de2f49a5412887cc9c99d6340750c3f6aae78be21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3512794d35439c8927ce7ec39762c8f140fed719f76288185959ab3118ee8553", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4de0493f7109028813d6fc0d23d827572730456b9fd853768ecd26a6d673ce72", + "regex": "(?i)^https?\\:\\/\\/x\\-webcam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "855b1d6e168356b69e296ad77ad5f2989d84b2f8bc34491ee38db1e28f4f281c", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "96878e29239ba22bba726d90bbf8584630dd7d19111b37e4c592c36b64dfb879", + "regex": "." + }, + { + "hash": "08c45f6ede04f72085b0a55caa0831911a849d3ee06d15f7286591160b43d0f9", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "35e36c7058b17b482111ede74ce9615aa0e88448f3ca72653db02ee0b9475b40", + "regex": "(?i)^https?\\:\\/\\/votingcontestant\\-foodnetwork\\-sc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5ab3f3f119f1ab3896a1c49484502bf80d938b46a7412f7f9c3938031eecfdf6", + "regex": "(?i)^https?\\:\\/\\/amazon\\.jfckqgx\\.com\\%E2\\%88\\%95jkmlt\\%E2\\%88\\%95ugvjrw\\%E2\\%88\\%95bukii\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vagpdjj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ef1b407eca1fac3480a08ebaca0bc4714015524f743266b08467cf832d69f2e6", + "regex": "." + }, + { + "hash": "1410eb881f18ff27005b7c7d9555633521308a1148da65a262d01f8e94d143bc", + "regex": "(?i)^https?\\:\\/\\/global\\-hot\\-clip\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "53ef70658bc05c77f64cb51fea25e91d88861adb2bcef3c7fa065eca0c2b74a2", + "regex": "(?i)^https?\\:\\/\\/robloxgfxgirlaesthetic\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0665d500f32d773f1d0408010ce5d5f112c25437e69e6b9e734dd0b19c42becc", + "regex": "(?i)^https?\\:\\/\\/bsdyugyoiuewyoweuoivsduiew\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5a225535e5cf24f8efcd300d8379c971b057550d2310f21699a22ae72a1e2224", + "regex": "(?i)^https?\\:\\/\\/votingcontestant\\-foodnetwork\\-sc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8465b8ba570715063a53b2dbec4a9c6e188b8ab0ffc8c0cbac2cef6698b364b4", + "regex": "(?i)^https?\\:\\/\\/dfhfdjhdfjdj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c0e7f8b2381f3a0a4b6c3f239e47aaa99316865be8d33768a9e93ef08fa9d6b3", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "54e48ac5e23e971f3b4e751e713bcceb6bbe79699abfd1d32fbb13c1c33098d8", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bbc20155e2675b44efe08faa37ff8982ec9bd937907b1aa3659032fb4f04331e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fscwr\\.com\\%E2\\%88\\%95watvizmbxm\\%E2\\%88\\%95wewyz\\%E2\\%88\\%95anruxesd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=yjtdllem\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "02364af1b19428dea5e4e2496ecf114ccfc28e8b4f449c463a5a08d7a4968d3e", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "794adef92dcf8f72330ed69476f4d59cb142cd4ff5218aa0042072e9e4b91a4a", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "df5d1649a4c6b9a42360ad71706796b2c308a83a60fe39e314dd897cca69c247", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxooew\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "05d5ea8caf77ae3ec4715f6877d273c401bcde1bf12b2f864ae2a0cdff0c7333", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{4}\\.vemro\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "d2508e347c28971a6acff7511f5fdf62907614f8c807ace98a77b4285fc9cd16", + "regex": "(?i)^https?\\:\\/\\/amazon\\.yygrmhr\\.com\\%E2\\%88\\%95azwoe\\%E2\\%88\\%95kyuqtoxn\\%E2\\%88\\%95fjaclfle\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=stlfuue\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cd89f887324b50f22de0773aa7ff0a82899bbdb1fc2a9a6ff0f0408c9d87051d", + "regex": "." + }, + { + "hash": "aa3aa03e7a48c089342cd9460b826521ffaecbfc2206360ed77c2d76a0e8b079", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e2fd1af383a6ed504c7a18c11f7fef5e16289ba5518d45dc3ed9e3e239729e0b", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "46e8d957005ce80789962e877c8afe0fb9e3fba17f2eaf1a390d54fe6e60acf7", + "regex": "(?i)^https?\\:\\/\\/e8mail\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "703817c91d543e24c8e598cde77fc0fe0c1f0e4fc326e5b753c94f8a083b2dc3", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f3412afd0114323b2e464d89b3c3b161d5e8e76dc32cc5e7bb8194d0a9960ae8", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodcookingnetwork\\-sc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7283b2ed4b5e42d69d69425e23e631cb0d51b0a790d58c01e0cda790cfe2c22a", + "regex": "." + }, + { + "hash": "49b7a73842c11491ac8caddb7da02e1839d67f77da737c3c8a7e71d39623d28c", + "regex": "(?i)^https?\\:\\/\\/x\\-webcam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c8fb200aa35209ba65fce2a848e6799b5e7cac1bbf926794259d2cd14d2f505c", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "03d96237e79caa4b45d5bba6445ca0b05ff0932d2278c9f35cf6d56a79ac7d02", + "regex": "(?i)^https?\\:\\/\\/hotvideogirl16hub\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4d468576488df8bbfac452d17a36ae7ab299decb2330736bcbfa281b867cec50", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "20f790a05ff3833a4aa1bbfc9d03e51a94caca713559be6a806228251fbd5e69", + "regex": "." + }, + { + "hash": "da12b2f4a08631c062a298caeeeda97d9fe7dc1b0bb04ce5a453a5629ebd37b2", + "regex": "(?i)^https?\\:\\/\\/robuxcardscn\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "01a2ed8c0896c05bd83e0e45f9def0e4c4f69c15a8d0e2b286f089d8e93e5b49", + "regex": "(?i)^https?\\:\\/\\/amazon\\.toknhju\\.com\\%E2\\%88\\%95cptvmiwah\\%E2\\%88\\%95nwkzktl\\%E2\\%88\\%95xazyxbn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=wowcyaubgr\\.co\\.jp" + }, + { + "hash": "b82feef0e5e0213f767e274bae2fe56f022a1e978e2095c1f6478bb1eeb2f198", + "regex": "." + }, + { + "hash": "33e16ce340ba31f93f995aaaaba9ffb3d08c552fbb2b3146b430fd62e2b1d1ff", + "regex": "(?i)^https?\\:\\/\\/global\\-hot\\-clip\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "27f60564dafc4460db86d47ddefadad128d2144d151645378189ee4843e0c19c", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f4454794e7e218aae1898817bd3f81e992b08a2378fabac69fe9c6c10dab2a28", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "332ba3673157912079ddaf93f5e8a3e65e9a484a5d80b480ba41bed89ffceaf8", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1b0c95b34b79983d17ce83b8c3120d23966607cd390ac3a4c34884847a31e762", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intest\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1e62ce886dd600f85fa502a69b0122d4fa691067122de4338b0cbe45db48f80e", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fdd5416c668a011dc691c684cb97d8f28fe02b629e5bcfb367777190221db20c", + "regex": "(?i)^https?\\:\\/\\/amazon\\.smvyvg\\.com\\%E2\\%88\\%95csnwx\\%E2\\%88\\%95mavszxbum\\%E2\\%88\\%95cdtcpxeakh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ippiphmf\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d540b2a312e896c660b020470ee1da509ea26d6325d85f9e93d0761460ca672", + "regex": "(?i)^https?\\:\\/\\/pub\\-6dedc889a8524914903300fd3ed9de37\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ea8b071be323aada42ec345ae083e24b09066af419eb427358dd68ebb26beb01", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9a1ca3c24f8244250a15f8073c4a0c14b48c60d7016426e4975f7a106b80858d", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2950550ba4f84f7f6e06b929afb0a97f6c661bb64b4e55a25a9e36d774fc302c", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "10b4e8c2e3e7e2837d248766b2dfc8a3d1e2cf286bcf1731aa47b890a0357d17", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mejsclj\\.com\\%E2\\%88\\%95gzpldgij\\%E2\\%88\\%95divprk\\%E2\\%88\\%95sjqqngo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vysfh\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b28f0b7b19e00752bc6316b0e7454cf4e96d598d09767308b89a5b8426d88d65", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-vault\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9d3880d72ecd541e4232072754b7c65b0a156491e937566a806163d65cd136b2", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1a62f86756872c9b9dd890f2195eb8403a1f21912677c848470b34c0a99636b4", + "regex": "(?i)^https?\\:\\/\\/bsdyugyoiuewyoweuoivsduiew\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ae2d0b3a6e61bb9d6585ac5003f8adf122342de399da42511f4f785f8df2b76d", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ee400279176f717f3cc2d6d0a9ec1c02c2640a04bdbe00a92d0df5ec77b9d1ea", + "regex": "(?i)^https?\\:\\/\\/amazon\\.buhnvmht\\.com\\%E2\\%88\\%95zdgeb\\%E2\\%88\\%95gctdzx\\%E2\\%88\\%95nhnjrnghwd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pvlwh\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a00507a5d79000383cc0a0baf540b43db284206a4f48059d8620031b7ae49b9d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.anrjrgas\\.com\\%E2\\%88\\%95hipdpzqnxq\\%E2\\%88\\%95yqmhrvu\\%E2\\%88\\%95cisjfqjvgg\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=mzrvsj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2cd8e88c6d52c106dd827cbf83a8a069cc085b1879d8bc368d8dfbeb3c52a2d0", + "regex": "(?i)^https?\\:\\/\\/www\\.connect\\-xfinity\\.104\\-248\\-145\\-103\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b63d1a529a61b6a557d04a1f65aafd4d4a720f0d485b1299a796ac59acf0f049", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a88a2568e158e24e91659e09ef75a594e8785621323f2aed57e2428e24c287a6", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-trend\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "499df1d4335d998ce5fb3e1ece6db05797f5ea5a31aa6089541a86b40d07a176", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Furl1068\\.betterclinicsapp\\.com\\%2Fls\\%2Fclick\\%3Fupn\\=u001\\.i2f2gsdVLVxBL8iZm\\-2F\\-2BcL17obiM4\\-2BDuTss6EMWFD0dXsY1Qo2hlPhLmn85SmD3SWoXTpni9QAnEhKG0Bcsbvcxd9f\\-2B1acDIQNhqHYCWVw3cVN0U\\-2FjFQf8UPvy0TzPRdAZt6WzCKBS6aljG651qHo3kBtz32QqB5WcUPReqf1RKu0Wl6SrcKKcqMxUjIpQEB8XZigupoV\\-2FZIIV6\\-2BaF2G7UDdQQH7NMBHwdEYbsjiIcYSUyINJ2SeE\\-2BE\\-2FS0APvxWhpJjesX\\-2F\\-2FX9VmqanZ3cfY4ZemIVGnaiZ3JTWQiWISNqRVcBbBgzmQDKbxXMUFan8p0JpkN2wBKGdvSaS1I9OhHkHAEm81MSNEBeEEYWHfQdjkBia6\\-2F4MId9xV0ZD\\-2F53eKnON8UzVJhCG9TfUr5AsqsOw16r9S6F9gyiPXPdjK1vySIU4mT\\-2BYquCFqHqRSNw4p\\-2B8ZfZfD\\-2FIWyNYF2f\\-2BXxOcD8p2t17dW3wqxQPn\\-2BNkH6BhUvubEAFDSV1gqtKrvQKo16E5t4SfgKie\\-2BgK0SwzJgof7nUtXVoWN\\-2BEoYflGt\\-2BdOiVGw60iBpnqZtKF743dfFMRPYah0AvcDqT3M3aVOlX7IcujG\\-2F6OeL\\-2BjZ2EKIqhuRpaE8HFKQB928xxd7LvrrwAlKlvmnZXBw\\-2B1A\\-2BHn\\-2FeW2EQ\\-3D\\-3DYAlw_YwbfCUjEM\\-2FAFdwfiyIklAN0ybbpuMoKyi4OmLg8dCYaYVe9jM4sLsK9qIaDELvUuvsxKJq\\-2F21U\\-2BBoIm9YvL2W9zJUFdCjPC3Tr52s7oHorDCcwJEJZzgNovQyh2MSt\\-2FEjhSw9F37QhsKfdAi7Is4KqtiiaysgHXxHX6C1cBkWenVQBHqH4othiRr\\-2BQVLLv\\-2FT5J0hqrI1gzfgvwADtH\\-2F54qqZwj\\-2Fp5b\\-2BCai8cm\\-2FSjieu6WIXqAoYQTYvSlitzibCRZB89q\\-2BpE44qkoVIJIzAYAA\\-3D\\-3D[\\/\\\\]+1[\\/\\\\]+010e01930c433b36\\-fb2983b7\\-ed8f\\-4e80\\-9d78\\-6be4b0578332\\-000000[\\/\\\\]+TtyM5KZTDANJwEa1AIt0myDlTYs\\=184(?:\\?|$)" + }, + { + "hash": "9670ba6732123fef480975c2f8416954c2a82687a80ab230acc486456297e5f5", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "db66dc08cc143f385f99196f557971bddf890689cf6e089cdcf85107902fb323", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "62b559bc4bfa8fb58d07371217a823394f8a0805e2022d588ea840bdbb75a16d", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1e80fd5b1234f20d922db5a0a34ccddc0b17be6c5fb9ab6067c8c7b0b771ce9e", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2b1b889971436b2cba6117c0ca34e5dee2a2a744c159effcfe61224439b279b9", + "regex": "(?i)^https?\\:\\/\\/bruteforceinstagramhack\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ed52b706fa4378e0aa22f7840e6cab9a36d6ec6ef9d63536306f873b4ec849a", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "21a48fd89b33458fe40627d2a8349842f3ef1a2feacdc389cbc0311d7f027d03", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0c762c7822ce32e462fee083babebeadaa9463f0e3db1483b1465686b8363f70", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1798fae58c5a46183f6494a45ea67ce9586b7ff78865e93567788d9c9f49bc7f", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "22d52cf3051a06b06dc148aaae1887cfe1f224bc7308449768500f92fe78f928", + "regex": "(?i)^https?\\:\\/\\/amazon\\.quoaopy\\.com\\%E2\\%88\\%95dduau\\%E2\\%88\\%95cfdswdce\\%E2\\%88\\%95ojnzdcldh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ruagljels\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ab67c91cf867779d4c1525af1897cd98dac242d0d8b9e430eeb2fc8265885663", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "976b9a4c88a0bee03882ec2c71ac765f1948b277fc10775cdea8322f55331386", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "83bd31e535e2547ac81cf61a32210ff202d9bc4f1990beb77ea3819405594de6", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wtsugrj\\.com\\%E2\\%88\\%95ubrimin\\%E2\\%88\\%95weatisgmhj\\%E2\\%88\\%95pgkjo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qjgyostcy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cdd0b268e63871bc88a5f4bccaa48b3a49f31f552ccaa884d62c1a2375668f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "f16856170b2a71cacb6a828bf27bb2caaa5734bbefe18378861e94f966711f73", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "889de95960e39aa2724714c6131e7e84187208fd6cc775e00e447dc995f01dfa", + "regex": "(?i)^https?\\:\\/\\/amazon\\.puijg\\.com\\%E2\\%88\\%95tqjyrayrht\\%E2\\%88\\%95mkkzgbdgp\\%E2\\%88\\%95oropspyas\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qalsshm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a2baa5631e270a5328e5f3ae47cbb1b56021c0796442fb80dd520eba5bb4b07", + "regex": "(?i)^https?\\:\\/\\/amazon\\.idlwswink\\.com\\%E2\\%88\\%95smcrpqhp\\%E2\\%88\\%95mxikotmk\\%E2\\%88\\%95wityjsf\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zbzjqn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b86ee299b251210242fc98509a80441d53bfeef95d85848dc494e529565fd22", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "95c589252c640fcb3c5d758c92b5ce41fd6f572bd3161127420249eb94572493", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vmuklfkd\\.com\\%E2\\%88\\%95bjxghu\\%E2\\%88\\%95wrbppb\\%E2\\%88\\%95dilvkvyda\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=momdhtppz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2c80fcea5baff27e9fd3159ac977b397305cd551998008fa61839ab36aeaae19", + "regex": "(?i)^https?\\:\\/\\/robuxcardscn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dc044865ecdcfaa7f1e6a8fc4a9efad6f34d40154b5b4e2cc73142ad45e9fd60", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "25a407a878613e8109f9be7c6d5afcf8f291eb7ee397e82af089c4eb9c51482d", + "regex": "(?i)^https?\\:\\/\\/plum\\-raccoon\\-mdd2c6\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2fa3520f81b58ccf5f9b52b13b24e502f7348caace8973b62ae9d55f358b6a90", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7792ec4ba3fe516d335eee545ebf9d1cfbcd57c58e6788fbd89f9704fef81900", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7645188d19c2ccd545d81dd8d6e4f36ff21408059c0ef3fbe7c71f84523d8a94", + "regex": "." + }, + { + "hash": "ee4cd698362e2072e65157b094c3db0e473348bd2556f56114851f44fe820236", + "regex": "(?i)^https?\\:\\/\\/gtytyuy\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "601078e6c41f93e8c71fee53856a4f8d2f045db27a813e34978aec44ed5da0a8", + "regex": "(?i)^https?\\:\\/\\/allaviuom\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "42aec240e38b4aa6f646090128aed37e736cebc01076ab69a4faa59ec498b411", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodcookingnetwork\\-sc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0cfa4c8064aff7046a76bd3f2a11bf66f2ceaeed5698b1e868e4b301e5969482", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c77e8c8a08932e938b49cec0543af36eb6da406757987d87b95785f8aa30e188", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8b4ccae5dfe6e8d494533443158b8221978977bf02af9459041e8dbcff9197c0", + "regex": "(?i)^https?\\:\\/\\/robuxcardscn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6f358cb0d08164058ffebba193855ef43c65911d26db5926673a084915373084", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "72785c9cb6fd0796faa14f249a5e3dd52754ce05e0189913680a19f37f129e93", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ba3d4be00c56985272dfadfebd733e886db86aed3c057ca239fcee1591bff328", + "regex": "." + }, + { + "hash": "8894d8ee4220edfe6f2c6ea71e623ff6cfbe7e6f06a6e6d0be17222a407da069", + "regex": "(?i)^https?\\:\\/\\/robloxgfxgirlaesthetic\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cde7527ff24c97a0147c7a543ef7a7cfae26e8d58107114822ee6a6a6e339097", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fbb06e4f59f13b38c831289779198324d437c3af355550b55e3a42ad9a6d0d98", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-trend\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cb829df1805b82c3fff13f32283de85c5afe03064fe415cd84f0d4d882e8d736", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "817f70e7496fa1ffb719a561790187586f8e13d6c24fd075cb2770dfa574c865", + "regex": "(?i)^https?\\:\\/\\/amazon\\.pgvvla\\.com\\%E2\\%88\\%95rqfsxvhmi\\%E2\\%88\\%95qyvgruzrv\\%E2\\%88\\%95vqgigbja\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bsxillhxk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c943c1e4aa58568f26c65ca3507ed6be825637e2b1a978f4fe7ab24e3cf271b", + "regex": "(?i)^https?\\:\\/\\/votingcontestant\\-foodnetwork\\-sc\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a507dbaac7265db871e1ba30c301168f816e020a5336e86612b211f9efc17d5d", + "regex": "(?i)^https?\\:\\/\\/howtogetanyrobloxgamepassforfree2021\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4443e4ac46cbee84a921cbc437632d6f2f71fa004cc35ec2df49fc0fd724cf67", + "regex": "(?i)^https?\\:\\/\\/allaviuom\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "618fa59672f87592f8ecfbdd418476a6605fec59e6f883535651954296c9bf26", + "regex": "(?i)^https?\\:\\/\\/amazon\\.oaafmd\\.com\\%E2\\%88\\%95hamsyyo\\%E2\\%88\\%95sdaerapo\\%E2\\%88\\%95jcuhieio\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pyitvlmn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ccd5c91b7093f2664d45615881d8a095398670099b2f3586eab6e28d8e1b71b5", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "78a7a6295357b7532a022ae683e71172ac5e1b2268af54121281e8cbf2f09e3e", + "regex": "." + }, + { + "hash": "6b1f4d34b755f6d7b2bd1ca8387baa41fe813169fb5e9b76c4f78b96be7207b6", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e26d707973f3f1aaa4300d6c8e2e136f79a433eff857a9271b2fc675a97d76f2", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9ca1cd2d3ad5aff2eb332a22953240101f275bde7698569baab24378e0cc23e3", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3ef0cb7e1391159720f659ec85bc825f7f4fc00d8aaed513669981c716699315", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a4434eff669b68b15380a873bb4d0683e7d8e168c928a2d1f73b921f5adb1cf3", + "regex": "(?i)^https?\\:\\/\\/amazon\\.iejuzk\\.com\\%E2\\%88\\%95xhaca\\%E2\\%88\\%95czkyomzi\\%E2\\%88\\%95obbnmyxz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dqlufjzuh\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ba74a5a049e93402ed5a584431762f2f8fb0bedd46a8e5904460e3c0b882054", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodcookingnetwork\\-sc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1c344a2b19f9deacb335526f39a4f19381691b9e24ba0a4f1570d2da7b994e1d", + "regex": "(?i)^https?\\:\\/\\/hotvideogirl16hub\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "19823d2d6019967543d6eaaf211e8606419607e68955d5ffafe6826a8360404a", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3d4131f443fdd7f04d8bcf14899349a68c7644bce669914e3f75d3b1168084a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_content\\%3Dbuffercf3b2_utm_medium\\%3Dsocial_utm_source\\%3Dsnapchat\\.com_utm_term_utm_campaign\\%3D\\=bdwktvr$" + }, + { + "hash": "99625741eda6adb4750d7cd9da5601770eb4adba53b49fc85cccc57a6d7c3843", + "regex": "." + }, + { + "hash": "74ed2f450057389f0a99eb3133dbe12ae269e6f4634a989c4616f95c6a96248e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.lbdbhhc\\.com\\%E2\\%88\\%95zcgzqw\\%E2\\%88\\%95dsbzigxio\\%E2\\%88\\%95psbilyn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fchxivsn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aaaf97ec3ba8a1451a9a04168199fb4081419fdf47cd858916fbe0517879a2ef", + "regex": "(?i)^https?\\:\\/\\/x\\-webcam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "06fb9a6a29dee83ba49d3eac5823d88bcfba394698af297b9db74b7bff9a40e3", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "db70ea498f03101e15781c84c1bad0a24134a3dae1362f01d4cc14c3ab6d13bb", + "regex": "(?i)^https?\\:\\/\\/robloxgfxgirlaesthetic\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "214e155a75897f23e97e19751078eb2bb1389a49c2c062583cf4f444705cb620", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ifvxto\\.com\\%E2\\%88\\%95nkpcqktkw\\%E2\\%88\\%95gwjjc\\%E2\\%88\\%95wtqenrh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=wxuiti\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "72b590397ee3b88ade706b6b24c97cf450eff53266c70f5fd99f12ce0db40995", + "regex": "." + }, + { + "hash": "2da3b53160292f2d68df9b7231b734942eef64dc8799ba0508303e0ab9ea4d66", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodcookingnetwork\\-sc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6d5780db73d405eecd379e3a69f5e153a75f707491634d36b4054b92ab298b5f", + "regex": "(?i)^https?\\:\\/\\/allaviuom\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "853ca27a3105b1666355097e5299079a3ae01b6e4345ed44580c351d89bef34c", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fnldwld\\.com\\%E2\\%88\\%95thwsb\\%E2\\%88\\%95jpnwgavpx\\%E2\\%88\\%95yklxdi\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=oumurgmeow\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "06fb62ca246cfbbc5442f63f4208b5698438846767b9038fe1d7b52762b22dd2", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oabab4(?:\\?|$)" + }, + { + "hash": "1e6956d6f59d23b058274637e0d2d029d4e07e22bb7ad31be5d6bb6807798a59", + "regex": "(?i)^https?\\:\\/\\/amazon\\.apvyltjhb\\.com\\%E2\\%88\\%95uchxbxqfq\\%E2\\%88\\%95uujqyhhjw\\%E2\\%88\\%95ngguoc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fyofkkjdm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2401f654431bc30541a4b95114e95ce1499f4414ad7d9d2a13cb5603cc4301a7", + "regex": "(?i)^https?\\:\\/\\/comosejogaominigamedoroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "73856a43b41d3f4f6d4ccef8c8f15b4be09c6da3a1d46fa6229d60b9ed00b183", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "865147f2267792ae291538880e97317705153cf37d0cda976e2adf9160324fbf", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "615fb11a4c027fdb1711c8c18deddb685da81be196f923667acd7f7b08c52047", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dce94ae3a5c67e2ae92310978b4e82790103ec734e78a6a751c7f55a3416c2a0", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ed42d159dd4356133ceeb9a7228b532ba0013dca6f6ff446934d909232c127b0", + "regex": "." + }, + { + "hash": "f933322011396ef77da2514ecba4752d58e7bae0d34647f0abb74b4c2ef0d9c4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fwyljo\\.com\\%E2\\%88\\%95rxzgoydssn\\%E2\\%88\\%95iwtxazmffi\\%E2\\%88\\%95ptdvk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=koytx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b62c86129e3ff569fdf3a069086e1bec6271b4a3ad09d3b10fead70d1bf284d5", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2f1280a7cea4e1fbd5540393d56fe8b837347efd99bff0edea6962c729842f84", + "regex": "(?i)^https?\\:\\/\\/amazon\\.qslbac\\.com\\%E2\\%88\\%95iomxwn\\%E2\\%88\\%95rlkvsy\\%E2\\%88\\%95fuhevrxjbx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xaznvhusgi\\.co\\.jp" + }, + { + "hash": "1a6f0a02a5ddb5a08b9294fe12d21a1679be2da8a02bd217434ef0cbfff2b103", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d0d71d80a74486aaba6524f8d35549f5bd1aecf65a42385813b2029a4d7ea4a", + "regex": "." + }, + { + "hash": "94b1874e0d63343e3b8f2bd7a6cc53783cab3ba9b06d557152226afeafab08df", + "regex": "(?i)^https?\\:\\/\\/amazon\\.jrbepamii\\.com\\%E2\\%88\\%95pyfxc\\%E2\\%88\\%95uqqim\\%E2\\%88\\%95zigzefr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=haszo\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c2dd95552b9065047ae4dad8726e4c1137fda7cf1ad6dde703cd8c3a897f4754", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b9ebc7432ca925f7cab8f18e6fe6ea8758e633bbc28857d30dc5e55c4af5fe3c", + "regex": "(?i)^https?\\:\\/\\/global\\-hot\\-clip\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "718aa1237aeebe7318767d614288fc6518a42c63c4db9f89d238356797bda286", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c720cae182bc1800e36e833740b6cdc3532f480097a840a8730bd4ab94bd05a5", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-vault\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f08e8afe209a8cebd8671bdb6774c671a430cca58ecb0155037dd87ebd84e7d5", + "regex": "." + }, + { + "hash": "eebf4e40ec276318e1d0ca612c9e2d38400c3df2431176787abbed884346d2fd", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mpcnd\\.com\\%E2\\%88\\%95kyojwsfat\\%E2\\%88\\%95gqpnmsyg\\%E2\\%88\\%95zquijhw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fdaedbakv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b84618c4b05f40b53373e5fe318d99a09a349e63ca09a33da1a6d6f8ac7faf9b", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "13891d27c203df1c77563fee3a8d7f828770d113b55a7d5acb2df4481525bda9", + "regex": "." + }, + { + "hash": "a3c21149994aaf2550799d0d26f6fac040a4d690ce112d970059fb0b11973741", + "regex": "(?i)^https?\\:\\/\\/allaviuom\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "88ab124e7a5543edac831df185eb9c75247d5902c8fece5f379d28634d284093", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "da3ae64e5d910ebe2d588ff90c88739330784fd01e06008238e3111a9a4725aa", + "regex": "(?i)^https?\\:\\/\\/robloxgfxgirlaesthetic\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9dbb8c0cc2eff9fc4205cd6c0c337738d8d795d8857d0211db9ea047b0ea379", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "dd0ff5581618b63b4220cc39dda1aab927cb619387f69470d5cb38efae59c96e", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d6e8d6e6090582b4d7e04902939e58b17decfeafcd6a4a604f0ea6ec111ec7c5", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "68de1ca796990ecdb924cca860d545671633d4d2fddcd9452ffea3871ea26a2d", + "regex": "(?i)^https?\\:\\/\\/robuxcardscn\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "27d00044bce7a168f982acb3e478b90887aefddcc7356469737a0040384b7b15", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+htjsfc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d75da36900c2741ed929d93273c549f0118585fff00a017e800e4ca37208e614", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "20f70e68ec2a5498bf815f8f064ea695b3c6d052db9c269ddb0d9fb601d17768", + "regex": "." + }, + { + "hash": "4c8a0487306871f9a3a1efc65de69afcf86e7e981ce84740bc8b1c8f017afbb6", + "regex": "." + }, + { + "hash": "b5c9c2a12c94baf17a204b56a1dda0b53b3f77613b21395bc83b58090a724c66", + "regex": "." + }, + { + "hash": "41fe9abe4448da4e520ca127df1849cc5031b28d06e301d73b2951ab255a5ff3", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-vault\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9d4017941c0e18a4971a8ce11d74fec59008cc9b632dfa1e588164524526f4bc", + "regex": "(?i)^https?\\:\\/\\/amazon\\.auzogyjjbd\\.com\\%E2\\%88\\%95wousf\\%E2\\%88\\%95edycmb\\%E2\\%88\\%95wdaeprczpx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=luclchzz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ed0e2d742602dacd3cfc6442dfa972123ffc11454ddcf6836b8cc22d6722b7a8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ncqavajx\\.com\\%E2\\%88\\%95awrzlu\\%E2\\%88\\%95hfkzqj\\%E2\\%88\\%95imeeu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tyhrmpqm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "437d657abb169871c8d05ea47c3a1b2cac11beaec7b27c43fcb05c3650889660", + "regex": "." + }, + { + "hash": "9ccdcbf1085b3341dd0dcd570c21b8e7ac7ac9f5fc93ff56ecc32817a2d64ff0", + "regex": "." + }, + { + "hash": "bb6cd10b4e2ff290b57e4f454b6068cddc6a3fc2aaf7de0f2db98d65db43c2fe", + "regex": "(?i)^https?\\:\\/\\/damp\\-mountain\\-3f62\\.updatelogaccountprogramedrfwerwrdhsmm\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8434494958989dd0f0b5d29d3c26b35a72eb09e347104edbd1b435b912065578", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rvdkmt\\.com\\%E2\\%88\\%95cwxngadd\\%E2\\%88\\%95bsred\\%E2\\%88\\%95uzill\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=nqzzbsjczq\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa411486c952cc39495bdd4373ed9107429f34f5c13c0eda65145b89e5daf34f", + "regex": "(?i)^https?\\:\\/\\/allaviuom\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3380b882df61ed3b20685820e66ab40d504973716b6793800d6efec1b0c56bc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e6606a877b8ec77a909a8a142b4a852159c05e6473d745b3ebfb88cb5abe13b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track_click\\.php\\?email\\=bGluemlqbWl0Y2hlbGxAYmx1ZXlvbmRlci5jby51aw\\=\\=\\&url\\=https\\:[\\/\\\\]+www\\.srx\\.viers0n\\.com$" + }, + { + "hash": "50e013ec962b7a279a785045c8102641211188c39b8284b545cd2ed98500e339", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "304bee7e2b2ce3095962e626c4d7b5f41e06c94f6e4126d4b18e72340380673a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zone(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "43633411970d7ea5a5c533fd743bda6be9cff94164feb55ac9c6a87dcef2fe8e", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "090d489c3e4cb97e902a341eb22afc85147f51f4303f6b7e9e07b961fab71f7d", + "regex": "." + }, + { + "hash": "a6e1386b0f3de3be093def5af81bd3c0e5ee7875cfa740c0ae73e06b3bbeacdd", + "regex": "(?i)^https?\\:\\/\\/amazon\\.duflsov\\.com\\%E2\\%88\\%95nfzjptoq\\%E2\\%88\\%95iemhzxg\\%E2\\%88\\%95cxjytdhdsu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rgekzjln\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "640ed2db0f5b51bedf2715c4ff970d6e5aa919fa1266fc4991acd2867c3446e6", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8ffc84d839e4ec6567469b061c3f80ca37dbd9ab5aa8f4449ff8b3b5a49b7e54", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "82c9c6d510d7d7228f0898c2b56610345e4fea547bcc30fd7632c0f0069d26ee", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c0354cfa4d2725d5c5264d6c9baa379c45d3084e4095749aaa55c6e738831c61", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-trend\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f15d4c383c374c6d3193c93107de30dccb54172b37da414c96235156a40fb801", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ccd12ca434e606277ecc281bc2903463f2bce6a6b3320098f3495ebb99393ebf", + "regex": "(?i)^https?\\:\\/\\/amazon\\.swevhlt\\.com\\%E2\\%88\\%95hfmqw\\%E2\\%88\\%95upslip\\%E2\\%88\\%95cslxfe\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tcymo\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4388405ae2ff8c066d21aacaa68a60afcc90460be84df5e1694f41eb8b6ef4a0", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxooew\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2f125b5400070137296f3839bfa8ba2facb4c05d87e78dc5940aee750b98490d", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ce93e5f3c5b94c04761dcd09bf2626be8d2c7389645578f854271e81ac928028", + "regex": "(?i)^https?\\:\\/\\/votingcontestant\\-foodnetwork\\-sc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ef9136b74716f47dcc9d800dfafaabe0c2f5d7367b2821eb3a84c1650eabad18", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vxuofvb\\.com\\%E2\\%88\\%95nqmyc\\%E2\\%88\\%95chhsluft\\%E2\\%88\\%95tdeobegx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xhspp\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9189d715a588081a20eee5f8a1a186bea9c45788f8391041eb46a6e098a5bf4b", + "regex": "." + }, + { + "hash": "dfc697392591b35553c81b399dc4adc38786841a2037481ab6a8e8a0cfb64645", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "899e6403f0f8a78a01cbe3522736c5b757b805c0d3ff58460d9b08714b178a47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?efefwd$" + }, + { + "hash": "fc5e7973bd050f4c9bdb173e45e0055053c20b21d5ff2a760a0ca8f77cf5b14f", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-trend\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "89d0fab9036eb68130341de9ec1b793db18622ec665bc1a90683d73942bae467", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9938da6073705cfa411a15fb69fb06f7c0f3cfdeb918683da826b6fb637894aa", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nmsxbknn\\.com\\%E2\\%88\\%95kbzswji\\%E2\\%88\\%95srtyxak\\%E2\\%88\\%95vaxoxailku\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tcrluae\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "180e98919837dddb25a8a3bb84c5dbf65390479925065fb427310e0776e6b14d", + "regex": "(?i)^https?\\:\\/\\/robloxgfxgirlaesthetic\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b6547ea026785133f00def719c6bba49d2c1dfb1a3836f95fc8e7c10c04108c4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.bkszrilgl\\.com\\%E2\\%88\\%95illpctaa\\%E2\\%88\\%95bkmxps\\%E2\\%88\\%95bncon\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bmocim\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "277a177a7aeecd525b058ff44921ffd5ad1aadf1fba19a84e1b3bf5b3e8b3728", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "98796a9cab8fc6eab3e79761a040262b9578faa37fd29852e5a1f5128b93aa22", + "regex": "(?i)^https?\\:\\/\\/lnstagram\\-com\\-add\\-vote\\-anshika\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b32d222307cea36f06a5b0e7351c6639ead0d817bffa1894fd6ae31478359563", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxooew\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0a169f042f43e3e1bae1310a05bd69e91309e99a95e24fad39ce83484ec75a39", + "regex": "(?i)^https?\\:\\/\\/robloxgfxgirlaesthetic\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23a3788c50148d5982182c85847c2a7c1057afe69f21b9cce4abc124b152f08d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "2079ce257552ef2163db6b450ee2149f4d24be1c8f1daeef9cdcd29bee9409e4", + "regex": "(?i)^https?\\:\\/\\/global\\-hot\\-clip\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "44ec232f90cd5c6300acff73c5ff9af084ce4cea9d95e3e1c20d960ad3f83e77", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fgsaw\\.com\\%E2\\%88\\%95tbfgcozkkb\\%E2\\%88\\%95lyicrmi\\%E2\\%88\\%95uzoxah\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=eajfhxxkof\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d25085762387e39ea386b312f602806c880a7ef6bf8bc32cf619ec17519c0183", + "regex": "(?i)^https?\\:\\/\\/x\\-webcam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "25ee908c52870565daabce60dab34754dcf036aa0015dd72140d3833cd9a48a7", + "regex": "(?i)^https?\\:\\/\\/amazon\\.lhuhtkcnia\\.com\\%E2\\%88\\%95vxcawo\\%E2\\%88\\%95jpnndsnet\\%E2\\%88\\%95wkjsdi\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fvvxxam\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c02c75c12e3c5e9c268364767518f8de518341816c4b22db61a5e9bf0d38880e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.xhauw\\.com\\%E2\\%88\\%95rqyzr\\%E2\\%88\\%95tssildbob\\%E2\\%88\\%95dyrsmnnxte\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zkccjtbqx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5fe5b5b4cacf3c5665de6a87b6761dc6f2874478eb18948bb07702e6417840b4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ntbydgtyzt\\.com\\%E2\\%88\\%95weaxij\\%E2\\%88\\%95mcjhra\\%E2\\%88\\%95wkyvesriaz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pqihejdbr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "437da98c3d346ebd67fae1a2954739231999a366b75daa8f4e6d7d25eff4ac5f", + "regex": "(?i)^https?\\:\\/\\/bsdyugyoiuewyoweuoivsduiew\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e8e07e94541f8efebeefaf523fd34489b4488e719f3903cd2f4df9bc0fc59f3b", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wrhzd\\.com\\%E2\\%88\\%95vlwggsxrog\\%E2\\%88\\%95pkmxi\\%E2\\%88\\%95hoxqrzsxl\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ahaqpime\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0dd0f685d750bbae3bc8ee2daa6f160b1edd5d8fbd12c5bc260059607da993ed", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "10b9a5bfda021742e4f9449cc98a258e8217bc30d1b7f9f1a94e1b1a3144fa6c", + "regex": "(?i)^https?\\:\\/\\/global\\-hot\\-clip\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4ccbf343250026fea0bb88706d16d8ae12cd7572c25d5a22fcdceed3b416e62d", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-vault\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1669409acd7589900ce5a049d9f6980fc63c21da720f307ec56855cd6867e15e", + "regex": "(?i)^https?\\:\\/\\/cbulrbxpageuser0nline\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "247b50310fc8ebcbbd9470af4b15991cef1621ef5f801b606a95ef377f0a3a95", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-trend\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0c34d33bc18748b4030b19cb097c3bf2358d4921f2e9ce9261058ca70c62c55b", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5961e35a0176d59a457c5c841e3d1ee913e62e6d1133fcad63bbfed6f9ed9714", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+url1068\\.betterclinicsapp\\.com[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.i2f2gsdVLVxBL8iZm\\-2F\\-2BcL17obiM4\\-2BDuTss6EMWFD0dXsY1Qo2hlPhLmn85SmD3SWoXTpni9QAnEhKG0Bcsbvcxd9f\\-2B1acDIQNhqHYCWVw3cVN0U\\-2FjFQf8UPvy0TzPRdAZt6WzCKBS6aljG651qHo3kBtz32QqB5WcUPReqf1RKu0Wl6SrcKKcqMxUjIpQEB8XZigupoV\\-2FZIIV6\\-2BaF2G7UDdQQH7NMBHwdEYbsjiIcYSUyINJ2SeE\\-2BE\\-2FS0APvxWhpJjesX\\-2F\\-2FX9VmqanZ3cfY4ZemIVGnaiZ3JTWQiWISNqRVcBbBgzmQDKbxXMUFan8p0JpkN2wBKGdvSaS1I9OhHkHAEm81MSNEBeEEYWHfQdjkBia6\\-2F4MId9xV0ZD\\-2F53eKnON8UzVJhCG9TfUr5AsqsOw16r9S6F9gyiPXPdjK1vySIU4mT\\-2BYquCFqHqRSNw4p\\-2B8ZfZfD\\-2FIWyNYF2f\\-2BXxOcD8p2t17dW3wqxQPn\\-2BNkH6BhUvubEAFDSV1gqtKrvQKo16E5t4SfgKie\\-2BgK0SwzJgof7nUtXVoWN\\-2BEoYflGt\\-2BdOiVGw60iBpnqZtKF743dfFMRPYah0AvcDqT3M3aVOlX7IcujG\\-2F6OeL\\-2BjZ2EKIqhuRpaE8HFKQB928xxd7LvrrwAlKlvmnZXBw\\-2B1A\\-2BHn\\-2FeW2EQ\\-3D\\-3DYAlw_YwbfCUjEM\\-2FAFdwfiyIklAN0ybbpuMoKyi4OmLg8dCYaYVe9jM4sLsK9qIaDELvUuvsxKJq\\-2F21U\\-2BBoIm9YvL2W9zJUFdCjPC3Tr52s7oHorDCcwJEJZzgNovQyh2MSt\\-2FEjhSw9F37QhsKfdAi7Is4KqtiiaysgHXxHX6C1cBkWenVQBHqH4othiRr\\-2BQVLLv\\-2FT5J0hqrI1gzfgvwADtH\\-2F54qqZwj\\-2Fp5b\\-2BCai8cm\\-2FSjieu6WIXqAoYQTYvSlitzibCRZB89q\\-2BpE44qkoVIJIzAYAA\\-3D\\-3D[\\/\\\\]+1[\\/\\\\]+010e01930c433b36\\-fb2983b7\\-ed8f\\-4e80\\-9d78\\-6be4b0578332\\-000000[\\/\\\\]+TtyM5KZTDANJwEa1AIt0myDlTYs\\=184$" + }, + { + "hash": "724723e79976dd515f9b8eade85f918eb93e85a4ede6d297ac5b287062c51854", + "regex": "(?i)^https?\\:\\/\\/allaviuom\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "287f14b07c0116789730fb815a7df88362f2d94063b784c2bc98f2fcec867b39", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxooew\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "82b45160a447befe89fd6ae3a7002a8c5e5c77ca859b57f31c47ae1e20b5d77e", + "regex": "(?i)^https?\\:\\/\\/votingcontestant\\-foodnetwork\\-sc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c6fabe0ebae1606bc2d4d5ed09b4c76967aeb3b822ec4d9ac9738062ee053af7", + "regex": "." + }, + { + "hash": "d614d0648519d5a2b64b1191d858e66dee3b036de5bf359192c5952c01cf9217", + "regex": "(?i)^https?\\:\\/\\/foodnetwork\\-cookingcontest\\-sc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9a63663d49a06415898a75132e45be08279f1e5a4404fed2dfbc65f5d4f557e9", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e2d4641688cd16bae29355f3ba49be0a3e882fd95e9d5bb067bf6d70f06a51b9", + "regex": "." + }, + { + "hash": "68a3b4ac1e468f7aa32ed31c90a6bf7dfb7232656d836469e7ba858d1634b26a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+favicon\\.ico(?:\\?|$)" + }, + { + "hash": "bb56573a393274209f92522ef04ac0f529718afab86949f990de6bd32a4871c9", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "18f18b29c989b1face57b8af65e18eb0694aab75b2743267fc66e8bc6d253de6", + "regex": "(?i)^https?\\:\\/\\/x\\-webcam\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bd1935cbb3f9db7563b90d5e34db56cb375df4260dead3cabd9bfeffb78aade2", + "regex": "." + }, + { + "hash": "d8b3b4a8818e043b8332e4a7cb9a9327fa37b06d51a73c39726a642c1f3a2f9e", + "regex": "(?i)^https?\\:\\/\\/x\\-webcam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3405e1584044c95a0bc7fa12ca52d37f3a80455623e703811a034a8404984a7c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxooew\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "711f1221c4e6505e4bbe3a6d96cc1f22ecebfde6ce6cd689fa82246c6844114b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+security\\-check[\\/\\\\]+signin" + }, + { + "hash": "19b8faa3b82c23593c32ae74a35025c90f786d2a89d18ffdfb2987eabcfd32c1", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "81adbda93f3a1b0870fa1bbfa87c9a0103775c3a417d4ee78b71f1707c54cefb", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c6053e26c7e2706851120a4b93eee078f337562230c3a8d663c5a54160ffc97a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxooew\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e1a38e27e53f42b08279165e3a62a1fb1ee59b9f79b0cee18c349d02a29fe232", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodcookingnetwork\\-sc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "16819909a6290c90d14109b4b9a67040784a00d9ebf6bc67c49f5cae394a523a", + "regex": "(?i)^https?\\:\\/\\/global\\-viral\\-clips\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "55fadeeadbca2038b333ba91e4a9bd3db2549c97d724a76ee9fa8b369f41f1b2", + "regex": "." + }, + { + "hash": "fc04aa54ec82972f8f2d1ba1d1d7d50de8ab57c0b1125f2ab4423d1c99a80b46", + "regex": "(?i)^https?\\:\\/\\/amazon\\.iljlwaywze\\.com\\%E2\\%88\\%95asfzxnkrax\\%E2\\%88\\%95dafcevn\\%E2\\%88\\%95ekypey\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=nfgsqgb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cfe4e04578a78aa1d4dcc361abdb00125623728efdbc59d8167a85978462d908", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxooew\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c324f580d29f6f1e92a23ade2d07b871ef16015ff4516aa044821bc366843902", + "regex": "." + }, + { + "hash": "451d5eae1528d93afb17c564834988708933c8d4e9012cf3f850ffd06625bd02", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2f60c122cadd6885a9522006541e29f885f3d162d1052f682aabfee7f626ac57", + "regex": "." + }, + { + "hash": "788d43a8365763fdba548857bf0bd4fea9d6adcfccba51620c1b696af6ce3c48", + "regex": "(?i)^https?\\:\\/\\/allaviuom\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "45d848b8648e70de37230203e96ebb1e253cea7922da491cf3b13975fdf3db65", + "regex": "(?i)^https?\\:\\/\\/freefiremax40542025\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0ca71f6ec1e195159273b4b82d6ba7cdbc3e7a9f063272ad4e6cbbb0dd14cc6e", + "regex": "." + }, + { + "hash": "c211f403ed3958c7b90e98bc43c322f345da77674304b643a59015c114cee762", + "regex": "(?i)^https?\\:\\/\\/nithin114776\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b7ff1009ba389c79fa85a67a04f53cb2320410ec269cd9ab5a07ea5c0cd7b447", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-golobal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5feee2579d2e52f69a96a322a20145aaabafe84f598b093edb1810e5075090d1", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcontest\\-voting\\-sc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "011ec1e50621622441fde203b736cc55b8d94ed3bfa18c365a356c183abf926a", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-vault\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e49d9a1b58541e97003ca1d2d01a39dafbf4d84b0035bcd6d23995c42aa69d6f", + "regex": "." + }, + { + "hash": "5c50181b7e4a861945db9f342be0422a7668cb5545a59b3ef6abab155c3d5cca", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wvyuokbe\\.com\\%E2\\%88\\%95cvrvbf\\%E2\\%88\\%95iglgy\\%E2\\%88\\%95ucdkpquvmy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tkazaj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5064796717afb4ad9d5804503433ca8ad5f04a5e886e5673a473bd4d1a0d6db1", + "regex": "." + }, + { + "hash": "340542d6bcda711e6123e1eae42d39ecb529fbf78d15cbc5dbb6932e0be62e46", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxooew\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ffc450a3fde0fec182d2a2ada2617c5f583ed0c7adf29f68eb992e3cfdc01406", + "regex": "(?i)^https?\\:\\/\\/robloxgfxgirlaesthetic\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "146e411fbdf5b4f83a724c283fb66f0ddd593cf5bc94cd894643572117507be6", + "regex": "(?i)^https?\\:\\/\\/tilerssnot\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b0a7ecc547df9d6eb9bfcafd046a9dd6d0e148e61abf947f0812ef7b8b684b72", + "regex": "(?i)^https?\\:\\/\\/freefirerekncmo2005\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ddbc87ec29ffd8cd8c0a3fcf4b6cd786500f8852d960e0ed315dc07cbec53fa2", + "regex": "(?i)^https?\\:\\/\\/votrcopmt2024\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c4f241bd6bcd1b929c8cdc5b5cc6629777d1b08eb87614aab8be4add57f0d48f", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6529f23a86d6d342316441ede1785387ddc6cb2186604f4e3a99eeb470e8e3e1", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "32b42a6a52313c0530c9047c2053720f8245b1e40e9b6b10ee3d7678cc0acbf9", + "regex": "(?i)^https?\\:\\/\\/amazon\\.bbckontk\\.com\\%E2\\%88\\%95oyvszcrubw\\%E2\\%88\\%95qrcoxfxdc\\%E2\\%88\\%95lieibtup\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hobeqy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "17147b94f850dff00148ee210448c8e19c953bc3e4de659adc5a8c17109b9d11", + "regex": "." + }, + { + "hash": "97582b05aaf0e2725cf03560d125166c7257cbc5d86985f8a4128cedbca6ab6a", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "77a0e04560796b999f7f0fe14b4fae8907995d686431eb62668b7bca12ee1667", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8acae6264ba743eb92d161df028fc13bad2e7df3c1ba633ff970e1bc4da1d97c", + "regex": "(?i)^https?\\:\\/\\/cam\\-stephanie\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "63b060cd20b2ac75bb13d3ba6bc1f95ac97a203ce188e5ad76b36b11b68348b4", + "regex": "(?i)^https?\\:\\/\\/cam\\-stephanie\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "11d12a9293c3524322ec97e46a087ad276a07425ef6d718338436ac77b1a8ac3", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salopes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "be36f61dd260b3be0e04de7cfceb6b080f63ffa4fdd244f7e50607d81a97b69e", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cabd6ca517dc4d73eafc8a60d87b2589486ced5845a91120914320a632f65174", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1b0fc74d78c59a173a92e49e1aa24f6669af636566296195ae65b0bba808cd98", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "21c571c39a68327c0dd61152ee2d3f1a5a63d167aec613ec51abb8a2f21d4e53", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-porno\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "de9ac6a5c9b5e956af5faf16a6b1fc7af8a8365514c4d5bba1f5d4f24d380a55", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "adc44501d90d149d9b1519e1024cb178240193f0ef6a3a9f907b50bf7173dc21", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1471cc766d5466cf6f00d367fd385bce8a64cf08ca533fb3519c46d69fb35bda", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmksw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "031fb9edb6eacac15a51f75ef7e255e4ce120a024cedf6b0beca67cc66de458a", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "60e9a30a876cde6fa63aea5427fb7161b7154d377c9ef8b5053255644f07d6d6", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "14b5050d410b992f9cb994b73067c5566497a45f0d01cd5ccabdb6e6db5a3ea4", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxuna\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a65923d29eb620d09cef4a64eda58b259969321a87137f6653648e2bc61b6b12", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "79797a2c37b901fd1352ce7fddb9782526d75093c541daa421c4763614a6f280", + "regex": "." + }, + { + "hash": "93b4bee6110001f237ceae8228dbda4334270268bdc40a170f739c18b1d67f12", + "regex": "." + }, + { + "hash": "e95e1117ee3f79cb370dcdcabe17da62323e27e4bd5455cca8d3e11ffcf27763", + "regex": "(?i)^https?\\:\\/\\/trendyclipx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2f1226078052404f0b17b6dd158dd8a6b0d105b3e064a51a33c4880adaf414ce", + "regex": "(?i)^https?\\:\\/\\/onedlg87\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e8fbc0e21566e6d46609975797b9ed6e9391597d63caf7052564f84196e20b1b", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e5b8d1ba2266ce7f35b96055a52f0ab2951a637d2feb3d95e5657c4eb301a717", + "regex": "(?i)^https?\\:\\/\\/chocam\\-sophie\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8f436dfd733a483ff6f82b08639d2109dd7e3912ccbf93cec0ffe7e071807c3a", + "regex": "(?i)^https?\\:\\/\\/gfredghregfrewfgw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7b5ed42b2b422e3cf77975217a96a2f6467041926c3826cae87a66ba163d51fd", + "regex": "(?i)^https?\\:\\/\\/cliptrendspark\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "631a337beb023411bdd2df1fb370b2283b656740ea4045852b49757526023cb0", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porno\\-gratuit\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d22d4ce52ecff562119733b3284ac45e0c878abf11a8e65d2f9d6e777fb60d60", + "regex": "." + }, + { + "hash": "99f0ed1112b3dbb4155b9725a2fcbdb2854bd596445e0446f6767fb373409ace", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxuna\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1c5a5b07fc28cc483817e0457c0133ae55f81b2ac406843938e5fbfc132ea943", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b8a35b285a1699523625be10a1af766af005dd51f9f68584ebfc925a4b3e5fcf", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomcontroledesnes\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1be9e993dd7356900a172fc8e5fc574bace6bedba56a0df0f339538a96210bd", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wwrjvqdxl\\.com\\%E2\\%88\\%95thxka\\%E2\\%88\\%95bqvdtuctp\\%E2\\%88\\%95mkdgbfskn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vbqvgkmacu\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a2e0cb77bf21200b80a5299046e9b83af90239fa34019bc0e0ffea1cbd46ffa8", + "regex": "." + }, + { + "hash": "442f61315b4cbd4c1bec19460e4a545f0e430ebd1975cc675e2870562c7a9e08", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "24106d981854e0743a85d0171aab30bf37fcce0184270d3bf9fb9d6da17a79c1", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5bccbf049b76c56f39832ccf2ad7cb35bb5802843fc752b978d3929dd884e740", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "07b1cb4f9aded50c6d4ba7682ad09e663ced9f12a52457e4cd120f58622533e8", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "30f9f655c3d15c295c9bb5d33670111cbd152e40b8ce204b874731bf1b9d5c80", + "regex": "(?i)^https?\\:\\/\\/salope\\-web\\-cam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5c686c430cd8a5d2af216bccb02463ca572eac0844891586374644b7be096831", + "regex": "(?i)^https?\\:\\/\\/deepaksayer\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0f50e6a0f2280959706e646996a4b886eb656bd76c827f645e5a6b6d39768be0", + "regex": "(?i)^https?\\:\\/\\/baiisskas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c5487a8618b7fa1c8165c4d18fbd4b723d6448290bc1115dfd0c3dcad951a5e0", + "regex": "(?i)^https?\\:\\/\\/en\\-direct\\-porno\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6edc94d435702b53c5a0c46d19000bdc69e1955649ba1e478b3a64f9a0dcb7b8", + "regex": "(?i)^https?\\:\\/\\/video\\-webcam\\-amateur\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "99995405d847976b3d9e8a9198010866881d3b62cde230cd1fbc39d8e84f119b", + "regex": "(?i)^https?\\:\\/\\/fregregfewfdewfews\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ad8932e897c0f2c1915fd4a3debc086b6854d86b4139212e1e85f9d7b1546747", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "79cec0208316d02934b016d17969ab342df7d37633b92318539b099f1d289f5c", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3c05b58301a6869719f5c4cd56f3f8f27a96dac83e5d868cb8214a7890d3cc4a", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7062f4c8ab42f68cf40f4e077f387b04cea3f5b502f12bca620a23fff98cb9b4", + "regex": "(?i)^https?\\:\\/\\/trendyclipss\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c0c92cecd7e7e1572db3ed9addccfc241e8fd826de6fddaaa302d16772cfa258", + "regex": "(?i)^https?\\:\\/\\/fcedsfcedsfed\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0c966b00642ed9a987199c9904d334732f8921910b6f217023837ad679f3e916", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salope\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "67dfd6514cb6bfa8ca03aa7d8d368b4f5e2189a7d2797f22d63f72aae7528aa4", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9e3ee44210110a98a0a64b76cf9a3bf0593613d48b56140cfabd01c2ab060aad", + "regex": "." + }, + { + "hash": "5e2e301811ce818733304c5ef8c2d259b22876b275a988b4512e96343b12dd66", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e1fea4ed1023f21d364928378f4a675b7bfa19e8f474462da0229b19ff76c0dd", + "regex": "(?i)^https?\\:\\/\\/salope\\-sur\\-webcam\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e46a71a71a0d3c75d055e675e577c44c6b6b92e235de7fa5afdb98ace6e217bc", + "regex": "(?i)^https?\\:\\/\\/espaces\\-credit\\-agricole\\-ca\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1570ce1ad538092dbbb973f998b91458450968efe5b11aae1a69ea54223874e5", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a9e469ca8a45c08648cf7c124948fe497f9dff70b6de138db6fcb373d9ba5cd8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard" + }, + { + "hash": "c1285a4bcd2ec88abf5dea4eba6279e3aa521ab3bc31abcb05e0371f64d61ff6", + "regex": "(?i)^https?\\:\\/\\/deepaksayer\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4771b597a95d304f523a0de13db9b07aae08224700229f9fbb8b3f6f8fa4bb39", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fcc648d29905d1588c828cdab29f766ffbd541d198ee5b77c62e16d2c72a0048", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "226b3414c73f53d8d74cddd0fba80ef30a4a358d726893ffcd1fe3c6ed77b09e", + "regex": "(?i)^https?\\:\\/\\/chocam\\-sophie\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a65467420518fcebc632942c7088ec8e7aebac699b8d52da3dacaf5f9be4e223", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "85c9417cd8693a85d2c2ccf523737fd41f7488b4cf2124439b075a9da8d2098c", + "regex": "(?i)^https?\\:\\/\\/fregregfewfdewfews\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cd4d5a128b5e08b161629a441a9c14f87f5e3282b7b3e87adfb55e164b5719ad", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porno\\-gratuit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f1f0a7f36ba34d50e1e9cd4fee3319758ab7ee7f6e3c14a9aa632690d450f145", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6b1f2030dcb536fbf20cd6b9b953ef427a07ff57e2b677551650f23291d5d59f", + "regex": "." + }, + { + "hash": "962250299b8606b2937f0ad3e1059579ab57b5a1cdc320c07c06a42e55cbd31b", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "61de8c1b7799bfff8512118fc6e6d98ae423f9814b65e0d33f5ca234db2c8329", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4ae8e1b7872ab7429d2182825ca589f5a1a446e67d3c875b079b0ab96846b6d3", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-cam\\-gratuit\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d8303e1574022968c6c94cff2c657ddfe88f3667ba28dd640526f4d4525fc168", + "regex": "(?i)^https?\\:\\/\\/en\\-direct\\-porno\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2c2b80dd7d8555d031ad079c2dc19b1b5016d56f74ff39c96ec0bdfb562287a8", + "regex": "(?i)^https?\\:\\/\\/fecdwfewfed\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5cd0426b57d8efc6c5767399aab904877a3e5d888fc675d78f0dfe5ee6cc12e1", + "regex": "(?i)^https?\\:\\/\\/webcam\\-direct\\-porn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c9130857e47cee7ca66ede6e29805fd556e9231e25b5391085fe8517e63fccd9", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "049c8f00ef514fa7057d828726157b221d47e30a60d83a5d2fa942cfc41d6293", + "regex": "(?i)^https?\\:\\/\\/comocriarss1jogonorobloxparecidocomdr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bc75b84e13c02ab497d61bb5e6f07f4b93b82d1f7a4db5e9ac56d331f4e7027", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-webcam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6a8c3ffb444a0abefbbe39873ad1f9f6fac28db3d16e539baf6aed4a6a8f0e8f", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porno\\-gratuit\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d80d1e12feceb9abd10bd454d65b5d9d46d0306fba990422c1ab0f9a8d859fb6", + "regex": "(?i)^https?\\:\\/\\/cam\\-stephanie\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2d84481f38863bedbd91063b4c9d33bf26bc51d679442f203dec2968fa9a24a3", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-porno\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1bbc4de4e5a7d30b9d0df848cf59f6ffee664614863061d03bc65abe2b17219b", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "406a68c522eca4244687fdffe4d8a6c3eef072406bcf49fc4517126e12fae0e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register51268(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe212676cfc3559edd96a8f2e8735777534fa199ecc2d057b713a2c4b95e13f0", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.outs[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "ea2587dbae8ad04eb8de0288f83a61b9e5f1e88c8d1f3ba4fb3c6e9162ef66af", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ddba1cf4094aa58970bbb3eb0d6de9f7be6afcca68788257649fe38988cb3359", + "regex": "." + }, + { + "hash": "2863436769442bd07232a3003b9c6dcd5cacdc0697fc3b665ddf653dfa75be68", + "regex": "(?i)^https?\\:\\/\\/fecdwfewfed\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "61eadfb50a7edb5d99175e2f6ceef0d87c3b639fe37b353b493dd1f8362cd629", + "regex": "." + }, + { + "hash": "ea8607a0334ee8c692444051765c62243981af4eb4685c88b946ac7ae0c83378", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "12fee2f08275c40f4f26d0a54f2fc629a6ed7da1e30d3893cd7907ccb9f3e983", + "regex": "(?i)^https?\\:\\/\\/chocam\\-nathalie\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6d37a933523d03cb45e686ff0cc5f2c1687f06e25eb77cd67cc0c4e738cb9943", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-cam\\-gratuit\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2cc5ca2e8722022fd9af27d44ba9abc21961f3b22a3ac705162e4e554f59402c", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b5c730b6b4c60c46ffd82637057252ff71458bb7fbcc1fdbb983baa32be02a4f", + "regex": "(?i)^https?\\:\\/\\/chocam\\-sophie\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "92d8bc5b4bae85fd0d70f173873347a8e55b170b616db9220306697d66b83a97", + "regex": "." + }, + { + "hash": "1181a2d3eb6da791e957e783879995c65dee3fc7e86d22c3729639ae7ba62f93", + "regex": "." + }, + { + "hash": "12390a1f73e721f703d8551972e0714f7e2502198d759a3732e18e14d0c9f6b3", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ea0eed3d4226d047f8c3b214c415f7ff632cda7340c1f0837ec9d175e379663e", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "96cbecb94eb0548cd925da9504fe192ff5c328b8b294fc4560adb982226b725e", + "regex": "(?i)^https?\\:\\/\\/fecdwfewfed\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0d2a24ade0979b8f164d3aa94b53177aee1bb51c272021bafaf046f4d8d9523d", + "regex": "." + }, + { + "hash": "726a9f7301234fede94f90531bb2574e5f19fa82e5d989f35596a736b97431ed", + "regex": "(?i)^https?\\:\\/\\/sgdvhdsdbs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1336bd1642ab93d16f7fc6115080791d1f32c9cd34538a7e3f0f68898270e783", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e108e109a9fb14003584e684435946a4aa0ad0e26255ab3b9ac2b042058d4636", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "242456a3526519457570efc89e1114f0e5b9cac87fc640180907effb3f38ad30", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salope\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7547660431b90415ded859100fa17810b353715072ccc31bd80c752c8484cbdc", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vnfwwdsaoz\\.com\\%E2\\%88\\%95akpmuksok\\%E2\\%88\\%95fjghmdvuqt\\%E2\\%88\\%95wjadxidfi\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bojbpdzp\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0431d950e9628a340d3d47d58ce0647153902646e6550922d6fe3ba790374fe", + "regex": "(?i)^https?\\:\\/\\/buiokiowefuoifuweoiysdoiufwe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7cdad5f028a8273db0311797e225e295577de1c2ffd010c5105f4cab73a1f517", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxuna\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "80349fca11ba85541a929417e270096d0bc8e85622229842be49730bb30e16f4", + "regex": "(?i)^https?\\:\\/\\/salope\\-sur\\-webcam\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7d82a9494fe71932b75160e837855b4ddbaea6bff0798235bb01b99dcf88c92c", + "regex": "(?i)^https?\\:\\/\\/sgdvhdsdbs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2bc779cd95e8534e965cc5fce6f37f1de6b1022683b5c46e515cf3622eca4cc4", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-webcam\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "24d831487ca56515ed5392fbb1cffafa72b57cb240806b5f4c6ab3163db7d3d7", + "regex": "(?i)^https?\\:\\/\\/sgdvhdsdbs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "586045851b43bc9e11578580bde676bc13945c715eb09872469c9d5254277fd7", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2dbaefde2761a2caa4f254c46a04df12284583f7c69704b7bd6c9446d61c9e7d", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "f401874dca949f94540f3137e2025759e93d40038e621f2429e620a460076799", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-cam\\-gratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4f4073c57b7c72dbc6402324e72c1657a841f68942dc6ca2152c40a4181e900a", + "regex": "(?i)^https?\\:\\/\\/fcedsfcedsfed\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "daba5a07b761ce356a1ff2aa2ca5600e9b1bf4f68882d0d15872dcd295b89efd", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cc2567a5b07f4e34d11273079d5ec8f6e13aeff2ee25f0ca4e4f5c0cc34b5812", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salopes\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6cf0fbd2f1c46f14d0a387bddf2f3209acc21748d1fafdb1da827a098ec6635f", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "aca8d82d8858879a4c0a999fcd661bd52b06a7d68f9248765ee5a64e6d69d724", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b80fe80010bfff51b836ea0580230a6748a62f36d95b843abaaad6540ddacb0f", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9558785a69f6221b592542cb1563b05be3d7457dacb189750765dfb9c8672ade", + "regex": "(?i)^https?\\:\\/\\/pute\\-webcam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1eaaf84817bcca36b8fd8f960e72fec432f91e58c8c7008672165397bad0f9f0", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomcontroledesnes\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2bc7bacf4fba6b5e59413a1f81b2c42e5ee7bb5f8e08d7c5d6e8f77bf2e9094f", + "regex": "(?i)^https?\\:\\/\\/updnetcst\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e89cd280a0e3b9612ac8b08cf617b81282a37828fa1c1aae6675bade60af5556", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c5e1b24cdf071826f9f12c1c35ccea5fb6f3e0e743fae4994da75bffc37f28d3", + "regex": "." + }, + { + "hash": "c891d87847062fce6fb77f1a73fe577c67e8bf500d49c835c2000535e71f14fb", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2df4fa3b3ff33cb3c064fc79cef3f71fbefd5ec801acb8a243d7f78122d823b0", + "regex": "(?i)^https?\\:\\/\\/robuxcardsixkw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2da3e693f14164ac7d6847f0acc3416f49d971c0f4d1e9e0fd056963395ec28d", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4822a87ec2acb531bc8a16eca8d58e462fec757283d41b275b4bf7016c4defe4", + "regex": "(?i)^https?\\:\\/\\/gfredghregfrewfgw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ba3d2807a947c40e713eb25e908ebcaadb53da25bd3eff7ae4f7afbdf4d6e957", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "860a261e9482781a0faa1ea9d84f2efd542fdf99a4eb2a7f539a9fb8430f9021", + "regex": "(?i)^https?\\:\\/\\/hotclippeek\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b0fe9f2332973beca042b8751140e0b154f56bb43b8a3de03a11597d3307e474", + "regex": "(?i)^https?\\:\\/\\/hotclippeek\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "abb06a025e9e078791b5f6cd5e37a486a5ed556ac330464a6c3ce6700ad4f730", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2f4ebfe3cd4f074f489c6d5722620655e0070a3cf69410c4fa53328d5baa9c67", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxuna\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b891cca83c37e79ab0bc1732dc86017fd3dbc7af14b8af3bd0e4207a864fcc99", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b977fa8737b5baa63e2a2b6c967a06c2454e889680c687b5bb92437aa6fdfb22", + "regex": "(?i)^https?\\:\\/\\/espaces\\-credit\\-agricole\\-ca\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "777aac9cff4c7ab165fbf5bf656f1fdf5ba3a82298526654eaf457a325eab1a8", + "regex": "(?i)^https?\\:\\/\\/hotclippeek\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "19ee2b1a197e265dcec92e05e9cb6056c95225edba1841bfa25c3bcdce40f571", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e7496262f54af850a7403656447f85cc724f3b33e6a26b41868b233a4ad43a01", + "regex": "(?i)^https?\\:\\/\\/trendyclipx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "12d27392f8085b50ee864bb32f814a069f9640fc5cbacf145f250043e9b58fb8", + "regex": "(?i)^https?\\:\\/\\/espaces\\-credit\\-agricole\\-ca\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "66521a70b0e5f6c8934112edf18fb0054fb494224ef5adb158ec0feb224b15b3", + "regex": "(?i)^https?\\:\\/\\/baiisskas\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ac21cf920642013fdf1ef9b4b0ade64112347b4c7a10374573ac022a8b21c30b", + "regex": "(?i)^https?\\:\\/\\/amazon\\.oktaligv\\.com\\%E2\\%88\\%95xriezul\\%E2\\%88\\%95dcqaekat\\%E2\\%88\\%95nhvqu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=lrriwanmol\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8e081384e931b4ea7fe526d751178dfabe27fa7114c3bfdb5726281d17c2625", + "regex": "(?i)^https?\\:\\/\\/trendyclipx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "013cd111ad6977cc12c6b36e950a574dec4bbeae2775f2568eb1e63a2b2f2fd3", + "regex": "(?i)^https?\\:\\/\\/camera\\-live\\-porno\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2d3855aa3d7bbf96f06117b81f9da2747a595f2d6d34b29c58a6e71d3efacc3b", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5f68290996c8499598dcf85f17e348ee8ba9f8efda11874979c1ac115c283e2c", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomcontroledesnes\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07b195f96f62f1677bf7c7b07b0dc36606e4af310da385600d430efd98a0cc62", + "regex": "(?i)^https?\\:\\/\\/porn\\-live\\-direct\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "de82b61766e3f6eadcfcea7807d483de8ab4fed7d7c96e9d5fe77f71f4c75885", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eefd8323bd863be54006ca58b410e8786d92cf8a1032f594a0c589271175d3c1", + "regex": "(?i)^https?\\:\\/\\/chocam\\-amandine\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6d8eeead4a9fa3f9a1abf4da31d932b225855652e75916e574a305b7e28f540d", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cefc5a4ebd4d1f2c58aa5ef8f33d0ee5ef5afed6c3073dbb63d19646358ce4de", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9nekui(?:\\?|$)" + }, + { + "hash": "d98d22d48a85393b6ca60a3276c80167d547f2b07a55ff040e898dd0f59b4ebc", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-porno\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "96f23dfc869ce15f8a42b244136a7c12bb27e644fb81fa08ed1672a050b3d157", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxuna\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a773a658d4938d3110b28162c1080d95782d03a8116a3f1ba5d025d6b96f65fa", + "regex": "(?i)^https?\\:\\/\\/en\\-direct\\-porno\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "93a962b702915b582528aaceef0eac576d016a9f28e67aa9f3f5d08d5d42dd97", + "regex": "(?i)^https?\\:\\/\\/camera\\-live\\-porno\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d89d37b9297f7a84e1b1b73190b236736552a87734d03d830a01fc0de7452927", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0a170eaa50cda1fbed946243679d421365055ff20b5df26ecaca9629aeee0b69", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "68803482290b9050770a176c5ae896b928dbc4eb91ef9482ebcf5b41ffb5bfe3", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "65676e09d18a080a75b4f1b95ca0059b47cc2c49132849349be7d232632cc1a2", + "regex": "(?i)^https?\\:\\/\\/onedlg87\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bc9e6cff7cc980002b593ea62135463f8aca332cf80d2460eb6c71e531ae8cb2", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6f183e24f5934cdd7be8830356981f2c9b81fe7447c78d83bac092925f364148", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomcontroledesnes\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6af306281fa4f514abbc5191747289c0e75806454dc1d2a418610ae458558c4d", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a246d02231870a908ac230e66fe6eb30e1668cbd9007ac3b7d50cb1b40cc101c", + "regex": "(?i)^https?\\:\\/\\/purple032257\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "96fa166152ba5364b29bcd1c33ab4af2701034d8ddee968ad947017c7ed9030e", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a153d049ac3e946856f37448fc8e14a17d7e53d573b3a0215244c3f7cc352a5e", + "regex": "(?i)^https?\\:\\/\\/nvkhdmad\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b47f56a5e5f53a0892afa681710b527322ea29f1885e42da9f853b0fae0f3a57", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "20161e0212bf8c6bea23aed378a6fbd2c5ff3af33cae1bd07913dc7e40311437", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1b0ba93ee12eec026ffe9420c3f8e8d2d648458e449fc3dcc26513c4c3f2eca4", + "regex": "." + }, + { + "hash": "c1e8ebaa0e9009e3c6917a390a9657df278f2f00dfb1a0e7f03b00ae34d02906", + "regex": "(?i)^https?\\:\\/\\/hotclippeek\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e3bbbde3a803ae4236b8d6f1eba8250089f7a28d148d7d11544b966c5924e2cb", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-cam\\-gratuit\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "461c154c61f8ad3900a7a0e491c855b9be15f0981de94baefea38c597d4372c5", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bae4d87d3d6105e5b0c38fc8ef0fbad8dc1e95d204ed29e03d1a9b604d93466f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.yxayhj\\.com\\%E2\\%88\\%95epecbz\\%E2\\%88\\%95ucabbeuzez\\%E2\\%88\\%95lbtjfixynq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cqahdm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "887a5964c4d7c814c1821ec81af5ad82c6205ce53ec37b5f36444e744eb73083", + "regex": "." + }, + { + "hash": "6505ef5fc8b10bf5a7e421557a2f81732b86f8e0916f2d9225fba53c97f6a0a3", + "regex": "." + }, + { + "hash": "6bae4c19e7a8c716d91fe9a34205e92b9a25f5f4a064919016d4216ed4be5ec1", + "regex": "." + }, + { + "hash": "e2f4b766a174d6f5cfb1a0b5204ebf59904bacb2460684b507d2422f50ef702f", + "regex": "(?i)^https?\\:\\/\\/chocam\\-nathalie\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6c5031e16392078409f310942f87c240f0b7d064b7ef7a86a8042fbd0ba92ee9", + "regex": "(?i)^https?\\:\\/\\/fcedsfcedsfed\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "59f2d86ba77bd43162a1c1abe519134484f2eb1797a3a217f2e1ff85a75d3a0e", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f7bb388c560dd78eb549936acdbd43161ffd8dccb7513f365c0987144c75aa44", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b32db83900dcae3b0b7aac438a039fe1943a8d35dd5562c0caff90fb1645b07d", + "regex": "." + }, + { + "hash": "fd46b2e6b8cc602413f58059d2656e63abdb0d6a52064a68900f611f4f51787b", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ilgpo\\.com\\%E2\\%88\\%95lvjyaczxy\\%E2\\%88\\%95fspbjzp\\%E2\\%88\\%95qngbhuuflm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xosqaw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b4bf5fba71de1d22d3c68b99898965f66ff48609b2f179fc390111989afeef47", + "regex": "(?i)^https?\\:\\/\\/onedlg87\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ec3245ee7445a54761379be32be6c0d7e0a57b8fdb86b7af0b2a4471e2c1a70b", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c901f3b923a7b147138bedb18f5e8d76b4672e2a69b66e5a14db0cf023bf2b88", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2c21c8e6907f3ccd0e481f32fcff8c3691b46158c64558ba012596773791e7b3", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3201c00bcfb35638cadc3537636ffef4bf5fa2f3888fb69b156c9a48494c64b8", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zrg1bq(?:\\?|$)" + }, + { + "hash": "ec2dd080ec1c4cb76166449dce0865cc87cc05b14711fdffa2463d3b56626a02", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "aa4df0107bac56e00a1a4433b64f2276375ef719fccd3858a3ec5fb62fb9d0b2", + "regex": "(?i)^https?\\:\\/\\/salope\\-sur\\-webcam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b0ee0059799c85b513621f39092903975449052663beb5522987798ac035d576", + "regex": "(?i)^https?\\:\\/\\/fcedsfcedsfed\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9e830555b1816d6d2aedc946d60d9cf8d2325c1f701ca8aef1e8be6026de2538", + "regex": "(?i)^https?\\:\\/\\/video\\-webcam\\-amateur\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "caf18c9a0c0d1bd561e670fbd154bf262efe5ffbd114c5e391138dffa4a6072c", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "02a4ac703f9f7210473364c684dd5e6a575b8e7d744d5647df6346aa7646af85", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "03185400224a2be74be2bbf3013e8695ba1688542f818ac135ec0c11b956d3f9", + "regex": "(?i)^https?\\:\\/\\/salope\\-sur\\-webcam\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fcc6a45b86c6cc1732ccb57acba40382671fb06da3c59d4012216b0dd7f3b718", + "regex": "(?i)^https?\\:\\/\\/fecdwfewfed\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5a896305c53a0814c3f94af0f9835121a111d1399311d23e0c562f47a78f67aa", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "38d542778945928260d9e0599120f6f0e157a52c9194418f747316b093c3ac1a", + "regex": "." + }, + { + "hash": "09a0c923844c32cbfc9c251571ccb218df0bb1c29f35d1c914ce58aae8d25d87", + "regex": "(?i)^https?\\:\\/\\/baiisskas\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c07a7e0a67ab607f970b175f98162005ee9c7725016b1ee3c3a66e73490f7615", + "regex": "(?i)^https?\\:\\/\\/chocam\\-amandine\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "68c1c24e40986a550e9dabe5869a6f7789bcf1b811dae0ae73bb097cc8685b19", + "regex": "(?i)^https?\\:\\/\\/cam\\-stephanie\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8add517a4b3d708a1963be85ba48a3a151665823dd0587ec26b48660ccdfd624", + "regex": "." + }, + { + "hash": "87b49a76300213733eb19695cf10782c9f24c9d3377c3988da8812066adba463", + "regex": "." + }, + { + "hash": "925bfde51f00f57c32e27608a3c8e1969ebf526f12f12afe5aaf94d057a27bc3", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1831f1349ed081c867896c3eadf5300eef2a1a54e815af420f6d450b0b11c945", + "regex": "(?i)^https?\\:\\/\\/fecdwfewfed\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2ccd3a86b9dfcf0dbb0d4189e75094b5211f0e08756cb8ba9b9aa2bee9a44e05", + "regex": "." + }, + { + "hash": "be5c5d7e01a85a23a4421bc5a7cf9dcb085528f819993b063b79c7ac26e11e41", + "regex": "(?i)^https?\\:\\/\\/chocam\\-amandine\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ff05ef53efb015bce0a6684813eb53242835535d71090391b28bf2acc283d481", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "df5dcc33eb6d7a7abad59aebb7d0e616f268986a6055d1e83c437cdc4667f72b", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "325fcda772c6f8fc21ea3581d923f3994b676011a472356338fca8f3cef07d89", + "regex": "(?i)^https?\\:\\/\\/porn\\-live\\-direct\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+4snlq4(?:\\?|$)" + }, + { + "hash": "00d6f0a26911158359aff506fd432e2d2a3f576644218b55cc59b92e2bb833b2", + "regex": "(?i)^https?\\:\\/\\/nvkhdmad\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7c3922f68bf253fd213f955031b62b5a1cdf49790ecf91552da56195745cc20b", + "regex": "." + }, + { + "hash": "9b3b10c2422bb6a1929aa97cb1962c681947385f4898d944fb23ab5efeae6f52", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "38711e3387d450f7d03fa0fde40ee6467f19d0dc677619f4dc14170741f9024f", + "regex": "(?i)^https?\\:\\/\\/buiokiowefuoifuweoiysdoiufwe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "59e293171259e4b4e0acb1ffdfcc372adf084110ff09d0200654bd83e6535781", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f8e4fde5fb141f712134599053e1af31e6e11d1ebc422f52d0ee16898e628cde", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2f2c98c4d69860138bfcd8443ebc515b8fbf227fb2a992d154120d0a44a58d3b", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0efe2b3c72bc4f4ae501b02af235a1c7f73314094c93eb1a557fdb45fba8b289", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "77dced907bcc32a438f5ab0fa3e5c9703cc7534e39f6a337c85393f68bcb7daf", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "eaf7324987812236ee9ae0e79da2ce00c2d5f1e1eea225b07231e34ad341f906", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rfdrp\\.com\\%E2\\%88\\%95lqbnod\\%E2\\%88\\%95ckiwk\\%E2\\%88\\%95kvucy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=oeeydve\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "665087a84a4c9e82fb1c519a2faa7b4be006f1485d9ada84cb0f8cedcc438bdd", + "regex": "(?i)^https?\\:\\/\\/recharges\\-fr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d76a35b9f46ef3b73e1563c397546feca4cd0787b9ec9e2470582720b6e1685a", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porno\\-gratuit\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "329d3a43e97566359ac64d286b4be3317754cc052a02261d77a2c044bcff0361", + "regex": "." + }, + { + "hash": "807a0c208c8b7e69cf98fadbcd433663b0929885b2ed6ba6662932975bd581ef", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2f19e7d77f3eda6fdedbfbaa5e9d921b3d62ffead5a93754da81f6c45d706a91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+confirm[\\/\\\\]+login" + }, + { + "hash": "13d3a24b75749ce16a52ef4388f6b04b549aecad95d063204b539caa84405190", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmksw\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "79db98d8c5f5a9e162a2bf83ca621a30aeb5a71c441580b2757e4d86030cc9d3", + "regex": "(?i)^https?\\:\\/\\/recharges\\-fr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c97ff6d3626cc4e67f452eadc5563c1d0c986ef0053b78490fa0ab85828cecd5", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7112d6d0d8352a9aa041ab084b83bfd798d6b11cd7bd8615271a392313ebdf9d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salopes\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ee2eb22da3ae974a4dcfa4551538cf8ce59fcbc1458c6ea67cb88df6a2975540", + "regex": "(?i)^https?\\:\\/\\/trendyclipss\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f7762004e5c1778c677b65a7ac97782d74e2e23c88a739f1e63c13f7171dff16", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2e619320b2074edd1e8783d97eaac6ddb987e627e26f551d92315ced47fdeb93", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wuehvhy\\.com\\%E2\\%88\\%95burstwd\\%E2\\%88\\%95uuqddtb\\%E2\\%88\\%95ppehbqc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fulwnse\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4256918deadd1632d062a0b472fe306d5fb515143e21384017fcbcd7e249490a", + "regex": "(?i)^https?\\:\\/\\/hotclippeek\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "06c27054e32e4f7fac1ed0b9246f482a624e84f239dd02cd7547070883be1d14", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fcbb2a21bbee4f1c3476b918f050b67cc7469d89865da360cf3825b8a92bbdad", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5a9da8c9eccaae1853130775e6acc45b45e035328f2ede986fe2faf15d00d663", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3d1ceff61c7cefaf0c3bc7762347a0f40e66bb89321f8d22adc526e1d30ca556", + "regex": "(?i)^https?\\:\\/\\/cam\\-stephanie\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "547a33df16b9fe41da9c30289bfdf35b857f8f48ab60bedd6b8bac01c28441e2", + "regex": "(?i)^https?\\:\\/\\/04321c\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c579491236639a1bc147b3607f2db7558d24f8388d23b199cf0bd2dd551c65b3", + "regex": "(?i)^https?\\:\\/\\/amazon\\.qdouykthrm\\.com\\%E2\\%88\\%95eglov\\%E2\\%88\\%95vovjb\\%E2\\%88\\%95ybrseiir\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vxaozde\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "c919642f1e12ac11ac8a4dee717dade0b014f4db166b1e63ffe4ba16202d9059", + "regex": "(?i)^https?\\:\\/\\/recharges\\-fr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a8a966d5fe26ff1bdadd169a8a538890dff02822a27919b3e001103bda0162ac", + "regex": "(?i)^https?\\:\\/\\/fecdwfewfed\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6aa98acadc60b44432057b97e83e36ad0c2900b6a7c303993ed58c483ff6e149", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6239b710c4bd1570f974bc94035919b5d4ebcedf65119de967d229aa9e076162", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7091a8465ebd51f1f98876cd849204e81782e3af31fe9ff1ed314654dd831242", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "db5e670e4baabbc51e4a8531304bd819538e4d99263f5cad87ce7c663524e81f", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "becc3d52234b7033db6e38d0db36fc16697e7e989a3ea6ca87c2a1c409050574", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "337caff4166650d67d285d4852e4e1630688d6977c398487254cfe7d5b917fa5", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "46a77d88f9ade3943cf4b5331f02adcc71f61a5ae04d349d7882613ff7de0ba1", + "regex": "(?i)^https?\\:\\/\\/trendyclipss\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "acf469980edd636a9771edc3eba4d21f9d17579bf968ea0ab9d661f515fb5daf", + "regex": "(?i)^https?\\:\\/\\/camera\\-live\\-porno\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "140ef0dc96320d1ef8833011d47b9069a179caba5d7f8b35cf5a077a6b334edf", + "regex": "(?i)^https?\\:\\/\\/gfredghregfrewfgw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d3870cf281cdc0ebb3c92fb3b2876095609e3554533ab112c347a40ca9205985", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-porno\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f0ac988c05db9229a90fbc6d1c7d3193dfdc69473167169743e31643da24038d", + "regex": "(?i)^https?\\:\\/\\/cliptrendspark\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bca9770b4c82fd687e2bb9fcb94bb39f86971b5ff0bc459b555810068365b2bf", + "regex": "(?i)^https?\\:\\/\\/porn\\-live\\-direct\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "916ed6a7d50f2802c778020f537330a9bedab536af6a1a605cc6ec3fa0032f39", + "regex": "." + }, + { + "hash": "437e55cb1ed172f8bc6c4317a63b9f9ea1721824bd1450c7fdd7c09dde850fb8", + "regex": "(?i)^https?\\:\\/\\/deepaksayer\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "29e750ebc869f7fd677aa895228532c40db123fdb4a113038b9fb2f508a8f687", + "regex": "(?i)^https?\\:\\/\\/camera\\-live\\-porno\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2049603b93c6b52f7e36a0c4837db6ccef8f6c0b1de9d441a922976acd45088c", + "regex": "." + }, + { + "hash": "84668e9daadaa1af208d637b742592d1629b35ef4ab5f008a13740af12e167a6", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8d2394f19b522c2b0cf07388dd29b822cd9aec19f095b18527c3251942ddfb1c", + "regex": "(?i)^https?\\:\\/\\/nvkhdmad\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "701439bc991677767fe9acb020f3ac820331ce2bfac147095852150556e86d2c", + "regex": "." + }, + { + "hash": "cd97c24039d337832af70f5ea6d3a973f10e0c7dc7f6eff35bafb8bffc34a487", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "96e562f7a8219373faa14e10e0c2c56a572df5066a40c760ee7088b757d57e32", + "regex": "(?i)^https?\\:\\/\\/webcam\\-direct\\-porn\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "877ce9bb857275cf959d9f519004a6541bc7e33f87e9f5b580068202d361838f", + "regex": "(?i)^https?\\:\\/\\/en\\-direct\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6799a83db169bd8848c922e727184c3ce477c54d2df08869fc70463cd618940e", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b65c25ff4a28261beac95a8f9bc0268e45b4b8a82403e8d33fe85ff7f2ec2553", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "98259604780db484756c756870c1c53dc1190c1e9b37951ffd7615cfcb79f0d6", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomcontroledesnes\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "658dd1c0e3bb1b3f1eeb0c9f04447ab36304018e223678d9061554d131f2e0e5", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a43cf325a41801b0dbec30f4daca9d5c548d69c48588631209834d503f64a247", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f3c40ddfc56c233ce4c926770c12e664620a1b27409fadb5bf29928bdc0f4d15", + "regex": "(?i)^https?\\:\\/\\/onedlg87\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4c6abb52ca6427239e87b898f5296238b735008df05d365931f376c3221217a", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "69e66361d5c2fe16ce1af2e8b865003fbb0161f580ba7f06f5482489a30f9a65", + "regex": "(?i)^https?\\:\\/\\/nvkhdmad\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7be60096ac8b3795b6cb88f95c038c85a777b591e740a53b9fbb1dcafb76385c", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e2d458af917285ccda5dba86eaefe84ce30a19cda79cc49c5ccb16e8233f2a4e", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f08ea19b9f346e6891899a7fa57fc96ecd2d1e61e3f7dd6c62ef3926f019d5e4", + "regex": "(?i)^https?\\:\\/\\/en\\-direct\\-porno\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b4110e9f124546ec193fbc88a178bc67e74cd9a47ac4593b5781bdf99a2182dd", + "regex": "(?i)^https?\\:\\/\\/salope\\-web\\-cam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "67e6631119160a57a2aa3627d473cd8137ea25f640d80e173a8ec13ee4ff397e", + "regex": "(?i)^https?\\:\\/\\/trendyclipss\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "909a8b36340a82f5b819a67a0a580c03e10d5563bc75e38769625eb770528ed8", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9996b1871e9576f4c0727b48fdcdf83ce215fd9e7b897401998214527f7c291f", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "777cbed51a9a22dba4f4a4970b27866996842f09f32fa9329fd3feb337defcde", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmksw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5aecdb18fe0d632372a321c26c741acf0d760f3de6168df0d5d4149bf628cac3", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8ede9e9a8b372a8568b009a37397b5c0fb1b6c8409980e3d935f99c5b3e67baa", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ya77i9(?:\\?|$)" + }, + { + "hash": "95f3a4716b6305712b42904054e1d92610da8566eaba7a65068a6d87eb087f8c", + "regex": "(?i)^https?\\:\\/\\/buiokiowefuoifuweoiysdoiufwe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "df57415b18def9472039ace92f0a22bb6d116518436775a38f2371df93f5e0ed", + "regex": "(?i)^https?\\:\\/\\/trendyclipx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2c8eca223a7095b68f0150b07757346946949610ebddbbed2499673b03ad2a28", + "regex": "(?i)^https?\\:\\/\\/video\\-webcam\\-amateur\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b9f6a00b498641898b1e19ef2f8b0811be3de645b51a0a558786a2db099a7e60", + "regex": "(?i)^https?\\:\\/\\/2024\\-team\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "aad8c49932d41b6e4d2e7385c1e7cc3a2797501361a66c312a16c78892e82e23", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-webcam\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "95c515a818b8171b7eac7b1685577a2cd89a945a6c1c431feb825c16a1155bef", + "regex": "." + }, + { + "hash": "fa482530515fe6564919f0f428d0b9df91fb517cd4975ed4ef02864aa753a638", + "regex": "." + }, + { + "hash": "d0c631c100f24c81f9e2305aaf4e3adc96e1a0fff174e2e9351004bda6b5d1c7", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "15129266dce7a17e788ec23eadf38bb9ae6b47bcc8c3fc9761f1f5597b398074", + "regex": "(?i)^https?\\:\\/\\/onedlg87\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "88809b85b899485cf7088080a85fa86c83b32810fd9b1ee869265cc8e146c212", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "047b10708939e9f290bcd53782b50d091bdec45829539503d4fc985b1e0db4da", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9bbde7d9596389066800581c665dcdf23c6e6a12bb8c4994a19bda0645a6ee66", + "regex": "(?i)^https?\\:\\/\\/en\\-direct\\-porno\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9771b7fb9d291c10aeffd64c5fa955c85b973d1609fabdf9d0e22801cf0910df", + "regex": "(?i)^https?\\:\\/\\/fregregfewfdewfews\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a11da3dfc15596f56efa8abfeae8c820eab45e0bb88c3facf1e49911e57ba19f", + "regex": "(?i)^https?\\:\\/\\/nvkhdmad\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "475b6360ef3a9daedcd8c1c08dc8d869cc94fee556207781ca42339e9d9fa8b7", + "regex": "(?i)^https?\\:\\/\\/sgdvhdsdbs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1181c14153293179cca41a4cace414713b061a5c2b87abc2797b8d70692eea85", + "regex": "(?i)^https?\\:\\/\\/robuxcardsixkw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "24651f58503b9ee391c2b4f78fa4d4c21bc375d32471948441f1f40aa20ab9ca", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2569597532c7e9ed1a2bb1c0b1cd322dd6b0b3b410af48cac0dab6334d4bbcdc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1b51c1d58661fb9ee5c64f29ab4722026b0dc3540d3130b34ddbcbf2cc73bc51", + "regex": "(?i)^https?\\:\\/\\/fregregfewfdewfews\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "236071c048bb443a843efec1cd22f7127a39ef911afb4b7fbbc5c9cd23fabb1f", + "regex": "(?i)^https?\\:\\/\\/pute\\-webcam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4011ff6a5b43f24c9d4cbc9158d9868cc5747115a71f3b7286ec92bb7cbdab63", + "regex": "(?i)^https?\\:\\/\\/chocam\\-amandine\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e8fb35f737f6b3767005164ed5ed31463cfe6db541e05646c440940930404d11", + "regex": "(?i)^https?\\:\\/\\/sgdvhdsdbs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dc6a2d808a8625cd3ce935607356a4df363663d70e9800196124314bfaeb26f4", + "regex": "(?i)^https?\\:\\/\\/baiisskas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "feecc3722a2cbaac263527b39a7046940887a7c5164d7cb7042c977b86339122", + "regex": "(?i)^https?\\:\\/\\/trendyclipx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "02ffb214a1c0e63ee633dcb1ab2755b4cfa56e630f2b882c8f5e18c440e23027", + "regex": "(?i)^https?\\:\\/\\/pub\\-2eeb8e5e7b614fb3a5daa6981b6067aa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "12af5128208ada51135543e55169e806e0952a044528fd31b7be1ae8c007d50d", + "regex": "(?i)^https?\\:\\/\\/chocam\\-nathalie\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ea8b48e470fb8e7e1cc527590d4498aa1372e94bdae93505e74218f5db82335c", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e286bff878b5c1f72e553adb8c10270e05e6affdaee37910fc38ca6f1b4a30a2", + "regex": "(?i)^https?\\:\\/\\/chocam\\-sophie\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7abea90eb3fa25a5250a73ba3d62085e11df8d1b847627d5f7610afbed6edfef", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7b3ef83e87cf35d74f1b3c82c887a656d88a2d53dabcfdc4f55186abef9bef86", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "842ab1641c4b339dc63d8625c6672c351c8cdbd9d2801479fb8295bc7ee0500a", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8cd41beac0e3362306e2288c7115cc44f38c3f8740714747d65964512f67d924", + "regex": "(?i)^https?\\:\\/\\/cam\\-stephanie\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "235c8b474625b78f4c579b6a714f1f14414b88464a9774974bcc483c880f6041", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porno\\-gratuit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "296485ba5f62611695d373e48b8c4c4c8dcbeede9cfe38d6d55d6a5b1be3e114", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bd337f83f61234d9e70d553393062d5da54da67abce636bd7438e0589b58ef01", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "40ebbf81dc2087362b4ef4dab3b2a1757c600cff051e7ee198e542c121ffce27", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f68054ef7105d33340d35c61edc677ce2377a135be7c98a3d11e69bc02b17765", + "regex": "(?i)^https?\\:\\/\\/fcedsfcedsfed\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bf1bb94970320f4b15a16e2e7875ddb49c650c589bc86919048fd7bd8ac8d4fa", + "regex": "(?i)^https?\\:\\/\\/onedlg87\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c0387f94846fdb9791c5b486963f27c16154b1706d7f3f29451d06cf0430b691", + "regex": "." + }, + { + "hash": "260670152fd245066ada1c3b3c0edd2c0dba7c1c3175612ca798ba918855b8b0", + "regex": "(?i)^https?\\:\\/\\/webcam\\-direct\\-porn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9b5add58d3db1c842681e78a9c563f0cc0cf7097ad8420c731484d02a7fa16f8", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "71611cb1b11b6e18e1665e788f5e0391a14e634f1c51efee834d3a8b36143a88", + "regex": "(?i)^https?\\:\\/\\/pute\\-webcam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "38303e5ea183f7e04b15dd1a586d56cebed220b86a0189d393df5875f2c0d0d6", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bcfd5547cda33c22544203792985ff61c4b9f76ce3f05c9c8a4264cde9deca3d", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a3c8562f200a8e105e80671712e3b1f8b54665ab25164631362d6220dc47ba68", + "regex": "(?i)^https?\\:\\/\\/amazon\\.crhgatasv\\.com\\%E2\\%88\\%95dhpfxwmi\\%E2\\%88\\%95jwctx\\%E2\\%88\\%95wgmwbx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dudbgvphk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c0382d08231557c0732a35d334357e130ddbd5536835986354c0dfe53de7827c", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a5071f4f28a51926133f6a7032520d05c9a743d19fc47c2187fc8945e6bd183e", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "affaf902e35a6990da978a29a37d5874061c3d71ac469745eb4c9acbe59dec7c", + "regex": "(?i)^https?\\:\\/\\/chocam\\-amandine\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ab49d5a8d5f92f88b597d1107087b0be5b8b7c881291052e4daaa95cd942cb96", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fb66bf99659061c91474cf543591e081be2b02e83309697a269cd763e17577be", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-porno\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "399e87d8a8c88ce690c0f4152382b4d3499f7d90241f3dc5bee84ab05f77b695", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salope\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ba21a9f4ad390609c26b5462708c6777bb10d8e606dd87989fcd2f455f819030", + "regex": "(?i)^https?\\:\\/\\/baiisskas\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d5a6677d0de90afea3dc38dd0aec18908f0c6ec619067a840f377bd5c414a692", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1ae61d5776622b31b6cd6aa7a91afff9406b754a678840b455f4a56ed03d7d5e", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "377ee749b86ae2723ef68dc96a1164aafd3d213b62df0eb2eb432ad25a84fd6c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmksw\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7ea0fd32e5a91d8421d39cbc911c9c3ae25fc75aa89a7e825ba1793b2d363192", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.tiktok\\.com\\%2Flink\\%2Fv2\\%3Faid\\=1988\\%26lang\\=pl\\-PL\\%26scene\\=bio_url\\%26target\\=https\\%253A\\%252F\\%252Fwww\\.google\\.ru\\%252Furl\\%253Fq\\%253Dzlqgnnevjgjjpnwipcuxkjblbsgeibykigsqoxzuvmmfimft\\%2526rct\\%253Dajxdhozoatihybsxtcjnqqfhklwztbhxvvbqlqvbejfogklmkjunvihaxjdixkhtlnzbbdhh\\%2526sa\\%253Dt\\%2526url\\%253Damp\\%252Fs\\%252F\\%2570\\%2561\\%2578\\%2565\\%256F\\%256E\\%252E\\%2563\\%256F\\%256D\\%252F\\%2563\\%2567\\%2569\\%252D\\%2562\\%2569\\%256E\\%252F\\%252E\\%256A\\%2573\\%252FAv20e\\%252FaWt1c2lAYW5nbG9nb2xkYXNoYW50aS5jb20\\=[\\/\\\\]+1[\\/\\\\]+010001930c673d11\\-d0e6e218\\-8030\\-475f\\-af60\\-7f3e4ab539af\\-000000[\\/\\\\]+OuUw8fFxTfbSEYAcRXWlepJSS2Q\\=399(?:\\?|$)" + }, + { + "hash": "e660aeb2d9b04f30a27f89dea68396d2d35dd0c44abe40b903d71bf70b487d57", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "633f84d0967a6cb545cae26636cae4d0329403610c9547db2b652f1b8af2f503", + "regex": "(?i)^https?\\:\\/\\/camera\\-live\\-porno\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "315aa7d4e626db6a9c67b39ddc2afcfef7b5ed378fbd142b7c4a3b1fce5f2778", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "495aadc64cd7f873c5d2e550a319f879d64b6e7ac92c0f07982fe311ce7a3142", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f131647f03e2b762fc1ba15e271c54c1194c5491f3a7f38dea749b78c93a7014", + "regex": "(?i)^https?\\:\\/\\/webcam\\-direct\\-porn\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fc4cb95ed16717920d91d111ca4dfe9ed248fc43e1af8ab455e7b4569f1f6709", + "regex": "(?i)^https?\\:\\/\\/hotclippeek\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "46a7d86a01e47356fd0f48896623ee052671bfbd6d0486d0c620e4ff30259d20", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5d25b4a715c5167f3b57d8021a3a42bbbee02a12df39b58000591b0115e12830", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomcontroledesnes\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "00d622d098c985e35e5fe79ae661e991a2ac8fbbf5b4cfd9d40ccf9394d84341", + "regex": "(?i)^https?\\:\\/\\/pute\\-webcam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f8dd438f6fa7f580a241f1a47156c04a4ffa884552578921142dc6b7b0380c2d", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-webcam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4433e28c0ce0a6c401c5d316c5c19295573021b188c5883a7f87bea6b540a9f1", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a8fc53e16afafb6c531306cb7c27dcb731e5e17180ccd5075e2366ad4db5a90e", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0dbb2c947dda657e05a6735e557345faa525070f2aed1b4f08d371d3f14f5e95", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomcontroledesnes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d064b7b782a74c871a68073887ba05a91a3bbd4f9f1c41e90fd932fdf79bf582", + "regex": "(?i)^https?\\:\\/\\/att\\-yahoo\\-103491\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "524666bf2669788820b2c5b21cf99848d8ff7fcfbd0f5a7aad3eda12811f5b4e", + "regex": "(?i)^https?\\:\\/\\/en\\-direct\\-porno\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "be58786b75077ed54022055c775e072a60e8418cf8c254cd0008b11a17e5b137", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "629ab0991f47824ebff2c25a21ded464356ff8107281191e6ea234eb57f87b9f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.kboknfg\\.com\\%E2\\%88\\%95qhwxx\\%E2\\%88\\%95souvihfav\\%E2\\%88\\%95awfbn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hwrhvj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d83abbfe7a2b8b7117896d0507949281a52a90782c8bde348658ae2c64a3a45", + "regex": "(?i)^https?\\:\\/\\/amazon\\.gsale\\.com\\%E2\\%88\\%95tvhkzk\\%E2\\%88\\%95cmrybomrmo\\%E2\\%88\\%95bagrk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=frwvcwx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0cf0ca634bebcc95cf1869ee093bf3ec7d971978154dc63a7d68b05f8969f355", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0a940e52c12415c43e3c88616be305d596e52d82098498e7980276ed09ebca1c", + "regex": "(?i)^https?\\:\\/\\/recharges\\-fr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "88ba8353e77e2722e9238cfd7a52fdf52fa5219ad66859b574925586f440027b", + "regex": "(?i)^https?\\:\\/\\/salope\\-sur\\-webcam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "252723dda124c20e3d2c95d0be794653a14cbf83f514289765504bad3f324115", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6c55d0eb6741a102a51304d6aadbd297732ca8f226e9637d206e3069fbf037bf", + "regex": "(?i)^https?\\:\\/\\/onedlg87\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e4f7374ef322bf9f9e9923ac7c7feed4e0e7f6c6beaeec40e74ecdb914b0c308", + "regex": "(?i)^https?\\:\\/\\/trendyclipx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "22382f3b06a26f616ddd5895dd059cd4c9706a712cfbdddf30f96108959b67ab", + "regex": "(?i)^https?\\:\\/\\/mainit\\-na\\-video\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "419ae30eb2819e74f82dc6e6d315e75cbb7b0e53470be1db46474cb84023ec42", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "26bc6056bfbd3c43aed3afdfb7c8d61619a1e670b67b18df28217cdf32e0b4fd", + "regex": "(?i)^https?\\:\\/\\/recharges\\-fr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "471b4af5bb34413d9561fa249361afe3940713782157056d439b680c8502ce6a", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2c3db9e9d5cea7dce771347496facb8bced30616dad46170ebf017ff6d0d104a", + "regex": "(?i)^https?\\:\\/\\/deepaksayer\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1e554f82981eb9fd99a8920c775a5d3c6a4f36efccc98659f4f21a376cdbf7ab", + "regex": "." + }, + { + "hash": "081b85cd8848036ce6e5c06d455c2f32f02e41545426a368e76693605b4598c0", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxuna\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "459793fd080ece353cc7975c04d601b918dd3e69bf6ee726367d33a5f3636d3e", + "regex": "(?i)^https?\\:\\/\\/sgdvhdsdbs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b7ffe81682ec6e1ae2da863bcb4aff6e36399a921337718290091456c4fdce6d", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "032ae4e9d95eb24c37a27d4c2f656090e6438151eebbcc80f80f1afbaac004a4", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2f8fe2b3dca0fb2a541d661faaf121b743487e5b09e544703a1861ce619226bc", + "regex": "(?i)^https?\\:\\/\\/trendyclipss\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "97974904a16409734c76d946b328f427614a2ca1f815abf77a97402524b87823", + "regex": "(?i)^https?\\:\\/\\/cliptrendspark\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "befb48bb9bd12999bf124d7f662169d413ab669f8214f177fb8555a9e9c89c44", + "regex": "(?i)^https?\\:\\/\\/deepaksayer\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "467fa775d0cef13608cb20dbd0b5ffb754ddd91c1705ce31e368d46237ee2239", + "regex": "(?i)^https?\\:\\/\\/hotclippeek\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2395faef192a1942a5ec309c0bca9e0d1f3a835ba9392e0b423b5d6130de3f78", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "71df790b9cf9281ff6d50eeee368b7aad1f5460635d44f63ff64f5ce411fc808", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c8c315196b17a643d98299bf8e63132ac54dc8e7fbb3e75763cec7490ac3d108", + "regex": "(?i)^https?\\:\\/\\/trendyclipx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "648ab4c8434290e2301e67b790e3c03b7de5acfc4ea8bee0d05cec9fc91149b4", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salope\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "91965a5401009c488bebf2446b458dc1cc92b216b58c341f225c765e3666f9ee", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-porno\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8df023ca9b9c92a93eec07541846b8976cf6d191cc5db23c0d4e62c58cb18d0c", + "regex": "(?i)^https?\\:\\/\\/rectify\\-devschain\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "441341c9b4c6314de3db69b8db2774abd4ccf2e9e744cf97ef612e7658dc2898", + "regex": "(?i)^https?\\:\\/\\/en\\-direct\\-porno\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3e70d5baf39780ae749c8c95915c83eb739bbf56ff01c43de9b3b3df3d04dfce", + "regex": "(?i)^https?\\:\\/\\/nvkhdmad\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "826818ff4a28dba4748a9d3741992721008dd6bb5d2670f61847e4afd29137ea", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porn\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e491c70f9b6783b57c0b5cbcc28e9d176186413a1823665cf0a5e4f44278da4b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsixkw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "67f47355781e29ed471685e3578162380824f86beeece4decd2d24e2fb1ec94b", + "regex": "(?i)^https?\\:\\/\\/sgdvhdsdbs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3187672fa0270fcb1519b93b7c22e01562f3c65efda1ff629788fe7ae75bcf89", + "regex": "(?i)^https?\\:\\/\\/gfredghregfrewfgw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7a3a52ca731774a6f120f186bd0f421e07259ceee01cc0273976653388eb7832", + "regex": "(?i)^https?\\:\\/\\/www\\.txxhxefu\\.a2hosted\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "af07f5f3f9dc551b47f9721823bd3a584005cabf598d008fa10695bbfa209852", + "regex": "(?i)^https?\\:\\/\\/chocam\\-amandine\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "593b8751ec3298a2c82c617ed9f1b85a87d3eb172051489b0f1894cddd268e6d", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ddc59e4ca76327e96f7a4072af0dbf2d4e80b63175e08d35f97e4ac4fe570d2b", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8cc15ad0ad77a83a076be34b52abb9d4998dbccb07d0f6dd0f638346008f96a9", + "regex": "(?i)^https?\\:\\/\\/webcam\\-direct\\-porn\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dbd23d222d2f12beb63f0d7a12ad6979f13bbcb867bbb32a388029f2efd12f6c", + "regex": "(?i)^https?\\:\\/\\/amazon\\.udjdzilyt\\.com\\%E2\\%88\\%95gkcycdqayc\\%E2\\%88\\%95iqgcqsgzvd\\%E2\\%88\\%95glmejc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=mdtggk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9376884793b2ea5f6ce19b3eb5abc69405d6144a3644413e3f442cd7e65d0489", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salope\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "84054aeb729fd7b24a7044265c5c9023231b3c260447145b6138c279a9707754", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4080545a9eb94b36564dd19c91ac1aa73267515c2d353d87f5c0c3f7d67cc8a2", + "regex": "(?i)^https?\\:\\/\\/fcedsfcedsfed\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "424005d36b0db258ffe0510979376669dee5c14dba01bbf85e43d0bf50843c57", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "480a1d854658cb7b671bbcde1f4a63343d9c51f0dd49067f229463fe678d747d", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1409ef834a4fa57318d7862aa6671f0c00d8205e88e4204587fb4ce5d7c53207", + "regex": "." + }, + { + "hash": "cfc521242a71f792ee0b62ce385ba21363709dbdfe8793a900d2451873d23dbb", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salopes\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e01e4ca26c945ce1b4bc8cd8c631883b13a8de92e9b7bb8236fb4e7bf08a8dea", + "regex": "(?i)^https?\\:\\/\\/fcedsfcedsfed\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "be25fe5de054d06e1b530d0f9366351d6ef15aadf9480b645528f54297c6666a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salopes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "282ac088b7e6852849df984ccc3cb6e7e7943b47eaf5909e81dbb455a46f8508", + "regex": "(?i)^https?\\:\\/\\/onedlg87\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cb82d891724f98c2ac15ac0e0d8e18517cc2cc9e45fb63b46d9b3d3b418cb607", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "73a62801472c1dfc89a77af72ce8f39cd5ac47068d0473d68d89c97706bf3048", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f445617d4350e8826a3f5303caf4f0d53edc05c3c724d78bc67f364abe69ee7c", + "regex": "(?i)^https?\\:\\/\\/camera\\-live\\-porno\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cc5ac924ad2cd7754183d813df1bc36f6309b59a83af15335c7608e907b1bc8f", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-cam\\-gratuit\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "30e0d5a47e46bd646b8d896953255feff84b7b495dc33248fe3ab400038f8293", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c0d245ba5566d773b4f739537de22d00a32a1143b2d50ab131c1f792f756d364", + "regex": "(?i)^https?\\:\\/\\/fcedsfcedsfed\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0672a1343cb08f05d377f15e1d815ced179c8de6e65808b7e409080fd1f5047e", + "regex": "(?i)^https?\\:\\/\\/camera\\-live\\-porno\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "42fe1e71d9a884555017e0b1606ca55bf2e9cbe921f22611949beaa328f782d5", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "22c2642e93cb96a0bd00daff8eb6142c6d652b419062680edfc48e20cc54658e", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a124bdba59d0fd0aaee1c7c182216588e4a4961217a640c2a738bd10ce61e66b", + "regex": "(?i)^https?\\:\\/\\/cliptrendspark\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cb295c1d2ec6ccaad38b274c70223a3165b122dcc113679461af03ddedda4829", + "regex": "(?i)^https?\\:\\/\\/deepaksayer\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3641e46395417540dfc1bdeb7ad9999705f290795015503e4acc5dd667da7d35", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c01eb9e193fcd3fc1840acc5e105657e8c24283faf0e585362fcfd7bee584519", + "regex": "(?i)^https?\\:\\/\\/buiokiowefuoifuweoiysdoiufwe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2827e82f82d1e3bf1d6559060c69528234e7b4ca87910fc5842cb7b228eb3d0b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bf5797e34c899841ff7d1aff91a6b861b9362f60b8ed6e228a0669a870611158", + "regex": "(?i)^https?\\:\\/\\/salope\\-sur\\-webcam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "18de2644a899dc61dd2ee1775a8ca5fc271daeaf6753e14e3056de07a055e5a0", + "regex": "(?i)^https?\\:\\/\\/chocam\\-nathalie\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8d2f9c91c3fb43ac299f6fab4143b566982ceca481c2fbd2562273938fb2d01d", + "regex": "(?i)^https?\\:\\/\\/video\\-webcam\\-amateur\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1355197eeeb47de790fa332d4bc97cf0ce2be67a841db71b7e4ddb2fae965699", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e8336221e81b2c9ce7117d672e3b2987ab5c94dbe0e69acc4ac74d85f9a98d48", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1a294d3931761551265a10e20d81ba9f92187093af866c5c4514bc8e54814d5e", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "047c748c567d0f043112d50984f56767c926a3c8d66570cae2caf7c60bb3e156", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmksw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0d3f6dad7e4f5ed3445b462b24dda775edb93d49c1dccb80f06c9936ef308682", + "regex": "(?i)^https?\\:\\/\\/salope\\-sur\\-webcam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f8edf5afb488f887b3487d783ab9cc3726df7493a485eb3b16a99aaf14feca48", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxuna\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ee7b1afdcf29bee4e259bb66ab9e1de0143d32f505211071249efc57b1d211e0", + "regex": "." + }, + { + "hash": "1a70b0dad86be059339f985617656aeedf59870af2994fdd495d6c621f8e5a18", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "745435cc52e6dd60096af440d1d0d7d2aaf41ed8e169409a0a6acc525c42b1e2", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f84c16fabc7b54fe68f4275e2b499757aa417b81695b089b4eb19cfff9f5703c", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-porn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "58c384755f13b90ecc4ae4840637ee340102d4932828a51f4c249f76ff271ef1", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6b949cbf14b5da1fa6d3a42b56ef58775a2f6b754f9a44871752fc57dff4fe5f", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2515f9e57c19f86942cde6cd8691b2e71ae4173096635020aff23ce4cbb0510e", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-webcam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "171c65c528b224ecbf20ce185ad687aeba44d1b53d9cd5a64f3c65fbf39e0978", + "regex": "(?i)^https?\\:\\/\\/video\\-webcam\\-amateur\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ef4144db4695b9d92f935793babc5ef28e9af83813f1b1f9c979661f2d958e04", + "regex": "." + }, + { + "hash": "cadf84dcd94cecb82b93c99b3038527aa78a195d94a54feafef12ceafb4619a5", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "408878e194f9a25665bcf26613ae0ac0b96f25cbc27ee3075cf5eec0f99bf821", + "regex": "(?i)^https?\\:\\/\\/recharges\\-fr\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "38df8df1666f5ca6705f225cbb2aa96ebaa2754a7c3e7a60757391d337b70e6b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsixkw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8fc2261305620b98691c6e865cb6a237d546ef472d1f74a774ce52cbb0686d25", + "regex": "(?i)^https?\\:\\/\\/fecdwfewfed\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6195c9a37f553d41684690c62521c1165640016e4407edd28f5427c2a6200708", + "regex": "(?i)^https?\\:\\/\\/baiisskas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f5e271005cb518758a62e7a35ee7829618cbd7a70b473b2941bbabcdd74d5f45", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c0e0db6ecb2cf61cd961816a7dedf1bd2ebd3845885fd7dd74ab29bb0dcb6638", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-webcam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "425cd747a51055e95409da68c27c7d904c02970d9e77fc0f13af27b40ed7553d", + "regex": "(?i)^https?\\:\\/\\/porn\\-web\\-cam\\-live\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "910086cc0011af5855c2442efbd9af4b9f212a5be15a5cc3d84eaf7003d82841", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d0758cb275e18aa17f8985453c96f4e0918260ea3d4d69c7b4b01adc4c935717", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cc05c09e69470002d3daa52c4c4ae9b5d94879ad19b18d64e7be7c50fa6730db", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2330feac8075432cee39edf94cdc5a9822d99c8718e47df145250317fb1aec18", + "regex": "(?i)^https?\\:\\/\\/porn\\-web\\-cam\\-live\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "024ffc19bd3cb65a9f418b267f9436a2e00de432b480e351923d8fae306df012", + "regex": "(?i)^https?\\:\\/\\/chocam\\-amandine\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9a32765f9768ee2d17ab877557e4c692c3875c26713d4543f8dc11133e9ecff7", + "regex": "(?i)^https?\\:\\/\\/updnetcst\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2df3bdaa26ca28e66fa6e5979642fa7f26f2a229260d7633795b6a995052d489", + "regex": "(?i)^https?\\:\\/\\/en\\-direct\\-porno\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "27bc904afb03406f60333c62dd45627ac9d86d8ce712f20e8a96c95e437730dc", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "25de448678d3bc60461f718c2943de2d2f7182aeffa789fded3c9d1763b7fdb1", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "76ccbaaeebff1c5bb67e04266f304bc936019dc349014d88567b5e99f78d16fd", + "regex": "(?i)^https?\\:\\/\\/buiokiowefuoifuweoiysdoiufwe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a076d54c8596d78330488bb7847fdac56d9b90ee23909975da7d000cdd7a2312", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6dc263edd28dc8bb337bd9c8af426eecc635557382507357fc1123c009a0044a", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ae12ba3734d58923452e10a99ebec0e4a5d369610fec3ba61524bbebe7d7fa73", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "26850a59293cf7be6fb8768cac47f445475a6be721a8a711844469f879fbc03b", + "regex": "(?i)^https?\\:\\/\\/onedlg87\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a1a322fd5eb6b04a91e0cc92e1b9704fd67c97990e34f49659d1017d09e7670f", + "regex": "." + }, + { + "hash": "01566b9abb729d1769b458dc84aaed11f5d252cd0c8e3ebf30c08ad928c4e477", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "419682f890a06baea3397fa143fb509a04ecc53284f4f57b979c36cccfa5d802", + "regex": "(?i)^https?\\:\\/\\/updnetcst\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "910058ac49d7aac6e5e221edd1776d452bd61e85a14a9a214bbf517144a26386", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4ad736157e6334c4f6be46e7e5e3fbfda2a464e5cbedb5eda97d9e967809d1d1", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ce92565735fe67a34e4cf0afa12c45714e59dcab1c6a54dd6ac88e4899d2ae53", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-webcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aabca41fdb419d6a7a66dd2227703669cb5eb6047bdf399dda2801127be25c1b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmksw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "01e34e7f49f6b18fa891e53ffee2c574a6cd0f109b0514df7edf67205f161f32", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a5b0a61f42bd85048d1f6123e2b3e1bfa76c8ab810ac904ea622e069ad638f08", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porno\\-gratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "325ca63fd7beaa26e19fb506db5197552ee63cf7a69a46d621e6a3754027078a", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9f76a9d582857377a680907af561066da0f6ead62fd26089f1b0fab2ab6ddc31", + "regex": "(?i)^https?\\:\\/\\/cliptrendspark\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a10d17fba78fb63d4ae206872c9e8b04f5dc73ed4a39959560a30d155200ab69", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1b0cc79b65e11cdd3b35ffeab2c264b93764a0789d5914d7d884c763d3b1ec91", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "74a816ed051cbf02ff8f67ff84eb7e222d484de7ddc38505d0896ef3a9ec7a5e", + "regex": "." + }, + { + "hash": "548f2a2b6fb256c5b5ce0a79fd53be85ab1a134e6e2f6469536776be0f0e67c6", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cdf2cc2d5bdd154c368d216c05f30a07b79f0d5484b1ed52d9d8e0b3ab6fa7b1", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "dd474ceeadfc932940c4ed0a8d12de4d10a534730127e0b84ef06c5b581a9a3a", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2cc6bdc7234688c6fe72c91d427f1fb83ecb12be2aff837ec3831d4b5806351d", + "regex": "." + }, + { + "hash": "a31e81e4aca35bc428fe4b3e65f6fd2a54f1d20ec219a28c3c68c199122b854b", + "regex": "(?i)^https?\\:\\/\\/salope\\-web\\-cam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dd874e38ee5f67e63da8e01ddaef9a56a59f70a581c11461654e5ed7a2495014", + "regex": "." + }, + { + "hash": "3eaa5d5814e9841d6fc08e81907dc932f53267dc70f7cbf67f7750dade48b6fa", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxuna\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "af5fd0abafebbbbda9116e169a176e643cffc6f490af0b811cd169dfc5cd6e91", + "regex": "(?i)^https?\\:\\/\\/chocam\\-nathalie\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "72ea120afa01f5823b0286df4a45542489ec672d0c0a1622d2f2fb938d242d4f", + "regex": "(?i)^https?\\:\\/\\/fecdwfewfed\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "102e70e0e6ad88f946b3eb5d51c54ab513e3c31a8d0fbc97fc0275eff59f2cf5", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b81d6a93698564dff279928d0ee80c7bd5b2e761b98907062a549e9537766041", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "84778e6e24b87a45e424b25a729526251e5d2cd724f0d87f6c400a5bc637d148", + "regex": "(?i)^https?\\:\\/\\/robuxcardsixkw\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1ae16ad1ca1c47be54c5f387d1503bf805a70ff2246b7edcbfb50d02e6e3e975", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "10698f0a4ec53034b37b0adf9d227a49c6acf609591ab13dd9980259d8d575f6", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6a3a17e6a6d0e88f4c1b752ff7c4379d9ceae6b1a623c68e13a2e9b6e5b01121", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-cam\\-gratuit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bc64391b38d705ed985e586c9902771b7b7b9f6254e2d3624c7acd51c0d07eeb", + "regex": "(?i)^https?\\:\\/\\/gfredghregfrewfgw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5f44d35bef512472cee8443851b7af385ff3aa8e4c44bc76f5bd1445a03ba3c1", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a3b7c15612743291b0a1b9d73dc5468b2a3dfdeafd8ba860fdc97cf5ee1840b2", + "regex": "." + }, + { + "hash": "ff8208d3bbf31e5e802c22d9f2181e2c8c4a782105d08c1df101326d6a1aace5", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salopes\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4b19135d4950b14937e058d60653eb9107f72290e14896351f4ee136fda6b01f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8584962bc296eed59df59747ae0f4b477ae9f0f02631adf95096d992a96f9a46", + "regex": "(?i)^https?\\:\\/\\/recharges\\-fr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b7545039cdcd1fa3cf7c6cc39c798cb1d95ab38fbc99e0d27915cbdd88b4e236", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "512de1b0c47594897596fa4c37078618ad21f0165ee057668815e5b715633523", + "regex": "(?i)^https?\\:\\/\\/webcam\\-direct\\-porn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8ce1076401bf39dd14bfa9672753c55af41712961d710298971ef53a3a568079", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d742aedffe3c7325c128ac36790cfcc58cfe5f736130d0f4096d558c3cefa7e4", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b9d476291d5dd5dfe9039a5c1a89ad64717dd8fdf0e299749c42107624ecd932", + "regex": "(?i)^https?\\:\\/\\/robuxcardsixkw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "62425b4179a2c96666a3b5e9334d68e615f80689c21dbb13468bf64c3fa80e1d", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fda6049ab6ac8fcb292de44d5abb723cf68b07711bf3f6fed7c964243d608675", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "dfef280d8543a08a47c7f4f76fc4debc8ae920f9a8ba94df0b9fd2c331fc6aa2", + "regex": "(?i)^https?\\:\\/\\/robuxcardsixkw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d82670a264d5633bdb0e31f3994b4a4b06fe43ee718b4952cec038dc36e58b40", + "regex": "(?i)^https?\\:\\/\\/updnetcst\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fe3e152e8ef5853261cf921e05000ab64cdc6c2575b67ffee44b9f886396751c", + "regex": "(?i)^https?\\:\\/\\/baihsia\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1df6becae5147b074eeece6b706414f9352b9a0eb754eb1de463bceeaf6dc1e0", + "regex": "(?i)^https?\\:\\/\\/robloxfactorysimulator2codes\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cece0d7f381c118447c6c216d897dd1ef40bd4ea47cf61b6e89ba91c8c9a5eb", + "regex": "." + }, + { + "hash": "daba73d23029e72310dc0289a0dcea3391fb08ac55df9d6e2ef12a32de45c6e8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-porno\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "391e0025e8096608efe68ac5f6f533c2837da2a86cead2b16fe9c32d6b372a1f", + "regex": "(?i)^https?\\:\\/\\/pute\\-webcam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "618f98d5d7b03159513649e289f6d431df8dfae3f6de34aaa134fe11013f6aae", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2c2c646b61056dbf60a9b05197d14bea29b372e54c371adb2b2218f28843d0b2", + "regex": "(?i)^https?\\:\\/\\/video\\-webcam\\-amateur\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3a9541384723ca6a87dc7408eefb2ddde79f85d0ad887564dd2ecbfe50f5e2fa", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porno\\-gratuit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "134c4944b5e9ccbf14af4ca132150d13dda40ee73c59b2e64a3bcd07afa5c14b", + "regex": "(?i)^https?\\:\\/\\/nvkhdmad\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "80f782f558c1d62175ba841d0fea1eb9d05dc8704420a869631e52ce574411aa", + "regex": "(?i)^https?\\:\\/\\/edgfhgjjh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e345fed5856d193399e411b17da18ae2fefdfea32cb97c6ea2cecde48714be63", + "regex": "." + }, + { + "hash": "c549c3cceec95bdc14c1f5927f1b79d8abb03da8733099040cbd3480e7891d70", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "84d4184ba0cbfe358d851e5b63ae6c10ab22a96c4432d25a01b975df9b15cd7e", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxuna\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "48466b2784417f4612f8bc90a20a72a06c1f1b021bde2a1b812608126da6c667", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1924a2cdc23bdc8d041bd420e877f551fd6bdd2cd396d486f4241a0cae72b622", + "regex": "(?i)^https?\\:\\/\\/show\\-cams\\-porno\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2803fa522934e224a78e0ffd514a3e859d637cb6cbdefc9a939e5df3431583d2", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-cam\\-gratuit\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3a426694bd4e1419d7d13fd507a0657e807861160986bef9bc73f17619e7d20d", + "regex": "(?i)^https?\\:\\/\\/chocam\\-julienne\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "550a07f454e20289b3a7131c46bf6a1a1d066d50d546d725a075918b47853922", + "regex": "(?i)^https?\\:\\/\\/cam\\-stephanie\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "29f3e72506b1692d8c49300bd7cb350301081618469e159b6f474fc02f446e87", + "regex": "(?i)^https?\\:\\/\\/webcam\\-de\\-salope\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4ccb411d5cba4cdcd107a6664316310590347f91a9d0b01425af4b17e0629efe", + "regex": "(?i)^https?\\:\\/\\/pub\\-5425ae65dbce49a4ad2f05bc26ffda7a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1165bc432088b4a6c1a65adf6577037a4a9e1aa024d0f2f49f314ffe9bcf5c1e", + "regex": "." + }, + { + "hash": "f5edb2bbfc13636189043ab578018f9a7e54b5852af4ee5466afbc2aa73bcbe4", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "14b51d69c046059c68f6808961788db3e170906e3889d27ad67c01d17f19e502", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ccd23eba635ea22cc1a4ff2c7e902e7930f926abf7141f408cd25f69773fdabd", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "641fcbba7c29a69904b399b3b71764d36b153633e767550b155ef3e70a03d68e", + "regex": "(?i)^https?\\:\\/\\/fghfgdhgfhgfh77676\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "347e640f60bcc6722f3cfbcda73cafd7d7649ab9b5fcda0bc7b0d87bb4003e1f", + "regex": "." + }, + { + "hash": "2292da9b4490c959eccf4614b3c009b03947413cee1fd6901ea06b13dc7331db", + "regex": "(?i)^https?\\:\\/\\/recharges\\-fr\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "09a48b61bae60a5966efde0b5b376d1597f6b3d6875557c884db6722cf713d68", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4b276f23070d18c7d5f355f35bbe736d51ff50642d38e7997c91bd1f264e267a", + "regex": "(?i)^https?\\:\\/\\/hotclippeek\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "57a65b0102e9178e49bf04b0e4c97a5b4fa53c72433e68429f76aea93a164418", + "regex": "(?i)^https?\\:\\/\\/1sy\\.r13u7rdy\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a12a5707a14645672e3d3b742b61a75b2a19662228b2b2dafe3c1205eb393a7", + "regex": "(?i)^https?\\:\\/\\/fregregfewfdewfews\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e6dc9c202f69126fcdba68cbb243820d518a9d9faa618051191e69f274f70938", + "regex": "(?i)^https?\\:\\/\\/espaces\\-credit\\-agricole\\-ca\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1f911070d284797f414a5d7c223ac39202d86de1ca90d930c01b195085333856", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ad503084c65332661e26147cf90ea6baa19aad359c2a1aed6d5e24f73aca0141", + "regex": "(?i)^https?\\:\\/\\/salope\\-sur\\-webcam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c97fd435e12d172ff15b45115cc92934dd41d6fdb31f6d4663d0e02c44581955", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c17d201d2f5dff01c2f5889eb9f43e712557e0762551e91029c71a620229669f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c83fd9c45d47b97503067852b738b1b283e4cf24dfaed5162ef7668db7d0f673", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c20810339e491faa3d815bf755a6cfbe7b107c92694d2cfcd86e572dd6ce48d6", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ac83e4f73bf5be843800171a3df3058c16d2a81b3abbb34fc46a886fb7c2bf14", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fsrwpigo\\.com\\%E2\\%88\\%95iypuvrrxj\\%E2\\%88\\%95wpdsi\\%E2\\%88\\%95nvumzna\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=halgw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "549c17adf8c8c029ba05c419efd5b82bd6974fb386aab4a273070bdd2389accb", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-cam\\-gratuit\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1b458a90d5917f18f2c14bc027c4a6493cc83b43ca274fee1d3d3fc0be77e83d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsixkw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7178f321fe7c81886523dfca0c94e5fa2f395645eff8432e8091c5a2094bda08", + "regex": "(?i)^https?\\:\\/\\/amazon\\.lgipdhg\\.com\\%E2\\%88\\%95cyhdndcy\\%E2\\%88\\%95ridxnenh\\%E2\\%88\\%95wddnict\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=wotwocj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9540a147aafe2f6e9ca66869176e89e62782959e862fe9e90377518e00ef55ef", + "regex": "(?i)^https?\\:\\/\\/video\\-webcam\\-amateur\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6bf856502ae4eb0072e06d87caa023cc4541fef80db70ff70a351b133a69119a", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-webcam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0595371b8d32a734e2456bb29113aedb24685b03f770832b0feeff4e93c0be3c", + "regex": "." + }, + { + "hash": "ae530aab6b23bd20426bc3feb49b4850823a568735222fd1635e8fc887f4d836", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bf9342ed5f69a9b0b7c82f68bf6f18893bad831e10289e59443cc11adf9b858c", + "regex": "(?i)^https?\\:\\/\\/bajnjanasd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "03c9c560d5e2056760163f2015b6d5354c2ff8c14cdc5416807b1b1ff660a29a", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ea0e0fd1eff3d6b897a2948ae8a157bb3b379afbdcf59da1e72681c1bb4c5a89", + "regex": "(?i)^https?\\:\\/\\/hotnessclip\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ea203d70aab0d5330792f564018b1217d8f83a03619e837823865be5eeab334e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-porno\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "de5fa4587a7588d955326d152a51d6c4f8f2bc9f202d32ce71d0eb17b7a887b4", + "regex": "(?i)^https?\\:\\/\\/buiokiowefuoifuweoiysdoiufwe\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f3ebbc6c367cc50398e79e2805c0a42206e7006ffc0ad1fd45b639f33d605ec4", + "regex": "." + }, + { + "hash": "f131cd6db542910be287aebb3510b082219e202d46016cb1b91005d8a69ec717", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porno\\-gratuit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9ce926bddfab43448ad548631e5aad66d11a2bbcf6d528534915b5394a59b515", + "regex": "(?i)^https?\\:\\/\\/chocam\\-sophie\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ce9089ba124b0ef3cdf1fa20a86e372a9516744b17b24afd5ed56bd21c01ad17", + "regex": "." + }, + { + "hash": "f71c362fac3ee6e6e6710a45d754255a110cab9264fc27cc5a868f101709682d", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2b537a509a49819426dc0d5ad8700f22fab51cbef6714df7e758ca0ac8890bf0", + "regex": "(?i)^https?\\:\\/\\/hytrhrhtregtrege\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bb493bc1d6a904c26d573a81a14db49fc2effb780e1d730581569f2906e5907f", + "regex": "(?i)^https?\\:\\/\\/buiokiowefuoifuweoiysdoiufwe\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1c0e0ac30520bb98048773f59f71920c55fe1ef9688820acccb823f7797ac65b", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ed44d9219b544372de41d37a2f103742948440235c2becd5fe7510fcb4385ce7", + "regex": "(?i)^https?\\:\\/\\/amazon\\.xjvdycfxf\\.com\\%E2\\%88\\%95dnslxfcrs\\%E2\\%88\\%95vzmivvo\\%E2\\%88\\%95mhnhvveh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zrndf\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d10d0606dfd910889db886318323362c8519caa70c210bf7798a0acf586a06f", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b20df6b3cde7b21073b148f9ff41e122335833c962e2584e6e5a80754bb82810", + "regex": "(?i)^https?\\:\\/\\/trendyclipss\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ae96c306c9fdf03d58bae1599688685bdfeac08b3008f6c3fba637139dc5f9fd", + "regex": "(?i)^https?\\:\\/\\/sgdvhdsdbs\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "43636433ac02786df78e5bbd6a53a4460bb91b20483097fef7c88a1423e2164a", + "regex": "(?i)^https?\\:\\/\\/dgfgfgdgfdgfhfgfhf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "31a5f0fdc0505f6c422f3729f479b5b5c3ae5f19becb12e82baf2cd7ae2eceec", + "regex": "(?i)^https?\\:\\/\\/gfredghregfrewfgw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e2ce2384fb079f6ec520f611a81ab858627e3635f7fd92511391aa54ba7db6fe", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4d5c625bce4a689c7ac05f8b2704c50a294c1a20cd00d980da087f4694eaed00", + "regex": "(?i)^https?\\:\\/\\/thomasandfriendsthegreatdiscoveryr1\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "91066cc0edc308113085b30dfe95bc2d6d3ddf5132e14a7d6027d5fb64f351d6", + "regex": "(?i)^https?\\:\\/\\/fgrdgsbkjfewfew\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5eb43ce973c67e2d3f37a064090325f4b2f182744824cd8311731865d8e1fbd3", + "regex": "(?i)^https?\\:\\/\\/porn\\-cam\\-en\\-direct\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b7366d39c4aab5bc1183a212fc5be7f507a7b854bf9869f32e2d09e3e2380809", + "regex": "(?i)^https?\\:\\/\\/comojogarrobloxcomcontroledesnes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "effb4668cf21c265d23794d4ae7f8ad405b40c66c7387ba8d2572ce2c16391d7", + "regex": "(?i)^https?\\:\\/\\/robuxcardscfc\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "891fb6aaca25e76de73c970791c510c4bb1fd5acbdc5c9d8d6fac2653aefeb0c", + "regex": "(?i)^https?\\:\\/\\/trendyclipviral\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9761c4c3dac81c8db889edc61c6bfcbb1655fad99ae2deda739e64f33b819950", + "regex": "(?i)^https?\\:\\/\\/gtrdghtedgersgfer\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "347f9f2c3abb968a403006d923f9b182217a0235a1b00036176fe27073026599", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "800c95be8203ad27787eb6b180f5b06901baed11f54b44911d78a71d138e2725", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-porno\\-gratuit\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ebd71d6fce477fa19c27f09f2f89af7adcbd8d36424acdbf26d20f1d09c4c4b7", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-web\\-cam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "09c3c2ba3fc8b33aaf4ed262faa1f766e268eba5919fe0d0f0fa26a5a03bf1bd", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9f315f3233cb1831b73cf59ac4477c4f18b22c7d167bb5f38a5a2dcdea94091e", + "regex": "(?i)^https?\\:\\/\\/live\\-chaud\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "18f26fc443053f3497f7b0b270db4b3d9b75e56c9dab360a8b0213ecf4cc05f8", + "regex": "(?i)^https?\\:\\/\\/live\\-porn\\-webcam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c2887c66af326f3ac13393dafb7c1d7e3cf1403ab45bdf000a0331f3f737d090", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxmksw\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "72bc91a893d84ec377cb51c3f1406482ddeabeb5152e7ec370486242f64f17fe", + "regex": "(?i)^https?\\:\\/\\/free\\-9920\\-robux\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bb59b707a48453c3610ca204ab183957f6bb011fa68a19b28a4ca9fbf196ec81", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3bef51177812f0f40156e6c8bd4e05b09b72dac9104303d17a3d23848c95ff9e", + "regex": "(?i)^https?\\:\\/\\/cam\\-porno\\-gratuite\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "676eeb5c2da883908c5b8e834addc982297cf5bd3bf3297ac54ec2a802af1182", + "regex": "(?i)^https?\\:\\/\\/deepaksayer\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "26e64f1a2d64ddfcde63b2e588ffdf079d013a928a9b9c59f2b0ae1d0865e71d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nft(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5027ca4784230207de95bcc4380a0b1f425056cf2a23297f21274f766b84ff8e", + "regex": "(?i)^https?\\:\\/\\/pute\\-webcam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "67965f26030559f1f784fb3cb74b38e9bd23677a07a0dc8339a9eb271b7a13ad", + "regex": "(?i)^https?\\:\\/\\/recharges\\-fr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a032af71ccc9fefca57d20ac14fe3361a5490b9cf08ce6a1cead20b6e73a5ba0", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcyh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3902505a077c5c1406a5ef1851e81f965227a863a14dc36bcf0e7a8b1c354b9f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.twtwq\\.com\\%E2\\%88\\%95iwepir\\%E2\\%88\\%95aswss\\%E2\\%88\\%95cdfbjpxym\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=niret\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "53d9534f3be76eaa901a83e67e86fb11c63001529af0816f02a79b69eae02638", + "regex": "(?i)^https?\\:\\/\\/buiokiowefuoifuweoiysdoiufwe\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ea258ddd542e107f40e39ba5d1a3137690fb58d828986cbb09ebd8aac526e496", + "regex": "(?i)^https?\\:\\/\\/chocam\\-amandine\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d6f7e5d398530938200f4d42eda1253e3ff1de1ddba0c7b6ea4d19fec377ef05", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9760cde8943d3908c0487d91fe31d48548414c80b413971bda9d1025c89be1d1", + "regex": "(?i)^https?\\:\\/\\/hiden\\-porn\\-vid\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bdacf7d010db974e84a5f0aaa2bbbf94a4ca8fc37a2a6ab9fd10b73299341504", + "regex": "(?i)^https?\\:\\/\\/premiumrobloxwiki\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "638e59991f97b33ff53396823492063d74d168286522e2f69bdb541e4c466602", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "39b86601eb47a56171d1ebf571ac1639540bab6d053ed257f7c86b2df801219d", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4023ec94c407b0fa97026fd57f8b349f1f4bf80f75b44d9cba0da74cfa309ea6", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0f7324ae97f05cf00ced3a4a39110991a97e94199b4a385aedb0987e39d1b108", + "regex": "." + }, + { + "hash": "3c1db104187268e2ffb679b83f5799c079e803b42551ea7888d8da3c9d598800", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "317dbfc99c3b365b7de3af099839d79b255796a3df019a2e9c0f5ddefb69476d", + "regex": "." + }, + { + "hash": "05fa2a60e6eb269ffe5f69a3623bfe85ce1e04a14f47a3631b0b87a1cc123ed0", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "dbbe36421b10870a04e7652cfcddd54808bb011e6e9c36294ed6a3ad1ff902b9", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "56b3ca64e7943d5880474e10c1ae01e3677988bd4eac1d38580ce0f80750df0b", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2025271f5998e46c2cacc4bf54463a5f437e8aa8858c722d5c977ee73a933fa9", + "regex": "(?i)^https?\\:\\/\\/porn\\-lives\\-show\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0c0092f94ff565f94fcf3247f828a237334bde1e5b336d42942330b27c4180ab", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e5aff6d396a805e1a0534c0138ddbe9d1d2618eaee14354ece0eda0c5a96d19e", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ae26eb06d18a482087386c94de2f31d5b23b6c5a242132c357fc0660a6f8e101", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "51bc446ed6fb6f5d6cd435b0c875cc0358845b1bb7f39d7a283581a9ea31d3b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9975[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d4131f443fdd7f04d8bcf14899349a68c7644bce669914e3f75d3b1168084a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_content\\%3Dbuffercf3b2_utm_medium\\%3Dsocial_utm_source\\%3Dsnapchat\\.com_utm_term_utm_campaign\\%3D\\=zmajujn$" + }, + { + "hash": "a9411e04965ad1b0d141059afe37257d4588167a3a1c91cc34c4725b214d7f05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9063[\\/\\\\]+entry[\\/\\\\]+register80316(?:\\?|$)" + }, + { + "hash": "6c397036827bcdae24bf24dbfcb119132e8d7a9d99d9ef8ee052f0d391b6e5a7", + "regex": "(?i)^https?\\:\\/\\/maanuzinhadazs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4a7a4641388b199a2a29b8c2457b79b7c9ad693f748ea2710d67f4d6d1053d88", + "regex": "." + }, + { + "hash": "226bfe5d7b412dfb66a672c0cac6aeb34de5b5b010f28a368b285425fc651a91", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "14731171fcada9ce1ba420f2c0fe355abe8aebfcfa1a74105d86c9eb23cc4816", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "27522cbcb7bad613dee5ec4c4a9b4615d1bfc26e5a4c5633aea0b707735e6e11", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcfb4be72511849e720e92cd17c8f065d43f8ea03a34cae98e17d03f9cdd05", + "regex": "(?i)^https?\\:\\/\\/porn\\-lives\\-show\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9b68d73c34706fb26081f5bfc02d54850d509b1740ca23d430d8f94852e8448e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register48124(?:\\?|$)" + }, + { + "hash": "52a3a9f79e3b15d1b82737a160aaccfafc8c4eae61edf5b8060608434358eaa2", + "regex": "." + }, + { + "hash": "89275cbd2ec92ee7ad9332e00e92f341c44a2eb885688a86e14fd3942853ac2e", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cd749c9019ecfa51a3716d33084fc9ff80835ebb9ab263c531cbd649c79c30a8", + "regex": "(?i)^https?\\:\\/\\/pabjddklodof9\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e18796f211fc00eaec50a3740308b52f06f7c08aec0beb914a20697e9df462ac", + "regex": "(?i)^https?\\:\\/\\/porn\\-lives\\-show\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6c27b2f01b8c31a7b52c4478420802f53b4f867cae093c13adb8bd07a0e8130f", + "regex": "(?i)^https?\\:\\/\\/erosiadanzaeia9\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f4ee2a004842a671bf48e8bfef1843423b36c35b6b7dc905ae90f1b59163617c", + "regex": "(?i)^https?\\:\\/\\/hiden\\-porn\\-vid\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c86d8b47d5b2958e80a7374fb997d3252e73857f819c9338dee1bdfeadfa9f6f", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2090de9941e69a5d1956459b5f0682591109f60317c7460a0ea86b2d6cec0c2f", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d38717cdc0f5b9ee243d2651a8fc7d0c552c9dce8b8f82444d662759a0df7565", + "regex": "." + }, + { + "hash": "d57513994d532f88cc820a1e5f77e6f8ab0be08d6a2eb9a6dbc1eec4910d969b", + "regex": "." + }, + { + "hash": "55b65b9fb370596553b07a8d4a112b9ef16d8e30e0b12ac9f322f09fa625c38e", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "287f8c20afc6c698df88f3a4973a3da62ed2a6d552b6d4dbfab9bfd834aa8880", + "regex": "." + }, + { + "hash": "d5fb44cff40784d03e2a8f09197df3b409f501419a2e8ac977f0cd5656e42a6c", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8fee76771d19755a076d6fb66bc5a6e48c2f1242bea9764a22e740476c21d08a", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "67b98ed74090871c36119483e8dd307658d0857e36f63b55560d1fa2677b6549", + "regex": "(?i)^https?\\:\\/\\/pabjddklodof9\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "88097bd6c1404121328d38a8f710cb3f46de3f4cf69603ae6a51b55b08852a10", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f21cc96ffe3db30e0ee439cb1643829741f08fdcff283f191ace7a6a6c1efa27", + "regex": "(?i)^https?\\:\\/\\/www\\.0762idc\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "94b1f30eed8af339c458979932eef576523a1034ea269b547382d964b26b7415", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8962f1211cd8f7c5cb91c647065980d8096e0d34b7de78242585f540ee5ad695", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f26e3a7942af31c57d648f1f673a7b99edd8bbfaccca7ce8e75c19a8ce59c5ee", + "regex": "(?i)^https?\\:\\/\\/hotvideower\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "691e6674b1653e338b7256ccbaeb71ed022624276054fc173b20a39df9481d69", + "regex": "(?i)^https?\\:\\/\\/hiden\\-porn\\-vid\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "99b3bb1639a8140259bb9809637380fa341ff0d1a5914e3ad010706f53c49d0a", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5ad01125bf9c9b1328cbfa0d1722b677d78e6d616faaf25140a23693d4bfb9c7", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8bc594cadca4091388f56f7198c95835f20bd8e881a91d28f22e2e4f68caa79e", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "88e13ab32d21f6e08a05b60e2469670960bb50f9cb7b4eec2a35927324ccb7ed", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4b033bba5fef89c7b622380d8846e3e7c13208a94b27eafe75a3b16ceb38f77f", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "97ff98f16e57f0ae391854138257df18a2e63602247c0c5adf1f226ecfae8c25", + "regex": "." + }, + { + "hash": "8f2d6f5e08dbab694ce826cdf6c91796092c43949c80c619f52bfdc4e3733ffc", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "dc3f40c903d0dde296d40a0f38202d5615e9b8aaa5877260fa13d44477ccadf6", + "regex": "(?i)^https?\\:\\/\\/maanuzinhadazs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2101faa26bf9e835b42e176b5d4721603f6bc3fe94d073d273991197f2527d1d", + "regex": "(?i)^https?\\:\\/\\/pabjddklodof9\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c90efc89216d4feee3a56cfef4e669ba32b8db5156dc7d00459eb41e61176694", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0973c20a28d4280a83274ecf705b4b5671993b4b47a61ea1f9f8d3875e477dfe", + "regex": "(?i)^https?\\:\\/\\/hiden\\-porn\\-vid\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4e7244ed9cb694afcce822aa4c9aef2b6dbcd611b2a8db3a0171d364eb2b6b7a", + "regex": "." + }, + { + "hash": "5137f50390dbcd76e938aa92ff7b417f59d66199b6535be7446cb49c936c66c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+second\\.html(?:\\?|$)" + }, + { + "hash": "f8c63fc84c813c8a2a932a85157ce7aa8182ed270e7dc7f458a2ae8e2bfae69f", + "regex": "." + }, + { + "hash": "35e03adeb785495bf8b7d6be275592b0abbd95830c1b58567a2be662d7c755b8", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "624a5c7d123b5f029e5c1631e31a18d9bc6bf2cf9f84d96e8965de4f707bc8f5", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4055f04473f4dd5d3725dc10ff8a967e8e3db7c5036dc497e26077c47b3b728f", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "96583c1e1eb5171b7b6599b62b08db0881091878155219d613556b5bd8e650e7", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dfc6381e88aea7c876901e1a810cc1dbc7508e6cccf4dd022996eaf48fef15b8", + "regex": "." + }, + { + "hash": "23f2d86b858c41038ef5bcb78063d9eb436a47845f5ce92bf3d530410b7c5486", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "61c30530e14f41be2ea48489f0a3ccae320dd19ada992766bba77b201587a14e", + "regex": "(?i)^https?\\:\\/\\/porn\\-lives\\-show\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b8176c03a657491f2b727b7f2d8ddb126d888d9cfdcbe74c37303fc7960e061a", + "regex": "." + }, + { + "hash": "36e47344988ed2c3f75f8e991864c6608d0b0a04ba3d0ef368c6cfc76e3c6072", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cbe0ca3ff74bbca127dfa3fc2c791769f6b9d100431002427c7e4c457b17db3c", + "regex": "(?i)^https?\\:\\/\\/porn\\-lives\\-show\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "51bc446ed6fb6f5d6cd435b0c875cc0358845b1bb7f39d7a283581a9ea31d3b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9975[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "cf27f03eb05bbee7512965487f866781e40363dc00c0b90eeea3ee82d273a595", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b5c4eabe0c0764a443e9cf4f03a13a65672f09b8a1f32fa4a8b973b92a0c1ea7", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f08fa60d7e23602dc2395b0c174cb25c0688579abf0b4a83386dacd8643cd3b8", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6394ed7bd01b145a9d7d44222ba31c201868085e8b8d389fc135ac22085a823b", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "aa7f83d7189481146cb06c743b4b0d2cb595ab903dbdde7fb5db87c826d47e9d", + "regex": "." + }, + { + "hash": "c93d937164a594b200c0b1b06b2eaca700bb07ad830ef9bd0ca558ae66ba3aa9", + "regex": "(?i)^https?\\:\\/\\/pabjddklodof9\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6a17e429c2727f35efc4bd7e2f4852925617c061f538be81891f01a9c04fabad", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestflog\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2d8543d6316ddf61d5f90d9bb205075f86751644441c28c4eff5d9416f56e12f", + "regex": "." + }, + { + "hash": "fcc022c0f16f67972bcafd30c13b543770c325b6646a5f54145ee10dda6b9783", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b8a3591759332ca61c616640a474353dc641c56b73eae2ff82c021df9a68e68f", + "regex": "(?i)^https?\\:\\/\\/porn\\-lives\\-show\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5c5c2e7d2563818adfcafe1307d1c5131872466c14b302e0b008dde16993e716", + "regex": "(?i)^https?\\:\\/\\/hotvideower\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "81e4fdc9b4fced99e209006242de29c1b2ba15ca28c76e968d084f002ddec79b", + "regex": "(?i)^https?\\:\\/\\/hotvideower\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "547fba9d88b2482e683e575c5e1b6e9a99c70e2ee4f4b9666d5d28ed2af1d5f2", + "regex": "(?i)^https?\\:\\/\\/hiden\\-porn\\-vid\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8e3f6ce4fc24ee220a0a89ac524310ff3533330b678a882d9b76566bf2fbeefb", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "268d39209197daa6b51694064cb6a3a6b56b6696ff32ac1b7a5cdcbff190ff78", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f1a33f1d007cecb6bea05555666ed7544074da3f83f47d3d7f98aaaebe74e7d1", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f72f4fe9bb2ebdd539ae272f553ec94b4cca76d7fb1576f175321a628b3cc61c", + "regex": "(?i)^https?\\:\\/\\/pabjddklodof9\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a3a8cfb2ed65d340ad9fc8038d7f3619d53d73b0f1b9055a369280687a3d56c6", + "regex": "(?i)^https?\\:\\/\\/pub\\-b1e7a759dee34445a12d981644916dc8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "72506be3c66fe7189909df2a6f59bfe8c96b1a93b5d3b73b08c1a21a6f66a05c", + "regex": "(?i)^https?\\:\\/\\/stalwart\\-paletas\\-800b0b\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "ffef9901b5d22bffc536b42df8fd405c981efef0b6e3b4f95276e2fdd64194a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register98548(?:\\?|$)" + }, + { + "hash": "d35d5c87ed1847098eb1c0e32aad25ddbef17fd6ef14c989517f74748b5917cd", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d59fc3db66c825c59d91ee732dc74b50736cd4352b890cc6a59502bba6096e37", + "regex": "." + }, + { + "hash": "4fbf96bcd6d063e363ad85f316bedf4509de012bcb014af1542fda384176c0e2", + "regex": "(?i)^https?\\:\\/\\/galaxybetarobloxhack\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7721fc37dccdacc8df4f19395f46b81890f5ad9a37019b5c27bab4388264467c", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "54245dc5db8223ae8522f134cab53b846d8908be38bf69a80083088fe7992de0", + "regex": "(?i)^https?\\:\\/\\/365collegeupdate\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7547b0a0b4338c8b1f58b040b7c4bc407c66720c1928c6cd2e2901e7c7b19f1c", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3696b70c90c559613b563326fbaa967ca0d07f407f1978571211b1220a631bae", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a109dae2b4c054d69d61d86ad2d55408dac7bdec288dbde4d60eb5e4e910694a", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-direct\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fc4c42912c6d8ea40014e291e7adad7698ec242ff54361427abc040e68bc2604", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestflog\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fde02decfaec9a28c8d93f785a602880244581aba11df5fa3d62222b0700e598", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e901ca434389ca72ad0a936e57804ba271260eb8bbc065126824a54608d63b1c", + "regex": "." + }, + { + "hash": "a3253639625baf9e48bab0decf6cee234b8e9722c6c87af5acff3fdba096abaa", + "regex": "(?i)^https?\\:\\/\\/maanuzinhadazs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0f30aa4535ae8fe5015eaf3992feffce6418ceaa3af165b22c82c4e370df1c06", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "05c5d1c81697185e76f766f0b3d2f43de83eec4a93000462c0ac896caf60e3c4", + "regex": "." + }, + { + "hash": "39295dbb049cb6fad1d1bfabc3a073440b8c552d128c767dd78a218a1bd3144a", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c88eada6b70b5c882f3c94150385100a2444d4d9678713d2f2938381b3ba385f", + "regex": "." + }, + { + "hash": "332b6b8220d5c9274dbf639247c8c5eed15d72d72dff639071fc68750d20443c", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "51a8f519972097c9f89f63af7d7cc471aab82111e43b52297290ed52e8376e13", + "regex": "." + }, + { + "hash": "725953308dd00ec2aaa31b039c4330b252b88f5fa157f59b60ff6043b3ae8b64", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "550fcd5f31651c4a42a090ac1752eaea1d2651f2b6ebb2fb45ca8b2dbdfabeb7", + "regex": "(?i)^https?\\:\\/\\/hotvideower\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0641eabae2742492c1041c280768c98aa74433789e6f8fc186d02d57ac2ba066", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a862fdaddcd51ed302a6f7f0c1c8233357910b18fb59e51ebc8539a825fde8b4", + "regex": "." + }, + { + "hash": "c9616b056a213b87c5a1b4bbfc96ca10f73866914840f467a82893932e7f8fc1", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f10e72bd8920f3d470e21d498e6e3197bc6ce261e546544e97461767ab1438cf", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6f5e1869c451bc6d6d6328fbba5dd9a63667b9bb6c40b8dd36975c2e9fd39a1f", + "regex": "." + }, + { + "hash": "b55d800049e326e4666916ce66ffe33186447c2c007036863d359ed7c524031a", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6eba4cdefb0fcba508cbbb2f07ac84a267447f18a4065c9a4e3962da55469be9", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcams\\-live\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e37ff8b0688b56800f788dbfa12ccf55ea2cbf863166799b5758a1671822f47f", + "regex": "." + }, + { + "hash": "209e83884ee60aa453f3b916fa2cd39ed608ac71bea052155e0688b4f1aebf00", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9489e30060f5c96c06a3d9fe6d67928dce0299b1f4e80e5be536c7d9af16049a", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ffa935491061bb8431eeb0fa11066b8dd66ebe18ed4c42d45f1bd5ecdaf41636", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b69b9aef82d9eaef9e5d69669bd9c548590d22d991948fd43faa925763ed6a5f", + "regex": "." + }, + { + "hash": "28634265a021f5059f031ff2707c107b617071f6e91fb44ebea24e216409b9ab", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "99b3bbe2552b098e07c6d9ce4c8356848f19cc7143e6b5a832e51280be2f875d", + "regex": "." + }, + { + "hash": "ab48300b4d4cea6e301fa9af8c4d417b4d2e92408251164a668a4873b0a492cf", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "94b6dca2059d1df4d2713d31f0f84d74b6191253c186d3818e5d504b9a5197ed", + "regex": "." + }, + { + "hash": "b701a313165e459c1e7683776fd52185ab205222cf8500b16f912713bc6f1073", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e4b6206eb4562d448ff75d7fda69188b1ad018c23af42f130bd300086739a852", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bd14e76cc0a6b061270894d0b23fc687f1e3eaab5559d030bef3e5864c252a0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8003[\\/\\\\]+entry[\\/\\\\]+register18097(?:\\?|$)" + }, + { + "hash": "38b0c91f88e204d473c5d3fae079bbb1c926a13e309cc32718b3d100aa4ab060", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ffa9a3115f6d8a2d061f8c689fd56d2d383882a383b6ff89d5888d2acc45a35c", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "392094ac058b6b1aaeddae3f39af6cfeb3478936d261a065ef10be691cd6278e", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "eee42466b709e4f1ad18164c27a36d73fae4941d29177e29419b0f773983ea8d", + "regex": "(?i)^https?\\:\\/\\/porno\\-lives\\-show\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "807aa585ef142e172ea3cf30f69e56225efe9946bed3d1194a888cfd2426dd58", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestcomtempt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c8e88af5dd5cbcc0a16bf7af1b18663599efdc11d9f45f9cb226e28d462ca085", + "regex": "(?i)^https?\\:\\/\\/hotvideower\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "db1b0e114f14c1c19539cff982ca160cd43487d4adcab0ae3bfb82a0c589ade9", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e58b1a41a28bfa7b183b6e41ae476f10014e7bf24ddff348653d6d9f6dead128", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f945d76ac9c59efd25de9a7c99fbaaf8296e5a6d51b47c31f506bdd123d4adcd", + "regex": "(?i)^https?\\:\\/\\/hotvideower\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b3ada43f5600fa8fef265d00dabb36505fea4cc6ccb1da49e19ed12d8250412f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestflog\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2606efd04d29c554c3ad6f3be92f7856ee538db569bade9cd3f864317fae1652", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "79ee4d0aada38e641d85c0a248cb0e49971339cd8729d625028e8c8965ae0145", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b669381048a44505366149836d195ce458bd3538e1a573346e4424906c14338f", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-direct\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "10b1812d4f695423a5fc695eb095d989e489f452d305b8fddd60c95a6d11671b", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "35f380b92b0301468c21b52aef53376d77c44c79f61af6696d94111637595c49", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vufoirsgf\\.com\\%E2\\%88\\%95lfrmqnrp\\%E2\\%88\\%95xjfwkazr\\%E2\\%88\\%95bqvronj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xrcajlnej\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9f8a2da5f21c64c5c1a1883809ea32aef645e5bda0fe200d2bdb99430140007b", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a1b39f97179e57c141561a798b74bef249bdfa65bc5243bb46a479514acf1872", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "59a74c51c9609db5756b99f419390b77a62d5b6a921708060b0e3fd6e225111f", + "regex": "(?i)^https?\\:\\/\\/pub\\-634fce5b1a66445b928443655494606e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "961d1d77681bb445508302ff8828633be4046b68e16e853502f3395b3f8c3ab6", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "314ab8c989b913dfba51ca4c650b99cf63aa48833bd012646fb273e86aec371a", + "regex": "(?i)^https?\\:\\/\\/porno\\-lives\\-show\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b3197daffe19bf1d60ce3420d9ddced9192bcaa329d22767d4da602aa6fc5318", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7fe9b3bd160a6d4b666bb3e1482e38b3daf85de2ae90ebeec5c65b2845d3a2f1", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4d4470d2bddb9461413d964be1167f3a76d5dcf4c27f9e292f9e4155c11e6e74", + "regex": "(?i)^https?\\:\\/\\/amazon\\.boimlmexi\\.com\\%E2\\%88\\%95esegmixqs\\%E2\\%88\\%95zbkagg\\%E2\\%88\\%95dpkznb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zjpbc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c08fd643f62207180c6326fc9cbd4715a557149e0d4e589fa588ccce07f79803", + "regex": "(?i)^https?\\:\\/\\/pabjddklodof9\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "be26a99329a74d5dbe7aa9114e92b1979b6e63a79d1f08f09e9d8edfbf0d5c32", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "56a8f2beb362a84389d4a36fb1de3c0fdc42f05c7f854a2999378d693c51035d", + "regex": "." + }, + { + "hash": "4bb21877b0103bec07bd9823471d8d5b528a2ed2f75558bf02b41f96da237acc", + "regex": "(?i)^https?\\:\\/\\/porn\\-lives\\-show\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "08a8081ab438a75d704e3850d6ea3feada7bda24b46e6122f3f30f88f181a541", + "regex": "." + }, + { + "hash": "a9ad25aae539e2a54a2ab8b20a884dd18b2b25dc4e315c4e710403f487cc888c", + "regex": "." + }, + { + "hash": "aede32c06ed97fc231c051c85a9ceb92927af264889fed44001054835ece9eec", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestflog\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8e5de06b0edec8689a502fa5cbc655217b57a1ffab1767c262ab326a1ff5ded8", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestflog\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d76afd8271aa185073f028cfd912df553725ddbcc18e62bae190e06abc9f0b65", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "faa21c7b25f36e67ab07a5c821a4ad684c5bf3cbecda4e01e65da48be10dde11", + "regex": "(?i)^https?\\:\\/\\/gjokjiuhfihji\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb5875923fb0c84254b344109c700da923012ea88a34b0aa024e54ca6296310e", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestcomtempt\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a78c54259fd2cc57b4a2bbcda1e91458a3adb0dae13dd7c2af8ecbeb0f3dba24", + "regex": "(?i)^https?\\:\\/\\/pub\\-7a92402da9b54e1ca7d78d1535576344\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "048719a29dababd93cbfca68b9f5903becaaca8af480614732eb3397da617ad3", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "520e4ef64a5d8523452e262891ce094be0318423124b16f11b8cb8a06f37cff6", + "regex": "." + }, + { + "hash": "eae7981b9bd051172170235e538fa318caca65e5fbf5bdfbc8c2989221e98ec1", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-direct\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fd2e00eb35405e1ff0733efd72c988b587defb383d639707a8a342fb77e6ccae", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ad1b2159d170861377f7a1a1e05316014551f260ca300f487cff87c1b0452d45", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zhhdwwldea\\.com\\%E2\\%88\\%95vukfjlayjt\\%E2\\%88\\%95cmgfccd\\%E2\\%88\\%95etvbfne\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hqrrvptfqe\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9b68d73c34706fb26081f5bfc02d54850d509b1740ca23d430d8f94852e8448e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register69562(?:\\?|$)" + }, + { + "hash": "d35d8d31e1d1d9039891c372f5a791f75c39c3c705e66a136117b3a6bc4854a2", + "regex": "(?i)^https?\\:\\/\\/porn\\-lives\\-show\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "39303cd428d3766a749d823e5213cde59826c10c5b50b9ae8f1e334953850c4d", + "regex": "(?i)^https?\\:\\/\\/hiden\\-porn\\-vid\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3f0a0995088eee330b085c5c44eb86d04c46f3aaa046f81c6cc2cc5b3caf38de", + "regex": "." + }, + { + "hash": "8d9a7607894e55d7279e68b093d9dc96a899a6a2f2196f3b42415debdb548246", + "regex": "(?i)^https?\\:\\/\\/42426138\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "deda83b64777786b9ee769d07ffbc63a1328d64da787b2f608bc50e65c203577", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2f1c22b619ccd581239628c79e6d11a16a61ea5b2d9b31873c2efb635ea68aab", + "regex": "." + }, + { + "hash": "b109a58bee43da3bdb9e8eb7af2bb983ccdb7ce7e4688b9b09b94cacc88cee70", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "24fe2cde0982b02a91f902ebc507dd247e3202e7d6c491ff460f8db7cc69fca3", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e3323027c384fc3dd1b6fe71466ce92ed79ec7fef42c27371cc0bc2107979cc0", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "63cb6a765608de5e3a697f49d136ebbbb8b7f50a37d8f49ff602e34f312c0223", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestflog\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4fbf6f2a5348c17170ad20631ddb7534fb819158cf28c64ef22ec868b6b606f4", + "regex": "." + }, + { + "hash": "7ca6ebfeeede62ea51897b8b2c311458ae70c7983f0a847ca20499b69d6d98e8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.qxhxya\\.com\\%E2\\%88\\%95iohqfuvejr\\%E2\\%88\\%95kjnyz\\%E2\\%88\\%95tjdcmagv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=grtmzzhanf\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3fc090aa61a3fda9a41121e1852e8059eb6d87f1e239f77b39f4c87c9c65c8dc", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "402b5ca280ea689a082c547a5dad0b316ffa64dcc1c7694bf05f4135a3738162", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcams\\-live\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "29485e9c974e8d7b66a0fc2694a8d7b11af27b70aeb7e102b484d7f26696ae6e", + "regex": "." + }, + { + "hash": "9d87f116566714201bb15853cb593ffcafe6680568a69ec33e5df6dfec70da64", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "51e9cc8727cc85d8ecd35e3979d6e73add4e143f6c325ab04ed3dd2943121268", + "regex": "." + }, + { + "hash": "965fbd25f81d022302a1074739677beeb6ed8a7cf25c54c9e148883b047cd539", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4e81be9656f39b0ed8ee14c516fdbf1483ff6f83e93c04b48c38c9e043a2660a", + "regex": "(?i)^https?\\:\\/\\/gbdrfgersft3e\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c7e4809760a375157d7cd1292fc4e6d43c7de296e829562c3383777093db181", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ff1c689d57a370eb87805ff00308c4e6f0a908ebbf11f393c88cfe25035efe34", + "regex": "." + }, + { + "hash": "5f25198a9d614d529bc515174608a0385a59b90141a4ac3466540c12bdace705", + "regex": "." + }, + { + "hash": "be77b7c94b086a64d9fb33ac6454ce1c6651616f30e2ac31696bf19fcfef7103", + "regex": "." + }, + { + "hash": "87bb04bea0b8e6daf2fbaa4fa9c8916d3c07fbad192e802d1b107a966436b453", + "regex": "(?i)^https?\\:\\/\\/www\\.josh\\.wordpress\\.4\\-227\\-189\\-111\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "30c75f1c6a6dc7237e54aa44d1df32118da0115f3cf14c29e4d1537163229d86", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "eda78d3d616eea2f49a3a0df29f02bed312c31ba058152010aceb9a57d63317a", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcams\\-live\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9a0190aab3d8dda0945e07f19820845c32f417936955edefd733d0b9e7f3e327", + "regex": "(?i)^https?\\:\\/\\/erosiadanzaeia9\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "22b945f945f370aa98920591441194bf049808a53eab5e94b86e9da92175ea3b", + "regex": "." + }, + { + "hash": "79793b7b9157cb194b17cf37ef43197d10926861fa855adbdf60b18a99bb2cc3", + "regex": "." + }, + { + "hash": "92ceddd530c0b9dfe3084e181ac123fd4e129f87f855adc456e1f1908b89fee2", + "regex": "(?i)^https?\\:\\/\\/robloxswimmingsimulatorhack\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9886aa93357caf0dd00216f76019c1cc2ef51e0e724f2cd46848f53191229b3", + "regex": "." + }, + { + "hash": "a2429731297a9cd94071ba9cd2594ad228d400fb7987ed96f70d576de162bb15", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7ea0fd32e5a91d8421d39cbc911c9c3ae25fc75aa89a7e825ba1793b2d363192", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.tiktok\\.com\\%2Flink\\%2Fv2\\%3Faid\\=1988\\%26lang\\=pl\\-PL\\%26scene\\=bio_url\\%26target\\=https\\%253A\\%252F\\%252Fwww\\.google\\.ru\\%252Furl\\%253Fq\\%253Dzlqgnnevjgjjpnwipcuxkjblbsgeibykigsqoxzuvmmfimft\\%2526rct\\%253Dajxdhozoatihybsxtcjnqqfhklwztbhxvvbqlqvbejfogklmkjunvihaxjdixkhtlnzbbdhh\\%2526sa\\%253Dt\\%2526url\\%253Damp\\%252Fs\\%252F\\%2570\\%2561\\%2578\\%2565\\%256F\\%256E\\%252E\\%2563\\%256F\\%256D\\%252F\\%2563\\%2567\\%2569\\%252D\\%2562\\%2569\\%256E\\%252F\\%252E\\%256A\\%2573\\%252FSrzRH\\%252FbmFzaXIuc2hlaWtoQGNodWJiLmNvbS5zYQ\\=\\=[\\/\\\\]+1[\\/\\\\]+010001930c5ea30a\\-e9dd2d80\\-5895\\-455f\\-87e5\\-e73651caaad1\\-000000[\\/\\\\]+lEMomdYrXy_rrf5AkzHULSHSuf4\\=399(?:\\?|$)" + }, + { + "hash": "ca8b72ae2b596dbf97f7b35f62a737e7c14c5d1b23db7d0b4a14c97a34fdf264", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "24bfaf588cdef71aeb0162ded2fac0036ab99898402b8a7a83735fc809b8d4c1", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "19ee75a62cb037b677e3d4c6930a3cb075e4dfd2794a1d0ef846c38dc49a76c1", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "09a047dd0583e76ed09b1b8a8a6d910e9db046b90a101d49cdddc6e0aaeefab0", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a9c7ee090500c11a506c33d85ffe22da9810f748ecedeba4788c6db5b65932f5", + "regex": "." + }, + { + "hash": "1a7c32cacc256347d414cb16541e0befb67b8bf3febfd3c02ed97a8b66f55286", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9c752ff0dc22c39abf9d524f71c0d84ceaca60657045a88f09fe48759ec0e71e", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3cddbc502a0c3d479153e1a9bb0b858b07a4b9bff8b2910bcab4c4131ee37d16", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8e222634d8d01c1ad6a06354c8f8cdc2db073b3b9d76d9a648bf731d29fa33a4", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fed4012111a10a5c759ea0dc98701fa8fa79cd07d6fab58795bc764001d4f1b0", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ec63138d2fb7c7f7a09ca837eeab81e99050fab93f00fe19ccd626fbf1ee2e77", + "regex": "(?i)^https?\\:\\/\\/pub\\-c83e6c94c61249bf8667914f85590f97\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3ba0abcd9a0b9f647d6d9bf9ad416dce583725912066b8a08912042730fb0787", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4a1b3cbef65e682c2d203868105ebcf912e8278d557afad1e4984918766ccaaf", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-direct\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cba6a53d640de205f47254a68f7aa64a594fc37d43d4cc2f414a625d885013f5", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2d12fadbfa53f824ca75f16f068683b62f560da30452af0dc4d6a6a7e9732977", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "518d7aa4fc36aabbb50731d417c5f377b661b7e4e92c40e524434ed1ce0939a6", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0db0bc58fab8507c3aa89cc9d2695ae1fbeaf02eecc30117bcdcec4c877ed3a4", + "regex": "(?i)^https?\\:\\/\\/pabjddklodof9\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "54d473a9a988c187833fb4cabbc41e2ef0ebfd30fbac64b0204a44e746ed13ed", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-direct\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6f49e54b6516d587a8a847808e7d9b2823917d49c65749c0bbf2eacaedbd901f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestflog\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0349e089f55dcc6a2b925aa01febf173fe108ee755e2ebafbb27c4841417db80", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7ce330f5a85d1dff448ace1033f78c30674519642a3ee2840e21f1be34917d54", + "regex": "." + }, + { + "hash": "a63bbca17ef4b20aaf4f34e1e3c1a4a4821bfa8469743691950d0bc758d63a83", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6dc440344297d6f5a23a4dc1f69ec716faac497f3ea12ca90b9c787aafa808a", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fb66fd53ed0e1dd57c4bfb3d777d647746e686231dcf65046029c00cdd3d8902", + "regex": "." + }, + { + "hash": "354a6184b06f728e13ab91f585f1892760d3aaedc7353584d3e4e771d42d67a3", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ca8e1c3587c31dee0348741c094ee29f0b3f06f69a86b3539fc28b91c090b972", + "regex": "." + }, + { + "hash": "332fb9537f5b8819a31364f822160a5f373a1289e66bb94eb6a722748d18529b", + "regex": "(?i)^https?\\:\\/\\/join\\-messenenger\\-room03\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cfc5f477f04780d6ba2f170cbdea832c41647da7bc6e2d90e7bf6eefe3ceea97", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestcomtempt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3ee7b7c65fc9208670dc72124dda4bedbdd7cc2894a648d9c6878801f753ae34", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b90c87a683d2f47b25e4bf83b6a79f93d5e829817b3394e74aceec6bbcd9586d", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "beffa415700272008d2e74f3f72135dae76dad0e1316d7f92915c31e4ba87f45", + "regex": "." + }, + { + "hash": "8aa42598736a440a1b7f914d17a73068919d5597423fbf62ca9e1e0a7e3fa61c", + "regex": "(?i)^https?\\:\\/\\/maanuzinhadazs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "efecdee8c8f1fcabc46e4d4d45cefdfdc8a53c42525f34efc2187da143eb616c", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3cf1ca3ae736a4281c2f799bb47f2c6f769c8f2a92966a840428e62c115073db", + "regex": "(?i)^https?\\:\\/\\/porno\\-lives\\-show\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2726df13046b9bd45fc54037307e4b14b4311338fe26afab3f2f2d29494626b1", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5c507fc5b786aa54b37756f5219ac1a83fa6e4a9e31f6e9b78b68c6b58b18838", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-direct\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "68e71f943add709c67360c17ca72b91d3abe19f7b56cb7ae4221a06cca50bf74", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2e25315dc6e3c6be7eeb276ccd2b59aa0e1e488dc6c4c9932bd5e4d3c60a4f5e", + "regex": "." + }, + { + "hash": "e8798c07890666a403eb92f4f164c639721f980ee8381e99bf939150ac8d4d8f", + "regex": "(?i)^https?\\:\\/\\/robloxmadcityseason4code2021\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "799aa4d89c5b2628e855c3fe7efeee2faa267d170acada68abc69a652ac00481", + "regex": "(?i)^https?\\:\\/\\/maanuzinhadazs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fe234f52840715008b91ea1a69063eeea6eca37e59e106f9f9d7a1585b0a9b76", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fa01d543524d3793f20ac0ffd97256c4a5ffb42804c2f70385d715a0f36fd713", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "69a0be5091a2c09d27e5ef5c216ae59f46837b761060074b5f7396ff5644331b", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "657577f970461a6ef4c00b301e56dc5356f45af70bc3a983e83581c6d5f3ee7a", + "regex": "(?i)^https?\\:\\/\\/brandonp321\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a775f0c6b43af2d11275878ca6291b5558c0fd1f2ba47ae7f5f00a3a2f0ecc98", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a82ed3b2678e095b6223de5fabb0afc222a56f52a6dd0e76757d100fddf226a2", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e97fa73c385e6fd1067d9eb2c821fedd95c14973bcfebe1f81d0ff3f8fe10f4c", + "regex": "." + }, + { + "hash": "ddc09966ba05eeee1e11de7f215d5e932bc2adddf63bbfed4bde1437b55be106", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5b5d1ec763f650c591969cfbfa3476513ed805a9cab8af65ade22a757a9378b4", + "regex": "(?i)^https?\\:\\/\\/erosiadanzaeia9\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b00b0f6cfa427b7df61d6d2199b7be8c491f344912ba3604ee500fb813cdcbf0", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e884e7d971373798a55e7aab99138eb07eb9d94e058e213285709351d5b27b48", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9fd8ac8c87ea52f7dc11e06f702bf366333fb53db82541bf48f7ad30beea89a1", + "regex": "(?i)^https?\\:\\/\\/i65rt4zcazxcaszcsa8zxcwe\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1552232acd160f82b51f0970041944279c15a4c03c324c706a92c73181ae3e5", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "868ef1d9c35f49071bf1fca28f6acce20d27d1914a8ab7d2450ce3074ffad1a4", + "regex": "." + }, + { + "hash": "454fc08030bf15238e98c7f158a1f5db2e581f1aaa23342470eb57e030941a15", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7c7f075e6516062730ac0412d05f52e6ffa369c74ff9438bb2e3fe99d32bb881", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "19131bf6a3f1b799c90459be3360bec341dfe69f3eb925c428066ee40078ebc9", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestcomtempt\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "944d6f113d663bb086fd31ae94fc623ecaa84c9cc015d637e3e1c85f28e2691c", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d5e4685970dbc0ed1019f0c21a700933c577d403cc73c0130bce5f471a8ff9e8", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "99996be8d07028e869c4b6ba94a6ca4e8844b69eff233d9d1d98979e9d07ab65", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestflog\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "17368d151e1cb93f18b0026f0514f11a4ecaaa5c0dbcfdcf0d06d8e88edda468", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "65d0d3563600cc37ed9353026223809bb7c1f7e2e9705464c4ac70c2c00d5e32", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "14bfdaa298c48011548c3fb2261ff358c34f503db4cb54a234b0ec1ce00dd8c5", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d3aaa6c880643442f01be776ea2fc10642e03acb592d910a751ae714a6191d75", + "regex": "(?i)^https?\\:\\/\\/codehpe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "35e3522f9b447684c49bb4b9415b8ed942361b7c984f6d5cf19cca2f3a03b531", + "regex": "." + }, + { + "hash": "aa80ae21507959754e88d1c4560591455bf9472f52da934d7dd8c33defad03e0", + "regex": "(?i)^https?\\:\\/\\/porn\\-lives\\-show\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e5dab8bf80540748e1848abfbccc6a3d9040c78a822e68996e24bfe794cd2d23", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bfa8f073954cd6b18ce7eda451c7fc3650df2bd80fe6c861157fd7b6b292212c", + "regex": "." + }, + { + "hash": "77924feb4a43e4625502d2e8135e81e6f48c27ce6c1b0d6ac4d8e36810ab0e6f", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-direct\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7cdaedfd306b3359209808b20d8d38acbd57088fb0c8dcff9d886b63b268535e", + "regex": "." + }, + { + "hash": "30419f60458c379fb4b50cb092ec3d73d4e6b2252b9d721560daf49d23dc50b0", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestflog\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fc20d6efd93196c0c95256e2dc058c88eb20440813e3d768a1e9c730adce0ead", + "regex": "(?i)^https?\\:\\/\\/erosiadanzaeia9\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "493b176ad70bd30eb1d9b962c85a075f6bb32e5ef9237d394209f6e8cb0667d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "d4cb10f1143572dec104b14263fdd8d7990c95a33a97f6e3b7ed81da032469bd", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcams\\-live\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "42e894eca7ca80dbb81d622ecd16da63d58684feb14835d6c925b28857a62751", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-direct\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b97285f2a4c468a09427181819b15951ff3ab72798c57df741af06bd7dbac1df", + "regex": "(?i)^https?\\:\\/\\/porn\\-webcams\\-live\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8348dc9fad7b8739c5e110c5f327d5cacfed04d473092aedeb14100df2df006a", + "regex": "(?i)^https?\\:\\/\\/clippertrendpro\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "876c7bdf24b2e9c8da857a68ac91f487256bfbfb0420c0ad677f992beb91049e", + "regex": "." + }, + { + "hash": "23b7aed106497da0547ca7ea244042b7d0d138b829bbc2f1b693120e922cf04f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help\\.html(?:\\?|$)" + }, + { + "hash": "e391b202a7f7499615fafa4ece596fd186796787924039966d17d2f2c400568f", + "regex": "." + }, + { + "hash": "ed513cdaa4168adde1eba26cd01621f24ac71c5ff815db930543e4ce61820e52", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "59f270042529dbf6f3d04a66a53332bdc73b9272c7be0c558adb281ba140f6d2", + "regex": "(?i)^https?\\:\\/\\/porno\\-lives\\-show\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9a02b6e07598c34fc66350673f951393544ebc376794db57fe20e7063833e1cf", + "regex": "(?i)^https?\\:\\/\\/bankofamerican\\.my03\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f12e8ec846952fca6381d6aea8cf530d85fbb197a37aececf1dd2cdfc0f5274a", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c6d53f5f1e61baff2dc138d72473fc7d08f25d361761ccc3224d9c786174e21f", + "regex": "(?i)^https?\\:\\/\\/trolimtunzadarteration\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "14b32fc4216ccb6dadff24f851aa00ecb4391f62d5b8f09710eb61a739f60d74", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7f92d473fe79e7cbe404bfa9ea7f429dcfb2ba649354a625c54e8ebbf49cc3aa", + "regex": "(?i)^https?\\:\\/\\/mail\\.help\\-coinbasexses\\.162\\-243\\-160\\-105\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1edb318894dfefcae28d3bbb295d1b14fcee9d6a1b99663faf30e468f6904fcd", + "regex": "(?i)^https?\\:\\/\\/fkdjfhsdkgjhsdkhsdjhkf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "af4ee80d4c6ebb0ac6a94780fd280e9b0876e358e8d3bb6868252a8f47f0edb2", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestcomtempt\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6c55930ed0b3d61661b614ac5fe89dd6f7bcd73728df935817578393e8db811a", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d75a512087a4cf7129826976b2a43824d2a37ba495f9d93203aeb1d6c8f61c9b", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingcontestcomtempt\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "97d534b7d47c657019b4366d88465681a6e08ad557d3016758cbb5b1b2f93cc8", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bfb99cf7a80f45e280e1cbaaed5431204d9b5ae473386d32d6de80f737199015", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b228f921188b66f693f9f1c431aeb368611487faa396dc22055685c9a015b04c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=1902153\\&page\\=001$" + }, + { + "hash": "2a34590d04ce6128689c07daeebbcac50e06d19ba55382994be124ba6e501b2a", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5bf9eff99a503fe25982239f11d31a7553d2221e345b45f8c615d08dbb12e59c", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "528a7ffc8ed790cc6626d50fbda3983d45471b43983efb923e47fb07525efd04", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1e2244ea7fb2459fb451a0eb815c5bede0251ffa93a86fe5d0c5131a7c97aa8a", + "regex": "(?i)^https?\\:\\/\\/howdancejbilation\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f7b48c502ba49aa77ba9a8c3ac308be3096d96352184ba79a86cdaa4dae06ba3", + "regex": "(?i)^https?\\:\\/\\/pabjddklodof9\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7c00e0edeea6feb771877cb2c59a9d8d07b8907efdca364e97786cdcdf99e63d", + "regex": "." + }, + { + "hash": "8db83b651c3632b577a1da26043f22081c654f44dfd850060af8ed6469c521db", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b953e32754c2a5f5d2405bd8a2781ee8771735708ff9dc41dd1c0e9fc1026fc9", + "regex": "." + }, + { + "hash": "88e1dd8e81fe7c29acfb7458374cc0b9a45d968f001f9980ff2691998d24a633", + "regex": "(?i)^https?\\:\\/\\/pub\\-fe8a751592d0411497bb061512d1c782\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4fcaec6b681d970f23b54615c3b6433e980e264d08e3d2e4ca148fcfbab5efd1", + "regex": "." + }, + { + "hash": "f933c7059a0130f961ffe6cb19047bfafcab3a181ac0eb7342d47ac305ec2da0", + "regex": "(?i)^https?\\:\\/\\/xvidtoday\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "70bd889eff7ec8b12bc82269146e1bbaeec1f9656e1b6cd9d60ae6c6479ce9d0", + "regex": "(?i)^https?\\:\\/\\/howtohackrobloxonipadair2\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51bc446ed6fb6f5d6cd435b0c875cc0358845b1bb7f39d7a283581a9ea31d3b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9975[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a440fd436189640e2cc8433d5cd62e3305dbe9e28d9b5697308a0d9db16d4e1", + "regex": "(?i)^https?\\:\\/\\/porn\\-tchat\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e4bcc8ecafc7f1939838bd024ee8f52a2861b10fb43c0eadb64baee25be597d4", + "regex": "(?i)^https?\\:\\/\\/instagram5630\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2803fca4607cdb3fde31d5e0e473ec2c8ff11eb4addf6d55ccc05bfa5fc09802", + "regex": "(?i)^https?\\:\\/\\/maanuzinhadazs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cc5a02204b9d3c7780146940b73cc9708932a1db68a21f3a2b19f510284ef49d", + "regex": "(?i)^https?\\:\\/\\/hotvideower\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "82b416d4e673ff49ca1c134045e5b73556cb039261026de77cd594e2cf1028b7", + "regex": "(?i)^https?\\:\\/\\/todayxclip\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "5cd31da2b70b3c850855ad847f40dc5bb00932750eecd2bd9b75a5656b7e51b3", + "regex": "(?i)^https?\\:\\/\\/getrbx800\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "52a3099adf5c3bbe1064497aa56fdd824389c85f383a95fc7ff1372ed6c0175f", + "regex": "(?i)^https?\\:\\/\\/mediafireziparchive\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e89cab9badfb40f5eed74747f81884812932f0a836edf2b7a5db54fdf3167520", + "regex": "(?i)^https?\\:\\/\\/ksdjfhsdkjghkjghdkgjhdfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1a8c2d37b0bcadc9d3fa755b15b56cede122d1961d4376d526df82001bd2d327", + "regex": "(?i)^https?\\:\\/\\/cam\\-direct\\-porn\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "45d6f455e172326da8cf429693d52dc22c47e02e736ebee31647a6d7597555ec", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "32b90a04d371b875f543fb281386f69e7087b36cc30ab8f78a28045b22512404", + "regex": "." + }, + { + "hash": "732944fe56e6d8b83c61789dc1c7a59699a64e93e3109c590ca37804e80ba5b1", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ac4faa477c8aa343493de996f567aefd54dfd7b5fb7be1c776f21dc4bc03fa12", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5e14a493c26cfd027e2880e12e51179ffeefa433c2a5fa56193a6e6c0f1a7d16", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1a9f661c9bba4e3ae9a7adb990eeab1131b0c24cc0c83112ac022ced8e210ed5", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a1eaa07a5abc09303be80a7a34780ee98f546b898f0ab01a2558b5be66c2646a", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f6a11cd1232590ecbf668c72ca83eb94059819a10652e72a2050326eee5a8d1f", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "601e587fac24bbabdb156322162ffc87d3f8d19dbe70c10cccbe8a7727db3665", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "428ec8fa0e2cb45544b11ff23d3510c7a6f9b9be1133512c2af78389e85446a6", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "d83e4e6d74baa3b26fedb220fa9efe2a5227d62478a2be1974690c48f8b113ed", + "regex": "(?i)^https?\\:\\/\\/sdcva\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6a175baf45cc161a9f53436c1697ea3f9f15544b8533120e8094538687410124", + "regex": "(?i)^https?\\:\\/\\/amazon\\.xrpohb\\.com\\%E2\\%88\\%95xoovap\\%E2\\%88\\%95wjbavyka\\%E2\\%88\\%95dpiuvnntzw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tlocish\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dae3e16206888a92c2c926877e7136f9a15f3a05896eb42eb2b18c64f36c56e9", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1a240c5c73d7d4bc36d23ee0e5e440b908331d7cdf65efe9ca0d28568542cbd9", + "regex": "." + }, + { + "hash": "42a7804e2379a73a2ac157fbc01d8e3e0077ffc18653c5c2f6d0e5806470197c", + "regex": "." + }, + { + "hash": "e185e19cb1a0832304cec957eca7ceeedc35a027ed836750366d88094b2380c5", + "regex": "(?i)^https?\\:\\/\\/netfdghfdgdfgdfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "60532522186aee5694cc400940ce0326910f544544e605c32edeabed1be9c9fd", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c52adb1b9c4f0693069348b9de75d4c470c4263474d7b6d651e5dde182130b0b", + "regex": "(?i)^https?\\:\\/\\/dominikskuzoppoauhlj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "080ac82f442d162099b50b830782ba9e00fccd0115d7d98a88e8254f87918a67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=associatisse\\.fr$" + }, + { + "hash": "01a5354f043ecd464d8abb6c5ddf597bff7870352bc9e47d386fb5e969c0de11", + "regex": "." + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "c2d376918edee0e612287284ec59cbb834125fdc6c182abe348e3221553b671f", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bf9466ec62fad745f2eac90faa12115871301ff2bfc6584bbd6a2baacb038b83", + "regex": "." + }, + { + "hash": "42450411bda46f158e28a9160ec5c814c98afe4e297dab9692238d6431f89e5e", + "regex": "." + }, + { + "hash": "64227178f0e586e0f7cf360a0fb8d64ece5ffeb1ba572053378ca3621b1a102a", + "regex": "." + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=paysdeherve\\.be$" + }, + { + "hash": "9ee1c70cc7760c213f04b68fade8240a58ef3a852d7a17906448ecf8b8250578", + "regex": "." + }, + { + "hash": "2a414950834d299744e9ec4af6f21fb3e34b05e717c6c22682990ffe12f23a04", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfgcvc\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "f38b44a5a4df64da3da358edf3be55826b4a05c4aade451319f7cc997b01e068", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9a2dd3596623093a29221433e30d2e91c4f955590d4e856c55b80509db45aeb8", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8f8cfd1a43e34a7b9318e1f2ac7e9c9bd27ee3b496c4415e623550c099e158fd", + "regex": "." + }, + { + "hash": "a25957afe9ca80119aa85e226ce156049a16270efeb5b1e0cce1dcbb87bfd4e4", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "68fc507132e30160382007fcee64895ee80a386fec56ca5991ca88d3769d9aaa", + "regex": "." + }, + { + "hash": "e12f36443cfb5f6e3ae3ab8fca3d34743ef8a85e82694478c0967df8aae22020", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "a4894c8efa455ce1d865483fe716d4cec04d59024ae989ba6946cd0b4a125427", + "regex": "." + }, + { + "hash": "1b8930ba33ad5d65c53f6b390e3a83c2739fc8bf8861567310d9b816336c944a", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "34dcf4550833d3b38b9de39006ac23113d8b0ebbde8c82852b698b4a2e7b2b16", + "regex": "." + }, + { + "hash": "9a8db847794853fbe437b0e669246913065bedcf4ee043d58a6d379129e7e68c", + "regex": "(?i)^https?\\:\\/\\/amazon\\.edmdmzc\\.com\\%E2\\%88\\%95fakki\\%E2\\%88\\%95zrjdxwdf\\%E2\\%88\\%95btgvimiaq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ycpxzr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c5a7f0ff0b8edb81a4c01e0a82f6b93c3646d83bcf1cf477c1d0458dd668806d", + "regex": "." + }, + { + "hash": "78078c4860569d133c203b36a7e9696eeb36063a94f06f15567666d645df8656", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5d19747b4ebb3798d36841e307f2d06ad4d87113e9286ef50b2c53077665e54d", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0e9e012c832e6a4f7b01783634aff112a7242c193a0c9641e7f96cdb93d8fb32", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ce936f8ce9725678345b43888f23a4b9267a24811017dd1010442d9eb163e0bd", + "regex": "(?i)^https?\\:\\/\\/dominikskuzoppoauhlj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0a6ff9e1361d31da040ad1fb0b42f6882060797832c7119f9a195f669faf22f8", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f8dd54dbea9a5ffec1455adae729479bf25903291b117cdc281447b7e825a834", + "regex": "." + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "1f91fba1d9a6f4612cc39d9dfd027781d327d3e058720ea7f4ac750972e1dc24", + "regex": "." + }, + { + "hash": "fdf4175d44fda5924a5618b2205176a34987462707134f14376911e6b0f03a84", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c656f322ef214d48af31012eb64c33913b3b435b636647f7bb055a0559af6385", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ec0ccf11c841002e76966e9ae7e474b4a7855757cc548c91a7e4e2d999fab47b", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4193ef38a66d7d18fbaa6f8e7c9285baf10aeef2403647e8fb2235114934aaa3", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfgcvc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "72bc83b637db9eaf0db2b3ccee14360e85e0cad480889139b49322c7f14fcc24", + "regex": "." + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "177d77d320e945f1cae8334b925c2dc38a0c08f0e7cc7fd7ad1dd65cbb2e1bc1", + "regex": "." + }, + { + "hash": "bd60b5a72e8e9dd3c9a21e80a88b6ce5cc3d3c8658d67fa07b4cc5b38118cf16", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c957736cd5821d7c0a0a52294dc48523c71cbb084586f67ded9b7a154c323a13", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1fdb8fb68abeb26512ac8abb49d1a18479b9ec98dd9cd83d983015c7d213b782", + "regex": "." + }, + { + "hash": "e9af0ab2b2c4cfde8f2dbeb207a55d482ac2df65dd299c74512e4bb839cae335", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2d8083b266917cb73d84aec9626f3035f610dab87bf0a7bd1b30ef7dbdcfb145", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0baa4070b80d898a5faaa4403ece31af7798d0a1950fc330652d3338bbd0d1f1", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7a923838f67baa059baccf8fcd0acd1125063f38e9731e54cf7b8124d77d5902", + "regex": "(?i)^https?\\:\\/\\/www835\\.bet(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b90c91e16b7d875d6c5f41fdd9355387ab91c56c4b44698b2ec2f76ee4a55915", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bf0ce899a979f3db8e2ef7af4424c90a69a06570fc805082cb2b68ab36eb350b", + "regex": "." + }, + { + "hash": "04d335663bdc8b4634e71576b2517975dd123435d98698b1f4927722a301d14b", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e973feaf0609ba486defcdc1288159a9451837f760e7725412417d3714a3beee", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5e740633027b3efcbe7c86380005ae84cc31713df354a4c5107283252599e787", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5aa5bfd06fa460d7760c5ce709174561e18b386643bbf4174a8b92b475cdbd03", + "regex": "(?i)^https?\\:\\/\\/sdcva\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dbff953bc99bf9976e6ac71f887f07aaff995a0a440f68f6f353c45879d439dd", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ffbfe3e5e92093586c4b10be7a079141dbf8bf215c5f9fd5dc3e351dbde2a03e", + "regex": "(?i)^https?\\:\\/\\/networkcookingcontestintercontinetal\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8ae84d5de5de4705783f5a6b5000b0bd189a6a21912dcae45a4e301e4f181079", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8a031335f1e117a6e49ecfdd1f0b9dc0c4ba2d41b212c57289b6638ad798289f", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fd2db3904d3fcecbb0ca0030c4ceeda93a62b2f5f9c2c161f1102064b8c095a1", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d4b1cea4d6a7bc92a50a57c3d9e70af4e0d8b59c9b2315bd446b69384c25391b", + "regex": "(?i)^https?\\:\\/\\/dhbaqjhntrfq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dfc70d27b50befc894c3480f814c3eeb6e882d30c6eff99ce2cfb0b42892a6c9", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "b299f570cad41122103ad33c3db2ac49485b9c56d607bc4574c66bdbc719fc54", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "6f6e4338dd4ff7349342b610e5ad44beb1c2bbef78bd7d51aa99ab52f5082749", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c88d7346b9e07c6dacbc78ce46234a344b0ac3e45dec63b80820ba48d975eeb1", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "676ebd2cfa38584209083b85ecc263e62d83da5c8d4de84cb5c938843f4fc3ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kaya[\\/\\\\]+check" + }, + { + "hash": "2bf5c1f11a22574e631a7b21d5d9a03711e912c7626b6c54b541477cb3e2e905", + "regex": "." + }, + { + "hash": "4e6faa8d10325f788912e482ede580701f9b5c6c05207dd83ea3df24c51fd418", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "14cd88495213bcb0f8242e60b226ad6634498621ddea6193e3ec579d699ceea1", + "regex": "(?i)^https?\\:\\/\\/networkcookingcontestintercontinetal\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "09bef60fc0427ba6977baac153416a509818148e3cdc8fb1c8ffa308a26eb26a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ch\\=1\\&js\\=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\\.eyJhdWQiOiJKb2tlbiIsImV4cCI6MTczMTI5MzIyOCwiaWF0IjoxNzMxMjg2MDI4LCJpc3MiOiJKb2tlbiIsImpzIjoxLCJqdGkiOiIzMDNjNnUybjZnc3MxY210aW8zNzduczQiLCJuYmYiOjE3MzEyODYwMjgsInRzIjoxNzMxMjg2MDI4Mzk3MDIyfQ\\.QCgfVlFEtgvCu_fzxKYRY3oWD9Uj\\-RFAKUhYKdeqg8g\\&sid\\=7ac6c298\\-9fc6\\-11ef\\-aca4\\-081702da9c37$" + }, + { + "hash": "79fdf9b0307fa2c4fdb1658a43ee07686b919939cb51791c821c4e26c9eb54ca", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "87d5260a7f95cafbf637bc93a3ab3ecb88d6d52fa106c343a9279a0a0f3d5cf5", + "regex": "." + }, + { + "hash": "ab8e3afa81e626163fea84a642462690ade8620b669089b907d6079a36eda118", + "regex": "." + }, + { + "hash": "54c9687b02ea9db0b411498c3c511534217a181ac9f61a7fbc6c8a116c91debd", + "regex": "(?i)^https?\\:\\/\\/netfdghfdgdfgdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "528a1d00769a8e4bbeed6f1ea36ed237dca12649f0af0459cbd636f9fb74cb15", + "regex": "." + }, + { + "hash": "547f46027cd4d395d9fb4d1992bef3ac260916b7379e27fea8bed946d3de0d02", + "regex": "." + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=paysdeherve\\.be$" + }, + { + "hash": "a798580d156c6cd8bb17cc20c8b1e7cd2613b1156cd8f6f24338691ba055ccdc", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3d81b9ed665ea5d5137b43560b7a9ec78b7c841ea258ecb7ef3d934b74a869d8", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfgcv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "79ec312c2a547527699a44fb9582eed4431364927b45b8747bcbefbc9f83fcb2", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "516beec6198573046040235ba762a0f7d92eab4bb9c5b605b515edd92f4b1825", + "regex": "(?i)^https?\\:\\/\\/netfdghfdgdfgdfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1c7c42560fef7e244b58488a7968f81e1a1208c98b6c5aa38c300b595815d1c7", + "regex": "." + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "00aee8935b47127925080fb199a8abbad301ba17bb1acec006dfa0385b2c4c1a", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfgcvc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9d55b9e93d8669f7092fe211b406ec86dd2a5fd82771d810bd8706e22b831b38", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b6490adf9be1c13a685662df67b0ae3af96070eb2fee5eb2500dbd589f797483", + "regex": "." + }, + { + "hash": "24d371a4b568a2f7a88a157779e6e2af616fa1624be061e2d48b8407d8a960ef", + "regex": "(?i)^https?\\:\\/\\/dhbaqjhntrfq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6980415ebf7be14b37bc1f0191614abf85a5bc850f82c67eb8cfd960428b60f1", + "regex": "." + }, + { + "hash": "efad3e5a0f25636b54074304628ea2209266e8f5005b50f5b24ddc9d93723f36", + "regex": "(?i)^https?\\:\\/\\/wikicodedansrobloxskywars\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd689f3e575b0adf24f37659bafc01c8b3e66f565cdd07b9fe1b1ceb9834f3db", + "regex": "." + }, + { + "hash": "dbd343f52cd2021c096d56c849e59b6f22f55a674ece2d4edbe2305e882a6e90", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "69983cc805a1ef5727677885f8c4d8aa3eee09ec04a2c4e15bc578ba91e871df", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9c636d7a08c4a89ebda7493a5889cd7977df0de23ab85dcb0addda0a71b04a0c", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "b5bef458385778eb679031e8db61fa8ed9f18ee22edff0696a22165828dd3bcb", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7f1713e41203af54c3dbdfe1d8132b7d576a0f76ce8d61a55b81432b37f89928", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f128b6d8eb0751dc51d0b843290e0b7301fc1b5077a65cb776fdce0a6e7890ad", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "12571989b825f23ce8218bb4a07faff594fc391a39d20c38f6c3d6103a1ff81a", + "regex": "(?i)^https?\\:\\/\\/wikicodedansrobloxskywars\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ce9e28974ac8291588c67b3a016576af6e0076a7062ea6b0baec7f30a36e32d", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "27ef076ac5b5e4843abbf16054f0d427377212bdd4207743dd4d39cb4788f605", + "regex": "(?i)^https?\\:\\/\\/xzgt120\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "c9c6d927d69ff186058cf0cbb66390a1ff6b4b77242e5914d5ac0f018c602fc1", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "258acac661fc096030729ab87cf2f9b8f0d3290db0902ea7cf566a9ecdc5168b", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "40ebf6e5d469a21245634656a1e22560556656e9c530cc1a0fdb880506252483", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0dd04648612178601e66f8e0a0bdd9304894ea7d57f538b434d61669537a7a60", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dbae11dd2cad0458d687d8c219ac437b73c4590986511626ab0bf7f0f8a1bfb3", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ec27a7076b36f8b5206d068d6657902d3d1c51975cace8dae9f2ae57950f883e", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingplatfoem\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "99fd908ad49d8386ce2c79615c467d057ac1ca530c95d0caf7d2be490547f890", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b294d504f133ce7c0643d113ae26f601b6e5527542700c1b473221b56a0575e0", + "regex": "." + }, + { + "hash": "8585285b0ceaa75f5cedf1cf6a561109294ce48972f9a84dce14e8b719f2c8b7", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "ed20f6f30e4efdb679631f92a71d6b5b4afd269248559c41d7a3df27e381bac6", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "66b09bebebd2a46099a6713c22768c8cdb75be1943c886fe3f57d05d90c870f1", + "regex": "(?i)^https?\\:\\/\\/netfdghfdgdfgdfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cd3d1c61add45248bd414b62b669009f22c2f485f819ca1a1a2f999a59c41982", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "496d851619b4568f96c103d268d0e107847bfd20fb6bc2c9fde15f80df307e51", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8937e33a3c0e2a6f79ca7c0d303a425bfa5d7165db45fceec42682115e818c1f", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "9bb8b114603ff6e4baad62baafaacd33b2db0828a889fb3d220291415c262931", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d6f7d750d0f47e90ab3b0163eb5a9390bccc66549750539aa94fbf9c365ffdd6", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "f4eeda47d6291be4575e6f4cda30d6ea4c8ced0484097a67124c7797c5944708", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "26cc00bfcf28e946f471ab24f70517763ef49e556a1f0d8e051eb866cd20b747", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd5c9d37095864cbab21a4beae177b5cdd34f254aa491fa81a96306e5a4dbf6a", + "regex": "(?i)^https?\\:\\/\\/dhbaqjhntrfq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "abd398da8990329257a353eaa5b2511324fb7bc1332ae7fbe53bf04456cd6fb1", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "91009c4661a4018997c57cc858f2a2665b6cc8fd892c2711bb70b192dc32f3f4", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5f994a7134afc25a2627bd5f7892fb63e1cc06ffc9bd553d983fbaaf9b06d374", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f789a08c957f5238c442e9d44ff6e332a5d9eb2ed70307864937ed51d047a574", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "880201f4a00a52a3a8efae7d9fb43c6706aa523c66c4a531083c708838aad977", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "6852dc3a59c0a7b88dc3a74f75726170f2e71d9bd2d40797b77760b2b1109f60", + "regex": "." + }, + { + "hash": "0caca707b9e4d2aaa10ca57dfed2c5cc048a3ca4a58bde47ebcf16a999a84f43", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "86d31cfcfec0e468e85d072ca21eaf9e80eb2b4809bf0846cba346c7532cbfab", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c889c91e0528836b09ac5b66dee83cfe17213a1bf86c141085dcd74369710efe", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfgcvc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9ee16594567173381a5ac6e5d3eb215d20de7de9650975eb3b4a685f23da2efc", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "711021d938e16d81a55040f27cbd26c28adc0fdc9a5f7041961e04aef37845bc", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e3833ce6e2a8b30afb2db6ce6da1649a96e22445cabb1bd4b6760ea35e23bda9", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e83604191c72507960edad2aa0c5806c9dc845e47db2f182c44acb8704756d65", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "084e9560c99e1797776ce296b61cfa00ab92d5840b51bd4535e72a64e03d6edd", + "regex": "(?i)^https?\\:\\/\\/wikicodedansrobloxskywars\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1d9dc6728f545078383d428c7fd3df7f83305d29e0398a2228e5725c23ba72d3", + "regex": "." + }, + { + "hash": "6f0a739c90cc54d6a0903dc4d3340712f11ca23c8ec375e8007b68ed451c441b", + "regex": "." + }, + { + "hash": "874ca86b8ad36fd07c42a8262f8bdf95d76a1df150d4c32e676bb5ba0ae567b6", + "regex": "." + }, + { + "hash": "b4f894023145b8f106a5ff9c96b2cdecf1e43f51e695548af9167e2bb45f2786", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?women\\-perfume\\-[a-z]+\\.boavda\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "504a57b79b037accfcb653114dafb983101cbaec64f820b88112d7825023ca4f", + "regex": "(?i)^https?\\:\\/\\/sdfghghjbn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5295402f14d144324b31e5244f3cb6f7aeea00612a12f8678339be9e23f5daee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+access(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "132db362875834e8e85256dc3bd23a953593f76cd0ed685177be9389eb063c52", + "regex": "." + }, + { + "hash": "0928502025b5e4561cee9b3e41e96b11bc977090a47381505361a1efc6ce3125", + "regex": "(?i)^https?\\:\\/\\/dhbaqjhntrfq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e82d659439de58dd5625ff94df56ec94488015868b0d4d09e549c104f081d55d", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfgcvc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "12166a397cd02e9e37eb98767ed094e779a3f8cf2a2ade39e4a2222c3a5941e5", + "regex": "(?i)^https?\\:\\/\\/sdcva\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "576c603078c2461bb82032530c03b95965ff933af630f2349d3150e45263a39e", + "regex": "(?i)^https?\\:\\/\\/dominikskuzoppoauhlj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f7a0427129527d24d95e1d1d0b8244de8fe5237dd418cd08c7d3f9c747423483", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "981382a05162358918448e0a2ddf4c7baf3cb6832d78bccb17fbd2fa137cedd8", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "b678efe0206927d8c54406a0a38977a7fd8ea4e02b2f1002d336247be70dcaf5", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4a254844350e9822c1a81f91d08fa1a23b62e66b7c0c5466964eb679786f92af", + "regex": "(?i)^https?\\:\\/\\/amazon\\.orhcaatw\\.com\\%E2\\%88\\%95kyroeq\\%E2\\%88\\%95wowpi\\%E2\\%88\\%95jjdusljk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=lqwlltegn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "047e1ba695f68469ddeb6bad71f700e71e389d5b2cb92684cae441b90173a2fd", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "f3433d1e531e0f84f8f057d206712c97f75eb2be2b0923af270cdfc6431bf800", + "regex": "(?i)^https?\\:\\/\\/dominikskuzoppoauhlj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2c21e2e30ab69da8f83f3f9e113d8a673536c491cf2a5d8caee2ead8125150fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d70a1c0a782ff7a1091bec0aec894b6bf6626014278e90a5e0672141eae8fa0a", + "regex": "." + }, + { + "hash": "42a7ffae92b027fc4e6f8a58d3f563c89c863c0664017be0e0dc29e1d48ba299", + "regex": "." + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "237cf9d16a9ec58b8e0db139de80812deb0c33e4d83db57a75bb42b96cac32c1", + "regex": "(?i)^https?\\:\\/\\/netfdghfdgdfgdfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dbaf0ebd0b010ca45ef0b481f1b013bb99ff3dce24bab2706bda31f20f71a777", + "regex": "(?i)^https?\\:\\/\\/qaehrbqaehbeqad\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9a5afc72736f2d84af5ed38452dd59ca61c67ae34709de2c37347a8c5d0a2b66", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8d9758ecf4ddf1beb5efd6eb2864c1d22b5b6fbaf8789299d54289d686bd2242", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "66f9cd5e9cd1538f4b281691f9c6a033dc299f1b573c5dfae61254057e65e4f1", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8537f6aee0e36ef3cb36425fa6cafabb11166423f5db7e500fcb61945e9efcd0", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingplatfoem\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "61e05c7fa744fdc8910c87c40115eb6444fe3736a91b361522f6dbdd2b5d88de", + "regex": "." + }, + { + "hash": "d74059a5f08b8baca8eb9909838e0a413be5dcd544d437da87c037f2be78c4cf", + "regex": "(?i)^https?\\:\\/\\/dominikskuzoppoauhlj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "faecaea525eb34425ad3d28755e6c266a32baa23d90621c553d48bf9df805e7b", + "regex": "." + }, + { + "hash": "05e8f438a238abdfcd71b8b99e6d3b06ce5d390a8ccaf57d5ab57c1280e02a48", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e46e6664048a151b61b13fc27a11550f6d3e0407c427d1ca93572eda6aa7ebb3", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfgcvc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "971fe8c76dd2da610d85ebd89a1c5e5b294ad5518e66f0dbcf525af276aa8574", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+DeFi(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "de746379738950091c5ffb3afe835d4fca9d3ca6ddd5d450b25dc16bee3bc947", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3dcde45c111167eb20d2b4586d5f4a188c0f4182ec7f91fc4e2a2ed83a326d0a", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "11c0560d76515dbc329626f451a50ea75fcf621fac0a933fe7ff7e0c0db0bb5f", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2b2aa7cf0aa0cd50b9ce2a8746627d42118eb7a07452de7a2683b416dee069f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register12332(?:\\?|$)" + }, + { + "hash": "2a7a52f588cb2071f1b383706a8fce33539402a2b09ec9472de76a9722759fa6", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ba84ac2c399c32fc4adae60e4bb9b452230904534f46db6a90f3bd937a943d13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "ce12a687ef28fe570b8ea1eb5e2aecb8cab2fe967692385ff59975d4faafeb73", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3c23ad23c6b4ff285c23a041fe569524256d4a900d0b3e0d74143d84b2283089", + "regex": "." + }, + { + "hash": "3ec55e459f439e24211b589e6dd8859b90a8bc24f92811f976d851d8e2cd4f38", + "regex": "(?i)^https?\\:\\/\\/wikicodedansrobloxskywars\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "d085eb9e66aa4af06bdf841537ce44e667056f60dac109fd4a42c1de03bb4732", + "regex": "(?i)^https?\\:\\/\\/networkcookingcontestintercontinetal\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7b38a9c4e4883a6875d82a8d0faee9386f3716e8902d6b658863f54aaa48ad1b", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingplatfoem\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e43cab5c8dc599d035ed69f7c52fe82b7f17a5f6a1c7c30ba7c97aaf8a3372fd", + "regex": "." + }, + { + "hash": "cc18a98af2e4e26f61e459d9e37d979e6a12e3ba40689a69afac04d3cfbafa5f", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3c3984cd1ce40d2b5d00f6f6601c959c255daa121c03be4f4a157ada30c94fce", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "60e9a1b237c4977e384657b9da685f857acc2bc7e31c255a5d76086d84d14f3a", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "94a12a5e43219a6161f05457e23d48bffc42376f2b4512c925baa6bcf6309b0f", + "regex": "(?i)^https?\\:\\/\\/jiorecharge\\.free\\.nf(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "049feaeb9eae0baf47ae5483631a65fa524a162320fb314598621e43b2813018", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfgcv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "b228f921188b66f693f9f1c431aeb368611487faa396dc22055685c9a015b04c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=8432719\\&page\\=001$" + }, + { + "hash": "e914d2b3561bb1aaa75b57a22c5219c21f98a50c761312ae2bc24eb4b93920a5", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b2aa7cf0aa0cd50b9ce2a8746627d42118eb7a07452de7a2683b416dee069f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register12332(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "1257cf169d9a4067eea02c66b21cfc69f0ba4979eb28dffb75a9a3b989531225", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "092323ede7c06405552c1ac95a8fc56433da637d078337b71b2505c7bc874ba8", + "regex": "(?i)^https?\\:\\/\\/dhbaqjhntrfq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "52316f4f5fd6c9f89c8e973c0c6512ee171b76f0c12936760aa2ca2fddc9a39d", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b3aa79e1683c298bcb7f585ed0c913289afb329f24685f1c8daad008a83d203f", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b818376c3a11b2369152417eaad0cd1d9dd12bef8a757b7e7c8daf1d766b8", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "56b331e07b3c62028137f23038499f2cd51cd08fb0fe7e0cf9aa3cc148ae2ea6", + "regex": "(?i)^https?\\:\\/\\/dhbaqjhntrfq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b6b3e081dd63852395b3c959b5f9dd7bd94b65f320658ed87e64827b37332658", + "regex": "(?i)^https?\\:\\/\\/hfjdhddh893\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "59c2ad84f3b37444990a5d89b24ee5ce44ed94bbe5cc776d38c998c53b7df8aa", + "regex": "." + }, + { + "hash": "00205ccb8c2b376b3d884854aaa6332109ba56881e3562c5d72beff5f1cf1927", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "0b3e99ae29a436baae33556a004d146266d342c04b963e61055faec0450c2a26", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "442f4104c3ba32dee0e0287cfa52a02e2dba56c44dee1e0bced9e8f29270aebb", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f320ac1ddf1012563515118089ec1f48262df27823841fd12cf50b013dd32162", + "regex": "." + }, + { + "hash": "8cd5df0a9daaa62102e22d17b04069ee1b06c216e379d6296b14f3b1ba8f0ed6", + "regex": "." + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "8f09145623a1ce6f49b7649b9a8f89a6e8cd74550ccc6004a7fc9dc35d81840b", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ff5b9f33179eb55fe0bfe3a18f0794e0837b360bfebe78db0581e376ada1b017", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "d5fbb8db8db8611bf97ee8c41fa9a55b10fbcef20345b6a5ef4f67253da35333", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfgcv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "676ebd2cfa38584209083b85ecc263e62d83da5c8d4de84cb5c938843f4fc3ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kaya[\\/\\\\]+signin" + }, + { + "hash": "5dab973149db8010886908f22a7a767ae60ef98327c085310ef58c09252762a7", + "regex": "(?i)^https?\\:\\/\\/sdcva\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "ae8298c43b78381621127f716c555dbdf46d2b58fe587508e6fb7553cfb2ba5f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "26a95799361fe4fbeb674864c26ffc6c4502cdd3990acea21659b8d59fa74c0d", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "971fe8c76dd2da610d85ebd89a1c5e5b294ad5518e66f0dbcf525af276aa8574", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dapp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e1a544ed118d9c79eb352ec5262864c04ee1995b3e9fa0bafb147bdda809bdb0", + "regex": "." + }, + { + "hash": "a7c0f15086fb9c4be722a4d7878144724e2d498cc169764c68e376e23859fa8c", + "regex": "(?i)^https?\\:\\/\\/v0tingsystem\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "610ae93fe0a70fd52d731822cc5237fe2a89d09e6140e657a7db6fc04166e9f7", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f06952dcf6f1952b105644e44925189ac6becb2825dfebec5c876de10e109a64", + "regex": "(?i)^https?\\:\\/\\/netfdghfdgdfgdfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b3a0772c91eb9318853b0e0c84747a3843469d37f821454ef12f2723a6e9bf15", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2cda0d2ae6306e2c7749dd64861edca05e6b97bf6bf367959474ebebb13a04c7", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "43282512922aeacdaf4fd233ee0fee91206377b515a6c113d162d1de68d7ed67", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "825961d85593b33bde6eb3c08b721ce4b2fba876d199ee766304c98ceb8f4e35", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1945b01171773a7d2b4ade5d7bb4b16d9e12c1588e8e5321876c8851f2de6f50", + "regex": "." + }, + { + "hash": "ad8c2635d0811f794047b3a730e30e98d2f3a3dc2fafde9c7d1d909ff503fe14", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "0799fca627df8198e6a49a253644715f4a56570700ae792b2dc5686ece606cae", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "35112c5556b7f56ff8d15d3d10e045cd013c06335b47f568ef789828eea8ce97", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8c45d0c1385a380efa836c875f1569f00b2f3bebb5d08691879e3d7f301102f1", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "347fab42fa478812a785f9b722e9f932c249f2898654b5385d4772d6ce257939", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+i\\.\\.\\.\\%20311\\%20\\.\\.\\.o[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "98845e7cfe76c6d130d6114357ade35a7df20766d46072ea5ab6977630914287", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "4f5a2c34b633d8b15d006b1300414dedadbb4b1676d08a98288697d466ec8c03", + "regex": "(?i)^https?\\:\\/\\/wikicodedansrobloxskywars\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b228f921188b66f693f9f1c431aeb368611487faa396dc22055685c9a015b04c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=8983943\\&page\\=001$" + }, + { + "hash": "3a4e4f3a1de0fb9836b88bd1190634a8a4aebdea088cf76fffba5592bd3dd73d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zclfrwpw\\.com\\%E2\\%88\\%95hbpam\\%E2\\%88\\%95avworfnutp\\%E2\\%88\\%95xkqxfao\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bqwrbqdj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "459bb25f2b4857a71a4223d50a27ec9e2c55c6c8b9165ad47089bd50a7ddf1b9", + "regex": "(?i)^https?\\:\\/\\/wikicodedansrobloxskywars\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75b11a935ee93ebed55b74cda5076268ddc6c52a21fe5cf4a61b260ff0878562", + "regex": "." + }, + { + "hash": "c3431b9b1248f1f9dc0a9b19d7a12d056abf7fc75fb827a48dbf6139e0259275", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "12392474ab9a4979eef15341e70d22a8c39c66256c00901192e87b726968aa9f", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "82c5f05d8dc8e5ad865b9bd493374b4edcce4ed41ba54627db4e4a41258cc6e2", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "d9f0312e3da95534894033325fd787b62449f99fc7df8af59cd7bdd12f686122", + "regex": "." + }, + { + "hash": "aad88d3b57df1a49f0a101f92dd11b5de1d93e56892c8d0c4a4ac542573b4ca9", + "regex": "(?i)^https?\\:\\/\\/netfdghfdgdfgdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "36db20f09f81a83cd0921e161aa02819d90e4120e0e7d11023beab5c4b233673", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "8bc78405afdf562b648bc0901f0cf12df1b4d881dbbd1d788aa0118caa706450", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "12820ec47ceca5ad9387e457d95b3f6e509a5f2a89730e4e8acdb2df050d6435", + "regex": "(?i)^https?\\:\\/\\/wikicodedansrobloxskywars\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4641dd384fd4dbaeb0aa864a67ae7e219e5f6f1c793b1dd225d9aa6cf2742c4", + "regex": "." + }, + { + "hash": "89d9c5e3286ef92c496a34d2fa5f79d8aa856045c8815c5b2f31c54322b51c42", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "172e9fc324e10a71c7f3edeb52d7a5b484ece6dc6225f96216bc8f92da407021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "520943575189693ba9b5c44c700c0f36b3f45b369462b76d13cf649c5cf6cb96", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfgcv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "59a59ae8dfbe9a07484a7cf0e1095ec9046458acde819aeece795b65a1ad3729", + "regex": "." + }, + { + "hash": "a6ffb0d0277b8f984ed7289d5cbab06818f46bfe8a02531a4b114bb43c726ed6", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "56eaf01cb3722cda37cb6da0e6126fad627c218522db5e81ba333564e5ee5e0e", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e0129c7bceb94ddc783b0d64b00a115215b8ab46088f7bb5161610c6478a87c3", + "regex": "(?i)^https?\\:\\/\\/cookingprogramvotingcontest\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7943ae22ed0e60d5f9e3c81fecfc57cf9fbc99ed68f1290ada924e45650e01f2", + "regex": "(?i)^https?\\:\\/\\/wikicodedansrobloxskywars\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "fbb2448267edc25d20392999b699e9c9cfc01b171ca1e4780574b21cd56ea5fb", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cnmxdfjr\\.com\\%E2\\%88\\%95aalyfp\\%E2\\%88\\%95pyleziaaub\\%E2\\%88\\%95zjxic\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDjhvbmctm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "495706d8ececa9979e159ffb04b4ed59e522a3c084dc34ae81428b9d6f0221a7", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "d7c1169efa57e229d94cf746b79c558a0f415100abcb5d7f6701630bfa37b9a2", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a38a22bdbb9a6cc1c1a3528ce2d5289513e76b5876e455c68c4691ced3d5bf26", + "regex": "(?i)^https?\\:\\/\\/netdrfgdfgdfgdfghf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ab9ae2f18f6798b90cc55cd79fa7b989356bb381739416b2386417db3b3d6066", + "regex": "(?i)^https?\\:\\/\\/rewards\\-trustwallet\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f4eec44536ab6a9c2231b82060e309c7bf008c0188223bb8a24d46d3304f01c7", + "regex": "(?i)^https?\\:\\/\\/rimz086\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9fea6b373a8c0d4a527cee3bb0be41ea592ab73aa2fdaed647d65d4892165ca8", + "regex": "(?i)^https?\\:\\/\\/wikicodedansrobloxskywars\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fa2f2617aa3d820f0d71457f6c802bab468f60c083697f212693ed167561ecc3", + "regex": "." + }, + { + "hash": "13ef688b582568678add8901d624136b46ba011b903d52e812285fcc9e50c2be", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontest\\-sc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b0f1501310d9416a8bdc7d470ebcc7ae5a396e735dc95419e2d50a04462d37af", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfgcv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d2ac1b8b9c5c2a2b69a32653778bcdcc5313553d8ac154b33b1c78607e1c128a", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ff641da81a087e6600d475a3e27517f170bd3feaa16242998a8eb9a3dbef4acc", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3392b87e16d081c1d84b7095775cc3ca1c52511cd6dfab9e9345cb05d72c0877", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfgcv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "477e1cffa0a66093630780ecac6ac9c88109ebbf544ac7dc34b07e292a583f90", + "regex": "." + }, + { + "hash": "cf73c1f83efc03dbfc0d299030820046c997471c8871d8013fe27594fcf748fc", + "regex": "." + }, + { + "hash": "02dad4c2cedca4e1a75819aefa068279ce24ac834f2bc4eef12148f50c4aadeb", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1821f2896b688e65883ac8498ad76161e665c4b1bfbb448a3eae2265f3e1e382", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c4bfcb302d442eb0dc48dcbdddb02ee701be9d1763a5509e1d8bed2734b19b22", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nvjic\\.com\\%E2\\%88\\%95dhwzfvnxex\\%E2\\%88\\%95vsmgt\\%E2\\%88\\%95hvilsarm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=sysvnhblzg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "20dd10da2a3ea858834a983162f7f5a5c9e85237d7216dfb2a0d9f26026567f3", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dd4d9e574d877b026757b400981a113e3b733462105774ef65eec79b808ff11e", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7248211cd6d2735b4db83e49990fbc1269397b5bc55e4fb61544ae6c9a2558e7", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "d8524dfa651d8a163926b9b44d957c56a87ecd94c7672b461137750292243467", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfgcv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f4517a3585822224ee3416a65a80f112a8903b7ee5a3cdf4a4802b75d2d7cc80", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1a964abfe52eee4890d4707f3b79005ca1d01692a343f8f28a3e01d0d173dbae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c43354\\&l\\=new28$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "234765e2dce630fa1229bd6394788d599168bd83a422bb8c996c5969c0ae385c", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2c89db5677b72bd112212ce69c8ff4119f2ad8f146d3ff92906f5afc895a84f8", + "regex": "." + }, + { + "hash": "58e43b29b51a435e4588ffd4df1822316031eabeb40cee911c9738be49749fd7", + "regex": "." + }, + { + "hash": "542dc29042a659ea653c75ab4b55d79ec15b22337ce42368189296fe2173551f", + "regex": "." + }, + { + "hash": "1e7f0e55c5c9b21693908e62eb1e5433c3e8c671dd9294cac614e6c501e5a10b", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "12764746f422a1ab0b7103ced32cef826a15bf03ef097b044c42d812f22028b5", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f93b41b498df7942967dd478726ffd24f6104c114701976c445fcea710db82f6", + "regex": "(?i)^https?\\:\\/\\/networkcookingcontestintercontinetal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f71c516bcfa478c5a48e850a678e8124a78ae248747be129c2fffb7045c6fa6a", + "regex": "(?i)^https?\\:\\/\\/qaehbeqahj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf26c1d54b054ca8eeef20880be86673dbc6fc79b19577dbb7f3b37d614b7", + "regex": "(?i)^https?\\:\\/\\/dhbaqjhntrfq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1a8ae635e7a1d42296e1be122f78b42bacb191dbc999b9ccb16b6e4fa4cc0927", + "regex": "." + }, + { + "hash": "17c687ae4bacc9e82403ac41996130018d611c479fea66cbff682a2fcfb51cf6", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfgcv\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "53d724c83c0af1d1ba989d875f466ad94253110b3b69841380e3a1792285d381", + "regex": "." + }, + { + "hash": "0dd07ff37a1a8da768f52967049556261989452a9d7210b727b492b83c065239", + "regex": "(?i)^https?\\:\\/\\/sdcva\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9938bc6b99461497c0000df18c7035c1ddf33aa5f2451e760df6c2d868a600b5", + "regex": "." + }, + { + "hash": "b0ca4e7129bdf3aa44bd23b08eea17146475ed4b8195a13c51ddf8b828d2b9d4", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingplatfoem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4503316c7cf56899862e4a391e05ebaaba6f9b71cea203165eaa1b3e411e87b6", + "regex": "." + }, + { + "hash": "6d24d6a4057679ac0d7f0fbe88b924c6fb1ab075040502f0c8499b22dc99014b", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bb5630e1c93ac09eea5071cf50f664f2d7e5d0944fc758a7c7c4e307e1850092", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c2d32dadc52c4f43604552c61298439ae1d0669728ab379c407fe45da0a29e8d", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "bb251595368074735d463bdea15852097057417935cbd2e64e17cb7a6ea2486d", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8715c2afc998eb400510bc4471b441e9fb89e1d609389900d8a22834d3a76ddb", + "regex": "." + }, + { + "hash": "92d84c7dbbedb22b948917193d4cfbb7ed4873dcd366d59c6f83cf3beaff8d1e", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "20bb97203f5b11d7a076d6fe39079522980fef0da70eef629d0320badb50ce9d", + "regex": "(?i)^https?\\:\\/\\/sdcva\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b3f10ae71574153fe5a9c313a5b85540bc7a823a07f5575133147e18dbc5423d", + "regex": "(?i)^https?\\:\\/\\/blackkillerkkaurr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "beff7a6e58db7281b699e2c20a1504ff855725e0c2ebb262312307b26e9f281f", + "regex": "." + }, + { + "hash": "5b5df599f987b06985289e6b79b2ee1526580eace9c5e7e73dcd2af898684b1b", + "regex": "." + }, + { + "hash": "7da07d154d686db8cbedbc5ef6c377d0b7a58112574a49be8b43598b9551979b", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfgcvc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "022e65d203dbf5f90d9dadb8ffc9d9a963087a7cfb9729331b85d55c85ea3056", + "regex": "." + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "d0858d65bc1ee8793522be052aff411144e8bb50ac64c4c6c080b6e9d3817f0a", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfgcvc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "5d799a146ce238c5f62414a60f21245f6d524bb8f53794a0b183a624946b3e9f", + "regex": "(?i)^https?\\:\\/\\/dhbaqjhntrfq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d877fd795f89c1042b6efdd1672c148bcfd0276d661f8c2733decac352f0ed43", + "regex": "." + }, + { + "hash": "ac51d212a4a18fa74162f2a2cc60b4ccb50395e7c21ae9c9d4f8224e4106ef83", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "a411bf915bf563011aaf6b7a859fed978d1fbac9abbdffa1cee9264f5bc05d15", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingplatfoem\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9bb259ae0b3200afba390bb7737b0c353e36d113e19ae39896eec82cb76391ba", + "regex": "(?i)^https?\\:\\/\\/qaehgeqahbxx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "9984fa3e69aa165cf28b82e95c2fc9c8615958b578228fe1f3fbc7694bdddd02", + "regex": "." + }, + { + "hash": "5a3cce28b1a66823e6003e4039d05729c92bc5fb018bee34e51293b38f492bc1", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "98a9d9676b35f0c48134b0dfbe2d6fc4fcb0f2676bd63bc670211b88b5de631d", + "regex": "." + }, + { + "hash": "09a45a4e5218a14aa9b8cec709098dbe58716cb7b80ad548eaaafca093c56a22", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a3a81a42b34cdced9cd5e4aef1fb32b7c2cb97e52c92643e1c5d09e7de92ea98", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "12fe125a9074d35f929a1efe39378f3790ece452ff78cdbc73e8aeebb0f74fab", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "7de937db102c43ddacf66f3f176fcd303affa314d23a0f0f9356a4438b2003b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "115c6c57f54d0e8f8d0467a5d1c8f8709066d879448c42cff5cdc32ef9232a9e", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookimgplatform\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7aaff50b79fc02f953dcc7eb33a9ad6bc040ccbc118c43fec78cc612ab7e6154", + "regex": "." + }, + { + "hash": "411c06b3611e75a07190568f5011356518da0f6814fab45bab52e4bd8ef66453", + "regex": "(?i)^https?\\:\\/\\/netrfdgdfgdfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "3a4e3ea7e87cd1f5ad9d8d6314b17a4c1cd89ada37940654784aca112f500833", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=jmp\\-engineering\\.com$" + }, + { + "hash": "de82f65f57fd2c930cc880ff9812554bf8bd63ea95fc0f1a53365b011593b96b", + "regex": "." + }, + { + "hash": "8bee6893d124fcf0de90e4ca00aa68ba1a110075f9549a2ed099987726027c03", + "regex": "(?i)^https?\\:\\/\\/netfdgdfgdfgdfgcv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5744f96155efc578047f1c5ed7166c52c49b0cf60d1fa55811038e2bc6f096a6", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingplatfoem\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "99bcfec29d8be8da235569def3da40ebd40f3991a19e8c080aa269b767b77366", + "regex": "." + }, + { + "hash": "d7c16ee0c57d4e2956b4b3ffb2da24d6330dd4f4c1340e4b58ae0e506394f486", + "regex": "(?i)^https?\\:\\/\\/fataliktapwctvsxp\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "95f396ec0e7966b26900aa08e070cf102e782a47839c18a1149a83f8892659bb", + "regex": "(?i)^https?\\:\\/\\/sanjaimeenu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7d4d52e4b414b5af48aaf3f5523095c5003685757ba25e952a93a4b989dcf24b", + "regex": "." + }, + { + "hash": "93998a92ecc0798ce2348bc46a2d3e05aa78222980de9e97a4a353444c5c8245", + "regex": "." + }, + { + "hash": "4cb25f2c49729003d55bd0c17a05107f54f338d1bc77f1c6999b01c62c8f80ea", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfgcvc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3e29842c2909b3c4d5ced942d677573460ebb174398da5dca95a53f301b2bb56", + "regex": "." + }, + { + "hash": "b583bcdd02bc13d51e095cfa86b784637d2ef64215456e300544a6f5b179b495", + "regex": "." + }, + { + "hash": "a61f30c4d1f612bafdcac58839d340d94aed531e90a87439307ee291fba3f5b2", + "regex": "(?i)^https?\\:\\/\\/netfgdfgdfgfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "98a430a0fb81050da092b5f6cc1aeb68a2c3c75ce9d0d3cb12c6426700f4b434", + "regex": "(?i)^https?\\:\\/\\/hbqaehbqaedhb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "abb79833d664ec2ce6d53f86601208c442c8f18570fad3996a3677f12ec6049c", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3cc528952f0d57a5a43fafb9b6c1ec36d69b04ce8df12347b4cbf596183d19b1", + "regex": "." + }, + { + "hash": "7676ea37e52b8ea66b14a802539ced2054220e5847e5bd75c1174e33962c9b3f", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3df5e2fd73d7f5e409db9a71dd8af14fa148af8077d687226c4323118af63b8b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "417c251523d19af62beb54ac50a62ebc1f77bec63030c6df36f2a5b30bc5e107", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "735fcddebe57e60ba817a897a91f7608a8566785c30d8a37e7fee5da5b5aeab6", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-direct\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "3ceb99eecb7dd781447acd005a03af7a9f3d92ad59060612143f392cde01983b", + "regex": "(?i)^https?\\:\\/\\/webcampornfree\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "843aaf4af0ac3154b70cbfdc200b5766c745b8bf933a298a107338a79a95bf43", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "920975eedd9e7efbf019b68b8078fd0ea5d451104345c11448e0a5c200973d5b", + "regex": "(?i)^https?\\:\\/\\/annonces\\-de\\-cul\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "6b42e259de1891355862dfbbdb4b3afac63ecd76729ce0834c858f9613d99d63", + "regex": "(?i)^https?\\:\\/\\/porno\\-directe\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "57447ecbc0f4ecc2b1e3c24fc3edec2cc9438ddd5135b1246458be38382f032a", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "10b9d9c9a6aae1e31d6fccd82e73cc489568188148b10c09a5a388c8898fa216", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ffd10aa61d7ed0b056f41f8d7e830a0ba4b880d5f60ce71a0362126cf9c541cc", + "regex": "(?i)^https?\\:\\/\\/porno\\-cam\\-francais\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "902972e4681ba175aaa02ab47b4770e84f7203fbda1cc07a85082ee94dac346c", + "regex": "(?i)^https?\\:\\/\\/site\\-porno\\-webcam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "953da0fdf68c95bc9ec8073f7367b77b243f915faecdb66b833bdda56a4ced41", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "235c7c01e6ec6d8d85e0e03aeb94fd0ff846ced99cc6e209b6520cd06b34cbfb", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-en\\-live\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "191a64fbf39366ac90fe26de6ab57111c846ddc9c9dcf8764c3eb131468ee226", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fb3ade3c01022dd393092bc8a617ac3552408ca6dafbc7bdac548d5da7376b97", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f134c49df08a9557c291833f64ab679c145f57fbae870025838af9b0a3f6fc5f", + "regex": "(?i)^https?\\:\\/\\/dasdjasddas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f71c567f3d555d1244d6fb7437a32d87fe7ffd1c332ef3a506beb955005839a8", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "81618ceb2642b3ff300e7c471251d49884d86def0ea360230e84d0599db6260e", + "regex": "(?i)^https?\\:\\/\\/fille\\-cam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6ed740f32e511536877d40241b0ce8626ac130293849f11bbfd46a7f7a070bea", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-herault\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "36c3b78389d94df483e05f28fdba685af6812123749d0fc88b05062bc86753a6", + "regex": "(?i)^https?\\:\\/\\/edingfto\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2ccd2ef783695ff79c9d32e3dd012a6f4f0f93d11136d3c53c71df6fa35076d8", + "regex": "(?i)^https?\\:\\/\\/jesusegiceaq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "22db71ff75f12b99f8a728644f06552c308405e9e36a5bb34be33a948dcc58a6", + "regex": "(?i)^https?\\:\\/\\/hottest\\-athletes\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "425cd396c4b3486fe0938ea11b8f488e0f78325d4fa0d73057c4b698ae3b46b2", + "regex": "(?i)^https?\\:\\/\\/191dsadasdsads\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "29e5d112fec249c73870af6416d327fc4a52e5b7390d5625fa0e7259ada3b840", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "5e1f5f315e470e66cb2e6b7eb9f1d84b8f44c54946ec2bc4c86ff2e861304f33", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f3f0ba9ba77b581b3af9eedcadb93e8dac0042c5dd9e6e6b11945ac2580de91d", + "regex": "(?i)^https?\\:\\/\\/site\\-porn\\-webcam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0d3c2f90becc9b607263bd6d4ad2354450ccf210d8ebb49dee4e87ceed0b0444", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "86d3d1db36acb1556981d58bd65d666dafc52c4b830d1b1d69c83a0c52528471", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e1efe168f9a7894b4bb83dffdc53492ffa162757d4f8f498baee04a7b84f7696", + "regex": "(?i)^https?\\:\\/\\/hidden\\-camera\\-voyeur\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "b97ebec164d9fbfae896ab8a90180c783905eb58092660c79a2339862cea194b", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "619583bc5a430c48edd6de83ec348ec85b4cd3a86d9e6e8e9b81cde945df32ee", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "3e7dc1debcc8671a705047a9d810c67870336287c7d1f84b345ace5761ac66ba", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "56e5e3f41f06f3eaf0dcd8cf42ae41050acda14a1a01c5743c66fc087eae1798", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1821087760593c8bde23d445d83a79e6ba4498f6e926026129919e9a56148097", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bcceba5b94a36192954ed5875f0c758c87cce339c7a52434be5ebd10652ee93a", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2f7c7320130f462f8e0052b6f949e62242eb573b373ebd00b9adc5c76661e51a", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9677abf25fd3bee2c9ce4f60d86aae4d06f4f570f6d374c9a66aa3a07ef35990", + "regex": "(?i)^https?\\:\\/\\/culsalopeclip\\-porno\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "33811ae2fb765f8367cd60020c74372e8afa85823cd0246d03f8636fd50f2013", + "regex": "(?i)^https?\\:\\/\\/show\\-web\\-cam\\-gratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "ff4c452046d52b323a99d861f74e91928a424f991f850d385a0b51ad6a3ef8ea", + "regex": "(?i)^https?\\:\\/\\/camera\\-cachee\\-xxx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0eef49e2daa2a3b63be8303566ed42f28699bca81975ae39ce8ea35dd5922d68", + "regex": "(?i)^https?\\:\\/\\/dasdjasddas\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "2f617e401bb821049f0befa662d1f7887f77057227eadba742d77b501699062d", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cache\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f15d863922a75c4c1e6ea93d6136075f79b425ce40a3cb6713fb5876e5ede0dc", + "regex": "(?i)^https?\\:\\/\\/hype4sassa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2f81bba3043695c757a849d825de082509c1fd3501206b50509d8488d4f2977f", + "regex": "(?i)^https?\\:\\/\\/camera\\-cachee\\-xxx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "95168f1849697102c0cc1b6665ab9f3f11bab5a4facaa814f16665a7bba206c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+SPH97EXN[\\/\\\\]+8IKKJ9PU[\\/\\\\]+G890KOHT[\\/\\\\]+ZmFpdGgxMDYxQHV4Y3cuY29t(?:\\?|$)" + }, + { + "hash": "dad54da98ee8a6200ebc63add2fa7ae9b70a8a26f39481fe4ec10ab659be19fb", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?laberceusevilla\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "3627833fb10f4b6e98fd2c3ae91402c3a4fc00f8e74a8877d29cb70a4d2276a9", + "regex": "(?i)^https?\\:\\/\\/caiditcon1234123\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "eb4a7f350b20fffe55ca322127c5c7e4973726362584e7858a2e761801d4bf63", + "regex": "(?i)^https?\\:\\/\\/kanfootlaik\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f9b0b65e4339ef9f701aa8b1cd3e0365bfedbf1a7ead185a06c0d306d6ab3024", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-pour\\-plan\\-cul\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ff17fe78e43cb239c41c453aac0b3dbf2d459c9d3147e383f2d91a6dacea740d", + "regex": "." + }, + { + "hash": "97de7474069d4e3877bd04f6cc097324bc8691d08f43a932ef9eb07fbb3ff736", + "regex": "(?i)^https?\\:\\/\\/webcame\\-felation\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cf73b73442dad5729a279451cc0c7bfbcd8b0baac726b9b2babde05894d70e1a", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ae6577b5b62433f2e7aeafd9617a2b45746fa40836a207b7550036c89921bc61", + "regex": "(?i)^https?\\:\\/\\/hypee73333\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b9fad29b5049f7366b77f3742d6532f0e82efbe5b1c049e2ce30b749cfb8a6ab", + "regex": "(?i)^https?\\:\\/\\/livecam\\-porno\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3d2669703d40d5e58dbd277af19d89c2ddbd5e4825d36a9fe91f334b60429455", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?triibumalasana\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "570eacb1747ae09f1d53d940c4aa4883cdb4851436e15a0bafd3bcd5bcdbf507", + "regex": "(?i)^https?\\:\\/\\/video\\-camera\\-cachee\\-porno\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6b7a9f7a1b1d7cd92d82867c6e6616b271dac4897a4e512d3ab085d6f8b6c975", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2aee36f773bbb828b4fa3239f80a75b2fb601791716916f9d813ae721a0687b8", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "325ec7a6b375028c483b16ec82ea16be69e768881edfb51dc418b21fda95c93a", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cachee\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "687d8bf71df00fb1a833fe71fced33aaaebcdeb24b9e14fd8ffe992e4d61c201", + "regex": "(?i)^https?\\:\\/\\/show\\-web\\-cam\\-gratuit\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "646458a4b6d578fa292e2c28d91e55165c68c44e538872ef80d965d244f68672", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "be778b724df1427f2e2b03058a6ec55294cf0950ab45d08933150dcff2488a3a", + "regex": "(?i)^https?\\:\\/\\/hype4sassa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "58c3fe97547006bf6cda37e518a223ec031fb8886619ff7963c5b6e45d82b6fd", + "regex": "(?i)^https?\\:\\/\\/hype4sassa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "4ca190cf89f6ef4ca56fceb46b0c1b638c27d97a66591c8a7f52569661fa4b41", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-free\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "b6789eb958b5b737271cf727d2c73ce4646d5225c4fea66dd76db7914d1f63c3", + "regex": "(?i)^https?\\:\\/\\/sbhbd56\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "495a30858a28401aa467c8374b7cbac7cd2af4ecca1f8f8545d283f30fba47c4", + "regex": "(?i)^https?\\:\\/\\/asian\\-girl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1c7ca07809b78caa76b62c1fc2d24ffa1161d957ebbc53b219eb55c5c3f33f45", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c109d6a0f3439f9029e8e1fcc01f0764f2a1f7ca04e0f9ced32f39ae24eaff10", + "regex": "(?i)^https?\\:\\/\\/xtodayupdate\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2cb7bec58fccfedcc474d4d253131e95b24a3d2dd693801a0467f83c37bb07c3", + "regex": "(?i)^https?\\:\\/\\/video\\-porn\\-camera\\-cachee\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "c969be989d5acab326c5faf2dcb1e4c3ee65ec28b5533a8d82acf2172a781839", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-cam\\-porn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e799072710adeb09561a1b91aef2913d21f11eec5b1695deb803c4d8ce65d92f", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d0401abf024fbf45603dfd30f23b7b20678c6a1aef0f9c68d0a84bf6e8db9d46", + "regex": "(?i)^https?\\:\\/\\/myindianbabes\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3d2669703d40d5e58dbd277af19d89c2ddbd5e4825d36a9fe91f334b60429455", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+booking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "73b8631a492e779e69b924845dc4abf8f2ca0c685a6ce42cbd9983c326e0b462", + "regex": "(?i)^https?\\:\\/\\/hype4sassa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e9afd5266355538474d28478493980064cee1a822fcaf672d516e3f651651bf6", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.be(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "eb120e530a4bb1fc6b427efa8e507238c1f4f930a9f57193b726d55c7e347988", + "regex": "(?i)^https?\\:\\/\\/edingfto\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "c06dde9439fd14ddbb94a438cd9925b030f9b86fd10347230488a9fe9f612704", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+status(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "36c393d0ea3039dcbd1a12511dce9a0dbae4e83911f88dd41924c671bef123c0", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1645fca71c28c7f0f9b83857e544e5a6ca3abc881f7d27cff33d3f34c1187121", + "regex": "(?i)^https?\\:\\/\\/salopeculclip\\-porno\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2bfc04123be647e2cc43162629448fe5bb5da08ef71276bcc52e80b9861f53de", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a1cf70321cb9abf0ba155e7ae7b1a36a82d38590bbb7d5d33369eee25c0523e7", + "regex": "(?i)^https?\\:\\/\\/fgeeasd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f315de9bac796c838ea5321bd42420e1942b29d371952c28e0594b1426e697f1", + "regex": "(?i)^https?\\:\\/\\/video\\-porn\\-camera\\-cachee\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a5e9f0ad740d096a224cbe67126c3a218363313e7ff15f3a488013f362675", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f54d8702ee71955ffa4d2635534dc74be4213c6cf8f764880446d20dfe713dd7", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "abd65df97d28e6aa90919cf5702efcb34f59a2a95128e54a2dc1306a2df0ac2a", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\-fuck\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a99d9cf446fe47c307be6223cb301c3e09346b7107bea4cb178e936ec827aeb7", + "regex": "(?i)^https?\\:\\/\\/femme\\-mure\\-pour\\-plan\\-cul\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9fd8048d3ada877967069f9fa64e93111d5b395078f765f9852e3b9c9e60bdc0", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d78cfd83963a7768e63397054ac3c00d4c020dba6a1235969394d37c9f16b9ca", + "regex": "(?i)^https?\\:\\/\\/webcame\\-felation\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "5173d86bf2cb79778f8aca24c5782f725eb89d6c19e67a960ffc08430ccb4104", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cachee\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bfc8f54ab5ea02601739528f8a9b22fccc26239356a60d60e2bb4b63a868a9c5", + "regex": "(?i)^https?\\:\\/\\/fullsupoorting\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "377ddd3e79b3245a59f864cc667243a2fa2c28d0e16383033c7dac29a836ac6f", + "regex": "(?i)^https?\\:\\/\\/couple\\-webcam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2478888f6cc9d8fe137657e5e7319a040afaa425464a1328302a61acbe3fd913", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+status(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "77e37284476c5fec6f8a998ae3f66e2649530f56adaccdb27ffb5e8d7d7cbb2c", + "regex": "(?i)^https?\\:\\/\\/harhouuse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "288a44b7f64c88e2a9657c169d6ba63dd2ac28d5451417b189e3cff52569d6b5", + "regex": "(?i)^https?\\:\\/\\/annonces\\-de\\-cul\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6c4ed1eddf35bceb8a7a1617292d42463c392076f2d79f46353665dcdde9dfab", + "regex": "." + }, + { + "hash": "164cdc93f7221d9d88cfc071c31e5902929ad5e7c20a3eff7ed53bb14b1982e6", + "regex": "(?i)^https?\\:\\/\\/porno\\-directe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6b0f34388b2c7d58d13a33abacc57a72d1393b7a76a775bf3e471724169d1afb", + "regex": "(?i)^https?\\:\\/\\/porno\\-directe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "641d20ae3b74f85e2d5e7049b880327e86139ecf71f6568c344314dd6c9fdabe", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "406af9f10802df2154238f3c341fd6a24850a04f6e6efda922813b35dbde1a69", + "regex": "(?i)^https?\\:\\/\\/hidden\\-camera\\-voyeur\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0d15d16785fda5fc0ed8ebd2233d3ea29a597970f55842e07a3c1ad10c8aa9b2", + "regex": "(?i)^https?\\:\\/\\/webcampornfree\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "03e334cd3a1e4b7194d4d0c913ed9c47202b5fb47ceab8591ab9d2514e1b242a", + "regex": "(?i)^https?\\:\\/\\/hypee73333\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "70c3c33d375626e2a4361f3844755755b534663a1887aab129211a62b6d473c7", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "bee1410a260b6aefe29387f45d2684138de080cff41362880636222421a8cebe", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-herault\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f816e5377b764df6d1ff6efa46c621010748e1e6ae4879cc13699427703d7d13", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-ile\\-de\\-france\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ce2122eac249866ed33eaa089b4b8442cbaf47e14e4e49e3007edcf406c43129", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "81468f4d56262eaacfa240c37c0a673d93770c31d42fa417fffaa1568046958e", + "regex": "." + }, + { + "hash": "0a1c276df890e94dc48ad073927a5e56d938809f4b46dd779adbbb034d682e6d", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8a361d21813df2980418ebfb538a8858aff488e4a26ac04d3057c2e5312fb07c", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c9b19bd1c23e215c9a925f56fc8ba6e84fb38de687b5ec263ee8dda202def77a", + "regex": "(?i)^https?\\:\\/\\/fullsupoorting\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fd8424160fb6121fd29c561a16ee0c37d0d89701a7ed8372896cd246589321a1", + "regex": "(?i)^https?\\:\\/\\/webcame\\-felation\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b29d08241ef4a55a7dc4de0577e936c3d2f734f262f4ecd0a53d9cdb09514267", + "regex": "(?i)^https?\\:\\/\\/sjhsjjs82\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8c06d262f9abdd401285d616405e7bc4ad59a9169bfdc0d0c6b86d960db65b4d", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "900e8b88ae4dc6bda60b8626b805dd183e84eefd219839303816ebcf0a95f0f9", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "46d95183c911022cf1ec303e38c5c182c10506b58c46a2e71b10b8cc350ab554", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-free\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1a100554caf2a2c077274c5ccc4c469090515399bed45b0254f59ded996b6c4a", + "regex": "(?i)^https?\\:\\/\\/sportsnbeauty\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "216e22aadd6b0cc1ea3ff2b4c5b798ac1254c04aa3b16bade78aec5547fbbd79", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "85a189e377620059fd2f1fda4341e2907c05bba3023e2b5a01b16230f00de0e3", + "regex": "(?i)^https?\\:\\/\\/cam\\-french\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "75cdb7f93e09bb8429bc3cd767e3891c95bc91be98303c58d2821227e2aaef55", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+banks[\\/\\\\]+LogOn[\\/\\\\]+idram(?:\\?|$)" + }, + { + "hash": "b9d9eada879389b785997af7745bc591d2ed0dae83e00d6d95e8f9f01a1b0d70", + "regex": "(?i)^https?\\:\\/\\/dasdjasddas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "59ec90f7993bdcc888988c253551ccbc1c6a742f9eb8a5e14edb1b33c36e7da5", + "regex": "(?i)^https?\\:\\/\\/malaysia\\-idol\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "bd3ed91f05adf17bae25aab90594dab31c07b230e080da7458ca141cbf6b0f73", + "regex": "(?i)^https?\\:\\/\\/kanbghiiik323\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4b827a0887d224c49f80b77f2173a795168fcf027de4f5f60a5df866df5369de", + "regex": "." + }, + { + "hash": "674683365dcb454b0ece1e06dab47f9b39b06dcdb49c5e56f4d5bb085fb3c98e", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\-fuck\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5829462bab8014c13150f74c3a8290673d4002500e5f01d96a0f8bbf9ee64ee1", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d78550f1a4d43e32b1dafa12c91944b8eb634c48ea56958ac5b2113912d8359a", + "regex": "(?i)^https?\\:\\/\\/xtodayupdate\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e38b0ba020dac8bcdb71bbd5446cc9433e1a4491093bc092f8f7f774f3806eb5", + "regex": "(?i)^https?\\:\\/\\/hypee73333\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9a89acc2c7cfc2473d31f3d65e4197bf73dbe52904a9a68bc9be84b0e3eada13", + "regex": "(?i)^https?\\:\\/\\/downloadsecko\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c86bf06f93dffe29d47b0c70b3bb525c2695bf66a92e3f344aa25dccf785ecfe", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ce486bbb77c652ad69979d50a4143e097413600526f84fa822cf91c0415eb1d8", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "024f88059cb86be0094f403d0eb8769503e6b2d70cea22844a54aac1ece01413", + "regex": "(?i)^https?\\:\\/\\/culsalopeclip\\-porno\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "82c06db3479b219bb0b8cb88befb2f362b8484b4fba4cc4f3d56939b5b99b9cb", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5bf3745c085de6651af0a98e1f07b9771c3e85ae5eb5f6bf46c48118d9a5abb1", + "regex": "." + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "12a1fa69a11e96eb9ee90647d77521db8fc42386a3386e4185b7c764c5f7720a", + "regex": "(?i)^https?\\:\\/\\/xxx\\-en\\-direct\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b95a584387f8a1fe2537451c492a8a129e8d327a4716df06a99bcc580decf7ed", + "regex": "(?i)^https?\\:\\/\\/myindianbabes\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e1ecec201ed970e80102e658effb8252c8f84f15159492a9d40fd0e6bd48d126", + "regex": "(?i)^https?\\:\\/\\/fullsupoorting\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "98691965b890671afd0d7cc7c5c67d3d370fb3422a3dd923a31181bda7eddc1e", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d56ef3a55e56a6d38962d4be7ebed6f4e8d02e193b69f7ef7980827dc2db1206", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "05d82289d0976609314bf1b691fb751775b56dfc6fcd2c236e3d2e27a2191a95", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ec8d484b10a528fb2f3367891ed40e97f9b4b4a4ab911080408d3991dc2dc392", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f558a2ecdbb769703ba376188984f290745d66628019957b57dc1f3b53c0f69", + "regex": "(?i)^https?\\:\\/\\/video\\-porn\\-camera\\-cachee\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6d724db5eded8a2ac48ee0d8d00cda76d46b7c984be4441b40b218fd66c3b5d0", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cbc3d0b06ca0a7e6a775e986f80d6ef390f373ee4b2c53b172fd2201b87e78c3", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e47cd59c0357ad86d14b09f1d2d523178ddbc2c64e7637786daec1fd1dc47ce2", + "regex": "." + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "82f419c31c9996b5289a289c657d597dfa35d0d2a680bac66cad8dc7402af8db", + "regex": "(?i)^https?\\:\\/\\/juno\\-support\\-162e69\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "39fd90154417ef5fe64ff068ef648d778b9ef55a61f055093fdda55bc1deefe9", + "regex": "(?i)^https?\\:\\/\\/salopeclip\\-pornocul\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6a3a503a2f974d93a728dd17122c2c2c6815a22e7a8828c65850d366b5c53cfa", + "regex": "(?i)^https?\\:\\/\\/edingfto\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f1882be75056d6434a18406a30cd91595b81898031c28df125b290482ca1ad35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+status(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "6b7255fb58b955b48ef4f8c16704b3f19f6359f83e896207e0392c2d45586d58", + "regex": "(?i)^https?\\:\\/\\/cams\\-de\\-porno\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b14d664f845fe8ab8eadbf6d1fb6f3ac1c198eb2e7cc6748e82f7fc707c6c62d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "c2b52d9c3ad8de32c029c0a33a348e6c6e0b49f972a8be3ea826c19172ff635e", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bc0cd03273a95948c00b641fb74c46e44f5faf596ffdcfcd46c4b882c73c0c25", + "regex": "(?i)^https?\\:\\/\\/video\\-porn\\-camera\\-cachee\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "0c6348ba024c7dae54af42b6fbeb3b115b4aa0d3b08b7573009709f6ff478626", + "regex": "(?i)^https?\\:\\/\\/kanmotaliiik\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a6c93d835793b1c2a881bf35149af7d6559c84e39cc98bf7258464b954a7e47d", + "regex": "(?i)^https?\\:\\/\\/dial\\-webcam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "65d9ed22afd982a2fee5c427bf79d947e07431b7205a2ebd6eda90c98abdbca4", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "07d71bec28650ece279b0f1e91654f17c518a55366b342dd3731891e11c542c4", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e8e4ab5c2ba8e4d6d608a3b4c1851f0ebf1c099e280bfb8a4ba11ba5012e933b", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1e5514efbe315846b015c4b1820a0d5664756e9b0c664cda8e88b47078bf21cf", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c3cc53d3a49521caf005206bd0954fe01d19fa254a05f9bdced6858f7ccf4f86", + "regex": "(?i)^https?\\:\\/\\/robloxfreeeyemask\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2478888f6cc9d8fe137657e5e7319a040afaa425464a1328302a61acbe3fd913", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+confirmdata(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "667b25b5b63e993dc1683e86d7b03f0d8bd90876e0dad36e7cebb51ee1e4c2df", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a1c79f23cc8128a8b224feffc8e4ee9e5afc9bd243418a3720dc4f8ac720e35c", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1c89740bff752ce1f58feda0297c63ed79d736e4795b5b269ea54b9d2631bec9", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "89d59b5a1017ab8a83fa3d6d358d1af367897555988a719369ee6bdbfb981c60", + "regex": "(?i)^https?\\:\\/\\/191dsadasdsads\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6ea86391fc7160964ce03a3dca19f43885a53a47b2d51034889a8798055a2574", + "regex": "(?i)^https?\\:\\/\\/chate\\-en\\-chaleur\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d20e69a02bdd46b7f94368689efa6f5a1d20aabd5350ce3e363c77dc186a59cd", + "regex": "(?i)^https?\\:\\/\\/masterromalbqbq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e7942476cdf5ca922649a66a889b4b9ffecda96fbd07b3b810dc273d363d6753", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "59f2957d9edadc22cba72da5c3fa425064b49695a04884819aba1dec83c2025f", + "regex": "(?i)^https?\\:\\/\\/xtodayupdate\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2256bbcfa3c4fa59a5e6ff22c768a86e2ef821c06ae8b44b620a4e7efd8709b6", + "regex": "." + }, + { + "hash": "1f8a9b584122d0405064af3ab45777c8fcb0ef0cf65978eaecec4154aa18b565", + "regex": "(?i)^https?\\:\\/\\/webcampornfree\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a96960d7229abf00bc8b8807ad51280d2ee4bd950a46af75d2c51be9c3dfe3ab", + "regex": "(?i)^https?\\:\\/\\/edingfto\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ea72e7160518ca79fb177b195781403c157294c6c90ea9824cfaff5bc3b6d974", + "regex": "(?i)^https?\\:\\/\\/dasdjasddas\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "35e02f45655a323dd71e78c86bbf37c17f8a6310575f93b0b4a067a29e74d071", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "66463f8367d2166861d0736c74addc176426b32108573ee5839f3776d4dfa983", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d344a1dcfb9aed132a23d17903d764fcb4d355546a076f43e5d2edad52861a7e", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0c5d1c81eac8202154bfcb6c132411d783c94ad043a41f322bb1b9814a7c4bad", + "regex": "(?i)^https?\\:\\/\\/webcamcohonne\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "25698a441b056287e7888d32b6dfe0b9012c08bb0b7d5feb211e2c73147e14b3", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8991bcfe768f2169b05a586c198fc577ac2d35769549844648367aa377acd7ea", + "regex": "." + }, + { + "hash": "caaa5b58111bd90ff13df8c68fcb553e43908c0acf7b6441356a71caef786b04", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-en\\-camera\\-cachee\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4a7516b88d8e8b2296167dd756f981072a67359e909ffcbb5e0ad880920ec995", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fbc1e899de5969a392a14bac436818d1b957bc6c9ee433989f5292cc148b7f96", + "regex": "(?i)^https?\\:\\/\\/sportsnbeauty\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cd5b7d34b912c8c2a0ece196463f617bd45c194573d546cc18d5473926f85bcf", + "regex": "(?i)^https?\\:\\/\\/culsalopeclip\\-porno\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e73af7f52018d2aa9eb5e4f5d0cb3a0e7c855f72cfc5393ae5baf099c71e360c", + "regex": "(?i)^https?\\:\\/\\/hype4sassa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "aa4d3564dd87ece67f6fb05b810dac5612b9bb0c910bec8586ee308bab0ff8ca", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "024fb7307d2a99e2cca8f290c5428842dad9eb4fd9833b8188607440baefa08e", + "regex": "(?i)^https?\\:\\/\\/myindianbabes\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fb3ce695e00b09842b27db249437c4d0adb481458549a0b0c38da0a4bb5bc673", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "63cbfb97d1060e4ca84fffc29b1570949f75e96773cdd548ac2a1b8110700061", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4f557b9c1dd050770a3ec1b0a228c31a55586fe4f726e66d03fd380a8444719e", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8b7c2208e6831a0d090633d23c70798a63382417f7b527acc9b25141d674ae0a", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a0f902ba916ab9af4a55e03dda5d978d6dac7f554e094181e3ddf79b4b902584", + "regex": "(?i)^https?\\:\\/\\/site\\-porn\\-webcam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "337667d4366fc32ad9d4fb2b967009ccac3eb2f2e91641599c26c208993685de", + "regex": "(?i)^https?\\:\\/\\/myindianbabes\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "91356735ff955338c4b8128c8e58cbb198b10ca9cc8c240cd989ecf5d005ae72", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-direct\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "1cdd71030be910b9170d3bc6f3df5567d9411f484d2bf644f128ae3ea194c861", + "regex": "(?i)^https?\\:\\/\\/dasdjasddas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "b25b8e0fc85cbcfb46915e5b39a79a2206315672460249bed1848a5df61be78c", + "regex": "(?i)^https?\\:\\/\\/kanfootlaik\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "fe21bc6367111f8c4e29410e4f9219c6eb76e2e81ae44778b9486fca11706aea", + "regex": "(?i)^https?\\:\\/\\/myindianbabes\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "19a3f24cc7a3bc12dddac7901fdc9ad743fa205b42dd9c03cc2676bc1798d65f", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2b530ed10bed0fd861fd2407535b81ec2c080b99ad48236994661d1e7eeb9f9e", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "49f36947a6f8299e513bf97851b60e84cdfce486541c0555ff24902e0eb2785f", + "regex": "(?i)^https?\\:\\/\\/site\\-porno\\-webcam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "4a7f077b918f4f4629f71d1a68fb9f5b7a9107f38214576a14705ca3ca9b3aed", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cbbadb7b2c728a8719532414d7800e4ab1376bf1c7add478c40639aaa12d80a7", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3302f511e7992b77c89e4e82a3754c1a9ce56b639bc4d94a91d9cc586c354f48", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-agen\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3743d981af4131b94df05b052d5b114bc6ef7cc6479aebbde5035b51918bf065", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fd65423d6826c5685b08c9c99004926cc85308282b753b88bc6524a582c881cf", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\-fuck\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "68a356636896ff91218d37c328490cd764bc38fb265ce101e62edc8e99370da4", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "84c2160b93ad942a05af76dd53cee673bc089fec594bea038c7a842418709267", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "60e951a0b84a476b5cf73d09421111970959cd5a63f59a8bb0986e98660781bf", + "regex": "(?i)^https?\\:\\/\\/annonces\\-de\\-cul\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "b90d322a77d175362e4afae41beee617f4c61f01bccbdb8f717ae99687090d4d", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ffc4731ba0756dcb8af6ebe58e7922642f81c941d3fd9b25c742a9631df84d22", + "regex": "(?i)^https?\\:\\/\\/chate\\-en\\-chaleur\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f2c1817cc4d41ebfb5df1413db90601c1a19e8f25670a513e8818997e5d37f3f", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7a1d3f0a5585da76193e266eff6f381fc7d2876d0d44865ffe49de37f52a3bf3", + "regex": "(?i)^https?\\:\\/\\/webcam\\-live\\-x\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "970f4193ebddd05de30a5fbf78194b4c51702b2a85eb4bb63a878881171b422d", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "7da99eab914d3cbb65afc6ff4da3dfb7c32871227efff8f4dd785b01a3da7a51", + "regex": "(?i)^https?\\:\\/\\/masterromalbqbq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0b18c6a47150b4e83f0eb33ca90d5e4b588266c3d84c262e90c15a0f992af766", + "regex": "(?i)^https?\\:\\/\\/4cam\\-x\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "a1b32000ec31d3120ce5779b55b52b0b000f1f46cec9d862717d1a1c4bd9f117", + "regex": "(?i)^https?\\:\\/\\/site\\-porn\\-webcam\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d9290d5d20b47d80c4d50ae4f4da74da5093e9f6b2dc7b14cd4f747f3715e905", + "regex": "." + }, + { + "hash": "1687d54102cc446a06f74857ca587d5f0d48b518e53bb807e00748842d159900", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d30111698839ad953aa65259d0692b038e3174cf787266f3d39e4039145da840", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "a84a61da4b1dc56ab7ce5c6fc4ed2f79a89ed11de8795b9eb3ba5eb674c3f869", + "regex": "(?i)^https?\\:\\/\\/video\\-camera\\-cachee\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "178d4d147ab2124bcc6790232084abd46b38a845093c56c3798d1cb580496adf", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "a5c998dc5c98d43cd1283173cae669b97c918d8b594b9f6704e382dbcf004d24", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bd7a7ebfd3d2a54677cc5646f888ce8f64bec5634bf8bb5c216754cd147711a5", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "759027eefcd6e6fc923a5ea80e017686cbe31431e7ac986ebd9f46aa5fdeafe9", + "regex": "(?i)^https?\\:\\/\\/hgvhg\\-100292\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8f5fb1d71518d3f013d14f6499e9808aca3b49f9c343454b6190dd01c2ff8262", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "612cbb643048814dd2fec6ecdc41b3ac2ea6b93bd6481c374aca5e639dc1fb1b", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ff7a8d79a3606098371cb054d881fd391dfea679f6b419e7717d1b4828cf0e06", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-free\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "39f3fd082b4860ba4bc96ef01b0637d25e2f7a3cadedc3f3b612901def15cc19", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "622dbac309c7cead81fd61f3c94a465690a086d65e2a70d68b44ae9f8170e394", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-agen\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e01eae81f6e8e7e6ff1ab5b14d002d0a28c35fcf1545a545805cca2839682db4", + "regex": "(?i)^https?\\:\\/\\/hidden\\-camera\\-voyeur\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "86f6dd647b7341d97a1bb138fa2e06351b21c31b23646a03a1db9b7126f03d68", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?scandic\\-go\\-upplandsgatan2025\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "bb43034eec8eb3b9a09ebf77c901dc1b16fb4dbb41b18ff086927e50dc214685", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+booking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e8a373e8e951aed0c995f9ebe1bcd9847b145e51b60046754306b9a04821aed3", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "96996978ab74641490f39a470038f6c19d74fb7231b37e5d9fa2d9fa91e75ffa", + "regex": "(?i)^https?\\:\\/\\/fullsupoorting\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fe08dd23ac57542b5a2b04c8e3f046875e615cdc12e04f3b76f5529d30b304ea", + "regex": "." + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9e8605d1f9c3f19f3966b5eb1e29d12d54c2f9657a98e1f4e782043b9eccd753", + "regex": "(?i)^https?\\:\\/\\/kanbghiiik323\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "621ff060d1a4078913a6fced80615f2a4e16e6db8d747d03959d6fa6117edc7b", + "regex": "(?i)^https?\\:\\/\\/downloadsecko\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4f931ac1f3bd2db260e52255688ca3c615991148316d64fdbefb70e3a19b6959", + "regex": "(?i)^https?\\:\\/\\/video\\-cachee\\-porn\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "44dfb905898c53479ed2edb1e8c7b0a8c4d5ad344be2729f9e8da0063d178f4b", + "regex": "(?i)^https?\\:\\/\\/camera\\-cachee\\-xxx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "70c838a6d6ab167da3f7d4e7653bcbf7d3273e92669cc09638667c5e21d8b294", + "regex": "(?i)^https?\\:\\/\\/porno\\-directe\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e08611782a827e8848a1770e4980a38f52d9ec64a6cada2b1bc802c8631e04d3", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porno\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "229e0bcbc30575589ac13e9166a800a065f5a17ba13844adb67d6bdc9b38efb2", + "regex": "(?i)^https?\\:\\/\\/video\\-cachee\\-porn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "a88b7d3af8f324049c767a0f21cc94e113d1b22ec056fa72c12257e68b6f7bf2", + "regex": "(?i)^https?\\:\\/\\/webcamcohonne\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "96fda7a1a38a541f06ade8b27275f01870c1c64413fa2196d09ac6de060063e8", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6ebee8e27c21524eafe7bab7c9726540993b4482377bd40c4287b9417bc5d136", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "52a32bf1dd3e62c38e0eb847778fad820df132ec8b57dc460130df7d89ef8ba4", + "regex": "(?i)^https?\\:\\/\\/kanfootlaik\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "46bcf45acee77b1fb7bf53bbd9a465d9b83297ee4c334605f9ed1ee54dee4c48", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "74a8ef90bd61636ee80118e8d7a70cdb7513b4332f83c3aec688702fd2af559a", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "65e62cceafe8c45a6069d301d094f67bc83d0d8f501900652ea456f2fe6ee995", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8da6fb714dc80ebcf05cad04797acda183998d31f051290e80d81171e127d57c", + "regex": "(?i)^https?\\:\\/\\/webcampornfree\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "fbf61e81ab46fb92672124463140c3fd86fd094ce037356fb8186a0742357782", + "regex": "(?i)^https?\\:\\/\\/livecam\\-porno\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5a7cff9c740ea220fb73811c46930e9090235d9b38fdb5cfc74adc73f0f20850", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d5dd36440e1859a6c189496ab866df8db4662fdb02a406686e3c823adea1cd23", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-agen\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d3d3eeeb018ca745b8d7914432f10a46cdc41a42fc9d73df85fd4f0f0724362c", + "regex": "(?i)^https?\\:\\/\\/malaysia\\-idol\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9bb8e33f94da938c8177c6de5467668afa1c5b09702b3eb57605e38fd0e4be45", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-herault\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0925610d424597f78b546e2329dfb8dc49866f886fab9af02c49a42d26ab9fe1", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porn\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "aee08831f17e9e2b061cbaa7f74161c9ade7c3bf25392dbff163da9b44a86637", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c7d7822a0c03db5aa6f6f24bb5a9c7444554b418f6c0eedc6e9b9abd99d7cecc", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "ed0ecf8966639d46022ef2af208349117e7e52e7067c397920039dc3835bc872", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?remitano\\.remitano\\.zone(?:\\:(?:80|443))?[\\/\\\\]+trade[\\/\\\\]+index[\\/\\\\]+lang[\\/\\\\]+fr\\-fr" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "868d8891dd0fb421df20c705a87d554c82a6b0efafdf2f834f85d71ab4890a22", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5bde212f88989f289e0cb7384925b9819f0ef5b57f97f1ae0349840b1f2ff40d", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "ea9b3eb20a5ec2e15c8d09d13e9cf9ba39dccee903cd46543c8707b9552f9f3f", + "regex": "." + }, + { + "hash": "e2f466b27aeb3bb0f32b8e54651c6dc05ba65fd82a422292ec800d806381b41e", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c107765efca8c8e177668d4ece73bd8d6ddba6fe6c525a1a1e4358b913f431f4", + "regex": "(?i)^https?\\:\\/\\/fgeeasd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "dd2b0db17c6c5049e3d1eebbba9b0978c6251bb5059cd13a6a5fdb97fdac00aa", + "regex": "(?i)^https?\\:\\/\\/amazon\\.hbkdhfsgh\\.com\\%E2\\%88\\%95lmydtyrfa\\%E2\\%88\\%95fsklc\\%E2\\%88\\%95rjrwm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qgxizcqu\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6722fc36cbbd7f3cae1250516b282a1713e12bef17776e1df8169a3aee988d51", + "regex": "." + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "cdbf830201064b2e91d55282199ee9c0643f6c525ff385c20da427cc4e8de575", + "regex": "(?i)^https?\\:\\/\\/salopeculclip\\-porno\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9fe52ade06c75905ce68a60c38dfe56fea911fb9bb74be71f68ccb53d4b039ac", + "regex": "(?i)^https?\\:\\/\\/191dsadasdsads\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4b2253b0cbfc9cf299407d82c61fba4e1f60c30e15df901765091f8d65e0238f", + "regex": "(?i)^https?\\:\\/\\/video\\-cache\\-porno\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "298b132cbd2b83b05a9ef9e86fc89e684b401d13dbd137da9e8191172f8368be", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "57244d7090b7c31a3c77a551e5e8cad1cfce9cc63f8344e3933b3bd16a7abeb8", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "030d5891344c46a4f47703f05a3634f1ddb04970f18400892c75e04bf183dbfc", + "regex": "." + }, + { + "hash": "5c90474cad6867b286c39c74e9f185dee9b7bd2e1018b4711518defb9bb6da39", + "regex": "(?i)^https?\\:\\/\\/video\\-cache\\-porno\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "30e05a4fe1f4fe411a2cd94a8c8028588a0efed80c950daa6f3739ca4b5011c6", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cachee\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fa5262ff1e29fa04a7ad4385531fc134240190bf2f99479e804813319c063a64", + "regex": "(?i)^https?\\:\\/\\/sportsnbeauty\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "76ab5c5257b2d1299a7a635411c3ab1b50a34778110fd1356a0bc1aab64b5297", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\-fuck\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "08b7a27abd54d904fc40359d55dfeb3e84685835a16484aeb6b0382b9dc104d8", + "regex": "(?i)^https?\\:\\/\\/porno\\-cam\\-francais\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e48482b9f09983f960d2b422ede8fcc5dc8baa4e47f2d04e779e280ee67b8d53", + "regex": "(?i)^https?\\:\\/\\/harhouuse\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "3d2669703d40d5e58dbd277af19d89c2ddbd5e4825d36a9fe91f334b60429455", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+status(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "536cb8c7073751f894a6537ebaceaf780849a8c6fdf59b3d8577673ae1d95270", + "regex": "(?i)^https?\\:\\/\\/ded5c\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e38bf7d94d050715d4259239cf636ef3fc8c431c79219fb7f71a610c98ec9120", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b7536537d0089c540d980081b1d5c2dbbe33a6aa5ac3a2b787bccc032efc7941", + "regex": "(?i)^https?\\:\\/\\/jesusegiceaq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "de25539d6c38eea1cdbf49a9370fbf06a29c2d74e03d247af3adfac535545f0f", + "regex": "(?i)^https?\\:\\/\\/cam\\-chat\\-x\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4a1bf0238e5577d75251c1019de5289800f3246110c8fd0e2efcf03ff6723676", + "regex": "(?i)^https?\\:\\/\\/kanfootlaik\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e000a71853a59bd7d9e29b23e250892753e1b487e2d309e24628556b4a326d01", + "regex": "(?i)^https?\\:\\/\\/webcame\\-felation\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "6c4e0b1de4266eee0adb74ab997de518801ee8364e8adaa7001ed8b8f84524d6", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cznowelkhd\\.com\\%E2\\%88\\%95yuueakf\\%E2\\%88\\%95xpbumxxh\\%E2\\%88\\%95fzrccu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=nfmrzg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e094194c87bf16303ab45169e69a828bd0db7a2f679538f547d91e55a26cadd2", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-en\\-live\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3b2447e75d140e6209966cad37924ff3055fa91e0aa376c8de029514a61cf", + "regex": "(?i)^https?\\:\\/\\/sdg45g54g5g\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "95f8f9fa128d56109b445fcc6ecaaaa22a1133ac702ff55e9092fe1eeb1140bb", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4e681c1328530357b7eb67ccbad6a0a035d808f8d00d7aba734891f2f093334b", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0b356cacd7892e80fbc1902ad4bfc82b7717bac131550254a379c693679f47ef", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cache\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0788ccc93e86854ac1f79c4c38563ac94590fd4e6a0a355abb1a0e93a45805c1", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "aa711d131ee005ea33d44f23e7df707118c8e83d6417cecbb2174563ecc18aa5", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "aa872e4c1ccb3a0c12a3c798325f0967eaf163cd7b376b4fc38ca31fac7abdbe", + "regex": "(?i)^https?\\:\\/\\/jffasdsdfsd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df50a4df90dc6437e0fbb529e6338bf496b2733ab767bfefa34ea15d18b00eef", + "regex": "(?i)^https?\\:\\/\\/webcam\\-live\\-x\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c046d47b364f8a1587df536d9a3f62188dd6ac3386bea0dc654af0c70bd4ff4e", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "725926bf82428a2c883f9869250aae8e3d5eb5e190ca9c5ada51bed12745d69c", + "regex": "(?i)^https?\\:\\/\\/salopeculclip\\-porno\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "ca8ce290763dc067b35417a72758bc0bc5e131973504fa73d30984c9ad2f9766", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "cd94cbf8103e880fe8b31be4565c7ab4d605abe6473f1018d41cbffc6d4a5184", + "regex": "(?i)^https?\\:\\/\\/dial\\-webcam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2bfda919e489b97011a2403aa4969c09e438e047c80773fb89ad72c693379ea9", + "regex": "(?i)^https?\\:\\/\\/bumperbuttnjspeue\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9143cc6a2760b5db79bb5409dc047c9e19dd46b24f8055a426626634df48b371", + "regex": "." + }, + { + "hash": "5af3ea83ef0f36cc1ae9372951558555b325c40099388ea801601f56ce0022ad", + "regex": "(?i)^https?\\:\\/\\/ded5c\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "875c23fafd99f21933e874693a8a08e9785cbfde1d509eb9524ae4f1b9870f44", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "59a1a0e3cba35b25a4073ef96535fab2b769886f02941a913a5f24e251438e7c", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-gratuit\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "077c705fddabfec654faf719d94ebe59adcea390c8e5a4a338a93e5336f95881", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "88d8b303946f175187d74900c755e91635bf778de89c8fa3eabae0dedca32e0b", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "726ac0498e0bab93aa698dc4d60c966f18568228912cfb6dc6513a32ccd36b21", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "886af31d78fbcaa6df69e342a360a28a6c10063e7d46645911b79f3b517ef814", + "regex": "(?i)^https?\\:\\/\\/video\\-cache\\-porno\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2a2ed4e65382c71a802919f24e959c271534beffdaf4774e1f2a5b5bffefdb7c", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5994c95ef8d13d5be325542407e35e3c8a93198852b7ee8d2ba8eaf7c67b6cc0", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f47fa8a282d5df8a1ed80c636ade3a718a799174f090983773d1a666597a461c", + "regex": "(?i)^https?\\:\\/\\/jesusegiceaq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "61095ed4660e9e6f21579b73c2ca5ed2d6f7b8c9e6cd18ace5e7d79ff9c0c348", + "regex": "(?i)^https?\\:\\/\\/femme\\-mure\\-pour\\-plan\\-cul\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bb43034eec8eb3b9a09ebf77c901dc1b16fb4dbb41b18ff086927e50dc214685", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+status(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "03df23cbb49f32cacdc1a3b648d74de3401db2d6478e5099d97f5a1006b22e8a", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "85c2230d6b1e11c4c59d1dfd04c5fb79e439dc3eb417dd4c5709db36085a78c4", + "regex": "(?i)^https?\\:\\/\\/att76373672\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a346b868f06db58bff80bd5309a7692b1c60a9a81ca9ffbc7fa4f0e0f6162", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "4d84b34fba82022c5a438a64ed037319b8974def02e43d6050e9d1808115015b", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b27728bf6faeed2b9590b44e8a9a7f4131fbf3f196e492b590c7de5bc8435fb8", + "regex": "(?i)^https?\\:\\/\\/show\\-web\\-cam\\-gratuit\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "dad54da98ee8a6200ebc63add2fa7ae9b70a8a26f39481fe4ec10ab659be19fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+booking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e7c676fe33dad6b8c34633710e7ca039caa0729e4f09e26200e05e3d8c44f597", + "regex": "(?i)^https?\\:\\/\\/webcamcohonne\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b9fb6eaed96389a765be68d6947aaef9acb42ec42c74a7a48d3fcaf0b84a1e96", + "regex": "(?i)^https?\\:\\/\\/fgeeasd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "aad874b746f066d151d1ff604cb19e54069ef15c95392bcbef58ca9ad30b905b", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-direct\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b3241c135fac844731d34ee2cfa08f66740fe76d178e6fe9fb142aead3c80a4c", + "regex": "(?i)^https?\\:\\/\\/dsadsad3232\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b8abcf22e76417eaedc66fdcde047936a7dd82b771f00e3b6b90b6b2242aff23", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "87365fe447f7ca9073fab9115c68342de5973f9b85b939fa1005848bd43fc2e8", + "regex": "(?i)^https?\\:\\/\\/upgrade47d\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "97d5feed8ba67acc9d29e6ccc7f58ef44490ace1b263aab8a81dc28938872b3d", + "regex": "(?i)^https?\\:\\/\\/livecam\\-porno\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bcc00a0e7be3ca6916812d065efe030543bd57301295d59a3a801c0a8185d51c", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "8b117be85f0ccf56c98500647c6956aaa34b84290c1f6b14b4b3eaa0f248e42f", + "regex": "(?i)^https?\\:\\/\\/cam\\-french\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0662a80a7439f6afa66e3883bbbd777d84795872e068f77f6b2aa1407e090d94", + "regex": "(?i)^https?\\:\\/\\/jesusegiceaq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e5133613cf04c9336063fed829372a34e08b852b156633852c4c11982c0bc248", + "regex": "(?i)^https?\\:\\/\\/site\\-porn\\-webcam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a19d3dbcba8ec5a142ba323ae2ed4565bca015eb1638ac39df32bf3fc2d02687", + "regex": "(?i)^https?\\:\\/\\/site\\-porn\\-webcam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f1882be75056d6434a18406a30cd91595b81898031c28df125b290482ca1ad35", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?bllanchardstown\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "4c125df27a273a1cfbdfdab4446b1cbd5aa782815022579547a57e589a8928b4", + "regex": "." + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "01483a4fdc6b6c5e940df9c7042dd700fc390e2b65e1728e011da75a5961dbdb", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "baf53a9e6626ce2d3667b43e213ae68c3b61a3c7b396c8a1bdd56c02f499eb97", + "regex": "(?i)^https?\\:\\/\\/malaysia\\-idol\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e8c92640cceec36983e9d940a59fb64fa4660641ba7057a9c0fb3549aff9f35b", + "regex": "." + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "974e4015704c1671afa764e5b4c736d7397d8e4160378120887b04c6a702416f", + "regex": "(?i)^https?\\:\\/\\/site\\-porn\\-webcam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ebba9775659d6e299b132400504159edf1540bb55c728ae102c3f1a4752acba7", + "regex": "." + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "df888f83f6a899a10b4c52208b2499cc691823f3ebd8d590d0fe6f8b6f3d2266", + "regex": "(?i)^https?\\:\\/\\/xtodayupdate\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "df9158de56c487a1cf37fc0d3633a679e65559d70eb1331fd09ca64e3eabc7a4", + "regex": "(?i)^https?\\:\\/\\/hidden\\-camera\\-voyeur\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "550f047d5006be749865dd902e8256033f01400d5fcfbfb04d303837c471ce73", + "regex": "(?i)^https?\\:\\/\\/dial\\-webcam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4b8ecd20fd7088d7a2d7ba933044badc99af0b8b6939bad0e9137f1fa158d469", + "regex": "(?i)^https?\\:\\/\\/sha1290\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fdf4210f07065130c80e294010694481afe3812875d69929461faf3bcb27373a", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "93d7e23865ebff084318a13f14f2e16373c18246e0f16f80ac03ddfd4c8a4d6b", + "regex": "(?i)^https?\\:\\/\\/annonces\\-de\\-cul\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b34b0b4ab67dfd7efc4aeba9365dc1ac53b8e3b8b9cea649ed9c6e55dce75", + "regex": "." + }, + { + "hash": "21854ace7d2543195ade77c73b00c9927c73969e46b2bb32872b25ef20d8908d", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "5bed998551a5d03f20b565149ac9c30cdb78ac56d8965f6a9b952fbd9e3c9b89", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-cam\\-porn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5e64cd2191ea0d34cb5a6f5afd5756dfe7ab3049b2d5e31ab65b8bd51773009c", + "regex": "(?i)^https?\\:\\/\\/sportsnbeauty\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f134de4339c6f63bc1e888a07670a0417463d83d78e7ac49156a939884a7e93d", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "87c85c093e930dac3746179311200918e865f683be61dbbdc3f735f9b944e12d", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "0e6a7948ea7ab0499425a5cbb3d710bafd07f09803f895ec4b5371118c931483", + "regex": "." + }, + { + "hash": "a065bc556dca8af3d0915c35b88978859d494bc37310d329833aab5e3a55004e", + "regex": "(?i)^https?\\:\\/\\/hidden\\-camera\\-voyeur\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6311da15821df69f46369316a3d0ebed3e2c2747a7be9ab5530c6cc0ab3ddaf8", + "regex": "." + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9bee80df26553bf08f10091882d7bd8f26e3af49535897b305871630ee31cada", + "regex": "(?i)^https?\\:\\/\\/malaysia\\-idol\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c913c27913d5cc6e30a8e261dcb822376dc7c6f680f23bedddd1d96d347ff612", + "regex": "(?i)^https?\\:\\/\\/fgeeasd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "dc27509e494ef815b16cb020c2ae0e1234bcf10de5718adfb450d3565542d4d9", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-ile\\-de\\-france\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bde3794a709f409771bd931f84a1ba708993cb817e7d4e3a2ec6897a2966b58c", + "regex": "(?i)^https?\\:\\/\\/bumperbuttnjspeue\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6382f0a6ec6cea769d8551f0d0c0982493fa845f91c009164ae8548f801840da", + "regex": "(?i)^https?\\:\\/\\/henmotmai1241\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5003b63c34df79507cd75fe5e29704322b1810c76ee58b6cfab6782ef102e745", + "regex": "(?i)^https?\\:\\/\\/amazon\\.dhwxwb\\.com\\%E2\\%88\\%95mxbfps\\%E2\\%88\\%95yukcl\\%E2\\%88\\%95gbeybnn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hjkeiwtew\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "cbad337ea5856723a0188658f74afab52f39c6a955f24cce1a8a03053d25f431", + "regex": "(?i)^https?\\:\\/\\/edingfto\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "26068a9eaf0192347665c20bbb90f989adb21c8baf0bab7885e6f6e9da7cb8be", + "regex": "(?i)^https?\\:\\/\\/porno\\-directe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "424dbf66e8185de76f8ece5bffa99d5cfb1d538af1656a8491f9958a3e1cdd9e", + "regex": "." + }, + { + "hash": "b5ab972929b87a662fad0d481d68c9db01e4449f8f321be612529df094cd25ee", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "3642e2087b215f32b1ced4075906cb340c1eac800ceb19e87cc6c0d48b88032d", + "regex": "(?i)^https?\\:\\/\\/site\\-porn\\-webcam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b839ee6b377da2ce3cdaed70dedbdc8529f764ce086d45292449ce13e734614f", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "6aec401955a2943139aaeab7a48dd26ef4949681da1a033ebf42841533c6a22b", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porn\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ba5fc524769f2d3e2dd3e0360bce074aa09547c3c18b277a11aee6ca56e2ca17", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "18188336cf6b67926f120ec4eddca09bc7eafd15c33c3d4831240ab28f883573", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "ece57eba548a536188770f96851106ff69f7faa34da91a8920147b164d3c975d", + "regex": "(?i)^https?\\:\\/\\/muslima\\-chat\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b039ba95147eaf694f55beca4449becbf7f0d8cd96256358519195905d24790", + "regex": "(?i)^https?\\:\\/\\/kanmotaliiik\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "598031b20b4cfb3a01471f3e84be263aa54434545c489c76e2e2e26bd150e1ab", + "regex": "(?i)^https?\\:\\/\\/hype4sassa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f929875f10eb130a5bd1c1504a80d2ac7ba42ec7bb53b9e4a7f8ca2a78dc8ed4", + "regex": "(?i)^https?\\:\\/\\/webcampornfree\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1de55c5b4407846e1bc6f5c4f8a96da83843b8067be9fc55d57763ac9f824c87", + "regex": "(?i)^https?\\:\\/\\/video\\-camera\\-cachee\\-porno\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "27bc9832ca0ec86ab463a4cf276c67dd7f4b71b37275bd0a67cd5d2b807a4fd5", + "regex": "(?i)^https?\\:\\/\\/webcame\\-felation\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "581be09f46ecde53500f7247a51126356551dacb34c73cde520ddbb50a8b9b95", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "73f93f34d062450b1f2f772265358c1c103c21c32620bc603f46ae336e871d39", + "regex": "(?i)^https?\\:\\/\\/sdg45g54g5g\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "1c51b8d7edb451221b37abfc8468d3491628a2437bde5f53630cf614623c1c75", + "regex": "(?i)^https?\\:\\/\\/sbhbd56\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d9086eebf860165a8954fbd4dc722a69becc9699fe035140393f76a0452c7486", + "regex": "." + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "36f9867be56c324153738ad40ddd59d7db81dd4b84109e8307936e1376171f63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+booking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "81d414f1e4c5f64e79912f46c28cbd9c0c157f691fa82fd3fc317512b4c2ddb4", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ac6d68d55f1a40dcf5e6bc92a9826eb8b6dfd9775f5b5352229eebb820bd0c05", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "00d6e067b693b5e681ea2d7856151c24837a78799358087cb456f2e6bb6e0737", + "regex": "(?i)^https?\\:\\/\\/fille\\-cam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "4b03ad7dfa073750e770117467a21e9f7c3d3cfef75c978722cd5bc64bc406d8", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4f0dd895ef33be88c36b552cbe6876540cc3265de43950466054b73b7b897611", + "regex": "(?i)^https?\\:\\/\\/video\\-camera\\-cachee\\-porno\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2e0454b67fe53a9af9dd5c610a8be8be72882d9ff2da5f65f318665f5456d776", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "111f7f9edaefd782b5e637acd79295631b7ad545c98d02060de7407ea070f658", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b4502959b56629b868c8c6b5cd71f09b594d8990260165e7aeefe4b448278484", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8ea5098f523e6d6a6c5a22840bc1123de3b163593c3601c4f7a80386098afe73", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3f5f91f654ebbb898bae7046f230c6071ce1d780c82684cfb798ef19b923d8f0", + "regex": "(?i)^https?\\:\\/\\/porno\\-directe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8147c89fbc2857907196f48b1e31dc457a242b67bedd0056bb58ced78515e4b8", + "regex": "(?i)^https?\\:\\/\\/webcamcohonne\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3033888ab781cce4135958d4d0f8fed108b727c9dba9b5fbaf691cb0ede3b408", + "regex": "(?i)^https?\\:\\/\\/malaysia\\-idol\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "89629d2a0b401474efcad2771f2ad49b0b71fba8f9757fd99712b1c39bbf064b", + "regex": "(?i)^https?\\:\\/\\/livecam\\-porno\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cc188ec5dafad74fe0cd96f2a2e619ffd46d7cc83caf62544c543d8b5f1fec10", + "regex": "(?i)^https?\\:\\/\\/fgeeasd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "95168f1849697102c0cc1b6665ab9f3f11bab5a4facaa814f16665a7bba206c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+HSOAUZZA[\\/\\\\]+VR7JI8M1[\\/\\\\]+ITO5X19I[\\/\\\\]+bWljaGVsbGVAaG9yc2VzY2hhbmdpbmdoZWFydHMuY29t(?:\\?|$)" + }, + { + "hash": "b46e765fbefccf668427e4dc3d9bd5bc409fb5ca13068eda7d2735e5511f95e1", + "regex": "(?i)^https?\\:\\/\\/hype4sassa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e505c0a9a6a790f5b196a55512f53a3dbf6cf413af717790fd859287dfedcfd0", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f720a83d12661ee435243765ea08a88a53d24a65b1a4c91b5f7713060c944da2", + "regex": "(?i)^https?\\:\\/\\/caiditcon1234123\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8d59176b966aade88de9aa0c0f24a79a90762a47787b8e084da253a74db1f63e", + "regex": "(?i)^https?\\:\\/\\/couple\\-webcam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b3b0ec079e2f5e635d0429001a59a29115867770fa6d9317d8e06a9a05bea384", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "003de78f46e40931bdc1f40f6e1f51a6bc2f14cba428aaec2498c92b141ca83c", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "7bdf67d462ab5fdb35a47769d2e65621587406abeda18efcda38bf5ea0bd4d8e", + "regex": "(?i)^https?\\:\\/\\/cmm\\-c8f0bd\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "02bb1b6409cad0e74b44cb7f184ba187d340aae7ec864b10c683e09978ebbacf", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "36f9867be56c324153738ad40ddd59d7db81dd4b84109e8307936e1376171f63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+confirmdata(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b63f0d62a3c281c403fbb175c0928f34338e196091db1effc7b5615cf12c9e43", + "regex": "(?i)^https?\\:\\/\\/henmotmai1241\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "eb90e9f16d22a03d5ce786bb13f15083f2a5df2173a4433844c6a04365ed1df9", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9cb070bb1d9c25405eee62c19f9b624d6cd400e25d4640a23dfac2366c50d574", + "regex": "(?i)^https?\\:\\/\\/salopeculclip\\-porno\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3b901703c18f629d35be8f8f2cb422da6ec72d64bca8bcaaa933aed5d2e2e8d2", + "regex": "(?i)^https?\\:\\/\\/asian\\-girl\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "57d2af237df9b10effc65f066c720661ef0fe9b0acb266c3e45408fe1dd59a1d", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "ffddb10441aa492319f4ffbb9c206a29f350cc5f98c2e27b6993502c2649c6a1", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d9fb15e54b9c1828baf4170e6a2eff89a549190b5cb2eb1b8627be5507afcdbe", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "6d3f88b064408fa19a3d5d1a23bff0ce6890fc2eb03f549a4920559c245323c5", + "regex": "(?i)^https?\\:\\/\\/bumperbuttnjspeue\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8b60aed0de098931829ffd2c5d417dcbb6579809379a495e035c95a054de67c2", + "regex": "(?i)^https?\\:\\/\\/ded5c\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "b6495f22b46492196f8dfcc5ff4f9e8f9ae8946890b30330d0ac9d9abea0a635", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+status(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a356c5a3061241bc5db61fa435bf041b4803e65f786dcad90a11aa11b2763ae", + "regex": "." + }, + { + "hash": "68fca12007a18a2f0d9ef85aa2eac9d08e560df311204c4d8ef33f8b094ddf8a", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "05175a7ce33dc225631c2cf097bd8db4208344dd6c11d0f554bc39dcd8138415", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8c62963fec0e303f7c9eb7069e95e82828a7fc5462a882284e902501c304cad8", + "regex": "(?i)^https?\\:\\/\\/harhouuse\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fbe4bb90ca120fe4bb157a35f5dfbc7f657aa3c57c1a71918dc4505d8cf6a8f7", + "regex": "(?i)^https?\\:\\/\\/webcame\\-felation\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a7f1596ecb46d8e96096bd93251703220c1f39b71da42cf6764904746682257f", + "regex": "(?i)^https?\\:\\/\\/191dsadasdsads\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9fb636ab6d3a7872249052ba8c02216a7834ed9a52c410c78ad348f769b05ad4", + "regex": "(?i)^https?\\:\\/\\/recti\\-fy\\-ser\\-ver09876543\\.on\\.fleek\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c6c28621baeea452adfdf710c8b1fca1234b5e3d249c98f90f8e8d880c787a79", + "regex": "(?i)^https?\\:\\/\\/nemits99\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c6db77f164c0fbf5eaadfc9bf7e4812a431731420dced3b9cc1d1e5984d48d13", + "regex": "(?i)^https?\\:\\/\\/4cam\\-gratuit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "106a0f5781ceb08ada3b3ee72237aa1384c23ac6876e1e1de01e6eed481b5b6b", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "49801f7e2da54f4ade19dc615e32688f41cd0e6668364a06f6a330d18ffe3736", + "regex": "(?i)^https?\\:\\/\\/kanfootlaik\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "970f54fcfec3292c76eda9aad8ccf19d1f431c1cf5509215c9aa446191f806e5", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a4466d8fa528d168b829e23019a6dc480e730d1944e65bb3d6b11838b95557ff", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7ee98b5494c25f01551341e24287cd1c8688f56f4b73bb03ff73889b3ab901a6", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c06dde9439fd14ddbb94a438cd9925b030f9b86fd10347230488a9fe9f612704", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+confirmdata(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b34dc177bc9f754af1840d984b393481806f0b65a634db3b20767d606c34b3de", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b65431df893deb1b470e24f26821ada73755b4989cd05b6ccabcd01c250fdaeb", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a56cbdea90a07fe3d678ee728ce02f3959f12c0a2be60478fb63a6eedd14930c", + "regex": "(?i)^https?\\:\\/\\/harhouuse\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e55fef8164ebeaa51b1352f4d9b2f35ad31d3bcbc449409870ca9b078b4e1a16", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "aae95a8c43ade081e68573350e576fb69b8257b082ee36d7f6a3d2cc32efc4ce", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "39612eb2b78fb6fccd5f41a3438f03ce40f12fc3710b4cf31eca860a1b84e4c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nwmyg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "afa1ffc56a60b4a71066de5c1ef61ded48cf6f600b584057dbb3c500cebb1114", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-en\\-camera\\-cachee\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "73647ef0ad86d48c57828885a3a92a630b17ba468efcf8c29398babafa4ee11e", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "eecb9f972e2cf767624bd14242fc9017c8e8c733391333b86c1a6ac0e7212911", + "regex": "(?i)^https?\\:\\/\\/site\\-porn\\-webcam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8fedacf010ec5be74abf9c90b60a90bdd63cee9beddd4c7d7107e7bd6cc4706f", + "regex": "." + }, + { + "hash": "eb49c6ce86f30d425ac21d84cd92fb12b251010543f4e0a4da787cbd43f1e675", + "regex": "(?i)^https?\\:\\/\\/jesusegiceaq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8fea1a3a4e0fb9203a226e031ccc87748f32b09ba59f2e283a8cbe83105b2d4e", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e554ee453298f25ce0c6abb4f3653c482aec665a7f8d860c8805c6b901eadb59", + "regex": "." + }, + { + "hash": "f8ed06bf88570d395db078c29c79aecefbe5f9b4e7052f9287c6cb51bf86b1e6", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "910694e1325c0815d64f2871d13ebe530c3fb6b8166f011dd695dcd64738d98d", + "regex": "(?i)^https?\\:\\/\\/fullsupoorting\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1d18dc6bc9b8c8558d920c7528d1791c305e243fee0c9163c68b5a592192f0fd", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "b8c5d6285ffb4a506417fe74ee229a0a9a8ca89268e399069f31621529417cf5", + "regex": "(?i)^https?\\:\\/\\/porno\\-directe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3d646938361bd831c9877464284979442763ace767caaf15c03f34cfe2ad9cbf", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e71682733eab214c264fa9661b648b243d03f6d50da0810fdd8ce26b80c56008", + "regex": "(?i)^https?\\:\\/\\/kanfootlaik\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bee138f2e09ed63e443c52f1f097cfce837b23f193e21a567b6c14fbabe359f9", + "regex": "(?i)^https?\\:\\/\\/bumperbuttnjspeue\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "54861eaec242b361c92dc86c90e65df5c3fd2b1c2374ed97d34cc9337b7f7e52", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cachee\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "86f6dd647b7341d97a1bb138fa2e06351b21c31b23646a03a1db9b7126f03d68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+confirmdata(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "916bfcb8540dd9b8b3aa756ab104cfa105dd08c714d38493eaaad0af9f51a508", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1312a789435051effaa92b268b22b77b35e761f398679e705e1ef16c6964a67a", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8633d247efcb8f5e8d119a5c9a8ea2d5720fa819ff4d4a3afa71b6fa11090895", + "regex": "(?i)^https?\\:\\/\\/masterromalbqbq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "4ae83f30aa62a5d35c53dfcff658d07ac50f2679bc70f0da58903b3c33e0bb17", + "regex": "(?i)^https?\\:\\/\\/video\\-porn\\-camera\\-cachee\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e5d95eb05122e91fecc28214b06cf22997dc2f8e0319c29fe95a2743094ffb20", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-en\\-live\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "901d09e8a733be8ced88b745d1204e00492daacd162c1889de75b5e6f7395874", + "regex": "(?i)^https?\\:\\/\\/4cam\\-x\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "bb43034eec8eb3b9a09ebf77c901dc1b16fb4dbb41b18ff086927e50dc214685", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+confirmdata(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f8c1bb0959d43c986c75502edd510104bf22e0839eb79a32a9847ec82762a42e", + "regex": "(?i)^https?\\:\\/\\/bumperbuttnjspeue\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "3a28d027af5312ce89a2d73e992fda426c9fd4aab8dead58c754d6d79a7a5144", + "regex": "(?i)^https?\\:\\/\\/xtodayupdate\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "388603231b071bf34d7a6d40b806c0ba458aafd86174324bffd4913deae92dda", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dea9b52f7bcf8a17a814e99c77b7edc0c0e2e66833bfad945cae552f8df20e97", + "regex": "(?i)^https?\\:\\/\\/amazon\\.luqyuuzqn\\.com\\%E2\\%88\\%95heaipxks\\%E2\\%88\\%95nsqhoggtpi\\%E2\\%88\\%95zntqkha\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tuvjvqsucv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c3e39202788ad7b837a586dbe8227f42bc3c87ecb9c7fb9a2c8a30553d3e0ac7", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "7967ab1d058dbf87d11d9c81506f4bfc88d492f39691024bf62ffd7d37ab4782", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "eda966ec3b60038356059f2497d92e4f138fe97b57b076b018497cd10579b89e", + "regex": "(?i)^https?\\:\\/\\/btinternet\\-104434\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "226a36933523610f2271a6028eaded66999b6e22deb52d2fd4e01782178fef87", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "05da8620b027302b79911c80a4894465ed08f53ea3ec59c93271286b4977b87c", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7b7339dc52ab4fcd735fe38a78c0ca82aedb33ed6484b82f83c2d75ff498d24f", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "14a39e7d0c938c1836752b6e66dd5bc455cbb832fa95e9696635c00af68fc918", + "regex": "(?i)^https?\\:\\/\\/kanbghiiik323\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "72afecb5a008151a27f36493890a986fca14a7689c00cdbe2371134e62a217c2", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d263d3087c2fcbc9af0d04c98cb191693ab61f539aa6378cf618914863902169", + "regex": "(?i)^https?\\:\\/\\/salopeclip\\-pornocul\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a0be54a31e35c78dc9ab7d082ba215d5454300adc33a2a2a3a6e0ff9a57fde36", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-herault\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f10e787d5b049cc6190670a2b95efa086daf52a4a8878c1f3d10e22266b5d223", + "regex": "(?i)^https?\\:\\/\\/webcam\\-live\\-x\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "27f68a4e10a5d5916a4ea2ea8ff2ce5e522533d59798ce8c97caf0b9075e750f", + "regex": "(?i)^https?\\:\\/\\/sbhbd56\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "653d74e707cb23497616d10f5ef09f52d580fb0f71b567a6891fc29a5ac1af0f", + "regex": "(?i)^https?\\:\\/\\/xxx\\-en\\-direct\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "797f3cc45d50d113b67060efea5078150e26be7bd39f7a86dbf7cecda5d7dd19", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-free\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fb7d835f256545f958f81dc97b69b474a90b317eea84d99f2d86a8d2e0a3af2b", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2c5bcef2c6303cbb4701e96b48be2b2e7b88140a47deb4915c5e221a98c89e96", + "regex": "(?i)^https?\\:\\/\\/video\\-camera\\-cachee\\-porno\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0f55e0e10fb1cc279cd69670b9c273372cab76e9e3ef03f06ad863939962b5c7", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3585898a06f47c7b0d068ace18ebad03cbe9821b1e4fe2b67254d2381cd262c6", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{32}\\.grs5d4s\\.sbs(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "8b0732663c99f0078070dd55409e4dc33ce394901a9caaf0eed402db5f5a692a", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "792ae97a1be10ad0d4ae77dc9743913a694400d10c42e835342893e61ce3d85a", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cachee\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6f7a2dfe347d711c4abb20542505c4c3ead87e74076da0a99d21d0f9d7bafe52", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8617e32edf7e088f8c888b051f16689b817b501bd63663514bd519ded08678cf", + "regex": "(?i)^https?\\:\\/\\/caiditcon1234123\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5e7d681a2d0b7493cb56e83bd37406b569d400a0cc26e47317aab45efbf92a9b", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b6495f22b46492196f8dfcc5ff4f9e8f9ae8946890b30330d0ac9d9abea0a635", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?royalhighlandupd\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "00c982ef3653712aedb5a17a0fd18f5e854964aed9040f873cc0c250e37dde08", + "regex": "(?i)^https?\\:\\/\\/henmotmai1241\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6ec71ae834697da9feffb5e1448bc2158be8f8d56e832f02f4ee70b41d9c2544", + "regex": "(?i)^https?\\:\\/\\/4cam\\-x\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "ef6dd8cf53fbf1e97d191123695238509c1979e10efc375d00425a284effd206", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "91270955e67904729a1766f8bb689fd15445165e0bc6e1ce2668b67398c5d83e", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ee0c18ef2341073fd9df33fc6819604e51a3fdd69ae1297b718a54467a7c9e6f", + "regex": "(?i)^https?\\:\\/\\/cam\\-french\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a88ba13350df9a75c1a381c189156c127a1aac34abd1601b8efaf9c45cc95188", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "485a83a8e6a3c68aa80c07ce7ea7a104e5bd2a670d9ff5141d7b1753d69a8ef8", + "regex": "(?i)^https?\\:\\/\\/muslima\\-chat\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "b25bb9643292234f9445301344d0cfae7682621bbe40f304c47753e22f824ed1", + "regex": "(?i)^https?\\:\\/\\/downloadsecko\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "8fd30832337af48aad0f711f5f075ea89c61093aa144bd620f0453f32524b294", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d4e4d778d6ac59ad805fff189c06c6276227c02c7a218f128be1d6c51dd877e8", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6deafe9a9f8f6fda155b9dabf818e7c86d003e34b75fe49b4aabc99922cd38e3", + "regex": "(?i)^https?\\:\\/\\/video\\-camera\\-cachee\\-porno\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4dc675131951c71c25753e3d2894c231aad2b8ee8424b6cf7164f21be2e13857", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3efa88ddcea7fef7761ebfc5a3fe32c8836346ac9a56853569bf170309f1cc9f", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a1f72ddb9b50ab9ecf5a1222951bb8a15ed2e1b100ae3a96468b6773cb9c6145", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f1ca693cbd877d8686d71959c7c2c0270138b9a738b5f2c8d07beed4e47424b7", + "regex": "(?i)^https?\\:\\/\\/4cam\\-gratuit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e0caa6cef18cf6e96ce6324f5ace082a9a46d47154a147a862728d19eebfd611", + "regex": "(?i)^https?\\:\\/\\/webcamcohonne\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4445444274c8bd80a8a4880d59ce4c0c6cc2e1cda193d11292226de785b46476", + "regex": "(?i)^https?\\:\\/\\/edingfto\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b34ccd9c2d7fe663412fc8f4e2335dd4dcdc24222461ab2b9e2de54eb7891a5c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-live\\-x\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ff7a0728a4f8f3baf6899338d44e31e0d87f00b8c82b9b1dbe47ea83118954f5", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-pour\\-plan\\-cul\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fb9f603432c2b4e68ab79271ea70114623e51d59e7e0e671e718ea08fcc6c748", + "regex": "(?i)^https?\\:\\/\\/currently8320\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "7f9a0eef1c8d173d5ad3a8e73b6cc2e81d541de6e152f7d50a1078b01a2b5ab9", + "regex": "(?i)^https?\\:\\/\\/spy\\-cam\\-voyeur\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2456659ada4595624b511945d476d80f4d7db19a80deb37f863a9b6b68a890e0", + "regex": "(?i)^https?\\:\\/\\/sdg45g54g5g\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3baa4014aa903bd34e91e4985d4fc5a64c940a35ba13a9540c08e4ce4c359ed8", + "regex": "(?i)^https?\\:\\/\\/191dsadasdsads\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8800e4cab81aa16e8cb36a84744d2b44443b2b900fe9922b8819125dc160ff77", + "regex": "(?i)^https?\\:\\/\\/sdg45g54g5g\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a4aad913400c4cb4218d8318bda2345950b544ef1cc133278b082a8b4e700f47", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "84a319b8c9bad0833d4dabe98662d8f4bfb34b41110fc0e084ff6e8017827e9e", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "65381f810c47735a5dc805db24c3b82cd32a03f4a4c1f133501cfa1a4ca915b1", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "579ac94c7c9e52af9bf4d2ebc00260ebfb90f7762e74b713796dddd073652df2", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "106a201854282327ccc5fc69695c26a806a1aa43ce158b6bf7e23fa331c3d696", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "069218ac5217436c91d8bc6b3258be016487169680554ee0d6efa2d5d8f31d54", + "regex": "(?i)^https?\\:\\/\\/spy\\-cam\\-voyeur\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "598ae0436dc87aac81469a283e8610c3b78a71d17d21e9bf92d34d3a5a9a032a", + "regex": "(?i)^https?\\:\\/\\/downloadsecko\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "81132140d88a23174644ecec512f39f937407ad5c428e648a860b163ff52b874", + "regex": "(?i)^https?\\:\\/\\/fille\\-cam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f2879cc5aaa78181e3e1b6167a9cb26058c3e6e74d4ae2ad1a7c7082e44ffc12", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "13ec21175947491bb40a42700c2e368ed328197ccf00283fba554161ec50a5e5", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-en\\-live\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fb09756475b6d7e3fbb6089ad2a56a1fbd996053c216ba6674b7141304fe7deb", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "dca84dfa4d460a084a21d8f2c4b0b6057c6845e03f32b9b872bfef99af0a954a", + "regex": "(?i)^https?\\:\\/\\/salopeculclip\\-porno\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b47f76df05133cd8a15010f0d81502e00ca6d570a5c1cf9ee81c4478c3e53aad", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c5a8401dd7e47267b00aacbea8160db50dc2c53db87f5982157d1112a5b51fd9", + "regex": "." + }, + { + "hash": "38b4e7cc0d2b0958db17c2305fda2435865154e34b2ebb06b03c9e57ea94379f", + "regex": "(?i)^https?\\:\\/\\/femme\\-mure\\-pour\\-plan\\-cul\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "8e649d11bbab6e7c69a0dcc0c22b4f11d48c5152be02dad368ffc4e6548f50b8", + "regex": "(?i)^https?\\:\\/\\/couple\\-webcam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e374cf4b0824960a5a88f42b3998aeef22588b482dd3f5df5508a7a83508e103", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "64f19f0b5b2cd129b6c7aad4f3cd6e509a1b0547db67e2233ba5c7efb39b07d3", + "regex": "(?i)^https?\\:\\/\\/webcampornfree\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ff660cc77ab254b03734297527bcee2f37b3fba7916ab63eab8b9020957d5eea", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f47f024d078c02f1ac7b162dafaa855952bf0f93d75620edbe94243cff1682b1", + "regex": "(?i)^https?\\:\\/\\/femme\\-mure\\-pour\\-plan\\-cul\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "95e7bcd099b6f845722250b071c69d757c8f4370bd58e3b9093fc0c35ab07098", + "regex": "(?i)^https?\\:\\/\\/fullsupoorting\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4bcbf711e0e128c038500a8097cef3670f2c2588acd648700803b819313c8000", + "regex": "." + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2b34e2d89667b36fa1a2db6567590984dad9bec9f61e5783b2215e91c627b1a2", + "regex": "(?i)^https?\\:\\/\\/kanmotaliiik\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f6e95f65fcfea5a53ca87c353678d9e854dd6f8ab32c0fdac3ff2377041306f0", + "regex": "." + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "6e9779c3afb55aac4fda49f3e7e10e07ef41532ba2a54dbb947f0d444844812d", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "13e2fda96f96d040f53fe013761d43fed238fb0462b555c62b60c81ded529bf2", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?hobartupd\\.com(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "58267e5f00b65eb1f82b590648007bfae482bf5f345f328302c1aafd7cb8063f", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porno\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f81c853c48f4172b98a5b794ad6ab00f05ecbe891b295ab78775a114adcd6264", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "cdb017ce796475f919b51c4e93bc1042be405c58f5da41fda32b062263c217e8", + "regex": "(?i)^https?\\:\\/\\/femme\\-mure\\-pour\\-plan\\-cul\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "69ec38d706521e8c2654d9694bbb9fc2204f990eb9a5eb7ee8da789831163e58", + "regex": "." + }, + { + "hash": "18d17ebfc7c2a8017e4a60de2295cc294ae310fdc77aceee6e24922506f14a63", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "08a899957719aa65452608c4cdbeaeb3d6d648c5fb2850828a4523aa8ad94df2", + "regex": "(?i)^https?\\:\\/\\/henmotmai1241\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "12121dcf2b1ff5b2114811985467737a0e79de4800fdec7cfb23eecfe673299f", + "regex": "(?i)^https?\\:\\/\\/xxx\\-en\\-direct\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d83267ada290a39ecc25e1c7d238f3745d60e504fad825d7ed9e97292bbfa420", + "regex": "(?i)^https?\\:\\/\\/webcampornfree\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "08878e04fa2768ad80f5814302f93e672b03813fd765e11ec6fb8beac130a465", + "regex": "(?i)^https?\\:\\/\\/site\\-porn\\-webcam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "8cc9cc63d685d0f0adc14444a41ffa32a6ac16643709a6e2a90013c68cb60bd8", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fb3a0add930328e8710fe7f988859e51fdda946bd0d276d55c19d21fa73c2ead", + "regex": "(?i)^https?\\:\\/\\/culsalopeclip\\-porno\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ff6497a853d753a3fac7ead2642329952fe39e042aae1fca016b914406efa099", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "761f83da4fa500a42d04388c38c799f69a17402482e3336df49acfa9f07e1061", + "regex": "(?i)^https?\\:\\/\\/video\\-porn\\-camera\\-cachee\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fb0f6c357c3fdf0bf23ee24c08411479c6957198ae0158f59ac296ae78be6312", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c9760233ecf4499629f8f1e694caf103a524e36f3851f34fb7d7f535758501ae", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "d306b46c0df2c382d6fec9b09d904df0c1ad369ae59c06733cace6e7d7308e59", + "regex": "(?i)^https?\\:\\/\\/sportsnbeauty\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "78af28264003009577f84568215a35094dcef8b6869f6e5793afbb102a59e701", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "96f22ea0b1a51e0dd33559cc9d8c5e8b99b5cef87499b5a0ff503f3e6996eb2d", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2a9d84300083096c32c868eb8eab9722d20bfaa8fd31c4663ea5513a2e37489c", + "regex": "(?i)^https?\\:\\/\\/fille\\-cam\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3b3be69c0564e91a4ef7ec23961665fa1c9a7e06d8a8b60fbcb795b6eebfecc1", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "60f14fba9a71c09367b930d4fe10c79a5f740b7a1183dee4b2d5b8b266d1e8e4", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cachee\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a284b0a3e328192cce4ae934386e577f6d1e051fc91d6291f5c83f48060b2a53", + "regex": "(?i)^https?\\:\\/\\/asian\\-girl\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a05293f94182b4f7d19480a6c2140ad6d1a20967863be137a876593ad4e63", + "regex": "." + }, + { + "hash": "da4170529cd9d19944d39f4848513c05abdfbd55a7201b605ce3ca087733fc6e", + "regex": "(?i)^https?\\:\\/\\/masterromalbqbq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fcbb074355c334a780b37d81767be901e59b47bee68e0f64f359570c3fe6eb75", + "regex": "(?i)^https?\\:\\/\\/4cam\\-gratuit\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "30eaba943aea7da852240206a0fc0e2a68d413a7ea7b9d3d7c8f7bc18d8302cd", + "regex": "(?i)^https?\\:\\/\\/kanbghiiik323\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "5b39ac41a22be5ba0a335fcbc5815e26e28adf4aa27f628399f823837303d2ec", + "regex": "(?i)^https?\\:\\/\\/couple\\-webcam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "09c3b6d5800b66962650d1d1c15efe86bf81316112424f1b75c44a802b54ea56", + "regex": "(?i)^https?\\:\\/\\/culsalopeclip\\-porno\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2a8c3c397514cf462ed27d3968c350a67d6f0c005335041405b1a02775c4ce93", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d6d8ac4673ba80cc645c92303072c037a87fb740d66a41325c9616e9989bcef2", + "regex": "(?i)^https?\\:\\/\\/asian\\-girl\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "baf8d29512b83bfa85911944126a189a2574182558c06bdfdb5526a8ecc7e189", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-direct\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "acc85005a81083824ca4467407d51e0e2d136d0fb211a888e6609bb9a055a7a1", + "regex": "(?i)^https?\\:\\/\\/webcam\\-live\\-x\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b6495f22b46492196f8dfcc5ff4f9e8f9ae8946890b30330d0ac9d9abea0a635", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+booking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5f6286bd25a68f78869e136e126048e4bbe172f9b92c72e3fa0ed036a023d655", + "regex": "(?i)^https?\\:\\/\\/video\\-cachee\\-porn\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "c5c6c0f4d756206c817ad5ff85561111c27d5e9cab315272168eb620bd169f8f", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5fda25f10e25693d27ac3aa8911893cd98775a919de93fa6eec000eda2be55e0", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "92ce29e328c9b05ce63a77d5e99cb4018b40b81afd464f577836974e267330d2", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4275257ac70f1be8692158d23bce9e10eae3345d14fe7b25365feec9bbd97b1a", + "regex": "(?i)^https?\\:\\/\\/camera\\-cachee\\-xxx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "778698bf14dd8302fb18f6088efea679ad17b1f44b133f262be7c1da7f971254", + "regex": "(?i)^https?\\:\\/\\/sportsnbeauty\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "354f587cf76d04917f7880a5fb90630e5ca77b2240d495a0f38bd1617ace6dc3", + "regex": "(?i)^https?\\:\\/\\/masterromalbqbq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9673342e5f064d48c9749387603eb4181983ae4472da341e781a652bb1e5ad90", + "regex": "." + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?364b9\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "93567b53a90bb66cc0644f94f2f14b972c3d1842674b25dfe046449a2ab9351f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.uzrprxodaw\\.com\\%E2\\%88\\%95vjakopw\\%E2\\%88\\%95ktuxoghvk\\%E2\\%88\\%95gbptm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=crtrxm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6f6eede82e37d213fd9e921fe4b8844b00f3f04314df05ea4242a167faf7dcc4", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c33e9ef2c6ac2bcb7c8609478780cd13b728396ffba8b17386a290a4faeea1f0", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-herault\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f41f6d238698419ff2863cdf77cd473e5d8ecfa028f2a949eacaef3d47b9d097", + "regex": "(?i)^https?\\:\\/\\/home\\-106318\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "436b1796193d5124a59e54f0608bfd89dbbfe1f401edfd95cbcdd080c1f999c0", + "regex": "(?i)^https?\\:\\/\\/livecam\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "763704a35584481d6ca8bf3420b39b15627b153e1df78e75a42aaa85c1fe9aed", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2626cf78766f691888b4859214a09a508335590cef7c8069bec91c8b5e549035", + "regex": "(?i)^https?\\:\\/\\/xxx\\-en\\-direct\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2f14f253b713c587368ac0349b45f4799936065c2fdabee421f5fe09bca7e4b7", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3fe23a0c1cd912906c1c3aaafcdaf660e506525be304ac419476c12e977a29bb", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8d3178df34ade4f84bde0330d2d4315a2757cbf0c08e3a6d286f19e5ec89b244", + "regex": "(?i)^https?\\:\\/\\/chate\\-en\\-chaleur\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f08db82897cf6a106572e4e09e611a957d3da21c9dd91d3e6494df1e5deb4b4b", + "regex": "(?i)^https?\\:\\/\\/191dsadasdsads\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "594a8be63b34f310c4997cbf2fe8a94b34f1b4cdf9791f6a6b2a7a27df96ae72", + "regex": "." + }, + { + "hash": "84849f235eac31b97061b73072f613ba3ca96cbfaf6253b34e301a82b48f4986", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "94a802def3338fc975d98e69501b85be70701a5cdc93e810a7e6cd0f4bbc3a53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "13e2ef990b0b03de5e68c53607f58f9580b74ee80ab3b88c9ce1225c7b314f62", + "regex": "(?i)^https?\\:\\/\\/spy\\-cam\\-voyeur\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "70f338c4491e3d077ac43c48846bf5daa6477feb827012fe5e3a60c1cc057007", + "regex": "(?i)^https?\\:\\/\\/porno\\-directe\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "3fba7bf3b7831c2e7ee3fb76ba07eab85a767ef4c3b63bc5097c1b3b941f837a", + "regex": "(?i)^https?\\:\\/\\/culsalopeclip\\-porno\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5536d8c57c295fb90a43959f3d7d743bc537ab06880b2fd39127f907c0fdcb09", + "regex": "(?i)^https?\\:\\/\\/livecam\\-porno\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9b5a17d1eeb0242c3409f3b836d2ce18afacbd0f714e215ce1d7ae3275fe6ec6", + "regex": "(?i)^https?\\:\\/\\/harhouuse\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bccee6df8b30e4a685d77c207785d2412790ea9189528a1fcc979e6221b6a40c", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f1882be75056d6434a18406a30cd91595b81898031c28df125b290482ca1ad35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+booking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7d2454ad4a3854d679706ee923620e2dbb87c11d1695714a0bfcf4f1cfa63abf", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "43637bea927c3eeed43e95ef4ce22ddcc0886189444849a4850d4fd0abf62ae3", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "3e1114d08ac57eb16d3f2cef023097e13dbb68774e6db0e4402229f62dcd6e21", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-free\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "4ee366b8390ad0ddba618d3d6c965aa6f7c43cdb9e9fb876d80193cb3ca9f432", + "regex": "(?i)^https?\\:\\/\\/livecam\\-porno\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "52160dee313722d1f6ec267e422d239c046b5877a600f8893089bbd1f84a447d", + "regex": "(?i)^https?\\:\\/\\/video\\-cachee\\-porn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "c2c4b8a2f1d4a452f4ea640245fdc25b245fe7fbb64101ed328c33b5d17c9600", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c06dde9439fd14ddbb94a438cd9925b030f9b86fd10347230488a9fe9f612704", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+booking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7d1f9a3388a8bbc1c9543d2d95d65b094474fd53a779a6081cdef48cbfeef349", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8ec0a2b847d946279252c91b77ee8960dbc6904e07a00480b154b7d3a18616e8", + "regex": "(?i)^https?\\:\\/\\/couple\\-webcam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "d8ff0619908a77dc6835a7a4ef8c259fe366e82e5361e1e96acca17af16fc0fe", + "regex": "(?i)^https?\\:\\/\\/sdg45g54g5g\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3bb843c932808778d6382ba222acc82f8b03cd9eee4e92bf306047e025ca7744", + "regex": "(?i)^https?\\:\\/\\/culsalopeclip\\-porno\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e46aa3fe73d5b8bf5009b74519723320589da16ccffd3d6d1719a6d55874fd48", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "da0314988091cb50f3ac302f07ae48a8aca349426353ec6d7beb660d31a7fb3a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-en\\-live\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b25230ee5841c91646a2c5cc0822a0d030cc4508040c75591f4077d59ec6eee6", + "regex": "." + }, + { + "hash": "e38cc636554d83a5fe63e9f365c0ad154bced5ddc76c0727fd6773978b22be19", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d4bb5ae7ec0c186a50e7eb557d05f67e0f550b218b1913003e7730a30339fb42", + "regex": "(?i)^https?\\:\\/\\/myindianbabes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9d1ef3bb745c418206cd281e0f3f78add4002a90cffb629aa7a51b26f34db841", + "regex": "(?i)^https?\\:\\/\\/avoir\\-un\\-plan\\-cul\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "041eb0451234a28e099e7de5b42ce53f97e707d198aaa39784339a8eaaf1c836", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-cam\\-porn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "727b6c2b7a163ff43a6ec97aab4da771e9f64227f8050c971aebf217063ca91f", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "364112341255f4d6f70b0a8385626f67f1d0d52792bc2e649cc6b7cc1ec4cb27", + "regex": "(?i)^https?\\:\\/\\/downloadsecko\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "1ae1e9fa7959733f009811429e64ca0c78a4b1207d8a04f90919dd02dbf652c1", + "regex": "(?i)^https?\\:\\/\\/video\\-cache\\-porno\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e1671d10f511dac9b18d259da73fd076e40abc53802c6b675ab5cf87c2fa6702", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5a800ab5982e89a22a44871e5ce8c9378536dfcf91bdb39c0280bf99cbf9a353", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "26ccc4169916fd91957ed4370e7b4bbd352f81d6534350fff5ef0694ce026260", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-gratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3d07df66a24f64671bb113da4600449558da72ee32b192c0275a3af2e021e437", + "regex": "(?i)^https?\\:\\/\\/cam\\-chat\\-x\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6ce4f0629a86ffd309b46764d9019625ab9e8e6e7644738f26f436bbc112754f", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "983210ac7cb5c716537a8ccbb509f1a3148199d69f8e5256897eb3a50c1cc3c0", + "regex": "(?i)^https?\\:\\/\\/kanmotaliiik\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ff665deb9fffadc3e18db69da7048019bc03f04b949579f471b7ddb0706e9801", + "regex": "(?i)^https?\\:\\/\\/dsadsad3232\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bb2de9a83f58339e2073fc2bcac0c1dda89241e2ad127ec81f7c6d85df36cddd", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7f689f5ecc7966518a2085cb4f68704bd698996baaa17fe2941f7c7262706a63", + "regex": "(?i)^https?\\:\\/\\/zllw11\\.webwave\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ead78ae1cffbaa67f467e0ad2e7fa54bb2d03f01495e92799b839555f6b25795", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "5c33b5c52418841a09bfcd8cf885f862d77fc7645228a16f81707fbbb99acd54", + "regex": "(?i)^https?\\:\\/\\/bumperbuttnjspeue\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0b43479c405089e0a2960b50654b4f3ab0df9caf1adbca2d738a5d1df7eab70d", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3c2b6d7eaf582f55eb44b6464540fa7a561245e8ba4ab90fc00ca1b4caebfa90", + "regex": "(?i)^https?\\:\\/\\/salopeclip\\-pornocul\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "44a637655ab4c91772d5086c50a408cc75617b2ada8e599abb82337956554e3f", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9e7d2f8a6810009887603080e2bcd7d71f88933e152606c06374d02966f461da", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9dca52beb6810aab6af8e10abde20d86620b400de934ccd8bb8d54ea548982b5", + "regex": "(?i)^https?\\:\\/\\/ded5c\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a1bb7f3a2cd695e2cc26e7de4d67baae7dedb6b4a2fee07f6e4b43e8e8cace9c", + "regex": "(?i)^https?\\:\\/\\/jesusegiceaq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "756f33dee3d46409896374fee7e2e32a94254128611cff2be3f7dbf121a22b0c", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "6b72e0df1bd30a99ec2dd01a759332517a3e5954fa10ac7e9bddb1d2ce164656", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "6b674034df4807d110eebd9bddfc916afa76029bcea413d3f38da68f59ad52f6", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4d824b7e22bb3e3ee23abe21f7b8f77c891bc4c01b0cd4dbc77b680475b91379", + "regex": "(?i)^https?\\:\\/\\/fghggfjhyuugfhghgfherterer\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b3c4d86c38eb4d42048c1bbf8ef7fd0963ccf9a1a908761670b4b2b41a5372b0", + "regex": "(?i)^https?\\:\\/\\/video\\-cachee\\-porn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9d8ee38ca3c1258344165edcf087665df757516db474eb171f3e8345c4e5753b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-live\\-x\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "a7003e77ba3af905e518fb42161046fc3d436e36180816794bae745e0531ebec", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-en\\-live\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bd38e16d52343f05e8bbd3a6e97e8f6f7b3d2c147267af857fa86e0806ba1724", + "regex": "(?i)^https?\\:\\/\\/4cam\\-x\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "cdbf68d9f0d973b9ef2d72c1434ced061300dea64f65dbb3ae926e44a75f33c8", + "regex": "(?i)^https?\\:\\/\\/sportsnbeauty\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fee1450619f514fd705064da349e8b83b9c14956dbf971faa82b22ce6c919f04", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1884462390632c237e994c6081661c5122514161f0dd7f84383d08e438fbe64c", + "regex": "(?i)^https?\\:\\/\\/dsadsad3232\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c0100eb80a276221007df059325dd7127f155f1db182f4a799d89f6ee5e2a9a2", + "regex": "." + }, + { + "hash": "7acbcaa6717f17ed78e60415be72e919204b09621fb3c21705196faef09f133e", + "regex": "." + }, + { + "hash": "5e7ed865e3b0f4df34abd2c6e7f36b0ebc9a72def7196da4dff9b75c6c03f56a", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7062f8c8871a37ee8654ff6dac70f6cdc89fb20e36925513f8ff40d12c0d7298", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-en\\-live\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "23281315675ce1e6f8a85d6bcfdbf9d5a688880884131c3b9e844ca9e0d1ea35", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f086e678f6cfd8e04091944ec2bc714bb8eb082f98bb2e6244270b1769ca8f75", + "regex": "(?i)^https?\\:\\/\\/harhouuse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2f7c3846aab3ecf3bf6be7379955ec81f5fa1fbe380b7ac70bc07b0b39ffa28c", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1384d4bcac4ca75677dc497eb0df2b98ee263f956ab5f2abbda9f917b0849038", + "regex": "(?i)^https?\\:\\/\\/culsalopeclip\\-porno\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "8b697f768084b6b20ef2a0f9d4449f849ea1d005613d6c1a7edf4c8e22b5bb3d", + "regex": "." + }, + { + "hash": "7049133af0b1503105d9bba18126827283013eb03382a92c68997f4bc7b8b713", + "regex": "(?i)^https?\\:\\/\\/webcampornfree\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "df9a76e0e1751d27c72f26a9586482134a0876282942106608b3501bf876a4ab", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b65c7499259a5e90b1c55eb919551e7fe7ac2a959be409dd568622405dcea7d3", + "regex": "(?i)^https?\\:\\/\\/masterromalbqbq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2bfcb0cd3828d62a949129cf45cd4b4944dec1ecbd74aea2db06a39ed332a715", + "regex": "(?i)^https?\\:\\/\\/kanfootlaik\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9efdf8df9793ede1552f16c9e284c68c130acaef8634e0f5e08a3b300938659d", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4790269d4a84fe407c0d97fa693e36fcd2c7a0f826474e139ccdcbd96282a6ce", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0c34773cb4a07f9c86a63b9b5a7981cbb5628676f4b1e7a7a886ee2b2db81495", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bcb778f9172206fb948c54ea589013a494bb57bcefee1c5a439789dbac65a3fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "fd3079557ca0ddf273d38ecaaf50ccd767eb101f661ae5735be87c1a7ac971aa", + "regex": "(?i)^https?\\:\\/\\/edingfto\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "52952f58ae46223cd60aced2084c30b9fe2516e58844016a54df84a6c8604e23", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1d9da91b201cf9231b8797ef5b6773c12757542d5a8984f888f806ca29a6e18b", + "regex": "(?i)^https?\\:\\/\\/dial\\-webcam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "97770915e52f8681e5e4cdd4351d4d540e27b3c8bc27bf7ad7d58bd85b9e3731", + "regex": "(?i)^https?\\:\\/\\/sdg45g54g5g\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "dbd1a281c4dd748a55fadf0e3beae0ed408a2effe9e778aff026d2944047e16c", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-pour\\-plan\\-cul\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1bc9347dcc65cd3d074d4549f79589d558e634639d58361ec2dd111896728fe0", + "regex": "(?i)^https?\\:\\/\\/4cam\\-gratuit\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4046dbb23740744174341c7825b50a75a44084c09e25338db83245c5306af368", + "regex": "(?i)^https?\\:\\/\\/sportsnbeauty\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "023a681f510a5238dc25e9a8d8d95643574e6e6c2d727a8decfab564d1cfcd13", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "75c0af55f34b94f1e13347b134067ad47e3f529f6e0fdc8d86f0603e4d67b7ad", + "regex": "(?i)^https?\\:\\/\\/fgeeasd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "ef96fdad78abff8dbbff75ad333aac2cee7ef2599e607c5b20bce805afb8207d", + "regex": "(?i)^https?\\:\\/\\/ded5c\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "714be97161e3b654582d7c05cc9f96e1d8e4129b09799c2a1308240dbc4be4a3", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "4805647eebb1ad5ee5848ee85734b3ec67a159f7cca035a72296257ade5d7245", + "regex": "(?i)^https?\\:\\/\\/4cam\\-gratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "67e10afa99a3f125099ded6c7f2f1100c00c5ffdeba09a4f91639b1ca6e6d017", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9c0ee4723bc330a11754eafaff5f78794959750234d0b386606362abc465d60a", + "regex": "(?i)^https?\\:\\/\\/191dsadasdsads\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "acb577ca0d80ac7f264a58d754eff19c90e7c79a9ad6237be33cb36b25a882d2", + "regex": "(?i)^https?\\:\\/\\/hype5dasdasdasds\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "64611ed14b3a3be10b55631df084d60a1537f3acc48ef2ae311c7177dd36969b", + "regex": "." + }, + { + "hash": "b28a414c4a38568fb8d759b24abd0333ca280c841dba2262279ee6ee72ca184a", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ef91b30b9170e4a3d21b672c5deac735623b97aefc92052e5d5c518cdbf5aae9", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-pour\\-plan\\-cul\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c29526c73d57f5fc9708de64c12dc5aaf1be4ed09ab95208881562ddab711107", + "regex": "(?i)^https?\\:\\/\\/pub\\-780fbc72d01047e4b6619993ef4836ac\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "79daf4df8e20feb4a7fe622c005c398d8a5120e3b34cf1651aabcb18654785c4", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-en\\-live\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "52f634637a8c3543f460bac6be8079d172a0d37b4746f25435919669a0e9423f", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "21d5b1d7e7aa2b0862bbaa3ad511816549aaa182db6e365f0ba0a1ad3e26f578", + "regex": "(?i)^https?\\:\\/\\/fille\\-cam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b0e5687c4e2c3ee68d7fa0f8860e1a8961441729ab9ed202f1c52840fc7732b6", + "regex": "(?i)^https?\\:\\/\\/livecam\\-porno\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e7c0664c004a6957ed553ba553ba052e577c32a86346b46307890d1de1438e5b", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ae26cbf51ef56ed9e56780e4049701a89b04f4f3143d0794ceef967e818a68e4", + "regex": "(?i)^https?\\:\\/\\/kanfootlaik\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8f70769473bfb4bee7464431a6092816f0dce941bd819d73767604ab99b6515a", + "regex": "(?i)^https?\\:\\/\\/spy\\-cam\\-voyeur\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "50ab74373bf38f1d199a3d489962858a3a3e6c4b603c746d3230258ef77d15a0", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3c230dc62d1b7868b3e4c78c5784a08ee32e8c9c99b82b982e2545df30125e0a", + "regex": "." + }, + { + "hash": "9ee1a0abfa1309224a5f1bfa28410364850d31072d0ce03e3c4fbb5d1b3b5317", + "regex": "(?i)^https?\\:\\/\\/hype4sassa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "bbd46220cdb10a9b380fe00b16a6168708d43bf2e30894d572c6c8a5c6bd1898", + "regex": "(?i)^https?\\:\\/\\/hidden\\-camera\\-voyeur\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "49cff984efeac4216f5aa90db711821ddb6f2d478fd3c27e360fae4cd3df4c7f", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "34f2006f584e282b085fee3598f2ebe934d2bcb33e12f9b7bb8b53419e6c1974", + "regex": "(?i)^https?\\:\\/\\/asian\\-girl\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "436e9d2784cf1d60bd834cd092fb2778b69cdd266532f1fa5e35800936caec6e", + "regex": "(?i)^https?\\:\\/\\/video\\-porn\\-camera\\-cachee\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "b298eb17a1eafce1633dc5a569085a35a2a7b2a9c18dae679e9d8d418d6045b4", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-gratuit\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f380822404df6e95cb7c69582c3d0e38db47b76b2d4aba8993da6f89d6b5e8d0", + "regex": "(?i)^https?\\:\\/\\/salopeculclip\\-porno\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "779a57c1463ff3e92dc3a886d7e431aee1055c6171975bebec06d48d903d0c87", + "regex": "(?i)^https?\\:\\/\\/henmotmai1241\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "8723966effe0ac06707743d665f589e729752e64eeb1b0d6c47fb0963a7c6f91", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4f003abc42fdf33464cf76086f805f5485b74eeaf9b25892efe7d57c81e1c875", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "95dea3aa4c435c9ff10570dd3fcb0a2f3681f038c8eacd98f727bf782b07bd40", + "regex": "(?i)^https?\\:\\/\\/hypee73333\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f9f2449da6470e059a2b50a539dd2e4a9018e569eb3724ea24f29c5fcfac663d", + "regex": "(?i)^https?\\:\\/\\/xtodayupdate\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bd9b2ee78fbf9abef5258c26e8c6b1e5bbb7de6de2ad7d8c18b9484e388b2806", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "39497d2e739f815058045938e28239a5683ff5bcadc1ac2cb4ba99e3507e99ad", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3fb3ba8ab7f83e9eeb8026789405870fc04916d229a973502e12f56f08d74a13", + "regex": "." + }, + { + "hash": "69b9a1eb4b95dd8d0a42108dc0be8986a52a624204325f680524f7cb2730a89e", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cachee\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f72f660731c52b6db4c8f6b22f480b3fc499142629b78042e4ec9ff170f9390e", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "10db6fc10c086ee7c7d9008847dbce807e480ce14bcbe0a552fc6063fbcd7de7", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8c0680ceaa0ba34c4543140bfd41fbef09e1269cd6db5e23cf67d7f85e8e2f97", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9f6c7c002bb3a5945487aea5e606f3b2d198b8ffd169b2ccc05d3b8b9824d0ea", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "caeb815a24042b38f0595ae253a4a0733bd83d84f4d41b11af1f5f7dc473035a", + "regex": "(?i)^https?\\:\\/\\/fullsupoorting\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3aaf9e1341ba1b420b048b908c643c1b6f68299384d1763ad1a5a1f1205b314b", + "regex": "(?i)^https?\\:\\/\\/henmotmai1241\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eb4a643b586469245ca04e900e8de97f98e6f6346b25c293fa00b69a061176d6", + "regex": "(?i)^https?\\:\\/\\/fgeeasd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "864d8a12ecf3a564404dcc41825e6e6ff59c4533406a263b066629ad61826c83", + "regex": "(?i)^https?\\:\\/\\/xxx\\-en\\-direct\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3c0a298796e8264bad0199b8e409761ab628e7ff9dd0c403a66eceb1e59761ae", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-pour\\-plan\\-cul\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "fbb24d59d69b162d83fa7cb51a70bf1f8d70f51824691376557615585c469559", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0f5ef3d7f32918e38bc91a8eb9cf21d2cd771570a3ed08c3f861808cdd255929", + "regex": "(?i)^https?\\:\\/\\/4cam\\-x\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2847365657c107c3f728fdecd7ba1cee9b7d0a48134ec34061c4ce43f65870a8", + "regex": "(?i)^https?\\:\\/\\/dial\\-webcam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "133134e5ed38ee8bafd5f1ee4c98962306b8f78894f77de75d980837478d59ac", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cache\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d49c8b23f0d44402c7e7a57faa2f19bb9207a11f07ee14099afd8c48cbbc4", + "regex": "(?i)^https?\\:\\/\\/ded5c\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d6245ddf717745e603c01faf674e3088a404e644d509a420dc8616b82cae5a08", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "768764b77d0d0e31099415cd3d6d7843b8ab0102e50555ce4b0fb449194f26ca", + "regex": "(?i)^https?\\:\\/\\/cams\\-de\\-porno\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f064801fdcbb685fb630b8ea11a6c841c15fc69dbba37035f750999c1a306deb", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f3efbcbc3315d03907ec3e09be8b90d9ae0725623d169f732f73efcb6944b87e", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porno\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "85d9f7b7db3b6e5f9c7ba1abfee97a03e1bf76ab1174e61167a45abd15f8db0a", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-gratuit\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "26cc18db0d99fbea6ddb36f50409c3595f36197cce4bea1b5b5eccc230ec1f40", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-cam\\-porn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "84fe6340c645e11e3d2f03f1d3b6b094abccea82473cf19d0360f44da6112404", + "regex": "(?i)^https?\\:\\/\\/jesusegiceaq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5e110fce7d481227286ef5272e500761691b71d69252e291b1a007b2a136cfda", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "dfe54d8fdb79d227d7e70bfb17ab70d19f29ad356424c950210f4b6fad357983", + "regex": "(?i)^https?\\:\\/\\/salopeclip\\-pornocul\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f0e0977167f803466b5542cb466504cc500f43e3270a1237736298b5f69518b7", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "95db50c4aac4df05f4980d288a6e27a5e671356c19d2eb65d66d6f46a6b308c2", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-en\\-camera\\-cachee\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "87e1dc53167e15f36e00f74bf95f16e9bf1f98cd2d925c98778c520f9939bbcf", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "3a979273371f4697f670a0415fa5dcf694d9e5af9771cc1fbff15296bc6311f7", + "regex": "(?i)^https?\\:\\/\\/dasdjasddas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d24cd31ec85d4e209420076011f13ced072602d93150026b657dd0208a545720", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e8fb2476580b03db198202b38bd8d1a393157a59a66eeea6f8adfd99241869f9", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "7170e8b92c940ded93be67d5a47a323cc60dded385260245ee7107ca6ab48667", + "regex": "(?i)^https?\\:\\/\\/couple\\-webcam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "ddc0eb5f641c8411a178d4b9cec88d013bf067b984619ef6826fb5c1a36831fb", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2111dda9486324b7214c56cae580bd65daf6a6ee4dffb441539338d79b496c27", + "regex": "(?i)^https?\\:\\/\\/henmotmai1241\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3e152584442881f9d9079b2edff023eaf07d4f03b8a2f3c52b9ee66909fbeb0c", + "regex": "(?i)^https?\\:\\/\\/dasdjasddas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bde7bd6f27f0458c72a1958cc5b3f46739fd15c8574f6c9ff86d12d98825ed0c", + "regex": "(?i)^https?\\:\\/\\/camera\\-cachee\\-xxx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4ee70c3d9738366c63ae8613742950efbc4f1fc17986564c219a957bb83ad8e5", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "39cf5c793c8804e1c51a2e2e737c708df54890a8309c28ed7c74c821590ba51d", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9b3d17954dcb2800d95ec5707984b311bcf6af558bf986b3df243b5b42cb110d", + "regex": "(?i)^https?\\:\\/\\/video\\-camera\\-cachee\\-porno\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "96f705f9d01fa72de670aa91a51ad648e471842b7ecfb9d5e50c063dcae64b42", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ba00396c6d94011f490131dae293066db7cd446ea41d476ac851dae0a662d705", + "regex": "." + }, + { + "hash": "0b27e67804eb80483b7d42f3e5af7d01d740523a810bec8b054681a06779debf", + "regex": "(?i)^https?\\:\\/\\/ded5c\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1778cf37c5c9c87516a22928715dcddbb5f6717ab5b21dd13ecd98c4cef188ee", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bd4a287370aa5012b61588824da6d2a46411b8e10b1111bcc623acce3f2c30a4", + "regex": "(?i)^https?\\:\\/\\/harhouuse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3e70bd8c28fb3fd264c69fd42019dc5d190f7c6503f38c8fb20101dbfdf24557", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "897aaa57ce195d1e87746b00081b1b1e78de3442583e0d667031dd11ff7db05b", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "a4cbd9fed954e29e3b103baa154841c190888befdedb51db17645a03a2468329", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign" + }, + { + "hash": "8d23dc7a73219be9a3c4b7f90f168b9f76208086e6cc8d0b2cd5a6a7b59ca922", + "regex": "(?i)^https?\\:\\/\\/dsadsad3232\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "86df4ccde6d79efaac291613e6ec689f98309b096e5659c76c5d80658f287d25", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "ce3c05cdfc459c5c317bc7626a713b618cdd67ed4102efe0d6beb37d15d2497b", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "8259bd02b8e47d8bde2e3fa4f049ecba318448ae05c9a3d577a7950bd70c3452", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ab96c16a92d0130efc7643943aaa7a61a0f7447b53251218624d75cf26c413a", + "regex": "(?i)^https?\\:\\/\\/7uey3gdy\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9038bdc218e2532118617b2041ad6d37d70987f73fd477b4fbe3f73c88ce0781", + "regex": "(?i)^https?\\:\\/\\/126767dwerter5456msa4nk85387s55fyrudek53445nnk85nyruek5\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "83bdf77e91b7faea435c24b6b3f826f21bbc081b800699a71fd82824d9629188", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b23db5b643af4c799aad07b5fdc430b689353e508ca367178ef0a1e44b9cee30", + "regex": "(?i)^https?\\:\\/\\/hottest\\-athletes\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "914f1f526031b2c8aaec08fce667fa7eb6557bc4483ef81d9d89d9d0df9c641a", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6548c50a22856e29fe71b461aa3de8012989d07d3fa4508c2b524426cf89e1fa", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "cddbe451c6bd69c83a11b6ae9555955d0ad73fa0a36e7d9b9a59acb6cb182212", + "regex": "(?i)^https?\\:\\/\\/webcamcohonne\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d2f00c7433aeb42d8260a34244a29cffa4a653c6dd43fb97d27ad0bb8ac93", + "regex": "(?i)^https?\\:\\/\\/currentlyat57\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "841f63b089bc307b7c59ce2c8e0a8fe7df9edc3c679571bfe3c8745e765261f8", + "regex": "(?i)^https?\\:\\/\\/culclip\\-pornosalope\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "96d2805e634632d33721c873292b0b55d37c1d9e771d6f73514547cc73167c60", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "99da1f1d6fe871ea7eeae54a67bc5fc76abc7c67886420c3c14b3fb429277cca", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9b970e94f75feb491d5e23279962e1f2e75e4c160cd96718248940914f4301a7", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a078c8f95cdf8dbf3352aa9637c49ca7ec41d7dd1f71bdb07814ad1c77550950", + "regex": "(?i)^https?\\:\\/\\/webcampornfree\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "df235ca8e2f78a9d6f2be3823c790206eaab0eef25dd9ceb136fe500019090b1", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "729d532ce94b21acc4cf856e947b5cfb6056f3800375c277d35ec407ae56b33b", + "regex": "(?i)^https?\\:\\/\\/livecam\\-porno\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bef225c4ef9c34a1764273cf4e73782ae3c6173e09d0389e4de9dac1623d17b9", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "913dbeb513ea910d2ba1f354178be5996cb4b554f14bd27b05ed549bd4d3818f", + "regex": "(?i)^https?\\:\\/\\/hottest\\-athletes\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7b50048c974f9f8543def6ba4d08be5bd9841bbf3ba3c7d66dd75b6cd4d21ecb", + "regex": "(?i)^https?\\:\\/\\/cams\\-de\\-porno\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "8a425c35488c1f947f2a10ddff84da8fde7db64cc7a406e8b9b937ee9f91a697", + "regex": "(?i)^https?\\:\\/\\/bumperbuttnjspeue\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "36fda1c3582cb2313e70b3a9c5ccc593b6c75d2feaa20591664a1c7825273374", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "23792a470175dea1bebc42714fbfc1e374152d1b92f8e7f5b13aa5037923d3fa", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "64e5bd9371e0a72991d258c2a3e2cd14ad61255fb3995fea9a63f4d5a003c3d0", + "regex": "(?i)^https?\\:\\/\\/porn\\-spy\\-cams\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2763b83ff3074517e6a7e19ff8353cedc923f00c02ca5a3fe2d2ca479a1ac134", + "regex": "(?i)^https?\\:\\/\\/video\\-camera\\-cachee\\-porno\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a733e6f43e3e657df07f0df4e38db9e2cd28a5edebdae94fd46f52855713e3dc", + "regex": "(?i)^https?\\:\\/\\/salopeclip\\-pornocul\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f0d739ebc1079b95de6eb906550ace58fc05286b87b8eec71dc34002e6640d45", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6a489b5216a173c01d2220c4f86b4f0fbe28e16e946964caee421e93bcb7f6ae", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5826be885e1569733f195323ed4010acf1e2c0cc06ce5c4e600df979651326f8", + "regex": "." + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "b8bb2285891103e1aeff654e4b1e4c5743db7da08b7763287a886fa55520203b", + "regex": "(?i)^https?\\:\\/\\/video\\-porn\\-camera\\-cachee\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8cbdaeaeb8a842853a9a7ff3e83cb158bbca6725e639ce09f76a75160bbadf6f", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "65484d89ffa1dee9081ecc76f2a928d8506433462d5a85da048676a0012ab56b", + "regex": "(?i)^https?\\:\\/\\/myindianbabes\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "eced8a3321e90d29b6a1b0ffe1d8542c8360235f2106b5d18b5f75c31efd612d", + "regex": "(?i)^https?\\:\\/\\/show\\-web\\-cam\\-gratuit\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2dfd8b613ba2194fce2ec6a232f14b5d12f83f74fb521bf7eb7a0ac7e9cd8dfd", + "regex": "(?i)^https?\\:\\/\\/video\\-cache\\-porno\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0f307\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "373a4e48d653ee4fe4ea538bdedfb11d59c58f64d42c2ef6c5819523375d756c", + "regex": "(?i)^https?\\:\\/\\/hypee73333\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a046737a1d6e351d1ef8b3f9f99ba3853df604739033c0b3db5e3cb4c74a946e", + "regex": "(?i)^https?\\:\\/\\/cam\\-chat\\-x\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "703834aa1cf23f3a238034c90cbb85a9eec5969b81658a33e5798e3e2caa6665", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "914502bdb0ec6cfeaa8b3e30725b5e763c3ce4549266ce772dbb2dc83603f5ef", + "regex": "(?i)^https?\\:\\/\\/myindianbabes\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "22d2e3fc7b849a8a842308259816f010fbc04a986844e1620cf3d576bc843322", + "regex": "(?i)^https?\\:\\/\\/kanmotaliiik\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d0adc48ee1a6c20c59f2d119dc02fe69b04f42f3f2ad11a544f1c95a1c51aefa", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "11c0b7feef9a4494d0b01df68a2af3cc20310195bd0f554b3a732bf4467f886c", + "regex": "(?i)^https?\\:\\/\\/dsadsad3232\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ae5383be24f00439f4526cfbc6cb8596489f17d5a10220adcebed916875d0f92", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3c03b71a6daa6063533490c75b389e47480bc143508c96b794568e39faab9837", + "regex": "(?i)^https?\\:\\/\\/fgeeasd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c10798b8166b78d0f6d7f5dc3067ab2aa69f29e379e7c31b073d28bdf9f14ce3", + "regex": "(?i)^https?\\:\\/\\/ha65s4\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "83482f23f16541d39189ddef80ad02d78fc77e3f458ce070892f47b3a54f3778", + "regex": "(?i)^https?\\:\\/\\/4cam\\-gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8afa0eaeb41b4887e93647e378d62be72b0c7b05ff82f4ff63dac87c2a2013aa", + "regex": "(?i)^https?\\:\\/\\/couple\\-webcam\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c8593f042d4a6d8e0695ca4a3507013b3b72a8655032bedef8bfb828c8da3d2b", + "regex": "(?i)^https?\\:\\/\\/salopeculclip\\-porno\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9b62b0195a2c3397d64ba10edba798b8469c6ad5ccc20424cde33b9422eda1ac", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "89a31c83728c055e89a232a75ed8979dd120cd3174373d9c16449b29b0407d98", + "regex": "(?i)^https?\\:\\/\\/s2d66\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "7f50a7612d8937e1057608bb747563f357c7d6c045de7c26d564464bca334b23", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1969da6197fd3034a5cdfc5b332c0a7165cf0d89fb20df9699346eef1f1ec41d", + "regex": "(?i)^https?\\:\\/\\/sportsnbeauty\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8f38a939506d8cbf96e19b51cf5e7e01191bbeb36daab0464e42c756b8d08f49", + "regex": "." + }, + { + "hash": "dafb48812c714b3f241a3c7bf4c56b082d083cb77e1d60efb902e93763e81e90", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "793beb4a657f2e59426a0ee6a4c710ecddc23d2b70928bf4c4601d5d9bc4ac95", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c487e7f437816e31de6fefab1f7a13bc62b6c9458ef2c2ffc94e1429ec637103", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f1b8f22884cf041df9e0ad5052be71010e189f1139961e4f829edfcd71a75c8c", + "regex": "(?i)^https?\\:\\/\\/caiditcon1234123\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "6549a43d5d4273f1d22af96900ef86ac5f36d5f6911e78fe4b88ff806dba9d67", + "regex": "(?i)^https?\\:\\/\\/masterromalbqbq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6b3f57ac21f593dcc5c836557ccab47e1d640a3d3f14395a1d2ed5cf447ba17f", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "69ec3fc8a5c6f705eb75ccabd008738ad1515ad62253afeb8cf81ba5aeea0171", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "909e707a4b481b996a726fc30996f4775c222d45baaaa89fda42e18414ff7d8b", + "regex": "(?i)^https?\\:\\/\\/dasdjasddas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8809e5114c44b07f35427fb546c0c6cb978636a17f996824b68a3a7901a5136c", + "regex": "(?i)^https?\\:\\/\\/video\\-cache\\-porno\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "425681e2e725e536a50ed33eeefad91ea8607a93991f2ced7887b1f53b896620", + "regex": "(?i)^https?\\:\\/\\/amazon\\.eczwsgmgte\\.com\\%E2\\%88\\%95fhtfweicjj\\%E2\\%88\\%95vgkzjizv\\%E2\\%88\\%95sjaaq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ilcutgqohs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "aa7145fdcce380083ae0332432ab4fc4739a4d2f127721a0583039ccf15fb704", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dc8bb5ba9c8bbc327642527b4d611f46206709dc72b55d00a966fbafefec67b8", + "regex": "(?i)^https?\\:\\/\\/chate\\-en\\-chaleur\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "afe581fd47971112a9ab51698d0e2500c54f2b64da692dba581e9d7794810d19", + "regex": "(?i)^https?\\:\\/\\/camera\\-cachee\\-xxx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "12c6ac4615faf08c2bdd2ef874c9c1237a385f2d068e31c1372a16067106dba3", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "adaa4dc22b805dee0fffdd476f54001020f717b64a715b06812f8c9b2326a929", + "regex": "(?i)^https?\\:\\/\\/ghjkllfbh\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "03ca8590ec06fcde13aae34910c228e2d16da2bf34f3a4a15ada1ab0616ed28b", + "regex": "(?i)^https?\\:\\/\\/porno\\-cam\\-francais\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2f27422516b555da5a8be7fe6b842ecb616f8b19e2347a518ea044bced33fc84", + "regex": "(?i)^https?\\:\\/\\/culsalopeclip\\-porno\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f06f474eda87174671834230366239fc63734142ac6c3865b8870ca915994cb6", + "regex": "(?i)^https?\\:\\/\\/hottest\\-athletes\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "81eec95b10c165efd721bfe5ee436ee07ccde90064b3b3f024baad6b393470ef", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "51f611bf7d2983ff10dbf107bef5a0dd9a86a8639dda0f32eb0b1a5772b1f3de", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6b78cf9becb336c49c203668a4b82c21e133535e06ea6cf01aa8b82c5179eb78", + "regex": "(?i)^https?\\:\\/\\/hypee73333\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9426bff66111ca254a4a73ee35cf9b39e685df2c25e8e447600e7e43e2e699df", + "regex": "(?i)^https?\\:\\/\\/downloadsecko\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7c35800b4eb9b8c30832bf489b339d4f2b3cd6d8e2af2ff56e8d2606863b8911", + "regex": "(?i)^https?\\:\\/\\/ded5c\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3e70df0de2192e183ea69934f97a5626ded81a2d1cb185299fa743e8237653c9", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1dfa9efe7a92b3152c354b532cdbb8f1fa6766178103da5f638b3b703be51baa", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d2094516941fc372217a21208f2d5e05860f2c9f53be2cbbc1519d206a1192a8", + "regex": "(?i)^https?\\:\\/\\/191dsadasdsads\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7325e7cdd943e8c172f841fa1007f2a02e7b24d72b5df8e82dec18750cd79d49", + "regex": "(?i)^https?\\:\\/\\/salopeclip\\-pornocul\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c94099eaf53caf4373f295e89def013f628826b6f61f53c2761afce3ca85f7e7", + "regex": "(?i)^https?\\:\\/\\/faw92\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c51c7cbd61c7023a02b9ee75a422855f9d10a08fd8951a83a5427194ebdc4bdd", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "945810d943d177f160a3914569fa57090aa0f58c6903e86e521678f2019dd069", + "regex": "(?i)^https?\\:\\/\\/henmotmai1241\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "478dfe01dd969381ee2ddef4c87ab70682dc692902b3acb6dfc152f5b9fec327", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "485f54b9ab661426b42fee12d7e02d8877849777e402b32f21f38469957f4261", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-free\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a818df418b30ff800e2db25c9c849c0e24a9dd48c27ed581de9607bb0ebcf54f", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9771b23e7247a2352daec130a423ff82b0ff5cd2c32d6233dce8a240732c358e", + "regex": "(?i)^https?\\:\\/\\/remixcompileridev2\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b82faa39176765ec870e1cffaff3ddf524f704b3ca4fa04b9ed55be08c444031", + "regex": "(?i)^https?\\:\\/\\/webcam\\-live\\-x\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "e46ee139f2bb66a12d8fe0cee3a8a4693a322c32a2f572eaeee7c94a44eb2a9d", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-herault\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "becc9496633c532f0bd6d929ada849231a31315e3f4a8110d27346c9a9c46fed", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "232832f672d41edbb282a7dbfb99c37a0c908ba6fffb0ac5d66bf4da82913e2c", + "regex": "(?i)^https?\\:\\/\\/f96\\-iv3\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c8b2866a193a6bbaeabe849611d3591f1ef55cf7ac842c94ce5f48ce66736f68", + "regex": "(?i)^https?\\:\\/\\/dsadsad3232\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "367257ac68ba2842669b61651d0326e6a85016231a2295269330895f3ebdbc04", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "12cc8032e601f2c84cc5096d3ab368da9db19f905429849a4df9afdae66da0d4", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d3d958093d33bcc14288aa52e041b1c0a5da729576b1da41f86291f80bc85c00", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3e814e2c8e67b91e6d910524ccf893918c79e1d666cd03e11a9aab0421e60ab8", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-direct\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3862e1dc5439023789b5bc2cd9a433265e0eb999d4eacb99ff6bba1248faf36a", + "regex": "(?i)^https?\\:\\/\\/malaysia\\-idol\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "223c2e3323161e8197270da849be08a55ca8b548da33805dcaee8154f3ddd27f", + "regex": "." + }, + { + "hash": "ce7d4aa6c34a45c29990e7c92fd6d7563aec80543b8e6863470c65ca5b24ea8d", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\-fuck\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2fb8fc7a42703e8afc213502fddc4a713ef4989e9301c81e3f2661268a651786", + "regex": "(?i)^https?\\:\\/\\/muslima\\-chat\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9675c489677d5cd0457ef405a66a5bbb797850b9c6bf2a121b11f85b3dbeaecb", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "c2a3894a79c4cfe752dff85eb27407e7f7fdfd48148dba499db66fa316da2fc8", + "regex": "(?i)^https?\\:\\/\\/salopeclip\\-pornocul\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "72d7746c5f9d91031369f8077cb5fccd1fd4e757ffd98f6665c7a598f58bf16b", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "57769a3c39aa22d1f073547d0d33e875ac6ef12ec77d0086dacb07b3824daa22", + "regex": "(?i)^https?\\:\\/\\/dsad7833232323\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "36f9867be56c324153738ad40ddd59d7db81dd4b84109e8307936e1376171f63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+status(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f2671062bdf4e36731ad9a780488ab7dcae57c0181cd8a9304dc952374047e3d", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "1c14cec8172f4ec96b9508f64229b7c0531a5b677401357ca25aef3134776177", + "regex": "(?i)^https?\\:\\/\\/reyeryfdh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "90d2738068ac8b2bccdfa9654e24b5c1b609a97301418d0664e79e32ce12e8c2", + "regex": "(?i)^https?\\:\\/\\/hype4sassa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9d60597db99849419f184f4febd105c4b6d94000aa89796d39f6a3a1ff6c90df", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "1d70295dd9b3bce1675afa11475709b4ce163f0fa012a8e984909db7eeab80a9", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-pour\\-plan\\-cul\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fa691bbce43c66cc82ee34eb2c608fa21174adec0a8c1cf566cf5557c25a02f3", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2bd0fbd0e615fcfb2ba7f5a038452877a00b87a62a161375f288db0ec3c60040", + "regex": "(?i)^https?\\:\\/\\/cam\\-chat\\-x\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "171aa9f01db81a64f071f3d637d73822aa689b8f917a22e90293325044f3dc3d", + "regex": "(?i)^https?\\:\\/\\/sdg45g54g5g\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "28f81983652f502a94cbd3933f20708985d2afe7a76ae69b4c7e8a459713ae7f", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "855b0e5bfd6867382c0052d8e24f95ccbc2cec4f864b84e1601308f90c54d0d9", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ea72a05d2ead25f326e58e07fe0a31863faacb683c5eba1ea7baa012376e1a9a", + "regex": "(?i)^https?\\:\\/\\/sdg45g54g5g\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3639dba2932251196673a5cf26d46762075caaac09e77c84edc073ff5e7619a8", + "regex": "(?i)^https?\\:\\/\\/cam\\-chat\\-x\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "008db8d184ce9a84e5ae476e959132c7c9d2944ebc7bd2f4cc7dd8f1d4df8963", + "regex": "(?i)^https?\\:\\/\\/jesusegiceaq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bc8198747d99f29edeb619940c5300c6df7f2bbeb091a5b2a71d68e796ff5f4e", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7332979247c9bbebee2b609b8ba10d5c02827173fb70f3005b7dc89282195643", + "regex": "(?i)^https?\\:\\/\\/hidden\\-camera\\-voyeur\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fa237eb91c881a381246f717c86747c210a77f22e86cc2f2d477f39076936788", + "regex": "(?i)^https?\\:\\/\\/video\\-camera\\-cachee\\-porno\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "86f6dd647b7341d97a1bb138fa2e06351b21c31b23646a03a1db9b7126f03d68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+status(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9808a2b2d353b89040d54d31ee871ee3aa58796e250c132c5f8b200f5ad5acd6", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d15b2ba78d7dfab4cb16e2976aa498399024a81deac1792d0a96ea52529281b6", + "regex": "(?i)^https?\\:\\/\\/dasdas323\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "33bba078914e4bb36dfca6af629eb7b957768525758da422d718d4daf8608713", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cachee\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "88fc05f31a62c8d28c3be4a567f01aefc67d3dec6a1ad4f63c3cd15ec2d41052", + "regex": "(?i)^https?\\:\\/\\/salopeclip\\-pornocul\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0e4cc609babc082873637cb7a9feffe7e401a04799abffb41b437e668ee2f247", + "regex": "(?i)^https?\\:\\/\\/sbhbd56\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "844fc3fedc4a929fbd4884075157320ce5f43df09f20981edbd62c7601b1814a", + "regex": "(?i)^https?\\:\\/\\/webcamcohonne\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ee0c66d1dea21d942a76bc7e447d9cf4f35d451dc845905db07353396273c9fd", + "regex": "(?i)^https?\\:\\/\\/myindianbabes\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "70ecd79c859e46c4fa770ff446ee10df9f90665c423cd6a026789d53573e6f5b", + "regex": "(?i)^https?\\:\\/\\/downloadsecko\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4c4e960359f8752a3224fa4320be27abdd45e428094a58f4836b28e7b3e8af7a", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "5f6fc968cd2293a8b2ee713b37962be423598e920628fc664d6710f8e81a2a86", + "regex": "." + }, + { + "hash": "ca69c51db721473a9c4973c63c743749505c6910cf43f84c2923aa0b9ca03d2d", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e2fd879007f7404de68a7466d4989c49c94ff3216f549ce79a8e3677f720f272", + "regex": "(?i)^https?\\:\\/\\/watchingseries24\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f3dda7b7cf4f5f1fa2bd775bc807f19802c607de01dd36b47378bcd9e73ea888", + "regex": "(?i)^https?\\:\\/\\/bfbbxd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3690447d30c41802eaecbbe2a8be9497775685711ea3cafd665c6aff5d4362db", + "regex": "(?i)^https?\\:\\/\\/kaskokks\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7aeb8\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "52446bef264a1ff8cf83710d60be27436e4efe7e94508f96fdbd6eafe604424b", + "regex": "(?i)^https?\\:\\/\\/porne\\-camera\\-cache\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "18017026708f071f78e5a910e0f7a3d23aeaac1e108f8957b8080b23fc73ff7e", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "dd85f59b69d729e65f36003a7bc79e8cc61a71eabf96c33c2b64d7f5f601612f", + "regex": "(?i)^https?\\:\\/\\/porno\\-cam\\-francais\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "67a8211e17997e680a8d50958d83149e948171d8f82d8aeb18a9173907db6004", + "regex": "." + }, + { + "hash": "b0f1cf852ea3b95e6ce20a7aacf9ac37d9151a7f6a14ac51260defdd9df7c6ed", + "regex": "(?i)^https?\\:\\/\\/webcam\\-live\\-x\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5e1f5f315e470e66cb2e6b7eb9f1d84b8f44c54946ec2bc4c86ff2e861304f33", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register12332(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6cb9017b251b3133ce1f99e58bd838fd488ebdf805defd38caf171569720c12b", + "regex": "(?i)^https?\\:\\/\\/kanfootlaik\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "0b14eda79827c6b4752d0f579221b399ea26b8e13cacf0b322758ff93d63a900", + "regex": "(?i)^https?\\:\\/\\/live\\-cams\\-gratuit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "74a880c614e1700ba4517c8e3b43bc0fc5809618dbe24fc3850adbb8b61d3678", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "1ba045f3f80ee81dc09d9c826adb2420414e263742d78437e070806b57e57517", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-en\\-charente\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dff47b0a0f89573c6f466f5500f2ae6e7d1e4bdd979c88d7fe860e3659e99075", + "regex": "(?i)^https?\\:\\/\\/kanmotaliiik\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ff829cdef1b3a73ffbaec7d70099122f68e4f6f0d8bac27b7ec4e6cdb9822a63", + "regex": "(?i)^https?\\:\\/\\/cam\\-french\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b0ca45a7de2b59f1c3ff0c26eeb4d714dd929c2524194562ddb230b062d9d583", + "regex": "(?i)^https?\\:\\/\\/cam\\-chat\\-x\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "2edc2231a924d8d611233fc930318b8d9cdd0be430bad2eaab986545a5526908", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "93655fc02f483c905bec043a7187c21457a2ac78425ded38920605a0a4073ec0", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cd5bb4dcf2afc4a92fc12489f4904e35c9d729549eec2cfc8d23fd536d97027a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+files[\\/\\\\]+0\\.900132763813227(?:\\?|$)" + }, + { + "hash": "1b0435a1cb213e6b8a5b09384f14bc9f66412dc6e6da4ecc9f620ff77de940e3", + "regex": "(?i)^https?\\:\\/\\/hottrendyvids\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dda0839675ce7e5fbb299c6d0db9a07551c604a25685650d35a597e976e45ac5", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\-fuck\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d3d243fa82338cff4feef6a4812f2d0644a7ca30fe25f87c68c4c2906c48daba", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e990a7421f6365485b4a2be699df50e68328628d1e28e7d0c56c102d8cad411e", + "regex": "(?i)^https?\\:\\/\\/edingfto\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "05c16eda5d794c0bc300943570745d97a4ab616e409f54422468ec0f1164130a", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-cam\\-porn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "16cd2664f6b3d997ddd3fef6fcdd97fe2a3d8467e9f53a686c198f72f08f6ffe", + "regex": "(?i)^https?\\:\\/\\/dasdjasddas\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "f9ed886a387a8ba1f8f2ee302e7594b070fb6a7296ba815e197c1f9696c329d8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-en\\-live\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bfdd1690b0102d662f5ade0bc60c2d21d14e6d519d0e10bfa092563ce7c7d08c", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bfb9a438cfcacd71109042973cdc42c2fada7698edfef0386009304248925e49", + "regex": "(?i)^https?\\:\\/\\/dsadasd3123123\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a7f1b\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d80f46a4d71d2a943f3fbc57e0d34dccc47c935f9c2cbe1dc9a4c4b1b6ce0753", + "regex": "(?i)^https?\\:\\/\\/cam\\-to\\-cams\\-porno\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e7a9e339e5ef8ecc8ffd4eacaff936e9f8b124559ed1dbd4779918e31bdc77ad", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porno\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f6d7c53e744b920a4dffd7efb3d198cb823b137caa1024c4f6efb55c55d793f9", + "regex": "(?i)^https?\\:\\/\\/camera\\-cachee\\-xxx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0b1432f6475ceb3e5a21c1c122a0b2f01e706747474cb89c8b8f5a7684ff7468", + "regex": "(?i)^https?\\:\\/\\/edingfto\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8be0fd8715755884c6639110a9ac4ea770887bba730f12aa38349e5bf3347154", + "regex": "(?i)^https?\\:\\/\\/couple\\-webcam\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b509076dde112f0bbbfe370362d4bafcd5e1a38fd8fc7adced3d1f293334ea0c", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fc56f6e4e337855718228d725cce601193542e2cd26dcdd8354f737611345266", + "regex": "(?i)^https?\\:\\/\\/robloxcomgamecard1\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66500631025deb8512ffc6066148e509686cd4e8ab67af45e6741abe0db5fdc4", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-en\\-camera\\-cachee\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f8ff6cd8c11cf7200cdb748ac0e96e23040a3226cc04dbeb311d28997cd2fd97", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bd385691136c21aef4decb3fa2ac6964aa0bebd433e72e27b137b884c2ee43ea", + "regex": "(?i)^https?\\:\\/\\/loginn0w\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "daa055ee0acbbfef2cfa4c929d9b25819dca225c7386a40c430a4f0378b9dede", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-hidden\\-cam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "a58a2df01426c2a867a0e515ad4917284ab78b2096e17dbcd06619c12389b24e", + "regex": "(?i)^https?\\:\\/\\/kanbghiiik323\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "58b0efb8460de624823f2b88ab8cdee23df11e7c6440517fa597b6d1f373f096", + "regex": "(?i)^https?\\:\\/\\/4cam\\-gratuit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2478888f6cc9d8fe137657e5e7319a040afaa425464a1328302a61acbe3fd913", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+booking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c8e825303ccb28e4ce125c1aa7a87b5fef08964a44a70178944853ac2563c538", + "regex": "(?i)^https?\\:\\/\\/annonces\\-de\\-cul\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3389aca3d50941507163624485d493ca61ce93aa2b941daaf26e0c4f384f0036", + "regex": "(?i)^https?\\:\\/\\/spy\\-cam\\-voyeur\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "78d5e3e8f3a8ad99914436cff5eb210a7149eb434620da029203a1dd127b149f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.oomhdw\\.com\\%E2\\%88\\%95ygjol\\%E2\\%88\\%95ldbvfd\\%E2\\%88\\%95frskr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=imdxnax\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "0c0028d514f2321d5ca517e0167c20a6e751f8ab4cc57ae45448a6c21493ccc0", + "regex": "(?i)^https?\\:\\/\\/webcamcohonne\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e2cde2c5def3cf14c3ac2c7ac86a058e5124d51d30021f92517af25fd05dab37", + "regex": "(?i)^https?\\:\\/\\/hidd\\-cam\\-porno\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "20b1fd546175b311be13e6c3249129ee2047f0bf5a8f0386c382cc79444e1fc1", + "regex": "(?i)^https?\\:\\/\\/hypee73333\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "39b7a0fb7d32d970e546dd8c5bc7f912190fc883e812c0785bb7f7ab98906542", + "regex": "(?i)^https?\\:\\/\\/4cam\\-gratuit\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "4eb8558a871cc9d5bf16efbe9a202e80700abc254cb8f2129aaf72db8f7120f1", + "regex": "(?i)^https?\\:\\/\\/fastjackxplo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d6390\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9926a91a201afb1927fb448159e4b24f9cce8764f252a8fca9515e66ac28ae5f", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-agen\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a617214f7521ea39af4686e4567818a69ca64c1a1aa40bfb7b854358c91fceb7", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-herault\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0ec18e39aa9b18dc031420f06c6666ca338b57ebc6f90e31f0990d2d3033a9eb", + "regex": "(?i)^https?\\:\\/\\/free\\-chat\\-cam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=sm\\-devis\\.com$" + }, + { + "hash": "b7aa48448def334a8df9291e976f890e7a61a9e33629e747df5090e23e510f19", + "regex": "." + }, + { + "hash": "20e86d9d3540270fd908244bf8b88e5d2b3731b7e2a7d4d47517d9cf8d03a876", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-en\\-camera\\-cachee\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "021ea59463ddd8b595ca83111e0d84571dcda2565a19133c0351f796dcd431a5", + "regex": "(?i)^https?\\:\\/\\/sewwaaahlowa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "86f6dd647b7341d97a1bb138fa2e06351b21c31b23646a03a1db9b7126f03d68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+booking(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ef797\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "a380f720c973f35505ab861078cacd47bb120396ee28ac6758f27d3571499048", + "regex": "(?i)^https?\\:\\/\\/femme\\-mure\\-pour\\-plan\\-cul\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4ece9ed4da50a824d2878278e02864c0983f3b0120b0fa270b7fb4a3adb3089d", + "regex": "(?i)^https?\\:\\/\\/site\\-webcam\\-porno\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "1714795f5e613a478fe1a033b1708bffc17a243379864d16743592e48880defa", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-x\\-gratuit\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a01dc99ce076764c1e4eb5623d221c8a01b47fde352fec8cd877d1e5622aa30e", + "regex": "(?i)^https?\\:\\/\\/hypee73333\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e092913b6e79c91d2c66fc595080aa64d2c61de21c517c032ac8d5854023e773", + "regex": "." + }, + { + "hash": "2503f2a0962aa46691275ecdc732ec610c6570c8d1c405ef12537cb466158c51", + "regex": "." + }, + { + "hash": "de1a2c64619928140fd3f9089490d8352375e0fd0c608a14f30de38029bb5676", + "regex": "(?i)^https?\\:\\/\\/4cam\\-gratuit\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5bed0b11f7612b7f676b5d9984b79aac244373476c0dcdd3a7cef96cd58151a7", + "regex": "(?i)^https?\\:\\/\\/hype1sss\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2f670913393a0f60addcb604219b84812016baac5e00fc2ac724d886860a6661", + "regex": "(?i)^https?\\:\\/\\/hottest\\-athletes\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5fee0bffd7c7ed2257e31fe2ac9e84b48fe00704acad6101aabd92067b12a231", + "regex": "(?i)^https?\\:\\/\\/porno\\-cam\\-francais\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1d972b7e1097f9d9c5bb09d22c6c33a59f8c2a8f16b14b4abbeba43f03d8b74f", + "regex": "(?i)^https?\\:\\/\\/hypeeea22\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1924f1a7ab88645333242ddda551174162cb7a088431e31de7a9419d9be592bd", + "regex": "(?i)^https?\\:\\/\\/clipverve\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?c85ac\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "a1446b252adb223ec9de194758c68fae012c28396bf81fef48433ba05c703858", + "regex": "(?i)^https?\\:\\/\\/porno\\-hiden\\-cam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9760b13794828ef772baf51052ea6e5a9ad268f5a4b7606f54ef409e40cbf572", + "regex": "(?i)^https?\\:\\/\\/video\\-porno\\-en\\-camera\\-cachee\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8056f7c4f3ff9b30090d77918876ec0adc36b6c71c696a6d1cf0e73fd86eb778", + "regex": "(?i)^https?\\:\\/\\/cam\\-french\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "00a79c3676c099661fef9ac5c8ef7bc60a00148b8f6ac34a3a757f4b38e475fd", + "regex": "(?i)^https?\\:\\/\\/dsifhbdisdfgfd8448\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e7879d5ae34c9ff61a16d4473f7bc7efbde236196d1f35dd75f39c01b90c0ceb", + "regex": "(?i)^https?\\:\\/\\/diananndrdulitllru\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9db7d228fc917c0ac36d1aa61d3f0e66264a0d494b44cbca888de961595912d0", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bb3738fe310a1787462de9693c2f70034ef4097c357863df8fbd20b2846b8c63", + "regex": "(?i)^https?\\:\\/\\/malaysia\\-idol\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4a75b94d1c50f4d4bec28514e43d850590579037e58b3d8027ad8135e63a8587", + "regex": "(?i)^https?\\:\\/\\/malaysia\\-idol\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "92ce1b8a16b543ec23cf221a9ec99bae6de2775713926d299d285ceaaae8782b", + "regex": "(?i)^https?\\:\\/\\/webcamcohonne\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c29ff2bdc40c99981bb3b89689994235c5d94bd9a158fe15ae6407feff2ce7e5", + "regex": "(?i)^https?\\:\\/\\/site\\-de\\-cam\\-porn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0e84128cd30e41ed9a90bb986864d4a1bd01b9ab804896bab285bdcb8f6719ce", + "regex": "(?i)^https?\\:\\/\\/direct\\-live\\-show\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5f54e\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e2fbe2460998e53dd7df0eaf282223acca28b7e3fc3d983220f1f6096ca53597", + "regex": "(?i)^https?\\:\\/\\/spy\\-cam\\-voyeur\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "042b85bfd47e24b0d230643d4646d4ff63029166585503ea2c74666dc2182208", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "29b3c776d44f6ea76e777e2e800e4261db7ff1dcbaca17b7c1a0d7ac6190b96b", + "regex": "(?i)^https?\\:\\/\\/nerhfghdfhgdfg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "61e0df75b7f11dffd998adc62e3619fddd1f714b5378a7193366e349c659eec3", + "regex": "(?i)^https?\\:\\/\\/netcadfgdfgfdg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c211162e3861a2746eea70107311247c6279ddb81d7e1dd61e330914f184c2cd", + "regex": "(?i)^https?\\:\\/\\/ezrdfgdfvgbhv\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2867cb71f1bfd1a781fa8c5c296d04f06c5433408f0f68fce5003a91bf69d790", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6e0458f7299630debd8fda098095b3bf70afdf22a260cba1e922a17d14913464", + "regex": "(?i)^https?\\:\\/\\/qehgbqahgbeqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "76375d2cf56870f4466df7be77513c25bad7c88bf7be501f693f1b97c42eb8cf", + "regex": "(?i)^https?\\:\\/\\/qeadhbeqdhb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9035a07b78d3e28132b949e2d0b30b6736d459259139e52fa4a75f6ca3ff5b17", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "608fef3d3ef6bf2aa8acc74e6223f088da1dd476c83667df9738d7215a2e5eb5", + "regex": "(?i)^https?\\:\\/\\/enthghgbffgfdg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7a187318338e66e5501a87a9d757106f4ed3c829c3882cfd7d25b8a1a3d302d2", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0d1c2c3bf2fa534ba4f5a34c6266c6023c05395efdb52be1d4a7a0ff2d5654ab", + "regex": "(?i)^https?\\:\\/\\/qehgbqahgbeqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "efce7f608aebe0f9d799fe87f6371fc688281fd38bc8358c3c018ae4bc8117fd", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e80cd30e7b42374cbfed0ea4d2e98d8f54f5a299d1418547ea04bcaa2aa9b1c1", + "regex": "(?i)^https?\\:\\/\\/qedhbgqhbg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "87e17ef56be491bb65ab6dcbd42dd352ed4ed93162eb0a6d41c3f59d1638f54e", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a2a7e5132db18dbbd09b0787e66ce0f4f99be29293e8294837f6e47cea8f2650", + "regex": "(?i)^https?\\:\\/\\/heeqadrhgb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4c7f2db064df484e143ee07ae7b316ed1bb108f57b8ee92370003e44ab5c70e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimadd0mzfqh\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "957e179c826e9e9ce997309f56fdbdf07246cba6fccf5c19730cf85524a3dca4", + "regex": "(?i)^https?\\:\\/\\/hotcilpsizzle1\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "015fd2753941a7b4c81ef9aba197c9edff09debe29e8676ed853cce0eb3a654a", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c8aba92ab45d2c42c7a90ecfe8eaf0a42c5d3e193d3e3e5efa914dcff3fef82e", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ceae964a7061813fbf471794309647bab79d7cc0e8ff00c47c503c3cde2bc741", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7dc0226f1eb026a38c010d28c14ff7f7b4f088cb0b178c54f796d9846378b591", + "regex": "(?i)^https?\\:\\/\\/best\\-porn\\-cam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0c8bdebb5ceca0e4dd3cbc683f78d15116f8d24e37aa5cf7c01b6eb5e987e98a", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "96feb0f8ee81902c4dc29812c87c38b257fb9440afa80bbdd37d2ddfaf589692", + "regex": "(?i)^https?\\:\\/\\/qehdbgqdah\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5173f06883aa6ccb390584d2e7d772d057c5c2604d6d13ea965ab15778da1b4f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c88828909b279dbb34bd8c593099b3cd23c1de7b2520f6d447f46a01a8a82290", + "regex": "(?i)^https?\\:\\/\\/eqahgqeahqea\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "450217f1b2baf60c965190b925a201972773c37037dcac9728b430db162cd00c", + "regex": "(?i)^https?\\:\\/\\/netdfgdfhfhg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "96e5fafd3a9ba61b0a335756c4dd0edb6cda373e6adba72e39c36e08b1bbba5d", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cb82258bfafcdf5c4ff148b8d50eeaf09eb33537df09d844b50bc97945125fa7", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ec140f7c93edddea8a72ccc00054bf5df1082c35d0cae6058769c70ca4f52b80", + "regex": "(?i)^https?\\:\\/\\/netcadfgdfgfdg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ad42b5dcd236c87e83bbe3a7d9b3ddd2f67485eb86300302e16eb6dfc843ce8d", + "regex": "(?i)^https?\\:\\/\\/eqahgqeahqea\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8405ab298b38ccdf695760d0bcbd8ae5d3722d9719bba655172d63599dae5eb2", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaheqa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c919a8218b31d42add8caf954e9aec230fdcc1cae0188cd71ddb7929216f46b4", + "regex": "(?i)^https?\\:\\/\\/eqhgabeqdahbdqa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6692332fe6b96d13d7e9a1b681a1794266c26f9615aadfd7c122c9f46ebdbb25", + "regex": "(?i)^https?\\:\\/\\/eqahbgqdagvb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6cf013db85af85e99229a6f1d9ac2e5210891ca87d3e9422fe83187594ff9a4d", + "regex": "." + }, + { + "hash": "5b90fdb58ac384dc2c65ca8b0224dfae26b347ce11f7e67ef2a08175fe299ada", + "regex": "(?i)^https?\\:\\/\\/hotclipcentral\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "81972d74b1961785aac97e915e8b4caa9aff9f96ed67a1777e4377b8d39b8c2d", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "427895fdd93db1b8ab31e1cc195be9a169638a5de7441ba42107f1f3d279bce6", + "regex": "(?i)^https?\\:\\/\\/qaeghqaehgbqaeh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3ad809e3e10ca392990670f70153cc4049d6928843fc50de8434c41a884625be", + "regex": "(?i)^https?\\:\\/\\/hotclipcentral\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "61dc592f4ac8225667097d756cfd2482178fbf444c23369b3f2a2b87e17b146f", + "regex": "(?i)^https?\\:\\/\\/clipschoolhub\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "31df57dbec24520a93d2252a81263a599cfaebd3a48c9756379451760560933c", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "814681c0a8ad4a91cba7d54bda7e3029eafcdeeb820131342dd04c43da422086", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c7e12e4d2ac8be401b78ce8286f620d0a4ffb08a638d37da656e5c84c63c6302", + "regex": "(?i)^https?\\:\\/\\/qedhbgqhbg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "446d1622f098c7ff7be53112e581dcca783fb0a6929659322e2c5a94ec180e70", + "regex": "(?i)^https?\\:\\/\\/clipschoolhub\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b22c9080086ebae8d3ac819cde964c32512c642c934697693928cabae233ae58", + "regex": "(?i)^https?\\:\\/\\/qehbqeadhb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5d79115895f2d39ec4022c07fc9aedc523f22cc721261a82bde9fda1a8b89b14", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c8abd682c9b02ea4ecb7a640dcce99471198ccd329b4c6b2687e22a9606f9598", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "977725c3e4106268cbc9ffa72d6f87e1c86e75b5eba8644c5864e68ff4eef384", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "21478d186a123563bc33b05e40d537be373089895d91e689e559da9c1fda18c7", + "regex": "(?i)^https?\\:\\/\\/ezrdfgdfvgbhv\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5cd38a88918f1e1f809e8605eeb142f9916d959ff9dca2691d207ecaf59e9ada", + "regex": "(?i)^https?\\:\\/\\/eqahgqeahqea\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "550ae5db5ae9c9eddc6ee656224adb0c7206fbe7b3108e6f66effa6194e6802c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0eb6615980f67fbac3fac000149fc34e6f987d49a04769223e3f3c64253e80f4", + "regex": "(?i)^https?\\:\\/\\/opioiscmxvnzieujkajowqiuqirncfjkdf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "360f6b2035376ad28aef479f59f35e9686b9ddbc96527b726c57c40afb67c0b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimae3hophtf\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "416fea8673b9d5d875782f7ff5a1f08de57ebbddac8dc20cd49a571cdd978fa7", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bfc7e85a20f279a5c635604115209b5db7bb121e387e012737d9f3a2d01f0787", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2f4fcda0d7f6cf5d3a33e9023438ee59e0a0d1412b0249156a61286b661ee0c4", + "regex": "(?i)^https?\\:\\/\\/eqahbgqdagvb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8ea748af9258ff8f8f99ee4f9ce20fb991ee512f04ceaa4bec8c5f44ed225223", + "regex": "(?i)^https?\\:\\/\\/netcadfgdfgfdg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5c90f247a473761a88dac307c0f370a8b0dd7ede69978a4fd51b543ece9e65ff", + "regex": "(?i)^https?\\:\\/\\/qehbqeadhb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fc826e650e249ef1469fc0b4450461d1a2cbd560b4491765c466eb61eb89b2dc", + "regex": "(?i)^https?\\:\\/\\/qaeghqaehgbqaeh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "331a195b35dc43580b40566e8130717277fd5fbcb7fac85da25a1752bdf710d1", + "regex": "(?i)^https?\\:\\/\\/opioiscmxvnzieujkajowqiuqirncfjkdf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "21ce4ff7cc7fe1bfacfa4ef26d8bf77c1a1da029b14cba878657704c483ab02a", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaheqa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "658d492cce041bf4bee7e984057036496748e5fdbb159f7b50c45ed4168d4a39", + "regex": "(?i)^https?\\:\\/\\/clipschoolhub\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "da72851ef8701ed1c9b6f72b10a77fc9459bc5c6d381cfd6c161f5ae1a477d35", + "regex": "(?i)^https?\\:\\/\\/heeqadrhgb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8aca3534db8dc7019b678d8d193e6773c35bb6aed746eb085864af28e678531a", + "regex": "." + }, + { + "hash": "94d6aa6a385bbf0f0f007a3db4dd89e3b440a8409cc483f1207e6d23ee3624b4", + "regex": "(?i)^https?\\:\\/\\/qaegheqahgqa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3928c1eb440ddef02239e350d86d5286f7cea7555e534caacdf552d872ed343e", + "regex": "(?i)^https?\\:\\/\\/hotclipcentral\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d043549173d80d3730fe795167ce9eb48009139e721369dc9869f05d029a2b51", + "regex": "(?i)^https?\\:\\/\\/best\\-porn\\-cam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d47a8e49e021d89a772a25d7686847aea8af5fa8a5453138877dba59ce4fde36", + "regex": "(?i)^https?\\:\\/\\/amazon\\.duwkatee\\.com\\%E2\\%88\\%95adlrnrh\\%E2\\%88\\%95snyzvjm\\%E2\\%88\\%95qebbjlrziw\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dybeybozy\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "11f58cbc4300eab94a118d9b9afa8d45a3811d42657d9e94aafcc4f9e0d53a48", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2cc69d6a89a83d5475f983496fed1602f26dd0cf0bcec117b53491647def85fd", + "regex": "(?i)^https?\\:\\/\\/hgbqadhbgqadb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "444a897f1b734573acb3185b400ec18ac2795d136f0dc9df60e4ff4775f912b6", + "regex": "(?i)^https?\\:\\/\\/ghabqadhgbqd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "137ffff6f950f468ad6991be79fb4ed0ace2c111c17394c16e8cc1e4279327df", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8cbd3f6b3a12b5e5f684e1f03c361c961654fc38fef550e3622196a97900104c", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "82f4d0ad794c864429f58e335e9f4395abe14877202e22ffc107667d15af8fae", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3a5159f3977f4ae0c51f2826f37b327bf941a0bc4cf0966cae1b906e4f8daae7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "2c03ba6a025c36c48ce444730c48ab5c7974e849c269dacbc68cbdaa6e7bd24e", + "regex": "(?i)^https?\\:\\/\\/nzetjertgdfjjg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4e72290003f79b081a41364b13e0b0b175279ccdd2ac4e5ca96940be9aeb2083", + "regex": "(?i)^https?\\:\\/\\/eqahbgqdagvb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7481bc797838fb85af5d2ac46a1d6952f6a33ee8257ebdf64428b1e9bc4420c4", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cf107e43ecdd00ad8f41c85ee3140d83fb923f70f526533c193e6d3de2c71f30", + "regex": "(?i)^https?\\:\\/\\/hotclipcentral\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d75a3cce0f1fbe79857b2d59789e5911c4834be196e109d2f026b38235c5e2dd", + "regex": "(?i)^https?\\:\\/\\/heeqadrhgb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "78eca37ab208f12c512d64f2e7f1924e46a6e3f0c227365b9cb054f5d7a47b89", + "regex": "(?i)^https?\\:\\/\\/seureduserrsiofgr567890\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9bb542f81b1d71b090bc445e5fc87973fd0141aac93fac0f8c2faca37999b157", + "regex": "(?i)^https?\\:\\/\\/ghabqadhgbqd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a619276c5746bf791d3356899990e2562b6349d64f3051afcc8d63f6e4665573", + "regex": "(?i)^https?\\:\\/\\/qaeghqaehgbqaeh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6eaeb0d34e12bec014150ec31f4c35c13275d355884b951aac42458e19ef24b1", + "regex": "(?i)^https?\\:\\/\\/hgbqadhbgqadb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "03e2d83610724f1cdad380ba6f89aa83021f117e5cc35182b65ca7c3468240b3", + "regex": "(?i)^https?\\:\\/\\/weeb\\-cam\\-porno\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2e357713c647f5dd4d3bfadca3a2e31d0ef27b2afc778a9d5b77243dd962175b", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "92dff3124271cf87fcbb3d4f66fc36695c63f9ecd78dd0dd7c086dd49db769ce", + "regex": "(?i)^https?\\:\\/\\/767dwerter5456msa4nk85387sfyrudek53445nnk85nyruesv\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2726f63eb8ab450b74e7c1fb18ae12b99a8b1ae3315d58e8576e4d284473e09a", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfgh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0b3e1264c377db0538acc38e2066c9e0edbdd28c92db7887e96356ba86f0e907", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-webcam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5d83d8be8fcae1523adf6764d90330329e28581bd0cf6afb12d81bc06b585ae9", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfghgeexx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7c60eb8e027158cf50b76db29cef87e76cab14fee6535f361a40857ceadaa82a", + "regex": "(?i)^https?\\:\\/\\/qeadhbeqdhb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fd14f37a6e181f10ba8ad116316555fd851fc8d3bcb6841b4d85bfe1ea31fdb9", + "regex": "." + }, + { + "hash": "f7934c9eeafb2e7c3f7b8387c75a72abaeff4ec525038cab56a41e3c61699faa", + "regex": "(?i)^https?\\:\\/\\/nzetjertgdfjjg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "19a3defcd17c8e9d1175b13313430ae30ade573c0e06d09250e7062d1d7e6b99", + "regex": "(?i)^https?\\:\\/\\/ghabqadhgbqd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "dc8baa79c5942714eb60c49269249263846a6fd5a955fb4459eddc31b10ead79", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "411cf0e234b2f1a4c901dd92910ad508e87bb610f976b24f2e91bced7cf406ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimamew1l6h\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "074e3f6397832e716218339426edc734ac94e013421e006913d6c70ed45cc71f", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "96cb10ca6f2e0d54d3a674c91d6b3081da4b0d7121bf329e7f01a0b431fd3299", + "regex": "(?i)^https?\\:\\/\\/qaegheqahgqa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "944d4a2c3c5d0f3332dff093c9433c4eb2df4d5b9032dfd39903100fa219191f", + "regex": "(?i)^https?\\:\\/\\/qehgbqahgbeqa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "21c9b6abeb39830a7b43b68ddd580060b9cb36b686841e09e430a9191dc49bae", + "regex": "(?i)^https?\\:\\/\\/qaegheqahgqa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a88c92be18a72b7056593eb20bed6fa57d53a8a55523d4b661707d6a19c5b08d", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-webcam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4d843f1d59272e4a8491a7becb9df548a76e490dd2ca547606b3687bce40e4db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimabvz3n4q\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "cb510e30ca42ba5569c2dabd9cc874f9febeb2044c31aa3fdc2739dfa2612230", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfgh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1b1159533ef1f505bdab73d70a579bf6e04eb8e3783027dfb0ce34d75deebfaa", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "20f1778c6a6bad7b1a6504adf5a98af1bd9315a1126abcf82c4f8b0b1709be9b", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-webcam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7c5ae6811e6cd43e0cf50a1e8d2dd199060f5c1fbb6695f80f200c096118186f", + "regex": "(?i)^https?\\:\\/\\/nude\\-webcam\\-video\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "53416a2b2be36b6481ff4ce9a3d31ad87e02be31cf38d09c8b0a14e813a7ead8", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfgh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a762dccadbf8171afaa1415c0ba8a779c815bf9e033b1bbca05538aec98c4737", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "db187471a48b6e4fd74e9e38aad0d808aec9c64dccc75911447e8b0d1b829a2c", + "regex": "." + }, + { + "hash": "7c928aac6200285100cc88f549739079b2d6e986cffc41b76608916e5f096b2e", + "regex": "(?i)^https?\\:\\/\\/qehbqeadhb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9766329fc58bf4f3a4049ffd9560739396fd1759a429ca9fed0e37c1f5c20d62", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0894c29f3f69a5e58c3a1450a491f13d37c2a9ae8905a1e48a62f754c55cb8d3", + "regex": "(?i)^https?\\:\\/\\/hgbqadhbgqadb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bc14b54468660384834780ea48118f11465bf1093923b222ac4c75aa5afc994e", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3791f12932e35e1817591ed11443aadbee8c18dcc8a63a3816f8f9a51b1a0a8d", + "regex": "." + }, + { + "hash": "86030169eb5a1213dc8c4ea2471f748548529f7436e81f87e29243ec02b555de", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaheqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e4e16d87d6b77a1fa9a3bc4f2ddb22c5d785ff372b3e3a2c715de1743cad8", + "regex": "(?i)^https?\\:\\/\\/mail\\.paypal\\.einloggen\\.13\\-60\\-70\\-161\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5dfd1f2ea3681f1fd750dedf57a6bbb7828f831a76be5b1ece30ac7cace4db01", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaheqa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7db21b6d7dd0e3c686e3254a425c1a8402d7f3081abc5d96984ae9d16ce5b085", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimabcuvlesfm\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "4b58751500f6a2e8fccfdf92266f5b9434bdbbd03855e175c5ce6da6f63da961", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "94a8930ea399538ba9a7c33b9f41b3727ac89347a5d0483b51fae004197ecffe", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ef90e7f6dc9accb7746158dfe1e878b1054e1847116b02abaf69c63f2dd3ccaf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimale0mmzz\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "c21f5a9680af20787e5e8993876bcba2a2671d664de600f941b1deb079060d84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimapxu7yap\\.co\\.jp" + }, + { + "hash": "dedc577b1e1015cb84403524777d350e9350efd0278491ec07652bf8c486b06c", + "regex": "(?i)^https?\\:\\/\\/qehgbqahgbeqa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "94cb5450028797a18a6fe5dfc43580280fc86ff84822eb0ed5664574d4bf2ce6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimaj1dxckhkfg\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "8da10f9c601dc4d381467b94735028d61250f62327b26e845b38fdc6c22dfadd", + "regex": "." + }, + { + "hash": "94acb5bfc2c6af55517ac872425065a0c12e7a6650f7edda4f1e44b11a31b715", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimap4zh1mh8s\\.co\\.jp" + }, + { + "hash": "b32d8a7c096e2362b23117d1286abd42de4250f7e8336e2da6cf209b56b800ec", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfghgeexx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "37143b1e56a1a7f384cec840b492e9dfcbb4317b8a952f3e57199d2b23e87432", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0179e5ff73051fae1748a8d6ad0e6261a3486da7ce5d6c0257fc4f9215261700", + "regex": "." + }, + { + "hash": "2fccfb2d81d9b4f8d75ed402fdc748535058fc170d352b3356b2c6449e0c1715", + "regex": "(?i)^https?\\:\\/\\/hotclipcentral\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cf73eb27da8f6dbaf122f58900102c23018ef81efb612325e210084d9b8ad119", + "regex": "." + }, + { + "hash": "b8d620e9c4497415b4e5bca64e6e3088008aaaaa79926e640425aa9e916a6b82", + "regex": "(?i)^https?\\:\\/\\/opioiscmxvnzieujkajowqiuqirncfjkdf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "286771df946de9d4e2e47ff6c36ab3753951d1bd7ac16f80963cb676c205813b", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "abb62b6c4b0a07b2a922c550456099fb893902b59dbb23588f2d48163bf179d9", + "regex": "(?i)^https?\\:\\/\\/ezrdfgdfvgbhv\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3029f83ee6ad5f9d60b5e77796f5033707a4ef635b5c0634e5756a2e2b424c40", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfgh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2a7db5207767ddbe1e2550ea8163ccb961924666417beec118250e628fe155e5", + "regex": "(?i)^https?\\:\\/\\/qaeghqaehgbqaeh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5aa50c7119453af46ccc39b1de8819cb917927ae3267dfa68aa9a18b42e545d0", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a33fac133457457287c3602bf5928bc3071238741aa0943c8e58a5b39ef9276e", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "914c17bb42f4556b6bcfb64056f5461988de8e2ade05ee75d94c783e43a961e7", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "27d07c884f782eaff33455f42774e6148a22f65b9d505fe9e41cda3881728ee3", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-webcam\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a641975059232f2e74a723b1b0c00837da2387c9a1bb5aadac8d5e8af1f40a01", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3785012295601786de96ed84d9a27bf898c479f538b3c373f7658c22d2942b7a", + "regex": "." + }, + { + "hash": "0e59fd4a7d869c7bcb722187cd8e5ecf0f293199f4a7c2ffb755fadea2d634f7", + "regex": "(?i)^https?\\:\\/\\/weeb\\-cam\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "46d95b97588109297eaf589933782d6c46b663e72cf6d6797b983162d931fe81", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e1a784f2edb80797dd833bce02980b8159381a3fc0d49e899854a6d95a335c00", + "regex": "(?i)^https?\\:\\/\\/enthghgbffgfdg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ff665322bb83b9fdb85d8d8e0404f99d574f370265b25d421c0d6a1f48663940", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e26a6d0ac4bef861f1025d9f415b650988152469ff1174102c0099f818d5d454", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3f905310c3a67fd6c87bcc8bbbbf7031a08d2476ff4e46695af55a473c6dcd57", + "regex": "(?i)^https?\\:\\/\\/qaegheqahgqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a13c009b23e232e029c72c8aa1185f775a261c912060ca9545823670b4e36b2f", + "regex": "(?i)^https?\\:\\/\\/hotcilpsizzle1\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3d1cb9004ac2dece0de8e32772d5680feeffdf6eda79cd9286633487ee497f7a", + "regex": "(?i)^https?\\:\\/\\/heeqadrhgb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5ta0vw(?:\\?|$)" + }, + { + "hash": "1d7da3ba860c756437c5e944f265abc6654b38f9ae22a0983a6473220a2d2039", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8f9f35319c1f6557c740b1f9465cb18347f1a43f062bcf0a8f822445df1bb211", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfgh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e1089dddf3c69ca8c34ea627537c25f12d4ae94573df140ec858501acc543f99", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "46a73a30a2bdd16df1ef1fe57f509b1c62f358aa5e730cab1e3d1329805d5634", + "regex": "." + }, + { + "hash": "f12e3fb54d28f40b71a2e624727f2e848c3f2d2a8363184450558e9d46d98882", + "regex": "(?i)^https?\\:\\/\\/nerhfghdfhgdfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "baa0fb0b6c5721096d089696088521d04e5367f4d76c55f4b9f82e3a82c9d160", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "218c063e8173e82e5ee7df46e49783f67be6d7de2c8ebad0294aae64dc6e72b1", + "regex": "(?i)^https?\\:\\/\\/nude\\-webcam\\-video\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6c55e641abe32809a587a3dbb6fd393b0f2bd91a9fbcc1775a37e6f98b4407db", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "68de6bdda859ff67d69b38429da0a0b046449127b823e7c9f903e81970a5cbee", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2c21e2e30ab69da8f83f3f9e113d8a673536c491cf2a5d8caee2ead8125150fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sys\\.bolo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a1bb860ab576ae469659093b2c28a3507ee8bde47e66a1070e3d359a66d63c92", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "650d0e17c62c8a29a7dbd9631529d0fc4e1242fc33de592285cb6a7e6b80176f", + "regex": "(?i)^https?\\:\\/\\/qehdbgqdah\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1ffd2e9897e322ed985d34c216f1152ee11e256a79c544047c194585c13fedec", + "regex": "(?i)^https?\\:\\/\\/best\\-porn\\-cam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fb7c1434dcb3e6bd3ecd0188dcfa676853192d0c54ef7548f81d21c3a093f30f", + "regex": "(?i)^https?\\:\\/\\/best\\-porn\\-cam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "71613ce9a6a51debaaa122999d54dedbc02d668b240823452df0a12501af7dd4", + "regex": "(?i)^https?\\:\\/\\/wedfjdfjsdfsdfsdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e721db276c2d96f1500f85b69476052fc85bf0ed4239b7f5f40463744389dc6e", + "regex": "(?i)^https?\\:\\/\\/ahbqahbqadh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4a46f5cb0437051a14493fd8bbb7ada91275490c93ed010e0ec455660e11609f", + "regex": "(?i)^https?\\:\\/\\/wedfjdfjsdfsdfsdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "967d8ccc1f09489a450aed52cc469a226274fbf9de102eaa9ea2bb3c842eff1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimamd4nl0z0pv\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "6168f4bc5a457bc9e0d501be32680a6b7dd4e986ad2b8293abd1af25c02baa0a", + "regex": "." + }, + { + "hash": "9ca161e585b5102705c041e3331cb12f078e791193320c244dc22bed5d649226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimalotma2ejt\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "25c155717be2e148f991310f846a8e99677a52930c21a9362d4975e96366b48f", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-video\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3ac7c66c8a0f80c3d70d5eaa17dce49dccc67a6b3cb09eea3d8faa14444f10f4", + "regex": "(?i)^https?\\:\\/\\/eqdhgbqdhb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "054d69949487954889fbc216eb9fb0c0f215aa4a64d932fa730f3b843a064a7a", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "613f8b4b2fb0e47df93c4e168f8d5bbb46627f44a84ffa191828478f91623ea5", + "regex": "(?i)^https?\\:\\/\\/eqahgqeahqea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ad2d58eb1792101d3906d2ccb607b8427a56cfed510df39d62b184b2f59c84c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimae6b3ltr59q\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "bd2a04bc75093cd77dfe1a76bcf740b1868d1d0970baff8401bc0c37629ec67e", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "df5fa8f2e3873a76ce10ec3bae9b0a5619c776c4cf6c53a4cd5244df31971567", + "regex": "(?i)^https?\\:\\/\\/qedhbgqhbg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6af2540422cae8fc53d3dcf6ab85c5ffd4e304af1b21c31ab0dbf06fe2796688", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfghgeexx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cc8ad78955ee01628cdb0182312ec60888968682c660e867720b001092347435", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "58c38650092108f2c274c2c730463c8186c7afbbf184ad5a8e1baf6058e54c78", + "regex": "(?i)^https?\\:\\/\\/marketing\\-104101\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e83d08496f1771bd198e75c72b9c73fa92306f3bb761d67aa85ef022c484701d", + "regex": "." + }, + { + "hash": "971f7712bd455cd6235a7c23d236f3e7c719d5e4a884008287dbbdbb64c15954", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "37f8661e1fb30b54bc53c7cf1d3b90c3675e7a8a55374ad0c24ec041d7443068", + "regex": "(?i)^https?\\:\\/\\/eqahbgqdagvb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c7bdff1209e596f63c28d497633bb0a994f1c3b9dbd617030410af23dcda2d43", + "regex": "(?i)^https?\\:\\/\\/eqhgabeqdahbdqa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "63d6e631a61e6f91427efcbbda25066633fa5848baf86d3efa0edd0c51f5eb8d", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4b8e89fc67889fa3509e07abcd86e8c4a4f8151d0c2d094813a1ddf9ce354e48", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a82203e3ebc8f347f0e4e2ee133c2a3aea56c6da8708115640b5a15c32e355ad", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "eb49b5b596824898fdfa5599e0672306cc66ee9b33831b9adf1d6a181ffadb02", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b876b9e2276c95b45bc0b7e7dab59f1b62188f73f56d16564e4f9c63c82b2ba0", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "82f7025207e14fc490954815a2a05b0c0ce76d9036da2c2507eefcfca55de9c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "504ab26807750b6a710911815e329ea592a924a21e12a2671d5d4d1e1b597c82", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f4c684a46a96367d336765eb93c42a27f2d93177adff71cb40f19888350c287c", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfgh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7b7343770189c4063a129e250ad1e0bbfc97f020628edd932fcf81dd50dc68f0", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6a3ec5331226e85da7dcc71ad8ee7c954ae557340fb588dfb0e88542b230a637", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0cfe1238a4630e4de0047bab2ac56d4048c0fb49505a68de049968c0badee0e7", + "regex": "(?i)^https?\\:\\/\\/eqahgqeahqea\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1fb2fbb6dc0c326e4897a903c3da95bed1cbbec8dacf86ea90fffbd16faff427", + "regex": "." + }, + { + "hash": "4846095a635b609d3f8a74540d50ea7cc649e936c0a7fa623275c52dcccff371", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f8c3bb9dad0f1ba5762dab08ae96bc73571c420b7ade5f9ebab0445c76db7a3a", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7f9af61563fcf7901d68887e4814e96f16a443abd81bbc5acfa859457504bc67", + "regex": "(?i)^https?\\:\\/\\/enthghgbffgfdg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cb19d13e9e3a1f9fdba43a4871508e86fa845edff7573cb2df5cc0f6c22d850e", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "49e9c35f1f8df551119c5643c65cb3d08319a987b5539d6b38c3ca5972a09c30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimabjmsgkx4\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "eeeaff6997aee78b92f04ab03a1d8214feb3d843a15fb3551e9747a00f28ade5", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5ee0453662175e0c77b6174066fed90ba27f6235d0e2c65f3e6c689afada0e53", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4ac605a56ed2fbc9a2b88812cabb68c2cf1e8e0b566d8662e201d13800833f13", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b6a90eda0de26ed47f57802e6e10006451c94a351c09c5a5d4a925647cdbb492", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fc0e421aaee96528ef70a468958cf5543a84c3fd3d82571aa0145c86cd8a742b", + "regex": "(?i)^https?\\:\\/\\/trustmee\\-help\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "53093a1389bd696ce4cd5af0141db553598656731743bf471ac37cf65ee20c88", + "regex": "(?i)^https?\\:\\/\\/trustmee\\-help\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "62dcaf59a8b8a4e4a71ab4e02f16681cfd24bff2d67d9fafcefbee0cc4e9a66c", + "regex": "(?i)^https?\\:\\/\\/qehdbgqdah\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "185bfb3d30c266ee76275be8567eb4ae06e72adfda7792737447d403489026ad", + "regex": "(?i)^https?\\:\\/\\/qeadhbeqdhb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b6b3cbf1d5aa861fd23107bd655ed2c24abcafb002bbd2e5ab6dc91b3747efa1", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-webcam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "62bec15b715ff8599dca76eaf9e3c101b98ca224d931160befdfe6402f0172a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima6c1wgwm6\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "b92bbbdcea9893fd53c94a136e448b5030e7b82c6d40e08ee9caf660d03da310", + "regex": "(?i)^https?\\:\\/\\/nzetjertgdfjjg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "12afc4187c4ecda7a52b49e5e02c11b1ec7f85359ba57b469e9aafa0869b1540", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4ba43739c5be50fc0fd667471201eeef45bcaf5d2651bb62df61f3af93f5bf72", + "regex": "(?i)^https?\\:\\/\\/nzetjertgdfjjg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8ca2198d4eaea3515af2c6fbec8f09911cc9247bbb489f383d09c7d6aacbcb21", + "regex": "(?i)^https?\\:\\/\\/weeb\\-cam\\-porno\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c513f7a9890cf8a11bb81d8a54ff1e51909b3ac86e20928264f3bce3bac43c5a", + "regex": "(?i)^https?\\:\\/\\/att\\-100096\\-107799\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1507299274f69499b1a7e8917866bb33bf4191272c99be3bd2907bf2111e1c5f", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "79e2117e97c9949cd1f23786870a51397de4ac11052e62b3ce28b99bd7e98c9f", + "regex": "(?i)^https?\\:\\/\\/clipschoolhub\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "35e2d8901cce3873daad90f4e45adde34bb346e895ce16173cec34672274828e", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "313ac61f0a28902219cb4874b01b5ccbac811b6ded287d5097637e938163226e", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-video\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "adbe67b1877a028206e3f8fc3371b7c188a8da90e048161261544c746f075172", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?kmhtxilfadawg5$" + }, + { + "hash": "7bdceb8e164f26db111a439c5b09f39c1d64dbed74976c98cd560cbfd25786c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimazqpgh7nx\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "a465d4ad646f63a34364306cbe38f6579e6c2a775674cc287886528b42e219ee", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfgh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "914d6e9e8018cf3eb824e3e354254ed6ea73639e9f8d8a8d862d80fd2bae6fdc", + "regex": "." + }, + { + "hash": "da3d82a6b01d1d8c48c61429c74ffda223b764b8f85bd48e83dae659992d3306", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5c9096d15fc869ef4ad77eee968d820b98b406847c20b1518c9845a9ae9874f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=kqpymw\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "bf94e3568c2ffa60f6c6409de79bd657257be8b81f0f3145be4aca5d6f6f5f38", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f1ca13ae54a694dfbe10ea3d3ecc1d01c78306c9556e4cf5b01228ca79cc8323", + "regex": "." + }, + { + "hash": "15040cc9bf6feabcc34e9b6d2631fe0dcdae525c193a015f12910a8c294291ff", + "regex": "(?i)^https?\\:\\/\\/hotclipcentral\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0872eb141964563863584b6e52b1c1ae78a20e7bd3b3c9ef9d3e842a5cb18ccb", + "regex": "(?i)^https?\\:\\/\\/best\\-porn\\-cam\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7e81e4cf03da753281a9db960b91cc423be1ef9797faa39e146afdab8eb5224b", + "regex": "(?i)^https?\\:\\/\\/qaegheqahgqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0655edc0497f4fae27981c90adabe3bfaa2a7d2e1c8bec46c8f15045113175d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima4s7zxzy\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "7df47b87d52cf57f6f5715b04f16a69720affc3c01dc81841906b5845fa659d2", + "regex": "(?i)^https?\\:\\/\\/nzetjertgdfjjg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dd31be8a64d5b812f6455ef3c3ab1b52e4d20f2256ef74ea89b14b1003e79ae2", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-webcam\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "29edf844ffe02b6d1baa2928d7c68af61f0e040e5adadb736d4df8141afc1859", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "67023e315476ca3b8287d79415549571cdde27947e6bd47f1f14fc5fd97c7a75", + "regex": "." + }, + { + "hash": "650d73a6cff647d33ebd85be9b68af78d7783e9ddb94c71a4151575422444a19", + "regex": "(?i)^https?\\:\\/\\/qaegheqahgqa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4e20a0abca4cf352ad147cef4b30a1d6bf70455104d029ef188df7c82eb9cba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+millenniumbcp\\.seguranca\\-aplicacoes\\.com" + }, + { + "hash": "4ab6414bdfe20b06c7b89ece893b11c72dd1666c45708df0b8458b83156edfbd", + "regex": "(?i)^https?\\:\\/\\/qaeghqaehgbqaeh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f29a14178580daf359488091cb222ec80d0db494bfc0d075e35b6b5ffd0f8713", + "regex": "(?i)^https?\\:\\/\\/enthghgbffgfdg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5a8eeda4977c0c8ea84598174e6a789fff14cdc49251e4b673d90885c6001948", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c0b48448bfa5e22fd8eed55b3f4cb7e9ce058a1c5cb90daff0764ade4a83bace", + "regex": "(?i)^https?\\:\\/\\/hotcilpsizzle1\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7740d43e6a44aecc3dc400a54cab24329e53385e0fbf0e35ae047dee0aaf647e", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaheqa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "81344dfdb3a41a730ef1de44d2ebfe314c6feaa77672410e370f4aae82a1975c", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9093234973ab9372ee7dfcb4faad0864cf9346eed538e6e9b606af55401fca62", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a32c96dc8ddb0cd648c8fa39ad4b87ea26c071c1b2497666a19c37fe7276a9f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimax8zdp8z\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "6a8382d7ec058da8cb9c924a5cebd9c59eb20d0c271dc8e6da9f40806f16971f", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "047e09af230f7d2c9d707c7a52e21059ee064bf11c11f964546ad903f9c5411f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e8ce44b34b782819e678c44370163ea5265f00cbd6d3073e98f44043b99eaee8", + "regex": "(?i)^https?\\:\\/\\/eqahbgqdagvb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "61a4ef388a4f1727ebbdae8113c010da5a4ecc2438b2f7bef758b6f41a70a9c2", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-video\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f064077e81e5985df9ae7dd3ad52511e455917655cc5ca168f77f08e8779253a", + "regex": "(?i)^https?\\:\\/\\/hotclipcentral\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "160f51dde2b37e35865e5a561c959a06e4ed018fc8308f1e7cb4144c598053ec", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1694e9d8ba9f9aa09bf3d1774e057555ec2abc2d895c4401d730c62c2671a575", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ixqpcsip\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "2600f9f2a08f622673c5f903f963b6b15f9229605d52145b9f11888d25ee7510", + "regex": "(?i)^https?\\:\\/\\/hgbqadhbgqadb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7d100ef4afc0524d784a59c9f15dad4f9dec9c406a9ef9db9d012609d61de436", + "regex": "(?i)^https?\\:\\/\\/qedhbgqhbg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c2003f40961625b52a359502ca41c9a7c76694724dc19960e2a778f75cb4dddf", + "regex": "(?i)^https?\\:\\/\\/opioiscmxvnzieujkajowqiuqirncfjkdf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "237d1f364030ab36ff9bdb658130a1798f0480310d950eb82b08868cea89270b", + "regex": "(?i)^https?\\:\\/\\/wedfjdfjsdfsdfsdf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a9abf019bb34a9e7a8491f1c90a7fb1991fe5a824a42853e7b1c77ec43a1f12a", + "regex": "." + }, + { + "hash": "85d932e2630d8227dbf02db6880b635f60dcdf33175d96fd2b85a0cf63640899", + "regex": "(?i)^https?\\:\\/\\/opioiscmxvnzieujkajowqiuqirncfjkdf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "32809c60a987283c57e1b9a3eb1c39bd5882ba329d5b73793daf4681a8b9d181", + "regex": "(?i)^https?\\:\\/\\/best\\-porn\\-cam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4a2b907a794991896f9298add579e33507af00ba4bf9f111da2b60495beb8f48", + "regex": "(?i)^https?\\:\\/\\/hotcilpsizzle1\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c9af72e5705767cbc07a6c38f6565f99c4a9bb08813de8e4e8ec85e68688d53c", + "regex": "(?i)^https?\\:\\/\\/qehbqeadhb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b164746ae034037ee4ab465fdb722fab47684e09c3dc7e84edcf01304a12378", + "regex": "(?i)^https?\\:\\/\\/eqdhgbqdhb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "349005d8523f193d82426e93420dff662bd2473a8d196fc4c7fef2ecc194c800", + "regex": "(?i)^https?\\:\\/\\/opioiscmxvnzieujkajowqiuqirncfjkdf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ca590b6189a92375e4f47b35e304cadfead09bbe17e34d7b3b8b511cff2445a0", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9d7d6050b4742ab1fc9db96f2262146ac2a6aa1625dd9ef8d99fdf9f053784be", + "regex": "(?i)^https?\\:\\/\\/wedfjdfjsdfsdfsdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2f14043c06f4804beeb57c2ee71212e130cf91178ad8f9500864604bf43f5e47", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9616d7bc7b86864f78cc49afde7d82efee6a762097ffbdb0452dc5c0c8d4a63d", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d7137263fea119063b2c14ff27a2d1a35520342e1364c564005f7b8a9b81434e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimaldk53fj\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "e6db3c7c468a380c97b8dac65f64545623238024e83eb4a28e1b0473f68178fd", + "regex": "(?i)^https?\\:\\/\\/eqahbgqdagvb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c2084befa9043ff7757027b0d113a86487a7b7405501d6d72e76ac79d6c12b14", + "regex": "(?i)^https?\\:\\/\\/qaeheqah\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cb8b5ec4c84db48bb4619ef178b2e71a6fd416b02733ab0d125bf41bd313737a", + "regex": "(?i)^https?\\:\\/\\/ghabqadhgbqd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1f9e70df08506008098c4f1a66d791807b33e6cd601b44ffbcd68e369f0d5564", + "regex": "(?i)^https?\\:\\/\\/clipschoolhub\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d3b24eb3455ef8a20970813222dccaf9dd6ca532715b6292c13e1af8c0948d0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d4bf6d5d95f922575d27d3f9c0f8630e8e9f541b8ab5a70fc8ff2816f7eedfc8", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e3622e1d90ed21a446b1f91bff5a90c99c026e78b0e95bdadd2624de6a6063fe", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a05ff14e9035a9d0b817b44b426650c6cc3c1fdb701754a26f6d9427b79619ef", + "regex": "(?i)^https?\\:\\/\\/nude\\-webcam\\-video\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5b39d742a4113d42119500d00541a4ceafeb54a47d521a3b20707dfd8f8e8180", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-video\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2efb6506e6ebef5c4477657dbd93aadb5ad2f76ffb4f2a4b0925f00faed4e55b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimad01618kw2\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "b1092fe3024340b9b367538dac0e14d075313455f012dd0bcdbe7c1944603dda", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfghgeexx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4f0044b7d3bd5833b5a4639ec7f2586756d1e04f8a2e20a134fbf9776542cc67", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fe8072d758a17b72d6e840b36252ff71aadeba67a9c089ec202f94cff2fb2ed8", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e2367ae6a05f8ced844dbe5e29a6016b13dd824c7eca0542189d51aaed473c25", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimad52z8ek94\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "45a48a9d23851f55817afc8a51dee729585bd3eb8eb08da30a2c1a4854395c57", + "regex": "." + }, + { + "hash": "88eaa4c440b4a104d4ec77d04725825de3f078801bd61bcc9ae9738240575037", + "regex": "(?i)^https?\\:\\/\\/amazon\\.qsgfm\\.com\\%E2\\%88\\%95psubtfuv\\%E2\\%88\\%95ptryi\\%E2\\%88\\%95jbgnkis\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rdfprtj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ccd5ad41e993c334eb5cce162de46b0a49bcdd9b2fc83987632c15345313ce8d", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e0a360056c6128e85fe78480f58dfa495dfc004cdcc7852d8ca43b4bea4c32a9", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfghgeexx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "eb75e13abfd0ef24349b0b1589ab173efdec6644e50903737c88d52f5d6fca76", + "regex": "(?i)^https?\\:\\/\\/netcadfgdfgfdg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8a466767d65fa1ee28d2241d91c43218a0d75028869c5ab4d78362f4f0ec6e98", + "regex": "(?i)^https?\\:\\/\\/ahbqahbqadh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4e8e36b774f5849ca24029a993ed82c77bb01cde73c2947fab9b6841f6eead7d", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfgh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5cf2409791798d01305e59d2a45457fcac2d064384fec010828d83f591e56b40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tnmjjmdpkh\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "318aec9f0be7dea1450c28ad68c40342e9485a99a7ee357612a6ce61ac164e25", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfghgeexx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9443797c0897ed8d7c4bdda93cba9e3ecfdfd02e0b3ae7a38e38015bfef39f43", + "regex": "(?i)^https?\\:\\/\\/ezrdfgdfvgbhv\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "789b92fb6e2989dc2c57754f2fd6d0a8770c8f052483e8a0030ce23e5d8a343d", + "regex": "(?i)^https?\\:\\/\\/opioiscmxvnzieujkajowqiuqirncfjkdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "38fadd42fdd501d8dddd612782ab704d273ca3459cbccc5cc013d17198bb0e8a", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "03c9d2ef2ab97ea23c376c81039a8b63284400eebaae3a42261b05f3418e9186", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c211234f97aee2f350eee23fa160294b2d09c58d3c60fd9b28f6c171a2b9ded9", + "regex": "(?i)^https?\\:\\/\\/qehdbgqdah\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b3a51ccf9f3cf5ba9adefa55ca23859ef9562ed4b120e8d6f532f4196acec8bc", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fbe191810847e3fbd3f57edd2e4590d6e809338408fac475a1f049dd0502bba4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rlreg\\.com\\%E2\\%88\\%95hzpuupuble\\%E2\\%88\\%95lpjly\\%E2\\%88\\%95tykvyqoh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jmhypseu\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "800c91f4987d05ccc16bde5916d2bc24bf1a62996ef972bbd3c764fd63cbcfc8", + "regex": "(?i)^https?\\:\\/\\/qehgbqahgbeqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3289a41611827311f8432721df8e6c374ea4e87706341b66ff0d5cb3157f8059", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-video\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4ae88ac20cc9c6b563c440cdc66c11020ea039ce04ebffa1eab37412f91d7919", + "regex": "(?i)^https?\\:\\/\\/qaeghqaehgbqaeh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0da3c73944d4f7fbd268dbb82a2afa76510b5d5a4df1d4eca2490d6e638ff929", + "regex": "." + }, + { + "hash": "325b35f390611e7dba3e0956c598cd868565cd65a662139069b420aa22a66e9c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimastzp2cyh3t\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "eb6bc496b291a69eaa74e5be5d2250cf640fde072766b92c363265585c5871da", + "regex": "(?i)^https?\\:\\/\\/netdfgdfhfhg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "39e1ba24bbfe5fef778783556e457671a9dc500404b65b71dcae4decf0f9ed37", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=trghkp\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "ed1f37248a886b82fcb7dd2011da584b7b5be0e914534de98d5fcecefefc4333", + "regex": "(?i)^https?\\:\\/\\/clipschoolhub\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d8521c28bcbb9c457c6e0fc2c9e67cf2cbc0ecd8c82683797817a77d9df1151f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "12a28bcebcd3686cffcb7f2fce63400d3a87bc29902801a1615cc8dc5bf10977", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2f60183e40f94f3ece28c30c0a77fb9c9972f5c228a4e318afdadd24e9708558", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4b2ecb674e99c85d6cbfb23b84ea5e95d8b44c68f455166354f27ad6e6417e41", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8ee0bc82184bd91867a0052adbff3339284e665e9f6a2b0969d8b80b3da25df6", + "regex": "(?i)^https?\\:\\/\\/eqahbgqdagvb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9d0ca385c118a11d41fcf308c71b4c1c588cff2dae91b2ef37bb86c7f9794ef8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qzvbdf\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "8e920c91949bb6a296ca7a24ccd93581d9536af564a2c4444075483a3d96500c", + "regex": "(?i)^https?\\:\\/\\/qehbqeadhb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d3bc969ea313627d51d15cc4f78028bb9ea1116ff99d9b0b16106d1ee05c663c", + "regex": "(?i)^https?\\:\\/\\/hgbqadhbgqadb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "962242164ed334391897c215aa44c2ae5fdb1ef6071b688729874ae78676ba3f", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfghgeexx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "01bc333ea89c79438b509942fdbe8e6520eed7bc959c9bb73f92c7a8807f379b", + "regex": "(?i)^https?\\:\\/\\/qedhbgqhbg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "95a9c5dd2e65ed0190ca925c03ba520491dde781897d2c5f934c3586d11f1ed5", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4bf663d3208c5b90511a6577aca1753e630beedfaa2fc4fc52e9550bb6e8f8c6", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f96e777b1b622aadcd371529bc6d7697313b195ea6f179dd1b4d59346eb71f7d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6010d4141389855a93077f5b12dc87ec61591195d090221b32b27b89b8a4cff9", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaheqa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "64e127cadfa3f482fc2f7f68f110126b08c837d5434da2e27cb435d5e4344a87", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2472e9614fda5e4ce6dc345dcba747ff4fa2c10988051285f016022a63d30d7a", + "regex": "(?i)^https?\\:\\/\\/nerhfghdfhgdfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "59ee12f41eecaad39163d85f8afedf190d182836ffca748ed4b8a6233a6b3c51", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a84ac53d3b7e43d5cb05b0730d9238bdd974de2f7887a58b3aeecb6be331acdd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima4ns5eiyh\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "a1d6b53d583efca62de8979a84809191d890d8252953a3d6dd40136c233d2911", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "91832900e8dd47c3e68b82e07547af0649e926e6d94f9644be467f4db0fe1d7e", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "713b68b1b119ee46e203fb7e8517282435e1828596b495dedc94ded4265ae37e", + "regex": "." + }, + { + "hash": "fb8fcd0b8afdede88d2e41cfe45afecb49e09e080b19ddd5dd84eb360b1cc46c", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d47a35e54f6c4eb0b7fe3c5683353a1dc7d37d538eec552a7634af82234dc6b9", + "regex": "(?i)^https?\\:\\/\\/netdfgdfhfhg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1fe6176bc7d0c55c7d8fddf83cc009124f65d45ef941de1b593e8bcc6984084c", + "regex": "." + }, + { + "hash": "b5836b5514473fdf66113dd6ef9255f348ff51bca447b377d6fc6e5e3e2b013a", + "regex": "(?i)^https?\\:\\/\\/eqhgabeqdahbdqa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "be733108dc0be10dfb1d2fadba7e2a50905dfb0dd8a85435d0d96f29282769d9", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ed4b8c2fdb912576486625442a8082f5db62b0947eb9f81d24d7ec20619ecf7d", + "regex": "." + }, + { + "hash": "367e946d9cacd8559c81317cb1fa5a1338cdac3d36914038217178b8910c4074", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=nowdyq\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "b32ce36c8fd7abdbcd3f7de81b9bf7c7298a9f0b99d9aeb6dfa4aeb37e9e5801", + "regex": "(?i)^https?\\:\\/\\/qehgbqahgbeqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cc6469cb267231a021612b6508b8020424e9ebfd17e25921b527249b549800e1", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b65a375e86402580c1fed4688735750581e176be19f54c7eef4f4748d6a25cdc", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a4aa5e22146580f70347793cb125982e9635d2a8f8e5d04476569b8c8c06439b", + "regex": "(?i)^https?\\:\\/\\/eqhgabeqdahbdqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "18d7608b28740bf041172f9b0d72677238631b9c62ff754ba467895b17e6a445", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "abb11c6df509c216e16f08db096c6e8095e750fbcc63bc2035fdf0a346a08a67", + "regex": "(?i)^https?\\:\\/\\/netcadfgdfgfdg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e9ad9f572120d8f45588c4a2ec969aab2cb491bb1493b2c329669cb1ae6f8512", + "regex": "(?i)^https?\\:\\/\\/netdfgdfhfhg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c5b5e8c7afdb3ca54c1fec26fd346ccd63249cb8a5af28b5314ec7e9bde6a1de", + "regex": "(?i)^https?\\:\\/\\/attwebmavd5\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a99a5d0b52f834bd1f80650df87f249e31cc34e826e8b8bc0cb676d5b824be6c", + "regex": "(?i)^https?\\:\\/\\/netcadfgdfgfdg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b98cfbda5e1ea41e67bc5e248781d69d5cce828b32cd391d9fb3d9b5251d1549", + "regex": "(?i)^https?\\:\\/\\/heeqadrhgb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "94eb5af7ee969decb0e422269ab2da490a053428325e6964d0c8214ba33e1884", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f1512d9fa7076bbe76559dfed4fa85eb2eb008823718e27f91c8dea2babde693", + "regex": "(?i)^https?\\:\\/\\/trustmee\\-help\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1c717776c8a429a99cdc3af357c566802bdc0aa4bb5f80a9a771f3f1e61413ed", + "regex": "(?i)^https?\\:\\/\\/nerhfghdfhgdfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "489381a47edd50c05b65b39e5d0df2b65aa7d32549d06db029f191f4afa4ef80", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "35e27c7bfc126654ed2a8d7826216c505537f9399ac72ff82bd3e00741a51d76", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimam1mpt7b5\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "e8ee48f061d1a7e5a946856cb8c1609fdd1ddbb8e77daaf209af9033ca7d0174", + "regex": "(?i)^https?\\:\\/\\/nude\\-webcam\\-video\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "003589ee33c4bfa8f85b27dc150b3b87f6939a08e991bc5e783ff1cfc3550aad", + "regex": "(?i)^https?\\:\\/\\/nerhfghdfhgdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a6bffb011d1e0f0896e34c2f87c6d68dc65f62f1f448c9460bb06ec95214763d", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9ee956890166a4a6377ff0ba63d4f59e2b9bafc85c2815c24c29b0c3d4abbb71", + "regex": "(?i)^https?\\:\\/\\/clipschoolhub\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "75ca6f963fd35bb6178eab40f6c16da94f50b9c8a24a27e913b0b8d84d10afab", + "regex": "(?i)^https?\\:\\/\\/ezrdfgdfvgbhv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e558ef229c9153468843fd227517d3d04ea3a3682d63e7ab589aca693ee76947", + "regex": "(?i)^https?\\:\\/\\/weeb\\-cam\\-porno\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "33c524d514398a8a9902182863a7fd03b15ef76b2f1aeca194e2d9fa13cb7595", + "regex": "(?i)^https?\\:\\/\\/netcadfgdfgfdg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b29d518eebd4e0da4cb0585b02b043be072907e3ad913e65b7c435d092239770", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "63ad447af9d56f720e5ad46dc97d78b0932487dd726c2ebf5d9e589239bb9459", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima3z4zl6yui3\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "3d8ac3970ebec5f4f78aa2f9f527befec57b8595e6a232375751a7f4f3730283", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4b0a7c5218decca6d8ae930b196f7d02226bb6c7588dd3606df7d14754269bd9", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-webcam\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "706294b070aa5adbf16c10f60b35b71a3915488c3af05fca7eff22b4b27bccc0", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "367ee51cef5d1c281a6f7663d045e20aa8388b0f5f25bf4ac73c1beee95e8b8d", + "regex": "(?i)^https?\\:\\/\\/nzetjertgdfjjg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6bfe264667551c8d32bc547b6fac37848c8bd9bd21b0be492fda551336eb6afa", + "regex": "(?i)^https?\\:\\/\\/ahbqahbqadh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5e706001b7cc071d1a75c2582fbd151a8b662a71f5fbea57bc44a0c06b7d2518", + "regex": "(?i)^https?\\:\\/\\/eqahgqeahqea\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d5ba9657be4748440f4400758ffbbab5fb9604d0c3bafb77d46d6347af6fd07f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimaqxepte0u\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "18c08d24e656df522464e79767bcda2bd84386ce7f239e68510c839fa5d2868c", + "regex": "(?i)^https?\\:\\/\\/eqhgabeqdahbdqa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fbc8d8930ceacdfb5d46b36ca3f968f424a7718e5c63769401ef8753750dfdea", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a824334a073432c8c6728261048487c8f458881da1372c5b33a0cd4e6fb5c808", + "regex": "(?i)^https?\\:\\/\\/eqhgabeqdahbdqa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "48f0e2841d0c8c59464678a90f6234dfdbfb3b8b0d42dbe1a6616aa48bc53afd", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cb9a94ebb0824fd7b5fc1a1570827d32201378bfbccd4d6df87a3b2579ecd357", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-webcam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "93007e73cce94d1a4b2562799adacc4b548de9d8cef763dcfbda941527776ac5", + "regex": "(?i)^https?\\:\\/\\/qaegheqahgqa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b66a79f4a00bb609d766afb688323661c38caa70d3b066faa9b1b2bed80a5e7d", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b953d1e21cb24e49942cb5b3c4d5e4acd86e91231b8fc8ab575db61d2b58c58b", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8c4d0c66338df4a7960327b5d48e18821ec84f20606222f3b59a26f11a45ce65", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4d1300d34e65f91d86a536aaf262de5a7a0fb7a02014003d43849274f7e0e047", + "regex": "(?i)^https?\\:\\/\\/opioiscmxvnzieujkajowqiuqirncfjkdf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b5ee8f446b8f3bbfb2490fdb5962e02963786741c16c9ae6a5fe417dc61cdb26", + "regex": "(?i)^https?\\:\\/\\/enthghgbffgfdg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c9b1b8cde4b571205534aa4cc4b6f9ae62f7eba666eca001bc2f4d5cf5ce7bdc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ggnif\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "2395e8d42e34083e4d918dabdbc52bcea2da7b370193069aba127d0f1b062d3f", + "regex": "(?i)^https?\\:\\/\\/netcadfgdfgfdg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "049cf262cd546efaafeabf40eb0790064bbe07f194875741bc890752c547a57c", + "regex": "(?i)^https?\\:\\/\\/eqdhgbqdhb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "74137dc06ee8d921f9b1b28ac832bbf272e4105e26bf764204752ec98b4a6669", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "814cb9e3a6602b13ddf471380b90812fbad4724dc15206ec35fc07a068a8b2d9", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f306c486311c913badffed09fb142086907c6e2170652fdc8385ffe496dd540e", + "regex": "(?i)^https?\\:\\/\\/ghabqadhgbqd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "75ca7ad4ce274d4350700293d5fe50ff879162183da3037bd88152b458517b7e", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaheqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "251e5173d8dfaaa401d7583ec62feca022a5bda5a255582527e0ab3dc4bea473", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1973a1987fbcda81d802b1f576284934e8bd92cec156343a8681f1507292b207", + "regex": "(?i)^https?\\:\\/\\/qaeghqaehgbqaeh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7f68dfec3951617dcd6cc5925c7068eacc83b9f9ad24521370350ef107ac327f", + "regex": "(?i)^https?\\:\\/\\/ahbqahbqadh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "df402aa24780e62602f5e04cf16435d708f74c8b0593de035e75547976d0c8ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimas2gy4bxmn\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "da727a17fe172894235ca85754a8f81c5900312dcce73a7774d2cb0a41e435b2", + "regex": "(?i)^https?\\:\\/\\/eqahbgqdagvb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "365ca4ecb137a26097cab97f95725d97424e6a5c7eaec524468d54a3df26c552", + "regex": "(?i)^https?\\:\\/\\/amazon\\.oxhoful\\.com\\%E2\\%88\\%95ajjgmmm\\%E2\\%88\\%95wfhoewrwu\\%E2\\%88\\%95zeigflllb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=iocasgrbg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7049e579deff141026f771f9a7c36f75c64b7049c44c694e39a3e777947141a0", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "05fa91a0d99513263253a0089eca11fcb350cb3ec163bf92781478eb89cb02a8", + "regex": "(?i)^https?\\:\\/\\/wedfjdfjsdfsdfsdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "62dceb41c9605884221abae3751648ac4b85be6d150f87585225e472d131e1b7", + "regex": "(?i)^https?\\:\\/\\/amazon\\.pahfn\\.com\\%E2\\%88\\%95yxbrvz\\%E2\\%88\\%95sdoarnnjpo\\%E2\\%88\\%95sjejlvys\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vnvorek\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a98dc68d1445eb85d2e0b72e0db686bec5fb79d63cf9d49a5789e52a0d2f346", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimaz42dwzh\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "7456fae43bd642bc3513872d1113987f4ecebe254860545a3781acb0479a34f2", + "regex": "(?i)^https?\\:\\/\\/wedfjdfjsdfsdfsdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "845fdb24fe32208d4caafdf6be80877bc63bcb245dd25ed057b327246bd254dd", + "regex": "(?i)^https?\\:\\/\\/enthghgbffgfdg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f57e392368c35b28f41b0d1c2b96f6bfce3e8b375e0629a57599c3f1f21a8c23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=spqnmtw\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "81052a7f8af04974cabe37c329b6750aad26dad179f1d759e68a62e49f8153a4", + "regex": "(?i)^https?\\:\\/\\/qeadhbeqdhb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f72848dc6ed1e4f9c7432361ef27154eb340ee062d64624ed806c9e057444dc2", + "regex": "(?i)^https?\\:\\/\\/ehagqqahbqax\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "aa2a3538a13beaa3175dc6ecc678a748b3435bcba5a70eca6d05f4a029ffc7a8", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "93ae4552bea8773938b755cb0003eef7c996fc738b6fed711be06016e11fc7e5", + "regex": "(?i)^https?\\:\\/\\/nude\\-webcam\\-video\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eb9d41841fc1837734a2b38059841a1ff60527da582c39f7a4d2de42823683c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimanj9k15avo\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "976ba370a800a25f8395d456a0025ba750f2210cdd17634b397838ca34fc4b1b", + "regex": "(?i)^https?\\:\\/\\/qehgbqahgbeqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e6dac0f0c5ec26e3953d2e24d4c087ff621c56dfd7d7a25f09fbfd4ab24797b9", + "regex": "(?i)^https?\\:\\/\\/best\\-porn\\-cam\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2f128ba75bcba38523c2332a58357c42cb11d4bbc6ccc91149b2f6b0485a55ec", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1b01d5d2e398d1a70261e5aa146b515fe0cad33db3f6594e64f4e669893f71ee", + "regex": "(?i)^https?\\:\\/\\/netdfgdfhfhg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ef9095acf66d40c547e81dab8a19714b01fdce7c31cde1d29f7e0c0275565c4d", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaheqa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ea555c1aac9ee6298e4cfb98b2c8470e564b7cfe7b52bac44d383d4a3e5efee5", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7af67538622ef5cd6caa63c3a71e6bd72805f1ba1e62038b2ff4efeab8d9e14e", + "regex": "(?i)^https?\\:\\/\\/eqhgabeqdahbdqa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c26d3505e5295b69856972c758cb8fc6323e20628affd0ffc8cc1ea6e195fffb", + "regex": "(?i)^https?\\:\\/\\/qedhbgqhbg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e2cda03222f4d00af625cd36039604c4bad0ebb0547235101a8f66004d897c5b", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e24e46670a0f5eadb8286be711ac6790a20b13f14e0dcad8da6abde69be6bd38", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0c8be3b5bf00431d1cbc83061f268e8a865e00e8b19ad79825e3ea2743f11a0f", + "regex": "(?i)^https?\\:\\/\\/nerhfghdfhgdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ec557cbe0327010ec29b922313921ce4cf88e296f13db042d7e33ad7393c1adb", + "regex": "(?i)^https?\\:\\/\\/wedfjdfjsdfsdfsdf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ad45a0d4cc1652263ca702a59a3ad6b8e955296ff7b66547dbf16a8fc5b029df", + "regex": "(?i)^https?\\:\\/\\/qehdbgqdah\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3f673f39b8e1eb24b2390a8f40d456fc1a4e429cd62b8965eaa5f1a542142bdb", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c530fe05148d3e0bcd7fe7a60d6e65eff8fb2c8d4fa5e0c775a60e23641db087", + "regex": "(?i)^https?\\:\\/\\/nerhfghdfhgdfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "deffc4c8547112cc49e5217de4221ca88a6e5b84e99021c97628325f3c319a12", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8fefd6abf4ea951dba70aca53ecca5df09250048e72b379881aa8642a625ce75", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e802a49a5bb9f873dada58b8ee63fa4d224d002f1123202d43719e49e0883c87", + "regex": "(?i)^https?\\:\\/\\/ghabqadhgbqd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3be3fb227ab3f0ce6f75b69dd0733aee1912328934c5d929c995311bfe7542bc", + "regex": "(?i)^https?\\:\\/\\/hgbqadhbgqadb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3023a80eb37de3917d5e549a2949f1aed1c3c0da65005d202277a7600764be1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima5u2ph4wft\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "c3e6639c5ea8c5160fc79d289bf212a41bb9f66d5234aeb1b616f2d1ecb7810b", + "regex": "(?i)^https?\\:\\/\\/westmarkcreddit33unioncure\\.weebly\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0e1317e7fcdb33f00aa4434e13ec9e3719166504f5549a3c7305f88a9bee99a8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b8bf0e9bf49ffe6bc06404747451496a6df4c80659d15fd92e1de7c5fe7b57d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38128d0fafffa23c8913f6d326ea9612a6476299a5728899e8402bd64980d431", + "regex": "(?i)^https?\\:\\/\\/ahbqahbqadh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "313e5846a82902420f0daa9e0d420ad6c06f65a519cb6e93906e384291094062", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimato36vg5\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "ad1ca5cb7a283ccb328e89b74847f2edd16e11e9558963b404736e284547b519", + "regex": "(?i)^https?\\:\\/\\/qaegheqahgqa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6bae2afddf7fd42e738c4f91e1fef755f5d43e02ea8e2d84e8d195ce66dd3756", + "regex": "(?i)^https?\\:\\/\\/eqahbgeqadhgb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "63d63b80d9b65bded4f5281609ba347b79dbd92cb488480d21f510740d6e2614", + "regex": "(?i)^https?\\:\\/\\/qeadhbeqdhb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b28f5458d4c99c6a464587f765ea376f32b16cb70b7e13a353a48c656aa301e7", + "regex": "(?i)^https?\\:\\/\\/nerhfghdfhgdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9e7d7c7728fe5eadd7a92df84190c732ad56204177128e1a689eb6547457a1f6", + "regex": "(?i)^https?\\:\\/\\/qeadhbeqdhb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "44239becafa196919aed249729db05de7dcf6e8dbffa1614f548e37cdf55b018", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ca69457a07cb5a8e1f182b803510d14ee8bd4d6b2496e48ef5a953dd45380ce9", + "regex": "(?i)^https?\\:\\/\\/ezrdfgdfvgbhv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9fa89a8901e2f55ef2f0610b35b848f47feb8229cf152085e44005a8b3c891d1", + "regex": "(?i)^https?\\:\\/\\/qedhbgqhbg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9464fde21cfd6f746c7dac263241323d0a8efd2e6c2736a41fd54b3f7b774c8e", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2e933f5ac2f3960d58ee94aeb8c381a80652decfe40cb3f975f5e8cb071466cb", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f1cea7a874c7729313d9dce67d9bf5d83301ff039a4100c707f269d94e5019b2", + "regex": "(?i)^https?\\:\\/\\/nbv\\-101375\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cfed7fe857f7a9c94f92ccec6fde8ab7a6640d57045c67dc581be852c4fd9495", + "regex": "(?i)^https?\\:\\/\\/eqahbgqdagvb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6a5f50a48f6dac6d169128d98732d0160e21ee1f74f3ed9918ae6d688f813b43", + "regex": "(?i)^https?\\:\\/\\/hotcilpsizzle1\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f291fa2edcbcd22c1942f5d453ae43a264d17bf58abc35b284ae506590eb6", + "regex": "(?i)^https?\\:\\/\\/instagramgrouped\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a99d59d71ce9943322b6a4aeac1e66c9c7edc13945e97f992d127bbad6c7474a", + "regex": "." + }, + { + "hash": "ffa940c68fedf20f939df2604aa36aee7aa5c8d333aa2ee85cc71cf70f0f9b18", + "regex": "(?i)^https?\\:\\/\\/eqahgqeahqea\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "488fa0013c97f1603decef16a63d4c9ce05b9bee45c5bfd7c4ede19d253298e2", + "regex": "(?i)^https?\\:\\/\\/nude\\-webcam\\-video\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1f48ccdaa10ac1c3d378c36dd754a159ca54ab145291e6d85cbcefe8ed8d012c", + "regex": "(?i)^https?\\:\\/\\/nzetjertgdfjjg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "868df66ab6c23c29c870c49a5bde285512693821d84d09d5ed2ef54b62127927", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaheqa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "97d59c0da1502f19a616326e28b87a7f81dad24de476b29cd10929a45f19a78f", + "regex": "(?i)^https?\\:\\/\\/heeqadrhgb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "52eb49d442dc6b8a48a7046638094c8547d562d5a04e2575e0a7fd5e31c7267c", + "regex": "(?i)^https?\\:\\/\\/qeadhbeqdhb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "36f33def56fa3fe207cda5e9e0789bb967f0214fd75935b4266256635fdc3988", + "regex": "(?i)^https?\\:\\/\\/qehdbgqdah\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "03c3aae32dae8806370bc6b8c51e8d90b27d3b4fefc24c8cc8149512909eb08d", + "regex": "(?i)^https?\\:\\/\\/enthghgbffgfdg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e6fbb95a563211b60da651462e971cfe5ae9321570657779d0b6d30771606747", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "18d14bfa3f9e419fdba427cb2d6fbf8d5034f9bbc5b9a62dca7ae015b5fa1d16", + "regex": "(?i)^https?\\:\\/\\/eqdhgbqdhb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4957923434e38df7d469d030d6274cd8f11e945e15a1511b6f24770e3b40c59e", + "regex": "(?i)^https?\\:\\/\\/hotcilpsizzle1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "044ab0f46eebf4318f0a0e19ab5eadeffc0e1c92510178287eabe05f103a5a48", + "regex": "(?i)^https?\\:\\/\\/netcadfgdfgfdg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9afb889fb2a15913823230c7f6bec6685daefdca21f2d87449ee1e601973f8a4", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e08d8b5d9001e908edebbbe23229a2e154ce549087b1b9bb8a521b24bd4e2b8a", + "regex": "(?i)^https?\\:\\/\\/young\\-webcam\\-video\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7e43c34f46ced0a13b2ecfa88f9dec070d4f2c346b196bf1f6decda3c61a2471", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ofeqqof\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "339e1f045cc2b8bb39ba1ea90569b6017ddf5d5e7a62c2d31483dce9a1c727cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=drkjptp\\.\\.(?:\\?|$)" + }, + { + "hash": "7a7b34749ef009510fdd30abe4c85e20445863474c904ef90a4eac998bb30949", + "regex": "." + }, + { + "hash": "7901f4f693f7ec4c9d39d97b6ac9efcd240eef8e880ebd264f6106301a549390", + "regex": "(?i)^https?\\:\\/\\/heeqadrhgb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1fbff0aa705e66f4d764aac8a9d0408b753fd84c57dd5d77ade4baf460aabc1b", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "af2f8031d913c3f59c36716682bd4ca65f57758a8e4d10b995220e092bc7d253", + "regex": "(?i)^https?\\:\\/\\/webcam\\-show\\-porn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "dbd1d54e3265a2caba6327ec35174b020585e2eb6f098e3b5e138e565d87813b", + "regex": "(?i)^https?\\:\\/\\/qehdbgqdah\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "17266940909a9f4c46d7f6971f411ebd55ad9aabf6228958d718eb1f36bdb41a", + "regex": "(?i)^https?\\:\\/\\/qehbqeadhb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e091aa75fdc85fd44650937b7ff56b82ae40ce6539ad27cf65459d95612f6f57", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+18g8pv(?:\\?|$)" + }, + { + "hash": "2704dbbfce9b64ae3a71f8c9f37a15726501a04308c7a12dc30f2514f4c111c1", + "regex": "(?i)^https?\\:\\/\\/qaegheqahgqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8a0111a61ee3a2091bffde2914a060eefdb1cdab7aaf316536f39b72ed27633b", + "regex": "." + }, + { + "hash": "efce928782806e92984e78d76a411f57cbba36f52a407cb9f399119428e80596", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f02fe1d4e155e535a3f1551cb42c72585cafc3f4d605092ab27ddebec13ae098", + "regex": "(?i)^https?\\:\\/\\/nude\\-webcam\\-video\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "06c21501ac2b0a7bafdb1f0e7332dda29ae4e39c49acd278f440d2446054fbe2", + "regex": "(?i)^https?\\:\\/\\/qaeghqaehgbqaeh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "47a83bb2c96d03fd30b095afd129e2b0594fbeb8264796de91e7cfdcd2bfec17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima2v9kk06\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "49bf97268eb33306a57ee3f53b95f5abdcd01173502d2c6ce5235ff7a3c31311", + "regex": "(?i)^https?\\:\\/\\/heeqadrhgb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "dbfcd8e798f96363492cc7394522ed41e855a1fa9197b7cc41f56779a6bcc341", + "regex": "(?i)^https?\\:\\/\\/eqdhgbqdhb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "03237a42c708bba4d9573ee7b7b964c7548614ffd0fc17effdb3763c9e7f2e88", + "regex": "(?i)^https?\\:\\/\\/hotclipcentral\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "416133d805649466958b6684f452088c2a452563708558125ebd290d058659ca", + "regex": "(?i)^https?\\:\\/\\/qehgbqahgbeqa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9996d5313f1decce228ecf24599316773f6a5b7ff14ae9714ec1ea2739d6b54b", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "abdd2ba4efc36406e90282bb75080ab716911807a400f2f87c1bf673d7ad2d09", + "regex": "(?i)^https?\\:\\/\\/eqahgqeahqea\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "87503bd3ecd2b3e3f72582da4d32a0d47fcec877aaac8000d0a10e5bd153c2f9", + "regex": "(?i)^https?\\:\\/\\/hgbqadhbgqadb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a6660d93c10f3a60011a52dacb319465a8f8bff6b908310dc696a7844e458f54", + "regex": "(?i)^https?\\:\\/\\/ahbqahbqadh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7062d30c903e810cf3e63cfb2504f8ca51a9e55d4aeae564c3c7b62bb86e6aed", + "regex": "(?i)^https?\\:\\/\\/nzetjertgdfjjg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7110286359144039f77546b5cd7dbecfe1f5071deebdb889f17962acd75be17a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimamfucktwrej\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "7a97e846bf6845b37bfff5aff96494eb3f01ed6b07ba7e066fd74d86a9700951", + "regex": "(?i)^https?\\:\\/\\/dqghbqedg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "230fd4e27fd71cbec387a17c8b81b5b9db98b15daf5d7c25b9ee142064000c24", + "regex": "(?i)^https?\\:\\/\\/best\\-porn\\-cam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b14d2f5dbacd606e817c1339a68611d4c34e3089a67c9a0f7f18d204403cd7fb", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0f6fcbcfe78d2636a9fd5938ed70ee55b0b0fe7bd84c6b4979c2f33f16aaa", + "regex": "(?i)^https?\\:\\/\\/ahbqahbqadh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "94991acef173900bd051069c156d7d89e673bd744f2d79b76246771aecd1b9ef", + "regex": "(?i)^https?\\:\\/\\/nzetjertgdfjjg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bd5d228112356262fc61fbf324c78cbc92d888cf8115ce36fd8f6011e2855e82", + "regex": "(?i)^https?\\:\\/\\/qedhbgqhbg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0179e0151ea83202ccda4e378ba53a101d2f3e5bc1dbbb7da950d3d2b4162677", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e8c902055b25f4d1358b8715b7e5370ea6d8fb4392e96b9865af781b8a85da67", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "68bdcd7a8802f55bf584bde03c518404be49ebfb0b637346bd4b111c601113dd", + "regex": "(?i)^https?\\:\\/\\/gfhattnetjh\\-109946\\-104730\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4917c52023ca9c10a3df9f5b4f1ca1ec2218a149915b0a419cab6e621bed5975", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3514f670b5a0ea1eb90bc2d2e04e799b386cdc88ae68546ccb4872a0018f7153", + "regex": "(?i)^https?\\:\\/\\/netdfgdfhfhg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bbbb525ff5594640c887c9fb4568238de80ef6a0383718b709b1acdba78765b2", + "regex": "(?i)^https?\\:\\/\\/qedhbgqhbg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "80f736c64df68cb5594dc6b2dcb8ff29dd70d646c98518bc8d77e8f5bab3abde", + "regex": "(?i)^https?\\:\\/\\/eghqeqahqae\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0cb314349098ab552986f4fef235514049dcfa1f862ddc4d3adf552efeac4859", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgeqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "453478eceaf0535df82cf0e1f869436ae369b4cf91536fcb6dd2e0270af25050", + "regex": "(?i)^https?\\:\\/\\/free\\-porncam\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "178a9a564f3a88b86500022f37f4c9236c0e46e03e920c37d1a58a55badfa3c5", + "regex": "(?i)^https?\\:\\/\\/weeb\\-cam\\-porno\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "da3a7c566cfd31483e0f4dd41d8378315b8f2582889d22076a1df715b918102c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bnqsjlou\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "6e7e28d29ff656c9f89574ee4842c7c0f7ee3418ca66e7333e2bdcf94c5ef88b", + "regex": "(?i)^https?\\:\\/\\/ezrdfgdfvgbhv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a822175089d8ef5e1e76d2784212cb1f2d2ae3c86fc43e5fb36e1c0e12c80b2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xqhlsvu\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "93c0df17e2e3305feb64ed1284728221b54493b37f1d58e36ec0d6e8046cb80d", + "regex": "(?i)^https?\\:\\/\\/hotclipcentral\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "efe844491d44a2f356172ed4cd26215349dbc4f55fe07266f3cae7fb927a5ec1", + "regex": "(?i)^https?\\:\\/\\/qaeghqaehgbqaeh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "78d5aca2f99b95ec823d7636ae77383ec119273f3e9610ed21a292af4ed16b52", + "regex": "(?i)^https?\\:\\/\\/opioiscmxvnzieujkajowqiuqirncfjkdf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "be306d045bdd539ebfd3860c0242ccc6d76d11879ecbfb9e55ed04dbc539d269", + "regex": "(?i)^https?\\:\\/\\/qehbqeadhb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "dce9fd5be1cd825e1c052419e9eb6f37a2514143513411dc43f02c9e003e2ede", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgdfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0d26a4aba4e84b489d2301ebe4eda906fe551efeede92b8ae3ccb721bbd8f561", + "regex": "(?i)^https?\\:\\/\\/trustmee\\-help\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e36ae0d1fd5caf1142f31bb2443da88592ae4c9eccce49d303d06360e1492872", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2e976a489299f7745486e89ad30be83650f545c7c232b169b5e0e6ea29d7935b", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfgh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ce7e89b6a61ffab1ef77ac0c21b22be8ed139d092c5af9a9475064b829ac8371", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "1b469530d2d480349dd344da0037c6a04db9f7620f14aa304c6187e5afe48ff2", + "regex": "(?i)^https?\\:\\/\\/porn\\-amateur\\-webcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ed20f600ae00cb4e456cf8c794ff2ce19a7229b1534ef598b1adeb99144d5d87", + "regex": "(?i)^https?\\:\\/\\/enthghgbffgfdg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "99b33ff7fa71274df998332c4c0ebf97210671fc72b5875eed918854001becac", + "regex": "(?i)^https?\\:\\/\\/eqdhgbqdhb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "91822fd8e941190e828ab5d4141bbe319b2deed2e3bc8755487590d69834e8b5", + "regex": "." + }, + { + "hash": "95aa83aebdf96d875efcb91af2d655614e7e120f5908db8141bb84873676c713", + "regex": "(?i)^https?\\:\\/\\/ezrdfgdfvgbhv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5b287442ae9448d0614366a9ad1e1702740d8a86f02b81dbdac7f8233d60513d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima3slxsouybd\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "7213a07a15e717afd86cdf23127051e81f4a3489f5784151580cbf671eda864c", + "regex": "(?i)^https?\\:\\/\\/qeadhbeqdhb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b34d3961c290e852e77f179e3eca951aab1f386cb61cb15f946c8e2f813e34f8", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1fb51a7eea464d7cae8a4ac18a5565fc6aab458b5343518d2c36bfa936530b04", + "regex": "(?i)^https?\\:\\/\\/qeadhbeqdhb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "25037cc25267a39369d2c6763a1995b71f9d068f780459b29b3f8a3f10ddc4a6", + "regex": "(?i)^https?\\:\\/\\/viralvideohype\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "66d2447e3565dc17061d41df867df5ea353ffc98672aebce022da7b469ca1ba8", + "regex": "(?i)^https?\\:\\/\\/netdfghdfhfghgeexx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "16cd033df1041b4ba07c280bb3715edb9c5f01d1d14e0904ebab6df56364ffef", + "regex": "(?i)^https?\\:\\/\\/hgbqadhbgqadb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3a55fd2e0af3e080b357602e143d84bc225b83ff112b8afa4a3073a23e839944", + "regex": "(?i)^https?\\:\\/\\/eqhgabeqdahbdqa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5f2c9097ec8bc40ae87f2c143fd7e2c2b10173a65c70902610905cedf2785ef3", + "regex": "(?i)^https?\\:\\/\\/ghabqadhgbqd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c0a3241462b90890a1360322641e3df01fddaa8f33177051187c86f0360fa6ad", + "regex": "." + }, + { + "hash": "a0249506331720fa91a9ba419ad809b1fa5be424c621047dd9a581dd486f09e1", + "regex": "(?i)^https?\\:\\/\\/trustmee\\-help\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "13b4f5d998b5cb137110cb500b24c420816609f03bd7800d1328cb2d24f46744", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c06ded2673cf220767cc3efe3ee3ff55bc83d180dee4bd04053aacee2e78561b", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "959d9ef0e0dcc566b94a6658fa5ddd734c5c87a12f90888e51853c6ee4ee61eb", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "723f363af7ae2300aceca72f95cabb90eaf0391d3ce7ea50677839ecd45d2f67", + "regex": "(?i)^https?\\:\\/\\/sb4d6\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "31df9e47b38e1920e44e941273a3b4168b8077a1c55773ebb3f9a557bab71a25", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a7c6fcd7ead19fd2d6070826651ba5955bb844f4f619100d4da1a222a78554e5", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e799f2b1777fe18169338619e60cf7ac8aa7436704860673dcba814e6898668e", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+15giez(?:\\?|$)" + }, + { + "hash": "bec9b8c2adc8f4eecfbb12eca780b0a3b64b9c4db5e83f761c8319448b5729d8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xx\\-telecharger\\-mobile\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e3cf32bbaa390373e8cb8d96c1c6466d3b338593b26e21cf24bd375721c80314", + "regex": "(?i)^https?\\:\\/\\/amazon\\.sjjbi\\.com\\%E2\\%88\\%95ultki\\%E2\\%88\\%95xjahd\\%E2\\%88\\%95kkemeylnle\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cxxcxjbbn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7f50ba81e62dfca02c618d5a5c638f19be2af6318e3cdc5f4c23813b3e9b53de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "07d4badb8ad3cfc259ca545fcd720a9c283f5176141350b9d420fceaf77225b9", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d381e274aa18ca9566b5269edccec063e048f0ab63063075b8d374bf1d8f1306", + "regex": "(?i)^https?\\:\\/\\/43423423432\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "249b1d40669e30d9404e3ba80bff3ed5b4e4eb00c9db756fbcd1c0bee6eed810", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "971f27d11000269954a59fddac9d5071b1979c010baf6e8bbdc2460a2e81c8ef", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xx\\-telecharger\\-mobile\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ac8356d5c05008ca97e096f7fbb52803b2743fb76c5d7a8f809edd3f087e5bfb", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "70c7775ce213a4d7e02e21ea5404a6bf137fcc663f82e634ace56fbc6b9e1f8f", + "regex": "(?i)^https?\\:\\/\\/trinidadandtobagosupport\\.ip\\-dynamic\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "4dc353f6a4987a4e850babdc6c4a51d9f13822fa60dcb5011d084641e5c401ea", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cdeed42f9e5115cb95496fb0d0bbec46f7cfa7c0b17d8b5bbb58417ec941dfd2", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e4b42b49497620bfd083b5d94f9d05bd9ad7825a684f4e771c4035212df7d97b", + "regex": "." + }, + { + "hash": "f55bcf0dfbe0db2e721bbb79c7f7141460f98158255ba6618f14020875661446", + "regex": "(?i)^https?\\:\\/\\/zzzvideohot\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "a2fe6957aed640c8f5568801aff6d0435513bafa51d3f85c9e6fa46e23cc2b69", + "regex": "(?i)^https?\\:\\/\\/chatgratuitwebcam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1bb091983cf8b29c9e2c06293017861cd3fc77b1050ee80055e3b3c0b8110e81", + "regex": "(?i)^https?\\:\\/\\/camhotgratuit\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "88bab480aa4f5eb207acd54e949081fba24007191310990db41181fee13793c1", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-visio\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "6d2ffec5d7ce5f2a4295a02c8ac9147397ce1521b06f104d24c55255188f6986", + "regex": "(?i)^https?\\:\\/\\/videoinfernospace\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cddb8fdcde10474b3122edefab0ec11c4d3412202e88b35a61266c7f9738ed9c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d5515c5d4f730a70c236a04ae7e04bfca9d92d88a3b6dc1a0d328d8812a9c4b3", + "regex": "(?i)^https?\\:\\/\\/dasdas783223\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a631eceac013191f10355758c6126f152f02d983ef53e8612bb217bc871519a4", + "regex": "(?i)^https?\\:\\/\\/comotenermuchorobuxgratisroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63d6ebafd8855b84406e1e1a15a0425d930cfccbc91b60b67105d6ac6e43fdf6", + "regex": "(?i)^https?\\:\\/\\/xvideohotv1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "523444738fdd7af97936b9f8a8b9885ccd2ab170930b2fb3803fde1570d6db52", + "regex": "(?i)^https?\\:\\/\\/videoincinerator\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d2c73e36f01d51cd75fa3cd915675f15ec39dc3cb87c4557de2f1440fe84ce14", + "regex": "." + }, + { + "hash": "7be778761c6e7e28a49f4426951f06965b7b30913fe078ea3c34ecdc58a8e1db", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fda950ff13eeac2ff4da8308dae0a79814370d8b5a020226c4f9a3f634e519b6", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a89559b20b31e0fdd2a7a58ce043cf96a2ca3eea1aa83ba7bf626b9c5a2eca8e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-visio\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7f50ba81e62dfca02c618d5a5c638f19be2af6318e3cdc5f4c23813b3e9b53de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "0aa9ecc705f5fab36065480c29e8eb9569202f2a7010c1261526bf4ff05c3549", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eda7a910bef135f6b384ee525ce51a88e2addd5065048bd7c214c3e189e1d105", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "43fb67ab6745ac2afb7c54c1b2a45b793290c2d7f0b9d7372e57394e22ad7d6a", + "regex": "." + }, + { + "hash": "a44593b3a07c0dcbdd9055463bf878fc121918b4d475f6706823d6cb512e713d", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2e722f5d485ea0aea575fa9e7593e44b89037184bc93e2e479f01094babb51d2", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ea50f30e9ae6f09537adf5cd4d3b0eb8263b1bc18860b70c348ba1b197e0b0f7", + "regex": "(?i)^https?\\:\\/\\/fillewebcam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ecaf54f29d361e45d786a8026b8f01e881d73fdf56a287eb98b453e2e3484824", + "regex": "(?i)^https?\\:\\/\\/sexclipgroove\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1a7d73e3051277bd0fc4f302b95e4b62641615cda28c11b64922cd667f98cce1", + "regex": "(?i)^https?\\:\\/\\/videoinfernospace\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a7c020dd69f31ff89caea1454767774b904eafce34845ef7da8674e65c23f287", + "regex": "(?i)^https?\\:\\/\\/sexclipgroove\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2401cfd618922b798a3411cc93e4e2c31cfa3a06f2985544e684d85a976eafd8", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2ce2a673082e83e20837ea5f200e3610eb5fd028ab929dfabfef6259445d01a8", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e7cc2f4d63d7d604e65d80ea5c9ec68ca29c1a101fac6b827410e23617651017", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fe020be7c99befd380e88b68ccd2d55c7adb4aa530fee9bf565d6f3bbd921461", + "regex": "(?i)^https?\\:\\/\\/marketplace\\-item\\-details\\-1256454\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "63b41af21db0113270a0e9ffadf4c6a70dcdff73bcd4cc5e4fd9e06400591d38", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c01051bc486da90cbeb107d2d76bed20b5edf5eb972f5d045e13e864bc637313", + "regex": "(?i)^https?\\:\\/\\/43423423432\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b9cdd22bc390fd19bc56d5787e586d985c68b81a6c72cc93094330a75b1b9000", + "regex": "(?i)^https?\\:\\/\\/sb4d6\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fb58bd101ff9b4ec32151192a8236cec51c1e734ea683d57e2ebd45f41520dce", + "regex": "(?i)^https?\\:\\/\\/chatgratuitwebcam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9e99ccd521a3493719c950c65f940b419a3123ada31071faecc28ec9e11f41bd", + "regex": "." + }, + { + "hash": "d7178804dcf1369666fc96e0bca48cc44afb49e4d7dae482ea6d53eafb87d91f", + "regex": "(?i)^https?\\:\\/\\/43423423432\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "95e7e7cd0cbc66d36f1c6cfe7dd77ca8614025db50c4761562a247fab11d46d9", + "regex": "(?i)^https?\\:\\/\\/comotenermuchorobuxgratisroblox\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "deff9f2085909ffc49200cb01c0b5fbe0a42df204babeee3ec5cf28f37739a77", + "regex": "(?i)^https?\\:\\/\\/tamjeuaa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8880b17eed8e110ff33bdd45f98b9e66ce034ff22c63f78f68d89b6cd41d97ed", + "regex": "(?i)^https?\\:\\/\\/videoinfernospace\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "efad0fd791f689591e6e3d3fcd9da3dbc2ccee8a3d6b391a4e1ad62ebe84dcfd", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "af4e505149a9c1cc91a234703216366069d06a3bebaf78814635c91267330be8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e901e5ce52c8a81e2cc3285dad5b160320ded4c0f728bb15f08f30abf470e695", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "10b98fd4d70e190748ac177f467c3cc27188adf363aed5abab013c9c972bcbcb", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c6c28076e99f88a04b5a99fa9375a790e3a0a1b3327ccb3045c4f9aafe8cf2f0", + "regex": "(?i)^https?\\:\\/\\/marketplace\\-item\\-details\\-1256454\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2f90d9beb36cb9d068dacc196cf7a253b95641d1c60f5a6c47c5040969fccab5", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7fddc2fadc0993306bde0dd3fbf73d074d0faf0960aa2c6b58ac2f52179274d8", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1e6a5860d7bfce271c865214d69c71439494689186d58e002448e1fb86e075c3", + "regex": "." + }, + { + "hash": "7038aea73d38f6539d3059ac879c460a4e919a3eb874c4abf33ffa8ddb516647", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0923e439d0058331c75e62c0bfe773826134c1cceae6c5d1e0c6cfb8f29b794c", + "regex": "." + }, + { + "hash": "67b41e4135a107fe797a7565cf5dbd82882280124a28a483f5f58b7cf58b3f04", + "regex": "(?i)^https?\\:\\/\\/pub\\-a11af5d3fa1b410b8d66f639c33c7a8b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5272dba15dea12cd906fdf597b750aaced9aadb8b1f700592beb73a1f94b9f20", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "12b956a606dd6ff59cf7c5725f4a1906df0003609adbc055cf7ec1f5acb4c2cc", + "regex": "(?i)^https?\\:\\/\\/comotenermuchorobuxgratisroblox\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a80d4e6bf6398d99168c9c6c8950b78c1a098fedd3e2de8e6527973e6d9f312", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7b5d3f153266eedf56f5707810ac7f4106c13de77f6c5a50a4dc37bfc968d6a8", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "aa951ad03dcaee2e311b19be8d6c92529671cbb0a5cabd5e1a608f70a410135b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "604bb1751c1565286bd071e11e8bba83f45eb48eb935fbec33d4c9967cfd70ba", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0367d410df14d115e36ee70571e9fcf119eeb2d4275e3febfc6a550d121736cd", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "65602b735510d3d1e08566c2ffde8b582712886e4304d527d7effff79ae61aca", + "regex": "." + }, + { + "hash": "c0e7ef9036c48c1ade4b9db4bea30ad7558536831df89882d764579572bbe9d9", + "regex": "(?i)^https?\\:\\/\\/fillewebcam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e5582fe6c9509fd962ffb55e46d340606f39327d570729538031cf543907c432", + "regex": "." + }, + { + "hash": "6156eaa81c0ff7d0394228601619d947a41caa86879c228780fea92cdefeb232", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "aa26d228d4c17b6d63486b906dc2c2edee894e33b292abe179ea575372634f2b", + "regex": "." + }, + { + "hash": "8d756c62cf90f45a2044ec631fa8cbb6efcb74a35285386d369ca5cbdb951986", + "regex": "(?i)^https?\\:\\/\\/videoinfernospace\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "abdd9c31b2a9444fe9e038220c7ab9c5576d8c529e915312c6a4c26f70ab5753", + "regex": "(?i)^https?\\:\\/\\/tamjeuaa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e5d573bce6ca8d623a9811d3c01a00f6cb515003f078cabf5a54b3f8a99f3838", + "regex": "(?i)^https?\\:\\/\\/marketplace\\-item\\-details\\-1256454\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "70e8a900fee39b01a0faadfdd5a4468d74f113bc2d2eae247efa2219f692edd2", + "regex": "(?i)^https?\\:\\/\\/fillewebcam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f0435e8c4fab4d953e17600893976863c8d9a386068e2c73cf40571ee422b509", + "regex": "." + }, + { + "hash": "852496ba9e10d8b7f786c336fa2ce00b281a2cf7968d6cbc5885040ec6a8fc1d", + "regex": "(?i)^https?\\:\\/\\/gemnilogn\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ef751e0f3515934001aef295ee33b97a8162b9a2d9c85f418fd7a7835650925a", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2c89ee300c4eee7f930b498d4b061ad07e12d360c9be71a70526507660304eb7", + "regex": "(?i)^https?\\:\\/\\/tamjeuaa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8a76f374fc1139fd4073b5e32c892837db393996dc9c15a00e3cd737e6780f7a", + "regex": "(?i)^https?\\:\\/\\/xvideohotv1\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bbe4b9e0d75764e3d957c801617e6f57d336254faee7d2630c274d3ba87c085f", + "regex": "(?i)^https?\\:\\/\\/camhotgratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8a76e121e6bc98224f3d24ec916d5c04e3d728b9fb8229d7ea06ecbb4fdbd2d2", + "regex": "." + }, + { + "hash": "39d2e1c7a0333f87e8fe0cd7b254abb37ff3e6be4dec52a48f2e2df52087870a", + "regex": "(?i)^https?\\:\\/\\/sb4d6\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?api\\.yu3\\.io(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "fe023e03cfaea7a248d079bfb2a895ad12f9150f984b36ba8db669cf8e737338", + "regex": "(?i)^https?\\:\\/\\/xvideohotv1\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7b3efee1f54cc01abb46ce36e32becacdbfeae7e4c8c33f6ff7cb3ec8019d0d6", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "30ed51bc8f00f3e201b1925f352ecc87074041b9a9a0dd69b6dbc6aad5b6146e", + "regex": "(?i)^https?\\:\\/\\/spitfirevideoss\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5a947a0d6ccc30935a14a3c579d1620d6005898bbd8451387cc7123a51da433b", + "regex": "(?i)^https?\\:\\/\\/dasdas783223\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9c8658f23da0c624ae4d9059e21b61ce3b19e59efc81eca424fe83c6acfcef08", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "64bb3b65fa401e2e69419f03ce31999af4eced863856228583307fbde42447fb", + "regex": "(?i)^https?\\:\\/\\/spitfirevideoss\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "876cb20a3a51e23283aaa1908305ac25e4a9039c427910f026515efa53831aae", + "regex": "(?i)^https?\\:\\/\\/epicgameinn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "060870e9fbb4657438bee31c3c4a1237328e29c1cc5609e6359ab8e3fd1e4f85", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5776e3bbec89ea2bb861fb98d5e82a0103b94ff7758324713c45d29cedc9c3b3", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "26795d0f39cdf647c7a400db07db692afe654faa0ad2e5622e3526917ebc6236", + "regex": "(?i)^https?\\:\\/\\/hxhchcjcjcjjjrki4\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e797eb4dbb79bcc63eb1320d91d3d54e859613a3086f5843d6be96f5dcdb2646", + "regex": "." + }, + { + "hash": "4bcb1c1403cfa5db215fb749460ee24a5249e6e218d961ace356d52bc747b1c5", + "regex": "(?i)^https?\\:\\/\\/epicgameinn\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e5bed5e9953a05d1c7894967793aa047fc7c6b0d104929eda5d694b8d6261e38", + "regex": "(?i)^https?\\:\\/\\/camhotgratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7f50ba81e62dfca02c618d5a5c638f19be2af6318e3cdc5f4c23813b3e9b53de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "f6ca0fb7b12edd80187d27863a0806198fdba2a6adb8b4987b445bdbfedd5395", + "regex": "." + }, + { + "hash": "b7f48b9e04c65bb078bb50c68a475639ec47c23fbf8da091528607d36c24ad5e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "59ec8fdf4b7117b5a4a3ecde1354cbc7a2878e365ba3d54e24f747cdd93f6ab1", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "bd501ba01231fa1d8a1e92da4ca1f29d7abd635461e8c87f8031bf2cd80716f6", + "regex": "(?i)^https?\\:\\/\\/comotenermuchorobuxgratisroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "943124ec9b701d3d38de2b67c86d85ed32fada4066fa9af0ef8502bd609158a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register12332(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8bf17051171ff8fa3af53d16723221ee1cb0a2b2c4b62f74fae8b6b6a6e0cc77", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "728d2b1375de1941beb7bac7e1fa6c23db21e6e1a38755de2fadacc960d0b378", + "regex": "(?i)^https?\\:\\/\\/43423423432\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "74e2a2b03140fdd1c62b6f334ef774f42818ad0027f80ee2edc74b942b422ccb", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3ec5018c235535458939c7f4290cff828d0f6e1244aa37f7163445131f6d5ca1", + "regex": "(?i)^https?\\:\\/\\/chatgratuitwebcam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "db678f490c2b836ded785118eeb627bed19d6a700d38ea09f4037e8859b94514", + "regex": "(?i)^https?\\:\\/\\/pub\\-73829e0ed82c4058b09d330350c275b1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0c32c2309b034978d5c43e529a0ac62d78d44fbfcb6c764d06a19a2989ff26a4", + "regex": "(?i)^https?\\:\\/\\/dasdas783223\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "368f6ef1aa5d04a353f85d0f72cb6a32e4952c14a2dc88d1aaf1da4f4210a794", + "regex": "." + }, + { + "hash": "29ac8b066645bec6a36fbf775f95040e06e6f090387b30be6fb93c7428f2a130", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-rechargement\\-telephone\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "08d492c5d5a9844ce5f2f3978bbd82e582a1831a6013eda01fccef6e7f27a29c", + "regex": "(?i)^https?\\:\\/\\/tamjeuaa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f9b0ae5517d0666f3e1b9200fcdcf80333ac2ed27726191afe04af2e66d3d0ff", + "regex": "(?i)^https?\\:\\/\\/tamjeuaa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3e62c0fb2de70e5d213c591cbdc17c6c23cc2046cb93be1e893454f59eac72bf", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xx\\-telecharger\\-mobile\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "31f6f67d75587c97715f31cc11abe7e5e984f51c4e64663af39bceff45f51cc5", + "regex": "(?i)^https?\\:\\/\\/dasdas783223\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7d20dc474662eb0737a278daec81f29bb075fe46eacb63cd2e1cd370cd555a6d", + "regex": "(?i)^https?\\:\\/\\/xvideohotv1\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ab9adaea153375f4ffec4f67987f36398296c4c269f54b34ff9c204363b00b11", + "regex": "(?i)^https?\\:\\/\\/sexclipgroove\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6fc9940c3d67d99bfb54ac4aecd85c593a3557a9840440ed3bf1ed978a3fdb2a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5ce8f3436181ac042eab518e42d09564d11daece7fb9a9ec0e2dacf6bdd4b176", + "regex": "(?i)^https?\\:\\/\\/whatsappedisi2020\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "74fcb2497a8c235beb97f7b9158b7f65d3ebe73792213a6ea53d2153d5f42c90", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "86c0b4dce2c7009aac9fb16fe43e67ebb6d5644969113cf9c578f23ac84ae2ed", + "regex": "(?i)^https?\\:\\/\\/camhotgratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e0000b2a5466e04f12fa0cc5e1a055fcb3b2f1fc2ed3e179c4e62569d33f5388", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2312b306b98340007a465bd4d2e66feeba344b4c60bd4b8c138d4ae0df06093b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "11ee6f712ac70623242bc388bcbdc1c8f8c0d7a158f33678a2f2561c5d1bbdbb", + "regex": "(?i)^https?\\:\\/\\/amazon\\.boapbzfc\\.com\\%E2\\%88\\%95bzyfvneems\\%E2\\%88\\%95ejhvjso\\%E2\\%88\\%95abmyulq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=fkykhqbw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "67c4f1652158cf2c490fccd6b12007fca8cfa862e93922316504c94fe456a13a", + "regex": "(?i)^https?\\:\\/\\/43423423432\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "28f55877808d7ccb0547856a41eaf6b0fe56f66cd1a591ce42932ccef424971f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-rechargement\\-telephone\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "186dbce8a37cdec8dc5cab70f1fb07bd7ab1d401cdd1b41812f309adb4beae54", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c3affd60dc5b0eb023834cb983cb4a0d57a528004f6af309200a7aa0dcf75070", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bd3e4cf525ed7e7bea0e556ffe270e4e55df9a5efaa25c6408a30a7cfc1df06b", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "23b30ddbceacdab3a634ccca22513c0ea6b9f48d1c42733556ca27eb68c2a6e0", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0367afbc9c6b71d51753409ae94aec7e663c04b63f0b5805b40b91f9ceaa5e49", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5adcf54801ca69b73cbbdfdb13834f24ee327d5674b8c870314e88d6b13edf0a", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "54611c899dae0b74e48c4935ce0110cb54248b51ae7dd1dbf611a87a4b68e705", + "regex": "." + }, + { + "hash": "eb9223ee5adc1753540a6490e56d6d1cc105a1854a26654ea3d09ef7aac13fc6", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e155507cb0f7adaf4076d30d41a13326e96bdb2bd92e7eef9e282f5dde70ed53", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "1620dc0e7145d9483212ddf14bb363f394a9b481b915e83e969ba8cbe04abcb9", + "regex": "." + }, + { + "hash": "df62237ce9d48de44f662720d974db9ab397c75053e5752e265527b8d53478d1", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a30a73577132d66cc27dff50b434fdd4a74304f31488ccb90e17644ef4c7abd0", + "regex": "." + }, + { + "hash": "6bf5c23ba63331a7d2bd2f9129d903831aebe3c9fdce5edcefb1a61de79444cf", + "regex": "(?i)^https?\\:\\/\\/zzzvideohot\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "baa091adaf8bb88983df56cfe2299a0745057584c1af8a5473c1a6c782a0be4a", + "regex": "(?i)^https?\\:\\/\\/sexclipgroove\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4e2ca42fc73306fbc18af7522f0ca30b6dd9803a4beb4e89057baa4ab92be3f8", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2f677fdab3fad2ba6b5b50f4db81501ad92adfdb7bf37214645018d14d54f279", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "20de10bb5dbf0050fae631927ce142303b7f530eeacbe41de11129e7498235b8", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "37f2b9a1ef86a666e3514f1240b75126ac9273c91c664a93cc7b265675d99c51", + "regex": "(?i)^https?\\:\\/\\/amazon\\.thxiv\\.com\\%E2\\%88\\%95lwuzumt\\%E2\\%88\\%95ntzlcrpg\\%E2\\%88\\%95aybkbht\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=K\\.ElV8Q4zhFq7RoW42YT46bW1WCnY\\.5NOhgDD\\.jjk1M\\-1731427449\\-0\\.0\\.1\\.1\\-\\%2Fcaonima\\%3Dvhiix\\.co\\.jp\\%2F\\%253E$" + }, + { + "hash": "591d85c60c5a35eb905f1aa9ae5db0e12c7a392944b03a8bc700666b405261b0", + "regex": "(?i)^https?\\:\\/\\/43423423432\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6fc541cf44dde8bad3d9fa34291dbc6facec462a49d708191ee3888ec09085c6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3bd0f8970a4ed538b25233b79b66b8d5c79c2affc2a942cc0dd79d80911c936c", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5dc38a46ad26cb270e4d100a654544b94e494961a01ffb51e0384738d4208c9b", + "regex": "(?i)^https?\\:\\/\\/whatsappedisi2020\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "79dbf7be86b908b79b562bc916bdff06554a48b4ffd26b3f5d07a24cb28a6425", + "regex": "(?i)^https?\\:\\/\\/dasdas783223\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "a4bf1f38cadf81e9201420ab8bd1c8acc5d3edb64952d35d34a082d08a5cac93", + "regex": "(?i)^https?\\:\\/\\/hotcliptrends\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "63d67d2aa705acb3ef1f7f2d3748afaf1da6f117b92b829ebb6275d65e6a3b4d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2f4105dde785e2371734d3714d93527bc69add22609597b06ecde48389ff02cc", + "regex": "(?i)^https?\\:\\/\\/whatsappedisi2020\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b5329019db98e681402a341308219808fcfce77093c14802791d5d0984ab7812", + "regex": "(?i)^https?\\:\\/\\/comotenermuchorobuxgratisroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1a7e68aa448e8e7cf91f6df2e86b81288366f6be21069b2740cf73ffe12942f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+insurance[\\/\\\\]+secure5" + }, + { + "hash": "23f2b0ac721d345a8009396a2823e296f4eb8eef51e1d5c3dc0be7da2a877316", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "868eebcb5b95a90200ff38067ae20f82dbefd9dbaa01fe9ce7ec22df907cbbe4", + "regex": "(?i)^https?\\:\\/\\/videoincinerator\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "13aa55a32bf9e88c03c94ef61b4de3e12fa46f87a67d7879bde6d1d661178887", + "regex": "." + }, + { + "hash": "417fe5817c7e5e79c2361547d8ce10e8f70cf3096d3c675cd83ab21f24d2545d", + "regex": "(?i)^https?\\:\\/\\/videoinfernospace\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c43dbe0e9594eb6fe5b72f66f19638005d4b4b7824dcb6fe383d1588c2da4724", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "37bee0c80b93a67062fec17337fac837273bb134a6e571e44a4dfa35cee70d68", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b944123f04c19c8d4a7b6502adce735f52b451fc9790b7e2472a21f976b7c2e2", + "regex": "(?i)^https?\\:\\/\\/epicgameinn\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5a7c91d4db06428ef7038a11336b8a6096558a8e5dc29fed0b0c774528e4a435", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4f2a93daf75bbe0404df6b53a8d43abe3a62b7e131a1634e1e3f49d69c644467", + "regex": "." + }, + { + "hash": "1b0097c5bbcbf4ed87c844775c5148e65f9d2af3b5e55646ec8ee5f10fc47f81", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8f828c1464d1866d2d8404b02d0bcfbf76ac0bafdcab610d5a93d67abddfab14", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d8fe683e2f087373d4a97e9412b9a437cac9f513d54733c96dd9cf58b58abd1b", + "regex": "(?i)^https?\\:\\/\\/xvideohotv1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "17cfd4cf32811653e6bb5f888985878576a1feb127f3e6e49ae1ebb9a9eac58c", + "regex": "(?i)^https?\\:\\/\\/camhotgratuit\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "67e19ab7234ba3dfeab6b27f1edc0f1aa3c970bf0a2b0c05f546dfced1c9e61b", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a4fa6fe3b0c78cb69ff0c02e7b128c8df799c21fc8e0808af032dd2490c3d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "06eeca8126205fa2a1f5acc7d1cba6948560cf4389cf4738e5ad2ca6328e3086", + "regex": "(?i)^https?\\:\\/\\/sexclipgroove\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a1d50283833ab301cdfc1852a98ae00ed900bd1a1a8747fc23312aa2da960022", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-gratuite\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "07393350aea2f280d3f0e68ceffb79b8ee1ae23c607f9d7d10030d2eb3f1452f", + "regex": "." + }, + { + "hash": "08c6d7bba364ada87df47b29d52e301c3bc725ff5a78d448e5d25e76fa7ddb93", + "regex": "(?i)^https?\\:\\/\\/spitfirevideoss\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "71ed873bc38c57b41fceacb50fd1ecd86cf20dbee9e0f423ff18067ab2795761", + "regex": "." + }, + { + "hash": "d418a5a854c7fdbc92efba15377c9e1899978a90e587460ce7b0a466b52fb8aa", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4e5290467d9684604a7fadabbdac1b19f02a3bfc0855030c3a937d0bd5da71f9", + "regex": "." + }, + { + "hash": "201d58f97163ee612c648b0d0dee5384f21333107aa9fd8069cf6715e8326c14", + "regex": "." + }, + { + "hash": "74a8819d148891cc2ebadff215df3764d8cfc6d3b2eb729f9d2e122f8501a525", + "regex": "(?i)^https?\\:\\/\\/epicgameinn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4a2b650f8351acb3958ef61eb227cdd2a80f5c3be4d69034cd4c04a23f58f542", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ddc5d5b6cec4437d9b6d27f72d2933b81c60112094656dbe2d154f90abfdfe53", + "regex": "(?i)^https?\\:\\/\\/epicgameinn\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a8991ac5a406d576b1dd21357819b71e34fb9a09275a5f01b1c7e51e8b303907", + "regex": "." + }, + { + "hash": "bbdb6ef28e84b6c470a24bc3ae066cd0e44ccc307304bce9f0c84a95027dc9b3", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "30a2b360e9c70e2ba2139da86e36de7f6007a85928f80cf1f65575d8cc1c6dcb", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-telephone\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "80d822b62441822f2478f1cf7177a77043b1e07fae5b491cbaeaa8f4db5835d7", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xx\\-telecharger\\-mobile\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7ed9bd7e1b6940214cd76028dbbe288893f6e527bea801d53c897a402f8ce88c", + "regex": "(?i)^https?\\:\\/\\/comotenermuchorobuxgratisroblox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6944509d9cb85555957206a1dd6b946068708f0ddf414972f006f1f63d0535d2", + "regex": "." + }, + { + "hash": "de5f7d8435c52cc212018ec75ee8c88cbd601e973fb46a289b71847f80a8b19e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "246d501cd3623e034c6a22484cde991702ff855294bdc1ae1e846ad267faf824", + "regex": "(?i)^https?\\:\\/\\/spitfirevideoss\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b024d2778e023bcbdebfcc3b14b7da7001bc7b478a78d12eb39728d59956c4f9", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "68624009c1cd2ae613d196672e5aa2bfa83b1580c889785e53c18becb8e87bf9", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c4e76e14df0f951b6f72ce4c98a4f0f09ec47a7274944fa1f6e84900eb24f196", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2bf586b3c45a2beac5a0d4152d353c201994330103f4b91d0654990d5f8a0778", + "regex": "(?i)^https?\\:\\/\\/spitfirevideoss\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "94ea7cb439b6b8e7054315c642a672b31992c8b7304f29288d7c7d7b5e5ede03", + "regex": "(?i)^https?\\:\\/\\/xvideohotv1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d515af5ad5dc819e7644987827f5b3bbf27547536cee3b044eb6c8f8ecc8641a", + "regex": "(?i)^https?\\:\\/\\/whatsappedisi2020\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f90e7a621eb2c05c5457437affa2f2ff0bb51325fd82d00c5900437bb2f10e29", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e167ca4b7aa28fd6f371013cc3d3f6c45b11d5ff9cb43f8ab6c583cabe7678bb", + "regex": "(?i)^https?\\:\\/\\/tamjeuaa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d16cea36817b92d0ae7886728cfcd30c3dddb08e80aad2f07e2d81f4c00d0801", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6b944c709d94f426e4d95c37c7d5066ef497e5ad855e832beb406bd5c84d6077", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xx\\-telecharger\\-mobile\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0d8371a0ffcb317d1592d264a89686a20e156614826d68f0597807fdfff3a009", + "regex": "(?i)^https?\\:\\/\\/videoincinerator\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e0917dcfe01323ea76fb693cf9e386308895c0674225388cd45f90d524187e63", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "29acaff875a832a161dc1950c08f90fca8b4c00ce087131f4903a8f66c49a4b4", + "regex": "(?i)^https?\\:\\/\\/epicgameinn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "151a35e767e3ff4ca7672380c9e3132fb822247eeb497d3122ec2b5ce68fa37f", + "regex": "." + }, + { + "hash": "02fec6e2b3949c9a74c162662cf8e841f398d8c4326055b2c692c477cdac46e2", + "regex": "(?i)^https?\\:\\/\\/dasdas783223\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c8e8ad353d43171e88853c24ebb1866321e3ec79e82bb049602074fcda0a1847", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-telephone\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx8hsz(?:\\?|$)" + }, + { + "hash": "dd7eebb29d42f5b174751dc697fe6f2a362a46617a0902dfa01bd96e519bea52", + "regex": "." + }, + { + "hash": "8bc5c024a95a878ba068283bc55a59fd7702068b51670d78c4e730de4ab7ada0", + "regex": "(?i)^https?\\:\\/\\/sexclipgroove\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "85a1f97e52f3915315735a879305c2c613e38d3fe5452870c0557ff266b66c29", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "066f1bf5e4fbf3a2146daba76a84a41bd8ff5b0290011ff7b4f37958216d79f8", + "regex": "(?i)^https?\\:\\/\\/sb4d6\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "871e3ab97ab8c253b0b4e0323a253a261aff7bdfd1e758ed0e48d8b962320171", + "regex": "." + }, + { + "hash": "1d70fb1fa2de0ffc98ccba20c39fca4467185dfd5fbc78f75f280f940e830b21", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e56fe62b51125382769dcc1ddec4479cf2a877b4d422fbdb9cd9ad7baea5cf1a", + "regex": "." + }, + { + "hash": "fdd551b7f5b02dbe2dc37efceae4f9d1cbf556694d2687c5fb89d05b5c63adec", + "regex": "." + }, + { + "hash": "f0a6109ec94272a89601e448b5f33501a6ad37f88be03686e643aa30d9f5bcca", + "regex": "(?i)^https?\\:\\/\\/sexclipgroove\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "943124ec9b701d3d38de2b67c86d85ed32fada4066fa9af0ef8502bd609158a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register12332(?:\\?|$)" + }, + { + "hash": "329d03866d6c1c639d5b95368ea8ffcf40819e5bc81947331dc930af419732e8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "24e585c682fea3974cb83eb1750acf0a921d8804a640652ed9aad91728c858ae", + "regex": "." + }, + { + "hash": "e64cca6ec0cd247537ced24ed5bc920a1c60dcd6a8bb729291be05db533538e8", + "regex": "(?i)^https?\\:\\/\\/videofireworkshub\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "98d5ee361ad14d839032c7eabf572bb3748e0abb38fd0d1a458d1f5d6b7ba292", + "regex": "(?i)^https?\\:\\/\\/zzzzvideohot\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a01e5d3164de792170797fd7f0f9a6079ab328c217e36747d6fa76832eadc50f", + "regex": "." + }, + { + "hash": "653b1c31ffa106ea5bfac037423b29b84d27ccb856656c95500ea1443d1cf0a9", + "regex": "." + }, + { + "hash": "2312b306b98340007a465bd4d2e66feeba344b4c60bd4b8c138d4ae0df06093b", + "regex": "(?i)^https?\\:\\/\\/rdmld\\.shop(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)" + }, + { + "hash": "5a31e1602d1735365153f3734de5be7f07724da5023567f2f32c776c6d985a7b", + "regex": "(?i)^https?\\:\\/\\/epicgameinn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f369c51a5fa405bc5a5c9d73842dfa9736316836f7a2d278ca81b4703a569d4a", + "regex": "(?i)^https?\\:\\/\\/zzzzvideohot\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "eab17a809bdd5f3da4a264b1d8a5c0886cb26384261b693b61942a3aaac94e26", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "869b19fcd65f592306315ec62bc38dc00f1f8df88d3da782c399e6addd1ecc44", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "dd3384023feeb6cbfc6e4f70e23ced16d6e2867de6421f98089eb0665e6ecf6e", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5e8be5427a51dc0d58cc4e1c12aa9861965a6977aa0b7db5628f2c0b887e9b08", + "regex": "(?i)^https?\\:\\/\\/spitfirevideoss\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7823cc3d202e8e2cd1a93952c6fb42855d3371b06e606633de77cc62981811be", + "regex": "." + }, + { + "hash": "943124ec9b701d3d38de2b67c86d85ed32fada4066fa9af0ef8502bd609158a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e121b3467b3d173fc7229cf1b0c77a6f54dcf20688a3f22d4af3327210c19272", + "regex": "(?i)^https?\\:\\/\\/pub\\-6421abb6dcc944d6bd2e475eeeefdc4e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4240ea363186ea17226fdca6d39ab9b3a9803b4ce85b12c05a00c1cd72737f56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8a247f82982f3efdbcedcdfca4f86fe1043d4f47044dc332da9755781c79995a", + "regex": "(?i)^https?\\:\\/\\/tamjeuaa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e4cbf06fe89ce153bda306778af3ab3c215d68ca394a532cdc60f4e159e5a613", + "regex": "(?i)^https?\\:\\/\\/comotenermuchorobuxgratisroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "7c211c8a1196ac4a2712aa9aea00b5171decb217bd98c68048a73aa7349ea1a6", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a73325c6ca035947e745443bd5213ef3634e1ffae3f4e75fa2734c05bd38cbf9", + "regex": "(?i)^https?\\:\\/\\/tamjeuaa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7a02b4da093d47fb952684bad9f31f4440546126b2d6c0b6b2d22ae3cc0339e4", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-telephone\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "81bc63f0cf1224c98e162155b9793fecf4b2192be435a8aad816cbdbfd601684", + "regex": "(?i)^https?\\:\\/\\/whatsappedisi2020\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bbaff85b8d27af0036da452760a1f5220cf6f1e7ad03821921d0b0b9296dd135", + "regex": "(?i)^https?\\:\\/\\/zzzzvideohot\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c26b68d3869b320ff9f70d316d8ff3ffa5951dca0527f2cde61e79b54aa33a41", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-rechargement\\-telephone\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4ba458232b27f7d1e79236242dbc66e550da98e9a1ae84f604ce3538d202d7bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dgt\\-multa" + }, + { + "hash": "5f082a5dc0e0c070772852af55f5fcb8661ddadab41aaf2b0da45fe93784d38e", + "regex": "(?i)^https?\\:\\/\\/eligibility\\-puffer\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "944c1a6908053ceba43f67956b8b954e1cc6673e27555681117a0ffac5cfa60d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-rechargement\\-telephone\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bb634197eec4b5f06f5721374866b03c2d6b67068409e3b78a7aa4efe749ef2f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideosss\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c8fbad2971eb5d4efcbf3078ec710aeeab85f1af966e19ffcdfca34319087932", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-telephone\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "12435b6d17580dfe4e013b698ae52360ac12588b9b065f39be667b1e46e1a9bd", + "regex": "(?i)^https?\\:\\/\\/amazon\\.crdgod\\.com\\%E2\\%88\\%95heymyp\\%E2\\%88\\%95wqhuunahci\\%E2\\%88\\%95oeumtp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDvna\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96cfc3c5afbada600d0c8a740f40a4696b0cdaf5f27bc5cdf040e9a152cd43a9", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e0df8f39068aa95ec461b7663df8855735bd8b0d61b654ea15dd441b464a5d44", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0f5ee748148647ea7c3474364ac0bb044044140f2896e176b41ccb593a172a0a", + "regex": "(?i)^https?\\:\\/\\/spitfirevideoss\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "c6cf91c111a052d68d280146af7d2b4d5ae4bc35666800b71afabe12463f8fc3", + "regex": "(?i)^https?\\:\\/\\/videoincinerator\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "025555cc01e669f1b2ee186bb16393cc5904cd87bb3598ea3a4e51840c6f398f", + "regex": "." + }, + { + "hash": "fbb076488c8daaa1d872cee6144e224f551f194fdb0fcdad7224d41476c72730", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "17b60f2ece1810ca488f7c9ec955dc2e4b8dc14147efeb3b4053eab2403e2fde", + "regex": "(?i)^https?\\:\\/\\/xvideohotv1\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8f43edbfcf3117ac836e2fd80537cbd70c21233fd055d027a31a19e65fa862ac", + "regex": "." + }, + { + "hash": "8e35e74bc4d55e1d89d594520e66f75039ca16a2063b6c572a23e4a0e151b9e6", + "regex": "(?i)^https?\\:\\/\\/sign\\-in\\-to\\-juno\\-103789\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ba672fd5fbcded3c237a5583c98a29c64bee382374d90e47eae371dc81958767", + "regex": "(?i)^https?\\:\\/\\/videoinfernospace\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "94b150690359b4e91de910e1aa2018941335a9155a7a0040c9949654358ce2fa", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1a963e494cf70c7f13d3960ea91cc67502e8231f978a5425d7e9bfde03a3c04e", + "regex": "(?i)^https?\\:\\/\\/zzzzvideohot\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d0c5988af4ebac42119180b4999980eccf7ffb30e9a96d98c85c87902a7b26aa", + "regex": "." + }, + { + "hash": "11bbd435f005d5c9b4d48890219328bdd4089b837778b2f353a7015a20e60696", + "regex": "(?i)^https?\\:\\/\\/videoincinerator\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9869fe57ee23b3fc9c9f1edd7e3ffa55f70056532cf096f419b11fc19a5e783c", + "regex": "." + }, + { + "hash": "6bfe0fa5b2f52470d9c7c8c8838931f7118b4149b1039a4a1b6ff68b9d1f260f", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8acaf97f14ec6f7c39a3ef871009e4fbe66427445a39e7155ee6391845ea6775", + "regex": "(?i)^https?\\:\\/\\/videoincinerator\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "aa0ec5077c75a1f8af2c6765f9e05553374af3c588017f92a3d4153a1555aade", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cloud" + }, + { + "hash": "09a23a56e4a31011911df19cc6c5a669eb4d0ae3f06b6014033e05184c8eedd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+sgcaptcha[\\/\\\\]*\\?r\\=\\%2Fdgt\\-multa\\%2Fpagos\\%2Falert\\.php\\&y\\=ipr\\:146\\.70\\.74\\.113\\:1731406951\\.831$" + }, + { + "hash": "afa3945eb6af0de489ca3313847844ccd8ae5de5ccfcf5f33ec896d1e7c8ccbd", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1e43b33dc10fa29bac0232947ecaa558847af17beb3a09f624757f6e208d2c4c", + "regex": "(?i)^https?\\:\\/\\/fillewebcam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4573add843add4297e7fa98c9d4827f0d7a4e81bfaaa9d9efcf2fb63df0faff3", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cc9a3ba73700698aa48251a098ac8e9ff32f41a28dc2464e26f3fe5d8adbbf81", + "regex": "." + }, + { + "hash": "8eff54a6f10a0accc2081b40a688d0a7676f0cbdd4bd21c7ebee86da0c8948d0", + "regex": "(?i)^https?\\:\\/\\/whatsappedisi2020\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b6d58f69183c143729b9767f2e97ede769575f308573ff0590d45516333ad732", + "regex": "(?i)^https?\\:\\/\\/zzzvideohot\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f832d2f34d19dbdf0cf918bf7b5ed76484356e93bfbd35f2fdc7039a2fd59676", + "regex": "." + }, + { + "hash": "c4fcea45ba629033fcf03b1ed4e79582b2b13a8ad4ef7da359a6e32b8c0e70d2", + "regex": "(?i)^https?\\:\\/\\/chatgratuitwebcam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "53ea5d79cb797d5f2e79409411a2ae620cf757718f01299ecd058e1909b355a5", + "regex": "." + }, + { + "hash": "5ef2c8207c1d717eb1984fbef128d1076b2c29bedbbe46bf599cc01c7ed6d1a0", + "regex": "(?i)^https?\\:\\/\\/kangaroo\\-0545152\\-developerhex658047\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "729ed03640deaf12f32a13233898929d687554f6722dcbb50cc47bad1ee6700e", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8d9753726922bb5b98150c598df29d50bfd1790716e48a0199d460a6ba9f42d5", + "regex": "(?i)^https?\\:\\/\\/hotcliptrends\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "13d33f56ed09a96dbf54530fe98cffda47c789b58cd4dfe65daf578b2ce03c99", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4da02ee87d4766c98540de25671015c5c127508c86fe37238c1e6c4e3b9fc3e2", + "regex": "(?i)^https?\\:\\/\\/fillewebcam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cb2fe66900f60de12911c4fa4433974042ecfd7b30cb77ba3e82d4471631540c", + "regex": "(?i)^https?\\:\\/\\/daskdajsd8323\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3baaf1ee4c4035cedc7430237c8371831875d33732128b4edae56cea222a2325", + "regex": "(?i)^https?\\:\\/\\/sb4d6\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4beb6a281991523aa4d137f94c2d61c082e64be3b2bebfadf677b6e7f0e49580", + "regex": "(?i)^https?\\:\\/\\/sexclipgroove\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5a80a8d02f2eaa1cc5c552aa473ca11cb7c813e56a4a6d02b36d141e6459752e", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c3a4618f0515c3cf3d769bd75504c36179b1c83e5678b274f9acbfac0717744c", + "regex": "(?i)^https?\\:\\/\\/videofireworkshub\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3360fd5812648eb2af483dccc71fecf74a92319ca7d7f933499bcbe0e7d31d84", + "regex": "(?i)^https?\\:\\/\\/hotshotvideosss\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "37f2b9a1ef86a666e3514f1240b75126ac9273c91c664a93cc7b265675d99c51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vhiix\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "0e7ea3d1d3f42ecab114eda1529774abf55201996e2c2a4c7e006e7e7a5c8519", + "regex": "(?i)^https?\\:\\/\\/dasdas783223\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7f50ba81e62dfca02c618d5a5c638f19be2af6318e3cdc5f4c23813b3e9b53de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "c9b4d7ea94276ab19391eace5d96c05e152b43366305664ba0832e295e4c02cf", + "regex": "(?i)^https?\\:\\/\\/zzzvideohot\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a01e028b7fe4891a202c5721180b98cc565ccfbd56ee24ab8dff6cced42e158d", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "67c4242fee465f0464508cc337b03931f45f72b2afa8af87fa50105068c68039", + "regex": "(?i)^https?\\:\\/\\/votresms\\-vocal\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7f433837e8cace347517026713ede6c9b3f78132471b2b32e45b3e66ec646957", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5b28635d57e0e02b9ccc2e10e0771fb2b59772431f724601baac7c8307047173", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "853cc2493a9fa5a7a6c3ed2ac2b88988a5e35a1c34a98d3962bd0791acb473a5", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1fcd2fecbdeac427ab4fa4e6cb946c0359fc4337d1c457e6a1b3b248d771d8e4", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "327c73739286e191186b2af36549a51617baef16f642a2f4746dfcc02ed77134", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c1624f62928e63c6b92b471ba87f2811b9450d3fef50e2432362a6a1a684a0e9", + "regex": "." + }, + { + "hash": "cb68027658eed67698899973e4d4b5a2139606295fa54e182184cc229c9fb03a", + "regex": "." + }, + { + "hash": "1001fa9c9ec4fb63e130d38e1c4bf90fa1258e1139ba27e7bffcc64e2f5f9f3e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-telephone\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "64c92728ac3bc4b2990a9eecaaecdc7121071570ca282fb2401d40fe5d2430d8", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c88c498803780a147ecd3d3029a94382898f2f1871887bfd2ccbf0a735d091ae", + "regex": "(?i)^https?\\:\\/\\/marketplace\\-item\\-details\\-1256454\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f929b22828366470e796b06ae6c32c32e9160c85a5b8e48f2ebb93fdb6ef5348", + "regex": "(?i)^https?\\:\\/\\/hotshotvideosss\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c8a49cfa864034806ac2ecc9a5579a328e33b38131732816b5804dadc57b0221", + "regex": "." + }, + { + "hash": "086ae28389e25282bfa689a8021b00f226abe835c21566731c6ffb280c2153fd", + "regex": "." + }, + { + "hash": "6d3f078b780f286f58d77872c8b12a43834204dabaea7eb06cb7e43e2822a5da", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-telephone\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "72bf43a62b5dbc1db932322346dfaf247966399c54c791a34fb3401b3f942d88", + "regex": "." + }, + { + "hash": "6132d7c50c4d3a45a46810e29cbb245e4e31ea5c4f834ce060d81a10566c725b", + "regex": "(?i)^https?\\:\\/\\/chatgratuitwebcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e09153221690eaaf8980463cca47508823b523c17d474b1471ece04841f49629", + "regex": "(?i)^https?\\:\\/\\/tamjeuaa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f6aff6aa61a3afdf234a8b2113cffe4340cbc3bf46896031ff8fd912eea538b9", + "regex": "(?i)^https?\\:\\/\\/dasdas783223\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cd74b482c1c1b9f64081f344fc2b51bd9ddc364df3f7632500abf549528d8b26", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2defa1f760200a2385314564be5ffdbb8577c76178130821f5c7811ed3ac5028", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-telephone\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "79143355677fd5adde0db5a426cd1118ef958b3b0ed17cd9bcca8e19afc370c5", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "826838b96ee102e8daa4c611ca99d094c3838d504c6504d50740e40ff3cf7963", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1efe772b42f80578c5bcb3e8c9a41f1e6a58d2960d41ce542fa393de5325ed59", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "94014904449d3ed5eb9a6595e2d2ecc460092609eb6c4bab08a0428d0157143e", + "regex": "(?i)^https?\\:\\/\\/zzzvideohot\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "93521f40c77efd016da6a6b9a275bb05f4738378891bdb5a3976d4233744bcd4", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b9740ddc4eaf9da7a0a929b3def965bc12174e721c28a726291346f604455109", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1804409fd5003589c832f2caa994478de6a396969bf07537a868389359bb06a5", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a9d2ce93f6f1026457c77c840847dee82bc61ebc7b32189c2a591f5745d497cb", + "regex": "(?i)^https?\\:\\/\\/whatsappedisi2020\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7823b46cac77883a3e498d2075e0030d68364edbfb67ee865702868598c7d11c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a4ac399f4c2601dcbc3a368be32c574fa913e37578a52c89badd7ca291c261e2", + "regex": "." + }, + { + "hash": "d5161d327cd88f16319b081dc1f79a63fc3aedfec9d2d4e7e2cb8fadb6d25287", + "regex": "." + }, + { + "hash": "e685fd79d91b05b5df53bf6f261b9d9a799754b802d696e98c7652d4becbaae2", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "19e0fd1556834d303650d08b1a050d06073ab5524f113095d6f398d580b6fb2e", + "regex": "(?i)^https?\\:\\/\\/netzero\\-webmail\\-200fa1\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "856edbef1b22183355b142a51b69919e20b1661fb491633145e5d3db8b4f3ffa", + "regex": "." + }, + { + "hash": "e362b29abe396014ea7cf50993838740af23efceca1e276491cca0254b2858b0", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0e4bc03cd00fee9e83dcd1bccbbab823114d2fc50bad6561605ee80614c7797d", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "47cee4c86920c8ec092d0db1d2586db4f5898ac0a0c0df59b39d6f3d3f3a9bdf", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b367a55b87e6f5510a32276acd3a393e284ac7d9febbc086baa51fc244b48b32", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-gratuite\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0f3ccf76b0afbadcc4ba9b4418ae88fd55609c6a15e881291c5d520fc426cf02", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-gratuite\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0cfda5d143e9d8cfa54a018364efc9b68180043387114f103051c746abc08a89", + "regex": "(?i)^https?\\:\\/\\/videofireworkshub\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f5bb7ab328d5607b64e7d08a0a45d77bc28643d08a6127e3d1ac21b06c4943ea", + "regex": "." + }, + { + "hash": "dfc777397b9b2990a5e65bee0c9503bd259091122d72cd45e0dcbd4912938370", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e3915b6872f5ac7d597f2a1ec5ef4a314a61c61d82e5d132752da39b38377216", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b3c625a6b6279f17850dd3671868dc44b0c12e55a5c87e75a1b63459238010e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+swyf(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ba22982c77a81e60116e979d0c44b64b429f7a36bce0a72c9381bacc2d221fb", + "regex": "(?i)^https?\\:\\/\\/dasdas3123dsadsa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3e9845f9ea80b265d85b0c679bc02e00bb31341d087e754ec62770d44c6f95dd", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sevpju(?:\\?|$)" + }, + { + "hash": "a2d9b6bcc5e9a5f5be8cc8623da88e2bee2bc52e8e3304845c795b649456c038", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e628c9040ec6c38c22169ca2278d532e1344c182da514e5ec80b0b29b14b8a4f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "47170784275756587ed8f21c54dbc75c15a048481df4a778f6cb25941ec8afba", + "regex": "(?i)^https?\\:\\/\\/hotshotvideosss\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "26e3079082f45642a416a3b4e1ecbf10da4686b930954e306296d2979d19a9b6", + "regex": "(?i)^https?\\:\\/\\/zzzzvideohot\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "54e7095596be9e8121a02ab14c3f7572e4c6a30a3df26da795e9b5426fce9102", + "regex": "(?i)^https?\\:\\/\\/xvideohotv1\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9fa37973a5d2535fb6cb1659fb1ca03b6636dc5202acec665b7053cefb8e6bbc", + "regex": "." + }, + { + "hash": "87e104cf9dc7e76d4f545d3ab966a1809fa2341fbf87fa896214fc3945fa2f0d", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d5ef4bbcc4326f847156c2713e18a331b3e45bd22e76c56c48c622f9b0908e96", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "df886460654476525ff3e88cc96a83a5b2d516fa071008b002a0afa463e7d73c", + "regex": "." + }, + { + "hash": "dcc698f4c7676970df79d6ddd1cba2b88d55eb58917109ca92b67f6366988127", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "09a23a56e4a31011911df19cc6c5a669eb4d0ae3f06b6014033e05184c8eedd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+sgcaptcha[\\/\\\\]*\\?r\\=\\%2Fdgt\\-multa\\%2Fpagos\\%2Falert\\.php\\&sol\\=MjA6MTczMTQzMDk2MDozYjY0Y2E2OTphODMzMzBhNzNmOTJiM2I1MDAzNzViZTczOTFiNmMzNzYzNDYwMmIwNDg4Y2JiNmZjZDkzNTg5ZWNkMDBjNDNiOtPJKQ\\%3D\\%3D\\&s\\=1041\\:6869$" + }, + { + "hash": "1276f10196305a0e70beebfd43cd42abcf3d972ccfdae881a6e6391f310b129e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "516ba7d245b77b8f9600eba065422331f82fd01be77dda4f6d62cb65f088aea7", + "regex": "(?i)^https?\\:\\/\\/xvideohotv1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "05d289ddfd8dc7988e6d77f9496b1c6827ae16072b8f009eb541dafb1b75734b", + "regex": "(?i)^https?\\:\\/\\/videoincinerator\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b3d565a35f829f4f14bfa7486ad378eccaf227c70bb72d17acba05d4affb35f5", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "076e1cf2b45a3f12a0e04cad62e31b26e082ae088dd6d0db211e199fae107e45", + "regex": "(?i)^https?\\:\\/\\/videofireworkshub\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ce55088b15c08b7fe574ef576f47fd4cc51935541f9141026b7709d00386dc7a", + "regex": "(?i)^https?\\:\\/\\/whatsappedisi2020\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8c21a778fb547113d327638307791ee46f9f2fd7375970537684613f95306814", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+A2Yr9Nv\\%3DqfK1UtB\\%24nhditgid\\%3D1HYt(?:\\?|$)" + }, + { + "hash": "559ba8646ce0d0b6bb48e69afdf1822afc24a11b48fb4969b730888c91e80b85", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-visio\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3e325976fdca389704f5142526fefa3faca85dad97acc391bd12795dfa6cad97", + "regex": "(?i)^https?\\:\\/\\/marketplace\\-item\\-details\\-1256454\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7d1b205cf4a39f46e28bd8eb69364e66a95c426b29acebf73fec0aada05a0a21", + "regex": "." + }, + { + "hash": "f53cb682c1ac450844de461c27df3e082ecf98367ae224949c0ac2efcf0268da", + "regex": "(?i)^https?\\:\\/\\/spitfirevideoss\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8c21a778fb547113d327638307791ee46f9f2fd7375970537684613f95306814", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+A2Yr9Nv\\%3DqfK1UtB\\%24nhditgid\\%3D1HYt\\.html(?:\\?|$)" + }, + { + "hash": "a85fe8002d00e13d18657c83ecdaa3fc4108dd5727954227ca5a99d18ae79100", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "117fdea89c6deff4b742379ee3521f50655eeb74240814e75738d69abac8ac28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a3fcd8bd2f16af7bb43d356674f2bb1b6910242536ce9d72d4a8474238c81f4e", + "regex": "(?i)^https?\\:\\/\\/spitfirevideoss\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4bcffcd4af3904d4c24f8dcb51ad524726d3b4ab31944b2307fc24270be90556", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-visio\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8d106b99a239aa68a6cc5d8f190563e64fe066f3215c1b0620515bd8bcb054f4", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ce55ca3ad3e63120764b661fe92a66e4ba5433f0a9e259de4f8b9207829ac80b", + "regex": "." + }, + { + "hash": "4cad68511c4dd8d63fa3ec7fadee435357ba089aa6b1c33b4bd8721c7418d9be", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dcfbcc87313c3990ccc042000d07095808b769f70647899a4861c51c18cbaaaa", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "45c5e66e3f72e1b9f43cee46023f98c7856d163d05e2123e13c1a6140991185b", + "regex": "(?i)^https?\\:\\/\\/sasdasadsadsadsda\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8ee04562c0fd4cac62e5266c45779d393b92acd14b3d60f7553244769b9159dd", + "regex": "." + }, + { + "hash": "f86c7bb03197db7df1252588ba8cbe0e033fad28fdf5798b66d16cb41db60127", + "regex": "(?i)^https?\\:\\/\\/feverpitchvideos\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d0482017ffadf4f0cb52e1cec3e5360b88417604b8861c1069242c2f8105d35c", + "regex": "." + }, + { + "hash": "71114b4cc35450822213ef6340f6b94f9aefcc7816d53c19059b2fee290582de", + "regex": "(?i)^https?\\:\\/\\/comotenermuchorobuxgratisroblox\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66d547da2040783bb80306c365a6589575adf3be09c73edcb2cda78dae8e0f3c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-video\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5216c389323f25fd06c2bc568687ecb8a597a6eb67f256db8e71b43107f8924e", + "regex": "(?i)^https?\\:\\/\\/videoinfernospace\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9f6606a9aa49c0661740f3d5d7236c901e9d48ceae61bdf58a592c191efccfc0", + "regex": "." + }, + { + "hash": "e96e221dcf6f781a52370a28f074a18141ef91ad7a2b41c33cbf6bb569a289ce", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fbfd6eed82020a8b6fef19fe6417fe28fff3930fa1920ae312c785cd0c0a97ec", + "regex": "(?i)^https?\\:\\/\\/videoincinerator\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6b864da96854e9632d2961ca35ff2e94dbc2a61d0bcdf7af96d510c7b4085026", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xx\\-telecharger\\-mobile\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5c61dc5cdda76916b7591a6dc8af1d969c5b2892f01891a2034ac6cd38eb0ae9", + "regex": "(?i)^https?\\:\\/\\/dasdas783223\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "7aadb6a7bc7791baecb9328de1ea5a804ef94c98a32c499974d36e29f350209a", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2455a9a1cb4727b46c756babc098c69bb5b8ee3bc984a7da2c826785f3529cef", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-telephone\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f89d56d5ba4ec1f1142763b55ffb53653473e187a4ea31038cc8cd5859053c95", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-visio\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "04d3d432ad5d90712ad11241b03689f5b5efb68b2a3ac6bb6d0c04b33689beaf", + "regex": "(?i)^https?\\:\\/\\/sb6d\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "444a8718163eda79feece37425cc08aeec0c758c568ae957f838963b80268486", + "regex": "(?i)^https?\\:\\/\\/sb4d6\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "85fc4a78c479f33b80100faf06268ebbf8511963e3ff1239f80b43c3c249df43", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a6ebe7bee0b8002b812698f8f82e03ebb8ba62c0ebfc2b69a7ebe1b154048f3c", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4fd77a1d8cc31828d4c0b021e763fb734249d1102507c34e8955ed6c907f0dcc", + "regex": "(?i)^https?\\:\\/\\/secureresource1fcubnk\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "12292a2bb86022a3cab5d8e9c558ca897931dc15434549b6b6b31c849596a7b2", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "02a875beb8f638c6ec039c60cfc7933397ae9d4d5bde9d11b30fdcf8717db739", + "regex": "(?i)^https?\\:\\/\\/ch958789798dd\\-mail394\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b1fe92eed1541a7ec07e1a5f46e827b8dcb1359c440b8b6b49ff521729ebb118", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "151b0582bb058eb23f59419ef1bb792076fb6f5a856ef5e6427fccf873b84c5d", + "regex": "." + }, + { + "hash": "ea334bd39db52c63045627520c423d616b94b9d04c9692776e4ab6c02c46c4af", + "regex": "(?i)^https?\\:\\/\\/zzzvideohot\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4011ec48e90577b500ef1ec81539c8cf6fc753f5ef6b60e31cfd5188b2b63ede", + "regex": "(?i)^https?\\:\\/\\/frostcaster\\-icebinder\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "315723d2c818b86a152f12cc380e6a314654d6dce6f0f166cde965b44cc14121", + "regex": "(?i)^https?\\:\\/\\/zzzzvideohot\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "85a180fd371840702cd9e8056927506388a04ee22a8ada83df748e98186a4fce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zone(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "15cffc4c9ba555c97ce97e963ee60343cd4da5d12b9cf26a631c844a5f44b9b8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-rechargement\\-telephone\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2c13a0adbcb2a9d344d50c3e9f8ea256d5be06a869a47e57a21997d85f8dcb29", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7b5e248eabcf4ea37df3cbeee67466c7940a2a74f624a66bd1968b26d4ad5419", + "regex": "(?i)^https?\\:\\/\\/dasdsad823213\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9a02515b64a58751099ecedc1c86fdea5df847d12d21040ceaacee6e83cf4e3f", + "regex": "(?i)^https?\\:\\/\\/zzzzvideohot\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0d456761ae6b9d0fcf05029522d7556a33839f0b63a624216dcf66683c3fba31", + "regex": "." + }, + { + "hash": "c62e1001dfaa047266832d15fd37ba75fcd559362f73124fdea9d7b079c3490b", + "regex": "(?i)^https?\\:\\/\\/whatsappedisi2020\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5a80224744104c4f5884a6eebb1153c57bb85ebf5e92341a56071ec75488db58", + "regex": "(?i)^https?\\:\\/\\/chatgratuitwebcam\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2df499399a5eacd43830e98493fffb30c52ab82e6bf427a6ac993e4c2ebf05e4", + "regex": "(?i)^https?\\:\\/\\/zzzvideohot\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b5ecb7625402999ba5d3c4f4e34dfb2c50edc16d8b0b4119d2a17cb8d00953d7", + "regex": "(?i)^https?\\:\\/\\/zzzzvideohot\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e7e9ba1788ecfcb875a0c77e96d46e1d08085a49e406a5938a75d202273fe461", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-rechargement\\-telephone\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2dda72d31553cda92c984bc1340bf991ab8727347c5247602e13b83c24f930f5", + "regex": "(?i)^https?\\:\\/\\/hotcliptrends\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "dca9cd3ee3b8f8ba77b52abac5fed99a58e8008c53a2f894f81deb9d2466640f", + "regex": "(?i)^https?\\:\\/\\/videoincinerator\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2cd4963ca8ff7aa4fc7ed9516b24d3d9fb04ea36773b590716f83019d43464c0", + "regex": "." + }, + { + "hash": "b14ce46bce84a1a445d6de517db9465ea3b81a1db39c0dc11ba6a7b37a0a3c3b", + "regex": "(?i)^https?\\:\\/\\/home\\-103913\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fa41f9d158620b7c1d6de32cae92a0dfd0b559b89287d793e37a187d46327499", + "regex": "." + }, + { + "hash": "ea15d9c72da95ad6ab5f4ec848a7f02109fed1c8fa2ba8d855a4514143fd18d9", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-bretagne\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a82d0e6d9b4c8214e7c937f0cbada08b2d86c882e7563c1561683451b0405b27", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-rechargement\\-telephone\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a2c49e9f587a39a8aed9c147427fd6a1068bf51f752536d84173d1081c172b72", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2dab314624c7c681e331208a216e91caf67530d72e4f4d351bfeb226592f2b0b", + "regex": "(?i)^https?\\:\\/\\/fillewebcam\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f57e9f56907aa4ebf27ddd437bd9bc9d3cc491b20edf648765bd0c0fef906bec", + "regex": "." + }, + { + "hash": "797fc30af48ab10560b56ce1e49037a7c0e02c727b742b5f8f7059c9f8c69a62", + "regex": "(?i)^https?\\:\\/\\/instagramofficialsreports991\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "34d4f6ca39c1102367dfb447db741bda5dbe3ae90cbb97cdee74d9b5324ae97c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8715377b30750d487ad06b6b39ae25006061c6086e0d2306830d8fdec18e68d1", + "regex": "(?i)^https?\\:\\/\\/trendysexsnips\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "36d72e49c497eda7811088be66a7077d157cf0970cc4dff577a5345284a59fa8", + "regex": "(?i)^https?\\:\\/\\/sb4d6\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d614013740321120930c57f49ba4304f9d433106a0458b4ea40f06c89f54e673", + "regex": "(?i)^https?\\:\\/\\/chatgratuitwebcam\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3dc8d26ce833af56b921047f549fa758642c03640140c144b17a9550cb6a6a66", + "regex": "." + }, + { + "hash": "b5c4bfa156ba9fcc0930a08a2dae2acf64a88b894cb2c422e296fcae1ab23711", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdthuasckasmcaksemaasea\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8bb344918d105ccd8eb3067ad8be568733c3f0d8125f0b5b598c004eaf35fd30", + "regex": "(?i)^https?\\:\\/\\/43423423432\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0869220f58c12a244e16b1be485dac47e1a1596968d5c91e8c5dbd26117674ab", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-mobile\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "396136c5bdbbf25bf92a2cabc50ea5d2f38da8d30d2da22b1f6c7b9314136168", + "regex": "(?i)^https?\\:\\/\\/hottopicvideos\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "39e17825f801dd3c70923df15e8670eff5493a781dc30d155067d386f31c0ef7", + "regex": "." + }, + { + "hash": "25b5d36d43b1d1f0f0d3740d0cd69e6f0d2c3629e080eacca80b4cda5fcc333d", + "regex": "." + }, + { + "hash": "3744e684c5df41c031ff71b33b6f2f6bb1e2a9bdebeaf750e62c99f128574e13", + "regex": "." + }, + { + "hash": "4478ee72532f89295748e59a3522350b5a17a6d6b74dc94129cfd40744ab7dbe", + "regex": "." + }, + { + "hash": "aa451a34cf3e7485865664741afab9b300240f997885dbf0b024294f70587438", + "regex": "(?i)^https?\\:\\/\\/bioengineer\\-cellmapper\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ac6b63d8141796b2cdbe94fa61e6cf61296c53f522addbdf1a4f5c88b42957ee", + "regex": "." + }, + { + "hash": "4b3d326aebace20424cd2db399c84de4437f9a0e9ca3a41beb0fca413d3fdd5a", + "regex": "(?i)^https?\\:\\/\\/mnbmnbmn456465\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+elcd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bb1eaa82f12c355cd21e426eccf619fb3e99f98cbc685863d0ee5cd779f53ca9", + "regex": "(?i)^https?\\:\\/\\/dailyclipfix\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "84a6198b5bb8830d1d6314323173748d748fe5a191aba33c3a0a5d6a71e11d29", + "regex": "." + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "776e8cb4f25a7b925c8e99744abfa32d1159e55d1a8d43e9b5a35aff107dd730", + "regex": "(?i)^https?\\:\\/\\/dailyclipsfix\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8998cfde75b0bd7e69288160ae79628146b642e4e2bec2968e444f8895798c8", + "regex": "(?i)^https?\\:\\/\\/klzfhmaaama\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "efe8eb21e44ceb9a4ebb80a9b58aa09e0960a56498a279e8b0cfc31122dbc8fe", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "99ad28140f26dfae970c778f8ee7b2684139bc330929c235120b24ba2f52f0ce", + "regex": "(?i)^https?\\:\\/\\/zxvideohot\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fed44741d616cf431c224510cde313007ce5dd571ac3f5cd6d2e0e31a4a241e3", + "regex": "(?i)^https?\\:\\/\\/dailyclipsfix\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c23c37907171aba70161a253c67a7bfa2bcc8d5f7e38a9741fbfe5b8dc989f75", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdfdfsy5t4tg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e0a2bae39fff44148510241edcc3c200ae5485d15f1ac31297260d19c059bd00", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ffc3666ea373a74e1a8b12be7ac86763fd693dd449c092702d5abea6c663c41f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6a7d8e32bf1169420a694a9d8dcc75a63500dad67ef951483e0f0ed255820107", + "regex": "(?i)^https?\\:\\/\\/mnbmnbmn456465\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+elcd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "237cdfe87489fe0760b6eb6f8c9947cb54e561f2ef464f03c11948ac90fbe875", + "regex": "(?i)^https?\\:\\/\\/klzfhmaaama\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "577ddb7c47201d63246843e750c278407e999eda405b1e2094bb5b02d438021e", + "regex": "(?i)^https?\\:\\/\\/klzfhmaaama\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0f71166a9cb6d5a4b8a088892d6e1503999eb6762f5462d257f013fdc67aef21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tn\\.jsp\\?f\\=001o73_m1qaVjECB0awUhaLOt2w4\\-MJAoWgFpanqsDCBFj_yQzaYjhN_G076yD9Q6N0P9cp\\-mpznuUar0UYaZl3clfmWTnLXRgHdepAWujMVmcKCN5Jw0Q\\-eHo3UTtrgXlhrYekYw96a0kGmA_1eLnFoQ\\=\\=\\&c\\=Vvr4SzeTVYTM0r1A02cm3lm\\-DrTJSEHJVKYmOB\\-MV\\-2IyO\\-w9ZT\\-zg\\=\\=\\&ch\\=b72\\-NZ\\-bsFSjalKLuRuS47\\-m95QMoybg\\-_SP6GS\\-E30hrfA_5o4TIg\\=\\=\\&__\\=[\\/\\\\]+wp[\\/\\\\]+example[\\/\\\\]+ahgpy[\\/\\\\]+bWljaGFlbC5kb2xiZXJnQGFwb2xsb253ZWFsdGguY29t$" + }, + { + "hash": "517ddb7b0b3b8be71057de79842dcd77e20ba4fe34db64b2fbba9304aa3a3c17", + "regex": "(?i)^https?\\:\\/\\/zxvideohot\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "92c14753c23b090da12ef617d2bf3db187ebdd84bc8918b7611975cbfda5ed34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pacel(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "24553b5124bc75d1532b92450e468e91a7d4f21a03e1fef01f8f0d38851482cc", + "regex": "(?i)^https?\\:\\/\\/bioengineer\\-cellmapper\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "12af1c6f1a41fc1aa1d85372f8c4614001cc9ba1bc8ba956ba84a5f5ea7eef5b", + "regex": "(?i)^https?\\:\\/\\/zxvideohot\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0c5d3a33c83cf6f1a5d68215a33b8107f7c50e3169b3ab8c82df344d5f2015c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "85c3198351292f70577539789506f7367e54c8dd11f8fdcff799698e1c27aebc", + "regex": "(?i)^https?\\:\\/\\/coderobloxcodepromopouravoirdesobjets\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd742291ca1638b73525034e5970886ece0d1980e06a4718318477743606a333", + "regex": "." + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "97427a3e1d96e86f558b235609005590448f006dd83a9e93e7f69f7a84f84ebb", + "regex": "." + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "315c3431ce5eb6ac02528ed18c29871917fc546ec980e9b02fb68ac1d5b2974c", + "regex": "." + }, + { + "hash": "7c52f1467410beb4bf598cfc1f472a54a4e1fc3c5439d7cb4c6b798baa076c3a", + "regex": "." + }, + { + "hash": "87aa45231a0e99f234c3d37a79a1e6bb841768fad1c97752e6743ceabee9f6a5", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "70de9b534824f4a0d4e3f28692a5e8575121db46762bb4abd35f2179088c42b2", + "regex": "." + }, + { + "hash": "d48a2376ee30c4652c3a97389bd283fc1b7f7ff5f144ab9283e70dce978eb4e3", + "regex": "(?i)^https?\\:\\/\\/jzalamakkk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "06929121291ac52a79269924fc81e595db2b04f05e7b353b9d45c34ed8a6e2c9", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7a4de625697e23d3e29a36a3be14b96fd3cddbd5cb990c0b3e7a5f7491c7c0c4", + "regex": "." + }, + { + "hash": "2cb2f9d74ebce58ce80f755b16269d4daba417d53f2fa75b4d013a4514eb0f88", + "regex": "." + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:\\?|$)" + }, + { + "hash": "1fb2f8381f0f087404cf4e6b84591ac167e76b0f5afef6eec522d649a915e05e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sqi\\.php(?:\\?|$)" + }, + { + "hash": "864ca89141064ff288db99ea07704cfcef48094d37ca1f8e7adb1b0cabc78b1c", + "regex": "." + }, + { + "hash": "3bb1451e9ec30b98dc0c13cdea2664e689958e8339c170c9592e498ce1a59ec6", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3fddf2a8c43db0b1cf6a9cb99900a43ca3441b879c0311ed4a34c54d531f9c93", + "regex": "." + }, + { + "hash": "36e42be9eff2f67e9bbffed8659e20e6059fe02bde2a4450c756f0645c872a68", + "regex": "." + }, + { + "hash": "1b9ad6e5847b734b40b0ddd253388be038ce6e70abe1926ead3a34fb66bcbb72", + "regex": "(?i)^https?\\:\\/\\/klzfhmaaama\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "dc0577dd2d604bbd65ad5787eed05d34e060c14cd9febe879f227937c1210e49", + "regex": "." + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "82486c3c57ac9dc71a89b6b4c83023be31664d475cffb9707d0184ae27a7d2c1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zcugx\\.com\\%E2\\%88\\%95nezytpbymm\\%E2\\%88\\%95yzmrc\\%E2\\%88\\%95wkbzgspk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=essoxg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+elcd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d0d926c584bb34c13f8ccf2d1e6b0de5a02e2d0fa1723df4efc96deaa356779", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9061[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "eeea5f1e35e8afa90e80d8743ced2c55c1ef9a7516e5617a3e5497ea8f56384d", + "regex": "." + }, + { + "hash": "83560c6d262bb97c605d8e1e00729b603ced3c33b515784c2c6017bb9cb8e6f9", + "regex": "." + }, + { + "hash": "f7e41ab21c4dec469771839c870f9ddc85af795f67a2b0c95de6fe6eb903c5b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9113[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "bd6b65975d92398306635e9352d95a74452a80a8170964c673fe3c3423f84e94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "7a35582c8b8f9fdfd2cd8f10205bd9c6f1387d6d76156cd8d08cdcbea64447e2", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7363e2e2f4857ec93a4c96370666e94e93445cec6b78c91adce45edee8a87873", + "regex": "(?i)^https?\\:\\/\\/hottopicvideos\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "01e48dd15d98507e40f17878f878c89eb8b14fe091a603ffd9136feaacec50e7", + "regex": "(?i)^https?\\:\\/\\/members1stacct\\-securedaccount\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d8a0b9ec06f45f71929dbfd3b0044430a40a1c1238080e516eb650fa4c5130f0", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c6c224f74b793d2b9fb01d08117b184c90cb331908d5a9a6b5a1d058b48206c5", + "regex": "(?i)^https?\\:\\/\\/vbucksgent\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cdbea8ed0f9eff126b4ad5f75a28fcf72a2a3c093b3d4f85232dd8a64b2f7133", + "regex": "." + }, + { + "hash": "13aa96379d78f23799722c3b42c96107ab05fbbab5d44341cf2ec449d496e35c", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a9c71e918ad04782e6b20b98177ec70d7f190d74560b48f9354823de8e35f120", + "regex": "." + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cc57476c5dab74cab1fb760a518384c1752a40ba238b353708b2e1900133e8cd", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "77c43ea491741a7a89825626f8adf8d8a885bfd2b17356b98b3c2bdbafc519ab", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f7e41ab21c4dec469771839c870f9ddc85af795f67a2b0c95de6fe6eb903c5b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9113[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d0d926c584bb34c13f8ccf2d1e6b0de5a02e2d0fa1723df4efc96deaa356779", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9061[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "dca80aab890de4ccf909788c0bb67edd53234db3d7c1599c268d2dac3aa37a4c", + "regex": "(?i)^https?\\:\\/\\/servicemail23\\-104062\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7278e0cbcdc34fd2a5878777c09b37669db54b06cf139fad6e6553eeefd6582f", + "regex": "(?i)^https?\\:\\/\\/parkno4141f\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d80a8a04a0bceb3b45f01517f63a58635925b13733613607c6431d29dd8dfeec", + "regex": "(?i)^https?\\:\\/\\/parkno4141f\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ce3c3465267cb40e99f96d0f398861c243ec8f5b50d3554e4e9b2ab190b5888d", + "regex": "(?i)^https?\\:\\/\\/hottopicvideos\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "749a2e48291c1b84537e80e0cdbc2f0c38f58f0f995944b422b505b3eb6980e9", + "regex": "(?i)^https?\\:\\/\\/vbucksgent\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "97de1fd911dc265809c05b7a1d5a937857691989c2e85f748053b13e9a5603a3", + "regex": "(?i)^https?\\:\\/\\/dailyclipsfix\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "d240e7420d8f3e7a98579d2a6778c9cd1c567248843081971506b53ee9f6da9e", + "regex": "." + }, + { + "hash": "5922c7212e768cb5aea82c3f36a8ae2082251fcd3c86d00416e2f9d27a07fc45", + "regex": "(?i)^https?\\:\\/\\/zxvideohot\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0e8ba3350f9d971e01273674e53328a7c4d954c808b46fbb40ccd6cc4c6c1f23", + "regex": "(?i)^https?\\:\\/\\/jzalamakkk\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "69a2a99bcdb2cd3958b668465bd7fe8b92347603eabf9c2f9623e2f520d96444", + "regex": "." + }, + { + "hash": "e88147a888d487ece905f93e332252b3bfc677c93a4061b4550a1dbc2d8f3525", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd07d42a324a4e6e3d23349810e79adcd4a1d8c2b404112aacc0100d26eb68eb", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "b7c7bce9b0c4f38dd2528cdb9d08a04d6631e8efd7fd6e6e2735b40d4bf38600", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdfdfsy5t4tg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1137fc2515acaf48a0586751465ba3865e54f8d3613ac8a1dd52594b43adede9", + "regex": "." + }, + { + "hash": "d0cb99822ee7d34b256953c229a69b5961ca0012d70a148da44dbde867f9de61", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a99dbf92bc4b75468f75449e4d9762efe322c62f5b07938340281bcd408bad59", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "529bbdf34749441cb5f7f0c00a8c34de71f72e5ca024bf0e3115aee431d3620e", + "regex": "(?i)^https?\\:\\/\\/zxvideohot\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b0fce5a380a52278322d846e673b95415d1ebc4d4035e4abd2ee8e513f76c95", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "03d5e7482fc9d5899b25c13db508f9f55c83a2b75f10e23508b1aeb6b1090e93", + "regex": "." + }, + { + "hash": "aa9c68f0b5be0b09798711762f6eaa96515503c81119e293da6065dd00a742bc", + "regex": "." + }, + { + "hash": "9a96906e3d6a0a16f7f467e025e64abc1ea1df5a53c9d6ef54d935c8f76ab64d", + "regex": "." + }, + { + "hash": "5e2e09040aad4c3c9331b7100d7ac492c640e4466780a370d6de21aa41af73a5", + "regex": "." + }, + { + "hash": "e6a2d80492007705f46c7383c0b805f5b1cb43658e52b6f6ce60c3e220241bb8", + "regex": "." + }, + { + "hash": "e0a2bae39fff44148510241edcc3c200ae5485d15f1ac31297260d19c059bd00", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+elcd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c8c39d44f901b7c4fdedb0807be2e6ddb6df6ce2a1f646e8437029c828aff207", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "229704220dc92ce49e95f39b95d596b55d18cf632aee8dc06d4ca391da5aa9ea", + "regex": "." + }, + { + "hash": "43bb77fc5b836e64f2736fd0efaa657d51eddfeb502095720dd84d1ea4ad46eb", + "regex": "(?i)^https?\\:\\/\\/jzalamakkk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7de9603349f98871f3ca34465dbde1b9d235693d3c3d4fa14ad5f069bc985940", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1fb2f8381f0f087404cf4e6b84591ac167e76b0f5afef6eec522d649a915e05e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sq0\\.php\\?session\\=6733c40a7632a$" + }, + { + "hash": "3ba02b251c87c5820a45dade8680231e697d56c7f86762eae6e6ee53757d5837", + "regex": "(?i)^https?\\:\\/\\/dailyclipfix\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:\\?|$)" + }, + { + "hash": "07c46a090d8c9a22de9646c0222e61f35242ed28d21f2cba90a5255db72bce54", + "regex": "." + }, + { + "hash": "304c2ca4cf30457658367dbc39b9c90ead135c404d7704be5a170521799257d6", + "regex": "." + }, + { + "hash": "f8adb320f13d9f5f4038070c709006512e76ebb37de3fbda6194ff8879f5f8c5", + "regex": "(?i)^https?\\:\\/\\/dailyclipsfix\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5ee77aeb070b8ede5e36b83bb8d790828b222436711018620ffa69e61f16c03f", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "19e385ec8296090e6e072827387923fe62f149aec8cd75c530855deebfd58d28", + "regex": "(?i)^https?\\:\\/\\/amazon\\.peqtrzcjck\\.com\\%E2\\%88\\%95updwgnafzh\\%E2\\%88\\%95ooygjdalyo\\%E2\\%88\\%95xmbjxn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=volxo\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e892e0f5b2dd74ae75f133729cd1975c332a57a9872ac2df9b92c0d74772303", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\~hostki5" + }, + { + "hash": "09239957e43d170a2b047e770d59e09ec5df5d489edf748edcf62d68893ce4e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "e29d8cd1dc2a68adeabe3dc17fac8332795509787ac3b87a332e81917824e33a", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "9db1cde62c1a7ba2e09fbe18a0fcc11fbf1025583de72bb747047bad4578fabb", + "regex": "(?i)^https?\\:\\/\\/dailyclipfix\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "136002575627c94e7a7e577c0b81d715f68981686e140c705b9a17900e5c5d41", + "regex": "(?i)^https?\\:\\/\\/zxvideohot\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f306cffa5523f129b7c8b3dcee7f6037c871763b0cdfc9f0ed36fd918e67dc75", + "regex": "." + }, + { + "hash": "c5a34921c1f35a865c6d902efaabaa4a64c85bced480536aec60295e90fc14de", + "regex": "(?i)^https?\\:\\/\\/jzalamakkk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b232ac9f4ce49c367295df2da45446db1c3c57d2cd170d0fe5ba4fed3f49b898", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "671025635c60d9537f0376106c503b67bcdd0d437acd46667524afe3ff0fc251", + "regex": "(?i)^https?\\:\\/\\/bioengineer\\-cellmapper\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "57ba06d5b1342e4c591f3c531b91da6f7121af449eaa1c6cea52f0003ae7a144", + "regex": "(?i)^https?\\:\\/\\/att\\-web\\-103036\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3469f155f17f4b9523c4e8d6032b254562357fbda40865cc287e7eeecfa93e52", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0c5d3a33c83cf6f1a5d68215a33b8107f7c50e3169b3ab8c82df344d5f2015c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62dc2d2c500a126ee4819b20fd8f3da9a5cbbb30f73805ee3051f652e73a851e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1015a257e66c5546e8b46b1e2a8388b72e3faae4a26c10e12201b567c74ea37a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "597b8d463e5b94fe202421ea5a1be52ede9f45cd276d75811a8a43a7ac62d480", + "regex": "(?i)^https?\\:\\/\\/dailyclipfix\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2d496c271bdaeba525a2c07fb808ac229bad13dc8bec095cd358231818d1b33a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.rF7twtH5sqf2EB9GpLuMX6rUZFt\\-2BSv1Fx\\-2BDZP7bvKT8W804tGPuucGEC0q2iUkMs8rEvd8g8mjJ3IF\\-2BsXwX3N4TObk\\-2BnvYOTNmtp6xLStLI\\-3DLell_ORQo4qxQZ\\-2Fc9gkVAg0tvKX5cQdBhHZWvcb\\-2BBiV15SfVykAObvH0F133hDHlQletQRUU8us\\-2BmwFG\\-2FzVLl7m\\-2Bf10lMSpgUMOPxw9LYDcfontA3\\-2B\\-2B\\-2FTntL3ZpGsV8bhLJsHuxdBLybSmQOvPt7Xa7m4BUyukiRI\\-2BPM9AHOPJjNGJjccLwTJHZua\\-2BEAX3PkOqdwT8TPWQ9gIn5d\\-2BvnVd1Oudxgv1h52PO1ouEIIu0FwOtSD81t0XKHeSL3ckkVpUb60\\-2BG9lX\\-2BbdcwqsmCnIEkiSoVw\\-3D\\-3D" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "3d0d926c584bb34c13f8ccf2d1e6b0de5a02e2d0fa1723df4efc96deaa356779", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9061[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2847bfe731b9a41ea9f970ff775449c693b22b9a44ad2319e62daad6c50bfd0b", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f06fd3fde2f6141fbbf9df1daa28d368b8bbd1fc5d70de35a8a68588483110fd", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdfdfsy5t4tg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9fbcc2a26d65f404d59fae6564c6266bb99e8f92b9d2363662722c5020728458", + "regex": "." + }, + { + "hash": "98088ca5f542b211f66a7e29a1893b12cc45af2527a7950cc8af80a26b0d07b0", + "regex": "(?i)^https?\\:\\/\\/o\\.v\\.fourth\\.grant\\.uk\\.id\\.login\\.update\\.ssl\\.encryption\\-6159368de39251d7a\\-login\\.id\\.security\\.trackid\\.piwikb7c1867dd7ba9c57\\.20ded0efb1ea025dc359dac72bceeb02\\.mailingmarketing\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ca6f77650adf0757eab3774b734ff9e72c9a15f1d0a6713150fedc86426ea2b", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9d64be5d69d4d402592d71013c67366889eb9e59d767047372931045a3d66da3", + "regex": "." + }, + { + "hash": "9d8c7c733491058fa3a80b3a086140e9cf17f2b4013f1068ceda9e56fc6b1ce9", + "regex": "." + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+elcd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96466f2d8d617293cbb54cf07594d21f98aab091e67070429687cb0b4f5d5a45", + "regex": "." + }, + { + "hash": "496d736e8de93cc45fb074651f3557c9a1fd75a5b15d240f70d74dd85174195a", + "regex": "." + }, + { + "hash": "96fa2ca96c4eddcf31abe9ce3e56397fe20c72dcb6dd1c722e55402480469229", + "regex": "." + }, + { + "hash": "bcf46eaa65da52102a28a0bd0f2dda62cdcac4ac21f15acc9f4fda719bb96154", + "regex": "(?i)^https?\\:\\/\\/zxvideohot\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "dc2729203a3c85f5b588fce4a2a9519292cc442bf2fae09a2d969a3e40224a90", + "regex": "." + }, + { + "hash": "02fb16df8e5e2c0b292506452e08ae8bc3cdcb409ded9bb2945f9d0c8ef04f6a", + "regex": "." + }, + { + "hash": "edcc2da78d4f3b66e8be89c826904f84b584539b53bc811d60b9116421024403", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index$" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb4a274018a36f3e50047bf9d8214dde0e3a1880bc51c57c766c82aa70bca3ba", + "regex": "." + }, + { + "hash": "9235e57a90116f52438fce4206c506381f5cda29d3de8ca88bb46dc9b558275f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "d3d9759f69068f5530bfad2c0ab796e94851633ea3166c7e57a01ae04645927c", + "regex": "(?i)^https?\\:\\/\\/vbucksgent\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bf9258812c9833eb056c8bf6b50adcbe580f471c05cb6382404d9f64bb0ea071", + "regex": "(?i)^https?\\:\\/\\/jzalamakkk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "73f6b2df4a063c0085c1208a30aa69bc6da93b528da560e5ffb701b1c6e7b8a3", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eae8d334d4408901b3ccd55f763ce1d7c05b09fc7e5d3f2fe40ca07806323f39", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "dd51c78dcb0aa407a40f99314dedd928a65fae4101e34c1dbe4dc43e09e6ccac", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdfdfsy5t4tg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "14106e2c0191b3e02f2920512fdcc1ab90bb8de5f2b6104d2fd132f0be158dc5", + "regex": "." + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "ccd1f57e2cf4fe5f0a2f765d1cf21efb552ecc9177c62b6b992fc5e1c2bac8d5", + "regex": "(?i)^https?\\:\\/\\/parkno4141f\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "93655024894150f19543eebd6683341bdd83efaebb05a5b4fe6c1be65f7bd843", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8a25bf88425adc207b8e19eeb76cbac30ed0eb0e1f7480c55dccb6bbbcdb2631", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e57d861c4de8a4c8a8a499b3808b39ff2a35bb34b07fd58b593972f73f035a91", + "regex": "." + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95c52b6b1d3e9c0f0cb94e0c153fae2d37b72d8e406b4ba93da47914b4d2ddb2", + "regex": "(?i)^https?\\:\\/\\/klzfhmaaama\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cdda0b36f75f0eedf4da82abc465e5a78ef193c210d168159bf9e29adaac3fd0", + "regex": "(?i)^https?\\:\\/\\/tonreward\\-ao5\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3da1a403d439725acb57e676d638beacaeb674fb60f258b18aa6e374336c27ef", + "regex": "." + }, + { + "hash": "1d9d06c94dfb359f646a9f38ce43755a0e414f4482f130b799d685e89133b1cb", + "regex": "(?i)^https?\\:\\/\\/bioengineer\\-cellmapper\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "87c8209f7fb54ccae720a1dfa14eb32883d14f7843dda65818e33ff650fb0cb1", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c133fb79bfa04d5c94cfab4e703c6b7687e10a7eea1bc44571ab8795081d599c", + "regex": "(?i)^https?\\:\\/\\/zxvideohot\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:\\?|$)" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "6346fef87c2c5b14c1af40b4feb8006cc778bc909b1da9aa3c3b35a9fdd41609", + "regex": "(?i)^https?\\:\\/\\/dailyclipfix\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6e9579acbf59843b7f7d717d5a408bd7bd5721e24990478eb1e92a2aa7590e17", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bc0c44786d661a8bd7d68aab185bae98c5dbbd269814b4b9cddb89aa136ef77e", + "regex": "(?i)^https?\\:\\/\\/httpsbellsouthnet\\-102649sitecom\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "99e3ad309b30e523e3a3fdcab31e5a901894549999260de2aa398cfb82efaf9f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e0603c5a8ba50c1f9236dbaf13f40a77b6455aa36355b59379dc50ef770880bb", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "df4155cdfa98832046d548c70cbcbd4b3b0c079c55ddfa9ac897b5d8f25bf006", + "regex": "(?i)^https?\\:\\/\\/hottopicvideos\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "728d674e988cc1f041440a99ef48e627f9c25514ac5ed5a9931d491bc1365336", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdfdfsy5t4tg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "51c6da3c10ee127ef53949a0a48dc3ce43164ad47e2cc9ee7c102a99632dab2d", + "regex": "." + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeeex\\.php(?:\\?|$)" + }, + { + "hash": "21d91646ff587fac3b150dcc38373b2510e420de76a26a0daea2961096ab36b7", + "regex": "(?i)^https?\\:\\/\\/dailyclipsfix\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "595778bc0d0082032663373d56caa84cf05350d1f273244ef57ebcc834afdd46", + "regex": "." + }, + { + "hash": "347fc3ecaf8bd7371fd958d11048cb3daa1e00ce3888f105756faed7e8b1198e", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "8a7a88858e8d20ed421ca34b582ef156218b90e2f4ef0b66bdf4a73080798a4e", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a57741685609fff735efc1b0ad3c4c281969b8f72ba79cf3b8c95d5eec205ea5", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "84f79b612d86151891d90bad5003064335c39fcf6fe5f7774117ddbad5f37068", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "814ce296a6ee445ece6e771f5a49cd866eebb2f84cbbc56bc22ddf3b9dd2317f", + "regex": "(?i)^https?\\:\\/\\/parkno4141f\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cf1fbfbbfd49ed6f9aac80915dfa448769f329bce1b143b321844ac184a11312", + "regex": "(?i)^https?\\:\\/\\/pub\\-16fac56fd7814b50980f9cd9b510ec52\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "10b9577eab3cd3bdb955aab29a11c3af5cd7f57a5ee77237d6ecd82ba01a0a17", + "regex": "(?i)^https?\\:\\/\\/vbucksgent\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2dda2af3586edf1fd3aaf2ce652ff003a80b4e933c5a759953e067b47ac3440c", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fd468c8d6fcf8e921381e6942a533572b4575eb08f4ec0637db990275756d2a3", + "regex": "(?i)^https?\\:\\/\\/dailyclipfix\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a66eb26a590e1967a288e9de7c2dd811e96a04a7e9050a56d168707877bc214f", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "14abc9f103ed96f116ffb533cb7a351430c6bcf2a7668c22242fbe04bb2f1426", + "regex": "(?i)^https?\\:\\/\\/hottopicvideos\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+4h8zku(?:\\?|$)" + }, + { + "hash": "9fbce0edeb358667f2cb87978d93d577f89a0f6c25b20695d8c3e9448987724a", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "ab49f231c0170abd3d04ca5cc772c27cc6da695b9372c5c5380d33e3eadf333d", + "regex": "." + }, + { + "hash": "2626a7ceebb67f3c773da85e2a13fdcad064320dd3a5505f0955055b2ed0823a", + "regex": "(?i)^https?\\:\\/\\/dailyclipfix\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2896a1150e4505c94d3821b8235969f522e9e090bfb48c6a2962f953ecc789ee", + "regex": "(?i)^https?\\:\\/\\/hottopicvideos\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "735f1d414ea9dbeb929aea99e045716f9f6429695fd122c6a52fca7c0f35137d", + "regex": "(?i)^https?\\:\\/\\/klzfhmaaama\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "347c7f5804e2c9fba559ddbf7bfbd03ba766fdea0a732e5565f0553194afff25", + "regex": "(?i)^https?\\:\\/\\/mnbmnbmn456465\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "962b6cbbea3eae8c8857f16118618be7a624bba90be98af704bb5a50767bf877", + "regex": "." + }, + { + "hash": "a64039aeb90c0b7882c527399a3da3e2602ab397ea8c40f94fa68444387e0f7a", + "regex": "." + }, + { + "hash": "207271619cd2352023b80b7ce10eadef307d4ab8249b9641cbfce69dc654693b", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2ec2da2214cae2dc9b227b50603a94ec1353c27f4e3857d03f9e6b17e43b3304", + "regex": "(?i)^https?\\:\\/\\/jzalamakkk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "c5f0e888f99b49665322e9e049d501e508be413e5eede34f858cb5a9148a58a2", + "regex": "." + }, + { + "hash": "16e8d3b27853bd029c787f171e3b12c569e123feb230474ec0a7f362e1720fa6", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0218a71cff5cff3170b202c406725f0209461e7cfaa2a1523624b0fec4345728", + "regex": "." + }, + { + "hash": "de230be5474db455c2712639094daf0d7b743a315381a3cbc32cd2e2320f33ad", + "regex": "." + }, + { + "hash": "0e4b9e9aba2cb6da95b1fd85051b959fe5f10ac1308695a22b1b129f1527bf23", + "regex": "(?i)^https?\\:\\/\\/bioengineer\\-cellmapper\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8f38d4ce334c75f69638d3177c7536e677fdc0d74c20339ce838559697d79429", + "regex": "(?i)^https?\\:\\/\\/hottopicvideos\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "0c5d3a33c83cf6f1a5d68215a33b8107f7c50e3169b3ab8c82df344d5f2015c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "d614e890e7408db385dcdbaf386f7ddf6f768aac30e978350752477694505567", + "regex": "." + }, + { + "hash": "04de847b7e36dbf591db3f6bd38428d8648d5eb4792c4ed538d9d7774e595344", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "665ff52491c1700701733c2497be8f93dba7b90ef35b99746237413995c9bc74", + "regex": "." + }, + { + "hash": "62829812f827d3afa67f3638d9f52254b598e3774807530c340f338845a394d9", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "69e411211451664061a07e7f7836d1d2f028c29f8753a6918268c3ea712205d0", + "regex": "." + }, + { + "hash": "324ee0a60bf385fc590af9eb68a94654d018f71542c47591a5000993ddb8d867", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9567537eb1c8b419d5531af336fde123dda9a6fa2c273e0c84a8856406f423e9", + "regex": "(?i)^https?\\:\\/\\/vbucksgent\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "814701c66c510b03b8a39e1dae67cff5d7d2276f9c36ef47ea44059e2bc3bda0", + "regex": "(?i)^https?\\:\\/\\/parkno4141f\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f965d1ef0f68ba152a7f27dc481e1501dc300d2c23eb166e35aa2fc57120df63", + "regex": "." + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "44a612a3b332903dd915c5b5afdb34bdb7b690004106944d0858b18d070b0a2f", + "regex": "." + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e391c229612bb85aca4df99bb25bcc51dbf6fb4c1e0b66d66b08d2c9f9b1fa89", + "regex": "(?i)^https?\\:\\/\\/mnbmnbmn456465\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d23b8863aeda13080b128b99649d9ef96e549bcf69048b9dbe20d818bd57ffd3", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cyxvmdotg\\.com\\%E2\\%88\\%95wlxqkf\\%E2\\%88\\%95tunvt\\%E2\\%88\\%95umpore\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ahpyj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30a7eed4d89fe9333b3a2eb6599ed1724dd7ab5287da9ee3a93cc25f3594cb50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+XG4zWzmr(?:\\?|$)" + }, + { + "hash": "0d3f7630806134770cd0bce028a258931af6aa7f3ea4ee8e598eb20807a29d53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?i_1$" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1ae13d2aa17790434166a3407115d95d99daa0cdcd6011568d508d39d63dc619", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+elcd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d0d926c584bb34c13f8ccf2d1e6b0de5a02e2d0fa1723df4efc96deaa356779", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9061[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9914754de005b69f7daf978915abcc24912197a6559a88248f8d2329871796c5", + "regex": "." + }, + { + "hash": "597b490154df7df79169b69f0390619f09d67da1864d1cef7408f30ed838221b", + "regex": "(?i)^https?\\:\\/\\/dailyclipsfix\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4d5c2b94c1776280699b9cc7d6adec4909e541d9e29929c7aa568513f5f4cbc6", + "regex": "(?i)^https?\\:\\/\\/parkno4141f\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b92b796e2258ee50af4b1f40c8221357effa5813c4cd822d719db713977ec241", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8f22587122f03d1b58de57bd30505deeb3b333a24d1db919e29a6615f0075781", + "regex": "." + }, + { + "hash": "01609fb3d1c40123e10cd400406609b14f90ffc0ddd5fb682de3cce8747df048", + "regex": "(?i)^https?\\:\\/\\/parkno4141f\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "43631b9785902e5854994bc2fc3d3ad734ee282016a627104d145179287dd550", + "regex": "(?i)^https?\\:\\/\\/juno\\-support\\-f1aa89\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "339e5a3d8722a26c21e81c0eda0cb7820a8fc5675c452df58a38c13b2d54ef4c", + "regex": "." + }, + { + "hash": "a9be0d8bfa3344f269d79908c598d772d4e4ef25557264981034f9e904659db2", + "regex": "(?i)^https?\\:\\/\\/bioengineer\\-cellmapper\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "085b20b1019a8e6fd7046d2b3ce8f3adcc3c2ac5b1879dae01316605c8f3c25e", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a691915170dd0c16bfff509d2a68d2dc6a9b67bdc63a18ab230c180b02f1db88", + "regex": "." + }, + { + "hash": "ce86de13ef49ee0ff9e9deacb06ed9e1e24a20b4ed66c28b6b1dcd6bc584a33c", + "regex": "(?i)^https?\\:\\/\\/dailyclipfix\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3fc02f069d2d68077371c2c92fdd8fe8e2b7486cf4f1814ba36fe3f6e6795b9c", + "regex": "(?i)^https?\\:\\/\\/klzfhmaaama\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e3c118bd7331d44baef41bf5617a3183bd74857ca6b8866fe29f7be4ca2da22a", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "66fb4a961c740373f3cdae2e62df96372b3dd762bbf5ebc95714755adbcf945a", + "regex": "(?i)^https?\\:\\/\\/vbucksgent\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7caf65862bfa7d484abb01b2fd2d380a92d59162802e5ffb7e8940d9b60f372a", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9db2da8cf93702afe45ded72e0bde4ba50e7efe15d76fd7c87491a88e4096681", + "regex": "." + }, + { + "hash": "d234f01819d9b1e87423abd6a5a97a64e76b5f63ffdbd17aa8e30d18cd9d7152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "bf2a269788e7c4e1021a705191bda4c023aa50c517e0cd6dd326f51a054df4e5", + "regex": "." + }, + { + "hash": "59ce2fe2ec078b3502c7fa7bce270e4a54bc1fcb08e51d06a1ad4a237fa523bd", + "regex": "." + }, + { + "hash": "cc8808afbf97537e2e68845f19f40081072eac65c38d7a1beda4e26cd81eb91a", + "regex": "(?i)^https?\\:\\/\\/klzfhmaaama\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c77aeec3c403393d89164abcfaf5208ee9abb1886bc611e239188213660626a3", + "regex": "." + }, + { + "hash": "642c5be5caecd09571423678fe7495bc4968b98d627b82d13d081d923b9e255c", + "regex": "." + }, + { + "hash": "ebba64ec39ba949627c84c8c7842d89422be5d7fc748248bebe4a5f837d9f393", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c7f261904cc357a01aa2e4b54725184ccbe3df9b22df13d7b927b527f6b78589", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register61259(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1831e4b2d903cf075d9bce10f259061ee94ffcba48e8dde1aa3b89f44d11f164", + "regex": "." + }, + { + "hash": "698bfcce45c07c86356e6197d7b6954b673673b957e59e9df9afcaa5cabf9f90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "eb751e287eba04a02b45555feef77b25bb20752543845796c5281d1c39a9910e", + "regex": "." + }, + { + "hash": "d0ef8740009d7226983cfb705b5bff99a3dcbe2480d384d89eb10ca7baeb18c2", + "regex": "(?i)^https?\\:\\/\\/vbucksgent\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "51387a5fe86251116dc71977132afa757200b1f7c66af3088039c093d5018ac5", + "regex": "(?i)^https?\\:\\/\\/pub\\-e26e4998fb884680aa6210b9e3d58b70\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2e824e0eb0e706e7eee9e10437ad3fa31773cbd414344192dbe59a7cc46c9e17", + "regex": "(?i)^https?\\:\\/\\/hottopicvideos\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d2d174bd8dbbf099a0270d4c25d11bead5a4280b2099a43f713a8b57200f3e28", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "00a9ee538a6f99cd0010a2f666934d6256a733605bba2322449ff38b455b19a4", + "regex": "(?i)^https?\\:\\/\\/vbucksgent\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f1ae034f4c143345cd3d74031c8937828c733254c76f0fdc47301af73fdb0087", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "457b102228c4f9bb758cb14f3d69162fff6cc41f0c79252c330ec296ee491f58", + "regex": "(?i)^https?\\:\\/\\/parkno4141f\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "866fed0664aade56fef1037264846849bbec3cfcd5e19e2d5a8817fcb3357efb", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdfdfsy5t4tg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f3dd11bc07aa4d1a76d119f86d5df74cc86a1f9d595ee833fc97dd0a7269fb45", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "27eccfe58670b01355f84e22e03d1af23b8abd0d9f957475e0c63bed120e08b4", + "regex": "(?i)^https?\\:\\/\\/sbotopkr\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7d8f546f982b789cd09e0f78d9633d1fe8138225f510b5dfe4f6a61404fe1768", + "regex": "(?i)^https?\\:\\/\\/robloxbubblegumsimulatorcodes2019wiki\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+elcd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6b42b7ddd5db8df0140bab9d41cc6f50e34e2f67ec66463f2adc142666fc82b9", + "regex": "." + }, + { + "hash": "ab2d46c5abcc4956019e923ac9a113ff24172c69dd0969a7c575ec34b527120d", + "regex": "(?i)^https?\\:\\/\\/rdptwone\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e6f75cd8884642eefe0769fba87061169d5a6c6555d26f06c5fe3cca6eeb8938", + "regex": "(?i)^https?\\:\\/\\/dailyclipfix\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "30d6a6cbf7f83c23f447af086c146e34004bd23226a3e19d9f2fda61674215f1", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "54e4503db8d0f5d93d63ae8205aa46718a538cb20ff6228714e603222fd15734", + "regex": "." + }, + { + "hash": "ca457500c92ac142c8110d029ffe5191f4680ac6265f65f82acced4109c3c51e", + "regex": "(?i)^https?\\:\\/\\/vbucksgent\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "f9bc830c39add212b29f4d8026f2b798abfa56dde1167a9a71da35602c7ccf95", + "regex": "(?i)^https?\\:\\/\\/starcodesrobloxrobux\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d6997a86b279962e5d3b63132783b9a0302ddc657e67da3686b8a34b4e6c73a7", + "regex": "(?i)^https?\\:\\/\\/wakkalnakk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+8dd4_e85bedcd713a48447d03385e6782aa05\\.html(?:\\?|$)" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "084e9a455fff98da71f38e02d859805889ef4ed7eab30a0f9aee2f3529d55541", + "regex": "(?i)^https?\\:\\/\\/klzfhmaaama\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "45d6152dbb524bf7d308e3475a901fa2f7c94349c45e257cf4df673452af6c67", + "regex": "(?i)^https?\\:\\/\\/dfhfghfs\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "afd3de965e4e538c2f64ecf21afa0a3818ba6e2bbc883d8dcce8308f1fcf1085", + "regex": "." + }, + { + "hash": "c6fa3b999228a72eb7c25e27a94ad578ab990df629d72a9e99671b88fb84aaf3", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "285790a2f5b3780db64860056f5da720dae1e4b2b2f1fb56e426d00614820144", + "regex": "." + }, + { + "hash": "81f577ace9513fc4735460e3d703f659d578bd1898c739fd489f33672f0e84d3", + "regex": "(?i)^https?\\:\\/\\/bioengineer\\-cellmapper\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8c886756856aa745ad3611c71782cb7c5923ead791990b2530fb9a3933dd6a12", + "regex": "." + }, + { + "hash": "e42daf7af6ef793f56ad1a123999206c664a3faffc6438c23e67b676bdaad86a", + "regex": "." + }, + { + "hash": "0c32bf58e9ff1a0bee1d2326281f9e9cbc60092d0403ac5291b0bc6e6ae7852c", + "regex": "." + }, + { + "hash": "c9bd5dd3627d12b8bc51e8b893cc4abdc010d675c25f7de21e0de3d9822fc1c6", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e901b34f50a7e65c4bd4ab7b3b8bd80b363f93ebbdf9293aaa8c12a8d91d9c4d", + "regex": "(?i)^https?\\:\\/\\/bioengineer\\-cellmapper\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b10927bd3893a6656e2ee9d012f751348858e2a761c5763933fa0439b618a9e4", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[\\w\\-]{10}\\.home2024\\.my\\.id(?:\\:(?:80|443))?[\\/\\\\]+2024" + }, + { + "hash": "992ea41703f7d92dcef8252ade9f7dd6c97843d47e176102228c6104a4feaa13", + "regex": "." + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+elcd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9996eb6d05851dbe24b3e171067ae44c73f7f81366b14124a2a94716b9ae2805", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxcid\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "04083a26bc9d03e21aee4f0055415cbbaa012d660fbddd6a4523541c251c74fb", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdfdfsy5t4tg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "10ee1b1ff540d26c122a9c66d0c75bff223c0442bdf9d8527151546ec202c2ac", + "regex": "." + }, + { + "hash": "c17d33a788a8b6b21cd50898ca9d49a2a5f9d1bb6f8b410c5deca3ced17322c3", + "regex": "(?i)^https?\\:\\/\\/attserver1\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "27ef019c64fe0b32356792ba5fc908da1e4c64b4f74849e424d99404c1dfe97c", + "regex": "(?i)^https?\\:\\/\\/mnbmnbmn456465\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c44d3a7e353d6481ac340b69727f12b4af41a06143ef5be6f2fa7c23e170d419", + "regex": "(?i)^https?\\:\\/\\/amazon\\.xofpcsnmem\\.com\\%E2\\%88\\%95qpnuia\\%E2\\%88\\%95tasakvvdc\\%E2\\%88\\%95ttrwkyqpme\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uslmdcug\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeeex\\.php(?:\\?|$)" + }, + { + "hash": "2f8120d5c4ea581347124bc0c08e3267e474870b5d660cf61e099e274793463d", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3b0600b43e217d863edc42899ca8f5e218bbce8baf038727b6923c41bdcefa09", + "regex": "(?i)^https?\\:\\/\\/weszx21kerve\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "725901ad2b73cbf01ae89f8919d834bb38d2b689b1cb85aaa490d2c9c038fb4e", + "regex": "(?i)^https?\\:\\/\\/terxe21fumexe\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "82b4e2863b7784832d833d70f8ae6751b772badac78be1706ef244e22b2339ea", + "regex": "(?i)^https?\\:\\/\\/jextes21grexs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d24026a4127dab447722161d455bbb62dcc1a7a146b5b905cd31e276801abd5b", + "regex": "(?i)^https?\\:\\/\\/weszx21kerve\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b67368db19e841bfaece79259e61cc02b449592efc6858064b83b997849d7c22", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "29fa6c447668fb44c170103237299cedc915f8eed966157e9e36c63c49557d3d", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9209bc7979f7592df18eeaca05dca04cb144b1d22ee14d5dfe8cc6c0586113c9", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "348ca5c113de8e75f31698f84a42b9a6835f93ee5760914c5c0d1d96ec6799d9", + "regex": "(?i)^https?\\:\\/\\/hotshottvideoonline\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "1b89571ba819cf8e7a8d04478b39bd58dc6c7b81ac92e8077dbb6991c5d1f277", + "regex": "(?i)^https?\\:\\/\\/luchex21juxes\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "99e6f4c3cb24e22e395f3d7d25c64f3557c8ef49bf2e7bef4eb7064e637cfda7", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d3aa366722837803812890d9b5d1082b5525ab11a672ba30ba95fbc4baf3dc8f", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0f915591b3ea823cb53c0fbca6726ac8921ae23492dc0faf2d7e4c6aea4fb74c", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "54fa7d30c2721fec28d60a1f052ac7dd4421cb619c0ea0bb87adff2e9a44eb6a", + "regex": "(?i)^https?\\:\\/\\/hotshottvideoonline\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "f341c4d745a6a6738aed0eab37d07876caea3927b513635ac4bd6ab3825ee21b", + "regex": "." + }, + { + "hash": "40520d9523bebe9c3e123f4b61a6acc1302255260886257a7de9990a91b0c62c", + "regex": "(?i)^https?\\:\\/\\/tyxezs21merxez\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9da3174050bc720c0e235513531935d2b14fa3e3cb4f2505a8598827fc943e30", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9f053a1f03fc0aed7724c83f0636ff6771fa9974e2ee1b49813ad1b0a5b1ba3c", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "48e8d6fe216ce2ec1bbc99babf8e9f3a3c0cd81a7f3910dd9ca2bfcf174c82fc", + "regex": "(?i)^https?\\:\\/\\/jexew21vexes\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1344e39af8faf0a0ef975073e818606da646fc289b656f42dfe96614535ca8be", + "regex": "(?i)^https?\\:\\/\\/vexzew21flexs\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "88486e0c79c36741d2e3d2952e48407f8db7036f6379f05fa071314207177506", + "regex": "(?i)^https?\\:\\/\\/fezxis21xezs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "89b4b902c4d20862233a52a3b3b51e12aa802a557756acdc788abb2fd1d00eee", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "79eecdc3e8f11a1c14f60f92381d0276b7a83802e7744165c0871152446c70b2", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "61c4bcab47d12c8447bcd6d2d79592a257d8676a5e45f8a19db0b39b1f117783", + "regex": "(?i)^https?\\:\\/\\/yamna321\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "1d2e4c6e80d4c827b8fbfe5fb23d2de57e2df88a3126dcd6da30782bf7f568f7", + "regex": "." + }, + { + "hash": "2b0d65f0901c5df77adab338373f46ddefef626083e08fb316c4e3ccb579e885", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "eb758b4e23059050c9e7f2e7f249b2c61747fdb752bc27641f3b3be9ce68c77e", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+acme\\-challenge(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5322493d1063d2a545c5da0fefd4326f858b2ba0fb9faeeb5e1d51aa51144d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\.php" + }, + { + "hash": "e87082b0d0adc390b04bc67e6875cc03f7c9cfb040e92408955d351608ec64cb", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "829376003cdb596d09776f43254979f4d497153dbfe780e898bf83714b3a8601", + "regex": "(?i)^https?\\:\\/\\/kexts21prexe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f5fe060c9e6b521bc22e4a476ccd34d9851de3769acae70b22f71ceab223412c", + "regex": "." + }, + { + "hash": "b427827349e20cb3e7df57146fd1ea39eb758db439ecc6f183fd5dd28a52f274", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodonrobloxwithnorobux\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2915a0c38171faff58416693d2505c3ce7ded3b3745ba40470e1c0ade2b69b71", + "regex": "." + }, + { + "hash": "ec1f77b5eae73ecd08222049b450be8ed408b62b9e3142cab6efa545cec13072", + "regex": "(?i)^https?\\:\\/\\/sedy4w76e45ry75er\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "2d45d891f170594fbca5fcdbbbb4380a21d83ca3ff09270dfef777f9ae6f3d4b", + "regex": "." + }, + { + "hash": "5f652a76abb86d671a7278924336fb4ab1bea76d4516104d9816ca932dffc46d", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "871e57c5a986e256c0e0d0ce083f42f6199defefb067c3fd3d36e837676378a3", + "regex": "(?i)^https?\\:\\/\\/jexew21vexes\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ec55e11f7a216f1d43c923743e1f08459a482424fb33efe928092a88388f25e7", + "regex": "." + }, + { + "hash": "1ea9169f4b57cc543fff18c0578d814c5716160dab85588c030d00b8b6fb4a66", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "c2b5c3759cacadbbe1ce719211c4fb5ecee1dfda1a57333328661925f7df54dd", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodonrobloxwithnorobux\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c0070a2f2452e8d504e01d49e48439b5bbe863725d2357351397b840ec01c70", + "regex": "(?i)^https?\\:\\/\\/kerxcve21plixe\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "68657e955f8b614bc434b6ebb750bf50652fa17edc9c1bf0fa7cd542bec029db", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "b73696e574cbc7b651c68853785a75beef25492aeecec936d9fb1d77e5f356b9", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "76f3cc9452858e570e1795ff20b653b13e5487ebb3f1095d21719ebf77c476e0", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "7427cb4a2804f48b8096d9423a249a5609968b8c101314d1fd7a4fedcb6ade50", + "regex": "(?i)^https?\\:\\/\\/hotshottvideoonline\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "5137452428513661ad2f2eadc1e33a5e403049b9f8e6d4339b67e4c4756152ca", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodonrobloxwithnorobux\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "aed546408ec74c5cbefc55c2b5d751f5a1db890d558ed17fa9c95a6d29b52162", + "regex": "." + }, + { + "hash": "505b9959051ec4c0a3fc93411abcd641e047ed8fdc5030078116c929abe295d9", + "regex": "." + }, + { + "hash": "bb593b34809c85258281c371e4658574820950a741548310f8788a83970a0185", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c4588d1530604862692762c267f6f6c1680d75c52137d2598dfa347ac2af598b", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+acme\\-challenge(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3b387980a8b1aa176f1c4278d002682da73a454620d9f8b2f480ec7714738ed3", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "23a3ff8dd050d0104f3c5a497fc2c42e941cf08f9769c1d0d990b8f406b36be1", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "299ce35e62ba0a844fa288c071e30a12aeeda1ce93651012ed274b7880038129", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "47db16d340ee00a3fd27bace83991ce3d813bc82f16df7e8a050dc974fbf5a77", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5997afa080d9b62eb9eb3bb44eaa7da4c5580fcbf75e6821186c02772c0fedc5", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a60115701390e655ec012ab0dea2a1486d11391ee2fe3cf1d1f94e9dd84c1a1b", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "584df0de258b7985a003cf772d9b75384789dddefd87f05b5f9e3003408eca73", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "92c5046dad590032849e581c90e8a431f81ea9a781d28e899de9c19e417ce950", + "regex": "(?i)^https?\\:\\/\\/weszx21kerve\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da85fbea9410bf2013cf427bce3199011c6d64510f5f7c254cfa310c2c66c1cc", + "regex": "." + }, + { + "hash": "86dd07ff71d4f1b782eec0738339a4a015acc969bfc06ab658cdc8e8ec50732b", + "regex": "(?i)^https?\\:\\/\\/vexzew21flexs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "40ff03c67bf02afb0aea59e30476be630b11bde0638a87335555f2f30d9154d5", + "regex": "(?i)^https?\\:\\/\\/fezxis21xezs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a27da89d98bf23bf7356a4c11530d6a5703f94b7288e249070e8cc9269127bb5", + "regex": "(?i)^https?\\:\\/\\/tyxezs21merxez\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "4f39933a5ae1d4c52fe8c47e9af939c443e2d029747799f3b00931f057cf95d6", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+lxwtbikq\\.php(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d6bf86d7bcb76dfda8f6eb21c97af76da25f6e4625aab88c8bfe2e5db4731700", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "6da16d293bfb20fc49c5dc077284a38303050fb10f0076be7e32f0d86c951712", + "regex": "." + }, + { + "hash": "61c3c868ac9f9eb89b801d1e5d2f3a4605f948c628d413edbc0cdfda5dbbc613", + "regex": "(?i)^https?\\:\\/\\/terxe21fumexe\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "15acef60332e8fe6aaad00e1b58bd8ce4654458dc0730ee1ed73925afb4f531b", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2ca2c817f682932b1f0a9067fda77d64d977d91fb59ce9cecaad7a0c88e291f6", + "regex": "(?i)^https?\\:\\/\\/jexew21vexes\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0d11312d029883f22ef989a0f4afe6215008fd14c53dddf492a48cd328d57511", + "regex": "(?i)^https?\\:\\/\\/terxe21fumexe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bd3e3eddaed5f50ef5d1abc7a3de1112f0cf8d611dc3d5681b4cfed60654b41b", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "72a4a749d5b73c2f7f2ec171b266930bf475d1161d7b9665dbb90bf3908be7d3", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "39692d13941fa775f8f1e04a3f36658ce55e5a589f54f07125031510840f048e", + "regex": "(?i)^https?\\:\\/\\/hotshottvideoonline\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "b23ea97eb5a71ef6c26d5bc1c5ca96ca2d546eed6cccdaab64956704e5ea0e93", + "regex": "." + }, + { + "hash": "e78dd5d20b72049d62be883952582717843b95e24da6fd6840ec5370f7db24a2", + "regex": "(?i)^https?\\:\\/\\/kerxcve21plixe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "04696308d6f5b7244f222fb528937bbe649f05177a01bb7eca36b5c7a60ac06d", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "05d5151bb7136581232d469cee009fa21c24a14f3349a803a1430e6696ce4c21", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6f6e3d5438a0223a72aa783f575c61a345619637656c9050a86a84ad18e145a7", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "622d1b6c30a6c13e5990e08c2a3ff5f5cf49eaf22aa238a3260e7f5764f612f9", + "regex": "(?i)^https?\\:\\/\\/fezxis21xezs\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "dd5da49f1815c22f9a3032ac2815491ec4024e74a6fbd04f59a048152fc2b3e1", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7496bc1ec534a5d8f853b4f9754e8007f91c1c1366cfd7e75d50e88327b86260", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "573f7a0dface962a7ef3f44f0db87a35b473c597badb8ac1971e88ac7b15e3cd", + "regex": "." + }, + { + "hash": "c42f98fd1742f3331bb8904dad0f33597a81cb7258f7a20a394967b72f438e36", + "regex": "(?i)^https?\\:\\/\\/cexez21westaze\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "7320e83dde70ad96b24e5806f24daeafc68a2fff15314589f7e3af96db060ad6", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "efa4d52b2ec7ce19c49336a789d83c9c951d998f2a1e61f3ed6f6807d7374400", + "regex": "(?i)^https?\\:\\/\\/pub\\-a5eb555c80d3424caa3d88473d6a6758\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fa8af14173fe9e3ecf5e78422112fb5908862ed00ba1beba41e159f675e18c58", + "regex": "(?i)^https?\\:\\/\\/texres21rexez\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "604b9ed7547bf3c1bea3e1adb4b1942ae8dfb756ae90303090316476e3800245", + "regex": "(?i)^https?\\:\\/\\/vcxv2xz1sdz2\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "20b6d0e6aab82929deb4540c85a24af2a95effbc129f614f58ce7971811aa391", + "regex": "(?i)^https?\\:\\/\\/pexce21tips\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "153cdb360f3042119500bce49346970d2c6c0793e7f9bdd676d278ea82a93710", + "regex": "(?i)^https?\\:\\/\\/luchex21juxes\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "d2edda34aca229aee4a9f725a2ae56ec8fc4dc420a2f668d457fdba14e2bce1c", + "regex": "." + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ga34i0(?:\\?|$)" + }, + { + "hash": "dc056b92b43f0d1c89a03e3f81916d48cf06745f9f73e2e5356e95762b276a90", + "regex": "." + }, + { + "hash": "31a56e88251ebff634e4cfe809014cd92d65e1ebf8e8d0a8b04ffdf2f65a9434", + "regex": "(?i)^https?\\:\\/\\/kerxcve21plixe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba51cf19695fb72cfa01683ea3d2345f35f701a9b408aeb3db7a48d6d58bd62a", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "17ca5ef6949c8221b630102160faf037c58b1ef38b4eec6dbf2b6c3c93ee2e39", + "regex": "(?i)^https?\\:\\/\\/terxe21fumexe\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1e171d9be4eaf31023ea06677faf7533ff03d7b5b5113ed809f9793b196b73fc", + "regex": "(?i)^https?\\:\\/\\/jexew21vexes\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f8f8780c91551fee72f228d36d97a2a7f1614cc2a8a4a70744581f4fe2ff9693", + "regex": "(?i)^https?\\:\\/\\/tyxezs21merxez\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "29fada35cfca400e57d283c0084a3e6e6519c672ad42e60a248e146a172cabb3", + "regex": "." + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "dc7555327c72a1dd0db32c1223b8fe0ba6080018b5c7aec232197b7d1e71d8e7", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8c8514c5675400a7fbf6caa411d5ee780cd320485909ef830ecefd23269b932b", + "regex": "." + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "2d496c271bdaeba525a2c07fb808ac229bad13dc8bec095cd358231818d1b33a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.rF7twtH5sqf2EB9GpLuMXzE9wc\\-2FuPDCKhFLDW\\-2B64hPEfkd1h1HoI1eN9O\\-2FQoXczRQGqU6rW9mkNhe\\-2BMZRHSmwbsXOnf7sy7JUGrhVCsQ1jk\\-3DrlMw_OEO3HRIZ3eedLymwLhvJt9sqs3j4T3CqpVCO9A0ZKpkA1IwWRdEpY0PId\\-2BtgPWAj4qzQS\\-2FOKaK3nytdizYZxOqev6AI3zfoaksMmt614dg69fYWZRJq\\-2FoIjsLWdzPjW9I0hbrDH\\-2BsPLSJYusammpb6glMfQ0gElAJXxiFDrNoVn7ETyPARUQ6lmU04oHIUUkMG8bGSHwVE9fFb3ABdxmz1jsdpMGEYiOk\\-2FEZloV59uNJ7Q9gXNdmrZ\\-2FkCqJYc9\\-2F4\\-2B\\-2BclostPHHzA77q7Ag5TIg\\-3D\\-3D" + }, + { + "hash": "c88904773b6c243473d08cb24c0bdb48a52713ea8c0c4dab4908f6e16d5ee7f3", + "regex": "(?i)^https?\\:\\/\\/jexts21nexes\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9b680f6dc8533a7c47eb683889fe21b5be044204fdfc02ec40de32d6d5a98023", + "regex": "." + }, + { + "hash": "e536b6bffb151f51cb6f4e9dd12bbf43cb7da35b05cc32905f99d8917b1d6821", + "regex": "(?i)^https?\\:\\/\\/cexez21westaze\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a9fe931f2db8d19e91c07c85168d923f60bd6bbaea52fea7e864f8f3a84db389", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b8ae3c79398eee847960eff492d5a206ae6c1ca6a05cfecc9a9a63e0df7f9a7e", + "regex": "." + }, + { + "hash": "85243d3ffcb4480da2bcfdf4a41f4bfced87ab29fdcc1f8cdefb406aef9aa858", + "regex": "(?i)^https?\\:\\/\\/kexts21prexe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "7b6cf2cbd6dcea227546ea4ac33fd3a6aa5656c28562d236983add8e2aea66a6", + "regex": "(?i)^https?\\:\\/\\/fezxis21xezs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "4a7fb7846708397501b2fd98ca1b76d9db58422079d476f931f0a95c1cef5cce", + "regex": "(?i)^https?\\:\\/\\/hexzw21perxt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7421dcb95c418bf8f0d4f4b497488272a33cd294bcf360f360c06c2a66593f00", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1d8c42d8b0be2624e9f21731c0cef5d39a4e8117a9039660b086f3d9403477d0", + "regex": "(?i)^https?\\:\\/\\/jextes21grexs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9690967fac0ff447494ac7c3c4aa32975667bcab466379572a4516dde6868ecb", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodonrobloxwithnorobux\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5ce8aa822d3a8e564b55020652b41fa35bc26c6a68f22c24ff91d1d1758120e2", + "regex": "(?i)^https?\\:\\/\\/yexzq21bluexe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0e6169bc1e431aa55f499638a2bfe028df2c60a7770e00fbdfd4734aca13bbf7", + "regex": "." + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b8db8aaf7822a3039f5f0d77074dea669c2d82659c626cc782541c6ea04986f", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "73f9b1db747e3b8b8622e25c9052aeb9c76e70c32f18b76dab696bf4bf0fe854", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8e3f72133551768e39ed76ca6f46b42f07572174cb7a83b340c2dc43cb91bd6f", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9673444062c6d5eba8cda2ca21d8ef2c8842d4621c484db6a2552fe06089093c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_t[\\/\\\\]+c[\\/\\\\]+A1020005\\-18078E0EE497B674\\-E5563209\\?l\\=AACskRglH38ZKogpJiUOCu7oVO50Bl1LU3wL6RfRhbQC7vir2steHUCqAs942\\%2BwzLxwzpaHEwJKK468qC1zfgN\\%2FnzdYqyJgPlIGgeYGKv582\\%2BtgbXp9KA2\\%2FQN28NQaI21LZ9jRumHQ3zaP4ki5oxzABR5xzbFhPqMiqTrllRHuTth0\\%2B5Ca3UY2mvpWoX6I\\%2FyMy5380\\%2B3eD07b8\\%2FCCkA\\%3D\\&c\\=AAC3ZMagec2BobhtI\\%2FDMoj3yEoDtADhkWYY2fKQ4D3MJNxO6DRFf3Pp3iHVUbInBca31Ro2mPISVD8qKm3u3Z4RfxRzvdRVX\\%2FhZcY0xIlLsQVCAhZ7VNbZ9\\%2FrddMx31FHe5dB36Gb88mbLg0PBcW8047dblY\\%2BykiyzK0uHSoxscyMO\\%2FbpR5RWxl7TI7JoLjvLswT\\%2BaHoH42tMoWfXivXwhVpHVlC3p0DqppMZMNQcow\\%2FuoSQWWNepA6gjOk\\%2FdzYRyI7sAC\\%2BrOBKdmkCPhX8\\%2FzQWlaD9FCPuC2jvQUMMd1w99q3Am7qK5O\\%2FgPnt1Fq2fnIp2r3rf48P5SHyjImu0hrDyEdpJRnAU5DlAQ3h2V0L\\%2FaXFC\\%2FFW\\%2F0dM0\\%2FEoXTlq7I\\%2BhuBy5WH\\%2FwlK\\%2FE4BbjzuTI\\%2B8\\%2BDnCS8Vqoe\\%2F28QwcVxgR7Iy35mUo16jV1KGHPN5Nb637pmu2SqTN1bx263ksbDENaYGehpKwYKH632coTW5CiNzPo533rlD6eu6\\%2BT3pOY4DAy3Cb5rMAoW3bNOqKrGK9jrIcjVz66p7DFF26ZsiPk175wmlvKrW6aoFRhywoSRjbna4adyaIvGSt01IHa4o\\%3D$" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "c4e60a412deccd4dacb53e197d8fff219d27be9ec41c733d900f0de558edff62", + "regex": "." + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "91f5aeae627d51d22d5132b804ca7a2041baa68021d1580d28db992e7b5b14e7", + "regex": "(?i)^https?\\:\\/\\/sedy4w76e45ry75er\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ac146f0dec9c902f029132a1b78e9b683ab9afc13fe461afd12a9fdf976aeb12", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "ed4b37d0bf76d46bf2c7f49719daf244afc2d2251569a9ac0fdfa595fa8bebed", + "regex": "(?i)^https?\\:\\/\\/kexts21prexe\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8f4331ebe7c2e93c9dba820b1686ab9b581dcfbe229ade98ad152049a1e1f1cc", + "regex": "." + }, + { + "hash": "9832d88f6e6603d438d1a9f6411ad4f1da55a7ee54d0124c6e24430db08a136c", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "fb5cfa67761a87d9aa3c60aff80e4154b9e40ff504b8a0adb397f325d35207a3", + "regex": "(?i)^https?\\:\\/\\/pexes21gerxe\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0007fc3c95de11686899f0f8b15b89441327dc0a0ff9c431e2e3cc0671429474", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "b5322493d1063d2a545c5da0fefd4326f858b2ba0fb9faeeb5e1d51aa51144d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "942543982b2a056444817fd8d21c005b4fe69c9cb4a9a3af030ce10c1a329548", + "regex": "." + }, + { + "hash": "058215367b12a86714df8dbd0f6a4df6d6cf058a32c8a3bfdc6dfe547018760e", + "regex": "(?i)^https?\\:\\/\\/weszx21kerve\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2fd677f4474d874dfbeff2090b39a46779518c618e0a9fb718fbac84fdffd539", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7ccfacd2f8fbcec269d304516c551430e17e2d0385b5cc6f1f1ea535cda9fbd8", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f1bbf475a526e1ec5ff6bf413b47100e9a12e7f992911f4aa15684d06bf8baea", + "regex": "." + }, + { + "hash": "835c5a04543a39cd0b5b232c291a763650c6d8aa4e5b7cc64f097de9429f8442", + "regex": "(?i)^https?\\:\\/\\/kerxcve21plixe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e0fbdcfd26ebf464cb32a9890f95c0621e1a87cf98b35b6c537470df64689cb8", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "99f953f6628355012cf2fb1fe1752d899f514dd0357338c1559146fd7243131a", + "regex": "(?i)^https?\\:\\/\\/terxe21fumexe\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "226a728bb0143aec171fce093d9069aacaecc17281bb4f8c3ca2ca08d2abc043", + "regex": "(?i)^https?\\:\\/\\/steampromotions\\.3utilities\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "3e7080de43b04477fc319c3f12dd87891a505ba89a4d09b2411418387db934b6", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8afaef8f725e9ce7de12180d15efe5fde4961c124d98f3f461f445c5d0754893", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "51eed9abf252f670090f0172758474bf88b0da7a0f4fcc6592862094519d366c", + "regex": "(?i)^https?\\:\\/\\/weszx21kerve\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "d278ae2d75977c5c1edcfd0c749c23f7f06c3d1ae6c56a00615ebc8437b9b110", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "581ce304f2af222bc49fe9cf0e7321204c594dc89779384264bfcbdd592eb5fc", + "regex": "(?i)^https?\\:\\/\\/jexew21vexes\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6ab099694c5b061550e52455f3d1b3016557e9b44789fe88c9aefcf6e4f50b6f", + "regex": "(?i)^https?\\:\\/\\/vexzew21flexs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a0fa3ad299469d2edb7d8c6a8f82797b0f927b0f33ed363df94173d755a63e06", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3c64ea7848190d2fc14dbb5f117d63f6487d78852a302b52ebbceb8e6f2a70f4", + "regex": "." + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "2b3415a82eec5214e36fd2d4f341d2f1ee27b113eb7673d09124d6cb2bd960a1", + "regex": "." + }, + { + "hash": "4413a95fb5c40f5a48f5cd2027fedfeaeddd95772c64ac1d6b48ba873930c0a2", + "regex": "(?i)^https?\\:\\/\\/yexzq21bluexe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b6c3ed7da982daf7031fabba0c47dfc7fa2d910e3a4166fbb4b559365eb0e4f1", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "c22c9daf3151bc69ec836760f122670f5b0b1c3d247f3c143b2b65453af03e6a", + "regex": "." + }, + { + "hash": "6950291417729553d2acdb804e587c621d4cbdee45da24f356869bb464070111", + "regex": "(?i)^https?\\:\\/\\/terxe21fumexe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "d8c46e6cc7cf44c6f2210fc9691cf5cc6401e03f6aab784af3a104df345863cc", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:\\?|$)" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "fedf39f1be2b195a972e1bf9bcb0fc0dce26f420a6ebb191ed946578bdb1a488", + "regex": "." + }, + { + "hash": "0a3debb7940a1b82816c7b2c2f598061bb6c64777b4720e21af2d4b7911f44bb", + "regex": "(?i)^https?\\:\\/\\/pexes21gerxe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4046de8222526193fae9c6269bcb4d3991926b8ed7f918d369952554b65503a0", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1dd85cce7d13a03e058f3c03e42c5457aa24aaeb782fa9aa3a2b966541db9390", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b4d9dd938f6fbe18d61f9f2260451c8800c6c2c66ab1ad66eda034bab4dc895b", + "regex": "(?i)^https?\\:\\/\\/vexzew21flexs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "75ca88c496e8ed0dcc8718c92355945b21a109d9015e59b695a785e975fc1b32", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "d1575a277a842a8fd54618561c225eec1868243eaabb145f2313878f58a0e605", + "regex": "(?i)^https?\\:\\/\\/pexes21gerxe\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9d4054539cab6da0c81d1fdcb03f7996d2b31dfe1115b1ed5156504da2fbe17b", + "regex": "(?i)^https?\\:\\/\\/vcxv2xz1sdz2\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0cbab5bf3da9aad66f0dc4ac0edca7f51a3d904bc199bb2207102fa23fe6f8ba", + "regex": "." + }, + { + "hash": "0bd28134e38da870eb43e0ef042489c6e82c34170e356cad27cc71fe3842584b", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ca71eeceac176ccd09370c8fc78114493d18edd037b47dd372a369f8b1355552", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5a89836fa58e033a5654aa7d52be805c272ffc5a99baaf4de71059f566ad7395", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "3db21706278bcdd1427310194d9d5d7036e14cc5fb74cfa0f10999f2e21671cf", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1afb82e8ba3472579674d12e1857ea028f800195ac967b9260f5854de1a62ac4", + "regex": "(?i)^https?\\:\\/\\/kexts21prexe\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b6c1480384681ce89392daf3b233b448dec0e0afba799aefaba0e6418794e6e8", + "regex": "(?i)^https?\\:\\/\\/hexzw21perxt\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "dd182a76e1f784f141da3d44698375bca77d8a7f034ed1bbca10f700cb096763", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "14b5199fd5fd5b9eacdc18ed6e0527e055aae20fd908ee983e4bad5f43d05d81", + "regex": "(?i)^https?\\:\\/\\/yexzq21bluexe\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "0d1c904d1514a9558bc1ae487e95678d4e7b0c8b968f6e5a9a85b55ab5111a8e", + "regex": "(?i)^https?\\:\\/\\/weszx21kerve\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.s[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "fc2070dbb3a441c537b1e20d34b657e1514e9fef3b6d1b3b9db517c437e53eb8", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a024d6ea26825372f4a8258697b477f6287073ff7937afb71b9270c7ef8c3031", + "regex": "." + }, + { + "hash": "fcc0499b6be8cf0e2c0e828f388c643d73056d77438464631a62a8757511d31c", + "regex": "(?i)^https?\\:\\/\\/vexzew21flexs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "865edabf55d0274b221dc19fef0466d7bc4d30240c5720f18c1a0575fcce2345", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e5b8677abb19c65bb34bc2d2f31a4a9386f2a31c1852958f6f48f231c310cba5", + "regex": "(?i)^https?\\:\\/\\/vcxv2xz1sdz2\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "28bf414f613e72a5bea095fc6c2cd414564dd347f1af7b4e888be430f8b35b3c", + "regex": "." + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "6f67214f997339ba008dbf7c0d1f3d1023e578a9661789fb40364e5c384b15b2", + "regex": "(?i)^https?\\:\\/\\/terxe21fumexe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9145689e19e488a85f40f2b66dedf80b84114ebacf085bcd5c0ac7d88a921887", + "regex": "." + }, + { + "hash": "19a99e42a2743b8f012e38e284fb1fe44f0137e21a1a1bf18b9093cf5adfbf3f", + "regex": "(?i)^https?\\:\\/\\/pexce21tips\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "4bb1766d61956f6ac6ac88fb671da5947326b3949c0e56c889977a6304a91a9f", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "576cb2e1c2d7ba690024c19c4b560617f8c90c8ba017bff536844e902bf19e32", + "regex": "(?i)^https?\\:\\/\\/pexce21tips\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bb1ee4caec60b79bd902b26887c8c3767e8c9b8ea81c514d06b4dab295247246", + "regex": "." + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?web1331[0-9]+\\.cweb06\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+fdsjfklsdbhfs" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "4fbfc0bea5e3dbd1b157d4ea179f6006192a61e5c8b211701af6659838e11c05", + "regex": "." + }, + { + "hash": "1bfe387ab4e050af22cb814af9cc223545c4ec2de55e02714e9edf18ee044e9e", + "regex": "." + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "9fa33d83064902ffa43aff792eb8a6bfa67231de107564661d4cd209439e030b", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:\\?|$)" + }, + { + "hash": "4790059446d9262951aba218d7a5f77f28763e9c9fa3e1144bc253ba9808ca5d", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8584ca847a7dbafed71e5b21a3f52e0c677ab3996ca37de9da18f9e264c0cc7c", + "regex": "(?i)^https?\\:\\/\\/jextes21grexs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aokycs(?:\\?|$)" + }, + { + "hash": "78a7ad32d9e503b62a7968fbcc78715d3374d97ba09af60c84e788d2fd0e88e6", + "regex": "(?i)^https?\\:\\/\\/hexzw21perxt\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f259ff63d94d818a678b27c64117e61c39a29bc2c52e3a74d2dd58c2008332f5", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c39eb0180d2b1f4590a07b458abb46f0ce1722467165c3740eb9cfc47371e46e", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:\\?|$)" + }, + { + "hash": "58e36e7b59747390e23a798c2d8579cfa5f03f9056a5f6248ee8be72b987404c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+BAAABkJqK74AAAAAAAAAA8mAoAoAAYKI9coAAAAAACzJOABnNMHDl9E9CMeUR9q3Az49VPe5uwApScU[\\/\\\\]+0[\\/\\\\]+nyprooesoDBFrFZDp0Vh6Q[\\/\\\\]+aHR0cHM6Ly9ibHVld2luLmZvcm1zdGFjay5jb20vZm9ybXMvbmV3Zm9ybTFfY29weQ(?:\\?|$)" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "d3324217b2c5d5b9fa0e80bb8a4c689ca5ed37cb74964933d4b155f6edf1e516", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeeex\\.php(?:\\?|$)" + }, + { + "hash": "4ee7f860b6e57b4c9edc742ce7e25846dde5b81806a46f5455ac175b047e2e4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verifying_email[\\/\\\\]+bapi[\\/\\\\]+composite[\\/\\\\]+v1[\\/\\\\]+private[\\/\\\\]+message[\\/\\\\]+view_bEt\\=eyJhbGciOiJIUzI1NiJ9\\.eyJjdCI6ImEiLCJiIjoiMTAwNDU1MDAyOCIsInIiOiJodHRwczovL2FwcC5iaW5hbmNlLmNvbS9lbi9teS9zZXR0aW5ncy9wcm9maWxlP19kcD1MM2RsWW5acFpYY3ZkMlZpZG1sbGR6OTBlWEJsUFdSb" + }, + { + "hash": "c67d7559c79850a2532de35045b1bfd2df1d7ac845ac87b227db8a0cee71691f", + "regex": "(?i)^https?\\:\\/\\/hexzw21perxt\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "451e6be1ae3cd774b7a2dcf2b6491fac06eae90d101122d0c0cad68aebcac9c9", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+lxwtbikq\\.php(?:\\?|$)" + }, + { + "hash": "05d242dc3eee991bda58992fb796ff4d3bccb9756437f3a48e6c7dae994f27bd", + "regex": "(?i)^https?\\:\\/\\/luchex21juxes\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c0e0d1d6ded49bb372641b65e65e1353d34b3caab775d91b2038e9d61888817f", + "regex": "(?i)^https?\\:\\/\\/dlj8\\.cc(?:\\:(?:80|443))?[\\/\\\\]+aW(?:\\?|$)" + }, + { + "hash": "5fc55bdc2b071eb9a686c7423d75236e7f994b0d50600584adeb764141f6cfc8", + "regex": "(?i)^https?\\:\\/\\/pub\\-31c4404de50241879588ef6a587cd1ac\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5c618e1d71fe13948e3398bea66fae1492449c5cbd48893423b41a7e416149b1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fnrgc\\.com\\%E2\\%88\\%95egbzzjiiky\\%E2\\%88\\%95mtbaaje\\%E2\\%88\\%95njmcdlxk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bmmhr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7fdd5f3f55b7e91d0d704fc053543301d2a2a0e8696246dcb53c3eeffe40e5fc", + "regex": "(?i)^https?\\:\\/\\/jexts21nexes\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "89f8475b897da2e67499e7b58d50c751036a55d43ed617b7c8ea337c8431599a", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7ac58adeb575fbc6267915c07bef1681716a0135a2fcf618ab5bf31460b5ad90", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "09a7b78c9ff5b45ffb23c260071e0a95f6d90da3c1396f5af7210d2cbbfbca53", + "regex": "(?i)^https?\\:\\/\\/yexzq21bluexe\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f574c64946cff98de8b94271a8864147cf853b4a99954ff92b99c03a58e6cc91", + "regex": "(?i)^https?\\:\\/\\/weszx21kerve\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "514905e3676b78152e6ea7365e4bdd606f0b44ae132037800d4db52891fe0fbf", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2f2cb350bdc8ae854d9763f48823e120beba7e381a0dfe363fc36e3cca5a3152", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodonrobloxwithnorobux\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "70385de96cf31a516f028e6f71353b51b779656d4b357cdb6f549ed45e0ad5df", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "679997996873df1ee1c506cac36ec8b0bc3b955253a9dc96f340cfbe8e088de3", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8e3fc079a646e8ed298866a779f5f3b43d3e5c9bfbedc06a1b094110146f447a", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "869474271c503df1f5e9243c813296540dc05cad593d4fa4ffa22239b05d2d82", + "regex": "(?i)^https?\\:\\/\\/pub\\-bc0040c28f4a4a00afc0df7ae9f87e9f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cafdffc63ce9ab7679e547623c113ffed8a719495eac80ffebfbaf4261040184", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "496e3fdb5a8d5132b1bdb40438422d23ed59e3800ca228a955b9493c37957a16", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e2b15548b97008a19f40ae8b14e7104a02819171dc4bbfec130a5ecf90cf017a", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "49fdd98cc1504a295d855d78dece768330ffe47313f8a61e6358489ee11ad7c2", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49ef4dd3b488b022ef43d82197b9c9e672db02ab277f0107771c40d22c48e557", + "regex": "." + }, + { + "hash": "d4cbc35d0c4f7f8a5f36768d8db66e26a3ab2804ab0670a2ef9a3ff4a89ccc2a", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e0224ed780f82197f85936825debd66602304bd4259f2dcb62bc82f2ef225aeb", + "regex": "." + }, + { + "hash": "65abb42997283fda24feaa41da74eee54e03435649f941388a65b0ab15b3d783", + "regex": "(?i)^https?\\:\\/\\/tyxezs21merxez\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f5bb95713de0fad79901536af339ee343390c9723017d62eca8f123e0ae3b14d", + "regex": "." + }, + { + "hash": "c148b90d53dd7a58b81dcbcdfd9f2e79c5271503cef86c6d87421a8694909674", + "regex": "(?i)^https?\\:\\/\\/vexzew21flexs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "25034815ebb7479142c5472764add27bc9198f3993d08ceb822df3aae92fd6c6", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7489c8451ab5950e5f382e56769325c231cb1e0d9ffa7959f5333104b15b6c08", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "451e558281a0af7de99a5c21f34347008008daf0d6e983d6d147434c703c5b38", + "regex": "(?i)^https?\\:\\/\\/texres21rexez\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "51b811b03f70c4110f28438822abbae510641761a0df8393cd1b95e84df3984c", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "21a4fb24d75b295362a4587d18ed6ffe52ada86d5b561be0540c84ea31804ae4", + "regex": "(?i)^https?\\:\\/\\/vcxv2xz1sdz2\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "0e5e5bb72867d0813f017be0dff4c4e070ac76dcf43e66b0b49f81d3272a3830", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "93995d4b0c1b633f97e26a922d7563092f6182ae77402353f26201a94f232717", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f26c06409a123a659bb705a024897a6fbb5372652d99a0f68618f2aa3a4352c8", + "regex": "." + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "cfddf167a85a07cd640b31060832ccf2e2ea81a2c668fbf2a233260fc1525787", + "regex": "(?i)^https?\\:\\/\\/hexzw21perxt\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a996fc1724f7ed819be3671485fc30cc95f03f93a91af1323b45f22f9ebc5398", + "regex": "(?i)^https?\\:\\/\\/kerxcve21plixe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "cc64a03c125fec605c84255a33a03f1ab0ca3e14e83f09409ebec95e86bef4e0", + "regex": "(?i)^https?\\:\\/\\/sedy4w76e45ry75er\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8fb8e5aa5199d0012877b85f32c673adef24355bf24f0affe67624e75da0324", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "7b3c7acccfc21c1fdf6221db6826d95c3ffffc853fe7e7af317a5535e6bd134f", + "regex": "(?i)^https?\\:\\/\\/cexez21westaze\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1f36049e470c193849084c19ccc4fd382d825fcb444d3e44b494017a8b5b6799", + "regex": "(?i)^https?\\:\\/\\/kerxcve21plixe\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "827faf48436d6cc26399dde0e5cbb28e2b9abecd845813ec0378762463872cbb", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "8aa088c20609d7675e5f0eb9cf625728ee221e9f06f73e77ed8a4bd894608170", + "regex": "(?i)^https?\\:\\/\\/hotshottvideoonline\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b196d95b0d37eee84cce5b7bfe7701d44b7076ae58986b35b78abf4aba2dd750", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c9ebc4518458a296622f56725cf61df6d2f7a51d90f9721a8d02bbb708edcfdd", + "regex": "." + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e8759abf92123c4f79ebfb44076aed319bfeed111d0877d3d51c41100320617b", + "regex": "(?i)^https?\\:\\/\\/yexzq21bluexe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ac6b388f109d5b2a32fc3767c0fee0112615eb70ff1b921f4809ba4441d766ed", + "regex": "." + }, + { + "hash": "d9a05349e876ac47a0afbf56679a7e023514c9cfd6e7915535526beb5bd0cf48", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "da03ad9dff05971965711f90d85872435c8426a4b822dd9f0fd23be8282dcfb6", + "regex": "(?i)^https?\\:\\/\\/jexew21vexes\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ab4919094b5739d90a1d03f17927597c2cc66f384b65352025d32261358a2b1d", + "regex": "(?i)^https?\\:\\/\\/vcxv2xz1sdz2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "10ee9dc2ec1accc71764a359c83d37d1c94755e4d9bfc22df27d510902f58856", + "regex": "(?i)^https?\\:\\/\\/pexes21gerxe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c9300ee7bf0fe1fc2715d39c1bfe1e0c3c69e280dc6a3e5ffe51c0796e2e21e7", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a45c05d63209ac60932549bbe641c7658303c1938400c1588c2cfa57a61797a4", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "75255a11af09c5ee9b031ffa293aa587dc45502be0ce329f24780f3842c69a96", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "39a3c837e9d5c3cf3fa820ab85c1f4500cbbf8666182a744833ae3a0f5fca12c", + "regex": "." + }, + { + "hash": "3380ffe6bd51dccc861fe81ba2bc1dab32d32fee6423cb212f97bed9b7e2792e", + "regex": "." + }, + { + "hash": "602bfa2ead089ade16a3fcd98af5b915cfd32dbfcb88286d58ef47434c1aed63", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "23b352a4b58a21b8d5781441165f1d5f4d91783259cd20436d617138f50f5b7f", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "36fd4cefcd34ec799af89e31dacb35f2194dd5db53daaa1a803f398195accc71", + "regex": "." + }, + { + "hash": "3e7de0d761b572cb53132743ec6d1caf9b37275d0dcc7d48a20f610aef1ca108", + "regex": "(?i)^https?\\:\\/\\/jexew21vexes\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e0a37cec60d71a412b4c48cfea874d9ffed361890153aeb9edec9ca176475f33", + "regex": "(?i)^https?\\:\\/\\/luchex21juxes\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "44297c1a66d51e3848c9775c82e98a3b6739c0b90749f1cec2f28df4252a2add", + "regex": "(?i)^https?\\:\\/\\/hotshottvideoonline\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0d5b59520a994be99cfc9fbb4ffe92833f4217ba63182056dcebf0fa95c0b291", + "regex": "(?i)^https?\\:\\/\\/lesterattmail\\-106706\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "e334f5790f7a6cd68f700b3639702a1de4b640bf662cf600a4c3bbcbff4d3252", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "3389697a55f40cb04d4d4f452d21644524902dd02dba7a6fed0d00eaf385426e", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+lxwtbikq\\.php(?:\\?|$)" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "ff047fcbddf373fd85a46fd4a24fd2ab42302155ad23273bdd92c2d443c641f1", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cecc54be5a954d0e447f9ade43c4f49ef4edf39ca4941d946c2459740dfe3312", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "014a49e4518567693465bf6426a6e2c886582dd74ab93adefed219c2ec50befc", + "regex": "(?i)^https?\\:\\/\\/terxe21fumexe\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9443bba0db80f9e072422039fda2d81ab45708f03ef9e76ec12b12ddfe732db0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+in(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+lxwtbikq\\.php(?:\\?|$)" + }, + { + "hash": "223c057b80829ad5fdefece493fbac0e7dade0b222b7665887ff562c7132e08b", + "regex": "." + }, + { + "hash": "58e36e7b59747390e23a798c2d8579cfa5f03f9056a5f6248ee8be72b987404c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+BAAABkJqK74AAAAAAAAAA8mAoAoAAYKI9coAAAAAACzJOABnNMHDl9E9CMeUR9q3Az49VPe5uwApScU[\\/\\\\]+0[\\/\\\\]+nyprooesoDBFrFZDp0Vh6Q[\\/\\\\]+aHR0cHM6Ly9ibHVld2luLmZvcm1zdGFjay5jb20vZm9ybXMvbmV3Zm9ybTFfY29weQ\\?b\\=2$" + }, + { + "hash": "3c048b1ffdeaa572bcc0e564bcd0a77d693ae9ceb5418b074c6aeac1a68956c7", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0833cf7768079c64c0d3a84e60ebc38218fc6b75682b6bef8085dcd1dc794940", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "779a308e590a0c4707bbd2cabb53f9f02afa7f3492ef5a3e1326b0c0300b4685", + "regex": "(?i)^https?\\:\\/\\/pexes21gerxe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8eab5605511edfb5912f64de136eae982bcf835bb4ca3048742d50dbc83a1b65", + "regex": "(?i)^https?\\:\\/\\/texres21rexez\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "92cee59cc5509c6ef5b69cdaec70147c20fc4573f34123867f12d980082cf540", + "regex": "." + }, + { + "hash": "d123d199cc79321b462486bd1485f6ac3c96eeefa4e140614e7ad96e6784cb57", + "regex": "." + }, + { + "hash": "276b1a9f1e5626d05a8ff817f1af217336b76f7d02db8fb44e998de0b6b9f30b", + "regex": "." + }, + { + "hash": "28219f13bdafa214ae04e17c2d07594da767bfc529ff17d5d73cef75b5335533", + "regex": "." + }, + { + "hash": "a64052fe45f31d7542dd552dee66bf02085ce6c0f3e2cbd596087308ee266f53", + "regex": "." + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "9bb826ba3a3a47b862aa6704cf004f8d59455721d107a2f82f469410eeb1990f", + "regex": "(?i)^https?\\:\\/\\/pexes21gerxe\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7386aba7c4145f552b015d3f648d0fad038d07168ebc1292f725ae569e80117a", + "regex": "(?i)^https?\\:\\/\\/sedy4w76e45ry75er\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d47aafd959792ae7727c16b32f6d67e4b89e6c60c7960577307ecfb6bc161f36", + "regex": "(?i)^https?\\:\\/\\/luchex21juxes\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "49c0de7a1481c1ab5662923e25bcab4f86529d08a0a45c47aff0c38ddf506ee8", + "regex": "(?i)^https?\\:\\/\\/pexes21gerxe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bd166d329b37f2fedddbb27c76c0253742a72628b14e8459911e77d023aa7c6c", + "regex": "." + }, + { + "hash": "a9be68fa7c2fc24d7ff2d2ae4e2ac480b63206ec3ed1983a57380f5e064f5659", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin[\\/\\\\]+wp\\-adminIB[\\/\\\\]+inde2\\.html(?:\\?|$)" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "6f4dbc360eab6de0e4aacca07470d5714581c2d5521db79867452b3d02c3cccf", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "a30a08a590ae419a516be487889cd7ef67be5c0bf18e8e561345af3360441d66", + "regex": "." + }, + { + "hash": "10eeb40c54a6a8a8524aef2d61579c4f58a2d1b4f4991f0158582de7e6a0dd61", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+orange" + }, + { + "hash": "d7cd5e76deb420e90d347323712c208589e8e8e3690b1e1452f96ee3eb9dafbc", + "regex": "(?i)^https?\\:\\/\\/fezxis21xezs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "34c0d74ea0773c2d0cde501214a81eca788b878fe5a29da1cfbb277c3b6e7e04", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "778192694cb6c990a9cb44b720d622920eec7aafd55efc671df01baf0ec7589a", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4cb916d2742006d07e42ba82cb07fb9b1c9b4d95b164195df8bd2bd7a01ee16b", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "33d3502fa661ed5d83ceee49028d635ff120797099696e40b81f2c8aed4576d7", + "regex": "(?i)^https?\\:\\/\\/jextes21grexs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "90af0d6ccf47664b4e3ac3741cf136df078f2f9c06874ec0d099b3a3b76df7a0", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a1bb2cdeba7a7b5730ace438c1762a786eeeb55aa79ca37370f4c59527348674", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ded272f7651c710882dab548c19a500045d15035e7f80ed1675401edb772bb92", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f759865a829562390af9996a45b9a4c3c05a819329ec0600af795ade369d2d79", + "regex": "(?i)^https?\\:\\/\\/kexts21prexe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "417817e6156fdf8c58dec55e20caa05cad08429430f24b5fb0e7f1d06e82a0c4", + "regex": "." + }, + { + "hash": "5711d7b2eb3a1a3c8f258c1a6ccd35eda18b4943940e2e52d712c5c1cbaa85ca", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "52167209e355aa51f1c5d5d0dd467ced901c5006c17349a53529cf3fb20711c7", + "regex": "." + }, + { + "hash": "84e1f0acf91e9fd1a6697699a96d566c0f0c3fbd825479cb5f9706acd97faad9", + "regex": "(?i)^https?\\:\\/\\/hexzw21perxt\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "50138b0dfbe98e978dca5658ffb82d84c9e12d7ba9e407c30361b2bd3244499b", + "regex": "(?i)^https?\\:\\/\\/cexez21westaze\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "467fab9c6f1c0d44e675fda3fa043b53c531089973eb7d9df50eb6cca0b4163d", + "regex": "(?i)^https?\\:\\/\\/vexzew21flexs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+class\\-loadering\\.Php(?:\\?|$)" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "915779bb4278840273a49567721c3450cef28dbc37dad169209060dc055695cc", + "regex": "(?i)^https?\\:\\/\\/prexe21gextez\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "82f02da77cf3ec2a7fc376105a1210f3caf9617ffbfd55ca4717479ca5e222c4", + "regex": "(?i)^https?\\:\\/\\/komal\\-b\\-123\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "032a74d63a8553663ed4019e686febe5b89e23e1644424c37bbfff76124be382", + "regex": "." + }, + { + "hash": "1ae1a434ff264497a28a23301922f8cce075715409f6f5adb2b39c2ae1e3b256", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "da126fe83ca6262a9722a59b27f12ceb5fa61c380af2fe07290d44f521c7ec2b", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "111eb5eff960321b4ac0b6b84f5af6ce3258a082ee43d07140d89c59425f5331", + "regex": "(?i)^https?\\:\\/\\/texres21rexez\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+acme\\-challenge(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95aa05bcb52f8cefdd3c891fc9b3a34235af39a5616edf59ea70fe15a482b44a", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "488f5d94d33da0dc64cae783901a985f3555488332fa54da8c2093236ef8eeb2", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "a1d5037c3fd7c1f76718318c1fc86186afb3c623c5ce8740b014b4513d32143c", + "regex": "." + }, + { + "hash": "99ad4d24df5d364a0d1f4f48ab595334f2b206d04beafecb179b3e8bf17535c1", + "regex": "(?i)^https?\\:\\/\\/pexce21tips\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "23579c00c044de4ee63b1a89c12de6f483ec6835bbe83d0fe6b2b7190f71c967", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodonrobloxwithnorobux\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9164189ee9ac264cd4bc0f9b93c96a587639f675f1570efa3b8e56c83e4c59d7", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodonrobloxwithnorobux\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "46d00fa675dfcea127e2a5fff59824b027aa226cbcdd126b7551f43bf7479ba7", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "09a05b219c335f5162a1eddedaf66ee408ebe2f243b96551744026f0d881093d", + "regex": "(?i)^https?\\:\\/\\/kerxcve21plixe\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f1e3659b673d4545026d32b2c66203c5fa36f0dbe8e1e537c6bbb9c95e73d3b0", + "regex": "(?i)^https?\\:\\/\\/pub\\-7d6bc8bcafa24462aff295bc41e1d535\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "444a1e7b5c222fc75139ee317c4657c9506f0ee5525ecc3f3820111bdd7f4bf4", + "regex": "(?i)^https?\\:\\/\\/cexez21westaze\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9a4235069d8388562773d41d547709aaf3d9e32320a47638d8a8b6de4aec5a14", + "regex": "(?i)^https?\\:\\/\\/kerxcve21plixe\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5f4e100cb8895facab3dbbfd2255bb09a00f53b13dd0dd28311944a6a54e3c3f", + "regex": "(?i)^https?\\:\\/\\/vexzew21flexs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "ded2b89c8db7c693ea7a9508a54aec456282f1c0f8c7d1fe830e8d988e853e3d", + "regex": "(?i)^https?\\:\\/\\/kexts21prexe\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "95f36e83cc01c3d2df13d3d4168d2f96bd2c02403439e8b618e78f78234ae568", + "regex": "(?i)^https?\\:\\/\\/pexce21tips\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "adfdbd725c98592645a00100c9633f631f10ca018523c5a681165f9ded71e918", + "regex": "(?i)^https?\\:\\/\\/cexez21westaze\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "42f66ecd9d2490ad361bc016f5cae7e8993c5e7d814c2c1aa672616d5c8646fa", + "regex": "." + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "cfe2f1f5baeb776562623cbcc57fb013691b7e5a1169f2d21bf0558113a995a8", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9b44fe504ccdaf5bd1fd16873708a53cb6223dda04acefba8ae712e435bef2d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:\\?|$)" + }, + { + "hash": "823233390077fdb979c3925fc304763443e7c64c0aa6dba19525adcd84c96bfd", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "1bf4d84d54cd38925f327a5940d70c5239f3d1ab47eb9ccc3008d88b158d1ecb", + "regex": "(?i)^https?\\:\\/\\/jexts21nexes\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "57851535698695b2853ec2e73c4c8eb652321414d57c19c894a9fb7555dddc2e", + "regex": "." + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "96e843d5c22e5bd9585d42af3e35ed04dda80313c246a52557de353a9a3ad7b5", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "adb1b6c2f248eef16114f6af41301ecade8094a38679f676289cb43987ed2010", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e0dfdb7f69ed49b50a07adfc14ddbd7edb49f1e9f665ae118e912bca160bcad1", + "regex": "(?i)^https?\\:\\/\\/jexts21nexes\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "60e1b3b7917aa6edac0cedcf78fba5b317069b87f58113daea42994c85190ca9", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "daf13f040d81d5e07a87f5abe06f4029e8c96902dff09347559eebf8a15896e6", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8b94e5b94f52884864d8a1d414a0d26d6b4464f1274b639154b1e3b00353765f", + "regex": "(?i)^https?\\:\\/\\/sedy4w76e45ry75er\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1f09faadc962600fe7f7c4c65bd7842da1ba544c5910978957e84d56b54e78dc", + "regex": "(?i)^https?\\:\\/\\/texres21rexez\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "e6daa83a7ce6a0f29248d6ccfc359c0cdd8da183306a7590154b79fbafca21a7", + "regex": "(?i)^https?\\:\\/\\/alb\\-qnpgpvfjl7cbek96y5\\.cn\\-hongkong\\.alb\\.aliyuncs\\.com\\:6004\\/?" + }, + { + "hash": "ddbc795feb64e4cf1f9fd26e560ab2a4f883ab0d5a5dc62d52fb4bed74db4e2d", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e881c9ea6ba4287a296e0b5bbc0be89e19dc3ad54b58c1e8f661c9ca04bcecc1", + "regex": "(?i)^https?\\:\\/\\/texres21rexez\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.\\%20311\\%20\\.\\.\\.s[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "a1914b57a8db62871dcbc47b75f7fd490ea0ef7b33f63f3fe360b5d8970b278d", + "regex": "." + }, + { + "hash": "bd5d4d0f84a14ef1b22ec39d592cd6336754e152d0f41a5a5cb3bf89a04f6652", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "59a75da0d4065fe80b34a7e031b3660d552f936d0af94c996ef09faf98437526", + "regex": "(?i)^https?\\:\\/\\/weszx21kerve\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "72b5cc713d97529d6d848348e17af0b7808e562358950178c4ec02aaf996cd88", + "regex": "." + }, + { + "hash": "9642e7993c40b974bd8f7488add300f3712a2bbe3eb94ce9047d440f7f8191f1", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "206c5f57365393d0aa521615de9b4aa80a23914f5fe4027c43bb63270f8caab8", + "regex": "(?i)^https?\\:\\/\\/pxesze21ruxes\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "731147f71e5537fce5b84619d7687d8c5d63b4c4c2c8588eb87f9f4e8a6a75a2", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c77a969f3b05ac0b674f837e8dc424ee3cb1f1e3f4c699e5764c2d6f8ceb2330", + "regex": "(?i)^https?\\:\\/\\/sedy4w76e45ry75er\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "3c2ab34aa12f798722df7ee3320ef6670646868d2faccc6ea3ce1c5bd25d831e", + "regex": "(?i)^https?\\:\\/\\/nexpw21zims\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2301bf59556e52bfb8dfc2095134658a6ef8934a2050881208996f14b551368e", + "regex": "(?i)^https?\\:\\/\\/texres21rexez\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e16862f5243a821695301ed4d9f4e9f714f4a067b2f057a87b1f69518a688a1e", + "regex": "." + }, + { + "hash": "e04eee4cb94cb29002aa787b31a7326a6ae8af5032d18d51316dcda86470bde8", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1b90199e8ba6104cc0a8e5dababbf15327a80375aab61b7b32f1231923089607", + "regex": "(?i)^https?\\:\\/\\/kexts21prexe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c31f3f8e3314724729f4299de49cb751edcbb4cf1379c5364d81addd012a291d", + "regex": "." + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "f17df567b2a1373ca095c61f9ed4f70c45c54ea06c2488bea372fc8665aa3519", + "regex": "." + }, + { + "hash": "f0e4eb32877105dc60a87677970d9c5d596005eba7cf269be7d5f05ed9ad1a55", + "regex": "(?i)^https?\\:\\/\\/kestx21trasferx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "a6cc3cb19e5ce9bd92049b78ffd9c86ce25d5660c214a5bd0136f8f37e73ebb2", + "regex": "(?i)^https?\\:\\/\\/jextes21grexs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d541aeef48ce004a59b69577db52f2d40f1e7bb033daa8d1ab05121db9cd78c6", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6d011f6824d234558d75cd8374ee42dfe0eff184a7868a0f7a1fc3e752975205", + "regex": "(?i)^https?\\:\\/\\/hotgilrclip2021\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "54ede4038f1d2ef505a59fcad3d8af47fc52f899e26ca197df23f10b82be5047", + "regex": "(?i)^https?\\:\\/\\/hexse21muxers\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c4e270971af451d8357622c6c2cf497bf3f45d840f5ff8e5f0f72977d7ea4e1", + "regex": "." + }, + { + "hash": "459605f7094eaf40dc31eb1043be0944cf6820bb0b2e0b23ba73d86e14dc89ce", + "regex": "(?i)^https?\\:\\/\\/kexts21prexe\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "0914694a85d0644ad65055cd7e9651bf2253840544ec223dc063f6c9fcbc096b", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6164295ff498e37e95b9e6f651e118705d56c06f77b100c86aab77be0acee580", + "regex": "." + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "ebdcb95adf9cc3044055e94883a57b7290107edf119cfa5a4b16b79857699709", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+wp\\-options\\.php(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fa28606587e03f670d3995462644938fc5b41b1f45342edd8f7baee8fc7ecc07", + "regex": "." + }, + { + "hash": "077c620daa12a20165ec81def4d845444bb3e5bbee9ee823df9b84983c71ee59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g2h81o(?:\\?|$)" + }, + { + "hash": "250a4f12c81aa42e2c856939bbffe7fb9252250539a4d687ee6a5ecf6d065701", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "98ad83a1076f109f71412c80230b83f053f0bec6d5c3e3c31f23ee246c0fbdf0", + "regex": "(?i)^https?\\:\\/\\/vcxv2xz1sdz2\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c71884b52bc4a4e38cae6e9670e3efc887b7f4c1187dda6507eee09b8aa38b61", + "regex": "(?i)^https?\\:\\/\\/pmexts21ptcs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "92c14753c23b090da12ef617d2bf3db187ebdd84bc8918b7611975cbfda5ed34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pacel(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "763792f67dc19c0a2ef2c59d4a9e390893e4b0112b6af0e8be03d825773900c8", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "8cc1cd86c81f228cae7c73e26de1456db3857c26595d9a69621e76d9f6d8c966", + "regex": "(?i)^https?\\:\\/\\/uvrex21yvex\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fa5a0263c0caa68eae880f4bb2ef0e798953c71407057aec80060aba8d3584ee", + "regex": "(?i)^https?\\:\\/\\/whatsapp2021jkt29\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+lxwtbikq\\.php(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "b23d3d13fb7d99a9ab295871f3aa2f7d6621839ec0b47155a983f3cb32c186ee", + "regex": "(?i)^https?\\:\\/\\/sedy4w76e45ry75er\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "3d2ca1cea203ec842939e55f5ffb3879388d341a299f135ab284dbfae3fbdd64", + "regex": "." + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rxmsxln[\\/\\\\]+indeeex\\.php(?:\\?|$)" + }, + { + "hash": "b6a8221261b5417617c0eae97f6d2b72a156cd061f0fbc9a60c878af6bba7b0d", + "regex": "(?i)^https?\\:\\/\\/kexres21xerve\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+p[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "cdee0dc02a6cec514492417baa40d96b2bd020f0652c8815d2c04f33f9f03628", + "regex": "(?i)^https?\\:\\/\\/vcxv2xz1sdz2\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "81521cc45329271eff784367729655df46046381353cc169f43881eb1f3300f0", + "regex": "(?i)^https?\\:\\/\\/pexce21tips\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "24ce700be339f04514fbfcb613891fad42941f78d715221af7a91457761df700", + "regex": "." + }, + { + "hash": "679767ccc568d31aaabe4feae686eb680c20be946005193bffdfe0c0ee179360", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+tj\\?type\\=start\\&hi\\=1731499531$" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo[\\/\\\\]+indeex\\.php(?:\\?|$)" + }, + { + "hash": "eab10e0ee827b3f316ad6231a985fee71ac087b46e6dae6cc38477cd907d42e8", + "regex": "(?i)^https?\\:\\/\\/tyxezs21merxez\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a499d189ecd96d23438ad289b0ab476fab066aa636cc0851d5a9777521bd45d2", + "regex": "." + }, + { + "hash": "5e1444955643be38490d61c1eba053f405a685b97d22c1c39e23f73b9894c83a", + "regex": "(?i)^https?\\:\\/\\/kerxcve21plixe\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "01c5193b5e3c64faccac2537bedbed8cf1efadef35b215ef12f15652630990c3", + "regex": "(?i)^https?\\:\\/\\/precxe21jexe\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uas(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?l\\=center8\\&u\\=a41374[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "1a6fc0ed7efc839ee75402c959b780a4c9b5e3c3a007a4c8b7b396bf008a570f", + "regex": "(?i)^https?\\:\\/\\/pexes21gerxe\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tict(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "16207f3403a4e142ce7fb7e85f25800dc1974b9ae23f15fb20e2037038ea4751", + "regex": "(?i)^https?\\:\\/\\/howtolookgoodonrobloxwithnorobux\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b66a9387d80b4c3ef36b1045ad062e360b47af4e5a754371179e384ba860dfa0", + "regex": "(?i)^https?\\:\\/\\/jexts21nexes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6ca19f0427c860316438b65484ef6d7fff0eb6253857ed2410b43c4555a8d33a", + "regex": "(?i)^https?\\:\\/\\/pexes21gerxe\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin" + }, + { + "hash": "450496f12aded34dbff3f54dc472aa98f86140b8328f1e2c4397e448ce108c1e", + "regex": "." + }, + { + "hash": "df261099274a6bd49f76f3f69df03c88758d5c1894fd2f353c80e86ae3068f06", + "regex": "(?i)^https?\\:\\/\\/terxe21fumexe\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b16f132177de55e2069a88dfe8c1822ded118676547378ae37cc746cf50ec10e", + "regex": "." + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+cache[\\/\\\\]+oadyeftt\\.php(?:\\?|$)" + }, + { + "hash": "1ffd5ebcbd685dc6251737cdcb186e17c6b38cb3b2e6fa929978081abc703024", + "regex": "." + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+cache[\\/\\\\]+oadyeftt\\.php(?:\\?|$)" + }, + { + "hash": "0d3fd278470d1b929c79fca54a7d8baf0b6f1b563eff3f96cf7a2bb4c6e9aa10", + "regex": "(?i)^https?\\:\\/\\/service\\-sos\\-compte\\-support\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4073355fd367fb6c67c885a23ef6abef65c7b6dc4154b69493e4ed904b658b9d", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "549cb5d01ca2b9a2914a3bbc276fd727b4952ab64031d7a89f93129909268625", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxoswc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "e2ce14ffe0e318916f76b39f27c1af94b4295e1d3a6c8fdda0361fe06db13d85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+attverifyyy" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "5b00375ef25755ec2218543493fa191a541c68d97d0b16d11b0037132d2c67d7", + "regex": "." + }, + { + "hash": "0c44859036095e07e60ad50eb3124e5ebd693fbc6cdc3b374ebb759d596abe72", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a392dada4fdc486dd56ec7455728f4168442bed96acce799fc24e356be33d05d", + "regex": "(?i)^https?\\:\\/\\/grfgrgrggd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c339cde547774bc6ca24487c47a218c4146e616b7fc5752f2c4c25aa897299c2", + "regex": "." + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo" + }, + { + "hash": "7a8529b7234ca5ddbe98d80a2d32139bde4a9d52db2aaafaf4755e2ca4c66e21", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxoswc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "99bc960868ba481b17ff7f6fdd15bdc05a25e5a8b5d14de4d79f96a4a504b614", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "df68d56c0941fd233443e6a3384e8004ea60cff4403d7a1b965d5d9652b946c1", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "aacbd9a9581ad9faf5ec755d9ef595b7636bd59ba0aa0fa845d2d14b3996e18c", + "regex": "(?i)^https?\\:\\/\\/service\\-sos\\-compte\\-support\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62a00afa379edd23d0358f9a3110a83deba5945065acc1b17da394411ed35b29", + "regex": "(?i)^https?\\:\\/\\/videodelight18s\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fa1c065b07303dbd5bcd0736b470e5d49127b9b3515fcbbc23ea438bbb254a84", + "regex": "." + }, + { + "hash": "9a322b46fab8d76043e9ce28e4286c44c197937470eb4c813257f5188bbe1cd3", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d1a76c008b466955c31d5aad9149801e871915dec5f6f2f269eba9f5e42abc98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "f5e2c3dbbcccfd965d177b9b27f38df3dad8a99d97c884e2c4b106cad69cd511", + "regex": "(?i)^https?\\:\\/\\/service\\-sos\\-compte\\-support\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "885bd9ad580c223b972cc219addc5caabd8486c2ef38ffde1c183fac20eb02f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e09130a9d60f873736848097296be7aade7b89c9949d63299114dce73c87a2a2", + "regex": "." + }, + { + "hash": "6eba6f088cdaded6e6bf710a5b884c784a023c51df0fb6492928a41081a167eb", + "regex": "." + }, + { + "hash": "5e1bc15967e051d0f13276b6e30d4e4a652e5953b3b6dfeed183b1f6cd76067d", + "regex": "(?i)^https?\\:\\/\\/biotracker\\-organweaver\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "849716ab8d48a09d8e7b4bf47cae41b65d93c5baec78d584eef9b16875363aff", + "regex": "(?i)^https?\\:\\/\\/service\\-sos\\-compte\\-support\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "febc90fcc19308dd0ca1e3604d446a3d0e991432451e7e34b2cc452320a84ec8", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8c882b4396c0a443d5424678c5aa9e65a5bb93889447203296ac1768ca2e6c37", + "regex": "(?i)^https?\\:\\/\\/hotvideohubu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "7789fd863ffd84edea48f876a7abc8cb9a376d61b9bbb1fd636ba9fdf6bcaf9e", + "regex": "(?i)^https?\\:\\/\\/att\\-100004\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ed6bdaabb0c69df432218bd14d61a754fd9a055d242c3f31b8fa2ee723b3dfe8", + "regex": "(?i)^https?\\:\\/\\/videodelight18s\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8f4357621280c693118302fbadf272e74accde60183ecdb3f48887877303f8e6", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ytfxnjag\\.com\\%E2\\%88\\%95pizjtawukq\\%E2\\%88\\%95sohxthk\\%E2\\%88\\%95gxfhml\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vycxx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known" + }, + { + "hash": "2527ff1a10d5d4f65175280fee16275225e485bae187e8d850e46ea242167002", + "regex": "." + }, + { + "hash": "b47fb3e06cd7f9357291fb0894674ce46cd5a1c0ad42909dd7bcb3419fa88bf3", + "regex": "(?i)^https?\\:\\/\\/grfgrgrggd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "427c4e31274dd7b84e44df89a210746c83f659e24b59283e87ebcbab3d0b0a72", + "regex": "." + }, + { + "hash": "e1b403fbe6aebef9310d2bf40d1eb753c2f1c3b2fd3650f01d12cfcd4f41e580", + "regex": "." + }, + { + "hash": "014a3e052c309789cc042d18bb808358d1e406f36e96d5e74678804b9d59a99a", + "regex": "." + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e524c2ea37a9c0f4d429568f27e02e66a436d80adae4eefd4fddcf090dadf9f1", + "regex": "(?i)^https?\\:\\/\\/service\\-sos\\-compte\\-support\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known" + }, + { + "hash": "d1fac34e04b78f3103b9dde728d91cc33c2f5a19d67ac5bb9418456283751080", + "regex": "." + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7dcece681bc4561c72b01634a301e89aa1d186b87723586a956d11cc4487720f", + "regex": "(?i)^https?\\:\\/\\/videodelight18s\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c0bc66c9e2c211bfa31d491ef7ce8b072bbe9dd96d57f1599257d0ec3fd4519b", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cb93ffac379cb8dfe9a3226eb26190a72104499503c3c879f3990347db48f0a4", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "047e8d6960b27d4c6e42ee6c1f64a2a32d84a331817d1b1b9ae126403ad767b3", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1507704fe6a25a85a45080bf9609468751ba37b95f55b091d92f62fcd56ad179", + "regex": "(?i)^https?\\:\\/\\/hjyhjthjty\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e19967957da62accd858763e61f15ebb30299ff2e5cf6355ce5d44754af68730", + "regex": "." + }, + { + "hash": "4eb07c13d19b9a13e037d87e65bc1e0dffeaabc50e12ad2d8aa1eafec4a33946", + "regex": "." + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f503f9815313143a59e3b17b4475711e3c7483ac9e9fb36adcefb254139dbc4", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3380dba6bd6ea366112afc5e4548c3be9339794033d56440a087e0b9d04ff725", + "regex": "." + }, + { + "hash": "1355104b663ec31cfa6ffb65a6112ab844440a6b6aa640aabc164234690b41b8", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "52461786e0a588be2c50b7aeeeeed925419016d7f6a9c733a2688fccaa3ea853", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "235bbfc4e69ebfb9942210757976bd1c4c32be48efb4659152e9dc7637cd36cc", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "421701445e18b459b6176c7e51ea0be685a4afcb65b0c6b66aa76d6546c7dc60", + "regex": "(?i)^https?\\:\\/\\/biotracker\\-organweaver\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known" + }, + { + "hash": "0fd0495d6bb6d8480ea7a90a348bf8b54dbebf0a92228760c2b696148bae4ab2", + "regex": "." + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content" + }, + { + "hash": "11c01d55f65ee31164451d9d4e5a4a538e598e05237f64f7788c53bfe38d8679", + "regex": "." + }, + { + "hash": "5eb48f4907b6bbf07472ccfe3eddea61eca7984667ee7b4ffdfe7b4d143bace6", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9136b2953c1e399ea232305b714af51b57529a5ce24a0b97c3b57a7432f872b0", + "regex": "(?i)^https?\\:\\/\\/netzero\\-webmail\\-108087\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cabe4d1fd9af8fc96bfd1619f1dd009c88ddccccdd7762c9e04054de050d90b7", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d0e8197bfe7d3d1aaf5bec0839754619234bf002ebc44fa903237cd85bf5c144", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "814aadda7369d46c36a8133671d02a4561c010555738579c77383a3c95929d9d", + "regex": "(?i)^https?\\:\\/\\/grfgrgrggd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ba4d95637c1d1bf50369733c4bbca8a2de850eed6dd1101e7498a740a1b42ae2", + "regex": "(?i)^https?\\:\\/\\/hjyhjthjty\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "428ebfcd2b0d7c047ccb068f2e0771f2071e6fbf4a3a0ccfe5345ad6e2751c33", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "05dd461690d9d4d39fdbb11adfc21e5e207923db4b3ae11babdc767f1822114d", + "regex": "(?i)^https?\\:\\/\\/s6y\\-105490\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f5c14cd991471d2db3b2ffac9f38d537c04a20546b8e881152ae98d1711522be", + "regex": "." + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "6c550d8c09a86454713b5fa928a55694f3983008b636adef849112d261294af5", + "regex": "." + }, + { + "hash": "0f72392856d46adcdc1ce09bd35986c00c7685e867b24703e6d9d8b135367dcc", + "regex": "(?i)^https?\\:\\/\\/companygoodfoodcontast\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "9c05b7e046de7dc84e755a9488d9c36af3d2ae4f3b6387ca5321705f3a0843ad", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "be25d17ba4d46ccd9400012ebef3a930e7c3ed89564b6b3b40ae8736685fa912", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ismzgpj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84fefa1a04529ab7df117800cb6c8ef3268545f9e46ef1521c42969915ca440d", + "regex": "(?i)^https?\\:\\/\\/hotvideohubu\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "86df1c38c03719b244d8c2f963c4776d86cc9bedf475a2dbb7c7c2b117cd9455", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.zY8W1djHuPXByztiigrHa27mmFZyl\\-2FRWcJaDk7zNlqgcHeyt4c6FNVt23xk4KTEXvUJ3V2a4OYoF5yq\\-2FgtKq6cOz51IpjUOyZIPWm7y4kE31qyqRbcba\\-2BnrRGp\\-2FDXRzktoNjMUBQg9TDPRtK03fukQ\\-3D\\-3DLprF_anZkqjoimjigNZyGLWVp\\-2F\\-2BD0jqy6X1PT5XDbzupn\\-2BCi0D7PZ5rXXQa56a5lcm85uGEteJlcayzq\\-2FLhapKo0gRISxof\\-2FyOVselRU\\-2BwMuzwFWoVTBZWpzCZ0hfu71Prstn2ZwU\\-2B\\-2BwsDBfqL8hG\\-2BJNgHSdy9m1w\\-2BI5Ots8\\-2BG1z9hqJhAAW9MZyCO3DX9BJbcliU3\\-2FedClkQuV0DlEnSTA9yJFQl2RH52d3Q3eFotTtsaxI\\-3D" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center4[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7e508f512d9d6e333fdc150c7822e6d39a1e7fecccc554e1e8d98b3b5a3ca7ac", + "regex": "(?i)^https?\\:\\/\\/service\\-sos\\-compte\\-support\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5bb8b8979e0f3831f39fbdc01a89eec6665b3bddfc9bd47d1a8e1cb64159a4a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index03\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content" + }, + { + "hash": "466780df55b7477894220b234ae8cf299498e6a384af0b158a6e1cc7d3fe1291", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxoswc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "014ab3e0c02a5066aedef83b8aebcf82089b354f0e7b78416a314e05c49e1895", + "regex": "." + }, + { + "hash": "ece43552c8b2970ad84cca77dd721e73fe23313f54359a5e8313e40d7ba13fd0", + "regex": "(?i)^https?\\:\\/\\/companygoodfoodcontast\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "3e0f57ae3f6301e3a1e20fbed62ab28674e93dcbd741d11ae6e2c96eb0275e41", + "regex": "." + }, + { + "hash": "82d57b255851d34a20ae8168491574364f0318b47f3e9d52b4fcd1655b110564", + "regex": "(?i)^https?\\:\\/\\/hjyhjthjty\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3db2236c03db5ba625fd40b41cfb9f245d6c0cfb31a81a319909f8ff245e6439", + "regex": "." + }, + { + "hash": "49f0029700d7ba60d1a4ad9ebf662956b3e4c97446cac3f54472643a75a95a54", + "regex": "." + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content" + }, + { + "hash": "5b4c3881c49728535d43b408be9253784574c8050f5679af98e6af23b557a6cf", + "regex": "(?i)^https?\\:\\/\\/alb\\-2hbebfghmu20peg4k9\\.cn\\-hongkong\\.alb\\.aliyuncs\\.com\\:3513\\/?" + }, + { + "hash": "f80e84bf5f796fc442f5b1726e38bea6f943b869048297350d3c1812520f7cfb", + "regex": "(?i)^https?\\:\\/\\/hjyhjthjty\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+cache[\\/\\\\]+oadyeftt\\.php(?:\\?|$)" + }, + { + "hash": "f9306c4d13111915599897370b11074490fc09b0345425e03f10ba8edd6ff56e", + "regex": "(?i)^https?\\:\\/\\/companygoodfoodcontast\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f8dd18310e478b8342b21d9c6a2bbd1aeff9e7c997f207d5e15a0c1dd18b173b", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo" + }, + { + "hash": "e391673818e31f2b389833bd8c829d6a897c70c2b40685f924f7fb710dd1d7c6", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "d47a3ef31f637dfff129a32bc1591674adedcddc8fbdb04a57fc7f1db428c12b", + "regex": "." + }, + { + "hash": "093a89ecf19a421b66a4c064095da5795ca2e479d886690bb28f589f31ddf264", + "regex": "(?i)^https?\\:\\/\\/grfgrgrggd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+cache[\\/\\\\]+oadyeftt\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ed6ce064514699e6ee650941429cf205449686125328a3901e35e8c019d513ee", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d83e7a58386f4790fd5ee3b45b59039731b5c00535df073b2179ccb0dec0034b", + "regex": "." + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?web133[0-9]+\\.cweb06\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+fhsdbndjslks" + }, + { + "hash": "d67db7f2df4be8b5d731962bcbdebaabbe52f171c9282f06bda2abb2fa414e79", + "regex": "." + }, + { + "hash": "f0696c47a57207c4c79ca398a6d5018474d0fd74c98929f4218d99c2c32bd10f", + "regex": "(?i)^https?\\:\\/\\/biotracker\\-organweaver\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "70ece455b609c5c9e6ca4cf09e39a1ffb8bc8d557103fa829625437274aac41b", + "regex": "(?i)^https?\\:\\/\\/companygoodfoodcontast\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+cache[\\/\\\\]+oadyeftt\\.php(?:\\?|$)" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d4be6775b167d73de61d1dba67ed6407b5138f134db03af168bda5c8e3bcc24", + "regex": "." + }, + { + "hash": "ba587aa4984aabd5ca02e1387b102e35dfb0771a7a0d04f16c2fc89e2e8e78b7", + "regex": "(?i)^https?\\:\\/\\/service\\-sos\\-compte\\-support\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+cache[\\/\\\\]+oadyeftt\\.php(?:\\?|$)" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "74e69a94b53c693674056a1a2ca72a5ba6584a35e022f0dc093992681e42d9bc", + "regex": "." + }, + { + "hash": "3b6d3a407250b2aeb06f606f9cbc91ff750cdc9a713d9cb3ca76aee8316500cb", + "regex": "(?i)^https?\\:\\/\\/grfgrgrggd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f7f6037d5e42a7785495e2e138d65843de2052ab885eabb1e90ed8559ba9966", + "regex": "(?i)^https?\\:\\/\\/hotvideohubu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8730018e26d93fa995d9a346d91d5a72e04f96cebd2529bda91ee289d6a22564", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cb16e5fa8a4dc00dd82591c6ecd96b5cee437eac5ebdbf6fd3381433f69c02b4", + "regex": "(?i)^https?\\:\\/\\/hotvideohubu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b8ae9b4ec1ee53c60635e89babdf86e2ae78bc2e6bcb69778b84d19d46636557", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{3}\\.xpangestl\\.com(?:\\:(?:80|443))?[\\/\\\\]+FJx1HH" + }, + { + "hash": "c6cbbb4a43dce4e1db5e50021f422311927910a8940cd2873aeec1fed7fcdadb", + "regex": "." + }, + { + "hash": "68841c37addb651142f8a72591ca940f98ef34c61193e6fb5038183be31cafbb", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e716494e6dca4b8b77ff97232292cb890eb4e54b2a5baba67944c68099f4b42e", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "26f03b7900878598fd35e71d245374af6defd4f61098afc1d86cdeb84354fa28", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1dd9b54412f62ae61b1f1a832eba24863b3bf2b72a8a9715fbea0e81f0a032e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4dfb818172f7a8182c05f90c7c4e1f2f4b798897d3f14da245f31adfc54bfca1", + "regex": "(?i)^https?\\:\\/\\/companygoodfoodcontast\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "87500e66e863889cd9bbf334da6f5b8c90f5cc70781bd3bd8c12012adbf140fb", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6424955b76e4d1df4644e50b80845dfb29e5f7292ed3dc026d80f37d4c399418", + "regex": "." + }, + { + "hash": "5b0d136781aa08c2b4331f566c7873f5080455993c55db37f40df22116337455", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b481e48641cd064d8058deb72ffac67c2479bdf889d06816768c70ee9e247600", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxoswc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bb372f9435ee3f54fef9f08d9995fb62c64cf616e464ed74b5ee225ad123c80f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+checkpoint(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ef97e9c66e0b6f22134b320339c9541d5a225a395f9d2337a92dfc436a45b2ae", + "regex": "." + }, + { + "hash": "4dbc56f7bf07cb6cf91b018e0c8d7f3069413d2d5aed9c030eecf918209b9daa", + "regex": "(?i)^https?\\:\\/\\/biotracker\\-organweaver\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "62be4fd78256470766dd63acf8cb8b0d3ac6fdd4808de8467b6dbc000f948210", + "regex": "." + }, + { + "hash": "55d89b3efe3e7cc88dfec781f9a62e3ee2304a492e6f2e2e7af868b123c5f318", + "regex": "." + }, + { + "hash": "a9696605556187e67690ca9324f75d30390499ca8149c219cdbb7d1b46032381", + "regex": "." + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6010cc5235856343aad377d94514df47461c1a1fa263e72bb4b8690f9877a12a", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7f9b5f6c377e49f2e126c06fd90880f5e2faafe19763599957a6f22d4d496d94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)" + }, + { + "hash": "d1a76c008b466955c31d5aad9149801e871915dec5f6f2f269eba9f5e42abc98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95f8b67625b93acd0199bb5e749da083926a924a17beac929fbfa8444c98cfa9", + "regex": "(?i)^https?\\:\\/\\/biotracker\\-organweaver\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known" + }, + { + "hash": "76d81cc0e42c020410120f31f83bdceede56d87099128f807724f85b2b8deba1", + "regex": "." + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+189klz(?:\\?|$)" + }, + { + "hash": "46e896703ebacd516f512a3ebf8cf3b8796aee87d1ab3668893a9b2a6290ad61", + "regex": "." + }, + { + "hash": "94262ee204536393b871ad87d7afa1559af06fcee770a768f797785fa8dcb1a2", + "regex": "." + }, + { + "hash": "1a2ed6e800776fb6b1c428dea58725fc92c326cbc3147fb550487c2665c43a8e", + "regex": "(?i)^https?\\:\\/\\/biotracker\\-organweaver\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "597b6061709fd1af7ca0abdd76cd1a4055f4032276a532c22553148fffff3beb", + "regex": "." + }, + { + "hash": "b4907d66958d9a3235f5df66dea23eb8c4686af3655cb416eee3e703dd8d537d", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+cache[\\/\\\\]+oadyeftt\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ff46459adf2defe440f4d2ec6156bdb9014161e14524d8bdca6c0ba96085062f", + "regex": "(?i)^https?\\:\\/\\/companygoodfoodcontast\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+pa\\.\\.\\.\\%20311\\%20\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2745d15211618db4eb073baedacad4c448791551358aeae5caf6f17e64f55e52", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "771d4b2f7f7dac4249be2ed75fddaf035153815a8898f27e4b9d397759fbd5b5", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "49ba59fd5a237f2041e7d5a0c9541bdf2d34a9b19db83581b231727899e3146e", + "regex": "(?i)^https?\\:\\/\\/videodelight18s\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e914cbce4cd57c99ad561dd9b0dad2907b6926ceb9ef74f554cf482a4fbdb1f6", + "regex": "(?i)^https?\\:\\/\\/hjyhjthjty\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ec2daf4aac4ae05ce84a4ced3f14114f12d2d29d29538efe61735a22381028c9", + "regex": "(?i)^https?\\:\\/\\/hjyhjthjty\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1afbc4104b0d5b4842c35dd2a873be064224def4dcce7040f2d7f689688902c7", + "regex": "." + }, + { + "hash": "09f7c9b0103838df8205bf0c2ca113f23a328d70d7330c0d3fc632d325d4a63d", + "regex": "(?i)^https?\\:\\/\\/grfgrgrggd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f5fe312574f2e998c80aab62e699b956cd24127660798ff5ef164dbb0ebead52", + "regex": "(?i)^https?\\:\\/\\/grfgrgrggd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "01a219b4794323b0bb4a6fe5aa392f8543fffe5beadfe8b9ba749a1a5c8779a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1d4db89af459b5d01d38d5434ea7335c99fe29991f3531c8d67f081e564e9985", + "regex": "(?i)^https?\\:\\/\\/videodelight18s\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "fcc66d3bcc2792ba10503664882d996d4ec3fb571c332e41b05a2c361048967e", + "regex": "." + }, + { + "hash": "74b0e545c817163b827400a71db8a12e7675a9ebf030c09c4068840f7f4e840f", + "regex": "(?i)^https?\\:\\/\\/hotvideohubu\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d3dd479d9bb8b37d7e106502e8faa16f115d8a347e7a98d31db157e0f629d902", + "regex": "(?i)^https?\\:\\/\\/videodelight18s\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4ee3c995cc55aafe86a61e6f9d0c4580e77f2a55943a14fc07e7303859b6f7db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+punktum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a573c47fdd5afb595bb46c0aaa88c6c3b8aec47461a137134870a990a89926a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxoswc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?6f80a\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "d1a76c008b466955c31d5aad9149801e871915dec5f6f2f269eba9f5e42abc98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ff628a5fc89e64ad64eb3fa8e134bc53fc5279f781093930b53f50d84b77527f", + "regex": "." + }, + { + "hash": "1b1e101ea61cb0d6031010a83be3f81b2186cc4ffd744f97f390a90e2026fe4b", + "regex": "." + }, + { + "hash": "b5ec859e9e46f34533f7b0e226736c06f94ae386ad267061a82fa08c81ecaca4", + "regex": "(?i)^https?\\:\\/\\/drishant2004\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "59a1be2f58c12e5fccae1e2cc8c5e2dc8ef35a16a0532ca64ac5d29c4978a5b7", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "827fbf89504879b0c6db63cf5ae4cf8b2d0806defb43eabcd544a16aa68df1da", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b96aa1120a275b52f35183630690c44dfa1940b7747c075adf6af5e3124314fb", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "02f9d80ac95600e335344e0dbf964a2c020ad90084442ac44f3e4665133fdff0", + "regex": "(?i)^https?\\:\\/\\/hotvideohubu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2f4fa5b947922a5e0cd04cad8a6c2107d9d78e2b97e33d9590a7155153a510ee", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5b30d4b30f9dc3d80efbb720a7ff9e35822d35fc6a56e9930d64a87906c88000", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxoswc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6ca47da37da8b064e1ac2c9f6c539804e767da031b7da2f1239dfbc6bdb7aaf2", + "regex": "." + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4fabfd71022c4fa29785dcda5710afbcb220aeda6c59dcf28b7298146717e492", + "regex": "(?i)^https?\\:\\/\\/grfgrgrggd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "308d3e32a0bb158e61fa5a756f26b2d46820585822e2209b5bdc2e3a787441bc", + "regex": "." + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "86df1c38c03719b244d8c2f963c4776d86cc9bedf475a2dbb7c7c2b117cd9455", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.zY8W1djHuPXByztiigrHa27mmFZyl\\-2FRWcJaDk7zNlqgcHeyt4c6FNVt23xk4KTEXvUJ3V2a4OYoF5yq\\-2FgtKq6S\\-2BpOmfMrnwxWQMExV\\-2FUQXkvwqXrShMALSUxgI7qcpCRIyHW_M7561dTk8oPSP7\\-2FkK3w4hWclYmJisJ8A497rqufQLa1tU7R9OJRRVA7q0W8O6yHalO\\-2Fty4K9Cf2ECurVUQlCZTkxCR6FdKc2nyoZhal\\-2FhuezPO4yQr6vwrWL8wvt9PO78\\-2BgrTy2AB3lkjupzqeunoTBfJtOTnlZotvB8bQZ8iizkMFUx5NnsyJv8sMkvz9QzlmnrCfhC\\-2BEeibiucX1pnjQ\\-3D\\-3D" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "2d8411d1d327718fc8cb3ae6fce7c3d5d01c40be55289057340b3217d4b251c5", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "be9a4f67700fda17964baa23a78a1401d24d278f4f2c6109494dc379c7b901f1", + "regex": "(?i)^https?\\:\\/\\/rem128201\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4d135ddf3a4a5849567ad2fbfa60c14e32e3b5704a485a808c88a11ef69684c5", + "regex": "(?i)^https?\\:\\/\\/holiganseq1\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known" + }, + { + "hash": "1d18375cc3773771bb580484b35b47f0f9bbe5705c297a7e01d9fdead2723cdc", + "regex": "(?i)^https?\\:\\/\\/service\\-sos\\-compte\\-support\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz" + }, + { + "hash": "2b323f6905c801843f76a87bebfdda4db7faef33da21c157b2e86522c5215739", + "regex": "." + }, + { + "hash": "8a7ae2fa9d26c87c0bc67a4239e1268a52781ec9364d4b16486839e58e0c120a", + "regex": "(?i)^https?\\:\\/\\/service\\-sos\\-compte\\-support\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "4418d26caa57f63836f145680381db243cea66b94d11abd6b52024a42b654e22", + "regex": "(?i)^https?\\:\\/\\/hjyhjthjty\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0ec1963ec119fb05121b12c176568fb404b6789d73964ab03adea0dfb4a99c60", + "regex": "." + }, + { + "hash": "e46a9490119ed54fa9aaad37269ac6570a8493978bc33a1927221d1ad9e6a6a4", + "regex": "(?i)^https?\\:\\/\\/rdg7j2\\.webwave\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d02ee682f05ae296adfa21cf7c65878e21e5b4c2117423e07892ca2823f5d821", + "regex": "(?i)^https?\\:\\/\\/hotvideohubu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5b121d90038be22793547979ff941ac35687bc99db4852ea4b75e1c538472caa", + "regex": "." + }, + { + "hash": "eb544d3770cd04a25a1416d573cdacc3e9be1eef7aa10abbc248a1ed07dc4f1f", + "regex": "(?i)^https?\\:\\/\\/att8hdpportadmin791\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz" + }, + { + "hash": "b4d52adacf28e58c4a18b25149fe9e1fb803fa94b52455db32e91d3db30b7905", + "regex": "(?i)^https?\\:\\/\\/hjyhjthjty\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known" + }, + { + "hash": "61eaaa209a995536d6c1dfa2c6e06fa3daf37ef36e3d801bff5ea5f8211d172c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+KUCSnArXnwbEj4lqcbusFn0bRie(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8e7cce37686ee4fad093245f9b20db8226fe44feb4ff412fff6f6ca70ac2b8ad", + "regex": "(?i)^https?\\:\\/\\/juno\\-webmail\\-101562\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "43bb46a6e169d48080defbc2b66c08502a730bb64bcdf720a8c35e3d377b0456", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "67c48afe046a5e23469d99a0c7ccbb02cc34ee5a9b677f12f934c3dcdb549153", + "regex": "." + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "bc6eda674fe6c09fab02011b38594d7b6923d3b15d6f9d6631c6639bf5925dfd", + "regex": "(?i)^https?\\:\\/\\/pub\\-0880774252324c7ab1e9ec86edfabdd8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "babfcfe155c05f881fea3c0751a5b46e3af7b9e160a0f4e00bb823e612eb1270", + "regex": "(?i)^https?\\:\\/\\/amazon\\.lzgipwlm\\.com\\%E2\\%88\\%95nbfdpicovv\\%E2\\%88\\%95uhmbt\\%E2\\%88\\%95zefcx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uadvdts\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ebae069757a18178f55c8ddcb5f6815f8c698f44f3fa2da7357374ba967c00ba", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9164cb21134fbbe664bb0cc4705fc791adedca5ec32c54c9d52f0680490247dd", + "regex": "." + }, + { + "hash": "0dfb76e1ccf8796a5c45651d2a4631fabf8e120894aad2032f08d6eeeed78821", + "regex": "." + }, + { + "hash": "6c1e86cddf5bd002e0bc65b35543850ef7404395d25f09afcb1f2075f9df896c", + "regex": "(?i)^https?\\:\\/\\/biotracker\\-organweaver\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+cache[\\/\\\\]+oadyeftt\\.php(?:\\?|$)" + }, + { + "hash": "fa5daa8e83ab8215347c6aca5985981dd1c75d26699194039153b1539db343e3", + "regex": "." + }, + { + "hash": "8339b612d771c9b99ec1775797a312e4192e870c6297181dab319557680af3c2", + "regex": "." + }, + { + "hash": "cfed18d42acc8cf3b6bccbe0c21c6d503b48485ee563706c5fa8c6af5d9685e3", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxoswc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "dfc6c3cdd74d58f99461db4c6a7702e409ff7b2156e2d3945091179be03cc3bb", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1c5a5b5644cc543bac72161f55333328a5818e85d526e046b9a3dd7ee7add777", + "regex": "." + }, + { + "hash": "a3b70288c79350b06fdd9d7acd158c5c37ac46566c119ef86f12e9238a056cd5", + "regex": "." + }, + { + "hash": "dce114237511afaf1b92300bfc4cfc576db810c409f9d32425fe16d3e8419ab3", + "regex": "." + }, + { + "hash": "da5a1b92bb9f7d1a96950de8b8753a71af5398f0625f194ca9b3cefe999120c1", + "regex": "(?i)^https?\\:\\/\\/outlook1\\-tr\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "7406b2f7d209d68096658865a022ac8379b842041ae736c73fcb1b767f5145b1", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxoswc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6ae6b1c0e6b77e32d05220eb14ef135cfd26e04d86b821b5695507e9139bd867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e3d7ae944c1da9cffe48799f25b0bfef650e4145bd23b2ce81cbac6e8042c713", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "f7f9b82bc47d15a9bf8e024e72d021f1d8317fc8c233f7912e1a3214eebb2edd", + "regex": "." + }, + { + "hash": "bee1c78c53136b235d8b612faaf48f11ffe6769bbd688ed67f01960ff9ad403a", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "799d299b1b96341e063efe024e143f6b4ae96bf205c02d9ec592c2fe35b75da8", + "regex": "(?i)^https?\\:\\/\\/companygoodfoodcontast\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "a50c6d34c3da5b09fc48405b74361efb4eb3824361187c05c1478306f99d1346", + "regex": "." + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b0fe21a52c1b5cc8b8bc5db43e4c957b3b8686f0c2f14454223736b6b92a057a", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "95b810aed5aefa4fa048d7f56b2596fbf835c16cbbfa85e7a8ff53f7d897ed82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xfrt45(?:\\?|$)" + }, + { + "hash": "92c10357bc7bcfbe67d2d603e87966b407e655ac35b980bc0b257926eea01593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "76ad2123b2f6c82e8497c18ac036d45794a8ee0ec4ba4b55b11db341376e21e4", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d751e024c425c5266698d83bd4ae3f15f6bfcb754d56663205eb598733d732bb", + "regex": "." + }, + { + "hash": "f4c6f14eec504c9ff4e0ba49d3680134779ed6869f8db330b9918cc891f75151", + "regex": "(?i)^https?\\:\\/\\/hjyhjthjty\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "0a3dc11a6a53db67e358dfb2e826b1e9a0d29bc6ff8fa7ba29d33ee028096553", + "regex": "(?i)^https?\\:\\/\\/tukarpoindana1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0eaf5e0c965468758a2b7bd62d6d23a81b260f402e98fece19661f6eea25a8fa", + "regex": "(?i)^https?\\:\\/\\/hotvideohubu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bd769746b761272d96cab12b5ecd0e0c9eade30625a503cfbb95ebbbb3d6092f", + "regex": "." + }, + { + "hash": "673bb67e56f86c90a683e2d834470add15dc7f04fa715af28b0ce12069b83393", + "regex": "(?i)^https?\\:\\/\\/videodelight18s\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+radio\\.php(?:\\?|$)" + }, + { + "hash": "42e8403bebed2538fe0678307f840452b2b593e69a9fc4505c87cfd69918cb1d", + "regex": "." + }, + { + "hash": "4197fe77b1ef735aa592946b2a7ea776b4613bfd37bc8034a1969fb6537acb61", + "regex": "." + }, + { + "hash": "89ca55118e8dc751f23a2902bba4765bffc5d29b892e5c00751bc8d76c9c7841", + "regex": "(?i)^https?\\:\\/\\/sbc\\-109203\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f1139e627298abb5ee511f838524f6c068530985f80219bca8db1b9ad28504c9", + "regex": "(?i)^https?\\:\\/\\/grfgrgrggd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "41961ec568df06e01a602bc72ed01185bc832cb99e09829fe0c37b4036536312", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "10bab3172bec71c40a17e0b17da9dbafbe75a04d5644aba8868bf98034d74ef9", + "regex": "(?i)^https?\\:\\/\\/biotracker\\-organweaver\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "33940ffee83d437554264caf4588252a2042a9555b89d1a7db4a0abf80f3c43a", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0d634e7cf587c05d5944c16f9b2dfce48cd6eb03cd0807a84f4df69fdae2dfe1", + "regex": "." + }, + { + "hash": "5e7d852eac965816867e5db65beb5fce827c73e2bd2ecbba7f728ec3c9147a59", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "67fb6eacf3d5190861c2bf5e5972cf07a480485ce759ef14129e380297a16060", + "regex": "." + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3c8mfo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content" + }, + { + "hash": "191338fe1c37c4b68ffd0640562554c9499891abd30252b9268ab0a9a3df4c71", + "regex": "." + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content" + }, + { + "hash": "c2d3aab642df4ee45d1c4f7bb5c2a2e5b7737393702d4d9b3570f86ad8f23837", + "regex": "(?i)^https?\\:\\/\\/fsghfhgerggr5\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1b3f9063bfa4220e092a5b4f3d88e178bfdcbfd4823ea87b616a00155e8ee0a1", + "regex": "(?i)^https?\\:\\/\\/biotracker\\-organweaver\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "867e9b6f3dc993ff9cc80952eee8085305a8833f4b41798449f7fe5c6edacabb", + "regex": "." + }, + { + "hash": "1eb89b0a799cf4419499186160b7fe4d691ac9a42da48297f5c9ad2a8efa7a9c", + "regex": "(?i)^https?\\:\\/\\/ggfgrgthy\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oybfd[\\/\\\\]+71f6_ea3cda25c574879f4e96a22f82d76205\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known" + }, + { + "hash": "1985c67f66ad0365919b0de8ecfe3e4305bf210395ee1e8e62a6a2c829c71114", + "regex": "(?i)^https?\\:\\/\\/dfsbfhsdbfh8888xxxx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1c22faca9a47d69486bfa0016b6436074b297b148679b08eb7e956e6b314f87f", + "regex": "(?i)^https?\\:\\/\\/managecoinbase01\\.myvnc\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fae222818cf4918eae474ebb4f203f221f03adf71d05cbb15d1bb931db8a2666", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+one" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c2c2f7798f70672461b2ee2f3bcfba5d2bd23ea76afc439dd55146807de04767", + "regex": "(?i)^https?\\:\\/\\/amazon\\.xiodbv\\.com\\%E2\\%88\\%95jroxi\\%E2\\%88\\%95ujseg\\%E2\\%88\\%95mwimcstmm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bbyoa\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz" + }, + { + "hash": "4998421feb9331390afe60f3d432a62cab14cc3a7906a3f6100a2c122235d6de", + "regex": "(?i)^https?\\:\\/\\/amazon\\.haohs\\.com\\%E2\\%88\\%95rypaf\\%E2\\%88\\%95ddqmsmankf\\%E2\\%88\\%95ulsyup\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hqrmz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ece1e99b3b3157f2a9ae2df1859a98166a8bd14e37d4f46afa8b95aa14425cb", + "regex": "." + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b400236a8953efccd24ded464f5bf6b0c9de30eaca9159d45d58197818f5ff1a", + "regex": "." + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content" + }, + { + "hash": "d929ccf64c959edfbfe470e03443a0ada11f7c456683c72b12ed19a64470b352", + "regex": "(?i)^https?\\:\\/\\/galaxyrider\\-cosmosweaver\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bfqbrn[\\/\\\\]+smtphec\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.well\\-known(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1c5bbf1424ed49eaabd7fdcaead92aeace96e514e8c57a6a59de5a018ca1df02", + "regex": "(?i)^https?\\:\\/\\/hotvideohubu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d64f7f3dd7d084352dbb4eb3741ba8801478514280c8509791dd94b0025ed522", + "regex": "(?i)^https?\\:\\/\\/videodelight18s\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b23b5282903783f5f201b684d2e2ddd5ffe367bfcfa0dc159ba7458a5a14a81b", + "regex": "." + }, + { + "hash": "c298f107d5735d460296e1d430844263ff3d9fc65f5df150b0db5fe0add28ef1", + "regex": "(?i)^https?\\:\\/\\/annualonlinefoodcookingcontest\\-rg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "09c9b53655e9d750b4b05b31c8ec7bdaa06f7905119c54707b07976b71b008f6", + "regex": "." + }, + { + "hash": "75abfbe94001cfc033a32a128cb0e34cf114d56ada68669adbd47e8534062e3d", + "regex": "(?i)^https?\\:\\/\\/sioerufhoifusdiohfuzerhiushfjhsdqioh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "43635903572b78964adabf68cdacb975dc2ee1a0e08fc765e82e2f9956e3f0b7", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dfbedf8b4d00058347b21dcf06d0b73d3ecb918655822ca9b3c00e99338816e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "81e44fa0d292a6ada6c90d54f0ed63ea0de2071e744642cf371cc1eed86f140b", + "regex": "(?i)^https?\\:\\/\\/hotcliphive\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4b3dd8fc6e851df518df573c9a4da26747d241913dee8c359325c4d57a57b9d2", + "regex": "." + }, + { + "hash": "261393e64173bc96b4b293d6f23d09b489a21131f399d95d20ee415d7fa1a31c", + "regex": "." + }, + { + "hash": "a7b2e53dd399ab0e3ae8302c5c90125a0841ad565403ef9bc0a0b94571b8d2ce", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8acd2a74932f82a3356ec74d00684c7c8d61a20f5908ffac89004aaa3acfeaab", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "99b3b66e41b4055b5eee10f9c16eb59fc3fd20ec6e0d609960b7b008ddb65d6e", + "regex": "(?i)^https?\\:\\/\\/mail\\-107456\\-100017\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9365702f9e1e0803f782ce5ac7052ad02a738095ed061c9e98ad0d626cdfd93c", + "regex": "(?i)^https?\\:\\/\\/hotcliphive\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "467350be5dee8494a17151dd76cbb3f2aa1bce2c169915c16dbf97c2757bfad4", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fdf4f10721f3f5d796965072b4dbd9dac0b5478d832b06285b08b1c72936d9f9", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "88ef8c186f40c1e7e336fef6adc22ca694b4a4b238eeb36b6b9d5f84d1416350", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-d\\-renta\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4c8a2bbb9ea894417d526720ad9699981ad9f611e50300d5917e2735bbf5f839", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7e27374ea1a85295ff12f007818673d681c1e69a3f38ad8c32bdf43b86cc9467", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0ee48883f2a75fa9f9a95216f2975cd8d5ee6ef9da3ab8768ff3a6f79fd484a2", + "regex": "(?i)^https?\\:\\/\\/currently7377rfj\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a71037b4e3ed3eef2dbbff187a9a57012df2a261c637c010ae79540367264655", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1caf3da7bf1884789a62c004c26844dc50d93246038c4b9400584d22476ebfc5", + "regex": "." + }, + { + "hash": "f903797e3e4e652a8707da982a1718208ccd41cd6fa7221fdc3d084d43e3bb19", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+swyf(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f6337c41ddf003ad05bf05439d28c8e38e343a05b26d6b96e5457ba6e9909df4", + "regex": "(?i)^https?\\:\\/\\/att\\-102205\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1dd8d3783ebf4a0742d41c21f2f0f744fae951b98a857240227cd40a77032", + "regex": "(?i)^https?\\:\\/\\/aouiecuhfuhjhjishiuhfxizuxfqojfrzear\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "641f9d7fb7d3d871fa3518d016e768b1d141cc9f3df0bb4907a2e48bd1b45e31", + "regex": "(?i)^https?\\:\\/\\/jgssty3312\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d5fa85e47f7cfe81b7e5ebee951414e06546ca705dcb37c913c49afb890003bf", + "regex": "(?i)^https?\\:\\/\\/betistyon\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ba21467e7494c511eba8a0e611697d9db50e1a4c8305194ff0cb3856411308a7", + "regex": "." + }, + { + "hash": "0c20b66f3f26efbbee667e133e3422029e807bc124ae4593f4ae9e6722b66665", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8f249c37dcf300c2d40ed0bb1898dc1a5df293cebaf53d8ac6ee1d5738e55a66", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "040857be53cf08c7e035e824dd30f1297e470c043833c39af70172059ad352c2", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d13c78e0898dac3851af1e7b0691339324a1815f36b9b304c7fefb8b9416cae4", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a583875392211233039871f2d30b555087c2d0770e61630ca75ed9f035c4437c", + "regex": "(?i)^https?\\:\\/\\/sign\\-in\\-att\\-108883\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "602bb213904080dcf9ce6df7e150684857dd24882971682d75be146343b62550", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e407c9f5e2ddf685614c1733f073dd586cca74a75844b340399043dc14ed0d10", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "05b5f197b1f24dab99dd86e3a36de4a3dbb8d5e82f9f8e5c9c8a3a5ad161a38e", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ca8b004882c877730657d729b3854fd941ba62f2f4956323900acb2b79f27219", + "regex": "." + }, + { + "hash": "3a953894653701563f56185638d64d2a3e117424b8da0d19bb0942c12552be21", + "regex": "(?i)^https?\\:\\/\\/annualonlinefoodcookingcontest\\-rg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8b7c8828dc68bf82c2c7522620334e445094c504e197ac8b4b38db4784ea00d6", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a1d6fbdc6392340a68c1faa6a5ba4a594fb08ab3cf828aa82fc7d463bf53790d", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "513da76901e57002c1a280111405c92e68590e9bfdabe1b5db929328ea0c3ad2", + "regex": "." + }, + { + "hash": "f34120ace9936d46ea9c08501b112c508739a3754919f13177f0c13dd7a4b705", + "regex": "(?i)^https?\\:\\/\\/sioerufhoifusdiohfuzerhiushfjhsdqioh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fcb60f15a208527c57c46296e1302c9800cb0b888eb3ce5334a0d26109c7bbed", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "48801f25a572e9a4fe097254acaa157c3b5232b19fd18fa0420c2a59cb196ca3", + "regex": "(?i)^https?\\:\\/\\/aouiecuhfuhjhjishiuhfxizuxfqojfrzear\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "003659832415005fe396c4daf7924ecf9560ba3555dec0a25eea5371ec24d3c6", + "regex": "(?i)^https?\\:\\/\\/howtopublishagameonroblox2019\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9c577093bf08c8d0f5828941b6afd2135c4157fdc5c58cf80726e14c8e2600b6", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e9ebf5b267527eb9470917874612b58bdcd1b603db64b985cc74e34107444f99", + "regex": "." + }, + { + "hash": "eae7155101e09321bed2efd3b719923af66f323d874cab2709efc459e227985e", + "regex": "(?i)^https?\\:\\/\\/todaycliptrendz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "36dbbb38b43d0968e4e524d01dc3bbb09ba4683f69efa833135c23e16c56c873", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0aaa5bb399eaab6fa505b5562c82f8a787efb466c231ba043aa753321cdcd530", + "regex": "(?i)^https?\\:\\/\\/sign\\-in\\-att\\-106455\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e522109881d961414d48d607defb9f32132d8d4022dbd8d3c7a1b9edc7bbff8c", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a9c7625e1a95efe6a54e4034bb1c40bfc62a010e398c8d9cbf1c6d425a8ad77a", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3567bd600b77265b71fbfc072402a5f693e08517d0a39f0ec450fc38c726ae6d", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4415fb5c43f927a00a5e8ae421ed826c73a02a2ef4ce6f22b8105660f067638d", + "regex": "." + }, + { + "hash": "9e7d5da0a3a7d1d924f27cdcbd2d72a86511f217ca4c525acf54172af4511e56", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "daa8f9701b0b57a87ffbf7382d6598ec1961afea53ab9e0200f63aef353a2ed5", + "regex": "." + }, + { + "hash": "1702d7419212e78d75b8fc8fd9a62477f8acf18d308c7d90c39a9be9fbeb9fa0", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e36a3aa5d8bfd3bf38c9184a90707b22e4a857a28a208edf3b0f5cfbc4dafca0", + "regex": "(?i)^https?\\:\\/\\/iohdlskjdfhosiqfhqsjkdfhkqeuf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5895af39954416cfa10d26f87dc38bfa72b4cd288e30122f1350aeb18dc0c56b", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-d\\-renta\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "979edc64937a685239220444ecc56f1216976f49bf235544995322612914d242", + "regex": "(?i)^https?\\:\\/\\/annualonlinefoodcookingcontest\\-rg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d0a9b6ce170819095a63bbc416facade0e9c78370c4f04c49973220212bf303b", + "regex": "(?i)^https?\\:\\/\\/mailserver02\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "22a1bf8f304bbdf3f64a5019aac78c8e9a09eca6c9d25c11eb32252c5cd58fcc", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dd47fbae113638260b2adafb4d2e732524c6f62dda0a2a78994d541d81499a56", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1d9d5f1b260f2a9ff8b6b53e7fb552f24c3e92fbdb11287c994f7cf971debf85", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "858ca84279d1f4374acd762804f371995356ead736acd086e8df9e9a20d23e1a", + "regex": "." + }, + { + "hash": "4dd6d6bac58268cd54d04473bb8f60279fd542d84ce215c88edbcc1274386560", + "regex": "(?i)^https?\\:\\/\\/betistyon\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "77ffab8be9089e44dc02d819cc7349949e1aecf210b47922287b4d7df6388faf", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "33cd727c4769158334bff486d8bfb9ffdd2fbc8406d8935c60fc97fa610e72e2", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z83zas(?:\\?|$)" + }, + { + "hash": "c5580cb56983d06f5c1ae898bc669594f84e0b6bf502c69634a467041c6ebbb4", + "regex": "." + }, + { + "hash": "178b6998e95f68c5241b6267c337256aed1f7ec9253f76774a2add2798ef0c32", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b9c86add428631da62d9d035ce5e8c309ea149691df1635c61fae3b807ede7cd", + "regex": "." + }, + { + "hash": "bd280aec3ca664b8107e375fbddbbcb9df074abf2f705ea731139ec8a78e879f", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4cecd9eb79faa8e0620011d12d2adbf313eb59bd25782dd25dc0e8416136771a", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cc0fe8bfb54f1fb3e5e236e693df42a4b139ba18ea2f540864609c28678e07f8", + "regex": "(?i)^https?\\:\\/\\/zioerhhiudgqsuydqhdiuqpoiduf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7e2ab017a20ee533b8940a8ee27579b9349e058aece99a0fe2f8535fcc732c94", + "regex": "(?i)^https?\\:\\/\\/aouiecuhfuhjhjishiuhfxizuxfqojfrzear\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4f91641a14daf4c1734ae7b938c3fa806e8abd349085c8dcb2e3cdf5ade4fab9", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5e865d9591104272cbe0faae05c2b1167ecb3087c08e81855b31dcd0d28c20f1", + "regex": "(?i)^https?\\:\\/\\/betistyon\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "65c0f183b1d372f99aab5acae0322c1f13e728108eb8c62b2bbedaa83fc2c5b1", + "regex": "(?i)^https?\\:\\/\\/iohdlskjdfhosiqfhqsjkdfhkqeuf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3cf5300c84bee7708fffd35ec61ac5cdcabd7bae214eaaa4fe5b60b9ae89e2e2", + "regex": "(?i)^https?\\:\\/\\/annualonlinefoodcookingcontest\\-rg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ff9373cbbcf01b9645d1515f29ec53d50ee1d3190bfb9c3bfbcec9af984bdabd", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9127e0f6b858b4714b40a9108e2bcc2b6d69371b184c94744b738e724a809f91", + "regex": "(?i)^https?\\:\\/\\/zioerhhiudgqsuydqhdiuqpoiduf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c8bb8a889aa798d39ca4de5b1904de98e51762a91558e798c7af80a1fd84ffe3", + "regex": "(?i)^https?\\:\\/\\/howtopublishagameonroblox2019\\.blogspot\\.sn(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c77ad7debd8612c1ffd55cc743e8b24186ccc3e701e03fc2aed28117c4b50851", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "146c0269437eb2a3bb30a37101f8b7d4d402b7d41deca0a2386e66d270abdd0c", + "regex": "(?i)^https?\\:\\/\\/helpmyaccount\\-fcd05\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "a49fced75368db222056d0f346fe1648c91093f6cc358c3c809b0e92344bd85d", + "regex": "(?i)^https?\\:\\/\\/nick24frbany23\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7d064216eedcc2e575ca5019caa276c40b568892eab0f0a9cc8b1b9fbd43ff20", + "regex": "(?i)^https?\\:\\/\\/mir\\-payments\\.ru(?:\\:(?:80|443))?[\\/\\\\]+39d6(?:\\?|$)" + }, + { + "hash": "a374be83c9f5e8fdfbf6c44baaf36cef560a36ef011be9c31b6fd86c73e0925c", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "09967d39bace04fd1e4842e112af545de4b5591dafd4ce2f196e063aa0a8f5f4", + "regex": "." + }, + { + "hash": "e75500d1e80fe481cc4b89ef19c0f96d6636483823c730518fa059d30780525c", + "regex": "(?i)^https?\\:\\/\\/zioerhhiudgqsuydqhdiuqpoiduf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5edec4688d46d8a9fde7c4f5eb93dfb9155bc95e9612d44c1320b8cbf8b05e8d", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "571104a9cd50bd176ad89afbe194364322065b368440263cb115cb5dfe635692", + "regex": "(?i)^https?\\:\\/\\/annualonlinefoodcookingcontest\\-rg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7694e6725f78aabad3e24b6b52d2bf576d13c3e6af526b07992b8c24c0a520b9", + "regex": "(?i)^https?\\:\\/\\/jgssty3312\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "726ad32356f14530557342a5a722475ba9b61d0e3110c5cc7cb5b0fe088e9736", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "94a937d91546cbe62d7911ff665475d484436ce84e80033c96b715557c7d66d1", + "regex": "." + }, + { + "hash": "8318ec1e30fae84bd19becfda80ca4f7873e141ea19b26c8933b7a7d7f50c15e", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6e0e7655633905f5bc46b1c1fef2893e479a90794d617413453e5ec4f9c2d0e5", + "regex": "(?i)^https?\\:\\/\\/jgssty3312\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "885be563b4046291830bf27b41d18aab84e693ed58e9af1af8e1d793bd85c9e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f00790fa79adc103213a594967946b9d0754c2fcbf81fb912e0feca603dfd43e", + "regex": "." + }, + { + "hash": "e1a5b5170793a593b01507ff949bddcf60330cd7f8c07b63b8dcc3fc6bea6bb1", + "regex": "." + }, + { + "hash": "ca2b5b8b23a569d215219346f785e0663c960f9c47f49c032e5f694e7cfde0b0", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ea729ca0d8825bbdc50b79e9bee3e836f618fe00631dafe0449ac5b50ba8a91e", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "15c66cf673fe130fe50e617eacfac44c6dbd134fa54722cd3f1728136752111a", + "regex": "." + }, + { + "hash": "f4a04047866ac0b30da7d4e0507bcec809390e9acff9de0311dd24897b77bb55", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b3478568be60ae884e67bfa6ef45a51a1e450fb8f3ab1d9730c595953efb53c4", + "regex": "." + }, + { + "hash": "e012a4d475af9120d76d02cb2945e27c2b5a6e153df90f395d2c4bf25955ba0e", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "e66c2b58220ef15525a4e6b0c5976c427704af7c8fba6e0142ae9c19135511f4", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "71f1c9be4e13c96953faf2b8e11425f04fd857f79af2936216e617b171dd60fc", + "regex": "(?i)^https?\\:\\/\\/shande25\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "f87c993fdc3c3376fb28706b978da8b24930a29e84ec330e5006a507932a3f6f", + "regex": "(?i)^https?\\:\\/\\/rbxx\\-24\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c889731eb75d19f3a366c07d9b6dc8e81c59032fea51218cd6385d2376552e9a", + "regex": "(?i)^https?\\:\\/\\/kundeservicesatander\\-logginntakk\\-lion\\-bzzfwa914697\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ed4bb11a6256196bab8584ef84b3fc20e1bfe3c72000e1be1743c61a5b74adcb", + "regex": "." + }, + { + "hash": "7455b24462bdc734d6a8a32da60ab9a5ff2722bdfe6475941c0ed13732830051", + "regex": "(?i)^https?\\:\\/\\/hotcliphive\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e600d5e2bcf9174cb2cd07f4dab6713b6d0cfc0691609041f1fcb50a7d24a08a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "54dc8842bfa9875d5fd1345a4065c99e321552fbcf7c9f8347df1e81316fd491", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "baa0cae11b435abb91ade3b04f79279a951ba4a2e78988676121672eccab2418", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aY7(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e22dd7c714a0ddb9fea1b1871ffa20fa4c866075e0659f371db22fa1918a8551", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "314c8fe66a3c3e0fce557361239bf6b0db67d5a8d1f08127a99bca18b5a9ddbf", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "76b61c22212df9b58bf5bc9ca4e6c043c37790871e822cd4fed2d33192fb3ec8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.hoqof\\.com\\%E2\\%88\\%95fuvnsozzr\\%E2\\%88\\%95bunzetvcq\\%E2\\%88\\%95aznslc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ycyhxyg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd49ae36d0b026267e486454b4b7672479456ee61eb0c1121f8164e6b26ee4b4", + "regex": "(?i)^https?\\:\\/\\/nick24frbany23\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8147a3ee5dfa6de3c676d2532162478a50f8c20839ed1def0db962c382d28e47", + "regex": "(?i)^https?\\:\\/\\/aouiecuhfuhjhjishiuhfxizuxfqojfrzear\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "12822620a280300586b32d9c0268f84089230f786a406c153c880772a01a216e", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f60e98dd8648f83b09e09e27f3fd8cf7cc8032fcc428e95073a9c8b6302d47d8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.pzfihr\\.com\\%E2\\%88\\%95rxlwjdncsm\\%E2\\%88\\%95kjqxjkiw\\%E2\\%88\\%95iutvjurzna\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zjuqmifc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3b6587127583ee5992e878bff62c02df22db65b18227bc41e8dd20bc01d30a50", + "regex": "." + }, + { + "hash": "dbe152398fb3532a975200758862f1bb22472baa47d3e802ae89fbc15ba245d6", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "acfffbbc4cf988dec39960018b4638587514adb58c32000584b5f02ee67ff99b", + "regex": "(?i)^https?\\:\\/\\/inc\\-102215\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "35792be69b735e662e892b9c5e605cc621e37c549ad8135fc5d7b2f71634a28a", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2a9d3ec7c47afd27c7c6f8502d83be634e17108a18705a14be320ad5fcdb35a0", + "regex": "(?i)^https?\\:\\/\\/easyweb\\-7408b\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "bff55c2865f918ff2f0a66337e77d0e8299c7d045e1d84bd62539cbecbbf1ff9", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5272630a627ab2bdd89b219e51cde2f74cc968ed7ef7de1d3fe48a731d1c0e30", + "regex": "." + }, + { + "hash": "320130d2b19592e8564587ed9d21b728b58710857e36ab311b5b58df7e579069", + "regex": "(?i)^https?\\:\\/\\/rbxx\\-24\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "97602cb4d393ab45a8c4a43eec8bf15eecb37d922e6d22aa149fb098347f68ce", + "regex": "(?i)^https?\\:\\/\\/aouiecuhfuhjhjishiuhfxizuxfqojfrzear\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b55da37812f44b1a9d256ef6a4dc7af524026e6a4feb197e6d4666a2dacbfb2f", + "regex": "(?i)^https?\\:\\/\\/hotcliphive\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1b1e6a6e04502d7fa707766ea6372c42c922f179f103f80c098e939023d970d2", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d1c8b3d6f6a858b9be9b74e4621197f8d53a26702caf0f7f0b6933a908bf702f", + "regex": "(?i)^https?\\:\\/\\/videoxxhot188\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "75755690acc99a917121c321e0648af6ba0e441fbf5248df017f2dd7da09ac8c", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3c01d1b2895ed900f3b66cd7673a7bdfd20d2bece3476114e7ebcb44f1a2a3c2", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-d\\-renta\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8b91ea0a3ba9f66e50f6efc4056a60c4e6ee1541dced641a349d4c6a14933ea4", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "94994fedb87524ab94603f55f18dbba7592c81b0e9388d14af80500d44c22ae6", + "regex": "(?i)^https?\\:\\/\\/howtopublishagameonroblox2019\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7aadb56594ffae0ce1237422b93c7b3930551439f16862785a25da766a7d736c", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d834e24a686defc266086579775a0ab2c07c8febddf5abc7007fb9852e14841a", + "regex": "(?i)^https?\\:\\/\\/sioerufhoifusdiohfuzerhiushfjhsdqioh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3434994de6320b23d69784eae4075df328db029da15d8bc80cd350d80893a93f", + "regex": "(?i)^https?\\:\\/\\/betistyon\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3bb1ff6bfa83c9865172c77899466e27d3a1a6dbf2252c0ccddf84a9b40a629c", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8a3e638eeb1794a9b90e2cdb1fd60006bb6728092a4c4223dbf63c90d0c3204f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vdbnr\\.com\\%E2\\%88\\%95uwxwvnrf\\%E2\\%88\\%95dlbzxiplf\\%E2\\%88\\%95trytb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gwuhewf\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e2dd4d5bf18cd58ce2388d78bf0b4beb364193a4df8e3303c6a77255fa2e133d", + "regex": "." + }, + { + "hash": "187e5e093ffb596bbe8f5ec84e58790dad65362bf40961de650eeb351602b57e", + "regex": "." + }, + { + "hash": "1ae6db3b4793cb68e9abc9e46f1bddfef077f4019c93ab1956137658944e0b4c", + "regex": "(?i)^https?\\:\\/\\/todaycliptrendz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "174427483407daa6461eaa1105c5d7e9c4ddb65379fa26211495c9e12d9add2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r[\\/\\\\]+ZidICQXhtIJK5saFIaS6z6xr2oaJheeDN\\-rg\\-yE6hyGQpCZG9C8_W\\-SwFIgUj9tpfSQCxLrSHSxGQsa3YMRkaedwzVwZfdCUOpCIe_aWL86zfFW3nKpwVDxZA3r1fksNv3U1Ftv08i_u_4hWGuqpgRwpip1NpnsySfjaFzzqkQB5MiIlpdpCkVvlPp5_nFdIMYRcorXEwGfDkgKfnRJbmymFY9ZoAKi_4cMAANmJ3AhPqxABTJsA5jwfunQKSdg7\\-ZJgjKEUvwFPEhReUyJrWRlxmO99cdwy7L4063mOXLikSZn70vPOAFpRlUSEIV8V0pyZQq5ZSqyycuzJgiLNXJ\\-P7wiF3tslwyMATRoKWi4dW9qLHxW0SzGksrYFkc4KyriFN_msdEilTVBDrdMM7k\\-rrEAv6iMouwnVlmUuYze\\-SajiDTJOJ8rJ7h\\-rmwz2fNl8FcVojrjRyhjsrPVtK5QamifOh4JOncQ2kWri4gtW2FrwlYv8_YbtIcUqLG5oJMXb0F1GdMy2iP\\-8Ua30tNZ4XtLMyKjKlp2dptK3UQUQN9SmooiqrvGvSvKUVwhWbDzYcTBV\\-CjKytdi_mWWjEFyAEHftkDrrqNgfw6UlTbVEIyfw2fEfJqyT2Z3z6fhUghbEG\\-mofAVeiREiVn84oYmsJS19BhDybbrSwjy5lViCLuGh7KED4oEdOzFHSjqRYJrfK4dnIM0BhdsI\\-G4K9LWXkr03InO8aGypqlFRhfz8X72qDJrArROGpN8n8HuimBTdSFO0Lypkm7y88bdh9rWlHQxTDIbCYIOwyuaWYyEeAGGSbfPdWu_x4_acfxg2T5FMShTeJj27TOBX8xTxN8yVgDgXmPijLbWkMEvJmJYP3tF8ZAoeqfs2go3gnMIetw\\-JvPNbRIiA8IX080XXB79Sre_WaT5Ii9C9l2G42HGNkNHYqlLxrJwZAZZbc24Uhf6Bx825z\\-l1prS3vPiW5P6\\-pxJdaqwNtMtzF5z4PnlM33L3kFYxnmleY1UVjwkSAFs\\-2AoVjYhpBOjy7THg0h6Du0uIZobHnUBwzK0tcnr5cjt2m8KIUhywEyolJcAmtfiefZ2HAWL3zxUYXR3g2Z7Ckx2vZZVl7FdoUJvSq0z1AtXZBe\\-R\\-jC9pP5SZ7ZWYCN5iW6j\\-pUUTUb9KCe6O\\-4MywWYeCewcRuNlx8n\\-KVD6A7IJl25gA7b029rTyvyY8OUqLtCb4U3aAK8Yz87rPAw8y1TRpiHYX_VAm48rwCQMIM7iBltAQEgyXViW3EHABPu4m0FDlHvbPehATkcEQczMP400LlQq5ELOM1X\\-kCHfidfy1wABLWZx9ApNjHo_9lrhDPlo2vdHLT2JQvsCHCJhSuE6d3gBbN9jKx1t9QMcjYBk_KgVDziRvQ1\\-9Mf79RDvYRsPUllcc59JJp9I1ItytU7wJP2Mndb4Mf9bBbydY5baVhQic5e3inG5aRWsiJgiur9nW6RyvUb5_PV8hjkjJezgNi4yRnfL4ME2TvVFo_zcSv81KSu48\\-zRfV\\-qByNDWzJ3hMO66I5n68GvpFC0FAyl9XMrpXpgdFmU_y72mTAVWjcnu0kfv\\-JNQlmMajiSo2ip_ueaMLSbFINUCv8qJPDpDJQA3c\\-YeMcZjE7DMmjmrY1mvK1\\-Zw7wLG8EbymDKpW0vvaJiVEmz8nGMZ3Ck7hPJq8xZPq\\-q8hQrih6fZE8gkat5P_BJJEAlCmA3XetTIRTOF8\\-M6Y0rLkXtxzh4PIg5oV80UlN3TZ4BkW31jPi8Twy6L3nKVI00jL0Rm9\\-n1NQCTwp40JtRnxybEgxXLr0cUor8k59lTG0XxQRWwppf3tcOV2qYWTR3aM2n\\-kDG\\-YWKVHi9LX_olpA(?:\\?|$)" + }, + { + "hash": "1257e96acde9e7e8bc3ae3a92af51b1cfcbfb53030e7776b070de0c790ae0c06", + "regex": "(?i)^https?\\:\\/\\/zioerhhiudgqsuydqhdiuqpoiduf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2d9054b19ce57c68ebf5d3166a510f5023c308d7c50a31d22414a2805f26d95f", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3e06015e872c7ab5f532df3ea79263bd55b9ac681e4670898f3540b0b65f3cbb", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b590735c06abc5eafae4cedfdce4f184b561cb34d4f018e3bd51295543d03b4d", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8115e1f23b8147e0ddfdc05a257137fe4f953aa6cdcffdf7308e58959060c892", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "70037a90da1ada1472f2142d124ea4fd11e9f32d5453685d25de620d417de8e9", + "regex": "(?i)^https?\\:\\/\\/amazon\\.gpplvux\\.com\\%E2\\%88\\%95nuuachwlfd\\%E2\\%88\\%95pmwzlehqb\\%E2\\%88\\%95vmpmdwumy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qjtfsazjpe\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "59974cd85fd1c418af1b72771dcc38c9b569c0b12a6969fc296c3ee31b0000fc", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8bc5718b0a45ee216ef6da5acb05ebfbc1653c0e11eee7a23ca04abcac207e0f", + "regex": "(?i)^https?\\:\\/\\/betistyon\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1c45638e6ddf90bd70bcf4b3049e3c697ffac69134e7514a7b1255c38dd438d6", + "regex": "(?i)^https?\\:\\/\\/hotcliphive\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8d302cef9a47b8ef42aa42c13b1866e759b0859235d10770aeabcdbe8557af06", + "regex": "(?i)^https?\\:\\/\\/iohdlskjdfhosiqfhqsjkdfhkqeuf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f15135ee6630e12dccb15e136b2394ef7e4992ffe250a2e2cd1970a3d4da8ce0", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d8104ff6a70fdb5e0903446779003a6487c324f5747b55ee0ab1a0d9565b48e9", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "61630e04c25d4b1c80d7fdac6e404049e86e04b00377220891d32f4c6631ec78", + "regex": "." + }, + { + "hash": "686b85bf774b8c5cf54a91913b8fcf6c19de2da90f955167b16bf9508ec6f3ea", + "regex": "." + }, + { + "hash": "440cd094ec8a00979ce137b12216503c32c86644b6ce6aa05743d28b213fc17a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=\\*(?:\\?|$)" + }, + { + "hash": "6ee557eb30788d469721af7e846d3d2d640241c1379609b3f4ac65286dac44ac", + "regex": "." + }, + { + "hash": "23b3f226488552531f240085e6fb722af811d20fbe4f7c1473b9d42d1f3f9d7b", + "regex": "." + }, + { + "hash": "085bed3da68631517ed33008a2d401366d97b75e5fb3063744c1e74f9137bd29", + "regex": "." + }, + { + "hash": "c29f72ed3b3cc9f08cb057d77e448b8064952cf8fa08691cdd493f9fd1b6c70d", + "regex": "." + }, + { + "hash": "b3ae08dd5d3892966cdb54a9068949e77338ac605db098c6ea216353f1b3fdd2", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "37f8744bbe9cc2b19ada8806ed5b02398c35a18507bb5fd2dc24851a74dad5cd", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6ee8ec1e84786243d36053766fe29a5b520a107bd0a3c29fa3498bfa67f3912c", + "regex": "." + }, + { + "hash": "76d8de4b987af2e9907ef54ae55501ef81703f8bd1eddf09a155c43a08c5cf46", + "regex": "." + }, + { + "hash": "f4a806b584acbaa1e531d2d6f8a3dff7481b66b8e3c7dae55bdc69302e06d4ab", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "331a7c204a0b78e29bc721f293212c0563042f6d1ed92fab6dc695659681d431", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "44bdf5578b142b852a72e087df427dcfb0071e4094eb923dcc7f64762cd588d2", + "regex": "(?i)^https?\\:\\/\\/douglas\\-deals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "889d559e6d2c5584d146a29a5eebf97014f98cfd8815f3ba7e886d2870d3485a", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bb430bfe0e77f94475eaa63f47149272958d901ec71eb9e0d57f606a49ecc161", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9890f6bcbb542ecfc6433e82466475b977e7eb70a1801d80a87102eaf3636582", + "regex": "(?i)^https?\\:\\/\\/jgssty3312\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8b5484584d19f754022a5ad52300bf1dd169ba479e4839451f6558a26362d5e2", + "regex": "(?i)^https?\\:\\/\\/iohdlskjdfhosiqfhqsjkdfhkqeuf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e1e2ef511d832b77303bfdfaf52b25e8ac464d9f38ffbc5c3d30cc8285787c19", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s2n6vj(?:\\?|$)" + }, + { + "hash": "0ac48d7a337b75708639df376b9033f692b5985b3e4153d9a03368ca21c01318", + "regex": "." + }, + { + "hash": "20f14907197891772415033d2e197805d695c926c9e9e44dfb93a041ef292a54", + "regex": "(?i)^https?\\:\\/\\/att\\-102836\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7c927c7185f29eb488a7f3ea9d47ca1c3bf848e079e84ff927542b3f51e1f96b", + "regex": "(?i)^https?\\:\\/\\/hotcliphive\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d8a5a0698364d274d8c2cfb4a92eabe00ce1df52e13d0231e22f254254209ec4", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "58c3a40134bb73064e65b847349c713ef1a381ae494ae6471eee9d1eafd6de42", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4e6fb46d24ef623e4ec71cbe453aac40a786c85617fe65e9f03a528ee41ebc66", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6b87e404c25269e106f23aa2c02f63827469c28df28e4cbb65b2d36c78c4f8e5", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3512e6d5a8b38118d775dfecb4721d7f99475e6c41c6efc6e5e551040519efe1", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "33071db3da0bd5f422b7a3a8f75b341946ffbc2ac09a07de72367692db6546a6", + "regex": "(?i)^https?\\:\\/\\/howtopublishagameonroblox2019\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49aa149970c272502ff3a594dbb9c778078e11bc7dc5248c68a90be9acc3350e", + "regex": "." + }, + { + "hash": "6e70dd62bda4a5287d4e0ace6760247396baa5d153e2bc5265649a04747d9a7d", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a1095db38e6181f34d14f84ad780e6fe8d693d7e0aa5d521f858472cfe10e71f", + "regex": "." + }, + { + "hash": "1abedded5dd5c8c9ce3c6d2064eb05c83afcdecd268bf995280e6f1c40587228", + "regex": "." + }, + { + "hash": "aa45569000f568c16086f74c6e38d47c93c0188a0a7dab3ed011d31b0ca15593", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-d\\-renta\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "03dfae18f3ffb29859e85fa628c8913ac3e9dd156375b6e621c435039ed7c38c", + "regex": "(?i)^https?\\:\\/\\/videoxxhot188\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e5b82d769c3e096eb7bcf70a2661f6283b9f9d9d900667adc3cd70cd4a7e4dea", + "regex": "(?i)^https?\\:\\/\\/reagan\\-webmail\\-107666\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "8077d4b6f41eafb1ca821e124adbaad8144f619ee7ef66da01dac48498a89b53", + "regex": "(?i)^https?\\:\\/\\/att\\-108680\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cfde9758108a64a3e8e8bb8a9b5ce52cb56cde747640647c3db75f1c6d763e4e", + "regex": "(?i)^https?\\:\\/\\/hotcliphive\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0915fc4a2960d6ed13650f317d73ac04c182822e402e530e4232b78ebe0f8be0", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1bf0a16b2d3deafede9f9a2cb10979cfafc54a78240bfd1963b40c2197236472", + "regex": "(?i)^https?\\:\\/\\/juno\\-webmail\\-105302\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5b3d9542dbcad5f926a22d5fa9f87976d7c745cba3592861760784091d49c8aa", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "279af4dea15ca7a093ab5f5fd716ac32e67a5215519c0af09442ed11e5d43a65", + "regex": "." + }, + { + "hash": "1a72c0bee2b6453895d936b1859c46dc8ebd7767e9672c93f0872590f5a56c6a", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c5f543642fa6df471f4ea75f5116b9f0b8107afe6659cb3950f5cc7b5a8e4c50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rakuten\\-jp\\.html(?:\\?|$)" + }, + { + "hash": "3f678e76a4d973877ea5aa0bc245af5110c598e9bd392a645b50341fc9cc4765", + "regex": "(?i)^https?\\:\\/\\/howtopublishagameonroblox2019\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6a45ebe3fb96a2baf7029ea1143210e17946fca0f35fa13ada6d46745089e96c", + "regex": "(?i)^https?\\:\\/\\/todaycliptrendz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2af7df503b7986e6c8a490504f011218fe85840babb2c48301e0f9e2a76eac9b", + "regex": "." + }, + { + "hash": "c97418caab86d6341186f61f4ead276b51ffd5d08735ba0cff9e9bc644560ba7", + "regex": "." + }, + { + "hash": "f6e9ccd2b5bf502d9e03fd334a01a02e0358e77ff6158e92b7b8da89809bdf5c", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d2584dc333eb233b8fa7c4f7e2cc6e33afd7b7055fb25447fdc93ad8d3595956", + "regex": "(?i)^https?\\:\\/\\/zioerhhiudgqsuydqhdiuqpoiduf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3f646e48cc6a1adf246a9acfd47d42109d1e884eeeebf2d4c6e7f5ad24b61c0e", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "e2fb474ae07c53ca029f7c6d1d7cf97a869b3ab678f192ddf2049a7338766ea3", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0da32f5c32396b1fceb1b3e56a6f19cf9558a119efa831dd24e07707e54e6ba2", + "regex": "(?i)^https?\\:\\/\\/www\\.festivaldealslivestart\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b6a9ae5f91b576d836dc7dd78ca7f462a23da889c2fb79baaede52a1f966fee6", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "32645a70eccb1e1d0dd3cdc7ce2ea34c2571a07b885db26b6c54a24a6a80e15f", + "regex": "." + }, + { + "hash": "a2e042c3f9f33cead9bb49cc7c49d8db508efacebe3c8452359b0be5dc0b50d0", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-d\\-renta\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "860a052aa6bd36235b32dbb87b30a7143eb765bd6e7c7e97fab8a96d5709f066", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9e86ff3f7499b3ebc7dadd046957d1c7ebca5f984342aa088a5fd3afd195c43c", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7f423c64814e556f4f3e97f0691627da227f95d8bcb02e98fb2d962a675cdd63", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bdd02418cf65a626033b471bd8de7ca1967b8e72dbf36d96ba79c3e684d80a4f", + "regex": "(?i)^https?\\:\\/\\/sioerufhoifusdiohfuzerhiushfjhsdqioh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "abd6aa062f8e0652dc8e33e47c2475affbaceb4db9f9861a93bc5f30f544e662", + "regex": "(?i)^https?\\:\\/\\/jgssty3312\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f7e227d816a7ce665e73bf8ec64f846b778924fda73fc4fdb09352aa66a07ab8", + "regex": "." + }, + { + "hash": "01a5a76f51839447f32fb3b22bfd3f70e4406f019777e9916f1ad0bbb679433e", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "67fb7191538ac0b64baf9578a272345d91643e4345546fabd972f55c107532e0", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b69be0dbc4440bad9e532d77dbcfec4184f3e8591672e63fad75637dbb897e96", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6c5dec3aa33c485f9eebc4bfe9794f40c0331795b3c14815daf854b8829f8a5b", + "regex": "(?i)^https?\\:\\/\\/home\\-103909\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d15d51e0cc99e15ed1b17e9cf59f95f7dc485a1a056890f96ba5d81d20988c23", + "regex": "." + }, + { + "hash": "a32ce1b025e165f1ad389b4301ab20eb1aa374098ca0122c72632f0d4249c077", + "regex": "." + }, + { + "hash": "9d8c9ec96ae86d2f6ca532dc1faac0a05aee6ceee21d4fa29a43f0f8c0638d99", + "regex": "." + }, + { + "hash": "61959898a7c37757ddcbe239e52ea27240c8bb8a0df9d5aec95e66e711b1641f", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "85f353c14f5464e0bc68fdc2ae3b809581ecd12a629a2e0fe683bf8bc12aa8c1", + "regex": "." + }, + { + "hash": "a7c65520baace14143bb681370f2c324ac1f7aff0f2000342d506efacf975aa9", + "regex": "(?i)^https?\\:\\/\\/att\\-106571\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a67c78a64d563ec64d100f94068e9775a47c2d1f7c10d62edab3a5d249acdd44", + "regex": "." + }, + { + "hash": "4c8ac05610e1551a9e0de838c2fd5ca641b4c8c40eb01ed26bd4067738b86935", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cb718e5ca7470f690f298f6496d66d7e8019cdf1eb577b6b178a60f235ac9647", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8dc6903a12998257af1ddfd48112930796939048cb61f53ec24c75c24db71540", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "35447e04eb3286e59790739b4f1877686d4ade9c9fdfc415dfffdcb0b2a6f6ad", + "regex": "(?i)^https?\\:\\/\\/hotcliphive\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "01e03dd3bc52a55d99a40bd22dd387f40a476fd15afb57916d2ce1a1858e2152", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "deb9a6fd0dd404c1af2c9ff1017bb3cd4c221536290051c96752c2db491acbea", + "regex": "(?i)^https?\\:\\/\\/sioerufhoifusdiohfuzerhiushfjhsdqioh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c5f594f6b5c00ce9b98a295082f07960c40a1d905c2213b956a10e15fc4d7c85", + "regex": "." + }, + { + "hash": "25c20598df6b327aa7570e1f2e8b13c243a6e664078b8b042904e61a855a3db9", + "regex": "." + }, + { + "hash": "3a68351a4f20e94843024294f7dd71e66d7c133db8aadbeabf229c02b610151c", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5b3612f4fdd74be3425349a68e9d51230ea59619a77a350c92bbaaf5d618904d", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3f55ffef783b4b983f2e3478144433cad00d940e5783808f69d02b00be65770c", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "da3a26c69e76660842050fd4416f5e9aa174972a094cc406df39d90fcb4cadaa", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "023234fda6259b48993af66b9f8b9dca63bf3292f0805b95ead1acc278876e47", + "regex": "(?i)^https?\\:\\/\\/totaltools\\-deals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7aac965aba9c54f694668d2511955591df1b72a1f0457255db66ee1dc06947ec", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d76dcf1418a9dd2ded2350224d703b5c13d355a661a23b7f4d12555ef9a46c33", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6f90bfd4c115d982669c2e815b8b1cc95f573f24b1bfee78f98356b73fcd7f9a", + "regex": "(?i)^https?\\:\\/\\/jgssty3312\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d8963c1d4880347ff527829f6c44b7fd055db3df4b6095430f46e0037abbcc18", + "regex": "." + }, + { + "hash": "b60598d9571fd9ff5c92a930a7a499ac4b6da34dc1b4d335bb8a062b088d8b67", + "regex": "." + }, + { + "hash": "7e4ce973d5d7229fca367671933c2a90e370cd147f4c1cf54cd9a6c1f82486ac", + "regex": "(?i)^https?\\:\\/\\/nick24frbany23\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "9afbdac560ba75b2cf1a984658584574f08ed03dc77187d38bb3013b381aef1a", + "regex": "(?i)^https?\\:\\/\\/attcom\\-105386\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8ab2907322b3dde7db69e902f4d43f201a494427832426fb20ec77052e98c74c", + "regex": "(?i)^https?\\:\\/\\/rbxx\\-24\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a67c31d472cdcfabef38d23498b2503e04a2aae9d106579910af9a7f526d5c7d", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-d\\-renta\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9cb0a5a54313a7169c604e9c75bb2d164ca5ab6a56a9b95ba2f02abf261a1eac", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e41a292458e99718db63cc5a3198cdf40c8eafa62b0ed0eb5375d88aa4e99748", + "regex": "(?i)^https?\\:\\/\\/nick24frbany23\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9102a4c80e246871e398d4ddac1c7096a260371e24c58a9158cd2de7b9270d77", + "regex": "(?i)^https?\\:\\/\\/todaycliptrendz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bf5f7fde0c46518647c7f682aeca31b8a5b456b7cfa50ca9e6e9043f10ceccbe", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f9ec5ad8e38c1b64c6d3138c8a7085e54b7243fa37cc8b5d62549113b00e3052", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c21ff0f2749cf6fc5d618198128c247add6c0a8ed0481ce86515bfec21deaa46", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fc4c0f0a7dc1e5fa1e8ec2eb40f11a16ba1e31b8b6ef562835848625fd058311", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "11eec681071624eed6dc1a938350e3e1b84e5d1687465ac5bdacd7e605bedc76", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a9048d4748a12045f4459f16ff76b2e4c2dfc1764f8615384eb3b7c5669311f2", + "regex": "(?i)^https?\\:\\/\\/aouiecuhfuhjhjishiuhfxizuxfqojfrzear\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5921675c1e611643c1a9c6b4c0da9258b4ca3b9452bf935a7f9d3c2818840f27", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "831eb2d1dad407d85d84d1cd726e572fca84b01dfe20e1094d3a78b5782fe0fc", + "regex": "(?i)^https?\\:\\/\\/iohdlskjdfhosiqfhqsjkdfhkqeuf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e685742f7b145fa9be7f0aa01a769488fb87ef90994b1844d13b068c341cdbc3", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8d1afc1df0e30cc28653f0c25640eb17b833cca83f53e46098c2860918bd1857", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "8f82b5b0c3f6681a2f541683fd35d26a3082a7d039d798ec6ad5c97fd88c0e33", + "regex": "." + }, + { + "hash": "7aa54bb10135cbd34c0225a950cd9033f095c26abb976c049311969d5ec002f7", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ab7601ffcafe6860b3239658dc280cf23aa960fb4bb53abea0859f19b56849af", + "regex": "." + }, + { + "hash": "22abd4efab3af025780c95be92792d59f84d58d361d0ee51effe80352750e569", + "regex": "." + }, + { + "hash": "9a8d00946ade7c9a563184cdd6f336a497c92e336143c99ca35ac56f468d2dc2", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b013392f3f46e6def76a04e4885a92f92651d910bcddd6a8052afb107e472f1e", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-d\\-renta\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "49805ee55926d64d7ae8d82eb63f0370c93ee0c7d3d8004ca31a5fc6ddb802cc", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "39d2c28dcebb3cd11f67237e5965e14cb6d208d52d3d9cb87809e619f0adb167", + "regex": "." + }, + { + "hash": "d4e87431acad648785c1bcf5672ece498e6e5da0373b8e29eb3675f6238ac785", + "regex": "(?i)^https?\\:\\/\\/www\\.164995\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7496e1e05e16875de92fac16a896b86cecc6cf8e6a3de741764c4708a8bb4f31", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "325c63a64af916ed61fc99767c226f9407ccc28b9e101c69daf0f470e6df7f7f", + "regex": "." + }, + { + "hash": "63fca63f5b8beb2fc3bd0302e6d404586cd677aa6c62f35836d809976aea1cf6", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d3b2d362b591259669403b11a8769c5b0f2e387391daa9b41535b8561aedf3d4", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "3cecfb9fcfa5b76757b9db3f2aabc759d3ecdc0c70cbdfd1aa7d5a5b89c934b2", + "regex": "(?i)^https?\\:\\/\\/nick24frbany23\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b25bd0fd76f50fa1702c39a863dd92a876317785ee57a4fb9f7eca90e631ce5d", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a30a2450058eaa8a52b42435998ca870dc4dee0e092706fbce91c037dcd8937a", + "regex": "(?i)^https?\\:\\/\\/annualonlinefoodcookingcontest\\-rg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4cc532d78a0922bd55d1baeb9bedfeab8837da4525a293a15a058a43f766dd5e", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8730d5c01492bf0f666f3ef8882d1d304061c92407f41beae9dc54ef457b673a", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e76d0439371be0f6c0c0445c1ba016e158a3a8aef1667cd220e6d21de979429f", + "regex": "(?i)^https?\\:\\/\\/nick24frbany23\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3a002783b6f0f2ec73d593d04e71030222bf13c327b2048fcbaba1df35d5f3b1", + "regex": "." + }, + { + "hash": "451c455bb88b26a9f72225bbf034b5cdaac3f529a2d27f1599fb34f8cef012dd", + "regex": "(?i)^https?\\:\\/\\/sioerufhoifusdiohfuzerhiushfjhsdqioh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a2b67330fe1bbeffafd69417a1fdba704f84881f1531c77499e8a1eb11580602", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1be01957ea648611369d80c72793000c5fc16c7ca8e071debdd0e40adea70982", + "regex": "(?i)^https?\\:\\/\\/nick24frbany23\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "36c3b950525f3756f1346aae91edb7dee90de565b48e785150dd78397bfdfb43", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2a7d2493bba9a70af1e41c9d66a002baa0a68eb38acf136cebd8f2768a6993f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vocabulaire" + }, + { + "hash": "6be1e51470d59aa93e3e83ada2bb0ff2cb9aba0bbe64b8fbf04a243dbc8538d0", + "regex": "(?i)^https?\\:\\/\\/annualonlinefoodcookingcontest\\-rg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6af2bff224db9a376b4fbfb994aab56257ac93f5e0d5ebb7e4af592ecc9a9109", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a29075c165410981c601cac83a0cb80b87bcc79639c522c6fe0638c53104b19a", + "regex": "." + }, + { + "hash": "cceb3f07007d9d77cc5f5df6a46b3d2da8a3d634d5eb0bb1cd2b756e64865980", + "regex": "(?i)^https?\\:\\/\\/iohdlskjdfhosiqfhqsjkdfhkqeuf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "251081799a9bd236e8e2dd1910ccdc99c31046a1f770ac4e656496c031fb0960", + "regex": "(?i)^https?\\:\\/\\/todaycliptrendz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "06eee7f901aa17f1c598a036662a5990fb9b97bdcb791b0bff6d8bb01a047bb6", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "de9e01f76b16fd79d1aa46f77a32dab58ba6199891e6ccb4a4279b5baa12b65e", + "regex": "." + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?web1332[0-9]+\\.cweb06\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+fhjgfcvjkufcgh" + }, + { + "hash": "df9a8f9b9f9d2ad6fa375038256cba1e54c180cbfd784f55759ea5d46a6ac2f8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.graouluscv\\.com\\%E2\\%88\\%95krfjirglhi\\%E2\\%88\\%95tkqwyke\\%E2\\%88\\%95qtwyaa\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=msogh\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f7e0aec24ab8ea65daa923c16b37156ac60f139e4f28226727665a9a2b9ada04", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "107fb002e232d6a8979776e7637c980446bc48b98c0abd22a9a5d4e49854b8ac", + "regex": "(?i)^https?\\:\\/\\/todaycliptrendz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "16201ca0f759df8cfc9e6bac87376abb968cdac5e6a0a1adaddf49a2fe5cff34", + "regex": "(?i)^https?\\:\\/\\/zioerhhiudgqsuydqhdiuqpoiduf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d8c4ed2a8ff18bdd73121874332a03fc7981ee446783f86b08cf1ef0905e7213", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-d\\-renta\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "547f4d3572157ca577e362880aea33052d583c67528b7d6597947590aa58dbd9", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "48e81ee6b15facad8773ce164d370598b04749ef207cb6906c380f4f31011469", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "966bf2fbfdb60bd94dd632e5ffab12aa35e168201c072eae8c5fd5eed3a9db21", + "regex": "." + }, + { + "hash": "267438e4b31cd1f1d25f8e43aefc7a2f0fcc91960e8e4059d51f3a1ee3965d65", + "regex": "." + }, + { + "hash": "98e3e61b15b45d8a9cd0f0d034ce6b6dfddc60f3857b7209f814bbec4d0aa5eb", + "regex": "." + }, + { + "hash": "23472114394a1136db8547819fb35e46f3a86a3b2d969f07c0141b05a2f50ffb", + "regex": "(?i)^https?\\:\\/\\/annualonlinefoodcookingcontest\\-rg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "111fbc613ded1239a7b6aa65a465f467a110489a4138d2979ad6e996f6302a64", + "regex": "." + }, + { + "hash": "34c22e1e70ced6004ef896aff00d652f428aa909342fb924376602b36276e5f9", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a73a40d876f3401b537e4a321e317234ba558e37f5c5a206dc393f202ffd4584", + "regex": "(?i)^https?\\:\\/\\/pub\\-6e3c5e92db744dc4b3e9923183b1f640\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6a7d861cf72e1f48fbd9755c942fe93281f5391c364b250b47fa0f9579c0cc4c", + "regex": "." + }, + { + "hash": "ebe8d47ade153e5b610596b1ca799ae49a3a612ed52d4f8895f0896ed9470da1", + "regex": "(?i)^https?\\:\\/\\/sioerufhoifusdiohfuzerhiushfjhsdqioh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "574ade2c73cb17ba47014742c12725e3b70be40cebb7000623a652bfb50b6302", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "636aa0332f18261813129f1a7ae73cb789fa71a94b5f928ab0805b46fe72b7ab", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2a5d5fdb9b07ad8a5a94689d5940e35d3f37b710c9e67f5eac9d1fb04c6d255e", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a08217c3ebf6afcb4a47a5e7bc4f4f301bcd6066557879a3845b1585ca64f763", + "regex": "." + }, + { + "hash": "adc48b13f5f09af10e0195281755ca5f49241ca731bea4eabca65ee1eb833880", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "23984d20e39f530e034f391bc24c5978e51a07568611b398045ed6651083405c", + "regex": "." + }, + { + "hash": "6b0b4f2525e93564068ccc0d44eb3fd5f0ad2c48a6ae0d4c70f09270edc1e77f", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5a7c84d549dc007cc1d40e977f49705625397043d9187933ba6f1209431ae487", + "regex": "(?i)^https?\\:\\/\\/mail\\-102784\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7db266e23dbad27874be4a0870a31cce2b5ef39cdf9a8992e6cec9aef7493671", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1Yjhn(?:\\?|$)" + }, + { + "hash": "dd2b916ed76cc5961c225cbf375ca846999e4beb552292c4debaca33ab9e1001", + "regex": "(?i)^https?\\:\\/\\/iohdlskjdfhosiqfhqsjkdfhkqeuf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "777cacee29c10133b9ca01f7e5be23083d8e182dd9c09f09c602f1f056784b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mail(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8c999f51179b0ba83ab943e59a4547fd742790e8be81d028cb34d62086042418", + "regex": "(?i)^https?\\:\\/\\/erspodjlfkjqsdofoeqffqsdfze\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d5bae54efccfa8857cee74d4577183670a9f62a90872d975304d10f6d0eb2a69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "536d369f473a48997dfc1462969bc79fa678e3cafdd657157ef8a9dc4fa3b7cf", + "regex": "(?i)^https?\\:\\/\\/videoxxhot188\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gy7js0vz" + }, + { + "hash": "d0132fe3df28af9f8ebb2b70c2be7a3c86d62093b3df925b817c9878d56eecd3", + "regex": "." + }, + { + "hash": "aa6f87fa4bc5277e4e3ab50627389f088971945d359a39dc1d6c659c232ba930", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8f3ba28fda6ae663424eed03216b13d481243caafd46148ec3464faac9a61e87", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ilgqcuu\\.com\\%E2\\%88\\%95idopxc\\%E2\\%88\\%95fpjroq\\%E2\\%88\\%95binjfxg\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=txiqkv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5bf9ae97719e10f58b13a665b12a309d65c9c67203a74aaa4e6106a9b282d32c", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1473868b670cc35bdc5c2f4e629677bacadc9e8ba872c6609c67544cf5ae9564", + "regex": "." + }, + { + "hash": "0eec9ce84e126c91d5fe6fb07d865f3c9abe980be20488a8e72df34f78c85b3d", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "713b0f5f92efc41a2f4468c1731ef9afb6bce69deace167ee9d7b414862648dc", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7098dd4f8b2094bfa48d78c753a870a3a71cbc1c2417b49790b90b4f650bcf7d", + "regex": "(?i)^https?\\:\\/\\/todaycliptrendz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b4d9fa3a63ef6209db893109e09fdb9fb3599a72356afd81f8631f6cd214a155", + "regex": "(?i)^https?\\:\\/\\/rbxx\\-24\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e4bed1432b2e7f7bf3cd0c6515ec73f04f42cd5276d9f25816c419c4aed465d3", + "regex": "(?i)^https?\\:\\/\\/foodglobalization\\-program\\-rg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6ef29b43e2721902763e02ce128f2211674e6074bf1261cbab2315bfe8c10ff8", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fe215d6e444a5dd377405686306fa7e5dbdb1ae0ca2dd28dc9c2da32e8517d8f", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "63ada890b69ad47aa2ef0d5e261f829b926fb0abf56e3596eb6ec0235e1e52ac", + "regex": "(?i)^https?\\:\\/\\/cliptodayplay\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "50ab22065dfdf73ce8f00f470463883c4d0b118634fba7cdce8597ddeac7cdce", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a58b1b5d06e0e0c50af656ebaa036be86c2718c1f2ac4e733ffdc4564bd4af31", + "regex": "(?i)^https?\\:\\/\\/fjuviodopkdme890eofj\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "01b97fa0c3e1bb79bee0b4bf9db810300f80ba66921410d3063d3a21d311a0f5", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bea12012bad970529e792f297ec4927536658eee919406dc78fbf39bc1999677", + "regex": "(?i)^https?\\:\\/\\/todaycliptrendz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6c1ec5cef5162f146923a0e08640095253af9653fe65323a4cfe7d9e0fdcb36a", + "regex": "(?i)^https?\\:\\/\\/clip\\-trend\\-facebook\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1ffd64a585f4f50da8707233538f1c3ccc5d0af7b3e504833f0f284421537be4", + "regex": "(?i)^https?\\:\\/\\/todaycliptrendz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9a5a1edda6e5a8a7068b538cf9c8383a0f0ecd58cc15f1d2ddc4f330add6e8f8", + "regex": "(?i)^https?\\:\\/\\/videoxxhot188\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "76d81297f64e96e183a1df81d0f75a37ce7190898ef0969d7eb1354e44ff6c32", + "regex": "(?i)^https?\\:\\/\\/videoxxhot188\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6f497840d77a79d66680f79c7b664d6818bbc95113f99a40e4844e6e153e7a63", + "regex": "." + }, + { + "hash": "f1c3b4795d9c5c0faf1b0e895afd51c4229b3c4d7400522719218e4afbe20908", + "regex": "(?i)^https?\\:\\/\\/rbxx\\-24\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "58832938d6443468d479aedf26d0c948d9601480a3e9a2a31357621db62e7178", + "regex": "." + }, + { + "hash": "4dd1d52712e49535fad0900aef1efed2a0d04b47df2ff8fc68b19e774dec65d3", + "regex": "." + }, + { + "hash": "888086dfe2cffe07cf5acef1ce3dec8299b27c9d8158907ecca138033b83bff0", + "regex": "(?i)^https?\\:\\/\\/zioerhhiudgqsuydqhdiuqpoiduf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "94eb0f491db5be5b2468c4f97cc3a9a5485c1f600b0fd09d1849afd7dae1a10a", + "regex": "." + }, + { + "hash": "b46e5f273cb2e3221aef008a2af0d8c9f8507e4b0f52d1e910147dc758768452", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bb6ccd812f5e999f7bb6ebbae55cced909fa7c4e701a91369a40a1d5780b470c", + "regex": "(?i)^https?\\:\\/\\/att\\-10248\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e990555a5d054d48db1e840c0e437e310eb8c1ffb02506e8bd37822f292920fc", + "regex": "." + }, + { + "hash": "1f55b578f14ba78146f52578fa69ff5cdc8d00e8866767939b89586400277a66", + "regex": "(?i)^https?\\:\\/\\/amazon\\.yzupbjo\\.com\\%E2\\%88\\%95nmeqwgwxum\\%E2\\%88\\%95vpkfpzj\\%E2\\%88\\%95gawgmxvww\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=oycfopt\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ed2076d60a0c32a42400c44823ef208917cdef0706ac0bef19c243285f3a0edb", + "regex": "(?i)^https?\\:\\/\\/aouiecuhfuhjhjishiuhfxizuxfqojfrzear\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "899e4ab2a3023d809668599f312d17a42e68ed8b632c10e8139aa97a0eaf36b2", + "regex": "(?i)^https?\\:\\/\\/videoxxhot188\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7dd746c1ea32e83d4b00bfa234fcb5cec99f68c3f3ffce8d8f596161d2520e2b", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cgi\\-bin[\\/\\\\]+1index\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "27bd6337be995dec3fc524af3cf61acb9a010946c2d83146600c5f5981e4f920", + "regex": "(?i)^https?\\:\\/\\/aizufzeuifhfhoefhuerfuierefhiuah\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "14bfdba8379cab897f8a2f4750e2c949a4030befea429abb7506117562ef7ea6", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "36f976fd77c5b72577562f9ed95005b61fbb0a98bfa4fdacf7252a88be240d45", + "regex": "." + }, + { + "hash": "82ffc5bc83c3b6b41747d16a1468c987602fc460029054d6046176102a6923db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p[\\/\\\\]+fhnj\\-gdaf[\\/\\\\]+knytnbhf(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c5d430b5d18432fc94fa89b8406b4f5d59c582adb6055457e19db457508f3abf", + "regex": "(?i)^https?\\:\\/\\/moizansari2024\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f1bb4ffada24b7bf5b129eef5986c33011018c464226bf74b21f41cc0b281bfb", + "regex": "(?i)^https?\\:\\/\\/aiourzehriofhrzeiourheazouirhiuhr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a9948727ee51610fd85fa3c3bb90cc2efeaf2d555b20606e9a6a83d00ac42d2b", + "regex": "." + }, + { + "hash": "a1938016c10543196d8aaeecd89733f41808494e2dcf7d4136e9bd2a304ff561", + "regex": "(?i)^https?\\:\\/\\/your\\-vote\\-matters\\-foodnetwork\\-contest\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "45d62194d744973d06d80485bdbaa65cdd936af606745901da40e413eb1f2fa6", + "regex": "(?i)^https?\\:\\/\\/remindrenewnet\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e47cb5240467ee8e4408c6a0be75e9d2d5de1fccd58ede0d9e20aba465adc1af", + "regex": "(?i)^https?\\:\\/\\/yahoo\\-106018\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "10ee1a63a1ae2ceb8a3c0e1ce75ddde152afa25174568ca274133d5ef7cf6211", + "regex": "." + }, + { + "hash": "ccd841b9709d6578fb7c3818fbc6010f45a2c89fa8e927a11adbbaf39a65a30d", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-hub\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "37d007a5f66aa932913750bdcbd6d2f312934d2ba4f82688a58f5af5dca8aa5d", + "regex": "." + }, + { + "hash": "14c62449f8f44cb86eca28a3a989233cc1e5d6a495459f864a599d40385ec8ac", + "regex": "(?i)^https?\\:\\/\\/mailattinfo9849094\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "65d939c9c89200e646347ca12502808d93e495076d70a0952722c1afc312809e", + "regex": "(?i)^https?\\:\\/\\/reugfhsdjfhiozeufhuigfyuzuifgyizegyf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "416f9e5bcdc00930ae57a335c4373e006f72efd3f6f5e9c203cd235f8306d0de", + "regex": "(?i)^https?\\:\\/\\/betistyon\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "86df1c38c03719b244d8c2f963c4776d86cc9bedf475a2dbb7c7c2b117cd9455", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.zY8W1djHuPXByztiigrHa27mmFZyl\\-2FRWcJaDk7zNlqgcHeyt4c6FNVt23xk4KTEXvUJ3V2a4OYoF5yq\\-2FgtKq6cvgDzfpcK12Annt4Gy56ZcS8QIcgEUQWmZwe\\-2Ba2syEJJFnM_2vbC1nrAFjePip8HYuHYOsHLqc5vBO\\-2Fb\\-2FMqlXmSVAIZAGL6TVGUZdX\\-2B8uxW4yl1XicfiiHcSrn7ZGEThxCVSNbxEezai5JDtExC9cAayfF\\-2BDFkfenICJi15Ba\\-2Fj2LF1Vz8T\\-2BF39Y1rgW2CQbXxJF5DKe\\-2BCQY2VrnD84ZVndH9TBSBPg46w91gVLdicDYjGUMl9v0570JtSVNbZlqfdJk\\-2BQ\\-3D\\-3D" + }, + { + "hash": "ca0b2b5ede1b8c280de7be98a8ce50481788886e3542debbde0d131862b3f1ee", + "regex": "(?i)^https?\\:\\/\\/videoxxhot188\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1a9fba3a28aff6ccad22ca5bfb970dc50ba4c17f8080361543ee6f915910ef74", + "regex": "(?i)^https?\\:\\/\\/betistyon\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e0a59bba35c38596c6073cbe16205f3ab9682826910ef2edddff6ddafce49415", + "regex": "(?i)^https?\\:\\/\\/pub\\-af028a562fc744a0a3eb7835f0651ef8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "016e9371903cf98779d5f64c55ea8c57face0eaf17a1e489d368c57108b73236", + "regex": "(?i)^https?\\:\\/\\/rbxx\\-24\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "65e7df2cee8e6c319c6be7be7089caaca766c60c2956e6b33c2279d0282bd8e1", + "regex": "(?i)^https?\\:\\/\\/annualonlinefoodcookingcontest\\-rg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "83c0b2a84df330bba543d4cc96c2ddc00ee77bd5168abf41dd99ea005ecb198e", + "regex": "(?i)^https?\\:\\/\\/iohdlskjdfhosiqfhqsjkdfhkqeuf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f4129f77ef035b567ab8c88fbb844c92f2debb517828a9c6ff3c858f0776dc10", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0219f2853eeed432933dbf641e2d5626dd1dd0c9e7239395258b7ab67af15a2c", + "regex": "." + }, + { + "hash": "48e554c2782b1a323b536817bb3e64be01ab093ecb877aa93e875bbe7e2a97c9", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b29b6c7e8ec0cde7dde9e15d3ae055fa16fcd189e27e59fced0b4d97ec55bb38", + "regex": "(?i)^https?\\:\\/\\/freeskins203\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "81bc4c4e9572cc0816bfb21e21a7198022eee5ebd9ac5429b71bd5490fec90ec", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-hub\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "95f8dbc054383bdbc705949a24c46464c8640b313916e03fd03beba5b105014f", + "regex": "." + }, + { + "hash": "0afb0fa15fac66a792dc512f3a721943915ab4154f13dd640d4129b18e563c9f", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c78544feea2cdd57fd4829735981d06512e50b19e4914d6e22eb3353e860676a", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c6e60c46f0998a3531d32f4865a9047b90e2cede5401f69edf43d2ba14d72372", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "f3eb4633f2aa033ad814890fc5bd2eedadd6617a292bc5bf77c52ebdb3cc3e1b", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "586b4b43fddb074ca554b4617d3eeb222138a0567047860a60a72a64c1ce2e84", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9fbc37ca46fc74706e34417ef7cfa20bc15347c345c2fa42fecb787a5fdc13eb", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "14f914c99fc6a581198f3bc5b12beaedecbb1d7695fbe6434c1fd2cf9b7ae968", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-cards5\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b4b6c266af214fa81cbc59f8797b4c877b23c937fefef2cba0ce1386bab4e69", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "698ba63c58852e94a5704c2acea20c3738bf234a61415d087e0f74aa648cf687", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1afb06cc5bfcae28bd2309912669a4bc4be01432625651fb47f8be738c5b1f19", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "440c23f77feffd23218e51b7521f747a2a0da7e97364cabe9675a72ca3ef204d", + "regex": "(?i)^https?\\:\\/\\/serverrobux431\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "53eac4ba7f42e928bb6605ddda21c1a1c900cabc9eb758deeaef5180d0312cd0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+238501868(?:\\?|$)" + }, + { + "hash": "9690f7775007db9c5cdfd08c64599505a26f3a7825974aedfb1092020228c01b", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2576e6bf80acdaf47d405339d86c488af85c95fc3b8d9065f0c53ea4de06475d", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9e86714034821ae7dac01e15a1845fd120601494d07862015a5702f5f5f1d2ef", + "regex": "(?i)^https?\\:\\/\\/robux\\-get\\-gift\\-\\-40k\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e988b186b3dbe15b2326274f86e70eb3d7e071f5dcd1bce8da372c00efc72bdb", + "regex": "." + }, + { + "hash": "86660f6d8a4ad0f10f4f51e83afddde792f41a3acd1267350237971d9ba61386", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d42e4ddf5ce7a05872b1beb31adab6df4ac9277ee52142eb8f054c277773", + "regex": "(?i)^https?\\:\\/\\/eqagqaehgeqa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "187e0fc68ab3e10cc081a0cbf1b0121b7457b71b4dd7a19b4b4f3fbc75b3118e", + "regex": "(?i)^https?\\:\\/\\/starsbux7\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f4dac36803115200491c2fe27b837fca02e6a4896ca8afde10ffee0e24ce198b", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "77a6d92441332e0edba340badc2f3a9192da993d7a798dc3f927d8fb8e1050da", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "44a9ac71256ecb5924e547c0f0290a7d4d683224d16b0d01129a561c2326a02c", + "regex": "(?i)^https?\\:\\/\\/oruwyf8dys984rdf79dysf939hfsd7yhsdo8\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmeubDbJCFaWF6eti7LQGbpfzvf4i6zV11MTBuGn45B1sb$" + }, + { + "hash": "413a22c4dc7ccae1d4c734cfc82f890a31d9a4eb39d2870c48502ce23cf572ad", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "faae5f852412538726f743ade0d418441e8ba0c5c46deb1b142152e2fcf9f13b", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5ea38f398edffff45bd59841f0ed81811f291959f943626505d83476c99dd583", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st\\-reward\\-link\\-igsocial0711\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "909e3d10d219ec8d5f18051e3344bcaa98b59d9187f51ee8151bbcec5af9cba0", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2fa3cd0d85d25d939830bc6710d7dce23aa1a429444c8962ba349cc630b9e820", + "regex": "." + }, + { + "hash": "ca231b7cf76400269630885a4d4f3cd709e0ea152a4293dbe07f9d7e6c799c67", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e38f3272a326148ea7f21101cdf51cd374cd458e703bcaed5374c1a04377c7fc", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8f6942717a7dcb964d6acad5b5196299aa6d886d6c55982816deb6ac44d5400d", + "regex": "." + }, + { + "hash": "b41d2c57ee3418e9a7fcf35c2c09d8d27ff3c1231a2cae9e3a3f9cde87e24b69", + "regex": "." + }, + { + "hash": "edb34de153653dd77f27b94b91cde5bfbab63fc8b9ab6d44911012a0d135a31d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "117c8398c25a070af984ce11d940f02ecfa5e893f60346134196783541cb58e3", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmeubDbJCFaWF6eti7LQGbpfzvf4i6zV11MTBuGn45B1sb$" + }, + { + "hash": "dd23b3c5386d1062fa2d5af286ead9fa0d37592ce9dfb2aa2bfe05d067e7278c", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "32e56ba8cd9a465c706868fe5ad02c35803cf5c14971e56025040c6be3fba605", + "regex": "(?i)^https?\\:\\/\\/fos12k\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ae9cf0a8c67aaf935c01e44b79856f8dbf40c3eba205b0ae01c8c278ccb5bc76", + "regex": "(?i)^https?\\:\\/\\/eqagqaehgeqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9bbd9eea6f272e811d447b5a38549985e87e8d274c9125ce50f09d5bc15a0b33", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "65f674ac92efee1a033c5bcfec0db0f48937950e4e0c3b19e8a941753284b2fc", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6d076c682cb2ee0c2c450682bc89855d7525ee152f328d1742ae8c36b7a425d6", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9a2e5b52d6ff6be1fe54cab40536f48eb84716c96afd791fefa86f904b8d2", + "regex": "(?i)^https?\\:\\/\\/eqagqaehgeqa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4cad4c92f159b34e7e5f5794095dfe9f4048114e5128d7b4a0d64d2e295ab76d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9a4ebe43e5d45ef79985cb8f2aad2a89df9ad5c91bc6c6ab81c4b6ef183823cd", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgdfgdfdfghgfghddf42\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b54afcf2c5d0ea78b081384fa9d1263fbd68f2648bbe06b31ec9fbaa1530983", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "804c67cf4aab4b3581cb67e17c92ef1abbbaa757776bd9899ee8ae333e2572a0", + "regex": "(?i)^https?\\:\\/\\/login\\-screen\\-106087\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cf10bfefc6abc2a5a6e1c3e30c8b607878db23880db08cf030e4219825c5f492", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "56dd7062c0516ae89996e495656f1347db3ccb4838f858a0b43ca0048a22859b", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cf24d699a58f2190eb4cd4d2a74303ccab5e3abca5f179543530b9bba663077d", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1eaf4b11f29e3f0f8c6a7399b674af7637d72be3cb11250cb7341c235bd4e715", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "18a74dce72c9b04f27e38732e879f67963b468a55f9291c7908a442f66e8e434", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "85377d4ff2b04cd5726fa9a722a37e09e410e9e83feb2b837a01f1d6df0508e1", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ac0bca9c65c9cb660eabfc8521627a992dbc4a0438b66fca2618c2c11ad50718", + "regex": "(?i)^https?\\:\\/\\/m\\.edf566\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "250e88e857eda91d7115426be8587000eb484866cb2988abb0292e5b0957e002", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "abdd5b814c461dae72d68492480898d0ad8d717f392ffbbdf78bb3ea54d0810e", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3f1d017a0665b84e1174b2f84ecfd7a7cf0e8652631d9125ba6c2050c9bd2f0b", + "regex": "." + }, + { + "hash": "4715969e54e8e2883bc69f14a2f60683a8aeacccd212f4e7b3e9e181493e4da2", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-cards5\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d878149af931625a802be93b98a2971aa9831a4f730d5a9a307105342590afb6", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1b741f9395028817b996fcf50c0aabdf363758ad70910bb94be6d8dafa349baf", + "regex": "." + }, + { + "hash": "d6743c27335257ca0425d9538818858a5fc94f1273e50bdf584d8c4e8de3232e", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0ca7c53009a6a4630adca9a87a2007fccb95756cdfcda2ce73f889b394666c08", + "regex": "(?i)^https?\\:\\/\\/1webcam\\-live\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9d8ed5f3a8f33069a6701f1ee348169dffa130e6edcec226f1cb6ab2745a8ea0", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "79633c0279cec526c4727e8c6cdc5262b827b84abedac1a5b3209efad3708f92", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c9193bc15481627e23c210eaea386d64d637d4da56866e9b5e0ae234aae12762", + "regex": "(?i)^https?\\:\\/\\/ro\\-bx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c58c7e979b0353087ddeb36780bdd7be7a11a476c6a5d395035d55f5f2418e49", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ab7306eb40f42430e6ebb6c27ff0bdd720505a3f9035831214afb1e017f192fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8365[\\/\\\\]*\\?register\\=1\\&agent\\=4374577496\\®ister\\=1\\&agent\\=4374577496$" + }, + { + "hash": "71812668dc69ad918c5bf948e99155d4316bd6cf6657ad24bd6ed9fd527ff401", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "80d8c9dd9d4e557f11528623fb3b60b40755c3eeb8085ace3593fd330ed83ce0", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a78e9f1145d67af33b8427fb7716a4f6893960d8464705e7493c896feeae61cc", + "regex": "." + }, + { + "hash": "2bccb8e38189f028d497eda9e450b19d4f0635802f37a37353467aad043ac98b", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "164cbd2812b286a30f19c6267a85ef4c67daacaffff89d61b57ad5547a99c7fa", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5941b0899fb286493e3988ff6c8ee80ad2731a182e024228c0a77e4511b85a53", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "424d4988525b5cbb26dd6c92554fa343cdf917746a345b32ca8743f818cfb5e0", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "181848540a4c3e51e520c0ca43b21fbf972e34a14bca6eff35c0243d27cfa0ff", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgdfgdfdfghgfghddf42\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b8605be0b38f60c422d7a830b23ff266fd32c3b0466dd664bf9d1bc02ebd09e1", + "regex": "(?i)^https?\\:\\/\\/oruwyf8dys984rdf79dysf939hfsd7yhsdo8\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "308dc03b4dffd3dd79e8757e7044b2eed6f24acbc01312a2a1b75d27852e955e", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "249b4e60bda538e296b444f181cd94582f2354b2e61020a70059b8da953a4a8d", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4f2a66a5f15265da07aa8a50d77eb36e6ff9a5c143a1b532368961b3181d211c", + "regex": "(?i)^https?\\:\\/\\/qahqaehb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e2667dfa80e66280078ba5ff3fc56c92b222b41322f779644374f50c3c546b8a", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "480517a5d264787a0943e824f0e05dacb39ed0edb0e5fe46121ac44d0de0e8dd", + "regex": "(?i)^https?\\:\\/\\/eaqhgbeqadhbeqa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "916403e671bfa0883ff61ca1b797c7697270b08c74ea2f2799613b33498058d7", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8ccee27140d2606ad196b470e5179b0849f0355862598d8ee11e6e1a227441d9", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "06dea3ae084aa1d72b84ce9372bf7142d18c12cd12c89e5ef30c79c7b8960e69", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cb5641e70dc093bc6d832e33274758369d40f00b709bd2fc4505b7a2db308b34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+84298cf0\\-7a8f\\-4727\\-a1d8\\-cc882d8453b1[\\/\\\\]+2(?:\\?|$)" + }, + { + "hash": "d15d9a9a04feedacc8fa5e0ac1edd06e8ad01686734b82a9ef89fcf7687bb153", + "regex": "(?i)^https?\\:\\/\\/1webcam\\-live\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b0e8ee3fa766ca6029c11a24b14ef1bbd2777a54fbb9f110e7f5c77a74069", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "be9a6c14a3025c14b00d6beb664f71d8dd4745df8c89057399a1247428b2b556", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "dbbd23a4eaae01e8d0c75bd55862c625830f2350aefd67fc08dc00c73e26a475", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st\\-reward\\-link\\-igsocial0711\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ebba96cb4cc87a2c5c71539d9ee5c93e219622ec9bf09ae5554427edd578a39c", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "f08942d11d93a890579c149b123418c7da4bd047a86739a6688c3ed46024cd7b", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7e9717b858aeebea4df290969a4982a1810e0a56a928cecf0e19c345779568c2", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st\\-reward\\-link\\-igsocial0711\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "710eb34bb826344b2536f50adf981fba91aaed01cb51b727995bce44e11cc1c2", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ae2605c0c683046602a17a06ea068c6209fb29d14e6f78a6d0fb4af10ac67a81", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "688c75bdb73cf040ee44949c40fc2fbb40f65375b60f53fd0b865be977a1e1f8", + "regex": "." + }, + { + "hash": "9fd8175486dd24940fa0c77e5ef289b87924250cfba457c83ae76d1cb352ab82", + "regex": "(?i)^https?\\:\\/\\/robux\\-get\\-gift\\-\\-40k\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8ccd60a4928d02f11a4623fffacc8c88b329a2170432c352107910378de337d9", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5669c60a5a6b8a9177ae2b6a9a3c1318b93ec9d62439b2963794c5e093aed0f0", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ed8ca5a12fbc0b2b619ed56711b1d7c946924aab7390eb178310ddbb777f4728", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2a41ef3c3e953cf5f92ea725ed5a5e5b94611d2ba3ba439d0420dde9d54ed643", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8d9f590ca3ee5b6ac874929b61b7d4477449560ce9625d3279d44c7d4079c0e3", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3086c58a79d1f8050cc0e0340010ec84ba74c896c7077376836ed94f60ecaa53", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0ffee45b705a7e73de437e73c1b1c8ac32dbb42298db32a75d4f1d836eaa7e3f", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e2b1ece4c1cc21fab9be989219d1dff3f439e9266ca076f880379b58fc26af4c", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgdfgdfdfghgfghddf42\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "92ffe649f7dd221ccce1287b764f91b79b507e56b1f0e77227e33615e29d8520", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5d579694620ffee6d2206d627373900a4e6e3c9503149471d964219caea24eab", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "948a2b5d7e89ab63f7d8a2bad5f993c374f9447892c354de1d6b4d28cea19e2c", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "89d084edf80fb04e831fd1c30f2fb4b4611919fbedc044704b4a80e923cb88b3", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "14b2d3cb771d578c416d5be3a3cf22235ebcecbc1590f5b861c7373c15018ab5", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8e7c78f86313d57f3838e8c3d37ec9783dac0ab5bc02ffb97e725e182c2448d7", + "regex": "(?i)^https?\\:\\/\\/qahqaehb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5ca5fe9678d0c19b5c88f2e3e0e007e1cb6dc1e4f7a7b6d01939bddd87e5c771", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5da25145c97f3fcd59241aff41d944a9322c300d46ed48f28d9785a94aa6c021", + "regex": "(?i)^https?\\:\\/\\/ro\\-bx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "88ea263da9b16c5c5a7c3fa86c9500972fc903fbed224ed150e2c71b7e2d98b9", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7b4051499d6b6573e295955776692915ecadbfb35b87edaaae0442c8131ad39c", + "regex": "(?i)^https?\\:\\/\\/serverrobux431\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "46d94d97541dd49d5f73251c3453b84817fa0754ce444aba182a9cb401860c19", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "327ecb230dde2b9ad8edce6467e57b4a9b1553354ae7f8ccbb56243c07868cb5", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e3faba9d89f199afdbfeb5754b13594719d2d196a13b5a3f9bc7840cd8518e15", + "regex": "(?i)^https?\\:\\/\\/qahqaehb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "90fb50dc93223d31c43b410a237813a9d3fc6eb45170541d633eafe4a810286a", + "regex": "(?i)^https?\\:\\/\\/dashgames77\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1d02d0714c0a3d0340d8c429e6a4d755971f3357eb091f5f7a24c3c61e63ce27", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b916de043e12036cfdffaaf5a920e6d48e3009f6a58aac75a6c45f80e586d359", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "674a21ff1d47087b01cd4e36e8825186687dde8dbe6556f98594018905ab5210", + "regex": "(?i)^https?\\:\\/\\/oruwyf8dys984rdf79dysf939hfsd7yhsdo8\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "32ce8af80bbb758b89fcd7fe757236ac1528c309547a6ae1ffcb4ef7b62a1446", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "c499885d9d03a035451c872de3218ea78a04b58cf0bec104d730269639c77178", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d4182e715893bc5e917228ee7c04d426cd689b32de2577e440aac47d9b447b4c", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9fd49d80531f6ce5530b53b0919a03cacf77c2d66445761c6f8cd63e08df83a3", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6fc96720bb4c7a8ee0645b986bc2d501b241b6b0f820ce4e8c4605e0615faed8", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cf840d95458f36cfb43ba828fc74191852ade1e8b5ccbf1361c4b963b753810f", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "711a9fce6fbf46da120c945b7d41bdbeb56d9b04fbb8cd9cbc521cdc2659f825", + "regex": "(?i)^https?\\:\\/\\/fos12k\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "88f192638b0cd08e7ae0b4a5fae94358855bc9db0a0fd7337c1a128bd0b7bc64", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "199d890e62d308381361bb2b5b17331438bc39f0465816752c9bae5900990514", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3475b7a32fbfba122c94abdda6ba1d65e644ffd63544500ebabdad1b9982fd2a", + "regex": "(?i)^https?\\:\\/\\/www\\.043233\\.vip(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5c84a389c132904b35910eeb28a7f7dbdb4d612e654ee7d0765d9b6ee99ba7d", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "392975581fdcd3851d045c12b818b83a5960f22a38286976aec65da1de128ab6", + "regex": "(?i)^https?\\:\\/\\/videohot18plushi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "019d94bf321a4d25a188af6b9bb3f03f5b466c5ea840f2b1aa2b37a0cff72cc7", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "174427483407daa6461eaa1105c5d7e9c4ddb65379fa26211495c9e12d9add2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r[\\/\\\\]+cT7RdG5H9bAEuCLO34PejhVvzjN3LtedH2flOHHXPT9ldLLWClZyuLHM54dy27gGd93pLTzNQZA53\\-zmurHDv5rf58DFYOGxcVQN3gsnpxU15A9wEmqfhW2ECo20lF4FXo4ftxyJ8B3DzE_dB5vRASGpQhspdy5kLIK41x0OBMXjcg\\-LmFZv2AF9JKHvH0wkvMHBbJWWlQQOZPZqZyYU9uhrz5v5gG1GYsjq9IsKccFHf09NHpPEHbTK9Ghhg_uqbXCQbrl0FDJB48JwtMJFgj_jkKtMSiUbkSOw\\-CZ6Q2IFr\\-Py\\-FIo80Jh41R9uHBkE98u2JX3cND2F_zqrObdH7eBualni9ptnDvb89vcbr0koB7zs8EjWPovjwj\\-GeNNUURYSyC0JZHBOHQg8I4De7ZOlzn_Km5Eps5_HqFL0aGGTQJ7dDuHKzGDu9w51tTA6tFYFnmiOFnXrS6SyQBPwNBTnLqszQ_X3iPvYXj25ywtc9h_bm3uwmUEEEAlZmAv0A1p7IY\\-oL_2zM6lmTPLoX0CMB8BxWidMnswXPvGoC8puNIp4WLo0Dz_JcO2ELsMQkdcWTB\\-Xc5XKv6Xa7hNovf\\-gS4AEo0uD1ntEv3f\\-KmkRMDU5UCnJKTfZ2gK\\-6MTW9QihAWm9RwhbVu9h0RlZC8t93C_mK3tth\\-Z2_UuXJZcACUE2hCL7K\\-2G1K6TuOJsJ9Pudr0ASJdf2aCJpj5hA_I9x6YM5rh\\-\\-_AIGMpdWechAomB\\-0CVwtJ7od0W6MSjTd2MiK2j68HHVwc5u\\-SsLuKXspk\\-jZMziVtRJTvySldJLGwKnukfP4l2Q4_FG_y3UnfGtXlknqlNscoBKHtErNtP2mNlMResTsUY0uGJwjiyyGWKsQOaDfKpuM5yyCs3QBxp8XOy6_Lba8wyDuJOiUjKPoI0wI_8FPTM9JEguJlStkHmrg3pNDw_DaBHuYYS0SZLTNtgfVsocr_tpwKtFYWmhsUevl8V8ylNayzLGC6Ruk1\\-Qu7\\-J55UifhvmGTDY9fi73aidDN1vbcvtH1IhXuNyYt7L9QTNgNTKc0Rxa2mcakzVEs_3BFfc9ZRPoItdyX5zLbsUj\\-yHMyD9i9V0Rs0OcXlGwY9CnLsfOTqoCO_nQ6FRkYvicutoHg0T_AnwhvkEiTtwXVoYkPgm\\-1jmnTmzWTf1KwMMlbCYRQy4tUVU_mb7WXWCil\\-xU5QgVkgx3xBuT5q9wEXtlAVtgZFPfcGRW7rKCB2sJc5Zp5eT8DImo5gqJrQRaBX4zSytHdzVefSUCl6AxNgzkdyMwX5dPoVhkptsPVpScOeg\\-ChptQC2V4YBpIp_fnnrFbjgALdsKJD7UTV5Ly_4iYbVwrx97BZPWKjCwzLPSo6P8nodMlSlRJd5nmls9ZknQAr9mQrWGzZ_TzCaRIDozRkbdDnX7WtTMYX9VX9U6LqjXPcb\\-BAYIjZrQI97msSiZKO0aZZTUkEjHot\\-bJlLwZwzZI0CCGbcy9kJLurl2BHXoaI4QhJBD9JajKKrT92wNHqwBLvd6NLX3PTtzdJyu\\-_RdceG8I6srul\\-ra0f_A_jcRCJFrDzhmLKdzUa7vNzeLr6dUpqtxDB\\-II70QtBhXAEecai1Ti1mD\\-znFcAzk3eKp_3FjunlGx29GEJ87xZ8X1AU9a3ZgdJpSlOooEkxolY_aP6IG_kZRCNZS6VVPcwv0WRwNWxOL4TL4QAHyjl94I_04xqI4kCnZtjqKTuKQd265UjpocQSy8uMemEoCIfN3k1Zb7XmZwZIR1eI7HSwQxFP_uuVQURg8XGHwtb6woFgCWTdO5kxHycT5tr3d06xjDxw_qHFkiqZ85xgQzkpT0B8GOosXnbqRSFwMOyCQe\\-S_egljFYarpRN7pF4yAEjiqyRLABjUkYvi4B8eQHmoCBq7405s9jLubvDr62DLfh7\\-jo3OTpEJxBGSrDxFlNf87uruDAQCMXH7IZ3TGj7bpX87H0eNZr84l0JlCwdoCLhoLLLnBbY9dtt9GAX9av8NKPiMHxpDKMJ3tmT_dA8vUraRtk8qP1tlC3AouZYPdQb0g3ie24XQExd7ZWmj8gkvOBvrX30\\-2X108lEICY_Gx76SWk7mONDqjhbYuY1mPw0xMqy31c5IZTZCLQU09P_Re6825bNFcGplRjAAzjbnPJf\\-qnhnpr7wLsggPjt1xFCEFmJHhP6aRUBmjeGtZVaQLOswZ_NVBH7RxBz5IVNAzWupA\\-rrvZetsp6p1hZqX8mB2yXp16uxfaVW5DnDsb57Fic(?:\\?|$)" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "042b0a0a516e4f8ba073858e17788e68d1ccc8e952ec88d1da9cf94fada89be6", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "235c7ad3c6910e212368b088ccad1becf0a425826f4da56eb8ab4f1e6d7be926", + "regex": "(?i)^https?\\:\\/\\/robux\\-get\\-gift\\-\\-40k\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3033372f3797b56e8d6248b95c166763f68c31b8c704b2f407232d1dd55d9dd6", + "regex": "(?i)^https?\\:\\/\\/tracksek\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5ee7f585ab6867cc1f950bd552e33bbcd673bfa933ce2354e2ea0fa3d4957702", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "51a8a6c44e20564266dfce7e057f2c6795982e53481273ad51f08b0564f5fdd1", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "02737f244027b7b510142ad39cda09966c971f610118777fa6696cd388b7aa20", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b07256bc7bce8f596d6ad2a4b02707753f6e5631a32b6a5817c2fafa27e67299", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2a4153b4eb521ec0ed1bfd09cf8dca0583a3adce6674cd2afdbd3c855ca1456d", + "regex": "(?i)^https?\\:\\/\\/eqhgbedqhbgeqd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "93b2b1e5c7ae47d073724eaddfb151362d02d4e5fa44e4b03d9c7094fd0f0270", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2af009631bd701a033ea4cb67091369e462ce74bcf33890f8b8fac7256144c6d", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ffbdc686cfba094753faca18f066e59916d8c8418d405e5ec5609863df41b851", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c67d296d197e3676e3dbb8942431bc54dc62c22e147e8c357a1549b1798ffa65", + "regex": "(?i)^https?\\:\\/\\/starsbux7\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3022a9aa5f0269d4c796a0b000c83aff69f55d92cc99e6a321b6af760a3d72c7", + "regex": "." + }, + { + "hash": "789b6848187d03cafd778eab6aa95dfaee3aa2ddebfd0af7f48169ba64adf89d", + "regex": "(?i)^https?\\:\\/\\/eqhgbedqhbgeqd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ac4ff72471413784abfe03fea04eee135dbddb14e9550ae8ddcd4d3e13f4423c", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a88b1ae24f303e78d35e7826f835b1c701bb6e6bfb29e0cc4272e6d16db94441", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-cards5\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dc9caad851d3dbd4e3d139f5e4a2e7f08058be4166919e1d65474cc30fcad633", + "regex": "(?i)^https?\\:\\/\\/trendyflixs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c661d213626b3b0ff651cb909ba91b489538495d53134ce5fab107cb86c44942", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "737bbc5c485b0bb53ecd36354f10708becfc1c98a5cdc44394335afe1f19fe8d", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ee52d1404e06d3673b295e324d48d4a9bca32ad41cb394df24dc454fe38f1153", + "regex": "(?i)^https?\\:\\/\\/starsbux7\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "11a681c024e1b8ce0b1b1c1e570a9148a45ff81071ac0b96a586e706f123ac1b", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9e409fd20d460d7636666f8c1f2a858409c3c72e4bd8e9ccc6b2f58d0786f7f5", + "regex": "(?i)^https?\\:\\/\\/dashgames77\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9499a8c34beb7a2ed97a7102a813538a8eae5a319e7debaa05630be68eceab66", + "regex": "." + }, + { + "hash": "ede0c402a8d71bc2763ab385f865acc80b4eff5e3c98bf397de5018a2b2bc4eb", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-cards5\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1387c77ebda6449c35db2b71b3cef85a7be48d957818c6c1ea939ac775e49076", + "regex": "(?i)^https?\\:\\/\\/eqhgbedqhbgeqd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cbd31a64587914614f4b89f5a8d06664242c48940c0a029c0d95b7aa568c05de", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-cards5\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f8d4320f1bbfbe4c774c5d3775fc1c50d59d859cfa9c6feb85d34413cfccdb64", + "regex": "(?i)^https?\\:\\/\\/videohot18plushi\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "149aea129a9e1ab515782227398540ca404c0e42c392dba52a1fed60ad3a1781", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "762fc75c0fec6283a21b372ef4d40f91acde37758e12301c9e870abb8fafbfbc", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgdfgdfdfghgfghddf42\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "45afa00f87511af4f0d50c922dd1519915d1d31fdce460979feae517a69be2d2", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "bef3902472d855a883acb02336c94aa181f3d338d2685c31b87c655200bfd2b1", + "regex": "(?i)^https?\\:\\/\\/hbgeqadhb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1f1e3bc8f80968a07f139d1c86301ebc9d4c31a7b3277e004a7f564260b47e97", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bee1e1866b6b69d143f14cab2b9626d4466d3f31afdc98ab9cc2dfcc0838cc20", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "705a28b6a6bafdcc01e8de56a714d0cd288abe1df4f7ef23f6138bfc64e140b1", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c11c129bd42af003bb0363bb2c0b71974dcb9761cd1bad373d7ea65643349079", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "13bf8346787d458fc6681f389f812860bbf36bb0ac74f092e0a2a2fcf439a003", + "regex": "." + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "658c54ad3a34710612411238cef9733ee6d7f240f690e4c247ceeae6acdcace1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.dvfvcv\\.com\\%E2\\%88\\%95fijulkonxl\\%E2\\%88\\%95pqhdair\\%E2\\%88\\%95qleal\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=whrbqm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bb46dfb078bdd556eaa29fbf612ef080eb0940accd972d3d439a116403f8806c", + "regex": "(?i)^https?\\:\\/\\/eadgqdahbqahgb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8ec16b9a2b9db27ee1bc85acd68886f83bf7a5585a2828ac55fd7ab91541043e", + "regex": "(?i)^https?\\:\\/\\/monopolygo5\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "624a1a987b67462f65efe3e787d08f23e27b43de05a5d185ac39f1b79caf4bb1", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "dfc7eef5b8564e496dc9997715c4ab0cd175d4fd884eadcdb68346a0a7cf3fc1", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5e552cf30090db2dc7f77f8055327b6c99b67ef097fd4bfc320c4504b7ac5d7b", + "regex": "(?i)^https?\\:\\/\\/hbgeqadhb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c7d7808c38d13931de118967209a14402391d99b763e1a06cf082e78106f5880", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8f307da3d3bc6e33d37cd89e8fe83be5007f0222b69d35fd963ab4cbcce5a541", + "regex": "(?i)^https?\\:\\/\\/eqhgbedqhbgeqd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "16202aef87d95d4e1907541751c0d57609d3eb0b92ec6aaeee736dd2891e2ccd", + "regex": "." + }, + { + "hash": "83df812a2ec52df4ca75946625fdeb83423afb1971ec445435ca885e56889300", + "regex": "(?i)^https?\\:\\/\\/trendyflixs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a868eaa9e17f5bab5f1d24eba434eb0c4f001129ca7c2f2f0a8fc245f3bae", + "regex": "(?i)^https?\\:\\/\\/videohot18plushi\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2d0e5c19b240e15445c237f7bdd9c4a37f6cdcea2d07537ce8e17713d38bb01d", + "regex": "." + }, + { + "hash": "fdecf3eafcc365baadab72edd824477f08d771d00bb65ff598cabf1349bd0915", + "regex": "(?i)^https?\\:\\/\\/amazon\\.kqiwb\\.com\\%E2\\%88\\%95jotnuou\\%E2\\%88\\%95mspqpfoqo\\%E2\\%88\\%95jfyaernyn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rommr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "419742bd025f00ac64b6b955af0c2652ee20c0ac5169cc526e49b1035ec1e040", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "02841be3f573289a782fce0957abe6c46104ecec9d6e764266e3d1222a4cac60", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "45d610b210158811ff8a8763af31fff99483eabc240163b137195b5b11bab92c", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvovo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9f62ec815a18495adf22e1ff0c841f98633523336c0d3f317621755fe7f32c2d", + "regex": "(?i)^https?\\:\\/\\/monopolygo5\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fd7422ec0c5912210a647bc0d7f8fb71921e5d47839a652e413be6a2ea417d96", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5a8770bbdce07716710fd5ff6360ec09afc19f7c8c12899a2dee4bbff01b6b78", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3601278ffc4ab35dca0bc285a018f2c62107b63ccd1be6dc9887bd8edef8dfe3", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7b6d283258e20fd7106d53921f0e6f9f4eb3076935547129b063fb33a41290cd", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d9da2782b110fac78c6f27a2a63d5e9f985ee234135cc3e0aae73c42318f4426", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "71edab179bba1583755e82b6a273e51d5c5ae54b9fd50aa0baf60e5e336a6886", + "regex": "." + }, + { + "hash": "1257eaef6bd08735d948e6b2a34622ec31adb777d6d5d7740cf4b84caaf6fc7d", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "efa08f7a29e97bd986cc5cef3a73ff7f256fcea8741d167c026060d32ec15ac6", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "034f46700a616b9f46d5c983add01a018958475da28c8099c4143afe4b804ea2", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a710d5da75e169793bf6f7fdee13d49d41cdb203d66b0102622ab9a796a6dad5", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d0a96b7297a7c4f6f77ca5251d0bb2e1fdd805d56a3e8af630d41cb85f2411a2", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "db5e657504620452344392f57ec4e0e6c05fc1d49bc9dae51e7d2462fa6718c2", + "regex": "." + }, + { + "hash": "9ccad33749a852f28e0f1b6438d4026710804db8cba7c071eeb02c9f8ae2eacb", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "acfb480b1e4c22246d800c4410279377c22c8ca8c467d7a62bc1d84e1e1c3450", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0f3cfe7d5638db70ecaf78be2d6788922aa525a64bee777d4caa51864c97f420", + "regex": "(?i)^https?\\:\\/\\/starsbux7\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9c28f1fb859ba1b5f44f424627f70e74bd0aab3fff0b3e5a298effb26cbe59b1", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "cc211ceffc85f160426d8a9686bec5f56150d05b5021267e99b75882760086d4", + "regex": "(?i)^https?\\:\\/\\/robux\\-get\\-gift\\-\\-40k\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\%3A\\%2F\\%2Fhomeworkjk\\.blob\\.core\\.windows\\.net\\%2Fcardiff\\%2Fseguro\\.html\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?ex\\=zeotap$" + }, + { + "hash": "b1ffe440ea47f51abca3017941264ce1f34c4a98d2e0ce7bae2e7735ff6bfec3", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3b5c7760855a92791bab8228f6ede9828a38e7bf0e22717b9c36280c4e388187", + "regex": "." + }, + { + "hash": "71b2fa9cb5e2122d7916934ddeb1c0b186ff11eb34184d961a7f87769645da71", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "624a5acb4578f092b67904766a28032c127ebbe3aca035ea3649c6569a299f09", + "regex": "." + }, + { + "hash": "72afe58ff5b40210f844af596d82e6f003e9e29ae5cbb328e61ac00daccdd879", + "regex": "(?i)^https?\\:\\/\\/eqagqaehgeqa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "14ea9cf8c61c849f8155fd0e7ba919611a56512b07f0410a4f389e51599f0855", + "regex": "(?i)^https?\\:\\/\\/monopolygo5\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "25de2e397bf0f63f48866f0103999bd5f0bbefd07406df25d0543d2c23625ef4", + "regex": "(?i)^https?\\:\\/\\/oruwyf8dys984rdf79dysf939hfsd7yhsdo8\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cb295afad1a53e67f3d3880709943835cf75e1daaa5b8157f9adf97858b164ab", + "regex": "." + }, + { + "hash": "63197eaca1e139324b5bb467d1ab32cd70c98ea4f8c7dc1eea1aecf786979c65", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c9bd34820b36a41940e7e0fa292de98cabd5cbac98796ddde1c3dd25aeada841", + "regex": "." + }, + { + "hash": "e60008c02e903b0ed7d76266a56c2af2e6133401bbbd8022fbfc252570f8ad2d", + "regex": "(?i)^https?\\:\\/\\/videohot18plushi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "54d44971fe39ce1cd3df492873bf818d1eb9fe14604a01f5115d5447453c7b05", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "33cfca8bbcf81217df65d512819843633b354749786bd9b38ce7929fd69d1225", + "regex": "(?i)^https?\\:\\/\\/att\\-mail\\-107328\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "19d9abba5e955cedd6365fab192005c5be96afc0695e4c7ecd78e84964e82e30", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "aad2ea703476e8eb6508d374ee9ffba103c62b7f9615198036997f7dad99e9c4", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0340e483f01d6e8e2e6f2a8a1a838dfc7e38b5d3ac1002373cf64f358ea56e5e", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8bfc5b87eeb903c2b18eec58c7f0b0c1a799f2a5047005f05a251fe29023480d", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9687a46624c678212a0b85d86d4962c1ef41c3a580509e123424326a5af95d14", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "47628d6bb8eba00560c41d151b64b8320299546bab376e7845325ab38da99981", + "regex": "(?i)^https?\\:\\/\\/qahqaehb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a88b1c91dd09db2a4054b8b7ea42a163bfeae9ed36b0d2c8e745373a8dbefdd8", + "regex": "." + }, + { + "hash": "3f118a6fd0192872feaaaf04e154cddc2a83983a17a93394972e5fabd3522aa3", + "regex": "." + }, + { + "hash": "d3960a952b0a45901de4ae41940c45996399f815f26642a444a6e23fa0f285fc", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4cb0d86a99cf48f09a304501d28ed7ce5e5ff5f8b5850b9860244e13a3cb2789", + "regex": "(?i)^https?\\:\\/\\/starsbux7\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e10e763ebce86ebfac13a5cc47811ce1ea2de1868966009b3b113c4bb5527c76", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "174427483407daa6461eaa1105c5d7e9c4ddb65379fa26211495c9e12d9add2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s[\\/\\\\]+fTySC0RB9RC2MAMmDIwfmH9fanL(?:\\?|$)" + }, + { + "hash": "fe052389f5b5e173965ff359b5422d525fec8476b1cf94b82c19f672e164ca50", + "regex": "(?i)^https?\\:\\/\\/monopolygo5\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e9ebb4a17b121572cedc4a1a9baea4cb0cb263057615492864e90d01b6d73822", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dc04a2d83ea2d7cd1f239fac8438868d7c053ba9f5aea12ae539546bd3adaec3", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c8ab6863421356ac1d4e5e7877bdf1a29c00d94fb61e4c70774d43b85deed816", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0830461c64920a95873cc283515f50a16e2e6bce7842e29c0905c2196f7a4a5f", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "98e3e1ddf8551499a38333b2bc2f70d615d931433185defc43dd0713304b2e6b", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c0c958488954fdf04b05f80fd50956b6ef7853887a5bedb953865c58ac5fca9f", + "regex": "." + }, + { + "hash": "f4cede13cff247483732dfa3bd3fb1947a0248c6703afdd964dc6ddb9f30888e", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ff754290a67e78f22d9b723d144648f63e3c07fdc5d519a68a5e6531418a61f8", + "regex": "(?i)^https?\\:\\/\\/trendyflixs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "da1c6e7c643cfb7b68f0fedbad81433328dd4a2ef1ac5abb24de9290d90b72c1", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fbe3d6d2a7125ccf40c3d9b98a69f7f0079b2bad8a982fb03938b92b0ce31b57", + "regex": "(?i)^https?\\:\\/\\/videohot18plushi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "45538cc41772b2341560407f71b38334ec79aee54c09ab7ae7862b70bd1adf1e", + "regex": "(?i)^https?\\:\\/\\/trendyflixs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "84eadeadb8d0aa2f1ce3bca42f2b2f23f7442073f80460fcd96f5dc762e363a3", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "de2962d0c0a94516e9c25791348593cce6bfe6f988e329ad1d5e39193d40b80f", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d1be3ff90153fb3351abf7bda88db6d23574841e64604f6a13a37b744192aab5", + "regex": "(?i)^https?\\:\\/\\/ro\\-bx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "10f1aba4d6e759d1a9d7a6ededf1477214adbd15f7166d06b13df3e28d05363c", + "regex": "(?i)^https?\\:\\/\\/robuxcoinss\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4cb2690504209e75f496864c5a3eec227fe7659c0095db9a5dda12e1de80fe6f", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "59e235f1f9588c5c5700424ef00b90a7a258e6f6b1a6e1cd64aefa0c2d6c09e7", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c6d41a33ff492320fd0af2d9dc5b315ba1b17189e6a5afd85b8dbdbf3820c367", + "regex": "." + }, + { + "hash": "8c4d37b8514ac00de8847d01425341aa4d082d65f9255cead6377120c5a62f23", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "626f2a316647df744dab04475970f97fdb7d8ae5ddcb297925ca1d3c76752a47", + "regex": "(?i)^https?\\:\\/\\/videohot18plushi\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "07884864ca0962043b53e9f1758bc3526e55f695234df6ef7c64cc988917fae9", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbeqa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6f384b42512e54a49e216a2c08f956fc50a46e3af454c83da83c174ec8386be6", + "regex": "(?i)^https?\\:\\/\\/dashgames77\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9bd7112636d99c9d6ca15911ce940bbb33234287e89bb7a5bc91332729b21299", + "regex": "(?i)^https?\\:\\/\\/monopolygo5\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0c6d9fef4a305a232d50e011c390273dcfb9bfe8ccfd3a425f85a4c1b9072aeb", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "29faef24154ea87131cd0bdf3c5d55e4bb5ae5fdb271bc72b63e6d1dbd824086", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "01fd1b30b0134a94fcf27a781d6b4d414db2df0ff4ff81d8ee267a6cc384a645", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "97459e24444d8438b85cb97e0cbabc8ea91373d4066b478e5d9e4433b63ab30d", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5065fa5cb9986b9a331f12f1356208d11233918b83c310d950d8e6074b637e6a", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4d4330f45fbf9aeaf131bd18f48b94e52c9786dfeb2368461819cf004949edcd", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvovo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "24d88b716599bc79a8f6c72fff2a2da3997f5f5ef9b4269c697b9aa01dfcc4b2", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3d55f9a1cb6df1eaca5341bd9ac48c0578a070932f96cc73894989d1c742efb3", + "regex": "(?i)^https?\\:\\/\\/oruwyf8dys984rdf79dysf939hfsd7yhsdo8\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "779a44862ca385f9416aa2a7ef793d6258ddbe13c01e4da7d59b8a8698dc71f0", + "regex": "." + }, + { + "hash": "d7136acd564c7c6bf48fc99ebf6199d3a95fdc4f65de090caaa39547a7ff5942", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "369057b5698cee3d944252fda9d3eb14ac234004ed52c2999b7e967fc8c28cce", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fb9d29d41405a8d6d16de20e7c4cc0009e11c6a606c71564f39ab5d53f243102", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgdfgdfdfghgfghddf42\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4715b384b3a5cbb03bb229cbc8265a632a98e4c861d957aa2ba0ca405c950c58", + "regex": "(?i)^https?\\:\\/\\/eadgqdahbqahgb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3365a88989f34a013cf5e50102aaf6bfa293fd4a83a93195e675f83d5b26f66d", + "regex": "(?i)^https?\\:\\/\\/att\\-mail\\-105527\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9f05c7ab2f85c65326deeac7f01559ddd8401551c5db1e323a85b4aca4f2f6cd", + "regex": "." + }, + { + "hash": "1aeb3cdb65b60b8c8fc903463ff5191202783d8b110b8bf3ff0d38fa83a2a1c2", + "regex": "." + }, + { + "hash": "c340d2c19189019038a135f969110ab0372bd10ef0e3986ac170594f1d91eec2", + "regex": "(?i)^https?\\:\\/\\/monoopolygoo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c58ce4aba1ea9601d6b18ca328b81cd7e945b6d8e17efad707dbdc56df1c4934", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "063afca19ff2ba008acdac056538e4dd6fcf8857fc65fbed135a3a069ea4de94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "01bc3427cb487e8b37e211118357d4fbd0666c124a2f1d81c480ce978ed18fb2", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d0d65fbe9d99d984cc1efd498655ce009cc997efbdd5a36a644e73d556cc0be9", + "regex": "(?i)^https?\\:\\/\\/oruwyf8dys984rdf79dysf939hfsd7yhsdo8\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "391eb6916c2ea581ad7ab3054d059affc5ad78ae25b8edd3a97cb510fe8ea4e4", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d56e1d4a7f473286f817f84430dbef76a5190c492d851ad3d894c5c2f04f5317", + "regex": "(?i)^https?\\:\\/\\/eaqhgbeqadhbeqa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "27f6e09692d67a54c71cfccede529af6a9d42ba682a52032ce1817693a0407f1", + "regex": "(?i)^https?\\:\\/\\/eqagqaehgeqa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e1b481d74fa43a5b1470cef926dbdcc181db1abac32004529fbb03cc1a16c4c0", + "regex": "." + }, + { + "hash": "effb6185bd37fe24c601425ffc33c43e1d91ac576b0b783ecf4217f8f54ac3d0", + "regex": "(?i)^https?\\:\\/\\/qahqaehb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e24e0881e7ccf8e16b823604c23a660f2a08c23debb0f5d4a47d4fe0f273da52", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e5f1ba8a1eae5ff008063cce8f96cbb30b9182f32cdfb44bc15c59b02b0ec800", + "regex": "(?i)^https?\\:\\/\\/robux\\-get\\-gift\\-\\-40k\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4570759447a7e21f520330a4770ab62fc74c90fda7f64f2f9c4e81718334bb19", + "regex": "(?i)^https?\\:\\/\\/ro\\-bx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "35e2476d81879bf1e822a9b5f881b4ebd98c6d29a9c0a4eff7deae755ff53e23", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "74c6e899b0493a027abd0ff2abef044304b1ca4a57320ebbfc8ace6be1fd2552", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7cdcdc1920c00d80c47009b19ff0c6dbdebe4cbd06be169a3fd2d760ba0a19c5", + "regex": "." + }, + { + "hash": "ffd1929e087154b034474c6e49e5bd54520807a7cab6ef3e9725ec39f273db83", + "regex": "(?i)^https?\\:\\/\\/dashgames77\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "967f6be55fda83c5d050fcf48a5bfecf063964760f3d5c873fd28690c45d7138", + "regex": "(?i)^https?\\:\\/\\/fos12k\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4c1ed8dce6c289c18b703a92369dacfb17a3e4c004ad3428dd8b2fd6fd49fd72", + "regex": "(?i)^https?\\:\\/\\/serverrobux431\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "51d2b635585584ee99028747296cb9a607a3efd474d5949f118db0f7278aeb91", + "regex": "." + }, + { + "hash": "46f137bfe5563219e657d8f7dc5deabac119ff44a1484442c22c9624fa62a978", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c14d29fc2ad8b855aef3b607c9c7adf8b93d0f5d83ed0ba41919ef1cf6572069", + "regex": "(?i)^https?\\:\\/\\/videohot18plushi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2090b65bec4b80f047ef6832be021c4aad349ab7697ea6f0340494e1701ed7b8", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c6cfca0cffe96babf041917f1d9d4d7cc684ebba5da9f5ff9fc3297161ac0406", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2ec2500e99759f14a634a4b8df497df675219a2192af5376b073b680e174add1", + "regex": "." + }, + { + "hash": "6c06c387c328714dfe59032002d25000e59b78989b2e32e9d1fec62126740776", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "93496fbe339f9ce268de607453e0ab11de51ded9fa8b01bfeae2f1642d48f6d7", + "regex": "." + }, + { + "hash": "da74a6f14d380291e77c6cf057aa74be5eca8db3ed7716fba38783847f34bd7f", + "regex": "(?i)^https?\\:\\/\\/serverrobux431\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fd75f57f3dc32e7264c3e04f9a91fe07eaf375c2e9e2a51ae6226f46b5ca0092", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tbewyyaq\\.com\\%E2\\%88\\%95xnofe\\%E2\\%88\\%95evvbbns\\%E2\\%88\\%95jsjoftxfz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hbgrqvr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e47cfd630d2eb5f2e7fded6ecfad52ec89648e303e4bbe94d2a0ca3c38270c66", + "regex": "(?i)^https?\\:\\/\\/ehgbeqadhb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index$" + }, + { + "hash": "d1ecca1ae6302e9ea15bb262dee1404382529746bbe5c19092ada333d632d505", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c2fbf1934612e7d04d46f0da5b5c54a1d34642a2d6b43dd46e0384b5172639ca", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6b7cb0edacf3f9f7463027571b63e0d59a47932ff30981a1da3f76796d549cce", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "aae440a18ae73bed252834d1383b43b67dde1f526ec3d2775f76d09b622099c0", + "regex": "(?i)^https?\\:\\/\\/robuxcoinss\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c0b4e831da90186186dda5508840c575e5893345bff16b19c13a9f4f7b720363", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "81f5199ac98eeb7fb321c504da66178bf27536bf7519384c4b550cbfc550074d", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba2492e69fa050740bee07b051bf52dae0553052333f73ca989197421fd72", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d050d079d9264c6a4c2fc7b577263b0744b3db73df5e4d6003b7761ed2eaa6d4", + "regex": "(?i)^https?\\:\\/\\/oruwyf8dys984rdf79dysf939hfsd7yhsdo8\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "56561c6f8d8b872f90e1c9024969fb189fac26109993af3504071878fc140538", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "28e7d4e2c7bf12ffaf2ab46f3c1523246a6f703f22ccdfa6923457709ff1e6af", + "regex": "." + }, + { + "hash": "3ef9b9ba04aeae66d7c10ce73a3d21f708dbfa068b1d712f3d8edc48ca661995", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3743a598bee18840a41dbaaa147cf2a7e1584d6e27773ad1cdddc6cb5c73e329", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1d2e310d7a1af9dd1b22fa668ce4519a9095c5e79017e302082dbc789be652bf", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "56b30ecea2a728da8a1216eba7476f51bba58745b8106ddcb9f483d9927203c2", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "365f7748e1f13c23d874de3df9ffa3c63ffbd86333bda15274b96bc6d04c9a43", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0463fd2a342198e23a33a18da0733fd4b892760e6109916fd822281e5aa30b2c", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e32e315a791cc0bb6eb55c09e6e1008410036bbbb2f62ca8ef52ac2ba79ed0a7", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "928ed2eb4819aa744064901fb6dc0e318652e73130060fca866093682b7c12c9", + "regex": "(?i)^https?\\:\\/\\/eqhgbedqhbgeqd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8bfc0f3d3c35cb7cc4feb72b4ddefe9f396001f55f53c8d407c3bac112264c2a", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5e9bad6e7ca5bc61225abf5059be222605798b1ec6d4637b5e351af9cf493ffc", + "regex": "." + }, + { + "hash": "d614a8a132577fb48d191640b74a663a7f33293e00888b357b33b05b4e0b316d", + "regex": "." + }, + { + "hash": "3199fb7fea2600b9a9000bc391ae22906b11663870f23e10ffa75a226c44e642", + "regex": "." + }, + { + "hash": "ab3ca9573315c0cc13f5dcb57efb71245606c8e33d39fa30f379a912392a2748", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "11817ac2ecbe6e172aa630cd5941adaf80b9b0741afad4f7e3a0b02c1d539af3", + "regex": "(?i)^https?\\:\\/\\/fos12k\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3ff32fc604f4f93d62116daba76f18c212b7bb7349347bc99336b219eedb2d69", + "regex": "(?i)^https?\\:\\/\\/fos12k\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d0ef25652faa5e5e2f0cc0ddceade8f3dfd50013b14867cc483355a1f00c97ef", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0766ca9eea667b2b97aa862a98efaca6816cf99136af6ef17a9c58cbaf694a87", + "regex": "." + }, + { + "hash": "550fccdcc809ce15e23f96c88ae8a88248f9cf106c12eceaecbd41ab64c30f8c", + "regex": "." + }, + { + "hash": "6a0f684ea9a8334092d3c57089f5702be18440474ab75fb4e2d844eb6be4af86", + "regex": "(?i)^https?\\:\\/\\/monopolygo5\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ce31a60aefbc120bf966ea638a0621b5c12dc670f4181307aa7775d8c6baddce", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a0c2946a58365d78ce6300e49a833b821571463bc0c769adeeae068bc2d57600", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1a96cb4d564707ea66ef7cd451ddca7d8093c151e87a97c0de8eb72be8a5f604", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3b5c969d1284e718312c7ebfccfa27720607e4505fbdc1a84de81d4ca1c646df", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ea084f22cb20fbb4702a6fb9fc171fc0114c51227af3ab8f59bae777dea85feb", + "regex": "(?i)^https?\\:\\/\\/robuxcoinss\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "660fedc0b91664eb51af03a567c7485d5e8f5960e1981ea1edd777116eeb68f8", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c53b9a591c5bf56e468a5a204486afa5e84b18733cbf01763015eb40798aa54e", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "28577e65bcae2f8df7b95e1d03a540163acf2d68cd443072579d7b72038616e1", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9a7becb45edf612a49f5f0050c129dd93819f6f6b7ba264e08908ef4c2e41e4e", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f00734dad0f9eff1a91e83ddad0935761c9f9f456a22b641f7e0bced56d75014", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c8e8c9b1d6507e136072d6eb0d92c51ed531cf1212616c10203f2aaeb53b3d05", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "710e8f6eb1f6100bafd43186ba5516229ca158f488e0012d66ddfa918d7ab9de", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "191a9cc1c1e9f8206d9cf96a3c9c0910a2272a1e691db0b55a271f883a4fdcd8", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ac4f9c1303ad6bfd3ea909885097bc007a24f0fc8cd9f92df63b6847311c0e30", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8833233703db9c4f983585ac2f6d1e8a00a9b407064f1d7f1663b0f8534085fa", + "regex": "." + }, + { + "hash": "6dd27543130663c92a319162f76209c7065eef2904462bbf947f14ae13d7bfce", + "regex": "." + }, + { + "hash": "a9a4cb73f56ba6e6eea2a214387639d6f639f4d163a197a968cf57d63f1650d9", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7ffb7c2201223acdf3724e25ef54d542e03fe3e665bdcfebe6ac9f35aa50bb78", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bde74de336ba062650d71236295fa8f1cab728c3b40fdee04a92fb13c1b92cf1", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c8a4a7041a7338410f29db5a429efebd3e53743219b8a4640324701f11455179", + "regex": "(?i)^https?\\:\\/\\/www\\.060d\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "515dbce8455b29d3e3c6d0f1a4ed5c6507bd69b89e257828bd4f7a7d8cb42b50", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0890569fde7e5ed579eb8b85daeec92e459b174f06e0b47c94abaaeb5b3330cf", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgdfgdfdfghgfghddf42\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "953d96dca420db635e9cea228b981d43e553d3d7270b5ae6191db66e9f6f23ce", + "regex": "(?i)^https?\\:\\/\\/robuxcoinss\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "08958bf056ec14a37a56158a3db68bedd7a0e4d2a40d99a8fb995e7faee19b90", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0f55b05d36b5fd7c377c468d7a1f93269de85d65d75f37ce979910b19d1573ab", + "regex": "(?i)^https?\\:\\/\\/dashgames77\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d7de6ad7971b2824c7a02aebbbc62601b04c231f8d32cc4e6a96fc7535ba86c0", + "regex": "(?i)^https?\\:\\/\\/hbgeqadhb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1a8de19668cd8bcd4ddb3d33c59dbf8fefe3661c4bdf58b80e0124c9c349afb0", + "regex": "." + }, + { + "hash": "82d7f8ee956182b89d80c977dafc6898fe1ad67566e188627263848a68eba2d1", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st\\-reward\\-link\\-igsocial0711\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f128a95336b760d9ca390a2f82989ad45740c87ea33eff8da74a149c959eb25b", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3ee72664034d47b2c2ff694ed9969f8441aec5d3e5269040fb65b62ec4cb5f55", + "regex": "(?i)^https?\\:\\/\\/eaqhgbeqadhbeqa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e511d4fd7831b76cfa793324c2354072fccbd0cf42f8ed0ded6ba1b26083428c", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f341c945f211aaae53f826e410777288d8f97c490e16c088e77592d35a04f91a", + "regex": "." + }, + { + "hash": "e26ddda9c92c33c8b3eef3f426f126d9a68d9daf2bc760747844ebf687649759", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "33026ee2fe14a2484ba908dc8629e24f8d6139a7d1d8c209c7c22a520c996085", + "regex": "(?i)^https?\\:\\/\\/robuxcoinss\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e11728e67ce01e00d237d409d67a618a5fde7708ef82e72343c4f239d60b8", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a8c6ae1830abae1601619ce0bce350e9d85af88c6b7886a0a217b81200e2bf1c", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3170e85a3729ccd4de8f0bb533f562072c9dac80fc8fa8e84202bb445c0f5eda", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "18f2215e77f337e259b1cfb7354b3bef76ed944962278454c4d74e5f5b5893f6", + "regex": "." + }, + { + "hash": "12062be6ba7e9dc6f1152dd40ba95b1dd7584a5b5f6a28df0699553be94baae8", + "regex": "(?i)^https?\\:\\/\\/trendyflixs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "406a153cd371049cbee0772a1804b1dc449a62306a1e8fcce102049283a3cb4f", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f328829c4ae2a8766546ea8e0e9b5c1d3ef083b593b4a5902362e45c6d7d39d0", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "efe69c2f818d8865f1e1952ac1ae995e25b925c43618aafb23b7498370e52224", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "966bff545ae188e796274fd0f2001f11a4212ba484b42b59be7059c841a74b4b", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbeqa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "61dcab27aac7743b03d4b3c1a9304dab17c97d16c3fb3aedd3d657914af91eb4", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5ce8dc68efd10c947082eac425facf07ac846dd6e96408a395822e3e2e05e44f", + "regex": "(?i)^https?\\:\\/\\/eadgqdahbqahgb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c128231af8ba47a0243e9fdefd3956c548b52cb74deaddaa2e1990b4321a42b9", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "287f18ad321250897e72a062c53b727e63f579bddfc9084c3baeba995eeba60f", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5b30c807a4cfbe6a691b0d1b88b481f09cbdd0da6cd3d696338670a10017c26a", + "regex": "(?i)^https?\\:\\/\\/trendyflixs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eab181b545033ad7a3a189d788187fef6f42c13c7dfb08fa809eac4b65a4acdb", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7d610e1a228c2b63ab69188d5ffe23d5c0e65e2930b398ee3843acea50198e93", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1da8345416fcbdabf05c644980a41b350d35ce798e2d53fac5087261b82a5a4c", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a2f2652a12effc60db05b2a1abe8f9f96a3a560bd9f365d0335e617b3a7f42c8", + "regex": "(?i)^https?\\:\\/\\/starsbux7\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9a7bd9ebde3111d1e41aa092e34fb825fdd4fab1acf07f30f79f55ac75c4a84d", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3475b7a32fbfba122c94abdda6ba1d65e644ffd63544500ebabdad1b9982fd2a", + "regex": "(?i)^https?\\:\\/\\/www\\.043233\\.vip\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c829e1acbde36e4d7e2731e52674b2faf31a25419cc33d5cd3129741bb5dece0", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvovo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bfe01f0a164f71650e76d049315400c8e189e0724df81294a631f8bd0928b27e", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "650d3b9bd431f8d48bcba84827e5a4fbdef0bdc30c0f9e23bbcb1b478ed4a4ce", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "631aec409a8a4dbfaeaf06fdf3a51d1f311fa3c6e58427379200127686f49ea8", + "regex": "(?i)^https?\\:\\/\\/serverrobux431\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8c23a1244c079903b4ee913dae6e6890a0926fbdae6f38917dc9148426e91aa8", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b25badffed595a6cb897d4708230f671eed3deacd044a1bc706b7cc851952ac2", + "regex": "(?i)^https?\\:\\/\\/eadgqdahbqahgb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6ca265c9e4a6f2c2b6c30680deecc4eb212686e3e665f8dd7952bc424151aee7", + "regex": "(?i)^https?\\:\\/\\/hbgeqadhb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "29506e2412cfc088d65255035adee480d7fc1aa782a9311f9f9a5571e24bb1cc", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2f34e3221f2b509b26b81d44b104e651e928687a026323f02a923faab2f7c752", + "regex": "(?i)^https?\\:\\/\\/serverrobux431\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "99ba8d80cce999b36955259540521c18414213c2dab34dffe12293a976f616db", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a73ff8b2cd6b03a7f0dddd9e8493f43e05876702c3ed85ffc54429aa97db0c04", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d8d646102463642a641b0931eb6a55c3fc89665628df5576bde77d59fc628f98", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ba96e94174bcd0c7829a24471f030134b617fee85b0fddca2e3bc11c23da1ac2", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "704997653a76242f7b803b38edf1816a1140ef7d44f7102b2b1b3b69a5c50ce2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "47be2a44a62cab47ea0ab7c0e76164a1e191c5d61342556c298e244cbc17ca3b", + "regex": "." + }, + { + "hash": "e022c9acd176c16c5ad5f92ca242327aa98e8406170025b09b05f43d3acc7cae", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3b562dd5b688a8a4391c838815e580902e04c7313cd80f435d61440ceeb24498", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b7fb2955b0e180144185556138145e2a8e98f0eed8dadbfbaa1ff90c44fb93e6", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bcd3625eb85b9f06de817ab3d30ed686af10f44e6ef21ca7f621af23e395142f", + "regex": "." + }, + { + "hash": "de791aafbc366c7da214773a04ca624ff4f61053c688b84e401ac960b4efed8f", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a8b8c46d69f72af872c7e29395a10ebb7cefc9e4a69dc454c35c11dfb1e18c72", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d7c5a4af432a34680ff583069c779ce1ae542c8ecc2cf3dbb06ad824855e789a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wis[\\/\\\\]+clicktime[\\/\\\\]+v1[\\/\\\\]+query\\?url\\=https\\:[\\/\\\\]+login\\.globapharma\\.ae[\\/\\\\]+tqysUvRz\\&umid\\=607d9399\\-9f62\\-48c6\\-a179\\-4925c5958ed6\\&auth\\=7168523c4dfc4f40d38da155b1a7ca81c9055787\\-1a930b61f7d2577a0e2f151bf1c618da2a8a75c9$" + }, + { + "hash": "befb52f3a721a534f31e61835014c0a14b403a061f71d81b5666c339eee23d96", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c7851639268c04115e0d8eea81efb2fbbaaae1a7621d6ae7bb36f7231b13fd2c", + "regex": "(?i)^https?\\:\\/\\/trendyflixs\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e590745a7f1f984606dc61d32923b84eeb33faace57a1aafa0f333a970216d2f", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "19b549e5a2605d24483de8fdbe598aa146e3deb11881db7bcf9eac4b5ee89f08", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "82868423e34a260da87f7aa72e26fc47d1ba5f21e470b1a98d91afa36bb0af2d", + "regex": "." + }, + { + "hash": "8b24388ac45bd4866f3c16672143df410673f9b94365924ccf949f12d5fc4707", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6c1c1fcd63edd22be31a7a84adbe713d0aafe9222e72055b5efa30d4732dad11", + "regex": "(?i)^https?\\:\\/\\/monoopolygoo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8a25d6f98a54e4607cd76f07524f2c42bb410fcae3166c457ec6896b3de144c6", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a718330a42af886514c64dbbfdb9a569e1ef6f0ee7ae40ace7a581a605c067ec", + "regex": "(?i)^https?\\:\\/\\/attcom\\-104230\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4d7c6116485ed3169ce68ae0be7167c406a01c25dbf28562e64708ab00907805", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8bdd04f8b1a3c11d8de9fe08384ec645b8174ce787f06f246bfa32a1ee33461a", + "regex": "(?i)^https?\\:\\/\\/oruwyf8dys984rdf79dysf939hfsd7yhsdo8\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "083392d388b192bd1c4cd7385e16dcf36e3ac31f6353004a3d09a2cbe4247259", + "regex": "(?i)^https?\\:\\/\\/dashgames77\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c45f9793e626a9d0b6966e264959f6a7493afba9b863289c1b57fdcc963b914d", + "regex": "(?i)^https?\\:\\/\\/starsbux7\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9a0bbcf3f3bcb89872dd071a3693ccf73ac22933eae59e6202c709f906fce779", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "723f3d3cb2c438edc24b487961817472c5e12f75b13d36c294717ccdf50b29bf", + "regex": "(?i)^https?\\:\\/\\/qahqaehb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "64a0677100e7c2b14b1e8a6e09294c3d6d6774d8bb59f11136de6071424709b6", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a649eab3f458abffa2c8bb17fececd286200900ff2bfd14df97164def04b620a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "adaae4e4b354470d3e28ff52136ef9f25c745722e2f2a6776a6b2d73463b9b01", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ba59d0b33bcd13dce3ea307fad4b404e73d56cff64d74d270d33332e23d366c2", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e1a3f6781f87c372f0cb675f07cb308ac2b40050533228a4153ac2da47d29274", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "62b041598fae6134a87c4e6dca9f4fd62102703c3ec7cb24ea7d4424e1e2a331", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "89a3dd064cb97658673aa92304736737527bd4deec600297c24c1d3d3f2a6d49", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7de9a6e961c6f0919c3b0471a9b9736aeab834d6dc0b66a0d10cb8bec948f20e", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "31c43d24f0156f7b2a1ac5b66584997f59b75bfdb5cbd9f6b92e7819aae79cfd", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "95ff7880149a98abf7641e0774a2b8b9304ecdf050a6bac2e4f2074c077b5936", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbeqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "55a4228a2c917e03384984554639497b19e0f5c0cd1e8f9efe1a3507417803a6", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "a5a4970e016654950549a75ed4570ff0cb53c249b6640db56b0c6f36e8f14044", + "regex": "." + }, + { + "hash": "f0076fad1d310a8a92c6d7955b0412764b641232188df96ae28cccb165369121", + "regex": "(?i)^https?\\:\\/\\/ro\\-bx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "47cee97c71c1f49870bf87668c2b9ff8b7aad118d49b7af92bd7a2e71a42a87b", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a4112cb2503851ecf0ed0668e95a8e251447e94b3b65cb5afab1faa4c6f02c00", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a9caa7194ccb98cbc8699dbc6f32d46577365b932ac9d2d0869eb30d693907dc", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3b5b35b51fb848fd6264ac5eda006707121b56df1fc22de2cc7374638523e555", + "regex": "(?i)^https?\\:\\/\\/robux\\-get\\-gift\\-\\-40k\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7b18f9233f292b266720a97ec74950f2a10304c1f7abc15adac15b9daeeeb66a", + "regex": "(?i)^https?\\:\\/\\/eqagqaehgeqa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "09bb2c4436e0e3048a7fe95a87305437c60721fe0000c76e43c5b142a2cee791", + "regex": "(?i)^https?\\:\\/\\/dice5\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "89d59a5783588eca4f3c0346377e1ea76717a6ab0d127d6138e112db2bce9d72", + "regex": "(?i)^https?\\:\\/\\/oruwyf8dys984rdf79dysf939hfsd7yhsdo8\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d67c6c183768d5cb10fb4c38ddf71dbfe9ef33249e287858e153efa0d20c9e43", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-cards5\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "be4b931088e9ee01432fffe569678c274076dca28d9b6d9c8d664c42f8cfdf21", + "regex": "(?i)^https?\\:\\/\\/hbgeqadhb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1b12b27da93776c87a5bf741bbb9720ca511871ab5aef74487549d98605cb75e", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7aade17a560f633fe061da2dbf58515114ad520d96021000e7dac2ed11474b49", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgdfgdfdfghgfghddf42\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "337e1b29dee8c8e583202b052e844f258a6e7b0f54df4ea8452913f26f449b87", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e87538cb3ec8f77b3828e50616b6f33f227081c7c02d0bf1acfa776053f0ea85", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvovo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "63885c662d8b3d3ff82279eb19bf9681168721a393207c094ae8e86cebde3840", + "regex": "(?i)^https?\\:\\/\\/eadgqdahbqahgb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ee0cabd22b75063c922f8ef8c5f69e5216d24e99496c6cf18000dcfd334ad7ab", + "regex": "(?i)^https?\\:\\/\\/ehgbeqadhb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5cd05a8748d165171d871ce6de20a9c8006a7f93b0659fc40f9c7eedfacda4ec", + "regex": "(?i)^https?\\:\\/\\/monopolygo5\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d9296b251af9c90297852943c37d38d55576fe49b8c6ab37d8639a1267a67d5c", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5b1a09a8d5c2b3f3cf7ebce7c9ebdac91a14329358d175a3f8a62ad103f2129a", + "regex": "(?i)^https?\\:\\/\\/darkred\\-horse\\-yx4yyvpndwh5gvzr\\.builder\\-preview\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "54f41a50896c2a6dcb7bf3a40da79538103219853d0209dec9ef2c8b5e2f618f", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b2f63c9522df731cc7c2337526933cd4bfd13c7b1edd056a95addd49d6cd62df", + "regex": "(?i)^https?\\:\\/\\/apply\\-claro\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "84d4eb330497337def74d7061330230280e0ed59e6c3e1afb2a20cf98087508f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvovo\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+QmeubDbJCFaWF6eti7LQGbpfzvf4i6zV11MTBuGn45B1sb$" + }, + { + "hash": "25b6984cf29240314dbbf6529f53aa4999858f6ab75b0c83e7bc00edb7d14029", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "2185e0bdb99c200a804c29e692f44b1362459d512edda2d7035769b9b04bcd7d", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "79719bcd6ca7a3e1943386150cd3e0fe09575c8a0903a2780eb922c17f01c39f", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a9942504fa2b1e3472354f4c677c86fc13b0a17309dcb7d96938d96bff69c4b0", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6a9d8e50d3308403716d3c6ab8c9a07745981bf20dd739790a32e7c11c4dae5f", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b9d8897049ce5aede4179edd3c676bc0f86a8104590f47ef8d3c520d0615eb2f", + "regex": "(?i)^https?\\:\\/\\/eqhgbedqhbgeqd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a2d9bd2e9484a3476c9ebbf583f64ad36f984346deda914f5cccd2c7a79df64c", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "89e852838124a023386922831ce17836c1fd6b6fcb2f69c3d69c5bc31ad9b45d", + "regex": "(?i)^https?\\:\\/\\/eqagqaehgeqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "31f6006cca17d8cd9e012a2a54f3aeb10e50d6ee2332d920d19818435778d6eb", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ad63953b7d9aca5cfa143cedb160b3d9ac8c0f8a6f655d9d60ff0c4be999d8a4", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c913870a38cc37e816d79c6d6e60af3b5570d89e57fdc7b6beb4247a7f1bbb4c", + "regex": "(?i)^https?\\:\\/\\/fos12k\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "69d3fb060c65a33a2659f45ecfdbf1413fd13c8761a3ee28e49ecc2ec00979ff", + "regex": "(?i)^https?\\:\\/\\/eadgqdahbqahgb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2ce2490567f5caf0a2232dc6b990e30f17476c9af331e60e4bf2e0b529026283", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ad15886f63621edfeb319b99dadad9ebb577a2ad72b603f72ded66dfb6931526", + "regex": "." + }, + { + "hash": "c107f2404ca705fbafd00ec6156e877f19a02612c8458f8250e5704706e7d397", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d70a6fd994332aa889fd697a276576b0d67dff506911fb8f9afb1c3c647ff440", + "regex": "(?i)^https?\\:\\/\\/currently75902\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "aabc5a08348ccc4d42055fbf9b9d523b657443d2da7f7b2986cdee8aa369626d", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-cards5\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d3d3e84af147c2befb6f93a832ef62d319fe53890f316e792382d0721decd81e", + "regex": "(?i)^https?\\:\\/\\/qahqaehb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1c2c15cac981cacf14b6f17aa13080df8981a75d0d2a39194fed9594e8d23e7a", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "59c2a3985112b84373af04e8a7ffaf8980ddfc63111280417fc22e560a4ec76c", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9b3dbeddd083e109b58bfd60c49ffecbe0ceb727534b029150a796024bb30eb4", + "regex": "(?i)^https?\\:\\/\\/dfghfghfgdfgdfdfghgfghddf42\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a8dedb3ce53b50baa8511c6cf392037ff3ebbe2a968af3c12444994b32b72558", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+collections(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "07f4bc7fcfc33afe693ed382a001ac7a261fd8b12989d9aa45cf4c9d2f0173ef", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "424d81630a0a1d961885c689f3eaa7c491d52d3b75e83f29898d78aebebc763d", + "regex": "(?i)^https?\\:\\/\\/hbgeqadhb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c51c9d380efd7f37869fa5be2718507819d075bc423d54b350f64fa481ea8fb0", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a2ff389f3f5d9f4c2de3b3593fee4584bb788e4088b7af1ce9d756705bafe916", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a184b05e4c6407901fcbc03c8f2e9fd12d6ac99032207281bf9e6bab6cb0ef54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "f930dd7733c1bba7cbae89a226c3cd73fa470a3a8f8ebfebee09922b742a3547", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d0e8de0802e28101ad8e65567b639a1e2cf91aabe38001a3275498164449e9fc", + "regex": "." + }, + { + "hash": "b02bb557fbfb44e7424f08d60224876e7a3d6fd639fa4ddf3008ea6788bfa3a1", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "17540f035f32bac9cada95bae33ac4ac3768b3f10cb57489bb9f5133963ae094", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "30d6519c417693c88b0a36418803586939a99793a3164af7637ba1d9ab3ad6d0", + "regex": "(?i)^https?\\:\\/\\/1webcam\\-live\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5da7a7628cf24c9bea5e0235ccbbf8e8eb7ed254c53eb48748f23a602d0c440c", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2cb791e42f27627b2f404aee68ff84be23fef423ac17d31dfaac1187081d7d2b", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cb5641e70dc093bc6d832e33274758369d40f00b709bd2fc4505b7a2db308b34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+84298cf0\\-7a8f\\-4727\\-a1d8\\-cc882d8453b1(?:\\?|$)" + }, + { + "hash": "d36e95363725e15e4b6aa24a6435972663a0ffb21585ec634f800ab1896c4b95", + "regex": "(?i)^https?\\:\\/\\/fos12k\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e1fe98c36185e38f9abe2e5fe64ae3c28cda8497e04f15cbaf4a1575628536b1", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "673d4211a7fe6a51d88fba350981cfece517f6240ae9415a5aa743ba5e9b148c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7b390e29869466db638d316a5af22a91ea59035f05b25d0d2227d0ea7d4bc192", + "regex": "(?i)^https?\\:\\/\\/dashgames77\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2d84682384cbafec725d2e1694382c5e3fbc286d4b3ffd538bbb083ae48cb6fb", + "regex": "(?i)^https?\\:\\/\\/qahqaehb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ae9929ca3ffa90ee764cf4e1ad43815076c7bc0fea6e6c4f499db1d928f42875", + "regex": "(?i)^https?\\:\\/\\/092661\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1b908ecbdbd61ecdc6bb562bbfa2bca83e263a44f8ee3262bd0818afa6f2025c", + "regex": "(?i)^https?\\:\\/\\/ehgbeqadhb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4795840d7280ccb945f58b4018b78e79391db25549303f3d7ffc8fce4e472ffb", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1798bcf0d3a37eb9c48de16876f97d3f67da1298f4675db42e98194f40c66035", + "regex": "(?i)^https?\\:\\/\\/fos12k\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "82e580ba825733a7efc5353544a3ec52dcae1e1e8c8537c2bd532bfdbf7412b8", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e8e2fbd5d153c5a7db27159b386cc08bbf597f590c2e098a1aeaa8dab032fa22", + "regex": "(?i)^https?\\:\\/\\/serverrobux431\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "52ceb99668b507d54a70d402726d2f3ca7b962842429eba1378f76e22912004b", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-cards5\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "656c27e182f2d8cc98df54f1557497030efc10ef7de2cdd94f7ef123897066b4", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "49917b81f6edf21ee0b1b7e5d485ae95a421937cc9c322824964bb637514abca", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f435259010419d4c7400a96cabd9cefdac6a67a516991672e0b472e3b7b1f491", + "regex": "." + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6d83a0ad8347e9608c75ad7151a9110a972284794edc05f2ecacafec6f984bb6", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9029989f882880ed84180be3a80c4731fb345a50be9ce12833a57ffed58fb2d8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "98a9f5706976f2120b42c148e50ed48e130f0de91a042dd8fcee5d7a56c79226", + "regex": "." + }, + { + "hash": "db797293a9107e23cccad400f1d29ad440b0ec158c95f0320626e58f5acc0a8a", + "regex": "(?i)^https?\\:\\/\\/ats\\-sublime\\-site\\-d066c3\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "650fb70218238d650ce8ae2a33aa01a508dab6971c82b2a319b4bdce98aa2e8b", + "regex": "(?i)^https?\\:\\/\\/aedhbeqadhb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3969cd9a20402794a2f7ce97bf28c41140d6459de3d11fec3fecbc68b7bda7cb", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "90a9ca326db5666d89d12b05f7a5d4bd8fd69a99db8090c1c57f98bf3b985def", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "99261b9269a726f7cfb179c6384894ccf757ca13038985a1d1b7f65dea3a643b", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f38be906954ac6f4a9089791e8ba89aa029fd55a9dfce102f55c83cff63683d6", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fhatxamcy\\.com\\%E2\\%88\\%95gsaja\\%E2\\%88\\%95ilkvytlszw\\%E2\\%88\\%95njokmsqcud\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hzwysyowl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "93ab2b4add5209689cd78335efa50d8666fd799d2708bd16a6fb20b5657ed5c8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d64ab664c9127151a31063bb8bc25ee66a8ada7510796aa193a473b907aed186", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "068e8f62b895882cff27b59937f983b6da07da1ac6cddfae41ab9d1938340ffe", + "regex": "(?i)^https?\\:\\/\\/eqagqaehgeqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c60415b1e31296ba22b097f1a4a931a6b10a3aaef8192c680da978ab3e83c792", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e000d370d7aff20440dd93cf318b443ce721fbb952ca136c982980c09d589dc4", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "63fc1642b6b26134aec8ac615e8ffa292e2fb75b2e5b817ff06803408b3a5cec", + "regex": "(?i)^https?\\:\\/\\/rob\\-xsazx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "748fb2ac84406828d0134bb25a6fecf20fc63d7befca7f159ec7d98439bd746d", + "regex": "(?i)^https?\\:\\/\\/fos12k\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9be4ead21bb10f97ff36a10b3a089b50b8f24abf4bcde51cafad4a935d07f2a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "7af6e1a5dc019661f9e4766e83b9a48be389e134f5c5a89013129468599d225e", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ae260863d4e7b3ce6f2abc17494b14e338576ec3c695e215ae006575af2e9587", + "regex": "(?i)^https?\\:\\/\\/monoopolygoo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "78a7c9a9cbd35f20529bdaf2a0b5775ea174f54d7dc00188c2773fb047247a35", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e2121eff3c26e1d2b134a1330b674187d4eb592dadf382d758a5445c21973499", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "80b7b0c6aae749a7af34b5849a0c1ab554369968502c0c36cc0e14f044b6be75", + "regex": "(?i)^https?\\:\\/\\/dashgames77\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "609c51444086df9c84974ed4aedeaf3bfe97c83249750396bdee8a9daf6a097c", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e749eff35118101c16a6661960a190f933a814d94be9b0ba657caa323f0d2d4f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "09739da1db664bd6c5bd83ce603782358dabe5416b674533998b0391bb0ee1c2", + "regex": "(?i)^https?\\:\\/\\/teasecliptoday\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b74b43d3495430d39995787d00499a176d081beb7a41beae7efc896c3e821", + "regex": "(?i)^https?\\:\\/\\/att\\-108280\\-109689\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6a0f4bd998f35a240b44e8a815a7bef3b52463bc6670c6cf3a74cb9fbc3bb75f", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f29a3e1660ded4dabea9c0c0a4d6319c1064674e5f7d761ed2ce9c25efb14442", + "regex": "(?i)^https?\\:\\/\\/webcam\\-paiement\\-par\\-tel\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2cc5e9648e052cfa166fee76fda3cde78a7a10f3db76fe6437c0a19908f51df0", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cab6a7fed66b840474f78a4e8b97f13c866bb48be629ed4881a6dd0589b2b790", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f06996aea0369d8eb3e0700be226c72903276876653a0616cece441f946aecac", + "regex": "(?i)^https?\\:\\/\\/ehgbeqadhb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5137ef671f89519256c595a9a452e161190b656f5fc2b3f4a34dd2c2cb51bc9b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvovo\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3cebd005700164d91c9ef715f97495ad956a91d80323d3ec96eeda1cb87a21d1", + "regex": "(?i)^https?\\:\\/\\/att\\-105804\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3033372f3797b56e8d6248b95c166763f68c31b8c704b2f407232d1dd55d9dd6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b88c57ef7c4afe80cc5a9c804e98c387e29750fd19569f408fde00c7cc58b9a", + "regex": "." + }, + { + "hash": "74ed74fd49494ed41cc56745aa98a61b1e809a2d3d5a4eba1b7d83e91d256c09", + "regex": "(?i)^https?\\:\\/\\/tobbx\\-l\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "10fc1f739381f6b299bc3642882810c12b1488ec0651170440238e10a7621894", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8d30c62c058e88e0207b038dd6cbaee932af5bc9edd739ab4fe9fa35d223b42b", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "877f34f0c87917572d457540e900fa7162073bcbe20a71307b92709f837f2919", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "aa8090afc9c0f430d53035d381074e7945b7b3d91925eb646e3b04227db70a91", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d2bd74347280d45fd5fba60ece39edb42ed1632f1ebe29f88881452e79c1f950", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "170283638ea40776c7212a6f27ae81d5b913ebb3924b22d62c0d0f84c2101d76", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e7c5e840334f1d0758d6e4bda9910e1f3be19cd68e75da79721a8fbc614b0802", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ee2f26306bcc71c24364732d3b72d30ef5699b98c224705720d9bebffd7463c7", + "regex": "(?i)^https?\\:\\/\\/monoopolygoo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "75cd8b5b8325135144ed48ebdabf63f0915e95353e60dabd479fc17d5cff9eae", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ec0c90cbd1df4c296af3e4ad0f78f09415edc7d37adcec2277da162c27a12e85", + "regex": "(?i)^https?\\:\\/\\/amazon\\.btmrqscma\\.com\\%E2\\%88\\%95lbntygyi\\%E2\\%88\\%95zqfpgwnqt\\%E2\\%88\\%95jtwwfeenn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dzmotkcubw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a70978c0d0112c2e5b351c972d959834bf841a0a2b454ae57a0af42e675537d", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-cards5\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2bc27d2a731cc8fa941403635215595ebf2dc9ee82bd0ad120c9a01194a64155", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7e51cb9aeb3d8b5cbb3f99c4254287e7eeba935beed13a570258d5165e307297", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "19b57e66597efec8f38ffbbc1afedd36c46d7f59f0d5b76ad9731d6b8a474e66", + "regex": "." + }, + { + "hash": "86c249ff5410deb541d56fef0e705886f33b6b691fe41aa0eaf51c90604de2a6", + "regex": "." + }, + { + "hash": "dd853466cc4c2010610f948f971093e72e062f1af192a87d911b06bd173848ae", + "regex": "(?i)^https?\\:\\/\\/trendyflixs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "849048e02a4d8400a2c0df911ab103778d04c0839ce6d320cffbe656ab3630d5", + "regex": "(?i)^https?\\:\\/\\/robux\\-get\\-gift\\-\\-40k\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f921294483f1688f81c61ee1bbfc950a99643be1ddc70131403a5f6c9be170b2", + "regex": "(?i)^https?\\:\\/\\/robuxcoinss\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4e8e462a691accc60c2167ca772dabab64cb5a246eefb8ea44b9e15724486418", + "regex": "(?i)^https?\\:\\/\\/serverrobux431\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "23261f0076e9a61d05ca6642df373c0ddca5482818b21a6b259053af8f4863b6", + "regex": "(?i)^https?\\:\\/\\/hbgeqadhb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "76de7d29896f49df8c832e50381c05abcc5eb3b983afae375f8c5b7885e88bad", + "regex": "(?i)^https?\\:\\/\\/eadgqdahbqahgb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ee4c5d1009573ae06e5381b4138effca262a5b629427ba547c3c811e376d265c", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "85f32466fc0593cb68534446376fbbcf8b1d39584f1595c51fca1bb02ade4a75", + "regex": "." + }, + { + "hash": "3bef6847db433eba5e5172bdacf3dffd62ea4463183b2392981a927d8ffaf21c", + "regex": "(?i)^https?\\:\\/\\/trendyflixs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6c0e9aec3e74f08f0b73900bbefc5a9fb4c6a11b8f8e1c94ff61c97424960fb3", + "regex": "(?i)^https?\\:\\/\\/freefiredaimondclai\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "14b2bff5264857074fff15877b1a0c71e89b7d1029074e541ff943f2010cec5c", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9356d866bb420b4f7f0020c7d2e3e769ee7c5e1e1899d72ec0fa7396b03cbbec", + "regex": "(?i)^https?\\:\\/\\/eaqhgbeqadhbeqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c22cb703a445e666b14efe512306999abae018245cb7fd47df1367e22d626b43", + "regex": "(?i)^https?\\:\\/\\/monopolygo5\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "128be77e7366816929fdd0185cb7ce89848664331eb9cbcfd8bac56d564c74b0", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "112020398a831c1c8af796ef8ac63f5a4b2063169d81426a15b4c6130e997fac", + "regex": "(?i)^https?\\:\\/\\/eaqheaqheaqe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a26514c698756dfc1dc0d2cd5f71a1d949a5d2244b9b2bcfe70e38931c9670a9", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st\\-reward\\-link\\-igsocial0711\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "88a36f9df7ca6e934a6ba62c8a67afd613ca66dd54afbe12a44f564e0632527c", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmeubDbJCFaWF6eti7LQGbpfzvf4i6zV11MTBuGn45B1sb$" + }, + { + "hash": "e8b8a87b0e7c3a7ed499860dc700774a1802cc19afaa9e1811103fd44502331a", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st\\-reward\\-link\\-igsocial0711\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1450267d1da75b2f2e498e59a8d9c3cd494eece4506c2c4a19da06190826b2e8", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7c06263c13492d31adaaef88013828e53bc156664342b2f59686ee11a8d230db", + "regex": "(?i)^https?\\:\\/\\/amazon\\.myvmmwogj\\.com\\%E2\\%88\\%95nyrixroy\\%E2\\%88\\%95efoyoyfy\\%E2\\%88\\%95ckavwuftfo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bgaomr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d7a643b1d4ad11ac02155347012e74b9435de3c1553744dce438605d891fd3f", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "95b1091a7e564e9bcb149fccb84d7ce32ac22b13ce7de35f6a1eb928eee54a28", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9ca1bda529c5b6bb3ebc188914376a8679a9ed8b0773cc2b323d7f3c74bf95ea", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b135cf7715863ab486401924732d4e219bf47c5281f32c7d1ef582c1a85a4e6e", + "regex": "." + }, + { + "hash": "9151ae775e3293c9af26114af8bb3c78cb5e46fea76bbeca67077b415eebd79a", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3d07068a2755185e21378e04b4476fec036a6bf06f1099d9168e609794acf23f", + "regex": "." + }, + { + "hash": "1352f900553b22ed9bad64b98cbd544dd71af0fbac45782f8db3e88bbb2256bc", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvovo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e6cb448dd8bf778b53d3f87898080ee859ec8189230a040b4b9ec2152ec47e4f", + "regex": "(?i)^https?\\:\\/\\/geqdahgbqah\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3ec5b499fbb524a16155dc314af889c5df62de5935a1f3119b4ed7bd5b17f962", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-ton\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1fdbd5300a94e3f2debc0bfceea6f0971d031d6d07c8e26a98b66f17b0fe07d2", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bcf25aa5477766302d32e145704755a8210cf78e8850244f0695d9969711ee02", + "regex": "(?i)^https?\\:\\/\\/50krbxheregood\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "13c80ba1fa76953a8bf8b604724ef0cca7ee6a08a2abe214bffe66b6fafb1034", + "regex": "(?i)^https?\\:\\/\\/nuaingdeuimangcash999we\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "42545e2da58025acb6178e2695f31d05ef627f83b1fa2a73df6bb5f177600aa8", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f84c3a3e04d42e824e96c1a07b2a099bc9323189050511f6d0d9b2cd97d50ada", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "90c5956a1e34958850e986bfb4bae191f8a1fd42f2378764774af596da69d3fe", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "742165dd85f62ddf504b8a0291543918bb6d8e5860effbfe620195872334cb20", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6a72f1286f46f5112b7ab2a3bc96fd491b8d8e540d78b842bced0247f4e30bfd", + "regex": "." + }, + { + "hash": "ce62bcc764a5ddc5402df2ba068733000d27eaba6dd38238d28acd5e5d5e13e6", + "regex": "(?i)^https?\\:\\/\\/monopolygoo5\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dc8b1614738cb146d40b5ded1b6e94b74bb7ec010b031de9a7ea133d11f69b07", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "171ad5fa6fda0f47fee2b6123fe6caef81c085808e1b126b0a4bb00fdd51fa8f", + "regex": "(?i)^https?\\:\\/\\/qahqaehb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6026d1e678af67231408b2b0ff692488cccecaa0203d020f722b78dfe0b22c81", + "regex": "(?i)^https?\\:\\/\\/nok\\-launcher\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6862ab39b4de2d7760a086972cdaf0dcc6b143a812d1866302dae638240a7f6a", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0b885cfde20a3bb7bb900a47c29027da8fffeae32a8113a4a202fcb444a130a7", + "regex": "(?i)^https?\\:\\/\\/serverrobux431\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "78ab789af10c1f7f0c5c954aaa164a1f6226aaaed37b107d2fe51ccab451a2c6", + "regex": "(?i)^https?\\:\\/\\/ro\\-bx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8f3b49b4ea9133ebf484e78760f7604e61788f3c40972ef5c5b54f6b1cabe9c6", + "regex": "(?i)^https?\\:\\/\\/videohot18plushi\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e8ce5b801b7f720805392f973ac94226e3a059e32295ac038121df72f5b3d043", + "regex": "(?i)^https?\\:\\/\\/eqhgbedqhbgeqd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c0c586ebad3b994c72caedfb004897d44d7f40be8ef64a4890fd2ac9a4590eec", + "regex": "(?i)^https?\\:\\/\\/robuxcoinss\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6692d48ade0a1374ac04649998cc44de29e1cdf28010e7e32850f0df7fe404d2", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0a950b069d666bd105c2d014d564236ecc74cd8305c1ef9bb676dc03104ae0f8", + "regex": "(?i)^https?\\:\\/\\/monoopolygoo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d3aa5e48a5cb46f7a3ea52ac116f9762160d20b4991d910dccfde2463d1b9951", + "regex": "(?i)^https?\\:\\/\\/ehgbeqadhb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fda13c6f3f4de2eff4910db99e2ec6be12eef2ab5a1afe14f3ab4ca983db7a7d", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9ee3a89d874f299815cb98b087fb607b0a046367bb6a016dea0b3c3eea8007e8", + "regex": "(?i)^https?\\:\\/\\/dumkakarobi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8b6614024b83d543e350f50896db5c24f51cbdef242546130301823eb92cdc22", + "regex": "(?i)^https?\\:\\/\\/qegheqaghgqea\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "44c74a472663422d62bdede125985f7cb7ffc78625850168227b8c22bdc8175b", + "regex": "(?i)^https?\\:\\/\\/eqhgbedqhbgeqd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a02478fc5750bbefcdc6ba1981f3a24cbada6df55c8bbc67bb893dba20de726d", + "regex": "(?i)^https?\\:\\/\\/eqhqedhqhb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "96a6295ffb695aefbcc7b053d4e5c620dab3cc9df4d10d7e96bddcd27b0dd869", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2e2dc4441e2db484076e67b8baaa7a2cd2628de74ed685dbc67efbcf76bf6367", + "regex": "(?i)^https?\\:\\/\\/keyblog33\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "95f091ca1f1de31cfce08309ba481b26e6fd5a4606d9ae87a0f00eae1f115a6c", + "regex": "(?i)^https?\\:\\/\\/ro\\-bx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6013f0551ddaf8594a5451b1d0edfd855c1ceb1358e8b688d0507b4b2457534e", + "regex": "(?i)^https?\\:\\/\\/easyweb\\-2408b\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "6406247d4f0de939fc0414be5d1bf30d17f6c0f2b11d0dc2a26210a2e78eccc9", + "regex": "(?i)^https?\\:\\/\\/robuxcoinss\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9540578027edb425e9ea215bb4e2a0181614319bd55af3800af660c4a85813d1", + "regex": "(?i)^https?\\:\\/\\/ehgbeqadhb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8c1b8cab4533ec811b0d38df742ab75c296086cc9fe5124e90f3bbfd293cebf8", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "665a86ba62701ded2821ac161ca7886ab56587e6db22d13429bb300ade7f499f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9083[\\/\\\\]+entry[\\/\\\\]+register52368(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ae6eb78e86acf4e45b423ebc26170ea92d28e90264955551b5092cfb2ff197a3", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "408bbb79a4ce4c6a3b8618ea6cd5cf8f5244c6fad7c20744cdc26973719df06b", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8143465e457aff239fadf68fb9de51a1c468cfa0addfef1bd7f6d5ac507a7eb7", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvovo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "68a3919a8a49359ea574d7ec44429770eb31e058966b47c170a4a5d6ba6cdfb0", + "regex": "(?i)^https?\\:\\/\\/videohot18plushi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fa69cadc5d1c7f4bb535e49c61759318835b9d8348f4e261dee76dd1afecd3bf", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b67fc8a5713110af7ea537d62ed9bb9b9190008358618de34311fcef323c070d", + "regex": "(?i)^https?\\:\\/\\/csc50krbxhgere\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b4df6c3b1d8aad0001149c1c606c21d8e0440ebe31197fbfab33788cf6d734fe", + "regex": "(?i)^https?\\:\\/\\/fullgames21\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6f54c4e2d6ea2db6beed0e51d8aab25d95a298cbdbc0e3e436804ac21b1f47d8", + "regex": "(?i)^https?\\:\\/\\/hbgeqadhb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d71a188ef6c86f5d79fbd5a1bfa965a8b9f4ff95c4fe1c3b0c30363b80415fc2", + "regex": "." + }, + { + "hash": "f79ae7cdbf5ec4ed830845f0a2458f3a55db60c521f8b795f7a1188cf1e7561c", + "regex": "(?i)^https?\\:\\/\\/ehgbeqadhb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5b63a754c163acd73d9452f998a2f48252be529ac4fe5aafc8def1e1ccf95d53", + "regex": "(?i)^https?\\:\\/\\/geqadgbeqdahgb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eac0f5ceba35a40c44ff3c4badf8bc0ac1efb376b2bf620b338dc1df31a04deb", + "regex": "(?i)^https?\\:\\/\\/eadgqdahbqahgb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7789e53ad3246757888fd1d052fde352ef4ab91dc83ab5cff97774f14343178a", + "regex": "(?i)^https?\\:\\/\\/qeaghbqedaghbqe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e5f1e24e8a91fece5081fa09e4b74d181f237a63ddad38fca9571bc42b173b10", + "regex": "(?i)^https?\\:\\/\\/frtnii\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "483c0942995d253c186d9dc3ab2f10fbda5fad58e457b1fcc394802fb29e2bcb", + "regex": "." + }, + { + "hash": "6239dbae778dfd8fdb7f7974a7adfa85d6103e2202cd60d2da876f7ad6062e8b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "0788799af336b71c570de6385d75c84986b82d5dee780404b1cfaef75002001b", + "regex": "(?i)^https?\\:\\/\\/hbgeqadhb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "defdee6fb7a04df34f8c10e23d879729e1c5a2991c47cdfcfdf2da22455fb1db", + "regex": "(?i)^https?\\:\\/\\/eqaghbeqahgbq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "2b04040b8892334b21fa47fd3ca8708c290772cd68bf2fee4d5b683cafe6178e", + "regex": "(?i)^https?\\:\\/\\/weetcam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0d1530015acf6aea123c8ae9470d08b787da61a164605098ca36589be66e1a86", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1e12e3cccd52fa319c7ff0cca3c1e693394161a68b3b430cfc47378530ae999f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-rennes\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a4ac5ed746c9d1e5953313cd25d856a74fd553cc0584a29c7090fa293cb42752", + "regex": "(?i)^https?\\:\\/\\/veg50krbxhere\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1f0a8e90aa3b6cef604ead784fa04f0582220bd3c268ea9154f6eda67a0ec449", + "regex": "." + }, + { + "hash": "c8acbb695b6843c432c89bc7bf2727b0291315c47345d3a4e07006be9c1d1683", + "regex": "(?i)^https?\\:\\/\\/eaqhgbeqadhbeqa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "55309efb82be784758fe9c9074baf9e87bdf4d3562a4a7194c91babcf00b3c51", + "regex": "(?i)^https?\\:\\/\\/csnmetropolgirisi\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e6ad9bd8618b40b0c674c00744693f0895dfc24fd91381f6332b33361d1a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0HgUXo(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dd77003627d6c3a75766f4937f99945b2a154bd6a0c77d924b1c52d7caf41344", + "regex": "(?i)^https?\\:\\/\\/1webcam\\-live\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c5a42ea1fa23406bcbeaeeb2774511bebdce8ca68bf86cd08b283d9e3aa99a33", + "regex": "." + }, + { + "hash": "bdcc7acb60ff65d147d88bb0bacf17d52ea908b5780ccb1de5b69fcefe5e2579", + "regex": "(?i)^https?\\:\\/\\/eadgqdahbqahgb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "04c88d2b937ad2ccce46cbdec6b274d550e8835bbec24591adb9ce5feb4b9136", + "regex": "(?i)^https?\\:\\/\\/qaedhbdqahb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "fbe9a3ddf5a1beecb549fbab9e9f368be406aeb7d5286e32ec2b5744efa1e2cb", + "regex": "(?i)^https?\\:\\/\\/robux\\-suiu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "be524b817ba305464afc9dca0e143555a5ac13e184e4fb370f23f1894892113b", + "regex": "(?i)^https?\\:\\/\\/video\\-hotgirl\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "b20d7e04e604774b26eaa3c14a7c77078fb85babb7f21c9a699a94d6b9b9c101", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c3cdf56ab50b89d8f1662b0036c5e0af69722f75481903ed947e44ce2d5c9944", + "regex": "(?i)^https?\\:\\/\\/emngocanh2k1\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "4c4318458564ae9a2e7c272cef7dc6cdcff981432be7fbdbfc8a94c149f07377", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a4530\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "b75390a977a9ada3312b160f3492eafc36f2021e6451df379966658613195a81", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3dc614ec8fe6d3568dad24904f766364eaea9e050482e7571ae77ef914532b86", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "dbbdf220cffd06a6dbef32cb1ebd51951e931639c682e674df3e2e560e74d7fb", + "regex": "." + }, + { + "hash": "9768a33492f463d488693cf5d33585c0196c2d3eb5997f94b9131849f496d3a0", + "regex": "(?i)^https?\\:\\/\\/votingorgs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b95aec37386612854dc4787079dca60b415d11fe8c9d5e612a887cef5573736b", + "regex": "(?i)^https?\\:\\/\\/dealcs2\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "efbb22d1f65d7dde75b0a4d6d200698f0c9c48613969bd5d71630da9150ca476", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register52368(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5ffea206a9f12af2ffa6a2ecfa0847a8086999b1b98264f7a6c30fa5ae10702", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6bb2ca0350fbb9c15fa6e43904fbe21cd137d012cff633546e73c9d900b61dc8", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6f504893b6118d943c54de7b8d10aee68eb9678590d0c3db6fb138da08f19b91", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "b294662142bc9bec73348d5416b51d0706fbddfda29f123916e8cfdc15be4f42", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6282d5e2ab5b1900c5ed1491394a564cd195987f46bef8380998320010bf8120", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bbe40625ab9619f815749f7d751380aafe7f35c055651c589cd719f7bcdceaa1", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "51eed26186b1ac22515635a5411d56eaae0adcd61529f9c6ef3152b472829802", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "d04527b43c5758720300239c6752c8cd16662f75335f0236da26d9ffbae15a95", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "31111fe4a3438225d6132a8aadfa3fd0f390b2c4a845a05bd6e553a7ed91163d", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "171c17d052dd45a9ba89fed32155929e600ccae32fc823980dd530f9a672a668", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "ad53933c674dcc3d904fd59af5aaa111651b489867d20fdbe835faeb45745824", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5577e72c40ecd3f7e4656579b17ec202aed656946454fe71dfaae13c71b131b1", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "93b286f8dc6c5b7546b243dec32ae7696aab9246a1a2ca763354876102571250", + "regex": "(?i)^https?\\:\\/\\/rbx10khere\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4596dcfbc68bb4797ddd4391e3c315c4540b194c4c56ab4a1583506365fe98a7", + "regex": "(?i)^https?\\:\\/\\/rbx10khere\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b0e495c6f2f312118469db8a981fb6bce460ba40c4c158224538e9486a940926", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e0df60f3ef2e502e007964e511072249148224176f3370bbbd7ff1716cb1a0dd", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "578c6452413613b4be659c75c4b006da69ea63a83180239a93183961468138d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "a225a938d8e22a9359f1c4a61c9ac508a6097f9e5f49d0df842599baf53ed571", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "032149e55d64117073d324a1f8e2a1d429e581b0dd4fcd11bfd11f149c258c2a", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7b8955b20e5c507fbfaf93fcb1b9939b0c75d71e8b6403fafa19358ee9e700d7", + "regex": "(?i)^https?\\:\\/\\/habanlaam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "cd13a79a097f21aab3b1e3e6dca7b9e10039adc2466a80e4e3c43bc40a9b5e14", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "171a6781136a145c810292a720a23dc6dbbe14c96e6ef77d7303a51133301b06", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b3d5fb8c354e19413fb65e23b2795280fb364a3f509dfc0588f0b12e2f377734", + "regex": "." + }, + { + "hash": "e7e981dfa4df6c6bf21c0f38e462639c929df4ce49c133625bd0233e726e8092", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d7c51693fec02a866274b720ce5471f9a69896cc4eee6c8836e61206790a312f", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b06ddbd1c2e40081ed7dfaf464e87eaa93e85eba3d4ce2c604bc2ef7bed19329", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "ccbc08652202b1485f665e34156acba40efc9756427956a09a2a5a73e2eea468", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "00bd159aa7401b655de34d2fc4d77c19d4560e6b1ad7ae3865e940c2ff41b68d", + "regex": "(?i)^https?\\:\\/\\/nbndfghfghfghfgh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ad1b9ea60fe02869a34716f38a2d996d4cf6ab491e01def1d4d3d88664037e37", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d8fe5368ba66f724b067d169553795976d4148dbc859b143aadf68148875b0b8", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "22ed517928cbb435c61dbc323987fa818f9a4f4563b8254fc04f2e068de2da70", + "regex": "(?i)^https?\\:\\/\\/cshfree1\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6944cde4478fdf7bded106121c5ebe563c328b2c6a133fec0a321ab8da289edc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSxODo0xOw_iZtczvQOYbhxKk9RQ5tmEZvhVX8idEJkQPJ2Qyfng9TMVudFgtaixJpGEI8A\\?_\\=00cdb190\\-a13e\\-11ef\\-a8c8\\-247531802924\\&d\\=BQ5qQHPeZZeulzkhIyM6MHfryfz_ENGcGVERNefbNq8zBdRF6HRWmyRkn551X12Iqoo35JFaBeCqY2RgMHBCi6L8m1F96PoBcRfpiIKUUfbE_snJF5VFY1KSHfSdRNhRACvXUeCehO\\-F_E8AebS_7ydsQq28H2BE27zuz11fC9SDUYxTz727aE6qRm805llAp7gJnm0_0XAfcQzaLyMPs2zDN39tii\\-d3\\-KT9JhjHuK2Zk_xsElDSzswafAnVu_AZ0tp8pyyQ67eSuFkQnNG8YFd7qP1J6LH_QxqeaIOlzialcI3tW2DS5LugSNC\\-QlUAo72RbbKG6PcMGRPdSUPvxSkClM4p\\-76LiRqmbS2yjnoiuAEdv21_TsDE0vxcn18Tf2ijnSsEBsVGZ4\\-JQKXsCLW5sDh44xIhLS30EIbUTzK9Bn2yX2Ni\\-iTg\\-CwELR_FvFXjljpZrqv2cO7tPi2msVgzb3ZGXgjSR2vWttQJijuwssGqo\\-ItPJodvz_U3eTuHS6dRCxuP3UzKV3j9WSt4O6JCeRRxIO4xV3htc4icmxixUNum8AAGmftOo8oJ2iyOEu3L4Cd6HEFqgTeeKqEH0d8QHBHDCwge7GG4TPFf8JYboiINUtgm92jw2ggw14btejigOqzuKdePMuIGSmK4NtK8hl6Djt7rr3Xxi9Wtw0OlHkDgB25KUKkMdWvUrwGoD99Evq59bC98CpRcb2bNu91wLaJ_ITHXckq3FsmlxfWqD06r0qpldKriwzFYyzrjb0R8TV21mwq5mlBU\\-2BsDgaA1SI67jmEoS\\-j5P4YEI1KjdocJsAci\\-0Dto3aqHWYBcnGpCpa2k8WUxpi2_MjvOEFmV6v6Qk8uX5obb8q4jLtlHeyNaiuyLTeZWfG3EsUZPapkN3Cj66Fs2tPiHQ2ZfZ6Je95lXwn53mGhnJLUYbsaBPiH9QywsOAJwatm2\\-Jv4pTUGArxZ6D8PBYk\\-fXFAEmdC1uWw3dc0aWTDONHuHhQiZBQC\\-gfHCEz\\-IN8q0TRnkutZrKbFmua8EfFnDS4xCINvPaJGUytjj9TnFftNGdgUP2GbmEeW6PKi6kJo0ZYVT_El7nOuyaASSyAeK2uWxw7139Wr1yGIhgZ7l_fi45FnXN\\-8XjIYGGancTa3mADtzA9t0l1fhvYURDtMHyvepUz5X23Gxd9y0uxx\\-\\-fBwRZORbObBNj9SbHGi1tuo1A2\\-a2XF4UsGah3U\\-e\\-4HK16RUJTPrKqgdxA6RhXUIFf5Uz4Oe\\-GrECCx8yUtvzSJvdYLaa2lkmz\\-\\-qT_Fc0poZQ1WBKwrp79mbzPbjVj7AWfLgPat0F_t7sw7Yzo7nnw1_ow9BenaA4sEWGrve8cQEbbPL4fwTdLtvqfk6LcKXwJvBawI32aS2drPFiZlx6ps\\-rQHQPNPFlzpCAis\\-pftsQwX0TvWY4lNyO\\-pWyZHdA2YDH5AcQtgzNB8O_B99EDHznCEgsTnPiXWDR\\-CG1ibz\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "c8ca1cc30b86212763ed0d2ee5ab769c90d8ec69dd0845e5af3ff0e5c70467c0", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "5b86c53f24641f2dd1818a758cf04fa2cb69d66193f214893ef1c010f8152163", + "regex": "(?i)^https?\\:\\/\\/finjalmianka\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "d7b74dd0e60ca3a547ace63c69216805cc85ce142d9c217e6be3f213cade6aa4", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-here\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "360ae7457eafc2ae46a86650956ec36fdd16c3c6f33f551c9d2151f0c0c3292f", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9356afbd929600b32b649ae190669eb32b592540bfcd578a6f452b8b610eb960", + "regex": "(?i)^https?\\:\\/\\/habanlaam\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "dd87e4967197b80936e7022ad71534bb759db410a0511f9805d588b3326dbcf0", + "regex": "(?i)^https?\\:\\/\\/robux\\-suiu\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "77400fb2fd6b14568a2d5ee693bd7b58126cef444bc2e8b7136928ff51c61f4b", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "866f25f83a2d2f14231e6c3cfbca3b52ed2bc9844a212b04238a7aba9be32114", + "regex": "(?i)^https?\\:\\/\\/webcan\\-gratuit\\-hot\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "138969cd0eb9be38fdcf76093f7a86ae81835d6bfd6d6d80d34e29add5689818", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "151392a26a4a36e43d02f3011391b0ea37f95fee4dcf609e5b94abc86869c5d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html\\?shareName\\=5845\\.b58454977\\.com$" + }, + { + "hash": "ab6aa156a5c4c314e53f77242a74892ea9119a3db9aaa6bdbb4cca371974c71c", + "regex": "(?i)^https?\\:\\/\\/votingorgs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "4de0ca133312b0ce80204c8dddb4897a7752e0f809fe959d7ae396d9e1058044", + "regex": "(?i)^https?\\:\\/\\/faraneynews\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "466263c321000095d69dce5022c98aa92d9d919e1073fe094cf285737bc80fc1", + "regex": "." + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "d832d6aa9db3ca6e305b99401abf2ab911481ee4308c41565218baf9fc2baade", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "34ffcb46c46458e3c2cda91dcae58a28099b76dccfc68e5fa580c299bf479460", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "49f0c81e2d8ee048ca96319d2e27ac1fc22ec1794b8cd73c528dc6bdbbd69dce", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "ffd1a8560af7b295235a774678e0b19ae6019a6fa489d64cebcedd63fa0dd843", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htmH(?:\\?|$)" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "28323fd06981299d9159d3cdebb27b65d595e9cf536865b89d43fcf99581ac9c", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "36399c9cdbc44d750ade17f2f2dd106b7803b9508e21f3a93efbd2324fa3404c", + "regex": "(?i)^https?\\:\\/\\/ww\\.165\\-22\\-3\\-139\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5bf8c70573b9b426af1459a5d2230c10df310261e3a5f133d13454e05725cff3", + "regex": "(?i)^https?\\:\\/\\/faraneynews\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "6baea8a1498af5cb67dd131094e9114d087bc820956962a97bed862d3c2f804d", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "2d45d62dc1d93f21a8389cb740f113e2bfccf92f5341d15c72bd00d02bf9fca2", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "050361faa1ad3a3ee93334a549ff3f6e074226c4058a5f29ed7b97ad174e44ce", + "regex": "(?i)^https?\\:\\/\\/video\\-hotgirl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "f1ce32f76bb62706236016677e0164fd6e91ba5fe648a82030d431c5da43943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "a1e60afcc9316f908c270e6f2f507d272ad49e08378b088f9a51d0cfa70443d2", + "regex": "(?i)^https?\\:\\/\\/recup\\-monpaylib5\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ea085827fa5376f558f18512d1ea6b1e91bc6766e335662319fab5c08d52a61b", + "regex": "." + }, + { + "hash": "a7e345955d966a1b875c99fa01d12daf8d00e6ce09c4e24713f692697bf3d47a", + "regex": "." + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "87bb0b0e55e79d4f9d733507da2079862949f9182c1c5e706a743830350a3983", + "regex": "." + }, + { + "hash": "d6f17557c1b68b6195bcd425d2c4acb069f5a31c86ade57bacf685b737c63921", + "regex": "(?i)^https?\\:\\/\\/webcan\\-gratuit\\-hot\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f7685123d3ca38b689ebe493865285f617b1f59dcf354bf4f0f3fed8499e7236", + "regex": "(?i)^https?\\:\\/\\/emngocanh2k1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1b456b7ea9a5748f5cd1987a34a223d567f25836163c801bc3e2dd188bbf7e1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s[\\/\\\\]+cdn[\\/\\\\]*\\?https\\:[\\/\\\\]+www\\.bnpparibasfortis\\.be[\\/\\\\]+fr[\\/\\\\]+public[\\/\\\\]+web\\-fb\\-disclaimer\\-si\\?v\\=web\\-fb\\-disclaimer\\&link\\=https\\:[\\/\\\\]+jpwinslotterpercaya\\.my\\.id[\\/\\\\]+AGENINDO\\-RTP\\-SLOT\\.html$" + }, + { + "hash": "8aca2477bdd5ee1806448454129e6d825d2281ebbe74e066bbe241d9d9761275", + "regex": "(?i)^https?\\:\\/\\/video\\-hotgirl\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "c68a4d2b980cdb7e234cd810fe067e7b456e9b5232b193f49065f1350b20bf28", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "617decc5f4dc0845efc30c1edaed23fee7fd7661a47cf151216c149f7f62ec4d", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "558dfadae60b792c69a57bded582a6267c844319174d2164a4338b42c04434e0", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "cb407ccdf9d023dca32cfb73ffaecc3229084212db44c98d8b4e091cd0c68cb6", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-here\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "315762ea27b829dbf394cc1f69867e0b85961f88c04b3f0317355ec818494bb9", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "99f71a024f9b64939f7167b2f1fed2181951de5be6db1aa79ae63a0eb51c788a", + "regex": "(?i)^https?\\:\\/\\/webcan\\-gratuit\\-hot\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "edb2a8d2378423e9a9e9422051c8f76a4ba6710386bbd7b10f25b89f414626ad", + "regex": "(?i)^https?\\:\\/\\/websalope\\-cam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "80bbed192c463c1db9f3879e66d047ee5f5efe27b27a97b4826a73d5e4c15b66", + "regex": "(?i)^https?\\:\\/\\/hgeqhgbeqahb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "76b271f4e1624446009d0f1776cd2cf553a39118ed566dc0f3e879743ab03054", + "regex": "(?i)^https?\\:\\/\\/websalope\\-cam\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c44d58f83985aaf40afad5fbab39ca974e1c4ae8884695f01be0c24396d1199c", + "regex": "." + }, + { + "hash": "b78201a8ee47b39c0c7861ba52075a9b2c17f71d4fbef407eb2d72b65150c0df", + "regex": "." + }, + { + "hash": "0fde4656378c094880da728f3d94dc51df145d7b49e0c08272b6a57ef7eb85f7", + "regex": "(?i)^https?\\:\\/\\/nbndfghfghfghfgh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d1eb6c9836138c8c7919d6c78781ffcf23f1ce75246fc7141c3e36a42ed96680", + "regex": "(?i)^https?\\:\\/\\/emngocanh2k1\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a18c25dacb169b88cb9c8cb7f4a0d0677675fab5f37998d073e0348c5ac0517b", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "9813dfff8b855a4cfad2f66bebe06da8b5069f87eab6b6bc9abf4fb0b0ec1e1a", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-here\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c8aca537f2400376579228d7e0d2b77689d9897c91a1f1794c32f2b27483b8b1", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "b5d56278fabd8a052cf4792375459e5b0956f8f8cdfa83744fe3c95b0fa59d5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "e56c0e4065deafcc7636daa74adaa2785ab04726ca0b061a399af426bb7db04c", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d3815785f92804837b7197dd5fb061ef8e65de16c0d2cb18a9a6472fa6c98568", + "regex": "(?i)^https?\\:\\/\\/votingorgs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "0f1f3a9197912b4f675cbbd24f6c14736bf6e3fa429a25e554ae9c587d7ad77d", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f11c21ab7bac14f97f86dc80f1c0cb938adf1d8f5bda934866db7f85bc99d590", + "regex": "." + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "65a89f9f943a49c1b45aac53e65358bfa613acf2c423038e89c49a1be73ee9ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:\\?|$)" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "028071ebf65f239885bb8ad39fecc601b0f2889fe8b91a5a5974464796b90914", + "regex": "." + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "4c7ed1eaaa532c3d5d28137fe30175cd4c0ffc6c3f4d77eb4e9226a67d4b264f", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "8459b151ac5a58c8da717d305a533bd06c855847cb55b2ae5d998607314dd0a1", + "regex": "(?i)^https?\\:\\/\\/blss24att\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "1d3ab57a14e39cc9748ddfd35437c191c1a9ef818a9b9008585627cbac6a54df", + "regex": "(?i)^https?\\:\\/\\/jogodeguerracontraovermelhoeazulnorob\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7de9ad002c94cdb5b3376684b624dcbdf85f197a60e8d828ce4ae061d2e5aa00", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "96cf447e80c88f2e929991b7085726238d0f1400a95f1aa28234b6b527afb74e", + "regex": "." + }, + { + "hash": "2263f5a90e784d3223240f45a27235fe3346083223a1b253df3378940c6dbcd6", + "regex": "." + }, + { + "hash": "b7dfb846fa1cd6e5ea16a610e4acc34532ac35d407692736507af0e25c02e6e5", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-girlfb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "36c3b2fc3f9ecf26309e70ea12eae1deded3bd97cf196b2f40c5b181f8bc39a0", + "regex": "(?i)^https?\\:\\/\\/bnetfsdgdfgdf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "e48c8cf40d20015b296ec3493af49c0152589888c3402ae72dc4821572b901f5", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "612c45452531980e3a331c0bb596bece349fbe22a54165d2be255ee99769b75c", + "regex": "(?i)^https?\\:\\/\\/hk6691222\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "fe05c955db02284ac0ce76b807b2569de33ded7060e9f62b019d2976bcf4e6e1", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "ea70b95162489b7e745d4a6def299f00de178a02255f1e178fa0cce0a6c6b5e4", + "regex": "(?i)^https?\\:\\/\\/hazlamajwabna\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "6b21471e6ba569385fdff19b170ab9281cdb00990ad970ad38c8b5e8e6610837", + "regex": "(?i)^https?\\:\\/\\/www\\.bet83062\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "679cf6f90f0ad9f7c02134972b0b2e8faa0f143acd388af35a293e3d38bef51d", + "regex": "(?i)^https?\\:\\/\\/netcdvgfdgfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "adf6bee14c2e8961f648ea71adaeb791aeeb06b2cf0dce2ee67dc3c7b545700d", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "24511d0278684e2d868053ded5878f77199c41795c625c1bac9487ca9c733f8d", + "regex": "." + }, + { + "hash": "3cc5b3811e598779499d5ce6fdea44a075ae0d740222f7ece347996372a3d5e2", + "regex": "(?i)^https?\\:\\/\\/page\\-100503\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0b885024b79f835d13d3f5379732be99745e164b133e085b8a04793a80ff78c3", + "regex": "(?i)^https?\\:\\/\\/robux\\-suiu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "57443563d3650b8a6d54a2001418b9a8668148d1ca87142329bfb23bc73669f9", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "1694be2bd10e246b8a82c3731b2b1a6c681bb25ab158c69acd872f9c4bb454b2", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b044ce4ba57c074ae20d04029a25ffad113dddfd88722c3a8e7b810f520d1dcf", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "1eecf63167a0bdf75d9b6733ddd2bb90710e6f5dc8a903f02670ea7f8d118252", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "ff17fb6e0d758f2a0580242ed72a0e90dbf908b025ed7cb53007b88ec36c3f0f", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "ef31f567d86ff38f81c0b6384d32386f3dd96e90bdff49ff05ac041c2fa3ea70", + "regex": "(?i)^https?\\:\\/\\/1\\-websalope\\-com\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "270d2f322074f368d65156938bb53fdf0e81db2d0f74f7a79a4ec8bb36493e65", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "5edee22b73c9efbbee7b306844cfeef5a761782abd772c0b3c700931ba51422b", + "regex": "." + }, + { + "hash": "7f0dd650406ae7dabc13c4bfcc6bbc787f5970ffca66b544b3bdcce09c636184", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "da5a6aeff4745271a3fa076a6d8df9ebbf8be901d5c7f2d1d17e7942d5fbe319", + "regex": "(?i)^https?\\:\\/\\/hgeqhgbeqahb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "45d62f545de348ee79ca28dbc52f0649f4e1c03d7b1dd4ba0b9ca0198ab97075", + "regex": "(?i)^https?\\:\\/\\/lovegiilrdbuyv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "0c9c37d55160181fbefda33a557f6baefc5bd411c88f87395e439edd38a38155", + "regex": "(?i)^https?\\:\\/\\/uspsfenc\\.top(?:\\:(?:80|443))?[\\/\\\\]+I(?:\\?|$)" + }, + { + "hash": "687db1660ec0c6b52c921d71074161210b10aa010c8d36d4d07b578d23079b4f", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-here\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bd018ac2213f2600692b067da9171aacad10042889d93934fd472c13df6d2e7e", + "regex": "." + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "ac707f1e402b230406e12002158caf0d05fdb0d7677a466a951db3ea8f388b79", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "6001bb3ddeb427cb5f9f7c28269fbb4d0d53a2d0f277bf28d58b4107da1b5e90", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "364d7e84c8f29a2387e6fc6819dfce52698003358ae08f1cd0858a446802f782", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8dc3ce67f6f244b481fb3e43d16c62a35f02e220900d1ad9ab9c3d8302724714", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7aea60dad6b45d1230aa149d01d4523883f4672edf625236acb3cde73c485579", + "regex": "(?i)^https?\\:\\/\\/lovegiilrdbuyv\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "940181529f453ea6adb9ea53162d21401f1612fbc66fc6ddf61997831e03abb3", + "regex": "." + }, + { + "hash": "d825e6f99dd4a584facb99ed91e877be2e4eaee75fc70e03473a4ef1fe172b7d", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "a083f1bae5b742b2f7d2a521dfd924844c103746cf19faded33299bd0fcc44fe", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "e7e9e023b441d079cc0fa4815faac6f29ad66d7e365629127a9d3cc833deee63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iyFPDoQwOjT_WNdu_xr_LCZKl8tV\\-sWEeZ1VOsCeEpAVMvYpMHMWnUO8vtmcwEYj9FR3\\?_\\=0018be1f\\-a13d\\-11ef\\-af2a\\-cf2ab75cd688\\&d\\=BQ5qQHPeT5eOlDmxIos6LocOtPajSi6oGdxiEC8SH\\-KRhzgm3LiQdrAxy21KfZ21MD2zcNYvGoiWkSXMXxei0TXJfhfjnU4q5zSMIbacChdQ8SoWJ8qHc_KQTUvnuv2UvJ2ShgDYPBU5BB3wVhBaUMglUtsUcAiaz_7\\-d1UEfTKISroVu7d1_tClsqTLaNoqAI4BW2pDe9L5gpSA_4pIg5_Y3kJaJpDx9IS39aZ_YtAeiB0rGT13deYSZx8pdpd1LOHVd4UHUVadOIlG_PkLL5Q_UzwagL3kW5qj1YmE0Qd1ikDfsbqERa\\-4RkDbN7dWv3q8SEw1IP\\-Jqz\\-ZlkHGnNLfdi\\-I_Lv735KCgbSdrR4NoKdOfPJUjWOHjPtJgiQqSpLqfGOInM5MKpyyRTcsaRmbKoW4B_G3MkR1t3sNvlDoILgl5VlCViLpuOqAwRbCRqT4UOBWrClknjy5x3c4cZCbYlHn4yWycpk2k6Nu1yG\\-QJ9xfSNaOWxAwaZRoLVrB2aKKPtwHywCSYcu6NyWKPbhW3Ecd4j53QLpKQwnDuQH9QtIXiuUr5hATjfgNc5a0MBVJi1zW0lktOCc21sTK5LajHDiB53XCKUXkhsz_WlqtkGbOp9iTJRiqAAoPH3Bnn6gQGR2wdp6mrUrSlO8GfqXIBd9RYmpYAyIVIR_zH4OM0nrF9WWBpB0VXo8c8DcQHZhunqtBqkP233nPCek5auFT5iESCV4mcobNGTqOIC8CJogdWuO1yLLtQoCHuIq4jk9ZAiKG_kEy_NeyNzQmfJTCPxIyGn01TdmAP_6iB6Ute2N3Zp5wv_9k4JVLjyMV3HlNC9LDlg4hACs16mubEBZOyh3U8kvJ4L4EJrZfJ0ewUzxxgCB29WNEiDXgMCrWDYs8sJSoiJ\\-RctlnhwQ9peluDdiPpzsuneYcanS0BXDujvsdx2i05deoJ_WTGGaosH_7_gXYGOnLKPJYKKZIM74qnk_1Wj7ROEjaWyDJJggTFlt2wcBFtK13D3KSjm0X6_CuZOkU9sxWDsUksSOKv\\-wq_EGTmU8U\\-PY2z5ZS7wIOVbszcN1bHkQWhqATwgv8vDxRHg7s171swyLm\\-dMH26R0no2rkXXtPmzGU3OY\\-AMKOmY4_UoEf059kDbjRbrpmfyL\\-8rCW6xwWiOESIBOt8LHigcq1BKnG3RcIUfX0UXLW2db4D6kyWYoE1PAC7d3d3vyWysveXJSHdT\\-chXTWPeA2OLy9NR85tLHnv2tRXB5o3QTg1mNh925imx0IceeNEienMmlzkJ41GU_Euxg8NGz5\\-ArnW_U7oInk3jsyDKESLWmtMsUh3ODj0GFYgVFBkpxdiJab4na0cUO7Zpd1fnApzXhiA5bfQwvvml6mLmaUbyx9ywX6VKLeUtAxRg8YDRTHXqKO4ohFIDfoaRB215_LfeZqfiEnLTOaYDZ3VAjfa2ths\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "539c73d11409f4b7822a3ad07d233d9ea64cb6d021c0f852a325fb790d96f18e", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "1a9f4f014e4b72c67541105725088c8b7b0001d1203a9271948d3d9a78bc2aaf", + "regex": "." + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "669c84764ec382f669680f30af5971e0b5da3837a225126e084d33326503cafb", + "regex": "(?i)^https?\\:\\/\\/lovegiilrdbuyv\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "598a68770847b480820a7d333965069753fc3bf041138b9f4639c5d3d8bc896d", + "regex": "." + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "6319e3637afcbae297040cc9ff8a5a8ce64573f60a28add68c2749a5b22751e6", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "52a5babfe7f2c1c6ab0b1d40f3b275274f58cbba914ce173a20b894f70083367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "29926a5c3fb6d99214627d6d34ec689c188634f8e248a87acbd156ceb89e105a", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "ffde83c4eb3087fadcca56d4580d67be073628dec191a830233e1a7d2c535ba3", + "regex": "." + }, + { + "hash": "a2394be9e0555940a2da4a6098431ad81e7bb28864ba1ea0ba3e4bff670d6e23", + "regex": "(?i)^https?\\:\\/\\/hgeqhgbeqahb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "acf4047e3162675fdfdd435322a5ad96220b650a2f35eeede469966efd1e28bf", + "regex": "." + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "5dab5850af20fdba3d5adf5442b38cfb7b60f40ed196defbe915879906c09f44", + "regex": "." + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "9705205767249ddd043443be1bcdb398a863bf04d27c86106fe7a6f193d37bcb", + "regex": "(?i)^https?\\:\\/\\/paypaypaynejpuwb992\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "0da77a39eb8856ea370755ba158d38087f17c53895947fc3b6edb79d327d1eb0", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "31c377559b646423f411e000f72833574d43b13098a6d33e96731bb1103f8ab9", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "d20e37c96f2adb847aaf0baab786a441e1285847e417edae05e610685dab68bb", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "c7184e83664cd45f79ca54551c8c5d796d436bcceef1b9d1dc40c02ea767d17e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "44a635db85fa035f66ff9d7f4a1743aa0b6016ffbcab811f20a12b548bb172f9", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htmH(?:\\?|$)" + }, + { + "hash": "61e0f279f778da38af8f10b32640ce3bae0dd84e2e05c93e68117757d31b085a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "8ff4e1292fb25224a22f0c9c45860068d6ad808b485eb962c319a187cbaa4b90", + "regex": "." + }, + { + "hash": "8d2fc2bd98e7bd610bdb76a5ed68f2a0ccaa7d0ae0f5932f876f69f4028b85e2", + "regex": "(?i)^https?\\:\\/\\/lovegiilrdbuyv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5d21f0d0f8b68fa51acbf9bbfe275d6d4246fb8200b2b708dc638b2b8b016e01", + "regex": "." + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "bff19266296e1496415278f3bc25053363c507ffc37f280c23e6c96b53519eb1", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "41c65936692137a2e314f88959cafbea4d37ceee01b2bc78a6539a1e8e1e3989", + "regex": "(?i)^https?\\:\\/\\/bnetfsdgdfgdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b2f6bd02e644180e6c118f5bb1bcbaa3c46a78c9718fdbbe7f8120553cbdbe4b", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "ae6e0e282b6f816ffa9f948caf79b8ec3fa2d18def9abf55c25f6f345102be37", + "regex": "(?i)^https?\\:\\/\\/bnetfsdgdfgdf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "30b80cf74a5b693bb5c69953c06390c90b53cbdb587273331f1fd5422026f46a", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "191ab615e979a0f47faefb6d8a2c077d49dd4588f3b8688d8cedb26938b39b9d", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "65a89f9f943a49c1b45aac53e65358bfa613acf2c423038e89c49a1be73ee9ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "7e8ad02263acbc83f85710495d1270fcdf220aa4e049ce27f27a88fea571e3c8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.kwjkbaf\\.com\\%E2\\%88\\%95ujyut\\%E2\\%88\\%95gupdfvn\\%E2\\%88\\%95xygzaewbn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jmyyavcgs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "95fc8d886906d14b335b355f1be7697a6e610be45835aa229b6e172012dbb4f5", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "d414dba03fff4ac24ab0f86259e213196e56eb0fbd2815297f2665ff15df0f44", + "regex": "." + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "f4e926094b6d036ccdf3dcf08549b7f236e1403173596093e31eecf8e15afc64", + "regex": "(?i)^https?\\:\\/\\/video\\-hotgirl\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "d77b87e4a2c916ddcafe27f4c44bd7cb271fc44744d6c889700cda73821fa50a", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "4cebeb267b26727c41ed1c6f6d2d080c4cf643dcec57180b2084b74823b00e30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uw08vK(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "c015716c76d7f8d2772b4abbdc021b07e416c1e445a8c85bf01a78214393d753", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-here\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ece28d6dd625059091804d68d047b6b21e7d6d43ebb68d544a62003bde54fe1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chrome\\-extension\\.nkbihfbeogaeacehlefnkodbefgpgknn\\.com(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1f5510998484d4fdda69850c8d7d3ee71e204294fc7c117ed7856e5836474f15", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "7b6c9bd8418500d72367323bc9dc3f7e673179d5867deee26c92fea99784ccdd", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a738f564e5480988c606679f388e8c7c1ceb14c7648867c674b64bb733e84f68", + "regex": "(?i)^https?\\:\\/\\/nbndfghfghfghfgh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htmH(?:\\?|$)" + }, + { + "hash": "65ab41600d1bb9eb08c68f9e5ccca44629931232d2c0d587983815190db16fc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s[\\/\\\\]+THkxCDkwCY(?:\\?|$)" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?48e0f\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "c358c91779801b41c269f3e7d77cfe4ac18baea1c0206176cf37c64fa0e34157", + "regex": "(?i)^https?\\:\\/\\/cshfree1\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "dd01e176b2480e40c912a7945c723913c473792423d1298f71defb2e0252560d", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c44dbb466c547f588507db409b2a0a9eed39fe68af6801065687ecb8801ac6ff", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "94a93e448693742fd01036815f248da496fe05784a78040a7740228f9f944bb4", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "dd4eeed56bc182611e980bae9a9987d18b1e12830afb52707129935b23ad66e2", + "regex": "(?i)^https?\\:\\/\\/habanlaam\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "606b0c40a07ba96adeac66db0dc0771d53411bf903c1f71a486f67cbd40c4407", + "regex": "(?i)^https?\\:\\/\\/finjalmianka\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "b3b0d8cb6cb6a873704c8ca2ed7f1eed2e729c6b523217ec349b9a8eed2e8163", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e7210003c4b41ffaf116686cb08e90b58cf4c6edd7ecb1ebc4cef9debd726f2a", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "088991054af3f85ff063ac1b597fae01abe2a6d9be9944b785dcefce8dc67e32", + "regex": "(?i)^https?\\:\\/\\/currently6421\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "63cb02cfb6fcce9943db4e07f5397b0ce6c720aa730d6e2dd3e0bcab62a50b79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "4ae80dc66b1ccdbec262ce5ea9542c4409932033570ee4a8b06fb1c7968035eb", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "841fc2aabd0ec65ed7929126c50d7bcfac6fbbc6ee01c261c1083216e05e5ad3", + "regex": "(?i)^https?\\:\\/\\/finjalmianka\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ab6a2185e8128cfc3213d29c7f51536da75a6143e6367a01b55ea8317871e283", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "2daed9e7d8fb1485143a69783cd28903645e91e34793fc21f731c0c6b26dbb42", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "8dc666b0cb64fad84e8f7ec55083a19c6f07b5e2260439c3e6b89c6d2914aa71", + "regex": "." + }, + { + "hash": "e2a1c42f44ac6ce7d1b39358c551c5456a8e33b8fe8c787019a33605ac8f88ab", + "regex": "(?i)^https?\\:\\/\\/bnetfsdgdfgdf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "021824b0e38066a936e02b68220bdc1e88fedf305c57cbef8e2cfd8568d7b36b", + "regex": "(?i)^https?\\:\\/\\/bnetfsdgdfgdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "1744864d95bded4abdbe9789b9d58a63f6327f86a8a7eb3e913792481c4b3cf1", + "regex": "(?i)^https?\\:\\/\\/nbndfghfghfghfgh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "faaea184c208501561e5c425de3fba6187178e5ae4427f11a88a9af4c60889d6", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1d884e07952667a25b4afa74dd10954fb060f41236789e83aa485416758779e7", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e29d5484375fc53989e6a7e50a827293f0fca3706259ad4deccc7d7e7a8a5a60", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-girlfb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "e9353c3d760be5da9f0f87e8f86f5f535818e97941fb15ef86100c841a6b12a1", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "2fb407078e07739c52e8478883e824b1aa9e141e271cc9969f8a98ab21512fd2", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ac19d\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "8b87b27bda98016fe4ad0a09a8b09b783133d157e54c8a1b7f7688a3764ec4e0", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "65e621f8e6e51a7530eabb37f7af48ad0bf82fd39c506e744cfb1c02e1cbe227", + "regex": "(?i)^https?\\:\\/\\/finjalmianka\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "68a36d2dfefa8b8f4415122bbbdfa7c04df20c39bbbef58aae6e932c69faac88", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "e0fd1c156f12c1eab94810e332f3f7ee005b0842aeba91fc91bb46512f7c0e15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=cysathi\\.com" + }, + { + "hash": "63110f542514a1c51b18ff161a660e50a473ae9c3538899c51a95c996f90a9a5", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0c7d186f741226e6f56f3f703edf51487bbbe9b1a4a610275f960a6c681bc836", + "regex": "." + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "29f32308bb62f037e8eb87ac78484076505bc2d4f3aad4a21bba6aaeceae15b2", + "regex": "(?i)^https?\\:\\/\\/votingorgs\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5bd98b5390094715ae6027563e3859bbde1b21a4aa4e6417aaf464f899ac7ec4", + "regex": "(?i)^https?\\:\\/\\/rbx10khere\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "af84569ca97dc61e279079559fedab339f42dae2d473937c9518d4f2b476cb2e", + "regex": "(?i)^https?\\:\\/\\/balamurugan0425\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5ecf467c6a764b22f391e22bce9ffc5c8a0e4377f9f1a86f34f8c0bea2c5222e", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "63dcc795eaf092edb45cf6076971f5d181a0d8e69f2fe46121304420dd947ee9", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "dfb71162107286d84d9aba2a9d3dcf2a1dcce78e0802cc0f74b3ceffc5dcb3ac", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1c399825e458e2430143c5f59fddcae4a605e706e3a8444e8768e011233537b9", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "17ae4ed6d1c4e73cf37214e041a94412242660a06197db3524df2b4262234f94", + "regex": "(?i)^https?\\:\\/\\/nbndfghfghfghfgh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7a67c52a78dc391ad07fd0539f6db1ba826d1a8dedcfa5674380f35c4ae63602", + "regex": "(?i)^https?\\:\\/\\/hgeqhgbeqahb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "c478676b32fc26f050029879566b8f47b054011f4c91e9a29f9b6d484ca281c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+br[\\/\\\\]+indexx\\.php\\?ts\\=1$" + }, + { + "hash": "523167cf79e4c9748d05a632a7f1889c13e9b587b6619ddb7f9ee7b6b1e48f8e", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "0a94c9c8cc2f9a2dcec47fbd25078cf59af2c9f7bb304b5ad332d5b9e21c7149", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "f756e40b9eafeda76f0b0811aa4309774fecee27c2c5bf4f82a8f1cf278cb064", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0d26d077bb9299f630c27bc0a7452a318835a3d70cfd4a6f6f3f5f283e0dbdb5", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "528c3313ddeedc4085b79821dd5d1629f4f792dba394fa8c870643a77d813456", + "regex": "(?i)^https?\\:\\/\\/webcan\\-gratuit\\-hot\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "6fc975cb7b85d62076b3f7e117c901afb53af1019f2e9e35842a2f7af8625afb", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "5e551606bbf1dbb6777847d9d071d3b342c262a9d9d150507d4716d91729abca", + "regex": "(?i)^https?\\:\\/\\/video\\-hotgirl\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "7428e3c680d01d33ef006480f134ef97291f41ab92d391d830159ee2e3dcba05", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htmH(?:\\?|$)" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "37656aa865b715fb14e41b9743240b0fcc71f1817e57c6f231811db52c12d2d4", + "regex": "(?i)^https?\\:\\/\\/votingorgs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "65496933a3715c5e4b95ca4bda92d30377c75458272565aac58a4b1327e80e69", + "regex": "(?i)^https?\\:\\/\\/netcdvgfdgfg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htmH(?:\\?|$)" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "49bf0aae85c083dc8fde02c25c7b0f32e82b054296b8cf0c4d8e0f60d9f09617", + "regex": "(?i)^https?\\:\\/\\/votingorgs\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "f0895a65b65e0e4d46b43be241301a39e89a14e68ccd5f0ab17bb644484f9c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "de5f395991870a639908b25b2601fe20e96947ad58b97638f55a81b5dece53bc", + "regex": "." + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ac19d\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "94a146b050d4d83c0d83e6412dee0e68f4b88fee6c89bbaec856fafc50d01f13", + "regex": "(?i)^https?\\:\\/\\/faraneynews\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "efbb22d1f65d7dde75b0a4d6d200698f0c9c48613969bd5d71630da9150ca476", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9971[\\/\\\\]+entry[\\/\\\\]+register52368(?:\\?|$)" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "47607d0c5e2c9440c49437ba6ce48d39cacc754f0a5bef791b389d4a492d9081", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fa816c00e3113b0e757bb8073058a8f6e2d50e98c1a4c7a6f2b9e038b4fe5600", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2a195f8146649cd8a74bf4e1e808593719678de7dbd1fee316b6fe51a0f2520b", + "regex": "(?i)^https?\\:\\/\\/rbx10khere\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ac19d\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "7d061c6a100649d48b5cbfc8340b87491b5a8bb00806a2253661d067fae47336", + "regex": "(?i)^https?\\:\\/\\/hgeqhgbeqahb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "b8a3cce889773fbc892edadd0176b10e2055355ad856a10f19df9aa794d230a8", + "regex": "(?i)^https?\\:\\/\\/emngocanh2k1\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "9ef17794ffbbe1ae10ead054db438c390f3bbcf1a47452f650733017b4ef2cf9", + "regex": "(?i)^https?\\:\\/\\/habanlaam\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b98ab56dd8b93a47e1902eb559852fb1d1c9fed1dfb18ab57b23a48764bae937", + "regex": "." + }, + { + "hash": "0f5eea7ab987067ec9bfc067f903e7f77535f491589de477892435a8fd84651b", + "regex": "." + }, + { + "hash": "78304faed8024c16643ba65193b7fec49419ec16aa3200857990cad9ccbcaea4", + "regex": "(?i)^https?\\:\\/\\/biouikiouedvsieouesdfefhdsued\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htmH(?:\\?|$)" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "5db19f0587217b554076226c626fe4ad8189c3f70f6a0a9fb322383c39c4a6ce", + "regex": "(?i)^https?\\:\\/\\/websalope\\-cam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "66fb57fbdd4ddb8eed45dd914e46f22469e91a24762f3d2d1e8d7b3b7c3d1acd", + "regex": "." + }, + { + "hash": "4f56a7355606bfe3fdf55c28b6b4206e9aecb923dbb7feca087e31e219808960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htmH(?:\\?|$)" + }, + { + "hash": "02652ad7ef06633ce8370aae2cceb3208244b1fc440a0335c5fcc4acaa391c95", + "regex": "(?i)^https?\\:\\/\\/mail\\.coinbaseactivitysupport\\.50\\-6\\-199\\-102\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "7723e3e5ac4bad4032d3e18fb322a624414462d68d7c446d1e90f1c6e7f8da75", + "regex": "(?i)^https?\\:\\/\\/video\\-hotgirl\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6dfd302ec03472399d441334aa8a00ac8ea70784d820208dbaa87d105aaf9a88", + "regex": "(?i)^https?\\:\\/\\/biouikiouedvsieouesdfefhdsued\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "06dfc460dc11e5247bc7403062b822d7b889f07222c237112da2b067614f2655", + "regex": "(?i)^https?\\:\\/\\/emngocanh2k1\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7bbe87850bb48c29b8cd379d08cdc6022a313325a6d16b1f6803853470d8837a", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "a4ab0f113c70efc1cbda5202faf3af8d074ab99d18ea392643bd4d3380fb6347", + "regex": "(?i)^https?\\:\\/\\/recup\\-paylibvire1\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "75d78807cd2dab16b9fda4d8e5f39aee6c7d8b33c2b8e37f87121c6aa258e3df", + "regex": "(?i)^https?\\:\\/\\/6362y\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88f12c9bf93baf256d5b41c4f703459fb8911a5b0480480a8f8e3780e49e73b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "d81040492b1ac437165011bbb47913adf44dfc293053210c566f273181ed4e6e", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "18f1a81479a9234fce1c7fa1a129571b0928b9b4524d7d2ab2c05915c2c9a1f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "4802973ecd7559eceb48174103817ccd93bdc7a5e80798aa4e553a2d4cec3d4f", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "705f762684ee18e776a09356cbae8e6153c183931eed118fb9a79c49c0b1f693", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "1a28dfd04317289392cabdef7ecbe465c747bade7d0e7d45c2dbcd8c0bdd7d01", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1a2e1a7a55e3f120c7b222363cdd6a9332abc9bf37e4ecb0cb2b6c1ec055128a", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "34f5a30b565e318714623dfde3104ef539593814444bde21c08c6a435265bd6a", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c046469a2e8d46e4f9bd31ec28d65435241864cfe354ca9f25161420e6b0f335", + "regex": "(?i)^https?\\:\\/\\/bnetfsdgdfgdf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "008dc9516f9e3b80f05c20366c564ae097da452546f2fc361c2a8a15aaf95fe0", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "38333b256f392cadba8f1d6522a58668c36057e9044df3fbd05c1ec358e633e0", + "regex": "(?i)^https?\\:\\/\\/hazlamajwabna\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4ec930114919a8f1f5dde3881b7a566bf53282f97e39210347386b7a799d55a8", + "regex": "(?i)^https?\\:\\/\\/rbx10khere\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a63bb4c4ea49f48c4939ee578f191ff9e78c6c06dc7dcd510c6b6138f7a4151e", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6a5ffbabe96ffd6dfc556ff9a4cda28e94dfbf3e784f16ce3a0b6c02dccf6469", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-girlfb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8f22b9ee54ab85d4005c1303119bc1e73729f97a914f44264a1cfb0a0b2c0b4e", + "regex": "(?i)^https?\\:\\/\\/webcan\\-gratuit\\-hot\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d69132e4aa16f53ee181bf366bd43004bae74d50b6e626c42923b60694a24417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "69d3ba0160395072e2c1b1d30b764f52843c676b8da161ebad2874f5c4d1d49c", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7a3ceb74012034e558c166134b18533dbcd4514238355b4ae2c9ec0fc00b4212", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "b62c6974d365ecb13c04b1fe815ae50aba30aff32a9ea8396c075a03accbe9bf", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a935d8b63fd034c7790bf753098fbf63be382bee765d5f00028046c73efaa61", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "048097e7e2ae186aabc8d3493438e6bc15b32dd9aa6d34ef550c08eb65676bea", + "regex": "(?i)^https?\\:\\/\\/1\\-websalope\\-com\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2072a8df637d141ef1a626b9ed34d2b7747ed17342fe7106cc4ec4ba13daf7ed", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "a7f0931a060930f6b9a4d24aafb297f4e267972d9314a2782d9161d2a1cda35e", + "regex": "(?i)^https?\\:\\/\\/netcdvgfdgfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "b5c7261f8780e0225d283d28b7cbcbf96e904e5fee807115b92d1ce8405b7437", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2fbd38427cb2fb6a310067839edd9b417376838bbcdd9d5c1980b1b1a840cbef", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "2ebecd649051a725eb761e560ea57e194088bfb1de72244b90714f47d837314e", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "6a1f35e023eb93b2f16fe864c2719335c7856a08ea65408bf41fc14cd441624f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "9c3a0681d497eb8f97385f60f472f0d3f8cb9379764cd6f89a3c92ac7bb87902", + "regex": "(?i)^https?\\:\\/\\/nbndfghfghfghfgh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "742885685a32b6e06279c26f5de85985c555957649aad59ee48b8c826796d8d2", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "5246bde3c2615891a744716cc13a9f0fac2315804786ca6890c10a17c1fd5e6a", + "regex": "(?i)^https?\\:\\/\\/netcdvgfdgfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4f17e6154d3e06b80464db72383aa9e74fa13efac780a2062c1d77e584b5505e", + "regex": "." + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "2b16de2f2e7b29eee0eac6d38710e50ddbdc4739c19b0a819bc7be80f1cadb0f", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "fbb0e6b1b1eef1b1e6b0b1053516854e3e18e793e3949e1df908bbde6fc9838c", + "regex": "(?i)^https?\\:\\/\\/netcdvgfdgfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "134c2e86d077a40267545efffedb79343ecd3de049951a70c99b9822a7268921", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "9ee9ba86256988deb53dbc8e73546e77acf607c250fc5068157cc43c887d013b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "eda97f1b5c2082de767a54a2e0e30b5e98f214b59a75b153b01cbdafa3ffc606", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "f2aa8940675761f4e20b459963cc0cdaec40cafccc8db8c9ead4e380df8e7e92", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2b07f3e9b7ebc3473b5828bb0d29b3b5ecb6d0c8cc84cb171a84f8716cc51261", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "f04bcd61393e4bad4c1d619ac931924f2b0ded92b1db9b1b1b9cb9f9f179eb29", + "regex": "." + }, + { + "hash": "de5f3218f62a97625d13ceafeccdd6a8cabf38820d0ddb4bf868d24e029e211f", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "d22dd199c46b3ebb75e2361661fa8054ffb1993b548bdc61ffc522752d16a170", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "420ae2372b3d35c845854373cf30cb4ac1eba9ffd32a076a47388ce5d664d1ef", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-girlfb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "0b889acff458702824420c3ebfd58c07aa486dcdad10c85e50bb2789c9d31a1b", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eb63fcfd32cea58bdd51bd0731791657cfb105af7db80fa76ea3537bd9fda034", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "31e2dacb6469d545bbdcb32f7d9dfa0641def7c50ece74d6bdbc2aa10e8f77dd", + "regex": "(?i)^https?\\:\\/\\/1\\-websalope\\-com\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0c9c37d55160181fbefda33a557f6baefc5bd411c88f87395e439edd38a38155", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+I(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "1144073ecfaba31be7a426e08bb5dadaa31e2ace6070b258561e8060ed51c950", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "beb90ddb99d8bf767692628c41eef97a8eee280e1c7c736ac378135d42621990", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "72593d72ca303d37005fd2c4be28f5ff6ed50994a6ea5dd6d48db3797b9a6f0b", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bd07fb0b32deb189e5205b783ed5bd289e3d91308fcf4e8c673ce59826ebed11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "afb9c206b9fd5bcdb110d3cdb0d0422dcc29efde43b75cc5c2ae6192793f85ef", + "regex": "." + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "ff6a1b1a715f6d40ac35745394abe44864f15f286dcfea345e89365025d1729d", + "regex": "(?i)^https?\\:\\/\\/websalope\\-cam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "a10d7665b0794ea6f4585ad2520d88f4623dc7da3ec8926e27a6650755c9079a", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "458395187de4a1a757d935685369cec3927710e71048c765b2394d04448dc972", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "176498f14f8c9bf1ab45ecc719e9ac8e0fa4e0605e830bd86fd8b228752362d3", + "regex": "." + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "95f8c49ed8abb7765e703e9873b4d3f3648bafe448beea1572f5d79365b64de4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "a73abc7974fd5ba08c8eb6f6d1a0417edd1537ccb83a49fa4e4e5e2900d99451", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "29997feebbc4d50cedacb704f48f8debb600b132afe5938afe7ebd0cc96b843a", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "66ee93d5a0356fcb6dc669452c5abc6de655f0aed5c8132dc6dbe9e574494d13", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0973c67bea866e1ef070bd360d28e2b78c3fc4a932fee423c6c490157fd3497b", + "regex": "(?i)^https?\\:\\/\\/emngocanh2k1\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "cbd595276b0df466285b19e6ad853ba37f70465bd62fd5d76213ddb1d20331ee", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c78ba03130442dd556db1520bec5a498a8327de0ddec1936838d02a1ed438665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "de9efccf79a80a534c17cf02fe144812e396235cf32a7f2a80dd1d6ff054833a", + "regex": "." + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "99840c7e671b4975b66e979ffebd4481782c9a4bc116dd445839b28a592ed838", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wdpzghjzmo\\.com\\%E2\\%88\\%95cjrxtyonxj\\%E2\\%88\\%95tvxezlwwd\\%E2\\%88\\%95ppsqap\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hnxexe\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "46a7b9a8e790cb86aaaecb0cab45de1851e6c378d06ca402c08e6720a8492c81", + "regex": "(?i)^https?\\:\\/\\/votingorgs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e6f65620a6bad17ad79604cb91a36fe4de106cae1f34672928d54eaa0178f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "5a7f3699d793fda99ec298964f523e902adc730f38b1e8da402b83d7496f2261", + "regex": "(?i)^https?\\:\\/\\/chkdomainchkfileonline\\-679\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aca8f3297db8059d52682eeea4b4b1e70f3830afb9cf06c71019d946228f1e19", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e7e9e023b441d079cc0fa4815faac6f29ad66d7e365629127a9d3cc833deee63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSxODo0xOw_iZtczvQOYbhxKk9RQ5tmEZvhVX8idEJkQPJ2Qyfng9TMVudFgtaixJpGEI8A\\?_\\=00cdb190\\-a13e\\-11ef\\-a8c8\\-247531802924\\&d\\=BQ5qQHPeZZeulzkhIyM6MHfryfz_ENGcGVERNefbNq8zBdRF6HRWmyRkn551X12Iqoo35JFaBeCqY2RgMHBCi6L8m1F96PoBcRfpiIKUUfbE_snJF5VFY1KSHfSdRNhRACvXUeCehO\\-F_E8AebS_7ydsQq28H2BE27zuz11fC9SDUYxTz727aE6qRm805llAp7gJnm0_0XAfcQzaLyMPs2zDN39tii\\-d3\\-KT9JhjHuK2Zk_xsElDSzswafAnVu_AZ0tp8pyyQ67eSuFkQnNG8YFd7qP1J6LH_QxqeaIOlzialcI3tW2DS5LugSNC\\-QlUAo72RbbKG6PcMGRPdSUPvxSkClM4p\\-76LiRqmbS2yjnoiuAEdv21_TsDE0vxcn18Tf2ijnSsEBsVGZ4\\-JQKXsCLW5sDh44xIhLS30EIbUTzK9Bn2yX2Ni\\-iTg\\-CwELR_FvFXjljpZrqv2cO7tPi2msVgzb3ZGXgjSR2vWttQJijuwssGqo\\-ItPJodvz_U3eTuHS6dRCxuP3UzKV3j9WSt4O6JCeRRxIO4xV3htc4icmxixUNum8AAGmftOo8oJ2iyOEu3L4Cd6HEFqgTeeKqEH0d8QHBHDCwge7GG4TPFf8JYboiINUtgm92jw2ggw14btejigOqzuKdePMuIGSmK4NtK8hl6Djt7rr3Xxi9Wtw0OlHkDgB25KUKkMdWvUrwGoD99Evq59bC98CpRcb2bNu91wLaJ_ITHXckq3FsmlxfWqD06r0qpldKriwzFYyzrjb0R8TV21mwq5mlBU\\-2BsDgaA1SI67jmEoS\\-j5P4YEI1KjdocJsAci\\-0Dto3aqHWYBcnGpCpa2k8WUxpi2_MjvOEFmV6v6Qk8uX5obb8q4jLtlHeyNaiuyLTeZWfG3EsUZPapkN3Cj66Fs2tPiHQ2ZfZ6Je95lXwn53mGhnJLUYbsaBPiH9QywsOAJwatm2\\-Jv4pTUGArxZ6D8PBYk\\-fXFAEmdC1uWw3dc0aWTDONHuHhQiZBQC\\-gfHCEz\\-IN8q0TRnkutZrKbFmua8EfFnDS4xCINvPaJGUytjj9TnFftNGdgUP2GbmEeW6PKi6kJo0ZYVT_El7nOuyaASSyAeK2uWxw7139Wr1yGIhgZ7l_fi45FnXN\\-8XjIYGGancTa3mADtzA9t0l1fhvYURDtMHyvepUz5X23Gxd9y0uxx\\-\\-fBwRZORbObBNj9SbHGi1tuo1A2\\-a2XF4UsGah3U\\-e\\-4HK16RUJTPrKqgdxA6RhXUIFf5Uz4Oe\\-GrECCx8yUtvzSJvdYLaa2lkmz\\-\\-qT_Fc0poZQ1WBKwrp79mbzPbjVj7AWfLgPat0F_t7sw7Yzo7nnw1_ow9BenaA4sEWGrve8cQEbbPL4fwTdLtvqfk6LcKXwJvBawI32aS2drPFiZlx6ps\\-rQHQPNPFlzpCAis\\-pftsQwX0TvWY4lNyO\\-pWyZHdA2YDH5AcQtgzNB8O_B99EDHznCEgsTnPiXWDR\\-CG1ibz\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "f67b97dd28df0e2024a639d292d8c6270bc42a181227a49c9561ff268c79c29e", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3ae855e7ea7bb927a365175b71c8121a6734e8f61c915a7401a3e1c588c08e12", + "regex": "(?i)^https?\\:\\/\\/lovegiilrdbuyv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "97c6145eb1cee5c4a2945b0ae302312fb3167105cef8f99745a2922b70c525f1", + "regex": "(?i)^https?\\:\\/\\/bnetfsdgdfgdf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "84667fa52b0526b1aa41780424b6a4edec9ddbcd0759fb901c568eaf1f4a3f6d", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "e9cac10c4004989ec4e66671252d9e7b09f2a033596b48a563bd7ff960728232", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5ce85605d0d42cee86ac3ffa5379d3ca57c6e9743d6f556a52da301829e161e9", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "71b23465351b6494835385d84b401f534b239a64ab6f902c1d6960130ea13ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "c726c96c9c626f2e9956194d8267e10a84db4ed4d47f0376a255ebb0ef0253c4", + "regex": "(?i)^https?\\:\\/\\/finjalmianka\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ca233dc6295bd1fd9d11fbe133cea9dcf0f94d7647555a8973f15440b6b5a44c", + "regex": "." + }, + { + "hash": "ca7100139ee155217e3111a96d4335f4e0d8b5e9cd96aabd52fb6aa3979a7504", + "regex": "." + }, + { + "hash": "f92486ea837dfd2a981830d644a5eb28498de70436f7b9cb3d6cf394c2c277e6", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f453ed7c009105d081176aabfce8753178db7cdc69cee85c6ead6999b89891d4", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "957ab4cb7ed591eb934ca9d07de4c2321a3c2169c98931336f0a15093673c702", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "05b872d8ec17e9ddcb21a5628e4d3db3fd03412e0985b56c1f562f5901ec63ac", + "regex": "(?i)^https?\\:\\/\\/netcdvgfdgfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3c18aa0c19e01c935ad56c989be4014166594ac0e5932c8481ada04ded4d310a", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "cac2d09fb249ac6bf734a4949fbd9d93190813c9467a08d5401fc830d0e9eb0e", + "regex": "(?i)^https?\\:\\/\\/votingorgs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5ee072852d410141ba004477aba76242d71d96d37f60747f96640f5ffce55dec", + "regex": "(?i)^https?\\:\\/\\/nbndfghfghfghfgh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "341cfd9b52d09c6d65d4fa6e774320d6dc2343819261e81f7351596b01743a41", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "1a7f8eda69406779a5629b027717ad64a4496f1c66f2c03e3d12e4a307747981", + "regex": "(?i)^https?\\:\\/\\/lovegiilrdbuyv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "1582eea48ad7fda3c4ff56be0250413f416805661c55ae90e6982f2bc0f0620a", + "regex": "(?i)^https?\\:\\/\\/hgeqhgbeqahb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1afee2fa6a97054cf4be60074138f941535faa2f917c4988c67f46b8603233fe", + "regex": "(?i)^https?\\:\\/\\/habanlaam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "0f2c6b3be2878201e6f0aab37ec900c0bc939d9236a302e3755b75c1845a448b", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c128b156918fad4010ed0949a86f9cce81b02153fafb24fc7e490529d00fd62f", + "regex": "." + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "6a6bc05666c6b0001f0dce5d082c780b3bde57a2173774c82979866a784679d6", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "5fb6ea9969059c7cd4b3fe6b6282692f8269dc8fe60ccd72bedefa03824ff555", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gidufhdnvuhdsinfj(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "35f366a2a22091977e7f6e31aca94f77da28d2331b87fb9040500e98eb17820e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "46e248917c232708dbed1d55d230f5de649f0b89d6ead80397694481967fb64a", + "regex": "." + }, + { + "hash": "5adcfac188c7b7a43da6bb901e262d2509d13904d588f88238fa3f3edd929b82", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "602b4fa9472ea711ca6433ee005ecc4d53cdb2970c19fe46ca1758df1eac79c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmR(?:\\?|$)" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "c558ae7f16a086eeb2353d89630e560eaa5063f2ce486d5a42e6ba297567df8e", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "8efd9a1e89f99f1c7fd40cb91da6447daeba863f6db22a933b9f53b6ce5f7893", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "2902ef2d8366b1f6887e4a5d183fdd3f037c8731f4c9947b12368bfc92ff9f97", + "regex": "." + }, + { + "hash": "c2c850e3bf92300dac53927de7619c7e1a21229871a2d202a7620be59371d15f", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fedc7ae97f1b0bb1246a1c81a5acd6bcd3da79036d8777879a63b8e64e2c76d5", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "55344f7e26e736167241ac049eac48d155245065d325940276b83d067ed97985", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "78ab787ee7e7375c11f15b6281bd330f05c599a52ee6e87ac735b1b4f4bc4ea7", + "regex": "(?i)^https?\\:\\/\\/bnetfsdgdfgdf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "b8c51d78b0481b3f274cecd4082980618d3be07bfda4fc750f86a82b831f704a", + "regex": "(?i)^https?\\:\\/\\/es6\\-d0e\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f630abff7f97cd20d8bba65bb679f11e6ee2850d24b834dda33f254f9b2f0719", + "regex": "(?i)^https?\\:\\/\\/biouikiouedvsieouesdfefhdsued\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8b15ea8e4e1601e7f5455e734d1ae119522df0e3e2ed9eacef64837f12d8f52c", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "03615a69897df715521277f2394e811bdaac6de2bce11860175760bf18d9402d", + "regex": "(?i)^https?\\:\\/\\/hazlamajwabna\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "6f5a4055136569b7deac7d55022f1df4da72b8320f6cf0affc195845edb93864", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "741381157b7359e696df929ec152328dda60411195ae9ad16b07453c3cb099d3", + "regex": "(?i)^https?\\:\\/\\/norerplycxnbsertok\\.165\\-22\\-3\\-139\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "9b68d73c34706fb26081f5bfc02d54850d509b1740ca23d430d8f94852e8448e", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?ra9a88\\.vip(?:\\:6443)?[\\/\\\\]+entry[\\/\\\\]+register[0-9]+" + }, + { + "hash": "579afab2d7719444475dbc1d4c5be68feca0ebc8c4f511336e677abc69743af7", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "0fae2617061a3e8db7f2fa20c1b7b83679986ac6f61d56e610b4feedb1bd7e01", + "regex": "(?i)^https?\\:\\/\\/webcan\\-gratuit\\-hot\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0923db897b8bd182d1bfd1ff9958040972d6756d61a1c758c43a399044cbcfc6", + "regex": "(?i)^https?\\:\\/\\/rbx10khere\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ac19d\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "2360c3081ef5f9311ae98ede158caca4101f5412a03e2c74dafd35cd1e51ba43", + "regex": "(?i)^https?\\:\\/\\/eqagvqadgv\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "a583ca70f45b936f9df326fe1072a23a7beb2ebebb5c527942b458c9e1943ab6", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "17b691018c890abcfbd4bc687916d7d1124f8c004ac21c36fe57eb9cec6bd381", + "regex": "(?i)^https?\\:\\/\\/hazlamajwabna\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "31bbee48b7ea972161eb4488814fadc2ff0683262c91e42ca68e19b361467faa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "5b842221f061492cf126be316dc03ebcaec0d52ebb6aba00ef235c24d4fa4d93", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "609c25995043ac3869628b82964874e740f9e1ea3324aaf9ed2a40130ac35364", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "bb3df94a13cad07cb5276418f5e7f6556b0c5e74f773d2d4b007dba626b43efc", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "d35dba25a27229d068bb8a62827f67b3dd6098ecd32ff6c3c2a9972115262339", + "regex": "(?i)^https?\\:\\/\\/video\\-hotgirl\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "889d7db8e9bc2ef7f127fa2a144aa08a840f611a9f1284d9303bb91376b0dfe9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "4284836b424f9b0eababbe889ae421fc05768d076564b144ee9caf2f47344e9d", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e0fc4704a48c9fcbaec809a1b6610d13285d157d967896d189d4078079e1f173", + "regex": "(?i)^https?\\:\\/\\/robux\\-suiu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b1b0b51ea636a19e9bb393aa0cef8a2fae5b55b19bce78eea202f39c0311ab48", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "942679472714a46c8165072008296c3091aeaae47d4da2b5a2f633d34823dc3a", + "regex": "(?i)^https?\\:\\/\\/faraneynews\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "d0c5ca7c5ed2c0547d1c8220f980242202475b94ce5bfc98bfe493d6327a2049", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "3a49adc60bf460dc6c637673fe513a6fa8a86b0e90ef440d5d01158f0398c101", + "regex": "(?i)^https?\\:\\/\\/websalope\\-cam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "a78cbd7626d1fd3c48f6ac66edd465e6fed85dc7fdfaf9ab8749f86bd2df0aec", + "regex": "(?i)^https?\\:\\/\\/653wqr4zxcwzxccasdcs\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "403eabd20dbc289e413e387c59a2ca89adb694008ef789047e0b9a2d114caf61", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "18f1b2f3e95a1b9945dc03f0bf29df84ceaad389f8d52b9886be126aeda44489", + "regex": "(?i)^https?\\:\\/\\/webcan\\-gratuit\\-hot\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fda9f6c6413f692cd4e4606cb2a3a66e17857bc1154f16de9f9361c2cfef5c6b", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "0361a5511d7fe92b1d33c31d7d56be8137b89eeb690b31bc93eeae973520b103", + "regex": "(?i)^https?\\:\\/\\/habanlaam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "0d2b604f44aa5665a8d15fa31e332c601591ffe0f4bc78cf58a077172b5e21b2", + "regex": "(?i)^https?\\:\\/\\/video\\-hotgirl\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2f1c7b81540952960a8bab7bee153a054479920133187102d559c3d623331c24", + "regex": "(?i)^https?\\:\\/\\/1\\-websalope\\-com\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "53383e4f85f7bc062a35c458d68edeb73ee913c004d4cb5c7bbf894a5875de55", + "regex": "(?i)^https?\\:\\/\\/attcom\\-104356\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "7784a268f337833e468051f63d5e1f1ffcd673957e46654f59fe812d7a300474", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "7268b18cf366583bad68dadc706f694aeca0787ce9c444a161ae9f19502673d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "dda098111933cff42e10bc072020c9972bad39c6db97f0d1d29b11bb262ba591", + "regex": "." + }, + { + "hash": "51420aee8e185480adff478dfe75a601fc911f72af7f784020e2292a2b6e623c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "3bd0d945083869d440956edaa0cf6273eb3fdbfee286b5d2b42219cd30da148b", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5e345026bfafe7b07dc19d34c5e3f401d57ce3a46402a8ac463be90a978ce4bd", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "80544101d823a2f72d501251f50d617c3c9762211793d5c2b764e4d357194577", + "regex": "(?i)^https?\\:\\/\\/finjalmianka\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b62cb1b6ed1026decf6dd588e64bd41cdf261d3f5445328ad523d90ab826ec2a", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9189b018c1a28590fc09c7d9641098448ad0717bb884ea230176263b259b3dda", + "regex": "(?i)^https?\\:\\/\\/cshfree1\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "9769e688abea444a42b7fe876b112c305c92081360ace79d741568392b9e00e7", + "regex": "(?i)^https?\\:\\/\\/amazon\\.isrcqwzfil\\.com\\%E2\\%88\\%95wmgtqgkrq\\%E2\\%88\\%95ctbeqvl\\%E2\\%88\\%95litcl\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uwucygup\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e2b12b1e45aacbd6a836427c448979fded4553cdf6cd27bc0ce8c5e5d06ad1e0", + "regex": "(?i)^https?\\:\\/\\/lihkedin\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "35b682c6d775c4b19493a56913cdf9174b52fc1afaa42a3d33c2116306f2abce", + "regex": "(?i)^https?\\:\\/\\/lovegiilrdbuyv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b0709f1f0d8941d043631f94a2f6a72af9d49c656e2d4598ba29e1b7cbd7ab47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "b9eb4b975ba219ca0f098d8650b602ef95185290552b9751f085744d796db1f9", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7e2639c08e13bf3bfb85c2b8b7c0e96d4a698e81380f3baaf1d49c567bbb719b", + "regex": "(?i)^https?\\:\\/\\/gavaalmlna\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "28559d004fd8b7ab5fd3a2e3d8cf6a809f351d8d8ab173adcb10fff2b56f0675", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "71464afa6f161885f32e0550a4a74855cb138680d78888037e537cd5d1c8c336", + "regex": "(?i)^https?\\:\\/\\/negdfhbfghfgh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "1d8cbc339cecf8b9036c029be62bce4d3be3eee5699edaf30c8231e5305c37f1", + "regex": "(?i)^https?\\:\\/\\/finjalmianka\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "3004556e1c7a32cbef3bab62d6a341ca235788906d59bbbb53d0dea26208c155", + "regex": "(?i)^https?\\:\\/\\/bagtamnal\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bc6442289caeb93b1a2b123ea11028fa227301d8b4c4c46e97bbed711eb9b1f5", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "7c53e7581bfac7046c4bfcb5d02019c9a9648c8e87c08fbce9629e2f3f6145d5", + "regex": "." + }, + { + "hash": "d85209c5a39ade0b33edad564f9a51fb2043701691255b4f0559ac5650ce16f1", + "regex": "." + }, + { + "hash": "6417999d6eadaec44a9965490f98fb99251554763c48c49b9cf5a5a8894b782f", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ecc0e\\&id\\=paysdeherve\\.be$" + }, + { + "hash": "9beed4ac512c3704b59ced3f6517a29880d5e1116a3a37603fbefc87366cf705", + "regex": "(?i)^https?\\:\\/\\/hssawaliman\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c8bb435c3426aaa11c056b33ada4d60b9cc2ffd1385a3d238c3d04631da9d031", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "09a121dcd781ca27e4f18430a57a0d94f21aa3687085ee7b9df5916b3a88d43a", + "regex": "(?i)^https?\\:\\/\\/metlogicfrance\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "546c3be5608e56cedfecb3529b1e59481d6726baea871e5250dc58bdb92732ab", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-hotgirl\\-streamer\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb17cc63ebaa8eb4a1b5666cfcb17631f37587378a5afe1995c7986cc01b0f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "5c1287b9019f764f566f1b75330f86b85f02fa470d8e26f1087e1400695ab698", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?444a3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "92ff238ef2bcecd6dcc153ec6cd09d4adb30314512a95736fe3a36daf70b0b75", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-here\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b10f3\\&id\\=sm\\-devis\\.com$" + }, + { + "hash": "85f29528080b6fa6df3bc54dfe617e5692e062df3950ca075c32cbb98d2a2d47", + "regex": "(?i)^https?\\:\\/\\/1\\-websalope\\-com\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b08fae87d2c4b98de22717d1ce9d869ae5513f55a32cae351a1fa8f6572e61f0", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a1d5f86013e201b7a7c105658e27271f2c4f9521688dc564d2ab9ec0397a76b7", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "095ed9f84cef34fe14a43c406e1004cd9a3db9e0eb0751b711557d2cf0618108", + "regex": "(?i)^https?\\:\\/\\/websalope\\-cam\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "705ffa0d58f47ff4fd23c18f99611ee159d79c1dd63a38b1dbf00d183a4692c8", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-girlfb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "137f7d505440aadd557d078a3f4be3cff9d17a9661af917a45828a389fcb771a", + "regex": "(?i)^https?\\:\\/\\/hazlamajwabna\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c162fff74dba186b99677f0bf320b5074d963821ee7ad930d4489659fa1960e6", + "regex": "(?i)^https?\\:\\/\\/verificationpaylibfr7\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "be5c1c5ca23227675a75df232d8d8bfece963ba9e77f894bb58f2a0efca6a37f", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "90fb6706be94c492c06a4e50e99934519ad933f1d7bf6ca41dbd823dc7a42b81", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "81e1605b94327202c2c20fc1e71a829f79aacc9dc16f937b91c567172a0161e7", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6464a2c19569a66c4584fab90836ade874eb026b9b265a504799be5a076210b1", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eec36d30fe2059a15e022d5480fe2018dc677a4db4b9cfafa915162f4a8997e6", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "85d981b2cc68189c1574e1242c4636e2c390de1b0e03832a6ea8a379dfef0931", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-girlfb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d08c3\\&id\\=coolinwool\\.com$" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a866f\\&id\\=worklimate\\.it$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "3743449bce7d85d9bfee3515e5ba4291a4ceaf431bcdddf0bf328532600106d2", + "regex": "(?i)^https?\\:\\/\\/websalope\\-cam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "52a5a6652c76562424a06a4e932c0c8940b1f228d8257da01bbfb42a6be029b4", + "regex": "(?i)^https?\\:\\/\\/hazlamajadda\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "6ee9e08e5f586bdd5fea078b682f3bc373678b60ea5084e7d7901acb8f4c8471", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "65518ee12ac73bb4a009824bf3694af3b4e563ad4ad553c3e3a932692936bd49", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-girlfb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "2463d1d4e26b5dc4acdbe3ebd6d22724e7d684fc611b920c651436168a75595e", + "regex": "(?i)^https?\\:\\/\\/habazall\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "fd1c55f2b924f89ddefe95ffb0cbdcae580c7b78706d6966de2dedeeda536edf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+timeout\\.htmF(?:\\?|$)" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f220a\\&id\\=globalesecurite\\.fr$" + }, + { + "hash": "b435483ff4d64e0f5c6ecdaa304f890b9f9117f1ac73c4d3dc0cda641e465d29", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htmH(?:\\?|$)" + }, + { + "hash": "ef88a1a83a8e8185e7ed702ab8fe92ddb6f7ca588fcdcd052a6132e225c3a088", + "regex": "(?i)^https?\\:\\/\\/cshfree1\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44158711cebb08f6a7c6f049995e56c5b748844b826fff5631af94aeacaf5cf8", + "regex": "(?i)^https?\\:\\/\\/naflinassaw\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "d8262615ef206f6d833afc2335bb03ddbb9920ec59719dfde963fcd4c7809a5b", + "regex": "(?i)^https?\\:\\/\\/1\\-websalope\\-com\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f025200302f983ccaee4bcd6ff1994dd917e972327febe9f8bd7d8024c590292", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "97d52c6b23c2d329e11168f9d42aac839a725b976b9b2b3b69c635fade0f12d4", + "regex": "(?i)^https?\\:\\/\\/rbx10khere\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c95756c8d59220b526e228aa22eede1c8a20a971383c01ab7b0419866b4034a1", + "regex": "(?i)^https?\\:\\/\\/hazlamajwabna\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "504a95a3ce5f28df9f13e962ff706cbc8450bd1c5c72b5bae18e03d4133b0c38", + "regex": "(?i)^https?\\:\\/\\/nawgilamhan\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "ab8888d25e8210460cd8b2fada696f57b31be3e6e7c3e41ab599e4693110b0a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=xfn2FuxR$" + }, + { + "hash": "0b1416ac011c4f89815f6e95a3b50037cfb1da6016a5aac58173b6de2817e1a5", + "regex": "(?i)^https?\\:\\/\\/webcan\\-gratuit\\-hot\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?24cd3\\&id\\=epsa\\-tax\\.com$" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?43e04\\&id\\=curiosite\\-studio\\.fr$" + }, + { + "hash": "864c4e24361bf74ce4f0eeda7b850b945cea215a3dae56d71a4b7ff2d50072c2", + "regex": "(?i)^https?\\:\\/\\/lovegiilrdbuyv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "a82f03dbec00ea5e1ee0266f98d8c55c0d2465f7d5c43a9b00b7d53e190b0e66", + "regex": "(?i)^https?\\:\\/\\/emberwatcher\\-firecaster\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dc38f26fbe5121a6530ae95e0a50ba66167e91f410a42ac5520f44264ffdff32", + "regex": "(?i)^https?\\:\\/\\/amazon\\.bqndim\\.com\\%E2\\%88\\%95pbhjlbz\\%E2\\%88\\%95mugzpztpm\\%E2\\%88\\%95sstjvdls\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gyvvhx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "8dc60ec4226f76ef73e2a9db38659f9e325e0b918ab97b349de831c174890f3a", + "regex": "(?i)^https?\\:\\/\\/emngocanh2k1\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "384ca81473ec15a96020d91af0050c4bbd5d0aa68457f9b1e03b90ac3f6a074a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?20db8\\&id\\=decor\\-home\\-by\\-j\\-and\\-z\\.com$" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?7d71e\\&id\\=worklimate\\.it$" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?12205\\&id\\=btqualit\\-travaux\\.com$" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "da03837e65bd6d857615efc5e5a21e84648c13d42dac82396313cda905c9800b", + "regex": "(?i)^https?\\:\\/\\/rbxtons\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "8bc2d5a7e5afaaf7c95c4ae8acb055d33f27d10e4ea5c86f375790054f447bb0", + "regex": "(?i)^https?\\:\\/\\/att\\-102824\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "27043c0de79a79ec5da92bcda97b28ec713e9e17a6e3601e97d87d6c982e7a4b", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgfdg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?a789d\\&id\\=isos\\-accessibilite\\.fr$" + }, + { + "hash": "234b911bde6ee0713ffff7f772055aa82c9d01fa360e1d48e4f6c96a63290474", + "regex": "(?i)^https?\\:\\/\\/robux\\-suiu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bd60ac020c9ddf727fc687c3dc275e1733bf8c3c06fbf175832af06fc6ef90e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htm\\%25(?:\\?|$)" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?05486\\&id\\=muriellejunquera\\.fr$" + }, + { + "hash": "b14d3244fd14b7a2ae137ad5c38cf293a02088fe49f8cf3679e5e664897d9ce2", + "regex": "(?i)^https?\\:\\/\\/emngocanh2k1\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6a204548cebc72e625dfb358bc232718045c61b5dd07472651a0b33466b4f0cb", + "regex": "(?i)^https?\\:\\/\\/websalope\\-cam\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "3c20f6bb0d251444c0d1b0e783ec3e01de89781fdcc565e24b39b03f0f47936f", + "regex": "(?i)^https?\\:\\/\\/video\\-hotgirl\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2fccfc57fdb236d4026b773df80c64085f5db0dbaecb7774ebe954bb3eee78c1", + "regex": "(?i)^https?\\:\\/\\/websalope\\-cam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "19a97c005ac3ef3bc4bb4ce0b1cf9fb21d08a7f40cd0540260fc6e173da5eb68", + "regex": "(?i)^https?\\:\\/\\/robux\\-50k\\-here\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "9658a040a5cd0459c275047d02bafcbb05e67ce59e2b1917714a2792cfca576d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soft[\\/\\\\]+btm\\.htmH(?:\\?|$)" + }, + { + "hash": "fc7568176237d694926b0b927c6546ac48f1c44abdf06f8366f6aba6f2cbae85", + "regex": "(?i)^https?\\:\\/\\/whastapp\\-2018\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e8cc9a512c7c71d1dc2615dc1560051ffe40d4b623d0ab78cda84b83741e319e", + "regex": "(?i)^https?\\:\\/\\/hgeqhgbeqahb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3f164ad15f3c21379cf86eeb5eb3be47214eac6083091c7fa047670eac5c17fe", + "regex": "(?i)^https?\\:\\/\\/netdfghdfgdfgdfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=a$" + }, + { + "hash": "e9100b78d00c7ca4c695151e31b44f19f0cde046fdea39c75b99ee45500ce7c4", + "regex": "(?i)^https?\\:\\/\\/finjalmianka\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5ee7678002e08257b1818fc8e8f9cf3cc2235c37c534819aa87e36dde2138377", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?83e7a\\&id\\=ayudaescritores\\.com$" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?e37fc\\&id\\=acheter\\-louer\\.fr$" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?0ccb5\\&id\\=worklimate\\.it$" + }, + { + "hash": "ffe26a4b40475a6b2ae2176be5bbbe62283f8856c28a0eee164458c1bd836034", + "regex": "(?i)^https?\\:\\/\\/fortngame0\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f26c34f874515676e777d3402781313b39a8ad0004b304852587368617143674", + "regex": "(?i)^https?\\:\\/\\/faraneynews\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "705e7096e13ba8d54519a2eca486246a648634853ad0ff97df81e4f2e36fb75b", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "65d0f767dddcdca8fb7407411db09b34b6979ecb191a31b7028a8beaed99bd8a", + "regex": "(?i)^https?\\:\\/\\/todaynewclipzz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f4daad6b26ea46f4c8752880bc7ef470669d402be95f81d7baac79bac2a1525e", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b73ccf6cd7135be257412c745abbe21269d0a3da20132cb967e38a15745b5a82", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "deb60d0511a64bf93f590d5ab2ce0e04bb6cdbbb73f2ba7a5dcbbc584e7310d9", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+bafybeigdt625aev6svvzvci5qbq375cuccqwizoo5xou6cihy2alhp2vdi\\.ipfs\\.flk\\-ipfs\\.xyz[\\/\\\\]+sabbollNG\\.html$" + }, + { + "hash": "49c04ee19bd72ec38ef31efa395c855d9f41fed50a0335c187b3f75fad522e38", + "regex": "." + }, + { + "hash": "9840cf75560b892c872b56631d267b38c59a142d1115075eb14cb55b4f6ff9ba", + "regex": "(?i)^https?\\:\\/\\/govoteoakley\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "51b81bddd39e5d40a6954717b8c4cd93c9fb141997192db2f251d3f8cd31a1ea", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f41f2ac8fb5a861ec4fb23cb7495f67fb0eaa0cce45b847edec9f6c51d851b20", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ef93c8a22cfba09f696ed55933098a094a3a8726e87284cce24166c7ba1b8d28", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "71f1f957f301466569f4d1bceacb12c279e5814e4d6d092c07a2ee628161627e", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fbafybeigdt625aev6svvzvci5qbq375cuccqwizoo5xou6cihy2alhp2vdi\\.ipfs\\.flk\\-ipfs\\.xyz\\%252FsabbollNG\\.html$" + }, + { + "hash": "842949e599a988443ad7319842a297c287981c1e282c8c00e96d0dd6f906a51d", + "regex": "." + }, + { + "hash": "4198aa4e4f2f7a700d5d32b08369d7ae86cdbb144890a229bb33d4bff4aac018", + "regex": "." + }, + { + "hash": "e0ba5589541b366171ded4efec473073e68957cf0ade6bb4171d11ac004d766a", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ae6e3d626cabd83fa68bbe9e86a6e8cde366c772ea5ebe7be7aa252d4d7384a9", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "aabcbe11a2d02e8443193e5e5beaadf25879bc7f0d62f3e864cf5ecf29395397", + "regex": "(?i)^https?\\:\\/\\/todaynewclipzz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "026f1c67d1cd0297c271dfa473430fa2efc2790a14861c29fd532b68df943878", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3c239afee500f5123090dfe5c49795e33d95cd27a5266a4ecced0b1336632405", + "regex": "." + }, + { + "hash": "9ac6d1cf0ed656fba6ea95ab622b30ce8d85e6ec0670cdf0589089456cec37ec", + "regex": "." + }, + { + "hash": "b0443cfb6f543a17bd896d8b223ca64cea1adef331b3c7e2053610017f7343b3", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0d2b2f8e361652309e5c4e371e1878cef01b5cb8525ef577d5a9a04f27c93111", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "da1cdff16d5bcc521536328ebdb595d56e2e94cd7be977bf77d47018cc8405e3", + "regex": "." + }, + { + "hash": "b5fef6dfadcfe95719e0ab32fb4cde8ede5af63757624877085113c451e0fca3", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "30b869b07114ee2b5c106254a7f34a8a1092f2273d2b75fa77736ce41bba0398", + "regex": "." + }, + { + "hash": "8ee057254e582ac84342b2952d32c8b3d90936b0804954d9f2c4ac1a0d5c9178", + "regex": "(?i)^https?\\:\\/\\/xcliptoday\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e3970a9b57bad7cd80225993284a45555cc7c0c61c6de9e4faa0e74a207a391d", + "regex": "." + }, + { + "hash": "63ea3b5cb610d057d595ebe316d8b7b54cfc634283d88dab3adefe42feba90d1", + "regex": "." + }, + { + "hash": "c579ef5e6ddada80949b4d5a7a451d45f7a294baa584ae4138f5b936fa7b2dcf", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "051777812150af29a218921c4e5da57234fc6e01a80fa160fc884e23c0a007c5", + "regex": "." + }, + { + "hash": "23ef7ccf5256099f5aa58f672909133d92c591cf7458246bd3faa494c1beaea5", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9fb21505ad8289b03cc16c168fd967a2d11cac7e9e8288687b2ade319d790235", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?CC\\=1\\&bn\\=35405429\\;cpdir\\=https\\%3A\\%2F\\%2Fsolariumdigital\\.com\\.br[\\/\\\\]+ce04[\\/\\\\]+$" + }, + { + "hash": "7c35d7bf7bb69d1345dbd09688e7ac26954855e400a6bfe5897c9a6e5bf2d608", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "70de0767f5ae1a085e0e9def977b8f96a66894715c74b224d2ab5c38b7083bd8", + "regex": "." + }, + { + "hash": "cd211a6b5fd2d177e59578ed283d3d68c85e9ab94d1b1df9835af1e89421e62b", + "regex": "." + }, + { + "hash": "93c0c5ad64c4471235e59a73504127d7b260cd4c7adccf987c999a823a91a727", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2916a8790f5d20492b1eeaeaacbfb5ef53717d370fad795edb21c937f0657826", + "regex": "(?i)^https?\\:\\/\\/qarhgbqrahgbqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9fb21505ad8289b03cc16c168fd967a2d11cac7e9e8288687b2ade319d790235", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C[\\/\\\\]*\\?bn\\=35405429\\;cpdir\\=https\\%3A\\%2F\\%2Fsolariumdigital\\.com\\.br[\\/\\\\]+ce04[\\/\\\\]+$" + }, + { + "hash": "550f4fcac75c54e82062f7b0409a24ad3e9ea87b1d2f2fcfc0cbf3caafef9fe3", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "df570556846dac15d606e81b3d3f2eebf69b457348acc047fac53c670d4f94cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s[\\/\\\\]+d6cxCjQyCQ(?:\\?|$)" + }, + { + "hash": "35e20a4d280b29bbbb651b7214dfed01f56b1e1bccb6e3ff9433f721794311b7", + "regex": "." + }, + { + "hash": "beab70584e2965608de73fe7855b5177c1b395e08863d9f91d5790230218f0f8", + "regex": "." + }, + { + "hash": "5c33a7d7c929a0af4ded3695b749b746e9d6b25a7cb0190144f9ee114037ceb7", + "regex": "." + }, + { + "hash": "f74f8328feda84cfa7627c5230061b1825f95d0abec969724844d478fda7b1bd", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "de8c3c6153ad296dcb543ad5b205e352ca9081e9effaa0061275b1927b9b0367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "3627660c1ef98a32fe84c8ad93218d88550fa23ac596bac726f3de6cb7713f7e", + "regex": "." + }, + { + "hash": "1d70201311fccfdcacbc996d704c7bbc8ffc0e28c703b20e882a677b3ba30227", + "regex": "(?i)^https?\\:\\/\\/xcliptoday\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "90d18323b135954b2564619efa9af522043cc57d7ce71ddfbe1add824131a06d", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a3b7e066be1285b5d4e88ab8176bb60017a2927c8c448ba50d86b6535ce3c1e1", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "11de5011df890499cca90d8b81cdbb75562abe2ccca7546ab488f80556b66263", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b58369ecec87934ca1554372943be30c4323cf6bf24ffdf44341a52c1b24eb60", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d6991bb534ff2fb548725f9f1f11431484644ca8ac6e26484b6a0b152cd8de43", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0a2f446ec0e5389d48d35cd7795e4a708720c011b7aab1f323c8082b1e49ee56", + "regex": "." + }, + { + "hash": "e818be5049d07b565e9660c259cf2416377e5438a52caa7d90776675424784dc", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0cb2728b4c9e62ad588c0a86b4348283ee155c815a97c80a82cc24864c6b0378", + "regex": "." + }, + { + "hash": "49aacb12020407f70395538d2f0eb899626ee30fae4f2f7853d0acf024cd4a2e", + "regex": "(?i)^https?\\:\\/\\/monopoly\\-rolls9999\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d541bc8f388725fb26343dbb2f73a634e84c7d618da49b40d52f084761e32fba", + "regex": "." + }, + { + "hash": "f22ab4c28bd873a625f47d81ae1d3064f65e4712fc19efcd51ad763e7e2b5b88", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "24bfb0767ec6294454331ae73d4d14d23d5ae3ed49525a291008f9c908622e53", + "regex": "." + }, + { + "hash": "a73ac0097219f40479574da06aebcf25441e8989b7e5de503139e22af71973d3", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e1fe77b91c527b5b34060f154effffe6e3c10592c299ea8106f7ffd733d79d65", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4e6d0b39d6c094139a794f1ef7f601beaf355cdb8754c1ddbad5835e3525605b", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ce93dcbb7839b1117f58aece9b5d9a181a8a612638bff0a2b7eba5c304b712ee", + "regex": "(?i)^https?\\:\\/\\/govoteoakley\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "24240a32ac9cb03dbe35854ec4fb2d62546c36617417ed45c036486a5dab02a1", + "regex": "(?i)^https?\\:\\/\\/qarhgbqrahgbqa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "993c0c443f8f9aac2532490f7ba32763f6d37330d42273e3bd79b8498f5d3cc6", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "32645effb9dc97ee5d026ad52de3d0f427d3cef3a97e25eca4c042e3c2d833c4", + "regex": "." + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fbafybeigdt625aev6svvzvci5qbq375cuccqwizoo5xou6cihy2alhp2vdi\\.ipfs\\.flk\\-ipfs\\.xyz\\%2FsabbollNG\\.html$" + }, + { + "hash": "e6b27d52dcb1e82381a553bccf4915b2d0b88a979fb41b441844975c8a795612", + "regex": "." + }, + { + "hash": "9d162741ce0d4a1d8f24174085799c54d2ae6a3e5cce412b11848f95fb50a26e", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f4d8c8e2f9688cf973c1362da274786145693c63da78f9f6c59c560f6c985608", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9196a5ad39907e4b2ecb6d0b231e371dfcd5a4be5736ca128c0e5320724cf3e8", + "regex": "." + }, + { + "hash": "bd299481745c44753fe54a97888e59f53bea83ba64efe6421f2ab5d51b05150a", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e4b6609c5ef6c5e9bc909e79c53a678fe7f5f242b4b285afc2851cfbef9d80f7", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "816fd3f8d593a080ff0350268148d3a58b244c24e14c0f66ec6ae3ed739201ae", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fdf6580522cc63ccaff7f22edea31f8597aa37cad2b0e8cc587198bb6cb168c7", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d4191b735a02f84401254910820b38a03fcb11abda7930dfbb548831b31f5032", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "504d42543607b823acfcce1e2af650a436389af7ad30acf049fc874d40ac2d03", + "regex": "." + }, + { + "hash": "55f152e2b4ba7c1f3e64ca44104cefcf33601172e015eb4df248e2315edb518c", + "regex": "(?i)^https?\\:\\/\\/monopoly\\-rolls9999\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "44657813357321a0931fa1c9cec71220a18a7a3925a321802cf235a730fcdea9", + "regex": "." + }, + { + "hash": "b9febce7d1754cd66ce33f003329e747c1365cf76722c9a90719af7347420196", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fb67084f8105a04bc5243e4eaa6eedfaa5d6f41f6d620d9a99012e9f58038199", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c6c331a84ecfb1f55d71e20ec990d01da6d7716fc1dae86a573ac1123cf05ebe", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7bc7cc9849d74a8a188d5b145b9b78eb4f652ce107eda083eb5b21265f3005e7", + "regex": "(?i)^https?\\:\\/\\/pub\\-9e83bef56c7f4d2182d4494e82c5b645\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a894d97055629ea3002126e54c61c7fe881707a9d911dfc1cc189711f132e343", + "regex": "." + }, + { + "hash": "ea8352a96193d9ab747497e027bac35ffa59db7475dd9a98f938ce2cfb032b0f", + "regex": "(?i)^https?\\:\\/\\/qarhgbqrahgbqa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "776ee4a5284da9a6a23160fa8d42cfb75d6f6cbb9f21c8605133571aa84d1dc2", + "regex": "(?i)^https?\\:\\/\\/monopoly\\-rolls9999\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "de9ac8f1d7d8df9e3c3e4682931513159213c00e4bdd229a1af0cd91571fc304", + "regex": "." + }, + { + "hash": "f26e9eb13acc2af56301c06daaf6d7ba5e71a4f2d511df4252705ef3b44d6d5c", + "regex": "." + }, + { + "hash": "01b925dcb4a943ee3b7e9a0c01b0515047750a4fadbb6099723ab83591870fe9", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5e8863a17be3e442d5183b566adc08f6c2749ce3a480cee56167e665322e9982", + "regex": "." + }, + { + "hash": "cc90150752f81010f0812d3cd841f785a23dff7a390c0aa90c6a78f7f34999b5", + "regex": "(?i)^https?\\:\\/\\/qarhgbqrahgbqa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "551e195fd7abc53bd1e978c3fae7a209dab27b41a178ca90e80ad90653f63250", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6f54733e0c221851aa00e59d5beba34853be56d05c76e1cc92cbdc6e2ebbeec7", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a68fbd452193bdf5eab57442f8ada467687588239f0cd224a707eeb8f637a4ad", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "744748b7fc8f0e4591c5172674ee5776ea74a26ea307fe6c46469de5c800cf8f", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "914cd1d50087207806b39d88bbd462ce1a1e6da61fdb65d2b6b79c45ed48c1eb", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "00bd15ed97f1b09a26513377085134a77e456d251b95c0c6a70f0be6cd39ad20", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "628262391a624b6b4b01ff80680a8e9ecacd160d004596f395ebed19192b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track[\\/\\\\]+smartlink\\?smartlink_id\\=6\\&publisher_id\\=89\\&network_id\\=1\\&click_id\\=24K16111740A042294033083YXKwK\\&source\\=42294\\&subsource\\=undefined$" + }, + { + "hash": "ac6b7e03266e60213daca22c5e6ee1f2147f2a2e5ef5d51ed454dd135f4f15e8", + "regex": "." + }, + { + "hash": "9ed0a9cb0a36d061842e4175019c0c33cc5de73ebdce1ee6ed664c07f7ea5bb0", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "de8c3c6153ad296dcb543ad5b205e352ca9081e9effaa0061275b1927b9b0367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b01d64f166c97a636e55e0a692df4f08b926e50a9a335b8147dfe3f3799886d9", + "regex": "(?i)^https?\\:\\/\\/qarhgbqrahgbqa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7f92ae2b32559d1394e0a212f19084ca2f366cffe1bda438f3460108e96246ab", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7165feb4fe55a1b9618a30ec840520490bdaa742e20615641b4f4ec4ca471fb8", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e0bafb9c2ae8275b4dfb4f4d213fa3c6224ffa3d962696fa9fad260206507ee3", + "regex": "." + }, + { + "hash": "74278cc6561e46c71211e2ca0a381cabebdecd544913f50d5a58ce201eff2a6f", + "regex": "(?i)^https?\\:\\/\\/www\\.jshbfg\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "55f1a33cfb75be07600758a5609d06bb1c5a8a8c4457f034de88ca64aff85012", + "regex": "(?i)^https?\\:\\/\\/monopoly\\-rolls9999\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8af412a6d8e13145c94d6e2ab290874375c143df390352025c132a6c40a04d95", + "regex": "(?i)^https?\\:\\/\\/monopoly\\-rolls9999\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fb3a95f0ba962a9f8c0d12eee3aa8fa7e4abc01da189eab014b3ff5c0d55fb16", + "regex": "." + }, + { + "hash": "4751897e3ad775b76cf0e9681a9aad5f828ff4db8324af71b5b9f44ef6f7d0cc", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "95e70228ff8ef02853beea9ca99d30619f315ea508ab9a8379bc993049b90593", + "regex": "(?i)^https?\\:\\/\\/xcliptoday\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ebf253c5c5078e359f3976a3076f65e9a0d89c1a6e28da017cd9e33c219a8450", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4c02f11dbbf7a4fdadb67e7cff098e18acf72dafece4ae8264b6679be68de0de", + "regex": "." + }, + { + "hash": "aa90256dedbc5c0dcbf80ec76f3ec6e548667cceee0c1784ae2a2a5f8cc5f71a", + "regex": "." + }, + { + "hash": "c16293879d644074bba993cb7f6a65bf2acb04643018ab7072a5697364d4e1ca", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "aa0331be3a629e9d737c2d5dcd49ed4b4adbbbe7d3a8c49d9211d66291417119", + "regex": "(?i)^https?\\:\\/\\/prime\\-accountcs\\.24\\-199\\-122\\-181\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "470b0b6a3a89d85299ee99fba822c2a3d2b6b1f56debbbe7eb9f88ce7014631e", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d344c9702ae90045175cdc856a91a2a6099500d7f7158862b8edd35bfa8fcda0", + "regex": "(?i)^https?\\:\\/\\/govoteoakley\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7d2cdf6bc356a57d372301bfffd3f360e49d4475481aebf1c7a89e37e895ae78", + "regex": "." + }, + { + "hash": "2503dcd02ee2f2d519c2f4ed60ccd79e2064eb789282731148f893edf1106854", + "regex": "." + }, + { + "hash": "049fc37dc5ba5d12c65623a61ae34ff8ab9104c97d74529c93bfc486cce3a397", + "regex": "." + }, + { + "hash": "2f273537085f7d8a837c984af0ccdb60469cf5d5fcaf331aba07f295b9ed4aff", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "44bd30ef611e9149cc4aeaa706fad22b04b19ffd962e1f24948d9d01f6664c4b", + "regex": "." + }, + { + "hash": "93bf0dcb28312523113fe7b0eee2c51ac81c8e2ff0a5d2b3ca7ec70e1cbcf9e5", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b25bab3225b49232987458924da3519466e5290f54e874659f39a09997fe2d71", + "regex": "." + }, + { + "hash": "fe39be9fc58d3aeac015c02e9839b52d9be5039eec191d5bd6e31ea5e45d365c", + "regex": "." + }, + { + "hash": "311a6a390e1e9f63f7eb199ad30835946abf90f5b4bbd501f49a8459f9e72095", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "807d5e4b494304bd7b03718ac293a63fa20fd80874072e7633bd368afa6b4306", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "edb31adc7788831ef6280c4b18926209f63c746764714e7bb0bb9701d6f1a791", + "regex": "." + }, + { + "hash": "0fee9ae90e53562285ff96ff1f123d83565cab886eb834681fdc543578c673a4", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ee64d2a54755a3f34e0d488d36efa38b5ffef038aa324e156a03f2a987ae1928", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0c5f9689a6126060ef68517e4b7ede8d91cf20046d09f14592ac7010dc4214c8", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a0f9627c5d856674776dbb41ac4296dd2a03e57313e9d4ade58e6320962690c8", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a28441b47e9ae2a10b5a2a71757b5a524fbe771794537e20e739a9a71ee8bbe2", + "regex": "." + }, + { + "hash": "f70dcb3b9be9ff1ce1767a2ba037ca4227ee385ee208174b04080326e45ebe14", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "337cebebf35415eae15556d0ac3a9f40b99e946abc72b4103bd381d5bd0f5c05", + "regex": "(?i)^https?\\:\\/\\/govoteoakley\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f5a0e012d6dedd54eb293dacea1a6cfff1d3f64d3a699fd7562ebd0d473a944c", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0a411c35f45e9569b3f5ecd04651ba238407400476f673bd1eae8614668c6b68", + "regex": "." + }, + { + "hash": "539cd0cd64c65a643cdc3ed50e61bbde2a5a087e2ef7d96d2c2694bfa13fcd99", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5e3446471b1155d3b55f0115f79a89bf3459988d7d35355caf9956769ad7fdc6", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d6d85f1fe6f215cf8b00597f4c55d4c6529133c7ea58718100d99341ad8b43f5", + "regex": "." + }, + { + "hash": "a7daee1dfec72bdae10bd8fccd85486e5aa4eb4e3733ce9ef2a21c403d31aec9", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7ece21e2383734c3c5849cc36658d06951a972713325c6f6dfe3d94597d9cd8f", + "regex": "." + }, + { + "hash": "0fefc96916999572e6cceaa31a74b9b5021a4b9506a3fdf884056358a4fa3f93", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "83f835e96502907d1c22e65ff516a3ccb60c2412d3932c12dda28ccc590bd447", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9e3ef7d7a7032acc0ecb50e96b9f4b237a8074bd5fce570650c284a8dbff52c0", + "regex": "(?i)^https?\\:\\/\\/todaynewclipzz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b02b242bb4788d23b5467a535300311e46902a5be001af3ce79a85113a5f1b9d", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "449a5d447c76674d1efaa462a3ea7f93b64d9f7bb6a3d380f14ffa6592d30f5d", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "473ef9eea34f5a4c693f09e3d8280b4566a646f2451c0c3cef620a2f9a3c7fab", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "897d342c4f9e627c7330600b7e9d10c1859bb0d5b6e714e5bb9932064174a68a", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3a289561ff544cf98d68caf2d239301149331439f6e466a6be07c8ac6ec2f12f", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0f13cf4db2cb94cefadd17f9613d41a0cf2d1cbc47a42d17e19f13c28daaee32", + "regex": "(?i)^https?\\:\\/\\/8afk\\.cc(?:\\:(?:80|443))?[\\/\\\\]+ikos(?:\\?|$)" + }, + { + "hash": "6f5e284ba5841a7d628405b0c9c30f88de151be471d4931854482504d3737734", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4943f94b1a91d3cbdf2293ec2ad763a2d6207bfe58afc436cff48b6e170c31fe", + "regex": "(?i)^https?\\:\\/\\/todaynewclipzz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3a97a4f15db9b32cb3912e7b4fa0b176f209e423fbaa2d12d5a52c434814e4eb", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "13be533c6873ba1dd268c851358eda06977f6cdefac689fafd3d65d97508de6b", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "58c009d018640528ba368c0c587d6b0b24258a16a6dfba2eeb1987d352b47194", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9041df1b91f9bbf142d09b4ce1b01d0fc4b033f6f67ed7c3a3172b12c51fb8c9", + "regex": "." + }, + { + "hash": "58b2c05769c204c394179668ce7fc36a4d6deb088e31a3163257067ff6ed3734", + "regex": "(?i)^https?\\:\\/\\/todaynewclipzz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4bcf36cdb127641f49000a758976c821d5f49c4a6ed65eb5a906007c0d39b651", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62b0581d6e8186a69f5242d32738507e145e35c972bba8d5a665aec3b70c2947", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "640632a8913947318fc4311fdc62251117159f85544be69c167dad7e935cba2e", + "regex": "." + }, + { + "hash": "a167a748fe20a15d63e12949008b796d86e58242c13bd3486445104040d0a0e7", + "regex": "(?i)^https?\\:\\/\\/xcliptoday\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ecdcafaffb7b4d15d9e2bf4872222dd7b66a3f300f8c6e8228146534c2b6f8b4", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3b38496ec47e08f9792e5d6f2ef87e67aa138a297280f4d027efe046e5a3d745", + "regex": "." + }, + { + "hash": "7dc07d1c05c870508b38ae32db61daccb6325ee56d66c7738a0dc6e54419d449", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4f2bca657988ba630669e27a28a92e4e89d77f1440712987a60fcb051703164f", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2704c0f2b424eefb053713e9f904f2b59caf6a9a62fe6df49b23b683ab8d579e", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "acfbce7ddb7ca7a5c780bb6ce96e5a182047c34e56b77359c0436efbf9f2e879", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a50aec2df1b22067d7f52f0b396f235c5b398f9988df84bd29217f01832198a1", + "regex": "(?i)^https?\\:\\/\\/govoteoakley\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6a6d19d74df3ef4b702cb955447352af754e8c95ac9bc430038a8f60ef8522f8", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d33ae1cfa099a5b0894f358ac4924bbde662ffd2876364a19c29944dae50d", + "regex": "(?i)^https?\\:\\/\\/ddmgymhf\\.64\\-227\\-108\\-172\\.web202\\-162\\-32\\-234\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "71df349b2bb3923491c10d8e15dcf049e8df44f273e1b981a9b421162bbddab0", + "regex": "." + }, + { + "hash": "f7987631176c3501639d1f8b74a83f229baf50bdc394893a7c32010b2246d930", + "regex": "(?i)^https?\\:\\/\\/monopoly\\-rolls9999\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4c43472041d7f345a0ed4a5be017e8442dfa48f5e225a937de1fc0e97c3bb981", + "regex": "(?i)^https?\\:\\/\\/qarhgbqrahgbqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "51735167b6e1833cb5997aefffec737e2fffea4d5e6ae8c2d14217acf4fb1897", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0d114d259bf1da9318f90066800c5854ae057eb9a30307bbd062954cecad23fe", + "regex": "(?i)^https?\\:\\/\\/rjf1ae\\.webwave\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "df3a71fcae1db89413f24adebc3a5c5c07db3728c05269e2a55b291def9bbe78", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "482a4c33d089837358dddaba94c443180cc67a58a44e7bfdbc5ca8fe99782c49", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0977421aa0d8f1d0e5445b6b2efb774bee7640b79a1cbfbe9c39d9b5e9b89d28", + "regex": "(?i)^https?\\:\\/\\/xcliptoday\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "85fc9a25446b59d899752657528cc8a930eb37b6eb45e81b2c60f8667e30975f", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9a50a45a531169a0fb01bdaabc537b1b9de33415e54a829b9031e6d5c61ddd92", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fd03fd39803cc4069a3678b3fab322ff9c9ca6becf847b6e62b646767246d6ec", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f929b7c15e6822a29dca59dfc73efd85caa6b4efde17d677038c2a3509282fe9", + "regex": "." + }, + { + "hash": "43bfe7f63ffac02f56947b037db01afe748b053a23fd56c0d696ab4ae1f59ee4", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fb1babb1cf1381df8883844195bed45d00fc1e5c446a7b2d807de8e20cc269b2", + "regex": "(?i)^https?\\:\\/\\/steep\\-bird\\-5680\\.vorzohorza\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "39e1e32d96961cf24b9160af08ef31aeb83a5830fc9d797eb50ce5bb6377472a", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fa28e69699d141e815643ff2cedf103c2b9bae443ae7effb852e6b18ec434f7f", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d5fbb17b8f82aa6c687650b1e9c44fb6a9c87f537d29cde5069954ce5aa234ec", + "regex": "." + }, + { + "hash": "d0291063a7f8b3163e8c39a62cc8082fb0b17a1925501625cdde64ed4a1cb531", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "80e5f340c662faaa9cea5014d63bace69611fc4d6ba8369310b53f721f301cc7", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e80ccda8d4bf77927ab0d332910724d8269c38ff688b7d31b04e65b56839ebb6", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0d1c8bb29d9dca3434e6f0b594c8b1e9e49d777c86ad38854d14c59b205fd41e", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "449e07765f56575628abacee21fc882773c1263ee0f572ab801b02f3e1df0b97", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9dcaade7ab65360c2df546e5f0611e89d8236125c7c515122f2a37a5fbafe7e2", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "60fceaa82950068a7d6440739f92cedc0426fb0e561962fd8dd5d6430b2d33ad", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d23bc54bbaacb7b131c4fba1fbd1ff4b4b4c1892b7632af35855e2882bffddc3", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d1473e2d58691894760bae1d563d91fbb9f9fbf40450da54bc0069ff45f3a9a7", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c760f192dd7d6cd9c80fdd924282c972fcf04521caf241fc9ce93bc1f1288ade", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "853c11f36eb6e0b04efd5610321451e3be2c64424abd4c44381a2f640f822ef4", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1be08d860d7ef6ee31e086931f4b799cc6ff97460f79eb1c346dd2446395afb6", + "regex": "(?i)^https?\\:\\/\\/todaynewclipzz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7b6dba5b758ffcf25ef0478e4ee4f848aa368e470e357d6273b909c34d3afd95", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8991cf4d73355bfcd3afb7b11373bb8425d913e1c8ad7d4f2aa4413822646393", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "de8c3c6153ad296dcb543ad5b205e352ca9081e9effaa0061275b1927b9b0367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "408b103e420a5e45e5b174a7465de0591076019281c982b498b5ffb361eb2a03", + "regex": "." + }, + { + "hash": "1ee5687f5e5de2d7eecc11be6f31319661b592164ae3f97599bc00d23a577973", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ac70dd97829bfd3a865d128e4c750600829fdb6b949be7a1d0a6482ad20f255c", + "regex": "(?i)^https?\\:\\/\\/monopoly\\-rolls9999\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3734881aa24f8c6cb9d801d529d4b3d1f5f5de254c12d8020b2b2b04fd39fe58", + "regex": "." + }, + { + "hash": "4c8a8bae8c45b853455f2762e98b27e8343276ca21de3b583ccc41a2a4ce2e5c", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a83beb6a4d7b067559f8b144f88c5a60f8f1fc2c048ad8bac5f234d70cf7c881", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv1\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9db2078e5b82840af9a35f61f74db3995d79ce5552e3fdfa5511bf073b1557c0", + "regex": "." + }, + { + "hash": "825b9bee9a8e56d5ee61e17bae9b21bf91f4e86c1524d76252ed4064b15a75b5", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4fdf16f3b30e84e3b2e0ea9f84a4e5c575669a9ea667966b3f3bfa3a85425edd", + "regex": "(?i)^https?\\:\\/\\/govoteoakley\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "09022a13ebaf4de47e53ae929c09ef8cdaa6b433223d614788a388cfabd952b8", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5adead59c3f39e40fea8cf4503f6ea8669be25d83d1b3ab63b2edd2044ca99aa", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e227b8452b8244ff66bad6f23f6c9a2fa689ed4b708726fe2ed923a6d158bbff", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b9d1fca8c2d4f70860f204093c2232d1d911f8e84c63bcf8555aba294decf6cd", + "regex": "." + }, + { + "hash": "b65cf81bdfd85ad42a5752986f6e1e769d23c822898db5634ace611fabbb45c8", + "regex": "(?i)^https?\\:\\/\\/govoteoakley\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5ca251539512c8bd6c31dae64cd310b85799cdbf00203d2c4997db73d25f48fb", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "028022d465d844edc201080f8c2746c2915071a7c8a1749bb1b5409af560ce72", + "regex": "(?i)^https?\\:\\/\\/monopoly\\-rolls9999\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ef9607a75fdfba91b2f45f72cefaae0d322a7c83894fd5968d06d83b2942f030", + "regex": "." + }, + { + "hash": "d3d3e34b81baa4f87c93013dcc59ddf6e09fea42082dfba5bb08cb22ed5559c9", + "regex": "." + }, + { + "hash": "cc91c1d02c3bfbb5fe9791e2fcbd31d90c0830d47449329ebbb1635caea63fc8", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e55bd053b3ba8e1de2b417f34a3548b95d118f8b76be7473d5ecfc14be4a0997", + "regex": "(?i)^https?\\:\\/\\/govoteoakley\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3949d56be6b2c6f0bd8c1f3785ca13aab0233bf5a0ec99a71ab8c897f2f019fe", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1513743d87039b6c9731db0ac7b3a55fc1355777ad8132f7306c1cfe979703a7", + "regex": "(?i)^https?\\:\\/\\/app\\-page\\-mainnet\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "29ca3918e5976b1c5f84c11c045ee49c2013da0028fa7267a092a5a2748104fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b69fa2d2c6a909c084d2c7c6f8226f62c811a82d625b4096f8c217af37837493", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "32b54dbacd913b359a5c83c284186e87901f297632927130f3e13a8182b2d777", + "regex": "." + }, + { + "hash": "9e86f7e7ceb6a9190aa76db777daabaff8cca400395cd064f28bdd67b04e5c38", + "regex": "." + }, + { + "hash": "0c5d85154481e4675ae81a045434a585cb2c8930c99733acdaec82b1adcf8f2f", + "regex": "(?i)^https?\\:\\/\\/xcliptoday\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a3e39a0837093a79b8ef33dacb0ffab295fa06b98674d4af4f8208b0b0af730d", + "regex": "(?i)^https?\\:\\/\\/qarhgbqrahgbqa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "435e4bc0cd5d47be4922f071643e14c0d7e8bffb3feeff4b620c915cc4fb5e55", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f5ed9a1886d39d26bab5ed91404ea66883c10272d4fddb805594cdb0ab35d211", + "regex": "." + }, + { + "hash": "258ef3592f311d207bf1ec47e131cc9eb0b6294b999e82995e5672fe0d61bfa8", + "regex": "." + }, + { + "hash": "2527acf6ef83393117895e9854beca853ed734b64ddce7ebfc62f4cebfa0821c", + "regex": "." + }, + { + "hash": "337c45d64bef4c0a3836dbdb5359e6d0bbed8c9274fbe4f09bb131f2b0afc9ae", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5f2ecec5163cc4ffc354996cac9624756cbab839ed38224aa7568f3e7d54aa66", + "regex": "(?i)^https?\\:\\/\\/xcliptoday\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9ef19c1d39343cc15c2edca0f06d52ea897496c496fe537090431ad214a097c4", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5e0a49c1f3dde3e8deb04e025551d64f95383e9e1be3354078870957b2fac0cb", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "83cef80a9a0a8f7447923901bb7415b804d4f9af7c56b619a2fe79739786ae40", + "regex": "." + }, + { + "hash": "5734a6b051d5f19da153126aa9beded68c69818da341f42227fbcecb3010d655", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cNgOsIde(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "699307abffbdba63b080d0fde7f9a529960b998146f347c4231dbb53a06d4565", + "regex": "(?i)^https?\\:\\/\\/govoteoakley\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "959dd7517959b27451f74a8de2c174e45b612f1414dcbe23c38af6ecbd6d1c84", + "regex": "." + }, + { + "hash": "39cf7369020627e5ad8eb7f9d34ae778a14d8630052366fd156f855df23677cd", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3288e453625e804f79811878151ebfa2737424b3bf8b6e4717ae14f42464ef1d", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "767c628b3ae3e1b94702bcda790caac1675c252804783d62182d118bc42bdb7d", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "33028a5c2e3989fc7acbbdae672e920f90786e08a083d93b69c9eee4d7047785", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "89b4daa5124d1e2310f4f0fb8ec14c605645ee3e3e7ee5fb3ca93f769205c6bf", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f1281b7193f2b1615d650381b5426489aba2a968add7446fc2a9d1b5526b3792", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bfa0d863b232b1a40fbbbf083d23d903f3119ee7900c0731fab1184d54ec82f4", + "regex": "." + }, + { + "hash": "e4cb05ecaf8218d6d7a820e2dabe9a3c5994563e57a223272b41212480711b27", + "regex": "." + }, + { + "hash": "cc4ee69cd8a9e5abf87da7ffa056c85d5a384f21b89661a3f1f7462c23aafb0d", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c79a8d094c2cf062a91599e2d2ad2ecce504d8bb89be38a8761a3040e9bf71d0", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "22d33d3f6d4b4b3c667a6a7299a710d1bb0a02b5b40bb7693e8a5c22f1fe6834", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "20b6fe69ccd498c1142ad99a27531e740ef75d89cd572954a9bb9b89682760ab", + "regex": "(?i)^https?\\:\\/\\/todaynewclipz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d61a73561706075fab81bcf0ce485a9318672af47c43ad6ff5efdd64bc4043a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g10hx[\\/\\\\]+g5ds0cx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "78aef7ab999eac19573853ac88cab9ca4998ddc54223d250ed1dc051052a8c22", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fbafybeigdt625aev6svvzvci5qbq375cuccqwizoo5xou6cihy2alhp2vdi\\.ipfs\\.flk\\-ipfs\\.xyz\\%2FsabbollNG\\.html$" + }, + { + "hash": "45afb6890fa642d618807aebbe6f355f93548755d9c596b34cb24ccf4a4e4b09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?shareName\\=5845\\.b58453227\\.com$" + }, + { + "hash": "659e65101a7536c11076d5a5089a842b64f449e6cbbc4531ef0f9dec525f5a74", + "regex": "." + }, + { + "hash": "c33b0b980f26fdcbef69c2170ca648d342611007968c09c46cdd9df170632d46", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f9336ebe7464acc46d6a177d1b4831f6bc0d6a94b2160e35e9e9832536a15b35", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv1\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "aae4ce37888f15ed4f3946a2d403ec1a88202315c14f6997cc0edf2e634b1e8c", + "regex": "." + }, + { + "hash": "794aed64a9eccb1405a5c99ba5e2314dff673739b14faec5f9835ef3643b9d38", + "regex": "." + }, + { + "hash": "6220acfabaf939aa661c659c910c1c729671082818f067c155f169d8d0ddb856", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a48b24a6bffa33739ed8800714fce918c924fd32b772a437faed94c88762d702", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "1e692d7d4b5676b1a5041dab462918b5fe50ffe55d7bc07a813b2233d22ac120", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a089032269740d58ff743d9b00b496bb769d3c44697dff7124ba6ac42a4c9810", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5ab30d64967f02e9b33879855d04762f6927814ac0361f03ceb7c7030581e05e", + "regex": "." + }, + { + "hash": "84d2976543960d69fdca8dee2f656e236182a1f5b512129a0e927feb527c54a0", + "regex": "(?i)^https?\\:\\/\\/kin\\-0c8b\\.xilih94477\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9dcd4d61e765b3cb84f5d65c714480f360dd7cde48349cf6171b7711cd1cc82d", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv1\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bb43c4d9946d9b308d18e39a39cff328d7299fcaa5901c2efb3e79d11b7876cd", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "868dfe5981461c7f2b1d1c88cbc4b03a9cf1358fc7c0ab4456d82db59e64fc42", + "regex": "(?i)^https?\\:\\/\\/monopoly\\-rolls9999\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7b02c700fae5d7fac61f113ef4e6739499946a14b5ae8adec38a4d8ebd608d8c", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "73decd78fabadeab268cfded29746ec164d9026d27fd4d8f406ae9bcc6bd7e02", + "regex": "(?i)^https?\\:\\/\\/eqahbqaeghqadg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d61a73561706075fab81bcf0ce485a9318672af47c43ad6ff5efdd64bc4043a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g10hx[\\/\\\\]+g5ds0cx(?:\\?|$)" + }, + { + "hash": "d7e9904021b789bcba7c41c5f6f14c7811d2a9883750d53fd173f03c9819fbfa", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a41374\\&l\\=center8[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "dbd253638a4e0740d47ad0afc970dd5058ba7bd33c6b8caa488ef3343c836d00", + "regex": "(?i)^https?\\:\\/\\/xcliptoday\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "317f9402bf6feff8b0b1e42885f11f68f946ed4fcfad3e54f922f409e01cb194", + "regex": "(?i)^https?\\:\\/\\/qarhgbqrahgbqa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bb6ca215fdc4dcbb15f0373e56278ff6ee3b08a9c21d2db6fc32860660472005", + "regex": "(?i)^https?\\:\\/\\/todaynewclip\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8241559f87f558093191eb9ed2ec95a4ab6d11ef0b5a3e168b3389cfb4294448", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "393a218c5f28cec86dc78dcbacbbcbfc99b63ce29b95fb71fb4e6e696c5962f8", + "regex": "." + }, + { + "hash": "3e2d23abc304d76d6746016c93eaa855b7723006851e18108830269d5f07fa36", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7690e8c74490e9da22842e96ba96d1582116e1b9b54e3ecfc39e7cfa990c4a15", + "regex": "." + }, + { + "hash": "2a72974e57de7f40fb815a3a4a76170b0e2668dbc918ea16e9aa7b45880da032", + "regex": "." + }, + { + "hash": "e0c66583919feef1552f43d3fa6f9dd450d9a2b8eac0a01c8d6088e9a495b7cc", + "regex": "(?i)^https?\\:\\/\\/todaynewclipzz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "465c1fb4d8133146876db2bdd8728aaecf3a1cab8f52318a350ae54bfdc5b774", + "regex": "(?i)^https?\\:\\/\\/singhpurharaiya\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8c6d9ce6e9352f720047d39c9133a557d135dceed67ee67a188d8f8c6f497a77", + "regex": "(?i)^https?\\:\\/\\/globalfoodcookingcontest\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "61d884f1100fc466e62c15d525673beca7cf887d4a7d8147fd98087a630b6ae2", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "570ec65764f746aad1e90c63e456badc8b78871fc133571eeb1e42c16bf7ad49", + "regex": "(?i)^https?\\:\\/\\/xtodayclip\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a3c2840d9b1db6f685c21eb401ab19d58fc38ceb18e6b91ac1fadd20c12e0b9a", + "regex": "." + }, + { + "hash": "38a80082062a620a74672f4a616d05cd1a09f1e05d251b8dca262ee0914f4975", + "regex": "." + }, + { + "hash": "368f544d033e39895c0e8e30f3aa4bce6f6b9b31d91bd71650b5b5a233ccfd32", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e6c7a19e76c5269d1fdd19028ec7a48eb04ac0755b45215b07fb2797fba2f1da", + "regex": "." + }, + { + "hash": "45c53481168f408edfe1cb26f3adcc2f916ba4d49d336aff14b94b00780d20df", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d61a73561706075fab81bcf0ce485a9318672af47c43ad6ff5efdd64bc4043a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+g10hx[\\/\\\\]+g5ds0cx[\\/\\\\]+auth" + }, + { + "hash": "317165f90905eaa09fc54c753816a1ddbb051088bf44b8b674f9d870c8fbb372", + "regex": "." + }, + { + "hash": "2f18d2b8f62dd52cf2a190cf0b4e9291c63fa9b99137cd56fd0fac36de487061", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "29ed40d1d432b68b4849f9a6cb6eec2fb19649a4ecc8bb597ee277d6cc85d7e8", + "regex": "(?i)^https?\\:\\/\\/easypak145\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "26a9c303e5c3d441dbf3da8c030487f01cb1c026389c3f1cf44fc0af47a3e13f", + "regex": "(?i)^https?\\:\\/\\/todaynewclipzz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2f8f6a98b2ad90c0194a36ac8f0aa974d275a4206264a4f5347165349dbc8a4f", + "regex": "(?i)^https?\\:\\/\\/vidxtoday\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "07f19a997e0d8fe832e338c66bec5d42796d5037d52ca50f64fde683874443f9", + "regex": "." + }, + { + "hash": "a005b03f18f3bf77588a18f70a7a27e6baacd387e10527b4da5f5b5054487736", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "71b2b2455845303f524d15bb99f465159a304b3c3f275c251e243225f28d73e0", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ed6b4e31725b3c220358f83bf1ffad8b4bc9368a0065cc6d1f812c450aa594f3", + "regex": "(?i)^https?\\:\\/\\/todaynewclipx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "49b70a6b252813e9da31e771a704f188ded333456e9ab02b3bdd10b400ecc797", + "regex": "(?i)^https?\\:\\/\\/todayclipx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1f8de402ad58dc166847932b5adf01e064b41e7d04ca5c525a7417d7ef086dd9", + "regex": "(?i)^https?\\:\\/\\/maisondechocolat\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "e1a759b7036a11240c4a7533527c7646b6bdc0826102f7607f3a0f416c29cba1", + "regex": "(?i)^https?\\:\\/\\/todaynewvid\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e628687876b3cae2252de7d5921e7059d7beb94249a3aa33865b64e9370d3067", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ca58557a6006363ecae109d2725c9d7ffcf50d66b77563bf0a953d874252ee7e", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "642c0e75dc813135579227f202576751bcfa0ce71de1a7643364cbcb474b8003", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "76dd10be7c5b2b3862047753ce3c65e51eef8c6f2be57a31033217d0cdddd1cb", + "regex": "(?i)^https?\\:\\/\\/bnetrfgdfgdfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e2fbfb745b54c53ca441d51dfde9eb6035ff4a45e290aac7e20165e8a4382ae6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "d878ec05580573ee36495c008fe95f4b5bf9d41c24c860aaecf12945500d4e4f", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c46e97c0caa35767d0b72107339b52bf577200e0582b65a681ddf91bfb9c3021", + "regex": "." + }, + { + "hash": "71ebf08ff5d57e2823a6d2b7a00f2890379ea2d009d7249c94129b48546a4107", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "12b47d2bf0056ae56cf4e4a5d102bf2dafff8fba604bae549b54bb8fdda445f7", + "regex": "." + }, + { + "hash": "05c5b100a9077ba490e82cde3cf401d37d9b310cf2897a591c4a5290670a8750", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv6\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ccd54a1b9abb2192dc72a2123cb80335c86285285a0abdcf06114d92f11c2939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "7665de20c3623d49ec09f27b24eaaf4085e32df14aed71abe9cdf29f2825fd09", + "regex": "." + }, + { + "hash": "299941c14a4fe0b6156833a4ff71f456df52517edfb0567580d9bebf9899e7da", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9e95cafbe026cbdc67f6c7155c9722070541ce872cc95d1a000c3502d6cf72f1", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9a9682466aba668a58bf6825e3c3156786595a2233b77a238c6f99347c7f407f", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f2d222eb109ad11e19f350a3f3e8893639a0c7da1243c81cd3d04d78b03b99ce", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "46677d4696b24c9260aee3ad70be21b94ef73b7687b9bcf85cf4598b1d3aca99", + "regex": "(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7507e98d54293e493cd16caeb44801007d8c4b331a8f6f8353a709b42a44a520", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8c1f825a3fe9c4e7a86e72fe918f1bfe8bf952a3aa0089ce482f3b266836be36", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ece4d5c4d6af462c318f3dcf542baedea6d75b4df96bd4d9b8e7264717bc8314", + "regex": "(?i)^https?\\:\\/\\/dorasrdbfbq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3e98f7ebb55b10e2bff40c8f006a5957fe8f4f0124246fc7a62a7cb13d51382b", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9a4208e2a03215fe450731176f57125a84a8784e99aed96aab562acc8bc5ce63", + "regex": "(?i)^https?\\:\\/\\/sdgv5reyghrtyhttgfh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e3c0a573a117af2f156aa9cb1b8bba497e3590dd4ccef8b251069018778eacb3", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "acd2c42330f49958b0606f5f994450e49e1e64b2e22244d93fa1a09a6e9cd6b6", + "regex": "(?i)^https?\\:\\/\\/xtodayclipx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d10a2e839e6ad5efe2e4601d17db52f02c52c0a42d6facaa441e1acb0de319da", + "regex": "(?i)^https?\\:\\/\\/farlight84coins\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "80a80e17a312eedd30948c19bd293a0065c01a5d23fc5cb13cc5dce39a81d4f9", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a86288a9541e31408cacedefc6a3154b638bd45be54de85e2baaeadeb8990b27", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "098f8cfac9bace73533ab2014582a3b781ff1ca59d750b0bcaf0d741afc10ea9", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "82f7dd81c102253073096bd94173d555e1529502382a082f2ff7f94204cb1c52", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "81fd17bfc4d7d2712d88ff4c65175bc19b957f733c2543be6653ef11d8fd8d29", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv2\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "f1345c674f285f113b1435450e2e0d9412a7d6e1a9104e3f8e9e57352bbc4e99", + "regex": "(?i)^https?\\:\\/\\/dfghjhsjhusefjhsjhsgjhsfgjhdfgjhfgjh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9a61ce2e1c8111467b2a6a91ab7abbe61d1b45a08afa25b4474d3e357f07733a", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "37f9ff728dbeda1ea6262e85d4576332e65f6aa199fe496883a5af5b5252b9fd", + "regex": "(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "05e2c1fa6908bdd5680e910e8e823ca830d68b9c0932b0133bdde92ad7af5aa9", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d15dbb6c530d0d69c9a50a7f9e687f7e4bc97c54b381456d7f3e4a461f17cf03", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv2\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "09a43c3d7a2f9d10f9718e60ca2d98889dc6c4399fffd783c135d1a187f2c1da", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1fac90d2e3866c24405896e37424d284653b747e86ca575acbb85de35d8cf71e", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv1\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "eee4a2ad810428d6d5cf0041342b862ffea777cdf585c59c6507e478929ac0d7", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "61532be04d5f0dc5d1ad46873fb43c9877ebd668ce121ad77d718c197369a5fe", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0945f991c61989565e10809471f421d5662ea2b40124dd891bbf9b6af8346e46", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv2\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "406a83cc326295882485abf8774adf6f3b1fd031414e4b2d2b459cb3f554b8ff", + "regex": "(?i)^https?\\:\\/\\/bnetrfgdfgdfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "32285882677405581d0597c1aa6ebd441ac3cf33d7181fbe72909b01a247688c", + "regex": "(?i)^https?\\:\\/\\/cellweaver\\-biomender\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5db39782a0ac64b06312d65bb48281d1b2b5da12257034857bd249bde6a67525", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d6509371ed7cdb56fc9d1f3e97f7e4286348769a3330f6e7de984069cf57c52c", + "regex": "(?i)^https?\\:\\/\\/bnetrfgdfgdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7f92f57eb239291697319ab4e037fb5d966aa89094d96113cc27b9784788aac8", + "regex": "(?i)^https?\\:\\/\\/xtodayclipx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d4fa2b9f42fb7346a28489850d80e5000a8aeacafa3932ea4c56052460c92c42", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "993cb930a15d879dc9ffe161b62fa06df37927af53f8d878a34b92dcb7bad99d", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f14120cad36a8abbc24f6f5d4bbf7594611b908d4832a058aa17155dab969fdf", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "50b22206093ece4da4aef6b329089bb73c3c82f1615405de9960469a1957dd2f", + "regex": "(?i)^https?\\:\\/\\/fdffadgfg123\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c3e707f24474f9360c00af5b272bacef2d0bbe855d9c8d6707b39f36c356c961", + "regex": "(?i)^https?\\:\\/\\/farlight84coins\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6eba3bb116b24f6696582f5a724fe44df89c4b5c351eff5d63730ec49c13297b", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7481bd4f3c8c49c3fa90403986a5c63423f453dc5c735e8bc5182b549f6c49aa", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "91966422da23b394eb11bbd686785fd41969490e33493571c1cc617ed62afb24", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1fcdce7b4dad1746afb99d29404d4130a1b325c92a619f812ad410a8117450aa", + "regex": "(?i)^https?\\:\\/\\/heliotracker\\-solarwatcher\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "10b1b9369193f12a9b902dd0ba23d23762202c3030bafcde96e453f1f362b843", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2e9d7b00bfe945441fc4269dac1bbead56a8292e4ef2a8a6ff48687814f3a472", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv6\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "476f37b8d3392b076e9781a36ad435d933447f6c779bffa96f896d2e7aa76d42", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3e29a9ceb10869041f0fe4519b1b1bb4390c4f8f62c890b524ddc8ebe9c60999", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cc0fafcd46287210aa7ea667f1b2516c0a677189965fc209611cf1875c0144e2", + "regex": "(?i)^https?\\:\\/\\/prm01\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "547a8ad8b04b9653f2bc6d3430514fd94461b2e242a62ff69fcbb709d2f223b6", + "regex": "(?i)^https?\\:\\/\\/dfghjhsjhusefjhsjhsgjhsfgjhdfgjhfgjh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3bf0eb564b0f7420e973e941f2cbf5f781aab4090b72eee6149709e3274b1542", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6dea8b21a7a9197ec3c80dfdf6e3cf22587a787091b566dcf8e77431f15b044e", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b1e1a15e358e57eba67914653f42059a1bad355b9613d2539159022ee7b3a419", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "01a5db95a40c9e6ccf437b9864ec4f9a407e42f99c2144f4bebbea7e67ada72e", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3187984fe486b2b4aab9f3835a3172143305f58baa77669d43848c550d34800d", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3d33893eacb1b7847978287bf3819e7200f1e175ed88c5b41a2eed7c805b56c6", + "regex": "(?i)^https?\\:\\/\\/fdffadgfg123\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e797ef0125a78a45e2ca6007128a8bd8445f5475f9738a364c005a72212acff7", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bc4b425e72033d2e631fb8da638fb82f48d563b51b484b1bad8c12cf4d50b6a1", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "91f59d754aaafb26e8085235cc4375b0d3badc27d812a553ccd5bd51ff3362f6", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "00b3faf3ac923f72de51ca6dba68d80259ddec8d083bef841db3b15d4b3e8d09", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c216ad4ebe3a9b3fac683e79e68f979ad46a4fc4930138d9110d41d0113a4103", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3d6476ff6397da8ba142f05592201a0e31101752fd32deae9a44f20e1c2e6ef9", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b4f87b42c03d42f621050dbe3687ccf73de9a73c79101cd1206609de66cafe7", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d7858ebf00c160d32ebf8f2ddac1e4167481a8e7c8b9d36a41d514aa0138685e", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fa1c1cb5c43804ae53c38273ffe73d545a7150b2818fd38055c6568f75515cf3", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "76096028919d4995267e2a07169d87d005f40bdf027f393af90cedd06099bb86", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv2\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "99da06aba33753efb879a63d43c5954e85e9cd016905f0c8897d461e75f0a01b", + "regex": "(?i)^https?\\:\\/\\/heliotracker\\-solarwatcher\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e3c8f5090ccc2c4a118f7a1689914ade94163d56ba830a69d0fee102058d7fda", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4e527adbaa4f50ed797c9b02c7ac5362102be0c83f9320b08942c40425d47b75", + "regex": "(?i)^https?\\:\\/\\/sdgv5reyghrtyhttgfh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8fb2ac99d2a418f03eb6d30b0a7f62c56f64a0660f68e2fd6d62ea097044b44a", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "a43e1285aa002fd891d89e19f02317cb9fcfedce409f0bc73b6015dcc80fb7d6", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "eae56d24aaf80cc65a56d27c22de42226136a7d6a50d8a459e9644354144e0e5", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "25b571d753fb4f9906a2345bed7d9ff40087e52ed7317370fd5c352a9be929d3", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7f9a3372cd81717e7292c62bea53b44e743f0d9d6aa37ac1f4a1252d5e503459", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "26c4baca8f810ff355738a8a132cddf4735e3763f510a278cecf3b1fb069d379", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gg[\\/\\\\]+m[\\/\\\\]+from[\\/\\\\]+ky\\.php(?:\\?|$)" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ecaf70efe1c11b792216c2c7976b4fc58b9ea8cf8c6ccf8ecf97e423cb502fb4", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f8dd716a5f3fb7fd0c08c459e122a5b59268f5e0ff24d42f6cb3ae2a497169e8", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv2\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "457bc0da9cb33b1c419fdf05aa0c3e2a696347cdf6000369079f05f51cd42c2f", + "regex": "(?i)^https?\\:\\/\\/cellweaver\\-biomender\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8bce47c93a8040a5ef74e67286b7bdce1f5e74af4f4f133c46506ca80548eae0", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e96ecd40bc2365bf3bc8ff1052f817b5f2c205b282060d057a80b044a0b8d1e0", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "279fa308119aa90b94b39b4552665b9d7856d6afa0e0c1de3dc79237d4548562", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zeb\\.votin(?:\\?|$)" + }, + { + "hash": "4dae2870820c2f007ca476ad764a5be902822e7c50604891c85aff3f46a54e76", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "defeef1ccac0ae547051baf2168a36bd9f7a1ee2f17c7c4bade1bfeb85f16ba4", + "regex": "(?i)^https?\\:\\/\\/ca\\-connect\\-link\\.org(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "249b465be3d8341a1d4df83dd787365dfb10ee69e7cc6ee53419719a9f91f69b", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "fee13954e85844288361de7370418d6f76a8e8c5634bdca0099129c866369c9b", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv6\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e4b668a12352efc0143291609448b743db20e978e4b980a6719b167f20f333a5", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4413798a77fda0152a2c1fc188f5a4bc7fadf4acf05b5686687dfae89849eeed", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv1\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5e89b7328b3c81dd5f2f34a5c0d7b3f61066d49e5727d418652d5087f807d0db", + "regex": "." + }, + { + "hash": "9495b22fe363b85aaa9f7d00c08d07c4d114103d3be1f589e48e412265a0bba8", + "regex": "." + }, + { + "hash": "10633bc38f7e5f5177986c6e8dc96069ec47c305c1d873e95ba25edb6c26ce12", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fac1027c79d3dfd2a5ae9ea413b778d33a7a848fe16b0787880d11421d6a932d", + "regex": "(?i)^https?\\:\\/\\/xtodayclipx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "42825546dc296b2d4ef5a94fd8998e4d52b933c0aaaaeefa2189e06178c1f414", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6cf1c2ca5d665df80913d8f8f33929ba296c5a6b997caf27efdf4aad31d2ad33", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abb1cc3621b502ae17670422ec856624c839dfcb3e9f8c2153eae43e8a7b9bc5", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qvmsi6(?:\\?|$)" + }, + { + "hash": "52c69a82f34f2076e6f954aa1605c6858ab2621c778dfca1be6d1609d962363e", + "regex": "(?i)^https?\\:\\/\\/clipxtrendingv1\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e4829aeb5a99d3c3083989c51216cb0ed5da74b332bb393e127315e23ed68120", + "regex": "." + }, + { + "hash": "b46e37b89ad96e2db896c2e56dfd0569ee9b9ac6963c58ebbdcc4598fbbc73ea", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "108c75f4c296bcbde98bffdcc7727bf495a7674478c1acf198e9a8ed98705b1b", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fa521f03f63bd62a369ccd29b365aeed47bb1257f1dbd6a9174a17b735adff1d", + "regex": "(?i)^https?\\:\\/\\/heliotracker\\-solarwatcher\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "833939ce715b8cffe11700406fd32cf8655780422787860ad5bd99dc5d95fac4", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2bbdc3d4af66d528d8c6ad7bf5fbdbf2a972da661c1de8c41adfbe5bf3b5d357", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "250e934b49f8a082f23ef9c3e50ebe783f190385e3e3102d21f0df01e983e306", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv1\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f6e2d2eca4a596ebdff7a25d09c7191c956ef46b025fbae97d50b223b698f397", + "regex": "(?i)^https?\\:\\/\\/bellca\\-107282\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9a2ac0ba2e126825b7e8c2178d53ce3a78e2ac4310c419b2e1da4f439139512d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "026f7c59e3743116deac6a1c9cea21ce0210d9e781395a1a6a53fe1abf2304ee", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6d4364d4723384a15e1fac66a9d5aa1de9b9cb9d962ddd4adc6a85d584cd2df3", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "de9e99d407ec6e5e1daef264682978b5e8017c8669864361caabae52414070a6", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "01000f65ba9b03d5106baae7c57f29c86e29d32767cbc956003451e227c4f579", + "regex": "(?i)^https?\\:\\/\\/44mz\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cb3f3b1c2fc0271e79a117b55776f90af87f4f99575458a9ec35dfe07879a29c", + "regex": "(?i)^https?\\:\\/\\/fdffadgfg123\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c44d906262d151ad9cdd49159d951e3ec58048bee2cf38beb3170ac22e4f8e77", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5adc4f03e8bdc2002a61ea245176f811b5a84d9f1a6ea673bdaf0a0e18465312", + "regex": "(?i)^https?\\:\\/\\/sdgv5reyghrtyhttgfh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "daf1e4d41813def278fab6dd8215843b797dae3ffcdbab5d728066003aca20bb", + "regex": "(?i)^https?\\:\\/\\/kocmasnretuozlasrfavrea\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b32d60c20c3965fdcff2a44c4b5c15c85f6d4171d5dac533f796d3ab80c8465e", + "regex": "(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b63f8c11b593578da040d56e9e7c6333e509f20130ead4061c718b56aebfb014", + "regex": "(?i)^https?\\:\\/\\/marketing\\-101937\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1bd1670c2b413b0ff423174ac0ef36fd07d8eb54b583d685cda77bd650011280", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "914f047066047c1d9b7f008ddee24ceb66fe86ceec3314a08ea9f304d1da8504", + "regex": "(?i)^https?\\:\\/\\/clipxtrendingv1\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f753d17c23747be084f54c4714bdba55957d6ff56443c6e247771b48555d4f4a", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ac27d07de56173345a9b8c55838a6077b0afa4af3bb487bbab0f92d6534f7638", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d178399fd05a504922de0f788ea1df1bdbbcf01c22ff7b96972a5abee8a57a04", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f86c25f953e56fe72fb082a5a2e39c5c559a5cdf3e5f394261a66265d75de979", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e833352501ddf1662ba33ac9f88319e8df68817bbae4dfc214e49e25e388d533", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cd90f39ac9ff943fbb22da2f62ba7d91c76015ae061b81bf66c2c45693da8bb0", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "efa04ee84145c2874f5169a976f11ccac805f2431176d937cf4e58c1c3d5f016", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "96b10f3e6d12e2d30bb956f14c74e4c0d2f5fe67e12ec20b1e240e47cc2edfa4", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5044792e55235d8750e0d218e2840fc0cbea60a6f96fe996d1f0ee2acecf0dc8", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?a\\=index[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&m\\=Info$" + }, + { + "hash": "8d23e583abace51351f33e4416fdeff8ae457d6e821291a0e4b33f9e6b87e7cf", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2916d3b4404bacf1386a289757ddadc70d492f31c8c8f4a206dbc07b90f73301", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e5135dbcc44d6082f43b8dfb8b90e2c21630e477797cbdc9940be50763e7cecc", + "regex": "." + }, + { + "hash": "bb465db08ab7ed3e70d5d77fc201a8abd28fdb4566e2a0f19b3c3637ab230440", + "regex": "(?i)^https?\\:\\/\\/xvideotodayx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "521b6ef83cfe84350bc84c38cd9d5cbef7f400017b3f9082aba0f27ba4201ce7", + "regex": "." + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "4fbfaf72115c5e0ac7510fba6b2dbdde2aae91c23c97f7fd5529e9ff226e2833", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7e278272cad819162af6e9f08bd1e6c9551a6b1256d82452bc084192483142a5", + "regex": "(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7d0aea4a2c011ebdeade486bafc1e64b36db7b39d0115c23b7a08593892e495f", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fb66579795c1d5111a823169ab059e63a70d729e8eb7ab0688a27344a943151c", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ce601e4f4155451b404fd2ea0f9cdef231ab860c0119b584c8a3b86022fcf524", + "regex": "." + }, + { + "hash": "f32064a287cc3b91fb9f1e50b4c4d272ea9c24ad7f1aeedc19132abf1abd9f08", + "regex": "(?i)^https?\\:\\/\\/doreathapjhjn\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d8aeca2b6a913f1fb62b2295334c0348d73a26f303b3ef7b439c8dffd17e3dae", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c90a7625c8acd2617b0229f0d98e0bbc9937115fc767bea1bc8f9ad75aab49c5", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c383bee55b35ac52a816b229b693c7f88cd887625ca003f590cab5cbdab183e9", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "de0f1add04294143841eac4ae93a1d808db1b46c9af5e48bf20a1bca9b555dbb", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "54b6f2e29be00b364c685017a530d25c2ce8036ef49e4930c50203125f151cdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "07f46107139ddd03e73ae7129f37e96acfbfee2cfd694e901405f38ac53b82bd", + "regex": "(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7a3cf2b158d4e4ccb9c1332ce72d1981b6ff588756f5b4d8e6a11ea3be93c68a", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a718443bca1c97d5bb9703227856aa1e48da9d8ad2a47fa522321e8a7f8c57e5", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2312d1403b7d35d5bf29c500a0fc409888c4d7b3ae5ed438966df392146c299b", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a5b0678b1756b3706429ed825eb6d71467d85cc1162e0092c48f169d8b70dfb9", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "07ab397d8112bf41926007aa528729f4a8346da224d280bafeef8899e5d28651", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2c5a643bda1aa6b39dc870e2d44236b80c18b635b0f2316bd5b498a3e2ce5b32", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "41c451fce291bb52fff5f30e28fa910b1e4a97617ef4dbefface76709bfcb59e", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv6\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d5695a9ab9442f0f01426639067e32efe1967ebee76d297b220b7d4f51264a79", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "97da834e5e6d6e515f4d68ed0667246da24ecb80ca3dfdcc6457de330f544bb2", + "regex": "(?i)^https?\\:\\/\\/clipxtrendingv1\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "66596f495676d20f0116a2ebae88ab93d8a0b771c51116168c573031d61b7242", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c7adfba3263643f40dad1641a12a440ba823de17d26995649b4bbbc960a207e4", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "96b6bec916fd40e11cf077cfea8b23da99b73d63569c45ae53cb1bd5786fb308", + "regex": "." + }, + { + "hash": "14103605e7fd313770d9b85733e6dba42b73538346f35186cd0461097fa7816f", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "55f170957730afaec2ce5d4a6871aa652b5905026eeff29477da89d1da3a0154", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "df9481efdd4b608da400c7e27643bc4ebb29a4c546f73a908b83f822e8bb0802", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "717856cf7195a25bfb13f4287dfc2e8208aad52851fda197b003fcaf1635dbbd", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f4daf0a14ac3c9f8437bcd7ad667830a90dede220de782fa89c7b88b09cb27ad", + "regex": "." + }, + { + "hash": "761f6c99511f117697929f95119d3eb9667a7ccdfab9500388b2b50fb7e8ce63", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv1\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "55d709993c3a4565cd63a1f97e1b41df69995f745e6438a61fb998df42e31587", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "17b5b36c296f6ef344597ffc71f216c1b96fead4655092abb93aa50f82003f95", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv2\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "13ebfc4ab2c6d20452fdfe86e1c48e04c7a50e507918f14eb254bf82cc8a517c", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e2663abf6da44a0aec46886c618c2261b99c728a2462c712428a8cb744c8e35b", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "febfcee29856fb68a73c63778ddfe3b0facea001e16296b4d9e78f99d6a58471", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bc396a9fc81f76f09cdf7bbccdc364a7745a3984a27c9a61b31c4a959cc898cc", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dff4f6a21a7210214e52eec8e5328c6fe86ee7dc15c50d6b10cedcf867190aa9", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv6\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1206d153695707dc4a69ff5d8a498690f5e0fae23e3f033802ba6ba0bfcdd7b2", + "regex": "(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c5b5982f2b770ceac1a15ab5425e2e04a3ca7622bddcac97706530e8c53c449c", + "regex": "." + }, + { + "hash": "f67db1678e864cb3edaf41ab611ab6e3e808a6d0246b913abd8eabe722663bc6", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9794d47d7d486e8d178edee775543454b09ed9735a6631cc5ebb9e7dcd29f810", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f8ade251bc105aa559577996b7b88f3102b4ce1682dddd1db81d59aa605d9151", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bd60c76f0d3898ae4f234e48377663216557bb9d8f4566ab174687ec3db0a518", + "regex": "(?i)^https?\\:\\/\\/xtodayclipx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5c5c138a8e0f683a13ef53e4259f1245ce33a78ece4f349e7eb22917ae949349", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "c6e16d44d144deb81fb6c8e5f81a7fcf4329cf4164d89a5f5fdecdb24fecdc45", + "regex": "(?i)^https?\\:\\/\\/robloxgiftcardindia\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "75c0d8a1cdd03c96bcaecdd7e3af19e6a19c567c9f5b8e396d04bbe470669276", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "fe6bcd4ad73a6da0435d69a9e782d701bb2facc0eed60159528550623e56b1b2", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "89b442dac4eaaf51c8b3951013d6f7cacd78c3db81be4d751950da99d4613e18", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c107110d7b903b24da3684c76cb8758a23e01866dddd63d0441a415630bbe99a", + "regex": "(?i)^https?\\:\\/\\/pub\\-81830046eeab45d79131bcf4d0750ede\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b6dadcf232a89e0af27c2a72fc314ef49202b73ba1389b94cee6ed7016d1b6d7", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c2c26c2535a06e1bb3e035386424b85c2986f57181a724c80c440b42568a55b9", + "regex": "(?i)^https?\\:\\/\\/xvideotodayx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1c0e1d28d44e747286a992ae6d21835092a174548b9fc522ad15a57b0ca4de10", + "regex": "(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "561ebde86aff3b7a2158b03a2ecc36be7707503d074889e5526af25cae2db6d2", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c0facd7e5cb87b102d16af585cde72662e75695d0eacbfdeda5ba83e4e5b7a2f", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cabd3a797b49eaa9331429c6ed2f5f5e3b34d84aed4c05c018fc5d1a0bb1a2ea", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e41acc7926e0dd8b04f42dbbc0ca097747f7bee6df4b5ce105189d20286fb42c", + "regex": "(?i)^https?\\:\\/\\/kocmasnretuozlasrfavrea\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8c6d70dac6e1296b3270c311dfbf8ac1ddc66a6491e98da98c9c74617f9078fa", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5ff36448e0702214f65f2d03c0e319ca4b0c6cfe5d58edde7b513e8f9a8dcc40", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d1060528759476c5261e62383fa7254faa58ad5c9a876d08d9d6a6444e2ef3ce", + "regex": "(?i)^https?\\:\\/\\/xvideotodayx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9235238db92f989f7bd67c49cd55d7e104247bd2a2e1f0d981bfe7451965b39e", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4cdb862217353d8e5045b240c5374a33fc567f271de3ed712efab16e3cbb15ef", + "regex": "(?i)^https?\\:\\/\\/dfghjhsjhusefjhsjhsgjhsfgjhdfgjhfgjh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fe978eb31bf7e711177da62b171a88d8192fdc76a02303bf30b922588c3a2fd7", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fa713591d76024dd9f52de9bc750eb951e6f276fc90245e6bc8997c34801a353", + "regex": "(?i)^https?\\:\\/\\/videoxtopdayv1\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d16cf0d90d68d8c4954fdb6744e6cd29d45e527e6dfd56437138b8189391649d", + "regex": "." + }, + { + "hash": "099431553846c66359df2b8dc0c071d0c35e3e5ec4fb76e8cc402775b020da27", + "regex": "(?i)^https?\\:\\/\\/cellweaver\\-biomender\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a36af939280eca2954696df171f42b225d2be0c662f5bb8599aa41b9a7558a5d", + "regex": "." + }, + { + "hash": "302921285643d79114940bea9a1ce1a5cf0b6597dd3bf6c5e6f62357cae5a8f6", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "54d7e928bc6bd1a6ad76e1c961e1e7d4f8aa3e62df47fb6131c5a51c199f47b2", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "10d6da78e5388f534e62eada77572cd1e7b31c282e27c990f5a8c5344da9a044", + "regex": "(?i)^https?\\:\\/\\/cellweaver\\-biomender\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6e810994f7327a44f82709d25800fd1c681bcc75ca5c4aa68fe1058329f2eb26", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cb87ba728413667288b346b0b30d16808b34476c4eacaa4dcc2134106a049d9c", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "af51761083c9ef5b73d8ad19fe9b6b42122cf2336cb1467448b8cf002de5f2c7", + "regex": "(?i)^https?\\:\\/\\/kocmasnretuozlasrfavrea\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "544d8763fa3ad6e3dd481492a0644b9635ffb94ec0c28b7f517502aa2500b195", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a8fc0af8fd25948408ca9fb43f379d67a4b55c6b5a7389298abebb422eb0bf4b", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b57c1dd6a17945eab304cda6445b091d34dbcf00045c3199c2fd687876b253c4", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "77dc27fb79fa65e51821a287ae97221ca9c18ed8763eae66ec1d2b7cbc0b13be", + "regex": "(?i)^https?\\:\\/\\/enderdeundefinediirtpc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f90922812c55c188fd9de1b7e3b24289c19e94ad7355c6e6bc79768df3a710f5", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c7bd287b81a55ee457d228b15def2d886165a3967a9553a6f6fa91091588171a", + "regex": "(?i)^https?\\:\\/\\/farlight84coins\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "237dd169b75538d8dd1d9fb126aa149275d651bf96c69213128f8a22eaa78fbf", + "regex": "(?i)^https?\\:\\/\\/xtodayclipx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "83df5df6de507a7295d3febf147deccf3f70235337ce3cacdee40b7076c1bde1", + "regex": "(?i)^https?\\:\\/\\/dorasrdbfbq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1521f5df95d4fb2a811cc63d9f37c18c8b6b9dc3fc79266b611f1ff9ba30a226", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "24a20428caa7df103b0c1f34745971026203483469549982e9054291cda1df82", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c8a4caa0d2e6a0b3dfcc298ef8ef70ca16563947ba64f061516602a634934e44", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3408d134fcd3dee28088675c9c6921d3188dab972ffd408cb5aa66db36e72952", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c31f0d3a7bf2776c5b3df65188bbd4128cf69b9fe7c8531e07a57dfef099f722", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+down\\.php\\?i\\=e2kzsn848d\\&n\\=proofofpayment\\.html$" + }, + { + "hash": "fbcb3748c651bfe53af7c353edeacf92873d8fab252385999e778af361865e10", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "53b2e1437b846e0b1bee0c3059f13adcdccc423cb07866aa4e4bed154087507e", + "regex": "(?i)^https?\\:\\/\\/fdffadgfg123\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "45d6e88d8fd85b553fd70844daa5f6154f94e9dfd20bf8b2b9cae39afcc78140", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8be7c90713f9bf6369017a7d8cad64aaa073a3f91fc6f37ea74916e9e9aed69a", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ba85eedc888122d21a9a7df11bc0a5b37cfc90976a0782243e14f82c0ea76173", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "54ed6926849f434e510307011b6ee766545ee37892431e905e28c38721b5b7ee", + "regex": "(?i)^https?\\:\\/\\/clipxtrendingv1\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "37df926072ea55432fed48cb6d51b2821181c4c2c6796855bc58ae2b5d52e74c", + "regex": "(?i)^https?\\:\\/\\/dfghjhsjhusefjhsjhsgjhsfgjhdfgjhfgjh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0c5f6002d697af7fb1d228688e36d21c569a16e10111d46483622ae64a8dbedc", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f3b1172494f7ad93d7b5466bb178c9bb489821c2ebc392a181169a1f9b58d921", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "78b593d0a158615235eafab929810bb63ed58425c077ba0ece72e069e2ef308f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register86307(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e4f778f3ad1664a6a9c18855b2d3e5d0f70ba32b93335cae0f3b1fefb28b9e9a", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2168dd9d52375a0034014368c75908614395371940df94c7969dee31538c9a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "5309296d7ad2c4899977617e8b77c677810313d0d6665818b75712799ea73ec2", + "regex": "(?i)^https?\\:\\/\\/amazon\\.bmkncofqd\\.com\\%E2\\%88\\%95orpsclg\\%E2\\%88\\%95pzzzcuj\\%E2\\%88\\%95nzhvoc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=egoknqibxj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "02113f591a285e5fc3d8c1d6d492e0633aa106faf39f8546201e93622a86e785", + "regex": "(?i)^https?\\:\\/\\/cellweaver\\-biomender\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d278d9c116e9df5ecd6c66b1e968c1ee45de62c33f3661c4067cbecafdc246eb", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "776ec99048149340277629b0250cabefd2b7d17df4dc05dbf0606be032fbffec", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9766037e4770c3b4a06e6995526b60fc7bbebbca7717135c50ff0b725a17778e", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "acce83c29761b20a03d2bbef8eec1afa3ed40df8254023a15c134f4baa933a5d", + "regex": "(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "567536f4364db184e77680c08e93e97b2e01f71f4607ffbe563e7f417f37181c", + "regex": "(?i)^https?\\:\\/\\/enderdeundefinediirtpc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "99d4e2afc83a78ae167d94ad22552e785b86f0da6c15eb86a9f422f9f45e4f54", + "regex": "(?i)^https?\\:\\/\\/enderdeundefinediirtpc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d5c27196c73e6ebe8cf88df4174010f46fd5906b3ad4275a3889cb95adaf9da0", + "regex": "(?i)^https?\\:\\/\\/kocmasnretuozlasrfavrea\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "427ce68de10c8b195c6b4bcec202a88745cb25bc2f1e628d6c6224a536823512", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d36de74d3def3865c9bccfb123e8cb2ffdf5962f8ce5f9800ae4d96d5489b7c4", + "regex": "(?i)^https?\\:\\/\\/sdgv5reyghrtyhttgfh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a843402862f942f10c35b5a8a2cbf3a0f17d5f63c0da5e70e693690210960358", + "regex": "(?i)^https?\\:\\/\\/xtodayclipx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6523853be2ffb4e1fca1a13525f2266dbe4ea11f2551ca1e96af625fdcd61632", + "regex": "(?i)^https?\\:\\/\\/manaktigaxs256\\.13\\-48\\-71\\-121\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b5bd6caaeadf6c2e7de5a32df3caf04b08144fb81610c492264871eccc0932e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "7c406649e6f721ed948bf6c807ee1f8a004fae6342a943fd16bf0c4543653771", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e70102d957ec4e089bd89278bb45106cd3887452279cb24183c087a65716a2c0", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3a4ba921a7558bcb3d65f9f30c4872ba9ef52ba3d5fcf9efbb31c4ccb6c2f2fa", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e4f2bfc406e42d66a39dfe466d8179e4430d92e83114afaa9edb00d7d80da50a", + "regex": "(?i)^https?\\:\\/\\/cellweaver\\-biomender\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "88183604ea6f606eaf2978692034753ec29a98c1c09c453263efd302ff0316cb", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ce7d5dd449767fdfda0bf39b3185708a93c1952d7a0e01d569a900eec33a2815", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8f2d342bf98faad3215d019832208e1d3b8bc1e37102497c5c88c05e8bd98364", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "00f6eb15a398879e27e9d8424a5178a9f882924e895de812dc10f7554a8dee9b", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv2\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4c5ba31887fc1b06ac971fee7796fb5e9d025ae1a07910c8ae70370ab5101717", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5ab25887dd4a627b1a11911850d79baca425c88bdcd68dcf1d465585f730d575", + "regex": "(?i)^https?\\:\\/\\/kocmasnretuozlasrfavrea\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dceb5b7db1e6ab4b286bd71e99fbdaaa03378a43ebd3ee37d48d6c73a5c33a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "ffdae3e0f805005f1e8d7b4b3420074c27729f2b18dcb2553bf0d0ae7772797f", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "38b58c4dc73077500150455f455b3faa93d77f06e409d82fe6a4630b45efe3d8", + "regex": "(?i)^https?\\:\\/\\/fdffadgfg123\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9464e0f1445156e742e78b880478d860e37fd2c3f94a6886323c37df2e7e0e6b", + "regex": "(?i)^https?\\:\\/\\/enderdeundefinediirtpc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1751f13579a97c585c4e66431c2d7ef83e02c224f0302051da82df6e3c381350", + "regex": "(?i)^https?\\:\\/\\/bnetrfgdfgdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b5be05e24bb8a2552e803c88c2dde4a9c6ee3d2da1b2e0e8c9d27b0d88f7befb", + "regex": "(?i)^https?\\:\\/\\/enderdeundefinediirtpc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fc04a12ba62dcb004890463a73f35e7cff54c36379964e7765c3b87227603d0d", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "30d6e0906bdf71e3cecdb81d61976c434f52e521a8308cc77cafe6513349c5c1", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "993c092c38bd8b8b4716b3d9c017b2e2e8de421c24c318766d35441a5eb0c18e", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "99f40ff306565ca368697fcf9fd503c16f5f333f6ad204451b878620948be7fe", + "regex": "(?i)^https?\\:\\/\\/bt\\-business\\-1ae5a9\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5286f5835d8b0435a4383c4ea48f1d473f25d322319ae1e15e18f098246af142", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d76d1881cdca4cee2fc6f9d718e1244c2bff01ae2685c2403a588ce3702163d4", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv2\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b5e38f3297c9b8d4b74c724b5942dd7fd263eb241d5a0a66050aba0986e37f33", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cbc5fe9bcf53a1adf599ee719d2412302486bb696eb2c0aa136889aa1d74b5f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "4e4dda457b6f7e367c4ebf832e1b3909ce48b18bdfdf64a4baa3d1719f5049d3", + "regex": "(?i)^https?\\:\\/\\/heliotracker\\-solarwatcher\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "99d4722510673f9e52fa962a099ff2875e4d429da72a7854cf1118f11bf552ac", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "24d805782afffa4803e2a68a44459cb0bb4d7f13b60df787da5000c22497e44f", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ea205133c7455d17a6b5cb97b5a0a99e9986cc151b35c8e4ab2a25c6cc8dbcb7", + "regex": "(?i)^https?\\:\\/\\/videoxtopdayv1\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "294b4202bc47decb40a0204dd87c004b40f86bb65a5d6028dc14c11733888f93", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ce8bbb954530c596d989effc219995206bb469fedc591f2e0832591d4f3eb5b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+punktum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d0a2a114065393585c6b08f049c4782fce63149b432bd23be1281b807e151f6", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "30c79d1e7ea476014f843d1d060f365ab1e860e76d52cec07ffe79ebda68777d", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e1a173d8acd100e78f773607c39fee53fb8312c685dfa97ec2881c6f5a4bdb95", + "regex": "(?i)^https?\\:\\/\\/videoxtopdayv1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0801af3842140b36e76a76d52933779810389ab17e9be223919f09d6b03d43e3", + "regex": "(?i)^https?\\:\\/\\/sdgv5reyghrtyhttgfh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3d45685b446a21329b91a28e6a39278249241e4f1a20b51307b567e894a7cdba", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ef0e7132ec5eed1b90f4a222a5bf32f6ae24217d7e4065d33dbd8afee32f322d", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3091a53e9fcc1be0e56bfb32d13fa5383aff9a21863873474a697eaed7a3ce49", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1aeb784269228e7f1d417fae74ab1699dc47f1d4b77add7508a1d198d853020c", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c9c377c8719a48468a028105df202bafd841b17dd9b0f7b9ab68fbc3b587d7a4", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2dab9ea4f2cf07b9ebe34f5fbffe6084814e83410fbd2c735d72ce1f2c9176e0", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "df2615a3a5eddc50b7b7bd824bb0dcd6bb97551268d75f4c8b5169a0ffc1bd85", + "regex": "(?i)^https?\\:\\/\\/bnetrfgdfgdfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "10f101076c134d86e2e3ead1641a255a1f6fa2d88948ede2fe961e50dcdb1187", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "093f45a5410120758dc4a268360da22ed7794e29f35697140a727046623a104c", + "regex": "(?i)^https?\\:\\/\\/doreathapjhjn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "014626fad9c7ad982acce961aa5ff9c51d35bf61d73bbc48e706ef6f87d81377", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "21a47e07723562e81183ebfabc9b5873084a8e239446a001d78d5b50fc50508e", + "regex": "(?i)^https?\\:\\/\\/doreathapjhjn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "26ccbfcbfb317356bc014db48072c204b85fa184030d7a697c47ddbb220b112c", + "regex": "(?i)^https?\\:\\/\\/kocmasnretuozlasrfavrea\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a8029adcf6f953c163aad93b0808df510e5ed4b64d696caaaf93cb37d90ed", + "regex": "(?i)^https?\\:\\/\\/bnetrfgdfgdfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b63cf077245e89d886bd31886e87532b8ba0ee1f8bd3ed10718a881d9862ce57", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e57de7f4eba61bd12a9a01f5412e355aa5d2fdfcca46d42548efc452288641e0", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "777a09c19387ddd5c72823499721941ab613c24282b8ba7b1f0f618d48105f36", + "regex": "(?i)^https?\\:\\/\\/playdogegame\\-claimrewards\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2e00e7742ead8bc3075315476c6c3061cfb2036301753e682fc7264b333690de", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "de23da1f53b72dd33ad2f3a2b508e94feb4a2ed7e84c16c86f324f7be7d15590", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a3858cd998f7892394252e97154320ada495ac055a2a9f2ecddb9ac7c043bbee", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bd0e4a97adda382fce51d560e58a71f131999290fb43f4a983a74e84e7de3c12", + "regex": "(?i)^https?\\:\\/\\/cellweaver\\-biomender\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b33bc15c56f98a59305eeca1d22ed9c51358f03f7381ec7105bff95335958dba", + "regex": "(?i)^https?\\:\\/\\/heliotracker\\-solarwatcher\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5670c40f76ab3e8c4e3cf7f68df6dff10a07e1479b9236a6dac150efa4934f34", + "regex": "(?i)^https?\\:\\/\\/bnetrfgdfgdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "86df0f464861c130bc56d75ee5305ce2341b09a7ffa7d291c401ee189ad45d40", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2fa3a1bf96283c0b27888f5d8a9195e27ede883f7afe494519aa96406ff909ef", + "regex": "." + }, + { + "hash": "0f8902379f9d2e79fe59fcac09fd2109b6fd20c7de00bb53070e7c0ffe92ae3f", + "regex": "." + }, + { + "hash": "7f426f2b7032b7ec53f430492cca108d3b32f11494ea46bbb4c1ba82e2b3f2a2", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "59a6c7258c147e027bd1292849a8463b1e9f8fb2261739f45d0a02ed04a71da7", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ded2cc901c62c3ff3e1781de92b713e416b234a643323aa50ae31c36f66c1e18", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b52b16cc2827c2034f49e43e0ad59c8e9768f097cfaf9fd20f417ce7002256f3", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1b51d379e9307b1bf445898a15f101ed694a96a9bf7914e238227e392ec3a908", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zone[\\/\\\\]+elite(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "9012aee0ecf63bf2a512b6daf3abe593e7df13550ce0e9ccf51db32ae482253d", + "regex": "(?i)^https?\\:\\/\\/clipxtrendingv1\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "7bff40fd872c08ac02e1981b73df818819e55f9957c03bff0ab6fc43bd3b7d73", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "efe6ef16dd97f16d6fb2d03fcc62c31c48168c58ac3efe56edd7ec26281d3b46", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "25b5acc215afd443be0cbc1a59158aea3bb557c28f31dfa08f40fb58272fd51b", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "626886c2d5c9fa987d18724769caf1441fbd3428b5f745d098d54bf1b643dc87", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "50dfd47c1aeeffd127dc1fc03e7ab88abb8b406215e614ab99c64893635f86fd", + "regex": "." + }, + { + "hash": "130592df9327fcf56ab5afa246141699cf262476657ecf85b49d463c51d1c6d4", + "regex": "(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c1beaef3867e63f91c1f6f14d5a3d9a50f95563374e53c0a62895abdb9358", + "regex": "(?i)^https?\\:\\/\\/sdgv5reyghrtyhttgfh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "47418d29ae8f3630c33582592ef1fddfd2f909a833c5b0e60ae4266b1b6d5d12", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "411b9e2c49dbfc144878e0407ed4c0ed0ac08feeac202e0cc256195cb09f97cc", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d4184a6d140871cc8ed2afe4a271bb7a7ca3a1c13bf808c9c1ed7ec2357cd7ef", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "debc30ebf05c6401a98119c73b26694a73a6eec871ff2d2c3ae60ceff75615ad", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1b74e25d554a50d9fc91ef14edc03748b01129986793839dae348b99ec1f78e2", + "regex": "(?i)^https?\\:\\/\\/robloxgiftcardindia\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7d259871ff655a77f30d0e4b9cd1185aa0f18e0342d6b0451baf99940f4285af", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "653b2c80e1a27af4c65c9b9d4029e4f315962947721fea3405c986cd62dcf1e2", + "regex": "(?i)^https?\\:\\/\\/ec2\\-52\\-90\\-177\\-15\\.compute\\-1\\.amazonaws\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9474e48a0706269fa9330456682b38227809e571cd233917d8104ec1101a0d89", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0afbe45296f6a39ec8b7bcaf730485b84044a7ffa6d3f2f8884c01ee64a9dc55", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4c4d5ce809978fad37d6c73e548121a038804d586778dafa5c29ddc16c73e807", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "85c9dbb59162389e8f4ddf18b6a4875263d26a29172765893df3db8e93a0ccb4", + "regex": "(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f7cf4d8e62e962133d3137bf9d74d27ed8d658cf6be1113177d854e5a3f8c0ed", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "581b3fd2270419a3aa2b53b9bb68754fb61b1f4ef76883fa05fab4ab257f82bb", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv1\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4ea2a85aae1d8bd60d7ee5112ce8980a6441934f4ee4a6a80d4428debeaf107a", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "94c58dab3dd073672cfe45f49c3e5b436df144c1b22f30cb0d9275f661742b48", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv1\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e38f31e4d9a68c49bf7fe3762c96ccf41009fb917072beccdad5ad8f7dd629bc", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4a57f80c0080aaf6d11096a59e20e24dfcaa018f37bf3b8a275384b3114da886", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4e0c16a65421f512d5f8e18b0cea8bffc6bc5ba70da2a5a3028bbfe89f235546", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6d3f7b6eb0698c241b44b880e6c81ebdc8eb9a45662a15bad0e4ba37e11cea06", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "86034789eef73dd2cd174bfc80aed235d60d6816901c01ab447f673ae864aee3", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7651f511ad6c8b1302901b179df08813c0be1131db10623593eac862332783f6", + "regex": "." + }, + { + "hash": "653b36e2bc389009551b17ca609df52b8bf24c1f8451e4a1a1586e6efdf51dd2", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9ef88388546fe373e01610f06a21e00f6a7162b41a22516795dde57548169c93", + "regex": "." + }, + { + "hash": "87d5cd07361b948157c8cae0ab280345e301fc745d6e0faea1eafd75bd4d99ce", + "regex": "." + }, + { + "hash": "999e7d1f7b009f194167621baebeb200602bfcaef0a2864cc823ff6cd826d2b4", + "regex": "(?i)^https?\\:\\/\\/farlight84coins\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "044a79838712212ceba90c72c6ca9ea08e0dfc38d12ddd522dd437695777fb18", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "650d496745a9952bb04642a9d057040a83a0c09fb686bea0beb6df02ee6a2572", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d10abf13e8fff4015194d5102c791b3ca5acada00f6d04bad01098439e2cb566", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9fb634c69e8c0247acbc526e37b7b8a0d4077392c65cfd7342bd0bd11ce75c41", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv2\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8e959a56919f4707372b99883ff8fd23742e4a69b1fd33dc14b3a90402eddeec", + "regex": "." + }, + { + "hash": "da223920b90d69fd75361c3ed6230678adb9b31d2517d61f8061a11a3d332693", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "328835647d7a55f8b2abfb6a6037d59e411752d2c46250d07ecf94902733353a", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f78c06022aaa7522905ff999cdbfdceac58b98d504cccca1e1601be28bedd772", + "regex": "." + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "7fd837071fed3ee90b8fa6de04362524a91399701a2a28b0fb73830b8282b816", + "regex": "(?i)^https?\\:\\/\\/enderdeundefinediirtpc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8797e8eee56aadd931a155569e8e0da29b01a95e1cdc031f75be17f3ecdd3b46", + "regex": "(?i)^https?\\:\\/\\/enderdeundefinediirtpc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "2b16355e363787b1936bef4c9beda9891377c38d8363f156cda5c4142a3f9791", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+loopwirerous" + }, + { + "hash": "730b92dbb357a17461cc9aea92ea92d95640dc00e5252fcabcbe9ed4f3269874", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3be357017bfc0c29030f0a52f8a4bd7c5bd22d12410cc45847c7ba66225d3", + "regex": "(?i)^https?\\:\\/\\/bnetrfgdfgdfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "76ad13906850ac047de33b26ec782cbb6c474e80c2b2303b4c74e0168e8f257b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+taslaipada" + }, + { + "hash": "a3c24e307b76f7da7879cd59879261283bdd85f35d0fc6e17151f8712d075200", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1d9040057dee187f20f007773fd24abd0664d9a8bf9fa89a1c60a6292cdaa831", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "529b316559cd5833892ab4b1f272a70c2a7178080ef783256ca7e828b03ca090", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c8ca63692153a1fc4e0a4a439431d03efeb0d53cc9d5a5b81b80286f0d3258d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "edb2fd1945f824167c0f3556e243b051ce35420a90d279518bb1e2886c4dcbfa", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7f172baddcc0f416608601ff5a8e4cce21a1961df48cc265bba48c142bb9abcd", + "regex": "(?i)^https?\\:\\/\\/videoxtopdayv1\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d2305b8d4ec99e2c4dbf27257a39d713d20d5a689fb401572a2344909883db01", + "regex": "(?i)^https?\\:\\/\\/doreathapjhjn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a4cecf3b9073784685c392662d94acf9661c5b656cdc69b0ef355f1dc1805b9e", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0fee3b9aa74ac42c53a7df938568cd351973ac182a2805a805bec75054b6d033", + "regex": "(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f9e417ac05a9fa573c0717ccd95595a0236789ba19ebb53251de57bdaf56f5b2", + "regex": "(?i)^https?\\:\\/\\/kocmasnretuozlasrfavrea\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a73faded168cee19df1932179d5a81b43858ab596b28cdb2f023760783195d2f", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2e3e5cba4e4fad3e5455864c34e18f19ec445af6528e06f4bbf4e5ac23db9469", + "regex": "(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e62bdd8c2fc5c098e7927d4ed9d1b2df58fad468bb92c1fb3614c1b311152125", + "regex": "(?i)^https?\\:\\/\\/xtodayclipx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "10b4d8bf2e18aeed3e8ac409d8c49f8883ac246f243d58b62789aca9c2e8727b", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a831b990be1943a441b0dcfd5849e5fd01e36aaf4e5d11a6f8f1922f6949c816", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b736e9cd47510bc3bd82f7846f9e99779dfef18fcd22886c19e5f56554f072cd", + "regex": "(?i)^https?\\:\\/\\/bnetrfgdfgdfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b103d4fc4257cd0f25d9e9cda454053896fda6681304299bbb6b586f3dacee3", + "regex": "(?i)^https?\\:\\/\\/xvideotodayx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "36a675e1ca2599b0523aba267e0f2bf93ccaa042f3d25b4b0cf94c8745b95662", + "regex": "(?i)^https?\\:\\/\\/xvideotodayx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "437d94de009da0e3d1412f18255b117059821c34216e3115eea90e82b0a8932e", + "regex": "(?i)^https?\\:\\/\\/ledgeractivation\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f6afa41e1f13da84b377765664fe5763aed427e1b185e48b7c247a519f451880", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5fbdf5030a726f169ac709686ed5abc453148336cb9f3fbb2ef2b4b1c2713cb1", + "regex": "(?i)^https?\\:\\/\\/fdffadgfg123\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a265d4e3d13d85c24a55c48e6564a5ea4727f74256122f9dd9a5f68c30582d38", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "10bde46f2e063143c8cfea99332cb2ed05cc4760637bca20ea344c84cc7b9c1d", + "regex": "." + }, + { + "hash": "6c550be36dc5a268b502f30fd21e8ad8ee84ecebacb04c1114cd7593d9f7e9e3", + "regex": "." + }, + { + "hash": "eebb5c9dfaa6657be09fd7b471bcc7b5d902cbd9d9239204ca0cda287856c713", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "5a400e65836d41baea310a044670f38322e303c62d1bfd21b541d57139d040d3", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d369c0dc45dbfd69a81e002fd8f9001100b327dc9ba989e0a330c15c62a1e685", + "regex": "(?i)^https?\\:\\/\\/dfghjhsjhusefjhsjhsgjhsfgjhdfgjhfgjh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f23664fc793e3b914dbce260c4472c59e634efc842c38d5130ebb5a219b06968", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5d21eef1570304590f809d6d1f91cd3a30d8067c1dfe2e4c3d40f94cca702cbb", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3a202623a192571b0989e064b5328323911cf232fdec2850badf3855ae953", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv6\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ce7e61fefd4951a39b6ba5da96a497086a8d4de85d670ee10ca6b2b3f91de95e", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9ccfb99c7a6b4deb3e49ba08974f7ecb4b4e1a43bab1ec4966a7e2fc027978b3", + "regex": "(?i)^https?\\:\\/\\/fdffadgfg123\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "64f27550b1a82a4ee8470d02d65d4caf67eb0ce57abf7c3b1092955d68ee5a96", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e97fefe3becf5522468f725cc0a956a2744fc4209c29f9f4bfd61bf1ff351a40", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "d24c91ae9b8ed6c05c1a82aae752c8ddffc97d3ee45f288006e368471a3b0129", + "regex": "(?i)^https?\\:\\/\\/videoxtopdayv1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1be0508307a72f2806d2ed00e8f3ebfba9729cbe1e345e5627435b462c9a25bc", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "417fc6c585c927c0ccc38952fe30a878c5688fe48ec6eb5f4ec11a9e6d6130d5", + "regex": "(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2ba91a65ab613260fc20c47f055fd82c7b3d4cd5c062d12d771cd3d782830638", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "367e2e413f4f771850f846121984524fcd5825315c5cf2f90d12e1cde896e148", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "8d10d22ccb29dad86c1391bc7db69e1ce3d733ff46b612996f19d4db9e561d58", + "regex": "(?i)^https?\\:\\/\\/solarchaser\\-rayshaper\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a7be60ff16127b83cd4ddf6ea1b65c90a2fc3074858fda1a49e1577b357236c4", + "regex": "(?i)^https?\\:\\/\\/farlight84coins\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cf0d01980959fd2d0243fc7a77e820773bebcdfc5f4867932bdbbb4bc5e48b5b", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ae9956764a2b904b2de595446672f1d6970331daef76e74dc845ff15bb3b5104", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv2\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b6542de1e5b5dcbf01d546c432208ea0db9a76faeb1a9297fc2607d407a03b7d", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "402361346fc2c66881b14a417ac2dde096c48d3d7606c779d64e9618ba741c39", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv6\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8ab18d6b93b30010dca5d2de81cd1d437e9f87f552cda3af75a753f2511401f5", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "19bf286cba859fc6cdcf313315b6029e7c85a2c0abd3b2ac01297b5a7cd825b3", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "030d8ca5e37492b9c81f0e0711f28c529efd00de5e75fc87543985b8c1f4cc2d", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "97580073f33050101fe7756e2fa5a07469241d1d375eb866621b7122cfcbbff3", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ec8d4fb475147620000392a8a7dfacb1fc6f1727d580cb4626fa3c333400c21a", + "regex": "." + }, + { + "hash": "57d0befaf8aacd26478e65dc824ebd4b77b2b74e686a64d768355b1229c087a2", + "regex": "(?i)^https?\\:\\/\\/sdgv5reyghrtyhttgfh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "afb6d8b67ef16bbb193976fea0b4e0659cc9d7178eb5ccb5a25154a8141061df", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "347328b460432e7624d60e16c40868d4cea62fac75c530c2e2edade55309f3a2", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "31d423051115513f5081addfa2bafda2688fdf4f120b2e5071ed355a2c5a925b", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7c3fde6736a3b4d0868cfe16c520dfb83912a8acb2f130358df86f4bb6ecfeab", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7e09863958dba88ba49a59d650e962a3399db35f291a0a29d9905858a7072b92", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "609d98c17ce317fce02542efcfe698b917d436f206d1962dca04adf769d3628c", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3af54d48303c0331c18805d0b499d619028a8dbb32f554028b136529f8993e14", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "453768a34bb83ddccc2cb205a95be2e88ac6d1a01529fd162482bbc1143fb9ff", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3567b6258b7315353232fc16a647314600c3e82e1804b83da112488db9963d74", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6f72651229ea3e265f83663a4cef3913b2aa4e0d8715766c968a3c78fa74b095", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "1eb84f50d7e849c19bb0319c71096d95b789f132f356692760c9a6fa66102246", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "78b593d0a158615235eafab929810bb63ed58425c077ba0ece72e069e2ef308f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6443[\\/\\\\]+entry[\\/\\\\]+register86307(?:\\?|$)" + }, + { + "hash": "77a6f7dd1c692dc6dd13eb7a2f28e9ffe7afee1a64ea731778a1d62c62dab3f3", + "regex": "." + }, + { + "hash": "26454ca6d428b3c567793adae58b665d4e68a44b6021a36a750b2f88ef5f5a62", + "regex": "(?i)^https?\\:\\/\\/htmlandcss2023\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "960f66e582d63e2540647d8637c4d72f6d8580747642abc48cc2ca8a90fb89de", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9fea6951b957896869fc4347f937a9ebfa389d99e6866dad79c3c7e741a7879d", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e29085ed8e8e47d767ff94b2b9eba4f694278e35d24fff217808af42395ba7f8", + "regex": "(?i)^https?\\:\\/\\/videoxtopdayv1\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ad1b34daa102971734d211725a2994410c3fde8ed1ce051e56cc9caba4ba1ef8", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f8c1f11e91dbc9a63bbff6bc0c4ed8d90470c0ab5d8132c6ec66d54eefe3d2f3", + "regex": "(?i)^https?\\:\\/\\/xtodayclipx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c768169ba72bb71baf015c738532410cec5643b8d22374e2b355667ac679b89d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+web[\\/\\\\]+auth(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "98137fbefdb165c69b6abcecacf2040828ed212e69f2340260c3da9e5f05e1ca", + "regex": "(?i)^https?\\:\\/\\/firestormvideo2024\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "749a9e3b6fc8288a7cdc5479eb8dee84ddd6bc6361315fa9e29bc5dbfdb23f01", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e522106474c4925608294bdf3113449682fd93aa41d7c25878e8f2e7e5700d41", + "regex": "(?i)^https?\\:\\/\\/mndhyfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "29f3a3997f11b59516f9e11a37a77af03aaebc9163993e49487189099b306e7a", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e57d1ca5f80f6af193548f2ee3f11ee136f7fbc2d1461a094091d4b6b6e2db33", + "regex": "(?i)^https?\\:\\/\\/cellweaver\\-biomender\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5706bba6b4d050da15e124d083f2e595a353200e60876d3d0f857cd3e7d85146", + "regex": "(?i)^https?\\:\\/\\/ing\\-restitutienummer\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d830068e8a038712c19434afe7104c98ed0219b4e5383277c16ae2a8f4d847e5", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "73c0ea395fc7cc258dde50c8682ab4b19e8e8fbe72890deed61ca0b2e3935a4f", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "564299fea525ed4a65e7a20e565bbd39baa6e74fd949b1ab0b3c9b2b771aef31", + "regex": "(?i)^https?\\:\\/\\/enderdeundefinediirtpc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "709e449a7e5ebdef8bd13940a6448a5373d4dd4b576e5ab8f988abb57460c874", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "570643e02c18cd89cca95baccaa99d185559dce6ff166bbc4640ab2249758f7e", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "83bffcc085bd38a67fea80abda013b4aa7b186c4bc793eec3994e95cd2a04142", + "regex": "." + }, + { + "hash": "59ecb3c8f5be315bedf0a9adfa11e4acfa992f3bfe8e66f7be8cebaa695de59e", + "regex": "(?i)^https?\\:\\/\\/clipxtrendingv1\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f4a0d91ee8cd724681f08b54a563f9d2bffd4767ae7b79d066af53ecadc2c165", + "regex": "(?i)^https?\\:\\/\\/fdffadgfg123\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "74b06a6dcb4776e3821dc407be0401fdf36b9405f1f8fcf54865fe75be5fdf14", + "regex": "(?i)^https?\\:\\/\\/xtodayvideos\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d04327a5689678ea6fae0e1391056bb0b3ea0067a609e500e202e21bad70bf7d", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv7\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4805e76aa454af984c75de1b3ffe48deb8ceb775391d490903401e6da59ab3bb", + "regex": "(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "812d26256d6519a3e10c344931b19084f265f72a60a172cbc4095f7f0d7b7538", + "regex": "(?i)^https?\\:\\/\\/sdgv5reyghrtyhttgfh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d7c1b02e6119dbeeb53b5cd56ecdced62acfef41c47706cb66bb36f47f2e59ab", + "regex": "(?i)^https?\\:\\/\\/daesfdetgregrfrgreg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c5a8a37161587a3475315cbe676f56959f2a0527bedf9178bb475d88eb1f3029", + "regex": "(?i)^https?\\:\\/\\/pongpagecash0nline\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "05b74cff0e35c396c0831cb6b8e226f855955bfc081bfa3e2f13e7c1daf15c8c", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv1\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "278c54111fb445053dcb56cfc91b77177ccb5a6037ec5a5e760ad8045c851221", + "regex": "(?i)^https?\\:\\/\\/heliotracker\\-solarwatcher\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "28c1308ee6f9acf6bf97aa551f8f49d756e026a0ba3e5216f2220db7cc93e5ce", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "399e27802a316aed76e354358213f8cb41bc95cf7b9bbe0c2532a442ef565acf", + "regex": "(?i)^https?\\:\\/\\/stumbleguysking\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a372a177172fa5663d551830e6e9e5980616b0c6c69add9605d3080f7d1751b7", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8cbda2a3dd9cc47409c44110179216d552bec111aa61ccf4d8082578f632cca7", + "regex": "(?i)^https?\\:\\/\\/juelundefinedpab\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3238130a215f5575a7e312041f3c1c1e4a7e141aad0ef46672e748d7380590a4", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8b8b1f332afa6379c89b80deac63a8f3e26d492ccf9271423dfe5a2b8cfda52d", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfb90779fdaf0b652ba15414041279257a33b7175529b887d4778d0c74305a07", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9b78dcf507b12cf1012afa86544f3c57964b2721701d1fed3caddca4b48a6e48", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv2\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fc732e4159edf39c845bf38d2a48f429457208ee96773af7004703c5c98b649a", + "regex": "(?i)^https?\\:\\/\\/polnareffroblox\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e4cbb658edbf7af1f2e3053fe1a8e927e37387a2d0d0405672a483a663bda991", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c98376f2e61306c8e88cba626489d50ef411e79045ebe0c2e78093a158f64d45", + "regex": "(?i)^https?\\:\\/\\/dfhjikdfghdfghjikdfghjikfghjikfgh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d6382c323e0c5a0eef7350fce24143ad78f1ea14582738f874a68ae3dd58f349", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv4\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "272692d96707876cf34221b0c3853e20911a10272cb96972cb5f8e226e904bf2", + "regex": "(?i)^https?\\:\\/\\/kocmasnretuozlasrfavrea\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8f15cb783cd0ab0c4e22a1a3f85c9c5f32c71df684468bb631b00753ebc62274", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a465310e931682c4dbde60428483bd59bc357e9e03ec08789e9d539cf6c40cd2", + "regex": "(?i)^https?\\:\\/\\/icefinder\\-froststrider\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d045352f8eaaf8c9de88c41ff2b8e1a06aee32aea0ab0bc1b65eb6722b4c9c8b", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "39b5984c2218d27f6fbf288dfe20e777310191ca71e44477fc2c61b36142ab94", + "regex": "(?i)^https?\\:\\/\\/serviceamendepaye\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f091a03379e52400793e48b1b3ab6ff816381485c37012a55bf6a4e36d9fe6de", + "regex": "(?i)^https?\\:\\/\\/embertracker\\-flameweaver\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "45c5ed6b42ba0a23ad119946dde736839b2daddcf83e7b222d5edc3100a20282", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "851c175e81a6349a991fd7f1d0ff5649f804cf5a63aa3698f95f96bce84dd108", + "regex": "(?i)^https?\\:\\/\\/rblxxv1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3920d66e1322dd971f1b07ab30f26f6600078aa74309ff2e0202f8a654e4763c", + "regex": "(?i)^https?\\:\\/\\/clipxhottrend\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "73f95326e3876a378c20cdf0895c4f2cd7c4e42c0654ff15a6bfce4a7f9254ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mediapart2(?:\\?|$)" + }, + { + "hash": "df43a5778b64e32b1ae2a82857fc48d7d2d67a88b4bff6a1de802102d7c86431", + "regex": "(?i)^https?\\:\\/\\/xvideotodayx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c9dbc8b9e17f27ccbbca43360ba01724acd1bda219b3f888eb1e32637ed5a5c0", + "regex": "(?i)^https?\\:\\/\\/videoxtopdayv1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "276b22c71981633153094b086d5785c251c1752bf3ebf345daf90ab4d0f9132b", + "regex": "." + }, + { + "hash": "fc0ebb0386c3b8115479284b9e1a4d2f184ec9c0216502323ff0b89f29f7026f", + "regex": "(?i)^https?\\:\\/\\/dfghjhsjhusefjhsjhsgjhsfgjhdfgjhfgjh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8cce7295851a86d5e8c14c16e51b9d40be76678b13e55cf1e4dc0d828115a673", + "regex": "(?i)^https?\\:\\/\\/dorasrdbfbq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b9e920ccda28810dc7310dfd37b805dd5a05ed277c99cb09dce45f1d14adc2e", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv5\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "be5c0fc178f7a631bada592a137556ea4fed78c607aad00f330278727bf68982", + "regex": "(?i)^https?\\:\\/\\/enderdeundefinediirtpc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f67ba665be3478bab73c97b6df14fcf7af6285191e0ae0faffc78a5a75bf4a22", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv2\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "172649aaedf70e9e4da49b2ae9a0c4a335fc1e9c4875a56b4746f7bce82b8683", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a7e463022fc3465b68e6c89b080a69e1217192242b8c61fbbcea83a29231266e", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "74d438147b8f276460916eaeb8d0f96f8e9fb64ac48ff5f9d4307692c86891f8", + "regex": "(?i)^https?\\:\\/\\/fullclipxhotv2\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "97ca7cfab9f3b2124cea7bfaf25a5595059037187a14baef84f333b53a6f6381", + "regex": "(?i)^https?\\:\\/\\/dorasrdbfbq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5537142eb3ffc6fea8b0018ed04435b893196f956f8594b3dfe9fed47debdb9c", + "regex": "." + }, + { + "hash": "0c76f436198011209db13607919d81d6994cba71194b0dd40310e8d6baa0f3fb", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv6\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "61d28720d9947197bb21f6426eed68dabe975e48384d346dbb815d544a9359e1", + "regex": "(?i)^https?\\:\\/\\/xvideohotv2\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eeb58e2f81f5dcf96da768d84c3795942cc76e33811db7685dc8855d535ae133", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bd60495bd2fb0ca765e3f582f4cb82906842afb4d59272bc1d380053af257df7", + "regex": "(?i)^https?\\:\\/\\/redheadfinegrvudfu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "78e0717072e8b46bc3e838669d7fb09cc3401941d376469f3ebe1e396385f5c8", + "regex": "(?i)^https?\\:\\/\\/clipxtrendingv1\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "69b9f0b2c106c00b3c4e12b178c183462543b1b098394a4a02275c8d9ce52179", + "regex": "(?i)^https?\\:\\/\\/xvideotodayx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "62e4a6f26b4417723bdf85f2042f72dc868ef547629deb81711529b119a196a7", + "regex": "(?i)^https?\\:\\/\\/okmzanhytulareyuzapa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e56f24b064f6dc91ba84ab4bc38d5f5e5c683d7f9ddd8281fcac1bdc797ed1f1", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c860d5a7c08d543d34a2655c6857f7f4709706e6d17ed1ffb1c6b78a18b92", + "regex": "(?i)^https?\\:\\/\\/sdgv5reyghrtyhttgfh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9d19046b30e13e966b689a3a5e093d06c47a0f0e87fffdb6ed78bd609292af4d", + "regex": "(?i)^https?\\:\\/\\/intospaceblackcoldexyiyu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3d07ae40ffd7e95af1981d684de52024b560836339cbcd0b9a4c12e6877a69e7", + "regex": "(?i)^https?\\:\\/\\/robloxgiftcardindia\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "250c8de747f8583a8338ead2f392cce304fa14518ce4810991151fd53cf683e6", + "regex": "(?i)^https?\\:\\/\\/fullcliptoday\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "44456765b15d27387595ac25645f9d572f4125852bf63a0747c52a3d3de3d6d0", + "regex": "(?i)^https?\\:\\/\\/cellweaver\\-biomender\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5309d1dbc614b2ec8b28bab3e2b7971b4843ad5b213de4431844e83e2b094184", + "regex": "(?i)^https?\\:\\/\\/doreathapjhjn\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8f3bde6439619c2e5af3cbda7a50e1a4ad1d17bd91b496383a9b8fe1a1f142a3", + "regex": "(?i)^https?\\:\\/\\/heliotracker\\-solarwatcher\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "abdafe0eeb56b9affecd053517ca3ea4e5c771591e1e4541473b05fb0f68344f", + "regex": "(?i)^https?\\:\\/\\/ghdrhdhdfhrdefre\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1c3b871166f576f2536d88b89db0a8da12549662f10aec787ae0fc192d08506b", + "regex": "(?i)^https?\\:\\/\\/sflgiwjogire\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1b015911ed6b7eb5ad02863005bf3eb9a2b3a4acf56ee5c789759ff15f55b0d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+f720a46e\\-15ca\\-4edd\\-ae81\\-ff6e881103d8\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "13ef0f68046294b2d5f7d30a0b11436d1f5807cce18f1d5710f70b402eec0a35", + "regex": "(?i)^https?\\:\\/\\/chat\\-coquin\\-coquine\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4cb2c288eab00f8784371dda4873c045574fb8a207206606b63d2f7b087e3c49", + "regex": "(?i)^https?\\:\\/\\/qaehqeadhbeqa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0f3cfc3db6a64d1ed975eba60cfff2940985a4fbb381f07c3d36aeebc749fb49", + "regex": "(?i)^https?\\:\\/\\/webcam\\-allopass\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "24522b21e99c0e8db83c5ff8c1a44d65dc2d57fceb82b0ed884794123dd4fd36", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqhbeqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4a4e7c30fcda64748669efb7a07fc838849c3a646041a500d1582960c896bad1", + "regex": "(?i)^https?\\:\\/\\/cam\\-love\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f75f290034623844a64680b067985b08dfa74ec6c3c65845ed58b4493176c", + "regex": "(?i)^https?\\:\\/\\/trans\\-chat\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cbbabcf73bb77616c3a6725ed7dcc6d72c2e4dd048cf784eda5c4917e8d54306", + "regex": "(?i)^https?\\:\\/\\/dwarfiyvtwoy\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f35c851cbf5109d156520bb85a9162215e0acea8a6795bae57d98313ea39e711", + "regex": "(?i)^https?\\:\\/\\/chat\\-coquin\\-coquine\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e3f75d9b8a575589e01dae0a9a9743750aa82c5bba7f77f7b01037651e922782", + "regex": "(?i)^https?\\:\\/\\/deeryry\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "641bfdcfea3e1371ac412983d1128f5f22ce60e6c17c1b8b36248795f36cf8f9", + "regex": "." + }, + { + "hash": "d842ca06811c827bc9b38bcba56c06b011ba82d4d27f96da399a42227a493858", + "regex": "." + }, + { + "hash": "07117ebe7ce9629a593a17efb39b3806482a678e5e8eb7df6492da0c781cb1c5", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ad5002e44f551107e4319d2de059db97126c06efe7a50b8050a63ee1b6bbf0bd", + "regex": "(?i)^https?\\:\\/\\/sha4re4u\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f72cf0512243520d49b41907c92c76de9741e1781bb41d57b42cfd503ba53ec9", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "af848d7390fd1f0507ece39581aff1930cae80162007b1686fe1039b92b3e7d0", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7247adbdaf2644ef5f918070be218a754b770b323163466b794ddc6e58e92b1b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-sans\\-inscription\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ab5e3b70ffa904e82e55f74cbebffaf378a92ce11fdc719d3f1499a5818568d2", + "regex": "(?i)^https?\\:\\/\\/dwarfiyvtwoy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c884007d52f1a26cf42450d59bb27af3bd5d62dd19f3b28560631d26237ce48d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-amateur\\-gratuit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7cdaae1ae5846eef3e260137b6e96782b70943baffbc82118dbd3a20713e0f48", + "regex": "(?i)^https?\\:\\/\\/chat\\-coquin\\-coquine\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8f9030a7abbb5f3b49eb02e1dbc12d5a91efadbda780ad725fae3cee4a8dc3bb", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "262816dde6a7b6562cbd83712b7ce700cbb20c5e5720d7c6006b893d64a52652", + "regex": "(?i)^https?\\:\\/\\/qaegqaehgqa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b7afeff0ce7d31f6130d4b151d973507f699b25dc6797fc8a0bbdf90479aace0", + "regex": "(?i)^https?\\:\\/\\/deeryry\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0036e922166d9028fc82e88523456ee7adf98f828c5fbb49ef80378d96b2edb9", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4a5749181e372307a5bc7d0e2ca074e742b8b06513257faa7ea9ee47a501b72f", + "regex": "(?i)^https?\\:\\/\\/dwarfiyvtwoy\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "582c76748d7e0a34d2ae75cc27b8ee98f30d3975a66722315303b11c3646c165", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "737bca937061c699ba0dc0109be9527d36e40b346ecd9190ad2ef523951fbf47", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b002a506a80218bd3be8620570fb22360736fab77bf233241ffe918da323186", + "regex": "(?i)^https?\\:\\/\\/hbeqdahnqahbn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3f645647f68c641c201b1c9c9b2740a0165c67b87801c952c60d58f2a4b22e5b", + "regex": "(?i)^https?\\:\\/\\/hotvideoworldxxx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "06b511e3df990c844ab33bb7853698117addd7157e567d055dd1b1a2ed575a85", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv9\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8ce927ef16fe922bd56cdcecec2dc0e15d6c5bb374e60e16e3ba63723cd3cce6", + "regex": "(?i)^https?\\:\\/\\/dwarfiyvtwoy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c47085a692bc5b1e75f9a3eaab4a28c300cd6f1a1646923f6344a0cacf9d2caa", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "84a3ab8b799ef191480383052e57e2fa9e313cc6dc72285379180c18772e1eb5", + "regex": "(?i)^https?\\:\\/\\/deeryry\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1a2404435f76fab7be044107926515fc2b827880158528eebd64ff124b77935a", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-filipino\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "81fd67b1728eb6691cd57c406ffb5016921abcf689bab6dd03b2155ccb309d25", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8feb1b0b6176e3a960700795a842fe0cc3b3877764bbd95ece5fb54009adf768", + "regex": "(?i)^https?\\:\\/\\/erringexplorer267\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0f1f4c73e9c8c2b5e8e9f6c3bce58d7e566a8aeccbc646d1583650920b81964c", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqhbeqa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5dbf483251d4480d032055c291fea19ccf2de42d216682b24299bdb60a45f978", + "regex": "(?i)^https?\\:\\/\\/cam\\-libertine\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a63b1e327d0c929f1d02f4a5470f7ebfb004bdc1d67d841156c023e6bf6954a3", + "regex": "(?i)^https?\\:\\/\\/secure\\-trust\\-wallet\\.tempurl\\.host(?:\\:(?:80|443))?" + }, + { + "hash": "48e8a597f489fea9587122ea98168297a62c1ac681926584114b1c54cbe463e7", + "regex": "(?i)^https?\\:\\/\\/webcam\\-amateur\\-gratuit\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "89f88e3b17dcb0b46f5196a1766510a78a0049e73540dfaed72c46e13e4fd46a", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "aa4d14c56098aab17829b18a8d25328f355d294c17df3d6c87608e7445f5bf53", + "regex": "(?i)^https?\\:\\/\\/charitysupp088\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f3e98dceec0b026e1766660263c62e43d8f567b255145017c1263158914914a2", + "regex": "(?i)^https?\\:\\/\\/faircostyrfoeg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "493be1363803af02b12915604732832cb924964a912c28dc741bbfcb0d31c067", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d7cdd3bb186757af8f4bce36fa23ba06975b1fc0273cef29aa8c295fa9761d5a", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3fe770f429ed83b06714f078043c88fde5d01716f0bfe7ea2c5be7e0db5da7d9", + "regex": "(?i)^https?\\:\\/\\/webcam\\-allopass\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6d2f22f0f9e183afa6d6897c4637778ddd94e0d457296354118be14ff5480b4a", + "regex": "(?i)^https?\\:\\/\\/sha4re4u\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a2006849ee89e538d7da2d9c890717f39b95ca5970d6991baa07a1a7ff67819f", + "regex": "(?i)^https?\\:\\/\\/sha4re4u\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f06f5f595dd35985fe82a7f20c4f68e1d07620dae30f6b2df289af2b2bee5680", + "regex": "(?i)^https?\\:\\/\\/cam\\-love\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e824b229f6717f857e0dcd47600d5e7723fc1740466748b9c0c70b61251e26ab", + "regex": "(?i)^https?\\:\\/\\/felation\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "229ea5da71ee74f184aacc63632b46c52eca892f2e2fcc4d4c6fe419b59bbb56", + "regex": "." + }, + { + "hash": "364139245b89f44b9a803e4f715cc57c72b0466a262d874e4616393237f3e3a8", + "regex": "(?i)^https?\\:\\/\\/webcam\\-allopass\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6109df8ad3124cb4f5d9b6ded59effd6be4c63e2835ee98596fa5022d4e4cc81", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-putes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%25252Fmua\\%25252Fseguro\\.html\\%253F\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253F\\%253F\\%253F\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "13ba7a0b233b46f63f46126416ad1484ee56049c15c9401085cccfad6306d11c", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2d1263af872636138ff9e10f7de36a45ce285cc90df736dafbc474cde78b9677", + "regex": "(?i)^https?\\:\\/\\/hbqhbqah\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e9b65490901b3d2c4c1c4a3a9b0548ad31a82507038349a194eb848ddb3f3b5a", + "regex": "(?i)^https?\\:\\/\\/bratswitokyrbr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "867ec62c21c1cddd0a59889bc0017d59943ef82316292ed359af4f81984d7c6c", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-et\\-sans\\-inscription\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3ad12fb3407d8774fcc39a5f59f40f0157373ee08d6919bda3d1619240f96f43", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7320d5fdc501109f7a96206088ab603dd6d3126756e55edf4484cc2a6b445a2d", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "77a67d8ab76e61cc158677b199296f279dd264f35dc18a2840747c40976253df", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+bafybeigdt625aev6svvzvci5qbq375cuccqwizoo5xou6cihy2alhp2vdi\\.ipfs\\.flk\\-ipfs\\.xyz[\\/\\\\]+sabbollNG\\.html[\\/\\\\]+$" + }, + { + "hash": "b7dfd9ed580844fcc9ff7e9b23e57b4cfc0d8fafc63ae1020ab2f1f1259be60e", + "regex": "(?i)^https?\\:\\/\\/hotvideoworldxxx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "42753128ae0293532ee4f171d7850c9f8f0cb49a26a8a7e8ceb700e1248ff01e", + "regex": "(?i)^https?\\:\\/\\/tchat\\-web\\-cam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3d1a910f437841c38c4c6a7ad177c948501662e9910fe334ca7d7a9e68a5c324", + "regex": "(?i)^https?\\:\\/\\/hotrave2024\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ca8c4834b3914f04e9c0f6c5dd1f2c442f2509413ace22a57fc9c5475f1962ac", + "regex": "(?i)^https?\\:\\/\\/maseeng2024\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "317d1a6d5226e79457f4590ec0747afcdffb7e2356600959e24d5461e390f22f", + "regex": "(?i)^https?\\:\\/\\/tchat\\-nu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "23014b629ab69f004df214c0d2278a64aa9336729c6087405a0dc80dd31ce262", + "regex": "(?i)^https?\\:\\/\\/tchat\\-web\\-cam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2e8ff774e8eeccd7636f18f68ab0ee2869563bacfa6f826ebb626d59f1b4d332", + "regex": "(?i)^https?\\:\\/\\/hotrave2024\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "47074c6a9fd48e5656bdb76ebf20e53c34f2ff96f134f1a3a9ecd372c1471c8b", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9558667dd57ccb031794ea9af716e09bc7dc596eeb66d2b5bad1beb92ea5074c", + "regex": "(?i)^https?\\:\\/\\/liveshow\\-webcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e387028f086e002693e836c8279908b180dddaf5ffbd57952198c6235ebbb96e", + "regex": "." + }, + { + "hash": "6b0f8a2550faba8379977b86e8ff51303224d6ba242d18ffff7c8f1471478c10", + "regex": "(?i)^https?\\:\\/\\/chat\\-salope\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6faa625cc3c86961ccd55a6e56c87a89058572c727b5b199ccd3c5cd91601777", + "regex": "(?i)^https?\\:\\/\\/chat\\-putte\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b0981eb09ef523c83802343b60a93dbc6cf27807837661f6c679e4500b4cfefb", + "regex": "(?i)^https?\\:\\/\\/hotrave2024\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3d8152712c994c983dc6f4bf5c911d51859da25d17b286c8af385975f0816a81", + "regex": "(?i)^https?\\:\\/\\/webcam\\-allopass\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "acdf73ca5294ff7f8265cdcc761d8cadd4528938a747ad2ea238d0310586bab3", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3c2a0ed6ad0604b8903aa6291573e9d60b6cc87715d8f930bd05bf7fa8d84dfc", + "regex": "(?i)^https?\\:\\/\\/deeryry\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "528b5d3f4e7aeed2eb23e55cf367168a76eba81d69e54c2284ef1d2ad0490d15", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\-jillianward\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5f65949562f6ba6a6d3b449d4f34a8f49611990d02ce85e60e7aad548a005d02", + "regex": "(?i)^https?\\:\\/\\/aehgbqaehgbd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1240bd405080b100656528b0101d11f8790027b234368418da276e0ccf338760", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "57d27a83fa223dce502bd0911497d390f6e48bc313c1c65cc681e5241d91c3eb", + "regex": "(?i)^https?\\:\\/\\/hotrave2024\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "82f4c54a932438f7998764fe4b970e3ff0604ce4fbbf021e43b5c362aded11d5", + "regex": "(?i)^https?\\:\\/\\/qaedgqaedg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+$" + }, + { + "hash": "6a37e39686eb45177467096ad1541a03f408fa756e2e94883c8324f779da1a23", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4c1e77dba2a9badaae0eb8ecebce8b18b3d2a6684012604da1df940caefa4669", + "regex": "(?i)^https?\\:\\/\\/hbeqdahnqahbn\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "04c85962793c35782f29bf64213000e4b9f9cb297bf8b5f402c9775b9e44cbc6", + "regex": "(?i)^https?\\:\\/\\/sha4re4u\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ce779e010b22093d9b80567e0d9c4880d39e5c7acd6c7b4e769fefd01bd6d18a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "31394c015bed9c350610f0d1b8bf440baf06379a6e3be33d7409a4abf9288203", + "regex": "(?i)^https?\\:\\/\\/felation\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b62cdbc99be07a5a2a7d9431050f327e326aaf1d9d2857b3c5f87968ad1a3b3e", + "regex": "(?i)^https?\\:\\/\\/liveshow\\-webcam\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "913bed8926d24a133463ab3a17e1769e5edda21d9960fa9a98a54ae3f9644426", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f6584d661a433bd7667dba5997c4b743da89c890e5d5cbc45e65ab3ac746fa9f", + "regex": "(?i)^https?\\:\\/\\/maseeng2024\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7d2ce304478fa962ff091338126a067960edfa5857d54c5df2d831b3154f298a", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbeaq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2e723d911afc19b0ab8acbf8a5fbbc2cc0dccb6aaaa097f0d74d4ec56baf1e8f", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bae45a9a7c45e485088e86dbc2e0f37b2dc7510b24707bfb89bb46e4c0e43f0a", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "36f9f057b02856aac038b815b36291c7ef1e8eaf14e71d84ff913a456411d6bb", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2d3be88c64d5909f2e81df5a59d01e990008113537d0692c5bd080bb81a7d884", + "regex": "(?i)^https?\\:\\/\\/hbeqdahnqahbn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fbafybeigdt625aev6svvzvci5qbq375cuccqwizoo5xou6cihy2alhp2vdi\\.ipfs\\.flk\\-ipfs\\.xyz\\%2FsabbollNG\\.html\\%2F$" + }, + { + "hash": "e397919fa76f4ed05a6c2d4a07f6ee60b509436132bc70e0ba30bb9f265e2d8f", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "61a4d3e70e650d9b782d66d071dc96010311c20fb6f14a52eaf48d6f781a64aa", + "regex": "(?i)^https?\\:\\/\\/webcam\\-sans\\-inscription\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "60526ea77261f6b12c599f500cffc2c2019f608727246e009a04c7be2d9c539f", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2084e232a95a47271f3f5c86924382d4a99296eeabb4f2758229731503c4901f", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4d12fd0e750151dee35e06795a80edd027b02def0312d6c479e2f93fdf17036f", + "regex": "(?i)^https?\\:\\/\\/maseeng2024\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0279e082a93c1bce7dfcdc9b7ca8ffbf2ee484f282ba4f73352a5300046772d6", + "regex": "(?i)^https?\\:\\/\\/anarxeplowbiz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9238241479b5ee9ca98f691f4af6df483206f7df827ce67bc46ab6572a43da62", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c211195ed34576c403fecffc3e38bb76888b78e935428c7248b6b8fd35cb9a67", + "regex": "." + }, + { + "hash": "efe80fc89da526fe08b8e66d473c1a0f76395397130a124e6dcf68cacaaaf3d1", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbeaq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0f5e0a7f73fcf590db1f2b847189ff07c4d7843ece31317593822d69713ea632", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ec883f276d82b9e7404d76cb1138b704222bae440a62463aeeb02b4c3348cece", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "962ba53a11f24be914138cb304967c9a2823453367916c942b414045d2476360", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-gratuit\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "73c4dfbdbf326a29d10b60562bffcc0f1baf2dae3c491b6ab81cbba266d3a265", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e65c9b89004a1dce9143fa67d24559b4baea2619b4cfeeddc77f8b0de2bf64ee", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6b874ab98c5b24b860dd05ba47a2aaf12746eff8fa9febe1d4e07f4b9be94db4", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "350ecc0dfbd98da519510cb5dbdecc99c5d9a94b9aad38ecb773b7ce728c3c16", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fc204ec6bacdf45b684326fe51009fe0cac164783f952618b77dee3959dc6dfc", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "825b1bed000379169f7d3d52eb71f7971dbeb019af80f40cd1498685414f88cb", + "regex": "(?i)^https?\\:\\/\\/qaehqeahqhjn\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2c8e41f7bcd7ea86d79ff5be504fbec8c0dd92de2695677de5f0e96d25913ea8", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2239a1369daf77d31ae3763e5c2ec5cdde3412926b3aae9db5299b7b546856a2", + "regex": "(?i)^https?\\:\\/\\/strip\\-webcam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "28348b412028fb07f33407123d7f37f7866c4bc94d98760d59a7ca66cad33cfc", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "1fbfab5f87f3e15c5a05faae1852cb1c7e412970e14a1d02d9db8b35f6e439f6", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3b3aed488abac2b40a36e9942d472305f034a3ca438c657592d1d2d91032d9d5", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-to\\-cam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "258aded0706f9271819ad3a334c02bdd89afd4e07a01f6e2ae7089f059fa49c2", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e7abc47403315cb8537445694b0ce2c5557efdc1b66225542aa11d5366260a8f", + "regex": "." + }, + { + "hash": "8acd4b4953fe5d0c8717c22e5d2ec44992be1c3172fcfa7433739a0cb3586122", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2c3fa20a93ecd074d87961c337eed1792e30906ab5f925e643118963ae12952b", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\-jillianward\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2af75e409e3346c2bb9fe41a2cf13c7ae734d27a0d15cad5050f62cb7adb3a28", + "regex": "(?i)^https?\\:\\/\\/hbeqdahnqahbn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "45539781374f1332b23f051e5170c70ba648dcc36585d96314acaba289c5d675", + "regex": "(?i)^https?\\:\\/\\/camera\\-cache\\-porno\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d713f857a80919354aa2b75fa85b67996c8a27b2ed6d23a678c831fec53bf5ec", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-porno\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8c45059a5bce270716dbb3185aa7f880f037a0457c9aa5e9b6562642a1c3dd84", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-putes\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "93b25357d69b86077f40b2349cb247655faa312a29d7a5cf70f0782c97d3561e", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-porno\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "600101f964c22f47a4e8a9a34a65e40747b8028f09b9bb374c0f77227a38258a", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c0706b45c2e53bb7bc51272fe3de23ec8648f06c3f631e8a3fec292acf9ffba9", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "117fdd0a0d36d18530371788758e3426cfe09b7f276ac99d324693f0e9f7ed58", + "regex": "(?i)^https?\\:\\/\\/beqahbgqaehgb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bf65e9751a61419a657fa5ea1fec9dbc5d56d200d5f9170ddfba83052484bfdc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auth(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ca66eaad5bfbc919536b6e2d45f41dde8dddc999b49d4980ddd3dfe0251701ae", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinex\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "59437e5569003ae4a09856cd0c9dad40f1b39787703eb99b606dc8afdec8171b", + "regex": "(?i)^https?\\:\\/\\/beqahbgqaehgb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "acd2af8cdc8265bd16fd120ecbd67ba5f7c43b2ac00043c09d58246ad3329b1b", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "587f7bee66efeac174ebcd9db2418c4494e8c0957cbf69f66d302bd3592c7e86", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d42711959e289139dd89dac2e7bb7c16b3f3c0115c68b5d3e098a1d114c42f8f", + "regex": "(?i)^https?\\:\\/\\/chat\\-coquin\\-coquine\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ce3345a9cf3c7ed028d6a364b407bad1bc6e7f0d69b1fd44431a49a1bd228d32", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a9694e2e15a5e8c6f2c88ea0c8a3511f241f2aac0003451ca6df034b316c87ee", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinex\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cc8a760743e19c39314ba6c1c321fddc70f32aa0f34034aaaab17c4bf440fc1b", + "regex": "(?i)^https?\\:\\/\\/amazon\\.fguqp\\.com\\%E2\\%88\\%95lzwqaieg\\%E2\\%88\\%95dzwztus\\%E2\\%88\\%95gjwxcmr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDkoutfo\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a1a9a072f963599d78bbb93eba321a7278e0bf73253a1d6af632d42a4dd2cbcb", + "regex": "(?i)^https?\\:\\/\\/aehgbqaehgbd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "146ed4894005f9f773c07ab7b14bcfbda5719a0b68e28c0e214cc466b4afd95f", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-gratuit\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1c89b97b38f12becbb6048ee8b17fc4a2c0317ef0fba7002afd063914b932987", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-en\\-direct\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "83cf17cf2cfe56246ef048c7207775bf2b6224c52b62e5b387032efd2bc1535d", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "58c3970d6e445ecefd512ea94800871bfaa34128de1f0f3f9679069bee21e93a", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0c6de3d16842380b9c3eaa2eda777593d9626801522610df6511badab3f04681", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a8ee8adebd75677ddf2be12c63641eead1f24632e6f2d4e635fbfc68d3f4df23", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8344857a415af5509b33143ef6a97b223f3a194847d633b4e7c41b6b834894c5", + "regex": "(?i)^https?\\:\\/\\/chatavecwebcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "41fe79071abfb8fca257c64eb69c47ec34f54d9f4ff96ba515e3d0d83d68d8ce", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv9\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6cad1379e8d855e0da119759d1a87943a2f283a3a37efa86f1ddd8969c4cee36", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "10f1a2a3a51f0e68544e9248775a5c90e7f66598e9013df1fb32d49035d1f6d1", + "regex": "(?i)^https?\\:\\/\\/hbqhbqah\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "75902188681e884ed4a0b20f54fdefae0d99065e71f5af8df73657170aeb48ae", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5ff38ad6d4363cbd49f9ac99b849bf9d3f1799191e14ce97eccca59214e4ede0", + "regex": "(?i)^https?\\:\\/\\/qaehqeadhbeqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b6a4272253d7587652208243c46fce555a3b3e1e9e608d6aefd241ce4617e2ac", + "regex": "(?i)^https?\\:\\/\\/aehqaheq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "665f128ef3cc4e600fdf4f7a9337ee05932397ab98f0325066cc777919c00cc7", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0461c239175eac9aa15113f4a8a707cd9854039fc039fd45f8d2b95bb9e9a8d6", + "regex": "(?i)^https?\\:\\/\\/liveshow\\-webcam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c47836cd6edcf4e3cd0af53dbed6d318ecece1122a8f6496c0b7331bac02d258", + "regex": "(?i)^https?\\:\\/\\/chataveccam\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%252Fmua\\%252Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3F\\%3F\\%3F\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "67e1f60e1cdf023602e4f4e351ccc6fbfbf6737f79aaf0ef19904eb8d73c77da", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "603d0f02fe7a3e5719b093f5566da0f922c86dbc200b1f541e2bd83637a19f1a", + "regex": "." + }, + { + "hash": "1c5b2835f44b43db365df6da09a0ee514aef85f9499497517fc4b8cfe43c2c44", + "regex": "(?i)^https?\\:\\/\\/webcam\\-amateur\\-gratuit\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "41a6349b81b76c811c975422385c2e2d04d71aaa34579c12d0508e58ff235128", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-direct\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8fb7d148aeeb001dd08ae6a4baa714611b28d53dd91371bd823ee059b729c021", + "regex": "(?i)^https?\\:\\/\\/qaehqeahqhjn\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2312818dd0cbc3da4e33bf19a28d8bfe62b5b2e1be31fd14ec1cb56205f2b674", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "34ba0bdf326dff6a93e810943ac1814324008830d672473e2af6d85fa43b0f15", + "regex": "(?i)^https?\\:\\/\\/felation\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fc8bdda1da159381a22a61233b191feaf3b0e3f58bed418ada2cdd609e4ab7e3", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "814ab9746cc940273ef166a5e5166c2e3c7b9faee9b3682bb213688161d73211", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "32763b7ab6c8a1478219d780c0209ba84ba1061d83e9984e7b1baef488fdc29b", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "36d74dbd34d8f9d7e9c0c0e0da8db0ef1e7943553373f93c99ea4fc21acf86b4", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f371011ea1a6ac5acfff30989e7c4bb3b3ba9dc4818b571a978a8c04045c7800", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-sans\\-inscription\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9d64ab53ca30dd33254b9c07a166af337b2bfe77ff219c80de77482a9f154169", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fd42b561cbcc8f4589837ca1b58c72e8cf0e50c858564f1dd149380391bd5395", + "regex": "." + }, + { + "hash": "72b5a6838225b92005fd5a8c53d8e1417ca07ea3e04809739c817da7d00d9eb9", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "353c557bdba061cc68f8a41664b6e67bb4e5cb87dc024ea27a11415708d6398e", + "regex": "(?i)^https?\\:\\/\\/cam\\-libertine\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "eda5f7b17bc4310e329a33ceb54cf1957b77c69c21085dadcc86a0c00e091900", + "regex": "(?i)^https?\\:\\/\\/felation\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2360653a849081bd9418287c074aa6c2fb77d13115d73aff97b2440a5c768a17", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-filipino\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "520ee1e5ae0b7248d8e53cf4c86de8c7c4e8dbb1dfd6d1421189f277a9c899f1", + "regex": "." + }, + { + "hash": "3d81459e2520cbec518905d2fb208f238f760aa67ae1b57311c00c811602cfe1", + "regex": "(?i)^https?\\:\\/\\/desodmtvvvw\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "93bf50640508f24ab8a795cbd9627d118081d88f1b9e2970dd4a83e3992c7d2b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-sans\\-inscription\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3eaa4f087e1302534b583c7fdeef6ab02af2db50f1cf0a03ac37e3babca0dcbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9193[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "47a3047da53091b2bce85df3b58829e5b5c6298de53e18d42eac1158baa3f516", + "regex": "(?i)^https?\\:\\/\\/sites\\-de\\-rencontres\\-gratuits\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "8d3385523e6303551cc2081d615a8d4a109d5474345b6b8d9597d21f56407750", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-direct\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f7bb2241e6609da1689ba98342d7c2011cd507667f634a639fb2ccf7b1013259", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8d10f9a2711ef9a64e15d029c0a0c078cd7d4fa643c50f066e3cd2214c95f46d", + "regex": "." + }, + { + "hash": "5cdd5150ca4f2c95cf85028698fbe16587b6a1ab59542a525c3bec61738dad21", + "regex": "(?i)^https?\\:\\/\\/cam\\-love\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a85edb63f73fda894a6444fd3466562645b62a1f265b05583b809044e572c9c3", + "regex": "." + }, + { + "hash": "475b9fc71cb9ab58fdbe28a2b820ade72e3080db2434e84b7eefd21621209737", + "regex": "(?i)^https?\\:\\/\\/chataveccam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cbcf2904ad88dc863a8b2e06fb71956b40ebb95059fb4cf560f809da80a3370c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-amateur\\-gratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e55f6b6f886f79538c3716507a0e5fddbe52de55a1ec77094e9f973c899ecb73", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1df6ebee1a94a069882befcbb007919889825e48d62be24487ac7422c6e3754b", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "973ebf631d9bc552dfbb67d2ad00f155f809c15d11c7a5f27a60facec3286d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%25252Fmua\\%25252Fseguro\\.html\\%253F\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253F\\%253F\\%253F\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "1f8dce7aa81b3fd57c5091c16164b854b41e53bfd86052063ea06333b18edd4e", + "regex": "." + }, + { + "hash": "cbd560e35e189fb5752f6d134874d66d685740766666275fdeeef788b1b38ad2", + "regex": "(?i)^https?\\:\\/\\/faircostyrfoeg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ec9a35c39ce010fa6bf13e1069c1524aca29688fad7e57fd096053cc2243c875", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-putes\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "75df4c87b45aebce2e294516af1f83c7475b8308a80ad71a655e92c0fb2bbc4d", + "regex": "(?i)^https?\\:\\/\\/anarxeplowbiz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ef911734fc629cbd28ed619c1bf89a924fd495d90e96e7ad51ff50c374d02e5d", + "regex": "." + }, + { + "hash": "33809d95c2e30557329e40c63516f37e0ba8bb304bb152f268a32a0b520ba0a4", + "regex": "(?i)^https?\\:\\/\\/charitysupp088\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "941c07b4f7a788e877ccd71190c99a08d56f491950ce14fbf1400e81c83bb739", + "regex": "(?i)^https?\\:\\/\\/webcam\\-sans\\-inscription\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c08f28a21244aaa220c06022840f01719159bd4dae482df00cb348336a0ac36d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0ca72aa74d7527a59fd56138b641948d1940c4845b670bafece1586ad46bf21b", + "regex": "(?i)^https?\\:\\/\\/trans\\-chat\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e0cafcd54dcddd9abe1db9a4fc012bc5740d5b355af3ccbfcc380110048c3938", + "regex": "." + }, + { + "hash": "691ee7416784529161ecb8d51af51613bca30d1493a473ae3c38550743370761", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "80772fa1f613003e6ed43c7e898b3dfd48765955cb49a2abb43776c4af19235b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9647e1e362f7c5e872fbf3f6e846bc3019c2b3e79f3b8b3dc47dee44cb03492c", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "14715eff162064814f193cbafca6007022c7cea9cc24e5cf2869040331494498", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "4ba039e50fc5091488a939ab2e8e8a8dac63653b2d56ab2b347348c1d6d77498", + "regex": "." + }, + { + "hash": "6e41458fbf38af8c08361d1b3d63c7636a7da1d885efaaaa9f754bee75254e30", + "regex": "(?i)^https?\\:\\/\\/tchate\\-coquin\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "72132655a526210fe2bf43c223cba91cb7cc94ccdc177f14dbff9a66a08024fe", + "regex": "." + }, + { + "hash": "6796687fbc010c841dc67aa02963a4c7055ef6618df6e9bcd15f971bbe575c3f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinex\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3cc6d218aaa856241a96a7e9e8402fb6f9a587e8b509b0f3ea2a8ade48fd61b8", + "regex": "(?i)^https?\\:\\/\\/hotvideoworldxxx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "505b10430a61ec4b9bae83cd178a4c5e7a233add7d97e4ffea963bd414802d8d", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqhbeqa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "55d7624e2a72c4415c83fec85ed664ba92e4b925e4814c6ab2a1d805473428b3", + "regex": "(?i)^https?\\:\\/\\/hbqhbqah\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e9eb9ee68187f2c8335385ee7f7c7b73adc036d5519616caec05cc3fe6f95354", + "regex": "(?i)^https?\\:\\/\\/lives\\-webcam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f99f15ef0039fa775268f2fbbd721a2bfa795c28d196e1a3782e21c115eb2c04", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "27f693ee87919782a9133a8c6c61468501182ef6a6adee27a7b84dd901cf0068", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e79f42465a9e8f8bee65e683adce6e1759d5e584e4884007c449b5b43b73ab9b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ret_url[\\/\\\\]+14741b43362535f15d3f84db7776deef[\\/\\\\]+key\\.php(?:\\?|$)" + }, + { + "hash": "8f7a33e2eaf5739297e6d95ffca498f71c68152dbd38ca17bba7f6e2d9711a1a", + "regex": "(?i)^https?\\:\\/\\/lives\\-webcam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d80dcbc1494fa6423aec532735a5f78a9a903e241ee485608500aa36be1d01f7", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinex\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b5aba89f1d690886f95c1823f1016f1b69c0cffe55d78703b8b4fa6237a1f9c3", + "regex": "(?i)^https?\\:\\/\\/trans\\-chat\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "742108ed62da6985d423368c1a54df71c4391b98e67437ec3c427d9a94870071", + "regex": "(?i)^https?\\:\\/\\/webcam\\-allopass\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "14cd073ed4ee79f86d3f3f9d6fd7e8d8976a382dc52666c407646c8046165fce", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "15acc5be5838ce92e82261fed0a5d79c0821e65b9e09c5da9db7c43b6102882f", + "regex": "(?i)^https?\\:\\/\\/webcam\\-sans\\-inscription\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fb009fbcbf0345dbe5e98a9f271330da7d13fd249b87ed21494db685b176c9d6", + "regex": "(?i)^https?\\:\\/\\/deeryry\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d5158825acfa1cfe193cc555a7783c2041f2085f41e4763fd00e594991481d79", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8addfd2e8bd54f788d770bc60debd2724e8c1070adc95b70f4178892ac6cc846", + "regex": "(?i)^https?\\:\\/\\/chat\\-putte\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f0e09f1dbb3ba47c44ccbb2be421f7692b7def663ba7a46013fe199c7ab5fb50", + "regex": "(?i)^https?\\:\\/\\/bratswitokyrbr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "32ce8e680a2d799495024497f46eda12ccb3dd274eb64c7d820ff5df88554efd", + "regex": "(?i)^https?\\:\\/\\/tchat\\-nu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "93e1ca405c5d286ade6912d8ed738aeac9618e194a6f2bc16a5b74d1711933af", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c09fcb5cea259a31c136cba63c15e77c6441ed2986173ff2d5f262ecb2e52b14", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "965f9dd266bed6a0fb37b61ba50115d6c3a3649c918cef8a0713e4d5b94429cc", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6ca8d9126d408a2022ddfb5626ba812fa9fe91cc11d38bd0d5fa755bf2338f62", + "regex": "(?i)^https?\\:\\/\\/hbeqdahnqahbn\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4253c8f58d35df2d36fce7371fc257450edd40f170ec53d7873be510df03135a", + "regex": "." + }, + { + "hash": "b23f493bbd7ee3725dbd89710d2154f440fe15bc7aad2a1dfe256c7b78da8332", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "283395ea7ef60282611183cb65b1167751f0e2a895ea1b3208ee6c6c16e3eb90", + "regex": "(?i)^https?\\:\\/\\/cam\\-libertine\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3af5286cb4ea54a87bac185a1b07794a190c75df7a9ef8df4d7264d42ce1a117", + "regex": "(?i)^https?\\:\\/\\/chat\\-putte\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3ece6972aa8c035e59ff2ce8db642eaf18b01ca5933517f1c9a987acf6a1f4ce", + "regex": "(?i)^https?\\:\\/\\/chatavecwebcam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2bcc7ac8233c9f140b63c372b7338bb22ac35ea6695684b5c77f81a425c5c539", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinex\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a631781ae07a10b55512b841b43f55bd23d4ec3b6235b47f3426a6f3865aa55e", + "regex": "." + }, + { + "hash": "9d6bd55ad0c77279a26e131b2a7e64fb55c7d2fa16eda198a53fbeea87ff5b68", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fdf46ce702490937eb72a463b742f5992d9f1ede2d2d63f2b4dcd9d1117ae199", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\-jillianward\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Order\\&a\\=daikuan$" + }, + { + "hash": "bcf425a0b128fb643436669ed68fbc21472538c311432ad0c0c4e6c6bc4abd87", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b167b0a335279ef10fcd5540390e5422e034f0dac32bcef4faadb3d93690d", + "regex": "." + }, + { + "hash": "a287ad49496f9e3ea25d0d8598fe755f3efc209912c41d4897e3e56117731759", + "regex": "(?i)^https?\\:\\/\\/hbeqdahnqahbn\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d6917a46f33574f1ef9ddaf8fe4de4a0cdcf829305229d4730154894be06e223", + "regex": "(?i)^https?\\:\\/\\/chat\\-putte\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7c061c08aa9c391c5c5edcceed0f59eb47dfe3fb97b9caf78d681f36f85e4900", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d4cbc3b3104ea34ec7e42857d6be2cc596caa9363f2f0b94e4e2d7592fde3581", + "regex": "(?i)^https?\\:\\/\\/chat\\-salope\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e8fda789c9ededf41e06be57afa5609cd719311f324e797a4ffaa651738eab3a", + "regex": "(?i)^https?\\:\\/\\/chat\\-avec\\-webcam\\-gratuit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cbba08c744ffcebb4356abd425ede9a89aad4080a0df3d87f948bd4f4f4cb575", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "932ccf06fe7afe90f257b969b7e1ab6b26f100533db4a02c80828e8d158718f6", + "regex": "(?i)^https?\\:\\/\\/hotvideoworldxxx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1e7fb782b0707389f293b846b4c1a4524c77a1576a401322094f8c9e4e7e706e", + "regex": "(?i)^https?\\:\\/\\/lives\\-webcam\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2dfd640efa28de868f14fefa559f4e3ad0154163ce51a1611112ccd298d55c4e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-en\\-direct\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "41932016cf3332658c9591ad4a5f3c9244c93fd52d9ec7eaa8edee7f9451f7e0", + "regex": "." + }, + { + "hash": "65556dbce3a9c465effc5fde920b3777491a92d54c117528fc34ee8a726356ac", + "regex": "(?i)^https?\\:\\/\\/tchat\\-web\\-cam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "794346f4f051e65e1b3fc51b87f05e42d38e36c4ff8d4df230c6f94727f18b22", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2613110f4858b3a050d62d03ab82008ea4527fcf57eb060012f17a1add04b89a", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "eaf7e4ead150c0c246db2e709fb28471f934ef065068aae15c07d5a791c5d391", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2c13db5c1eb476be7e3d3108f991d758500fc29e5219ae1845f4705ed7e14239", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-porno\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3fb90c962242143555063b2d30c597a73adb4f6bed817d416d2108a5486cc8c0", + "regex": "(?i)^https?\\:\\/\\/qaedgqaedg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "a4b5dea2fe44c9a7b778aa16e5374d8bde733b05979f03432ba8f29828d82852", + "regex": "(?i)^https?\\:\\/\\/cam\\-love\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0e74a755fb3225e1914a3fe1c655cea76f631c774b77e2962938d7c800ba35b3", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zuocagjh\\.com\\%E2\\%88\\%95znino\\%E2\\%88\\%95jfbajvgds\\%E2\\%88\\%95ilzztpin\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zqmxm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a83bd64e6ec1bcd4e7b6793b9ae28f217f269515edd47bc32f1596aa9b10a64", + "regex": "(?i)^https?\\:\\/\\/beqahbgqaehgb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "384c607673a8faa96ce8e5673304efdc283dec5116480cc76ad5453b73024103", + "regex": "(?i)^https?\\:\\/\\/lumlumsundefinedmtzz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7bd1d6f8ba8e677380ced5df11ddbec171a2b77dd567f3e8ecdc27e6f53ab128", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "27dede9974ad382de6815546e5eb32ba877570b21c409d1d4820516ac3847e1b", + "regex": "(?i)^https?\\:\\/\\/aehgbqaehgbd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a9abd8960e53b773291123e225474a1d3b4fd2b612a0317254c466f55a149b36", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e588384b38eef0120c9f0cddc10dfdfd813c46fabce5edd98ded0df0784af496", + "regex": "(?i)^https?\\:\\/\\/lumlumsundefinedmtzz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0d83938bb2b57ae515e3f1cb4953cf62a733e074407e857889fff8d9e81f3f0e", + "regex": "(?i)^https?\\:\\/\\/qaegqaehgqa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a56cd80a0b51eb83197e9c88da8711504021d52766bad85a38b653350b4d4246", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "411c60aa35a26b648fc6cc84d5f675ba2ab8d807962ec4a29587368850008690", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8477d5d81260f1daf6cb6038babd753057c0d36c6a8b2be806e813645669647d", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "089012f62dff287441964730fa522010ac676d89b497b34238dfc2c0982bbd05", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6ef92c5e9f150b42859678479a324fff3ccaab9a3a09426bb848314ae8b99026", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-porno\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b29927a74f151dd2cd4d46165899e2dcedbb43ad22f8161e05661c0a7acc789f", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3f5f8d0367094475229e50acea8647f7e3b93cee657f9210c329406bb61bfcef", + "regex": "(?i)^https?\\:\\/\\/maseeng2024\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e16872a9dd64151f2b2421efc0f294831658a3b52adade5a8725e2327318f378", + "regex": "(?i)^https?\\:\\/\\/chat\\-putte\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "92f6c04276cae662ca0c8c144a7b357a23eb280bcfdc206be119d1aeba3df9bf", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-gratuit\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4dc78adcb7db1830292ad738a7ef20b3e74e6e19a55a9f5fb58f8043077a33d9", + "regex": "(?i)^https?\\:\\/\\/zevsatlantickingqbk\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b65cac015ae5ae4afb41d2f247a0b2b6cb205a51dd3c50f1df064376614aa219", + "regex": "." + }, + { + "hash": "1a7f1c349a01b17acb6fc5e51a4b33621cff96c9b4b49d5a5d936dea2ffd465d", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\-jillianward\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "06debeecd443c20b6822486e3c1d9a3efeaa0fcf3877027c5d4a99028185e4b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9ccfaa4e06cc61bcfe1116c499c410e11bfcb690da2a0c278fb46c0462998812", + "regex": "." + }, + { + "hash": "416fcb2a17e2d0ddd2de9b090de8ca94478f411c63ab83e3b826eb0b36132486", + "regex": "(?i)^https?\\:\\/\\/qaehqeahqhjn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2c2b3eb34452172bc6715aed224beffbd08d48ae2e9d1467d77aa5fa2d7f413a", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0a8666114af1eff30c6fefe109f04850b9942f61c5352507697d4c4f39eae036", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2639bfbfb88b681b6435c55975fd6c93df5592a49cf94ff82d2488e89bfc76a7", + "regex": "(?i)^https?\\:\\/\\/chat\\-avec\\-webcam\\-gratuit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2bfc8a069c72f5bf2de42e7f130d311eb26c3446b1c613ce7288fa15c14407fc", + "regex": "." + }, + { + "hash": "943143516dd4b1725120317b9fa54d940c1da58654ad0e56367010b1e33f237d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.btcpzrfgokm\\.com\\%E2\\%88\\%95nhrwney\\%E2\\%88\\%95wjsfvyqko\\%E2\\%88\\%95grbrhp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=snzdqm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b3a118304cece5bac9bd99cbd0aa1e051d9c57e7c33c7546dcde45775dd6c05f", + "regex": "(?i)^https?\\:\\/\\/chat\\-trav\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f615e6e735d6c2adecec0728b56e1526cfc12e077084d5815214642658c0501d", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a73fcaf589c38edd26a823302c29ef5df090475c7ab99608edccaafb3aaef357", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-gratuit\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b42b775cc15d9b1ed82d40f28680f68d71874fc6dda07913bddedf6ca94cd03a", + "regex": "." + }, + { + "hash": "ad15dd7a21de59c00721b087fe20c966467cec34505d058d536859f4ae478dec", + "regex": "(?i)^https?\\:\\/\\/faircostyrfoeg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "71104c219bb07c4bea8e4d6f6aaf76e6a08efb21c02574d549062a7a77d03821", + "regex": "(?i)^https?\\:\\/\\/chatavecwebcam\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9a61c994e3c95c51f2475828e1a7dcd8461b247cdd5f30a172dff3a70e628d21", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d4d1ddf7bf10344a7b3ee826e5c956527bbecc731813f13b306cef2038e3e50e", + "regex": "(?i)^https?\\:\\/\\/aehqaheq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3d455c21ed22b7cd0a541b157cc8933f4980fb2caecf1b96f67b74118ff80056", + "regex": "(?i)^https?\\:\\/\\/qaedgqaedg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "15a5fa1c40bbb97ce135aa1a9d3f62097cf2d4977802d3012ceabdf7930a3053", + "regex": "(?i)^https?\\:\\/\\/qaedgqaedg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "15e45538784e80bd2ae5a1c326c75d49dc36cc23602d10512a99c6f252070618", + "regex": "(?i)^https?\\:\\/\\/tchat\\-nu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "faa585e8e07db03a078ec165d8dcd0a68b2536a433cbca7d0477198f5bc1ec21", + "regex": "(?i)^https?\\:\\/\\/chat\\-avec\\-webcam\\-gratuit\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a66d35128ca1a50bcf3aa37764679d3778aad26ecb2da6578db46c1a9842f7bf", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbeaq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7823f7a4191349b4efce770dd67d2831ead93cb9852984bbce31e2f08e33c082", + "regex": "(?i)^https?\\:\\/\\/webcam\\-sans\\-inscription\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "804cfcd2a98ae4840e34a16e415fff2bdfe77e19ad2c4370dbadb15e39f64983", + "regex": "(?i)^https?\\:\\/\\/aehgbqaehgbd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6fcfe43078e1bbd63a24b60152c4616c364f51d7182a08586f909f26dc281cc3", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%252Fmua\\%252Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3F\\%3F\\%3F\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "a11dc3132423c6e9e04a7fcddd9f22cc05f4b6d0d085a9edfd073ef020fe46cb", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-porno\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "09b3bab572911e53584800bf4031c3dd65c5baf2824c5f4558b258d438abced7", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a4ce166d78973b5840fc424204c164c6cb889113345cf9bd78db81c7f449d6b1", + "regex": "(?i)^https?\\:\\/\\/camera\\-cacher\\-porno\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f341fccfac9717d175fc3108394f23044d11e5f335ce82ddded3eaa32e5abc7a", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c90e4694165e3399fd79d57934f583590c62668bc71d0ff9bcf0b95a397c971b", + "regex": "." + }, + { + "hash": "a92389824a87042693b538f700e011cc96c947bc41f985297a57e3c43e85ab4d", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ce3d5f48a1fe1a039edeab967ef188c216470fe16e0affe592b6f8c683679045", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-putes\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bf2aeaf34ad0b929f3822363136cdad83c6888ca1ddb622350efccaa1f5cc922", + "regex": "(?i)^https?\\:\\/\\/beqahbgqaehgb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ff17c3f3a17531c7ef65e828a2af9795eab2c64dfd7a1957ab5bcde362f5739d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-amateur\\-gratuit\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "017588cb44a4c2b0da124777a447065d34626bcc97963f1dc71feadd6d724d32", + "regex": "(?i)^https?\\:\\/\\/aehqaheq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8ae53da5513aaf6310d08e8667ffdb58a46d7cb119fff47ca30711b71241d569", + "regex": "(?i)^https?\\:\\/\\/tchate\\-coquin\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "431ebf342c10ac33b58db4d6e8f6c3d8bbe046b3b7876c0c2ae1ec63cf649c2a", + "regex": "(?i)^https?\\:\\/\\/charitysupp088\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f09b4367e3e53301b2bbfab484b32a99287bd6b30fe0318505d56049c16ee615", + "regex": "(?i)^https?\\:\\/\\/chataveccam\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e290e530804d47ebf58fe344ad257cbcbbc8ab72cb723f491a57703f43088115", + "regex": "(?i)^https?\\:\\/\\/tchat\\-nu\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6fddad6673524ab919dfabbf2edc41a4ea12311b88cb4c9d334e3cac8507157f", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "807a82ed771278550dfe43924cdd6f23d1fae077f74a5c4b299fb3dd99cc2b6f", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "afc0fa6be7d2fe1499f5148b8ee027f439406dd27dcfbeec92cb53d23b145ea2", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chatte\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9b444e969e0afdb8eb60a8298e6660f638106c9cb3ba78805aafb0ed872c7bf0", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "79ce65a1c964050c717edf0bab395b63c8043675d084d4e0c4d9993a97c243f7", + "regex": "." + }, + { + "hash": "0b1cb769fbd9d31f0ff4ea8055d9597bc2667a1a2093e9d2733fae80284ca5b0", + "regex": "(?i)^https?\\:\\/\\/zevsatlantickingqbk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9a61c482b2d341f0f76fa87f744e15b21c68cde4df1ff5142b782703e8e05876", + "regex": "." + }, + { + "hash": "282bb0a1faf90d8cfa1f31235646eb3d0995b72726515f0db17b0dac9e9e3dd1", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "12313949a20dba61f846858a74849b3f3807a07a8d9c18b7b4cb7ebf068b65d7", + "regex": "(?i)^https?\\:\\/\\/heresfr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c38230c0c7f445a102eed75a65645e39b912683c5f19f05d8290f2be7b4aba60", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-gratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "02fbbee747e6d382ffbcfd9b2ffbd11ebf0618feb2f40881463ee1d79eec52bd", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ce6260923ee4bacd36baaccafdbe41056a9d2deefb7c19c0a9e5bcb740766eb2", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "25d23d6b0ccfa371aa002f217694277f88f584ac5a6bae83bcb3465778c7ba50", + "regex": "(?i)^https?\\:\\/\\/strip\\-webcam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e3c0bd1cee505fa6ce40a69b33b5bdd93b79480df8f0fe5f0a8776fdc00924fd", + "regex": "(?i)^https?\\:\\/\\/faircostyrfoeg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9eb5ed81285b2fb76ad8bd0cd64510c0a5d824d69a97ec957aa9a7bba9987a44", + "regex": "(?i)^https?\\:\\/\\/chat\\-salope\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "63dc17c151e43b9395f0690e72863c4127d48ce305105689c7a1a3e24b9fa9b4", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "06911f0e80f32f7db85f6527c6009c972f40eaaf531b55d00b04f5a813c8cfdb", + "regex": "(?i)^https?\\:\\/\\/qaegqaehgqa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "acc8654f9675316473ab445f31af086958459094af8a372f5b4a6b7657c3e484", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-direct\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f4c9ae21151c1a9aa242550914725fb526a85de8a262e351bf4f54e2ec280925", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6d92b48257006a6d93d831a7d2b8276b7fffe7444e4c84bd9f70ec2d95b91ef4", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "507dbf0216c74d3c2898cf882d008ce1c744046503e467b50610619831aa35d4", + "regex": "(?i)^https?\\:\\/\\/chat\\-trav\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7d22bcedc71604686dc7cb5242dc41eab8ac59dce838d6926be46dca275e2bfa", + "regex": "." + }, + { + "hash": "63592920e9ac59fbcb2c9ded47435030d37fc3cfec851f7c558277d58cb3f6f5", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ce903ea70d48951a39f9082493e6bc8f4cc055a0a248f3ac95d38feea07f25c6", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7c3f9c4b3e20bbd3a618a9e1047a317aa7a523606d78efe0d7a1712f86140176", + "regex": "(?i)^https?\\:\\/\\/bratswitokyrbr\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd0ca9d3fc8009140029098c2420aa26a189e1f5db4da5367f1d27cfd912f9", + "regex": "(?i)^https?\\:\\/\\/heresfr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6f1be5c101f67db0c83498e09daecec0122053cd5de60c28b1896cd3532e2ea4", + "regex": "(?i)^https?\\:\\/\\/tchate\\-coquin\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9808db5bdb5482bfc840522e0da0cad1044cc2e1f836145845611603fdbcb2d8", + "regex": "." + }, + { + "hash": "17c6d5c6af3a0c8c87f115ee07e953877b27430bb9b9165ab86ad39f6306ede4", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a4aa1a7675ad4a472cc222c6ac066025ed683ba1567a388070f4cce5f2293ae5", + "regex": "(?i)^https?\\:\\/\\/camera\\-cacher\\-porno\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4d5ce8845780f453dfde7f33bbaba137a0468d02935b6527c60acbae40a5769f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "753432c2161c817140f57c1da55ecbe0661c5bb108ab1ae82bf6584a580d9fdd", + "regex": "." + }, + { + "hash": "582403bce2146325bc2cd957b262dadc9547cd3d5c1fdce2ef2495801cb1661e", + "regex": "(?i)^https?\\:\\/\\/chataveccam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "fbb00106c526892c5a67594272ee66481e1bffa94f93058cc3d733a54589f34f", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-porno\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2f34f0d1b2e03d6d824ab9a80412cf73f1cb3eafa748c97d917f0aed07adac3e", + "regex": "(?i)^https?\\:\\/\\/cam\\-libertine\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3eaa4f087e1302534b583c7fdeef6ab02af2db50f1cf0a03ac37e3babca0dcbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9193[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bb9fc5705b456d831188f7a8c9d600429f0c4e6faa6e59778f471510001e55f0", + "regex": "(?i)^https?\\:\\/\\/chat\\-trav\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a23c2973bf2df482cee94b3d042b8353e20fe7d2d21c42a1d525b6e21686c228", + "regex": "(?i)^https?\\:\\/\\/qaehqeadhbeqa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "347eb1e9db616b62a7ea070281cb285a19adf3d42b9b02eaf2dad233e5e7136c", + "regex": "(?i)^https?\\:\\/\\/dwarfiyvtwoy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8ae55628ec1dd3963d04223797ed0d73ad0d6086cbd9f1c11b21ee1f1cd19714", + "regex": "(?i)^https?\\:\\/\\/qaegqaehgqa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f658bb69c399e3190572eeeeb7d2e3b429229f6a6a7b2b09d5461a8833ac9645", + "regex": "(?i)^https?\\:\\/\\/lives\\-webcam\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6417455c94be691e0af0513eb492dcebe6d256f7206c2d01afcaca483bfbe4d1", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8e95e771c9e737bcd2ac2c341fcff1c5e5b530776d9acbfa025e1698de860eae", + "regex": "(?i)^https?\\:\\/\\/trans\\-chat\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "313923e95446ecf06e9154a2f87dcf4079b09477577e860a09e214a95ec87b0d", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bb56bcf8a1a272399447b5926d697efdfe8294f79530688b1b58a34d8e2ecf86", + "regex": "." + }, + { + "hash": "f08689d7350f06cf1f8e001027996efb5489844f5b0508e4e014d2c4558c5f1d", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-putes\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "15ac5b2ba5090f5b91bdead77945de2c4d876aa73bdde5a1299b343702e8a9db", + "regex": "(?i)^https?\\:\\/\\/aehqaheq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "436b9b11b9aff21087380a271d1b90edcba0580c1678529462c98ffa6f634d27", + "regex": "(?i)^https?\\:\\/\\/qaedgqaedg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bfa3b74381a2714f31f03fa364663492817e257655625e1173dfef463370cd97", + "regex": "(?i)^https?\\:\\/\\/liveshow\\-webcam\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8c01bee3520db98beae45389154882544bebfbc0002fc4ea976732e695c46e20", + "regex": "." + }, + { + "hash": "5ba4af5fadef21358283554d36861eb3852b5e2cc5fb3110d7a465a322687f1a", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9a47e3a9e22747d13c3f2226ab8ecc3957b5e82a94a4f138342164f17fb9b5dc", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-putes\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0c874f7828dec80c38e56d87d494ebe9541b4df0803eaeaf14bcee8311cbb77c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-gratuit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0c5d9ea6ea73aec41a5ac78efa7af90c7baee0f15c8f498bdca3ad1c1c82b955", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-to\\-cam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "07117e0b372b7fb1523d5e30c744b86227d20eafb2da34c9c2e09f6f94e80cab", + "regex": "(?i)^https?\\:\\/\\/hbqhbqah\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "75620f557cde9f9f787f7e0de0f0241a65bf46408851988024e6bb14b960e753", + "regex": "(?i)^https?\\:\\/\\/hotvideoworldxxx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f3a05bf104a072bc661b005fc94373f53cf0a33a72c8d4809d4c02c8a8efcb20", + "regex": "(?i)^https?\\:\\/\\/sha4re4u\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fe02cf7c56bb68f518a99d25760d1a8796a8e9d7f5e15012738f5f4bafd7ff4e", + "regex": "." + }, + { + "hash": "ffefcf1dc51f06efc37f137d206229051ca9b2af5619077b70fead22b484090d", + "regex": "(?i)^https?\\:\\/\\/hotvideoworldxxx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "44a6b7d785bb195c43fb68b84f4f04d62835d00b08f15ed40dceee581783e0c0", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "602bc4d6e1674742ba7cd8ef5f9b51b161d7307bc6bd81a29d1db013359e4ef1", + "regex": "." + }, + { + "hash": "89031795b570871c8cca27c4b1a0d4fe1e44583e6a4ad44beac793540df54c4e", + "regex": "(?i)^https?\\:\\/\\/charitysupp088\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "61dee944fdffd7030ec10ec3cc124ad468bb72c61c72e315222c874964195062", + "regex": "(?i)^https?\\:\\/\\/cam\\-libertine\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "90e1329e427c9e55856af9fd9bc2f343d1581bcfbb8f41c32277371bb2f7cf07", + "regex": "(?i)^https?\\:\\/\\/chat\\-putte\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a7db6296c06a2eb62357a2d36264a7289d572dbfc35647b60a31753043824b65", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5d224e7c288679ceb16490ed5615c79126d507bfce363621c9157cb847cc0a8d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-msn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4a875b29dcffc77c0786d2c1950ac6d357e976a6777cace3f516463459a4dbfc", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv9\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "14c7bb1a86bffac8dd3ae8be1f3917f4768ecaaf2c0542fc1de662d40f6b176d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-gratuit\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3eaa4f087e1302534b583c7fdeef6ab02af2db50f1cf0a03ac37e3babca0dcbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9193[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "d50841266cf4043b122c220eaad971d6875e247452bee868dc156a8928fe198f", + "regex": "(?i)^https?\\:\\/\\/anarxeplowbiz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8f512b00e5cc8712c1731ecf17bc672f502ebc9802065f01d94ab9d7e3d37b31", + "regex": "(?i)^https?\\:\\/\\/deeryry\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3cae66747ed28c2b9ea7d668c850be3e3f5a6ebe6a2ec7368cdd0cbd9962c06e", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "554c6f4794fc98bd492d18dafc1f7d3f5c6f0e9769618370e432d27968d6c519", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "71ed021e8a7c51d61221dfc4029e7fe03f447859023ad87f88749bf0539a580d", + "regex": "(?i)^https?\\:\\/\\/lumlumsundefinedmtzz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b8391ea9578df310bf7a495176a67c59344f6a81372b467b8c1896b26ec015b4", + "regex": "(?i)^https?\\:\\/\\/felation\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eda5e29085623f9376f488182edc7e2df27bec0febcb616a13971071a0c84d75", + "regex": "(?i)^https?\\:\\/\\/desodmtvvvw\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b5992b7ad703219edd052908142d04d7fc3c33f3cfff8c06c05383d057abbc1a", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8420d20b87dfad7700774b7938d29ebe120483c91e6bb33ed4550657a1b639a5", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-sans\\-inscription\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1144aa37745d697bc14269d695132085ad8529c3512588a5c833038ed2df2c25", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2379b87e025fb577eff31a3ad2e0d9abc1c2af2ec53773257db341649a266ec6", + "regex": "(?i)^https?\\:\\/\\/charitysupp088\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ddf30bfd07c215898e1d37b451e3175b5fb1de320d8faa954f96f296df36b1f6", + "regex": "(?i)^https?\\:\\/\\/anarxeplowbiz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fbe7e732cef89c6fe317000b545b606470fca24275432c7b43359d4fa48294b8", + "regex": "(?i)^https?\\:\\/\\/hotrave2024\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e2ce697908461ef3532e542a3ee0b745c11066802272a637ff520a730302550a", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "22630ca9adc4622027eacf9cee0317d376fd5db063213cac68c1bec42a7b1b5d", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "721370c6db3c5e8e6d7878fd4a8bf64408cd7b527d38d67aebc4a4e6b0b17844", + "regex": "(?i)^https?\\:\\/\\/heresfr\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "23f2b0fcfd5331a39e6e64839175b1145d1cf8dd93508de72526ffe078acdf1d", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4ca12ff5ab48635fc9d7fecc0595c16c8452155f4daf92c6ca5ba35e9e6e0557", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3d6764a5a946cc554d7f60d06063992ca6484868cf48904725693dad3656b272", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "06eefdf503630e17629ecd99b685b1ac96882a0f558e65d1d8ea7a173492b967", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fd7331f301536e88a89e47d9549a4bd2a1e6497cde79271f09b3f62f673e423a", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "29b3f7890e9a44f63a9f7ba7a2677417f793448732aa14ecb71d8468d2d98cc8", + "regex": "(?i)^https?\\:\\/\\/chatavecwebcam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "78ac546e9777879ab5faf28a7272f2217f386c7ef4dfe43b61d79049cdc4d5fd", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqhbeqa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2f602f9cd1242eb694a99333650f46051e50e66ee81d60dd7c7c46387dfeefb1", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinex\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f0d79c78ab03e548b719c3a3a5b6adad231326093217e761a9b0888637617d01", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "259742507d90418c93bb1abb540b2368a1b534433a360572dd790913b35bad2a", + "regex": "." + }, + { + "hash": "97666a263c89ab9113554f1a1a63466c4ef295868d94958ca867c046a100d643", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c4949a795a8e89195b700fe7ad9bd436f10b3d4ce29d37177f4b469b34099", + "regex": "(?i)^https?\\:\\/\\/qaegqaehgqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "de2831f9b454c613793e87bf8013af9183e611c52bbcaf10bf4767765de7b10e", + "regex": "(?i)^https?\\:\\/\\/chat\\-salope\\-sans\\-email\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a281fc6f2074624cfd9700f2846b03723bd07bf47b9534b09fc920e56d154a16", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-en\\-direct\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f7281016abefa59fb7829c618801e86e61d99270ea293a8aa8a0a3860b9dc104", + "regex": "(?i)^https?\\:\\/\\/heresfr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1d20af6a2a3f55cda5b898d07fe7bc5ac8471e1b216fb2296abc1bddc98f3b59", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7e518cd30bd753c748b850ee26de6b4c0e9d3c7ed34a75736afb8905b6ad78bd", + "regex": "(?i)^https?\\:\\/\\/aehgbqaehgbd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "022de3e52b5c1606c6e5ceb80e7a059409ea73c4f29b0b746b9484403f0bfe90", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-direct\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "80fb2bc80b19f58312a29c40d99d6a0f4b517fa0e884c77a028b1d527b4f4284", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "69c1b5066171f20cada8c6ed27f3b30284abe9289c337f6af4140b4893c7a8bf", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-putes\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "07667f10dd5597b43f7ff16542c9374452d9c9989a8e758175f7e80871823fee", + "regex": "(?i)^https?\\:\\/\\/sites\\-de\\-rencontres\\-gratuits\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "64e581422d5708867dedc805e804bd29447bcf2e482d0560952d0c67e41f30fe", + "regex": "(?i)^https?\\:\\/\\/sha4re4u\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4cb272a8dee8775e296ac20207370af5affe201cd1378659c8f08806a69f73ad", + "regex": "(?i)^https?\\:\\/\\/tchat\\-nu\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6157c9d1ee91f8a653b0d20c713dfd78f927444a371b7d550f3809631de7008d", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-porno\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b11b30b1b1c98adefebfba0d769c3faf4f5c699185a5c656f95797421d3bbcf0", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b538e20adb1790fcfcc5c7b7665aa35a3becd35d7c667d4cb56a5e26fb71138", + "regex": "(?i)^https?\\:\\/\\/sha4re4u\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8474bd666330e956448277071f42017ed9cd91a019b51d1857cf775055ee7025", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ac727618c6c7cbd3f4ad3eabd6ff1eabdf9c8911b8fcea002e5ff83659e186c0", + "regex": "(?i)^https?\\:\\/\\/chat\\-trav\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b4db7762653d4fecfce713a8083317e4cd53de773d1daf8afd88a2c85ab9790f", + "regex": "(?i)^https?\\:\\/\\/hbqhbqah\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "abfabc807c97585f3213c81836d279071d2dbbb6da31313d85218bb9fc16dd18", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9a8da0ccd60242ed1622dd27cbdcc3b28f0f0af26029d31ec41b308ae6e3105f", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "aa672726579046c6ad9c7a62c8f7389db0a619b06d594e9254c75dfe35d3bf82", + "regex": "(?i)^https?\\:\\/\\/hotrave2024\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "78526af2a873c8812fd9ed1c0da795a8e8ded83cd1bcdd9f6bad20328ce47fdb", + "regex": "(?i)^https?\\:\\/\\/chat\\-putte\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "771d9c56488d6b68a5268165890b9c5e9c8234bdff7779f9179f3d35b8eb2011", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e5e74832a082f698e81469620ab5fa2b32820f4bcbc8575ff0f289205a0e5ed2", + "regex": "(?i)^https?\\:\\/\\/cam\\-love\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "89741a08d9c01edc184cd71128161fb0f0708aa9ccd3084800df7db79fc30c5d", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fa5641212bbc04b5364a221933256484c74b458961de99ebc189da47e407cb6b", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "163e2c553cec298df70ec7d95f590bc934c1b403cd3e7f3441e8a16cf4411062", + "regex": "(?i)^https?\\:\\/\\/strip\\-webcam\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "00e32913f707807d0b17f8f63f2693e28473c7e6932926e1af1d7a78b806d588", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "54cbcfe076a451927150b448c5f59312dfef6bb05a890b9d13c6c0a0ebf51309", + "regex": "(?i)^https?\\:\\/\\/chataveccam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ee4c890f0be2defa5c75e11c7a0b16e625f23e756dbea47e0f9c610c19c926a4", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9a2abc4e4438c8df0e613535f6c381bc7b585b4f4865ef0297b97cb5e9600cd9", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0cbed1775addf82ea25ab8bae3820ca85b58cef05989bf87605ff617d9d05334", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-porno\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "613fe7704bedd53ad678c1eaf200f4a78a086f09b38bfedf9763779d25410149", + "regex": "(?i)^https?\\:\\/\\/chat\\-avec\\-webcam\\-gratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4578cac003f165dc15a4482204e26c723ea452fbcfb3753fcd24e0d631e89bf1", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-gratuit\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bf508e37f515c78352125aa916920fb1724545915ebc7b5d245bb9fbb8d81408", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "449cb00f075f60be87170c6470c8bc17035192669ad0e282297134984019a66a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-sans\\-inscription\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2fee25c18e49afd6aa085f686d62ac98e06c98fd647e511b2976bc412f462c98", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7ac96e071b6fd71b5e2c4d83b28bede752bcac44da3dbad533fbc1fb8cc7a1c6", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "74787ef58eec1e200c3c1d15ad015aca45305a0bc4d194f22fbcaa5f349ba6f8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.lnwabfqafn\\.com\\%E2\\%88\\%95lefrraviws\\%E2\\%88\\%95iycvg\\%E2\\%88\\%95sahqcaaihd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=yxnwclvajw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f97b1e1a8f2b6d90296dc17dbfaba4a191ec876060fcb0f0cfd02507c8d875b7", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1c3b3e82751532f628de41982212fd3c0ecff44fb3e32521e952bc09dceb8868", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-porno\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a38052d6f4e57b407ce3fb48ec519423bb3024545ab6a10840e720cfebb86e5b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-gratuit\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e19324637783e5ab6c5686b2a8afc4d5876a0584d6fea467a7debad57e14b514", + "regex": "." + }, + { + "hash": "b31963a43525581b631965e375c7fd1efaef55fc63c83d595864ce7014e42489", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinex\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "70a9cee3f76a667de7ab2871924803602ab6515e7bf93b1b321f7228e5cffc54", + "regex": "(?i)^https?\\:\\/\\/bratswitokyrbr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0148bc83529053395da9d3f34aa1534908a59882841370ca33c9c575c27b1a72", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b4e1c56d4d63861860eb58acaa7b8df29786453d0b85f006d92cfe560492196d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9142[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e65c4da503a0c1a3eba1e62175c65a090af232fe98eff052ea169e5c993a35b1", + "regex": "(?i)^https?\\:\\/\\/hbqhbqah\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f1dbb88b300fa286f537fe1aae0ae64a31a2ef8b23c894ccaaa972bcecf90a4b", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1afe191efd6d3b30a95da48a3b3609b7d47099fc555e990adb2dfd5326ee5f28", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-filipino\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0981cc0693afd5dc1a1ee5fc943a03c02ca455d3e4b539fda735c56208702e1d", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "028eebd9b9a59ac5b444fb44e43dbd7d1498cdc5065c69da8c247685524d2c57", + "regex": "(?i)^https?\\:\\/\\/maseeng2024\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "656c34c565736e986b3d37a7d89df5b89851cd38b3f0f9b909abc95ca405e324", + "regex": "(?i)^https?\\:\\/\\/zevsatlantickingqbk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "56bb77e3cecc38b98deeb472c2b85d63b9bf0c199cda9a1456fe916401a5f4ce", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bc6ee00250d35548cedefc6119a5f0250f835107f38094bf9331c5f11dea36fb", + "regex": "(?i)^https?\\:\\/\\/trans\\-chat\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9769babd258ca38cf9e159f050d69718926eae0b706da90d4d22f069f26a0563", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-gratuit\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "314c84bee92b1ce842e8e5765a17066056a0251a87f33313e699f730d1e4aa2d", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-filipino\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2215ad7e992b08c57cd76197de9712c4d659e9ca4306ce8749d7f825b09e31fa", + "regex": "." + }, + { + "hash": "478685c5d284cdc84f69ecf74304dbc46ce366c96c6b11a664b27bacfe74b0be", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "22e28d5a6c3580a65c0c043316d5d9cb16e2150e88782472b646d47bea01b6f9", + "regex": "(?i)^https?\\:\\/\\/desodmtvvvw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6baf30d399d0ca9329e3bcdd12ccf919976444b8276319dcc6d7fc6a7bf20d24", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\-jillianward\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a1e64fc16e65fb69334dea16947eeac50a05bbcb335d563c5fffdb18415082a5", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxiisd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b891ca537702ce5372aafc7d27492751603c4fbb7d43c8eaedf96cd3adaaba4f", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "485f24c65b80f9f2592858126b701b16227020f89460a95f92970ccc251b9f3a", + "regex": "(?i)^https?\\:\\/\\/qaegqaehgqa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a84322f4c6efcf1061455523fb9dbe04b5194c023ad7e8cea3a7bb9711229a2a", + "regex": "(?i)^https?\\:\\/\\/camera\\-cacher\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c6a425df5c806ea71b7af5eada7ea84f2e74cad9c9cfe43623342aa74fbb00bd", + "regex": "." + }, + { + "hash": "7489c6fa718b6b590988a01ada5edfa9b8b913980f1c542400b433bfdc30be0d", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "61d80c3d7d5d2c3a709f2e0f41cfa157f8d8251b2d7f5ae653e5fd8ba53e7352", + "regex": "." + }, + { + "hash": "a53ea82a55f83d15d04e5eae3f4daf1ccf23b67839719d096e00e80b43b2fba2", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "aad283d75a702771162073025c8b851ff5ebbf6c625114fdf8f727f624e555df", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f1333aaed7432ca4c2e0fb19a64f1f24e0be7314b1f6a5c3010ef79cd4be75b6", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "03d977c98508df3571e862aa6dd4c293c29f426156e8f8052f7ed3db9399f938", + "regex": "(?i)^https?\\:\\/\\/webcam\\-allopass\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c8ac434e50c2b97836a7e6354a3e3b19449843976894491b54d81718e1d0eacb", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-porno\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e5052ad199b794afee556ac0d453262fa72fc0b8be32a3c839051cd930ba5c6c", + "regex": "(?i)^https?\\:\\/\\/chataveccam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ef0e576bf529f321cd9735f8dcc89e08c150f7e55679652f6ceb871961ff66fb", + "regex": "(?i)^https?\\:\\/\\/anarxeplowbiz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1f393725a350a1f3e98e39b51918ab1704d5962c4de848b3009c2c9734c47f38", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-porno\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ea777ebbd14bc2980ae35aa2ab19634b59d9ba2b5a30a222ead0b6580e201aaf", + "regex": "(?i)^https?\\:\\/\\/webcam\\-amateur\\-gratuit\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f68213eba56b57c204fdf544b0ece23447592799b86a426135a0a7c297e001e5", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-filipino\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9c95f4be1ceb5ccf10c185c8d51f43b4f98827c72f01c1602f9c7cd7f9a372eb", + "regex": "(?i)^https?\\:\\/\\/webcam\\-xxx\\-gratuit\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d2348f98f9e749a0d7cfbffbeb1e6f330c7fb395ce6eaefb6031e3423391504b", + "regex": "(?i)^https?\\:\\/\\/bratswitokyrbr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3b86d8b677611f54666672f8ff0a0c1b8feca14d5d6b905879bd6438fa93d377", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "671026f8a7b0f70896a453b32eb2172f71a56b81741c03abe8fbc23b0bc0aa5d", + "regex": "(?i)^https?\\:\\/\\/cam\\-love\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d08506803fd099975db5f393c7edfab4d702ba80932c6e0ac9cb5227bcebcd02", + "regex": "(?i)^https?\\:\\/\\/heresfr\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1990f21cf00d93574ea6663dab4a09f7862ee462a4befe7f2964e1ab2a24b4c5", + "regex": "(?i)^https?\\:\\/\\/charitysupp088\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "15137f95a6d887fcce52de0d5743fe5c4a40a32094cbc8518e846e86e07c7bc4", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0fec5a0ebcafe35c1a55f6bcf121055c67b04a22cc6ed0aade33ac72ddd73413", + "regex": "(?i)^https?\\:\\/\\/faircostyrfoeg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7bd9b4ab7e94d49024d49d75650fd643353c9da8b701235027d472b6214be00d", + "regex": "(?i)^https?\\:\\/\\/faircostyrfoeg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "93c1026054884d97d34a8a7aa40068a0e4b369bd734846e501bfd92272bb3fcb", + "regex": "(?i)^https?\\:\\/\\/webcam\\-allopass\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "67516c9376064429012863c75cea4b30548941f4276b76bc8448a77cbc832f89", + "regex": "(?i)^https?\\:\\/\\/anarxeplowbiz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "805cb647246bd1398e757b0b1e7c3efbbb5e85a0b8a6da0281c98cdb928f93fe", + "regex": "(?i)^https?\\:\\/\\/zevsatlantickingqbk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "eff2e983d856f09d326a097f1fa26266ac594f60e0d894c5dd88f13559c0438d", + "regex": "(?i)^https?\\:\\/\\/strip\\-webcam\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8f7083ae6065780ecac5b24e1d11b61823feed750f2a7c76a323fddc5cecd35e", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a8a9c37641b0b6aa6cf475e8a8c2ca369f4aed66a8c7fee1783fa7681e006863", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2d68b50e88c878a9e5b37ff5178e381f26ca42fd44a25a492881df76b07133a8", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6dc09012e348811d54329e62a60c1cb8104afa6bdc5c627dae8b2c790b79c98d", + "regex": "(?i)^https?\\:\\/\\/tchat\\-web\\-cam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fd78d8ab2568823bfc3ef41ded842139fcc23d98cdf43a3fd53c912ea1b3d461", + "regex": "(?i)^https?\\:\\/\\/maseeng2024\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "52a5294585105527f56749d7885515a7081a5a3af6d36d0488b179592cdb6654", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3749cbbbb2c2525f65bc7524edfdf0cc2edfbf90a4b563041666434b6b35be5", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7a2dae17c3b582ce7fef12385a9909a4316e3530041b4642aa05498ae0fa97cf", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "446f49901056fea63694e5a655fa210b94af4672e2a6d152f448229b23709a3e", + "regex": "(?i)^https?\\:\\/\\/zevsatlantickingqbk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a180b00066db62295b1ea25b6bd46b59fad851b011b209c0092a95e0e4c779bf", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-en\\-direct\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "73b2a7679affcaa857cd1572acbabb984853e80d7de3eada601bf5c94a7fe201", + "regex": "(?i)^https?\\:\\/\\/lumlumsundefinedmtzz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fd74b77e0bf84aad29d9c3350a06c00a2112160abfea9a6f8edfa9c2947cecc4", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "25c5abd96bfa649da0a1f1577c3f0139ca13638b40d69b415747b304894db9d1", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6797ab06de6db9f1a49ff7aa8649447990255cf8d995510b6ac1e84665ce0130", + "regex": "(?i)^https?\\:\\/\\/trans\\-chat\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "715089829174efbc6f260e9e43ea84e8d8299e767350ae033a15f60dc4f5f83a", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "69d38fce4c1e2db96bec64e4e109b96d19b88f336b8ec6b5f94fbc800b2daf35", + "regex": "(?i)^https?\\:\\/\\/chat\\-putte\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5b128a5849fcfae5bf3527c138d5456e630c91c66a689515ebfd80ff9143fbd6", + "regex": "(?i)^https?\\:\\/\\/cam\\-love\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7153c4bc0612f941bfb09b861a05695b9749d332e2b48084423e523640a2de19", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "042ba010ab07163e81e883ba8a99d1d63917df4a49d15f5dc6a9ebe25faa9c7c", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqhbeqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "021e94b6bd26cd048d4ab0fc6cd51eacd0f12f4516922bd0ce11c3b1dffe3e7b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-amateur\\-gratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "46077e14f518ee6736883d1f9a0f6edc1499c504398e51f8055ee46e4b7858c8", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv9\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8617c4d9af10c255e3ea6b198eaf1e609016879e112ef23035a93a8fb225ef78", + "regex": "." + }, + { + "hash": "93997ad38dc16c48cc81bc60ddc5141cb4d6ff8a2c8f634e520c7fd4369b617a", + "regex": "(?i)^https?\\:\\/\\/qaedgqaedg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "eeb6f7ca02093d9f227a7f35ed16804742db9b4a0943ad9c92f130f941fcd38c", + "regex": "(?i)^https?\\:\\/\\/trans\\-chat\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6eb0e01c6e83b3d2635d129d558d32af4b5750f705376524a99f1ffcfaf36f87", + "regex": "(?i)^https?\\:\\/\\/uplealcsjrh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "92a2e864a5e9fb36d598ac74bd6592aa817fec1648033a1ad1f2070689b3eb7d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.agzmkwgvq\\.com\\%E2\\%88\\%95pkxjgq\\%E2\\%88\\%95ifbcjrxwev\\%E2\\%88\\%95npiswkv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hlfmjlrs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b1b56fb2b1aaa3fae3f326faf3e5a8a7a9429ece4ab040c6b99a77c5abeb7a33", + "regex": "(?i)^https?\\:\\/\\/desodmtvvvw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "b17f0563e96e2d474aa6a46187ce7a55c18902f2455d7e778e3602a978ade706", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fae254efd45371fd9c6712944bc188127679c27f9a36498d94b7b9f41f6825f5", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0ceedfe5c9e170fcdd690407337c35536b63d95cdfcf39779f13e29c4b7460d0", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbeaq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "80fbd23f85c18334e5aabb87a95e9cff6828d2ba0f075ed767553fbbe325098d", + "regex": "." + }, + { + "hash": "650e04ba5c0a36459d3e5cde645824fd93f349ef6ffd1c06da0c8bf12ea7ff9e", + "regex": "(?i)^https?\\:\\/\\/hotvideoworldxxx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a194cdeee51dc382da1dbd465c37249eea4a985d9ed17a7dc25cfbe656386b00", + "regex": "(?i)^https?\\:\\/\\/sites\\-de\\-rencontres\\-gratuits\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7ac5cfee27555b08aeec793f0d725130f5940890f987e961d1bce7e363235e18", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6ab3fbb61eee79b43376a5cd0798beda2a8cf9140aa7e83bbb291f91cfb3b828", + "regex": "(?i)^https?\\:\\/\\/qaegqaehgqa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8490ab864af38943fe6b8c22d151f99e64e32f178f295e48f1da39498bc276a2", + "regex": "(?i)^https?\\:\\/\\/dwarfiyvtwoy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d4b18b8e07f0a872f83cc7149c112c09e07fb9209e82df65309f45b3bb6ac8d2", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chatte\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b0d54e303e7987d4169adbd66cdb7c3401aaaa04c83c1e554e8a517b13b82b7b", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-et\\-sans\\-inscription\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "618f9a2dc83c4bb1a0814724754cd93a178354de77fed8a06f7c5354339512a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+username\\.html(?:\\?|$)" + }, + { + "hash": "92ff09e5bd0bec0d051c6a61164f46b90981a2493db8fd3b3270bc855f7027b9", + "regex": "(?i)^https?\\:\\/\\/camera\\-cache\\-porno\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9b78761769c8c68025a3ab68fbe59bbbb6a448beed3983b99fc4c20020cf4662", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqhbeqa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "68ecec5f172345665ae5d20885e59bfdc20e3dd3989bebaa5fb7acf4ac4fc5cd", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbeaq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d80513c525bc3893729dfeb4a6b9313b697c092bdb118ead33cb353028e170df", + "regex": "." + }, + { + "hash": "412d93fae7202d92011deeef35657b40e9dbb6c98287f73549f041e52231a186", + "regex": "(?i)^https?\\:\\/\\/chataveccam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d6fb63124f4421b95f5b57bfb3f071230e6fde9289f75d312112ce97db83afd4", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-direct\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a7c6100f9e739642748871029aa341b9af6949bace7b413ab0b20d8f420a1619", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4418eb4fd65f277988aedf08e46a67e79b9eff74ed10fd95de01f057541f9cbd", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6f7220960b0f45503d94818745bd5f8573325f335bce86f1e454067b2d38a346", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chatte\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "490c201823350d43971e6e8067ff2c01d6d53b100d0c799115724173d15353be", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "26f0c183c56517763a2f21e412c5b01cd5699650733145b152a957e035d3cbd7", + "regex": "(?i)^https?\\:\\/\\/chat\\-coquin\\-coquine\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fb00e59f0de5a14877abfd591c4a3a8e05cfde8507b7f5ded78ba3c144af4794", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-trend\\-filipino\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4c7fe493f5bc08ec4a693c360950e17efafbad8fd6104948cde366241874966d", + "regex": "(?i)^https?\\:\\/\\/chat\\-salope\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8c3b21e635b82cfdbd499a7f589555494a4671b474ce8179482ede39ab79d625", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-et\\-sans\\-inscription\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9db7bac33ad0c97217713fc3ae3fb5a6604dd511f6b0319eddccdb3b8f603f57", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-to\\-cam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5b304201bc6eefe1189507b14895fc8e1b77b5fa430db5576ac8d54250354798", + "regex": "(?i)^https?\\:\\/\\/lumlumsundefinedmtzz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9984c3b066419934dd8c8b13e00869e44f1e3b70b6bf91d5d401f663e5a7783c", + "regex": "(?i)^https?\\:\\/\\/hotvideoworldxxx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c96b6f0d493d45567cfec0287b401e9f3321dd997ff81e442f3ba52ab466813f", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c8f7b2e62c9310c1e7887f57cb28f70b6438b02d036904a517b627d1d6a5e90d", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c73af39ce1a5e40d6a481bea77807b3ee174fac7888a96590121165b65dd0231", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9d1ffdc7fb1d551cef2e40b76f49e5ae1b4d1a7b9d44041128d8611bcd830d23", + "regex": "(?i)^https?\\:\\/\\/beqahbgqaehgb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "78fd6d26997a8b3a17d51c920eba9d538049f94943da97a5372641ba7ebd91ed", + "regex": "(?i)^https?\\:\\/\\/hotrave2024\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "aff1115feb0625ab14f998201aec148890f87b7bbf5fba02aed837c01a1d5760", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "79db8d6fe9cf9dd4cbb9259dc545ce7221c562fefb10d16cb9e221878a2f2842", + "regex": "(?i)^https?\\:\\/\\/sites\\-de\\-rencontres\\-gratuits\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a843ed184dbdce7efa95fe43edbf7bbf30470a68d93549b2f1e2499713738537", + "regex": "(?i)^https?\\:\\/\\/qaehqeahqhjn\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3f5668058163f814708ead65a29dd0ebe34198895bcf66510b46ade7ed175836", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-gratuit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c835a83b68f5afd68992eafc07785d2cda5ffbe3c7acc98dc8b048e61c21b28e", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5464da98c0f533e8858c12ecb13ef9ef5ca6558f3d5e03b24db040f8045a9577", + "regex": "(?i)^https?\\:\\/\\/felation\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2298b1dc09ae0458f12e327ad9dc347b7a4525947969621a58118fc30c5b90b0", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqhbeqa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "73ce7fde7633d54390eceb619d83fba0eb0e7577f814ab155326401268617003", + "regex": "(?i)^https?\\:\\/\\/rbxtips2025\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4e5a78f7f50e5dd63454fc54e165d36667f6f7534f8204cc809d5cdc3961bf1e", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5a2299f0b399fffca7e9add3bdc12fc8b4756678a95ae04c403b6b01837d5c1f", + "regex": "(?i)^https?\\:\\/\\/hbqhbqah\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "80d5e929846515f2d3ce7722b6813c7ebb48a982e5c3c8afb8e2badd932e26fa", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "96b1cea460d367c6c9370a8bee7705a9ade07249f356ef2cf41d78120ba1abb0", + "regex": "." + }, + { + "hash": "8c1fa7202b1035097d5d1be010f042801bda5cf78b6d8e898958f0a4744e0f82", + "regex": "(?i)^https?\\:\\/\\/hotrave2024\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f9031e4294959be8fa6bae0401a4c4031b8296db46e618c8bd325818e6ffb891", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "94438c701879b862f0ae9e498f4894e37a80ba3ea0792245212e6f364231e791", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\-jillianward\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ee3cf43a30c5557d5b0fc8b41531f7f0110af356419448cf4daa72a5067e1fea", + "regex": "(?i)^https?\\:\\/\\/pkr093\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b605a2a693bf406972c04041a3cf77d8cc1af637e2c8574cdf8c77aba1cc1bbd", + "regex": "(?i)^https?\\:\\/\\/felation\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "00a7eaa9038d81eb8fb09855f6f41a7dacd52a50db9218933134c358eb1dc4b0", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4202c63f8533749710729e50093bca9661fb6ef98534847263113ef1f42cbf07", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d61a0058a0f1935da32ca4d9f8ee18d7167767d8000113c4ec9ff16b57649462", + "regex": "(?i)^https?\\:\\/\\/clip\\-viral\\-filipino\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b1132407db3f8aca628ec4ae1b2f52aaae4162f7c28168aeb3e062c6e2f4e545", + "regex": "." + }, + { + "hash": "05d850394a4a6bcd2b535966c0530f4f5266da9befdc9781307e21c170ec7f14", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b6aaeece4686d8ae9308f6b7c11ecf54512120a418436c97e0536bb591c2da7", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "756f7a4bc3774b550f124e3e637e784bc7dd674dd5434d99a62a5b9f6406d7b8", + "regex": "(?i)^https?\\:\\/\\/lumlumsundefinedmtzz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0cc194d45e222b111c57bf44eb6a00689020069f298b6135f509192da07d8c4f", + "regex": "." + }, + { + "hash": "7bd90f49bfe696359b0b004fdf7b9e33de68e00bf15c25f63660d5fb769c1596", + "regex": "(?i)^https?\\:\\/\\/bratswitokyrbr\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "737bc52b10f910ab404b692e6947c0fc83685a05cc01022c47743319ece3560e", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-porno\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "962b2295c461f83f3732079edbcebc410752e8224f2d9214dff07d62e29ac2ed", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7c76d84b4840cdba67822eaebac869d49dee347bfd226051e41108f8ce7ae42", + "regex": "." + }, + { + "hash": "75f4cf32af1b5380f15e54b4ce8c1fed19e1aecfa7423ae962c7af1a3f6d10bc", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "9e06f69ce586c760420f587d0f34934c5d8fdc8e5638551e860f2059fc765564", + "regex": "(?i)^https?\\:\\/\\/chat\\-avec\\-webcam\\-gratuit\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ca3044d0ee1a0898cfcb2a0cd964676d55cc889fd28dba47a166b547325f06d8", + "regex": "(?i)^https?\\:\\/\\/deeryry\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "98e340dbf7afe57cfa68b2fa51b8a606d360c9b4d49c7f9d890cbbcb2b5ca53f", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "58b00934623aeb9acae6e91d82b67a4470406d6373084d90772a2ff2ee42c537", + "regex": "(?i)^https?\\:\\/\\/anarxeplowbiz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "62424aafd81a61884ce386df58e539ff059818f58fed3d6c5075872e125dc87f", + "regex": "(?i)^https?\\:\\/\\/bratswitokyrbr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "38b03b20c9050a368a0cd3459fe562eb7c1ec38bfedc72fc48151964a0664208", + "regex": "(?i)^https?\\:\\/\\/lumlumsundefinedmtzz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "03694cc45850d9d5b64a8822962958ee8a1e89460884622f6e4450e7f55056c8", + "regex": "(?i)^https?\\:\\/\\/strip\\-webcam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "79e25eaac8f4b3025a20cb066d2e90fbee39ddf1eb07e08960c5647058eb718f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cwqiyc\\.com\\%E2\\%88\\%95nrmef\\%E2\\%88\\%95fzdkwn\\%E2\\%88\\%95iyencek\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=lqdqefsmm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4b39e60ed7ac54889a2890cc1bb3f7bce87962fae182a469aa9b45e850f27ca2", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chatte\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1831febfb5c5c8c0e845641d2442f199e287b34edca30b825d50541cfe1e0843", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8143ceb97dfa796e8ea4481c0e781e473bb19bccca8d584c0fcfde1ac9e63f70", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "317193abc1e6620ac6b526f1c521afa30d7c902d358b2c09a5efd45c54002358", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a5021d8406559906ead72561e8df36d3d69c73502fb16380db3cdb3f6220ea9", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5504490eaebe10453d5b5a5037e1306091d191387166a8b61e847205cbd899e1", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "af071ef6c593d0d479422a9b8f7175dfbc4bcf46e1b002e6860d2fc17b6c1fb0", + "regex": "(?i)^https?\\:\\/\\/beqahbgqaehgb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "354f78f924bbbf4cc400401a406211d5a8e2d879200d3a34e5f70bcd60f2ce09", + "regex": "(?i)^https?\\:\\/\\/daddylasthumancehifmv\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "67ae57d1ff214804943ba1a85ada7f9210a1e3e277152604255f243c079d79de", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-sans\\-inscription\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "237d49b05b89a9824aa9800da2fa4b900c2e3b17dee78bfabd989d269d9ffa39", + "regex": "(?i)^https?\\:\\/\\/webcam\\-allopass\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d6fb7a874dcf102a37cbad8511467d1c71d440283108dc307c9dc84656655e09", + "regex": "(?i)^https?\\:\\/\\/robloxfreegames1\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dd7ddd7a0781424c50c12c618b8692c7248715a46046c5fb5963b90290b7f671", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8728592456be5885f8ec6af5a9156b64eca13441fef8635377af0970457c0b9c", + "regex": "(?i)^https?\\:\\/\\/heresfr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e6fb07f0f0fdc345ade020a2a2b9b5f5afefb123b368c802362ea1d7c452e4cb", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4a2db5dfa71d3a4bdf5d27af78f55d22d402cc4db3a0a0488b13cf0d634093f6", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a88bf51aeb64270395e2b20d0d6617827ffbc73c6aabf42ea8e0c37f895f48e8", + "regex": "(?i)^https?\\:\\/\\/hbeqdahnqahbn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6a3e0cdd928006c4419dd9ad99b34caa93963dce10e7e27058bc7db03377befb", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fbafybeigdt625aev6svvzvci5qbq375cuccqwizoo5xou6cihy2alhp2vdi\\.ipfs\\.flk\\-ipfs\\.xyz\\%252FsabbollNG\\.html\\%252F$" + }, + { + "hash": "eeec1a368f87c1b150b37f0e84a5a7047363d92e3b4923b66be048de2609d4b3", + "regex": "(?i)^https?\\:\\/\\/aehgbqaehgbd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a63123e242a5c5d339ef80e5c4532150c16a9172c405b4d349cf56cb19c75044", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-et\\-sans\\-inscription\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7a53e653afbf618ddf4d54e3bc3b492ddcdee1bb6d69694b15db996681e3236b", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4a491081b64f7f117259b8ae64d0c00292eb9fab79023ef1c10cd3d07c8a6e2d", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbeaq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2752c7cea2f5165e249138f67bbfbad56485ef4d3647b97fe2e10036f44b34a9", + "regex": "." + }, + { + "hash": "a487bc8da879f1360bdab65d9f1b7ea39b8058ee1e2a8a3476d16acb86b74d9f", + "regex": "(?i)^https?\\:\\/\\/heresfr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "808372c88b6d0a5f59722346b1a3a93f8ba35a65781d5d66b1d8764213ffd8bf", + "regex": "." + }, + { + "hash": "f8450c4f5b07c374a58277c2214d0e8ae3f7ad5bfc0164245a8d5b4858b6d83b", + "regex": "(?i)^https?\\:\\/\\/strip\\-webcam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4cb932ed113994b6543bdfdd297108038c88c4eeb85b23e4dae113c5f1e0a16e", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2fe8ff30ba677c862b5d13a1032c0f69d2ab7a47cd983b98e299af99bab48e30", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f2e046f662d4179fb6c5b27da6b80f5c48d4d34341e7f7f70f6698345a3e6fb7", + "regex": "(?i)^https?\\:\\/\\/trans\\-chat\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "957a9da8abb9196e2edc87c6c21aad9216b891734e474c1d4036ff2aaf26bc9e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-en\\-direct\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b15e83693e1883336ccc162c37d9970ec73e8848a5417a70541262fa765c3a04", + "regex": "(?i)^https?\\:\\/\\/tchate\\-coquin\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0086bf43118e6886fc3276b4100cd357550e6d5c2cd4a635703d5257c458c0ad", + "regex": "(?i)^https?\\:\\/\\/chat\\-salope\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "44ed9fc10dd36e9e3daab8b84902e26dc3bd803806d22aa34f30d8b17ff9cfe8", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1a494babdf36eaf126bca6f64847f0e1476a98821698e8fc899dcba9bfaec4e9", + "regex": "(?i)^https?\\:\\/\\/lives\\-webcam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6efa6470a1703ded5ceddb6ab3be80a245f667f027153b3d359929cc2bc8245c", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d4a394bad7234961b4472585cd5b30abcb839344be38384a0032a1f13d13db25", + "regex": "(?i)^https?\\:\\/\\/dittisnikmrsg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0c0002aaf3517231114589cc566a75a6d6b75048f6b338b4a062def1b39e27d3", + "regex": "(?i)^https?\\:\\/\\/webcam\\-sans\\-inscription\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f8f064a7174b331eafecfcfb31976074489bfe447188cd25dddabc6677625336", + "regex": "(?i)^https?\\:\\/\\/show\\-webcam\\-gratuit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d4bbbb54fdb381aa74723cf91526464796414abc508771aa263a391d3100ab3c", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbeaq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7320891334e7794dd6d3ce17d693594a38de7f1de4b26ce7d5de4f3d02cf1b15", + "regex": "(?i)^https?\\:\\/\\/desodmtvvvw\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "256109fe4b1bdaebbc1ebb7ba98263278a93aa50993d3b49927edcdfb49f7003", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bdacdd55c601bd362705302a15fd1122d506ff31cf1668fc0f5f11f8cf71f540", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxpx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "337cf51733a1636acc340045059e10f35c94d35cfc2a9aaf112db679189ccce9", + "regex": "(?i)^https?\\:\\/\\/liveshow\\-webcam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0c6d6163902ff1b8bceb605baccb443709e3083a0749ac016bb04e27ab9343af", + "regex": "(?i)^https?\\:\\/\\/chat\\-coquin\\-coquine\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "54615e89cc91555b75c43bffa3c56440af2f65be97627d919203c69ced099d5c", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0c94b9bcbe7ea3e87290805590c6dd83b35ef447ede72450861cdb747708af47", + "regex": "." + }, + { + "hash": "47c0e39849b4c4f75932d761b5a94558b9008ef214add929ed1042ec58c440f2", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e0fcb0ce085824f8fe4be38b1e83c05991a86db29ef9332a47eb449a72845a12", + "regex": "(?i)^https?\\:\\/\\/webcam\\-gratuit\\-sans\\-inscription\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0a3797dd113d2df0e51c1174d8bd503bfc0e13a9df00abeb18bfd5059711efec", + "regex": "." + }, + { + "hash": "1ea6d765ff050a8509a80918fc3de01e54d7a253b25ebb10cd8d3494076c7a6d", + "regex": "(?i)^https?\\:\\/\\/anarxeplowbiz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "38c8b185c2da0d183bd28c31931d1562233a54556b4e0acfe38871137ba39086", + "regex": "(?i)^https?\\:\\/\\/hotvideoworldxxx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c9c37e48ddcb2b1b4799c529c3721bc9bfc5de6939667a115c1fb39558981c61", + "regex": "(?i)^https?\\:\\/\\/chat\\-avec\\-webcam\\-gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fee19fffb8c17d38114bf74e3d0b46fd98aad81dad9030aa5cf490f43192f522", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv9\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "22d5e2b4288383ea1db3321a7a40534b01709150275335bf640c12a1d11c7382", + "regex": "(?i)^https?\\:\\/\\/sha4re4u\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6ad42c930c1498f5081032fa6cf368431ebf316b3524c0adb0cbc9b1b45df3f1", + "regex": "(?i)^https?\\:\\/\\/chatavecwebcam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4c7e1b2ab208a0699e179ac957e407710d17f8041d5cf176dda3bf6fba6a304c", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-putes\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bb9fb21c4afa8903c9205967e784004598fc79f918ddba1759cfbc3070d7b798", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv9\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1744ed9f55be896f02a88063df746dbcf9096151f7153745ad95a630f782d542", + "regex": "(?i)^https?\\:\\/\\/camera\\-cacher\\-porno\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f001d5fc76e79430d8b1747e8b56acbdad74fc1e54ba74d059dae3fb449760ea", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4b8e6483538336645a89a3878d49793672745a2221c16d336afb34da3ac870e1", + "regex": "(?i)^https?\\:\\/\\/webcam\\-sans\\-inscription\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f479c5699fa1616a3f112d844c8230b60533ef7645ded356d9e964cddecbdb2f", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "4deff8c701eb6f59e6f5b79245e3763657ed199842becf3506f64b245f4f9e99", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9c28bf7840a57465b618a1b73e4e85cc4dd8217f6a0ac67e1d92f21450d0fd7c", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f2d22134a44328a8c11586cd2c38ab1c3593343a515762db37c38cfffe57ca1c", + "regex": "(?i)^https?\\:\\/\\/chatavecwebcam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b1bf9a97b15b40dea07523ee957ee57a98c4f6fd5c046cad2b95d212c022b5d8", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-et\\-sans\\-inscription\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "841f0f5e512282dfb8dab01b2ca53dbb2fa3258f06bff57e483baba0e430d14a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-msn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bcbfd1ef999c91e2d07f18af487fed976c155482dda6c718cd73e1c48267c73f", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-filipino\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "006c431d9365b109f0c9f1dbb26a9e5dd83146b1d881b3f507f11983db5ed6bd", + "regex": "(?i)^https?\\:\\/\\/cam\\-love\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "19bd17ac9163f03c313a88afdfda38e117c375bac8b1c89d2a3c4dac7c2fcd88", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-et\\-sans\\-inscription\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "604215000cd18208f090301e8c047de1662faf8ccd20ffa0033fa90c2e13b3d3", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-to\\-cam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5ce45aec00f472c91b34b25482d945a11f7e9c29706fdf441fc314456bf7fad0", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2679d22dd43db50dfab337b52bfb4ceeb889d597d85fbbe341884e74e9c5ad4c", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1b0c20272ec7f20ea701796d5adcbe0ccfdee8d00f1ddbe5446f3c4358757474", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "00138262ce2569391ed269b3389a2613d28e59942c6cc65b505f38e257cda5ac", + "regex": "(?i)^https?\\:\\/\\/bvc456bvc45n6fd456ndf456v4f5d6\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8c8462c3bb1a3fd34437022a288813695052ced80fb39a2123e4206a9ba78a4f", + "regex": "(?i)^https?\\:\\/\\/maseeng2024\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4f42bcc710f3b6b0a308f29a28c1c694d949a25d59abfc9ec2f298a7ba058203", + "regex": "(?i)^https?\\:\\/\\/tchat\\-nu\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "226b3d7b85f7481b31ed5a0c6e5ced5ab475e34a7b4609685e3057fd2c630598", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-et\\-sans\\-inscription\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "df5f8b2969deadddb9157c1fd4b937de1edaedca3756b9d6be9306108859760e", + "regex": "(?i)^https?\\:\\/\\/tchat\\-nu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c548d08f269407c07bb27f66a136430ed818df77eb75a3da21ed520a0cce4ad1", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3d8a36c8b66a80982e7ad4f9886aca2b8633e2a5f60af67eb3f002524b4ecad4", + "regex": "(?i)^https?\\:\\/\\/felation\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b4ae7c55f45caa79bca107c98c1064c2277a74ca358cb5745830ae7cdde843ae", + "regex": "(?i)^https?\\:\\/\\/tchate\\-coquin\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "58da1808f6d1af77997a74a54512ec1be27a513a51914ff5d00063416b1f1344", + "regex": "(?i)^https?\\:\\/\\/beqahbgqaehgb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "76ed14aa65865920a6358f18af2fa6d874f335573ebaf024ed214c5262abfadb", + "regex": "." + }, + { + "hash": "d7366d717c7486d1389b3c73156841c6cc87c3c1d2f76172c62fd1139429f58b", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-porno\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c969bbe8a74aeee121dc1689d38e1f558d95d4e309a4fcfc133e09597fd801f2", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-en\\-direct\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "01fd6b4100225e69d619aeb756a25503163b99f03fdfb318f50add274252a25e", + "regex": "(?i)^https?\\:\\/\\/liveshow\\-webcam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "43c2fbdbbde9b420b25b8bc5ea48e3fe2a5c12f4ff7383e71ab67b8a87f04a1e", + "regex": "(?i)^https?\\:\\/\\/crystaldipperbjx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "55fad764cd53d990786646c487559d0521e9f0d374fb8f087dc19a43a3c2f490", + "regex": "(?i)^https?\\:\\/\\/sha4re4u\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f58177e1bbddbbc2167c8119ea06721792dbfb4f990aa9093667ac58e8ba27dd", + "regex": "(?i)^https?\\:\\/\\/hot\\-clip\\-napanuod\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "92d45af4d339b5220c18053d2d8e402ec4c2ddf335c7351cac067b8c881e0b67", + "regex": "(?i)^https?\\:\\/\\/tchate\\-coquin\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3c2b37fdc20f18f4d8319af5d1108fa1d8677ac932091ba4f3e0579fedd6cb91", + "regex": "(?i)^https?\\:\\/\\/trans\\-chat\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e55fb54ef937ed7f32800a593631fe6cda5ce444ed5f4b67f1e13cffeb427b68", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cf05da30c884dc0f6a22b70dc81c00b026b03672ddc15815b713445b2020319e", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f0893c432d7bedd5be8cb95652ac15895a9cf1697a4ce50ff352897d606386f0", + "regex": "(?i)^https?\\:\\/\\/qaehqeahqhjn\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2a9dfaad645c222122725c27f55f72d869eee2644e9ff1182574c3beea682568", + "regex": "(?i)^https?\\:\\/\\/camcochone\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4d445f66894ce716bb8b27178a6d1975dabc45a416630fdbe742e57e7d6b1b42", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2452f2cc01ccb253a0deb1a8750d73d4fc11be01a0c88ee19061e9276e83a64d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-en\\-direct\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "36e4f4d7af0dcf5098a0337c4f912c138d88f4d739fa86a651e1d28deaa5fc11", + "regex": "(?i)^https?\\:\\/\\/chat\\-coquin\\-coquine\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "06de573a6b3fc80ad0ebd5832ee423a472adea6662505b8c45f11a34a9a54a32", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-to\\-cam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "533888e5f32cedd488565ead33ee14dfe37a75734a7f87991c7934597ade16a0", + "regex": "(?i)^https?\\:\\/\\/chataveccam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5cc8c2c757f4b8cfe4eb9b63559b691a434dcc6d6540cd3ed101ea26515bec1b", + "regex": "(?i)^https?\\:\\/\\/qaehqeadhbeqa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3993ca08c050911ccf28f7db9c8158ef5a90b69d9581fdc2bfd696f323c3a648", + "regex": "(?i)^https?\\:\\/\\/desodmtvvvw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d4bf5e6cdc9bf41943b9eaea5c7dfec8dba4b5fd88a3fa30ea8398f3c1ea962a", + "regex": "(?i)^https?\\:\\/\\/cam\\-show\\-live\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "b57ffbf69746b3c56529d0b3a0172992609f2c8a1ed79ca226d8b2d93347e410", + "regex": "(?i)^https?\\:\\/\\/show\\-cam\\-direct\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "895df54346ffc73a17b0ce0a68e65445444d394f0b3044ef3b4fc74acc221489", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "af252c50e2e22f31c7c06689bf3c054effa0c221bc357e53653a1a57fa6e55df", + "regex": "(?i)^https?\\:\\/\\/bratswitokyrbr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "332b5894b601e4cd71160cef83468f08e6bab51caa794606e84f25019058ec70", + "regex": "(?i)^https?\\:\\/\\/chat\\-cam\\-to\\-cam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c7eadcf46a6869a78afa066ae9b60754c62168278cf4caf12fe450dadc260c04", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "859e6446eb79f4280a881d19f7c4dff8c1005cca6d5579a00e6327bf16c8e47a", + "regex": "(?i)^https?\\:\\/\\/chat\\-trav\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3ce4d61e60444aa83b297724e36ee05378b2510ded453fdb6880b6034f13cfaa", + "regex": "(?i)^https?\\:\\/\\/faircostyrfoeg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "8077639b68cbb4f2e4faf517f71eb9750a4136020f3fa269d516fa60f8ab2a79", + "regex": "(?i)^https?\\:\\/\\/tchate\\-coquin\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9828cd8c4c820228d9088e78a7212ab0bbd43ef60ee5356bb231ab9cd66b6", + "regex": "(?i)^https?\\:\\/\\/qaedgqaedg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0dfbabd4a5dd6c89de6dc1a42b3c419477fe789863e7a827cbb49e2fc8f60540", + "regex": "(?i)^https?\\:\\/\\/chat\\-par\\-webcam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1714da87d01681a65c4a6e3defcba70512fdaa2f138652260f334bb5f3cdc887", + "regex": "(?i)^https?\\:\\/\\/cam\\-libertine\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "779218df2f91b791498de273e42c95f4b02a6391cba153d85430dfb691fd75d6", + "regex": "(?i)^https?\\:\\/\\/hbqhbqah\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8bfc04cf044223d7586f8aed5739e490ff3aa4ee2cbda36315a617be5ac28b61", + "regex": "(?i)^https?\\:\\/\\/qaegheqadghbqa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "948fb094a9a5538e9c7814aef5753ab210346362f21339ecc88f21a231f3e1aa", + "regex": "(?i)^https?\\:\\/\\/chat\\-putte\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9ef8da75518b99eecfddbb7a932804199c2e8caba7a044ebf70e8af834424249", + "regex": "(?i)^https?\\:\\/\\/zevsatlantickingqbk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "12026fc6667d16f6580f92cdc1432b4974da5005bf9b7afa54f3d96829f038ac", + "regex": "(?i)^https?\\:\\/\\/sites\\-de\\-rencontres\\-gratuits\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d07f4b10ad3c0f0cf618032c39eddc8db3161d01a556baa9d1828e7c56d67e55", + "regex": "(?i)^https?\\:\\/\\/the\\-voting\\-poll\\-website\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "106a41f4f7c72b2b5147e8322cdb6fb6a96f7a2eb9bd95ab018425af9a656770", + "regex": "(?i)^https?\\:\\/\\/webcamsansinscription\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3a47981b513f447635ce26d98b10b28523a510fda9c4ebfd260389675d6e8fdb", + "regex": "(?i)^https?\\:\\/\\/qaehqeadhbeqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b135808f649fedc94ffeb7e7382a10c2d7f661b7adfb7aa3e981f738da619640", + "regex": "(?i)^https?\\:\\/\\/chataveccam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "be287238fd689ad51f36cb6240f92e9dc3456305f92d81bc13bec1566bd5916c", + "regex": "(?i)^https?\\:\\/\\/chat\\-live\\-putes\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f60635656926422e8fba60c67a6a3e185ca6464db3cc21ab497a1a7da74f32b0", + "regex": "." + }, + { + "hash": "d07ea3d968e5b5610d790403f2e4e2daf1e6c5e1a2617bc0c18829a829bf3933", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%25252Fmua\\%25252Fseguro\\.html\\%253F\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253F\\%253F\\%253F\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "9356287d447ca26f53a4b8f30c83c6a31ca789dbc0a609bf4f92dae3c0d1e12d", + "regex": "(?i)^https?\\:\\/\\/hbqhbqah\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e95ef6e52f30b299a528d34b9b6dcddf45ccf66ec76c1a3c678b61a4663775a0", + "regex": "." + }, + { + "hash": "cf0d10c2e2fb459f8c3c1e6dbc763b98a2d738dd00319143609184c2e3163be3", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqhbeqa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d8774d8d81f2646ffef3d60dc1da5951db6f177d65de30cbe23974845b32da39", + "regex": "(?i)^https?\\:\\/\\/eqahbgqeadh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "08d410d677964403a3766de88bd1f7d0e108075ee6b5211524d9c0ce789e267a", + "regex": "(?i)^https?\\:\\/\\/deeryry\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d9fb350ea67c932a362e2fd5a953fb60ebf988151ceb466a094c11b3947a9b7c", + "regex": "(?i)^https?\\:\\/\\/tchat\\-nu\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "55faf16eba2ccb66638b6ec898ea82aec7f6318e2cebcb8b773cd29a5bd410a0", + "regex": "(?i)^https?\\:\\/\\/lumlumsundefinedmtzz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7ac51b5454add457fdcac1af30a34546eac526e74c15e227b882037d4c20954d", + "regex": "(?i)^https?\\:\\/\\/beqahbgqaehgb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "995f5275975001945f63a65d6f90476003576977abe469bcd9f2a3e90f0a775a", + "regex": "(?i)^https?\\:\\/\\/aehgbqaehgbd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f3a165d460fee5208e41267094278052b9c3e5799ee6edcffaf834c80774b075", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-porno\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "661a6de7dd856565b53638a616fdec0010488368089fd434962af6c1e826f52d", + "regex": "(?i)^https?\\:\\/\\/maseeng2024\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e79774196eb468f9e0187e5778ef8177786774e745f3b3aeff72645319dfccc2", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6c3833b5a2fce9e0e4004e461c8d72b42f9e0de4ef067e5ca741d4e519bb6e8d", + "regex": "(?i)^https?\\:\\/\\/tchat\\-cam\\-sans\\-inscription\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "30a27449353c5d464264e04b40ba2ba80ab19c795f92518fdff247735575bc53", + "regex": "(?i)^https?\\:\\/\\/tchat\\-web\\-cam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3eaa4f087e1302534b583c7fdeef6ab02af2db50f1cf0a03ac37e3babca0dcbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9193[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "b5999d54e1ea18a2bbe5bda7c00edb1023d1ab8677bec23e5ca4854dc6c5988e", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fc206e1dd51cab818a07f1c511ec519151074f3993c431e61fc33b27f3662c4c", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "24ce9c69f157b994d1fa15cc563976e4fc383f07e7ddefc675d7bc0a48be33e6", + "regex": "(?i)^https?\\:\\/\\/chat\\-coquin\\-coquine\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f7ebac6ac375086f6e1f5117dec207fe465ea7c17dc46cd3e8fb5857dc33679d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-allopass\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5d22c2ca9f659b14219c1a471c706174f57e7587636698268dadde4dbcc7c757", + "regex": "(?i)^https?\\:\\/\\/hbeqdahnqahbn\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6ea902f068744223bfe69b43ac039fc0341f0ddc645759919effde71e0c607b0", + "regex": "(?i)^https?\\:\\/\\/webcam\\-amateur\\-gratuit\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ce905dbcb31a1dd700956680fbed531c368c135a4c4f1fe1395b1c613fab7f40", + "regex": "." + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index$" + }, + { + "hash": "6b54d16d9ad3e6809d9be3c035d907050a5f336b2e5432ea375993eee6adbe71", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqhbeqa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "75d706869ecf69ec85925e771f4392770f43f4f4c33210c8c74ea632e809ddc6", + "regex": "(?i)^https?\\:\\/\\/messagerieorange141\\.yolasite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "df94a7182638e1249fd15f4b5ea8c5f39c40003a213fda5610f789026b056a99", + "regex": "(?i)^https?\\:\\/\\/qaehqeadhbeqa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+bafybeigdt625aev6svvzvci5qbq375cuccqwizoo5xou6cihy2alhp2vdi\\.ipfs\\.flk\\-ipfs\\.xyz[\\/\\\\]+sabbollNG\\.html$" + }, + { + "hash": "9e5dc73264434f49f31f7521b3fb712eb358ceeababe6a6ab62b084b4ad0e6b8", + "regex": "(?i)^https?\\:\\/\\/webcamhard\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a6cf936619ba2a563b28cfffb06168cda0a384c438433d73e42c32d39855cbb5", + "regex": "." + }, + { + "hash": "c635d2bae7ca6118c76ee13803dc54fbb4abf1e28fb2516aea0e04923137c30c", + "regex": "(?i)^https?\\:\\/\\/bratswitokyrbr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2f4eb56dbdbcbd6f1560f9545540fc1ced406e120428adc56fc800988b33c3ea", + "regex": "(?i)^https?\\:\\/\\/chat\\-trav\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "22b9c0c8cba0c9754f256e945f8a2f3b896174dc0810bd0fcccbb5271dea1fe0", + "regex": "." + }, + { + "hash": "ae7c628bc00b39b2aa19eaa80a19afaa5e1d83c646d160e711f8a09549b95859", + "regex": "(?i)^https?\\:\\/\\/aehqaheq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7690833a26785f25ca906f812d74a8dc6b8be64f061e6bd8b8d851a15faa3d84", + "regex": "(?i)^https?\\:\\/\\/qaegqaehgqa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3d432611a26bfdbb282f2297f4fa155491504801b6c90f221696a5162fea8e33", + "regex": "(?i)^https?\\:\\/\\/darkundefinedhoutehpz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "03c365e410d39ba9341549ef5d121d56314ca9b149ab305906147b169c8cb6df", + "regex": "(?i)^https?\\:\\/\\/chat\\-salope\\-sans\\-email\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ec5bc83516a38797ae044607441428609662b246af72582b962a61bd8a054ee8", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0e8b523a9852e45784b7e323181f0b33f4e825117bdcfa123ef833317568eefe", + "regex": "." + }, + { + "hash": "ac2e97fa09ec45260ffc871393d61d940d001dfb67a37350a99b9d0b9aeff35c", + "regex": "(?i)^https?\\:\\/\\/tchat\\-avec\\-webcam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2cbaf1c085645e9c84184c45a9a0ac1792e5482574366f241b7b16d30b1eee33", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-couple\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fa9a53c0c07c7e9ecc386927e6982725d32b4fb042103ebb7e7b087d5298dcd8", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "84eaa23b79660a2cce1c1075b666dc134623c78106b7cbdfab08412a368e2c13", + "regex": "(?i)^https?\\:\\/\\/visio\\-tchat\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b013bed2f9f912397652885eb93f97835c31cf0a74d71c972a65aa9e9e5065b5", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f3d1a92e71c0c083bd51b5b327a961a335a98647b0d7f04cc2d112e91a38463d", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-couple\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "15cfbd20dd6c56806caa982c5fb235b6a9c1d06b9e958f525190e03111b10296", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "efcb1b655df3982fdce30fc86bedb2761a71f5ea0b64cdf750bab2b3be75e8e8", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "59eeb781e12ce563ed8557000aa7865a0481180b3812f8040a8646f9b1d30d91", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "dbcef14d2f962da57580674b20af07a4a3a5fccba1a8a8b0f75e7864aa8627b2", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "02ed34e4eca72c5e184954c7821871b81bb130b7f6e52a5d2aec358ebba7b47f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?shareName\\=5845\\.b58453051\\.com$" + }, + { + "hash": "ad43dfe0b0fb75a5444858ef7e37e2563fd3e1620d8af2f2db330f88ce59a925", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5b8aec971e709491c64f703d462605b4f7809c4385b9190d8ce3c7fc7c0430cc", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c2c3954cdd3b893bc40fd69c1bbc331ed0cbfeeeac5f57b5125c2bc964771ee8", + "regex": "(?i)^https?\\:\\/\\/fr\\-cams\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0143af50a949351f78787443e6a5923e1f5ce5d61513c1383a5a108ebbabff28", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "08300ccab3f5041b992b7bfe8e628b69b19a4a67dd56539f37f0f2b9be224cc4", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-couple\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d54120ba638b25a9ad696615e64bae50d8802353d675ed91824595fe171e7699", + "regex": "." + }, + { + "hash": "21ed00dcd4ae05e6baa45bb90efb883251a2d662c458b44cf1b6daa695d91297", + "regex": "(?i)^https?\\:\\/\\/amazon\\.dntluzavr\\.com\\%E2\\%88\\%95phoetxguv\\%E2\\%88\\%95xbthfyt\\%E2\\%88\\%95upkzvj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gsvgfyau\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "547aa023230f38c305d507f1fa7b661d95aecf3e84513eb181465b6d0899237d", + "regex": "(?i)^https?\\:\\/\\/xvideodailyx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fe9777bb66f1533d8db1fae2076940c41f337955247bc9e1b92f5c16964e55d1", + "regex": "(?i)^https?\\:\\/\\/dsjadhsa833\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6ff2e88c7d0edae6a4749aa4f58c97719f0d8aaa10dd4a011b01fa362e52f533", + "regex": "(?i)^https?\\:\\/\\/annonceplancul\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "12d9bdd782e96dfbe37bacc13b82ea0527e4ffadb6eb9f18b3aa5ddba34078df", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "825b646f4f7cf3d8c0dc581925c6ca2dd04b396ccba6c78c31469daa5b224254", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1eafe0b2d67cb3f1837b028dc7f6c7ca887f4b76d8f393096399c30bcef8d322", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f86cdcaa6bb33ce2958a5cfa77cd079d50891e9fc3f2757ac1a9fc45b248f7f2", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-coquin\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6a70d6e332515b96685982380fe9658cbfeefbe019b5b99be1527471356c1637", + "regex": "(?i)^https?\\:\\/\\/amazon\\.iecbyooygf\\.com\\%E2\\%88\\%95masxaxc\\%E2\\%88\\%95ichgrimy\\%E2\\%88\\%95olhkzge\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=eixfdyue\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6fcf3e75b4af502180d1df9f9e28fd8beacea21bc70ee588700f5484ad0ff1b4", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2f6102df970b807f9871eda12a49dec02dc27307c180cbd0427335beec3a2292", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a281a2153cbdc72f757bde27aa1e2c53cc192375aed8520fb83f6068f0e6ab7d", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e6f05e2d04d4ef4617e07c358e173fe0b9bbf50110edac31e51aa846858ec110", + "regex": "(?i)^https?\\:\\/\\/annonceplancul\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3cc5abc9508b775380830a1d4b8e3e2831a4d6c157f5d55f85b83d83093271f0", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b80fc642308a3cb3ad5729b6cbd58e3a67d39e7258ff246e950a2fec886ef00c", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "042d6c9faf32e4ee49cdf37fd5ad81d42b5b7ffc4542268ad58bcb2d82fb6be4", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\-boy\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "587f1c9d22f53a138c301e22502805adc156c9a584b3522e589853eed2d9ad41", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3949f93dfc155f1303c83d55903405760166283578c98293210f879218bc2e0f", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6cf1931df73b5d107c1f26749c3e0b64f22a4f666a6cbc10bf850da38c05f419", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7de90aef14204b8c62dcc06493d735f34bf85f4591f46e7aa70a880296df4892", + "regex": "(?i)^https?\\:\\/\\/films\\-x\\-gratuits\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b199fa68254f2c292c8a7099a9622d4450cd22daa5297068e0f5718d5966360a", + "regex": "(?i)^https?\\:\\/\\/dfdfxdfgdgr56456546\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c390f7ecaea48a759fb0bb1fe26f4d5e9bc0c41aedffc0aa6d75c4dba5f65285", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-puss\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5da741aa1d919a71e2960ee6d161b140c08a91c801fbcdc426fdcf86f513c65b", + "regex": "." + }, + { + "hash": "c88922145fd21bd68249f17404ec271feb193777258ddd659e222731967bd9cf", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f78c43387a9e1cecd0aef633af6dee4de8faff5410b2fde6910790e8bfd28e8b", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "79e4fe688f28bf10ed51b7cbebcfe2740be1abbac68b7694daf02e3b96a034fd", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f02ea25c3b089bcd79b6567e5595f8915a80df3bf2731abe2075c24ba2482a4e", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "373a89c353b5438b03aab44ccc52e97310a863e699b6d86b2db779f42625a0ef", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9f6f2d6fe9acb253e98513c6af02ec1f0e8ae7a4b4dbf42d3d704e44ba6d070e", + "regex": "(?i)^https?\\:\\/\\/xvideodailyx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a99c4239ec2ec4e760fc1f4c2361e55639cd4c3e8457f60475718c060113e937", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d3dd56ab492a9fb2b896a600b4c49ea8e7d9b50b34318a7ec6e3a3940e0b2880", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a9a418a318147e423ef2c8abe5040f3320c6d4aa10b05de2dc5e73e646422e2f", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0292dd86be4c5c60122a278e643b8c0e79e44560daaca74e677d962c80e4b3e3", + "regex": "(?i)^https?\\:\\/\\/hot\\-clips\\-today\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0c8e6b8633e56af81d3a8114ba8807a46564d0a13ef36ce1c18aee50838beccf", + "regex": "(?i)^https?\\:\\/\\/films\\-x\\-gratuits\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b75bccdbd3dacec85d3e126a753676f1dc021af4785a7213ef34838878458c76", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c5d42aec4461eb76bfbee97a421586a01c753b9906d68edf41ceb4a2ad71c6a2", + "regex": "(?i)^https?\\:\\/\\/tchat\\-webcam\\-x\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "550aca5a04b9b0e0336cea1ec75ca4adebd359c1f9eb64d70a02364a779b8652", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "96b61d93877ff0eae6863a8ab5d008f016e657052c93e9ed281313913c168fc7", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a57012d6818578dba55f24d966497c8cafc045133236872728f91126105f9166", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0a95d8ae04b592bf7b6997fc62642a758a19d1dfa0a756871b35569bc2ee72ca", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "75903058f15cc170e3a8e7b342c87ee006163a028b9b2573cc0c1fe391e7caa5", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9d0ffac4c6fc6e89c9af087fa719bd6a964a9f8add66e6990e7a5c917aadc7e1", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "20eaa433fbe47b9e512561238474feac7cf3240320c55984e337e4faae8752a5", + "regex": "(?i)^https?\\:\\/\\/dsadh8323\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a5d6c781839db4e5bd531d2a54e0cd72de0bb9b69ff4c92fc0f94a7f3687af50", + "regex": "(?i)^https?\\:\\/\\/fullvidtoday\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b63d21b0980d0d7c4bc4a627df63adb5e04f4fa6351bddbc1049fac6459d4fed", + "regex": "(?i)^https?\\:\\/\\/dsjadhsa833\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2b8b4c11dc7cb0ff9a290cbe17e717de19cc406b07620adfd13753842f9ec2d9", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5474fa59cb2f963dba0922acbe4b43a06dcf78489deb821a75f3f09c861cd355", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "08330ca8216ef8864c174d8f3dcb69a51d4fc27aa73e47c1e4564b6c1454768f", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e7c586c81dd7e630ff01d38cd33d969e75269f9d24d0032ff7a0b5eff18b8235", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8fefeaa0931a896ae60e2cd3a2900da2f22e851e84478940a4725677baa4b592", + "regex": "(?i)^https?\\:\\/\\/dasdasd21312\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6c1e609cfed6ebfe4511150f8973c7eba7e140c2d2d131e24b28e10600daf263", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "10cc091e3640cd8a9da22d4942c8f13c37c211d481bd10692048335744d51ebe", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "df5d46d3c0332e95ec337d5d379261a5a25cecdbf77159ae160583d9365eef22", + "regex": "(?i)^https?\\:\\/\\/annonceplancul\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8f829ba66878af1c2b7ae1cc562f64372404aadb9f64c9748d70db708ced2c3e", + "regex": "(?i)^https?\\:\\/\\/webcamerotique\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "4a98fd78fe7b7d92f22b20e9f0953dafef96bf29f38e33a8dd44472e5fca702f", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5027619a4d035ecb6ddb42603125fe315b9bf7867bbfb5d63ee0866fc8b1cd64", + "regex": "(?i)^https?\\:\\/\\/amazon\\.uunyhebil\\.com\\%E2\\%88\\%95cowwygo\\%E2\\%88\\%95mzenld\\%E2\\%88\\%95yoyzbrhwav\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pmzshk\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a9201439f31bb46a6d80e0e2dcb93e20557b833b7189a77bcc4464ae5d61d39", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d57599be3cddd5483304ad7fdfe73aa4df6b9d7b4844f2e20c1fc1954a47fea3", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7098f2d75bb0c75644a2315803bd5129cf02ed708968b1d9a8c6884b43ac066d", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3e15c4dcd680fc5f78cbde62712dff91a5a5b309bd09d744213cee548d9f27d6", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "52345e97954d254e2ff4f55c7b45aadaadb4067788bf83b7355f1f1ebdbf943c", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c8bb4a948d9ab077f0985f642471d91c1e804ab7661c91ac3e5a182d95608579", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-puss\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "486089aeeac44a59c1916ed564433886c57cb170aa5b6e30279abc3c66aa2938", + "regex": "(?i)^https?\\:\\/\\/shemal\\-webcam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3bf67968b5b73cc036c97737601e761e1847b34567524005134ad133757731a6", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "702d6b586e65bb89282e8a2bf6ffb7537199d59141c488711dcab3cece461fc9", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8c1548970973be78462e5b7252a7e6cfd9d5c3327dfa8d91f05dc68ec9f7e1a5", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a9a42fccd2d0d0a1c50a0fad11a0653242aeaf2819e56d4b34bbaa781e443413", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3ceb9978e1a8c5c6a280899819023cd3929baccc62254a621f3e5fcbe7cf9a77", + "regex": "(?i)^https?\\:\\/\\/tchat\\-avec\\-webcam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2f1427c3315d807c9ae695a42e16b02423b14358c5e6a687b4735a3e5eb1ccb9", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9127b3caecb62dfc2966b4193aedd91c2a981133a3439b6defbde464c90a2e2d", + "regex": "(?i)^https?\\:\\/\\/fr\\-cams\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "791805ab1724c5c7123998415c444fabe381b66e06247ffa64681cef314bf602", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "578c382a64c8f9eadb16c222f28e681a4b5c202a93654f629cd91f2b22e99cd4", + "regex": "(?i)^https?\\:\\/\\/films\\-x\\-gratuits\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0887ed2fc92edb70a842d3694ee4dd0956ed6d8ef0056d1a4d8faaafbd4c86e7", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "71898298c79e183da57e74686761f3a81c201546842ccf7f68bdc70c0ff1493c", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d90866361c4890028bed729cfb070d62951687c47bd531cb6be8653e1f9fabc6", + "regex": "(?i)^https?\\:\\/\\/xvideodailyx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "86338e8dc18acb01cb5607f0ead4b082c4ffb065582b7aefaccf521da2accf08", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "709d8f29faa0d465872aee098b0404c216d293d054f644b86936ae33b99ec554", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-puss\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b0449057dbba144021c3c1a7e8b2aacff92001a629e3a1347a221b6c6a6a18aa", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\-boy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "21f71e63fa06d1f06838734e3afa2e9a05b553c0097f83873b7530c5e130e193", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "aa80722b72d7c51a0cf2defa5a2aca66e16cb210700303ab7dfa7c26811ea3b6", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "94fc08c8d4c05b82d29185db21a1242a57c37e0abd9f22f133815d167ecac99b", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c5ae87c974d60992f6766a5bd133857f68b642ff86fcedd18bc74258a7ce6cb8", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "aa09596256d28beef0e6ccbcb70bc45123e8a6e0ecfa535396bdec287756346e", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?a\\=index[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&m\\=Info$" + }, + { + "hash": "ad6a72cb7343bc6900f23535b4090fa2b21a136efaa0ce0dd66d73bbf1ddbce0", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b97efbcc21939b5de564691b3e712a77c943d959cda9f32500378c478e079a30", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-puss\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "36d7657f16e26bf70bb50c1392bf443e4cd4f3acef4bc2209608b0a09a8f6a54", + "regex": "(?i)^https?\\:\\/\\/video\\-desire\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "da7aeffd65000bfa7ab8b5dc74f4c79b72821602a6018a53ae5d6f422fab73a5", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a1ebb82ba9adbacfc108d742de7501fbeb6aa9a054cb309002f489cde3e1a774", + "regex": "(?i)^https?\\:\\/\\/gfchtgyytu87878\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e0cad1d596420b5b58f001fa7a3c51779f00b5d6a893ea3bece4adc180a59ebd", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "32ae747f5e39571e8c0556d348ba04f44a91e3797bbede90e116ec1ffafa91bd", + "regex": "(?i)^https?\\:\\/\\/webcamnue\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ef0e73189f4f4226fa7b96139807f1f603840d282a4983fab832bad57b5c5659", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "435806ee80283a4dd19674b962986faee09438f6baec3193e5d39366a31b786f", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e5ef277faf76a4f3b74515b1f0c036d652b604d4f1f41ea40f5a33ab6855378b", + "regex": "(?i)^https?\\:\\/\\/hotclippinoy\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f4125e9daff2f7fa77508f0540e9e949312a8e9a5f25916fa430a5191ea93233", + "regex": "(?i)^https?\\:\\/\\/hot\\-videox\\-18\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ee52ce236a85e34adb3d7b93c9647cf20a4e0fd8b4de18c953537c3f9e5ea070", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d0fa6d427d84fb2521e23e430e5ea28633f0d5b11243638237ce2a923ca81", + "regex": "(?i)^https?\\:\\/\\/visio\\-tchat\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2baa6f7ab1c038879f1de6c6b3cfc5101454586323cb5eabbb9e5402f5f01c34", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fc56fcb4c5a24cf38d5d8189bc46d2a931ae701258674175baa38382b2433274", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ffc497abe737f3fa7271ac7f9c06a253054d0bf8bb5916cd346b25d1d53ef456", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "09bb1fc67930280ce8228e5ff085cc9dbcf43bc556d62a41d25a9b1626eafb10", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c58c20932742479fbe3d49f668c88d42df6c1647db3b6b90be16635412b63933", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "67a3ae332c75ec462919fa943c2858a39a8eef1eba36cd29b632cc00ca3f7654", + "regex": "(?i)^https?\\:\\/\\/femmes\\-chaudes\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1f1ec05d9b97c64afd6564bcc26263b3ebdaf9a6f2ed98e105571d02562f45e0", + "regex": "(?i)^https?\\:\\/\\/rjgbd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7beac5eb021d542d27666430047072a9655173934c50335eb01c4fdbd3ba932e", + "regex": "(?i)^https?\\:\\/\\/wed\\-cam\\-gay\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "711a80a958e16bcdd51bcc857cc361e0d5713e1093ea7f7888c8fb00529d58b2", + "regex": "(?i)^https?\\:\\/\\/visio\\-tchat\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3cc5a2b592c47061b388e7252efe5efc03b6754e3280066204c1195e8bc96c25", + "regex": "(?i)^https?\\:\\/\\/fre\\-cam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cd1e9c1b117652c8308d912a578ac57f48b734871d3cf203414bb3df12889b22", + "regex": "." + }, + { + "hash": "7e811950de2543648fdb190b8fb5cf1631bcfb4c369ec9f6ae1056518d0550f1", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "407331e983379b37f4d0abd97829bf0406449e218771183bf7cccbd7b9002faa", + "regex": "(?i)^https?\\:\\/\\/tchat\\-avec\\-webcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "653da3e286f063916f505bbadb12468ba79d955e212874485abe75de7a2901ef", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "887a4d34e640c965fff4d1a3b97c68ea9fe598edf6daa0696573010e89524177", + "regex": "(?i)^https?\\:\\/\\/webcamerotique\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "df55278940584ede2a8d3f9fea66617559bc4039832a0af57563d8750737dda1", + "regex": "(?i)^https?\\:\\/\\/viraltodayv1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "38a2c4abcab361fcac3c1bf83b7df6a218f6fc71f2a1a45d03414a3f9c04c79d", + "regex": "." + }, + { + "hash": "14b09af43145e200b4ff22edc6125fb3cf4de950585b183505ad0305cbef6490", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3da1a111c7c64298e5a7a8256ab809e10d760488f336da281e14ff2e5488278c", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c53ea1145db93251527aafb4eb05ce20f9a3058dcf601d5392bb0da3d4db65cd", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7b2ae792d3343de374d6a3a57e8a10eaff1b390b626b4ad3e74cb01290a7d0c6", + "regex": "(?i)^https?\\:\\/\\/dfdfxdfgdgr56456546\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f0328848b1b087010158dc334b0cd169f3cb0f94f465284aed3f9b705ddd2eb2", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "048c02c61ba7bbc9bb479a3e993ea68eee349b060bfced14ff97ce6d298b3211", + "regex": "(?i)^https?\\:\\/\\/dfdfxdfgdgr56456546\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e42dccba79e31f419b8fc03b5aabe571a47d57698c3c1d8620b53482436d6e56", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9953eede55c940ecfeed2dbcbf398b7ab519e818577e2314dcc50fd5cd9c9266", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cd5b51696920ed135692765943b8684a54f6493bfe09cab3f3350de259c65e3c", + "regex": "(?i)^https?\\:\\/\\/shemal\\-webcam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f1c3360fd81a5263eb8b596963452a07080032106298317fa4e461c465061ad4", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-puss\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3a35c451c7f29bcbb0b974ba492103c2a32ae326bc775af10b1df74804a6036f", + "regex": "(?i)^https?\\:\\/\\/tchat\\-webcam\\-x\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7b6ce11828acab9dfcca06395712db96444b0b9a4bd3e436514947601c843bd4", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-francais\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0b0c0ea523e3becc9f24b2071a124af65650ecb6fb11e2fcfaf96a9f97a0fcb1", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-francais\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "df750385ddaf89261d1749d9616e989263a8a5688e3f150cb8cd96b669b95e24", + "regex": "(?i)^https?\\:\\/\\/liveshow100gratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "37228740e00d49b301ccf757b4ca8d278e2fb7574ad8114dbfcb69d62efd270c", + "regex": "(?i)^https?\\:\\/\\/gfchtgyytu87878\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2606e766d0a0e031cc097e3ada0244df3244cacc452a888dc7214791f62f6fd0", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2613fce25e71b7e687e5741d1a9134732dbc3668757bfbabc012837949da2295", + "regex": "(?i)^https?\\:\\/\\/tchat\\-webcam\\-x\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "042b7fd021be30654c9bf91dc3b90bfc7c03d75ef7c5447c6051abb45e9dccc6", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6ec6c2a815b49435d2dbf06b07dc869a1ed4dd3ffd8e42c27e90cfdc65e389ee", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "fc7391e1d007d704e1e80877ce7167f380963ab55cf30d481002398c0be8316f", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cbc3b39b5a81d92ad85a412a71ff66bd4e2446cd0939b3321bdc1d009d166fd3", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8ff417689f3128262d0d0371a44a22fe5343a395acf263b2c1d6fc294dc344a7", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "57117cc69e7ea8129386dac199fc48050c476d44b1aeccd9296415248dd02bad", + "regex": "(?i)^https?\\:\\/\\/directcam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b55dd743ac57df0f31b3b1b9cf616504fe2e78edd627309b6ab837ac07e1c1eb", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "128072749b5e0b84c99dd1a975117691da5617abc8756f442f06b07b771cc9ce", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7481e43ffe50f67e19c27cae7ba5f4ac2b4de23501910d71a4725b9b9728324a", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-pulse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ec550968689a827451b4c1c872718cd584bcbcc8861a2f45fde9fa7b1f9b0147", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5b12124e01948729ef98864e4b460763739435133475db6bf2c924039630a8e7", + "regex": "(?i)^https?\\:\\/\\/fullvidtoday\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "64614ebf9c527cacf31d144a690cf9f46a215a07094b1ff43dcdf9b593459c0d", + "regex": "(?i)^https?\\:\\/\\/rjgbd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "62307f6124ad32791b8143878cc92fbf5a716553f5471c20b7e40c282b071af2", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0e4cf4e77943f1ce59473586b48d00341beb75892f23eb92161667a9442cc9c1", + "regex": "(?i)^https?\\:\\/\\/tchat\\-webcam\\-x\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8cce266e6f87956fcea10a8a0def7216993f6685fc7bc0b38d0c27cb0442bbd8", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ea77f06cb102a2feec4d2bb0701d223879e87953d189413d89a78859178fd179", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "875000db91755da172201505034b0588a3669671f212a6f91bd0b3bb6edb1152", + "regex": "(?i)^https?\\:\\/\\/gfchtgyytu87878\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "995d64d16b0b267051419b8f3f2986f6d189148925aedef0e82fcc9c90f1f788", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2aee3a40dec75c6a774fdbadb53b627d0bcabc079c7480c1702b88665744332a", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ed30b712ed45b507660976eeba05f664c5dd89909b488d5f49007dec2be9b85c", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "95866450625afb3a480b64c99befc0acf5c9d1fa3da1e5581e1f01fcbb075950", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a4b26c9aaca0281b99bf83365ddca451e0619f1e30715f5de24a71792ddbb02c", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7c5a64482bab05d937668a6c36c5f3b4a791e9c01da9e8ae437673676eed299c", + "regex": "(?i)^https?\\:\\/\\/webcamnue\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "81f5ceaea88b73347a7a6bd1d59ef96e197bbb8198ce68ba60ce47e7e85aaed6", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f5eb5f4f8dd754e9dbeb1f15ec93f4be814efaec2f1f813afc3ec88827db0fd3", + "regex": "(?i)^https?\\:\\/\\/annonceplancul\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a8e76f12a3a61a09e377874cfec98bbff278f3ce830b457c27b1eebbcc00e0e5", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "67751f5b9fe8745dba15f332618b648190e51da4f6b08fe68c5e43b6066b291c", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0f556d2283c5d5ca83595eff9d9f27497ddab4bd0f6790a2b87a46adc2db59e6", + "regex": "(?i)^https?\\:\\/\\/dasdasd21312\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cb571c9848f478332cd92d81e96ecad449f33361a3a8c3a65e482f9f6d2c832f", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0c76252b451661ea3a19206b0c455d4797f126391b381d17a8165a75f501e408", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "710e915b6d0dda96e591fc6dc2d4f6cacbfd37140277b55516ab3b4ac3ea3f52", + "regex": "(?i)^https?\\:\\/\\/dsadh8323\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1990ffdbb95965cea9f43fbfa2236503ae6b4238d079439aae62a9b32bc566ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appgr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa01f4611acd4fb14aeae6aed07674d60ac8b1bddedcb36cc8cf034a98feb600", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9a045c459735749b157ba9bfb429bacfcefbe584104ede3f4e3699d726e12890", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8f55e98713fd0a16d8b86bfb8d81bdd0af0583ab34e5154ecdef6486adcb3a92", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "46d02eb69e0f3b3bfda777e59bd1f6fcc504c30eb915d82fc5bebce9b919d6be", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-couple\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "48e5e82c395596837d21fdb5d77c6c24662cad596e0d11b0c30847e5b46fe1cc", + "regex": "(?i)^https?\\:\\/\\/annonceplancul\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a7188fa52ce5b6fcf499fc6e96db7cbd2222f2d13e2f7a9058c89082095bca12", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8d9bfdeea8c9cd171f5b174a70593f8c7a81167fbb6a83b80e8b80f32f0422a6", + "regex": "(?i)^https?\\:\\/\\/video\\-desire\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "aad8e2b882bdf9732891b9f214abffb3a438611c100252353d94d61708e10ce9", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cae5e5af38320372fe340f799977289fd114d4a6549ab5283af067a7fab1a55f", + "regex": "(?i)^https?\\:\\/\\/annonceplancul\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "945644eb3c015013bbe642f6092ff1a65afb7a640da7f54410b80b2a75b63743", + "regex": "(?i)^https?\\:\\/\\/dasdasd21312\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "2f76a462e6ad2ca7826e72b202e467714f2d6a3b0a54e9cd318ed297188f6b7c", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d7760b112756fb6dd9c796afe4f9df3056e749a6ae2722730a31b7c8549178d0", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "05daa454b5edea760e6834447e13053b16ad9408058993a48c042ed3cf1d39c4", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\-boy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6192a911f053697de029c8705c2a3ebf99ef219f543d8db2d1814e2e5c20ca59", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6bb27c79192144440af221b581076801de0f19ccf03c7366334f6d1db00f9ed7", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-couple\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "87ad3bf57409ea63b301cca75c8a7d1a23ee3a2c6bb64588f6836c6f84bc5cc7", + "regex": "(?i)^https?\\:\\/\\/xvideodailyx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e315e09c9ab590a46cfc7965e2869f660f5f6b46ae085064b4a17d3421d97b09", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "64810d9eb9a8789b06c8fb10b099f466989e7eef5c5fe1a2ae7a616fbf3e3b60", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3baaf80e01285b1ae7eb7773359de311b081c0fa5409fdddb04fe6a2646e1dad", + "regex": "(?i)^https?\\:\\/\\/films\\-x\\-gratuits\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a5b0ad65cd36d4fb537180f936f56f81fcaaffc8a5871a3d15df31e5d3ef7495", + "regex": "." + }, + { + "hash": "616f61e54d6937dcbeeebc4547576ae28e789df2886ded78e8b4d313a9a9bf28", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "87de8c204ca86fb3ff8890401104061c6be761833d8763c9ec453b6a819ff416", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "28212c4c9c2fd7410e2d2739cbaa956e3f9f0eb88b229b654af5bdde8b409562", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "676e9d53f03314be2036acdb2a3bc5f28d6c068d28b60c147a9a044e746d9855", + "regex": "(?i)^https?\\:\\/\\/femmes\\-chaudes\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "111e6190d4dfdab9d76c8de5832554202ed5e99a343927464a9d5f1c64d0c346", + "regex": "(?i)^https?\\:\\/\\/flarioopllwv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9feaba004cfecef2119831a5093c4348a55c76cbf7e0b7be5b312bbfe3506c83", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "aa5823b33184c54755b6d64356bec7f42940bd537c924c512f1669f178517035", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+U(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c6bfd864d102fa969a36e8dbfa1fb9ed6b0945a176cf6b88e89ff906402753d3", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d30128821025667eab68d2edf1dab2167c14dccac0f1afc612ca847004785e1e", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "aa67886d858b6a4934d9ce23507e6b2394d88709f876485d4fc4baa62ef66d18", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "331af88369edbedf18b80d56cbffa4286cff7fe38164e231207ce746cccdb483", + "regex": "(?i)^https?\\:\\/\\/liveshow100gratuit\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7c3bb3687ea56ce1887a1fd9ed6400870f42cc0c123c804683c4fc9491747bef", + "regex": "(?i)^https?\\:\\/\\/amazon\\.kboclpzn\\.com\\%E2\\%88\\%95vljhc\\%E2\\%88\\%95redblsj\\%E2\\%88\\%95apqaqd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vuvrnmzu\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9e59104215e5d87236f9e1a5a42705bd18134907de21ca7a8141c9f2133bccf3", + "regex": "(?i)^https?\\:\\/\\/liveshow100gratuit\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6eb08f1e8a3e9699414f0c306bf4d12bed41792dfee407b09b3625fc52365e2b", + "regex": "(?i)^https?\\:\\/\\/rjgbd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "42b404f504ba99de954bf2e29fc85982b5be8c8a67a89bcd8a258b41f3921852", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1e6a4b28ac1041b59b140e920aa87cf54bd93c5e9d9f6e5ddeee70fe8c4abe67", + "regex": "(?i)^https?\\:\\/\\/fr\\-cams\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9fc050b2225367f046d875c8ae894ce0d01f2b8749dfc0dd7a694b3230f1a0ab", + "regex": "(?i)^https?\\:\\/\\/00003\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8bc2d3b6d5c59035b2b36b3c9b627888ce640348c138dcbdb5e2669be8e333d2", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6a3e6d1969f696cb816afc9f1c1ce19c7392daaad0a484d743dbe61ea2c3547b", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-francais\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cc5c9c6b9546fbc3dfc7ce25ac779af70cf06e19fa77faed146963309588f4bb", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-pulse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8c231a1ab09a03c4f63a3ad4e474f661c3f7bc79ab1721426098a5d9e1d2fed7", + "regex": "(?i)^https?\\:\\/\\/fr\\-cams\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3949126409ad3b058a43cd9955fa6c9f0060684391b1d4c8fdb1c424fcfb5259", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e092b12f3a61fa412dcaad8cd5a14803c7e588087d665f12ce16fade4cfccb75", + "regex": "." + }, + { + "hash": "53091b4d6f8bf5a2d2dff90ae592b921b6e6436d2b07c783f18a5dcd2abfa521", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5adf9e53f738abcda3f5f306c0556a16e464a2e0ad3d139d27b9f329f788ac8c", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e3728c07525e0187a33eb006d7d09b51c4d8231cd601c80941e8eef228b600ff", + "regex": "(?i)^https?\\:\\/\\/hot\\-clips\\-today\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9fbc6fd9f7862b9bded26a175f48ff9142be6f4af24ec9fd07379bf284630d27", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6ca2aa1bb1d1c66f243094ddabd96d06d411fd50b626458b2b0cf0c0b82e6cb3", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ef1d61ff5d41bd4ac044cf0b8bc945f7f617ed49ca182c40b493cfa83e379550", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c01eac37ae48c76f98ac89e98d5b9e821d9b5e44503a5bde03cb0be5c167bf6c", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6fed1810dfdd296bb60ebf57e55f0e132f7628e7a129bdc88ea5f4396bfc0207", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a8cf554012af38bd046f96466a0ab86ae679f116e7f26741117583f747849455", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "095738b2e6ce8c237fbb379cd3ed7c656971ec96e5353c82f8d20b03f07549bb", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "702095fc3c470673b9a420dbb8988b490fff101eaeafef8dd544f188e08ae77f", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9f66a46ca1fc11530937677fd9982aa0e25e5cae05c2b04c245ea7a9da3ebc03", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "13aa23e5a34399950ffeaea4a18a6a1dda2c2e5f0b5a6ceb63cda0da5bceb472", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b2f9defcdb21d1db15469f949227846f772d0940e568b0cf528c8406364c7392", + "regex": "." + }, + { + "hash": "8e227b62a1181efcb4809b9ef334d569290d8eaf5fa1bae8c2cf4989a94bbf92", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2357fbf378e84e1ae570c032f985f3ebb79f09d8a64ffe87c753fc4310bb1d9f", + "regex": "(?i)^https?\\:\\/\\/wed\\-cam\\-gay\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c78b039ef16015c018c937800c87b46bf34d9441e5137d89e5dc440b74fb88b8", + "regex": "(?i)^https?\\:\\/\\/fullvidtoday\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9755d0be4178992705976199dfda2d1e1defce53170cf86a716910aff4539f22", + "regex": "(?i)^https?\\:\\/\\/plant\\-cul\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bfb9cc519b5996ccaf2e7972e0471ca75ce56f3988eee359a3265ba62f2bc4e0", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a50ad720ff5c7f648a3782b2a2397c4a8247f1ddbcba5ab5da630deffa059dff", + "regex": "(?i)^https?\\:\\/\\/shotsrobloxid\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb2d092a1daca554db043e951b49b7ffd010fbeb33493e91c0914021e321bc99", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "9dec73051dc2086cc67d0943e6987db0f665e82fa7b4bf7b5666a8fce2bbdd3e", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-pulse\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7bbe44e9a64231779ab0c09361673389dabbdf650b8e80c9ea51d6ccc488a2f4", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "8348c1dd544a4fe357411e6b9d78892de46dc7c7c1ce4fc021e7b5a3d46fec95", + "regex": "(?i)^https?\\:\\/\\/fre\\-cam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d5e4d5f577aa5366a242ed7dc3727c20e2b92e49cb43cbeb3fd162abd33e304f", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3a65b215270196ce7462880796734143f3713475aa9dcaa375cf87ddce4dd89e", + "regex": "(?i)^https?\\:\\/\\/tchat\\-webcam\\-x\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c9454926cd1c6f18f4dd8e9c122586abc80182ed90c7f95a6ea5b9305f5f4b6c", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f437937b22ff18e1598299368f603a4450239583a2cf03734e66c82266b54bf9", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-francais\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e393d0cbcef7ae13c0c2965b693fa4c9386d4a51cc0c7d66179d7e3bf0765843", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "18d79259d584ad66b40b244ab36dcab21cbe6460a134c8b23b2b9a9054a82ba6", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6f6d2d5a23fb31927c0f7b5e36260c0c0e73263f7fae7afc6ec3d808d027d08e", + "regex": "(?i)^https?\\:\\/\\/tchat\\-avec\\-webcam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8bc2dd254793de562d354f39bb3cd702791ce206a6ab54bd968d4791955a20ee", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1a2fff50c0ef00391a4c526497deff796549acb207567600e9ec190ad965913e", + "regex": "(?i)^https?\\:\\/\\/dsjadhsa833\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "37beedaca18bd1b12d5d0fbb187797864e24b33a4eabeb5ffde19e913a4771cc", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2015a583e2d483918625ed81f79c6e5cf43675b4bf6263e3b0f29b4b75eef236", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "14ab1e90b7d024b917322cc139f6581c99b369df0fd01de3201b799bf412aaf3", + "regex": "(?i)^https?\\:\\/\\/webcamerotique\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3ee7c2c13171b06b540b9bc3e82b03b7525e9c8f9452d385be7b0a8361f56455", + "regex": "(?i)^https?\\:\\/\\/fullvidtoday\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a3d98ea0bc686275dfa779d90d063c950bd2f10982e48ceefb4c2bae6d3698be", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c1c457e6ae9ad05f20edb55984ef7e23cfa5cdb61ac883f8cd19e6c3bf72c66d", + "regex": "(?i)^https?\\:\\/\\/hot\\-clips\\-today\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1872b61ee55c966b345cf99333209d44aca52133814e241602e155cf40eab8c6", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-francais\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5b0b79dfc0a99cf6b62dab5d053e1548c68331dad38290dd6233978ba831b59d", + "regex": "(?i)^https?\\:\\/\\/flarioopllwv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "37e4cf5553bd1cde734e3d3fcce86c3743bad0891310a0f42d087731675070b5", + "regex": "(?i)^https?\\:\\/\\/tchat\\-webcam\\-x\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a9cacc1ae3446bc11c25b7d4d64cb9a0ab99d5eb4aa37c25d9d12a22e9a559e5", + "regex": "(?i)^https?\\:\\/\\/plant\\-cul\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0a16057dd8b20e59fcf17e9b5be60f59d6fc9a65f1d52ec663fdde41db7b990e", + "regex": "(?i)^https?\\:\\/\\/liveshow100gratuit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2465a692e16fc51eeb4d9c91fdbbd0f9bd77253c3c02d7a3a4aa345ccf63cf8e", + "regex": "(?i)^https?\\:\\/\\/rjgbd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a2f2abb4ecddd2a5a97b561729adc72aa275806f975706436b572c46b15a0766", + "regex": "." + }, + { + "hash": "679741eb87098cd8fa1ab04f530d55f88da5151f5961e9fc6f9771ded12cd644", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-4\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9bee60abbff76f7cb15eae56a52bd452401dbeb0d0ed656f1248edd5c81f9253", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a2d964ac061c97ae36c9a2c16c957dc442c1d1771bef849bdaf6e10102c388bd", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "beccb2d55e2498f5c6bc6c6b64f7740f75210ea9c6c3050f63042572b63640c5", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "75df2b15eedea334232995325ecba6346099018c0155eff98d2f50cfa45a8a04", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f29410f4e0964c1bf923d3acd94eeeb5d2ec2ec249ba7fc2facae4a2fe981adc", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-puss\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4f93f30553197f978471643016659d263163d6f96dad1229e9fecb015a3db2ae", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e7aef1855e7a654ed41e734a18049b9a90f87ad5853f7e4eeca99cc6a001eadb", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "05e2bbf802f07f149bc2eec5f4d37c8e1b259d36aec858d396cb208f2223205a", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "767684d06037945fe7cf7b04344c6601002729d88a6ebb92d84dec495b85a486", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "149adee0cf488143900c2576956eb66ae38e0ac11f12231e9781df333e3b4f48", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7740433af50f9f5b6b5454fa3987919039263957227c75b841fedc43375edad4", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-puss\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f606f78268e2d1df45a28db748af8b4173d06fd9a570994f22468e602bead89e", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "87d88666d45b18337f5b10e5af3e1a0800ae68a3b30f05ad5396b8817ecc2ebc", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "365c5ce7206dd557afadaf4c2d16812d23a9433507812278d685c59e4bc1ca9e", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "836296063e401702c4fe34984e8a7b39aebfa501ec98235bc31bb1261841d593", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "32387107d592c5ad13ba52b11e30dcd307ebffdca08e1068c444bbae97b08fed", + "regex": "(?i)^https?\\:\\/\\/viraltodayv1\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8aa0d87aff2b39eb0f226bd8a48b555114b935246ca47d8dab334138d401cafc", + "regex": "(?i)^https?\\:\\/\\/plant\\-cul\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9495b132635b5ce74d011e031b5c5139be6404101619dfdcc0297acb3a8c14ae", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7aeaa21f77590c6e98041854e47430129f13ade278ae612fecaa1dc9177c9e32", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "950134759faaf471631b5b71c8cffdcfab872fc7bed1f08f3bf4fee18db201df", + "regex": "(?i)^https?\\:\\/\\/dasdasd21312\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "96f23f7c57c338c79c6cef52ab1c2623345b64fa9cb3e944f46ae71cce3ae50d", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3170bd1aed7b4b76b2c5a5eaa41eda3842e5c779e15fb1b27addf613685b972a", + "regex": "(?i)^https?\\:\\/\\/hotflickfest\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "40079e74e3f8c62b6f54ddc63be4ba2842f07507182c7d4c900eecac6035ac63", + "regex": "(?i)^https?\\:\\/\\/robloxartmoneyrobuxhack\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6edbb97657ea86b27dee9819b2175e893e51d157bfa5ff6fd4145749ee370dcd", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "aab2c47f609fa0d35fada5fd58493932480a1214acbccbbc03b35e7f5275bb6e", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5b3de6f1dd64cdd7163d2f5ade3b19dad933872ea4b3671a411cb8ce2a06ba7e", + "regex": "(?i)^https?\\:\\/\\/hotflickfest\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "451cf8b127e413cd45896ddbde65f7b83e7b28baa4797ec02b0e9d68d3a4659b", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e24192c6730bf03fc379d5de952950d1be1c2ac03bb41030706c8cd28a80b204", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e9ccfaf23bf52ab4c03d523f15f67a8cee7f17b633b478d9ee2179092aee5dcb", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0cee8155df5b9e9ef9bf049c4d2be7db414460e829b5179d940e20b123c09ef8", + "regex": "(?i)^https?\\:\\/\\/absourama2024fr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0afb4387b544322aa39d9325bd918261217b358789039880e1679a44a959b29c", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "014341b035b6758f67abb77973f171e1bf3a84aa57a4705f2a91e08eb7bf652a", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "67cd75110e580675d1768fab643ecb153ef4f6a8960e52f2d60efc99f4ca1481", + "regex": "(?i)^https?\\:\\/\\/dasdasd21312\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "49aa64aff98481abb2e6a594e52990422587a3aa2a205ae1da20c794f740866e", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d442ca900981129e0367ce01bfb07cb150c73a45cbff93d1f91740e2214b1148", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ee5358023ea41894a5f33fabf29be242f0454c52bfe257231b366e8ee2c35ba8", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "faec769522db03d43beb0096aaf7726c1c46f07d3fcb0054c32814bad4b14300", + "regex": "(?i)^https?\\:\\/\\/fr\\-cams\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "82b44a33fb092e5903c178389236b210f052115bedc36f98080d01f1a61075f4", + "regex": "." + }, + { + "hash": "3f96832d6c58e333719cbdd475f59d8cd25b97263323e47de9f37b2b8095389f", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-francais\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a2a41b7d7288b59b225788a1eed88f0fa310686ab3e0a222a04a7e74705c67fd", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "553717369fdd95d9a1e90dcf37bc5b1b92b6a2d7a3f02b5b0dc6208b51182cad", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "96664068f375c8472d96f67f964e3107e5e6a1b39a30d1a5807f4fce91516247", + "regex": "(?i)^https?\\:\\/\\/tchat\\-avec\\-webcam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7283163d340ca9c99496f253018cae68c8f67f15e1424f25d21424560952d5c6", + "regex": "(?i)^https?\\:\\/\\/dasdasd21312\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c71813f154098492560136a110f1b4f01a8395b54777fadb64134657ca8f5d6d", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "31c41966e5aeacd600d20d380272cfae3499e887a3b6be16dc4897d56014598e", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "483ab78b000435abc311ed252322507c3a2225327a7d5c9abe5bf49a564d599c", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "82a8df6cef8fe4f6ccb781ac2b3e800aa3be2f6e2b16aa8fcc3ca19ae3db9b6a", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ebeb98c3791c4242eaeedd4a7eefa6a3cafa774f81eef32f7caa6adc8e846aa5", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1aebce18504fa32ad202d203898cce4f9722a858be98079c67b60fc3b71eb981", + "regex": "." + }, + { + "hash": "6af3c10832fead11385704df26813b4104cedb2a8b5bb1c733cb78dd25b5faff", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-4\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "44bdf8df3298b26f2a2943d59bda815a6590249507673205bff7e3f30f4edd8a", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\-boy\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fbafybeigdt625aev6svvzvci5qbq375cuccqwizoo5xou6cihy2alhp2vdi\\.ipfs\\.flk\\-ipfs\\.xyz\\%252FsabbollNG\\.html$" + }, + { + "hash": "8ba16eea5e6d0ce5e8b242f266ca3a1a304035c4e3ca10c3ba4834afc56219a1", + "regex": "(?i)^https?\\:\\/\\/shemal\\-webcam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4e204b55c7eb9c5e16a1db8ebe6142cf005729486e45257cec425df292396bac", + "regex": "." + }, + { + "hash": "c88c55470f869e46c7c1cb6666597d108cce29d366d4bfde77055fba25e5f40a", + "regex": "(?i)^https?\\:\\/\\/femmes\\-chaudes\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2c17244f6fca4edf7a96213645651644b3ab96290d61b95180a97435f4be2b8a", + "regex": "(?i)^https?\\:\\/\\/gfchtgyytu87878\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d3f6c2e008fa02c4e0f0b9a3581b601f93f902e611dbae981295a3685db29ab1", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "75f4000b11a62ace2a5d86e68fcb04424649e6b4049bb8821661ddf25f29c198", + "regex": "(?i)^https?\\:\\/\\/dsadh8323\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "0d0a2a12e4073c18c9aaad3c5f242292dd32808dfd5921b26da4a4593eac5bc5", + "regex": "(?i)^https?\\:\\/\\/plant\\-cul\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "698bee1d77e6382f5f8ba4f23e93bac223c145dbff782e76a5e05dde81a35184", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "967fa2d5a21f0f4238b0b2938c2202bf112e973110427b11dce48fb6a08cde76", + "regex": "(?i)^https?\\:\\/\\/tchat\\-webcam\\-x\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ba1a08831caa519885ecb8e9615c3ec0c9ff038481c1df3d8583641a3483cdcd", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f951fdc17b3a3108875a1aaabf60b4d4119e7725df7ff4e5dd76cf8bd37ea893", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f65d51394344d4af887cd11df6c468255bab1a74b9fb9e2057228cf0e780f0fd", + "regex": "." + }, + { + "hash": "a309ab70aec30a877debfd4ecbbe7049fa0367c92957c5dd33f297a8c95a9378", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f41bea1f170a6953c5378e3853bd228f40c23967ccf5cccca325a420a5a5530f", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4d5c85c4ca12982ccbcb834a71ed680a3f92d757ceee1357555479f23e6a6a41", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "df41a25414c75e0ba7e2ad759ed5b4b267de3054384e1ce0584cf4db5a3232aa", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c73ac7f3171fd878f89945c41fabae2346d506f58eb548f65aba5d37f3575842", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "346992d5248ae767b109f6ad8a0128c3158331489dde77b97969b4bf1be6ec35", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9fb24e5ea4e42b96fa75bcd02124ba98d82d2474cd9ffd5871dc61e8a09a5b2c", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "51a1188a35456b15a3ce994f4484acd8443244f23695df61f5198734472fc5a9", + "regex": "." + }, + { + "hash": "0c34404a57a50e3a4bdb248290169ec80d22079c80debdf5fe3601d75af4d19f", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "76695b5cdbd33d71ae8e7d7be44fab1ee60a3c109845951a9df79743cf626e66", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0aa91fbd204c9ed59a6655d0ef7741c8362fa8f978ebcac633cdf42b3b87404d", + "regex": "(?i)^https?\\:\\/\\/absourama2024fr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bc34dc4d0f37d77c3c938df4d01e6017235dd8ac3dc9b926b878f1458d69233c", + "regex": "(?i)^https?\\:\\/\\/femmes\\-chaudes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "482292cda98fa6db34a8fc2531860d66642a6acc6f9bd1caf0458f0c68fb51fa", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3993e9abc7b54091bef2897fd0949e6512d485fa8b82c7d1bda0eecaf520ed79", + "regex": "." + }, + { + "hash": "57ba417872d31858bbf487a8d7d25661fb1a4d503d3f05f8ad04ce8ff8e25629", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b736604d59e3c81aad6958b070a93987e79bee547437f6eb60f44a1551d45184", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0dfbfdebce7819877a9d0235f581bb15a4398453f1a5ede8ec8aa1875bb59dae", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5793bbc2afa216479eb36f454d2a3c4e18ddc80154b007b34c7a7c4c56fc8975", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "dc3e81ebbc6d2350054fe992772d50e5f1f24120c5532a70e10b35aea70735b2", + "regex": "(?i)^https?\\:\\/\\/hot\\-clips\\-today\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "852467e10b0160180a57652854468c1dc63b4bb0e61d280598d24dc24c713280", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-4\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "00f97f8f13f03616c8f40c98a6a68686e51188ee3996c8e2848e5da5e5b90446", + "regex": "(?i)^https?\\:\\/\\/mail\\.verificationcnxbsseagss\\.142\\-93\\-201\\-29\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e39b9a78beda0244a3a09d9d2024b73d94896b356f6ef9c2d728a46e18003a18", + "regex": "(?i)^https?\\:\\/\\/wed\\-cam\\-gay\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "756226509bc594537c295d944518f86ea24dd48cec004e7978a8a8c04c89b4a2", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ab9adff8c204b740873423d607098916709ed07e0dd9a4e42c33e3898271e27f", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7f0d75659d20d75aedbabba02c6414948ff81bb96fab56f3bade848bc923d673", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "595dd8e35a7f1129ea7661914ab4af926de914952821ed24eb9f6675d4e14c07", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d3d23f8ff9a28fc631105df82cc53f10b441d501d4db57c26206081397da937c", + "regex": "(?i)^https?\\:\\/\\/dfdfxdfgdgr56456546\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "11bc87d8d3dec08a1bafe2f2e24c684b6a3e32058ee56136b80f8e837814a1a5", + "regex": "(?i)^https?\\:\\/\\/viraltodayv1\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1da89d60e02702842e30f4c505a73d0acf79fe3e1ce738e70364dea20002b5af", + "regex": "(?i)^https?\\:\\/\\/hotflickfest\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5660316b04e86394d0b1b8cbf33e1389f28b7d7f4e30f4711a97bd445266e776", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "21334347d4452a8e2488426dd3baa5cbdee821ff2eff015add3544da7eff8e13", + "regex": "(?i)^https?\\:\\/\\/annonceplancul\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5fe5a6b9d23c98671c5ddae4bd5ec6971be91222a0190c5356567917e5f6b88d", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4751747a6040d9e905c7a36db116ece8d7bcb865ae7317bf33b47fceb961a4be", + "regex": "(?i)^https?\\:\\/\\/hot\\-videox\\-18\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a38aa7244cea6e0a1e6de3d1507f498ee383b8c76b49369d641700b39bebc3a9", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "13252c656593c5fab2efad85aa1d3305b79c828923d91a8fc706a9e491c0be9d", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "deb60f503b463f19c3691356432a7ec3cda5045419b12ab4e61bea6a1169219f", + "regex": "(?i)^https?\\:\\/\\/shemal\\-webcam\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "804af194ce5865cdd28859d5710343bea16f52f585d54cb9879586e076c044fb", + "regex": "(?i)^https?\\:\\/\\/rjgbd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "57118d4bfeedd8bb26ea363c74a074591d626ce3074950170254c37bfae16e9b", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\-boy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e812ddce2bc56a35f8fc1134b48fd99547be90f49e99bf1fe0ae5e2153044367", + "regex": "(?i)^https?\\:\\/\\/absourama2024fr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "531a1696ef82f3599d5c3dd94ff87f622f0a959fd0bbe239fbce5553c1bbc741", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a715647795b239e8f120ac5be4621190f65f6089e706d0ecb78c4d826127a1a9", + "regex": "(?i)^https?\\:\\/\\/shemal\\-webcam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bfc8975fe1ff50946d7a2087522e20121bcac015c5e1ee8a9b2e2977b37db914", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "94e530562ded3783affb599f0926171a0486675cc8ca8f07a80eca7c28b93e04", + "regex": "(?i)^https?\\:\\/\\/hot\\-clips\\-today\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "886a3e858397181797dd366983d31f4cf140a636ea8d8816073c8e72764ec90c", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a6eb5c255008424a7b548b38a6581576a13d22f1e6316c18d04adcbf79dfe215", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-pulse\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "23faf08f1e81436f855574ce30e8ae8e2cb04c2f17d18c003412350247b6693a", + "regex": "(?i)^https?\\:\\/\\/hot\\-videox\\-18\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "94257d0f906e28bca0cf6db4f2019071197ff04fbe2b38c3533214e8ee4d4944", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0a95211b41ca93c354f26033a45ae409b49bc98bfed438d98991f3a9ad2075e2", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6ee839a4647be318e8d84e9b7220e6ea39bf13f0927bcb3ef2b3c770a19fde5c", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9984e028cc03395131424fdc4598054e365e074fb2b7beecf9afd61e98ddd17a", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a443374ddaf0f792b9a20abf6fd419115751e8c56a2404233e8ed98f366c13fa", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "90d23582f664684d8812458a63d8c78c9deea83e2ab89682124b95fb97442e6e", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-4\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ef312acc0e4aead090d9e234320f548603feddc3b92150c76f5eca0d66dfd795", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b464d8f8238523ac84379ad4dd576d5d8b291cf11a257132ffa32717ad73de56", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "47eae2f3792366b8de57f01850267d2e49c15813cb9b727f3c07fb37b5855047", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b6b935925fd2babe689c230a2e50a7c677bcf2093f5c9bdf94c8fc5250a72021", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "8ae89bddd73e7099cf9867aed2563ea2e36d23f388fafa321ca9e808f0c3897f", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e5da6c38721e7e44dd337ac8627d14a43541c688b49825e37b8bd88b17589639", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-puss\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "426d0479300360818164d76994bebde24eb2c57df77ae85f28dbac35568b02cb", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2d846fe660e5b164dd17e005baab2182d133946af2be665872e3ec36c01bb229", + "regex": "(?i)^https?\\:\\/\\/plant\\-cul\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b044adafd5fbebd6551eb7df240f123d3d252fb585b3f1a413713b1f9f0422ed", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "16d2b18dbc1d19cd1c6ff74444f9b0448b20155e00df7d0d2a27c351be8ca952", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "dbaea8846069898b16ce9b9621f3c8f399f3b3a67e7a0dee2483389c6eb44f63", + "regex": "(?i)^https?\\:\\/\\/dsjadhsa833\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d464cf46e0313dd7fd673bf6395225ddcbed06f686815817fb74fbdf791bec6c", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lwcjbh(?:\\?|$)" + }, + { + "hash": "8476bbc9afc0474142b544255805483f5325cfd6d0a5805560a56b57d0125122", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a4879663b1fa8b29fa5fb0cb84ba3a3f7812dfd64af9159c1c5cf26f57026e2d", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6b9491c5ece3f4ed93b271b8cb5b9cc824af4e9fdd8bfa970f7cf56274870fcb", + "regex": "." + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "e42d12a445d1a4a0ac8207ab91192cc0fc4e810dbb89fbccc839651744108942", + "regex": "(?i)^https?\\:\\/\\/rjgbd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ea7785e11392d0789485c5e782ff3cfe5aa2a2dc9be5387c6352652ba2b0a81b", + "regex": "." + }, + { + "hash": "41bd9c549d66bb2006367ae25f870ad95adcfab7b415b3738d8030ef2238e9b3", + "regex": "(?i)^https?\\:\\/\\/tchat\\-webcam\\-x\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ffa996bcecb8d3ba52e95dae05379fb34bc78a2deddaad6e89e77c6a8dd5a8eb", + "regex": "(?i)^https?\\:\\/\\/webcamnue\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a8d043a784932134c538043cb119be4b9b8a656eb05649fa451af69082784b17", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f78953f18dfd612dbd3df85fc6961d43f9c70a40dc060b30089433d966dfe90f", + "regex": "(?i)^https?\\:\\/\\/fullvidtoday\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4c992c4d9f64146b9bc29f862c008a7574cf0001db0e8df6aef036c5a441cf96", + "regex": "." + }, + { + "hash": "455325fa5754800be5eef059892bc56578ecd0f72e752e2a0b61f330c1f68390", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e79fc2a4d0cb78f5a8a0193ef93d7fb74248dc68d6533bcff99f1e3da0c8f94e", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3e6fbf0b044e787ae65c7edcc3746ad527ed4884024c19a9a248fdff4b19f252", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a19dd3b78aeb0630cf1e469bb2d71a278e2a3bb78d50a615047b102aeb5559fb", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "576c2f23de435b805f58779e72a601a48373f6ab0cc592361f39587cdcd1ed59", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "73b82fd30053a80df016d3126607448f640cc4dc653fd400334caff90f823315", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7e43e4730f69a0626a77b3c4a878682a09f42bd2db6d25fd59dea03a95f5ad0e", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2f81075b2552a79dbb5b14d2965ff571ba0450a9fae356afa0aa01f915d2743b", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bfa37316208f5dc633c953ea27ecfd986da79733decdbf4214bb833b091e9c17", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "87002a8d0699d2dbbfc4b0f87cf90d207bbeac04b381621d6940eee1988b4306", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-4\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "06557ff5f38c83410423b93edc600a621caff68edb76f76268a1b689109d936b", + "regex": "." + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+$" + }, + { + "hash": "c362aece516fa01f801627eaf01872b14069fae614686f3dc6e2ace8851e9923", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "74efea8a3ecb7413c3abcf7736f56fedb1bf89b14425785a42ce6f2138e894e2", + "regex": "(?i)^https?\\:\\/\\/dsadh8323\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e168ba5a6ed5f0d957f908607773bd14a8465f4854341543ac5fb3b816613ef0", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c7602ddeab378155123af908c5e4695d6446b1b23e9579b1b00492f40e358c8d", + "regex": "." + }, + { + "hash": "268599e9b239351797bde904a5e625193a540999b9ca52fbab52fed8aee0252b", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "19e3eb3047d5cb3d763f2f903d66aaabff30d7274a4c50c598c95f288ef38818", + "regex": "." + }, + { + "hash": "048ea80af67db742cd1b1e6094eb03461506751b1838eb1c032345d8f957b9de", + "regex": "(?i)^https?\\:\\/\\/tchat\\-avec\\-webcam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "866f46a97fe57768f36ddc762f608107596e27bc6fc3da18aab3aee41bb635a1", + "regex": "(?i)^https?\\:\\/\\/flarioopllwv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "073f5412ba3afd8cd2a592046e3cf0b8653b6014636772ee8d971006ae504b19", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "caad2b86d81311071b978da6ce9d1f60d39ba55dea3138c8b204e9c6226be86f", + "regex": "(?i)^https?\\:\\/\\/webcamnue\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "178d674056f9df539392a6a93cca7034f6faefcb96e32c41cf2dce27e7f07742", + "regex": "(?i)^https?\\:\\/\\/femmes\\-chaudes\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e3b2c129037aaed12a9ec0b2726ff2e16e94859323a98f860455cee52ec46658", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b701954c7b694601a82473a5947519509f9b7f1227fb77d5950882b4b08c86e6", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3196115885d4d82d4fcb70800dfac3ecd905b8711395466d60e20b4718e9ef89", + "regex": "(?i)^https?\\:\\/\\/directcam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "86f26554745fe1071c0419d39aa5a72b2c55c84b288865f9751e6df770f55b9c", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b633e31bb8624f228557b30087760bc6e4334a81311970441e58bbe43ec399a1", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cfdceb0ba317fba727b91f242bd6c58cdfc07309925047b5c68dd1fdcdb9e6cd", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "068e92598932689273fcd8851f4191bd76092587a8eb4f3d983f158d58cc97fd", + "regex": "(?i)^https?\\:\\/\\/dasdasd21312\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "86904a961831acff170d48ba8b25b5f93b9a00c07711d4d7aa585760bc56c286", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "29461b9d2cc6597e77b0c3116e5c2efc20b96226f6779b915c463aefbe0124ef", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "50d4f7d03c96cf722c373d52c947b4a1dc2a66ed822423680e1cacffee6975f4", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5ee02caeb12f71aa427bfd22b30271da5a7fdc5cfaad5dcc6529e8bd6145f668", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "968b02154c3c03df3207ec29d7e75789613f19184958ce4dc6cdb63312d85a16", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-francais\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "27fc8117b58e3b298727325e712981d75d1d4b8d0d263d3b15ebb02daffdf312", + "regex": "." + }, + { + "hash": "bae3c97130802294e156070e5e6c9c1aa56d56246b7b2b13e9d11e434c740c6a", + "regex": "." + }, + { + "hash": "d8a53623461822d29121cfa0e2e5ff97a69f8c7c00eea61468a5901c1423a287", + "regex": "(?i)^https?\\:\\/\\/hot\\-videox\\-18\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a5a449b399ad3aded3785864106d2a0207ec9e67740ee64559231d32095f59ff", + "regex": "." + }, + { + "hash": "0524f07cb611b3b7f27d1165e65b19929dc0d2c83bc97a66379c76f5e774261c", + "regex": "(?i)^https?\\:\\/\\/viraltodayv1\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "246384303ada57b95b922b06175c19742b19cca09acdb6b3bcedbfcc077c3bf7", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f0e46f34fe06dd2a7d77fa24a3c82dae9561c718825402dcf795e765fee67c34", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a56cf378eb065f3ea5f7af2576080f3e290175f16b805b44b60b74945ea58f23", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-coquin\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "902979bda224f5c855823e0b3ce31dddb6cef93c7fc7e97bdfcb0b344577590d", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "04d56e2eaf559a57579c01bf103858acf72f130b04d7244151de5cdec069d600", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ed68ab2308cbad56859254962eff0dbe0f127b18b1e6ebedc7d19e20a13c48c2", + "regex": "(?i)^https?\\:\\/\\/rjgbd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "17cfe9ce3d46adf49e0152465e61cbd4acd1992d3a0e2cbf65933eb385f52cfe", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5a7f17d25e3b1de60c5e141dfbdf716a744838eab237912ded8868b5da543ad3", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "faece551a55914c739ddce9d46fbf15425cc1dcd8865b2fae9cb2aaaa6969d0c", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f0430849646c9d142c0cb9ac0248001cff8676f949443da42cf812b1eae7d400", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0f5db7d9628cce266ba8fcfd8bc523f0e2d1f5e6933c94cfa73be6b811f203e9", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "24650a6d8cf5435771f17e139b6fe616c28a95f94c4331199cd0feba8575905b", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ccd2e9d1ff08a9c7470d5113b20dbeb8d53700ba7714a6fd8b80358e9c194dcb", + "regex": "(?i)^https?\\:\\/\\/dfdfxdfgdgr56456546\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8b24c5c4b6cc705f8a69168e90d381c6f95976da8fac1876b542cde55fea0a6d", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "671348e491062841044f74f97d910df00141abcd6398f0690d023d390fa42fc5", + "regex": "(?i)^https?\\:\\/\\/dfdfxdfgdgr56456546\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ed80faf2b5e512ab5a80bc63c4f92d77eb184a528aa914e790d2f6df08675ac6", + "regex": "(?i)^https?\\:\\/\\/fre\\-cam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "eda53592c47ffbec6f0a8c9a7bfafeec6abfa184203de6f120c0aff17d8119ac", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "315a1341d36270c5f97f5110e53ca5c64afccd5166567566f4018a3c7317d4f5", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4202650ee4dc23a261981ec2b8944c10ec9afc0dc204b0349833cddd4b01e7ef", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "171b6a920ed0c765bae3bf343e66d374d94bb251240da82ab25f3b58cce49890", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "52f6a03b58978ba85f81bae152c93d4374e82cb39cd9b4ac6811d1f77a65b619", + "regex": "(?i)^https?\\:\\/\\/plant\\-cul\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6a30d0869f6a4981ec6c139104e4255e8f0d421a75431c113e6f3c1cbf391b4a", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e8ee97367838d36ef36a3bbf65c79e8595452452acb69defa2feb4fb21311d4f", + "regex": "(?i)^https?\\:\\/\\/hot\\-clips\\-today\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b98d050695a53d67be64ab5f0d04199444ca3cda3b7918fed067de9184d9b4e5", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "314c1d9d27945bdc98d85c510f171ccc28150fc7729654a1bd3b5fde74a89433", + "regex": "." + }, + { + "hash": "4ecef31cf0379f6947852186d18d42ca872022fa17bfb7e8957752878b7427f4", + "regex": "." + }, + { + "hash": "4468db8803f625c2de05c5588436888994d2d2da8a60e79453f0382d9e8364e7", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2ca5f9101d0fc1f5d0424bf67ca21032271e762804058ac082b4ef14df154ec5", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fc34ecde4f6bcb70b8890354cdf1339a329e068372dc58259987e40b36de395a", + "regex": "." + }, + { + "hash": "501ad675b8cd57d7d494f605827ff9f94bfd55c8059d89b4c7475d42a05190ee", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2301bdc398b2352477c18c17383a6c7183a1adfa9831d51bb098f2e795fefc18", + "regex": "(?i)^https?\\:\\/\\/dasdasd21312\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fe1731867de2dea1a2a3321f3b5852f32159cea1ad1fe92ee04725116e4f90da", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "53dc5255511a8b5c97e1cc0518bd995aa7efa1be1b118197cadedaab624a146b", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-couple\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "686e8494cfe65427e85886183d6e911f55229c516a591285ce4017b56fb9e864", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1caf85fc670bfb58b57e0145b26e316b64e82f8af49aecb89531fc364f43a9c1", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "842376e4a71d33e097c7f124da74206187c5b31bc3ccf0074f239fd9fb71ef5a", + "regex": "(?i)^https?\\:\\/\\/gfchtgyytu87878\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7c21a272317d8893b17645afe7b6221b7a2515c0ef9fe6d1409aea1732fda7f8", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ffc3595353f29274299a481a71eacf60b293f264042f88b38a60cbaa104d999d", + "regex": "(?i)^https?\\:\\/\\/viraltodayv1\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "995df0c4ccf4d6df75f75b123c78d425f16ef92983fe5c1af79f25e6f7b16de6", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f6f7269be3ae902d0fd29f2f4fa3a4f2de1a88319b822adce34519cf0427e411", + "regex": "(?i)^https?\\:\\/\\/hot\\-videox\\-18\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e8992b45c8b0b769fdda4e561f4487c064538023cf69a863ab65411071eab8a2", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ea6556f97401842e23fb6e776334df413ac9ceb5ec3ba6484971a6e953185527", + "regex": "(?i)^https?\\:\\/\\/fr\\-cams\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5f443fcb19a6a8d44ac9f42d144a24fcf9da6953674655f17997041ceb456818", + "regex": "(?i)^https?\\:\\/\\/absourama2024fr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "dea95d3ff1494bc2776b5793be53f97ef0ef605a84853481e4b8d14c4c485855", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c4df52c7e2872ae630506ee1277fac32fb83f718bd88bb90f1bf539c89a5aba8", + "regex": "(?i)^https?\\:\\/\\/xvideodailyx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f7201b198d7475350b41b7df35fc65806248bbec40970eabe88ac4c874406de0", + "regex": "(?i)^https?\\:\\/\\/films\\-x\\-gratuits\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b5bb1a984332aed94487aebbcd9a1f9892659660619915074fe41f7fb0ce5a16", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "63fc08f1569ca37c75cb409b178c17df91baa7bab9042d7b93bc1e5fd948cb8b", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fa7dbc187edbdf140bbceed670458b7a5032b0202d0d42593c13a484dad1ee90", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b57cbd780279948147ed3d07dd61657b20167228d323826377a944b74246b8e2", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4802ee181d538ce942abc6591cf99f9837fab3d41676e12f1229542fd415f0df", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c9b1c3608a972801fb3e73ce61e42fca22b43714fc38c3cf52a22539d7850ff4", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-coquin\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5d19280a58409bceaa416a16fff379336fc0218f4f6f6c66dc5464039846191f", + "regex": "." + }, + { + "hash": "016ebca1a273166bf0219e990b0faae5763cf7be9c475f7288d099a0eed0da09", + "regex": "(?i)^https?\\:\\/\\/liveshow100gratuit\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "827b90d6df3a79c003b238d495cc7fa5ea67027461d79767824812e27c6e8e84", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5d2545447a9c4b92ffbaa74dd4071675b63331a9ef9bfba852840705aacbfe0b", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "85cc1ba7512212fd55a4b67a42e2ece1ef87f1ec2fbd205baaa86d5e86cdc373", + "regex": "." + }, + { + "hash": "fdf4d1820bd53eb4569f45b05a4a5436028a53238e13c8bd4a466b7a122b8c62", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b0e1a62c8b4b3a520b36dc92a87edd799db18a1bed5c599761cb3870549d0e37", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5f99037a65a024b2961ed832bab7712087dfad9ac05c202b7f3f95660cd22ff4", + "regex": "(?i)^https?\\:\\/\\/liveshow100gratuit\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "05242cb72e853ddacfd1a095cd517b0948fdb5b1a0f06925119e574b4e4c426b", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\-boy\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bb1e90e0e55882023c335fad5a584408602931ca5e431999305cdc3f5bbf904d", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-4\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c784f40ab1fe1158212f6e59b5fb56d6fa484d7bf31ff482511a23c4a70a8896", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f2979e682f6f83586a9e6bdd1955843619afcd63cdb116394eed101b995c3b81", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "317197c050973bed614e0226e4486449261656a78f191240c7d04abf54ccaae6", + "regex": "(?i)^https?\\:\\/\\/gfchtgyytu87878\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3bd1eb53d41836d3372da9f2bbd992f3371d7a552859673b92076920cf7997bb", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "be0d29bb2e47336db821262d55dce060d18bae205b0584d53177cc171c22bff4", + "regex": "(?i)^https?\\:\\/\\/xvideodailyx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8694c3cb318cc8898c45994cbec5ace2f388c770eb7297e437eaad8c29298774", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "adebf6e0638cfa6ba1b2fcd5c17003a6d790ce3fa70b5d1a49e9325085f1c2f4", + "regex": "(?i)^https?\\:\\/\\/directcam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "28b743a84f9930ec585aa4965add5ecbc2e9d480c4a531f6875dc945c8968f9b", + "regex": "(?i)^https?\\:\\/\\/live\\-cam\\-couple\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3b5c06c6006c10f5523eebc4a8588c2cfe97e65d84808b4c52e5bdf0bbf49c37", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c4e4d5489570adf42dd410ff8eedeb998713d78abdb5c2ef3ddb249edc5df12f", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3bd096e95ab51904234811527587277c697881c73e8fd1c6ae2daaf564adb023", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "112d90c3d0e377d3079a17db1215c5eb67d56c57bf42bc95e8e6e64ea0415f56", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1344d0c6948198e476a8dc91e47019ff4be14acddc6f98971e59bb21109af82a", + "regex": "(?i)^https?\\:\\/\\/video\\-desire\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "01e3b012b970635220c63d93fd347727fc3656a2df8bc0226a20dccb924c090c", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e407d3ed8799a66b2e311be77222092e24783848daa91d81dd0a92a423dd0285", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0fd2c11972f120bfa550419d890d26486a2af7c0214997cb51cdb88e6e156278", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e12f3b4b1fb81f5e27b2733edb74120e0cff526f7042876ae069c4978484a382", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ef9e1d3c78015305dc3f0297de4140dc01d921d970f5339fa0b57ea9dd046c5c", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eff2d28801b389a437d6fe883004a042e63e9a0a68d60b2220fbdf75fbb7918b", + "regex": "(?i)^https?\\:\\/\\/haithekethe\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a3728de87d542957ef99e2cd7791980cdfd23d7ea559bcbf0bee718f86982a89", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1ad6da3777ceb100e151c78e84e51537fc44cb068f6dec0a26440552cbab6c40", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a8fcaccd4a4505d0cdc1ae0ab53039818f6011d39dbf50ae8521ed8334896249", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wmxnyd\\.com\\%E2\\%88\\%95xwnezo\\%E2\\%88\\%95wxkkjiohi\\%E2\\%88\\%95ruzzq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hkydeq\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "34080cca25f99d86ca5ff32e8eceb953b3f3d83847dfddd761a76dd8ac83bf5c", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "302e56c06d3e6eb58000d20c43c81bda63d1beabbb0f6c9d6e75960beffae01c", + "regex": "(?i)^https?\\:\\/\\/plant\\-cul\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7dd7b21d133e0417796c4cfdeaaccafa3ae0c548501a992c71b981adbfd28b71", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6b861dd4b5bd5df5982d85ce1c67aec9bbe56ec4fa31ae05f1dab496a37bac14", + "regex": "(?i)^https?\\:\\/\\/hotclippinoy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "81e4b79dafa7cadb183df9414030d1a169fe9648fdbecd1fb878aa49353562e0", + "regex": "(?i)^https?\\:\\/\\/gfchtgyytu87878\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "95c8918fbe452eb9e4d490ebda1b1a97969c9dd0e22fb96a911ece297919e333", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)" + }, + { + "hash": "a50cdf566f7bd803ec05f893fe29a5d72183e06f227782680bb12ac510c5411e", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b0a52125ec7e36f04a17e3149570428dfb357ee14638780b8501c7c2278e0149", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "93b479489fff8c457ce8903d4dd1bef0abc3dbdfad2c60bd3b1938779a46ccde", + "regex": "(?i)^https?\\:\\/\\/annonceplancul\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "72afc36ad637418f39fe842539a4b6d86781720d9943ea8bd4e5375df5bcb9b1", + "regex": "(?i)^https?\\:\\/\\/directcam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e32991149784cc023ef700829df0ffecfbfb22cd8aa48fdf478a7d7266480eba", + "regex": "(?i)^https?\\:\\/\\/xvideodailyx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a98839b12f3b957d721bd69cc7902a680669f7fd7f613d7e464f2b154d66562f", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "fb3a47257ff5aad4ff5241cd0f72a4ff586ad33a6890b5d070df73cdffee2fd3", + "regex": "(?i)^https?\\:\\/\\/fullvidtoday\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3f6b86e97c78b1b6d80599f81517ad84d9a5ab4d4004cbd8d76ab14cdf5423db", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0890001d3b14accbdbfb49baeb53fffcaae7e63153d78e88148f797fac240758", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e5c2432f05f3b65563cca477c809147a002be4ec4d8bb29e193bd5f59dfe0e71", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "30ed174cde46f0d68fb517c6166e997675b952c1e8890b856f63db69da837dce", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1cf933253e77262343df59cfa061c738b4ce2411629613300ede2227565bf28b", + "regex": "(?i)^https?\\:\\/\\/bumperbuttelz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e0c893f00e00ec2e6c7cfad584e94f7d835a1ade63ec1df7375cff1aecdf1941", + "regex": "(?i)^https?\\:\\/\\/films\\-x\\-gratuits\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "34c0af3c2856b382936f9b3478d6ff09b7b1cebb40d9b39bf6bdcf2ffbafe525", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "968b7d46412a3d7cb91656ff366fa553b1b4fbda71d1d00fb061c4d23887211a", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-4\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fe08b39409efadefe27d7bdc700c3a99a14f047cdc0bbd599b07300940ab706b", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bb7328f142147442c5ee11fa6be4da3191375a03cae2c742874ee3ba43e076ee", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-pulse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2d809b3083d964529505509bfaf92fa5391777070c5bed95d961f653695f8b82", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "02ed34e4eca72c5e184954c7821871b81bb130b7f6e52a5d2aec358ebba7b47f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?shareName\\=5845\\.b58452989\\.com$" + }, + { + "hash": "72a47ecdbf69289d915e2db33ed5dab9cb6d31d4946475b058745d712b6b20a9", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv3\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8b3208d16b7192d55755850d4ba746c1baa6aeb8342add1c592c0b37acd97e22", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d24c187bc71f9e49a94112fbc6ba704d018181f493d18472de05c6f3b87eb561", + "regex": "(?i)^https?\\:\\/\\/directcam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1e55533ae80e0be608198c7415cf0f6bdefd9d222a87dc7a9b066605fa972dbc", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "165bf11a48d5f1558ef8526f3e8e69b1584a309f973499186790efc1463fd2d5", + "regex": "(?i)^https?\\:\\/\\/hotclippinoy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "11a775f6baa6f7a3b364b96c08524b844666d1ebd9833a4a7c5753af2089bdf4", + "regex": "(?i)^https?\\:\\/\\/femmes\\-chaudes\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fe05120860d224f90ce30ba24f9d72c944efa408b30450264ed3db5a5e82bbc6", + "regex": "." + }, + { + "hash": "a61ff89b8e8d1f9d3c7a668f1366b225fe92094670c80e49bcf3b24499e9a6da", + "regex": "(?i)^https?\\:\\/\\/webcamerotique\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bfa80909219c34d2df1f6b112b2665cb909e5d8160e652a833819cc0a772d48c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "d9c493e3ab7bb9168ce1f21a5ac6af1a7679ab28e60fe95bf072dbc9422606ce", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "62e1a73d484a05569850a4e49b5d0d4e582fd9c853b8ba7eca142b5f30cfb6e7", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0da4bd63a6fe4ab23e8489486940bb38ffdefba4bdce6a3899c39bf6be8abba2", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "94b1248a3215789b86343df1b49e2b29d6588c79bcb26a822eee5a3e5498df3c", + "regex": "(?i)^https?\\:\\/\\/dsadh8323\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4ad186a9331ee2da963ab2fb5cf0c5580d0b67024413f1c20a345adbe0d9b32e", + "regex": "(?i)^https?\\:\\/\\/hot\\-clips\\-today\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bfef226ece3e2bf5ee65781b1c9aa3f24e21abd8b63e44cb18e29222f10924e6", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a9717c9521256d3667082e6953fff082553a6ff746c4872592fef6ffba359f06", + "regex": "(?i)^https?\\:\\/\\/webcamerotique\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c133c51ac5ffc9b66b45a0a79615605877c43fee68ca483ca2be768e58e09446", + "regex": "(?i)^https?\\:\\/\\/gfchtgyytu87878\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "dc77b381a5cb2c22b22c5b7a11bb8ac2e3b9518cdf28ea78eeb66bdf45282a32", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "58e3f874be8a23e14359f408f76fd46c93eccbd2e8a15a10cfb122d666841050", + "regex": "(?i)^https?\\:\\/\\/webcamerotique\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "424d25c96b6c6404a6bd05381592ee5ca7879abcba4d10c02f9352f272752790", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e3c0f0c60e91f11bd94854089ddcc81a58365b92a6bb3ebc9703567b876b84a7", + "regex": "(?i)^https?\\:\\/\\/tchat\\-avec\\-webcam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "43280989dea15874ec737bbf7556dff13e3cbb4f2f17f188385a1272b7eed305", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "241b8aa1621362956f92a211994cc29e3c2768679feddcabe4c8bf473f887aab", + "regex": "." + }, + { + "hash": "6b0fc34a7ad948dc68aabbc39bddeca8c7aace90f6701642257af116e8641c76", + "regex": "." + }, + { + "hash": "f5d0d2862694cd2678a758e28b6e51dcd9448af41c1fe51ec4488320dd3a1188", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "003d6f258c782510c10e1ff56d94a9e3ca44a29d4f4bc74fdebfad0a559b01a5", + "regex": "(?i)^https?\\:\\/\\/hotclippinoy\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9ef8d62c34e67f65b9ab44a25b7d0564b9e28728bd3a373f3d45812e8b97accd", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "eeec7deb4aa279996cdef6ba25f6e8e98e6b4eb42d6fe0654b07c1dc2d3a580d", + "regex": "(?i)^https?\\:\\/\\/dasdsad212a\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1b0bb837ccf9560e6b84992e3408b6e9e1f94e897d3bc41af5958aaee0538914", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "676e64a8125a8118cc21932b46efbf1a5b81636ebd6456b94310fb532c56b2ef", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e911d1cda2c6358979bed093d6da5666ea141bb2942f93317e16bf2af06b9b73", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a093a42a3db424734b87b3d159dc4d256a16505eaa28ec0fd82066f7afc13721", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5497556f8868678ee25782400b613412ff6d9abccb1af109594ec549ad1916e5", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a178d823c9ff228a797029a8803498d2bf9e624a9935b575220285dd56cc1599", + "regex": "(?i)^https?\\:\\/\\/khkjgjgu6765\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "13c8e673bd48512652b2d8658d1c0f72e182a02b045d9dbb8a06c26c07fd8d68", + "regex": "(?i)^https?\\:\\/\\/fr\\-cams\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d344f115ca08e66307b6d26fe398fadde7bbafeffa513030aef83561a378f49e", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "655563d70e141b5e700287a114d24503adddccd730a8a0bc036c39eea4e49708", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c604a21d2c36c68d6df2d2a0638f16e6609ccdce45c701a85630733f529aabdf", + "regex": "(?i)^https?\\:\\/\\/hotflickfest\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b294cf8dda3da58676c2b81c80c8894be0183e4940387d0611e5f2acc5dc04f9", + "regex": "." + }, + { + "hash": "f5bb7f1bf3f73b90811e262a3c1a27cfafb82a268ed8dc5cd16ddca13ecf2de9", + "regex": "(?i)^https?\\:\\/\\/fre\\-cam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a9ba62aa932fe0f29abcbcba3656b555754465d74db0e8b3413ac951f7a6bcfb", + "regex": "(?i)^https?\\:\\/\\/visio\\-tchat\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "95c5a653620ac36f6743ed8da501aa73730333833f9b41edaf09ca5dabf68c94", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7f0de0dee77d342d0076ed5b6f52daf2c22db6247a83acb9a41810c9640953d8", + "regex": "(?i)^https?\\:\\/\\/fr\\-cams\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "07e7c0939b1247196e8402ca9c037c5734f144d42f3bad5b55ddebe6e109bdfd", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9c7ec2d9e66757f53e331f232593345d21a583556a9a492ed8b325e2f6f62d99", + "regex": "(?i)^https?\\:\\/\\/video\\-desire\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "145b862c25de8a38427a6955f27d3b902e749fa4ff6db7dfa6f743ea01d3702c", + "regex": "(?i)^https?\\:\\/\\/plant\\-cul\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e4cb6592025750f2f49d916a81587a985b32b59bde8c0ba6152c40239d2623e0", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9f6ff55cee8662dab24acace65d6b3f8a3f7570290b49e257a15bcfa146c23a9", + "regex": "." + }, + { + "hash": "9d6b39e79c502951accb9cbce050db8a49a91b47e70462356a5000075f536e30", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e479095f1a19e6e6fb34129138836855c95233cb902d520d507bb6ba33c39a84", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8cbb43ccbc46042e1dafeccdeb16573502b6745277b6cab66c347909cf092ba1", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "93655d6c8803967c7e684719783868c06bda19f0178411d59a40e82cbd305dc3", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "06551fa7cd82a8a83533f6c8118c6c6dd6583a17ea5934797a16899700f6ad17", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girls\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fc3018ce5522e928d0098de556e72d0dd7ba28e2c9337685bf21345fcceae8c5", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b46956f3022eaeef557fc81829b9cc873f1de29f9ecbfe6d34235d738f1152cf", + "regex": "(?i)^https?\\:\\/\\/video\\-hamster\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "544d4ee5a0d82af243990129e50a1dd5b0e4c0487acea2c93775e62872a29f58", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "339083f4d4e51d32dfa05b33d457ff469167a09bb6955f3f5476ac53265c2f3d", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "047c0052e40d256eead0ed98f83686c7bb848edc7b4db7c9e63229d9a5769eb1", + "regex": "(?i)^https?\\:\\/\\/btmailhelp\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "493ca55d06b6b9e46b2e2680990c253e38b520d22432643d0b8fbdc1044e9515", + "regex": "(?i)^https?\\:\\/\\/webcamnue\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1b320cf2de140da7481b971ab4fbd91044fbf1c46c94ee80934b1e89423ed207", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8331cea0ba48c7a6d435a8acaf947a11570286758b234a0474409a489e4ea44c", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a9ad86b7d8502fb2be4d791f2e77f188323e61672a0bed32426bd6d4aaf04c8b", + "regex": "(?i)^https?\\:\\/\\/hot\\-clips\\-today\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f0ac3604db856f4d2547e31f8c145089b732cf7a067187140771426aebeb0358", + "regex": "(?i)^https?\\:\\/\\/360bcshopcardif\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d89d8997d113bdd0569638f32f785ce30ef31c0d335bd0fb5b962928fd232ee0", + "regex": "(?i)^https?\\:\\/\\/dfsgfdggrftg564564\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6dc0a0560746f68cd8ecb16043264b908e77c2101a09a5193c2d12f5d5159269", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "61ff0b68d1c1d8e8122d1f9a3afd3cf0d1e0f3369ebd344dd130bb787f517436", + "regex": "(?i)^https?\\:\\/\\/xvideodailyz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8cc1b697dc6a815bb466a4159d4c132f9e63584508d9bf8d5f075d14e3c9dffc", + "regex": "(?i)^https?\\:\\/\\/360shopseccardif\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "02ed34e4eca72c5e184954c7821871b81bb130b7f6e52a5d2aec358ebba7b47f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?shareName\\=5845\\.b58457814\\.com$" + }, + { + "hash": "a855542fc87ba01a431643386c5a06c552fc1e35325904a438c44b21033100dc", + "regex": "(?i)^https?\\:\\/\\/cam\\-x\\-francais\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "e37f86354625086373b382dce21166882823e7744a292d307ad02b16b0144574", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d806f63f9507a90b97dfdee546f593de8fd191d0d1ee5002e38f239b6199f34b", + "regex": "(?i)^https?\\:\\/\\/dsjadhsa833\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c60a1a99c0930b21aa33e7f36695abccec5ef554e562c896a99000f1fb49ba6c", + "regex": "(?i)^https?\\:\\/\\/liveshow100gratuit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1f570c893254b36327b7ee38b6fad2a4af63c37f6f9e2d29aeae50faed2c499e", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4fab7bbc08cfbc1c1c9dd24050fc787a2bf81415338e967d68a971370ea96cbc", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-doggy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d3f6535a34d5094510e34b801203905e6f3adac847194c0734b426fbfc4b988b", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-coquin\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "066f09d51a9b71ae537ce7ea8b4bbb54acb83d60e84e594f1c5ea8f65f341830", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+d3[\\/\\\\]+zl31(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3e5d021b0c57a075cdde17590ace16150f2f98d4c3b060705b523c362bf89cf8", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "03a2ed40545d2d477b1030cb63928631e962867b71663b7dffad1dd2d5e8abd6", + "regex": "(?i)^https?\\:\\/\\/webcamerotique\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ac2e733eb84d5cca86cc3cf23fed7bba00dee8d1c71c2bcbe82e83168935894e", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "09527038959a6b080ed98a2d25664c5b397dacfd1599218bb84bdc3eb69dca5e", + "regex": "(?i)^https?\\:\\/\\/hot\\-videox\\-18\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ca71bdac81f4fdd087bf36d0bb0f90f70db8820c966eb77b4f0a463454c27694", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "91065da0ad46388910e3af6825ae5e0457dd567747a54f2fffd53c4cfb33c7e7", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "080f183ebc816dcc9d524af2797bbe2536f0a92e6c896c7a87d96734eed6d108", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ankaidia\\.com\\%E2\\%88\\%95ctzyf\\%E2\\%88\\%95gjdmalvw\\%E2\\%88\\%95iqhkvh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDvpq\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "68c5f911203a20892719e5981b3dc83699831a73de1aa686d007da4fdfdcd52c", + "regex": "(?i)^https?\\:\\/\\/dsjadhsa833\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "154ec6b1cd371e209e6c9c2bde325d9370cce925693afa0df0a683d90a10da07", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1d20ce13728e488441890558a476c37fae87ac887e8447d8ee3172c5a659300f", + "regex": "(?i)^https?\\:\\/\\/directcam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "953d1360f2f5fe1ef8ce5cf5043cfc196b9659dc27a41001442994c8dd4b97d1", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d7925e29f626bfd6af52af6449ede1b33843e707b5722d5256ee2b8a71a05", + "regex": "(?i)^https?\\:\\/\\/tchat\\-avec\\-webcam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "25fe72cb91ef4f3d51272f1e888e2bad6ba8bed42cd87b519c67cdc66c4c8a43", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "26894c9f9d31f617b603d5e12163f10d967b6a9d6a5cc0ab811ef247e4cc5706", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a85fde12f9313bea17ddec22d29ed43524f84e282e47e39a94c678a08bacd24c", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fdee3f7321b919d69c7ab7c04c40559011e331fa0e460937bc2de4b03e9fe2b7", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-pulse\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a54d87a6586c1fc509a37c4b5440f32237a4db8e06c0c2620f34e2bce641c7e6", + "regex": "(?i)^https?\\:\\/\\/dsjadhsa833\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "10d6b8b7485dff1f1f81f64681c72e34419b72b3799249f59a7f9c4a95301371", + "regex": "(?i)^https?\\:\\/\\/dsadik3223\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "04d58fb245575ab2413cd748e7d9991797fa91297e730db00795e74cc60e8f40", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "86e806fcb73cbfaae9de3c5595c2f0df04e9c9a401f2b96293baab5d6d0d4e9f", + "regex": "(?i)^https?\\:\\/\\/camxgratuit\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d35f4bf03cc851245e04ae37c1982cd4acd83e2d55881bc33cad013ca12d83a5", + "regex": "(?i)^https?\\:\\/\\/annonceplancul\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "816fcbb443349561aa38be352ddc460920a55b179be8a4bc42ba3cdeae4446d0", + "regex": "(?i)^https?\\:\\/\\/clientauth02\\-signin\\-coinbase\\.50\\-6\\-199\\-151\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fa69d4b6f85fa35e043444db9b46b04fb8a0aea821644c7741dec043f6685e4e", + "regex": "(?i)^https?\\:\\/\\/dsjadhsa833\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5f65259c9f5e4da348eaecc2787ffd64e98c312befb6c82fe1bbb3786982da86", + "regex": "(?i)^https?\\:\\/\\/videoshottodayy\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d63813245d5a1da1922e9294f1596480d476012101157d4a441ac543dac697eb", + "regex": "." + }, + { + "hash": "2b2fa9d0810e963c349bc1f02992353c15747c222b9b99a3b88a0447ddf4dbaa", + "regex": "(?i)^https?\\:\\/\\/sadjas8323\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "8ce9d1aa6f4548439f437fd7db564ca57820c162e6b21e7545d5777a5f29288d", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "d63575234f71fde0e995bcd16ac443fa5c264b75b782486108c0025e1e9f4b37", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rirotsyrua\\.com\\%E2\\%88\\%95mnnsybvwq\\%E2\\%88\\%95ncqpqjqo\\%E2\\%88\\%95lgyxj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gpzhva\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3a280850c6010fe02384f209ec5cc4151e7af06ac18dd9434e86ca0134a572d3", + "regex": "(?i)^https?\\:\\/\\/liveshow100gratuit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "aee071b3746b14ae6c411e2b7cb6fdeea5674aa4757d5e09b8d4e07d2ea1347f", + "regex": "(?i)^https?\\:\\/\\/gfchtgyytu87878\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5c540c1f20be44f541bb02266715cfcf4a3a87e45ca53437648abc54e206934b", + "regex": "(?i)^https?\\:\\/\\/gangsterbsdxzr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "887ab468a88ac6b8e39dff685c1078372c60abffab413135f824367a67c7159f", + "regex": "(?i)^https?\\:\\/\\/fullvidtoday\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "78c7df3e7489f980c373b186d6ab1bc222174ebb9b2ad5f52006ae94b864fc72", + "regex": "(?i)^https?\\:\\/\\/kennytcj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "62dc627a44f38b63b786cb44b4e49fe8be187d3757684ccebc0bbee06b6c8990", + "regex": "(?i)^https?\\:\\/\\/visio\\-tchat\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fe23d7ba9dad148afd9d83851d8891c895f66f13152db22a615e214ab21499c6", + "regex": "(?i)^https?\\:\\/\\/viral\\-clip\\-global\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "94f24904b2a78b4806d739505b2291226731c4e1d1f81f4a6357afa7d86c0a9a", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "b228b1996e097ad9262e21afecc207595c5c86f27d541cb0705918e005d4143a", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b9438ecb0e10190f27f42b0264db198d54096071c1ac21ad034974dcae7067c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "54f40dad8f69ba354c0c386a4094eb0b5c907d8eca121a587e94fc4a95de203b", + "regex": "(?i)^https?\\:\\/\\/dasdasd21312\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4418f21446726030f00f443c8536729e9c2b12fce90bfe66b378a5e757fa78de", + "regex": "(?i)^https?\\:\\/\\/fullvidtoday\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5bcc8b3389e4ba63968c39073250864ed3eb65671309c42d2e8e39709117dcbb", + "regex": "(?i)^https?\\:\\/\\/liveshow100gratuit\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fbf8d2c408c7ee277602371fd2214079ad0fb18122c0883ba145e52188def4cb", + "regex": "(?i)^https?\\:\\/\\/hotflickfest\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f1589d1aeddffc772a99c1abad37ea2d839b0363137c068ab6343b6d4cd51aab", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-pulse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2cc68b242c0ee020ec00d22660001ee34b5253a6abba7848e0277ce8941730e1", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-puss\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "065ec50cba98e57177bab17b7917af231ea6891a9eaa8185a43eee34f215f3c0", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-coquin\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "291d581d4f06431774974dcaca480d8ac7e84d75a4615854d3a73aa9f2b80c44", + "regex": "(?i)^https?\\:\\/\\/camchaude\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9670c3ddf7e2cb7f3cbd25f244904ffe6c59360cc70ac9b07c2ae0b3276d8c5b", + "regex": "(?i)^https?\\:\\/\\/videoxhotv1\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5f0884851a8b1cd87262b6cfc7fc2c8ff56f470222cae0a6c8ba3708df35306c", + "regex": "(?i)^https?\\:\\/\\/rnfb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8c5d963aae42bc322fd52d024ce9c8c66ab53265c87099a2d52b4634b2f2a604", + "regex": "(?i)^https?\\:\\/\\/cam\\-cam\\-gay\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4da0ca2be1de8530c73b28b2b17832bd4605566ee6ee3f346eedb1e15d114aa9", + "regex": "(?i)^https?\\:\\/\\/films\\-x\\-gratuits\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c53bc9889cb10ab181ff2dec7c4631551c57f3cd9a7e007f1614d0e173d9c2ad", + "regex": "(?i)^https?\\:\\/\\/video\\-desire\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ce3cc83944a5ca30cdda3034bbe40e2784228827bad10a665214b5239b280321", + "regex": "(?i)^https?\\:\\/\\/cam\\-gay\\-boy\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "18991780d51788e4814c6118721439bf05027ed5eb64c93bd5252c7a41c8b0ce", + "regex": "(?i)^https?\\:\\/\\/video\\-hot\\-flippino\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "178bd0536feaca046a17d5b053cb611cdf73985b07e043eb4502c1e7b905080b", + "regex": "(?i)^https?\\:\\/\\/video\\-cute\\-girl\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5a33312c240aa73bbd6d0e37a97149f9a3d1bd94921b099a91e4d01036b78edc", + "regex": "(?i)^https?\\:\\/\\/aruba0111\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "76f3a6de54f560c74965c50633edc2f8977fc14e441251bd375b7f8d5883036a", + "regex": "(?i)^https?\\:\\/\\/web\\-cam4\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8e33b80ce67c50f781729dbc25f3b6cfd015878bc72dacba54b2b4fa2f5fb375", + "regex": "(?i)^https?\\:\\/\\/web\\-cam\\-4\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e96cac2186f7f48338007ca01a6aeec83409c71018243ef618806429d38f9c4c", + "regex": "(?i)^https?\\:\\/\\/hot\\-clips\\-today\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b816d10a3751f422f5dadb84f1d56b9e7251924463f87724f8b6d7b05774bc4d", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eed491be54eed6f1e43bffa64ef1791031c68a18548b28c696cdf85ad399cee6", + "regex": "(?i)^https?\\:\\/\\/film\\-x\\-amateur\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "235b94b91e40114a2aba83a84a0fb1e703db11b221ae42f44f9efbf42277bbad", + "regex": "(?i)^https?\\:\\/\\/viral\\-clips\\-global\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4f64ce07b4edb412d6ae4a15b1a5a270fe326a5ecb1143d530fdddc9e2af92a0", + "regex": "(?i)^https?\\:\\/\\/filleswebcam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1507c7b70cf79938c328c319ff131369a2620f64fcdf69cffff7021871cb604d", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{10}\\.beefreedesign\\.com(?:\\:(?:80|443))?[\\/\\\\]+[a-z0-9]{4}" + }, + { + "hash": "2bfda8b23c0b422885ca60671170382d2acab1e4ba373e3c6d607792c2256be0", + "regex": "(?i)^https?\\:\\/\\/videoxtodayv2\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ef35c5eaf24655a1685457133a82177ff268a2320fd2b7d5cd681cb1b8bfc519", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-gang\\-bang\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "66e1e028549903c2c11ccdfffd587bab824d63bc084136427ab3de03b815a407", + "regex": "(?i)^https?\\:\\/\\/tchat\\-gratuit\\-coquin\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "44eee471fbfe757cdf59d45b4afd2ab121f0632ec97f945f63665876a7992a3f", + "regex": "(?i)^https?\\:\\/\\/irantomdxa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c04db239af9aea5579a194ef40fb39ee5e853d5ee13f67cc84665631b9d8c0db", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0bc1f2359972c477fed99942382260562b4140a603910ae0d1b4043c818d2032", + "regex": "(?i)^https?\\:\\/\\/bowpanzerjoraznqqm\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "87d8927ef59a065cda23d24896598332e0bf530830cd8fa2b8b82b2183c524c7", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "654d6e4fbbcead117d458f6a55254a608cf2640b9e9f8aaefecc68408f11f771", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2efb5b12aafc476d43a8e03554be3bb97a841a0afb48bdcfb10a254df874c3db", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cd4de8bd74b041b98956bf7f032a5a3fc86104f5bfaeb545244188f79dbc1851", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9141dfd4e1763a423841572eb925504b3ffa472f8c550073be352c9fb61321ca", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2e044a248b154fd934341f70fae1bdacbba3ac42d8eb29dd0229b81fd0cee8cc", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6dd2ac3b8f2d5406bc88c1376e999f8ed19bfcdb7d555ef2d699643207b6a8e6", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4007eb683046f68681ad2fb9cf9f29b36811ea6155808159897ef63c1ce3d8a2", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a614f033b1e8999c262f6d5a1c399fa854266617efe03be5bbe2ea1a3f28169b", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "12120ab0c393056e555967b52230bc850cf7736659b3baebd45a9abfd78b0874", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "08a527f9fc564085292003b241e2c055b4f24e734d7eabe358b94925f480eca6", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b5a57504c4c09bf38475f10f39e963265c72e2a9612b85c064b5371f60c0de26", + "regex": "(?i)^https?\\:\\/\\/docufasr224\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "9996ab105b9c80b74fc4af3c121a57cce2d924539d2a926d1d83b659e6097a3e", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b41f73edba518538ff9fd438e3bdebe1c42567219adcc4f19c421ac728b1ff6d", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeahgbqax\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3e6fc13d13bfb317c91aa84c221a32d9280fb2e6226af30b355ae3165ba6771f", + "regex": "." + }, + { + "hash": "00eedd2e0d5b62422cb51cfe56e3e981c113a295ba7dd373ad9af2127852b62a", + "regex": "." + }, + { + "hash": "d39bd1682a50b3ab8948ea0880c60cd24df71471b03dfcff02d452ebd964af5e", + "regex": "(?i)^https?\\:\\/\\/bowpanzerjoraznqqm\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "960f329a810f8d020026c1bf67f5c3f5653726d9751586c240cc0b7eaba37257", + "regex": "(?i)^https?\\:\\/\\/qaedhbgqeadhbg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bd6865b7d3c6c8e8db1f41e4a2e47fbd6f0c4fc80bf77a6a293a239f242c5a5a", + "regex": "(?i)^https?\\:\\/\\/eghaqdhgbad\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "14b8bd166dc628357940ae82579fe0a85ff03547b490f52b388ddee2df444105", + "regex": "(?i)^https?\\:\\/\\/hsbc\\.net\\.rehau\\.com\\=\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rehau\\.com(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "411b9489ae7406e7786cbe7de10fa7d59aeed4cd5e1dcfca205007a5ee5b3c71", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d5fc4f2b2a11a2dd7ed6d77ad08775b23d65acd961358987dbd57b7d09053dfd", + "regex": "(?i)^https?\\:\\/\\/hbeqadhbeqad\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8535ae64d744ab6811ec6c43719dd1289678b2aeded8cec181f349079975d891", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "551e57f72cf85f37452d99e2e41812226e18ebcecc22e3622efc92cc666085ae", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "979c9fcf07a68fa34353ddc70f18528c95611962f74bc3dc918c836ba402faff", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c87fd69db676635967883405586147c5fc405ddc9f201912468f2bb63ba47426", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "adbe007eb5fe5d11cf102c67b5e656c70c60a04dc4bb47ae12f4d3966e728c9b", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fbf6b8f8ecce35e44f9b6e378303acf50a8b4820bd5467e8e0a0f0e033fae260", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8481c7f749dbabcc12b397bc2f62e9c3ad71dbc63d0b183a7585f9b3bcb16c12", + "regex": "." + }, + { + "hash": "6fc58c3cd27956f68c57cb730cad821eff3d9c5dd30d0c4b449014c8f204edec", + "regex": "." + }, + { + "hash": "3e74433a80050ae3e236a5205f6414dd4b02197a295e68e04763a1684195b56b", + "regex": "(?i)^https?\\:\\/\\/geqadhbqedahg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a8d083eca4469fd4ffae8c33eb16035c246a1899d28e095043adf0afe20cddc4", + "regex": "(?i)^https?\\:\\/\\/bowpanzerjoraznqqm\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b02b1eb5b490062102397bc2ff8fe15c3aea07900b675fb742e15d56b6c2b3f0", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhbd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2f8d9d20969323baf6c769714ac04ccb9d94721c89a18b1238bd165e5fa400ab", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e391a6b6bc1e685ee9f7fb64578abca104fd12f722de54776273dd0cfe45c8b8", + "regex": "(?i)^https?\\:\\/\\/geqahgbqahg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2bdc7ce537584f794a19b8875ddd2a2317516064a09f8c62e4e5c729e521a3da", + "regex": "(?i)^https?\\:\\/\\/heqraheqarj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a176f9348ad31187c871b7acf4a87165adfd91f3ee5371a7892bd2628d15791d", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e466f0a90235fbcdd92d65c92bbd6ce2405808e2e156f6ee32c942fbe8db7782", + "regex": "(?i)^https?\\:\\/\\/qedsheqrhjqa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6359c9ecb09c0c8046bdb59e3fcedda91ab231510b79b4b1ecc21470f22e4960", + "regex": "(?i)^https?\\:\\/\\/heqraheqarj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "eb9d36d4d9595b6d5559c68ce17cbd350369bf59edd7e68a14c14c1f3f7ed5d5", + "regex": "(?i)^https?\\:\\/\\/hbeqadhbeqad\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ca28a79b19bfb508f5a3e1f092d232990a849d3708c1822e76c6fa9c851d1a29", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5f195b4764c0b3c0ceee721d286fa63061acc00b1976c1a493d4b4bff85193b3", + "regex": "." + }, + { + "hash": "cdb06fc1ca6ffc1a6dc1bad642f45969b6da1160efb7e41143abb80fcffd3938", + "regex": "(?i)^https?\\:\\/\\/geqaghbeqahgbe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "20b678fc2f70a366872b7920fa16cbdf8ab8a119351518924ea05b215f1bdb45", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3eaae80fac1b12e3cec533e8f74582462b165e6764dab271c34005f2b3d8653d", + "regex": "(?i)^https?\\:\\/\\/geqahgbqahg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ed92ede229ca79c746f029b574facaff3b7ac067b9886156f9a2b2bc9eb90545", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2f3412b75f1a1e992c1f331559e17340f0ffa0831c5dc9d92b4d407414e22db5", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f6d5adcaaf13a7425ad46f3c82b92706cfcdbe5f164fbc65f3804fdfdd27a8e8", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3e810bad64b68354690bea7b4858899973d57d2b2e282817c649bb9bca13b312", + "regex": "." + }, + { + "hash": "df1a90452858ba4bbdf7acfa8e4e264c9e546b2535c135ae8b64ed2c522b07d3", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhbd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "39b8ef7d9a8e38f89b47ab25aaa4f55d7d39d777937d9ca6974a78f601c4410a", + "regex": "(?i)^https?\\:\\/\\/qedsheqrhjqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bfa814c3e51b2f1195d08f2194c2519cee04af892932350d589be50fd7ee6c4f", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5044598a1819e2cb0d2c2efa1cba7ff7e4d6762886d5e594d96514e796a1d733", + "regex": "(?i)^https?\\:\\/\\/geqaghbeqahgbe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5b5e032d9faee544b7f6fc1211cb1ecce1e87ba75615bf1a37e81d7195b66d22", + "regex": "." + }, + { + "hash": "b77a5cfd0bdf99a245074aa879763920be2f7d70e3f76892b34e4e10b849dd50", + "regex": "(?i)^https?\\:\\/\\/videowawez\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "02ffc3c033b96163fe38738054eb04eb0e061e3b9dee32cfce0ac95eba81f2dc", + "regex": "(?i)^https?\\:\\/\\/videowawez\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "dbd1386bb489c3fc4c881db6f6f445439447008b0faf387ec38eec3a7fe55e75", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1b7cd30b7371f4de740970488ea2488dcd6a8d9e34abc19a5537209e17bd393b", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "711adc21df663e1fdfbacc328f6d14a690d30eec097b740c1c6bfdfdbe4fe69e", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dce602a18ec986d7c9099345f3b4a87af609883c33eb0de9c91dcb0c764240b5", + "regex": "(?i)^https?\\:\\/\\/geqahgbqahg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "657fad9b1cc39974688add79e00eec19ff60963ac590f564d10ce5491014644c", + "regex": "(?i)^https?\\:\\/\\/eqaghbaqehg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c4df80e69bd9b201635a9a36d641ce8c40937bd0595cdd746128e3a0ee84dc52", + "regex": "(?i)^https?\\:\\/\\/heqraheqarj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "83ec18d262f3277fda22145f4cdd79256563a4df08937f8d3d56bc0aebce8357", + "regex": "." + }, + { + "hash": "e6855cc967ecbfb80ff41506d8c4f2fe58c3d2f108780ca58efc31c225e391c7", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeahgbqax\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bc86d794f5ff5e589c3f2b8748a98cc52b7090a876092ebed0b0cfe16206ba8c", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "058274e25920a0806cb3b5f2a0326a7136ebbb4600b42c427f0c563835af7bbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cv(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "036771298b4bec3878d2ab5f11634a64aa810d18a090d84ba61f0d1c4a85bb36", + "regex": "(?i)^https?\\:\\/\\/heqraheqarj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0871061b7589998b22934fd629917b7d6c3bc21077e3710312ce2dab3179c1e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Contract(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ccd8924aed4f54f89b8b0958b8d9cd18444b2e3a307e60c4eac674b6abe8f8dd", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7aacafcf00aa3245ffc8ca189be01ffaea72d45555856f0def9ac95bf248e69b", + "regex": "(?i)^https?\\:\\/\\/freelancer737\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f8f9c57a658bb131d7f83c85c3f665fb9eb5cca1bb2f12d74bb4fa54f7ff331c", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "473edeb2d727b7635f46b89ed8c29adbaf487d4617768cbb9e0029fc81d1d58b", + "regex": "(?i)^https?\\:\\/\\/eqaheqdheqdh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "89b46accd0a3305e678457b3d8363beb9833438c44be9b9ca60e82db020636e5", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b1b524b44e4aa4bae12713854dc5c5a063fbadc8e977c102be7a815cc89cd410", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d16c4087d6102c1aba5fe8e54804f3784ac08f42cc0e74be2ecadeeb028a35be", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cbc3734f615f59810617e4c47e0d1ef0d95e4fc46bb9d637d598d4201fc4341a", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f9e434e5ee839ab7bcd4ee22a6b0f8ad909c5b32370c7c5f5ab43a8ad3eadd6f", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeahgbqax\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e71a25f98805f5b540ff83363f2cea56016369ff1db9adff0a0223a8c20a43de", + "regex": "(?i)^https?\\:\\/\\/eqaheqdheqdh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0da35dce1bd15dee3f59ba8f2b29201fd91da52dd0866e0e0b2ac188735d4caa", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fb1b6b35ba874c136c6171fb026ece00cddedfa617f1d4c8d969952e3f6549c0", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "37d436835ef2c190170ee16919cf47b70e957a000b67b7ead12ed7567c5ae030", + "regex": "(?i)^https?\\:\\/\\/qaegqaghqaeghb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e0d1416915f3f81f2d5ef6777b6052a235ee318c80624c0bfb5c8579f6d74ef0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+danerbootsaustralia\\.com[\\/\\\\]+1[\\/\\\\]+010e019135a303cd\\-c609696c\\-44b2\\-403e\\-967c\\-4d2fbb1fb979\\-000000[\\/\\\\]+bqZtgjE2kB0upJXQLiubB5bS9F4\\=171(?:\\?|$)" + }, + { + "hash": "f227e3f8a86a93a55b554af2cf168aca2c764ed985fd94553a2cb9b0f34b2526", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e65f29b6742033d854895484a41cab7227d448e9f1a56af3df2413a4645c82f1", + "regex": "(?i)^https?\\:\\/\\/stech02\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "995feee55f47e1e0df221743e1c5d820d16bdd658a3abbf824af2a19cd02c615", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c20f9ae69e577981adc0401df99c190952f66befcd0038ce041605acc1001223", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3bd01589d066cc75c61106d7b2e5d27d2fc04fbd3f7b66d51e3aa35a4a16af63", + "regex": "(?i)^https?\\:\\/\\/pub\\-2a7c35ab42534559b978ecb5650f2963\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1c0eaa04a72b5c9bdb549af338bb7b01b299998af6e94d71c254a91311f6157f", + "regex": "(?i)^https?\\:\\/\\/qaedhbqedwgh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6fab5e8a76844dd08467867a35dd2d51ded69c56549d64fd83bc1632ca631c0d", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3470924a970cbed6e2eaffa6191e72e4030139a1da960d550f39b093a20c30d7", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "92ce2f0e760cf5f8b8b7961689a6ad3fda28d36b045630a7ffc93c1c9716d4b6", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a58bcc054e760d58e2931f71627f7144b09858efebd7ce0d3a48381bf9a6a92a", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f1c3e7c82d7e3fcac52bf778821a4b40c6318f75aacc79750710145a8e61d234", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6be1f2ec2ede0efa6e8b9285b191d81bfd9cb41803e380d699b54f7834e7a1f7", + "regex": "(?i)^https?\\:\\/\\/eahgbeqahgb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "74d4cdf3450f5bdeb21be6d6df31f67eab4e0a34f533e935828302a2cdc8b871", + "regex": "(?i)^https?\\:\\/\\/deaqghbqaerhb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "674ac4a861dfa61f91020f982888dfd3865dc18a3d43802445a84b139c408308", + "regex": "." + }, + { + "hash": "3969249a68baed9e00c1004c0be810d36303556073f81711c13aa9db0bf309fa", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8832c89f4004fd82d59d5f9497c11c04144ad94bfd328fe177ca61996a9bcc4b", + "regex": "(?i)^https?\\:\\/\\/eqaghbaqehg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0ec1c3d9c3708589bc4830e929047ba2765c520a553e1255d644ebf52e9f8ccb", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhbd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "50e7f56ef5af016ad75f4b389e2c635e356ab8c8fc837a3d4c5247db614ba2e2", + "regex": "(?i)^https?\\:\\/\\/tyz10000rbx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "da15e87a4cf520ff2ef4af5b0bdf7e8e9084c1f3b15e68a7c7639cf5be50e880", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "702fee4f50e1dfbb95a4f12c5d98f9e0a0dc69725b9706aee5abbfa0d5d936e9", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "49d1d4ab8ce1f809de61289db3366d2441feea89551a8c1da544acb7958e03fb", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "16cd6302ff4baca528e29dbf4c719df86cb70471308cf63c34eb35c356434faf", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b3a1546b2285cdf802ac67731abd249512dfdf5db39d298c400bd0b1436e42aa", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e8d0a5c3fbc8f1f232a607627275b2a7342278510c2fc180d1253f190f0423fb", + "regex": "(?i)^https?\\:\\/\\/eqaghbaqehg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b753a83cb3b0b7d4e71b2658d7914d35af321f4019f358261453adab99701039", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "700375bca7cab215ae4a23827c53ad5c16f49150fceff7f5f1b3c66227c4950b", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "be28f3fb8cf5bd9f791ec72ae735b44c8b8d03269a332b0d5f68056946c726da", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2133b178f1544e384c5fb2ea9a6f73f4cb9e3357019dc542a63823a12cf72aaf", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7920fdd883e41bb53e447746e331f034751dda4b95bd0d32ad720b36eabe323c", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "9c778a793813aa26061c7d241912ea6997f97e2415907e561071c429b859f716", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "61abf524f11029e7c9c50326f18fb819821b66910d5f3cdfba28a0bff4c3ba52", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5e1b7156dc1da863a118500c6ccf189a91d58bf6df12467b0f5434435c9504f7", + "regex": "(?i)^https?\\:\\/\\/creepysmilerobloxdecal\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6417e5e0114862a2d925032f6a6f1ebff58f33f855ba36094b865877144ff46d", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeahgbqax\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a6cf8cfeb8b48d62da5472067425fb69063981a1ccd51722da2baf6e1e699c5c", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0871061b7589998b22934fd629917b7d6c3bc21077e3710312ce2dab3179c1e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "995316826b8c8ec5d0d62ee72ff89018a22859165882a23188c9aaca3da2226e", + "regex": "(?i)^https?\\:\\/\\/landameenakreelangsztz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0fd0cff29ca14e2e96b2ef8ba905979ff4ea1088c66de27830d6f0f7b2ef9dff", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b5c842314a823e27dd58c746777c5d330efe9fa3f9511e125efb2187a0398dd3", + "regex": "(?i)^https?\\:\\/\\/hbeqadhbeqad\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c8175f58fe48578178e442a28b4b937ef75c1a346e390708ef2a5901134b56ea", + "regex": "." + }, + { + "hash": "c25acaf9c8697f99f725ec1112353010b6d7f148ea3d78ce06fc3f3de8a448a3", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8d17820f3c2a8ef70f021c94d1e988ed960a31af0180f6046b49113af8aae6f2", + "regex": "(?i)^https?\\:\\/\\/qedsheqrhjqa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "cd5caa571a80306697221f2c9dd74a2fbcbe69e8098f02b464e3500340a21335", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeahgbqax\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "161741ce0cebb677065672a028e270f5ba3bc8cd7fbd82fe7f35ad11fe3a3799", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b8692624fe4cbdfa99a8ad65a59c4ddd8aa5603a6503df218ae31f73459154d", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "187ed590d8d677a138b25afc096fe9f9d1744cc2c003f74af021a3de4281e786", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6e86ccee44f7bf955c140b4119de4e9cbedf59f0307e979124445c2c1aefdd9c", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "79711e08fd8e08d8d44f816005f94305b1b1ee30241464babd17a2e88318331b", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "877c9abfe5322c4da3eebcb1db2c73f8053537ac7b6bc2958ba51e0413ae0b4b", + "regex": "(?i)^https?\\:\\/\\/dahbqdahbg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "9cbc7ca39e50ba1a78f6a4045ab2b7ff927b312d59371a7e0cdfe912414f10ae", + "regex": "(?i)^https?\\:\\/\\/geqaghbeqahgbe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ff7a6c075f860ee8e0d7a05b13fdf7e4ad566926edeec2b03a63ddcfbe33a97e", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "218072658c2e7be565c592134cc3850f02a4d3ca7f43ea21dc21f098d636998d", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b0a5a07cccf831959e76f344834c1536934b4b2a464be1cc06afa196be578ef9", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8f754e2737be69d2284c876498403e6d80e0b06040770d0416799cbb883cea91", + "regex": "(?i)^https?\\:\\/\\/eahgbeqahgb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "05d86c5419563671e0c4133fa419c70e78b9b939f2f2730ed5ae564379edda5e", + "regex": "(?i)^https?\\:\\/\\/videowawez\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3d112d6a7acda8f53ea7c7e409141832cbad971dbc78e5f404e76f5e8ef81393", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "07098fe2e3c59eabb3ab7c84d7692e52367506c22a8be3eb6ff1b5f3ad6c9947", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2af74ad2b54bf95cd577cf1eeab49cbb1385dffe9e515b173cc92920febf85b9", + "regex": "(?i)^https?\\:\\/\\/geqaghbeqahgbe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ad6a5d96ce68979be2316c7c8ee96d0786db46ef83f68e50aec7cb6a37a8534e", + "regex": "(?i)^https?\\:\\/\\/cleverradical177\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2eb29e3bda78033b7bfda3e7a83aaa9e5124d4f0e729e716be6d96ef51cfc3d1", + "regex": "(?i)^https?\\:\\/\\/howmuchdoescarinsurancecostepxw362\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d07f06df3aacd70b3ed8f0822c0bd789c16b54350f3439b1a1d955f2052c30ed", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2a4180ebd69e94f3a28448395503c1dcd2fe732e1b4e628b571fc7d80cc82989", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1104828f9d7394d5809c1fd436ebb5e9b4e9872c47c94de643767a35b564d9d6", + "regex": "(?i)^https?\\:\\/\\/bestqfil677\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dc3883a1ba4ea7ffd69dfef1a005f0dea41e56fd4712075a15351b38f001196e", + "regex": "(?i)^https?\\:\\/\\/qaehdgbqedwghb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e8d01c99cf32e5b876369d4a2cfdba45516582991c85be30c9adbc5b433f5cc8", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "058274e25920a0806cb3b5f2a0326a7136ebbb4600b42c427f0c563835af7bbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cmm(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2fd26869e50ecac2d589975df5f012f4b2a2701e50555dac40cae3b864fc1fe5", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "da13c2e97c8bc908f489ad6aeee24bbe104fe998d96f6f51e9ca340c6f9fe6e6", + "regex": "(?i)^https?\\:\\/\\/geqahgbqahg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "680e7fbf809465c8c0f0dfd9235c09e3b807d058d15b07d4f98f8358a06a16dd", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f87c2061d1e6e8f2f3da0e88f916e018882117db336515fe975748bc93526e51", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6fd8d3fb65c139d0057c8ef225a5789d459b414844424f4b079621e2d3af025e", + "regex": "(?i)^https?\\:\\/\\/jurassicworldshirtroblox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e7df323bf96210582a21b7d971ad22d7108b4df91ebdceb08d7778c1fd6cf9f4", + "regex": "." + }, + { + "hash": "bd3eb7002f5f3777fa5ab0a6c78a4477ced3d423e65f0990d6f68f37f68a55d6", + "regex": "(?i)^https?\\:\\/\\/qaedhbgqeadhbg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "25697b9848398ae16faecb44129f1a1b706bf1e49168531a5785107bcb630600", + "regex": "." + }, + { + "hash": "384c9c4bf78fb17dd4457e9b91ecb1262841761b2fc79ae5a1242466fbe77c5a", + "regex": "(?i)^https?\\:\\/\\/ehgbqahbqdahb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b1ffad9bcfe38add57027305a0eecc322d7df9bff6d706f87298626a445028ed", + "regex": "(?i)^https?\\:\\/\\/hgbeqadhbqaehd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "032ac944a1947c82775d843799e935d298c13540f034b1edd32b3ed31ab9d1d2", + "regex": "(?i)^https?\\:\\/\\/bowpanzerjoraznqqm\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "93c1a77d036bff4491e2d0bb343db7e45950c2c6f1b3dba450324f4adb71f9eb", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "61570584bbdffe592b9d444469a4e33b1c4c01e3b4c9ddbaead3e741eb7d6c42", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "86130e8715411843c67492f2a42f33e6d3123abec1caedffc0883f809d31df90", + "regex": "(?i)^https?\\:\\/\\/qedsheqrhjqa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8c843c68730183336b224ad26a403dd0e789f934bd80d7cad691dde275e39204", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "595757d3ff361635c1aeb49300bef5646da159aa6f70d7ec490d9740738ad896", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "761673b14e0239bbebe0db345098ebb359c91f247aaf58a630aec078a9fc22a5", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "711f8a1f3c9e01f7efb4791a66b70e870f25fa41665d8d58543380a085383945", + "regex": "." + }, + { + "hash": "9010af6319b8300f0a7028701d47ae8cc331be9b9ff29d32434b1ff5801179da", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "98088ca5f542b211f66a7e29a1893b12cc45af2527a7950cc8af80a26b0d07b0", + "regex": "(?i)^https?\\:\\/\\/grant\\.uk\\.id\\.login\\.update\\.ssl\\.encryption\\-6159368de39251d7a\\-login\\.id\\.security\\.trackid\\.piwikb7c1867dd7ba9c57\\.20ded0efb1ea025dc359dac72bceeb02\\.mailingmarketing\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9baa00f0906781f3e4ed3169b5d307dc04d7b574156c7bbeec975babd2fa921f", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1e460d1542dd69dd4b2ca1aa602c1fe60239b850569f59f0fa9339803787ce29", + "regex": "(?i)^https?\\:\\/\\/hbeqadhbeqad\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ed441fbcaf7198027b0d8b6402a447751823f97cb346778d0e5c4e452c552057", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c3bd2d6bd6d89b0b37d384210a76174d2359ae779a1ef417605cb27191c0508c", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8c84d34823ee997890140a4582ae25bfc7f7d1933df4f4d011368658bfbfbf17", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.de(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b28a7b21844386baba74bafdd02726a73a10e211af50769c0ee718726303e4c1", + "regex": "." + }, + { + "hash": "086a22a56cb9a461b162447dee1c52408660f0d873d2986576c337c247946d45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+danerbootsaustralia\\.com[\\/\\\\]+1[\\/\\\\]+010e019135a303cd\\-c609696c\\-44b2\\-403e\\-967c\\-4d2fbb1fb979\\-000000[\\/\\\\]+bqZtgjE2kB0upJXQLiubB5bS9F4\\=171(?:\\?|$)" + }, + { + "hash": "a0c29e05b5354be996509f6e4a9d5e8ee7d08acf07417d2d0cd0c78b1135488e", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbeqadh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ca06d5b60dc5ce9c011502a5afb0a4994425e124bf8fdd86becc0a30d017d6b9", + "regex": "." + }, + { + "hash": "52f56257dfa6e5eadec5c5ec0f5038a9694e3329c74e81104b515dc5ab0567ca", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2e25ff4b3fdd2e1283af7aa59c7c0c663773a4bdeddb508c2cf1d3650275d4fa", + "regex": "(?i)^https?\\:\\/\\/o6c9c1898\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "efe82dba537d012e4662ddf7e0383a1e0f73cc2890ad0b4da959a7ec73904c62", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8d1a53e201f300fff9536fe074eefa792555a9a0b8f481d7674070d970914c73", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbeqadh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "826899ea649ccddbfc5cdb2ee167a6b34de4e363dff0155aa2b7655f3b7d6266", + "regex": "(?i)^https?\\:\\/\\/ehgbqahbqdahb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "194243eb211059d3392ba3bd1c70b388b99ecdf183e8f854cee5a73b9baf8ea5", + "regex": "(?i)^https?\\:\\/\\/qaehdgbqedwghb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fa28181dc652db54fb73b2201583a1b061ef7822bd66cc2b395c3979b21102a1", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "13aa7f8354779a62031d07811ab81608024d1a0bed407a97011b3925f55668f9", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4f39c28429082191ea624b9c12c98071ff5df90e96834b1201d24bbc5556f215", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3a0efae758706b5198ba9c574d43266515815c836afe6d9e44c31e58f7b51bc1", + "regex": "." + }, + { + "hash": "b5c9e35d57f4084885684748b37647daaba1d7965bf86f6bd446344477afd1a0", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "94690f0c5400231e54f142e0a45fdf2a2d16add5847dcdc8d5a43ae3d548817a", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "4cd8c9fe4fe4fb3bb943014fa513a87bb54798640a3d169dd2f451419d161d33", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9d50c23f9052141cd00b4b1e92726e1a059e0ebe071e3ae4980dc0bc5806bdaf", + "regex": "(?i)^https?\\:\\/\\/eqaghbaqehg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "63adc7ae4ab6ce736ed50bc7b6bb4ad634ac360c29ed07535f24e7208301b25d", + "regex": "(?i)^https?\\:\\/\\/eqaghbaqehg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7adb4db1f45607af5f60bc512b2047530d15098516b67121b4daa168f93d6d33", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ec8d8ac99a1be08867e3c0a9c1a25a6e636dccb4891ebc2db52e65ddf321abb7", + "regex": "(?i)^https?\\:\\/\\/qaedhbgqeadhbg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9f66d8343c2306e180c9fa4c4265810ac49aca6856665b6f6ce99f9aa50a3a61", + "regex": "(?i)^https?\\:\\/\\/eghaqdhgbad\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "abb12101c740196b924f23f331c6e2cff0b82f6934a111a281a5bb8e7c09a5a8", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "1390a05f9786713748407332916f5f55068a7eea47b123979ef6fa25eb8e1025", + "regex": "(?i)^https?\\:\\/\\/ehgbqahbqdahb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0b14bc2be3b983299c678e5d55fc872c65a22b60e5870d469e87e6ef77553b46", + "regex": "(?i)^https?\\:\\/\\/ffni6\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "816fdb076aaf19c61201e102e5b090da7445edca054519802bc7e4c3784a5760", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e818adbae1329836e5237e6afe3fa860b94d223e00a6d96bd2ec1ba2c883063d", + "regex": "(?i)^https?\\:\\/\\/ehgbqahbqdahb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6cddfa53bd4a3e90ae18e309728fe78158b23569cde7ace9fe5e3f4508c4f407", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a2908ef5acc67c35d96076220ae6541d9ee8270c3fe48f355489a73677315d26", + "regex": "." + }, + { + "hash": "0cc16f6e401a9d614f65c87e5d49ffa34f7b13d197e4fdbe31319229a31f4378", + "regex": "(?i)^https?\\:\\/\\/ehgbqahbqdahb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c3586631df02dbf9fc315631031523195440264d81db1db093733a4e4de727e7", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "db5e5119581d5783af3d2fbe44ed95496b491d57edd305966efe52a2c1715885", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f7592f2a670aa342c7fb1fe50b1b8bf4b6a6c025e3e8a40dea00d1b7ba4de3d0", + "regex": "(?i)^https?\\:\\/\\/geqaghbeqahgbe\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a8a951eef21e584f94316629644e86ad6f19351c2fb599745dbd5bd21c1fdbff", + "regex": "(?i)^https?\\:\\/\\/landameenakreelangsztz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cc5c1c0927be99e7d56e0a9a41094d11c1ac4d58a656ac8c46037162472101f5", + "regex": "." + }, + { + "hash": "065538f67b5eb06fe0a66f15b608abff7396da093690dba6425d9048322f041a", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f0a79b439ba0113473be0aaca8a4335475a67a71f5c8eba893b7492f87c49d0d", + "regex": "(?i)^https?\\:\\/\\/creepysmilerobloxdecal\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cd6629ac074312c44aa42a1d4bf9d15eb5006f18457c09225bdb5996f750d924", + "regex": "(?i)^https?\\:\\/\\/slotjokerrasigaming91\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e9cad635b891d75ad12b608790c6e576f5547b493b2dcde21caa765006f0f956", + "regex": "(?i)^https?\\:\\/\\/downffil204\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bc2c97b2f16ec89cf848cc6576640ae1dc2f64b5560a01867ccbfd52f83512fc", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c10942cc1bd57caba1f61626e1009bcfbcc2455303273acf712bbaefa13c50cf", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "83bdbb13da2f6a33a61af821087e9144edbeff87e46f1f43894da8050e305fa4", + "regex": "(?i)^https?\\:\\/\\/bowpanzerjoraznqqm\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d78cb1a835280bfab237f4b9ba4d18d6cfe281d0a8b9d8d5e6516130465ea3b8", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f7d2df6abd795e062cf59a69cd9a66f1e00c11519bd4c42f982136f29160c8a0", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbc5e3a06711044ff6a694bb6ac48c373c2bad6adee9892241a6fbdf29ea6c20", + "regex": "(?i)^https?\\:\\/\\/hbeqadhbeqad\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "275aa9a152ddbc1496b5805e8da33b7c05c3126eaac69f6b65df2687975d29e2", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3d5e7568919a761f81f03d3ae2d738f29a6a9ca2983e090829e67c9d0324f92a", + "regex": "(?i)^https?\\:\\/\\/netzero\\-support\\-d7500c\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "63ea2a0065cdc717649e3eb9a5d0cd241201a387d4382350d9595a49363395b6", + "regex": "." + }, + { + "hash": "a2810c254d709566f966d093a6278a4505178cd13c7c6f1400f23d72f4270aa8", + "regex": "." + }, + { + "hash": "35e443a8725b8b36de26b9a0e573f57658d14c12e47fab06c07de6d5b50d3f5c", + "regex": "." + }, + { + "hash": "dababb0e7a4468d5489f73d5fd21f8b64aa840c35015e869c44ef43af2812f0a", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d28fc0f32681e3dd5ee274e81e6aa9c6bd5f5fcfc7ed0f60100577c664677983", + "regex": "(?i)^https?\\:\\/\\/brownservers961\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e0fcce3db05a8bdecb1d5fc5d4117c03403d03bd8c2b2f2ee0e8a735155fe819", + "regex": "(?i)^https?\\:\\/\\/eghaqdhgbad\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1a16ce6e9b0c836aa1d7140abc0882b02eed880ac7025aeed2ae7e1060190907", + "regex": "(?i)^https?\\:\\/\\/qaedhbgqeadhbg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c602ea528354f78bdf084ce05d71a99b819af1332809c0cbe03ef3b244303c9a", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9b3be323a9716b1224234faf8fab076c19b49e79101ab815db0dc733f97035b2", + "regex": "(?i)^https?\\:\\/\\/geqaghbeqahgbe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "dc3b39baa7b3bd058cb098f538fd8f366d3ffbef6cb669abfc3c4fe5e407a969", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "095e5a06e6196dc3c134a3d68c550ed2b7edd31419d6893238273a76a3d817f7", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "80691f5bf0d23173907c0724c64b42effb9fa836460bfdb0a9a35d7c14c2da34", + "regex": "(?i)^https?\\:\\/\\/eahgbeqahgb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "852ed91dfd01fc2c6e2277dbb3b84e021ac6edb14da498f9b7479b38fd7aea92", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "88104dd9d5ca9bdfa071b8c4cb935a145e969b41660709fe0bebd6e977fd1b83", + "regex": "." + }, + { + "hash": "0f85f77cb986bf80d431c2b3952611d051f8e801fe1aee6253a1380fcd31eeb3", + "regex": "(?i)^https?\\:\\/\\/hbeqadhbeqad\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "326481f29bfe1023a20928c77b2cf25c30ac4dfcd7aad38e8a8ac52bb239b341", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e72e10b7d140adfb732800f2d318e169bf409b0c44168fe72fd4c2f70bd7a5ea", + "regex": "(?i)^https?\\:\\/\\/situsjudislot88spadegaming\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "771fe10f35fb0174c95b5f803cae9a46395dd575b0056c55995857e322a2f0ca", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4f91df83091ea9f9852adb600bdd1850123354c2a96790a971402664a9b45559", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0035391aed7a459fb63284a4abfb2c804cb6c4820cb6ca20a6248498c53ba176", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6722884fa27697996c501a97af33ac70a4333d6a0af1aae25ea6d51bafe66d5e", + "regex": "(?i)^https?\\:\\/\\/hgbeqadhbqaehd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cd5cd286b1acf475dfc8b6d513dee025b646ac1598e814d598ae761037ea8da2", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ef41e29f7ea91a53ecd9655750540f9899958e6f28815ab22646751972023562", + "regex": "." + }, + { + "hash": "96996090bede348f2de55e0718297c262412cb381dba4a9c81aee5baf5813d17", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "76d55f5d31f713b50bf2e700d7990a33c7841c6c1d7523978a342cfbe94116b8", + "regex": "(?i)^https?\\:\\/\\/hbeqadhbeqad\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bd68b80b4bf3eb9c00f61ce5548e3c33a975a8c7ce708d645ae63d81be1adfa6", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3e4af7e334869037bee781d1bb9ab4be55354f77cb99b5dde8d108b3e06eddaa", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fbd0ed9f1581b675536ebbaf8a12338b3fb9fce7525542a274153ffba48c293f", + "regex": "." + }, + { + "hash": "9d50b18178a37543dda1efafd96047db61e794db0f2fc3b77211e703464dde71", + "regex": "(?i)^https?\\:\\/\\/creepysmilerobloxdecal\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4c1792948127bb4d11d7d840d77d292624589f290a07747d2269f76ea1393083", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "168d81ed9dbc993903e081fb80da21713d61c345240aa837775607d97db62a04", + "regex": "." + }, + { + "hash": "61b6ab838d10b42bf6e6804dd6c8d9436fdfb173c4d400a704d58b8e11e0c6a9", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "28defca6bea9b57aeb8925b767f2eab139264aa961d8f1480664abd7e40af202", + "regex": "(?i)^https?\\:\\/\\/qaegqaghqaeghb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b8a3c90d87186c9e82d25faa0193d4d1e3a97eaeb05dee613264fa84ecc8d19d", + "regex": "(?i)^https?\\:\\/\\/dahbqdahbg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4d22597a0ebdae17a1a7d5093a8e8c39382b9679faaa8cfbf88e535fd1312b42", + "regex": "(?i)^https?\\:\\/\\/tyz10000rbx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2a4819aa506ed5752d8c3856f2646952df6e26825d492a51df2808d2dc6eed7e", + "regex": "(?i)^https?\\:\\/\\/geqadhbqedahg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f6297ab90a5fdf14651f83badb8b4fa8aff4476dbfafb5c803aead51b0794467", + "regex": "." + }, + { + "hash": "45b22075ea45279b443ff47dcdaf357661a54f726d2e40d92b036ea7330df5b1", + "regex": "(?i)^https?\\:\\/\\/brownfolder273\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4e51b63b6192b86d80e235eecb0cc839adb50a272ebdca56b7d9de03ea3c2479", + "regex": "(?i)^https?\\:\\/\\/qaedhbqedwgh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "efa09db0c0a908a5edc26045a5a36264cbc9f35f391ecc0225dc1195990325ed", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "483a6be2d20a5c61c8897551b11bd1d17bab4202f88b44b30e52a6cdc4ce1794", + "regex": "(?i)^https?\\:\\/\\/deaqghbqaerhb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9d30478a177750e06534ea6d9645e9984f209598a5c5470caab160059c5c74fe", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7c39a8c8c4e1bfe0341f919a17d1f6ff60681b6bb476ca38b1229fce464f98bb", + "regex": "." + }, + { + "hash": "a614af8ee058fe4b4a26af697ef37f0cc71551d662af7e60f487794a76380249", + "regex": "(?i)^https?\\:\\/\\/hgbeqadhbqaehd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ba3d4ecf5650c32062f95a508eb82811dd2205dc34daa20a4934dfd9466ce23b", + "regex": "(?i)^https?\\:\\/\\/geqahgbqahg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0f01ce0c620c70020649e33827e9f12b3492d592017ff54b3cc35217bc9e1ee3", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "663e4bebd64df74239d208c9c205756677460159eabfabd18d6f8d58e28da840", + "regex": "(?i)^https?\\:\\/\\/joiii354\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3041e625771eff9ed4c2b7a10ca3c5a4380d6eb8f2070faaec0c2c4174110bfc", + "regex": "(?i)^https?\\:\\/\\/geqahgbqahg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ccd8ceed6aef2b9ec6a7baea4b48b55146d2a62b129e4a6e19657e6a935b5862", + "regex": "(?i)^https?\\:\\/\\/qaedhbgqeadhbg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9ef0de0dd8080de8efc40559e2e958a998d939cb5f6bc40fcdba67c7475d347f", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8e73429a2477394d9fca0805371345401371bce57491a7502e293777e4d6d201", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "58c0b195faeac9475c97abe6bef907ab068b7f1eb39edc71313c9132f959c205", + "regex": "(?i)^https?\\:\\/\\/digitalz2187\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "be9929d3ce2bcf9be51fff18db3954eb927c7db5aad31131c0acccb67a2b7851", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f451c3ab38a1dc577d8d2e77e6359b0d154ced0dcf6c1f8f6e6394213ea7046f", + "regex": "(?i)^https?\\:\\/\\/eahgbeqahgb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "96e48441b9628253c7d8bd2326ccb3ac341e000549f710129b2989ed6760777a", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d9d462f952ba29c1e46092e02536653d1c738dec2b009dc222b19809c92489a5", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a219abd245a50b5803103344e3a9d2d126e7c6f006a7a157dd167f42f9637fc0", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbeqadh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9efbc289fbdfd5ccf167cc7ea7af3c4c3c26823f8d35733e7bcbfd4e397cde2a", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "49bf73d6f695e3f2a7e6da84e63b67ebcb01d6d4d930fecb31d8715c476e0c60", + "regex": "(?i)^https?\\:\\/\\/deaqghbqaerhb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fa811ed228c80da8ebd82a4517007772a13f9625310d4feaf33ba3f3636086ab", + "regex": "(?i)^https?\\:\\/\\/geqadhbqedahg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9b5904267a5f818e9be60776098e450e0ece4703e1d0a374c43e723f1de3774f", + "regex": "(?i)^https?\\:\\/\\/bowpanzerjoraznqqm\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1b01307d86acfc8b5e58fdd871ae6d718d2ea8a5d3594d8bef6e7c07541a68e4", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "e141aaa782a038b8c66934d6b6c161f242aa1c268d086f876506c0c611929955", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Contract(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "faecce133aa7eb8d16086265a2f3db7a33ec704fa4d7947ef192bf98f524e74b", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "38137a032a492b8d1cdb644aa7c68eb1a13615adb0693ed9e4f6279568e85d3d", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbeqadh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "891f2e15844e61253aad656ece142c27d318238db2001929554df33d7dec80b2", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "06babd5975e6402bc6a880524c25336f7613eb221f218b67c6fef11d741256f1", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "83bf2acda96088538e4c0ecf336d75d9c1145f512d8ffb4b1e364ed24de5d144", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cb95f4d0ee197cca64f0add3756a9be6da8a0bf05a04fc08c08a38fc64cdc691", + "regex": "." + }, + { + "hash": "b8d1123244bbd6d320f56f967f5862203f443de8c07a5852e7b6a3925c71e031", + "regex": "(?i)^https?\\:\\/\\/tyz10000rbx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cbba39886eeba90503f0bddb735e80391d2216342aadc10abdf696ce899178ec", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b4c2884c3bc0466073d600a33f8912fc02e814614fd2a676ca61f9b4faa23a45", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "257c120b07223df181295e6024c2a1ee01729bd7613368b7763facfc233794d2", + "regex": "." + }, + { + "hash": "829ef0d8c8df9092651d4608b84b0e880adbd34bb31dc1c2fc04fe997a88679a", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e799298cf765d58b1144feead8e08f49a74f449cfebcf3a3908e762034206f29", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "80dd640a28f4c09b71a51ce915fd887046ac3a6914cdfd50c10d7aa428153198", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "135557e20bafde868a7c208d623351dd8d852fdba98bd466d47f7c64dd5d8974", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ed0b1471b6c84f73d8d648737edb8b1abc709d5fc9b5d549899a758933157d00", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6f4d0a78aee58b270b082018ed5eaa704b0d372b5452db09dad10684d29236b4", + "regex": "(?i)^https?\\:\\/\\/qaedhbqedwgh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ea8cb89e65677158eb2ea6f8ea9c69d82c90e64b6592e972e9bc3c83add5d808", + "regex": "(?i)^https?\\:\\/\\/creepysmilerobloxdecal\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "868e320dced3c6722fb80aac8bf64284cec7aca067e427d260498aa3d5c147b3", + "regex": "(?i)^https?\\:\\/\\/eahgbeqahgb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9a7b99c832d37498b2a2ec58086799d5d6429bf528a720e76ce9967df575eb27", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5b860e9460624acc4b7cc618f680ab83aff8e3217b8791a34cf16ecda04458f7", + "regex": "(?i)^https?\\:\\/\\/lasopawebsites142\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f4ceb7826ad7a9ce8154dee71d3012b5bcc4b92b09db09b846e3d4bcae5d3130", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dc8ece1192098a0b3093f3da38c9ca616561e619297322d38e8dab083986567b", + "regex": "(?i)^https?\\:\\/\\/qaehdgbqedwghb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "45c525d7fb80dd809f89879800859c4cd41d48ce067cd57cd2251e1abcb57584", + "regex": "." + }, + { + "hash": "545a3333e809cd4abd522df8434b89f774a572d7e99449fc13e9f977abd0732a", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbeqadh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7129df7d4dad2119ac64288a71475112e6c399f38fa85be2b0a947c838f92123", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "44ec0db2731ea12647430304caa3ea00f093534d997d43d5087b410d7398ffb0", + "regex": "(?i)^https?\\:\\/\\/tyz10000rbx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6a6ba4c311035d4864e60cac0b53ca4cdc91d546db10d39aa0f8f84ca3f61c5b", + "regex": "(?i)^https?\\:\\/\\/ehgbqahbqdahb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "299298c6d207ce5d908c42439500b5a7af5e3c3337b638ccc6696aa9b3b72eeb", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b50992d8daf9ea35f6acb62d523f5c30a520d84ac74be2567324958137289fb8", + "regex": "(?i)^https?\\:\\/\\/qedsheqrhjqa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a36a73e84e4b6839eeb32dfe11b193e90d20cb3d01a676a7ba68632e88626265", + "regex": "(?i)^https?\\:\\/\\/landameenakreelangsztz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7631a31b37aea7d7a5cce5a093aa1a7717d640176cd701e96d00cf61e783bd76", + "regex": "." + }, + { + "hash": "f20ff7bceaded353da3ac9ebf1d9740e9b1a385f7af3118a4d5975339e50e80e", + "regex": "." + }, + { + "hash": "a722531acd40b7d38deb6262d18d28fd09d365e36635535fa14041b64a295d4a", + "regex": "." + }, + { + "hash": "a768bde07668f6af437320555287adc21a89352d37d028dfc5c43ae0b1fd09e0", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0ef27157c27ac3e96faf165e1ace24b6ac6bfc51e9607eef6a422e0bb5e526c6", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3bf965c0521ea5b3c6cd11eaafa665c14bd23e7aa0f02848036d18ca56e45713", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6129b9f22b68dbf0b23e4cb2e9d7f412e39d2635740111a4a9a7387dc933664b", + "regex": "(?i)^https?\\:\\/\\/landameenakreelangsztz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2410084f0442e97b74963129a786db2142bae85e3df3c288fd321fbb187517c7", + "regex": "(?i)^https?\\:\\/\\/qaegqaghqaeghb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b4a1baf51dd7a3bcd90e9f752f61fb380df416f466fb29f81aef32bbadd63267", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7311d602a96c18e42e5771a976ee898e7f69e6d28c7ede223b3065d6006b649b", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b5bb6f7af37ac4c9e335f2382af99a5748f16b30613a8667d801c4d87cc15167", + "regex": "(?i)^https?\\:\\/\\/geqadhbqedahg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1b8f754bc4bb8bbdd28e3a267de74585a113063fb3c3a2c146f4199424f7dd3e", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d690a92235c62a7c1ddf5bf8bf7f92ebb7dd649b0102d92b5b54730f1c9bdadc", + "regex": "(?i)^https?\\:\\/\\/tyz10000rbx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b46e7f648aefa28456bbb47eeef945765ce208045adcec76219360a4ea4e03b0", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "edebde4c3d1dfe312e7396c45e83ef77e6367c22785258c16a95f256763692ee", + "regex": "(?i)^https?\\:\\/\\/landameenakreelangsztz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c211c431bb349492d7c835ce22fccca95ca6ed1753fe9c5dbc5daf55313380c5", + "regex": "(?i)^https?\\:\\/\\/qedsheqrhjqa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f753582a2bb29f1af5ff71f2203608ffdb34f9fbfd9edd08273f553a549d2fdd", + "regex": "(?i)^https?\\:\\/\\/eqaghbaqehg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0f6d808515fe40eaaf6a9adb13de6a3ddc8209de9a1bacbd401d217cbac9c94a", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "d258ad0ea5d08be8146712978e1408ba4b4512b14eef61d322c73ed07555ac5a", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhbd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bde73d3701af459aefb664b548843637d58591d7ce8cb9317ab895b2efd10b1e", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5ac6c6bdf210863f3d4dbe270efc90ad3607dc5f7327b311b9a0275ff8ee19d2", + "regex": "(?i)^https?\\:\\/\\/videowawez\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c046291a02237195f7f734e63ebf8867bcdde61a3759f9d9284225498bfb82a9", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "dade6042b61906fbf9794ad1aa60c7317c8e0bc95895ab0ea164755d27cafa89", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "94f262fc0302a058630c9286f9b7460ea48a7df7f58603758753d4b79e01f16b", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "63ec41e8afe828b3b30cf64c2fef39190f50d32563d080bb0931f7c45d245daf", + "regex": "." + }, + { + "hash": "f5d88994083d7a2d595f94f9a2d4338f7e35bf62199aa6a38210dfcc355472ee", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeahgbqax\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a9d3ae6f83840e183c51ab18490b98da80acc33ad5efefbc32d1ae9c9f18e099", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "76e6501efbdafd23639e9ca4cb6ac1b927f36679718915a12b21e38bd31ec072", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f9301d3ef31737a8214afa144255f9ca2c833ab0c433c9522930da763e6c3", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "65d000b9c3e420e85ab067b1ca1d79ba54e8531189aaaa2dfa0eeb56795d49fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ch\\=1\\&js\\=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\\.eyJhdWQiOiJKb2tlbiIsImV4cCI6MTczMTg3ODMwMCwiaWF0IjoxNzMxODcxMTAwLCJpc3MiOiJKb2tlbiIsImpzIjoxLCJqdGkiOiIzMDRkZjVvc2RyYmkyOGpicGMwNXRsc28iLCJuYmYiOjE3MzE4NzExMDAsInRzIjoxNzMxODcxMTAwNzQwOTE1fQ\\.2ERoo8BnuZrsZOEwe\\-vZMpmjaS0SfjauVp_mfkUn7Ig\\&sid\\=b5116a32\\-a518\\-11ef\\-a41b\\-7456d80b1821$" + }, + { + "hash": "0d1eb7889600959976590bfaec0e0454a843c8adb8d724365b21d953fba6bf74", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8f3b4f8962ea12508a5ff1b3016e5c397773ee08ffecf3db44c74244efd16e92", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "17e906ccdee413ee8614a6c88465297f8dfa3c4274f07d2010bb2f2ac80d5e16", + "regex": "." + }, + { + "hash": "9d40ea2e71fe4d4ad05a6beb35b63988440814733a4523c87d67f0937f113cc7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9003[\\/\\\\]+entry[\\/\\\\]+register86529(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a9bedebd0b151b3322a5dbbf3ed1c1fc2fd5ad9b8ef0c215fa26dc955cf688d2", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fd1c209af19c2b02db8abaa332635e2f0114042d4fe9de79335466d53e42d8c7", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a23c9f6ce80afdc9839433dc65072e1ab0e3c1d760352085cf10228a624d5099", + "regex": "." + }, + { + "hash": "6406f4a0e518d4a8852e87994ac7f961dbb33b9c06b28ce263a1f6a87bec894e", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d6437c2c9a3b8ac21a15cc6f4124f5b9ed1935cf01d1568f424bac4fcf206686", + "regex": "(?i)^https?\\:\\/\\/heqraheqarj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cc88528a26430ebc4d6f2f5e4d9b202fd381656317c9519b3d3a809350ec2654", + "regex": "(?i)^https?\\:\\/\\/videowawez\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "654d798174c7a67b6b21a5faf6c720b740cfe7aba77adb2b68a13f256deef0c5", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "91646f9ece0a9848f97b4684f318863cc10d313472c5e2a09aa33f64a7a822b9", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9b3d91a4b88a93da4a820b5d97000e092e879a09cc5e6f1829c9c8f40ba263af", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a50818dac38d33c48a0b6bcfa5c91de11e9870d6d3c216ac9556f9314f30f549", + "regex": "(?i)^https?\\:\\/\\/eghaqdhgbad\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "78e3156677c7188dde1694ba6fcc39061646dd404169375e89966927e8bdf831", + "regex": "(?i)^https?\\:\\/\\/truesfile537\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "20310d8bf101dfd70126bcae8927ec67e6a7cf9c216735ae03187c196b0bc078", + "regex": "(?i)^https?\\:\\/\\/geqadhbqedahg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "699843873d172e4e70685ba1544f39fc8df3231757416d50d5f18e67e25f6e28", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "56705d7ca4117608ce99162b39f3c7aa8755db9ed6e4e6d818a3db32b939dc97", + "regex": "(?i)^https?\\:\\/\\/dahbqdahbg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ac6b8450a3c41a3a96d49a0a62e9ea765e216de00281312bd00ef25ceed36b2c", + "regex": "(?i)^https?\\:\\/\\/hbeqadhbeqad\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "452a8ca99b92ebb4e50036c646ce287bb6f1484fa6ac51aa6764d8b750ce6a9b", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7dcef6c76778f11cabfe338552a30fccbd44c29c6b4efc825ff2bc915926ff4c", + "regex": "(?i)^https?\\:\\/\\/geqahgbqahg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e41f2cb8ef92bc6eef30f43527409f2743f54d41e34f58fbb26a8e55ea22720e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+danerbootsaustralia\\.com[\\/\\\\]+1[\\/\\\\]+010e019135a303cd\\-c609696c\\-44b2\\-403e\\-967c\\-4d2fbb1fb979\\-000000[\\/\\\\]+bqZtgjE2kB0upJXQLiubB5bS9F4\\=171(?:\\?|$)" + }, + { + "hash": "16420e87db412bad043664cda57bf22f0572200f4e33cca66c0e488c34de70b7", + "regex": "(?i)^https?\\:\\/\\/ehgbqahbqdahb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ad62bf16cbd76caabfdd098a5e541581591bd82fd1b9f2d7db55321a4b1160e3", + "regex": "(?i)^https?\\:\\/\\/eqaghbaqehg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4a7c167d0cb81c323f307d224c9e8b5210aae80b2a6f88e1f29bfefbe84a677b", + "regex": "." + }, + { + "hash": "60200fcdc6c92df3dcf3d520ab09e3fa4a7598c930f7fca6a8f8b2a1c63e1841", + "regex": "(?i)^https?\\:\\/\\/videowawez\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6c273604a627876a55fce6b856d07334b35501de99112cc8829cea6477528677", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "78ae2a96eac587b50415c047081cd76f6497c8ac16d04a50a93ac2269d5161d6", + "regex": "(?i)^https?\\:\\/\\/geqaghbeqahgbe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c3e37ce4e29474c25646a0777208bd2e60d73e901cb76b434ed3cadc6ae07b35", + "regex": "(?i)^https?\\:\\/\\/alohafasr293\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e96a607b035082ac54bd0e3cd1cb53b172af62146c8b2dea959c0ebd65ca88f2", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d0a97421c1bbe23c3b05967aaa06ed79eea8592b41972b682f077780bb18b082", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3475ea486cf8e68b0d33f40e15471c6c9a2b7346eb8a41201bbb0894830a5855", + "regex": "(?i)^https?\\:\\/\\/dahbqdahbg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "67b17b6da46fe1ef610dc55abe0938b0d97bb1a51291bb29e0d7cacea20bf87e", + "regex": "(?i)^https?\\:\\/\\/bowpanzerjoraznqqm\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8cd5e74707fa679c3eb3aef2fd1b26585820d68e4caa7049dfe0584d175de2a0", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "454a4444be310f618764de6dbbc203c4575f651eed01d3dfa8d580b792976f25", + "regex": "(?i)^https?\\:\\/\\/dahbqdahbg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cf251f2f58e6df4e2b77b48c4fb22edc2739d0b7bdcb3caf1c7dea293afaab0e", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d0b9a4530a664f14a0de6dc6f339aa23cf3d434b054d2cf73ebc426982edb948", + "regex": "(?i)^https?\\:\\/\\/bowpanzerjoraznqqm\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "94ac188609bb10c6b49cf411856996a3cbb55dc4f8fedb80404da06c002fce6e", + "regex": "." + }, + { + "hash": "3d11a4dc4ecd8e700e35e87bc4304c474f033bb39e04fae4e852d4e5c7791ca5", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "eed89a1201cfcb47a0c674785a1175504b93dad93e25939c5ac6b67372f21c22", + "regex": "(?i)^https?\\:\\/\\/eqaghbaqehg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8750547e28fd337a5a2fd1260acfda1d23097c736a6750b2ed925e6ede126542", + "regex": "(?i)^https?\\:\\/\\/qeaghbqahb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "324e25cbb9dbdf413872ae351c3504bcd6fea418b8f59b1a4541b5cab2ffab53", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "88e7c3ba22abad71f9bc5759f11e13a39ceb48e279499ab65769e09bdd0dc25f", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "891fcc4658b97b92703a85a0743a69ef2f3203a58137fd4ae3b42fe74d229679", + "regex": "(?i)^https?\\:\\/\\/jfm377\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "72063db2c51fc85c527c69e9c4a68cc3ee603680de9b7cbe6437874b776edc39", + "regex": "(?i)^https?\\:\\/\\/creepysmilerobloxdecal\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f72f8c55986cefe8bdbdd7f0e91c8d310a95013d4466e057abc5d4c66208863c", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0d4c22d83bc19bb557574a7dd2cd565fc6010b8148557167604f7018cb6c2838", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0799a8ba5474eabf7d7ee3dba6b37f65aca51719e80133033a533e6cbf085fda", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "18012201cd2b6dc0d01dcf8df880271e0b1b9f4b59c2ab74a998f94215e435dd", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "50447ba02035335874a4b93d2145d1a90432714fa4c4429fc1856d467d2dd2a7", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "897d17cf11cb5fac2ad15f605a78f09b59c54093026a392877f5508df5592c05", + "regex": "(?i)^https?\\:\\/\\/qaegqaghqaeghb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "247b8917c6228bfd7c81f8fe8e0414f90da5b2053bdb1964e29c0dd57d708db3", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d14752d4c28d5328c0f44c9613fe3998f4088dc98f0e1e39821f71249e6ac33b", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "84842aec961d63a1784a56cab125fd2b2d83acacda8f55cbaf2a861583f67193", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeahgbqax\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f75ed5c2712be8eea6f0df678661b2906fbe9f6b723a6599ead1bec4d29a5649", + "regex": "(?i)^https?\\:\\/\\/eghaqdhgbad\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c976d491662e542b82e88177a89f14e8ef6499cada393f373f2d91bf5fcc730f", + "regex": "(?i)^https?\\:\\/\\/home\\-109176\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a82fb027c99fd1f2a1925da145c063df89b2e6eb4885a355ffde0b69304ce039", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0d7abf4454694adc7cc9daba2ef4f883c7b1ea845776778108b19f610b2ba1d1", + "regex": "(?i)^https?\\:\\/\\/dahbqdahbg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2527547759dabeaa45f40e0a52b8c9ab3cffe8f064681639aba67a45b9aff5f8", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "623033740ceca3daedd0865d4533be25f5d7bac6de45a6f60571eeab9085da0c", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8d47a4b82bbc99bda1999820014f89abb0ac2fcb6a98bba3a1ced812decd61a5", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "96ae2647cb7494998f74d790f0823f5eeca586ec1fa7abadd10457e43959be97", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a36ac656fef5079658ff59768a60fd91edfd45f3eff0d77d869a2015fccbf40c", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhbd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a97c600223af3b56ca959e3b208e40bd7dc7f025c67d026f970369a99d711524", + "regex": "(?i)^https?\\:\\/\\/timefasr351\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b1991c40cec42d9e8c578312b7dcd8c186c68013061e577dadb754c97e8cf311", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2b04a8007e00d82e372e35dc9fb05906f05ddbd626b75d6d7c4674d6654c9dc0", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "003d79a0894b3ee17ac0d7ca3ec7f2111aebb3b0d18254fba54a9987d5621490", + "regex": "(?i)^https?\\:\\/\\/qaegqaghqaeghb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2606115a347aedd3a8302b2a075c5fff9971a8d04af63aab41f63dd164574330", + "regex": "(?i)^https?\\:\\/\\/eghaqdhgbad\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e3600948590bdae8eb01c565005c5f43b89cb25fd34bbd19c2dfd1beaf8ce11e", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "380dc218cf08954ef6b945db8683aaea98117262a809bfc9e97a68c5e0cb4959", + "regex": "(?i)^https?\\:\\/\\/ehgqaehqaeh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "57760d242cb9214d104d0628b68e80ce879aac4ca15e24a7fca565487244fac3", + "regex": "(?i)^https?\\:\\/\\/qaehdgbqedwghb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "1ef43c252f154b02c672a04918ee70abad6245a181fe7b838d108d97efebcb43", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+danerbootsaustralia\\.com[\\/\\\\]+1[\\/\\\\]+010e019135a303cd\\-c609696c\\-44b2\\-403e\\-967c\\-4d2fbb1fb979\\-000000[\\/\\\\]+bqZtgjE2kB0upJXQLiubB5bS9F4\\=171(?:\\?|$)" + }, + { + "hash": "1688bde78f2136ec307a0f5355bdaec0a29dcd5fee96e6dbec1d213d6fb1f94f", + "regex": "(?i)^https?\\:\\/\\/landameenakreelangsztz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4da057550a5e052aaa23272eaece6b6708c31f9b9745c699f3ded7f08d1d3254", + "regex": "(?i)^https?\\:\\/\\/geqahgbqahg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a2a49434e82536047e0fba4bee6e9094431e92c3eb927a6a88db262a9bd41690", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "8ccd6fed9128a5ddaef7f60920fba0188ded3ffa65e9695df4d0e8dc6f04035c", + "regex": "(?i)^https?\\:\\/\\/eqaheqdheqdh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4a93fa12c3f7a21e991ab224dd49debe4f7c20ae9aef90cd26312c9a6427bc96", + "regex": "(?i)^https?\\:\\/\\/hbeqadhbeqad\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b355cb1da1a7a51cc1c57eb87465ad82d2d29bf9f5faef1bac790966dabc2c14", + "regex": "(?i)^https?\\:\\/\\/qaegqaghqaeghb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d1231c55a7169a60c1647282a56375632ceea1359fe469d0f13731ee49887961", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c78b22fca76a45646194946721bc7d5fbd54c5cdb0a20f294996ba12824a89e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s[\\/\\\\]+dFgxNTkxCY(?:\\?|$)" + }, + { + "hash": "080ac82f442d162099b50b830782ba9e00fccd0115d7d98a88e8254f87918a67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?adc7b\\&id\\=associatisse\\.fr$" + }, + { + "hash": "365f567b6259d3b109d23ed8423ce1f391114e6955044d2fcb6551e8cde45b0a", + "regex": "." + }, + { + "hash": "e26a2c26697fb63f9cd348bee905a15e39a18abaa84e7c99f65f560fb33d8c02", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0463556084a5bc232badff200364fcadfc6b337df94e47dfd55fb15fff650d72", + "regex": "(?i)^https?\\:\\/\\/eqaghbaqehg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7c605456dd3df0b2dd1cb5073d6aba914d5b73b97e78ac94ad81c3e998d9a548", + "regex": "(?i)^https?\\:\\/\\/qedsheqrhjqa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d04811b2123dce3b0f3d000a3c99dd8d0537becfff93afe8c6ce41cef3c835b1", + "regex": "(?i)^https?\\:\\/\\/hotvideotiktoker\\-jillianward\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "af51605a3b0d2aa08b80978ab5d78cf9b40f6ffacb6157073d3923731f38f1ed", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "921e97eb0e0dce975ade58c13e810224f5f489882e4c03a913dcbdeae44f23ec", + "regex": "." + }, + { + "hash": "95edd2fbc64a31f14d7ddab0e9bbd990312c8b6a5b60429598e2ce7469b11d3d", + "regex": "(?i)^https?\\:\\/\\/auto2880\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5798ad91af65ab4e2d408086f735eede45337f50cc8339d5231208f47b6cb0e1", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "05b7a0ad10b7780660cc74d3b5e0588e126243a197284fa23a330d40ad31d7a5", + "regex": "(?i)^https?\\:\\/\\/mfg\\-142\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "207910f45705d2d9c567845a46c2db6ee4e7b046034770877ed0dc097ddc02d5", + "regex": "(?i)^https?\\:\\/\\/eqaheqdheqdh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "463b5666175c85945487b1bc0e3486c406b7d1183baf2982d081233374069643", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "35224c4fc5b61144e35c725304ded8c4cf162decc269e2d18b99ecb7ca0c362c", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0a6ac10111799870d1d7c6c85c6aec0141f3eddf680c4742bfaaf4b1819feffa", + "regex": "(?i)^https?\\:\\/\\/coolvfile853\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "77a012129062a16ddc32d4a39a4836943faa5a6f39021c0d9c79113aab303dc8", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "54cb4cfc10061748da73d1562d0aa36ccfd6c638e68a7c774c747e1b574ce189", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2f964ea1faccba7d54a9276c5e5892f2cbde14c2a6a7c1c55b10b872c4cc4932", + "regex": "(?i)^https?\\:\\/\\/dahbqdahbg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6bf59598151198847eeaa2a223435dc419f7df5a83c85abb28539754aa26689a", + "regex": "." + }, + { + "hash": "253f4807c59d82e418cbad2891a970ab1bb83483796bbbd9874dba8a924915ab", + "regex": "(?i)^https?\\:\\/\\/grupoquedarobuxgratisnoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "732ec78b1faf2d27a2fd47f7e3f43eabd87a4a29e868ec1688f04296e0fd1c28", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fcbcea40eb93f6b72be8cd9fd53183696bb40ea49a0b518df30cd37959c4cf99", + "regex": "(?i)^https?\\:\\/\\/geqadhbqedahg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5c03a2c859f57e0f7af34269bec678da8af401fcbeb07630ee570f0eb5beef95", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqadghb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "c94533148025e5015a0e1d0acfc05592f55d46482fe4ff1dce8de88ab43d8d9b", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1d2e967f4f9c7eb33c0a4524d6f719470cb18b605ed7f2c29cd151204775a217", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c83d40ba74e21aa19181f2c488e4e9a83629b71fbf5d802625774689afd36bc5", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a794c55557bc88520c4473ab218c5e9d99587b8a4bd7472949fb949096223f4c", + "regex": "(?i)^https?\\:\\/\\/geqaghbeqahgbe\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0b30dacde0a4f603b66a431f72587edecd64651591453f49199db0df4729db55", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0ddc6a4b5a859cedd150a472fc4826844b455f5e8df22212b7933b162e930a", + "regex": "(?i)^https?\\:\\/\\/ehgbqahbqdahb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "041e5bffdc42de98ba22cac6621b03c5c5397466a5ed4264bef1529880baa80e", + "regex": "(?i)^https?\\:\\/\\/joker123online\\-a4\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f4a0d8bc6e528b56f5360db161c2d8b9f784e7df51051415ae266bec6e0826fd", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5d22523b749aea38335d7c8c630e1f85850f56d584306d1070cfa26a2d8a6881", + "regex": "(?i)^https?\\:\\/\\/landameenakreelangsztz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "01870f60f396b6481b2dbc17c624b72ca2d0bc6fab5c20870a185db11306ff52", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbeqadh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7f3fc76a4d86ee32e9a5e268caabfdb92711677579bbf513b8b5a67388e41a11", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "197394de5ae86f201855223ea3556c4eb0814e121d791496b5923d910986bbaa", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fbc119a56bd27893159c3b12df16364dc98609489e84a338463086a138266b3e", + "regex": "(?i)^https?\\:\\/\\/livechaud\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5211474cb7e9db635a0c97fc43e71add0789992d205ab49e2e74954712667474", + "regex": "(?i)^https?\\:\\/\\/qaegqaghqaeghb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8d9934cc8f956cef05480d3c6f8a219bcb90d864135d375a63c78218da07cfa5", + "regex": "(?i)^https?\\:\\/\\/deaqghbqaerhb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ccd8c33de7ff7cdb668b1ac9b26f5a40072f2f8b43664c4f9ed801ea6564ef30", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4fdf7068916518f81ba1f0641452499024f6ea952c092e6e8fa841cccb53efdb", + "regex": "(?i)^https?\\:\\/\\/qaedhbgqeadhbg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "00f9c429ddee023eb3b7c01f8a9a55104baa78f5a99b5177ea89b38707c59836", + "regex": "(?i)^https?\\:\\/\\/ehgqaehqaeh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5bd5c1215070833564ad3ef82e1bf044e33f182da44bebb16c163c6466daec6b", + "regex": "." + }, + { + "hash": "d516da41e2aca3f81ed7fed15d7913f809de2aeca7173c51fdf227a00b224799", + "regex": "." + }, + { + "hash": "9189cb14f9d55aa2a5ff9ea5bfb62b1bfbef82faf3ec3b52e5a8dad992a7ca9f", + "regex": "." + }, + { + "hash": "5c54d09ab40cd25305976bd111e495847b0839e2b77325ee6eb5e997d6cc8aad", + "regex": "(?i)^https?\\:\\/\\/deaqghbqaerhb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "730356746fb9155f07137a0352afd4b21395d1380b91e2cbbf6bed611ab5c80b", + "regex": "(?i)^https?\\:\\/\\/eqaheqdheqdh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cf10a4ace4e834b572c3869701ca0a704f53698ab80f268d5967bd4803ad2b05", + "regex": "(?i)^https?\\:\\/\\/geqaghbeqahgbe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "16e893f01072f59335b1294212a83fee676ad09c5a7d59f79c6d0632a33444f0", + "regex": "(?i)^https?\\:\\/\\/deaqghbqaerhb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "dd4d534f7fde64b58848c6c73fbef23505d50480755bdef22b8e325891d433ef", + "regex": "(?i)^https?\\:\\/\\/heqraheqarj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "868d158de37c7b3e030784960cf0abde75e31de01e590a11179b010d9759b518", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "483ca93ccde07676d04898d05a83cd8381fa1b2ddf4704b5dd5b14140cefd114", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Contract(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1bbb6a366e7c821b8763c952197c9399fb0e037588a10c5e88de0ab702b126b9", + "regex": "(?i)^https?\\:\\/\\/hartraisshaipowfamfpv\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1ed63b60f2619d0ca53dfc705eedb6882b25e5c7845ba147754133aaa206d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "c3e7a1cf3f41b13291aa29aba809791036d879e4bea363b89d96ae8155e07115", + "regex": "(?i)^https?\\:\\/\\/qaegqaghqaeghb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bbbaa0425d7658fcab4e6b24a6eacfad8da3d3eef1462c00482f7d26112ef656", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ccdcd4051b39d8bb1ee2ec5d47833632d04ec704912a54bc1af2aab77f4fbb3d", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d6219f5ae78e0697f35f02e9ae310c3d9e34f1048535c34e35e3b747eeae4f39", + "regex": "(?i)^https?\\:\\/\\/geqadhbqedahg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1bb07e5d71fecd38350ec2df98153a3b4a7c966a39bcea69f296ef912984d561", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0da481716937b1a61b7d80e7b54a2e3c71494a5d237a77d76376208459b3a4dc", + "regex": "(?i)^https?\\:\\/\\/eaqghbeqadghb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "615f97cc367507a47efc3ee5b9255a9303252460240d036043440472409aa42c", + "regex": "(?i)^https?\\:\\/\\/hgbqaehbnqeda\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fee12dcc660e77b5ab2afe56ecee692718df75ab2d8f2cd3f5ca9fb0c779f5e9", + "regex": "(?i)^https?\\:\\/\\/creepysmilerobloxdecal\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dccbae3797df934487db81caebcf34e64a28d3be54a113a47fb83784139c393d", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "39b801405758c2fa30e9fb29c173044101637fac3c4244c80fb6ee8ee660cad4", + "regex": "." + }, + { + "hash": "425489db2fe20793455b613e7dc61ed1bad5399b9bcb7467f935ea3040a02b56", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "13844899e25eb3a4cba56fcb43d0df70f38da5e22dffd8e20963bcc406271506", + "regex": "(?i)^https?\\:\\/\\/dahbqdahbg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "36e44c7aea41227dfd1441ad8b68ee29aa1ada73b6ec29fa5465fc75d28978a7", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2dd139c5ec0975affc4ffd04be6c31fe767ab8b46d8398816714721a376f0bed", + "regex": "(?i)^https?\\:\\/\\/qaedhbqedwgh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1c38a7b03a47d93dd36902f3224ecb706cd8a2a4c96dc3b87f6866bc7394b88b", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "210a5e62d6a75df387937bb54545c5e91eb37694893c72b021b42615d88af92b", + "regex": "(?i)^https?\\:\\/\\/herenfile837\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2fba60bf42bff20c9ea96b9fafaa25264a22b3fa46478b1707414cb7fb4b20b7", + "regex": "(?i)^https?\\:\\/\\/teamthailand794\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ea8c2ff54c761dcc69581cae2d8c10a976bcd5b060f9674997728551463e4535", + "regex": "." + }, + { + "hash": "8e7f949b7888bd15b96fe3d6d887a955ceb87ae5446ae095fd3b4166bd005bc5", + "regex": "(?i)^https?\\:\\/\\/ehgqaehqaeh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f6af3129f997fee2621d24f5f45fc195cff4fa945780352d0bcab6ff090ebac0", + "regex": "(?i)^https?\\:\\/\\/ehgqaehqaeh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9365aef25d50ed7b4e6585fba443748d7af6176b2126d76d93dee31528110b36", + "regex": "(?i)^https?\\:\\/\\/videowawez\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4d4095c36e912f20ec8d877783ad2f53b22b644250f22b3b2fc24641616e02cf", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4f00c0d55e403bbc42f56ccfc59f41d26e0ac0aca719dabe32ff7d29e72cdd86", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeahgbqax\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "74ede5ee568076be458be9543d05f1b515254e2b1eafde51a7a6f654c1f26022", + "regex": "(?i)^https?\\:\\/\\/eqarhbqarhjneqr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3160ebc91b84921160303f0f83d12ea61ea4cf81553f930b54f41228bcab1970", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4a11868150f4468992cd01cd70798511e57e27ae51adccdd948d616b99e581f1", + "regex": "(?i)^https?\\:\\/\\/bqaehbqeadrhb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c00386fb22d07df12dce5b5ecc418231b7381d91bb5fa889c4375d3fd62bd148", + "regex": "(?i)^https?\\:\\/\\/qeahgbeqahgb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9a5f2402b9f25dd71490ba8c39df941c4531c42a4587b5342c2d5544b925842c", + "regex": "(?i)^https?\\:\\/\\/eqaheqdheqdh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0d2f4d23e5ecb23176151c808f30570f80f275c1e197caa572c0ef14a1d28622", + "regex": "." + }, + { + "hash": "25cce6c77cfab64eb2aa1b5f64186a098ac6097c470b68904665d8b0e8ccee75", + "regex": "(?i)^https?\\:\\/\\/geqahgbqahg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5190117d6b2272ed4ed00c4d449e1dfabe2ffb94c43371f0c5eedb7892511292", + "regex": "." + }, + { + "hash": "4f933ae1c60cd0b4f186dbdaaaf62276c881648411f173ae880f6fafb28466af", + "regex": "(?i)^https?\\:\\/\\/ionew950\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7a07d527a69a8c268667324c73c55a553a9fa6156c4bb72cd3e337b694e4a966", + "regex": "(?i)^https?\\:\\/\\/qhebqaedhbq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9f8855007ebc63dbc771d1a3fa8f298e1f37e8cf7561690ad06651e8fdb68852", + "regex": "." + }, + { + "hash": "aca81a80f93d7d6bdd2426d4d4131ecb4e6749cc3fe457e5a0abce4f5c4a9a86", + "regex": "(?i)^https?\\:\\/\\/eghaqdhgbad\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "857d14e025c0baf6b4275b02e27b43293b8b61d86378ef0b991719aa7a1c84ee", + "regex": "(?i)^https?\\:\\/\\/ufffenixtac\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "476291ff057d3ff93da292adcdabd09b1d9931f5a9ee58b9f5b85bf2660e61a8", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeahgbqax\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "99ba7c5299056e2514f5da0d9f4756fc5bfdf17175b6ef7d1c38531c23da5936", + "regex": "(?i)^https?\\:\\/\\/ehgbqahbqdahb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "95016f0c004da822c6787451b085379519822f4c8f1b24596bdbc85a2dc11e52", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8d2f9bfd417c470c5d4e206fa7e289f1651d88c892bc472802958b99d433fe83", + "regex": "(?i)^https?\\:\\/\\/cakesmatteoscottzczoecr\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4553f3783e1cad1140e0448a8b46f372b49022431c611dfb945002e6daae6730", + "regex": "(?i)^https?\\:\\/\\/metamaskloginx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f09b844821957a8c4aae0bde06a2de36542eb24fe92dc2d50d7d06ed1a0f9cc5", + "regex": "(?i)^https?\\:\\/\\/qaehdgbqedwghb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "85934eb6e409d866b9483dc8e128ff0f54b221333cdc878dd42abf03568c05cb", + "regex": "(?i)^https?\\:\\/\\/ehgqaehqaeh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4a1a1d15492dbf8d35cddbb1cb824e2c5694c860e2e3d05b00161c1bfc0f9151", + "regex": "(?i)^https?\\:\\/\\/ashanseo20\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e4cbef58039a69bf19a41a368bf9c69e415f0451089f728fd67922a010166672", + "regex": "(?i)^https?\\:\\/\\/eahbqadhnjb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8a4202f9a8355cb6dca95121714f5813278e7fe6bd304a45924329e628ed3bf7", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7b18b773cb3b584e4fe319f48e5c45ed6f783395606e434d56a3504bcc9b9a14", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahbqeadh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ebf27a565eee83cb29c1f1a2e890a0967221b3c254693844573987032305e4b7", + "regex": "." + }, + { + "hash": "f1e36cdce86b2ace5303d2a1c5f03fe6bd2ed6a782de66714e19ca675d5efaa8", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "298781627a1cd7d406435e49c25baadcbf72999a9466cde2c0bf10e680e6ba61", + "regex": "(?i)^https?\\:\\/\\/westcoastfasr869\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "78c720f870f70d2555e64a663d90acda785f344575b3b57654e03772e2ceb7f3", + "regex": "(?i)^https?\\:\\/\\/videowawez\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1df7a577fb5e6ac6273588e1ea418be2625098bf321463978c1accf09fa1183c", + "regex": "." + }, + { + "hash": "56fd0cc73d7534591bd4f3c138dd7ebdb0e08928ee4692de5ee0fdf6f36dbe73", + "regex": "(?i)^https?\\:\\/\\/landameenakreelangsztz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e46a9a813b4cfeb23c5418efbbe3dc65835eff884937cbe3a2b2d1bd93698d7c", + "regex": "(?i)^https?\\:\\/\\/bossdlyavsehrkgadn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "99af321844bfa71716b330e2c125feb768f321c33558207b0356f537f8bdbb4a", + "regex": "(?i)^https?\\:\\/\\/premiumc2791\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "38b0961b0bb9cd2b4e05b44b9a2968d3ef1e28cc12fe4288b1db0bc7d18145b4", + "regex": "(?i)^https?\\:\\/\\/heqraheqarj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "955852f8bc9b43b7b5902712ba74a4b08ac26e7fba93f76443d98c747d8da82d", + "regex": "(?i)^https?\\:\\/\\/freefire1962\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "83bfb0d8da71952a58d7ba95b1b01c8b877658d4c2e216c9cea8d535a5f44a05", + "regex": "." + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "4ceb4f7a93d267d3abc3bcd66919aa9a3ca968fb48788c1cfda1174a8666203d", + "regex": "(?i)^https?\\:\\/\\/heqraheqarj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+cdn\\.dragon\\.cere\\.network[\\/\\\\]+1105[\\/\\\\]+baear4ih5erur2irxz6oi6a44v7zjuhr4g5agovlmmzfn75v7bmogdp3nkq[\\/\\\\]+email\\-upgrade\\-access\\-secured\\.html$" + }, + { + "hash": "b891f3ff4b3c55ca9d36ce6d4b17d97fce611bc9704c00b0e2aaff146c5f246e", + "regex": "(?i)^https?\\:\\/\\/kjhsdfjkydtjhgdshgsfdtyu\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3a0e27d06c97c46063d7a27c62f084facc94af2be9039b1f1afa451464c8b22c", + "regex": "(?i)^https?\\:\\/\\/eastlink\\-webmail\\-vtds6fg0\\-main\\-stolzxh\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5f2cc0bc58f096688e6895eaa593003462e4d737f744bb8b016c3e2060180757", + "regex": "." + }, + { + "hash": "f1342e76b0ed1beb03a94c5db35c7086c6f5723e382c243f9a5ad6fab7bbb6d7", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "44ec16acd6ecef7a86e4bb6103f92303b38b3d00e79950503c921ffacd5611e8", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "07c8a6a103c5dcaf6de5fcfd1024490d3035c8d8457fa054d855168a459d989d", + "regex": "(?i)^https?\\:\\/\\/suce\\-bite\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9157f7056e9ba5ffda2f1e51c50cab5aef37a873696666557076244a8d8b535b", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1b04e8f23d6c228a6109982f874fca39a9d9e0ba3ed6b1bbbcbf17addb887763", + "regex": "(?i)^https?\\:\\/\\/film\\-de\\-cul\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "478d1f460e20bf3c9b0de333dde53f01599b2916fd599d6a950291134e21132a", + "regex": "." + }, + { + "hash": "581eb0214e35d0b50a84d79c8b4410bfa8f7d2595cdaf6527e22f46cea1c2e70", + "regex": "(?i)^https?\\:\\/\\/hotcliptrend\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "45e9e2bc9d3a9f0d049aac0329edb4371792504cb966d7c08d647569b9baf70a", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4159c904fc3afa579634eb5b139c737cddb5c5b3318c27dcff8dcd7ab7134dc0", + "regex": "(?i)^https?\\:\\/\\/film\\-de\\-cul\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9fb6870fc00fc0949b7bf626f7d6e7f764c04cc5c1c3ee431f650775a0407ece", + "regex": "(?i)^https?\\:\\/\\/hotspot2024videos\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7f863dc3eeedbd6cae5917122222116e8381418db1474e74653f729b53eafb0b", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1afbc0a99c48d02f4fab30dd4ad5359ef4e66a5cbd87d9ed59b8ec5170eb83ab", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "09b302947882182890522dff824dbe02aff094ef0631e5584d9d21a04db121a8", + "regex": "." + }, + { + "hash": "9d30e1359416549baccecf27a1f6a4dddf2aff9bb0112284408dd11f1e3255c6", + "regex": "(?i)^https?\\:\\/\\/kjhsdfjkydtjhgdshgsfdtyu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fdb7fb74e80a974377245da46916d2f54c7ab2f71b972ae7b7efdf3528e7bbee", + "regex": "(?i)^https?\\:\\/\\/prime\\-riviewsupportcs\\.146\\-190\\-243\\-99\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e72bf45464096dac412b524be294bc55cfdb90e0143b369f103cbb7d7f51e39d", + "regex": "(?i)^https?\\:\\/\\/chatgpt\\.kirosfox14\\.dns\\-dynamic\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "d0b471f7f76d3f490f5e529214e6875faa34d95fd9f29e1b3ea91e6942ddb6e7", + "regex": "(?i)^https?\\:\\/\\/hotspot2024videos\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9a25254794aebb0e12a2db7afe3988127497ef5b5dbed7dd3a5b39a4ad8f16a0", + "regex": "(?i)^https?\\:\\/\\/kxsneiw\\.paraclinica\\-dz\\.com(?:\\:(?:80|443))?[\\/\\\\]+akc(?:\\?|$)" + }, + { + "hash": "5e8b48032da3cac44369a7f93f944b20984811bd6600d254ef8ef68fe201bf21", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f0256d98a1ab800e96bee6a56d59ae85a3329f58613c3a1493936c4a8cdefe82", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9d9dbfee57060f45f192532873f194d0ba592642f51e8002986ec15aab135c0", + "regex": "." + }, + { + "hash": "a499972d785fa5e34337b0e5aa9bbb6160871cfbc2bec88d2af1cf811f568a02", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2fb8d497262d9f6a32a9c77ffdac2074fa110e7a0973f221e08927433cc32165", + "regex": "(?i)^https?\\:\\/\\/dinorahsheepcck\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5f25e39c62ec3b1e872c428a2b1858b9a14c84443c9d8155810ae829c349f10d", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9230c2665436cadb4d7516a11002ff05d696aa1ba86c39b789f7a85e9145123b", + "regex": "." + }, + { + "hash": "ce7d413f840f62ed280148b245e99c6ee305a2b24a6ce634a7452f768c7f473e", + "regex": "(?i)^https?\\:\\/\\/hotcliptrend\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "93d2c317e07f3d39ae46ef77b758e17cabeccabd1c0c87e5a41d56d972a84630", + "regex": "(?i)^https?\\:\\/\\/hotspot2024videos\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bdcc6e461d8b61a1a842e4266aa10b932e8d17613bc1a823caa3d4b3b6812233", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b590ed04c31b029e3fe4f07e081030039e4688b194e55004cdd25c0c9750892c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+01[\\/\\\\]+consulte(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "229efe8af25031bd7e65bb84b8639c95032b0199c6b9f5ad7514069adb3f2448", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "536377f00182e71fe06808c983b1c1c3996cc4bcba80706e1bc50d9c9c718981", + "regex": "(?i)^https?\\:\\/\\/kjhsdfjkydtjhgdshgsfdtyu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e47c458ab940abdaf1d98cea99455e13b928e6d2b47eeeb20c5b4cd2bfbc5d68", + "regex": "." + }, + { + "hash": "797979d99c41215ed36fefcfcb0b075d001f3ec54b0783b37ae94f50fff82028", + "regex": "(?i)^https?\\:\\/\\/film\\-de\\-cul\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c003d1cffb3bd0e0859a94508fa29d3a73ee9aa726abe3436ade613e805a96fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dIM1ohx6(?:\\?|$)" + }, + { + "hash": "7c535fab0ca984b6d3d80bb1b79cf79fc1fee91ab090595cbe46e4aa8c3281e5", + "regex": "." + }, + { + "hash": "25ee421ad1f9a248976108d5a9d60c0c31c28dd69903ea4e0959e5d175cd5a24", + "regex": "(?i)^https?\\:\\/\\/att\\-103962\\-109020\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1cf837c3ff359236bbabf1c9f1f690fc04b5431f0c0b59218c000e9e7ff87a5b", + "regex": "(?i)^https?\\:\\/\\/hotcliptrend\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "49aa9c5fefb792876fa5025d5310664ba54bbb4b4be4581b0c1982015d126b76", + "regex": "." + }, + { + "hash": "7a1a1d078706bf669ebd8b4a6b4a56c7dd39f04e5500385513bc5629f9ef4a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c\\?btd\\=dHJrLmNvbG9ueS1zY29yZS1yZWxhdGVkLWRvbmtleS5ydW4\\&exptoken\\=MTczMTkzMjI1MzM5Ng\\%3D\\%3D\\&lang\\=en\\&lid\\=7c867aff\\-41c4\\-4bb4\\-b12c\\-2acbad48bc39\\&pd2q\\=YTE9N2M4NjdhZmYtNDFjNC00YmI0LWIxMmMtMmFjYmFkNDhiYzM5JmEyPTlmMjhjNTU5LWZkMTYtNDRmYi04MDAzLTM1NDY2YTA0ZDkxYyZhMz0\\&r_okeyword\\=vs\\&td\\=dHJrLm1vYmlsZWZyZWUucnVuL3Nud2RhcnRm$" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%252Fmua\\%252Fseguro\\.html\\%3F\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "1e43df9411b153238fab59403efec92f8628adb3923aec3989d7946498cf1435", + "regex": "." + }, + { + "hash": "71b516a394a2d1f3d0864840de732ddfef6b789a73ea0990d8a2d5c1bbb0de27", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7637ec3b69ea0ca2717363b33163199ab76b29037ea0d86756737ff44e3de5c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+themes[\\/\\\\]+twentytwentythree[\\/\\\\]+patterns[\\/\\\\]+crkkec[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)" + }, + { + "hash": "9376eb15b232e79ebd15436d2a9a2dcb2e71595574c0666cb8477e05bc0d6ba6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes[\\/\\\\]+css[\\/\\\\]+dist[\\/\\\\]+edit\\-post[\\/\\\\]+crkkec[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)" + }, + { + "hash": "f22d9c43c2b91837bf080f83911c56c01a4a750c452e422743d5866e07d2a816", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dd9b0c064f44a453e6602836a7bf49a79b9e91b7252b82f64868ec24988b9de6", + "regex": "." + }, + { + "hash": "b3aad3ccef4a5c1536e69a8b56fef886607899d7b2875678dd80baf8a5ac40d6", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "51c62e1aaeb36339b92f47ad113b2b5b8fb876e5f124300f27b70ee2f270674f", + "regex": "(?i)^https?\\:\\/\\/noreplyverificattioncnbxseagzver\\.159\\-65\\-231\\-139\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "277eb216bfa23c31991835bdfcfa40cfd2a16995e5a0bf8d9a36cc3589331aa7", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0b002d2c249de87645324cf3945261e09d86593bc92edcbeb0adc7d180c64f0a", + "regex": "(?i)^https?\\:\\/\\/kjhsdfjkydtjhgdshgsfdtyu\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a33fad950cd06b42b6d9d9d1e5154a5097d5719f127546d534ca70b814b4c400", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "f74f485ae125c37b18ab47152a9e6536f96cf90f4480df7fd1f5cacc51024065", + "regex": "(?i)^https?\\:\\/\\/nessiefiro\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9cca0d69884361f6ea0e456e73d4c1ba6f6fc2c82c81a3b4c0bc9c07c0422239", + "regex": "(?i)^https?\\:\\/\\/trendyvideospots\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5bb84a0734617b1b37cbbe92c780ffef9ecb8c67f29bb42303f14be1a637c516", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wydxo\\.com\\%E2\\%88\\%95oytmqrydl\\%E2\\%88\\%95jpotzm\\%E2\\%88\\%95eltnnbzs\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=teayb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e978a9604715f46972ead75298cc37c63955a0e27ed71185571bb0eab884e939", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2f4e0958a2141125220e3b55ba6941317f819fb98caac8c960255b55dc4dc938", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eddbad2c3b62c6925151cc1683bf4b74d7a91f66e61abbe22a0ce546e11bc074", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "782ff6495c9a696bbb35a86fe58efd33cf71613d37810051c182f34868b3638c", + "regex": "(?i)^https?\\:\\/\\/hotspot2024videos\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5a345d5e22dda7ab34521b368bb4c61a55aecfa9f38c9902bead893e779cbdb7", + "regex": "(?i)^https?\\:\\/\\/activadinamic\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f1db1d43db8d7d3fe3aa576253e3af6d46537d7635e5ebfac7d44de2ddb80cf6", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2326ec45c5707c13389f4b3aac2aa756667efca0053b926a1fc920b77fa1253b", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%252Fmua\\%252Fseguro\\.html\\%3F\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "58269dc0647336dba4cde1ab9f3ec1f6e52cc55e659c3fb9cd79f7e0d1bba391", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7525edf88eaec4bc12903d723a50eba38e6aa2e2c65a998deaad3c006c1dc1f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+discovery(?:\\?|$)" + }, + { + "hash": "5bb84a0734617b1b37cbbe92c780ffef9ecb8c67f29bb42303f14be1a637c516", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wydxo\\.com\\%25E2\\%2588\\%2595oytmqrydl\\%25E2\\%2588\\%2595jpotzm\\%25E2\\%2588\\%2595eltnnbzs\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=teayb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d7a7c2cf3db10dbeee63624f53bc897b49694811b5448c4abc6cb4b6823d262", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9b43e750416e48dcf233ff621153625549f6c68aef11a22d5f80bd29c16f508a", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "22b97b3d62763c6917ba1b82b510c3024ec1ebc734f3725085552c7052cf598a", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "db163ee67d7c02d5aa1fb54532bb87ad22ecaa5c8c4d73a19e93ad1d74d5e2fa", + "regex": "." + }, + { + "hash": "c301bea08120bff384fb20d33697965f34033f31075b81b0c1904dac84ad62a6", + "regex": "(?i)^https?\\:\\/\\/pub\\-782e0e0b5289418794c5a3115bee9cff\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "67ae971a27122193313f9b169ad5f20cb43a2d3b336ff8496c0fc0f701ef0f69", + "regex": "(?i)^https?\\:\\/\\/trendyvideospots\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e56f50fa2c99a53950b411de13344f489f1ce39e6427e03114f48f546cb8405c", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2ba2b9ecde04d8608fde71238af25110be7692729b349d954c2d2821a3d909a5", + "regex": "(?i)^https?\\:\\/\\/nessiefiro\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d9d4364c7d0158c31c0ffb80d359811264a6709de950cef494a34c762525a45b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cakT8sTwC1U4keAgrk6b(?:\\?|$)" + }, + { + "hash": "7a1a1d078706bf669ebd8b4a6b4a56c7dd39f04e5500385513bc5629f9ef4a4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1icvjcje9[\\/\\\\]+l\\?btd\\=dHJrLmNvbG9ueS1zY29yZS1yZWxhdGVkLWRvbmtleS5ydW4\\&exptoken\\=MTczMTkzMjI1MzM5Ng\\%3D\\%3D\\&lang\\=en\\&lid\\=7c867aff\\-41c4\\-4bb4\\-b12c\\-2acbad48bc39\\&pd2q\\=YTE9N2M4NjdhZmYtNDFjNC00YmI0LWIxMmMtMmFjYmFkNDhiYzM5JmEyPTlmMjhjNTU5LWZkMTYtNDRmYi04MDAzLTM1NDY2YTA0ZDkxYyZhMz0\\&r_okeyword\\=vs\\&td\\=dHJrLm1vYmlsZWZyZWUucnVuL3Nud2RhcnRm\\&lvc\\=7a911c96$" + }, + { + "hash": "a58aba3b9ab268fbde447fec15440d5364da1ce62b2cf92f5335331ec77bebf8", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nhpxsruaz\\.com\\%E2\\%88\\%95jbyjbcdr\\%E2\\%88\\%95peqsp\\%E2\\%88\\%95osjwh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ujsehv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c003d1cffb3bd0e0859a94508fa29d3a73ee9aa726abe3436ade613e805a96fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+puXjbfeB(?:\\?|$)" + }, + { + "hash": "bbd4eb20ff913ff6fe5c219942243e705fad03e157be03895d2a098cc7780ad0", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zgxdqdbokblk\\.com\\%E2\\%88\\%95llzeoaz\\%E2\\%88\\%95qqynbdqj\\%E2\\%88\\%95xzlwcznrc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=yrcuojm\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0799b09d84c8e2ae3ccff7b75f0a420e48ac132569fc01a15866eb1b2b5c8fa1", + "regex": "(?i)^https?\\:\\/\\/tyfuyr67r768yutg8\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ca69a89ffd40a9428226c78f69316492dd5112d5ae3f5be8c6d0565c69af8d9b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9077[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5bf3d3b5e5eac651b6b605e10ded749ab882b64e816b03b6877322f02e543218", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a7e8937a8cf9929556054847a65231a1aabe18b73bb09795c05703712fc209a0", + "regex": "." + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%25252Fmua\\%25252Fseguro\\.html\\%253F\\%253F\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "4f0d15cdf9c7fb044646516377ea64f5b4101b189bc1d55e1d0b965e6cac154e", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c548794cf5047481ccaa3638ba122476671ae02744de3eb9c41376ca5e4f1395", + "regex": "." + }, + { + "hash": "f168ae28ec040469db6c97f89baef4a028cbba979725949211f3c10ec5648f92", + "regex": "(?i)^https?\\:\\/\\/currently091\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "586b85edbd33347ac1ce5042e7e5d33f0a1a87dc250f2acc75c71c3eebd36a06", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "77866b776fbf10ac23f69ccac0d24074cea591973a4a0d3ac202e5e92b2358b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html\\?shareName\\=5845\\.b58455742\\.com$" + }, + { + "hash": "8f2492200e1e6d2f69238f3a45b166f54dda7f305791e8f041e80915e5106248", + "regex": "." + }, + { + "hash": "ff7add624ae858413b2fc37fe8369ab7e88c41feaa84b41e30e7ba8371a36821", + "regex": "(?i)^https?\\:\\/\\/hotspot2024videos\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ab4169d576f7e5df706faf25a7a92e2b09db29d379e2c46aa6f42290278509d2", + "regex": "(?i)^https?\\:\\/\\/dinorahsheepcck\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e3d7bd82e792efb32e1677b99b61f7fc450ee39355ae063a1a2d3ffb95041464", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xIrbVjb[\\/\\\\]*\\?$" + }, + { + "hash": "a4c60d5294adbed99ad4fe5d6e35486f1db55bc9878dff3967bd8b37c020e321", + "regex": "." + }, + { + "hash": "ac4285fa15e293fa7dd82bf99cb9da5feb81732fbba29144640ee23d801f3b08", + "regex": "." + }, + { + "hash": "1521f4ad27b2d0aa8da72d6129db3a2c9a4878060059182584e96db752b04843", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "47073300f54e92cea08ae64b2a6d2fb044cbc9b771377e58cc37c90d3ce557cf", + "regex": "(?i)^https?\\:\\/\\/suce\\-bite\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b62e1d0de4e983bd4247d9871548fd1bc41ee0661d31315386536999fa9367d3", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "67cdff3e0bfd299656eaa8a73db5f229a83ac308bac61e1dc94575c3b035b50d", + "regex": "(?i)^https?\\:\\/\\/activadinamic\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d5487548f88e2823127ef3acef6534149a3b445eea7848fc978c03c3a2d1b0fa", + "regex": "(?i)^https?\\:\\/\\/dinorahsheepcck\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5341cab2fbc93ad4b9ed696dcb70490e7d89707ffe94bc57b918c88c52024316", + "regex": "." + }, + { + "hash": "553035110bf616f06d5b1876bb446b5fcde348c529bdb5f8215ba27bdaeaff04", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a2529881547be51188b2ded99fc17ef754f9661acd2fde6ee6dc9c3ab0d33d8", + "regex": "." + }, + { + "hash": "7a65c149994be1f7919403f8f2c28e28a7b958d9866d7b4583cd198754a692b8", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "03e303da3d8214f6d1ec11629ccbe67967eaf38e9ddaecec59c31bb78659568a", + "regex": "." + }, + { + "hash": "84ab49de04ea22462d0f7eff0a21a8534dea5bd663be4b6716fb0c25885056a7", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "525901a03501a63d91c7ff616f03c8e9ed95b26264392e5cd56a45c3ed281be8", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e34444fac8a4e0035a697036bbf6c8a1f684c1c1b8a1aa971238de61116cf783", + "regex": "." + }, + { + "hash": "a5d6a12636dbd0b66690f196b9dae8b72537b561900c317eccb9699b1346611c", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0f5df957eaec8f2160e50c0b2eb0407723ef6df0e8daf8e6d60a7b9164026503", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "78b5e43dd0e41b15fa6c0957373e67e84910b6cc6417946e93ece1a516746441", + "regex": "(?i)^https?\\:\\/\\/suce\\-bite\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ad4407663ede055bb3d8ac4fd99fdd0b6baa6549f8d771e9d2d432bdd6df7201", + "regex": "." + }, + { + "hash": "8a25b596c179befcbc241a93f473a72c3b7e836811a20c0a93493753ffa09268", + "regex": "." + }, + { + "hash": "b3135c609cc9f1a6c124c808c27ac9ab5a374a2fe25ea5c19049be0cc8c4672b", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "40c8c87b8d45ad0762d9c2fb53dca6597e07d02ad97abbe0002592dddeb9435a", + "regex": "(?i)^https?\\:\\/\\/hotcliptrend\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0cd509894cf551ab2594808e274b798a3c2eb8c54cf9570758837642adb1944a", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4418137f52ff05cf47d606405ce13144ae849b64a941707bdae8cb2e1852c5c9", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b20d66bda450aa146b7709b9ada61a54fa6f3a548a16714a02c86827c495b033", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no[\\/\\\\]+ESPARK(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e79fb3ba72f3a18e4eeb141d99656b9ce65e3f592032a79c0a0b9031d890c420", + "regex": "(?i)^https?\\:\\/\\/hotspot2024videos\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c67ddbec8ae95a628e844ac016c42b6293bca20a239511d4efef7deb6905160f", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "757c37931337ba77c67d30c9cdf20a419721c20545e9369fd10efe29162dfe7a", + "regex": "." + }, + { + "hash": "32653b76350db7e180fd0dcb01733e6e2e978894c4a55c46e4ceac7c230a1d99", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8f22877d19f9c442fd4e85427e3d01ddaf848101ec152a94dd1a9da8da36292e", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4ba440a26555638dc30de435a2d492d2d91d5611d9527d5f84d97be9a95000b4", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "87cddb9d3ec58e5a1108488a9615aef093b257dc632128d22d560f6d23ec9bfd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "07f12e297b501f74d339af4f800f3b574ace35607e1e437c9a32871bb86fe137", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ba61d71e2b2b3ac62e6a2667b8a798f0621321afc77656bdb4f559178b46e4cc", + "regex": "(?i)^https?\\:\\/\\/333333333344\\.a627017826aa\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1134c1ee750b5800a19f43bcbc6b76827443076bb109ac789f22de4b6ade0ada", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3791c16f60d2a3f5b4962cd668d6ed307e1ecc7f60ab430f080a935f9a108348", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "46bc325bedcec7c74f742e5f58251d191d2a5f544dcb9b4043b64eff610367a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9043[\\/\\\\]+entry[\\/\\\\]+register86529(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bf611707812db33b37f806d5bba8759ceb39b32362b8a6f339bdca26e4e7450a", + "regex": "(?i)^https?\\:\\/\\/activadinamic\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "39026a0d8ece8b15d11538d88e4e51c974b69c4a7582a517bb8acb5c8543c91c", + "regex": "." + }, + { + "hash": "12a1de92e4e669a87067157d50092df8f90b2e9b5442824528ee484a06b4a91f", + "regex": "(?i)^https?\\:\\/\\/dinorahsheepcck\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d9f06df698ebc54812bff961e139cc4fa75c2186330072eca38313dc19baa170", + "regex": "(?i)^https?\\:\\/\\/hotcliptrend\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e236cb95982dace39cbdde6e6ae641c21e126c246259515f1a53b8b6e10a00c0", + "regex": "." + }, + { + "hash": "13bade39e08df0d3da40b1520492023154a4ad95fb1e430abdd0232a04128428", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bd07da88849d0e3e4c8fc43178104b2d27275f2560097a7eef1a8084aa9d3359", + "regex": "." + }, + { + "hash": "10e02f3d2f67ea983a5464e5e7d393bbb28e5809fb4d20f3bae6d7fcf8b0cf26", + "regex": "." + }, + { + "hash": "94b78c41bc132b0b37fbbc0b67c9c1f8bbe6e35451e77fe280c6cfbe4e822279", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cb78468a9bb7142bf06a54b36ce94e055ee0c24ef5793a339ff2775ae30047b9", + "regex": "(?i)^https?\\:\\/\\/kjhsdfjkydtjhgdshgsfdtyu\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "49980257a7613be51c6102b4767d5de56cb3f56c07d04bb98223ad4fd516dfb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p[\\/\\\\]+389402292(?:\\?|$)" + }, + { + "hash": "025595bea85b3cbb45ea5c4b8ee74c17d0d5fdb7863839ed3bc226d0b6701614", + "regex": "(?i)^https?\\:\\/\\/suce\\-bite\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e78daa6933147bdd00aaf5cf2169967e07c0398930ced9bb47eca977c9fbb4b6", + "regex": "(?i)^https?\\:\\/\\/pub\\-dba0b84672b748ccb0a4ef91c16d5224\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c458c018fa28c9e4d788279a64e9bbadbef29c4b0208304af1002ceb5f13346a", + "regex": "." + }, + { + "hash": "d326658a48778e2e25826a98722479672116cb41dfe5eee211952bc4eb5c131b", + "regex": "(?i)^https?\\:\\/\\/nessiefiro\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3f7f5acf61e8ffb2a8c02d831bf3f972694ea28e31b382e00be9bfa3a8f55959", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6575cc53629375ba887c9e33bd11ccd71f3ed4f17e1aa2c5f72c5d6515a5917e", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8bc797beb010b57e018ae15df3c356d756e86a1f24192816ce2ab80ec631e367", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dd9b85b283cf10b09caf498c451d5b2d184ebe44f8e812efc828378994438435", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c6654b487d6ca072fc1c5365cee39adcd41c15a2b204a159c1c7caafd12e1cf3", + "regex": "(?i)^https?\\:\\/\\/suce\\-bite\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5724728687c04d8c77edf55cbc9d57b73777f01a961a432557db7799088282e1", + "regex": "." + }, + { + "hash": "3f7f4bf8574f9bcf01d6d6e0dc9c56203758f27aedbeebb31a6e6955eaead0f2", + "regex": "(?i)^https?\\:\\/\\/dinorahsheepcck\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "28676221c36cac9f3d91c11561b3ca4c2fb96a2eba5f2e49555b2a26d43307a4", + "regex": "(?i)^https?\\:\\/\\/suce\\-bite\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0c1997bdbe41186729906a55128f1823d3bcb78044a03395ac4af8eb6299d43d", + "regex": "(?i)^https?\\:\\/\\/28883655\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a7612c3d587b1a76b4a821239e7399e1564acc7ac27b9a69db3ea475ed635d2c", + "regex": "(?i)^https?\\:\\/\\/hotspot2024videos\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ed406503d6cc2652279b3237917822d9b2041f876d2d4516b97ff62971fa87bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sap\\.html\\?lu\\=aHR0cHM6Ly9wdWItMTUzYjJmNmM0NTE4NDhkMzk3MmZkNzFiODMzY2M5OWUucjIuZGV2LyVFMiU5OCU4RSB2b2ljZTA3ODA4NzYuaHRtI3R1bGpvLmtpcnB1QGVsZXJpbmcuZWU\\=$" + }, + { + "hash": "e7aedf4da38f40dd3b36ed5ac5081c8fd20f653723942ed252899fddf3d4e1bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "034022ce07747e3ab52f1481b8781a2375a8ae1e71e1ea21ff45d67ef9726b56", + "regex": "(?i)^https?\\:\\/\\/film\\-de\\-cul\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8fea37fd04a32823abb61512ab7cbdf281e1d58ccd207a574d23a846a372aa0e", + "regex": "(?i)^https?\\:\\/\\/activadinamic\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a3094ec27bf65e6d9f887f82313cffbc68bea8c78e0d558320ed1e81f5a29502", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ae6e4a95a08acd6998a9cf07853c4fa8b9d273c6ca81f87c5906caf7c78de585", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e77c251d15a03e4f5acae11db5f726a8bb8b78a8bbdaefdf2134936747da3baa", + "regex": "." + }, + { + "hash": "ba612759498d5cd6fb4a60906817713afaacf1b970b5d40c3184be60c11b57c8", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "869d5a1ad97b7b86dea4785f0f556d331ecd00321ccd7f0e801463da876b6c86", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Fredirect345632\\.blob\\.core\\.windows\\.net\\%252Fasa\\%252Findex\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3F\\%3F\\%3F\\%3F\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "1fe6c88ad2cbb91c4b439a229db9d48dfb5801bc2a807f69573f9ceb7fd84452", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f80e9e303d334dc9c4f636b563735267e245244d13934c8303107d538fbdad3a", + "regex": "(?i)^https?\\:\\/\\/dinorahsheepcck\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dbb5369985cc1a029ce461a7aae844734aeb38ce1ba71c50aa8051777251e90b", + "regex": "(?i)^https?\\:\\/\\/film\\-de\\-cul\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "95ed6f5ebc39684f68cc9b9e467cf4c21193466f98f040804ac205d330c7c964", + "regex": "(?i)^https?\\:\\/\\/fromafrentscs\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Fredirect345632\\.blob\\.core\\.windows\\.net\\%25252Fasa\\%25252Findex\\.html\\%253F\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253F\\%253F\\%253F\\%253F\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "313a1b707899ad2083c604fb52199dbb2d68dfd2667070c3101375e4b6dd591c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "c93d1e731bcaa827d6c7eb0253b304d69499f534cb96aaf695e6ab2f7a3e3718", + "regex": "(?i)^https?\\:\\/\\/film\\-de\\-cul\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cf49d32b2ec119c26c2d57210fee31a17cf61ef73833515f6cebabd76bde51be", + "regex": "(?i)^https?\\:\\/\\/kjhsdfjkydtjhgdshgsfdtyu\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c5c66cc6738c93f17fd458c85850b9cf484fab8c346c4e3613546587e9ed5a25", + "regex": "(?i)^https?\\:\\/\\/trendyvideospots\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ff38a5b18d7e1a40c956b08c8cd39ebee4d21bd887edd6e6fa3fd53c07c629f9", + "regex": "(?i)^https?\\:\\/\\/amazon\\.uyohziu\\.com\\%E2\\%88\\%95uvjtpgblf\\%E2\\%88\\%95iwyxvi\\%E2\\%88\\%95wshxl\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=whwpgkmynb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "74093718c6d9696cd69c5472628706a08813f7f0ee82ff0dc1dfd22a2f85b7fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html\\?shareName\\=5845\\.b58451876\\.com$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "658be3bb0bb688c8bde4d4e25f3068d7cc9887b404b682f193a2e143bd917edd", + "regex": "." + }, + { + "hash": "2723efb49ceaf9db603a5e0ae40abce3f2e7168c0b31daf500581f8346cb2f6f", + "regex": "(?i)^https?\\:\\/\\/suce\\-bite\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c5b51c1e70998df7968374b4ad1f16048cb1db6abb2afa528c8aa820bb2b0f75", + "regex": "(?i)^https?\\:\\/\\/visionstrider\\-dreamcatcher\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f87cbb3d9b784f344fc80db1276429e2379678eebdb106f7b1cad92492828008", + "regex": "(?i)^https?\\:\\/\\/dinorahsheepcck\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a58ad8e4e864485d08e082a867decf14eadba7405fdaa87fbb40fa8362cd3b09", + "regex": "." + }, + { + "hash": "fd1c6cd2426ec2b21ef0f7c8cc3a13ad636e907b0ebae1c24ecaa095d89294b9", + "regex": "." + }, + { + "hash": "7e6524199a9d920d9384d91c24a8afcc03434b9211eee343ced1a44d49406c53", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fwongsrigroup\\.com\\%2Fimg\\%2Fhighlight\\%2Fcgi\\%2Fmicrosoft\\.html$" + }, + { + "hash": "822dc1887a35f9b03d827998a2bef74f3497fc5728f72da10c51171d82c89a6e", + "regex": "(?i)^https?\\:\\/\\/x04326\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d77bee2fa8bc92690281b5a08a7e0c0300fd32b37321bf7886f2e52d52bca20b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "c29f61cec3e2992096fd12b8df9d0955da77c4ee0a73ad36972f679c6ea8aaf8", + "regex": "(?i)^https?\\:\\/\\/trendyvideospots\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d2964f73563678ea923025161a9bbd9dc7be52a929ffe94c956faa3185dc8667", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "1f9e1aa9ae2ca80f6342cb0a99c7108df04ed61b047dd322d1151e5dcfee3329", + "regex": "." + }, + { + "hash": "c8c33439d5af5e793107c3a5c3957dbace7ab0bac2b2a0c701ab0c8554a60d29", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2dae287b30ec554efe4f3cd0eb0e118f6e3d3ac24f43fda95612e5b4e8fd850b", + "regex": "(?i)^https?\\:\\/\\/hotspot2024videos\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4f00863da57d60f2c9f1296352f0e66e8b6ebc7f190e7df4cdfbcb442ce3bbc2", + "regex": "(?i)^https?\\:\\/\\/sign\\-in\\-to\\-juno\\-109680\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d6a710c092a631aa881a8736b9aa629b83b0054cea0cbd7a5db16d99f6c5a3e2", + "regex": "(?i)^https?\\:\\/\\/activadinamic\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "aaf8c9a4a91c69bbc5d38c9050b49cfaad0644d132e890c52618ca48173e34e9", + "regex": "." + }, + { + "hash": "7bc209bfe851ca804bf5e9e115d683b8d262d156b2a091bcd8fb6f4bf57a72c8", + "regex": "(?i)^https?\\:\\/\\/trendyvideospots\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5e8beed7e47f3775e3a8885154014c69dea7143773389459af1b8797fd397c83", + "regex": "(?i)^https?\\:\\/\\/activadinamic\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f2a37cd4ad6b8c924be29001ba1e8efa770f281cda999d7ed513805c42fba", + "regex": "." + }, + { + "hash": "e96a2ad83ddf320cb7b31f0b8b75aa7383c9191dfcd3f6bdd34a44362a7f31e4", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3392a72f94a186fdf0a6f9400f7e47fc9ccb10812bf11a36dc811540e7e229c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+KUCSnArXnwbEj4lqcbusFn0bRie(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fc23d9f7c54b5ad80813a1c5a00cdeaf064e58a557c8819a7563f246e44e1f07", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a4f6455d9c7d906933c1fb787672aee65058c16212e663d93c0c64a89409fa33", + "regex": "." + }, + { + "hash": "1d9a7be79edd4ed919c7164308949bee12636b85ae41896d28bfbcf93d290a67", + "regex": "(?i)^https?\\:\\/\\/nessiefiro\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8ee1552d564bc58f1cbc902d95df58a7d9ef0319a420971cbb5c114506f4eb38", + "regex": "(?i)^https?\\:\\/\\/nessiefiro\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3a4e01c230e99de96d897a7779023191152094a0e80e8ece721ccb2eed97abc7", + "regex": "." + }, + { + "hash": "aa036f5b89809c1f6a60a92780edd3afe266b36e51c88692b2925d1e50962f55", + "regex": "(?i)^https?\\:\\/\\/nessiefiro\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b90ce604b7dadf9bc614703f48d4c36157e58aece965170d6c9bcedf311ff9f9", + "regex": "(?i)^https?\\:\\/\\/dinorahsheepcck\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "459bf5f2cdc777ab64a39c2ba25e423032da14dee0486df909048905a9cc5ad9", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "eda759721bcaa51016a88edc219d6a1df46520ca86fb76363844fbde8ddd4251", + "regex": "." + }, + { + "hash": "0013667bc99fc0e3bbbcf968eca39bc00f65501c3c0d3a6febbf6a6f9ac4164a", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0c1997bdbe41186729906a55128f1823d3bcb78044a03395ac4af8eb6299d43d", + "regex": "(?i)^https?\\:\\/\\/28883655\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f70d16b377ac950c77a76abf151232a80bbaadc203d0a14506ad6168b7655ff1", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "eae870254611002650b3c5e277c58db090c873f0e30062d28eb021efde7907b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a06122318e38671a45fb3c0051837c3c1281b5c0e6d3701a87ff4ce66bdaf700", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4eaf11abbaefc4b52aefa35b837d45fd60f77763aec3230d8211afa1d3a4c88c", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?0388net\\.cc(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "6239efb34cd0ac56a0ae6c25892d245855a910c530656a59da019fb55bdf62b3", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "84e1ae5ceec296d474d7cedaf9f474cde7c27ed2b9f74d9afdd4405fbf52b9ee", + "regex": "(?i)^https?\\:\\/\\/film\\-de\\-cul\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bfe00cba3253719a5a2b54f9f361214253c2f46aec9bf9856bb0f66382485719", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b2524c14db7abc104efc9bb0be94197c8f59330ba01e91f9b0a790d588d5ae20", + "regex": "." + }, + { + "hash": "e3d7bd82e792efb32e1677b99b61f7fc450ee39355ae063a1a2d3ffb95041464", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xIrbVjb(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d8b251cb1dd1ac308088f3e1331e4256f7ffe617fcd1cd956d8e25b394b3112d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "ae7c74c0d660abb152903c2d7c2327a9539ec460315be0804f035e9b85b2cb7e", + "regex": "." + }, + { + "hash": "33cda335aeae00cb6f4cf2013673d0cf38b6ad2ca149c7a6dcc1458d3ca97bf8", + "regex": "(?i)^https?\\:\\/\\/todayhotxclip\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c003d1cffb3bd0e0859a94508fa29d3a73ee9aa726abe3436ade613e805a96fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vkmx548I(?:\\?|$)" + }, + { + "hash": "d92a8d1e7dad41524699d35346548948abd362231b90acf031a3ae52877dadda", + "regex": "(?i)^https?\\:\\/\\/trendyvideospots\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d9d4364c7d0158c31c0ffb80d359811264a6709de950cef494a34c762525a45b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cakT8sTwC1U4keAgrk6b(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c1280725658f6976560a45b06146e4404df0563516eecb2d364711e9c124d04e", + "regex": "(?i)^https?\\:\\/\\/nessiefiro\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d9b2d2431fc86adb610f9f40197298cf724042f41b06ac0f45119a6bca4f5747", + "regex": "(?i)^https?\\:\\/\\/ga09w\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a7d73775db18bc5ac372e9363abc7a1495b25ef09cd5e9c1e309b8ea5c743770", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobal\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "89484d9b294f4bf16cac6182bf8023e627136bc48cd73361eb8fd234c418aa6b", + "regex": "(?i)^https?\\:\\/\\/villanitaannymarskmgc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5d19b96d73efd0fa115e9eac265d8119ace213dc67e29a4737f155216954e103", + "regex": "." + }, + { + "hash": "87de441549045f0eef47ffa746ea6c47ca516e93476dcb5872c99e5864e68749", + "regex": "." + }, + { + "hash": "9c86c9f15eea652d0655ec728f8814e580e63803f767549ee1b4db52b690a365", + "regex": "." + }, + { + "hash": "97421712d9f6f691bff5a84f81c767a920d4d527578898a37010aaffd2dc4dbc", + "regex": "." + }, + { + "hash": "d8d67e3d3f95e7330b1cafbea20187a8fe9d3a6611f6a76aef9cdad02a4b4bf4", + "regex": "(?i)^https?\\:\\/\\/nessiefiro\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2e0ed4c15e9a87d475618224931ad3b240d5109f0018b16086e536453421bd68", + "regex": "." + }, + { + "hash": "822dc1887a35f9b03d827998a2bef74f3497fc5728f72da10c51171d82c89a6e", + "regex": "(?i)^https?\\:\\/\\/x04326\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7091303c925d287807f53aae467835393bf7bfe6082d277a53e92a57aac0f1d7", + "regex": "(?i)^https?\\:\\/\\/hotspot2024videos\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9b11cbfb3e216b7c5f3e50f232b764a599445e8cae306dd4ffb90aa2dfb5b5c5", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqdhgb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5824c2629bc7282f1e138be5985c71a413f51708c3bc6fe03e55d9d9e6502068", + "regex": "." + }, + { + "hash": "1b271c7f867e70576e721a4fcef0b103c154a626cc2d4319a0047ced8ba1a77e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.pdmmezg\\.com\\%E2\\%88\\%95bahcfzrweq\\%E2\\%88\\%95zjkkwyss\\%E2\\%88\\%95fajxqy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rynouv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c46ec8dfdbae8d80ca929295e93c0863b5194cd75da7b0fcf3a1f10f0bb4f344", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1add9730ed5088afc7cf4b6befe45be70921688791cba00851e461be742743e5", + "regex": "(?i)^https?\\:\\/\\/aqeghbqaedghb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a0e145f24ddb06a14fca7689a43ebf2ad1c098c7ef0bf9e762bb5e42bc747fde", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1a62b5a0724a89efac95573524a90b754b9f780a325685e70af390171a6b35da", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ukalbtkm\\.com\\%E2\\%88\\%95nzqmmrxbx\\%E2\\%88\\%95xicviie\\%E2\\%88\\%95vyoepewpfx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pojvwx\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e57d260b3da54ce9eb080cc17767523822aa929b38aed8228da37a7ebba74a87", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e0603f44a6f451524d5454dad17f23fadfdd604b9f1e25f2a829b43c5be19661", + "regex": "(?i)^https?\\:\\/\\/zenrtndfngdfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "55f15ea460a3fde44cc6173c33121152385090a616269eeec87be2e31ca7a24f", + "regex": "(?i)^https?\\:\\/\\/aqeghbqaedghb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e4f7cedaa4595de68b75cf3eecdc60971be0f990aec8746d708d4d85d0b0de27", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2d3b108c003e49a408c0e62a49fab21b9c06d4c8cee811ff07f35bd3de05e42f", + "regex": "(?i)^https?\\:\\/\\/dioersejdgjdfjghdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "165b1e348dcaa3ae252e3547253aa4f243b96b9993d8799a1e5411529c07de41", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e18ad292fb76cfb3f28d75de88e5834b77377a0391096043c2245e6e1bb70b1a", + "regex": "(?i)^https?\\:\\/\\/cliprushhub\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5816e60d34aade22a5e25ea20bf737bc0fd30b6fce4034feada512e54be72c00", + "regex": "." + }, + { + "hash": "9a12dd35e25e9a3b977106c9f5f20a8beaae0701be5b35a5724e74e565d83814", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3601792337e8f11d8ddfa60462928c0093e8e4aa9fbf1eee8c52c4cca4150ed4", + "regex": "(?i)^https?\\:\\/\\/gadhgbqeadhb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "859392b533ca140518aaa0d8f1bdc886cd1fc8c861725585680f31358a203295", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ccd17f7789f3c3ef4084256edc9a5c827f072b29d3cf0fb8dbd584c7f24beda0", + "regex": "(?i)^https?\\:\\/\\/hddhdhdh88\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "19623d5ea3073ba5ad3b3f0189f72e495e0d63182872b7b97576e33736587764", + "regex": "(?i)^https?\\:\\/\\/qeahgbqadgbh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6af09acd95c02099dc8b9b6bdb90d472eafcaf90100790970bfdc743c84f25b3", + "regex": "(?i)^https?\\:\\/\\/nzerbedjgfdjgdf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a43425709741ee6a03d0f3efa08613957f48c73b40b5332bd75adce083608693", + "regex": "(?i)^https?\\:\\/\\/moonrunner\\-lunartracker\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "00ae9553e5ed05187c05b77d586aeed64416654201d8c87b7ee5592905a3d2b1", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "970c6e26345d82f2db633f8bd5a44ff9f3ca6fd0d3dcce3cd95b8ff64e3d7304", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4112be13eb158b0e651a5eb92b88f6020555e3d6d5fbcc87e8b7b85e7f27dbc7", + "regex": "." + }, + { + "hash": "df49aa1c32fe92942f246d53f9de92c2a8fc9d547469e2f1ad3825a9cda063da", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bb3d5dececb67450fc75e3a78ffe062e5b6657c9f0be37c4f89e95cca0c38b6f", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "05959e73c4b309b1bb07cf61b2256f0b2dd5ebefb0d667ac977300e6aae4805f", + "regex": "(?i)^https?\\:\\/\\/gadhgbqeadhb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmeUJDKHHtwyzzzq6rEGh5Qiao2pfYGVDZRW9QWJrd22YJ$" + }, + { + "hash": "8810537b4a141e7b6a869de28ddd43f55752c83a59cdabe0fb61a8b50fbe2f5f", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqdhgb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8e1a2c3ebf1c9b834d5ed39c1afe91e0922906cf3d87609f40eb151dcc942d29", + "regex": "." + }, + { + "hash": "66fa85020bfd83d641d581506734c4bdd61a59f0d40aac83489c1a9794406f4a", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a63b33b66ebe0289b2fdbfaefb7fe010216265f0ee8dc8bd475101821e67d8d0", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4dc7f03ae85099ab18061007e7f00f61b6b977c1d2e43ef62a713c9934b0e72a", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b450ca4e9eeb101f47b30da89937e0901b0d6de86805f4c8fe2516efb8c71dc8", + "regex": "(?i)^https?\\:\\/\\/ehgaqeahgbd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3a6bcf6cd45f13ec13237999266f25f418d37426d0a07077aef2c282fb703198", + "regex": "(?i)^https?\\:\\/\\/gadhgbqeadhb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1778aaec34f3fb496173df3fd892d8fdf98f6e83598a73ca16b1c7fb56c7f976", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c1e989f41fe9fd9f841aebe6f6ec07c63a52b428a8dace6ad9b17e3e1226b03f", + "regex": "(?i)^https?\\:\\/\\/robloxvsco\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a66ed7b16c5151477d3ce43b05328922e93fdd367228c37151b87aa589513022", + "regex": "." + }, + { + "hash": "f4ba2ec6f0650e1dff84a3ec373ce675076a68be66ce4ad698d9c6504bd83970", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ceb2539230753ffadf2a832095a1fe944ef6ee049feadead83ac3f5b945d20ec", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bdccdd1ffcfe7f57b13dfd46e9701513a5e53f40121f12b9388dc9fb1e68de65", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "15477daf01772da4e152314bb35ae53f2c6a366c3c2c651770fca91689ddd43b", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dad64c85b5387d264b07fc4098e5e03346737d4848dc0dbb985cc069779de0af", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "44688be358c577cd58f6106897afe7e1c18ae992cc872c9dad9ccc64b9de92c3", + "regex": "(?i)^https?\\:\\/\\/hotshow2024\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "de8ec3cdb0be603509daebb423cf959e168bb61d3a94985c4480e57778e6745d", + "regex": "." + }, + { + "hash": "a7d0357b12c5762747eaaf0be991754ee13b82759960f2edd0d25717ba57ab32", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "10b45a796650c154e1b3f6c7e2d7da368781f47937e619b3f73fe76727805e21", + "regex": "(?i)^https?\\:\\/\\/aqeghbqaedghb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8a2f7b769be87a65081450bed163de89e915e7cddb0f75f5745193d53aba3b9d", + "regex": "(?i)^https?\\:\\/\\/mkalwwkkee2\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4161fd33f795c0b0ebc9c2c4e53a7e99db92438fc4c7040200c8b265f51b2614", + "regex": "." + }, + { + "hash": "ef16d2dbe3693124ada347ab334ba52625c9b15b49d5dccec4e445b7a2cf1348", + "regex": "(?i)^https?\\:\\/\\/geqadghb\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c487ba95ee44788ddd6480482368e2ca30f5f93010063d24f64eb0836c7341bf", + "regex": "(?i)^https?\\:\\/\\/detrfjntrzsj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ef931bbdc9db03d6cb5b33b269cc626edbe9e6129ccf4f84b524baedb7677dbd", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d24c3e58c997ca9dec481c35120dfd72a78c3583d1b08d5f10c5ee52e26dbfe3", + "regex": "(?i)^https?\\:\\/\\/dioersejdgjdfjghdfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5a14ab5a66ea3638ea9e86d3cc4111de6465b0178853afb91324c423ea7045c5", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8115384bc22c0851777e59e60de88115c3d3ce74e36652864c1ef896aa2213b0", + "regex": "(?i)^https?\\:\\/\\/edhgqedhbedq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0a1808872b65fd9015343935bf1d25b0572fcb243795209847e228aa2f5d0c09", + "regex": "(?i)^https?\\:\\/\\/wxaxasazaz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e8f0e17e7a37d63971c772f44b6787f99bf3b1d51dd86c9d0d59fd7f99a022ab", + "regex": "." + }, + { + "hash": "26e6d7d8094234a9c9b4e77d6a62ac5116dd61dde4a85a27eabe6c2605f78a13", + "regex": "." + }, + { + "hash": "d43b5e12adb140ab44ee3b92b452036147fce8881639e1df8c9679b3bf40f74d", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ed6ce3a9e15af1877e3e7c691dc95ea4176059c221e60459a94ce88058458199", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "db734a691e64ce27014bf37a834ed183fa015afce2a1907e662d6b2f92f1c955", + "regex": "(?i)^https?\\:\\/\\/robloxcode2021robux\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43bfe9330f0772ce3ed909224a469c3abe38e06b188985b7df09006ad97ec436", + "regex": "(?i)^https?\\:\\/\\/edhgqedhbedq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "246df75e8f0ebf628df20b37615f761960d45706ea74f7d41aec7673702f86c3", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a0acc34cc7807be5fbfef0e89df771c996e8fc9415126992c48bd2f6e080dc93", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "55d775316799f6f64d153580e812dbdb0aca8b86419870dfbf18762f04421dd9", + "regex": "(?i)^https?\\:\\/\\/detrfjntrzsj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "54faa660210583b53de4a09789ef93ba4e3f441c631ac233911ecdcbea048ce8", + "regex": "." + }, + { + "hash": "172ee0222b43c39ae672c8a77ec38192ce1aa31acf1097415145638b9a24c87c", + "regex": "(?i)^https?\\:\\/\\/hgeqbedqahgbq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e18563605e0711bb62d4fe145e3188388f6e29683efc022ca59e8e6399c65d2b", + "regex": "(?i)^https?\\:\\/\\/zingor32\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3948b6c3d677e595bf942ce4f2429c3b2c2e42c81df4f1f0869ea5cbf8ee4b8e", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "47611ece002db3fd2704b6c48b783360f39c3684c9ea4724e420b89134ec8f24", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbdq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6396afc2a842e58922664d662761c25a9e3666c6809e9e3e9e59fe214a473f1f", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0a17c912c4fb80d86e5d2afcff291a5cc1b6fb8c759c81db1059ac5468a16a3f", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "52c0b0ced1038b54de9f4cf1fcf5a230670b8f2855354c129dc15b65ae98c367", + "regex": "." + }, + { + "hash": "ba9643c55920649189f4b0a2412e387d076253e67c21e1d317ebf95f9effdc39", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1513e7c5fcd1b489a9b33e2890d3eb62c67cb97e8df8f68598df092f24bdd13d", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1535fecd087b25f2f1193ee0c9220a32929c825f506f0206878f4b281c0f828a", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7d030aede7d6dc53bce47b6d6088a4db024379f4eb4c9920fe9eb75590c98ed7", + "regex": "." + }, + { + "hash": "1f0989433bc068a87bb8fe61137abd63ef5fcbb1c811786e6402cb3cb8efaa6f", + "regex": "(?i)^https?\\:\\/\\/getfreediceroll\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cf25aec3bbdf59c362a0d156b14b4b2f61395f7666ffbb2721db023864271d0a", + "regex": "(?i)^https?\\:\\/\\/edhgqedhbedq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ce70248d2e1a271a5a1a2323615bbe5697b3659b3b06a0f936eb68fe33138c2a", + "regex": "(?i)^https?\\:\\/\\/zingor32\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bdc3b316d0da162db88d8038caf6851a7337b47a240f09897bec2bbd9a85babe", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fc820381c6469a96b9ae6e43ab59da1a35e120a98e20f44c0e148ccbfd458313", + "regex": "(?i)^https?\\:\\/\\/cliprushhub\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e1602d7718aac5bf895da5384040e45bc3b3d95581b9f27a775c2a83e284518a", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbqeadhgb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2987f569d83cc80652b80d4fa1a512f9c1c732d2d9a9d1d90c05d16f826c8be6", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2041d0b1d765861d30f77d905239cad6f48712a173f7987b9f95c70612785249", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbqeadhgb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "35226d0d862f7b0b8f48e88d12784de05c875f532a8a47fc2fdd6eba58322aa8", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "964255ade996b3a80d4d90a878ab561cc1fe08c96b3315dae76d2c5401c92a39", + "regex": "(?i)^https?\\:\\/\\/zenrtndfngdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "76e65c59ab4945b6c03d0b423751d62097381ddb45344a2bd731b2edd875c5f8", + "regex": "(?i)^https?\\:\\/\\/nvetndfgdfgdfvb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2e8ff9cc0ac286b8409cb0c2bfd34a797e57763dcdc95cf531a2aee39a7e6f36", + "regex": "(?i)^https?\\:\\/\\/zenrtndfngdfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "33fbe431bfa501c213f53de05ccf68af2c35656bd3cc044ec538fe58779ca894", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9781c3d1e9c86898b0577a44a233928508a3726cd15ef0a797eee933f267d", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "f62f7e0880eacad9b9314e3073051e1291f11928ced75a264692bad01dc4f864", + "regex": "(?i)^https?\\:\\/\\/edhgqedhbedq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1bd32609104303f6dbb1828a800947545aadf501e65742487a3fc74b15bfcd62", + "regex": "(?i)^https?\\:\\/\\/wxaxasazaz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "65d0ad3fde4a93edb67f62bd81c60c94849d36853ce26d51600976198de6fe88", + "regex": "(?i)^https?\\:\\/\\/ehgaqeahgbd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e522b41bb30b61bf6a9baba1d2c325f3a8144f41e3a1fadee2220148af476bc1", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b96a4d1dda6ee8c5bebb20ac80c00ff32439dfe72bf3543d31dd60c24217f8fc", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2bcc7646d14823c40e5b3a0a0f42046e8f924f2c1f69848603ab18507ff7a0b2", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbdq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2dbabd4393ea758f202d52244e31abbf00fe4a0a1782313b46ee3506c2f600c0", + "regex": "(?i)^https?\\:\\/\\/aqeghbqaedghb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a9e9430c8eb2e940eea9729999ba96c7394bec9772c8ade94ba1aee4a9492d85", + "regex": "(?i)^https?\\:\\/\\/espace\\-particuliers\\-clients\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "44520e5ea32a0cc2c8810efd664ea3c18b9e522f2f83e959426345737d05ee2e", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c6bf414fb5095fbc835b442345c8426ff33d2fa0402dc2f3a9aeea6be4b65b6e", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "93560651860ab8e988ba9a121460f62c487ee8acb67f531516144276baca0bce", + "regex": "." + }, + { + "hash": "23b34bcdf58b6f5846b07f20fdefae6a16a016711fcb8f432cfe5fa678745dcd", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8a034ed3ab3342039f4d27c2b4a0f166fda72869c3b730b3932f6a90126615b5", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d643bdc8afdfd7bc157a0eb4cdb8125d61e501170372df7408fff068721073e7", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "78c5c53613079d1ff86b97a828a9cbb5bb26bbd3ce5733e8ffbdd129c9a0386c", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c6ff9458a8f16587931b905bcf3ab98bab01c2b3ed33ed9b78ef0db66c44d8cb", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "88e7782a0476d92ce95e6b832a65c2d6623996a8b45fe81a7b3a38cbd0264993", + "regex": "(?i)^https?\\:\\/\\/dhbqwedhb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "29996bc3e85ff52d780cc7f100a49599556db897ab3bea8c5f202469b55a3565", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b6c35fafdd02b351cf57926e98b901de0efb576eb4d3f0cfc605e9461c96f710", + "regex": "(?i)^https?\\:\\/\\/espace\\-particuliers\\-clients\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d2631677b73a494aebda6d10290ee15581867b90393afd7103357ff612255030", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e691a302f25bb2e31230f7805c526ac3261fdb62bb1fe89b4d119553d75487c2", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "578caac545a449069db863c39f7991f3ba335beec42ed76bb287daebbb572ee7", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ce31ad05222352e5bef08d755748dce497083142f0307005f926f6b4b4f9b599", + "regex": "(?i)^https?\\:\\/\\/hddhdhdh88\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c1666ceea969e8d33eade3db16721d040686167fc348d42c18bba292e25dc2cb", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ce8651730fdf5ec5e871f0420bb70be2a4d9eb03957882214c7055315291d2ba", + "regex": "(?i)^https?\\:\\/\\/getfreediceroll\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8b942952a0bbff345b4fff0683e1818783c7710605cc801e87cf59951386ba2a", + "regex": "." + }, + { + "hash": "09964669619a72b4f340ffc3885af073778d0785938032c2677eb5f0f33d666c", + "regex": "(?i)^https?\\:\\/\\/najkw22w\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ea55714a102191e34b90135ab55c01316f83d3abb145593d74622215533333d9", + "regex": "(?i)^https?\\:\\/\\/nvetndfgdfgdfvb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "72f08cc51cab08ebdb790bcc5be524615bd619d36a2452ddce2796db236c74c8", + "regex": "." + }, + { + "hash": "3b9a0cc22db8c2ee5371baea0f7f9614fee2a99353543315a59e5e70324078dc", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5b907a0312208ad8bf643b61db7a6e61dd122431e6fbbf82ad1311487ee6e2d6", + "regex": "(?i)^https?\\:\\/\\/qeahgbqadgbh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ef313c5c89d94891623ac3c8a6963c6c9783dd17e71ca59a84e112702c213946", + "regex": "(?i)^https?\\:\\/\\/wxaxasazaz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5bb8b750d4512710be72f4804ed9974a9cc93bbe771cee7f9de9c40fe5eef8fe", + "regex": "(?i)^https?\\:\\/\\/mkalwwkkee2\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e28f9e2b1bb4b88b992ae76b51729238ff70e5f6211f19ca315cec7a54a7361d", + "regex": "(?i)^https?\\:\\/\\/wxaxasazaz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a0fa6492ef4d00ceab94300f0fbc95aa413c7dfbef929c9ca373a839a743d3c1", + "regex": "." + }, + { + "hash": "7e65f0060a22c00cf923516b60b5ad457ac24d7d739dd4f003e473ab3d61e7f6", + "regex": "." + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmaPiFQzPuXoVm2yF7ujkHKMUy6aoUpMLGzmNEDjeL4iKN$" + }, + { + "hash": "48bb06039226a3642940f65ca5a32a7a25a9103fd7e3a15114dce7c10103f026", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1d90b2e849039d37452d13e88dd7eda0f5ff0e9111030bb3ee55123a07b3d221", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6d161ecc00e8aa7d44786bd42f5b2e8e56d9b26cebfc1bace30afa74dd4f9b99", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "91f56763dc3b1cb0c53fb232e12bcfcd3936ee6edd6d2a74860a34cd947e7e9e", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "10b900743b7d9768d38a862a5a445e8a38ef959dab2c1f4755659d73123c1c59", + "regex": "." + }, + { + "hash": "a0549d2e8ba66d0fe5fdb83f1c32dab07310718d6e8ef63a647e7a85ec4a4959", + "regex": "." + }, + { + "hash": "7b697213be305af64feedb60db4e1398fd1d27b5f7bb1a072f71bbf3a94d52a7", + "regex": "." + }, + { + "hash": "8a42b2423d71c7c3ca281d7036af90135ebf8b24be4afde3c313681791640b0a", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d5fb55af5ab1937b49ed17ec5d830fef9a263c289e760212d423cd2a36e90035", + "regex": "(?i)^https?\\:\\/\\/cliprushhub\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f6206d3446069a33486dd94be98e8823b87c575b61c5182aec7321e4f567bc3d", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9c777e7c839c34bb921ff0777e044371ebc59307bbc906b886f41a18fccb6ce1", + "regex": "(?i)^https?\\:\\/\\/dioersejdgjdfjghdfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4da01eb5800b0330be3e178e1f2908cf0a4bf700058e330c7fa97d5c78baa5a2", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b2f962d2ec65256f97194f4fd12bd9c5b34697ba6acc2b01183a75152d498e4d", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "24555af205883efca893000b3c16104c079cc7d0ccce7c47c7bcff177d6189e3", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ba67793ddb419d578a646e4990ed8a0f5c5a35add7fd6c2edc0711581a86c0ca", + "regex": "(?i)^https?\\:\\/\\/najkw22w\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c62eb654dac11224b4e8e7ba75e6cff696a96a84800684eddf152e0cd5d80213", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ae40eb4fadd962d6f08fb49a7a2b37c643f9b4102e02dec1013cde956c411a4a", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "264ed01076dee8817c54e735655de0be19c1db8669e556c37a781c2c9a83194d", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "499d8a8055f6fa1995e5f15b14dd8511d88da1728ce466abcdc9e1e401fb97ea", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2cba20546017df2b9247ef372b8ab52d78b8c3d372887f603aa4875a496ace27", + "regex": "(?i)^https?\\:\\/\\/dhbqwedhb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "aad285a578b8ca55b56e293f848b3df2e04d0b5154eecfea4d439122474fb6b0", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "33ef12499c970a6e61f9f2c43346dee7f8405dfded7e229bd4a475b651bd0583", + "regex": "(?i)^https?\\:\\/\\/detrfjntrzsj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bcb02216f723e3286d9b787e8aad48d2be3f43e8a5446c83f6178a360af5d44d", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "aacb73149570084441f378d45ccc6ac56393ebe108cd562dbd6abaf739f7d122", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e24ef6665e01a1face1f3cb778dbf1ceda57a6822d0742da87d887d669ad9d63", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0f73f9198ec25816dfcfe3f8c4aa1ac535fa8fb3edd91417ba118bb7da8d8416", + "regex": "(?i)^https?\\:\\/\\/wxaxasazaz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b5abc8620038b26d4fbe41286a220435363baf005263860fb6336660f6c76cb6", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "596518965d148817ff8f44aa46dd5e127a4d0c18ea9f4fb825599016c48bdd85", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "aa58714a6af237eecc8c1112a132ee40891fb6d48a9d69dc8465e47e2d4ebff4", + "regex": "(?i)^https?\\:\\/\\/dhbqwedhb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f57e5452c4bfbb45135695742b007d3f14c629d06b83853861c78c40cce35389", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a65d1229a23a26db3e9ee2a6dc4693b03537001f23ec0be5c9efa41185d87111", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "f9657fb8323011f8f5cd25d0442eec02b7e2bba3c3db480931d4a229603e111e", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7cb9ae3b7c91d927a7fb7e343b8aa0049224adfddf5a6c0666994ba4dd0ca3f8", + "regex": "." + }, + { + "hash": "fbf895e4baa597ca5435474acc10640058b180f8a8cfd647253bc49963e4dc13", + "regex": "(?i)^https?\\:\\/\\/najkw22w\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "182240490250c653a3832b825c1bc7aa50b7b709e7635732e685a873bfef7f64", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "52591e9f98ac5e34170cda63780b219f7840619a76667468b4a90517eb3912d9", + "regex": "(?i)^https?\\:\\/\\/dioersejdgjdfjghdfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "eaf780481541908d25b0137c2c240e9966b7b0808ab2c5d7b843bf48a5fb98aa", + "regex": "." + }, + { + "hash": "fd143fd47d814a5ed4a97baf952395e808b1e45a18c6e0dd756022764b72a140", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "6a70ae78162d17476a6cf8aabf6f825819eec2c5c8cd4bc54cf55309ddcceee1", + "regex": "(?i)^https?\\:\\/\\/ehgaqeahgbd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c3404af281c04303c392f13dcbbb9304f6816be0f2e903f22f55d5fac533deef", + "regex": "(?i)^https?\\:\\/\\/wxaxasazaz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1134e6da4dc2ac3ade96aa2027bbf81229c6c3b3e31bb67c55708c860b8606c2", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "adf67b6f8d919172fc92d8e359bfc4ec9ebbc4220ac5ae19ffc3795356006ec5", + "regex": "(?i)^https?\\:\\/\\/nzerbedjgfdjgdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "94b674e626ae267cd443fa49f3c942397308ddb91e547fb9dc5459c6ee096e92", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bc8397e7c16a4b74732b8291a9ad7b22d44c143955ef393cae77388ae8e69181", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9182d561c0deceab54fa4b4c658bec8783f519cfa3e0636daf6adf48996fca27", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbdq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "88abb0dd62b68b9acba2dfd8ffbbb31648d02f0267561f579ce830df5394ef35", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2328bc544c6bf66ad8faf8e6835f9158c90085f472db6c196bdf7e8990a918d8", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ec83cb672906005daba6192d20bcd48918e2e7a4174ffb3f6da600085f0964a8", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "24010b6890993f9446bdaacc662994717f4c98dc08ce8889ed7403c0d7df1cf2", + "regex": "(?i)^https?\\:\\/\\/espace\\-particuliers\\-clients\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7153133a37c100f7047a1fb061c87d275d49f84cae8b7b3fc07ded92e9b243f6", + "regex": "(?i)^https?\\:\\/\\/cliprushhub\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1df5747d0d7e32808e48d9ef7b6a6857f7643ad481e1d36bee05cb608534591f", + "regex": "(?i)^https?\\:\\/\\/espace\\-particuliers\\-clients\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ff861a7d82078ce0a348e6da75840b2c737e7554211c3889d0accd1311fa0d7e", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1687f757ef42bd24c98d6e2053dc28bd1f4b80ce7189b9e0f8d2ca1f81b5f267", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqdhgb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6a67bb0eba0093a5539ac9f58a228e4a337f058eb1f743467175c8830a3c6625", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c835a10772ede8172117b2e054578e77746afacfe952548abe158bc197b27909", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3dc841023044dde4d3b9066274493c0c323fc625f835f4fc1d479b0ce3a1be45", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d77bee2fa8bc92690281b5a08a7e0c0300fd32b37321bf7886f2e52d52bca20b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\.php" + }, + { + "hash": "a617bd08eca7921a8e51be80ef3c1af896b06c0cc33c6411a5b6f60e6aceaf1b", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "59f2d6279d6bf9e6bc980856887a00e0957694ff8938e1ec2fecc07c62c26005", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1b90f51c074f405ad99fcf787a81d732772bff7d8f698b68f12aa5b4d4a741f0", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e78d3f31949aa0cfab84329307d9cd585460f7437cb476cf5ea46eaf76a1e913", + "regex": "(?i)^https?\\:\\/\\/cliprushhub\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0fd2c68d682ac2bdf82adee8381757eb15159b7e486a257a62f21fe3c976e066", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0ef14382f8e7018f5c77e12f71829c25f96282f0916594067366fd4a4cd0327f", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a4cb25877c0e5005b023b6a69c27dc8ec08f0be0f233772c4a8a51ab37cd4a80", + "regex": "(?i)^https?\\:\\/\\/detrfjntrzsj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "35c2500e96a22fdcd102ba5e019a9521e40a0d4cbe2c5d7f717038e800ae6776", + "regex": "(?i)^https?\\:\\/\\/mkalwwkkee2\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7ccfbf9658f68f9dd4b25a7e070c61d09062d9e24caa87643df9abe068f2ac6c", + "regex": "." + }, + { + "hash": "773229e5e5836bb7c556d01add9f029a1a2575900f106e18ea3157a47d95c72a", + "regex": "(?i)^https?\\:\\/\\/hddhdhdh88\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fda1615b75b38b1b7d9e67d79e719041ae2d620347562fb86f36e630531ef4ce", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1a8daae41610b89a7dda2b6d8c9ee586166f1017d68e2fc40bec409cf90a5062", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b529bcb1bd65ba7de509f77ed875d024c95be62f36b3dd008bcbf72858efd76b", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8c2384f7176d2486718f1044ed64965ca10265bde866f37098b1c06fef2458c4", + "regex": "(?i)^https?\\:\\/\\/espace\\-particuliers\\-clients\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "aa8bdc225bef207dd7ec8a589255cc2d5a4a416d2e9b7f9e852c3ce63b29edd4", + "regex": "(?i)^https?\\:\\/\\/dioersejdgjdfjghdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "defd7d9365ab8041f4e4f55e039e58017f4cd7c33840db553c6183a1f89c78bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b07f14c3f77e4b93eb12e0f8e1eb08c9006ac64c9f8c381459925cc314913905", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "81338b8151b8411fa73d41319a36cd370d53450cae9b276b41abee65225e82e5", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3943c7b378ff3c3df845d7908acecdadaa8cf1ad41f97f500320c4f349e35926", + "regex": "(?i)^https?\\:\\/\\/detrfjntrzsj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e0ca80fcb7fde70aadf7c47f27ed64e74764fbef8a493d0fb1254e7798273de5", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "945be8339a0949de826e6f46033922dd131911f9543147f949c81ee9cc06615e", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ee6dc0a9a11cbea0ea79ab98616f15230d6672bc08718b2e44b7b052a4bd5527", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1a4cb472e796a1d8365087e3eea7cae72d4a5ae0e16b6fd0eb5196db9b3aaaac", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0c19d491ca104cde05dfe74c858e5e0ca7bea26570ab4b049a54c65eedb935e0", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ef416536e1c5102300d10b002b3922773187e95de21adc6d8c6567583d144558", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cddf00eeac04340243513fb307be11193eabee2e75a2a9d3c5caeebaa0e82793", + "regex": "(?i)^https?\\:\\/\\/hotshow2024\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "394358a74e9aeb7afb1fec1cdf9a09ce5a809426c491711998ca4b60206eb7ca", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e8e0ac41198ab41ee70b33bb137b229d1cc7dc049f83dab7824d5e9c57d5268f", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a4876accce5a7275bb7d191012b4f2c4ac1cbfe41b244f9c5d82b70417efd6cf", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2a783830a64c4424b8a058b0cb0beb0a4341ba8ad2f51eaf487fdd6a0a592efb", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "08a06debf71f82473e6508913057f8423a20579a7040d322586d0a362d24939c", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ad3048d9cabd4ad3943caee26bb5ba77eb6c99629ab0326e9ffc4f026d0aa0c7", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9cfa4185353dbe53aa17e6789a180b4a68170fee7867ddf1ac1aecdb5d68d5d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s[\\/\\\\]+b7cxNtItCw(?:\\?|$)" + }, + { + "hash": "f6e916927852cce09332b420f601de00155753114b0dba2fffaf2745375b9445", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "df5d5d5fb6d1db7e768d39619417321c673a442cc39cf21b0605b7856a2dd9a5", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "66df353e10e65bb95d9280f1a79891795c326dd859e7ce549389c6f6b427f7a5", + "regex": "(?i)^https?\\:\\/\\/qehgbqeadhbq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9029e072a0ce05fb3bc0d93b6aeadaedc197655ad6d83ac2d19b6863904a0ab2", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "93d799bf481791ce2494cad52017383f612285f2271697dc73f6f55b728b9ef3", + "regex": "(?i)^https?\\:\\/\\/qeahgbqadgbh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c0412b6a5651c3947033c1dd9af5fe518386ed70efcd6d279c0f816e527ea88c", + "regex": "(?i)^https?\\:\\/\\/moonrunner\\-lunartracker\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fb5cbac1e3719fa9f5943bfe2656d4083f28972327d0a315b89552a47bc4aa47", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bc8392fe1cc9f81324636df928c366b458bbd4050beb98c0d90d1a5514e0a6ce", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "31ab5808c99807a0365019492b9e2af855eb493c4c66d2ad215d50407871db63", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6d862294e2d1e5fee7e0c2ecd9e2f7f8bb87b9830e0be500123d0745d06131b7", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "45afb6890fa642d618807aebbe6f355f93548755d9c596b34cb24ccf4a4e4b09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html(?:\\?|$)" + }, + { + "hash": "d0ad611f34ab2335506acd0b76f4714a05f12a1e2d4f9e22fe514163e5d56721", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6af8ccb4acc41053c9e50685d0ca5f3ceafc037455820721e9ddc3a4cbbfdd9a", + "regex": "(?i)^https?\\:\\/\\/edhgqedhbedq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "591d4069d0c5122d6d97acf627552df29a085fe11ee7ba9e24b4caeddad849c0", + "regex": "(?i)^https?\\:\\/\\/dioersejdgjdfjghdfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ac72fb11b1198416aa51095906c2230cd2ff8193aaea5112398040b011ef668b", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbqeadhgb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d71383dc3a4031761a0102d5b3bc41a647e3c3a85dbf80c89a937d8c5d2520d9", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbdq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8051fef860ca3e3d666a7a8825ad01611c3099a014a9dc7813c6b574aae938c4", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9bb54f0f78bce6e6077d79259fbb8c9fc4e5c3ac351ca560c5f5fa9b2476a163", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e5b7ce12806822e2def5c5559c779f2b3466ea2ef6ecc97dbdbd24a0aa8b360f", + "regex": "(?i)^https?\\:\\/\\/najkw22w\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8f4cb362f6a690c9d0912ca803470fa0e9d8d41150cb001d801ee7453befe213", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "32b147ddf0a8c5a9369dc41751e4e707e0e7e6a4d206ac588690715cc42241f5", + "regex": "(?i)^https?\\:\\/\\/dhbqwedhb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "490000a603b2fec985c7a6f877ea0a5993e986fd1922d02b5be066cb232ceb9d", + "regex": "(?i)^https?\\:\\/\\/gadhgbqeadhb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "bd196668c796ab38646dc38204e33502ff7d54845f8c9febe117bb16792b6d37", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cf895d3b0e4c29095c0aa5250d61e339a3f1090a40015648e37454c73c37b2ed", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b17f0a35ede680c1d16e3cee8895c7f0cb5a65f99c112cbb9044eb4429d07671", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "45a43cc3c9f122959e935affe41b2ed5cd8278b815269f552d5995e4c35de91a", + "regex": "." + }, + { + "hash": "cf1042759f7744b1c547bcb56f947a5763614f3bb17ee56b03249a09746ddef5", + "regex": "." + }, + { + "hash": "2d45dcd4efa44b25b1ad705b25230f8f93c9de05bccd9b10f7ba4b1a77982dd7", + "regex": "(?i)^https?\\:\\/\\/qehgbqeadhbq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f0478ee1b89693f017470b510f07010a82c1bb63e01358973675ece26e8fa1b6", + "regex": "." + }, + { + "hash": "7a53a48d8c78884951fcf6e16ec3abfb479988eda40810a03a437809ec9ccfa6", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6def3f4dac3465b7aee418e8d8b08aa72e3fe78d968ded0ac7ab98b8245b17fe", + "regex": "(?i)^https?\\:\\/\\/dhbqwedhb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "94e5c48f65a9ccc4b199c3149a429d87a7feaffccd0f5386f1ff93a665e39e7f", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b5bd7eac66910a142cecde12dc40cc8f3511838945e9efd7fd1cb85c20a4b598", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8e5da7b7c071ac5dc3ff833afaf8b027578f2d6fc0d2105c28b851ada2b979ed", + "regex": "." + }, + { + "hash": "d7fc748cf038c51568f0be4a416fb7fb05837525bd09c16bf10ca014a2d843d8", + "regex": "." + }, + { + "hash": "a9657ab1a7c081db5747d15fb0729b5b734799d08eea6573934d791ea44ee8ef", + "regex": "(?i)^https?\\:\\/\\/ndftddgjfdjgjdfgdfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "45144bb0311707e37250f343e2df718973c86c528d5519cb8518712da8f54756", + "regex": "(?i)^https?\\:\\/\\/ehgaqeahgbd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b85b647895a86a92277b10b026d45fff4a4fbfa3da7032fe946dddc8a09d1b17", + "regex": "." + }, + { + "hash": "6da1ddcea3b92f12ab8935510ccb7436927ac2277c6eaaf41d195ecb41b6afd2", + "regex": "(?i)^https?\\:\\/\\/qehgbqeadhbq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "727b080f6a153e579d8e080a439f1edc491816dee86465d5249e6cb7824e2a81", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e32e5e5cf5ef89010255cd4b25dda0917ac6570bdb9ee7de8fd50404343c962c", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e7c5daecd8efbdd3879870e9985b0f12855968dda2727044bb9847fea36e8a35", + "regex": "(?i)^https?\\:\\/\\/qeahgbqadgbh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9dfe95b8cf481e03a58cb5253759c1bb20778c855a2c6359e62fe419cd156f6d", + "regex": "(?i)^https?\\:\\/\\/qehgbqeadhbq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "325e8ae354e2884009a5bf342fa5147a970ddb4d95c04234d6d83c1c24969882", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "737b2498b69d66e00dbf1db5ca30b19795533ac6e7d149a3a103658e6f9c34a3", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "17e9a8c202ab14ff56e8bd6e1e3e5edf4bfc39349beae4a9bb98c8cc7ca26243", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3ed5876366a80f5148b14332dd1c9b75e072cae59901c6f17be42ec86bd3b55a", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e5e73c1abb370c2c06951f5cd5dfd394eb3b5ed35ee06ad00d757554ebeadd40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38712bcc4901c8bfaf3b7693b84df7b76177e7caacea342c08c36336bf9ad12e", + "regex": "(?i)^https?\\:\\/\\/nvetndfgdfgdfvb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "420a6f4904f0bfa20ef7e1b9031e5eabc6f2249fb940a622a3bc7890552ca946", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "07f9236c62717a041a73c7ed0a2609a260fd61bc41a567ddaf087a9fc75676ff", + "regex": "(?i)^https?\\:\\/\\/qeahgbqadgbh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "686ecd64ace5018740995afd5dade7752704cf62129141375a55e54bd251672a", + "regex": "(?i)^https?\\:\\/\\/hgeqbedqahgbq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "15cf66e3f13144b81fc8fb30e6a6b8dc2f9ed24a11b240b9257630f46f46a58d", + "regex": "(?i)^https?\\:\\/\\/nvetndfgdfgdfvb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d0c8c213baefe159eeafb1c88d5a74b375b3f507ffc93ded8fb54f276e52db47", + "regex": "(?i)^https?\\:\\/\\/qeahgbqadgbh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "aa67e45cfdc6a29b8d4125e64186dcf2d9a0c845046e9d5730dce78de6f8b1e5", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "13a2857aecbece0b940c915c51a6efe93d4c21ed92bc34c6aa54f51a60cddc84", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3390bd7cdd25c8abc7f908ae4d90844c59f43f23d97186adc1e4a4c8b9307ec3", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqdhgb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a29a1e99be005e5712f881d7c43f2ee21e30d350727bbf558b6a0fa8f7013a46", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eae8e826b726de6b3328d207063659e10459acb02e0fd64936829d5d14235083", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d0c8baa457051c1975627a77e72684bafb6f75046ce4659bfc15dfb1ebe3ab65", + "regex": "(?i)^https?\\:\\/\\/najkw22w\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6b94f271588540b2dbf7fb005de6b179665a7a61a5e1a1c4fa711b3b8c3ca1df", + "regex": "(?i)^https?\\:\\/\\/qeahgbqadgbh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0fb5e4da17582f01d4ce6eba12d1e986fad106b15768c823c29aae355a4364f2", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0365a7380f80191752728bb5d1b755d7b48afcdadeb69fcfbe71a24acda59b9e", + "regex": "(?i)^https?\\:\\/\\/edhgqedhbedq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "862fb6af96d03ffd689d0d74400bcecb5aa9276cbcab6ff194a92ef027f2adc2", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "835c89a74aa621842617c2ccd71658530e575adec3c44b35cdc146424030f52e", + "regex": "(?i)^https?\\:\\/\\/ndftddgjfdjgjdfgdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "57ba803cbadd3e17583ad8dfe6a12d32af64db544fbfdd848145654b3254fc7a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+LOw7(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d510ca70bbc2f0ca5696f56559e95889b95c4c2a367a990dfbac4771842d4314", + "regex": "(?i)^https?\\:\\/\\/getfreediceroll\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3d4b34ed60bb06a015669bc13a2f75279b6186c80867152f53fa7ce237ab4150", + "regex": "." + }, + { + "hash": "c3825ee44d57beac2512560187143d3fe0c66e4fef09874cfe9181bc92a21aa5", + "regex": "(?i)^https?\\:\\/\\/dhbqwedhb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a03219ddddb3044f6f5a2708561a4756c899aa6ac292f51d25938223fcc31710", + "regex": "(?i)^https?\\:\\/\\/cliprushhub\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "40ff1d36ac6c2a186dd313fff0099b47dc954466707df24bccbcf74d434ed7a2", + "regex": "(?i)^https?\\:\\/\\/distrosourcess8\\.sg\\-host\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "438838f64de05971176e84be115d85d0d862bc76576e47fb7cbb3b095ca33895", + "regex": "(?i)^https?\\:\\/\\/hddhdhdh88\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "916b2aee8fa7031b62d3b1cbdc7bc6cfe9dabd3cb004892304f1692c491a1398", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "151b274c55fb87012c80648c6d21e93653b6fcf0e93e81d942b84113d3e18a3b", + "regex": "(?i)^https?\\:\\/\\/dioersejdgjdfjghdfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f62e774127b5de73c27930cc50b1ab381931b192c12aad98d81f6cc3fe159571", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "316997bb24b8f07d84ef6ba9180631a9b709e71a1c7da4e42067d97b831d24ac", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f131f0946a806f00a1c48d92f2582a7a8ce7ef775f72c5d3c92b4c1e95cbdbab", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqdhgb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e46aa7985fcec71e0fbabe8dd86535d5ba0339df002222a1d6528d365491e60f", + "regex": "(?i)^https?\\:\\/\\/hgeqbedqahgbq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f4d8a4271c73abf8972abe89193ba910e77f8fe160e1400032a40593cb11879e", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "313e798f491ddf08c8dd0f91d9956328dfc104bd12575e80c0e0c1ff1fa9bdad", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5df58193a2777a45004e59ff7907eb777cdf0b0ce851c9e27c5b9321f2b6436f", + "regex": "." + }, + { + "hash": "f68d436fb14979f41ce61787432e275f7d0d2dccfa41f1f3af5a05af37fc7e1e", + "regex": "." + }, + { + "hash": "e5d96add22af2e14b85e781263743ce11755f75a06bc7e382ce03e9227fc6744", + "regex": "(?i)^https?\\:\\/\\/bqeahbqead\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7ffba885554c004bfbf45c36d768575ec65094c5606fe2717fb9d643c7355196", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "164c34142e86367f662ab5c45ba7edc49ce38f29d6599989517c74607ff449f6", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbdq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0f6db657a711a85159b9771ef57db5ad46d1dc1a00b21eb31ed5224c4f58e70d", + "regex": "(?i)^https?\\:\\/\\/nzerbedjgfdjgdf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "687d94ae14445896508f5d9d30104eebe04091503a79861d07d78da83d1b4b1b", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9a255f5f7dc7067c307308fd0efa63583d9fda1d12d5f5c8914608cdd1e0111e", + "regex": "(?i)^https?\\:\\/\\/ndftddgjfdjgjdfgdfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3f84102939e81c93d758c29e442ca8847ab584ff0cfa5e51a2185e22b39306c9", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b49027e170ba7a0dd1c729cfef64a8921ed68947c8b3e591b7eb5e2999450e0a", + "regex": "." + }, + { + "hash": "7690f5fd8fce773db50bf3a2461056c7208c706469a34c7e2ea8b482642317e5", + "regex": "(?i)^https?\\:\\/\\/www\\.ipv6\\.45\\-10\\-243\\-105\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "09b31125f46342d63a9b8260f51c56d7dae6a32c11500a3c69cb51f1063fdd31", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cd21da00efb31a7e32fd954fe2fdaf4aae294dbf753a025bfa8d5b3b9060926c", + "regex": "(?i)^https?\\:\\/\\/bqeahbqead\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9ca190066398a31c913b0c8ee2ebe153e65ded268d0113b433eb3893fee9a620", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "813472a6b3c78c04ecfcf03fbd8eaba9deed06a6cc56a96ef5a419ea12b70413", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c21f0469ed5ba2358d95419dc42ab871a90a7fd66634467d16ecda4a0875f930", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7ff5caed46b2980eb1a02702d1d3dc2314470c824aeda7360f115356be1e3949", + "regex": "." + }, + { + "hash": "fd2e2aacd98ab89cf571963dc422d8ff71495babde80900655887feb31a82942", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "26e59cbcd88215cc0ed3a2f1cb70c4b00e1a2793b625bcc074d82b890ab668ab", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "84d47a2e9d112809848b6732332c099350121136e56d945b569e345fc108c1fa", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "03f2ae9c2532317712661af9cdfbfb7b95e5a2c6d52031c8e5b8e8abedb5b82d", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "957e0e307607390f01ff471fd0955715f8500fdfca200acf026067f4271d4228", + "regex": "(?i)^https?\\:\\/\\/zingor32\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "019d32c1b3b9e10f68df17ff590a45c6a29c86655da1c7a00505d9a3aabaf285", + "regex": "(?i)^https?\\:\\/\\/robloxvsco\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a05f71854e26e3d387fc8a380b40b254c1642eae8d13cd16f40669297a3483d7", + "regex": "(?i)^https?\\:\\/\\/robloxvsco\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8ec0c819c79ecc11b71ebb77f3f3c38884c2a50e154d41d48ee5e2a6ae88c7da", + "regex": "(?i)^https?\\:\\/\\/moonrunner\\-lunartracker\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "707903f3de6937adceb592d761ec323b037432443884d4aac329cbd8665d6562", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a41971d14e87757906bd709e280109bf19c3e6050c68efda682d0f31357f6804", + "regex": "(?i)^https?\\:\\/\\/aqeghbqaedghb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "76427acea6ce431c8dd649da7c02849f8666222c2d9f6ab046eff5a39bad9985", + "regex": "(?i)^https?\\:\\/\\/nzerbedjgfdjgdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1dd9eea05a2473502027ebfbd49b8335dc2177a0ef08fc2f7168b829dbe67cca", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7f6ccb05b4491516bf358753be8d7fbd1b53fadb3552005900e8a53da290c1d5", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e9673a71ab7fd35f681d7a34bddcb197343df3cbf45af7aa8ca22659de51d486", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f4536a835a41194844e44fa65e0040b0c2288ff5feed036a85245aafc66aa715", + "regex": "(?i)^https?\\:\\/\\/jj5\\.tyuyuiui\\.dns\\-dynamic\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "e536a5597d1adbcf1e26cf00e1d20e34c07370fd93e6460aabeecef70edfd8cb", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbdq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f617d0de5559ba0263de8f4a1e9ea527c0a26ca12dc66e5ae5904911e030aa51", + "regex": "(?i)^https?\\:\\/\\/robloxvsco\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3fe20f4bbbbe03decaafdb66ad21ddb0d5920e39ed710ec3e0615bf6a2749e89", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9c63e69ed1bb79f687a22fa7f1844038b488d393ec0fc59214634b058e244248", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "99e33b132a0a4404086a1d7ce272e0d1f8b736a1d3ff31e835bd1ffe4ab8bb4a", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4d225c76b37fb075c780c900401a714e60af49a8bbf0c0450296df5cf8642ce3", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "46a70ac3debc01017292147d6def094bc852f3819b6da9549f9b54421d688dc2", + "regex": "(?i)^https?\\:\\/\\/cliprushhub\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "aae4aa1865755571d5b08a0a07e67555c5f0fadc95a01f8227b766d39329062a", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c43eb8293dadefd146542ef19f6731d06eb13677e2c98f006932d9a4823a404d", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "466282ca8f3cf4a70a16d3a605b35ead1f65cd17af58bf9a25fdaf6d1d178c5f", + "regex": "." + }, + { + "hash": "f5c11a4a29bee49ffc6c64204c5de7d014254ac8b30c57b40250bb8691983eda", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bf0c9f3bb549ee89b4be34f0fe7361819e0e734512ed23549db177fccf87f536", + "regex": "(?i)^https?\\:\\/\\/detrfjntrzsj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a3b7a01eade56f188bf7829e11a69d24fd5fd0c6ee7b457dd31137dc2ae1e096", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "75263c8e4b29f3b57e0cf5fdfe1aab60d53c9c2149cf8d9a12881954c84aae8c", + "regex": "." + }, + { + "hash": "089544b2ea4b0398804480f8d90b4f8841ed80a2bf7b80d793e6bb74f2feae42", + "regex": "(?i)^https?\\:\\/\\/mkalwwkkee2\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "89a9b5416726189b9a6a8871b9fbb33d78756c5f6b5e98a588b0b7b371629fb2", + "regex": "(?i)^https?\\:\\/\\/qehgbqeadhbq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "db5e685829edba4f8afdcdb25d1d739dd841c5d5acb496a9ba0e2361125dd805", + "regex": "(?i)^https?\\:\\/\\/qehgbqeadhbq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "33ef4418df6b84332ade96466fa9c15f8e020e3eae8581382f5698453116ef64", + "regex": "(?i)^https?\\:\\/\\/zingor32\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a4b29fb6fca42df3269fa19005c394efe5a713f1b564c4d1fd8e8ff65f452626", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8ee1e11f2ade95b3e7c06a03450e907028939ca754fb3bd64642a5dc3754a7f9", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "20f1baa2e5b8f9bb2e2db1ba6569889ca5d2c0904b2379010d8bd33d260cb78a", + "regex": "." + }, + { + "hash": "0a49af53beb06ba94fb07618a09785dfb09ff354a5ebb1080d84ec577ef5e376", + "regex": "(?i)^https?\\:\\/\\/bqeahbqead\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "da0350b8194fc9364994ade279041b212608374b840dab949c0332fdc85830a4", + "regex": "(?i)^https?\\:\\/\\/nzerbedjgfdjgdf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8ad4e5b344a5b0287ca41e89dad1e8289629bb9ee3523e4db5ad5fc2ef471618", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "21856e189f9d37043a7be0fd2e9046c10f257406da61fcebba585570a03ea570", + "regex": "(?i)^https?\\:\\/\\/hotvideo\\-tiktoker\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e7497700e6391a920b8f2894f6534a088c7e6462a51e8117239c5059e7f58143", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "120287c7f354a5699ba4007ad9432f40d0c7b39b96e70bc1ccd2dac5fa4a9af3", + "regex": "(?i)^https?\\:\\/\\/zingor32\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2c0b8ab8b070b7ca8755e30e76d7ad6b593bddc845a3ddf426f7265bbf2e3cae", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "27286ffc2751d81da5bb984a9e2931623f7ad590a63668a117b9f8a28756d385", + "regex": "(?i)^https?\\:\\/\\/zingor32\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6d9e1aae67aef903e61ed0516ac4b201547991df594b72697ff6e8e3e863170f", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbqeadhgb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c22d494b7ce3c57f13ece1850ab703939e36388642b80bf0a00cb1da155780b0", + "regex": "(?i)^https?\\:\\/\\/zenrtndfngdfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b93b9fd199891642878ac78ce569812cd5e34fe3473630404d9e1a7abd1f1fdc", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbqeadhgb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3993e56e82f616614d39b059778896aac0033a93b43ca9869f695b0219b2b493", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pazz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a761dbd3e3335f1ce5fd1c6325db38a2327284ed2adcb59ab057b8c2124542e6", + "regex": "." + }, + { + "hash": "22b9a0bedad7de692cca38945b8e3b33e226ffd059170fb57a224eec96d693de", + "regex": "(?i)^https?\\:\\/\\/aqeghbqaedghb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cf27420f0f80e3a1cf667a0b872517902534d9d997570fc309891b33f45a064b", + "regex": "." + }, + { + "hash": "b610fa55df6144d320e61c802eaa195d7f532c9788c7e10cae33dfff28681c42", + "regex": "(?i)^https?\\:\\/\\/ehgaqeahgbd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bcf4a84dfcfb2cbcbf27382dcc445871c148e5a6d55a77192b04fff21dc96a87", + "regex": "(?i)^https?\\:\\/\\/gadhgbqeadhb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "643733ca25231da4028bee087b20bb2aec0a748fec8899c4a2f5de419ffbda64", + "regex": "." + }, + { + "hash": "74ed0ee166899e96bc0ed5756ce896fa96426b59fef41c8da3798174bdab1a0e", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "98e10cac6a23c12c034ecb665026ea70b7183342a498d9f281b8119dc4f5cbd6", + "regex": "(?i)^https?\\:\\/\\/bqeahbqead\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmaPiFQzPuXoVm2yF7ujkHKMUy6aoUpMLGzmNEDjeL4iKN$" + }, + { + "hash": "b2469b07fa1cddeb3639f1a9aaf088410b66c60b1d07dfc327f5b9038ba49fe1", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "08c659f0342214d6e163d44124a384514eb3ad493a838e5bdfadad690d576f00", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9b5772fc8cfdc2e844a70afa9948c992f501a0e40ad23da6d82b95bc0d92e634", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f1334ae7a134a8fa9d89c8ea874a0ca8b52eeba6ea0c11f032e11e28e497d514", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6394cb79569f7e93dc736c91e3ca71b0e5b2b547037691d2821ce861e94f0b13", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e8c5e29c27f774bd563b65f5525943a84bc4aeea2cb22c40fc66a35df9edfa56", + "regex": "(?i)^https?\\:\\/\\/hgeqbedqahgbq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "94d705b1001374701dbda8eb2e04c97705fcee668093aea5d0080927b6acb0e1", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqdhgb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5f00ce35fdab8d971284d22efc8d01bb785a5aa4479eb5aad247df1e4c8c026e", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmeUJDKHHtwyzzzq6rEGh5Qiao2pfYGVDZRW9QWJrd22YJ$" + }, + { + "hash": "59bd685320d1b7f9150e2b7d5951dc3865085c321fc81cf21e97ed76d9e50c00", + "regex": "(?i)^https?\\:\\/\\/qehgbqeadhbq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1a4923f706c6b7b7355fcc7a7a88121fa06ef9d5f974f0dab999fdb448c538cb", + "regex": "(?i)^https?\\:\\/\\/wxaxasazaz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "da1870425641e38feaa1baefb291fedd25aeedd7bb9da8ba6050fc7fbefdcef2", + "regex": "(?i)^https?\\:\\/\\/zenrtndfngdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "69e4a230103f4556c7fb002810f720a515069d3526ce725b4cd4d69e8fa717b9", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bab0e989b1727aa5def3241c57bfdbe8ed3e4146760bedf771784699a59fdd8b", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9a588ef2f9598bed33cb1b3e34d69bc9a23c977f0735af7a437d0f3375b3fb61", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a484e10f50e73a9b2672b453d705f38f2581ddd80bd05717002b433ece4b30e8", + "regex": "(?i)^https?\\:\\/\\/getfreediceroll\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "eff4088408673e95f436ec7f8f78b91bbd992a2823d701a716890a28a979a8e1", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ef9e95486bb6113029c8090fdb7ee5159d050ae918a44f8cd490357501bb0c53", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "71126b77509ccec0e8192e7050e542d4e894a67eb461ff8ca2549f675bd4e715", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "87a1aada59f11f159cfc3b813fd39a273fe4ef68e9c69a80ae82140e68e01d21", + "regex": "(?i)^https?\\:\\/\\/aqeghbqaedghb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c2787c0dc7272768b706bf75c1a35ec815104935e506c3a6253f0bb9ce35ae79", + "regex": "." + }, + { + "hash": "7f6cb628af84a18e664a9c1102a177ffc587ecbda7c063a2e233bdee196a41d6", + "regex": "(?i)^https?\\:\\/\\/robloxvsco\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "93c688896777dcb6f4a23f509c7d06fea9637d87b9e4ca5e2292171381188993", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "56e5cdb2f3092244a374b19720c4af96da7742a0a3f667c04abbd37841973ae1", + "regex": "(?i)^https?\\:\\/\\/hgeqbedqahgbq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b92a589e0fe672cce36b0452a5f3b046908a38cd1771d46f7e87a0d2762b5d86", + "regex": "." + }, + { + "hash": "e797d9cc185447ef8865ab57690e7babcb5a53f06d552db54364edb87b64b370", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a0c0167cb4723e9d5bffd114b6d5b1359928bf540562feb29251163e6c655617", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "94115320a63e82f8847bcfd7302d63b975a3edde994e5a47e416855fe6855922", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "547fde90effe9167cfb3a5c68f17a693c00ec7a42f7e31e35016b7e1ca0d6324", + "regex": "(?i)^https?\\:\\/\\/getfreediceroll\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0c5fc9548101cd0c31285ea26ec127a65696d83ff1928eec8588eba784a9d727", + "regex": "(?i)^https?\\:\\/\\/mkalwwkkee2\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c4e70765e10c6686653d2de3c7504c58739b9460acb7b0cbdb369fed2cdc0057", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "aefeb4a81f8694529e5c81c97a84d2a74037d7a01ae2288f7c3244b121798928", + "regex": "(?i)^https?\\:\\/\\/nvetndfgdfgdfvb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fcbc635e015c92baaf5b0dad1708d461d5443e9d70e56e409317b233d115d16b", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "77e98237c356a587600a0179bf0dd9ad3183d2caa4899bcfc23365d8531ac925", + "regex": "(?i)^https?\\:\\/\\/hddhdhdh88\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e42d53118db387676a127230736429ca36db5164222a64a3439498a314e4c1d7", + "regex": "(?i)^https?\\:\\/\\/zingor32\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c9cc7e7777c0c0193608d3297fade774e201e63f7d148ab1851b3dd695db0415", + "regex": "(?i)^https?\\:\\/\\/hddhdhdh88\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a7a611413c7522d9f343fc689585c9caeb17dc2a8e8f682c0d8ffe8b65c2a713", + "regex": "(?i)^https?\\:\\/\\/ndftddgjfdjgjdfgdfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2821949418d7f209e8f8355c51d37b3b76e0358881b5948a70c6d691592f8fd5", + "regex": "." + }, + { + "hash": "65e6444978b1a3d856df7e57ed8f887e77f5e7f16d35b74c48f91ee862f6cc08", + "regex": "(?i)^https?\\:\\/\\/zingor32\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bc073db22bf367b59ff56c181e1281a2666a0e1e8b6190677c520b5694287620", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c0a0a38a38747ce64cf633efb3b76524f36554312bb1bdc4f382d6c91bfc3a50", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a0320a59bee5df8c05e66c319d96cbcb96e3e534154f22f7df01400980b3d4a7", + "regex": "." + }, + { + "hash": "697bd0e4cc5e154c287b75403e842099f2f01e45c885eaa667f243b9b91dd15e", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "609c47e91589f7cb891c1d3c8035d4724a248e347595157573b73e4479b2f39b", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d2d3266e3153c1dfbcbe379cb644d0da5a5a974d530a907221af8d34a0ba6613", + "regex": "(?i)^https?\\:\\/\\/espace\\-particuliers\\-clients\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "38a8b337b24d9efdda01da77e15f3d347027ece5cab21bfde01a202182c81414", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fa01cf56ca1ad11f47478de1c01d3c7ead21ebfb818d4cb35a41677a85ef3537", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "97fff69f5fea007a88e78c5a3e250bbd073e5e493215b31f68e6ae06f61ad2df", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "113460982bf34649ccae006d6b0401780bdf5caf242c35c7ca76322a1feb3e8a", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "96584268ea08b11d1e004c5c2c1b9fb0904ac937132f3f48e98c735fb06c2c1f", + "regex": "(?i)^https?\\:\\/\\/qehgbqeadhbq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6ca16d847992d0fec05e7735aeb981e0b4f3d37ad8f1acd72755c29eb7ed8965", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2545a22630a04ad36372e032c4aee80f6ddc3cd91d7edeec1e70526c7a2b85b3", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhgb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7d4759ab0cb5de34ed3de50efe908821fff1d3c1973129475d2669d37b6ddb2c", + "regex": "(?i)^https?\\:\\/\\/bqeahbqead\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d4a38dd7e0f07b3f65185f3a4b57a729ac6af66712fdc0e1af5f9a5779aa7609", + "regex": "(?i)^https?\\:\\/\\/amazon\\.bupuxddmms\\.com\\%E2\\%88\\%95kxzupocubi\\%E2\\%88\\%95qxzzujulg\\%E2\\%88\\%95vvhtnnt\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qnpdigeru\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "46e81f05643ca60c2470d9d6b106da3002266f93ae5fe6b23605de03abea0aa7", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a56f02056e7b95d14163f8af7e2c4dffaf5dc2ce599eec45b02e1ab7728a0", + "regex": "(?i)^https?\\:\\/\\/cliprushhub\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "180dd91268382d59b18631a9d70aa1e5081e4b189515332db83049917ac1646e", + "regex": "(?i)^https?\\:\\/\\/ndftddgjfdjgjdfgdfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2ccdcfe8adb990776957ae8ad10f1b7a7b37a24ccc841636aadcb024000a295c", + "regex": "(?i)^https?\\:\\/\\/beastfreegifts\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b96a8ce65b0c1897f5ef63b94e3e34cfd3b7c5e4502bbf60d41fa4f21918c4c4", + "regex": "(?i)^https?\\:\\/\\/mkalwwkkee2\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "dd355af02e83d966e05391e3e6e1d0dcfaf12a0b08e0164627e235c38888a75a", + "regex": "(?i)^https?\\:\\/\\/hgeqbedqahgbq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4193c32604b8a6f437c561bb55c530c16a5d1e2582addfded2c29eb5331a04d0", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5c50c73f64c4a6d6af252780984a8a7e1c36051a8da93079b7e1e4f39cbbfb9a", + "regex": "(?i)^https?\\:\\/\\/espace\\-particuliers\\-clients\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2aa25ad9969e4d59d687bf9771f476ab6ce8525f1885138c108ff1be03fcb641", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "23a3e86fdc95b68a31cfdf5dca3c55619386c797fa35c3b72ec660c736c9c75f", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "aac6fb60b83c328a028873cb0b4a6527b252e7d73a59cf832f806f8406d5fae5", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "75475e794507a043b35037a7e320460e60098c85bea15026b9409194d3e2494d", + "regex": "." + }, + { + "hash": "4a490b3383379ebbc90f5168041be1799e11b407e208d8c0c0439141a60d8dcd", + "regex": "(?i)^https?\\:\\/\\/najkw22w\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ed4242c23a8506388df3da3a1b1203cdcc7f2d46ca4fdfdb4a192ed0e5a5c0e1", + "regex": "." + }, + { + "hash": "b5ecd1d1f1d3c007ea2115e9389ee724f647ec105deb755acd3c53dd1637ad65", + "regex": "(?i)^https?\\:\\/\\/dhbqwedhb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fb1bd43808ca859240c3849af856027ed49490b1e8664c5295f0d1b81e02951d", + "regex": "(?i)^https?\\:\\/\\/cliprushhub\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a6c3cd29788e16a358792a9f2ae6754d31011f61876dd52b4d633d0447d77572", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9b110373170b7784635f8d74500f4ae07368fe391d9ffaf4ce23102ee560d4eb", + "regex": "." + }, + { + "hash": "e5da2bc89d0e0f02dd79b67349db7d9fbefea41c8744f98f010d30aa3968a3c2", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "44ed04bf79477540f8de67ef162de3631ae862b2935f59efc22b5af25d5dc2f5", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "23e09738020bd12b900ee7bc34961dae02e5fb5e9897f8c18cf546763bc8ae67", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "18c98a49a2868586a9f74b1b0f9f2869b0b127fd5ea8442ab03424565f96e265", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9e06523f46900daaf204dd39c67d73f728ac9e74ba7409f1c79f5ed2deed083b", + "regex": "(?i)^https?\\:\\/\\/wxaxasazaz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9ccfd24430370a607b7f0b1c96d38a1d7f1d62045a12be3b9432c25e7e951867", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "29300c157cc8be5a53eb07b7f07bad1f26f1e0f144bd65a2f864a77c58318676", + "regex": "." + }, + { + "hash": "a996dc7ba0a68e0abf04cee2b5528654fa2f9a0046da28c8cc444fcd59ef273e", + "regex": "(?i)^https?\\:\\/\\/gadhgbqeadhb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5973c9edee64da30fe16b226c5e5f7370b5f2b62a7c6e91fde3461ff49025697", + "regex": "(?i)^https?\\:\\/\\/bqeahbqead\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "aa22e959fae86da31c92af08d4ac1b3dcdda841ad3005268a6f4622894dc497d", + "regex": "." + }, + { + "hash": "52c061ef87673187230f1c3e91522db36c336b10e5c39f9126c4b6a32f812a08", + "regex": "(?i)^https?\\:\\/\\/gadhgbqeadhb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5395967ce56492bbd1436bc87ece983b22a79876ae4d81ae661e0c0b7e1198b8", + "regex": "(?i)^https?\\:\\/\\/getfreediceroll\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b97493c713834099b684d6815d8bc39354b0395c794fa10a9719a051e5c754b1", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fbe30a2268d2fd34e1dca9ba62d00f8e9a557aebd2984420940c8e3adfdffb2d", + "regex": "(?i)^https?\\:\\/\\/hot18videoemporium\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "39692dfadd1be61d994e95f969a2041563a3e3bc5f3fec25b646734ea69f1cd5", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0437e95f954bb2ec1863810c4868609d19f8cb844adc11fb06887442729b7ae9", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqdhgb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "37e4adcafa9eb710e290d63abdb37151e8eaaba9ab300545946023f67ce11ab7", + "regex": "(?i)^https?\\:\\/\\/hddhdhdh88\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "419355dfc23bde35db592434446bcde64a22eb0d3cb8917013790d20ef67fe4c", + "regex": "." + }, + { + "hash": "39e2842263c95f48d8abad62c7bdcf61254500a010447b8f6915114a6b2657b4", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d689a39634bd272b30df76286244c6aa3387f2faa0261d081c30c20506afd6a2", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "090d44fadbe16dc0c2abfbb457c6e5f739bffc4300c3aa1942b90f1f1d05bdef", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8465af16905902ba0aa6d96fbc775cb5ca11681a0961530fb55051e031a1e451", + "regex": "." + }, + { + "hash": "becc3cbc508d797cea2086480b4cea7f5deb1e4f03d701c770826fa28802f802", + "regex": "(?i)^https?\\:\\/\\/nzerbedjgfdjgdf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "94a1642cdc1cf3b4d7a44f74612b81705de83965e22575c6d889729178b2a5ad", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbdq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3fe73f27c1976d9d10e123952605caf6372e531803ec59b03207efcfba744c40", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "25a4bb3bc2adb27500c40f43016c6ab040eb69806f2dc8943d87368dd59d481e", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5259f4fa7e3fbf711252bd6c70a959dbd0e62a7661c11d5640e3dd881f903447", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbqeadhgb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bb37c0069162078758602f50fd1eb8e78b4f3a0f2e73801acffc65ce48ae491c", + "regex": "(?i)^https?\\:\\/\\/nvetndfgdfgdfvb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bec91c68f6b16bb5d6a745ae4b173b173963555dd5eae3bcd6241f847f84b7f3", + "regex": "(?i)^https?\\:\\/\\/detrfjntrzsj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cc57a678fea4ed5e7f3a25d994f261082478817d455f6b4502b974cc2164c6f0", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a225278c0e3435167b1d932693b853c3db788064187d49508f2bd04e5d458936", + "regex": "(?i)^https?\\:\\/\\/getfreediceroll\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8079044bf390b41c9f32eb26bf503d37ca4063e86251768f506844dfdb2a496d", + "regex": "(?i)^https?\\:\\/\\/moonrunner\\-lunartracker\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "223c44f82c9839fe677b83b3557d361d17d37e7fb49f2d7f24a0b1a779c291b7", + "regex": "(?i)^https?\\:\\/\\/zenrtndfngdfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3e9873257a12ecf9f37299105fe12ed7d204f49313e72d0b35f3cedd3b48ead9", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b754bf7ac42366f279f3a55797205c2760e5d44110f06dbdd77289982643a734", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2fd29cb69d28d7b4c2841a625414c813857a71d179ccf3ff9071b21f9383b030", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7665d73986013653b71b39f3753be8d3313adce10081d87d028bf020a40019cd", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c494272a784aea82dcdf50e4a759643e7c1b1542eb0373023539015766480e8c", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbdq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d30101ad6286dadfd30929c2ca54aacc3b72e56fbe463ee3ffc830627c3ffc5d", + "regex": "(?i)^https?\\:\\/\\/edhgqedhbedq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a8df32f860d87bc09c2ed7f2a728f468c9c1a8263b187dca732f59507079ce01", + "regex": "." + }, + { + "hash": "e76d462abe280967e74979c41e8a2b83320b99466989ad3889de684813fd9ecd", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0fd0e5ca6c79fb4589f33a87144a06bf70f95e8cb4402917a8e7e965ee2eeb8c", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8ae8467b5158edb2a73a01fe0d91a951223ec07887bcf3cc63cbb954b3002ea2", + "regex": "(?i)^https?\\:\\/\\/robloxvsco\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "88e71e49f331d5666f2844e6aaf14d97b48efa236708e32a494e37c514d86f97", + "regex": "." + }, + { + "hash": "22ab5492545c48aab241f1d4e21d80927b5ab1f5ee245053a5afbd75ec5c520c", + "regex": "(?i)^https?\\:\\/\\/dhbqwedhb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ca69f411bc3b0c8f2394f0d8ff06996e6f953c202ddc61f245ae66379aade181", + "regex": "(?i)^https?\\:\\/\\/nvetndfgdfgdfvb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b481b5a76e10740a495af49da66b3774279d8297d028bc63d3cd795490e8de22", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cd9404668ca8737dfcda04eae8f395845173e89ae45837df9b3b9332f12e2826", + "regex": "(?i)^https?\\:\\/\\/robloxvsco\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bafcef9387fb00878a166201ac9a87531bc867b27a61dae536e97eb8bb4f44dd", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "05264886390441eb58fd5f934165eb758680d23c4281519dbb1678225f189f72", + "regex": "(?i)^https?\\:\\/\\/moonrunner\\-lunartracker\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9102fbf22a03d723b16e4d76b9b37c467e7a34414fb53af2615ef9927830f003", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9f62c8af0e5ab3349bf846b2a3acca360cf9085e93e69475428d4aa22245fdf9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u1SJds(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5a3c3fe204972b2d9562627cf99fa9549c99e00b58090353b4e8bd30729b2a1c", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3376124926abccc1f75e67c770a710a1975561e885a295a5ec322dfb81b73e51", + "regex": "(?i)^https?\\:\\/\\/aqeghbqaedghb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cf8437271594fbea85e601e4abdc0139e0340d2a463e5d004171a82fa1e1e99b", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "106958f8f0e2a61e10673cd421608448dcb4ff8d154ff3a4c3aa085d8715f2d0", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bb9cc4887918c876d1b86ce398fd11e44c892862ef710395a658bc54cadd8957", + "regex": "." + }, + { + "hash": "fda160b7e33524c1a1aff0090d14a26aa5823116c1d6410ab3f4bc836c9de166", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5c44f746913a30f9cdb572f7b5f0ae420fa22c613ac4a35fbb705d58e794071e", + "regex": "(?i)^https?\\:\\/\\/edhgqedhbedq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "68760ac3551af6f69e629dfc4c25415f69e25393da2689d3643ced7fa085baef", + "regex": "(?i)^https?\\:\\/\\/najkw22w\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e89c0ada4ec08303c34d4cefb4f6052146238a7d2263a6a4f95a101c8cdd32a4", + "regex": "(?i)^https?\\:\\/\\/nzerbedjgfdjgdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "df62f8608356d9733ff7754129fef1ae656bb0fdde844a5388a5366f3648f799", + "regex": "." + }, + { + "hash": "f4a263aae42f98bee1cb64254577a7f1f62e285517ea6cd9a586f79b07c19499", + "regex": "(?i)^https?\\:\\/\\/robloxvsco\\.blogspot\\.co\\.il(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9a5a027a5bd4949db0c0ae5b9284394ff135f9c67dcf3bb6b5e268bc6dbfd961", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ffeff059615619e2937125db4612534b4b3720b1364b112906fea176ef6d8e43", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "952be10a5c28335c0d326115d7473842a9aa98bd1893bf8d418bf856288891c8", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "34089710831e729fb608a188fa8340d0168ffb81080cb5d92c709e303617a8b0", + "regex": "(?i)^https?\\:\\/\\/qehbqedhbsdqf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "94583165640c1ba2ea90f7de49f1ce679d347ac30e1e00416a2e0c9519f9678f", + "regex": "." + }, + { + "hash": "262633b240380ea1858648abdee3298797039d1e2e237fba635d239489e0a33c", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4c992e7a0e1ccb958877e19ec4333b121c52d6287e1002f663c86ca0adabd36c", + "regex": "(?i)^https?\\:\\/\\/hgeqbedqahgbq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b8183ee9d60b6aeafe5a9d9e9fbaa8098b2398f24c6a4c63212ac7cdd2d45659", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "730145ed5fc6612334a1cb40bd1a6a042cb2fa3cbaa262e64193e0e7a6ab82aa", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a7278562c76e0d9a143553b3c810d5f006639c82b4be3842480614d81171cc25", + "regex": "(?i)^https?\\:\\/\\/ehgaqeahgbd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c5a824c10803368bb6f5ad27dad2f16df2ee1d867b42644fa7bd4f1a352d79cc", + "regex": "(?i)^https?\\:\\/\\/ndftddgjfdjgjdfgdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4bcc7df54e688e07ee894c3b3fd8c000c09a6225ed98d92382735eafe49e8519", + "regex": "(?i)^https?\\:\\/\\/nvetndfgdfgdfvb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7c3f8ba89c6c555ca92ce52a2162307b3c33bac43481ad86ad2b20da89ca6a9d", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a925cff3be1756ee7426b4351c02b0479af59c9090c5f0ca35867ea1f8b0f416", + "regex": "(?i)^https?\\:\\/\\/hddhdhdh88\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "305fd2d1d6a8ce1eb854dd577464adf0a8ae95ae3b643f9d445591ce5ed4d2be", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "dfbe439be5a063c0717248c0eacf072803d60b79ab8e4b825047b800aec2f5e0", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "da38f4cea5667eac583a8ffa70d70c64463022192919070c67b8c85cc8d5c6fb", + "regex": "(?i)^https?\\:\\/\\/detrfjntrzsj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a00501989fbf9a083d075d93326cb94af038c4948584eb5b4804b7d8f17d4030", + "regex": "(?i)^https?\\:\\/\\/ffrewardtoday8\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0e42a6dcfbccf445b4a5a8e72f978248c741a464f6bbeef68e3709f4ded7404a", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5da2bb745f255a8771828ae22d9077689b03159e0d84f0b844f500e619bf2def", + "regex": "." + }, + { + "hash": "c901f64148081ee1efd712f0ca8439851d559a80962835089578d82ba4f23fba", + "regex": "(?i)^https?\\:\\/\\/bbyee773\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "2fd2b36ee023c34129e91f8e4e9a88ff5adc8965549b7d0d1d025cd407cf8358", + "regex": "(?i)^https?\\:\\/\\/getfreediceroll\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "360fd4cb3e5f297372b2667529a04552d8475fe14c42bfb142de5559fa5db30e", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhgb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7e33b81d627d44fdceb701774ff21db38b69e8f5bc49dace6493827d6f919ba5", + "regex": "(?i)^https?\\:\\/\\/espace\\-particuliers\\-clients\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c316b1a52178c480cba8b4c0e5dde24de01bd9457738f05f34846c5a6c439f0c", + "regex": "(?i)^https?\\:\\/\\/ehgaqeahgbd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4654cf4f7d1d27f73b3e31b5e23271d167efd90ebe3243ec1b41ff4e5ba33d89", + "regex": "." + }, + { + "hash": "3d8a7102f55223cf03e53e4cb162043c975ac55f77089adb36eff7bd6f98dded", + "regex": "(?i)^https?\\:\\/\\/qehgbqeadhbq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "442f2e6abda95d9fc09f9ab54a7752579768fef4b17596c49ca98a9885b9cd3b", + "regex": "(?i)^https?\\:\\/\\/zenrtndfngdfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "844316bfee73334c56ace85cd8ffc0f6f4aed0d5183ec93158130fa5d504737e", + "regex": "(?i)^https?\\:\\/\\/qaehbqadwh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "af25547b96fbc383bd1770c7dd3cdab5d2cee66a0162e484dbf070cc854fe952", + "regex": "(?i)^https?\\:\\/\\/dioersejdgjdfjghdfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e0df71b9e886db7de5b1b4cf59af7766bc75318408dc4482e6ab1676e5275068", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahgbqeadhgb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8c236ce11949f3851a42fa69685d72626c90cc4f600dbe9a02b305abbeac32cf", + "regex": "(?i)^https?\\:\\/\\/nzerbedjgfdjgdf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fb61adcb19144fadc80345cbe5a4929c866c81e6d1453572de2e196cb05c6f25", + "regex": "." + }, + { + "hash": "5854ccf616bb151ccc1f5015215073120b731a6d40a88efb6674ea1b341b12b9", + "regex": "." + }, + { + "hash": "d6a1b8ae5d71681c9e441937a3c74152a26a5048fa3efb5374542b608d65db9a", + "regex": "(?i)^https?\\:\\/\\/dioersejdgjdfjghdfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "eeb7f8217e51ec5904c38acca87ccdda953bac62b71308b1aee295ced6fa1f13", + "regex": "(?i)^https?\\:\\/\\/ehgaqeahgbd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0d0a68cd23ee320f22c80930ad8d0c9021312e10fd5c0f43aa82100df1cd0681", + "regex": "(?i)^https?\\:\\/\\/hotshow2024\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7732a37a4cf6f6488266a7e4896bb743c72d66a753adeaa1aa9f280637aa5dd2", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "039781940afdfdc696bc246be573d87302b70910d97144cb51befa2371b689db", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "02551ac8c111aba95aaaa11bc8c3e586137f941fbd07524103b9844a7fda8a35", + "regex": "(?i)^https?\\:\\/\\/vbvebntdfgdfgdfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "50521f59f3cf4ddd6336e3adc2fd2c4f05cec527d459908a9e8e4e4e38ba076e", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhbdq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "835cb8907485b803175a8abf27465660d5a097cdb1b3bdff5efcc0b27f37174b", + "regex": "(?i)^https?\\:\\/\\/www\\.157\\-245\\-246\\-91\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "313a701c47e0c1e790beb7002fbb6b46825f8a89cd0c6d9e72d1a8cfec97c98d", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e7a698f6b2c7184c9b536fb02369e67442024ae107d818ba3cb59ac1ab4dbc56", + "regex": "." + }, + { + "hash": "58832f900084a1ed2387d7a6840b037a978ff0accfed74d099f6264608ffde4c", + "regex": "(?i)^https?\\:\\/\\/hersdfgdfgdfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c5ae96cd58eb5aca4ec7c9a55932b346030e6c7436fc5cc4b584ca21c05a8fea", + "regex": "(?i)^https?\\:\\/\\/qeahgbqeadhbs\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4bcf8e82811ff8b502a466ee1f11af34aa272c7861726ec917763029ebd7f052", + "regex": "." + }, + { + "hash": "fda1965bb938a310471b978763d0b095ba3faa364a85ab230ad91cbd49115f9a", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqdhgb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "18c93724c9e1acf8b2937c4bf4a5a29650c34f0856fa0c6f2667c77f06127c95", + "regex": "(?i)^https?\\:\\/\\/siafn2ms5\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c4671e0670cb63ddb600e2de232cbbf2d73a4d01c703751950faa69b9dec3edb", + "regex": "(?i)^https?\\:\\/\\/netdfgdfgdfgf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b14c8a483cc6ea74020e31dbca6745c44aaa04a1059232d148be76d45ad98586", + "regex": "(?i)^https?\\:\\/\\/qeaheqadhjneqd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "451ae3d4c2c7da5b07d7255815da065da0189def68f0c0a08408fc509d3ba8a8", + "regex": "(?i)^https?\\:\\/\\/robloxvsco\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c646310c233ec278cbde91cbc0c2f9bb060ef34bed76ae01d8e5e01086bb7e17", + "regex": "(?i)^https?\\:\\/\\/wxaxasazaz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "480ad0c85632c65f4ae5fadb0da95c5c3fa8d7369348732186ab97e7681ffde7", + "regex": "(?i)^https?\\:\\/\\/moonrunner\\-lunartracker\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9f66f2ba925bb3ca229be4b8dbc710d1e5de3c5fa69f9f345a52e397dfe909b3", + "regex": "(?i)^https?\\:\\/\\/ventureworld\\-etherchaser\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "94436d4d6efbbbce4aae399b1711103a0ef33c11a9c774db454553d91aadb58e", + "regex": "." + }, + { + "hash": "69ec140af841b21f90ec8cbf47d9029ee0102b5bbc0aaa500e8aad414aa27e57", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eaf7eddb94ab0308b581fd005196bf4ff82abdb16821412aa9f9f58b665fe7ba", + "regex": "(?i)^https?\\:\\/\\/qehgbqedhb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "73858c3a57fddd2244979897eabf8ae1569c36b49907c9e5923c5b32b4402647", + "regex": "(?i)^https?\\:\\/\\/ehgaqeahgbd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f8a69a79d298cb861bb508832cd010cb836ffc62a86123289fe861c59bfdcab9", + "regex": "(?i)^https?\\:\\/\\/zenrtndfngdfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "eced7b8aff4a6bbcbe1968f0dfdb0570d485bdd0a9bcfd7bddd377483086c121", + "regex": "(?i)^https?\\:\\/\\/aqeghbqaedghb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cf2515af6a9cf297a36f0baf2f7fc41815b713a6405edab21523799e5a107277", + "regex": "(?i)^https?\\:\\/\\/qeaghbqeafezaq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e18a9c61303525b350488e35cda7bfedce7346e555e3ac5de7bb3e3f4a55e825", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a42e68b37ba93cd5f33f08df0a60dd0179773a3d3ef03f43198962c8a1e3e6bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-22248158377" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e4cef9c207f8485c4bc3141d9a49387d0438e1d6523dc3bb5c7e5ceb8692b2f9", + "regex": "." + }, + { + "hash": "a7e39b7cbe87dbfa0998e057ece4bf5e588c78836e5b485a750bca78fa7a6e8f", + "regex": "(?i)^https?\\:\\/\\/att\\-104083\\-102145\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5a8705c1f362086e98f1cd9779c7058e640b31f5697a649f96babb368d51287f", + "regex": "(?i)^https?\\:\\/\\/dfdnetdfgdfgdfgfgvbvb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b2f922c7a628a31a5bdd3d42041a6834c50082969dba2cf7bb42a4f8ae7ec7a2", + "regex": "(?i)^https?\\:\\/\\/ramsid2s\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "618fba48723750e2622ca41f4bba53c6df23c553fee1b08263588e2380fafe5f", + "regex": "(?i)^https?\\:\\/\\/getfreediceroll\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b6c1f1c961f394fc0379ebefe10e883116d54558db5e5dd568b95bf758d563bb", + "regex": "(?i)^https?\\:\\/\\/edhgqedhbedq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "80d9b3a6df1f970301a820336dc3b574d449d738fbc1b3ece6ef81f2c4f170d2", + "regex": "(?i)^https?\\:\\/\\/qeahbqedwhb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6ca2a606f8940b3fc72e8edd6dc0165f6dbb4cb7a063833c43e13ad47772dc1b", + "regex": "(?i)^https?\\:\\/\\/jasdkj22jsw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5852bde80d41fb6e9eee6ba73c8ec2dd98981a7d47342a20a293f9b907408b95", + "regex": "(?i)^https?\\:\\/\\/zingor32\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4055915f4ef568d42f629bd712dd4c5128c78245ffd040735da6b82fb4086fa3", + "regex": "(?i)^https?\\:\\/\\/zenrtndfngdfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c831c76966c74832289304610b9614cea96df2797d23497404e21e12719b61ce", + "regex": "(?i)^https?\\:\\/\\/videodelight18\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c901df66868d047e32054960d1a6aad5f865ab2fead43813e816fb7f14930ef3", + "regex": "(?i)^https?\\:\\/\\/hgeqbedqahgbq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b524a23462cff9281931f7172d57a0a8f1aa10136f7fbccbbc3fe6b68a5e046c", + "regex": "(?i)^https?\\:\\/\\/pub\\-7cdc7603ad49449094bb0225fda114bd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "504d68aea01247c207b47967b4ce3d217777cdfc579d345fdf7da5c26be0a302", + "regex": "(?i)^https?\\:\\/\\/edqhbqedwhb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a925f7ee87f1565eeb36245ae66b183ca997973a3c2a5687ab07729d4583ad50", + "regex": "." + }, + { + "hash": "83cea435f06f5f834833056013e32917de62a5a82929ec671d4661355066bb01", + "regex": "(?i)^https?\\:\\/\\/nvetndfgdfgdfvb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "50169ad2aab2671994d34b2cc8cf0c43895b73cc928319bbb9b5e1cb01f3a5a2", + "regex": "(?i)^https?\\:\\/\\/videoxhot69\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cb82af5f371d1424701d97bb2e5956cafd00613aab0b6fc102ac12cb9fd6e39e", + "regex": "." + }, + { + "hash": "c5a4a64e1b3d05baf80766f61a113c9a88c7ad9fa33a25e28f6ef624ee8d6012", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoglobal\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d85205092f1ef4a624e8e1a7a914aa948a5d27ab2708ce87c2afc966799fd2bc", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1fdb5bd9a3a205ae5a023b0a4de8b5fdaf284003b6e6279d291c2347fbe29c93", + "regex": "(?i)^https?\\:\\/\\/clickinnovatehub\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4b25d731bb804cf1d97498005e1389c382706daf9d58ecaf607df27e7975805f", + "regex": "." + }, + { + "hash": "495a75fda6a6c72c8d8844c086cf803e340294a7e3dea41ee4f5a841082c31fc", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1257dbc998c26fba138f2cd22368f94435fc99a10d0b71857a10e440cd5fea92", + "regex": "." + }, + { + "hash": "3514c20b00de4c0c9ab6a23168c33178aa0fe5eb6c1123047df660d74182c893", + "regex": "." + }, + { + "hash": "7f9aa5258dd2fe950ad4b07e5d9f334590dfd8a416d1a30f2805730e81720101", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5b48772b3af681d992e2fb606c8cfd03c7a68bf89ab4ecc2b1fc6595db963b0f", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzzz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "942568e8b8885395e53aae4fd2fc85ebe23c014dc26edd99bf2a4fc0dd46de00", + "regex": "(?i)^https?\\:\\/\\/videoxhot69\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7325089044e829e8621ec025f6de79058c018a8c2de995caf93b3e531c9448b7", + "regex": "." + }, + { + "hash": "40ff502fcbc69e31190a922b8cffd0bc610e571dc237e87757e4bed06e264256", + "regex": "(?i)^https?\\:\\/\\/videodelight18a\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "983f016a0ec522a1ba3c11aaa9c474149eecf475a599e1a4072e64f36b7d4757", + "regex": "." + }, + { + "hash": "8b11e125f2f264cce0c85e04432c510cde6b9ff687868f1c77a156d36c03f057", + "regex": "." + }, + { + "hash": "be73ca2bdf69cb8e299fc33dfea9a3e3c78d23c681d58f2a49eccaec073953da", + "regex": "(?i)^https?\\:\\/\\/2024hotshow\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9e4044a7966c96c5d72ffc1523c33a05b05ad2263499d107d321b4fce0d75855", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9ba2c881583ac9314831e4de2a8634242529191c758766fe4027f6bf1e3c98ad", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8378b18ce2e36ef86480ce852fa25fb570bd9ddf7b74ca728681f1c1ddb6ec3f", + "regex": "." + }, + { + "hash": "6cf240ce7f0e6112e6c936ea02204a76cb91245aeb94fa9a255fa858ac5ec152", + "regex": "(?i)^https?\\:\\/\\/clipteaseme\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7ccf5a6424465388a2dd7d423e3ae7b8552797c47528867fa1fc43e5d980b671", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlineph\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9b441df62d1b1f474837a0baf46ab278803e32aadec64e23298cab20590433ed", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5239231b4b8d9abf7551186c8e0e8b650fbd690990d697740a250a5cad4b4bd8", + "regex": "(?i)^https?\\:\\/\\/videoxhot69\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "237db88c9b038da87fe1f13279ab654c0e082f57d799fd0ad98dd41c1c8874bc", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a5a4d688875b3ea21fbd02b187a1e7a880bab27bf66f4459ab3665f665e416b0", + "regex": "(?i)^https?\\:\\/\\/videodelight18a\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5f44192e675d0acff6d9c36cb4ca097594d943c2e3eb8e40ed80658d770643f7", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "09a74391716a804fa217fc1ea491db634838bb4c59853aef61481c79bde45f2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m[\\/\\\\]*\\?c3Y9bzM2NV8xX25vbSZyYW5kPU1FeFVSR289JnVpZD1VU0VSMTUxMTIwMjRVMzMxMTE1NTI$" + }, + { + "hash": "3db20d2a283fcf2e3396dfbfa7f7de9b83e526122dad013880ba3dc4202fb47d", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "39f6285b2e465df0f37ab4ff31a218df3eae4dc25e799323896e9534a0f66acc", + "regex": "(?i)^https?\\:\\/\\/videodelight18a\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2e16ea9077710a2065374e25f6bd3d1d7850769eecbe6ca230fb72448430b120", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7a67ab23d02a8ed2ce465ce6fbc6139ad1636f0bf54a8e3e57b948ee4b59228b", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "29fa50c383057ee79ff03ff2dfd8ababcecf435886fee11b6f158afffb89ff42", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ab4d40930c4994b5cc41746903ffa97025f8f45b67597d78f0ab3fde7d317f85", + "regex": "." + }, + { + "hash": "89b8ba7708725646910759c18c068f51afad04d7562f888ca1803e5ba886132e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9143[\\/\\\\]+entry[\\/\\\\]+register86307(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "904110667959e49f63f223710247b0409b74a8a59b00b4e8354a71ed8c2a3952", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e5b20d499d2fe2c065aa7d95acfcf57198969199364bb26800902a03208d4172", + "regex": "(?i)^https?\\:\\/\\/2024hotclips\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d0977d5e8186ab4ef7a6b83bcef477eb67bf70bc523b6781b588a06fa2c2cf7d", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "96fa5f677d32bb4747dd3f7a1979d67cc0511f5481bcb39a719ab691c8e1ff2c", + "regex": "." + }, + { + "hash": "76d8fbd876969c3e28775d3e8001cddf59b3326ea2e3f749b6b168e6a701e9c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d157d997e9876a546058d75b38b94f3fa20a1caa0f9e19323f0077c7c98dfe39", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "48e51b73951c4b46b6b9ce9078e9ce7c366fa81309f21e95cd416d53bdc980e7", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "95d12b9c17299fbc8099deff0433a74df1dbf29c169b931b8d9a262158fd82a4", + "regex": "." + }, + { + "hash": "32ceb34711e48590a810272c10ff2609641721be9cd64c6bd9759ee2f7bb409e", + "regex": "(?i)^https?\\:\\/\\/clipteaseme\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0f958d3fd75317ce510ae475f5f247b9181f6d10ab9b34c220c79c427d26715b", + "regex": "." + }, + { + "hash": "99f98ebfb0a75445403dea8c5c0383142af819fee8b4817e4d6cd569f6dd60c8", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e8ceb88931216b405e124e87c282f694da64faef874939c521da10fa8fddcc71", + "regex": "(?i)^https?\\:\\/\\/2024hotreels\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4a7a28baa9a932a638648c99e4be09b4546b30b44fb39cb50b7bc9741f1019fc", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "59ec575c8556a241f4f14972cc1daaab57310928065624436ca4943bcff72480", + "regex": "(?i)^https?\\:\\/\\/hotvideopulse\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b1e1dfbd0da312f3cf7d5529484bd07eede5f25e11066c44fa50295edcb084af", + "regex": "(?i)^https?\\:\\/\\/2024hotshow\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2d0ee067099567487b9266e80da2880a9e6b6234d80900d3209087bf7cf19688", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "320db09447b7bb2cdf8b40e1175951647d00e3d084dbe2bc926d7c7c8262e06b", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6f35014273a6b6cf2417b6a5308a332b682a904fe393ebff8e9d9a3615efa5c5", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "9fea7eafa174d0759a67f41d9635bd749e4578fc7b7969863ec8d371505ff724", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5744d3871f13ac374950d391472cfbe4a3bc6c4f595fb9258ee9b8dae6a1f1bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "e8fd6c82a21d2bfb3404ac1ac0fd9abeacf69e494855f299b945819446f88a25", + "regex": "(?i)^https?\\:\\/\\/wsv\\-1043\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1c41097b53fb842084bad25a9f53b4b975b0c151bedf961dd0bfa6f2e82e812b", + "regex": "." + }, + { + "hash": "c462931f7b5be6b7a19885818c9a25d55c2018d189da6efe2d8545bc44c90423", + "regex": "(?i)^https?\\:\\/\\/2024hotreels\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "da12c25393a3ef29a6a51e42214319c737b2b318577625f5a0b0d0279c0abcc5", + "regex": "(?i)^https?\\:\\/\\/2024hotreels\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bee1f0ce872b28b44c75bb4bcedefd0eced320bd04d5a05633b2ea3cc5d8cd76", + "regex": "(?i)^https?\\:\\/\\/videodelight18a\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "a6afbfad948f37f33579dbf9af90491023908f7ce7fa915a6fdea9bcdd89b441", + "regex": "(?i)^https?\\:\\/\\/uytrutdusrstusisdikdiytdtdxcdfse\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d4e8dfb76aa3f4a2dba73c436d95e7a562ed63078cfe0ac8b30656f5b1b10b55", + "regex": "(?i)^https?\\:\\/\\/asdwerc2682\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1aa53eac5dbe14c76385eb6ba7530efc3706217f45f06570dfc399ea89f29513", + "regex": "." + }, + { + "hash": "c6556bc0b5302b7cba5e4f69182160c206d948c50473fa356539708cd37b0cd8", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx5\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "89e7114c3df854f80c608e8433b972ea14179b1b9c411958fdf317bd183adfbd", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "13181458800a53de23a43bd0b0d11cbf59d969ff8ab70d3651d743ce81884ec8", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bee1ee7e4f40e69840db539c613a8cbb4e5ea5eb1a513fb001c0ae0ace442d13", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1312646661ede12c2e3db6bd1f6f166f921a055f2600d1efd8d5b35bdaaf180e", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "869b811be7a57ce4dfb905a6eb098efc44a720202968fc9f89de6b4a2b6aaa06", + "regex": "(?i)^https?\\:\\/\\/2024hotclips\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5142da676253904e771cdf2b56c42ea7267e6818bb9e32da227c865108524bf5", + "regex": "." + }, + { + "hash": "8f4ca738db2b3b5d56fb9933fd9b9c95090b22abbc2d36fc7c54fff8d07a5e94", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1e197cd010e0537e16b5227b4cb1be438f24175b55969e48c9d4819deca0c23e", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bfef982aa19d4d728803528656e75719b27f17fb79a72a65e16379601b11e9f6", + "regex": "(?i)^https?\\:\\/\\/2024hotclips\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ae820e4b3af24f4060394635fee9af708c0ed1fdcad8d36031b001e71ad44aab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+fr\\-academie\\-fr" + }, + { + "hash": "7c52461cb01b1b98b9e38ea9f3523a18d4f90e253ce37094c16a05a137229219", + "regex": "(?i)^https?\\:\\/\\/uytrutdusrstusisdikdiytdtdxcdfse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "92303e0c74f32d3c5551d84e3e38515395cdc03417498481cc95261dc07a1986", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "f42e38ccd68d34728f7f0bc34a8b8462bf2be815f6749824cec684a727986030", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "cbc598d65811a1683bc75c38bd4c65fc08a2407b8ae105921a6f475b00a74107", + "regex": "." + }, + { + "hash": "7847f0cae632e02db5be336115b38587c224f26668c514ca637777859e2edc4c", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7c53f6295e5e72dadb5e60e1092927e7d723214b4770b9f2d56f1efa26a483ed", + "regex": "(?i)^https?\\:\\/\\/hotvideopulse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "46fdb9f0eb0706228b31dff75927153150cd532cb335130643d359538c9db3e4", + "regex": "(?i)^https?\\:\\/\\/clickinnovatehub\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b69f395b5f28e2ecc28ee2359702ecdf4ffb676440c2d1bc2126e843a49d7e93", + "regex": "." + }, + { + "hash": "22d5d24bfb5fb1c8eb9b79df71db94b9435a9ba84b39d091ba94963db941d2b0", + "regex": "(?i)^https?\\:\\/\\/amazon\\.jgursogzivfe\\.com\\%E2\\%88\\%95fxxybp\\%E2\\%88\\%95htamrxzyyc\\%E2\\%88\\%95tivwxmnk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zlqyvcqqgi\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "94a8d654ae42736a2c24b5a4e8ef2e52da77f8bf6997f5a0ae369594c5a30e1a", + "regex": "(?i)^https?\\:\\/\\/clickinnovatehub\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "23983fa36ea357331aab91f99022357ae4a489a580046cce069c3ef4e0c5643f", + "regex": "(?i)^https?\\:\\/\\/naughtyvideoescapades\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "43fba425271d2837db63360fcc80072cc8f3a46dc71dd6382adcd183964d3051", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlineph\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6a75e5e73ed974e99e04d6d27781660f94e720a794eb27aa8b29de7b76d255dd", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2239f541137f93b4c59f8cdb277577ddf33d8b7f62def4604acf2863ff705611", + "regex": "(?i)^https?\\:\\/\\/clipteaseme\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmaPiFQzPuXoVm2yF7ujkHKMUy6aoUpMLGzmNEDjeL4iKN$" + }, + { + "hash": "6414ef604a23f0aeefb29ae940d5df78539947ecc91fc3212e4a12c7c4d0f88e", + "regex": "." + }, + { + "hash": "9a473dbcb38878e8e7b131a29aacc098a4c03a8a476f26629396ecde226408df", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a6cb68a1807caef8e0cfecd14d449ab1446b0308a7e3a7d055fb789679d536ab", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx6\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1e8041a11ad745b8be6eb93aa8749147c84cd3ff875cfa06a801bbadbfa0610e", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlineph\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bd607a48ac1b63ccb8c2589f03fee7336e1686b100984901cc00ea9d862e6a2d", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ed8c962e702a6c3c677867860b69c6d58920b5a64a3d0dce1e4d050fc0711c11", + "regex": "(?i)^https?\\:\\/\\/2024hotclips\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "84e2ea6a4316a55e50d738686328f19f58856e8b5ddd54d6c13a59cc252b457c", + "regex": "(?i)^https?\\:\\/\\/clickinnovatehub\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7979b5cb093e092f644d0d54455ab7218624e2266893e65ed67636c97e44fc93", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "06ba59957835abec7ed0e325be8b6cb96ce70f89b21dd08cfcaaaba77708687a", + "regex": "(?i)^https?\\:\\/\\/asdwerc2682\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e2278bb0fe7b35c58eb5affd6f5102641614d66f722bc0dbcf95afac571a2887", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "928ed7888f5521779c5f47dbd55caacaba5d233ed8b7537fa14ccba7a5ad214c", + "regex": "(?i)^https?\\:\\/\\/asdwerc2682\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index$" + }, + { + "hash": "5669295ae2543e496ad0d2d6576bf456992ae0ddae3ffd7b1d0f9a74255e2e64", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4088132fb70bfc412cca4fc2306202295001d94968a94fc8402be677e3a99107", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+GT(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6b1365bfcaf662a5bc8453678f74ea5ef76e0132d076b38c8f761d52b5e16155", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoglobal\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d3c04fbd40542c433f909cb9832b2058cf1e2b531f034e7a8bafe95bffc4ce5b", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d916cc2879077c8ae4444c964209c2b117a7f8841a5a0cb7cf7948f6ce300ee0", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "19eebc5ccd2c93d15fdcea9b7ae5a5c7b1888e98fdb79295f0d227c954a33bcb", + "regex": "(?i)^https?\\:\\/\\/videohotflare\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d16cb4a3873a8cc43ac9b988707ff707912fa7a9d6b30b44799b451818062f62", + "regex": "." + }, + { + "hash": "4761c60e26ece34e9e26ef986fcab386640501cc993407bee36548ec453e82ee", + "regex": "(?i)^https?\\:\\/\\/hotvideopulse\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8991411364878d7e902f84d42812f193dd15e0b65399baf17b30fd26f80e9d35", + "regex": "." + }, + { + "hash": "6575ed9eb70b2521f375492e91ed2998d30ab0ee99194f62af71fd171108b4bb", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dbbde41781ba018d281a8d4b3f86d0d6391f602023b6d4473beb4f4996d835a0", + "regex": "(?i)^https?\\:\\/\\/naughtyvideoescapades\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1d7dd76813629875e8d66d6c8ec4d6c35df80ba2c50468ac292349c4bb146d50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wix\\.polix(?:\\?|$)" + }, + { + "hash": "8ab1ed6c5e4230a7206af4d2c0d3f14f9ddb4359224385eb87c69092a715048a", + "regex": "." + }, + { + "hash": "c9b146cacef00b99c3e3a683be4f3948a023b34d2b57489a0fee11b8160a2f45", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6c342cb65236e3ad506be8efe975864840024f8af6bbcdcb0c82848af3201d58", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzzz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5a33f05b1bbdc44b39a0daf681514c11e4a323c535e87b54708b371e66abb7f9", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a2440e64d257873bc9b0bc7cabec6f041de55a0976ee7ed42d76d66aa0522c87", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6c55859a52324582b392e4f5fa6010dd009d2965f79558805fefe949efd26edf", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "76d8fbd876969c3e28775d3e8001cddf59b3326ea2e3f749b6b168e6a701e9c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "1933fe6b051f4fb5e43c36f0f9545a19c96f7ce531b6f147edcc045ddb777895", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx6\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "31c309ab8812ca13c2dd03c67944100ac5424977781db9af67ef357d9e45b083", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "823f3645cc9d9d1458a8eafa2b18e7fd0f44a628b19e18e847aaa91e059b01d1", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8a761e99b1c4a51d882a725f9b7a702c70a6b3e000bccd9635fc4bba726baf1d", + "regex": "(?i)^https?\\:\\/\\/www\\.coinbase\\.com\\-authentification\\.209\\-38\\-66\\-80\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5b86174709ccc2edbf0148cc769cec0edd62d9a69c2a8139afba171f7a46a1c9", + "regex": "." + }, + { + "hash": "9c7eab523433114256f718f2e61d73385ae40c469d06cac1bfb977c7d46ae98e", + "regex": "(?i)^https?\\:\\/\\/www\\.bigdealoffer\\.pro(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c5d337db5faab560393827c0c7332fabce173dd5b57281584a973757c1462ea8", + "regex": "(?i)^https?\\:\\/\\/videohotflare\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1a7d001ab18df2592d9d606585a89a6a09b5701aabeadb31cc40ea49e2d60172", + "regex": "(?i)^https?\\:\\/\\/nigahtyn2w\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "0fd287f20846cd58f8ceb8eee096ab4b8385ed17785ac2aec58df144e27b4407", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "525990989f5fca51de40e79a5ebaf167b3d26c025ffb1042e438b3965d3305ab", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f2595571ece704e346fcf2f72a1dd113fd12daa251456dee8c844d7f3157eae1", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "46e039bb2ef08ca0d64b514f5fc45a2d6d7d1e04da1afece94097c243ef2d21d", + "regex": "(?i)^https?\\:\\/\\/chenqiuyan12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "8cbb954eda0c81261a2aabd716e50554e16ea2e47af7394cf6559302d217ef6a", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "369f130d3ee91d8d7f3df4725c481f4e6392931539241d89e546d7d0dacf7c33", + "regex": "." + }, + { + "hash": "73ded5505efd648aea22b6046051380bcef3e22b873758cb811fc39e4fa5873a", + "regex": "." + }, + { + "hash": "71cc171a14c44189b2404e619edb9d56f99aafb0565db6d407aba0348cd1741e", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "3a461eaf61fa261b5e938d2b0ec911dcb540930d6ee0ffbcf6fb554cbad454e6", + "regex": "(?i)^https?\\:\\/\\/videodelight18a\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4cd516b77439d1a63a30b1eddd564f9963944a90f0809f60544ff66c7818f197", + "regex": "." + }, + { + "hash": "fe63c1cf6037ec4e25e0756d7319aead61df51bffb66d026cefdee1916e23870", + "regex": "(?i)^https?\\:\\/\\/uytrutdusrstusisdikdiytdtdxcdfse\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "419aad0c64eb9f10cbcbbc1ee035065b39fa6506a87121d864d4fe8256d18418", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2d4222ae3243b004525a5edf1f0f7b482c602e42ff9f7142e473a429c6d964f9", + "regex": "." + }, + { + "hash": "3a6762f43689f183992318589587b47439116f34c10f73c05a7ad96a0b9f73fc", + "regex": "(?i)^https?\\:\\/\\/asdwerc2682\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "49618050138a9699036e65b06865ec94074e82e3329b740ff8bef6e1de72ace2", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "705f6e8450f33afd1d9d0c2ffa98a56d41148eac8d9d9c2fc82844cf9294513a", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx5\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e3c6b5aabadc4d0c408fe1c68b742b90fe13da48da38ef055fd5b11309de1c40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register12332(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "04c3fda5c7b05273477285b38542eeebfcc0d9e0d0173160a1c813878b4c5266", + "regex": "." + }, + { + "hash": "9e409f034f5b25dacda362a0c0c527c3b7e65f1e53975a60fb9c513ea034617d", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f524c3d0f7a7d3d295087efd4ac1dea861468fe472294c9516d1b5ccffd6cde2", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8a25797c4572b56ae798ad8deb204c37e94cca923f92c6c7770aede9a63677dc", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9cc7a08b507f43e4327f1db89a0f452b563fa1cabcecc5ec2c78245dc64be398", + "regex": "(?i)^https?\\:\\/\\/clipteaseme\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "209034e7c7f5ed687fe549b485916be2777508074e48ba0aec9cbc6e2e854a7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.luigimarzo\\.it\\%2Fwp\\-admin\\%2Fcss\\%2Fanti\\.php[\\/\\\\]+1[\\/\\\\]+0109019344f03aaa\\-071e9f4e\\-7597\\-417c\\-a09d\\-368fbe861f37\\-000000[\\/\\\\]+83P1eLWwI9PbALmImzvhYKKo\\-nk\\=181(?:\\?|$)" + }, + { + "hash": "40550f163dceae288751aa44c36bc85f0b24f2527547b4e489d807756a13e91a", + "regex": "(?i)^https?\\:\\/\\/brolasopa138\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7b31ecbd7b8264122476a79bcf8143bffb22ef25bb71386e1e925f83c5071951", + "regex": "." + }, + { + "hash": "7aa54fa4b4a83ebac83992d0f1fda5664df3a44a3230a8f4b17d7d11e54af1ec", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "69d3fd294bd903a6debe8f32e9ea7c7108224b790b6d27ece776072460697c7a", + "regex": "." + }, + { + "hash": "1e7f5f2296f09be89e952be4eb73a13aec753a79f4762df19474c9dd683cae3d", + "regex": "(?i)^https?\\:\\/\\/2024hotreels\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "80850d608df3263851bb0252eb1d7099dace799b0e3ac55ef43a6c38dc298d0b", + "regex": "(?i)^https?\\:\\/\\/zen\\-spence\\.162\\-62\\-219\\-87\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "a8fa29d8152e09fb96bf8eb3d873057acf2b3d7c7fc408934907c2be0c73427a", + "regex": "." + }, + { + "hash": "3c6147680bd8857dfc39d1c13648d1d03b6ddc50675982395f885a221f43be72", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0d07c689587a921c631250d353e3ad45be81a9dcdf84f9afd93c8ca90d1b8b1c", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5a4034a162a210befc55f602bf9d1bd6bb95f28274f2fa91fabddee40c1280b2", + "regex": "(?i)^https?\\:\\/\\/uytrutdusrstusisdikdiytdtdxcdfse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "871287fdc322b3d07ec33100209d0e627a841a01fcc0f78e90bbbc6f838caf35", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fe39400403c4458cb6781b32425bca3eb7c5cb47b66d301119627a367902a180", + "regex": "(?i)^https?\\:\\/\\/clipteaseme\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4275cd25db16dfaf23b2e5ae6c0e538f32adc9ef55d20d90b7d6c7dc7a71cba1", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ebc50c364a532fdd6d6ecedf2fecedbade75f6e098a003b259dbf892140a29c8", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e48295d4114a966f48aee4b19b340b4b3bf128f6ba27dd890528aef3953267d8", + "regex": "(?i)^https?\\:\\/\\/asdwerc2682\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4a883d850b31228893f60c44ee3aff047e6015711ba3031c3b989a7d136a496e", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "954f230eed9c2672f44684a24bdd7c360d4d3df4fd2884ed4820f2ae4325a731", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx6\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e3c6b5aabadc4d0c408fe1c68b742b90fe13da48da38ef055fd5b11309de1c40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "40557c869bfffd0bc6abe3eb784681d030f66d2b562fbc6f427002c3cf211c7d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rlqikelmc\\.com\\%E2\\%88\\%95ooorxcplik\\%E2\\%88\\%95rtpykumdo\\%E2\\%88\\%95tbcfuua\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=sazwnzyuc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "94b28109e376bbd5d1763859967460dfc19c121c373f15e6143197b0d5628f8e", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "044aeb4a43ec34e5eb6a0a0637939d78849e2f2ef1b9e7252359707ee6004d43", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "0d4c4ad3cdf1169bfa7ba18dc4f3bfdd6aff654971c6c64535c81b8c2563b2da", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx5\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "14abe58b773ee864e83da058616f209302c72565d79f1849155bd74c3799bd38", + "regex": "." + }, + { + "hash": "35f8220e8c46443474bb9b538dbcd190f990a05c863b16311d9708bb01336164", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8cc90af945f81e8164fdafe3243f58e49a773570766e238907057b1a0f8ca307", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0f72995c7d03cf5240f134e27e60a5758991d94d9e05e315d6c91bcc7d22e8fa", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bc6e90643e7fb6dbf15dc9a2293f84cf6ebb5da54a926aa892c54c2591053881", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5065adccbc4f5960d9e1b4b0d8c76b9ad0bdc2c8a8f6a013bacf7cb305af3b74", + "regex": "(?i)^https?\\:\\/\\/hotvideopulse\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9760a471515204e239033054744155d497b11f3b924864e1160064525f3cee07", + "regex": "(?i)^https?\\:\\/\\/2024hotreels\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d38169ef14c5e6c789ba224bf5f91ceb0572e850b5b642932a9a981658168b29", + "regex": "(?i)^https?\\:\\/\\/nigahtyn2w\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "36a63b6ae74ce05e2cb8383a93240dcaa612416cc3796a53a500855a6e585a5e", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8a24e3bba88a29a28f5595e363edb9bb8bb9e8604f8a7b98b22c1004a4ed1b81", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlineph\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "97d5e8dbc61b34dfc15dab214aa51161e04c2cfc04c084ee1ba529aec7425363", + "regex": "(?i)^https?\\:\\/\\/hotvideopulse\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1874705e6c49b68a668f69a809e1e2c19d0b8e9964f475c1705f66deaa1ca2fd", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "5c5c7f2ff360bd5123f7b1da48c7f07436275fe915bb16f18fb3155324aab59b", + "regex": "(?i)^https?\\:\\/\\/pub\\-1898b24a07704efc9e032bb2689c0443\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8fb7ade4e97cecdc84628d56e0d0314dfb45557824112bc972620f694b84220b", + "regex": "." + }, + { + "hash": "5c0203fd944e5e94d2f46536c7ba4cae4c864f3336811f5c73b3ff6135b612be", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f5cee4ef3d1756f11ed4c4331a4d5af71709e5368f078ff001d9f36273ecbcac", + "regex": "(?i)^https?\\:\\/\\/videodelight18a\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "67969df876fbf51b84637c504a67cbb965872e003cb3b04ab1909b07673885b9", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "39f098cf34dd406d2ed07cb37d35eed30f53165da82183fd2e3d6a2d7533bd35", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e8bd06956e1534a0a3001c54fcdb4c6a03cdd6d14573571a5ebd046ce1b765f1", + "regex": "." + }, + { + "hash": "e466e2282a50ba3b64b1aa92dd8c12947a90b2962852c5cd156f838b6bf56a58", + "regex": "(?i)^https?\\:\\/\\/videodelight18a\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "0e6aa2529b96c49b7cf61b5774464ef4a71b7d2ac4447b7816eb2bd1d9a3a63a", + "regex": "(?i)^https?\\:\\/\\/asdwerc2682\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "90a96b623b69ff7585aa4ac99e37f5ff68691cb089219f91910616b1b09b6d51", + "regex": "." + }, + { + "hash": "9db2e6aeaf757d507a80524f412850bc7f1438539ac3868e5ad32ac0d58f622a", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5a14d2af2d767f5efb094680e3cd6f610e454d60c407d234fed8f5de95eaa1c7", + "regex": "(?i)^https?\\:\\/\\/videohotflare\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "622d3b6fa48ebd2669a891a455596c183bb43ef3292ec5a94d13c740778df69b", + "regex": "(?i)^https?\\:\\/\\/ref4333255\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e36a18ffa98a953c588f115943c6cd33b662cb39b7652849c264e3bda81695d8", + "regex": "(?i)^https?\\:\\/\\/junocom\\-109929\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "7c81f1f507e031ffc4d9165a0b4678ee3c7df64ca16099af89140808b82c4aef", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0709442bff48d4d1f6583d7af73230007a14d0d63a4d4e2d2e0e9668e8989c8c", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx5\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4d2263625a7a0841ee52e0bdc8464ad3042fb04c6ae56c66919329a195b06f1e", + "regex": "." + }, + { + "hash": "6e95d73776505269a3fb94c4c13ec2c1eef763725ba4a4450cba56ec87a0deb7", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6cb534b4532bfbc079fc7cdbb4e9850c0e85d8fff4aa830e871a2a2d9bfad7a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9974[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "abd6d22a7ba0902cce50008c2406bed61cb6266e5034baa8fb971f5168422d15", + "regex": "(?i)^https?\\:\\/\\/videohotflare\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ba5fa576435f560861ee9a80a7cc542b5cd9b4c6193216b36f80b637e6f2d257", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzzz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8bdeca1adb29cee4bdbf8754da2b1e38544b0a1378907198a2cb447f0f2e933b", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d029f1481f5ce5e82d21d7dbe0fc07e9f543210e62c48472c1bf2914018f3481", + "regex": "(?i)^https?\\:\\/\\/videohotflare\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2b2fdc582ba9220db13577d07dc6d6ac788fb7a2eab532cb4fd7830aa28c902d", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9f69b82e268aac300c274397290f0338685b36ec4d53fe8222a7a321ff15ede6", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "77e35d40a6d4b6e114210ee9e5b95adf576b8b0784fe5ddb0cba0054a002fd36", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f512cd986e62156dca7c5b27e18c156b3975102607dbe7b4c82a7158b1128f14", + "regex": "(?i)^https?\\:\\/\\/uytrutdusrstusisdikdiytdtdxcdfse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0b7a7ffff23c2057342bb33339116559137da61781f0746f2a1ffee9c5a2eebf", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "55f13df096fa342aabd94f930dd24a164087c9272621a048506f6e96f8154a7f", + "regex": "." + }, + { + "hash": "fd8426310bbbeb6d68829a44cf24c4e0b9eb59eed5c49377886628efdbfd6524", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+google(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1b11ae12d02d079723789596f71d2c0d605d1a694dc797001a32972200c71942", + "regex": "(?i)^https?\\:\\/\\/clickinnovatehub\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3f67300d2ea9e714c22ea90f2d85225267dcbb98eb3d81781c02f94cc0025f4f", + "regex": "(?i)^https?\\:\\/\\/asdwerc2682\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f18b7c25010b95c86b849db1533d2c2afc16385a9e2232f90ab51f0f323342d6", + "regex": "(?i)^https?\\:\\/\\/uytrutdusrstusisdikdiytdtdxcdfse\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f12ed2f8198af0a499f8a0bdca690cc87e6a943459497e55e86495be7960212a", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ceae6e48e5e9bd4d0aa043d8f6d1e8881552c044991fa46c2aa29dd92fe407a2", + "regex": "." + }, + { + "hash": "972f062bb1d999b2786f77acdd39a5ccb5051a8423d373baa9ebdbba5a8072d9", + "regex": "(?i)^https?\\:\\/\\/clipteaseme\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ce3dc1f36b029d76f17c835d3d422ef5b004370eb3c928f697c64792306b1298", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1b8f907e2df2c8e0503afe1f1c73de396598944089cf40201d3aaceaea95236b", + "regex": "(?i)^https?\\:\\/\\/naughtyvideoescapades\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1e60a22ad9fbe5da418d3aca6973ef66395d22a2143c8d9a549b40f4dde249e5", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "79e0699fa23930c701b5e0e7401cf8fc51831cef0fc9e24b1cd994febd7f6a17", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "40557c869bfffd0bc6abe3eb784681d030f66d2b562fbc6f427002c3cf211c7d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rlqikelmc\\.com\\%25E2\\%2588\\%2595ooorxcplik\\%25E2\\%2588\\%2595rtpykumdo\\%25E2\\%2588\\%2595tbcfuua\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=sazwnzyuc\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c0c978f2c6b6f7188d0ec7df94ffe472ad1678684778fb154b8d62368290f3b0", + "regex": "(?i)^https?\\:\\/\\/092648\\.com\\:7730(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f1c328b6b84c000afd71e5bde82ac7d69f3047231fa20c726bae79c12a8ab6e3", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "804c8a65568a50b367544dc9db41785b85d976cdc1a77c9318e5c3b1056fad1c", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "130509fd185b3cf508f5fd08abdf8978b6288f3d065ae9c4288998978e46d615", + "regex": "(?i)^https?\\:\\/\\/bhautikr2409\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "aac4965dfd1daf4933b17c9677b330849d6a0783742699609f595101b8220ff7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r[\\/\\\\]*\\?id\\=h1020a75\\,d7623c\\,1ac8b\\&p1\\=eceservices\\.co\\.nz[\\/\\\\]+chameleon2[\\/\\\\]+file[\\/\\\\]+doc\\.html$" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?a\\=index[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.ph\\.\\.\\.\\%20311\\%20\\.\\.\\.ogin[\\/\\\\]+index\\.php\\?m\\%3DUser\\&m\\=Info$" + }, + { + "hash": "ef754bf64b108e200196107d2773dcd5eab9aa27638d39c41055c9a6fb25a944", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7ee91f781f8b81539630a5131ddc9835dd27ac2cd13d046ce576ebf3c1e97aa3", + "regex": "(?i)^https?\\:\\/\\/2024hotshow\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Order\\&a\\=daikuan$" + }, + { + "hash": "c216e9bd2c7502f55314f2344ab6a82c1482450baf4ee8d5d699f6bf9ec833aa", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "26c45168c9c1c7db86eb9b6a45b4c00df4b3ea57987dcd8154e6fe24d35a5399", + "regex": "." + }, + { + "hash": "28beff0c28822cd7ca417b20c1e0c0a061c156dd8fb4b472d53ceefa5815c033", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cdb0a164ceb64a8eb9f18d3e756135185be06df3fb6a9d9b07a2ca54d5d301f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ad1cbe454d6a82c466617e712c38475f1d69562ab4ae266ac6d04c0a88868be3", + "regex": "(?i)^https?\\:\\/\\/2024hotreels\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "47c0a13c2e25ce69e34ff874fe08554555518b9c1bfd7f18f863aa8733eaad90", + "regex": "(?i)^https?\\:\\/\\/clickinnovatehub\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ad8c9bf53039e24cca3a8f778c6e41130f15807cc2fa7eb12ce6204ffb91db34", + "regex": "." + }, + { + "hash": "587f2644c4927f66e41318707011ce633d1cc0ea19947b52e4729ee747c24154", + "regex": "." + }, + { + "hash": "5424bc941a1f18ab4bad49295fef15b2ebe92d2b941f18e848ed641b95d2a7d6", + "regex": "(?i)^https?\\:\\/\\/clickinnovatehub\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f92c8f56b6d45f28705974a607b83b15b8c490f29c0e8eab94350935d65fe529", + "regex": "." + }, + { + "hash": "73208d776195b9dbf70ca44fcc4072f4eb6184a487b4ab21fd2fb7d9d2159653", + "regex": "(?i)^https?\\:\\/\\/88robux\\-here\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0da37dcbd3eb8d1dddee7f2bb91888855815eb4dc592e940820545120ef9b05b", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2867430eadec0c1a994389c0f8e60b673c01ca778d4e7475c3dc50bc753fee87", + "regex": "(?i)^https?\\:\\/\\/videohotflare\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b92bf79b5addb879e12c466438c3501135cb92e7df19afa342a7d3992066afd7", + "regex": "(?i)^https?\\:\\/\\/hotvideopulse\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "733378ca4983f135250b9cbdbae8aa89e5745f63ad22afa9be3839810ef4f747", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5e7e3b7066e332bbc9d32688c04cfb3664c4914905ad030421f6238c04907e4b", + "regex": "." + }, + { + "hash": "bd018cd040e311656383332f7cda0129678b201d533a32806180104449082edf", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzzz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "87785c6e987a808d8caa801098aa634f22387c1cc23b8ea36b4b484db0464426", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlineph\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0aaa4bb6cf69273f11c6c1c836b04e2214e4e37b3117ec1c1405d1c5dd7e4b86", + "regex": "(?i)^https?\\:\\/\\/videoxhot69\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "710ec8f7760b0c42818a985267d0a5474fc4a91bec63bcb8da5bc0f0a8c83b41", + "regex": "." + }, + { + "hash": "d67d88fda4ee2f648f91e2079e25915ed0b2d5b596bcbf41fa7de5c0f09833b9", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6359a75a993ee707a149268f35e2d876252f84ba90c9b5b30c79531423c51385", + "regex": "." + }, + { + "hash": "cb35f0b032f1a969e7298d2395ad842965521899af957954a12d19e2efbb4cbd", + "regex": "." + }, + { + "hash": "c0c978f2c6b6f7188d0ec7df94ffe472ad1678684778fb154b8d62368290f3b0", + "regex": "(?i)^https?\\:\\/\\/092648\\.com\\:8866(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "07c80bccf09daf8e28ab50036f2acc742fac182957fd732aeb9b3274af9d379e", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "735f65fa95dd049dc84ceaa4236a2a61045593096673dde33f9213d2c7d92d92", + "regex": "(?i)^https?\\:\\/\\/2024hotreels\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f889a8a52ff3f8d25daba222f80c3b6a863d4fa1d665c8bded7941f1e0f47f21", + "regex": "(?i)^https?\\:\\/\\/uytrutdusrstusisdikdiytdtdxcdfse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c2fa2e7660e4c341d47dc8b134d2982cf2478e46bd2789792aefc565da41ac54", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoglobal\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "66a7bfa09f2e85f8b71c75b01d9453972905f86deeb7235ece7177f383ea30a4", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c7d1e57625e3fddd203018ff9a98cee405af4c04fa8fed78c23a1d5410e601ea", + "regex": "(?i)^https?\\:\\/\\/88robux\\-here\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "dceb9c15f5cdf369a7880cf2b68902b3740c72258e89d1b0e1486985c4a0b8b9", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bfdfd274af4139897876087acad2e6135d662480ff8cedc023c0e12900145165", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "3994a94fba0d6217f947f2d70a1dc270462c2cf0c4d91b0585aa1a7c7c0be138", + "regex": "." + }, + { + "hash": "7637e424f481fca17e004828ffa264563a6e8f83c5c9159e0082d78a5a52a6d4", + "regex": "(?i)^https?\\:\\/\\/uytrutdusrstusisdikdiytdtdxcdfse\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b013ac5ea3f6121694bdc1b75119e990d83fd130f4d04e1bc3e8fca9cc9135e8", + "regex": "(?i)^https?\\:\\/\\/nigahtyn2w\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "da3c0b0c3321114dc58877efd883eece13d659508f6f0045705e00f9313f5e63", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8a2f023cd3be51c9386be1dd25d91f88868c167d0f1d251cfbb84bd3c6a0d2aa", + "regex": "(?i)^https?\\:\\/\\/pb3653\\.cc\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84b602a56b4313cd37a96478e7dbdd1d55ed14ce6f08ab6f06fb70e58fda1113", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6a5fe2ef35c6ac3dd88460463ed97e1514376165be6502531bf4eb51eb852458", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "584509ee6d5dc6d2a919396f7b8389721aff60828726bdc95a9141523766097a", + "regex": "(?i)^https?\\:\\/\\/2024hotshow\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7a4656d07950b44712e86a6ccb854f501790464a32393a17e91c3692b9a922ac", + "regex": "(?i)^https?\\:\\/\\/naughtyvideoescapades\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8a76c87f950b054bd6f167625d8f683bb7fc5e368725f12e95ca72be77a34736", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "b42bf211b5ad64db3a837d8a0702b65b59ff149174c1096d93eef17ba6f6820c", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx6\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "49ef154aeb7a475e88b073367ff9da67bfb42b40f015d8e117a1c1a8e6eee535", + "regex": "(?i)^https?\\:\\/\\/2024hotreels\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8603b7406b5d05fc59baffca2d8db2194950c90ef42c43cf8fd3acaeb46768ce", + "regex": "." + }, + { + "hash": "c5a65526dfe119caac5659b6d2277879f6bf9cf1bd88c3274c71240285455c77", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8b66fcf30e52a93965376ae3a13f28a8b7a59ff25b649225f1e1cdeb625532e1", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "13ef14c1edf1eec0f0f286d1432758b1f6ebf5ca6d659347235b404c50f74988", + "regex": "." + }, + { + "hash": "705372a8a4c3a50eb120dd8bbd4b76c0cf7afa8a768c357241d07a99307d65a4", + "regex": "(?i)^https?\\:\\/\\/clickinnovatehub\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f2b6caf223d85908a6e627485e3abf734e1858bbeb15d6546d568c451ca01556", + "regex": "(?i)^https?\\:\\/\\/2024hotclips\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bea1d3835fb982e3d1aa163e46712c3b5c10df8c9b845bddf2e466bcc6171d94", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e8b47b5b8b470a2c1b00ee8c0f88044baa956af54f29ca89c2a8fbb1a674cd67", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "107fdf0e5f18ef0ed176ebe80c0913e5089aee82f5d2e1df3108e6ad8de5a668", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "794a15c8c97e189a2575d12dd164a54ca2ca88f5d4e759e898c2047da4685a40", + "regex": "(?i)^https?\\:\\/\\/videoxhot69\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "39f6412022a05076eab6c8eec03166ab381f0b8e04e84cbe68334bb02a742161", + "regex": "(?i)^https?\\:\\/\\/88robux\\-here\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c891907e02c21750a488185a520cdd265a3aa0ee8f685baaa58d0cd75141a34e", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e46eb2ca03b1a342b448d8b5ccdf510c2acb2098b28213dcf54c18edd6738e51", + "regex": "." + }, + { + "hash": "aa8f2409412848f83a230170a9db82da86f55ef53c56462f84151db32a0e9dcb", + "regex": "(?i)^https?\\:\\/\\/clickinnovatehub\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "90cc52376db6e61476b12f64d3ad53709575ade822a99fda543166e19434f3a5", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzzz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9a322ccfef220b0470360eeb9e2733cc94e0456f0fc97dc50e0e5bb5417b0039", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e466d3ba587add9587ba4b4da72c41d3d5fe53625802b5f044edcea536c22063", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "20907074e328f38d371429810db388a88a6ca376e735254cbf3fe1683295d0fb", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoglobal\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7da01d40f53017fdd9ba919069f7b6508caa1f015b6c3ce558afc762f8dd4e7e", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmaPiFQzPuXoVm2yF7ujkHKMUy6aoUpMLGzmNEDjeL4iKN$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7cdac77c1ad72c7f5b506f68f05be3b70af342135222adc120e3d7791a65039a", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d1a7eb04fd008134128c5e97f5778e7039416fd59e1a49927f2cc9a6ba3d901d", + "regex": "." + }, + { + "hash": "441888cd9c2a71ba4a389dfa9c0ddbd97c02872994832d6716afad2bc3b41ebd", + "regex": "(?i)^https?\\:\\/\\/88robux\\-here\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1b12a826de30d8f836a5589a3619de31f8d99a40462c6caddbfc06afcf2425e5", + "regex": "(?i)^https?\\:\\/\\/2024hotshow\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "faa07a3600aa51a625c73ef6be632ed75b585ca257d745eee728ab58ca4690ec", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoglobal\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c0c978f2c6b6f7188d0ec7df94ffe472ad1678684778fb154b8d62368290f3b0", + "regex": "(?i)^https?\\:\\/\\/092648\\.com\\:9900(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d853be7ca44bdd1fe76b41aced1fed21bcb853d9273b3359a03c22e0abfac160", + "regex": "(?i)^https?\\:\\/\\/2024hotshow\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c6e682992402c899c51c03df99fbd5e7207e9ca0c280975d1bca416f94957325", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "67b4dc434e3949950cabda5f99affe611498f160ecdf73c190e7ad5d125827a4", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "0d2b08b9378bed2cde79bcf29d04a4080298f7da6f69df5b1f07e4447105a2e6", + "regex": "." + }, + { + "hash": "ad42488195a0429b89b3c9f58cbb3c1eb3541609288789775dfa013e3abafe6c", + "regex": "(?i)^https?\\:\\/\\/2024hotclips\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "76d8fbd876969c3e28775d3e8001cddf59b3326ea2e3f749b6b168e6a701e9c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3e2934cd6e724c1ede156de6e5b272b55bfc0bc62db4da0198e6a9baa185ae9b", + "regex": "(?i)^https?\\:\\/\\/pub\\-8ce1c40cbd0946e8b23d141ef746bc9a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "76517dd29bf7389cab82f66a220a792382366f4fde5594fb09ad72d64b272c58", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "84900689ab958d2c0eb9e6dae4c16e2e99698ac389c97b91e8c2759d71c50ac3", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "108c51076030d0ac273bdbf1fc81edc56f457fa6af6f7308b93bdbe6852094a4", + "regex": "." + }, + { + "hash": "493361c64eba864f2d93851e5dd3b89e12afdd056ca51fb7c4d5cdab9fafafaf", + "regex": "(?i)^https?\\:\\/\\/88robux\\-here\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "64ee9671c3e24abd1d0ff8381a15d89f3cd114480bfa0fad2ed8a64f0bca5cae", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "325ecc526b487b622a536a27ee4f41da3e06f5ddeb44ee76f3e07a887b356e58", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e6f7731a15c3f016d0480e67305b841522547eca1eda882ef792c30cd94e3708", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlineph\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d9088d53f070215e2759e2d0157e2d7a3458069b4e7ecd924455b5fb4e78b883", + "regex": "(?i)^https?\\:\\/\\/2024hotclips\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f76885ccb1b1eea7efa6a92567880896d06ecde88c71a73fb7da88ea983aa379", + "regex": "." + }, + { + "hash": "55045bba7670458d75e4572ecdf8fb545d64ddfaef2e66d84877ed2826b9d7fc", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9b0159f2214214a6cc6cf4101eeb444149cebfc2d62fe05c7d2c3352feb5d4ee", + "regex": "." + }, + { + "hash": "ddb75f4bbaaf6386a5c614c9d973302aeec4721e5d3303170685424273f75177", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "81050f07e93da0fc4f31eaaa4ed6b49602a53b19971fbe988ef24a8b063aef92", + "regex": "(?i)^https?\\:\\/\\/2024hotshow\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b4a161281d2ec6450a23cf014f2bc8c9e9a41f32e3b71409ffdf083db658cf60", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8e04f1b7e445bf32f3f0562af5ee265d29cdd396a5f9f6f6263739cfece15caf", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f456dd18619318dc9e74288e4d72c825028bde288cd258a4d414111236151e82", + "regex": "(?i)^https?\\:\\/\\/auiorhsidfuohouirhzouruioediougdy\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "73252b138c3aef3974a2f0d2dff30b6d684ebd79f63221240348394a6a9bb7f2", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ba2a306b1e260d296438b2cb8dc356a88168086647f290d62e5562c400488ced", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzzz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8b96d7ce90ff3ef01ce5a9fdc87ac5c9b360986f18cac4845dcbdb710210ae7a", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "258ed0dd51999e3b9f1ff13d90683e05db4798b7c57a77834ca0f87eaf5bd238", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "3cece14b11e46a2ef8531b38b9addf5b2d132d0eb1ce5009e6492ca3d9d62d6e", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "1fa4c3f07003d3e015dbdd5d9b6a87efb3bee695f592ae69f5deff70e9ed50a7", + "regex": "(?i)^https?\\:\\/\\/nigahtyn2w\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bcd10afd8c5a28712f089561843cad53edef920ab8c4387cb7a20870a7a34647", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "358512f73b59f65911f7d52b3371fc2d89c3b4d93add4237b34fd0113f76e0c2", + "regex": "." + }, + { + "hash": "16880d812d75ea61d8f6c7ed3ab92eccc8bfd1c00c2964ccef24233f190be1ef", + "regex": "(?i)^https?\\:\\/\\/naughtyvideoescapades\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7c890aabed8f340843ffa0f77ac5b734aa9e30ad724af19793c737b8aef67edd", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoglobal\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cb2fd646c417e0634ada2af43955fea1d5d749624583213318295df026f3c44f", + "regex": "(?i)^https?\\:\\/\\/2024hotclips\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "18c8c526fe47de1132ec4259173f3d91de1dfff9285fbfb2482fe4c8f56347eb", + "regex": "(?i)^https?\\:\\/\\/currentlyhomesattfolderviwes00989900\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "12b47c5a3426d17dfe90f04cd3b6f8d3cf4a884cfc431cd2108a1799c46e3056", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzzz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1575d76ee2418a38a3dd0a4bcb55c61f6b5b332c0fa71355b44f620b16612265", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "974e3d6660745921a4226964807f00a0b5ecd1ca9038cf8e42873aec368a7394", + "regex": "(?i)^https?\\:\\/\\/slot\\-bonus\\-100\\-to\\-3x\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a8b8beeb1ea3922bb73c2390723ded799a1d4a9d694bde5cc3ef9b8d433e332e", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c0c978f2c6b6f7188d0ec7df94ffe472ad1678684778fb154b8d62368290f3b0", + "regex": "(?i)^https?\\:\\/\\/092648\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "117cb8e7adfa3350c10d8634ac0285163dbfb1a8c9b158cb727c56c575c45395", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx5\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e96e9a873235a51793108c3f4e118d0aba4053cf88bdf50da64fa9bed8aac866", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3473edd2f51af95b9d1f52a5bdd21fc7b76c0e10f37b59eee64d158c9d34e790", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "237809bab7dbd6c1c98e25164b983b14723087f8e2c37daaea1f21c0e1b005a7", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8c6de535ada7ffa807e7909f7712f3f287487aba0209fd8c77ce185ddac98349", + "regex": "(?i)^https?\\:\\/\\/penitta\\-1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "eda9a95be4d5116d3e216a750407acd02fc8621f5bb5542049b9f87a9fef2268", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f956c2e8530479481b9434edde60c2a5d00c2a91b1ddb3bc52f431f7a9867cb4", + "regex": "(?i)^https?\\:\\/\\/88robux\\-here\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924b2259d4\\-3051305f\\-4517\\-4fe4\\-b5cb\\-931f9be31060\\-000000[\\/\\\\]+mEF7cVdMIvzjnMlm5NBxWQZM38Q\\=394(?:\\?|$)" + }, + { + "hash": "0890a4fc0ebe7064e41144c4c6a185f8766bc7dc61c829b5567109694449d111", + "regex": "(?i)^https?\\:\\/\\/blazechaser\\-embercatcher\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4b2529bbf123f8ae960bc4883a33047394ba307bafeb0712d3d62451d96121d5", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ab9e2f0e39f6f2268b80a090371e84431d84bfacd1e2ea438a7c933b9be0cb2e", + "regex": "(?i)^https?\\:\\/\\/videoxhot69\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7b3e11ba346f27111b3fa41699f022ed2aab73f75cc72215d74337a5cbde9806", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4cb2a4a608f2fda6a78fcfc57dc7c1508fe56bf2af767304806940430845282d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nnrmsij\\.com\\%E2\\%88\\%95tlqsdc\\%E2\\%88\\%95likoqgftws\\%E2\\%88\\%95guaygdsqvx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=oplyyowp\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d929d2cf3640bf921053fdf251d90158b457f417ce6a587a8151b8af4afa82a8", + "regex": "(?i)^https?\\:\\/\\/videoxhot69\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "be77c993f9fe7839d2dd5226c1d0dd2b3227280acd6a0d39633fc0d7a8e01483", + "regex": "(?i)^https?\\:\\/\\/2024hotshow\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b86286735561ab63aa937760331ca01846816863047974ec969218027cf0560e", + "regex": "." + }, + { + "hash": "cff3c9abb16d3e473b7dcfd8d2d9908123a5d9b97330c90cfbf5745ff3b91304", + "regex": "(?i)^https?\\:\\/\\/uytrutdusrstusisdikdiytdtdxcdfse\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "46e2f07d8ad713616a0988859879ca50349cd5c3d1a7a65bd532b2e77db260bf", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "abfaa658ba41d60846b6747b4dff8469f094affc0267e51c2b5b4be4ed9b3aec", + "regex": "." + }, + { + "hash": "bae37d5e1793e3f5654822f4900b772b14ee86825b07ead6168e6458d4c86e7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bh(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e64bb37cecb85150069535ce70d5a4947586f5fa61fda25811133fa7d330ba6c", + "regex": "(?i)^https?\\:\\/\\/2024hotreels\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b4f897109c5f1944edcfaf7336105b8c3cbfcefcf6d842af8ee6441052962f6b", + "regex": "(?i)^https?\\:\\/\\/www\\.focalitems\\.com\\.199\\-241\\-138\\-52\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ce3370d4c7b8f9f79fda01d8775854882537d856b2ef6e5bf0b809235ffd36a7", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4c3d38cf07da624b5b6f61a463c329f47ce6b7c2ea01447b31881ef96b7715c3", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cee0104fe60e1d76afb9308090ba19c5dbcecf19075c4b8f44cfdf7799335222", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx6\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "52594e26657db3df081b18364395f82f72f8408ce2127cb912ea724d6c25f750", + "regex": "." + }, + { + "hash": "2e971143680272933799e9c23c24f298f480f5fa4a1f39dc4d1545944e76d61c", + "regex": "(?i)^https?\\:\\/\\/asdwerc2682\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "706d880bbbf1e5fc42d1235c12b04dd9f14b8f251e1105bc353244f1b84669d7", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "22155514814aa8592de148ddfe49aaa14c7c3ec5adefad0a403c8f150034b1ef", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cfd16796b85fc64d023b9d093bed215a932f841469d4ab8deb5f09747ddc036a", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7a8570967f1b6da359f66befc1f5a4696b4bb0cb7aae7d110adde7aebc91663f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "09448230692ccc862d610834385c97d9e4d467066f1e2b3b8a079a3ce5c9942f", + "regex": "(?i)^https?\\:\\/\\/clipteaseme\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9474fa973fefd13be557131a958673ea2d37039dd4bea61fa199fc2566ab2f88", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "79205701a2ba41b6aea2bf07045b8a76d424480222b6dc8da2eb0a82d7c0b5a2", + "regex": "." + }, + { + "hash": "5711e076712ac4f19272db96bdebc84b758c483a917b92d462b200639fb6bcd3", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b3d51964dbf11ac72e07d3dc9e4dfb0d5117a44c887c69a26fb8fc821d29c587", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c7bd1837d813a577a25dc2a6166af5a14f942c4f9821cca53763390a24134389", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "be8139ebfc075b2038380a36f5a726bf39e79105d279e2a995a1285b373bb8dd", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5a146bebea29e5467257f51952ba338e9878d5e79b92884678cbb37c67021441", + "regex": "." + }, + { + "hash": "f6d770b945c8c50fc7e3f401f5f40afe3c5e6b70e9392876c58469d651af66f5", + "regex": "(?i)^https?\\:\\/\\/hotvideopulse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "116fe6c40970671b2791edb923905c98c7f2842dc14535cf83d68f7babbeda8f", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx5\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3b066a64524133e7668b2f398e62199d6db4ec85d82dbe1b7ad2e86e4f59a0d6", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx6\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c9cefc96a7a345eca1c8465973b063782a83a4b9ecee900a967d147ab46fac09", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx5\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1c97bad0f5538f4deec1f5f9aa682ed5d0cbd28567ad22a1cc1df4947b1e184a", + "regex": "(?i)^https?\\:\\/\\/videoxtodayx6\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fdb7707e5408882524afb2296265c71ae2f12c5c47e98563ed85fa11da79aae1", + "regex": "(?i)^https?\\:\\/\\/pub\\-79160ac8349241e485c4d26eefac91f8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3f104759493fbe71e367198488c1953878c9075c1b2cf9fb858be90481f79e25", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "0031a2ef30e9f2753cf8ac21db94841f0c0757cf08275d48f4937df102f74d50", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "aee02c02e76760126f3217ce3544ded80e97e1a3a21725cfcf2e716f78782858", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d71b7c054a8259f2e4ea566f9f94dae3d74077310c23136c39007976b28fdcc8", + "regex": "(?i)^https?\\:\\/\\/videoxhot69\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c77e97ae36686efc73e9aa0395161d42414d4d2ff41131f7dce725201d43a3c8", + "regex": "(?i)^https?\\:\\/\\/88robux\\-here\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5a7f38efb0367a9d2f110a8d8cb9dd7ee75843319d4b641ad74f6746751bc94a", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b2bd04ea34e76c85c7e000607849d90983cbb49c08f270cfc24b818c2d6748ee", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d1c8d439757f8fc84d1a3c988cdccdb6691bb7e9f3f8fd1f40268114e9fbdc17", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoglobal\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "869d109fdf21567bc5b547fa4b80e1ee71b4a8ffb0bb6fea6a651f8fef850948", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f09b80a840b9ab2294289421980879d55533537994ce1ff389f70a985ddc9178", + "regex": "(?i)^https?\\:\\/\\/videodelight18a\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "984bce5842ce8e5ab6d57681e15e9855d1eac20c2dec196775b84c530b98d6be", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7c39991a7275bde9cf82969c2e7a2f7d4acca3df0412905dc4c8df2567835919", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-impulse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "addbd7c3b0334119247f7c25e93e1fb6a53041fed9c903defeadee31a98c21ff", + "regex": "(?i)^https?\\:\\/\\/renewcustomcsnet\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "20ed65ce8e30a79791e7c7b9f39c4c5605c9600378440227cb89ac66c05fa2c0", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a5afa82968f02699db56871eb3b76eb99fbc2cc6d32b8c8112856829b09b313a", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzzz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b5ec43b844d6315b05fd251cf230de150f691df637417eb31dffa0c3b2d2a6ab", + "regex": "(?i)^https?\\:\\/\\/hotclipchatter\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9747154f90e71009bd129c874714d5da5e9119f3a1fc1800745fa4165fe53e5f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e7cc2a69f3a6a88f5f4f11df5c60d4c0b1d4de3437f1bbfd3625fb96e9e171c3", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3def2047550ecb8a44ca14d47a687b216a07dd14ba6bc97db7a5b6e6a5826", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lplus(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "abda33d463fcfac07bfb02649301f9e37ebc0f0d1e888ad7d2d75730aabca667", + "regex": "." + }, + { + "hash": "96d21b22df7600f3144f21d9dfce8d73aa3986d9cf2c1902a8b09512f2a6a46e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nan(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "923aed5ca7d12adcf72ed5e6090985b5554f3932efc9026d8f02ab53be06ad41", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv5\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7cb3697d4771337efd49f6241ee559f106bdfa1cbb1f165076fd45cdf2cfe319", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "6659808dc588c54ddcdc8f37444a7d027fee8135753236801aebfa5257b7a966", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayzzz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d123ddee5fd5e7a936417e5b0cd520c506db0b142f22cc6b5758d50154b4b4c9", + "regex": "(?i)^https?\\:\\/\\/hotvideopulse\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "99a92101557e1bcfbe8e29b8c6d449a4aeddfced97becab14b17cda62690a447", + "regex": "." + }, + { + "hash": "08a043086a1f7524658fe75d9e55b077d8ef11869360d47d885535d3d325b885", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonline1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "721305d913a60a705f27e33215066bc881ffe1e189c668e548d42fa3430d3fa8", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ba3d013625ea1e8ed849718b281838fcc817922745926a24943f016e62c8ecb7", + "regex": "(?i)^https?\\:\\/\\/coinmaster200\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "87e1c13ffe359ac3f9e5b197f60f66bab3ee52903394dabd24114d88731345f7", + "regex": "(?i)^https?\\:\\/\\/metaupdsccs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a180b637a821819836355cfec3902c63a36951370b9b9d2bf0c863d008060162", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6cb534b4532bfbc079fc7cdbb4e9850c0e85d8fff4aa830e871a2a2d9bfad7a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9974[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "a812a749f7498752a2037c3c69e580523aa45b8982f0618b896943124ee9fbd1", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexph\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "76d8fbd876969c3e28775d3e8001cddf59b3326ea2e3f749b6b168e6a701e9c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "73b3497b87fb8fe400f60d41e18e0d85e84cb52af1208f944ea9ce916e3c7dbb", + "regex": "(?i)^https?\\:\\/\\/dasd739323\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "aa2a4872b842a123498273339bb3659b75e083cf58742d005a9ded573f74dce3", + "regex": "." + }, + { + "hash": "291bff608a1059cd5dafd67092c1f541261528062ebc6c2dc72afd92ea10663f", + "regex": "(?i)^https?\\:\\/\\/hotvideopulse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f89703a39c764f00af005bdcb4412945032f4b401fb5d88955130de1c183a834", + "regex": "(?i)^https?\\:\\/\\/u\\-eaytpoiqeuiguyqtftrdarztqdrtdfqs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d386a10d5fa57d2bbd44263e7520b711066c5e23c675223dbe8f099409e68688", + "regex": "(?i)^https?\\:\\/\\/clipxtodayv4\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6cb534b4532bfbc079fc7cdbb4e9850c0e85d8fff4aa830e871a2a2d9bfad7a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9974[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1d4dd5e4fd6c338afe0816b886b8335f49ac3e156e7116f020eabd0c9bfcb3e9", + "regex": "(?i)^https?\\:\\/\\/asdwerc2682\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "5272b55c1a8c096b70609bc47fb2bea4a2ee9d71c374d2075b3c79a40d8e3934", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "07d4705a43106fb054b1783f5879d18fa1a2072ce952cbce4c2b5d745b1f6aea", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e0121cf29c015f5a2e14b70200c0dab8bcf27c3e4b394c248c6b2edd5e36bc37", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5292adf1e1801ab36b1bdad93e7c4195e5f6f90453ab81e86ba86e63992e529b", + "regex": "." + }, + { + "hash": "28219c44037d614ee202ae86c303ad3c8e7cf5018d1660d3cd3ea6da676157c7", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3d6b72e803424817739f785f13a6148160200efc77a0e1d60bbdc59eb6650051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmSQnmJwekXGayPQth2QqKbxEmjaZhzHFCbFPxrbAzF9Ch$" + }, + { + "hash": "482aaa37bfaec2cd82e4635d0980f30d76eaf4af7b4ee2e4975e69fe82796bc5", + "regex": "(?i)^https?\\:\\/\\/comojogarumjogodepornonoroblox\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "68fce75439c2fa96e85fe8e2b12bd8cd5ec3212cf735bb8c6a7c933378411ff8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "6f3b3a4010ae359317e01c42c90367e4dd14d7019ccd569b15aba186f8cdbdd8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+GT(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5af3589a2bb402091f7f08e7d9d17729c9bc1f8e7808717125423c6a995aebb3", + "regex": "." + }, + { + "hash": "df5dc977465a4b621a76f81d32bcad0927eaf4f756f3454dc3c83c373aac110f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.tly\\-2F3JjOADFhgQ2wm7\\-2B2vN7ZOxhesZkvh2joylE6FyT8IsdKZHMM\\-2FtOeA5SOSvA9GHK5NdO9eUMjQv\\-2BN\\-2FUkIRlhkUyQ4vL4PDXCXoVzYyfO63\\-2FesVTKBGu4u\\-2FsIX\\-2B7V\\-2FimzPRxkplol9e2I\\-2BoSNRhw\\-3D\\-3D_kpq_9xv9\\-2FugEDeGucied2HHXPfALd2fq8nrPStnIQI0Nnk2jdbI\\-2F1DyR2ZHM6e18vH\\-2BYUmJ2\\-2BanhyzdNJtIJ7J3WHnvy3OPiRK1nzccGjagJzWEwoh\\-2B96HSVwZyHgtZPl1y57JWibwkYdVgqtytEG3\\-2Bq0zAawRG0IZQ0ct2wBEcVw4it\\-2FClV4VM0p29O6PMa4nL5XbKkwSe2KVGhXl5aVWDs1z6Dfh1p70H0RA9z90bB8ZZJBPOW3aSTIElDC5ivmpBf\\-2BuAU5IZU9MeMdKJvZ3hw3sWYR218uHgURsO48UR6qtuXox3tNN\\-2FFtH2fUwPHRjREdF\\-2FhQkBwa9dL\\-2B8mptCyQK8TfXjytlD5HVhsDQF3i\\-2FYsq9vO4TGPbHOGXE1pqFKASSZYvxl7G6oXUsZrBHNf4aBnL7iy3MHH8OAmowSSZzIAI9SZhD6uwNgFluYz\\-2Fq9rLoij0Cl7qWq6ghxMsqCd1usmWbA5HXrwPqX4vanIL5CaUjXb5x9qLfczJ90LXGIs8DVMSuWJYzZcwLeUeTZoFGpMGoc2RWF\\-2FVEGtDAUN2Fh2QZiCTs\\-2Bz1p4v3\\-2FyfEi7IhCotW7ewilYTM47RXK9oIJBtbXulS9eButt3r\\-2BcTUssj\\-2Fh8JEmT49IQEsZ7ZhqBosggzGUnEC0FI7zrezbICnCFx33KyGAaiGG9nTiAbQtYnc\\-2FmIDAJlpgYArdFR38v70zddbvKIiLMvvXVVC0zn\\-2FD\\-2FqNScU7FRygnSFMTIY7iglhUnfZAmtGkXTRdp9W6OG3lFEkLDDdN4Peuzh7O2775\\-2FFmj\\-2Bz1ga7kMlfFZpH47bZ2PQsaFnMR2oVFu\\-2F16zWDYgnM0utFGpdwGWFiEHGC9MOEdG9pW5w8WTa\\-2BT5wu7I\\-2B4an0GAzXQDVmi4WVGSwC0E" + }, + { + "hash": "e1ec80086bc431ce828c6ea9531f29523a95f7c38672b0fd4bc3c570393cad5c", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "f0bf9c36e4edb30691146ee3095070abb96f1c2f8fc6ad9bf3b3aa6049e3b652", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fb1bb413ed34e2619c45742db36d7c22d93a05fcda20363419f2834e969e43b4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sap\\.html\\?lu\\=aHR0cHM6Ly9wdWItMDU5M2FlYzlkNzhkNGMxZjlkMGQwNmExZDJjMmQ1ZDQucjIuZGV2LyVFMiU5OCU4RSB2b2ljZTA3ODA4NzYuaHRtI2RwaG9uZ0Bib2lyb25mcmVyZXMuY29t$" + }, + { + "hash": "823fe7a17dcc1394b4d29510481ec2bf35a1fdbef3b0add18a6a460b5bcd7956", + "regex": "." + }, + { + "hash": "967f8f9ee3e925311f504c53a19972ba7e94198d6106d474a8f0ce39f4c18dae", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7a3c0b229981132e1ffdd8c6d6b3980c529cb5ffe308149e40a3201c9ae1e2a5", + "regex": "." + }, + { + "hash": "5943d20c48a88f524d480e0605c45255edeb0ac81eb2f8e21a2fc2492fc7edb0", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a6afb457dc288ed363e7bffb5dea09cabd22eea30d0c4f10a6bce031890e4fda", + "regex": "(?i)^https?\\:\\/\\/hotclipflix\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "f8d0c1e9383a27fc338537ab3faa54b9d6ce27f214633d9d4671b17d67ecd8c8", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4998203e72679e6fe883c703bc6c1dc31c47bf4b1788be3f0ffb4d8780e00ea7", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "315a989840a330bae393ebd5e598f4a863d537005900251f3eea9270bda40ada", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+$" + }, + { + "hash": "556c0713cd02f3cf78b3c633f73099a935e6c5f54838740cfc0250a041712a9d", + "regex": "." + }, + { + "hash": "b6a9e0e2e1dc0c6ead42b7f243eb3a4ffc88c3d7a7792f2af2c9717495e09034", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "315a989840a330bae393ebd5e598f4a863d537005900251f3eea9270bda40ada", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ebd64ae2afb8c6df3956d1d4a90355c45475cf8b40a3887d96681014bbd91331", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3c0af5f1406b48e713d119f4d8d3f2800619ca4905b6b9d3cba5996928283eb2", + "regex": "." + }, + { + "hash": "c3bd904a9046b5a7f29317985e0e48d2a6e498b383b520e721a8d56d50e5b7f2", + "regex": "(?i)^https?\\:\\/\\/robloxobbyrushcodes2019\\.blogspot\\.hk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "079c8698984e5fc0c26426eadaecd920990eef35f781d7075fc437e7e998e8ae", + "regex": "(?i)^https?\\:\\/\\/robloxobbyrushcodes2019\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8a4227794a3b119ab7c7ae993814ff90be656c89a98f068ab15aa2e4297fcdd9", + "regex": "(?i)^https?\\:\\/\\/robuxcardscyg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "78239cbee5e350e31bb42873a67ec59786e5ed5ad4940d66b00895c22228f279", + "regex": "." + }, + { + "hash": "e2cc0168b04e89638a3d1ae3c2e2ae674185ba37a1909d971684064f908fee45", + "regex": "(?i)^https?\\:\\/\\/comojogarumjogodepornonoroblox\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2626dde312273ae0c4219288a3cb0a24b4367ddc94acbaba26efa39acf5c5d9f", + "regex": "(?i)^https?\\:\\/\\/hotclipflix\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d5691da2d3bfe04c09a9263191057a027f7f34f098c34f9a60254963a23769c0", + "regex": "(?i)^https?\\:\\/\\/clipintimate\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ff906558705f7ac197aa75ed1dae93e0a8da6b03eb7e4f90080221fbb426f39b", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b0f19d44da72e80bbada4da5e8fb6eb71d1e70ef54cacd11ab2142230ccaef40", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0f01a27a734dd60d0bf13cbb8d5bd775a27c50daa0f234fb615a26829dd3bbc0", + "regex": "." + }, + { + "hash": "e6fb025f4a81fb43a2aaede3f0f33b303c5bab828ffb03690fc2f034e8b3728b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ebebc574c780fc6594b98d04def61cf7faf05f07793dc364a1f4ea6ecb36cc45", + "regex": "." + }, + { + "hash": "54fac3529e1118b41bc3f29b512bae0c3c9aaa48ce7f710ea3585b37e65811b9", + "regex": "(?i)^https?\\:\\/\\/online\\-verificationmicrosoft365certifcatingservices588838\\.se\\-sto\\-1\\.linodeobjects\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "033b75dbecca6864487b007a13077bc20675fa472d69d18291f0c3988d7743d8", + "regex": "(?i)^https?\\:\\/\\/robuxcardscyg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "71b23f907e08d1f20628b61f79b6bf3a6976dc0c6b4f920ee69c57f87891a3f6", + "regex": "." + }, + { + "hash": "cf3104f7b1907706a33094090d44f2cff3ed1d02bf582d94e6f9059c6450fae5", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "dc93e7a13081b7d608b4fb9ccd4a818ef5ba9aac9122e952cb8fa9964c44542b", + "regex": "(?i)^https?\\:\\/\\/robloxobbyrushcodes2019\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "0e4bd38ba064c92feafe4f7e71c76b50da59dc42b2ef756fbf6c1d06eabab14d", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ec76761fd6d7e7b3a04ddd675778d03bf0e819e50227ad5a1d006811e171128c", + "regex": "." + }, + { + "hash": "f5d038866f736ca499d93c5a51566c5e7be77b0068a3cd2245a5c3971691a3ca", + "regex": "(?i)^https?\\:\\/\\/comojogarumjogodepornonoroblox\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "df5dc977465a4b621a76f81d32bcad0927eaf4f756f3454dc3c83c373aac110f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.tly\\-2F3JjOADFhgQ2wm7\\-2B2vN7ZOxhesZkvh2joylE6FyT8IsdKZHMM\\-2FtOeA5SOSvA9GHK5NdO9eUMjQv\\-2BN\\-2FUkIRjMIL9fytctWszoSpZij\\-2Bo5T3ZC3H84PXuc\\-2BgLNvRYMZelu8dO5ckpjv4iqkK1y6bg\\-3D\\-3Dn_O1_iVSzfPJAjdZLztsa0\\-2BLqYFXjVT0C4lFR\\-2Fe2VInI0W\\-2FFm1WYoXaWDWk86Rqtg6MYWjVkbv\\-2FqZRi0nwwq0FO1L3yo\\-2Ff\\-2F9tMRwffpG369zyWGK8PSQXg1jauxcEl\\-2FzSRLWGkLiI9PUXQDtjKSILgLCwXtjw53NaYF6F9tJQfqhPHJPGnXTc4sJRtmCUDvhlj7hPxKDsO\\-2FVQtnHV2pLtKxpS3Xp9nY93BDIJhpuq0JeKdeHQjky1xxuyLxFVQp3FppWtASNgBP0TIJ9bQcgrSV\\-2BcAcZa6Hux91L03X9r6L5sknsZFFhxJMJL7euZ9Z6HaTpQC6c46LqDhk3rYM0fJpdmU7GFKIthg4I4wR\\-2Ff177ZxY2EosDn9OY6ClhKBzMHN1RkEcPmys\\-2FhEmvxBkmUASDxpoNFWhgpcPzchn16sm\\-2FMaVvJyWFP7vsASmaqkRAZmdl9l4iafNTA3GiVjPxboYWr0by508PhgFBvXv3bq9bRov90UdmYmbKCC8mX8QRL0ykG1LJsPZWL0sXEajgkqiEhlBPGlyssciCzdcoyVMyRYY3d2994VqgSqmEGwpgfsiQ\\-2BkQJwV7VZM5W\\-2FQo2H0mCer0DfCcWDAbNQsUau7nBadUWXtjbJXDSERF5ubmRePgt4yUxEWyA494LZdbswnm\\-2BANkCUlgHVyI19XevbPR5JaVBdrFx\\-2B7hjwjD8ud4bdMCHNaralNUrNKvagPSaOgcEhnpmlpzV0PI\\-2BbKgfjsMpbRxwD3SHJ9rwVMWMtti\\-2Fw\\-2F3KO7OY\\-2Frx\\-2FzWmvF38FNGqrgrzTxGuIYm5hrP5Pujn2mJHbPoAWmijl9b\\-2FEhIumocH0gd4bpExBjvICKaamyOXFqLZ89Ky40eBJ8WX7i2aONtVca\\-2F7ShVavX\\-2BGG\\-2FpPIUU2pINvQ1V7njtgzvKT2cUbfPswZS7ORR\\-2FDhfeHCSMeJ\\-2Fh0V3PDYidYtWVPVKWAzHRfvC" + }, + { + "hash": "3cc6cc102d28060ea20cf161356be47f2e32e692276bd7b6af3f8cad6c7114eb", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+QmSQnmJwekXGayPQth2QqKbxEmjaZhzHFCbFPxrbAzF9Ch$" + }, + { + "hash": "e4af16fd464f904e6f4c77818589dfaebcc960af138d7115509332cc62c3ea35", + "regex": "." + }, + { + "hash": "daaefd41b7999de53c5bcd8c09bc833724ca49cb88439e6fa6e31337bf36abae", + "regex": "(?i)^https?\\:\\/\\/clipintimate\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7c5a9d09d21f6a51ea7afd02fcc51be0089891fb3e3fc8e9a645dee8581180b7", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+x4rm2o(?:\\?|$)" + }, + { + "hash": "067291d4fa09ae3137fc1f18082e83d085c333191e2edea6e2330d50cba9b55a", + "regex": "(?i)^https?\\:\\/\\/robuxcardscyg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3b866c2e53226f16c8d79b6d50f645a07491577aaa76cf125b38c073555a86ca", + "regex": "." + }, + { + "hash": "05c1a0b559015291c3c4d038f9b911b596a4e1a51e886c780ed0f8167dd14d09", + "regex": "." + }, + { + "hash": "6bb3d8cc816e7870ed3a2eae516511c26c2fa3c6efc8bbeb9019dd21d0ce3ee0", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "a54ecd4312dd0e55847b6a2eba2ba3b8a05a0303d936c5cde36e095f95377f53", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2e95249b4ea2cee3102fd6710fcc4a8005922853db9ec0322f76bee8975504ad", + "regex": "(?i)^https?\\:\\/\\/clipintimate\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cfed46d127af588f865dc9b77c747b517dc62eea12bc955c614f9931f2fd915f", + "regex": "." + }, + { + "hash": "d8306eed793edd3a50f7779941faeaebe2f94a470c016a9d52535ffd66908cf3", + "regex": "." + }, + { + "hash": "af505e86bf3149bb88527c05354dff5fa8ebd9abe4d86d22cec834dd6d2783e0", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "df5dc977465a4b621a76f81d32bcad0927eaf4f756f3454dc3c83c373aac110f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.tly\\-2F3JjOADFhgQ2wm7\\-2B2vN7ZOxhesZkvh2joylE6FyT8IsdKZHMM\\-2FtOeA5SOSvA9GHK5NdO9eUMjQv\\-2BN\\-2FUkIRlffB19NewdS8t5Q3C8\\-2BSXOasuqDTh0SljaKM8LawVFQirGUC9hIo\\-2BmEZ21plbRJfw\\-3D\\-3DuV4z_wthfaUZD7D3Yxg8\\-2BPdAufqrvUNqis9snZql\\-2FDodZwYi\\-2BudakwMwqKI1aGg216ZDlWxkyanmdZA1EhPmfkQJiyn6E12uOqAoGep8UQDTKSqCE\\-2BJDbJ0Qt0\\-2B8rETcPHWI1sF3DMncQ8nbA00iRRStTjiS49nV9rNbM3BJSKLhGHl0NC6R0y1o\\-2BxVdPfI2neRogiRlPQg69Dch\\-2FZBDe\\-2BlTQSnfAdvUM6S3yUWzr5ZVP\\-2Frvsp\\-2Be4dXejGCOkbcjLf3Pic5JCssky\\-2BawXrRQAi\\-2B4ivCV3xYMS2vI\\-2Bso5qfizYJfexE\\-2BlI\\-2BTcbFKkqaNONz9enUxJHdQnCSe\\-2FiyWSSNGNqvfKor0yv7\\-2Fm8bB8qA0q9Oy0\\-2Bs1lAE4vtc7x4RiyDDuKRbtfL3XvseVGsNjptG39qo9jOd5BmtVkc5cqdiKkBvhED7n6zEifC\\-2B92KDCuHeIiWTO\\-2FYRvMM8LiNW\\-2FHIwodh5P9cRu5lTpDBYPk9Zn1wINuU31D8WAGxG7kcnfQ57l\\-2BFoN7VbqlF4cZCqFIiBXgwb\\-2FWZ02ZL1BdM\\-2BxuQznnrMFsCEnK1Z\\-2F4wA2o2NRjsFk1EEXprhjKUeoUk\\-2BNAm\\-2BfF5Jkq\\-2F0YLRIIIUKtRrXi\\-2Fd1\\-2BRvj72ei7J7vBUvS4sEFpBfwFz9RTL\\-2FP2tOHRR7a\\-2F8aYM7rxFt8TeDQMt5cvT8rvsrO9s8X97yilwkuSa0r3jB70xO2vaqYcBz0tlJEGW0mGOVYuaNY4lW2\\-2Bcbo8UuwIKWo\\-2BHJm\\-2BZQ5Pv08\\-2B1wvSYDj6EhGELjyeLElD3o6ee\\-2Fiy4rvtmVVf\\-2BN\\-2BKDw5enaeDo9PUTBktu0WZUNN\\-2BxOoEdpiURLOo21evCAb53RcRRPZX2bk20HeUBfLhjjXfnTffNEDTcAYL68czyO9xjrK4REW" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ac4f789d5122ed6066d1a307afe70ae42788bb7945ea14f48c124a9c7cf4971b", + "regex": "(?i)^https?\\:\\/\\/clipintimate\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "793badd162eb679d176c380f0f228544d88282612fb40220f3ba9c124dc60308", + "regex": "." + }, + { + "hash": "18d13678e366ce689a7a54e370b14353cd5e3f6a7339171cf600d321fd843601", + "regex": "." + }, + { + "hash": "667b40da0dec14162774c48551044defe89dc4fb806733b2d209c72905c489ff", + "regex": "." + }, + { + "hash": "4ba06466e627947f14a8983e3da107771cb9d26d317d56e6c873992acd10565e", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmSQnmJwekXGayPQth2QqKbxEmjaZhzHFCbFPxrbAzF9Ch$" + }, + { + "hash": "9ab373d1eb3a2c1a4148d9d4bc0ab0964f08c8034e0f86d45a9c5642f16e2b0e", + "regex": "(?i)^https?\\:\\/\\/hotclipflix\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e64c30683f0daa2518446fa211af05c1f5c75dd1ce91213951aed66c1828ddf2", + "regex": "." + }, + { + "hash": "2bd1bebad3287f432f2868dfab2aa82d4288547bf55ae396e6c7d2939fc638d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmSQnmJwekXGayPQth2QqKbxEmjaZhzHFCbFPxrbAzF9Ch$" + }, + { + "hash": "8e730dde78245c3f4a6c272bc1b62bee1a02c7b3e46bc2610e3e855fa4cdab2a", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f89be53dfc6c6a5232d65f1d494030cf261005c934261c5efa74f416e3952df1", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "be7735580b735414a2e2e3779002bd7049631d91a8cbc47f2ea22b514b3c49f3", + "regex": "(?i)^https?\\:\\/\\/robloxobbyrushcodes2019\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f3c426907c3552c44f57b50efac075abbabb6fbd963727cdae5c000cdf229909", + "regex": "." + }, + { + "hash": "52a5ba8bc146324c543e21d4097fc1cf6199a741174e2202c6a16e272d8c5592", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "95b8fabfa001840e709aa4a0ea00f35f71bcc8781d9a8ef4b259645da4f5f5fd", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b113687092d40dfcacbc7689348bd5afcafbf93ee8025a0bd1bae9422e32f20f", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e6a22171cb7343ec38c14ed8342282706e892ad52ee7fb2670f142a1655ccca5", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "66fefea0c924501198e65b4d7097f272f24d10192c90c052f1a6b8b2c31a3752", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "74e352070d470b43d60c1809676d251d70bb209dde18b8892a5abc2ea5a6c06f", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmSQnmJwekXGayPQth2QqKbxEmjaZhzHFCbFPxrbAzF9Ch$" + }, + { + "hash": "26478520757f10a37c087c38000cd986e7d6108bb4f2e84288fb06be76139b04", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m1f044(?:\\?|$)" + }, + { + "hash": "2609e3195127ab22badfdd0d6bda6783def8e4d121eacb8a9dd7bd64085bbe42", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d1e5853f06465d324a0b2b0fe7386703ff74472f1d62abe22e67a615d4867447", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+down\\.php\\?cf\\&i\\=9aw9dk3a6c\\&n\\=proofofpayment\\.html$" + }, + { + "hash": "aeb5c96a213e0d2f0eb6b101d8f4377f003a7944f9a4dd743ee71c78be145460", + "regex": "(?i)^https?\\:\\/\\/lucky\\-alfajores\\-7798cf\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "38c85cdfef83ab3ba79ee23aa6956cdf7c2d3ab13a05825867e2c2dc0854b9e2", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "75b1723cb968bb59a0455e557632ad2952180837e0d2deb3c4f83d51c02c4c00", + "regex": "(?i)^https?\\:\\/\\/robloxobbyrushcodes2019\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3fb3f6185198566e4bed64e18cf3f017ff35cd7000ebcb6e044f262558bb48e", + "regex": "." + }, + { + "hash": "f0accf23a7d35841d66fb0d21d3b8cebdd243bd021ff419f6189e0c9a823c762", + "regex": "." + }, + { + "hash": "1c3855247296ae9812cdb0a4036d5929096625cd55300b8189fc431ae05e1446", + "regex": "." + }, + { + "hash": "9771af805733081da461b15935bc71e33d5217ae6161a89af3582002beab39c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2168581b550c8cb697aeac270a3c914a27198675e9f8a0d45363a699171af092", + "regex": "(?i)^https?\\:\\/\\/robloxobbyrushcodes2019\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5e8baeff1f71ccce1f5560372ee6c6803a5b326ea9b79fa4875f999502bc4705", + "regex": "(?i)^https?\\:\\/\\/comojogarumjogodepornonoroblox\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "354b5f70aefc2080db011e2bc018e718c473a721c07a5073e5f6b5192f7bf3b5", + "regex": "(?i)^https?\\:\\/\\/hotclipflix\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8a2f7750dcf62f26e1c9a7b061dfed9a18f4ca0e386d57ccc120d41deaa3cf57", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d5fbde8ecb0c421ba6ed5aa94aa17bab7600cf4e6628f6a9d63139e8f8a93869", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "21a4125ae163e4fda39c6fc646d888dc2b097c5073bb468b4147257f34beb361", + "regex": "." + }, + { + "hash": "d1ab711fb966fe7d8c4c0f541e132e087f1bcee235aba8c145ef9fcecd62d192", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c0e0c6600615d9ad6c0a5aa69d9b14dd4fd0331a94f22b02a685af9ce7394a0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ahab(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6548a1af1fe953b4530f072a7fcb7587e3cc8c8558e1eb9cb3f1abc2a6087577", + "regex": "." + }, + { + "hash": "93bfd9cd83b63bb3c2fa82f110f10e35fdfd30670270fbbf5853892a4e1d6c45", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c4e6f34c074046a72be8d1e829504edb5b47acb09e5d99fa16dd211fc33e3f3b", + "regex": "(?i)^https?\\:\\/\\/blacksfridaydeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "315a989840a330bae393ebd5e598f4a863d537005900251f3eea9270bda40ada", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9013[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "98adcfefe0f3294a3823cb488341e3de1ff478c6e6b0885525f82dbcf36c88f0", + "regex": "(?i)^https?\\:\\/\\/hotclipflix\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6f3b29ceec69b9bdb5f60e6ef136dfabba0be68a5abc94d6d1da8a8948c754d8", + "regex": "(?i)^https?\\:\\/\\/comojogarumjogodepornonoroblox\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fc73770d9cf570ea0ef08ae03d81781a953b8b07ca7a0116d98a78c032217b10", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4ae891e8e7328451f1d7244d96de612ecc770d55b1ed569fa9f603e625a054ba", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e3e4ec078dec6e6ae095a57933a608d13e0a0d53f810d0f72f9912572ebdb727", + "regex": "." + }, + { + "hash": "68fce75439c2fa96e85fe8e2b12bd8cd5ec3212cf735bb8c6a7c933378411ff8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cacaac9f246af8cce3ee74cf6643ce92a076edb32ba377040cee93d007d194a8", + "regex": "(?i)^https?\\:\\/\\/robuxcardscyg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "df5dc977465a4b621a76f81d32bcad0927eaf4f756f3454dc3c83c373aac110f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.tly\\-2F3JjOADFhgQ2wm7\\-2B2vN7ZOxhesZkvh2joylE6FyT8IsdKZHMM\\-2FtOeA5SOSvA9GHK5NdO9eUMjQv\\-2BN\\-2FUkIRqnlRQbWTxZBjHkj\\-2BvJPTy2bYb6G482LF3t\\-2BRp5gZhl5mH9nG91tbMcDAmPXKXU09g\\-3D\\-3Doece_aSyFlvetyqKJEM3s1lCvmHPjpvMnY58LDdyqxa1CxfJKoaPUr89XR9gQdblyMVgmNO5iJeJ8h\\-2BsVThwakkivfDYuBDyA07xNbYAju5a9HACPWmrdEngQn9M72sjoJBsAixX63ErNnw7ZWTw612mv1x\\-2F5K0z8oyUSfwI5ALqZN7yivl0DtFjpo\\-2FEuzNSbTimJO5bKu41DYepDl\\-2Fjp3rscDZYITZe\\-2FEdjZWgpxu0oJa51CszWyIn\\-2FUxebDsOzU\\-2FU4fL0jOkhjtCMbBWy2glJfrYJL0oNVYLABTM8ldFhrrKoGnzoGwVnKLBIjuPo8m81FL9VunZDurH15bMDApDZs3RCyAItTOQvJsOWlj16tRQ8s9ctN\\-2BhWv\\-2FhaHz6R2WaZy6GnCvN\\-2BByEBdpw753dUcgzjNpqP4VbwxWFOrU7tIt6iiwzQFv0ad5NDSX2LTQAg\\-2B\\-2B6r8P8FFyBDNMt9\\-2FcgLjJ8JHHicSRqpQ0zf8g9hMDls6GKHsVbzrnZHytNku0KpTDOoa1uzlM4Dm7U4lZmXLKQf2qUbc2Vy2F2DRNvgxBRiaansQUBFcGiTYpzyAvnaB\\-2Bb9VCCuuzbxlJQMZpV\\-2BAAjng06fCpuqgf6SHJ4uDUMcNUewYzaeM5o35noi5qDMlkpQqVlXAXcjA1cvGn7ltdLowwhIEi0kEFiJRGCKvLajmEacQt1FquV5Ww34HkAmaYHOGKrUBE3WNh2N3ciQjB2Qkrc4vqbFcF8qI0VlZkECMhuwvXwyiSVJ\\-2BLr4COVAurM8dSl40wRRbLa\\-2B995EscnSF6BXLk7wNuLWpbJt19n8ncE3zCHhrPDdTQC9DVdYM3UoOcIpxiCJcNwGDjd\\-2Fxbfaz6wedsMK3Ns0AUeuAQHyTE3RIf5hEPAZPhtJfr7DOU" + }, + { + "hash": "d91687e8f91d7c81a522deef00a46a9784be0eee4399c007011d54ab700ef839", + "regex": "." + }, + { + "hash": "03f6a2bc3751a79faf939e7f8a9828a8601cedcf9ba5cb228e0dc1c2e39e9eb5", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "1d39cf4ec38a1bedf416b6d003314ba5a2a0cfdbd77ec1cdaa5b47ebe2a906a1", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d2788f8f110ffb2ab50d3c1b060d51203f409a366a7d2b5717798f13683d0287", + "regex": "(?i)^https?\\:\\/\\/robloxobbyrushcodes2019\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d342123a8cda6c1c6ca355a687c0445aa2795a97ca953d852484dbdc9f6f81eb", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "59661bd0430a53969c38d4617dace5d9e4427570544a91021fc269a9a338b75b", + "regex": "." + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "209034e7c7f5ed687fe549b485916be2777508074e48ba0aec9cbc6e2e854a7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+www\\.luigimarzo\\.it[\\/\\\\]+wp\\-admin[\\/\\\\]+css[\\/\\\\]+anti\\.php[\\/\\\\]+1[\\/\\\\]+0109019344f03aaa\\-071e9f4e\\-7597\\-417c\\-a09d\\-368fbe861f37\\-000000[\\/\\\\]+83P1eLWwI9PbALmImzvhYKKo\\-nk\\=181(?:\\?|$)" + }, + { + "hash": "6dfdc645c7464daa05b80dbf113084a5f0f46cf826809ecc4744182c98e1f700", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "674a327d1a3fc8a27d97319f0a4a7a8017367f7757e9af743092a12c3ba9c3fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9192[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e0a81b7111b399dd814d6aaae222563653de7b64cd1d51f28ad283946026ab4", + "regex": "(?i)^https?\\:\\/\\/robuxcardscyg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "691e535653859aee727ce9e58999973c0b2f5dc7a9f31d0d3df06baf90ad6dfc", + "regex": "." + }, + { + "hash": "674a327d1a3fc8a27d97319f0a4a7a8017367f7757e9af743092a12c3ba9c3fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9192[\\/\\\\]+other[\\/\\\\]+restrictionIp(?:\\?|$)" + }, + { + "hash": "6fed49799dec1a955bc058d833a2e180dae223f7be9b01d0774852bce8928357", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "892ad4c528e5fe70b2ed5cc20263b50811a8e525a8dd29842010639dbe23aa38", + "regex": "." + }, + { + "hash": "b3dd8a0b88fb56cb645e6445d67ec9e6b5874219048613b44818699384810e48", + "regex": "." + }, + { + "hash": "e6fb025f4a81fb43a2aaede3f0f33b303c5bab828ffb03690fc2f034e8b3728b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88bae459796fdbd6ca5a1bebdd3f4c03b893ce672f6a6125c4e8bfd3da49675d", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+58k9lz(?:\\?|$)" + }, + { + "hash": "2fc4e0272fde7d5996ae0a552cdc56c3126b3eb9dfbd2cc1acb7ddc7adb84ad0", + "regex": "(?i)^https?\\:\\/\\/hotclipflix\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a2caa47971b6c41020efcce6e394dc602ef7d999d75378c8728c7954477c17c8", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a77561b4ed92d71de32201c660be8e852efd06c612fb9eb3b6efb3050899a909", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7381dffad9e5b6b2c27c3d0c0701eaf4ba6eb3ad2ba7d0d4ed65ed9a6c409f43", + "regex": "(?i)^https?\\:\\/\\/comojogarumjogodepornonoroblox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6bae2d9d2cc8d67a4fa1e7ff415516279684fd6ecceaa2ba7bd44b76e90d2c51", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5364689946a6414650643a43ec473b797840401b9a137c4c26bca5283b093b3a", + "regex": "(?i)^https?\\:\\/\\/hotclipflix\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "df5dc977465a4b621a76f81d32bcad0927eaf4f756f3454dc3c83c373aac110f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.tly\\-2F3JjOADFhgQ2wm7\\-2B2vN7ZOxhesZkvh2joylE6FyT8IsdKZHMM\\-2FtOeA5SOSvA9GHK5NdO9eUMjQv\\-2BN\\-2FUkIRgMI7AkV55w0oHC\\-2FootpxiYTCWQzLfMcHwoZD6yrZWTEPvzp_DBCNjpY0jmB9hipLL8f3iYHFXMgphK\\-2BZmMUDaUhgfs7KXDHdzdF3LzeJ6VDoul9l2sZfhI\\-2Fd1z3iKFLDKXQT6gj3KvBunVZ8ud40\\-2F17artFlGMwFNKrSm3uMvVqJNvtEPlW6YGibmgBasFf1YwYAHBAzcfvhAdj1N1tmn9CuRGqQ\\-2BRlYWS1xyfwqxYlDnccheeoQqTy8XIoyqO3oJonQUFgSd\\-2Be3QtlA\\-2BFbkLTTJxwTtfZ7UGsu\\-2FxJ\\-2BZjFP22uFOMU1\\-2F1sLtW51BC2H8PNLT5\\-2FSOBOwUzgZPc2W00qCs2Q4dflBPBYqKQ3EyV40mERnoRdf5ao3BKRYgQxeX\\-2FpVn\\-2FAIIE5k7nmMwZAi73XdyRfaMUEDZfMvkohT5cHkYRC9xiwclXTlD9GokVxut8ABZu0DyoMB\\-2Ffw2A3baOgeYzZbPCi1SolN3ie48GI4OEIl75O4CqWmR1ju5aoq4C\\-2FDsSC33nZIqgDwwkOMOQHLu0avjTzJ4cc5wpQcw65HzRG30wJ\\-2B\\-2FnMCuGWaPv1GE\\-2BLvuTvgtoby7TxhtAOU0cu0ZpwpzV\\-2FJHQT1oUocdxiT7RwcgypaRaLdans1gfIumQ7pBzwW\\-2BFltYDMgOqydTPMHRIi83KWFlwg03EtRcxl1ibL4ta1gtmrXINtkMbhFJPaPLSRE8St58XEZFOxAw\\-2Bhl\\-2FL\\-2B0RztNtr6Jc0y7JfVRyzpIQ1L1HWI4A\\-2B96W8aL1fm6hSeDseIlO4fuGA75sg5ctY9pkkA2NRqRiRdjwGl9quKDmJnKLF\\-2FpC5kz6326nJkxNlS9bUPJklKPIHMygoLu3IUPHJllzOl8JrwOKud5XuNfZnV0R7tehu5OoOwTLEvxcyUrp0sHbmteTv50RV9NaI\\-2FyAKyLtT\\-2F\\-2FjcVxvI\\-2FtRuQznERD3gIVNflrMPnkK6V5buTQ1IhbMOVg3tAjnoVo4Z31o\\-3D" + }, + { + "hash": "71101ffc0609a4733c902de80bc3f2aca357b1bbc3cc5858cb10971a34d769d0", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "79188a4ff25ed63aaa733e17a9d65bd71f1547d4fcec68aaa262c6fd2bae350a", + "regex": "." + }, + { + "hash": "6973d622b20908dba9af5d4626dbe46cb9821ce4a992d3c49dc449d0d67662e2", + "regex": "(?i)^https?\\:\\/\\/transferconnectoperationnelle\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9190611901d11c0bcd02c6366e6c0ba4d081b19e7dd82f52086517e9b7ff7c0c", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f414ba14564e4f31a5fb07d8f8992b3f4650aa355752f66720b8a3e61df5da18", + "regex": "." + }, + { + "hash": "d23b14fbd11419bbbbc14dd9facbd471597947f52203803684f5573de9f5b21f", + "regex": "(?i)^https?\\:\\/\\/clipintimate\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "eaea48cd46aa08534d623a7713a34fcef08bcfbe889b9b64e8ebc407122eabab", + "regex": "(?i)^https?\\:\\/\\/clipintimate\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bb2daad3961ac7ab043f073acd94697af6426ccfb609822382cca9e414caba57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "885809189d8be1ef700a4397f07a271516799451f33b51e1bff891a024556f0b", + "regex": "(?i)^https?\\:\\/\\/robuxcardscyg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d10f45dde34b20413e9526575602340eb36dd5692025cbb776157567b8575f2b", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6d8eabd30e1191a08f5898319773c17be0a8819aa1ed0871263213b23f51e02a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+shopify\\-new\\-RD1979\\-user(?:\\(|\\%28)2(?:\\)|\\%29)\\-load(?:\\(|\\%28)5(?:\\)|\\%29)\\-otp\\-acc(?:\\(|\\%28)1(?:\\)|\\%29)\\%20(?:\\(|\\%28)2(?:\\)|\\%29)\\.zip" + }, + { + "hash": "56cb550d62c73310aaaa5feebe0ab686ae551971476464ef34fee75c79996056", + "regex": "(?i)^https?\\:\\/\\/hokaonlinedeal\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7f586fa5399d8194cb8cd7d165ced579d1ce30770a1d93fe5c89333ae28f1b58", + "regex": "." + }, + { + "hash": "12c6da7c7db55b297d18d49aeed085016ad41ea944bba8715e6e7ea59069c07b", + "regex": "." + }, + { + "hash": "d64ff758f1bd0f2317f812b099c707dc522d4a5c7e96f20b690dd53cd754c0ce", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "25c5281b202b96c8ef26953b4297b46321624d8510c3baae9536b854b7780c98", + "regex": "(?i)^https?\\:\\/\\/clipintimate\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "64077faacfef967131eaa9d6bfcc7e510de9dbfa1b6698a79fcd34dc7bf34903", + "regex": "(?i)^https?\\:\\/\\/crow\\-blackbird\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3a005cddd560a61f2c86a258a63cd3a49f3d06c7859be39d59e1152d1bfd2096", + "regex": "(?i)^https?\\:\\/\\/vgjhk\\-103446\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d2d16614a3064362ae7cf992a2e51a4fed88e21ed2c0bd2d6d0f7c9ed40fce0b", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "081b80d6a3e81b8ca0675bb1269f3291dee89ed09fe172a03d286fa26b407fa4", + "regex": "(?i)^https?\\:\\/\\/clipintimate\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "39944aef560f2fbf0c0343972238adb797ce9204315fda494a10f0e76e912515", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+swyf(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "25c3bb5cdfffce2060202ce1faaa7aab441f3db7e90d0ad180f1bb2cc1884089", + "regex": "(?i)^https?\\:\\/\\/robuxcardsvrfb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d79c68b4b1d4b7145bf75a0443c8412e05a0c256c3d033f0db40e49d3af08694", + "regex": "(?i)^https?\\:\\/\\/robuxcardscyg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "407385f79ed26bbaf5c19f410970b851f96dc4d38e8eab2d5dc4a8066ac75686", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0b18c72a9963b65ba41c5dad495537c5df44e4797a9f7b13fd5205a464a9eecc", + "regex": "(?i)^https?\\:\\/\\/currently8945\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dd513072b43f3069dbae7fbfeedd4ab2bd4cbb8332613ef9b7cbb19b231edf08", + "regex": "." + }, + { + "hash": "022e8e5687e809069b5733bd9c83d4816155c402060624fcdb279affe01ed86c", + "regex": "(?i)^https?\\:\\/\\/comojogarumjogodepornonoroblox\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "674a327d1a3fc8a27d97319f0a4a7a8017367f7757e9af743092a12c3ba9c3fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9192[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "01bca2207693da583384e52f70c3ea6eeee369ead3c487a79c56f6466c8313f3", + "regex": "." + }, + { + "hash": "1b000ca29e5105a11e2abb654b69037a972859edb9a406e36445801e967ea663", + "regex": "." + }, + { + "hash": "c4bfed7647d2a322fa86f88afc41387a1d7a5e263b41ac47563075577d17f427", + "regex": "(?i)^https?\\:\\/\\/sad\\-dijkstra\\.162\\-62\\-219\\-87\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "0c6d3d8934f77167d472e1bdf64773d3648ed73ae3c18cfd961d662e32ab2289", + "regex": "(?i)^https?\\:\\/\\/wanderverse\\-glowchaser\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b953cf1cfa7e33960e520ff512806534fed6f7c9997cd8181927c5b6d8f99f06", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6796c323e224fd661c9d65ae120a05a285d3a59d5bf820e4383ec0d669a94fb2", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b9faf3cca12e13989b93d1f729371da7d6762e50de2d7964b2500e7e122378f1", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "8013dce13638662f6093bc049dbc729b5ddb676e74cc06fb07be68800ea5e2ae", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ef754fd8e5e5b4411f68d5963f1fee2768c703e847e2759e08bed40fb1eb0dd5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bangkid[\\/\\\\]+lg1\\.html(?:\\?|$)" + }, + { + "hash": "f92927fa213ed61769775a77ecc97df6e180cb9fe93c2b38f1d8a5dd45498f9c", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlines\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "f8e4248a26599a77e82d84863965063fb755168fac67bb4b3c506742403881bf", + "regex": "(?i)^https?\\:\\/\\/embercaster\\-flametracker\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "0cb2ac6be927422835dff9b9f7b089c47e2b9fa25d40a1f5d471f063d31aacf0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cub\\.html(?:\\?|$)" + }, + { + "hash": "1b04314c1101ca34cacc7eed387aedf603568fd85c6741d16554e490c9e0c0b2", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4cb2ec9fc26e9aca69890f6d25c2b1e0ebb4976028d713d87ec2c510f946aa83", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0afb3b2fcbc53442c99754d0925074118343b53b16f35c28965e13e709ec56b2", + "regex": "." + }, + { + "hash": "960f4e904052858b09181ad5646594ac397dfdd11c057a7a83cd916b57c96ebe", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "390b8b0762cb4504ae3ce258dad3d15d3eb9c0451c8935d261a7e599d1eb05a6", + "regex": "." + }, + { + "hash": "818be63bcd6ff1f2ebc5a6a325d86b6597bbd389b8fd7c09f596a69ae6ac2375", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b0445dc66c8c73d2d54f45dba74dc1e4e0a09d739a7cdac16850decdf45347a6", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cf3268c92a0c6563b7bb92b178cb6bf2b1a242c78ffb51bdc15b80dfd6b43231", + "regex": "(?i)^https?\\:\\/\\/yahoo\\-100579\\-109679\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b49de446992a54698a23bc453e228c7604265b96252765270d69824bc5105488", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1801011ff7325727b61bf35ce05fcc0ab10475b5574ba3954a06a777d36e8bd4", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "8add4207a06dc922955cf24e19d437202fdf23b76f2aa9a15268bd9d4a8636b7", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "180138519402a3490c7ff7ae78fd4a4e9cbd501cc89306ba377b13badbf1b510", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2deff06c74a25a89a90eee1f01df924437d4a2d62d24735fdee840c4930624ca", + "regex": "(?i)^https?\\:\\/\\/mrbeastsgifts\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "13c6b171582b0165e6c8ed453ea6e13c10812b2a5b0825748fb4c51271699d50", + "regex": "." + }, + { + "hash": "ef754fd8e5e5b4411f68d5963f1fee2768c703e847e2759e08bed40fb1eb0dd5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+choreodev\\.czxre\\.lol[\\/\\\\]+accbos31[\\/\\\\]+0828\\.html(?:\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "4f56be0518ca7bcc5fdef8a6c2e3d360d0630d115a826c1eb4060de617a0ac4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "6c1cfcd512b28ab843f169ddc81a43075f28fa6449922fc14c68b5516c26e100", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "250e03c8cdda37d29b9517dc7e46922afc40065b756dec1d44b15ecf9e63321e", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "30c7f9de9680bd16d9e186f56401667fef53b401c814b8b14015c5ec9d962666", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0u6zsu(?:\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "7db228abeebbb53bc30052d15c8e12be7fea384819052f7b1feb9087d84f8167", + "regex": "(?i)^https?\\:\\/\\/secure\\.acc0unt\\.applink\\.robinhood\\.165\\-22\\-244\\-182\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "93b2c51b9f7b35fadce44b0e7b5d9bc30f710b0c97c94e8eaa3602d9376d2f48", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f6e22907e577c003d57f9fc74866004d0040649ceac269d35978cffc06d099d1", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "cd2239ebf675ab63ca4b9348883aa7b8d5615ab8a278bf4013d99c7b76c5cc6f", + "regex": "." + }, + { + "hash": "1dfadc05e61bebe55fb2c2f81e3c8ef1f60a6422b3e9e40d0e79363d0a960e85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "74c60027d988c5a55f594766a7a62448eef061989eabcad5720b119c2c8c23af", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "df5dc977465a4b621a76f81d32bcad0927eaf4f756f3454dc3c83c373aac110f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.tly\\-2F3JjOADFhgQ2wm7\\-2B2vN7ZOxhesZkvh2joylE6FyT8IsdKZHMM\\-2FtOeA5SOSvA9GHK5NdO9eUMjQv\\-2BN\\-2FUkIRhMbdCtZk6Nq9I8\\-2BXHZjahj76ortiumtCbEoyxcMTcrO9zFR_57h41kPk7SOOnqHiB5xFXCqnRDFBJ52VQvWtskJmGGV273rhgJxF6VUCQWB3W6YfhF7OvUu0ubd\\-2FUNVwkr5pfsBy54xGyyoMOiaGhxH\\-2BmkK3tnUTfUjG9fTMZ\\-2BQjOBpP9ZdXqnOfz4lHY\\-2FZ4Xew9I68dS6jOX8lBZAA0rR1PTTLN6jbmqOfP11uDEiyYPRPbcuvQRSXTz5zrjthNPw2WuNXbxGtdqG3RbdHIABf0y\\-2BXq6kPb2ZWq4jN6sdTa0h0yviS6CDX0omtOnqJ89jB93BNHUh2uGXxofyolc7AsYoeyXOhW7IclrJz6ghjRwSww2tQ1pIPAj2wXHNT7fv\\-2FCRxNOk6zfu8oeaDiXxTtvbULy1rdpn44pnTHEuvEDSUH8uWxeQ0hv4TgvLWkQSCV\\-2FyxZ1AKeeZ7\\-2B\\-2FVGPFhPP2zoMfb8vfYPJ57s9btR\\-2BGdyy09cCK36FNuk0COn0YylFaKpemFUVed8liL5ITTkgq\\-2FUYLO98SUk2TgmdZpAeihOw0v2K7Nx84QaMXMXuyOkD7lxEOCwn7b\\-2FPauW85cM0XnfxcYB1\\-2FJemSkzUUsWXLbq8rTdJHrs\\-2FPJsvxk19xvRBW6UQoKXMlfHoiX3046sK4uUWktCtwz7t2nYtfxEh2iiNyc63xgrbQgNgxCnCeO71PquE62xBaBLPiVAS\\-2Bp6Bx\\-2FQofCBX7cj9ptEiG5wl67Ce\\-2F2zlHtZ1I8Gez0kP0nZ3b1U0vfs\\-2FdEl60Rj95GLtLVU4Pd7ZLsLNk1yRi44F060E9fXB3dSFRnTCOmfcv5CP\\-2BwCPq9mIjeWfuefDcbqLVxWtwjTxzp0mgyfivPh7Vny0J7mBQmaavokZtjb5tzTE2KGVQOsGTNZccrPQtDoQgRWbNw5qMQG5zADNWlf5i3oXj" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "3b3c9842408d9d5a88a31a8d946f5d532e5d8fd2429f920333ecb1e69310f74a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "92303a7baf80634af7ba023224b01bf5d62b3629a7cd74df753b884a1390a2af", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "51a72a4e5d1ab00321ca401605ade0def4a378115d821ee37706b017f0e17c4c", + "regex": "(?i)^https?\\:\\/\\/cryptocoin\\-wallet\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7d0a72dade18066a0174e599ea0bf8137b15f068cb2effcb8d608d8820a0fced", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3f085d9adef32ce1d33429ed3904bfe3d6af0a473f8b61062603a1b39926fd55", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "20dd0cb653e92191a13d4057c9ad1a019e33ea1e58c887f0196cdf3972cdb579", + "regex": "." + }, + { + "hash": "eea5856b0db3bb99596b033c6e855dce4f1f5c0a1e550c6095ce21964abe0619", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ca11932154781a9e8d957a8d79eac4f5b6f51b267f0490f1d6b391f6645ee88", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cfc97f48853c1958a07408376c66f6d133fd738c4a01b546aa3511e7cbbbdadd", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "1a2fe30b66d00dca8e79f8b493c0edbd93b151a9c0117e37ef1c080973a9aeb6", + "regex": "(?i)^https?\\:\\/\\/mrbeastsgifts\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2b8b468ad9356777a0c11bb9722639c557d550a973cbca896e4b1266445a2951", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f134ec72442456f13538f46283fd56c51e465b2f31bc8a8a779bd6db7a5e1ee1", + "regex": "(?i)^https?\\:\\/\\/053675220965\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d48ad3acd43310310b3e45d89376ee05f4b649600e39b6f4fc9a630a720ca145", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8df0afa896e91811f5a67a1c8ff0a378b433904a2eb1118755948d723c22bd81", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2101d09eaefcdfb72af97404cbbdc87ba24a0d4a617385370a5c00cc127d7489", + "regex": "(?i)^https?\\:\\/\\/cryptocoin\\-wallet\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c33b3b3ba795db09b849a6a4353927ad41d8ef50fc6097bc372a91601aabb08f", + "regex": "." + }, + { + "hash": "38d57ff89ffb84d878f06c7bbf01a1c9fc4f2364e9357c14f41aee82811e296f", + "regex": "." + }, + { + "hash": "2f672539f28636d7a1a0e97710bec9096a5e4b8a5da470ebfb4ef2db07d97095", + "regex": "(?i)^https?\\:\\/\\/sync0\\-pro\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "4534be67224f21e535fa44a484bf375e8d61b47ae8186d2e739f9bd14c4c18a0", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0a492cd18cb7031a0728bc3b05e118557f54c4f5bd38d7f791a17318d7243603", + "regex": "(?i)^https?\\:\\/\\/mrbeastsgifts\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "4ad730fe1a2eb8546e4f4425c5a9efdbe9623b3e6f3a163a782e719cb2640e61", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fed6d84e3f723ca2ea0c9eedf94bd7697476961869184fbb34ea3d553920982b", + "regex": "(?i)^https?\\:\\/\\/sparkhunter\\-flamecaster\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "952b88cd454615f84d83178e376bcb1543e754de240ea8c77ef65c3bcae9ea20", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "65d093edebb3aa086bdc1f8c0917f7a1fb13cb03e4c70f31f5c42d68ee75dc13", + "regex": "." + }, + { + "hash": "702aea1bb5a4eeea4ced65e4d0393c4cfb849cb2b65e5649ac06b2a0352a4e76", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e1a706cac2d70e27b4d294fdc3ff75de72070de1b2fa093cdde700bae5496b7b", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a7b29d02c8782bfe6275600e0b9f00e365118b861d4169a5acc6a288957ced9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ZOvoA0(?:\\?|$)" + }, + { + "hash": "08b7dbda0ef05099bc659a2dfa9553a7cc61946a0966600cef2bdef612dfd3c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+izMECl(?:\\?|$)" + }, + { + "hash": "2c13d389b8b28d538a76233abc3d6c86ad4f3f14dea05d3fd834069e7fffff23", + "regex": "." + }, + { + "hash": "6c70314860f007851a09796035cc25f18943a228f1b842a5c1a1c6486f4d7116", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlines\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "104c67703dc79ee3e8665cdb5777fec6fb088ce38367b897a7ab6810d2a18201", + "regex": "(?i)^https?\\:\\/\\/biocrafter\\-cellfindere\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "61c35a84ea167c9c86364d2f3037d5e85e0b78299f6b6c54f6752aae7c643b40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "f08fc1bbe1b9363e522f2eac2f49e1da8b732dedd647abe03db76e7ae06cedce", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "45c432d83d1fd7816bcb20814b5115bcc8a0f47cbd8521a121ec4ce30e4ff13f", + "regex": "." + }, + { + "hash": "f9ecc2f07414083d8a0c15404ded6e1e997ee2d2d8228396fbb8805e31d2ca6d", + "regex": "." + }, + { + "hash": "1f48af16eafa3840427bedfde6f32d78b82007cfe8e7b819fb4d749dbaa9aa6b", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt49\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "69b1d451ed1d667c25f5201bbd7a6f1c7a4049e797f6a0a18057696dd70549b0", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b45c583c502ea3c7f197d585d5301699abd768f3bcaf5a45f1723575f783c038", + "regex": "." + }, + { + "hash": "a66e1ee4d564cd25ddaf8a8a5d7d54bf6dcdaf8b350833c8fe6c1f70b18f4f93", + "regex": "." + }, + { + "hash": "f02fc038cf3f255920b2cac1bdd3e93ed71fde4ca32b7f07737b9af87e7bbbae", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4bcc7a4cbe646c7d01da9175169abe9f2251217fdbfbee132b338e0343d47648", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e95ed57d35d957faee4acaf1462aeaab878ac0a7a5884720003a275239c9b49c", + "regex": "." + }, + { + "hash": "59c2369635236e344fa8a39e0f075c820335a86ca4d2038883421e6ceae31e06", + "regex": "(?i)^https?\\:\\/\\/embercaster\\-flametracker\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "74f3a408d9fecfd97c492478090280f490c9235585f9f67ba760ae87dd42ff69", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dd477f656b9f84729bea8c9158a3d0c3b1555793b3463a4357b5b6c28106f8c1", + "regex": "." + }, + { + "hash": "e5ec2dd62a67483909048f86d5a8053b09888d3179e8dbd8767ceabf7b7ad507", + "regex": "(?i)^https?\\:\\/\\/mrbeastsgifts\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a385369f4ce6f83d55219fecdf7f0dc22d26254185ca76ce5436c8df3fc703f8", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4a6d17a86ff03d41ac5cffb8fd795d96e7648422185d8d8bc8ff5cee1867491b", + "regex": "(?i)^https?\\:\\/\\/cryptocoin\\-wallet\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "51ee30df3d8f96e46334725478d8c783b12435c78c607d2ef19dc6622579e593", + "regex": "(?i)^https?\\:\\/\\/towadeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96a4e36e62bea332e497afb0c55b32ca2db997bfc1634eb66af65bb484169d1f", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "59a1eb77c533132dca5e1dd8ee1516405853f661bcf78f74ac96b954647554fe", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1688fa76d36799a1d1b4e43a7b8fb8551388abece5cbe7b745eb8b25ad26de3f", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b9b380f3f72ae64b9e2a6fbcab09317106cc776c8fd4e86ccd87a784500dccbe", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "82ff37f56528f30c4bf07ce80de674c969d4ad0bb503136d2c1e3b46a0c9ae4e", + "regex": "(?i)^https?\\:\\/\\/cryptocoin\\-wallet\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "dd2b73ad71dc4b4785af5f0eece294a3c243146d42db20a575efcae5c05168aa", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "500309e2e7b00f070539708cae28c3fda70a47794778b720b73c5d169d4515f0", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "7049687d0eaa4652671559527667f7cba5446d9af24a68d5c752be338f1ed67b", + "regex": "." + }, + { + "hash": "814a68258fc979d443b361b1579fad17b4e988d3dad0198052b996e377848b9d", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "8ff8c3452be04e37f34bcc85c7af17c4c369f13af8a2fa9365ac33cda68e1ece", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a5f5fcde95db48932ff8bdc20b3f518553b03c007433d06eb71d3b7909d88ed1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+www(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "27474ef1719e91ccb41e32e27c32879abd269647678bd0ea3639f3cc6d0112ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ZOvoA0(?:\\?|$)" + }, + { + "hash": "360a558d4e724c71a31ebed1c031dfa52e80c7976f834801fd8410cc1408f786", + "regex": "(?i)^https?\\:\\/\\/tienve\\-tienve3534\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d32660d8ced0e547e0928723e9c52dbaa48ccd6c120486ee17f1ff592b5aec56", + "regex": "(?i)^https?\\:\\/\\/sparkhunter\\-flamecaster\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ebc1960b9c015b2ca021b9a4113f446d2057176159ba90ffd8a8fd939c9d75dc", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "081b4c4c7616a5c6cfeaa6f6976e4e7c289fcf6348f4bf92c61171f87234d52f", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "a3a8c866406f3e937579d16ab2ed690cce3e0b341998770a9913a7f49339561f", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f67b927573369f1004f7c881dbc6e91850bd3a0e31554cbb1bf85be99d007486", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bc41b8d2e107e36a136bbbf2b4c93de78226bf1cff75f5014e592aa308287f68", + "regex": "(?i)^https?\\:\\/\\/espaceclientsfr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d03b48e56f622001db50e868b9f7604a7a78d83ac45d41682de09bc6262081a8", + "regex": "." + }, + { + "hash": "6d3762d404931a441559557ea7363c9c624fffc02dad001faeb4a93a64a84d9e", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1f47d9d340aa1adece641d463e8c4a50ac8704ce4907e026471803c827db3747", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2f65adaf121fd6f0985a0b1042d8f5827e1238b272fea40e3db35cbb206e1cb6", + "regex": "." + }, + { + "hash": "a167c813e7f3c02e995db50b9d2e9cf126501238c948c9dcdd19bc5d9e251154", + "regex": "." + }, + { + "hash": "f133259bebf9cc00fedb9a417c0e797c13075aa6375c2f0094eb7acd087bca2f", + "regex": "(?i)^https?\\:\\/\\/cryptocoin\\-wallet\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7db228abeebbb53bc30052d15c8e12be7fea384819052f7b1feb9087d84f8167", + "regex": "(?i)^https?\\:\\/\\/www\\.secure\\.acc0unt\\.applink\\.robinhood\\.165\\-22\\-244\\-182\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ece46761f858df53a3fce8807d1df202f949d48d2fc6d1c860ed4bdbc1bb6d94", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1fcd5208097d4ac142eb3a7e444b6937c4e7046ec815ce6be041bd866e53e145", + "regex": "(?i)^https?\\:\\/\\/embercaster\\-flametracker\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e1a3757e36598cdd1919ba543f9c99476e1ddb4d57f7912000034b8dbf839e9f", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "054c3f37542644dde2f338253bc5329dde2f5811273fc72959444228b2d98041", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ede054cef2746fac7871358bf7a5a53754d743087784ac355fb0ffd7577b955d", + "regex": "." + }, + { + "hash": "17caa96f3a0dee14f634f0fe6626fa9ce57c7b70423517f026da930950a37176", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "5b32e22d38fe63dd5e9dda3329d079f466b7b9f6f063dfdf613abd9dd5c10f1e", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "51a7d506f7429b9af14e73b8a3f600a365cb265ff4eb87ee6b50ba9981edd355", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts$" + }, + { + "hash": "ac70b4d8e7e9bd18c7b81ad1fb357d26498d661103707be4ba7062f20d866880", + "regex": "(?i)^https?\\:\\/\\/mrbeastsgifts\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6950635e2a761889c942fcf116e3d10ff738470118050963b1c2bd49a669e2ac", + "regex": "." + }, + { + "hash": "92874f0c9570031d5eb022e515f911a4aeeb0fa2508a653063979052ae3aa929", + "regex": "(?i)^https?\\:\\/\\/embercaster\\-flametracker\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f6ef8ea659797a1c7a7107db5c353944170b67da24ba1b6699483e34aed30e3b", + "regex": "(?i)^https?\\:\\/\\/biocrafter\\-cellfindere\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e97331b9b0f4c3ec48aa643d9e871184482bad8b6f816721ecff67f10d8ffd1b", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2cc54d3c443fb78152e477897900ab6e63391837740161464b9a01b65561704d", + "regex": "." + }, + { + "hash": "d4bf590a1fca3488d45887cc762d964be3399c33a36b2e997ac6599a95461225", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a76120291294e35b41ff70dde95c3be26249669f7f357a0a5e5e6cd1a4c29c87", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1ccee24a0814a33c89ab9228ce752b5f29d0f242431e321b2bd8c8063688faf8", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "3d5e350ed2e508a3a4f26b31b67f2eb37cc78309b7082c334c4c035ea7fc438b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c8a2effe67200d7215cc8a68a41f010ac6712660ddbd6ae01415389219320b4", + "regex": "(?i)^https?\\:\\/\\/cryptocoin\\-wallet\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "631354bc5376d4bd2e40b0f86fccdc147e33d10b98a86323c5b5baea03d5bd9a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2vZtB(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eea5856b0db3bb99596b033c6e855dce4f1f5c0a1e550c6095ce21964abe0619", + "regex": "(?i)^https?\\:\\/\\/ctt\\-qt\\.xyz(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "0cb2ac6be927422835dff9b9f7b089c47e2b9fa25d40a1f5d471f063d31aacf0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c6846d8828c18e9b1214fb060266d3ffdd2efe3ee348a0971dc53bd4c7df7d40", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "12728b44abfad14db5d62af02f5b8e94706866f7392aaa5dae4ff55c0bbd2d20", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3a5b08fdb19fe7e718c2e9b13569fb7e575661a9cf4566385beac31bb72f3595", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "dc384ae2a990a1dd718536ff6b5e3fccfed7488f0bcf220596e78394875a8ca6", + "regex": "(?i)^https?\\:\\/\\/espaceclientsfr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "400715520b50fe31b173e3400b2aa1ecf12d6bf3136f428eb86ce713cf11a1fc", + "regex": "(?i)^https?\\:\\/\\/sparkhunter\\-flamecaster\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fa6916ca06f8b27b5dd85db2bbaca2562955c191f7df81cbf316e6f622d3eb72", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e3c8fc02e5a265e69fe7adc9670f99f6f18dabf2e00b0e08c975a0e9aef815fb", + "regex": "." + }, + { + "hash": "c6f9a6b85c6948c8555610e9706ef9690bb93d6aa9b63315d044c7f2de51f2a7", + "regex": "." + }, + { + "hash": "b3c4b3de64978c3ef69f1bcb09b05e1f9672de79fb656498557098dbf726125b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+swyf(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1ba082aaee0d95b3a0643a40648b21bdcc18aa5c48389ac8d9e19ff2cf2f5a0d", + "regex": "(?i)^https?\\:\\/\\/espaceclientsfr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "17c6d7b2ee1281af614beae5eed787596e52e527adcd83c720d162e2ef126784", + "regex": "." + }, + { + "hash": "1e170994603a1af54371466fff0066715f01492c237338ff278da0b733c3ecfd", + "regex": "(?i)^https?\\:\\/\\/embercaster\\-flametracker\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "299246f5f87b1116a2c72903fe24ec50ccda1b2a91017e7e623d0842a4d89821", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt49\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "bce8ee19878b655139c896a5e522f2a31504fbb2f34b0898c8f56e1e1f83581c", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d9297dfd3dee61b4be0f6b3ebb09a26f0fa8bcd72e366841941d2bef97236bd5", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ff3891383d1f772116bc58d7632d789b6a178cf5863bb27287fda88fc38ba1a8", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "777cfab1e8f6d2257530dd14e3ac2a5a7988ac783aaa49ccd563b670b194abfc", + "regex": "." + }, + { + "hash": "3390c18523c5697e3aadcdc5a38eed4c2f1295d9e2b63d7dafa95dd0b30ba117", + "regex": "(?i)^https?\\:\\/\\/espaceclientsfr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7c92332cec0faa22ea0f209bf2525d1f863f8b6c143430e5945afbc55289abf1", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "64d84dc05aed5ba0f6d9c6715db71922c5a45c218323446f63a252696387ed7e", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "393002a5338e84eab0da89227d2fc5cfbf90750a1454864f04b440a9a1de43a9", + "regex": "." + }, + { + "hash": "38716c23b11fc7586fcdd2bd31093f3833b6756be6801e5c653e69912f542db1", + "regex": "." + }, + { + "hash": "01afda2e03236c0e984391c36cc991b8c7686afe1f9adb3d9d6ba600972acb32", + "regex": "." + }, + { + "hash": "4f1e7cf70c08516e941f60db5e84a326f6ad16498963aa341f21d7c5f29a7cd2", + "regex": "." + }, + { + "hash": "2b4b29a554b3957067e412d1b9b503f5a5a7f90b5d3c5375aebf2fb637443b0c", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoxxph\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fbf809d04a8eeae4885aac3eb36cd34dd4b0ff88a174647a620346416b211b5e", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "021e8d93e5919d5c16163acefe0ae4ca0b521ff3c1f00ad9d15ba599cb91953f", + "regex": "." + }, + { + "hash": "affad47b04f10a7416df1b55a956e5524763291d7804e4dbc395a4f40e5ddaa1", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "21a754eaa8f42ffe4f5c46f838865f84df813fd8693908133a0cd0467b7396a4", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "626ddb2acf05bae2e4d5ef104a7e831740789aa2de2075ca80176723ada5a803", + "regex": "(?i)^https?\\:\\/\\/sparkhunter\\-flamecaster\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4ca2d2b0b41ca2a89ca326bf53c7475319c7736a44143b2b471afba15a7d96ce", + "regex": "(?i)^https?\\:\\/\\/pub\\-33ab628e4d864e1cbd7aac97178d4d04\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "858460f9163bb950227ac5df3cb542f12716a970c7367e0d14d71ca18bb5508d", + "regex": "." + }, + { + "hash": "ca3051fb4a34f3e4f0e632161c0d2ba9eb9bd9b77dfb017246ea7a2abe8ff040", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dc380f92bcda87545648254a445ee43db721a17d77f95e16cc39db06b2b1e8eb", + "regex": "(?i)^https?\\:\\/\\/ronydeveloper8926\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2996342e4ce7db2942ac9eb573ce8f652f1ba64eff1282280b40d6eea5343b7b", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlines\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cd1e1b794d735cdd4309cd8fd12b25fa94f39fbb6d6440cde14554395a086d22", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9840dee96876e224f45b91cc43388a8d9670208c26adc58a15cb4fa74692a741", + "regex": "(?i)^https?\\:\\/\\/espaceclientsfr\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "60a1b9ea20d8501254002ba1830db9aa7f8ebb1cdf4aeea6268b700bfeaf8e59", + "regex": "." + }, + { + "hash": "5dfdbee33fc192c1a5985a2a4355d7873ab0c3707f3829e8dd6fa3703d4012bb", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "509a6feaa16e07dad77e331682c771ad53bff0acb915efcbfd3624f6e421b1b1", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "64fd17037804543f61c2f60a0b9d49f37aeb6e71c132ee3ce85e0223db7fa898", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ffbfe410bceb769e342cc304db51ac3c9496112ab3bdc594f8c2d27250b94a08", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5fb6a3e8fca12f5af627c06303c247a5f655ea9ce674fea6f0ebfd216947b6ac", + "regex": "." + }, + { + "hash": "280da046cbc05cbfec76b42d468c6e72d6cc5e80557aaf9d7ec6e86538209527", + "regex": "." + }, + { + "hash": "39a0e467c669531204d2ffcd50a73495dc0aefc47fb8609bdac050451a948bbc", + "regex": "." + }, + { + "hash": "ea23640d26f484e4d7b4910b3660274b3572f25de5ba043546069b88f31fa089", + "regex": "(?i)^https?\\:\\/\\/pub\\-e700683bed074273a2a084badd61193c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "86f6040d138bd7b21f9ad323b8a0812ac2915230059f21256af7abf85ead8144", + "regex": "." + }, + { + "hash": "a85e14156fea3a52ed1614c5d937929befa37fa156af6496b23382e5d0442131", + "regex": "(?i)^https?\\:\\/\\/biocrafter\\-cellfindere\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a01e18ddbe4bf164384e73933e7cf0de07059286e452de2aff24d118d7f42d5f", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "095201ee261804dd3a82fe7f429b951dc25a6fa59d4ede01bd79004917a2423f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoxxph\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "9d939b7301fd85352883240675439009b9bef9398865fe533dfb48ee67c9ebec", + "regex": "(?i)^https?\\:\\/\\/sparkhunter\\-flamecaster\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "98d53889ba9780d7479a83f878316adc1f27fd170b353e1c067e6ff4ff106ecd", + "regex": "(?i)^https?\\:\\/\\/espaceclientsfr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "25d7a4ed9b09f5cc1d3ad7369ba3beeae83f173b2bddf627478039dac104832b", + "regex": "(?i)^https?\\:\\/\\/embercaster\\-flametracker\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "55b68e7d9c7c60fcb947712467896d39ceece6e6f11eb98fea57285e070e273d", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "86430bcd70cc538fb2a3675b386a0285048d008d127345257d891f56dd20b709", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "762b971f5eb7734a04da93246663e798c316c18d8f420fcc550c5e91e5c02d48", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt49\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8b915ebcdf013ff76a343de4528cbc4ce39fed8f307bd5d9e4c9e78753ab6874", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "af4eff406a6a21610afbe886297e277efd35ccf6f42e7ea02d06e354d022f488", + "regex": "." + }, + { + "hash": "05d5ea8caf77ae3ec4715f6877d273c401bcde1bf12b2f864ae2a0cdff0c7333", + "regex": "." + }, + { + "hash": "da7aba68615d07fada933482b922913121327672984cb0be8730d2b991c3cc26", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "12c78ef977359b560635357d87c67ea2f82e1d5006993bb29f1df68121c1dc9f", + "regex": "(?i)^https?\\:\\/\\/bozopr00x\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "578ccc82dc2f2f9bac06d1670b0a664ac514333715698dbda6651a20e1925f42", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt49\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "71b6200af39f1923419b970c53c045f369d4a4c286b2e2f76875b0a3255d7ce6", + "regex": "." + }, + { + "hash": "d44274b26e295ce3d3d0d60fba771556ecef857aabfe318d59e76b1292a69a34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b49060e7d683b766afb35bf05fb620f3c7201992ae9f733adce85e1d8c9f4d6d", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f54dd232ed35b0749a0b2bca3c93e4680d829e827d3535ebfb2bca7c6e9c7e38", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7d06c7dad2ec57cb30181bf0af4da654ae8bc4aa8c499b3ee72051011b2a7003", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1a28c6937ee4b02b082ef835a1c89652eb4516c8593fd7bfbc37df2915a3867c", + "regex": "." + }, + { + "hash": "8cab81638f3ae6fc05352ee1a4abbabb4402b7de1c7f20f01e3ce90ec0c39c74", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5e7e4833a1b0c99e3648146196ae05afd632bb6fede46423e0fb6b6f9283eeb3", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f267f325afa16c855177a33455725a4cc2997af1d6a4e8d80227553c4e3f3dd7", + "regex": "." + }, + { + "hash": "1181fae8b8a9898cccb5ad8af27279b7920a3749778844327087d938519768cd", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "942658bf6b81a217fb5dcda4a6acc40eaa893136d78aca4d758882e491deaa8e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ZOvoA0(?:\\?|$)" + }, + { + "hash": "6463fe6253cb2920850dc01c7db53b01a39b73dddb9c854309195b2ed8814e60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+security[\\/\\\\]+portail" + }, + { + "hash": "23574bcc511ab9b4ba4d37df597ed979413ddd2d4f99ef16ce4a45e8cbceb11b", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt49\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4a57adb5e3ec66fc0fc2369f2e26622261c2595b311ab4751214608fe3d8f6cf", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8d85d362ba79cc6cca81c284d33fac3f17f89deabcd96396f980f758d95d36e7", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9dbd7ae5ec4f0820d402218c191e7d23a24bdf8720d8f23634f2bcb5e5a0343c", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt49\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ba588453455a1d3402d0a604059733d4bbee8558b8e6b7f52f5c254005b1681c", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "698b356fc94e2b05d657d5f0cc3c0f14000a48486eb6d4d781028afedf15d448", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4f9314f4d2af122b8fe3eb6db0ac76e282898551a7bcc650e7327d02f324b69d", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "02360dbce01b76fae42f910befe1ccdd057078b2e064121a18b66a9dea52883a", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "799aad3098fd97bd55e1e6c8832e1e6e9e42e52e0104db1fd739b5b4760bace2", + "regex": "." + }, + { + "hash": "e628d0e13c49282a00ffdf39885862cd7015a0291c7bfe2a895d3cc9ab50d44f", + "regex": "." + }, + { + "hash": "b76b9005457b2a1dc225fb13d02a803b36056f39348f8b76078585169fa4c55a", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "c548fde45c82862413e899d42734bcd5f0b1ddcbcfe89abb88ea022c8679c4e8", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "4c4346eb75e0988881c56a552c2133ffb724dcc4d6fa1f53da1f46e7b7f32d88", + "regex": "(?i)^https?\\:\\/\\/freefollowersch\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "8479982c7cdaa5ed6cae4087969452f7f8d60dc69b82958c7b984fe9dc21c554", + "regex": "(?i)^https?\\:\\/\\/embercaster\\-flametracker\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "02fe6ad83638bdc83a11c099fb427b1e8e23d6895afefc3d27d4e066e04c9d00", + "regex": "." + }, + { + "hash": "bae4abd9a2f63e6fa363b2cd9d5d31cb88039dedff3886ba0af4d1c89b8a9ff7", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "756ff249aa2fb192fd52700d1f295714093f7e8ee783ed40f7c3b345ee43cc5c", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c39254a3cdaf95a3503c3989021df5e64f8f80fb6743543bb0f26e81124f80e8", + "regex": "." + }, + { + "hash": "a55ca813a0a61250e0504f46223ffe641c82f84c43b9df163dd31a8a666b14e7", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlines\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "248c5e0520a5f52d517d9dec94da84b07ee29d1dc070a0c4cfd28604ce622aa5", + "regex": "(?i)^https?\\:\\/\\/mrbeastsgifts\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3c8fd8e4d463b0a6cf637ec2af3f8a691a97b58efa593c4115342ad97a09804a", + "regex": "(?i)^https?\\:\\/\\/mrbeastsgifts\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5c8a4515ddc56ee4d841bce83d81ad860b8e6ce68efd5ab2b77a112631d2fa02", + "regex": "." + }, + { + "hash": "7e4c857ab3c6d6468f4ef736fd7c6a219474ddf7e305136853dce8c2c41f76d8", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f5ed66fcd9b3a68bc3fbe042357071ca27eba89f75c89d221d8f9916a36051cf", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c0d29ee535146118de69af85cb480fcdc50d2bbca7bf83fd77e4db88d6995ade", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ZOvoA0(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "db737adb6bf4f78fd470e90b1c0b9df2c471beadc7d87f77e09348a7e1cd4d3f", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "2fb8d40e7b93a6d05cf96f16856753a1da5d8f8a40a641910636be7c184b2c8f", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ab8e18ac4c02d1871bc37004cd483bf4bc0894ed92976996bc2567cd4e90a7a7", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "463bc3fa249cbd60b2ecad4385391f6515982dc9b42724f8215c97cc0cf32d38", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4f56be0518ca7bcc5fdef8a6c2e3d360d0630d115a826c1eb4060de617a0ac4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zil\\.hubek(?:\\?|$)" + }, + { + "hash": "47996046ab4bfc7def48e2950b4e00386d1090b6b5988d929bf432f7a5edaed5", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "548580941d317a3ad8e0b7be42488b29425631070e95c129ab2c773cce2da239", + "regex": "(?i)^https?\\:\\/\\/espaceclientsfr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "33efa2ad55219c7f8200faa9b88e53d04d97f836e8d982fdad8a3d7bf567daca", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlines\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d0c883da67377ab9c786f1205e3a3b74b76ee0c20f328b2ea9be117a623d1f35", + "regex": "(?i)^https?\\:\\/\\/sparkhunter\\-flamecaster\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5b5ef8d197b802e576488ad7d5ceda6e36302bb41f79b407434ad2a13d93929b", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1d7de6da8ee8dc454f9ddbb02f10ff2ec78c5d70466e0906d2d0ae9fe3b7eb7a", + "regex": "(?i)^https?\\:\\/\\/pub\\-0baf076acc8a47238a83f1c1c9a9e94b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fbb0c7e3ffe713d03ef7885f3f8e096c7397b259525d456927c2a7ecb66f8391", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlines\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "783b782a6c055d1da452df5f46befc8bf16063fb9b58bf7b0380e14044ced68b", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4e6db061111980fe2c5cd543551759b60ec5a927a5c380924b4fbbc47c37fd3c", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1973ab2958451874b40bab5c771fd537094752a316e628b89360c751bab9bd95", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7dd749b91c9c3d7f9135d62ec659c1c39a8157ea2ecc79aadc887c1198316068", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1ffd44c35b17b62ba83d84a3004088c6aabdfb4024ca600145ebf1bae67fd98f", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c2e8d847b66d51d9b484f337433798cc8ecc0c92b511b8e2c7c4710f7a40ef6c", + "regex": "." + }, + { + "hash": "eff455c33e1a6c205e2c4792185849b38fa24fa14bc9e628df42eb5dd851e87d", + "regex": "." + }, + { + "hash": "12e0353e31f282bfb8da7b060ffaea5135af74f046514004cbf30a6d6d7657a0", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "056c6f3e150fe6bbeb7fa86bee0a725fa0d006d069d3ea135653f22b64d3dbf7", + "regex": "(?i)^https?\\:\\/\\/dks543\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c3b28e6cfb7df1e478d8576fccb8d7565145f29dbe37d5d5f0122d7a2e080f9c", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "65e6817684ffb929f15e6c2ef8023044b0fce3a6bf235bd9f6e173ef8e4085d1", + "regex": "(?i)^https?\\:\\/\\/venturequest\\-glowwhisperer\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "43bfad5baf7a815e98dc0214acfe75995bfd41850eed2fa91b1473b7729d3928", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.com\\.br(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3ab25cf03a50376d0c8089a7f324b6d023068e2c6962b13506126a8fb7564ea8", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "df68c2b31bae1dfad11cbe71503c5128ac642000b8606718a7c19a5de44630aa", + "regex": "." + }, + { + "hash": "8cb81ea86ab150bfefcc6cb7dcf86e467dd95f678c9527379b845941285f2e34", + "regex": "(?i)^https?\\:\\/\\/signin\\-att\\-com\\-dynamic\\-105418\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "97a2f9da9beaec2858decd13aa85ffa8299da5b248129f04754a7d63d2664f3b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Preview[\\/\\\\]+Approve\\-Image5660012WR6788" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3ae86d2fe9a1c363f61e793be03a2cebfafe1d9db7dfc1b2e32fec46655e6954", + "regex": "(?i)^https?\\:\\/\\/embercaster\\-flametracker\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "17b6aedb7cd97a148d37de15220375bf53c8be15531746b9a1b57df9f54cbc2d", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b294b62f12b43d5cfa247bd0e27b9c348118deac51a20c72ab34821d39ee3227", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt49\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5a9f068ae133fd6db86d1bbc3127a92479f6363b4d6b52093890fd796784d305", + "regex": "(?i)^https?\\:\\/\\/dsaivarun15\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "486088b88f3e456a4cee99c750902b4eab93e06bd5966d60fa0763f967413eb4", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ed449ed22041eca208451ef3f6f0285b80585abff389000051bcc01e558ebe69", + "regex": "(?i)^https?\\:\\/\\/watercaster\\-flowtracker\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2175830dfd3eaa97831805d5fa0d384189aa50f10363d75aa2c6345dbb47d1ac", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d83ece2a0f0a59a9c805d18be9c2c754aad72198d7803f643245e59cf1953323", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ce06598650cfedb3436d3c0865deb8b8c53d69ce5c26e849925a9a9297c8de53", + "regex": "(?i)^https?\\:\\/\\/videodelight18x\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b108bc660746b8dc1e6a59360e631bdfd311723fed968e18150cefbc287dab3", + "regex": "(?i)^https?\\:\\/\\/embercaster\\-flametracker\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d0e089ce1466a17c60f2861b2a043498760607fb63ff922c523e8b0d28ea536b", + "regex": "(?i)^https?\\:\\/\\/amelifr1998\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "855bea1cfcc20e5f4bcd5d96532dc60ab4658ed3ecd59ed3c0e6546ad29f1cf3", + "regex": "(?i)^https?\\:\\/\\/mrbeastsgifts\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2b0d7ed74fb2bc7d8b137a9a5acd2bda01324198b44772f67281bf62869dcf55", + "regex": "(?i)^https?\\:\\/\\/lazadajkt349\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "15d74ad445a6376e892aea23bf46e6d77257c2df447533fde29677b419a9e24d", + "regex": "(?i)^https?\\:\\/\\/summary\\.64\\-227\\-108\\-172\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "519773b1a2ac07a05fe4b2691c063753499ac1757fec36e8be985fb469e14a92", + "regex": "." + }, + { + "hash": "8f22c5f7811ede7ba9de00b4ae9a02c898e10f40a38a63408202ad060f6ef5b2", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "5dc33ef4c5d7a24ba87aee2b36065df8c5b35d25e4efa3dc2d0395f77424abf6", + "regex": "." + }, + { + "hash": "95c70c8e46e341c86ed6d72e463ed76dac95d88a31631c4d792ee43b8d27dff3", + "regex": "." + }, + { + "hash": "fde6a1c7dce6b6380710b775c931e25d7c4a4da0bc4d246677293c11615a25b0", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-106200\\-101684\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a7f006149ad987845a5ab0b6b025936bdbd65b6f670f2aba3a8a679ddcd408b6", + "regex": "." + }, + { + "hash": "ec6410e186328eba0f17e8164d1f95e0d570ac73cafe6052a258fadb5664c91f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlines\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "cab9f8af0b38217a73629f41d8fa255c566a8579890f5aa50c82ad8d85404847", + "regex": "." + }, + { + "hash": "231d12da8604efd4ee3c656c4c7c0809fbb86a74b94f5d8829f0faa192f2b075", + "regex": "(?i)^https?\\:\\/\\/230809\\.acb7jtnz\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a3ca9c654226d4299871ee3d429e0c123e5b69766810546735e2a91b58f56276", + "regex": "(?i)^https?\\:\\/\\/cryptocoin\\-wallet\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2824c6cd4da216b5df9f45b91e0b82d5a118fc947f6a1954c6f090882882dbc3", + "regex": "." + }, + { + "hash": "ce6db785f8af12957e8830cd11f1ecaae0be74df6d15f10cc2bbaf63d9dc0823", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b5bd2d2c311fd69a61ba99bbe0425a6df8ecd70bd489e6b81d9dea8d7d25c5f8", + "regex": "(?i)^https?\\:\\/\\/biocrafter\\-cellfindere\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8079049157550a0ca9813d92113f97e330930708ed69ce97aaf4f1eeaf107caf", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e5be2d51d8b42bb22353252e394a4901f5c5cd9f68e740ad8bf79bb82de489ad", + "regex": "(?i)^https?\\:\\/\\/zasedeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7db228abeebbb53bc30052d15c8e12be7fea384819052f7b1feb9087d84f8167", + "regex": "(?i)^https?\\:\\/\\/mail\\.secure\\.acc0unt\\.applink\\.robinhood\\.165\\-22\\-244\\-182\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ce925cfe15a53e7a8d3b1f5862e7960cc19439454fc7a134ac9ea4fcec40825e", + "regex": "(?i)^https?\\:\\/\\/narasimhachary421\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "44c71be910f5fee699bf96a461f5a3989c0e6511e70f37455f96d4d402ec7761", + "regex": "(?i)^https?\\:\\/\\/saylor\\-gives2024\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "3f90395b423bce10afb2195a5ba84315266fabddd98018e3726226459666391b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?uri\\=b58458003\\.com[\\/\\\\]+Account\\.php\\?key\\=proxyAccount\\=$" + }, + { + "hash": "b7127d9884e13220470cfbc3e093dc16f352f0da27d24d4ecc5c9e7107a041de", + "regex": "." + }, + { + "hash": "544d258b920638ac81ed9fce568ea045a2a03bfe264def986d8c8d152ffb5ee1", + "regex": "(?i)^https?\\:\\/\\/neuronweaver\\-thoughttracker\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8f4cafdd52160c2a9960b5faa9b0ff027228db7de70ed6a6607c1dec38297db1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fweb13155\\.cweb06\\.gamingcontrol\\.de\\%2F[\\/\\\\]+1[\\/\\\\]+010001924b3f4d99\\-13774c5d\\-6b53\\-4f73\\-94c6\\-ae5a0789fd64\\-000000[\\/\\\\]+4e2dkOUsw2T8rOc\\-_p8We0CKaBk\\=394(?:\\?|$)" + }, + { + "hash": "93c64008d48059a2aaa0de7cf6b5d6deb4f83b03146bbdfbf215c6ac390d453a", + "regex": "." + }, + { + "hash": "8fb25d6c17045c636347e8b9f95154af4345d8371c82b66844739c04bed2a658", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt49\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "96f2bad941f439aa77db454ba367c5c6fc363d04209a861dd90270fe8174c514", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i[\\/\\\\]+1\\.htm(?:\\?|$)" + }, + { + "hash": "ede633589de7e5dd3751d87b1dc3a778c8a3b2a3b4d230c11c40ff0684936bd1", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlines\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7b1cae488f395ebe0d60661426ec7bc528299b6ed48a39c4a937af44ed8674c4", + "regex": "(?i)^https?\\:\\/\\/hadiahlazadajkt33\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fc367dc97276c4c32364317d037d1e5494d2ec7459dec80c9d914ef58e5dcd2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "e923659ad8db29e455efb3d239620163161c4b9f89ea52e6d5ae79db4b49af7c", + "regex": "(?i)^https?\\:\\/\\/biocrafter\\-cellfindere\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "656c24f4746f1179928d9a8e65cb453b52afb3c6bae1f7e974667ab5396b8579", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "f0e4a9f9feafd9a4ed05ec2f55a7c5837d437d0bebcbd0ff91527ff6ec955a92", + "regex": "(?i)^https?\\:\\/\\/lazadajkt88\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2ffbd588f7c4ba2eb4397ef28563f4125bf5dd143c7cf962b62e632c0ca96f95", + "regex": "(?i)^https?\\:\\/\\/btc1kka\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9be96e35394e436da11a0f1eb7dddaeb0daf5a0599da61cc78e27eedb893fd6b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rro\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7df4da169b5a444a54f5c9b63a19bddad04b4969daea22a05d8ec41263d1a26c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c8739ca7db5ba1e86aab4ac4c17e7136023d0b710bf7181b34a742b1f509b873", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6e09d848f75176cf861d70ea18e838b2fc76038e22bd606e9788727199579ca1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqn\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a50730aa217687a7947c38fbaf6ed49a47857d8e403cea39747a8f69fc05ea27", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "636a22c59c0ccde2e6d4fce381f2f05412b84c000cf7f8e3a4299a59a79abd94", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5e705eb01480298a7bcd480aa4bf831ad03364780b65cc7d2433e6771e07b172", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7db79c79fa49c89c38b77d525beeeca49e58309fb0a89eade27dca0a192c1f4f", + "regex": "(?i)^https?\\:\\/\\/btc1hzx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bdcc0c08e34c9c16b5144d406c5935197f1beb692b3d5363cf402bdfe7858a49", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1mwn\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e66c4914c3f5d357070217cbde323fc7e5e6c6bfad70d07dc65d40301edea88c", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8e9568bb497ddd4d587cd400d2b8946efbafffca7e75692c1a7698171dcda891", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "aa578b638601bcc48a49fbb0f8a70c0927a09e62de0d0aed590e931f70c9ae6d", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9d8c4197a0b8329c41c537f41db03e90aef191d5475eaa0f8ef3cdf046981b74", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e8b95f2c12d9bf4f8837419911396ebb5c572245d579464a382595c1469459c1", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "326fa46fd660c37233d9b477cd6b5b5561d3680568720d5b311a586b834d7e77", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ysm\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "76d3cbf3b46dd196849609f33f7d95b08e2f1c08443923bfe6eca966db443e14", + "regex": "(?i)^https?\\:\\/\\/btc1wii\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0fd008d5ade829bae8a49bd867af26547695a5980c921b09585b1e810cfa9375", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6b3f410b0ca8a63a31432fb7f7d933c5742e718a2beb8aa82d3f159b612fb6c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8b2c43ac00d1a5ed51d71ff8348308de9503b31404a345aa34fb2f1e4a1be946", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "54c9a5c26a9dc3e076a28995fc63bda8125bfa736965ce56db157e3534d81d3e", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "82ff7cb11a25fb2184eb6f46b64832ce2684d49e3883087e4bae1315e74e68dd", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4b2b478bf4f506627f6430c959fcf574e3a84e7db1798ad7b4414864656909f2", + "regex": "(?i)^https?\\:\\/\\/btc1wtj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "574caa6e282b7c0c569062d1bddec71310903ef103f24d87c7087bcbdd3eda87", + "regex": "(?i)^https?\\:\\/\\/btc1ysm\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "86d3d828fdd3519de254d67187fd8c3aaa89a0dbdf424fa4c895f827f7529e63", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "09402d9651f51047d40c312227cb2739d6f8e7a4ddc0d8f7872837bf90319135", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "dc77528f2079d76510cdbcf781ba5b7960bde18bdad745d663236395e33cf282", + "regex": "(?i)^https?\\:\\/\\/btc1kuh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0c5f275f85b5df3fd89d6d4dae9b58f3014de1e543b6953f23bb41abef7c10f1", + "regex": "(?i)^https?\\:\\/\\/btc1eec\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "68ec21b5d2b4f717dee6fc923e611124002e83506fe735b967f2e549fefae93f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d446a8569bc9a18f198cf5877ba3e7e8c2646891afe259a4a04e5bd8c9188bdf", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bd49c71a37d9c732f62b5cdf437e9dd10fec1124338f3f5775388bd6a3199999", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b0f7e5cc5f1f8499acf62fc1cbf9a56ce07530c68ad3be75e5de33e3d201e738", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8880491cd1e12331d30670950ccede591fdbcdda218396ff8dd3105cf142f7b9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e6e5c10a4f99e5559c7f8ff9976e8af1db4f82749f6b1ae2ee952f477903f22d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fb1bc13e7b01bc9973544c5f4189012a6cd9e26b72a9b906ea661803eda12578", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a56ca2d1b99754c570680650aea872d25b2a8c41b7b7f04593a7f3f44901638f", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3fe70e826436ef85ced984520e3bd87e40dced6878d6948e165c0ed400369741", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkl\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "abb173fc6bea7ce0d83562bf3471c260a155f78e015646cb9a474160368bcf5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+otp6" + }, + { + "hash": "04c46ed8069115e43e6bbbb289bb4ce0d638917b55894eeec21ef1c0a423e4b4", + "regex": "(?i)^https?\\:\\/\\/btc1kka\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cefc11a703e6d61ae8306b21dea91ed0651cbb38cb4d6ebd69e075b36b24f84a", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fa2f1f1d2ed114ccf5abf93f16d819d6aa898f326b8f8397cc831cb04bd14cc1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "49f080d9ba98e619ae6b895e63d8cac37981724e21a4be3f1a806104b760006f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1e4377039ebe196ec28e28c5f84b92c1a6632e5a178b8867c6515997790bd4a6", + "regex": "." + }, + { + "hash": "5c425fb12093b8782e834dfbb31de0f6c6c0686009566a46afaee171802e3030", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8f30489d6ca801d6200744ee35c01f37b2d68e8d730d670fac81aae271805915", + "regex": "(?i)^https?\\:\\/\\/btc1qqa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "65382246882504aa5e15d5c05fcf1e5b6d97657ff3d4de50c23497ae55cec581", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c1a302ea2fcf02893d71272a9e267baf26e15957df1304288282c1e35477c751", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6d8eabd30e1191a08f5898319773c17be0a8819aa1ed0871263213b23f51e02a", + "regex": "." + }, + { + "hash": "4502c069f1a56e9b73708854643bb5b6741b72015b8f4d92a41c1c11d4c53288", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1744c782444fc637cb5062ed6a80f383747174a50dc1dc2609e4014bb19be434", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5e2f759e2a3f923828f9ead693e9ed35d34de2675cd0dbeb2d148f377936f3aa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c62e21c01263e3482511cb85d0678864271e4a4f543be0292222703b966bc40c", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6fab40ed2d7f6e5da11b7db14be1a2942a02e2cdceb476688bc17773b2077b3b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eed\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "259f3fad1907dd7ecd9963d37bcba34b88611d893054e6c5bd8c43a7d84d3a20", + "regex": "(?i)^https?\\:\\/\\/btc1evx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "64a04870bcf08520f3a3549fabf0fbc0c2b1dd1d90f5a417f5a8a4e993bf08df", + "regex": "(?i)^https?\\:\\/\\/btc1kkv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6856c8050031ed112690ff501819886644651dffc7fc56d0d663a0eb3600ec2e", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0de65da6afc49d8b43f6f8594ec2ac1053cd837e66caf36fefb44f405c419239", + "regex": "(?i)^https?\\:\\/\\/btc1tge\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "19ee3338fd5a3d19010c83408e06a703d6afd9744c3578d2012be4ad547aedb0", + "regex": "(?i)^https?\\:\\/\\/btc1ddd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "803c8e93abb944c8f76d7a0c3eeb0d007cdf63ad1267edcc4a106ecf0debe904", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "737b0bfebecf0d2c61aaf11137611cfc3146b18d9545a8df95982733e1586a36", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8e2b43ca15ad9cfd888753195100eb52c25a0400d857225f72eca13587a17087", + "regex": "(?i)^https?\\:\\/\\/btc1ddd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4da848544b2658bac8737fb96066411c439726c78c137dd522e45ef76d58fb9a", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c940a730ce6fdd9749f5a1606544223976979b589313e74d4143a4cdb90c9b73", + "regex": "(?i)^https?\\:\\/\\/btc1brh\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "178d13075188afce5f7548043e4988f7b90f97b5e724fb02687d61fe2c48482c", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "12a2da038486a750bbc3bb8a6cefab2717fc679d92263e8ce300cf0c32929d06", + "regex": "(?i)^https?\\:\\/\\/btc1kkn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fbb02ac1e76e38345d5ff70ff72ee5fea886cc5c6504cf7bee3e795bf22b7e3d", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "63cb1f75062e0e39445844df49d8489b97ed45c5379fd0ef7a7871573719e35c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6f2d71187b024bfb6ac719b80f13af4b7295ec440ce591690941d95fd725c", + "regex": "(?i)^https?\\:\\/\\/btc1qqb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4a57718661118878b1c15202dd39d94ac8fa82c138476f07eaa1a67cc21e3c69", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c01e8a153fdb8063b646b72c301a7e0f06fd928269d4b8d3f52accd593f8f92b", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0871806996d8c902f36b7a0015bcb435af67d446a2552f646f9218645bcdfa9f", + "regex": "(?i)^https?\\:\\/\\/btc1kok\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f4c9b862825ed6dfef5cf2d5cb0eb17678d3e51560da7176da55dbdb911f5d4c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "461c1d616ef724f4ad1698fed423cf2e7817be0ee8dd0d28dd79b4e072520ad7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "61255c608159818ff3cf10ef6e49652778f858cea9bb7f140ac0fd61642c7dfb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3ff3fa990c869ad501c896b943335a3a1d799ff0f14c46c8cb56b7982887e725", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "eecd5829ec5ab56b2b8b1b52882410334a5382e765d69eac11c2b14ed82ac07b", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cbba896714f2557a0ec7ca12793480be7e8824f0f39e062fe7fdde1c9d8e78d2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d5dd235ebd936286a54e1007a4b3ea45193f69c31ffde9db0fe06368628edb71", + "regex": "(?i)^https?\\:\\/\\/btc1eeu\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b75bdfc118b40dcfb741301b0f6e99c9eef8a0e3a9205acab9d28578803d6992", + "regex": "(?i)^https?\\:\\/\\/haslkaanah\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3c6108ec8153d0ce6660adcbc3e5ac15bae7a90b8ecb68be662067d3bada6184", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eed826c300f583af6370e797fca8ee573a3bee1378c5508b78feb89585511478", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "70628f105d10d13e74b89d4a64f1372d040cb0afd9c01e55723e1953e11f68b7", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f183bd24298b67b68454dd2922bce74aaee77b7f97c8a88ec88decaca7982957", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydv\\%24g\\%3DJswGhjsY\\%3DLbngjTsm_Ln\\%40v(?:\\?|$)" + }, + { + "hash": "9b017843a4f298f7baa0577e1401a2847a38f91a08b47b98ddb93d2d5703ccd2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d928ff419e45a3311188b0f2d72495789db5939d4f47fa52af4de04226d89b73", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3188840a8796174980e958ddbff86b7382c52c3cb0a1be752da3c08e47d9064d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ffa99fe23dfcac066aafc4ceeac40a26053ecf75c3fdd86425b2b5c60d343bad", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8cf7da1439a9b507f4b613babe8467d36365fa406c60c72d74bfcc7c0da87d31", + "regex": "(?i)^https?\\:\\/\\/btc1qqg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "427c97cb705b393f5209fdd576a3c7b82d499ec9cb6372a4f8df963275d54162", + "regex": "(?i)^https?\\:\\/\\/btc1qqr\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "449c890dab8db29df2d313808d86eaaf971bc410ba3c100e264edbe6e2f19a1a", + "regex": "(?i)^https?\\:\\/\\/btc1qqe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d1997b6d1556ca184202be15096436aa3d2988cbf363d0f017635c68a71f1868", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "27eb9efb5882d2dbcaaf6e734e772c1fe5b52396ffe103fb57db1d9b0af1706a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fbc992b25feae0609e9691531a1f52c5f2f91a1fe183bd05d5894271f1b9511b", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d157895e9ee4579c0faf6bb291b1390fb53077b52cbd17772bd0b764915c90b0", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "de110865d6053ae4c9bd4b27d818631e806bd47760ffb34782062474d4e3c3c7", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a11aec3e3791ef9e637fa3852dc853b19236b649e67cd50987c415ed2227ab00", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gge\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "49aac7281e4d402943da55df9da7b5a8722fe32d31bc28df52d083658d374c3e", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "20351ede6be89b555fae34cc5f04f86da8ae36bc2095d034c29d4bdd888d3a35", + "regex": "(?i)^https?\\:\\/\\/btc1kok\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "00b359693c4a8da8f85abd664b0020dfb5342f1720809fe2f4ba1bb093af351f", + "regex": "(?i)^https?\\:\\/\\/btc1kke\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "710248d52993e8f7a86927122f8292a84672e1c5375feb1e2f3afde637bf91ef", + "regex": "(?i)^https?\\:\\/\\/btc1kki\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6d3775bd6a7ba65f77f9c30d17bda47c2ef17f9c6e1da437952da4ec566b83c1", + "regex": "(?i)^https?\\:\\/\\/haslkaanah\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c6413abeb2d223508630ba3a2e7e2cc1b08324578ceb71daec2de7f829ebd179", + "regex": "(?i)^https?\\:\\/\\/btc1awq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fd14e81ce048051e384208d95dae948dfd0ec6c22fb8b9ee99980b64e75c1248", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "680eb62356a7ad401dc0810251d473e840060cd9b95b062ee43ca9833701f729", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ce2188e4b8a3c2fee67bc3d5031bed484d5454f6fcfcd847e3dac386cb599753", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5b32257719d1fe5f86c9d909c1d98d4f3c7dd3cda907f7c27ebccd56d251cc54", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "30a2c59dd0e9d4219d8d5256a95f5f2710a135e0f011d99dd8dd2a90af902f7c", + "regex": "(?i)^https?\\:\\/\\/btc1wii\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "98691f98fe9743721a336f2dc15d01293e4bfcfceebf75c0f95ac7835e287744", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "83390608a5bce9d8efe5c636de3951977d8e937ac9fa60ef97804a9f50a99b90", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "304cf4a0be7a8f1492f42aa38750823c512705b93e97de6e66ab62ec59198a45", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "86127e99a4305457e38e080cc45c6a6e2ef749466b72b156fbc7618621642afa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9969af487b59df2db893128ce296b0f9ac0cf6d687a93edfaf7eeed24b56761a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "877ceaf9a4a44f3af5fc504dcf7d7b3665cd5ec608e1163a49e021410a57bda6", + "regex": "(?i)^https?\\:\\/\\/xn\\-\\-clicsant\\-i1a\\.cagoogle\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2fa354b7bd4bebef460fcaf6a12db92a633da133f3f12d7781dfb0a762d424fb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fcb68212bded0c2505856c422b68ae6953a62fe660211a13d4bf55e8234eba42", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b89191589da243d2841460b9c8fd2b61fac418dbb935470447309a431f8191ee", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d0e0cbecdf7231d987606ea7bd3cf9029c1a04aaa6a3038b905fd5e41bbf305f", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3f643e2d1015621626e3ab034d9c1a458fe97e4c6ada8acbbf3190cbadf03c6d", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fe3931efa9c8136d8c0eabb4bb4dba695e270f7faa24f9ef636503b123f41a9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "52f5fec78820c15fb3b9ad0e9bb7f5d786073a791dff45943e76ff1160d9ec95", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8289ec3f9ba3955b74f65e8de08f035e45386b74f6a43fea5dc66a50aa790d22", + "regex": "(?i)^https?\\:\\/\\/btc1eem\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0cb37a2e90239157282ee147b313e5b47312d2263458b4784f11d95fb39e2705", + "regex": "(?i)^https?\\:\\/\\/btc1eye\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "317f4d694390c92089b0f2601abd146f3d295311a8412b70f3d5e755d74e1e20", + "regex": "(?i)^https?\\:\\/\\/btc1qqc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "abd622437b014b7ac4fc83c18edb491a34dcf8b6398d6e1c59b9058032452af3", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5df2bd3e90048c7d8e3b6273d2149d8f362113da45f7053875c5565395cd1af4", + "regex": "(?i)^https?\\:\\/\\/btc1aza\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bbbee36897a97c319aa04f9ccba7106e537fbf11ec6338862c08ccd477830629", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f08ef7348549e1a98c0805b212c400662b0adbeaee53890b193f991b944e2da7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f7cc489d65b9630096476a7ed8fde3c15b17e33ef595765665e377262de188ad", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1137670b747444b206ec43d932b7bd699f00f80344e3d771a1facdb49b5c9a0b", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0e951e1338d1e7a6c1e6b6599c2a34d21a11dd69dd867b20304895a0433faf1f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7dc074a90604d360ed21e1b495ee1bf4ee8b976c1a0a8deb30190eb64c227893", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b80f0b3f3f1c81f5301887654199fef154dc8820835ef5b22024eafb435a6674", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bcd1ffd8fd9b640303547773047a3cdf81d25d2319a92eec71f164f8f40d6e71", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2c8e4685e8e69c2e06fdbd2bbd6ec5db350072fa8bb8d34eed83fdb82ef646f9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "752a10f52c9394934005cf00af48a87edec1793a1fc5ee5005f699b049981132", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dcba13aa636317bd7928fc1fb7a1eacd9d59a3fefaa87547b99b3e47d8ae0593", + "regex": "(?i)^https?\\:\\/\\/btc1qqn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ec18a33866384d3b6c2e189ac08c612a1d798974ee72f162a56c7f912887f9fd", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b46902d39511a6061819d78e8ea358dd1c79c065e2523efea388364c1008dbb3", + "regex": "(?i)^https?\\:\\/\\/btc1hzx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "54fa1c21debcd8254f78c6459910dc5be2fc2b839968d8e54666afaf490f3036", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6860966c05dcb56d154924b1833f11ee0118b99fa9fad2ca471d1d74ea192ce7", + "regex": "(?i)^https?\\:\\/\\/amazon\\.obpkyqq\\.com\\%E2\\%88\\%95aglsd\\%E2\\%88\\%95kruseagpz\\%E2\\%88\\%95deqzv\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=wduenj\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "852e2ed33b1028bb94dea38d828c1ce23797e572e430c60e01a8802d0161a249", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "33fba72a32b1d9e83b30059ef2465a3eb2ed0bcde5a428577eaf2b04ef83536e", + "regex": "(?i)^https?\\:\\/\\/btc1kkh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1a7c31d229633b208afeded2b4a76d271065df65120c2ddaf41b41a92a710b2b", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e923349e6d1445ec6e4fc4e9c442dd66efa3618d2caeb545dda786ce4ba67f5f", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6cb92fad77c649cfdf8c04049de8933bf7c82ee0c6c55d94b858abc38d704d88", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0f5006b11fd46f8c0a06251320a8036c76d2df17c877d79a73198e2873a41767", + "regex": "(?i)^https?\\:\\/\\/btc1uiu\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "048e12ce709e3ee639bb70c244fe920374d452b057934532521261c88d9a8ecb", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "eb75cb7eb5b64ffa7333487d578cd852b1edd37cae684fc3efe7990b42bcd64f", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ebba7174a0f25f1f379fd4f8feb6f90b29164d0d297f0d81a784cfeff1aefe21", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5965b5517dfc7a9bff9e153588a298b988f212c3c824d772f91c3e598353b252", + "regex": "(?i)^https?\\:\\/\\/btc1qqr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8ce91479e814e56dfa004ccd8f135868620ed91f85027e1504de5adef24b7e17", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "e1582251065a683233d4d1651ec88049e0e5093ebf2a2c8d374aee4232a22c30", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1f0a408dd30acb1cfb455d4c8254a55ac63cb269729a6ef1237ed71788c7458d", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "03d9c2eea1b4f939fd7e53c33e6fa260fb5c5ab44090b1326876b85ac1caf4e5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "72836df1d7f664fe6d9d2bb3cff1da8bcc3197b438054cbb44694db1ec118547", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6d89f513911ea97203b241e66d89d6aa57dc656a81d3716d0639c68e342ce766", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1mwn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "44c7fd28a56492e544120332cf6309655e0eaed065d3a954dc78b5d73d66b1ce", + "regex": "(?i)^https?\\:\\/\\/btc1kks\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "18c0d7a0905d50014a7f213caa21c8dfddd856be1e1704541e33d1ab6ac8cf93", + "regex": "(?i)^https?\\:\\/\\/btc1rrt\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4ddbcce3aba3d565ecd035197844ebc2953e98a4c7db2377966468102bf89fd7", + "regex": "(?i)^https?\\:\\/\\/btc1kuh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "69b99ae22d3c48516c0e4d73632887fe5f3adc0dcbd59d6f0f7faf8964079440", + "regex": "(?i)^https?\\:\\/\\/btc1whq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "490064346636724a4e6430622d46fcac62eabbcd90415248039fb0019db1e9a1", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7f92a97b00fc33c4b617fad5ee41660fbd2ae597e583b692b86b5b9e66f58b81", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "eaea60d51fd939239f760aba37208191fab65a1b6b819953e687873e0c37df47", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b0a7e431c6bab0dfa25ce34d940c7dd95caba3aac23beb61029125c1e11b5811", + "regex": "(?i)^https?\\:\\/\\/btc1eec\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "32c44eab5905f1e10ef57c65ea27c450c59467475563ad7e608a8eead17d0305", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eed\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "140e0b761975e20e2eb30463d0fedcf12ebf0aff1e1bc145d602ecd659af420f", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f99fd32547617bc3d0b70b9a992376186996aca46fa7a95230515f58a0beb542", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfg\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b3ae549205a44208e39908902764cffcd2610db777cc0521b81e50d3f2e96252", + "regex": "(?i)^https?\\:\\/\\/btc1wee\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "37be30a8247b7cfcf166345c34a39da46ca397073a819a98ef9f0761669d4854", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bafcb9724719fc64efd9eeb3f0006c70cb0300177f296167ee975955eded4090", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6cad54a097c2aeb266ba4417227c5d2962e663b9a8afd95e65813ae36f346651", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8feb413dcea760cd1e6aa28d303ef216a5e3c063c3f1b27b512a2580e1006f1a", + "regex": "(?i)^https?\\:\\/\\/btc1eyp\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "858ca6a103b3f4367500ea44116eaf48096fa10a7e9df22823acbc3a708e6d59", + "regex": "(?i)^https?\\:\\/\\/btc1kkh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "23e0210662f19ae04dd4c456831c5250809f9729ae0bd177da7527fb2d3ce75c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "64e11d2f77da5467bd2176b325fb308a5fe01402e3311a93fbacf793374c587c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4f17448793a8822354dc6021ad3cbafacf82a0b656e0f587c802928c64927dae", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c2c8d4aef8e9b12412f8c6fce579b00c4be84e8713306537960cf0e5e5c9eac7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d982fd7923de6dfc6141742eaaaf0e0c3a9d4843f80448ec993ef8fac4cdc430", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7020410c117fd592a1b36b18b72eef39afe9725511a41940fde91020cbd9c9e2", + "regex": "(?i)^https?\\:\\/\\/btc1kkw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7963e30d06ab25e73a52558c7e2b2549b47aac826e357609faf56238abc1aa09", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qql\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fbc111f42bde3781f30b06ec374567bf02ea589178bc46140fb09f412ae1ebf9", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5b8a18c8e94a52d14991fb07b6a52cfcec52cb22aab3bd94c8979f3f02804260", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8079ef1a261edea070477791614eda72be79ed10d8c3ec16c8856d96105a1865", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cd3d7889437a69746f5b49e3939a8e14b1e8697a30ab2ac0be836c842eda762c", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "be3617d801da1c5e4fd3d0b4e2d1e9e3d27c15974ccd4f69bb5a5507eec3dde7", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fc73afdfe463a2574d01be77447e8dd0a1dae92d8ea560f017e0e6910356727e", + "regex": "(?i)^https?\\:\\/\\/btc1kks\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3abdffac924e33d1e9a1361be64da0d7adbd154031fc612400e99d9ad0d19dce", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c8a45b38ae527033fa3287967e74ef464058871477723283f1cd6d4973f6ad1e", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "64a09f1b8e49247e99418619d0303822bb51ead6d088d20e658790af38144f61", + "regex": "(?i)^https?\\:\\/\\/pub\\-4c1184b8138c44d88134bda405ab96b6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0aa90127556382c1ca3a48c070603f75d2564b15e2ef0b717a0b506a64c4e275", + "regex": "." + }, + { + "hash": "bf1bbea23355dd67848c2e869b96fa6f6a4ba4750f77a058e0e47e0654ef42b1", + "regex": "(?i)^https?\\:\\/\\/btc1aza\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7e06e6c9112262c18f91c1b459bad2a4e381195c42f8cec6844db52ed4cdc861", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "092044626f9c10167cfc3884d30dcb4e09413f035d8f35d2778717950122bc29", + "regex": "(?i)^https?\\:\\/\\/slgnconfigsuppotprlmemgyurrte5ertgsesfrotrce\\.206\\-189\\-156\\-8\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e3bbae1d1a90bc6d0002177587f9a2e3572a9a148d15eb6e2985c1c1b81acf55", + "regex": "(?i)^https?\\:\\/\\/btc1qqn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4b52ea11df5bb424b5f6dd92c9d6a11c14d72f8d987711a1d3e8fc64cc9018f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e4af0f079e07574e301421a5509ddf4f5e376969b28691aba7ca9d43a807860a", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "354bf12570211caac9198f1df81a0a7076f0f7552bcb7739fb0e09ccc76eda07", + "regex": "(?i)^https?\\:\\/\\/btc1eec\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0c879af60ed9476b08998dc89b5e37faa4295c9131c67f1ca75295efbe1a4f2c", + "regex": "." + }, + { + "hash": "d1a4d751d7bd39282000c138bd7f1bf6cab89e4f07be9c86f10d7b18e632750f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b013a39ebee2e5de5dd784ecc25808b19bd04a18cbc158f5bd4c370824be0959", + "regex": "(?i)^https?\\:\\/\\/btc1wee\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f84c082d75b25fe3f48e2f12738212a0df7d8e7530a8d6f09ed52daa0e3e6eb3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a757964defb6b076b8e289820bc0936212db387507559b1f366607ff47822c62", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e2cd3e955b893252f9343e621f768339e0244dcd6a7c3058ba33fe63ca01007f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6481e7de0e85110110c8e26c9e75de85ad711bdbf5d822f61893739b503edcde", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cb27621b5ba61e5b27fb617f0b4aa80393f3a4654aa8fa4a48a7787cc5039e80", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rro\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d75a98855ca06ef9cf1ec6bfca3f5b3a7c0a0de4aa73b8b46a4d101047712ead", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "091550a228a3141be0f2c64bc7a131bd66abfa802a5e5b71e5f23e5bacdfaff3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rro\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3a35edb4f8f06319a7826fa1b1d485a109536e00aff1e997409e7b34088b0ca9", + "regex": "(?i)^https?\\:\\/\\/btc1kok\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "76b2591ad1b638352492b2864f2448db5198370d482d80a1bfc82275ca6bfb91", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f5fe0b7f732ccbc14df6d19d1689ab3d4424346d1ad0e60ffd755c86fd43379e", + "regex": "(?i)^https?\\:\\/\\/btc1kkg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "962b600f7756a090abc7ffa7cec547522463f665d8e788130540d270a17332fc", + "regex": "(?i)^https?\\:\\/\\/btc1ddd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1dac73f6e589608cf5ec185ac36660712e2960560969a56eab61520529116bcd", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5a7cae6d6fd19f14f30efc5c246216b4672cc2a8940c0981621f72b9bb538f55", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rro\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5675f51aa38d00cb567fc88edc31ebfc5708a35765d23b114bc45e3fecdd5a5c", + "regex": "(?i)^https?\\:\\/\\/btc1qqx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7c13d8287a4a42d94511842f6d7612eac07b29c39952bfc1788d5e411157e557", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d6e56544ddf1949ae158c5f81da67bb56c5eb813bb17e6c466930fcde5bacf89", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c54904de686c8fc4dbc00bcc803b8a92a6e24e0b13d52a706fdc4aba9c34b6d9", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8e5d0ef87698f55152525dc211cdc033421179b8f3cf07c249d8c34fe77f38d3", + "regex": "(?i)^https?\\:\\/\\/btc1ysm\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e392c24babc3bf9c10bfa6501b0fb02dc79bfd972772153a9dabe9fa53e6f", + "regex": "(?i)^https?\\:\\/\\/btc1tge\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1688021e241b6b079e46c882652b0caa32fd8ffac1a0948327265b76fd6699b8", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "46622b372a516adbd2164412766e40932a8c64a1efefdd07dd0dfa14a3e8d978", + "regex": "(?i)^https?\\:\\/\\/btc1ewr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "80e58179f5cc46bb78c4e84684f8c6c2671d9cae0f91e29b456aefc77c446faf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4190d7ac1fc7e09bb9b60a9d61086a9051f14312e830ab118b55c3264d9e2e26", + "regex": "(?i)^https?\\:\\/\\/btc1wra\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e8e0b33b3dd921e7a4c78bed5b99dbde338240477b5d9964709443168e474d72", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "04649f4cb647f4ba8b35b742e7f3cad001a234cf10ae9c8e0cf9f3b51a5d4410", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gge\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "76dc737b6041ecd4fbb563ec34997bbfe7821c593331f3949869b6855cb4d676", + "regex": "(?i)^https?\\:\\/\\/btc1wwr\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "513ddaf38fed09e7ebad6c5db59ef049489de66d613e85e8b2db99bc018441b5", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3d68eb46ddbfb19798876a66bf83854fddf50a5335aca607bbf3b4dad720c843", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "01a29921251aa392b0aa511a6a1b097c6b4069010160417c600d36a5cb317460", + "regex": "(?i)^https?\\:\\/\\/btc1ghw\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "574c17884adbbd97eda7ad8a0858d1bf3a982aa7eda82ea13d7d7ffe10c192fa", + "regex": "(?i)^https?\\:\\/\\/btc1wee\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d4bf3e9b02f615c5b223f02cce1ca6f3c8e1e392b483fd773b7fde42fceaf25e", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9b11aa484505dcd64d57aa52a8711b5c6f81faedb516e76fccbd1e374757102f", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5213b3c3cdf2d8b1396bb8be57db38735136431408f2f343da425adbe804df9b", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "705e7c2c68d39b328e66fbda29349ba2e41947deab0182e59366e3db9a496d5d", + "regex": "(?i)^https?\\:\\/\\/btc1kkv\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "aae9cd3b3303de2123915e13f637b8cba88a652d031565144d0e16426ce2a6b3", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "786d62d44b17ba6955d72e522d151f47cce3ef4a6903d5aa10401c20a905f9fa", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9346c51229598a3e594f37949223b0ad3f7da43b106cb1e2ab38eccad3edb3e7", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1ee5a086267129dca1ba9948ed7c35411163b0d4d77d252f2c964159c92e727c", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4756cfb5c85b410fe368cdc587b27e23ad2125ce9372ffe97ce8f9ca49dc3899", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "194299320a13508cfb510d13de23a1710749b25784173739a48c05aeb7f2cd57", + "regex": "." + }, + { + "hash": "00891747c2a073513e3613089535c58b23ca9e329151d1a020f7b63ce7e6f7de", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wes\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "25bab527f2d01981b4d3fa011c3ba9cbd06ba1fb7923820dcfdae833b1e3bc9e", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f5da724cc57748704d9ccce5b9e5804ecff3088438c754b7bb7fe032c013d4de", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "84548906d1f5785bfe613089c61ba29e49638fe121c5480bb3d274fbda1c68e2", + "regex": "(?i)^https?\\:\\/\\/btc1whq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c85174564048a9ee5b01ecc340792ea914f78262edf747764c016892809e7869", + "regex": "." + }, + { + "hash": "2b103276e44016505c79cfa97498bcd397c480cb3ec41cbb38f43847251d6464", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d3d9461c4aa87b5decb741e8a9ead237bdcf4e371dccc9879dbf943f8bb15af9", + "regex": "(?i)^https?\\:\\/\\/btc1ddd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fb9f8d91a6945540cf069090cb065dc5bead9400c850096898bccd36ea5cc615", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "250e97b74ab933cca7f8b689fef762bb73846b1aee03db48d7f43606b413a43e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d10f6fc6beee909818058c8133af08cb39d6537f61b98a48afcf016f2b951b64", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "402b2e3b38b426a35dfd112d729f2267f5048eaebf8af62a2a986db0b24d8c3c", + "regex": "(?i)^https?\\:\\/\\/btc1gge\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f96ec2b81b985d28d7a3d4d627758aba69a80938584e4698dc47757b985dcdea", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9cb8c7133738ecc5ab73a293f42436a1411405b23c42b2a7377f44438e1f5cb6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "021900d77b7a6bc7e79ab134ae4ddb6b7fb199b87e71d4bc6297acb302e676ed", + "regex": "(?i)^https?\\:\\/\\/btc1aza\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "367e07d38e7209a031cc1c13ffccd028c76c66739b0cc9879514f4f3e8d59607", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "64f21f1493aafd699eb982375b36601dbd38f5e90dc0fcdf0e2c89fe7d043316", + "regex": "(?i)^https?\\:\\/\\/btc1eye\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b84d38923223247cb08b77626fb2d5977f61bd00e22ef5392826e6722db9470e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d02995f057b421a2b2c86cb929f711b8cd6f8b39c69267813c25ce34bb051ed4", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "aa3ab454643eee615ce57f7b4a1ae966f66b58054c03303f61c203ebe6e0dac4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c7d11924f79b131c91777ac38d368b7d2f233993ca23c2e29c1f23e6bfba89d4", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ce622ac402442bf72b49983d5de28f780fe9726c5b0c077a951bbc72447031ca", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fa48378926c64090e9e4dee17be99922cc4d1bbf2767437697c153edc4a510ba", + "regex": "(?i)^https?\\:\\/\\/btc1kkh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1da858abe7888501830f6b139bb10fb4b562f8df4292a43cc406de3ab1046e71", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "299ce4d11d23c61b90ae6fc280bdf53c032f05bec7317e9dc50071b1e2feb775", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "28398305cdf9027ef11ef75ee9454d20cae6a6aaa78f7c4e079de15b6e8515ef", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "49ccbb3baefafa4366852a57b3cdc0bdeaa3b754aa4882a0bdfff099c8152d33", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "adfdaf6561a02785fe4de458c8c1c7c93ac9152f9f4ac119df3cb9bd260f491b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "93b8f1a0e13c380e11cf96b0fa55ad866444f98312121567d1ed7912c094184a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1c39ca38a0ffb040f5c804d4d110d57c15370a4d442127924fde5fe1b24b12ff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b0e196a60b6cecf2ab71fb3b6b548f40b4bbc28197956db81ac9a51d90780db5", + "regex": "(?i)^https?\\:\\/\\/btc1qqg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0421d9767a5015c4018bd4dcb49878f2e1e6e9def4b7add31c1c2d1e7855cf12", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "371416c771b885b9eab293ce2c0efc3fd6f1b51257530bfc985c49a3fec98fe5", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "093aec2cec61917b3d6b66913ca639d11f33cbb0b9034949497f7f239a7e358e", + "regex": "(?i)^https?\\:\\/\\/btc1eeu\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d9631bd305272c1b248f1eb89b93150d63539a978c4e0d6c02e17c0b53668c34", + "regex": "(?i)^https?\\:\\/\\/btc1whq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3bb1b17c273c8690be00f8dd548f0a2aac05bbea61811e6487f628001f9656f8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bc413aafb8a01ca0db716476b5813c39532fecc437e019b9804e5664b8c75173", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cc88185a8fa755a94b7259b7d28a4a170fa3035c6182e4edd022ccd686859b0d", + "regex": "(?i)^https?\\:\\/\\/btc1qqx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3c640d81319298b1cf62d5ef890d801014414794be6d198fc82bc6bf35f0db4a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c95589bf3c9412a7546133093f66aa9329bd1e16e463bf7f709fed52e52dfb86", + "regex": "(?i)^https?\\:\\/\\/btc1qqw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "59f7b58ba45dea8df63c7e69b91f68710d0feb47b2f5a8f19f551ee7d7aa6488", + "regex": "." + }, + { + "hash": "9426a03772ca07d74fda78df4540f41529ac5aadfadba7b8f44cc04bfa1c4310", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "478d49e4b960948c401a59b4244d5074584331ca6ccd6c6721783d0074a18993", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "30816cc0509e1e6075bf434657d507aaa029ce86eeda89e9a1d7eaded46daaa8", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "4e85544dd1e1f789dbe6897afb2db229c55932c5e74bf88a4e55e563730e6a36", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "460d98ee13d7cf44dc7790ffe1cd134284632ab8d4e0c6bbac0cf5dd26bea2b1", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8dabf105887adc722b4f979da64ce2873448103b4a9b676be75bbb1a64905784", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9a016e8b6147a9f41793207d94a599b73d4f8d9f53c403b07ac14d4322d37516", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aza\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "de257617255cc999edcbab5e67f08bdbb77d8be626cd421c92fcc48ad8a2748f", + "regex": "(?i)^https?\\:\\/\\/btc1wee\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "71ab6f250cae7c56a7213b3370fcfb4f359a19bfe1a61686a07d923827758665", + "regex": "(?i)^https?\\:\\/\\/btc1tge\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b8b0051c98e6227357a645c4a1cbab1a8efbda611c172e947abef1253a037b4", + "regex": "(?i)^https?\\:\\/\\/btc1ypw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ef9e28ccc91d44a95b0aa745d41003deefc1f6209eec099c95f11956f6b40048", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e6603aa212864bb493371c830142a258fea9927f1297d56ef9bd294e4b1784bf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a60165860a7b53b855075856ee95ae68e00af908bc68e956ee26b711b933e139", + "regex": "(?i)^https?\\:\\/\\/btc1qqc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "748faa92777ac93ef7ac14153d22d4c70143d47ba0616c06cd550ab4358e7ac3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1mwn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "29429eb2011a38b04b0dfc762c288ad84a42908c2f79525452434651847c9e16", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "bb2dffbf8a434c902415a5fbc4ab5f67e928e82a544815ad198ee2c3866dd3ff", + "regex": "(?i)^https?\\:\\/\\/btc1awq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b83d8caa7df0587570dcfa1728d955f4f1cadea48c2deeef6f0af6917f2ff290", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d547d837b647b4787b3c977d0e02a6d512c15e580476e380cb2b1efeffbde2f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "6af21c84df3939a14bbea592408196ac322058a55e4698b52e9524aa35f43243", + "regex": "(?i)^https?\\:\\/\\/btc1evx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f8f04b9f0992c8380b3db072bea1273798451e05734cc8805ad320ae84c224bb", + "regex": "(?i)^https?\\:\\/\\/btc1ebh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "12f032096a3ffa3ed56554d27d1ccde5614eb07f9301159207ed41b57d737a21", + "regex": "(?i)^https?\\:\\/\\/btc1kkb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e8e08a3175faa1a98fddbd29267c92dc10d8449d9f928636a2bb5b0994c9f6cf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "26134c3bc8edf13351a3904c06a1608117d14d3948437c535c09fab239ab2039", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3f53f56abdd403219e670aac5cfb0465390a8f9ad97c3d00b917f49077946a52", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "251e94d66b9b1f9a54e99193d15eef0cd1a27541247c3d3406f04b5f451bac8a", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c33ba00ff1d319fb30b5f6819751c4d75cd942393a0ab8c6276552ab557b86b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7f0537f94c67879a7296046204806a34874c86d034a7ac2cdb0472feafb00dc4", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "da18768311f296971133574ea39824d20e30f4fe5104e58506c0437889722fe5", + "regex": "." + }, + { + "hash": "4aa421eb893cdc5215ab84323789170407a245e05aaa02a88a4a2081821198c6", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5961d800b05fe23f4e3083a58715318af4d81e5bc79b38de446ba1fca30f5234", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c004cdfb4697323f57bb9c09e2d8c6b79783849cb96851345c136f91502d94d5", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2f650515c05500c9cbf00bd52ae23467257c747fd043dc96aa00daac35fde4bf", + "regex": "(?i)^https?\\:\\/\\/btc1ypw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2dae94dbb406fb3cec56d87eb9466abbd054138831fefafde6d89a703f9d2e83", + "regex": "(?i)^https?\\:\\/\\/btc1evx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3e6229207e4fbaa6fe73398a0308f253bf9cb5eadf1a273ea29be9780ea56928", + "regex": "(?i)^https?\\:\\/\\/btc1awq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "616ef82bb7545c7a933e9a1d951acf74e1038a86aa443f655823b077a421b439", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fba813dd55b4177d45dbd911f55591dfa2647fd5314f049a654cee4131818aab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "69e69877fd12867e8de9251d12e36263d16a451a78baa2e7289cd93b6e186610", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a49b7fb4200712775a13cdc0509a65ba071bd84ed279ec6e5bd6c764ee7cd700", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gge\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9f6c01845fdbfb438016a5fcafb53250ef2b2bf948fddb7723e50c4135442877", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0f96d457f1dec1a278f798df8921b389da68448f284d6cbdc5751b9e1aa08171", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "af7d556ff96218004221a5be5c77ca796b904cfa51a6dd44982591c8859fe7fa", + "regex": "(?i)^https?\\:\\/\\/btc1urt\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a85e5f27c23989239da74a461782702a257cebf869eaa4dab3b166244192759d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "4893653b84737a2eabdebacd49076e5fe3b78766b3e445454f7215033feee943", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "44c73c861d8cbba67300eee8ad5611a1c24bfb14d701a59de896c4b24a9a9451", + "regex": "(?i)^https?\\:\\/\\/btc1ebh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2628b4d840dd80343cf632805dd0447ac4782259ae9f3ebb67584458c120b89b", + "regex": "(?i)^https?\\:\\/\\/btc1hzx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1f8a78f51c0992d1fc61806a1483be79e7e9ea04018c797907a20ce32dc0100e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8b241906e1dc1f32147539c39b5e4edcc8f47428e2096e6c626737f56a65fc1d", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1134d16f1368262080d6e4b79f218dccb8e3bf251576da138971a8b91ee50094", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ffa9aee972e6f8a04cca65ff58a5866a5cdf9699bfae53a07be93e29e2f32446", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e493e2292700e1a36bfa374b476f4aa8deb8d00c9e905e8423a24246b0db6b19", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d9da8bdf70c5852c71a29af142a5b42736e1798dd1fbc1c047c72c8659d12911", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6c14bf405d796c6c515c88147d4cb2ca152f69ed84e8322b2584c7e0acc846e3", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "331a55e52beccecf0b055735747089c28187c4c270c660672331359a83e87dd6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "65ab2aa900cdac3cab656fe5e787220453a52c10526c9feae50dcbc5a1303ede", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cf4fdc90d220dbd206347c91bc0ba9ca52752ac6ce955d35cd449bdc2a35836b", + "regex": "(?i)^https?\\:\\/\\/btc1kkb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "20ead85e2f731c4f32414cca08da6eb018cfbd06f35f2352e28fea53fb829b36", + "regex": "(?i)^https?\\:\\/\\/btc1kkd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "250edb7dfbeb8e1ed38fd909eca9ffabad87ba415ce6dc6a02ed9b26b51e1a9e", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "280dd9e6bd078b7e3992e1d08d8106aab468608ca24ec147550a7822edec07da", + "regex": "(?i)^https?\\:\\/\\/btc1qqn\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d0f38fdf9b79aa87bf60c26d03ed66cdd45d72de6b1a169dbd2d46a08712c2ff", + "regex": "(?i)^https?\\:\\/\\/btc1wtj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5658e009c7c5fe27c787abfe10d4181866bf58874d45ba8044da7dec280875a1", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eab0573840d075c8109cd769b444f370468b8edbf7f49f2711cba7dc768424e9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab02e6839088d8c035152bb2cc4dd4fcf54b2cb225561c33640cf2c4bc0995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.6\\-2BK7HFyZ8c7pI\\-2FApisaYc79ykGMZWggjinRaggUhBDK9zKkmRBX8ubGlOktWjwS41YVebcTLKQeI5qZwzBScX07nR6LEi5nbIQRpQZu9vu9grx4yqcyHQPNCnzyRdD5IDzSNQIihCJeSdjtvGh59\\-2BmcfoZYry9Sn8VZlazbL3KW6\\-2B8kunTbZl09QsihNRmTZ9O4Uqa9eVtvssl8MeS8XQ9UpeeTuXFfvtf2FA9QEiMQ\\-3DLtWL_6tOLpGCOE1PuD5\\-2BaC\\-2FGwp1UOIJQPjCbP25Q3zrm\\-2FncUTFs8\\-2BwT2MpbR6AgbeIq6bqfxWYdCNmrAIyP5QHFokhFsr0gE\\-2B0EBI7vnzA95Sw2JKvYbfSkgYBXqjIPcV2FH0gyeObl9ua8W4JzfOMpW1PI66iZXckk0NhX\\-2FO0Qli6yw5HYCWpYQtMhzH5luDidHTHLrSaugzf9rD\\-2Fa6ayrxxWT5sFjAc\\-2BHpGyHr8jZiBmHG1CSa7oJxQ4uBAEiOACahaln0HLbzonI7UfDAoc9JaRgBXLqCY1SKRBA3bQKTk0DTYIk8fPcJhR\\-2FFFsaZZrN69wSu8ilO9g\\-2Filjjmx0UlgUvfiZ3vJxXnLdlV4dalFZ0oK\\-2By8qF20L4p2b\\-2F4O36ghOxIXRo0WR9DU\\-2BQMjrJXOGiJNcALicbYC\\-2BbEUIh7qzhyAIfynguxc5TFEzMfv6HrQxaxb29BrH5wTR8ECMA0MJwYoPEczJwME\\-2FSyhjZirnK\\-2BUY7MbueojwcCOim2bEnvDX" + }, + { + "hash": "4d2243c445f515b4fecebc56a70366d2e0aab051f17c6fb4a6ec4cea58b63bb0", + "regex": "(?i)^https?\\:\\/\\/btc1rrk\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f68a745ed39ed0a7ffd99a29902608614664727ac3de9992df0b66245df0418e", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f183bd24298b67b68454dd2922bce74aaee77b7f97c8a88ec88decaca7982957", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydv\\%24g\\%3DJswGhjsY\\%3DLbngjTsm_Ln\\%40v\\.html(?:\\?|$)" + }, + { + "hash": "e65c77eb8d357c19feeca485055fc2444042b20c91e03ae81422790445e916e5", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2b9eacaaacc5d818564f6313974a48289f88786ca86db18f780c6e4970805d13", + "regex": "(?i)^https?\\:\\/\\/btc1kka\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4cad9b4c4092dda578ec7a95ba5db1ff2f34c506ae39c335ffd5e086134aa176", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e8ce84d45de68b97dd84850888040767aa7ec463e71208e7c325a8e8c0e37239", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7c3b564590aad14c3ba721ae2dc8328303e496e05638da10618b98aceb07e812", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4b61dd8edd6d22fa2350c83737e10231bebdc6d3eec292662e775126186d0d8d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0800dd2af1ac84fcdda2963e9a5f2acd5f793794bf3376309d09a289cacdc052", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f3904b47e9bf045dcca793f11bc93f0924e4dc9fd125d55539deefd4f56ee6a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ad2d89d29adad3c2a27065b4454037a1b23a65f71bb83a8ebbfe407cd107cdbd", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ac0b232d3a04f1a152876ba632b95e3e3464094648bd7d455b76c0b75fb497b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8dc369586025e676a0a5eb0a7953c7bb61ec19896178514f3efdc8a2163a7829", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8bb9aa62c0bf9e99a7438e5124de7ee3adc25f2aa467ead2685a2734a8d26fd4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "19a379cb0c860f0206d73df49ed3557322acab9979dd0ddcc7a033d5b877c437", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "57f015eceea62416b3eab26dbcef8d6acf164d4bbf29aae102d5500f53958fa8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3b5c65773723c2d892fa76a433bc1cbb3ff71078c32e844a43d7a51c5664d3b1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "247b3f56be8f4bb34c41cb9f8ab6e3d49a8350fa6a0d6beb845c71306dae94ad", + "regex": "(?i)^https?\\:\\/\\/btc1qqn\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "aa7fdd6b3db6194d84f4af40ae0333b17bef5e3a6d08a8c93c6cfd5d38d2c47f", + "regex": "(?i)^https?\\:\\/\\/btc1hfr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8bc2d7503158d475f4f94409882cffb471392e29071c841f9771989a35f549e6", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c9c6fd91b61a532a3f90719e47346a272c0ebd4c1ddedec4c0d7dc993deeeb6b", + "regex": "(?i)^https?\\:\\/\\/btc1kku\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "18d7c70c44872559ab55c330eda69de42db084a939ca40c62b9052e460c9c680", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6aa957d99a4cd50a2800f0fcb640b7a40bcc4fa7816fb97bf6eccbbe47ac55e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0fefe7701d87cf357ee4dbd4ceac8f8ead13e72e8bd8dfc674889484529cc5ba", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e37f413743bedef5c733add6d921880c645596418c69c03464f001c9767bc773", + "regex": "(?i)^https?\\:\\/\\/btc1kuh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "445206c65f5fb647f3a1950b4f9776e237076eb92d2b88276ffc17e4d58e9b96", + "regex": "(?i)^https?\\:\\/\\/btc1wtj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "319e79dc9d2302fd2b09d65fb4012c3545fca118042bb202b3f7ef269f0c85ba", + "regex": "(?i)^https?\\:\\/\\/btc1qql\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "649fc2eb2e62eb17e0fe545eab2c50344ce4ae8d80687bd02964572c78fcd71f", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ed57440c5bee52af34b9a6790727b8ddf722bbae397e9c6cf38cfd665af55fe1", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e9b145a6b02a79afa6e01d4b0fd7dcfb1d2a452ba4fcec2b297c5be3e18edae9", + "regex": "(?i)^https?\\:\\/\\/btc1uiu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8593e957d363e1ad899d0a3a5d34d9edaf6ea090a3771f2e80146a9ea1eabbb2", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "51f6b94b3a2d40e3127407485c071bf4d6952fd53bf880189541412add690487", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqn\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d3666692e25b34e2a49c5b253b258fd7884e69fb273ba8be497db6040ad875be", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "efe68aa17fe929a0314459d1de186efbd81549b303720232be3553f00dfae6da", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "595d4756e39efd010ca8982b771fa62e43bbf339a740b016fc53e15b9d18dcfb", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0f72e3d80070a73420dc6aa75d1fbcd38ea4bf1dd736baaf20394659e606aad3", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f5eda8bdfaf618a5210c53983d6603e8cdcb5084a6e3159f8b6dd58198103af5", + "regex": "(?i)^https?\\:\\/\\/btc1wye\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "55218ad1ef8491721a5ec1708fb25e821da017a35bfb34def5a7d103817391da", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b17f0aaab2b56443a7a1b12221cfe7adfa10a60953e5147f50fe02f0f61a928b", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "967a9e2acfe48e2df322a2e01c0deaddc286b0b91e48c7e137ee9b21cb5415ca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "411cae88f6d11a307d9f5abdc2d950b5a764c276ab2dc8253457e99166b5fedd", + "regex": "(?i)^https?\\:\\/\\/btc1qqg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3f563feb3b0f382294a3331888d32eaa76f62aac25542904ed170700583e0114", + "regex": "(?i)^https?\\:\\/\\/btc1kkh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f984314bc85fc29b297bb280fc35abf3f185051d22170e1d35f6fab0667380be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "27fca22527d7dc36f66da2f32e66b92f336e2c6fe115172b0a84240d23bb0784", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ea33de5f7b90e4fcaf80b2bc0f1d0a646907171a14119802d1d5f559b8079b15", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6e788615ddcd26aec77b149da778b3474959660a50ff771c8ed7afd74abedf5f", + "regex": "(?i)^https?\\:\\/\\/btc1rrp\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "49ccafdc72393d2306cd031a144820cb8873ed2c7a08a16b790a7cc26da60df5", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f7b7ca51bd0c0ce6d41c7ad59342294ff74b5defecc1e4b5c84d84121a2ddf63", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d510142f0708ec52588c8d6bf2e29b56702226b59b07184da57f0b1b39ef0e6f", + "regex": "(?i)^https?\\:\\/\\/btc1kkw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3ac780702698b1496ff9458d5b501b31c0923d8571939456dae837f2077d7923", + "regex": "(?i)^https?\\:\\/\\/btc1aza\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a2f258ce035575f57a6685a8a596765866c7ab91f09de33399f68664eb212a1a", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "797fd83c6554c2343214f94015649bcfe4c10b445ecc1f980acd585810efab0b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "68bd2810ed4dac20e3d7022f339b0faee5c66000af0bcf7689ee3d9e5a4e5f4e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cce14f713ce5f0ef79e22e63dd3f578251a5a00d28bd56b8657e9247e194b8ef", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b199ef5f1f6c5c540eb845c26f468bd0c6b58909e9fdcae1328f5551c673b815", + "regex": "(?i)^https?\\:\\/\\/btc1ddd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a1e67c82e34e38d78fe353587f16261e0755a5bb8e0087f73828ac929be14689", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b8f27abb85659a5e4ed4f3ec6cc16fb114d8723cd86ac22e214e40e97bcac09f", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "641dcaa9399aec172f054c17d56005cdbbe5c09cc9d8acde292d2a2436c84ffe", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9183a4dcf4fc15d61c6bb84364f6ce203d9dbe5f6f6b1b70419cf12332491323", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "463b0a84b7ea7de6877bdd4a498c3dfb386c5801fa188ad9a5a65388b6b3feb0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "20a08fa5b8de4b7124c530046dfaec2d2b246688bcfd9b2350e159815b63b98a", + "regex": "(?i)^https?\\:\\/\\/btc1qqe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "63eac3f46705aed254a493008e1cc5254a4c47e88f375c727b84f0885771c029", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "825b870017812deca9a84cd7c518f1b369e8b6aab48257901f63606332aaa04b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a78c676305dc0a01507e7ef06ff437d016d1d2232dac0cb88bfe20f34b781a9e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "29390a643cb1343fba7eb9ef0ac9c072a951fad79203b44fe64ffefc417d945f", + "regex": "(?i)^https?\\:\\/\\/btc1qqw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f63308a59fbdc06c708851f82dadece256e49beba048f190ddfab938239858a0", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c6cb59640bbc3e3f17e70e39f8ab74a1db23b6072ec35867c680c29c70069f8c", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d029bc783ccea21ce6e38e20ff688fac0a2e8ac424b3b998e0dff323270ba51b", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "aaaa8044cc384293141d81cee8ea3d9708891f0da0df69b140f54a5c7b947019", + "regex": "(?i)^https?\\:\\/\\/btc1tge\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ebc54c06239856503372ad563e6f76f57e7db69446a06b92d3e449ccadcb0111", + "regex": "(?i)^https?\\:\\/\\/btc1kkd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "937690ae6e2811aa9b9f40de720eb8534b9a56c30cfc46c6a0a71c5bbc959798", + "regex": "(?i)^https?\\:\\/\\/btc1mwn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9a7be38d52271961e4dba36e68dd870f7f74287d4ecc2c44578cd2288730de30", + "regex": "(?i)^https?\\:\\/\\/btc1ggs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2117a874be95a99e7364ff4acbb25f2c5ff829b8e5f0ae9e1ceb0612e1428817", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d8b9bd41f7d1f58ff599c1118451ce57d4cf5c2bfa20108a5900843793d3f7ec", + "regex": "(?i)^https?\\:\\/\\/btc1rrw\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7b5ed2ba6c0eceec1e7772aeba96a66e3cc5d256aa8d58db5582acd3f7b31293", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b2bd21d611cb96d1e6f650b9559f33889c91a809cc3da312ba6960e46d2baa70", + "regex": "(?i)^https?\\:\\/\\/btc1qql\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "10cc0a8bc28622f6749406af693f3942656213e3313b465e33679c8ca588be6f", + "regex": "(?i)^https?\\:\\/\\/btc1aza\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "12124b68f3a3d295ead07dfb418fe2758e2c498ba429a0465fb926472af17636", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e8f11b09e9ff9add6a18da9b66de7b6be031a0e402dab39b9412deecac8f60d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9f807ae8e1241bf05bc37261acd5415122fd7b5792fab3b09f30b91892bd984e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrw\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "de797b065d0ed1d1e9f8a1552d8d428bf30a57f21f1103bd26462f611ebc18f4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "63b0f02d9305aaeb1ceae7d9d3ccbca90ac2c048f08c8427c59f01ba6f5d5887", + "regex": "(?i)^https?\\:\\/\\/btc1gge\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5eb24fa101d5cfece980c3a8176c8a879a953aba6e52a397accc703b50354320", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e0fb34265a0aba2b001793095aacdb3dddbe195bedd0b20e15713d745303c2a5", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e2fb8d23eff807faf1911fce7278c40f13c0ec09bac96b1c94cf5c55b88d8116", + "regex": "(?i)^https?\\:\\/\\/btc1ghw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "aea5ac93d19bd4dc189df09e7e48a3ac1c73359019905696f214764578500785", + "regex": "." + }, + { + "hash": "2e599aaf8e8ba39dd53088a80db30d44154b757811f57202d4de170156513e14", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f94c2ff6448a382e618d712856b50bf9f7ee48a52a48f95396af34d2abe2272a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8537113567896318258f5acc29276cbe14584774b739601b3633e06c0c7ccb42", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e8d04e877be65b1bc9947997766f3af6778df664ce969abb35c7af1a5e12cf54", + "regex": "." + }, + { + "hash": "76b6561404869bf10c3be27b9eb101366f1ef56fdacb2afaa47262c056f883f1", + "regex": "(?i)^https?\\:\\/\\/btc1ebh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9ccaffe82618a16d32072adf46efd6085331be7e43720709c0a0aecbf1b40ace", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2dab64020457fa0f21dd78004be867b4cd488ea3e6839ebf052ce41d8437f5c6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ad311a4044a76b8e09b3fef9ae76e503a8029a8f0820392392a495c494f97de3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "64b482e53389a2e8469ebfdacc5b119dd4c223b8c0f183a4231b8c6fb660129d", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7901ecfe7cb1c1709064eae88668578fa7e993295b1bdbea086fb26a29bcd257", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9db2384c70db104f7788c2cdfc86b941fd80d758f194d36567d9d885ff118e9f", + "regex": "(?i)^https?\\:\\/\\/btc1wwr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0c00239769910bab9d6655611abdd4d6cbf37685893ea07614bb85e8778e9e19", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "5fb684e1a298d6f2dccc15152aff6ddd9ba49969e4f03728bb74cc76167d42a6", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "90b5fbf2ec203f12c3fe787eb60b522a7eab1df5fc976948bbd31b7736571c2e", + "regex": "(?i)^https?\\:\\/\\/pub\\-6e8728203004457b88bbdb6a5e22a5e6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ff52d1d352b35bb187fc43c0de5c3320d1b8436804c411ffc43d125e90fb1aa6", + "regex": "(?i)^https?\\:\\/\\/btc1ewr\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "139b4b8162c83419d47ba60f418d6a7345fd248edcb0f4ba8fec59e291f257c2", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6dfd11ff74bf51354eaf0d414f092ad98f495c41bc48ac8027f6614dc426b15d", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1104134560f93f44e65902bd47beca3c3a296489d86b0a32514f3fe996f8f889", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "87e2f606d1fdffe399bfd26d883616b107e1807fbf12592b93f5102d17bf0fbc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f2d89beeb46a71851552a3a08c41f6f0f428eb2f778c3e5d1c32322a62c4709e", + "regex": "(?i)^https?\\:\\/\\/btc1qqr\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "da3a7eb7bab81a036bed35910e98d6454e22306c8777d94095d1b2e10a53c41e", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "44ed0aea73eadaba2205a9630836a01dfe7c246021e459900e90fb02a57ab281", + "regex": "(?i)^https?\\:\\/\\/btc1qqb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2b4bd160c8eeb05850a2cc9c0046c422dcbc650f193dd1e8683629282023094f", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a7156ed2eef9ffb799b05e9a0a28780c7ac786a7ea2a9f158afb0b3394ce7221", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "399462ee18dbb5e26f7fa24796a8f224b7d69bc193c585549f7e85d2b60408c8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "591d32577475fa8e4de156e067255abc0513c2e0b58d3a35262a8f79e4cbb476", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "48ed8bc078c0cde9778d567988146dee15a09a44f1d71677360db8d18715472c", + "regex": "(?i)^https?\\:\\/\\/btc1eec\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e55822a521ec98879398b0deb1e81ba535322b7cd2946b4c018aac3d03336355", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b770801c81a93de6ea8bcae91fda32933be66c6939ecbbc6721fd4028121cf8a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "28212ccf67fa1a31658d9a4a4d46cbf92b5dcffd910c22dec0112de043d268e8", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c80e09bd556dc94187f079bcb72ffbdf1a7e9106c03d61790190a1f0e0e29af3", + "regex": "(?i)^https?\\:\\/\\/btc1wtj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "75936ab8e314d1dfe2412ed52255edff46142ff26b2e27521620a099c53df100", + "regex": "(?i)^https?\\:\\/\\/btc1ebh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "58072f135a5d25df784a26f487e327a660046c72a12226955a857caeeb3ba3d4", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "45787b549f6d73011ca8d3a832181bddfa4e0ba5d18e565c7cd3fc7347cbe5fe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "10a407b5aa4897f690d70b9af3fee13667ef45ae65243d2628fe3aac76c1c89b", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "71df66323734ed777df7aa98c59a3f090796c6f2dea2931458349fe092091a23", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c5a8aeed52e90d43721803f3c69e739376e32006b0b5cd12fdf63208340c7584", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b0a32ca52917d8c63cd9523ee9423a439073a1bf98cd6f4afb4311bdc5d4e562", + "regex": "." + }, + { + "hash": "4cd34833d91d4d2eee5b25027cceb40d907d1f2832af275c59cca247bc436609", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e973e1ba89cd5967e2a9aa32089ebbc30a751f06d13d5e940dc138a5caa5936f", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "06c2b3ebdf879516485b4f50842f85a9f951ce445facdc2c27345758630516a4", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "869097efc333a0f221d9a96bf64538eba615d4ef716c7d8692f74ef653ac2529", + "regex": "(?i)^https?\\:\\/\\/btc1ccb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "dbb5e2a805c6650f7ed764714ddc717ed6ad6dc73f0fcaa71a55f1a8efc517e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqn\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f9842bf83ef1524bc01c9774c0854186888cf83183001221a0709a6f0207df19", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e391024c4629685edb4e1eba553d32e5b07615962d735e72bc585279341ecbc7", + "regex": "(?i)^https?\\:\\/\\/bafybeigfr3w4vryoiscuia2ppnwlpiokt4iuf45hwyelgji2hfjbteesw4\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "4462714851eb8c71e1abd66f00ea96835a39cbf846dc4b0afa001fb397be31d4", + "regex": "(?i)^https?\\:\\/\\/btc1kkn\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "df1ac697fa656becc26d0657b3f78854768c468949d47d208dfd97623e275760", + "regex": "." + }, + { + "hash": "a6fe8ab35210927e3a84de07ae4822248da1ed8de9c07254f9748df183a3d817", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ec18c9a819515e05ef5174aeff98435c22f52c7bab0e090b9d695e395b025cab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "64248df11c342620ecc3c91912425eef2b272b9936aac4bca12620ce95ad7338", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e187222c2d8ff321930de15e74cfb05f927a51729a523ac303221fc48883f213", + "regex": "." + }, + { + "hash": "25d62e90ddb45392122bafca7fff2fe25b7be1902a674b487e238470f2c8866f", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4c25299819cfc6e85dde45e97218c57961ba0a4ed327c8fbd135f5ee1b67aa91", + "regex": "(?i)^https?\\:\\/\\/btc1eeu\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "53b20d5084724852c150cdcd1593202295880708cfb024891860ce2e848fa689", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ffda6f6f0375e8bb685eaf064ee91efb17dfd912348d861ba923b810827a3eeb", + "regex": "(?i)^https?\\:\\/\\/k65616082\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a601ba3c2f227dddf83d02a53a7ae0106e4335a2fb01c89715e234c9fe446554", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "384b0f65ed946b8bd863ab754f493d3c63a4c4b2456ef10d57fe35be0e0c6f32", + "regex": "(?i)^https?\\:\\/\\/btc1ysm\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "dd02d62cb82e47f922a33961d366fd1a24aed30ad037f4f66fcbbb5cc3c5e1c0", + "regex": "(?i)^https?\\:\\/\\/btc1eec\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b7dfe869b0822b9e8fdedbeb45054226cc983a9ee30b4c936c0ddefae42ad7e2", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4042ba6df54c8c7eda48cc93ffc266c1f3d301d775295c875739811749cd51cc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "32db0fae151f21af7ba08921c83b5b63f152efbc584cfe4ecb944114beb05cc9", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "87f5853776ddfde1bb3143e56ee024cf993f10ae0a9bab05ac3fffaf3fbefe34", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "46aae9168626b801c327f756ec5f7a51e0ca9dbbaed693478be66d861619e3aa", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cfc56a3e5aece89d267bf825ef1f80df2a9a5d6da63550dfa369e90628b5f2cb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4301cd1f8981ece0b3bca2bf8604a9dece237ebb821a93ff86f7045323899bd3", + "regex": "(?i)^https?\\:\\/\\/btc1mwn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "75e85b184404cd6f8b0d15cfa35dc25016fad96707bd8584ae4f6f6b04f6adc1", + "regex": "(?i)^https?\\:\\/\\/haslkaanah\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c3955950f22d3c64c886b4d90a709dc11a2cc3a7d5119821aebd177ee9199245", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "702fe55a9c7bd8e0dc43417281cac7397e0b4f31f3d729704630d3a3f6ce0268", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5e0a7a2ce1f51bc2502e8ecb6d31b434605198271708878013b8031d860d22f0", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5c3104a9646f85c5f3f032beb1c89f0c586408b3a4eabe5a7f79871bb332ddd5", + "regex": "(?i)^https?\\:\\/\\/btc1mwn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e988ba0bd757ff0c4e80d92861a49f8e652e31d4da3a4d8c3e4e6313e65c95ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cc251fdf675ec603ab73d7f7e14f08745def8d46f77aa5ca99a2242b22c3ef9f", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a11ad85385a462bfc2f58be0cc69b678f7fba8e974e98942a7645a61fee72faf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f26e072c4109651f25aa71960f4f0ebb1d441c675d7116bd9b81ae4235fccf9b", + "regex": "(?i)^https?\\:\\/\\/btcqqh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5ca50d29351e29bc6c53592eeb214941b1051f1ccc342bbf80aedcec837cd75b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e66097775403eb4689cc9312e3d8d209e06315af0a4a3d83fbdaaed5ecbdac03", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "25a4f5fe3f4a35a8c0cd50d1de0e56b7a12440ecefc1e6ee336a50ef244ebde5", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "048c844da16b2f4290678f86425d283f9be342c5ebfdd0036e18e5cdf9f27373", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "da5af341652cf611edebb048513029e0430660f2f325074b510043d21af07437", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "948a14b8c1e1173bde4bbe49414c199577d616f61b25a0740a2286a5f300aebc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ef59c9878c9da0b74eae3e1de838ccb1e1d94ae531e62f7aa6a51d7c9dfe3024", + "regex": "(?i)^https?\\:\\/\\/btc1ets\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1eaa4c85ccacbb3e5f1d544724c496bcbbd7dbbcb4ea71b6cfa93e578931fe42", + "regex": "(?i)^https?\\:\\/\\/btc1urt\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ec55b68506b9d122e805a12b89e82385a3bf7f8a885dd97302dd355fbfd6f2ae", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "56bb595499af39f4f1c00fca8bfa141aa4f0966cdaa85ee16b5b6d8ccc47ad21", + "regex": "(?i)^https?\\:\\/\\/btc1wye\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "02edf80dd794be8020454c7947ee2da3ca3b5b94c2d2ba5153617373b781899b", + "regex": "." + }, + { + "hash": "2f8d0f5029529f84bfb24c44616632df3fd5e357b938350a8f78089fd3b01dd8", + "regex": "(?i)^https?\\:\\/\\/btc1qqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a2a7d46082acc25daacf12d3a8f4a2bac1bb387ba3ce72e8151ea155b667bdfc", + "regex": "(?i)^https?\\:\\/\\/haslkaanah\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fe231df906ef94960ccd51db2176b333ed2c973a66bc5e9961d9e16092fee2a2", + "regex": "(?i)^https?\\:\\/\\/btc1eeu\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ecaf33300de4fd03557eb8ade03e33e188d90903057b535ca47954263819db0a", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "67ae9e9f41feb63eb3915e00d7682cab3c57667a981217d92c94dd4d18331854", + "regex": "(?i)^https?\\:\\/\\/btc1eec\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a14452a5e6c0e17b01bc18d38eb9c2be009f982c2849867b95f4eda8eaa8bcc0", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "66c9f4de787950647e95b8e9bff75f45cc086afc1df126054fd94ee87809e3af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fa2f97197074023d43422fcc6b5f4f3d8c0dd8f7a80eae930e817f7756f3d89f", + "regex": "(?i)^https?\\:\\/\\/btc1qqr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a2d9af49a2d44950865d758abe65eee5d97b4605ab2dcbedeb0e264e9bd595a7", + "regex": "(?i)^https?\\:\\/\\/btc1rrt\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "948aacbf66076ae751de6db31522a8c898d7c4d7319f0f1df3164b0c55e72ea5", + "regex": "(?i)^https?\\:\\/\\/btc1eyp\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a9bf6fa233024f87cfedd4d84bb5dec1c66661bf256b904572eb80720dd8be44", + "regex": "(?i)^https?\\:\\/\\/btc1egk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "64a04f9a8f289afbd93d806348866cfadf4f4e6472fe41eb4357e8307e581df5", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4891953c42388f39d0068c78c5ec89b4d6eb4c27b90018b531df59043a174f31", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "08879daf2297d7b3bad7eb729d8d9a4370812b7b7e91a3d89ce429c91ef14fea", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9dcd08028f3f8f25a368abf6087cbc6aa288dd879eaa10a470127fb9ddfecf85", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "af993e3c9296eeea181db7c82a923521ce39b4ed0651a2babc2e06e38381bd9e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqi\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "869078ad5f067e3caa7fe9a27a732c7ce509a51c677fd15545c6f989ffd6dc06", + "regex": "(?i)^https?\\:\\/\\/btc1trt\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d33275136293acd8a62523f446653954fabe6174fe27941379dcec9a570b83f7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c2f97f0ca185bcfc5c482adefa923a4cd672f70a5cfb1732b923b8a2049720b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8286fb54dae223ee00d44036b736a1edf774733ad38e80a1dfd29f8d12387f14", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "665a965dc146f62e559b4474660068b9e220fa14dd680b425cb5ae70272b900b", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b00b51f199502aef73738eb78c2b0265a34e4c903fe55b665f62a2d2d62cc82c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a2b6652c7e3e8c33119b9ee834d0ffcf12273a1118b9d17c07500a48eb30a2ff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0b44e5211ac32d3845abf9b8849eab7bd1564ec72cbb58c960a0f8393f84dfda", + "regex": "(?i)^https?\\:\\/\\/btc1kkb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8feab5e191667dc34308f797aa6624488a4d3391267bf43653f4c781c0ea3d75", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a12ed3966dc4a91e2fd9d904e3c6a99f8e907094c15f8ecd1c2c9f038adb7ddc", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cf0d4fb2e0f84f37ad41705c1af61f0ddeda7411e7a2f48c548a550b04f024b8", + "regex": "(?i)^https?\\:\\/\\/btc1qql\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "18a1af5d0b640d4fbe07202b348d15291aebec6937ba26f0923a61655e2648ca", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "35f7de6a933ed56ef4f039bf17bb6f025acc6ef61d1cfbf73605c6b738b32429", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9cf8c021cb9bcd2084359946945af5fa4f336608f03870719c5e694eedf5495a", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ec8d806ae912aa6e53d8b1e368ce46097f8b977afdf9c0192d65fa79a8bce352", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5f00bc08401773c60b7c490288f0085775b277f80b525316c289d9d965b9c851", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d5bab17bf1811a305b32837607f9fe8462c6da66fbd335eb964f14255d642dbe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e935c77722af238a7454b550a15a803f2b8834af00eb7042df88df72ff93173f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "8646e12f16655fb6068a5308196aa67cb069151188d4927fdd6b454c55ca2223", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqi\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9b788c0879675eef87251234fddffe17672d5e1f8a6c1c9bff82962f558156c4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7c7f589111292ab895d002f6bf3523458df87ee9ec19815e7d227ccb2e27145c", + "regex": "(?i)^https?\\:\\/\\/btc1whq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a9bf69ccd67a3b2e77cdaa99970834f6943242fcfa25706707ea931d29bedcde", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4c03d9e08e29f455f422846d8d50e60b52ed26ecd7313f74b57302c2cd028c77", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5bd2f4053d159c5354d9f9e30356dc036833020626f222d4f3df7ba4410a36e1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqo\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "abb0a692b0259b7ce25a87212d301e7db79a2f3c66fad989716ceae697403168", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3f10bdeb6b8a47de656e3f2c88d6e6da842130c53550d8ef036c1d428481f150", + "regex": "(?i)^https?\\:\\/\\/p36555\\.com\\:8989[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "246d624e785765d28fb5dc141b2217dfac037e4f2aa4d3ed8e4d70ee700b8d6f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3ec9a8c56bec2db8ef749e6b963b6a73a36afa1b15c0ff05e9c9034326c345f2", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6156170b6dfcd6bbc46cfb01feb77caa78e2b32466778b1d6c87795627dc85fe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkl\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "842aa9023bf7554bde37f2834699520f9ecbb9043dc4367ddf084bdf84b13e2e", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fc04e49b30818c89f868dd4e1ff35785db6822652616e1a666b425628cd9a27b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f69b57fb5383c051a61175fd6f7d90100b49a752f713ae22aa16ec35121fd630", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9cf362aff8b07309d5b363104483592f5be3b0cf92f79d87a15220a60d2cf082", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "361ea14c8f7dd8d2452cbc44d7daf6874a7757cebb43f7a9bda09b4c368fb963", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ysm\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0aa9ee63192d5b76c2fa5b8da7c6e6c80875e342f7c3aa269f1f385399b5ea71", + "regex": "(?i)^https?\\:\\/\\/btc1rrw\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "926aeb93125b02eed92540c332a5a84f664ae334abd486fef82ff07fa57c241e", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "46f1547ff3f994b07ab3517266de58c8dcc95479b7aad64641af81ec8db9e077", + "regex": "." + }, + { + "hash": "af51a75742c2e1f680d18cb33aecc1db8fbe488b64d36b9e3936612ca4ff520f", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "96b62e018af81fc47814a4882d21e7ba45a44bf07dc79c49cb194fc2ec68d20d", + "regex": "(?i)^https?\\:\\/\\/btc1eye\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "260ed1c786d452e088c42e863c4bfbed304ffb19c8007bd1eef3c69af2715cb3", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "52a572f2391d003a61f9a0c9f655b7655b8a9a4eaf40e44db2bddb7f297891d1", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2b46cf47122d37098b132f9aa77c68cad9859f2b73791fc4da2590bd62da673c", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5e1b5f5b5b7db6618474075534569afd65cc69fbb5abe5ad4e8018f3133207ea", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8051e0b4506552c696d80453708e7b5f3b399c4dd78c5ccfc68e944ab0c6ff53", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "49bae6ff7b3912d4ee56399030e1f6029047727d162256445da11d9b84fdd766", + "regex": "(?i)^https?\\:\\/\\/btc1kki\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6646ba8e6a1650920367c7e9f6bbb4b6686fc30db85a66539ed080754ccd6a1c", + "regex": "(?i)^https?\\:\\/\\/btc1urt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c86cd295fcebcf62257b17d9aa97c23259df564328dd8ba2738e303ab251fb71", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8ea51952c921643986a2de35730a0ee727c29b5538176af3b89434064e108af5", + "regex": "(?i)^https?\\:\\/\\/btc1urt\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5784fc5115d80e84f3f1d4f02882cb10365361e87b1d13f9dd0cb396be73e82d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+koppelen(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ad42aa70c5ddd30dba03509af91eba10ab2f1ccd7e935252553ec85423b809ac", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ce1a065a06063b4a7ff81237fbf12cad302cd0be8ccc7f85d2e8f0d27232db43", + "regex": "(?i)^https?\\:\\/\\/btc1ets\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0ca74827816f0197cf99a2cb738b598332153a7a630b5a3eb7e5ce3deb130fbd", + "regex": "(?i)^https?\\:\\/\\/btc1ysm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ea654b961a582629924f2fcf6c27a6b4f4bebc9e2a28c393b24bb0a7b8c1a4cd", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d80a5e09e8cce0ed194c6344666eb915b954557dceae99335d6f7ce178a46518", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d4a47372059d9d375690af50f90060b77750e37d9bb40216c97d125ddfc7db89", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "35bec8472cb359fcf7bd825faa36c98d140ad74f8b3803e4e34e2f1620e42cad", + "regex": "(?i)^https?\\:\\/\\/btc1ewr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4ce7ffd83b30ac38903c2b7a5986ecb6240cea8bdd7ff28cd43f18c6142defaf", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5137c1598791795ce20359087f66c376982e6da1466fb0b8e0700a135eaf019b", + "regex": "." + }, + { + "hash": "52e11c446e45ba0ed7ad91982f78920f8c3b49810b9573a2e3b6c89015d308f5", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c9b1becaa67d318f36d67b22d3baa7fe4e3388858b143ea5cfe86298e15e686f", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f77607522eb976444c7fdfeb1152dc3d761aaa4b40798954d8a6523c58031178", + "regex": "(?i)^https?\\:\\/\\/btc1uiu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "89ca236560c6207f1200005f188042ead628e0195c5f2309fee40e1909d0b58e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "03081e6f54e66185e2dcacf5d5f18f08e39837429e8c30af519f59c8bfc12d96", + "regex": "(?i)^https?\\:\\/\\/btc1kke\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f0ad6b1120636b49cea8f906bc67971258ba346564a688a69b97dc6765c84d1b", + "regex": "(?i)^https?\\:\\/\\/btc1kkg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "85930fcbe7e3f3f21fb851097a7ef2ccbf4e806d38a4b6406112f6cfdbd058c4", + "regex": "." + }, + { + "hash": "ee1e93a82c9dbd15e7e8993f23ed50e09c8694b5bfbcba11383ae99ac4937b5a", + "regex": "(?i)^https?\\:\\/\\/btcqqh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "23605b88b6295e0694e317844fcc41634e24c727a9df02e7ea39cd442097e003", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "449c96fcbe7f4253d815f0f939268e2c2c97caa822ff60a6530c95d178cc74dc", + "regex": "(?i)^https?\\:\\/\\/btc1eec\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "82d5cbbbb1ed028ef6b643bb72318973de0ccdd6b9e5822b9f465597fa56d57e", + "regex": "(?i)^https?\\:\\/\\/btc1ggx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ac0b5fe55d2a534f7060ab70a49377bcf6a789d4363ac57de81055fc706ff540", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "45d82403fa2105af5ef05ee1497de87a42cae4b1017ab33268a1ac1fb2a44be1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5ca52f9a279c8612b4fc1ef2d6d1cf8a60af975ae65483e4446d683a0c9d879d", + "regex": "(?i)^https?\\:\\/\\/btc1kky\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "504a7a9b847ad012eef474422cdeccc8db17f7f4edadd2c19732143ddedf0da2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "482adfcd7b212d87a582fa2173eea55f23d4a55dcbaf76a911784c7daaecfd56", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qql\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4f42c75eddcefd61fee6552649774ab237e9415e25e491d6ad692f2cb1487a0d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f453c7e0767835d19e23d6aa62f06d4d5a661ab17faea399823b2d298eb18ce4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3f10bdeb6b8a47de656e3f2c88d6e6da842130c53550d8ef036c1d428481f150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "603dfc4af1e9a3d5a39e9e8ed4bb5cf0aae0204e819c9171593dd0acfede56dd", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9a63065bb18a81d004217380415be4bed7cf8e40bc960ac6919ddf621de2aee1", + "regex": "(?i)^https?\\:\\/\\/btc1rrt\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b7ff7123ebaa55c3d1424e019e0e8aa3db4d80819d84e7712ae4bf6fd5d8caf3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0fa3c7efdb648a8519414a6bb58df699502dd898d1d00e273c78c5a5ef5a0a89", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cc5af219e8e07711e01eac0cf74ebc28b6270631c2b403b0eb5caae77edf812d", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "27fc54a5c096b91c6187ec87e8df34323822ec3f1b23f13ec21dedb051379291", + "regex": "(?i)^https?\\:\\/\\/btc1wtj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a855d62ce1ce2545a55be9a6895f61c06700d3874595f2d2cd544825a803c85f", + "regex": "(?i)^https?\\:\\/\\/btc1ggx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ccd8ad306a75158784abfb256a743f2ac2160fca1799f4154adc64120c4f0de8", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4def1c2ad2cbe8db86244a0d8c92509dc5c3dca61a3c52134961e159f802e0cd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fe6b9d6ef4a512fbe7d6f3e86f297b6740745954aa4537de4d9de31fe79f1189", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "57841515f24bc14f4b00faf5bc1616886d756af769fb92ccb305f7199ec18313", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "926a6e1e24765d3dc5eaf41c66be77b7714a750d980021e70657690fce635aa4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0337878de10ecc96352e54ca8debdd8c1da29696afcbbd086bcc7c12e568aea7", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dab036e6b9c2eb02b4f497b5a58df478f3ef7ee514325762e151f2bd379853e0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d638750d05a692dab4c5e107f0961e942815ad277c284db10d05b6a578416c32", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "ec9a5175c6d0a106c4b0c30592544d4f853b073cde09c429b1b1c5505711fd8d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c829bfaa000587016b6fa7ad8a9b04415cc83a902638fbab430441d9bfd02ee9", + "regex": "." + }, + { + "hash": "8d1ac86b2b92f01adb4ad9a690fab031c492892a66c679c6e91d521808dcc35f", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a74f536174af518122e7c5722682d6b27a32c211eb36c0455ae175825906dcfe", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ea8358594283a75568cdd98a1433f2c63c618543091b49edcac49f3312b125e3", + "regex": "(?i)^https?\\:\\/\\/btc1kky\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6cbe1beea052b84bab9ed389334f31b89794360c568e90556b7412e44e94f664", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b96af4f41c8ee8f11683a4c6487ae70dac5013d1f9b7635568376b3aaafed0d3", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7b8927bcd5a9e2f80ae84c0d9bfc7598f7db3c0ce0d03d3418b4d206cf700fb9", + "regex": "(?i)^https?\\:\\/\\/btc1kku\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8d9fbb178c5007906809edde381978883fb57bffdb371f1fb7b6a9ed9135ac3c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiu\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c1e911f53c9eae90d835b2c4887ed2c512ebbcb3e47649f33345fa118c5a1e15", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "80ddf8c853e194b3f590f7cbb844a217ed42d01d0b1bb70c82fc5ad0bcaf6248", + "regex": "(?i)^https?\\:\\/\\/btc1trt\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "e8f1b1fa930a2cf23a131b0b9f2b361e32488310ec22733f2bba1f3daadf3623", + "regex": "(?i)^https?\\:\\/\\/btc1rrt\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cbafe4b867871cd63e636e4398f74601cbc1730178fa6b352fbbf0be9cd053f7", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "14ea3a993b0b79eb2466b0806132d410cbfa3701de15e569ba229e4b74b39e99", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "96878a7b2c6eb7f68ed5977da0f719649b2f2960bbaeca520bcb60270b71f9d6", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4741d21378479a642cbc144721de56bc790f6734ecf6b8957ee33570603d1c97", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f2b60c628b7cd0a2d893f5fe681794f5eaf2c5983b8dae5de5861774a4ae7303", + "regex": "(?i)^https?\\:\\/\\/btc1tge\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0b27897190d746fced548b69c69eaa9486a5e0629534c0ac14dce458d6622e25", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5e648e032ee5bd03a7d07beea3c0d086d2a8cd02925eca162765b3593f1f24b7", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c7f25f4d396cbce7479cbd776f9b1b1f2e1ae32521d5c8c977af238eca23bb97", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ysm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b5d5b45b2f4860b6fca4e63f7b22b06cf537d8e69888880ddc0d5099fba77b55", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ec8d75064c8888e3e4d0820bd6af74aff7b4791d8de990f50f02f9bf20edff11", + "regex": "(?i)^https?\\:\\/\\/btc1ypw\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8a46f709893b3465efd916b74b3f84ea8ddf63faeefd589e822eedf71710fa68", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0751f873c21a59717b2604af66a7d9ec9986c83527618df0e5e59a612d5bca1e", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f71ced62dfcccaf8ce0eeb496d741d63de8756df872f87b12de5d1ff7f9e3b2e", + "regex": "(?i)^https?\\:\\/\\/btc1kka\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6505243e23640a70e3b5c0b6d8005c1ba6ba2ce766a9711ca2343a3b9cde1851", + "regex": "(?i)^https?\\:\\/\\/b\\.qw66za\\.com\\:8989[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "026f3d10475ad990cb7f2a56e20e5186588d061185e9a60b1acf37e1f23a35bf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "77d9a7d60eb26f2ca68b06099bbb30afc9c745a9997000ac594f7c14416734e3", + "regex": "(?i)^https?\\:\\/\\/btc1ets\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a6c9b63e866353f37684fad167f904a2ba7f166c5dd51aaf9bd4b9c72dca5c53", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "88e117df645b97628996566cc9a8cbc4229f707aaf7a4aad89e5a08d721f82a4", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c8e835b9fc70bd543fe9f25ac341c322e575ce9b930c489f8f351d41b0acde72", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9b3ddbac1783c9750d1f5a2e8b2ac2047f9ae9e58d65a2c584be222c5ba411a9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wes\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "463920063772a3b46984fa64972fed7efe09af66fb873468c27136fa88be9607", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7be45c8a6d7e3f55c3de5a06d05c65156fb243121a450d13e37c419cb638f4c8", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ac839a9eb83abf206f8952521561b1b658094471b787d3db91fc1b4c782b737b", + "regex": "(?i)^https?\\:\\/\\/btc1ysm\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "77a06d16c12e84d08e6c0a5d964b6f5f519829ea9eeb2e4f0170f47788d0313e", + "regex": "." + }, + { + "hash": "0cba2e99f42d27ac63fae25d712c3bb0beb4c7b6d0438f54b9b53eb45cb68cd0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "58985b7f9b2c0b7eb4f98a7753392065b2f1d11b1e01483af786ce4cc0fb3fa0", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ff80661f88bff5eafc63cc12e310c3f18fae3961ed23706accdbac99443bb7b1", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1ccee073214ac82afb817169e32cb8bc74dd834ad953119ffdaeaa624710a3cb", + "regex": "(?i)^https?\\:\\/\\/btc1rrw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "03e3f557cffbc42daacb6a03eacd8419c33eb01e451bdeb393c8b7ba23fe32ec", + "regex": "." + }, + { + "hash": "79dbd2c3956debea61f609366cd0aa9b00d60110e7067a692f19b10844023715", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8453c8cfd3577b224cfc42f17b503d4d9b62b877e2a4192c4215fbd52fd27192", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cf89f21a66816990684ee11c769c1055a8232e5c69c5cbbc92102ab07176c421", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1fe62b1c974f698f532c2631579944303440682f106af125bd2bb4c16e7b18d1", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ebd70d8fc520803599b092dd556da334f0c4420bc74000fbc89a257e639bbdb5", + "regex": "(?i)^https?\\:\\/\\/btc1qqa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4f0d6d65287ef67c5bcde198f190c1aa7335f997697c4c3dd3467a2157d9c818", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3a4bf2d36c768b4eb308a5303eb2c0495cb088e193ddf2f9a8b00a301c24761a", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab02e6839088d8c035152bb2cc4dd4fcf54b2cb225561c33640cf2c4bc0995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.6\\-2BK7HFyZ8c7pI\\-2FApisaYc79ykGMZWggjinRaggUhBDK9zKkmRBX8ubGlOktWjwS41YVebcTLKQeI5qZwzBScX07nR6LEi5nbIQRpQZu9vu9grx4yqcyHQPNCnzyRdD5IDzSNQIihCJeSdjtvGh59\\-2BmcfoZYry9Sn8VZlazbL3KW6\\-2B8kunTbZl09QsihNRmTZ9O4Uqa9eVtvssl8MeS8XQ9UpeeTuXFfvtf2FA9QEiMQ\\-3Da8NL_2l9kp1JPFS6aTVisT8GHpy8PpZkh9c\\-2FoHYFQql9r4dN78hg8MLkOP0x6q75yxvKVWBclw4X1aCBYHSqe5KKMrSSaK1D0LtpKtd7LrHWGfgzxJqQ4Hc0ct0IYqku0mwqxIXt8Uzh8OxH8yxDZFA4bGaf5kNglX\\-2FeGlF4bi0JZj23O73SeWPf9lADaJcw38o5IjLrT1qaoNLyYfRe5xxSa\\-2BBRnbaIlX3hJcMJxDbAL2j2JpQBqLG3IUHQfz4Ga8JdVt4wcEx4aVGcQBcS2nDonFtu4Q9JllY0y1V0A\\-2BS2Lg4MwksD5FI0U51kNZ9Hd5poXTP9VVaWoKQsuTXLrtl2\\-2FvZKO077Ggl3ycCehk56WwTdnQNGeJOuiAdeaS2Pu\\-2F03gdwDFB91v1SCTPOjXLIUSTJq\\-2FA1dK7NPm3olfFpQW9A0UoeClZDaruibs0fpZ3Npbt6aNFwaGayniUnfvuCOfOGhdgv8iN8ztbHfHfd2R7cabuG\\-2Fx8PcwPLrS8XU1PF22" + }, + { + "hash": "ec1fd837ba2f45cdef13d6d43aef373f61126d8f1472d9cb532937816e2f9f97", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3d11703cc30751a18804d2d1478840fa7552cc13dd6a5f436965324871484d0a", + "regex": "(?i)^https?\\:\\/\\/btc1kuh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cb3f767d86beaf812613df0eeb27b64d733c1542ee5e73db52ca7dcca46acebe", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6cbedb0b8017aab7bf37c23f59c0ae4ee2b1b360fce9b387059c95f383aa18cd", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "48ed14cd8aa4131baad10eda14832aa53185e2b1b527ae07dd038dcab8806fd7", + "regex": "(?i)^https?\\:\\/\\/btcqqh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ae9975279b79d0494321f6da8008e5a7e3325c08169653bc44db0bb16662956a", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "49f6c71b6316eebd061bdccd6374b71f3a46c139e3537d530f258ab2a5e84055", + "regex": "." + }, + { + "hash": "afb6d6aa81f354d3f6712d1622c20cc98c187aac6ebedf5da357591f8a92fe87", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8a7a7aa1ec120d3bb47376e70c87454b22dda427cbeb7cac59a61537f05fd4c2", + "regex": "(?i)^https?\\:\\/\\/btc1kks\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9490d08b214d75fe3cbe03f94890ed36a5eaad6f295502b58d15be81588f11b3", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "36e45e0276df91811cdf75cbbf59289d333a795debfc39da5cab29cb1a9781f8", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "71128ce10dcd27422ab8f46ab559378b55bc513278411f6400cb6561e910633c", + "regex": "(?i)^https?\\:\\/\\/btc1gge\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "728daf2fd0eb77a46b892cbad93a662748df2af85ddf74e61427c6db0c7fad34", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9a7b9f8fd63f12dd8092a9bd601b7470cdfff66808b592f98ef4251ec468cdf1", + "regex": "." + }, + { + "hash": "bfdff940064b5d285624b5e56a8ff0568438aac7e4cc983b9e4dbb43cfec53db", + "regex": "." + }, + { + "hash": "da221f9043d46f4514f55fc33b2589bdb811e54c031767ec0f316595b4727701", + "regex": "(?i)^https?\\:\\/\\/pub\\-1a827efd464f4c1db12dbbf540a2ca4c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "12d64c4cfde565e0c074a649b971359c9c9cb359dbe2ac2e326fb3b7ec6211c3", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a2006c0b716f593bb5a1454a4ec455f0c08daa6bf70c2386681ee0824de3428f", + "regex": "(?i)^https?\\:\\/\\/btc1mwn\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4b39a74db78b192d8ff01fecbe15a8fbaf35a33141f4e9134d2ddf516edc94df", + "regex": "(?i)^https?\\:\\/\\/btc1eec\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8fd3774f55b860653d2b8f91e696bbd56f533b85ada416750fda34dbc04a89a1", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fe9456d78132638608828a0cb5ca36df67434bc3a963679425ab267d9ffb9f55", + "regex": "." + }, + { + "hash": "66b0afa5282f5b77f4922e60e9342f85e16786cf4528d31753c0d5f9ad55c8a7", + "regex": "(?i)^https?\\:\\/\\/pinbo30\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6e253be0cb354a3bd14da236a2ae309c66caa4700c5f2244a4053f49785ce0da", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9a2f60fe2742c3c5e45e2186878286dbb3de97c3c3ca6eb0b3b1a4665449a0cd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7c405d5b7ebeec9267724ab62fb1b19ee410acb8191e664d63aeb21710cf8f4c", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "09164ced9f53f69c07c1ca5a7951406e572069c273be54147719a03978a6ccb9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "81f2a51183a1e606fcf6a08bedd0c793d99db4b5f62139eb51f59389dda8ac38", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6e548141a5f2c012f6c8ef7e5f643ef8edad4beac0eaa52f3e0a146c32c956f2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eaafc3e6efb0029748a0594d981654e8e55bb535701f84e0758f38e9840bd648", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "00ae50ef7f588fbe863c9ade7d8d589f955e8dc936bab1641aa6787730fb4f15", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiu\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a55ca40ea9c851cbbe3e4dfa972d0c3ee4e4eb07623bb9e3b36e5ded4ea82607", + "regex": "(?i)^https?\\:\\/\\/btc1qqc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0c9cda7e3aea4c9d5f0f9e2e660fb3b87d647b49a2f86b20070aa03e6cf1db64", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a1766a0e6c567e15653da746515cb0b08dac83240b9304915960e8805b8e51af", + "regex": "(?i)^https?\\:\\/\\/btc1kok\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "68166d6341e25f8a774880e95687535950a5a8720d8cc1d97a40bcfb71362aeb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5787ac25b736d8f01b1685c2966bfce95546fbf2ca41f9032b25a5cd7eea79e0", + "regex": "(?i)^https?\\:\\/\\/btc1ggx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ac0b9e08a5b0eeacee4da86562fde1280e8324f4954e0551ade12c3becdc21b2", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "14fbc353b1360b2fd986191e075760978074d56fa44e97e015097339bbb32dad", + "regex": "(?i)^https?\\:\\/\\/btc1qqg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "01b939d55a7e44334426e4d50a1e8e7ae8abd8b66406742149020e252c861a38", + "regex": "(?i)^https?\\:\\/\\/btc1qqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3f9058f6b8bcee852e03b02bc7e648b438c8022cb6cb61e5a6d34b61b3f8f44b", + "regex": "(?i)^https?\\:\\/\\/btc1qqc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "687d62ca5ca29a45e941124e7470ce1c85a8ea0f55c04e62befbc0630a8b3146", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "aab3458a1d597565cd835062c9825cd00c7da8a3142a270b6cf4891830d809ca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b6daa742a250ee70ad3dc71333966d73de59d5dec880a12335b3bd826778ce7f", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0dd0fed7d5483a219c972224f5703e9413f6d6f5eb8b5a13a535c068cbb09c1d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e000d189a784ae6324e830f03f063bd441095646eeb55c15cba9a2e2dc2118b8", + "regex": "(?i)^https?\\:\\/\\/btc1rrk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0da77dcdfb0f40fd93b4792c7e3b3d16bf4d5b40e08c1fc960e6e33fb7f446eb", + "regex": "(?i)^https?\\:\\/\\/btc1kkb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "158724a035606d406defd0022834c5cacb16193a503415b4f2d9768ed24a8a4c", + "regex": "(?i)^https?\\:\\/\\/btc1wwr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a12e0dc47b9dc94b6fc6e1d9053b963108f4705b8bc09322135e39cf72eb2de7", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6fca802d003df048501f504f4130771e184a75fa1af878e4a7b25bb8de7fb6c9", + "regex": "(?i)^https?\\:\\/\\/btc1kok\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d8258632ccfe6dad807013db072ce35d2266ebe801462859ad2bdaf1ab563113", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9363c40a84ac17dc52a53741a3d8838fcf6266610233aead8b3b54c58e887ea4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qql\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e329822d70613dc3f624845f9a95f26ff897fc5854ce78e738573d475ec4f23e", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6169c8afa5c422824760ad1266b9b4a8e419523bd584b968b6c4729817bf6ff4", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a5409d9cc30933c222ba28814ac7996b1fac4e8244dcbddddd2e2d614fa0f71e", + "regex": "(?i)^https?\\:\\/\\/btc1wii\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "df62403410a4b89922b015694aa7fa096911d8e053f4aaef9370bd9e105d9ba6", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e9afe6450f353606401818f7eeb4d8c080864714f4c814587cfd5de8e30d590e", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f2d8a56acee2bf01862af949a748436eba5cc87e603e3756dd93e4a80abda158", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rro\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "11449e68bbca133dca83265b7bac98a3f36e0e34c52e94161a8a6b9e77ffb166", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "411dc241213ce2eec9fef8d50fc388218385644e48284e175b49d86afabc1382", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1urt\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d1be61357ef30a6707afbc770333e1b17f264166bc4c44cbfc89f384fdffd385", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "349abd9609f5dfaf581b816182416f608f9bf9ad78c26b102ee1d0bd1a49bb05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?find\\=d8da8$" + }, + { + "hash": "419a9630c005dacca2cf55756fc103051e5a43c54689c2daec853eed434187ef", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rro\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a843f74ca01039d163c40e5eb1246e6a0daa6f234df3701c8e07eb4275860336", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d43b96d983e08030dcf6011131bf1f28b28c11c996b7be5bb862714f6ff91bea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b4c2dd5c3de52b181b3712fe334ead716b38b5e1dd7de8f2aa043ccf19d0df72", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2bfc4093e936b2dd0ceb40095d548c1593d7913cf28781a916d0ea97703bea8d", + "regex": "(?i)^https?\\:\\/\\/btc1rrw\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7194a03ee09ec519d40235a46f4be0065e4a5331c4316f48557da3ae4823f645", + "regex": "(?i)^https?\\:\\/\\/btc1rrw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cbaf53037e97cb671202bfdfdf0ff95d1840bfbfc3ca67774e50e020a2426371", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bc95ac7a07ae58d18b4c01d34ae3b740bd1156a0a23358f1532640f9fdccbee6", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a3e3996acb9a0e301c4b10b64837c88229a59b9632e563f2212fafc95527c75a", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "365c9e3992537446f13f6217e8706221eee36bc997a1ed8c6d9229082a854b61", + "regex": "." + }, + { + "hash": "b46aad52ff718bb8284230140b4af090739a0754c3c34025f124dc0ac58c0111", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f776a0fa8f7bc6b805dac5272ada2dd02bd7b31a06d1530d2845017f5d764d24", + "regex": "(?i)^https?\\:\\/\\/btc1trt\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a61f56c6fa839110140f6bb5431553d5a82a8bfbad896430c056eb9a239d3781", + "regex": "(?i)^https?\\:\\/\\/btc1urt\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a33b3eae59a312cdc00175144c57141ed9a798fa4a7ce158a3da139986ee4e10", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "51ca93bdcca7d0ad25b536a8f36b6838b1c580a62397f381e4685532ba3861e6", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "35b6af0d47876c96e389199c60d11aea2bae21b33e0abf540a5eeb387ecaca56", + "regex": "(?i)^https?\\:\\/\\/btc1ccb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2330852e911f79f53009bfa4a038db404e456021de6639f4a4d61e75f7ce9474", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "38fab0f66b93ff59810a3566f8c04c0617b0a87c33d79824f2c6dd1aaae4fa62", + "regex": "(?i)^https?\\:\\/\\/btc1kkw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8344891bbbf6fc53244d6b3e55e2bd2a410492716c373fee428d9a0f5f5ac964", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "77a0d7297eea81a79201315908a52e5e973fa9f7d9715b0d23330d18801a4207", + "regex": "." + }, + { + "hash": "cae5edc5d024e100ea8aac3c20f17fa8517019b414b42ace7946c0d62edc3138", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "96f7749b9b7dbdbefed9261fe2be9cf06ca086df50f598e84dda6307b59e3496", + "regex": "(?i)^https?\\:\\/\\/btc1ets\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d15dc2b7bdf25fbbe49a940811977ee628d5cd6accbcdead233fe4ff8c76bb7d", + "regex": "." + }, + { + "hash": "3e457af4274b4d2116d01ccf7b73ff10b000d297131a2f20a92f3faed9f766d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "06923132b4524804382da86a7b4dd91179708da6136532305f9db9772b4a3589", + "regex": "(?i)^https?\\:\\/\\/btc1hzx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3cec0a0b39402a331435c7c9a771ca0215765062a78077f7276ac7c51c2e3b34", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cd22735d4a456c9dd75eddfa99d99575b8a6c1ffd5356f1129ed21858a57ab13", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0828c03c41c1d8baae855c8c4a9998c63e35f55a775ee753f08c00c22456ee3a", + "regex": "(?i)^https?\\:\\/\\/btc1kkv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "509aef669c1ae2f0695a9c04c1b8a6f78391f12101ed6de7d7a6ce1bfdba80ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "37bef123ee88641788ae501be11dfbf25599b0675aa83ec4bc8ac3fd05529c09", + "regex": "(?i)^https?\\:\\/\\/btc1wee\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a1ea99913634ca763adc5408aee757915d18e1bb35913dd39e6a623aaee0b37d", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "635bad24ea0fbf3dbf60c97b35a31aebbcc35963689897c731403d2a8d866f4c", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9ee9eaa6d3cfbc4f0a357b24f7a583a8f4064024ad960bca80e0b83fb5fbe19d", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b5c80159f41451d61fd67b41b17d3ffdba63ab717c81e8ee3be6061d8cb011a2", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "88ba8038073ea255c6bbc7b1476bc42dd0b7745e80410138e3855b56f5d397f7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0cc17e6ee660e670b9745a8a070efaee7cb086cb72b087bbe828c36dc3052bfa", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a5fdc61012f278690b5efa714f97332f4f751d82684e7d4049ca6a0da05c4b3b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "67b9557e10adb86f9413d621d2f72c5c8a252e650b5be87bfc56e81446f8ade6", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7f6c4fc5ca05b0f68dd8d3ceff416b8f41e0dff0ce6fbda7786d0e42d1d808c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "127602de529790c4efd4bb8f062341edc4d0c060c240840d443bdb9929526ba9", + "regex": "(?i)^https?\\:\\/\\/btc1awq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "10b425ea15e66e88e5a1331a1d108041490ea670188f4e92280caf0500b36e1f", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f94c188cbc9786dad8a9a536b43ac341d5893bd108efe47eb228aa7d96c6728d", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "89e78adef04e66fa018c99ab37ba041f55947fd6642a4117fd642b27662a6dea", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b0a5354f2bedcec316cf4859c7b289caf4b6e13437f1ed9f9311382ee94d97d1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a15398cc589414bc0f243e6ba46f5d1e68e401968f5b7a7b77fe99b122d24583", + "regex": "." + }, + { + "hash": "f006637b9904f00c748ea742e66f41e4c3cdbbb86fb77f2f4f77586d2a721352", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6c23b3b6f827aab88c2fff5560c7bd1b810d0254a04c49d3713804661232be1d", + "regex": "(?i)^https?\\:\\/\\/pinbo36\\.com\\:8989[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "cc787c3977346fd0fe2dfb1b8e531129209a1f89c894c9d971c60b4f1d8717e4", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2a128cc5a07ec5c63282d2e436d52dcaaa556dc178a5e6af28b9fd814563ce27", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6ab31480d9cf1cf9e5e159c738cb33843d3f8120229a101b2addede5053d083f", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ee0416d4809a43ae908c2ec48bd591a711bc749d64cf5f41979c00683c6e2929", + "regex": "(?i)^https?\\:\\/\\/btc1kuh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f5179150240e80bd59ba97af173d266cc92eeb835937e8eb447d53294ed1329f", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c29fa6e980c27a39063b3a8bb587949519544af05324a6a52d57fbe7ed7cc682", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1urt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "601e20a53f9b15b761daa199e53b7ed26c5b54efa70213321ca34a9212589013", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e1eff105221e4d4dd88295b43bb40bac02ef6b4d14c1eaae590de20387ff8ec0", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a8cfc2770dd233a06263bf400a3ea671b980e79a5fb263e1dc3d7667ef68e40e", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e5c2be4f7d0c0d791ec532afbe1465c68a9934a46cf75e8104fea7f0e541fd3e", + "regex": "(?i)^https?\\:\\/\\/btc1qqx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c44d73980f0d4c85f3805028ec82f57c4093994b7615b41ade59e08e1e95e9f0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "25619261d4cba0dedf08f8ea517b5f5e752a2fb9e2c1936ecc59681d0948b0fb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c23c9113638cbd7e08200b64872ce681f05c15124b2a3676a67ab4c76424e4f7", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7483b5b51c10347f4309c57fa544825c25fb53aeb90034e25fe6715e2987c7ec", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "be7758895b6989f1c2694562055eb134f76375ef283028f3f22872028ce1a0de", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7d225ce3e5a5f2bb4728e48b13fe06247191a939e5a074058f63e4b8a98cf230", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5a8ed58f38a13cc2765441aeb074073e5d3ce8599be3988b7f247598258d8aea", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f87d581bfa1cde88525f75e89c8b0d7a012a9d288247e3b2b4eac00f5c849d0d", + "regex": "(?i)^https?\\:\\/\\/btc1wtj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "206cce309c5541113f8ec254b819dc17eaaa2b3603409c131ea9f5750addfaff", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2ac2f1ec9d3725771d8014b33711c12e83fcd21365cad6d721abf7c504abe0f4", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a768d9520e79a20b1f3d134e8ce6edffcf7a522e86c2d695626118b67916deaf", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "43ee1982048a6a2d4eb643333d64cfff69351fb073e51560c98345d86874cccd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqn\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e02263b4e6d6d789070bc1023b58798e64e555663cd2f4f739c4702df4f7fb31", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4e296bb42ddf0a72dcfd730c17ae00a18708b079bf2657fafdb71068e742909f", + "regex": "(?i)^https?\\:\\/\\/btc1rrt\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "df826c217ff702ba7ecb6ceacdfba06d84342a6442eccb7f404faccc085388f7", + "regex": "(?i)^https?\\:\\/\\/btc1wii\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6e7874c862d5fb10ce3e506940ab648f02f22267c9135542c3f7e4489c703ddd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "adc4eb84c2bf2bbcbc081e54ff060e6661103961addeaadc61011e53718992c2", + "regex": "(?i)^https?\\:\\/\\/haslkaanah\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a094daa7c432487c99e0c612fedfe946f3a922c50210d5f3eeae99b167a96092", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "35c2aeb8ef4c664f5e8797edce89d688f1d13b5264eaf517ff618a4a276bf56a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qql\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "258ee779ff71abf6cf45bc8fa9dd227b6efe612d570d532c0bbb94828af315e2", + "regex": "(?i)^https?\\:\\/\\/btc1qql\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "593baf24eaf6cc77ca49986b95582fd687f2ae9eec710e9c66f9ff2d8da317ab", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7aafe9d9bf474d855dbcdf86337fdd1f692845e30e4abfb1fd9c9fc2bc3d7273", + "regex": "(?i)^https?\\:\\/\\/btc1wii\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "548fe253b2780128ced80431639a179eb4c84f44d7558cc2d4156064d90da56a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5b391740095bc96cc8450ad09328e1651a4522ffb796edc55ac1927654fe1714", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5f6820a34328b51b89b3347a9c45ba2f87a798093a2e6dd9e328708499abc185", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ca8ecec218fdb07f9b483885cd02a92665fbb63a91973f775a11cfaaca5bb651", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fb0357af729d4a4c9f5cd5b06e929f556c1cbd8a05a420b3d6dbf07fca6e655e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1738ff15aef7405aabf9151a597abfe6a0195bbe25b8fef13b8e17ba62ef513a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aza\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6c553e5c28e4fb39cf9bdf0b5975b5b8f5ddcf6d9307215d3ec1cab86b16c4b5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ae01ed21f8877011547afd2d618ed31fd4beadd5c1d58d1048751f8a605920d8", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab02e6839088d8c035152bb2cc4dd4fcf54b2cb225561c33640cf2c4bc0995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.6\\-2BK7HFyZ8c7pI\\-2FApisaYc79ykGMZWggjinRaggUhBDK9zKkmRBX8ubGlOktWjwS41YVebcTLKQeI5qZwzBScX07nR6LEi5nbIQRpQZu9vu9grx4yqcyHQPNCnzyRdD5IDzSNQIihCJeSdjtvGh59\\-2BmcfoZYry9Sn8VZlazbL3KW6\\-2B8kunTbZl09QsihNRmTZ9O4Uqa9eVtvssl8MeS8XQ9UpeeTuXFfvtf2FA9QEiMQ\\-3Dm1Ol_MoIBky67\\-2BEecRg1zh7obqmtgU2VLfPLWoqJ5N0FI6XstqDHrtszISdmgcGpvwAiyageTH790qjs9Uh2yd\\-2BFVHTHlXcVhK2265DJ\\-2FQDhizbH\\-2Fe4fMSb8DfSRchCKQ1oy\\-2BZ6dKcOPhMxb3m0cHH9gjmIUREi9gC99qLdpAqHHxosYINjE6Z8Dta3ZsMrA1n\\-2BKbFV\\-2F7cB3gC5fzKjHTwMtAHrUbAmw\\-2BL4Fu8KQOr3k9dV6qxweII5OOGLHFFGvrNJd6A0W\\-2FM7wleHxMlZwrMtmz\\-2Fsa16Px\\-2BVHVdHDE670HuKP1RBPZOmMyx4Pz\\-2B0cQ3FiN4orlxG58XLvNnUBeYCz6n1orflUlleq24nsjMoSQ0qg4jg8wgsOIqnW0MdfSh5JKu3SX\\-2BMdclC0hRBgCik3jCmD1eUM9CONpagT9RqIpxsUNrsn\\-2F3HbCpsM3bWo\\-2BuAud5VEyUuNhZTx1m\\-2BJZH\\-2FrnCOX\\-2F4q5cHNTyclXALFN7jp3pIE3yodyuU3rho7ZrQSuIP" + }, + { + "hash": "9fe1bb42c640fd69df804a84bb9ea9304a292a1c6e80e76ba9afb556fc7c6514", + "regex": "(?i)^https?\\:\\/\\/btc1trt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9a2f68c0710858cccdb20a1ffd1815a5217eefbe78b2189219fa98a1a6d2be8a", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c7d1d369ae265eb557ba7cd5dcccc7b9b8d46c5d012b232b9c1a714ef714c10a", + "regex": "(?i)^https?\\:\\/\\/btc1kks\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2035960546a3d3f066eff1f8e91f02a70d1611a2418796b6782525d4b72ac267", + "regex": "(?i)^https?\\:\\/\\/btc1kky\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d87a421744739b50410271738b6619de3ad3e385a061bc521da8275b6a7dbeff", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "758f55024856f4c47f781b2dd610b830be053393191cd5d2f87170eeb2cfd8c0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "53636f7fc940de490f79ff635e9eed441e1d5bb941fca60877d7dae99119580b", + "regex": "(?i)^https?\\:\\/\\/btc1kky\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "03ea216811ce9b93a8c709089e4a46eb6041c0c2223fc488e307ea979ba1dc37", + "regex": "." + }, + { + "hash": "a6413c541c53280112e63d96ae93f2ed1e3fd53bd583e4c58c6e9d54d45d6526", + "regex": "(?i)^https?\\:\\/\\/btc1kkn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "18be1a874d062266a5e6da650b04e37c5159bc15acb8533f0fc5baac270f8c84", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4c8a5c40d9154321df35c6fe2516c6fb319c51950e713b38c82b6c6e84948b39", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0d2adca3f62ca4904ca50e1a0805d69070ae9a783d0dcee9dfc2a5aa39b7ccb5", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6f2434543a51a7d90e39ae9d6690934bd48b741d8cc3436fa0397fb63437973c", + "regex": "(?i)^https?\\:\\/\\/btc1wee\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "98e3dca77fb1271cacc4e9ff6f1872a9a1e2df779ffed55216af4a76d1ee149c", + "regex": "(?i)^https?\\:\\/\\/btc1hfr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c3cdf844ff18681722f08690878a4f42986b505eedcfda282f8c6909f16f1807", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e46d2866648fd628db934c342f6270cc6441fb958773ca232cae2c789f865bb0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e855ae3e0c1d2815820c8e633d3168137eef188a75c97ee37d4285636247dc81", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ab9a01a4d145af3f6afe322225e2cd736f7c297c49ef9f95fc66366f730f1e22", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e1ab0b7b0b51f6aaa53afd15d750ff871b5976610f3b043529a13bd91997551f", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c2ad5b81d0fd53ce3f42ea4ffcbb1a71cd80542957ed7b136d1715585359dce8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f768b0ad2af0d440fb80b2c033cfc3c807faf7c26f12d24230aa2878f3d4165a", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "df68727df6ed2fce68d5ee8502878db06e4c8339b008aaf7c3f187f5bbcd406c", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "05d59d0548d459c5286d283452f1c5ff3ac344161e054fceed483b52a9a51d21", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4423548ceecd5ee7ab5aa114709040b4ec512a6031a96d6dfb79e94e06333e6a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "29b1359b7ea2f789c8ce50e70a9f0bf0ada47d3e9b49da14148facba1891a3e9", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f2b91fa051993f36c07b78ee0274374e858e1f37a57b028ef4266fe69643d36f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egk\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ed2001c1014ec8044be13fc723d8dd4e9c93aa1dd27c19e361c10c6e2f0eb6a9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4412451616337209d2a65477eecada8d9196ece6cef8367a96dd227e6611029a", + "regex": "(?i)^https?\\:\\/\\/btc1wra\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "61564f47fcad0d281a896ef29c6e4f0c5e83fece884ad50c5f0aaccf24349cd4", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "19ab232ec6e91b47cf1cfe054ec4b800b722e92b2e8dabcc1d4103177789886c", + "regex": "(?i)^https?\\:\\/\\/btc1qqa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bd292f3491522b9e88e220b857f88f8b60e2cd2eec9eb4a1e9a6dc45cbedf8e6", + "regex": "(?i)^https?\\:\\/\\/btc1rrw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a3fc6180385273317422ba11d742663ed6e62acb9eaebe5c356599019beee691", + "regex": "." + }, + { + "hash": "a8fa737b32c1b06fabf79385dab0bd236596132db8aeece55b937bc590ce23dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8ff8b64f5486e95157ac235984d2032c0a1e78e6bb3b6fe95ea4423333868f21", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a6eb9b671b2e9aef153cdfb4814c6c7fbce4b31c2d8f5d83292a3a67e75d0026", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d0a284fb95628fd5c4b21e67e3ab0c38532ed4043d4a5d9a34153e837c232e5f", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ddf21ddefcfe087ec1d957b3a7388e3be2732367becc1ea50f48f656c7c8b235", + "regex": "(?i)^https?\\:\\/\\/btc1ddd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ea8fdab15e63b2820195d0ed249b8fe17b133b38a09a751bac7f5a7f08d7ae8b", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d3b29ad57f7afd8583d3bc37b89fe09aa863b92222be980ce77a56cb78599737", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "626d95e0bc8dc93e1e1fe3e90ebd93efc96802e9bb3d673da06431b5281f7a24", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1urt\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cedb42ce86dac7d6965b200f4869c1b66209a6ecae22cc7258d4cf24af8b565e", + "regex": "(?i)^https?\\:\\/\\/btc1eeu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6a1fc55e4f80fee0f5b84a8cecac2f6d3ba7933fc0e25844f6313eac5f54d8b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "210a7fe941277a6bd556a2f772ecdff2e15ac70774318f7bff9139c0ebb277a7", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4eb067ad0d6510e007ac58aaa41f30c41ce740d5d853dd70586572c4725733d3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "07c4bc670898e650b80aecc453aab5831ff11ed3db0611b56f60d8b4734955f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5cd30df68bd0891b7aa43af96ac605f882543c7258fc2ff404ae121b06755cdc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "87bb927b7ec7e4a4db1b2b06c345800ef26980e115ab3adb7463da4ec84ee1f3", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "39f61943c022655b06e7f14bd6205cfb2a6e7cf9dd5328dc50326fb934bfc2eb", + "regex": "(?i)^https?\\:\\/\\/btc1uug\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "baec47be725c2e8e9ec5aa14a85915984c25ee273ad0be7c2c8a5aed847a55c9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7af6c97be2cfe5fc16b86fc44fb748b833de61f1c78b9687414db7a5d44166a2", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d810481320bcafee4d2a0a89b87937de6e0c3aeea8bcb16f6d9ea3dbd30c7a80", + "regex": "(?i)^https?\\:\\/\\/btc1eem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "44df36da7c3642af19f3db09b09e2e1e611ba4933f6da896b53a763ab1964abd", + "regex": "(?i)^https?\\:\\/\\/btc1wii\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a2a4c16e8f09cbc97255a34df1934f3f721e6967506d25b472cfd842ffdf782b", + "regex": "(?i)^https?\\:\\/\\/btc1eyp\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f1e37c856df48dc8b14b414f5a0f1aaeabba262f9e895ba34fab3a8baedf685d", + "regex": "(?i)^https?\\:\\/\\/btc1wye\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8da878672996be420e2e627deabf0538ddf5a2a12f148cd09914baf360717e7e", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f25467662fc31b59e3d9ce316ad2f6ebfa0f722b245ed4e9d8fc3a2b921f50bb", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "49808bf854cb44096a4a7cfad9b7b6525664c98d13380ec67cddf637892dd113", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "84848205dd2cb35e45810d78329bbdf90a2f3954818ac062219b783cd4d3b785", + "regex": "(?i)^https?\\:\\/\\/btc1uiu\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "961dc62cd424fb6f033f3239e290d40fd777e9e7011d7a81c1c7fc3ea224ddb5", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f560d5f8d4348b60b028e94af3f30ce5690032c1eb4c6d557d12267225c09f48", + "regex": "(?i)^https?\\:\\/\\/btc1qqn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "da72918fb56afa926f84f180aa52d456ce8524cdcfe138484417cd7374236182", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1urt\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "76d7b93f7630ae01b7404efea6be04e6164ba021e8a8e30b6a37c22fb00fe8fd", + "regex": "(?i)^https?\\:\\/\\/btc1aza\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4d12165c7be615755539dfdc9d38a64f692ce2f1efac5922e949aacdbb029fe5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ab9e654da8387758d4014e0a3630c1bfe66ac93ddd07c12c9a42087003ffab81", + "regex": "(?i)^https?\\:\\/\\/btc1eye\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9ed08bc66489a36703dbab5c43f5514b4756b4a4837e400fca111c3b0a3824e2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3c521794235550d4c76ad8aa1411ae95cceb2373d74da99f7e8838f940a27f55", + "regex": "(?i)^https?\\:\\/\\/btc1rrp\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9f052b286b885185bb4af427f90526ed2337c7f5587d6d45a15f42598b7e991d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fba80d170fa2b0b92b52d0b1bd65faa65704e5c59373158cefb114d274fef208", + "regex": "(?i)^https?\\:\\/\\/btc1qqe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a2257f804a364ed3c691c44c2e4e6ea30ec6a5d5e32b06d6ddb4723e8555afa1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ffbd7b7e863a5b05fb50058d9dcf7f9a2f448d88faebec04d413616dd4406a29", + "regex": "(?i)^https?\\:\\/\\/btc1awq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "77217844afe4b66293a90f154fb6e62e58d1ec9e9758b87212fa099470b3aaf6", + "regex": "(?i)^https?\\:\\/\\/btc1qqx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a7d0852fd1409ffbeb92821af8a172b47b920207c06882e91919de71f410f4b8", + "regex": "(?i)^https?\\:\\/\\/btc1kkw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "96582842a744357474ee6f3c4129eff600f1c4e25859b6abfa3a3a8c9121f24e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7a850f45346373e34c21dcd25c28875f02cc1d6867c54e76241cb3ef7eace98d", + "regex": "(?i)^https?\\:\\/\\/btc1kok\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "db665847127a64895de2f3ee6369281b61fdf18023590ea4d0a456ef80fd1f47", + "regex": "(?i)^https?\\:\\/\\/btc1egk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2dfbf4ee945d9e3784a2d370538553cb9ba1a21328491b8ba3bee70c6658245a", + "regex": "(?i)^https?\\:\\/\\/btc1whq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "451a4c35f1b24015543674059c60ab89b1f79694b172aa8bc1e5600fb20b1e17", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2a19a5a696143dd81e0471c043e12e430621bbbf85e0eb9ffac102bc9cbb09ef", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2be8029918277c42e97581bca60e5c921bde154f62d74f28513084cb35decb9e", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "623913e74fbf0a6349ded648ca22199db492afdc61e33c2c25febf62cdff549c", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a89a4642a88d123d5795e6f8958420597d2719e732d2eb4e753fbf780fc23a60", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "01afe0420de9a86b0cc58bebdd9ddf84c42996ffda04b8b76c20257406844add", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ce310c95fbad5e3ed850337e86b41b426034c1da8293787947d1419fc4fcd34a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8a7d9875e3de4b5e43b12c246d9f85929f8d66c89ea5a39128a6d5e869d46961", + "regex": "(?i)^https?\\:\\/\\/btc1kkg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "25aa7e4784cbfd28225534196e997aaf36b44a3d3d1f47bace4f3989401a1100", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d4e4109afd34494a2333f5835e6373b8a2c383682e2d4960cd081980ff6156ba", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "785f2fe4d9af5726dd2f622e7ba3b81a50f8274f344a23b6d291c6ae42390ea4", + "regex": "(?i)^https?\\:\\/\\/btc1ddd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b380da6db99f2f3695cb9512dae73828ae17d2fc49acb4a443954f007f9d9c20", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "df7010c4715c8f8f4f02530ecd2df6c60d79a00f069e3b48045d59555310937e", + "regex": "(?i)^https?\\:\\/\\/btc1kkg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "846734510c3d3a454da6765cbc78529635d7fb3e113e06921190bf60fe7096e3", + "regex": "(?i)^https?\\:\\/\\/btc1mwn\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cf31513ea5da1d2390278e350de3e139218506f413f07a550190f9e83ba0ba06", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "67cd88311ce54cc0a25a9a35c950e64e4dc36fd62c0182b08ccc7fc2810547d0", + "regex": "." + }, + { + "hash": "7e4f39d6f7d16cc9190ba1ddd22b626643d7d9272939853af243a6faf1aa0bc7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "14bfd9c00c914b1946054a7251f4fb0df3921e21dd4514f0bd27227f0685c9d8", + "regex": "." + }, + { + "hash": "909544d54669bd5aba6d1d59d8b30233b9582d6a6fc91e8dcde30063339986c3", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "56ac6c1d7dd80adffe092bdfa4ab8895485bc654297d29f24fc50ae0c4ee8a9c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1352a182cdd56ac6d7934d3e752914af2e227989f49fffeaa8d6b3502a45b3a8", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e0a50c06634bc920bd7d740881c4e54f721d3e473621d13a1ee0f93aeea844dd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "70796cfb2d30262497438de067fb490ec2be98b57da382f2d55adeb5ca81d596", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "33e1e1f0fc2a5f9b0ab9b0f8dd1a8c257c93a9d776c30e7286a8d7edf12824cb", + "regex": "." + }, + { + "hash": "fdd5715ab8210c3ba087c18d3cc064ccb610d8c3bc89bc2111e7fa6a658878a0", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "18180d6b0b941672fa17ae78eaefa9391bf86bf6c74a77d3f2d2bb0d46c7cbf5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkr\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "efcec16ec180a43a85eee354cfdeef4c8ec18178c7d3ac82b5d37022bb871a18", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "dfe5e76a3864ff5510880bfcb4bfd7b9cc9d8e861bb9e10a69e7927663aff197", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2674a92bd66312f55193a1a6b075c55f994325b1d3a1cd469047a1b11991de13", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e6f08b2de91f36ec70884c133c7f372ff19bfa6fa4e592a9ac40610e965bac5b", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dc8e3359290b2ad28d1d433fe9977a0d7af0edf2742a95fe4e8280096b7a6972", + "regex": "(?i)^https?\\:\\/\\/btc1kuh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "29026e0afe35c643ff7bb6dd173b35cb314601267c4287f8b4fbd1e689ff4b5d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eed\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e6f770d46b02d4af20e1614a99710d8db9f11aa2ca5fa9bd9c037ade2b00c12d", + "regex": "(?i)^https?\\:\\/\\/btc1eye\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9673bbcb662a5cb498c8e126453bcd1ebd553a374be60daffa8f416025cdb61d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5656beb804e638383f8875d6bb725716fcc6d7dca083825abada8446cd73c19b", + "regex": "(?i)^https?\\:\\/\\/btc1ypw\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f9211641bd4b9ed8eab9f5b90a40f70ccfcdf967175805e8e3f8acde531e33db", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7f9254c7ad1dd7c7d9dbc781b4f029ec2e4db981e244b4e664dbff9453b21b1e", + "regex": "." + }, + { + "hash": "c605f6751ea8f06c39b289734076535b17bcc77acf14b3b4d69050756c3468cd", + "regex": "(?i)^https?\\:\\/\\/btc1kku\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3f67c18cbb60ee05b7c5b2f31f21362110612e7a55e8d10ca9189d5602f9dfb4", + "regex": "(?i)^https?\\:\\/\\/btc1egk\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1754508251338f377d2ae3a23c10b3e14ce0a7800dc87aa6d1f86f4c0da07251", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3d67aa68ecb3bbb47177348f38210e96b48ed046e7f8b940471c4b299c027d6f", + "regex": "." + }, + { + "hash": "f5df09e5f2f0842d1beee13f165562d47e26a71f9c991b6a6deee3231536bb1c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8f2213eb3a384351b103af0969a581eab0c779c21af0e084b6f4e17c670466dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d029105d805f19d009ae5db576479a08cd853482c0370fb3211b78eeaae966e4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gge\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "afe573143f9cbf718299449c38a202924f6ca9e4261cb255bc0d0ec1eb68c02d", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e52284e121fa9b81392d9f0aa6227dae16ecbc6187ffb6bf70f9ab9d404cb715", + "regex": "(?i)^https?\\:\\/\\/btc1qql\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2af72b55f47e20ed628d1c5185595ee037eef9eccd0aa79ca7cbcfc3b4743dc5", + "regex": "(?i)^https?\\:\\/\\/btc1qql\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6f0a3d4ccd8657ba430fb95a96784ade2d19519cabe5159d60c081f869ffc86f", + "regex": "." + }, + { + "hash": "be5c1c385a1232e0cfe789f0cc5b9a1e04072cd06fedc044e05fd0a3d3381329", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "79da55e28408b2e2c8e19637217f05af779efb94323872ea636b4af9076a8870", + "regex": "(?i)^https?\\:\\/\\/btc1hfr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "afc058f3507a2fa5c4d83570ff6309bd87f32e6ef3c2a28242b32b4842f25a03", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3e7429b6a4a39965e8630519da855b24ae7e2ea247b7e1b9379ad2ac6fbfe65c", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "207964a4294ec7d764b62e2020a02b97aa8870157a8bc433bdbb01fc14f577b1", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a385330f6fe695a2d0283cb93f2ca0d28351519ecd5615a1c97528fb18efd409", + "regex": "(?i)^https?\\:\\/\\/btc1kkd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "73a6c89b13e838ac7dc16a734fed2f96ac175cd7a3ad09a32ae355c28834aa8a", + "regex": "(?i)^https?\\:\\/\\/btc1kkh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b062bb2e326b75929415926e5777663eba83afb2db432236620593678ce23e9f", + "regex": "(?i)^https?\\:\\/\\/btc1trt\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "011e4e303f7906d882254785d7aeaa9697189bdb9f30b1da9eaf5e21a051e37e", + "regex": "(?i)^https?\\:\\/\\/btc1ghw\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3ee78f68bab898c25d64144b650b8b7b765e28caf2cf1a4914368a76f4cb6a60", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "85845d712447250fc185a24d13e91d1eab5f563b1119c9bad17f7901530397c2", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "48bb6c88a861cf2a9ccb8a923e4f585508b576068c1601655a2879b399018b10", + "regex": "(?i)^https?\\:\\/\\/btc1rrp\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7a076c70bc93cd429d5e001918164cee201145f1471030f4c61b0e016b60ca22", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dea941ac2e15c64bb383578bfd3ea48dc53044eb0375457b3a8395f19f420814", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0c7cbb70b3cfebabd7f5401684ddc4c0b20c8a6afe1ed9f8bcee0c15e8294f20", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqn\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "80a873190e03c744a346734d28b39dbfa389fb1f948ea27fe9792166d42809ff", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d1eb75aa45bf540ef4e6b3ff76023c95ba2137076db5dd33ec92ac897ae6c1e9", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "607b4ca1fcfeeb62768ea4ab69ba9c93bb80c855e6c7fa2820e8496fa907e7dc", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cf24da033e2abba41953558ee2d24eb7c90813ffe936125dcdfd17f011c216e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egk\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1fb25ed9619bed50c8a73e99cca784739059f4169e5ec3669158a9fdab043620", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ysm\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "38c8bea6fa8bd4f8eb4f0eef738f875ee505f920b6182c732ea046fe46903812", + "regex": "(?i)^https?\\:\\/\\/btc1kku\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bd6bf4412b0007dd7ad292bd8d20e97794b688a2f7e6a44210c64d83f32bfba3", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "30c7a1306225d57ec890ba838b5c822ccefdf2e2f5d9caff843ca6714e4363cd", + "regex": "." + }, + { + "hash": "831dfc9976b9818c235cf71a9c1ba83b859075e553990ed99aac7e6776450e4d", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c7ad4ea381bd0af4617269bd0e991bd6bef97c77c820093ad8be72affab3cd56", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cb3508d29ce3eadd3c8fda713bfbc31585ca3aa96986e436829a186e43cf880f", + "regex": "(?i)^https?\\:\\/\\/btc1eeu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0020d926392204a80dcecfddeeb0b5bf70b96d3f247d35ced2e5ead96b789c94", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6340609f8f9c0f76096b4b5931273443dccacb84b0e0abee5f52ae4a9562588d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "03404e99162df0f8136c3587c05338a26186910d8e666b98c2fdd9baf638193e", + "regex": "(?i)^https?\\:\\/\\/btc1ewr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ba8559e68457a7b4bef23d3aa70f7835b6081d12dabd521ba779767284258cc4", + "regex": "(?i)^https?\\:\\/\\/btc1kuh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b7d4c8ae654884f28599e873c0e8e285d51cd11b46a31ed35bf6794b372ec34c", + "regex": "(?i)^https?\\:\\/\\/btc1rrp\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9c636674be8f5ae13cc77ef025a5107a656b028a4a9049f1c7802a2e98e3323b", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cceb7e92ad7f6e57941cbcb2fb4b74cd5a8f71591afbcbb52672e48bcc414a4d", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f043351d844d1fbf3257f8d638d18b877eb90c1d9caa62555ccb69f7c6552006", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "61b6c6adc2e60f44f547070b6c06af5a0d41a993417e70dbb1779d1110c90c46", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9164388d95ffaa20df2e066e29c73ac2a78cc1bf9a95ee1da3977de8c9cb7513", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ec1439aaa58dcf7d9d8e2d90ba2a0e5026357143f90634ae466db6fc3d1e966c", + "regex": "(?i)^https?\\:\\/\\/btc1ggx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "21b55088ee33cdc34fd0574019c90dec7b372b70ef42bbe5a5a492d65c8681d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f5df6068821e1a8829485da47fb0a16ca5d859eb7f39e3f6205da9de8ea7ebec", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f759fa2901272c2000e3812fcc32b181ced7e90cc67870652a02c625ff61172d", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "85ccc0cee39e298a9b2a69f7c409a6fb09d389184e37970989a50ad6d769b335", + "regex": "." + }, + { + "hash": "529269451b243e2a442202208ce2e723b6b7a7f272d38234fc51db7a2480273c", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bfddc36417b1e61d1bab7bcb0f449b19691ca2301b202bf94f4571e5d8ffdc7a", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a45db03485a901c9d164bb407ddc9ed11b7ea5246d71a620de947d699da09831", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "214e7ca225171db5b3326927a8fd9d9a90cc7151a2e83dcfa1fc7d1bad9009f2", + "regex": "(?i)^https?\\:\\/\\/btc1ysm\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bca946e56268db0f1f49f73a37b08158f367266ffa5f5394019a50b2df76c826", + "regex": "(?i)^https?\\:\\/\\/btc1awq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b1a364b026830698914142e0c08835bfe80e0d86273d70a50277bf876d1e320", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b3c69f59bf2b5589fb61d4dcefa8cf66ea0417c781047dd8ce94ceab5ab3238d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7fdde4f7120567101225e2587bfe3603b67991ee1aba12fffa42cf8a1252c303", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "83485c0d2b5eb434defa4b6bb743864125dbc9fd4d1e3fddb4ea2bdf77a50322", + "regex": "." + }, + { + "hash": "4cd5415d36cf6da0ef4ace22c29b3d652ba2bd283f1c479936b3063a763a1ddb", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "99e65547221193365654793e48ce5211ba4143f499cbd1f0c187d737b19a5e41", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "63595a27af635b7336c71fa548c24128e8d5987a595a18c68cc1f89835436022", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a094be3e7198b7cd7609a725ed0fb35fc66af72aa5658a2917cfb1a33add6ad3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cd215adcd0ea4f0ced6738d13dac03a48488211ac6ab4e9f662a4bd47bdd388d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2297bc39975cac84138f4845f82bc63b3a672540bcb2138355a1dded92467f3b", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "93496bfd108ca682960a7475f99e94afb5fcdea46c4b13fd03a3d5d29a49223c", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d5167c4b8e5e4d8c193bd884be15d04670a20a4ef21cdaa16a050342c1b2f0de", + "regex": "(?i)^https?\\:\\/\\/btc1aza\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "70b0c43f42460898b3cd35d1d6fa9ea69c7302a8d52fb35799fbdaa242dcc3c6", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8f9a8229b548d3d809e25d44254f88188893273cc12a9af33986df234f3c3e4b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eed\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "deb9331728a577b1454f91c99e3185f9847b8d14055e94ddcc2803ca5dfaf6c1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a1bb7df63da4c57f82de21b93eb74ef941a93cf849eafc7ed1e7f336bfed0e6e", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c9b1313329c011586c69bf61757f49c96f22340d7aa76130ac0501d08cbc8d1c", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "750add170477bd623ccb5eccb56679bf81491133f8fff68713c99b5b13d003a1", + "regex": "(?i)^https?\\:\\/\\/btc1eyp\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5e8841102008322677d1314bd5321b814732cd4de7a0698fdddf08a62bd5f939", + "regex": "(?i)^https?\\:\\/\\/btc1eec\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4b3d9e1627074a27c97f1a64346eed0c2ecf733313c98013761af95906272e58", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "20ea23582710d4fd55a9b2164abf9f960ea18ba937ad305e6b3d6010ee7534e5", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4ddbd9abd77c7125c571b79b1bbaf104516a5292fda689089c7a9fe5cd369e60", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a6fe141463cd7f5e84b6aef042d01ea8fe6936aaeb461b39902e39493f5b1e88", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "48ed5bba8409635fa864cc75c673fbfa1272658891f681e86db770a35f4cefb9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aza\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6a80a820379764793dc028762e6729591e16641a384fffcb16ddff2533387676", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "14ea23a2ce78d8440b8efdd12b5d2233c90e0730b85fcc5a41d35d3cf477f1cf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d63269d4d3ab864fb020310b9935d771679f41f06bf8e9a8ed82e71e0a532e5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pay\\-la\\-ter\\-dana\\.zip" + }, + { + "hash": "14ea385e6bce4af92ecba0820b2eb3564b0e858990930b1151885bd5d2f89633", + "regex": "(?i)^https?\\:\\/\\/btc1qqb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c516881cf8de03fd92f60da26078024f8acfa2e304741febbf3c615e5ffb3751", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "51be8bc77fd2b3445257018bbc7c56ef55cd508bccc6048e76d74189c0bdf921", + "regex": "(?i)^https?\\:\\/\\/btc1qqe\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b313c7572b7d1720581c699fcd6eae0f7eb6e379e824ce296d5404dd6af777f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a65932a1c18bf8da734f2d9b3eddee184c31bf30d7d9613153ed2ce3642ca893", + "regex": "(?i)^https?\\:\\/\\/lntesasanpaolo\\.18\\-157\\-157\\-195\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "64eee8678d164547846737c0ca3f6a7cf77ceb01530f8656a0b1d0cb051afdf3", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6132a237abcd226a6beb51cc17da8a13f1ce3c0979d47fe4a7fd28525938365d", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "859e133853e309a3fdd1cecfe6ac151a00ec4e37c9a91c6805b65d92ffa79bc6", + "regex": "(?i)^https?\\:\\/\\/btc1wra\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9f6f4eb44ca54c133b11945ebb3069b08d98c20fb69016e55ba507066b475f13", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d80f1efc0a2f1e4452ee2c4b5e0ed0ca28815d6a2a8b208e685ba614334dcedc", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2fe73f3849040d0a67871135c328918110c7dca6245c19768ee455d516003f6b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bc863eeb812dc0a15a74ae5a98909ee0c60920e3da36c7b8bdcbcb2a2425efd2", + "regex": "(?i)^https?\\:\\/\\/btc1qqe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8054e60a212600539564872a9bf3db808fff80590f8d86bae1d2472030854659", + "regex": "(?i)^https?\\:\\/\\/btc1wye\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "74f360509824bf279a2cf8e111cf6f3c85d3f32592e48479ed56d7784a45b228", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a5f5bc8580ab0d1c053a93fa7c9f3b58b4661bea8b0354b2fc6ab080b49c494f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e884de39518ac3b33deb0b016bcdf7d997c40a0f7576aef9973b9c2c7238e5c8", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "12b9e3dc382dd14ab39ae7675395b605b59a60da265710a9145e5db23cb8ad14", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "020f42b50974a60ff33c372cd7d08cdffa43eb04af743c3e20ddf85dd219f2c4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "da727551fdf1cc712c5b0a87a9731d26c7ee569b2c1bf9ed6f5fc6d7eb829cd9", + "regex": "(?i)^https?\\:\\/\\/btc1rrk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8d326271b036123f5d335ea728a63f0f8ea89d0515da0439761e3ddb31d573ce", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a8b5c2ae5eaf36eeda8655a79367d801491286bdb80f1102df8a564e023f6140", + "regex": "(?i)^https?\\:\\/\\/btc1qqn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d5444f831ac74c0bdd9e0737718fd91927d1fa7dd40e5a1b8447aef59cdbb855", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "38710bbc9ca6963372610c2e56d303c7a3540022d8d789208557055629bc0daa", + "regex": "(?i)^https?\\:\\/\\/btc1hfr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a484e86f79817dde9cdb22519e5d773bcb2c110776ff3eccf31962a02021d633", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eed\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d5698651992fa8e89db045074e58caac4b11b1314eac44de08f70753acf2b686", + "regex": "(?i)^https?\\:\\/\\/btc1hfr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f9a14398c66cffd34e49dc706897b557ad2199ad0f26ff0ae0a8e66dc727708f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7178eb465cef9a0259b889b4470066c1c9620fb815a3c3f1fa8257cf03b26f1e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rro\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "aa8fd4550534a0cf5feb66e4cc4365deb74fd14a1b096d4fad8fb3b76867d3e2", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a9e4ab281eb8e9caaafbc1568e644c7643816fafa1549be50e43e211a3b8a7ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a899f6d7941efa8d52b8ae691006a2f897563126a7a794bfb92aef14f22f3890", + "regex": "." + }, + { + "hash": "72598b60da441b91a3a8e1078abe163f45d662bdcc1f7c46bb11f7da7822b3a9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b7f4842263fecd04d61e086067caba7ca615797097f1490027e97ecf46baec24", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ede6f75e2f2e32ff3c0e340f2e3a30a088d4fffa00672e4e0c25d17d3e1a7865", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "979e794887215b21448a34ba0a8c419e2e8f1156933996546787e16bfd9afce9", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8ae2c03a7c3772ce077465523855e690d2ca53e1a6f24a6934084600d94aa0d2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkr\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ae262b28667fe0497982d6d9386637badced88fe405c213251da9c6dc3e4082b", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "70c8955497221b85940e340a1d01d6b9e3556dfd62742f00b8f3f945c164726b", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "99848339147a3543522876e7f3ca8bc81a192e904a3afecbc1b6a32b215a3ab8", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmX2RiGY1EZPqqjVQkVaR7PhjDU97uK5CmA7ZP9BJR4x2p$" + }, + { + "hash": "91f5143a3e7b71a72d45bc716bf9ffbf7bb7407e1751d9b06bca2f87a17d2748", + "regex": "(?i)^https?\\:\\/\\/btc1ggs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d77b926077a14c31892f99ceada91d2721e084bfba69694aafb5d0060bdab589", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "894a5ed99fff3da48031c71f2f015a89dd92ac09d51696c1bb36486b313db7a5", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "ea8fc391bfacb9ef28c561a4019d8037ea8b636b77f2b4ca9b15bed86bf690b8", + "regex": "(?i)^https?\\:\\/\\/btc1kka\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "55d7e9b87a2c67bc7ef17ed730011ea052101ff2e7d92f5c3c501357d4058302", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c3e06eadeb64cf9b769039cd9af31f7ad676cbf46a7cc1dac64087fe59e1fec8", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "52eb8b618d713f02d47c0a5110550bb48136a481b3a9126a439e4457d404c9c7", + "regex": "." + }, + { + "hash": "5f993a5b3fc4457cf5bd95786141e61226ae76c85c879e1f13984f7a0ad7b72a", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "b3c492661f17645ace32e67ad01ec5aa39d5b29be54f245197028371c6d9441e", + "regex": "." + }, + { + "hash": "3871976299ed03ab1cdf968180ab86f2233325f6b8de8c3e42368733447451ee", + "regex": "(?i)^https?\\:\\/\\/btc1mwn\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b25bbf38aac38bbd664b90a981b467b11a66ddfa3574803795fa24a8e4a212c2", + "regex": "(?i)^https?\\:\\/\\/btc1qqg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3e6fb6fb9432b83b9cf3246eda8b2d7311d23aac1b736baa1d166ce2bd685f16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1mwn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f70d6dd3dfe232f488fa1696ac6d3418bd1e9b47073c770ee725ae9c4729a731", + "regex": "(?i)^https?\\:\\/\\/btc1eed\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2ff277ceb8af8164c6001301cbe69645608fb934277719ed90b5ba87873004a5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wes\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fbf6b28ad870099b1082812efd41f266524a0dc732da918f9cb3a0f55a4514e5", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b8ef666d781efdb648c2deda949472be1b162179e50339e83bb2fcf9457fac4e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8069ab456d80840dab790a03bf201bd05392fc90049b5fd70d73ce5680cd8d76", + "regex": "." + }, + { + "hash": "fa2f1fc17e5b0ac51d58da7fa062437216761e0de814d6bc6627b53faf9d5d90", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "47a897954eec1c9cd25153060a4d8664187f13a1d76b0f7c3aba662c3a836439", + "regex": "(?i)^https?\\:\\/\\/pub\\-9401c488670645d5a70c28ef939c3452\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fb09555fd96d7f2c64bceb9328a3e39b7317b48da8d860a85a654eb0035b1316", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d832cb670751c0c2ab402c3dd2fa2e6a7c4d457f37f5fb5081499267b54e93aa", + "regex": "." + }, + { + "hash": "5216457e9b9b191f2aeedcb7c3ffa5e6630e6095fa03975125fff0e80fecfaa0", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4e0c75daa4070d1fec06f1e52b8a263d3b31e818df97ee262f3a42aa89f98747", + "regex": "(?i)^https?\\:\\/\\/btc1gge\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "09f71cdd7c4c9a7e4d670092e9bde6534e952305b73014c1b61e9880791b69eb", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ba00c44a0e8795037d0df750b1b339d0d11f15741748ffbbaca7fb9f3e581530", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b82f8020c673c689ba9dc0e87e28ba87004143f453ce4d22edff667a2d33f60c", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0463277dbfad13f5ae91358e0af4e5a8b2c8c5f5cec69a61b29f1a1c6e598f96", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3360dd1595211ed270f21dd8671b3dc73dc2ff8ed9f367863eb62c47133213de", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5e7ef19a9bc0215adf41c012ac690e5bea44ade2bc9af9d913fff1dbb3b69ce7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qql\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0608ba92f429c9c4a83136e6ba14afa2249aa534403a40d62f3c344762274617", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "50df7327d7f3a07403aa1c84cfae8837f5e767788521dc26b1d7b5a227c44c11", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c4a493bb127826ea144bf76c8e42595c695d41e70ddc91ea0f5fe90bb533749b", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "aa87175eeac03988832154b65eaaa7a500edf1fe1ad606114a5a0ca51cab47d7", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c88e4b12260889441e75090440193938cec133823cce061096f22379e3290ca7", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "365ffccb1a3c99963a958076b4294d170404e9f32198ece57a0ced682c83d129", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aza\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "eb70e42349a3cab884e6bbeba7c73f63ebc357475043048fa54a49f21de4fcf1", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fd5b7a58addf9e43e965a7ee6ce5de87569f34853f5d26006eead6cf1b4f99f7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ysm\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "53becd6feb13a48ea9d4284ee8880427313a552edd5bf42976147e7da97cbf2c", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "896232a99f441661739f85aeb25e9f143825e66981a60d3b270d11cca416d954", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d3d2bc6f190641a61b92e0176df28f0b5c42b0331c7399638feec2908c8f8dc0", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "59f21d6afc3a4b18994109d573f4ebf13438e28a0f3da8eeb72bad20d773c9e4", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9ee225e0c67dd3b8a90f29e54b052d322cd0896b37f91338716377a698a5c109", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "04211e7e1250ea3e3eec07eec2aca9087774414278463b766e1f6e1269ab8e08", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e158cf257a6f8d241913b8b924cb1ba04056dd4a09e450b8041a83a44bc46549", + "regex": "(?i)^https?\\:\\/\\/btc1qqa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c4582064a552034918ebb9d3f275f11cd41350c6757a5819c726ab019767d972", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d551f251dabf4f68897ea3530e754c7379dafc77fa7c1ba2067944da74ad5b07", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "396144efc0a45fc0e5a65727dac5dd5b22cf78ff4a6dab7e61ab6232c548d997", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gge\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1e434d67d3d1e1306a329b08d0704815dbfec71b14fa8db3ccde4cbe0df3e7c1", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0ed70f698aec99b6fec877fbe0b5719078c00579827ba5a3688b270c60fd92a7", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fd7820a88dfbf2c9f8937b57c32fc340291e2572dd772cee2a87b5e7574d04cc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cd1e5a41fd858b09446ccbe22bc7946a4aec946351206f5130f7b5335ce55aa4", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "12d4a728c1cbe091cce5971cf8a43adf5e766ff06b207890d01f10ac839603aa", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "33077c59c16dec1b57cc53e5a5a833cc7732ef02029315113b07bdb81fe6b7a4", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "325bff0ae7e210d85e757d9150c6c4934e31936ed97e51c8e2963b8f5b789e04", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b76b9286a10709b1a5b6ef69c1647b87b4ebeb2e68aa8d45733b7911d94582cd", + "regex": "(?i)^https?\\:\\/\\/btc1ewr\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b3add9ea8a4a761c3ece4925832047a64312a070f16349d71f73cf5916790bc6", + "regex": "(?i)^https?\\:\\/\\/btc1ggs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "72138516069f384ae667e9999190219867e2d31d27325c77ba0a87dbb1b0896a", + "regex": "." + }, + { + "hash": "2ea0500a8b94f4b5e4128f4362854e8342927b2e558f07f12f55e0bd68e7bec0", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3be302f2bf535460a6805779aa44c2c3db2239b915a026125c74e3624a6c48ab", + "regex": "(?i)^https?\\:\\/\\/pingbo360\\.com\\:8989[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "8b158052257f39462e3c735cf81fe5bdc507bea57666137ebf5cc2ad494cab17", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "559c7d49c24fac3f3be85ac60095acbafaa6aa9f219d258bfc625aa1321620b6", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "94f3ed1be9af58aed211038d0ff97042f6df19178d768f300e441c671cd91927", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "18cd65712cc449fa985ba051172efa95eb9e922992b89888bb58509314e6dc32", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "252a6b0e6ead034d905876e7af7b5c70ae54f4c13fc9b8da3e92ca2c42c65d3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+17n5v6(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "accacb7ce854e94b202e03ca38e27392c4453221ed957856247cfaf1372fb96f", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dbd3ad0fdad9e335c8a7e998c635a3760b2b1c7cf1b3481a35538e6b2fcf33e8", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "70ece29c1996e3482bd7354b2c778a07a110a41945e0ebf35e82da628f85fda9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aave(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c7265b3d35061e4a69c3c5e418beb284918d127bfe2f2f088b344f9a59e90e89", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5536cef38614b92f40aef56f8645333fec2f8f136ca5f10d20be5cedda38aa22", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a4bf8f67b75cabb48c442dea8161c6f0e4de7bc2a36cf2274c160606affde1f7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aza\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7e8a9649315711221bff4d2ca1ee0f9f03b4947a9ec56b5097f782e66c430001", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "16e5255bc8bef06608f9d0a8821b603dbd0a80b88a038ec5160f0f0cdff86122", + "regex": "(?i)^https?\\:\\/\\/btc1gge\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4e68037a49fb0b63254578d0088e4f83cc95dc9d59d70acdc686591631d2d12c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "34fffb6c359bae0e77fc943f6a264c1f290025cad2cda38e9fbabb195e85e4e4", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "93c0595ddbb081dd445d8054541a3d976eaca6034ff3abe573322d9f5133b98b", + "regex": "(?i)^https?\\:\\/\\/btc1kkg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1a8d64e2b197ad5f8405d2181937cc1f1fae6eafe6094fdd1e90ab776e9e4c7b", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "65e687a45b40de83b4309e3e14c500c0fc80c8a2633f191d7dcd1855096e5f71", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6d86d809812d9f4e218757b23ca3ac1a9c004194d222f5fd1789b64b311c0595", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2090e8c847a2353c73ecfdcc602e243170df1f5d81062509781c553b4694f7ac", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b464d03128c1ac76234bb7f5efc5209d4de81bbfebca02e0677aae8b6e0a0e5b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ce70616d3ff2f47d298407aed5a81e0a84fc54f9b4af7eac7d5fc91633b53878", + "regex": "." + }, + { + "hash": "060884338f605dc328e8dbcb8337b12688b667991db07d4956f18929494c5cd7", + "regex": "(?i)^https?\\:\\/\\/btcqqh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "71fe2309ea3c1c7417060808f487e2a5bc70734a6d746245b3eb60864fceb4b9", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e0fdc0c23612636c2e21baeada96f319339520b47206c32ebc21b67f101a4fa1", + "regex": "(?i)^https?\\:\\/\\/haslkaanah\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a11f9b4912541d0bc9acfff2af522f9a94f8c6e99f01df81f1ddc9c6209d7616", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "febcb04a131ea08c6af3f945813a3d0297942951dc8d8ee728983934f4e02655", + "regex": "(?i)^https?\\:\\/\\/btc1kkn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "befbc9a955d0199124ac926b2c29198722a36916b2cdedc88a30d55e3acad1ea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e78d98ee9c7c979ab263d6e397e380a41c93aef6e6375fe518ab7f3d8a0aa850", + "regex": "(?i)^https?\\:\\/\\/btc1kki\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "accae1780e459c3a40f982e47cca82ffd9d603e6c99e162c50a4ae94cf3242ca", + "regex": "(?i)^https?\\:\\/\\/btc1kke\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "48edd51e204dd42b8e64364e55b0750ca432e0cb44bd1d6bd9372622ef1839ac", + "regex": "(?i)^https?\\:\\/\\/btc1kks\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f2d23a1bd92da1c094234c62b99db1ed507400727b5d19eab3645ed635f5be2e", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4055b8e57fc592882358c151af2a0b85f5fecdecb075479afb954b4e69d98395", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4cbf45e4bf6e0f6c00b1183dd930cde818743dbd1e60f778a01d4cc7752ff09f", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3c9af885c78d171bd2225dba3b4b928efdad663b30f1b9f1f00b21b3a3438f4d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c7184688ef7b98e80c841ed9a425565b37eb6986d5537f18cba4df5d8be000df", + "regex": "(?i)^https?\\:\\/\\/btc1hfr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4e298bc85d0924d6924a43e61362154b6be82f05e8c955dcf658ac48b423badb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "35e0510c1bb8be9c5d6634ea37f7e8046022e880d6dd12c60649ec650184ae30", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "7178dd04cea10517f22a1f06dcc0344c55d3c54696290a14f03a70952b6cd216", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cc25810ed022f1cedc96f4464efff4c8c737600746879db05aeb9ffa6add26f8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkl\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2abb63b551d0c911c0cf1218b53987eac56e9091158011918d4382cb7d333976", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "42fe230a1fe143522a6664816d36aef00f33b6809c3814efc800ac6289ece257", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qql\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1911267a9cb2a1c34eee897c28aec1043a9b934415cccc59fef0ba96f4fa19f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrw\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1e6ad8c21c949bb14b770bf499465623f6b39c3b66a8f338435cb35608b507d4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1mwn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "88802fe6d3939580aeead8915c0864f1dd373c8bba4c940164d0d723f13d8d7f", + "regex": "(?i)^https?\\:\\/\\/btc1kkh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d516a4a76b20c32c6d44dcd756cbf1f58ebb1784a1b7751427ad4774df79a393", + "regex": "(?i)^https?\\:\\/\\/btc1qqr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4a1b52d9ef86e3ec780e0680dcab95699e5ba7b00b4c044aa41e988ebfa141f7", + "regex": "(?i)^https?\\:\\/\\/btc1eye\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d26348fbd6066ad2ecddca47e610df888c2e605c042c063b39b78f8d4aad3a83", + "regex": "(?i)^https?\\:\\/\\/btc1qqw\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "dee31f74c4d0e96725c6a0c93f95499b3a8b42819dee705e61b720be5cefbeb8", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "69d3263f604861598336c96485e86a436808ac646e8c8b7d902af3162b84bf8f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c83d3b82fe29e0305695bd42fd6a278bd4742ef3d4d7255c681b9c3203deea48", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4f567b52ea743757f23d8afa7034293f068fbbd01951a516c0118ae9f226f2f3", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0058e4d658c58c223a94d3d2e4a7e22f824d925e966ba2feef0cdefc722cfb71", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "58b0a3eb1ab977ddf2aff82b21aff6dc1c1f3f112850f8cac5b1d1b3ca364c25", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ae99c9fe242f7dbd50431452259cdb276892a81ecbedc8d2badfde2d555bcabd", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3a6894c2231258813bacc449b7c8f0d4c50231de64d24a29a78d0b3689e3c02d", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7a02034540b70902883b24998e4318b754e827a8ab8def0ec966a337f708618d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3e151b8e7ff33c620ef34028cffbb9958633ebd6dc1949db3d9b8e3acc154507", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "221e3d68e722bc5228e9b1b3ca74e9a69cc0e11b85e880c3454d7b89fded41b2", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5228e3c7841e355589b814680eea8606f3b832f57d56cd8d7e25a520b35f496b", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "da417eb82087f01108970abeeb9f4bf21ef821ec34da347a95493a0673d105b0", + "regex": "(?i)^https?\\:\\/\\/btc1kki\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0e4b8388dc5370f31cb1a1a7ac7452300f45a1092a145e24d058ca27721df1bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "16e5bd7f9ac74b2aa1930e96121134dba92e87fb591540d7b297a1fb768db069", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d3e67cab049968cf418459ce2294d4f936d58d9868cdccb7802e3affed6bd8c4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4799a28e67ecf82a6f8330725507f53f4ec82ac8c34dd2e129567ae53aad16c1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4176191e6c26f4d0ca7097e0998389c221475bf643ec3831b700c25daf71f6c9", + "regex": "(?i)^https?\\:\\/\\/btc1kuh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "80346e1cfdf7be6b98665c5873b4b12391d250bbaf6112f3828a7156152d5005", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "12e0d31932cf13af25d1c1b06193a1a44f7b53b98f38410f8c00daf09ba0ea46", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "904ec456661d8bfc5ab0f6ba59fa58141d3fe84b32ec1ebd6e7c511f8206fc2e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b01398b29944d8b734782a9dc4634a9934f5026cecd2f3946c849dabc1294a9f", + "regex": "(?i)^https?\\:\\/\\/btc1rrt\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "da3c024a7dda7fe4677d3a688747434642cc2ec7f355fc2b92629d3dd290dab5", + "regex": "(?i)^https?\\:\\/\\/btc1wwb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "20e1da0e1c76ffd98f7a62b827637fd5f76526d3ee8f91a02eba350cfa70c06a", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "636a1f78077cc8e59a7e309904ae9a1cd7514f59b4aa381f080852e0260cf310", + "regex": "(?i)^https?\\:\\/\\/btc1kkb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8afaf3b9021c2c7f7a711bfaa4f3ad32084e383492e28b556c7fa41844684483", + "regex": "(?i)^https?\\:\\/\\/btc1wtj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0801b2fcd66743282132b4fde6f25d09e3e5109d319a1e3e8bea07f5ff835665", + "regex": "(?i)^https?\\:\\/\\/btc1egk\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3544d7fa1b2b9a1e61b1fd66cba33b3e2577592ee5bf936d01f957d46e2cb66f", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cb2add9d368fa6a37b3104c7a85cb95dc2abc951f26d4aaed6b34604b22c750d", + "regex": "(?i)^https?\\:\\/\\/btc1wwr\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5ad000e67bea4b3552b5a2ba84344926bf5b6978bf61782748396def9bfeff33", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3522c6a5c2f9baf1379a792764c48e19498730605fa550e986cb4c31a04782b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ysm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "adaab40106fe6d16b4d27ba67efc1f66f8fa0197305d8277486784122e067e40", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "071a941eedf7fd8e8c33cf09991ae68f57b7d3ccb11844e0a498c45d90992c03", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7a3adbf269b6dbba2527aa45c7b40a4fb13fa7d21624537fd4c7c9804dbfd00e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1mwn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "084efa0221218bf60c6e07f97395a07341bab3f629998c8b1e7a19f14ceda3a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8a4208f97e6235ec4bcc90a075757318bf8cbff2bfc974f81587bc4a3dcb4676", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fbe1490f2cef0474979eca55572278ec875545d33d46764b1847eac59ef8cbce", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bf858f8a8c5bcd13ab452d2fde68a075611d97e8b40cb6c220e5e57a45969023", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "53d91edb97b14e057bacdae3f5f77855511020d195d6e8c030a01ea0f9f6628d", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "41c60d7f632117be6ff185d1632613d9fe4d9865e8a60dede410403b696cb6ae", + "regex": "(?i)^https?\\:\\/\\/btc1wra\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b14d75179bfe7e6af5fa8024de4b9c466137bba4ede7882f9b0e125d5fca1143", + "regex": "(?i)^https?\\:\\/\\/btc1awq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "da3d95f1470bcc76a4a5a1000f65e4f19a6426592b4acc9892994ea72e8c6111", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "983ff13a17127a9dd56b6fca6227ed68bfb71496a0f5a761866b02a552d99de8", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fa52f8b743a2736efa46122abd5b30d3ca297ebdebee1b2a53251da9881dc866", + "regex": "(?i)^https?\\:\\/\\/btc1kku\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6388d3b275384ce5725ce767f154fd4d1b8b8b4238e6412f2bc12209e56961cc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ysm\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5e1b5d75f71ffa6405f64ba0bebaef73ddb872adfd7da0891c995c7d89c216ff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1aebff47c84eb8133903d1ffcb798cf540396656d996db86d6b5d53269f4ea33", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "94be58c4ea9e341bd38846ac77ac27e12c05c84f06e38d5d5799204d9a3d7a1f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f6708ab147129238b56b7749a102337e997f57e3770c28de1035214e1382b774", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cbc0342adfcaf81f4f3c1b7bc96b49ad47a276e33967a42338c7271c64e57e44", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7d35dcababf0237456375e257feb43db1e9353735329ad365b6ee8fae79c9bf3", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1b8f7f6482b23f48db92c013408261fe1a5dc28cc68c389820b5b909f13f7948", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d13c47be9c46ad58a949049ab44bfb92bde3b609b8523d2c11e9de5d6a625814", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ef6de52da4e3eccb34609c61b92098cee61c3e0ddf02ff548dfac89d3b957870", + "regex": "(?i)^https?\\:\\/\\/btc1kki\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "28f52bc1f7dbcf2d33b583e3ae9eed7902d7314401573d0f0fbc00f76b484577", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "dcc1522d903b3c1d8f023fb4319a736c26791e461f7fadd28d3c259a064d5fa9", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "64955999a9251480218c67330241cea917b5d421013692b6f538ef16b8908b74", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7116f37db9042a470626a92fc8ccba3b2b56110c293d1afb7ed11d17408cbdfd", + "regex": "(?i)^https?\\:\\/\\/btc1kkw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "46fd8a7859b14f5962515fe0734797018c0eb6d67e09f47cb9d8c5e067c76985", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8c84ff441e73de92a48a1c96dfe14631802bfc6fb7617484dcc06c15136d8231", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2456160359d210907f65c338a316036757c428776a6831236ae636e03777ebcc", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a19157156c58d865d0bc2ae44b9543446c0ccb87f78543450cde39223983c857", + "regex": "(?i)^https?\\:\\/\\/btc1kkv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f1f041bd9002cf34dc30c930ee502683111a2d8d2cabb341233e7b57fe978bb1", + "regex": "(?i)^https?\\:\\/\\/btc1kks\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "02e7ba231c7aa3e0ee328b666d4ab2c031f1b878bfff25f306d504e3daa0f070", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1bfec27287360d215b01cbd0110ecc06b185f9e1ef61180a92f2a7ef9a58b6c7", + "regex": "." + }, + { + "hash": "7de9ecc6e7023f6622e4802df095dd079cb325e94f99eebab52577d17b8aac83", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ca70aea3b76dfe8c19c7a05bf8e87a1be3f98c6aab101534d8000392fea6e205", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cb1672a4ec985ae474f925ea800804413282b5ebe03a2a9b2797e00c7c229fd7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1mwn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "750a7d35b8413f18350edfcd9688f3350f58267ac07891fbe2a4cf7302b8b1bb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f2696f97fc1b3802938511bd216f1f0dfbeac46752eece65d617ec53f0c5cb27", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f4a13ccbb6fd9efaf89ecdef709b6b635469c45e7f25dad41bfb99157a36092a", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b3136d76296728c15ee6a675ba0f177f0c667dd1fbaabd3a1b2e683de117849a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "73a194424ebb033b41bc3c0d65f0675677cb0a11358837353f050c5386aade07", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrw\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6bf5c1a21158abdde53ac7dd5735fe4f94a957d2f05f5c6665aacf19df6d9f78", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "09dcfa1d5210e7f1bf8ce2b0dca9ad008a0cf4f34769d8b07d72d901542de467", + "regex": "(?i)^https?\\:\\/\\/btc1kks\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ddc52512cef37f325f9b05099466fd3cd4d1df41f4d23ef3b2fd3584ad1e4c08", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "755693f88d0645d22159f2d30d6ef2eb01e855d45ed4f889cc297b3e67029d60", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "aede932572b59b35b2b161a1fe9cedc6066b667463346163a71fbc7fbe5808c9", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "23602e659984253d818a4654d1a750982327acf82887ab70fddd9419da04388e", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fa27c00ef8f6316e5f64c1364076ed6571cd8a1d06d5bc9a6fcf89e8d0247421", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "adebde1d805dcde34f5184ac2d58287f8cd2675bb0ef8a5b1899d9eb36a4cd94", + "regex": "(?i)^https?\\:\\/\\/btc1eye\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a99d7b17cac2a576db39e2f330e25ed0a18540232986b12fe8e2cec1b3a48df6", + "regex": "(?i)^https?\\:\\/\\/btc1kkn\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d8cf7992504d212d59c48a2965b33cc1eecb98f2b452c57b491dee602a061de8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bece2bdfe77636a0cdd2d668e9a699f52920066bf41235022a4612f35ba26fd1", + "regex": "(?i)^https?\\:\\/\\/btc1wwr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3f536bc786a899279a1eeff35c65d410f31c9acd68bc4ee6211860cd35e8c671", + "regex": "(?i)^https?\\:\\/\\/btc1ggx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2072dd329c1314cbbb1f4f2e2be1058fbf86249e6a2b627b191999d2a23f0767", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "08d4d079fe5772d8ee0ad8929490c6325a3c7f0a7a157a4d44788113b2c7b1c4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e8fc219aef48a773719bfd374bcd5b6ee4b8c899be225bb81a01ce5585771cf9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aza\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cac60a11f0da28ac27c322e326c2ec54d5e70bf483db366e0a24e03c83ed2d2a", + "regex": "(?i)^https?\\:\\/\\/btc1kku\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ac5ff76d5d33c675acb35b73a7cd90425c7462906d6aca545f40dd2cd4993329", + "regex": "(?i)^https?\\:\\/\\/instagram989\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "22e372d6543772e00c270c12226f0deb63dd8c555fc8a13fd6a76abcf6123e6f", + "regex": "(?i)^https?\\:\\/\\/btc1ghw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "06255ff22e35f2b778a78724c965ae8e1901b9e2fa2499b6d59910f5d22d4f75", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1urt\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f4dd5514ad7f79050c473f08ed4bc4925305ea956c1fbc7d3e21ef7872a5c559", + "regex": "(?i)^https?\\:\\/\\/btc1wee\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e8e441d45b88af8e7562ead70c114568efffbf73b0962b4ced4828cc9df4f128", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c82f894328508d4f72195db521a752a8912b31aea93766a7f3ea18861cc9136a", + "regex": "(?i)^https?\\:\\/\\/btc1rrk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "67b9be4705def909f8126bf049a21ca3b21c3cf76eba4aa957af4a4e5bc86a53", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d6488c85359dc4b4ff52b9db9f4b1d3d5e946e712c4b47d3f8f1e759559bd92c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "70c7accb7c39de8ef1706166489c5443b38134c45930180abc4ad038b5be771b", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fe39f8ca7c5b6c35e58f5bb076eda41f1dc5d92d65d28aeeed34a0a85e7dd347", + "regex": "(?i)^https?\\:\\/\\/btc1eyp\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e9ac58fca18f34a8b5e935717bfd0d295affc9a6cfe23332c151bc01aa917cfd", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "01d54f53f7083283eea992d46fc5bd7697fefb0b1a42015af99a8d5010f536d2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e88448e42a72d1093d7cffdb92b7ff539f8059be396b40f0c6f053ff03d1fdd6", + "regex": "(?i)^https?\\:\\/\\/btc1eyp\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "118173e14c3bcaca8ec71ecf39c58f46743a3504bf33072cac150e13b824fc0c", + "regex": "(?i)^https?\\:\\/\\/btc1kkd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "78acffa7564bc4025be113711e71a96c4c4ce6d9fa2036718c84dda71bb61607", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c37594d0d0c43c238d5ed9f1f160b55e6a07fa4692563afa02e931b3a250d278", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "354abd522e732e39babb64a7a0bc91ec2f6bbecb2228024242674b825b5dcf9f", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "aee6538392d2a6342075a8aa8a352ef442e0776364654950ab8d2d42f4e273ee", + "regex": "(?i)^https?\\:\\/\\/btcqqh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fe21afb2d72f0015858664c0cec826abe7a1734a9f09d00ecdf8302fe2b6594b", + "regex": "(?i)^https?\\:\\/\\/btc1ewr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2c3db5bb81aeb29f1a30eacefebd37a4d551d9b8c0ffda751cdb429e39efb850", + "regex": "(?i)^https?\\:\\/\\/btc1kkh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0bc1119fdf23c88f696fade9bf0bc3071a4f5b58e0770fa32aac03e6f8a2368e", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "74f31a451f7281c8ddc31dbf85263de25740fb9730857db76bb9db8c03f7bd4c", + "regex": "." + }, + { + "hash": "ea8ccb69317949bad7ce37e27e018e3ea41d2206acb49f45cdd2f80788bc0709", + "regex": "(?i)^https?\\:\\/\\/btc1eed\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5a35feaa07d2d75a1bd584108323b43bbb2934d80fa8314e0cbc02d573bf2f72", + "regex": "(?i)^https?\\:\\/\\/btc1eem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "dc8b031aaca8e9782e0d3ccc42600cf93190b1e0cd562d72eebc9a1d2a77280c", + "regex": "(?i)^https?\\:\\/\\/btc1wra\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a83368cdb61926399dbd6f9dc76c6e750a09e631f9930920e1cd66774fff34ee", + "regex": "(?i)^https?\\:\\/\\/btc1qqn\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a1ebba9e74562f8118a305aed5fc65bf2336750944093a802790d84644a66612", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d4bb6205d94987ebf268b38beb157b09ecbadd2ee6a543cb690b81d7bd8b1770", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "96fd1867324f8d98e81d26c92d9629deb0c4268bc4bb93aaf3572b40b8c3a433", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2b533042f8878c9410cb00db68ddabd2518d077cf75109da07970e69a4222910", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d6f15315db94a6d83dee0c69546d628c86c3b91e465b671e8d74402d55e349fe", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "87c88c37ad00236af824f9f6c3acc05067bf24c66c0c1bb6761850b67dc8097b", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c94e2a3b6445e81133242ec76258094d2ea1016bd6b2c9b130aef8a24fb016ff", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "59e25fef34145917f9df58c228682b7c617eea62b7284758df6267a5c07b79dc", + "regex": "(?i)^https?\\:\\/\\/btc1whq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eb7069b34600ceb763d3c54ab639c9698148d9b88a08b6e5372d4b9d78ce24ac", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2301f58deb8fb131af53c0f1c1c38d6de89b36c3fdfa41b361be7603c7cf4cf6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3a6ad6fa34e29017746b6993610c15c1fffd6332fd8367bc4afcf4d038c6e963", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "84febe5bd6b4a9b80987b941931cc460eb3fc6510d965676706e098345453738", + "regex": "(?i)^https?\\:\\/\\/btc1kkn\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e6914e70edfb3d055ee24e527d9fc5b33a3bb2538a98169a8585032f79c00886", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8b4c40445eba8f3880e72132067c1296768875935053e2667f08d78ec39828eb", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9cfa60c862a2e6802526b21ba7accaabe617b7f9bd6da808062e27b33dab9a9b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "de113fdc5019638aeeb1835a013cdaa2748c818d02c35b4728b484a6eabc6534", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5f083fdc8776ec599d54cad03c3c98af187287ca89c8aa72b76edb22da973d79", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "113541cdfe172b5564cf6c4ac1eff842cbe532995bd3c2acdfa67ccf34cd5d8d", + "regex": "(?i)^https?\\:\\/\\/btc1kkd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "baea46626cd8bf9abdf93a2c57338dd93ca1eba1111701acc7c4d76148944603", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "21d91acd3e868de4876f4954aef87745e1cf5cd92b000a6f43a9b305f9c19d9d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c90ac57df0c5e7c72d348836489e4633c06b3103a60c63a235a2c6b796d1ea92", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3b3c23495ee84702d37415af4b7c29af8e8715661cb6feef6d479f8ceec135e1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "211161a2a2119090b6c74068eb7b1cb0ce9aeb74ed07cd58c0d3c1bf423138a7", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0274ea52c28980099d2ff2fb2fb86372d3787a4173f20409611e1f9a023697e0", + "regex": "(?i)^https?\\:\\/\\/btc1qqg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "758fe2aafab28ac84d52f1edf3230e7c2b8d2cedba85c1e6142afe63f2defe81", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "df1ad0a9543c12af031b3f67c17d1e3c069ec3f720f11e9baff2085bc546b3f6", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cceb94449d46584aa162ecfc06ab606f7dc22c34c5e19f17e9df6e5b935de9e0", + "regex": "." + }, + { + "hash": "4143c75eb1674c00a1025c282d88e9962e2477cbf4141666dabd74f24ad2d5d0", + "regex": "(?i)^https?\\:\\/\\/btc1ets\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2c8ebbf604a193dfc6c7b1779ce2f4387231910c5d56f4680a4fe6503cb744c7", + "regex": "(?i)^https?\\:\\/\\/haslkaanah\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "26260f33ba62dc65b69e76c5f15f44cf446bcc2806eaa8ddb79ce6f4cb0df4fe", + "regex": "(?i)^https?\\:\\/\\/btc1rrk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6e688c303708971358841d26c00ef33812d2172ffaec79e91a9a45f58725d0a5", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e9bc99efceada6603c087ac5cb8b5f4217e98afcf5391658f076393ef85e349a", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "64ee6020b629694f9b48f5a11bcd9c7ab9b7ef4280e296ed6640f2b180bff54f", + "regex": "(?i)^https?\\:\\/\\/btc1ypw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9489f4147f612ab063758dfea1970ec7a9b4928ff087864a75146b4ca651463d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "380cb6e1ac58ede647b0953b15d696a134044615570eb9d5efebcc379d7fd27a", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "274571a347d5212d253a17a8b68c54633d0dc0848ab4cd712ce9af0c4cd6f4d8", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e901e7c0f99fe02954351c1c86fc5bfd9b3aa5b96a04ed358ec9fd523e0a7049", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7424629f59f486205cc04b7d75fcca9728a065dbd0b927a312d0b79fdc7dbfc3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "558d367af437a478344cd269fe981c04581cf43381b56a794d21eca3f83a524b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "521b3f24f82d286036fabb78803e588f1e064c36a5075565b3d240da3bba77d0", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b524d7b146fb824265ec0cd4660095556e10d844276ee9a44f598dc95e871e29", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d5fb35043e6c50a9c782906e030818a2f8a0571461e09f1ac238b989e8ebe783", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "794c39240595a2bc00323a33fadc9826cbe4cf5de6940df26943f004f796eb92", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "14c7a8fba753cc05de606410328d46547d167618eb444190b34bb4ef16dfae12", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7d205b9f31961bad47459995243453a08c2e25ee382c538ebadceb48ca56a1e1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "befb3cbdbcfc294c916ae90099496da93ca4ef4bf459d7d955beccafafabff99", + "regex": "(?i)^https?\\:\\/\\/btc1eeu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7e8157265f94142f10a51443cf4c06a8ac7eb64b08acadfa87d0a172afdaea3f", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b0fefcefa6e9208dca93b996c53d6e9516b258feb62c76febb61a261910178b1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqn\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f5fe6ee0098b5e71189e575934083a299b3c3163982d1d98ea193d34cf66db4c", + "regex": "(?i)^https?\\:\\/\\/btc1kkb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "43fb53f9a8db8d221165630c65302771db2c33e3f04295c023e96efd101d5087", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c23cf1dfe781417356e1a6f9a43d81dc327c4482a6a1adff0311d5c3ee75d340", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e4bb9380ab56300ce9cb6bfe6dd32b2a344d609e9f6d40e395211415d8ddb946", + "regex": "(?i)^https?\\:\\/\\/btc1ccb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "50bde4e6efd514114b066e1f43ca695d7ec32840b0674b7bd62790b813bc3c6a", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "995065043530aa3d48cae70fa65b69328b734c37ffca6340d2df70870cb62718", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "639488a85a4a9128fcfb2d99fc2cb7a597b3d251e2009157888011a4260a8202", + "regex": "(?i)^https?\\:\\/\\/btc1eye\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "81158f6d16689003998ea0e3f5c898d5ec25824b24ab62a88c9b4f47c38349d4", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "c3734c004e7e68a6cb30079dd234d79cdb12be658a3ce0355dcebb81be6dab8f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "967564cd0681a339248ce80f0138b8f266452199e20f92f5787b34186f5764f5", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "63b4d94cc7e9608d6a78daa31f72c7b910de118406db68ee9a66a42b9c412f2f", + "regex": "(?i)^https?\\:\\/\\/btc1wra\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "76876f9a3e9bf34ff29a28141ae57b77a49a45e0bdb9a8dec937e19688cbe4e6", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "11de4ac136c46c466185c2e7bc034b7b16f093f6b67648f70198847adb365e4d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "06a1409e152dec1c11a7f8b165a05b7b783ab4189655ca2c147e5a7f4ba6210a", + "regex": "(?i)^https?\\:\\/\\/btc1qqg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9491d079bc0edd594fbab9c4ac8d0899de61d5e2331c511c68baf257c2fc4ba0", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c9bdb975463e3ad408476f84dd6d27bb36703b35fdbd0288575f465246936ee8", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "71b7aa420ac4244591bbb3560891a7529721f00a52aa29b83ea2866e35493653", + "regex": "(?i)^https?\\:\\/\\/btc1kki\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e9b676f0479f6c83717c79a49a5ca4e4460879b7bd3d8a605c6e56655e3171f5", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9f6904250b4f11a917c394e2de69c7d42a5bfbb6e82ed0898c40f2d988479caf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wee\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "74ef5efa9ebd3fecd94a33f8d60c60492cfc195a5328dc3bbd1759f6fa1687ba", + "regex": "(?i)^https?\\:\\/\\/jhonsts35\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "82c09e633150b2e6a7d4bf9586facce27ce2c671ea9e3a4c0950d94e2e5627c5", + "regex": "(?i)^https?\\:\\/\\/btc1kkg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5534867f42255e6beff2ffbdd583ca9c8313cf5a2e4b8b573baa8bd1716cdbe8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rro\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8fea52d73c5d85061ad7b79760096f2c36ddddc78273dbddd40725ff090fbf56", + "regex": "(?i)^https?\\:\\/\\/btc1kki\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "32317801934123e73817b57f7b6409fb2cb8b0d06d8c203098528fd45c6cc3c3", + "regex": "(?i)^https?\\:\\/\\/btc1gge\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c8abe7249f081ccbb6cb77e353abfc0726f12e87828075f53d15545cb470d9be", + "regex": "(?i)^https?\\:\\/\\/btc1ccb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c0a90ddf1f5d2fc528943fbe8f2c090b33970171245080409f205ee77cdae993", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "783005a8ecd37b93a4eed5b57801e2ef11a94ea3a5b7670258811dbef9b38930", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "642cd4d20f02dac01c7350c60514db3a897cff6449c5809dc5f5709e25ea6a5f", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3bef2f3538e181292e9c85a26090ddb0e8837ea83eb2421a0fd95426e7fb01e9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "35f78700f5e1b79592dd4ece2628e9bacabb42061f40ea0b57bc08e6e1361c24", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f7a0a314ce00bbc7a31eb598dd57d93d1ee2e3444c1eb00173ea4c486c9692f7", + "regex": "(?i)^https?\\:\\/\\/btc1rrp\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e461855997c6ce84b785a19230912443fbe9952bd537ad66b74e8df5e5803", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "87d8c0a4c78ddc52c29143359a7076a068441714974076fe97331c76c17373bf", + "regex": "(?i)^https?\\:\\/\\/btc1rrt\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "47514ae02f1c4398e8db225de79a49f3a0779ab31fb51ea82a3b155f47c60475", + "regex": "(?i)^https?\\:\\/\\/btc1hfr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f5ed90253c7f2dcc0a786a20336046fbb0a30ffa10a307c2c346d46aad740c97", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0eecc9b3d5ae94f2102096f2c6aae313a0f7a1d83c95e478d66ba76c3499584b", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "165b8f30ffbc101f99db5108c7058d465657e6e26eb4d7a79c9a6c38c2ad915e", + "regex": "(?i)^https?\\:\\/\\/btc1ghw\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "972f4447d3b111ff25af525e3566b10b6855d15d9f7e4fa1c388e9d6765a01e9", + "regex": "(?i)^https?\\:\\/\\/btc1eeo\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6fcf6cc1d307f598736c814402ba39a11604239d5a562c3fe8e3da7170b1b15f", + "regex": "(?i)^https?\\:\\/\\/btc1ypw\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e344d89e7d42362aa0c6dd81e1c2bb0816a65078209ec6855036e1b2e284342e", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "75773a354caed75837835690d8c97fbdf5a19f8b1ebe9d5b9e7b2e63db2aeb4b", + "regex": "(?i)^https?\\:\\/\\/btc1yll\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6406c4311bdc2924a53fb4c8c56280cb0cc9d17da87a9f643b0810562beafdcf", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7a7be52764c95281760e09117ae60b78f8492d7cc0225da345f7a4b89b5044bc", + "regex": "(?i)^https?\\:\\/\\/btc1qqw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8e08dd15c60a647fa1c8b6c5fc22f33a913de384c94980fe54e0b882db665d0d", + "regex": "(?i)^https?\\:\\/\\/btc1rrk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d2c76056dafddc5345a9ca615d333097025b6efb93ea482dfd70dca1c59d2d0c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiu\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b32c572c9beba98640e24cb89ab813c218a1924003c22c8f34bd60fd9e5805f1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ysm\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7206035819657d23ee81ba46fe889413b54224cc924a6adef9a8ae8724606203", + "regex": "(?i)^https?\\:\\/\\/btc1awq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6defe7ad76ce91cabbbb7db1966504115b9b6ba963028f23a093a2a29721d9c0", + "regex": "(?i)^https?\\:\\/\\/btc1ccb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3e6f91b84a82b5efa70e05aaa3b17105232cd43c15bfe00d914968f7d55eaba0", + "regex": "(?i)^https?\\:\\/\\/btc1kku\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "edcc9cb7caf3902424f9912e84a7d12441fd0c3e15e48de4ab541162e27db051", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab02e6839088d8c035152bb2cc4dd4fcf54b2cb225561c33640cf2c4bc0995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.6\\-2BK7HFyZ8c7pI\\-2FApisaYc79ykGMZWggjinRaggUhBDK9zKkmRBX8ubGlOktWjwS41YVebcTLKQeI5qZwzBScX07nR6LEi5nbIQRpQZu9vu9grx4yqcyHQPNCnzyRdD5IDzSNQIihCJeSdjtvGh59\\-2BmcfoZYry9Sn8VZlazbL3KW6\\-2B8kunTbZl09QsihNRmTZ9O4Uqa9eVtvssl8MeS8XQ9UpeeTuXFfvtf2FA9QEiMQ\\-3D9lNs_SYjXTSUK\\-2BEKF\\-2FK\\-2Bm22\\-2F\\-2FixXfSGzjwFDqHbzAXO4SYTog9pZ5e1YelFzrjpHee71NDdyjSnDdmTJdz6jxqB\\-2Bq3gBprTff7rjYfaphyb6borXcWfAC9q17uVZ7wB\\-2Bk98Yv80TXt7HxL9di0V03mTIMk0uT3p3zVAHZqaUqQizbfv6UuNJk73VPlrK3usV1oXhlwy2oOLABDLtWIunVchx47r9Rg2\\-2F11h1WqQNp7aFH9wvXNWSPDUe5uWmRy6XPn34aOWf6A0ys0EJ1SzfvXxG\\-2B1ViC\\-2FpuBkCsvNilTVuRJXu4JU0cEv7z\\-2FsOOF9ywzM7cAaci\\-2BFuQySdJjcDtjB9rEWdZ69EIKDnd2AmEdgkJSe53hTyo09QqJi28gu79GpVG6WWCWJc\\-2BMcQnNcFta2EiPZ9iO4LGHS6K\\-2BlviV8zpLDh138ijhdzkO4oFFEiDVTDLoN8PVnyRL54IW5eyxMFk0BHjA61Csr4KjnxQ1gqY7Lh8WBQ6Df2Qov\\-2FzeQn45k5RewMVAdlsPCEyJguyiPQnmDg\\-3D\\-3D" + }, + { + "hash": "25a4bb2a88319085b51c99de6e0048b74e75b07637c27dbce43e7da80c224c0f", + "regex": "(?i)^https?\\:\\/\\/btc1eeh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e7aee1da551d4ed24a8541f16b822193f62f732ab336a16078c84442053537d4", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8894508e0316fbc2883ecd7deca3dfdcb90cc1ec3e6e282e2edbc8f08d62a44f", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "127204f5a1d249e3fa639fa0c6b755c6674b85100f9bf3771f524a241a7a7e85", + "regex": "(?i)^https?\\:\\/\\/btc1ypw\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7fcbba5cebaa7c0f468e2767e1dc79679d64a0692336d16302b9ca930a169e5d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ec32b48db6b0418cf4b3a1e1a40106addd661ea43096d4244a7ac61288dad765", + "regex": "(?i)^https?\\:\\/\\/btc1rrk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cbc30c04356d8b8690437e4a7a6070f8a6c706c2aaf0ae01cd7d0d7c0f216e17", + "regex": "(?i)^https?\\:\\/\\/btc1ehu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "aed51fe1f01c1ace1d988c7ed874fbc0bc346584a07912895907f35cf2745c18", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2b0a3ab9860c17533e84a109cfc2f1e0b06fd7b1a80cb15215e283fbd4a9c173", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2e95ac9310515bbc0ee9bc822be4db3af944a92e681d6d224af60d5a511a5d06", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6652058e5266a75edb4b61dd7da1bce9a7d3c3d910de92c366c2e2f2d57a3d70", + "regex": "(?i)^https?\\:\\/\\/btc1eeu\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1d5e55aef3da59ae7351a2f224e29c367415bfb0773c527a4207016269b04d39", + "regex": "(?i)^https?\\:\\/\\/btc1awq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fb52051b89624c934a3fc4aa57ea0d88cb5de4b3d21684e39d1b2c3e6ae82270", + "regex": "(?i)^https?\\:\\/\\/btc1qqa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7e655083488ee6d283c4b342b674bd54662aae1312fe9c3eded84c9370f53c46", + "regex": "(?i)^https?\\:\\/\\/btc1kkf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4dc38c5eda4c0a29ee0682d5d6ca249a4272d0e8da71362c84292da33d3113cd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7e5189d68120e68545e97ee1b161927b70eaa8654891e4fec9121e23fa78c2ce", + "regex": "(?i)^https?\\:\\/\\/btc1trt\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0e00977eac973d21588286b85f189d4e85f5c7c520a06d2dba0c64dd194ad15a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "763174976a74a19833ec76b675f65a717509294dcf7f0a2e493e092893155ee0", + "regex": "(?i)^https?\\:\\/\\/currently2345675\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "8fb7fe61b57ae8c2d2bb93a839bc217cca4ad9df1061a2851c57288e113db072", + "regex": "(?i)^https?\\:\\/\\/btc1wwd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "faa4cd0c42f66a5d4600b9bb99325c0b987204806e7bd9bbfada8d6673ee9a7e", + "regex": "(?i)^https?\\:\\/\\/btc1ghw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b8186d91e77c21432bd89d148ce3fa0d7ddcc25e2f2e4bb64357f490d447e2da", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5fb5bcbd9d9fd0446d1b079139553c73200b3f8bcbe344f4c32e89b67827540d", + "regex": "(?i)^https?\\:\\/\\/btc1eed\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c51c213f76ec9788a211a5cf7195e01a85e70f74639781d787c1ecd7d27f9ed7", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "30b85f81785fcc8ff4df08ca1b9c2efbd93765548a1e9fe49f56fc1371c67f03", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "183955f498a79b59a7597abb06728c69f3f6a75976b24ea812835d7e1814af39", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9745ea0e3165adfb6935392d09cd0d4a594216fdf45c4833d4f8bb441e6940c3", + "regex": "." + }, + { + "hash": "90339f49e2ae254b824874485d01c3be09741bcbd91ee4e4ec48de83437006cf", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "49912fcd198b2d9cf7ca4cc76be4ef04c08adfe5c3692b5dfa33028baca92132", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b28fb29b2f88554256c1a3793ec290a11db62911c7b119047b700a5dc0f301d4", + "regex": "(?i)^https?\\:\\/\\/btc1eye\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "aff15e4ef75503ee0b2ce10f99c6f10656d279c1152f0666ccda49851f74254b", + "regex": "(?i)^https?\\:\\/\\/btc1whs\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "20b607d4dfb35d4a89a757a633820007a56377a90d9c5ccd71bd5aaeb56f5226", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gge\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1280375b22434ac71916184030b0a16ac170fab94a3175ac82e2f485f8ed9f3d", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f328916da2bee848544137e94d278deafc3973efce5b68ffbad3003f9518ecb1", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f432bb37852b8e6cc4005fae62c1f1a67dc8a4920cd0159c16e34c7bc313e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rro\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ec881a5b50bc88b096ea326098c89ec2776f2c67be302a86d192e766168fe87a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiu\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ec0c7c694a6f360222b075edd22e6a567dd11af8477813aeefe75f1b4d415fe4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e3bcb496644139d0cae64f26e88e68eb26b7cd5f03288d3ffe38a33db903e6d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bccd59177a4d87f386f89368821657cefefcfed5537aa310412cd37fc44e4597", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e26d525c76eb26e6404f256bcbad3eec71ade0c09ad2b0aff5e7bd09f4ef3d13", + "regex": "(?i)^https?\\:\\/\\/btc1kkw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fbb1193d6ac516da85458232bf279f8e1dd700a367360810f497289114e3ec26", + "regex": "(?i)^https?\\:\\/\\/btc1ghw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "eb12f31cadad19028d5796eefa5c4665e6ce0ea58f731664838f02cafcadc658", + "regex": "(?i)^https?\\:\\/\\/btc1wra\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bb1edd73bcee30dd02de0683d28f86da19c87b0155965b12ae200de0e0436280", + "regex": "(?i)^https?\\:\\/\\/btc1urt\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d9986ee381ab941400aab5111d2bb5b8de10ecb56a0b1efb50d6b92ee358703d", + "regex": "(?i)^https?\\:\\/\\/btc1qqw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e332a84f2132c18e609f75e1de7736687390cbde99985b05dae55f9ea8c8c91d", + "regex": "(?i)^https?\\:\\/\\/btc1ypw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5c5c8fd28f042dc748eea39e907749797d9b32dcc590bf0e2624d6de73033b62", + "regex": "(?i)^https?\\:\\/\\/btc1ggx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0f2cdd40696f00996b425acfe6aa130ca0e8248dec480d447ac043a71754e422", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "144a5eff9c66484ef648f2ecb8617aa9d12c7900aab17ded132c5adec4e034ee", + "regex": "(?i)^https?\\:\\/\\/btc1qqc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f69cdf9bfc38f972584c8058df3da9738fb8a4c10f85686f9bdfd758c838adc6", + "regex": "(?i)^https?\\:\\/\\/haslkaanah\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5ac6b8a34d15647d85eefaf65f35823926788246045c4aa966857eaeebe2cf3c", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2298d1887029989bf339c2d1091a902c8751b65e0f3baf37f50456e068ca0c69", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2b858603d419f2a597c455a9302361f861638b86dd725073101708c1f0402c20", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8f309d8903b92542687f002ff6fb2d1ed2772e3f227dbf3d2d393438af07c082", + "regex": "(?i)^https?\\:\\/\\/btc1eem\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c8e84857e91a0b27a849cd6d0c365c8244f741f475f89cd886b66195398d33e4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8c62adff68f46a0d4a5c0c25358f62d5d3f8c0f07867098698fe3ea78ff1c401", + "regex": "(?i)^https?\\:\\/\\/btc1wes\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "39fd7d8d498aaf22747d76263975174b1de881b173d7673128ea63044cb82a1d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeu\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e9eb497ee1044c3706eb2680283c1292c6e0972457a24e31bd9dc36be58baa74", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b08ff1eb9e2327cafb87f80c54827d2e5f070d3f9a30e6dcb6b054a7d83a97fd", + "regex": "(?i)^https?\\:\\/\\/btc1wyu\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8c21a04fecd7b6a3feb4e21c55cd87aabe34617b1e8bb5f1e084c1f42efd43ad", + "regex": "(?i)^https?\\:\\/\\/btc1hzx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ff1c629987820787984b748c927ecc8561e56456228d4a130f3c314dfaaee6a1", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2da108eb383c666d686b603b8db4a16eeea8c067ca415d63c14d32469d3a97d9", + "regex": "(?i)^https?\\:\\/\\/btc1evx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "96f7d3528d08f57c44e405edf5b72922c38e3292c07a1426d77367ad69a9c7b8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "12b9293c1c5c457b545a0cad2f915ea6367585444b3b94f01b55e7a17c7a0329", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e04eb67b26c4d21e87127ea281be95463c5a6c360eff58cad598a80790d7eff9", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c3d5b8c12feb36a640ada912a4c8e1d5c7c5564704d058d3dafb20ceb19ce5c3", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c2eb77fab6c28af431fd2fd2dec10922e013e023343efa854ca573b53bac93d1", + "regex": "(?i)^https?\\:\\/\\/btc1kkb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2dab44cf9e89b65c3448fa77a1dc9a5d7988cff160f19e777a0385ec1a46b32d", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e3c0e8fcff71d527dfeb4e11702ce3037afff242a78c1d0df1a87f83969a2010", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "633daa3b63f5d0750fecc40f4d141d7431c012bcf802a763a56a26f815ee4117", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c1ef4998b0c4b36496b3b9376fa0367d8c43119ddb264ab9c746a14693ad971a", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6ebe264b0290829052cd4880d51b9c01e70cfc4c1d986a9ff47173f0daef6e33", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "dee28df32ffcf8882c8e68e6be089317d8b6523c725f1685eb4b85337f101201", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "39b8a033628f1ec065355be020d78b51fd4767d426dac4bc7157a8cd7cda7b2f", + "regex": "(?i)^https?\\:\\/\\/btc1qhq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c455a6d71124d83c04fe8e568c503d78633f03cbcbf557cc51b7a0623787f958", + "regex": "(?i)^https?\\:\\/\\/btc1rrp\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "160fcd080d84cb10b6c3b098b44dd7099e9794df22ad90a64d34dcde36c7e590", + "regex": "(?i)^https?\\:\\/\\/btc1qqw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a7beb189d6f085dddefb3b4040e40e055b866c6597f25e8a5c9b4ac08ff964d8", + "regex": "." + }, + { + "hash": "ff38deb9b77690caeea58d058d41d7fbd0aa6139c744c8a6d1dc2f3423d1e80f", + "regex": "(?i)^https?\\:\\/\\/btc1qqr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "444a3a6c9b0b7887c2b9590bb2a6ee36a5ebb281490034db2aeb4e48fe06cf14", + "regex": "(?i)^https?\\:\\/\\/btc1kkw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bccdb655bb70a44700f0740abe35cfeeed6196e2586265cf62983fc9a14ea36e", + "regex": "." + }, + { + "hash": "74e630ebdede071bae4b20a5ffb5d436c64c67780f26d67cf2f44828237e27ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f0ba35a01f32b658f1360c106f5040f751a5a05e0663b4f0f88d7a80e1e01607", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b2bd6b9c09dc19f1339c0e32467d7dc0988e25bde21c1ce6b533ee8a1b9be81f", + "regex": "(?i)^https?\\:\\/\\/btc1ggs\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ff7ad29fda7dd8c03d06f0462834f8e3ea2e7c41879a64c1e6409a6ba67dae1d", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ce7bdb4b9f9275fcc61c5d4f2d66901988fd9eefa92ba1bfdcd8c5ea5634a4aa", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "24a2fc70749700a330b967590d54b3ded3b3958011c97d90a9cf8a501c5125ef", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a142a4860ddbefe270f11804a5f72b597d54c60a75a1fbf13e754cd168471852", + "regex": "(?i)^https?\\:\\/\\/btc1kok\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1a2908b472b101274342b2d33770adbbd5f7b01174830ac48dd7930cec812c35", + "regex": "(?i)^https?\\:\\/\\/btc1evx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eae74be89cdf470a74075b946c051797a2bfb9f8f74a72ae150b2afda94efb1d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1mwn\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9d555174912811fd51e29aede6b18e7aa7e2a39b985cfe8d3dcb978bce3d8ac1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7b50cca14945d73579c8c9019083f97a73dedc28df45abf582313f7b07a417b4", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a6cc3ffc798ddb1b0ce21874078ac6e0eb253217689803393f65c24cc6309c4b", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fa9e56da481bf550d40734a4eab57451b30fe80f57f72b35ad41d1fec3b24ed2", + "regex": "(?i)^https?\\:\\/\\/btc1kks\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "79886764481f8706f720fa1c10573fa05e7051c3f97ee745363bf377c2d2a029", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ccd1bbe9279913d03ed71b2d270232c080c05ccf1060a95a9de477ea0ed9f93c", + "regex": "(?i)^https?\\:\\/\\/btc1ewr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "eee4fcadeef5de8f31ee4c68f903c84a9966244b9c3fddb1b0b19a5f5b28d157", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d6eb3da23474e39a1dcaeb35034e819f1d5db704c31080c682c232933a48f3ac", + "regex": "(?i)^https?\\:\\/\\/btc1kkl\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "052f37287733c8daf0297f1206bd517118b1a984d910ce60086bbe7b6da268c1", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3a4e0808d0f06137b1be7b8a790de3e13de17f696b8c7a138c03cf00f160f366", + "regex": "(?i)^https?\\:\\/\\/btc1kkv\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "80d5d4c727f2428060ccc12f891b24f432cf3d548248de01b4a04fca33d078d4", + "regex": "(?i)^https?\\:\\/\\/btc1kkv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2117c7ef5d2cd0f9165c1f27e8768ee95ff6628dc652a5d92daa83e7e33fe155", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "87284eb8ba442a7e3cd40b6dcd247ac5bbae2d3aa2452f60af1815576a8045c4", + "regex": "." + }, + { + "hash": "e5582373cc6802f2994ef848c83774c705118862ae9638fa03fffd39f10d8fcd", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c90e2dba2ecad6aee7e67ed0852b1b05cfe29ff21f7e64ffc7939bce1ba48ebc", + "regex": "(?i)^https?\\:\\/\\/btc1kuh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b319f0ec7da1fa568c22365c6e8424e6affc9dad2cabedd39ed653232fc0346e", + "regex": "(?i)^https?\\:\\/\\/pinbo29\\.com\\:8989[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "6d59242be92e09596c83d2fb245eed351c0f0f0c1348326d7cdce28f5b674644", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f15d3cca40dadc2c084b3359389a5f8c0d64663c20fb63d14c55b27e5e25792c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eed\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "49570c772d8e6671f8234ed9f18532dcb197e68745ae90c6f3179194a46015b1", + "regex": "(?i)^https?\\:\\/\\/btc1ets\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bca97123365f300f8ad6387c378a495fac68a1c2f17bfe595f742e37d6ab7e08", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "57bfa1e28375be77f8f8ac4ba551e111a66021bd4d5731a7022bbe42be7d0441", + "regex": "(?i)^https?\\:\\/\\/btc1qqx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0eeb6ecaa0598c837037c8c6f80e88cb62df0823a897d1e18a8fde24a749e0da", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a023af9dd6ac66c7182bde96701d171314ae36a7d9eee516706a86b7106466f1", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "650e7ba5fbfc80179885969239de32e35c51c4eee6ed341d75f8a0a502f368c4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eev\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "192f21ba9cdd48b1df5c2cb7396d50c0f3e2ae5a428bee3bd2e4e2c7c4839f73", + "regex": "(?i)^https?\\:\\/\\/btc1kkz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c26b59ee00b7d04cc0b36a5f1c4ed44d1d4a9bb7a94d3f310088f0f63b53974c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4197e287b0ae9d0b866873559e01e2fc15c5858f6c786a4a064dde09ca6aeecc", + "regex": "(?i)^https?\\:\\/\\/btc1eem\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "040eadd779548548332c4f1bfcb476af926476aa80c0ff9a37cae5db48936c94", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eed\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8bb3842328114928b789a2c02e07c950ebf266753fa96f785e90bf719f8f7e8d", + "regex": "(?i)^https?\\:\\/\\/btc1ddd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4b27dd19ce85dc58ee839e285819c8ba1e797a91d52279e1bc5c00d58e249ff9", + "regex": "(?i)^https?\\:\\/\\/btc1yvg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "813c46f2d5ecd6e9cd9870f5aa9155d350bd587acf78667aa60b53399ae4fb5a", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "380d2dde0643e210495412867534f48a4b0c620658bd09c2a656e05e232f5dbb", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "cacacec5df3a460bd18b3f9ed5beefdae25439f316de79ef3bbdfe9ff4298cc4", + "regex": "(?i)^https?\\:\\/\\/btc1ttj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7f9b533d6bb75325f95f63b3b69bb6f1e8387d32c311e3d0002d0af4b531da5c", + "regex": "(?i)^https?\\:\\/\\/btc1whq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1a9837b235453ee05c2b16851687ce67f8ecb1caedb684e374aacb3aaba9796c", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3d4172a359e83e50969e1984ce1e3553a3c0998e3f30f92f9339f36364e8dc38", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bbaf7b1da3eb0f416e341e44a1b0cb7d3c7ebcf69c01133e59538981f73d797b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qql\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "886de6ebd2f607e31b8a1924aea4af92d4493e6b5c7edccaf2026031dc7a10c1", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "060fb2368756934382e48445bbb66bd1a29447883ff14598743fe348588d14cc", + "regex": "(?i)^https?\\:\\/\\/btc1eyp\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bd287b67d1a499c7db6ca4aecce2290be4a394a34c7661d1f2d97cc804fb4d13", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "104ca8d426c029279b8adf9e11d080f157b3f5b4e5e5cab8ef5b2a20985c4742", + "regex": "(?i)^https?\\:\\/\\/btc1wye\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1ad654de204746faa7cbe44d10616266174c77f61f376e694f7a0f0a4ef3ccad", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0d560b0e1f7e8233874ab22e55b34f7bc9eaa29758b78ef4775e2c7510e5a1fc", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9d877fec911b2040630e989e711505dfd1c5673a65ea0bdceb13db7e84c5763e", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eb4c07dafbe9bd4ce6783f63a68b4f7b8c168e9ca52c2f3d4a7fe69631c817ad", + "regex": "(?i)^https?\\:\\/\\/btc1kkb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b6d5685c372a6d088a54cd4608a6c13ea3fc44e9b1a176c21744fa71aa0e2375", + "regex": "(?i)^https?\\:\\/\\/btc1kkg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5df5c660329e86e739318874dd4fb78bceb62229359519e919792de95ba562c0", + "regex": "(?i)^https?\\:\\/\\/btc1eem\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e46af1684121310e61bf5b8e209f99ea081ae73e6f8affae6ba8ad98d99e3c1c", + "regex": "(?i)^https?\\:\\/\\/btc1gge\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "97454b171f431f6e0adf555e3e32ac66b707f949f31c5b26f2bd11dc2ed91f3d", + "regex": "(?i)^https?\\:\\/\\/btc1trt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3a97ef743662952bf89d6cabfac4de6a1f9d762a0f7676f3ebe32a6c52473a4b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aza\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2f6055030cb5b9af875aa5aed0a821dd7a46e8e40ccd93efcaed02866cd09884", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8f829a122431ec9ab7281d27239acfc5d601561c29963e081f62650d03ed8f4e", + "regex": "(?i)^https?\\:\\/\\/btc1wwr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "51b825a0f1961cf948de5767b5e788bea78770d3c368ad5f82c550bf04406267", + "regex": "(?i)^https?\\:\\/\\/btc1ahi\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e5548f1d8506d59a211d3b9a2e35d782fc71fdbdac7e12468e0de03043061c4e", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "46544e5c29d778deb7f56f4a4d3ed00aba4e0f430e0904aecdc2dc670e176c71", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwr\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "313d9cb9e0f7b6c3ea122b30647a0526649aec1396d6cb8bcd7c6d36b5a87a30", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "35f83399449733ef8eea55629e7fc6115f6b97a71f45d2a7cb828d252e20ee11", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d427cd93bb80c46d343777cf2b3cf75a64eae22de7af52b637612c0c8a9dd38f", + "regex": "(?i)^https?\\:\\/\\/btc1wwb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "68bdc5a6579858264c7c8d5d4b5238e5e7cdaf88a8e9254f142576709faf3888", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "71891d1f31ed9591d32fb37be0c43b9e55518423e43b4ada6d91eae3d992073a", + "regex": "(?i)^https?\\:\\/\\/btc1qqe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f7cf5d0ac1f4c285d4e74e82ef202aadc3cf938232babb95c1524bf2f9130aea", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ffa22dbd5956b1a2c001d1c0ee7716980b8ec1b9c30f3ab31a51bcb2c5ee2f2b", + "regex": "(?i)^https?\\:\\/\\/btc1rrr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0d3f17be5661f0819dde3406e12a291158365ab7ccb502f02348055ac120f306", + "regex": "(?i)^https?\\:\\/\\/btc1ggx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fd65729fd4f1457c2c0a49e4cfc1f2cb517d1537d2af64cfd23479df6f4aa0dc", + "regex": "(?i)^https?\\:\\/\\/btc1qqi\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d3aa0d15811466a574c3c1ac359117155d0ab77cbfef4522994a410ce615e7d9", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6f59b0c6839adfddeb2fa3120874d673268b9461090bf79afb57b8b031be62cc", + "regex": "(?i)^https?\\:\\/\\/btc1gyy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6ee5e0087475dcca2c8ad20b89c5cc1ed89c6618f731bab4ddf3ab8931ae1814", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8f8cc694758541df39a0cf32f30fc60154fdbd61b6c4fc826c223fbff1e57aa3", + "regex": "(?i)^https?\\:\\/\\/btc1rrk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fb2a09d7cec6098c1ffca858bd72228b98f6b029525d793a89ebe68954e725c2", + "regex": "(?i)^https?\\:\\/\\/btc1rrp\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "771f193604d09ea3ee7050f13d5e87b573b443d22c8400fc5853dc8a9b82446b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "3ef9a7013377d2102d9e410732ebb9877f68b9c9c4202b5e532fe7b29c8e42e7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "94f2ec5cc2231b5722e95e3a3796f33b2b39cfd764749d444be9ea8b7d961326", + "regex": "(?i)^https?\\:\\/\\/btc1ewr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e5b73a1f50f9352af74d3eb0fcbaee2ea1f8ddd0307027455294d908e07bf8e4", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "86338bac8c458b68a526f7ad7ca854c7d36f7244b10525d0d5acc1ee2555a860", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qql\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "64d1043c9285cb13975f27eaa7edb3bf7a882204c9f42e326312014367eb78fe", + "regex": "(?i)^https?\\:\\/\\/btc1ysm\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d09e338eca3b5308b9584e09654c1efb547177effa642f3abab154919694bc64", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4b8ecbca0b59993203fb34e47a634febbe84d38d14329e54ab9de0ceb500239c", + "regex": "(?i)^https?\\:\\/\\/btc1ysq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "889431a4f97fce8cc8284450a043d8d3b34da5c3d4d848e05f53cc4f34d34d6d", + "regex": "(?i)^https?\\:\\/\\/btc1ddd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a1cfa828a5220497a3e8bc67500d7a73e7c24c13f3493761709f6667937d75c4", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0c343046e07ad8ac661e9582d29e43bd7d03ae048737fab1412ca0b1c7a897da", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1a7d883f6325e9aa32c2217a9b132a6b07dbd462820e87cd3136648a938dbc1d", + "regex": "(?i)^https?\\:\\/\\/btc1eyp\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0902799d7d55efbf167afe2681078cd5baebd076a0e785326304cfa8f7d14db3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cbba853375da789a99dcd938115e15e70c4418f916c9525c3406a799d1fa4e51", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eed\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "eae949802ec48a5cf77e93a75891c8af9f61a194cbb91532dde9420432b11785", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5dd08dc44a891a70ffc6d6ce94fc204ac50142456346ae9d7fa631cd1442e3af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a4c7d2177362fc6042bf4520b320a6f10991b8af424a006b714f20b834553851", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "18745f9cf4d1ee5f973b56a7a55bbc396ee68e91c971922fe5c0e8986fe4cae8", + "regex": "(?i)^https?\\:\\/\\/btc1qqo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a374fb6e3ecaf83295cb499c0d60650ec519c45ef350211ab945c3d61063d962", + "regex": "(?i)^https?\\:\\/\\/btc1kkh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8d29e801e3e0629c4343c42ac8fdae95de036614a439f885148221f2485c2673", + "regex": "(?i)^https?\\:\\/\\/btc1qqe\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "eebb81dad80d34bfae656dabf5545ce1067303803518887a689785887c2f2b52", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "72579284ed6f606f2d4e59e8f81860eb1cfa028f3cf6062c758a02e3e6a13d1e", + "regex": "(?i)^https?\\:\\/\\/btc1wye\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "08c67566550c597410bcbbdff13740adcad45bf5d26955491c063d1cf51060b4", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6a75430c1ae31209b08b43b82119ac364e953dd108f244b6b8ae428d767d1eb3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0426bb86c1d4b4617e07bebb4c7a1e928a1e04291b4330db37f92654a831f003", + "regex": "(?i)^https?\\:\\/\\/btc1aaa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab02e6839088d8c035152bb2cc4dd4fcf54b2cb225561c33640cf2c4bc0995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.6\\-2BK7HFyZ8c7pI\\-2FApisaYc79ykGMZWggjinRaggUhBDK9zKkmRBX8ubGlOktWjwS41YVebcTLKQeI5qZwzBScX07nR6LEi5nbIQRpQZu9vu9grx4yqcyHQPNCnzyRdD5IDzSNQIihCJeSdjtvGh59\\-2BmcfoZYry9Sn8VZlazbL3KW6\\-2B8kunTbZl09QsihNRmTZ9O4Uqa9eVtvssl8MeS8XQ9UpeeTuXFfvtf2FA9QEiMQ\\-3Dsb2v_EVMHYRnO6LlTPmB6Q4IpKof4BGJ75OqBd3QxK6NFesIKER1dbyApNsPzcw5g99I2G1zWlqnYnlQIcEbpWc1NrRmxm23vfJJa2Glhhc4XrYttsgvZHHrKojHWXrN880\\-2FYubxLTiBMZ37m6kNDruhnGEINm8OWeUPthVbvE2F\\-2BA4IwG2acSCGdtE\\-2Byiou6GkM\\-2F2q0fOwohl3cA2aMzQ8txeZFnDaKDZmZrxyuysBkOR0p79Ui\\-2BnR97IuaMUfFvC2yt52zLCMJNhZ0JiULSO7yQ7mtrcD5sP1l8VNavT9xomyaIccNQ9mop4cBKYpIc2gWnE6irxaAZEjqsUfHlv9n4PAbOAxtZZiKxckrojBMTO4Px9D\\-2BOEdECd\\-2Bdc\\-2FR34sKADSgddO0nn7P71pyXFRiA2ev8l5YFAvUceia2OZxAyH9FMM5A08RL633xhREpspsonMOsVqolsBnVONx85hMgO\\-2BGkwDni9JpKWnNz0JN6EiGP9Q7kb5u4n9\\-2B45EfPXTOQO" + }, + { + "hash": "2e8f413501d1b72b696631f5697e1b41dc575e1d688e89ab79c6a5a6364df75e", + "regex": "(?i)^https?\\:\\/\\/btc1ebh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a1d573b48411f0945424103fa56cfd8ce4173961463443b11a954cdfbe0cee9f", + "regex": "(?i)^https?\\:\\/\\/btc1eeu\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "12d2f71b589b5d5d1a0f39082554d0868a2ef0dcfb524c768e0a99ab8c4d2395", + "regex": "(?i)^https?\\:\\/\\/btc1wwc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "83f868bbf1a0fa1701547f53280a6f61a1650f840796fc7ab36aa1ff3ac62ed7", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ce06fcbba5b1ef194fc2f3a7d65e75d1b9dd15897cbdde30731a14b74a973633", + "regex": "." + }, + { + "hash": "3b384d113742e23cc948ba82c19d8e1fe761dac5a05d70dca6d39249e59bb07e", + "regex": "(?i)^https?\\:\\/\\/btc1kky\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0c00dc23f005bbf7158fc0a13b501fc8914b523e99ede7274fa4cb4e4653b402", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqo\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "14e8c76449677cd992491fb8ca04248c8a61b532d3cbaa85e0a64aa5a8302581", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bbe46f32d6693d8fbc21ca432064b00cf9b6505ec9c669bbf5b1d2fe17a7b12c", + "regex": "(?i)^https?\\:\\/\\/btc1qqn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2a5d20a2e19683a27fadbad5d4fedec3e91960c690f600e7784d8996ab6cb055", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3404e586810193c42e49c5ee19d6a266be34c2b50d7fe52a997da868ef9f4dee", + "regex": "(?i)^https?\\:\\/\\/btc1kkj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e0df58bc7e6da7adc32aa62ed35f1bb33374ab73cc78233ff899d13c129778d9", + "regex": "(?i)^https?\\:\\/\\/btc1qqk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c86c7d53a9bc35e5b255746f872b0622b0993d231e05e7ee942ca78812ce0f3a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kka\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1e447a6426f94238c923786df430d7f752fee221dd200cab9851c30c097b5a92", + "regex": "(?i)^https?\\:\\/\\/btc1qqa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0eef8c6c4e6fa5088240fc4801f17da78df36b6342b1a1b354b972ed6cc6735e", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "af079c6c7209a058113b8e470ca8ed20898e1af00e89e1d9c4c0a72eb95646a6", + "regex": "(?i)^https?\\:\\/\\/btc1uiu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "03c0c101835820cd194c6e45512243c221b8bcaca4577e94123fe8a988227ed6", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d16b0c4a0daa30c0cd811b9aa41e16dcf4983d11d9f31e4d1e2bb57e64eb6b28", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "45f6286e1c15439b498e02f87e053a78a4c76336f452e78d999ba9e9b7721a7d", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "08940ebcbda3f540c22c5b2a1ffac2a9baede2f2be7848d618ceb24e5506cac6", + "regex": "(?i)^https?\\:\\/\\/btc1kka\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "19d9c28401dfbcac2038dda91ed85aad2e205ac8432bfd66869715e4e86fa202", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a9d32d605af6c8ecd8e20e32a4a781ae35a65afc74f6604e0ea800f15e001db7", + "regex": "(?i)^https?\\:\\/\\/btc1egk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b14c58983d2459b2dcc3b07cf623498bedc07ca52b61a23aa4ecdc9ba808e15b", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "710ee101045f8da410d2359b768c370203f698a0d8ff9de89462781f27be84b5", + "regex": "(?i)^https?\\:\\/\\/btc1urt\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7c890b06e45fae76bc8d2e591067f475c5363ff4b32222135b62483e9ef148f7", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "424dcb8ec9f405b384b0cd99567419f4d115abb0b9b07a04b7d9533e9ab8ef90", + "regex": "(?i)^https?\\:\\/\\/btc1wye\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "01b99516744e0b3b29da1f9076e8a12e6b7882a6ec63b9d91c74f6ef8effe3c6", + "regex": "(?i)^https?\\:\\/\\/btc1uiu\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f468ee3fce1778863cf5725e26350f06de78b871a83a532324d13646a378d96e", + "regex": "." + }, + { + "hash": "5994fb1300a2c19b7fb35062371f409bf9823abbed2dee1c2e99cb787106c5bd", + "regex": "(?i)^https?\\:\\/\\/btc1ghw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "eab1324ea96d8dea7e7c29ee6a0170696b9abfe438baaa47a91d2735af03c5bd", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b3c69a07ee1348660375d824c15e4ed307b0fd20eecd4ee6f314b79b0f6736c4", + "regex": "(?i)^https?\\:\\/\\/btc1kki\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "70e92ad791d99ef2f183fcbbcb64b61a21b423621083dbcc1ecbac1a5b89843b", + "regex": "(?i)^https?\\:\\/\\/btc1qqf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f954c8466d5086e959313993db0dfdc120b6e1ce291c4ea76021b9a523de07a1", + "regex": "(?i)^https?\\:\\/\\/btc1wtj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "12c7a9749013d4d44fb72f35c6a97346dd0f392ce455a93029ecbc5b99ffb465", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiu\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9464651b8741334f4fd013568c5b733dc20f01ca1c71166afe10b324130bb7ec", + "regex": "(?i)^https?\\:\\/\\/btc1tge\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "86221ae6c33d7943aea7dbeed5d3785975cae0f6b3ad68d7d213f3169a8de07c", + "regex": "(?i)^https?\\:\\/\\/btc1een\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c22cee65b870f4658f8b0a8df3ed7e29254b2f00f47035bf49f04589971cb97a", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fe6b59c3c40530eb8349ffa2dc56f6cf07388c6704c15554f390864ed178fd6a", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a12e279d138ab8613eff1ce70a378654f9138e381e369a1e4bf5edf19c3b2df3", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "30c9261d72e1b5a26a1330169a9275d7d68105a6a511f5c5925374d05a12e3b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2863c43ef193d91f33c87a01d0f51dd120281a0ea8ac0b09b55fe5b0ee63d474", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5bdeafda2bd3145659ccd56e2590ecfacefc7e3f0191caa21cd5e5c22124ac4d", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2a1952333b675fd5727533dd1d1229f6c5940c630f875fad84a427641506cc98", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "30293431a3cdcb3738d19f3ca2aee60970fa236f9ad7a4c60f46d442e88336d3", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "20726cee3134bebfd087598beae3fb1b46686b83abc52dddccdefcc9f882735b", + "regex": "(?i)^https?\\:\\/\\/btc1kkr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "09a5c9523f31e71abfa82bd22f0ad72c220f31f383103070a85ac1994dd0fd67", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "38714756ed74d1f81ad2de9bd1d83ba9afe8fd2039774d45e26bfbfd6d23f054", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b0e592739be46066feee40f6e1d9da40437f31ff3999467ab109c7c581d25901", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a281a865b99e512f0d956d786d1f2e80c173c3dee0541a4e5ff661122e883185", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gge\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "87230f718af061aa4db0fe9dab018d20737c59b9a3bac8a445c6f36c5214c3a8", + "regex": "(?i)^https?\\:\\/\\/btc1ghe\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "97a26ac1f8818a35d4a3afda5a902647b99e8b39108c34d72e366d247eefbb13", + "regex": "(?i)^https?\\:\\/\\/btc1eev\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c77ef49d446355f2b2d8409c442c06bd7408c4d010d581aa26140dfd05d0b892", + "regex": "(?i)^https?\\:\\/\\/btc1whj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5213bbc91e012d2de518bef2e465b88c4b80ce01ab32741a8a0300b6ee8ba3fa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqi\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4195c33e500df5b13ea1ce14e8c655c71ad40412f9803a7cbb8622441bf1747", + "regex": "(?i)^https?\\:\\/\\/btc1wra\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9c6a23b53548b5a7791f2f21eb937f4f62c3682c41a62b36bada13a3f03c7355", + "regex": "." + }, + { + "hash": "609d92214a610ecb3c375296d14ba303ac14f85dd118fad7abc791dc73a62301", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7cf231af5593e4a06940f768b00ccc609a96501b871ce3447ad82077a608c959", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f6d78966e319e7f60ae89dd6e1c4e9748d4b3ea017f20972bce49e49dc6b21c6", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "717378d94739e94e623167cc0d7b9343811484e7620005603184e404f240a712", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5eb22a4d1c5a7ab8d9d879ac16a233f3ea82d153532fe6313fc540cc29fd05d6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9cf8273cd395ba4c68d7573c11905a624cc498a78734f71fd5c6e4d271929e9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrt\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a73f83a944e2a07d9279a84204f55e25bf0c7bd0c273c2a7419b4632693920bd", + "regex": "(?i)^https?\\:\\/\\/btc1erj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "640ed4db9e059da6908a79d7037615d8f2394b79b541109123cc048752f9493b", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "729d353a092ef919c5c0331a01b4b34cf94f2f0646410e43eee792834d3cad47", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f42be344a69bc6a659f76d5a8f957d9ced546d681fb85ce8593854dc9956b59f", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8d9b197df56bb9bd88bd1da4df0f9fa71c1a0503416514600251daf782396c19", + "regex": "(?i)^https?\\:\\/\\/btc1rrk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "02191cbada7f3f5c3c7427be4e078391fd8f5dcaafb5f3ae7e37d25b1ffee0e1", + "regex": "(?i)^https?\\:\\/\\/btc1kkm\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3f271e517d50ce0893aec398e00b9565f4232dc21d0a8a0500a6050b52ca3363", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "24a2f55778e541327f3595f53fa56109731954e86904148713ef7d2f7df070a8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wra\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "61ffe1bcaf80042ec5ebb89655233b1c1f58715f1239d3c72f786c920a68b569", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c478b491c952606d26f8b9fbe7d48953238966c1b52fc10c1320e261ce2ebdf4", + "regex": "(?i)^https?\\:\\/\\/btc1urt\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cfd1c5c47ea53ad8afccbe84b93f7c296507d84a2e4b309ee067aaabb6be21e1", + "regex": "(?i)^https?\\:\\/\\/btc1ghw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5530b7e37a5fee9dd87d378a3fc0716395f626ee6a2576b211e0791c93322255", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "035adbcf9750878c871686c4fd2572389ea63ffb2a4c270a33d04c69b4da6dba", + "regex": "(?i)^https?\\:\\/\\/btc1wra\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "aed5f06254e068316d8a127795e8933dc69dcd241ff0361c1fd017af9c746a26", + "regex": "(?i)^https?\\:\\/\\/btc1uiu\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b16f6352a61f401bb476d6b602f40ab384063f0f24822e4462a35842bd7f6118", + "regex": "(?i)^https?\\:\\/\\/btc1rrt\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "76941b276896b2a840d815bd02071b242b5fd48d6d35ff54717348eb4e8d85d4", + "regex": "(?i)^https?\\:\\/\\/btc1wwb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "65f33481ebf14e777a5074880f3072b7fafb26b2dff731f6f2402edd9ff7d54b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1urt\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "141057523a25715e1b0143cf8c003fa39f803dc768fc248b10a30e4ecfcff2ed", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tos\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cd62b5278b59d92d3d4285cc83a139759d7e3aba08d42f62598ac888c7cd8e4d", + "regex": "(?i)^https?\\:\\/\\/btc1kky\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fe9488ab0544cb7796fbf9a199b91cbf6d29629ace8163ca1b361e37d49013e9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1mwn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "413a9875238116a666832227902cbc5af493883375bdbfc4f663c970269a714d", + "regex": "(?i)^https?\\:\\/\\/btc1kka\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0b302c7d67658bb01704e3aa5514a2a41216ef7be335fd2f749f5481016baee6", + "regex": "(?i)^https?\\:\\/\\/btc1ypw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "79332f9e27dc2b560e4fa9c96e97dceeb483bcb237bcbf5378873cebab934f9c", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ca8e09e7371ab00d2d62cfdd81ad1ff5c676e5f07ad0e6fc1e7a2b9ee5203f11", + "regex": "(?i)^https?\\:\\/\\/btc1kkn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "95a98deb711c085c2faef99f4c3306fefaca62a575be2d676b09cf023824a6ef", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "89e701c856a72a7654583f96ec8c8c8114a0206a974e0b4e07949f0ff2399d26", + "regex": "(?i)^https?\\:\\/\\/btc1qqd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d0dd1a2fad668a0cb02fe2a7540972bdb0b015e6d859b471c3d7675a6c028e3d", + "regex": "." + }, + { + "hash": "61536c6e5d441cac4f0351f091df22dec71cb3c36f1ed625e34122f4ace06b47", + "regex": "(?i)^https?\\:\\/\\/pinbo91\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6f5e199af179978334a9078488e0150f166a18731c77d636480080fa7f8a5fb9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7c0e5f56fbc9359440d125af17feb02871c63ca334c5c9760bf30308a6e24edd", + "regex": "(?i)^https?\\:\\/\\/btc1ysm\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f7509217c1e4c9b462e6f52b39aa480ee1e793bd6dbd42d093dc69fb0923c654", + "regex": "(?i)^https?\\:\\/\\/btc1juh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cb9d6657fc2c5b056488d94105082b28858cf40c65acda93a326b06381931fbe", + "regex": "(?i)^https?\\:\\/\\/btc1rro\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4537b12e62dc153159c016597199aed463a9bee757b3b0f8d0b1e272798b2339", + "regex": "(?i)^https?\\:\\/\\/btc1kkp\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "086960a73c8fbcb830012252bfe195901e1bee53ddddbec6c07ab1534929bb6b", + "regex": "(?i)^https?\\:\\/\\/btc1ggs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "07398c644fc86b7c637d4db00fe3a4a3125622d85146d4dca9a68c99cb2d051f", + "regex": "(?i)^https?\\:\\/\\/btc1kkt\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1a83826db0a420588c581dca833ce6b3dc3397bc46d03dab6a2755ed6abbca4c", + "regex": "(?i)^https?\\:\\/\\/btc1kkn\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f5d0564852d3f1e50fa53471c9f2732d0d243293e61ea52f4bee9a6a1fda457a", + "regex": "(?i)^https?\\:\\/\\/btc1qqe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "19e411b1b69d8a5c6d1dc34c763c325625702a3203743e40509324817370fcce", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c14e18580138810b57c557797c756d1bf59a7d9beaabc5938ea92cf0db977d3c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8419f2d935a6b67caf5c1257c590b2aae73aeef01cb1a9b2f087107660d915a9", + "regex": "(?i)^https?\\:\\/\\/btc1kko\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ef163c823ba1f4451f8a6ef4f915e95b94f13a7e5a56ad0303d485b85aa01cdd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b9a7b3e53aa2832433b82c48ae262aa786cb0760e1fca3d7e88db7bfb52273a5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkv\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "79cd0abd489831e0a9a9a83ef9dd8cc59b6bf653e35c5ac57e83b1c05f5ddc88", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "22d5598a3f1907aa1f994f8a6791cb592303d3a48f792d102b4f51858526db09", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rvf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9c8eb12b3f20efe3934962fc07065977e38c5918a4cbcd7294cf7ce28f17ecca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hzx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e6a06deae44fe757d43708c9aefefcbb0038e5656369e87594282ef3cbfc4813", + "regex": "(?i)^https?\\:\\/\\/btc1ghh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f87cd581533b055c5b44fd87a458fd76d220a36f370aa9715b0d8babe81d1185", + "regex": "(?i)^https?\\:\\/\\/btc1kok\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e0602a3136db6686f9f9022e6801fa978009b9de7020170c1675602f4a525ae6", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bb3de24ae329273ac4f18e74ed3a8886e134e4680e3e6afbe9e9c011de67fc16", + "regex": "(?i)^https?\\:\\/\\/btc1tos\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a0f8903ee544edddeabc3fd15712329f6f44c723967880e99b7b61dc02928d8b", + "regex": "(?i)^https?\\:\\/\\/btc1qcc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a38b78a701cbd8274ea352634289c90eaad17823aa9bdcb24775e741a68798ed", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "77a009488864add17427decfa43caa847e28369ae564ae64de1b7e98c1a4af25", + "regex": "(?i)^https?\\:\\/\\/btc1qqc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "90c5d73426e2398e217214f1cbc9586b4f952704e3a55e46e4e9f62a690c3eb9", + "regex": "(?i)^https?\\:\\/\\/btc1yqj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b5bd52219fcfa6264fb0c7e17aad710efd79b00a466319bcc9b1722260a2b8e7", + "regex": "(?i)^https?\\:\\/\\/btc1kkx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5c6174de670edc329b4336df8a2c1bdb902f081c0afc979fdf9bcf13a1acc676", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gge\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "94b958fb59238a13179bf95873b618404471c7d2d3bca04d7e0e1bd6d1075566", + "regex": "(?i)^https?\\:\\/\\/btc1wgk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "94fc06bb20242022de2414e1b9d03561b91659f5089bcc77f50b440b6439afa8", + "regex": "(?i)^https?\\:\\/\\/btc1asq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0a7e0ec1887d805730c11268a27e9f29d90e73d42cf69626a7451bdd13d384eb", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7aaf2773259e7f6b8a3a7bc0c455233d377b30ebeda96bcf5bf8f61a29217f1a", + "regex": "(?i)^https?\\:\\/\\/btc1kka\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "29e71c80012f0f319306c1ca61609e298621e276766674a0ebdfeb6b4983adef", + "regex": "(?i)^https?\\:\\/\\/btc1eel\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "65f394c2788a6f1a31fb1ba8713b12be8b5d7122995fd876ce78177443d1ea85", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "20a861c0ee6bb92fda92cb7901afec25e4273436062b86326f510edc7e13c40e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c1162eb1692191b324622e05d9242fa243a0251e290cba6089afe64103e2a95e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkm\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cbc0359bc216c2b79cdeb3c78f73e5fe15ce2edd8b915977cd8c24e55b6fa3b5", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "033b7b2d4fca9514511bc7f3b27cd1552086b0141bb7b89c1c4c4b9cd1883b86", + "regex": "(?i)^https?\\:\\/\\/btc1kkv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "aa8b4daadbe44ef84ee48a1522fb7d13df6f080a110a660f20b6957a3c0dfadd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f456ef791d707d574d2447cc192d7867e1af0d0b9c6a5a06def69366e5bae4b0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "79db0e690f7affa4c25f91fd1d85e68de109d2c47161f902d8959c5d4bb7b074", + "regex": "(?i)^https?\\:\\/\\/btc1wqc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c834917a9b2376c6dd14ad62fa18eb240f8dfacfe34a4ecd5452c9a724aff31f", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "394303ce1fb05e7fb9852845846191bbf8f625a4bd6b35a60d959682c2a7bcb2", + "regex": "(?i)^https?\\:\\/\\/btc1qqt\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "877da32f1cb4fef46a52d744125118dbb5a9178c2066cd8e29ca0d8c7ac01e82", + "regex": "(?i)^https?\\:\\/\\/btc1kke\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b0a59f9df82f02cb96096f40aba88e1b51cf6789d7518e81f8b6fa0907ca7a86", + "regex": "(?i)^https?\\:\\/\\/btc1rvf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "975c4bd2567c57ebfb7218097a9a5bf3d1ff754d283f4831c07339591540c34a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "26e5fb2faefa5d0197f14c0f22bd4cbc4b5ca03d64e027aec7b9ab92d8e83405", + "regex": "(?i)^https?\\:\\/\\/btc1qqw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9758bf7fba3ca0fd1f4199076f0fb5ebebf8872352f137be022b09b2c44436d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3ae8c6a38a050aedf14a3c222ae593a00829ed167b1572f20d3848feccf9eaee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ac7211109d647c8d95335aa342d1b5a9ccea32a9a08c0c7d754afa76d7c7a198", + "regex": "." + }, + { + "hash": "52109cc676935385228b1756f59f1ced2b1bdfd9c566211d4813a366e5b7942b", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "394364c3c78c78caecdaa7aad9a298ffd7726c0b2277927c599b9d00a0bd6eaf", + "regex": "(?i)^https?\\:\\/\\/btc1rrw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a3ca22e3c39d70c444d4e78ce9f9d5c319eedd82ad209304a7e974d7130c8b78", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5ee70dd90c7261c1992f499db61ba23e924a8f191ffa894cbe6635acb900c728", + "regex": "(?i)^https?\\:\\/\\/btc1whq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "68f5d2f552f1902b644d27199eb4b50390d28b0f73a46c87c0ed32d1e97fc885", + "regex": "(?i)^https?\\:\\/\\/btc1ewr\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "66b0afa5282f5b77f4922e60e9342f85e16786cf4528d31753c0d5f9ad55c8a7", + "regex": "(?i)^https?\\:\\/\\/pinbo30\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fd2d0a22a7ff6e6e2de5d00be8eff27b65bc9d176faf96740674ae6666780764", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "99cec88f8d5414b586b5d4301524ecc5003a94708c1e5264cde9f73120b92737", + "regex": "(?i)^https?\\:\\/\\/btc1bhx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7be4ac5c4f466522699eccae78c7f69df31ee520f20fc10de3c8a4f30eec3ed4", + "regex": "(?i)^https?\\:\\/\\/btc1ypk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5a803f2ae8429dd6985cfccff98e2c9f795e64b1598f0ced760fc0d51140b0ca", + "regex": "(?i)^https?\\:\\/\\/btc1yty\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "accaaa5f11e5ab97a233877ec76a79a4b9416a49ac166a2a22408253cf3bee21", + "regex": "(?i)^https?\\:\\/\\/col\\-claro\\-web\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "e1f0b57e23ba542bf5aafe8ba28a29529c068bfb42597f125b97557f77a79333", + "regex": "(?i)^https?\\:\\/\\/btc1gge\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4f402e1143c90b998addcbee01ad933145942ba2118872b86bf130b5574d046d", + "regex": "." + }, + { + "hash": "8b6048e87055682b75e59a7668ad047a8f2086a82d143c519830a2035c5bef39", + "regex": "(?i)^https?\\:\\/\\/btc1ghv\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4786204c0571d9f19b767c05eaf28f99e874da1d2532aa68b7de2e9509d00dee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yqj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "00d606fbc1af889d1ef26f1f897dad68980ac82b02148df2aadc10a3aabb32da", + "regex": "." + }, + { + "hash": "05d23b3782070c1072924673cc0fa82920d0577f58bffc5fde454028b4ab9b88", + "regex": "(?i)^https?\\:\\/\\/btc1kkq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f5d845008b9316841c5ab62640aab7c59f52de219f072b9b483796730c4752bb", + "regex": "(?i)^https?\\:\\/\\/btc1wtj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5c029187d09fe16b78ba2e796c852569a56cdc822bc2e59a1bf6a5108b139d61", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "25eecbd20029e83ba09a96176be62608633928d6589ca13bf565f801253cd6d6", + "regex": "(?i)^https?\\:\\/\\/btc1qtg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0013c20997f098485b001f94657c194231762f82aacbf6864509093590a6a869", + "regex": "(?i)^https?\\:\\/\\/btc1mwn\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "25ee2e2f511df29a2bcea64a98ce0ee1bc6eb00040e27bf2177a0d1d45d89f42", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gge\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a0942f6cd470b73846ddfc388c2e48dca1ecda95be30588ff870d64f5168199b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1asq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a37471b2fc445ea5840c8e7c44bed6026d3f3deddc10c406f88652ad3cd16ade", + "regex": "(?i)^https?\\:\\/\\/btc1qqm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fe6b97e8e810e5720504bb59adddca1144b25bdcbfa7c4175711e1949921f136", + "regex": "(?i)^https?\\:\\/\\/btc1vvv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "972f7368b1880c7500d1b2ebe9db52ab5ca69e201710ce97580cd716e948fbe8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "58836d40bc79ba3f4a434c25a94194b12d7145d0a259bec7897c3b69c9764184", + "regex": "(?i)^https?\\:\\/\\/btc1whq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e56faabd06053ef5582d7d8abe4e61b63ad7cd413a7d450696990ab462095e2e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "617d637c297976ff216c142aa1c091c73604b6efae52461ed19b39fe84b8f0b7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2e61a2d018f11043fd9af2a8859b5950742f5fb58d90c6017878afe69b5d7ca7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "90d2a5ebfcf9726c2e01fb815d8f2bcf5be913ddf489c234e9468d6c7bfb2b2b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3c18f217290e72cb04ecaf994d3cc85a8784275f15794c244e6ee8932249e6fc", + "regex": "(?i)^https?\\:\\/\\/btc1kka\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f064afa3cccf45b96d53bb28d816cad92f76ff9d6a24664c8b4a689f793dce9a", + "regex": "." + }, + { + "hash": "f8ab02e6839088d8c035152bb2cc4dd4fcf54b2cb225561c33640cf2c4bc0995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.6\\-2BK7HFyZ8c7pI\\-2FApisaYc79ykGMZWggjinRaggUhBDK9zKkmRBX8ubGlOktWjwS41YVebcTLKQeI5qZwzBScX07nR6LEi5nbIQRpQZu9vu9grx4yqcyHQPNCnzyRdD5IDzSNQIihCJeSdjtvGh59\\-2BmcfoZYry9Sn8VZlazbL3KW6\\-2B8kunTbZl09QsihNRmTZ9O4Uqa9eVtvssl8MeS8XQ9UpeeTuXFfvtf2FA9QEiMQ\\-3DYK1g_MbvkcDaYXZ1UBsYd7BHLQqsTKDQqkVlGmEgZSkcizD0Lsg8pwcbEO6k1XvvQCXzhIy6S5bpdf6vguYJegg8ZTWkEbA4F3UdhBAfumw5za\\-2B6d0qQaCaNZAh7XE1f06OFZs87PbDynI57xldnBbUalnDMydV1CIdRc3i2h1\\-2F1FMN2\\-2BTeFHEm1odY9X7sfNTx3K2xkwUxWpJUmWXGRK4bH8x8krl7iogscIDa5dz6uOF8\\-2BgPrMf50W\\-2FThjkblPR4LmxnYX5Nzn9rz7ZfSQ8nS6lvjHRi7dRaG9iZGivNxxlxffvKVmlZwVLgiO9F5ByQnCIri98CT700FfndBpltMn9bQfYBVpdKyJpI2YqEbTPrYuI4cLxauxNfKS2bMMGY5wjajKSZPABFtARiwq6JNxu4KrEWxJbGyqej\\-2B1EvJf\\-2B4hpEI\\-2BrvFP7De2oefMw\\-2Fi3ZcOt\\-2FPstObWzGik1pdSLAtUBb9fp6HycY5NTRGzL8pp5UfzvOKV1nB87V2QI826yfjRg\\-2F\\-2Bt7KOAZKmkvI3MXLemA\\-3D\\-3D" + }, + { + "hash": "56bb35e017ef5e808a41850a87d7d1a067bc18f55335f9556e7da471a70ead97", + "regex": "(?i)^https?\\:\\/\\/btc1qqg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "80791d30f672ff65c4947574ff96c8a3888d417961a24d16782cb47411de4ee2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1urt\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "006cf5d14397fb2811c2b3f1933f890bd63c970642686edc126b7a34ae972865", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kky\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "deb6fcb029de08843f4152f433177809f975aa087c4996a4c2f49495378b7470", + "regex": "(?i)^https?\\:\\/\\/btc1kkh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "353c406998ecb01622333d2bf9df05a9a96ca66da4eb819c033b45789d723547", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2606ad36fddd3ba36af14a0186972fd33312527a97969bf477bc2d4d79980480", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b196030e4b48a5dbec6a37fe515d9208d32879c120e0dfb15fd318025871d860", + "regex": "(?i)^https?\\:\\/\\/fhbfhnb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fcacdbf911ae33fcec13f1a6cffa1116fc73947d6d93ebf1cc51ec4d133bc33d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f4a0f47b990ce3f822b4939353d2c2fdb0dc34329beaf79c46a31fa0e1076d75", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "33e1e7c078b28012f496d1123f8eed90f63d5628deb3f3beea4837477cfde79c", + "regex": "." + }, + { + "hash": "833b5a86078f43e185bc318d95c77e4d9dbb4c76fa01abeefc79b3acc97c6be7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "212bf6221fd96f79b3cd4a664d6e6ccb4c7a2611502c50e5acf8a42720de3553", + "regex": "(?i)^https?\\:\\/\\/newvideohamster\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b49d7839b36cb3dfc5efa470295a97b8684685440accc30913272231af2a0b2f", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "97717d3dad5bf7203dd5062b4260dc30d7477ac5c7d2aeaae0df591867ff527d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info\\?SAzh$" + }, + { + "hash": "0a7eb839d471f6b8a86e9e72b6cb0d92a9bd213d16d130af7d6aee6f1f0842b7", + "regex": "(?i)^https?\\:\\/\\/saylorpay67\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "944679940ab160eb3a3c2cafe99d80cf56e8747960c80f6fa4854b0da807bc17", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e598548f04dba0dab1937b892359f1dab22ffc86a6fa327e787603f424218637", + "regex": "(?i)^https?\\:\\/\\/btc1hjj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3efaeca80ee86baefb4f70a80cb3f8815b572e47255378fbc6fec1e90e0aaa72", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "13a774ed4617aaedb087d0ded9d325a34483a09ac465d28ea0a92ba22ae9213e", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "967d3cdef101de281df832af6bb957ed69d6e97cf54d7fbf17a63f8eb1ce53c8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "161d01f1f49a50be99a94b93cbf1441f4fa14986701ea6cb07c62a9f11b98d00", + "regex": "(?i)^https?\\:\\/\\/btc1xtx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1c0ca04551522043c39bb81a35cd4faa30aeeca299fccd26f95164ba456cf29d", + "regex": "." + }, + { + "hash": "a7a243e5d4eb92d4c75c4acabbe8ed576e1432aca995621842c8828e70480350", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e629252f00a83c5f05ec8e93fc42bb0223fe593001c7c7e793a97fa56ae576b0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ad428121378dd49432dc31da7e112a8c738247b25200bd6d85c5739d887a29d9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9d0c137062882dad551fb66737acc80e8f18e7b58595102e527decab181929d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqm\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eeb6987a4998d7c15c86d1fcdbf4b9aa62a6ad06ede7b5631c53dbc3795845c0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kks\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "40ff39605c2240ad066f9542e1f652bdc2a62169a3909da5c315b9826bbea2c9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6092071121dc6e4cb2136bbe9124cf015f62fe040d688aa452460c2856087148", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "07668acf98efb30284424cee30302bb8c55fbeabfd58737ff17b2d2617708576", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8797c780a022ddc80c2bc7f574a6507ac2ba6edf4ab3144e9c2b4bf757d32f5a", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f8fff777990a315bd26ab3e57d34a79c2833f7881b64f6bfb4a0fd1ae195150c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3b7c8505a3de08d380df5e378750795e7a60862e36cdde4a7e15b057e952e0a2", + "regex": "(?i)^https?\\:\\/\\/hotclipenvy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cf7500cb007ff39d7207e1e9e574f70893d8fcf4ca0a8dee7528711387839c22", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "32e5deb087572412dc24ae2b324e6f871b8a5b274b9b7f60ec620ad462d63045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "fd8426310bbbeb6d68829a44cf24c4e0b9eb59eed5c49377886628efdbfd6524", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+openai(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6fab6f1c3a303031fcbb65a70c7217d2897f83ccf3435b24ffdfc4239f377a6a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5e1f222c244cc2e98abb6a658e423a615115af02a6e16adbe49549051d4781b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "81468a106b46a3eeec6f3195b4bfdc7d406c38a045ccd7dca36cbcc3a20d112e", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fea12e8bb977ba0a75ab8c3e78e487a2ccb0b8263a4f7d3b7acd9fd7db233a7c", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "96a68aa753057021ca1d4f3a92950cb0cf9d9932a36d372fc13d78fab7ed5648", + "regex": "(?i)^https?\\:\\/\\/btc1lll\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "738551cec21d893187d5332657fc230f30742cc1e1186d2e7e77e08dfe30c39f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "20495be3748d379f715090bdabb619acf6f0ca7ef96b17a55f9a0e954ed268bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ffdd901c08ba9b634049a8d60d80734089521b0eaaff4df1955f60dd517fa0c9", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6ff388af079ba10a500da99dd13e06bdd6daafc3430df08fc2c736254e594422", + "regex": "(?i)^https?\\:\\/\\/btc1aqw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7d06b1b295a6896f6067575280d0ceb0a97b60f005ce7ad9d378f67f2ef24daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "ec1c456409da3320a211beddd8901e1307153ec591b97455370dc77c860c6ad4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0fee07b3964f787f0306919fe1302f9008d3c548c2c7842f4596979ee5db82b9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "21cc2c77abf8613786a5add4f6d14115f21e25e1a7144b1df90adba3e21d22b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "702fd16a374a6776e26927e930a45d2fae2eeccf77579e79f8a0c99570d6d8a0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1323b9acaec39c5de762012baa223868e03f0d706c2bd6c2be38f0fb16a5913f", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e8e448a7277004b25bb0eb7b44e583f49b41e95d738a5511d843ea35ba9c263c", + "regex": "(?i)^https?\\:\\/\\/newvideohamster\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e2cc90953f96a8abef0e9b6c27eae498b8adcedfe44e0554602c8af2406f281b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e7d764ce52ed33c661e1cf1a0a0c83f1112ff2cb0296fb130883092ae3cff49c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a73fb77fa584a98c95e7e64f47f1014d4d07b37378b644374e434330a99ce899", + "regex": "(?i)^https?\\:\\/\\/gddrhx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "74566c07aa051810e326a1d9be1930568c82c6dcfbc5abe9cbd3f8f4c1aec9e2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bc2d6771e2fe45943c87bc01f9a72224821617defd0dedbbe3945ab15224f5c6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cd3d05283cff238a796204d9ee5fc272fd573a2886a21a932b0be44d52531bad", + "regex": "." + }, + { + "hash": "8fc24f5fe1d70b14707eb187063c7b070259fc8760ab0d5776f3691cdf52ecb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "d5c29be1df95287877b5c01b098ab736c52839f1d244b21726505eb8e0e867b3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cdbed3f74e65c2b30883886a4ce24e55463814a98c544ae27ea26bcd187dd16e", + "regex": "(?i)^https?\\:\\/\\/my\\-juno\\-com\\-start\\-login\\-do\\-087c1f\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7b02c8e7962c0a935a7de8d148613baf25ff7a48e6f804887858c807287d1661", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c6419f1c51fae15a52b6545bf47fbdafb2a3c6ec71cd1c91dd6676a50298eabe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ca4b8d658e1b828adc0250a3709b84e7821c395f4bd6a87ceefe1ed5e2d687d7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "debd1b0e4cb16788c366413daab9ec6223bfbedf604d485362e6219c2a0f0dea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a486c74e87dda97addcad589e16f823c3041bb92e6242956c06dc39bd20a81c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4a57d576b5c7c2e715a93af7e793909d6dbf95238029863d2e75f8de74138b6d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "75e22ec776e7d236290009c7052eec01f9ad298586da6328ac4edc8c3b077808", + "regex": "." + }, + { + "hash": "61faaf4428f964537ed69f5b93fa07327b0a5f617ff208d380fc20fa2326ae1d", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0477856944bda287ba65580b089ca61c9dc95a19279462c1aa8306510ef16e5f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "282190eaa4cedf73a75037809229241fe4a2ac64bfa96e1a4554a1fc40020492", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c6a479b30ba8bdc08f956287a20b5a6d311b39ce46bf0be798d287f397ec9045", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab02e6839088d8c035152bb2cc4dd4fcf54b2cb225561c33640cf2c4bc0995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.6\\-2BK7HFyZ8c7pI\\-2FApisaYc79ykGMZWggjinRaggUhBDINIIPTF\\-2FOZjxYx4qB86AklOHrS07kZZHKnxBQ5Fe2Q2jXW1WZ4MWU3a\\-2FvX03f7Wo8xtaiOFp6AiHKHM2vO65zIACx1rReK9ZiIJogdlkV9nHIbunCe7ynzgI8zIm\\-2BJRjzm3C\\-2Fu6omKtTwfk\\-2FHXCgRCDYZLtnP7SLvHFOT67SQwP9eafMczdkatKffeDGSTFug\\-3D6l0K_FaB9v4BYRiZw6eQujVyapWOPnOgYBPPp3QHypC3\\-2BUaqJF\\-2FrlTVvkxA39pNrXmROR\\-2BHSqBtACT955ePFU06mXBc\\-2FShpDzPe7ATX\\-2FVwKhxRrxezo\\-2B6x9du1R5hJrkHBO1aGVcBouVr8hlQwkQ1g7wKpeCr8fXGpJucRZ1rIPwJvN4CAR1nkfTP11yBpapYTnWdn\\-2B0jSoVEtLG5dp2prANZ8l2GJab0FfN0gPryDXV9Kq0WkFW\\-2FFZuZjhR0qOM0PaTxUuoCFGvewJEO6ibf6\\-2BNuUP25E\\-2FxGPxdtt1nMMyJLNubN1Bs46nGHI39QerWWHm0w68Uso6zf4exusvFGJyfRNLZqGwzj0k\\-2FhFwqdD6Opx5lx04\\-2F7P8oZgMG41Z2\\-2BdMq97gEgedMG3SNws3XaO\\-2FO6qO0Vx462oRy4Z7YUc6uLCCyqHuBMWdoP524n9sWVhcyNLC\\-2BaHjhMF9gev4A7pIkwkAIHHGRqXJAHL7XOUw5\\-2B2hrqJRqcTBAyqSGcZYfpfnXy" + }, + { + "hash": "24554c986c6fd87e7dcf764759a979dc08062b1b6f33c942b9efc32bb74648cb", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "449ab6296c1fa122767174bfd99a70cf9101fd9f3581e7544b80cbe3e314c930", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "482af6c92c0cac6c40beaf70fc8ac89151c746eb031655a91a391981626b091d", + "regex": "(?i)^https?\\:\\/\\/btc1sss\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a19cc38418d86b40467c5b36b258315cce3978db47a00e2718c8ea5a1ba3b96f", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "457b60cb50492460cf5a258320c2b9f9c88d19263d944927951208d5f84d4a69", + "regex": "(?i)^https?\\:\\/\\/btc1wui\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e33481599c09b99dfb5ae38f35200561e3e1cc58feb2bdefc67f22b975d0a23d", + "regex": "." + }, + { + "hash": "bfdd4caf68bb145ec01a6a9c9149c28b2e499d3da5fc468fc86b9f90d739a04f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f205e6d6f19466c5e3ae04fef3d2555e988b6842486a0b48485acd2a817e2672", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ahi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fb7c2381835abbcda48d82ef1fede79df636e340e7e23a55548d654a32ac1264", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "11564df0e217255f9fa8c02296706b6b51155fcb5f1ff2e11afd503a010f7f2b", + "regex": "." + }, + { + "hash": "3672b9bffcdbd8605faac30711bc7fa680a0694a4cc4c42f0e8d2471235aa008", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2689064177c96f8286660cf55c3e0d29f9987f08fbb1e0be90d089471a739f17", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cadfd725ec5b04e9c7d9394e46956f8923fd76ed8551aaad467899b626a2475d", + "regex": "." + }, + { + "hash": "f92c984a4131253472a46c1187f938b8bae3172be93d5cf81b6474302050e318", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c78205d35e48dd245807fb89299f1dbed130073d14a6e2aa54e9ccac4b05cb8e", + "regex": "." + }, + { + "hash": "be9ac7f49e67ab05dbb530e3c3474a267ce64ab92b19aaa39cc11a4643036f64", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "909af9886a590b7931143885b7c547912d1de451841a0588438eb8a18679fac6", + "regex": "(?i)^https?\\:\\/\\/saylorpay67\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "97717d3dad5bf7203dd5062b4260dc30d7477ac5c7d2aeaae0df591867ff527d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:\\?|$)" + }, + { + "hash": "fc735167a5a7c5b8ad9a236aa5faf0b8393a07a66ac817c3e30e971295d2cf7a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5df2cd8a73d44219937ab244245e3008f33695b193fbaea75714223f340f31ac", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "edbc83449517122c060bee60f3d58993437be6dee1e951b229df4e25548d18c7", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f4e91fcda5eb274af2b776a401c39ec1fb4056f92c421f9a801af4b702c22caa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3856d45e8466890c2b0c9d935da14e6b407ce99cf18874cb204c0166ad803d8b", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "56427fa67575eb8a59337a4ad9e346b18350543d57b3fdf13eb85ff575933e01", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f633731550c49b46722180d7eac783438a41199151375403a958874035b022ff", + "regex": "(?i)^https?\\:\\/\\/rdgnte\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "eab09b69ba939e7c9ce5629ac8d881d266467d567649087eb9cc258b8ef0ea27", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bcf4b3f9f0eba446d5b01a5131f2ccf7ff215d99b21beefb11240ee53005f983", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f8414c7326f9d2790b397e3d474a95ac10b01630b3a2be5834b965233c3820b7", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3203fdbf4cf03b61a63eec004af47b3f2cb204ab6994e4320e394188619075f6", + "regex": "(?i)^https?\\:\\/\\/btc1ooo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ee7b79b2511fd7cbfabd820b80dda6937fbdeb387c9c331d1ada0ce01311e30b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "0f3c966cb524891d9a5e79fcd1c52dd11d5cd9bfeb2594cd6369ac9feeda5164", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eel\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ad53e217abb74b240d52a46bc3df286214ba69b402dec7fa4ade7e2bc227a3e5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "72891317514352fe876ea9e9fcd2a72dea1bb039645c803166e53536415779b4", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayph\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e5d9ea898835da7f3911776e1f80f11b06b2154daa5e6a472e3f0412457490b8", + "regex": "(?i)^https?\\:\\/\\/hotpinoyclips\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab322839eb8fecce5d0d3d4b7d1337d16ddce74a16f8e55bc4af901260eeab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0f355d4285cdde91c8134fb364b968feda77d110def93d0d9c91177cc10dabaa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+unit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2d45a0c2d3876dce502390a60b539347d25cdd8bace29d6941e9b05eda704550", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ae0b0744724059e31fc4a0bf3dfdcbf34620c3336ec565fc8ddf1279fa869d0a", + "regex": "(?i)^https?\\:\\/\\/newvideohamster\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "328865ff2486a12dc77266ec7c0ddc6f6945a15083266675390191b212666716", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "89d03615688ef83e4c2b76fd0f78b5b90316f32b08ad99735690383b235fd22e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b8c55abf09bfcb1204ef9904891d350914c8946e042adbd4f161a64c81dbd256", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ed8ce79cc1a77445433445a4b86e76efe5146f36a20d5c3fc01317b7651f8e0f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "01fd7710af24baafaf2610fe12e8d1c6972e4855967d4b83d9fd7549ee73e8f8", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "64035cf5914adaf658f9ff351e160c6241649444ab21b1e9a5ff9d10058a2a4b", + "regex": "(?i)^https?\\:\\/\\/fhbfhnb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f9e49aa40e7fb8586584e7037f5cb7b9b81d7c9577b0c6e3cf7a47e039c74ca5", + "regex": "(?i)^https?\\:\\/\\/ndzfgn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2728ce4a6606e70e55029ef22a2c63a34ecee9ae7a0bda2586600bbe1a3930e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0eaf7c779de9198a0cbc92289a46e264abb060fddf4cbffcafed745e3d9f976a", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9c77c604d3621ad419f01eb8b2218336a2660a9885e7aed2ff633d6576db8770", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9d402414baa1660226f0ce339487f8fb2c6e260811dd4ae07aae2376be8e470d", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a6e3f2b8850fc2561f2a1236c332f044a7b06bd117dd2a55226c2f8b5872a346", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8c742f3038b9a44587030a8436521c35a6c050e7463dddd9378106e3f9600c2f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8e8df104314c1c0e6d69f361a22bdb4992c39578bf84743a078b62a809b929f9", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ezbscft\\.com\\%E2\\%88\\%95gzcemc\\%E2\\%88\\%95cnmmfos\\%E2\\%88\\%95ofwnuaawqc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "52dd29c9b833578f5f4682a04a814cc53fb05c4deca5c4ed66adcb0183517046", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "70d84bbc1be32940517433083f4cd83b1133ce18684f99eaa6ca1886a8aa9332", + "regex": "(?i)^https?\\:\\/\\/btc1hhm\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a11f82e4abb549e46a30283c95179d39af3c4f54a6ab9a22bfffa80969f1ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "bf656dc4449a727f3031033392c72baa543a98c1d033137e1628d04edf0f0c82", + "regex": "(?i)^https?\\:\\/\\/btc1yyh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "50852e6df5c0b23064fbc02aa88ffaed0c33b18ba06548af1bc3e14ad928272d", + "regex": "(?i)^https?\\:\\/\\/rdgnte\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "18f25119b5f2a638cf8710ba9cf595520ecee1498d0d0d002a5cbe521d08c8e3", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayph\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "99f9444d568ca28faabd9930e6912cdf61aed8760d396fa4d59266b5dadab023", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b4110cb5d029aa4ac9ee76849471039ff16440bbfb3ba6bcc9a4908c37852ad1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c2c34b4bcef5ec8601c35eb9136ed82b78dddd618d004f5ed35fd2cd7ede0b88", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9411066133f12b1651cd9d4cd0d0484bfe63b075c56dbab63498e049e9be6ff1", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "731961d29be1f51e032ffffb2747a9b1772af86781c6dc99e9f06d3eaafea002", + "regex": "." + }, + { + "hash": "e108d930424594323457ecd823cfe74e7159ab7666983829b2a49bc59a976d8b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "75562b386c09aebf76659de311054f161c32cf5a70756390a3fe037bc29bc6cf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "228cf390f459fa2dfe03efcc596e559c045d52580629926dbd41476ff287195d", + "regex": "(?i)^https?\\:\\/\\/fhbfhnb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d8e1d63dce65922292383f64ee4eada2639b5996658d099ce2eb9e4f171585eb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "69a065e9e65e1b518b6f0c494b85c1f0f2829207defc260d0eccdbcd1349421e", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "55b6c5399e32faeb69de31ee6c9b5ac8581ee6185ce88025e724f724d08601be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e4cb9dcad13c33062f8e994e8c023911495973c14448cfbbbe8d30e314053e4c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "aaaadbc80d47b5c5c008809d9359132605052e1fda021a20203d5dbe924dde58", + "regex": "." + }, + { + "hash": "d62cc4a7f51ce0fa1950cc366b5e01ab946abdffa103080f29ab27d877404436", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayph\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c3c39d94204017f837a0dfbf4d4f50c8331618a5bc85a39f7ccc739357eeca18", + "regex": "(?i)^https?\\:\\/\\/btc1hjj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "46decfee6a315d44c25e7cc11a21cc72c740cd628ee9a8f34e327f41a67baad3", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayph\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e56f3e5bb5c5c4df2fb0b52d3496acff991c08596c912064ea1beda0180afdd6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5da2722d1ebb094ebcb6849f81e74da46b7b70a89090d2bd9505e728fd97f18a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a281a2ca371dc420054390dbd3289398a8f3ab18a826c0f9d2d1ebcdd41deb33", + "regex": "." + }, + { + "hash": "b63c248b1019f3fca7d950e93278793a1d421862d47a2531e136782fff4bc0af", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "04645bfe26d0d8edaee7fcef8a19e41a5045935f398c776ed8476b71f314422d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0f7318614a5183ac3d6b11bb55a74599d3cbcfb6c9e8183998ed45817d6e0a81", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ecaf342b6d8aed41dba92cb6d282d8068f639e35f6293e15e0ff71656519b5a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e6e5a4e03d6e29975106cadf57d22738cd5a450db2e8b41d446799259acfd16b", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "22277005667c0bc7e50cbaf9565cf8693446a6bd329c9e809ded39e9d218d3a8", + "regex": "." + }, + { + "hash": "5e5547d74aa8227384e72cbd98040b1a8df273ab6aa4e1636303f7a5e95364ba", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4a384d0780577a1d87ddde28ef731872fb7ba29127f7d7d64998c1d65a0e9a37", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a366f8b651663f60c1e33def383cca1c49fa28e848e95be61ed871d19973b", + "regex": "(?i)^https?\\:\\/\\/ndzfgn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "364d3168ae46cfc5114e90c10cbef8642e6e00acf180c2098aa1c6e1d2beef71", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab02e6839088d8c035152bb2cc4dd4fcf54b2cb225561c33640cf2c4bc0995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.6\\-2BK7HFyZ8c7pI\\-2FApisaYc79ykGMZWggjinRaggUhBDK9zKkmRBX8ubGlOktWjwS41YVebcTLKQeI5qZwzBScX07nR6LEi5nbIQRpQZu9vu9grx4yqcyHQPNCnzyRdD5IDzSNQIihCJeSdjtvGh59\\-2BmcfoZYry9Sn8VZlazbL3KW6\\-2B8kunTbZl09QsihNRmTZ9O4Uqa9eVtvssl8MeS8XQ9UpeeTuXFfvtf2FA9QEiMQ\\-3Dt6lv_GFJpx7OX7dPEiFmxEDYy2NRt28b3Mt2Z8zsRfNkbeyP1XyZMJ602700VfhT5WEXUYWjpQ0fYQIaHTpuwB2bmE9mGc\\-2FzwxUR0cPf\\-2F1k5NoLSeTDpMkQRNrIcDhvWx8Y4MXoYnVzqR52ibNFExCjv7D099mIfISelTRa0h7IfcE6gLhSc4ZU6F\\-2FbBhv6l\\-2F68NoQHLI9TRy5sKPXR5Zwt\\-2BTrP0\\-2FA2iauj8rrWOhc5Vd1uvepli4b\\-2BU\\-2Fa7oSSxUgdRAbBmQMBOQk38P0gtoiRZs66umCeT4RqepzXnpknju6bcOBB2YTE6w1v2t7qWk7jI7usgUOcKAcpStbWFHOvXJl9\\-2B5QV82j\\-2BRjvmn\\-2Fw5C0J5QyfOfgpvefmGDCOZGsZCjmMAtTEiUsa6HDu8G5NMlYfDeuLddKuMYBHxeatpXxVLKEChbe0uIVq6YMTpbtx\\-2BbezCA9t7pW0sTOeUhceN6uvs82Bl\\-2Fgi2OvV94qAuOx0Tu4S2gglE\\-2B\\-2B6riullHcWC4usbuQiqIJ98t9lMR8uQPv7sw\\-3D\\-3D" + }, + { + "hash": "43fb12751c461fd06fcb6c95eab82a43b43f69faaa214dd99197f02e4700ce8c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "83be113c9d3fe1898074d55b66904efa01a263f64e4a9f36bc10e40d2326335d", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a1841e14cfb2f1027b507b757ae859b524ce8ddef17e5dfd0e518218d83defd7", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0c34fc070c496db45d651c9470183df35a6af572c1f5cd87de7b570d8cb14f05", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3f5595cd65619d3b9324e2a87b55b6d89c2bf0b044d9831d8b3b63d2f7d3a6d5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0916fbe2f3d3df902f7edcb9dd06f83048371496b33a2b1fad402c879f02001f", + "regex": "(?i)^https?\\:\\/\\/btc1aqw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5f687e0f5d22a8d0e38056ec554ce9493a611ad45dd7048aa2ac48bd2d999c3c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "72f086f004a93d1555b0177cf33d355e3426380d2595b1634688155c5ec871c0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eel\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1aa566f9fc75741c1661d9303ee617d92654ca41efd698e02a4e01046d9ee4e3", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b10b4fb21843c3f6b92193d3b5c73a9894060ffb58f1d6d81c79c6e32a142530", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eel\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fb3cce0d294642c78c16ef8b8d02f1d6b305c2b906fed8dba5696f5370259cb8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "474afce3a144d777c6b4ac0b3d12c69cddab7f329a539cbb7547203604cea550", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f4d82934958904777138b1ea07b89bf68c496babee42f33e4dc3c4eb8e9c4ed2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "308177bbe80db74a964635fd368368c19b6d5167331a7789d5287e8f3b3c66d3", + "regex": "(?i)^https?\\:\\/\\/hotclipenvy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ea556bfcbd0bae3b8449bd5b5fe2d77d92011b2fe1a982390d9fb61c590dac1a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eep\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "778110e0b37cae619a3a64c7b57d050fd803c08e962de4bbe8675f4c13b39659", + "regex": "(?i)^https?\\:\\/\\/segseh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7c06cf5d4acac4e619e0fc4212c58bd406dce00ce0e0ee137a7bf09ae6c754d6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f3500ffd210791879199ad20799a3e91f36970987a777d9919a5f7a3f3e5d1be", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f8c1619eb53610f9c80c3f99594c920f787f0072878dd287ae05fd37a1976806", + "regex": "(?i)^https?\\:\\/\\/btc1sss\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "48f0f19ad167ddd781ac9be7feaf056b556ca5956e789eab3da9e3b2ddbefdc8", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3e4594c9b187e75cbb5d0b920366825c552845ea562e0a2ea7ea8133c832eedd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "895dc60a901b2e2e2926ad82fb008f0d26d55fa2d567c66ed00139d6eabcff6d", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ed30df727e06924b81974d207e2fe2c570a8f1e3b46b51cda3e0e1abbeb8c26a", + "regex": "(?i)^https?\\:\\/\\/hotpinoyclips\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "29f64a0280a5d38b04ecf11f82b776d75d14842b29a3060678badffa36a41663", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ba18a5290490595328a5806957f1fc57d26213cc17fa7a9aedc2e6b5b6f17f86", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "dbbe14d761d94d0ad51ae58b7b2c98a70fc966423a80ec0345c7837772a67c11", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "91366a6f7678a6ba205ed212105f75b598476168b1fece84683d6d1a4ebe37d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9d3846b2e4dae7cdf1c8821b45d8074e108d546bf83b332784877db47b916bbc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "932ca3249f691b5547863fce31f923d55f19d683eee4b1cb3297d438b7429569", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3cb9daf7d6638d9023930ad89976554d1153fc8303f4afc28e8ceec9e739f379", + "regex": "(?i)^https?\\:\\/\\/jcb\\.cognytnm\\.com\\%C3\\%83\\%C2\\%A2bdgncwxcv\\%C3\\%83\\%C2\\%A2jgpnhdpe\\%C3\\%83\\%C2\\%A2ciylxwox\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "b6b930d08dbd951151e097e0bfb01d9dadaaed6f9e913a1eab36baa085f9244a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "84f76deba7b161f20925041c8506ee8fbbef8ddc43befd63e1400eb845ad55f3", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e38fb97af7bbc8fb94ade5e4fba3b7fb3f818ac73b5dca600968b4162fa4d2f0", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "37435e3a708cea5cc552bcb27968c0597005ee176c9ddad0d7cafa72601fe7da", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ffbbeedec046d45cfea0b7be50f8128cdd04744d758dd8e8805f8a35bcb16415", + "regex": "(?i)^https?\\:\\/\\/paulphilippe08\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c77ec0197e63afcc2f17194ee9c38bcedfe10778a66780a8a2f73cf2a2cd8e06", + "regex": "(?i)^https?\\:\\/\\/btc1hhm\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5a940043f03ca99bf630cedcf4fb2dba93b35352fcfe0df0c9abe275b8adbd90", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9540d9bd0b4599494155b0d670a071ec32698ae57cfe90eb77313ff8f830394b", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5205c2442beaccb3a6181004fc1f254c82f32e89466f57f012e150ca6ae40531", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "baec4e72f2166ec2fe42094a8542ee679854be1f4b8bf615b52383af9be77e63", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "51925e11bc01a25c708534ad184cfb00f0a154091b989df1082fbd001600b1c7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5c50f8fa79828408fabb4d6f3a9484554ab96f6c5de1939ba1d8b12d310c85fc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "71eb871bddd5975322a15df979ec11de99664fd8d0f55d67954c7bd4a5195a95", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6375dde3ba6f00fcbf1e242c571dd3b03e9ef6f6ba5510ba901dca2136a08d14", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqm\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "812d13a79f05f4184ab5273f60032f65a7562dbb74ad08f782587f174c56e7e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6b72c71ee37c177c6f0df6bc644a99ae9f90087e88b03097e951690b9a35b622", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e82d7a4f4eb0b4f312cd63eabfd93b4dff1eb26f1e46e2c64d912b1d74391488", + "regex": "(?i)^https?\\:\\/\\/newhotvideoxyz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c5ae7ba2adeb311d6f401aebfe1f29ad81bbef4d284f3d248090eeb1f3b1b803", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c17d72ce8b8c47aab3a75066aa4ca26a7e7887d170f6c93d15e6d05436181b25", + "regex": "(?i)^https?\\:\\/\\/hotclipenvy\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3fe2793125e80d0004202f5b3b6b7ce40ad2f9d24a1debca50a8e1df592e4aef", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e83d118fa8a1909294468cee1c7c1a9d936a23739da2330477b4c64afdfa90cf", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "966bfdc0820a6130d49072ff480762350f0b54b73e26e04d0f84c77159cf08da", + "regex": "(?i)^https?\\:\\/\\/strandweaver\\-codontracker\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ae9402dda47e071e11ac26332e0c7a00a7c45b0edb4e1559afcd3d78467bc852", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8454e7fdcc821a06ab470090d8fa41488d78a21e8d4496ae84f641dec0ac536e", + "regex": "(?i)^https?\\:\\/\\/btc1xtx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "efe63552199c8528d5a2f20626b47388c9970d8f5d481f9a284b93dc1a8cfd96", + "regex": "(?i)^https?\\:\\/\\/integration\\-5ojmyuq\\-wr7u5rkxok3ra\\.ap\\-3\\.magentosite\\.cloud(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "02a8f7135de2975e535084c0834a90e8ed14f15b40910ce274052c2cc04b772d", + "regex": "(?i)^https?\\:\\/\\/hotpinoyclips\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a6540c0cc66378f46b7ee417b6b2f484bd51a9f7438569eae99e0b61105d93e6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c2a31a58ffd750e364b44e03e40be30e16a5e96788c5ded788f085ed0a33aa0e", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9efd10812060f21e9c88cee357235c5f97797c1d064ffa983d60ab5ad75506fc", + "regex": "(?i)^https?\\:\\/\\/btc1lll\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9755372dec93deabba2d214f0b569170030a05aafb59f8182c8d07a0d1a9b3fe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "03088737ac6706c0c61ce65dbf847511df3469a66e1825c4ecf9e0857ed9a1f2", + "regex": "(?i)^https?\\:\\/\\/btc1yyh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ba61a3167b330c686b91cbb93dc58e26e29142ae9a42a13e1d0852966ccfd737", + "regex": "(?i)^https?\\:\\/\\/btc1hjj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c78b6cffd5f07aaef3324d0e50ae95587b52704c5df38bde776d57131517f155", + "regex": "(?i)^https?\\:\\/\\/strandweaver\\-codontracker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c0c9c357365d1b633f228e823c2356d412c5142e15e476dd4a84134855fe72b3", + "regex": "." + }, + { + "hash": "1a9f196c76a82b8222fa123f66f47c7bd5f8488c249163d1e27e4c6e0f378cce", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5c4486f6c00afb87e9d6ef506ec734079754a846e8feb4b14ae849639f13aca5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c390d05b90b953fd0f37fade6cb7a44fc1a90979869836256f6f90875a702077", + "regex": "." + }, + { + "hash": "b8185fc0c4529876d009f44f37ba7787a4a6e53e5ee84df8c6b55a3e1df877dd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "383745db8a8ad9724573372f57b37e83b57d73adac5b3c9e51b7d265515545ac", + "regex": "(?i)^https?\\:\\/\\/btc1wui\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "11347d562170089464a1d22dfb54242459c2c873a23876ecf0057422c22a09b9", + "regex": "(?i)^https?\\:\\/\\/hotclipenvy\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6d5998f3ca29eff42f50337cadcad014d692d0d460e7f9fe4f87b730f99dc565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "602b82034b0fbe88c42369d80df6d00fe4a7623b03001e2804b3d54149ca0823", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "017db0a443b246306d0d371ae83a5ed7ff57606c89c54e4aff6694c90fdee110", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b69b4f97746cef8135413b6c9b2479681d280526223d817d8bd90d894a9aadb8", + "regex": "(?i)^https?\\:\\/\\/segseh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f0e4af9451c408c89c38d26f44915b4b1e66b950f44921266887096eae794a08", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "d4a312c1ff9fa8466e1417542da669c7c2a3b30ceaefb8a9c00876bbd65ec23b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4a389f650b558412130ac072e42a91b4ae72235b02b64d8f4a5a8231eb264104", + "regex": "." + }, + { + "hash": "ff3030953a33ccff8d4a9c6703c622c701cfa95bde83d14e2c676310ec521897", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f183b80db04fcdb58e8e4c8d836a1b21dd434b008e35d3da163d10bbd44f2c0d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6af031d669e4be755a15ebe53bd356349503d762ec6e65e2c5f61792e601c956", + "regex": "(?i)^https?\\:\\/\\/strandweaver\\-codontracker\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "96c1dc94f8a40859e7d3fad6173d02aebc23fbaa911657a07fd5df5d9ef2eb5a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wve\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "762b02e9b7d97ed47df31f9e267be3ecccd51d9e6017b16cd74d16ede32fc90f", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3a4b865dee4481c1cfca14d9b141d0b5b4795848a9d5583ab8a793b7df4eeec1", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8e8df104314c1c0e6d69f361a22bdb4992c39578bf84743a078b62a809b929f9", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ezbscft\\.com\\%E2\\%88\\%95gzcemc\\%E2\\%88\\%95cnmmfos\\%E2\\%88\\%95ofwnuaawqc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ouhpmxq\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c9fefd22cb3ddaf7ad378743201c57d99ee45c5358bac89e186f0a3300736df6", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5fb674a2f8cc3002ee5bd92bb818996ae97319812f722a87c2cd9ea30723508e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "610966534296aed1d6fae03efc9f10566cabfc7039b34a5ea2e7196063ffc8b5", + "regex": "(?i)^https?\\:\\/\\/hotclipenvy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5159fc6834520f5cf27f5e8fccd6afb1651265dd03a99c43de175e104b611528", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9fd82a846e1d322c3cfe379fe6a58c198c1788a64f217f585441003b57b2f6bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+method[\\/\\\\]+d9e1cfd7(?:\\?|$)" + }, + { + "hash": "329da1d2702055db825fa78abdb88152859ce1c994ec1a78eebbc3ae7ba906c0", + "regex": "(?i)^https?\\:\\/\\/btc1wui\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4ddb8e9e04a9f6fa024c9b5237b6ebf444245d2de929da73839fc03329d9c83f", + "regex": "." + }, + { + "hash": "df4004c0fde00e3793adea8ced458118fe6f6ca03ebc9cff301af96d361220b5", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "13c8811869355d57f3783b73e56040efa1be042c895d7159c4c6d7d613a03256", + "regex": "(?i)^https?\\:\\/\\/gddrhx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a85ec8a1557a8adfc7f171fbecd5ddd873f006026ece33cceb046dd2c357b721", + "regex": "(?i)^https?\\:\\/\\/hotpinoyclips\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6541c841abd7bdac12818a6d40694d742fb8431b4337abca0e8f35e8ed1534be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d70c866e7e70ba57b3af273cbeb4c0aca3aa05378e31356aeb1069277d07770d", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0b44cdf568a2b315b61c70f90b41179a3dcf2d2ddaf3f5110cf1db48e49d9d11", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "12f02fe0f656174abebfe3a84a4fbd33ea60c9eb1a83bc40de8c6b72f5ae15a2", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5bf9b3e07f6b2fb03a0468b1291ebe3f780c6cef0d1ad6601feafbac92d8b06a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4d6c6132dd12567d5e0196a02f71b1cfd40aec3823f60bf54b2b094d3140c974", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "93b49d8ff526c57b982cf16ecbb9423dcd9a1bd85bd79c79b0559f2092080892", + "regex": "." + }, + { + "hash": "076c105309a0fb0157019faa1ad8a1846e2f6da2dc34292c8439cb53afcf0946", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cc25d334532d22f91dce342f3dbce8d03c68c5c1a22eafc1e3914a25035f31b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "c220b79daffc1920fc983394331f39751293428c9fd26890462752afdb60175a", + "regex": "(?i)^https?\\:\\/\\/btc1hjj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "76695e3fcec6e7f7e07e7e4f69e55e41aa503eb18bc954a636d9e96938193197", + "regex": "(?i)^https?\\:\\/\\/deklaravimaedslt\\-overview\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "cedbfc2e352a24d7a4d272cd2532c140546b670593c576e06c20475cd862c02a", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayph\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b460a9840d1e066d7b704ed8242f94d3e68e3310f7f30b84ff8f7c6381abcd4f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0ca6af1cf620906696b26662b806b021bb2c8b874f06e274dfb0c89abbe6659e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "ef0afb708a52876050fee04b2789b36182a50ab679d6100ffc9308eaa725a0e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "18440f4af559e85eff3c5a4cb390d0f353e796b47286fa68d20cb5bcf2bb5781", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7e814a585f0731ab30bfa442ad323ec8df0100fa264b141dd1794a77e246edf7", + "regex": "." + }, + { + "hash": "98e58875414ef15e4803a626a5db97b85d4a1e9917e9456097c470ed0423b9b5", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8a0b5ed650ff93a353210bc11b802b42b283ea967718037130644750a870fc89", + "regex": "(?i)^https?\\:\\/\\/strandweaver\\-codontracker\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "483ce33c1c886b187dcfbafd41eb1ae85528fccab4bf6777e55bc6d81755c33c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e57d97480892241739777033b58f9ed6b3ba1cbeacae49c48394fa5e698af00c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d805710e44b50c8e0ad3fe6a1ed151316e5f50008d8af7f666a3ce6ee5397f4f", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f62943310e4bbd92d378795c3703e3536f88f62911c6b8b287d93be14e8150d7", + "regex": "." + }, + { + "hash": "2c89c0456cb5eec88ed5f39035aebfcfae94e06021667967a97fab8db59c000f", + "regex": "(?i)^https?\\:\\/\\/abcxyz66669999\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "22d410fde33083a586389f005841c811bfc65d81e4e73ba5191f4e1618a32898", + "regex": "(?i)^https?\\:\\/\\/rdgnte\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1b9a9c2cbeb6fe3553654f97b6d13c5b23df191c3dfab782dfc05f48b4c81ec1", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f41b46793ac7b2fcc16067ccc74ecbdb184aa3d73f67dbf3122e0cbae7b33d14", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "12a6b9c5b64a07d3178b4f0ae5b60b6e1686a10b577f8eecf0fe40613330c0c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d85214ad8ad9522e29cc4c06271ebf6777723727f1cfd8faca6ea6b59602192a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4ad70a0d4c40e6c9b905d5ff6831efebd15e7ee44def9d8130e99e90884802a6", + "regex": "(?i)^https?\\:\\/\\/rdgnte\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3969e6f8b1c38641c6a2caaca6f6ae80afde64fc990669141fa9e98d2b3cc6f7", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "792061dba4533e4008c24b287c866b4ae24f7a55ef3407ff867db601fb2f702e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "11c0c7003ec34ffd8e168371b76b2aaea890ef7a62b2799e44d24f310486a59d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eba34da908106e6f98ce29ef96110e947893d2f9d3650e21bc9b4d994ae24ecf", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7da007367ce97a41ebe5c235d0a4b0679a173daa19d75905bf98f5a81c6a91f7", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6f620d42bfd65a5bbf333d796af14f10e63348ab817d597b3ceb3f6abef3d145", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a6c317008f4300a9e918759a3a3c8cedcd3a712318f6d82e6fd27d6f8557a1bc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6980dd8493e511009d49a1daf22625f68040e7417693e9f2a2575abe59e5e4b9", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9029063f9e5242097766c4ad149b5bf1496bdfa456897f9ba5d1c8fd621c3b4b", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c834cae9788b5a566ecfd520a27c1073d846ed120a6155a351adfa64b82411d7", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "49b7f33a75b2183633ee989dd2b0037df40394e307680a175ef3b44ac68b8f6a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c017328d6bff0a130a7e26c9a22cb7d94835ef6ed4287e6bed2b058c4b00d00a", + "regex": "." + }, + { + "hash": "aefe78299eee0818e1b3f1edd4b2e4f8734d08cf003da6e262213dbbe053f663", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6d9a27952a792b049804c727043b3036696e0c94ecf609617e22e79fe0d17601", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1ee5917adec7cee8da2904f0521178cf8b2d95e024a47b677fb47d7e3e281515", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bd335aeeeb65410fae69423786692a61a2f3280f2169a229fdfb507ade5ad40f", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "546db23f7a6416936e574b74139ff6f39daa6cef51d9aa0cd97091d93c4682d3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kks\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3b6db9c75fc4747a9112334bdabcaa1c994d8f810704db8213d27791ea5d6d75", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "57bf5f01c3c53adb15347e6db6cfe62f1909697f5460733fe96b9ec589e323d4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "70bc3ab5f28fa6afa748995c0f60fd0c358168b7b11cc5c00a726990d59da75c", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "39ccec9b8445e2b3f6d5b2209328edcd741a93a71debe40e5901032169ee1695", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "763bc187adb85f0a6e0bea77710aa74cb6a1b7a605da12006165a806a3826fcd", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bb495dca385323f49de925fa34f5fd04ca62b781e724fcdfcdf330ff682b86af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7fee5bda65e98b794160b32f445f92b286b997959c042412229a609d121c544e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4b4c7adac85e5692353166daeedc1c42548f2faddf8e22247836ee9478d237b7", + "regex": "(?i)^https?\\:\\/\\/btc1ooo\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6d2fcc619f28d7078d819a4f4c6569869ce8f401ef9f0f8b3b13ee8e8e590cc7", + "regex": "." + }, + { + "hash": "94012f1a64c6967b83f66ffeea2bee6decce2747010ebc3dc834df73a0e1a96a", + "regex": "(?i)^https?\\:\\/\\/hotpinoyclips\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b17fdfa5568c40abad77b7980fce98215dbb7d38dec1a384d012d126af01a435", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f65dbb3de94a18553135afd1d6b5562a6fc365ffc59cde00c4409d8731565ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "2de6a7b8eac4e2352b6f17c00b5d2b87c8e01e59d6562b14ee8fc4912a32a0c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "8ad4ad33685563e6a8fad5b39df10bcfd8f5c9a96b5b4b445534664cf7fe8a9f", + "regex": "(?i)^https?\\:\\/\\/btc1ooo\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0f350a52697c4c6810b9d5f208233a630e266eeead9a1bee78ae94688d95539c", + "regex": "." + }, + { + "hash": "37d4ba25cd7c7fb9d3a117790d1955a756c8b95dc2dae9eb3bc3ccfe7829bc6d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7706d7a99a5837b7ed111c514964607edacf82919e5ae0e7b6afee919a456220", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "03181575cde68b7818297318675daa55e8d5f0c709208facd2fed6f6756f474b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7a536bc779599c0c542e7df627eebcc9bc892834704ce9b65932c503e2dbedf4", + "regex": "(?i)^https?\\:\\/\\/fhbfhnb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "550ab6d999059f0f743eca4f0d2e811baf17ee5cf1ec6ef2f556d8ce1cccdd96", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqm\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4cd97d2d16666c711c6aa00818b9f4339768ff81b6101336025d8d513a064318", + "regex": "." + }, + { + "hash": "8e336e6ef7c6eade570937b391c62686beedc2de04efdb77ae314ba353a251e6", + "regex": "(?i)^https?\\:\\/\\/saylorpay67\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ee1e14fc91490b991647b3c391d489c8f3cbbe4e721d63cbf1f2cfb1f4866024", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9673cb7d7d8850999f20de899bb3b8819b791d2743bfc48f1cc258fe389721b3", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "33cfda482233059fe64fb3248d2249fcfa6c97dd3fc2563ab420b616a2de383f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "df8f4ed07e63366dd43fb2b0ee992f9c6be0ca1e213bc8c39eb5bdc4a28abb59", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "54f4178216899246c2d0ac915c7e2d48863238d847e67c5e6feccda4fdcce2e2", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "762f2681f3ae59624df5c0ee46278e2ff89463d929d15081164dc4d26380ae98", + "regex": "(?i)^https?\\:\\/\\/btc1wui\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "793388fc7c248ed11622683ce916363dd4aac48919782a2d3e57f62b5b5c5288", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d87a1c2d38da009200b39c5025942b60b53f60af320af5183b0bb6628c1a8ad1", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1e65f9008a984e963849eab11aa878a87c94f8dd900fe4feb02f03194b391a6f", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2c8e5f0ab4ef2ec2e6e748973a99d1796a7746a929b856fc8eb4f2e5a14ad0c4", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f13dbe99bc0c4839ca2ebe8a6841bf3c49bdf8bec91ea184ee5258c033e73ba2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+E8wTjQpqN3\\.php\\?gdwr8bcccdfFcbVyncccgbcncf5LsfDZQcbbbbq$" + }, + { + "hash": "c8359d16c6d7d294f72229e66e9128c5c279489b2bd3fe1b4e6b44242275bdf5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d49d719ce0a327392c2e9e15440a7e272efb2396b5e3cff6abe8c66fafc008ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+recover\\.html(?:\\?|$)" + }, + { + "hash": "e0fc61b266a41b6e3f6d697c20409ef60831946eb1d5ed04475fa89982eda616", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "96e5bfc4ebcbdd3de008927d3f9defe4e17c64d61c7e59cd7efd5cf06430e7ef", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a2a4477eacfba2ef5e51c8a0c52b92eee7915f7210f02cf4bcff72c4c2440aef", + "regex": "(?i)^https?\\:\\/\\/btc1aqw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "59222bd43c50ec9d9157290bd510b865b191583b19b659c6da9a907aed5e5dd1", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4860ac1631ee3b7b44c80b89eefacc558095d6157a2203871383f98a83113fc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "0baa0085d7dc94cc6a4216705ecc83d6e0f3e192ae636762bc2410acfda60bc6", + "regex": "(?i)^https?\\:\\/\\/btc1hhm\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1fa43c554df2f28cbc3b636b330f39a125b1ba9dcc299bc810dfeb1f0ad29d79", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "20faa01b210730cdb2296e2978bbf3304673a17cd2446cab1e41d17e0df4945f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "289677b8d43de533e65125091ff0e96bd7442985bde7fca4ffc936b4293c0827", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0340a806fc1bcf9d8f98b4157a784b6ca6137d1f7c689e6d2b1c199517919b2b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "14cd75ffd92cf7387ffdeb7232df59cad3d7a78489579240fa7f490f506c94d7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "40468dff7482033bf90af626d9b8533d0478215468c6df59e5bea60f005542b3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8fb34893245f9b0d7ce2765e642fe4afe0ee6935005f8f09edb7fc5fe8bac000", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3a2d2eef780bf399e408d34f9427178c8afff730603d801f4b2fd49c196e2a75", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "628ce80636559f687423baabae12e55e52d195939e18fcfa2a57dcf2665cc1a8", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a746e63e4424af24ba8617c79091458d9681becd8c3fe65629e457e0704b13e9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a7e2b286459f12d2b37e599a3803c136a590351147249fbbf600f55bb78981b1", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "642e59b1a6d8f0b481cae107894aff58e54c813e7a2144f60fcf9f2a1d4da84f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "61536c6e5d441cac4f0351f091df22dec71cb3c36f1ed625e34122f4ace06b47", + "regex": "(?i)^https?\\:\\/\\/pinbo91\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "387081ad813830f2eae12336c94820fd258762d17e71e48de4adfd5d6e980474", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "10b97c9ab54c51f29af7d2b48d4a71739f55d88a3a7697bc7d7a5029d96ace75", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5bac71a54ca2ee1dc6c28214c6128e382a39717edde143653b72769380f522f3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "338930e3994c48d5f6d8ab8aeb7816d892e2fd3233a76ac1c51ae2d462a3ee27", + "regex": "(?i)^https?\\:\\/\\/tjnrr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "eaea292bd14d9e8b2cfcd7c6fb27950f3a9a4e40e5a26cb522988723de572805", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "69c19f536a9aa7ce208e61b655b6eb73d76a29f128df3ab89123f81f754e30f8", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5779599a3f977d13f9fd92dba75a9b2d99cea880353b6b408ad398fe88d626e0", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1f393ebcaf371e9d58491f3eec512aef421f76af05e881ed8d5a1cf735ff868f", + "regex": "(?i)^https?\\:\\/\\/btc1sss\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2349316297291f4859eb87a654b1cd4413232a70808a8d294c3bf7a5371b7fd6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "92d8a0cf6ad1d9623646444e9afcafee6c148c475e1d914cbaac4ceef6b84879", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "dad562e6fa6a18f037b3eafe8343224f91375bcdbe1de6ab25b162996d265f09", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "99477f015d99223f60ca50bd50d79cd05bd8e95a23caf775dddbcffc1b503591", + "regex": "(?i)^https?\\:\\/\\/btc1lll\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1b999857190f579124598d5ff8a72ab4f1bb0f6e835bf846a418fdf4bc261640", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eel\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8cabd89c5a054afcea7764297f9abadded7ebfe35715aa56bfc85870df3fefb6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c60522a967c6ee5156d684f23651ffe2593687431ccdcd21abf7e9d930a282ea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5216d5778b02860ea618a6450423d3a6138342642284eba5b55d774800552135", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d657f3d8077c381e3b73950c29b7e6d9112790cbedbb063b69e55321241d7d6c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8552a87110ca5706d62113ccd2df444ee8169ddde04efd83b530d6f46bd48653", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e8fb45fef918bce60f5f4c529528d718ba25a2b58c7904bbf28874cdd14902d1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "451db7e86ee09a517235e72f15578fae8b9981b15fc684f8825af105a5f37f5b", + "regex": "(?i)^https?\\:\\/\\/btc1xtx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c859a5b648fc934a98242dcf59d79542581b96811ecde65acd951f96f751d0fb", + "regex": "." + }, + { + "hash": "01c8b1ba3c176e47df16f7a72532886a7759140b001e9cbb0eec70f38f3488ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f3e9af77046b095eb7d3feacf420e8a771b6589a527e7bc22bbdd37af1242c5b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e0fd08c670de29d08e4290edbb102b0524db2c59fa9b329fcc78310b23e7f684", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "028e01d3df1ad8db235ed9523b16897a54453cfea3d23564ee7e1b409cf74df7", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "6f6e78e43177b514a1fea425b2547a90016632cbc7f1dd2cf51c90c7e033ab9b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eel\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6b4295c60b41db24b62e048c800bb11bf789ffe8d76620f03e9fe570df9e62d7", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayph\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c74365f90fd1c33a980f5c7e88f2302c25fcc8cbdc8bb98fa4fabae607ddb345", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bae36f3b441eb85db58625564ad832ea8beb07a0e13bd3e02bd2853c6fa3ed7d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "56cbe2723b3852c84152a0b51968347db3d754c1df875fbc71b5aca92d74cef9", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "13d32e95b6c85aa222ffdd054255c7427894869aa2515bc1c455959828040bad", + "regex": "(?i)^https?\\:\\/\\/segseh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "4ea208b9512e75ff1a22429eb1eca249d8a3260714b3de7936b3c26c53bb7f56", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4bfef676a38f7071329252d28048c3289ab7581618bd8c78976f6156513c0fdc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "05c53de03fd228e7338b51e3d58ee257f072b95dbc9544f4161d088d5f7b70ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "baf500134ae3ab13c33638e2d504a4e551df208942bd13aec617746416a817f8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bb3dae505157175af68e0676668d2d943d355cfbe19dd6b301b4f274bd7d6f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "aedee506ead88dca86ad70fc20884460cad3b91834c4affc334ee32163a490af", + "regex": "." + }, + { + "hash": "1f9266857d69aa38fdac09734d9e64429779f55997a6381e220048e08a6a6cf5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eep\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d3cb558c83bc248cc7e0aa0f90a3b389872ac0118ab39ec4711f119a8ac96f23", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5200bc309f07f152ddad397580808baadc49f11f7ab12d32cea5131d44f47a62", + "regex": "(?i)^https?\\:\\/\\/btc1wui\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1e15e3502471418cf8d9bdc076094381cf43c4b80e1a84acc0a34ee8d2a4f6e0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "618f697ed46e5c8c7fcf98426646558428ff01d228b05bfa9c007aa15c8c7d12", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fe0efd94241b40299c18dc96bb63ef05dd971f6cfd44cc3fbe3127802c098350", + "regex": "(?i)^https?\\:\\/\\/abcxyz66669999\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c3e39ba26d5ea0abb5e6bfc57f467909865e78ed8c767b16d03e8f6f0240c9dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "67997b877f3ad529f1382adc2dbf7ddde704990872af2208909f5e174095d7a9", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ad638849bfef84db5852745ff936fef65a0388e5408be2d75a5df7bdf4da44f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0ac48384fca5cec7dd58d535966066e35878a9798b1ded439c5ff450849bb4e6", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "41a68a7b0ca1262fb879e74781a40ef652b685930c905245386d7dbb9f61a49a", + "regex": "(?i)^https?\\:\\/\\/btc1hhm\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b5bb4602bac77df0b9adf1dd44e437dfa886a2386a32d6c6dcae3172133288ec", + "regex": "(?i)^https?\\:\\/\\/strandweaver\\-codontracker\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "903d10fa20de39a8b785d7320e74475f82701a0337ad8341ae226c5eb9b0b891", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "460d8bbefa3320ec76f1fb60a58122cde4092c9ec033e5ec1ac2faa3128ebe5b", + "regex": "." + }, + { + "hash": "bdbea13337b3fb30ff52c60b9792926a0b4377483108666e2d47218815e8ca52", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "216e34bf20e828bcd3791a84ca0bc4331632f8908f389ef26c6f54ec8803169c", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d0646eda63cc87af2352a985054d371f74a898f09e2c9748cda3b35e88edcf40", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8b8720fbec645b8a8072164b2d2e68d3c118d416ef4cf882a92912dee82a05d4", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ed819783e86cf61b1125eaaa0ab0d8745239bb62a38130ce9e488995cf43aa64", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "05075f35e43217779643fbeb0bf71be583fa561228aac5e445966fa25c5fb656", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a5c98817874518ce9117ff2195e213dfcd8608bbde347b88cbf1a225277079c5", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "093f4804da7da120b191cc7e180e07e2b3b9ee311ff57ca645a63a5e0353cfdc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8bfb81b70a9101aff0e56a8d4e8cb33b567de0f77376cfa40c1132bf4ee28312", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4a98ffebb43b979946cb9034e1d123287305e01a9209cd055cffb019b32ca7c5", + "regex": "(?i)^https?\\:\\/\\/newvideohamster\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4a76705496a551b676ebffd63683da5afb919a28e1e34a80332ff44ce8445677", + "regex": "(?i)^https?\\:\\/\\/gddrhx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3f081ede0a887a753e28a737e47b4765a9220de9c50f03d408a533659734090c", + "regex": "(?i)^https?\\:\\/\\/gddrhx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "593deba4c6ba344f20cf93399419e708999467a86b595263bd2ad840154b27bb", + "regex": "." + }, + { + "hash": "dd2369bcbe89217680c684b4e5a4a5339ec9fc2740879585662113eee44fec88", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e1983796f3eed49952bc698c5005f26d2d0f3461f810e00cb31fba738f8dcb60", + "regex": "(?i)^https?\\:\\/\\/ndzfgn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4bf6866d207d7798d6e851bcb1b62da78beead70bcd2c457c10beb46b781fde3", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fd84fa0204699fdbda6c852818583f1472e2accd273d880bac256ff20710d7af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a822536cc80e00112b2d0c3ee2d571ff3476eac50c8d5fc2fb2e88e5e7906e60", + "regex": "(?i)^https?\\:\\/\\/saylorpay67\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1521c88a121559ad60c3cafdda9f7751eb7899832bb96fec0212e6b595274557", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d928f8906ac17caf85557246491aee1c3765fd5428d2ced5175ead5ed5dac10e", + "regex": "(?i)^https?\\:\\/\\/btc1hjj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7da0e8aa760b9bca062587823eedcb7b243504d3aeca1ac6b526e3523f10f6ee", + "regex": "." + }, + { + "hash": "5fc5d33bdfd70ae47784094eaeb7c15d8f29679194123efb299778171043e826", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2defbbfdd1f9a83d5e503df12f9dd4b1551a8a47227f0a0721753c0c00f5d450", + "regex": "." + }, + { + "hash": "7da8ec374ed190ec3640ae627647ffa8ed1fc157281df665c8db7fddb060fbc5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kks\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "aa0e83b9113f8b5927869bd74aa1af6c76ecf7d31580c241ec71c7235e1e8613", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ti_dn__\\=3b243f7a\\-2090\\-4e4d\\-aade\\-88117cb6c726\\&__u_idz\\=(?:\\[|\\%5b)\\~Ind_ID\\~(?:\\]|\\%5d)\\&__turl\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafkreibe2byoirmtx6cet5p2zjtgpsn7i7urlzsnyuib5kuohoblbdyraq\\?allmoneyin\\.html$" + }, + { + "hash": "8559d3a4363480c4b628759005596080c939e3e640ff475dcc1bdf4d8a6051ae", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c148f1c9d89323b938015f4da9d57613ac215c517c6b8c527a9524916ff47d26", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b0d75ce34dfa81c58953204110cc2e3ebf2da79da80da26099f32c5287ea71ca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a742f78453e2033fae0ddefc23d564a1f132c3868af7eea791a171cf305c1006", + "regex": "(?i)^https?\\:\\/\\/btc1lll\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "abb70f6fb7cf286fe4b412eecc2b2611051cc1f9fcf301732dfd08c440529049", + "regex": "(?i)^https?\\:\\/\\/segseh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4b819b499d02f1cad38ca5d5d65b7dae9f7436cf3b9644724fbc2078054e4b68", + "regex": "." + }, + { + "hash": "209034e7c7f5ed687fe549b485916be2777508074e48ba0aec9cbc6e2e854a7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+www\\.luigimarzo\\.it[\\/\\\\]+wp\\-admin[\\/\\\\]+css[\\/\\\\]+anti\\.php[\\/\\\\]+1[\\/\\\\]+010901934566841a\\-cbd744b9\\-4bb1\\-47c3\\-89b4\\-48c812dddb9f\\-000000[\\/\\\\]+2\\-PthiZnN9z0dc3RdXu\\-p_Rg\\-ME\\=182(?:\\?|$)" + }, + { + "hash": "cad71dab0214d04cc561f6bdd59214418f77b405bfcde0f43acd97c8a197dd52", + "regex": "(?i)^https?\\:\\/\\/fhbfhnb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd01e3c7522dff6dffb855d13c77d4f7ad47bccd1183b67aef41191ccce42f", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1372dda70de776375e5ac6652d6101d8272a5ab23488331c04a5ae501e1ba243", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "28f5757bedbac6ceef44d55237c20f36a640f2db24489145329ed769b17df5bc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8b15884b562e44ebb772d7d8fe8bb7788337cacb3cc135da602d914b1c305932", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa53b60802485ae5d283b62a7d1f831962dd225c3f4b9d1295c9bb4f570a030c", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "279f5731964331b930750a66216c1af549cbba1eb9ed18e8a647fe9cb1ff8efb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wve\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "602b583de2065c5c84c32adce8f8a249fbfece00358fcafe41b15c7dd3b720d1", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ae657565813f35eba663fe27c895cb8aa1c2cedbfa9e727c41c9382bb22baee7", + "regex": "(?i)^https?\\:\\/\\/newvideohamster\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1880dc9645f0ee5309fb27f57f0f529ccf232cc4f9ed4e00719074d23df743fd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f0d425d37eeaaa4dad95dd8a6b0d782e852b8956b16762ce28e61df48190e15e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "52b0c7d24adb2e3b1294c77efe4d786c08a7bcddfbd08242bb78a3744e7d1dec", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayph\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "19624020b8f508388a7d23417e1f41f5b18d35d562a7fd043338e272cb0bb7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "3579e46028ffef1a50c30c5a8ef12becc8439ce567a74c97b0201fb602ebbfb5", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ad44b821cfccca3cf75beaccf3ce94f49dc665cf76ec20da4abd40947df0c530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "52091f310f978d58989144eb035915a7ddc1fc75c18190f265e7bc88fe9a3ad8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "09157d3527fb73e23233609e9390310098b785215f5b404b4c14eca136519dc7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3f64503a2a91f2e48504d7ea79520b60e1b12dfad93a6bb226da6a29395fa4cf", + "regex": "(?i)^https?\\:\\/\\/www\\-prime\\-singin\\.50\\-6\\-199\\-99\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8fea565a508884cc5af2815a1ad0c5f257d42643ed28d38942c3e7c367067416", + "regex": "(?i)^https?\\:\\/\\/btc1lll\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ce5e22781530fd4bb2c130bc725676b98f59e4ea4fe4ca10940e292cc87e4b72", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "285797bcd37a18329db14ae4cfe97e1d20103cb068dda9f59bba507cd058b433", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ef39fef9448b25d75ce78fd6f9716b4c19431cfa9fea6d41040156818a52ec19", + "regex": "(?i)^https?\\:\\/\\/fhbfhnb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4b19cf71edea74039fc55f9e8735e3ff80fe00e0d17e7a66db235ccf6c3bd7aa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5b07a34a3de1c3ff283ec5ad30c7ede0d44807b873b68863729e353df00382af", + "regex": "(?i)^https?\\:\\/\\/btc1hhm\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cf272ebcfe56e5e639edc10bcceef064cbb8d72a9674d1f7695905289b140787", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "07576c4d30aeab2c8585b537fd52b90d15ac1c02207af64821fd2e40015b1758", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4cd9478f5dad61b7aa8db17d111588a023c0703773e8f6212175983953d971f0", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fc75ffed4f62e6e587ee86f6f7d8e4a227f098b286faf250d283978acca72647", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ahi\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a8a9a069faabd28f1de7c172d188ebf42b4db3ecd4d06edd451f60c3a267d103", + "regex": "(?i)^https?\\:\\/\\/btc1wui\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a7e23c5424b92cd30a2e364026d0b98e63f93cf151691514fb85655cf2812685", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a4bab3ab55fd7e78755528aabca33771275fc133563b3f4b00e158d16fb6d75e", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "71165a52c8f93140f778f0e36574be60c9ef64e73f672bb388414bf0b9714830", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c797558df03eb98333ade905cbbc5bea50c5abb849cfc9cb1ff651ed81d3e800", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f1f0dd449140e8de6c3d4afc33f4f92553d891cb92e491d70f4af4008341a970", + "regex": "(?i)^https?\\:\\/\\/btc1xtx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "50df9cfc1f81b6d6ffe3dc3ccbfd0e95210077ee0a9ae4809764e743011bc8e0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "032831a2dda0afb185f60823dfbf90b4bed4db16abf55710bdf906ab1ecd3700", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7d8f822bb314057bb188058c55ed7e42a337e9ebdfba076ffd298ee6f6f54752", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "68bde1aec83a20d651bb5229769f9e12c0e6f511594d7b6348ce21d01a381d35", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2d1ca143dac1a57ea2af99dacd2ff76d8f4eba28ee46b61e4014101f7dcd76c4", + "regex": "(?i)^https?\\:\\/\\/btc1hhm\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1738fd3f5a4a81575bd40d6aad8ce382e1bf78ac4654774d3388c264899f3c72", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "83c05f1424b336e87e18451966e676b926aaa3e0012bb81ea5a56069519bce85", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4c4d49e29c538c93e61ad7c13ed53475ad1ce68e735431d2cc4f429230ba337d", + "regex": "(?i)^https?\\:\\/\\/newvideohamster\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "36c844b4cf9a865c381fb06442131b3f86efc305adb786be1f3d826267ad559c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6980f158c3e1d5ba41e89d81b533098b9be60d15c1140883b2bb331cac7b75de", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "031f2fd9ebe53ced099c39814db9ce659f32fa64425cba0d5db4f685079218d6", + "regex": "(?i)^https?\\:\\/\\/btc1sss\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "20e8f690ee6b685b2bfc2db57ad8307941ff0e95afa59cd91e9e1d60b7ce070e", + "regex": "(?i)^https?\\:\\/\\/btc1sss\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b5298bf551226fb0d79db06df554907f1d9cce4ee07b6c877a811eca39461065", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "87a383de7e557d2cd7af4ffdc97835526b177f6d399510a637038f2a1eb42f40", + "regex": "(?i)^https?\\:\\/\\/rdgnte\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a1595b09d889f7a493ef3bf51dde9b8e04bf225f60c3a78c1725d91f2f4f0520", + "regex": "(?i)^https?\\:\\/\\/gddrhx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9cae823141654e89806478051f669e137f53e2a06f044f4338f0ebfbf38dd5f7", + "regex": "." + }, + { + "hash": "36185e4c027afb385e94a1e3c68833dc30bfb092ef093c42fc535e47de5a9931", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9686c24c8eb76d1f888b665b37c043523540031cf1adec639041b42d8ab0bd9d", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "1c72748be28edcef9599884e5e26fd38d0f59bb331eebbfcf0cb2c269983707d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eel\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0f7cebd7200da9b10922c38f431567f9148272ad00918a3ee65eff3f183908d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eep\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a99dc2a54eee3f2593e73e6368b6e6d1e54571b86c334241b2d8385545a8983f", + "regex": "(?i)^https?\\:\\/\\/abcxyz66669999\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0f2c352be3bec6a20fbfab7526e78a5b6b5e024976cb4e8f5448a21d772b6fc4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1efe98ebfc58248810c61af5cb4ee511cc1427e005034ee539aaaa9cb7286bf0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6aec211bfbab96c557d623a30b362a075321335d91f9ac0930b48504d1d977f0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kks\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e094e82fef6e8f3804b8c3fc3c882abdac5495d8c6717473b04821f92c2d1e13", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3930d6f0a3c3ad99196a1e1b4d5805ee42e1e7086200a928e24f132cc076feec", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3404a9e2a63358407d9e68b470b8cc7f0b12a787e70c12a6d70bc3c02395da7f", + "regex": "(?i)^https?\\:\\/\\/ndzfgn\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2e828fad9651178a8e6b45fe01725cecc3136d92a5d2bc1907a8f2fed7aa9cef", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bb255ff3b4ae8788ef2dd6e8457756bd22cfbf5cd7635e59ddc0c95673e8810f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e2123676f2c064561954e07a6e450ae24c97f870c352e183663edfef36f81a47", + "regex": "(?i)^https?\\:\\/\\/gddrhx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payout\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payo\\.\\.\\.\\%20311\\%20\\.\\.\\.uts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "9c758d014b814a8945f25e00a727c0f56af54f2d37b5f54a667cb6e2fea3556b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "270d02297462b28142eea4bc293806e407ee40fa57b395cd095e838f042608e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "ad319aed1ac8730e7e444f4db525afff734eff61c4475f53b839a9e15b232fc5", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3f5f4c83479e9f6cd8a8cbfc0617907cdd2963dafc99fab54a955677091894d5", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4a7a39ce00e96e07d199da13b3f0360ede4a6de5ffd58f1919e0844063ad6752", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "05df27dfd0bbc9e2dafd373213d0adaff27ca810583df711a83cb91c6ff91110", + "regex": "(?i)^https?\\:\\/\\/rdgnte\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9e40b1b279af3c9167fcd5ada5f42f0614694d1a3ad038d826b93d10c851ef6d", + "regex": "(?i)^https?\\:\\/\\/btc1wui\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "52168a6f68f42d353723bb6d534a765d7e0cd4d1b07f8df81ac4d44f105c703e", + "regex": "(?i)^https?\\:\\/\\/btc1ooo\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9bb2d4912a29fed79cded8fec8f3b6acc79c2be419d2ea8fc398f623371ff554", + "regex": "(?i)^https?\\:\\/\\/ndzfgn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f9edfec0b507e88d9bfea34d7eb7b61a5c28768de9d95e280859f76f0dece2da", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a1b56018be33dabe19cb000a85d0290889eabb21018ef59f4f52bf6752759d52", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f6158b9887dacdb87456255861c38e513ec79e9041d4ea498a16ba5d205dfcca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5df23aad113a0d7b6a0366663b947b45b57e6ea838b1745468670e370ce92192", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "688c6301b93e60ffc4dd0f1c87c618265e00c820597fdd84d63b7b5b4847c51a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ae269717a041e832b68891e7b0dc13fcbd4017ed41d7a9cf82f8dee479686211", + "regex": "." + }, + { + "hash": "edd1bad1270d46f913718dcecaf22e87ec60e55d93b6ba43eecce2a962ed4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "52594cc409256ebe02a1bef7593a7510df424dd4a92d613675ecb4c28b8bea4c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a1699dfa0674893511ce9b6741d48d968de32f0ff8fef45ecb834172fb5c42b7", + "regex": "(?i)^https?\\:\\/\\/btc1hjj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d9281036116069be6c63679cc8e15182fafa6604f3b982eef934634ebb03eb88", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f254a9b3c08cbfea3ee4a6639224063260eaeb3e3004e7213af79b14fad5c51d", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ea55ee7f4a003c9eb94066a0663e70f02556495f36fe5daf38e8a28405b59e74", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a9e4ccc3e423adf9f38cdc59282dafaa873e4770b92e6f331d426cb004d1115a", + "regex": "." + }, + { + "hash": "377a4ca951d32286cd86126b26428bbddea197229e8b4e61c7c7a971178c52e7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cbc5a00bd6a74831f0984f824e0ab9b3f41000a1dac1026d5485c8ca87581c9f", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "12a6efc7e1ac6e76f6b53d9fcda5ea8757047c784b3c1a28bce5447fc6a51eed", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e5b811ef514d171b5ccfa66e65f17b02dbfb45cf041fa32938749540e4a99c76", + "regex": "(?i)^https?\\:\\/\\/hotpinoyclips\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f7687233a6b4f89786c5852747dc04bdbacb1ee2f35606dcd24ba924fbdfab1c", + "regex": "(?i)^https?\\:\\/\\/strandweaver\\-codontracker\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e0fd74b3216eea10e751b5805924f62cdec0527f95367823806b68d478c37765", + "regex": "." + }, + { + "hash": "8484a2ced7058fa2ec2eff923644700611bb6d1be36e75141536e0640bb66571", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "327e00253e35e6010e6d61da705865100769e451fec3be27ce8e3c8c0857cc53", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "49f6731603512cf911d67b81bec695db8191a4ac4bd2a7a0219109d85b1f2d5b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3d1ad8ae41f59cc592bfb93a941bc04506b3d9fcba0b71fd9cb097dfd2082248", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9d1340d2c77fb53ba9bc59049493b44330842a64bfa379c87e5a4f303e1a74ae", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4b0a2fa68e7db35e27fe02a106ffc15906c4ee0be3d7070a8c6c2d224efb816e", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f42be15cd2b534119a44687cc4cb7fc77e2cb3aa1a3edce337b9b80e7abc54ac", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9fc889f5884c21522eb051337978b3ef0f53258e1c58476173bc8e0868c3c071", + "regex": "." + }, + { + "hash": "533a6300fc6e88e7023b8e3ad25a2ba487c2e3b337a3dbea977dc7656ca01bb6", + "regex": "(?i)^https?\\:\\/\\/btc1ooo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e824223b6a0bbac4ce55fb0a48a7aa17f8342db02b39597c79101bd13dc88344", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "008d3c01a14cf92003a514558ff676fd4c603d6152056badbcf6ae7176e09f15", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e41f5c11d9ae62959caf9e37e7aa90084e253f8da9aaede6ecd6ddd80ddc6e2b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "59a72b105c88a8b85d1589ca5fe31dbfaf2a25c2e1fef003fe5ef6dc2a0ec5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "6bec8d4a1050190891fcdcd367ad18e403642a3202df697ed1fd5308b6008039", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7a465d709807ed17c9a843c4b8dc577343da9def097e29a62f7b230cc3da9fed", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5aa53c6d113ab967d0a8bfd667e7331f672a8bf3f12c5791cbee5b2834de7ab7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "dee39c53a273f0d78be8465bbf169833e2067cae713601c0bc2431f081e95477", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e66c8db1e5399468dc985b917f1d39a2893b5f4643eb695c68868029ba50fb4b", + "regex": "." + }, + { + "hash": "ea65eddf2c7872033a37c24064c35f612e31a72ae446b1527bdc73997fc7843f", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "99fd683f1f74ebc3c3f3e38bb0305eb4ae0741f715481b76da34fb72daecc361", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "049543881a9dcf4589660859c608622e47694c5b086b95926db115cf438f34e4", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8d9a70fe17213caecd031e46c3bead0ad9b583f2d90bee31aa481f01bdf3e8bf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "51925eae3493a795ec44f6f1c06894960bc1d04d4eeb8c32bad769db7028de38", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "10a111e5bdb4ad8caa4329129b659cfc012c32e8de9748612ce45cf961bdd39a", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a06146d6d1cce8070842af2c570fb880d791d900ca85312d59ced137231bc9d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "6f352a2c37f8da10d49b38aefc5e18e9d41013602c28333370740cc0e303dd32", + "regex": "." + }, + { + "hash": "9f80dc6b27fbce7a839c2fa1a17c24298ed415069392fad4b4ae8fc3074b2ac5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b5097d374776e578b2c977c864f5a2b77a4a99c46bde1678aaba764d49b9b0c4", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7054b5122bbbc3507e6b5329f07dbb478fcb4d8abb321548842e7f135ba67936", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b1998503245ff7e337b167879be6bdd3b11374a62420c122419b4d4a28688dc6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1af722a39a9923805ff66354726be51329e045df57c6beffdf37a62deca18869", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4e20b71a81aa8421d8d8c80ac1e20185089000e13dbdbd124f7a83f3d9cd30ee", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "055d8af2771421bc8f81e150a5f65753a8d687689fa591cff8d87aa5e78d3fa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "aac61b57e079172c7d9d281f68f62683c930c1e6110db93dc30fb98423e584fa", + "regex": "." + }, + { + "hash": "797fe79f624e8c3fa5bcff73c519d9201e6a00eecd4f20db78e00762e80637a6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c12880df5eee2a21ed68beaa781401813be200efc271e4d3e2109656f1d0d862", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b3d9075f4c43863562e89430692435af9f0d7bb85081928120b165ca523c9a44", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9360e9ed5c67605c2a8be7b780e2df371675eb7cf77b14e8d1774953684aaa80", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7b50f1caea1cf35039277b7ca91db6d392d72fe3febee0281bada9abaac786da", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "80693fc072c97e74bfe73a7974fe0a3693cdd04ac61444b473c532e69a435d63", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "334bbceec976959a14b63c49dc7d6fc083abb609b8b470312637f331b2621a4b", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "798894c07e19ddb9224e5d5075559e5e65904573f5af089a6291025b5f1ff3a3", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e3b2d5fcf3d8247589d46c4d66a364fd4b87a0addb52c1f78e537179bf4d5cd4", + "regex": "(?i)^https?\\:\\/\\/btc1wui\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ceef3c696a41ed82c903f486c937699b8b608c4137affc0cbc5024aad5b199c6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bb1e28cbbe4d131ecaf8c8f3a5f2af49e4dc8acde6be021790d2741afe42a93e", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fc4c22754335fd33c8fa2b1f54527a551c49f5d1dfa7650c14eb4d7eb9f47965", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dff5883e20b021d4603d2fd1fde98f2b374b554ed10c37fcf23010d1691672ba", + "regex": "(?i)^https?\\:\\/\\/ndzfgn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5a31b74148af3794ecd4a23095cbe3826547d49eb69a4a9ca48d690678754ba1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "86134aad5f708e538b8175e2ff48485c6f77cf94ec1d153b5a28369203b71d48", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a4ab6153556e2e93152bff4354ebbf11cc87dfd96057c203b673b07c9aa402d1", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "317f37baabb007f0f694ef4b47b0b80f7ecf1c24737c2af10cc4c1710c3d5431", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7b38fbe5b19fa8ab183c249d1a762edf5781f025ace362d882ccdd625d10d7c9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7da885cf2fd7e28bf3e506fffd761b85ed772a5aec9b3d2cc61226678d2bb090", + "regex": "(?i)^https?\\:\\/\\/btc1sss\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9c7ef7af8e1f4204bdbcb1fb9e8a50a257a6aeb07772e3f071b50ceaffbbe02e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2c5afab545885a7d8584d098c21f86a4c31a2cfbe30f7f857aa3ed25de27a52e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8ea510a24ed2d1508fac17573e3172fcea1038b0e6507a0f71e477b821bdacd6", + "regex": "(?i)^https?\\:\\/\\/btc1sss\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4760368858a2877516633fe7639858d9225b9fd754c15681b9b512defdd89b6a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "493c0e560ca4375acbb2932b3c0fb60187216774f5e7208a9b86b0a649a55c60", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c989d5bd1fe3c783a6a7d870c59eb4b33a7a89edb8e75552e2a4e606947d574c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eecbcd859dbb5d5088b9add6d4795c44b158ab2a987d57e755d6927e1e46eced", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ae3adf7d4cfef4bc219868f9b25c8b8f7f52a182e886889a2d66570661881fd6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4da85a8f0c74362a7416f8e58374b286660e6b7a2d123a24f451adf3630df804", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eel\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9558f4e3133a20d06199c025097f5aa82b35522f49eac34f4d303d96a30f863a", + "regex": "." + }, + { + "hash": "30ea298792448def7b2f0479ba37a65a3d94d0d27e8ab7c942474095c4566c62", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ph" + }, + { + "hash": "14a34a89eb77399d706069d530a4d3b78441ad0c217f719a3760e4b3d412e0b6", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e3938052b7aa4d4b71483c45cf69853f90c32e98857c761cdb16bf0ed7dc2ee7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kks\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8af49dc1f2ab5ad60ca14069667f3257d6d764e33472a75754ca939c9cbc9583", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8aa4847e2747715050a0b48409481daa9297929c3ea7f15d152fdfb4a9317572", + "regex": "." + }, + { + "hash": "bfa8f0853c57d968d54667aecf537a63f1b071cd7c59488dffc99a7a79440bf4", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8cbd15a1e3819a69120b860d319a7bd002983f944992b149471d8c2a426a86ea", + "regex": "(?i)^https?\\:\\/\\/btc1yyh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "20b1b63111f17ae7f98b97fe13e235f47e147945e29bdb2ce3c0701d30c64873", + "regex": "(?i)^https?\\:\\/\\/hotclipenvy\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "56dd062cc5154d583203964b03e072f2640efd4f2719754ed6825e46ec2b83c8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6c1c5da188ff71fe152468bc2dcc0ea0fc63466b99d9aeacb2fa73208e83b3b1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b5bd7a188967269c4741d1dff5b1adba528222d60bd3af8ead01a6049cc10df4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ab3663f2624722a100e4b854964fdf405c17bf82157b502fe3927168c3c9b436", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+HtmCap(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "efa4ca9d73b2a3e943810dd8064e84028747af22d7379a6760a25124e56a2d17", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8d1937fcb9867ad53ee7fd932ac4d18d4665b87dd42591a19f20d7795a448197", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "992e10f77aa7eb458cc486b64f95f77a179ded9cd11e884e20f59fd556fda494", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2ffb34abea0e94b36b890037c8b277c0acdb6a7215854a6c86436a2b35ba864c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "709d1640df463ea1807d6077648cecdf8cb0f4768e611ce647b6bd9fc04a604b", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "591d30696254c17d28a1a60f9ed1eb25c94616a87eebaca6f6e8cc94980d7e20", + "regex": "(?i)^https?\\:\\/\\/btc1yyh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f78971170979bf74cb14b644d501bad2c05ea54ca68c4918423bf70375fc4477", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "188468babf6f59a535f652c48ec5944ef8c20072e767fe66aaa9b69124250ab8", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "77f2e5d0d84ed1d13b4d1aed4f3150699d9c7a7659867c35d33101bce29ebed7", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7ce3aaf3b98e7485e0b3043500172be19bb9d10b8199afb753b1c8d5ef288848", + "regex": "." + }, + { + "hash": "4c8a30270e270d9a8bbc57f5232dfe0e2c5f7036adf0329edb424da49c6c14ba", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0441417fee8d84d036364469d328a9b9b40b63ff09f3fde8d671828c4bf4f9bf", + "regex": "." + }, + { + "hash": "73f68dc37bbfe7bc09cfdaf584985991f076425b12f31fdd8f7906b143858218", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e0d1460f312a56d6c6e56402c2244172e802e47b45f6c73211b799cdb6e8d0f8", + "regex": "(?i)^https?\\:\\/\\/abcxyz66669999\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f5bb13d9a5fa65a8b11019285b13d46e4307f2b887ba7f63f43b38050fe13ab6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "271476d708f64178e9a6cb0f6b8f63da87c5d858c9c93a55a655750c77b02058", + "regex": "(?i)^https?\\:\\/\\/rdgnte\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f951b7753af7232408d0a86e56d000ccc1cb58c6790a419fa1c8a1c225c5252b", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4f939f1990ce941560ecec26b031e8def4adeafa6e621e897892b339d8034331", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a8c6e01d1cc8b9502791896893e98f800cf43af65bdeda8ac40e23b712fc56f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4cc79cc02061181186c3b43bcf20d128537426a7e44515668987bf3457c951da", + "regex": "(?i)^https?\\:\\/\\/fhbfhnb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8cbbebd6b894eb1238a2c3556f3c11c21243774e7a321696fa837dc66cef3e85", + "regex": "(?i)^https?\\:\\/\\/gddrhx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c21152e5f431e37593e0a51c6eb87b7326c6a1896ced6e159d7e17b12d14c1d8", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "64f1e4ce819d8dc98289b9e00e8394713c263e5ceb87bdb1af994afa4b68ed5c", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayph\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fb2ae8d4ce0a4843c61d4e7b85b224887568d75734ebeeb92eca9b90050cfbeb", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "070909c9a0aca2da6cb74f4cac5157fd95c34d1ad90fabf4ab4ec40ba2b1ec3a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5650b33583c28ac49e8bf3af47063de3ef79c09439dd6a6380663169d419b591", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "132573708913513ccea4feae9e22bf8c72213af62e4b6c19a03d166d904a9ac0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "004c69f21412c5fa3dccc1d2539a72d3aa6e101b90c43cb81fbeba70cc0825af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e4ff85f193f7895c21ac1d80b575ac02ac4219421b846bc722cb70b5aaac390e", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "40afa3f0a5e7b369c3060001eb96c743730b65bfcfa1c1678dac5d51309a0e8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "1db56c28f524b2b35d5abe20ae5126ea5c7e37638ffae57d29c9c65ffbd1943d", + "regex": "(?i)^https?\\:\\/\\/tjnrr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3723402ebae5b07e9f99cc1b6c2da98a01cbb070596331ed95ecb6c744b10313", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+unit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b43e12b18de171392a65516d4bbcac2de79135c64b9cc4cf3d93e425cde742b9", + "regex": "(?i)^https?\\:\\/\\/saylorpay67\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ab641c6091f60f28ad151e8342f16d25b92657932fc8c093c2ff0a9c3eac6713", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "dbbff4499a03c62d138b7cab8d0eece5ef35b7f6ae6a43a42616a7fca535f07b", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "77c9ae102b28a72733ad75398b995819150c466641b745f905f8f84a37232080", + "regex": "." + }, + { + "hash": "a046236dda6afa17fdf87bf5703a7bad8aa877c9fc7ddecb10d153f1958e94c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d331b0cc473d1f2a8a112f79cbe0507b56feb6dd6379a0ee1a8328fd3e97cdc", + "regex": "(?i)^https?\\:\\/\\/btc1ooo\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "643fc0fa82f9477fe2ad171047d44e4d33ae6e7634485500982afd08f39b8d26", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eep\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a1bb35dfd8c75a8a508d1f64f82d1871cc28fd50aae50847279a0f1dd040959f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d0b4f309b7cc2fdd084e16282fe7cd4d2a901e76333198e094ae8d96615aed4f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "edd1b5e806ea58fa3fe9df073d8d122bc9a4c7a2b23e786e43435b8637c849fa", + "regex": "(?i)^https?\\:\\/\\/abcxyz66669999\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3b191015d5c32252851d7d67f19c90de2f5b9a4bd4fa26de6889822dc8dac305", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6ee92d14015453158d9b94024af86fe76e5cf21399d11fd3b767aecdd231db4b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ffdebeb80ffdab34c63621831eeb05a7b098345659b6c9dcb7e7613691121df8", + "regex": "(?i)^https?\\:\\/\\/btc1ooo\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "20fa52bbccfb22822aa4631c918bafa25e110cebb821694df1bda01d84c41b36", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f3e95ccd623f465e1fee3b45bf5ffdd528dc88286b511a3ac8188826decd7a2e", + "regex": "." + }, + { + "hash": "5700115f5f6f9d353c5eddf158e7c5278cfb370257b801a6a73ec4d5515be28e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wve\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "aa0e4967f1fc69bed91400b28e374a39841d2201b22993187f708d317d66c5c2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "94b173b82ace027fcc2ff95031867899ed1ec9c583101b3229f358f026ca8c45", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1389872eb3a29495b3a0fa7d2b14c70b0415046c4e373f47521a9e058fbd8415", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6d1626ec759d740f6142676d6e2ba2c5649f70086db1079a6913edf22f153d1a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "02da578ce92cfb4ab2de9d5c843d0e4624b37a4c4dc36ac2952591b6a0e8d321", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f3c689a644d44cedcb8caff116d4b4ccd78be66ec509c9664558aa56c867fb8e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7d0dd84d9a2d960568067af09b7d95f78538e7f6654ec7925c791d807935c759", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eel\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4801398986655fc04a3a4d0f189f6b334aed2d90fc9e9e3fe9dc1ddbe7d299b7", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "95e7bcde9f58acb5e70523f4ceeb611c57dbccf7ed0c5b42605fb5a8590a5d12", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "aa452b381109a629732b256ba64f6018e4cd5979201cbd2785f87699e88f0dd5", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7575c6694b529fa0f691fcb46cc6007733f115f037f297a5ec8566e98704b377", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bbbedb56ac6fbee321a855fbdcda551539a0eb70e4de3790684da2af07e3ed49", + "regex": "(?i)^https?\\:\\/\\/newhotvideoxyz\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b2e40885598a69e9fc2eaae68842a10fbe7fb5ff9699f62a460d461e9dcd0358", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "428452db76079be4a14e56776950407c3c1ae20d8345864785a1273e1c670789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e9735ee2da83abb778791ee235989d5ac545b5fccb3b958c3bb16300808c9766", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "931aaa5d1a0e66d16c0eef0d7b99e242a7e4b9d5dc07e308c4efab44425b812f", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cb713dd2724a1019977f7c0c8710676270e122435e68b5a4f3793fb944f81f7e", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "114de80cc01e279baf6c640aa5b528e070b8ef24c0daf24550907b51c4838d0b", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e3f742ca4c39d46debe010fd8d9baad7012dd060d077e325b8a7f052e57ff8ff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ahi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ce43ff849fae95673b65519fcbec6fb7c13896ef7a09271b5538a9c71a128285", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "80516a98061ef6a8134c18011b91d8e7f4a092ca2320a0ff4869c7c07f37b4fe", + "regex": "(?i)^https?\\:\\/\\/btc1wto\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "298b80bfd70147e74bff1b193e05047b73c6a717206b16648bfef41d5aac1605", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cdbe251442d55ecf3a78d2e7fc6f915987937cedaee6a5dc7cf99e4ad6e4416d", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9766df9f6e82ec953a93415c86117a60c94ccc3bc9d25bc45c524cfd4cb15fe3", + "regex": "(?i)^https?\\:\\/\\/tjnrr\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "437d49d0ca515bcb5765ff9f6b5c107524162473d8343b6c6e53f11c69297856", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "accaba3102370db5704915079eb76869e5861c61158aa51bc4ec29a2fa20f889", + "regex": "(?i)^https?\\:\\/\\/btc1xtx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "25c9debba5587cd88459f1cf74f7848244e8652fec3bdb2d0f528c1d8c3d7aa8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wve\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "62a0c460a4adfc1bcd8f88a33b7348b69883ee23f2e7dbe652657fb2d6e87c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "f3a175b2c42be513afe9437605b5a1fd7b0c574f88f8f803bfd058db7c6c6033", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "084e9a34ac2abea77b85dff83c869bd75031def55fb62b055ec210089cc924c9", + "regex": "(?i)^https?\\:\\/\\/btc1twr\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "da417e1bfb8425554db5814f66c33fd942078a5862355b1a4d64e2ab9226454f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ahi\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d23b125014b6b3cb76b7733b9ec2485eb520a19904782f6ed15d72b01c7add73", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "deb9c93959873ed8fbfd615fdd8cbfd625a125e20fc48752020490b1f932806e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "904dde2c7d07fb6a408d0b44b0dbe17910ff534f8b6659abfa3b1686a13cddf7", + "regex": "(?i)^https?\\:\\/\\/btc1lll\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9a01af3debff0355303983405e047dcbbb2728f2671db5c087327bd720c013d4", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b0e573281f51a2866aeb5690791ac68b810e996904562c7f4b37925784e24c41", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "00914f0f582e571f5e65cb032e83b6d9082df32d48e73cbbec42b2d0165c10d1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ahi\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "496e1ad32bea040b77f02cfd7511ac7e599576ad9dd4a60e9c276f3e0a403938", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "320d920e4aaeb8050d75f5e52fa514b3f93a9349d9f311f1db3ae08fcb121cae", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6d16029b0cd1a2d5edaa50d87b457e4cf906fda156d219a671e1099676bc0618", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b65caaedf580e339b8402b66f5740fd3b777f6128e802a564e72d98aac11dacb", + "regex": "(?i)^https?\\:\\/\\/newhotvideoxyz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bf50ff55ca12408a01d8724d2118f667bad68c88901fc74526253fe0939602a9", + "regex": "(?i)^https?\\:\\/\\/ndzfgn\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f22a9a7416b42386812963e18958761cc6fd3fc16d7ead0083238ffce8cc8183", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c3cc1a1d53f04a11de340cfe8d82cd334209dca36cd36fa88257f53613863e27", + "regex": "(?i)^https?\\:\\/\\/hotpinoyclips\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2b2f322079ae47acc00b27e607d68452cb8ba5508a8d450cde6b72d38d0cb038", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7487cd67be852aa3f78297685c905e01f39a792ef43b87d83e24d01a788d0cc3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1721071abbd0bca75843e058eeefb6f9c2572cf8c4e4e70a82e6720b0fcc05ce", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kks\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "667bb76d8b414a649a0e00ec67497babe9b8677b5facafe37fc40388615fe3f1", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4e6acf4f6b2d7f2c09364cc96691e6448593dd1813c1617bf210c1e619a2734d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ebfa3d067edafaeb7e65068d06d1d651d39597f5af5828cd10ef39cb045bae7a", + "regex": "(?i)^https?\\:\\/\\/videopublicxz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ff321a509ee58a3bb7cb363f6b664c2298d8995167774eed4f86c5e4158175f8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cd8934c062bce2b764f55a0090e28e977a82748d71a800c639757a85f32ee1d8", + "regex": "(?i)^https?\\:\\/\\/newhotvideoxyz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fb03eed214741a954202473716455c89c56b66cd732fbea88b80a84fe2fe3fd8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eep\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ca21bade7d96213db5328f7b3ce231f070dee8683dd8a70aea46037636564d56", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "05fbf331626f87727bd3a051f0c9dbbad757cedb89f5ceb1c898f3e83ddb4b07", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ahi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "01e3639a1dbaf5818abaee95be120c5c3bf46d5ee1f4c98acd77d1b3b7e32d2a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2bc2ba15a55f95dfd7cfb1b4c3acee397607b2deda9ce1b42e2a92e90b2255e7", + "regex": "(?i)^https?\\:\\/\\/m\\-862\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "689d3c5f3d9f587ac633ce52b439bf6ded875bc827ab5b1715a5e71ab2545bdd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "230f115321223a7a6ee6d8b1d171295c6a197705a8295298653242dcdab7c6ed", + "regex": "(?i)^https?\\:\\/\\/newhotvideoxyz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d8fe6ac583251fd1a0845be9c1952bbff8f30e77bbb1293f7a6ea753b8f4a995", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a1e306a436b042c6e5c2f3cae21505ea670873ea850139161fe2f4da6cca735d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4f39c8eba5895a40b275aa8383c776dc51cc06320d9263f2f03d20f7fb928bdf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "317f178645760f29c8875ce3f9a6d8eb9633a3cb6dbe666e7c9ac4813450dd16", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9673d28f6adf4ef98b2b4c301ab8a18c5fd1f9cc5fb7ac30ec0c5a74f9318644", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wve\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5bd98f5303502d008045d6d87d8ec30728121c6f5c98cfb2e5497516ef4085b7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8c016ae31ea9328b13e41e9fbd60975149cdd862c75dbe081c00a2d6c5641ecc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8aca04aad6936e3f2dbfe2f504d930f4a75a99a28d02efa0af0a798dbc95442f", + "regex": "(?i)^https?\\:\\/\\/btc1yyh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1389cb3a2f7e1e9e68924fcd78f9331cbcec2090368811a7a8c7a0c34fecacf4", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e1935f673e083c15a800262b187148ae0647b77b2df8e2848dd58fa5a0fc7338", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "859b618d9ec96ee84e6c8ed36f7c69d24ebfe32b21dc0e7c7fcf88a30894daae", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "31d4a2c9119767f6ab80bb98b797997251fc9449d6cb98a92aea0c6c4f9eb1d1", + "regex": "." + }, + { + "hash": "950cdaa318c861f44ede98c8430de15360c1c26623682be200b4147045af9e1a", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e28673e06499de68cc71d314815ece83a4d40918e4881eb59f424f0c63c6c2dd", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5785cdc6599aa6225b0b62b6637a37edc74174a51080e932836ef996e153f49b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e51c3850278cfa45e8cf836e2c40a5434a95bbc3a07835751bd125d54e861", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ee4cd9e31764e6c82f77815f3ec51cc816aec835232bd210c317e1bedecfa15f", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c8b080a99b9d7d1da05c0e9f2e5c02cece57d3f9fa7781289d77b8c323e24c38", + "regex": "(?i)^https?\\:\\/\\/btc1hhm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e3f71c23e3af45d2ff36860c5fd6fafcc91f27bf2fec44108cd69673a580dc57", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "06a1bec2ea7b942dc490c9f3a7f5fc9798bc82d4c529b55f1399238cd1cc49e2", + "regex": "(?i)^https?\\:\\/\\/hotclipenvy\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2c8eeefba2983f51f79b918f70576926e14c7860dd2f81a8bf9137888badf0eb", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9558210e381d1d638b477ad8fd01630ea0631cf7ba486f898a36c4114fdca37e", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e0941f887a575afe1f32d7c708f21badea499626ec870a746f297a2a10c3336c", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a8de5fbeaf8338a549ff461695e5be483053b8e1e68ca3cf070c232ea7b27a4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "52f64c1b5e26d0901b3b8a4e71333471891785f6f9fa5dbdfea5909d31a4c708", + "regex": "(?i)^https?\\:\\/\\/hotclipenvy\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f4d807701c26f5391738b90bd78fbe0ef8c0efd640a333492fba85b059608206", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1f36e82f2d050833a2806ea9bed979af04cac9ca61852d6bd00895a93014011a", + "regex": "(?i)^https?\\:\\/\\/btc1aqw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8c21dff4a043b05701367176f258a0e9803a59cf07f02602d8974c841927e4bc", + "regex": "(?i)^https?\\:\\/\\/btc1aqw\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fed6847d6835c0e9ca1017e3512e13dd50a9a62362ecf66a92ab3c42f8400ac7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "69a2a007eae469e12b308076eeaa3b94454da82dbfc67ce6379b62cf80ba631f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eep\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "57242bc31b42846769d3b28e89f06c98dc679db192924097b1213f5d978cb0ae", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8181f70f2b2b64051aec3b734b37796e7f62d5441eb81bd68ca4ccb275a5e6f8", + "regex": "(?i)^https?\\:\\/\\/abcxyz66669999\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fc7334e1e56ac268b852d265eaa05479f8f13e414b42d0b4afde9b6c13c03f38", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3cb963632442476cdaced361baa7d214c0ba957aca583c0b00ef0d8f91443e77", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kks\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8484bb9df71315a368c524a431fd6ca6101cf4f84521e80088838b6b8bee59b3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cdb0cf08792bfa805bf8cc01909ed62a7ee2398cb87d019cf44ebaf0e34877de", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ac704354005b1177e3960f7755559b9266cb7e4843a7ed8e37c59f7b024c1a58", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f2dde5ada31f70c7c081ed6c0735a0c0ac46927be54f45476454acfd17b8b2b3", + "regex": "(?i)^https?\\:\\/\\/btc1yyh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "466a3661cc44a2ef6cd3cd17382df9053c629a73a42158fe272c6440fd695765", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "9d9397d57a5b6f232a64b83fe4d5907d96866dce4ea58592929e4eb151691d30", + "regex": "(?i)^https?\\:\\/\\/btc1yyh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "508e7ae1a195c0a6c638e617572b8854b30a2d4fe8eb70ea14a18c0530494254", + "regex": "." + }, + { + "hash": "ccd128363f033edd09b3aeae70b3b43af3b883c851be629749cd307f5f6330b7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7247a304c23c522f731f52bf4b8cab5627476d37c5823e5fd00165d4166899b3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f759f715896c9698b2dfc7cf0f639d80b3f85ab13218d069d398f49917666c4b", + "regex": "(?i)^https?\\:\\/\\/hotvideotodayph\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "493c59e042dfb2add8222f9a34959f324aa9e1c413a22be36d1f17c930527823", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "184c25d8ae9fa341b89801b3289549783afdccdad7c5e1dac985b6655ee26fe4", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c212ac44bd551e0569c4676a367a6717202764e505c45c2cdcfa8ba41f782fb8", + "regex": "." + }, + { + "hash": "97caa0c23e3edf9a8b6700e2fae4f147b1f1423cc8977649ac68e59e513c64d5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "19b8df9d4b20a1145977a1d6edc8d1bb2a9117fcfd318a178bd05916f0cc78a1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "63b0ef63b581eae3504e313268ebccc28ea5d1ffd443752726afcf8183b4ca4d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fde6095cae8fde1f9aa0e3889d67aefc9ee43e8f357b3c7aafd867f7d8cdf3af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e7aeaba0cc825944ee1f0d1ff014e93f49a7868b867b1edc1451c7e3102664f6", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3b3c12d1c5908cf7d955cd23fcea31b54e9fff22640a6b4340eb7dacc4104f6e", + "regex": "(?i)^https?\\:\\/\\/tjnrr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2fd6bf13c241ac88b8ef7dd555b3c6137528ffb74b75605d834d461836ff2b2c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9f1ffdce1204dda3b9bcd95d4067a1baa18e5fefb705e202a503f3f070b6bfbd", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1dfa0d857a1fc9e800eefd897e3dc8186b20946048e3b48f8fcff1af5aeee951", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c0c93b812c40b181656d3cd22316b8eada0117e38ceb6e4d7813bcb5bbf37327", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eye\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e2cec0ac5786da678590614111a71d3bcaa86fc6cdbd72184602469d9ab94fbb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gyy\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "39e2e1059c4daab07758942434101a408271b2ab7ff1a230e56449eadfc80c0d", + "regex": "(?i)^https?\\:\\/\\/btc1ooo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "82871b5a07d91e571ffa8dee6c21061e861b93e867cd8f774907330f889a433f", + "regex": "(?i)^https?\\:\\/\\/btc1hhm\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "49aa5609a3a9336b58c3b73371c99e30dc56b52e6c759b6ffa2191da4bf66b1f", + "regex": "." + }, + { + "hash": "d8cf8e3e849d16a505ecd84d0dc399d4bf54ce73744678b6edcde7c3344f5308", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5173920f5f045d9a251cf01676693d03af86e0272a3e24381cc3c0717d5e6aaf", + "regex": "(?i)^https?\\:\\/\\/oroton\\-pre\\-production3\\.mybigcommerce\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eff462e7c6def41b8f3e8de43f7f218e725c93f51064fe0d287d916b744396c2", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "97717d3dad5bf7203dd5062b4260dc30d7477ac5c7d2aeaae0df591867ff527d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ce065d3373c1b94eb3ecca466f6c5172c435464e34d32b3f7f5463d5c13960ac", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fa6595a1bf8dce40fcb1cdfa49b3edfdc58485148e931514961d884d47167221", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wve\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2d84f4bf6d93e9bd4b544cb2d1a1f11b34a053a075d7658d890558d8f92835c0", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "209034e7c7f5ed687fe549b485916be2777508074e48ba0aec9cbc6e2e854a7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.luigimarzo\\.it\\%2Fwp\\-admin\\%2Fcss\\%2Fanti\\.php[\\/\\\\]+1[\\/\\\\]+010901934566841a\\-cbd744b9\\-4bb1\\-47c3\\-89b4\\-48c812dddb9f\\-000000[\\/\\\\]+2\\-PthiZnN9z0dc3RdXu\\-p_Rg\\-ME\\=182(?:\\?|$)" + }, + { + "hash": "bb7d720a0eb2805f458ac23c4de73bd762da2c1ef3e7bd9b2ac391e4feefe414", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "9c8e08df3eb1f90e1f9eb171e5418b4b0f423fd2607c6a7ee5d6b1859be43b3e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "95c783503714ef86e68c6678c3c58cca06ac0a55f15ed646587c8735d914242b", + "regex": "(?i)^https?\\:\\/\\/btc1xtx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7f055c527967987df916cf34805995fb73db06ac7bc628fe5c7481c8fec33d1d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4995ca01b9bdc38771718513326ad060f0df8ec19defcbc518324901f08d3114", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7823bedac60c1703a4d42108c6be0b25ee03d881a61ed4fac632e4bf58523ea6", + "regex": "(?i)^https?\\:\\/\\/btc1eeq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2a72b9f7add274aa818030127c6316b9133bcafd5207d9f813047f44b482770c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "99f0bdad51d0d02e71bce3baaf733839772da8f2ff1178de5381677383813b5d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a89934f2585da0ed5fb47d7ecc1eaa4de7a5cd22f26402b23de0ddcdcecb3a1e", + "regex": "." + }, + { + "hash": "df45c270f9054c132893f2d329287a2db958edcb843b5f42b845b29450bb2f71", + "regex": "(?i)^https?\\:\\/\\/maxi\\-865\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0463fadca04a883135c4b916299bb52c8fc597d26ec33ad8a2b8b94ee770655a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ahi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "50df70fc8fddc8beb262075339737b659b0555f627a5e85d557c86116d13ac6e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oir\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "277ec3f2ddda213e774f18831bfc3bcfccb592460a76a06bb8251f4facb6423d", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "eb6b227890a0f2955cfa1e54d2bde850db22daf17e20c7f152f225752d14da8e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f007c490582aa5c68ad779da7293727264e780b6db240756f17a10381023077e", + "regex": "(?i)^https?\\:\\/\\/newhotvideoxyz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c7686bfc5f59fefebac75235427fc11c1b6904748be4a542aae0f8a8631d9854", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1xtx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "419700adc2faf710756721801a0d60c2ecd151e9962f7bd43f8d9acacc85bea7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d6ebc114c377680a9d9af586454b71c60e18ce937fa32f4f4304b0fb68f60fef", + "regex": "(?i)^https?\\:\\/\\/btc1xtx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "18d7c120664464c45980e61e8c9f36fa9f4d586c693da2b83209d2f8177cf936", + "regex": "(?i)^https?\\:\\/\\/btc1lll\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7332f619b254f2153c083536132336dc56a33dad4d6cd1fcecf381da1a96e50b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "beaac27ee206f4df998a3cd3a2bb803ee2241b9ecef9cf9a68bac0563c6a8d12", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "11f58b88c76f891491ef126527605a0d17805e86f20ab2f8cb8552e69c85dc16", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ad839e123654d9365b7bdb5c18de94aa909b9618c2048a4cb9b393ea919f5043", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "822d5073e13b9c2ffc8ce7c0c3b085320a6ed638da6fcced4c8b6c9d15e965eb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8d32ae625508313796414c4d04ca4fec904b74319a89adab6aa327db7da75ad9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "78b0fa4dae6a9c01103bf3ffa213e47ff28f176407233160e280f428b0861e9c", + "regex": "(?i)^https?\\:\\/\\/abcxyz66669999\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8b6693989e3096e0ffdc3f40e8ed2e78272be048f850e2b158d833b9f7889885", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c8915026003ef01056175a71e3294d35e6e423e9687f3eb441e634458ff9ecde", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kku\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7a53af5471a2ebc1b6b96513ab843fd4850db7565934f741f968e10a3b7607d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e988d2d416bcbae99a23b202ba452b4b88e2f935f01554b9b31b9ca213197858", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cb358e6ad5b75ae416ada246c66e423b3b5f774f09b9d41b14255b11e3bcd6e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oluz[\\/\\\\]+BellBusiness\\-email\\.html(?:\\?|$)" + }, + { + "hash": "f21eb4c94e1d605cc68561b595316bd262d7149ecc81810925a7da4e2eb9a327", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "485a97544246579300b9aaab87b648f4a81ca120c1b2fe547e52b0bb3d0ded99", + "regex": "(?i)^https?\\:\\/\\/ribosomemender\\-transcriptfinder\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4d5c95e50e5d9e7fa2893f93f2ca5275459d4988b50863fa4ab4f6bdcc45b3fe", + "regex": "(?i)^https?\\:\\/\\/saylorpay67\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6914d79cc50d037f5d2dc319dee6e341fe6e245a20144610c86e78eb29d7a878", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9ee1d38e47c5a1ce69358c7f53a377366766195fc4b31ef0f848f629469ca141", + "regex": "(?i)^https?\\:\\/\\/btc1hjj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7c4051228eba9055f44e3ae127b97a5de9014043f43962aaadfe81ba7a13a718", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eel\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "57879f00fd986398d4cbf3a776fd4d0d7966aac5eac0ac217a3a867145b4d7d1", + "regex": "(?i)^https?\\:\\/\\/newhotvideoxyz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4d6550f7b811d890fc57f98bfa766c1d60d20dde4d63a010259cbdd92293889b", + "regex": "(?i)^https?\\:\\/\\/newvideohamster\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "77d95fd330e9d0950fbca116145d9536825ae3ea30003be7b699dd8fc901994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "76384048ef0aaf125a086a5a15bacffb6036163bbfec8f6a3c4ec6f633602a3d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ahi\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c8bb598c38d377ec897f91198658f2c36b12ffa15335da2ed1bbf8c2b6248f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "dadd973df6a232265a3962ba7b75f99249e1470f5c087b3f9d11ebb9dd3a5b3d", + "regex": "." + }, + { + "hash": "f1338f877c766b5cd794b225e0da3a9d105b79ec391d8c0b765c2a914c810f4f", + "regex": "(?i)^https?\\:\\/\\/ndzfgn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4e6837baca1a577519a9e0994b21a553ddbeac4618caac1a65d4f59d89cee1fd", + "regex": "(?i)^https?\\:\\/\\/hotclipdesire\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "70495ea6281b2fdca010771bbafc355d2061991a9d368184f8b1675e5f8b26c0", + "regex": "(?i)^https?\\:\\/\\/rdgnte\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "26c0d53a4867e2b6a012906ebad53b0de97b86a1290e45e138fb6167125b68b7", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0e7f81931872e2f99c6a4b46d5d92126eaa4a279d802bc7849c212988ee76d6c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "96473a1a25e210055f3e98da8a7af261adbbefd90185f94a345c586cf659a21c", + "regex": "(?i)^https?\\:\\/\\/sso\\-mvim\\-locale\\-lt\\-overview\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "b23d0525f471a548756598503f605b7f4edc5d436b60fe7b2c816650d0e38f72", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4e6dfa9fb711bcacf2db5b3156d08f0d446358240fe42257da8a571e102a1a70", + "regex": "(?i)^https?\\:\\/\\/btc1lll\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "016ebe652e3bbfcab704dc5965859316bf5e793ee765d7bb5d6bf16c40bc74fc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4d12e867cdd1109e65a336e939d76423a5a01f65add6f1f6ca4d0ca2e78768e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "19abfc93451179fc99ca9348478d4cee57068d53e830e3699a02714313c890f4", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5e2e1e4662b35c45bbb68d71af7b1fd2f46699b384597c4c604acf2d6be54542", + "regex": "(?i)^https?\\:\\/\\/hotpinoyclips\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d98d73e22070749be40e3dafdd4c231e5c6d201dbb647acad300ba5a58e47e9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "77c9c2f7b22be52745c3acb461f9fe8485264d9b53c19e7956a2f38c8ae88e25", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "45c890ca7d7b36960fd03fe20bb2134f218f013fb1befd779f1873391b3df71a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eep\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "782f1645da0e4f9b06846b5e692e8d7b2da6d2a275caab20ed77bcc026f2d27e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2a347271293bbdb0db0ee7052cea404f061520ba621b4c26037541317358d889", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "c87ecd150833192cbf941be606f1eb8fe65a6c7442ee6e36f7623f4ea380b724", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "615f7257777b4059bd7ac887815e6f1b3625611267142af0bec23182c3b2eaab", + "regex": "." + }, + { + "hash": "39cc7aa82583b33eee3c2d38f118fc2486cb222decdc5a75f69436e8468b9ce2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1twr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d5faa5a3aea15a24bf7d38d25b9c365b5393ce91e6e9c96e5ada32e315924196", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "871e7f1128cdcd6e036f694a9eb35d90dd98a8bc65fef7260a8b037e36965246", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4433929007f252d4c06aefaeabc5a15f90e0b080af503599e16665d9282cde58", + "regex": "." + }, + { + "hash": "a1f84f6eec8bd94d17e97c9cff7c01681f6ebd5d792cfd22374819ccb6245cae", + "regex": "(?i)^https?\\:\\/\\/segseh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b2e4440cc685fe92c4f14bc6b5b1b495e94f31956b4774c9d83afa86676e7ed2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ff4c5b97e3dc2d5a2d8c29f2d391919a8f84172c2a654c815472de62689b4e18", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e7862aaad1f06d928a2f34adf223e4db26bff1c95997df8ac68aa04d636b25d8", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "90fd527b2b35ed129b36b3bb368bee7479e84001484c02cf883100fd6378ff9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f4ce9f5584d9f3d2af0344a9418ed8cec996af9f52d60d1bb066df7b4f929bd5", + "regex": "(?i)^https?\\:\\/\\/hotclipenvy\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0d3f9b2d465cf85767198e368ed85bef1d85d144a759dc98962dd95b5543c5be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2cb9f462a3909f74a524bbd5bef9f01f1bd24deb8c451a4304f5667020ef2918", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqm\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b3540d7dc8d7ead9193272e9bcf1781ac12b7226f34e530ab6179a9d59589d0a", + "regex": "(?i)^https?\\:\\/\\/att\\-mail\\-103511\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7342dce954d7f136e4a64e12e3aeed5d19fad796a0c210882fff51b68feb6b4e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wii\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6853ebc5b20a01d91396cbf14a9a7c3ad87f90f86b5ac88bd16eb11707d09240", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkp\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ae40ed0c3ba7b3cdd23bc50b6180b48d15dc199518acee152c014f3ce9665e5f", + "regex": "(?i)^https?\\:\\/\\/abcxyz66669999\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "22277b3a03517ce3c1428bd0d44dc934c90b7668d295002b7a200afc77d46bdb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f3d19ce436d8ba9ba1eac0e7bd86b1d3540a8b52957b26d5605392dddbdb4cfb", + "regex": "(?i)^https?\\:\\/\\/tjnrr\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f02fa467c23db571a06841fbff1c024c700d214474212c71728ec0556d1480b2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bhx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1c142fc5bd1111e9645ae8e225f496e63e5809dba2d6b7d6140c265978c8ac5c", + "regex": "." + }, + { + "hash": "32b960dd084f73b58da980dad177cd74514d76d000a486f46229246983485aa3", + "regex": "(?i)^https?\\:\\/\\/strandweaver\\-codontracker\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "8aed6f0214176005175a510d4d9a958740c9fcc48e39faddc51b85bd0919c6ed", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f70ebcd445f3935d59984f25eb4fc297fe3384747bd6420bd5fe15fe0aac1f12", + "regex": "(?i)^https?\\:\\/\\/btc1xtx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "79e05baa25777e78a47f6bd3af991d420b9ecb43cd3ad16e21dbda2b0fe1d421", + "regex": "(?i)^https?\\:\\/\\/abcxyz66669999\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8c4d16d354499072d1952f6bac48037ddf3f98c040e4484413d18cf8027c1f11", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yvg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "88802d5a41bab65c8c0891297bb2a4c6c87c1f2fe4aa63f72814e37e0bf69bbf", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "799a09764e96a9186b526d24207735fc02efa1b890f8369479ab34388656f679", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "29165e9f52b493251140c73fddb9c5b1c81ccdbb6f4abf5a3eecc7f35d775004", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0da342a3a3a82563dd047404472a394cf7b544638e0ef726d9247c20e082cf96", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kke\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "edeb0966a3f8b839d192e10d2334e2dd3aa204b8cbb7421142fb328d7e36e69a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kks\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0e843cafb969e15bb4c9c909c558fc6ac5077e1d283b337c8d7b782cbcaf0ab6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eeo\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6cf1d6188961872676216f78e00350d50170f8fd3301d70d14e08f2258264b08", + "regex": "(?i)^https?\\:\\/\\/btc1wqo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9a93c9d00bdaa3b2d2c14fce631f840dc54c38a8e7aa694204b5fdcc4957c8ac", + "regex": "(?i)^https?\\:\\/\\/bsgdxd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "dfe59d46d15861a73f89b64e57a9781f2defbc1c37c6909f08c22c1c4e9c776b", + "regex": "(?i)^https?\\:\\/\\/rdgnte\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a9e4c446d858c509ac243865bf9fbd0ed6d06ad862de16bab6b2d8b2909ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5b3274fefbecf385a815cb7b21768b8f3165bb10788df8a7cc636c9d49ffc91a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0975851b48a7d7fecee23c7a5775b2cabf5431989ed69baa0b302889c98f117e", + "regex": "(?i)^https?\\:\\/\\/btc1wqw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3a0e5500168f60def65822ed417182d46b1267ce39dc8c65ffa69d6e2395f1b2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "49cf7fd63cead1d72048fc94108a1986e8e898f7797f01407ec7a64e076de37d", + "regex": "(?i)^https?\\:\\/\\/fhbfhnb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "05b59400181f9e3b6158fc74db86e9e5c123b5b77e46cbfb0a56996b538102a1", + "regex": "(?i)^https?\\:\\/\\/btc1iii\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "beaac616fcae704c64758592b98f64ff335ee4c1baf4eaacec528ced7098a072", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1een\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "37f2b9af88c8b134048c956ac3510e2fd75856ac84fb38cee00d9ded776d885f", + "regex": "(?i)^https?\\:\\/\\/hotpinoyclips\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c2f9eed26e0adfde4ceea3bf558a3a7d0ab26a47f249841bcde270ef0a5cbe8c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bb5fe35a3c2e347bf91faeda02689357b93ecc66d770412658c5a8326a3411ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1sss\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2424d4018c983a2d52f7360a7172412b4acd30a9ab4acbfdcc7bb9a76522d956", + "regex": "(?i)^https?\\:\\/\\/btc1jxj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "128b7d922f14b0707bf9ab2c05950d0edf20f1435e813a4f0342daed1f6a7029", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6efad68e5e357d017f0c3262867818ef482c33fcbbd5b19220cee4124d052c52", + "regex": "(?i)^https?\\:\\/\\/btc1wxa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "450409a29a39fed740e7fbcf26d86813cbd927f2a8e294f98906174939cd501f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7263c26b7dd2bed1cd796319887173a9728fc887aeea8ae9a0e98208f79be69b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "558d46f6babbf7269a61ca884f55c47880a7cae501086b78098cb96dba97c2fe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "caf37c9669d7fa0377c61fa8f6ab598bc5c2777baf6ed11045d86d68e01b31bb", + "regex": "(?i)^https?\\:\\/\\/fvckvideo\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b90d1f496bcc4260702d64aa95997e26c8f9c692c49e5dacbc046bf7d0e4afd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "bd7aa6315768114ffb55b7af24f9317ca692d1233b020aa8c5911e42101ff03f", + "regex": "(?i)^https?\\:\\/\\/bhjkbnjkbjkn\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bb2d3a1c59eb51ba210d5df416973fa03f64b93220bc243a70cd14437c7d4a74", + "regex": "(?i)^https?\\:\\/\\/btc1qqy\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "87de68cc20d1b307c17d9c250de9d86c9acb368e9a996f49413a1fdeea4b9621", + "regex": "(?i)^https?\\:\\/\\/btc1eep\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "aee6a3dc781eab5b8435bd64ec52a4e24e2bede93ac9b7c1c22c63542f520501", + "regex": "(?i)^https?\\:\\/\\/pinakabagongmgavideo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6865f5e9526bff943bc9885683baa77fbbe77fb5543b921ccddbd4a214452092", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "965f6f3ed2e0c9db39b9d53b93b01fa0efb5e8fb42398bb7915e7b91ad898084", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kkt\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1d2e997e58efb4f8020e1dbd05549fa5dd3871f1af103b78d360dbce25fed34c", + "regex": "(?i)^https?\\:\\/\\/hotvideofamousgirl\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c63593b4e9560b388d9608cd488a1694d5c303d33cd507af29b166742a6d8c1c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1etq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cd90193ce9a0d029fcdd80be9ac26dcca9bf9127cc39033d16e9f0483d9e4a49", + "regex": "(?i)^https?\\:\\/\\/btc1xtx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0d28a3e359528dbc55bfd25d67255e8e1602e72db7a3c394e088a3486d9da9f4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wve\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a9c72352a7c436e5058c512a079d491419225f266f4105a2aea3e78c596e7cfc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqt\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5793cda1f9b1a9008fee668d63df1e31bb4741ad46e4d049456127cc51d325ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+6158df43\\-82c2\\-40c0\\-8a85\\-69337acac114\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "56bb57a817d77fc3df780adf9c5d74ad1e93af3f35fdfe089c821970e1609b18", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwd\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "952b39a1a9f923b180cfe35a7f530f815e7ba1a2414b550b6968d1e8d5ecff41", + "regex": "." + }, + { + "hash": "9fd82a846e1d322c3cfe379fe6a58c198c1788a64f217f585441003b57b2f6bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link_card[\\/\\\\]+d9e1cfd7(?:\\?|$)" + }, + { + "hash": "e3453da45a7dc6d0fab0ac09b1f9f7749d4101233547710ba702b6f6df131669", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=XmJXYGTlJpeNDZBwnugagPGiH\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "42fecc5c26059dc038684e4b27bf5ad7e11e6bdffd0788faa11aadfbffddfa55", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3f84283bea68b72d9f5bd3b60452193454bc671e4d69ab9d319f572c18ea6e7f", + "regex": "(?i)^https?\\:\\/\\/gffggfggg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "33155987e385790829dfc84b79ad71a112c08b499375458d78c9ffac135ba12b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c03846a254ff72e7733b8d3b2b5aa068b3269ec19491a1431731196eac159a60", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bd76b1513c42b82877346b3bee912d092533d5fd8f7b90dfd43fefee84289297", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c\\?btd\\=dHJrLmNvbG9ueS1zY29yZS1yZWxhdGVkLWRvbmtleS5ydW4\\&exptoken\\=MTczMjIxOTk4NzE3Ng\\%3D\\%3D\\&lang\\=en\\&lid\\=7dd5a582\\-b0d4\\-4d5e\\-8984\\-002c286eefeb\\&pd2q\\=YTE9N2RkNWE1ODItYjBkNC00ZDVlLTg5ODQtMDAyYzI4NmVlZmViJmEyPTZiNGViNThiLWY4YjMtNDhhNy1hMGNhLTA3YjYzYTEzNmY2ZCZhMz0\\&r_countrycode\\=US\\&r_lang\\=en\\&td\\=dHJrLndlc3Rlcm4tb3VyLWRpcmVjdGlvbi1taWdodC5ydW4vc253ZGFydGY$" + }, + { + "hash": "d79c6ecea1568d3e9171788333cf5590c9b86d6edfabae03027624adf14361df", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st1\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "249312008fb0f3286fccc92b52454f9e718c72aedb63030984c4880c238c5dd9", + "regex": "(?i)^https?\\:\\/\\/btc1wjy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e3e96dbe27dc46809dfd2734e0a2aba62ed5ef9521703ee7460d75207eadaab3", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "378b9f2b7236b182fd4123e080afbb7ecf8d154ea287c0fd6a584dde6a57c002", + "regex": "(?i)^https?\\:\\/\\/bfdsvw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ba4d18399eb3578cd37e37d1fa15651f86922ebf0ff4addc25b8849515a44dd7", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-en\\-direct\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a7a64b6ec5d1d0cb11e7f6592c6a2d3602f7fb5cfca4ba6013f167ea82920eb7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jss\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "689d6db77118ec9d7969680bd4f26d31e28d1b6b693483a591ab181ded8c65ed", + "regex": "(?i)^https?\\:\\/\\/cams\\-tubes\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9a2fca48dc218905edcee3402e4531f452087f7ccf944c8cd281d2cee954ffdb", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "337ed2303cc69e13b1332b2fc1cd3066ea5a24c7a4604e31533366db2cfcc7d7", + "regex": "." + }, + { + "hash": "ce6035d04945534d9c4127d7a1f09b8b64f3d3f2131de5050966601cc68d7e3c", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "71c63257384541d76197e509debbe50678e018907a90fa47fd7442ce226497f5", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3ac7cd1d7acdca9f6fbb0cea10ac605d4a1a6b4a37672a7614ff88e49e3254c4", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2bdb1c87d08252c24275732cb735ef90fe65c9686296a1bda1a66e34d5c4eee1", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d3265201649f26ea8038c7fe01a8414b513efbb0a2932d1bafc2abe85890f01d", + "regex": "(?i)^https?\\:\\/\\/young\\-cam\\-tubes\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "87adc49f90b9d80b2c15416093741a05ba49caea3aa7bba4dc24bc86ba50d5ef", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeurisme\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "374b8f41846d5307937b57c0fd062adce2929dbf44ccec9fb50dee253d6067ed", + "regex": "(?i)^https?\\:\\/\\/btc1jrr\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9a12f1bc07b128f2fc41f121f0b86fbdf2f4fdae6c69217feb7991e4aeeb818e", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e625611e99975b8778021329965ead6b1b3a6960d3b6eec3d24715a2d792224f", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d577a271059d3b9cdd48e1f1520bb3fe6f08d7df41d7d96a72b14ceac9f8d7ae", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ius\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "347e7ba287c479952f241936e920ea1339718ca8ee10ae46eb193ee89ae782c9", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6980b05b4101c983937d139e452662cce24d886993e552281dbb22caa6e7a464", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "79da0caf84ed46a94daa72332c99208d10a5a93bd372cad4c2605619211b3d8a", + "regex": "(?i)^https?\\:\\/\\/video214314\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "090d529eb6a5df23732af5f9f8f078cb7272da5db055431bf78e3a8fda5ed4cd", + "regex": "(?i)^https?\\:\\/\\/btc1yue\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "74fc96ec66671f378b957f1bbfec235683855f64662a697a2fabcb275d318766", + "regex": "(?i)^https?\\:\\/\\/real\\-spy\\-cam\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "57c356d245a5c75bd10bbedd2e6053361f105aeee661407ab1624a22530b1ae5", + "regex": "(?i)^https?\\:\\/\\/btc1uww\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1b9a4878f13f1c0e1295e307bdde428e057c019ac339d50b457c5b89c8c09b7b", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a03317fb775512dfe3718471ef6a16ec30cd56be004c91cf662db9d78002cb5b", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "da74f6c3d4c09911e528519f30bfc24bde5426ffaa26f5f552fab222c385872a", + "regex": "(?i)^https?\\:\\/\\/porn\\-par\\-webcam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "21682f74dbf75ac8136ed051255c1793a82c9facb099413bc7b5ab0e84f04bbc", + "regex": "(?i)^https?\\:\\/\\/porno\\-de\\-web\\-cam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f183bd24298b67b68454dd2922bce74aaee77b7f97c8a88ec88decaca7982957", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydv\\$g\\=JswGhjsY\\=LbngjTsm_Ln\\@v\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "13aa2fc8bebb216797e9e32d34cf1b952f67d2aab9c8e1b1df7b8b0166e620a1", + "regex": "(?i)^https?\\:\\/\\/btc1jaa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ef9086306048f2dbfe077bfca80559815c572878f3575089dd0f8c0bbcc0700d", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "50828ae62d24222cf74175d6c8b64d601da26129130efa9bc77bbdab1534dc0d", + "regex": "(?i)^https?\\:\\/\\/btc1udd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c548e82ee84ce5ab4f20b6ad588f483bb2ba352c77707572462a6b3c151e7ae5", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "44c76a7d320f140dd086e066664d6d5c97420bf7e2ba4c65159c2faf07281ff2", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "004c00548a2ae4205b4baac2b30f9552d251b560fb7f8705d6d66b495af67f8c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ZFxdoIoABtQnPS\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "0f9de64ecf195b1191ab4b829db20bff4fa96ec3f06dd7811f0a212026d18f9a", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d446db2ff43789bbc4dae2a01bf250b7150e3cfd304594da05a4859c329db210", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "44a606acfe546682aa63e57d5a9e23136beb05f9bf8768ad65576064c3160546", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrp\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1fa5eadfffd7079fee11c2981f1c8601845d54a5d01ebd83e058e3a9c0b8eff0", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0d15d13b612597fc47c9ad543848267e9898fe82b60a010b7bdd4e399c1edad7", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "97712a5f5765dda1f26908fe48ddf2a13a50a3ef16dc34777a62680f9185620b", + "regex": "." + }, + { + "hash": "77c47717c337a938e80eb5efaa0954d16d744bd958096d86a55a9ec7ea0edcb9", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "18ecbe63fdf1e8073c4c526e4b69efa54d741bb467aac800d389842c1c92ffcc", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d03b399874dbd0706a3ae0cdcbf0ffea24d4e689be499c3c4c7b49198d8ef14d", + "regex": "(?i)^https?\\:\\/\\/btc1uww\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f380cf1e990bb9bea31e8f36b0abb344ba7d7ec9e77bb5e1f90c18e021257551", + "regex": "(?i)^https?\\:\\/\\/bfdsvw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "441246d37f5b9caa8ced358995ba7076e59c014dd6a054a94c1c532c00a8fb60", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-en\\-direct\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4dd1c9ee482dbc1adf5d297a0da740b892368d5d329a91b3da342eb3f15c0447", + "regex": "(?i)^https?\\:\\/\\/btc1wjt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e4f2a7bd57e009b1d7a86117e93974e291afdfa8fe9650907d00ab71d98c8363", + "regex": "(?i)^https?\\:\\/\\/hide\\-cams\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "648c71c4282ee48a39281556fbeee220760ab207e46b7c369bd8ba6403def5c6", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "14c7bf4fe91df1c090db95f44cdb5fbdc052345e7a7cdc6f769945ee63e34c01", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a33ba3290a5fad14a19bda4c0e7a67a09127b10dd1cb086cca64101309c94c06", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "45d86e72bdb67fbed0040d14c534be3940d62d1364e592f511597a74f556ba8f", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tube\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d6e88a8cee40193a8b7c65fe45e5d12d929b0e01d4f4bfd00054b06a77949d65", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "459b2a4f1631b8bac2f126361af7ff63e99c87eb60982fa7df26a3858afef2b5", + "regex": "." + }, + { + "hash": "4d7a04336d2be8bfc72e142f510028d4610c9f71ad705860d8b433056186aba5", + "regex": "(?i)^https?\\:\\/\\/btc1ppa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3ae82f0d488bb2cb412494a572f9d58986f0a052ddef38733d876cfb75484b5a", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "94681301dc0adeaeb5dea588e95f7f62be51b3b798330fe1950c5c7355428d61", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e5b20ac8e236b9d9f8ff6d073d035a2af98c0e3302d90944268f034d2c89a348", + "regex": "." + }, + { + "hash": "7789e55b0893fa4ea60a42c9a47253521bbca1e705c19889c88f2434fba61539", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "68c1b243cdf020bf12fa084c7295827fa505a3ffbb52319c2533d8a7026b3fd5", + "regex": "(?i)^https?\\:\\/\\/spying\\-cams\\-tubes\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "82de0042496d0158a73cd7b585016d75ea0e3e9421541588252383635b869a8d", + "regex": "(?i)^https?\\:\\/\\/gffggfggg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a7331f9a2f700d68ecef4b8cb2c8bbb3ed609eadadac9ce18057a1c2b87005be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jss\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e407d8644cbc2be6b8e35c852980577d8a406536ba5ed8a2addd9cc7c24434e4", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4c940fbb69bd4ae215ee4dcd718e6fd21c7656690ae6ae9dc73423bbeed5975b", + "regex": "." + }, + { + "hash": "4f56b586fceb26563f4e90e28b41528e079fe9197788f975d9de0892c460b717", + "regex": "(?i)^https?\\:\\/\\/btc1yue\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ff665bfcdda44121b589671abe35b16923fcc6494cdbd574c0126e27de5a7368", + "regex": "(?i)^https?\\:\\/\\/gffggfggg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e590637b4b0539e7c49565cfc1e79ef2f1c45242e1956c578d7068d8e78be08b", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-porn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d5c2e5bdec6ab5c50d3b0d477da49c77f79b0f82cbda40459b43e1fbe11fdd44", + "regex": "(?i)^https?\\:\\/\\/btc1uee\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "63fc9c990cdc5614525c9c754efba6cfd3d1103916959cddb8268908ff5a4950", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b753f5b726ecc3dafa17a2eb8f43586c16a4e386820fe043149cf59bcf0427de", + "regex": "(?i)^https?\\:\\/\\/btc1jtt\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bf5febc45119a6bcc951e40b68dff38678661a03735b8541b25936057a7f7d6c", + "regex": "." + }, + { + "hash": "7b8fab9587a74b2982c7cad0e28b8ee72757319c047d11678d17ed73444cb398", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uee\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0c27a0c3946be65f0a717b8a07e6dd82fc7958c1ba7722a5212602230a0b72ef", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "914d0937df5c8d76ef105364b5364fa3cd61d2999b87958b19e2fbf33662d547", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "21e190e236d7f69fdbac41aa3b845ddf4b24cb33a3e82f3aebf6f661ba45dd61", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b8f20209f0e1216026ec45284aaaf5086a0ef272153019be345a88c8728b34d8", + "regex": "(?i)^https?\\:\\/\\/real\\-spy\\-cam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0b3e2e7da5c357d26eb529890adb077e60091bc8a4e80708153c32ae387b9978", + "regex": "(?i)^https?\\:\\/\\/btc1zwh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "374b5fcbc778955acb239c38d2026e0f013ccf157c059388c0a102774f504e53", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c940b573eadf9112d5622b44bbe46671cf2988fcc6f078e9e18534207e460a9c", + "regex": "(?i)^https?\\:\\/\\/young\\-cam\\-tubes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a1844d7805247beb5062e881235d69410445453263beed5b2f1e7e4af3126bda", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "794aff035994ffb1b29e01dd297ff936d65ac2f2a3f18a77b073c48c07692810", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "99da429010736e33607de33cf137a1a93a719da08ec96937287fabb9bccc4ec5", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3a7144af702a2b92f9d194e4dd1bdc0a6514d42605df2a770101d29e55e8027b", + "regex": "." + }, + { + "hash": "8da66fe51be669c6ed1026e4b1825fa98655931e08fb9e4ada921358cf9c830d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jss\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bf1bb63534e146b23bfd76c9a615ffe5b658f7d2bc6480845af3b0a90cf7343d", + "regex": "(?i)^https?\\:\\/\\/btc1uuk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%252Fmua\\%252Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3F\\%3F\\%3F\\%3F\\%3F\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "857135f3dcf4bb9d3bb4df9243c1631adac721fec3dba7d6144b3178d10fa196", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9cfa3de234be1565ddf9181a2347ff6aa521d5d6cb5cb73f017cf3f005448220", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-masturbation\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "97458ad7844788f050af12e79843042313a213765afb24cd64b48483dfd51da0", + "regex": "(?i)^https?\\:\\/\\/btc1kwk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "344a2fc4b4f91d725a5dea64a2b7fc883709154c55bc620621f44971b3072c95", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e9b11c39e83e153e3f54ef13601a7c821380f494775fdc3143d82a2b921738fa", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-tubes\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b0f85274633974c26ffa6dd9f27d83b174daba3c2ffd3ede03d19873c2d7ef3a", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8cd40e4d7e9f6266946c80109f5b86497eb797128b66fb63e61a8b0041b2e8f4", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "00f925a4e685a2ab1730bb93b68fba8d28986a1b8f879c20d60cc4c0e1411433", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "18c82128e0468d8185dd42f8e7353d7af7209052e339571f1f654c48e9cb7b63", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-x\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "425cec5e85a8f914aa46fff6e8aa059b9908cd605168e4212f92508d8124156c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2466f947c5f2a8980ccd1194aa7289bf2876f716ce98eb0ab7310ce0167a787a", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6fb35f14f0609e7fb34f622da5ce240ba8e7261894c61e1ad22dbe16f1d83bc", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "29ac4e553358600dad28b5cfabec44d37fb64b534a9322d5b4c0b589e434dc21", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0c7de7f56d4071cabeec999097aa97f7dd8397c34973c6052a99751cbf637f4c", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "974285d28acf2c4ac1d20c2c92052a5646d36007cc3a35c116b2aaf9bc34c2bb", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "de9c409dae739a752c38237cdc98251a4ddac0d7f6da51b63d60b19f27435f97", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9ef01f07f6e78e89d5dc28be27e6b2f8ef2af0b2954c56a7ce8f1f2eb0f666ef", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eae89abd8db047a1495c8435a23d2aca2ca7f906530916f3d8e1a5a5386a1ae5", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "53639dc04899c30afb76c6258b45d665aa134f36a7e7b6bfa84ed331e7ae88ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bfdf8e922a7299f4d12c5ed7c876e93a86001b675e153e1e5e625c1c651cf899", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a2a2d650f76676107952661783071bf72b813a3163222f019867de440a6f3", + "regex": "(?i)^https?\\:\\/\\/btc1uyq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5c507d6a458583faaba15000963027c1d955bf5c32e8e5f32ece932817cff634", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bbd67fdc06c7d8dd70072e26e28b01f7565a0605da5346fb06f9807546ef6134", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "14f9a14b17f3be940b01e9d0aa5624dfb4843c44ffafe4143aa559360eca8f46", + "regex": "(?i)^https?\\:\\/\\/videos\\-voyeur\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "92fbba702f34ac645f5c663f787cc072e06037db0d97d37fb64a49a4e0a52be6", + "regex": "(?i)^https?\\:\\/\\/btc1wuq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "49f078681f49aec9750bf36ab2161b6db6060ee2e16ce874d0de0ff5aaef7831", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "33769e5d6b5b6af81db41fe0dcdd5ecd1356a3146b99cd4a4038c2fa257e7bad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jss\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f9e449435bb6641590a0d01f10aaa7b79fd7528712f7fe2e38f0b297b56f19bf", + "regex": "(?i)^https?\\:\\/\\/porno\\-cams\\-francais\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "66dffc9633ba6ac4a3d15d24465ae1653e569080d9c603eb81852147fddc319e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-french\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "37df76e677014430710b7d7f93277af8653279c9f689b7785af6f244792fa86a", + "regex": "(?i)^https?\\:\\/\\/ngqsht\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c3403b6bf22e70721c30f8235729469744393678e626d1b60ab6d2178c3addb8", + "regex": "(?i)^https?\\:\\/\\/cams\\-tubes\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1d88ac9275adc7724a0745e01686c20a0e3495d4dcb2401fc1405f2049fd766e", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-masturbation\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fe977799caf4954e4962120829ca07ff649b4aab55025e7bf3bec5ce615e108d", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7bdf8d7f4eac5e83d7fe37cf8d13ab799a3e69e485847e105e6b71d2352adaaa", + "regex": "(?i)^https?\\:\\/\\/site\\-porno\\-en\\-live\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "19e4315b424bb42b91e48c63523df9af5a2e420443b04c49911e92107802d626", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "12305cd65113cafbb7a368b7cd2b0c58a661e0e17a2fb7d4a460a5563e66c25c", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeurisme\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ac000f6951defe7c6a7ba0c13b87e8e4452c697ceac435b2978264aeacd68e2e", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-porn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ff907ccf257f07651cc237c881268a42f3a5e0aa4c91326b6da817cd078fa822", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-vid\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0367082769bcb8e2bb76d0d0f58ae766ddfe9b79d49b1cb8563f41c2145e0600", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-video\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d784cc04da0b32cb263f0cd5f9e61e34f17823ec787abd9e465849a399e1f777", + "regex": "(?i)^https?\\:\\/\\/porno\\-cams\\-francais\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e8052107a10256a035cd4e134c10e30161d24a3b4fcdd2561f6aa13c5b64482a", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9297dfcb7c500baf6c13aebeae6815a64f709b2e6c9f2cb09212d1d1ffbb0786", + "regex": "(?i)^https?\\:\\/\\/btc1jww\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2863de139405b24554c29533020c86dd68bf8815315c5f8d9fce0240cf930a9d", + "regex": "(?i)^https?\\:\\/\\/btc1uee\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f421fd41a51edd71067415cf3411b81e2d396424e19ff0583cd4325c0df478ff", + "regex": "(?i)^https?\\:\\/\\/porno\\-de\\-web\\-cam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c9199533edff787d5fba611b59f538342f1023afdb7cebc7fb045a11bdbec440", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porno\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a61f6c55a5cc1a7e318bc3b4a00471c94871dd6eed58ee0846dbeaeab57b4ab4", + "regex": "(?i)^https?\\:\\/\\/ngqsht\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "22a14740709633a4388723e72cf6d996bd8db6896b2d1ee0255553575fa42cd5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b5ee56757c5d2db68ec1fc6e0822834fbd90d0b927f04c63a0694ef4679728ce", + "regex": "." + }, + { + "hash": "15705dae9d57ea681fe0d2e9b7446e9097e3bbbf86a7afa308c45091d5acf695", + "regex": "(?i)^https?\\:\\/\\/home\\-106613\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "71022d54acefe3929afac38837ee1cc7531635568b89dcaa2d15e329e9d1d234", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9b01fd13d7166504ab4d9a0c5566ad07fbee0da46d5e7f04006c124bc493c499", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d63269d4d3ab864fb020310b9935d771679f41f06bf8e9a8ed82e71e0a532e5f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pay\\-la\\-ter\\-(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "be9a856fcdc38d173bc279325bd46ec43527528fb55fd4759f4426ad65dde3de", + "regex": "(?i)^https?\\:\\/\\/ndfhcd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a20b86de6877671f0a9f4a626c62b1fa057600352f235132e3c888434e7473a8", + "regex": "." + }, + { + "hash": "61fa5f6173d5ee3bd1f28333fd6ae00596bb3d830cfa69d85c51c1232608272c", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-masturbation\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "091603cadecb10408ebe2b65cc7925ba4f1857e1bff99e71404b6d3ebabf06d9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c06d6ee82c0fc8689d7fb8ca4029aed072aff31701ae1aba4fabe0c0f9f388ca", + "regex": "(?i)^https?\\:\\/\\/ndfhcd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b0a36795b974eaf943210c8b946206e52fd0443f546cfb3873d09d2b00787b95", + "regex": "(?i)^https?\\:\\/\\/btc1wjy\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "049c3f3c8e6676264c0a777ffae4152f21079b1bb67ecfee2ccdc12783fd83d1", + "regex": "(?i)^https?\\:\\/\\/porn\\-par\\-webcam\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "647230e070d207456db920aeab8697589cd2c82bbb84938083c17446179d001b", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "edebe49eb7568e361ef42833bdd2f5ac2dab604f4ff838bceb19d9577c8ed0b1", + "regex": "(?i)^https?\\:\\/\\/porno\\-cams\\-francais\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "65e61c7d4b2def063541efe6d80c5f38c24c663047181725014ebc8a4da3648f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d36613edd25c0441f60ce914cc43f15c428d078115608ac2c9367c8b55d8c8e8", + "regex": "(?i)^https?\\:\\/\\/btc1ppa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bb280a2d87339036a9b9546709fd23fa34dd1c1857b9ce468721dfe322f3197a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fa7dfecf82af48991b625438c7b505dec29d885365d67f9a319b0797219331c0", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "093a158cd1064ee8f32e3a6ae5de89089ce9dfcc2539e4d40f0e8dc5153c43d0", + "regex": "(?i)^https?\\:\\/\\/btc1wjy\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ad31328f3e2a7cc6b1ddb849d4cb34bbee870cbc0f42ffc9b24d940b68d6d785", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b481142530397572bf41e08950224bc32539996b973501cb2ecf3b9bf2f51193", + "regex": "(?i)^https?\\:\\/\\/btc1uww\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5677bfb90315a964ac1604feab2308a2f2c194d722f70324564d838cea9b9eb0", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "13903ebdf5233049fe6be02a427431c783f8e2e856d7dc6db41a40782a284ae5", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-vid\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2a19203108db3f5421331863244cf9a3d3be4d8ff1940ee8be868b1d6b6bbf5d", + "regex": "(?i)^https?\\:\\/\\/apri\\.94\\-141\\-120\\-29\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a7e88056b493907cc334506f02005c7cf5d772a3b74892ff3d4e142023a86aef", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "222ab378cb9f2101762b4323649ad98bf3bd913dc58bfdb3c665bd4b1b1ab478", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7bd16461398fad66bae3a380c90d02932fe7b783cf643dd1dd7fd73c4604f068", + "regex": "(?i)^https?\\:\\/\\/spy\\-porn\\-cams\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2ccd1fb84240302a4f5f45c12072abe88232543111cdb0fac91029c79e563416", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2e72432d76c65b4c4dfb236cd714da470ad0dd7551e0e0448a72dc979543b915", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "49b77c376acacb855beb2dbd4bf8202790bf169bcffe98441edee82568e6f141", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "21f77efcb8115676932b50d3fee016fa5335a1a280d88657cabb3cb947202b0e", + "regex": "(?i)^https?\\:\\/\\/btc1jdd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c6e6b76fa20784a0d786be917b25aeca1c091f7c8ba0730e7d8c2baf4ecd7553", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a226a2191c686736e7a7827d4730f840f43efc553c229de4257bd5f38181c12a", + "regex": "(?i)^https?\\:\\/\\/btc1kfo\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a3744f639765aa64459a8e8eb7e296ed5d75c3e6601ee3eb6e0deac019d25bbd", + "regex": "." + }, + { + "hash": "b8f2f705972885492b6208e5ef4ba8fb545066f91a19aa04c4efe94ecdea5ec4", + "regex": "(?i)^https?\\:\\/\\/btv1jys\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e814643cad3a8132164885010d43decdd1f1fe1bcc5fd1e928f9e5cb53f9db29", + "regex": "(?i)^https?\\:\\/\\/porno\\-de\\-web\\-cam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f9a12b73d1b46b8e55a03c82b44030cabd6f1b6677edafaea52ff3812c1e55a1", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7ac96d4d782e7f2f4fb39acaf37edf4cfb000c2332a43bd477855eb7830d43b0", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "185b93955d79b0eb51e14c7d9c02820ad0628f306c4ae362af40d7d41ab0490c", + "regex": "(?i)^https?\\:\\/\\/btc1kwk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "db3ff6cd71fc76e4086a99605995442c858032192cf845fb4c07e166a6ce4945", + "regex": "(?i)^https?\\:\\/\\/webcam\\-en\\-direct\\-porn\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "841f92b84093aa5876f767999b9da18f1157f8ee3147cfa559acdcd00000a50c", + "regex": "(?i)^https?\\:\\/\\/btc1zwh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7c53ff991097f401cf621ec33e2420b2b00e675d9b81657866a66afa8b9eed6c", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9c57339c78c1704220d98656b63706a563cb4f51c612c8a92bacecb67c2c3ef1", + "regex": "." + }, + { + "hash": "92a25fa3567e6db4da5819bba543ee8e972d47a89c4eaa2e3006671687815893", + "regex": "(?i)^https?\\:\\/\\/homemailatt\\-1021518\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f2fa150e899910e6246d481270c1d66814df4dc7ff6fdf160272f7941de53cdb", + "regex": "(?i)^https?\\:\\/\\/kkhhh6666999\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9f662f6061b23f5f0af18f96c3d9c895bd80772cf1bc49f02f23cb701400cfaf", + "regex": "(?i)^https?\\:\\/\\/btc1jtt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0542ddfa02391079e9b4ee0cc8df2569235ac31bb144177a763e253635b67277", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-porn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "804a58702a9a16db04e2c40fe69dda9860823bc8b7c7e1a5ff8cf7b394177d7a", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "60134380e4388f83aaec94a38cc75ff93783aced8c14528f2bbc96220433b4de", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2d385b306d7fec36675b5791180d3a3dba0fba0a1161d9371824a31c02bb4ad2", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-xxx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3238904a56ab2d4ced5d54114e8166fb214ff99886c0432b580888b11008a02f", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-vid\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "fed613878fe311e514bfb130a41ab4428e7672d48aa7759b9d45f929c8741ccf", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "493cdd3753ec3d95ffa862b1a065b0ea48017c0dd986fd35a7b20ffa93ccc286", + "regex": "." + }, + { + "hash": "23095ea5e54b4d9c92c977f8d31099388d0d905b2838cf7bd1ee42df82a3a117", + "regex": "(?i)^https?\\:\\/\\/btc1jaa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f2d6de4888e8db6403e0273441045301bce998bfda73f46c14a852b1cc968f2f", + "regex": "(?i)^https?\\:\\/\\/hide\\-cams\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5fa29cffc0c1e452a24e09dfe4e4719776f601ca46a24ab3abe89dcdab7410d8", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-x\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c133f07f9a8cfe989383bc6f9a96461d75b52aae3eaa14bfc6ae3266dd364a8e", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8259f9485e6f7bb0e3ff7722da26efd19704672a852c706bbb32d44f8d5d0b91", + "regex": "(?i)^https?\\:\\/\\/btc1uee\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "313ebb549af2f16230f5755c2d3f813ea11474acde2ab429a5918ab9db6783c6", + "regex": "(?i)^https?\\:\\/\\/spy\\-porn\\-cams\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "29967c4f1893c7f3765b1ee5ed9547eed0940f99f0e4acce5d9183bf1d56f9a2", + "regex": "." + }, + { + "hash": "aa44072bb5324ab05184920440dc54cb931498632fe7ad1beef06a8aede3afad", + "regex": "(?i)^https?\\:\\/\\/btc1uui\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "de505778fc1e5feb90c8e59398ebfb2503f048303fcbdee257f00890daec1d5b", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b3eea1d695faa5723ca71e38a49531591bfbafe0b4a6a48d710d41adab9c8c35", + "regex": "(?i)^https?\\:\\/\\/kkhhh6666999\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a72764b5c8720af0d0ed3ac3cdabf4f0d9ba97632dc4c50ac4c7bf4096b7e82f", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "39f6f25f48d2fa7127d31a8ee1de14d6ad3f1cd2e72e62e5f874ecb42ad6e0ed", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "25d736d0e2fbbef75f7c73193c2a91ab6214f778d0eca19346497c68c00ede48", + "regex": "." + }, + { + "hash": "acc8a4b561ba10ca7355bb86dc25aa72668f5466be4ac0a22c725894043f4eff", + "regex": "(?i)^https?\\:\\/\\/bfdsvw\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e3629594e79f12b2510320f56fc0c83d2b90cf7369719601cf1ade4a4e7160dd", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "505213b01a4161dcaab7fba4f3d3c23786df793a83fec43dfed9febf70cf6104", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e02286d285a9b7a1f0a24ac02127637a3202fa8df822926114f60e99ea149388", + "regex": "(?i)^https?\\:\\/\\/amateur\\-girl\\-cam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1459295246a2a3ffafffe5b8fa1de8c977d98324caca821f33885ebcf682df83", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeurisme\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5b903f99b99825fd999ccb4bf4865dc5c3471e482a3240af06a5a73a067e96fb", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7784d14a75899b82b5e57f4ebd6b9a5867316d785b27ecb6e0f2707f4c621ef3", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f86cccf309ab5fcf4c2ff7403a2c9640b2891361e21c97ca13238926c7d9c591", + "regex": "." + }, + { + "hash": "5a300cfc82c9d2a9d15db3e7293b6c711238e03e4b67263b2c88389c3e022b18", + "regex": "(?i)^https?\\:\\/\\/btc1uee\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "31a6dc479a8e8c49fe27fbb3541a15c7340307939b066d77fa808eeb6a1a5d98", + "regex": "(?i)^https?\\:\\/\\/btc1jww\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0785d8eedfa5c50c11f81a3e46bae1cc58bd0d3012a4456830c169845c9f2365", + "regex": "(?i)^https?\\:\\/\\/video\\-x\\-voyeur\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cac6a73e879d4dad61b65ac4a00bfedccc33b7512888d9db3e47a0b65c8c4574", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6eb36c26fce9ec5e960d8ad4a373be132725a145da1c69367b155ee5dfc3403c", + "regex": "(?i)^https?\\:\\/\\/bet365vv2\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "957a6b9e41f0153fd55216a0a1403252943af6fa63b895f4f648e9bfbd5ccf2e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e926e72018a84b938514fa268e1bc350487f44cd3d5acd287eef641c7eff54fc", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6164f54c3db1243bdeb1b297a02b620453ca0a450a5a1d86705b4e35836a8b98", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "aedef58f115d5e71deceb3255e155ec541c97c111fb2cd79bbba70af30558e4a", + "regex": "(?i)^https?\\:\\/\\/btc1jtt\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9d8e1163cf0c23a10c3a2277b2031aad1a00ac209dd43c66eca6852622116822", + "regex": "(?i)^https?\\:\\/\\/hot\\-free\\-webcam\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a7ea56f8f922e3544f7deb9bc4f9236fb84b8bdf252231838d207968f811b695", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "368f56e5eed779b8090eb6c9007e7b929a040e47785f98b815dd009ae22a592b", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "27f63a945a8a56df1bd867e166b90dec240b59f710fb2dce167ec5aa7f642614", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dff52e0a7fb607cf64918f7b491d1dfe1132f97f5a3e029df2c3efcacd21f90e", + "regex": "(?i)^https?\\:\\/\\/btc1jyz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7bd90e0ea1cf9a5c8243f249deeab0c4bc412306017e674f28780b2bd0bc4551", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9970[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "e97f802848dc79ea3c9cccb80359114657990997e3530e917b46031aad882e21", + "regex": "(?i)^https?\\:\\/\\/cams\\-tubes\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7979847b901b5e6d45a633c9acf58ae3a2e5a0888d2d47e795aee563bb87b286", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cd7409106f2c7d6f87994839558394558032137bac4ee23e2ecb6deaeec876dd", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-xxx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d4a3158e22db9f02d7d4f88cc9d90744dfd0708ef4ef07f46f31082750b4db18", + "regex": "(?i)^https?\\:\\/\\/site\\-porno\\-en\\-live\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "20b632029a06c7c126bff1b6c91a6ef3132d59a2ec5978c1cf0d281ea48100e6", + "regex": "(?i)^https?\\:\\/\\/secret\\-cams\\-tube\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "10e0d673b29696bab57917417a9c8b0714e14951205d7b9039c4d2adc3d17ffc", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "970f5a463eb7f94e16bead3f7dc4334e5d8f8d29995a0c3c59ca09b327e211ee", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "af841ebfad1043a3eb3df020b9d9eea7d17c6f3b976390092a5534268b50eff7", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1751fd15acaa3f9f60a3b99e6e80e6c1e0a1dc5f625b1ada238e406830da160f", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tube\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "12307ba32afc171d4305fed8b49e8c3c642c360718ff22f1d46739c30de4a685", + "regex": "(?i)^https?\\:\\/\\/btc1uee\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7b5d0cd31e3874d062b39a1265c5c86a9741333a6b0d56df134e6037286c52dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7f68e79cc17021c78935992f8164d2cd18826a53e73af1e46edc27824f910871", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f44568e5bdb1aa50a3e42efc3280f335df390d0197dd2216d6119dd3ce1fc83e", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d54485cadc881b3a83009bc40a6a179a93e1cf65e250b49e383f3120cdf8f4e7", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cc1eacbac13b40e0513e3ce0b1ce9b68fbcfc6fd808d3c9a377528565b20dafb", + "regex": "(?i)^https?\\:\\/\\/btc1jww\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4f2562a2234b22672ee7dc06b94e2dac1180d168109e49edadf794365e7f2f64", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porno\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bc2ddddfcc73b9df99c0e721e66fd818b67272df93be3401d0b4500331c08da4", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "837aeb302b007571fd357c0038b37996960733340c456f90ba04b7fb6ae165cd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "71464981c1660408f8752dc2bd5148b7cf436e4e81e963f2faf2ac504108101e", + "regex": "." + }, + { + "hash": "3744f47164006c50287d22822cca069f6c6c7e2b60ef5deaf2a01f8c9bdfd7d7", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a1e66551ea24b2935fbea49e7bcdf4824f27fb09b862c278ef9796d8cf5c68f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tfirpsdl\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "7153ab6d6ed0eefc56ff13d40c8993bc6ca69f754204fd4c8faa8a8330767d59", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a01591c6b2e736d4bd3c075a9623bbf7e6aebddbd799592e017f59957f51f", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b81d1a4e3ec1117358257b32520b7f79c1bcb21e16735c11b635a1a06496b6cc", + "regex": "(?i)^https?\\:\\/\\/porno\\-de\\-web\\-cam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "eda7fbfc4c1e287d6a1c556b496fc9835430568981435a3af44ce808e93a3d9a", + "regex": "." + }, + { + "hash": "45784ae2a1c103fc0df884c2a36f822c8f51ba7d34d83233fbe6377fffabc76c", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "04c4b8fe8065285c7d2bba1a51576f6adc685593107ad04ed68816dd86242e65", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-masturbation\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "df9a00e1c06d40eb5620d5a4f4d9a362dd47f18491df09606d0fe6fb6141511f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ius\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "67223992877f13b92524a43def33505f26c9b8fbcfe790efa6627b72f350e72f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a9bff9a437e195b1e954f1e6d322637b50d1edabdc84a7e92d6c7db7586ac777", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "72830f4f9111e92b77cdcc5ef3f86d5a75fa4bb4c7ef5e51326465944cb53075", + "regex": "." + }, + { + "hash": "90fdf2eb03567c410e7d8ef687ea9c653ae9f66c5cad1289adca61680f23341c", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "71111bc61af563379f9627aec2831a90c6a6960f04fcabdef007ddf64a457ba0", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f1835be397fc53e9ee8befbd2c18db7725f70379473fea4c6867d8e6ac3cab31", + "regex": "(?i)^https?\\:\\/\\/cz\\-102174\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "36c34a2c0d03e7ae88f149ce4a3b58cca6c31bee78a40b26f0ce8bbefcd531a1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rxjybytbv\\.com\\%25E2\\%2588\\%2595xwpomkqdlo\\%25E2\\%2588\\%2595kfubp\\%25E2\\%2588\\%2595vjrwwswkf\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=epsav\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "aad276edc06d6910f92fa4001129e8b655266bdde8736ef3960d6d0c7e66df3d", + "regex": "(?i)^https?\\:\\/\\/btc1uuk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "13d22e957e380172575aa0d5c0eb926a7857c2ef682472af3c20d8010e3acfb1", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "047b7535b878b871313e9170daef64af32518fa122156f7515356861a35e4a0a", + "regex": "(?i)^https?\\:\\/\\/btc1uuw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "56690e390381de3483189656db88a864e666055d7c9fc47504c6890971654100", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-en\\-direct\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d446f76ed5f7eccb37fc45a6cccbe9fcd00842961cec27e4baf620f5891180c3", + "regex": "(?i)^https?\\:\\/\\/cams\\-tubes\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "705f7fdcc80253a1ed4e9b2b0911fe7616366fbc4d8f9bfe5f18cc2b123ff3ca", + "regex": "(?i)^https?\\:\\/\\/btc1jww\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9019368ffb35b2557863fff830c6bd41681905b32e35122edbff7050c175c8a7", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1c411c7fa150314e5c0efa40bdeb895131381aefdfc0b46943c2db609fe55bcf", + "regex": "(?i)^https?\\:\\/\\/ndfhcd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "86a69bd487c731b6387e86096607f23de189b0c45461bf067b1fedc07632ddb8", + "regex": "." + }, + { + "hash": "967533d2e0310f087aff1175cea4f31bd703ff1392bb62b5ea112bfd51226748", + "regex": "(?i)^https?\\:\\/\\/porn\\-par\\-webcam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "03c015a98b8246e90cdb4ff4470554b17a99bc4c175dd1031b2e4e447edda852", + "regex": "(?i)^https?\\:\\/\\/0000373893\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1a7dc0d80521bd654ccf4d81f4e5439bbc660361888fe44b703c971c61ad9ef7", + "regex": "(?i)^https?\\:\\/\\/hide\\-cams\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3376e35513a56f868bcf0c5829c95959407ca6971bc9c1858124a24207f5b897", + "regex": "(?i)^https?\\:\\/\\/young\\-cam\\-tubes\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "813cc1377d7e65370c388e996c5c60305e00f99b426988a74f2b799ea7ccfcf6", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6f35eb435a8349b73cbe561be6ad48cb15ee7a87a416c15b95159509bfab8624", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e89930b1694a615cde9c4641b14d8fcd28ec412fa91965d3472e0c69afeaab65", + "regex": "(?i)^https?\\:\\/\\/young\\-cam\\-tubes\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2e162c04900939f04e7627d184d21f28e9e6005ef5f0ba7f4fe852ab07a6555c", + "regex": "(?i)^https?\\:\\/\\/btc1udd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4cc55a009a31e36eb161967b21d3fb259260145c691447267200f499ab1b7c3b", + "regex": "(?i)^https?\\:\\/\\/hiiden\\-cams\\-porn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8858fc17ff916278f78a63fc891526bb2ed815b8416d0cedaa85694ada19ba0c", + "regex": "(?i)^https?\\:\\/\\/young\\-cam\\-tubes\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "841f7e8cf75c5e09bb2eede09c5dac988ad8adea548e8fa558b8468626f74a69", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "21018b56608dfcac8f427468977d391e5a38700f48d97f8b627560cb4d8f4ef5", + "regex": "(?i)^https?\\:\\/\\/btc1uui\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e36053e9978e0a1a825f8b7878b482b803b03ec2660e4d0014a53c5578359213", + "regex": "." + }, + { + "hash": "09c9b50c30b2b6cd047c8c7d3204436001b5fa4c5376425a042c412075f79bc4", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st1\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "091490cd0849246d53f27ad521866b62031a0a6ed3657fd113e95a3e01ce7799", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-porno\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6cf2693017137bba34934be816d6367da712db74a1c2ca0f94313ce2e1bc0877", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9cbcd38960e24e2086c8827a2679932e771d7f2cf7be67c0132e46aeeee175c8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b416153fd894618b4fd2721329394aaa1a05030de79bf8ff2f0b10c083be2ce9", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-webcam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eebfcdb82addfda6bb7b7a92472f699147786e95c4eeb5ab6c1aec4308d8ca68", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1512047803917d88fabc5a7c983f1772749add6c444ae1139931d9001a59bd0b", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "437e5cd3860582425e50cc1c26902d6d18e58af3325c815212eb0073c0ba2041", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-x\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0baa328781e50bf5811d8c5f4431a412a26dc6c96ff254975c6f4ca987baf91f", + "regex": "." + }, + { + "hash": "d3c52710611310614efdf647683538c47940d7ef7bee4ddfdae8d3a35c98e6e1", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porno\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5ee023a45cb5505f911eae257935ebf537dc1f91c88b29b39cc2556f37148357", + "regex": "." + }, + { + "hash": "223906afd9f8d3f89a532c5522dbbf93712bd8853a6bb9f3e8419919de6b1dfc", + "regex": "(?i)^https?\\:\\/\\/ngqsht\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "70bc6d973b0337c4483ce6b64f1a663787d0ebfe41f2ffcc81cf15cd71bcb9d9", + "regex": "(?i)^https?\\:\\/\\/ngqsht\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "482409ee551a1796f9dd42b2097e1a4a3670079f9d4c32b8d621eb300e5bcb86", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0feed9ce68f823980b7d9aedd9dbb8a7b3ad5a06860d2dd9c2771f2ecfbbf0ee", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-webcam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5a14243d1d11e0fb1d95c2dc735c08345531e1b69cc365fa709b727a89c82988", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "34ff08dfb80de42a525c07234521e2c971e60251482cd616f8109a301acffcdd", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fde6ab559ffe9c4247fb1e3d55dc326587b1e37ba5bf1b3baf30bc7a0585460a", + "regex": "(?i)^https?\\:\\/\\/hot\\-free\\-webcam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f26932fe33288717c5dffed73eac65481224caea34ce67a28a0e636e77cf5f29", + "regex": "(?i)^https?\\:\\/\\/btc1jww\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "89740c35a8025a63ddc7c0a85d4d12d3f10bc0db425eaeb13ee054c24bc3205b", + "regex": "(?i)^https?\\:\\/\\/btc1wqs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f68017377ba9dce2e6b92b698a0ffdabcbbe64f71f5ce3361dae873439e71a6b", + "regex": "." + }, + { + "hash": "31c372a7fe775c3860d8c85bffe73fc080c26fe8f4a7c9e0590af0f48ed8eaeb", + "regex": "(?i)^https?\\:\\/\\/porno\\-de\\-web\\-cam\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f929a08ac703bb468bbf8e552dbcdd8e17b8a90e043795b2268df7894d06946e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dc4a2b42b945298f811a351f5f8273303d50a4dc46200e8832a9243d705eeced", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-tubes\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e24e91c3d146f7d06b94c6d3072c79f366fa184b9ed23ddd3db6c5aeacc3d428", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-vid\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2cd8d21e8883dc9014f2aecf9dc7ffbde753058b9bc0f7496c9dd1ebe56c21b5", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "29b3ce257635e360c81c0ada09d15ad940fd210fb2016d50dc29a1eb36002966", + "regex": "(?i)^https?\\:\\/\\/freerobloxaccounts2021november\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8537620cd0b542f97b3387cefd436069ed63e9520d3755e83d6b9b7ad9f7313f", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0672e75069d47804ead86a7b8c645bd83ad609fb8c2b8507b9628a2328667d0e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "965f238386f504b08ecf70a73b6687a1ad4e208d637762843c47660f54fb5604", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-en\\-direct\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ef31b3808f31692954f467648a49449bb1efbde804e075e507e9b6bb6dc31d91", + "regex": "(?i)^https?\\:\\/\\/btc1zwh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8be7ab6443b74ef7f86bad039e06c338855c72667530e6bf5cfb8c9aaad237d5", + "regex": "(?i)^https?\\:\\/\\/spy\\-porn\\-cams\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "164ab06d89e8c304bd4052fa0f877cd1c053dda225024daf58f4c3d8a2040508", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?rid\\=KvXiWCX$" + }, + { + "hash": "c94ec16e30fc647ab02afa6ebc3a27cfb90520d28cdd9f33cf31544aae51b2d6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e7e9bb8def04f97f87a250d6d3c9a32de8e6c0bc8c0f6e21eaebec0517ed1f1e", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "86219717e454c85e15c57a09fda94923ae128a8519d7a7950c9ddf2d547e95da", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "06fb680df1bcc54dc2b9c5306893bf13de8e1a91b30aa8891a66e60d7ce8be15", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-porns\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0479204b688c46a12d90cafe93f7fe8890686fe3c5f844257cb01fd3978a8", + "regex": "(?i)^https?\\:\\/\\/best\\-cam\\-porn\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f41fc8043801e589c7d8b65eddb4af93689b05bd24db6cece934eed3bb770b95", + "regex": "(?i)^https?\\:\\/\\/btc1uui\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "320186774d0d06e4df791dcdad65ed063ca07d1543752c0ff7ec18beb085da27", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uee\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a4bc8aebe751468bc1b7b4d694a944139a867c5c15b325e1a572b02a9a50d4e5", + "regex": "(?i)^https?\\:\\/\\/btc1uww\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fdf4418228c87f0b62492fa77a7340e4f4666394750ad0e0e2c6dfa01b9c6395", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tube\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "27fc888e62eb559ec93e0310be61bfc253a1cf85cfd0afda9414c6a563d789fa", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6cb96d76eb540bc58c020f19199cae70e0761cbca6aed0de9f450d77db038faa", + "regex": "(?i)^https?\\:\\/\\/btv1jys\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a872c113074ea26380a5e14af40e6aa15058f1f6bde647c09ef1c46e11528c18", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4fb47533e2322a6932f09a3cf65fedbefd67d4517a8204f80469398cd5c2e4d8", + "regex": "(?i)^https?\\:\\/\\/btc1wqs\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d3e7a50e0fdfb0ae424c843001d93949753204e0b5eeb4f635aadd555d347e50", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-french\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8afff0f2dabf98f27fba59962e0f3a8d2a5f3bec8b97550dade30c9ef9d1dc16", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "db3f6181db84e9328f7d85bbf5cf2c0dbd6b5e72cafdb8a6085d37be566c4ed8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "520957f209bfc36b095e5fb2123422758c7267da0c8a9e1bf1dedffe82760329", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-en\\-direct\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "426df3af7601cf5846610f8c90986836a972341854446b28a40b2c24c7ec4b0c", + "regex": "(?i)^https?\\:\\/\\/btc1wjt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ce16677550f008445a8d159d7373c2ad1bc246405714b0d100c5041606b6300a", + "regex": "(?i)^https?\\:\\/\\/btc1wjy\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3d268c33093f6aca822b36325e0aee426ffb8fbdc90f53f3d9e878c05ca74f6b", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-masturbation\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b40c71038951bd48b486024a40a35f428f882dbd07ef06647c96d424b2ba79d9", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0d7be76de9417e3344c95155f60bac7b6eba8a8d2733ca7c4e04431a991f4c36", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e1a341a160a1889002f8a9ba63ffa6a8f2ad42a29a642f507c5d46f880409ced", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "880267bf7fc69223b7a41a0f01796cbf766a1d71443cbc51b8aa71acb3292b2d", + "regex": "(?i)^https?\\:\\/\\/btc1uuw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bfb9c61f351451f854a3399d02de06ad43d60ceb1e8e19b7e72f1601f25433fb", + "regex": "(?i)^https?\\:\\/\\/webcam\\-en\\-direct\\-porn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f759d2ad1a6b13dc27d1ffd7b84c0ee8bb9cd6d9caf523f0482c91652edc8956", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "344ad0e94cf9a9f2c9b5dc01b4befafe1f0d7dc51c584e8ed4545d2c362b30e5", + "regex": "(?i)^https?\\:\\/\\/site\\-porno\\-en\\-live\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "92ab1e28d4d58a01e1911d39a008b15921f8e0991b113a2a82d36a223c081738", + "regex": "(?i)^https?\\:\\/\\/btc1jss\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7b738cf683ecf3105fb63af9c40cb23f6eb2928ee19b7a57d1940bf757eb6db3", + "regex": "." + }, + { + "hash": "9836549c0902de989f15855d63e2e1bcad84ce072b52ee997f9f770a0b8b3db1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "be36c1728b4e67e9719ed9ebec08c2c7642d78e418666d92e0742b77e850f79a", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "260ea8b5f7dd3b40d680ce8cc0cf719ced5f820cedb712150354d017822c1aa9", + "regex": "(?i)^https?\\:\\/\\/btc1wqs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fb3c98937d2ccfc405480938db75af80e8ba952ea0dcf13e5c243c393fc09a1a", + "regex": "(?i)^https?\\:\\/\\/btc1uee\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e5e7323e4c42a92bc7c72b77b69b33602cbac98e2e5b963d4af729e31ac5ca5f", + "regex": "(?i)^https?\\:\\/\\/spy\\-porn\\-cams\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6e87b0dd63efd2732bc869cec9f94f7460fdeae619ee9d538bc553ff7df13556", + "regex": "(?i)^https?\\:\\/\\/btc1uui\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c29841d6382a9185ae3fffb8087d8c22e662910d9266feee8e60df1dfe9adf97", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2bd19d3367f6d991a5ac3da46208c1eb1f607fbc050d2526e04adfd5a58e5500", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=msewqodhg\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "b66a41c83c7793b5fe844f450cd03041d3fb76554a9db2806cb839b734b77b38", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f815713082ce8d75d0f05d5e3e2817f766b09a2d38e5dfa9f2a9e7b1b50417bc", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3d5a002a837feff2bddf0048972194ad06cebb274fcfbb70e025a5e57eddb6e6", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f479912c0380d23ab3103f6110487f5f06c389f61a488aa969cd4962261b8ddc", + "regex": "(?i)^https?\\:\\/\\/hiiden\\-cams\\-porn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e7c04d83b52cad4b5c6d52582ea24d002a6169fe540ab379884c562444b2c19c", + "regex": "(?i)^https?\\:\\/\\/btc1jdd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "13d3f314cc240e477c997907721cde78cc56ed4cd85dff4aa1b81da2916930cf", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d8b50adb6493f184a04c0d9608545f7d3fc6917ad61123bfbb65c294551d5316", + "regex": "(?i)^https?\\:\\/\\/btc1jdd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f90951baa88bf0cc99592350d1e9b11d8b8f91a57c20f06feb37428312a2c542", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4fdfb8f7a5b00180a83a3afb690564af49f95f4fc7defd7d7fe62381dee88bc5", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9b9e3bbbcb051acc63a30689bb3a1e613021a62b9d895d20c8a40173f30793a0", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8ff819ed11bf9e7b765c22187effb84eb0952b1c010fb761c9e68e9b49b23062", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "dca9445645d16250c835432bbc85ee776e6bb4388b084f56231432336f7a18b3", + "regex": "(?i)^https?\\:\\/\\/btc1uuk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4dc6bf0e4fa6fdd003283e02de907628678a1d4f583bd5df20c33afb57da29e1", + "regex": "(?i)^https?\\:\\/\\/secret\\-cams\\-tube\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a63b78e4a1c5684346f1ff217c522ac0d7fd013c3f8df986bc91396bcb46b235", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0328be833be5db19926cb6966a15ff7e290a4456642ece4f12d890024f3f735e", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5b846b9edcc9b44480424599dac2932fcf7c59f2c8db58c6ca26cc4deb2099b7", + "regex": "." + }, + { + "hash": "1229e30f4a8e7afd4c1cdf9238317b19be8b4f21bfd5b893668f4f6ed870ab96", + "regex": "(?i)^https?\\:\\/\\/secret\\-cams\\-tube\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e4f3e2f064c75c01cda87e4191134230f6d7a9e9c0e84c96399f7b29d6519509", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uee\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "89e74ba696562acc8a2a5b91ba753940b612708d68d9610bb6b84be9f1d7cfc4", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8fc2ddc488fc4f180f128e4f958b0414f6bbc49bdac79c9e40c260bffcca3da3", + "regex": "(?i)^https?\\:\\/\\/site\\-porno\\-en\\-live\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ceb29bcae92e25b289dbaa067df944ec250331a20b57512c24f008347410cea9", + "regex": "(?i)^https?\\:\\/\\/btc1uuk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b67ccb3f141a260a1392035c696654b1a0bfa2c084bc781bde8c33b0ebdbaaf6", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "aa8782370521a636de06233d1689ad300e494feb9a74a78b28d6c79a72dc2a09", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st1\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c53e4553e58ee3d88e75bd66a7e23a06355c96013188fd35b3fe23f16cd00f7b", + "regex": "(?i)^https?\\:\\/\\/mailboxhome\\-1025434\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7e337a890694c8dd0f103c4b5245177854443a778fcbf003547c1a306f293f35", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d306ca41da087deb6644a06e7a1a9b1ea49f29fa2b2bd095a802ada7b65e1944", + "regex": "(?i)^https?\\:\\/\\/btv1jys\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a7e359b47fc117707393737c91639692fb96fb8983ecfdc048ee5c700fa2fd95", + "regex": "(?i)^https?\\:\\/\\/amateur\\-girl\\-cam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f6302d4983f2989d9ee8eca4a73cb06e2dc33d34ceab5b9bed4b87748eede83b", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b481261eaec5a7f1c0465440fd383fa45c0c8c43af0716370ba31fb3ca81b4ac", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f1ad28401f3e8f6a4dcde292a9e37559dc373e93b35e850975fbaa4d9c6da924", + "regex": "." + }, + { + "hash": "8c74330c2c2fb394703a023a7916017bcb1cce0e34380fa8fbda1c3d467ebd16", + "regex": "(?i)^https?\\:\\/\\/bfdsvw\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "25b5d6be6737c5f0167e8244a96aa0cd6af675f164b2ce54dd270f0628b690b1", + "regex": "(?i)^https?\\:\\/\\/porno\\-cams\\-francais\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "80e009d0089cc8c8a5bd6978bd3f499a386a03c02fe05872680786f53d3a3328", + "regex": "." + }, + { + "hash": "8a34d30eece2b09491b58fda9c0b9256e3fddc2b84ec3d06490dcda9caa84737", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7caf6f71f0e924dffbed3042033f96d0c63ff6b8d2acadf22187340d642d07f0", + "regex": "(?i)^https?\\:\\/\\/fotodajuliaminegirljogandoroblox\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fe05642c96cd8ff6adf1c067e6c895f627f7f7de111bcbb93190643e035166fe", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cd89a6b57dcd74db5b6c6fd840403367411f2e9356ba8f78b44455aab9a9ac25", + "regex": "(?i)^https?\\:\\/\\/btc1kfo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5cff8b70370b50c02b639191d2f20118f1b7025df9018af0a5abb6df8eae478d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-video\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b5be135007ce7357dd82ab94af1cdb00fe7cbb2e053cf06695736c771602a6f8", + "regex": "(?i)^https?\\:\\/\\/btc1uuw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "914d47ef718a434ee3079c527d73967d12585b3a7a920ff0613967f21d26cde7", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "74b094ac419ab38925b19ffcd97d20236d418194c382db383b22322cf8867c21", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b8bbad807ff9735f2e5e78291b1d05d3cf33528a14e581fbb691fe886302349a", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porno\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e90eb8982156bbc59fbd8c746005b940681a4244294e1148c0b0738d0de1a900", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2e8f359e940dd835d0ce749cb3a2d6aec8f647655b474b56b046c15321f80455", + "regex": "(?i)^https?\\:\\/\\/ndfhcd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5149253bd0564b9e271eb06cb044b86f1ee43eb90b214a60c32fc58cd94f4f79", + "regex": "(?i)^https?\\:\\/\\/www\\.coinbase\\.com\\-authen\\.138\\-197\\-38\\-108\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c6ad07d701517683accadc96c9c5c43d8352e1ce7d1739ab1f1844da8fc97106", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fe6badb6b56ab4176a5be5ac3e1aff60638101a9d2aca60585781948655b5e99", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2b4b902cce3ddc2a3b247ff61eb847905d73e04aea89ad0ad094de9166060fea", + "regex": "(?i)^https?\\:\\/\\/amateur\\-girl\\-cam\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ed518415520ff56d73a47b9d553add948f65be3f596125fabad9d489d0fcb14d", + "regex": "." + }, + { + "hash": "c5e1c97eaf9081c8811ea26cbda099f1f2a07a7d9c05aa2a485be09efae24267", + "regex": "(?i)^https?\\:\\/\\/btc1kfo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5980968f336191c13cffe7b2ee996064e8e5e627054708e717e5e66a71515833", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrp\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d4291f0237fdc42f5ecff35b4b3790343e1a6de87ab651cbd1c3e6b8cd235452", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "03c07416e14f6e3fbc386f0d586a4d91ceb8c23c26b7a91831ea4f3a7f744f85", + "regex": "(?i)^https?\\:\\/\\/site\\-porno\\-en\\-live\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7dd759d8467add1a5fde2c9bab41ff4c876a34d88c76b92b878ef9bb444d544d", + "regex": "(?i)^https?\\:\\/\\/btc1ppa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2d3c523e1081e9f011fbdac160db2e438f7e35b6ba2217650f43142aeb6c2327", + "regex": "(?i)^https?\\:\\/\\/spying\\-cams\\-tubes\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2b07efaa496d7287edc1d8e23571be5dd0d0bd25694bffaaeeab670fef959eca", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "441391b2d1809c03b47f9ddbcf82415fe864b31d67fc0ad99e3db21d295ca70b", + "regex": "(?i)^https?\\:\\/\\/btc1kwk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "eddcffa3e95cc2aa36b5ffdd940ab9b84de0e5aeda91a9598fc0874f6598e1aa", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "68f5c0ecc82140f69664e0c2675d58027963da2d5bb6070d0943e2b6ea838639", + "regex": "(?i)^https?\\:\\/\\/btc1uyq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "729e6a750a1cceb35effb101e3c67fea1f26ff5e49645183d6b21b6ab688f3cf", + "regex": "(?i)^https?\\:\\/\\/ndfhcd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "99f6c8510ea4e99dd92d2847355eff275367b575c6c7e8722817b6b7d45822be", + "regex": "(?i)^https?\\:\\/\\/best\\-cam\\-porn\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "64060c60382dfdf939d70d3fc2d5f5908aea3de8b065762d8c6c619442ea38d9", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e5be3be66d318eff88a152a81c60882baba7fb436f10309ad1bc23fdbf5536c0", + "regex": "(?i)^https?\\:\\/\\/spying\\-cams\\-tubes\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "15077b5296bc4d85d787008693c47f43b7063c9780244434474feebbd1488eb6", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c45f79539077b8c77c46cc26b559663d5fb71bafa5180e69695da04d417e3cce", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "16e8646e0b98e55672c9cb97465051280dd4ea76c13cb799c30e8e6eb8c0d04a", + "regex": "(?i)^https?\\:\\/\\/bfdsvw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ffe3c32ee159d5b40bebe8d44bb98918edea26a8743076a24203c11fad4b5689", + "regex": "(?i)^https?\\:\\/\\/btc1uui\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b8ef9e3c4254ddc497d69eb735b7cfb8d703726634964ccbbae79e95b9ba7f4e", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f1348923f49dafabf1919ef21bea0fd4fd40af5ccbf8936154e2199249f84aea", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a88a5ad302d503b25ba8517eea25ddccaa647868bf975b34455bc081a373e7c3", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-porns\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0b4309f3edc0e0208d2f5844037eef3072ddee2e36c06483b67cce65f9ef0567", + "regex": "(?i)^https?\\:\\/\\/video214314\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.avtuqr.com%25E2%2588%2595wfdmmr%25E2%2588%2595oedktil%25E2%2588%2595ujribn@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "60209eb5e6e44782279bee3961cfa4655402825671d8391a450d92ef5e62dbb0", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "828934d2cffd3f52397549506dee197e6851e33afff018343cb16d175cea7af9", + "regex": "(?i)^https?\\:\\/\\/btc1jdd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fe086a6910db0d9dd60e12b4475d82c48549769f553be7fd9ce57b178b04f5b6", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cfed2fbc5b684c430668e2462bf3432818fdc10ee06c074b4733aa8cfda45de8", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a5832afcebddd47c55ffaf35e6a44791eb1d9c2005d18ccce7f62da7a548bc3a", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "454a2e16c419c93d84bd74bf2cf24274d7bca50a7eb932f4d195b81220597bc0", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8ee1ea6b26ca78f7f81105f18a68485d84a16567d48569c7cdde6bce92e10d31", + "regex": "(?i)^https?\\:\\/\\/btc1jyz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b8bb7736e0761974a2a642f02b7740563471a18bf71738eda03e1bf74cd9533c", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "96aebb6cc0b11f9fa1d06d8c82370f18906f4110b3cdf16e0690cf2e13210707", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "095786cbc7876764a19d70747e78f0b0aba5d1d25744a6befa39d1c5f1b4354c", + "regex": "(?i)^https?\\:\\/\\/btc1udd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "302e3f882d7f8849e7ad1995ffb2e12a7c41a9e139410b1b7f9608840b5d72f0", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-xxx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b367b55d1776fe2195337ad2bf9e7ebab0fac847664409eeceed6eadaf1b79a9", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "94a9a4d486f2617dc355d1dff708d9134ede6e59f3f1e5bf6643cb248b3e89f4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c4558dc9588324251417699fc99fba67f30f7e3aead7b6f527ceafc775bcc688", + "regex": "(?i)^https?\\:\\/\\/btc1jdd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "919d8311c3775d7ee3e52d55e569bb489eb9fb7c019d80da0e2ebe8eb4140cfb", + "regex": "(?i)^https?\\:\\/\\/btc1jyz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "caad1775cd47982f0dd996745d9d1949ef658f462676b20d21602f4e6faab43a", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e9147f911bc3a60b19fb77b3cf1ead56a09c692d3b0966eeb28b5a47a6215697", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4c7cc18f35677d0015b63b2d291dd20052d6fc7b31ca0a8413cab649bf470fa2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3e3e91e491091ac01e0254a64d94a4456001207cf5b866f86659b5a5b24d0dbc", + "regex": "(?i)^https?\\:\\/\\/btc1wqs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3785a5c8d1252debd37499d7940ab64dfae101ce42dc4cb0803d87bf65920734", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeurisme\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8fee636ebfa0b48cdb4a014adfa3ebf7e95c1736063d913d4c77304aaa84a950", + "regex": "(?i)^https?\\:\\/\\/cams\\-tubes\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9a4eabd11266f398acca5b2a7c263f62a7ea87b39ee918d8f54522b9e80fa69f", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "803cf9ef909793bffef4db948b0f61d09c5a23cbab931517dc84d68215466a10", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "84a6984bc8231e5a98ec1497d32ebbceb0db0c3066b825909250c1b823ab4bcd", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "54f4ce2415fd4f18fe1e32604cce354f92bd27506969ea8d849d74c8c6c28fd5", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb09f4b5b1c6d5bb7931871fa4d3f4a19666554a2cd87ecb505fb49f4163f0", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3cf18f3297166bf49dfc6ed6daf011683dc6960a78fa8e946f698f5083053d39", + "regex": "." + }, + { + "hash": "054d113c2b8bfa59633fec825d08160b5c871d2f9abdad70a2498e6a4aacccad", + "regex": "." + }, + { + "hash": "8481ce6318920b3f73af28540d4899009f10adcdaa5260dc170dacd84c8de74c", + "regex": "(?i)^https?\\:\\/\\/ngqsht\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d9281c2571d45294dea5d88688b773f47aa43ce87148d2cabc55142fd5d50a7d", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6c505922fc714b737ea9c191fd3499913d5efa8ed2d5f2e25fc78ef7b62af1b3", + "regex": "(?i)^https?\\:\\/\\/btc1kwk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "72831c031f95a8d4eabf8f6473f2cc043099b474120ad219796a8d0329daeec8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e89c4c1050bb138d7fa0ef87aa6e9d4740033be3a04e6f3e09829d686a9f22e7", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e588ed0122700ef55c9f3a327c6b5bdafff2ec8ad183f122e936c8ae2d87d162", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-x\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1a7fc6f63fd56f81962a2e8d1de02dbecdaf2b0d4fd61e752f48e58a1f595b9f", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d3f6602a4655f8e1ed119dd96246ce203d09e4b53d941af36f7f72b79b86bc80", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ius\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2609af95575c2750ac1e08d6e794809626c89e137dafc87d8fde2c21ceb6f5e9", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ea8632230bacb63731d59cee0107a2ed46a5f6c49e2b049a02b7a7246a626267", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-xxx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1c67cdb3fdc5e361859ca6626a7a753a782876f90906acc806b27dfb07ee9ddb", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d4e8056390d2ce36132e184e993a3a49fece8aa1052c0c9cfe954f3d8db580ec", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c4fcaa883444091315349b546fcf943be087c7bc52a8afd14059060a8ec2f325", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-vid\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3c08da33386189af33681cbba35b1ca9f04200024d6b6f5d6987614f7dd82b90", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e3c05350740dc24d2cd18c73fb54b3e1f2d1e11e1015451ee54184b33aa5b57e", + "regex": "." + }, + { + "hash": "fa9ed8ad3f2145f06f162e619ba917ecdbbde6d25d399d0818a9f106bf3e2850", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e1550b2542d40902a5e4997fc3fc261b8a7acd2f7002c20f86ce18b033d2f211", + "regex": "(?i)^https?\\:\\/\\/webcam\\-en\\-direct\\-porn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6a3e9b827cb6cb6be88f5dc0d6246a03eed03c7ac4280a5c7d1cf978054cd364", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-xxx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "03e27c60d7aca262bce981c449246bc8ce7771e6853a115a2e2e946d2738c5f2", + "regex": "(?i)^https?\\:\\/\\/btv1jys\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b4600bfc9ea500e21bd093f7494c8f034ba0d233d4750f96a55bb4588f998847", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st1\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ee2cc868b8a613147cd4840fe7c755a28d9570f1bea366d102a1d0ca4e3f06f7", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0f50c58023ea52f5106129c3f43495212f162d90559642773aa2e8e58b3b6c8c", + "regex": "(?i)^https?\\:\\/\\/spy\\-porn\\-cams\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b4e187b21485dfc1c88617731426546a6f693e000a2d7f72ce19e100cc9fc2a6", + "regex": "(?i)^https?\\:\\/\\/btc1uww\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bd0ee192df81bb2599de55ad25fc11235618aa38c9ab50be9e0a3265a56c8e98", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9690661ebf085640116d7bcfe4c669a702fadbf06fdf3b092ff9fb406502bb2f", + "regex": "(?i)^https?\\:\\/\\/gffggfggg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c44df85aeb60dc8fd4bb9a8f06e5302e9f4f35bbe10946e9b4b521cb2c3049df", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "492b40becfb8537c008df763549d90cedc3fe3d0aa5ec21fd6a6a82a804d238a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jss\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2d46678f73bb73af6c33001fa131f3e693a8da20bf0d58775a44f9201eb6e593", + "regex": "(?i)^https?\\:\\/\\/hiiden\\-cams\\-porn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "eba98b4b51bc9e2c87c6af3782bd675cb11d2469a639c50f0016208d76250c72", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "79ee2c8a04d38aef1fa1312a5c0151b2c0b076cbf29afd01c711f4ccdeb777b7", + "regex": "(?i)^https?\\:\\/\\/kkhhh6666999\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "113bc89b558d549aff98fed2ce659a436ba747ba8168402240d08e3bed579291", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5ce4918466c74489744ae83ef14702a2f94420e457b25d2651cdf2963cff727e", + "regex": "(?i)^https?\\:\\/\\/btc1jyz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f35049d0cb6d038477b27f199963e6452f44d34e86b0ccdfb2d7fd3fdf32cbc3", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ece5e6d4b09868f06628a75a83584a56e6a8686fc1186a7ee49a2e279b89d5f7", + "regex": "(?i)^https?\\:\\/\\/kkhhh6666999\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c8f7afe368d0b09aee37dfe189b019bd0aec0884d543c023b24c109f4262908d", + "regex": "(?i)^https?\\:\\/\\/btc1jtt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "297c5c2c28ab506dac38f363b8083c07448774c536d3e6565b20877c5dcd7703", + "regex": "(?i)^https?\\:\\/\\/2tdd\\-adj\\-st1\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "99e64574c9c2af6f62b69e598a1a485a0b3b2a3f63f7ad170ec0ca33a8f79324", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e6295faa1fffe4ccdee7dccc9a461a85585a0334899da045297199387e240c7d", + "regex": "." + }, + { + "hash": "8848fa6e60d7ad65fa93ae4aa5dc111d7225f77ab2f62965340ddbf3e6459f97", + "regex": "(?i)^https?\\:\\/\\/btc1ppa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3cf138043123b6356df2fd7d7ab29946ce72e39eb25250287327a0eef74ae5b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zsvip9(?:\\?|$)" + }, + { + "hash": "e4bc312e60b8baa6f49ce9b5569391e79b0785ad30e252dd21d46fd0e477a133", + "regex": "(?i)^https?\\:\\/\\/btc1kwk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "94253f4e95fc699707798e3cac8ca64bccf093ebbd0d5d4195ba0e17daadc2cf", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "80c1ae398d7146ef9410e735f1f1cdc1bee26b1f167e057f7d4dcaabf0a13cb5", + "regex": "(?i)^https?\\:\\/\\/real\\-spy\\-cam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8b115778117e29cb3ba8930a737ff8046c181afb7376b97b1b2284a33250cb1c", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e7142410648508bfacd41506625203e2e06f9db55a6a423781d27985a8ea9cfc", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-x\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fbe1c0f25ba20a18ae88469c672100ded854e499ec7c53317933c843da60879d", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1c0c4ef7621d0cafa2c4a9faa1be4e3c8d185196414bd02f1cba3c19f2473188", + "regex": "(?i)^https?\\:\\/\\/btc1ppa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a43c5a3821725305b784b72814fff2c899a39e5bf176a07fad77e15243ace85d", + "regex": "(?i)^https?\\:\\/\\/bfdsvw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "041faec1cd7598b0efe8891d7f62afdc20e2c65062701d1f89e9e7ac03f6915a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrp\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d9f0883155b01f3063e5c31e124444ac3f3e30b4cc97b8810eac4e6e178013d7", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-porns\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5656915e6ead12fa5322613642790fca14cbcb83d993cd7e9dcda79fe007b5ea", + "regex": "(?i)^https?\\:\\/\\/btc1yue\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bf5f702ba6dbfd8e4b0ee89a11420676b7d1b8c29919414fd51f26faf0dae3f1", + "regex": "(?i)^https?\\:\\/\\/hiiden\\-cams\\-porn\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "216eb90c0ab183642bc61d99239a464e642c65d9f5709f8c6e0d0dbfba17629a", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c82e3602a4ae4f6d6128bdd523854683c34c64e581636a4a32384765cd879efb", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c0a0c68964d584114468319f7b69002c4dab7d0ba9e4f102b9a2df0e94f6893d", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-masturbation\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e4c188d958246d170e4a26b0aeff9bfa5415a29127530bfe1845561fe650a97d", + "regex": "(?i)^https?\\:\\/\\/btc1yue\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7de9fa5a45aeed16026e869ca446b8ed2ba6e02f10d34ba72a8156453a3bd0d3", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4e7a36f4cfeca1bf4621815374be10477800c9f0ccbaac6bcf577626682330e7", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-xxx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1a1c38f98b3eb97717b0edff4dc831e40654e07ef66d76a2a5401dab95266523", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d3dd98830e6484c6e6fbb515596e0d73cfd4d50a1d995b49bac2f4ae7374a84d", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "00353a114a66d5ff346fb2b517dcfc9647b06310eed96294265cb20f46a82179", + "regex": "." + }, + { + "hash": "41762acfaaa18fc23bbf42343fd1723de298dfb714283b0e626a1b927695990f", + "regex": "(?i)^https?\\:\\/\\/amateur\\-girl\\-cam\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1165090b4817ecd4d47c25b793045897a6919aed4065f75aad4e3bf9ae483c77", + "regex": "(?i)^https?\\:\\/\\/porno\\-de\\-web\\-cam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "197d21861604758da1b7688c91f8e9c6b1d0e4a3d011e1e1629efb031a7d2b98", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeurisme\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "94e1c5d96eb78a220515c029d2bffb9656cd1ee0a783aa1432a2107c4830d873", + "regex": "." + }, + { + "hash": "698b06ca7389a7260474ed7bfbb4466bb5dd473557fc608776fe72e95d60012a", + "regex": "(?i)^https?\\:\\/\\/btc1uww\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1181ae2d467da302b313e9d3ad5a61d4698f850e871e78617a621015bfeb373f", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "257667366f3653f7ffa1a29b8c93ed830caeab2a6ca81a1958b2fec6e6985537", + "regex": "(?i)^https?\\:\\/\\/btc1uui\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "df45911708879439be578848e468a4f32a425086d025c9369e4b9905e866f348", + "regex": "(?i)^https?\\:\\/\\/young\\-cam\\-tubes\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6ee50dfe72e6854b6947ca07f2526febd227830aac2fee535481c8ac6dcd5d95", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9bee90c731c192d9a0249d6055c62971653c1044ad712d09a2987c749fdb25f4", + "regex": "(?i)^https?\\:\\/\\/video214314\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6bbdb9f196437cddae169a30317a4ca25aad309fa999a01d239b08306f083b5e", + "regex": "(?i)^https?\\:\\/\\/bfdsvw\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fed64b8d58555f91b11eb1ce91da41e4b3e961c399d27d498f3da8525bab72bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ed8cbd14e8626b729e5fc73d74cacf0b56e158dac282854c1a071b48f1fe671c", + "regex": "(?i)^https?\\:\\/\\/btc1kfo\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "325f202d98cf201ba1ad8492d50b89155987442cb04b32d3a23bd31c471aab5b", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7489812eb37629fc2b09df7b4b0e2e22706e2af37eb71128ca5dd7e496ae9bdc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2b8ba02fbdd499b13f3fcec53dae346d7d7a75d7f8ba78e5d0238e0f703696ed", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "718be1b49d6a346a5b4c78c6f62e7a25637bc3170ba1721b9986a4fbd73541f9", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f88542edb451510cc10a088d8929114f1db66c2244c769e3dfc8f6676901c0d5", + "regex": "(?i)^https?\\:\\/\\/porno\\-cams\\-francais\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9c7534a990d2c7bf3723aa47a3b65943e40a4e0c3c3d2108e19ac6ad68db7c8a", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e185b3a784d197b906a62a1c2a7400dd28a98aed17a9af462355116a7b8e3b14", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0036792ab5d48bbc717f251a0d6bc9742df45a25c633f44b4be544d951a37e40", + "regex": "." + }, + { + "hash": "e212a0d355d3b4a9b92248d53c9e0ff66facd0ef67f3199ecc2c71eb34bda0bd", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6d8975f4d37d4e72f0677e31b224c067fac881691ea16cfa19285bd3fcce67c1", + "regex": "(?i)^https?\\:\\/\\/btc1ppa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "67e138fa87b1c3af79e7b230ece35841dae987470db39c47f7b108e9d0f0f727", + "regex": "." + }, + { + "hash": "3c5290a5b68637758892bf8242434a01938ad9aa533cf70aa99767fb07b2ca71", + "regex": "(?i)^https?\\:\\/\\/spying\\-cams\\-tubes\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "adeb6dc591c53fbc90902b6bec5f0ca6c4c0ba27fbaeeba1b65d71030a680185", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "56fd9604c622c7e583105fe59a6bc99e86c02951597ed2a39a4e243171f66acd", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b0d78d22b0f186393fdceb516c09f65e33904dbb1d5caee795a717e9298c0dd9", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4edbd052821dae364d0ecfdffa5fd2879040c1d83eca25b19f68b14247257167", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6650f76e8b4e73f0cd806149ed67f70438dab20fed600b158ab6c9527047965b", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9996ad39310d6f163348daeee48e5977a95d22343907ab55f8b818a61416fb98", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c87f3dbc396534ea91343cf1ef7e2f79b7774eac024bb0e11a57a637334c854d", + "regex": "(?i)^https?\\:\\/\\/spying\\-cams\\-tubes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ec8f90f43974c5b3c1a97f875c75e38bd50f9504f445ea713942652cf401cdd4", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-x\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9ab1a4dc22e8fecd607f6e91ae60dec229e1b34be0648b3abcd1fea6f5b71538", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b1fe5661108e2cd52893e00007debaa9b044f0886536c799eebce97f31a20be5", + "regex": "(?i)^https?\\:\\/\\/www\\.0wwwserver\\.eu\\.ddmgymhf\\.64\\-227\\-108\\-172\\.www\\.202\\-157\\-176\\-198\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7f2ed815d7b4f9eb1a70c212595663ccf5be4d028cecc1bfaa8e6b7978860571", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6cb9af437128e9690d08c59b61ba9bf3668c50258f30b13cbd50ea7a67bfd095", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b59161078c772270d99e7fe804f291d615fc1609d8836b5aa0e96afd0d84e872", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=exvjeay\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "15043024fea3e62ec4fea0c3ce549bc1c85d39dd26945051aa50ed3e8d90a09c", + "regex": "." + }, + { + "hash": "50886daa04b425e29cd204b017cacb7a1d1ad3035e22b3fe9ff8f5422f34204d", + "regex": "." + }, + { + "hash": "d4b1a4634f42b6de1a6b805599ee916bf14b65b7cc7d31705c34573f56480b81", + "regex": "(?i)^https?\\:\\/\\/btc1jww\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8666fe68893738f53a861c85be68caf542c433baa7bb544d5da98f97f265e775", + "regex": "." + }, + { + "hash": "2dff429efd1b51885529be124aaba786a109e83cb5768172cd1f22bf5f82c63f", + "regex": "(?i)^https?\\:\\/\\/btc1jrr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "71b505d240579779e10b0d67b68bdf7bc401a638c0c1be348a586f4d2a993f29", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-webcam\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e5133aad6d3e3f181c7b30706def53ec2340cc550ec597d8b959d30d11f8be5d", + "regex": "(?i)^https?\\:\\/\\/btc1uyq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4dc39428478c7ae75e12e6d94806f19901172f62d6c13d4c515e6d5bbb3b1806", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b37ca0440b66463129793f2581fb9d256d6db5f5a79fa554fbb5f89b20d9bf21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ruidhgnykd\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "6f9acf6b872cbb87df9e6c998761ded3bab26f1c134d3eb7a5e2680bc0c1a197", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.jhxbfhfet.com%25E2%2588%2595egslvfq%25E2%2588%2595zhydki%25E2%2588%2595cjbbtykhx@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "d0f30dea2aaab6cf75238096e410f7c691ad414e18cf404c2e938304fb317fc8", + "regex": "(?i)^https?\\:\\/\\/amateur\\-girl\\-cam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d0037426e7f8ce0ea6cdb42f5dce3bcedb63a8345ea6908a2902a513597fd809", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8b7c91f891805f9965561a0edac135c48be86be42122e856bbd1be10f5926e94", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tube\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ffe42c8170bc04c8a3ac16c9396b55a0cbaeaed1c809d90e8e3a0d9fc00201c8", + "regex": "(?i)^https?\\:\\/\\/best\\-cam\\-porn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7f6c87f133b15c54ddb0a6b0f23f42a7dcda69d59cb0eba77314490a289d161f", + "regex": "(?i)^https?\\:\\/\\/gffggfggg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "72ab1e9716702909332760cd16cc198889b2150f915cc06436b17d577fcc731f", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porno\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7b86738d602952118b6d441821674e1514c0d099cf14d9416c1d2c9fe7ebb39e", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "23096b16b83f0e500ae18ad558c2961915a056dd2a1b1075f80bebef1cfcfef6", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-x\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a1cf4e19aa1f450602cc6212f7bfdd45dbb317a4aadc3259fe6c3b1b58799be5", + "regex": "(?i)^https?\\:\\/\\/btv1jys\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ad1559eb21a70fa3385a1cbf2336d71dc0d697d4fbb7be62c3bb9bb26dc8dcf8", + "regex": "." + }, + { + "hash": "d544fd5ffde4d5ffd2e48c4d2b7f79a881c7aaa5c9d89387befff37100a9879b", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e3e4449c0745f3cb5ea3fe226c61c0135a0b961c81a5a462af026c512b1f3a9d", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-masturbation\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "885be9f75445db351fc1418b5bc57763d1ba6f2c3acb17a5d5a368c4804bd507", + "regex": "(?i)^https?\\:\\/\\/btc1yue\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f90eb5bda96a315cb5f1ec33c5f31cccaacd7680f229545a25cc3f711d2ea01f", + "regex": "(?i)^https?\\:\\/\\/btc1wjt\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8d43a7401c87b4884b5a0da07b4b6d38f0f758af8d84ba50acf137ba0b374d81", + "regex": "." + }, + { + "hash": "0646d4a2b5284d43d70653d3945bc3d3969a7b5b48a7ca46890b3be9fef32a93", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-porns\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6416509d38ebd040bae64f5547b51b6846bfbf6053481a2c1a197f2aeed8b993", + "regex": "(?i)^https?\\:\\/\\/btc1kwk\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ab6a941ba5bfb6759b7d9a8f9bfb97a2dd2f057537fc8b593ec5ff8a2e1d5cea", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "76d8b5a9537d41b47172768b933532adbe8d68ccf222122d35aa5a63f223f43a", + "regex": "(?i)^https?\\:\\/\\/btv1jys\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b562c805098e0a348a4e3d2c456c2e7d76b769b19125da90c3d319668b5bfad2", + "regex": "(?i)^https?\\:\\/\\/young\\-cam\\-tubes\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a3e3b6903f3c2642ec15fe61926d7c7be3b78d566f19bad6642d140f80e21df1", + "regex": "." + }, + { + "hash": "5734ff55169580e214da399875f318a850b84b442b407842d4fe5755fcda12bf", + "regex": "." + }, + { + "hash": "0027501470228015e34a7d05a8226c8ae562259f6f324b0d2a818ec2749b5d2b", + "regex": "(?i)^https?\\:\\/\\/spycams\\-porno\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "641bd5d0fb73d17054c6ae1162d50ec1607f0a026ae169b6ad7252e423e4a8e7", + "regex": "(?i)^https?\\:\\/\\/btc1wjt\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4e5afca53eb3fe4cae8b57d69cdb03c8e35dd7556523aa3484b7c37048bc9a7a", + "regex": "(?i)^https?\\:\\/\\/best\\-cam\\-porn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6eb05693ba5501e8edca86163a111fb46cc0685924352ce7d94619a4ca046d15", + "regex": "(?i)^https?\\:\\/\\/ngqsht\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "28637fcbad288d71b48f853eff2bd73d3e7f45898ff180feeebcb0262b011c10", + "regex": "(?i)^https?\\:\\/\\/secret\\-cams\\-tube\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "82598eb861d0345a023dd90de7e0f5a62f5a42e31d67cfa7ff1612dc184b931b", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d4e87f0134d3b61b2f7eb716b7f61053383d0fccd3ae6dba1d6ae6b748652a57", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d989a1847f5b676d2964c6a57ae0092cdde7f744d962159c14702db255b457e5", + "regex": "(?i)^https?\\:\\/\\/hide\\-cams\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c7ea305f891aa77f444ea4378e6e6e96fdd95d3d7fc84a4e451173b20c4fd19e", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porno\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d6439b7e06bc2988e747b295c68f0de3a877e704ac765a7b2811a0676ed03851", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9686613273ff79838f402bfa2536f86828e2e3e1e42b1725a0904d89f8bb5283", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ae9977f76b5cc45b7c141eca2485eccbb5532e918fb31a08115fcadbdfa53a69", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b7df392b2104a7ce7489c84ce6ae93d1df21b9e6643982d72edf259e067dca63", + "regex": "(?i)^https?\\:\\/\\/ndfhcd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7d229e25e6e9cb5ecaecb63370c40a48164ca8bb737271cc6c98d6788a51cf38", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c889d04dba4cbad95d8ea538b6696cdc036ca36782e324359c951a07fa445bfe", + "regex": "(?i)^https?\\:\\/\\/hot\\-free\\-webcam\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "93e3474009a3b31c316549a60f8c6f0cf531771540f336b730cb9770b90533ed", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3cbcdb7fb857072f654de394174e360a5d0e7d89dd9b2dbb2d7a4d70788a70a7", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1bbcfe5fbfe8170138eb45748c884fa2687698838655d9e654d41d6b8790937e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f06fc5b2813805250d7f1cd02f54342f4aadce5d8c95a9818aded16706fb46d3", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6c700ac7b5abc2a844ae55573908df5c674e2db1e53c7171c9b2c61939622dee", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "82a840520c88a0c73b865f42aa3a3563125dc5795aaada272039cb06d9e0e9fd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ca71b8a4cccd676a7a1f5022b39069a97d7c725658bfbbb573b0f99d81bb7819", + "regex": "(?i)^https?\\:\\/\\/btc1jtt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "35f836362b0916695e8a7099a4b25010c8c1b5a83811a01d3aee36ca6283fdbc", + "regex": "(?i)^https?\\:\\/\\/amateur\\-girl\\-cam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a570176fe97962e244b4d9e46ceb031e8b57f3241d334b7651436d013fe8d58c", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "bb73d495129a62979b1c93be17029b59eaa8bdb21611eae6aa4d7c8572214ddc", + "regex": "." + }, + { + "hash": "c68fb93541a85e1a1719df67250001a68a8037cfec7aad1878f0461b50a0c651", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-webcam\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3a4b8217589badd8ccafe5bef13c629e4a9caebe7d891338277bbe588ef9e134", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeurisme\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7da0377cc1acc9bd5ad5acf54cbc5253ee67119f5a9d77a9caddba8f844bfeab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "c90359a53feafb58dde4d19467d698c8bf00254c99dbfcd583addcb4ce39fd2c", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b9447983d15bc3598497c45cf7efcfbd4a9c7ce4735d964f2647456c2cd06687", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b63d5d794ac7214febc1076eab8c91ff8e4ff65f9c172b872ee7992b0f9798a9", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f2a1b37a24a4cc1f5ca909a57d83a22eb2a20441bb7836d29576476c650a70a2", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-porn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8efd69e6cbaef4c06ba8dc01559e0833817a2e418c5d65acbe91872c09b5a3ee", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f4eeb0df97e7c8b4d46b3393c5dd02a9b909409f1c41c26c85a5def01f8973d1", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7c531b893cb45b7382b870f986cf55d8056e1ae760dc7a274517698cf9e42838", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4d92c15855098ef9101df58de4523dc8b014ccf555498883882456d7975a347c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "113b99b223e624ab23cbe8861a5fef52f88bdaa55087faa55db29a74d649f673", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5b0089319e4e8f2d7bbe41680665b2762dee5b37d993abc79184c3c0b09057ab", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "25437673a949809f07f71d796a8f42795da5e0459c6d1ab9fe79d0b79295d6e0", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "79886a6b1e4f1804dc0b8be2d9dcf33a7a8023dcde42c9e19a0f9b476dbc2955", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7d61aae4276988786515fd3af7a5f8916c8d94f9ec127c5664d67a5c5395e134", + "regex": "(?i)^https?\\:\\/\\/btc1zwh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8af8b13a03069050cbefafebdb6ae61e91e6b12f33dd9d460b24526c8c145441", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2e00da56329f5d6e535a5ac43c39c5b5c4787cf1c9659378bb1e7f78ec46acb0", + "regex": "(?i)^https?\\:\\/\\/btc1jdd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b1703845ebf3a11c7b74804ccdc7027fc3caab66e5e7d454761446e7c844e", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6e0ca399aca94dc7e8ee1aa7efb8eccaec257a7947d6b0bbe0662a5a9eac7456", + "regex": "(?i)^https?\\:\\/\\/2024att\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5f9918f2da768dfd5384d817fff1271931fb85dcd3ec3d6958dc3a5503fbf2d4", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9360b274def400140a5161913f2b57c659e5297ef5cfcfb73f99fc3edbc9ff21", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "641433a4811112fda90af0167b3735e839415ff84e20856f1efc519f4f7b8c15", + "regex": "." + }, + { + "hash": "c4e64ed60f2af15ae1cc83de295311af8e5de2236e6f4d57a44771a870f5ac25", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dc3857baf1a0054ffec73bf926353cb8366b4cef6f4647338f3960ff7f64b754", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "abd3cac187817a4cd12e029771a70f5737d8c886067c44f9e5a69954543ef146", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "378b53c7559ba94fdedf02789517d883f8388137a47353048e469341014f7d95", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-video\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7d035f94e2d99a84200d7dcf7b3e0998dacce0cc9718fa7d877b844c4ecc7366", + "regex": "(?i)^https?\\:\\/\\/videos\\-voyeur\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "df86dce52b0a9c473a9703dfa8172877d80307f4f74dbcd9508dc26062effd8c", + "regex": "." + }, + { + "hash": "7bd90e0ea1cf9a5c8243f249deeab0c4bc412306017e674f28780b2bd0bc4551", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9970[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8f824d3355f0bfee601483aac7945b761fd859a0ba7c81ec746c201ced6aee90", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "df68800e0fdd728dc7bb2828f5512a63701bc4fa5e7734d1d5e92595e6ea38b5", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "972f6d76835ff22411ab1cfda46f90f1f5a1b414a80662e71a73a5d1f78365a9", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "386cc901139d249711c42827b3d4558cda0f413ee347f6a58e6e626c0e73c3e8", + "regex": "." + }, + { + "hash": "ae014825b44c6f2bd9a739aeb8c4124cafd2f811a851cbb98603ebf4c4520f83", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-xxx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0baaba5d8eb9ae775a453f7d71efd4fa0f258d2710fc4d6348111860aaf4ad1f", + "regex": "(?i)^https?\\:\\/\\/spycams\\-porno\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4bab7af2a2719c34f181370a5f13a85d25b15b7829b64295250ebf26c0e81884", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "705a68358ef1d8b701210550eaafb68026498737d2169a229ac8dc8cb487bea0", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9a68a5c312d6441936a41743b418bde0764c844770a40a83dc69403396a1c072", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ed6c2199ad1a55836a0370e7dc9794b770341011b5322c731c0a31fc34166623", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-porno\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b0c5b8c8b9be8a58fc72e4f2e3f89486b68920d950a7fc83e7c8084c53c52617", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uee\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "69912ab5d3e2baba7d09d090e8d91a004c7c75f53dc019bd959905c9510c1bcb", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tube\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ddba4be0698e5b111e28c78bf1443b4605e2a26f24b595bdfbce57ba4e1fddff", + "regex": "(?i)^https?\\:\\/\\/btc1jss\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ea132ef5672afa7839291e663f84997f894ab8373ecfd5834276d0eee1131b28", + "regex": "(?i)^https?\\:\\/\\/56787576\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "14a320b0afe5e27a0d416a93e0e0ced2455edbdee4cd6e4527e5ecdb39056d3e", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-xxx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f02516057e822104fbdbb21bc0e525b55c5b48c23c75df4eabe34f16e477437b", + "regex": "." + }, + { + "hash": "2d7e62e9666b3221cddf1435ba7839e0434b99704dab5245563eabcbefdf3126", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+getuid\\?https\\%3A\\%2F\\%2Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%2Fmua\\%2Fseguro\\.html\\?\\?\\?[\\/\\\\]+ecm3\\?id\\=\\$UID\\&ex\\=appnexus\\.com\\?\\?\\?\\?\\?\\?\\?\\?ex\\=zeotap$" + }, + { + "hash": "fa1c3dba7840f3be2aef418f1f8824f69f82d0fab8dd98732a904c2509e97900", + "regex": "(?i)^https?\\:\\/\\/video214314\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "875cee71624afe4277cbe0ebcb4730bd756eaac327b19185fca24a23aad8b3d9", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "952adaf4367b2ab56e44ffa31621ad67dbe1fb6c7bdf83638a6cbc6eb4a477a9", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ab8ed5b2b0f42b2787a0b00798383a4751f971d0f597359f7f17f38d6590a2a6", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "28bb14c41d922fae1d06bc8a64359d93496d01e5280fab9ce97faf62551b3849", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2896aea414a9ad16fd1ecd44374ebc40a3e1b2e31d5e2c648ad4d4a4c7c0a76b", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-porn\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "80066075b674da67e31986e9a51c9bd3e2a0fbd45846cc1caa546d37818c24ba", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0665e50b637434d4c9eba29e92b7dc55299e74ce410d348b3d9bb73819d85100", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "9eb5c80066e4d8e05d058b7ee19725df19d9746c9c3c8458b1aa80b12665d2f2", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0a7ed90a6b406832cd52f0266350ae9ab88b192223a1425c83673262829606b0", + "regex": "(?i)^https?\\:\\/\\/btc1uyq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "49aa4fed11ae47128428f524bbf39c4aa3d3d39833aaca9641dea142143aa976", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1bd3040c605957ecc98a89f5b9a519bed49dd9a1fc2ec0b2093cf6ab71b222b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d87715a270882145174ceba7338607cd293e15ee6334072ab3edffa357462942", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3d5e8389db4bc34f4268fce2dbab7b9eb5b1fd45993ca439ff7a33bc0eb77527", + "regex": "(?i)^https?\\:\\/\\/btc1jyz\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "05da6c13098ad5a375542ccd290703e7724ec37bcc10b13079f8897eb6967c80", + "regex": "(?i)^https?\\:\\/\\/kkhhh6666999\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5474f3dbf1e269d07858a2ad1869e13d89c9f0854e971bf1cca10884cb223e2b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2e4144a5998057de3305b2fe364244158dc1467bc3082a0360079f9d67329d2a", + "regex": "." + }, + { + "hash": "59e205ab3c4e2e7e767d9fd8bfae7a7543bdfbe04d7d48c675fecd6f102bc13f", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cba3db055089e8ca331802d49a3294ebd0af35f830b052fc909667329c86075a", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "54f6627c8252309809e3eaaead3e6e720324f1473b2ec0db296e6d6699933d22", + "regex": "." + }, + { + "hash": "d4d8fa2f69314eed64795c4d01c984b35410968b9782e9245df7c79e5e47a727", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d7e9779e93b409f27965a09978ff0af0e381d8f4f30288f719ffbceb25942bda", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fe443a0abf77c76154ecac37936c3ceccff4ad619eb5bbe0b418c09bcbdd58ee", + "regex": "(?i)^https?\\:\\/\\/btc1jss\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5df5d08f4e16074fbdbc2eec0b884f75dd0d8da1b530b83c80f25ed8ec0d2af4", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8356885280bf07a345bd610461ff5ced7299cece5d2d1d68b746c203f197c602", + "regex": "." + }, + { + "hash": "814ccf770b7d050f4199416611237416da6a96a7332f368e57de397bf55c826c", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2e615064344b5b5a80789677be03f29ad105a49a68940d4a8c7cd27fb8ac2f6f", + "regex": "(?i)^https?\\:\\/\\/btc1uyq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4799a6ee3a3f0878e807ef2024f6b5fdcb6d3dee6a9e05f896024e659aef0075", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tubes\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2915cd51347cd40e56b0bc99f0753f9c8e700f4b854a052b5c82cfc4cd1332c8", + "regex": "(?i)^https?\\:\\/\\/pub\\-9576adff49b048a89197e62ccccbb299\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2da3b2adca0160e09da28115d9e9290f4ba0db2c4565e5fd607c2df30cdd82e5", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "656094480371da541ee412ce64c93b63e602b33139b2865c7b25c4e883236f71", + "regex": "." + }, + { + "hash": "ea13e42fc42a2169459255836ec94fa5b54194481b0b3eddb74c2b70ba1218ae", + "regex": "(?i)^https?\\:\\/\\/best\\-cam\\-porn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e59861886b6af62f651c0bedb9e118418ba37ea1960b255a7916f935b8718d4a", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-vid\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3b9aa14a614ad48613bc0f847d47bd916ea899bb1702740dfd1b20886b47887b", + "regex": "(?i)^https?\\:\\/\\/young\\-cam\\-tubes\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "db186d1a2b93571f4ccafc9ae99d5b19ca29c9fda294e3aa3a25df51caf6022b", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-french\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4c177f31a1bbeadab1679a5ba7e29e2f469326e3f6b55d825c96147525b16cd4", + "regex": "(?i)^https?\\:\\/\\/btc1kfo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "25104a151d419c64bfe8450eaa3341de9d1e14aa0f69e15d21c54dbc75e4d4c7", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bdd57fe4cd99f8237f8facb6bc25cc9107419e8b4190830c04d6a0748c3b4ab4", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "53ea91254b3bc7875ee1e286d72172b17fb2b7d52d802424aaf2661c36b37540", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "86331979d5c2dc3e335597c240289929ed693d8e69405b01eae544fadde7bfce", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "befa4fcb35c65bbfb195b2723f9ab5367080030e4d26cd1643b731c2e9c3cf9e", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2a190a7f3e0f0267265e86250859869bfac7ff722e96ef1fbabd0daa3350c58a", + "regex": "(?i)^https?\\:\\/\\/btc1wjy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e3c16c9a2a9409a6ade96a8adff280c379d1fde3c09e5d9f82f212dcc1a7cac9", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-masturbation\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "32e57582ecafd5c3776a46441e818b89ca124e6f171d348f342b90342aeeffb3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a3802f76f65197afbc9c9d7d96cf1d0c40b61380bf4667029d1c20dfdf294c85", + "regex": "(?i)^https?\\:\\/\\/btc1jaa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b32c2f1da1f206b77d1b1346a129a424464b837dd06b0ef6d3bfcf492cc3a2af", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "48bb7c15745bf677a51f30142d4a482f41da4216a2dc82b9c272f162a2359952", + "regex": "(?i)^https?\\:\\/\\/webcam\\-en\\-direct\\-porn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "aa458538f97e82fb9ca93ed84ea6a28ec1d4b1329c4de6e935ef0bd6470d6993", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ee4042703153b1d713963ee4df3b87886033e4ff50192b845d88dbaf98191d3a", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b06ddb026b54e293c9eafa80f085c5cd925671f88aa8f49fceb0d0db34a79b9c", + "regex": "(?i)^https?\\:\\/\\/btc1jdd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cacab404bb1915c3c0293c5612549a4ffe57402b4403a1f5758808e91deda8bc", + "regex": "(?i)^https?\\:\\/\\/btc1jrr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cc785fdaa71ba5c986d561f100db7ed4e727ab488b279a8ecfe0316a41ecf238", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "68bd711c9bc20dc4277c17a7bf08d6539337edf1b1a90ce86d32956615a3569f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c7f26da0dc2c181c1836166980ef59b1c8552f5e43dd17f40b32b3a04aa9753f", + "regex": "." + }, + { + "hash": "7136fd9c73f56550180f709eb83700d910cb830ab7a8c4dd39bd23dbda27fa10", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tubes\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "99ce41183a47c94950947b1356eef9526667ee9cef3e96bbcd2c98abcf33a0cf", + "regex": "(?i)^https?\\:\\/\\/spycams\\-porno\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "069260fd433c5ffbacb4b4d65d328987bb2d83e568261ff703cfac3bb4fad8a1", + "regex": "(?i)^https?\\:\\/\\/real\\-spy\\-cam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "90946a664671ec39fae1c8eeb2b9b7a23ec2692ef87194b04ef7e15054e9aadc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uee\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c2adabdfa79b2fccaa27bec242ad1b4bc6d2718d197a43b75d64866c9b54cca4", + "regex": "." + }, + { + "hash": "544d1ca3a93cc598a5ec943f8db1c0b79e63b2f2da519ac9220e152b24d128bc", + "regex": "(?i)^https?\\:\\/\\/best\\-cam\\-porn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8dc3883576a55d5b4d27697ed7abf6b68efe56230afbcf469ca18e5a25798e63", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "902f2338fade9dd0eaa5260a4ab278fc4a87e09eef1264aa2660d7fc9bed1283", + "regex": "(?i)^https?\\:\\/\\/btc1jaa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "74d46baaf6374c6ef9a0e3bdd82c628c349e47a389329bd8b65beaad865f4f5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gaJzKlRSfDDaKoxbOliaOxzvQ\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "25a46f28522e5b1038de84935dde3b5f794822cb816d44f3d41d7f7ba4c165dc", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "74f3314cf5315bbe2ad1ee63d33af446dcca64f3dd1db804c49f0a499ebd4525", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f55bddc5588194fb5060a429208d251b82c599f69780e4ed5ce6611b5314a32a", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-porno\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1b51cfe778842ff59a784b4c865e1bf6e7a8abe60b68ce227d8de5d9663a0028", + "regex": "." + }, + { + "hash": "03973d85c72e81f74645425c5c7237eeb5b29eee48d7c173c27cee5227347ca4", + "regex": "(?i)^https?\\:\\/\\/btc1uuw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4639c005fadaa8c1aaaa21aa0acbb5c7921209fd25d271bf80ea16aa27f8a85c", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b16ff823bb4070ae75fd6ce70927ddcc7e7bb283c3aebe54467be8189b390be2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6ed76d3807ad97649c4600addb36427c119bec67c7eaab8ed51012bcbd254d3a", + "regex": "(?i)^https?\\:\\/\\/pub\\-991a7f5ca5bf44ed91fba99d11e9e0b4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "37bf919b991957a31475de1bb2d04919ca999aff6317ed6bcb280d4b892c3f40", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.co\\.at(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "49c8b4fe24ec2c3620dacf5f1f9fa13486ac463bd7be62305c22a6e335a36f5b", + "regex": "(?i)^https?\\:\\/\\/hiiden\\-cams\\-porn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "df5f0cc64dfcfaaaf791e68839e38ed2d6c925ae49903fa5d77a33dbb0075369", + "regex": "(?i)^https?\\:\\/\\/btc1uyq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "68bd6dc0c78a43c722e1a93e292eea96343b0d4e2b998e85331fdc3bf7d4b8c9", + "regex": "(?i)^https?\\:\\/\\/secret\\-cams\\-tube\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d3cb90327959418cd7fd998fd1396b055f1ccaec488d461217c2a9d2662917d6", + "regex": "(?i)^https?\\:\\/\\/btc1wjt\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "49aa2ad740935a1c8c2857b0b6fdf747d4fd0f7e3d6d5c9e50d51d66a25c2bdc", + "regex": "(?i)^https?\\:\\/\\/mn5gw4attnetttt\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e8b919965a994fb7aec1321b4727db857cdfbf92a6ca073a3aa820e4ef105d91", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ebebbba0407733bb859e8fb08a337ec520a603ac70933cd08e8430ff7d900ce8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrp\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3d7dd27451a76f409c2c728b0e9252ad289fcb04cf407e841332ec857f7cbc4a", + "regex": "(?i)^https?\\:\\/\\/btc1uee\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f401a26e81de50af858fb349f64556689939b972a964586b235f73fb457b0da8", + "regex": "(?i)^https?\\:\\/\\/videos\\-voyeur\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bae3759325ccce9cf29e73f5d8366ddb57a2eba20a76cb061d9a5c72a80c64dc", + "regex": "(?i)^https?\\:\\/\\/best\\-cam\\-porn\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e812bad62db439222692d5a6b45840ee03536f5c483034665dc461b9495729ac", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "171474a0eee6ba85dd917af6942199e874307194b17f333dd3306c0aeda58081", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0c5dd916edda756ff4581f34cb94343aea7fb77b8330a109da056ec62d968958", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d4d949774da76ab4904b856ae566a45e6e9dd36e07f3ce971cd15f75a1dc7594", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "94bebfbc9587f21dba00592aba041b76bb0d40eb8920b567a8ec37dc181455a2", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "86129a86ba7bb1a7138c822e5f8c3a265a2cbd88a7b5cf5161b75fa2bb1589d1", + "regex": "(?i)^https?\\:\\/\\/btc1zwh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6e5ef78f055ca76e71317fab8cb2f462f8eebb57993a2ad4c3549f4cca9737d8", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dec4f3f6d2f7285e7c72351f9e7ca9bdf35e5ad3536e0bce9140b3734cc3c183", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ce9361291becbcc20ef6c390756afb668e53632a7ba9cd36fc89e91af657ae5c", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "25764e0740fccf4a7640a281ab434e124f0d84f53e6450ed756b313aaf58b17e", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f8d15780c94dfd41619e0b05f5b2949dd24901e002029974e1b4a3beef93458d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrp\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "61158597fba010665a60df656e0da5fd25d1ddd22e87b1ac87d0062c53880036", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "02322ccc341df401b37d49d337c17df84e03b72a2e2a75318e0e05fa4971c4c5", + "regex": "(?i)^https?\\:\\/\\/btc1jrr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e241e724350f5fc62565f239d85d5fb72f993956c28c7cef0ca79c7994fd6544", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "26cfc7c96eba26d43d919aef690882e526e912c560537fdbc5bc01789069f26f", + "regex": "(?i)^https?\\:\\/\\/video\\-x\\-voyeur\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e4cb0dc8bbc1c4318923da987b98a6fc3e944467d80e57e09b7081565af829a6", + "regex": "." + }, + { + "hash": "5ac6e5cada820115cc912519daff01e7d3006651983ca65d0f937df4fe489a96", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b3dd4b6315c8cae245491e7f3434bf0f231bd24236ff97d7352c27681408d730", + "regex": "(?i)^https?\\:\\/\\/webcam\\-en\\-direct\\-porn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ce86cfaae55afd59a9679e1db9a2141b56a8dee144c130efd8ae87db1892b6da", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6c20a6fe2b532aa4157bfcdfd807ec251234a8c6ee8b3b2b62751f6b28b09a8c", + "regex": "." + }, + { + "hash": "73a13ddd8eea95dd130878f98ea84671c05e0aa845f0a7ed192983d559e6683d", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "54cb35cd336d4689f68ad92cd6d370667cec3c78fa7d5cf22f1977f65acca7b9", + "regex": "(?i)^https?\\:\\/\\/hiiden\\-cams\\-porn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "77b5d0b75ef2e799c7f3fe32cc2ff50c92e046dcac17e38e0af8370a8f05107c", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ede61665c827127802f9ea1f6820999d8a69e4f8b9a1f2b09fd6cc682d67d32f", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-masturbation\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "892d169cfd0464135c011f80724b36adc108b179d504e2d41f02169d486fc0e0", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "936388107c93d025145827e29bff29700da42bec0130e6744c694595bcc60e58", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a1bfa2da641e354cc0f899d8ed9952534cab856295b080f3c3e717f5e02a3365", + "regex": "(?i)^https?\\:\\/\\/spying\\-cams\\-tubes\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5a22da95feb85992059cef1b576b023a0fd842399fb297d133dc7c7c51658c0a", + "regex": "(?i)^https?\\:\\/\\/hide\\-cams\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9cae8a3f9890c50dfdf2a8daa6ef71784bc4ac808ea2ae26479f535d7f005794", + "regex": "." + }, + { + "hash": "b8461be97464b70cc30830ef3546c353587f18859829b88b0995aa7eb7161cac", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "56dd2872d02affadb1a7464186e127ba03ec92c289351f022120e002aefe4e76", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c88de3a7717663d9d55568db3f130963f04aa5be19cbcf0c77786edbd3bf8ea1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ejruooewqa\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "4e5a61afa06326756dfc9d202a8bd86e8f781dd68ebc65304cd264ba31d3b493", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8585eb5c76de46341f3d02e23de036fd571f96609198e8623de0fd1754bf3812", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-french\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fd739bd10c42d1499bf3c0717c105caa3596709ec0bd26e0782e78dfedcb092b", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "41939a16af66016ab5d57226a71b1d83c14b03729bfc3d40073ad9b66c0c4576", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-vid\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ba51b0dee069467c7af8a1b9ddc726896dfc0ba32b8e92078558dfc9e94affea", + "regex": "(?i)^https?\\:\\/\\/btc1wqs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "66ee9caa91beb4fdec87c2443e3649275245bc2a57c57e398657e5497cec7d7d", + "regex": "(?i)^https?\\:\\/\\/btc1jaa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f70e20c754e760f8ee2f8dc14f97db1c332e35deaa3fad94e81c4e1420b56167", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "513897538b9d49ad0eb903f9e7d02c5a551a6d699ca861fb66077e11e0bcab74", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0c2786a121fe094268f36315c8fd2510f93ec961426dabfe3af6c46cdcb09bf6", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-porno\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a0084e41d5eee5792a181d840e8c3f2aca087b7de2c068141eb3a2dfccd8db7b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uee\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "913d9ee6a9424680e4474d6a34d65497b75035be5f2d5b5dd1832075d58bb0c6", + "regex": "(?i)^https?\\:\\/\\/videos\\-voyeur\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "53639dc04899c30afb76c6258b45d665aa134f36a7e7b6bfa84ed331e7ae88ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "42876af17615d4c652843200680b78c9582a06739e0de5962e79fe769a227a7a", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7ebe25ff9798f05c49e3d75bcf680d240513958db85dd18a66cb8e148ae80bbb", + "regex": "(?i)^https?\\:\\/\\/btc1jss\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "db1b5253770321ee1332577bb878dcff837c1fd106459313bbbb935dc66e9067", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bahiwor" + }, + { + "hash": "55a3d7407ecd41826a9eab31fe0d35e6f3e76b9dff794a48c49d91b58a310946", + "regex": "(?i)^https?\\:\\/\\/btc1wqs\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0e843bf9d6528f769d869d03000f7ea1d95cdb2df285b9d0a3d73481d1a38bc5", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "08c498343ab5b3ff35f770b7fb716564e165b44972743ccc66b2b2683e8ce4c6", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-vid\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2f27d0d643da3d0ec4c042ffeee3a7aed76ed370fd28709c5de3829b3bb0c285", + "regex": "(?i)^https?\\:\\/\\/btc1jww\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "187200d5846da5d9e33ffbc7964afc7f5a26a029ee988d3f9867871f37cffdd3", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4c8ab3fe20b88ba851674017b86ef2c39992e753b41e57f03476f10be8fdce4e", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "793301b85827c83fd139fcb891b23eeaf2421a14a41c281594d2f58ad4abe1a9", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0b01d6fbe708247a869069f7e769895d05abb686fe17ed635820137f023258c9", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dbbd0d6d8696c76cacf84fde395ca58a10ba8e0fa6ae7ad08276ae9724d3e54d", + "regex": "(?i)^https?\\:\\/\\/btc1jrr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b583ef8085993d407158c2f63dd335d9de2267eb0c1a004867f8aac949e0ddf9", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-webcam\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8078fa23903ccc4d7f554d25b0adebce8d90b6398ad255873c9bcb86462e7995", + "regex": "(?i)^https?\\:\\/\\/btc1kfo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "96706e3626c87be2a20ad37e93a3836b26abba16c57470b11a2112028258c851", + "regex": "(?i)^https?\\:\\/\\/btc1wqs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "74f3b94959ba3b02dbe328a668ba50c358c431358789d582efde570515da7509", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-vid\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f183bd24298b67b68454dd2922bce74aaee77b7f97c8a88ec88decaca7982957", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gyQydv\\$g\\=JswGhjsY\\=LbngjTsm_Ln\\@v(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2c548212aad5740fa58320c9794067337d8e62b35816bab4069c660633237a79", + "regex": "(?i)^https?\\:\\/\\/porno\\-de\\-web\\-cam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "61843f72bc8f667dc9f7cfeef667c05fdc9ad9be633027826b06215a603b4eda", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "31886b8aeaf35bdf4a270e23fa413a3429fb44a4b4e0a30db27304364c6ca148", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "38cf5fdc1d32dbbd5d97e803590026331a702643612110e762727a25a6962a0c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7d8f6f2f99a6c7dd421cfeac9f141e92c0cea656df3d8af04d1c88d3aa7361f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zsvip9(?:\\?|$)" + }, + { + "hash": "6e5e788d0f2b881d4f3909b0c66ab1f9bc5e27d7505fbd254f1a6d829145879c", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porno\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4bb1cea23b136d622c8bce391d1660a359c7768960224316140647f2e49622b8", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9019168db990512d973706d2286e9389022491e7130da022b314aa9f3d969bfb", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "36c34a2c0d03e7ae88f149ce4a3b58cca6c31bee78a40b26f0ce8bbefcd531a1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.rxjybytbv\\.com\\%E2\\%88\\%95xwpomkqdlo\\%E2\\%88\\%95kfubp\\%E2\\%88\\%95vjrwwswkf\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=epsav\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2398d2540f3269bdd83a4b7592e78f1c31f690340b328e23832c6de5b406f56a", + "regex": "(?i)^https?\\:\\/\\/btc1uui\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "96c19cde40afae1a4dbf1c542e5e2b2c96e36b6990c436b34eed779dbe74cdbd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrp\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1fbfb23294a30fb5d6568ace291f2678a8fe3cdcf45563250ef596cb467a7690", + "regex": "(?i)^https?\\:\\/\\/btc1wuq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7ccfa29fd19cef99c98e1714bcb536d2ad3fc8dc1a432d00a5c68fcc9088af32", + "regex": "(?i)^https?\\:\\/\\/real\\-spy\\-cam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5cb646014884658900c11cd83b6d27a2f1c0176fba8fa4dc440630e1ca8f56ba", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "446812ffdb65c339142e75042cbad5915c88bf189fcc00fd4673e3bb466647ef", + "regex": "(?i)^https?\\:\\/\\/btc1uyq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "895d4b651d1465d92461a7d6a57d5f3dd517300be96b06ef49e3ef0250fb89ce", + "regex": "." + }, + { + "hash": "e6f0fd16706232e943e2feba4fc936a5290c118a1aa2886497df9f758fa8d452", + "regex": "(?i)^https?\\:\\/\\/kkhhh6666999\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3ad11ba48938984d1d6ba7208f1d2de538b1545ec0bfe2af1125f48cc618d908", + "regex": "(?i)^https?\\:\\/\\/ngqsht\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "442936c62ada0a3d26ded5dde85aeb62bf7e66503a41ca0767e6501d04ca70f1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uee\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "08c67f0837693427cfebb290a944e3a13d0b8766b1434665e602f7d53bc7c05d", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tube\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e1555595b0e8c9b22efb5326c1b12b9cb6a190b6ce5db20f2182d1bdf9e2c511", + "regex": "(?i)^https?\\:\\/\\/porno\\-cams\\-francais\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2dda6dafc082f07c1591d07d56bf5648be3e7d3fbd257708326d16a1f20c13ec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0dfb27e92762954353ff3dc4bb1822f7f248f5a5f2a6aa89a43f9cfa560b7dbc", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a54df3e13c354f984d809495f5df76b417453ffdb13ad1ff1a2c111d1c1a3752", + "regex": "." + }, + { + "hash": "87e27e1b8eb9388812dc086579944b4d5b08e7d698727c17c343dabc08e63405", + "regex": "(?i)^https?\\:\\/\\/ndfhcd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6eb8f8dd03706ce10622c7bd20c67e7f10a394b4775de6f2e2ddf1d7c4d97e46", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f6ef534cb0c853066f6134d0d07b9616ce8b1077f5c9bfbba6f35ed40e9c4bcb", + "regex": "(?i)^https?\\:\\/\\/btc1uuw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f5813a7aca487f8ec37244a02bcddec9211554975265892c7dcf1ac29879f2d0", + "regex": "(?i)^https?\\:\\/\\/secret\\-cams\\-tube\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0d28ca5b5bc260846841af2110941f0dbca5f0bed3c9bafebd8dc156c26cfe4e", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1822918e63a759a64a9143653460f3c6f7788c95bab3b0211942df2577eef746", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "18f22d808c6e0b98959d696c73410f3861a93edaaf6f51d43f1a5fefd6fa4bef", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "86378293c82c4a4264a5fa5a1f84337621854840c2e17ed6af7ff98704436e5e", + "regex": "." + }, + { + "hash": "8eab3888eab544b5dbd7e886b616be2b11ee22f16ea478bc3ef168c438687878", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hoken\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "edebbefe0fdc610e771457b6f09f5a8c6149731ea088062d7c7f4e733ba4c882", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d8265d8a96a988f866fe1df9b34594c22609f6ab947484c0a8b8bda53e667840", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0c0e2e94d062b8b1285281ca840e888a9668e77ffe1b1a70116236e49652cadc", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tubes\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "66ee04b4d2762c5533900eb50c8c528d0718f0b5cd4e8e645dc4b44b4c75a748", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-tubes\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a0acd2d8a44064c08ccfce06df48ec84670e5b0ba11a6791fe7afdb73740bb66", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c9342d4aed9858c5074f9a9c5b0a12421d1e4cf83fca8f34bc8e7c4b8fe09", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-en\\-direct\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c6fa07b120402773ce500e0942da034c904ee2d8017e2fc7fc1e3f0a9ec991ce", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c2f3068f805668534bcad60a3e57da2198162802874652ec051c423635b12d48", + "regex": "(?i)^https?\\:\\/\\/btc1jtt\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c9dba110b3e88923d35b4344b1dad926f0bb659c21ad86f069976269d016a1cb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8aea583d5dad5f9d216a6733906f9081517b85e8953051611bc14e48ec8d4bb2", + "regex": "(?i)^https?\\:\\/\\/best\\-cam\\-porn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d8309d5a8c7a0f77a0b17640d3ed391cc02fe8be5a982cccea32e4e6294a9753", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "055d01c655f085230a6f8388515b45700e168c005090c96b582db8f065669694", + "regex": "(?i)^https?\\:\\/\\/btc1uuk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d0f806922a36479d1dcb3d143e6d9ac833086f531b575985a77139f55a016b68", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-porns\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "48e8bfdc650cd32811c32eb4f8ac422aedf9d58e90c44ed1a9db889fd1c2fac1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ius\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "46e289fa818ffc7eab660c24f03ac32d802188038a71b6c4a25bdca73f1f1d3d", + "regex": "(?i)^https?\\:\\/\\/btc1jss\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1afe1a2d8a3281726d2ff5880e4ea7400ce238b4447ac9ffd7f3ed6a6f367bf3", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f0d4e57984a7c74006b8fc4bd9a334f284d6c7125fa1798230b6c95dc356e7a4", + "regex": "(?i)^https?\\:\\/\\/btc1uuk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "750774203bd3957e0e1a6c157a590d2e7561173786038556dddf8aff9e7da438", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-french\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7ae394fa9ce2222023c5ffa564d72070873bd7310bb9a3ebb05555b35c34cc94", + "regex": "." + }, + { + "hash": "1feee0c03ab7e55d35954b7b79c1d9993175ad5137596bc266b6e90fdacc3b00", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7bd90e0ea1cf9a5c8243f249deeab0c4bc412306017e674f28780b2bd0bc4551", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9970[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "627f4f3f1b63522690f96cac6f4cac1c56132d2c9230485be0bc11c6cb684ae1", + "regex": "(?i)^https?\\:\\/\\/btc1jaa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fc9851831d1c27e7be02907719e408f43b68794493779af4531ee80c4d98bbe8", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3ac7125e2e27a0ef2711cd1e8e5bd08d0d8194a43d32b62d53c51fbf871052e2", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "93bfb3eeb183778ba24ed3b1fd541eb3d68fada163e2ad4c4f35f3f131874dbd", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ece119c1eee389e6e1ed0bc4638fb08ec3e768920c4302556aec1f8bb22e842d", + "regex": "(?i)^https?\\:\\/\\/btc1zwh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2e41395a855639ef06dbd8b2d2b0c8c6ba6b6b5ccbbbd7bd357fa5ce6618a1af", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d6a164e1f096a4686744ce337f6667de6c1280e2ba73e95fb233bada44a766ce", + "regex": "(?i)^https?\\:\\/\\/porno\\-cams\\-francais\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "10b9f9ac7d4b71d2f00905d15d6eb4e9162cae95c5b73edace500ea1abac228a", + "regex": "(?i)^https?\\:\\/\\/btc1jaa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fgetuid\\%253Fhttps\\%25253A\\%25252F\\%25252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%25252Fmua\\%25252Fseguro\\.html\\%253F\\%253F\\%253F\\%252Fecm3\\%253Fid\\%253D\\%2524UID\\%2526ex\\%253Dappnexus\\.com\\%253F\\%253F\\%253F\\%253F\\%253F\\%253F\\%253F\\%253Fex\\%253Dzeotap$" + }, + { + "hash": "764482e7a9e225b1816417a46e397fd330692c97ddc111ddc8f46c42f7025a80", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-x\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "89c049b228404e906920952df8cfc2e70d57c5d201ffcdddeef9d8e1cdd217ad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e2a266c486448f885e43f3b8c898e49b118db1d08b17a89aa725489071dc9f81", + "regex": "(?i)^https?\\:\\/\\/accessunitgmx022rjeme\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "94211e35cd5d291ba763f77fa95c3440f645b071840e4ec440d2327fabcd8c1e", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fbf63ab0a213369910a2b613ce139b88ab5eed5801a451a9919811a038c637f4", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8c1bbc311b4d6c2c65dfc5578fbc8f48f1de0271bdde06eb966a007990de8d98", + "regex": "(?i)^https?\\:\\/\\/best\\-cam\\-porn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "af543041c428b79f3e8d5bb63258e4e72370a93eb83c9eaa3a6f3a293092fdd6", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4553f62c4915871c580aedd0b357033374f282fd0c8c796ec4f3b6f61693fc06", + "regex": "(?i)^https?\\:\\/\\/amateur\\-girl\\-cam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4c5bf6fede81f223487e873b129cd2716bacd863c22c5c2b596635f4636646e3", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "12d6f6d15b2d6a973782d2c656217d7476a9f99d45bc68b45ba2e4ed4e8f7736", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-tubes\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1c22753cd31aac9ea38fb9d402cd13cd90990011f95e6842f0b25e474594e55a", + "regex": "(?i)^https?\\:\\/\\/hot\\-free\\-webcam\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "33c5446926d3c978ae8f52064faa4c45a1e74f280826902eb27c9ad58d9d2bc0", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-xxx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "45e9b8afdc2b243070a9afe81981475a7c2f98770a8d4fc854ac75dfbe624815", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "771f7a9fc2362c1a4b4d15b597bd08799750d3d7df9a11e2e856bc0da82d1a33", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "80a8a168bc4b74c229978c79f7b4e601cf7b78eb159770a5aa8cbe55dd6ad702", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-video\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "39da8d5236c652d1b5db3b86e761a87ecdc428d3ce694f4c1be0304a15294cd6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bd76b1513c42b82877346b3bee912d092533d5fd8f7b90dfd43fefee84289297", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1id85lvjo[\\/\\\\]+l\\?btd\\=dHJrLmNvbG9ueS1zY29yZS1yZWxhdGVkLWRvbmtleS5ydW4\\&exptoken\\=MTczMjIxOTk4NzE3Ng\\%3D\\%3D\\&lang\\=en\\&lid\\=7dd5a582\\-b0d4\\-4d5e\\-8984\\-002c286eefeb\\&pd2q\\=YTE9N2RkNWE1ODItYjBkNC00ZDVlLTg5ODQtMDAyYzI4NmVlZmViJmEyPTZiNGViNThiLWY4YjMtNDhhNy1hMGNhLTA3YjYzYTEzNmY2ZCZhMz0\\&r_countrycode\\=US\\&r_lang\\=en\\&td\\=dHJrLndlc3Rlcm4tb3VyLWRpcmVjdGlvbi1taWdodC5ydW4vc253ZGFydGY\\&lvc\\=7dad7ad9$" + }, + { + "hash": "ccdc77660d347af6e09b3d785d8d4a38694df79d012fa1bb091c9beb35571de8", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cd4df0b063dec9366eabcc11c892f97441205b5c0a07684c95f9d65cc19d5678", + "regex": "." + }, + { + "hash": "8152734a84ba61b05ceaf031cb44113b1c58a6964bffdbb53e346f453d83ea4a", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-vid\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "88ff2443431f36a40318b44f4e405eba2a5da472fdef89e2d2c53a7f820cecab", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c6d467d10a49c8841530bd63ae494541acccbacbf4003f461960fb93adcc01e7", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "01565db19b460b6b5d08f07bb5f474ba3eba29ec99f4ddd8b58732e271a12dfa", + "regex": "(?i)^https?\\:\\/\\/btc1jee\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9f6f04f4de47b69f6c4e36904b3b0526617b4a8e0063a51af1aea1223860521e", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5aec752db67a68fb81b24885ea8e9de6578f55a56b006c2a3bcebc550fa042d0", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6c8c046f3266a5f2705982039f6326a568519240648e744799a80c0884fc619c", + "regex": "(?i)^https?\\:\\/\\/btc1wqs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "92358b7092827a22110550eb16599eb57ea81420413d9be2db9066af934aedb7", + "regex": "(?i)^https?\\:\\/\\/btc1yue\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d3c5a2b9cc66258f91cc13b060db629857b75526ba25bcff243d6f5266d44164", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "10f1b35c00c504225322fed9e749b9cce7fc95a91453c51a4d7c676ee84f975d", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "343c1ace95ba42076b5b54b229cbd3dce44afdbb7661bb565c32497f7b3f8b4b", + "regex": "(?i)^https?\\:\\/\\/btc1zwh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "673b0e4ff84fa9c466110d90a1e368161d3755c28223b0787b6f94e19b6b52e7", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ac4fd10fe51af5f3a51597eca7628d1b604452a0f460b2e6807910b53cc2f1b1", + "regex": "(?i)^https?\\:\\/\\/videos\\-voyeur\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "501590984605de330495c859370101c08a4ca235d0b89936a10209e71fe7ed50", + "regex": "(?i)^https?\\:\\/\\/btc1kfo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "794a88c474eeeba45821136e19f72adefdf012d9aca43ee842a932aa9f839934", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9bd7c178373819bb5d96883b3613a06baba428edb084dd15a833f31eedfa8580", + "regex": "(?i)^https?\\:\\/\\/btc1udd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c107148d371efdb361f7656c9ad4463ab776c508c7278870bad3808cff0b0b79", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "87a1464c184e8035dbed68809bfb739bb788461082b931a8989258182d05df6a", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a1e6a8a4edaf3f0ba4e7ad77414b02460a460f241ff94755b6a2933a1eadbd4b", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b464e55b8e3e9493f74ddf7ad8c683b061a758d8b947e50bb42edf6e5d9f9a13", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "12fec25aa22221ec1da5acf798e4140539f76cffb63d7df6292e72740524c641", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fa169834ba1e33c40ce6d7fbb95afb49539989b2db453332c76cc79b8c65233d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4da8c611fb2efa5ba7d7cdaf9884ec01951eaa936679e833d92997d78059b2d9", + "regex": "(?i)^https?\\:\\/\\/btc1jww\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "55b0f8b65b804895e2e6c30bbdc74782031223a00da54303173442e0bb122678", + "regex": "(?i)^https?\\:\\/\\/spy\\-toilets\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b4dfae5f6db7a4d66feee12bb56d04ac56a36546155d630ed1e76b7bac266d96", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "53639dc04899c30afb76c6258b45d665aa134f36a7e7b6bfa84ed331e7ae88ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f89dcb4af0072536ee28b0b128c92e720d0653d60ae8de8e91e1aa6ca2b906fc", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9f6d314cce752b2fb42461c170f0661ef211902ab27ea7ffa480b4fb12d727cf", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-video\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e902db715860c8e4ea69de665bb81dfb67333b0d5f96f0726886880e585c7b14", + "regex": "." + }, + { + "hash": "21750b78e5bcf57996392af2fda127c8c093f60759e7fcbdf5701ac32f89ee22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pjzj\\.\\.(?:\\?|$)" + }, + { + "hash": "36276b7446c23231af679bc94796971cb310fe378b0983a493dd7dd9a8e494e8", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "64065c0cd857f42648f20399dfae09d7cd334237df262f484fb35ebd365dbd66", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-x\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bbd67fdc06c7d8dd70072e26e28b01f7565a0605da5346fb06f9807546ef6134", + "regex": "(?i)^https?\\:\\/\\/estafestaz\\.top(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "8524890c6f1a7d23333947856c164fc33e10c9ef69d6f09d5ac5f9fae8dd4e6c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b9fb714b54ccb72a78dbe2b5cad3214c6347bc9a851a4481dadf546c37c3a696", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uee\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3ac7f0aa0b7307388eecc38a7801257ef3c9c5b52ed6b53c430331c88bbddbfb", + "regex": "(?i)^https?\\:\\/\\/btc1jaa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a507787ddcaaf5223ddf89132064f88afb90499ba21eaa8354f0396d6819a0ab", + "regex": "." + }, + { + "hash": "308c9d3c933642a361607d9764ca3d9c7b785e98bf58881383996606be8f26d2", + "regex": "(?i)^https?\\:\\/\\/video214314\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4ca1760e9ec3be0787be8b25984ef204c74342cbfe57dcca30431406fd014a72", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "14b522c9c62ba26250a15f62b8674871e0b2f07bdf5fec94fc2b080740cbfe81", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c4f20d58707701d4e284cb723df116363d23989a68dd98e31d112139785a55a0", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "75470b7016d4cd94d24e1cfa0e78a4b808c66d69c10e20ca7840b2a82724f8e0", + "regex": "(?i)^https?\\:\\/\\/server8773\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0efe2d2ffdd2484522c008d4217c2a03f56e1204bba06ea72a05d165b0abddbc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1eec9b747cb8da62423d1ab2a57cf4dff0824a812b8d4ee84c263ba4206403a9", + "regex": "." + }, + { + "hash": "1db5484281b3dcb3002356ecb658216cb3655e9db19eeead55cfb798c15a9b44", + "regex": "(?i)^https?\\:\\/\\/videos\\-voyeur\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "716108d9426dbd955693ff1c25b5ad8f4db95d2f5849d393f481886b8b2a320c", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2e8281d64f0f72c80306d2f7df0325e481757d41e94793e6b5e51cc828e9955c", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "305c54926e24d5c592ad538e9e97de70371031c75fd43865f9575af175aacc90", + "regex": "(?i)^https?\\:\\/\\/cams\\-tubes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0ca6ed26ff09d5a11fe14895d79d150b44cd196d28332911d6296d3bf5a3bc0f", + "regex": "(?i)^https?\\:\\/\\/btv1jys\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bd5dabce7e2e7494e4dc2f869c2a907d53105e4a9166d524503d20fb1db43f30", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d9d41c397bdd16ca5c71858348ca47cd932530100c43072e243f9854a9a57bd7", + "regex": "(?i)^https?\\:\\/\\/btc1kwk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bcfdbb793b2d9e619c2127446a0fff67f1c23bc5534923115cd8a4a3bff9d2a5", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "181f53a872b59c4bfb316acf04e7851d26835398e31d53e689ea69d7683e4a6d", + "regex": "(?i)^https?\\:\\/\\/btc1uww\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6ad4271b5043e372a6b25808bb273793ef3617a6cffe36eecd3a51fe38ff9781", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8be79ff4f1d8d98a2947a2946c8e6a403c179d56b9e9f57eb226aa44cb41a03b", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "603dab5c038e3c2fca3ebf7a9b1a1813383a26863a56ab648aa0585afd013e5b", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ae53212de1845c2f2f5a5b8553ae26973e18ff7f9a3723175ddd44b649e47e03", + "regex": "(?i)^https?\\:\\/\\/hide\\-cams\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "03e003bc0d33f9ea8a4af46ea56d0b852af3cc0ab3db236516b890cffcdef00c", + "regex": "(?i)^https?\\:\\/\\/ngqsht\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "22d3fa2e0e7d76cb4c90222d03a711556fa7583c1bdcd857a65c6b32708476d1", + "regex": "(?i)^https?\\:\\/\\/btc1zza\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bd4999eccfab9549b07a591992f507088fafc595ec1c4497a1b3d6e2df3d7ccc", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-porn\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "281590601100c33385c5086337e55d4f87b3f86d5a8d66897ffe678b57bc8b85", + "regex": "(?i)^https?\\:\\/\\/porn\\-par\\-webcam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "180d0ad45d19b99a1f5ab31bf6479c9417a4949941d8d1d66fd97848366e9c16", + "regex": "(?i)^https?\\:\\/\\/video214314\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1f0a9a07d19e54b3bc5a9b28bfcfc9e6e7420f083a317cad93d64cedc3b61a14", + "regex": "(?i)^https?\\:\\/\\/videos\\-voyeur\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b44935189c875c83842953e83442a9d5123b6d4650cb0c3c9b471acf8b635fb2", + "regex": "." + }, + { + "hash": "1dac73717abd75de15cd67f0bdc0bd6e0ee77b6910d50aee5f6ed06fa14655ef", + "regex": "(?i)^https?\\:\\/\\/btc1udd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c6bf9236ba1053b54edebd21a3e6a99c4abc20bf32ac24d67ee384d76779f70e", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4ecc6066b1ef89afd50cd07b8430abce6bc64060159abdaf6c170331bed1a5c4", + "regex": "(?i)^https?\\:\\/\\/btc1jss\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fbe5578bd89155fb7be368890d3941bef27a1458cf62f36b98557200e6de7ec2", + "regex": "(?i)^https?\\:\\/\\/cams\\-tubes\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "031f5bc3d2609270e86f592d4fc447ba6ed07dad782da223f6238af94a89948d", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "abb7ee0eb51b3813d2a67e3e080e50b22b07bdcc3c7b88e82e8154568eadf429", + "regex": "(?i)^https?\\:\\/\\/btc1udd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9a58adab0f599fe6b036b4f090543fd09034f2a825f1d831ed8d0e652e1f0a0e", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a159c45935d0a145e13f2ac4ee1d701c6703959f1560cb82ab3063f206229c6c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "27ec5af87391b1379bf3ac93d4b9ecc07836c90f5368e0cbb71847cecbb8241d", + "regex": "(?i)^https?\\:\\/\\/btc1jyz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c04dd6abcf70c3c5ad1cd7fc609e38bc46df7937510f95e0da868c46387419a3", + "regex": "(?i)^https?\\:\\/\\/bfdsvw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f0e42f3e681d4670e4cb2d076485701d08de578a3771bf630ef896e82aba6378", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ed2026882a673962aca3a91fdf5e88e4df243e279c05e783a17a75f68bc392d2", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c9cc7631ccbc7081dfd52bf1dc188ee3fd505ab4b313ce3ce9e67ade52248546", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6d43297dbd3f7e315a7baaf979ef070636ad2c29f263f9fc944a39abdabbb4b2", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-vid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0ea1e08253e7dfbd42fe6791e4b5249393c930918040ff6de6c2a2c225b7e5d6", + "regex": "(?i)^https?\\:\\/\\/real\\-spy\\-cam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5dbfe876c36a5720cadd922acfb83c2cd940ee5cbe81eba59394f7b9875a96a4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uee\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "193c52d142873cc8f5ae606eddbdd9b7b733a62e8240abad29d0ca9f34c41488", + "regex": "." + }, + { + "hash": "65416d25dfcf767cff760354f70def88dab93b99e70645049ff36be3d243ae5e", + "regex": "(?i)^https?\\:\\/\\/real\\-spy\\-cam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "69e4cd0117ebe1a50f17d8911fde4b85e60920d37b72b52471b6e1ffce0095dc", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "209edcbca84084b2a6ee9bf2866845ed6a8f3e501ca17727e807206e7fedde88", + "regex": "." + }, + { + "hash": "ec639f7da94e01e98546631ef16e2d9a80b058e8ea41a290002303bf39149556", + "regex": "(?i)^https?\\:\\/\\/porno\\-de\\-web\\-cam\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "82a8d4300c51bd9e53b5326ea0827f3b1c88eaf79f33e865a7f86cabee98b487", + "regex": "." + }, + { + "hash": "250a1366c58189e8374e64437acdb31ef31f25e36b02a02f3377041a90b3d16c", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c02c311d6229dcbc95ad828183c998f0cf9dd4f3e75b7a32b2806ad2aad1e4e5", + "regex": "(?i)^https?\\:\\/\\/spycams\\-porno\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0e57c66bee6108ded5120fff75151b77591b89d75de2af94bd50d72a3af3ace4", + "regex": "(?i)^https?\\:\\/\\/acces0789\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dbb5d9f01075152a3a0fe8a46b3ab80d15f9e3f9686d75f7135d344cb252f29e", + "regex": "(?i)^https?\\:\\/\\/cam\\-live\\-porno\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "845deab6ee4f0b896c2c765625a766aa406cd20ff5f639c340ae4954eee4bb2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+HD7G393H[\\/\\\\]+0neM83hG1ady\\.html(?:\\?|$)" + }, + { + "hash": "3f1dbe75f57df30a6575c1c54c379a838dabcca81af942d9e953692c51e21385", + "regex": "(?i)^https?\\:\\/\\/btc1jyz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a8b8b845bd8911f5e4401fd12b43bbe38399f7130cbc14c7149a67bd457ff7d9", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-webcam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c9eb88463907caf0c73a88d67e898442ed30bb82d8087858a61ed93987108b89", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3490b7d526fa27a50484c0273165d8d88c60274ce9eae93b77c3233fadba50fa", + "regex": "." + }, + { + "hash": "09d14b671ed5e1e07b62a22fb4fa84f3b37d0c041e6cd5e066ec1b1fc869b88a", + "regex": "(?i)^https?\\:\\/\\/hot\\-free\\-webcam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f6af052522ea9832ba27bbf54ebfd767187446a054d1f45cedaa831c0c486a88", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tubes\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c3e724c5fece381cef3a97ed9eb4f1b925ae325e0813b4ef6685109ee0f5cfa0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jss\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "30224ac4055a9c026b8174732e90afa2aa0dc6b8a52d8e516fbf734d4afb759c", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-xxx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f8952a3bd56cf9a8fdd881b403daee9274ee0b7bd2256c405ddf39de65fd6a82", + "regex": "(?i)^https?\\:\\/\\/real\\-spy\\-cam\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1f5741a89ca01de0300c1d216e4f5f07e38170a6f7502412ee675b4b7adf5a9d", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "727b3ebf1bb0d4a4c9b9d74152534efd70b8c02c6aceaf0f56cfd9568845b1a0", + "regex": "." + }, + { + "hash": "e4ce1b14ed9aa430d8b3ff5edef565ac9135640d00bb9d89e109f307fc6f51eb", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ecd48624473b19b1d2e7ce52cf7527d1d1017c323084e1fb76446f4fa6644b58", + "regex": "(?i)^https?\\:\\/\\/cams\\-tubes\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a2843533008aa170b68b45d1da2b0aceda00b9f4366fa243e3e72554f983a091", + "regex": "(?i)^https?\\:\\/\\/spying\\-cams\\-tubes\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "39a0cb8920fef2b6863a32df6fe0c895c98c54058695f78b4f12ec63a5826552", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "96cfc1f69154754667bc12fea11d094078f81a11e568798b9dc7358488e6b4d6", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bd681f33a49f06e6e420ec84f96d64dd57c1a69856f1f169bd1b95450e296b49", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-xxx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e5ecd1481b52d4121a86d43e84fb91b1d0d61870be46525b5aaf6bc35d07179f", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-porn\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "70c32c83db7abf2f0dd1ee7b6d07956ffdc8147abc7c1a31f933e38b6494252b", + "regex": "(?i)^https?\\:\\/\\/video\\-x\\-voyeur\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1736723b686cc4acaf6de076e0b1eaa94324f75425c498e2b8e0d117de42adc3", + "regex": "(?i)^https?\\:\\/\\/btc1udd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "750ab56c67e145ad435bef68eb037a39a08e6aa71bbe004d541277847db19208", + "regex": "(?i)^https?\\:\\/\\/btc1gez\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f17d2c7b9451f67b9e5981ba8e41d173ed2518677f5213f809e110ecf2271c65", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d9b95a74683fcdc204078f2615aba48a86c922b526ddab29583338b42f01a94c", + "regex": "(?i)^https?\\:\\/\\/btc1wjt\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b4fd10bc06aa404a123d7a9270de50bdd59f64a6d239bd2e9ac71aa2bcfac991", + "regex": "(?i)^https?\\:\\/\\/webcam\\-en\\-direct\\-porn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ff302c19e90736000658253a4440a927da8016378e62ce4ca85043112a08b1c0", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7593205f5b97a3247fb55c22940844672209cc725a3548de55024290358e176e", + "regex": "(?i)^https?\\:\\/\\/btc1jrr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cec72e826db4b50339b7fb636c5c8e42fa4541cd50ef3a0b1865972f2e4cc7f5", + "regex": "(?i)^https?\\:\\/\\/kkhhh6666999\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d65ca81c364e15befe7d677459fdc0055c7f7f6b4680e90dd8289b50ce15beaf", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "49619e41726d9ed9e4f5942120f032ad3359a9a70815e58d160684da478593b9", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-tubes\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ffa91ff5590ff99165cf0409a0f2504c60deba86376da62b1c759bf5c7b3e952", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4018b2ba59d8a88c004429a3c3f704cc271177bac280df67a6d6dec3d47d8021", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a99650bb80a45c011a5992ab12052855590d129343ef07825dbe8e6a7e1b1a38", + "regex": "(?i)^https?\\:\\/\\/kkhhh6666999\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0f960525ee1cf41c2b487aa028581ab946cabc34ea77646e2fb5f223407f8670", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-video\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4d5dbb22aa446b7ae54d5d3680cf04ce772d04e954d430cca59b445d20ffdcfc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uut\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8efdab893ce89606ba9f80fc7cacb8d89fee7e1f0584420276797dfa6282bf4b", + "regex": "." + }, + { + "hash": "1d4d7351565a43e6056570e5a8616a2776077f79d23f4b2c8ef921a86dfbc5f9", + "regex": "(?i)^https?\\:\\/\\/porn\\-en\\-webcam\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.avtuqr.com%E2%88%95wfdmmr%E2%88%95oedktil%E2%88%95ujribn@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "9efd53aa333a1d7a22314289d1ccce5ed628124cf4ce2750c2edbbe57556848d", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-french\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4f2b5fec849f3b4fc841e36afe935b85daabaf6ff3c60cbcb8297247d0705406", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zza\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "180ecb4b49911b7786d4a09eda3d368c7dae410a3b2c8de01f8e864e28caa939", + "regex": "(?i)^https?\\:\\/\\/btc1yue\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7593742cc7efc1526814e6f16fd28f23f3b469bae6bdc1b78e741479777906d0", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f54d6b10f3247f61b21aa865a11c1f0ec282acdf4fcfd7d7f59f70c8806f4188", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "db185c1a56bba60cc316f6b933b44f73e569b5ca487d598768a46badd352c8fa", + "regex": "(?i)^https?\\:\\/\\/att\\-105588\\-102672\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "47a3d60fac890decf029bd3e257cd2ffb7bcd5d2849034c5208c06ef13a028e3", + "regex": "(?i)^https?\\:\\/\\/btc1zwh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7de5e26c26935abfcbe2210a49792427cdd649f091f73870da2ffa348683fc4f", + "regex": "." + }, + { + "hash": "a42fe7a75594cabf2e6159882cf5796e4fcb2f3aca8e2d3ddb6c1c4c97374883", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "142063fd5884657d2b63ab7e0f30f6785017c2dda0658b1ac73075069a1362a3", + "regex": "(?i)^https?\\:\\/\\/pub\\-185cea9baf794d75bd93a2c4638af4d5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "904be69250fe7125141b435c3c562df60eb932d78dcdbac9c3781dedf34e3099", + "regex": "(?i)^https?\\:\\/\\/webcam\\-en\\-direct\\-porn\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e504443d994452b7ac9929163f429f4a400e0b3ac94d5d938b88700eff04b297", + "regex": "(?i)^https?\\:\\/\\/btc1uuw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "94c56d6c8d608d18c5f249f616286bf80a0b8f59f637ecaf5714fac21973d9ef", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e771deaa29d6aaf3971edb19e9a77fc9522fbba5245839955a4b219095ec1b03", + "regex": "(?i)^https?\\:\\/\\/btc1kfo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5a35f72422ebe0cb9e5b7097cae3ba4ca2d99dece52edab84b40bf243bf1ef62", + "regex": "(?i)^https?\\:\\/\\/video\\-x\\-voyeur\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5df2394f58f4468f60c6685618fe71d1618f6960f6a966d045d65559373c6c8c", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bb86a1169ab725c49ff555cba20c668aa3dfcca7daa769ab68dd7e23671d8057", + "regex": "(?i)^https?\\:\\/\\/young\\-cam\\-tubes\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2c488f4d4b8a52caad28c80f1fb56b0016fd5a7daa1a1b47872e42fd9cc9ff5a", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d386fb4efe28bfbd04a320ee1acaa6c5ec5b8d42547c2d018c0fb7d8c93b9822", + "regex": "(?i)^https?\\:\\/\\/btc1ppa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e72b3f13857a323e2a70bf507457e794e513a84f5e0265870904629a3e529435", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-vid\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c8ac6d384ab6fcc98dffdfd7f64468498a6f3c3542052fce0d14c797134b7093", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0265c89991408d7f75098dc7cb39624e9d2e62edae07183b581fbbb47307a5dd", + "regex": "." + }, + { + "hash": "232830e8eb4f1da1598ca919709e07bf22209970ac7e13f6ec71123f79efa87a", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ca69dff8f9c70aaae81007c402597ab16f0c9f735cc180cad15526323b73ecb8", + "regex": "(?i)^https?\\:\\/\\/btc1ius\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4cbf6924685ea36c917ee7b60670b64dd114365c9073ac2dcc51b74d540961fc", + "regex": "." + }, + { + "hash": "42dafd27ca08c92bdcd86b1dd82b57cfff7425eaf4d3a3852f4ceb87d0f46f31", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27d0a79a87abaa23ed4364b182a56a443140a97e6fd9b5e7a18993e8e3584e64", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3cd8454d1452f7e6a80f50cad31af32faea5b5f257be04517ef405e6deb9aa5a", + "regex": "(?i)^https?\\:\\/\\/hot\\-free\\-webcam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "45a498a6780b962b7193b067b3813287f018d58fce5daa13648c3920639dac03", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fdf494dd45d90dc01eb672076bc5f9270b6e88e32d38b36d667665e62c3cfac6", + "regex": "." + }, + { + "hash": "16d2c0e3a003e8457d94b3a8702c8ec3dcc7236486fc87395edb7444f76d8519", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrp\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "dbff785dafc542ea5c5609ab10858808f1afc755ad18c3cb8686b18e7305ce85", + "regex": "(?i)^https?\\:\\/\\/btc1jqq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b9d13a16a741eac53339ec9422e4a18e3031a1aa3df43247b0681b5df365b47", + "regex": "(?i)^https?\\:\\/\\/btv1jys\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8f559336b521c36a33d729cfdb6581379129ef4761654f5336dd35e551fdb350", + "regex": "." + }, + { + "hash": "ca69db95151fe125c5f8e0bcbeb39079d8932e598f12f610dbf076848e7eced6", + "regex": "(?i)^https?\\:\\/\\/hot\\-free\\-webcam\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "66b0906fa62180ad527f8d745008d1d096377e1685872af75ddfe163a8483bf6", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9950c2652dea5dac76073ec7c0f12dbd2a0cadfd0811afdd510017a8143eb851", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "75c07335523cd0f0029a32522f2a1481c887cfd720c76a91f65e1d177a1ef32b", + "regex": "(?i)^https?\\:\\/\\/video\\-x\\-voyeur\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3f902f4c949ddeef3bd7a6bc83bdc4cb87712840d5a2e5c352b64f145ef80a39", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d516c174c1b1e692fbc69796e145e888974428b6200a5823fc7f1c5838382a42", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d2a8477b818b9c3e3236dda20fb3821ec52f2ea677df87d0da3cea7242de6ebd", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7278bdf377af53f73f7e78a27b1f4121f427c8acda0aed3fa487de84f60a29eb", + "regex": "(?i)^https?\\:\\/\\/real\\-spy\\-cam\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f08667b171757e7ae066e1be06e81e227c8ed57fba19f3fe7832d33fe2567792", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a1d5189052f25bee4841913f2db39834c649a0bca3165dcad369b8a88ca24a8a", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b944054c02744dfec538655553429373158ef3eddda700d5d7037c6079e1933d", + "regex": "(?i)^https?\\:\\/\\/btc1jrr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7d2c13cf0debea43a241207161a78ffc58437b80e2e7775c864d87e7f6a54585", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-video\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d353681f17dd45e168a341b7ab6872301bf9d2ace3127742d00c7328c1e9e851", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "80560bf0ef2815f0117ed9b65085b1335125e5e814d4d152d73e0b04e35e039b", + "regex": "(?i)^https?\\:\\/\\/btc1jss\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b449c1ae0acedc5b9b72ea1aec265fd7e9f85d480824e8e2a4555ab2e61b0991", + "regex": "." + }, + { + "hash": "cba6a50635b81ee64a58ebfac05d2fff672320de0b7362daed50ab835bfae658", + "regex": "(?i)^https?\\:\\/\\/btc1wqs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d9633c3adf3537b10c3d4bd7666251f55569e455d0bf3db6d64afc391375ae6d", + "regex": "(?i)^https?\\:\\/\\/btc1jaa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9b3dea8e5a29acdda33195ced581e0b652272a9fecd3892d6df715720ee57201", + "regex": "(?i)^https?\\:\\/\\/btc1uuj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1344913c7549c73f8838bffc2b5f16cde64b5ca14583c399dc92e9efe9d52cd2", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e4b4d906e98c264a5703a3a1d854ac99a93c0ee83cd793d10583143b8f03e1ea", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "54645fba42d207e633b1435d0947c4877675955de23222116c88494711d717e8", + "regex": "(?i)^https?\\:\\/\\/btc1ppa\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "29e5c0e20b7100cd514169a36d03738bb534f108a698e361d6a10d71219bf22d", + "regex": "(?i)^https?\\:\\/\\/btc1wjt\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "144a5291a9f6dfd8bb635517426503ad67ffaebe09d758d5f3a267b85f9eb76d", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-vid\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b9779284c4c2571432fea6d37931935498d6fc3315206bb130d0d942a4e32b37", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=RhzEmanRUeDAQo\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "714109602dcc2281b6f20f1eea30b490446f44bc081fc1a2c317df94dc63f63c", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1b74e98ed3f76c76c6398939d3d9f603a1a2e1edf01581313fc962452e8c6b4a", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e68544751829af3076acde984859686fb1056e36af1a8dd05be9c4075191eb16", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d81043a8efa19f108d537371cf245bcee3a10e85085eb1e7821103ddfb50d4fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\%20url\\?m\\=000\\&t\\=000\\&ip\\=43\\.249\\.131\\.125\\&language\\=ja\\-JP\\&d\\=000$" + }, + { + "hash": "a833090c2b545d9e5231f36fce927decd47672af5941c68ab45c2f438507c09d", + "regex": "(?i)^https?\\:\\/\\/btc1uui\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "63197eb5befdb00bc163f9bdcd6d8ba00dc58d03c931b7ec696d107b9ecf0cfd", + "regex": "(?i)^https?\\:\\/\\/btc1wzv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2444d08db9fddb8253f46161b306e17fbd66dde9c8f7ec089892e5e7a9a9a4d9", + "regex": "(?i)^https?\\:\\/\\/btc1wjy\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ce86695b33817c0b135290822a61dc64ed83e2a34c53f6e2139866bf20fd2bdf", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-xxx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b9169e63719d448f745ae72a541e66d3a2f578386aac2edd9545f5082cd3d20e", + "regex": "(?i)^https?\\:\\/\\/btc1yqo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b4c2648ff3b084bafcb8a5cd804b2395ad2a2260fd8fb28f56231775fe2d37a4", + "regex": "(?i)^https?\\:\\/\\/porno\\-de\\-web\\-cam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d7943dbf94eca4132bbac45068da3f60064d852a067205d43f67e6f17f8faad7", + "regex": "(?i)^https?\\:\\/\\/video214314\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "db705fb61d4693f73b86ed09c1f13eff8d50e9fd86217416dea044f6dae20023", + "regex": "(?i)^https?\\:\\/\\/btc1uyq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2930da771945316b3ecfdbaca6d3c86f8ec0ca9e2a25dc430ee069e58931ac8e", + "regex": "(?i)^https?\\:\\/\\/btc1uuw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "03e3dc9dfe998a9b732d204f986d2b0c7cac1e5a75bdee94faf3ec1dce375c33", + "regex": "." + }, + { + "hash": "b4028386ef26423726f6b01df2354fab853000f02234a6cc6ebd7b7874a171b9", + "regex": "(?i)^https?\\:\\/\\/btc1jss\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "13a73954211bbdc3d3325d01770b3e5c138afbc21b832fef44fa33f539962446", + "regex": "." + }, + { + "hash": "a97cb8cd5bced2af2f47ea759df0b1c1604d2a245f4fd6c8c24bb8e7eef2b8fc", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-porno\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fgetuid\\%3Fhttps\\%253A\\%252F\\%252Frequerimientosbogota\\.blob\\.core\\.windows\\.net\\%252Fmua\\%252Fseguro\\.html\\%3F\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID\\%26ex\\%3Dappnexus\\.com\\%3F\\%3F\\%3F\\%3F\\%3F\\%3F\\%3F\\%3Fex\\%3Dzeotap$" + }, + { + "hash": "d7c17e07141d52c18c5f8435ae6594ebf3bd70097fca33da5820f59b40e698ea", + "regex": "(?i)^https?\\:\\/\\/cam\\-porn\\-en\\-direct\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "047eb10b8b5aad2e20a3fdce343be6eb7fa87b93d65d4615cc8928cdada16c66", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d013172682471dc0c1b03f183850ac557f618b81ce38a5c9ba01a020ea35eac8", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "76838b90a5cf861616364ad6ddd5359ca113add3bfc755206bc3ab82990e5340", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ddb883f87f0b78d2d9ede3f1f457507ce2443dd1a1fb469212d97946faaf7706", + "regex": "(?i)^https?\\:\\/\\/btc1kwq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b29982b3156d76f7d3f555ee1c89bc7b867255e6dc2c40f32373f3565cba4924", + "regex": "(?i)^https?\\:\\/\\/btc1gky\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0828d84b023ce117e5bb3285e78c90d77a7311475d8a19a34467e654976899ee", + "regex": "(?i)^https?\\:\\/\\/hot\\-free\\-webcam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "05829b245192b37aaba4410ee51201cc9d88edc4eed2e7f36bfa4d86f60de7f9", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c08f30370d165e900117f641157c1715cd94e735ab4fd5d45ac461749997e350", + "regex": "(?i)^https?\\:\\/\\/gffggfggg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "68bd06c9d54033ed2cf439fc1a499b731d3d02361df04165634261efc039dc9e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3aeb9f892691aa6b9430d6e52b4a0c1875e833b32c93b6accd3115050a2e92bc", + "regex": "(?i)^https?\\:\\/\\/btc1wxx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ab3c5dcec8ff28e1d7e3086bf97feddc0b5598f9f8acbe6aa54fc631a148b6f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9fb277f8e1d64145980dd81fbc4be6ae99da966cc5dbc2fff6f65431d2a1e259", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tubes\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f93b10f1f68b6cd8c062849bc7bdf9cafb59acb0860ab925b87d105f14b9986e", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cam\\-porn\\-vid\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f04b583ab8f72b3e6b89f041eef34a258b633abdc8a105834e309b317c374380", + "regex": "(?i)^https?\\:\\/\\/biinhnnfk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d76d3bf3529f0270f384b00b7b37ba516e5dfb245f54cbf19597d3d409acc564", + "regex": "(?i)^https?\\:\\/\\/btc1wjt\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5d1929ba170319966ded4f99385160336669fec663a0b8af6ce62e4327f5d8d9", + "regex": "(?i)^https?\\:\\/\\/hid\\-cam\\-tubes\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eeb747141743bb3068439eade3a2b71e9408a8a4560a360a014a8fb0b48deb37", + "regex": "." + }, + { + "hash": "6b0b9c650b075c9a980e18aa7aacf73e825052c0a0d84c5bb6f4c24ee5869e97", + "regex": "(?i)^https?\\:\\/\\/btc1jff\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f1c32e85907a33dc5e5c7ea0d4b9dd0404a724bec17c18a6c5acd3448003ee96", + "regex": "(?i)^https?\\:\\/\\/spying\\-cams\\-tubes\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4eb80bcf2362c42b2501359cab8722e6fee565307c71fa1f8b8b4f44c478bffb", + "regex": "." + }, + { + "hash": "626daf052562cdc2d8ac339e0029ec52ae7bd467dd23ea57808aa6d3c3855cb8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uup\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cf25de76809955486420d5f5f0b33a041d12ee88c13e9398ad647af111cb3ec9", + "regex": "." + }, + { + "hash": "d3811c773d456422514cb879b4eb737195c795c97315fbddfba2b3e8ef8fe929", + "regex": "(?i)^https?\\:\\/\\/videos\\-voyeur\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6ae62dd1d999ae8cde57eab5df57ca309df553d580844066172472b02189e19b", + "regex": "(?i)^https?\\:\\/\\/btc1jtx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0c7cc0a8c3445e6059db727c2aa914397911239e2010957fa1a159144b58bf9b", + "regex": "(?i)^https?\\:\\/\\/porno\\-en\\-web\\-cam\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "94ac428dff919d1e9bcd6bfef98b8b3fe3e0731794c6a4073079d3ffed403d98", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tubes\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "38df831e5b8a0c056b5516084b24a18de7d5140ceaf49a51105e55d5724df871", + "regex": "(?i)^https?\\:\\/\\/home\\-cam\\-tubes\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2915703b50d6a7177abf65569ac5b3046c8e4acf387011b183fdf4377e1f219b", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-x\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "18f28a3afec06e3fe2657ac24d157b61f74b6f348633332192ec57697ea144ee", + "regex": "(?i)^https?\\:\\/\\/show\\-live\\-porn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e8c571f8b7b8f399b59ea2fb9c1d64c11bf02f50041634920808467096f6ff99", + "regex": "(?i)^https?\\:\\/\\/hide\\-cams\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "01c7aeb3c0a96b46108bcfe7ad3dbe858f5139694e6fb7280a367952354f4110", + "regex": "(?i)^https?\\:\\/\\/video1234hahahahu\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e7df0159aa54b892f48b82ca075ade6d140071b5a976896847042676f720b6b2", + "regex": "(?i)^https?\\:\\/\\/btc1uuk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cfddb56532db9f2fa00effd3935c9c86c671286d46f481e3b8037ac21d8ae9ef", + "regex": "(?i)^https?\\:\\/\\/btc1uuw\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e72b5a7f428956c76ffac775c7bdfd4abb06263f3d6ad8abbe8e06a6d37a9fcf", + "regex": "(?i)^https?\\:\\/\\/hid\\-cams\\-tube\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e491da10e975a355af3ed2a6f46b0e1d36c4b01f957659cf0c1784c50c4452e3", + "regex": "." + }, + { + "hash": "24a21838172a7ad094b222aca64ce365caf88bd8e9f3530b9f419a89e23eefbe", + "regex": "(?i)^https?\\:\\/\\/hide\\-cams\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7112170180f9f630d8e71da612e2ded7474c346c68b7340df43744827ee994e1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wtj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2f1c41839c222f518b44113c43b2ccb88e44ddb5fd21340ba625ab86d41b5d4c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ca6900ed3e6fa882b2dc272193d45f33e47027b31249256e093088e18ccffaa4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0ee136ca163117bd85adeaa74362c950f3456d8ffff8da6d5abcb4505a3abe96", + "regex": "(?i)^https?\\:\\/\\/btc1kwn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b05dec189594233865a851f1145daab90e28956acd15f39da9a13058a38721ed", + "regex": "(?i)^https?\\:\\/\\/hiden\\-cams\\-porno\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "104c8d51d9827767d912f9e8d991def051fce1feae2e7a0df29957caabbd1201", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-video\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "45781e9042e3a07e4fcba99d63c5f4a0113a7baff2bacf2b067ca13802330e24", + "regex": "(?i)^https?\\:\\/\\/gffggfggg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d366b756b2e264ca95f53645b1fecb9a3c217a6bafad1b28c85d23ed436bdc17", + "regex": "(?i)^https?\\:\\/\\/btc1udd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "37a53ab38ed16ce52f54996585537835ab2d271cab65de1f3e52435490c76f90", + "regex": "(?i)^https?\\:\\/\\/btc1wuq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3b38fa40cceacb06d62ac6a126d13b849958438a4e067b55a23e6b92cb681b27", + "regex": "(?i)^https?\\:\\/\\/btc1uur\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "74065c09e3fe42e44d8f1137f46e7adbc628edb60155f2a85392dd00b2366f2d", + "regex": "(?i)^https?\\:\\/\\/btc1wjy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f1dde4207f80124076b95bbd8f9cc1704554284cb98cc9b9ee78f092026dd387", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8cd489f8862d08232068375b05938ae35b593424c67f195ab9e6c508b3dc64db", + "regex": "(?i)^https?\\:\\/\\/btc1uui\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b7d47717d75bf814de70e5bfe25dae70ff56a7d6bd8126bc3b6bbf20fc74da92", + "regex": "(?i)^https?\\:\\/\\/btc1jyz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3d0e30a11be15bcf49a4cf23b1ac90960834f5ad632e656b45a5bd041b8b9784", + "regex": "(?i)^https?\\:\\/\\/voyeur\\-porno\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8627614b3e7e4a7cb3dbb9059a0670e8f8df2ef8f75907c7d283ef0aaa984565", + "regex": "." + }, + { + "hash": "897bbd7b9750fcd1425691dfc88d017b2fe4bb952f8d24e9f0668a0b3224d3f0", + "regex": "(?i)^https?\\:\\/\\/coderobloxmusickobaladmarie\\.blogspot\\.cl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bb52754cb2cc4a657350c6d116f278fdfd922d5e98a5932177f817fe1fcc0888", + "regex": "(?i)^https?\\:\\/\\/amateur\\-girl\\-cam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "29f6b374457e2447b07837ce258d88dff3d56e628c2ec7b25e3ab5ff9950eb96", + "regex": "(?i)^https?\\:\\/\\/hidden\\-cams\\-porno\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3f1180469a1b18541d27a5cf00b36948c0ff270d0be28ea28b40f5b02aad26ee", + "regex": "(?i)^https?\\:\\/\\/sdfsdgfdfgdfhg666\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ee73f87eac6ab83fda07d5aa2beaca15c0d65fc9643bc1520a2e28dc9a12575c", + "regex": "(?i)^https?\\:\\/\\/webcam\\-porn\\-french\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ba8472e168d44faf45e43f5326c7c1ac9f5a1cf83203c8e827991b655e5372a6", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-x\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.jhxbfhfet.com%E2%88%95egslvfq%E2%88%95zhydki%E2%88%95cjbbtykhx@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "7eca60777e792b09344c4fa0cf4e3e89f247bf331f5e2803b26dcb93768dded9", + "regex": "(?i)^https?\\:\\/\\/bfsdnx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a619b4f87eed577e523cddb21316d0f7376f23013dbc12249ca0fbc81ba5c373", + "regex": "(?i)^https?\\:\\/\\/gffggfggg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bb94458ccd0abdfd67cf4be87843cdb7d47c7327a54a27e9506b8cd8bf576036", + "regex": "(?i)^https?\\:\\/\\/btc1uup\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1cf8ad88f4adb942e172416c36ec62bb0c06fcf3c892d53d73b4eacb306ace8a", + "regex": "(?i)^https?\\:\\/\\/btc1ppa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7b3e2ddb54700237c0715e95889c0a613c28e1b182e2aa17f309e03ab2b364a3", + "regex": "(?i)^https?\\:\\/\\/ngqsht\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fad74eb335069f4fa0cda0d2e2fc570ccd7e517813462a36c173a9657e6ece40", + "regex": "(?i)^https?\\:\\/\\/spy\\-camera\\-x\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "860adc53bcc6132aba11b35d54b2a9d4bdc51c41b0e4db71d5337405fb26b805", + "regex": "(?i)^https?\\:\\/\\/btc1uuk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "af8439910d5c7fadac5282b6d062cb2d3fd8bf0a38580b21100e3a887e655c70", + "regex": "(?i)^https?\\:\\/\\/currently99\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c458c41755bf812ed3288e4776ad25f8e964d19bf1e067ce0e917bc967ef2d30", + "regex": "(?i)^https?\\:\\/\\/site\\-porno\\-en\\-live\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "19a16442e8b6e80682ff81c75e2c831bae5acfde3d3a80e032d1c641e0ba2ec2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rrp\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "62bec0ed288a7dd52d28aaffa2001ba247daa639b36abc40e9373e11c7a4658a", + "regex": "(?i)^https?\\:\\/\\/sdvsaw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d7c5a4af432a34680ff583069c779ce1ae542c8ecc2cf3dbb06ad824855e789a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wis[\\/\\\\]+clicktime[\\/\\\\]+v1[\\/\\\\]+query\\?url\\=https\\%3A\\%2F\\%2Fsites\\.google\\.com\\%2Fview\\%2Fwe\\-transfer\\-328\\%2Faccueil\\&umid\\=c9639b4c\\-d33e\\-48ca\\-b693\\-e05d604c8ccd\\&auth\\=56de08a18c7a703f22ef7403c8e81a074c7c09fe\\-7d83c19e319671aeabd98e6038626a9595c689df$" + }, + { + "hash": "12593b1eb6670f3951f7df32dccf51b89ffcf665f2c82659cd552a92a30acc71", + "regex": "(?i)^https?\\:\\/\\/btc1uuq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "27defbdd32dab84da8136da8e65c298eca9dcb09c3a17aff51da97fc59544214", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "41f79de30a5f2496d3e177846c54e1006571525ba1bb6a13c366be42a021a117", + "regex": "(?i)^https?\\:\\/\\/btc1wwg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e4bbd86bb82a4e5b7b227c88f57402e3356c5eab21e2b7c72754117ad3f5637a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-x\\-video\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a6172c940d70f63ef3c86922595e1d303192396532762c89e93d31ae58225bd7", + "regex": "(?i)^https?\\:\\/\\/btc1uuk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4e45242fcf899db5250b610bb0bae1c6ee74792326f29d58e6fecd72dcc34148", + "regex": "(?i)^https?\\:\\/\\/hiden\\-camera\\-porno\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0ad2a60ae81a5a9084725b102f69848ff99e54eaea99959edcbc8049b36476aa", + "regex": "(?i)^https?\\:\\/\\/btc1hhy\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4cbfba7f59b43e25eeb82cf95b9b001b7b8139b138f69e3a18fa8e1c83b56643", + "regex": "(?i)^https?\\:\\/\\/free\\-voyeur\\-vid\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f2542001885fc2115dedd0e9cccf6a0fdc8980b09b5cb6b578cf7d7aac610ca8", + "regex": "(?i)^https?\\:\\/\\/live\\-show\\-porn\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9a0bf960cd4b8d2c005e87864f11c15e0cf537379b38b61d869d6c5e2f764e0b", + "regex": "." + }, + { + "hash": "ba7c601c9e133dbd4a0f8ed165933b0b450d56cac02fd4807fe0692f6d1f34b7", + "regex": "(?i)^https?\\:\\/\\/btc1sgz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "58ff552e0d3190d9abac439aa0b371a80d700b738d76b9f09718b4d3a29bd176", + "regex": "(?i)^https?\\:\\/\\/spy\\-cams\\-x\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d3623c5ccca9f99ea178509deeb5524898dfb498a680a01904dbe7c186036fde", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jtt\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b98d701562eb69211d47d9951339cf43658568618628c34ce68b00241e2446c0", + "regex": "(?i)^https?\\:\\/\\/dfhbtgrfj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7f422e09dcb02d8667915569d8383ca79676422f9ebc9f2e8f2168e82759f5cf", + "regex": "." + }, + { + "hash": "0b441d196e07d7374dd4fe358e2d09ba93fc78fe5d916d25b4a8ca973191e94f", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-rumol\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "558de11868e5c5fb7618f861d3320ff17b2340bd596276d81cdb0b52d0e320b4", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d1ef84841588962d5eb5ab5a247719eeddc78a593ac9e33bee3f1b5ec4173d77", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "997e102c26539f8de3b7e9429429af6ac72a1c33d224c1a06f305ffb0e50efe5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "04be42324c4243ba055648ff11b64c68490f390956ceba1ca928f14cdbad94fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9c560e871b7042b65fc445134e909c4748db79e772b09023493e8a2ffaf0773f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bab0e9a871338afad737fdbce3058ffc3903fc5098766f61754ef4397c39c263", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1c34cf03be69e9f131c5ed83ded349e38b99694e6eef75d736181a755dd3e47c", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "fac14658b1bbdb7a99d2a15dadd90d6b8e2030ecc2147e4827d1046ffef5f12e", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bbdb65aeefb8702f4772f4f713eef5dbf8292e00ec7fbd36169dab84e6427da4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "8f30dbc1de90ae52a3694b1f9586fc74a096dcfce3080e6e44574c717cb56ccb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f9b572deeff9b7048abf52de06901f65521e007bf8dae3c000640cbcc07b88c0", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "da728e11c6b91c786eb82c0a40d1e19338bce09225988e5bb7f81a4ffea79def", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "83fa826b3ac921726050b6182f3419672ef2acbf10776a109ae70cfc6ce3aeeb", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "39a379fc38d6eb400b8110a68ba40e5e77469ca9dfb66a49f31cec52bff6d23f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jee\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f96e8c903c5dfa143265fab9c31ed9b99fdaafd2fe388034d7860847de5385a2", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "af0a1877c7f03a4042bd323c787c94e020452112e6e3e9c32888f49ba66ef708", + "regex": "(?i)^https?\\:\\/\\/fffhfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "afb6f5fc8652402deafffb3294bba3e2624c497c0c1bb104605e459621f822bb", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "95b8460b718291deaa6b9a4188231ae8a86bdec28744928df78b06049eacf8af", + "regex": "(?i)^https?\\:\\/\\/fffhfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "02fe46a2cc5adb00678f954ed7522069532b6096395ca2c933ccd55308fb459d", + "regex": "(?i)^https?\\:\\/\\/hfghjhdfgjhudfgjhudfgjhdfgjhdfgjh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4a2d42a1baf0b5d9fbb55f1f337f557a20e24c81dbd53d48e4d506f5e754d0e4", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a7e890abdc65e677848d91a0f61aafcfebfa61d7ca4c3ec922c3e00bd68633d2", + "regex": "(?i)^https?\\:\\/\\/gcfnfd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "65d0cdc518f5bc91abc65e4d2d147849c591ad267b77bc0482a72a75cd72dc68", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e522d84898c1bd28f8fc3055c35aed47fff2d2120a5a17aca68f339dce5d7bee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "edb337523bea7dc234cb3bca3b2fcd95e9b67190b891f2859ffb5d8490d62836", + "regex": "(?i)^https?\\:\\/\\/robuxcardsceby\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "742bad79ab819e6cf12d0631ad8153943575f2fd137763e7fb2ad76c90e4495b", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "76d8b27ba0d3ec271e2e4a3b8baa1adac9f3f0286a769723ca82d68d0f104269", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "00fdb1aa49b2c699f8888f5bdee93a23e8c9888943aa922152727f515a500deb", + "regex": "(?i)^https?\\:\\/\\/mkak22s\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9bd76a2d40c09c705539ffe0f2f5af87a93cfc868dc150c1bdf594081e0d0784", + "regex": "(?i)^https?\\:\\/\\/trendyvidsource\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e18af46eae7c0583fce2bbb2362ad91ea75c1c70202c30ffe8bd68b88fa9021d", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "74340606b0b66c345d08189db570035da37e611d947599ce724d390e6da14e1c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b4bf78d98e5a0eaac791ab132a7d2984daa34d0c4751656263acabe3f5c3a4f1", + "regex": "(?i)^https?\\:\\/\\/robux\\-iieo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dd3a58d6b01a7744c121158717296f7353d14dc5c6755257520b2fe504fcdf9c", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5231c6e7ca5017a5fca6d05ec5a617b222a3bc3a89fc8914cb3a5b76fa4fde4f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-100067436535405" + }, + { + "hash": "d638074ca6f2fcaf29a80fd6882de41a41c56b2103dc225e897ada8b641087d6", + "regex": "(?i)^https?\\:\\/\\/btc1jzz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "48edb4dae344e55760d9b83d796fff2cfd0616037a156782bb3cc89422d12b9d", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6bffaf5aed5650a0c54edb3646a4ffd63e84b472f117bfd5d49cdd6c27823035", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a1c0486e24ffe4ee51dea19aa026faca38d919423e022038e1ae83b4205b77cc", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c0fa58f4053540733edd86398acc1f2e731f7ec46105f4fedd632c443fe940c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7454063b8b39036ffe811dd320adcebff8afbf585a0bdebb6bab7de50baa2948", + "regex": "(?i)^https?\\:\\/\\/fdxbgnv\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f4da955d750281dc1f4ab4705c2462d1adc7bc5fd8c8ae1947710e039d84a8dc", + "regex": "(?i)^https?\\:\\/\\/dailyclipexpo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8dc3a6c1a9f1f47afd071e016c56a78e8287432c9d85c7d4851c605ce95315e1", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "05d21940ba6e97e6426f6fed7c76b4241f8a686c67e2563767dcda2b9a031dda", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d344b52478c3d8673429f02fed16af4c58b531b10c75806c5f90fea593c0c32a", + "regex": "(?i)^https?\\:\\/\\/gcfnfd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6ad1fb07dd1c8fda04183ed38dd7f46ec06962650002c789f0941bca351cfbc4", + "regex": "." + }, + { + "hash": "d632f8aa94ba8e94cd0aff2b3cf60bceeb08209584fa39a37be38ee432cef93c", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e72b7332fcec056832c8387e224e6035169d7ba6ff6bbf1a274183a442513d25", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "dfc67a91aff87882c0b5f624019f8edba4660ea257b80726a37976197e5ce2eb", + "regex": "." + }, + { + "hash": "a2e50f8df47806eba787966778569aa9e7af79a6c581bff3b31427957ade8cea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "07f4d818274a34feecaec1377b51150a6394dbb8c2414020570361f750f7acbe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "34f276a3c2837a5c3827591ee22b7b0e3d1fb771cba2c4bda522891ac10c0e48", + "regex": "(?i)^https?\\:\\/\\/kotipointf1\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "180db6c55f0e04f860dca219bb75cd7674c6f2414c082bfdd079003dcac37982", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jtt\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "13844e44837698b41313a592377c6bb5180e2c84c4617e184bb326c2d1a47d26", + "regex": "(?i)^https?\\:\\/\\/popekvuyaoe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3d41ea55d919b9aa8186afc1c1d4a3377ac0993600e7f3bc276dca02b31d2c6e", + "regex": "." + }, + { + "hash": "d029c1fa5a76ecd6d40d6cd7e9033f372f681a5af255f96c06cec8e49a37b69a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jll\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "036102fa63352ba62102c747528c7ae64e57f167f5be435611b9037c9c571127", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f8c105f0a5e9adf894266e9c9d75052fc543f41ac2fcc777b22d919485fb8430", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "dbb55e87b0db5c337bb9816e02052e287012c1ee02b5213f9366b6a2d9a95c58", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jee\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0b88c5306171dd3e2670ce21dad7a894ee47dd3689e52c944be309d225e60688", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6d9ebbc1119273c2a5e2cc026dd186ddeb1398d19a66945fb6e4e7ef660b777c", + "regex": "." + }, + { + "hash": "b5abd9b23e7d8a1dd24dbde6647bb9881fdf60e3d0ee0046511b9da16bc74dcf", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b736450d3b7cebca169f49eabd6e839d39224e102435b7a6beb285e4633818da", + "regex": "." + }, + { + "hash": "b98cdca3eac57426ab1a12661064b0c769e08cb923e8ca998311b3618ce60fe1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jvv\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7421044239ae676daec95f8bed32983c9ecd6023f2dcd71f67075cba43d123aa", + "regex": "." + }, + { + "hash": "9a048d8608ee0e245a741cd91e83eb95a868c619cafbe5a4378ee94e60f1c71c", + "regex": "(?i)^https?\\:\\/\\/fffhfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d9297267b0abf2c8b8c15a82ce05668ae1c4e08d50da8953e344fda88621b1cb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9189cb0ef75e2e6d1cb414ecc488022de29744ea178d886da588f4ce893ff455", + "regex": "(?i)^https?\\:\\/\\/robux\\-iieo\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "faa51f99b3d7e680f63c4f9a3924fe48c9e9e16d78507ac148444f3a34d198ae", + "regex": "." + }, + { + "hash": "1243b808cfc514c134624bb26877250be5cdaf3916d52b26eb01afd3fc4b7139", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "afe5f9b208151000e627bfd8f70c2eff0a69410653a8e8c7a73b619c6c2aef2b", + "regex": "." + }, + { + "hash": "860157df43ebaab3c59956f70a6fedacf6348e3a94cae5d6847f2d291a4e97d4", + "regex": "(?i)^https?\\:\\/\\/robuxcardsceby\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cc77a295bb13fa6204bb2ffd10f31ae98533ca68d94ee7f62c71fc27c6af9dd7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "558db722e7eab8c7207ef0a476bb8b8c60acf5dafe2ab025dbc9fe645005061c", + "regex": "(?i)^https?\\:\\/\\/btc1jzz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4b176cddba025ea103d15f1aa68f4ce429b61e74003442f10aea4883484fab3e", + "regex": "(?i)^https?\\:\\/\\/dfhbgtfjhytt\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cf4ff9467f820689163560d95b9967d40f7d084cd3f8892aa5b78001fb2de091", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "09bbbe1214d2d6970aeb3f1df5192e293f8d742bcfab893ee78760d3246e5c7e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jvv\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "51996d1d7ac4c83bb05c748203263c36bc948e3779edbb38c966ac6f2e1b3f09", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f9bc91f6f3f5f91be2ee2dc0f3cacc80f63b994337274544e4d1e70038371828", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5ce892d8bf2fed2abd1de74397fd0908fbd53811959e317f6bacf815a08cd3ad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "81d4acc78ff7ab3e7c0ad10535b9f1839e7d7764c48a5b473feb92403fbc9a75", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "eae83c1332b3bd302735b110980abdc65e7ea0089d674a7016edbeee2fec1ad9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jvv\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c726d163ad3e2830df6fe9c0ddb9a0f9fc0681a36685c4e0d619e3ac9942848a", + "regex": "." + }, + { + "hash": "23b8f19bee8fcc8faf94a9742bc6dd142a7101628ab6d01114717247ba4dca5f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a07693c028692c1d5e615289c5f5380774fd937c663bc196d97b8542e798f002", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+data\\.html(?:\\?|$)" + }, + { + "hash": "243bd92af535d2e2bf73102d4fd495cf5f80ebc40a6f4e8fb867b421c3786522", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-rumol\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3514dcb445544c3ddfdc21b9283d04561cab5cb5ed47cf8e78f88aea042fd868", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "df49f1ba1d949d3f7790c8ee1f3084aa029938c357481fb7f90bfd694d5bd825", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8ba8041d3d0cb4b208c8856d9dc397ab9d0e2ee6b63602086e471e5b3b79991e", + "regex": "(?i)^https?\\:\\/\\/dailyclipexpo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "706d132ee250aa7cd6c8e021dd86f8b59dde231e33d58134c666d94cde18152b", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d6f131da6246079d026da66ccbcd1b30e4211925db726b79ec9e47abbb52c8e8", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b4690ec849b38d35a8a69bbe6cab32685433c8610a0aaf774884534d6e75c814", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "885b92b148a4309b080135837bae459c4ade9e0aeda6ec7ac003c778f4cacc18", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3a74017f285b2eb9fbb9437f5acca9b4a839bf4a54c61f910c0872fa647b34a2", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "172616cb003f855e9d1ef3bcddc50a11fc4b0f0d74c3eda9fa335ad351bcae57", + "regex": "(?i)^https?\\:\\/\\/btc1jpp\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "047ea3c2730ae75a4e8a55654182f2ba673bea8a3b8a069d68139e020c9a3d7e", + "regex": "(?i)^https?\\:\\/\\/gcfnfd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c5a83c5232aec2ba4f55687db574eafedbc84d0261c60eaff265f9e4de4e7393", + "regex": "(?i)^https?\\:\\/\\/fffhfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "b062d0575ef40cf7bcb3ba58988580ea89151f680bb65d2628fb8bd988668f26", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0be6eb31b178515f0a53a6fe26290a2ece430353b28c2adf880187cb01f579f4", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-rumol\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "555d93d6a1bf2853b11ee06afa19b1225638e018d658ff71a58923b04bc41833", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "27bbcfb4ec6051fe4ea5ab1d42da9e19e332885b7e64a56421fd12b92917d324", + "regex": "(?i)^https?\\:\\/\\/rgdrdvvb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "729d04b193a1168094e58ff33ca45d609b911c574cba20d97871894c56c63ba7", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3df99a9395b8084eea45eceb1002c44d99b3aa888c8989e24e823834f2ebbd9b", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "462002c4f87e7895201c3858d8688238e4ece035e279f4a52a8c21df263b2391", + "regex": "(?i)^https?\\:\\/\\/dailyclipexpo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ae9929ca3ffa90ee764cf4e1ad43815076c7bc0fea6e6c4f499db1d928f42875", + "regex": "(?i)^https?\\:\\/\\/092661\\.com\\:9900(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3e459a501aa8d50b7ab6f4fca8baa6ca5d53e9c890008c075f3e09d20503cd5c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jvv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f8c358df8ba3f7daded1eea05a2994b9d137f9985f11312ffa2ecece79c099af", + "regex": "(?i)^https?\\:\\/\\/fdxbgnv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4c1eccb28ff762d3ac7d09d4631d4bf6365bd599e267706d24c28c3486b2a48b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7d25e5cfdbbb823c62d92ac6e46adacb556d72971e1846a896c1ec3b7471f9b8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b05d28a251f22fefd4a22dcca878656a059222dc03d57224e9e668f8d9fd0142", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "361daada0824574aa69a1ac73393bbaf0ee292501b37d47d34438a31df726f15", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jvv\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b8efac9efba4c64aa407785183010bed878f016850b96941359004655de248dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+QmQjSfoQxwDhWc2iNv76nVKZbnLYWESWe4UTv9ZRLFw1Rf$" + }, + { + "hash": "356782daf1a56d2250ab7bc3e27f871a65ceb4b6b82d33110a63a591e1557204", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e911c0ebde64948d27e93b3b33f4f1535c2d35ad93e504bafeac92f26de107ba", + "regex": "." + }, + { + "hash": "94d740f88f3a8323aceff25a0e7f079b837909b8642d9355b454bb637e46b940", + "regex": "(?i)^https?\\:\\/\\/hottrendvides\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fde9283b3213a0870a9ea84f7b3de29abc486fb76a2e680f81a8d214139d800e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jgg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d76600701dbc8914a26a003491a0c94ff765475aa271e04fc70ef0e097a957ea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a27d0a03bfc7675eb521f757e1a1ea6f1262e40793668c88c08477bccc73b3f4", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "730b85a5170f5d4c1c30625a18b84f7a2a65b5f7076145a69a5d96f57ff9d7d5", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1642f9e69207ee1b00801ce90a829d50a414af2c9ffa0cf02cde206047d97433", + "regex": "(?i)^https?\\:\\/\\/rgdrdvvb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f8156978b569b68e38183e192e11e3807e46fd5c92bd718dabd9100c940509f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "ca2b077ced06271dd534496f4d5de15429b1bcf9d8dc123a9266ad9d8b90d687", + "regex": "(?i)^https?\\:\\/\\/hottrendvides\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ba7cddf3b981ce8d0d322c77a86c5546ecaeb7e6bd45a5062d79a8db0acc8f4e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5c31993c305d15adaecb2f2ff2ad801340587b21806c1aba8699fcd072c5b342", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "80fbee94cfbff941fefc5241e375d265f7b0d0ba77be548803dedae17974a583", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "78ac6f65cbfd89ec72bfe7c3b8714467034982e6a43f1bb7d5a2fc3e6916781b", + "regex": "(?i)^https?\\:\\/\\/btc1jhj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6be95d0aea1cd8a82cb1639f6c07a236d4f16aac43a92d13247a741d0ff4d4c0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jee\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fgetuid\\%3Fhttps\\%3A\\%2F\\%2Faprobadoshome11\\.blob\\.core\\.windows\\.net\\%2Flibreinv\\%2Findex\\.html\\%3F\\%3F\\%2Fecm3\\%3Fid\\%3D\\%24UID$" + }, + { + "hash": "f2942a67e9d7af92d93d8e3c89bf65133746f0d90e055e1bfa888ffbba3143ac", + "regex": "(?i)^https?\\:\\/\\/btc1jpp\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8aa4fb7617b9b9db2aed456378c024687dbed3679191c588900a745492887e39", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "656c47413b936b506a8162cad0569522907f8f71e4d298d937795a6684774dbf", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c47e5d53636cfe53c05879c1421c4d10512efbc6cb2f8d46c81ac380650b6bbf", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2bd035503fa3251cb1c3f95009b6eed5cea987085c9431ff69acca7c6b659035", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "90933ed44991d77800433f3ac6a2e8e4536333e00cead6ca0c2f5d4584fa8ee1", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8effb8f27390871f07eeb06287effc27b89d04696c4fe306c87e2d04866956e9", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cbcfccf7e04f70a555fc575930fd43461c7f99aa7e8ed81590dc81a47d69e89e", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e1fe8941a1f857728266b8c16f41e461775e47342e3853a35e5d5e8ffc37858e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjn\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "24102e6e6f6a1f85c7aa83ce9020b7c23e59aea73b3bd64f1e9f8af685cc9e4a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9b7807fdbb1ecdc3faa1f3093d95fb46df825d0971947be70a5575fffcb39c65", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0cbe4cbee78cfe3c63a9413d62e3a32c656fc49b38eaa88fcd0103be214bc42f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ae1fae04197121695f480b540bf32d788a1ea2a80335d7ab57e202b38feaa523", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "da8d83bfd9c84fd759e877fac52bee2894f57152524c01ebd3635b6515e35ce2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jee\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "01cf6da44feaaba48adf951eaea6fc6b197cac6e82ea2c9de02154c38f5ec879", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jgg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1e433106b07b8bedc7d189b14c1f3f26f80b08389b818747f075721ead07167c", + "regex": "(?i)^https?\\:\\/\\/btc1jpp\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "64ef8c46534fa69a6729e5e56f195b9a780007d24d7eb1742bc613b8e7453637", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "09bd6dfd0d66959b3a309da9a7e46c68e327be44758d6c27fbe09994429cefe5", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bd9b79a56b33cc1fa4fe3dac1d3157e60dbbff5fa2df8ef01dd4c3275982072a", + "regex": "(?i)^https?\\:\\/\\/btc1jcc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "53220825af1c9fd56133a3a31306e63aca1f57604fec60f09b083e952ceab475", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "95f01bc060710a593c75e4d58b08240885e50ebb44ef43050f4f45ca95c0e7b1", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "46202940b849f0ec5316e0dd77eb1c63485a17b387c8fbda37cd726ac860bddc", + "regex": "(?i)^https?\\:\\/\\/robuxcardsceby\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b8efcd4e78211969d9f1a656fc64444b7b538940bc974f7f85ea63dbf909dd19", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d23b381ad89eb31a8bba9fb4db54a48b352f7ad22ee67e41ed868fbb440c8999", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3fc0bb3e2b68893524af9d4146d92cc1524e26e782a7cb9e7b602119932c7999", + "regex": "(?i)^https?\\:\\/\\/popekvuyaoe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e167e8afed11495c96926598beb6c8c43124e4189cdcc2587e708a08ab9abcbb", + "regex": "(?i)^https?\\:\\/\\/popekvuyaoe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2a1ebd580c19425f5ab4b37ed25c5b0618f457c3e999b0608b0d8737038cd7f4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "48bb7e0641ec04951257ec488ed2a465b05f21b2305dc51bb21255eac8442705", + "regex": "(?i)^https?\\:\\/\\/dailyclipexpo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ca668f95df0aeec2928157633f0f58be82c1e4a48ee447514c2488b85df20d6b", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "50164f6237e46e11c1d855ce444f81bb286f6791cf9d1e103a24582e94966188", + "regex": "." + }, + { + "hash": "11f5c5a5e37edbbc10be041e4e0b19d530d68f1a13d39594832b22852c049b05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+LWF(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b380faef4d686b6423e785a799fc4593a0d41d44327b6fed0f2607697a49fd9c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dc05a4cda8548bf4553714f224efc76b0b94794bfed1efe767e5b3b29a3534fe", + "regex": "(?i)^https?\\:\\/\\/gcfnfd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "658a910a24698c4e60944e29a63dab262f4d3ef032c5828335c9ca3b9aa5bdf8", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bb9482af82d7574d18e1566254375f0b2e3fe8a8393789fe57e89fb1495378de", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0d2b3d3257c62d82bf005d0e56dd226ee1a175b2a10cdbaa0cd662566f154ff3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c3e707bd6e55b38d90e594d992ca705e1ecdc9ff9f278c00d5bdff046cab8bcf", + "regex": "." + }, + { + "hash": "cbcfa4a9e7a10bd1f8e4a966513592826e38f45a5774cc02a0146423265a0dbe", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "87c8ab2f32c4ee779dc6048de7a49f1abcd25c34af85f5f723b8902689b275cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "9c7ec24d6994f8f7c20e1c8eaf5e64d6d32f5bafcbec9cc77a26ece70281f15b", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0f01d2f4e92c422ee0a98078abaa303856e97581424adc4ae70d9edf0a470f32", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c0a9083f85bdba2c55b6716e9d2aaf3fcdef6dc1b3f7b8a14092376da114ae8b", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "194d3cbb79c76d21c940f54f3af499071c2657f08f6ceb4e09b6ab21d939769a", + "regex": "(?i)^https?\\:\\/\\/mkak22s\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "24fee5b28ea93937d401e746ec6188b261f2ef7a49f57fa5bffa9a57d534aa25", + "regex": "." + }, + { + "hash": "a3c256dab0f72a7b29846b1754378a7e5ce671f8691a20c46b490e24dc335dc5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c7cfa3d8e677873c3bd455a8b4ff0f3320195845f12f10fe6036d77934e437e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "14fb7ada01f8ff09a2eca0b6ff96e7bcb80219a9a1b832f190bcdf828f610842", + "regex": "." + }, + { + "hash": "723fa97adb45feee40e7d731b778ceee9921470ca4f28efad5fe91001855f588", + "regex": "(?i)^https?\\:\\/\\/dfhbgtfjhytt\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1d2eb65883282b71bf389f559a16e7632cf1866b8a8adf85f371098b7ad9a230", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "21c914da288912680296a4f355d7774e3de6088db215babf0ed603150c4ad8e6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9761a94a78a9e6ecfa1a06ba3b7b02dd2ab465831550b09eecfa123f4912d14f", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "df4965878f9f44ba78c8f4f66ae6dfe7dca2ddf2c69b49ee666c350c669f2423", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f1f104827bfee3c365d64a316726ab72161ef97a98d7556f5404bf971df8d904", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "708776a00ffa3300fa626ca6cfd5da6c3e19462fc1e3b6832b03849bfa9257fb", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4f0d856e4b4b20ad07f39d3b893d5df1ddaf9dda8073ab8d223a46d844d580c2", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fbe3e3be061254b2710f9689a0f5c0582fb967a95dfe06750062150bf586bf44", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d4362756405a0fc8c52241e6db21bb58071bcd059b7dc784ba485acaa308a4af", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "12121df405fe72e84cc0d6f837fd8ad095fb249a1b648d155dcf87f6c6300dbc", + "regex": "(?i)^https?\\:\\/\\/btc1jzz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2cb760e1b4fc9ba899d69c8da27ce70aa03abfaed981d750a60675d9bfd6c6dc", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3ad85345b9d7459ab20676ae719bfbc157aaf1a62a849780a2d9454969b7cf58", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "33fe2c367cd1871e0445c6b877b22e28bc5febe81e4209ec6aca73aefe43086e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cul\\.niref(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "207907103a5ae442c69179fe89d35e8f7cebbb8ad081a7911d25dde7906871ad", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "76adcfa984db4fc5a6ab06f646c2d8c1f20ba23705e426eed385ab54926a507f", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1abedc878b2f6f9774374ec44381459443302bcbe7295731bc745b83832580cc", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-rumol\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d4f6cad9538c94b88ee8f2baedabd0c47a671be9b76c000cd66ff55680c30ea3", + "regex": "." + }, + { + "hash": "340561c7c9fab73ff2cb268eceae3b5bfcaab8c7b3a434f29072d3f594806435", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jee\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a0c25ee1931fb2090fbd9711ee699b2a3fbf1991229e4dab5fc227966690b04a", + "regex": "(?i)^https?\\:\\/\\/rgdrdvvb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "eddc0bc23fe2116abb3c2652bee4b1cd4079270482410852809a73e08cd48c45", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7676a5d6ab4f95e174eb0906d66285b41d5a6320c5e84e4e09745a9ad132b867", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "51c6301916862bcffd23f3fda4914d120a37c4f944e3cb6e4038168fb221b3a7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zaw5y\\?m\\=1$" + }, + { + "hash": "d67cb06b4bed1de96d8ea1c8989d442864dd59f3b19e8b29061d1fb18a1344fd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d23d6756d5e14c969e49ee6907fe448938cd0644e9179bcc2184a553d346c2d1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b6ac7941e61879aff18e1dd52f5c24903a504e7baa8e8d8b365fb875cb3b1fbd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "667b8883ffd6ac26f4dc394b74211894980d8310f95192f1f561c35ec582a2ab", + "regex": "." + }, + { + "hash": "f380efb90266119c16e63308b9cf4228460f43f6e8ba500d4d91a0a69ea131c3", + "regex": "(?i)^https?\\:\\/\\/trendyvidsource\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3a95b944c36cec9370bd3c1de90e07dff8bf83ec746c8e907f910fd9a4d1f7eb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f9d99dd16226545236a1bc7818d264ad085ac02bfe619b2bee0ee2962671933f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "401e0679b8b33bfe1be658b167156ea90a413f9e19fe39c563a17bca9bd1f8c7", + "regex": "(?i)^https?\\:\\/\\/www\\.myid\\.tlstra\\-signin\\.65\\-21\\-18\\-142\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ff300bfb859d683bbec37d01efcc0d6f495d250b0ddfbdf723c4fb4b751ab8a5", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b3aa525052edab0b5160010aefded00e880f1528c4f4dd7d9c566617f36f00af", + "regex": "." + }, + { + "hash": "82c4ccd5b4b2220c61927e5fde09ce36f6791b4cbd1e9331c0d238b4924ffb03", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-rumol\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d1be3b21150864bff610b54a0ef23d4dfcd04c03e6f993c5e92e8ddcef233c25", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "767cea7f49d9a82c198b19f88f0caa6ec54470a9f4ff10603147d8ef8e4aee63", + "regex": "." + }, + { + "hash": "c2ce555ac9e901c63753b7c2e01b1c02a397a6823d563473508e49cb1a551ccb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jvv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "070101dcd416c779bd761c9cbb3dfc2ee9c7a41ae0e53480d94ff283e32128a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1721f465a008b314754dfa71d4ceae6c06cb7d9538f8ddb53feb3d1849af44d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "95112551b6282c46948a9a6a5702a7794e82ddb11b7da2f5a6c8478521061843", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1323155686a8a3b1c4219eaf1a8f79e137fdb638e67fda2af94d3a2d0fc129fe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "99997e54d2a0b9fb20f4f5ff61182c253c65dac0759792e28689392803164eda", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d80f892eb62aab2b4bdc79b6c24da0465592c3e93fa836d5a1d434e8846f5e13", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3d686a5d11169c66d8e77ef483d6d0f1ee307805f31b4ea8481f6bbdfde9ef45", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e64b8e829da413fe82d16efacef533e436e694a4ff4046d39467fb65ed2690e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gez\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9469ef73f98feaa8d88d6185f1cbada9dc90c4f477f7044abe5ca04585d258ac", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9d21fd101d3f8d6e10ae4ad54bb530a720a6798122cb927bbe9772b3940271b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5137ae811278b48dd5eb385cf4942e0cc06d17ab71ef5075cb72e465952d7aa3", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fa41d99756cb3ce4aabbd18338d6f16b3d2f379b7d971ef278faaf0440eb0483", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gez\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b9d96f54b9f677725a0299f64d1f19d1c7582aaed1425fbb11fdd3cd01ca1d31", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gez\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2d0ed948cab13c63769a887c8589016318276ac03ec437103e5b233586a087ae", + "regex": "." + }, + { + "hash": "70533436d8a8ca70c79d6e8b4fec2dec086c1a98cbb4f72783e6175e96296abd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "803ca22946e7a421d40332635a28d403432651f7b57cabc60eb4ef7d392e43ff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jll\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "01cf983fa7fe74b63b3e96ca75a6dd0a53617cb0192dc099d9f814a48c78d3e4", + "regex": "." + }, + { + "hash": "b529989026a133d1457a476387a1cf23302fd7823d74177f4c0b136a9d0797f2", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b6a46993001e94c17d1189ae9f67ca5a20e90ccd4ba17e68eec7a2845c813fc4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1joo\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b92a983027538f1c842989ef621faa54817b34573a78d66fd479ab347ed0b94f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f7a8bbf4fc51aaae64dbc092df171fd03d51189db418feb65588bd97102e64d9", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a1809483dbbf1879e049e1c12ba4b6ce80a36f962eecb099ab03dce72b7075df", + "regex": "(?i)^https?\\:\\/\\/junocom\\-106012\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f4ce7910fabf0cb1b44b1388ea3479ee3113dc11947cf942d8e418946e17e20e", + "regex": "(?i)^https?\\:\\/\\/hfghjhdfgjhudfgjhudfgjhdfgjhdfgjh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9ef8b17bf8af07b7c5535ea8bae9bc62d17e0bb757bd78712753bf6b0405804f", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bcd5c77891a7c803910787c9c15f4b1aad0564e9a85b65da15a6e8520cc5c0e4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ebfa8f87851db1e4a40bf46ed36fe28b9968573d61f955cbe4b16071e0cc42ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6c4edb6a33e0d806e1b3c7c7717689106731eda5caeef0290d5e8d3bba50a8ea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "72804a7bc1a5fb16ad6dd469783e4fec45d78e57fa4625a696080e8e297e4020", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jgg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "843a31d7106543aab6b4e36c1284139864d4a1bc708ee4bc286ac5f3fa4826e2", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7eefac0d46827bae7bb7946dbdd67da1a93afec90b0e36bdcf9f16ad210c0b24", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "03de20110eba125bc847b2f65c69c878349f3e9553157e687fd6d402e6a32fdc", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0a4b77271508a38b9ca2ec3c30dcbf7106c5e13ee68dc6a37ff91a7d49bcea3d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jtt\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f9d8943d6b70d8ae49e85b23211b9bab055c234354a6751c0b77e423fd9c9a9c", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "956223020269baf24c8866ff4099466445b0ffb13d2ef8ecae2b1aae23339b88", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fbe4a1f2a86637d276fc21d6d7646ba08e90879e407b1e04f6d2af3374644e79", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d9825f1d83cd584e4d23f65a9d0a02f5aafebab5cb66077289f706d805c0e6db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Wr5uDY(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8fb2232e6248043b6852fc142dbd5dfa945e896477853c516bb4b7d38ecd3e1e", + "regex": "(?i)^https?\\:\\/\\/poornachandra007\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9c0efa857721557e7c9961f6df1d054094b6a2a260ab980becc73ece17e36819", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cfde2bc538436dd01759511c2d8541a1a9f3fb4953ed95506012802af5930aa2", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bef3ebe73374f0b81ea46dc7ac41c202a1a98aa2daa6f6931fb6de16f69b0117", + "regex": "(?i)^https?\\:\\/\\/pub\\-e0c5158f0a1543dbb7b232cf5fcde6e1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f7e07e16b66afbec5e9e1826301d92e003e2d0677a3ac4812f6bbc7e473b00af", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3264a310e5cec273f378a00b0b8e06248b64dd6dc07110fa819c49bac5c8907b", + "regex": "." + }, + { + "hash": "f822c1d16ea468aec4c2248331727d9f7ef14ee7be076b8ee7d0a5d0edf2bb43", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ec1f822607443d973d9b117f3f025d12acdde74c58631ff7320ef3ed23625ef4", + "regex": "(?i)^https?\\:\\/\\/trendyvidsource\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6fab969bba58b43254660c1357ead63f5ad7a60ec49ded69d247966daa6f7d72", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "01484fe2db850ca2a4e233902e8e04d306c80ec2efc7a4057f19a2e405e6d379", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "75268fdd97f2936a2edc5a6875a31c5aa841452990d1c2ee35e2e7592b861549", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "dd3ab3f7955511e7b22ecb2e988ae6b0339c2f304ef5e3d11f70f7a4fd8127a6", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fb5c8c7b22f19f14440fedf2d4f41301c166365976825959d135e11121c3075b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2b2ad28ac8a36cf96ec322e88dcc17051d91911d158dbd9dccfc4b6de5448886", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "36e7dc282bcf49823f2ccee7fdc1d89e9f8706d8b2089cee7c92253057e7c81b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e41ff7bfcdf2b01ac4d195567f0ff08a8fa83deb462ca7c779168c72c4a579d8", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "970611d9514b08ef7cb59ac5dc7b963d9608ffb09f6ff154b6e956f3cf2c1a22", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "49805d16c26d30bc84f58a982497c3fc3b42a1213ce96bf1aa6e7fea20229943", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6f50bb9f73938b28158f644f6d0fde33702298c98b45db4f9ba0c48a292f0c03", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a39cffd78caab2a69d7eccb613ec7d4935b02bb1f94206bb0aa3d3938c4a5a7a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ec0cd01b041f048006a4799f53ff2a919ce2c943b590684593b775f46b210811", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c0e0d1d6ded49bb372641b65e65e1353d34b3caab775d91b2038e9d61888817f", + "regex": "(?i)^https?\\:\\/\\/dlj8\\.cc(?:\\:(?:80|443))?[\\/\\\\]+ng(?:\\?|$)" + }, + { + "hash": "a2ffaf44d79d00a0106f793e9134f6a4a1b5d6220b0b6feaa40abc4736bf60ff", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ff5b7b4a0977e95a8eec9e14a6b92ebd9fc77e6abe1ff5a3fc36d09857d2b814", + "regex": "(?i)^https?\\:\\/\\/hottrendvides\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "188010d51e6b524cdf286dbb267abb7a25855f0b5b6d9dfc688ec9c8ff5381fd", + "regex": "(?i)^https?\\:\\/\\/gcfnfd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c04135c29e58f56c81faa2b79e7b7c7172213fed249bbcc99f9283b7b71e14fa", + "regex": "(?i)^https?\\:\\/\\/hfghjhdfgjhudfgjhudfgjhdfgjhdfgjh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b87544eb12222a1ffd4ac89b5ff6166ed2314af02ecae752a257cafcfa42bf2c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4eec34ff137142955561b7835bdaaf7f3dea997bbc6a693c0df11bab093a9b1f", + "regex": "." + }, + { + "hash": "128bebcd0cbb8bc19b5f0fd3178248c89503748a611d96cae62ec1050e6a6659", + "regex": "(?i)^https?\\:\\/\\/dfhbtgrfj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7abe2bc4b50f2708c3b36d9b599c87e45511cbda5e84efcc7cbff517fc52424f", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1eb887348c6145c23c9893808323153d7e210ddfa78995399ad0537280b28c7a", + "regex": "(?i)^https?\\:\\/\\/fdxbgnv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e9fe28db06e334d06160117c058c973336a67cde85b7749895460b825d5fe022", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fd427f5d2487b002ca73eb253883a9c230d47487b9329445dde63524c6dc9066", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jgg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e092dcf90ae9870f76efdafdf20a35ac8872e1d617c596d3a09279566e787467", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f5da1bccf4cd443d8ded44244b2a8d2f9a4af82a61a024a440b1a30a6cc218c3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "79c445ec4dee685051ff8db54a8a472e90d4db9edb7c079f975fbf6d61c29b7e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bb86d27198808f28baf7f4196b36d7ffd044174080c363bf0e32c2de5e1d38f7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d089fae6c4f9f918117b7ad8694b9759b48a3119d57323e81a18e4c5473ff10f", + "regex": "(?i)^https?\\:\\/\\/robuxcardsceby\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "052f7ca02cd02823f448c7de16ee319d00ca578ad6f84124c1faf8dcf44dfa87", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d3964c4b5850ec0841ea3edc7b88355d76790591a1e3390539f33fc47e1d16c6", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmQjSfoQxwDhWc2iNv76nVKZbnLYWESWe4UTv9ZRLFw1Rf$" + }, + { + "hash": "38da948659dc2013442afcfd09adcf5c18d1f8a1e7b4ef733d7cfb34c86e85e4", + "regex": "." + }, + { + "hash": "e47c96d7d04d980fde18f40d87b088730a816ac316ae0a8ed9cec0c2d48a800a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6ce6069fadccea03bef6bf1421e3440ee407696efa51d2916edc2dcbbb58e0c2", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4824ff2175e9e47fd058c42d03a2d1a095a137d0fd5a63764ad4d164cd1fd0b2", + "regex": "(?i)^https?\\:\\/\\/gcfnfd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "baeaa92c3ab358c0a9335f92edec7eee01ed9c1904286bf707036e5d3b55bf79", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "62393fd7b9c86ace93fd178767bfbd57d80e2cb1ba3b2ff24fbe0de210807367", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "54d72a9956b14d7aee7bd464158bef2e477e4ccb446602608c81dd2db2bd8b3e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b67f6bd052e9a220801a8f5d89a4ad002d8cb988c692855a77c90bc3d65fa7b4", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "63941610e5c44e34c0c1795975d264ff6022b82ca03df417680901a4680774be", + "regex": "(?i)^https?\\:\\/\\/robux\\-iieo\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "afd3fea0e39465be40a00846b5ac8366125970d5aef50f2bef5d95eeb763e99e", + "regex": "." + }, + { + "hash": "7a70e8f185b80c9a16d23eceeeb63b1d79e39c272a153ed22091ce0cd4cbd734", + "regex": "(?i)^https?\\:\\/\\/trendyvidsource\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "aabb8a53f5c7cb4628b5cc12f905cb3ca7befdbbf930da008367017cdb08fa1b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=l[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "f1ddd0fa91891d141f3d731baeed34ff3f4ed972d2ebe02dce03038506b26c1d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6dd2852464587ea1dbbd02dfef8f6670abaeb0d6207a8baecc4e37d50359b556", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cd4df2795167c805df235fb81bb558ddb9ae5173698296801da808b7acc9cab3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "874cd885509f00705292624b61688681621afbf4625647fd41d03cc436deefc4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4388ef179bc55a8abfd5fdfcd4a59e13c1fbe59b2834b3017478cf83cdda1880", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "77a69d60dbcd8e75ace7631e34169272b23d9d72fb993b5b6fa7995fc6ab63d5", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9d1617c9122dbf8af4a8fa1629d7e6b81cba13781ccd6d8855a26a6c7c3eafca", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bca2464d923b37b958fa4f5141632b7d523e047af1a59e57c4950e4a8e175e01", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5f652d2a765be0e68640dc4644f943552cd35e5c8939d97e733c9e48d9330c19", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4f2520b1eefff4031207c7771a7104a2adb4c1df105572a7a456ace5a1ab147d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2dff113b6dad9740767eb2cf4e5bef0b01e8eda4940324fd78178a8a37fe9177", + "regex": "(?i)^https?\\:\\/\\/btc1jcc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "86f2597a03b39e8e8145b51b9eca52d6a6c5d07ebcb1e00d4154fef802f681dc", + "regex": "(?i)^https?\\:\\/\\/btc1jzz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4f5702fb4aa09afb5e3ce3e08248c4882c28419100f6352aea470a0725f1c6b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1joo\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b3d5e9dea3e083c2700204b980a4e07f9738173eb59c596061a069f744c2452b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jee\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c2165138014fbd86ca4c93752478dc32e552e3a7bf056d518024673c887a8c68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy\\?rKi\\=PrKkIsaZhD$" + }, + { + "hash": "12069938288952c904c4bffec0d92c5b5a6361e7ab1af512572f94b25bf73c12", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9b6ddca41a6767d66fa4c2ddbef3f87b2ec8b78ae52ee5136b1b9a4eb8606d03", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7409ce24bcf7bcc2c9a8c3cb4d2e731f04524f7b8807d748679ae553362d0a7c", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4976d79f6f487e123c0652a3bdeb486e658a3b3fbb551a89866512e84cb7fac5", + "regex": "." + }, + { + "hash": "32283dd1baf824da771ef153057cc6e59a89c678da8560962e4931ee61c737b0", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-rumol\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "eae8822a25f870683c0914ec7950dacb9d1627eae10da7db61b092830ddf9cb5", + "regex": "(?i)^https?\\:\\/\\/dfhbtgrfj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "86664eb524f59dcae45152f8370823b5624d401662dd0db8945978fce970150e", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ee40b77c856406814ff600a3bdc5185371e6e305f767862a3a0d088a330612b7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c2c2e22523ea1fb90c8af8d9f0e1aa9ccc605a60c632cd6c935ccb5d51b5c8f3", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d2facf496495bae242a123a8f300d10191295eb6a98944fb7a6954e8842e9075", + "regex": "." + }, + { + "hash": "6d1607f0bd42de0c8a4cf5c0ff59c71f77c7f06f6e23f90c0725a41b8531e674", + "regex": "(?i)^https?\\:\\/\\/robux\\-iieo\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zaw5y(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "eb55d6241758193bedefd04ba79a8094956a674d50dd7a869cc8974524912345", + "regex": "." + }, + { + "hash": "da74285dc8a028db2726ff2f3fc98af78749db0f8f9a9c691538c7d9962eadf0", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5fbd14f9af23857c0bbe2460be8c37cd37d8871cf581b3828266636c5841b854", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "51be59c727d87d620905cb18a368747c403785ec1b35557467c1b67204e62807", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "de8eb1203f7c5ad29efde7fc60efeb32c06d9f9a1ecf1f187bf16f65b929bd37", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a6b785294b80995cc77e19d0e2ff88310ef528a40aaa93a290aac998c69972b3", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f9d9a1816aeb8f9862325e273e005002201a2a7fcbf99a6377294f73c7537295", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "37ea36431441fcc8a578999a44a7e3a690d5f731f5f963ec66f5b32e6678f5c1", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "689d5dddd2072b68517953396f0e7a27017e3bcad651a9c9b640f973fc46cc94", + "regex": "(?i)^https?\\:\\/\\/robux\\-iieo\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d123a88c786c599c748051ef29a519a01ed1b6475a3d76c833d78d305f5f1cfe", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "01eff7c477ccbc6372e9d2b45b7fafed529bfe155d4c2d3560b5b12291bb8ea3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a895e8fe3f27aebb9eece89b716e2e7770795fff6324413a1e483cefbef6f3c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "22a1eb17db7df319354ecd35c162786f5fdb98fe44d629ad396d77195e7bd55c", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ad8c44b05ea1f05817fd7c34bc366fe48b6423945d79a547f73ec45850afec61", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "86b934d7eca9464b494c62f2f3e0a93888970b2daba07bfccae44e8bb2130e32", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a0acac442a70de4a0540e57d0497bbf6edd7159a53c4f17ba25349e32598fc2b", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1cf1dc96599a54bc46184746524a0d2d85e221a0eaf3eb861f99a66b6f54f602", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e533b2c97dcd57520ebec7cd29201c68a554009eda53a21fdec20e4f78871631", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "33d36203c025ea27e822f2d0fc0417d04af30efbbdb199cd4f72a589deb19131", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c7823ed5bc3cd454b0902f28bcc2ae38bb6b469cf95b47a9d1bf63c0982d71a9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jll\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "18ec7afcd141d9a539974387ad15c77761a3358816662f2a4aa45590d0c43e85", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e1f048037592316af365c10fb109d102f6379fbdca8fa4d26a69cd7f9f9e901b", + "regex": "." + }, + { + "hash": "05d2d5a57712f03a1fb9ba0a3da628ccd1b4a16cdc8d1aaa67cbdef5e0cd3756", + "regex": "(?i)^https?\\:\\/\\/btc1jzz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "89a7a5a89fc41c8f843b7dac4636b5d33711cac85054142171a379f37fa0b18e", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "98403f17193b45296b2c37869000ebe8f015b9bb9d17d3c3f7429bf2fc04a918", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "68e7e2324e221c7481fc11ac53572854063bb0308a922cd88f23a79a13f5fd62", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fe08253deb39283e27f4ed3516ea7f20586951dbffb2a2ba76830d8a7f8e3716", + "regex": "(?i)^https?\\:\\/\\/hottrendvides\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2d46d0412d892eaf6562644ca02e63853ac1219e088fd0f9f7e78f3962403695", + "regex": "(?i)^https?\\:\\/\\/btc1jhj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "60207126f7d9e0765e881c9eeae2e64d7e5cbbded16be2eec5a5154775bdded0", + "regex": "(?i)^https?\\:\\/\\/btc1jhj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4065c34304a8d17a471f0bb532cd83e1b2d4d0564f7ebf94001e9b72506ac4bb", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a2d939cc1c652cc93e1a3511e2ab94e4e97699e2be07078ca2ca0da7f7292d48", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b90d6236879b0469d7f6d693b122b68f2db451f822c8b5aa44c972c4f6db5488", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f67583f175c19ffac26ca3e4b36abd391118ff2dfc682182e2282dda7055d237", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1318885f7a87f2fc6119dfb7c17a9e7fc67f4fecb75b6e09f9d23f0c0931c543", + "regex": "." + }, + { + "hash": "36db89797a548189b315687feb8baf42361e1fa8586c931aba8b8c92e8ea2261", + "regex": "(?i)^https?\\:\\/\\/btc1jcc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "97da9481d27114c2c73a8ed11dd7978b87e8ba7a3492f7126206ec138ddc9901", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b0e4325850052d29ac0144ce5f4e13f6ee88fb7746b97f8c4d97b1ca1d217bec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3c52f9bf3e2941de69358e8dddbd1e60f356a4e41ce4b8924d8bca0d1469eea2", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dd5f45aef7c6f3e382f5d1cb34af50e75301dfe434e08f133959e054486414ff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gez\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0eb586d0e2950497ab44266b5cf3be30c69b4438e1b425271e94e7819dc9e8ef", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "199dd998d17ae305c7c9207ab44d8d88004200adb4878b3af0495391e7b6a954", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c0c243a19769d41d7d37aaabb3e46e18518d87ae1a1dcc84297f4dcf9b67ba92", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5c8a68389f84be62752e9803a948ebcebf2431d2711b86c4a0023e839266e696", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1joo\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8eff51a175fd951473cb0292deec317d4cc3f32f95c4ae7a26907dfdee8a84ef", + "regex": "." + }, + { + "hash": "76449c79f16a34e82d5ad27c3bc1706f620e46e670be6ea1d4850f4b142f7d27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aehcnksm" + }, + { + "hash": "3d43ed2528d4e0a00b13de3bbcc269cd0ec48ff9d57e9b857a38718e796ec466", + "regex": "(?i)^https?\\:\\/\\/btc1jcc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9d405851dbf461b83e19b3659857e654e63daa72bb41ade4429f141af28564ca", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9b3d0761fc2227bbaf55d6a9222c1b25a175cc4677b51faa6439637255f16544", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jgg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "15a55120afc23e24a15075279f0e754c7bd0162d84a88b9f04706a221c9f0ddc", + "regex": "(?i)^https?\\:\\/\\/dfhbtgrfj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "124373c2c80bc31e967afb84dd3366ae63d57597e506c2a2dfae79a71b6f84a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1cf1bb7ef2ef2525ff61144c8e8cac99003eccdb1e49e9a2340d1798e02f4a44", + "regex": "." + }, + { + "hash": "3f27e8f07e4f8278286379331f935c63ef7a2e1aaeb7485d84db85df9ce1f4c9", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "71c601233c1fa5dae1c3d94e175154d0efb3be6df53bd92edd69238c854499c0", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "202a85befcfea86650452b3b088352013972a93c52e5177b60467079a5e29223", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c3caee4b4e13c866c1584080c217d260b4dd3eb6b5cbd94ff36738e035440d41", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "70e9b45db0ce3a5c1dd9d000f40e0e4984e3d9ec998042dcb36caa8398b8b998", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e8751af60ab6e52f574e8d095780a741fa8537d976ff668eb948a961637e12f1", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4cb4367ecd4f37b15fead3a24f83db24d0ae5b7b321aec854402925107dbb1de", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d65c2fff8241fc9ed5776fb84d750877182e67d11c50bf6ff1042c7e380eb475", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jtt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7683c7efdc61acdf289ce1c1322d898e55124a79d3e4d94a10b6c32e107bb94d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2cd83563dd922399ddc2ecf1d4681877e73ee182f35b948bc14c9b420bfc2a94", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "31701aad3a44b94ff2759d3365462b11adda9b709044cd13484d6be0340de818", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5cf93c4a0fe36f0e9fc10fb4351a980da9d2f0af9dbc90507b17d3f4e96946a1", + "regex": "(?i)^https?\\:\\/\\/dailyclipexpo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f7f996e93d05f22d4f51fb5a18691c7cfc85699582617da24c8026975af21579", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jee\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "772bcc05241a24eaa6211a5cfa9714f204ea6abda503e525c7923e4f1940360a", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3690dc1d3f4351de4505a9381b8b1f385a65652205c1b401f7e5ac814a275da0", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1a9fd2d5dfe0d6c9e8e52f7f4e1d328b42d7e29f79719def1fbfe3dd88ad3eba", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "401ef101bbc49658619dc92ac1b1ee74a7844f675a372cbb922128b9a9099499", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "af3a1b6f7430a1275e1d2b87c6c80a9e950343e610b7dc28917abf8949c95f19", + "regex": "(?i)^https?\\:\\/\\/btc1jzz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ca0bdb36b88336529aff2697cf9bb7318b09cdb14bc14a4c50a462df8006148e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a19800523f1487ba197c87905ca9bb4129f363dc10e121aedc7b0b37e7d80893", + "regex": "(?i)^https?\\:\\/\\/fdxbgnv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4ed33324cce564204a7e4b79fad200ba995979598f640ce2307b600f462a9f0c", + "regex": "." + }, + { + "hash": "6eb0d099a1370142d3fbdb6f202fd38e42bcdf8ffccfc2cea520d594e655b424", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7ebcb39cc4ac1bd426ecbaaa953d71c6a6e2f56f605a4197266e392bd587e827", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "50133bf6a7c6c487bfbd1885fe601db5cf5b6fc5568cd40b5342f51a7878a502", + "regex": "(?i)^https?\\:\\/\\/btc1jpp\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "30814f54bdea857cc061df18aa24fcaf2a0f7c17b315805cf35f9199056c91d6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "12d40a92db87af7e33328a879721ffdceb94d22e0a547b29105dddd5700e45c0", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "edb3d0e32ed18e4c2e48adc6b5b695abb27cbd850a6a87872706f36f68d44b9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jgg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "66e1a6ca9b541a724638d95c6552c04afdc974b021eb7c19eae3a2fd3669e3ee", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bfc7b4523abc45acccaf17e57433ab61a697fec4c14a93ade33361f9a1b995ef", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0cfa95df927c21780c7d14dbf9a0a59ab6e72108448b934436f9e1f47fc0b966", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fbc10483be8bc67b6f03e36121d60b1aa4836eb1bf767cdb04782ff8e8e7535c", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "352d42f217d8fb6a795902683dd040b09e84fc040412aecb4bf0d3181ce566cd", + "regex": "(?i)^https?\\:\\/\\/robuxcardsceby\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "23f0207570c1509d2a5f3a12bd3c131ac1c7e1edecabff56c0651e4c87febc53", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d20fc13f1c67b9d4b60c5425c5ac31d38f06e672c4c3e63e262b9c3809778337", + "regex": "(?i)^https?\\:\\/\\/dfhbtgrfj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmQjSfoQxwDhWc2iNv76nVKZbnLYWESWe4UTv9ZRLFw1Rf$" + }, + { + "hash": "d75a22e470fd03c5fcaf4b4b46e4599d6ea1b6858708473b8123691ae3da6c8a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjn\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "45e94752eb3ff958d1249df0faeedaeee1afe62e99cffb47ad607b3ec6ac3217", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jjn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "daa00cfee33fe16aa407da36e1467b3c90863de581ea431955abba2e97cf2cb7", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d436003630e2778646924834b9ec2a814d648274b90293888f8b992b6adbb491", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "90aff20fcdfaebb291a239c2d32b50d991423a4c5e266c477fb3ee061a690e3f", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f9ac70f679f00437ed7f60ced778925da5948a755a1f93c274a24741f0fdb699", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jtt\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e227ed40ddfdef7af93a43a7c50505f74f88e6246deaaca7c610d57819c24889", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f5eba39d16ba3c900f290f021eb151ac50c29ee45b9b5124dec458ea456f21db", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "326462f44a5da007af6bf86d37dceb68636a9a9f9c537207de1dd02a62c5ffa5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gez\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fa72ea5a73d9610206bf303cd5c265bf55677713c4c8de6ebb5b4d9cedfb3eb9", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-rumol\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ba80536151d5616e92ddbfe799c25b68baa19440c97f5c7296b06bb31b65e2d5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2e93b60aeada0907cebf81909e4b6a981e456cff15bcad6e45e9b94f17d57ed9", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "561edaf18163912a0fe05954dbf88329e2b75490f7addba61f01c7568d945f5f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b16fdbdb98750423a4a954380d5885a154542c451cfdb45a520cfe431a6753a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fbc87b6cfda3b9e5fe69e02e19e0723730553924c60681bd885073c4f1b375b5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9650afaa645a681360f2868c24b66688e82a4c279b312878cb9e7d130fed104c", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c4df4c32cf84933d013d0147938f6a7d47ef8b0eff7df3c7277207925a87bfd0", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "72785f00cdc79d23ed9795bef8468ebfb15862d468c61e96e6a97c8ab5ed61ef", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "92d8939eb732c8c0601b82b9d2e2e7cbc74b7af769da67672403948b11489a65", + "regex": "(?i)^https?\\:\\/\\/att\\-mail\\-104234\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2c3ff983352ade32fb5613d381a6c7e4d5cc7cd470f171d5ad48de17c71979fa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2c3ff80fee00bfadd4a51a84ffeb7d12cb6c82dc9ab45902d19886f398ba4b69", + "regex": "(?i)^https?\\:\\/\\/gcfnfd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b57c2a0acf008c8f154cec197002c620a029efd969cea8bd1ca2cd2ace742bfe", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f874d481eb248e2e20559899a353bbbe388fa880df075d7d64fdfaad33d9d510", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9da351f1f15a2d8986fdc69177382e0393e68eca9b03eaefa11a24e0963cc185", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1joo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0fb5fe2ef2de43055420b423ccd3c64ad39142eaf7e3112025dd125488a14e08", + "regex": "." + }, + { + "hash": "6ec747c2c752a7dbc7cff8f24cef2cd5e0fc942e889a5e9a07c6312b0ce87ba0", + "regex": "(?i)^https?\\:\\/\\/dfhbgtfjhytt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c4fc770366c85568cb37e4d8cc4a3d74144548e1f549d81b7e380457c539f654", + "regex": "(?i)^https?\\:\\/\\/currentlyatt75\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ce43f695e73322e0a3afbdf61ba00223ef7f07ce9a2028d10fade03ff708cf49", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "504ab8c510ce7510794dfbaf6bd9e78f18c89cdb524d560257e0358b6d42e75d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fe0ecb838be397ab6398ba27c31e82e7831ab2082183a4c04dbd87542d9409d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a3405a407709e4f1f0f644088e9963ff941431056675c29b5936965eb397114a", + "regex": "(?i)^https?\\:\\/\\/783648\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8c01da66e396bb86ec527bc6d3330a6fc0469b72aba477c40eccb379a648f0cd", + "regex": "(?i)^https?\\:\\/\\/btc1jcc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "627fdb49a84e01bf0fb3cf683c23ded4769e85209ce3c9492e4738612949b53e", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "022e522463e3d2c5c25ec58425ced6c368f4d55c09f799eea4169e92e74ee12d", + "regex": "." + }, + { + "hash": "26a44caf6626b3ca3a861afee6523f371f1bde6836539e670e76b292ebdcdcdb", + "regex": "(?i)^https?\\:\\/\\/btc1jhj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c0605ad241becee8c8431262810f4278bb07b5c981f830d38bac6d03305fddf3", + "regex": "(?i)^https?\\:\\/\\/hfghjhdfgjhudfgjhudfgjhdfgjhdfgjh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5276f6166c313cfa1be0426409960996ad8f66e6f7b6704832b6d9e555e7d4a4", + "regex": "." + }, + { + "hash": "7abe11b125c453448322640776e1ff69a458acf418b58b51c1329a68738f5241", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "419aba74970ac0db9e65aabf03fd5e327dd464fc632da418b6c855b210d9b6a3", + "regex": "(?i)^https?\\:\\/\\/mkak22s\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "23b756e020413c2f53ce67bb6ea984d2a302d19550bbc73c19350d39a74bbafa", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7593e0c17bbef962a2b1ca1e02ec86f0f83b3b04759efb1cf76931a8e22bebbd", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "977736c1173f9115e815ceab0f93dd7097a82ed6fda1983e067fa22a2334b925", + "regex": "(?i)^https?\\:\\/\\/fffhfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "546c9ab52070cc54121fd9c353a957138102ef97149dac72e0add5c6b68ee869", + "regex": "." + }, + { + "hash": "1d9091e93fe516f819c72ad8a10c584d8c90f8efe543a19496c96719e56e02b5", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f68a2366f063d05daefa0ada069ce311a9f447c5e6f5ea8a1a6d5ba48cd3c304", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "6ee814633354dc17a419a5b841e2a3409314b3d115caa16566791d6dee61c2d6", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "04be42324c4243ba055648ff11b64c68490f390956ceba1ca928f14cdbad94fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "8f905eda51e617a903cbcdd904b4cc363a189448ac9d89979f6d8a8c265d618c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6a8321babd49c3e08c010dfed7f600238291c3893b2a6df6f7b1fd6252812d21", + "regex": "(?i)^https?\\:\\/\\/robuxcardsceby\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4ba00608e8dbc5ca6d412faf1352847700722165402de660173659eeca9a9490", + "regex": "(?i)^https?\\:\\/\\/btc1jcc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c53ea5009c947394c5facf958726147bd66843f9c0a7308b4a4226a1f849c04b", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "767c4409036355ade66025ef5b64395b3da5c8c33f811a5917bf8a1f705ba58e", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8f4309e80d0e1ceeb26e80124cfaa30c0ad81f49a80a49c29f83b08decc31aa9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jtt\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "976e853144f3f8533abbf6dd5a15dbc7f70ace13b02418ead52d41e966e8aff5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "599789625735e7edcc793fa4d9d41f598ee99edda6c47d9f52bd0e4ce808a5a1", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a8a9bf571a0964deaba389c8f630ed9e9c3984e1e68987f6807e83f090ab7540", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "38c5be55cb9d1a3b173b3a08b3eae019f19ebd8646f1688050c67300db325cf0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2ffb31681bd735a7807e81a58a96264fe84c1f51665f1b97df7cd9c4c6e2fabe", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b974389ed0456d2478fbd3770588159b816bc0912e229ddc7b2f16f79a79634a", + "regex": "(?i)^https?\\:\\/\\/robux\\-iieo\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "852edc3200911333b5580c4e06e39c3f879d89b468d46a10417b7505e5d02c19", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c87e96b3e5b7dab4f03aba06f02ac8811f8f4a2b264ca0395f0fce7c0e8b3f39", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9d16dc18e0ff16b87f84ab9f7344c3417c2696969f9ba77d427e020edb610411", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8b6976b03ca003031e217b3c90317ced6fef4728d764855fd9045a7b24cbf6ac", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f12eb22c379809cf80780ae5213f43590dcf1b4b859501f113f99c6a9ff3f7e5", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "43bb976bc3677d78e776d5d69748f2811cf9c9046c280d6e4c703478a9f2556f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6e382d652b988dc2400eff37dfeeb3192f9a45f656711a762570148626f3affb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "128612f91b1c64e0d3edc97897fe75d48e749d304f2d5b4837e1706914f7e388", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fccb6f7feadaac1f0999f623ef696a042544bc15fbef0ce70c86ca1add97f92e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5e896bd35524f9da18b4b160c0886e8412f35baa84f878f9cdb1064f020fc864", + "regex": "(?i)^https?\\:\\/\\/mkak22s\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ff05baea5b4ee7fedefc9c06bbf17ddcb2ab6320220de6084f441f0076665bb4", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f59000284d47b69b6fb161701249a8c7e6a60cfb4d011a73cd23b3dadcbc5ae8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4b4c67d4ffeb5049e29969ddde87ef23c9ac0eece4c38600b8177f9bb8b15efb", + "regex": "." + }, + { + "hash": "a84a08f7bf25f806c3365bb21f46b80df5e9b57e804078a78a14041c1995b157", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f2545c4554592bff01d69fd4903e57ea095a4397b67e23808c2f8171bf30ad3d", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9ab37a14052f6b922c087c09e69748b0dab85b9c801cc44bceda242c17823822", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jgg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3a6a99f2c75d4fd0cff448b320509e12e0a2623c74d4eaef837549ef8bbffc35", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4a11884dd700589a2bcc09c81cdfe6058b4cd27de5e75e4647cd5ee1f63659cd", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5da71a89aec84d47e0435eed924b436101806930ef3c25ba02bade9979e5791f", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5c680eb9ef7c941116b9cff8dea07a65736b497ee35c8f5cdd55e876f6189a46", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7f05e4210c4c2193928cfff85e36581de3916fcd2274d5bfe2f0870b637c269f", + "regex": "(?i)^https?\\:\\/\\/fdxbgnv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a487e019c620a9d104738312596e8335b108f9990f24ffb3a165acbf47d30033", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f0bff4511da0acb38aae750024e1ba90059ded1b953984c407fa007f063c3bfe", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3cbc35e7aef34204c62e46edd4ab46a8fd54ac782aa8fa37c76af4366e0129f7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1joo\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4a1b3f6c5afe8f3a782941f7e614182401242b47bb70c624b4237a99c0070141", + "regex": "." + }, + { + "hash": "a0054ad4e6a310f7dfddd402e3c05c9def4b757d74ee69aee4cfa035036db9f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "04deb9313e064ccab7098c577beeda15661789d7d6c0245c88948b47e29905a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2f41ac0763e2bef584fa2cc5b91f41d5d97fc52691a4042068cae4ffd47bcc10", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "88ffda74c962faa1744cade2597ae25ee6e94b7efe11c6cf39cbb1d2cfa47b5e", + "regex": "." + }, + { + "hash": "28037ea7c569bcc1f10cc378d20c73a07a8c0199e3e3af97dc2d5e9a8e58efff", + "regex": "(?i)^https?\\:\\/\\/www\\.www\\.eu\\.phaabqsa\\.64\\-227\\-108\\-172\\.103\\-77\\-107\\-110\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e7495c0519e61b5753b901c8fff4678e832d7b64dd3cf34fbb9ce1d25ebdcf16", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7db2e0425f1464a88d4e467a1a178426022a4d5d940fffabbc9beb201d9c6e17", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5eb97c6998a0c22ebbbf2043d48baec4eacccc909434ac7fb68503976131fb2b", + "regex": "(?i)^https?\\:\\/\\/fdxbgnv\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a67c47fb44e1866d7307a7e6696880c0638af0a439d8cf2422142681db98af7f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4c35163ef7a4cd4c9bace89d0695a6a6d2ffa993194605c05fa620972322729f", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "02fa499b1183289f83c51edec13278d48b341f54d0a0b6274380567e72c70ec5", + "regex": "(?i)^https?\\:\\/\\/rtyfjmnutygh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "faaeac74bc885ff5b7c2ef142f28eb778564d3ac5381f184e94deee07c3112b2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "550f415736ef4e61880f2bfa6e1deace2cf4f8d5cf45fb071f4bf7a8d0abb15d", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c3a43e68635ff8057d75cbe9ad4b23e259c90d3c06fb7a2f4203c113c0ad164b", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "26b2144b6b9d258abf78b94bdc0cb7d389544e55d9479fcf2452a25985db4336", + "regex": "(?i)^https?\\:\\/\\/dailyclipexpo\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c768c91aafe17c90e29dc10beecf475fd882116c34062e572f04fa21c4231e5d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jll\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0fcc82792d017250f71c74b4d066694c4cfa84445a3ee8c02470a02123b5652d", + "regex": "(?i)^https?\\:\\/\\/fffhfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4fbfba2ca4c3a5bdf778c0a5d5119ae2a4afa493294e63128e83d0de6ae55ec7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "89a35c7c62ec47611fd4348b44dca642020bf0a623bdf0b3ef3a0ae16c8057e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f8lpr2ng(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "47259bc5fcfa8b1853a6b6b3acaf4a798a564c4f718b4c035ad106d66a2dcf4f", + "regex": "(?i)^https?\\:\\/\\/fdxbgnv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5b32f9769838507e52a84a7920377438bde8565c7a8c0a83f5f2c6854786e2fc", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d7c55c98d920a91ab53dd7946656a348f05f5baf3b638029cb53c50299ea4265", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "59f79be4217ffc0ed2071b07bf6fd4d05ccc38a719eea662d91ba3b166d4a981", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "80ba01aaa15d89e220aec9621160071fa6dd2da45a6090f026c3bffea9be3e40", + "regex": "(?i)^https?\\:\\/\\/btc1jpp\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "99b3aa0b157997abd1fbe31fb137616e836f124ce33ac29aacda2470cbf90142", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3f8451b8ca1b0a03b141b2c7dde39bc90b32cebf9c430175da062d1092e3e825", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4eb81c0ea5e4fe689b23523fac907afd909148b75f9f9bf742af0f1da35f331d", + "regex": "(?i)^https?\\:\\/\\/gcfnfd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8b4ded7e62b7a30ed5af114664f10001d0a0682cfe48307c1c663caa5575ce66", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jee\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "212a7e03c72eb46d0bdfcded4797cd9f17162e4110d19fe4d6e70c1c523b33f1", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c3e36ed47cdcdf778aec19aa8e4f90c3b75b7e110270c0290aa1872dcc218e06", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c3e3752b0f10f5bfe67810fa9eaa994a7c40c1b47df53b4d6ca5715bde8e08bb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ebd6b632309f95a4774b61c1922f0bafa0274d1e6924614934b8cdc5ec7c6f79", + "regex": "(?i)^https?\\:\\/\\/hfghjhdfgjhudfgjhudfgjhdfgjhdfgjh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8efdf74da278eec9e7de99c5681cd058df4832a44703c5cc4f7966838b1c9337", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "785214a9785cc196bed8e8c68254b00fb29e3db0f55fdec034ae3a115a92b961", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2f601d7a1a1166571975064f1f607c5cb2295185502d3173afcd62dfe1c00c20", + "regex": "(?i)^https?\\:\\/\\/dfhbgtfjhytt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3f6e3e67728a6c90539f010fec2580b2cc465661a5ed3c4aa7d170200f9ceb80", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4ceb07d243169ea5996a24717db6509b311baaadb0a183ec002d03767b600471", + "regex": "(?i)^https?\\:\\/\\/dfhbtgrfj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fdf6beffdc5edbe961e3003f0d248207b4aa61a51a5c1e87eef6e957c2fb92fb", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f38bce19cafe6a67ee423625ee846700fd87cacfec7a3b098fe456f9a745d6a8", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d65c5ccd1d009f8f3234c75905f3a98372c316f5f9e44a63ab88c2401396e4fd", + "regex": "(?i)^https?\\:\\/\\/att987266616273\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a2a46ab83a0040242a584e5da1602ccb27943072056c8f1472bed2feec8fde57", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "87adb47cb82bc66bd02433fbe3e5c2ff7d9d154df1b839edfbf6c9c2ca575a84", + "regex": "(?i)^https?\\:\\/\\/fffhfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a7aed30a681b8b7426880ee4505609d35493f32e79dc4927396028112e2d8c66", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jee\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "97c67dfa7c6a00ff915ea6482e4fdc73354f99bb02710b882b8627fb409a9cc6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ac6b6073165d30ca917dab6af62ba290824d4ec3405313dba7e944d5c5a1c7a1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "25c92ff17c007186c624e34c3c2b9129aa009d8017cb8a1d8bc9c3cd8af4f724", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c984644828c6bd1fab376199348f2c99b117d2da6116e50a11a94938ee6c4057", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jtt\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "30298ba4a3fb72ba1a00821e170461c4f59f82b8012b9aefd2e8d57d2450aa2d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b044096d8fe913d574dc94a790f404ae2f16318a517c069cc2289545d92359a2", + "regex": "(?i)^https?\\:\\/\\/dfhbtgrfj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "40801d421e3ca436245b3790039fc3ba0a465c22185f726f1e98b53241f01898", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "15162b24039f976fe2bdba0695dfa0c332441abbae2a08f55093e5c311762833", + "regex": "(?i)^https?\\:\\/\\/trendyvidsource\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "78078253761b1bc960973863452ec0a6db67f0049affd7d09ae60e960769e999", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4178bbc236952619556b6575efaef22b74186321929b589d2f086a02cbc4f39f", + "regex": "(?i)^https?\\:\\/\\/btc1jpp\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "315a5bfeba0b01b309ccea246f7c931b8c10a4f09755b4b68e8025ca2756d04a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gez\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "21e1d85d98b6159437d4cecefc83633cc617ebd393dd735c2c7675c3aa883f4b", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6157ce35c20a720cb54bc8e0ebf1b825538a8680e85c440fd20e7d4d1850cd65", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4d652943327aebfca5532a3ed0537c38d06a6cf76c37d39c4bee912586f4d763", + "regex": "(?i)^https?\\:\\/\\/trendyvidsource\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c83d026a985206641bb77c2c7b4bb8e05825fdde92884d9bd809519068d12638", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d8b5f025eb50b9a12b191d2dbaf973ba1013bcc96157e1ceb08b2ddf0ca35464", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uff\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2ceb9e180702709ba30d34e3b1a3fe329623d1908ff835049bbec5172a3f4787", + "regex": "(?i)^https?\\:\\/\\/btc1jcc\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e6e52dfe64081d4e79ce3338579aa0afcbf9fff279d38088668a670f88d37a7d", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "048eb8e9a5fe44a9563fd3946fb0c99b5ec7ddc604421c5252e152afb0ff35eb", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ae483c4fc633a96e28331ad5e243ce3eb702ba39d7b24f3e329659741e270b2", + "regex": "(?i)^https?\\:\\/\\/robux\\-iieo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7789a1b187b2be63b23fcace0400a2eb936eb048d8478e6b7a7de3bb8ac26945", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0337713eea390a9a769b28d3fb27f4ea74669bd52b9b282309ff22d246127247", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "974771f14c538b89621c84a782c4ef53534cdbc968f9ea82e3bb33393b39fe26", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "42aeb479cc93cfa3a5ccc6096fd42f118d671c29e095a1cba84769afa3b6aa29", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ccc2816d0003b8e20657fdab85541a853f3766c1d71693c30806e1241c130b29", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "818b10b33d5cb325c697e014bbfddde99a3719b83ada777b3afe4e3310027c9b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jvv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "022da4a8e9fb37bbccdbf865c23b3311b49c7eae575fdba3673bbd2a7f49cfa4", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "df5d7772a70d31d6f0ccfeace2224411d8ef6b3343d8a802d2516847f811093f", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8315714b641bcaf93d3db7ae2c42d2c3b53eae9e672b36dfc04fb0432184e05e", + "regex": "(?i)^https?\\:\\/\\/mkak22s\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4161675ad0677c28b93b606ad3edb4431b26fc9083d574b6dc449cfdea22236a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uid\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1a341a7731273b34e1d9b4cb5a5f2caadb1819b0d981a5e692eb53af7c4d07b0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3e2dd15aa8dd9d97fa208ae5c362c578a5b15029c2fe8e954be8ecaf4250ab22", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7bc29a35f1a00d8e4413e2ec432cca7987b34273874970c78165c0b8341f1164", + "regex": "." + }, + { + "hash": "ae3ab951222c3ba794e956b122ffdb4b7c3a38a7d7a8905e33e67d77f3a4ff0b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "19bfa8a44086f5cbb63a68e5ba219521a5b30321ed01890c6d3bfa93ed2e22fb", + "regex": "(?i)^https?\\:\\/\\/hottrendvides\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f7563e985e5c5cd52888a69af2765bef6f4d6c7ab655064d446fcf7d02f8ea65", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fa27a95b1992edd6fe124ddf105697f2e4bf900c696580f550cc5518f87e127b", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6bbdf9147a103ba066fb4c8d9b5d7d7cbf1175c4ef4005578588c4c4abd331f1", + "regex": "(?i)^https?\\:\\/\\/popekvuyaoe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "22982c2c734e694244abc98f3976395b667adf278d12c01944f9f9239b5816cd", + "regex": "." + }, + { + "hash": "cd1ee3764440368b754f87d568aa7e8beb66a36ccd15afee850029de746df133", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8afa21cc1f43b5d20566fff90d176cee963bcda3393397ea1e40411b4fb37b59", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "187451b0fd6d7a07dd32b2c250babb64c1ca6225bb6460c49428eaee22dd4a52", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gez\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9a25b1a283e56baeb1830468c1aade1253401c5899d8e5dadc7f6ff9e5ea1dd7", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7d108b6ea794affaa58c7d0e28c57a8a5e53e0d52349260b3eed452042fec5fe", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "42ae2c3e342fee4b02a2829f8e2136e5dd2e26a4e97598c4ec4e2983be1aa827", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a11fa96723e34ed42b416304a82aae6a24072e0bd51eb3e3eeb1293f53fff625", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "aa038948d97b675e7c4d0cfd9d2498ffc1b317f7bb5357508b2fbdecca7b9471", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "074e6bd5bd7da25f648aff740e69338df589ea0dd67007012a8d76471d15c9d4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "39f6d746ec3165f16a3013ba1aab468b3b7d233d0ab7500d0da4b56a7bc78c02", + "regex": "(?i)^https?\\:\\/\\/btc1jhj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "01cfd2ea033afc8c4711d17dd223b560679d8f75e786349a71e053b814b2045a", + "regex": "(?i)^https?\\:\\/\\/bgaknqss\\-je\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f2275f75743abceb223dc736b809dca57810a8a6b784ebb6c9487124a4237846", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5b8aa9a06387e8c28fe46032c897234e864dc270d7a5dd8111446eb1059c854e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "748ff5a6243f4dd92146bf4f34835d1b0839f8e1f4916f24c7502bb5d1010256", + "regex": "(?i)^https?\\:\\/\\/fhcgvvnbc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c88878c5b9aa1c704eaf3d724f94a55fa58e7f3277e3931d6620864c6487c378", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9ccdba8849164a02094e5d6805d3baa0ecaaa16ec181cac61e9f425c937d89af", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "132509ce57c74580643ebef6e833b3cf7edc9ff825c03d3972275d23aef0f671", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c53ead04a8ea393459e1ca1b912d766542f34a4691a703bb64c55e21c7323bd8", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252Fbafkreifbdu6yqg7pqivyym6xk2e7yvhq6dk3e3x3d3sbfelhdqlygezwt4$" + }, + { + "hash": "94e59cee9ecf0011eaeba44baf25ef6cf3c5dff3b87f5ae6ed33b2714a99b0e5", + "regex": "(?i)^https?\\:\\/\\/rgdrdvvb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4ecc754108a4826c01574033fdb62ac96cb19bae8c6e8ea2667ca9a8c6817d4d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4ffb47bdcf79a60e8772c86a3cda9f7dc485c3268ecbec2a423d3ca34d879395", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c21f509049f0216cad6ef5282fab9eee292a2c179ec7453e98189218ef8ec120", + "regex": "(?i)^https?\\:\\/\\/dddj362att380\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "0709264cd8a8a77a858c379927fd3fa0ca71f82f511f2cf725ff15eeda7269f2", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "19a169e6b3a6cb49d8e3317e0e9ca64956acc45de4fa23d688da567b156aec9a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d050503233392f2b2845c9baf2de4db0556ed8b3c721b65e7a308f25294646ee", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "addc7229817ba4451388445e779d9342a864cd22ac02b0d5cad70673b11fda3d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e49d79e3397f5fa703c2b1aadc9c5f1f6cde408327419e65ea9a7e1d0d87718e", + "regex": "(?i)^https?\\:\\/\\/etorologin4\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "af3a63a71dee9381c4a1177b96dc1dfb36ab679e108400a9fdbc90d3fcef0424", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "c2006f34d986baa6caf4965969e773b89335d441c65a3945e0b7a61fbdecf4b4", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2d4945fdefa517f98bb1cc8ae65d0e78c608042132639f7e22ad247ebf156c83", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jvv\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c68a78b15534165ecb5917d23d18abcf843d702b8d72c7f899a85350797bd4b6", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ce5e19c528335fb8b512a749cb1e33bf0d53231c5416f601418b932af27bf201", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f0bfc0818f7a52f959a6269a17db40f0c67c50c5b916ed094456275756bef853", + "regex": "(?i)^https?\\:\\/\\/pub\\-fc59634013924c2dbc5eb7c982239f1a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f4dadc385d784515050fc7dc50a071e1efa7ad1a7d96d077c9a378fdeff03f96", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f56dc8e5b2d31b24278151c29e98d312c5f0e10d9d4493cfbde714cd01a98423", + "regex": "(?i)^https?\\:\\/\\/btc1jpp\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "750b0de439fdcfb74a819bda340bb4bcf59c104b7683e96f4de0fde5c365d674", + "regex": "(?i)^https?\\:\\/\\/pub\\-bb4a3c345af64a52a03be24522e1ca29\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "aaafe85a52d228ddc0595735bf9e5dabc85a4551ba079e5639ab13923bc0f956", + "regex": "(?i)^https?\\:\\/\\/fffhfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "048ceb5586603846ccac0add3496d66fcca78f3de5d06fa0d4ecf5f0b50e6c43", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a84a3825fc1cf6a6b343bc15dc4565813574df79667dd85793eb07067454914f", + "regex": "." + }, + { + "hash": "9a4457a94c802242181d74ba5dd6c6e7dc34c3b64b4ac1d9bc63c06290c4bf7b", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f437e70df8d60f71f2654ba5b04865600ff9530afecb70965d9085514780c7de", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "51ee0ea47a19fd90b427e9f450dedcd4c2f0cd417818d297d970aa4c17d3f7ff", + "regex": "." + }, + { + "hash": "27f62b41b9a6733485dafa9873f75fb16a6b547412374a69e2036f5bf45083d1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cf324cc7f2ee2f47fe321d511b94685df4552a819639a3d7eac20603e37f3409", + "regex": "." + }, + { + "hash": "7364b3557d691e209db6b54a5f0b0bab19fd6530024d389ecc36c8ceceb56e6f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f4539200b0f2a43a264a4c17671166c5982a828f45e628d0bda1b89095d53606", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "486097d348632798f3a8f3f31e922fe888dfc1e0885c624e6a6076cb37a6f0d6", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "90c56b41c6983761fe3f4e842bcd6488a8da43ca6d6e5b0d7cb852350f1a96d3", + "regex": "(?i)^https?\\:\\/\\/btc1jii\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ac146add7252d9fe73f468ea16af0a461814c93b9553bc81d20da61244ace1a3", + "regex": "(?i)^https?\\:\\/\\/trendyvidsource\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d28fad1c112210cf9801778d5df927366b57ccbbf37e5953c7c81593f85d59df", + "regex": "." + }, + { + "hash": "5b1555dbd108eca6622a71f1ad9b9ebea9a2e269ac5617786612e69132b69110", + "regex": "(?i)^https?\\:\\/\\/popekvuyaoe\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "98a43093e997bf065003aca004222d826e2a6a25a6a11855efe0eca14792aed4", + "regex": "(?i)^https?\\:\\/\\/akianza21\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4ec5e3561d3a5ffeb19ded6e406d9ed1aa518cc79736264d64063d5b8bd1e60a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jgg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b87671c6814b59af33449546fce8b48674a7db0843f0c4a18b8d03c3a19afc8e", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "74e23e647936dce1110637bd230a757b1f085565bef7266125caf3c29433ff33", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "222a3b5931fc77e1eef132408b8e5a706dedcca15187fc60b8e6350faecc0359", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1joo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a499d5ea046c1c7329a2b8205d26fb30a67308d575917d28751dd874e293f9e3", + "regex": "(?i)^https?\\:\\/\\/btc1jll\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "19bf0f1e66de81ec79cea4546021a2fc467ee09110cf740c903501fa32af6098", + "regex": "(?i)^https?\\:\\/\\/videohhha\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cc916247aafa02a8c2cf1bc3d6452caa00942317719afce8c0300eaffaf0746e", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dc3ea4f67f032ba18e4bfae49f96e13b2dee48d8ccd5a1a3ca3ac85627ec5acd", + "regex": "(?i)^https?\\:\\/\\/gcfnfd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "03d5687356f9b6334cc10128d5e8e04d5bd37cf2542b8944aea4e83fb5e708b3", + "regex": "(?i)^https?\\:\\/\\/btc1jvv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "28326d8f325510b88c613b3ca99a2cf3ceff12247ea64d0d0a49723fc1119c98", + "regex": "(?i)^https?\\:\\/\\/hfghjhdfgjhudfgjhudfgjhdfgjhdfgjh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4d92091d62c2cd7864ec19242ae55598d891cd73033775edf6ae637dfbec314f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a7b27375ddc89d8c6181021a8d83e669cf383b5f8d4925bd5df09357813d9d39", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "09dfddae7d65b9c58999f064b2bde953f3354111da677f611bb74dabb1d6b61b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8778a8894aace29d9eed04738020ee873be66672e9d97087530bcfc500fd07c4", + "regex": "(?i)^https?\\:\\/\\/btc1jhj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e5ef572283cc6b15d195da5f490cf873920c73075eb35195b47b61872aa905a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9768611c04f6a54b0a1393e6e43899097b62f66605426207ecee14d67793c969", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cc9a75ff1bd2d6fb53307c993bc0f3650db42417a13c6c2b675ba5a4eb0137e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b974bc79d788721aa0918ae2d4b22bd27e4772c6b0a4076a356376f5afbbe937", + "regex": "." + }, + { + "hash": "bd3e285cf82c2ea6597e88ecc640a15f75fd90981ecd80548cd3f9ef07836fb4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gwz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zycx0l(?:\\?|$)" + }, + { + "hash": "8e64f94c3ab0a79c48268aa3b7ba55b93a33e0a6098eb5893ae7a26a08936a79", + "regex": "(?i)^https?\\:\\/\\/fdxbgnv\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1a16851b984a1ca5dd728dc018c1e0d047470e2c6fb5061f7d9198eb874355b6", + "regex": "." + }, + { + "hash": "94f32aebca0aa484c25c42b28bb33cee164f99ca1970c0c754dd2d714974aeb5", + "regex": "." + }, + { + "hash": "c989080722297588af5454b54025c458c8d0e2a52356da4f46dc1a22f4409491", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "42bcef0852fcb2b2192945e2a1452859d49f9247a1dd9d03370fe28d19b160c5", + "regex": "(?i)^https?\\:\\/\\/amonracjrus\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e558f84dbf6e8d7734ccc0f5debe39e57b96a56ab6894ba110bc00dc54d17400", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "83bf7cd0935fabd9a2aa97e14a98e935db751ec5342c7ec08c174b5f7afab991", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4ddb2e54369977d02663a32614f985bd94d47df095232782cac849e8237fd535", + "regex": "(?i)^https?\\:\\/\\/mkak22s\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f1e390141bf333996d50fabf55633faa1532a6d1b488bc9a61a184bcf4e20b38", + "regex": "(?i)^https?\\:\\/\\/btc1jpp\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c017047c0f4f841d5d081a26d4667368f89eb448eb7adcd73d0c3185c09b52b8", + "regex": "(?i)^https?\\:\\/\\/sdjkfkjsdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "331168347c38d673b674e5a42e78de973f2a3ec5b5cd4703e94ee75010121b60", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "da183d0bd5c8cdc344e8bdd8b4e02ae6b6095513725604e0436ab5bf3ded771b", + "regex": "." + }, + { + "hash": "0b439299c4261e9b138b6f20c8e0ccf9fdead30006d4dbb70b484b254dd9117e", + "regex": "(?i)^https?\\:\\/\\/btc1jyy\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cd1edd9f98dc93a727203059b59f8c92c64994f326a1f253de4e258570b51f8c", + "regex": "(?i)^https?\\:\\/\\/bafybeiclv7dggegg4tcvdsw2ucpyrbevzkkbm2xzczmckyykiju2lz3ykm\\.ipfs\\.fleek\\.cool(?:\\:(?:80|443))?" + }, + { + "hash": "ccf97180d76b3e8aa12cf8b7b2d78099103acacc3a4546465d4897671c565238", + "regex": "(?i)^https?\\:\\/\\/deploy\\-preview\\-3878\\-\\-gemini\\-public\\-7sx8r9\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "d2644dd22a1edbfe7dfeb155f828149d74b01c9c44012fc1af19c4fd98750f64", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2fc4a1302a9709934583ef1c00d3c7bba0b439ed7189c6e7454ac87f6af30106", + "regex": "(?i)^https?\\:\\/\\/fdxbgnv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "aa45064cb221d35244312bfcab53f109c2871b50faf5de4fb8770fa6362ae3d0", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2df3c8ba812bb3d486f07b0f46e3f30d5548b680f84fe4aac460fd38d85efdda", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2714a89343c36219c2cfc876bffce57a2834f8d485c7e75b7673922be8acd71e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "886d3e01e2d1906d553185905c64842b1787795f8b9e579f72f587b063008ed0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gez\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f40156aa58171e3a5c0bb70949983f9efa454e5f43be72cd3e806179034983f7", + "regex": "(?i)^https?\\:\\/\\/btc1jla\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "49c8ff58a4f3374ba674c3411e4ffc307227d1ffc61263ab1fee53e99d62d996", + "regex": "(?i)^https?\\:\\/\\/btc1jcc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d551a93a216bd352d6c16453ea3446bf6f1a322926ef5f86ce4f703457c6abb6", + "regex": "(?i)^https?\\:\\/\\/btc1jzz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "613f715edbaec4ca970e6731a97facbb50f0cb3e0fad9daa104799cd9b8c0924", + "regex": "(?i)^https?\\:\\/\\/rgdrdvvb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4d805ce024e4d0b7d516213432fe09607a240c062a770b64298051b51118af97", + "regex": "(?i)^https?\\:\\/\\/hfghjhdfgjhudfgjhudfgjhdfgjhdfgjh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7e85e2c2e5476c88951c842a91bf23cd2e3643476cb1640648d57b52bd3d0a45", + "regex": "(?i)^https?\\:\\/\\/fffdghg2341354455555\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2fe8092e7e24212c6cec1150e6d9cfd380b0a689f35b4b6f007ec0c00418075f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uaa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "df5dfcfb113a034300de50b8f80cff56a53fa0d6864e3c8593a56b3332bbeb76", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jll\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3cbcb67125f187ae398429a3a6954b9260a4e1fd9e3177b81e7f047bc6e03d75", + "regex": "(?i)^https?\\:\\/\\/btc1jcc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "62a78873c070f89996806ea3d6873ba3ac5d3e81fbbdb29fb4ff46caa557e823", + "regex": "(?i)^https?\\:\\/\\/ayuda\\-rumol\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f94870612fc8f62287d8a501301d23952034001ba0c4a43a0cc517e88c8ceaee", + "regex": "(?i)^https?\\:\\/\\/btc1jbb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "89a32358cf4df4cafb241b6cfe0e2148fd764e6de1a2af0bf76fd03b7a9c0361", + "regex": "." + }, + { + "hash": "6bbdbfcff2728fb5833b82fbb9e766f5419d2b515b740368c50c03baab50344a", + "regex": "." + }, + { + "hash": "bd98be9a67c096f4c8240d295c0843de0c651c8c0142270a4a248221b1de7549", + "regex": "(?i)^https?\\:\\/\\/mkak22s\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "07d4e80ed096fac169f2b3df674540a853973a82def043355b57287efe20c8e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jll\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b82f22bf19326205f0abd80e6d86f92a478773551178af156665e384a814334d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gez\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7667c9eb8c9fdb88b860f48c1f997cc31911a1170a389adc3fef19cbf067c5f1", + "regex": "." + }, + { + "hash": "098fe51b9d308e46bcc4f7a2602bad397560c15dfdca42ce65d1e4bbeb0b2b0d", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9e5d544e19d3b3bbcb599238fd4fbcfa272ce77cc5c76e0d884796532eae318d", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3b0695924ca65777a4b1ffd4659bdb9e077bdf980acf137e941482f577bdb458", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wdv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8edea935e6b3ceac35f6406c3f4e6dfb1ab0130a2877187ec3102ae47164c5a0", + "regex": "(?i)^https?\\:\\/\\/mkasmw2\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "51a76fb11afd123bdf744744da8b0e9fed0108f77b4c0f50c5799e3cc3ad2b1c", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "944641219e753840a7d2e56cacf57a3824430e411bf7827a4a53412ef3cb186c", + "regex": "(?i)^https?\\:\\/\\/btc1jhj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "18c81c9588396499a6dd2f45455c99fc655f560ea161b2bdb095a484d8685ceb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "60520f1d55faae488136cfd3d8dcdb14712596831a3096129f79f571885767d1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jtt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b7f4cb85c477eda2d0c0c2ba03924b51d09119dec94e7b22c7d19a004a43f994", + "regex": "(?i)^https?\\:\\/\\/www\\.escludi\\.app\\.212\\-73\\-134\\-234\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d8b2066d4ccb8e1ef033454202f7361c5783326f6bea4428ab64a31f4976ffe7", + "regex": "." + }, + { + "hash": "a824ce60fae9bb4fd681c6845df6d37cfa4b7383b6fa14222c18c50f59e7f07c", + "regex": "(?i)^https?\\:\\/\\/dfhbgtfjhytt\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d3878b209d01a7cc06602ba6bc5bef89680142f971620f255bd6ca3dbec2111e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghv\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "36a104bed65c806c81fbc76d633333a982b0073ade46bb37682130139f411c6d", + "regex": "(?i)^https?\\:\\/\\/btc1jzz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7112de750f9bc401c86bd6567dbee17cee4b1fbb44ffd135c6f938f27fc09ccf", + "regex": "." + }, + { + "hash": "96b64b954256b2b15788786657ef32cc3305a4c55b4d8722ef6b10c386991df9", + "regex": "(?i)^https?\\:\\/\\/popekvuyaoe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c2ceabb9629832ccc8a30ba81a11148c2d296adab9d3e233bea01b500665be68", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "53bf388663892046e70e354032b7721c60280ceeba6fdd69403165c307237e8d", + "regex": "(?i)^https?\\:\\/\\/btc1jhj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2747756d4478838bcce32d49accb2f7e895f321da8e04f7e20856c6a9caddec1", + "regex": "(?i)^https?\\:\\/\\/abcwfedrgtghyjh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "55b6aa89e451aa865e2f3e88502475fe57ed7ad08d33bf8f0772c154ad2a1c23", + "regex": "(?i)^https?\\:\\/\\/kljgutry\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c9847ead9a99b1575f0ca393f38ba7475d9a740882956e298ff57e7484909f39", + "regex": "(?i)^https?\\:\\/\\/daddyqwfld\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7d1b5d68d64685fc0c5c9ab54565526be5791955eb275a3452b3db787eabe2a7", + "regex": "(?i)^https?\\:\\/\\/btc1jjn\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "01d6ff46774045be22617e7a1f14c4011f58fb387794548b0545ca72ddd34927", + "regex": "(?i)^https?\\:\\/\\/videofdbjkdfhvhay1342\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ebdc55f4df65a3651498a6a3e9d053a0c5e5a7b5553b11109766f5dbbec693ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjy\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b8abfa97988159d7f859c24b6ae69e8a71c448fcefec9eba38c981dcc0be9424", + "regex": "(?i)^https?\\:\\/\\/dailyclipexpo\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "00ae6c4a17ebcd685da908d2a36c72845515e69cbf10f51e461b7a7beafe74cf", + "regex": "." + }, + { + "hash": "0ce0221b8393e08ec9c8cc35c1cf3eb709deab77619dbd66385577e893aa5463", + "regex": "(?i)^https?\\:\\/\\/robuxcardsceby\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cac6dcf8faf4785d78742ff519e8178e29d8704cc0b0814d0378e9237fae5202", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jll\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9349f94783c8bfa9eed9d74534ebd11844d00cd15a6eb170c21d752475fb4749", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "09e2d4e67a0f75fb66a333a475914c25295d083555ddaed991063f8de6ccba75", + "regex": "(?i)^https?\\:\\/\\/icscardsupport\\.3utilities\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b7706dda217bc5b88d83d48c208d3f6f05ad228bc85a7330c99eaec033dade72", + "regex": "(?i)^https?\\:\\/\\/hottrendvides\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "95f0f7110316a58e336691f105ec87235e3f68f957e3458b58661176826d4671", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jcc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d8b194683955af999e62d0022b3a1cae0e16fa2841232988f4d42442d1720156", + "regex": "(?i)^https?\\:\\/\\/btc1jpp\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2e2df28c3c0d4cd388fc5f44453dc01f09728a94a07653afb20a2ce676fa8264", + "regex": "(?i)^https?\\:\\/\\/btc1jzz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a66d15f1cc7a2441bcfa1799e3f9f93baf671feec46b7919203e077b8243b31a", + "regex": "(?i)^https?\\:\\/\\/video123412546vncfb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "36b49ae95ca15a88f0711bbde45425e60570d0bd40fc911619d87a779138645b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jgg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e96e1979061f931155d1c55c0b586769d8fc71f66877c675f58fc95f34fe85a5", + "regex": "(?i)^https?\\:\\/\\/besttobestdeals\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "239868349fce02c4079c139ca763ce00da4c5cb752e5cd255c3342d50a541a22", + "regex": "(?i)^https?\\:\\/\\/dailyclipexpo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9106cc57fc87e2703c8ff7a8f5253c56f6e8bc53457297f900b6ceb9cfceccde", + "regex": "(?i)^https?\\:\\/\\/hottrendvides\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "705eb953c51ce39f7961229beeeca6d4e88e41dc83802b133eb11b4ff3a3416d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jkk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3c20f6665471e87f3a882a952bf4d9e3192f25153cfe5fb4b85190003f8144a1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a9fec1bbed0bdbb1e58b5794ba7d573a1214c92b6edcfe642b86930fe153c319", + "regex": "(?i)^https?\\:\\/\\/rgdrdvvb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8b2cd41f420a3c383a1d162cec50f46ca551442d10e38b81b7dd6eb1a9faf50b", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0218eabc8bfa78c57c20f200a2caf45288014ce476c9960a7205694e05a4d5f8", + "regex": "(?i)^https?\\:\\/\\/www\\.btv1erh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "65e739bd6247f97a638c1562d513af5d87e66f6e752afa0c6c7033b94a424c98", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e167075a98f2ad92eeb74ce68b724023c53bc2bb28768a8c497af1919d7a97ef", + "regex": "(?i)^https?\\:\\/\\/new\\-latestbikes\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d7fc8cac3ad0b16403cde745962fbc9ddc09bbf81190fe212f1c38cd2f589bf6", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "75474a356ffec69caefa009707471fa5104acdde72967637b2a1953783ea9579", + "regex": "." + }, + { + "hash": "1a7d4d53559c0285ebf00ce03fcd17f37b5d12cc7b435d7b84b60b678162522d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyy\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6f354c186915f24167a60598f7216c0fa60f8946bb3267a4cef51dddeff6b466", + "regex": "(?i)^https?\\:\\/\\/btc1wqq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ac6b3460bf13c09a7769beb85920a112d38a08355fb189027a0ea1d81ff8acf6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e175699b32e2b7e6ca352a9453bf5a054d8306b92edd79f916725a27b79d4650", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "eac0eae91ae374c89758835d3d63f2f03e8cfd5537af2fbb20adde2d51e50984", + "regex": "." + }, + { + "hash": "a1423ec8879f8d9c3fa6b1cdf9e5e0132c12ea685c68c9dd3a4ff0fb5a2b0342", + "regex": "(?i)^https?\\:\\/\\/btc1wyi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4c4d02221563dac5ef3302ba2b29152a37bd66237bfcbc966fd0852d0d9e7800", + "regex": "(?i)^https?\\:\\/\\/btc1wpd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "64bb728ea1279d7f056579b880a70ae267d7eab35bc929ab93cbdb5de9ec7b2e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e65c8de74e63d5b010f58e91564d542cae5f463ba6a53731e5e6e271bd5c8320", + "regex": "(?i)^https?\\:\\/\\/btc1bqq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3264768367b3175ede196feab41d8f1c6dcf38ab3ac099d1ed8e0c5892c19240", + "regex": "(?i)^https?\\:\\/\\/btc1ujp\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "00a9749ea76d51cd64be8e711fdc6efd400f8ede2523313ececad6f082e71047", + "regex": "(?i)^https?\\:\\/\\/btc1wqq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "42a7ec63c6d6f2371802e28506fc8b1d40ec51545d039b6edf316dc753404ab9", + "regex": "(?i)^https?\\:\\/\\/btc1qhr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6702d81cb134fcbf16ae14c49e5aabf22366c72d8857b7247ecab644757edb3d", + "regex": "(?i)^https?\\:\\/\\/new\\-latestbikes\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "98cdeb5ec58b5e3b886ec0defb776fdd9fa8e8d72d6fb1891493e852484c4e0f", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "57bff669654019ffbbca9cbc94cb9c31b8d39c51131dc0b3acd7931716ba125b", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "52465124fdbe1cd53e4a77602bb6a024074709a8e3dc581d6f8aa6129f2c3ab2", + "regex": "(?i)^https?\\:\\/\\/free\\-10020\\-robux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ef910be1712c3b40f0f12f859ea1b1ae5f848a6ad23738374e6c611c2e24bb43", + "regex": "." + }, + { + "hash": "0c94811fd279f79d39d86da884e35a6427f43776dd77544122bc4f65df4a9153", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6defa8473f4eb4303237b42f7f9d943bbd8c4aa21ae3b7d05bc2e495b2099c0b", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d3876c87aa94e04e3b36b8c2db423d628a9a3e00c4f864b4dbf7fe30587a9eb0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4a362f6ab1ed8f4ca543f105a875f25f3164c863aff225ab85a0f8f74a41120b", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4a7dd9f0d784b2db902d6fad803b203493d58ccddb33d170088adfd9d4346f9e", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "401e468b57fc306b9e9737a6520d9dd43aa18792a2976c0f163be01909189d53", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "67a87dbbf40d703ac350c3aa4f8d66c5f1959f6f2a0e6d1fcf590d7e0b08363a", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6ef8d114191f8f9e425631facdda596069483ca2cec54696fbb90902301840ec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8339c621a7cd021bc225e97054107f40ee2a28d612d8ba0d14d565d363852681", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f043d92151710bfe307b7a7d50f1e77d83d13138dbf5843d3f45058f8e84e45a", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a10dacb918a4f7f34c828d739e029e92b6232763ca2f89a723ebc17ca4ec4946", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "31603398c1533b0b3a4bbd095edea956ab13d4363ef03a989ded29ea870a6f4c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ca8cc00026923d6e9a5d0e3ba1632285cc10cf04cb9ba1252c7af347a37b8f00", + "regex": "(?i)^https?\\:\\/\\/btc1wqq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3abd80e16fb10e647937e63101b7e5929a1334e87118cde5a127893bd22e5bb3", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6007554cd156c24f5c18c4f1fd09ebf775e0a3da4958cb50b7edd9498e702a4c", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5d5143165db74cbd69cb01028d7f9e8724debf568c6c59b8e43d5a1b9541e9d3", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fbe1376847cc880a49d184545dca5d54e3fcd4321c12c2c633f3fdc3d33a82e6", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c08f05847e18e46e02090dbae7f45a5f0eb18932a8f064307c70f3810720be61", + "regex": "(?i)^https?\\:\\/\\/hotvideoshotonline\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5f58d147223b1659cd724e831c5e97cbbdbe6992805b86510e5936e18410c96e", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b03e86723a56219495df902b1da5fb5130ba0c2c9f4eb796d1c262c484209", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9677d678d81f0ee4bac0c28c95e75c1b69c747278ca6421ded6faabe1132432c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqn\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2cc5ee8cd999404833dab7bcb0d94b0bb56619dce47df3d771a2e098d91220b2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gxq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a1a384c73983394202806d128383b5059c52b41bcb870e907950a3e04a69e3f0", + "regex": "(?i)^https?\\:\\/\\/btc1qwo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "77d2b02eb59bb0d5f7fd54857f8426aa8fb3e27007174e2d0d6300625c7fac2d", + "regex": "(?i)^https?\\:\\/\\/btc1wyi\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b3dd98f7a711e9148720460de56fcbef39299dbab515a4be8164a7c663c08cab", + "regex": "(?i)^https?\\:\\/\\/videoxboxx1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c4095b1f7f84c511bb44c47149e9ec2a22ad84bdb55642b31ee99fba677de304", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7ac54399e963b9e6c42c3a7ce132b98bab047b6ae8fe260574337037ce6ddf54", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "af7d524b26a64c87f680dd362185463df4f8fb451babad72ab6c24eec34be1c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "e1ea9ff77ea8a58f7b00faca5370b7db8b7664c5a1967d63157ffd2ce55743d6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "02feeee4c718ea7bd7d82ab8eca9f902092eef66ea3cbcffc95efff5b36733c1", + "regex": "(?i)^https?\\:\\/\\/btc1ngy\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "27a261336d3bb2dc47fc85d430c01ceb88b2c6cdf085b738056449c75403e453", + "regex": "." + }, + { + "hash": "09c9a8d77909159f7ffcee95929e27a22381ed479221ba4eafd420b730f251f6", + "regex": "(?i)^https?\\:\\/\\/new\\-latestbikes\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "474a0752048e48fc31a7c2cdc4662115a5f13f8bb03130d3aafc04508d28f9ff", + "regex": "(?i)^https?\\:\\/\\/btc1ujp\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "145983fd276b3fd0d48d44cf8991e25eb079adfb87d0b4516a4be2f30f07e20b", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "814ab21daf3450f6867a23ba6af87a92f406c2575d4237bdf48936a77b06df60", + "regex": "(?i)^https?\\:\\/\\/btc1owe\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d24c8f83ae4cb7ed76531410ead9cf3affc8e79ad0bbc0fd3606be65adaa9726", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ed9216497ba04626bfcf6dbddf7ab0e420f0b7d4b028a20704a0fc9bbbe3154a", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "54e42841ba4dc3940e6f4e28a39aed2d9c049ae31960f5727fd204e08cc8a17d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "313ab15f27aad5743ece301503d3a11e623b5bcaa156e21c3913bc6e987b5467", + "regex": "(?i)^https?\\:\\/\\/currentlyatt404\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a83b52214cf84ba3de179625c03c1e16576e10c021be2df807f198ec2f1b2738", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4ee7936edca91f1f8a2945e864c36cee8f2cf95e45d27e818287fb23df8b8e96", + "regex": "(?i)^https?\\:\\/\\/hotvideoshotonline\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "68f5554abf9493f15e8b7540743ac0becfa3ee41efa10126a59cfcd3ad27a9f6", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c8a4635fce390c371e0345c89ec0d5b1c5e08890d8114d7b467266613914cc93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "86433aa17ae0cbcc87e6e06dc027cf8a6821451cd5ce3106d9b12373b9da58b0", + "regex": "(?i)^https?\\:\\/\\/btc1ytt\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8423acf9c7bded419e8b7060356f438c1b85e9349e4cd73f7b6717093e9c0ffe", + "regex": "(?i)^https?\\:\\/\\/krasavikvzfeyvf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d6f11d5a932b673c251f1369ca39ba21a5b88a2f1d48b990db6f33f1d9a88a75", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "279a25d406bfe0ccab7ac8d24ad8373d6a6ddb3c3a56171731aea67419a477da", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8419ed912200a9988c6a672dbb52c100842d4ab6d06be258e22d8f125bb49040", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f0471149a6f35d60862694b3f52777bf5dfc0c9ae6aab76ff7d6bceec39afe3f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c8ac44a86bdc526849e33c55688340416b0c54dd242b1c994b58e474fff8365b", + "regex": "." + }, + { + "hash": "ee5c6c63f195775f350329d5db792de7d81460eeee3901f8124b986d55962a3c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jaa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "03e000c100f73a2f1b34301cf445048a420d171c97f103e197a05a3c26d1f04d", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6d247bf0a68ba6ff9751bae1c405b1d3e0db00699d0fde8f0c226e98db7140de", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "34424a360e92bd9572085afa26188c95ae2cebc7343ffef185ca744bcd02958d", + "regex": "(?i)^https?\\:\\/\\/btc1wyi\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c79d7f1092ae69d84032dbb731bc101435f7a6ff3c0af23a4019c6913498c1d6", + "regex": "(?i)^https?\\:\\/\\/btc1vud\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7933ede0208aee7fb20ef187f13c1ed73ab1cfa4d88f2d5233975d4c7b14ff20", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e77fdbf90ff901141cc988c54097e6e83a8d9ca3bdfce2a2457dff06cd087684", + "regex": "(?i)^https?\\:\\/\\/btc1ujp\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d94a9b471762d98c897dba861ebd6e5547ce836a6a9c5fc4cdb132a642a20a41", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ac82c253792fb22bed583f782688a1e5789bb3abe2417b6aa772cfa6f528ec3e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jaa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ff6432d5741492002f07a102b8ce6409b4588e1bc890e2abf15afd139237d52f", + "regex": "(?i)^https?\\:\\/\\/btc1yjj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5ff262534e1aca37f608149ece883957e963b91c71e2559228acd7a351a70ac1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b299cc84dabc4b5d1be592c680dadc3843d7209554aadf46ace33ebbc3e8fe7e", + "regex": "." + }, + { + "hash": "6ca843438a6b8ea72959e73b53d90b3a36a93e29409d84382028d9a0dc680225", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghp\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e69164a5c2ffec85218a93b3cccab31bed153bc62b4604d04350891e0acaf169", + "regex": "." + }, + { + "hash": "ca898482da7c6e881d13ff1d4c792ffea4c0d2e0b18c7d61ac6b2082d863bec0", + "regex": "." + }, + { + "hash": "548891613265a02fa08ecff4d99ff9b97222ba8c1e6b0c5c0e908e6abd9c7013", + "regex": "(?i)^https?\\:\\/\\/btc1vud\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a872af50efb5b57169ed96dfa065b0de04f49d7d7ef0cee93f893d7ff64b91e5", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "38300dfb9477d57cd32c274f8cf1ce6cf8395c09d8897e9ae43d1a438abe8222", + "regex": "(?i)^https?\\:\\/\\/btc1eut\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ccd2998e1531e3fa5d086beadc5134a4e59c92f62e7016c2f6e06fffd821739d", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "36a112eabc413938c1428d5f2968a0072c77c94901d2ce9bdaac484956beca3d", + "regex": "(?i)^https?\\:\\/\\/btc1wqq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0f72e05dc712050479f8f18de8090aa594936edd562822cfa3fdd7d82acae79c", + "regex": "(?i)^https?\\:\\/\\/mobile\\.xfinity\\.sign\\.dashboard\\.69\\-48\\-179\\-220\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c9133aeaecb981c769928ff3bba19753734db7ffa3b20d659400ce82b4000430", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f753f965c44f0872481207fc3d6d96c17e1dba160ae436f2b00d133cf7b024be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9c2a43af4fe655aa56f6b0d2c1a51cea87eb55b7f9761918170d1efb55f52c08", + "regex": "." + }, + { + "hash": "fc82d5e77907b488fad2d0eeaa849c8764025a3fa55ba251fb5bada526db10a5", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b4609306deed7f1259bb21eef1302cb8fcc367445110b9f6af89a180bbf53f96", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d98d1e8698754cd7bf23205ba3092078d3a53be0d429970bd317618de6a829fd", + "regex": "(?i)^https?\\:\\/\\/lardenpvfm\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a762eeb38bc1e79310a7fc8055368cc650168d63bac56b98641bd89b7b8dc95f", + "regex": "(?i)^https?\\:\\/\\/btc1qwo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "66d4ec160604e52019f68a5ce9a8d254e7fb307b914c87dac13ac111980ba892", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "afe55bcb25ee33a636c124d38f0b5eba04eb4f8e6c6badf420b39bf8095ce0c6", + "regex": "(?i)^https?\\:\\/\\/btc1ujp\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "78fd5a6e3fedc44c87ad0324d04b1819a3e2500f9a7bd87991039655aa83723b", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7e4ff8c796c891681cc4fcd7a9a823b27ea65cd6dd701e5fb34165c8c25d3308", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8a304e6aef06c1bcf52568850b7a30f71421c3e610429b00704fdb0f6677db04", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "01d67f98505ec98d5fce8a6a32585674d786bd0d078dab27700332a438cd0e57", + "regex": "(?i)^https?\\:\\/\\/free\\-10020\\-robux\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c67da599065741597de32ebc8a2a47625ecf8ac6872c4d7a4b7e6bd612d80cae", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4b587558d5fb086dc1f6cfcf0da77567e3cd1648288ba1f9999ed894db42b582", + "regex": "(?i)^https?\\:\\/\\/krasavikvzfeyvf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8eabaa6d565a8c2ef1d926157aa69e525eea12821ef20271cb170e217454e3f2", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ce7760e4cf0afbe4bab81dfef45cbde6cb3dae3861dd7f4d31b6de545ed4fc67", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b9faeb1adc8d94d715a0b6e6a17ee7fb9ff2f0c4158d04d3debe19371a98ce75", + "regex": "." + }, + { + "hash": "9029e4c97e1178350dec81d07d58e73f3df03ecbf4f8c15afebaea751c7a9efc", + "regex": "(?i)^https?\\:\\/\\/btc1ytt\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f92cd0b61c4de4c6aed5cebd5c7608f7701dfa1c47e003813e81d455d6cb5989", + "regex": "(?i)^https?\\:\\/\\/btc1ngy\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "96fdc7c44fceeec2a7c2a164240f05a772f9df2af4a71a0a853abda151cce04c", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "eedb810e7a924ee069098edf25131a2db7c1e22f57982bfc70885f77e26965bf", + "regex": "(?i)^https?\\:\\/\\/btc1bqq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9cf8700eb25949db7f88f396f08300dbc4ffac769e0e701dd227258f57fbee74", + "regex": "(?i)^https?\\:\\/\\/btc1vud\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d09e006ea856d13f643a6a24b0885dd986c76b3d6cd9ffce5f174a633ecb0173", + "regex": "(?i)^https?\\:\\/\\/btc1ytt\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "65e6fbf57ec5ac6f69a5bdccccd60762eaaea74f692f315b0fcfcfb4cacf8ad1", + "regex": "(?i)^https?\\:\\/\\/maxthegamerfululalwfhflv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uoo6b\\?$" + }, + { + "hash": "234b96053596cc5ffe96dff35f2386a455258205581097de74dcb5ffa8c66bb6", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f3dd525d0555d702a603880933fb38c812da72bfc617ae7d274fd93138328720", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c14efc390f9c0be4081dbf5b62a2f2ee631cea9d56adef104cc58b6d7fc60703", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+umd2d(?:\\?|$)" + }, + { + "hash": "779bbaa9bf421f600026a0a7bdd28987e99751f3615e0eb9f626d06a94835e86", + "regex": "(?i)^https?\\:\\/\\/btc1qwz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5ad076fc34ca1ad7670fb415cd0e760ca8d5550e0c9d48dc365e0c31a3217838", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghp\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "80f73367310e84699615c2e8b316aa792feaee48f1867c0dfd67f1a70be0db41", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cf89fa972a42208bfa3f39f8f71b92609dd3e51ddf54fc3293c94069e668fc9d", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8c36acb343f241b088736ae001cf102fdf2ebbbc8a4c00b1c5be7ffad7f298cf", + "regex": "(?i)^https?\\:\\/\\/knockouthitmanhivhh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "af3a63a71dee9381c4a1177b96dc1dfb36ab679e108400a9fdbc90d3fcef0424", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d407208cb1262a5fcc591577e050cbdf1252e3d05fa0dd53303314c68ff569cb", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ce8bb2ce7bc72bb9f163483b7ce98c592c21fdd6db0fb939d107de18865a4914", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+entry[\\/\\\\]+login" + }, + { + "hash": "ea08b52abfa05641b76d2a4b0c6f77ba269dee467f0a7241d75c6cf8abed4b6b", + "regex": "(?i)^https?\\:\\/\\/hotvideoshotonline\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d1e5c82bf66e926ba8eb56dbbaa244f5282dd349892ff6e45626858ae26fee74", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7cb31e1621757181e7af30272a85000bfadeb14a26448dea02496782c9fa2022", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0ee434b111493f405820450b91b5564a911931bdbaa4eafdc93c236045a79ce1", + "regex": "(?i)^https?\\:\\/\\/btc1wpd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f720e9d72be33206f4c14134a4c39f22cbfd18a55eee33da28e96b70b340ff70", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8ff8b20f4ad95e6bae2dfd4a15975f298c4d725a34e8f178e589ce1c9a8a5565", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c647e02c06af855f76e9f1f577ac04376dad92e9db14ca48ec8b04d5881f2706", + "regex": "(?i)^https?\\:\\/\\/btc1ytt\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cf101c0ff2faf77687fe68bf8af753adc1c62bbef260ddde34cdc3a179e23589", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "dc89c2c8d142cf58abf3e343b2163cd15d8e32f6cb85d571a155a5123390b1b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "acdf19ba4564a32209eebdffe7bb22607c0ffc2ebae8a55381c81062819fda20", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "74838446903a22c7586c8229cb6a269e527c22724b7c288f4afe11ecb42ada6a", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "aae9890aeedd2de05b6e90f6558410af6533f71fcf508a312cd6c11f2a088f9d", + "regex": "(?i)^https?\\:\\/\\/katevillanueva98\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e73a2629cf767f0601a0370e3b4779080943787154f4623c71dc78bb57beaf3d", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8cc86a8325c8a722331255ac55e7d5ce455d9eed646c7a0bdd152022917d852f", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1f08bd7b2933ac07a1496a94be98886ecc2ab85a210dd0f31fe88926573e3e83", + "regex": "(?i)^https?\\:\\/\\/lardenpvfm\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a54c9e4090ec7a6d65a57550c362f5a023f612a9af719f71c356a0b4f1764f20", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "22db94ba5f8ca55a6fb795ca3f33c701200deb5ed6f01b19d989e189a01599ae", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ae9ce16c3b413236b7c1ddc5aade39dc05e1f258ba78fa6824bff47851a2ac49", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "710efc456195f9e19d477bf33bb65fbb6ce9deb978aac506becaf86b69fbec2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?method\\=epic_identity\\&security_profile\\=high\\&client_id\\=bf038b8010ff4530d0ec65e14f642063$" + }, + { + "hash": "aa03b551913ab065f8f52ccbe2cf39cbd4b3b20929ec19cc3a413de0dafbbe6b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8ab9ed2860e746998d6f4ea1bf99eb9a1b7eeb7af2254cea7120844ea50c55cf", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "df91078c9d71c7c74c80315e4a14c5cafe384d71ea283ec3cbe91cbbd1986e9a", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5e712143325e1be30c25673cb7dcc54420e57fcb9618e3e48084650077380397", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Wr5uDY(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "58422ce987cc77c3e7654db7c837d9d3fbc33e81aaca2cdfe683b59c2e782bfb", + "regex": "(?i)^https?\\:\\/\\/btc1wyi\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "92f63f5a9f8a3e3fe0450830fb9c166ffd8e2cee48c2ed7d7b1813751afa050a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "00bd13a55ba7fa1365c9150ce038a3e0026fa68084e796669b171a66f877f2c4", + "regex": "(?i)^https?\\:\\/\\/videoxboxx1\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "76e6bc870b935b5751b9fc33119efcad5306c0f14ce8e774bf74c7d3275a7281", + "regex": "(?i)^https?\\:\\/\\/videoxboxx1\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "efcbf3a0f952205df692704bfc9eaf5f4990e6426c925ac7768e9ab631677c23", + "regex": "(?i)^https?\\:\\/\\/btc1yjj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "98791577f760c381f4f338369058cb3f87f42f4b60e61326a3a0c3ba2e978737", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gxq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1c4174700c4725274ddcda30007bd393dc9285a37bb1adc4022efc015df10f99", + "regex": "(?i)^https?\\:\\/\\/btc1wqq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e42174fa5d431af8d252844c185ce305edd51fa167475967ae1757df1a076cb8", + "regex": "(?i)^https?\\:\\/\\/btc1wpd\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "23261b35e506ceac5dd48296a2a83755a96bda09f4aae16f9dc189472e026daf", + "regex": "(?i)^https?\\:\\/\\/knockouthitmanhivhh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6be9adc4bf9bfd1c4cb42a07aaf84a7a9f350b3a263ae9daec1cfadceec1def2", + "regex": "." + }, + { + "hash": "1135070d74c9146d05b4213e7d0545335b449d7d4e3ea0213f6b95a45cc82324", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e46e2067522fa354b18ff2c7df6352a225fb3aa238bc87a355e7063bd0d95ca4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jaa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "615fe9c67419f52c1b2827eaa4d17a77e860ae21c77928953a5fff97f2e99751", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b5c7641b1aaf8bb32975c255326709055a08109ff3dffc317ecd18cb58c88225", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5f58d6b4c3f331f7c437dcf1be28b630da3611141bcfc95eba20e4fae0618220", + "regex": "." + }, + { + "hash": "e7be51160e62b5ce5a87f93cec42806d4186b8e67870d0200bd414056570bdf8", + "regex": "(?i)^https?\\:\\/\\/hotvideoshotonline\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "41c6f817fc11d86b1e76de59876cbc55c796f2ad26b47e9e7e642d29dd8347fc", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "10db55a36f72498e46970219e63947982b2600bc1d9e368f20b453be5606009e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "14f216e018590174945c7f2db4899320bf804992ef394dce945c136253373339", + "regex": "(?i)^https?\\:\\/\\/new\\-latestbikes\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "63b435a392a0df70470f5e724a49466f3dac3b3acdc4b80f76974de3f7241c7b", + "regex": "(?i)^https?\\:\\/\\/btc1wpd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e37240c8e826d2692c9fd4453931b047beb7757ae23e69673943a37f5410b886", + "regex": "(?i)^https?\\:\\/\\/btc1ytt\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8c15ad23367269b00ba25276c8ddd35dd8b12ae50c18e3d327b84953167f2651", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "78d5b68a15bb5d334050d5b69283b38562ad037e97f29228dba377d797218fff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3288cb3870409bb905d212e72c5bd5259b2d2caa7b8ba461dcfb283c39a8b868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "3bf9a03d12dc014c8b34e47d37fe3f1e47f90269f386fca04e4f36bf662a120a", + "regex": "(?i)^https?\\:\\/\\/btc1vud\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a4f603edcced60600b89e703fa560695ff2e3629e3af33e3eb3ce6cd3bca140d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqn\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "62e4edbf085587f11b43656865a93a597baf9be3f1b1465ce55db6bae20a17a1", + "regex": "." + }, + { + "hash": "485ff6d7c131968144d44a4c107fc1e34ac89c38f355cd735e3987f46f55bdfa", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e73ae1efa05d1091a4dd30c4fa5dee634d86eb3cdd36de97451cc128863dc17b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fefb2636148cfba8c808678461326ec33170a84b8a4b99e8d18792e4df3c292a", + "regex": "(?i)^https?\\:\\/\\/btc1ngy\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8612bd3ad646031b7adf2493f6c2da487744a524137cb0c7794e6e3774f7ec59", + "regex": "(?i)^https?\\:\\/\\/maxthegamerfululalwfhflv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7f68b177a9db305e78adadb3d6147eeaaf26cd2e9dbd315ac2b142aaccb582d5", + "regex": "(?i)^https?\\:\\/\\/krasavikvzfeyvf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4d134411da0406730adb78ba6228f8ab97e444556b46d0516701fa620978a36c", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "17cca2f70994badade10583ca4eda840c6a8bafc4ad5cdf28c958900f03f0789", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0aa9db9a0ef6f8d3afc6e2ff5161a9071559d71eee47ddddcd7bba5d5e98b975", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "48bb20f52f29cf0774f9d336e07d88a37256f0a0aa2b8630ba19222ca757d135", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghp\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e836930d803ee89ea56108c2c13b3d24d3b11f16d60b8d3cb183693b7ac7b67e", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a7183ab9f2ce61f78bbce5e9b88ff8ca4ecb4571d134cf1c6408831fde9691c4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cb5701f58135c05bb6bc87803482b17bf99e03227661d86e38f20a1f2b480e58", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jww\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a078d1912086b0641cf842cb9f47dc8e401db900892e5922fd48059584aaa598", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+umd2d\\?$" + }, + { + "hash": "231de857b0058fe652bea0900dbe2a493dca14f4c4d0f0b086b9cef006dd9525", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "772008386fc83610b2c9f7cd5154792f738b9606e965ab3a2c550cbdae08665e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "657f3fad740872517a6b59f6ae7f45affae8f9afa1c7f20f3d19670536ce24a6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jww\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e160e6ffe887b2083795a1f6a2ca530863380175e5334d9724d5f065c15a9936", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8b2c6cd256f2c5264ddbe13321558d945f794ccb8db813e75c02596c487d04a4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kil2f(?:\\?|$)" + }, + { + "hash": "cfdd1ee72207a82cb2706926a7a442a0862dfcc9b0e1fa277bca04bfe15f037d", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b633ddd2d3b184637234f8d2fa6bef09759c6cbd7b2a5cf64f401b6d301c645f", + "regex": "(?i)^https?\\:\\/\\/btc1eut\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6ec72ea73b2028a40b12c5bcc647de689f38d78b067e1bd68fb2bcdf590aab85", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "695054e229788d07042dc3d2b3e5a213b983cf9b3e742a3354a12ea64223cbde", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0e861329b2fee2958cd22004382f9afd30c6b1ce710cdac49b45ba5bb433b375", + "regex": "(?i)^https?\\:\\/\\/new\\-latestbikes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b43e0b34131068cc627fb03ed3da6d6a17ccb94ef9cb48f443aaca2254c9ebdc", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1ce3356a7350bb8064c544029cb57427875771576005188da3e6c3f057a89960", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gxq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3e98d9488f9f1f9741b93eb19b93add69a34d24712649fa2365109ec1fc3a68a", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5b5ea1c0e28a3df9b0289e3be8d906a452ea4c228fb6a6c03269b81c6cb4f4cc", + "regex": "(?i)^https?\\:\\/\\/hotvideoshotonline\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c3bd87c9d0937f33c56737e9204ada6b213f6dbb72fd8879b2d0420c3ff0b042", + "regex": "(?i)^https?\\:\\/\\/btc1wyi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8e3898df924785afeb12ca30f9d2b20a39a884c0e6f072c61f5a01e2a32bc9ea", + "regex": "(?i)^https?\\:\\/\\/videoxboxx1\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "14b8bd166dc628357940ae82579fe0a85ff03547b490f52b388ddee2df444105", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rehau\\.com(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "19d9d7006ed6bd9ac5520efefd65c63130f5b7d7cf6075a8deb5bfbe634839a4", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1b3f3cee5fa841b4cdfc8b03335dbed80f8de3c6441f9b28adf4bc6ce3f3c492", + "regex": "(?i)^https?\\:\\/\\/btc1ujp\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c36261082598896be7f01044101728d656267a1934b6b8e3f79ada898fdc339a", + "regex": "(?i)^https?\\:\\/\\/btc1wqq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b97421ee198f8a86d2bd7eb98219c5ae51cc3188e918117173366bc0c8bc79e6", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "47a3442dddc06e018de3876e169e13a3adb94fa19a9b892d953b053de2948eb6", + "regex": "(?i)^https?\\:\\/\\/btc1bqq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a19cdcfa243c4b9b12e4527f050bfb4621c7dd35be5543bab8f1401b68f4bddd", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "08943b4a7a29894d1ece6f1c4d5279e2ef2b39f4f9155093f6a9d682a044c045", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4f4227ad74a5a5b1530a069e132ff5a4a4c873bbcad2aaa709843f6281edd568", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e2ddf23c35488cb6aa2a3cb5815d8cd167045d2daad8448221505c282bf6b8d6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jww\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4c1e1d8e665be8aa225e0a4073e28ce3656419960e5cf8cbe56ff93ab0518bfe", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d13c5e4bec5c99db0f5f715a81a5a76c8e70cd7c25237e13a97df69b25b3373c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyy\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1a2f16ff9035bd3f0a0dfadcf92585894c9bdca22c495d156dc5e509481a7563", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "474a089f1a4fdfe5054c81db5202308eaf08824af09575b2dbc26c12373d2216", + "regex": "(?i)^https?\\:\\/\\/new\\-latestbikes\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bd192ad0d519dd0532e46eb21d3b22f8af4199f03e695e315ad331e419521a6b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ed80781577bab4447a2bc2be5be324903262fe7359c31a720cc6d3240b00d8da", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6ca89eefc8363f580dbdc6da4211d57b318f83da26fbd01ce4d6957163b02b0d", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "93a59673812143f2c9b538e08aedb36d8e985098713cb55b05e3ee5ef6d40d3a", + "regex": "." + }, + { + "hash": "9a7ba88f14f494964eb7a19738c0fb315754a02905020470d3ebc6730ca63480", + "regex": "(?i)^https?\\:\\/\\/btc1qhr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6edcfa9df590a5d0d5c85a5971ec00ba2b5a2dccc5f4d28ac03d4681838cb5b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4f25d9cdf32cb570decf10db68d1d8aff11213e7f06a06df436ef7dae8d68399", + "regex": "(?i)^https?\\:\\/\\/btc1bqq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "749a3b8c6c09c63cf58c3c9c95ad9c54818ebb049eb1ff9d2c2c244adfe8e8d8", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "780435de9deb786089c9057bf99207c85aa378051de167cd60f368420c9b0fe7", + "regex": "(?i)^https?\\:\\/\\/lardenpvfm\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6538191592b27a45a6143f817f3dec2d46a2435722a082ddc9460a89921a257e", + "regex": "." + }, + { + "hash": "0766be6fb8a589891d9474308d94513b8ccb79c57f9db5a20262dabdd26c4418", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "99693d7bdec13dedc8506c9739269891dfe40ae884516efc941f9f7fb19f70a7", + "regex": "(?i)^https?\\:\\/\\/btc1wyi\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "81fdbb96306b005afc662eb554a915d603c9fce8e41814ad5a32234bf90aa4fb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f032c23ff3acba39b28add6bddb9e18d31504fe13c5af1ae9f333993d75e7d9d", + "regex": "(?i)^https?\\:\\/\\/btc1ytt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9e9573924d7fbc3deaf7c1ab624a404e1c00aeef95d500c4477972955f6a9a2b", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "02746fbfea104467088a122770b0d7334d944d6e44566a78698185deee28293b", + "regex": "(?i)^https?\\:\\/\\/btc1qwz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "51733548259ab86b7106bfd29c5dfe435b9d8a8d298e707149fe6e22c0b2ce44", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jaa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6a722f5791eb2a63e8e794f29b3fa036b59f30b9347f8777a1cfbb47a9a348b9", + "regex": "(?i)^https?\\:\\/\\/btc1qhr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cdb014f29a8d67d40bdea182427cf8a10f76fad33987f38168268e753ebd8f6b", + "regex": "." + }, + { + "hash": "80774a9cc85eb371b5540f81292eab906bbd87db24106fdf99a14ef4e7311bfc", + "regex": "(?i)^https?\\:\\/\\/btc1qhr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "658d669578f8ae5d643ed574b6dec8d65ed7306a0fc61917036b541e8f1fb5fd", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ab9e178f13ec9d94d4c31c84de2462d1d685930523ad95595010e6d8cc3550ca", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8af4ea9a4790e9fc46c3a8c407dd47ad17bc73ebb6512e8b50fc24e01c5ec76f", + "regex": "(?i)^https?\\:\\/\\/btc1ngy\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4624ef70eae0a0530dc20e533e4d24ac32bfe6e6fc287db751d9259f49bdec5d", + "regex": "(?i)^https?\\:\\/\\/btc1owe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "06b59c3216c20a89f440b760f02a0251b9c83c96bedd5423f828baeeaa665cd9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8f64f38816fc3b8d972f1142df53cdce07c5a6aa2d497fe5577253d5476e0292", + "regex": "(?i)^https?\\:\\/\\/free\\-10020\\-robux\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fc046f73a69dc616b83e4b2cc2f335769d989b9152e675204883dbd9b18e56d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "edeba0af25d9188b3240ef7c81dad2dfd31172e6277cf39ff0fa1d605ea2e1a4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3e4aefdec0e4712130dbb58eeb7042e86b45766ca8b0394c79907d848378d806", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqn\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1a7dff5ccf136a860a7d69bc16b2bdbdda88e2a37bcd40b3a89f4528b9c98c45", + "regex": "(?i)^https?\\:\\/\\/btc1qwz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3d6b017397280e5146ab3bc08c1dfdab2546338373a0c62cd37a294568fa4879", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghp\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fe80dea768801dee87e1e999730880ba7c03a575acb5ba6a3bafa3d52db2edca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "855402dd07beb7308a81c023980a6308d460e58b27e76b986eed565ce8f8a52e", + "regex": "." + }, + { + "hash": "845da8abd93173cb23aa3a173b72fee0f8cd2bc79daa1b94e736b889a56c36b1", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bf94633aeabe9246793887123a402e1a71c81e31aa20b11b9c35246710adc9f5", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4f6415b7a94f9962c8c80c35020d76547ee56b239e3b126fce8b9a6a41477312", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "acf41180bbe4edd2184748d286a7e3e7260a8c5793aa712d745b9fe4329490b8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kil2f\\?m\\=1$" + }, + { + "hash": "2613fe2c89e1453e6eb80ade0a91b475274176494c97a5e9d5e8616c1fd4de8f", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a7b2730c461e7f697f84a0da3ec1596ce9aa219d67a4800a4c9977cbe5cfa265", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ed30be811db357a74f33f3dbf465a9af87f393bbcd35d05228735d8d31b42631", + "regex": "(?i)^https?\\:\\/\\/btc1qwo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8eab1cf7bbe92197a8025f201633f237ecbbf433610ee877f2df0fcecb77217e", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7112ac339d83ea19cc94104fdd8c892629d6f58cf224085ee137bf575b583bca", + "regex": "." + }, + { + "hash": "2fd296cbd45620a7320865125238bbbb6a9aa6ff2813cf9c3a7b452412261419", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "30ea27adc12a71e8ec61328e47ab1645ba07804a7f2494f6211ef6907a98cbf5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2dfb6875266186e327df769b379398a5d22167a8daecc901028b3f7c660f4db9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7a464b8c6636aaa009b7c9d7fe2fb1f0f8015d79da6cf8ad41a930f5046ed32d", + "regex": "(?i)^https?\\:\\/\\/free\\-10020\\-robux\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c17578c070796084dff6778f07443bdb82454692d9bd3e93070d63bf3f690cd9", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "15e4fe42e1c011ea21237e6fc9ba5498899a9fbcb69d50aacc47bd616d6b3428", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqn\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7034e3f674dbebdd5efbdea6ea69d9720e7ffff828648505a2794e9194acc19b", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "01fd6d1582156b55c0843ad160a04262980fef23461e84071f092fbe6751f91d", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0f72e05dc712050479f8f18de8090aa594936edd562822cfa3fdd7d82acae79c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appsbill[\\/\\\\]+signin" + }, + { + "hash": "a28742b96dd82ba7798c4a060d9d5f7d71467a14d836572f4b900d91df9b6522", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a7ae6a2952dce2cfd00d19fae2efa1d7e1c02bc291a8ca4ba6cab423861eb4f3", + "regex": "(?i)^https?\\:\\/\\/lardenpvfm\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f98417d06eedebb0bfbd152d7c5f61f78cd56668e90c077e3bc21d98832f1cbd", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f658bb706f9709b3cdee15cd4c676f089f2e1f12eacccdafa7ff9b07c9e7b570", + "regex": "(?i)^https?\\:\\/\\/hotvideoshotonline\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fe94fd2b43d082bed367a821e180228cd7c9a86c626dbdd21eab0a110a0fbb34", + "regex": "(?i)^https?\\:\\/\\/krasavikvzfeyvf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eb926818ff28b1681ee65c69ad2e55d6a77ae27838998eaf338902dffcb4d23b", + "regex": "(?i)^https?\\:\\/\\/btc1ngy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "12fe56498be98576eb5987854899521df884bc36cd0c9be30765c8aeb3edef5e", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3af080e0803ee9427821afdc984c918597662e5004024d20df28a36c63a05844", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jaa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "377e4ac14c08654576a35df84eacba92a00c27f0bfe2c5c93c64224844a646a8", + "regex": "." + }, + { + "hash": "f4c65c7f72724645b1f802c6fdee5ef1541e0520f4728309a0017ccade170ffa", + "regex": "(?i)^https?\\:\\/\\/btc1yjj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9c8a42e3c49c46e559c4f1e09bb450186dc8302db7191cc1c93646e22e4f92c5", + "regex": "(?i)^https?\\:\\/\\/adaccunts\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1c848c6c78968a5a75c3b27ee48efd5f496a55318002571720db8d91e54fc503", + "regex": "(?i)^https?\\:\\/\\/maxthegamerfululalwfhflv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f60633fa51a86ac03689e6c13079b1340600eb164994fdfd8ceedd56e042908d", + "regex": "(?i)^https?\\:\\/\\/btc1eut\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "513dd591eb2003a04838d32707a860404ed76d0a251bead33070790dc3914e37", + "regex": "." + }, + { + "hash": "bbbeba29a9f7486b28ab3bced809adcc475f24028b700f197d285ecb51febc13", + "regex": "." + }, + { + "hash": "6ea960e3a4a5bb5c842162d12bbda92437d859a357c31fa04ad95c66a458dfb8", + "regex": "(?i)^https?\\:\\/\\/btc1vud\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3442fee94aaf347069dbab91a8d5cffdf9d42e9c3f1ad23e8bdc4095020f3ea4", + "regex": "(?i)^https?\\:\\/\\/btc1yjj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8f64a760fde2cd427d5f9a1954ba6117c6eb2334512a40a4831cdd5bbedfd04f", + "regex": "(?i)^https?\\:\\/\\/btc1ngy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3d43a7e0018aa40713e252d3a9850f26fe2e27ff1b5cca6faff6b70c7a470fde", + "regex": "(?i)^https?\\:\\/\\/new\\-latestbikes\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "00c990bbc88254bb79e9ab9f02f1c317543728afafe1ff6d53b75cafb4af25b6", + "regex": "(?i)^https?\\:\\/\\/btc1qhr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "20888618d6c89a73a29ebf710866660975368e08dc863382f9c814e833e9f4c2", + "regex": "." + }, + { + "hash": "5b28cd877583416e66b2266ce369f4e47c9dbe6530ffc7eaf67eb62bb4e5e713", + "regex": "." + }, + { + "hash": "9b5ad6ae4bf0abc0496ad85d5ed790d1b4960381ab0c791eabef099a88a4e585", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3c8ba0c4032ef1c1c2691b1692496c33ba078ddeef74ef6366560d4aac30b1d1", + "regex": "(?i)^https?\\:\\/\\/hotvideoshotonline\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "daba663c811a5709b3added3e210f9c3592e330eaf554a8404673506a9045bc7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c046758de08b870bfb9ce4b355011f43f6bdef31376cecf40d9dd566733f83ea", + "regex": "(?i)^https?\\:\\/\\/free\\-10020\\-robux\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "485def12f333c29970c6523ab94fb78979bb6d88a14d9d3acfc88931ed4511b1", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "01a58f4227aa19147f7de0e8a755f49505fd6c45b028f5a5d1a9d1a2f1312436", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2ab1adfa952e58bf13727813baac505b67b68ae97678f633a1e47656001b50e4", + "regex": "." + }, + { + "hash": "c6e600220b7d966d2375bc05d70628425108bdd9f1fa484d39103cea5c144e11", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "efe85cf612659dc1e1b3a9afa99b8f1565f1c2ada9e9f01c13767a00d1a550bd", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8f9a921ae755a43cd9b80c2f073b459c2f3eb8b9e03c56caaf7ef132a5f732aa", + "regex": "(?i)^https?\\:\\/\\/maxthegamerfululalwfhflv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ce55e5c70d09e7e96b95320708ea50d4215e1b942f73ab767f7fbd7a1fcbd977", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jww\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8fcfda24f692dd8adf8bdc9cb1117068ede39cea75f26757ffaf84838cf81efa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f629d7164bf0f9752425db03ac2423721d762b8f5254dc1ce5a075352c5e1908", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "caf14d0461c72c6dcd834f5642f3e14607e8548b09da59ec731495b755c256a3", + "regex": "(?i)^https?\\:\\/\\/btc1bqq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ddc5fa85a1ec8bb853cc32ab439225af73be261c9898018228933ee41b6c5d05", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eda68285775121bf3de1609a016bd0e26e98d9da8b24776fe051735694b8bff7", + "regex": "(?i)^https?\\:\\/\\/lardenpvfm\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e26630e05c73f8ece2d060d8f05164075d510640ec45b533b1cbfeb4d4d6b0aa", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d6eb7dc839c403bafa1e00907802bf42627b3d4aee0f8412d1067320617ffc56", + "regex": "." + }, + { + "hash": "fb3ab76f7e91cb9ae7b64945f67419a7e9e36a9cd3c4b97d73016be0c4b49f29", + "regex": "(?i)^https?\\:\\/\\/btc1qnq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f5a0809235c5de9b82a375487ee47c39f0f6211536c23078520919576822133f", + "regex": "(?i)^https?\\:\\/\\/btc1owe\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "37859f40ca5f207c864f2e0dacd26aa1a451f1e5402941805074b5e3fe849ff5", + "regex": "(?i)^https?\\:\\/\\/maxthegamerfululalwfhflv\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "03e3acb632f890875c151c5a59e871fe8f1968dbb26cbd9c277af1cde68f3aec", + "regex": "(?i)^https?\\:\\/\\/btc1owe\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "85934e72945b50e03610f140584a6765cb21b0d98d978a88380d9a2a3ff6edb3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "50bde98c5d5906d3e2f249c83af50dc4e3fb50fdbffc38c553e7b7949934211f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ad1cf4cec9db8f88978e5591020e74d10fc38c9cf69d4a31464a6a217170df19", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cda3d28c03e339f1c1191646f18c65031ed2f7681f9e4c46bec0b71aab15fd3a", + "regex": "(?i)^https?\\:\\/\\/btc1qnq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "97582b510b8515209e176e69c0548b320d9a1037e776bd510f3de20e8939c56b", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "dbd205c3208d3788b4fe3e30c9d25e77f2e245d24dd35c62ad6844e7e149e7cd", + "regex": "." + }, + { + "hash": "184ca62e83ca1e1cd3281cb49928e6634e4691367130ce306b64ee4b479f0ea6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6b215a5f9227ddf89a60d9ba1842a54fca1e670660191309c85f5207c9cdc22a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f87dd6a95eb0180e696b74a236e6193f7c983a814fcf111677e12ff7995cd9bf", + "regex": "(?i)^https?\\:\\/\\/new\\-latestbikes\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "85595a51d9210d7d77374d9e97724b7b082e0c5267424167024b7e215379949c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "547446c77a1db53ecf7fdc252d45a6cb8376a55516a5ca18cca402325098b54b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "94fca7c749fcc267d0a23c3b13b456052b525d624050e9ef37209cf813a01cda", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jww\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e36af241d49596cfbe11b0c70ffbbe4b5a10f4cc4fb84026fe45b83899ed45f2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "abaf2c6131577dfe5810d551c318e38501d635403ea09d12ad31b5c7d7228241", + "regex": "(?i)^https?\\:\\/\\/btc1owe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d88d8c37f5f9dc37fa6da964664896296682b988660df4a24662595963727bbe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\.php" + }, + { + "hash": "2b53adec45e9b7ed5b4c3ddd69d1c7c3ead6b70af601b96aee3f51880a2c0b6d", + "regex": "(?i)^https?\\:\\/\\/btc1wyi\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a89961af3c14cf7cb94d01fd21b5e28f3ca8719f63f3835c97181c491df78980", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7eb49466710abb87b3ba921e2108a99af383b49b80ac13bf6896d5b95f4be659", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a9fe2df6c11f7472a5fc158349bc73a943b7ea0660e11ac34a841a109902ed26", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jww\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "faae98f11d73391bd3bdecab476d4a2670154cfa7554f8607bac30bee90057b9", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ae12d14e35f474f3ed4e70a8cdf19c61ee0e69fc85b63212ce9b99b7182b336c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uoo6b\\?m\\=1$" + }, + { + "hash": "0e5930a2bacbfa8955d614f5f01638e4d9923e8f37b3211c976eefa05533e10c", + "regex": "(?i)^https?\\:\\/\\/btc1ujp\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+umd2d\\?m\\=1$" + }, + { + "hash": "c76d2a3e015cfab9b0c52ce4b3ecc40172b3d4bf1cd205df8300e79c03d7668e", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c86dfe788805319a75d16cfb8f4dcb77177467bc0069b8c53448fa529920b567", + "regex": "." + }, + { + "hash": "401c9c21cc7e7abdfdadb874b7a3a2f98bccd12496b8f618df67040734336d4a", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b7f44d535b13bef966f7339874d1aced6aac58910c0b4277ff2fc54ab3ed59a6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghp\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6e418c962b04dbe83a09f1b79ed2297a11e91b1f8b47ac71c4179d6bf394c6ff", + "regex": "(?i)^https?\\:\\/\\/lardenpvfm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ec0c3cfbfba67902194de2ca11e9ad8a6039a49d3ec8195c551c7a33d10ba863", + "regex": "(?i)^https?\\:\\/\\/videoxboxx1\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b23bda665b60f78abd1515fa91e41f29a469709cd6a6086153a8b42036f76241", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "94254daa8535db58559f5aeb6439df08bf71d8f713aa2d415d1cc4b704db8a37", + "regex": "." + }, + { + "hash": "cbc0a38387b32313cfeecfb3f6fb542620089e3fcafd35647890ad00a97a08d0", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "d044bc7cc951ebede6cbdc3d74df7987a14ceb9492d14490a76f42d85c91b256", + "regex": "(?i)^https?\\:\\/\\/btc1ytt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ede96719abf91b55af03219071df31bc7c92079aa68695619e9391b572c5a184", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "076607446729f86285e040b72770095faf587dcc8d6d48b05bc63c83e57b1807", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d740b98bdafe8e1b78054e46803dba2e469553b885268f4c319affa51036222f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyy\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1af7d01453928f4927df41061b3c713067603697d22f611548e6d9b87e745ac8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "44c60d012d5b76d2a9b0b166bcffdc38323d58d72cb7f7f1f4643f6639a74e08", + "regex": "." + }, + { + "hash": "a290006f33531c99ffac87fde9b9c569751f78b23bfaa6389d0d06f4d9c3260a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghp\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9f66454b736b9f6682370bb4ef3a2ad72e5fc892766616bf2de891e35b9507b5", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8c5f15a26c61e7642f3d7bf9d50a6342617f1cf501dd2068d5a2987b2fb4c104", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f9543b85cb346b5ce08bb0b108678c9ff66f1479b51fe6720d3373e713574014", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9c8658dd05a4ce31358f88af6b2860ec26b2633d0e0010349febe3b32d4a89db", + "regex": "(?i)^https?\\:\\/\\/btc1qwo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fb3abc39c7f26c4769ded26916e7c77a7e39faac69b6dc5ee16a5fcf2a84625f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jaa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "09e2460a018a694bcd5debdcd2f6f6235c4029ceeb62a1bfaa9310db26dbab2d", + "regex": "(?i)^https?\\:\\/\\/btc1yjj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6b608ec6b6ed510937465e6e9f569d55660e2d7fb0de03261a74ad5bb4fe80ee", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2456d03faf45176939e23cc4e227c58c410c5eeebc80c7d06460a320461f6721", + "regex": "(?i)^https?\\:\\/\\/btc1qjt\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ad5095abff6dd407fdf0c7e9d749fb8fe80e26b72aa3face31ddda81700ecec9", + "regex": "(?i)^https?\\:\\/\\/btc1owe\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8cc8273ce22328cf2c1babbe86a591e2b7f05953d9b10aafc0297283554ada60", + "regex": "(?i)^https?\\:\\/\\/btc1qhr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e9af459144d0272f29aeccd73a17396a3ee153095de3c34096b2ca3239854df7", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d1375fbfe17702b041b9fc29814b0ae10de724fc688101bf35ca1d37b4a8b08c", + "regex": "(?i)^https?\\:\\/\\/btc1wpd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ca69f089e64dc31dcf1268055237e058f7c493a71a7a9c1e2553e0b8df34afef", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "da1542c1f0b369da490ba5499de0385b227a7408a3e3ea2f353b857193efef4c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "18bec36acfe5761b4ab044ac33b2ce4895efad889e9002b25e5b67bba5ee93c8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7ca9540b68d04ab638cdff2aad7ce815c5fc71325eabe70d47119701a7e6adaa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6e1926e98960c728be4740943a3b4ceca8e7e18aa8928d22aeb06812857ae9b3", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7ae3b1c3764068308e12ee22a2188e8b148fcaa1dca47ce8194411bb9b3d186d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqn\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "18d11d53273f0965c9da0f0099d1d1081d351cb8bc1e2c087a88dc9cc8207dd3", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5016b15405aeeb4e71447c850774c827358de05f3078f9ab5d0c3c519b556360", + "regex": "." + }, + { + "hash": "dc05c37ab750835084c726bc499d1b5e6d9e7d4a3db42e9a5b8595443388cd3e", + "regex": "(?i)^https?\\:\\/\\/f68i67ctwder67hey56udfwe7urevj7ufdfwer\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ede9db271633482ccd06cd1e79d5257132eefaecb55586f406bb207a14f80b2f", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b42b9d74c75b0e54e1f7c5f6a39d4d45873299ca23496487963cb7fe83b4b72c", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d1068b60541c404b953c5207caa62da0768dbd63bded862e9e1c9e8920cfa025", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4f93fdb2368efaa0b269232b1ec6f083622f929350b410cea016d5fa97260edb", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5dbf1cfc8c1b9f20415b1f076c265413f73946745a2e2d032bbd54648de34c3c", + "regex": "(?i)^https?\\:\\/\\/knockouthitmanhivhh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ijn3a\\?m\\=1$" + }, + { + "hash": "76ed17f9df4ae40ca9dcd2d96d240142a5672d0055b61cfe8bf92c0321e587a1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7618c9442b071dd1d05e0beeaf1a6f58eee9f8a17369ae3bbd21da8a350dba2d", + "regex": "(?i)^https?\\:\\/\\/btc1yjj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e399fca33e181e416ed5c914525a754aa48bc515ac3a470980c86c6514e556bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "26746981a0ba464761019295f5eda83f352f52ff42f80caabec1e4213c9afe14", + "regex": "(?i)^https?\\:\\/\\/krasavikvzfeyvf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c0d2f0db8266b2b50b19ec36c68ed80c3ec27979580ab30efd4db478a0ab8344", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "40ff109c79cb20229df2c9b7a2815f3e19e5951a87471a2786970cec1f64845e", + "regex": "." + }, + { + "hash": "2fcc2eeea2ce17677a6a649941db5084c1fa4df15ea09f26ae7f4a118b688a29", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "21ce74a6e20abadba9dae29a2f0e2e93fd397562e23bafcad6f7b6152c88c255", + "regex": "(?i)^https?\\:\\/\\/btc1qhr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6d9eb6b9de6314691e3649b303165a0db60863629601da61e8a2cd9a5332ba77", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "53b039ddc85b60989182892c8459a3775232e294095332926daa6e84b5d40e32", + "regex": "(?i)^https?\\:\\/\\/tools\\.uesenilaidaojiakoenetaddrs\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ijn3a(?:\\?|$)" + }, + { + "hash": "d88d8c37f5f9dc37fa6da964664896296682b988660df4a24662595963727bbe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+debit\\.html(?:\\?|$)" + }, + { + "hash": "465c359c3295f61b58d333d3dbfcb7e20ccadd8e6ba9bd691d959ac91f1a4fe3", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "249394b8a7463b83fd102a41f5adf45e4cc2cef7cf59b0eb6abcd57e7e44d76a", + "regex": "." + }, + { + "hash": "23b73673ac16427b45acf1404b78d161832a6cb9681212b3fdda6c977bfde5c8", + "regex": "(?i)^https?\\:\\/\\/btc1bqq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7b3832d07e9998b219bea2debd6bd3412194cf79d6a9c546c7d3462fc6a55ee6", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c39ea7b04e05eff959d1b111fddc8605aa77f8ea974eca078ce4a5a654ac9442", + "regex": "(?i)^https?\\:\\/\\/btc1yjj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c4871bf425a851c47d2d90a532b3922c376b0b5b815487e3c5669d8dea4314fc", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "daa835fc40b184a1e3284670b40e569512eb8dba27555cdb278d7507c9eb79d6", + "regex": "(?i)^https?\\:\\/\\/btc1wqq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5cd03a6ec4df107c5a9a9d986b68ea421cba5bed5d570cb685f4dc4e72e3edc1", + "regex": "." + }, + { + "hash": "b42bec4b0e63053f8b312faffa2c6ddd006cff7562341b011d4862e37a97b587", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghp\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "12e02fd864f066560de0e7b4556bc146239bef838784541f009f9787f9c1c945", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9bc103848138cf075e5609c54c11463d1650b9a44cc67b3c113cef4a53723902", + "regex": "(?i)^https?\\:\\/\\/knockouthitmanhivhh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "00314b75270efedaef4dd8eefcf64c4462832e57743e00f797a9fc176ed258d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jaa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "aa8fb3f9f55df839f95e56c6ec7dcb20ed6a88611150e3ced4e22b8ce5224891", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5d211ad5ff48492571d215f316ba665401fa941045bb091e67bc590fcfc520fb", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7ac5573948c78f98f817e87de5ec43f74fcc527e2de9cf77e7f5287fedd8501e", + "regex": "(?i)^https?\\:\\/\\/btc1ujp\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1f0acc97fbfb1904b47633c0c8bfa8f0bbad6c2a94cf9fbbb48cea25a14dcf62", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4e5a9ec3ff7e853e4dafd37afa01bd1c5c8a7cddd1bcf111b59df80d5f8b8a7a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gxq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c661bb465d53cc5f65bab6c7ca01dba5134b10d872a64f8d2b05dd72c94df284", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e4f22ce7cabcafb4a921c30c7688b8be8ae63df80d475d948c7174fd5dbd57c3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "578c9797217d89bfa98ffa965fd34070b105bdc468dc9255fe9cd8660626c219", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "45f6939ec39c69593f9e0a985055da94d8ef3ca309263602aadc6c9a276d97e7", + "regex": "." + }, + { + "hash": "6ad169fd4ff5551d769ae6e2a686413c5208853ca688cfb96031e08252739619", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5c8a74ac7b18e50da461ffb17db41a88bf8067976d4ef9109df55c72616e14a0", + "regex": "(?i)^https?\\:\\/\\/btc1qnq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "018f20641314d459e8368ac9ddfcd3b4d01a760a96641a975047f88c3fadf87a", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d776b511ec7842e9e5d6e22bc40889a5fd1b37cbccc2dc5fa055a6537d1fbb0a", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dc0b9bd1bd3fed644ecfad1d8390e944662b9a18d3da03a7f2ef662177b0999d", + "regex": "(?i)^https?\\:\\/\\/lardenpvfm\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6169317552e3d55e87068538fbc0523fce05d1637f955893b0ad9b8195be6177", + "regex": "(?i)^https?\\:\\/\\/btc1eut\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3641d29d612ef16f2d94cfd33cf48af4806121346b8f6db9d88f2dfe9dec3a82", + "regex": "(?i)^https?\\:\\/\\/btc1wqq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e9782b3bb5be7bba75a85239cf421d4611c939e5e1fd6143caebe5d88a23a978", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "711f2537ce5aff42ecf3cd5d0e234c4c486e3665d33b849739abb34929174556", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ed30c2c9cf79393e3b4b1cc59ecb16cdbdd98c076bdec8e8bf591754b2f7d1db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "3ff70688612645e6af9e81c8d6777ef39b59c74ddec878027c9cd30f38484ea7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9ef12b3105097b54cbcf895887c65b865eac3a6156d6360ab40d956b5f2d5538", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4d40020db6d708c1501244e5b8d33a598745533f9035b0934367040b7a4737a1", + "regex": "(?i)^https?\\:\\/\\/btc1qyj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "59a1230448410f3a561323cc7111e0e770dbb78e68859e1eb07e5bd5582455b7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqn\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e00095d5fc4de6d75d5af5101cd996349fd620676afc7bd5fe662b443ce40517", + "regex": "(?i)^https?\\:\\/\\/btc1qwo\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c8a4635fce390c371e0345c89ec0d5b1c5e08890d8114d7b467266613914cc93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a67b4fb84a1bb6c254d8a4195d225cdcb838db7dee6e0dc9639cc0e119db0be", + "regex": "." + }, + { + "hash": "a93c2022f992a90d3deee600aa2a519e5828552484a6fb60a6a79cfbcdc8f61b", + "regex": "(?i)^https?\\:\\/\\/new\\-latestbikes\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6aec2f97e0299ec2c4427f06839eca6da714bb5b1028c0b9cd9d3af64d046e4f", + "regex": "(?i)^https?\\:\\/\\/btc1wyi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8bfb5b0dc35624b91829fae301867adaa2388887e71d6fb723430e92977dd288", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "106acfac3c95d1ae681c085cadeb0dc077ecbdff57416f29e6288030f32f9eea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b23dd837a8b40727ea1d61382d6193c2ce78174c04bb08de12d28b40c51e7063", + "regex": "(?i)^https?\\:\\/\\/btc1ngy\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0c3250225577271e2f37b41ae0e7c0d3d7ee9a5549815cfce5ece59ad826e12a", + "regex": "(?i)^https?\\:\\/\\/home\\-103386\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c8a4635fce390c371e0345c89ec0d5b1c5e08890d8114d7b467266613914cc93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "14b2f090710cd7160aeb491ae907e0397e0375564e1c78b818cfe0691590be9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7642c9eafeaec39b6e7ec08710fed3e8d040dc67406307e4b985abe82962f18b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f768bc6bc47c94be8cb1604fce787806a1b994a6d9df0ad18231705cfa8e9b34", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gxq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c530e547dbe4c1a40e7123a7945fac616ec302a103628b5e4e91daf6c4d4a680", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b9eb1d4621a45beb4240ea54f0e9656a579b7bbeaac7e392831130e07258be8a", + "regex": "(?i)^https?\\:\\/\\/btc1ngy\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0dca1bc7434a775fc9367a4a2c9890b410a488ab94f1f7e2f3f43886ed5ca0c3", + "regex": "(?i)^https?\\:\\/\\/btc1qhr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c8a4635fce390c371e0345c89ec0d5b1c5e08890d8114d7b467266613914cc93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ac70b158b143a270e1e0874b024d2c994530548570db2ea12fd627035421dcda", + "regex": "(?i)^https?\\:\\/\\/btc1wpd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f8228505629063e90273909c6ab8e88b1ed771ee3a88a5e25759ac46b11a1e71", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gxq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2bfc4647d44f55ba58489ac83e7ea95f0a639789d1b9ad836e3b79718f2e9987", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c5a8faf09aeb73cbf7c6aaf5bd71d476c1bd23d998573227b01177fcd3d7a574", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f4a2272f411c33b77745315ec8a1571c6389f18954a977e9307755dee34d46e5", + "regex": "(?i)^https?\\:\\/\\/btc1gaa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b9d4273466fe0edfa5141cdab5a411004b918db8b2c5fd1b7390045063b682f2", + "regex": "(?i)^https?\\:\\/\\/btc1eut\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a7182a3c037a4f934ab1b49217c85c23f5ec053feacf6a3680053bae35be34a7", + "regex": "(?i)^https?\\:\\/\\/pub\\-a652f10bc7cf485fb3baac4a6358c931\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "be38b584ce452c364cf2788d979b03c11945c4fe7a8adb0df1b44ea6982ae915", + "regex": "(?i)^https?\\:\\/\\/videoxboxx1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "beab600ca5f77cb485eaa0d562fb40b59f61daf9c78584a32f7004a46ddaa7f4", + "regex": "(?i)^https?\\:\\/\\/maxthegamerfululalwfhflv\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ddc0aaf2b7de30037886f8f4a318741c76e69fffcd78c32630a63abcb833c406", + "regex": "(?i)^https?\\:\\/\\/maxthegamerfululalwfhflv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ijn3a\\?$" + }, + { + "hash": "ad045b38c9b95c97fd290e44f8f54166144524b045045169b1f4126d55e4aad8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cdc98c95a736021d4b94aad73ba5305124f8087d46b894a0b69c851118158b62", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ceebf2068df060c6ae09e46802d05a9de7d99d2046459577e61b88aceff61e15", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gxq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "52a5d61a3cbb684c057c9218ef85542b0cb69fa9b78b23f0486690d04dc9b5f1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "aa0e83b9113f8b5927869bd74aa1af6c76ecf7d31580c241ec71c7235e1e8613", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ti_dn__\\=3b243f7a\\-2090\\-4e4d\\-aade\\-88117cb6c726\\&__u_idz\\=(?:\\[|\\%5b)\\~Ind_ID\\~(?:\\]|\\%5d)\\&__turl\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+bafkreibe2byoirmtx6cet5p2zjtgpsn7i7urlzsnyuib5kuohoblbdyraq\\?allmoneyin\\.html[\\/\\\\]+$" + }, + { + "hash": "1bfe6023d158b5efb47018daafb5474b5023f8b61f1a3d95e9c9e031c053a63e", + "regex": "(?i)^https?\\:\\/\\/btc1bqq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1ee51d37ef8c40c699d885dc81346a2797061fa5ae6c543ae1bb3f96273f187c", + "regex": "(?i)^https?\\:\\/\\/btc1qye\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8b217b6de392993df25ad7485b916d37c82ac58ca3bdc0cb1efc66f86b46d0e6", + "regex": "(?i)^https?\\:\\/\\/btc1qnq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3c0aeb1a0ff0ed4026466e01cb80896a309c57d2da6054ababa9dc76bc270bed", + "regex": "(?i)^https?\\:\\/\\/free\\-10020\\-robux\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "058274e25920a0806cb3b5f2a0326a7136ebbb4600b42c427f0c563835af7bbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bbn[\\/\\\\]+ahopm\\.php(?:\\?|$)" + }, + { + "hash": "035a7f1c01700515ebaa8736e78b10a28ec9ae2e8539864dfac6c413d9249268", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zys001(?:\\?|$)" + }, + { + "hash": "c548c89c3ddba81dd7650a5f4c6e7462cc8a5ae892ca90d321ada83b1ad1dd4e", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7ece9858d095fa923868c19260fbf75bc8a6bf933e50030b9e71547e4dd9e876", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f984256903df00bfbfdd200edb33ab82ac16b61eb52a45eafe56c904d278dcb4", + "regex": "(?i)^https?\\:\\/\\/knockouthitmanhivhh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "490048f93ec6b3d143a28c97d6636847ec29f7fec8da00353d022399595953c4", + "regex": "(?i)^https?\\:\\/\\/videoxboxx1\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "315a57b88aa9ec418cbb3e48ea19c86eabc912444a7f08d5b20eab6a9dd79853", + "regex": "(?i)^https?\\:\\/\\/btc1wyi\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ae5345e467b87346b9492b5b7a9d62c6be39a8facadb9ed32bc68b014e47e471", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "93d2aca63d03deb9ec70fbebac89222d567e65a7528561622e0345c53e797652", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "adbe86be2a126e03314ed46b8a784cf616f8280859b15d9c9ef71b9586a1659f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3cf138043123b6356df2fd7d7ab29946ce72e39eb25250287327a0eef74ae5b1", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?zykar\\.shop(?:\\:(?:80|443))?[\\/\\\\]+z[a-z0-9]{5}" + }, + { + "hash": "9840bea0ff1c161f2ae1ec6b214b71103283ccb0654c4ef42fcbefeafa445790", + "regex": "(?i)^https?\\:\\/\\/videoxboxx1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d157ab3af7f2a53de6109d47b11975207b77e0f4f8f961d5bd8ca72ab3f6050d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ee686bc58a7af598591c439737a73530c13181438b54b860702e56cd205f6502", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "50e0e6bde13c47603ee5215c677bce2693a0b2440907b82cfa7af2cb6a909123", + "regex": "(?i)^https?\\:\\/\\/btc1qwo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "899508cf3ee2462fbe19ebf8cba6c8975db0b1122d3066d8fd23e99af81feb60", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b6331f1dfccb4b3876092a156e45f6b30f7d4d0999682bb7f968d18f6cb18f28", + "regex": "(?i)^https?\\:\\/\\/btc1eut\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f62e375c8b249e373167a5590c7eb41609d286fac1d752c80cacc973a473e900", + "regex": "(?i)^https?\\:\\/\\/hotvideoshotonline\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e56f51c3cd682bc169dba09a95a1d95f2e2bdd104e7e7307495e499f87a1e1ce", + "regex": "(?i)^https?\\:\\/\\/free\\-10020\\-robux\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e3345a6f5ae88fa136e97c510f8771f2d1a248a8a356a697f5d5e4921d21210b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2d9060128dc94d960cf2447c149e2e4f32be2cbd467ea35874dcd0a3e2a0fe08", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jpp\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "42ae12be3a07bc56f4d59d2c5a0a5ff508aa70eaa26382c059b052a9fd28218a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4e6ab108a82e17e64f5736c209910107b38c6160636e1773d9d6b635421c7b85", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyy\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a6c9d234b30542bd2ef9169ecb3a57c1a5e7a622c769c85e85e057afe4b78a1a", + "regex": "(?i)^https?\\:\\/\\/btc1qwo\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9c058f74fd0bc6929b09a7cca19328804b118f427c7e976911ac2ddd6c54a88d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gxq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "277a49d84acb89a3e2d67a2fce0bded69b20c5e3a837f8ecdd4c4269d2f34dc7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "09587ff150187950168e5c933aded46b7b4fcda665e48694cd2545cefb34ed51", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "68fc2d779464b607be573aaeb86858081ba3db0a13d242b2bdc2a913cb4c5a27", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "baf57ae33f73028b24560e93bbd5ca09aa3ed93e9d8ead7f1e91fecc38feeab3", + "regex": "." + }, + { + "hash": "85245093a73f39d3f24f6a0262c750abd09b313947a2be6a66367055bae0b6a1", + "regex": "(?i)^https?\\:\\/\\/lardenpvfm\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "65ab33a2d7c370c7e8c2d1b359d74fbcb6ea3aa1fb082a258556ebcec601e2d7", + "regex": "(?i)^https?\\:\\/\\/knockouthitmanhivhh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "de2ab53d84da90758830121da82d42e539e381688459becb49a35ab8ce7945e5", + "regex": "(?i)^https?\\:\\/\\/btc1qrg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c989ae1399758a5dc89107d68aa59401736c2fad3d2c14b6765546a6ddc49f49", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fb58f5f806f09cc316c7943b5e06db357834b1670d22204cff7124cfc41fe43b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b579469693f34f054eb8b0ba9de106f4f43a11f6b73248dad713c75b8262d48a", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ed4bfc7a88804fc716d5d33b9f4639d972a19300bfaae1c012db47d6d3e6c5dc", + "regex": "(?i)^https?\\:\\/\\/btc1qwz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ffbdd955070cd9e4f67b277d6b3d162013b58afa130d4f44e26761aeff7f6012", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "508efd01b38f02690758f3036e0e4489c901d46157fc36427cb7a4c066341309", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e58bd4925701dd8e2004ab993c31318b4ae5f31e502e01f1a2b2db2f7fdcfe8f", + "regex": "(?i)^https?\\:\\/\\/btc1bqq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3c6a379cddab194af098b7aeb2b0bfeb09888282d07b4d9a9de1bab1bef85074", + "regex": "." + }, + { + "hash": "7280d03cebe27f0811ee00e477a5b17830d41085165dfc34f1cfa221b2b3f518", + "regex": "(?i)^https?\\:\\/\\/btc1vud\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7d8f6f2f99a6c7dd421cfeac9f141e92c0cea656df3d8af04d1c88d3aa7361f4", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?ruvix\\.shop(?:\\:(?:80|443))?[\\/\\\\]+z[a-z0-9]{5}" + }, + { + "hash": "3e9cacad3a635d2b0adc5316a3bd3c088d9e2f5348888b4e07e738efd4711970", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4c258cecbaae48211ac940a340dc40aeea1a9bf0216345b01b38b02a1ddf9efb", + "regex": "(?i)^https?\\:\\/\\/btc1ytt\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9fb642b50bcb14131ebc920220b87beb7e9919f55d2304926a3e7b9cb95a652c", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ccd848a1f24fef11557c8727ba92063ee38b92d75fd1a359ce32959d45a7371a", + "regex": "(?i)^https?\\:\\/\\/btc1qnq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2645824515b297811dd894c378da60e021dfa2a33cbfbb8ccac47108013d8864", + "regex": "(?i)^https?\\:\\/\\/btc1usv\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "03c0ab6603df23f44dec0ad6e7369e76199909fcec312da0194b4eba87e5122a", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "83ec3ee31e24fc792cedfa4c7272207469d4db2f4a46bb3ce0942a689e0f0cd9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jyy\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b69b8de14a0c1ab6cdf254f184976ac6af2891c82491e2a09ef120bf00c0cebb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jrx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dd9b0e2ae2438ce7a83cee3b8f5a431bc97b1267ea37e5d35486453a432ed61c", + "regex": "(?i)^https?\\:\\/\\/dominatorxelgfiq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0fecdb6a01ecc2b72cd49014b52638fac2dc2a71c1e7ba878b7925911a0c3b24", + "regex": "(?i)^https?\\:\\/\\/btc1wqu\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1bbdae7e480de6af99169ceb09fe5a22b0dc0434d3be5c25cbd081953383a263", + "regex": "(?i)^https?\\:\\/\\/beastonlywinsmxdd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bef4ea05209e482dd32b44a965eb8708768c92cd49b857457135ab92411a390d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4b228016c02cffce2c41fb45f470ccc876bd48ff0692fbaa1f78b6e32420f62d", + "regex": "(?i)^https?\\:\\/\\/btc1tkx\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "904d08adcb148aa8033d27ea9d08efe68c6b923b4fb999ba5f9f4980a317d508", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghp\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d07eacf6e9e4259ac8c53e342ba389fe551906916388da76bdbc512677cc0361", + "regex": "(?i)^https?\\:\\/\\/btc1yit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "33bb8471e438274f51d87f0f57d53751837681f44f8152657b87190449ce52cd", + "regex": "(?i)^https?\\:\\/\\/btc1ngy\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8e229b031663b0c81612d7c2eb9626797dbcb1aa61b7aa35bd4177817f1fbee6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jbb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d6481fcd5ee3c446b76ef35cdf3eba99ae9d33a6989a072e99bacc53f374597d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qye\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5a948af43015f07e5e9215fdb458116bedc870a45023430f93e4f0477296a5af", + "regex": "(?i)^https?\\:\\/\\/btc1wqq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9e59b40fe1caf503b5aded32a40f0b2727f1c9e4d10b550ca0b4ed0a4e6f4f55", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehy\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d624c17303c0844ffa501908b3136e2d8fc801cc60fe66b15cba5c322889dad4", + "regex": "(?i)^https?\\:\\/\\/btc1owe\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ed30c2c9cf79393e3b4b1cc59ecb16cdbdd98c076bdec8e8bf591754b2f7d1db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7091426ed3a8dc684dcb330c20449c45dedea730941c866a3ec25d53d322dd40", + "regex": "." + }, + { + "hash": "92d4329842af49e9c098b6e8cbb57c365d694426cce3494d99560b614f012234", + "regex": "(?i)^https?\\:\\/\\/btc1rxq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "88fc1359873319818ee7d782f2de2bf393f91f0d3dd783f898cbb2ebd39e408b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uwa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f2b93b5f1ca7122d8040edc056e858438497f324239489aa547efa80836cbd13", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "49322756b138257863282af7d553541c5438c7c341cbf88ad2f488363c39aac3", + "regex": "." + }, + { + "hash": "1c5124d20b6c9f9007a3f18faa1ad722d8fd96506bacbd2a4bd6191ae5242978", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zhq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "90108a5ace25dada93adda333c3f383b906fbad1721a2c0099beb5a3fe5497b8", + "regex": "." + }, + { + "hash": "bcce9dc48babd673b6310ee73c84789c0029ea883fc728f22ff7cd8b3c73f31f", + "regex": "(?i)^https?\\:\\/\\/btc1yuy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1de59b2b9012ed43c6ad4f7f2327891736442b88b94ebb9ba038b011e4b40a86", + "regex": "(?i)^https?\\:\\/\\/btc1ghp\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e7a62cd70f33d9bb54f16a81711692ad38e05384c7df29957edeabf015073382", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b83d3c2f5abb5d3b813af26a10cf9e954e56024bfe90368fe2734a3013fd574d", + "regex": "(?i)^https?\\:\\/\\/monopolygogift10k\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3dcdade8f757cf208da18c190d2e7f01612c9341c5f404b9d1dae687847882c4", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ef75e2cd8c20d19e31083c878c424df3ebf02f56f80f66e8a57aa7a5dc84cc66", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "21178000b097856eb24b1220d9e32005be4dd21943ee7adc4d318a03d1dde932", + "regex": "." + }, + { + "hash": "b82532df3f7bac31657eeb497f881bd05f614a20574fee91f343423084fc2efe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1355b52b35a26966f01aeb455a6a9e7a859d6fe2238c6548d55a61419005582f", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3ed5b8b3376840f6db7709755f2d2cd55af1b16cb632da6c4d36a6d363ed275d", + "regex": "(?i)^https?\\:\\/\\/cstauwzf\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1e465049ae2caa5b5d6494e09881423bf8e7488895115478b94a2453ffcd6e08", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3111ba8ebe01d92b2c80cf2e44a55b558c947d7363526aef65e2e890f7d2306e", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "581bb09ac2605d02e383495dec4b676ef97ce9fe692d3d9f5ff625f08df6e298", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9e7e654f0584e801611bfc0808df93a8f435ecaf6f844b224da6d944953d4fcb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0cb380cca27d7b2e8bd39a90a16088ac1b8da5121acf4f747f2d3a138374b995", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "049fca945225d1b3a9b5f5977b21e4eb3151f8090e5de1ba76f0d2f16a2a7ad9", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "61ab36deacb6ba572e823ee860c4f5112d465a79d8bd15bd61ded64a836b996d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "39f0a37f66bad2cb7c48d196213faab2bf18319a4ee19f128fc62e4fa69a72ce", + "regex": "." + }, + { + "hash": "3d7d90815ee8265c2328165f99e42a6d15585eacd3643f3f0e47e7b809ce472e", + "regex": "(?i)^https?\\:\\/\\/btc1qhy\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "dd51200c3472f4e3a90233169b8a3f6055ed1df77cc5f67cc4b2c3ac262611a1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e55bf970cc5acb957c423ed4b3bfb59a6c73d38d409ac0ee619c0363dcd27be7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "52a3f30971a1c4d3033f7418260b35bdd4861b380000ba9f21f027c31254c5c6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyy\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0e95fd58028600c84cbb4b6de4cf9b2eddb4aaa05e10e9fd344e803fe4bd2231", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b1bface61c05a4dc7b8ee8fa4a6d63547cb5ab981ee9430bea7f3f9aea24ec52", + "regex": "." + }, + { + "hash": "419a45316974b47b9eb1a1369ac5e94f3dcca1e136578e8424734f43a24b49f1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wnt\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7ce2222dd4d14358288efb638475a8a3bd9d1d5c8b0de251c570535ffa0f6e22", + "regex": "(?i)^https?\\:\\/\\/btc1qny\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "45af506e93198da730d8ba081b74c58143968394bba32b9c4a1174832cd9562a", + "regex": "(?i)^https?\\:\\/\\/btc1qhy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "caf10e0ef9d30fefca84561a9f5404ee6e3e3384ae960f703da63aeb275fe5f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "61dee0aaba424b035a486a457573be4165fbdd47f8f3f4db2f41f4ed2bf0f6bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ua\\.html(?:\\?|$)" + }, + { + "hash": "8d759036e2e50dd570611eb9a7149a2dfd9482f4c6cc737ee5f959a7ad4a827a", + "regex": "(?i)^https?\\:\\/\\/63838892\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "72afe4d5a8d3662fad944d94968a4a67fe25edc6084de1f8dcded0c4a3b0b3f2", + "regex": "(?i)^https?\\:\\/\\/pub\\-8602735cf1fb4af5bebca582d295b468\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ee643f43616d8567e74753112849d48095becfb6c164815114c5ac25c695ad27", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "abdad8821c5cd9d8459a2b97f19986a347febc6839947f4dad040afae910e686", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "66923741ab86660061f85cd723dba6b79c589b854a630ba959377f873da1e4ca", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9421b33ff7952e8b1f40f6abe1550da3a32ba6effd71972cd6f3190c60ce9f47", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "729bb5d5db4d234baa3e5e58a52e6d00f601e20af25303b95a783ffe760f4211", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "fe802493996476b81a6bc8ab77495838cb35d269885658699686b4d4e41fc635", + "regex": "(?i)^https?\\:\\/\\/pub\\-84b4e32be1134f08b11fe0cea5d69436\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "11de8a537b0b93de9df9e444901ffd999ba299341a9812093e465970cc9a383d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "252a6b0e6ead034d905876e7af7b5c70ae54f4c13fc9b8da3e92ca2c42c65d3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i64mk5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "faa2d987ec2e83f14f8a1f5f0645ee8a34ada310e6a4df6101d2b76973eec1b4", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3572cc52b1d716a6250e41d121481207edef358d59f18bea411d5984b5309b6d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "147361f663a34d947efc95a05c4bf8da08a8ff83150185dc539f268849fc72e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhr\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ca4bc13bcab1d4a0ffaf71dc0da4ef5f882657e6e2fccc56e8e9f426d87029d2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1aa53a95d1c51d88477cb153cfc3c31d6f6b00ba808e1738836f410c61e2c235", + "regex": "(?i)^https?\\:\\/\\/btc1zhq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9a6879e45c5a805fecec1b474b760023b2a3f2835373159bdcd0017ec4ff5675", + "regex": "." + }, + { + "hash": "607a6a76a2ee2d9d934146485fd27ae6530e9a539fcfc6d2ce711259a37f0965", + "regex": "(?i)^https?\\:\\/\\/pub\\-e97a446089a347439ddf17fd6e6b3c74\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "47419ca6065e11cb9f9c7a42f8203549f8537fb4f8bff51353afeba3cd825fea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7af6b83ee49c605c04bcbb33650c9d7be2b7df10eea7ef67b5125dd07a0a16de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nlgstorage50gb[\\/\\\\]+index\\.html\\?session\\=260b77ade3b69099da916da9a8270f00\\&fluxf\\=2267209272141884670\\&fluxffn\\=2267209272142502442\\&ffdomain\\=pixelinnovatepro\\.com\\&category\\=default\\&firstname\\=\\&surname\\=$" + }, + { + "hash": "46e867eac02d8e7509f5568349044167df2bb26ab98af34c096639bd3aa2671a", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "35d15d611f68d2c128c1166e4395fc06c5b84324b4991c3502f22e5da3f9ebb3", + "regex": "(?i)^https?\\:\\/\\/btc1ghp\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3511f90acb14cd8362f91857949b7619a0be5ddd28836b38ffcecf703ffd417d", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d07fa09cfb1eeaa628b0026fff26438078ff277bcb1a159435277192e86ef941", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wnt\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "31576fea960ed7c0abf6967ec31d4d8b91a38958687f16c0fc1b1d7a3e79d8c6", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3c04ef291dc928cd43070d7d36f3879490070dcb4d6d939eb6fbb0d62cef6064", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ff5b5e491fb221f0431b3c3138c8ffa68668a1da6eb9de63cc41b50f9526d711", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a507ae0c8a1fea985289576cb20d2882cd75c5f4c8127f671eaebd45a0fb4dfb", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "73867a844c6f732e1edbeb4238e3c215f0631a58e1e7a41479aaa9d264565371", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "04c89adbc702c55c80068433c0340ad969e2827d3925c8c519d63801801504b1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0e7fc709e57b7c41f141ee909900197ae8eca3de2cafb22aaa83445ab5d3b164", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f9acffbd30a8cfa6362a126891431873006313901809d277b8594b3dbdab8fad", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4cc7750c085d145a6a6b36cb3d23fb0b67d440f0120ad1eacb8b464f10ee732a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e1ec58d69301f9a9b6417b446a713051e179aaa4812d1ef49838a9d2974916b6", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b228d9ee1c8c996dab358ba4388034f392e2319bc809afabee8775d746d88ab0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "14b07113e82ce0b79a5e94c067d967f8abb878f711080e9e456cd0dbc2bccbba", + "regex": "." + }, + { + "hash": "1804610bead26bbf8b710e3c917e9f8bed577eee2bae6a0e8148c9d6ba2318f6", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "80d84b0d9a7bb0dc6911629dc5ad685baefaf1dfebef69cf355f807b9f0f5e95", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eyh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7111b23ed2287178a069c8f266b57cd39fd5ae719f5dddcb4f3dc133e9cc01d2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0da30c93ce8dfc2d3bf17f5dc822491127eeef1c2e3a1dbb91ce1d1b3c222bc4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zhq\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c208943222e5782e330053b391879e6a6b9116d5331e4c792ab3e92bf4fff7cb", + "regex": "." + }, + { + "hash": "c9742bf6bb39b4873e5914de2dcbebfba430f67145ae31be26d8d17d54885750", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "239869792610e5991d155819457f0e877053b2f6509fccde3ef2a89db752d9f0", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7d4d724e912da5dad7673dd81f485667e88397de3981b96da091d3c29fa45bfa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "57346d5b9979b0b20b4a23c26e42220b040d08b3d52de983290200bcb4a50b20", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eyh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ae82adfb9face95c4e1399f22b4510d03af35201e5e672cbae3e017681043c56", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "26c725709bbf2b35884cd6d056d5cc9c8a29d4045cab017f315005092bd5a643", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "437d5626488be0476a06839e372272e8a18771af2d5ec73bcd7c40cef723819a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a7e44e078b0acff8db6873ab152dd406ec9ebf9d465ea02f4ab3fa036a5aa562", + "regex": "." + }, + { + "hash": "8bc5dd438833418610b6e37097e282b440ee3d9c8aa96b2aa45b491296cd597e", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "70bde5dd054ee4e04ebc95b6ae872f7c080ae5e4560338a69603fdf346692e02", + "regex": "(?i)^https?\\:\\/\\/btc1zhq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2da304243ddc1192e867eb5f95971831436dd8a4c2a1df2721c9f4004a21a346", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b8ef83e75d37faa4d9f871ec912644400fe091647e09465dd640731336b69579", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4980618cfd0776c3a9461b766c10ef70e27f47192db68e646e6d80a72672de20", + "regex": "(?i)^https?\\:\\/\\/pub\\-e2bf1d22796745b3ac84e7cc56e75024\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cedb7ccc43ee6cefe35ffd6c4f20d4818c0b192211e99ae2d7a7103b9fa705ca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6d922cd818a700d850dfb36c5ef9cfa4567df94628d767d0d81fb585f8efc54b", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8ee0e4104789910d8f3d59515aee5f7b06ada221322280c9de8c217085a6f963", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1fcd05298e39d5a8430f768bba55ec23f0da40a5e08ef77357db21785b0d85cc", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "904b525b8e23cbbabff6b91e2f41dffeeb200498b7b1715b28f9c75b36e40713", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0e4b0b7ee9857599bca073da7a973e5f4c079f878ccde17779ca97a2cac6fdfc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4d442dca7504a4f002978a04a6e7c9c44c2cc39675363f6ab410e082447a19e2", + "regex": "(?i)^https?\\:\\/\\/btc1qnf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5ee0a1f1e653a8cd3a2d24fd53e48c1182372a5374415dd5deab5e7a7a39b0ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9073[\\/\\\\]+entry[\\/\\\\]+register12332(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df57ce99183185fbf544bcc1d42a4f04b684fb9aafbc701fa9b40229b6f090f5", + "regex": "(?i)^https?\\:\\/\\/btc1ghp\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e160fdd9629a692b8937807f0eeec3c9e0926d222f319b3e2d3399e7b2f16bc6", + "regex": "." + }, + { + "hash": "12808f1571c82a95ff1ac2d8123633942a6da1561f8f715ab12f6f3e8f1bfdcd", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d5a261a3ed88c3be9cffe1e62660f7ce9089b2fcc1d86c27fa7f61f28b3f14bb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "787b32d2daa125e0ab280b7d2753e11ade38ccadbde8a1d0a856a141507b4551", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ed6b99cbbf57cd3aa824a8f9fd2a505de5388f76571dd73b88a97692403be62f", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6dea5bb1283e7fc7f3f9de3550a5a1a274018348f168c0a259922e07a901af43", + "regex": "(?i)^https?\\:\\/\\/btc1yuy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0ed708ee9c08e6dfa2260a96e0b61975478062bda655850b1ad89cddec9ec0d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uwa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "71fd8d77b76dd6bd0d1caad522eee1c01077bc6bf372b45a46a70165f82915c7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uwa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7a35bbc92dcdd1bfd7c198742e7b1ff583102d2b603c1c587ffa32dda07faf91", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtt\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "348c1b252c03f1ef410c581a55e9c1a5a5b7b7976fed5a5ea6583ba14e7b06ca", + "regex": "." + }, + { + "hash": "05b5187acf063a03027ba633716c801d71b9fa91f5c0e932b97a1c560d77c08e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wnt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "18808cd005abac46eb375eeca9f8f126141531eef96fa7a46f60bfaf12f28a46", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ed6b16174f45dca73c60c36126f1f3fd30df109fb24849e6994e8fff13a84cc1", + "regex": "." + }, + { + "hash": "cde295adbf0fd54ce91248a1fcbf39d0d6e2887e9efae0712ad87a19f0554249", + "regex": "." + }, + { + "hash": "f306b6941e396b62063ed059f2843b2ff09c69acf8cac852aaf9a854f7f16498", + "regex": "(?i)^https?\\:\\/\\/btc1qhy\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "37f9101e9629f79564fde92ce8ede23ccd9d437a7f017d54404ddb43a27beb50", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "074edf17dd723247102de17c2328514fba1d3aedbdf56c10ac9502b112b59504", + "regex": "." + }, + { + "hash": "1a7ff8d0a5e3b247a74dbfbfe11166574abee6fb14d906797481bfcd306ed0c4", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "daf1677e3721e9af3731b200396f8d62a3f37bf17dffe88bd60672cc8af5b345", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cadfe79ebad46bff17f3862295f05715e280891515b622d4b3658ceb615d48fa", + "regex": "(?i)^https?\\:\\/\\/btc1qnf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cf8df25e1aca04f1cecfac64b3168b47876874f18c24a0fb97f29bdfe9559dec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cdeef28069e7d460461a292c44f983efada32de605a0478e837115fa9722aa7a", + "regex": "." + }, + { + "hash": "30eab17f69a5225dbc40845f680237881abecada97344dab83b0bff58079f4c6", + "regex": "(?i)^https?\\:\\/\\/kd513\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9ef10bac5745a8cd446555a251d56e736d1a8385cb161da638ec851fae6b74ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a4c784c0e845a989bf76d2594a2a362c0209ce55b9fc7aab8f326fe28879c631", + "regex": "." + }, + { + "hash": "a2f261d7087c64314f098999d4ded43e56a7e52deb500d5ee74b9a4f0f089293", + "regex": "." + }, + { + "hash": "c2c2909afae4d5df3e8f36c559a160c255d18275bea8f7173e3cb8ac0a5f1e99", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4287487c47d9f42d4a47bb9dd3f584d90720ce8156616bc4a6d4f446b236a67a", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c9136b07b7168f1a68fc4e6bc7115ac54484d6813c5ee6701be950c11a28ab29", + "regex": "." + }, + { + "hash": "1a28f649e30b67edec270eece11f8bcf8b779d6097c970750f68f13a6149132b", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6a30527b988e0d0c1e533b23eb1e53eadf5fe67b78ef377aee4d9e95f0dbc7c9", + "regex": "." + }, + { + "hash": "4ee3b29320f450f694c5b1e07724bcc50e93e34428edbc047d4a0459279e8649", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "30c7e4fb7b97da30256937b82ca626b397f1977f32dc054e326f60ea7a969c30", + "regex": "." + }, + { + "hash": "53d76dafb20e3d9b399997b808630ecbbaab4dd983ac82bd439131294c476cea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1dd9109540c7cebcfb930b39bd0ff08f807e4ca0e1d5007c849fc5267ab58db8", + "regex": "(?i)^https?\\:\\/\\/monopolygogift10k\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1d83384d2589b6513bdf13c8218551d838003f8291392a30b1f44e77133db830", + "regex": "." + }, + { + "hash": "4cd8ebbc3d76daad9469ac51b492e861d673086d7459cba78b0b1903e832c8c9", + "regex": "." + }, + { + "hash": "9a444c20424a5ad244430f658b004d162ca6ac6a043c4298f1b9d5ef0415b7fe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bc63d0db7b455306f11aabf7abf4ed7ee84cb01b15270f7ef8c14142c882fa7c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "94b10e53c2671463854af0e334a8b0bf94d342b4ed2a2a076744ac2625c00723", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zhq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c6fac91f71453813f8d1972084c0eb57d2ebf2123cf65d720d2fbfd76bd19", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "172642db7ae82b734ecf7b6aeb91e47b9cd91f6848cf51fe073ac1b8f59b6d0c", + "regex": "(?i)^https?\\:\\/\\/btc1qhy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "71b50d0b6f0bd06a60434aa6b71ff35c8727d91b0a4b2b1cbc7c22f21f91e1f2", + "regex": "." + }, + { + "hash": "50379045dbfbbe6542e8749d0720c1105591997de1269dd5ff4930c93edb0cb4", + "regex": "(?i)^https?\\:\\/\\/btc1ghp\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "717cd98ef7dde6817bb8882958d70d25f1ac59489f12efaa5f96c9f1cb8b1269", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "41764dd61e4be7449c91265e20b4e8617f17c37c70bf39cdb1826549a3a90db3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "aea8c4ea5812b39e7a0c2db3d30a265a80a5e447e8a22c5222ffc325fb211a40", + "regex": "." + }, + { + "hash": "7be47a04c21349be9bb67c8cd76691afa3f56557df63fbd2da22f140cce99358", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "caaa20009e4ce429f28f50f7666b97dda1e64427891c43918848c129848246ca", + "regex": "." + }, + { + "hash": "0b3abd8df043e01b491edc41df34d2d6a4420299413fd89c1b5c0fbb8ea45c82", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "80a73ca3f6ec92219fadd1dc93763eec5fba0f0041dafdd4d688dd1657678c17", + "regex": "." + }, + { + "hash": "48ed58cd8c272e282afe9c4d8cd9bbbd97fccb56af1064038da92ae2e0754b85", + "regex": "." + }, + { + "hash": "674a63313770218de00d3845cc59ba8791f376a7d332bbe1a4d64209141c55af", + "regex": "(?i)^https?\\:\\/\\/btc1qhy\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "25ee948dbab08e726c239107665a15b9911f77ceed098b164d27213b3a962432", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "897b06a62466822d7ec10f298a037104a153f608b2d24a1c36371f7269ad862d", + "regex": "(?i)^https?\\:\\/\\/btc1ghp\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7f42d0921515102a31884a6673c91a79e0ee2ccba4d7eb4bcc374e74d4388478", + "regex": "(?i)^https?\\:\\/\\/ninjasupper3\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6c2727800bf2bfcfd0fc999c5888a9af1c1ee23f2f1c01f1068688820e18a8dd", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2def69ca2305ac57d3c3a66916018bae09460130d00eaf779b2fc70c856974ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f0d38f59384b3580487a275b82d260b352e8e2175af73b83917617eb42549611", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0fa356fafa93f0290cb6c2299a88e1f275605e8a57c9783ee756da7364ece34f", + "regex": "." + }, + { + "hash": "ece5ad115b178663394c7de1fa364679a0f4f23520248ec043ae1a5ae5f83d05", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eyh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "22d5a223a53e0b2cb50ff8ec6d3a8cee6e6b599da294c5134de4a8c8344f1fc9", + "regex": "(?i)^https?\\:\\/\\/pub\\-f2f509ee6ca74543953afa3e70232b99\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0308dfee281b8234ba9cdc5a0d6e7663ffaa15cabaafe19e778f75519c7da7ad", + "regex": "(?i)^https?\\:\\/\\/btc1qnf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "757ca401773fca3dcd55a1288b687d2cb1418ff421758a53495eb212dad049a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4a4959070443fe4056313522234a1e254d92c3c8e9c1278a47c9f4de5d988cf0", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "01e46c314544132737cef941255a55ea1d6d4846a0d4a95e2ffbde4c916e2b0a", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b65477ccb77951f1b69722166fc9faeeacd695bd3920c467b6d3d80cfb63488a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "428452da4b3176edf9963b791f45a670d83f89906663493caf89cea7ef9d5593", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "34c212ee68676ec04d58d3ea5685f2291801ee4a7181fb39534bae96939656c8", + "regex": "." + }, + { + "hash": "873014fdc55fc5da12d2114ab53c110941f47776bc68c7a1c9c6ff3e1afb2f8a", + "regex": "." + }, + { + "hash": "7d2406ab67d7c0659036c1f20969697fb559d78169c6f714473de8f7ad24c88e", + "regex": "." + }, + { + "hash": "598a330f741f9cd9824b171b51b93d9445f2b46fad90b78585881faf17ced379", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ca9b0d4d1432cb493d7650c88d2b943dffd3aa681965b4f6f01c9508795344f2", + "regex": "(?i)^https?\\:\\/\\/btc1zhq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "411dfa3df47310def1fe349f6df10431b23ae154a81f4dc18f652d0fa6557936", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtt\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "04d4982cc276e1226ba20c9d665537b72df9f472653e84574fbce9a13cc745b7", + "regex": "." + }, + { + "hash": "9b111e0d5aa1741500ef0d88a95d014c15c5338c5a01e822037c58c3417b9d9d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f1f12da93f312541fa96897f9ba73bf5c91ef5d65e78498e62dc1685be153dd3", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c0c91a295f33372b806855c099415a7fc49f20fcae97cec0b20909034289e9e6", + "regex": "." + }, + { + "hash": "f630b90b91c268bd07e84b370742593d11fe19c09003a37b3659f9793488ee8b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "7112400d316577f92598868f91ff4c171e9cde3c392d0cf803fa41ba070f23a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "96f2debec07893d9a62b500863776d9528f3dbdb75c8025f0659192788c4b53a", + "regex": "." + }, + { + "hash": "a9f6e651184bc8d4a86aecf8549c436e9eaa197d02b5e0c81649ef74d3ad8d5b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0656d1b699c07e6c3d28df22e700c7f5669565bd7a879b824612eae6544e2630", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a8185cb8d5ef098a8ab2acc6d0b88f8c01a3f53d9afe89c52bda45af7f122cab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "27ce40a8ea26427de752a6f2592481c1d76be1610db8a6438d14c3ac80046e47", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyy\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "05b4c7b17849ca884de8e137bdb5751f6be76b73edc47ff82afe7633f2d3e959", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2fea0d48a3c3b6d40396b62260355afb3db0a21679d295e538f5a7e9fec27e92", + "regex": "." + }, + { + "hash": "e8e0e429b3b2b38e02d43994ed1a10b82388f0f8a826f3edb2d50f367f7fc7c6", + "regex": "(?i)^https?\\:\\/\\/walkerpaul1109\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c7841c8a882f1019c991cc1b560902044a3ae59c9bc7c0e3970021f169b351ab", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "165bb122f8a5e4d17e29b2a2ca84169b34fb785bbc16ef211d3f0739058840f2", + "regex": "(?i)^https?\\:\\/\\/btc1yuy\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "43281a85a56d674987905ad0beae1364aef79c7ca3ef98985a57449805705b3c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uwa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6092ae6fca9808e6f3676f340450c4c050f1bee3d233aff14887af7cead1dab1", + "regex": "(?i)^https?\\:\\/\\/www\\.pb36588\\.net\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bb5fa276288ab2b04b0cdd23d57115f90556bf706ea26431bdccbce5ebda9003", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6156ac2525cbf91bc7be23c9231d8804f6f2a02449b6099e080d20ef2ae0a654", + "regex": "(?i)^https?\\:\\/\\/btc1ghp\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "90817b912f14f31fabae21d6b88a76c2f51192be9c355b9f6e38d74593c63ee9", + "regex": "(?i)^https?\\:\\/\\/monopolygogift10k\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9670018ae138fd5df2efb7d9096232bad72b992efd0ab8baab6b4e44c50fc093", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6fede932033da589d3d084d6f7da5bd10d1030c6ad026f96ea04e429db979336", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0ac49770ebfac083db92ede1de7abc1f2126341d9d548cf2760b81523ba83c03", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqu\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "71122e2396995ced0b7b86f5588a623d192e55449dffd42e095abae0fb3771d3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uwa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ed421cd417feed2c985f48a65786006a7125b883bd3e6a897167958c8ea5a541", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5577d25e11a7e8d06c5e968d63c148b120eb851b0f395895debba3e3c1c5f436", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9490581fe5eacbb2a757c63a1950723b49e08b405535859516839ff64cb7e07d", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "454a0f755d17ca1c8daaf87de31a3e8fc086493f47dc86f5ed027a9e82e9fbd6", + "regex": "(?i)^https?\\:\\/\\/24529800\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a2e83e07a60476188ce3e5643c85bb5fe8c5c8876aa8eae34ecb821e28a821c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uwa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6decead9d2082c29d19939f7bdd8f856798a5b3a40394ef5b7f2e2a6081635e5", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2f9096cbbcdc7f9fa7182ec93fdbea29d5b4d8aecbac4666024b2dedefced2d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "067d78fe84f2c81076c13cafaf37718a4c64ff7f5b6fb363992d7e6abfe0035a", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dfed5c59afd028805ca496759bd59e4326ddead5e0d6142ae93769bbd09badee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zhq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ebd6a3c3c7fc657cda7bd99f0ebc13ce2b627a7ea6b6db0543219c01d9db589b", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8b15d6acfb4b9f54ce1a0c38fca9e329b9138707d8b246d9d4c377f976f70f66", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c957a37ca2a5759a680be72d612413d55858f47b715777c04eff6b01555c527a", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bd7685dd8667c558a9ea0a9e910a92101a791af9958a39640490eb53ffc11bdd", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f617502a6fa592b57849c369378cfc8eef90ce96b6b2b807d36503679b318186", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "abbc5842deb9e7a090f04310b314c383b53f19bef107e688406cc74246303b50", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyy\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cf4beae6f236fa4236215098c22d58ae99cdc58afb1bad3b70a164bf722a9768", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d48a1bef727c46d89dd73ff61825fc2c3510fc160eb37b9d02de329f4673bff8", + "regex": "." + }, + { + "hash": "042bc78f2e93d3a5e23269aadc55818d92aa538e68a07110bca35aa322869021", + "regex": "." + }, + { + "hash": "0fd5350cc3d58a4173ffe741fc881960501c6519108ae841eafce921d55abbd3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0e570a21e441737484c61efa67e337dda40cc0ea6cdbad6fc6ca1c4c600ccc13", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "22d7bf2b806fe6503c6169d0f3645b17d22a1da9517f5e30d38bfcd7930a6a55", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ec9bbf8a0dee998f41cb76ccad59b559050a09a023aac9f5001b6f4d3367dcbe", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cd22993b564dfbeee7ce2fa1066cdeec1d129b7b1864158d9a9f8c504cd748d1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "24519b260c74c7093c7e340ff70c70384416fe8db90b248a04ab0cdf0b4550f8", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "416f89c2bfa62869ccf3be198be927a5949139b9de0b45e45cb48512fe78976a", + "regex": "(?i)^https?\\:\\/\\/btc1zhq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "99f419eefe41ef7c713ec09fa94df93f840e6c038aa87d252c1ca59f06d8c96e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d9b987d5016b27010d2c3a5b9f6667b3a07095aa7dafc5705d16917e31a6fbd2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "29f6a147e280cfb6843ebdd6aded3f9b0b6c6a55360e03021cf61ca8674c6d48", + "regex": "(?i)^https?\\:\\/\\/btc1qnf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "048e4961d07383d6a6fc1c035b745890d816dbc91e7d602facdeffc13282af80", + "regex": "." + }, + { + "hash": "ef96329fddac5ca38c286bb967f44af95cc104a9281f220e1a76184ae1341799", + "regex": "." + }, + { + "hash": "2cda3c792b8bde0af79e49ab3a205b58238c0e58a31a304d9b3944be50c8bf32", + "regex": "." + }, + { + "hash": "9ab0abc99c27f37a5f39ecbb9d299d28c1f542dd956c30249cde062f7320738f", + "regex": "." + }, + { + "hash": "d0dd638bbe2c83e94b1424cac44cc27dbd5a0bab9cf53543031a7d240cd7fedc", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c88de31528d58af393cd9967b04a7f7364e01aa031f31c846a159ed691da5804", + "regex": "." + }, + { + "hash": "22db4aff48dd0e1cfdd2d75b4e9b7344fe55b76796bb7400d9091a40d166c862", + "regex": "." + }, + { + "hash": "4596f29ae5da91686988916cf84b65a289fe870336a8c082948d9059d6cc9283", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhr\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8ca2ff48703ef4e125ef957e9851ed1b3f86d85af4254262fd6618df777e77df", + "regex": "." + }, + { + "hash": "3157940771e16f11ac94290e9c17f398a029125034cd85bb64f389c10b560f41", + "regex": "(?i)^https?\\:\\/\\/btc1yuy\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0448cfefeec47d0aee4538ddeb43f30999a6f0389018aca6d8236f97f53897", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eyh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "710efc456195f9e19d477bf33bb65fbb6ce9deb978aac506becaf86b69fbec2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?method\\=epic_identity\\&security_profile\\=high\\&client_id\\=a82e03af24ce19f4772f0d6ad6a1afb7$" + }, + { + "hash": "74d451033a1ea29b9469cc8ad52caa660f21d46b5dc2b016b3f7661d1cfe6827", + "regex": "." + }, + { + "hash": "a2fff5e2d46bf6d97fbaf392407b5e3d619ee3b2173f774f59c92da8705da265", + "regex": "." + }, + { + "hash": "5f00ab10ceaca1d72800a7380c80940e7fff94926f3e3eb18d6b60b532e4a3ca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a99dfa3a202c969944767ecaab40c0cd85563a67b5edafc7f7f1f24d5b19ef23", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d699f5562f2417a62a853b80794feae0dbb21dda30abf0fe0818d959542b7a38", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wnt\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3264d3a806eb0eb4f41e9e1e7101a49b7d37c3800f8fac59ba4b7f4ec8351a7c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqu\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9cf3efdd16f64957946989dcf6849fb624fb4d6f27c863db9c4b236e2523d3af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zhq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "18c00709f6f39a871f8c2b87a4fa82d5f572ac186ff1d4471d30ef4c3607bedb", + "regex": "." + }, + { + "hash": "0464789cc484ab85bdafc3c09bc3bcef99dad68c1e7e6ff06bbb41431be9cef1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c14e3d4d43ab19cd233111f7bebde174cc4b2ead41715500c1edd6cd9b1b7d26", + "regex": "." + }, + { + "hash": "e2fbebfe1047933131b2538a03009321c671024c4c0583ad3d956ca88547f3c4", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8fe2bc8b9af25056f3704d494c6acc830677db1acc3151422b778f2d8a1b1ecd", + "regex": "." + }, + { + "hash": "3e3129e9bf472c0c66f63574c995d680881413ea02be9f33e666fbb17f1b0574", + "regex": "." + }, + { + "hash": "1f8a69ca5294bec6e20af5aa18b35cc5f527d2ed59d5297fa6cdae6645f080bf", + "regex": "(?i)^https?\\:\\/\\/btc1qny\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "513d0fb0518eb088acd41d9c576ee7f48207ad1988fceccb8eb9bb8845285870", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uwa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "05e5633db6a0af899bc9ccc1ba5e0494029b4b341ef2e8324868df5169ff9d76", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eyh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1c382265ff54ca255c8bf8894fd23df27bcd7ca43960bf304203649faa7a5754", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "50a8e4fdf410dff52ffb6acfc6523853fbe5c13156ecf3b1205c51290f08cb83", + "regex": "(?i)^https?\\:\\/\\/w5re887rdim60\\.duckdns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "a743fafaabf580fe72a16da4e1f5ca8ba43ed4f9fcf98613fcde387122bc271e", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6414ef1e4695134aac0f11e09757c307f3c9c50d28a0bc942c35a4bfd6da2f52", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "381398ba2a0d3e51af4a209528567e2daa1b71bf565ac1ec20998a3b98e16aad", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "935296268ab575940f13c5305ab1ec82f36e2e86df39c5d5cf62c36012d7e659", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a4bc5520764fbae28acd47215dedb740ed3ef4701d68d09bbefa58e593309ef8", + "regex": "." + }, + { + "hash": "7ce248a691d7cb8aaf56c4157fdd863db7d37dd260d451d2196d0898c12df5a3", + "regex": "(?i)^https?\\:\\/\\/pub\\-69a708aee38e43d39dc90e65cf34f211\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "904d259156a016cea4150b9ffc6565ede6bc43ba1edd308500b84076dc7330ad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d79c8fc8d6102a292b45833f0ec68591f3e648df6021241fd03c872ddd96583f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "104cf41baf81e437bcb818f5490c4598e1bc78d544768fa9abf92870155f850e", + "regex": "(?i)^https?\\:\\/\\/btc1yuy\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fb029936d48ebb48df256a5c9f56ad7ee53ea93557d7066f005941491728b80b", + "regex": "(?i)^https?\\:\\/\\/btc1ghp\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e1586ffdfded184781f436afeade77667f9b7ad88fef5bfd8958a899d3cd8039", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "82d5188857521fabd9acd8386a06b88cdfdb02eb97b6117eb8aa4ad2eab8f6ef", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ed44c5be6f70411a577d1656db5224c5f40d3fb20dbc87f0c55e0278dd44062e", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2a7dd639c63cc95ee20a4ea38145bb283b3f685ba862281d0afa7624f868e34e", + "regex": "." + }, + { + "hash": "8419ec4e8e62406a9263465f246ca516470f9bffc8443a89d880bdd3e87a4886", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7c44924f73f0b04ffaafa454b68e78ae1b5c077c82edaf88d8a50f21b01074f8", + "regex": "." + }, + { + "hash": "f951139cade3df0086058875b444840ed782185a6efe189f4b35644cd1141cfd", + "regex": "." + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uoo6b(?:\\?|$)" + }, + { + "hash": "5b5d64a02d55368d3455a4f7accbf2ccb231a6062b6166f07eea6977d312050c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wnt\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fc362cfee981a045fb31bb1f210b8d3efc5ba6d8daa04f9feb8e645bcd990eb8", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "144a7cecb22caab03be940d2cda282ad1cc9760ed6c27244f8f7985be7264d6f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b15e2554bfa69aca03892a77985fa11af79294424879bfb364d946b0ab2254e6", + "regex": "." + }, + { + "hash": "0b885ceba2b795b1da558fb8fbb391c322cdb4ae6008db56dd4c5dd128ad816d", + "regex": "." + }, + { + "hash": "8497b41025782885aa1bea28cdd056d9b8a19f6471aa65ed325d729b7b66d2ec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "80efea864cf361fa5576dcc9c9671564ff652c5888497e66091cde8018d775fa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqu\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "279fa85f015109fd9334fd01c8b4fb6edcc5472c671882264e4b9dbbe8a728dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3c8b73c79d36c97fd2bb66f877c6066db08d4afb6b51ecdeb58dff6a9508df7e", + "regex": "." + }, + { + "hash": "f10e1dc8a2679d4c9659d0da9b1d66ee57005ac9f3b070cff4c1b47149b472b0", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6920814cc8647694d0df150846a00565fe420b6359c7241aba2b2767143920ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "80a71ee97fb871346011308cc74aba4d206c1c94d3000629b1b1f7f7a0d95a2f", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "319671b00644db73c50ab86341baa59fb3c069048354b5785f2604894cfb40fd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wnt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "28531f3b2305d5d693a24bb77915ec8e1c8768c402aa175eb5d50e01c74b31f8", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "77db1a5dec43ba5be7bfd612b1d13fdf2756794189f36014c878100a1aea2bbd", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3789ccf973fde9170a8ee6e8928ec10ccbd9c9e3b318520339ad00f67e5a6f75", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "45af9e373190b240a644ca3f6b5f9ef88af47026542bfc05a33504c49145b084", + "regex": "(?i)^https?\\:\\/\\/kali729\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "717091608e0a8daa160b528ca52294e80097767ec7b5b98f1cbf7d45deff8823", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b46e713185b1804bf8940927b8c9d47eaf88680554c3d80833bd197b17c451f2", + "regex": "(?i)^https?\\:\\/\\/btc1ghp\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "04c8677da367561e2d915a1d7f3798abcb33584532d2283cc9833499532f44ea", + "regex": "(?i)^https?\\:\\/\\/steamcommunity\\-8ew\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c989ce84f3752f24434ad86bfe1732647dc873e106ebe89cc65885d34bee2987", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9a5a7ec8375939b453ee6a04a60af4bd155d099076d997f52a4eeca59559fb95", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a9a9598330fe9f62faf391b7f18c373127081ac66aeba0c11526ccee98ad6bbb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtt\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "13eba00656a6157729c4c5d459fe210176495e8e9042c16e0e8155944f372801", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a3a8b360caf83a4159cbd4f651b8bddf689751f136dba594a8b3aa4415b5218e", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "38194d2932b1e9e32f666d3fb3e4744f6c0edbc2efec51eae168391b936af9c6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qnf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f7e1b4e9cf4b4cfc0492ab3e2ee0f20e86232dfab60b1924e456195824cc1d49", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d7858c28939fd3a0a80baacc103d8bd0d9a56e0fca31280877af118d7845efad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uwa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9217fc87ff815497c31ae34e47630ecf36a31a5558fe878e71d6dc4ae47e77e6", + "regex": "(?i)^https?\\:\\/\\/btc1qny\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4f39055c5d304ea35ba1a463aafa3c5d2d9234f57aa276674ce1402736ad8209", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "72bfd11d29b2c55493d3f106d14bb0b764d71bef2af04972273dc318d138749c", + "regex": "(?i)^https?\\:\\/\\/btc1qny\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4dbc7a7931d85aa2a2348002fae54e39b7d4f8b805b02fc7921836ed351d6128", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iq(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "750aabd0c616ac266d57bd9d93dc5100cce36231779fd580c12f2989928b068b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2f96738322a16561ba61390ea913ecc683488b128f0a7ca9e83d03657d12f13a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a19cef79d6ebb6d099cf3b8d4f9b74f2dd63f30c976c5ad5f6bb3c1e8b8cb1ca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6bbdbc24d81c18e0508b5ecf8026862e03c708590bd34583153b435f239a06f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zhq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "20decae5e576d764674c3b3d7e3d892295e1083757493283aed711e71f51cd99", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ed8cc831065fe3708b89d2ee3c812ce9bb753794715f2f82b4302adcb16bd639", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "ca23aae0bc1715dd91f3eb8dc3e571e172e47a29b139b82c6c411d1ca16eb741", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f4a1bdad1a7627e9bf3c75fb2373866f2acc7975a5e7bdc8dc44d7e2dc4bb112", + "regex": "." + }, + { + "hash": "79cd0b04c094e4bd979e374f567d951a9e5d5fb5be6566a40a6b999c49e28462", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "dc8e5366ad23be95ef64c351b0c3af7a90f8a8a8efd959072a2ee30cd11c58fb", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b4bfbfe237fba7bd0cb7b672596e620c2b6422e1e4e89628abbf89f1a97dd8ba", + "regex": "." + }, + { + "hash": "408bb5aca80bf681780d25f9d2936396ec2bcbb15601f9575dfc98d75831b3a0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fa5df41f852781f159b5846d8ecd9d35f189bdcde001a0a25f2bb83ca164b22b", + "regex": "." + }, + { + "hash": "0232bd2b5feb1afe44bf280a9fc310c22cbe7cc26001672cc5a24c7022019832", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4e459faf0df54c476771e11dea1f51a0891db0cf538be0a304fecc26c4211096", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e80076968fb14a5756472a8a2ed939c2c564f536579371cea234ccfaba6fbc41", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "abd63dd51788cb7e245b35be019378641eb94fb4a78ccb624906def94e68910e", + "regex": "." + }, + { + "hash": "2b323b03950eb74ab44868e619a3cde80949cbc8f5f738ed9c148303399b1551", + "regex": "." + }, + { + "hash": "29022718528026fa190d6af86a9ce1b067a4c648965eaf1ef4f979b9a9231878", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "71eb7d1f3ca7cad2c03ca8e11a899b3639a15f294b4034c14ba8542be5763236", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a1cf898368867dc6ff589e8e50ca5528ab8f138a61288df489e4b02598f249a8", + "regex": "." + }, + { + "hash": "0747fc945b3ee9a65ba97a6ba7e89bd660f7c5bfb9c3ce0802b8737e660b07d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d0d6a320d0676d5565d6ea25dd27b5c984b63afaac042b0b3ff3bb0e7ffa0c4e", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3a3547d1af8eb6511ccba672144b33dec3e0f693d7ada69df77486e151236338", + "regex": "." + }, + { + "hash": "d7602628260b4d4da2e027910ee9ef594d0c7aa8ef68e3c36b492b8d76516d77", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wnt\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "496938b4945e4c7296efce02192521207160defad7c8d560167acdeaa9b0feb2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "be367a7b5aa46abf9851ffb0131a0d139236bb4f300013ca6fe7c4bc4c55c3eb", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f9a330d6f093ab5c2681926851e5935dd6233ff8057ea397c3f2d4031554f9d4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyy\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "76095bb9cc90e882b656db66d513aab76985a00b57ce89bc3b1195fe1b921a55", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5ee0a1f1e653a8cd3a2d24fd53e48c1182372a5374415dd5deab5e7a7a39b0ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9073[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "c86b41596647c3a6521fd63eb619cba1d9c4b01c592d9de62dd43f9bca320496", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a4abbbfafd2d029b2f8ac082a53c43bc8568ceb10d417e9734502afcc2248471", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b2998d0a1403b9741f86aa5af685803b8d84fad209955f56da21ff6d76dfd2eb", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ab8e514886c69ec09421a5b6e9f53166dda49847d0d198b9f244b30c4ccc6992", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f82534519550a8c32868ba09ef60f73c0eea886dbbd952fddfd1883a64de9cf9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d8d6d7947ed41e68c44697eb045560dbf543d08bed79f5a562f2c70f33ea2345", + "regex": "(?i)^https?\\:\\/\\/btc1yuy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "26e3558a590f2e93b190d4673202547ba2682935b1099a06882f7eb5bbdbef2d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b8768d4a570b9499d61e9f08a297c7b7282e5300a2cd978bf930321b4a0918ed", + "regex": "(?i)^https?\\:\\/\\/btc1qhy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "02fe6e53eed5581343f2102c0b1f38f993f275c14f70be6b271aff6df9634207", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ggo\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "87785a251aa8b6b7c6e089fcaca21c24235272c9b1647ed9685a5ab75f8d4e86", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fa16205e99a14b4c220a7fbca83636b41d8e0acb70d03d98a21783dfe39ca7de", + "regex": "(?i)^https?\\:\\/\\/btc1zhq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c07af90afab8b07ff331e400b61179ef24507c8ebb1b258ebe6359cc8b7f3af8", + "regex": "." + }, + { + "hash": "20bb2cd256007bdeb171a670dad09c12f27abf50e57a7430eb32075dae7cc0a8", + "regex": "(?i)^https?\\:\\/\\/monopolygogift10k\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9e307cbe6a1915f76cf2a9c5f9fb57768544235ab0be6718fe31934ea9c121df", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f412cd8d2578aad8e162726b18adeec763393cd2ab1d9891db2fa737443747fd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7af6b83ee49c605c04bcbb33650c9d7be2b7df10eea7ef67b5125dd07a0a16de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nlgstorage50gb[\\/\\\\]+index\\.html\\?session\\=599e3004a1823fdf581a1fba03aee773\\&fluxf\\=2267209272141884670\\&fluxffn\\=2267209272142502442\\&ffdomain\\=pixelinnovatepro\\.com\\&category\\=default\\&firstname\\=\\&surname\\=$" + }, + { + "hash": "8c4547d00789e2e19b726bf250911c7fd95278b5edf21ca189d5f206cd545fe5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uwa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "90dec81c463a85278bf338ec53d9dd74681793dc0fcb947d573c3c07d3583a3d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "237928ac5a9500ac36110a1a941defaad983242e7d432907668ee2680ca8c3e4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "36010164ef16dd63a00cf6ea974a14619842db3e1bbfe21a845455c704c356dd", + "regex": "." + }, + { + "hash": "64fdaf383157030be1085841d30c30a745f025937bddadfba870b80551126a82", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f8a6b4660df8048c28d0d90e3e572dfdc048aec3589ac7719c511f47d3b32318", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "affaf9b84cb76c824482f44c020c86517b96df9e9197c3602efbb7240658ab75", + "regex": "(?i)^https?\\:\\/\\/robux59\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "968768e3dd89ab1d1bf2fa2390412f1380277acb685a632014aff594c20c0766", + "regex": "." + }, + { + "hash": "95845671f1c5e41a02a3886fd14288bdd70f0eaed37aa23cd6f61207c6625992", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b3c44a9b0037f7fafc6a41a1073ca10f428e536a5511f0c7a64051d11f746ee1", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ac8318c15cc11dd821b80ad9d7a1a9153f83e0d7565904a2393896efbcccc9de", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "874e6c501307b6034f434d57253f37b8bb83023c97dd8a850e49722e97c21e11", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4eb36ccc9815438b4914f0eb0b5a5d1cbfba361a9b0f18f888065a2ed48a36d2", + "regex": "(?i)^https?\\:\\/\\/btc1qnf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "18746b70bc88ee84d1cedad41a46c4387236e4d5b440eda0b09aab6bca575e3a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zhq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "710b48aa02360d46a91a2d62c8d2b7efa07b6b1163f6e3c6a861b9c6fd4bc0a0", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f7eb5121ad6a9309e661a554a51e72f521fdf323dae2b6d8cb2c6bbd9dc85673", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eyh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d61ab4616350fea81ace74b174f709b9ff7824f45989de3850ae5a4f39484bf9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9fea0c4343a247f5734733afacdafcd74b9d019ca2fac4161e2ade92e762d5a9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3a006062d494a0bd8f39662a1101b0be8516aea4f8ac31875d283c72cef9ba7f", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7b735e84e9b492697201d786a863f771ff18d2a5999ee857d59e5b9a7d1ba421", + "regex": "." + }, + { + "hash": "54851fd72a75f78f180fa4dd17e35ac8aad98ff1e95f8695ae58c1714270e9c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a775b1ec129368325e8cd10bdfe9c9ddb0320513562be5e1eea8249f46dec08b", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7622dcd232dd37a8c7337fe7b4dd62557e2ace4fc2038ab3cd1b1bacb906a51f", + "regex": "(?i)^https?\\:\\/\\/btc1yii\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3c05015cee63a83ffb2782ea77949dfc6bc7452ecd9802101a631a7f9dfce08f", + "regex": "." + }, + { + "hash": "dd4e78856382a27a52ba6304f1fc39d95ad391871dc80f9bd82e1c9dfc0b9b89", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "56a5568cab6a1a99d239939430715e8da50471f39516073723df629b46614114", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c76dd10286aa9634c51f9a1e279191085de498a487d94a62a6a994662f949640", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4760a5b24caee2449fc3fcc6ab8924f8225a6f0eb1dc2d5405e500835748a589", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9760d6bd46bc3e5b891dfbd9dcdc32162e357e43e9af3f79d744c8a5cee6e05e", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "752b61b6c0dcd4c8931a2df0c4fe7a158ed84f932c8a4a81a224513229232a16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7a44f157f344722ababf0c292e1366b1a8e24d79c06cf27f29a9f49164fe5c3e", + "regex": "(?i)^https?\\:\\/\\/btc1qnf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "65deb975f2d62ad5b21d3aeaa8f9322d19c341a5e11b7a59990ce1a63bee18c1", + "regex": "(?i)^https?\\:\\/\\/btc1tss\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "84593f071281a6c367b9acfc1cb68f957d1242c7fa5d6ac43778e17c2783f1bc", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "914f86525470ecaa8af4b8a28b51257e1265b1a5661016d3ee5ef998835b053e", + "regex": "." + }, + { + "hash": "7781ce18cda098519fef5364114e26154dcac3bc33bc719a17ddf352c351c03d", + "regex": "(?i)^https?\\:\\/\\/btc1qhy\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7e8868d691f4f673a6eeaf3074cf6e5a5903562fab0b2258aa93a7c83bb15c6b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zhq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e4b60862e7ed1159494a916be90dfca1919a55b6c6f08fd1729ea266103dfaf7", + "regex": "(?i)^https?\\:\\/\\/btc1yuy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0c20ee4fa332b196b89a556d8086f63cf21775a457744a1346d3af10fdc1cbd4", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3ed507fe952ac457168d604c01a4dd262305d4677d13de309cf05cf929dd9398", + "regex": "(?i)^https?\\:\\/\\/btc1qny\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5ee0a1f1e653a8cd3a2d24fd53e48c1182372a5374415dd5deab5e7a7a39b0ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9073[\\/\\\\]+entry[\\/\\\\]+register12332(?:\\?|$)" + }, + { + "hash": "a6cffb1c4cfe0c48b1a37b05f45452c607535795381017a1ba92f5683be2c4a0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "974559ccc65e0252752d09067fb255303d23b88dc537e68611e968977ac5ac39", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f3a155b6522ac6400ef45641e7b197fe18d36fa37f178961cbe984a7fa4ba2f0", + "regex": "." + }, + { + "hash": "bd1d0b869d789f243dd05c4fec5354ddced7e7960a1d5e7a7c976e462c671a40", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "339ce9339be7ad2c7e619835f703a5469facb489e05670f5d64e2303946ecbea", + "regex": "." + }, + { + "hash": "059520181386a1545d555496f270c7c6c050a7095cac3dfd3a06f8496569ec04", + "regex": "." + }, + { + "hash": "6b1f51af48a2b8291e89afb44c523aad43e7a79e70ba850ef6b2eb7f51f1bbca", + "regex": "(?i)^https?\\:\\/\\/btc1qny\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6a9deb1b2dc5efd9d972f636090afa2c2b9c71df93cff3b191d96609cdb07ec9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f398a7b1f1c14d24d762ac1de5d2c9c434622a3615737c0f199b0c5fa2b1c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3a2c2ada3eb29fee16bc55956293bdb56311d352ff0e13d9d3ae16446a1e5170", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "05718792a7901ff8ed37d8d9887b43f378b7aa294928ad69ce298f8d081dbf31", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b32d89f9c975f76781ba8fc8bf11a1b1350ebd6bcbbb7d4241c9f02e98c09075", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eyh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "79cd05292c2f6b6a335e1939f859ed47ca009ac50cfea9728b31228ac46bdfc9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eyh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cb9395ee9ce22c7c97fcae02510a91ed846ea54b626801d4861fdd2dab454ddb", + "regex": "(?i)^https?\\:\\/\\/gmail\\-loginguide\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "68219755c92fee6112937a9dbcefc40926656e95bed3ece8ae2a495509e1edc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+a\\-RjynEy(?:\\?|$)" + }, + { + "hash": "71fdd244529606c722c64bb943b91a6eb433cc3164545ac0047ef5d16ee2073d", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "86f27febeedb7da62ff99263d068bd29c780d75be86ec246b87f7c78227590ef", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9bb8417018754dfb331ff85ecc6bf39f863dc3779bcfab2065b11b97dc120d94", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1a988920db069fd7270db43e65d6a5507011f96474fb4f413aac7a24a16b8b63", + "regex": "." + }, + { + "hash": "81f548d513d3b407b7d2db8587c6b45ed0ccddadb3ab86cf08a48ca45abd0310", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "876c35c267518eb53a4df6ce907144763025e6fee9fe3654a971e9242dc15467", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "db3f846098bd6d72d6489a2d271866180424854854ebb4eb0a8585eb5f49ae40", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zhq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a8ee4fc0f3e899bfb461245f78a8db5c748377d0d8f64ef2689bd359391b8299", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexe\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f65df771824ab1eedd03a72d248999c09e307640813e767f7860dcd72413f722", + "regex": "." + }, + { + "hash": "eab12d2fc8ac4c5846c6c42eefdbf0b10aea5138beb33414bf09f9dd343f102c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyy\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bf0cd93f7532167c5fe2416169a65daacf743d525392e0626110b1c39618ab70", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a61f67a14cb11f544c7bb98844f3937e8898255a3bc6a91ed62e60689b61436e", + "regex": "(?i)^https?\\:\\/\\/95996757\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d3311afd24ac23bf1ee4525e8b9bcb3c965e9b310582d45c9435e68fbbc94a97", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "655500837127d4d833b5ab79a3c808e910120fce54408a9fedc1b5eb22f813da", + "regex": "(?i)^https?\\:\\/\\/btc1qri\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8b60de6b7315113490b67b2b7651ab3e6136be561c9e774d1d7656f02fcdf101", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "20a0ad4399a1eabbc6caac969322d5d9ebcfa37739e2c6b823f410aacf091a1d", + "regex": "(?i)^https?\\:\\/\\/pub\\-5faedc33390c4866ba30f3406e0800c2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a1c04180b2330c95d843ac576887670980c1217dda4111f3f1461b55f74f5108", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ec1839313d289987f24a100e433b3b2936c38bb7682fd4f8a7605ec7a421431a", + "regex": "(?i)^https?\\:\\/\\/btc1etr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f57e7a329dc8470b950464e6fc9abbdab12e9ee7ec17395e2c670713d8a6c1fa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wnt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5b32c5d57466b67ed09d110d59b45e7fcac23265c8dcd9745837e9fce6c92be8", + "regex": "(?i)^https?\\:\\/\\/btc1zhq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bd171c0b16bc4d1beb138144e9810c3d412a582f75636473e7e97fe0f41e0fd7", + "regex": "(?i)^https?\\:\\/\\/btc1qnf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "761f9ac6aa28a583f85398e737350198a09fd60f0f24bcce09e03450eedd67be", + "regex": "." + }, + { + "hash": "718146ee125ee1b50c2be77a8f53ed0e55473ad7e9b1d8db7072ca5b2700f960", + "regex": "." + }, + { + "hash": "f800b135d6eaf7df0e7afed22058c98b18f213cc53b980c792640e06ebf74ac5", + "regex": "(?i)^https?\\:\\/\\/btc1zhq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8288ea675a360fed4b78f707c4540e7d93d441b5cd507d818d106e219a154444", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wnt\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b74e018a2780fa6f0df430f687edc38c47557613c5695ebce7c09d9b865556f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "9012677c0e6d7900f200aa19ab331e247bff233159c4ba0f565391fd92b53bec", + "regex": "(?i)^https?\\:\\/\\/btc1qnf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5ca28dd437d8451456d7363f13b8fc738ab7fdb4d1b3563442ef78e018d72dce", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "eecbba7adb5e2801373933cb9ba43ba16f70000cbe7e7d13f1bafe68aa1a2626", + "regex": "." + }, + { + "hash": "a1bf19c3fb8482152e1aa806846b38406deb1e3e8ecf9a695572687fc49d0722", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6c4edd53a044ae87338c35ce48b9b6e67853742c0efe95886bc112ce8f2ef829", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0996f1ce6d45ad00693c5eac132e32db21f4cbf6c29ea445b21e7f5e808b301c", + "regex": "(?i)^https?\\:\\/\\/btc1eti\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5fdaddb6e1b9f8020139e867948523965b9a3b1447b3d84b4764fab57c5ef5af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "eb54b4c53cb1d0c6580274f5355b2bde35d9758e4f6c7c7d99682e807eea0bd2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rxq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "04f9ad997c31de911edfadef4f21bb9871d8b48d05a27b40650f28e0a8db7d94", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eyh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a691dbb9bc77f779ecf4bd42f4e613c1af940eeed9acdea48fa743dadd76375c", + "regex": "(?i)^https?\\:\\/\\/btc1wny\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "18f1423af4decad14f52a54a66ff9318539d9b302911182f0ee29bb47481b395", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e168333579830db927e17bdae010cf0238d373df64d5c209857b88981a97c8b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "7c009b63225f99250a1797dddffffeaa693dba6f069269cbc15748826a475758", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a2c43119a545c3956256b9a07469bc1124c3da6a59eaf73b2818ec12cfa9febc", + "regex": "." + }, + { + "hash": "d2a8c1e2bc6eddbc929e951c149ce17241b244764890594ad75ac0d3bc46a7b9", + "regex": "." + }, + { + "hash": "5a80c46d17f388a9c835ec33657594a818701c287e832cafa95bdbd610c546e0", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2309f9880d94b49b323295d8418c973615dbd9c0ebed658a64ca7b57c79ac6db", + "regex": "(?i)^https?\\:\\/\\/btc1qhy\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b9eb598a30e67d2024ef5bc4cba47622c1f32edbbe2a574c7e7c475052b69704", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "73f9c1bc9c9be7a1345414da7f3d868060a72d105c3d1153e3d94d198943e7eb", + "regex": "(?i)^https?\\:\\/\\/btc1qnf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "93462f3db091f4c1c5afc370f018ba2a7d74727eb1eb7f88d55b6483574cb250", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7c7f3a2d25d70bc1cc64137bc73b7091433b047da60f3e6bdedb889b9b92c528", + "regex": "(?i)^https?\\:\\/\\/btc1zhq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7038f30d88220bbca78a7564a152090000ffe21919ede178bfa9f8551c905c33", + "regex": "." + }, + { + "hash": "c210beda16f908b92f43cb336ebf2130460eb47f1841de33ae1942e510b3312b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6ca8d37d38ba54eebe1edd884c501efbde5243504f07e409d024ad9088d25d93", + "regex": "." + }, + { + "hash": "ff30762f6fb044767ed85c8b8f4e466ecf0de73e9b9a09d47c7077ce74cded5d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4dbc1dfdfd9bc7ea1c6e4cab1196f8baaa49f61c794f7e36ec380bf3e700813c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9b97a06267975be274b0f6431f6d75a891553d04ad66e78faceac3dc95e7670c", + "regex": "(?i)^https?\\:\\/\\/hotvideo111z\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1507647bf5453c55f1d6123485d266edaa852a875d7d5346e493d25ca5c0d078", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9061[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "864cadf2bc0db79fb223553dd908f1782de6bbab53f69877ca46a7fa5844df41", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1tss\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7781a867b166012ee4566cd1092806f3dadd219946e6144cc956b0e8ace4371e", + "regex": "." + }, + { + "hash": "ae6ed3759ce266f94ba75d7e62965dd81c7d394789808548193224b0674f516a", + "regex": "(?i)^https?\\:\\/\\/btc1wyy\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0ee147afdc9d5005360ca41ed8e139378c97623c7434761f3e328ac0582fc902", + "regex": "(?i)^https?\\:\\/\\/btc1ghp\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c47e979ec610777b2bf29f160490d25cf6af75bb67b02829b90c85fbafe5126b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtt\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d1f85c0c7a94706d471a20ad53c1d057dd096a971b211ded382082bd1e2eced9", + "regex": "." + }, + { + "hash": "812b47ad3c4b7d29481a5eb0ee9a0953f9096853f0775c513291655e71654995", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2815debc81ef10145a883b2aed68315a01dd1359843a26582daba665ec5a6da3", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "39bf6290842f3e53b5dfe5a66a1a122a714c1c850875a035b91e74ba8e11f6e0", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b0c2a677399c40272dafba64d88f623aab13e3892ceb4e21ee6194e21d6100a5", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d7168cc215e3b28bc7c4b906531a5e390da2aa7513f8acba9aff798e5bd8e9aa", + "regex": "(?i)^https?\\:\\/\\/hottrendspots\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "35e0fb8c7fc19b1294e73329802fb253aac29c374ad8f6941e64fc8fe16372ff", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6eb0aba0e50a4b0e1fcd4541b15eb9afdd670982f3b8493b05aab9f244cce63e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "578ca37bedc216345fa088252b20e6b9d91e91bdddca8d3faa625fa7a52fe21f", + "regex": "(?i)^https?\\:\\/\\/hottrendspots\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6417c9e33581b4fdfa892b8909bb565a0f63ce380f44c2065c8a083da0884cce", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2b9a10f5286df56af8dfda80d5fa09ffe9a67c22034247dd4886c6a8c38ff60d", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a184a87656c1234f00cca8942ecf6d918c3c343cdd11e8bca8e9c848b21bdc66", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d9825f1d83cd584e4d23f65a9d0a02f5aafebab5cb66077289f706d805c0e6db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Sdt5x(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5ce449dbc720554d607d70d017ce2780b56890dbffa13380fcaab570673f65d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bertwi" + }, + { + "hash": "56cbf340ad2e7cead07a96e640c9dffc15114c848b20659d1431e0b0a2abeef8", + "regex": "(?i)^https?\\:\\/\\/btc1qgb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a30aa34075d11964a5e68c3b4cc96d061225a0584817a6f4f37322fa703822e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "aaafc028f83be9b1d6b5445f671a726a2d631411079c2773626a5040d5393f17", + "regex": "(?i)^https?\\:\\/\\/hotclipdynasty\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ef1b9be8198ad8749c236e85884a9fea2b10af00958b25561b02b1678a64b0d5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "80794e87e1ade6ce11b74e2547277b4d085f2b8a46ce07d4cb77809b8eba1a6c", + "regex": "(?i)^https?\\:\\/\\/btc1rox\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9490a61c8141320c4f7b05d2475565524df82e95498269eb93f3b467ac09ff1e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4790c161cd48f5ef1593c101d68bde4f1b005295eb6dc73cbfa492592377e27e", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ef6de4772d1eaf60ab73a29cc9b01d5cd9964383efc76718dd4f412233ff0aa6", + "regex": "(?i)^https?\\:\\/\\/hotclipdynasty\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8197208e8045f000db60dde7c5ca4483e26013be6981aec14c1e068fae9769c8", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9b3debbd43b9f36b8621f6a98f5226a0e4b6b9f005b63a5701babb6cac7a44ac", + "regex": "(?i)^https?\\:\\/\\/hotclipdynasty\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "864c76009458f97df777adf6eb7bce9d2b6ec4ca097ee38476020bebabedbc89", + "regex": "(?i)^https?\\:\\/\\/pub\\-3d670bbbfee34f96a942c46536fbc507\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "313a09c78cedd5c0b9b24b22f4b337d955c370fa5859d04c12a8f7e53824f868", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0f96283a2828521a535eca3a186f04ffabed485d34734dc28ac62c2f07410440", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ngy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9d3897e1d2d843cb690891800e7434cbb974842ef0cac4606809fbd25f433866", + "regex": "." + }, + { + "hash": "0f5db518c13f3ecab11dcd6ccb9c054f3f21de3bbbc4738b8af54da1d9cd0f16", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f254751f8c303813500630f2d2b4fb2d4910ded3cb9c9ab97ddf8c902ee64007", + "regex": "(?i)^https?\\:\\/\\/robux60kfbs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cd74488bb71fdd7d52045daf6d9e6975f6947d547c29685779fa5f597a778a69", + "regex": "(?i)^https?\\:\\/\\/robuxdfs60kfdo\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1d2e62287409095e5878773ad771ae478db8becf656156591c5b150d4f2f2e9d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gzz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0f3ccfcffc83a0f5f970d84d5000e3b70fcb955c8d20984de130f4e448252b06", + "regex": "(?i)^https?\\:\\/\\/btc1qgb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a1a941071839a96c6de6597ccbeb59393a8cef4a9e99ca297673043f9456bc49", + "regex": "(?i)^https?\\:\\/\\/btc1qgb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2f968fbdb3f166e181af7aabd9c28d896286fad259381e77dd92d41b83dc04a7", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1f57a78d2ffdb451dfafdbb55c52e5ea71fa8dc95e0c1763ced265f9b817e44a", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "41ddd82888a11e0418a6163be8ce609b1672458984adee17dfa20593f5a17a0f", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dfede6485114c527e1bbe809d1c7326ffd3a4589505fb60d435c6997e9e86376", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6c38c2a0b0fb82208af3526f5f1eae3bef563ac6b463b913990ea9a22e911604", + "regex": "(?i)^https?\\:\\/\\/btc1gpy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "dfed7262631130471a07f084c845c6d747303dc2847f1bde19a631c126f6252c", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "33948102bd587a2c858112b66f7642e8a51fd6428fe02b40e07a164e5320c89e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "740649e74e45dfc01c07adf2e9b4b91bc96e0aeceff30e3e179f658692ea0417", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d4ffafdcf7f06a48a1f3edf0fd6868e4579321ba84b5048688c6e3f8bc9f1519", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f96578527eafd71691df98bdd4648105647572b8e557f4f3eac8a536ab37f416", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "43f7d1555227f8d92484afa42b109f8d127c989b95c358efb9bea91cc508f6d1", + "regex": "(?i)^https?\\:\\/\\/videotrend2\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "718e2285e9fc055c14d79df70631d9a8ab7567668c4868f4e58606c992b44b81", + "regex": "(?i)^https?\\:\\/\\/btc1rox\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b1f0d5c7634738798b9725b5557156be105d2834cbc0516f73dca0b2af236163", + "regex": "(?i)^https?\\:\\/\\/pub\\-552251d2efea4c43a7f1611bb0fd1f6a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "45c43f5ed15fdfe8ebdee41dd1720fcf22897cf6c131ead40e16adc8a25aefc9", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "017955b34ec9fa68bc16f2741371afeb2e215b708ab34da8c272b09f5588069d", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "155bd7fc7c06a97945d726efc802e45c0737b66056a0178f082db7fc8ad000e6", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "913d0aadc16aab936f48ed80e5bc01f38b0cab9d8aee8b32ebacea644cef9a1b", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "09a4e9e195d0eced94eab1e4d8fdb0b4cb1f5a5e5ae07b58934d1882040b9780", + "regex": "(?i)^https?\\:\\/\\/btc1weq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ad62aea12fdccf8fd167a0950bf40448c8708f611584602d9adf527eb457f3e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9bb5f50cd8c3e5d24b6a3689a0730bb7eca0757a9b1379016c18299bfab65e2a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ffba23376fbee53f7f9d78fdafd7750935e1cd1aaf9933cdd486c54476db06a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9aaec0016525baab5b70bf51cbf7fc2fa44129bd5656addf604e749079e5e3e9", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3277e5ade00951e4e58ec92891d054ceb8d2ad1dc978b09b275f44928793dc33", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4eb018fb3292f15534e4e57bff950a7cad5f134a558c4e6b4b3bcef366f88fb0", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9a02aa8d613f5c966c36cad52463a240c92ec08c5229ab8df45fd832e7dd2f76", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f1337291cf64b5bb29c4be81cc3c4ab5104a2637a267ded4452a088cd2e03f58", + "regex": "(?i)^https?\\:\\/\\/btc1qgb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "555d73e3e4bb50b53757912bd391c06d49d1c3dff4b46096a0a5adb6a276d5df", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dc2728a36040af5aaf4bbd168cb0dbe139a1e5d1e43720b0f3bc8c5621fcf2d8", + "regex": "(?i)^https?\\:\\/\\/portal\\-ssing\\-sg\\-web10077\\-bme5d5gra8abcmfu\\.canadacentral\\-01\\.azurewebsites\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "bc4154cf847e5fbf475efa0047310ec945a0d3dfe386e3a0a538249dc5c029c1", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7c007e9ebb771cecc8bf8ce10534a41e2a26d691416e3291192d2cb4eeda1cd9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d6398976cd31731c3ee4e1565a7e9f422fff95958bb6c6567fe441e7ed6f9617", + "regex": "(?i)^https?\\:\\/\\/btc1qgb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5cc8e8d7af486c938aaa2855eeeb731abd8b0f2f15db653aa14abed99a410034", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7e4c37723e26f3eb925999bd3b222a2698278cd6bb9e7573216427965a8779ba", + "regex": "(?i)^https?\\:\\/\\/pub\\-5dde07a1ff934942a027e5b0d509e32d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "03970673465e2ae912d532e69c7ac5859ea69d324566a5eb85fdb7ea22304ccc", + "regex": "(?i)^https?\\:\\/\\/videotrend2\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e5903b404dfc1ad4c910543ebd23e03103bedc4493720e4408df55bd4927bfde", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "968be88d4822c00252ae5669387ae8ab7b316c25cff7b9450b1a81e3deb88c31", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "abe37cdc6cce96385b811ad92f913e46da25c50edffec3a3f64264920c62e825", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e7cc873bde9a3d29c6ee05ba1b2ce469efce6f1f44e7f7385156efa45f02619a", + "regex": "." + }, + { + "hash": "928efd381d784784000fade750d08e4f9c3941ab5d67a6c7f135a687d613ac5f", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3d68796f0395041a34c3b09864d648c6f2d8bd83a32e6f88ba855d400a867edd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8723c109b83413394cd7961f08e7c87d98cfb6b0c21c7fc970d1cdc05a82630c", + "regex": "." + }, + { + "hash": "493babc499a74f44481ce1a8d08ead9960dc30c54014e8711a91fdd0205919b9", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "71fe4b1ffcfd9941aa3cb14a20d3818824d71f9c95cb1141125dc694095b9f2d", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e1084e2beb1103af65fa8c9735f75dcdefe07a6d94dccff8f13cd7f8c16224c9", + "regex": "(?i)^https?\\:\\/\\/btc1gpy\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "31c31f109dcd51fcc9ae4de649ccf567e0f5b03ea53c4191f0de92d0e961f87b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9183[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "7181e0479009a9f386ef6ac96b9e5fded5ecd690a0bdae09d218e2fb49c91c0c", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "41970d5fd2addf7e2cd1997952d4a5e8f1e1a1e40d75745fea0a0164c82e7367", + "regex": "(?i)^https?\\:\\/\\/robuxdfs60kfdo\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ce928815500f27726eb459d3e6f82c677f1859992611d701f14860570c107b71", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a99d6d2c77eae485e7e98c5a6e76eb0582f072d871366aee51ef91c8471dc99a", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "711f503997b53484d2f45ed2201b2d96a61794b26afd17222e34e06ca8640015", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e0a2a8d4121f180ccc78d099b93188e68b6181284ab2c341459c355a289e1c12", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9fce88e630824cc38245a1c91e86b62459acaef3f8d481744376e8cb843da25d", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "52954e8f50584b160a6ab284b4ed7de816f4157b62cf99cfdcb542bedad546db", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "35e441689210b725106bda02189edda2363304f1734edb68bf1cc7a5ff042e8f", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cddae4a634cc556f2dd41e28d7db3803977933f3cda9a8711d27ce4c07a45f2f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ngy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "250efde6730e2d95101019e4c8b5bf2bd61bf49674e7dffb269c75668c914cbb", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "35be86400f02738b3f7441f87aec0bad0a919fdd242a13c0be867726cb93504d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d04038a55954bf8bc94707a0781384ac6b450359ca92f2c1a2bbbedf335e50f6", + "regex": "." + }, + { + "hash": "32ced128550cb151d9ec42ed7928f69139fcef3cdd977f440b3cf36273ed0a56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gov\\-ni\\-nda[\\/\\\\]+twoyknjrapqlbgczeimxdfhvsu\\.html(?:\\?|$)" + }, + { + "hash": "f93b63e9ee0a67e8dcd5657f3f2742b0ba9a08c27551677d80680d290dad7d42", + "regex": "(?i)^https?\\:\\/\\/btc1gpy\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5f899f9e9b970d49138e3ccce8e784881cf51b46f62959fcecc190b3413ec1eb", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b9f629f52fd91bfcc7da96c276853e9f811fc2cc27f42b5f351de7c6b0d06065", + "regex": "(?i)^https?\\:\\/\\/btc1rox\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0f95896a70a95b6a6a083d9207643fe8b5024fb365830aa6a2fdcfdc4dc6492b", + "regex": "(?i)^https?\\:\\/\\/btc1gpy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "81346d8b4562234f26a6a44d1d43b72c766c28f4c6714f898b8fdf42995adb6f", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f945ea5a1c7e623c697e5ed5ff99c2427e88706c6645896419a66e0b2067c340", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c7adb043cc3afb2f0a68fabbf2d374078097cb8bd4743db076276ad17f39b63b", + "regex": "." + }, + { + "hash": "e1a7129951ab1308606b570bc9eb42db3aa1269e3fce6a148ac6158594adf8f7", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c9898d1e582bd68e53d56b7683939ea623e58f522958bd907a6902b3af6e9941", + "regex": "." + }, + { + "hash": "99f6b998f8cf7c251146d44a1a02b4dac204643dab5b6bdc6d6a68b1c7b91f9f", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ef572d94142d0a10129a1d3b8d972cabce59f247b7bfa934bcf144db05a51705", + "regex": "(?i)^https?\\:\\/\\/btc1gpy\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d6324b6a51b459289e0fc42f12eb0ecd71001790b3d24e1f3776fda51e1978ed", + "regex": "(?i)^https?\\:\\/\\/btc1qgb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cf05dabb770b3126a34e137cca03a7dfe612a513c223d54e093f109ce3bb4cbf", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bcd1ddaf65fa205a8250c5c1e194c693831a7932a7c5a8e0206d71ca9d3c5540", + "regex": "(?i)^https?\\:\\/\\/btc1weq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1b45f45a67626a7fc496ee5271f947da1f52752b82552d9d83eaf7dd9e4fa741", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8ba1f33c2ddb08cea786147f1b90088ed48f497a52cdbb4cbc9e5f201ee0563a", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "96a6f1f2b25229a5d07506ce87dcc83e0d90c4095498324f0ac486a8045ac564", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2a9db373a44ef89c2ecc0b0b4b2c316df0c47a80f98a4bcf8f92237efdb96dc2", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5ed270f10522cb6ded1399b931a05b65bf5996336129bfed2362e23f815031e9", + "regex": "(?i)^https?\\:\\/\\/robuxdfs60kfdo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "de8e964472e20d5749ad02bb4ea56f665dd86d07b308ca19df0cb14cab6d5ae9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html\\?shareName\\=5845\\.b58459679\\.com$" + }, + { + "hash": "5ee00c74c045399a3a931f7ec8cd674ec58c9eeb974ee8f5a773ea6c431390d4", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5b3219064c782d5f88b9c83a893fd4dd3270eb5942ab516e99fbcec5fadf0229", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "52957a8a4caa373079a46d3f0b62e831f37f7c5c1220c4fac7d0a68dbd296b51", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "45033ffaaea2df8e106981093cc2a1db45cb341495e375096e53387ff0f772cd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7aafd1602bc9f52e6af94b7a8e6e5595660dff76737a98413831f24838d8ada5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c97630ce43646a4a310bf4aea984acf86d0560888a0e174f70378e7b7605826b", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "40ec5142fd61200216494cee2bd0160949c82304d8ff249137c89f2dc8a3689e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wpd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7db266e23dbad27874be4a0870a31cce2b5ef39cdf9a8992e6cec9aef7493671", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1rFX7(?:\\?|$)" + }, + { + "hash": "c8c3f81320d6c608f465799f509508e86d5e036e1364358da50db4e208337f41", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5dbf08583119b4bc255e42d92fa62399c4873d1279c98f78d7da3bfb3df2c0ff", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4443ec0b17274a607a64676bd2723fe8fc8f881e1298f6c89cc8c9004c5e3fc1", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9f6fd0ec85be2f9af34c47025135a96afddcc7c06dc7555f1d53e7add5a44f37", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "39f6b0c6bc3ca7d52cd9ed24905980831cdf025ddd56502f9244b8339d82522e", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4e72782f7c47b84ec840dbc5fc07c3e366d194a8b161f0cab617b8a239af7b02", + "regex": "." + }, + { + "hash": "c3589991568a9cceb54c94108cf2b65d99a42686faa378854cf65ee3fdabc643", + "regex": "(?i)^https?\\:\\/\\/btc1weq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4bccab1a804ce1d8564f86ae6abb638c90bacf3f6007a47667ca34ce2941295a", + "regex": "(?i)^https?\\:\\/\\/btc1qgb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8a253acf5f554c497c192aee00e55bc94a8cbaf7183fa8f562fb55a303a1e8cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c684ca33a6d752901818bfe5ecd82d02599afb94c7d57b945a11200c00b5e480", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8dc61c4a802577f81b71762756bb3dc3ddb9bda5e807886fbe308166a101d02a", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a2462de05293a3f259add0efe6e9677b00ab5b3fc054ce4eb2f576ed18697f2e", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c3c3d2e2c2d098bc21b070b3c861e73bab7acf931385cb70825b0ac7d7b8ec6a", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ae6cc2501e9d6b66074fd676ff3fb5206e7d46d4293552260123cec67d2ca7c0", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d4fa637f0ecbf2695e3353cb967caea55207098659134fe92a40764c58784145", + "regex": "(?i)^https?\\:\\/\\/hotclipdynasty\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f512108acfdce8c814a7a988f5070780fbc7ce22143f02353a19e4c46271da20", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "25de6144674e16196d359e4cad96fa83baa2c24723a7890e5564a199fb853583", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4b39255103db7ad65ff5005a4cbe74b9f92e14faf46a80b1b776bd79f8bc3995", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ngy\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0ff78da1b8e9a6ec1bf2b1c180e9b319c68183e361a421a0940a0f702db21483", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "521059961fecd47437f234843ed837f61b271768a017a34dcf3e4f7d99fb0fd3", + "regex": "." + }, + { + "hash": "09281c50da070d584a12f00474f219e256fa64bcbddeb4ddbed7879670e24259", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "27281dae44c41f55e843ead766e218dec4c55cb618c64986eb3f9a2029d99288", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d0d6721b158ac392f0a1ad6e814a500239b53fbda06d7fb680c8a799b075e0eb", + "regex": "(?i)^https?\\:\\/\\/amazon\\.iypmegu\\.com\\%25E2\\%2588\\%2595muxcfe\\%25E2\\%2588\\%2595yqyhs\\%25E2\\%2588\\%2595dnmamkkp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zhghsa\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4413399b83242711f21c6bd6276d84aeb098e46c4a3ebe9ae90671101ddce4f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3c20b2ab5854184c21598ab393630abcd9de5ccbb65430c059c94b9e0449d24d", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fc5e3ecff3ebd0da8dd6f4818f7dda1f0aa53dfdf3c45d38efeafcff54f6981c", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9c6a6a33515a56a0882728a19bd585e6337932a050fc612d97a9544544523c1d", + "regex": "(?i)^https?\\:\\/\\/robux60kfbs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "81ee8a543dbdfdd380bcc6ddbaf799c33b3440f015ce2c872e5ebd7be73475c4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d0d6721b158ac392f0a1ad6e814a500239b53fbda06d7fb680c8a799b075e0eb", + "regex": "(?i)^https?\\:\\/\\/amazon\\.iypmegu\\.com\\%25E2\\%2588\\%2595muxcfe\\%25E2\\%2588\\%2595yqyhs\\%25E2\\%2588\\%2595dnmamkkp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "f26c1ccdca3e5f456503b68e81884f65c8ddb72afcfd0abc942469def59b4462", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1e667704ec0fc4d22304606a68c0f8533b98a9b85f975854eafe49f80ca91c0a", + "regex": "(?i)^https?\\:\\/\\/robux60kfbs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d4a4fdb6abe9a4006c36680992d50b9a65d4ddc09742d7e94cbee148597ded28", + "regex": "(?i)^https?\\:\\/\\/hotclipdynasty\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e754ce7ad4589ff643729d06f57645cf8d64a84a93b0ad1537c15458edd8e293", + "regex": "." + }, + { + "hash": "eee7a27318f9891cde67719e937ab1b22e1eaabd7a89f616521021f8b8922061", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ngy\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ac5f7f28720ae17b0db39814c25d4b9e0fb89d4ff344fe79afd3124f50987420", + "regex": "(?i)^https?\\:\\/\\/robuxdfs60kfdo\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fcc067ec69938969e3ebdda063a4194db502fc527ffc178c28e59f0de23e451d", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "337e52dec6db49e5c8c06248df6a81b8e08b2ce653bb74d1caf697c5d44cfe59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+TW(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d9ce213136a07d9c0589e1b081890802531ec36ee27881c539c26e043e803a25", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "048ed3d496575270a4adcff1558890a298d68baef76fa0ef4d92082e16ad00b7", + "regex": "(?i)^https?\\:\\/\\/videotrend2\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4ec969f6fb5a4c6a29666817b9efa4601bf3ce4f68275ff77273cbb63e6dc447", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wpd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "864c2de4c8ae5344ff3809f9b5e7962b69945d8ffe0c48de63a0eeda9d4257cd", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b81fdcfa59503e14b3ee80d365c265a2c2140963e7d8a2e33b15442652ae7e78", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5ca7d3f80d9da44160b61764463e411c830c22fcbd7d686ad3a5ce84de1e69e4", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "79ce210f0062830289fd0a785ee1e6ae98b319423f30623fad842b89b8d9fad8", + "regex": "(?i)^https?\\:\\/\\/videotrend2\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "866f134629dffeadd8f44a4cc7cb49c18cc03abc98f71a550c68c3f1603d3dc4", + "regex": "." + }, + { + "hash": "51a7dc65036bc23be39e67b52fe0881ff8426aa8cc6ab1ed7573c6fd45cec6ca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gzz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "09a74391716a804fa217fc1ea491db634838bb4c59853aef61481c79bde45f2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m[\\/\\\\]*\\?c3Y9bzM2NV8xX29uZSZyYW5kPVFscE9kMms9JnVpZD1VU0VSMTMxMTIwMjRVMTcxMTEzNTU\\=N0123N$" + }, + { + "hash": "4f5571d9c7da76776a5d3ebf7850daa0b812bab40f715fdaf55a6b03bfb38521", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "640b4a8adb1c79f386d6cd909ce6ba0f939430522f693ae8d63b679d792528e4", + "regex": "(?i)^https?\\:\\/\\/btc1rox\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "827ba49f97eba1f5c51b539fa02c909b02708f3f1030497af8335454413f537b", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2da36208612a29a60786ee3d29427cc9118665fd11bde41133b1900f73a131f3", + "regex": "(?i)^https?\\:\\/\\/btc1wnt\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7062ba14b63d7817e1ee3ebc3ce8471f7ba50d735b7d54286ddc20bda6c634be", + "regex": "(?i)^https?\\:\\/\\/hotclipdynasty\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c9b4288c392e265bd1239917717c954a133c7f9fb1d79b613ed66ddb56227fab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gzz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "318a8197e35afa2f69282a4e5310820ab5801b7fd2a880e963ed9957ecd6945b", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "950cdb6b5c0df357042b737d51393a1bf61f4d2de5c929efae842ba5db4ba732", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ce7700eba599f4e16b24f48770f06e6ea24eb70b25330eb70c26ac40f3471400", + "regex": "(?i)^https?\\:\\/\\/hottrendspots\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "37ea2e6c8f16d1dbd50c4b8b12b73bd23358eedeac754a3fdbf1c8ccca2c71a7", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9443db9344833ccd19d9a4d8d0120b9145de808cd157612073f78af98f182abd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gzz\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e7949990cefde4f6a41776d886264bca757ed8b51d8c580f74bd4b3f2aaa0f33", + "regex": "(?i)^https?\\:\\/\\/hottrendspots\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b57cd8c172232ae54a82e6be104505644209da6c44c1e8128ae26a12d5f9a13a", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "161779a5851e919fe283232249c8980a913d1041c570f19aa518f74131bc8f3f", + "regex": "(?i)^https?\\:\\/\\/robux60kfbs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7b02ed48fd1f628988ec7d2fad359a56958519613e3bf27f86112af78a98a271", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d5facf1dfb68d525b2ab64da38a8d296ff21ae245e5836f6ff16320c48d012b4", + "regex": "(?i)^https?\\:\\/\\/btc1gpy\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d516d6e1b7bd422f3a2e79bacd6b62ea41442570e22b0445de385e938f41e468", + "regex": "(?i)^https?\\:\\/\\/robux60kfbs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "223cfe8f8b40e71b3be04c019e884fb68d726b9628455975d0b3a4d8385655bf", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d0d6721b158ac392f0a1ad6e814a500239b53fbda06d7fb680c8a799b075e0eb", + "regex": "(?i)^https?\\:\\/\\/amazon\\.iypmegu\\.com\\%E2\\%88\\%95muxcfe\\%E2\\%88\\%95yqyhs\\%E2\\%88\\%95dnmamkkp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zhghsa\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a6e3ea1b2fa6eb97fd62f8594c67109f0ca8f58513783efba90a0c5913563659", + "regex": "(?i)^https?\\:\\/\\/robuxdfs60kfdo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6403f60f95db98864f938cbe1e7d24064fe23d9de1703e725aefb0774b402416", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8b91ea959a72ab87b19b0bf85b4e56e49868280c702b450f9eec2d922c753585", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gzz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a5079941f4f13af3e5237b6c099f2ad7e146592d77976e49dd1e2665a0a356c9", + "regex": "(?i)^https?\\:\\/\\/videotrend2\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6ad1f0bc971e1a8a377d09210dd55229f60f3d5de92e34f884b1ee2e3f7f04fc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "178d6a2728c11a00ff12b216b6db91ea8050b9a686383ee311b238e5c1ef97a7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2d84311481fc463167b256f0d635634720917af1614aed2779dfa514d941fc8e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "292d02cd6fca7e45fd2c7b7eed723c18a4b9f998ce178408aa450fe3e247ec61", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b20d04a4fd792ccaf852b4613c133e0d1a4ae568bc05976ae8893bfa944fadc1", + "regex": "(?i)^https?\\:\\/\\/hottrendspots\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bce872a24e0470ec74b17e7abb66abbeb654d337c6be5c719f916e0718c13a49", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e02f36b6883a9f8eb5ac9e6125bac5b70e1f1c141627e6d7016a735ddc75b048", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b87e1a4bdd01704f9e392c1eee41ede0f2c3ccdec0daa96297e98a81eb51af1e", + "regex": "(?i)^https?\\:\\/\\/videotrend2\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "05c16b5c2bcc5bc331b25a0dfeb4df44284490722d1f97901c209684a9959629", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wpd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a7c5da456033fc63eba49e2ae44cb7d3ab05576c2df0ffc17828738772dd5a2c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c7ee0f9bb0fcc2f8b22bc971d6903ecb6ec70b2a12e6aecdae4c6db260836164", + "regex": "(?i)^https?\\:\\/\\/btc1weq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "634fc13fd82a87caf4a2ff29846b1f701b23fac399952abc18f944abf9e957dc", + "regex": "(?i)^https?\\:\\/\\/robuxdfs60kfdo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a8519da7b6c907600c937d62a56a905c949ebd877789f4b6b35da54575f9c721", + "regex": "." + }, + { + "hash": "a4fbf25b52534a3e45c823598dd330b43f4482a53155da2566d02b1f8e450ca8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6c7030162f6851885c51d3a0d17b1d8e4556879c941c76dc156022210fbd5b8f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gzz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "25c92c57c81d3e68dab91ef1c6483389f4308243e25d5b3533ee7c490bb4aa64", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ngy\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6e0ca1b58d8133a5b6e55cd96f208ee50171ac22ee407316fc61dafdab83c7cb", + "regex": "(?i)^https?\\:\\/\\/robux60kfbs\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0f30fa2d0fa4608192ea4239a36c088f57817caf9f5783518524a1ebd5332ef1", + "regex": "(?i)^https?\\:\\/\\/btc1rox\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ca286c972a153e47453e8f22a84ab3ab097652ff2e32d28e82ed0edcf7cba6d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appw\\-33" + }, + { + "hash": "229ea384eb9e92fd7289eeafa4b8975b60763e0de3ba6ca514a0e927f64ec377", + "regex": "(?i)^https?\\:\\/\\/btc1qgb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b02b35e9d9fb5f3042ab090b7483ae833b86e86d1498b55bf8e1cb1ec5fe7000", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e88cd7894573eb42da2007f597e3836879280936c5413258db43487dc7169889", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ngy\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c9458da373eac0a9189b6336a0966a9d80bf4f0d856e5e3734462fae319a1f93", + "regex": "(?i)^https?\\:\\/\\/btc1rox\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cruvv4(?:\\?|$)" + }, + { + "hash": "a5c96b05da78b69770c6a76c130d8692830d9f6f35e9d6d9402a0d6b929d0040", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d45d0e3ea8cbde936700d0361769ab2743c406918e744418184290f22be136be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gzz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2f1c603ed21e79cd4a6888a09df9f97aaefd625a6f92f697a2518aaadf6b4ec2", + "regex": "(?i)^https?\\:\\/\\/hotclipdynasty\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "dad6385949c60e5bf42386324b7324cf9100adeaa6907889b66230c0b1b156cf", + "regex": "(?i)^https?\\:\\/\\/videotrend2\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "acdbcb8c0f8866304d48f78001da33065cc2564c85ca373c43f1c132c00dcafb", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b9b33505851b7eab5949d8e37f2244dda5486af42f3b01611c2ea2b6e0f72ed8", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "98e38b3cd4c7e2dc4b69fa1e4132a35ac95d31f26f87f929e9da1ccaf9ee7901", + "regex": "(?i)^https?\\:\\/\\/hottrendspots\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ed68d76c9ab976682dce592e39ccbae3ec58af8efc9865aeb5fd587461930d3a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eed802302fdb9c55b908acc65a75bc444b2ff8356f6dad72d9bc7029996549db", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1f39aea61cf09c7e284bb11d3d0cb57284174190aaeb039867497390d1fd0c0e", + "regex": "(?i)^https?\\:\\/\\/btc1qgb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ab7d6b04156ad13757d9a7c1cdd24f381db6bf655460c5c55102b0254c259f04", + "regex": "(?i)^https?\\:\\/\\/robuxdfs60kfdo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fb005c69fcedf287142663aac7c445fd80d1132b100f8af1581310bdd0665f14", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1c39f4f1e38afec00bb03343ec02b6f3e40adef5f427628234bf291e96643ab0", + "regex": "(?i)^https?\\:\\/\\/www\\.us2\\-s1gnapp\\-coinbase\\.145\\-223\\-75\\-216\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "10f1f2698bfff01181098450cc6b2f930a96160ae01db2f2002f4813b86a6e78", + "regex": "(?i)^https?\\:\\/\\/hotclipdynasty\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "99e624ddf2b49330b45b299b2df473b6985dc8d99512b88057b2e6f8ce440505", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "72fcc47e11e5d85e3e9ddf30ee54950393bcf36600e3db94bac9ab6adefb65ac", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gzz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c14d288c6b6db22db09673f091005cc4a4b1b163a38913abc0662a2bec5ab5dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ngy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "83c4cadfa287dcd7054bd65c4c69d893a9c8ded7583df2e43166dba9040263df", + "regex": "." + }, + { + "hash": "2451f2216c953cd65f9f37f57a4683fb44d989160403841f3523502c07f105b8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "72896096c64fcde3000a252b93a3d00975c357718381c36fbfc9cb5a27c41d59", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "61d2ec3a9fbe2373dfd135095f16f1046ca26a14d0960cf2a2080021e7a30618", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "908193692491322de835c9fe4bbd182ee9cb0494f07031efff3a5ce617fbe504", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "42032e73b1682634c2c51cde4bb829a2c5c74e7d342627d76473c3e4d6a2d687", + "regex": "(?i)^https?\\:\\/\\/hottrendspots\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "55f1e663669b44f54e02cfafdab70893c336710249e8084f4bd833a6cd3c4f43", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "59416bcd9f222a00735df8595fe04a64b9595072411311fd39ce73e427e93511", + "regex": "(?i)^https?\\:\\/\\/videotrend2\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bb5936940fa00a4a040efeb4ce140af0eb40b78c6a202c312564aaa2a811e1e5", + "regex": "(?i)^https?\\:\\/\\/btc1weq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "78e0cda2d230e12f9befb18c002903066d8332da7e60a2069eae96b534aca426", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4b197fbe393568dac8f3cb215aeadfdeda12d3156056a1831969e2d2cce4f130", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "72bf62a4e4645fb1dbaf98a679f3c7775eff68953fa8accb1ca9980a1aac0a16", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0ce0c30d3558843af8210e110e36a80f496cbd85ae11532c5ff994ec28ea1972", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a17946a24743128118f2896fe61a2d05991f4ebb0f28048d703103ece8ab1d95", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7f9d1902da2c88bde36c8217d5e5a263119c2872b0eca97ac5b62dd67dbdedcd", + "regex": "(?i)^https?\\:\\/\\/robux60kfbs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "88000b84a97650c07922ec25edeedd3cf2a0547caef008bcd274c9e525092c21", + "regex": "." + }, + { + "hash": "6505e881b37b00448ee641365693144757056739a09225552fd1fc05dd90a7a8", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "23cef4e2e507670479ae4f1b3bf76389c4c364990ebf8467a76ce2102b1db9a7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "16d26290c05816c5d28b8d48c2a05c26800e233d22bbe9a5c177006e161c6f2e", + "regex": "(?i)^https?\\:\\/\\/antaigoufrpaiement2024\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "59ee0f6251e267e158b7b181157f180d74cc342ffe0bd3cf5dd0f09eda45b43e", + "regex": "(?i)^https?\\:\\/\\/btc1gpy\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "adb1fe821245934a56f88d8ab0f94328678e60098080a1a7ade2de0196565b01", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gzz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fba85033331debe26290ecac5cfb4da1bb690b6c409563422d47d7eba76fc77f", + "regex": "(?i)^https?\\:\\/\\/btc1wys\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "15a8fd86b2145210ae613b84173b28c89a7437d93f9bf66bc57e059283c72e94", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "59c2ef341e02d9d493109699c956fbfef3bd445ce822a1d1271a3c3c6ad59f64", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ce86e567f9686f06d39e9ab2e5181b402b4bcf294c9a491e85b1ff5e5c1b4c3b", + "regex": "(?i)^https?\\:\\/\\/videotrend2\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "38a461b61d9cf2d250c22efd134b604812d4e5759b50906f5134b0f95f4e38f3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e735edb75b52b49f0f5bf42a4b7a5348d706184eaf1891b4b6e629dfe5d14", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "01e28a78c9e27c92146bb633e56cfc08d294947e4d439b73e2be7f9d43ba1dd9", + "regex": "(?i)^https?\\:\\/\\/att\\-10\\-login\\-08\\-99\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e4bc8208f6cd066feba8badbd28f32dd0ac153399d5398e40e54a9d6f4d049e9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6b782d0231b1c6d59955c3a10030cf011ef0f4be01b2b9adff09c72595bfb5ba", + "regex": "(?i)^https?\\:\\/\\/btc1rox\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9eb52afcfb5baa2974f4926499c18683c5ae912395ca99429bdfb4321830dd2e", + "regex": "(?i)^https?\\:\\/\\/hottrendspots\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "eb63b2f9eeab028f35cc5c265ac8a523b462a5b3cc4a2789a36f3e85ce6b5f27", + "regex": "(?i)^https?\\:\\/\\/btc1gpy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f53c61d2f520b225ec1a91f8ed3e8d0251238a7f64e73343d4b93908bbe4aedf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "47c0216ee9cc632ff465900c00e6229fda2cee7332342ae7435cb33c71620f31", + "regex": "(?i)^https?\\:\\/\\/btc1weq\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "401c8defdff0ac2a5c53893b9dc0fc5c90394bcf8e15dc3493a9ce6eda369d5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5d2d9ad0d04b9315c4f602bb71d2b1c03aec708af311907047174a710478fd58", + "regex": "(?i)^https?\\:\\/\\/btc1her\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "17b51d25024fe9c4c8a9912105325c5a7a0f0ce11c062ca4cbc298653ff413f2", + "regex": "(?i)^https?\\:\\/\\/btc1jyf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0b14994cf14ffc1718becf3259f6896dd54d18abdaae8f9c339cdbeab65786ae", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8700934ed5c112adfb3ad40573481d14e3565364f3cb6e425623e970adbf4a2e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1owe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2d0efb9442a9482f10f97cda46f5ad422c5f2821d05b56bc94bfcf84ce40de53", + "regex": "(?i)^https?\\:\\/\\/btc1htz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7c5292a2c6d0655c722358e2ea07e98fc255781dfca6f7c3284d77c7553fcc41", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qhy\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "786db83b881b09535fce70fb940681a4f999c0c4669cb7c6750c8ddb1c432c54", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ngy\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e8126f5d0cb066d7af6376adb6e1bbb6c57504fca57f71e8930fbe4aa2418fdf", + "regex": "(?i)^https?\\:\\/\\/robux60kcsbu\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "048cee46de4fe9b2076e630b8f0bef16bb29c3dfcf08d73d1b3a755f6df71340", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqe\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "56bbfcd0b9d6ba7df09707d7598a2bb97bfb76b07a3b3346e292ef2b38da1087", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5845\\.html\\?shareName\\=5845\\.b58459408\\.com$" + }, + { + "hash": "11e56aaf7003882171bd1613975ec4ea7152099cd0a06f32f818defb9bee106b", + "regex": "(?i)^https?\\:\\/\\/btc1hpo\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7622c68e9fbbecbba9384c63c721754129ebfdccfc8cbb3bd0be2929bd89227f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "57d28c5c94dba10788ac3469668f883bf765028f3b798f4ee76f7ed5138ed4cf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wpd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "14507dbfbf4edf24bdeb7eb5687156916af76b6c68d7b127719ea3d59062bae7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d15d3ec4eb7d4ef58efc17a25127c9274d1d559c5ed3ec0ad004a5a4cd43c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "65e877f2ca7f696c61d5e7513bbb03d9e8eb6a523254c4d27ac1b70e899a8958", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ngy\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "882d562b0fcd41985753f1bc98788c00ef6834aa629c1e1098f28355e9284186", + "regex": "(?i)^https?\\:\\/\\/robux60kfbs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "030d48403e8aa660c84bbd3a0b2991450f93ea230da5ceac2aee3fd5f49db014", + "regex": "." + }, + { + "hash": "9d16955e352b775ba5cd475d1662ed87f23e55e3d3b1f744d7314a1b5a833cb1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f22a706c36190ef5b9d4342d7ea46df9866c257344c7a63f1fc0571a02de70fa", + "regex": "." + }, + { + "hash": "70f3f081952ce04451065b6645f4a5dfca391dbc40bc86be22c9b5e6cc638843", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3c015416819e91e4ce28f332f0a89c5afe6ab6986b916b3673c804385a81170f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "52c03a049f7e6e649ac0a330eecc7ad61c2a6d78ffc5051b1619e9dcc5103060", + "regex": "." + }, + { + "hash": "f7cfd72d2f78b384fe7fd23ad6a923c70d066a9dba18c4d3b5f8cff970fddd68", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6e7ef0a5909e47c0c23966dc809524e2aa9532038074e86a42a8bd8ffbf28c8a", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e8fc72edbbaf6c2af3734459c82f85dcb7696382cdb2c2ecba605b4ef8107ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "9dbdbdbd153e8249a45580cf5328b5140d7aee918c5f8cd7e6342ecf139c3caa", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "234b3008457a54686a81267dd87fd125f9ab1979be007d380bc67e3d51e869f1", + "regex": "." + }, + { + "hash": "91fca2f63c7a2db4cbbb600b04b2465a84dc0c43b9f8d924c3b4db1c7709f71e", + "regex": "(?i)^https?\\:\\/\\/btc1yie\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "76d3c06c330e1e852eeed8d1ff53845649b0a366eb562a49efab395ddd959529", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6d751a829db828a66e13169b0f5a303f3a39d641ac1930fca034a76455ef92b8", + "regex": "." + }, + { + "hash": "bd1d2861c578fbd44857885ed2a27fb07eaa00c78242b6b4fe928070535e4710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Drop\\-Womens\\-Avery\\-Square\\-Rhinestone" + }, + { + "hash": "c73e2279a67de2caa79693e9b833a0f4527415288b9105bc508d829540a8ef57", + "regex": "(?i)^https?\\:\\/\\/btc1giq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "914f4f10c4b592f6ecc0d46392e6ecd004de28178847129c731589fc3b809ea4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1weu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "64fd67850cfecc597b471606086475fc0c980c3595afe498d6b516601cc03fb8", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "deb61574cb4c8423a5914ce7fe34cdedcf082fb1ccc184ca3c783dff82d3578e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1weu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d1a7201cb44756c3de303c9fa8700351f7d45aa5c93db49e01d1bafe8a3548ec", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d10a2d2d52f5d00caeae6d84873f7de96d47813e45335cab24b1604675fc96f9", + "regex": "." + }, + { + "hash": "173838eab2069e16abe0e7eeb7f42b0527230633b6a17be17ef64491a496f2b1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "82c0e73039c475afeeed7f8391f0d909b292f4f6ea9ccac4c5b16baa544fcb61", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "923a4e462868236160360ea6163d6578b01aaaec21cc570b9eca868beb2f9271", + "regex": "(?i)^https?\\:\\/\\/btc1giq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "15e2f452c22dc74ab847b80991ffc20d56f303e14a8e1ec377112d6971758329", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1koi\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "6c50fe9c776cf6f2c0b634db6d51f3dac6717e5e552f485960c0653d9d2c300a", + "regex": "(?i)^https?\\:\\/\\/btc1qtt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3086cccafb4536b0559fe2315ee8b3ffb97f9ad442d38e45b8f0ddf4cf122b17", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "02fbdfb531b8e468c53deac18ceb22b9707e7086c712e4a4b3feeb3830aa6f36", + "regex": "." + }, + { + "hash": "6dea4d00f0ffe1094534b62184b764b40df1e66579fef920d2559a07c78e7f98", + "regex": "." + }, + { + "hash": "32b915da5175b2df35bf6e2dba6c764fd4a39095e46d8346aab0d1e331f1b3c1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c5492da06c54b8dcc90e78d2304fa2696809cd293cac1f495d618d32cb0e8884", + "regex": "." + }, + { + "hash": "cafdd0b2297db8ead6b632a2db4d36256c198f6ca8443e6ceceb8e0030033475", + "regex": "." + }, + { + "hash": "1943b5eb777d7e363e51de3e7bb92b129aff88f8efc7fada0cfc91f27a209afc", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d877b37bf28aa6e4b6de9cbe76f18e5833def6744349330f7233660f3e005236", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1koi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0656700cc56d7980e124d3bfacf676f8c42e1949c69bc84ec4e348836c609e0e", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7556e157c6d9db206d9a8bfe48b36998d1ed3f48d466b4787f580faec2050c23", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "df5560d33c2e903a4118ea23e7d60a4615f340934b3c4d1d3f24747865e83087", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a78ea7b85ad4a8bde8e30bf1a2c9e94499cdc09cdb24123edd6928fd2a8b220d", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "702a88ff7515b5663d3d1ca3f529c10b5ae12e5001294e7e8872d405c3d20d76", + "regex": "(?i)^https?\\:\\/\\/btc1qkd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "accb08938869c0859bba6ef9d877e4467742730acc8a6405a3772c36ecf7bca8", + "regex": "." + }, + { + "hash": "f5fadef0ba16b8e720721834bc284c071a77ba8bcda2994be484bb64bb175674", + "regex": "(?i)^https?\\:\\/\\/btc1qtt\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "df828f03dbdb3ed1491830e91f9d95384adf4c1f87ac1d906bd4d82d89ff2db5", + "regex": "." + }, + { + "hash": "00a917df2e5f99120310ce260c3b3a638466af32faefdb4320b486fd9bdf9e16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5ff2e1653294a8425ee1f62d177b5a98e2cd2bbed1287ba6d51c08ce35394911", + "regex": "." + }, + { + "hash": "a85155c6af018ddf380ee11813cd61916f243b56ff28956a6fd0323fcbeddb65", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f45373cbd8f0fe013f8faf752e5d6bce0863400db09e01357683445940768740", + "regex": "." + }, + { + "hash": "9beee54a8b4d326b9b220b913f7a4947dc527a9d9002e19e40c0575f411c780e", + "regex": "(?i)^https?\\:\\/\\/btc1wyj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0340442c1603f491c275d7c01eca1903b1645d0ec29f02c9df8cf9805d500b34", + "regex": "." + }, + { + "hash": "2ac269c80b24a4193d63a60f2cf97032f3b7f43ef4ce34eb430887fac6f392b3", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b74ee80fa674d083e093581a1db58225e76e367c71b43acd3cb90b6524f8255b", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "852f58dfbcfd0aaf8fcddb8d821913affb6ccc4c482938aa66447a44179d7853", + "regex": "(?i)^https?\\:\\/\\/farrah\\-48silver\\-domain\\.tiiny\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "c66c837764e2ce92bc00c3edc86e48b335cabfd3bea7b34626a4a6f401159066", + "regex": "(?i)^https?\\:\\/\\/btc1qkd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cc5744f211ec8445f9e72e0020b7473bb2f0f0055ce3c166c374bdf379754d9e", + "regex": "." + }, + { + "hash": "10a4502ec17a7119c01197f8dd381a095773b4ed6bfe0a657075a3bf1bfbf8fa", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c83dbe4d638ba562d61db097ed919d4a507181bf66eb4faa4edf431c6a54dc2d", + "regex": "." + }, + { + "hash": "49a0138a4a7e29baac54d798426e321fdf60c0a384f77055147b9ef17c6ad6b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "c82987ea8681dffcb8d58ccebf7d9c4590433643766250b81f9deafa50b66dbb", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "1f083e01ea9e64dc6d9eb7e131a76de5275720d17b7329bf4f2d037cefd51c95", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8712f153b4274cfc87f97e189b679f513afd01ebc292a8c58f844b1d0503b282", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+proxy[\\/\\\\]+request[\\/\\\\]+376861fa5d082a9ac99d549de7c6b40d52d6d(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b57f8242858e6b21b4989777a35c51bf8894e094b46c304288a4dbcb94003740", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "71893d71a93dcc1becb9c4bfa76508498bdc05ec05fa41e22d3cba709b34a519", + "regex": "(?i)^https?\\:\\/\\/btc1giq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "904d473f72e752ac7d77a6882e0f77b01a59404e6cdb1c577a072dbca4e51995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "f1ae6d72b3d57abe986d4af7984f0a58f664b3b2aed6d5777b0de457f87d0cb7", + "regex": "." + }, + { + "hash": "18c93396b2d621a8ff2d6c88bf3453b87690e35f27e17867d581cdd64e15784e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "05b8156318268a73bf28e49bdef73a03ba30565323427805df72cde9413f83e1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "861323398b5c3da584694778c556aaced7300583ef646ca8286321b5ebb48cbf", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "490f3a8e674293cf547c7b3d302d0e8da7795e2eb8e2a225d751d6f0c642d4b3", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7a357bd3b43f13d5bb9da5a9f379dd1116668e26fdb1c7b40ac674171a6b75f1", + "regex": "." + }, + { + "hash": "bd76b1513c42b82877346b3bee912d092533d5fd8f7b90dfd43fefee84289297", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1idf4h27q[\\/\\\\]+l\\?btd\\=dHJrLmNvbG9ueS1zY29yZS1yZWxhdGVkLWRvbmtleS5ydW4\\&exptoken\\=MTczMjQ1MzQ2NDk0MA\\%3D\\%3D\\&lang\\=en\\&lid\\=7dd5a582\\-b0d4\\-4d5e\\-8984\\-002c286eefeb\\&pd2q\\=YTE9N2RkNWE1ODItYjBkNC00ZDVlLTg5ODQtMDAyYzI4NmVlZmViJmEyPTZiNGViNThiLWY4YjMtNDhhNy1hMGNhLTA3YjYzYTEzNmY2ZCZhMz0\\&r_countrycode\\=US\\&r_lang\\=en\\&td\\=dHJrLndlc3Rlcm4tb3VyLWRpcmVjdGlvbi1taWdodC5ydW4vc253ZGFydGY\\&lvc\\=d02fcd58$" + }, + { + "hash": "178de5668b83dfd37f946b1a482047116ae633d738c001dccb9a98f60a5af52a", + "regex": "(?i)^https?\\:\\/\\/ooowarai\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7c35becdfffb2c376c260789020d0660a1f4c1d664d89269cc78e80e082f6eaf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yus\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "60d9441b4fe69c2ce6dfb1c2fb4839a80939d962d3ce01eb4d56fdd6b3cd8fae", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7b3c3d1db083c5d014a6b797635da9bec944c7b82f3f30573c5a4a89dc4abaab", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ca9623257234d85a00413665b65441a75d8fe467da9a0a4b419358de852ca040", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b9feb3fada29cef67f0b1a3bdd354efc3dc6efa42c33362d35969d52a363e26f", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "579a1a5df4ec293699819cf9e2b4fc4aeb9b9eb4e212f989c51ba92ba8aa2229", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "efa420b2e0dd3724750122c4defac9ab440e4710e779feaf262c05c3aca67c38", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "37221e9cedbb25a6cb8c618531822318dbf0ccdfe391e0e635b9356706b3f335", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yus\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "36fd8c14ab8b0c2febcd7eebcaf7b3a642e4492dab8fa4062e5a920bca7ca599", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e393acaa9be921378c4eb7092ab6814c0eefa1d55ae055d50c910c4a88707c9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8e73763128b05ae0fcac002d07fde563197439744904b65ef1f256f1baa2706b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1koi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b2f6571f4da0181e34ce6a0c846f02b54fda2b9b26d0083aece7edfc600b1c26", + "regex": "." + }, + { + "hash": "d243239e01c28b63d4480979097b98c41afc69fce4154b0b86e4789054ff0ba1", + "regex": "." + }, + { + "hash": "82ff844efc70c15459bbaf9dc9d64ff003bf2c84b26e1c69c077f44aa4867986", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a2ca9b36f750110eb1c56a5d64e03e6d5f18b6eab0ca43fcea01b8db3acb718d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "04801089814b1e5b6a9c144d1813b96f77c486c0a7a28e11ae8cb5ac9e3d2c19", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4a5c3cabdc2643ef3cca70c83e214c1d1506ad6737f4f98b651286f2b87abcbb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1c675394e75994965030e4f0a6366f676ecce5fae9faa11d07f0c565c614adc8", + "regex": "." + }, + { + "hash": "a862f126c0c06d924dc4d0174956b0c7155c25d34a299a41f3eb6512999fc509", + "regex": "." + }, + { + "hash": "a8dfa8cd05bc8292760463d9ad5d09e30e9af306d7382d94b53921324561edd3", + "regex": "(?i)^https?\\:\\/\\/btc1yie\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2946593e737ceeeff10a8ba09e340cbab67ba301eca7102d300ddd62b8007a1d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3191c3a6c4e723dab6fcb97ca23f4f09cd8385b8103f6df4efd1ed5e91d2a2f4", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8f9a21e59bd7d08145f5a9dd2509edbf14fd9bacf30a9247ad1f120b25a668ca", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e8c93b7ded4924d9584d4db282c4d0e35cfc55ac41f0d083021d674caf80969c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd04c869f5d64ceded484901b5e4b69c0e297f74ec585a98e70c1940f63ff5", + "regex": "(?i)^https?\\:\\/\\/btc1giq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "21c587556f896c1fc49ca7c764f411e151cb1da1481ff9f190cd70f54ff5dab3", + "regex": "(?i)^https?\\:\\/\\/btc1wyj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "dd23a186c66814c9126f5a5e0a781c87dd34dbafb5ee5642361bde46870fab98", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f7d2a64c975f54381c3daa4b3dc5ac1969989e927320cd925deb1b4734e2720a", + "regex": "(?i)^https?\\:\\/\\/btc1qkd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2930f13b0ea8387cb7a3d1c3cdd285ed41b5d5684554e6a36da7ff9593e2a715", + "regex": "." + }, + { + "hash": "38c5a0a2067c41310cc226bd981f932c770a066b17a912f431829e779400cfee", + "regex": "(?i)^https?\\:\\/\\/vnfojokdpkgf\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c3e01f8add6620ed6cd5a42f46570956969ea6e93c372ffb6663d30c5f337956", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d56e8bb013b4ddec724522dc3fac043343a307900543cf0c9fa6a9a67010736d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4423a0943885ead9110bdaea5aca5f2d60860b9d75ce4f3a69aacace0cf62d0b", + "regex": "(?i)^https?\\:\\/\\/ooowarai\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "88ab1e1991ea805cc8c74ac412b770da7bc2cefc84e96e8b8ac3587ad83e6f33", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3d0de64ead2d90286c60dfd8e027208bc3812742b87589473b7d49977b931393", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4a4e6fcc7e2b7bc194ef59cbcc19405e40395e87cdca00539f8994e7a426a760", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "44eef89062fc651a6e4f9d38f39845b447f4c7a85294d4d84003009921c540a8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a42e91e3c215cf445141068b512c65e76b4cf152ca99123c8e28e3279fd0d205", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0b0039de591417c68322b34aebf3791d1a2c075bfaced736926b20dae7e3a4c3", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d83eaa09a33722465c88fe2f3362a9d9b9ef3e2dbc80a07e757cdcbf4e165602", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3553855a78909e31cb418d496a5474707f2c73c720e7542c6e9aec4ce1eba913", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "412dd0e5873900edea10a0599b1f49b39b860de06c0c00e4c5c462204aa96c66", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6deb1bb28c06869157d00bef1b23c4aa46ae17ef69aa9443a3d48fb17b75fc2e", + "regex": "(?i)^https?\\:\\/\\/btc1yie\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "111f0bbe76f4d0c658fe4c2bd65074069e80528dc25b6ac46f24e3b4f13ea8ef", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1a72cca53929cbcad767d5cd344726686462eb662a17d37b701d7c4a422b1f0c", + "regex": "." + }, + { + "hash": "74f3a242f52df496c22a78b30393171d1b8c84dbb37fb518e072f4bf7a696352", + "regex": "(?i)^https?\\:\\/\\/btc1qtt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d36de6e644581a9aad4fb091df6521700a1e043988e3b6dad4a9408e3686ff28", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "baf4e50e95ad83179014af8aab85140436ba31f9ad209fb26846bdd83b62a5a9", + "regex": "." + }, + { + "hash": "b0a5c9d40054245b978a14c28fc8f70fe16a5818335ff37f10f8353f2fa38e01", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a9e42be870d5f7721855f63215815700471d8d955e02c990a73c5a6b6f54becf", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "35e0db772cc53e6424532378590c11b24fd97e551d930d0e7fe0890be63c1930", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1804a17d94403f32decf4dd4ee8d81043a1d49eef3842ca29d1879dbcdda24af", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "434af1793111c92f4ac9f0c53a85942a0bf24067169e93bd4aa4bfcc03ab6193", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1koi\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a5a45e1b1dc4b0201be54f9a51ff53573fa7e99da604dcfb31bb285a0047df09", + "regex": "." + }, + { + "hash": "a9f6f52abf084448018d2e76675cf6cd9ba9d946d33bded5d84ebb515cd84795", + "regex": "(?i)^https?\\:\\/\\/btc1yie\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ebf2684364c9b3ae49ce3343575de09b93af296541754b25ca9d16709564547a", + "regex": "." + }, + { + "hash": "c5a653d892ce70927d42c7a8b3b3c83c204a042ce4ee7e6bc2012a5420b21f3b", + "regex": "(?i)^https?\\:\\/\\/ooowarai\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "961d99d2628f50ad2830f1d3b2f64c17647cbe914fb35eef11ffb8c1a16588b3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0d79c992fc65a80f2b613b8199bd8e2f88685d44b5bbf7dcd519248253e5bd72", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "acac7cd9cb698372006e509dbd8fd040fb86ccac235080087c4223c4eae424c0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yus\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fbf67d84bd0c3274cf2f122c2a6f58992723316d72fd56178223e9bfc438aa9a", + "regex": "." + }, + { + "hash": "d62c4d9e60d6c724f1c8550a95ce270b0ce3894d6d044a1eb41f0c55283a32ce", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2dab8350577c6a544e17540f00357b6037a073885f9a608cf21265f5ab9dd935", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ca71a7521a3ee15cfd82083fcd6294dde15dd63b6f58288e3c6b65ee1bee3b4e", + "regex": "." + }, + { + "hash": "df49fc9319d41c51f2736c94929672d2718740cde84aa2022721895c6405e0f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "616e8384270c7ade3eb0cd1fed87938f7ef5136e49fa22c758efcc7115356e29", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "13beb40ff9b77c982dd05682fc5bd9512adfd96c860f9daae43c208ca77e3582", + "regex": "(?i)^https?\\:\\/\\/btc1yie\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b20d1ecec390334312e689e41798890e8671f674cbce6323c845a1bd616d3b96", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f11331f75d9fd7155adaf5e109b737300af166c971cde9bfd1e564ee447c144b", + "regex": "." + }, + { + "hash": "d3816398d3062c09875c7fa22647095425cf53e394b12ba0108656ff4babdb95", + "regex": "." + }, + { + "hash": "83be0afe4cac8b701d3c0cb1714cb1a23345bb6e05a313ef842dd3c2d709cd58", + "regex": "(?i)^https?\\:\\/\\/btc1qkd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b23dbd66afe532bc823035e29d15c9eb9f77166bf5de45093574fb465fe9febb", + "regex": "(?i)^https?\\:\\/\\/btc1qkd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "816f7cdaeb8dd86b14042574e3ece52f361190d6e86ba06a51de51e0008a8695", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "18310910d0020f9cce3d6d15ce6fe0de98f2ea7dd5028aa1d36772e4d17078a9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yus\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fa9e92087e1a67652cae14df1fbf457e3449a94acc083436a29e39b6069f2dbb", + "regex": "." + }, + { + "hash": "812b4159be6cf396932b2b35086f39f2bc83094902d2cabfe3608462a1935827", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "38a8afda7337c9a03148144b0cf605aecc4d999ea2bb35af76161482d1ba1f5d", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ad43de270fe00e1edf1c1d1693cc52addea5ac42f8e115f4eda85beb47ff991b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3fca5c4f71e1a624c2d8cbd31f52ab7574095e3367cfccade81ede68d407a9fc", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "15cf186505a9e2fc11a3a2b3df0f0e3119f4ac3bea6aa82fa688f1db3fa85ec1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1koi\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c85926c8ccb76e0a6368e3be596dff670caf0afb5c7d4f065e038270f8222335", + "regex": "(?i)^https?\\:\\/\\/btc1qtt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "03280276aaf22f1397afffa22db0e61cb2d754981d3a72fe058d86b5fbec160f", + "regex": "(?i)^https?\\:\\/\\/parlinkigofukg\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "54ed312faf28126a8d265c61056144d2736f115f773a1c5a5cac2bada298e02b", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3473310f0dbb1b26674bcd330404eb565178fe7c998ae5af095f4a97a011a493", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "25a805d00b5d721d4995eb2699ba27874c486f64830f64c7414161f143d3a645", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "944d1d8034e5981eac00dba6dd69db0f5428d63cbffff6bd1a63cb438101381b", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bd167ad76da6b73bb29564cd6ca3c22dcf3e76308ecbeecadc102817943f50be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1weu\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9f1fa3455ce62313c8ead9778d5fd2703a3b8fee52a852f54ee086a568bf2e39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+LWF(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "28b748501ebf58ece14d341fb65b0c66b9ec5d3df3f45e7ed31b7f5d6ded80de", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9ab19e73ae98e08a9a418ba4df809ac21c32697c35f52f7bcfe0d42f01a547aa", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b71275263106c9c8e246af8a93ab46f2c16fa8cf18f0cb3806b46b7695d4fd5e", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bd16bdd59acd4bade5e6dcbcc830ba489dbe07090d63664cac7293b30e16768e", + "regex": "(?i)^https?\\:\\/\\/btc1giq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1b465b9d5f3280ca0bcddda2b269dab2b6677e06511dcee265ab3d8749423cc1", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a38b0cfc47a175649080b809d960d48990a5ea18d07e7d35e9e97f8d74f18923", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "01c5f2a231a85354f3367abfc923dc08c456903bd18dd0974c7d266c882b997a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d9e398b30aa292ff13af96fcdfaec95a128d2ae8eafd6148d16f8c1d4e019ecc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e5d917dc1e526188c5b234b23bba14699a89adfc682c5e873cd77a58ffea509c", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "184adb0c79259dfd75c950ecff78646bc82ab5e7131a434dbb0aab070a6753f4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "83070acad75f53ea13aaaa330120a3fbddc5f29227d823ae71a71504f20884d4", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "84d8e242e7b6e09150d0c7f895e4b8179993378784532ccf08002a1160de0552", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "53644a9e651a5244b5999f21bbcef45a2a4bdbfeee63d28e8b2d8ebf5ed4c860", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d49d6c4715b7045a1f8d5251cb56de456d931e53e088e8925d398693b1b164a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ea8c0402fb4304f74606d57ea7de8d862c70dfe00841026cdebdb42d06227eac", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "74282281a2940344d0f007459370c748057077c570cebcaac48fe48b310e9132", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9063933c9167aa04db66f2e7cab2756ac230745c384e2fd436f784b0dac75c18", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "475b4b8c8ddd618a7b49f5fbcbd6b7e0ebf30e6e91d8a5b634b797b1d576c408", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "79e47e0b29d1ee9dba244ee5ffef01166e14f5b8803575f1c262c1bc03a8bded", + "regex": "(?i)^https?\\:\\/\\/btc1wyj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bb52d32d6d964a2157661ca5adc5a1375db52ea346f289b76834ffdfcc25a7be", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "48912870fff085383b050b6b12ff0160e898e7a82b0f88ba4a6e920c9fa48386", + "regex": "." + }, + { + "hash": "a8495672a15e34cde80d66753178aa55fa868c090ca00b81c9640c108794a53f", + "regex": "." + }, + { + "hash": "1fa442911b04316a26845287b7e0634324c6b6355bf128ce0fc8c369426b4c3c", + "regex": "." + }, + { + "hash": "bd1d2861c578fbd44857885ed2a27fb07eaa00c78242b6b4fe928070535e4710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Drop\\-Womens\\-Jane\\-Pull\\-Cherry" + }, + { + "hash": "d4d9fc3b22e0009499a6978295a362ea7ef405d24f43ca08d678dd9fcf2eded5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "69ec01c6b26abe1c521e20b2f479218c42e25dcbe0c93c5a4bd3501750f93420", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9063[\\/\\\\]+entry[\\/\\\\]+register12332(?:\\?|$)" + }, + { + "hash": "1702431eebfa687f0f63ba1f2a6be71980cb2ae50fb833279f87f9b437666422", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "315fc61f12a2ed6d8636d6055c46e5e838164e6b783b08d5d8983cb5124fb541", + "regex": "." + }, + { + "hash": "1a16ddf0a987b2f7c2a41931a18eef6147e61f84e57ac09fab5ee80abcb2521b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "948f433fb65196eb0651a770a8ab5236956dcb0c14f3ff4c7e57fa8c3713fb2e", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?web13356\\.cweb05\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+swiss[\\/\\\\]+CHFINAL" + }, + { + "hash": "bd1d2861c578fbd44857885ed2a27fb07eaa00c78242b6b4fe928070535e4710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Drop\\-Womens\\-Standard\\-Elastic\\-Sweatpant" + }, + { + "hash": "78b5ff1e780079416b89abeda61299e894813466c3a714d8262ae71757ec5bbe", + "regex": "." + }, + { + "hash": "ee644a96bd68400ec46e356561d3895b48d7bf6ff26ba43e50a022cdaf84c51f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "61defe0350c96d9404ced6c78782899a14ea3499cc5b320c34406c361ccc60af", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "bec485706a8adb5482eefab8da5df7106a9a3f9faf6d2f2dddd3095a2aef670f", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c166290b58900cdf14d5544096ba12195bfdff9e162d2fb1e04f71343ddf8ba0", + "regex": "." + }, + { + "hash": "ccdcba06e3d2b78d12b44df3a67abe3573b92193815ebe0c2f8ef8dac5b88380", + "regex": "." + }, + { + "hash": "915148b197d306f81cc4b28495ee5a06af3bc0f8447455c07926304635d7accf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3d8135758c050c6039a40815938009ed73754ccfebac49ac287e3b595c9f1bac", + "regex": "." + }, + { + "hash": "688444bb19fa7ce3080c1155aeb49d6c4f84a287b2e320fd8643f63a4c61669b", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9f6fd960e14dff21919676724977ed3bba9b2ecbf7b4489d39f08557f2a24206", + "regex": "." + }, + { + "hash": "4cc76f6fe9895ede70b952f5783e59fa57cdb8e5621b23bc0e6106dd9cf1e7b5", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254$" + }, + { + "hash": "a0b9ea7ea4ca23bec2d97b40e893f4ddb360da32b09e03046b4ae41628ee3b4a", + "regex": "." + }, + { + "hash": "414198a7dc1fa8a55b5f5d9a4d432955907c227e9a77e2c67c1388f49b99a8f6", + "regex": "." + }, + { + "hash": "d80d3c8a7b63d6a061dbc4d8ea365da8bb367d1d57c130e936caada9cc0bd36c", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3cc1a942980701ccfd73fc4c72f6c8d502871974f9eba45e0a2a206d31cd9e96", + "regex": "(?i)^https?\\:\\/\\/btc1giq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "776336cc668c475e28df1145c343e99f06d4344a5c02b77e1eeea1c29c413815", + "regex": "(?i)^https?\\:\\/\\/btc1wyj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "508e3c79ce32b24e60881d9eeacf25abe3fe0deab785f1b97249647d938e7e51", + "regex": "(?i)^https?\\:\\/\\/btc1giq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "40c82165b176724b093bfec71ce3729fd2809c50c2b8a2fff62dd3f099da44ff", + "regex": "(?i)^https?\\:\\/\\/btc1yie\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "10f1e10b5052993a974e8fb07d8d13a78cce57076b0fc6177805cca1cf8cc044", + "regex": "(?i)^https?\\:\\/\\/btc1qtt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b3b0605c6cf62a902fbdfe05a8f1585ee1d9ee4afb540d7f530b26afdd07aab9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yus\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c33e7d45341c88cdd4cad973533f745c90966455de384413b8cbc65145cf813e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yus\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "115cfcc4495e21bac9cdad8d56275c5bad18552ea31d138c2943e5a0adf7b54b", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d25071b07218422b5527eee70083ef7931d4e9776b202b284ee9cadeb28ee082", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "dbbd2231ff7f08e0c10ac94979fc3cdb358b034e36a57d0d23a8aa57c565a5b7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1koi\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "84543f0d2f315e3a4ba81d7a7c696ca96096c4ffb19e3011bbdd562ad47dee98", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1a244f6bf74e166ddc13f6b1732734efa7bb24ce7088654f69b0f2596f6a6dee", + "regex": "(?i)^https?\\:\\/\\/btc1giq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6d57e5623509febbb72b7e232a96ab1e8c431df3ce00e326f1105736b0dc48b7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "14cdfbad01bc631fef2eba3552426bc377bfe289d80791516e6053f00c5281e1", + "regex": "(?i)^https?\\:\\/\\/btc1qkd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fedf8cc528aa48f4f4128d2c704a68910eec3b02195b86ce9193ee65e8768d39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\~thebak12" + }, + { + "hash": "cba35d24517704e7374a51b5531f77f722cfdcd7e714aecfa7a499c553017263", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eedbf9ca86cca63a7808085e2a139de674e6da8bf16b6c02af0c034c89dd50be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8da8f2b0d1c548b37baa3739c230b559ecdc53895be9b94cf7ba8b5b2c05c09f", + "regex": "(?i)^https?\\:\\/\\/btc1qtt\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8cf7223759ae414e0a142203d279644b9f2675cab2ad07bcc0f8fd352f3e2614", + "regex": "(?i)^https?\\:\\/\\/www\\.www\\.prod\\.eu\\.phaabqsa\\.64\\-227\\-108\\-172\\.cpanel\\.103\\-136\\-18\\-163\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "00276ed3fc7ba61d81da13bad7357009f184868b4b3901745009c8a536dffe7e", + "regex": "." + }, + { + "hash": "b95a6dd88a7011332272748b429e64057aef3667e96fe78d0f07678054808ab8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1weu\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "51730ee467e53368d9d2bb8d7197e3b61ff3f0432e387b0e64f5b18d76cd9a92", + "regex": "(?i)^https?\\:\\/\\/btc1qtt\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c834bdbdd2858a8438402cc5c51af1d19dba40f9164c225c61bcbe2e104eca1e", + "regex": "." + }, + { + "hash": "a5f33e8d4771419a574b1360ef4514fd138c702a6e801c1b22793344f1dda1be", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "82bcb1231ca15df83b95187a15138201dab9994cc3e646df97db3dab6bd0bd7e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7d0ace80b25a261b0c7e42c1dfe0208139a092c2e31569c6d081c016e097aebf", + "regex": "(?i)^https?\\:\\/\\/btc1qkd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a4aa5b1717a97de8f909964d6dbbf5949576c2087d7c17f2fc4d853c3e328dea", + "regex": "." + }, + { + "hash": "d2345903322e7e496442fbb8d2bd33812c2f4b6ac246f2f42b1dcf5fbc26f6fa", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a33bd4cedb2a50d58c898d901bf1a614323beba12c3f088771fa1a1a4805e0eb", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "147340cdf46e461d97257c568634701f266ee8f6dd2304cd81198815dd849835", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fvfim4(?:\\?|$)" + }, + { + "hash": "4b0a8b451421e33ea358774fed9d8732ffbc5cefe041d98c8249a886ad168bca", + "regex": "." + }, + { + "hash": "c829b05aee484070b0e19fbcc084ae6bfe4930122ba1b892fba5663b5220ba2a", + "regex": "(?i)^https?\\:\\/\\/btc1qtt\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c4e79cdfd644db586bff60962ec97f4c0447b01aa27bd39eed91728c606f0822", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "824c7f388a0cbe8e967e5c2e2897ccdab8852f185dbb6a665461b861e69365eb", + "regex": "." + }, + { + "hash": "890375024c9059c8fa58b7936745fd623054869d9824e5c0601330c3f760bb62", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "897b7663bf18b0ad593b7b4a5ab8a446d64c0ea37fd3b6834921d8dcb1e51bfa", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8c19e96b0e8d78185ed635d154828e3f11cb40ed1875c3c1a3dcad3fe475c7bf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yus\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9dca1dbd91f59c495e7e45d3bff370eae937eca1f013d8f8f220472b84012773", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dec3f9c3f104f8273aceebd2762faed11d67e3b588681978418f6db61c250583", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "84f703b7b50126a88c1626df8f0c95e3a8d2c98c8f33f3d6a0d7474a194be0e8", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "57d20dcd75aefae60fa9506095f0ad01adcc1ec7649836f72f4571fb4703ee6d", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0ff7d2445e440b40531f8f21c663b816c3f15992c1b773dfbe1fa7e62c3af1f4", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3d67c51c8506eb8f4a4dafbaf03e79469314e6b323c8673a014444ecdc383cd4", + "regex": "(?i)^https?\\:\\/\\/btc1whi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "151af13179212ade2c81bce6d5be8cfc7f34a4980cc98a60d71a2b12d77649d2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1koi\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "957e7981a160800de5efaaa32261ea0fe4ee7183764d5e206b9d0263b2ee54eb", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b3e8bf45c36c55f27090e19e144ac5730b28ad30c81a2848fc1329458435f61b", + "regex": "(?i)^https?\\:\\/\\/btc1rqx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0c01f38638d3018ca4a1d0fd7e35839e11cb614232d5e0bfd5c030e0ee1a6f75", + "regex": "." + }, + { + "hash": "2f4e88d7e3063a9a753681747f5524684cb612bd33fb88aaed7473e9bec5f3cf", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "242492779140f99d6e4be4ac7b87558190f2c3d547a3bb643a975d3e440a0d8e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yus\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "080177f9897544d22fb1aba460f730ed71694ae2dba1fef34e8d34f75468d5b9", + "regex": "." + }, + { + "hash": "f793ca516c3f665441960e6eeb8050355f2a51ac84085cba493b5fee94f28c49", + "regex": "(?i)^https?\\:\\/\\/btc1wya\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "619275713706ad53fe23db02ee3719f604d004c847d559749c33f377fbeca6dc", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5363f50460b20ee340f14103b59d65d804c0e380606ece7554233c21171a110e", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9dbdbb5585690dd06b6765ea51e2e0caf82084c5a14c41cb97e3e26320195f46", + "regex": "." + }, + { + "hash": "904d473f72e752ac7d77a6882e0f77b01a59404e6cdb1c577a072dbca4e51995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mox\\.vutek(?:\\?|$)" + }, + { + "hash": "df82d4d25f170391ee0a6262c5784623d82a446be8245fe8047ee8a08de5e63b", + "regex": "(?i)^https?\\:\\/\\/btc1wgj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5b00324917857ff5f1a000b04b30b52485776d365bfa6a2b9df7edf32f0cf125", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1dcy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "476789386be8fc6f272cd34634eda81113c60f5c4dfa1b8bf4c2753f03b52126", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:\\?|$)" + }, + { + "hash": "44ec37f34fc4fb1bf919e8e05da1d09b1345698e809ed825e714aa8267aa506e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "7687726408ec8ae2ce03ba55d6cc6d3ebda36f5411233f95fbc591ba4603a67b", + "regex": "(?i)^https?\\:\\/\\/btc1giq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3b38b47c8e437d922d3e41352c490c150597f9774f13d970857d022c91692b1c", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cc4e8c75f81c277d72b2e616eefb8339f797e0f5c8b0eabdeed7dff61a9957ed", + "regex": "(?i)^https?\\:\\/\\/ooowarai\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fdb72374872bb4a843f305700d22ff284b486a650f3255d4581406c133b6a7ed", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b09f4a7c197307ca3c56a09ca62b7c0d4fb7e27a2a47f30d706ef754ff0b4334", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yus\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d63527f85e7bae3fb1d0355cecc94e35999c7bdbe6e4e13cad8619eaf1ab59db", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ytt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4363b41bccebb72ae3436b88d6fe92a5ec88ceb4e49fa16e083e74c92bea7b1e", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9a447abe9e760620f4bd52ae0db8c27cb57914f7d56dadd1e3e51ec474c9e621", + "regex": "(?i)^https?\\:\\/\\/btc1gjp\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "073f1daa87b107fd12bfa6b376d45ffcc9e9c84b486e199073a40fa6d682eac3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1evu\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d88d2d06eed96cc82573a10e9fb3e637ca8f11844810a68470f9bc3181b3a80f", + "regex": "." + }, + { + "hash": "990824d1651b49cdaab369eaeb65e9f879f5b091c55eeb1870d0d3f382398e26", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qeh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "688047a7d57cc8fd6308b1d0446f5844751baeec49abdfd09647a8851e846357", + "regex": "(?i)^https?\\:\\/\\/btc1ehw\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1ea6c3b908db8c7d2a2adcc5753a62f20b775a69d51eabe23b1ca7fb0408e903", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "18de4fd20f2b4ed50648051787b794b4da720b886302af0122ef55e1ab7acd9b", + "regex": "." + }, + { + "hash": "eb12cdda2f1f3fa04aa1dd50481eae1b5d23a825992d5d944c43dfe45ed7032e", + "regex": "(?i)^https?\\:\\/\\/btc1end\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "19b8ca099d388074555356083f66f909f0238cf93fdbe587fb4092513b56698a", + "regex": "(?i)^https?\\:\\/\\/btc1qrj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f15172d0f6e0ef62b686b810069153ca9c9fcd722d49f5b5284974594db48a2f", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "910266cc683ed9867bb74bf6f2093bfdcd99e2354522b4e29613322095e9ec7c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ee73ce3f5d926cd6c2091ae1589da570c63b265c81c1bb9cbccfa7d1b6ba037d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qud\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5f627f832af41b2ad9618f2e6794afacbb33a5811c52315227d129ec006fab91", + "regex": "(?i)^https?\\:\\/\\/btc1qrt\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f064748d8c2617b594af83c25fb3a0d7cca4e45b7633ce152a207db375f18c33", + "regex": "(?i)^https?\\:\\/\\/btc1wyw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d14730be259c278c304fcd64f77c6db8217d53f86903f5523616ed1dc67a20d8", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "305cea58c082bbe2c57be95a257499bf9c59dd0c1c3eb2a63b8dd6ca3c3ad1d4", + "regex": "(?i)^https?\\:\\/\\/fwaged\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cd667147373e1ebcb3bac9b3dc893101837f6653b5fa012600c7ef2611a7e6c2", + "regex": "(?i)^https?\\:\\/\\/btc1wvs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "77409927ff1dbc1424ee61b057de85a8089a2089b217c774d627862982727eb5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "52a50f77c0c2e86bee4f27e31dabbac4ba09628d478c6188510753fc34010252", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6921bee482ca91263dba800ffc3a4f23689709520078a2ba152724b908917717", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4ca26e70c5a8f2a98aecaa9201591425d23699b329b326299ee8ed2746bce32c", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "45c48a5d948a3b7d7413a6ed60cb5b53c6ab3478e35b1dad95b621af8a41f0b3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7afaf0d592e7b496bf455393d051b21acb65b8c3bd0b0b7ce0aaf26827d56033", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a6bf2b0f2fa702643317cbc165cc287e1dd3d9ab080b0bcab3bca1c8acfb5121", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ed7f36cf6935c274e8fa85d1322d21aa6e30dce36a257292c632aab960bfd3c8", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "524442eb7ce6e0932589576b40a2662683c39a9a83260930089fd83b7e0c3201", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "88a368ab5da7959f848f9cfe7453270aa4bf3f87b341c35f814dcafbd4255459", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5292eee844e4747d93a5b91915322e9ea65e71e7ad19b3b866ca07a8fa2c3d83", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2abb34e0cc1b758f49edd66df17e40baf405d63c1aca7ddc89d09a3ee2169071", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c0fa74987b226589962bcc50f00d2b78b9e5c2b80602d4e3f39bca599f9e8ce4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c288986eb92dfa38080948df9b55b803d57d83379f0d3835861fb8fcf67f2b27", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0fde785127c4e1aee881d49a13d901f874aec83ca5251ae007730f78622a5d1c", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e7542aa9e06003b9d53532fd34087175326b6bd8312040abeb070a22612b214c", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "dd21a501ee6e493449cc66b4467aa82aa22c16d606495c48e6df3f00cc4ccdbe", + "regex": "(?i)^https?\\:\\/\\/btc1zqs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5beddf15db8b345825cae545545503f6a7b47b4fc8dff916cceeddc9051d3d4c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hop\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bb56ab76409d8b644a094e7858deff81c82c39b521ccee2c092382b05ea57196", + "regex": "." + }, + { + "hash": "c6fe73bd8ec52bd2a35cfe97b4e8a9efd4ceaab3d8acc4f601b1285333ade648", + "regex": "(?i)^https?\\:\\/\\/afkolozor\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c86c561a0652d82c72cf295993c1da1f10b04d27fa88ac90fea0de47cd189561", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "76d7fe39ef344a3baa0f1a5851955f45760513583872a83450fe270249cc0da6", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a2e542712bd315db4ba2b794f8c0e4c933659460b1e4b52628aaec9e248032bb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d22d36d787bc546238345eab828609d5352ef874ac3f10a549ba18b7d547e734", + "regex": "(?i)^https?\\:\\/\\/fwaged\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "454118a5fb0079420670c48e5a1bcf3d8a4e6d0ce98fb8954e3ee23939cac521", + "regex": "(?i)^https?\\:\\/\\/free\\-5960\\-robux\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "23cee055263fcb7b4b882a2185533b5f0b504f4e4a8878fceb8114309d5dd6e4", + "regex": "(?i)^https?\\:\\/\\/cfavgc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "daa0888f28b97bac333a1c1b9906159cac40bd2066b1d38a9bd21dc2837b3fb1", + "regex": "(?i)^https?\\:\\/\\/fetrfhfgfghfgh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6aba4d96c57dce35bf067ce0c92ebfc544d2ddf8e21b92fd809e60873eeb0aa3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cb3582cac0ce2a31a8fd40aec918a818f9c70694ba8add984180034ab1b4212e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e66c4d750ba3b8246af5d8361d3bb18aa430d78c0ac29b1318699ea0830cc9ca", + "regex": "(?i)^https?\\:\\/\\/free\\-5960\\-robux\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ff28dc8c2e3c72ada72638c89dd2ca25ee78873817e50d00c6697c615a7ed268", + "regex": "(?i)^https?\\:\\/\\/dbfhrs\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a99d4eef2e0f0d2315a686de1d55df696942641cbbb67ea239756da3fed925e6", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "84b6f4a811b6ed9e0cd3d1cd3c2fa291b73a5ec624c484322d708704fc4f43c2", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b8d6a4fa45d8466e5b4edf3a6d62daf28caf3c2ee6506558ef5abebc145c8845", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c3a42ab535daf6d28516b93ea5be369f97edb692200efa6f2a0e456ac4ce4bad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "807a0bc02bd98bb59d841661f06fbe019871eabd80200d64da98486a6da09af9", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vtbfxh(?:\\?|$)" + }, + { + "hash": "364dca2bba73cd083ad61ac7e37a3ce6e16a3dac15c71ef9425dc5cf6252d006", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e58408f8ecfa9f45cf3782da1c18e8e0cbda1c8eb771ccc1bba3ad01ec8a1680", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "66fad22385c2a99132b8da548281682888689e5352ef218b5e500e78569c30c5", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b7ff1597859e6a602da8f2370c023aa6abef5dcea6b4d569aa0eff7fa5102c5a", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d1be08674b8e7ea3052488641adfc068c692887db81ff21c21200c346f672899", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "72d7c0af39c28fb60e5b1e0f31cf4f7b6b7ec898fdafcd2fb24c438d174a1dd4", + "regex": "." + }, + { + "hash": "5bb8c7b3f00eed6d375ab0fa57be15912bba14a6207a3c3c710d65ca30746ec0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zqs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "83ce9fecd388e5cb9b5c5f66c40c5b81115f49f22f3b9c4c7feb09520198a994", + "regex": "(?i)^https?\\:\\/\\/btc1wzj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "042b92db23af2ab7e9bd77108f0141f85d07f02ec792e6e221e10cd33a8b920d", + "regex": "(?i)^https?\\:\\/\\/free\\-5960\\-robux\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f380364fb598a820d68fc6b29c731fc12bc7a4248799c8114887879709cee793", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b5ed4033e14de50b407655209eb11ccf54a0c64280bf1ba1da771edf4be3364d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hop\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "18186d58fcd767223cf47e080e95ba55edcaee7a42bae3dc52285066ea39a89d", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "03677c82caed523164cc164668d8b3ba269918b7482ecaba00f2f07c6743212a", + "regex": "(?i)^https?\\:\\/\\/fwaged\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "05b82e47fbedb8d6abf1b17545389af1043a0d68cbd86f0c7b648ae3a4f6ee11", + "regex": "(?i)^https?\\:\\/\\/btc1ysf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "13eb12fafa1f4ce152812f139593f70f97397f69eafe2b462086b29e4069bf5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kaya[\\/\\\\]+check" + }, + { + "hash": "eab2676b84622d6fec7fde278bb7e703de764ff8b8bf2061eab3936d68098499", + "regex": "(?i)^https?\\:\\/\\/gbfdhn\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ca716c15b5b1cb68d65d8393db37190f470967f3efaea6aa2d02a5b6ce329544", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "931d332166ddd323270865d65989d34c47a838a0368c28acd2e49dfff1264fd9", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "48f00e3f4807eea924e22f85b980ad5406bc4608c92918c4146455ab6b2e6922", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "15123eedf55586755d0750000f6797ab33caf50ad06b522dbf19b3e53ff7e48b", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e1e2d4d6170bedecf67aebd71fea2f85f3a24877acd58bda22770d4e24c3c150", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "22483f3aed79021d8485ed7b25060d1823457842c55a3d5041b76ffda5e5fcbd", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "67f4e4aec240c5a099a6a71754c15aa735d68b30bc662e770cfc15854364d3c1", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4596a8e80e2956066a0765eaae4e0a515138412e48278aae75908a635986a875", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e4ffe7c5784a156c03268040b96d18f7187a4682c012fd6e8cf5fd9eb9fac25f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0a4b0ede964d8bcd151d42f571a5a7550857a8ce42928a331ee080cd8221c87b", + "regex": "(?i)^https?\\:\\/\\/btc1qrt\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f38b7679bc2588a588201564b482da2bd0c55bc4e3bd2c7025e5b406ee5bd214", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "28f871e976a27b668488f9a858b272509d0bebe3a126768e6f6f302af764a221", + "regex": "(?i)^https?\\:\\/\\/fdg4rerg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "230c8aae3d1771c1d404713f02a69bd1d2ce5061b49a10f36bc72f6a245f9671", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a83389a1073405e56b90566bdb535c24beec99e2242ce5365b9872f1418a4c9e", + "regex": "(?i)^https?\\:\\/\\/afklozor\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e1c7d5ffcf9d7a6bd4252739e92d0420cdf9082b7673256d8f75090de1386cb6", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a178f87b354b2d4d0209c29ef74a8c952eee0a5b472e4dd399fc92c65264a91f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3a470219955d5cef3876f94740089ce52492e1600b424b17a55c59874e3ae60e", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6f35647e26465c0ec2e4f6cca7cb6e40b880a03c88b6efcc10013b9621934932", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c9bd70fe045e13252d3872f21299578c484a56b4c0045aebadff9a3edf7e17c2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9eb5eaac6b00212c84e37ab1d6a4b49ac900e304a67b4a1d6e61c03af4a19830", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "344297dd97649d60fa2f6a9a02f4f2f6b6e9d56d0f0700e555e9d977d8a281bb", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "864c0c2b30bb4669ba7f20f0c75a24aba2232ceb05446bd7abe913a4060dffb9", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c0e0bbfd5c9887b5f00cd7c3fb6e431a0f7bd069b1edf050ac2c5dc07d424cbb", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "786d56baa0b884dfc3698a80b8cfcbe6260e7b9021883f6b378a5ff2892e1de6", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7a85f556f25754245d5002e3e2e91f2ebb0aa685a2d855eb62bca974e6833ec7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d32679871514b8145ce115fa8a37fffec4e61146230026162266b87f461e9c65", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "912776100ea3a2783c6fe3d997b5d492f2e137d6b43869d5bcb866381936579c", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "23faa564dbeb3ea9f47c1b8ce9f7e403e95e492055ac0d489ab0fff0205b9cb0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zqs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "df414f61df46d8a9c4c4fdc9133708fdd9a1507a8a2ff0856794097c124be39e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b5d5cc306148cb7de56cf98c9788bdc7426783c11cf4eb0193ffefff975369af", + "regex": "(?i)^https?\\:\\/\\/afkolozo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f7a0619098cbbb938b86d5e58c40ef69cdc929cb333ed05b7ff6c2598b691d7c", + "regex": "(?i)^https?\\:\\/\\/btc1wzj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "81159af2f84e1cd071450b6f07d5a451203eba7aa65e5e98a2215b97de319891", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "21c5ef0b141d7e5c28f54b51de9b271b793d7fb6a2927db333a1835749c23af1", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "451a98dabfa07fcf10a601e2273ba200546b7aee5d5d47f73eaa2af3ab885eff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a48b0d7a82c37a2ad42a7e9242c95c501c94a76f837b5f8dbe270e09e4bf7d27", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8ebdaaf51c01c7ab54e18470db44001633ee30b6098b1674b812090e5784b875", + "regex": "(?i)^https?\\:\\/\\/stumbguysgems\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "40426446e1507928d5cba0f59b30de1837b598cdcefa2f1b7219eed69d4f01d7", + "regex": "(?i)^https?\\:\\/\\/michlawssi\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bd1d2861c578fbd44857885ed2a27fb07eaa00c78242b6b4fe928070535e4710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Drop\\-Womens\\-Kehlani\\-Relaxed\\-Heather" + }, + { + "hash": "14b3ad159bc55b5efb62aef36fa08506f92262bee1dc6f2bc340c688619f2dfd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hrq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bd5d40b8e0847102ef4503a7d65692a8cc93f77cc34758a4a170a21678a4a6d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "eae81281af514ab627afb3197b38990fc092adafbb7ccee648b31fcae0b9424a", + "regex": "(?i)^https?\\:\\/\\/btc1erd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9650a78d5b335f8574c9555cc4b6c5be1d3a771d9047ae6e1ba9995da312c7b6", + "regex": "(?i)^https?\\:\\/\\/vsgdbg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3bbde5ed34f41af8677f2f1f404356c2559eb080ee364351dcb4f4d6a04c6706", + "regex": "(?i)^https?\\:\\/\\/free\\-5960\\-robux\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "67b4cbf9e57b61a33f7859067e114a3ba930b85d83a9497718eb37c74c482755", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ee4cc344e8af2a823a84ce01c8dfdffe34dc2e3f348afbba7bffc608ce3ad25d", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "067731e98909b768d5aaabfc9ffd8660d52f148648e13447227cb28b22bdf7e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "93d269059c4083603ce4a00702466d450f033a296381864b2cf57ca2f6ec952d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9afc46af1eadf2b2d55cc5aab18cceee30d1a6d2cf7515181ec8144bdb0dd92b", + "regex": "(?i)^https?\\:\\/\\/zolbaro\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "b471774946ea36aa42ca9295a0021de59b62568fa9457e1bedf8054b7132254f", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3a5b37759aad3a8d5dacd884f566811d8a89fde9d3daec1cef3306c4e6653d3e", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6ea2ed37aaa47c018cf25e9472073665701ad1767d3a40e00415ba7f7a505fee", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e5c2b2b91df467d1fb1a10c0b1e4dd6c334adde677d2477a106f9d6488646daf", + "regex": "(?i)^https?\\:\\/\\/btc1wzj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eced720f2604f109a82cd220f3ee6f2bcd78091758f35527ed4e1673b0da0ed1", + "regex": "(?i)^https?\\:\\/\\/afkolozo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d83eecd0c72dc828128f62f1d0138b457456445631cf3632e275b4698538bda3", + "regex": "(?i)^https?\\:\\/\\/zolbaro\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0279fa8752b00094aad6b60c26b4c2cfba0d0e807a9f2fb2017e12d033b9a953", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c33bbd10258abc8dd7001a99c50397e96113b4abb6bab9bd89005578792aa1b5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d80a88598a331b1723d4252ee58c80e2fc79e2d60222e7895ccf0e2858e393ad", + "regex": "(?i)^https?\\:\\/\\/btc1ett\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "055dea1d4b6970658b7e1f84c43dd8c9effa8cdb5014cc72e6645eccf45db1bb", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-4u\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ffe438e05c16d40292e68aff78b0ffa1a503ca983d1833f56368ac5d274dbc5e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0739462e8d6c1747a752c5ee817896205c87288b982f2669faacb8006ba8926c", + "regex": "(?i)^https?\\:\\/\\/losawtaros\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b87ed619be4aa7d1efd2b0738f8f46a54e3c4ef4a5d86c795c9c8fe08d633939", + "regex": "(?i)^https?\\:\\/\\/btc1yok\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "70b06210eb5d1659104898066003e023b26182bd4c35c2667715606073b9d426", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f5fa2fe280b7138fb60af5fd34a7c05253842d8a530f0cabf976fd14b430e513", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c5b5de6a08c2c328fbd901697ae3f2cd2a9bcce49dab8ce9c0b72790da93f7e9", + "regex": "(?i)^https?\\:\\/\\/losawtaros\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f87404cd9b58e9456a214fca123197f447d4011f0fb5ac7aea3a9ce274c9915e", + "regex": "(?i)^https?\\:\\/\\/btc1kkk\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "daaee6ba4f22b036b0f15ae34d2b7d17b8736c7b6bcddc6208d4a37cc1c86b67", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b28a4cada494694a455b08660ccb4b584d2f5fc1f1e84c15f6f24848a98aa920", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8f7ac120933069f4af4bdb5ab22e7279f139e93204dc46f4cc1685a54aaddc1c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4f25f0bf486b9965a1a96906b8749b4fad0e1b0c3d29abc91c72c16e430b431a", + "regex": "(?i)^https?\\:\\/\\/afkolozor\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "130a7c8c11ad13813eca49a138749ef3b99adc9212fc6bf7f195f76e12aa5ab2", + "regex": "(?i)^https?\\:\\/\\/gndhcd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "492bff90002d91b6a8f19d0a8501180abf29256a3acceb7da5018224e674545a", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "69e6dcc63be25e00ffd4fed56bcf066e78383cf7324c3f39d3e826967650e082", + "regex": "(?i)^https?\\:\\/\\/gbfdhn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3d26e7e170415caf565ffbbe0b2b75bb61833c89c1656c39d839f0aa8cd54c14", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ee525f81921340ce75cfe7dd705b582dd8de539a053b866b35bf563769615d08", + "regex": "(?i)^https?\\:\\/\\/videohotspotx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "20faf4a66052c9c35ded9a2ec578eaa93937c1e1c8b054c7043ae3cd4b954e11", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "64f108beb724961df99681a617ea5e81c65d0c4c238bb3ec3591d0988182f3b7", + "regex": "." + }, + { + "hash": "f3503323b3f146d3b252de973595a3eb95ec5435fb0f5c42758f8a5791921144", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fb017946bac449b0fb2b8bb9b9f242c36ab35f2012ee37ccc09b79580be97f06", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7db72bbbc260d85fd6e4159abd18b43cc5bdecd83fa3e260270cbfe092aac2c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "61faf8328de91602e6fd06732f6c0ac78216ff4d428d7023a3daa60b3474415e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "82f7762958e6f66999aef9af7a5dc0e952c32ed0da440824094283010a0275b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1b0f9d3171fe98a419b261593688297871e5b4019673d7b831d428743ca8158d", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9ef0183db03ff3f12b43eec8c181459c4b15f3f99cc9c7862c69e7f74c692519", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6c1e9db10130668d7f5d7f824322111f1b2ff93f7bb6fdeed769c928c31202d5", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ae26ad8921b236c0a4ec81cae61d7ae73129c186021428e05bfff4bfc95ded77", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ccd26dd9255c0c7887be58b3df9d69349d96fe3b9dea811ee54ffc0604479bc3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "07f152b9a2630b4e3bed0faae6f0e77e008e83dc2d4d12ec3768995bab5a4c0c", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "a37d67cd97081ef277730869bfc4b9a6cb76f080cb7b5394594532b9a02615dd", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3f73fa7a72007e9515e80bdc0df78b2f938b3cc51f1817b1386e62c0545b6f61", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "612c88670fa0ea08d689532ecf059f92e07ac4f57be7786db527d3bedfcf8e15", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c530707e8e7c3e458f0ef1d99ee7f11c366489ab6e7254ad50cd68a08ef7571a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "337e69c322d1a45e7251aea04667293e19e6c134327972b9888ab082686734c6", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2f4e4abe1170f2e359eb3b453f7af573eabeff8630a7ec0440c12ec6c4680017", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ad309ddc4be20975c53a6f7ea6361db704475ad85fbbf567c17fb5602e004f55", + "regex": "(?i)^https?\\:\\/\\/btc1kkk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e935b444c78214d8c2450bdcaa2605209189d72bb638295704d09607e5dfb2c6", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9d8e01ce4e0c9115db5a2bfbe04b496efa344f9c07286d2ac479ff7eab60e7bb", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b23f71d18150a8080f77bea10f1e9ebd71d2e420d52ffaab37b4f83fccdc5358", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "547a79ff606e4fc73c157727a64ef05b35e2a309ab6be691f5b4843ba394099b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zqs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "df2c40fbc039cdf0fad0087d5dabfb12997f03e062da1d092620ebba4985fec5", + "regex": "(?i)^https?\\:\\/\\/locawsoro\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9b3b1cd4c56a6c73a4baed17e7eb683f3dc79546835de5909c8a3eeea3086171", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5a652eda2e2f98b4c7560b6817b2be190016b8a4c2c53c00d7b8ef42920ccf50", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "229836a604d54a623f43b087cb326b4086aad4690ac37c251551ec441f9fbd69", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1223d5c11f19677c2bc3a39322194d0aac5dd6e2ef0fb3ddcacad98fb486b57e", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9f0452f2cbf554343f5cbeabcadfea1e612f44980497ee356123989a52bd5fe4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "0fccf97f38caf6cf54125492a43815f946d8bfecac0117ffb3e7ce7199a53ea2", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "19abb757963fb2251e2c104007bbd0fb64fab85f20521eb7932e92dc3f972494", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "09c3e63c226d58bc8caefa9ae9a2a40e1eac21e1c02fcdf65690c7b167e164be", + "regex": "(?i)^https?\\:\\/\\/zolbaro\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "acdbbdfa461d58492b91c9350f970bfa6a0c54086ed4676fb81282fb022ee003", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e653339c5985d0e8f2f507a159c401576f4f739e3e4087ecf5006c7b860814a7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b5a5640e303994a59ace0cfe7083a922f1dfc85e57c0d1a4191302636c8bf008", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "af125eb8542d62f44891dc0200adc5dbfcd0daa3f538698620de5d4ab69dbdb9", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "45b24f84d600bf2440efaf6de3bcfceec8b098c2a308fc3d6b8b04c8182fcc61", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f4baf6e8c2f54f699d2c9a9f458405717cfaf09f83c773ed8791e1544ab9d017", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "37bf12f286b23e218dba87d48096d0947bebd97790aed16295416290e2b880d9", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9d640086d91c30ab3229fd0bb45dc1a236cf6dd3ef8fe3e0cd3a70be75690193", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wui\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c859e2164865c70c21f44701b11b166bf5a430deaf93591a9e705f1cdf34a4de", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "337e3da35a3dd77217935e891a2fbd2a4335279f3a79c6b94e74d108e75280c4", + "regex": "(?i)^https?\\:\\/\\/btc1wvx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "48460af11cb8180c9d0134aba444005b461e66563460bb26e18bcb168afe96b0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c3cafc2086ce6f0f61cf079bbfe5afae80f56824e0d031e629f66350786a5064", + "regex": "(?i)^https?\\:\\/\\/lonsaloto\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "98a91fa29c43241dad712d6b33494355eeb76277d1b922686426dbe891797bee", + "regex": "(?i)^https?\\:\\/\\/videohottodayz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "97ff84882bdcbd9def964dbb1a46b41f3a63199bd3a7f811b8f180445b88596d", + "regex": "(?i)^https?\\:\\/\\/yr0\\-153\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "730b4cdd51b1c06a937222e13c2e719e0f7b749c9c2aa3d7bd4b9ee842053557", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cfae29ec2eaf138cfd4a95e04d0606d629ec6848c47486ac94502bd0b08b15b0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ebdc5318be50467d09afbedd899c04b9870257f5b99c8270cddac62352fb27ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "17c59552b6db9aa041f4d1f6b828a66ae04c449441818403ea355275f0497002", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9b112226b3f1e0498ca23d4f3348327fe3d62f3344f631b77eb643d551a939e4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "8723f6be43ed8ff803542b0d152bb8317c884bd9dfb5e056fb58b32d34040c14", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "00274da3c7911c5a585022a6f1c0eb6e01a86f028f4db7eb5848f242803929c1", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1c401f205dd99008129bbd926e6407ce3decfc03a3ea5697e4a03e657f1b0cfa", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d71b5b1ccec5b3834d2fbc48603dcd2323b5ff5934a755386af2575c20287fdc", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d9f04cde996c04d8608e7d565d07408c6d227fc80149d6601a26c2c88b0dacb8", + "regex": "(?i)^https?\\:\\/\\/btc1gpt\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "98691b924db43e82e1707f2e04cb31027b949d64a7fc41b8e92dfcc10463b25b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1efeb1fbe308e9a856bb6523f54ff08b84fad437a086327e54726f071b699952", + "regex": "(?i)^https?\\:\\/\\/btc1hir\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6f3b291995fcda4ec9d4aad191d291cfe985f248cae6ddbceed0480b8a463a7d", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7b3d5fcfaa55dd94429631960d436b4f90003bec0a2a100ccf8c5cf3f241f524", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b943e817902819ad78292e3d02b868a9938c9622b232e96124381117f193216f", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "71c6573087239745779ff1604d945ea662b9be9550e739a1ea22fe64fa5e5bce", + "regex": "(?i)^https?\\:\\/\\/btc1goy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3191e858be9f91afd3927988d58393950cb7dde50ffd49bd5305ee31ee3c4f1d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghn\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f42ea8a1b21c96b1efbaf5c36f0db6a547a1a0738f88c678f1fd5237f0f79f6a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "635bf52422ef80036e0024dc70ae810481e0242543525a0208d0c5bde789b74e", + "regex": "(?i)^https?\\:\\/\\/cdqsvg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "11d15c00eec1c53e7035ad14c498185db93d75588d4b7433b8fbb3cd13b36320", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a9fec4bc769b9653f4790110e99679091dd84ca5216858df4f57b0e526399ed6", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "629a0573709fb8159a6e636043dde43dec892673f8f6715e7f470e907d2fdd44", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1c4500aa83447d9b560764a1c57187b402952f64d04ed36671adf504f3ed5c02", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "61b6f090f02816d570b6df5e9547d3a209b1f823aa181d355c74b99fd079c115", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a484c32c391f8297aa8725b9c3b85114ed6c654dd63e6681ac6deff1e237ae63", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wip\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e06aeedda119ed94be566a2204f296e415664721da5cd71cbeb5c2711bc90b9d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gnq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d5fa134fe541e9950b7956e19db1731a149d09313f3a07ae4bba811d79154ac4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "88e13f54e08002696743c4078ac8ede7f9d9f2598fc1e0bf9c276a35948f122c", + "regex": "(?i)^https?\\:\\/\\/losawtaros\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9d8ced81e5f3bf93dd602da31c7e5adc8fc6bfa45825742467f1e960a473496e", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ce120d2888f690d7a78c8b10c3c0b488cfee1beec8040faf5252da7ef8f880bf", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1d8c2a17c1bf7de92f058ca2a11433a1262e3ba5aef22e5dcb75591dbfb92d09", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b5ece26b97edddd59252f5733aa769153e7148b700453faac0d26bc3c711a608", + "regex": "(?i)^https?\\:\\/\\/gndhcd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "028e1faab9f519bd34c133fd2863a804b2dd2fe51a6a25d8ad0799c0ef85855e", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c9ebd03414c7f3fcea6676f5de68791dfc6d1188ffe0ebc60d0977d81feb5884", + "regex": "." + }, + { + "hash": "0ff7f313404f28ca91898f95391eb077e32da282730adcd2fffe6b38e0e701b6", + "regex": "(?i)^https?\\:\\/\\/fwaged\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "af60dcaebed9b234558f172624fe90de6b79cdedcb4d2c9a4b42ecb9179e92ef", + "regex": "(?i)^https?\\:\\/\\/btc1hjz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "223cae02448e1dac173b139bb0d9a6f085383b6c021208b06ac3ec85fe269f89", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "26e5f834605a82253275e1d31304a86112699a00753ba6eb4bb4481cea45c472", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f79320d1609901ba8ef2602510bca808effb2fc9bd36154bc0c167b57fdb614a", + "regex": "(?i)^https?\\:\\/\\/btc1wvx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9a6838cb444d470d418cb1107e497c1d0747baa00edf6c9d1fd31b8d18e1baec", + "regex": "(?i)^https?\\:\\/\\/btc1wuz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "37a08b705fcadea07a4a77992220e8ea1ceb93ac1860168e844c0bec3ffeb79f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "27a2628134503535fb6a539b0d479e268541c91cbc567c214ebaf2ccbd2caac4", + "regex": "(?i)^https?\\:\\/\\/seghfx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "19907707ac0d587850d9dfe002c352a7c836a2b0b8da965c7280de240fc9ea9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1org\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "ecf2db20cb616638cdd7e7a0466c43bf2630d6a9c574020ca1895006014220a6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wuz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dd69cf4795c634f5d9c4227310bd4115b8234465cd841d5bd262d0199ef3915d", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fe91d3becace03fedcf6506abf97449c0121f71ef7cccd7e7e21f56364540c09", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "71169bc34749a25c9ffe55d0c6e79254158151a0b9ebfc8d45d769b5b43c08a1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2133f887bfb7e63726ab795698aee97a2df842251093fd33af8ef1f9e5c32f4b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "983e409083743c7d4741fc1d5626ba593e275db1394c90995d8b356285e7eca6", + "regex": "(?i)^https?\\:\\/\\/afklozor\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "56fd59ff7ae47a6fe4a2c83e088bd550a323a868b2a7cbe198a71cfa2e95a519", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fc879a1bc5487453f0af426e563e50f8085d85fde214d352830504fb7c0f73ca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwm\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "32b444782fd31c52d1d053e5ac1a647d930f2a47c16d3a53d635c52d90709ad4", + "regex": "." + }, + { + "hash": "81b47975aad5898d8b6bfaa55468050fcd9a560514fd7cde1bed846729ec1fec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whi\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4fca49d160d2ee6ca5a843cc057ffbc21082aaa90533c3a8d4997fd2bb54b6c6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a6f91113843f79ff680a68d14acee1b47f0d5a61122734f181a8fed99a53a319", + "regex": "(?i)^https?\\:\\/\\/btc1ysf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fb11553e048af744c964d622ed14cd8ff03aed65fc7359a2974dbf63d70a8226", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+31y0o5(?:\\?|$)" + }, + { + "hash": "f5df5e53f033323c0747b0c57bb26cba3d27e05b383e36b861473fe1db375c90", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "aea8c1e343be32af88236675a0de68fd4c83f2d43313c5515704b1be893d3fdb", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "887adfa18ebc6a53de6bd36ac63bbc31c65fedb3f31665d1414879ce034c679a", + "regex": "(?i)^https?\\:\\/\\/enrzenstgdfgdfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c41704f3b27096098c409c13cc140535de559c8f20a20b65826e37700084af29", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5700a745920e0649b3910fef61be6fad376e518c57fcc595a935bc0cb8b8753c", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1144e2c49f86039d2b8c08dd0d1dfe52126e427a241661db965a8128f1047c26", + "regex": "(?i)^https?\\:\\/\\/diceroll4u\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fa818626b2533ad27d923b0f4c3e508ab7c977bd91999f897d6ad5c203c61072", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rals\\.html(?:\\?|$)" + }, + { + "hash": "2d0e074733352db64f9d23413c1c408d5883ab6f3912daed5b7038be175423a7", + "regex": "(?i)^https?\\:\\/\\/www\\.vsgdbg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f2b608b01fcb53be0bcb9db0b2d63c1b79392dc6eb221b4f4474da3c1b89a5b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1231ac7e64b763bc765dfea2715b602acaf4cb19b8e71ed4196b0e82c6d8e0b2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hxd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "93bf487ca0ef91638a969b3b17e8120d560f14cc3036cdbdb301c71e06a341b0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e7dff8da323778fcb5fbd3a19072ca91ed6de19165004d6bf5b3b27d3684f06d", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4ec99f297b1ddf98b03481183d1ff17cb0aeaed56b4f538c5573569b51ac427b", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "53978e9fcc182c33a5fbb430a390b6b99260e221ecec5545a2803ce2891456f4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uxj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b648590b406e3ca14af49f5927b07193afe47d834ee031e0da5eb144c0ce9c53", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gor\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ab9ec77e3ff195a7e73dd42a876a63fffb5c0f46045d07acd7c47362471fc403", + "regex": "(?i)^https?\\:\\/\\/btc1fwf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "03d569ec3f1ab84e7dfbf0e63e702fb6558fc45770a62e94d9c6c66245cbb0b5", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "21a7fbf5a0247e45043bcc41d0114d6c788746351b29c595015a9cb840befbe6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "71a478493a9238228b331cc8e5bf1b6751e57c37c59be983d5cc59409d6a5b3b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bb7de455348692abc4aa5153c8c87a2ac2d147d4b8c9d8e30f1d3bdbdd9eaf05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sim[\\/\\\\]+login\\.html" + }, + { + "hash": "ffce74efa9616ee124d8fd1c769dcf8174b793de86a585c5a3e98d53926e66e5", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7df5bfe2fb082aaf232a39f006306eb8a87088499631eec4d795a12b765b8bee", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e9418dbe8c72ae57c39f217bdc87f71d1aff8d5feaf076b5d6a68651db06ffbc", + "regex": "(?i)^https?\\:\\/\\/dbfhrs\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "dfc6fc0e57d2489a0eaa47a4cb652aab231a38a207c068eb07fd7aa1afcbc9fc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yie\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f9aeae529def187a7153ab638d76ff907a854daa388cd1b660729e6e0902e3c5", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f7cf55a9be8c88857b97bb9523f649a799d224a58ef0365d9fdc6e7ca0c82148", + "regex": "." + }, + { + "hash": "160f7904ba30e19c8c7c4d2dc869814c4c9c8b0a4aafb11c27c1a643cf830642", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3ed50eef7a471696dfa365d759ab3a23125e011183050b087663dcc3c2bc73b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "194dd3f9e388d6905d30ee87c12b4120e5116f5719248e4363f21c4ee7fe21ab", + "regex": "." + }, + { + "hash": "961637ede199a35e29fe6de94ad1558b22b4fc3fae24e091047b0fc632e70c8b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "89d04e678bd681d29e3b2effc460be49bd72ab9361d6a9927cec3ade0a038d93", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "950c020c7de149974e6719592442c4ca733e505f6b0cddae8accd16459b6f468", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "df4160563294f3919edac5735d606d54a2d705af5ab995a25709cfbf7f6a873e", + "regex": "(?i)^https?\\:\\/\\/videohotspotx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ff04c61e407ce53262d968d589b231b2f677521321cd1d95841d4c3a4a3fc5f5", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ea72eea72b513d07a795e3225faac54106d07de5a3b18fc39ee33c3f32fc1b2c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cc9a57573ab844ffdc9a2344032bd912d78791dfc747fde4c858b36d516b42f7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8f8c8bdc637784334fab6ba5644ce5d14489973a04b8402349f6ea828ce34078", + "regex": "(?i)^https?\\:\\/\\/gbfdhn\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1dd85ad6a9cebe9e84d5d1f98fa1f5c2fc3f090bceec10ea2a77afc19f182d02", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2752e14da496f6d9b6daebb673f279a8fb5dd40c884a299031506e7d1144e15f", + "regex": "(?i)^https?\\:\\/\\/btc1kkk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "03cdb90d09606749a254e853a8545a9814b79d7d5720da6f484d936da94d9313", + "regex": "(?i)^https?\\:\\/\\/btc1evu\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ce5e127c6feb7fac146ba92cba4535629942410a3236af095fd21b526662a1c1", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "afb6fb263e2d15467acbcb4706e55abe08f4609c1caf036fb8b19559a29036b7", + "regex": "(?i)^https?\\:\\/\\/btc1fwf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2a7a66736b60509c25eeceb645f3fae3810d0fb7d284e454633e179bd4d54f0c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hir\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e1b4edb307d92a39f71de893979d12ace90000c5389f9fd7e52f514bc73061d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "00e4e908824ab95f7439fb51e4f77167fe6ac75331033de783339f3f30be1ff5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a7e8ab9437cd1d0a85d6b81d079819998d9f0f9d44fa12788b30f9ed166fbd90", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1390c7a244a46218014c5b5be44022442301049945dc7334a971108d0d79a88c", + "regex": "(?i)^https?\\:\\/\\/btc1oqr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8d237c0b03f1c3e39dfb4de7e9b15413f50a965380362575a14c8906c51f996c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "55352be3aca88fb160856f1566ee085362331e412404926978e588cba0bd24a0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "904d473f72e752ac7d77a6882e0f77b01a59404e6cdb1c577a072dbca4e51995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mox\\.vutek(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8ec0c08d13dd0070342bcab896e0a6fe60219ae95023db5259d548890a4e1d71", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fd2ea494a6378a99600573b976196c95f0f8ef470dace1a613fcd44354c7a0e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0020383fbe2198040dda9d3eb1e158dcea3326b6c6d418624361cde1bdf73eb5", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "440c8f428dc02e7297e6a14a5f3434dc3fd9d769fb3fc516a5b6317663644da9", + "regex": "(?i)^https?\\:\\/\\/btc1yok\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e3156e815453929abaf478854b78c70f83a8f6a930ea40eb71bb2fb22ac14263", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-\\-4u\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b5ab17bd14e1f2d653a1d79c38b8f10c19ce71a24d2fa065af53787e61215df0", + "regex": "(?i)^https?\\:\\/\\/afkolozor\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1b1206ff8e849f99f4a3ac05501afaaa653168a7d7bff1d0c6f43eddafa12f6e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gor\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "621f09fccaf91a2caaa3efb444f4cda4f993559308d9f729f3bca21ec8646135", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hxd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2c173fd8d7bff0972359fbde75b23002cdd2ca5e35d4ab126af1b55b98cb2071", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "20de37ec4c3300d7dd83d1e80beaf4f5f763600b283f1b2814e04517e111f5db", + "regex": "(?i)^https?\\:\\/\\/btc1nnn\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4c7fd8aca1780a454b7ab7b831d2dbb0ae8190d0cada2419eb6817417902144c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qfh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0b1851059dc37eabf4be4c020837fea185ec061d0ba3d15879c583bd2b6be044", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b22c6ef69b06371936a34c509096e11f36bfd468eef0cbcade9ed8cc26ff48ed", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4a93390851f7e8585f469f8e547026fb473a03ea06158b6b8c8b52c9d1b8fc43", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "501d0977e2da299d399014763f0b24bdb3eb537d2b4d172cde53d24712700ade", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c29875ae46e786851d26a57447e48bf309a90acde8c6156986916e7cf0984ee3", + "regex": "(?i)^https?\\:\\/\\/btc1wyw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1e44b44170d2b80e8e87fa90bc6d1596b627a83c668dfcfc6b091583f7b37697", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "750beb664f3581102febbf360e948745640fd686c8e00021c2de57dc71a62c5b", + "regex": "." + }, + { + "hash": "70e9d7c76c724a758671b3433d18a2ee52be66318051a596851eaec0974e5644", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "00a788e2c23d77bea5da1080598da67b4856af30bce98e42c07139192fb17a2a", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7b89cfecea3a4045e7eca9e826e6627b371748a2a23097206a566466dc7b5fcb", + "regex": "(?i)^https?\\:\\/\\/fdg4rerg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6af0ed77deaef14d72ddb72d7c55e18a1c94b9b8d8e8472c18d39732a86f70d7", + "regex": "(?i)^https?\\:\\/\\/btc1zqs\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "be5fb07327b172192e26ce6bf202155b12f088c3584f1bb735262a7404bfc809", + "regex": "(?i)^https?\\:\\/\\/btc1wuz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "72683eea64d2738ccfade7955a68342db8ad8cb0dcac4c66481d03489e779d33", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ef90d51542264c6cde2352285c9cda462895e1ead85f205276961a2720d718f7", + "regex": "(?i)^https?\\:\\/\\/btc1hir\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0f55107e26b425031c917e57ddac1aaf4e2fe54356a1bab22f4b1f2e52ee6230", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6d07bc8577c991b7e103b3117ac4ed55de6804c78c0cf5dbe891826b04f60639", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6aa916a21f5f6370eb5eaff2fc83f167d440fcf3c688bddd861893bf385ab836", + "regex": "(?i)^https?\\:\\/\\/btc1ujs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "09c9594a03dd4ed6dd2d6b03bf53cf5930c17b647d905702dcf6d929018b9d2d", + "regex": "(?i)^https?\\:\\/\\/btc1nnn\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cf6f48e9faa81ce5fa98d7f4f51ee92f6aadfbc39b1fba8f6b08862141a7d76d", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8a16a6ea7e80c87c084340d2b0f4bf2d5fea7e2a8e06916d1ccc780530508a9e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d74265ef2f17a6439fd7352366fb15ac442be4e990f30b004cff611ebe9c0f18", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "53b0d83a6d870c44150435c89c9fb607da2b611344cc2573f17716ff0042c120", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uxj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8c84f030112954f7f01efe44d56713e2ed8bc985fcca4e21c5ac88353ee54753", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hrq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "771d37ce0a03e8dedc7174a4ae2c8a84195e8a76a324b9de60611f4f1f824081", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "092546497f22ca01dcf211bf56eefb3e6fab83ed4b525035f88389a18e49062b", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "90fad735fe2a70ccc63d2a10b513b3645f4a74abb8ae20c2049bb24a70e04326", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a73c93eba9d7ff7220ae9bee5a55f9ce06ae3f7ca1204509ded1e2ac6407d282", + "regex": "(?i)^https?\\:\\/\\/btc1hjz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e4c1a889cc5e62156bedbd8ca0f60e725f1dbe9230fb8c4267abda4edae079a0", + "regex": "(?i)^https?\\:\\/\\/trshser44\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d3cab5fe382e0f7181d548496da7292c67fda71d28f9704f7a0808ef88aafa92", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7dceb41a9b59bed369c67fceaf057a065a15ad9b852668dac357ea4a6330ee3c", + "regex": "(?i)^https?\\:\\/\\/wngehf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c5a87295e3e748a16fdd859292be721ce77f03349ff4ddc6b7230052b5985e96", + "regex": "(?i)^https?\\:\\/\\/videohottodayz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3116b9caf603266da531861012d2b56cfa10923932ac9c1b6e3b279ccb347c1a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "877d8e210f490f3e2940da8aa6c3fac9a2de52a38f63b1570f0cdf8ac3679c7e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d83ee1e06435ca367f910c61438ef11eafe1d081c926dada65e92f83b9c886b7", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1c7252cf8afee04741cc8ddfd503a41abf0a475e839b8e21bb5b8f8424ddccbc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b9a75e88ec832aff379abae596259232cc2655ba72f2e1d18d58edb5d2b7b396", + "regex": "(?i)^https?\\:\\/\\/btc1hjz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f822e57fed9015c5c60cc7d1239b339882ef2deb485d5b24666eb86d1d3e5118", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "54ed4b43527281e7f447ad9860f7871878f821e2943e5ee2b09d59f10d1e71b0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5a87e2b4d6c1444561f7df4204053485b204fc1e57ccc35758d4bb3d53276ebb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hrq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6bff03b3ad34a56afe606339f6f1d115aee647df6643dbba3c515681cc98f8d2", + "regex": "." + }, + { + "hash": "81ad76bcb79c607cbca43038363c10e6397df76bdfcce243f009e229df21d9f8", + "regex": "(?i)^https?\\:\\/\\/afkolozo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "08c462e54f883d821711f0b02feafe4f3f9df090b6588e5dd1971d5d3a58c8ac", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7e2ad99a604241838832413e2ae26a9bed6894c8f87078b8f133b0f99b6f1376", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "241002a4117b70b40d83cbef55f8d51f647c7488f228293d98b25d3197a4b9c4", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b0133b5403e3a9903f56e7ba8755ef36094056f1ada09b7d33443f9b0d424422", + "regex": "(?i)^https?\\:\\/\\/polawzo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e77c0517a7ba07f232bd7d4af546774a058eb06f3942035add64b23641829ba4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ae7cb92a3196dc37850d523d086e658e1c143174bd4bee736436399140ca4425", + "regex": "(?i)^https?\\:\\/\\/fetrfhfgfghfgh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d0f3071baa0acd981bc8698b489060ac0c588717176fe5617912e512aa926c96", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "09b38d0958b340aee3a574e7c42be48e8ab1f1e33671fbc7e8437b43e1a8e857", + "regex": "(?i)^https?\\:\\/\\/btc1qrj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c5d44afd8e61f09c9c66fd9c5d0027a462bd44014841867541c1e4d2f755b120", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a0611e759d1d7db3806a091f8479d78b41df04b688305f64ea41b06440701531", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "84677e20187a3351ec02238f1e8f781f84fc0504ba2691c0287ebd2f7a78f4f7", + "regex": "(?i)^https?\\:\\/\\/afklozon\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8f9a0f99059ac9f63e17f435810a3aa0f3db1b115bde75da4b49dc4315e43648", + "regex": "(?i)^https?\\:\\/\\/lopzaro\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "84347848c2e1dabc750cecac7f0f6093b7590427bfdcd2dfcd140b74984b9051", + "regex": "(?i)^https?\\:\\/\\/www\\.vsgdbg\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "817f26e613e367a0de42a07124f27be9c0813633161ddf711c8326d9d7ac626c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e4396b19c5103d2bbf816be2c375f6d0916b602459f5f5738fc1acf574fcfdbc", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "82e5e5ab98ad63fbc60108a29ba16c0df2241f351bc729dbe06108ba8ebaf5d5", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ed8276309584000caf741c2fe6b4dbf267057802fd4b4428414265e16900f039", + "regex": "(?i)^https?\\:\\/\\/btc1ysf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9a32d0c04815abc65bace6bad39000fec45e8a3a3a50bba03ae663821dacb743", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ccd19d6f7604ce4235be803883220cea9a417cdfcc436cc7fe511dda6503a328", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4ec9e203d57a378beadb4d7bd5fc7a56ba2c0347aa6460545109c723e38e2edd", + "regex": "(?i)^https?\\:\\/\\/cfavgc\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "be30c1816521deb0cd8b0adb0fe49a0f215c5d255bfa21f05097b3c7afa71423", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-\\-4u\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3d810b052bcaee9d7cd62802e1bc96f0a1a69667e6b770529faa10e74bd178db", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "02368d3a6410c330d888110c64e4d4b59e4088d8a7694b4a8f7c655925ff2ef5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wzj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8434bc5d1a73bab7e9724eed1e2300b85377eca92a23347272ad8e0915f6a82e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "151adf2a540f4740946c6605f613c95b40334fc9580069e3723a54780c842fe4", + "regex": "(?i)^https?\\:\\/\\/videohotspotx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7b2af1f29033f86badd7189ea260cbf1924b256b4fefdc3a1658cb16202a6d16", + "regex": "(?i)^https?\\:\\/\\/www\\.smgdrh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f9ac6e1fd13e30069b6da358adc91a3fb9ae0ffa209f8bc36dd90d62125abe8d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5276b24b07bce8b85505cfbcbf121a53423dad982797c6c80504090fd462d88e", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e68597fd840488402044c3897cf4b659de2baa60eec0d68dcd0bb8f6d05d2dd0", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3e31d75e66c47cf88cbeecf1ff9b2573f4fa992a10653563287256da13fa2f51", + "regex": "(?i)^https?\\:\\/\\/gndhcd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5b07795267570bc96b01ad40c61bae579e872026fc450055c3b3246f382e596a", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fb5c8c94395366f9969fb62a9f43f1b3df2ae5c13c0dd9a06f9f8cb505aee375", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7d1f379bfe7c810b64f15ea0bcfdf5d23b323e5a5db729894e43e5fcedaa843e", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "efe8e95319ed8eecc161c32372a22505cfc4ce3678cad47a48caf7aa09d20527", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a971e9ed4d485bcae3f10f908d0c54be5d16394314513c87805078eb9fcde1e1", + "regex": "." + }, + { + "hash": "52dd4e03157ff94e349e865a434bb8e214d1b0ec0f727d15f1901677775971e6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hir\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a6170e069dc19ead9bc394b0acde7096abcf2127558a629a9a3c07a51264ed83", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a0323d3752b7267e32533bbb73ef1f6d6e203e36c5c8248ae5d13979439694c2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+scsw01(?:\\?|$)" + }, + { + "hash": "78ae96c6f4c4418fce15a5e30876b7dae5075818fff2529ceaa36c19ca034b7b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2ba90ab6d1c65e08690761b0b9bb62d6b7d635b4aa0bfd15e3b57125b2816e3d", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2b8413a6a443270b4856d72e7004c8f5ec25e9dd6beabdb1745365f1be0d4e5b", + "regex": "(?i)^https?\\:\\/\\/trshser44\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "87b47cd30b80e2761d7fc236f258eb974ba17664d110daec72873abd392e3196", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ab9e7d165b09b1b0c05ff6a2055274fc4419047fece0cfe8d49c3337e1eeaf8f", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9e9927d087aa9ac3e7054cf46a1f3666fb029c18616b0525d88f539bf0b5337e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9a121ed18e588ce6ac0df0a6906c1547f254c6dc6cf83823a93710fceaa23cea", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7fe989f29e0bf9ed94f17d193654c9678ec68974660f2e23e571c88bd6b322c7", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f92c044e9ebb0f51a3b360daf84e3fc8db7f1f32221fd1a43f63795b42028167", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1org\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0fcc5159384ac021b2c3fa74bf6219982c16ed14a50883ffb6cc4a48fa658648", + "regex": "(?i)^https?\\:\\/\\/lonsaloto\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "943c3495a5b66c60b7f2f86862f3e07a4a015721e1f852c0b2ecb8370bb25bc3", + "regex": "(?i)^https?\\:\\/\\/btc1qrj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "efad2e2caa39ab42c4c3c73cd61ed63045e10d377e6bedad849150410efdc177", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "31c46b5dc9f8047b96bd2f338b75c87a9e74b6cc0ddff6145b8a6868550747e4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6921faf65459d568e263931f2e59b94d63ac6506f32f292975b4de4b631bbce3", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fa722959f0ac0f874bf2145738637e585a96e70a56e7f7011e785ab9a527f80f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ea51d033c807940f1ecf14b2f080718d94c85cf2a9c124c43e10f86eaa1eda25", + "regex": "(?i)^https?\\:\\/\\/michlawssi\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0c44b7cdae1bd9e62d390f96fd143baa9291204bd1b2379b0f6d972082c903a1", + "regex": "(?i)^https?\\:\\/\\/btc1oqr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "416a8351dfff0d0d764ddbd57eb226538ca466d9d2a86971c1b4b6dd05f61ce7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "dd87893d5a3acf87de4b36c6a2c4beac2c8bd8850a12f282ccb1e134c51787c2", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "835cf963f787ccde08470549c72fd5e638222076a8cc15a5c4de472eeca5a54f", + "regex": "(?i)^https?\\:\\/\\/btc1ett\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "99e345bbb692ff78884133dd7c206513c8c3deb5418cd73a9954d8eac9d5be4e", + "regex": "(?i)^https?\\:\\/\\/btc1egn\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f5d0cba913efc6ecc5be7711deff850e7285b1745b0b102bbac7af41ff1a36ff", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5a949e18a0e90344a2902ec6200d8a0eaefb52771edc8e5189b95345355ce902", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yie\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d8ff9c8f422dd1e911ac2525f653f003e6f887b4f3f24b7ce724150852a9c1b9", + "regex": "(?i)^https?\\:\\/\\/btc1fwf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "250e1643f67c938ce2e1625fe096483f13b1737457cbe7579fa3f514e0678c1f", + "regex": "(?i)^https?\\:\\/\\/polawzo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b8f2117cdf208a4be44a2847b5e0c1289ffb31e754c0bba9c8d1306443e27201", + "regex": "(?i)^https?\\:\\/\\/stumgys\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "22ab2ac90e278dbec2bcd7d437f13c9628778e76a661270026317c3e7ae74f79", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hop\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "78af351db86156c341b1993a1359e010e6845aa34f30368915a4b779f995d127", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d48a70ff8ccde26a0988e0c415f449882c3ccf8f9856a0523e8ec57eb18bc0ac", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0d1c343b09b6388014647ebefccfbca215d96d6ae07281dafba0cf8ab3d51e58", + "regex": "(?i)^https?\\:\\/\\/lonsaloto\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9d8c885e4086cef8118772b80c3399065fc8eff270cd340f2111d1d9185e690e", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0273dd799ae5696bb973aaa054e18aa8489664dd66baf370cb484bef493c28ac", + "regex": "(?i)^https?\\:\\/\\/stumbguysgems\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "de79b2f08af51b1084e2913e09d85fc45a12f2aebedadd0fb5c67adce8c7fff9", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "48e80f0b2b38fcdbed05de39a3347de64230397736715decdbd244a46033a32a", + "regex": "." + }, + { + "hash": "f66e07aecd5e8797a97b768e39147a1351004ba25e9d92fc2d7abbddee7774a2", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "331ae374c1e22e50368765adc689233314b39eb474a69d94730c1300bafa6ca6", + "regex": "(?i)^https?\\:\\/\\/btc1erd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4b583153b8ac7e7ac839dfc6e0e99fa9580b2b2e0713a6f9421270a6023dc201", + "regex": "(?i)^https?\\:\\/\\/btc1wuz\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c4e4590cc346501f189a69e10c6182b963ff2eaaca4324efb8ef350599bce438", + "regex": "(?i)^https?\\:\\/\\/zolbaro\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "39e26c7673af09867c7ba9b0759573bf0ab4dba46052865ba4f8af248487594e", + "regex": "(?i)^https?\\:\\/\\/btc1zqs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "61326cb78d8e0fac5f6a3a2c5a140b1e3963b387b42aadcc0f84058e39abb8e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8f70f795a523776adc1b68dada61894e417d6d24ae0da94edc6c0ff077f44741", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4e6dde7ab32ddb01cbf68385520b81d4c78761d57f69eb10cca76f9a4f596066", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1e6020276194e1318a7f8828827275d2ba3ba550c906a40cab2b8835843b9130", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-4u\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bb3d3f117cddd54e114e5ab5c2ef1e7e7c6e8480f4f5ba9113762b6fb70ffb38", + "regex": "(?i)^https?\\:\\/\\/btc1evu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "36ee855afff57eeeb63fad6b0fb69f291177e33fe2fe10bb5621fb84ba554314", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-\\-4u\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9825288a3ce29ce77183cb3e250282b1bc62613872e64020f494ef9904dc8a6e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a4040e0b48dc099f68c04f3497e5188eade949b6d442f1961a2cbd88bee49c2b", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6617689f321863fdce6cf1d7926ebe9bb71c05ef63d1249ecd98da04638fcbbe", + "regex": "(?i)^https?\\:\\/\\/btc1wzj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3837deb1a427c14d72fde306d64ada016e3852ffdcac48dccde4043e2ac835db", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5ea36372e84b3f96f6614f95609dc138b70ebc47079d930243139c3d713697b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "eecb62943e3c5f0c173c34d835069fc8c23ad5d621b99b3c294c59d112bc7c5c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gnq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ad6237160869cb25706f5c4003d68bf43deaf8aba5d76a1637273f14f844d5a9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "93a5ecac9c61a16b44dafbf63b8da5c425d359805c38aa59bb0cb5028e583f75", + "regex": "." + }, + { + "hash": "55b0da57fd416186975f84784f70b2bcfde06d1b6807adac88b70cab54276f99", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1c5ba67fdec73187dca72aa98fc9f223dfb5d3bc2f6c3c905c4b73dfef756863", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f99a9ef11288fd87daa394d5f0870ce10c274951708469e715a570394f51b", + "regex": "(?i)^https?\\:\\/\\/polawzo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f3ab4775d5d1284f3edd805df6504bbab093eefde863527f3cdfb7070524771c", + "regex": "(?i)^https?\\:\\/\\/btc1egn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "13babc4906589671facdf7cbed5f0e0baea4dd5254ba95557dbf04f2da5a0aaf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwm\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a076484aa35e6d684671dca76c089d019ab05e9d06e0f8e5bf69b90a703867ed", + "regex": "(?i)^https?\\:\\/\\/btc1zqs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d5e4dfc4e5169e93803b179f56b6ba8ada616bcc0b1dffb11472cc249a160701", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wui\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "78c5593720547462ac395daa5ab69538d0f67d0a0434c2bb05cdf8a4d50883de", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3e28daaaa74a244106498e49d829c614a86a6f146805df9a854d27ae93cbde98", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "09146f10865fe3f96c16714488555119ce0cf7fff60f490d7a64bde01157e8b3", + "regex": "(?i)^https?\\:\\/\\/aspoloso\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "32e56788bca407208bd4f03dab7c8f02127e166d323980e5cce71036429c64cc", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b6499ef20e4d9a713b740f8100fd78d23b04ed31f2eff4444ab70780de32219a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "08a0c304336bf2cde1bc0c36f47fdd40892276f1658f097c66818d3e68c0c554", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "865ebdb7ad6f122d412fb0149d33d855b75549929d93a533846dfab0499e9bc0", + "regex": "(?i)^https?\\:\\/\\/btc1wvs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "66343ba6d7a79b2a52d82469668243488cd732681fdca50b772bb520d18eab50", + "regex": "." + }, + { + "hash": "e0c8dd5e9a4d48a63ddfb8a491b4aa3ace5418a51a04d36bac9d82c45337edc2", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "78c715d5f102e6edc69999f56fd5b2bc6a342be3b3100d08702f7cd9e055fd7d", + "regex": "." + }, + { + "hash": "dcba35c1603f649e691156566c512d01a856746db3c77c301643d0d01acecf5a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fd14cc9f6256dc1b9b5ded4f8bccaefa6b4bd5168e9264f83b3457e4c997aa8d", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "752b93941aacb16d9d99fb26a738650c20b7dfa7fb35bc34cab3588cc008ddad", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6f0a3ef42237cc7ffc55275c40540b249242385f0e47aaf055c0ac41dac67e6f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wui\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cc573c47258c5a487d31c16fe148d557bd5800525a25b85393f71f1f3b046ed7", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d8b233b8db42c889fe6d7dc9b3783f2d0f877f21b683f4d07ad114ed721bf641", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "aa6fc5a8e6ac5131592d24082012327699935796973125c6fa45309f56399f8b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "483c36ea719b2f9292ac7343b813d94237d989ed48619e061747d98eecf9d992", + "regex": "(?i)^https?\\:\\/\\/btc1wuz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d178966190e1805d0fffa4efedc891be90b357ab0eb9c0d59ee767ff7cb8e55f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1org\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fdeceef7fee66ae3d26545b8ecd3513481822718c625c4e6f35f163f5043c34f", + "regex": "(?i)^https?\\:\\/\\/stumgys\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "98d51d9868a6287dbe6f854ae8afdc0d59188e8ff436681bc5e690e9fa36387f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C02(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6ad49e0aec6dd8174d1596af93980b6b7277817492022b730f5e27ad125d10a8", + "regex": "(?i)^https?\\:\\/\\/coin\\-master\\-\\-spins\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "27528583a07668b52906532eacd4522cd69c3f515d8def688618fdc84150e033", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5ce409a2d813c6fad933ea5b14d4027a81b56f9e9686a3091e0ffcea8ae71629", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "06c23702bd2b24739839363d57bea4e682724836f402fa6acb8e3c5b5d97fec3", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "07e75e2693b5e1634fac713194bf5f992451afbd4bf6c837e502f683badf6181", + "regex": "(?i)^https?\\:\\/\\/btc1eew\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5192b946f55bc0736159e23c59813d0e970b381ed8ba5f0ec54f8136d9d35a9c", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d414afa951b5848b232becb45333ef48cd04281bd86c89d4f1f6d6b7f31d736b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gnq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5e9b39967ae83b3f896c543ece57cc9f48f5a1a2f0e48c62561aef4031426b62", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "621f046be6834f9d1810eb09c6ccfe0f104861735e47dffd4b39e96be0383792", + "regex": "(?i)^https?\\:\\/\\/gbfdhn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "df4961fb175d37f6c1f412258860d49329a5e74dc38f8a1ef5de53790b7078f6", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fde0d5a84da713c77bc4075bfcb8931e7af0446ae4bbe9ad75badeec106b8af5", + "regex": "(?i)^https?\\:\\/\\/btc1egn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f3b16e9704825eae591670b7bcfd50ab9530a806cfa73332038e6e7881cf1ca7", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0efedf70d0de80152e80fd3a8092489e4c940a94c283a57f124acbe634a2ea39", + "regex": "(?i)^https?\\:\\/\\/btc1gpt\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "adf6a1d677299a20eaec5a0c481fe8f3e9c801de9059aa78f412e3c66c0933b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqy\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d0e870b2a4313f7e40437356292cc916975f917aee6991be2934f2a401ef6d0a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "efba7e6062baf509782a4c08656fb5e7612c513463848c9c85eb3a79013f5ef9", + "regex": "(?i)^https?\\:\\/\\/btc1kkk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f94cb083a158243bec98495e2b2f63812e1aa0688f0f3ff451c407650dccf7dd", + "regex": "(?i)^https?\\:\\/\\/seghfx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e765cc9023ed4cc9d0efee81c5905ac8669612ce838eacd5aa1dbba932365f89", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "914539d874aebab39651d2b11c60c6853646183351e4eb638d4eeffd959cc6a6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qxb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cac64e1e67c88550cda261dddda5ae8a2884fd9571d933f431ea0390557fd7fe", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "87ad4e613687830e1a324094620baefce402d777c5e7971903da39753094725f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "83918d6aca501e45e01568cbbe5f9122ce9aa4a5e95c6929293aedc3786c38c2", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8fb7999ca2e24f341f813ff29e69b1f4bec0f312fddcfac9ce019f9f6c8e2692", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d8ef723aced8dbdd760d2ff050ca17fcc0188a19861a7d189f5d48f23e45a2f3", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "446841f22dec00945ac5d2193e71a1495b25fe1e6134a0990475b95e0eef1594", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "61c3c5f6e1d304a7844d72e2621c06bc7c137001349bd7ed0b1aa8ba69573a36", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cf053fc36dd9fa78a1f6240f3b3aedb55b1e790bcc209e443213f49049350827", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b449b353e3ea8a3ad97d2c7529c4388a931bf128e2ea2ac67689d53a2b5c1788", + "regex": "(?i)^https?\\:\\/\\/btc1fwf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "752a80f10a570af5cf5ada40f5147491d7107de07523271a7f9d5f0d1a51755a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qfh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6eb3d687af1e0e95e582d80a6d2234ad2886901971e2bcd949c73864ee7ed989", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fcb695d730f03e0fc556c9655af64b80c5a74545ad8dd4102335c944cb194438", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c6ad5241d73ba5f7cce45104b1cf8fb3826d6ac7e3a3a4e7feb0cb332af1bcc8", + "regex": "(?i)^https?\\:\\/\\/dbfhrs\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c90e52ad5d62eecee3aea99902c627d156e39b5adc4ab9c357d3b3330227654f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6ed7bf982757ab40a875a9135f0839fcafa9e8c74ece5db5a322d0769fbe0610", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ee6da1b0dd6042e3649b983742f5bd59ddc1728c3591a40f612e9ac86bb0480b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "66504a1cdf0453f8f4d85e2f0802033e6c0116e2b1b8458f3f2d7aa707c5bc9f", + "regex": "(?i)^https?\\:\\/\\/wngehf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "23013c4f51e01ead438cbb8ddbb56ff8f1f939bf3ab7305cccb93857f56face6", + "regex": "(?i)^https?\\:\\/\\/fdg4rerg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "65f65d9b9186785c632f99fa4ef3406f6594dcf238559247b219ecd3bf67ae11", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f2d81ea6469d47dd25c2cf7ba10e441fbf8d2201c7217f3b83589c9b80bed209", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e97ff08cdb4cecc3eab66400adb9221346705fd73380ccba7b43165d2ec48d52", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d1eff57133616c1cc2a5efa2fa2d6a8d83af08d10d57c2f4b883cb130ce16092", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "baea27b7de12839b566f7df176c73bb9663122642fdad0a18a6577cacc65d9a7", + "regex": "(?i)^https?\\:\\/\\/btc1egn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cabdb5fc63daa8baefd054c6f5d706d63013b5c1226f67702cef235de6dade3f", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f9e475a477856a80094292291d4bc450e8e2661d66b8311c526dda3a7faa5e3a", + "regex": "(?i)^https?\\:\\/\\/fetrfhfgfghfgh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "04c8cb848b32c16dbfd14cfa113263691c4a3d85013ccb0280a7dfb033b23852", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e49ddf100f3acd88b40afd83a69ac274d5a074abcbaa9e81b031ec591c610f98", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6283935049d071eac9f13d697668b8bc992fef3dff7d0a5b2ddec7273d58d1d7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7b89d070ce6c0c733e4c43509f4d0ceb8e8bb97d1211f7f0ca8de90fccd7851c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "52c099bd1564020c6e634e0ddff896e19e37a3ac47033299dcda31c21aa047ce", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hxd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a411a29a76ea3553c3415f8eceda4bbb4ba93665734eb7606cf6f1234a9a963a", + "regex": "(?i)^https?\\:\\/\\/afklozon\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "698b1346aff2d78cda2c54971f3d894dfb24ecbe338ab906a57945692fca4fd4", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "eeb5eece1351d2e0b75a51d2ce460d42358e89fb9fd99a6e2311fd7ea429560c", + "regex": "." + }, + { + "hash": "bce8e78208fc30a6600f61d899c40d709115b233eca3032506b386f49a8e9ab8", + "regex": "(?i)^https?\\:\\/\\/www\\.vsgdbg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "488091da7ad6c7e8004702f7c0fe688d5eb96a98724dd10e8fdfbe70671475b0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e65f8ffdecc141a09873ec1a213516a5f4c16aca894f3592fe6f477d25b2cc7c", + "regex": "(?i)^https?\\:\\/\\/videohotspotx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0c94be74179a718a7ffa0b58e8b39839e43ee57ccf3f88e91953d0d50bd37e40", + "regex": "(?i)^https?\\:\\/\\/michlawssi\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ba8465d7a0f2478e62061c6a2aa7f44eceb3b5ea962bc68404354c1d93b0c8e6", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d39b0780116c80f6f659cafd71583b274fa0d1e17773f64272d6cf8c6760d0a5", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1c4508893fcfb6ac8f14ad1e13c3284d296caf7a13a787e9cd86174eb8107728", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5d575be272645ca536856522e8c9676a578730993fc2e60093337866c5bc02f4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gor\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3d2caf3b67e5ec541fea06497fe0dc70bcb26ec5115e7a91580b5a5150605dd0", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8b961ea5b69cdb5f1b5c6fce9a0f6261677ef11b255f12966857c90888b84a93", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "21e18f4c7cdb2d4c34200a2c74edf8fb266d0e1566677cb89a201c8a9d44653f", + "regex": "(?i)^https?\\:\\/\\/cdqsvg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f8c6cef8521b3bda993bba15466fa894eae47e3668a7de40375746a3e0293219", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gor\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "209034e7c7f5ed687fe549b485916be2777508074e48ba0aec9cbc6e2e854a7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.luigimarzo\\.it\\%2Fwp\\-admin\\%2Fcss\\%2Fanti\\.php[\\/\\\\]+1[\\/\\\\]+0109019344e83084\\-356bf6ea\\-1e06\\-40d2\\-8447\\-bb588ffbdf74\\-000000[\\/\\\\]+WOdfHMTBxz1fZvzGHqFh7JFaUYE\\=181(?:\\?|$)" + }, + { + "hash": "ca584011191818d712dd31306a045d88937bf27d34b5c83c304c69e1ddbcfb40", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2e61d87dba3daf9268ec9901371543ef4476236104003930ff0aafc68f8032ba", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8a244292d86ee31396d8da393f3c21aaee07615abd38cd8b9a55632b1bb24097", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "628cd3773908c93d785023dfd32e9fdfb5f20f648862df62dd7b09a03c77b7bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qud\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9363eeef2c3172e05bcd5fec870aad31974ecf0f3d97085378c7ed09ece64b63", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zqs\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a619db293c2bbb2f1a8a1b2336a6813a306218ce22192f42a403892a6286bb0c", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "794af375d32421a4f8779d0a11e75a6cf3aaf18382efcdee3b44b551efa88200", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "96ba5ecde2d81f7bc7bc5cf3f94ab6dfe3e96ec9b50d7aacd632079443ff7b46", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghn\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0255dc1187974d3f2127c1f4fb8c6ea0ada65cb52c6094365a1f71c241ea7a88", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "977738cda9e7962a8b61fd4918e9a5420c655e743daa50db1b7a88433473adcc", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a06100d173fa3301741bc847135e5fd8c3bfa94137b704e008886c2c006b642f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e1fefd641b237c74267355af5cd48feb70d2a7cb2c66fd1ef99b7961988323c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e9b5b4d4bbd4defe27063ecdbc67e1a245e5b6209f8a0008caf8d72910de0f5", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "163e245e016d880d5ac35441f690b7675d3678c6f52249bdcc28da5796cf7703", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a581fdd42176d360a7add530ded682ea8948669882d4f0d379b2c9fa19c2d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hrq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5ab243f726a35964ff7636f9166fbc3d4ae3cdcf3915f0b447cd99b7d92fe977", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4cc714da249f0ed816de80439efe87785be6274a4ad165cfe13235a54c0e0fd5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hxd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "77dcd07b329e0b4c4c5f8a9af4d291a784c3564f28d48b5285ccf6ed78ca3ce1", + "regex": "(?i)^https?\\:\\/\\/lopzaro\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4932123c0c9cc767bf29ea307104ff011ab776c3b92f85b33fe6e24085e54215", + "regex": "(?i)^https?\\:\\/\\/btc1qrt\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d5fca797d3a1fdb01ef49b1e8c18c4cb1359b61e0a2109e4f5e3cadd29b31208", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "daded152954577c404cac0d7217d76eae1c8c3d53a74aea82bcfbe95f08f65a9", + "regex": "(?i)^https?\\:\\/\\/btc1wyw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "75ca671644f509142a00ce06e6f1ab1cbdcea60ecdc90ebd517a485078498bf2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fd843a7423365401d7126d5f6967821ff9de13471c090d298764ddeb5f291a26", + "regex": "(?i)^https?\\:\\/\\/btc1uua\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6a480425ad22747e3240d94581a1592433b8e9d4707664bcd56e271287c1115a", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b4490c39d9c4601fd31c9a59b3bcee2a89086bcfbb0d7415b19750818a639ff6", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d896cf92e05f165935cf6d08c4fc7c623782a147a0be3251cd64d096190d9dbf", + "regex": "(?i)^https?\\:\\/\\/btc1fwf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6e09429bd5d28fd2e809a9124ebda5ab66df3cb051778ace3fc0410f133beb8d", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3469b1382157587aa457af7b97a8ea9c7a27b35efeb8a33ab3b0a0290b0ea09c", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "0bc64c0063ebcb58236cc5d1e1983fe5c72e6b1dd89bb0554c03baa06d19476c", + "regex": "(?i)^https?\\:\\/\\/btc1ysf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c220857d46597ff60f59d67972279bec8e06b14c4f33496fc2c85c60808ac90c", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c17dcbf017b17d363770f7ad114255efc8c089502a822fe66cf5e28ef02e4637", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5db32fcb7673ff01f3a2e6b96b9d3b7ebf63d8076e386fa6ca7d4c2f05a6ff9e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0340470e75aa97806cb9ea25adadbc74b9f14aad185d9161a9ef7f861adde939", + "regex": "(?i)^https?\\:\\/\\/btc1wzj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "128b767e7d315874592cf81a97d88e26aa6a2a25105bf048a47b36220cfcb87e", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ecbdee63d9ab5da5fcb78f312f1ba52694fd851666f2005f29649eed5383d8f1", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b7018d0f709ac4b5c5c4f2530bb066cbb5877d42adf86f81a92a3038c8ce1d03", + "regex": "(?i)^https?\\:\\/\\/btc1uue\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cc252402ee0320e3d41543a874f2c4e40c79147059ccce160425a94a0cd604fd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5d2323b0c02b192780b3493230786f727a6f75015b4d0f3a3b58dcb20f56ffe8", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0655b815d7c4d253065a0b07474929d1d7e51f0051b512ca16671b67c5d8476f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "84593b15d57dd938cfb7ee047af9f933be70eedd7172ff27e72bdddab1dec5ac", + "regex": "(?i)^https?\\:\\/\\/btc1hjz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6cd9f4c1678d8fd0dcb9c0dc8c0aff01125547632dde7dcad60eba7b80941f58", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d61acf8940dac000154c0cd3f27ebd877eb6537523722b9b3623ec3d225f6aa3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "94f2014caaec4982dd72ab5424aa2ead7ca735298fbf1ea79b2347f97586fa30", + "regex": "(?i)^https?\\:\\/\\/videohottodayz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cc91b71dd63237bd284004f5ee9c78b7b5ba137cb0cbf819d64ab4e2ffc5bfc5", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "66d276cb757e690d2c7688244cd9c4de1a34d0bbd6ea183dc026db74226d5d86", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "192fd473d73484b830ba4f6dfe92f862d7cfdb3b05b7e1a9fd4946945acaa1fb", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "546dc9656f1f39d2a0194a04fb4e40bf261e981222ac2f4e51ed585f895055aa", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8ea76a232e3710204a27eadedf006aa077baaac7150d91f86ff784c52114a63b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "69ec01c6b26abe1c521e20b2f479218c42e25dcbe0c93c5a4bd3501750f93420", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9063[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "066558e03a4758f53e955d64f0f04fdd17a2005a3439f232fd8150e3bb6ccbf8", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d1beac7103a657564be6c96d60ecae75a3b0739d116e9d14cbc88d8ddfa3c3d1", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "56421bb0f0720d160e7bd3360fae1a03405ad74548280d0130512d92da6035bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "18a7b48da2bcacc574273488b976b87a8806f329365600ef45edcc2124afbab0", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2db1410c743e1d3a0bfbc0e880f9c9f3d28f48cdeb94067e25247667e8ea8163", + "regex": "(?i)^https?\\:\\/\\/spinscoinmaster2024\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "573f7baa5d106124ef75bbc3f68a2eeaecb7df6be8cce0ec3df50421797f74dc", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "851c0998b08ca394e13e641234afc184572fcf45a2cbf3b07046af8462f2d5a9", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2f4bf32770620d34d96a6dafbb3b70e4887994ddfd4b33e0dc0d12c6a5cbc5db", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wip\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6f5a54de3b3546ef36d7cd6254418b4219f4cdfb7beffe37b8175650b30e9ddf", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c3a4bc9de4ab8893de0b001d1d2dda272108a7da95d1b2ba09d9aa566739ca63", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "29152df09e076d25a9b83c328db7519ae8538f9b38900e4064f6a66bd4aa3cb1", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1d8c4e992557e139d947153328742435b96a173000877e8b8b8716ccf8224490", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "eda6d3caf456677c25ee2ffda8acd67fc73ebcb5955113967834fa0a46c20849", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wuz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4d22b691b76d1ce4ab765bce5f0561731f8f8677220604bf31e97525bba28ece", + "regex": "(?i)^https?\\:\\/\\/btc1ujs\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f74f5ffd4bb587499ef6fd889a5db8afe76fd35eeb2743401367a9cab4c3a718", + "regex": "(?i)^https?\\:\\/\\/locawsoro\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "14b21b28ce3da1c1ec5d62640e7a2c33f4fb988b289c49c9daaa67b23d8a1ec5", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8cc1e2b2623282ba3d1b791b78d7ebfb771e84a8d86f727772c4ec1bc65341e3", + "regex": "(?i)^https?\\:\\/\\/afklozor\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5216cc63be1d09ab10cad0faef235f9196515746830c0dcd4f758245edd956a7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c3408bde87ed9055c4c2bd4dd65edf6b41f5dc80d6f03e821722f50a0b787a3c", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "eddbf2a1294f5563152cab25a704e111924999d08cfe6fa2bf09673a901833e7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6480c59ff6042badde6dd0d69b1e7a827d8ded4d036172521cafaba78978fa88", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b816c4e5969eba4b31be0d7e00396a4981718b265849225290b1fec48748db64", + "regex": "(?i)^https?\\:\\/\\/btc1wvs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "78c578417b42fc9019cc0dfdf4e9ce753d28bc131cb4019e8395a16de0a367ba", + "regex": "(?i)^https?\\:\\/\\/btc1kkk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "68c5464a69362a2379fc2543d8b29ac6d6df46bb06bc127fc32494434e003d2e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "49b75f75a9f9e761741b1af32a8d1b0b15a0ee79417601f487b7bcd3fbf869e4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7d2c7aa2599123a755e607a6b7b497b1be1a57edd6a968ef6cfa137e5c7b6814", + "regex": "(?i)^https?\\:\\/\\/free\\-5960\\-robux\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f9a3b4a9402f183fcb02993d2deeb9a45c35ed0c91bbf53dc85ec9122c66ce9f", + "regex": "(?i)^https?\\:\\/\\/btc1hjz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "369082a39c2289e3d5e3b344d515f15b4c30dcbfaaf94b6fcae5281e2ebe88cc", + "regex": "." + }, + { + "hash": "afe5eb7320ac4953c9914770122746052805f74013eb1747a056b572d5818771", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "55a46cf09199cef73bb3aa71c5252b37a6da44efb7e0007db12d322bbd392ec6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4dfb48544faf0303be7ccae777e11e5daf784773e8f9f7cae525d3dcad9bc17b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a99c09bb2f72b2b0eaa15f56e2343ed633d5f8ca0ade9f646772d4ab61736be6", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2e0ec76b63d0abc4bf0440551a2130e6c12a6466273447488442d6386a5eb5ab", + "regex": "(?i)^https?\\:\\/\\/btc1wvx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0646cf79ee4cd1821cea7410f9f982cc9647ee0b0b7660b6951b60dd7b98ec4c", + "regex": "(?i)^https?\\:\\/\\/polawzo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dd335eb6cff13c6ce47022cf477c4144f7fe81e47322cf2887fabdaaec81de99", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d78411f1e9e4be01424ac573789e9f03be9bc120b637a80b7e04b595643b9cb5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a4bfa51faad66026987c58a4d784363a8ccd035165cbe78c03c71f7d6776206d", + "regex": "(?i)^https?\\:\\/\\/btc1fwf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1bb994c167f2cba30a1f5d47e7fac4e739c1c32f832ba114c4a85dab2902819e", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f15d2b0de944470fa6e154065ab408db9ed2abcae66aa792c307750e829b780d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gor\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ae1f0cbe7821357f9a390e988a77646b362cebfde8e73340fb24fc2e46a99533", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e20f46618cc3c994b979fcb96b1d746ee3b301dc0bd19aa1f44da41d4294fb64", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fa8cd40237663266184057084426bbee01b8b374498136a9cb46cade0bb98d19", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "05e8b90811c9b93713cd277f03ce2111354f596490ac92ceb5e37ee4604490a0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1org\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "564e5f13708cda0ea2d271005c25e1e29f765f7e0a4a46750a3a18bdc58f9be6", + "regex": "(?i)^https?\\:\\/\\/dbfhrs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "85fcd4255846478474fe096591ed42772f845836d64071976c08cf88d90f0f91", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "32dffcc43d57d94a5fd3eb2674c6f8763491c13c52103cce2b4d3ea65f9b7132", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "63cb6b4e29b652685713a4e8fb4264ca097b029188b5b46026799cf57b20ecd4", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "09a0902a2b2001ac79eeb74d391eac47490cfa92578067bccb57996d49712c61", + "regex": "(?i)^https?\\:\\/\\/btc1hir\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "6eb3ae30a63c5a73354a55c83079dd238814d8c60ac867b5fe79a075cd4e1e4e", + "regex": "(?i)^https?\\:\\/\\/pinrobo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2f1c0c507b7b4d69e3f8c298bed23c48aa10d7a6c37ef7ad584b998fafd316fd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e810b802f90fe4bf7cd88cd17c256063be67aba10aa87364b6000f731076f410", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "574434e0765858f84239399bb61887ebabef80dbed3978dfaacdae3b42cab523", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "777ce8133b775532acf43bd6061e918ffd3621ca4307a84363885b50caebd762", + "regex": "(?i)^https?\\:\\/\\/btc1nho\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ba3da1d6cb3efd2757c03f4e98b60b3db62f5598d7a4291e010f8ec711c8223a", + "regex": "(?i)^https?\\:\\/\\/afkolozor\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "895daf218d6c697927408aa7e2574deb34c79a8196b61e87f6acdb465b53b63a", + "regex": "(?i)^https?\\:\\/\\/btc1nho\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "de744cb89fa15de9315d04eba0b3fc545057cbaaf125c89d5d1e8578fb5e034a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qud\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b7a5b36fd007c6c269cb11d72c0d9addeb8cd9afcf82d550868f6ab75a20eb87", + "regex": "(?i)^https?\\:\\/\\/btc1erd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "67753e54d156aba61ece55c3567ef893dfd87b2b915090cec951e864d586483d", + "regex": "(?i)^https?\\:\\/\\/diceroll4u\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "628619921da57197fc7c1a3dfe999c92859cd34af04d4f0f03398a1bb7fb0bee", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d3261b85617d6c7d2991b7f4c5076bf4c4678ba7310bca76e0e8275335868966", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "85fcffc24a170e68d82386839f8da75facfccad42f9e8c4a9123bbe6dafdd6e1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f0642c2081f5b94cfd29529124bef993464eb60ea50175cffb610ef48fb65ec3", + "regex": "(?i)^https?\\:\\/\\/www\\.vsgdbg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c602624238abbfa606dc398cd750cd5317ef27762b0732ef9d57fcfee83d6710", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "209046bdb1c34566cc696d347daba833695009a3dbd0c50cc1ab0a29c5005105", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a42ec04c042d158ddf79613ece9145cd95b451affd5f39148313e1bfa7e29715", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qud\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cf5a86c009886cd7b8fe748789363a50d401a16ea0d1e7634950a862f477622a", + "regex": "(?i)^https?\\:\\/\\/stumgys\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "06625dc5868c2a3a529534e3dee6d47b2d023f971d6f8e01aeeb7e57d39de753", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goe\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f65de8edd273263559882209f4db5c039398361ca73c3175e50ec7eb38598e03", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6d164d52ffa2d7667e58dd8d0e00cb5483922a1f7573471997476d0fc6e0a94a", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ff7a95d4ae80dde643ec2febc1cd3984ff0225a9f948c75aacc902b13cdfd7c9", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "702d10a39c8596b52cb3a9c65e99d5ff52ddff179a2e99e4ef64e9fbccda1af9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zqs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "73329ef50bd2ae16d50795fdcf329900f6b3b24ebeea477d6f2dcb0af9aafab6", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e3b3653f697cb5f6b0db90eecf690ac986f29db7ecea971c42f732d2b10e23d6", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "496ebd4d151978bed67bb7223ca580cf51579abb200e0599916a21f5378bfdc4", + "regex": "(?i)^https?\\:\\/\\/spinscoinmaster2024\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "889d6ca5057dcbfccdc44b5884679d1c6f5cbd701908f48d90b44e582fca0f4f", + "regex": "(?i)^https?\\:\\/\\/seghfx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f1289fce3308ec662e9b57ea474ffd0fe6962bd0ab058b2c7cbc1566b2c6c16b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uxj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fbc9bf6f98f276551323cf51e629672bae3fb53a5a4ce43c9c2616e903d69338", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8f6c6aaea380c5cf554da9a7ebe83d701cb3fcee2c55e9dd4c15b19180611a96", + "regex": "(?i)^https?\\:\\/\\/btc1oqr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "44ec37f34fc4fb1bf919e8e05da1d09b1345698e809ed825e714aa8267aa506e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f81ce720b0cb25dfda510ea9196f0df888d5a75e3e96dc8885a36eb6eecf69d7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ff044d6b65d0754791640f3878f9300dfd2eda643709dd705462da7f8cfd72b3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "434a6df6148f71dd8f074dc2cbd9add7263c0c34c592ad2c39f1af5e231e4612", + "regex": "(?i)^https?\\:\\/\\/afklozon\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "08c61e0f7f20bebdec30ef0434c2362980f2242d6a13ee1e8c122c0319a281c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wuz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ec8f74b6db4dd1a32795981888741f32e7cccbabcc993691f81031f00fbab595", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4e6823b1ab2a216cb9d78bbb630137e98ff42d2374e9d82f7f32191003055a94", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "99ad75b046d3f5374326e557b86261d54f87c37a6175ff1f6ab5cd3b118247c2", + "regex": "(?i)^https?\\:\\/\\/btc1qud\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "270482b0c0bcc3e0557078bdc6f301c677c5d6d651caf602602fec0a5c2cecc3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whi\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fc4c32de12dad768c2359864eb3e83298cab8f1781c544377b07488ed9afd15b", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "beb931b1069d53b9b9581eb5b8ce635b7ef8ddd610c21088f1ecadf40b8ffdbb", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f4450f90b5fe271e49f2e37b5dc8665c9add836b0080241a7f1ce7ba7bafd10e", + "regex": "(?i)^https?\\:\\/\\/btc1wzj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "44e0fb5d0fac6f0c9d4432321ed19d9d030d094ec9f10c77489485164ef6de7f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "00a73d725f20d3f5f3f576b11ec64f90ea190d7056f8cb5f6f1009533e9ca728", + "regex": "(?i)^https?\\:\\/\\/afkolozor\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "94b74cbcaebc6f407f6655e5338d3ab9e1d17cd04a7ced525d3d03a8a3957c69", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qxb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6dec9d346d3c9c6c71089adb18421704a27d5caa7c1d7192c8760bbd409eebe8", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-4u\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "617d2284aaa808ea703e0c3786c585158c9f545d6c8b3f5d92f4c95ae079b20a", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "897b432fd25e98aa10fa28f19841b2620a300d09fdaeb09dc67ec601c2853b1a", + "regex": "(?i)^https?\\:\\/\\/videohottodayz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "68dee9a2fc25b8dcfc353b56cd53e86545534027329b8f528f96a20b0dd31868", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qxb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "904b9da8fcda29eefd67b754a0804bae12111ea8e5bf17f0d33ef1cade178952", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a6315f8c1c586e99c6152af01500141ac87534be1a6e7e23095909fe7bb4d6ed", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a722318d846ff7c6efc3795b1f393fe35c293887b0aa68925bf11639948230be", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e660983c55c52e1080aca5b41e9862753f4bcfef3b03d9fd9ca313cb8856ac3b", + "regex": "(?i)^https?\\:\\/\\/btc1yok\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7483d82a37c32fb08add77adeb87ae16c23cda5476314b39b63fbeb12a0f81c4", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a577bc30fa26e18cbcc8c20d051e4873c77dc7866063f16bd810857eab0a47cb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrt\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7a186047ff45a449dd1261e4dd865dbf2956fa9fa26ccd40d367fa4c33b8d3f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c11c08a2f7d2519fa760ac53eee78cc378f771f873a36ae1e3dc3eada32c24a1", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dedade243398ad53690fe8ac1b03ea6eb3b26929819eb3a3ee493f35d63e527f", + "regex": "." + }, + { + "hash": "fd84ee34abf3f96da8c7e484d2f3cf4ae006cb5c0253ed80c778ed07ad358887", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "49f0eaa71c4902797d152725a80f0e562ac0e8866cc2d35a54e95f058f8d95cc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bf5fcd81de7b7c6e138f3836ce1c0c0fe6117793489957b980089f170553e051", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e0860bfc07090edea262a064a8e3c9d1bac9061c362153cb52f6a501aca6b4b9", + "regex": "(?i)^https?\\:\\/\\/stumbguysgems\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "45e7de8a36fc995148f685d510af693d49b45f3e6c0112c7d7b33f0068e4f628", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f07ffe4c490627b20920be2e452d17a1f922feade5abb51d901aab6a67653b85", + "regex": "(?i)^https?\\:\\/\\/zolbaro\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "134e01730aa3a74cfa6c7b6a26b980f4b019b5646dec74a5269db2a0c14695b2", + "regex": "(?i)^https?\\:\\/\\/wngehf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4bb1ee468b32456d6fce7cf04b21fa1d77ad372bca03914037d8b5632e6d0489", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uxj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "96fa324ad83c2e5cfee011024d4fe4775128ca7a851510788c5309a1d7502450", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c2549cee873fa14c988e56995f5118319e6991306ae201bf31a6089ca208fe05", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c3cb133865bf6ab9f115ecc1937eaa30deb5ead738772d85c70dc41a6a8aa8b6", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a7e31927f40fa933bc570a580d06a8b6e16596261d92af2745d90d9748af9d60", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d2d37b43b0be8438e44c6bdf3037474c9193861ec46ef6f8b2275b1ba08d7871", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1120898a627231be718ad50956e4b58cbc8245e91fc27e571ad5fda409cf79c0", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cf24e5842d4e4c10ac0e06f8a07ccf443f0f08e49b58bcd821847c24188e376e", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "05821347d651e0ad8096a2c9332990c719b7bcf025d4afbcc01c8581883327ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4cb99e6104b56fbd46bb3be8126a97549f5f15ac1f24b8839890a0513acd2161", + "regex": "(?i)^https?\\:\\/\\/btc1erd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3be311f5cf9557979d7f2ddb140a626814650a333c2fa2caac18460f36eba5bb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a61fcc3b6ff22b34f54fcfeb8a94ce86982439ca7d7b5c6cd34ed5aef624486e", + "regex": "(?i)^https?\\:\\/\\/sv5gardens655665\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4f0dece4454b2b63713e97f47d770d9fb7e80e31706bcd9f2c90ac50d7223dc5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1d70342dea7eb869f5755ca4b72aaafdbf02687bfa40b6a59c5e2b8154054ff8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1b12427c6bb005c79e688eeeae26ed27e089142eb4eb80c79af99e2495f80008", + "regex": "(?i)^https?\\:\\/\\/dbfhrs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6baf39446697dc205f6059dd0d0a9e7870490ea101e70d6af3f15068c98f88f8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "61c3a1d560a4955da82babd30ffeacf22e4ce9bfd393e5660d704dc462e482d4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hjz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e79441a08df83741b1b5f462077ad63701adb30c0ce7b23ad040934697200055", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a10e94943c2bc71f0b839dd81f99cbbf958f7d481b368f671ee389705fef72e8", + "regex": "(?i)^https?\\:\\/\\/btc1qrt\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2503fac4226af86cc7576526debf69c7695f18b18dd8eb0e8eadce4a3387dd6d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fe635e5dc8b2d373f95d53c7d920631468e7987af3d6e0c1b6dab8fc7ecd4a07", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zqs\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "314c33380e01d1acee7bc4692226159827a9fdcc891de00b36f4d62580d9720d", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f874f19ffe76ccabced76d3e150a9607f2a615e5666e9e28a10d40cf5eb22e19", + "regex": "(?i)^https?\\:\\/\\/gbfdhn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d4cb71080c7446cd8364692779b1bd75000366aca57332163d73139da76bf847", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whi\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6baff0e0b9db01282d60a698bd4a5e0464541f093da64e37fa07207a0a1ed16b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hrq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ab2dcadaf86287142b1dab7d7403ce36a16d6c7e1991147ea7135e6af1afb806", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a9ca38bfa7da2510905c4bff516ae40b2ec3a431e4e2cfa2e86fddfedfa98a8c", + "regex": "(?i)^https?\\:\\/\\/afkolozor\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "530941f890f6afcd6236d0ddbd6a9703551d48b58c842a7539e5a56803152133", + "regex": "(?i)^https?\\:\\/\\/pinrobo\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bdbe0b631e5926caca3d35a85e0e6bc8bd6fdaa45c11c615f9629c8e05f514f5", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fee1e4e1b804e9df2659ffe0df6dc88c3f09311e7fb3be8578f50a43c8c5dc28", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1b1efeaa761c8a6501eb695e325aa4e69c721e8c62eccba307ea57e0d819aa12", + "regex": "(?i)^https?\\:\\/\\/btc1qud\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3fe773861cab4d3ed71735a16ab3db4ff4b36174dacf4123114f76471f0fe87c", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "be7715f8a42c7469da2f22f737cb31fcdb4326365022432a6d792194497f1d90", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4a7d4227fd9eb19d6ca61d64e163c10f8b8e6b18a146067bb43504e8b25b1273", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b3806bb65d6804e75e2d476d63f84ce8dec5053ca0cd69bdcbf2d6d9aeb43fa8", + "regex": "(?i)^https?\\:\\/\\/btc1nho\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c5300da638d66af3f81c35f8a1a8a29c3e722838a6c2c9f32b73d5094e534aae", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "37e482daa52a563b1ee112a2b70521a4e218cc08cedc0eca2167ad6fe73640cd", + "regex": "(?i)^https?\\:\\/\\/dbfhrs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7cdc7292b37587a8c0e0052723cbd217736b8150893f04fe9b8cfa19e547b149", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3511fb35d6b64977b575e23b7c11342931007e21fe971b0a5a8e548808591c97", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5338a3fea4c9a362efde6ebe3aff1368dd462914992077e4e7187f3a97f5dce2", + "regex": "(?i)^https?\\:\\/\\/vsgdbg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "83d1027010e69aa8fd199498e8cfe4af3699388a0c19392ab86f126c77337c7d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4c35284c7dfdc197ed945b14b11ae915d54dcac0c2ba681c750f0aa043420ce8", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a4ce4c022db7042a71196fd6e22fcc054e82e782cf6575005afe72e2a253561f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7be48ddc10cf1e1baa1cea561b84fcb0a5f52c362ec036942f3374425a0e1efd", + "regex": "(?i)^https?\\:\\/\\/btc1erd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "489117a68ef9bcb9f431f00561ed1eabc9c855a22b28be07755fbec9a8cc2674", + "regex": "(?i)^https?\\:\\/\\/free\\-5960\\-robux\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f151b909a960eb80deb832d40fdb42a650c2d0fbc8d12dd02631e7f1c3314ecf", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b29b5f6027a442f03a1510cd24c64fb725d953c1f87790fab5b95c9fe0547d9c", + "regex": "(?i)^https?\\:\\/\\/polawzo\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fa65f639516f03ab4a8924215e59713111cbaede28d458bf31576fdf720597a7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wzj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "56b38c50f5a08eabf6ff1e735b2887c9daf23be21d0441b66724e8ad13ac6e67", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e04ea71175ffb940ff8e95ed97046f417002c1f2e63c4c26eb73c3701332de1b", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-4u\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8443542157787b6c590607afc9c435c9f457e8168857f80224b82c0cdcd21180", + "regex": "(?i)^https?\\:\\/\\/btc1yok\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9d64a15dfaaf11787a5efecd522e9d4f9f21c88cb650fbb2e1c71d878a91142e", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "67e6bf9e4c2c51c6442c91da619e0617ef93b8832726f860922371bf65ac8475", + "regex": "(?i)^https?\\:\\/\\/vsgdbg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "52f641557858a4e256cf913e43fffe3fef5686402217c296e6fd79b725f2d6bc", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3ff3931d85a9d53ae2421a92f8b13e2b62a9fa3e00c8a51d28bdd68ab5f7e1b8", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4621cadb60a2b519362e2f8180ff8f15e97d5752b969b5a18a27f03271ecab14", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "92035609915f9c4d6053545471ee853e9a4264dabde9e54dab19ccb66eb86e30", + "regex": "(?i)^https?\\:\\/\\/btc1wvx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "080fc7ec7e71507797a10abbd97240a705cafc42f58b60c23a1ab4de5a53ac6b", + "regex": "(?i)^https?\\:\\/\\/stumbguysgems\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e1fe3402dd14895d5f67d1608d0a02314d25ddc5be6d5ef36a05b5b2c9197614", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b62cbf363f5aace147293440f551040c704458b34af6cd8d91b67cd957dc3389", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "726ab1ce0a4a52a364ceb9db7c59d72a6ece3528a2ee6cff96fefb3461ba3856", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "eaf7412d8e3bd3c02ee1d8ddc3920142c65ebb143c307418b7b3ecb714b3d67b", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0994c8039d6d5e2e7629cc99c62c282c0259e6b0b304dd7db5345d5111f2222b", + "regex": "(?i)^https?\\:\\/\\/shaw\\-106277\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ae3ca64a98b62b9765732331c60861aa5562ddd7b8ee874c985c156f4c42cee7", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "20ea74372b815d3f14992e39ec09c0a725e4a417f69fe9f97b5d49a2639025a9", + "regex": "." + }, + { + "hash": "c9af46dbac7697822b90a268992e45cd5ba3855d4e07ec24585d9dff1a284fbd", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1be0858463b80e46988f9525335835e2f0676c66d3880d589f6a28bdfb1c33ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "edd14ca3925e8d28e5ceef9ccc7a29941b7512b590396ce0e2f98238a4de856c", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "03978747806ffcc8f3061085720517574038b800c246a0e63d098660262261c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hir\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d23bdcd23b8320db5f2a49a04283f96dc0dc228e35a403ceb120e1b928722945", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrt\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9456e2d4749fef36d55bcb035df321e7c9973d451fc7729c590296c5266f164e", + "regex": "." + }, + { + "hash": "a85fca199ef97e427c88514cf398ce4310399d374dbe8e3e21dcbcd100056e17", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2bc2562a99477bd451aa49a5850c9b6e5e048509b552a16c70163bb574aba76f", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "234779b404e77a3464269c0b8426fcfe06d0f136b2961dded7027b3f05b265c6", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "42871986cce87e4f9f1f06a588fdab6e4232aa67e52f0b05bfd42f808bce0448", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b37c50f5ee6662bbc2ccad36809200a8ca72995533e1be0d497e367822aaa287", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyt\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "157030bebfae6b52662a987376529d0f3fa0dd693e6607bd4b28960df8615650", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0ff7a35933235512a224469be6241abae7d4ed075abec6e7209f0ef60f616705", + "regex": "." + }, + { + "hash": "243bf6152c4327b8ae3f9f6ac602c0960cc95803c5abd13d9f1d49a8ebb8c070", + "regex": "(?i)^https?\\:\\/\\/aspoloso\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "624a8fc6e12d53b7c2922b7128830ace85bebb1ec0b66db800008560c223ab0d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wuz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0f774b3058f1a3747275907f6c2ba95b1168081dc5a814e6d17fa77bef086dbe", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bd60074541381da117778be494a5957772175b7eeabebf5572f7313dff38503f", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "12cc955670567249824d2fdaf114c255df60505faeb2462f70dc3f76ed4ae517", + "regex": "(?i)^https?\\:\\/\\/videohottodayz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "dd77f298fcd7e91731b736dd9ab354ec1a0e93fbeb745fc14ccf689347337528", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gor\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "78c70b5b8fcc1ad6dca4db6279982bd13b6df32c9538a155ddb434d00e6ae6b9", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b21855fc1efcbf96ed686a8a40c5dcecb7e04790661e5eeba3b1aed613d86", + "regex": "(?i)^https?\\:\\/\\/btc1wuz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "658d47f7619c30e7f0ebc98afb153220f8e568673e1fa94c0ae4e69f942ee859", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "97583ae4ccac83c25f5c27db570b90f5e7a58291356fa4bec52da8828bd68265", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f4a1900a3ff97982079196f98d41f4d927a8e0a60f4ac3eee6ecc9d7a273ca4c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a0838c3548a2c60f55afa019fd0063257bda5090ba1aecfd51ee319d95c32a56", + "regex": "(?i)^https?\\:\\/\\/coin\\-master\\-\\-spins\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "546dd5c4cc70a60e9b5dcb73180d8f807c6d67aa93028d33c40040b96b662f81", + "regex": "(?i)^https?\\:\\/\\/afkolozor\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "51caf357f397c2add492503b55036248cf24dc22a8428ed516a4fceb86738349", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0bc1abb3cee41894cc4c5255daa19c9bb32f9c28d532ccfdacd083924191f1a6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wui\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8ea5c752d6dd4120b93186ca244a74df2d6ee95bcbaa4053648720b2e0c77553", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8d2f5bb1aed410855ad0cef2d2f6c56623fa082eb3d98963351291e455d66002", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7618530939b5983bd90324aa5ee04c67365347a460697ec6c7d3989a6bbeffe8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1df790f0da3f27ad45e3db6f75c2ddbd92642174833ede9ddfdb2b44220cc0fb", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2263a6977faa6ad52b3164d66d9c8ccb4a8d28b3c66d75ce2eab6ee3e738f79a", + "regex": "(?i)^https?\\:\\/\\/gndhcd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2478b98b79ff65933be1f3bedbc50ab222e8911ae98d85f4e55afb37994ae4b0", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fb3c581211b7e63d8dcf4c20d47de9b3e414a407f784d16e4cdb8e282cb9d100", + "regex": "(?i)^https?\\:\\/\\/btc1uue\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "15b66ea6ac8c8dfaa773f5d4da6133d5cecedcee11223ba5253650602a3b44e5", + "regex": "(?i)^https?\\:\\/\\/btc1goy\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6fbeaeb7d66e0ec0ce4ac718584d5d77651a51be9eab0906cb728ff26366d948", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3b7c965e882feb770661b8a79bc9dcb42927f2538a16ee1c2dd9499943f177fb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqy\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "470b2e4e51c27e987830daba99768e95a2afdb4ed8eb7f17da309c523373b618", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "73c46350a9c69a7bb98328364c9fa2b9702abbc04091d46793ae063ced084001", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "09281cd9539bc7e2150927a63e469a66882ecb1ce47edd85c37909cab41b09de", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hxd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d2fa7b96d822039b4ac8bad2d4de6c519df86032b40d8d4d6eed0fde4aea95f3", + "regex": "(?i)^https?\\:\\/\\/btc1wzj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c6e104fb68f7f2e0c3f4b97bd01a8ed902311754e51d7ce28dfe79dbe5c46609", + "regex": "(?i)^https?\\:\\/\\/btc1gpt\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e18711b835e4a77391d6c131e8f6e3c8958bcb716581a828756a06abf728002d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "44a6bc837fd626135ca6664ee29cd3cb14012aa99e8e5e11a642365a06d9faa9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c2c243b576d0c29856f3559a563089e21f17649b1dd0d86e9f06a6536677e496", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f47f792ac76ae970e7fe66e21e03f23b46c771b38ef41d13e5049433dd8354b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "31df4b9ec94532b4708589c0f57fa0670f3683d6bfc86a3631de8fbb4522610b", + "regex": "." + }, + { + "hash": "5ef0533fc172a1004665832f59c3bd4f6cb7d6f967cdef9d6619541c7fad34b9", + "regex": "(?i)^https?\\:\\/\\/btc1erd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c5b58850f43c35b4a883f1c028459fbbb3727b0c7d3021aafbeac2e0b4294a4e", + "regex": "(?i)^https?\\:\\/\\/btc1hjz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "38df45699764d064c1db34897ab626d4d446ecdee6936c391c1cd94143f7b51d", + "regex": "(?i)^https?\\:\\/\\/wngehf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e64cd990864b505952fec591363c515e3eeb9219a96884d3c1b79c138030c8bf", + "regex": "(?i)^https?\\:\\/\\/btc1nnn\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e941562e819e758ecfbe3ed8ab0d09a219cfdb59401c570d5ce783052ee6353d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwm\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7df4486af23cb788b0dd6d1d1b3462661698a47bb0ae54ffc95d1bc87d1e7569", + "regex": "(?i)^https?\\:\\/\\/seghfx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "076e04c7c788bb9357239b9cb444fa969cc81bc953e2efd69139ab487e6d3f4b", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b024a0d22074c437d33b1b94327abaea58ec763621715f4c3cbd73384ce34bfc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c78b6c1e4ccd0920f746af5f6dfa21c017f0aea6fc98a21b317ca8f3e91ccf38", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9a0072d01b2ac5d7b0203708cda4f417389f38c5fb44e62a1b13dc8bd5f89993", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "28de03e1eed0a0e91e458b8abe497b452c5b37b665a26d871a45f7e138be39bc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0f013176ffbd45ea92ff396c96eb45ec769ad7ec3bfe479d6f550952f21c3ad1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1c84ce9fd305c183e678a0fc46f147dd7297039c419a371a634321b559848eb3", + "regex": "(?i)^https?\\:\\/\\/stumbguysgems\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "65296953291608b7b33f44d631b070f4c2f4768944f18662426a085521eec654", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e22785390afcc8c2c79557db4285f5e6d6c4943d6e128ebae7bda3c4402e8d1d", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "381b5735b4e924af8355a953837ef858bb1610c42ec1a6a4057bbebc76afba33", + "regex": "." + }, + { + "hash": "8d23af5accf8a397d077f7f66bfbc8a1514cde15e48bd68674bd858e407e896d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fd8411b2de4a3c08bed8a81bb95cb5f86f2003ad0b80ff822150e205aab06543", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f3288271381fd352dea65e714500230c2f6e96cbf801a0f89076bdc2a2ab34f5", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "32b51029a03ba254fb2f767cad9e0dfe25936286522ab623cf733c5bf0e3304c", + "regex": "(?i)^https?\\:\\/\\/fetrfhfgfghfgh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5a870989fd58c118085d838edaeaac461e92ef5e50a241a0da086ee4ecec101e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hxd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "586037c650b6bc65a4ee61bdfc24fb8a28bcc88416f741bd9218e2e2c1068360", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "48edee60645480c84568f3af94f1e0164371a3c179427569bb9eb8ba809b8f40", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9ce0bdc5d8586490d4e76e01c1631e0c5ca9424806ded19291c9ab00fd64db57", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9fbc4e233e40e6c9a9ee08cc7c944e9849a575ddf04593432eb037fc7e9ad69a", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e5d9e59ce93ba049d6a529f7a33ac419e2540146a9a798eb981b26260ec7e2e0", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4cb96bb52a40eee45cedbf39e2d6473573dd70fe7a4bdcf71b1933afae754226", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "25e1ebb50cd01f0b06a55478ef96ab376491b2ae64d9f4da7c1115cd3e0d0f03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+telstra[\\/\\\\]+manage" + }, + { + "hash": "e47904cdb47cfa91233fcc05fc1e534bcb894884994fe2359ea73a141a342201", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d23432e6e8d916dabe66805af2e196ccc7959770e3abde12f30cbfe1fb759860", + "regex": "(?i)^https?\\:\\/\\/cdqsvg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b678a8c5bfa7839d399d1f08cf42b7a3056a3e89c58858b9a948966de91e8259", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1b7cff6dc079adec74014b31fc800939d1e5a16a5cd6deb44e4335facc24ddc8", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "da16c89143073b7e64ff47e3cb52e97f47649ff642a858931ef6d4a055452e62", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8923d9c1841c815058cf97027c20c69f2ffa94727b4ef45f650676377c652869", + "regex": "." + }, + { + "hash": "7fdd6ef6485fad2d0c69fb41c28236b89c9beb571c5c59521067aec8376f93c5", + "regex": "(?i)^https?\\:\\/\\/btc1uua\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "aa873a5fa109a7d954e66a502b38281989b7fb82b53d0d177fd4031b7a95f0a8", + "regex": "(?i)^https?\\:\\/\\/yourpersonaldocs\\.z6\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "e8e26e37d448d0a0d807f5f999808a560eacf0b15e1b518ceb6f1baa2599c13e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "435ec38c7fbcc86805fe2f5dadf6b3588cc2579204a1981d4d3abfbedd69d617", + "regex": "(?i)^https?\\:\\/\\/btc1oqr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e76dc2f065b9bcfbfaddc386078432b71998b38e16741a437f2bb77e81c9039e", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "19ab6817ec83ce188e150c44c7d34f52f3df0db1cc8ea4609a63d667b9f52aaa", + "regex": "(?i)^https?\\:\\/\\/zolbaro\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "94b97065e97d44e4dfb34d62098bbc680f3dcd6a7bf28dc0ff401927848fb6ec", + "regex": "(?i)^https?\\:\\/\\/polawzo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7483627f811bd4e41f11e04498174f1ea31aa06041fc849d9f3ffc37df9cc92c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wip\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fc230662ca7f73144a49fe104ff94001f47a59f0e7a31d4666fb57b528ecc0c9", + "regex": "(?i)^https?\\:\\/\\/afklozon\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d6999479a1ee1d47e5f4b103ceb9107bb9d2c9f745f21b7d2dd3c6522e918280", + "regex": "(?i)^https?\\:\\/\\/challenge\\-89858237721\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7447593edbbafe0fa88fa3855a135e378aadad8352b74e72bf24f7c289e4b1e5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gnq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "260eea76f6a96452b12ac8c03cead3620225dae481d8359d06f043484d0c59a7", + "regex": "(?i)^https?\\:\\/\\/btc1wzj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1b9a418cfd653137a1138500cfb74b5c83c0aa25811175af02585ae05fb433c0", + "regex": "." + }, + { + "hash": "108a45dcf7eb213b9d4899e3a96dd329145bdb0bfd0a68afa4100d33a1d66eea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1a587e804d10ef60b53a2c6743b172006d7d5412effbaa14afc8cf237b572514", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4143cd5948f62853a916fb487f9a66d2d720d9d94b054d852e0890fc4f1e49c1", + "regex": "(?i)^https?\\:\\/\\/btc1nnn\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6d898419b98915df0512bb92aa6f54324c384dea1fda7a50c19915f78f896a93", + "regex": "(?i)^https?\\:\\/\\/www\\.vsgdbg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "69a2092d1ecc2af4fa8e387c892cdb4f2b5307cd9ad9dca2399b88f23d92c827", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3b17ce603154cfad3d7aaf9c1ca54861666c04247f2b78d4bdb1d10aad737", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6c2371610d9cf0a54887ff751373275b169761cc90e5ea61296671c008ca20ed", + "regex": "(?i)^https?\\:\\/\\/www\\.smgdrh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8d3101b337cf9c50a00a93c7ff0ea1d2becaa7c600ec76bcf5326ae57677c73b", + "regex": "(?i)^https?\\:\\/\\/btc1gfq\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ec81e22fe9db61df3cd87e22e4bb09ae3e56c1cc50db25bc56787d067216fe11", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "93bf360596c2fee5ab9b73e038a0502b7f711e1016dbd7f24aeec254577f9192", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "613f10ff4ac74f445b55a84238de13c6a91ebd86863a960ca1ccb1eee74407fb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d22dd2ad4ce37df51419125b8102b5b9def154140614ddd0781fd111ea699b79", + "regex": "(?i)^https?\\:\\/\\/trshser44\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1a1c5e7a8dd27c7dfda4441873e65a38c7d52a10ed53ca028609919f837d7820", + "regex": "(?i)^https?\\:\\/\\/zolbaro\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bd76c00953fc0d753bc2e7376ed9a5603b82f6201f15501301dc864c037b130f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "50130d6028582e4a7c8f9c0e8814cda68285ec93e74adf92cafa0ff66409e6e5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "894899de1ac103987255e0aa8cee2b0e4dceca160c1af13042be44b2491b493a", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2133d90b7cfbdd0180a2468c1a04d6d431c619021c355c34c13a9a196e821013", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b81dce4cd2a8999aa92b7390c8dfc9805e28046312fa64839a3b63b07d00e986", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wuz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "96a4bebb86e95cee452d7efb67a1e68c487806583cfb6d7721add9b6bf4e5ce0", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d123ca1605aaeeecfe4bd977d0cd31730838676f3168490972f8a15e6efd3174", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0ed74a6501fa0ed151c03cc9ff81e8aa3f8e2ad172fe9213c21e258e738f9a67", + "regex": "(?i)^https?\\:\\/\\/btc1erd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "13bef3a70bc4cd88205fda0ffe357b57ae078bc43fe08a9bb712d2a462a62140", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f6ef0d066b4db2cc1cc21b81d3e3f8ddc755ff89c28b17dfa40d969a06be8519", + "regex": "(?i)^https?\\:\\/\\/cdqsvg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2b4ffe19fbd430c2578c588e7f1db9daf5699e0cecee35453ea5d67a8a1e4779", + "regex": "(?i)^https?\\:\\/\\/lonsaloto\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d4363298c1f457388b6552214e86c14e043976c8fe6e8e357c84f13902f10cb6", + "regex": "(?i)^https?\\:\\/\\/spinscoinmaster2024\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d812f36b6343425e437b06692e204e8f34690204d42c2619efae21aab900b6de", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ea721ab5b966ee258ddc63e195147aba7ad8a1985140c1750618f89cad6ec754", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "80b7fef029963329b526f7ffe85d067e1d9fe10111d7190c27d7f734c941aeb9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfn\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2ba205fa543917c01b9bfbdf777f283a6f0faf91c40718f3067f4e6158fb206f", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "151a63a9ae30566be37175361e5661de3ac9f88c9db8e0fd9df73c9df3f5e145", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wzj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "12d68c3f99d58ca11b0a4f2a58d64881e2da366a39b648376279f5236def0b16", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a01d1eb6605bd6641aa5c2d34569af25b302b6842a04e8f419026c9f831d2d9f", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f965af651cb7976acb69f83500416e11726ced129284ede66fecb11fa1fc4e66", + "regex": "(?i)^https?\\:\\/\\/afklozor\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3981e76e4cfcea86f3cd793936f3a77887a2c6204f9d5dd6b9926283af0e86c7", + "regex": "(?i)^https?\\:\\/\\/stumbguysgems\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d14760ca2c3518f4edc52af5b6fbe8893f6d472cbbc448388abf59f69dd7fe26", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2c74d047c53c7c8d9fee5c6ed610e9ad0a5637e695d77982d9171131fb340c7c", + "regex": "(?i)^https?\\:\\/\\/vsgdbg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6fa2df88bef77275574165f587798c89afd45a1bc51531bc0312a5844c4b9944", + "regex": "(?i)^https?\\:\\/\\/btc1zqs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6862cec133e08c87b0be418de7d1b45925eaaf0a6da497f28654f56ac80c0755", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c961b4d718ec0856eeae4c9f681d68c4fc9dd0747412feb2b8441c5a629db7ac", + "regex": "(?i)^https?\\:\\/\\/btc1evu\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5e860a8ac991bd9ee5832b42eab8564fe4475d70497823e6abf1baf25992025a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "751b66c749a87ed99538577087aa1d5455b18fcad01ef09c3f69f12845dfcabb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9c5d25b4357fe7ecac66a623d010ac5e7013596943a0fdb84252b2aa28c787ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "df82d95636b8eafd5d1c4c3edb6e9e29314ea5a940c8b2f41db713a985ffc92c", + "regex": "." + }, + { + "hash": "292de00a390c999b764349daf22d72fff5b4ae0b116a32846024624cdc60525d", + "regex": "(?i)^https?\\:\\/\\/btc1nho\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b1c5462da75330684a5ee3399f509eee6abddff0dcc163c5e67e1a325e8015aa", + "regex": "(?i)^https?\\:\\/\\/btc1evu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ce7df11730691bd2bc1174d00f6417b393cf8c6e8b4fa21bc206599330aa319a", + "regex": "(?i)^https?\\:\\/\\/losawtaros\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8a24040402502fa24ea139fffefba73890ba78cceadfcf138117808aaa7b7a37", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c210afde8cb80019872e177b9717104a30027c9d07f4de42967e05fa292acd41", + "regex": "(?i)^https?\\:\\/\\/btc1ett\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "528a418d505b955e6d1158e6be7e9ffcf681d02119ac2fa5a73ab60cef4f03b3", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "539749f684d5856f3cf1f80740d68ec73413ad7afed031a6921e67aa52383793", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fa48615fb2072b8916a96f8b580971942508b2af370ec65f5b4b88db2a704aa4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0495f94fa76f8bb7184aa7a2426cf127aea28d93397acff6eab4945712debf2c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d47a54b8963b19af399789bf6aaf2a31cfb9b64616d0ca3c05cf0cda91c30bef", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "12764996c505453aa01a6e7dcfc730879947db58454f5f0480ca7335b4ecd576", + "regex": "(?i)^https?\\:\\/\\/btc1qrt\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "71e3b2fc12e328109bb0699a78f16c83d602e90c08392f9f05e5c3b971b795a1", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7a0ef369c40c7165fbd38635ffe1a90d73baed56eef6761ce267cab69b9be0a4", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "26e686b707b7921186ffa776f50f1fa6d940b22840c3737dd0dd2689f619aa78", + "regex": "(?i)^https?\\:\\/\\/lopzaro\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4d3d2f0dfca91e055569964f2c6dab9f469782a3fede1dd9c4525502f8fc75f7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qxb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6fbef581472fdd150af7d62c571add4f552bcda375ab1c81f1c4321b10037764", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a6ff83e7c19cb59858464550841f1994da93bd034bf5520270f76482da965854", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "91021650f861f435695e3932c99251310490a9221c1d3ebc42d0126f2bd65eaa", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b079b1c05505067288caa73f3c614274f0ad2d7ae95beddb6ff156f977ff0bed", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c46e9c480da54bae2068eeb91c9c449136acd1bf7f135d61aecd044e89417749", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1e126d47f43470c2810e2a31a7eb945f804ddd24152034ec26a188e4be1c9a12", + "regex": "(?i)^https?\\:\\/\\/btc1kkk\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dfb732005e2bc75c82932516cd6231383150fa15a83d912edc9a1f637ccef123", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "26a962d9d2f754768420f30ac3e5bd536bd92c1e0a0d0517c5d6218d87813020", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f006c60beae1715f51fa541b70e2f6fde61085d4dc32bb3e8c7ca1278bdbf8dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zqs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eece83dc21f44cd43efbe907f9175be2c7e371506e31e41a098edcad53432e78", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0d07f7d656b4c1b0636211b46171c9dbfb927d2c9ffc13846705a2a2873143cc", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "35727b7b7b849e06d41ef2fc7e49aa43dedbb9e9ccd628b87fd2419e8c334c96", + "regex": "(?i)^https?\\:\\/\\/trshser44\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2fe70dc68e7d1004380c7703c1e6255878881ba46a8097bb7f90e3f95bf30853", + "regex": "(?i)^https?\\:\\/\\/gbfdhn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1a16c6fcc6dc96d848905b15deb7a0a521b05f7db565fb931b589686af5f03c4", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "62684e62aad3d1cafbd8e16a0a620fa6f8540451a22e8ffc9fc3d9ece573bb3d", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a38a5013b0bd04b097534411c320444c6746930c6675e4db8448a5d31f717ba3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f6e2661871d0bb7601e56949de5a50506a517f97c8ebbd5c2763b633fe24b503", + "regex": "(?i)^https?\\:\\/\\/videohottodayz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7644e5547c0c7e1bd364109e95d6bc4c5949d5989f7e665c95e9c9848bdbf604", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e4c17dd8b7ddc84977ff7c013b21f69dbff30d4ccc6fab6f0109edab16f7cf23", + "regex": "(?i)^https?\\:\\/\\/michlawssi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f68aa2214ec9ad6fb704ddb06fe88f88aedae36236131a171f7353dc331aea1d", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-\\-4u\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e41f21e8a589449ca9d850e83dc398ad061dad4b1b70181eaf2dc588fc8d5f69", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qfh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "23092d8ca9df1d32b885816456198da02b9b8260012d446bd5cbd8a0eb25df9a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8c8431186088703c5917c37d53d09ab13cf790bc59dd0c1a2f21bcf63bc1518d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqy\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e5ef5309974666adf5eff70816e4a0af6328ff333febb1bfa9f38b668f20f041", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "24aa8b1796c165bb26983add904c31341b32910b02bc324d9de27a9fc1ce66ad", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "088780fbc66ecd4e33d9a2568bef69339aeb773fde3f8815b42ec9599d559b22", + "regex": "(?i)^https?\\:\\/\\/btc1wyw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ca288c76e6a39e795b5970059389c36a45e35c891066465e59c0142a1505b16b", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ceebfbda85ef9d0bb0b6e47562a7f7c8a4d7b92a02977b0b46a94cd2e1d89ed7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2cb7a90cd38f6e3f93208805d1da5202137661cd520e64f8e995cb51b33d4288", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "01eccf79a5968ba9d125246bd09289e8d10969aa3298ca17d847907e43c9d6b9", + "regex": "(?i)^https?\\:\\/\\/afklozor\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c9b1946084ecd49e90c659436b6efb72fb0345e63e38c4684ea7f952d73ad198", + "regex": "(?i)^https?\\:\\/\\/stumbguysgems\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cc64b1f9a6e436de992c69e4c3b3e0175acf1a11a6fc3a4857cd34c85182d8cf", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "52b0718d787d88099ad2dd6b95c44c38ead282a9c5e283fd0bf35691e82e53bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gnq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d828898df29b9f80c84ac87c82052d4457295de359f4acb2414404b4a5ef17e0", + "regex": "(?i)^https?\\:\\/\\/fetrfhfgfghfgh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fd2d2815ac89f4b87239006d90f321830b547f6273781637364531fb6d115a58", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f96e8324fd0e54a276992dc1fdc7281be0caf412cd7b73a08f4d8a9f7ff1cb23", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3ece58164449b00ddc5461fb58b93f6ebdd028e80da53351a2a8467cff63f4e2", + "regex": "(?i)^https?\\:\\/\\/seghfx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8bf1158fb0ab067df6eeb96b3e3c5835e20bfa26490710d3e10c935060a28a14", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2e8fa171dd42fd310c73dd9f9158b9752ca7dc7bb71b347ff8f6542de5d23e1b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "158d473083c3385dcb1baf966a3e5f9d1bec4b28659edab5973ff4b9e3995699", + "regex": "(?i)^https?\\:\\/\\/fdg4rerg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "940131b91f06d708750e7c0d54580c6711f778d15f032c94eca89881c84175e4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "97554dfbc39b11fb36c4f94b2566738139c9c568de3f733b53747d6c520e036e", + "regex": "(?i)^https?\\:\\/\\/cfavgc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "da7a6c154ee4a163636affc53cd99bcade8b8f2d339b663d9a8ecc1540e0c7f4", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6ebed86ae8c8942f4838c24e0e24ff6e7b3548d57c2b18adaef93c3e35fcf519", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ea77fc341bf2ee5c42e74f47c85a6c7b89494effd945a00dad8e4ca1b6c4b9c7", + "regex": "(?i)^https?\\:\\/\\/seghfx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0c44463226ecc8a469b6e3c0b482a24a139e57dd2061d0e98210c8efb54578cc", + "regex": "(?i)^https?\\:\\/\\/locawsoro\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bb81981c0ab7b000b0715270d529e300a3c40159b8f1c61d22838db648b5b3bb", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ce067fd0d075a95056c20e924708331ef9c8c718364151ea4545385c84aea586", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-4u\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "097fa161f5f0cb43a991a613ee242c972dd464d1e493dcb9678fa476f60341ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "93b872f7c306bac255b66ae00c1824f81cd190d20171eca14e5254fa3205d2f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwm\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f4a23ed7a63feff450d1dc0a4e6a8a4da90efe5954394579d593fe1d6007fd4e", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4a253ebe501e5d61db0cf70806cc21d10b3ee12eb48b80b39500f9af38cb7dbf", + "regex": "." + }, + { + "hash": "9a5a747f4e9e7a669e89f4149e2ff87bd2270ae4ac694a6d7898561c20df9906", + "regex": "(?i)^https?\\:\\/\\/rejaul06\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2fcc5a7ffb989a9fd8eaaa9f0356a5c5f5fcfa57f87e5237bf73bbd3b7bc65fc", + "regex": "(?i)^https?\\:\\/\\/lopzaro\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7901da826e12c1922f713d94c61ad1faf1f61ddbc59c33545b87012245d59723", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-\\-4u\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c797529b00467ccfa22b807789d35ea50620fd9c8a0c164ac936fe1971b20979", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "12a6d158e1c440efed3a4df7b0fc134545ceba3acb71bd5201d3f5fd9206e6b3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hjz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ca69d21959cdcd901d3457cdd3f21d68c65198592dc79b0c1e8b2d817c1d48f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "913b12a5ca4a1f6d46f309dd855d0043f525ddcb868a998b6ad2c67b3dd45dab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqy\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a443b08304895beab0bf42d9280973c2b1cf8f075aececa1928bebb92109f544", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b55de380b8263cc24bc1df6cee39b2847bf9b106624523a4a055e96a8b33ce5b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3e6fd3e4bbb15c7318022b08ce7197e3225245078148c93c42747d9917995f1a", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7b02b3c084c286f4e1428c9cffbb98eeb9ebe25d9458cd41fc24d74599e971d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1b1e9d1e53c3fd58d729199016e741017967d8b0724522c39ffa6e64f29bd80e", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "561e0c74d5ef1009dd419b26b11151da363eae33c544a287f7bbe999b82916d4", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "349a582c99eb33616d615c14f7a0d6930d0538146cb3f0cd50e5eb24b346bde8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qxb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "94464d86ebd79ed271b0506aa7e09b9b11cd85936062dca754a5f9e0258fc52f", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cfaebf261f38f93349fc703bb8c519c7f10e25f2852a10b68b1a6363ff2f67e1", + "regex": "(?i)^https?\\:\\/\\/pinrobo\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5d2dc43e5762aa75579cf9f6385c9f14a1bf485049cacb182aa78b9ea96eed3b", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4ec55c779821bc8b12858d54d387371453b25eef3fcc66337b64ee967f9a2120", + "regex": "(?i)^https?\\:\\/\\/coin\\-master\\-\\-spins\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7979b55000b3a62613a9f656ad0dbb3c8f04f9a1149c1b8af34eee74077315c8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8fead22ecabcbc25831492af1a5a1ed2be8147fe158d34b69514b505a1f2f1eb", + "regex": "(?i)^https?\\:\\/\\/afklozon\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3c2b7e1b7e833e21e59dad99026272f86825875c972f6bd09a41d4e2a1d182b6", + "regex": "(?i)^https?\\:\\/\\/btc1ett\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8a3e55c7b4a2e0f3dfb560b7eb69ef009e31cafdbb9c8b4631c4ee4aed7f6a4f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6bfef03dff68a5cb1e6a1f5bf9f778693c4b3e2dc369b53a0ceb3e02e664f477", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "84fec016fac20fe12f17ce67c649a50f885d0b7a58a845dcddbb9fa25ae8ee2f", + "regex": "(?i)^https?\\:\\/\\/admaster24\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c6ff7a80834c8e7910eccd843e20d8f2c8e4a5c8f8d77252a46473ab5a7dff69", + "regex": "(?i)^https?\\:\\/\\/btc1qud\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b61084e0ab5ceb180786105c0b79ddde2dd5814f6dbe4c2ddb31ea7f997b3a4b", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4c3513e66f8729f6b4d8ff247a6ac672f70a5ada6095790d1b1573e2e95a4805", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c57922e80775f932b21b7e0ee9b0db163de65d5a9c07249209d1198292ed5488", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uxj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f7ebc9a561dda80d6e64b46697c0919fb54bb025b06a4d518bd6733282486c81", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9468a67dae756df7edaa3fd77ac08c7bf7322547f943caa6d5594c773a0bb252", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2e16a778d6e84ba91034a118b1d217d7a94c36ebc531706151f40a6d6763f365", + "regex": "(?i)^https?\\:\\/\\/stumgys\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4dbc8222d0793d0e0451946ae78dab154db470e5bd83249c93bb8fd89c03f12d", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdeplay2\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51494588616e65f72ea3acd1000e3036bcce10298d36ffdde434d46b8ab85e16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "80802925abb8ad9fb1da9ec410d0ea1d45739068fa28b8818712e86477de21c9", + "regex": "(?i)^https?\\:\\/\\/btc1uua\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ea9b17615e066f2436d716c6df01e5ad77acfd0563e250a35cf065d5d1bfb88c", + "regex": "(?i)^https?\\:\\/\\/btc1wyw\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f89b91b728bd7f3d99d951d49ffc84cdeead9ac5c9afba0753636aa608d5c0a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "09dc4892a39f0dd37c4c586be092f4060755512f353ae7046cc0b894117b58e4", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "8286224633c1872a1cf5dd26d95cbc0e371f72fd422d18a5b66bda472a76f7ef", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0afba7ad1d0df1ebb1b15fdbef6c5d07447cf1a9c99b43d73d18452f562735bc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goe\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fbfd9e2acae7af8727bf489d669cf1cc5dfd6e30701c9edaeef465be15cc64e2", + "regex": "(?i)^https?\\:\\/\\/btc1wvx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e8fc72edbbaf6c2af3734459c82f85dcb7696382cdb2c2ecba605b4ef8107ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "87e280198797b099ee660331f03a8b42f102b09884518448cea951654e60e4af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f26c5ccfdcc0e1998dd523ec214beb97776513d53ee8c7008a057a510ef7c27f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yie\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dea97c84a1ba963c921203307ef9c4b3add43cb52951b20fa7b3fef53af053a4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "064174b3c33ef2cf3e1bfb55d3e31be5fa78bd396056236c37d65eeb4b080c66", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5ee0a1f1e653a8cd3a2d24fd53e48c1182372a5374415dd5deab5e7a7a39b0ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9073[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1694f7f2b18c74bb96f28b82adecbed950e98a6b7097cfcc547eaa7bbff78c5d", + "regex": "(?i)^https?\\:\\/\\/locawsoro\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "25d701f18e551e914fc227318bbeeeaee2f3f0d4bd9e03e4d3c0945b9281652d", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c5d3419bca5de47a39b9c4f512bee00ded346e9f550fd18a8f026fd47b3a2e20", + "regex": "(?i)^https?\\:\\/\\/btc1zqs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4d5c594e73fe1487b973b81b07851d3b03bdf09efef0b314bf9e4ea5db93ada3", + "regex": "(?i)^https?\\:\\/\\/enrzenstgdfgdfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2aeed0c9ac9eb7da6c88996b41a86b090be76c78363ed94b4ca9688c926bbc59", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d64a4599acf8be843a4c31e7625de2162d0f4848e92b232f50932c7711fbafcf", + "regex": "(?i)^https?\\:\\/\\/btc1ysf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8c3bf6487ea7d325d4c0380413c1c7730b4ad70ec24c6d34db5f19052bf46018", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6973687f889fef2fdccc6ff26ad701bd74459eac3245d1cedcfe9957d1bbdc27", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dda091b5b9c90a7ad69832505fdca51f41f3c36a43374d4e753784e9b7b2eacf", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a3c8952b05ffcaceaf86a719adef127621d43db395902d76a3ea8fe9d5a91198", + "regex": "(?i)^https?\\:\\/\\/dbfhrs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "09f73a2f86d21a1d10128b7dfceb918580de006fcd4922c0b6d047b44684b199", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cf15a7ef842562699c43c9c3914bf4a7701153a6af2231012305d12a434ad32c", + "regex": "." + }, + { + "hash": "47951861525d6497baed31f6c171a1a8c8a625451811904d088ecfe1ffea4370", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f12e8c76c3aa60f0d25c863a51e56df14fe0a122179ba086c139124f50e85353", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cb29277d4fdd20ac8efbc6441d5d7bbe231f93d4ea78d5de0a482686131f19f8", + "regex": "(?i)^https?\\:\\/\\/btc1qud\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "05260ed9b01c64f737fa35f5ca8a907e27bc607255b2e73b64d14a837c11fc56", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9e7eb82d3ae227a189159c6bd61c6f1f0a4c68b7ae52d256ba33876d8519bea7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1org\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "75f41efcb52a649c104d6064769fe238e1643c2701a746d6774b31bfe5926794", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wip\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9a50825910a065a035fec4620bc6c6913a5f9a36c6702797be9a0ed72dec3bdc", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6ae6358fa68280d5a37dddf401a0fcba1eaf6b046c29be6bddafb9db0c796ff7", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d989ea991e777b0969405c246126692eba44a9292caafb6dec0c956467831738", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1279d41028389fbe1dcfe3cad26c39918b29f358d387a62a046a18d8b5ce4991", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zqs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "90383c8f8f79c136dd648843ef8dc7bfad91c8ae9697373f1fcfed23cde649e9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "87ad14458414c1bff097d65f4c57461b238d77b5c179d10085d96007801e05ad", + "regex": "(?i)^https?\\:\\/\\/afklozor\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d0dd5b802e1e1a7ff61467b6d4459d61bbcfbd5b9e9b202fe3809ace5f85042d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3004861b48e4a8715047cba8668a4bc3ace26fb6e417a95e8251c0b87d202d4c", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b2e483031c32270b55f8d6e9fef7ffd2a2de4d270a2a47663b0b86e5dcba3abf", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9e40092d07f1bda141083fcbaf04d7253a11c6130229b39912787b02a57ef975", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "58da13430ea28703088a605e1d5c234691951945d875de92053d7ddfd081de29", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a698d8572500c26e6b93047f9b5789d25b58671b096eb4d092d260dca3df2", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "164a9d7883a410cc946ca04ad77b441e5b17a392b33843821a59912e8a46c5b6", + "regex": "(?i)^https?\\:\\/\\/enrzenstgdfgdfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "20f77dc9f3248586c1102224a95c933d9d38b540a5ba28020956fde3a3de103b", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e7a55f0c78cbdf0f5d1d40be3843a51528323038572e58445b158d737a01750c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6f4dc48a38e0409ef0dd2bf62be0af03714dbda41733e3819ad0abb89308f5e8", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "559b7206d92f5cedb3f283822bf8f456643907cdd3d492eb38147c1d0e35b0b0", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2b4b5144dd895e5d60d66db71fefcadd91a8bb1fdea4f467a5fded0b2932391c", + "regex": "(?i)^https?\\:\\/\\/btc1wvs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "dc75955935a1273e423e9ade35a7b4a77731f335db10f9026b31608bd8411b90", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a7d712169d6faa660c3210eed9d27418494bf630fb011ccf1468869ea6a78fbd", + "regex": "(?i)^https?\\:\\/\\/trshser44\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9a010b5ad3a8d10acb96a5c948a32b4920cf55273d138eeda3009e296576d479", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "674a07b2a18b184f3c8816cd045845500f66827514b8a90ace140b18b2d6e365", + "regex": "(?i)^https?\\:\\/\\/btc1nnn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "c0700b274060eca96974bc4790e292890a75fa041e8f69cb8cb7ecc3b1dab6c9", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4bb19588606cf988c671a2215eb2f9182642ba2344ec9c0bc1852fb4ae24f09b", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "001378e13fffe587dedc3cf99aedd4568ba42d1c9bbb1dd4faa2adeb2c62e7ea", + "regex": "(?i)^https?\\:\\/\\/vsgdbg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "858a8b0fd9522e6b797fc736192171080c00ca5addde6cf47599330e17beeb8d", + "regex": "(?i)^https?\\:\\/\\/cfavgc\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "646307430068cedede0ed17e558af94d69e01cd9b21dc37a322e52ffc04aea36", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c2c33d97bc7e161f803425c0ae363339f13fda321c7687a4c16eeea9698365a4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfn\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "5c5068f79c5712d45655523d435d0f0bfd490243a901d31e18988e97f50c5bfb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b7546fb81b02fd9401c246378f9abf90316228b4b8eed1542b6a039212f9c172", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qxb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c9307e73e563319a3bcbff2478e63809ffd0bc1800ba504fb666b42260af3231", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "01b93be6de1558b2d9b58b9461d549531b19a05277f38085267c43a36199c4f1", + "regex": "(?i)^https?\\:\\/\\/seghfx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "8ef9e3aa3348a1706b5003fbc547a4c4f2ede46dcf6ead0b9cbd7713d9afc3ca", + "regex": "(?i)^https?\\:\\/\\/cdqsvg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7acb0298031ff3344be5a6ec3886e94a79cb2751a9ba8b12a6bad8c0ad21826b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrt\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8d598bd4efd6b4064addbe17bc0d3990f640ac3cd422c0bd13a1e251ba0c95e0", + "regex": "(?i)^https?\\:\\/\\/btc1ebv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b4dbe8ca5a2cdc829ff53d262b13799dc4138052d5f61b10a497cc1d6f35256b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "87f54858e971a0f5267b8147566b5d5b7de0f0ab7fb7d090ea2497dd0653a2cb", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2d45691321b31bbc3f17434dee807eb1768c1e862dbd20cf812962b8517eaa2e", + "regex": "(?i)^https?\\:\\/\\/stumgys\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4503852d046e62987af487e09a372cccb2451bf9d96dfdf50581ae876c203976", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e334e395a00572a1db2d54995d61c7541cfc9e697c0d7f59be613c467164e6bc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8f7af81d7a2aef27bb44913f8ef35109410044898b64695b59e9239b099a46e5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yie\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "77a66144249fe7f617646494554763bb2f2009c7c548304fe4a2b76f22dbac3a", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bae461d9f8377c19f9dc4876dcb13469fb6f69bce4afee4cd7b196d428490657", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "14868c3fdc9e4c7af975f31bb93ca24f12301ee3c68e9bb677e483cc384ca5cc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c90e73601bc36e36ca8e996e6e027c4aaffa7fe514cd019836619f367bf27bb4", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "43bf3d2a37b5eb9ca5e70feb8e27d3b2cb32d57d696688a7860d478c7c8a2829", + "regex": "(?i)^https?\\:\\/\\/btc1uua\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b584268b07753d4f697a034bb91d1bb6469f89603bb7a4359788351f869e4e4d", + "regex": "(?i)^https?\\:\\/\\/btc1oqr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2133eb1860566959a259d6f5f247a8d0ceaba337ae133373a323342726e3ec5f", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "137f2abc450f83362956228fe6910fc8df32851186c1b64185ad361f7265bc24", + "regex": "(?i)^https?\\:\\/\\/www\\.smgdrh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f7ccc4f830d09c111e9684ea8ebd48dc0495ef06c40645c676e565dc0e1c71e1", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d36d5fb78d6f80bcfcfd88dac4cd382ef59e9b7704766b504ae77999958047dd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d4d98e21a0565dc17de9d39a8343900ade389deed7dac91c6f1f3e8a350fb5ad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8bb9608c4daa2c7991e0c0ee487f9aace4e1354e067737216a2972dd14c65ab4", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cc05a10a260d40df0a9e80ef2f4e420ecf950f3c796d3635ba859e3306739008", + "regex": "(?i)^https?\\:\\/\\/michlawssi\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "aff14b87067abc6e96bbbd42fc9b7b12146b2dbd5c604c4e547b35b8c49ffd1b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "afd3cc17023432b783c16c02041bb4e7e61ed0e336874d43e6aaf8ec170a0968", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a3ca2ea30ca5607de0e18890e82d7dca14388548f94a656fff4b2c9e4f0b2b2c", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b85410e64390b34e71d4831bbf1073d915c9f5adaa15d96138ffee094d010cce", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4969b57736b650f8e85c8ffb76e611a0fcae02e69cb1406e12d0627e4bbe22fb", + "regex": "(?i)^https?\\:\\/\\/www\\.smgdrh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fda6e41e3ed4c56b6b4b55db4a3933263c5a137dc48df3cb32888ba630d12199", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4a365c70bf7f8c88fb22c1a5b0d571ef2c3d542c14507c20110cc0b9f6ea1761", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qxb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "86965e2280cdcf926a7a6e77198d8c2fcab9a6b1dabd0639b56384013390e2b1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "501d04e5d09dc8146745d21d790eb468911802042f172a76b9ebe3946aa0e940", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ed6c51b1097526248dd588d7b1b02134c85792ef82d2fe8c6a14b57759870311", + "regex": "(?i)^https?\\:\\/\\/btc1uua\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bcce08bbc47930bc8b2369184e0d60ec03628f8da049a54ad16ab5337d108f93", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3f5991a156b3b69ce38d0f55115523334ca6e217bc36694ce76e54eb625618b8", + "regex": "(?i)^https?\\:\\/\\/btc1nho\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b97793eb64eba067d61b315f1334a4f40e4f8af3d95b60bf095d1c64577e2809", + "regex": "(?i)^https?\\:\\/\\/btc1erd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e3447d07beee0fad5ada2c02d430ce60c92f456725c4198b38cf1cfd1982f484", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8c99b8ec3c2fc69822bfa480278e92e6505b47ac5f86b2a8c7f5ee7e20fa13f8", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "48e55d7dcbd87f2db2a85c1a08477b7b9ad518460f70411e948d269997497e1a", + "regex": "(?i)^https?\\:\\/\\/wngehf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "40ec5d6e79f3fc13d4bb79cbcdf228b03b6ba452cb1f93bf73b324da3bc4d331", + "regex": "(?i)^https?\\:\\/\\/btc1ysf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "dcba4e0013e557a731da9e578a796aa86de5788f7ffee28181fc0d3e6556f6e2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "471bfb5a25e7716bd77251e5b98e709988317e553cdf38d13a88d9c41d2158fd", + "regex": "(?i)^https?\\:\\/\\/btc1ujs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1847cc7c2f5b880a97c48718c22d245b000e401bde570e50755f63ea9add91e7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "24d8de52c04fc43ddb8ed37fdf27c866dbe18e94564a346c34d4a6b92ed38193", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c52a7ff4e791a1b467298489b13aadc741d70e667229c464bd836938ec3d935a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "eff690643cfb5bd9c3de38da66aa6b524f9793317b362b4ac78d59fdb53c6e3f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ad89abbf5a1991d541064de98c1453de14907e5cd1028adfbaa4d5806a31efcf", + "regex": "(?i)^https?\\:\\/\\/btc1wvx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b34d786f3eed618b32beed10446176a5c121573bdd830a258f34ef93f154d", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d5ba3350d27955e761ee13c6a35eb83f72dc26d0432aa0b72ed1a98107f98981", + "regex": "(?i)^https?\\:\\/\\/stumbguysgems\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f3800961081f8cd529b8cfefb59c07915ea8aa973ec948ab5776ac43da058b7a", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c2c2744af1b8c41d2338383b6b602b1c68988a02f9f285ae751cb19758a5555d", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a0f8fcfbccc300809e008ca3ed5d33ed25f473d6252f7acc3ea51c061d1565b5", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "049527c62020c11c531e58a7aa3b00ce7be050aa277d97f2f7fea6e404cc398f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8b32ac60da81c1fd5a9f15118ef13f4567f383bd71bc2ed2dc87d855ba1c2008", + "regex": "(?i)^https?\\:\\/\\/btc1ett\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f69bdc068b2fe7c3b0a1a713688a7e372ddbd94983638e067fd396f25f3cc79a", + "regex": "(?i)^https?\\:\\/\\/gbsqhd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "39a073ab1f42a84ec90fc7314c618a8a912ab9650f3aaf5b9b57a845f2c39b51", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7c923abb5b7f5638c5007f4dc788239611083ff41c9ed8509db9c4eb7e47a11f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gor\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "92ce4536f2979dc13bfd2834796cc21dfce85a582899bc365ba942fd6c0e4c16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqy\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "34d01dc68eb0f0fc5241eac4f308f7e75f2e33c9cbf0e2b01523dfbd4ff40093", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d842b220ec256d61e8d7b219fe62a579b6ecab56703b6fa4ad81eb9ee9a3f6d9", + "regex": "(?i)^https?\\:\\/\\/btc1evu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bf57a7a61a9543ecb6fd63054feff88af7febf1de49dbe24546bb5983ee7b8fc", + "regex": "(?i)^https?\\:\\/\\/btc1kkk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "128bb3929d025ba3124c6dd9bcda295cd2b4bfd649b2638a7cd279958e82ead9", + "regex": "." + }, + { + "hash": "6decbc89da2952eee61cba0af243adc592745c3da6b0ed9b9b527da48ba0b2b0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "551e69fa13b45e3f10cc7a64a85a8f817af1700a33f8865869005b44bf803a77", + "regex": "(?i)^https?\\:\\/\\/webrectify\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "800c0fe0211e6b473f4cb23e35440a21154a82ac398781361721a1687abb7a4a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "da1288b65d1b687037b44a40452d191bf209188962a1d33e738f6b758c20343d", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f0690f7e5b9ee1cefc7578a6e7866dab12ac604f42865797f599fdff049123ff", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "218c1e10c67fe03d824a840063d54c1b3f1afdf25569ca1d0fc707e8212a7e22", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "da65fe97f6963701c89a5cd48d70677abf68b61586a3be3ba6940d496c199051", + "regex": "(?i)^https?\\:\\/\\/btc1goy\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ecd4981ca70161bc003065f78d69b33f4cef8b62c2620e6c8ad57d82a59ba24f", + "regex": "(?i)^https?\\:\\/\\/polawzo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5461983aac328354a25886a44d76e017de44283b1bdc7417ace682e1ef3c7c20", + "regex": "(?i)^https?\\:\\/\\/losawtaros\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7aac1d648775dc42e838f5cd945d8039c82af46d0fbff2f898fabf767d975d8c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7d034e71c97df3bcada181f5fee60d5acc859c163ac48767bd0f1f725985a90d", + "regex": "(?i)^https?\\:\\/\\/lopzaro\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a0b6d043ebbcd252639adb5f40b70807c0580d0b8deacce28e069c2d86084c93", + "regex": "(?i)^https?\\:\\/\\/btc1uua\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d7171ab581a8641b23ab5dd2eec2aa4a6ee0b09c3fe535720920563950185a6a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "82f460b3066ca9a1911c830983c70cd296c12dada1a20721aab9aa16bce168ae", + "regex": "(?i)^https?\\:\\/\\/btc1wzj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0e428b8b8c65e7c29bd16da68cc6def08996639128aa20e4ec2cbbe7d8a6a646", + "regex": "(?i)^https?\\:\\/\\/seghfx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cf5ae0f7756c3d3410725c0a366ce4b19e8ef0d4d559b7c187378dfdd9197d6f", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "6e25c949c9d3e7604ddb4b016ce028935149a3532df567f0aeb2a9dc303568d8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3cdd2a234e0c17fc3a8016e2c0eb879d823a400d9d4d5ef975a211390684bbe9", + "regex": "(?i)^https?\\:\\/\\/diceroll4u\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e9235ed130db97a054226429a0c43c419cd06059f7d26670f1126386cce1adee", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "96a2a6dda2827cec75bad2b083d084bead5dbf7333d86ec4bf3ae922241c3407", + "regex": "(?i)^https?\\:\\/\\/losawtaros\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1d3a93d2e47de1a713dd2af8f5b59d2c14f5d9fe2c390dea1dc5a1d1cc4d1e6b", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "466779a6e3795822912caa3e0f51dd0cac509c104093e4a1dd57d8a94dd34157", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wip\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0684e933639e523d47f986a2d97b964d3601687b6e5d0b9ab72d8f9a79beb408", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ccbcf656245bb726335e840966e51dc9fe488b3e07cdf62e95cb8e80e82a9725", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ce4864f7518f6e605c127ad630662a6a57f366e3cd00950a1496cf957db6406d", + "regex": "(?i)^https?\\:\\/\\/losawtaros\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8d31251a6eeb33c587ca644fca2cc6c752bc1dcc68736779b0120b7e09e6c40c", + "regex": "(?i)^https?\\:\\/\\/vsgdbg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b5edffb8a0362e3d0be0672c1c54c88c515239050f7974c5dcb1b75f158326d3", + "regex": "." + }, + { + "hash": "9425b0de15a4e6ba51e145378273cc72ecef2032f39ef90474bab3cc0a8c4ef6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wuz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3408ab30a00ab8730ece2b54b45ddfb1cf7662fcf7b294d74d772a55f78223e3", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a6aa6e327d0297762ab6cce5d628963c51e07ce17b51716f8416eacdfddbff12", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "553530d8c8681525af368abe6906ac6fbdfa6bd9756f353cf3e35c38c359db60", + "regex": "(?i)^https?\\:\\/\\/btc1gpt\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fa7dec7420631d0a999a3e17a33cafa90eb697442ac6587d87bd554a6a83fa72", + "regex": "(?i)^https?\\:\\/\\/locawsoro\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "37d47dd871dfe35d75961a99dbeadf78a52385a50e26d3aef646b3da654924f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c6be91345e64690f5e97980500be762d1efa277aaabd79ab68ec038c3e5f8", + "regex": "(?i)^https?\\:\\/\\/att\\-104484\\-103179\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "58603cb0e621640be31cfcb63ec81a306e6a4437066d4932b0c1fd9d25c48da5", + "regex": "." + }, + { + "hash": "5eb2c01faa06a20127bd803d3992ef4aa57e28b8b347baef2ac507f21cd2507a", + "regex": "(?i)^https?\\:\\/\\/afklozon\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "acfb95b0c5a2130bf07808c46c47366cfd843c01c7dbf13799832dcd49078037", + "regex": "(?i)^https?\\:\\/\\/btc1wvx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "054168749dbe9ef88ca940fdd60f1e8a88cc49e0f9dafb097b974956285f79ac", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "943ca93048bb9073e66e4fb190321795fea9e753accc2c4772b4b7749bc79191", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3029849c9bff510321ebfc5bc59274dc017a6ee73869793296190160b217d2c7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d00317988cffa0d587fa30c7fb65ca72f7b8bdc8f2142de8c4092bda123b2586", + "regex": "(?i)^https?\\:\\/\\/fdg4rerg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b9925d262bbbcae859a580a12b45698ff0333c42e3f3c014b157503e87fbdf2b", + "regex": "(?i)^https?\\:\\/\\/btc1gpt\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bec983997a3dfb7e7075467e38103291e2ec918bfb3fe9ba564c2f02c835ce23", + "regex": "(?i)^https?\\:\\/\\/btc1hjz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d794639048fc12d9c794438d1a0ed858b9cc233bf2400e86f14a00a14df0fa00", + "regex": "(?i)^https?\\:\\/\\/btc1ebv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3ab22d8e8d108f45c2ae3a668a92b684affb8c53aea9bdb4b5f73fff3a18e8af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7f50647299f31077e5c845052a0b08ab24ab6d16c0fbd78c68512b14e1bbcb4e", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dd4c73ce96e7145f25754f562cd2a671f24042c3afb2280eab72e6a5a25da751", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ebfa088f5d74f9121cc195555f4f86300c334c212ef2e466ff2197474831a87c", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "728d8968bfb4966be2c6c28333a32e9f1d6e975227a39ac149d42408eb1b4f63", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "650f31eb025a0b244269eced8f66616e5b16bd0eb93f1bcc2aeab0871b03f3d6", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "451d8cfde5908f07d5c99446db1f29aec74a8aa4ddd8ac05219d70d6cb36ee2a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0a1cc7ba66196b04e4e24b6f01cd962fa88824330a598306f30317e8aa8ab895", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e466b0b369ddf0ab8323eedf4367cd19d3baf6a54d9c4b3b48ec5742b89685f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8a2462763c44f07d625dcae59ee0a4ed251428b1f28fb6ca53562b59662be164", + "regex": "(?i)^https?\\:\\/\\/btc1wyw\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5a336a8cc31a29c2456cb2cf21198ba706ec52c17ade3d44f9d71d5f92c00d3f", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "508534a24db8451dc0591f3241b8cc413ffa822ce1927d6421503d0ecb391838", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hjz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "17500581501fba0ab771f23290316a3f1eb64bec0a7193f5c0fc8819cf048fb9", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2832cb6641b56ad98e269ee09ded208d57de08505fed2c34f3553b08d40e55f2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "536cfc700265408f8768f7b386cf8c34e1588e7c46d196945176878bafde5e06", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "248c64f728c84af26b04d6bb9e565beb54c183d3e317a256ab4b014f1ca64092", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9a02a1f5bb6117566fca8ace7398a7974a006ab4aa9ed6dbb312b74d8a1e21c2", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "727147d4d772a3c4e039436362ac77bcfe42211270718e70d64d6c46efd8015e", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b754d49b5c96262eddacb75af7af80abfc426301491fb2ed132cc1b8c9be2925", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8552bcfe9714ce46975187d724c8a4abcf197354cebe33ff7bba64f602f087f0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1387226ce8d3346669ad1e84a3a8154a769c311076f7b765deb58accf1883d9b", + "regex": "(?i)^https?\\:\\/\\/btc1oqr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fab9b3e42acf940b6cd469609a77102217a96a0eb09804c0bb0586fe10b11b93", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "288a7dd6221ca42cf9cd5a93ba9b2fd48b43650f9cfb09894cc8cb3511f417d8", + "regex": "(?i)^https?\\:\\/\\/enrzenstgdfgdfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6cb98c9a72644beded140e98f27688bc3875635afe7efcf7ecb303ec708aea02", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c4e6a87a50cc6d6170a1f27d13769474f25f05d5660b9418077542facb499f9c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5fdaddb6e1b9f8020139e867948523965b9a3b1447b3d84b4764fab57c5ef5af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9152[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "19b88ca3f6304c82be30a51337828f44cc92751fde0d7e47d823ef10e1977396", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "54d71b17365ee9d0ee1c61ea137e89c3b2de76c6005e1ff9672ca41905cc6b5c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hrq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "95aa327ba31e2302841b9ac1f6ed1e446e58ea180904ce5c32c6e20de77c70d5", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a37d73a8808b11d7146e49dd011f9320715b5bcca74b3e07ddd5e2b3fdab5c13", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wui\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d013f97fc347e62d5086761f1680e1af853aa80883fa046cd239752488ba9802", + "regex": "(?i)^https?\\:\\/\\/pinrobo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "653df72f35170c373d41b8d4c520c98c032022aa16dd36210566557f4ae03adb", + "regex": "(?i)^https?\\:\\/\\/coin\\-master\\-\\-spins\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a61f34daf4da5efb72b76798a3466a466ff842b879ead3a14f6895547bf43793", + "regex": "(?i)^https?\\:\\/\\/btc1goy\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "73815990c273a88af827a4c58db82e598a24454b10720c9f7d1677b4016cf208", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hrq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4d22b867f17240bf590391c4908ad2604ee03a44df044f5f0d645d3d293edee3", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9efdff683f34fa0d4d278ec67335c2c904dcb8642e99075722e7597ee552edc4", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5016b655097e75e6d01716075e2574cf4f7b03600678760b2954ac93cd6098dc", + "regex": "(?i)^https?\\:\\/\\/btc1zqs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5cc846d6ebac95ea6ce7c719d8ada925181403e8f15155671734b403cec06e6a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d5e653d43c5a9b85003a11865f780fafd6a58d92c858f31588ba80047e6db431", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3cf148c6351b4644c5440f088e8ac1cda3c94ffbb343b2991515a2328baf4e0a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1org\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bec9145e700c2490b448296316069c582a8950f2ae3a5b9e2f82a2378eb7a46f", + "regex": "(?i)^https?\\:\\/\\/afklozor\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e7ccc79f3728e654b46c3fbfe1e2fa004a968346757fcb7598246429500d2c30", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hjz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "fed6cb01485b522273144dc4dc1b16334ca691a4f155adeac837dad0b2e03e6e", + "regex": "(?i)^https?\\:\\/\\/btc1ysf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "57872760a4d19824110e03e4fa827e2a7c30c412f00aefdbc0bb92d451d387cd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1a291e232b52d4b5459a2d6c2b0783eb6c60ebf8330ff5eeb1f87fea3849c01a", + "regex": "(?i)^https?\\:\\/\\/gndhcd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ff46c06e96244e9ee7e747c174f9f2a8ee7a63c12679239860cbcc4ee1510482", + "regex": "(?i)^https?\\:\\/\\/btc1egn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "19bfe571b849557bcf0b2cad60ee8b2bc7d968ba5287138d0734ed256349d4ff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "64033dae0e133c33c5999ceb0c2bebb0001b3375a6f508d4f07e29817e7b97e8", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2e2d2647053ee945d4de6df21b303c55453bee8834fd6ed4ac21f1cb9c316c68", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "40180435b5ffa21d4dd3cff721f2a226fafc027be47621cd57aaf287dfbbfc85", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goe\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bccdab47ac8d3089e394aec8da92c5fba6153fc0969f06246c7f4afd95527e13", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9ba2e1c3d7f78aa801537c1f716e1dfc70ef3ba851aff69a6dadc78057da5d29", + "regex": "(?i)^https?\\:\\/\\/btc1wvx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7f6c970ad629204527edc9c6419552c64289e022efd2e797857880674ac155ee", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9c7e6d588a8cd405d16e19f7933923369b6d0c0c211ce7280c50e670d44ac190", + "regex": "(?i)^https?\\:\\/\\/btc1kkk\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3e9c6c4c0ab4def36013094c9e0db07c5d7bb9e55b6c65a8fbad5d536d0f178d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qud\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e4798555b882d71a4ba0a5e94542eddf8e46f5efab422d3bdde9765dc733aed4", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e9cab9c09586051aae42bf735ab63f75671c31ccd8d029a2eef2d190b72ce903", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "496eb54d6f8c21d98755adc4814bddc4b39b4cb351f364a29978f1804859083a", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "3277ea663c4c08043e379f5dc7e7eac34888671a43c3796db8f7beab93753754", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwm\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "492b5fa317a44736669d8ededb16eb37d1e964d88618c7d46af71f7236c68f60", + "regex": "(?i)^https?\\:\\/\\/btc1evu\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d085930dc27c9da6fe0e325bd90e4c46120b3840b0821883619875cd47dedc9a", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6d43957fc34dd2d43be4a27a543e4fb58107359a356f116feccea8fc9d4885d0", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "16735094808190b620409dafda5747f16a7f3201a1ae1feed5421980ab235a0b", + "regex": "." + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7b7312a52626353c50aed4fd0e3a63234cd47e2cfeefa0f732850ff86ba222e6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uxj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3091640ae09d4122aef5513499b6489ff09e2b2059c3edbf0bb21a1e8a22d9f3", + "regex": "(?i)^https?\\:\\/\\/btc1nnn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b5993392c6bd06d419134525a05d252d039ffef684e03e7b19b067b3dc51461f", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2cb7dc653730e73038664ed1ee075ad649fd34403b9245428fff0de3ec727f9a", + "regex": "(?i)^https?\\:\\/\\/btc1ujs\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ad63bb1ab3d5f409e53fb2c7cce97229c81e60ed3a5f5ad327c36bda6536be6a", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+n62wy1(?:\\?|$)" + }, + { + "hash": "39057f5db366179b5116bc041e20288dd9f19b4646945f7b7a0b1c629cf92b65", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wwm\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "43883beecbeddc9b52beeaec595442a607a02cfb03012642b6bba6c9e8b03965", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d64f300c4abef5ac61b905b9df2574e8e609b6fac8b3747aca0fa91b1bb0d67d", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6c0013ff488179cdb18a2d916874f388178427533a440b8e7c0a90252b8d25e5", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5a876543d2380052c79bf722f3003846bfddc85ff8a60a06536427b327d4dd2c", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "323c356f0e55f795d425b74d7f5ece5d0f05f68d7fe2fdbc4c3799933d8ad29a", + "regex": "(?i)^https?\\:\\/\\/fdg4rerg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "79dc2b91b339f263298877f6d301fc695e25110f747e276c075a8613d636420b", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b4a2823ae237209f765fad50177cf6e3c19fb13b6aff0dce408eebfc5db46597", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "93c6b9b22ffe538f907ddcbfadfe164d5ab47f84b52ef76006308b69b2f6567c", + "regex": "(?i)^https?\\:\\/\\/dgrhtw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a3b70b84bace23666b4e50b34daf665156ef8a2e6b320ca2b91d9ad80d0f2f7f", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3baa9a00792dd74824f43d97beda9994066d7bafe7ef14f487aeed15b4669334", + "regex": "(?i)^https?\\:\\/\\/afkolozor\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "14f95e875904ccc08b554ae84f58a7164f548f5bda1a297bc5b82c4e1e56b46c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qqy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ef752b1d85e2087795b5413ab357e8b92ad0563e5f2febd4ec3e20252d819d64", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7933b6e4ab8757c974b1a642c047d1e1cf91d267f0fa5634a53f3e6026d22677", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "35ed7302210622138054ddc1a4a0e254b3d8e4215dd6a830c9b7c41a5713a43d", + "regex": "(?i)^https?\\:\\/\\/michlawssi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e967fafb410badb198befdd2ba7352476e72e3ad2b6d74ad69ee28858e303490", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "93b223871768339eba01eabafee4807493f5d0519df983bb7760c1958ccba77e", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b4db2049c8be23343ad15a79e67df1c938e51b7a8f37dd784668a46986de2b6e", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ae47d5d042d5865616ff4bc7e2a73405fd41562b0c8b0c367f1279ac9325ff3c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyt\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7d109e6176c836512cdc9aead3ab2f86aa7e7f0bbfd787a7eb3390fd04bbce6e", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8da645450ef173a9eeb04e44a6e4e891785dc823206e4bef5ddf1a4f576a202e", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "302e7ac49180b9d1d135b3bfc0cd51391634bb9a7365f4bcec1d3a5f78b12884", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f091557b3d7dfdd1fc3e8a07479574478ccbed9a2facfc789d7b9e803639362d", + "regex": "(?i)^https?\\:\\/\\/seghfx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eca33e726358cb6fd8297d031b30f14bc4d44e6e0863af2d39b50347a404b1f2", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "56bb432b5bee493ecbe1724306ea182812437e42585e5733bd98b7d48ba475d9", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f22277e9147dc3a2064594905850359afeda5cdbeae7e969de75dc16f5867de3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b974219dd362bb1328c1b23a2b9c18b83329ae73b237e5d4b5b931b683bc6d11", + "regex": "(?i)^https?\\:\\/\\/locawsoro\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ea33ca9526cad9150874fa589960a52f05f834c6ac3d11364538c9e36c4bb9ea", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "40fa58d0111d391b01699ea37e9176cfae3d25b51971e39e2d1a32c8b1ad7419", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "528b0edfbaca17d6d716a96802d15abc86609656d80d766f09046851d6c2488c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "64e5dfd34eca56e1f8e1d78c003b01c7b8305360268a4d66bff518af13b2a6f7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hiw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b5abeee8e7a5cb1f7155209469a8d9af1c611bc51a500cb6b7e5a43932061062", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "37a74f01164c6a334315c91e21e998bffb6bf2ee0c767f3ac1f62010fc86afc5", + "regex": "(?i)^https?\\:\\/\\/locawsoro\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3d5a7a0188f6fea92e3c55a86070497f743e594dc9fe4b74ffbc2a5126ff2d96", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0a95b8e2b64c2c1fc9d3991a1239152e11ba7e6c2d1732fb6d5db36564958dc2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fbb123e610c9c45b0bcd9aafcd3becedb81c9af51b212953cf9294b96282212d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "db3f56e4aa1588dbb1c9535d72476921b334016994312fd1316ddc0e534cbc58", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c8f7d376e2d12eb8ce5714be03d8d1498006c8879c39431db340987205deba32", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1erd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3db2e0e3cbd1a77f0ffc5c21c7d5a8183d665f4a4c03ed274588e31984dea3ae", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "34f576776100cdbf51010e664077aa0d736449a954e614e19bb58ea1e0a817a7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4f578fe8be8788d899cbc8ef4cc3e24ec6cf892a12073f405ab292450df34160", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-4u\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "adcfa68a2dc0e32dae87de9875a02e1bb34d2367aedf7b4ce4fe1bdcff527b3f", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "be38fdff0f4e19d0520915fe86e37b96127860516fa7437287f56328ea99ea15", + "regex": "(?i)^https?\\:\\/\\/coin\\-master\\-\\-spins\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "315abe856c02afe815d8a8bd4e6e84b3869a10447c09f2adeb9ffe457ba64f1b", + "regex": "(?i)^https?\\:\\/\\/locawsoro\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "23b8df1440d976ed41b9d365c331b8717265a617dd967d9df4a56027d8714774", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whi\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "451eb026d412ace8d684c3eb2fe3bb1c8fbbeef8904b5664f8cf17286ca00b86", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfn\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b13b6bca8b0f544ed920160aae77b681148a1528d64b87c6327566c8c1ed89bb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1e7b4054f9d62ddceec5d70c6d5b40b7e0f70958e1121bd201f65347f0b09e78", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "08716eb153d3183bbc9fb27a9729eb338425b00b31ae228dae1bd80f3b26bf84", + "regex": "(?i)^https?\\:\\/\\/btc1hir\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e02f7f8ba33b68ad8b0e7c7909665a5b3891c05d6d76cb6c374ecf51c8a9d368", + "regex": "(?i)^https?\\:\\/\\/btc1yhj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b7f446aa9616ec161600a6392a9e5712b5d900447824e5ae5e4cd7e4377a8201", + "regex": "." + }, + { + "hash": "0ee1ef008d1198cd540872e3bd5c584ff7460657457f0d23aee91501f9826863", + "regex": "(?i)^https?\\:\\/\\/diceroll4u\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5b12fd250efa4111436f172e15cf25d02bca80fa6eee86add89eaa3083fee315", + "regex": "(?i)^https?\\:\\/\\/coin\\-master\\-\\-spins\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c891d523b1416d1ad5ae17c7abde0a80fb982b49a2ba069b7b2b61e19eb2bdd8", + "regex": "(?i)^https?\\:\\/\\/aspoloso\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "61a44a430230f2701da6957d666d86f80a7998723eefd6fa5a47e761ee05ae4e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hxd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "c22012862b6038a19f98d08ff8b84b96987deb32281eafb349e8660644223ca4", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ab73f9e28322cb24ee1895b013ea2702ba132bda07fbe9b808a38306a6c25a5a", + "regex": "(?i)^https?\\:\\/\\/order8474\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "483ca51f0b1d306417a83b43392de971a0925c4555756a17f281648235dac14e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b16f1fafead6a7027c084a15eae1bff1a431ac5f41433579c13455fb708aaadd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wzj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4d12b0b99f4fff5d08429f525774d68e48baf5df39ba622ff82a67b56a7a873a", + "regex": "(?i)^https?\\:\\/\\/aspoloso\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "44a95c047b81f5d41343af38c8332b9ae994d4e4b545ebfec89b781279c00d53", + "regex": "(?i)^https?\\:\\/\\/btc1nnn\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cc0f32d5c8a4751548bccc18cc6cea90dfa6d6582ba84e86099dcaed7c2b735c", + "regex": "(?i)^https?\\:\\/\\/btc1ujs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "13362d1e2584b01187d3edae416f05197d20f992c8f333cdf880e926d7adc433", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d7baed4afe099c03e3a2d1f13323f4ffe0d4a1089dbba37f7cc99de8009aa", + "regex": "(?i)^https?\\:\\/\\/videohottodayz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "006c99aaa12e660d51c8fb25d65a2f2e1e0873de08521a44dd0063276ec223f7", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "42030a3272f0c9826fee5c56669f786c5061ed6482a9014a097386a2c6b72c66", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f87ceaae024c72e5e122931eb4ae98f1d557df88831290f349aa369745039e4b", + "regex": "(?i)^https?\\:\\/\\/btc1gpt\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "70931a8497e686e03fadbe51f8f46135e7837ec994378a5d60c908a298f538fa", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1bb02928c1904543e614ec3abccda480c77e81cd9ce30247758e63de9261c370", + "regex": "(?i)^https?\\:\\/\\/btc1zgb\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6230c752d0931f94cee779498cb798a42e583e896af133a10ea07dd56d0131b5", + "regex": "(?i)^https?\\:\\/\\/btc1goy\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "79202c3af220259a4df6451fa5e87abcb1fe15eb574bf2fc262dd39176185f98", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7173b61b991b1757c03e1b7790dedac06b23d89f2ca9c1146793694b3cc57fa4", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9562c8974ebefff41feaf8f014a53ef8cc26087e5ff12f4d41bd2406b659fb17", + "regex": "(?i)^https?\\:\\/\\/lonsaloto\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7aacc5b8db9badddcc17332c8f81fc5b01d0f1dc05a8102f0f692073de4b9a8f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f9bca7ece9c96744748b493f3d6800365d0543f5e93f8301f892d7782e98334d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+tj\\?type\\=start\\&hi\\=1732457162$" + }, + { + "hash": "12e1bc7dd0f4a85c5f02fe148269e04597bd837f658a58315b47eface5b96c9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1htz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d23080446e6d057828f224babb84996fda8b797432f135b81816ce13bbcae2ae", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hir\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2b2fcff3bdf4960403a4a7b6030aa948578b5cf8e0d11abe46485823eaa81ece", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d9d455a405e462798da2576c744a2da37cdba663497f95ec09cb3cda2c6b6c53", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uue\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5e1b5c88fb7e972a871a9995bce57c7795c9683c32566ecb7a9c191a19e4d1ca", + "regex": "(?i)^https?\\:\\/\\/btc1fwf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "520941b7942679408f13a3feb0802fdf4a90fe42400b5fc1a12d51d95a281edd", + "regex": "(?i)^https?\\:\\/\\/btc1hir\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "081b17d516d067cb971a94b6aba50da5de792105897c8ec13a89054cfb4693a2", + "regex": "(?i)^https?\\:\\/\\/btc1wyw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "03cae886976f808138d3e28d1d056456bec2c1dba035ad810731867c7f35763d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wui\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1d6cdbaba2c4f841342f2400d68085308ada0b02783f37c1cfc6aeb2a91ec011", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0a168b606dd37f420c90f5b025406dd74472b1cf58c8003592d62bc6da299c99", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qrt\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "230c3c5803c4f8be3e7f1b764ea6e703a7cca99b147e5ebbe135bb497acb9fa2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "aa443c2787c9bc304960658a77a0ebbf6aaee21e99ba11e909471c04b7622b39", + "regex": "(?i)^https?\\:\\/\\/michlawssi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e8a305adbde5784c1c1bdc73a0a1dee0d18018399f156b03a3d2488c382deb3f", + "regex": "(?i)^https?\\:\\/\\/fdg4rerg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e69163932a2ccccf6f09c2d22567edccc665f46a027c2b9d83cedd50de8610a8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gnq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "debcac8b49452d806019281e4d564991d8ccfa73608a126701446e373f808f38", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goe\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1924625f2486b5567960af3e82654e675eeefe69389d33227e89f06a733b25cb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f2dd60dec28590ee92ffa592c6b211fd64c662a71a81ce6a2866431e1b2e5f9e", + "regex": "(?i)^https?\\:\\/\\/lonsaloto\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "13eb12fafa1f4ce152812f139593f70f97397f69eafe2b462086b29e4069bf5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kaya[\\/\\\\]+signin" + }, + { + "hash": "e334ef3343a94036359c82ea58b85ecfe02631912e844c005a259ca6ca47a361", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wyt\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "651f59cdc21042dc216fb6c8a8664501447373e92d4dc298d6d3b671dd2e7941", + "regex": "(?i)^https?\\:\\/\\/videohotspotx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "967a8f794ef1f9dbf4a02ce3d01e9ab73c99efcb8171dcc47541e066631287a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ac425ee7fe838a31923d18daca8808a82d934f9380c8f9d1cef3430ddff72c36", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ba3d4339124273d65d533693e4f5a1c61e20210a993028c9cc2836e1391426f4", + "regex": "(?i)^https?\\:\\/\\/www\\.vsgdbg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2f14aef403fb5b78f47b7e42967d9543315ae8b271b3c7c9d19ad7de6fd46512", + "regex": "(?i)^https?\\:\\/\\/btc1egn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e3fac81ec6f86c50cd8549731d796c76611aceb681d673f36a1ef0abeffcbff6", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ec8d770415195af039a089129ee95a92bcd8314af4794f167e8a8b191a5afc44", + "regex": "(?i)^https?\\:\\/\\/btc1uue\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e36079fc91e29049b635653f578a906e02db7ee82b7a982f925ae9235dcb8d27", + "regex": "(?i)^https?\\:\\/\\/btc1qrj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b199dad3de7796bc0261d307c5fa0f3bcf3f0ea36f61ff54f2f62987232f38b6", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8fc28cf2c9e1234e30dcd6074e3f48494e1eff0334555ee98bad7addaaa21866", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9151ddee6b73b80bc3d28c5b148e6cd833e43f04191ceaaaca7cee88df156ce7", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9fed4a5f2f13c4d1736cee269af7e682b478f0738ee25289b11323d1103235dc", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1a8ab08e42007a7428539ee8d946a0a85563af06df395c60582e7637a56b27a0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "77e9ee596aa6d1c8487207cd8e4a615ffe9320e96b69097a1e4b252d2cf07517", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "305f744d87e7a2c1c407e0db755faa840bdc0e64d48142c64ecd6291774da459", + "regex": "(?i)^https?\\:\\/\\/wngehf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a83b63abc945ec0d02f819fff446837b1f7c6a6cdef77cc2425ded31c3e0aa98", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gjp\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e7c016d0f95e258c9806da994f5009c371bf8c09b2574dbf12cfa6da3cd8bd37", + "regex": "(?i)^https?\\:\\/\\/gbfdhn\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "aedeae4f7ebde09d3c2411c0439716083850d8c0ad7ab0e1daa8db3b2236199b", + "regex": "(?i)^https?\\:\\/\\/videohotspotx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "438df5cd4d708bf68d19832e5d471d8aba74cb827e1efd43b980f936364bd9c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "275a347875d13a1a9ef5f2760f8be4f2cec8e166af4245a48a7b3db712a66336", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b80ebfc8a53c5c166fd18e2eae2e0a76bf8710b3276442bfd93b8af9237d38b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "640bb129bdef70fa0c70b1dbc16378b5556393d616705795e7e4c2e9aa89d4b8", + "regex": "(?i)^https?\\:\\/\\/btc1qrj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "727e3c4fd7ab484425f2ca2bfba861fad9e511245d5709f89f81b059e3382037", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3d21b238c28f3b2c550920c2a9d91707e7e3d2edd3ccb1745d1f6c4786d3f236", + "regex": "(?i)^https?\\:\\/\\/afkolozo\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "32b4742f9b1bb8ac4d4bae659a3a528ab151302a78f6a978305375599121bf9c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yie\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6464519af5ce316f209b9442ad8d179b1d5b2fcd761c73623a24169498920cf2", + "regex": "(?i)^https?\\:\\/\\/btc1yok\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1b00d1c0c86a5b448fc6d72945efe7a88727f0d8df1d1dced21047e94c74f9fc", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3e8157378d47f878cdef7b82281289ae61b2e8eb94b362eefe7f87012e8f7676", + "regex": "(?i)^https?\\:\\/\\/btc1wyw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a9712ffc8f47662562255c46498701a0be0ef5120be1af35bbae2ca7d66ef87a", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "eebb45521f3bd68e50bd8e4ffb67c2066d118e89b90e9d2ae571260feba018df", + "regex": "(?i)^https?\\:\\/\\/videohottodayz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5577f54e4d8d1a0ed0c8d880c32f4a143e411c6385d6cc4bf59fab8ec35ed139", + "regex": "(?i)^https?\\:\\/\\/btc1hir\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "11c08730423d596fd53b4ee896e663bb6ee7c9bc0d32375a35e28331779c65ed", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f0471593c145cdaa263e641a4e3a0b60711cb407948cb185146a85df1661f607", + "regex": "(?i)^https?\\:\\/\\/btc1goy\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e8ccaeb5193813e2f800c5349e01273f8e18e7465641cba1b364ce42a28836ee", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e3d798625a3d2672583f44a02c8822b12f2f5d6683f794b2cea4a16b0cbb1e84", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7ba725448de2bfd5fd0316a3bf508b3a5ad1a858e75009f3bc80e4974613e00a", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "064e6b05b6e65564fb8887722152507edb277444ffcace07e893f2384e709af3", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "92038d9a43e81482009bac2fe430195fd23d2367ae8a44c8eec957af60c93bdd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qud\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b63d0f21fa44e5fea52a378b8d547af97e0a283fed80cf430b6af31a2da20b41", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b5bdd900eccb7b05fd19eed27af774045dceba46e66df580624ee304c0581c16", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2cd89bedd5f1f1b636ae275b4d66659c5829046463a28a16b3a4ce1544f49457", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b2422ee7dfa67d28df3a87876ed75082fa516b19b661a3e3366cd28d614c5d78", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2a8c992243e7bc1b2b1d06436c09e2b5238d54e95d976bd5c7e20ede4c99fa09", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ce1a48708bbe836e1d0ff8a002ed1bf942a8c5bb49607e826cdde915142dd34e", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c9cc460841c406b560bd37fd83ac3bd53e53ddd4badd7ba5fa79ad55e122bbb9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zqs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a1a66314be82d147a9ede3eb0085583f92783a764ccff78d9492e0928c3ffdd1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0cb664be2a7ef44c085a6800aab3f8ef816edad905f8e16d011d11b9443469ab", + "regex": "(?i)^https?\\:\\/\\/btc1uua\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "946832043af2e229c599bbe4ec18f92ef7eece000161e095c7e4adfff5bf2de8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8359f587e93facf49b8c325b95b496f9cc2eff6e3342c622b7baf38f353089c6", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8d1adc09505d1b7181e80f56593cf326068e673bee37e7654cda7d1ab8b6548a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hjz\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "85cc014f30d76be2c9a5bbe44ca053f6e828ffaf8f7d656149dac9b4e77d384e", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "88e7bcdb9a9fa97584aa442f3663c2dce287d22620630415f632f6fc4e0a6554", + "regex": "(?i)^https?\\:\\/\\/btc1ysf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6ca1907a3bc5e7959198977c3ed3bf82fd54cb319a80721e7b53ce59328b6c5a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wuz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e12fe0d31cc1ef7ed83c3a3378b5ea3821e185bcce95fa750d86d9cea8563728", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3571c34c466e517e10347d199f0b8ee0f9cd1ea9dcf899cbcac5c668d108cb33", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gnq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4ddb87dce241c8c2610142b1614a317d0ea8c7085607d45a7ed161d0cf82c568", + "regex": "(?i)^https?\\:\\/\\/btc1ujs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "897a921460dbaf3b200162fc91a039211df0ffca3cbdc18e0eceb5ba21989269", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "650dd3c7cf11d09684619d8dde4e93d41c0adb3c9736a1a17deae0a870601628", + "regex": "(?i)^https?\\:\\/\\/btc1wvs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d3e731aca0900b55b7cac6681fae522c2127730cf88f9370239504a329be0859", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d7ee890d80bfafb7826d84b61b21a0e219efb46a5d535bc271049315eb99fd16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rox\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ddd0a6d673cb609db0b939bf11b29f1c1ab73c258422a07ba6451b8072b384bc", + "regex": "(?i)^https?\\:\\/\\/pinrobo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8307b83d860512917120aedaaa0793af8f92805aa11616a3a56eba53cc7cd323", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a5845d008a3635ccf9688596c8662febd7040e5447f86eb869b0a387504a58a1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ddba4a63396a836c72cd0a1814ed1d4d125009446bea278999b335cf58c2c9e0", + "regex": "(?i)^https?\\:\\/\\/videohottodayz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f0a66479ade4d178f9d0d8ba0790fa0ec592167ed3c0b8b0a75752d0054ed45a", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-\\-4u\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7690ae49c6964cd30eacacba6d00202ef434685f7f07c874bd08ec738b4492f7", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "108c17c66f7f1524d33d2872481be84c6e412320846b940666ede7265479d155", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5d7938e726c9e3ffb4e71f3a3cd02b5685aface2007926384a923772af07da4e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wfn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1818b5325246eda38eeea1ab74d83ac724505c714aaa238181c38d496739ecd3", + "regex": "(?i)^https?\\:\\/\\/btc1juu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4952132910e82e6a8e285d68b75eb6cea6c87ceb4c87f9a14e3e918568a7ccc6", + "regex": "(?i)^https?\\:\\/\\/btc1evu\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oiffxb(?:\\?|$)" + }, + { + "hash": "7aea7886018aa22615d2bcedcc093b7fe53bbe69150eb8664277e4ce5d8c013e", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8aec63a43f8f8b4bb56a728fe0847a2b8174b8ea8976184eb77c7c077529ff37", + "regex": "(?i)^https?\\:\\/\\/btc1qrt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0c19b980a032ebf9135ce16d4dc94576189be17fbfe0d6df5289ac547f7d3082", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7fe9ff22689fbf30c489bab2917d3f0d4d8dc7c4e058cfaebb8bdcd9194ecb59", + "regex": "(?i)^https?\\:\\/\\/stumbguysgems\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "36fd337d271d05766b8cc88711fe981edbbaf678a473df1902017c1d793258bc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "90297afc743057d0372ed1a077ebc9770e4704d42808105583425ea6e03473fd", + "regex": "(?i)^https?\\:\\/\\/btc1goy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fe91ae433434cf8f8f5712f09eb2842b596b8bd2c2da4855e69af1d249a7daf1", + "regex": "(?i)^https?\\:\\/\\/locawsato\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a9652bc26b43dc7cb2c3519408a2d3c1c77a6f8d47f0443fefb45a2613b800d4", + "regex": "(?i)^https?\\:\\/\\/btc1hiw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3a472ff51ef83801f6b68365bb4022c30ca0571b2d17e4fa3981a93dc7fd1f0f", + "regex": "(?i)^https?\\:\\/\\/cdqsvg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "25e1ebb50cd01f0b06a55478ef96ab376491b2ae64d9f4da7c1115cd3e0d0f03", + "regex": "(?i)^https?\\:\\/\\/sign\\.payment\\-telstra\\.138\\-197\\-91\\-134\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2f34fc92c11f6ed0fbadbea20a65fe28862ec8a0dea1325efff84fda3fa92e73", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7a3a3a88459abf28bb6bdc17e8bc0ec4d8f38a261bd8f950c1dab4f1103b770c", + "regex": "(?i)^https?\\:\\/\\/afklozon\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4cbf88302e4b627d2a64875bbba2655079f1e430ed6e5124fae2895827904126", + "regex": "(?i)^https?\\:\\/\\/btc1uua\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "eea5195080a7b82c79c2e9c99cba5c61a48d68c654ae43f553162e5d57c48b65", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "965ff24edbb5d7961d0cdbbb030d25b825dea5cbe95684651b28cfdbe871417e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a1a61888bd9e2b4fec7fab578769cedf0a154d0876ec902ae19511eea7947816", + "regex": "(?i)^https?\\:\\/\\/afkolozor\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cf5d8e3e195d10956a2fa8405560c66c6b89644545c155026a57841c5899b653", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3ec941641fc6b56b6054bf21ef3e1e8e225aeebc89f3c8c8b24fa40df3273b46", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "591b804224be2991c94dc99b33c0400065a12f19866f92e691284e3ff84f363c", + "regex": "(?i)^https?\\:\\/\\/lopzaro\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9808014edc27b120274c16af5715d542663d85cbdce375fa23f4bf29f50f9c01", + "regex": "(?i)^https?\\:\\/\\/vsgdbg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "db705cc501def5efdabb1cb9523e35b5599d7f65256d5dbebf9ec39f7cc5baca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wzj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a66e200f688aaaec731ad9f98a7ff072b212684da654c501df58fc70d95f47d1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2e8f7f0bc1cf41a92a1c1860e779f7866050197625c084c9babe3e2ebe749396", + "regex": "(?i)^https?\\:\\/\\/diceroll4u\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b82f9c78373b296bae9765aac39e45e46c125e7cfb78217654cbcf99d8a47d1d", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8987b5894ae0a6384db72d9124bc7b8b2f46ab6fc76e3d54058dcf63bb9fa7da", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0d3cc2789da00f5f671804183f1ef6680088bec5f72610b5f22dc3585dfc7ec1", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8f9f6ded3fe706825038f96f12c850f462e18b557201fe5665846da0f9ffa679", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-4u\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c09fe58f7a1548893a1a7809b519d7caf7bd56a2ddc59bb9308811ff22ba2d35", + "regex": "(?i)^https?\\:\\/\\/btc1goe\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d83443ca7cd1a5ea67343f7a96b79e847b57878145e75798da18828b973501b8", + "regex": "(?i)^https?\\:\\/\\/btc1ebv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "aeb551c9bfbdc1b75f1a2ff12cd50981f71f02925bc5d0efe0a4ca575d86bcbe", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e6dcfdb27566a8ebbce505ea540026e50af6ab3c660f8fba58756b8f8e26c262", + "regex": "(?i)^https?\\:\\/\\/btc1gpt\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3c1d9f547e7d177166c1be47f896f6d96febca53c6d674dbef0275d5d16ff474", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "69982246589906c944cf3982f93930eedf02117ef8a03e7c613b29e59e4d21c8", + "regex": "(?i)^https?\\:\\/\\/dbfhrs\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d157126087fd8f2646ac34b303fe1f93f887e08228672165ad10c25c1f87834e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "417fab4dd83eca6720627c01b82ba752ee26ee7ad3bab240d7d83efa61985175", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "643f3d2ce29066f52970d7799d8efe67c435d1501646bfce94114964d4dc6711", + "regex": "(?i)^https?\\:\\/\\/btc1wuz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d137fcd48cca36abacc689cc04f2b5d5e99915e050a9b602300c8eaaf1057fcb", + "regex": "(?i)^https?\\:\\/\\/btc1yok\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "300bc3f5c7d8b61a19e18a7d73cab0b49fd8adf65f300b5a1604c53d5105ad4f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4607c5a12c52e9d159ea32ecd52733e6c89b5756a5d25bf583a4c39de7b6356f", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a904602abb4cac6e161d32211c69e1b6b48b27ac3c123642fc50a63cfdc3fc84", + "regex": "(?i)^https?\\:\\/\\/btc1oqr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "70ec57a0d185543ef45ca504211130a1fc827cc29a4337a3b6887141e25db937", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0e8cf3cb2706bbbd70362bec702509150d6f48c2dbcb3af32f0102f47bc40b51", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "78ab644b7d32a69ea84e318ce14e358312e3d2fb801e758b47d713006ce39eeb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "932b6076ce8efb0196cacb31d751ca287f1f78fa8e32e4cb30c8e891e3cc7414", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "10b985ce1dd4c1172ec1ac58e1787902666d89e442b3f6be0e0ee77364e9c50d", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ea51a5b46c7f1c033725c9e83d5778c47ce9a80c38f1981f38f4ce12cf462f2d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5c3193ba60136ea21b3ccf34dad7fe244eae2ab7f65f4b474e24c4e458a9038b", + "regex": "(?i)^https?\\:\\/\\/cdqsvg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "325f10ad7ca7aa1f6a026aaff79381fb2f630a7b894da2dc16150ea9e2d1f8a5", + "regex": "(?i)^https?\\:\\/\\/btc1egn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d70c495c09965f650276fece65e01135ee7d2bdb1330ff7d9d964411bd599812", + "regex": "(?i)^https?\\:\\/\\/btc1wvx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e3bcb4e0727dfc742d948a5f9a98f4693ef54496efdad8152f42434d1e28b0ed", + "regex": "(?i)^https?\\:\\/\\/btc1gpt\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f2a18a0543922e5a48d67a1c135f9b43aac4cff222c7ca83b7c01f4d6915cc7d", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4fbff8faaddebf07c5727c8105b3a5f2d74672972f74ac967600a98054afdcb0", + "regex": "(?i)^https?\\:\\/\\/lopzaro\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b2943ff4ca8c257f19301c7d891e822ff4c7f16d59e5d0f1ec4575d07210029a", + "regex": "(?i)^https?\\:\\/\\/btc1hir\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e3cf9fa7d47617ec48a3be6e2f0aab05db2b6e0c2a633351f322e37bdd648c3c", + "regex": "(?i)^https?\\:\\/\\/cdqsvg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ed51abcb5495627c3ef1633f7e2f8ff6e822c27f840638cf1006fe3d2224b65f", + "regex": "." + }, + { + "hash": "7aa59cdff8f8eededa8d7f436ad0eee3cf11f36c58e61a660e7436b1f7b18b05", + "regex": "(?i)^https?\\:\\/\\/btc1ett\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "85eba37dc0911777d445f4950f2de624d28ecb402f2bc34aa8a4c25e42ed5131", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6c509c2a840e559977dca2552977e040b217bf0a64023919489453b99dba8c87", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6af21982c2120a48c68578ebd50b73fd09e09973815a9609a148300eb5626599", + "regex": "(?i)^https?\\:\\/\\/earthmeta\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "354f98baf8a551e5f0a5758f463f1e2e94bf9391fc40e6d971d503947f65d47a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3312f817c5f7dda8acc032117033b0e4990dc0703023860537b070d8874893cc", + "regex": "(?i)^https?\\:\\/\\/btc1ehj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "20a01be0cccfa3323792653f5ea20df7f1afdeee545cf893b8a07b8961c0a80c", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c2bf066f4af4ba25ccc410d9349afd7be56b4e22282d033efb162b8332df5c42", + "regex": "(?i)^https?\\:\\/\\/bzsdhq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ba5f7df07939d058fedc9bead4f4ed37fdddf23f603ae455d55104871e6aa2b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hrq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4a4685a8109bca90acd4447bbc3d65308526fabfb5fa775a51fbb2ea24463943", + "regex": "(?i)^https?\\:\\/\\/btc1hqz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4d449d0455d531b344191da0ef9eb59c6c324ba3d32290be40ddbc31635586f3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b7afd201d78c2197dbe9bea0b86de1929d58fc367ea8d43343ab67e04be85b93", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8ce140e5ff4e3725d26be448adf8cbcbb062a9fff0659893c027c9374f1a9d0e", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ede68dca7411117a62f70ff38dc202738277ae65e0103aed0264650675af3394", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hjz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a42364[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+pa[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "93ab069e7025ee0986227547a8e782adc8b907302d8dc6829fe0370d11f42668", + "regex": "(?i)^https?\\:\\/\\/btc1ett\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "88d82e2f469cc4657ec7d3cf4199fd1c1190ef6247b226aae82be5bd8ae4b5cd", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6dfdc8814dd11c75ca006555b78996ae57d703a827d5d3cd07d3b8fcb916fcc7", + "regex": "(?i)^https?\\:\\/\\/michlawssi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ce5ecfb4956a6d4a1609728ce80df659973387f467f1c2927ca6b081dc8503da", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9b0c433e7c81640f22c8852ecbf58354cb7b273b797fb75688f15472d5b07f4d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ebx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b0445bfa0a2c15612572586cc7902e056cb4fa424f4e84a27c0b917071321c74", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "24cef0b50ccd536cc2e3511724a0e0993aaac76c482f3c425613a48aca193c42", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9b01ab0104692b552dc8f7b4bfa73089c0ac8dcd10b03ab1b7d6d1d309bb7515", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "34f26f720e4fca75f649d75bfd9ef4922a7f39b5ad5f3b3ccf2a91cf13bfeee7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qud\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f929848ea10a35a92b82432ec740386ce66990e5749c86a6cfd9d4efc0d0d89b", + "regex": "(?i)^https?\\:\\/\\/btc1eej\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a99c3c971fe8cce727b4e35e6d892729cf5005f41cf1874c2cd0610651ca7996", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "374b24bff7b9dcd067251652e711fc80ee7ac968d784efac01e635b1ac861aab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wjm\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b0d1fc11759b28c73de7143516f8367dda124efd961339804a345947782df03c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eut\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5690c53790f838d71679c13f3eb28654655a44b2594c6abca829763fdc64807b", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e8fc72edbbaf6c2af3734459c82f85dcb7696382cdb2c2ecba605b4ef8107ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "449e456dc980b9a5e5c4dfbabbc5dd6d9c6d7fc5a32be27d97b23698b9cabc35", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "68b269c06a62b9501677f40b3a3e340ac1a67e9e829bb30f1516d193c30602a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "785412752155e0fa40e6a485daa1ce5a3d826f8a019646a45b9b5d99d66ce4df", + "regex": "." + }, + { + "hash": "b3d5f124545067055d6ea2171826e57dc7678ca0e9921c72a7b071b79e26c3e9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "017578c9d544a813df21fa89eda97d700b0018d7b6332b03aaa5ac108cc79d16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e911afb925dfd427ed4bfc352878c8d2de0755e885dfc25a724e40b17c19e906", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wuz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "983ffeb7ca2509d0ec111500092538df086af6b7210db396b4d032ac22ae9ac8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gor\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6b72a9d2522267b0b423f3bc955b37988dd4ad65a5631285cb38df22a69bd4ab", + "regex": "(?i)^https?\\:\\/\\/afklozon\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d1aba3dff5e71c8897850d64e06e3bad2d60478816221fce97bd337ea3b63012", + "regex": "(?i)^https?\\:\\/\\/btc1eew\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7618975b92c245bfa5e0cd796d1bf9c449383580a13381abcbd8b834d0dd00fa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d972fbd670afb25a7aadb4e477be2229f8f0462627bd2a5958d4d6ce83702eb4", + "regex": "(?i)^https?\\:\\/\\/btc1jjj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "10f1b16e47090153c207e27dedac368f800fab51744382a84e12912571ad7e50", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0ca7b78595966dc42af1b36f0585abeaddc09c6411888d2352c3338d11ba72b4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qfh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6e0ea37381e7031896fbb21239c66e81c3122e894eca12c078fb4cb277597a84", + "regex": "(?i)^https?\\:\\/\\/btc1goy\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f4c60346b76f31faf50b3ca88d1e6e7cbb47ddf147e78d0a301debc91e5c5bad", + "regex": "(?i)^https?\\:\\/\\/btc1ios\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "34b9f47c51e8f5e1df2d8447ba97d8d8ea1a16abf768f967efa7278bceaebd49", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wip\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "78ae94119f1fce4101a40d66eca2cec5d6a5867232f5234751b5ba188c8dad60", + "regex": "(?i)^https?\\:\\/\\/coin\\-master\\-\\-spins\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6def527e4965418045419f728ac9cca7760a1026f1ef355a9a5855077c47a6a1", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3d6cbe796e7a38be9aa3809b3f1633557754b933d872a9fb720fa6153eea0a4b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hrq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "885b4a45760cf43218a93b9c15cae8ec64b91b63fdb9fb858167cb0a6f9f9057", + "regex": "(?i)^https?\\:\\/\\/btc1qrt\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cf68963ee923940e2b7b1f2dee9df2d25166bbcb995ae353e4aa7c6a21a56961", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "85eb9e0fac53acfe4fd51524669a4b5ace787cd16a921b14ec5460b9a1138447", + "regex": "(?i)^https?\\:\\/\\/btc1ebv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e967599b156327fc17bcf3ca9a5cba8943caca406f3b157e5069d99693576146", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a6e35cab74f992ee3cbae5f9d0be3a0fefaee1a09f74525bebbb2ed1e2da568e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yby\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "50655eb16474e6abace40d75bea0871c3117f49651e83b5ab3a900a982c92165", + "regex": "(?i)^https?\\:\\/\\/btc1hyt\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3f6b51f2f942cb803f7ddd7e917591246247378c7876b65bbf27b9f40bffb61f", + "regex": "(?i)^https?\\:\\/\\/btc1yok\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "31c31f109dcd51fcc9ae4de649ccf567e0f5b03ea53c4191f0de92d0e961f87b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9183[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "904d3d02d158d0eaae329387fcb7304cbd8e955b6e069217a2d273894d688880", + "regex": "(?i)^https?\\:\\/\\/btc1gpt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3a5be5682d77cda1012000ea90e2c9c53f3116d998c855fc3f16e62ca87aa595", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e479517bb06cdedb4fe46ae48f8837f9f9be7782c9d9806c26ccf85ec5a62d54", + "regex": "(?i)^https?\\:\\/\\/btc1ega\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "401c6b06e35386209445fb4bc110d33861eb9c0fe4d1200c1204ead8edafce0b", + "regex": "(?i)^https?\\:\\/\\/btc1wip\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "34696c00419fe7f78e7f0ef83c45f5cba4af500826e5bc1e86c4bd030d28bc00", + "regex": "(?i)^https?\\:\\/\\/btc1bbb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "508896eb687c8de10c2973e40e22734e7238286c86288a1c8e3843226e16260f", + "regex": "(?i)^https?\\:\\/\\/btc1erd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "344a43aec53d6d83df5c5efeb8d0690fe0b2fb051f6e544b0152e22ad436c170", + "regex": "(?i)^https?\\:\\/\\/btc1ett\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1279e9a398e379fbd9dc1c165a4131a3d9230bad0843fc95f956f7b3bd4c6310", + "regex": "(?i)^https?\\:\\/\\/fdg4rerg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c22cbd29d1c6bc0ceeb870cb98bf836ab187f4a362327e528dcbf015a8f8642a", + "regex": "(?i)^https?\\:\\/\\/www\\.vsgdbg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "70e85a7f7bc17269970bbac1eb4a8ed466c1586049f3c58a8226d07edca3c58b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6bff26287802c9c517d96cf8149cbde948f4893fa8e1048566585588d22f2ed1", + "regex": "(?i)^https?\\:\\/\\/monopolygo\\-\\-dice\\-\\-4u\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dcbfb13fe2dc8df89eba7fed5d36ccb122a1119287f2de59f8f3bbe6d9bb7ea3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hop\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "504d6ab1582fb8b1a1a7a6b2a77d16fcef1c49917d230ab808132926255c496f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9490737e3cc1e4c69e4f48fb9361f475ea35988768b56b56d13ad93a3c33673c", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "00e44746834387d7c7cc943fe234e9b6b382283c600055d5d730233d268afb60", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3642e2fd540b3adc962361642304bc73bca2b75bcdb8a87da92b39b813ddd3e5", + "regex": "(?i)^https?\\:\\/\\/btc1qxb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5e34ab77ba8b2e4b7bde0e5faa88066d984d1047b511fb87a16d5729447d2cea", + "regex": "(?i)^https?\\:\\/\\/btc1fwf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f5fe8e00bb13800eb7ce16fbca2662acd80c5a99a73f67b713336ada38156bf3", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7fe9148f4ad28b8a1d1523fe1def53f0ef6f56d2d68a45094fb81f0ff4fe3dfc", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5e1fb1d6f314bd53958e3109bc52253f1f377db1d949e9254050988503252c3d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1end\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "226a7f0e3ffb770fe32279d8c44464fa251cd2158f47d7d3b05a50bffa711155", + "regex": "(?i)^https?\\:\\/\\/dghhcf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cc901ac6898944674efbdd0014f79e8b518b69fb45c688c4ead4372d10c33991", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "69d3aca5db30a7ce189bc5d8a4221c611f95c2f286c0009b9201fac64e92da28", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cf050ece5c6ecc02b5ce2666e4cfd9974795c41ecd4dc6a47688d790a0f99a34", + "regex": "(?i)^https?\\:\\/\\/monogodices\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "efa066a254a98ba98f88a67c4c7e3b0a882971d038bd1d1c077bdca953b3097b", + "regex": "(?i)^https?\\:\\/\\/trshser44\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "14504b640867dab1321f0b5290b9148aa8ce3f994b198d8046db0b8e238fbf53", + "regex": "(?i)^https?\\:\\/\\/btc1uue\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9ef83de4c7c8ee6cb306838d2322e536b8e2db0bff16f47cdf588a0ef1d21855", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1kfh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "57aa0b9369d90533d09803bc7bf649186675f8ff0f02dccacd9d39656d0a8e76", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uyq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b2994a578d28f0191b2dff1ae30de1e0057713fd702af297f3eeea9e54063271", + "regex": "(?i)^https?\\:\\/\\/zolbaro\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d4bfebaef636569acaa82b8a7ac601d814f7945abf5bae8b0fa61533a0e7b1d0", + "regex": "(?i)^https?\\:\\/\\/xxxvideo\\-fanza\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "aacb08458f7e52b9b6770b2c37ac15769c20c94c39385b8d24fc0a9c6e22e73e", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "133622d067d8a645fa5073acca67f9a4b0a4730360d5bb887426fa2a91e2aada", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "56e533100e2026395c012f24e0bb740e66e839c17a46ef7772b2c36fab2849d3", + "regex": "(?i)^https?\\:\\/\\/cfavgc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2c80ed9b5009e4d3855db159acc26c9fe20bce42aa526535e72d74a629dd31c7", + "regex": "(?i)^https?\\:\\/\\/diceroll4u\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "08a55db1708b2369a186fbe8aea9ab2065866469dd5c374cb4bca6f4b82a4a3e", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e18a8c64aa503b2f9a72293874d782bacd7783d41e404cfdcc572d6913367d3a", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2857e0d12fe0dcb3859b4cadd7838c152dae541f757ee4bf242bf6dfac7ed964", + "regex": "(?i)^https?\\:\\/\\/gndhcd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "dd5d53e1dd89050ee6253cd4084ef1c2d677d6c436006059761f2b764718c0aa", + "regex": "(?i)^https?\\:\\/\\/www\\.vsgdbg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4a7a36fd5429831e35b4c39962505ed75c4062f833c38db4b4dc4f82f42df4ec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "efe659232d9388cad413516049afb51dd2799638d5b249f3c76393b7d09995c4", + "regex": "(?i)^https?\\:\\/\\/zolparo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3bbded2388329bd8388a3ea1f1b0a9ffbcf16244f598e7d8ee1fba0b04cdaced", + "regex": "(?i)^https?\\:\\/\\/btc1yuk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a244d23c375c0eebb71b10f090c17842f83e46a89cc6a95f78cddd29b6e7974f", + "regex": "(?i)^https?\\:\\/\\/btc1gor\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9540879a3416b3917f8b621f1db5c7836777a361545a72fbcb66a33b424a994f", + "regex": "(?i)^https?\\:\\/\\/gbfdhn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "774090fbdeb323eb598c7ef31f6f084216c4136a8ea79e70d1f8695b026958b8", + "regex": "(?i)^https?\\:\\/\\/btc1hun\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2f273613bf42d85ed87595206fb88ccbc4382ce1d7e56ae0467ee44f8a224aa9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a99cbcfea74fd85c504c9ba386644bbce1251927349a6502c27a2f594692a836", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ghn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "bd1d2861c578fbd44857885ed2a27fb07eaa00c78242b6b4fe928070535e4710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Drop\\-Womens\\-Pepper\\-Ballet\\-Rhinestone" + }, + { + "hash": "b1b5a2f06bbf29066eb4f170fa35db999d77dcc0c0b57aa912511836d23b42f4", + "regex": "(?i)^https?\\:\\/\\/btc1wyw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "af128b37419a0284507c90480b5968552c0a24bfa297d3a0e46244f3d350d86e", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3381bd219d843a7549bafff3f2abf07b9faefd507c0f5e025d498b149fa18342", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuk\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1c2218eb9dafe18932d127659c24e64b4afbb93a40c220faf923bfb5df16cf15", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0e9eb99f0825ddb90ce2d60b2804e0eae28b2a3304e159201745bd5bc9935710", + "regex": "(?i)^https?\\:\\/\\/lonsaloto\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0d83361c4ecd62ea46fff7528594f71a1d63e145ff1e70b517a8cda5a5e88225", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wui\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a7da4adf74c5ca2e960cce190e6c233ec1fcaa905e3f3db95926d35a6e6cc908", + "regex": "(?i)^https?\\:\\/\\/afklozor\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fd748196f42562cf0af7fd3e682fa0d9c839621c2ee3777b9c40e665c10be400", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a1598caa1b8a0bdcab97776ae6869afd631283b775ba63009ef0c17b24681796", + "regex": "(?i)^https?\\:\\/\\/fwaged\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e46d9af29340577f361b1dac61a68840afd5c839b1f1c249a7ac0385eec2f311", + "regex": "(?i)^https?\\:\\/\\/btc1egn\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9141ff15511278aee07349a3913aa62106e2cf57bb8f345cb8d6d04318b47e3f", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f412d6d1a04975199ddd15dda1b57d8630244e81b166fcc043009684e3c4be1b", + "regex": "(?i)^https?\\:\\/\\/btc1goy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ff7a9358505d125af05f12724287d273bfc11bf3af57844c23d6610cc3f0bd0c", + "regex": "(?i)^https?\\:\\/\\/zerdfgdfgdfgfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "93608b1daa7ed85d8eb9c918a7e6681d572e25a07f4050f9f791e2d5215a0e43", + "regex": "(?i)^https?\\:\\/\\/pinrobo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "54fa201d927493d9748684c6c850c5710bdfc4531760ecbcd8bc7ca52aad423f", + "regex": "(?i)^https?\\:\\/\\/btc1uue\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1cafa4ad00724298e95e5cce6ebb78a9f21a157779b07b1b64da14fa3070844e", + "regex": "(?i)^https?\\:\\/\\/btc1weu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "12a61f3e5012b914c6b6aa0dd7509fa80159f57055e91d17364fd31000ed4387", + "regex": "(?i)^https?\\:\\/\\/cfavgc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3f96efdee9504b0c0b112a0e2b47d285454a7603a141d2f707fc294d9da9dcc3", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-\\-4u\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "20dda4072e972c55032ebcebd5d4db47d6f234082481c735ec43b2a558d17e08", + "regex": "(?i)^https?\\:\\/\\/btc1qrj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f09185a1cb847be6f603a80f3368b6c0c48e48203b576f39f5da0baebc3d6007", + "regex": "(?i)^https?\\:\\/\\/fwaged\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fe913aaea938b7719553f808f122f211145b0912081b3fd6f58287b490ab7195", + "regex": "(?i)^https?\\:\\/\\/afklozor\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7f7ba5d3b9ebd940e77b4faddba311a906869c0ae9c4da3ae07f89c9bb311df7", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-\\-4u\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "82b4d639272147acaa8f8b9193fa7b5c8d8a82da3f819886b931e494bc399410", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0284e2e7f6cb3bf096cf6f656f23d190c1ea98f1299bfdeb464f567e6611cebc", + "regex": "(?i)^https?\\:\\/\\/btc1kkk\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4b27dcd18d347950f7c2495672ea1b7acfc52795cef600a4897fe0ab245050d4", + "regex": "." + }, + { + "hash": "9fc8fb433573ec6980c990e0fd6c48101a5eaa374b8ce714d2073844281019f5", + "regex": "(?i)^https?\\:\\/\\/coinmaster\\-\\-spins\\-4u\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f0d4ffc137de0a76df520441655d9b16fa270bbe2c7b7de4a6aaf5843dd02bf8", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7289676264901c833fb7743842b5b8ee66e743719433b28907a6f3b4563d970f", + "regex": "(?i)^https?\\:\\/\\/btc1eew\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fbf0ad7c83dd1711e026ece52e83d0626f4d7360ab86d28f6aa5fe62cf70368a", + "regex": "(?i)^https?\\:\\/\\/todaypinayvideo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bd76d60a7bd09c2e4dc9d9b37af8ac72655e5190e82ac1f22bf9a66f958309e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6e81a69205c477061802ee47f0a07caea5ef08f067220f3d2d32f465a64e014b", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4babc87681ae4ccfb5d20cb3efcdaf52d0e5a1e4bb155812c8e3bdea15aacdc2", + "regex": "(?i)^https?\\:\\/\\/diceroll4u\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "488f8fdac53a38ad42910b71036e741d30b2a98a92c5d3816941d510e57366c0", + "regex": "(?i)^https?\\:\\/\\/btc1nnn\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d15b41c1dbcb12eee46d6d8f248a5668816cdd8f0eac17a60e1dc5f170df5b97", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "872301e93f1529b6e6e294a40dd42ba0eeb37084950444eb013f0f5ec45658a1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1giq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9399c381e73a5ff83158c82c393bd7c97c0b3deff880a9a9e7c76b2bf291aec8", + "regex": "(?i)^https?\\:\\/\\/aspoloso\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cfdef2e69dd3dad24dc383d71c6ee910aa41880249ad2af094131c6e85bbf34a", + "regex": "(?i)^https?\\:\\/\\/monodizo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "20887ef33614e83300e2a252bdc13171a172384bc9d80bd589ddcf0c6801939d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gor\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "66928f19e82bccb3fdbbdaae3dc04b2db84b889e34b1d3d28168a709bcbe7fe3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qud\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "995fa7886229c8512d2dd599945b8549db063fc5a6fc83a526ef77985b7058ff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ujs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mg6r2v(?:\\?|$)" + }, + { + "hash": "b47f8e817f2d691fe3171eab48e9f90903633b3abe6ab296fe712c1fe7c86ebe", + "regex": "(?i)^https?\\:\\/\\/btc1wyz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a93cfc55b8eafdc5a9b57b1683cee24314a4b56d38c22b1864329a7691d0fe38", + "regex": "(?i)^https?\\:\\/\\/btc1evu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "95c71d389c350671b57acfab61360ccb3430f52f350f303db3d9ef4cf19f2fb0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cbcfcf8fa4a081b7241d82dc00caf966e954eb3e2fa5e0ec3007ae4eca72abbe", + "regex": "(?i)^https?\\:\\/\\/btc1hop\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "37a0281a465fd164728733cd7deed3ff1419e22351f9d29e3b0222137a5dea14", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uxj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "82f05a17297e13f2d386f258054ce58db8a7a5c3eea92f5a559c5c7e251a41fc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "89d9f7ba464c70c909fa6deb0c6f28c579c2485223e3b6f09f370c400e3ddd9f", + "regex": "(?i)^https?\\:\\/\\/btc1uua\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f3151e6d117949d1352109c79f395d24a09e167e326ca7fd32100321de616f9d", + "regex": "(?i)^https?\\:\\/\\/fwaged\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "967faa5ca84dfc0f697914e25e8f9c94b4e9238254ef52b65fafb9573972ccfe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+d(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3fb31f9f7e753a267945f6b5b86f967cdbad43efd54fa54ddc981d351bf8bfc5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hxd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e7c5dbd97ca9ef7ff871fd5b0a05b2d13c3c34f9105d8c182a7349fbc2f9dde2", + "regex": "(?i)^https?\\:\\/\\/videohotspotx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a56ca7d4839ff5b3e055e341acc01f31dab815dc1fc7bcf8d55ab4d9c80843d8", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "41a6c3a67c0eaae0fe321c3b237943ce9aa901b62af0ae01bee75ed56c035246", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1rqx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "be0d837df92c14d39ca125e48e25e502a793d1ebbdae15de344a1b943750bd7b", + "regex": "(?i)^https?\\:\\/\\/fetrfhfgfghfgh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "69b11746b4de9d3cd4bd6624e1403e4dcbb9e3f6f91b31e197bfe87334d6fc23", + "regex": "(?i)^https?\\:\\/\\/btc1qyx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "db20ee78ed59f686a00b3cd9e7601449a5e6024b2efaec03fc05c4479e5aeaaa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qud\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0cb2e760d982dfb3d23de72ce92dee96abb5c3d25ab5efdd480213e9e41a6122", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "273e0c7aa2d02fe802df5584215139fe16d116980b7ade80ab3e438703bf65f2", + "regex": "(?i)^https?\\:\\/\\/wngehf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "31bbb9e041685c7f956d1ac27b6e0d63dcde5899a847c73e286f4a5f7ce58929", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1caf0a2f946e22b7ad6e98c88e8f41cbe554f5c8688aec865d41b33c954a4296", + "regex": "(?i)^https?\\:\\/\\/afkolozo\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0fa3ef709770512bbb12f4465d7c18f38d39d353f01ff441e999c3cb732d0213", + "regex": "(?i)^https?\\:\\/\\/btc1mmm\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "857d17dbaad5bb6dee922302302157cc661a5d02500a16949182fa9bef0b02c0", + "regex": "(?i)^https?\\:\\/\\/vsbgde\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "86516876c40b42642016bbc2964bea2c9244912feba952556cf23c49cb106674", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f8e4be67cc52dbdcd2b83e8291dc15e64bbc7564ada6b3998cc1bda1ca4b3ca8", + "regex": "(?i)^https?\\:\\/\\/fetrfhfgfghfgh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "344aea848fe8a7b71dda9ae4d46ce5437a0003cc5557c067c56d5b7a044885e2", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a88b561fa11889e6c1ad49a9689a2bfb69c1be6b7bdd1d4e533566a0cc967626", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1nho\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "357a15d2a0e820ec6da0a063740fed911799f9d32342b5c8c179df372e14d405", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "082458ed79a15367979ed180825be037ef27d28afba52dbb76ff6e4ff40426ce", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wge\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "c417689c54500a2a1d538d7272be8190e19212a55109f5789f2d094fc44b470c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c8e8c6723891402ef1647974bb197c46cab7049edd4d2cb226ab51ed02c5b914", + "regex": "(?i)^https?\\:\\/\\/btc1yus\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f9b5eca84155a0f834bf35fd02b5269c6ee1baf026b581acfcc818b63071d083", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gpy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9096230b4d5fb8599bc8f35dd5d880354dce94f39ac7daae1af05e44c2b6e164", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1jhy\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1c390657b7add26cef0030e73c13aa86636ff4d7565652ddcb738b8ddc2b770a", + "regex": "(?i)^https?\\:\\/\\/btc1qrt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a1e388b97a668a6c0d7bf79d4a99d66231310b670396b4cc103f89d338403d04", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5015dcffc42edcf9225d6ff19bf43f2f0dae7969e8b9a0920de2c2a6fe5fe1b0", + "regex": "(?i)^https?\\:\\/\\/cdqsvg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3bbd20aeee7d275a5504e38a77d14ea0eeb7dddb6e6e2d2951ed81162d2889c9", + "regex": "(?i)^https?\\:\\/\\/stumgys\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a1f8e13d813d0e0029e3c07cb4fd4b5c1c46d293d5338415abccf516688cbfbc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1whi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6d9e4eccd4dc62bceb9eda1c840521e58827c03ad463e340ed3ab34cb1cd5d9b", + "regex": "(?i)^https?\\:\\/\\/btc1yby\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e625c45214b62e11944abda4799a9917945ae5ce6b0ff029f53d2a7e72bfcc9c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7034da19bedc9f6f487cc7b888eac24e924789e043072058b0fe936bf8c842e7", + "regex": "(?i)^https?\\:\\/\\/ndhbdx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f75038c478185518eeb94be5f1e28c29b82728267ff8d55238916ea96119cc19", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wys\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "04c8c1f30295bccf24b249be48ac01a168a49187793d496a89ee627d6d91b55a", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d841bfcfe0a700a2b62b524d993526aa94f036bca647da0078af6672834c5e1c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1goy\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cd5b877c34a20927deba4143fffc28e44e7e25a1034d87e0d8dac51004cfcb65", + "regex": "(?i)^https?\\:\\/\\/erkjgdfjgdfgfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "63d67b535083b4a361784942336288448d9b5ed33d39c55c5e7ca567f6fd9157", + "regex": "(?i)^https?\\:\\/\\/btc1ert\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1d18a48f7d21a93cc5d24263d595582637f31f8516a15453a1272cda0ff4d7b6", + "regex": "(?i)^https?\\:\\/\\/btc1wss\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "447857c702c234d50622bb0efa08f6205de246986e7706d91fb4878640ab7e7b", + "regex": "(?i)^https?\\:\\/\\/adponol\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5f2c8cfe7b77a6085119b9add5ba2a96e3b1b9d124720d2195b7ccdb14d611a2", + "regex": "(?i)^https?\\:\\/\\/fwaged\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "90b5e5904e645d0036c590ec330eb5ca0d5b57b152edc5f728b5a1fe529b9982", + "regex": "(?i)^https?\\:\\/\\/jogorobloxdeplay2\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "14c286010420e288c1bb4dc25151c2addd9f4ae1270126aaf164d4f75833feab", + "regex": "(?i)^https?\\:\\/\\/btc1uxj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ec2dd3e5ddb03598a9f6b67111b936384c7ab5a4ab5b42154cc0c21819b22020", + "regex": "(?i)^https?\\:\\/\\/btc1uue\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8a2f3267cb62573131f550c763ea8f6e7cbf339c5649b6d6c3f4e9fb6a89f037", + "regex": "(?i)^https?\\:\\/\\/btc1wfn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3081c2b1f27b9e969807952a49a13b9bb97f8adb4b946781a022bb7124944fe3", + "regex": "(?i)^https?\\:\\/\\/btc1nnn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8cc96b342021c067149a1d39761650cdebbc51c58ac8d395e591fae335b3857c", + "regex": "(?i)^https?\\:\\/\\/btc1jhy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cdfa6efe8fd896f28698ca9cfc4a5ea23f9a83412fbaf19cc3de8ac583f21b96", + "regex": "(?i)^https?\\:\\/\\/btc1yum\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a246609a4ca39e1a9db763c7f6364b599fdeafb067ed8f2f90ef16455f989bbd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wny\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7af6b83ee49c605c04bcbb33650c9d7be2b7df10eea7ef67b5125dd07a0a16de", + "regex": "." + }, + { + "hash": "bcf4d44a6d67e49772b19a410f253bfe0e0a5ddba75c8dfb7151445c4d41027d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1her\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cd1ea891a5900f59d13319a634844551c6a9dea55a97a291991e8ff75c4f41d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1org\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e3600ce39c2a3985d65d8a301c7cd136021f5fbb10a851f577e53adbf0379df7", + "regex": "(?i)^https?\\:\\/\\/forlozo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b770bcd0b0e98ba8461668c1c6fca669ada96e86174179e6f961f2ab9eadefa5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1bb0dbed637cc75ee35b5796983be277873957465cfd231cc26a3d2b648e3d5f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "235b87c7aed8754f4c8b311c85542911c6a0ee37ed7084ce4c76d7b0bf0780ba", + "regex": "(?i)^https?\\:\\/\\/fetrfhfgfghfgh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "67a803d8c2429c7a5d7592d2f1777e44ea4bf5276b289c2db08c85cc83578798", + "regex": "." + }, + { + "hash": "8e5de9628e614d3da669b1c4f127b2517ae39e5d5d2310a938526f798fbcd629", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "04c84c1183197535ecb730bd2601e25ffffdc809afbf921c2083a6ae2dcd723a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qfh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e5057d66ea0c246ca704a9ed711dcb6833b5ae175f47d56b2303be1c2466b327", + "regex": "(?i)^https?\\:\\/\\/btc1hjz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f320eee93641457d74d45c2ef6a84a0d662b1f1e4c95117b04051bc397d927c0", + "regex": "(?i)^https?\\:\\/\\/btc1hjz\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "dfbed0aae811ced880bb716d7d8848689eabbe1a27a2d7f9b03692390112fc42", + "regex": "(?i)^https?\\:\\/\\/cfavgc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "54eddf08ea035a171fa7e7f894a2cb84b4ab1ae0e5be0b9fa7e31cf416ec8c2b", + "regex": "(?i)^https?\\:\\/\\/btc1uue\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f99f9db6b98bb45ad5f738aabff7ecd2d905f42822de9d5ab4a39bd429a9163a", + "regex": "(?i)^https?\\:\\/\\/lsawtaroko\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "865e1a6d06aaf57095f7787c455bc893596ae70d3a72edfde3068362432d5066", + "regex": "(?i)^https?\\:\\/\\/btc1eew\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3c2b529257148b487d864106019621974b6b95b64b3443d39502eaaa1e978dbe", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hir\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+1f30bf10\\-24f0\\-4439\\-9614\\-c94afb91e045\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "64e5b11d047d53cde968fcebf503c425109b200573cf583764719dc10446dbb3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yum\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3af0ecbc70104d80ce096f4b3f0e9fa1f37108b4b454c77c2770c3e1d5ce1a8b", + "regex": "(?i)^https?\\:\\/\\/vfdsqq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9d211c66b410233f02de5ea13b19b0ec0227767e3cbf95ff78e13344684593e1", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d58e078b47ee4e62ab1ddbba741f411008b275c0f0767ed277fab4b56e3765ab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1818785ee8ad7770c7f902f89b8366bdd803b340af2fef0d46fa9be34ece4edf", + "regex": "(?i)^https?\\:\\/\\/videodeligh18\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4d46fd0826a72d879a020dd48ba3fad9110abec400c11cb584fe90c8d1d26869", + "regex": "." + }, + { + "hash": "ac2e74c3ea13775d7e5e18a7b8cb4a2b7e51ee5baa64e21bb9eac0dcbc53b35d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1scb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5db1b5f797498a2a2691bb7f9ab671e15311d07a4f5bb492a8d4e04cf4ce33c6", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinekr\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cb57f2940cebf28888c6fcd370a57053284d8ac5ae1666fca081c97367265b9f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a6a3a24c9acba69ad52ac1bbc9fa9234bf7bee253b18afa4becebfce3e45d973", + "regex": "(?i)^https?\\:\\/\\/videohotshotonline\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "66df6b6b65072e0c23d8f05868f1a49fed77061d86aef00b192f55ea04cb56f4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cmnhqboxa\\.com\\%25E2\\%2588\\%2595pbuxhjx\\%25E2\\%2588\\%2595wguob\\%25E2\\%2588\\%2595dlejuy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "6bb23e30bee0683ea90008bc0bbde4711ab0d4cf776ad978b421486ca8706da8", + "regex": "(?i)^https?\\:\\/\\/jersedjfsdjgjdfgfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "71731d80ef630f1f14e231505c9b8e59ea18ee52160e9bcafb3c6b540262f36f", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "c5a480cb1a1a9e3b6446fe17e34fc4040dc8c617c3140d48fed5160eae2b712b", + "regex": "(?i)^https?\\:\\/\\/hotvideo444z\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1b51db5f4fd5edb9bd7ce8257549b859425269ad257e7bdffc4b1c6ea9d147ae", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "28b7fe453400c0b23b8ccc8cc8a042bc99d43f2de8d5879abc2bff36cbc09445", + "regex": "." + }, + { + "hash": "3a0873351f666e13cf1ae1060ea22b258c2f6c736c6cdc0ad403d27cad451bba", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8be7ae00813089fa61f1594981781019a099db44e46b7288c0444aac5fc9090c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f91c7fcc6c719c936c715a996d1b4922686955b158e4d136cc726b91d652c23f", + "regex": "." + }, + { + "hash": "4e1a5fb80cc8a64f57cef164b4596b0efb96fb051f5e09dd69ef1e729e25c8e7", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5e1b6e4ffe6b57a16faf0dc8199b254650eec12cff6c1186208282d0646170cd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b2c543c7421bd193541290e0a7a03a82515b0a8d7514f8009ea37418b235d7da", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eti\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e46d65eec57a189d58bd7656f131b3c8952c65b32697846b3b30482b8f4e2eb1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5c312644b9c4d1d4504dca30588da2bf569bacb3806dac9a052caefe80987f8f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yyy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2f0e8445d8154d5a9283b5aaed1eed27c0a180422f32ef1173b350721dac95f7", + "regex": "(?i)^https?\\:\\/\\/bgdfnw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "146e21cf5676034911f22e57ee565d04749f4f1135c3ce29379d705f74bc5edd", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "508ea3073f1101a843c9c1fa6663c4991f9425bee9c1bd8a037f44027361d2cf", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f8d190cda9389a607c16168ed5aa7e16f647fcb9d16ad5fd8a2db48ea569db31", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9eb5b2e5d9c46e1d646734090897282e82b0a3cefdfb963bf44efb074e0e0344", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1jen9y(?:\\?|$)" + }, + { + "hash": "e4071d3c923315c38a61ef4d4c58e6f4840a3fe4fb93eedeb6d7db6788c7363a", + "regex": "." + }, + { + "hash": "90fbe0d19b2b5852ee13cff158d84c025d32cb37715db097cd765aabc8078e6c", + "regex": "(?i)^https?\\:\\/\\/enrzenstgdfgdfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e2a25ab9b632834cd72f234507921bffaaf3fa4793cfc02f361dfc575bb9b6a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1a3c0526e911ee28ef99f37ab4607ae7666dfeba6daafe0287d240b94817add8", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d859c41f2891e3096867926597c56e9e6cc2ad0b6ae011b6fd91036a192520da", + "regex": "(?i)^https?\\:\\/\\/smgdrh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1b90cdc2393d3267fccfb6361debc38a08aa2090a69f9b256b548ac8ef9c9bc8", + "regex": "." + }, + { + "hash": "b81d0566ac7ba266b9e9fedf28c079ebb944bbc2d7fefd88ad1c8f4bfd9f3b24", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinekr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "64161671735b3d8dda613c6cffd6a41f877a406362cb72561d872ed919be1c98", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "09c39d902f34c5be94e8dff4c18db4880bd670c843e0047070a25a48125a2732", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5395f8190f0397fde45e574aebc0c568d73c2010b108870e0fc17780fd8d8291", + "regex": "(?i)^https?\\:\\/\\/jersedjfsdjgjdfgfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "34f5071da36b63846cd6b938c586c53f0846e4c22a4d07fe13876fd77120f03c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oqr\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3cd83616efa4683b31f77c4ab227667622e4253f0189cd43813d2d93838c208c", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "25cc7dc5c9b5261462eeb16324a2636c68caf1f241c93b7706a31228b4ae179b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e62b64213629d554dc2aaa701a88b30c58825957cc2cca1a2cac87e96d03e84f", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9ef15714463998d1d5c1d1f83ec1ebde7fbb006e013818af29349de29a247ddb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wbn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "14735f0c5670d352fc094bb37772b416b9cb2601fcaed44d9db4001dd1b7c096", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5209182f3f005fa1ad592ecb4f1f71bcb4e4463791ddad1c70e188857d68d0ad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aaa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a687627be488e084b1150d0d906cb73c34631073bf0a7c8f7be6c202450b586b", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "181f6ea08d29e8521ef8702b5c86b7cb43796d94202a57dcfc1556168167253a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6a8d2ba304a28d87f61124e99be09169b93de012dfaaf2630be0362b4656661f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "20e13bcd7a7c5d4b6dc088a43ab0cf9631671459defeedb70267002adfe103e1", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c889c5c2a260defa6c1b9a02e18572accc38d0fadb1899688d2faffef1519fb6", + "regex": "." + }, + { + "hash": "c208e468e8137a2cb912d01b4ef367c393e2c364929da718e8b6a88f8237e765", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c53e93c4f9259a3df89f4b6fcd9d1bd32fc00b4f561ddc897e4a5215d2397957", + "regex": "(?i)^https?\\:\\/\\/jersedjfsdjgjdfgfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "fb9dbef237187ca1db37bf94e402a22075cb2d684c11c4ec5a3ed51b4316a28e", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bf0ceeed061c991708fa7003546eaaf9eac034fba209b1d04d6b2ada8f56f97a", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0b7a74eb9f41302cad32d27608a902a90174bb3765c01f4e8f6f7a71b6b25e62", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cd50bc3392874a4873eec69732c00cdd19de8c4c0f13948ef78a05ef53378e92", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "c513653c14388d9cb8d2d744e755e2776ca9bb6bdbb99b97147f1cf4a2cffce5", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3b2c82266efe3e999cdecbbf4b2d8cf828ec1ce29a8a047c8f7db32d4f03f661", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e3fa9342d02d4f7830c32a4f048b745538ec3a074271e8f2e14bf2d5845aee61", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1eb8222b88ba7df97af7913b243f84c45ddbf338f3abf4affc063530ca3d6592", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f5bb09ad725dcbf328c55cade3cdfbf397570e01bb7e40d50d507f0194b95ac0", + "regex": "(?i)^https?\\:\\/\\/redhotvideo18s\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "58c3968b9472c2b829b08b979367cf2806a89d04953a96bb6c53e46aa69eb6f2", + "regex": "(?i)^https?\\:\\/\\/videoxdelight18s\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "df41030b63021a477b55acbe41175cfca44175fc562adaa3f9060999dd8174ab", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv3\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c109118a16324aeb111f09e8a6ec5795be994dd851bf2a98dd5d7013c48e2d3f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yum\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "f948e2a3a8a15312446b092f4738431530c37f8537e43360aa7de889d11a5987", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2e61b70645c377ba5061d781a6472aec10e683f2ae491a4459768ff9e7d5de80", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "dd2bf68f854061ee9420bc791905481e2f6c3b5f62526c0f12d8ee8249d33519", + "regex": "(?i)^https?\\:\\/\\/hotclipsource\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1a8ad62856a32d15ecdaf475a08689d219c93f644425ce349a05b48f6e3dbd5b", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "74d4802adbf45686f56f5861492f256036e22ed4167f00c0880604c4851cd08a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1guw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "268d72976ce386a0eb754869dd8a23115513f93c599679b9aadc7d5417e004ba", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ea70dcd8590d094532d06bc395a45545aa344cb03084490a8be88d90d66fdbe7", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8ae2bc007af21628f712e802cf5ea0e7bede9dbdd7c38d0ab1f976a0e44633a2", + "regex": "(?i)^https?\\:\\/\\/hotclipsource\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d353364638ee481d2666f83d80d627a7050ee49388aeeabdacf7339fc4dda5a4", + "regex": "(?i)^https?\\:\\/\\/btc1qkw\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4b275295d6f854c603f27b4b47342ff2fb5ded95a868e33742e9e5d252395e0e", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "af9927ee15ef912a4dd57cdb725d636421593501da70142a50809e5ba2a92c8c", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "293941786a56f1ceb9d52339997fed815b6c4c4e7e28da13754bfa9b3a154a05", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0e9e98d1acb8c007c4e9015627deed33df288ac8860de57775ab7f03fc7c3c9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b7a51648ef87209213b4e01661bb70a5ea5273cb4e90a1059d4dc8404d36d5ee", + "regex": "." + }, + { + "hash": "8cf78e594f4571c22e9fa51afa7ff3f69c9e83463debda6d63d31a0b8e085b8d", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "091582b44f016983f770f28bc00f9d5bb13b2fb8c9faab49991cfc972969d62f", + "regex": "(?i)^https?\\:\\/\\/jersedjfsdjgjdfgfg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0323f799a2a386d2bfbcfb7d2f8716fc6a8dd906dc7612a5a4e4cea9f3cc8f80", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f2940ef0bf3e88a63ef8152c64ba5fb8e5748ec0e4235c7ff02bc6150cfe5b6d", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "66b68beb240eff2f3c299f27077dda6bfbbccf5b5ab0d447e0b50261ab10b79f", + "regex": "(?i)^https?\\:\\/\\/www\\.ipv6\\.bantennonstop\\.com\\.103\\-247\\-11\\-64\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "44951853169b17912e5b2c7e7cb9e3941816212de9b3a3e7891e590e8511b46b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "3e723f74cede877ed97709c793eac297ceba263474ccf9720d1a82b22ee8c275", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "df8289b94c922ccbe36c449d1eb46a19a0d072c5cfa00cad4708cefbc497c912", + "regex": "(?i)^https?\\:\\/\\/hotclipsource\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "97d5a7067cf961700ede976987def6a31ac7d8915e34df7bde03d215f4b6c178", + "regex": "(?i)^https?\\:\\/\\/hotspotvideosizzles\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "78b590d48224524b9f040b6d683c8a1a72d3da7646e0e3bc71550a68d5eadc0f", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7f58c89dfd39fda473bca86a7b232671f456ea12b90eb8447e4d145bc29f1b04", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinekr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "87d8e119de85caea9eff491f653fa80e72e1412af2a27a97443651a050c5cfaf", + "regex": "(?i)^https?\\:\\/\\/hotspotvideosizzles\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b34d4ebae07a691039e0cb954d99a07f78698c6541c9e3503c2b511f96aa634e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wbn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "30049a765dc501c438cc996dd0d4c457aa0b5125d8ea135c1294d313aa293aa3", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6e25d498996a61346278ff288c7a7667cc297dc96a86b5ed36eb4c864cce7d95", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "16818b92e1d4fa0ece19f5d3fd05d35bed24bed27a9924efad8bcb274196817b", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e3fcad08ef345a334f36b09bbefb45f186c7bc60dcc8e926a3a6959809e78c57", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "66b68beb240eff2f3c299f27077dda6bfbbccf5b5ab0d447e0b50261ab10b79f", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.bantennonstop\\.com\\.103\\-247\\-11\\-64\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9a0b3a1666b2cb6e37c8088625ab7b29f526108a8a05f170899eaec659118c73", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "05b8acab716fd4d02a0768ce79e40a20883fc6bf0c02946a94208db53c783880", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "460788f85649584d40bbf4e692a8364de9886af68d3c99a45a9f0ee9f2716ba7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "7165fd0117910e7b0889ff7992c3726317104fc34cc38043e755b4411f769059", + "regex": "(?i)^https?\\:\\/\\/videodeligh18\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d2307ab3e0f79f8189ee932b24ac41ae85f52a176c5725f73165e0594d376152", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "d1781ac056ee574cca7bbf8749f753e77d884814f547fb721bff498edb116a39", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6d07f93739240f6981fc5e3d4aa82c67b6c676bc3c4d0e315d92409b46100cca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eti\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ac4f4c11647f0b479a8d0d38c67ab1fca71336bf813799aef0d646e5412ee898", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "304b489e70e805a589286f9d0aaa2cf1d3ff41788850a36081041b224180b9e0", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cb564dc4b6522a9855dd730a27f6df435fe9ba951340528b46fc401c44c430ef", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d49df8f1f703feebbee1147b8b734f000efeadf225afb64885935fc7c3ee53e7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1b2796da13241f210696b85db1bba3467f25501db3c4401a52598493013ef504", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ff323eef6964724313c3990bd1529d80a50efe5f65f578af27be1d6d04bbcb3e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egn\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b0d7455d95963784064b3133f800c53e1e664d48ca8190f0c1b95132e95d2683", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a0f974f2b3707d5ee258f70f57a165b4f05d914007ab87b33dfa676563309b99", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3cf15ba9bbe108b952b862d25332f9f14a772ec9668ebfa18e9ace191835c16c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1guw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2803e21a881fc9beb7052410649916fe2c4d1e06ba85a4b0a1b89978620f7516", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e16874ca328e52d1c476f6b2e80ef68d9ce3cab8bfb2dccf1cfbbc7a42eada52", + "regex": "(?i)^https?\\:\\/\\/www\\.gndhcd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "4e8e313bba94eef7afd39ed2abd3b655912164a05640800091d6d60f5051bee1", + "regex": "." + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "6e19d09dc331371e70f5b1f4c171099d1701d9d1af7e36d01565b71136f66959", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d418fc77de2226187d24754c21b1e5253967d4adabd786ee625caff5ddbab2e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "a0657075750649057aa8e93af8f86d7ac97db74473a914c5b941a14f12f52fba", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "69ec01c6b26abe1c521e20b2f479218c42e25dcbe0c93c5a4bd3501750f93420", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9063[\\/\\\\]+entry[\\/\\\\]+register12332(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bee1076c00d5aa165304d7f713421927ace9a888e467728974059d76921a7a0e", + "regex": "(?i)^https?\\:\\/\\/redhotvideo18s\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ccdc9e06f96845e47e2651f232dbc4b7e17995c6aecd005f39f125a528a0ac55", + "regex": "(?i)^https?\\:\\/\\/wa2018\\-int\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "4570b49b8bea39d1fac938b4fd9b167cebad9a4246a105efb3ea493a8aa143aa", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c90e39e5301d42f1907a41d9e177921f832438f0378a1b99bda3312d44774903", + "regex": "(?i)^https?\\:\\/\\/shaw\\-101892\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "58070a9977cb69944d49bead4af908881a96a6faa6473de5ae9ebccc2921d54f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aaa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8df0f91df852f882f42e8de0fd7226222e4850507b08da07fffbe8b144ea8d1c", + "regex": "(?i)^https?\\:\\/\\/servicefacturation\\-edf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e3b21d7d6f24566e474fe5007dc427adeaf5a4f347714ff44337a1872032b4d6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oqr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b6b3da05d78a3e85decf038045bac6986e0078c28284c50dc9ac8a6832a27734", + "regex": "(?i)^https?\\:\\/\\/smgdrh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2d7e381840a216890ca4894d9498af107924d2c80d77684337db037e44d13dde", + "regex": "." + }, + { + "hash": "9d66e710f41b6ca596cae1a677959f1e66c0cd0d9ff0ba48c6d255384af1e9f6", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d9d97950e21b7dfd3db53427a23997e7a086e2af209e257bf5495c5dc9b38f37", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?d3725\\&id\\=louisonbesson\\.com$" + }, + { + "hash": "abda410d0f50ba4b2774451bccabf0bc0607ac80d56e68a9bf9442ba0c495190", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c211e8fb572bfcc28f2a8de1a90137d32fc6b2f9fddcf2693b7e1c9ffe921f93", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a70a49bbf4bbbefdae52ad4956bdc1e9b798341089844e6767ce413aa9f4bbf2", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "105243d10a40ef09fd3f5968bd6ceabf2eb0cf7ac3a3c5c3104230692a591cfe", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26amp\\%3Bredir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "c9409e488748989d0c638d4edb2af9a3a6acfb27a7c9d9f5ddb441469c67ffb6", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "556d647d9a3a9b0862e1301c540f91dd99e96bb0df1380d58d9f0f563f13c95b", + "regex": "." + }, + { + "hash": "e56c4d2e071ee5d5ad857d79be813fdc8be203b761eb5042aafce1272836e34b", + "regex": "(?i)^https?\\:\\/\\/btc1qkw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c742660885f2992076a6dc07bf231a0c9f55734352e7b52a1f8a7fdfde33d1de", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "710bc00fa60a1cdc8f5b6c6ca1e43690135396090323915c0bc613de190437bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "29b31c43d1b4b8d679929bf5d7417f3a39526daac1647fdd0cab67132fccd81c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qri\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "eaf7e3919d10fc46ec809dec82862ce9af992f9a7abefccdaf5830eff34cf405", + "regex": "(?i)^https?\\:\\/\\/smgdrh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cf1f45c2345c693a48ec5f2d3e843e5dfa2fb7251979c551843fac0c4e262d3c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aaa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "65d9a951277f790054f61096acf2aa6154f3e03486469be98c98d21e09ee1ac9", + "regex": "(?i)^https?\\:\\/\\/hotspotvideosizzles\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1e605d8252f6b8ea0f205ee03eb79cf169766437e14b3e10c12c2ec197624d5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "8991cdcbbe2cbbe33f9d1cb58a67cb570249ac8ac09bedfb04699b748c80cfa3", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7789353e03f42e8d5feba392e76980c368c851bcbd92b74487d515cf66aa9739", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kode\\.html(?:\\?|$)" + }, + { + "hash": "6896342c290bd1fd0818574693de54024f3891dfd79662d2e6420af4973e1004", + "regex": "(?i)^https?\\:\\/\\/wa2018\\-int\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cc5a6ac3cab5941fd51b47ba4df7d826608d899f1109e8700c0088cf5cd1d737", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1guw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2d3711806374426b33f21b307adc6bc83c47ebdaeb0c135379e37f5b28560fb4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hyt\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3f113351bfaf45c4c3b64690147e64073bb01851a5e13244edad8cd27de19172", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fe02b3be0ad664793bc4a7e77762a0b4839b14dfb66e3a1179bf2b2033bbbe54", + "regex": "." + }, + { + "hash": "5de01fc484ad93874406afb86f924ee23f54dd46395e119b5338607412f024f5", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "c06d08bca369691a30d5613cc3eedb204ad87beed5ed5c46f4c8f77813dc801c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "512da77c18e2f851d9f25f068180dab0a5def82ac58d4b5e2b018902114d857d", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a8881a468bf97c02fb04a70240002fe4a201fd63751e20e37a3e526b6183b7e4", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2f4f82522ba0fa72361eb8e673571d7e5e71d3a6336adff95dcc5ae687155051", + "regex": "(?i)^https?\\:\\/\\/enrzenstgdfgdfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "85c2375a7d6bad300998bbda68b1a9c382d779bd67cfa1169d7f393be12e3493", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+soumay" + }, + { + "hash": "14b82fc9c03bdd57dbe9599f4ec950759196eeee1ef6915fc571e54aeed336db", + "regex": "." + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&\\;redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+QmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "81450745e22e239e69b920528e6923565bbf9a874299d2b2f5c86a519a83c6c9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "66df6b6b65072e0c23d8f05868f1a49fed77061d86aef00b192f55ea04cb56f4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cmnhqboxa\\.com\\%E2\\%88\\%95pbuxhjx\\%E2\\%88\\%95wguob\\%E2\\%88\\%95dlejuy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "fb8ed9fb707ba092ec8ec7ad25031ce7fb0fef6ed676daa07b2fe9ba09aeaa2c", + "regex": "(?i)^https?\\:\\/\\/btc1qkw\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "b0e4bc81e20fbf3fff14e19ce4d00c5388aa2c15ba94a9e17bc94a83dfa5b431", + "regex": "(?i)^https?\\:\\/\\/www\\.gndhcd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b5246e0fc9fadd0c3060f43b4dcb8936fcae17d1bb2daebfc3536a33f2731494", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "859bcbe96eca223147c9589f97d847455376e982cb4d3c929b7f24995e9af041", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yum\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8d2fe9826916c0338d0d47f8e0c7300c27a3cec13bac479333ccf2385730f50f", + "regex": "." + }, + { + "hash": "229e81904221feb2fa999366b09bbb1bde0068d932d59448c23fbda5f586a72e", + "regex": "(?i)^https?\\:\\/\\/att117338837\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fc730d5abafa54ab6f666f6aa6c78dce46f6cf0645866f206bec9f004d85811d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "0f6d90f456fe753e8bb9b76423aa584a6cc179032b84e284f6cbaeed935d52a8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eti\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "defd9356d9ae643ce03b29ee0a83c510b8d9c0d771c4ecd12ed8228fa08feca0", + "regex": "(?i)^https?\\:\\/\\/btc1ttt\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "34ba86da8d4c5f23ba48e69b5a2865dfb596b87e5cb3e45d70e9c54c64f47388", + "regex": "(?i)^https?\\:\\/\\/redhotvideo18s\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "dd3329d0318d6dc9ea40d5d4025672e01a48d72759b3961e2a5a20d3b47f753f", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3723ba3b87c901b318570d909df785b4f18aad5a3ec007a6561cf197c83cc3a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7424a1b3c6e516779b4f2e3eafbfdb848e634f6ba99a2cce008d1a125ef46daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "347ca01a1081aa3db7d17f44d7399032c9e83bb642d1fd204605851d8d6b00d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "44235d84961b811ea1a1d646d4258c2f7b8a0e7b3c717d28ffbf97d84801e096", + "regex": "(?i)^https?\\:\\/\\/vfdsqq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2a2eeb004c6f5a68498c6f51250f2baad567baf52dea138fc114f96a89ab288d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "ed0e84a7d2179ae9e37419ef6ac6c83503a4350385e478d2b8b443fe228cab16", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "43bb6abd6d3e71d16616b09de22c0ce5bbbb27d60c26b8e945614e366eb47e48", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8878b98e59b9124d137f83d8f345208a0a8d6a561185e4c80bc40dc7081dbdcb", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f3c6f09cf0255934d68142ebcf964de96540b41eef8e951b6ee586def853ea2a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e1b9df9fb4a5fc437177ca053f430be85ef85c3e2633983b43b1f540a565b7d2", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "85f7d08352045b2c433c9272bd51df9ab3f299a0831f27273b925080797fb2dd", + "regex": "(?i)^https?\\:\\/\\/jersedjfsdjgjdfgfg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "752595e41d30eb7c7d49da8099a4c6e0bccd5bbbcff583c7f27cdb706e736293", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "00913af264c3e2524b2e99f1dab87a94684d664381b24ed851a95a728db3b1ac", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "135064b1a3a2afa8471d1bbdd1a0885ade6c4a183ed671f284ce3d9e9dd0d931", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "975c70ec2632ce4dc147f9ca8dbdcffbf822224ed8108c98e05e35c8b8949027", + "regex": "(?i)^https?\\:\\/\\/bgdfnw\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7575048e24e58525e771546ea856de56b7c1b1178f130d9bf78c4f5380cb5f30", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qri\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5c1e841f2e364935119558575f7049c92dea39ec42c5195bf68e6191769835cb", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "052fa8730b9ca70fa03858c577c6ff39f96e7a38adb781bfccd19210641435e1", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv1\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "7fe9f3677c031252a50679089d3d04c7f624999784ba8b4a34827936bc23505d", + "regex": "(?i)^https?\\:\\/\\/jersedjfsdjgjdfgfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9a93aac363b0ec3e51e0b00ad08776eaedf35315055ffc2b0479f27c8ae5e956", + "regex": "." + }, + { + "hash": "9499bc40ba3f32d8e1d9810f0bf8eb90b0bcd14e923c88d541783bdfbd85e4e0", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0f8998b7e4fbbcc906b17ae7eacde58aa76c56dee3cb43f6165ce1cd6f26e626", + "regex": "." + }, + { + "hash": "fe0e7ff7ac3d306ed6decbf82ba3a2b9f557e28c8ad42445c8e049481f749220", + "regex": "." + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "6876c192a250de34a500cee451ab72b2db9752867f39b9ecdd8bba53fe795139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "22b8d7325570feb4ef15ffac2f3c8f42b2e36b7810b234827792f5678a80f54c", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv3\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e3cde0577372dacba929984c3786c69049e2b79585e54d34112b95fdbe7df824", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d9d413bc9332378be08eeee4bdc535563167aa6a86c96bcfe6acf3ed4c423", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "bd8191b7f303366347e77017c232ac3e9e077734362f590e570d8f95446874d5", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "10d686ac0845b8a112e70759bf44273c2d98872600cd6343637012ce2cd616c1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c315e108aeb74a2dab99f8559570edd649f447f36ff1865192c95e47270754b6", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "377d1653d43423f4af00326f97b62ed91e53af83b6bca4b34e337bf52107deb2", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "566a0142b285e016cabcd771b158a0d0ecd53d01616ad0c48c8cb4beb6c452b2", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bc46f882bcf32e7b881e952fd96bbbc42a62124a2d02aaf7869941a646fa0f7a", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1cafe7d214cd00b5d269d4b7fcfdb2f39592bddfefe29e2cfbdb09a50c0c57d0", + "regex": "(?i)^https?\\:\\/\\/www\\.gndhcd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d45d96935319b34397e8debe6f1698727f310ab2caf3c25349b3dbf732781267", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "70340ccfa8c61b594b91b292c1fc7099241948a6ee20e421ba337529ffc09714", + "regex": "(?i)^https?\\:\\/\\/videodeligh18\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "02e7aaff0894a19c0df8090fd11286b2c2ce1024661c4b26e3d26e9a95638114", + "regex": "(?i)^https?\\:\\/\\/bgdfnw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3470c5338bbf86d4fdee343fa67d64fb365fee3e542bd89bb383959692d16d91", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3b56853ed9245347e04aca2a862b80f39436a4bd72ed555a8670e740af6e7549", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "53bf4c05cf3293ee8a1075f8da10ba38956438e5a3f4e9c67ca71405089b3913", + "regex": "." + }, + { + "hash": "5123b446420ca113d29ec6ea214ca2ce35900a9c47c9fa4b49cc01b68258d4d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "dbce391f1a5ed50efc0122482644bc3205791e9f6a44280626bdf6cc32de3d93", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuu\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c1e82ea46b427cfc4ac8ceaf2d2ba4b4a58c3674f3875d95e714e74416638e18", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9ef0a695f4c4fbb1849cda033f029d0e022a9bf3585e859379a7e502074df18e", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv1\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6a8d466c1bfc15725c267af0df814d4757f328405eaf4a020112ff0464929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "e1fefd641b237c74267355af5cd48feb70d2a7cb2c66fd1ef99b7961988323c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5860c9ce74d8c6d089c5d35642eacbff787397affe9614d7011d79526ddd0422", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egn\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c14edcfbfd205df94ad6883ce025816c6eabc9d024e8bd97a71e5aa796c83b1f", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a9d21284154c6053966ba74da9d947561287cc9475337aaddf6d1b6c00bb2b76", + "regex": "." + }, + { + "hash": "08283de1f16d351c28843d382c38d1dbc5fa6b9a1bc1fc9dfb2345448e7c7a74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "5c31d6876286ea6591af10a29c95e17a4ac66b659343016c3961dc1a4b0668f5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oqr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bbc2406d79be4b779d92353ff8d2b1adb844b71e6016a02f140dcab003dd764d", + "regex": "(?i)^https?\\:\\/\\/vfdsqq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d418ecb86804123468f3ef27386dc69959e99faf9b20b5cff43e68e950a7c322", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "08a0b3edb1dce0a9513998ca319716155a42ef7f8bd78ac62e2ae074bd9ddcc1", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "14ab26d7880a9faed678a0caaf33bdbe151017a9376489742623f889261788e3", + "regex": "(?i)^https?\\:\\/\\/vfdsqq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "48227c551ffe537dd6453486a45de712a9b4f11f00746dadf4fd3ab12503d19c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hyt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5784a5172c87a23bb88f033d8830ab1d7116c269f5183eabe4deda666b47c740", + "regex": "(?i)^https?\\:\\/\\/bgdfnw\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e3320e3b8159f262ee372fb8be81837b16f771b070894be9a610e2d9edcec351", + "regex": "(?i)^https?\\:\\/\\/vfdsqq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d0975f1595d42d7931cc2dac56d159b00bcf4b05df0bec22339832cd1e54ad81", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2c549bcb052eb29f64102e3e8f9773ec7dbea5d4a5ffa24aafb5a1985a1dfd51", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a8fade04f76ce39b74ad9a0f7aa473eb8a4efd90c2603e8756e6fce2c3745adf", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b46ae16593866aa4aec95c31b3a6848082053596f43010ba21e3347884d5d0fe", + "regex": "." + }, + { + "hash": "af0af0a3297c5986b2647738b40868412268cd6b667c090353e6d9b6581965ce", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4d2f9c4a167bb87a987c1337431d6c2c74ea67ceebb195f32f55a5e79b2981bf", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9f6f13daccd541d9f904a0537b1d6f96045d719181a4a079543a168193c038ab", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "4ab6d5c7d4486a14f796b78b8f45897aac2dd779452405fe974aceef48e18f17", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4cec98470e99d3015846810748db0ebab4ea13bbc233a3c33cd616e14378b5ec", + "regex": "(?i)^https?\\:\\/\\/hotvideo444z\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cfe27a9363781cd95073c946230fa404aff948f51eb10343c375bd7e881a531a", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2a2efb4468a7e751511dfe17079bcc9603659ec0cbb96b598ffb0702abb99c68", + "regex": "(?i)^https?\\:\\/\\/jersedjfsdjgjdfgfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "87c8d8b447103a2788a4801808f4223a369be91dbe69571b08ebba257ccb81f6", + "regex": "(?i)^https?\\:\\/\\/videoxdelight18s\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c14a791bc745bfde3eecfd6d9826f69bc9b08ac1e48f3ce9b8aef81eb0e5343e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d7deb2cd1d36d6d9ef10d73ad03a804bf87c57373935654dfb266bb5715096af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "865e25a1d6cfbe795f90aaf2150851e5e017f0a1480ed3ef4a2f91377362a902", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4def2e461effe6cfe0f92300cf2051f7fe85c73385f20021e283ccc82a6739ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "38c50a2673b6a687c44cba9f71c91615ec4dd607a67be0c99ae96bcd30e34858", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yum\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0e57346c8c6a29444ab190bc97bfdaa266222852f3d53060a612406de1d6d0a4", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6991ace3e222bd0280b47bdf20e4a242d1cf50efa00ab67f91a2e9ceba78aebb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e5bea40206ea9762b82c8fe8d0985bb5d4a7e7a7dd72386a78a5bee039ff321d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yyy\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ed6c9db9ceb87a112556928b23896a69000be89639216f62189389fdc0f6289d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qri\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "35f8556b69ff374710f3b91f0b3d6fdbc93af5a82eb265cea5a120146e7ad8a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "7d8f6f2f99a6c7dd421cfeac9f141e92c0cea656df3d8af04d1c88d3aa7361f4", + "regex": "." + }, + { + "hash": "485ff0b9ee66ccae464b57e28d38ab658933c96b5e95a6861f2c421637520868", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "364274c1ae391394125cf1d5bff3eea87a827efed282ecb5da1cf0a65ed85a24", + "regex": "(?i)^https?\\:\\/\\/servicefacturation\\-edf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "abb60b6f9c409b2bf2188eec1c5e25a3279697f8f1f591a131abd00a170dc7fa", + "regex": "." + }, + { + "hash": "a96578df3021fee198a4c2a36771b694944db6419160110d7952a46927fe136a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a00516179dcbb417a9d5b8a352143ffcee01a3613ca000276fe94521992e3f53", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dd4c0419de6d7d44127a62d3f99586544c34d650f50b340fbe5f5993da259143", + "regex": "." + }, + { + "hash": "adcf1d9f26fd8b42509842a763067965be7fb32039f9a1bfeea4fbac728f8855", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5fbde49da10e4892c859623d492b490faf43b1d9e526af564d03aa1ccc9d430a", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4cd8a84a775946b716b4fcbdf7a11bbe7c8ba7c217a55077e2a567ac06755f57", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ddbca9620b06a6f9560bbca9656e9d34bb4f6564c4c69bf3cb323efaa56075ed", + "regex": "(?i)^https?\\:\\/\\/servicefacturation\\-edf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "dd514e58de81a698b8397ebf3b750b9f4d2b1d554726cfff10eff448f91b6817", + "regex": "(?i)^https?\\:\\/\\/hotvideo444z\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "20e1b1d5a3c6731d92ea2f3e775d1bde125aa2a8ec092c9f91afc5baa06d2416", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c9cac634dde6a266a3850100421e0ad5fbf8dad645f443a542b9081a0d122427", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "1c387db95097ab48665fa796c4abbfd38ff35f792e3891138b402fec6dc96dda", + "regex": "." + }, + { + "hash": "cec72308a85d6bcb46c0453bd133922f60a881c3d94fb5a72621e12e36913533", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fbe325b73c6bfca44e492c3a76ad293e0388ed138015852e6fb8912cc4c786d5", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1f0a90fc698bd1d9f48e586a46a4ae08c83dece68ede471dae524414e3fc2d63", + "regex": "(?i)^https?\\:\\/\\/jersedjfsdjgjdfgfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "18ef8b4128de59fc37f1754492b8d0a68edd3d3c85d7d34f00c0ecf1e45ad7f2", + "regex": "(?i)^https?\\:\\/\\/videodeligh18\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d916153688de3b019038f3ca9a5313e7d9aebfb66d813afc52e477fe6e0d26d2", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a72dd14cdd0755c99b82c1d51b887809837602759565e0b6d1f53d49abef5", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a489d66ef6ea5c63f79585b8e4878626239cf5c8c1b86b3d604fd0c73852c723", + "regex": "(?i)^https?\\:\\/\\/wa2018\\-int\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fb8e874a10849b77cdc8c85611ffce5952248e946bb49afd03a561c7c6a12e7c", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "73f62878f5ab664281793e8dcea66145f09146ddb34b9aeb0e78230495ee1ad7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+address(?:\\?|$)" + }, + { + "hash": "dd47a699ac5dedbd7380c2d698f2653b31b686c872ce0d8034adb2c867c283a2", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0a189a66e26957dc21968dd951bdf40f531de07dd2426b63987d75bf5b9ef718", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cb3fdde86f9f4358a274fb128e4997b1052d5f763529d30ce5d2887c5032add5", + "regex": "(?i)^https?\\:\\/\\/hotclipsource\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e9bcf79bed828796f0284ffa017f6048b369693c87cdd19388959cc446ee30f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "56bb31798ddee2b71254984cdd6471ec4875455a7938cf8853c8d6c32e251c09", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv3\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5338e4142873a6511c514ad58c1e5a21720db309f6020f3b3ff92cd23c077846", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7a65d1956e2d82dba81d5a014feb72539f19ef6241f1dad2947d82b1cba70409", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ae0112fc132fd64c5a2e4344f61baad24e805656456ce5539f4f96fc06f5a0d1", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cdf2dcd9ce4da52fc64a76a041894e4996b5210fd63e572b311dd5c3404a5f3f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5009e750905ca0f1669f894802091dfa41e052419f5ae48f3bcc699b5946b1c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "75cd061fe660517bbfc17c8722ec8568141d70607adaaf68934eef23a49d1d92", + "regex": "(?i)^https?\\:\\/\\/videoxdelight18s\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cf27980dcca749bae88f0164de1444620def7c7a24a654e9e2b79fb8e2361ea8", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "17785b349ce850c1dacf091463dfc58a244e3baac29f52aebbe9c7834adf925c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Eqrd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3df5adf5873e767a3fefc409d21aef20d3d28ae4bfceb5666f66008fd0f285cc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1guw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3226b111a530d7a12fc26c57a5bb3478f49c3a35e7807da75c830ab0bb2c97df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+pFMIc31UuUcdBdF645Y\\-hFUgMIoBjWIqCG0OAXAEcmM8Iw2TQKRo0qgE9iotJeehtMoO_GbBk5QQ5jG8AY6hi86QhQVwRILHKC6V9ljVdVis43o\\-61a\\-CgGpA7ZFGzj\\-Cy7XcpatU4mMQefAWYo\\-dED5AwIyeofAv68xGH8swTLN3KMDAkYY\\-jW8ubmuSSxm\\-TW5utQ4pFEkc7oS5Fb6XOV508L_mUfJ\\-1NmvJ3k4g2SI7rFEKjgxJ32pfqpA1coH8LZ\\-4_65YUAv0HitFG\\-TLNBTksOCHJyKz_3phHB1gPP(?:\\?|$)" + }, + { + "hash": "84768123f390449c178b480ac85d8cb93c79cb3b029186b9e3d1369525ced331", + "regex": "(?i)^https?\\:\\/\\/www\\.gndhcd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4ca4566168cd9244b75c751e610938f660ecf5b6d001cdcdce2ebc712ea5922e", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5da7e7ab086a75c8cca9b8e572b8a25849f30cc3b75086c836316c51b290daa9", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3ec5c2f0976feddcc70a78a27fc7d756cc27d0dcb11c4df9f0d5364294201011", + "regex": "(?i)^https?\\:\\/\\/att\\-103686\\-1002\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "ac5f27c75849f6ad7b22f95328d1e4e63c64c1e752ae008aa5968d482740d34b", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ca709045305cbfcf2f2d001435bf71c7df44e28492edb9e2e6fc876bb533af8b", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "139051afcc88bb00188513f33f1e1120e836082635f1ed35ed316e930a6fbb77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "912720d40d358ab4e535fb89821699328128da8d97cff3e2b928afd0cfe9a241", + "regex": "(?i)^https?\\:\\/\\/hotspotvideosizzles\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "18ef46169c7a292f12a259081ebfe66c2056262fa54b664779f495fa87c331e9", + "regex": "(?i)^https?\\:\\/\\/hotvideo444z\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0f306716429b4875261f08ad19604a4b0b47362ea9102deaabd8ec13bba2daf4", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4f5578c015685efd247de17eacc685f6b92ed27bb66521b2b47fe543cbe83bc3", + "regex": "." + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7c982fc845244f92a823c10746924bbf8d6401a477f3abf849675903f7a5626e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuu\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dfc6a2eee794b23a3961766814760530506a99791241d24bb10899d0f3c18ff4", + "regex": "(?i)^https?\\:\\/\\/www\\.gndhcd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f71cad824f53391531c9655e2e94d553b6bd383d38b5982b4612bf7cfa9bd0dc", + "regex": "." + }, + { + "hash": "aa098a56d5f07a210ff85ed839e5151456900e64d0f7b60fc5482b5dd26d00b9", + "regex": "." + }, + { + "hash": "061b3b137ae544a552029a77bd6c54fc0d0c498cdad6112cd3eafb42366cb994", + "regex": "(?i)^https?\\:\\/\\/wa2018\\-int\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "bf6b546bc44a7a6ba815eae83e6c8a4fea97470a7a85ca11bfab24171540e27a", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dc2777f367d77ac39643ba0f8d33a84f94fddb68516c18933beab7e7613ed406", + "regex": "(?i)^https?\\:\\/\\/videohotshotonline\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "27c62e5b2c70e7f4ecdbafe62d958ed4d4ba969b84151a0458f583e4b3d62a5b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1scb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "50ca329e1961cb5defd9c529cd9be79bff863ece43306790a29c0dfc4e77f827", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "f9a108839831b0b20935fa81e91b129e3484f3913cc7932c9859079d55b62c9e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "74e275f816cdc33d738d434216a9c2fa7da43cea149f06f2352d0fb4438bca63", + "regex": "(?i)^https?\\:\\/\\/redhotvideo18s\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "66d4feff25256c2c4efc90df05463abec72ff3696c8fdd28fe13bbb72c173eae", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "863362c5a1bb1572f926b68d072f26613b3720d0b851a2a847b2c3601e1962b9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7bffee4fbf3249aaa1d7d2d8c9fcf544e2de49a667980568ff91b57a436626a2", + "regex": "(?i)^https?\\:\\/\\/wa2018\\-int\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ad2d1a8c44908f4bfd887a202b5793535e17603a9b9226e6c0dc83ddcce89d7c", + "regex": "(?i)^https?\\:\\/\\/servicefacturation\\-edf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "01e4a5ce1c48936b0f92ba9aab71a17c154ecedeebb2b74423bfd6f01e00887e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ydplrpviu\\.com\\%25E2\\%2588\\%2595slorcx\\%25E2\\%2588\\%2595trulpghig\\%25E2\\%2588\\%2595wbrtp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rqsic\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb9017d6f873db3d66fb3da12ff17c66d212e35b60cde0ab4710c938d3f99c6b", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5b292d00d2f15451029b73c33d2e03b240096488f359b56d34f5ef883c0f2e84", + "regex": "(?i)^https?\\:\\/\\/enrzenstgdfgdfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "26266219e994ab25d5fbf752ced57e8cad56965e874b7d08a1720540cdde51d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "026ffac332f7eaeb0f557113434d5ab46fe2facf5ecc7cfa41284eb93461557f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3db23d36cdd65df4be4e0a74fab762e9acc50180e9995a285eb7b36988739f66", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wbn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "26a4eb31b8c41af03f46debce5015783c7dc302b4bc970ad769a2162fd9c5e1f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aaa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a265c89f4990d55a0673461016ad62a060bab908d271f7499f9b0f6b376f4606", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9fb2327505c290f03da12926d69ecfdacbe25f042678de644de1a1bdb1c21acc", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "11eb8b164dd4e8d4e127639e564b47022a278dd0708d0cfa63897628904520e2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "da724388074adabc43476de832f00cd80ee15f3fadcf66c8638a0e36f4a57406", + "regex": "." + }, + { + "hash": "84ab279c24f4531d0c5adb50ff92a4cb642dd69df5bf8297a6df9d1476711cc4", + "regex": "(?i)^https?\\:\\/\\/bgdfnw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "93c6737b1cdba07121a95ac44a0040e347b4a953243c2eb4aab9624cfc7a090d", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "afba18150cfd8ed9ed92e5abae3ad32aacb7939a97dcbec1a55c3373f5c151c8", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "27a2de963264b2037026af53ed8d57f983216d326d9bd97b78c05cc85cc5d549", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5df5ea247f6650d5ec2cf40d357598dc94d24e4d023991e5a17e9b9def2b393d", + "regex": "(?i)^https?\\:\\/\\/smgdrh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "c3670825378d6f61e91e6e6299c75816c11812ae59b1508557f80878f2951cc8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qri\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "df5b5f6d04d9bf63f6057b108e325a852b06db255d0351f1e2d54a434802abd7", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "574a969edc3cd55a3bc8680b6a05f9d950d6678f04cbb6071b7e860b21e24773", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "003da819f9b3f48fbad9c3683d4582ddf1caf0cf3dfc214042b9316d1ee92024", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eti\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6157c412152ecd55e75407954360d907a2f8e8a4231c11fe53cd326ee5eb4a27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "ea709c2f0148550a8775aab2cf799593a91e54a8fef1a3f9cef95486bf0ad862", + "regex": "." + }, + { + "hash": "26cc7c1cd9e6a4c36c97f93efc4db94d492ea41f8312e1f807a201fa838caa55", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oqr\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c133d60c5dc625547228e96aee54008deafbf6bc1a2413f66acdcd7771ed5517", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a8df39bf93db1a05471f5e245b87b29e0071da8cc953f33b87b1b230c01e084d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "ccbfcd8cfc128893f3aa6d3ef184a8350c5037078f1736252d76432c221da0ad", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8750509ec5d57a69b74e40d4f17bf540f3fb76e1377f86168f1969615dd39ab7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "0a86622d31340b3874136c52809d51a1699f9f74ed44b97fed2b50801def9853", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "bb7de455348692abc4aa5153c8c87a2ac2d147d4b8c9d8e30f1d3bdbdd9eaf05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+host[\\/\\\\]+auth\\.html(?:\\?|$)" + }, + { + "hash": "7c3f7710929b5a8c350c704f349c4d47abc4138f20553de3e9239234dd737806", + "regex": "(?i)^https?\\:\\/\\/btc1qkw\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "06de79e1baac67fd293746f9e9677f38de52be4bcd67728191f01a65ac880890", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hhhh00PP00\\.php(?:\\?|$)" + }, + { + "hash": "2a88b82ba3c267b2ecce295c2ca7749486914fb1a84f8aca621fb0af1c6ecd0a", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bd76b1513c42b82877346b3bee912d092533d5fd8f7b90dfd43fefee84289297", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c\\?btd\\=dHJrLmNvbG9ueS1zY29yZS1yZWxhdGVkLWRvbmtleS5ydW4\\&exptoken\\=MTczMjQ1MzQ2NDk0MA\\%3D\\%3D\\&lang\\=en\\&lid\\=7dd5a582\\-b0d4\\-4d5e\\-8984\\-002c286eefeb\\&pd2q\\=YTE9N2RkNWE1ODItYjBkNC00ZDVlLTg5ODQtMDAyYzI4NmVlZmViJmEyPTZiNGViNThiLWY4YjMtNDhhNy1hMGNhLTA3YjYzYTEzNmY2ZCZhMz0\\&r_countrycode\\=US\\&r_lang\\=en\\&td\\=dHJrLndlc3Rlcm4tb3VyLWRpcmVjdGlvbi1taWdodC5ydW4vc253ZGFydGY$" + }, + { + "hash": "a74272ede7ec4fa14d1cea925de64031b30cfe3643dfd7d70655bd993d30a79d", + "regex": "." + }, + { + "hash": "4d2f6e490d97b90c221bb22610dc8c2de27a9a7594e44eb86485fdecde0f91d2", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bc3447a3187c2ed942dd906be4fb83d5533e098179940f6e4875a980e84e4df2", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d334f49117ffd64d369be57e6c04eee30f6e3b96cced92c6d0ee94a70dc0cfc9", + "regex": "." + }, + { + "hash": "18014afeab9edfe1936b4820f5914377421485b363e67bec0cf3a22ead24ce69", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "91575f5b1fcc30cd52183a0f1b5672c99b4a7230fcdd6d676af2c714c18bf0ff", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c6f1085e6991daff446944ff1dffd2c089bf9bf1532f5087b3b00a11b95b23c9", + "regex": "(?i)^https?\\:\\/\\/route333\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ba85eeb150a2956bf065a9ca1d5fe010419400927aa47010becbde4933db4645", + "regex": "(?i)^https?\\:\\/\\/noknxzvm\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "909355f7c3dc79fd262406342fd349e40dd49beeea2ece79b72d03ff6db87ec5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "8c998181b986ece03e0e537d07819cbb97de421db77552fa4dbd0554605f0ecf", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d0299b985cbb6380185eede8bd47f7a7d8af7f5b94989a9510812bb1904875c4", + "regex": "." + }, + { + "hash": "5064b9a2b74dbbadd31668c8de39707897388f55184d40a1b0df59cd6515ebde", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f5fed7e04f535cf7b06305f4408c1c27143177f28ddd7bf9d80ac362e631fbbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "8344748b1efe66966a74f22e9b7c41f93b515e786fc2cc5465f31e6883353309", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wbn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2378b615633493fd0cd747888840b8d96cc401e91598cad8a1dd60eedaa920c8", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv1\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d29a94530f4a9f8c8c39d788cd7f625a5fdc17acbe9677d263f988bbfe463f44", + "regex": "(?i)^https?\\:\\/\\/smgdrh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c166abd972d98c5bf89d9321b3b0367c074d7feafe6df27ceb4e0a17943eca71", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yum\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "041f707bef62133e733ee9ffa9d649a50b3b100bc85dd7285ec6d2ffd9dc6cb2", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1a9affc0149f5f513cf74dc7af86d0e2dc6685eebbb57d3b5421a1ef98d3be03", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "e6dbbb1efb4af67b79e321d2b250ec09830ceb384e36a86cebfa1af018fffcee", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinekr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d028600a87f7c7328719138edefa7872ee549209094863265d672525a2678130", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "b0df511c7f56c4a4275889a1ef1cf41b94d7649b9b4cf2e3e3d479a6452b5266", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9235517f404a64e92d90cee29715fdfe2e586563e17a999c6f23b21a25e39db4", + "regex": "(?i)^https?\\:\\/\\/bgdfnw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c035f981b689b8cd6af33374bb5a3691c8c24ff671fd0558ed3338916375c016", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aaa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "621f25152c61164ceb12b211276b5f5816fb3bf10be0d0af68f36d6c44cb17c8", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d569a9ac4e68078a5fc6a9ca11069713046233effac2601e08a6ce2ef7be17fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "e290fec866a1aafd2f8a12c3b5333f39240479ad749c8cac117295906c1ada9b", + "regex": "(?i)^https?\\:\\/\\/bgdfnw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "4dd8649e22c077cc22c3da27e27fed31afd56a970f547d171a8416d396cc1794", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1guw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+QmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "6575619f9b89bb5905d080f239b98daafe97a5009da66d9ac4b5d2cfd2dce9a8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wbn\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cad7fa1f857f53c59284dd220b2d9ab9fbdb7a1d74bf669e064922b4af1ed6ba", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2e008b2baf6dac00e499f0d32300d5cba8ba45577ffa59353b760082910e461a", + "regex": "(?i)^https?\\:\\/\\/www\\.gndhcd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9a12ad54ea8a051910e00d459e9ed4cd7a84ed7ba38041d8fab1d469808e5e77", + "regex": "(?i)^https?\\:\\/\\/www\\.gndhcd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ec638027a9203ad5ace9e02e8386413dbb2b0b2d658f5c7efd2cc56429f82a21", + "regex": "." + }, + { + "hash": "277e174f42f9bc6126753075f8149ef9f65fee6656149c0923a7c440f0a8b9d2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "18c945167189948e6bc437e0fbac8ca85d1cad02962588346f76b39e4d0a3947", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "5231c6e7ca5017a5fca6d05ec5a617b222a3bc3a89fc8914cb3a5b76fa4fde4f", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?check\\-meta\\-ad\\-activity\\.com(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-[0-9]+" + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "1cce1faae50cdaed9bb45ea2c631d0fc38448c93af300aa6de6527a151008331", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egn\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4b27a23a85af4567c1434e364089061d28f9d6aef603500e34eacf60d3cf0a72", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxz\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d34920bfef57b14f047c09cfdd584b171efc52b5b4edd64066d85c3c104c0877", + "regex": "(?i)^https?\\:\\/\\/hotclipsource\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6a7d63e74fd75ec145ea9b7fd2f755adaa713755c4331a7b9e3f897090c54dcb", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fe21f85e0344576a3896501ab8609287cb3db90042c3b7f2eb3ddf04dd1f63eb", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9ee34d0c176a2e74261d49f54f4c654dfb8048908ed5409ad29cef8a6e4d2890", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hyt\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "76d3874fb72d4bb2c26add0ee1949c5b0a1b6e0092e7a0d872ad33f049ea8907", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "63cb02cfb6fcce9943db4e07f5397b0ce6c720aa730d6e2dd3e0bcab62a50b79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "8a462c102e792fcb3a825438477affc44d1a56b9f9098c5eb4329fbab8b3c8b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f99f01bcf93aa8cca3e26ee197c9abda9be3019c3ddede955b70743fd7b4d19a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+B2B[\\/\\\\]+New\\%20folder[\\/\\\\]+don\\-domain\\.html(?:\\?|$)" + }, + { + "hash": "e79babdefe03a8ad143f47d98495d5f52377bdb838d1fb9e7deaf62336cb6b23", + "regex": "(?i)^https?\\:\\/\\/currently117\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5486970705a1694c2d7d27071c0ae5e8f66564948dd10585bc377bcca072b41d", + "regex": "(?i)^https?\\:\\/\\/vfdsqq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fb58e4e5fb9a7bbf64f6f76fce0b2559aae154e58190480f57873ed1c3677a1f", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "4aa42e11f6056cfaec9874246bf668f41dc68ff25e09620439a29d5e29471022", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ceefa8a34b0be500778e0905d50ba7eff7b9a94129f9bd66ee3f47630aad90ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1scb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ebe12e3f36d33261971295e4e124c0d6de6cf675936028153f9de4d4f3e5396f", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e5056cce2a55e6219503bc937dd14e2b0a794c5474a683fa70731de9e55e6acc", + "regex": "." + }, + { + "hash": "a822972a2cc7f5f4e9a3baab768cb2e07fc064c8544bbbf1b712dedd57da2733", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "73011c1424de52f9c18a49925a0758baf5d3c57ed3c51a03182cbb5ac19ebb90", + "regex": "(?i)^https?\\:\\/\\/enrzenstgdfgdfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3cf138043123b6356df2fd7d7ab29946ce72e39eb25250287327a0eef74ae5b1", + "regex": "." + }, + { + "hash": "cbadd1dd3a34f858fc65d5910c2bf60d03779396daf8226a3292accbe8737b2b", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "06460cdbeda0bc48642f1eed7bb609d7ee34c5264f3bed0b5eab431abd934058", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "518d6d8f13e8261afd896a03dcccb58948dfc16a107ee3269ce61b7ae99414e6", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5397ff766f0bcb4d934c8fcb1e1ed0b2cc256bd23be8e278b5cdfa9158d73c60", + "regex": "(?i)^https?\\:\\/\\/wa2018\\-int\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fd46ebbf0456186e01660400763cac291cfee58bc80b471d31f8ff745aadf905", + "regex": "(?i)^https?\\:\\/\\/vfdsqq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6bb328e1fedfd167fe5fe573632ae1fe6378b9425158acac4b4c83cac6758b27", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bd1d2861c578fbd44857885ed2a27fb07eaa00c78242b6b4fe928070535e4710", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Drop\\-Makayla\\-Crochet\\-Shoulder\\-Pullover[\\/\\\\]+dp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d7066b8568682c8ec8f59322fbd7df156eef68005141f6f4574f145dcc0ac95", + "regex": "." + }, + { + "hash": "c0a929b32c766cfdc3f9eb696e1ea3f01810b08989e1d403e4d598b649e28325", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cb7806e4661c74c6ff4418b991fa715d75ddb20afd567447fe40c3b691be5d1b", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "654975c173d98b0b85069f849c74e0e0ab2d1d8c0d2b4e07a9daa9e1d1542e5d", + "regex": "(?i)^https?\\:\\/\\/btc1ttt\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f750d7c164058f6c9565e24f2c9b0576ba0c014ffddb18597d63ac290cd2126d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yyy\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "723f8f9b32648fc10fb2fd3230e118c306bacc1d88fb610c2362b39795d2b33b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d742855605fbf763636a6b9ee2b2e316a86f458ced7895ceb584c19ad00babfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "91822b678dfb468960405df2e06559c7d8ae8f616b294a740e9c00bdff1e840e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "904decf892e5e76000f185f7147fd82d31095fe6974b1bce22cdffec332a2cf3", + "regex": "(?i)^https?\\:\\/\\/btc1ttt\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+1f30bf10\\-24f0\\-4439\\-9614\\-c94afb91e045\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "032309552888b91473bc6d9101bee732f2543bc32ed2217182dee1a22d72ca43", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c39e2e77f7e820a02d9a1b5553b2c96328304794d752ad33e81bd18910312fb7", + "regex": "(?i)^https?\\:\\/\\/videodeligh18\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ba85446b43ca9f5e35000c7093043eccdb2f1624f82e44180ee57184d4c05f76", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "18c945167189948e6bc437e0fbac8ca85d1cad02962588346f76b39e4d0a3947", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "6ea9fdfb0ff158c775c190627c8b7ca8bcd1812d236b747a1a47657b47797f5d", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "90e17ebaa567d27ba63fa68079cc2e608d1ecb173ae48c44510fc2b6020ac46b", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0461a900a1109b4fe0082ddf0fbfd18cdb5b6a63bd610ee0fa8fcb49e1a96522", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hyt\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "19afefa1806566ab269fc54bee530acc27016a63580398eec6d1fd4e46fd26a2", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9b3b8c0ee6b2f7fb73566f94eb0e57ed6af282ca088c179a1dafa9061bbf4679", + "regex": "." + }, + { + "hash": "5590d7e3d76c635bebb25df9a604ed2d527b60b2d41eed171d058c1a6b2d8678", + "regex": "." + }, + { + "hash": "650da47396c9ce0704dba6442eda4be30cc60095061e4fe4d1b1d7dd5caa8724", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yyy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9e9505a1ce362744c6b900ad1bf03a3c83835d249817b852319890876d6efbc3", + "regex": "(?i)^https?\\:\\/\\/redhotvideo18s\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "eae87c5146fd343eb6792b2ef5fd0e0d6b4c46c0c95a18901aded393fc60c6a0", + "regex": "(?i)^https?\\:\\/\\/servicefacturation\\-edf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "005d0983aadf3de88aa230f29643eeb9c507f150ec74631ab3dd044091c94ade", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wbn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8d9fc0a7b86e3eabce2a197da3596153973a5a04bf4cc68e7cb6de06a3afdcb5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hyt\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0d0e2f398aeef80ac2a36a6fe3d2b8ce80c2712f7a3e7c4496d48d4945fe5", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "cf5da55737e60756791f11b0dab50652bc78969c8324fb3403731c98ee6d3c94", + "regex": "(?i)^https?\\:\\/\\/btc1ttt\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "92c1b83e5e7419ec2023dea4bffcb6279efe123a9f61a3d3543d23ceeb465b18", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yum\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bbd6443d26c82a8498c72882adf0ee8ee4e4ee049fdd53def8a397f69bd0dd3c", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1c40db2db4446fab5b79ad0bb3115f064898f2a3945af24f40b69c092999e8e5", + "regex": "." + }, + { + "hash": "a9bedc7e8203447131e044754a919a294a1cec29cd6e907fa43c9a1b9963e2ab", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5ce4603a23c800ea0473dbfc09eb0d519c2bf702a4abb3a9ee7c3a098e9e00d2", + "regex": "(?i)^https?\\:\\/\\/pub\\-5a381a7b9bcc460da566f496a7bd7613\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b609aba81f911b960c52d5561c548cf1626e8984db0967abfefc166a68258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "1afbf7e713f25b6c92a3699caafd89dc1c17fa41ef17dd182b175eb1d70e5636", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f8dda0f2c969064e60e1d67d827c4c5f142d63848f3e5a794b6ee9d034d32b80", + "regex": "(?i)^https?\\:\\/\\/videoxdelight18s\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "682109108ada754e0576f6c320b8762685930bbf78713f777e72970e3a541246", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "80308bb78bee8fd2f1f5dfbe6bf702f44bfaac15663a17ece0fd739ff5aa7072", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a7296e33c05ac7c535672bd610674220b40f70948a571d41c3f1c253e3b6a342", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7e410969138a81ce97f7cb1a56a33d02f2f7f628ba9a3f066478c755edd8eb14", + "regex": "." + }, + { + "hash": "9b87d8dbbef2decd11eb2ab815f3b5f50a0754808f1d06db0af987d27307e387", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkw\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8d29e45bf45006b1ca1e4cab45affb6a2db2015b7e080639d622cc092ece7079", + "regex": "(?i)^https?\\:\\/\\/vfdsqq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "aabbe3b283b739fd06f0cb4919a5186d6b8d1021cafa6cd7c69de0359dbc3a8b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hyt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6fc59d3cc45c9ed9eda1148d934de7db7112f97a2c645036fe93a4089e169b40", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "15aceb09a62cb286fd820fe7bd6178d67b7b8a42d70239d8f0ef27ea2a0be446", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "49e9035544731a7c900a832b266ccd27d1baa60138d7bd98c2ee44ae0cf77237", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qri\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "eac434d370d256cee582c3ac0c74a43175041af9834fcae4c6ea21f3662bb94c", + "regex": "(?i)^https?\\:\\/\\/currently963282\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "03e3222b6dda5e15d3bdc00e36ae35c1719c0fdabfb9547734284ec1208e4cad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aaa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "46a77958097dc749bec9b3936c2b1c07cefe06e1743f443e999d10a014cffc93", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "082c079c9d09a8b9cb761cdb0e8228d3d5671ca126f2a45a0a10a25aa1a8b909", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "770dc84395c3a33230f7c64c8f964624031f6df1c6153f1a36af4d64060392ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nanajo\\.php(?:\\?|$)" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "035a7f1c01700515ebaa8736e78b10a28ec9ae2e8539864dfac6c413d9249268", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?irspm\\.shop(?:\\:(?:80|443))?[\\/\\\\]+z[a-z0-9]{5}" + }, + { + "hash": "e29dbd781058d306a66553471aeb0ecfd5adf0065d9ecce8bd727cbbde1464e6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yyy\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4de0aaf820ac4352fe9f18d9c4da338408a3b9ee6d55694c1f2a08ead775a1a8", + "regex": "(?i)^https?\\:\\/\\/redhotvideo18s\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a18c7f3d2460f226acf7cf376c29f93e6c9cc7dbd07686bd11dc59851b376cd0", + "regex": "(?i)^https?\\:\\/\\/btc1ttt\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2ea074184af5732d8e40197f0936d222c112a91a3b961354e28aa1b13179f967", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eti\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d5697f7469a275e9520ba39d7e79d2ce379449fad5baf23415615c1a1fe7cd4c", + "regex": "(?i)^https?\\:\\/\\/btc1ttt\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "38c89184c0091a5c333f005636dd958eb035b1847abfc53f28a06c95e7b54742", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1guw\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "cf6adec8954d28ff67bd730f1380e88da20da71c9d86072b2f5ef940e382d4de", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b85b55858ca031a68cca4dc74c52e10c398df9dfb0776f2b693f12bf29be03c1", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "c2fad26811f43abb0bc66c21ee1ea43c96955fab77beea9ba686fa0f63b9d806", + "regex": "(?i)^https?\\:\\/\\/hotvideo444z\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5b1242ea1072b918aa9d58edc410f75a43f9bda4b866f9ed896155b1ba7952e6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aaa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "99ad02bfedbe8fea28c80bc0a57378ee2d2c2e4833ba7921587b7155e405a048", + "regex": "(?i)^https?\\:\\/\\/www\\.gndhcd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ad4785c60e4d0eb16197455e425f55fc969eb0933a76715f317e35cdd7ad3374", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "401bbd327a7b33e75165443102fab801a36391bf40eff812506870fd2278e118", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "4503c3f03e98fa97aaa5e0a3e47c5762fef9f63d371e8264070f945b6c8b1f25", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxz\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1230dbe1d3d50e4c2ec72c80657c05ce49c62bbf66cc81a2be2ae3f3bebba4b3", + "regex": "(?i)^https?\\:\\/\\/videohotshotonline\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "794c942db45542eff71877f3272c4f621fe1696ae5e6d64fa06da9f539b8134b", + "regex": "." + }, + { + "hash": "d4cbd1c0619f4d540f1900e46cbe1c593f6d012792e5d3d0b5fc0a37904f2273", + "regex": "." + }, + { + "hash": "6a72f24ad1060a4e2c6460690a3f73b07ad8916c3dec75222daaa26665cb7781", + "regex": "(?i)^https?\\:\\/\\/btc1qkw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f7933a2f45d9faed4a7f63115c4a04f159f177d0af71018f0e782c727ae0b53f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eti\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a1d82dabe1b53221685f57afdf567575ff37d518a31f8a9e88fe8d88db2c07eb", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4e81ffccbd19a1b6d0cd2fae6d9b0c87df116ad7df79ea9adbc031a8c7b26e8b", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bb9cc87982817cc7ef7338536ce194952541cd4964b98a37376e34a5542d72a8", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b6d5e8d87808369373912700319cbb012e51f199b21992d574ad27b12cef51e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1323206453c4c5e3fc35a0f99e197f67022073eb9b62318720dc2823d7af765a", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e8024d18af54b009e412ad417b9af54e938f487c0cd3c431339524e37553892b", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f628193301ce8a9805b0c6e1bde5cefa77ab7a33dd6c1babf38baa1465e028d9", + "regex": "(?i)^https?\\:\\/\\/btc1qkw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cfed64312e4df27b10b68f31b28554958d52249262ec331e2bf36aaab30ed966", + "regex": "(?i)^https?\\:\\/\\/hotspotvideosizzles\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7aacb8a7d30cf1fcc3811d98da9392cad817a3e76f746023b2fad8222b533532", + "regex": "." + }, + { + "hash": "7a70b309d4aa645026d554016b8c36712d665b59f0d1a01f5bd9e924b3079177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "cafde15a482d26e7913d4f202a886444f05faf3075181976e22fd23dfd0e0492", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hyt\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b09f98d2ad01327ce0877d934a9884e566ceeb981a08dff3af7f8aadd0dac49a", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "78c7791d2a456798b557de77899612725129b6a6eb577cca8033d9b1896c5204", + "regex": "(?i)^https?\\:\\/\\/hotvideo444z\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4d418af8fceeb4c7957e23fe90e0c6f86fa3dc2d4a3aae3eabd238321b2046a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b3e8d2b0af3d555669934a1641ea87b94e4e2a40598d57a3133acea3824260a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4398abd6c06d3251e47e1ec55e5b9cc94ab5a47a42a51f9549a4d6bb2975c20d", + "regex": "." + }, + { + "hash": "7db7c415778ea5fd07b0a1e426f9c50354d7a023b84e7c2ac74f61f55b809f5e", + "regex": "(?i)^https?\\:\\/\\/att\\-103664\\-109380\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e36a4bf0eb97bfc0e72c83ed677c0e2cf5aade07cbbc2e3370787b77eeed56e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aaa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "251edea42859b67e1efae95dec06c0cd11b6961e638b7296bf761248be8cc0c8", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "901dde77a8f6ed08ee89c49c2c1107328b92b440116aabe3bcd59ebafc1b36f8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1e9bee2316fe954638490a78a415318ea9b5ec0b7341c71c9ca905db01a2c69d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkw\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "0c19159b0d32b84a3977e2c43029ea6eb52c93ec8dbfc56954c6eceaefc48364", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "013194826e70acf3cf0e3a414b3de061d060661b73a8e21fe70d9facc74582e7", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1e442a17a5669748deccf98baa7c707ec0722c29b4f5e2cf8164f8f30bf19485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "2d38751576c543c74c41be73f4e4cdfad08c2c5e0ed97dbe676985c6811784f7", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cbafbf76707f337ed3929f2a0d4848b8e600db590b97ba21f66913b8e4db1dc8", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "de11a2f615de29df1d63b85a8fe3dcfd86d2a867e0796aedf2d55a1ceadd9131", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dbbd92ddfd32188ac4bbbd50e2411f0d148b2d01579f42d81d428f48b7feefbf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f7e055d658db272ae66eac16062bd883be14fa3c7aa7711032d49f5f471206f3", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "016e71c650b03355e174b465675ae75a3b82353319dbd2874b6d671ee06b92ed", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "035a7f1c01700515ebaa8736e78b10a28ec9ae2e8539864dfac6c413d9249268", + "regex": "." + }, + { + "hash": "8161500622b292b4a3e554715593e194e53860e6e8145ab9dfb9300ee3fbaf3c", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3f1d8849e2be24adb493b678e6e5b69a9a7f9b602f26a7620bffa3ef9930b346", + "regex": "." + }, + { + "hash": "21b5d99dd8ee136ee5c768c677ebda3c48780b8950a4643978ebc623c5760d8c", + "regex": "(?i)^https?\\:\\/\\/smgdrh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "074ea5b873a5fbc5ce4ca9f4b5ce4a397da42cc9e4909002fbf247330476bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "ce3d5441556a8e3508df4de0946f594237de0f19dd4fb17d99c095d66cc5c8b0", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "20316b03b477ba21c45b72a2a4362911ddea953b5778060e89cb8e40989b5803", + "regex": "(?i)^https?\\:\\/\\/myworkspace0a348\\.myclickfunnels\\.com(?:\\:(?:80|443))?[\\/\\\\]+ad(?:\\?|$)" + }, + { + "hash": "78e36aa8213f8401bef5aa2078e4734d462404e31dc06e341e365e7ce3adaa48", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c82e70ba62276eeed74ee9751d2a03a46b66aed1ac5c6ccfbc58aeaab8b37b6e", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "21ad1bea19cbccc46e9bde1494031c5a988262c7fc340c5d9e259149ede0d4d4", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "842039a3d5e3906fa4628bb307b70aafed9d5b47d633e31226e1ad58643d1b08", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "4e5a8d9521949ed0d3bbd7d7c2fd3b8be417c965be76f9ebd1d0036434c35f70", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yyy\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d5488f2c24e4a293b843a71cf09fd1973dba45ef95ff45d1924edd0df1bdc5db", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "15755579d41d98c8ef869e76d738b9b7c0c8846b975bd44bb78232ce0875c7cc", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv1\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "68c81aeb523a726ce0019368a7f677525aa68761e936c74655d193558143f460", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yyy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e7a984527762d9f03f59420779504b8cf95371e867f3e8f80671d923ff0a6da1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1egn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "94436983f4ab5a547c66e8ac035eb8d32f06cd35527ef5678508c994234aedf3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5530283ea3acc5e6dbe5f1f91d36546f11ac40f128d2bdedb7e450a508a37171", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1aaa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9d407907063bf73e7360be97eef6bee4414c357969ec5be7817a2bffeeb20710", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "78aef3895466712cff38a1aec50ba3f7b45ee5bd2be679699241d37ddb7bedb1", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "56b3e1f0013033ff660cdbed311cfc81c688e5c09db0b760763d675acb742510", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "32dbb86b12b1bf99774c69aa9c0fad20c9551702e6570dbbe7a8c39bd1cf5191", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0ac451f2c9bdb6eff8ad66924eadbb03f2445a88f13b2d28ff2530c7567039ee", + "regex": "(?i)^https?\\:\\/\\/nakwem2s2\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6c1e680234ff45bc6b83b9e809cf1a11c2d6812c9a04b948e04c9689264e5aff", + "regex": "(?i)^https?\\:\\/\\/auhdj830flpjfk\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "721f063c6e6275548834a4dd13ec6f23c3ba24c795da805d109c98d2651a0f94", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "01e4a5ce1c48936b0f92ba9aab71a17c154ecedeebb2b74423bfd6f01e00887e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ydplrpviu\\.com\\%E2\\%88\\%95slorcx\\%E2\\%88\\%95trulpghig\\%E2\\%88\\%95wbrtp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "771f9c1cf7cc6aba49ee0a57b64a05f42ac902a36ccb4c8bc64ab13edd4d456e", + "regex": "." + }, + { + "hash": "c79a997d358ff858c3c35459f624a432e7d4bfa428e9342ada63ae0c9637e4f1", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4f08d2515d9b52f378a85faf9d357deba0d190488acc8af1ea46b916ee669b0a", + "regex": "(?i)^https?\\:\\/\\/videohotshotonline\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8f38dc86c6a8339ce2fd23151ee8c108b4bd1dd5fafee18b0754a2a6be222de3", + "regex": "(?i)^https?\\:\\/\\/hotspotvideosizzles\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c9deef5bf13c13d5eda4fac0edd1e5a2a4081157ff9809f68f0db01559b688dd", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e4ff2a43af31d4b3ec22e44ae9f5f23490f0aa4cae47858a5c4eed8cf19b38f8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eti\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "2493eca4cf903ab78c1ec1451d3ebe4638f9200f8422cd29c578884102b4fa00", + "regex": "(?i)^https?\\:\\/\\/btc1ttt\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ce3c9fd9e29855df417d979f540e47d56bd855c274a6bf71b27314240e08671e", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "29ed9b040b51ccd6cb9d7cc3ed8ae441d3be3510b6648a3d372cf26410b18089", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "688c629620d6e62db6af3e516742466fa1e0cea56dae0228f3d4aef40d7a218a", + "regex": "(?i)^https?\\:\\/\\/hotvideo444z\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "01e4a5ce1c48936b0f92ba9aab71a17c154ecedeebb2b74423bfd6f01e00887e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ydplrpviu\\.com\\%E2\\%88\\%95slorcx\\%E2\\%88\\%95trulpghig\\%E2\\%88\\%95wbrtp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rqsic\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3a9597df084c97391fff9ae30e4f5e86827e61a0dc95d5848cfa74edd5c86537", + "regex": "(?i)^https?\\:\\/\\/wa2018\\-int\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0ca6d1d5ab79f8a31a3c90372323ea8c2ed7df2f2e8f8a51c0ab3c471320ed8f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yum\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b584014d5464051a448f659dd2bafe3e503e5a6e8a313f5a91a332183cc6cda0", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d45dc02c392e07db7df231a6b8e7b6fa5a54114695a703b5c8eb104c6f4a75c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "c9bdf3e0173a7937f077e4a0ea30a79620d4234bbb6460143c655fe592845417", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "1350a31259b34d11539fc7a0ae487f82d3aa7eaf9c0b99340c0198feaadd55e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "e5d90a8bc16c59a5202e622a1709e7ef0b0693873ac9433f191415dcd834cb16", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e3cde66e4bdd800ed35284fbdafa7ea72aaf97776ce9b88ab5341360b82966dd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2ea08b2c8a093c07138145b5018d63b660a9966bb38bf91a0b78d4e98be83475", + "regex": "(?i)^https?\\:\\/\\/hotspotvideosizzles\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d0a95bba7617642f903cb218e074c9bc58a908a947b2418d0c17a3bf4198cb5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "e9019895c2a073849cafb1281bd61d5bed9d2d4b8a4d6df85437a92c154a58a4", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "befa39ebf7382e8eb38157fad8aa1b46346e7aa30442c3d5fe99498c6596cc69", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5295127ce7000cb71b62568a04a162898d53bc614187aa6018d97caf72f06c09", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "70b0fb444566f98b234a6c4032fc6d4548d991c2ade1ae3b8bcd4e20c49f4380", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7f43905d479e4e08c75a400f6fe2ae0c64b4a341b2341b13568c5851d9d06d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+1f30bf10\\-24f0\\-4439\\-9614\\-c94afb91e045\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "c8913b59130c2ea02bf2464ddfe6fb4abf458c4fbfeddb8901b759e9a7232ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "9e6c5bf55f20182b28560d6fc43a0f8e7f39b417a15a184cb76eaa6684e109b0", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f84124233894aed01540ad676b6a9f2d9235775dbff239e23341fc2953f9e87e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1d9d9e0c8aa0b716db9eabf037b2440b41bb8738ff8d5432445dfee49d69b54c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oqr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cbe7e6a5d204b52698eb227115428100fed4135a83dea01d056dc6c4775b251d", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "29f65ebc3f3c6a7ee6dcc0480228d3fc35bf3b94ba59d00ee9b5287b33484372", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "852fbc5a4c982b764f59f2446407b0f46e948d6acb534bb624adc9acd161beea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "92ff5d6adfa6f56f98841371e5bba1cd00d2d87e32cdf798c999286a236c150c", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv3\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6f67b625760855bd517b6922caf1140eaa68937e4c9697f3b8b526c1be204093", + "regex": "(?i)^https?\\:\\/\\/redhotvideo18s\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "1c4951b8cee840dccd6debe442ce0874b9f8fc8a298bfa5817d0da9155102f7b", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "dc8b3de8ef5505e8e638b8e7545d544d01348875623cc6bb9adc423a1826510d", + "regex": "(?i)^https?\\:\\/\\/smgdrh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "bf1f31f27992de90b8b5abf92c2cd792d567a9829ed3f80099b2946972b0b265", + "regex": "(?i)^https?\\:\\/\\/videodeligh18\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "209ecc579993a486c5c838d550d8cf29e4944ade1ba80c843f64927df92edc91", + "regex": "." + }, + { + "hash": "6ca24fc024d7f5c55ac0bf577e579129ea87f00f1e1a0cddb57f194e1f2069c3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8b3a7a89daf99198a317b23a2aba20f4dc78277025cb78bf52b6ba76c5d53f76", + "regex": "." + }, + { + "hash": "36d73dd20e440be10437ef6759c53b68ba30004c22aff406f880b000a62d7d0c", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv1\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "98401ba8af45f7ed8efb951579f2816a80ecf7e9b29a704445c6d3fc28a5e41c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "914f8c5b8f778e39f80867528f3fc04370bd1370077c617b12c27b28c784a7f1", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7f9b418347d591863dd67a542cb0f9d7170ab26660a29db2d39c8ed427973658", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "10398fe0926875e9b3750f6ebc9cdca3221df938a698c2040474f8a91906d39e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qri\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "834f173372ab8c886363d9faaa841de493852ce5116ed30281d0959aa450a4ba", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "02180be179225d6dedc7e9f3e91d7047ee2d84a1ce821e94659fe63f64ae9161", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4f577a75abd33633327127ecc39fab52115d2173164e00ea06e16b4e2c5e63a7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c6cbfc81f6fa009607e19bf90f68f3151a86365c0f52248703a2ef0df88b1f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "fc87df21082af4a165fa5e63a125d47ad407e1077ce980e6d5c82e4b99bcc87e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eti\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e0bab80d4a910c32d1c44a4ec4517ea2e3b82579e96d534a5c3f2fe22c41f1aa", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "16d281e33a9138446a531642d79406ed0dbac2890676e9f627aa551ce783a633", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "01e4a5ce1c48936b0f92ba9aab71a17c154ecedeebb2b74423bfd6f01e00887e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ydplrpviu\\.com\\%25E2\\%2588\\%2595slorcx\\%25E2\\%2588\\%2595trulpghig\\%25E2\\%2588\\%2595wbrtp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "af120e7a2a96d12218e915c241843fd53c026ecf77e8e57359623d85724050e2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1eti\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a67bea0f53dcdaf41de8d99023166b7c3104c1688fa6317c9e7e38f023cbcd72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "d878f30c0556d9ce7cc981095d3de714ebb292db9620d6c69e4baefe5bdd4f4c", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5a9f638f2c65cded7d43c0f68ef4b663c5e44bc5dffcf2dd4812d4f826198a5c", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "21edec1490522190a048c7e5fdbb782d582b8b5f8ce1013b37950babc2766bd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "e2f425bac68853d7ee83078d2a8e7e78945f1c863a6c74baddc67a43ab9e4a69", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qri\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6ca2893c58acae7ecca3b75ecb107a88a5e2eb85a2a651ad43e695bffd667cd4", + "regex": "(?i)^https?\\:\\/\\/videoxdelight18s\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d7f6c28300327fe4e765c00f5bdd71d07930e30be41f444a7a2bb95842270", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinekr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "20dd29eba6902cc081cfd884c994f1e28da74fded18225ea1da9730ae440599e", + "regex": "(?i)^https?\\:\\/\\/videoxdelight18s\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c06d08bca369691a30d5613cc3eedb204ad87beed5ed5c46f4c8f77813dc801c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "d028600a87f7c7328719138edefa7872ee549209094863265d672525a2678130", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "c918bc5273716583d29e05b56fada93efba12d2132cab39d79d13b3a2661954f", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ca5909f2cf163f27dba64176a9ec1e7db734699448f2f040367da24416f0c301", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ehr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "7b18a9c017a4e8f024576e4713f5e8f34540183b63d05dc70e3cd8ccc9ab527b", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f6d5de7fefd93c355f299a7650920c72d37ebc40a8e31df380965e9820699921", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ecf1ab6d0779844a9928b00482907de1e3dc67796835dc00dc163b39339f7b64", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1scb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "14a3ed32160b59d53f9c733a252d18e4ab10ad0f74558ceb48d1b8d6453f0e12", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "625def07fee758bb432fb327da94b8af0279b24f69801af5581456aa6ce67992", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f007ac336dab20f44ebb59e12843e7a6994dd586c7d3c247b2fd1c1d5c82512d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1a2dcdafa710e92a9768bee4d4e860649ab9bc74b11c77032e660250ed0c134b", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "eeac881656d1ba07828a407fa1547d300d81ce428c036dacd3e510eedba79a90", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a85f1b64704e4e17da771b80d994d3798a36b0e7330d0e38fec6cd462e6e5bc4", + "regex": "(?i)^https?\\:\\/\\/bgdfnw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "da16967134e789d99f120ec884c40a6cf1bf7d942f36e97df75d88ead4db562e", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "efa2e3e5145be842d099550edcb57da154c0e10ac6ba10bcd469eb1d29183151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "5b0d496842f462e01af704423ef610bbc8c8ee41bffd0f7dba1393996cd8a116", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "04d383e21950c7e7829eafa25ee2239990c92db3f99af7a83b8bbf11d8a21621", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e71636c4f2633e6ae8694ab130bffad77113e22bb613fa59f42e32e5b21fc854", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1982f649055ceaa20a8b11ae5063daf7e65132488f2d8c495dda03537cdf81e1", + "regex": "." + }, + { + "hash": "5ec2992735bb8a6303bc4a3f4a83e66ffc8c5435204b9c45202a72a01cb4f213", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "492b32981dbf52a0efa82148f90700cb19667d93f2afaae97cf50849c7825085", + "regex": "(?i)^https?\\:\\/\\/btc1uuu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "689db713b4a846f75e0539ac5ae89cf6f3ef96bb31b670ef0d8dc03123ebb39a", + "regex": "(?i)^https?\\:\\/\\/btc1www\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7e096eb168671bae1a29a1f113ab7502a81fe094633d999b398c7c48a2e67e1d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yyy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bde39b74bbe1778eef6b431348b387d0925b77f6a6fa49a30e01ba9e08f3062e", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "56ac29351061ba5579cbcba7e256e2edc5aa8e07121752e1b86caec68391d525", + "regex": "(?i)^https?\\:\\/\\/bgdfnw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b8dcf4a7a62247a99736fb1371cb5feb3d6590c3e8c5ef405f9b7734af3708c1", + "regex": "." + }, + { + "hash": "6ce4109c3f4a8d7a4f3b2f624737b05497993791f3baed103d6d563a702b1bbe", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "78a7d29bb5f0649cc963dba62147967cc9f49d1a84e944db4e26f792be266ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "9d65320b236b26a7b43a656b61132ad0c65e6e91c6f19d0c9a77daf8acc49e51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "89b4ddb214b6a1f14b64cc4b663df638cb4436e232ce24bf1ad156114915f51c", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ffefae9b9ff6490bfcb240d60b663ccd347c75d516525c8ec58050d66e853782", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8ab1dbd0e66c8a08e7ba4a0d647a816a5795ee74f0506fce6392a8985218020a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "ff909aa3094e61ae6e02ff98a86d2a6e5c19a5e657745dd2bef40d5a75daf3cd", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f0d24e1830d42ef36cecd77d665485d2f11356dad6179523ea7287b5da5997dc", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "377d8b7ab6569fa793efac90ee6ad9ffb180045963fdcab244e509b6dc305f05", + "regex": "." + }, + { + "hash": "ca1d98144b1b5d54fe313129405e65cc8b45c71e093929f503c41e8d269c7eb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "ed420cf0426d433699d7e8a5a65a56b27499796c93cdda6e84893d5cd0dcd486", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinehome\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "53636966cdc2262ef56304a3f22691488defe2d4d38046fb5973a4cd248a0fac", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "40c89d4ac4852ed0f352b0cb76fbda961c90a4cd8cf63da1ef507fed50b7f813", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "26e6bbd121c3471d134a9137778002a42d6cce88df4c94b038922fbddba5462b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "88a3be321eafbae6acec957651a373ff79f582fc4887dac0f5501491bfc6bed2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yum\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2853c63939ed6c8d7bfbcbdb820e0f00d20770cdaedafc60076d63b0a59e3eca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "afc06682d75e4439ca0c2aa5ba3492cf515058c40a44625b1c8097ad88249c1f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qkw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fbb0f9021e3baab25e35d0b8fa8e63f9e8371533b048eeb553f0dba68169eaba", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "325ee0232dfc49b41cf64708fb94b7a90686c1c57c4f28f0ad22846d3a40f628", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7af6b4b7267047e1ffa997c14c6aa394e202d3da49f32e47245ca83bece872ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hyt\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f5e2482136ae39ec5eb3a4b9a6cb99561437a655dae1ce16e171db6b7543ae27", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5852b9100fe2730bfd47ef9e59042e969842dcd8e73165b7d409348b8b84ae01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "3226b111a530d7a12fc26c57a5bb3478f49c3a35e7807da75c830ab0bb2c97df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr[\\/\\\\]+cl[\\/\\\\]+Ez_9vhHWiQTz19hT2Uos_L6r5EXaOKCuvFcYSEMfG_dkSHaaIRoTNLNUasM3fbA5mlBJQHWH_IdSd2XopcNcrk3kKhsFQixHweSaaVpdivm2YQYcg9wHBKG384D3dLpllbQv\\-zA2ZxeabXvl2ijopQY1_zVz8AnN3hIKe5TrrE6hmvkaFBR\\-guA1PP1YL3qLdFuFEI6XlNTiMkGiP8kdm77ZqV\\-PBd8wD_LSLJiZHD29YHmnSuvOXfF6CeKHqp95Bchd2ZMg0ifGOsplpPP4TJm7Mce0afO7LCHQV7R0MrqupkpLHg" + }, + { + "hash": "9ef877df21f4a9a4d6ef4851716de1c05b327fa662b55ff9041c062767621e84", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oqr\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "56b30932fcab92e3db0e91e7fa55fa1b1e39f472bca05904fd3f97ac9df4ff84", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0542879648310bfffbf674f9556381fa7a8f42850f32425dce73c1c643e1260e", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexxz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "41938f99584b6b523654adb592f99f7d8fe2f299968cecb302dd80894e9e221c", + "regex": "(?i)^https?\\:\\/\\/jersedjfsdjgjdfgfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "94c5b65fb47c190fba8b85c33205509badbf3eaf833b1c783ffaa2f37a4a7ad6", + "regex": "." + }, + { + "hash": "85594fc21698ecbfdaa4b13ff39415f98492929309bdc8d4fc54ce1289c00aac", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0df4b664d5040ef8bc381bb3ec568fda3cad659ead5f55e4975effd1c4419", + "regex": "." + }, + { + "hash": "abda1dca4546755f40e7480769f6f367527115f8ce7497a1711f28f4c8b52217", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "9c8a91a62d5416a3a71fbb3bbcc1a4537ce2cacaa3ca0927ceb62a7962c749cd", + "regex": "." + }, + { + "hash": "17db8d3b6874c3c548c4e78fa77d18adf3fd5f64676ab32afbd1f0fb7ae32c48", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "36c22c5af79c24e7f57a0b9926dbbb2450215cdf89a19524ca3e3614ce770727", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fae5ce04fc108857b38fc90a8b87bd66bab924c47b69b32eabb9dbedeb1d056f", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "34d48b32e2f3a3ce73d7d4c3d8c3da6ad1fafb6f9b0a5a083496b1995ea3b3a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "0d1c049caf319d5255dd50b46750c7368849e23a4fab26edc0ab6242ee0d1fe4", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e70ecbb4da28d99ad5624d1e9334b6d13e84596dd6abedfc064daf67c0a9c36a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "2bc7a59573de400b9b47f8a056df6dcf7717d0fd2dc94ad530421e86c6b6c911", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e787159f37e64a5abf40ea63d051dcd650e55f42858686c849cb795133b4f0b0", + "regex": "(?i)^https?\\:\\/\\/btc1ttt\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "66df6b6b65072e0c23d8f05868f1a49fed77061d86aef00b192f55ea04cb56f4", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cmnhqboxa\\.com\\%25E2\\%2588\\%2595pbuxhjx\\%25E2\\%2588\\%2595wguob\\%25E2\\%2588\\%2595dlejuy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qmbkmqk\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "adfdfa62501b66f9f1117a8948f866fc6cbedd9c91800366819fe98b99ef4924", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "df4153069f017a2129a6d26f73f7fcaadc8b15799bea030cd3d26ea513a521fd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "85fc28ca289912a4503aaf0b836a8cd8d9b72ed59a05ce304d035bf187529caf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e765bb81b84ecfb61a16cfdc442e5afba332d4fea59edf4ac908609ac189fe2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "bd7642635a87909c177f0506380b179d6ebe93cb6ca3045b8a649f4b95df86e4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "52112c89a1691376531f29fcebd05ca901510a953151a2a491263ff2fded02d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "10ee1b065b5e26e947bb7d660925ba58a1eb0580bfac6be3d29eb75b8286cfcd", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6e38e771e9fa9794f9d55a6e0586f6114df9958dc4c8cff59f08012749929e68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "aa8fc3f4ae4c0aa61f3224d1ede696a83c53a870800600b3643889c6b923368f", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv3\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fe916148f41153e6bafb8ff5780285f4ac4cf41264eec9bde363be2803880727", + "regex": "(?i)^https?\\:\\/\\/co\\-rnercard\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bf6b03e447bfa0820cae22db06efdd78c715895c6d504d8d3766ccbde81d6948", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+click[\\/\\\\]+1\\?cep\\=Zwhz1OYqRwBNbVIGJezHiUL8qeCC_w8FDUB0EauIHY2i_PNJ_W96ioxvydV4j0ovlvVqmvWcW4Mw7x8Cn4Ejbhzo2bXQJ4VbTwh3t5RJ7GHxUC2wsU0C1G_zvH3kAR\\-9_PolAJZALh2mvVtzUb1nm5oOjVVvxGYZCaUSioso0Ubiud5O\\-im6Od9XPZiNN_6YgHLXLxt\\-qzFtbKtEB5OFFZj9TwrA1HIgZy4G1AUwjebwjKYhuY55M6mzT_JLZD7c0uGTpvTHEWimk1Rs7g3EDI4enVZReZCeNmf8JjGvRjexFDrrNXgw0b4MP0fJ_HgPNlkYzf7bk4RpraYsLByRZeZZbTVhmqQ2PgIcKnK_fAR_ROeBldGMhIZCMuckkCswOMCK495ZAbQM6VdZk1Jeybh1I\\-9A9hmX3wBExcnuFEVzrYXGJXHMP83CdFyX5w0qywppYYipih4uxlvRj5J1Sh3Xi672dkMeutKjdkgB5U0Vt9KfYSGkCGxYcgfNH8BZ\\-20g45RGWAj8bmA\\-FY1XWEerZNKvJ5YMx4Jwsyek61TpcrR2RzIRWWRZdNmUCP89WoV_0WaBmnKEQ7qFCfj0ySAAOQbERIgGTzqXCB8mQIC7sfEPEW4Z3zY8yhsafD\\-r4LwWH6$" + }, + { + "hash": "ad50227d78dfb60145ae409e9ff228631a06133dcdb42977a17edaa48268f487", + "regex": "(?i)^https?\\:\\/\\/wa2018\\-int\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "974e5343435db73bc64979e6ba4915999260b888c5a3fcff68ac3f3a6c06670d", + "regex": "(?i)^https?\\:\\/\\/smgdrh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1bb55c736232f6b6c339972bb2200dfaedb7c183ffbcdc9f8c55c6c87ebb3ef8", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f933eaff6808fa9a12fc7f8a3a22a90459d8386dc6ce8d5e7645304d3115aaa9", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "22d59bd41d9663763c77f9062f96dce9905f9d76f51e5a22876dc3d931ebead7", + "regex": "(?i)^https?\\:\\/\\/videodeligh18\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bcf28eab7380bd27a536dac8e71e784236af3db0a3e5d6e77deaa50cc33ea6b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "6c61731fa4c1e263390863e0324a1b7cf02f16f7a86e0711c9ad8e44182b916d", + "regex": "(?i)^https?\\:\\/\\/btc1yyy\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0dfb261ee96e64373d459f9f5408e3b5bd572771596e0e135bde0b9bbf42af22", + "regex": "(?i)^https?\\:\\/\\/nernzejgdfjgjdfjg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "94f24bad0db5d5beb0900b7f386ebbac8e96edce4f7abc7c52a79210aeaa9e9d", + "regex": "(?i)^https?\\:\\/\\/btc1guw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bc6317a8f041557b7b744c20efd46c40b9720c957d78c35e90df50213451918c", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2916e8bf9eca29be77262b7a83943d7a33a81aa52a4c0152e990e81a1780c4e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uuu\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "48e5b029e1017a6fafafd37d2c2547d276aa2e3e0764c4435f5a339a81ae22b7", + "regex": "(?i)^https?\\:\\/\\/videodeligh18\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9462446269bc55d63409d6238808c2dfd15d7b3c59713930c1cadf31b302569b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ios\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0659db970b3c9f43a7bbc8c59a79e331b370ae719c36ff2b3b3440ee10e057fc", + "regex": "(?i)^https?\\:\\/\\/hotclipsource\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cae52ff4ee6df02d0da07d30910fa1814db252b6bf44494d5c702052a642a49e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "09c379687ddb548374429f7adf8441bc0e3c38fd543c7f654ddfee068b5b18d2", + "regex": "(?i)^https?\\:\\/\\/btc1qkw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7a67d252e3265f8354721c5fdf5143de4584a7646018d737bfef5b2329ec202e", + "regex": "." + }, + { + "hash": "626dc38cadfbce14dd7a5a47e6747989618ef72b30b0f46a18f8be5311dbcd1a", + "regex": "(?i)^https?\\:\\/\\/hotvideo444z\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2f184b5940ddc835250a8a676febd3ff4f1c847e6a8fb38f901f843a87d7a3dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bb7de455348692abc4aa5153c8c87a2ac2d147d4b8c9d8e30f1d3bdbdd9eaf05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+host[\\/\\\\]+login\\.html" + }, + { + "hash": "7789353e03f42e8d5feba392e76980c368c851bcbd92b74487d515cf66aa9739", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kata\\-sandi\\.html(?:\\?|$)" + }, + { + "hash": "493c08ecc07e8256ba36373f5df32878d3b00101a2923ff3d7826bcf44ed9661", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f22a5b22c13264d218cb31f35c3edcad168b2814f24023c274970283bdacdb1b", + "regex": "(?i)^https?\\:\\/\\/btc1qqq\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9f80408fc15e99554177ccee834265c8b294d08d19524c8ba54a877960004bce", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yum\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fd42c5e2c65436e6196ca07a7e9ed3531b712ccd5fa84c4a3e9a1ed45dfb496b", + "regex": "(?i)^https?\\:\\/\\/enrnzengdfngdfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f294a401a0447dd12e50192056b905ccf79f4b7920f7a8cac0ef6d51d6023524", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3d819e646f9cd3882689092b4cf17c2a99f2b67f62e7e536abfe3fb63d377d3b", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "875014c8a8383a5f00de8bd4f6ed27b83149e12982c9a19a733bbd0a33a87d27", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2b46fb0cc484a7b7e030fb009e9814c1f116bbbceefb0fbc60606fe765b88524", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1zes\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1f9e954c74596e9d56ef1247006b25bffb5f9e875cdd48084a033ee808441a59", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wbn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "633f8cf72d4ad523e1fb46df7c92ce0b15cb6c0015b7d3b9ee31e063532badc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "38711fefef977c5bb1f9c5d93c391d3c0e2d58ce6d4b64d32a747940aa712c3b", + "regex": "(?i)^https?\\:\\/\\/videoxdelight18s\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c0c93d32125661117846f439182efa83cc7fe80e3469f376f0efe7622e134040", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1scb\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ca4b3feb6c185fd094ca8717b34956832c7701a1bc03b4f66c745aaff693bb97", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8d64cb8f1a3b61225597976abc3cc864311e2f47481d9249e9d34118193dcb9d", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b1966fce6f348bdeb27ed936f08ea5bf240407a616f3de1f6af3adb66334", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "373ab2b43946a89e1a4b4f82ad2144d7054a6cfac64883f76ca97ce27098d03a", + "regex": "(?i)^https?\\:\\/\\/videoxboxv2\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4b437ba15ff626ff87486de4ee7a37af75c9b0659ded9c85e618fbc0c9277119", + "regex": "." + }, + { + "hash": "85a1df345adf93f070602d580fd23326e4a1c39fd838535da62fb2857ac49a97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "fdd51a4fd8d11f690b933eae9b326ff9bd3ca4aa30e80c34db32b9b0393ff974", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fac1de1e845bf5b9e6d388e74da7a6e9e4558acebc9aee178c8fd55ecdba60d8", + "regex": "(?i)^https?\\:\\/\\/hotspotvideosizzles\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6b5492b78add1700810b9d2780c86c1a14dc86e399f9cf936e3f069ae001e015", + "regex": "(?i)^https?\\:\\/\\/videoxboxv1\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "727b43cdcfcf7afb682c090e558d0b51b1086e20ac407a2770891978111d5367", + "regex": "(?i)^https?\\:\\/\\/hotvideo45ptv1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "df737330f1ef210d2b3402a82b0f899db97e08c753cf5f336887e97fa0930593", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "815262714cfe8007db7e12c1cbab95c2669079842538876cfe016698c6007bdc", + "regex": "(?i)^https?\\:\\/\\/videohotshotonline\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f46825f7abc8dd7edba83f9bc0773e824acde88f9fc5e02ad7950b1f8fe794e2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oqr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fbf8f921140b6939251c94a2315128cab8fe1a34770340f48f4a6a7f72b3927e", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4a66c5dcfafff8cd36b2d99f52623c949bf8f12e5d772e0e8e15fc978fe383f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df70979bfa0257f799291b899e2e63b778709e947bc54e3d089b6879dea6c71d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "94a1cb464d3d61944b6f24013abf1e1d9f60e26dee38f3bbe508d9861cc30aa9", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "953dd29aec5ee794eed129951b5a7c13f5909283ad8881cf129175f8b227ce8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "a2ae51c8b6fa501d57a2589aaa1062d137f2546cf6421452acd46781bf243375", + "regex": "(?i)^https?\\:\\/\\/btc1qkw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "09bd5c1f33ec5a2c15655d5b9849824bd1eb15c44ad45c9d7e4ef67682dfe54a", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "579306f1d191b772f172e2edfcc8765b43f08cb229fa95ce3fa583a8eef472d5", + "regex": "(?i)^https?\\:\\/\\/hnrdhd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "7a370b8142f3a963230e483cdc737af9dda6bc3a5b5e0363ab99d020b2d9478d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "609c25995043ac3869628b82964874e740f9e1ea3324aaf9ed2a40130ac35364", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "e2a9c6d6d60cb5231b0778da1bb7109a6634d1894be27a04279e99cc8ec8400d", + "regex": "(?i)^https?\\:\\/\\/nhfgjb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "81ee3f043e49cb736440f0d4775f14af664b5439048198851df52b40dd27e4da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "f68d57a2e1f7c9d35c14a20c2aed92d812485757e02dcd5258ec64f85e9a5a96", + "regex": "(?i)^https?\\:\\/\\/clipcrazenetwork\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c21656ed34bdb88754cf5ec27e8f66b0fa5c45e69c8c3557033342cd00e3d628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "88004c61b1f0152cb98cacabe2de6d23bc4adbe0f5176c58655af67200499566", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d2096140492f648366607eb736b54bcc2eb1ce190aaaabb81730e43c6b8596dd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1oqr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "32b1eef331abfc204233632d9b3dc1c4ace65fc41a5275a935154eff21942566", + "regex": "(?i)^https?\\:\\/\\/videodelight19\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bb370c577c4845e191e0df84677c718fc19033484512c2c95646819ef85397ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "2cd8dfd4c515ea8aaef283fa4d9de6f573f89845bdc0578937106d8236ba344f", + "regex": "(?i)^https?\\:\\/\\/kedfksdkfgsdg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0e5ebbcc686e1a87f563867842ce62b407c647fdd961c5c93de6b975b10f5b2e", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5e4a1575638ed8f36a685b1751941c8cd0ac557a674e903303fc1ba89ac1a775", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1vvv\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d972dcdb03e728ddd60e1dea8f11acb76287d3b85ede50322bdf07643da4f5bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "e8c57d1d5b1a2c639ac1d7ef5bda446bb216f4e5e2969524185b328519e09279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "779a115058a96a2de4fa1cc72cf027f674f3456ee7b96834ce5436e2e567cc63", + "regex": "(?i)^https?\\:\\/\\/videoxpinalv2\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "90cb01feb4d0a7bb7af7133121974ceb808a8720002fdd8fdac8cad784cb3a9c", + "regex": "." + }, + { + "hash": "8e7f57bab2b4c8ea0ee2401ebf73d6bd95d4594029fe79ff42ffe03b0cbb4b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?be23d\\&id\\=librairiedumidi\\.be$" + }, + { + "hash": "4741c40562a39df41111d44665743c10f6eb89fa6f5306373f437ccf72040dec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qek\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "72d7ee1b24711495c969e02ab3f7a5f06bd6870ecb6ac0b424a0b1120d04f688", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1guw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bcd31ca832a077d7a0f2df0757e17fcb588f145bad7cbf8b95f65d06b26a7698", + "regex": "(?i)^https?\\:\\/\\/btc1hhh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "57f07f0b8c428c2e20ede1ab3fceed3736fd5ab1e494c4e8082c87d6a385643e", + "regex": "(?i)^https?\\:\\/\\/videohotshotonline\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e160881a129aefd25d9b5cce8a7f95d61dd080c5696299a53b696b8bd7bf2ff1", + "regex": "(?i)^https?\\:\\/\\/afplozor\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "953dd29aec5ee794eed129951b5a7c13f5909283ad8881cf129175f8b227ce8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "21d915410a4d7af46c9dcaefac09622b244d79d3bf5b21a1bc8e212b8896f8fd", + "regex": "(?i)^https?\\:\\/\\/fieryfilms\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d120edd47bff4c5043e8d155c6cdf2f69e62aba6d2cb64d813d3f759a1f863aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=librairiedumidi\\.be$" + }, + { + "hash": "70e9cf9c845360c47349863712fd4c0b3c781e3a27feb137e542ff0d553ea241", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bfs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "07884c666313726197a91cd735e4a1941417abdb7d5d77e44828b8bd2778d6af", + "regex": "(?i)^https?\\:\\/\\/btc2yir\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "26cf092f224e58e48d1b5f264f7d6fc4af494d54cc4aff4fd064fa7554b38222", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "291b08d7dfea55430c30fee38d00e116aae4fc4154cdc7c664d0c38348afff13", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "99a68ffb02fec7936445fd629a1d91febcc6b169e7f6109911a2462b88aebcc9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d6e585d62c9500029a48a5514433d8b4f1a025d62b064b6c3394d0d1ea8be6db", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "83e8c75dff4efa0e68b22bd4ac9b23268fb49f256ae63d064ef4a5a8702f32fb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2472225f3da5f4743284598d93010f94bc657e45adb35d87c186da19e1860f13", + "regex": "(?i)^https?\\:\\/\\/btc2poq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "86ddc496e5ad0ff0fa625e6026cb88b4045d53b21bfdbb991e7b86d7cc2426ed", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "de291e6746061e63b6cfdb9dedda0416257bae76e324b8c0cb831922d93645d9", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26amp\\%3Bredir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "df86757b984b85066c571157b3102a81b471cc41667ac6b33a281fc20fc50ad9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "48025640a8d469c024f95b6bfb07184035b1c53cb495a8a80029044e5d101441", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "52a5d44ad78e0e46033f267a5b413787a3340655f24632e6cb2fb3c2e549492c", + "regex": "(?i)^https?\\:\\/\\/btc2qhq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cc8a1d46c08f4df18195a8e4dc2bc1a866ef3ad060ef5d7a932e001563fcbc19", + "regex": "(?i)^https?\\:\\/\\/vfdsqq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6af88c8d3e440a884755e1c8c2a963dcfee0282070783e6c2b36542cb7325a4b", + "regex": "(?i)^https?\\:\\/\\/btc1qtu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c2fa8889c8f001841ef14ddb54cf6b0eeda2db29984fd907ce4b88b26c6e4836", + "regex": "." + }, + { + "hash": "f5fed7e04f535cf7b06305f4408c1c27143177f28ddd7bf9d80ac362e631fbbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6c232860fd1ed81f8508ba9c179f395406ca204858d9a8588150d6a09f433572", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "88f10b1482f479aa662a169e4ebbb807654d8c8e302486edc17970f11ea816cf", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5cdd0596ff05e653d1ef7c33a790fdd7e5e191e4647310129ebf97c34ae539d1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cf1fe4143bbec993aa3870684cf775c5207bcdfa63819fba123ad91116c2502e", + "regex": "." + }, + { + "hash": "806961ed410477925ce0e1c06f357b1e9982f5b20ab4742bec04ddb5b8482c33", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "525960adfff9e59eb25718ee080127d09cf85bb60026a60322fc5a96b20ae03c", + "regex": "." + }, + { + "hash": "93bf872a1a01ca68cfb67925667510f71e42b4f0729d3a5f4d7877b6109f0bcc", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d5a20ade5ce9bf30348f16fc7377e3c0947a18152469a6f81dafe8ffd387d065", + "regex": "." + }, + { + "hash": "048758ff9ee07b9b962904d6b946651be850a7a29aa561ed0e2fa70454cd646b", + "regex": "." + }, + { + "hash": "ff6a908d5f20102e1319314ae3ac94ec6deffbf198ccbf55bc57c2943c65abe8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "50d45c50932bfd0a52d981f18d88984d1dfedd2762afeb9089bcdb0e96af65dc", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "19bf46977284bd887432af80e8babb1a048a2344020024d89282f717d561797e", + "regex": "(?i)^https?\\:\\/\\/btc1qtu\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cd7369c33d43376167a25534b5254d5d18895ab1cf5c2dd8697238889d3878c9", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bd7a0273d834a282a94258266bd69104fc6f9bc451dea876a4d4c46f0160f370", + "regex": "(?i)^https?\\:\\/\\/vedatismetapo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "41419d2b9c93749019d5df623c03fa2af9c2a75979c8954a43f4ae93e7bece14", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b8c55e3da59bbe73d130d0172ed75783c95241e635d18ad9afaa9a4681203846", + "regex": "." + }, + { + "hash": "5b07183787bd118820c134c483887df55766c3e81d74b1750d24e1f76e34166b", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4b0af5906a449ab0be997b1fdf7e65d0d458037b4cc8825b6d238b58cfce7417", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e82de9ff140132ee0d68b11ef7e0f99e7bd557f7e062ae63381a9204aa96a868", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7f92de2a9a6f696c8feb3c4d60e2c8ce769333cadc5ae343fd5ec8e19c4ec243", + "regex": "(?i)^https?\\:\\/\\/btc2eth\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0785f46b7745b1140320eec5b06c90de9ad22f8723a9dbd560fe97bce143d360", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1bd3080a461ab0e765828a55224cb4a7f958db4016fffa278c88820831276b93", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "31d4ba96e9c0cde7cbea22090812041ed185babe2276c9e990ca28bee7e5f3fb", + "regex": "." + }, + { + "hash": "27457af115ee91763ddb65f418ee4fff178580a6e375fb25036121676699f6a4", + "regex": "(?i)^https?\\:\\/\\/btc2yjs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c58cfc3dc001035b945a460b229b748a1a2b7454bd3e7ef3e7e19cba991f88d7", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "853cb256a7a472483759efba34c17d633ef6f61ce92a041a17f997578c92dc14", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2ca5c41dcb0f321f720f71c66dd7ee0eed57c4cabef5f2d4520050fcb552f52c", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "daae43caed6d35bf926059aa9c4c6a44eda0b5792c84d09aa7f79af352d6cbbc", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a1ea86561d834468e4532abee2b6e95e48cc9f1fd003e8210c4b65da4d48e156", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "e7a5d97bf49b7c9972425e8f917685f9c9fe6cfbcfb273887f949022374f81c3", + "regex": "(?i)^https?\\:\\/\\/hfgjtd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fe39925620eb446a0b4b9f83810369f676f79b924ea221d5a8813633fe2ad52c", + "regex": "(?i)^https?\\:\\/\\/bdghbx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9d2137d5fbe338dc2da8dfc539cd578d0312820898167444020a01f94a8a356d", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fded4ac697e390b1de4cf34908bb9fd5af79931a0d6bbaf2e937a6d2e2b0b30c", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3376d934104e3e689aa716f78c82c57df8a06ba94359b0efeb4bcf6f93123cfa", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d0ccb43c62fd29236336d0aded714aa67a15557e956795ee53d4b28bfd4bc079", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c20fd7a650163342783ca79da5baa960eac60277dac10c8f378be7aadae43f4f", + "regex": "(?i)^https?\\:\\/\\/bdghbx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bbaf953383ba607745d890612808a54814a85d5daf8d4d05d060d4391be600c1", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8b2c351617f91bb65222194622224cc660d0007fec00371e59ce56f10bd2bfe3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "258e2f210e5a8b5e9825100c4cf820ed509c961a37cfda88fdef5ffb21795dc6", + "regex": "." + }, + { + "hash": "de503e2657a8fe1a4ce3715b10b8ca317c09d40f581050dc4e666148a11f30ec", + "regex": "(?i)^https?\\:\\/\\/btc2poq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "60530b07a19851099ff7af9d239f375a621603b2526238470a7aeb939ff71aba", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c76899a73afd32858c443077dca44a7697ba32d7cb23a24b0410f1b2dd880bb1", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0f308dd86c2b4b54ab9e1a9e9719877f7ca8d2abea0883e38921cd5ca1b15dae", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "28c14db5e05a208376949ff7ed81438b1127ac6318493ea9bd02419a429ea76c", + "regex": "(?i)^https?\\:\\/\\/btc1qtu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fc3681b29455261cd128c25cf51337303ab7760df44830bbdd1e4f5db7e6ba9e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "44124c626b1b8f9d665364a2dcd8b1b36ec0fb69ec9479c6d5953fce0d7631e9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "05a05a7a52bde1a7ebf4520e56333f0e1c812d2cc00d8f803e2c9e2c6a1cb0b7", + "regex": "(?i)^https?\\:\\/\\/sign\\-com\\-att\\-page\\-105667\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "758fcf4974315ccca88e19c01dd8b61da365bb6609ba669002a32ca9b0fc915b", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "aa1549caabdae4954018109603545dea70730346799c9c0ce3ab04c246a0d0bb", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6a30f2dba41757ae602a14754daefbe17c48ecae74b073335d4338c8e7e09d94", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "69938fcfd005b108d5a8d5d62a00cba750c588a6a8ff3e44ec68b41a9f2821cb", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "53d9d3824c846f8df500cd7eb5df9a67b046e8321dcbc6ee8a1f74ca63d27120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526amp\\%253Bredir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "c6cb20b2fa2e50a1e1322c8b37d615f390f16273bb61cd2b59e3c17042c445f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+O3YCEI(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7e009789760b940da8be3f66ca9bac8c18315caf36b847669016efc0c70d628c", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]+zone[\\/\\\\]+b3b32a2d422265cd25c3323ed0157f81[\\/\\\\]+_dhI[\\/\\\\]+index\\.php\\?login\\=YSouaSoqKkBzKioqKioqKioqLmNvbQ\\=\\=\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null$" + }, + { + "hash": "ff4c512f4f296f3ef2535a1631b595856114f90e5c93c2c6b689a436c4092797", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5293145b917e020b33ead4c6d791cd7e7da490e3fe502d7254ef59055d606ea0", + "regex": "(?i)^https?\\:\\/\\/bbsdgh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "237cfa94742e273e826cceb9d5ffa8490c80f3a0d1c526edaaaf090f6b3e041a", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "caad4845bc68f7e6bd921f68e7c51cbd9dc30b47f5ed827bf1f3cedc8cfc694a", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "853c2712c327804864a7ebe33e14b7949a7a712d01a7d21568d5684079a658c0", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3ccb7fc9d07c4595502e73d3721bb8c16eb84877b9ab73ad547df0493d4319ad", + "regex": "." + }, + { + "hash": "0d2f679baf43f01a3cbdc9c79cdd27eb9051959c0186c83c8e0d87e67e2bf04f", + "regex": "(?i)^https?\\:\\/\\/btc1qyk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "eff65a2f1d136d343625d08b47a82f187246f3960d666a1c4f9e4aaadcc86fe5", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f720d1eaaba83a8257f91c2a03ab35d03f12973b661ebefdf7d112643ab5ca7e", + "regex": "." + }, + { + "hash": "f2aa415e5b87ef18870ffbbbff75868cea52941740e7161aef77fa5a5fab903b", + "regex": "." + }, + { + "hash": "372313096ee39d57c59e29bb2ff441e76d5b11ca4d51db08abc7fbe0d7898f90", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1facd3312dbc5eb8f65c79835062f8dd460e8551e1fbbe3e543354eb30ff31d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d69192dd2ec549dab564c0c30420c02547c94f3f8d3d0a6cfae9442fad3dcf52", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "be58eae92ae2ce3729aa55f4a4cf18710cb007db80dea58913e0a42d17e95b42", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ddc03383ae41385f8f517c0bacb623ac8aefa8ecac7ebc4ac093d3aa397f50a5", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c0464317453e7efae23d69b1bc310ca8845a35d02b3f5ecc5c5ce503b00be934", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a5f5eab8330164dfc56100a076526f919f7e723b6e9f8f464eca34fc328d016f", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9c1cead13d701d026c819dc92b34d7c5f29b3dc1b9551d898973d475ca9b0fa4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "875c8ab4c2322f442dfa8420b9e926f35c9f0fcde93826bae1695345a0427a40", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]+zone[\\/\\\\]+b3b32a2d422265cd25c3323ed0157f81[\\/\\\\]+_dhI[\\/\\\\]+index\\.php\\?login\\=YioqKiouaSoqKkBrKioqKioqKioqKiouY29t\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null$" + }, + { + "hash": "6a1fda0fd5dfb5429f3826a75b52b6cc1d14942b31334b5c7a72c0a39ab0bccb", + "regex": "(?i)^https?\\:\\/\\/btc2yus\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f72c10bd260d003b088662e7ab528841951563c24d2eb568a595be80c0eb06f1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eb4ea5e1383b1b1fd4f7740506b79c3f85d742d171baf51f00a6c4fe4ab9a894", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2dabbd5db545f9c86d93d090fbeff543ee4d35e8d559386a14e600810a797f4f", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "32264ac812f7904ee977fba0b2e4089f2ea2adcf0af0855eab41b990057c2b80", + "regex": "." + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&\\;amp\\;redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+QmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "8d305698ad0cf2d8662998e0166d49f672a32c6e43afb234581b04a301a771f3", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e771ca43ed5ca4813d32e413f24251c6e765bc9b74ad351c1ef42abfee326ca5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1euq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "99b3d27ea41caaee5cb65e3ebdbf3e6848e991497d11af95dffd5308eb2244bd", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b4c242912801104b6c9093d8f83e42a8c7a72228d4377395f72f65f57728e601", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4b257fb2d47262ff3c2d7bf3ec0a993ee7c0a60843e33ece2d71422811fe996e", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2281826a2dcf5b77d2263292438897a3e75dd5ffc60ac5820eda2d2446317115", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{4}\\.krjmls\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "5bac1f0ac05bc0f3511f329af7e326b4ff24f68426a5630fd98238f0083a3fd0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bbe4014421d978db4993fffc9ae536d4cd71f62c6e7bf32984b2c2240e6feba3", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "264508dfbeda6f2e11356591135e126f694c40209cbe10ebb16290cef639499f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ad78ad88f11d8371f9743abfb8da673b894d1e238406413e11e4947d3f277834", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fc31df7e050eced4c3b280cacd033b24ac6ac9ab0358da1c35ac1f387e4d16be", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a45a8c7e3bbe4c7bc141a9d10f19c49b26f7b518f436d2769ec140432d055698", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a733592a817991753f0773ef04ce5f16807d06d608b313250c313eb2783c2783", + "regex": "(?i)^https?\\:\\/\\/btc2qxq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5eb40557e4f4fadc3780c0beb792860653ab48f3d71f88fa815395d6dcc2ad4a", + "regex": "(?i)^https?\\:\\/\\/btc2poq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "433318f5891ce52254b7dd1fbaf58ef669a8fa8fd549e1aa35c290ae8c5fa8ff", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qsr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3b2c0cd292a32e38e8338129d803f99150d3b0bf6274fd5d01e14377ac4d2979", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e62b9e6d2c81d3dad2fe74ad0786bcb7056e85a5c02dda3a372ebd85aeb41a7a", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6f0ae3b797cc3acc66181b2f0739f6115bc5d8c9ee969781b037a037e0fa37d3", + "regex": "(?i)^https?\\:\\/\\/btc1qtu\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d3b79f41e1bc79494011da0c1eadc02f4d9066d61da009de21f5d4b494ae780f", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c97fb894aab39939115297929f4afcdf15c040909bcc2742c92ec4391e3cd4f8", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "27c482ae5f26d7167d33eca03478c02f6766896edd50d782ec4ac24bff9fd8de", + "regex": "(?i)^https?\\:\\/\\/dasdas832233\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "50ca93eafebdaf1f52a7988aef808ceb7313b410b2dc0109fc487f646966474a", + "regex": "." + }, + { + "hash": "f7e44a7c2d08c8c221c2cac8cb8b5f1fb164415dca70bbc9db94d8bb39ce32b4", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c1e8f050bb72d055d3e992487ea5c7f6e00070e9189ac3b8bad8ddfbd53df1fd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "37a709cfb0d6d64ff7f084ee7a7ea19e8f601e0097535f758f4590e16fad8642", + "regex": "(?i)^https?\\:\\/\\/dasdas832233\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fa525ad1bc7c5e6d4bdbbade6901897efa93d9b6031e78b3d71fa9fa111cc213", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "21ed73252c6f05f5d38caf882fa73b08d4ae66685cdd77d000bcced9ef3919f1", + "regex": "(?i)^https?\\:\\/\\/btc1qko\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7a53d88477c605290b413772ca30b1b66bc713086a43ab7de6e72c27a15f43bf", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7ba7cb5d1ed2a0e88cf9e636ee95221b9f6852f4cdf7a06e7a2ab8b61919c8a2", + "regex": "(?i)^https?\\:\\/\\/dasdas832233\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0fcd8b3dccd079fdb9235ded14d08eb18bfae0ddaf601fa9be70e28db287eec5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3fe70255cecf72e93c64bfe9af43399fb1b223c2087386b29f73fccb4e4decd9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5c54e312cc7e5ae80d70103728bddaa0d48965794498502a6a7be2776399a417", + "regex": "." + }, + { + "hash": "067d0834e5bb053957ababb05a0413ea4ce65d4922729e74458b0965c3ae8eee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "f8a6e6d51ba89422afbb90ad80e7908011b73ef2b276b80420f8285e1d716232", + "regex": "(?i)^https?\\:\\/\\/ndghrq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "82f73cdb93c32c9c1458d7860279c971d53ffe3045537c4523b49e3d114502bd", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1541525f42f6f1df5e6e0d3f1d02400c51b32465e09d795ca493d935202e6ece", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "d49d0406cb5d799790e63765cd00391ba217d141cb0099f9a109dc5d3feb72d1", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6e04e247c580f79e2116b9dc972ea8c347818ab25699a87498c13d455b404426", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "09c99fe24dee8549ae63fe2c3ca86750ec2e10da7a2c1892038590c94cadb74c", + "regex": "." + }, + { + "hash": "4534190aa4eef2a176550f7cdfd49bcd645ca34ed85114f67a20f5321192a85d", + "regex": "(?i)^https?\\:\\/\\/www\\.152\\-42\\-254\\-92\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3a0e6b85fb37d6b1e51684e2f2b7805b7a3ea04eedcb762d971005edad16a04d", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0aaa565411d08b9a489f947e00392bf23a829c796bdd4128ed44e53d7fba80c6", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "349a6ec4d6be3abc211057d5b192e700da729008ebb473d0f359370d9c1a3806", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "daf1b95654d8477ab85e4b8e490fd0eff63d8e46b45bb030dd1eb59939acaff4", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d7b74169f88aea21e8009a56dacf6415773195d09ea3becfce7befd492c6e9ce", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e4936ca0408221fe764a1e9d13e8fe1981ecb0f26c93b7b36d5282b9b2ef0487", + "regex": "." + }, + { + "hash": "6cd9dd44afac7dd60427ad871ea40772c8e2d7f85182ce27291cb5bb863a4538", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6319691117ebbc094a4ce3e8592f8a5725d99cb266f53192470c335fd097de2c", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a43ec224545cc5091c02a9e8173c09841355d9f441dc27861777feb70ad557b7", + "regex": "." + }, + { + "hash": "5ed2b1dbf96ce0f1a0140a8fce85b17f36e6c1478433209f3f2db10c7da4f546", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f1f01d44ea3c0319717a260c98ee281423e0c61fef17a237ca0487d403863691", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ddb7ba94a103d6d3923a522502c413d6961fc908dde576cc64848a25e2f3e3bc", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "94cb5a21e7062f964f43bd7ef942bf9f4907a27aafa0fd5916cd4640eb422af7", + "regex": "(?i)^https?\\:\\/\\/ndghrq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6f38d56009cb27a9f7caf25f7d1e98763ae60cf78054c9eacad414edf0fe3f76", + "regex": "." + }, + { + "hash": "524473ef620824c0cfed19ec43b5ec324c728431934f529698e43a09c76cb38f", + "regex": "(?i)^https?\\:\\/\\/btc1qtu\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3a6839a7ba5798d6732d28d01537773039aa36715075eb4ad4dd8f1694b55615", + "regex": "(?i)^https?\\:\\/\\/robux60kvbs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b38018b39ade7112892e3586acaab65c66d8340c3ee0978f034092d7c184b78a", + "regex": "(?i)^https?\\:\\/\\/btc2qhq\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fcac82f769c365caec39f2cd7baaee8c1b565707c1a964363950a929028c90cf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bc3077435feb2e14d2925ad8781b2307397fcc7807c85bb5b67e23ef6396bfa5", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1c67d728a877be34f16ef5e54c229e7da47083b74be5dde5c03091196032e8fb", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5395a32df0dded8d8c5747e949b8d9ba8ad28915d52c41b041d41e29b1373cdd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8b0c0086e21bd32ab414dfc155bb89a56b263ec1771c2beae5cf65dbddcdbabb", + "regex": "(?i)^https?\\:\\/\\/btc1qyk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3e7da4f041226662d687343914879d0c06461bb38b42d03310a12c90c6937fed", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]*\\?login\\=c\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.t\\*\\*\\*\\*\\*\\@a\\*\\*\\*\\*\\.dk\\&page\\=_dhl\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null\\&vcnt\\=null\\&use_cdtimr\\=null$" + }, + { + "hash": "c16207850028ef33d2f116559148e2f634e74645f6127042a04e3b5c301512e4", + "regex": "(?i)^https?\\:\\/\\/hfgjtd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e439e00735525d026eded65152f4b42db5c29df6ae9ab29def1ba8e80bb3bfdc", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c90a0b7e39ff46c94eaeb9f08eba4a0d112e4899f23ed751bb9024f36f54df1d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1c0c8cfae595d623715daa7832dc4bd6fba29b0fd9b04f26c0f1f6c5f43a9cc1", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "29423a18c839c81c53e3c8a4e3904e8bcb3cad83f8f8535a87f363ce8dd5048b", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "905f3e55cde793188ce8f98ad17ad27a346ebd739166a0b79232b57a1bc593da", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "be73afe2fb79f47c4490425cdad2c0e28806a5ea72349384a040968a37210588", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6c1cbd2f65ecf5a102d47b3533d640be1d672095d2d254f370f96cfa7f8a4e18", + "regex": "." + }, + { + "hash": "2b534c8ccca8b40e3f5e444e59d86138af19b32cab5d56c61946808e59a54cfd", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7ecf731a65498419e4d1dff528f7edc8fb2f5798192be34a56a28508d2f91c59", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1euq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "314ca2ea7863a860e97d9b38ea7d0848ffe235d9450c04c9abc0e8df02f9a5af", + "regex": "(?i)^https?\\:\\/\\/btc2qhq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a849deffc2474eafcba48983c54b18eca5b7a4dc20425766b5b8cd5258e8f97a", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "49c0adcca90795d130e010660df88fc5222a92d1c4bffa4a5d164eb4029de268", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "52395f3e14bb0d6d9e08f4f7e6fb374b070481ebd8382cc0f1ec7f1c7aa3eac9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a2a7c5e2ae9bf05bbcbe871b0e54ac13b0d4376c16e6a248262128b33b5a418b", + "regex": "(?i)^https?\\:\\/\\/btc2iax\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "055d94270269c002ef6eba431e8aeda2b6998dda1e2748ce2c5012e4b321484f", + "regex": "(?i)^https?\\:\\/\\/btc1qko\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ad4366531cd27b54f0171f7ad552ec2b060a1348503fbd8a253817118662eed7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "492be3f2c3a56c2d14348576c1ee73ad9ceac753924621e89f6fb4f1081bf4b0", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b46e678f618c306a76141ff9253319b1262df55780581c1c3c7c2ca6e4503a18", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2827d42db12583a2a96982951ff7e99b382d61de3b43cc150462526aa8a73fbc", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b4a247d6f2ac422a1c38b9ba69449ef8e1738f2ce4e50d3d4eddf702808507b4", + "regex": "(?i)^https?\\:\\/\\/vedatismetapo\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1420f84d1e1963dec7e12a31de793616435e7a1d5ffcd3ad270388f62fa85b86", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qsr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a06582796640829e4f9546b43a68eb5f16a2be44e4fb0e76a360c44f4050bfeb", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "a9883509b2d659a74d310f55c8389aedc25eef7a1cb4662ce0368e9dd4ed9e53", + "regex": "(?i)^https?\\:\\/\\/bdghbx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "33e17722e5e81e6cbda32d1ec489a85c1fa1562527f9cc977f1bbaac6083938f", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e82941400bad4758013832cd00f89d2cdb1c50c35d215b58b80cd9369f03530a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4cb28d223295463aece2e8d8518508574d1b09cf1b123d0563175003e8046ada", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cb8bd2e073ec9f038635f3be9bc3dbf370f3b55ab16b311cebfd2f8014377972", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8c6235cec7455e922a9125e2785d23e021500c8d71316ad5773b1b21801fff54", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "74ec5ea98abadede33d10e9c254b95491ebdd41eb245fd20a3913a2fc4762bca", + "regex": "." + }, + { + "hash": "74f39b536441d68cbe5ea6731d445ae90a806245a4121204b6058d75a62107b3", + "regex": "(?i)^https?\\:\\/\\/btc2qxq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3f0a819394a17c89644b46f04111f51b7ea94b292a4305e3f5248e29ad17ba81", + "regex": "(?i)^https?\\:\\/\\/btc2wzq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c3bd8cb0f781884fb220b2938c1d7cb68cd7c9fa4bd2d8c711ae431afb437b88", + "regex": "(?i)^https?\\:\\/\\/btc1qtu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e32ece3bd6fa57c10f549c213a9d2d896cfd102a9cc1a4e1ad16fe9ea6fe7046", + "regex": "." + }, + { + "hash": "32256bb262f16f641931109464e33a04fea7b5cfd9a6b6e786afcece2cf2c38a", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0c2745455bb87b2e1c3f17dd6ed492616bd5b306a4959b62903db758e57eb42d", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "014854da87b5e7859b2d9559f1d5803e731e0328671782cf8a99e80cea0c8d46", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "770622ad33b91b7fcf761a30f848f1ee7366cee59290a73f7d8aa8cdad8664fa", + "regex": "." + }, + { + "hash": "44293469588812b9402ffb9915849eeaedd931c65bca5c09b1c65f4b6ffbdf11", + "regex": "(?i)^https?\\:\\/\\/amazon\\.kvfnpxluxt\\.com\\%E2\\%88\\%95ttuvlv\\%E2\\%88\\%95iqwengdqr\\%E2\\%88\\%95mxzzm\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "3334c009a36fa1ed0a4ec176abbd3388a2940dcf8789666f7c8b390042fd929b", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "70c706942921085e5f2a5ed21ff2f2efb45a4dcc73c0c27c11844ed612741c9a", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7c4ecb94a54ceb5ff0448291f7b00a5c676ec28d2ad3908d59894abf4b029144", + "regex": "(?i)^https?\\:\\/\\/btc2yjs\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "db79a963c131749dd2220ea83b6297c9f2ef01eed16fe78d0b55d06d00e77639", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bee18213959fa8fbbf772b15f78180ed2911917082448efeeafea05a94327672", + "regex": "(?i)^https?\\:\\/\\/btc2yus\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c9b489042d9a95a23baec5a36990b3f340fb6e4071fbf90e0cde42e76e5b01f2", + "regex": "(?i)^https?\\:\\/\\/btc2yus\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "10b92ede91ab8e0ad4c1b85fe1b12fad20d5fceb1f17fc4e59740e196c4b5632", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "02bb8b2294edafd167e8ee9b317fc2e5ee6a445170f5d1cc7809237bce5b249a", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "82f4ea778082db500b82a79d5f6fb73e218fa22d8ef32f0fe174d8d522c2ed99", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e8a82883c28059a2d73a336ba3953d2b2a4120b201a2b38d15fc9767095fd7ac", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "97de627aa94ed1a44eb67bd889b5783338fbedebd0e88cc9dd4ff3dbaf2175a7", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e72e03d9eb838a62de990e8359a69bc917c9e276702713dfedfdf6ab198c02bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2etq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b2ad56716c930e42ad83e0ccb34e2ebfadaa0d454b41b29023e3593a404878ac", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bd49858faad7c653a55e3b0a7b28603e1ef2c856ae28d68a3f2093c88104d033", + "regex": "." + }, + { + "hash": "56755515ca5d5bd886a511f9d965347bdc8fd99ca37c422456d6f8d15c393914", + "regex": "(?i)^https?\\:\\/\\/btc1wxh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a691aa8c079d8061ef4d941b31a67e3bcc6d8e6d231d993976d8e827bc6b40d3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4cad45003d20deba9bde8a7fbe57899ee67bb007f6014651262e39b945698846", + "regex": "(?i)^https?\\:\\/\\/vedatismetapo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c0c992fa67cb54aa08a8f2845089127c29ae4fff49539803615838d465081e41", + "regex": "(?i)^https?\\:\\/\\/btc2yus\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dd4e7efff39de7cbf94344050d5582821284037700601e0995a92accbd5d81c2", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6e5e6dab875684dd2ca07f21c6e3935d52b9e9f4f9c237adaf993d7e66e286bf", + "regex": "(?i)^https?\\:\\/\\/dasdas832233\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "01af1ab912827e1c88ae617fdd857afc69c10ad6538f1f5a4aab264e9a9e787c", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8fc284b19e3c4c30529677384d4e0778ce2b74dd512ee045187f93b78ecf8a36", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b435fc06769c82ea0e27a204c90d8bb0cfb1c1b49cc9d3e8ccf21a12019f33b8", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fd1453bc6bb1ff06d195c03a200bc75b02005023f3e1a7e8a50ab35090a42dc7", + "regex": "(?i)^https?\\:\\/\\/hndrhd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a833893482fff5201a642b3be7f950f8e020ae62f82efa534a7ca5a0f01ed3d2", + "regex": "." + }, + { + "hash": "a971432fdd20a516148a202d18bba1355160b2a088b60c7349d2173b1f917b53", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2etq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7526dfcdecb04f2d164554a737043c75dbfc4b5d0c65b7e4431ad7f7802c7f0c", + "regex": "(?i)^https?\\:\\/\\/bsefna\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d26394b6ab9975c426a9c416ab1176942f2f9be793a8181de9dfe22b158ead09", + "regex": "." + }, + { + "hash": "81153c41e1c32536cd3c38e78c6ff692259ac633c3bce6a83e31d9ad420bff23", + "regex": "(?i)^https?\\:\\/\\/btc2yir\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fba85971e1004f11f18dfdffcdc9b601d335ee5b4f12f9bcd51a982b523ed214", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ce9387a74e004d4b0e7c58e681cc68ea52af6369fde31f8371d4b1631860d374", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+payment(?:\\?|$)" + }, + { + "hash": "77925f85669cbf0bd28e0e3e7dc37761326381cfae97f72a4c6fda902b3df096", + "regex": "(?i)^https?\\:\\/\\/btc2qxq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "05413fccfb3e3ebd8696122fe719beddd8ec72b517bed753ce18f9c4d31dc662", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1euq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b73c8350cc3561c68c7070dc38daed3f3f1cd8df0f9afcd8853514dfee0414ea", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d0d6b56bd88a74f0c45f2786e0444f0f1b46ca576ff1f698c73cd3e6b3270cd9", + "regex": "." + }, + { + "hash": "e1a73affc8d5c07b2e3accdf9062354bd8b87c967af3a6cd08c7b0f88c3556e6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "86436725b6bca170a9d715820aecdbd4b2502430f8764287ecb1642e8b712e58", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "81460cdcd56335219469c2890d94476eaa21781a9ba26280c5c433afe2ac7763", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8d5492defd9d238db4c8d06c619c994d95c6a4434949b101b8e4de2af450ec90", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9869a6d47495802ed06782d7de31315c3bee47e75ddebcbd3ca509f425c0962e", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fc733ca55f4c5419e4d9a3130dfa5b21f1e79d550dcf2f94b7d60cf13e2d6617", + "regex": "(?i)^https?\\:\\/\\/btc2poq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7d0ac79343e01e5c6ffe90626aa1abe6d08220487dfe4d6907307e8f42756917", + "regex": "(?i)^https?\\:\\/\\/btc2poq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fbd0aa12e9f7f31e613922925cfe46ea2c053e144de8bff7fefac8cf5ab87d4e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qsr\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "41a67542940d6a61244692f982a26e413c53eefeafa64117baae228960f618fb", + "regex": "." + }, + { + "hash": "f72008a1c1dfd38c15095f0a7a0d817dc49a915daa6791cc7ccc203433294f9d", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d7c161350bb818cbe02dfeecfadf81f2e27c465666acfec827c1c2ad0f8324cf", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d07e7c8f7e9775fd66f4cf719149cf28359e818ccd07cf2cce86f8c1c49fc17f", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9300862c6fdf137e645735b26a0700bea406bd5e2b23e399eca7b4d03d19b852", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b90db282e470a61efe2b89ec7ab71470fba2c949e867a259c98e55ed43417606", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a8125001151bd8c09c957a963b2d338b2850ba66a5f02acfeff1886147015864", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "692049ea739434ce3b397c4395564bdf7ecfb093412e430a46ff18d42170e95b", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "26c03e197604e5c4089ce0ae7d7dfc88a0941621d46584a29c0a8ff12fbcd911", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "73c46883bbe71ae9afd66fd0e363e78abee71e0dacbc36ea986fffb2a10a0f6b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2etq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0d2a9a37871ad18555fcf1b16c2e7307109e12069c7c2bcf8159a0bf8024bac2", + "regex": "(?i)^https?\\:\\/\\/bbsdgh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5d9c7c157a553e320e8cc5702b198c6e59dca7f1b06662ce540911f6528f22ca", + "regex": "(?i)^https?\\:\\/\\/btc2yir\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7325cf3bfca7cee8b9e25b91f20c903fd3be454d657bcac390f987293ae47a57", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "821478fb605484b271bcee3824fd41913543f869dcfe562d6c1f3340b2b19a5d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6e381a01f43897043dfcc14f26ca029ce2bf7b51b929725af5530d244ad856ca", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "309128a49c1f6fcc6fd60318606912766b2deaf400bfaa3817e5b8095ba5b9b9", + "regex": "(?i)^https?\\:\\/\\/btc2qxq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3ad1d60ff23f22fdcd845cbc07a54af2fb661d7a310139b2bc598e9880b861c5", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "90d1124389116e183794674f40a974312c9e3a12415d9eb573d98f6463756d75", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "df91aa47f7f33e85f248d0bb188651b33e4d44ec5cd60bff3ae95029d5eb040a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "164cb3ea0a06e15492dbb0e85efcaf9e0fe19fbea3dc10b610089476b1c810d1", + "regex": "." + }, + { + "hash": "151a6475598d2ceac17623878f1ab58f8db59604b149cbe3dc73674f79fd8bf5", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26redir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "845467324d958c8c95f3681a290e6912c2bf10ecdd13b679b390730d272c27e3", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2478de10584ecaaad2e4749f36dd39f96c38f7f959d91de916e8246328d22bdf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "19a106fcd340acef872fc0cdf1dcb6c7011623873834243c1b45b101036c17dd", + "regex": "(?i)^https?\\:\\/\\/btc1wxh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f0d21119c2a82f48f65537e34925e913618d3f31aeaa4ab9b80bdca8021cb4cf", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "819367d30166f93167d0d5fe069d547633021f653707f689a35c1e6361fd9b37", + "regex": "(?i)^https?\\:\\/\\/btc2yus\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "553417fc82bb4a1377e1854f0ffc9d0a78596c4eb48c4e26d7639b11c0035670", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "dadd96e99480584df0959341ad1a798e3e7a9e4ae57fa46aa8360158f06cba8e", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1f3647b943c5d8cf713a65235575e5f6360b39e479d8660c2a6e4da7b907ab08", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cb2753af01b6ca13e6ca6c50bf4ac7536e7cdf6625f56cf79ef24092e8e5dc73", + "regex": "." + }, + { + "hash": "afa1782c883848adca77b146ccbcae2541cab1e728c92a82523a4a7e77847e68", + "regex": "." + }, + { + "hash": "308c5ed19fca64f2fbe501b9b5f3599eb5a82f8b126f263e04fdd4d73f353be5", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5a7c640ca7114130c49c6f8e35634f00270ef80a9593062916331c954b0fc2a9", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3833ecddaba260edae25f2fad44111be8e8eb0519a7a75259b8f96c88da8743e", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a08d2da35dd694dc6349a9e2e7002abff982b773a097ff970ca962445321235c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "578c0f64717ecde614ee7dd3f20e8cc4876d907665bd73146629ae1508ef8806", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ffbd5f9483ac72573f1cde944a6c6441030c395a8c1a215b8d254443c22292eb", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "51734f36e92fb0504ff77e7d0977cc58903d7c0f5b69c9b7a3bd5be64e2a3e43", + "regex": "(?i)^https?\\:\\/\\/btc1qtu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "26e5bf242717495e99e6dcfba91a92d2cf92defc218544164ab1860df7a95f5b", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "488fc601677dd6520f3d2800d165e38a0e95158ab0d5d485cdffcfc9b4958251", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c78e943d97baa79da4bfe98cc11e18bc6ad5e57f687d34093b380e5092396e37", + "regex": "(?i)^https?\\:\\/\\/dasdas832233\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "05b75445a1bfc75af33e9dd1ad7191ed06bc11132619453a03a8a43adcfaa9c4", + "regex": "(?i)^https?\\:\\/\\/btc2wzq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fc20056b421734a04343304f7910ebcf58d7fd925c1e1653dda12e7135c6ea0e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "61ea3137fa1c3d6c57ba804d89ac01923e5308808220b901b67e190daf1739a0", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4468c4df6eeb2d6629dced34d4aaf8c01d8df9d919b9bb9e3a24385cb3677de5", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a4ace7074996b60c06a818b32408509734d69909704ebb3908d236a8f4047ca7", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e7c5ce370602f6a7b4d8a2821ebd4e762dcfaaee555e95bd22f476143425792f", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4197ed787990713497f1090d59659f94dc70e5772ace45db2f8b7eedbc909c1f", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "79db8a830f3c94d0afa648ffac1fca34411e569ad8d5fcf50bbb15f91c50a119", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bf92b3b21bfae207b3105bef096489f1a9d9535ef6f0138ee4bb1333277aa123", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d5fa12b4813ecfda7dcf03646492c3e3293f41cbe1ddc91269ecabbf952e40de", + "regex": "(?i)^https?\\:\\/\\/btc2iax\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "acff836c314c05d7dee1ab19cb8f901b38d217415bd4c1d42027be179895e885", + "regex": "(?i)^https?\\:\\/\\/vedatismetapo\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fd1933b0af79ae8678c6fd9c7e2c406e726f267f3639fa0a2ac29f74a5330c4e", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bfa3cc73bf14b9916d3db7b783610728b1a9d5c97e715c706f60a653ab296246", + "regex": "(?i)^https?\\:\\/\\/pub\\-82c22a2b268044378bb2ed5dd2759410\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb6bdd88c17418b2c60f7db9306e826b1757343d653571653425c96a798d8a0b", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0c191804655991aee59becd66f27ebe8dddf5ca99f870f40dac1f905b1c93aa3", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "51383a1a903c61e75a609547289c417f75b56f4346ff38870635707312190e99", + "regex": "(?i)^https?\\:\\/\\/btc2wzq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eb36a74015a48542008e5742caefc9d3ff19884265928be04e3f9376eb619b24", + "regex": "(?i)^https?\\:\\/\\/btc2eth\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a6f926c543eb4ae7b5779caa502461a2887a4f1c248387cdcb8b0c21deff8a40", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4ec567986e336877fd281fcc9331a4c38529ce0d51be659ad872aa2779ec4262", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5dc34c0134b2a154ad2b96e55d7b74c21567edae21d22d0f82da2ce5f9234a98", + "regex": "(?i)^https?\\:\\/\\/btc2eth\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1e808017e68d033ba4d648c8bb6c81b8e9e29bbecf1941110d7151ac7064955d", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c2ce004b7a231f8ed4c1762f1b8939052538fbff2c0e93439e96543c65347dc6", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f08d33528747aad146d920e88e7d579eb53f70eaa99b2677db24cd09e89229a7", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "09a5825a380e6f95eac8314c89effaa7d9ce434a63dd40fe8019b0123bb716df", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e22727643bee03fd74230fe154c7d08494934075817be02686501b5bf9ddb455", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7150f958a490009170114d3fde204c4f8065077434a2343cd7200f2dd9a9137b", + "regex": "(?i)^https?\\:\\/\\/robux60kvbs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]+zone[\\/\\\\]+b3b32a2d422265cd25c3323ed0157f81[\\/\\\\]+_dhI[\\/\\\\]+index\\.php\\?login\\=ZioqKioqKioubSoqKioqQHMqKioqKioqLmRl\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null$" + }, + { + "hash": "9c53a8916cb298f3e0844f5212e8717f0f0077090a264bc2bfb5dac81f0c502e", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c7e15e69b95866b0b52c6fc43c56282a68648584f8e657085681c1b4c6a98428", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "13b49a3b63cb87fd8aa890b9b08097283ef8fcbfd0b17e929e9e84d87564a91b", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d125bf06f2877e4209e9852885e05d72af81ac6265c28423501c2d88bc66b0db", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0c96cfad9cdae26ba307074074560d9fcbb3b5a744941c6775883aa8bc95c2a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9d655e8b424b9cfacec58d1f52e09ffb4576a4eee0039cae87ac9198e94c6d97", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "caca2e2ec6ca80987be69f86df05993d2cec481c032bc53a0ef34253e1dd344b", + "regex": "." + }, + { + "hash": "cba3225955cb9b8f4e8ffa39e399c725b494e9a3ec9ac463653ebe759252f4f0", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "82c49dcea323fdbb2ebea2d153ab264290383d7b63b12d2b87445c6c18fa98fb", + "regex": "." + }, + { + "hash": "295f829fe90ef5eb84241967725a50d4aa991506eef1d3c4540af4b04d08d607", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c2eb4f228e1269d27d7326de84fe11e827010a40ae43c40b1d1ce939bb5e1500", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d7fc4c3592eae4a7802d5dadf9e9e192ead2541c803c3a792f7ca7d2b4aa585a", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c1438625501840fdf6c65c0501469fd5cb8bc4daa39d32e7b50d1bf90c5f154a", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "01ec34a2c636132c0f30b6817e6764d7a0708468b4e2e43fb207901778f4f16a", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "22466dd539c69ded48a6b2758013fbf4a8204db6cbeab21b461fe7eed6b4965a", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7a1adc0460b75856f8b495a0402a7d2a0f372ce89c883fcfb142f2494cbf7ef7", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f401b389a34e583463e8eb631b791f233d4c1e1509cef8bcf774ec439ed79881", + "regex": "(?i)^https?\\:\\/\\/btc2qhq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "451c6138240dc5974cf56a0190410006c81d012e106f640f497561224cffde31", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qsr\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4761d298c4abfd41fde5707e8d07a335a601cf6d120527188568bbe4a91c1097", + "regex": "(?i)^https?\\:\\/\\/btc2iax\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4b17cb3d025c39e72e3d4d6eebd9f50fcd95e99603b4782c065534d9660047c9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cdaedd23af9d00850c847b96cdc6252ba2162eac2767f9e284d1f66232399e39", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e1588c190fdb28e6c85965c215a8529146458e34f01deace494c28aad9942836", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fd75967a70b25367809c9ed43aa16e21f9d53276caabe206310e9cf3e3539c63", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fcc6655a967ca81df291e50e50f7b7f7c6b0b2830e111577d0c657334a30560e", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "51bc4c7bb05539f0778335216e83f77d0c04234a056ba12a239aa87d49e110dc", + "regex": "." + }, + { + "hash": "eae91b0e3f2d6aa1d7a50344fcf24814dc2e9642b95a809c3083bb2728e06e19", + "regex": "(?i)^https?\\:\\/\\/hndrhd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526amp\\%253Bamp\\%253Bredir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "7b6c6cdeace9bd212a034c1b664006af23be6b2ba2ddd351d5395c41b19af58c", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "151a3cf961bf3e2733ddeb132c6fd564850ebb89154e27a9273881701525b639", + "regex": "." + }, + { + "hash": "8248f47cd77c085f6e95e1e85af6fbff6e8968cfe09f8cca9610fcca291b335c", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e3fb8f39248b9a7783b7d2c8a7a2a6cf8a46569cbbd43b0fea6b20931c2022c0", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e7e90b1eddc6a895e41390fdf3adac4194dcca315d286a391324c318f966085d", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3191d043216ebdc22c8aeda417ab03e3329bc17a8219ddcd7a9bcde1a94083eb", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6ebcc148527b1b22d8b9ee62e9280379573f94858ed01777056f696eb6bdd2d1", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0a90cc25fe4bdcf4015d8370e77d17df11bf3bea1c30c4baef2330934c652e", + "regex": "." + }, + { + "hash": "fa818626b2533ad27d923b0f4c3e508ab7c977bd91999f897d6ad5c203c61072", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rals\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe6352aa2537d4b3527ff81805917c54ecba7c8c6c91f75120c0ae47730dfc3a", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a3430a9c5830988eec06331df5310db703225f3666567b62d9b7e0373de1fd39", + "regex": "(?i)^https?\\:\\/\\/xsoorovy\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9fb6123dac9f6b7440014a32b4c0d45b4b48ea3bee9e781ff3d61c0949660785", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4bb26c5952e38437402f23256c6922d27883892a174e8d47b1d0d0b5e8cd60c1", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5ec12d8681833c5dc023b84c77e41ded4c72470786d088d754871fcfbf78981f", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ac213efa1608f4232caf79187a253d766a0bb8b8a3e9cab0c1b03c14d6464357", + "regex": "(?i)^https?\\:\\/\\/hfgjtd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0d63fd2f36496c0ef7d4b85ec0b921a674474aaf1628b9fb612ec8aec6ee843c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ebf2ddfc6e72c2f45baaa3c0b247220299b123334ba9a2b2deef0c7e4e121721", + "regex": "(?i)^https?\\:\\/\\/bdghbx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "03c9efcc6c87ff382d0d750347413a1ab8baf4f11c06db199a5c78bf62be3f30", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1euq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "03284f303f2edfb16e2756d0ff2d049b50c4db79942f63e91dba286ebb6ae4e3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6ce4190ec85af14f4e0c2c101da9e46db9b54a5974acc91eff50b6111ceecdc5", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fdf6f9f0cda4f0b1cacd5f81cd34b4196193e1b8f0cbd8cfb667d8d2912abcad", + "regex": "(?i)^https?\\:\\/\\/btc2yjs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b05ddce3ff44a1b0f68a138800cc85621dfcf40773da3a60439c51d291278ba7", + "regex": "." + }, + { + "hash": "efcee11de9b40bd63e7f05abfb44b1a1bd21ceb5f8a07e0af04876aa796bd4c2", + "regex": "(?i)^https?\\:\\/\\/hndrhd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "baf4e7b187160f163de6b295ec97a76cf69d727490a53de6cc339051ac7082b9", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fe6b903dbd9bbbd9458cabb1efb2f5619143e69ae257687e00fc9c4ccfd43b80", + "regex": "(?i)^https?\\:\\/\\/vedatismetapo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26amp\\%3Bamp\\%3Bredir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "368f1f66aaee28652340f500d4b74cd680f2d24a9a2cd36ca2aca96afd85e04e", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5c1e7c766a07ac31337affd362e5186fb75832c4ee3926adcfead405f811823f", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4d84ff944701ec41a2a41e35d67a218fddacd9e4cb578d9d6d72d22d893abb0d", + "regex": "(?i)^https?\\:\\/\\/robux60kvbs\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d106fec586c0f69aa75d0c8199b3145e1715838d0b4b4859388f58edeb5be1c2", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cbadae0fff587d1c1e87e3b53074ccb24a3780ed7b0bb0ce52ff317336e02b2d", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a54ccd6c6610d01a353f58682cbed9085e7b68cddd57a14f1f7880c429d75810", + "regex": "." + }, + { + "hash": "e26a89bd7b09673a4bd9716d495e980a84667edb83a119e1d28e053cb353832f", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "049c834412595115c4ee1e53ead5fe9bafe17a5a2170313f980a7255ac801dee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8878ed104879fe03aa668618f0f46bbce27971ca1bcff6ac14230d2cd414579c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5816516ac563ee25ed0819faea0ca2d40a8d2e715cc1e5fc9635b5763bb766ff", + "regex": "." + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "609c8cea9a57fcd41351e88452377014a90fa19d9446c6f3804b83816efe84d9", + "regex": "(?i)^https?\\:\\/\\/ndghrq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7b89fde674f3258aa1f5b54cdb468ad976b739018462cf576dc1014c68401bb5", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d9291a3d9a59c0a1164baf4b2b4194065f998814155168897ed19d07689458bb", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bbc2f18f10b53a9dd06154be4b0579c493c9dcc63b5399da18d45267db5e7b1c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2etq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7a656edf3de54524add9980880ee956dd88b9b8496adb1c33fb26262e1412bca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f0254859b9982090fa4bad95e23f8aa3d107d823f24482e1fd19f255fb31ec81", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a757fc44f0a3402a5537079c0f8092cf90431cb93e7a611e730a7b4b81d87308", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f6f7f253ded4ddbb2c60a96759f212d9a3a32689d722057edcdaf411e555a229", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a78e5559939240e20b526935c5d98a6e2319ea7e26599256718aadba7c7732c5", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0c4531dd1957f9bcbb5b82a9ff4f61ddc134e410f0c0b9afd950998cf62e9c45", + "regex": "." + }, + { + "hash": "35be5b05d0e2d8d6979bc3a2a3ab792cad30ebf5fae9eb4e923d518051e37d0b", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "714b54a4105b90018e74f5bbef390d7eef9e566724ddfec87ba36c1af081fc29", + "regex": "(?i)^https?\\:\\/\\/btc2yus\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "99e3acbb2a9a29a5dc22cdafdfbca37a116f9dd984da0d45bbcf523bd5942795", + "regex": "(?i)^https?\\:\\/\\/btc1qko\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "886d6e478e2d55997fa3b15304f09d97d0941793571f470803e91b35bade0f5f", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "401857c679d2db9a647ad92a3b3feeb61c9b02440402f394f66b859ab8883c78", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e6005815a406546a2fd85bb97142e5a8cc57fa934fd8d11df1f64a1bd3a6c90e", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b2e0ad52ce2dba47735b2506da3cf3e76754e43a9efbc60bb09fd81600d9d2a3", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d3663b2de1c5b663c5a12e8dadc7e816d407a81885aab82d0a94eb8293052ccb", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f80e743aadfeac946a5ff7a2919f674b4bb1928e6cae786638811df849b8d383", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96c1264720d864fa45c67e946e144097f4283674abcd67fc247b16ef66246b29", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qsr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8cc1c8282050ae034906ee160336fbe2dda6e3c0c691760a69b2b1318137bdf0", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d36d9153f16bff2e10d84195818e18b14e0637bc4e9a498bf99092afbdff026d", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e5ecbbbee2a8c09cce047cc9374c6ee87520ebc811547255f2fd907e202dfe62", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7e4cd8b6e0298d1edec9b5e18e4b4095eca31b1e8924d1b9be81ecb8c83bbc62", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1372e2b588deb0f0f1a9179e916c2b094da596223335810f36873d561259ba3f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b[\\/\\\\]+Y6huyn1y(?:\\?|$)" + }, + { + "hash": "4f40d208c161513e0a8fcede78f92e3b30716ba53d443822b0417189affbb5d5", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4b434599be7262bb0f0c0c11b55dccf5225f43775e97a5b54852829ff256d719", + "regex": "(?i)^https?\\:\\/\\/bbsdgh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c01e52992bcddb5064bdfc7a8b65fdff9fd10fa651c6ddbc9ef8ed8f0d0d756d", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3797b1fd584d15a3db85b590717af5000182338b4b42f7f7d074db03c3066e14", + "regex": "(?i)^https?\\:\\/\\/bdghbx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "589568eb23b8b72f6c7c57a68edf96ce1a0f165adbca943cfe3e94310ddeffc0", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0fde0c70005c3630a056306f5bf73556a483e4f75f60dd8387642c50c522213e", + "regex": "(?i)^https?\\:\\/\\/btc2yir\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "776e014e2d979405108e894527e6f223510c0cf611291afaeaaf36450f297025", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ad9f1dc29028f40b276cc50c3413462aa11118cb4801ae23696fc603fbc1221e", + "regex": "." + }, + { + "hash": "f3909f722f6d6da1302ffb8b1a739c9e4ae5bb85b4bc01e632e24f9676b108a7", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f5fed7e04f535cf7b06305f4408c1c27143177f28ddd7bf9d80ac362e631fbbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6001[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "65e69ef7c5e3a5457a3e2ade02f7a15bb30a7b7dd337b3e81ea879cd42c6b28e", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ceb2645f67b6b3521431a1bd69fa03514ed5064e60d453aff3a109018675086c", + "regex": "(?i)^https?\\:\\/\\/bbsdgh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a7002dfe00b37188ce89be0644d53ae093dd39434dee8d0d5fd44ccb084763bc", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "350e959d7d87ad3d86070f2807324bdbb9bebde1c0a7cef5e1948ddf571400ca", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "640e5ccd48fd1c45f6ad7ef4aa22e760aa80985ba5c538c0c2132aed39fbf5e9", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3e7da47d2600d2100f4def0cadf3ca2a396535647247a11850d968129a6927e1", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1e19760ed44b0be951bf8bf9afb4e9c5861469d22e4e0abffd7d9bb5a212d432", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c97479998045c162ba1fa186eee6236003c59b98a365970de95cb3674b9cef90", + "regex": "(?i)^https?\\:\\/\\/btc2yir\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "65ac4357b0556a4c50f8168516d73a472cea35d4d843c09889e55645e4ca7fb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "01e03420da3c535994305414eaa1701ba568cc61e89a33d2a1c6268dd85132ae", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fe2347343451daf33bcd4aec4c1fb7955fb6907a5d39c002ac93471ff8da3531", + "regex": "(?i)^https?\\:\\/\\/btc2iax\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "61abde22c05c8580e5bf833cb58bafc8c7d3f66c63d6baf146dcc2d0a06d6de8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6c0047b579f96c2b37afc99059399a21dbcea764edf56fcf6376f4ab5c14197f", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "718ab5ac645b82062dc97e8f0d2f1aad327b0fe23447f2f758fabfc75a0bd401", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ab09c669b7b410e312635b6452afb66809cb51ca2fe328a95e8f247128d56f57", + "regex": "(?i)^https?\\:\\/\\/robux60kvbs\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "22d21460a4a1f3004b3b0d48da8cf815c96190d0c1877aa99550a748aa93d74e", + "regex": "(?i)^https?\\:\\/\\/bbsdgh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "09e8a05a296153235c04cfa9d9f906ee004a47aca869e64b47990044c58597be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wgb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "962f91bfd41b4a9140bae3e685b3c1a29af240a6d803ec8f4f912398a3fec9fb", + "regex": "(?i)^https?\\:\\/\\/bdghbx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7bbef12e762cdb6eb9dc389dddfd8be5e47814a68ae772108b9eff3ed3e7b59a", + "regex": "." + }, + { + "hash": "1f486a42a9582a0d75dc0c4406eeee39e2d4c04c133e38f143f49c5fee7b6c08", + "regex": "." + }, + { + "hash": "cddf53ae1ea20638218ac6d0430bc2b7e8fe0981ff06ea58e8081669e089c2d0", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c3629652492a2eb9c54e1604187662d710568add2e2dd70ed9648998c945c442", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "36dc0ae73fa69adeac7e25be9ef5b5efc1c4db5b0b7975cf4898fd223442cbfc", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1be66b75c50c6ce9f506a58dc4ebd177ffa4547d21be41c072e53ccb2ac87153", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ff4c71e818ff6a546669abdd33d51080361b0280b65d7f0576a14a458447e847", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "095e0c96bc335efafe32646115bee2c8fe2bfbb8bdf5c57eed295d2ff140a87c", + "regex": "(?i)^https?\\:\\/\\/pub\\-8e86046e9f3f4c31a7145f13113ccb3c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bcce09e709fcbe83cc41b43964962a5de1296d9170723892a8ac54d6b15c6c2d", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5adec0af8af0ba35e8c9c5db0834e8499e63c301521b81ed537f1f1a722a3df0", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d081659b4ee71910ef41379087be02950077008724bbd8a670377243c3338c2b", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0831aa09aae91544e1cbd1a262a335bd575c1879edaec2328ff95ed380f66c57", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5cd39cf148441e00f17301a87eab5d1b58696eb61e524d64bd1fda506227a6c9", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e482e38c4ebe6f2c5313c2ed7ce29daabc5d66cdb3fe143c9a815bad494b61d2", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "95e7cd1f473c847cd15a1acd1030b820a41581bdee79370275425cc2418ff17d", + "regex": "(?i)^https?\\:\\/\\/btc2qxq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5137e86bd2816884ddcfa62060a1f08b87c703de3c4f33ff192bc286f27615c5", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "d8a43f4cb7d681b632df20196810d8eb8efefdcffa61fb1f287ddf593c609e9d", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bc95e1f2d990a200ef255ebde6c0b19d6eb10439d2d1505c834e1084ba644b6f", + "regex": "(?i)^https?\\:\\/\\/bbsdgh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "925b173691456fb06b161a4885cc8c1f012c8a4047787ce4f1954b52ce5f37f4", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "71b76864b26dbf5f2799edae33729402a853cdceced478b05619bb730b09680b", + "regex": "(?i)^https?\\:\\/\\/btc1wxh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "00f9778322b2d9d044d2b601f34a8fe040b99e5f119a8312738f646afd5699c3", + "regex": "(?i)^https?\\:\\/\\/btc1qko\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bc46eca21f3c73b82fae78d43b5a2e02b78ad735b978e50e213c90030c2f8a2e", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a089dfab253f84b5089a94f03742ab9a79f991472f21c25f08f4511972825256", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "756facfecf5208b46fb47444c7016883c6a7a91d05222a9fb8d96d275173796e", + "regex": "(?i)^https?\\:\\/\\/robux60kvbs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cf0c3a6ab797ac8ce76501ad2c0f42f4f1d996774f2ef5267d5d7230610b3c16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "00a9b813104b9c5489bab5077beaf399bf6f7b860a29865108516aaaffa5d5d3", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a1a1ad7b98b0fd2c3b7f80a9dae65de53e84b0f0c20556451c666384a9571c25", + "regex": "(?i)^https?\\:\\/\\/ndghrq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c46e8a0583e28d45fe13aa75df4ff232f18f688e1a2d1dc5601910f63fbd2a32", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6340d8375a07e3e6c592e6cff5a5534888ac4de446ea93595f57101631448a55", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "17cf84d4d57256f21a82ece9b928757b01143f186f8551994cf1c48fe6ee28f2", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fe94243054301213913def064a8a05e9c98ab8fe9dd90a2aa02dd22776108761", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d8069bbebb8b9d19aef62fd814bd4926635c3257e418b56c9a68870d455ae4ae", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c9c63e31c6e92fd592de7212c18e3efd8031569ef670f283331b835f6e036bf7", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "de8c4e36e7a7466fd205227c9a5be8273dd8842a7cf4c22f41ff5953e934603d", + "regex": "(?i)^https?\\:\\/\\/btc1qko\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "62a0326ea2b0055bc8f86efb1b4f6af3e7b6927be25585f7d1dad830d3e155c7", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e9ac3a1caaba3fb1027c9dde93bc55e09d1df6938d8c2c70b72d7e48a449f658", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c58c0f631e3f96260ef7172d612cc43df738e1c0a98b9c260d1a5151855ad4da", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1euq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "55d7de9129106c27e6d6cb14bd04a8b320bdd2a24d10f08222503682d4f1e059", + "regex": "." + }, + { + "hash": "9f4878de2c7858af76dec4600e9384ee1cbd89a01cbbab19fa6b974c03e2309f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526amp\\%253Bredir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "bd1741403454dfc9221647ec658be922a629eed74821a1bcdb4740971201f1a5", + "regex": "(?i)^https?\\:\\/\\/btc2iax\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]+zone[\\/\\\\]+b3b32a2d422265cd25c3323ed0157f81[\\/\\\\]+_dhI[\\/\\\\]+login\\.php" + }, + { + "hash": "8f559ee66a5277d56281f0bc738a1299c6d15e7df0c0edd1a87e6fa7d5951086", + "regex": "(?i)^https?\\:\\/\\/btc2qhq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6d010c4204c82b2a8b07ec178946936b697288d8c6683b1d938f6fc4a7420513", + "regex": "(?i)^https?\\:\\/\\/hndrhd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9675e44da95c2729ebab53e012adb57329db65fb47e1a7474bbce35e4997ee7f", + "regex": "(?i)^https?\\:\\/\\/robux60kbyv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6052903f1a5af9e1e5040b5db56be7e830b56bdad9e83be65e24916719edf4f2", + "regex": "." + }, + { + "hash": "cd60dc9bb60797c727b1a160331bb0e61388048b1b40a84041ccd78595ee77b9", + "regex": "(?i)^https?\\:\\/\\/robux60kvbs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7136ac4cad53feafdc1ed5e09c29d7eb6cfedf78bb8a390a5c2e214801ce6869", + "regex": "(?i)^https?\\:\\/\\/btc2wzq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0a9369de1aea2cc2c984ea0823b9a769ff644bb5c1ac8286c98b5bb9dee53e42", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7cf2c4bb14c76d19fd76fef876c3cd21cbc85d2a03c5fc7af8b5fd81a59b90d1", + "regex": "(?i)^https?\\:\\/\\/btc1wxh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "be81313ea0d76e3a9ba1432c9078e74c9b5691ea4bf03d2593232b161e57a4fe", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b3559b395fe9d988fdb692774ce73924850fe545569623fd58f4211122dbe635", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3a947aa5d448ea5d3b4ad3d6610ff2d57b17078c62ea314f1f3281d56abeac07", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e19957d1e8020e2e1d437781ab779c471a596bb8288b7b9a96b4a2c9a88f1081", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c343664c5c619bc9c08ba4ebee5d31c1f2107e5e12b7b83f6cc2f472a4ec29e9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qsr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1617cdc4592c8e7b3337f86d5b84021399d0da6315674bc8f373b378661b8ad7", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "300477b39bca5e592dada233d4244cad1978a9dfdaa832398274b24fa316e109", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9038b4a4d9f54c02c82207b7d6725fb7575acd1958f00794a3eefb10e1aab7d6", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5a145186815e8104d80549f3a81c1c27e4445629ac32486fa2475aba079c1fe7", + "regex": "(?i)^https?\\:\\/\\/btc2yjs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "17d70735c5216d44d91854432d4e5cc58c2b209c667d2007c0e14a9b8d862333", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bb43e3a4d6d5a6749cbd80eebe0bac9c26d8fee0b3d152c5bcb6eab272df769f", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0656989b750aed8c394c17560333c730dea45eea6d2d311b93e73960086d6b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "a73c69cf2eac4ab985404bb1a95fd3a9aced5743b728b37b38e2b00b27852e28", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]+zone[\\/\\\\]+b3b32a2d422265cd25c3323ed0157f81[\\/\\\\]+_dhI[\\/\\\\]+index\\.php\\?login\\=YyoqKioqKioqKi50KioqKipAYSoqKiouZGs\\=\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null$" + }, + { + "hash": "f4eee850138cbbccf1db7206d11aad258fad475f123ab86c2a6d173cff7e2869", + "regex": "(?i)^https?\\:\\/\\/hfgjtd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "41fc0637f8a0d137e48a5651953e3214053a8dd2c68d587d4b72f8c041b2202a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1e65aaf0d104b5d2279f9ff1e517a514de367572c8180450a21bbefaf36036ef", + "regex": "(?i)^https?\\:\\/\\/vedatismetapo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+pa[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7515892900b9ce23b41c7bc01e81249380fb289241f29f4875e904bae73a292a", + "regex": "(?i)^https?\\:\\/\\/bsefna\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "046c8ec89586c3cd952debf748f33f9f94b8c74976a05e8ecb2ef2fb51e589c0", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4ec908abe3ee0a0d81aff4faaa578cc3c7e01df676309c90b72fe69cb5380d0f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qsr\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3d431e1ff9ff39bb66a5c229616153d7517039c4323ebec6074cf560059ade57", + "regex": "(?i)^https?\\:\\/\\/btc2yus\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "127935417e120dd169b6d679c4893cc59fdd79c18655170c71b17de42b1b4664", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "94252e1c26ca14669f223066fbca6bebb7bf4505ba13cd4a784e6c915c345eaf", + "regex": "(?i)^https?\\:\\/\\/hndrhd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "00e7b46e33b90618befd8f91f6cd81ad2bee900b67f86d4cb1d4ab9a9118d6a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "42ae0d4c47841d5d1c179186585fcc050bb2407b5b6c5e2c899508c374658d42", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0869d3892e67b6b3a470d503f7259f4e492ffbcac7ccc34e976a407ef25350ab", + "regex": "." + }, + { + "hash": "4398d10ae7e6f7dc66d665ba0cde9870a8b764612e41d0da75fcf4e6a0d2fa6e", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ea51e46e328f61f614ab1b39cdf1cecd1763cb6b501c15a005df44234857df12", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]*\\?login\\=b\\*\\*\\*\\*\\.i\\*\\*\\*\\@k\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&page\\=_dhl\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null\\&vcnt\\=null\\&use_cdtimr\\=null$" + }, + { + "hash": "80f725818d14756604ef0024b9078576b21bb02efb5e6aec233239cc5aaae506", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6e0ecf440c58c4981262a31bc4012463ad94f060134223f3a4d43f9434b9002c", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3bd0bbeba04080b0b70915140e751b8bdfb68989d68bb068abe39d9c8af377c1", + "regex": "." + }, + { + "hash": "4ab60a5f0239f811e15e0aaaf1b710cc42cac545f1486f0d0422aafd161b57c7", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c873f63850357d8bf0d1d7c05c965b58446fefbcc4a00b9a8162c9efa264e69d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "f4c6357915ae2eb4fc91a543f94e4289b85ad0bba9cc6b274563a70e5f0a9e53", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "208281d219fa937e2141f98d159c8662318c15ba4885d064e53af13d2843d4ea", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ad04ca8488ba134680db0207d531eff5443417b34f3f9c2357c4df48e65fa318", + "regex": "(?i)^https?\\:\\/\\/bbsdgh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "df9a92cc66f29c98fbb6103e1320455d82948964816e11ad5ba051b08273f510", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bbb84c2142c2b5a486b5f32549bbc301bb455d08092f37a66b61877616fe8774", + "regex": "(?i)^https?\\:\\/\\/btc2qxq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2a72be4f428cb559ef10703981d7b7d0cb22c192b8d1cacec5b3dcf1f4c510be", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7a3fc56fca963c589ffb1df53ba167567f071e5b806441eeb8dc8ed269df5aca", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2etq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b0a79e52910c977b1fab25372269ba8ab0289739f9feae290b35c26ca5fd8a4f", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ba583a2baed818fd49aa6f5f97ee5fd9e0b13350201ef0d28d20aa3351b23c3d", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2e0463a17bab82f146abaa2465d99d0a009e5303c6fee24ee911617fbdf3a444", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ad537f75842028f075d753b2b167441dfd2fe9e852cff3c6d6855625d99ee841", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8ee0cbff8f25bdfc218fc562a22e2e52cf88811a175dc1b483e1cf7d7de29435", + "regex": "(?i)^https?\\:\\/\\/btc1qko\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "92f61167ed6b56cd5d9eecbab28e79d6db3940f6aa92bc7456c3bbabe800a70f", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9962f9cf194857ebab02ed5bf399ebe0a69ff3c1999ce4d30052778d188e2aa3", + "regex": "." + }, + { + "hash": "49619cb075ba72da77e95ad765eb80cd1d86fc35a11d7ba1d8911cbac92dfe28", + "regex": "." + }, + { + "hash": "29ac87247095dcda9ec0cc9da3b84802241fb5cd57fea9daff4a8919b5d84fd5", + "regex": "(?i)^https?\\:\\/\\/btc1qyk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f845c6fbf74cd56740c047506eba5bc7efe5cc5a82bf8dac1367034b1ab196c2", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "37652ef1d12c78f4d4b856afe8e110758422bb6b6f0bce6f591a8001a92e20f4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1euq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f6e99ee0b558cafaf1c0256a8f9628dae761379377cb75849e7a6608087b4af6", + "regex": "(?i)^https?\\:\\/\\/btc1qyk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "dd4cad556d4af6e853200ee95f1f9e38b9904607e82d602b336f33c604875531", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ae9cc890953e4121fbbb67e2954e8b85ed03a5b177de02acb56f83ee18912aed", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ebba04193108e35338d1d6e72472234c311b379ae98aff86379ae87b6e23aa67", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b736c7f2c015c168d82ded5a984ce992841e7d2b632595d37c9b4439589996e1", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b83d965b25fa702378de604104852f9d850def52d516670ab1fea3164d01c624", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0b01caaf294f362cdae633cdff7784daee2a41e7c858f4a6b444ea75e27f964a", + "regex": "(?i)^https?\\:\\/\\/pub\\-1532bc1db5914dfebf5d6525375c8453\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "61f196ce590a1e83739c3bc676330af443ac1276bc798d4b950f22e1cb8707a6", + "regex": "(?i)^https?\\:\\/\\/btc1qyk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "036937c0a4197837cf91269e675c3651771177887e47c3bfbe886efac5eadb41", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e6858a6460ada6ec289748f6a37b9dd0bf0367985f65facbce5efabaa0d95bed", + "regex": "." + }, + { + "hash": "ee1efab7047f57b75bdc16f1fd470c7f2e48433bae86cdd545bef1cc6076e005", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4ac66216afa5feb0f6616fc2d3bc9cc2bd1f3b693eef11fffd966be6bfba0dd1", + "regex": "(?i)^https?\\:\\/\\/hndrhd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3a5b84d1aa6aa39bc08ae9f63b5b0dbf8c26153aa5d35112ed06bfc8f871cb7c", + "regex": "(?i)^https?\\:\\/\\/indigo377592\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "d2acdf5729048b9996b2b2058be091b187032e8b58daee973ac3541ec3fe3a07", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5de0498574c70595622c775d08d57ed2a3ff2b2175e19bfc6b321867b3b259ef", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a7c5a90f562a2d58ae3c75346fbffbdea94fc2ca5646b104050912cf6c2bf63d", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7b8ffe14fe48755774dc53e14eb6a8d1287df0b41480005ebd88bedba3234219", + "regex": "(?i)^https?\\:\\/\\/btc2yus\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c32404235a57ac0f1120a59554ba37fb577647e7ab6b0791ad47d406e78e986e", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f9ecc3e9d57108d9d39a41d20856ee62e59de007cae3d306a4f9e8d633740719", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4bccdaa17a180614e02efdc11471628a428564dd511d37c4900ec4e3fa951ee3", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b509480b779bd13841c9179ab66a70226ca44f424a436b65ad50acf8f402a4c0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4da0cd72320edb1d65a5c186246f30bb289c05cef3257bf6b9f88587719e4e8e", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cddf8e6fc9f0a6b1e9545b8fc7fb18aa2dda610abb4f5d73d0385b5f8d0091ff", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "11a691aeaa87e7b838c51f65bd096116c61c7e5bdf20c4b61e344a2b0a352e6a", + "regex": "(?i)^https?\\:\\/\\/btc2qxq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8ea741bb7727df477184549c3588157a41c9c0def679cc6b84395ed3151331f8", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9ef80dd279dcecb017aaec262ed8bdd959d6c53ad7dabdd430cea002eb537626", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bd161e25dafec46962c95c94db1ca6b403225d2230059ef7a4f65be6de141f7c", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "46a75b6c7cbb850985fd96ade2c9cb399ca6b87a8a99954bd556ed774ffb6510", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b070749f4e40f1ea402cac6a808e3905c32bd2f71b4757aa5ecf0edd5ab24287", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fe44aa29151c71122d7499ab72559fc11728517b4cfb52484494674a6c7403ed", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "730b1cf77d8237922714db25d36bd95ae2da47bd894df5cc33d7d18942d49b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+1f30bf10\\-24f0\\-4439\\-9614\\-c94afb91e045\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "b57951023ff7bf574713ad217e400670fe0e5e30646b825a3e78c8718d327fde", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6f0a19c6eeab9628c08470e47a8bc3fb560692aca766253ff6f9282a57210a98", + "regex": "(?i)^https?\\:\\/\\/hndrhd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8cab5869e2e7f1ecbd8f78fb5c688271e16cb7e22299956cfb208b7796b2b4a1", + "regex": "." + }, + { + "hash": "d59fd34c610407b83c10b8aebc9eb14f3e9a3ca9dc7b72c250177710307188ee", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1euq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b40c9f2f4478976d6066526319c26be6dbb863a86829b1b8fcab715bf346118e", + "regex": "(?i)^https?\\:\\/\\/btc2qxq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "beabd3dfcd29f12a49c91cccff4e26431eb8995b28dd46ca53d90c9e35f13427", + "regex": "." + }, + { + "hash": "5a14b5f66a410c1fc7b5b8223b836001c0c633b304204e6ee3a4c217e0c5c059", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qsr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2478de10584ecaaad2e4749f36dd39f96c38f7f959d91de916e8246328d22bdf", + "regex": "(?i)^https?\\:\\/\\/usps\\-infons\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "ce3d8449637857f0ce3eb8480a327b54f8ef3959002e88b8c6551ab48d31b3ab", + "regex": "(?i)^https?\\:\\/\\/btc1wxh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "720662bbe47ed53ed87d6b9aaa6d837024159d25aa17eb83d014bb845544e665", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2etq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "22eda2e6cfb3121f6b2affd55eb2ccf2ee5a07cd9291df474b95094d56f4ce3a", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f26c3ebfb63f50d6a5ca5e0c8edf5169d2618bf6d87adc3998a2ed15807345fc", + "regex": "(?i)^https?\\:\\/\\/btc2poq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d9a0e11cd347aa2160dc45f6bc6a75a8cab4a943bd509ab4a7ff2b613c96ec1b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fe414e76804e5daa61976ae87beeb17c02f33a2ead1d059ff14b7bb42fddeae4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "521138625c82181c0d602fb6f8f9974eb5557dcae987ca32b277ccffc3ba278d", + "regex": "(?i)^https?\\:\\/\\/bsefna\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5b0babcca9292d92c6c3008940a8f33fc7720226075b8a2f98b5c7a5f896f6ec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "abbc1d4c3905ee94167ca196b63a2c41839f6804174d8272fa4e16e28d0d5c9e", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-100102\\-107249\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "031e090596d579c5c8bb07e688e33d7c40129605a7be7ce1fa25080741368f2f", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5941c3571c65e07e262e01592cbe206ff5b70bf2b0fc9376a480a3cd75c23fc1", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ea656607b30f4b48dd6ea00dbffe25b46b16754b8a46ed0f2765b3b7b125ac96", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "45af2f803e4044592a43cd6784fc7a887f643d5370ec3542ab62b896fc5527a9", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8b960a8364c8c08b458d2273da0cb2b20460e2c6aa9118a87d2a20019cfa5a46", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5b1591b8e31bf08625e8fca77a181eec8ec45f622bbce4c5d2b9958295407ed1", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9033353c64bec7c6f2a6468df34fb287b8f462f3e560b0ef84801315a1e6d65d", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "725741b97d82585701f87da443752d5c01f16133b9eb3c805574c9c978815c10", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3a428a3b057994a9eb9601c3c01630d5127ea57b5f7a2af1bc074207fc7b4e59", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qjh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cf4ff2d26e3a391e9fba691da406c352454e2cfc173d05cc34eff36fe8817b14", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "692107c2730a454ee9c267ceecd9307ec8df9a15fd9a99ba1f25b1ac2d15696e", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]+zone[\\/\\\\]+b3b32a2d422265cd25c3323ed0157f81[\\/\\\\]+_dhI[\\/\\\\]+index\\.php\\?login\\=YyoqKioqKi51KkByKioqKioqKioqKioqLmNvbQ\\=\\=\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null$" + }, + { + "hash": "ca287ad99b3f3c7ed53ba0fc13d7a23456b8a84d9ff728414fe801cdacff9a73", + "regex": "." + }, + { + "hash": "5159bbc152f30b45790ae7aab53de8d6b2d456c66ac88fe96d50b93c156e6acb", + "regex": "(?i)^https?\\:\\/\\/hfgjtd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "98903457ad7a415ec2d79941f5eb09f724e3b573ce56a31f4220c1e6b7a9e5bd", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9ee25188b2246e984a6530b87d749e11a09d46eeefcc41356a53f6d18e8e42f4", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6bec9099506bd4f2b688ae2f5c4623f845137b4b2cedd620887b85cfbf573606", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5642f389f9aa1fdf5cf5aa9565a52b063bcedb05f5c70c35b9da30478b062609", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "788d54b09fa08bb8564acd21c1515ab5b8ddeb316596f2a82086706b9cadb211", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9095386de43411adaba3be959a39ea68dc968b143feaa3c276ed66266ee8a783", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "64e17eca2374e817d001877dbe3745010c3f8e9d83a8221d644a905e706ce923", + "regex": "(?i)^https?\\:\\/\\/hfgjtd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e802eca0ef32f35b14cc370c345cd5f28c2d5949fe0ee7f83b749b16f90aa3bc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9ce9486503dd80bb4cca3728951793f668fcf3bb27dc68deab6914fa7df56f71", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qsr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a8c68b741ddec5037cfa04942c1719c3617be29d5bd52df33d80437229f42d61", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8edefcf4a261be64d61f4bec13b94b8c5189c7fdad87f80e229dc57e017ab74c", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cbad913e61c795c2085e8950254ac0d99a27197a90e43f458e23cf1bd3121f8f", + "regex": "(?i)^https?\\:\\/\\/dasdas832233\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9a35da05358158f49daade4b993d99b7cbaaf9d8fa7cd930cef01f9bf1d32d04", + "regex": "(?i)^https?\\:\\/\\/btc1qyk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7c81c67f50c003c7011870fba4eb12ee75a4f269e763ea8f9eb56804d94978a8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1waw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clktrb\\?id\\=704169\\&\\;redir\\=https\\:[\\/\\\\]+ipfs\\.io[\\/\\\\]+ipfs[\\/\\\\]+QmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "fbb281c8b92006f0fb9336d4d4adbed8d541121e603e9f1f2a91c65c90a816ac", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "299c9b2edde8aa70e38230b0a42d379d9b6e55e3aa7a919814b5780cde881d26", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f168aa1ff55d7bbdaf5aab0f79f743a980a4e662a18552253aa978541bd8fa2a", + "regex": "(?i)^https?\\:\\/\\/btc2yjs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "64f2884a689a831fb54e461f48c2dc1a280119a7395671928498d224af194a56", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4cd93109b2682952d5006280741aaa7eecca13d366c821def1101c6d672cb31a", + "regex": "(?i)^https?\\:\\/\\/bsefna\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6e7eaf1447dbe8b6655ce044a6e96a4149b9c0accf12b8269807f6403550b150", + "regex": "." + }, + { + "hash": "3157027ee35a0a74c7629b6a3c30044cbbcf1b1a15edb0c5532791188122d004", + "regex": "(?i)^https?\\:\\/\\/pub\\-f1cc6141b50c45789fe35e01808de5b6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "62e5790b606886a82314c7b793fd5ed9ff3318ff34357259cc3b1ca03ba99b66", + "regex": "(?i)^https?\\:\\/\\/btc1qtu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "14eae18af9e54061dac7702bbb14a81b8df0c8a4ec613cc1b715613e2b2aec40", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bafc7205841e6b720125343265fe6beba0998152951915632567868fbd8313d9", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "300b420432c69bcd98590799844dd3c9dddb26372b81783cc56a4f4ee16301a3", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b23f3afa4998f560226ae85186d865f51c1b77a30fda79f6b8337490a1c6ed9b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "54f4f3e6d92957a9df6d177f4d827ccd8c531b2b5d321aca4fc7b567ca6282e9", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0020a8d5155beeda06e1ea76e8c0e6eb394be68e62946db548ef7440e4f536bb", + "regex": "(?i)^https?\\:\\/\\/btc2yjs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ec5f810d5afdbe5479b8b2f37f96d77fd75dba6c1d54f164e71ef14a0b13ac2f", + "regex": "." + }, + { + "hash": "39fdd31f88391ea36c8425522680edf2021557fc28c9f0d2c8f5a1d8c20cca16", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "995010336e21ec5e1aaa9c617054c2dd5bf3618c1eb5b11f7f1f7e674b8c5357", + "regex": "." + }, + { + "hash": "0031ce98d31ce1ebbaec6a7609a755a305a17ddd24ac0d3732fef3de020aa914", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "60bd0ebe52b256ca17532a8a9ff25bd9b651bb9f3b3c3567498f4d9a7127abc1", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e8b97a2f9a0e1a5e1852af010eba4476b49b6b9a0887f8dddabf5850a2a03aa3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9960[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "24658ed2ab6132350ae6e496381f6d8c6281e88afea44d193a552bec27f809ca", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "88b0806587317d071f86ffb16b23492aa07285048c410ebd8144e6c56fec2ebd", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "032a9bec4f8bcac8ae92ca297b8d877e14bb3fb5f9c76956deb6467d946a36f6", + "regex": "(?i)^https?\\:\\/\\/btc1qwq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "39fd70f32b49a27df501ec00dd34d22f5b92ddba28610a06e8fa6c1c34ba1b1b", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "663eda4b0325ff5a62c2b516241781fa1e905733a80b77231081fa549957f3b6", + "regex": "." + }, + { + "hash": "451ae56927d8e0113347c1ad690b84885a67e41cdc0450c276e97f837c601b76", + "regex": "(?i)^https?\\:\\/\\/btc1qko\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6ce423a126285786e2ccd3421e84b87490905f49b177320f9b82bb5cefccbafd", + "regex": "(?i)^https?\\:\\/\\/dasdas832233\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e0df345e6c9a890235a13c031c19383914ae0f57267b036e949202502d56f633", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6d74fe84caa705ffb4ccb15fb6166a9aa4afa4d612261d9da58ddd084951a8b4", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "670d8725b0327faddb972a9987436fb03159b9313e32b7c48b19ebad5b5bb3c6", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "dc3bdb64710db30d7f3354128fb0e10006946fa753719bfe7d4d779537e0d3d5", + "regex": "(?i)^https?\\:\\/\\/ndghrq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "96e609b8147370442b8d4e5a153c0cf4c42a57cf7008ec24e21fe76adf3660bc", + "regex": "(?i)^https?\\:\\/\\/hfgjtd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "381b1e66e5f0b5480f611fa23883faf376917c1bd5085868bb992b04370cac9c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2etq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "86dd878b1c6081eca1611ff0fa84597bfad6f420b73983a6d50a1e32d814fd3e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ba84c9e3afae3169b12580f5d774c850320f671a711e21c883e164d700b450a1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a65d825df57df6762f206b03f07cece453a57e62e75f8b58c3899f5c11342825", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "53fd8181be165833a28df5225444971ba2258e9c3c2e6d6708856268557a68fe", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4d84500e6ca8b77f6c0ac0dfe8fde32b84182719324ba5844f827db35acbc60f", + "regex": "(?i)^https?\\:\\/\\/hfgjtd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d0ada4a29cab55d3d005421eb475575909cdefb95e6feeed93fdd3d43db7437f", + "regex": "(?i)^https?\\:\\/\\/bbsdgh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c091b7754ef3121f7f1aff86de696662f69f165b737c33364f6df3b2c3d7d286", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "18c96c6d36482e3a685e9d833a284308f0cd28506736b3f0d8656ef1d5f14875", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d1ebb9b44be97cac432ac6dcb10ae833ffb37ebc2c3bc80386a82b4c0c95147c", + "regex": "(?i)^https?\\:\\/\\/bsefna\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b7429ec4379713c1054b04fdc8b108c10d7439119def0b9507cf59e6fb87c", + "regex": "(?i)^https?\\:\\/\\/parlinkiigofgbt\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "8736da2aaf61189e5b528f1dccd892fb9c29e89eebfbf314d109bb2266073bc4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1yuh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4f39741df4b52341254a316183039d07800b10d0b54831245c7747c1a17773ed", + "regex": "(?i)^https?\\:\\/\\/btc1whv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4e725655842c5b1873da8c230d00eb06d9a3b03183789cd453fdbadfd6c91250", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6ab0819ad8be9c6bdbd51beba135bc46b10bcb5355309d3c7443905ca47a08ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "5ab3888e84086d16d33744d16088cd98a7ad8eafbae92dbddaec68f6dd2a5ab6", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "99f980a318d3338d701cca33601a35369a0a6126b51f4d3e70ea479b1d0d012c", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e8b97a2f9a0e1a5e1852af010eba4476b49b6b9a0887f8dddabf5850a2a03aa3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9960[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "786d3cf2aae0e9fbc75fd2e44f5c1a4738518f87c4c3cd55788db6648c8cf97b", + "regex": "(?i)^https?\\:\\/\\/btc2yir\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4e7292ab30906dd4a8a826a9b60eb1471d61eaae9e10e98b2194528a261381cd", + "regex": "(?i)^https?\\:\\/\\/btc1qsr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a6e3bd5ba06dcd97b55ad16f28e49c6c06a132594aa0565bafa0de7e07b7b8f1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "56ac1a3d17e7de9ac7f31c85e7ff970b62f3f73f1d1bcba5aede9f40d66b82fc", + "regex": "(?i)^https?\\:\\/\\/btc2wzq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "09818e556539f5d094c68934a26a973e55f6f3db32ff7d404ec296c5c2d40375", + "regex": "(?i)^https?\\:\\/\\/btc1qyk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d5101f57b7ed1fa0d5bad3f2a6a05d191d53e7dd3155486ec5fd2ef48f5b9cea", + "regex": "(?i)^https?\\:\\/\\/btc2qhq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a996d92f83d14cf4a476a0ae131a321fdb067f385154905e4a501075e22a745c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2etq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5f89dbabbcce32cedbbc80a3f15b88ec010937e92ba73796ed33a68b6a9dd4fd", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ac518352f71902726be593a52493e83425a6f22f86f96c344ad10e8dcf4981ce", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f84138935884eca3e38cf49a855f1d4277645923bdd5f14af74e4fac1715619d", + "regex": "(?i)^https?\\:\\/\\/dasdas832233\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "631a5e529098d28a34eab43741d125d323256b7a5e1cc74505e891ed726d95e5", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1b1128aaa15c5d57688ca3e41db3c319bddb734658bc2764f0b2d2fdac416961", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a7620a31cbccc95e1cab1081d66e826e1c948269f65cfc6d4ea50220f933b652", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6157f6b6a3e9bdee3b8c7b953831eb264a81adbc3ddb6953932071d1f4827231", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "212bfc3ea8671b3d3e4824b0a4e3d8ee552e2877e40a541cf276990ef604f3b2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c90a85b327975ed6597d358abe68370617ed3cc511e52da1a36690ffa524c515", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "be28e67e36442a3e711e64bdfd468387c3dd086d7761b695d795cd9ad5ec9888", + "regex": "(?i)^https?\\:\\/\\/amazon\\.qeykljhpjc\\.com\\%E2\\%88\\%95envgophlyf\\%E2\\%88\\%95amlqlozm\\%E2\\%88\\%95grmxrxa\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qprlgjjfru\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "089411be118f4c32c9237c3ad557b1a1362a4b6fcd574ba733876b913263cbdc", + "regex": "(?i)^https?\\:\\/\\/btc2yus\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "34f5ae21247395fca84ee4ba76b7ec2a5ff0cbe7d264c9e0102f00a736827c78", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eea5e03584b4f1abf069019780e0e823e8fdb2551bd6e6d9456e8bb1171a9334", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6865fa9c40c7f7143adfb1f35167daaf6619011dff04a88bcfcb369dd46c3641", + "regex": "(?i)^https?\\:\\/\\/gbdhrv\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3c2a1be85cdd0df69568a858a8b211a5c09905b4b212ddd29173c310626f4708", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3cbceffcd780655d2a4a9eb21d89c26c8f52dbe02ec958e6deec2a35faff1bd7", + "regex": "(?i)^https?\\:\\/\\/absfvs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a4b59f3073510997bc922142a9ee764065a13f137fdee056211d7bf887e9bcbd", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3b0398000b92c1740a57f5fb6456dc886435e6b90d6d85372494db2cce0400c7", + "regex": "(?i)^https?\\:\\/\\/btc2yir\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "59213fde293e74564dd36960670fd48f9741e6ff1032566c936375a772abed63", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c66c1c3f2fb470555ad8d9cef5ebba8a3fb0dbd27d930052d61e52a610ee91d6", + "regex": "(?i)^https?\\:\\/\\/btc2yir\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e3fb0f3089c6cfcee7973301f4eb99e9663541f5ad134b75f6c6fca6dd59f587", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e7a635329c655a969fe1284f4afb50a2fe1d7ca7bc95db43e4e9630c62de46b2", + "regex": "(?i)^https?\\:\\/\\/btc1wxh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3111d476227dd87cec7868926650e39faa8f060871958dbe940f14fcc4a5ff6e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1awq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0ff7f6042f81bc56bf059012af4a231a76b6a6710cbd12b0e9044417f65dd9d7", + "regex": "(?i)^https?\\:\\/\\/vedatismetapo\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "985084ca5920adb3c17fca6b00c2e8c8c4e9bac1611ed15d760c43c3d1125fd6", + "regex": "(?i)^https?\\:\\/\\/btc2etq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e9eb11219993c6b23803d4f6f3380127b17de909e1b8015597d4619e9267335c", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6a48a10a755df8ed7e3cf511137c97bb8a25893996657943813e3e9928833797", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cf84a66235699baea7ef280a1bb2d4e278fbe5a9d1963ede897d3b09650d5765", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "28b30e68daf009ef4c1306fbcd467ee041451f916d1767cec7db9774510303b0", + "regex": "(?i)^https?\\:\\/\\/bdghbx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "66f93c66810b8c9e15fd148287780b40a196436af87df52ba84da68e569ec9ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+v1[\\/\\\\]+track[\\/\\\\]+click[\\/\\\\]+1768[\\/\\\\]+45297[\\/\\\\]+270[\\/\\\\]+default[\\/\\\\]+b1871940\\-908a\\-4d02\\-a7eb\\-cadeb746091c\\?redirecturl\\=https\\%3A\\%2F\\%2Fsecondary\\.obec\\.go\\.th\\%2Fnewweb\\%2Fwp\\-includes\\%2FID3\\%2Feasy\\%2F$" + }, + { + "hash": "0f8a50c2754716f3ba6b5b0fc8794d30999652b9d7fb261b037e0049e60f19c0", + "regex": "(?i)^https?\\:\\/\\/btc2zwq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "64375df6d7e3bfd90b9e6e18311905dc555cb38382d9377a9405c4f654433437", + "regex": "(?i)^https?\\:\\/\\/chromatintracker\\-dnaguardian\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "213af8fde285099898fb5c9f1e324a1730b80211ea2a44e5f32b7ac521851467", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "45e7476b34b85313c0f348ddbcb338cc229e1573022c61053d7cf9b63502495a", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bd2a497bbee8e2fd44e08bcefc84e0bdfe4f6f8ba388fe8b4fdc04338c9fe5e1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2etq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fde99f881083c5c3636e1cb97614ff1b4026200f702f8ba58293714b2fe24624", + "regex": "(?i)^https?\\:\\/\\/zdfhtx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b3d5f87f295a29f884768847ae8dd9ec1b4a046207357becab9e930f027f37e6", + "regex": "(?i)^https?\\:\\/\\/ndghrq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b10c2a3916a7be86f740f1a521613992652a0f8cd45c8d1fbaa23375607a28e", + "regex": "(?i)^https?\\:\\/\\/btc1qko\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "00bd46e61d25596d10b402391c989395780c7971f20e6ac344186853e78b3000", + "regex": "(?i)^https?\\:\\/\\/btc2yjs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bounce\\?\\%2Fsbounce\\%3F\\%252Fclktrb\\%253Fid\\%253D704169\\%2526redir\\%253Dhttps\\%253A\\%252F\\%252Fipfs\\.io\\%252Fipfs\\%252FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "ae6c03d97e9571d29743ef8bc4903f86cd4e0075eabccc547bf7501fd4d1ca38", + "regex": "(?i)^https?\\:\\/\\/btc2yir\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "247b5508b68d5879e45271cd6b488abe182112c104d481df4ed4a5cf460fe38a", + "regex": "(?i)^https?\\:\\/\\/btc1yhl\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9675b485ea4b9af9a6903c4929a29651c8e7a111d820693ff6e29c39fbe1428f", + "regex": "." + }, + { + "hash": "1a9ad8e648edcb3c423748d31fb16e42fa82610d410e7c7d03f3b8ef06f51413", + "regex": "(?i)^https?\\:\\/\\/btc2oow\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "032152d566e21239071516e40f40e7c223f48fe1bba051c9e9ff0444576b889b", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "abaf5ce74ca6c1c2d73692ee544eefd11455b4c3b2339c0b3cb1cd569b3e760d", + "regex": "(?i)^https?\\:\\/\\/btc2euu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "031fc6c7754ece639350d2982c3a9ead84118f7ef3b0e6beee3f06f9c598c362", + "regex": "(?i)^https?\\:\\/\\/dasdas832233\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "718a3fbb2552732bcd21c23e926aeff202dcf4a733ea7555b1ee958700b76df1", + "regex": "(?i)^https?\\:\\/\\/btc1qxh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d0d68d6bb378182daa070cd919bbe0e0ee934ef38d764e364e071671a19bad87", + "regex": "." + }, + { + "hash": "188481de13606b473ce1571d83be9dc184607d81827553cab3046ee7c4361466", + "regex": "(?i)^https?\\:\\/\\/btc1qwu\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9491bfbe8177f0b02271b994e5c0c82cdb4ce2bd6a0e7fcd746d2643a09ba03c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wqr\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "494366aff26250f953636abab37341dd4b8411adcc88c4b95098861d140470f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qwq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "11e552d5f4c93cc8549d46f125a899cc584d98e9b9f8b53309a14c82507ca6a3", + "regex": "(?i)^https?\\:\\/\\/dsafsd32323\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "360fa5297e4cef49f594a36737d98ac0895b32cf94d1c7abb7852971b5cec87f", + "regex": "(?i)^https?\\:\\/\\/btc1uiq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a82e1aaa95c1d90585156a6ce5cdef8167b724f8758e0c3753ee4cc3bc92c261", + "regex": "(?i)^https?\\:\\/\\/btc1qko\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c3b226bbf8ac58e4ec297435c03bcceba17036bec9857d196fccae220faf2162", + "regex": "(?i)^https?\\:\\/\\/btc2wzq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ab7d6dd296f6390ba09d5f27ab48a7d29e027447903217bca8cb715c94c77ec2", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bb5295404bb05fdbd22b5500bc55560d30e04ef0149ddf3f264e9dd549ed010e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a4z254\\&o\\=e4w2$" + }, + { + "hash": "5c1e048ecd0d81e3c3309423a729e19f9cb0ee09d3cae448792dcc6746ec828d", + "regex": "(?i)^https?\\:\\/\\/btc1wch\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c97f1203ab68bd5afe5e056ac0c0831423ecf08dcd27c5e38f62f3587279943b", + "regex": "(?i)^https?\\:\\/\\/attcom\\-103082\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bb56b164ab080dcb18b25fa863be0ffd75e2cad6eafcd611af0f0269ef967ad3", + "regex": "(?i)^https?\\:\\/\\/robux60kfebs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a0f89480ad9bf3c732b39cb99feedbc839646011a942be627e10f6f5fcb9f04d", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cfc9604fa6d2fe587184495159d882f0cb268fc8141ba560dc43e6e8f4e96bdb", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]*\\?login\\=f\\*\\*\\*\\*\\*\\*\\*\\.m\\*\\*\\*\\*\\*\\@s\\*\\*\\*\\*\\*\\*\\*\\.de\\&page\\=_dhl\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null\\&vcnt\\=null\\&use_cdtimr\\=null$" + }, + { + "hash": "0cac4e2b6187a1d87ef799edf1fa76f58c5598769871f4eda201579b7846b25c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1ezf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6797c19b3eab5bf2eb1122cf005b9c1d760157ecf04d75e9f38dc6bafb127bc4", + "regex": "(?i)^https?\\:\\/\\/bsefna\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0441293b14b6c1b385d7005ef8b6ffd7bbe76d8aee07d013e9fdfe8cc57f33cf", + "regex": "(?i)^https?\\:\\/\\/btc1wvh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8d2fe77a651a38d77d739a3a545249de808b55dce17d59399530155fb656db4c", + "regex": "(?i)^https?\\:\\/\\/btc2shu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "35f37c00f3071d3618f28056eecfa87a8144b027994f0519d2179a124ac2c5b6", + "regex": "(?i)^https?\\:\\/\\/robuxcici60k\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8c6dd1130bf873a8f5ee25034f21dd3aec792ac1fc22a3f0e35dec1211ea1a9f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e79b33964f28703b0ad1ad838ad8e30e63e6dce38e1531d5b347f373d333eb43", + "regex": "(?i)^https?\\:\\/\\/btc2wgb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "eaaf9dbbb81e065635641dc5faf9dceea27e12a889d6a5b319fb37f672b3c839", + "regex": "(?i)^https?\\:\\/\\/robuxmasit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b65d61562b3b86ff8b42e1a66ca8a53d09a43474bf9e74f74cbeb17678f10578", + "regex": "(?i)^https?\\:\\/\\/btc2eth\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5af3cb9fc21084a73b5d7232101511ee4a44925aa81879435e6c640b73fb5db9", + "regex": "(?i)^https?\\:\\/\\/www\\.vfdsqq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e5056ae7cd53239c4642171352eabe6b4458239c2db71f67e913e75fa5f2482e", + "regex": "(?i)^https?\\:\\/\\/dskadhsad21\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "74479c08e092410c05a3f588ffd6fda47818681dd9aad0c89473dcd743d0b876", + "regex": "(?i)^https?\\:\\/\\/btc1wdx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "05268ecdb502d994b85e528fe8f7ace012f549fc96335546a53649c0ed6f8031", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e0223f6409057399b5d92899d35ce54bcad7f7377724acf0062584d05e82c197", + "regex": "(?i)^https?\\:\\/\\/ndghrq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "63ec5549b6cb45a887590decd60107def3896d65eb8543769371fae2d8400e3a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "99e6ec00ef81105b9d9e150b36481197fa642832a612e48d456444ee47f85c6f", + "regex": "(?i)^https?\\:\\/\\/btc2uuq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9fe231b7531c16b2b4c94fcb14983464ffdd80391ca951d763a2ec4e0f357a89", + "regex": "(?i)^https?\\:\\/\\/btc2wzq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6523624b5d831369e905e04e1f47dbfa2445351c230fb4ae6fde3b61d5a17b41", + "regex": "(?i)^https?\\:\\/\\/btc1qyk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2f41bcba16e38126e61566a005d769a0c4b9994f0683f82890600b74bfdd81d8", + "regex": "." + }, + { + "hash": "bf4dada3582b1a60cf23f1767895738e2c812a7a2157f067ad83ec33aeacea44", + "regex": "(?i)^https?\\:\\/\\/dssads3213123\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "afb9b26c5ed71006663e2ee625d42b7da65c45a8490be4a3aed22d5d2af971c1", + "regex": "(?i)^https?\\:\\/\\/btc1qjh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b070401d0bec65631054a50a76c37074c6f54c98513c03ac87e4426e274e103c", + "regex": "(?i)^https?\\:\\/\\/btc1wqx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "28631632b50db75d8a1f70c2465731568a616662bbfcbba69a77f09bedfcee14", + "regex": "(?i)^https?\\:\\/\\/btc2yjs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1104b034c75393ea6fb36f5f3191f74dea5067e875577bc286a4784ea1b52402", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1hun\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0f732b06c2dca2827ee286f916283847f27b3802c25cf92b0b6d62ca7a6f5102", + "regex": "(?i)^https?\\:\\/\\/50k\\-robux\\-generator\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fe21538d23210c9f9ee17c3344ccb8bbe13a0556c31023f86c4534b36c741f48", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qko\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3d8a09c7fbf7952831505edde35b6874a66b5e58bc7a935c74f1171431df500b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4ad164fd53a56a807ecd175421852af80fc173af8717fdce4d5967f953794502", + "regex": "(?i)^https?\\:\\/\\/btc2wzs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f9458242a6ce75d88af870e089924ea0ff9dc5a8bfd8118e74481a9ec7dae81f", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ad15b3090d6da71f95e50e3174480527722cf99c408ac8777057328aa7399a80", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8c99e110867278ece3781046d2d755147441f03bafdc784766b914aa9d0e00c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mailservice12" + }, + { + "hash": "48ed56f90b5e92788c576b7041e2354ef36a80b5eae6739bdf1f108ac93713ba", + "regex": "(?i)^https?\\:\\/\\/btc2htu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "482a0d6b9a3a3eb4b2c8604126c4eeec1cfa924168844331aae10eee99ec0766", + "regex": "." + }, + { + "hash": "bef4e60ed2c78d0abc7362dad5bf746e29e0c88cbbc869370e5abf0adcaac45c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "913d731fb9d86b87c39706f1d409856356f6de376c990cb857e73db9c8de3b5c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "75e299ec66a64bd10d6d4f63f36ba2cc21aee4d5a1058e00f7ffd9c65ba2d0d6", + "regex": "(?i)^https?\\:\\/\\/btc1qbu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d6fb8e3892332675e9de7be4514c5ba9765bcc33ab59fdf1ca75c67e54e10cc8", + "regex": "(?i)^https?\\:\\/\\/btc2ehu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "dda090326bcc3192b4bf23f63463cdfab8fac8d743162413e6bba2c30bfe7cf2", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9690bb283b2fe62d8094c8f386b0bf312bd4cb91b0f2d1640cb1f92f1c5e80a0", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7d2c9ffa31c45e07fc43ea94a2744b8ad4d7b949928eeeeab8fd530ef66ee357", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "11f5b7f78fd08be497ac878e27e6d6cd5c21fca76cd5139ad9f064cee231958d", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4b5823e624ca672c0688be6c8f26c0dc08648a122481f0a833c457a03bf02224", + "regex": "(?i)^https?\\:\\/\\/btc1qgq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8467964ad3665db4b8e8eda78d707799d2431537038b9a63dfa1f6c408cf41ed", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c43d627907f137c1f1489284936825e27028b3eed824120c5af94964742f45a3", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fa524984466707ff4cbefd581d34078b5196530b9104ac1fbf15fca107119d47", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "39f69d2ef100f602e45826bdd148ec51999041a7f17a897b7edecae8f8b2f69c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "901d7e475c0d782bab7ed8c9a92f27dfe2bced35615c1aa6407a1864c7d6172f", + "regex": "." + }, + { + "hash": "c4bf1e9aa931ce4ad16ac84c0275ced0b4ea8b94bbb1180597f2244b2d17c1e6", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6ce4986301b2a1f5f346bee2fd4a2ff6da8e77688aa789b2f2dcf3f1e40d9c2d", + "regex": "." + }, + { + "hash": "054cfeac629553224ec73815c9154204c10941e15791ac86ae02d9838a878762", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9dd8c78537386b4e749fa3f4b8f24ac2435b371ab704b284d00d592be9ce3608", + "regex": "(?i)^https?\\:\\/\\/ghcfbx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "98403a13a7d329e31fc1a834b806864f0ccfa5f2327c83f68bda44b3ad9eb620", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8c3edb96c197854da0b4b64660e24dbbdca7bf906edeea1bb4e256bf091b2345", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wby\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "90b5f157d14831e03d8f95f9af31ae7fbf2da06ccbd072849eae74c0d7d7265c", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5f896cd605879008bd4f17e020c5f8cd9e0c9014d4070c9e292b0f18b35d6c66", + "regex": "(?i)^https?\\:\\/\\/btc2wny\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6fc511d4e717e8dfbe3a51423dfe3ad35703993bad5d1c8a1e9b2da62ee75d01", + "regex": "." + }, + { + "hash": "3bd184e4e8b420b3984023d87d52ccf61e6601b67ed29b5b4f0f4a031e0c6e4c", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1b0013dde3bb3ac8b376794280a86b99dec472f5b5c65a3ee17d83f144dd55b3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qko\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5b32aff46e5748d4fa2763f95f6891415345188d9244556347cef74e57d2efd2", + "regex": "(?i)^https?\\:\\/\\/btc1qgo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2e82e880441a465e251346cee084b03f9919aee20760461dc32ed3bd069039fb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qko\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0dcac211b083daf29125f14f0048f63db64eb61e7105e1a7e155333aee0d2e41", + "regex": "(?i)^https?\\:\\/\\/btc1qtq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2f4e17d2db3b7d59c21303bf256605bc391403e2acc04aaa2f66b9e3bec69c7b", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a2465eb0dba3a6bb26ca6567fde95392d042acf24e4ad606c794bb1cdde792d6", + "regex": "(?i)^https?\\:\\/\\/newncsnet\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "10bdcbf28f4292db25bf1532adbe70ee33ae8fe050e989263955bdbb3db91da5", + "regex": "(?i)^https?\\:\\/\\/btc1qbu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "68b81d0a3451110a0a665ec6edf38bba001cf6855403bac182232b37b7cd1758", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "59a69e7fc22bb5dea1bbbdf40dc56ea753dc82a365846cebcb50b3162b01d78f", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "eda9c51d02179b25eb03410ee7ea4757f3a88f50ad1da5d056ee40778ddd52f1", + "regex": "(?i)^https?\\:\\/\\/btc2oyx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "241066b4e3866fcc9e6d5640651f6e173b63348eb1ac91d351e978e422ce2124", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "855439cd4cc47af98d150eba23ac60c383afd70aef66387d6e1475b3865561be", + "regex": "(?i)^https?\\:\\/\\/btc1wou\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "35c234cee0e10f0efca5ed8282e53222a488d4a53a90b0aeec15e4b25c0272d5", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "842a542712a9ca5e80553bfe480cd50237b4ad480be21a9f0533d02e9d30a5da", + "regex": "(?i)^https?\\:\\/\\/btc2qng\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a818c853607e4ce5d2d3ba05a350eba87943bf97ebb70a676ce339025ea8c9ea", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "89a3b3e1ec69452c621d0252a4d2bca79995df50efd2b936fb8aa3e7ec9f7854", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "eee7fa3e7378a4b3b5cf4c8e21268f3030794e868bf62e178fcd66fa61d9693b", + "regex": "(?i)^https?\\:\\/\\/btc2wby\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e7df706f2fec096396cdbd40f65c68871cd293a6c631f3e14fb6dc0b77b49ed9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8cd48eefe3f923eccf7fa07bbeb6d193d29db5acac0e6c812b20d190751e81b5", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fedfb7d266ef1e744fbe821c51c4179f5186e5e70a92135813839d783a075247", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5669bc2695a5a1c4a6a62b964058340fa9a4b3896b46a50bb0bd50cdffdba696", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d7cd38f3268304a244e9741ef3d211b3383ece0cddc3dea1440ae24ad64f2c06", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e198a212663308499e965ba664e5d321703f67532b1c89cd6d017c6ae2520611", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d8771cc2d2cbf15fe31ba929a7c1da2c53d4b12d9f837e8307ef417aab60a851", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qxq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "be2589d63ca0c7c10301d0bd836b392e71bfb64ff0208bc4bbb224d42fca953b", + "regex": "(?i)^https?\\:\\/\\/btc2oyx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "27c4e74cb48581710f6f73d1a9c8364f88e8ddf30d0c839ea186db9fb748e4a5", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia2024\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cfdde44d37bee9a0737d726d45e8b3e9d2972a99fcfeb18557547a150b402dd7", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9ef0c1fc46285b0408669678d3d5475ce9588d6aa1432bcff221e768e50bd664", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "27d05e77ac0e9fe47c58ae93301c2c7bdeea092d0e61549cfdcf6c3743d2a8a9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "04d4861761eb0f0a0e61ea34c7bf2f9d6316b52c69bd73e803ab536f2705ef67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+so[\\/\\\\]+65PDemvtE[\\/\\\\]+c\\?w\\=tKybV1mrjWI_S2Fn2CvHNHo1_fHdGZDdNCilCx8vUn0\\.eyJ1IjoiaHR0cHM6Ly93d3cuZmlsZXNkaXN0cmJ1dG9yc2xsYy5jb20vIiwibSI6Im1haWwiLCJjIjoiOTk1MmM3MzItNDBkOC00N2Q5LTkxMjMtOTQ4NDBiNDYxNTQ3In0$" + }, + { + "hash": "6e105af011b10bced1379eb823456cc9a357a3fd439501aad55358b4105ec57e", + "regex": "(?i)^https?\\:\\/\\/btc2urf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a083909d5ade14eeea22245966102d6a2f8e5c316f831feaa1100ab8afedcfcb", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f091c3684518db8c8acbd33b2eb081483b7b82b3aec4c31c169719b46bf8aa1c", + "regex": "(?i)^https?\\:\\/\\/btc1qbu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a9d35f13b3d7efe8ff90a12911456dcc3f63ee19e96bdc736fc62846eb5c2964", + "regex": "(?i)^https?\\:\\/\\/btc2gru\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b8bf31c7f5812029adbde5601e8b1186dcc6cb200be158b64983c123558d6517", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c74360310f8130cbf9ad63e4cf679f9bfb54a33ff7f3c6477cd9034949edd6a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9023[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e482dde077d9e779aff2624b8f216d26809541700b82767c694a9e9d9a07f01a", + "regex": "(?i)^https?\\:\\/\\/ghcfbx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2fc43d7b4e064d553529843fe121c4e7acf384420be5ac47adb30befee7a1290", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtu\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b30b2e5c9f6d36df6fe5d10d6308bd7a6c23870dfb85fbd968d87cb47f1a66a9", + "regex": "." + }, + { + "hash": "21ce416e6f9920bb38ebe00883acd55684889133cfb3c71856d18c167f2fd2df", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a7c04fcb60a361eae09c19323afa027383dee1ffbed4a4e14b2a82488dd83d75", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fbc1b0443e1c6e32be9e065dbe9291bb5672e9951ba7c4a8a7011b49cde0fc13", + "regex": "(?i)^https?\\:\\/\\/btc2ehu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7cf21379ed9a978c3390ab2ff6b5dbf0789c3c4934a1737fea73011270725834", + "regex": "(?i)^https?\\:\\/\\/intermediate\\-developer\\-raj\\-0\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "afa1b093922dec41024ee8d774eb0f923b9274f47b2451ac3774145e67dcf801", + "regex": "(?i)^https?\\:\\/\\/renewalmember\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "954fd6965291e411b2f9a178bae2bf6b506a6f3763e2eaae485c81e551f9945a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a6c9ba4c2a0e93565da4db517e0bbcd1790ebe15f1fbf27f979c93ad5a66f7f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6d3f6259d016cb0016ae9f8378c410d693d9fec87e484be390da401899e33cd2", + "regex": "(?i)^https?\\:\\/\\/btc1wby\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "50e022f26e67aed41c0a54c7f79b1a297fc2be4a159d65e90fcefc0db1c10987", + "regex": "(?i)^https?\\:\\/\\/btc1wby\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "61ffb97dcfb24ecf32a44a1cd9e0be3da106bc33de8e4b40b1011716979bc4ce", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "84abf55dc80758305291991d21402b78f89119d69efe7f2d23bfe9ea55ced84f", + "regex": "(?i)^https?\\:\\/\\/btc1qez\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ae012a542481f54719c5cdd7a4124e9e050cc377144dc3d52356542b11df1a3f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2euu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "417c9693717a3ffc710fb7421573ce37765f4acabed546c9d5aebfb25986f77e", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6403ace336130e12b3bcd99a55393744806cdcc46ebb55c6e0b635bd3400b52c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f753b056e6af7af6fa30657e78e282390dc05095bc90726cbf7d42e752d5cd85", + "regex": "(?i)^https?\\:\\/\\/btc2urf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "baf50b0dc83f4cc00bc1a773e0c2bf9228bd919f25710f38e70b059d7c723b6f", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia2024\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "dbaf665ff0454612ee454fb6d800e7f75c895645c36294e33f31ae86c8cb5544", + "regex": "(?i)^https?\\:\\/\\/btc2qng\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3f7f82a681babbc85b511ab8a0160038da36a4c2484c8970cc099ea7be99b944", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qxq\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6f54c2a3aeeb599830abd97143ee9c434c372702e95bb0a2f3112f14a2f73cc8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "c43e84e9cf70473fab1aba06987db8fa4a6e3f6fe7afd4754b0c129c22d5dcd6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2yir\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "caf1ac86c145a2390b5eb4e0041d5136f49f0da8dad96a7879bd830c5a4afb00", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e96e6c2ec80817ba1a83008a31fa943763ef7074b383c870e8fdf5c469b52ac0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2gru\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1a98210f40e44d00210b7ce007faed5d3680dd10da8db217104e0b57409b6b5e", + "regex": "." + }, + { + "hash": "946fc61bb90b7881f4ff9e3ccf384d3d8322b9eecbaa28894439363406cf3a06", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3e98b4c8fc6f7f2f07c36009260b3e925bf61076105fb8da2094863631629928", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "296450d7ed4e0abd99c54499c1911fa6543afe016c79d27c473fa50eee181aed", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qhq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "52959f58200e28974bc0f9fe1b8796aa0b68d30a2e558986fcef430ccc422654", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "13aa0546ccbb08a25298c3e96fc9fb15529805afed6a59e52d09da5ceaf064a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bqq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "dee210ec3afb3ad3a91eff97ab2fb7bb3409e5e5c616024a65c83cba1c4bd7d2", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c873e9cd5795b47e7259cb0fd30ad93b0bc0aed9bd7756d6b9ee18839e4144b6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "20dd0a8e8ea3b83975643e8354d8b2e9b2ef362c1bc9c4173bf14b5f908c9a38", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e79b04f5387fa35e0c0db9e66d74eb4b38d83331034259f06f071147d68a198e", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c4997a5c1eb9e72a459c95c55b4c62a11f5b153eeb20e74de8a4d2a1424da904", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c01770c6e11f93c8f645e4507c814da356ad7adaecad359db95516b0317a40a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b298bdba3d05457541d8d9a52cd77a8a01fb2710c380d053201569b402d73d03", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f8a66b401607fe5b6c69a3e4cef31872a69754713931f7daee0952bab740e93e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wqw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0541a4ce86ccecea5c2a8fb7001eb1a53d9d9675028953205351067a744a3518", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c9613bf680df11b7f007504c19a36c74a60bd7ed3a91c1d0dd8785361797c7be", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix24\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e2cc733361fb5c065e669fa20b3597c33b0f4df8a885c5cf31fab0dfd2ba9153", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6f4d2aa8f8a57e698c472b1448754127bc5c31f55a6232f1d6d9a8dc5bf4fc9f", + "regex": "(?i)^https?\\:\\/\\/btc2qng\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "45419af67dc16c42d2dbdd946432d2d1c47b87f688d97dcd8821f1c61c2885b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e90e4a6107943c5e7554558f4a1a8d0071b91898036d624a90170e589f582eef", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6d86374a18a9f946b6a19b4c9def3dbe3242564da8e166e8bffa6e4105a2f42c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "28159e4de853f0e12ee40fbd2796c0e105ab8b76a8a4cf7805bf9eeb71649c0a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2euu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a08d45604b27cf3254277d46191164cd09b78e4cd02dcc3a27cac26ebaff3796", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6ad5e5c5e7400a14c811aef159cca0226f4841d476e52108e3d1a2eda57c0fa4", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia2024\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "003dba9f9df8a4e238df5c6b2921aeef3cf7a622ee53a8b470ee71df25285bc9", + "regex": "(?i)^https?\\:\\/\\/btc2qng\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "80c1927678843d11453547756057cba6e282ac99bd979ddefc6b0b90d773502f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "14bf8cda677c6e0e854332be2152bca297451d3c2bf2c76935c3c0969112d15b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d1ed964ae67ac6d5d7b11e989a321c51d2b3654f379d92d2e9fe26bb4ecc3f04", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix24\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "29e1aec8c25f45128bae02829f3ba028a3df6d5da94270f60ce8b5cdbf81b2d9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a4aa344b1c105e06361325c15f912315dfdae0fe9b7085a7778e100a6c2e8745", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "011e1aad126acfbadb5774c11b844208dd62888111091969113af971c34d6cbe", + "regex": "(?i)^https?\\:\\/\\/newncsnet\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "78ab62dfa58822685e78db4bec1ec19ccf19d5c79660f83286d687ed9e6e7c40", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7129c2c9c93c61aac2c5ab41001163810602fefb674acabdb9e257d22ed7eb73", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qez\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "763bb36070049431cca4a8c8c3df53b7d21e4c3ffc679fd9084c7808cc308b01", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2oyx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4eb80ff9f3302a1d8cb0f0584caf81a8f28658b1721c980eb5491efc20e85aa2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2oyx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a2ca69062b9b8121299b4a6872f3137e79f39272882a0782330357152de4dc69", + "regex": "(?i)^https?\\:\\/\\/btc2htu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "876c48ba66e975ebf49ee00c7525def22ed5ea11d33f33611eff1e096e9bb6a4", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "08336420dc83b5a315b1aeddccd74a3aad4f850574258f39f1f9d4ecc7fa0328", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "65e71c59a8f171033332c09eacbfe79a36023845962abbceb4b35d7e930b5c68", + "regex": "(?i)^https?\\:\\/\\/btc2wzs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ee1fc0921ecdf2413e9278b415ef3d6afa49dcb0d7891bd7dacbd87c0fc82786", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a6c912fac6c73a261ce73b9a1beb43d61f1ddd94b0cb54ce81ca79a8dbca9bc8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5b5e465448045c81bc8cc6a35dbf37758b754bc440f73679f4c6e4a4e735e9eb", + "regex": "(?i)^https?\\:\\/\\/btc2urf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3723c6d3333f84100ec61a4fd7eddfe2822f9cf1ace4e4c4d0730659a23308b8", + "regex": "(?i)^https?\\:\\/\\/btc2hty\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8a30d3e3a68e5eb0ab9fcccf4443f33bda7422ddf1073672a1dba9dd26364214", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qez\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e7cc896f8a67c5700466081729637e417142043723a389127be327d9a81abe48", + "regex": "(?i)^https?\\:\\/\\/btbroadbandisbecomingee7\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "66c9c1547c705813c58115db1d75cfb074caed48cdf3fb2a496e2f27745a72ed", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2yir\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e8b97a2f9a0e1a5e1852af010eba4476b49b6b9a0887f8dddabf5850a2a03aa3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9960[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "879ab0f8258eb0d9d1556fb0c4902234a9bd0e1b199c58fc61a6c935eaecd299", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e8b97a2f9a0e1a5e1852af010eba4476b49b6b9a0887f8dddabf5850a2a03aa3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9960[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7918d50b21e3a10a490baf94f069e6a405bfede6ab2bcd88851af50f27865556", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bc39b37fe8069fb690a1ae8d071ccfb2cced3a3581e8f28c42e09659fb1e1dc2", + "regex": "(?i)^https?\\:\\/\\/btc1qgo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cd5c805e313803b32b02b3e7976fba46938b55f0bd06134023861a2b2ec5b2da", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7eb246373f5af7a1e79782a67f759a87d12de8922733cc3e327d75eee5e05b32", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qxq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ece1e1db5c4838e1d436bb437b6a677a701769f80f15ce23e6eb5c114bc60f89", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "09942fde0905d9528864aed0012854ebacf2fa0b65a0a3da761fd2d8ebeacb61", + "regex": "(?i)^https?\\:\\/\\/btc2hty\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "46cec1e4a76e0e66f019aaff8aa4c3e33acbe73508758b85cbdbfc34ad0551c2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2uit\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f70e6e956051499b473acfbc20c26446a40d2e4e6048d6c90e59741442cbbe4b", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b1654b5265a552e44cd4fb28f82117fe0177fe26f14fc965e2e6f90b022adaa", + "regex": "(?i)^https?\\:\\/\\/btc2wny\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "78133e269d961b0611c7e03f17f1357cf72be377dcac0b537ebcad41019749a6", + "regex": "(?i)^https?\\:\\/\\/gndwhq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "598089cdcbdf49111d6ebaa1aa9b468276e04522b7960071180b37b95028ced2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e65326017c7c222b9807d43f116bb1387a81aa3cf5cfd5ddbae0dcf89f9cb8c8", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "83615e1cf064facb1234a2552629bcfb2960842756f1e44748e757b4bc7639d9", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "aee699bc82fabc99dbceb9fff8a717432f1059a6f3742ea662d988a74727760c", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "34b98b90fd0f85e4dbda0b9da8fa66b39373e388cbf555ebf90d115803f56210", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "892aa8da9d10e868a75b6b58425a87aa3009d689febb204faadfbd960a68ae97", + "regex": "(?i)^https?\\:\\/\\/btc1wou\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8c5d21243cc3e22b6e2c592c31d6768903aa1936cd8ef0f8283bee884eca14bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a0c0dd63693cef4ff329bb09a0ff3b74ff6def1d3c72e0885557c7de306f3b67", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2uit\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3b5cab27d3b7c8725e281068e8a0463c7351097d73aca38c2efab316b7bcc16c", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "26bc4a65914be77a20a1c6d314c69ce7891328e56e097449d434e6a0c21c3d3d", + "regex": "(?i)^https?\\:\\/\\/btc2urf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ce1610a3be79530b2a23fc4a336bcd79a6a7fd78490da8d8f2c409f72f154fb4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgo\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "60769f54193ef0f6322de3369678472c030276264e7c64d8a0e474d7b218bf7e", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4f4071f2ab6e0f20f9a8703ea84f3dbb988d3a31f1a40b2b448641ae3aa7fb43", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1419fcf0320308eeb700326047befbee597107ed05bd7cf47eaa87a06c6b215b", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6145d429f76aa8bab8bd6102fb45dd9d507b133319436158d88a6d3979d115b2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2yir\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b367718a5e525e4eda66657773916c56f4238940aeb9dd389a4fbade9904113e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qez\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "604b58222c7998bc37a4816248603e508d599391be7bfa704878d5cf9cf74d72", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5b5dacb02b6178deb168159e0febab7cc2cb49fdcaa05c797ff6cf9cb3b68b34", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "07b0339238deecf3316a2f0255b6e7746c3f8f61eda2cf668cc5e5fe7b5d86e1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "dab09fb4722fbf8e570d69be589396bcc845d11e2fea066318217604869a49bd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qhq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "365fad9580b433dce0a00b3a2b42a3a64b8b6d789e0bdcf3f00717c83297abc8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b648b78461cb4d8841a76cb44522621cc0c3482557bd6bb733da7faa501f657c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f5f66247c41734c94ffb86453e33f373cdaeedd29319edb20923277870987d8", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6e7e556f5f1466c3357cbdbc5fc9ada22d7f7e7d16f47a5c6924c6cb6d426bf9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1b7cb310a7f00e0a94058fac9d215403a18248418c6a299c36debf508105f436", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5259b98910f5e4980bc2caf41f17e594bd96e223aceb8de1fc37522bfeb8781a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qez\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d8063c9c2dcaf3258758c64e1ae03dc02f29f5eb92b5376e600f5a024ad25f0c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8f88d2668bc7972416e2d29460e1349a0972784175882d845ab3f12ffc1c55b2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c77edbc09934599228d02bfb45c4526b10f8674c8aec13fe6edcba6c57c5159a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3d4be38ce390e1cb000013b4b0441a2bfed8ee82629100e623c6a59a48e104c8", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "3b2c83c2bdeb9188a52d1d9df1ecb0d25da66b14a8d91dcb867924d2c55ed578", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bd9b63750b088fd52e587cba770815b1aab8e38ea66f8aa495c821f21aa6df8e", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7ece556828ae0ec56230c2325607becf54a0c46bbb1821662c92d333f101e6d6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wqw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3df5123bed9bf33669ae206d2308a6b8f9f3a9fadb986f3ef663907bc577db9a", + "regex": "(?i)^https?\\:\\/\\/btc2gru\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "65f6f009232ec3e2d5bc3e1e1ae0b672e31bbaff74c9d22a764382932f91dd8b", + "regex": "(?i)^https?\\:\\/\\/btc2hty\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2b1a14754e085e662aeeaca00a8bd0452f6519d095a9e764e4603aba60eae9b5", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d87a258421fd76e3d6b219b577b64de5164d545f6f731145433d1397d659c18f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6f3b3ebe69457f8331c74220f38e0c555abdcf60f32a4e4d36b257d51446a3fe", + "regex": "(?i)^https?\\:\\/\\/btc1qgo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b5e32a2adabee8ddf17e40ba318793e8991dd5345c604e3007f6ec5f944ffd64", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8058ccc11273778e8235bb8d99f2adbb39524e7811632bd8a18e959a03d9b99a", + "regex": "(?i)^https?\\:\\/\\/btc1wby\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c74360310f8130cbf9ad63e4cf679f9bfb54a33ff7f3c6477cd9034949edd6a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9023[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "65df101144f9ad6f9855f8bf4cc28a67bfda96ee2054190288136f1936441fe0", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2f19be279575287e160d5bdd10465830c576606bdb26bf4a6a83a3d791d87954", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7e9ed989272981b8524fb0b3d76074b66804c5d4af5ed44ef0b545c1011c83be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2yir\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6af33b6c2231eee79b11d2d8df2fe5b602d28513cc363cac0647f57cac2f0a53", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f798bddd23d5730663ccbc345f9b39acb2b9419232691a50c9629552a3e42830", + "regex": "." + }, + { + "hash": "8666c55726275b894490d49c57505a95c719f092dbd0ed350a77fb42095153a9", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7a0e5db860f1deaec6b8aaf45ec7c8536cc0d6e2e27f77eda18925be2bdc016d", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "36dcd165f5cd4ce1d12ae1496e3b9d1f795c3767ea80fc97d7c14943d807823b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e424d97222e1477889f2b3aec35d4ecb63189b1c3995680ed4b53a477f39848a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "f8ad57fbb10e938613a6b595f06ff47fa0edfdf810df87ab3305fcaa011383c7", + "regex": "(?i)^https?\\:\\/\\/btc2wzs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fa81bd8ae7b4806ffb6fcfe1afe88434daaa41345d3c8ea3c8536dda28b62db8", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fbc9b27fbeef23bbe7b673ad15c1dad3effc4710f813dc6d666807096560a574", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e82d32b8d072c54e1f0d9d4bd00892686724a50607e616b7449cc8b04f970601", + "regex": "(?i)^https?\\:\\/\\/btc2qng\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8c232a1b3f8059ef81fbe9c6111bc18229e527b4ac497d66c3ce8dc2b54c6f7c", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4da0de3a1d0d70d775f126d65992aac29b91d19c00ad25ab74dda76950874408", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d6eb2856210db49b9e826d97bf4b88e1406c8ee71aff14f0f3b944beb8293187", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "77c9486ba287eec66d0c6b3005b8fb31c3803e4c096c254b70d2de3e1acbbf7b", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d614ac9e9d3f4b39e23441b3f7d37a0bf5646dc15bb0a695706f67e4d28dfafb", + "regex": "(?i)^https?\\:\\/\\/newncsnet\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3fbaed4edc070c21731be4fc4bf97e62f8c1b732bedd33cea09d6f9c2b2da020", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "acb5c25fca033808962ea5dea6a02b91625678a04fca4dabaea68db625ff184e", + "regex": "(?i)^https?\\:\\/\\/r6h\\-h0y\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "33765cf904430cf3e4ba8c0769f8e0993ad7b4efc21f1501939f2903c6c5c84c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sbounce\\?\\%2Fclktrb\\%3Fid\\%3D704169\\%26amp\\%3Bredir\\%3Dhttps\\%3A\\%2F\\%2Fipfs\\.io\\%2Fipfs\\%2FQmTbeZDX8ZiPV57pLjJoR786CsU9kLh9J9jMFFY1RSDLLB$" + }, + { + "hash": "89b8be862cd9810527b42ed5fe63114c1d2432ca4dc7edcc321985d32b885ec9", + "regex": "(?i)^https?\\:\\/\\/gndwhq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4e2de1bb9bb60c16fae10776a6652c0219e026f0d7d0bd7500d05e6f549dcb95", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "14b3e248767d96dd1d4f1e3ac26dfd9061af9b02d74528a0c858fc97e9159833", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "0711b6c7291610288c5b8cdb8d8c19c1bd47781ab2e8bd8c90735f92c9584f66", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a20bb23c17dfb0dc5d90ad62b8d8e015defc60830dfc39472ebc52cb7cb55aab", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "21eb979a4ee9dc19302692692f2cfcccd083647c8af3b68dedcdefe78ecd801e", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c989542be7b2c89c9fae984d3b851428bb203603050d91ee00ba78e7de1b760f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "054c465936b7ba40e19f85134db20db83d2332b19a912ef1e1a19e6fc83b7830", + "regex": "(?i)^https?\\:\\/\\/btc2htu\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "71b70afc7542530d1e532380eded095541e8cba2d77c48cc04e56da01ed454d6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7526d953edec07f83a349ec0a467129fe8b58dcb6edde899a34d6da512dec272", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d16ddde7f646d50322d56976dbf81b71165779bb8ec24e10af30539f4b110e73", + "regex": "." + }, + { + "hash": "29b3dc63c4d123f51beef295b3b6dcc381574e7aae113dbc276fd0b386662cbe", + "regex": "(?i)^https?\\:\\/\\/btc1qtq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cb7142c738ebc3cb7e45da192a3c11f14a927bbd0f32496562fef36582e95e90", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0cfed09e3639211079050d9940dc72089b92250b04942ec3c8e9048ba682c7f6", + "regex": "(?i)^https?\\:\\/\\/btc2urf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3cc5f3a3ac360a9ec858d5ea23ad8aa1dec184b8a88e9de84c996a650dbb3362", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e6253fb2883c39bccef9c99a89aae435085d26b7f53aff8cf48963a83e5be79d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "28b4b1e3189a34dc34b25deeb5693c96d8f482e95c24b230bbc0433be5bd473b", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5ab289aad306ae753f84a2e201a5fa8f3c414bfb039ed2110614d5e2b806a466", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6a8ddde76f22809f08447c4b8e23026c8e7edebee19c6ecd4a5580d538551d73", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ddbaa219565d070053e45f777ad2fa6e10ad45f8ab9a631a576077abdeacaff9", + "regex": "(?i)^https?\\:\\/\\/btc2gru\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1e7bf696c58837abe7484a5bd3ad937cba4bdd9b6b6b497d9ad68e5bc8d529cd", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0eecdfc4f8fad66e6ed3543cd6c6bb349ff2f09e4c83f0508686479737048526", + "regex": "(?i)^https?\\:\\/\\/pay\\-paypay\\-ne\\-jp\\-ty35t9dj\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "521b808b2fa1292aec59ca365eb8e136fadc9ad0d0c29ce5c43965b51d6ed2de", + "regex": "." + }, + { + "hash": "dfef862e25d04bf92e3c0e6c15ab7e32824cb9062b7610db6520041204684e4e", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "66fbd7a15d78dc620a3f0c89ed6c6299a0a60d7e15f8b858762270155ba81fe7", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "813c1705eb7fdee0bc91af6225a23a7396aa7cdd83563f0fb7313438626b0e1f", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f0ad5302903fafa2889d91ee2a2a57fdf7cc0eb29f30f55ab3c02cfe2713f00d", + "regex": "(?i)^https?\\:\\/\\/btc2qng\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "14093fdcb9570855531bf1d2e9497dc19b4f2f6504e7fd5fe326a2875f551847", + "regex": "(?i)^https?\\:\\/\\/btc1wou\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "25ccf927db12a7c5b58b9d397fe27c71077c133ac3477f136a0c974a59a96e91", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a38afb6703c790b5565cec885bf9acba729d12e6faf4ba02c63f2e6c06d984cb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wby\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9a73f2778b289b7c33fdd6074fa758f7a57696dc03f244c35e5b990964f720c6", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fdedd1833d9c2e0daa68b10dd5c5e1800a3516d1669db9c3b93d96906deeddd7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a9adce727c976c86596e5357f807fc94847e60fc708a13498913cce241994a84", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "305c4900ce20ac7cc88aac45d8feebbb76fecd7b787aa60aebc438210d67f372", + "regex": "(?i)^https?\\:\\/\\/50k\\-robux\\-generator\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fb8f8911ab813c48f0de5f0211c14e7280b9c93b5e0b9e79ddb67f00aba5cd2a", + "regex": "(?i)^https?\\:\\/\\/btc2wzs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "69e6857d19967d3164bf0b1252ae648f412cd56560d1236a5a161eb521e547ba", + "regex": "(?i)^https?\\:\\/\\/btc2qng\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d264b907e1438e10b405707fc46bd3975561652126e09542f14ffd59a529da24", + "regex": "." + }, + { + "hash": "c4a42143c3db5773d9e2b8eadf9678485f9f5d22b5e9962d3392e521c057d116", + "regex": "(?i)^https?\\:\\/\\/btc2wby\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "777133ea260cfa003b283cb1cb0dbdabf1950fab16580681f215665f1c4a9e81", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qhq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b9f6ef9e926f577670cac411bb54ad3366c8742843b8663cd709231d89f350e4", + "regex": "(?i)^https?\\:\\/\\/newncsnet\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3fdda1eb1d7b077138cc9a5be5e7cd87ef88acab8ab8eb226f5cf8ae616e70dc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bb2521d576920a7cfe245ae85c5c834e5ec9369a78818d474c27f430d7e341dd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bqq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "45966f07c5f1c373a9e9398b31ed7f23815fb343ccc07c6b1652e4e17c97f2b5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wqw\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0d1ca5e8bce54812a33caa008e417af44773a650dfb8c94bc89b6795ad557758", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a340be2c1a1ca8cd56f7a93bbbbd212271e2db3b968329a16247707b385e63be", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]+zone[\\/\\\\]+b3b32a2d422265cd25c3323ed0157f81[\\/\\\\]+_we_transfer3[\\/\\\\]+login\\.php" + }, + { + "hash": "eec3f93668dd1ea1268b894ec3179fbf5fb6ef6753aa7f135153dbbb18c0b072", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "be25518150b5fa9c27f3934760def85880f50c8b96983ca0d8100e87d37004e0", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7690f0791f3a466845a8812ee1ce0d21340528fedec059d61b2f403a66196ff2", + "regex": "." + }, + { + "hash": "ab3c18a4ad0293bc11fe0d77fddcd2b386c33abfc0a7321d9c522c851998e8ff", + "regex": "(?i)^https?\\:\\/\\/btc1qez\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "48ed0212f3e35bd5423c2ef6afe877774c1775b8b313969b1945f74c3684dac2", + "regex": "(?i)^https?\\:\\/\\/btc1qgq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e9b6ec3a3fd75de9b13c06759a9b494bd6c662085b470a27749c86d3d9b6b7da", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wgb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9a6852a87f893e497009c986136a551df5689ffacb4f547b04cdb3c0bf635a01", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "62b55c63cb627138ccb706870dbb0c3cb54bea3ba32b49f019a687fa46bba824", + "regex": "(?i)^https?\\:\\/\\/btc2wny\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "42097bbc823b100914b3077c287d57b0c1c864b34289ec9ab660d752e9b02bb6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "05d0715f72942babe40cb439ce1e15b4effcbb1961b28f09100946c56ca4ff6f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0542434ae0486bf7680f61ffdad79803e83dbf538f651d215630b5da9129769f", + "regex": "(?i)^https?\\:\\/\\/btc1qez\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "113792ad81bbc60f07de0637e780d2f6598b9966b4abd4f35be16f8b292088db", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix24\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2bbdc306e013e66dba35940c0f52ab27dd8e1b4eba98015d28b89bdc678e4b78", + "regex": "(?i)^https?\\:\\/\\/btc1qgq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9813f3ce94e13d36f6ccb46a1548c5bec67a1e271d6fdb1a52eefd7932ab1e92", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a390aba0d94a34b8d26ec157a84e00c540ae4fd08b94d5d5c90acf846454f928", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "88eaf7b83337bd07ab96d7827764bc2718d8f34189a2034e41a8e68790a4ad3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "afa37c416d8375ca87166a4141453461bc67719eea8e1d7547c3563264cdb9d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c07048d89dfcedf3258b32ada34a8272e7015790025153eb5ecebd7012f2d809", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "633f2e6499f0c354e1b1147b012e64361f00567c3e9b6e67e83ee4bb195d5d2a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "45786325002f05684dd52068438c17654a468b7115090446d4f0f7d0c2708ed6", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "974ef6a8f17cced7ff7bbc414182e4c005622b1cbc62763b945209b83df727af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2gru\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "94251211b18d352cc490867244c151652802e9e79a5cef13fc06fd2f771b68eb", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "64725b84080471fa7f28e8a228ca59ff19b435a13c488f7232fa171f011a9f41", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a4fb2056785e4cbb947a2324a778dd905c8e58f68cb09b6c85763385e9059f9d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "06f11c53226ac2612a2cc568228cf52c32c6a7968b2b7020e35ebe3758e1bcc0", + "regex": "(?i)^https?\\:\\/\\/50k\\-robux\\-generator\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9996d2f164ae5a7968eccd173d0e24c0d8ecddd59d8c58dfc26f6aa3a36d23e0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "b23257c7d3e60390308b733c6439ace503490c77dfee02c5fd057a270597e2ec", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2317b787f2a60748e7a26908ca7add470def4d657d0701f424e964bdfa790c3d", + "regex": "(?i)^https?\\:\\/\\/50k\\-robux\\-generator\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "26c7be989e92fea6592f7159c0e15d5d9824a174fbae213b9dda5256651b09a1", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7129be28e3b59421be7314e8f88ea23f5d026d4dda9c3b1a005549eed992f7fd", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "79208f0e51fc66f77a31d667228d5c204077fe7d23e7055b712d5957cf37020b", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b5d529107a5b48d630a83b12668f74ee563dd0402afcb481bbf99ef1f29a2132", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b4dbaa2102622c5451de63a65cd582eb3a382f5f7e5f2d9fcf77156bb4087a20", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qko\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3157fcc90e4f2b8b38ad5008b7f7837dd4409eb286c04bc1eca3466865fd7e2c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9d19bd043caf0bf479c9f8bd95c0fe6a79599b61144c55f5aeeafef5296a50f9", + "regex": "." + }, + { + "hash": "6f1b2c68d3032879bffd38d7566d62fb24eed7be8077c89108ea451ebe1f1034", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c39d1e423f6a87eac66f3927c52a8723563751e70602714c64a02b3e7196d9bd", + "regex": "(?i)^https?\\:\\/\\/btc1qbu\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "22486b2bbe61e66b04a9a1b0fdc4687a73187f2c8a7ebed20f95b9d2eae2405a", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7487c912dc421630e5926d108a08bc1d5f8ae6ce624c0aba5c5498393bed5808", + "regex": "." + }, + { + "hash": "67b4895d2b07908f749cf715fc248b7672d7c541c0a69d9777675ddac1c60cd0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qko\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2c2bf32633e87876af3ca409f5a7baaad87f648484ed2e07108dd9635b91e376", + "regex": "(?i)^https?\\:\\/\\/btc2oyx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "18f1549c41907062e3cf18b2ef0b644cac4cb7dd27e4e1d8d96cb2aae2b09167", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "817f7a6cd075f04114d1a3e06f21de602835c667084c4d16832f649c67f5d649", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "64245e9cb8a594b3a15e5f5067ea3789f0138935c90ed5a47795e9d68081d1a6", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e5240848443e785f018e13db974ebce95db861097abd91153535d0b12a56255d", + "regex": "(?i)^https?\\:\\/\\/gndwhq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5b0bb78cf6bf73bcd4fc80f213a9803d7db8c4de677fc44322232b2622525706", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "451a7d98a68ee14ae335b19c3b295d5d8ae563fb76cca45db1f1be50963fc6f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0701f0d52272fc705dc240626ad6cd53d6e7fbe6ef5e6ae29f43743daece0828", + "regex": "(?i)^https?\\:\\/\\/btc2urf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "dd5d5b817bd179bb65bd31ef1858ccdf13ffc2e116e83c7178cb40abedb2afa2", + "regex": "(?i)^https?\\:\\/\\/btc1qtq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "17518de501fe63b33b0a270faeb2b8f3fe6f82d72d8f454ac996052b571d6d5a", + "regex": "." + }, + { + "hash": "83c08fd65c5ab64579f3af77db01276f530270f191f932163304a403684c52eb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2oyx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8d4350652ac9d9afe7628c3eb7dbb10f78c07322ffa187c1319c41b76e6f1739", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a445b6ffb942a8731a0a1a1721efb393cc2ef51bfdcc24b4c034f74a65c60f45", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "84ab30979798f05a0deab09fa38eca8752b4717cbf7565a91e37094933239e8b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bqq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "64244fef93eef47737e97a42908fe43ca588608b21d040a833ebafe06076787d", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7a879170440d1dbdfeb4c29e2a12e8ddfe35511fae3caf54f0b0b1df440dfdcd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6424d5ac6f6c3c5556cb0a23b59b93ddbbe06d6e4ac3ff08b6f09e3476ca3b7e", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "206ba71868518171fbd54c7b5b2b3187616c83f26a7bd86ea166d030dc99c19a", + "regex": "(?i)^https?\\:\\/\\/btc2wqw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8c198af417e6238e0b4c275c5959b13ef639ae601908c4568a1cbc8761ca5441", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4bf67da99186b4d09a5bfb01a3171417714fb005b61158c514165516b6488bf6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "97ff9199b56a73e03bbe7fcaf06048297e360b2440e82d993e30f5ebda217ac4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2e2a9da246a2b0caa9052d257ef399a43721fc2676a9ff7a53733bdd4e0ef5a9", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f43b18cae3a7e53938cc7df3639fade486a290e4601c50fb78003d8fae81b8d7", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix24\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bfe02ffbb7fca2746b687ed115227a75c55265b001cba1d5e23b8f5912cfb735", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qxq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7c44271718a940068292313194cd9291148bba0aa2bbc20d0152258ea4151b7e", + "regex": "(?i)^https?\\:\\/\\/btc1qtq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c888662275ba86ebf5d84a8b94f7fe73606e52157ee8a49e2943d6921f569134", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2uit\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "16c50539ab20309584274aa741f80d5ebf41d08c717a6fe06df932e5eae16d4b", + "regex": "(?i)^https?\\:\\/\\/btc2hty\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6dd273fa2229756e459b2d871fc9f33d75d319134d5af740bdcd5d7e2e2dc916", + "regex": "(?i)^https?\\:\\/\\/newncsnet\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "becc1cc8b09d6d4e0c0a1e8bcfecc036e5cfe472c31b01be9b0c47973de7a0a2", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "618fa64694490c9e778ae1fa3913a87c64338f0bc9f9a7cc94a5954a36eaaea5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2oyx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "20a87cb88f8b00ba3793f54384193e7b2eb81cdd87cf95946590bc1124a91d60", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e5c23c7d672915b6276b0c1d27176505a20049eae42641c25fcdf879a68186c0", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8f8c9dcaae6d7fa966fbb04bf24386426d85c48846c69adcb0f8380ef7c45d4c", + "regex": "(?i)^https?\\:\\/\\/btc1qgq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9cb8f6cc5370d772d081b84064a889e2cb21c9ca6613150f5a76bd7c40375b26", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e3e96934cbec366c51d795272f9f7204f96d42a8f815c6d64354094e903cc63a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dbbf54c7a226d84e25767e2be9a37971fb09c357dd7859887e056feb4934308a", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7aaf2444353f686ae4f2e02f37e5933aeaf08442c5042cef4f862d9c0dcb9199", + "regex": "(?i)^https?\\:\\/\\/renewalmember\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9cb828079bc41d3a03116fb6b80ce65d5b6ef2cfef3a995e3f011dca1fb15244", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qxq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2dd1591acc229b79b42fa1b4a88e734d01e02855d13265301b9f80e8d066acbc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "61f139d1d5159c8418da3601a192b793a673247cf4298174d10a88b8fac829d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "36390e62b86485c312bf4368320387722c55a67df8aca8e679431f413d727995", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vsgj" + }, + { + "hash": "672224a205f0524ce04cb5a613283c3fcc65429366c6fb45615480f531f0bfd1", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "877d424da60066ad0418137e0405cc16ecf0a47a9fe3ae17a53b008315a1fbce", + "regex": "(?i)^https?\\:\\/\\/parlinkigofgbu\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "49fd5d72e477e93f6712ccf9eeb4b7588717f2c24c295abd1f2974ab5b322156", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b648b78461cb4d8841a76cb44522621cc0c3482557bd6bb733da7faa501f657c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "0824c9435ba3ad883323dddbd59c88edb5f9b53330d880ffcda44344faae5b61", + "regex": "." + }, + { + "hash": "a1845f86ec82879c20251196c96a587b65d8aab4cf84af8ddb159faaa0cb6759", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dbff459ae782c73c23bb460fc0dc7d16f4774858387a1c57df09e316bf9d60a6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2yir\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8c5d7c131c3b1f8216c664b0338e18d4c248cb1569b7b032114e92d53cbe6013", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2a41572b16f3ca6af62d2479fa93ea018a07e630cbd3cc1273f80094267848a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qez\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "95d8de3a808333b6f506e6d61e2c0f1ca26565ef98dbceb920080e7bb686ee50", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d0cc363ac591a6644e12770682d3a6b5bb8cbf15f28570b9359c52e014021fb4", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7038303fe52f85bf8180b9a124ed6988fdd764b49c89da5f809eec765249f647", + "regex": "(?i)^https?\\:\\/\\/btc2hty\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fccb8f5fee54825743f2bbf339e83dfd165ec2f4029da17f7e013704bb8f0a7c", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b92b98ed8606b89f2d50416a7ad9a9d7c39eeaff5d70e88d81f79f94ef012a7c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cda6b168663afb34e07749824c1c734644c136dca50de2c7e0720879ea45cf19", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f93b36ab089fd6369d1fd6fe9fcb3fa581991f076eec7dd26f5d14615500c548", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "74ed4bc4cef60c80e3e7238600837169c3fd5cc890e4079cb98990a4d7290301", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bqq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "022d7794fd4fb87a89c7cb49a135c11448c9dfa8273cc15b5ba9e6e160fca12b", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1c2c06b5f7bd2575673fc4d71de7600391fa36b4ef3f55acf593f8d91c7ef31b", + "regex": "(?i)^https?\\:\\/\\/btc2wqw\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "39201fe136ecf019ff8b6b09802d17a4a91a323bee7b3b29d0997afe958d213c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2357526a37dd163f0c5a7ad9417c75e8b952d9a2f6a79d9d61866d2f036e5902", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "392079c203f9e41dfd7ffcb39a51916c9b50be038a6cfc6db933c6106f01a8c4", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "298731604ccf47f0e82f4b5608403de38d43e463bb468ca664ae0d4966cbc6eb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qko\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e90217800bafd50904e17d3397f19b6afda47523d25093ccc9126c5e6a8ca2dd", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2da1f8781b14d4d2649a7daaca9134f92c1eb21beab6ab2199d19e36bc65c1d0", + "regex": "(?i)^https?\\:\\/\\/gndwhq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "417f91ec1b1c078b6489969495ccde373e561ccbacb4605af026ff1ddccccae9", + "regex": "(?i)^https?\\:\\/\\/btc2wny\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fb7dd14f8689d188b32a7cc7dd53e9a055f4ef31e91238e8b4d3d3d4e3bb59ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lzszaabz(?:\\?|$)" + }, + { + "hash": "507d787c2a4419c2fbe7e34a2617529469634809a32f31a871574d1374554a9f", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cb8bfd8d02e6562ca8a2d7457e133b561273821372c97a114aba98c8c33e053c", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2cc6383c50b2a5ba3e688f4804b68de8105f16fc6e8025ceba9bae34fa690df1", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "576c70f5893e0f2c3bffb20cce16537f94449dba708a236322a876a187ff9e0e", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "57aa74a040355e988f4619a9e681cb38c150053d1e732c89a8b7ee9e0d69e98e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+id\\.html(?:\\?|$)" + }, + { + "hash": "56f9483d4e2c649b1d0b771074a78cd667256dafd4a32bd08ab0c5837995fe2e", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "05b4f7fe5691e5c83c97bc9223e48654278074241a3c51feb743ac09c7791a14", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9797211e5e336b13b93af1b122f2320b8817efc0823ebd514be9512e59bec233", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wgb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "384f7cf33741fad497965ed820a2a8270d15a87384059479cf7ec5c08ecbe197", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "602bb970767d2a59763124bd730d48cfe8af3a8a960c1730cb382b944df8abfa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2c0b550d33d7551f4b5870f8d688d3600e31de826e3720fceed0f5ae400b2424", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "082cd0333b0eed7c172bfddb251830bcb4f7fe4bf60c1ff97c35291764ca37fc", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "75937108238b366a7ba4c8ff6e142bcd0e26d19a698b4d493c4e6af3f097c939", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8d9ad8d471df252a27bb8a7d26ad9c9e734c80c4ee9318fcf22ccb6d7bdcb2a5", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f8ab7794ddd40de396837f87ee84985c5dd0a08a666b46382df3478dc225fd8f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2oyx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "33cf1c136a815451afc5a789bcfbb96fd57a9639b224eb872d9888bebaf582b1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "78fdab41696eab4d61f65f3a3b1424e6780bb0dc909663fa63120350d8e1330d", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4ca4784860064123d19a1283174e2da4121d33ac3aa31fe7be1654f62442fc22", + "regex": "(?i)^https?\\:\\/\\/btc1qgq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "28f81d0c0e6d262a5b3cd0a32ac2461d5ed6859720c608c62dadbf1f26d0883a", + "regex": "(?i)^https?\\:\\/\\/btc2wzs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7dda6ac890f89f7de4a9d87a8ec4c593f21ca3d3868505c954e5848f3e2231fc", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9141281c9ca68301954a0889a27eab46bc9afee130f6c361373fa334fb7682c2", + "regex": "(?i)^https?\\:\\/\\/btc2hty\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "81f5f41b51b5859c8e0bc8ac3bef25f66a8c61eece3ffa13d9929caee338e854", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ce2183cc2ef4374d3365f7fc9783ec536111d8986a72c0634d89c3fbcd0c1cd6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "475bc110f4b954b2d2ddae5c76a49faf49da9c9457d2192a737282489c042b16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2b4fbd863e15f8781bdcb7ad05ea69fe91eb9be419fc2bc66daaf337c862ddad", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6aba61881af91edab2c4bafeb926a92f134353638e2469bc9a6d594e70491e35", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "57d082a94ee2fade24eb4245ea2be75585e2bb83bab676c4993ac50c77baf4fb", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fa719e89fe281753d80352c19a47e1b23485b6e8800fce2b69821e14dc00e760", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a5f5186662575ed7b3cd555e064cbdbe11217ac6f687120535b162c176e0e352", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1b45ab8b5271e2d776e234dd1eb3853f2d82ebeb5ec5d4d473e9b4a9d02f1116", + "regex": "." + }, + { + "hash": "a226a89ef70bc3ce4512e52217203dbe947057ae89b712cb25ea0f9124677a21", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dd69a68ed25740eb1cee03799d9b410d49c582a95dfc8b9bc245c628dc4a3277", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qxq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a4d4787012f236de54d6e82b97894f5a7bdfa08ab2ebde931ee7660db25eabe7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "97f13944d68261caccc3579c1ba35568a1c78f06897377ba0064dbe61549ecb3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qhq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b9fac7a2b05b9bbeb0d23049d8ea3ffbe486a03e8c0994dece368413db2ceaa9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d541c0c030ccc4dcff60a3eab3ac128d6824362b6cf899c8e8697f937d02ba21", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtu\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5b582d7fe8c037374083193f3837c0e57b328542ba073682418d0a63867c2d63", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "54c94cb208296e65a8ae001313e1a21cc4404c4589a2e96cdf30b61931c6e1b9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ef90814ccb30b7ee66901db26cadcc3b131565f874e3a1e57e2cbd22dd549f2d", + "regex": "(?i)^https?\\:\\/\\/btc1wby\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "37f93634bf703cd050ca8731d54d1d09416d4b21dba235f56001c64cb2f8410d", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b648b78461cb4d8841a76cb44522621cc0c3482557bd6bb733da7faa501f657c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8002[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "164a248882745c7c99565c1133d406f5bbb5e1e75857c3d4398ef4633f703807", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fcc62a9aba2afb07ec4bdf0d8988c265df61851848bd755965329eb6a9226912", + "regex": "(?i)^https?\\:\\/\\/btc2htu\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "96e65b6bc97587aba57b6c526f203ccc5a86dc82da4eacd657e6c4ddead6b0f6", + "regex": "(?i)^https?\\:\\/\\/btc2htu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0f2c58bb10f31fb9a8cd32b0c387f0e17b03c6fa231af164318bae05f3a0639d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wqw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4b5873d83a75882e52201c9be4bbc668ac2806ecb63bb660fa8a70b526b3db1d", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c51671ef0002d0d9f3586884c038174fe92b6ad08626cfe7736ed6f3f6e9d25f", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d826df3fdc6dce602f8fc43348c644f2e6c7e9c65ecf3843f824d79f6da54d18", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f68a757d875203b5cfc9f86706d7a48a7cdedb0a72b8a29d804cbdb33169b5b6", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c74356aa0449e8e8e4385115d1763bc340562fcb5f78b2cacb4e4cedf035b640", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "36a69508c7cbda027e9b553e34fcac584ac8a45e151ab92d205eb625f4bc20ea", + "regex": "(?i)^https?\\:\\/\\/btc1wou\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3d07601ca9d94b69644b665b1b8898c002b1fafd3d71808d066fe0336ae87a3e", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ebf293cc7dbaa720566c387c7e4cda2084540039f5e2d780beb70ca44ecb0b91", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "79db6f1fbb0bd19a2840f323c669cf5488c2c1b0c039e8f30f3ffb8eea638288", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cddf0150adf396425fc08b09a9568a7752ca71ad39ba77ed31a5fe210372f461", + "regex": "(?i)^https?\\:\\/\\/btc1qez\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e9bc89bc7be223078a8b6423be8d91f832e754f83f652d2174c6c29597047e9e", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bf2a6fe6e81681564a66f2e559f16f94de3836f575d2261257acce7457f09595", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2yir\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fed4d7be348798c782d5b460f1aecb46e3de47e137f22e6dcee4309d633ca302", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9f0555ebd76ed00d016807fdc73f35c7385d42ee8763f022959c14a6ce2da4a9", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia2024\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "18841d75140117f5efe43d4ebc2a778b6c19e5da7a2ce3b8bdaa761caed14e3e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bqq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]+zone[\\/\\\\]+b3b32a2d422265cd25c3323ed0157f81[\\/\\\\]+_we_transfer3[\\/\\\\]+index\\.php\\?login\\=\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null$" + }, + { + "hash": "fad7a122a061654339072a46d857f3a2f632f9dd16c00d1756bd26c6d4df6c76", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6d07886e483c98de8f6060a22cafc99a39ba2caf63d707985bcfc5d29a67b01f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2euu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b4907ac44888935a58eeb23fe50c61dbdc93497af392dd915097a2b92e25f35a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "84650c6d4760b9e3d81df4054506c351185dc04114753d2426fe0de61da0a9d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3f56b3da2e39a3d2f8226cb38f200c4aefa27a846491359698c59064763b8771", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wqw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d69934cec1605ae7644edc7d463688955f25b9a85b244c311fa624b5962ad53e", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "26854702d059d7c699e100cc676759bca8f40bf8ff3e0b22856b6059f0c3992e", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b1bfe58a839713f0642823c1384e3c74cfa38a84f3c7071d8ce1f4f15d87b2ea", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a4f684099e40b4efddae61daedc896bfd5bf858233a37212435412d4911138b8", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "99b397b1105760de789249c1da69d6715288430dcb45a4b532df9e8c31d545f3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5db1d9aa4fa76c11914b5fe553d139527b8108744fd301b40b190ad1d10d1a8a", + "regex": "." + }, + { + "hash": "ba900e0111741acd6cb96b12b60ef3ce35f12167afacac40e02509beba79e1d1", + "regex": "(?i)^https?\\:\\/\\/btc1wby\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "95c7b69319fd22719f0c0789cdbb9cf35abbeda3e70f51eb9deeb7833a36b424", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "95ff76d63ab479c35a45f9ae8681e6fcd18ff2c76f0528a55d8f4a46b3819bcd", + "regex": "(?i)^https?\\:\\/\\/btc1qgq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a38a29e3da04caa3906c93f24d8dfe960eb3f7eef54ef40dbe8dff08c5826736", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix24\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8d237d2dfa8ca5682af340ff88457fd43f8ac120177347d148e3fdca70284956", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fd03843c061d89589eeb3c6e4ee0caf21a66f6c1f17f65fcb273b5f626c02499", + "regex": "." + }, + { + "hash": "bab37d324905135c0d46380c1a50ffd5b57aa346d9e82a4e68e6db69e07a53c6", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1db53fdfeeab7abfc3c3bd265f6b67c80aab78a0b1f7d8f602d12d4ef9a76cde", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "51a8bbe9a87c59e1fee77c1e1ef4ab10f2139142e0bb57703b22e215d5a5728e", + "regex": "(?i)^https?\\:\\/\\/btc2wby\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "3ad11bdf9bc169a005d79c47277fab154f7bdaee3809420ce92205113ae456c9", + "regex": "(?i)^https?\\:\\/\\/btc2qng\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5052cb12f4dffaa82d54e02198193e97d6966ab2410de7feff3e9811c00766dd", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b26034da354a4b8bbc22e830d2428b8688b68e1fef1b6063389b6328cf707f5e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2gru\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5052e6933038eca1e3da8b599e283c8949b27393e2df5f0cef0a6a454a46046f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "57aa7e8d360cea19515e4729c177f4f3dec475c24b9f26bd8ffbc7fa42dd0f3f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wqw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2c801c99dbaa984939a2130afe11a60572ac471fa58bec37548d04d8d577f3ec", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2a12a2872abfb771a882d872473f855324c0956aec00a6bf9163359b27ffebe5", + "regex": "." + }, + { + "hash": "f07fe1d05eb5b3b09969a67cf583cb8bf577dd96fff60453c8cad95b48dc1122", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "aa26ef10e0da7eb91d5a8a8028d8546045c72673ac3774cc59723dcd40ac792d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "449a03eb85494351c9c2a2d83ee4a25c757ecd79fecac40c107453f7a6f8e65b", + "regex": "." + }, + { + "hash": "eecee7d727f9bbb40d56655805ceb06f417834e405e8efa252dc1c5c28b68c67", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c45f173f635c06944ae361c6af9cbb49dc00022d649da3c410138a7ab908cf56", + "regex": "(?i)^https?\\:\\/\\/btc2urf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3672fe3a98ae4fe40174fccf9e547164850a90cf09f5cbdeeccce68312c031c2", + "regex": "(?i)^https?\\:\\/\\/btc2htu\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3be187ba5ec76722ae7cbc3ae174000dacf9ceb58192444ad963928da0d1649b", + "regex": "(?i)^https?\\:\\/\\/renewalmember\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9468fcffa3c1534ea783c51585c5e47219143436b640521094e84eb35228e8ef", + "regex": "(?i)^https?\\:\\/\\/btc2oyx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1dd9e28d21510cc4c372fcbb1e5942c507f117cc29b02d118b8346e0fe41aa28", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "be995239bb08fb08c781b283021dbf3a3c5a89044784a7fb6182f7ac55c5480e", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "19a958537f8869ed7894c56d223faa3acf2431e240023c8c250147cb8c245cd7", + "regex": "(?i)^https?\\:\\/\\/btc1qbu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3d11c644d9fb5b9b699f7dcbc49c6fb1418d1661b4779e9a5d575490d6fa8f7a", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f1ce00bffa7622fd850319e1d9e41097005e578aed0cab690f7e66fbab44a8fc", + "regex": "(?i)^https?\\:\\/\\/btc1qgq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7c81554ad73576babf0636c868681954cf9e4e2f435383480d937e22f22104a2", + "regex": "(?i)^https?\\:\\/\\/btc1wou\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "47c0a1466b56fd0d15b799ab2d2aaf23e91c42f2512bb4a5fdcad779ad10b608", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7e43eaa15d30085c7e7c7a0168344db8158148dd3010c2903a6e5d76ef976fdb", + "regex": "(?i)^https?\\:\\/\\/btc1wou\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a1ea86561d834468e4532abee2b6e95e48cc9f1fd003e8210c4b65da4d48e156", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pil\\.ciarek(?:\\?|$)" + }, + { + "hash": "e360e03e2e428576ae39a371aa7430dfb9558af67468395e28441c10bb537171", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2oyx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f7cf4785cbb9b289fe801010d0758a3dfeddd02583a9ffa4269ee2044a0e8929", + "regex": "(?i)^https?\\:\\/\\/btc2urf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fcbca268d4715b9514608b4974f5edfe483fe2ff6c3206fe32a028848170a702", + "regex": "(?i)^https?\\:\\/\\/50k\\-robux\\-generator\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "27476210fccd88c616080436d8968c3fefb374e3d2008903458fc79a863457f6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bf5025028ddc04a5c22bc354e2307003ad825707afdd00240e99f92a45450571", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b135f17011209f938569c51098af613996dee9767a0c736d92191f0c8d0468a7", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ec0c72da24757ae96ff8dc88584af445700d90e65ee222c7a86c1363b292dacc", + "regex": "(?i)^https?\\:\\/\\/50k\\-robux\\-generator\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "900e1dc8347b169c2d31ee8d9b6c3fb1695c814c5505b2a3be0ff8798cb2d570", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2htu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "337c815dcb2f44d0b6f6bd6e5d30d96ae6c4ffcd26ed0c17135d1dabb9e26317", + "regex": "(?i)^https?\\:\\/\\/btc1qtq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ffefecbc9f60a1f3c51f4eac31866d0db6c982a8c19f7b6f32a48ad992315918", + "regex": "(?i)^https?\\:\\/\\/btc1wby\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "41fe0a28ccae728dd9817a2bbceeff0ad7649e94ce33ecec178548e42541107a", + "regex": "(?i)^https?\\:\\/\\/btc2wzs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d4c5687652b314e15db2c61eb5a58f3c75eb87b943ac2e5f531a43638a5ac1e4", + "regex": "(?i)^https?\\:\\/\\/btc1wou\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "99f9ea494d762057f6138de0085cd5d14cad110ff94b29070f542615b25d9f36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6c274c8e6a837f7df158e06ccffb0317f5a2bc96d258b74990a9ed1d330f78e9", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "6c70c986fe62d24e0d6323f7ef51b70f9817b222f922257a983ef61143e2466c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3aaf780babf0639c30940cca56185dea81309d35b1ecc1197da50caa4113d20b", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9fe1ba4b7e67f482ab9db88044bdf1309dd455e5a3eccbd2cd8b60584cee8269", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia2024\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a73ce77e15d53a690e61b9432e6e02419242be7223248a6dc6a7b1f762700a49", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c72209899be8e2036d20228ddb8fa14af923bdadeeca3d00ae30c03667337910", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5669cea490fd9febe20656292368aaa3b4e35596d50ad1a8bf933794c01e6e11", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "13aa25834bc4e61a53566ee84ee7cb4e91d264fe4f372616407a3c95d2446d86", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "111f457fabbcc999d0c4cc4482a833371406fd90e455021c48f504ebe6956b82", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f294d7707edbe2b873b499c83fdfa6ecfad5b7a55368a951645d4a37253fa5cb", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7c630f734f82e0ff8b7a16bfa266b79472cd64c8a2036f05205b79d6a45e6c99", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "af0d9b33a653304391f84087733f7edaef65ef97ab851cb85d71fdf021a9377e", + "regex": "(?i)^https?\\:\\/\\/btc2oyx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "82322afdc5391a0586ddd0673a9abf73795bf3b70e1a75581df45f9eb048636c", + "regex": "(?i)^https?\\:\\/\\/btc2htu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7c39f28f0a3fd1d77a2176edd5cc51459491eebaab596cb5451666ed6ed46c11", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a38a78715b525844d6def19d43ac867b15c0a85c63e6d3d6d39bf080f66da6e4", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e802f8ce70cbf41f4caaba6a9452d4ec853cf486f3601af79b3c67d363887ac5", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "72594820490bcd568be10c7b19222bc1dcc81acded9918e7728e45775ca6ea1e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fc75ed936b7eab2825359b470e0705d5aa95e7e14090cf193f306e29514956e7", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c9afc35288cff5443c99d0d88853613db4707aed1c3c8327160907db451a2894", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5df544f69cd41292a67cb79c19126295717e96cc10ce6023fca661f5ceb74213", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bfb968696d418a19617b9882870e96b81d274b3bb2a0e1d4249a236fedf628c8", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cabfa6092be22accbf9fbab317604341aaaf01053caf0cb0f0fdf1f75cbf94fc", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2b07658940204dd7cb68cb5526dc70cb7eadab316b3b2b0d85a8141e8a2a2f4e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "47510d77c9a5033ff3325a891d135f62c6b6b71360eaed9cf5c61dfa159a0757", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0944697c01b2ab49277473210aa1baf1ca18589f7de66893080854d10b538892", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "42e8f97874977acd2a73b0bb5abd6e8762f7c7a5613f13c2ad5b4331ee748584", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d621a3802a9180856b1bb47185b3ebf666448347b5a7f275f1d7a1bb13617f1f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+pa[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "b0c55a69470ee18b49a38fc0206efb15e468edb929c8131b94f6929832499ffa", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "597c9e46cff15463a2bb46653cef561d31980129a2688229ba6f237a0713bd14", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a7221bdfc10321c4e11280981f294f50d13ced1c63e45fd1619e681eba06d4e5", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7c9fdffbd283abfc25cb4c88dd59492662ae8ef5ded7d4bd5296a317e5a20bbe", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3511800279baa1ce5164dee116d46e1d52834bfb63d974e3fe7db684b2a56d6d", + "regex": "(?i)^https?\\:\\/\\/btc1qtq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3efc0e27e0d713ea8c21862c170569edff5930be09d3d64f9c01ee2da9792dbb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f6e25793db904ebb8efe928b403490ba9c65783cb2a814ba1d267e9bec2559b0", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c76d74a82468426df0754224cf9100ff832d22392e0d9043cf8d1d4dd8c0c1f7", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "94a1794cc379be433e5d05e7729c5878742cda9ebd983fbf320cf98b775c76e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c0a3f0faa434c47e5e1a06014499ca9392582941b5298d4bb832a61c9df6710c", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0cfe1cebb7a9b84fd61bf4a8abb9d84538be043a460051feb291c1aa3ee32266", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2gru\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6eb06a7d7d4876ad4d771f754846a42acfad52595f26cb59ed1df8e36ced59af", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2gru\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c17dc613ad6013a5f83a5b714d3e112f609ffd76f07ed3dc34c519e712939c77", + "regex": "." + }, + { + "hash": "0996fcd7585eef123b1ac87d990fbf69873f6160770bdbeaed71dc285f6722a2", + "regex": "(?i)^https?\\:\\/\\/btc1qez\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "abdd8009e0f6a126629495f3ee22d31cea64be17d57e6a1b8dca82e026af61d0", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "92069f603b94a03c53d3b729893b1c0d21775883427feeea61b388cd24c8dd30", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "74fc4f92ea3d8b7740c110dbdfb07517795f03da0ded7867c8df5a3b824660f7", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8797e76a2bd325c48f7e158de17b02aa703b69c162031b70a1f9955cee02ff2f", + "regex": "." + }, + { + "hash": "9a0552e6676b4d59a73d9bb85c4c15706565b3437321f55c244f661fce4ee2dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+click[\\/\\\\]+zr919hy3s09f6[\\/\\\\]+6745db8a3e03a1e2ece4c247[\\/\\\\]+7e568914207ffb917dd2727976751521d62933c9(?:\\?|$)" + }, + { + "hash": "7c97d6e9c4e80aaa7d80b15d081b4c77990067da75751504b01bf2f44b730c50", + "regex": "(?i)^https?\\:\\/\\/btc2gru\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "296479afc87d5c8383accea05983d378ea1ca1a858077fe1aba462fa5c2a7bf6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "efba13ad6d525552f4084caf52d0b875ee5e1c7f3ad71e904d5adca252eddb78", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wby\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ba00a3d98a15a44d10eca786aaad5c19557529f5066c54e86183d02a51a89e16", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5669c7127c1a29a10ff34327ec7168c2db03085e8fb2e9160adbeb07dc09efad", + "regex": "(?i)^https?\\:\\/\\/ghcfbx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "04646ade806ba3bc840b950e447a92b01c1130f41fc485a4df084e95be95a35f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0d91fefc8d79d4b7ced2c4ed151ec36b67fb6f870d83b1860ae8db18c18a8", + "regex": "(?i)^https?\\:\\/\\/metamsckzxtnsl0n\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c3ccde5b6a5f0f0392789dc46cfba4180dc35a8464f52290b372c5b33e95c57f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ddc54647cbf6cd31092897f02f6e38843971607314c885dace753934a4dfc89b", + "regex": "(?i)^https?\\:\\/\\/btc2wby\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a801dd63cc20957efa1d18c03e04349e7e5c76f59b5dd79c47a81d16a4849", + "regex": "." + }, + { + "hash": "570e7f0a13931fbc053c22f5228306eb6bb5df1e3b486fb52a889d5e68076859", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix25\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1738b0df6e4489b222e03e7d955a924e7c45ea579502c4e9ef02b5b19a3117eb", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e2ccd67b5994a79c1615d00814fe2ce247116b4fd0879944e0e8ea88b2962f8f", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6c20f85e90ebf97e0600a863333bcb7a985462d166a67973fa6f9067ddb150d0", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "eeb77e92b85237ddf104be21c0fe0e97aadfa407139de53e59cd6a4a1eb93fa4", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "426d91748b59412c84b09179146bff16132e277e6fe78833ac3b84ca0d9f5588", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "82cc037d40eb2e982d312c79961a1b6d8b4442b938be6df0e629410e26effbec", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "47ea3cca08094b016b99cf7506db3e3c34165e0715a58127bb4a3c163cad8b12", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2euu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "eff29ae834316037754d1bd4d73432f826d53aaddfd53f208a18eb5ad527b063", + "regex": "(?i)^https?\\:\\/\\/btc2htu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "74efd890c474265ad3a2817ae11c6ad8655c8de91bbb9962e854cd720f2509e6", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9bb21217c7e60e87f7e4749ec5795a1faa37d7bbfbb780a238c7b90068f5fbe3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtu\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "660fb0b4d2987e13f4d4315c538a872852832efaad299ce3dc2f75225b5fca01", + "regex": "(?i)^https?\\:\\/\\/btc2gru\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9b112b029a14d9de38501277bc7eb73cbea7b59291c8aeb2980643e420d635f1", + "regex": "(?i)^https?\\:\\/\\/btc2gru\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "de9acff43f051b79e765cd035932d8157423c3b3b932346a734fe1cad27313c2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8a34cd3717ded17d105f2fa0f803216d42ddc5a4f59aad881c59ed58879a2b78", + "regex": "(?i)^https?\\:\\/\\/newncsnet\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "09bea67d1eef07290d9a3aca0e306a88b08e4dbdb793b1efba23d8fb2179d318", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2oyx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fbb17a82d877a078b7edf3e04cfadc7e5e3ba102d4440dc1c3141c1c17820db9", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c86d9741185c5efaf54105df9e717234b6c1217a6a5f1313913cd4d462e19837", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qxq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8e7faa430d54dcc3d2de2cfaaa5cefcb3da4e36bcfa7b40a7c04e7ee16cd9ac0", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f6e2b15f4a5b2f20b0b73c6938a73c2e2562dd97fe0a5752d1c7d1164f5eb296", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia2024\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "da5a992e493427372ddd41662c067f0e67ff1f78cea37270b7d2f50f1c0dcab2", + "regex": "(?i)^https?\\:\\/\\/btc1qtq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "337cb3766b9558b134ebbde8f3202113812bbb82e1ca9a55b85dafe444682354", + "regex": "(?i)^https?\\:\\/\\/btc2wny\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "171ac68ae2e719c2303b413c1a8237666134c31c9132df6d9deccb422f3be19d", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "11d11542f88582e26e143947571ddcce87dfc4870977acf801a25f262b14183b", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2uit\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d16b86f77b758826a9a44e342708223c4211e770e4e21d93fbb1974fccba6498", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "04cb8fc8f0fbd807b1306398a23dfb4fb44340f9f5e4fd24789fa0628983c6a5", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "aa4544c579db3f24b2bb03ff7507e426716604153796bc1cfd37fe861213aec9", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "86f2a224c91fed1270e7a5d548a48769de688b518c67234f79270cdb379566a4", + "regex": "(?i)^https?\\:\\/\\/btc2oyx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bb9cbf4955fa99be353ed0d42daff746d5a2b13532bef7cf84e37ca099f88109", + "regex": "(?i)^https?\\:\\/\\/btc1qgo\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e02f5b46ee8431001bab7737bae2e737fcaadc72b5c1df95d993d0a1f800748c", + "regex": "(?i)^https?\\:\\/\\/ghcfbx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "df0ca32a34419a59649c7ad97d95af8aed81c428862141b8259506c55a0e3060", + "regex": "(?i)^https?\\:\\/\\/btc1qtq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "420a159e0f98e64329f196a331e309b615875a1870b4aba65710198912ff4daf", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8ae2596999864d11b2c34748d8ea2257e6d6236c3f598a94f08bf94867dfd089", + "regex": "(?i)^https?\\:\\/\\/gndwhq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "56b367a31cc5eadd1ab66444fb389b8e9aaca4353e5a2fac6fadaaf02165d355", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wqw\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d5bae8cae1ec90e69d44808ffaa009ea0f3c188a769d716aa3f0322a8550051c", + "regex": "(?i)^https?\\:\\/\\/newncsnet\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a5133fbdad5928b70cdf6a976bfa2dd53addd8660b8317fdd854c8fc15e949c6", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "07d4328e01b13b9edc3f3be888cbd7f4f1cafde9e29c9da7d1962402f8e847b6", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c9c610e8710f2b74313b26842e3eb0efb9e8cda6aee8b06f2dadcf4fea3331a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wby\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6356745158dcfb428f640d67ffedbf3b589a93c0f0337baf1c817d56fafc480c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qxq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "dd180ec9f2d86758efacaa3ecea66803c27e8c3099b2ad0b34cf197810d1b1f3", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "45419af67dc16c42d2dbdd946432d2d1c47b87f688d97dcd8821f1c61c2885b3", + "regex": "(?i)^https?\\:\\/\\/trackwzas\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "33115840e1bc69afe723a2332106668afaba933eac5ff5f672c6f36377ebe87e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "db1bd6b0274b0a6abf0c9579303f13a057d90993322fa66bdd0220c0841e94df", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "680e6adc4961647393fe58b10b995e802b30f6a2e0b4725bee32e3c026d05d55", + "regex": "(?i)^https?\\:\\/\\/btc2hty\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c423b4\\&l\\=googlBtc1_2[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "21169ea9e64723ce6702674e05e23619355d3fb0b1bb20466f6cf80f4aa1b071", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wqw\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0088d934bd4282b25a66d25179094724ab8dfb2ada2917623efb327841c20cd2", + "regex": "(?i)^https?\\:\\/\\/btc1wou\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ce212f8e4d6021959d015c9d0b6052b9c97d72c7ea3930acc2fbcc1d5b062cbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+case[\\/\\\\]+1629119777946925(?:\\?|$)" + }, + { + "hash": "a7e3bf5f27df81ffe804259828fa8dbdbb347f86bb89a0a6e1662e4de660a1b6", + "regex": "(?i)^https?\\:\\/\\/videotrendsizzle2025\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8420451155c2cf7f28d3607ae9b8e6331dcde190f034e737f2419ff6b42d6ae5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bqq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f22a3051535b1b67d68d8949ba7a929ad3ba99c112e30718b09dd8beeee5a3f8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wxh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3d2cec780c8220bac5cab5fe4a42e204598756ca28989330afbcdb0f3bcc4861", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f11ce3dcf384a6b6b570ce1132f70552c759f1f430864bc0eecd5760a66a821e", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eea5364e28177cb798589c9e20f4e59e13f5134d549069c92203411a7f54f4c4", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c17da28c0c541a1856ffc864dde7a40bfda61751c4fa480ad32ab7f1f48ac148", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a6bf1850574df741eab4cfd48ae1423e93949320eadf3e114ec7d8221e5aa10f", + "regex": "(?i)^https?\\:\\/\\/btc2oyx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7849ff9ed7d82ea00d0c8d53dc43109bab19359192c8ed20ff0f3f1c94d873e2", + "regex": "(?i)^https?\\:\\/\\/btc1wou\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "adcf233409558e6eab90eab04e25abbd47da72451d94b3bd13620f8024a0c50f", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "21b87762535b298bd336942afe582829715dd5dcf6464f8870493dc19a0187de", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "acb5f6135af86080439256429bcb72e87bb81dbdb847f7d5813b9fcc72b4d307", + "regex": "." + }, + { + "hash": "416a6bc3e746832faea9aa49dd6b8d510bcdac88a4284217d49c86ee6fcb70b8", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2uit\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "84dc9571c8a121e999c1eb32cc6ec61c493e77619a6c39a94b7e76ce3cd9475c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "aab27ceddd8a0755cd42d53b96b9c090cdbb089dcdae5ced13e2745dbc63e1a5", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6e70f9c140b05cd8f6ba5b7d424d0d54e48d39f8af4eb5a2cd71179895f2b710", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4f25f079a187dbd717a6d043a0af1a74dbcca73d211e2f63d11e84e8e25b3a10", + "regex": "." + }, + { + "hash": "373aa2948b979553924c916cbd70a49e13148d609143a2f2b4796d473d7ec9a1", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a46544a5735f4af52803ff54b3b226f15dd2ce7cbfea54640bd73568fc3d8daa", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0a2334f2627c10a0abc23300777c58d864fb4afd0cc8bd3a9984647b622c1ee6", + "regex": "(?i)^https?\\:\\/\\/btc1qgo\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f2e09aa3af1293e66f5cb1da88d9d158a762078a9822a5357961105380260d58", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "758f2afee79af4b0846e7cf2951d10c24139041b5d9ce336a71d7231354f84e5", + "regex": "." + }, + { + "hash": "642228b8a742efa757144b4b3c99f42598b65cd8aceea426f0116954e515a0d3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9365ba0dd9a8bd5a1bf2d4e9ccf49f3af5156dfa5f014b8fb3fcc920eb689bb3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "76d3441000011aff1115f4d4ebeb309bbf114b412d6e6a25d39857dab1450fa4", + "regex": "." + }, + { + "hash": "068ecf3045fff43782ce4865e2fe715394af67e4b239158845be4c35ff0f1bef", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "924fc905b9b30d776768a9ce0ac938fba9085fd167b35a875bc38f851618cf07", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "acac7837822c8d7ff12e973ffa87801ad238db42834925ee31efe4cdd14d6b56", + "regex": "(?i)^https?\\:\\/\\/btc1gqi\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7a70bc46200a5bd317c109f15927e5cfee9d7332359fb6fb539370ded7bcf90e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2shu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fe6e53705f65fecfdcc1e0f54a325869858b48c9c99c34e0f3458bded5cbd4ad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d4cb7161977395d3a3fb0799511b0d9313b9f48ca6384fac22f44bcddb887330", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4dbcaea10b6e382b8413bc470fed47fe23b79b6465020ee496dbe7c1bcd68384", + "regex": "(?i)^https?\\:\\/\\/btc2gru\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5272509c9bff38533a5b546f1905339740eb3ebd72912174401bb6332e2ca63b", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5da72ea8eae5935909d03b3368a070b89663bb6b40e6c6baa49286bde6a2d483", + "regex": "." + }, + { + "hash": "4ba99c83018555c66a84f793578316e3bcc90460b3442d4ed71ce414a1a5138f", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c1beec8c78a23a1812cf6c2474bdfb6e5f5af437db27dd9e0e514dbc9edbc56d", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qch\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4168007b59dde3a4bd4fcaa8341d11507a471b4e88d6587032698f4ca385e55a", + "regex": "(?i)^https?\\:\\/\\/btc2wny\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "beb9127e6ed145a3be9e738ed2ffd6e78df3d8bf96623e22a460377212f1783d", + "regex": "(?i)^https?\\:\\/\\/btc1wby\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "70845a7a108e57cf44f7731f5d93e1c575a8aecaedf8df7fc0ac47ed3a245655", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "426d3f8f2e0f073adea116ef4cb2d9c3a4c8d1e0e9430fb2df2ed34c8ca2bbe4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e7696ac0ef0ad8d6bf81a6903edf92c3923203e50229ca2229435fb4a72ef", + "regex": "(?i)^https?\\:\\/\\/btc2qng\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8cab1fe9deba524188468db611e6e6e8c33a624908d3d67695b1d8fdf9ebc0db", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9fe56ffd979ba7668df1db7bab306b19904aa04de48cf05573868d924c48f4a2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ee0c473b239361b710bf9472bf45201b616125610b3c3b0288e0f39b542820e2", + "regex": "(?i)^https?\\:\\/\\/renewalmember\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a6c9574ef002320f504eda01fadc75b89fd1c57f779abe3689cccfd8bed47e18", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wqw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "005d5d542fd969566856a1323f9ee82f2fc2d905349e023196942f7a92876c79", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "53d929396faed5878083967acc99980b97a85a9608129d8b57033b3b1ef417a3", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qko\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7562a568bc57b9c4317fa4b458fe5cbd11e9ec87e81fff203a06b9f5fcea42aa", + "regex": "(?i)^https?\\:\\/\\/btc1qez\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "75532d6c97d9ea16377c93ae3eaf7502f4399c57e6a50c7c8093999988ceaa4c", + "regex": "(?i)^https?\\:\\/\\/btc2wny\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e56c38be7a289c4079a06f6ac4053c3f307c72f1e0aa4f43ee08081764ee3252", + "regex": "(?i)^https?\\:\\/\\/btc1qgq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9677f463091c2fec70084a6c743fc80d7f688929d22a56d7d9f6db535c8a6693", + "regex": "(?i)^https?\\:\\/\\/btc1qch\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9c051dc39be27a885fdd3206d31cf07d49753ea5febda9407025a252a0ff52bf", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia2024\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ac51fb7320ea652d8161efd8d5bfa2529ad9a626d0fc715331988512187981ad", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wby\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "49f07264b74a24aa164da7aa53f33467d79632f26a0081d99aa00f30cf14f6e7", + "regex": "(?i)^https?\\:\\/\\/50k\\-robux\\-generator\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3392a04b75c3d49cf103e8bd1303316376c67eb01e913cf4a627f801089d331a", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "aabba8fc2d2900f19eccedfee1b5c98676971c5125b363723cd648131c05d39c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6cad41d6449f90093b423b32882399188e5e7f9d1e048932e59f10e28fd10952", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5e6452031d6b0aa77e32776143ad5b530a227fa6ccba9b647e43edf6310cbe3a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wgb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a39cc3e41d662f7f5666f1c74430acd4debe1913e9df811c542098302bff0348", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f09112e8133bc360d4bfc1eb458370b19bc4be3e4013824ca002b470e027dc27", + "regex": "." + }, + { + "hash": "74cfb54a204781afb09a17095b78fb737c2690d04f927fb0294f13817ad55275", + "regex": "(?i)^https?\\:\\/\\/zhdizdhiuzhdiauzhdiuzd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b62e7934fbfdc4c3f368e0d863faeec5837f7d18de37b186f3ca1a564313dddc", + "regex": "(?i)^https?\\:\\/\\/btc1qtq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "315a90d542b950883fc002492f102dd905f3bf6bb5abb80d18eedc8ddd09b693", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2oyx\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2ca5929b4fc5386e02aa878b337ff5dbaa7e2a1a1538f00631a571e4161bda04", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c28866b5aac7fcdb0abf8efdd3b63a36325501a89686c0211421ee7c6ec0ade4", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "276b59738cd67f72ef1fd85e9574d5a08080865806b6d049622908af48d4013e", + "regex": "." + }, + { + "hash": "193396769e866d9005d3806262e992e19f79a432006e8eb9985790b8c18ae68d", + "regex": "(?i)^https?\\:\\/\\/ghcfbx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cb40b62c51d1249e660a7cdc7a72c57adcb1e9380cbab3b6aa2c3386df576073", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a6cfeb0995415778859bfbddef182c894e030ebae443a64e7af09d74f3d5c5de", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7771c82047af590e389d59445a788bc40d4761133385deca626a05e30f9dbe3a", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f720c58724698d82998693a07955c05d3c524aaa315af8771785e94a48cb9e20", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6f49dcc66d26bc6fe1480b1b86c1fe18d127f084c8610cde61912fc4e47592e7", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f8453c7e3035da0eb804e42c592b061454adba3525d900eed40bfaaaa244e258", + "regex": "(?i)^https?\\:\\/\\/btc2wqw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ad6a5f736342c2e0f96a236ae1e37e860ae426a2fbc015169759ec61b6f1e48c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2gru\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eb4ef28ebb6246c32fb6df218e0c2af6a926655d2b77b00be2deb1a259351709", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2uit\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "50cae0e1dc0f15d255e341a23b590f285199cf3406ffc3b4c774caa7268ab278", + "regex": "(?i)^https?\\:\\/\\/newncsnet\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aabbb81f5e0dca953cabd03f1caca82beba478beb8ae488f3bb01d9c606cac24", + "regex": "(?i)^https?\\:\\/\\/hotvideovortex1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6afa3b34666c0932dc48af3a4f72c1133321fdda1d95a5cba10dee964be4de7e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4dc3134e21ba68b5a12e2f492f3cd68e48499a1448fc01c9074be20490045ef9", + "regex": "(?i)^https?\\:\\/\\/btc1qgo\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9efd81cd6a14e47e82d9401aa9584c80dd22d4b1908d079a643f528adf85e917", + "regex": "(?i)^https?\\:\\/\\/btc1bhq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3198cfa518dab4c07618d342917ccf5f8402c217122b7f631546498d82abc971", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f70e405a737c0d4000dd032067610a679ad5d0cbfaf16fd593930f39046bbb14", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qez\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "71b61d498b04696f92cad9f27b28368611bb34568483818f597c99e3e7daa56e", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a400032dd49f0f24236faa68f03db6ff91fdd89ac022b05ed59142f6dcad62a0", + "regex": "." + }, + { + "hash": "ad62a8cfbda8337c8d81e16ecfe097d1c790c3eac306490731d30810a9707be4", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3a84bbb41c31e80b66395e0a1bd897f7e314ceeefa2a728877ddd7c4804a25df", + "regex": "(?i)^https?\\:\\/\\/renewalmember\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1e601530267be52b11bd9f4476a87606ade19d1262ee480fb6781beb36b01470", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qxq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "76380afd7c4b2402455f3e29998ffd70c2215e196172a8a9c71ee3178482a27b", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "49d9654c573914221bc6556c43c4d43c5401fa19c09e20af5874959ffc52e685", + "regex": "(?i)^https?\\:\\/\\/btc1qgo\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "63752c5552c8ee4452fd5384191d71c43e4f2134e296e6fabe8b365c8589e418", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b16fc0614b8e66c4bfb0260355c2dbda2936c60958606ef708a54510e2e53c78", + "regex": "(?i)^https?\\:\\/\\/btc1qbu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "079c6f48ce04939c81e2ca223a2bace1234da54e4d520145b37a42d3bb5e4754", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qtu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b0a7b074ff8d5117acc69b34ac15bab10af65854b9f9cc01ce3b8732c43c3063", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1bqq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6abaa72c26e6882d51bb387f57a48348d736a554603712f7409fc293b2dc52dc", + "regex": "(?i)^https?\\:\\/\\/ghcfbx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "843a53890c5805d6159d1f146291c85e2fb1065aafa5bbb8490560b1f04003bc", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qez\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c745d19739717273ca0dd81d9dfc4a267b31c9753e34a9729c740d28f356f", + "regex": "(?i)^https?\\:\\/\\/hottrendyflix24\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4ef11935156e54c505f50d4c794b8661fb08636fc75467a760b71cc25ef96ce2", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2726b1fdc490a6e1f2b6316b9efc9c497847381b232ce47f330d3b7a8a894da3", + "regex": "(?i)^https?\\:\\/\\/50k\\-robux\\-generator\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "09206e8b1127ec1001d88e857101b639a70a079c2cd42dd24fffa529102f02bd", + "regex": "(?i)^https?\\:\\/\\/btc1qez\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4faba6e6eda51c7a191db4d6ceabdae2c64712040a903bdf7749187a359fbb8e", + "regex": "(?i)^https?\\:\\/\\/btc2gru\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b4d9677200c538b095021aef71858bfb83f02046ee40e2106fd059239105ec53", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0dfb54750697782eaf546aef29b4b90ff81edd37abb540c6ccc0cb0091c5900d", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "27ebd19146a9b93d9d6116dc47bfb95a0d844b3c9ed7a6d4f77e4ee35435dc35", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "14b3cf61d348e001cefa5a8c78c22a3ce2a27964f7e033b95ca75a6f2ccb437b", + "regex": "(?i)^https?\\:\\/\\/btc2ehu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "24cee93fade377cd5fa2a2a48831ebcb7b8528efcc8a73fe5c84048672c39688", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "499c9dd6ede353d7c6d55826f2c619d1c7781ba9e9a6a352d6077974bb2f2107", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2oyx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bfe0d28c8efe8c490d632c67b9f83349854a1c61490c40dc0f3aadbcedda737e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "99ba2d39e2cc7f4c4092fabea5dbee00b056b90418d26b0f40d516cb25374349", + "regex": "(?i)^https?\\:\\/\\/btc2wqw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6eb014222eeef78e89d310a9ce7876449399be39ad5855a71e02962ad3df34c1", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "dc7756a035948a65c4c1439914c9b0d2d814337a53953d813ee3792d86768f3b", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9bb203dc4ff49b4cfdf7f2091ab0789837e68649622509e8347f0481918adef2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2gru\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5aa57d18ade65848a08736e4bedfe68c809617f4a379d3265c4651f6b31e8528", + "regex": "(?i)^https?\\:\\/\\/deskauth\\.es(?:\\:(?:80|443))?[\\/\\\\]+auth(?:\\?|$)" + }, + { + "hash": "7a3cf1179c93182a6b59c2f13267b80c741e44f0d7c7a6021768b5e8ecf247c4", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1202e703f28a6152c8542bf705a875c6d90e72827831235c893a95ec7663820a", + "regex": "(?i)^https?\\:\\/\\/btc2wzs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2297a3c42d630b4edbed6719a7450d0786b2ed46bd51b00c941023f4b99759a4", + "regex": "(?i)^https?\\:\\/\\/btc2hty\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "85d96ac08083d79c32e746f865826ca9953dca9122414d8809b090d787005548", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0eb541821d3f3ac4418f0723980f5aa03b1707b91ead223d39ff8b0880dbb624", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qhq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cea1d573fafb7e4ce2d1931cce1299610dda71a311111bbeccd8520f75212ab2", + "regex": "(?i)^https?\\:\\/\\/btc2hnt\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3029687128fb2e64ab57a25e4fa494006cfe15a9e532069946b7400cfea98c27", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "174480ec05bb62079c0cc60b03277fe3c2bf18247ce3a9d311d0dd8880882b86", + "regex": "(?i)^https?\\:\\/\\/btc1hjy\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "115c5b9d43f6d709cc35ab3e626bcbf9f7ba5c6178811315e2f8c1ccb238dd3c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2gru\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f1b8399dce0d1360af7bce57c30f22cd186087ae06f7a666dcede25ba6446e72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "689243d3925ce7e160cd2cbf843e0f1a078d1fb2b12061741edfd9e514d18c7f", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3b7c8c7535b41e9c25062edef205d4e70ad3f90b89872d80bb71fa060bf27858", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia2024\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "384b73df782d2ebfd6b8e3dc1ab3a6e02dcc6791bce4c89c20331cdbbec5ef77", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wby\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "437e7cc3615533001bf9ce12d20b02958308be9bedcfcdc3ef1fbca8a2c94d59", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "86c2007c070a53a02ad16607154985f9c7bfc3f657fd34b02c86238d76365693", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0187e05a4446138d199d2a82b2ef42b3004d5f766a1e0d2b16e1681d1ffce506", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ca4b8d5ebd1b2855815b4408fca7646361a34a67c62f8370f1d3de696828919e", + "regex": "(?i)^https?\\:\\/\\/renewalmember\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "897ab6cccca67d76401e43cde4b428a0886938007f348775c7cae7c2f33fbf70", + "regex": "(?i)^https?\\:\\/\\/btc2ehu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "57983f7f525d40af4c8fbd4565e4d98e58d53d1fc027c1e1190154d7113e3f9a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2yir\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "831dab502e090c652c3609cc491d79eb6c8a998bebdaf27e16f3490e47ef1925", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e77ced80d1f78ef226437e19035742e60365990beb21740e2e9d479ce0dc9128", + "regex": "(?i)^https?\\:\\/\\/ghcfbx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "097cdfe4a03fdd26ddad1520912710179556915b6db08d7ebb94261fe8cc2759", + "regex": "(?i)^https?\\:\\/\\/btc2ybf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f611fb999d089c242ede79761db0d150d83fd563401c38b7647284a14fe5e84f", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7bd9a983725272054f147bcf12adf68fb44170c8e53e277e6e97c7a85431e41b", + "regex": "." + }, + { + "hash": "7087ba2331383e7f7bb7184a2a29527368af070f5fae9efda86947c2fea7ba90", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2qng\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "76381a1767a4ce841b3610004166444942f4f6b0b32a6c0d82b19b146f90b662", + "regex": "(?i)^https?\\:\\/\\/btc2wzs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "348c9f2eab21d675c2b1c878302d97167bd3f59d9559245cb9a2d6d32ef9e25e", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2uit\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e8b451203f08c3a8356323ce41ee19930a3679e34b511a7ef848b74b0c5add21", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qez\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e9acb67f6a83252ea15eaaf1c951d098ba3d580fc37d52bceb9cb537a35581fe", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv3\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6a700fcdc16f7c6a02258513e5113d85169e2100ef211b4862228b44f283b8e8", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "09a01a6b9f546478d309f810fb944dfe631d7dc3ae654021097d6faa78f83e7c", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "91826295f5483d89897c027c48e1291c38c8a6743a158ab2abf1440fe42f865e", + "regex": "(?i)^https?\\:\\/\\/btc2qwe\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "aee4dcba751eb8739c5dc3da1fe9953adb73fd4aa2d4cafd14ececcbc48c474f", + "regex": "(?i)^https?\\:\\/\\/btc2tjf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4cd5ab6344ad4501486642f26d129638cde281be42f4d52381f838c71c15d2c5", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wby\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9fb6f76961ecbb323eea4899555dffd931cb324d1a07d3c2a0b2273d44b98a08", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qgo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "130a366898a33e3b5eec416677a9d78eab36763f24eb51c70a38ef7a92929566", + "regex": "(?i)^https?\\:\\/\\/btc2wqw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "08b7a35d95682e7422dd5e790ff5240aa6021d3e9ce68f8a44d6c5aa036dfaf0", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "23579360280c5d5c256c19a3e9b510d6c8a21fe8c60d9c0cba7d51e58d972ed1", + "regex": "(?i)^https?\\:\\/\\/gndwhq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8da68b0a296f219227e820b776c48d2ad8f7621a83c40130978a1e20f439f9a8", + "regex": "(?i)^https?\\:\\/\\/btc2oyx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f1ce44eb184ffdada6534f50671657b62983ce4671383ea320f3e4375b1b319a", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2ehu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5e8bcf255fa4ccfef9b976cf285df80d7fe6838c093daf3b0f757d9bd84a1ce1", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b1bfc793e981ee33f492da7082e4ef12784b5e8a8cc2c25c41bedf36e40b7911", + "regex": "(?i)^https?\\:\\/\\/btc1qze\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7c6056cf268fcae641fada0b9f966faae0ded7fbe4d5c12e1a5253e8bb282187", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wgb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7a12336f7963d2ecaf7f9e045d51eedd3ba66351e17b8efa31536532cb4515f2", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1uiq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f7bbb223cbf4955fbbb40c92baef943c27dffb786a06d60c928ad3a05d08718e", + "regex": "(?i)^https?\\:\\/\\/btc2eqx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5c61ffffbf604317741cbb5a23457a908f17cbed384313903b87c7376b52bd59", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7ffb37d268a9b4d87955742eee01a4a70be1dca6227bee0dab040c55724a25de", + "regex": "(?i)^https?\\:\\/\\/btc1qgo\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ea9be5d99460284a8cbcb75e9d446480864a7d8826a8da58aebafe302d3d1bb6", + "regex": "(?i)^https?\\:\\/\\/btc1qbu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0b430e72f4b2d2f4264801719f859f20688e43350ff7a1820c37f5ba8ca56ec1", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qyk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b109293c6bdffbe117cff6383de0de96fe9e38394a004e55dcd7f37224c09781", + "regex": "(?i)^https?\\:\\/\\/btc1qbu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fb5c6b9c4294dd751317bce3499168acb5cec2eefeb29afd4e15742cb5491da2", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2312198b55ccc563d9b8ac83d9581d5c66b634697c60bc2f70d1331e0cf2eb32", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1wvh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "caf399616699e030a63d52a3166ffa6805347e6d25322de3874e3d230946fd40", + "regex": "(?i)^https?\\:\\/\\/www\\.btcqqh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0148b7780c1a22c7831646f2c6291fa1c6b79b2de5484be3b51f16a5ed369a6e", + "regex": "(?i)^https?\\:\\/\\/hftjjt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ab65e1b3dfbf3c0cf66b715a96205f352e00bb824a56f0613f02087269679a2e", + "regex": "(?i)^https?\\:\\/\\/azdzferf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8736a0bcb032f935ef25153ae3e26f5ce2bc89078602e3c58a35aebad5b63fed", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "941132636be3616a178fdde25a1e6ed48883e156ac533fdeef77c4c1ed9044d7", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1qez\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "be26e60af75c2f16008d255b06954359368ff3bec3dab07cc8639289d58000ba", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "634fd44d0fbb491548826e7cb00e7291cea4ab9df4f675c50a93782d386f1839", + "regex": "(?i)^https?\\:\\/\\/newncsnet\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "edab0aa67755aef0b01f3dbf738f770f4c43aeea4f30eedc367c13f7ae93722e", + "regex": "(?i)^https?\\:\\/\\/ghcfbx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0679076668d986be61820946ad97c73ef55daaa7ff5d6dad357ed7edbcfa4abb", + "regex": "(?i)^https?\\:\\/\\/hottrendymedia\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f71188eaaf114589e945ed15f82780208db85c50201043d23155ef13527e3c34", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7847b9ba49c448b808b5b0c43f78ca026f5bcaca7ff572097326d488c2ef7994", + "regex": "(?i)^https?\\:\\/\\/sabbawalnet\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "026f492932b79fafc1f6a1b92aa5f30bdc49d96bae9c9973014e8467085d509f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+packet(?:\\?|$)" + }, + { + "hash": "1a7ce6bf8f716760787416a969118732b8da9c69f295c8ac683750d9bb4ae647", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2poq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cdbef8a63cd86e7db553fc2dc90e1982dca4af29de10f823e784ab51a43c3501", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c83f3b8ee5c4eb4a7cf7690ac9e271c9799fb37ee69bd6353327368e95d4c0bb", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2wny\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "82d5d2ff58a353447a7503b1ffe6ccb0426fca25371a524a4007e201366a6483", + "regex": "(?i)^https?\\:\\/\\/sabbnetcs\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cf25cadef47266de55ce3ac7904761c15ebee0481a3750b2d9cb923690484c14", + "regex": "." + }, + { + "hash": "b0f1b8c36838fade89747a57c0a3aac720bb9364fdd36e3e0412af37718e0d16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+it[\\/\\\\]+Lcg8(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84e16cc50e99aa7240154b9b36ff50ead2e0f6e000c2642a7dce58c50ae953c7", + "regex": "(?i)^https?\\:\\/\\/btc2uit\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "07510cd97d4380c0392dd5a69e6a839ec2f4ffb0e5b56086b02c7940fd247541", + "regex": "(?i)^https?\\:\\/\\/gndwhq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bb9fc2baa913c27c0e5e308257162eef93a4eeab8cdfdc8c7f3e54f4e84ed4e8", + "regex": "(?i)^https?\\:\\/\\/btc2oyx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c39229a08cfbc1715d9a6751376f824cf3d99f58397194de4473d19580235104", + "regex": "(?i)^https?\\:\\/\\/www\\.btc1gqi\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "134cf5b7343a6769e177a3f9f873e56b82a73122b7ae2d0fe2994736f7730290", + "regex": "(?i)^https?\\:\\/\\/www\\.btc2euu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d28f8c9e2f50ae538653bc5bdfefc70339f54822b2e2329fe2676498b15d741d", + "regex": "." + }, + { + "hash": "880967a85aa4d60f82babe9195f1f66f26e0b0fc94f2ca6e3d4e76138fd03fb2", + "regex": "(?i)^https?\\:\\/\\/nhfgqy\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "02daf87e506767052b2cffb20159660fb47add37e52c7dfaf3ebcd8117038788", + "regex": "(?i)^https?\\:\\/\\/anyong1984\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b943986299348561d961a94a8fa3f44913fb89521c07dadcb73d040e576c58f7", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5b58950b6fee162ab34111366c9b82d4900cf41c1fdd317015440d7deed6c768", + "regex": "(?i)^https?\\:\\/\\/videohotspot2024\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3ce4555179d558582bab19254358ca1ed7fdf53e514c23efe77786eb117d9e38", + "regex": "(?i)^https?\\:\\/\\/anyong1984\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "490cca4fded5ca2c3b16245db9ac7f6270dadf56d2124d140f034c0e40570e62", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-101562\\-103583\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "32885964a289a554d2d655d6945f0a1a57d00f968566e3fd58f8efc763fdf3ca", + "regex": "(?i)^https?\\:\\/\\/anyong1984\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2444296975bc46550c8a22387c229d8dc7aafdc0c70891a73a618e31b91e1adb", + "regex": "(?i)^https?\\:\\/\\/codmobilerewards\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "fb7c5227a26a97523994da51db081a90a46b87b8e0312dc834cacc03ba59060b", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9a0552e6676b4d59a73d9bb85c4c15706565b3437321f55c244f661fce4ee2dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+click[\\/\\\\]+zr919hy3s09f6[\\/\\\\]+6745db8a3e03a1e2ece4c247[\\/\\\\]+7e568914207ffb917dd2727976751521d62933c9(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e16839a0146c62ff99788160c6cb73487d1f3969aa742ce4697579c9b6757f18", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9dcd1770e365d0925a0a73b221358d16bd0db0af461bb3477684dacc3b9c7a9e", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6388c362baab4e879f366e3c88e39e1a4b373dbbd12eb8fe2482efe0f6314881", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1O0p0b1ovp072xr5\\-er4bjf29y40b027082372n9c1(?:\\?|$)" + }, + { + "hash": "7f92a690cfead609620b5c38d8f6da479762311b618a18ddf7bc48988866602f", + "regex": "." + }, + { + "hash": "8be7ebcd3f76103a40d94700a69ffe66bafcfd93ec86ceeb4461508377e314fd", + "regex": "(?i)^https?\\:\\/\\/videohotspot2024\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "24442c97ca606fa8693e06ba7c5faf7ce8798415a01f4f6f5db084b711052f9e", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6c237806ba3543c31e41f1f0fc10d3b5512d410f87cd0f1180e4c24b1e7cdce5", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b7d5281ff00e828913f5465688ab7dce418cd456450f0e18f9f597d897e5a", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "40c868d8b0456d13b4277c14c3aa47b2457adfa69ea2fbf2887d3210764f30e8", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2714ca496d81d4ba549ae6fa0bd4e5f6a4f7ec69e8048ca890233e2d2a683dee", + "regex": "." + }, + { + "hash": "0a93bc5960c73dd47856cfb05dc69d975257d82be50a8d83591fa9b9b126ad39", + "regex": "(?i)^https?\\:\\/\\/nhfgqy\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2cd8b4450e1ee2cf7c63066c6d587c5f1716a0feb71b008aeef141117ef3d6e6", + "regex": "." + }, + { + "hash": "95b52a6ba7af7f0241fe335c03c3332b0dddbb9717c00584e697c6f57801310b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+public[\\/\\\\]+weex(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3a65ca4ad700e55c0cb44c82cb631ee588675dacce42ddba2c6fe4e08c038365", + "regex": "." + }, + { + "hash": "573fd40ce0eb627a137d3669029afa888a27c1b2c0ff45474d1f3fc1a20d4ec4", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "581e3c4ac2105fb7560df7ffe6ec567f7a51b39cce24fa2039649e00d55c5f36", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgdfgf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "68a3ea6661452da46b6ceb5449a5db51bbb87b1618e774ffb394a9f98407f3d6", + "regex": "(?i)^https?\\:\\/\\/anyong1984\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4596fe0778d0a7bb9a8c5330c78a9982ca4cb12b55679b9f8e0bd3650c3e3d3b", + "regex": "(?i)^https?\\:\\/\\/porno\\-sur\\-webcam\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "03cd0bc78b3769299f336120d578b95923c2475e9eca04fc271bf28e790faba4", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "95fccafb1296d86cb91fefa16608e5e1e3ee7ca15378616c4a84d76740e758b4", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgdfgf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d344249617ef927f3bc2be5f766e7b3bd139d9e1b7531e25bba3754eeed200ba", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgdfgf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f7a8043d54492df9fbf5c351ba7aa638d5efca07c26564b158e5d0e7395e8a18", + "regex": "." + }, + { + "hash": "a0b6ee94a01c3e1efd85fb552412edd00723a6b0991d956d9b7f9b2ca4cc0d94", + "regex": "." + }, + { + "hash": "e2a9bd926b637f5f3afa3b16c5934345ff4d9b90b3c4271d314f4dd9f449541f", + "regex": "(?i)^https?\\:\\/\\/videohotspot2024\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9cf318483c95a697c30a86a044cd5dc234039f63037a34973a89b5c220cdba76", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en[\\/\\\\]+tools\\.html(?:\\?|$)" + }, + { + "hash": "b93b597a29f7e9707be81ae6dacc87e29216f3263d35c58df6313331a82d5b5a", + "regex": "(?i)^https?\\:\\/\\/videohotspot2024\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "82ffff899ef05e5ae423e3d3bd1550fded430bd7481bc8290ee61c3adfc29024", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0e74d04644184e36a8a73969e34f1472c446e37cb86dd69ba8a631544db5cecb", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgdfgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bc0ca22bdc2bdb96b7a293fa3dde4535d3daed9c0c4d927847dfb621e4d39348", + "regex": "(?i)^https?\\:\\/\\/porno\\-sur\\-webcam\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "da15fbe29877b64695cef8246141c0b3ff6a4627c880a11ca7a53dd0e518ea87", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "12d2f87bd4e35e21c4f34cbb37ef5487e83869d84c9a219b0ac4daa9f47eb281", + "regex": "." + }, + { + "hash": "6ef90e7aa446bfe6252dd81df1c0ae612f43dae8c321bf11f521d0d683b49db6", + "regex": "(?i)^https?\\:\\/\\/njguqxrn\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4202e15eb2339ed183fbdb891605e8905a15a5f6b1438913d29c66505b4174fb", + "regex": "." + }, + { + "hash": "1a62103d0915b31134f7f96d86f8b24eab7aeefad6f9f83b435ecb68eee75bd8", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "735f088d9d1b0dfb99e9c7aeb31ee927e60ccc1ebf848bb8082376938133f626", + "regex": "(?i)^https?\\:\\/\\/videohotspot2024\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d7fceaf56586ff14766825f917bd49d457c3bc92ef85af1dd3c4b75251f14a13", + "regex": "(?i)^https?\\:\\/\\/mail\\.sign\\-netflixrecovery\\.50\\-6\\-174\\-226\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6ea2728d6c19639760c4abb4cdf463d6cad21366114d7911b88ae5655cdef04e", + "regex": "(?i)^https?\\:\\/\\/porno\\-sur\\-webcam\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9f1ffd506319364f959991f6e8e64efa8d0b81f2671a008e3208e24214678382", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "73f9c46887d1bd0f38e6950813cd161c2b6a608d60efaf81feb2594c0b1f04b5", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgdfgf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a85f32e9b5612fc32510d86a020751cad4cd77b592c85a74de17d056d5b82930", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]*\\?login\\=a\\*\\.i\\*\\*\\*\\@s\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&page\\=_dhl\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null\\&vcnt\\=null\\&use_cdtimr\\=null$" + }, + { + "hash": "a435d9dd40c104f3abcc2c0d1c8b2665a7916eeb4b97038e5e2220fa7304cdb6", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "831597510834b8ce23da2732a52acb6242fc1984682aa7b8457e954827302bef", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "65f3dca93b6de143cd4ed84546bfe1d539a5883b7404dd65aa8a719b98aad0bc", + "regex": "." + }, + { + "hash": "bc0c43da9d46890d79a5a5409bd66e2b0d24d7888f700026038dceb11f1be4e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cu\\.html(?:\\?|$)" + }, + { + "hash": "e72bf5911c58274f699e619d4a092140fac2ad88a887cc8255d45006529e1569", + "regex": "(?i)^https?\\:\\/\\/nhfgqy\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "185b698e694eb5bb195140aaf170497e379e4cd09c924cc0d6615cdb62eb554b", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d7ff97bc3882fa8c6d169bdbbb6be2470e920bdaa8864a0a23e6733ae64efed1", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "41dd1b77bf7f87453eac9e97755940f72f480e29b62f727937f80c14fbb70f5d", + "regex": "(?i)^https?\\:\\/\\/nhfgqy\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fd783143df1a7daf01d10cd7190e14a67179cf783dc46c984522f24e15d955ec", + "regex": "(?i)^https?\\:\\/\\/porno\\-sur\\-webcam\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a054c5343c30c2471fe4852170a5ada9f605faab2ea22a915a5323e1b99825b7", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "76debddde33064511850d73ae01fb6640c853c5832aedfc182143ccda6b6e091", + "regex": "(?i)^https?\\:\\/\\/nhfgqy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "056aeead16c9ef8ea44936a9c5ead67216595ccf42d97544e8b591a996f8f05d", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "736332102beabdd7b41e4b50f918fb272444e64413da987346779b0136c5f6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "020fa9b3ee7bb93b0782c1514e9b4db95c723d7eec264ad30a76cef6556b8475", + "regex": "(?i)^https?\\:\\/\\/anyong1984\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ff75590dfa8e6d30974c906b9542ca90707d0dfa3eafcf0ff82eee96d1889608", + "regex": "." + }, + { + "hash": "bc0c43da9d46890d79a5a5409bd66e2b0d24d7888f700026038dceb11f1be4e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "d4144fb7f6ac314a5704bca44b68b9fce071f55ee49e4e067b6232b269d0ac3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yjwqvlrt(?:\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "1a62753e1cdf51b3c2fbd4ad4d891bc19aa2cceb06acd3b8755f2068757fd006", + "regex": "." + }, + { + "hash": "f2ec310678e2bb8477df5709074ebfdba109f9fee7debd188ffa90694d36dc84", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "c6cb01b08766464416333dead5b0cb8812c820075f3c41f223c543640c84f280", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "2e044c8aa6fefeef5a3e18b527ee80ac3e06fe1a8cc5a31310459f9152810c90", + "regex": "(?i)^https?\\:\\/\\/anyong1984\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e941a6b592f76a2513c647f5de1b56ca705b808813bb5136f455fc060d32a2ba", + "regex": "(?i)^https?\\:\\/\\/attupgradeteam365\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1c2c51e563bb860efe865ebd9295e4e6b212bb68eb0a57cd3ac781fef589e7fd", + "regex": "(?i)^https?\\:\\/\\/6688y\\.vip(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb7db12389cb0faa6c01b114c0e914ec802a67bb3907b75e30da719350a4e6ff", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e0005850a51e82a465fc2355d565c90d973aa37707c367db679f09ea2c2e2c73", + "regex": "." + }, + { + "hash": "9dabec3011d9f6ce0d2b57bab72a4cb98a6eca2d5d2abb53f51f0089813077d6", + "regex": "." + }, + { + "hash": "6195b5c2f3ed240d7906c370fb086f86fd3c920b0bbd78f388da23f7c5b15122", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "489348f596d2e2444c912f2992d40b1a0d72dfab9ef7d6e4e5141df6e00bff20", + "regex": "(?i)^https?\\:\\/\\/nhfgqy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3ec93789f5c19a2a69c5976c070d47354cdf38a1c2d20b598151c99278b66a58", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "83bd1bed566172727681f7e35fe64ecb8a839339f7c3330eeca6271695370c8d", + "regex": "." + }, + { + "hash": "7478831fa6867e566318a8a6884ce96332e68c3cf9b7a122160caf19de1a8946", + "regex": "(?i)^https?\\:\\/\\/anyong1984\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f948c655b4e49b5b3e9a3dc4668b8d1a55abd15790ffde9913599f29748846e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+_arcadia_driod[\\/\\\\]*\\?login\\=\\&page\\=_wetransfer3\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=3\\&no_psplash\\=null\\&pmax\\=null\\&vcnt\\=null\\&use_cdtimr\\=null$" + }, + { + "hash": "77c98e872a598daade4f28f3703f77d42585ff09ee8ee8bdfd146568d1167583", + "regex": "(?i)^https?\\:\\/\\/nhfgqy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "76d50a8416c5cc04f1d8a6af767e5be36fc9e6dea32a881ec09b58e07903e25a", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9d6b916f0fff5b2c90ddb5b4a52e3265d9f07bdb2fd77b9b3691887d1945a453", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "35b6ced048ea4e867ca0989d6286ad6919b2268809f3358c18025f09979aacac", + "regex": "(?i)^https?\\:\\/\\/att\\-106815\\-106888\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "787b780f9ef12f3a873879993e2d55f710315716ddac29b90fde779ab4539292", + "regex": "." + }, + { + "hash": "eab978f141263009924608f1e70f4ecd5b9ed9f776d25921b625e4c53bd0ca4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NCQaXR(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2fd2a52d9a6e37d3c43c997ce748428372cc24db65cff7903b340afe08c416f8", + "regex": "(?i)^https?\\:\\/\\/videohotspot2024\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "51a822b9c9bf246ca4c8b3bbb15b0a25f28a3f8998a70a5875e30e0b73cf393a", + "regex": "(?i)^https?\\:\\/\\/nhfgqy\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "406ae7a3460436b0f5a04b6d3a92f60ac42e1d9457255f060fe0b591e0ae5b1d", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "9c8fd6bee666add43bd2e152ae84a4c329b5778021c22c950e3719a4bcd3611a", + "regex": "(?i)^https?\\:\\/\\/anyong1984\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f6d56341777f4c4e9c39cd48759bf4d894d2aaf8dcbb3912958ab43509da96a2", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgdfgf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b47f0262502983264fad371d98f626452ae6a951fd5e2f3acb23c105bc9334ee", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "36395224f0b9bace9ca173bbaa6dfeef276f2cab6cbd2f8808e4b88fadf34ac8", + "regex": "(?i)^https?\\:\\/\\/att\\-109435\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "83159693ccb9d7e9295d06dd756d221a2925067b2c9077e4dee0cf9db5a1b74e", + "regex": "(?i)^https?\\:\\/\\/pub\\-b27d4c041a3944a192cc8405d6b416ca\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d4bb19db46d06445d060819a5fdf7357d06ae7677b5177b0b4d72abd60fc2229", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e9867e63bac89f6545c30ccddb935eebdd24a0ed42a06acea5c60a99e468c", + "regex": "." + }, + { + "hash": "1a989ced92323841ade2e837a63ca23b333e41b08011fb77497eabcffe30708a", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "75ab8f9e3d9efea2bccfa17ed484d451013d99c0c8b068064e6574b2a0e337a9", + "regex": "(?i)^https?\\:\\/\\/nhfgqy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "0ce0fcd88410c474a2e818c7b3b6377508848cefa6871633b835d8ff75109a23", + "regex": "(?i)^https?\\:\\/\\/qehagbqedwhb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d98907e38c4bf7dd859f0ebe366078278b96bfec58590459b62d8c32ca2a98cf", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5286f6d4599d917f613d138060445fb81a83e9e3afde29e76da0e293fad7e4b5", + "regex": "." + }, + { + "hash": "ea25dc1eae429d7d832c9f29d1584875867023fe065acc578738543f5c35aa76", + "regex": "(?i)^https?\\:\\/\\/dreamrunner\\-visiontracker\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fed6c9ca94891ed0282ca403341bf658a6c6c3c498a04e4e7de194240eb35f0d", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgdfgf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c2f35d673f812615b318866eb0592ab0186cc517324746c3d90c59d8aba3a632", + "regex": "(?i)^https?\\:\\/\\/hotvideo4747a\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "45049971f0fae4100c03dd0caeee0cb2a5a748ca93b22dabfbfab1346970236e", + "regex": "(?i)^https?\\:\\/\\/nertdfgdfgdfgdfgf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "748f8a84258b76bb658fd7c3f572300a35ffe4d394aa378153b6fbedeeffbd95", + "regex": "." + }, + { + "hash": "213a246ba52d96c88fb224a8e3ea993c9493780a2206f8ca99c643d562e11914", + "regex": "(?i)^https?\\:\\/\\/arubbbaaka783323\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "47beec8260385547656b994c82cc079cce504428569778913d215013c8fbb93d", + "regex": "." + }, + { + "hash": "b9c835def2d9e3a9ab2d1de61bdfb6b5a0bcc40b6d2f67cc75c6590ab54c4f4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ea285b55be4ed07f6e447cb67854937712a8f7d4ce7474a6e2fcabf7a86fd6af", + "regex": "(?i)^https?\\:\\/\\/hgmxz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+thcsxf(?:\\?|$)" + }, + { + "hash": "faa4e4ae4a211c5aef91bc172ce85beda9ae0bb679666c63dc35e4c104d43d13", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3f59ca46ea5fb539769b8391a5357c466b01e68f47320babefdf725a7b8e6ba7", + "regex": "(?i)^https?\\:\\/\\/saawsaan2722\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "066231b3532a4084bff551f7d243e23eb24d6854d7057488857e9f9c5fb232d5", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "a1a12914ff8adb1636d8bdbee166ff807d8ad1dc02bcd99ebec241be337b2d57", + "regex": "." + }, + { + "hash": "516b9b4e50a1cc49bce771243e7eb3c3f311b3e45743a2df74b9a76980911152", + "regex": "." + }, + { + "hash": "b0e53e318d1de630fe8a8c19d9ecd165bda2ba5e55dc9f7428cbba3871744884", + "regex": "." + }, + { + "hash": "cf5a08c3d9648d14473071af330b107b76b824d2018bc607f2e40fd5aaea5256", + "regex": "." + }, + { + "hash": "9a0552e6676b4d59a73d9bb85c4c15706565b3437321f55c244f661fce4ee2dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+click[\\/\\\\]+zr919hy3s09f6[\\/\\\\]+6745db963e03a1e2ece4c380[\\/\\\\]+7e568914207ffb917dd2727976751521d62933c9(?:\\?|$)" + }, + { + "hash": "753415ce3e34876e45f14450b0eb38e928719b1a86d458fc8aad4e1f0e7d6d9f", + "regex": "(?i)^https?\\:\\/\\/hgmxz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "1c97ea3a09daeb952ca9763c142095330f5e8ed1bc30d6cb8eb64a868c573fed", + "regex": "(?i)^https?\\:\\/\\/pemullan\\-dana\\.resmi\\-link\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "af5ff91502d36c2c974b14c8d3d86a52169b99f69e37edf4c0f0dc7312193580", + "regex": "." + }, + { + "hash": "58e3d1dc6fe95ff6222eb4cf80023edeb6cf3d4dda90e4e2e7b47c07facb7e0a", + "regex": "." + }, + { + "hash": "38b42d0d6c046a1f8b6a4ac63cff9240da100ce797962613539384b6e4bf1175", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7b259b6a049d2440f29857d369ab05ce52d035b15b83f3909c1d7707ac318687", + "regex": "." + }, + { + "hash": "414175c4d82a45a138dfbdaee0ba1dbbdd3555e765f8dd2a4d6cdbef10e3e0d9", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9a9380aa3474f53fe3bac049b3739c47fdcc814ca337604551465303221e0afc", + "regex": "(?i)^https?\\:\\/\\/ngdsbq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "348ca20318d618308edc6bd5c9bb865bc64ddc6ff562c9e5e0937fa040c4b453", + "regex": "(?i)^https?\\:\\/\\/trackwphx\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "0556997c745747f5f452ffbd0700d0d4a77a737a6fd475c185b341c9158d31c1", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e2cd6f4959b4eeb0ae445a96eb93c30a3ce90ec2749ae61ff0868e28876a917d", + "regex": "." + }, + { + "hash": "e091e4424cdedb1e67048133d9548d8c41ec3645b55f98db215eefd8209d4f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-3" + }, + { + "hash": "297ce4ea32a5dc4456d809abb4eba6a2a1698aae7a30011ba9ad3fba9ae9ca17", + "regex": "." + }, + { + "hash": "47717ce5417de885974c89187ca1b0a6aea448e337e147638c7d396a10ec5e2e", + "regex": "." + }, + { + "hash": "09f7cece474a98a59286989670dd209acda4056e17a5c1420f88b75042a7e17f", + "regex": "(?i)^https?\\:\\/\\/amankumar62030\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "1181a641fb9eece98944f667154e04f079896cb9334788a9fd268cb841096c44", + "regex": "." + }, + { + "hash": "270d05c405fa4bb9a84757c5d354f75bdd7aaade6a44e94d259e4c90f96398a8", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4624c4512ae202d351c8b0760f59432f4b97ecff85d2ed41f27f3052ecdc0414", + "regex": "(?i)^https?\\:\\/\\/saawsaan2722\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7fcb2b20e6eaed4006efdfbc439618dc5899a016e2f24f01763c31893e6c471b", + "regex": "(?i)^https?\\:\\/\\/foodcookingnetworkcont\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3cc1203e252e5e90f94aa6a85c27f89d9b544f60a9ab145810bfb735df9b0c33", + "regex": "(?i)^https?\\:\\/\\/hgmxz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cbcfc8b708d8873f5da7ff7cd9d66a51e47ee5165ab0284512e788d399c62af9", + "regex": "(?i)^https?\\:\\/\\/saawsaan2722\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3b86d20be99537f36cd217d7537229e69b89f985331f2a2291a828a4e53eb42b", + "regex": "." + }, + { + "hash": "f8f9b2ba9771ea0375e54db9cdfe02646afdab6bf3f5e65d8875e024df311d86", + "regex": "." + }, + { + "hash": "aefe46284c9289804a97314abb7c97723bf13b16cb3cf089e22739b709949eac", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b9e62b7eee3cad7f4327a6f6321d603deed69365e27e892364914d9d3974bdfe", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d9ceffa7d14f88f72bf570d8de648e96c339217818c3c7cc75a013fcbc3ec656", + "regex": "." + }, + { + "hash": "1a297aaac7a23d78380c17d14f2d3e828d314567b6852b67575598b1c174fccf", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "515d7bc103a12e9183c91726cb8a9f0215b9fc44372a8902058ee074e72afc6d", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d97834048d11ef0e6a197080a47d6c77f5dd379b882c93c4b50533660e401ad2", + "regex": "(?i)^https?\\:\\/\\/foodcookingnetworkcont\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c834d5c77acb0e23c0430eff50e4131256a8ae79c9c3b4d09d577044f50ff504", + "regex": "(?i)^https?\\:\\/\\/tracknnb\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "13ecca19a39d4cccfab02ea4fe1791c77730c7fe476847a78d607c92fa95719d", + "regex": "(?i)^https?\\:\\/\\/saawsaan2722\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6973c2e6bf41fa93a57de0f32d3ddbf329095a53b8fef216aaa9c195293359be", + "regex": "(?i)^https?\\:\\/\\/foodcookingnetworkcont\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "58b0e244c8e73b4f9fcf5ff71cc5a76ae55372767f23dc4b5adc3f966e028398", + "regex": "." + }, + { + "hash": "880920b604edf6c7bc0f6be85f87f5d5f38e74ce6e563468eacae87860f4d73a", + "regex": "." + }, + { + "hash": "9c2a3f643d3608378e0b502894e36ba24cf0f59459d35b5f5de9bee81ccbe911", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "62e50672ffbc9204be3c71aad1f00cb7b248d5bad20e104d0a2119cae2c4ee1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f12d1(?:\\?|$)" + }, + { + "hash": "0cfe172df332fcc988aa55172d7db2a43284caf440363a0e7babbddbd1ce7733", + "regex": "(?i)^https?\\:\\/\\/foodcookingnetworkcont\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "00a7b4e376185b835084bdbc195f6d5b6fa077321d9f6d3da60b9c0581a292d3", + "regex": "." + }, + { + "hash": "7c97c7a5a01d6382a6934a90de22bc61f087fc582604395176c3722b234a0dde", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d4461b418e29579872a23dd54f405d5aa0cf8bac82b89a3e32f36b0c781b3a30", + "regex": "." + }, + { + "hash": "0662b91dbab6c5684f59cd998a7d583c7d955f7bd6269017cb914a8f09969cb5", + "regex": "." + }, + { + "hash": "278c562415efedecde69d266e394ee1c9ecba4c7f6356bae5cbf4527eb46a86b", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ad503c5dcede1681050818e953e16b1f9fa1890f1e2354e6aceaf0fd59d4f0ed", + "regex": "(?i)^https?\\:\\/\\/foodcookingnetworkcont\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ffe2ab451752e5f21ddaf0507c727ad1c9d0c18fead5b8490cf707e8c7c69ed6", + "regex": "(?i)^https?\\:\\/\\/pub\\-c61d677863cd437ea7ba5e20c8e010c4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "c5c6173d16df4fade4b914300025d934ef49623a65d11111e968f79dc576c0c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2a72fbf7987a078d3ea6473afae9abc629a79524033fba9a107fd997fdd2592b", + "regex": "." + }, + { + "hash": "e96eb59ce86f38309680895298d5d3f97f59dd46de866f86aa4591941a621cc9", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "206c320ff9553bc4cc4d8ec77a190f7e7db17fdf9982a6335561fa65fe68f706", + "regex": "." + }, + { + "hash": "9fd47aa8697e8f0f51c8c39f889bc31a446e2fd2e8ea5b1cefd76a92006e7f1b", + "regex": "(?i)^https?\\:\\/\\/pub\\-f4f867e15d564bc5aef27234261bb631\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2a78f31143f67ae6db4efda28fdf6d3a5abd6fdb0df4c824ffd3d46a4934bf66", + "regex": "(?i)^https?\\:\\/\\/ripvort3x\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a0f80528cb8853244d76a5c2e445ab32dff5dbb1234d3a6e5e596cfd1cd87dcb", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5a30e6245a52e60dc9b19e9e253b552be1e78b1bcf99b9949e353b8dc9162278", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d8597857179ea6aa777aefff764ad93d040c3f8f4abd8c97c0266e5aac5099a8", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "36418fccddbad4eee4feb085a571e4a77e4e28ad2cb357a95d58fd0ce08ec24e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+url6669793792[\\/\\\\]+log_setup999[\\/\\\\]+update" + }, + { + "hash": "5e0a653694f6aa6112bb25f7ce9ce0eff42de745ada136f8551a76f7520b05fc", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3c20a8dc90bc160d37b1631f6dd8abf4bf9000e818036b46f71d460adea39e3d", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0340ed3bcc95b635b7a0970d4656efd070ec5b12eb7cbed3ecd3bcf7bf6c6a49", + "regex": "(?i)^https?\\:\\/\\/hiiew\\.shop(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)" + }, + { + "hash": "776e0667c19e9a356815701c479304861217a951800c7839c1b01535ca224c48", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "1cce5cd875f0bf01e5cfbefd5dc5535f01473f1b1e97e61f495d50b38c733fc3", + "regex": "(?i)^https?\\:\\/\\/saawsaan2722\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b23fc5f9234f21fea77e2a2aab453d8fc43d014843a385a015e1525651936fe3", + "regex": "(?i)^https?\\:\\/\\/ngdsbq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c7977c5b059a44e54cf01b4c7b136c5231c65f56155c084df587b6fd2b4540be", + "regex": "." + }, + { + "hash": "87b4a7625b161f757664e320c86d08b49ce1b28f5408221cd638a6810a1ec04b", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e8eee70bc420f24ce3169ea96a4edeaaace0050f6aeac0237789e2885d4d548c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jp" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qwnm3w(?:\\?|$)" + }, + { + "hash": "e5d95b0615043d0e031d70c6006351fb700596d1ccfb6093f91646bb7e197de7", + "regex": "(?i)^https?\\:\\/\\/ngdsbq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p44njo(?:\\?|$)" + }, + { + "hash": "faa02c9fcf90e8963e8da3fc8ee2ab3bc0f7d4930ba3df48131c67f55cba843d", + "regex": "(?i)^https?\\:\\/\\/ngdsbq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9462979d19e7010abb3f670625e055fdea5e7f954c44774d6f982059a834f58b", + "regex": "(?i)^https?\\:\\/\\/arubbbaaka783323\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "0e0016eea33f543fe56e03158823079411b2b82a3e13bd9f7b98e4eeaa36e0b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mir\\.viawak(?:\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "0f7362931c271939f8270418ed510eea7eb058dbdf562231db8f6b7bb6c1b0c0", + "regex": "." + }, + { + "hash": "a4c6274b50f59d2d1b402229503a91aed25ce591258fbad8573e5ca811c83c2b", + "regex": "(?i)^https?\\:\\/\\/arubbbaaka783323\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f4ba14ecc37fa54f9eabdc2ed2d269039a76b16879dd9636017fcbf9fdb66a87", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "af8461f6a4d8bf48065a0008965cece0b9479f41e9126aa20760465e33196c1e", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "332b26e2667fa4569ae493418cd7483e9edc2f6179620e7be38ae890d6cdf6f9", + "regex": "(?i)^https?\\:\\/\\/arubbbaaka783323\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fbe507802e5575b31e39d2e44d6b0f3474fd40bc2ca6416db4cbe13df2bafc0e", + "regex": "(?i)^https?\\:\\/\\/hgmxz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "0cfe2ab922dcf78f7f1423c943a48f3b7b07100f1500dde036bb650d53810289", + "regex": "(?i)^https?\\:\\/\\/agix\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e4794c0acd773b2c9ad656ccb0307906ec6bbe2bb7cdabcdb4822975a38d660e", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "bc83de978d7bfa4d42f33187d701eb6e7f71b2dbcfc46527058f75e9166ef46a", + "regex": "(?i)^https?\\:\\/\\/mallat\\-t\\-new\\-velslon\\-2024\\-q1056d767697\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f9447f48f26496c87a7afb994d1e589b341705bb3b880c4466e3f429352222bc", + "regex": "(?i)^https?\\:\\/\\/hgmxz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7c538e128081ec9907e13a7e92a20924420bb79bb0ee3a3fd72a4b6c888bc675", + "regex": "." + }, + { + "hash": "1a7d8ade679b55ac8b79f4b5d8a1a7d8152f2aa8717e1affa535178396858efb", + "regex": "(?i)^https?\\:\\/\\/arubbbaaka783323\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1bbc757b151c56cf535dc1d993ff5518bee6d430ade0bfd5d47f495a07b263bc", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "8b916b6534f8a90a524ce32f2e3fd8be61d27693a221fbac25230f481a9d3dd5", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4b1926a1dcdafde253a27cc139f3a5e135e519acf94d10d6a2547ef99851b444", + "regex": "(?i)^https?\\:\\/\\/np\\.uvtzrk4\\.rest(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "af4e1f06fa4f117d269e41c69b38141494bbd72adc09ed1fcd00db994036d57e", + "regex": "." + }, + { + "hash": "208452ee85e6bf9d69e1e3776503b7b0d13eb0585d9911ba4229f6107b2a4e01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aid\\=45620\\&pid\\=21015159\\&playbuy_id\\=4624\\&os\\=android\\%2012\\&platform\\=phone\\&format\\=\\&utm_medium\\=9\\&utm_source\\=pb03bl3\\&external_id\\=f886d855f569d535fbc9e5ea03057e3f$" + }, + { + "hash": "fbfd08adfaef2f0213388a5ba9517f51072feb7bd10759b253f33c5a8f9f8406", + "regex": "." + }, + { + "hash": "7bdfbf0b639fde72b7cbf73964933220230f5d3b6b09760fb1e75a39f22beeed", + "regex": "." + }, + { + "hash": "9a0552e6676b4d59a73d9bb85c4c15706565b3437321f55c244f661fce4ee2dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+click[\\/\\\\]+zr919hy3s09f6[\\/\\\\]+6745db963e03a1e2ece4c380[\\/\\\\]+7e568914207ffb917dd2727976751521d62933c9(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a659ff3fe960ed6d78e075d3d2e7355bf2a74900eac48e5de68ebd2d74adeed7", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "95ffa6773132d08d1f724fe0e2ad25200216cdeaa4e9c6d38da374cc8208dcf3", + "regex": "." + }, + { + "hash": "0cb33b735ed54d00f5ed210a347e26f633e54e8f740d750771cfba64b4af23f9", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "413a4ff2e689100c76aceaec2d7802ef2d76522120595bb3bb0e70f3cfd0c86e", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "824cdac0aa34d69397bf130da45ccc982d7be8172d47e2334eeee1b665bfe688", + "regex": "(?i)^https?\\:\\/\\/ngdsbq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5e14603b23b612286cdd9cf21258822ba5b65717dfb049856b1c52c8cf08af7d", + "regex": "." + }, + { + "hash": "9cfaebd36f9a0309708ed6417a7baffb524ba21a17b85fddbb8e978a162e1f69", + "regex": "." + }, + { + "hash": "a743291c346167e8b4fb808f7ddf580570f83d71676a498e43aee6a93ebdd4d8", + "regex": "." + }, + { + "hash": "b5a5f369638e959a8a8bebe8a4ab8bf1fcd0cd00d9e26f9e000b82c8e872b29e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "32dbc75b30d1b0895760e362e1992ac68101c5b00b5270b2f5aa9b92dc04dd12", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d24c2c543046b2c55f3a9149a99f4161f57c921604649b8b940b806ebd5a2736", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "62e50672ffbc9204be3c71aad1f00cb7b248d5bad20e104d0a2119cae2c4ee1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2456f(?:\\?|$)" + }, + { + "hash": "8d177de7700a55c25b82f2ee0aefa531f7f461b4a7e8a2683b24d320f037eb49", + "regex": "." + }, + { + "hash": "250a12d5dbb9673bdc3de190acf09658d5e553a7665adc0896667f7bffa5ead8", + "regex": "." + }, + { + "hash": "06563eef07edaa833c99112d214da4bce5d652b59a797bee4cb0d2e8cd2a39f9", + "regex": "(?i)^https?\\:\\/\\/foodcookingnetworkcont\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "cfddaa7b3e5408c1c6efdfd78235bad6aed4aa9cb2593db58b513ebedffe8dae", + "regex": "(?i)^https?\\:\\/\\/gagan2021\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "3cc5645657ddd84374d0901afa2062b5f94360e518062102b2d9690153817f91", + "regex": "(?i)^https?\\:\\/\\/arubbbaaka783323\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0a869fb8fd8f83a5e143b832a777ce6fe537e617cf4718ccec07b089f0979793", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1212572e01d8f55e63f6d09c54ed457608a5606a0e7abed71fbeccc91848b15e", + "regex": "." + }, + { + "hash": "34052f426a241bf18844770e273cb335f5cc2ccbc48480942579fccb5c801762", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "81d4e83b012c3160958e478ec1905fad5c06c9af1e0d48e8e794e00c5559235a", + "regex": "(?i)^https?\\:\\/\\/saawsaan2722\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1d9d456b005204e46b77b627b14c9d7524bcf60539a35978330c05876f6fef31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index1\\.html(?:\\?|$)" + }, + { + "hash": "597c11965b7ee0888872dda3b0bdb39936b765c394a8cc691320d5356c8c30fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9963[\\/\\\\]+entry[\\/\\\\]+register12332(?:\\?|$)" + }, + { + "hash": "a2e5fe3a87c16f4d07391d717ac642a6f71a21f85a38b8a70f297a077a1c2d83", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "36ee25ab74b57fec4ed62186f86030bd7b0029d81c588efbfc55034bfcf8d0a4", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9b6d1d0e6a97f6c2c55c6ee62f653897ce4791aac4d119dc38503d310999a6d4", + "regex": "(?i)^https?\\:\\/\\/ngdsbq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9e7b90bcc59fb76bcae95f3887013d77a93eda954b6dbf9c789144bdea15d579", + "regex": "." + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "144aa95687f87d15ddafbf318692285ce787104f1b2dd09d6585d034ef7be29c", + "regex": "(?i)^https?\\:\\/\\/hgmxz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9cf318483c95a697c30a86a044cd5dc234039f63037a34973a89b5c220cdba76", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ledger\\.zip" + }, + { + "hash": "c66c507b78d739807ff7da5e7c60d7771141b90a66ddaa36c777a6f28ab5235e", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f0472c3e70e76be68db4d5935bdb78a5733f1350ed248a185b7b26ce73e8bacf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ec813d626d1e04e29a838f0b5ed80d60c3d6e271615a5641e1e0b22dbf621880", + "regex": "." + }, + { + "hash": "dda02d5b7d9e9090aa21b0c9c8804f01dc6809a53802e17da187956e6f681162", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "62e50672ffbc9204be3c71aad1f00cb7b248d5bad20e104d0a2119cae2c4ee1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+31b2f(?:\\?|$)" + }, + { + "hash": "4ba4fa53a62fa9e79109484b9e0a527fe1781e2157f82e5ec40cdb3db4063261", + "regex": "(?i)^https?\\:\\/\\/arubbbaaka783323\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e6a251f8e6e8791ee1a6e25cb3274e74327bc1fe6d90dac00ca8186dbc2515ee", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "32897e30a9234e7979787e2197c272497eb33153965eefed97f8f3a936a1406b", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "01d5fa4c536a578b59f3f7e084702735617a3c87cfdc8a650d800206f54c3075", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gil\\.nutek(?:\\?|$)" + }, + { + "hash": "a818025a51ed629c02780da3fb6d47eab8cda74e3122b4dd2b30574e808a742f", + "regex": "(?i)^https?\\:\\/\\/arubbbaaka783323\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "873025769ebcc14e9f832f4e4c4721bd90df554fe198fea1c1e3c16abf122a34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "f343ac493383f2644a247415496d56fed457ebd7783843c15fbc3e960b73e9ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "b62c72c3be3d66b36239db74bbeabcf4e309b4dd55fda10ad8f53525720a7d52", + "regex": "." + }, + { + "hash": "cfc9a6d754402bb0be166a5c674bc01a6c828c31675fc8a93edbb93b405009c1", + "regex": "(?i)^https?\\:\\/\\/hgmxz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "dee22ba6f15c90d86232bb0d47866bca6b6b295f60de996e4e49df7e9bf7a180", + "regex": "(?i)^https?\\:\\/\\/loadingenglish599\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "ed81ffe29af40fec65a94ad5b700d6baad9cb5dd506b59df5f21a68c0c93323a", + "regex": "(?i)^https?\\:\\/\\/amazon\\.qofph\\.com\\%E2\\%88\\%95bpdhsotei\\%E2\\%88\\%95mekknl\\%E2\\%88\\%95vixtntepq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "37a5979514308960c6846d8161d1c3e31855da6ad8132899315f68b5deef4ca6", + "regex": "(?i)^https?\\:\\/\\/deploy\\-preview\\-3555\\-\\-dbaas\\-dev\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "e2cd601d8fb036eab1a7249dfaea153decaef7f9a2b49fe6bcb0780f7051057a", + "regex": "(?i)^https?\\:\\/\\/ngdsbq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "98798f2be66d7207dd3d634f51e20c3e994b8207b6d2bbe16f71316c4b659555", + "regex": "." + }, + { + "hash": "0eef076b5b7345534410428e9641ee5320e82a106aef49a24060312291893280", + "regex": "(?i)^https?\\:\\/\\/saawsaan2722\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "226abd3c7d55bb9ccf122873b18706bb4ec7f47336601814bcc70efa1ec765c6", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1ba0a96444ae7d908b9cfaae631c1940c2ad943381d0199f9832ec8ac451caae", + "regex": "(?i)^https?\\:\\/\\/hgmxz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e914d11e9770d6a73878c176c5978df9ca74af9037eeb29cf75b836bfc201eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "6076122618a4e4ebf384464b7eeaee2097e576c96d75dbaa55426d4ecec64d54", + "regex": "." + }, + { + "hash": "8b60f6c9074b031b1d6cb02db34574dceaa0195fcf0f30453cb92f1ef74f189e", + "regex": "." + }, + { + "hash": "f6ef3e36a43692f6cc041a6c2cbaa223b9646513a2aecd477c774d47d38cdbfc", + "regex": "." + }, + { + "hash": "1302891fc1c0cfd77f4dbe30665b685d8cf192957e74d47d3c6afce57b6e7245", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b3e5ed68ce8852f9bfec921a692b85bcb7e56ed808b880fe336545abffb766ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ug\\.html(?:\\?|$)" + }, + { + "hash": "5276fddb22201e79d69c4337ea9bbf1b7b724aa40fcb0ace6a81d959bf982398", + "regex": "." + }, + { + "hash": "e6a0d3bf6d0748cf1697677946232c15870afc8cf8229d638cd860553974f4d8", + "regex": "(?i)^https?\\:\\/\\/waasprod\\-app\\-575eb3bacd88c1174ad6ed7e3774b38d\\.southafricawest\\.cloudapp\\.azure\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "18f18b430644bb17c49af5df516328ccc70d4c15afee5d0824fa52becd5138f6", + "regex": "." + }, + { + "hash": "33cda97cc7ecb6ce200220fa79c33aa82706f729573f14e49772758345e1748a", + "regex": "(?i)^https?\\:\\/\\/ngdsbq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c1c0ae21783e47fc27c13123974dc3366575f94889343ac2f61eb9040b03f0ed", + "regex": "(?i)^https?\\:\\/\\/saawsaan2722\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "597c11965b7ee0888872dda3b0bdb39936b765c394a8cc691320d5356c8c30fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9963[\\/\\\\]+entry[\\/\\\\]+register12332(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "033bbe367a5793e545ededb0c66074eaf9ea91fc059b694666f773503241c5ce", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv7\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7054009c4d5762cb91bba4a337892a9f1fe7fe82105fcca550b5c646eca72b87", + "regex": "(?i)^https?\\:\\/\\/foodcookingnetworkcont\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7fdd4c1c7c3799a9ba165e875e16432d4d0d3e2a278b0bc09cfca5db31fd3a7e", + "regex": "." + }, + { + "hash": "cc64b3505f36a7e09c2b76ffd316b61e3997b8b60d8c75ce7c5cf4a53a4be5bc", + "regex": "." + }, + { + "hash": "71b7203a1f6e7af42e5dbe1ebc7d77168a5058787becedceb3075ff4d2761a2d", + "regex": "(?i)^https?\\:\\/\\/hgmxz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1e44a7b6a5118391a12a6d8014dbc58e8d6d175e815c07e16b00c2eb76cac76b", + "regex": "(?i)^https?\\:\\/\\/pub\\-eb4406f76dd4445aa07c59ac018ddc97\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4f6ed30e92355cd9ba2e1bdb8eb6b554589dec52bc4629ee60f99a9ec228694f", + "regex": "." + }, + { + "hash": "72d42e12c37937dcd432050438d114f9437a5bdf584406ac1c4c15cdaec2de5e", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7a8723e2b1e6efe2019e0b2e8d93b6e8feb4d63d0ec2f9d8fcabb3b049340ae8", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv6\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ddb7f552e1c23b9897b9378e30dff44e1574889391e87813ffa79a451e85abd4", + "regex": "." + }, + { + "hash": "f21c78ef32cbc50b1e6c275c6aa6cea0ab0187105b214c2803f17bc0a9ae1c4a", + "regex": "(?i)^https?\\:\\/\\/colegiosantarosa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ed815d6578720945299824cbe4cd37a7b4f3f8f779a18f063ad1a4b17a9323cc", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "73f62878f5ab664281793e8dcea66145f09146ddb34b9aeb0e78230495ee1ad7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+address(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9769b904a74ee450ebb24f4e95c831d406f616627eae27e343e7739bb6f92338", + "regex": "." + }, + { + "hash": "2e61c3ec8e5e0a1b89711bc8b119fe227e8b780cebedb1fb8e8ef92feb9cb1e4", + "regex": "." + }, + { + "hash": "5d192436f256801e2b0f06ab7848642f59ef76030a3bb0ae1fc7f71da483be67", + "regex": "(?i)^https?\\:\\/\\/www\\.ngdsbq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "21ed6345a5f8cfedabced1f92ca6ee3dc06358919b400715d356dc427883e469", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8c99eb318f1ac7f04fcebff35ac6c010dcf64308cb6341297afc2e5a55193dfe", + "regex": "(?i)^https?\\:\\/\\/3jhajdjhajdfasf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "adc43ff6d2852eb54cf27b063c8cafe9a9e018cc9baefd72f47b22acbbf58c62", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "913d9605e5df42f594fdd4b35be860c158de5d6b91542d3dada9363e9d6902ef", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8f64bc94897f06f2f9c1ad7b806966cda31001e4f6492b219813f433aca30f91", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "49c02089cb443e70d964ef58d33b506b0809cb74d71e8c2cb2ff3d53e44714a8", + "regex": "(?i)^https?\\:\\/\\/khjkjhlkhkl079\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fe6b790beb81839da1ace14d164d02f680a8de666fa3ec685e736c48b1d1c5b2", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83123\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1a83342eef6de293e5fb2e97ddf39cde2ce95efc10915c4fd9c007f6c021ce53", + "regex": "." + }, + { + "hash": "bb4396e2f9e2fedcaffa9a9f094058b5c36be4c61de496c2b290695b737a025e", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83123\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c324dae5c32873f31cbc2724d5ef0f3d136cbe72a2fb0b09d3995f7cd0029ecd", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5f4457aea98781a5139effe235e919366e5743c364ce39c8e52f6c006a7bcc1d", + "regex": "." + }, + { + "hash": "10a44e243f1d6dacfcb2dec7e8454622de0ceeb49852d3fa10c029239aa08fb4", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "0d0a49e3f1644d2888a7f6ff9369b489b41cbf87b91512ad396219ef45d11e97", + "regex": "." + }, + { + "hash": "22d750454b7d9988863a31180f3902299696696e641c42426d21f1486d15f75b", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2c21a08d67c57a2083f8cd777f1bbaa37c84dd54b5242c1246601c3dc2348b34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6914072ae4b5f738d428ba24e0dd207bc8a0b956269a3d303eb4e784d4e3fc42", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7a876cafaba3260b008f3a31738ef44a7853821764a4e7ed8d087fc546416184", + "regex": "(?i)^https?\\:\\/\\/inteade2321\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "43018e4769d666002fea295e6bd363956611bd4536934bb58d5bc64ac61bda2c", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "66fb8625338c3c79564f17bfeaf1bdf760403f86118d4ccffdad91ac5a66ea96", + "regex": "(?i)^https?\\:\\/\\/colegiosantarosa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "183b00efa2b43d40db6a3fb637707a83c0642c2a5dd6ee9b18c5458c9e593a28", + "regex": "(?i)^https?\\:\\/\\/dsakdjashd8323\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "00fd0deb233d93c4569c86ab58dd7699e4782ea92ffd3434bbb82d1ae338373f", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "ac828711d5d350319a33db61fa0712c3c060a74df94d8c7bea4776988616abd8", + "regex": "(?i)^https?\\:\\/\\/3jhajdjhajdfasf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d8b2991b524896f91730e1f614dc2009ee0f40345a9fafc34da9741e093d1421", + "regex": "(?i)^https?\\:\\/\\/sdasjd323123\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cc60e8e2328e2e09706bd82371f0ed96cd12b026359982e728474075ca48a7a5", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0fd094939aaccb9423f8d558c13927f098c70669fc8405833773b740152e5a0d", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "04be0c28b505b6faa92553f66bda1835983c3c142a3b15081b013e647df004bb", + "regex": "(?i)^https?\\:\\/\\/colegiosantarosa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "f23613c8ccd6cac619b2d5687f7f65c41c0b85b076d3e190d061859f711d2d29", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "18d735b9abc75d29df20d27d82f02dcfd5042d9e97755650bf9484e0465dd897", + "regex": "(?i)^https?\\:\\/\\/kpwvgdco\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6dfd05a4c0e0a0b6a6f3522a6016d9ba375fbaab983b7a15318c9cfacfe2bd11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+TW(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1e6099d65345c6a3890ae329247218cbad75722725529577da776fa556eeb7a6", + "regex": "(?i)^https?\\:\\/\\/dsakdjashd8323\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "377d87133ec154dd76c81c0832a5d010b5d19995280ac82662c902d0cef22aef", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e9ee789222fbb05015dbdced07be7a77417ff711f100e95b7a7dcfaf104c0bf2", + "regex": "(?i)^https?\\:\\/\\/colegiosantarosa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "579a9d8860595407f51010a70befdecea494ca89c6ea4e5d646c107d24eaa560", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "31a603016d9d2f5ec407fccdca5fa8a59ee0185617e174a81fe31d7b8928753e", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "38c5ccfef18acd731b36955265bcc48b7fca33a383ebfe1bb739fcbd763b1d2d", + "regex": "(?i)^https?\\:\\/\\/pub\\-63322e6ad5b44ac79a3ad525025ffa4c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2c489efaefd7d553ab122393e09ca2455474e215c891dffcd53b43de26978801", + "regex": "." + }, + { + "hash": "5f2e5f534ff2e16a494e168afe1f37a380f9a64ebfc502c7cfdf560a2b0b8077", + "regex": "(?i)^https?\\:\\/\\/daskdhsa8323\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2077c4977fbd413f342cae6431df72b4c0fe58025bdf19441f3648813af34c5a", + "regex": "(?i)^https?\\:\\/\\/sbcglobal\\-105088\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "c9c3202d6c60cfb18bb2810c0d6ce09c6fb9443a6ea70879b0b151d763d65934", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "413a77ea5ac16512200968fc44ec94c79dbbb81d67d68b1c8cd5f32674e7e6b6", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "117f77fcfd27633f4c32885151c4436780fac3131faedb86f6e47843f056a77a", + "regex": "(?i)^https?\\:\\/\\/inteade2321\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "18a1a0eb1a97d55d419d7f8c0e2abc9ef4852e95756eb5a08ce79a8722e1e088", + "regex": "." + }, + { + "hash": "a7436ae92a834c792bea9d6bc15b379518f5e891b9c40c3746aa3b6c1ef7714e", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c6bffd0ee2bf7aff51875c2f45d262da0e6ebb017f7dea45ab9036451ca90741", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "46a7f3909c904896f848078d549b396d07edf884348b0217023f7490e8199ddf", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "769476c7f99c59602592cee923534cf9f84a0a1faa0491ced0774d02127ec6e9", + "regex": "(?i)^https?\\:\\/\\/pub\\-2a2ad3f55c974600b9979cbc2ca19364\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0e0016eea33f543fe56e03158823079411b2b82a3e13bd9f7b98e4eeaa36e0b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eed4cf60638e5b18a102bbdea0337b2c41b3d3f4058e8493edea1a1e14053db5", + "regex": "(?i)^https?\\:\\/\\/daskdhsajdasd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "be9a085ba6d984e109300aed4b4687b8412dd90e48a7698390a6243cbcef2ec6", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "27c4a14ebec88274270ee38ade429e0599c74a1f9c0bd6e3b5e4e7a596ab3300", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9bee21697815ef0c4379c18c3f4605ba4d5977ce8d3b408f233f03fa1314d884", + "regex": "." + }, + { + "hash": "bd1933cfcd54a278ef97c9e86661c39348ffb284e86438758d8d319d252e656c", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c0c978f2c6b6f7188d0ec7df94ffe472ad1678684778fb154b8d62368290f3b0", + "regex": "(?i)^https?\\:\\/\\/092648\\.com\\:5569(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e8b7227b5baf5441fa5a80c59eec0ff40e7b7833f292b3c37d253ad01bd93ca", + "regex": "(?i)^https?\\:\\/\\/tools\\.usongmaipengmaonataddrs\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "eed4257857e3e02e3fa6293ed8ff1bc115664fdbac9e20bd2b682de0047d50d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c834d5c77acb0e23c0430eff50e4131256a8ae79c9c3b4d09d577044f50ff504", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "626d41ede8187c25be16e8f22f43a1002ed31716f6a62790bed7e58aabee93e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ec(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2472226ac1d89f375eeb290e1dc65c2b44e6d08bf7c38f67c6d014fe44776be7", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "cd74f00ab3eab7cb6de71676956cce30eb2d6fe9f2ba6a3d873b1581c7f09bb0", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "b32c2ccaa4e910bbd7b6da82b82b64db1608f1475ebb015b03494a0ed71aa155", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "0b01bb55bbe51e49192edf95c28c25cf47f8726cc62e85426ec900f63e585130", + "regex": "(?i)^https?\\:\\/\\/www\\.ngdsbq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "59a69e51e1091d2f21e8f0bf1e05a01b5146b24ad080c131312024b8179c50ca", + "regex": "(?i)^https?\\:\\/\\/khjkjhlkhkl079\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "6026ff91a6baac1f3e05e650fb624e9584600e32fd10ff918cd9ddf2fe3e5129", + "regex": "(?i)^https?\\:\\/\\/jovmfgdb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "50bee102fd4ce9869b4ec3044359b93cf5e30c1d68b29c957f923dc75204709f", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0f6dc7793d9075934d519be609b8f8003f928f0d02cf6d2cb47d4cfd8a67b18d", + "regex": "." + }, + { + "hash": "044a36bedb1ef523fbbb8dae1d025725c947f4178d48b431f271e21d5aa86dee", + "regex": "(?i)^https?\\:\\/\\/inteade2321\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "dcfbd20a7d396637d1383c2d9994c20d98efcc720c85deaeaab527116fd608bf", + "regex": "(?i)^https?\\:\\/\\/khjkjhlkhkl079\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ba6168e30c6aca84120b314b9c88f102a8bf7a3d6def95a9c271fefa4946ee82", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "befb642bf60e7e945ea1474206c2fef67101a0f5a618300608e7a45cfdd94643", + "regex": "." + }, + { + "hash": "036144844bedb38a39cb6f82357c06e42065ea973b7edfd2c7c2b793b1f57f50", + "regex": "(?i)^https?\\:\\/\\/khjkjhlkhkl079\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "da3a272d69c51e7a3ad3934dc1345c2e99c4e677918a5c2a92210d390a38cf60", + "regex": "." + }, + { + "hash": "1135a60f72d074c698c584ee12c9559a06fa25e7c3823d7ae86a0bb1dc570d0c", + "regex": "." + }, + { + "hash": "15ac4e42689575291cf68eeff017b0f782bf6020301c54b4d72c8f8329e9c22a", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "13aab2f05417b3c55469abe85a0202c3d128bb07ddff7888a9248839f23a33f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f6ca2952dd5f3a808d6815dcf47f85421cda4119783c981016ce35647a5e2f96", + "regex": "(?i)^https?\\:\\/\\/dsakdjashd8323\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "717cb85967084649bede277d3fc0e1a189063b49c79db4ccb15b5fc17c6eccff", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9ee1d653cd683b003a41691c3849bfead30d466f625860b79a4a836544a4a8a8", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "066775de9a0198920cee7b8b96b38c65e9d2be123aa2fbbf2e3675f2ceb9a11c", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4d7acef84a8c616b2994f2c6f3a79ce06f35c33df636ff5d66817d0a028fd7df", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "95b88c987ac61a0b7989b00e515a2d660174697624992bc8b915a196c0d88716", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "21d9ec09c01da5369e8dd46a58ed0fffe4785ec14df025fa78920cb6bdadfb19", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search$" + }, + { + "hash": "909ea4addc3c63bf81183ff97555945f0a08528edd3d7edaf8a303809e73c3df", + "regex": "." + }, + { + "hash": "7690129562a1f8ca47a3a4c76feb7b4c13cd71b4eee1b39484a6b15a6f0b83b7", + "regex": "(?i)^https?\\:\\/\\/3jhajdjhajdfasf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4b392319218a19da2b031fe5a211ee60b0bf68fc828dec8236c587f7ccd29831", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+I(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3e4552af8e8821e6594e222703945c167f0cde6241f3b96bb55b9fb20db84aa0", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83123\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7e2a6d8abd8c24f5f2e7cf766c20e2bb63eae2b19320b7226931794599def617", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "80771ab4176cb831349eab262e9eda2cfb57ff961c29755a05f5ea4130b71fd0", + "regex": "(?i)^https?\\:\\/\\/www\\.ngdsbq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "524449606ea9885f14de21fb47eee91a3f68321aabb692eeee9e23ecd832b991", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "93c6742394b2ab43de80da0aff19fc3dddbd50063e3c466246f8f6ccbb84e800", + "regex": "." + }, + { + "hash": "a965eeb2198b85b69bea125eaeb97c6bd72770c78708f742e51115b44be87ddd", + "regex": "(?i)^https?\\:\\/\\/3jhajdjhajdfasf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8da6f02ae46e2d0967f767b1a58893b300b1f6bb19f9ba970e45116526c482c1", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "0fcd2af6774865629afb59dd563d729dadcdc7eff342d2d223ab11fcc10a51eb", + "regex": "." + }, + { + "hash": "05d093f114642bc12feabc7e2226e2a7e417dafd79b2f6850db5a2b28d2f10d1", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "536d18af76a00c98ddb3cf0335e3e87fc2589b065d2bf8fce41cf9a4c570a2d9", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "523192942a509a2cf2be3736aa211c36b08f7349ed22c6716eb7236432b4ca16", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7280eadce9a3c83be86c9921f5498d4c9e15c76a7a69c708148d7862c4f7cd3c", + "regex": "." + }, + { + "hash": "b835276dbfcb5b19c7d8546bf33dda461a3a4902fe9c25041d8be5efdb70f7d0", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83123\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b0d4ce898ff67803823d6806bb1f57d0f7550221b374043a77c0efa33d39605", + "regex": "." + }, + { + "hash": "748fb314b13fe1486e6fb402840544a549c1c04d1a48940ec48369bacbd1ea43", + "regex": "." + }, + { + "hash": "85854d295c337338e90cd845c76d43724457daa8d6cca24a72dc463df8fdc6ad", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "08d4ff853024c9fd0a8ad20ff789a9ee8d8600f9f55460e49a590441dcd7ad30", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83123\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "da7a47b104c74f58659d4cd70d1d2fe169df047f8463311400c327f7966c84f4", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "27680763df1c6b788864fb8ec1f23cd1c7f02d2f26a460f7174a252195d48137", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "5edebe900184a9834e1444747014e726b334f4dd7a7c576c7373ab3c805a9f4b", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1abe60d877d02bbe395ef8f693b8622dc3ae9125d2881b06637948ece125bb50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f[\\/\\\\]+eJ8jyqgy(?:\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "3e98c29cdead64529393b9e79d879d9e67a87aa4207beb4e788ee44cde4eaa0d", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8f70d9435e554c6ff2134ca08623ee69a7530d51b7ecef5dcb50f9cd30e07541", + "regex": "." + }, + { + "hash": "7a97457b3a3978156d19122a32b5edadfc19c933503090792247079b8542afba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+tj\\?type\\=start$" + }, + { + "hash": "d003962da1ca64bfe8aeef3f7ea67a25bfde409a15b2e02d3939a58e7dc8d0f2", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f78cb6125bdfe5a4f669921b83f0ff7baf703a9ff5d8c12163370c3037952f81", + "regex": "(?i)^https?\\:\\/\\/sdasjd323123\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "54dc7121c1d62b8238faf856e31e36d7f5e5d990c8267224f58f21a67e2da3f2", + "regex": "(?i)^https?\\:\\/\\/dsakdjashd8323\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "de9c25d8f50f78cf39d1a89a43245ef13b948dba8f97bd4beae2a3407b43eecb", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "479e64efa43b9f6203e18939c19981b5e87847a19b72495c6d8c7bdd3d17e1eb", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e32e3fca97ecb03293cbc044d0532deba89445f39906757c6993fc8990291871", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mex(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "a30f51dba3341113461281d529bd28694ce37e9213843f509e38164cbd451019", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f2fa76cbda02c6e58b3eba2364382d451aa08b09e02b384413e912648302c8b2", + "regex": "." + }, + { + "hash": "54f6bd17e00d2cf58a842f9d3db819c599d22301f779b1816cc26c92023b5f41", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "22abad6d93525d7313e4dad8c5dfba94a2537c83bed9259cec56c8901b4ba18c", + "regex": "(?i)^https?\\:\\/\\/3jhajdjhajdfasf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d76066b405ff6ac6f52d71c2d0cdcd5188fd995ad5e5a64aeb5821133b634b9b", + "regex": "(?i)^https?\\:\\/\\/pub\\-363366f39a584603b7cb90cca27abc47\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3e5d772de47ee0bfab26eb06bd4bf124e9fb3ad12aeea012c1d087a15e7d1a5a", + "regex": "(?i)^https?\\:\\/\\/3jhajdjhajdfasf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "01d5fa4c536a578b59f3f7e084702735617a3c87cfdc8a650d800206f54c3075", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c79dcefc1b584c99174eec88b058afcbd632fa30123f3a9ee3ee183a68f954fe", + "regex": "(?i)^https?\\:\\/\\/daskdhsajdasd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "37a028d511de2baee9acfd4d8e534c644ff6c9e0ef6dbd3f04571c4044c0f7e0", + "regex": "." + }, + { + "hash": "d4c5746f1fc4a27cc0d75198ceef71926a525341e814db8d7c7ebdafb42b718f", + "regex": "(?i)^https?\\:\\/\\/colegiosantarosa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "22466ea8383487e92479b68967a0943825e5ee4b1c9901a13bfe2f96df22dc2d", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5e1b3056382111e80116026d93ecd547f202a1e3ca065f5f695e24fd4b92fd1b", + "regex": "(?i)^https?\\:\\/\\/sdasjd323123\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bb28f326b0a640eb24cfc9aadd60a0e2ccada6951eff3e16fceebedc5adc8479", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tqxllraq\\.com\\%25E2\\%2588\\%2595fsxcgx\\%25E2\\%2588\\%2595ydxfe\\%25E2\\%2588\\%2595bkyseevjrp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "18a7ace543992736a08d7f5481764ff9eb2e369cee2b5ab3ed9b5649d6668718", + "regex": "(?i)^https?\\:\\/\\/khjkjhlkhkl079\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "03ae3313c4cd9ebd7e72b87b5dc13fb98da2c5e5a76bcf4c23b0a66dd56559c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b2lUp(?:\\?|$)" + }, + { + "hash": "4cdb67ee359ae01ea3bb9797b211f3402326837b8fd568cedb3c6967ba95af85", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?wordpress\\-187868\\-0\\.cloudclusters\\.net(?:\\:(?:80|443))?[\\/\\\\]+dc[\\/\\\\]+santa\\-no[\\/\\\\]+pages" + }, + { + "hash": "d8a08298067e6a88d4cb45d2ae7181217980b7d685231e91e3f9ce2b6bc66796", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0365b8db6285dbdf2cdc20c6ecb7f7e41003bbf3da1cbfff482dd6af6546acf7", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "332f8d7a820f91aa1cd22d2d6f5bb6a8a7db5a6fd0911a7e2f39570424efcec4", + "regex": "(?i)^https?\\:\\/\\/www\\.ngdsbq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "909a2b1633275af43ef04f4bbe4cf724202f618d5a42317a4ccbf31784c11492", + "regex": "." + }, + { + "hash": "b953d254ab76367e6eb0e4ceb7a030a163666b49e1254d9d57ad323a44957bcf", + "regex": "(?i)^https?\\:\\/\\/inteade2321\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2543ca5764fb42e50848997c96a8e26eff921b42896deaf937d81424b229c111", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "0517dfe3ce829341719eb53757081e86ec83aaa8d7fcb60c43eb444f5a01a4dc", + "regex": "(?i)^https?\\:\\/\\/inteade2321\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a78cbbd86a76edf86f92515cae2930c6dd3ce62d5e158b67351c0649de9bc808", + "regex": "." + }, + { + "hash": "3c8fb1dc84f7319c57b2b88a4e065921f684c9aad613a00995f091e5ad54656d", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b0c24144f1e28988fd428998e5572748b210ad17b85c0434bb7d3b29bb9d496a", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "335a65ede623a3542449e4b31d9d05c32806bb187b971e61d5e562c5fea62b48", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8e8d18f1eb708ee9919e80954e7966eab4f67c52619e73edca2eb69afd3f9a33", + "regex": "(?i)^https?\\:\\/\\/daskdhsajdasd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "29acef2d17d0520321e5d5f2fdb0399e410cb0b2f352306791200d2fd465a3d9", + "regex": "(?i)^https?\\:\\/\\/trendyclipzone\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "128b8854b29c5351f2cc246ae1852e9c38dd33f17fd5b02b4113d0fcc95dcfad", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f2594050a7d11efa0d9f6f8bdcd737ded21f4c217911a8da9c397ce827c3de47", + "regex": "." + }, + { + "hash": "2e97322513a461fba8385a569c8c3bc13103700443c00e6578dd15055dcb964e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5bf3f41e4e533d442e72ab1ae7469b91920f1f0ab8b383de1a37e3243e25a759", + "regex": "(?i)^https?\\:\\/\\/3jhajdjhajdfasf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8f88982328bbef184469e7eb9420495a60e4fb7a34a429fe7b02528c1a766d78", + "regex": "(?i)^https?\\:\\/\\/daskdhsa8323\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "12402aed07272d753e92867a9b9539dffdc8d3245e7ec2ea7098b842a8ba68e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hwy8cq0w493ueu94ub43r9j8e3xv4oe[\\/\\\\]*\\?ids\\=MnTCRoRMT6dTdxWEp5RU1aFmSGczGLeVo6dTdxWEp5RU1azc3crTkI4KJURMToar0UGMdfGt\\&eml\\=aGVsdmVzM0Bjb21jYXN0Lm5ldA\\=\\=$" + }, + { + "hash": "03ae3313c4cd9ebd7e72b87b5dc13fb98da2c5e5a76bcf4c23b0a66dd56559c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:\\?|$)" + }, + { + "hash": "d75f5a62e04802c0a80a8e2a87366c2fc4cd881985b6899b4d15d7503989c080", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+I(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0cacb2dc5c285bd257f0f5130cdbd9c86870e769311990308ab8201cb6f86648", + "regex": "." + }, + { + "hash": "39e255bfb42e628fb4c6a110106690add23c49d583bbda2668964d302419d8e7", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3cc59b86dac9738f3517e87daeb6a3610ade2dec59c12b357138e87f2c44304d", + "regex": "." + }, + { + "hash": "01ecc828bb9b1f3df2a82e0464a9285c721bc825437e29b05e61c070ece8d88e", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c9557a14ee7ed1b53f542b108e6dfe698f724f53d5a2630ca8b0720ed4cbde06", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "1688d7461d623badd04a6d9c6ca1cf307b59fc659c99ad37e9e634f5dd275e56", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "52106070a2417c2b00511e393b3bf16729bad2a339b9c2f437366aec2f96f0e9", + "regex": "(?i)^https?\\:\\/\\/pub\\-22998fef323c4f069ad9d3d01c114bbc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e79f93ff9b2153913434e372c2fbdb096b27cd85858d0b6142d7d06b5f531bed", + "regex": "." + }, + { + "hash": "348ca20318d618308edc6bd5c9bb865bc64ddc6ff562c9e5e0937fa040c4b453", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5027dfed1c5f596abe47f6f9547c02897f940e5e03adba732250386280ff37e4", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "5cdd9ddb033f2aeefb032b3de8e6b98c57d9af7079c057a41adc7f2769038cdf", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3b196d35c32e188ebac1a336f10aa1b09375d15bbb00ff9195486a762f2f1b19", + "regex": "." + }, + { + "hash": "30230a05b39127e57df76aac4c88fe33f49806d52eac7b4ebec8d8988d846d7f", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "095edea28f56ba3fbb914b38b63b652b606168162ca2571c6461fb3634d4e483", + "regex": "(?i)^https?\\:\\/\\/pub\\-2d7b70fd604f47f286fe5e26d2090efc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fa8c13e64865339f59e2cb8a627d3b693fc02db5de8d55fcf30ce68c83d8fe9b", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7f17a627bb5b96a3ea52d6312e40694aee0962b5afc78b5ebb562f0bf783348c", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "46d0557de0f8b0ff753f8f432d9ecd6d57f73c386e382955962c09dc51a87c6c", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3d71c7a67194ffff65d01b837c9668b38e5664a321d50a0a332a60f39b0b2b08", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7ac9bec40f2ba5a08c69fa9edb4a309fb03b66001ef6137376a4db573f094c50", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0f018f32cf3051e218903ed53055fa8fc11b834b69289458162853d4bfaaf7d1", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ddba8a9cc8854d0c99317888eb855697379df907b1ab2729e997e4125833825c", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "adbee62d0ff9e25ac4a4ea65403fc8e44220f1ff4f4c6818b0d405235ae5ad66", + "regex": "(?i)^https?\\:\\/\\/3jhajdjhajdfasf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d541f47c001d8733d6835db01428ba9f2ad9f2d4f026dc964ce411e5591b87f3", + "regex": "(?i)^https?\\:\\/\\/inteade2321\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c94e987650ea3d481c9040d4645d3cf352a111fa040be969530a37a5f42c4d17", + "regex": "." + }, + { + "hash": "3aebe6a8327105feea53befe304514e3fe8af9cd18c942e31994f29b823739fa", + "regex": "." + }, + { + "hash": "cf493725b0229bb22a070fb3df40fd9ebf1a2a0117e3ee119bcf4a611c150708", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7d02c635c671fde6e8f39377569901aed6a3261124bbae8e905f8fe4e5020b44", + "regex": "(?i)^https?\\:\\/\\/www\\.ngdsbq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e7c58f1ad2a59fcc60d47015646f67e9c32887264a28c3278dcc845d7d4e1d2f", + "regex": "(?i)^https?\\:\\/\\/daskdhsajdasd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "1502b7fc3fd75edd72756baf5bfa9e1468b82c7c61d548281d5ce97043d8cc06", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8d2f6c930e8b060de5566327eae24f19213cb34081fa8b429a37bb89f11ee20d", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d381020f6575eeb71338bfc04e79a50da2491889c6c0837a6868f5e15cd94475", + "regex": "." + }, + { + "hash": "efbb9bb7831be69ec68b0178e9e0578fdd1b3e3466236d8aaa47b2ebca132257", + "regex": "." + }, + { + "hash": "83789fb572ea1c52cb9d5b5c3a829e5a8b6d4db0b026c8eb387f6143a8c6b8ad", + "regex": "." + }, + { + "hash": "e09162d810ab2daeaad9082cd30f3ed08b80cb8d0ae3cbf84daeccdf443ccc65", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4725d23caa177de89270761c4f47239bd06d15dae6ed68fd43b0d466d75f637e", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e596f424831e4937fe3b8ca1e2e42234f9fa860805e490d1c387a416bce4aaff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pse(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c339d0ca86c73605432fc39bd91fde895a002182854ce4e65f2c5cfa03e45380", + "regex": "(?i)^https?\\:\\/\\/khjkjhlkhkl079\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f21705147bbc74d799aa4cb977625289ce99c6332850fca37456d9b807560", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "dd4ead19477287839a736844dd5cb13d3e717f29aec764ad792ff73e0db0e4d6", + "regex": "(?i)^https?\\:\\/\\/dsakdhasd83123\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "6a066fcabba84590465ece280d1a131ea13d44a5ce7b669e31fd011c21b8763e", + "regex": "(?i)^https?\\:\\/\\/daskdhsajdasd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "584509df0c5837a4bc6fa2137dc081b53637676178a17ad0139748d4ac690c09", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a7b23cffbc50297d2b9f9fd7bfda5a71637883e2aa71c5b0f0fa3e869f4900a5", + "regex": "." + }, + { + "hash": "fa0108b53edd9df15bdf7abb97a74e4399ebb1879abe0dd42d573060e2186439", + "regex": "." + }, + { + "hash": "4802271f879129f8a8d7dea1f4bf654d33d6be58ca01356010f1b73940532b13", + "regex": "(?i)^https?\\:\\/\\/khjkjhlkhkl079\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0a18c981e6786fc981afc4cf1798a0939798d3279488e7e0bf6e30d3df2b9090", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "31c378a63da0dfac47dbc1957d7c7acced7b9effacf0b64505c58b181b70ab16", + "regex": "(?i)^https?\\:\\/\\/owouwuowouwu\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cafdf4470dbfc18798e6e9c338e5f9bb176548e1dd99afe83d2ea1f55f4b67c0", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d2c7f59bf8ba083c21f0a90f2523393aebfcd671ac89e4684f5e6b4ec0107c06", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "08a05121d24a61b1fe336d7e88a11c10957613a3078c1dad8de912085a02e5e5", + "regex": "(?i)^https?\\:\\/\\/inteade2321\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5bd2f47f84aa2d3d7aa9413135c5f63629a9432b230d73b011ecd6f7c73cd2f7", + "regex": "." + }, + { + "hash": "80d98f4131ca35bc618b11fb66d3213d84a50a3b532b5ce20079b7e4284eca14", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "181f0d182cd3e4dbf2902cd0d184fbd1e13e54fd2b74c249c5ab8841fd7dac1b", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "653d1e1d3ba5b639bcb6ad618b7417d4568f93a01b549d89d9946abc37e1a232", + "regex": "(?i)^https?\\:\\/\\/tools\\.usyaobuyiqichoughaoheyaaddrs\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "9094886d428c5ef598300e7ec63c657f093829b3eec45e1e5ea831d1a343c17e", + "regex": "." + }, + { + "hash": "0df4c917beb76a8ae9e7a398127935de4f26a46f7c32ef70c681c5328e4e2efc", + "regex": "(?i)^https?\\:\\/\\/dsakdjashd8323\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a68713019746d8fbde77d7d88ff0cb69fa4fb219b62c491916ffb472eb38e6da", + "regex": "(?i)^https?\\:\\/\\/dsakdjashd8323\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "104cc4f4293e816434fe67211af5111d3d930d4a1e87aa59a24239e01256d394", + "regex": "." + }, + { + "hash": "8e6b726d3fc0285ce19da238c0dd888b378d374e57a12b216e514eede3888a30", + "regex": "." + }, + { + "hash": "9b13622afa1c58d2378c050fcc1d3ffeb787580c59ef0a7d544ab7430cd5d75f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+I(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "677598a5589229eea8866420f35c444a14bab5d5b072871a41433a46646308d6", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "952afbe6876a4f860ed61a5836edbf67ec75427a22a7761b0e2079c5e9204803", + "regex": "(?i)^https?\\:\\/\\/dsakdjashd8323\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "7622b9f695bf40c2c0d2eac4eec8530cc911f2862ce03e00b162b82c81dbf9c5", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "b97edbf56400e0b637c7a73ff4637b5fde7b2305c2a4072248b6393e3ee14bfb", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7644d59dd08a19464d81b901e29872c0addd1ef90f544bd0bd1cdf25d9054723", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "cdfab2757dbfffca20014e9f10af2220d933c7e4179d17c3f25a4a4059780e12", + "regex": "." + }, + { + "hash": "76383d0b5dbd2e4c345c8e67ce12bcb170b3e98bcf003047260f889d89ff76e2", + "regex": "(?i)^https?\\:\\/\\/pub\\-f67a7c18220c4698949ec4a70145ae82\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "151b3085c738844c7b682c1122b3316bfc7b2cd4ded39d6d82cda10122f369b8", + "regex": "(?i)^https?\\:\\/\\/sdasjd323123\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "251015b421113b290deeb416e461e01e12df5267082e86dba56dee5be70ff551", + "regex": "(?i)^https?\\:\\/\\/khjkjhlkhkl079\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "e8f0c7ad9708fb9b2c27921bbfef8c17012ade42b6ca9bd7b27a63fc751f83bc", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9300765e1e2fd362b45936cbd020db1cf4800f4eb0da629990ed3905af166d47", + "regex": "(?i)^https?\\:\\/\\/dsakdjashd8323\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cb299fccfe9bc3118037e2bdf84500f986849d2a80a0b76fbc67fe2a49decbf3", + "regex": "(?i)^https?\\:\\/\\/daskdhsajdasd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a033fd13bbdecb909621f481d949968e92d051563fc646fc738e49efcc258a36", + "regex": "(?i)^https?\\:\\/\\/sdasjd323123\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "5d254c0d641b3a3a87d2885c9d2af536aa13017a91d3e3ef7915c5186c73c619", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "48ed3cc0a881953e3b678c8ae0a59dc3bd2e2de441bd562544f7d5f7160dcdb5", + "regex": "." + }, + { + "hash": "ae0bd35e1564a2755d5d81379fdffb857b8993d0d1d6895b2be086d8b1e316e5", + "regex": "(?i)^https?\\:\\/\\/www\\.ngdsbq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1d2ece8f34ea6765f38a7951838ea21dc12b5b62cbb79ab4acf5f163fd5d8272", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "21ce83ab640be036577ab59956df1dc060fb0cf22da63cb55ce3bec958c51294", + "regex": "(?i)^https?\\:\\/\\/colegiosantarosa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "1caf117cf72e4f7bd3b222c67bc4f3489d7020958685d78e05f5a7f4bb99b783", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3d41be37e0d127ec00059d8469683762c8dd6e460e6213e71f3b012d1958a1f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7a071626303570a196d284852ada297762b9c5d815467d7db52f1640df792323", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "044a71ef2a7b37d7288d3553d65391e2ef892b48137c9345144e4010ed1173c0", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2d80b75c1763b246045525e9565d40dcd18a7e4e922abd269ada2558d0d0d381", + "regex": "." + }, + { + "hash": "99adf7520ad7b1824bdd1e817eacac78aa061ca4154ab4a0cfab04f5e4d42d37", + "regex": "(?i)^https?\\:\\/\\/fdsfgds78332\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e988ecb755262b53f497a2912efb71b74f87964cc9901ed394af7c80bd47d6d0", + "regex": "(?i)^https?\\:\\/\\/colegiosantarosa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "73c0df1c97e7ee9711ee5fa412d34181fa02e165d9c70e52ac08d98f94d6f187", + "regex": "(?i)^https?\\:\\/\\/daskdhsa8323\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "226aef061fbe6b9807a76b4102696e8ffdb43efb070ac77e818e59544801ee58", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7eef1dd3887c8d3c7948641aee87c2139b390991b585d34df594de2c5528e84d", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "141997164699b4fb23b9b8ffe778ed061fee14e80699337a9d8269dc9429d601", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9a0552e6676b4d59a73d9bb85c4c15706565b3437321f55c244f661fce4ee2dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+click[\\/\\\\]+zr919hy3s09f6[\\/\\\\]+6746e1b48359abc82afef647[\\/\\\\]+7e568914207ffb917dd2727976751521d62933c9(?:\\?|$)" + }, + { + "hash": "2b3219df6b8c2b7ad5deb10cb79a28ac46351ef89094b594a9e042648ef751e4", + "regex": "(?i)^https?\\:\\/\\/daskdhsa8323\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b9161a3e1d91352b6a921d36a055f60c6f2b9402f9b4610184fa7a18d49ad22a", + "regex": "(?i)^https?\\:\\/\\/sdasjd323123\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e1e2cf38ddb5a1887be021b53087e9f2285417b9339f461e72064f0fde6a6dcc", + "regex": "(?i)^https?\\:\\/\\/colegiosantarosa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d4bbcf0aaa7d735e6eb75f0f0b8dbc77e5bff3ae94ef4c1295c95d98b469e891", + "regex": "(?i)^https?\\:\\/\\/sdasjd323123\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a0893b7b76b50a66e28e14dd710151375e623b86422d9bbd89dba744104ada8c", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "958685b2e7af9f1efcd860017a498b3c785046e5e0cec4a69ee78adeb3427796", + "regex": "(?i)^https?\\:\\/\\/tbibin212212\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "dee2740d5c9e9f5aa42aad937a856a7ea759593c9c4db86585b793668106fc0a", + "regex": "(?i)^https?\\:\\/\\/inteade2321\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "32b554ff5b151ed8d673704500ca7197676f9ffe45694ac375e930bf115d448f", + "regex": "(?i)^https?\\:\\/\\/dsakdjashd8323\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "21b5a7f7cbf7d5b57ae683579bb4a41c5e574f522bef323fe6f6904aae5e158b", + "regex": "(?i)^https?\\:\\/\\/daskdhsajdasd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "03ae3313c4cd9ebd7e72b87b5dc13fb98da2c5e5a76bcf4c23b0a66dd56559c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4079ab71765dc5f117c3b8e1f837529cdec391ceeb98c472a16ac0cc2571aa38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "380c3b3b8ee1fdbf2d432b957bb853f597fbccd9da6de77dc6dae8d44240692c", + "regex": "(?i)^https?\\:\\/\\/dakd8222\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "aabb47c49a615ae37f736cdb213b8b1dcc9ee64c71a7a2fa4deadaca7ea45eb4", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ba7c850662c3dffd58e42160d59333831e6c64e365c51e3c7086af2aef5b63fb", + "regex": "(?i)^https?\\:\\/\\/pub\\-674fbad3db224fd6a3c7a68b5f422ac3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2bdb44c5f0b099d67368ee41fb4b5ad5d402bf7b9981d4d42cda6dcc07c457c1", + "regex": "(?i)^https?\\:\\/\\/inteade2321\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "608f6663cd5c5d4e5085e94fc5de1281b329bd89807435aa33d39228c59ac10e", + "regex": "(?i)^https?\\:\\/\\/daskdhsa8323\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2ca2f17d602b17ac77a0b688ccce967b12cd13232e31ba6ec2c47ecb1f720d1d", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfdsf6456\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2ff212e6072ba2a1927aca80a365d1ec33c74c9e97974fc02870ab88dc054323", + "regex": "(?i)^https?\\:\\/\\/skika88228212\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d7e93c532258784ed20856e9517d41064196afb586375a479bff75417595b3c8", + "regex": "(?i)^https?\\:\\/\\/dsajdhsad8332\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e8a3b8fdf59e759c5d1a8b69d67a15cbc5d4665f3040160861ec53f6ec676f19", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "12402aed07272d753e92867a9b9539dffdc8d3245e7ec2ea7098b842a8ba68e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hwy8cq0w493ueu94ub43r9j8e3xv4oe[\\/\\\\]+login\\.xfinity\\.com" + }, + { + "hash": "58428dd0184d3d3a417423f06a2c80ad1c4e7cf0f284003463b4532730cdd19b", + "regex": "(?i)^https?\\:\\/\\/daskdhsajdasd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "bf1f6cfb8ed8b88e8f70fed5da2a47620657503d37373132931ae52423db1260", + "regex": "(?i)^https?\\:\\/\\/daskdhsa8323\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c36777f35d218196b0c9bd6419f206de1949eaae56e34dfde355edc591431a85", + "regex": "." + }, + { + "hash": "a2849771f46c8d3de9a60cd5aef72288a84b46ad9c0735562dfc684ab8ec78df", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "424db6b41cd3d6d7306e90c4069df0c434f637b3f41e6a1d78207a9ce529478a", + "regex": "(?i)^https?\\:\\/\\/dsadkasjhd323\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c409b4ab124e8876a6958a1b0eae8a3d2397ad8acbfe8962760f1c40e45e18d2", + "regex": "(?i)^https?\\:\\/\\/amendeantaigouvfr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "aa9000731d3392a106153c57f9c8d140a0e4b8bd6e90856129025c67140af7d8", + "regex": "(?i)^https?\\:\\/\\/votreamende\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c6237f7cfd449114b3294e37250c92407290d28a0ed54da6b3137eb03e56c18f", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b854032f3995b840ef07efb83bafc8cdfe22271093d0aa43e8946e5bf84a544f", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "72895912fa5850dedf00f97dedc429f4bd46797181b670e46b7b9fdd586211c2", + "regex": "(?i)^https?\\:\\/\\/ribosekeeper\\-helixtracker\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b29da49f04cb38ad59f7e02491dfed19e75f345495b4e381d79e40667201bfcb", + "regex": "(?i)^https?\\:\\/\\/posnta\\.cc(?:\\:(?:80|443))?[\\/\\\\]+pak(?:\\?|$)" + }, + { + "hash": "6ad54f5c491b0a6d891d5b04c3c342d58e68408f1221df70814c9c47122f9dd3", + "regex": "." + }, + { + "hash": "3d7d2248d1ffe0e4c503016357efe9ad75cb43e386585bd64e3486e0199a478c", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "411dc3bef776c07604da3057a02160902e951b93e4dd8490a37aa089f8fa2a72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+tj\\?type\\=start\\&hi\\=1732548465$" + }, + { + "hash": "dedc855f1927ed1ea0920e04d87bf9851e9095aa7a5a4a372e020dd9d61efb79", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "73b3c9d050e8abe6fdea50fc4522bb08c28ada25e8b3a1b81c7b505833205d3f", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6a7ddf3cb27b0a68e57034a08d3c5ff6fd5fd4d4cc02c2fad59a431278107ee4", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "72bfbb2271e3b87963f7df104dc11f380323605c13003379fda97f2b9953336b", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "38719314b2ea3c5702123bc3af2605724d85697e6418fe91d3104e7bdd1f7dc9", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c9c69e2f5af801eb5e380f6d5ca4cba98432877ddb3c0eed57552cfec4a9b181", + "regex": "(?i)^https?\\:\\/\\/assitloam\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "1b0c6239715a03d44b94e484ca74ea9b4d541ef4ed121e0c6fdf919728f87665", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ba18977227d0a240913c97469cc26d8042d6c8700ff4d99fa8809b3b84ca05b5", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0e95d81b77a043bc6e7db4ecd8589dd3852ce606fd66069256d5b08ba1d22b5b", + "regex": "." + }, + { + "hash": "a82eb7e0c8b6646b7324dfd60046a6a7f97ad7787086f5c9533dbf9aa59882be", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a7da1972dc8c731bb51c9a28396e3e33b5c16908567f15aa30489d892b8368c7", + "regex": "(?i)^https?\\:\\/\\/robux60kbvy\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "44e0eff2cfd1d2e282a844847638a4ba6c597967e373f48a3282778ded23b306", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8ec1e4c1089768677e2c97b093520653671f8b009478cf833e02e2b61e8217db", + "regex": "(?i)^https?\\:\\/\\/pastgov\\.sbs(?:\\:(?:80|443))?[\\/\\\\]+gt(?:\\?|$)" + }, + { + "hash": "c6651d71375696dd9e4754585a28b7bfe44410c8dd56acc7e9db8744989e56ed", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9a0552e6676b4d59a73d9bb85c4c15706565b3437321f55c244f661fce4ee2dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t[\\/\\\\]+click[\\/\\\\]+zr919hy3s09f6[\\/\\\\]+674709587e14f813132ec70b[\\/\\\\]+765c68f379d3e7418c7be3238f5ad3dfe7873878(?:\\?|$)" + }, + { + "hash": "31a69e03619ddc3b8968f5002b563ba55e63092b34b82497181159d1681089c1", + "regex": "." + }, + { + "hash": "6b7c28404ef98aa9671526be85b9f25114d47765113ba7f691e590aa36022a30", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4f567bbc11f13f4573e15bb2ce2bf7d9088050dd1288c490181e3f6e4fc6e98c", + "regex": "(?i)^https?\\:\\/\\/free\\-\\-pokecoins\\-2024\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1c49124f590e1ccebdb9421a16ef28a4678c2b1a3219aaca59ac72196bca95bc", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "81fdee1bcaad7d6e109f4204c016e3015b43c5052a4fa88e4e27c286c54e8915", + "regex": "." + }, + { + "hash": "641bfdc520f6d28324663b7bd707b8f41b3e8d894977088f08e70041aca180f2", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e2ecdb78ced33008a2837a7da39c4db5ec043ccae07ec125a3454a1a8fa2b126", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e6f062c73c771e0d1dbe4e377275e0d565eb96ab16255c9b39310ef8ac6995c6", + "regex": "(?i)^https?\\:\\/\\/robux60kvubd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "07854c94704394248d75cfd3a9ff1fc751e8f8c6e4c30e11783dddaaa48af094", + "regex": "(?i)^https?\\:\\/\\/robuxgo60kbu\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b411ba987f02185c6e552592cdcef3b9977e5134e0c0ae4ab5b3c6e47301bb91", + "regex": "(?i)^https?\\:\\/\\/juno\\-member\\-services\\-104520\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e5b20f2cc932a4b4ad50224bafaac1c6099a006de1e06ba9658e22e42915f8c2", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d80ac2b8c5590afc64d4e52d81d9327d25782bc924e145cde7c0236a51fc7f64", + "regex": "." + }, + { + "hash": "28672f4923bf3c29102bf148d08eda51e5fb48fcceff7b2f00cce5c28044c3fd", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2f1c339cd7941b00c9bda0db6521913e72b139be43f63c21702a5830824925a5", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bdfb6d14f44fdb8ba8af900368f1ec21bd7b94272a2ac9c4f1d10a44d6bfa66c", + "regex": "(?i)^https?\\:\\/\\/gatwanaman\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b76bb9002c3851c83a5176d50655c1c4a75ee89258fed37c109d9e73908babfd", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dd5df8fec3171e90c5b6414ee0f224dc80cc0103a22c87f619ef98fe6ec68cc9", + "regex": "(?i)^https?\\:\\/\\/robux60kvubd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "74816e4cee26d56918913465206f51deb42692e3a6149ca7c9dc9e6bb0d65f49", + "regex": "(?i)^https?\\:\\/\\/nucleosomekeeper\\-geneforger\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cd57b6\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "2ec268e7bdfdb1a5e918defcbec4c85fd9f5f66852faf4165d2fe988844d8b7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign\\-in\\?op_token\\=Q5xgXSuP2WlfVgLdgk3cbCjziOVrGl4SXuA6zVGKaktVxzKLvgYlYNb2HkkUXxpiApSU9uIgZvNIfIpfUILdb6Y6cogbGa8F3xr\\&uuid\\=9ab5944c\\-6edc\\-4e95\\-8039\\-5e1e2272c58c\\&hash\\=login\\&language\\=it$" + }, + { + "hash": "1abe69de4968123f88ff6eca6cb00fa9b11ef6f0ed6d83ff6899fb85379ba35c", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b7b1ec3299bce2a5cb3a7e8df67260749a14001036b5ee85955941c107d8d011", + "regex": "." + }, + { + "hash": "ae6e03162c35d8402ddc4248b3dc80890c3821661e75ab57aaf20fc72ce1287a", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "43883c4a83ac32eb902fc384be3080a2d317bed6a9a58608b42ff4d1f34cb6e2", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7807c1c28cbe6f91218383521b073a7d11b89b0ec5bd4813017a9cbf5ae35bd8", + "regex": "." + }, + { + "hash": "871ef162fc73e499091ec06c3146cd11357fd9e514dfe614f26e9433d568fcd3", + "regex": "." + }, + { + "hash": "2ec268e7bdfdb1a5e918defcbec4c85fd9f5f66852faf4165d2fe988844d8b7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+processes[\\/\\\\]+login(?:\\?|$)" + }, + { + "hash": "115ce941c9524ca5a820305a9a2a893ffa04cf8e68a8646819136bbb04b25749", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intest\\.html(?:\\?|$)" + }, + { + "hash": "e41f8bcb09b40598f76f83359493397968f86340dc87e28f67c68c8c6dc866e5", + "regex": "(?i)^https?\\:\\/\\/pub\\-e8a101e705ba47dd83681919d9f30905\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "12160629c4d9a16697ffcd091d9c1d9536a73b4c1d743c935241cdca85ef6fce", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "78a7538c73f5c461c2b844a6b9766d08d26889fd361b39f745efa21a7dd23e4e", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6f93434627a2178fdc00266c1bc37f36043da88b0ba53bc5db74897ba5d86d2a", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "92a2af33adf2f0d96b1a4cb405e5f1800f174b29bed3a597f9290d08e113b518", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "e554a9fa7a71bd74ab1507d937cb3449b23ab66709b32dd85de148ea966df5ac", + "regex": "." + }, + { + "hash": "dbd265cf8ba2eacfce07b5369f9227c84117f3e3fe433e0c2d135f8467268fc7", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "adfd11af26530060b170faabe7a5ff8ef6849cf4695bc98439184028bd08f57d", + "regex": "." + }, + { + "hash": "c8ca2160f62d12fed41376ee1374ad21cbcc96a248e192276aec5389e1e9c5f0", + "regex": "(?i)^https?\\:\\/\\/bajzefhla\\-je\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "314a6c2c90b846828e8a29fb857c6ff189d42e770407cd90149830e71a04e399", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "72aba967f9685838c79016aa7cc95652ed286194e2e4d7a95cf0b94f5e3b202b", + "regex": "(?i)^https?\\:\\/\\/amendesfrance\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2465e42389d488603014ddc69a26ae88bd51b2465eaf09e2406e6032b8c960be", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d12bde055f9e90da001c6fb3be0cac9d66744c062375b76d7fc27fffbefb49a8", + "regex": "(?i)^https?\\:\\/\\/gatwanaman\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "22d2029858828b0b750fd7c77e365c4d0c0e78e9b0010e0d1005557c3d8944c3", + "regex": "(?i)^https?\\:\\/\\/votreamende\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e808d89d92836b08f7af0ca1811facdf0db16985703984b8388905e7f70befcc", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2f2c9d059f57718bff425a3a9a5e986cfa2da025df4064e05488a8ba92958fe1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "31dff8e837062cda2ee9ac4a8eac4ee5cfa1d1fe676e0d091781858d1d5d23ac", + "regex": "(?i)^https?\\:\\/\\/ribosekeeper\\-helixtracker\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?29b959\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "bd174b1e6232ee7dae809e7b75ddacd76fbad729610d76ec67eff755a0d2459e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1(?:\\?|$)" + }, + { + "hash": "fc0e0eeba8ec58d929cfcd0a14d8589a2e700beba415f18d9af413b7d13e7b95", + "regex": "." + }, + { + "hash": "6a6dcbbe8f6b354e6e1cf3531c5387b93e55882bd14219c82d939b4af7864a44", + "regex": "." + }, + { + "hash": "10bdc51ee36d01fdcdc3b27cda96a721244b65e187a47337f2640f15b4591c5c", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "097d611b25f1bde1b7af4283e4f588a9a3e3c87f79c96580cd683800e701d5d3", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0308b8434af576d4f5a7d74e382006809ddddd74d91867191019ceb283e60f78", + "regex": "(?i)^https?\\:\\/\\/robuxgo60kbu\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e598acfc6cc22d9177c06ad21f86897919d23b3b0323086029154ce64ef3fc81", + "regex": "(?i)^https?\\:\\/\\/assitloam\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "033b323ac7bf6093a2f38e01f4ca8e49f8e7320f942b6083f1330f290f926cbb", + "regex": "(?i)^https?\\:\\/\\/considerate\\-koala\\-mqmh5h\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a1bb048e179e0023d590b90a47f1ce86ae1abeb3b91b67eb73cd5d82d6b3a56b", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b6c15922fff80e55da89ac93a8f6fefdcf19c707fb44abed2d90654382283b46", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "39934952ecc5d83d05c3f41231b8150d1a6d51005ea7db6844c79c1ad36366af", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "032821e2e159511aaa2aef5fac88ca4ef57a4cdf651dfe19fac782c25d2360bc", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a1e34d2ec97a26fbe2f85e867ba0aed5f266efe62b81a6c058e278f5e467b2cc", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a82f8a8c031fdd64ce6213c7b3f249a34fa6cd67796292c8a47d23176dc0f4fd", + "regex": "(?i)^https?\\:\\/\\/amendesfr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a1f6b360db9eec51b529ae23623a224a3b9487a37e23c26f9d7c17381e1c22f7", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ac72de91631e1b55983c0cc7f8130e3b57e571b58a86dbb8eb22541193ba4349", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f56d7abb821e99e056b1e7976666e9d4da6e7420796e1d772d55106ffc7fb2b8", + "regex": "(?i)^https?\\:\\/\\/amendesfr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6c0e6cdd4376ee513a97c84fbdaa5c8414847fe9fcd4ef10b27175702679caae", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2f4fcd8c646598d192f4ed78980c77ad1aacc93d6370f774a355f07df14c4913", + "regex": "." + }, + { + "hash": "c4f25211168c64240e71f70ac0dfbaa22a891a1f5a4d7681e46fa7334e97a3b4", + "regex": "." + }, + { + "hash": "59ee4dee60fa7313c3dd6e0559db185e3d3e7d7be263b789f421f8ac3eb4e137", + "regex": "(?i)^https?\\:\\/\\/lzevmuvj\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8554b32f6ff2f15e59fbf2aa2669226b69b91c473b424a926bbd4151398ecb8b", + "regex": "." + }, + { + "hash": "bf1bb2cb5428cf4c6476e3ecef53748b55b0562d9a842dc76d9c063c69540639", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "41a65bf8f6bb6dc662a939f1dfd23bba42b24519cc58dc2289cd3cdf0e9e6a58", + "regex": "(?i)^https?\\:\\/\\/nucleosomekeeper\\-geneforger\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "da61a5798bbffdce19b4c767a4b718df6623eb13cfcf8845c005fcf0e5bafa6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intest\\.html(?:\\?|$)" + }, + { + "hash": "1750518c06c72395502d0bfd03fc86e3bf7381ebd61cc7b49876b9969e85c24e", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0d2b57b96847a773f52f1455f02f6986667ec6cc7237a54c5da6d59b6bf5714a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a43394\\&o\\=e413\\&bemobdata\\=c\\%3D08c9decb\\-b36e\\-42c7\\-a359\\-d2053f4d585c\\.\\.l\\%3D8cd04dca\\-de74\\-4880\\-b0c7\\-e38953f2f271\\.\\.f\\%3Dc0232b9b\\-0ce6\\-4a8a\\-9d53\\-6d2d45d8a4cb\\.\\.a\\%3D2\\.\\.b\\%3D0\\.\\.ts\\%3D1732724964986$" + }, + { + "hash": "ab364114de29354d22c77378de798edf2a4a2ac07de7c9377f0da14250db5fbd", + "regex": "(?i)^https?\\:\\/\\/robux60kbvy\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e855c44cb3b486272c763f75b5f7ae22a8ae8b94164a6af39535f9ed28d9fff5", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0fcd15bb4355e9fb4265906aec6f62400c6fdf44728286c246e9d714d0b1b1ab", + "regex": "." + }, + { + "hash": "e8b90338d8a7119444f749c213009b16b76e145effa05be60f72cbf5e1dd407c", + "regex": "(?i)^https?\\:\\/\\/ribosekeeper\\-helixtracker\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3d707ee44f2eaffcaced1362d6c148207d428eb2486b4e59a312770043306987", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e[\\/\\\\]+sync(?:\\?|$)" + }, + { + "hash": "324e21e098ce7d2636045dce1e7cf630925b3eedddadf2bed043a78cf1e77943", + "regex": "(?i)^https?\\:\\/\\/amazon\\.inykwvh\\.com\\%E2\\%88\\%95xojvqjpgx\\%E2\\%88\\%95epmeadijh\\%E2\\%88\\%95dcqrqdo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hrvhxbovz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3585d032f0b73543e93b4a1b34642c4fc5d8badf80d7547538eecb3476151cf2", + "regex": "(?i)^https?\\:\\/\\/gatwanaman\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eed4257857e3e02e3fa6293ed8ff1bc115664fdbac9e20bd2b682de0047d50d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+connect[\\/\\\\]+WalletSync[\\/\\\\]+import\\.html(?:\\?|$)" + }, + { + "hash": "e41f31ef617b717c33231b7fc3027b08a4cb2cfea9c37365c73867421fd9e61b", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "089091b8f41d140de4fd0621aa8022d64524acae8ea1c8c8de4a3257bad5289f", + "regex": "(?i)^https?\\:\\/\\/robux60kbvy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "10ba84547c117a2d12954815e1b939ef9b01449af934e3ac2eca1b5fefd2557c", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "61150bc6fb0b386cef8e1a037dad0f0a96cea5b7b1e3d3c08b7057e2af8ab960", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?87ee99\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "ecdc9d8ba510f65eef1c658099fff2ef001304d7aab3e4ec2f7562ed2e1614ec", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "42a70764b544ffeda7bb1f6c46c01a350507b3b2a2f3cd92e2e3c73d26159929", + "regex": "." + }, + { + "hash": "9755f9e09c751867c6a27c3620783054ac92e2a0ce4e52df8fbc7d8eab7cbacf", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "beff29cde98d0ec454221e42c87808e87402ae0de1fc969598ff0ad141931190", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "081d654673e94cf5c13da52347376ef93db4aedf1c04b1d78b4dc41c4029db34", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f6e9bd403926e809d671b528abbc6b2a4b1e921a2196686b4e9faac5f391997f", + "regex": "(?i)^https?\\:\\/\\/ribosekeeper\\-helixtracker\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6b72362262b5f43d3cb1f6c9a92aac559a44dd58904d22ea6c23dedcb3d613e9", + "regex": "(?i)^https?\\:\\/\\/amendesfrance\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c143aff00830eed4a8496a4c4adcf2bf3e695c5f19ec928ea49a90614de8007d", + "regex": "." + }, + { + "hash": "4fab2c0fd1f9c2a346e303eaac13cdb91072440d6a52db970ca7ec49f58e37a2", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "dee2fb29bcf4ddfedb5ebf56e1257b2d472f1ce6c3583d5586bdc8a39d837dab", + "regex": "(?i)^https?\\:\\/\\/bajzefhla\\-je\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c760d42c74619b917816e2c0f0b9bfec8cf7b5f201207f9f354b804c62c69962", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a1bb9b29e15b0d56c9fbcd094329c37c594294881126f26080c976cd6a63cccc", + "regex": "(?i)^https?\\:\\/\\/amendesfrance\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1d1bd18f93100bdb3ab76e0920d7bb8645b50e6a71c9c9260bcbe81939f5b566", + "regex": "(?i)^https?\\:\\/\\/vumcftxq\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a238c1bc5ee4db5413c1f78674ab6e796c99e92335f4d2e927902cd022cc7dc9", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3a088cb5ee3e161d6ce01671d0fc2cb9de282ce116d6e4ac3655f08c71a853f6", + "regex": "." + }, + { + "hash": "87970b51b363b8dd6326c8b30737043e981ba7271b86af7441ab0b25261f6888", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6e970716e6cf3c65bf67731d2a491d5461c7685e4a9f8b94f45a4d76861b7c1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+br(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e1552e2158549d484713a84c7d96d4dcd1a9a1e503890af1ea33fadba3ead86d", + "regex": "(?i)^https?\\:\\/\\/free\\-\\-pokecoins\\-2024\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2b940390870dda9680fd699aebe8f1ab92080d47700e1e42606488a2e22f00e9", + "regex": "." + }, + { + "hash": "67469a3a022890745e46e17ce3e0879ebb6db8e7f11497685772aa64b97d87de", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cb8b53396a983df49f9189eff4e0972638582d217fd3dbc20fd133039f03bc70", + "regex": "(?i)^https?\\:\\/\\/robuxgo60kbu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "94316f99c46937b551d58e218ce79fc22d29e6ac9f787392ea81e2bafabc9ee9", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dccb6d6b1e650598da527497f1cd136879b80a702bb5fce2986562fd4959e3d3", + "regex": "(?i)^https?\\:\\/\\/assitloam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0baa55481c31740423752645e24c73c66cf893c00543034f68a3c72df53f4b87", + "regex": "." + }, + { + "hash": "3b03c8496856714894292a2940917253f76aa7e8ffba3b23e4edf7b7827d7570", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "324e21e098ce7d2636045dce1e7cf630925b3eedddadf2bed043a78cf1e77943", + "regex": "(?i)^https?\\:\\/\\/amazon\\.inykwvh\\.com\\%E2\\%88\\%95xojvqjpgx\\%E2\\%88\\%95epmeadijh\\%E2\\%88\\%95dcqrqdo\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "3a747db34c4ccd4852263fc89c1cedc3fd926e14c79bc1efce8929db514cfb07", + "regex": "." + }, + { + "hash": "194368323db1a48e4cecd82b1704dfff123ee469f21af9db83e0baf2fe0204db", + "regex": "." + }, + { + "hash": "c3e3b693ee05d1304e4527ae8fe6346c6559f4e3cf2fa823e42d96802bb95ccc", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "46f17998712453aa68458775a5b3db081d523eb5424b7568e2e4641c1cbc087a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-a" + }, + { + "hash": "5ff38ac144abee17bb421cb77d2a46a99890fdd7a5bd72612c8800a4d1ef8155", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b9d15117e54909d70cbc8d1deabc018d0d46aac66b75671dde04724a44d0793a", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "11e59b25ead9638676f4faa378cc012d643d036c61eda07c8b8f3c17d2a9c2bf", + "regex": "." + }, + { + "hash": "4e1ab064daced6ee02b72c9b4726430e343437c82e9574844b27cbdaa2f2d30f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "9e599f48f75b37d88570064608afe5cb214b6e86b89066e4d12eb6ad2b536e1c", + "regex": "." + }, + { + "hash": "123024626a8af0511864470e3f0e28e796920427ada2a9b86f425b4748ce5ada", + "regex": "." + }, + { + "hash": "ccb58fa2dff5307f9288219e39d01a791d9afa06c597c04b0c8d1f7f6a3a33e9", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1a62891907c94bf2efa2de1e85367921de13016c1ebc0e8a4a72afb47b79546c", + "regex": "(?i)^https?\\:\\/\\/gatwanaman\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "07e7d715788b68c834b22324d6624d9c244aa5fda52760db9150ab62975a030e", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d8aee7d6394447cebf3580ec7a46ed798ab316b2c81322e16391ec13487346e8", + "regex": "." + }, + { + "hash": "843a9a1ccb48ade3f68d2369021b8fa9fd0831a73817c38e80117c7a54c1b7a3", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "178da90c0005c07527ae8768d26de848c6ea2952ff2f93c039f85b0e528bad2d", + "regex": "(?i)^https?\\:\\/\\/bajzefhla\\-je\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "45a489878705265c283cbb0ffd16e5746d96ca233801505e6053906192453560", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3[\\/\\\\]+data\\.php(?:\\?|$)" + }, + { + "hash": "ba8da753c0ba0dce90722edf5ebff0d400ef939f8d96865df3b7f17d2dcd09d5", + "regex": "(?i)^https?\\:\\/\\/gatwanaman\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ebbac57d0e96fb741312bdbf53dd2b367b55406a9a176e1d8de728c9266a3a07", + "regex": "(?i)^https?\\:\\/\\/votreamende\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "01cfddf641918e09090802127e7b759a6b3b8bc1251a3058f3d0543fbcd00572", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c9b4ff59df731f185c1635ec9cb62016e3dc4d3b7bd274a43d8544cc231bb267", + "regex": "(?i)^https?\\:\\/\\/pub\\-560c71c8fddd49ce89a6258c60e77bc6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "15cf6f9d719174eaa6b139b16eae7cc5a31c64d73150e8eb6ac4ae2401ffbdd9", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ce646f\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "deff3fbd198f630e635b2e0b47fe6c41a15a4001f848d6df6e2b33d5762057d0", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3b7c2fc606ce43b300df7aaefa57bc19d4dc6bd64fac949338f8b1f81b00cb24", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c09f3f0fa72e9bb4c74979d79877e961740df96675c1e0459087f27b16c5641a", + "regex": "." + }, + { + "hash": "cd50b04bbc18fb9f67d30d1ec0f79645aaf56bba5458df6a56a1fb3d53da714f", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0fef0fffebbb97062d5d2db308ae4766d3cebfca3576cacf72b3e82fadc92d53", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b1fe611ddc1c1c455b55a334bb89b5a098352d5297198e309345b581dc2cb99d", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "df499ce567c5491f26ce008d49e7e4576c1d47229fea09aec2ef1bc343d576c6", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1c418f8bd5d876370e4be5bbda71873b39504122e1d5e958a7461cc85489cf35", + "regex": "(?i)^https?\\:\\/\\/gatwanaman\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9a63765b2b7133e1574e1d5be74fcfa77d0c60534b4f055712d04a88704774f4", + "regex": "(?i)^https?\\:\\/\\/robux60kvubd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "12391a7164c9d558db93f99393098f917ec9cc042002965696cf1fafe4b5fb3d", + "regex": "(?i)^https?\\:\\/\\/bajzefhla\\-je\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "8b32ca7c81bacff8be33de534cb6f8142697e00cace720a007d5cecc89c5dd3e", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "02f97e2935f80072fa6a3bb93615523f5d86e6480c1d2004274c772711e62319", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e26ac17d3987e40e8af790093ad5235e0bd0afc9b08ce794e395e348870b5d37", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1280eefd4ef94b83d314eb9b0c91fe07325440b02cbaba2b5944d0eaa1238664", + "regex": "(?i)^https?\\:\\/\\/votreamende\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "049511327994c917da98b8ca763aa6339a6b6946cfb388b21321e0bfcdfd2aff", + "regex": "." + }, + { + "hash": "4282627a3dc7c65ae1ca59fe9921a571ba5a98c55b27fe1c51d162833161ed9d", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2c5bd627d3df7bf4c0a2e2d8fd0a5163eb116988c05972779b6bca7b85fea40b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+exodus[\\/\\\\]+import\\.php(?:\\?|$)" + }, + { + "hash": "e1a1ab09deb186b5cc8418e5ebe119ad4c5d57eab8e73c15b3c3333f913ff999", + "regex": "(?i)^https?\\:\\/\\/ribosekeeper\\-helixtracker\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2c13f5059fe17e5e5b1536ed9861923122e702911647227687cb32aaf2ac5a19", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "770dd5753c5d3a91708093c6ec5bcd79a08ba826b22d5d531078a474b2e7851b", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0c63e0ac222276e752778ceb78e8022fed26a5f9eae173c914b19be366670a95", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "faa5225aa805dd6a6b3897a91f1e595ee25206407ad580c49c357296619c8304", + "regex": "." + }, + { + "hash": "1c72f5b449d40c90fbf609a66925de8d443f59f5b1cc0a72287e91a4344157c7", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d0b4f306a6a20c9aa54663c65e9d40348c6d196e97d7dba48a4bcd06995e6a26", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8b4d04b96d21984dc443ed44028b9f81c2fdda1bf3c321b67d276a24bb7684a0", + "regex": "." + }, + { + "hash": "6cf039df1ef10725b70015bd02bb747846369b3a1cf5eaaa7fc902f9c482d794", + "regex": "(?i)^https?\\:\\/\\/robux60kvubd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3bbd1feb1cf887d4d5387ad3f4bd7f67629d106276d11efa9717adcf9a80958a", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5658365b677873861234118896214dd952b22eb22ef5d8b919681cee98190605", + "regex": "(?i)^https?\\:\\/\\/assitloam\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0d2b57b96847a773f52f1455f02f6986667ec6cc7237a54c5da6d59b6bf5714a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a43394\\&o\\=e413\\&bemobdata\\=c\\%3D08c9decb\\-b36e\\-42c7\\-a359\\-d2053f4d585c\\.\\.l\\%3D8cd04dca\\-de74\\-4880\\-b0c7\\-e38953f2f271\\.\\.f\\%3Dc0232b9b\\-0ce6\\-4a8a\\-9d53\\-6d2d45d8a4cb\\.\\.a\\%3D2\\.\\.b\\%3D0\\.\\.ts\\%3D1732724964924$" + }, + { + "hash": "1ba037cd52ce6f3aaa3a496c6b84211bbe2cbbfa7dece19f4dd7438d2df518cc", + "regex": "(?i)^https?\\:\\/\\/amendesfr\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eeb5a2525c47e17890e304702dc3e1f17736f32034bcdb74de293a34a31f923e", + "regex": "(?i)^https?\\:\\/\\/amendesfr\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d23bb20965e77c3a87f45b0a3f32a1637cdd03eb0ed5f0e6822412296856bd85", + "regex": "." + }, + { + "hash": "0da743d1c782746d0a76deb4b815baf07de551236a96ea6dea657cd0018b8b2c", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "dbb5564aef2bd07db660fc82865ff14210d90e2ee1ed43be8c3ad5de26f2dc00", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0595035a5604fe4dbc6170a910b064e3cae8ea63e31bcf9723a3397ecadc40a9", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ff6a01314bb71341ed505b793a33abbaa351552aaf2544d6773bf0fd83aab08d", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7c5a3bea265fe9e300539e944ebe4ffde9723190aa4e215da23a71bd36ac662b", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "68b8a6392db502ad384fa099cdf47d0c26c4199a8d35ee1d29ccc0b7ca0abe7f", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?aae686\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "1a295a2810e69c36c3f7469a27e9223f716dba4291dee321f6475779fa79e45b", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "80a78624958f49de5ee15fcd7caad6111ce4f67db6bc0defeee93ad2d5dc78b6", + "regex": "." + }, + { + "hash": "3b19e30d89295cb194c7da80d05b3d7f39167c357266aa7d699c1d58af0ca015", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "f38bd111f21ce6559197e4141b4d5afa6845565e54e42028de8682ee3d7051c8", + "regex": "." + }, + { + "hash": "2451771d48927e97a36b48c95d04be098530ad8e99e904f22a327da2a9b837b6", + "regex": "(?i)^https?\\:\\/\\/bajzefhla\\-je\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7c92a77b9437b8880fc556e6648ffa0697b4f3b60f0194369d558cbe27e4aa0e", + "regex": "(?i)^https?\\:\\/\\/amendesfrance\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a0f85d4dcfd6db48e3fde4134fb837c28c52c006cf1341404a791a27c384ed9d", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "05fa828a8a54c3ccae86f98a5808afc989210cb7b6cc9de1b04253a6431a8f6c", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7ed950d34fd88cb8d94f5c22ad6c21ccc5d01e6eb03d631e4268dabe806e1b12", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "baabc3740590cfa12b4c37475ea15e736719f62cb40a7a69e0d346e3c77d5e2f", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ac21e60ad3269c3ab887282371b7d0658ec0cd2b95919d588fd6824ccbd7acd2", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0a6a487948c8ea59aa3f4a40e2a144193decba312314588b10f845f3f1e617ba", + "regex": "." + }, + { + "hash": "12d4a02bab6bcb48d38edd96a38cbe2e8e31fac22bcfe22847b2c83a0defb1d1", + "regex": "." + }, + { + "hash": "276881dbdcbc60583ab7d4ef5cf2d4383210343f5d804c311b9178f07e16f8e3", + "regex": "." + }, + { + "hash": "c46e34e9d14e148049c0f7f00414e069d0092ccf1b09f2616281f3dfe14d8481", + "regex": "." + }, + { + "hash": "e0a32bfa6cab1352b7d4df5d3b1aefed5dfac9ce0139a81a6cf993d65475db71", + "regex": "(?i)^https?\\:\\/\\/nucleosomekeeper\\-geneforger\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b481f0de2043b024582d489187ba320b2eb64d66b172af0d3456f6a38756393d", + "regex": "(?i)^https?\\:\\/\\/pub\\-a19cf0d5545e4b829dbd07ac50a3dc0b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a63bbae252519979ff439829c9f3083d79d1025d255a36446709dea5d13d113a", + "regex": "(?i)^https?\\:\\/\\/robux60kbvy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b3f1a918fbc4a5299cc57a94ffa4af7957ab97ecde155d5a792e505c6c5fa505", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f2053f0a34cf22942234b954d11df62a0ea0343dad0cd46dcf7878f2383b1de2", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "01e0535fa7ffdb37919d53e167bd3564dacad60690dc0b6c169086b850ebb00c", + "regex": "(?i)^https?\\:\\/\\/votreamende\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+\\.\\.\\.[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?31385c\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "28f5f6ee9a3772e080adf25fc1e473cc7299dc1917da3611f4591ac9848c94cc", + "regex": "." + }, + { + "hash": "70b0dbd917c3780b8d64564a5536b15d7285d412e0944105e855896fc0c187ba", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8d97d9795e0213d2196090f0dc035ba856aaea81cde4fd22dbe4231bb70e1ad3", + "regex": "(?i)^https?\\:\\/\\/robux60kvubd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e4b62e8d72f17a21bdb2a3f2b763226c671896db33cf514de91dd4036d984cc9", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "62561ca2a9f6c33f9590cebda02e9fc839cae7cfe2d666bc6fe5966f3a37fe82", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dc04745c57752b82c0915996570db9a85b6c5a66eba4aff50d83f6231de896e6", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9dd8a76b82654d26d4c0f2ce37e357c4001dec14b43dfeff4a3efa3c8f023624", + "regex": "." + }, + { + "hash": "7669a2209e37ef5b28e3d9e3d351a570ea7b3b87a9f441f54b3b23f1d761cee5", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6fbe9b18c741ac548abf7b8226e7aee913b4a199f05936c6bb8dc29fad59b5b6", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "26858fca2b20acfdd6f1c03895461e64d076e32448f69a759ec1d1824407225d", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "df7558e9645aa73203792a85fcab5e3353f33003d3a3f612975afc8f5651d294", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f025125f74e8bf221ea180134fc5a940aaa2a532fe880ee7c364ccfd492686b9", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bb1e066791690966f70fa2b245633a03c8415a87574210d63d34df86853557b1", + "regex": "(?i)^https?\\:\\/\\/robux60kvubd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "baf55313539a96496c2bfb1d68fb9ace79918e4096099ee440b45c5cc5e69b0b", + "regex": "(?i)^https?\\:\\/\\/free\\-\\-pokecoins\\-2024\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ebd7db3d0b2ff1a58faa3aac4630be52edf72a4a54cd9da65866ec20799529fd", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "74e2a00db16031afc5d4c6ec5ba4ac11f06d4a4173902af334cd80c95a6b416f", + "regex": "." + }, + { + "hash": "98e3dbf52589f13cd5fda28636b480a8d1acc8e68a5c13ff7e7ad5ba35854e7c", + "regex": "(?i)^https?\\:\\/\\/free\\-\\-pokecoins\\-2024\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7cf2c203b730674721d99ceab2d1be3f6b6507535f09ee512dc79aea4abaa176", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cefcd03034582adf767a7c4317abb669ca514f2d1ea1be8dd7db9920bccda6e8", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5fa94581c562b82ed583b7ac9855fc1065b25c040c7e4b960c2c027c1534365c", + "regex": "(?i)^https?\\:\\/\\/assitloam\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "320da86ce088677c7feff54b0ad097c390e5b0ba7acde5985c1f6a78481894b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+authentification\\-paylib" + }, + { + "hash": "4639a55f90f554b269e7a39c2a8740174b0520d7d5ce476a984ebca8d934f58a", + "regex": "(?i)^https?\\:\\/\\/bajzefhla\\-je\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "daddbd559c87765f0baacfea382c2a80554bf5211dc3540fd8e03e941fc1e425", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "516bfd6efe4333170aae1932b311662af7a5256a813190b1c82aa1da78ab29f1", + "regex": "(?i)^https?\\:\\/\\/amendesfr\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f4a1d9cac96904ad4f229fab5efb0219886d6b51b55c86a92d85401f45461f43", + "regex": "(?i)^https?\\:\\/\\/nucleosomekeeper\\-geneforger\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ff3003ce2ae6c765c5314b4d702d0036fb1c94ffa66146d4f6644cd9ad7c36ba", + "regex": "(?i)^https?\\:\\/\\/robuxgo60kbu\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a3fc2fe12dbf0c4d4cb7b26a21d310680668c04e30ad69dc96e0b278316ab001", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+AKlVEiS64UXEo05M_nfcas4zNiMt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e4be3bcc70936bb1eccb9eff6d3c5f5dcbcdfc19e8421f69bede30656b8c33d8", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d9e3c1f2c720c7e800abcfafea38f4226621cf910c91db6579ef18095e379c02", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cf494cb7d1bc40e315c35d437fe79d8ebbd48fa2dabd76a8098362104f9deae7", + "regex": "(?i)^https?\\:\\/\\/chqlrhnx\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a76102bcd03903d8bdd34f618b1de761ee8dc9bff89085303c5f40ce1deabf93", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3c086523924991ce8769f625810f849443b33eacefa5a89c0cb61607a1c4d0d3", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a023353f89dddc06df84feda424731a628396387795666d5106c630704fa895a", + "regex": "." + }, + { + "hash": "7a0c9e719915027b75c58215c0ef70b78934f4052f99a036451f1392a75d39f2", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a3d9949d61d8d8c66ffb5f61174da46ab9d620c13c242672b37eb660a3dcd35d", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "280d1ee21985c9803e603921ca360565014fafa5d1da0662ba33644c6d1c8aa2", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c2f9e75e000adfcc6c6e3bae24b0618bc40a5668170f5aa30fa73f480b0e7b09", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "11657446d6a1761dcf092b39c0ddcd3d25c7d5c7f2feb44200d8e6bfe69b5129", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6ce416141117057935704b7eff600603967226f609fbf7f26644681e9143d20e", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ec8d369bdaa36a4df619dbb829cbaa4b12aefae8475bb5cb8d26682ba9641edb", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "250cf05683d1519fd7b214807c1380a05eb2316da3b0bc8b5a9b6be26e615647", + "regex": "(?i)^https?\\:\\/\\/assitloam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "80586122c03b943162a35dc13085a2db569545363ca231fedc133595041973d8", + "regex": "." + }, + { + "hash": "b92a405a1347e01e138e796d67273e4ab6c28308ceb382528333477de6f1cfdf", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "33929b372e7a52f8231e958930625bc7a0cd614ab16d8826d0b6f74713357559", + "regex": "." + }, + { + "hash": "f4c66bd2b0b83df2a07827bee120abcd8b6a4e0d1e13890334cdde2324cf9cd6", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "72bf173cb6d2b36d1cd8cf4ab18a4ce86a6f22fcfc18b424d68dc10f725b8681", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "dad5616720726b47482ee74288072d3e0bc74a1d90fcb3d3cb300440775abce9", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "89f846460d981cea96ab248a21483b3cebf23496a48eb0ef94cda5511477c623", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c6f90a9111714af339fe2cdc1592baabf12afc2c5b08c0c476f7cba698b06a57", + "regex": "(?i)^https?\\:\\/\\/nucleosomekeeper\\-geneforger\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5e7124819476fc3961b63a1d3203c78177cc5ab3d6841bf020e227aa4f713218", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c8b2d6c863f704a8d9962de95a082e6633306fe8231cd276db55f6178b2e8a7c", + "regex": "(?i)^https?\\:\\/\\/amendesfr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ad42ae96f7af137514fcf3766ad009bdd2a7446edd821dc8c91874c2a29871c9", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2a9d23bd0ff8d50f340d6fd92fb6c5de9bbfd9ef0a8cc617abb93162c6c8bf26", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "37a55d6a53b898f917642293539332b9b0f997704bcf35ed92da74f6844cd513", + "regex": "." + }, + { + "hash": "80e015d376bedc3ed2d191d5b33e272a5d19055c1d66f4cec41f3220ed0935c8", + "regex": "(?i)^https?\\:\\/\\/ribosekeeper\\-helixtracker\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5471dc\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ae799e\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "0faedd611d345b6a396664a3f65ef6b252ed613e5e64d2e60dc5ae252b9c0626", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4b2574c274e2b1eb6b89450ee2e758686cd8ec2fff00de3aedf9e2717b8e4b92", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a49bcdfcd8ab9ad8798c88d7a16ee2bfd0cbb42987ac7f2c2073f5eec2c868ee", + "regex": "(?i)^https?\\:\\/\\/robux60kbvy\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8069840434c29e4a24e7c2d82445e0e26acfcf6828b806c206f210627f83dfe2", + "regex": "(?i)^https?\\:\\/\\/robux60kvubd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "67f41fa7221d9364cdbf0bcb0f9e1e3feef3cce7be9548a8a653a48422f46584", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "01a26d674c3cf33423b8055c96ee6841d50dd6b8e4700aff0043b728accdaa27", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3be159509e9fc13c1e4a659c781866011e896e2195b9acdb66fb3d0a7ea127a3", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1a3f1f27a57aa6347a32703ba213b033ac37e6e9d698f3db8681239a9543e0cd", + "regex": "(?i)^https?\\:\\/\\/votreamende\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "77e341b57c9cfa351ff7651d586a1c31af39d536ad7f5c70880c03f3f26e69a0", + "regex": "(?i)^https?\\:\\/\\/robuxgo60kbu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "dd33b46d717afa93d83695e78678df1f005646e682723624ac1d0836920375c2", + "regex": "." + }, + { + "hash": "4dc64641bc9361dfd71e1f383565480790ebe6597c8884f270026df141e4df2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df9185c425456be4c6d124f1747bf02175890b39a3d9b3f0246636a3bc050a20", + "regex": "." + }, + { + "hash": "eed4257857e3e02e3fa6293ed8ff1bc115664fdbac9e20bd2b682de0047d50d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+connect[\\/\\\\]+WalletSync[\\/\\\\]+ledger\\.html(?:\\?|$)" + }, + { + "hash": "21a02f0eb8254738a65c28cb6f1f9a6ebfdb6b0c0c50431081c26906fb4fb7a9", + "regex": "." + }, + { + "hash": "2b0773ea8b20d138381cf65a9373ca4fc47a0206e57a595e7e10040d898afdf2", + "regex": "." + }, + { + "hash": "21eda5a2be3cda3e4530e7876a01f7d6979eb7f6fad0f746d4372c5aae9fe451", + "regex": "(?i)^https?\\:\\/\\/nucleosomekeeper\\-geneforger\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c891115f65e4a2e30b28e38ef75d7d6b7a02a63fc4c0417d85e19edca6d06657", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4f2c4d\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "dc796d2439873014a032750a46420d2ecf2b9da2aa1d7abce088db191353d48f", + "regex": "(?i)^https?\\:\\/\\/pub\\-846e6113e9d94bb8bd3470396cf69290\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "558d6ba90002cf9277f789af86d646ced6a5a25701638d59326e905bdcec7215", + "regex": "(?i)^https?\\:\\/\\/assitloam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "95a9b6cc42136aa42a9bfb46b188685bc976124f04e1c3d48be5597c1bbee1ed", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4a66b20702815d9383af2a17ef4c8b76ab33f92b061681fdfe8ab20ab8874809", + "regex": "(?i)^https?\\:\\/\\/robux60kbvy\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d285e4a9aa4accd7cbba50eb079e473250b05f514bfdb4ee4e8227c405939d35", + "regex": "(?i)^https?\\:\\/\\/robuxgo60kbu\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b754525da230b5f11d87001117256134f9f9800294d38135f139d2620ee4d875", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "01af12308a521ec3bb49b300e20e5c1099cae8fba8d804a4d5b01650c9107637", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "abb6134acdc533d0f3a6e1d2f0765febe0c42fbb65c90b922c3a760a20f4770a", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fb7c745eb74d500ee2b904888df25f94109fa5bcc37ed63409c4e72fdf5e4490", + "regex": "(?i)^https?\\:\\/\\/amendesfr\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b816e10d100288ea5c896b9c21e035f527f46d4826e035bba7695959772fcaf9", + "regex": "(?i)^https?\\:\\/\\/mail\\.147\\-182\\-148\\-123\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "013d46d6e140dd1b4e829c15abfd49864cc5352455cf55931dd35e57785668ce", + "regex": "(?i)^https?\\:\\/\\/pub\\-47f01133d14e44c4a3d54ddc64731fd4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "78387ece6810be41c336e94306cb646de5bc91a528f04034019d2040ef06671a", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "467f2a2c9811163109e60d1db8cbbd8ef5c039413a92f343059e99262f533976", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9c2899c16e660730f419249de7c309274e3ba8b69a939d6e9f0ae68affd68bc8", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "318a399ebadce2839d1b1da4bd9dea109500b69b751a6e7cf09bed0bd2185079", + "regex": "." + }, + { + "hash": "08a532d399135b3b74e628922a3436f48533bb122e57019fd9ce74157aa7bfce", + "regex": "(?i)^https?\\:\\/\\/bajzefhla\\-je\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2600c4b68b3445f978e822b8b689fac84497273cf939b7e2f388d039b7630498", + "regex": "." + }, + { + "hash": "fa5a2a38f2acbd85cb75d756fbdfbba8bc910491ff7e1e5597dafade409fba14", + "regex": "(?i)^https?\\:\\/\\/free\\-\\-pokecoins\\-2024\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7c7fa57e2ffaf7baf3f0f249da33992b19999d43848be6fe487f1a21d1673dd6", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0517fa1a7673774d533c1cbcf23a063dcc23158125f196a607a387e3c5983f81", + "regex": "(?i)^https?\\:\\/\\/usman697\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "46fd3bcc61293f2683e256a41dfe31d21f092b5d086ea580a16b6616429d3104", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7df504c923e82e5a74d5ffa2ddc12fc5b1b5ec6fbb9033dd1a9bc04a36972ab2", + "regex": "." + }, + { + "hash": "bb3f8dac895253777a0940fb5f1c4783e20a835bd9801e382036f5e693667f7b", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5ecf27efaa37dcfbc55c7555b6107d34cb4b787bf8eab7dc6da7aa07605e2284", + "regex": "." + }, + { + "hash": "9bb8ee3263c8c08c7d020967816c46d2c1db2b3e6c81d4eb0d3f148636a9dc77", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6d83dcabde89a2f15a5b43e5e031d95229e6f14ef443d8bc49d23d5cb009369f", + "regex": "(?i)^https?\\:\\/\\/robuxgo60kbu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "949198cc468c32c72629b3865a827ac5d2cda49551e024a00fd9a1c51b490f6d", + "regex": "(?i)^https?\\:\\/\\/free\\-\\-pokecoins\\-2024\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "026fcd7f27aca83ac0bf2ac07314b28b3321e2dbeb20e8685108c265e00f0dd7", + "regex": "." + }, + { + "hash": "777caf540097a72536c393663e632f00952491c34adba3c32cd9bc12917a795c", + "regex": "(?i)^https?\\:\\/\\/assitloam\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bab3f60338aba0070569c63a9808923b8e03b48e367397df4831180891f528be", + "regex": "(?i)^https?\\:\\/\\/votreamende\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b211675d1bb091c42b43a03eb4dad29c872e5492c4a984078a72082b96ead", + "regex": "." + }, + { + "hash": "7ea0c4fd460304a0d8365fa58daaadcde7092f4a4b5b347a1096939934117295", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e584b18d7bfe5781c66e08ddd85fc1cb84fa50792d6df79ea6a5c9db1b8ddbb5", + "regex": "(?i)^https?\\:\\/\\/bajzefhla\\-je\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e41fdc951810fe60f6056fe4431275bbfb76c027ff70d43cf2a6da8c7e263fa6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin[\\/\\\\]+user[\\/\\\\]+\\-[\\/\\\\]+PargoZA24SF" + }, + { + "hash": "3d5580175d7dc93b7a55d38886c8d9119647106d6906aba987200eba9fdf7fd6", + "regex": "(?i)^https?\\:\\/\\/free\\-\\-pokecoins\\-2024\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "882d8abc766be0b8b0cbd5d66fdfdaaf8d0faa0cc352ed138ab302cf20061290", + "regex": "." + }, + { + "hash": "1a5838014197f2ba73423daf6366013c7ab06ad99920712b904efc87486f5957", + "regex": "." + }, + { + "hash": "c6cb305426c2a543c2a8970bcb98b6a14095d9cbd8856094902abed4ff004c04", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b81fb96146ca3214c21289368d4092a4dbbd45419fbc48dd2a24a1963b30b83c", + "regex": "." + }, + { + "hash": "44c8881fd22d1d8636631a795656d4332769e5544ad9c84a95e249ca4f5b9b70", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e236008f29003a5578f24bd36f60ae6e89a19d4504ffac569bccbe8908106cca", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "25d7860ba81dc345ab678ec4014a061a102f78f1326a08210ce2ca17ec54ac86", + "regex": "." + }, + { + "hash": "8454fd11815edb0f8647c53ef8466eccba8d5494768c5a29abf1ee5689ffabb0", + "regex": "." + }, + { + "hash": "5f1978d39fed0c78774000fc5d11ca6407034773c827160af4ddd68bf755c2c3", + "regex": "." + }, + { + "hash": "f3ed2747efbcc8bcb85a96f0bdeeaa259dae1fccdf0410b5f8be230a6b35df5c", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "222abd32490879fdf0c22e36a692c98d911346341838b1859efb312e7ef4e7b7", + "regex": "(?i)^https?\\:\\/\\/robux60kvubd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "07d768be9fa08765d52dc6fd5a0d7f89236b195b73cd0ac9ad00f199494271c6", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "095e2077341aa943d80e151b29ddf12ad29afd36224e9cdc04bc602451925026", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ac00add553ecd17ffc687e873a4fd215f9f063b1c0feddf9eac521ecccfccc2d", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a6e12c7ca8381fe2ad2a715373a804d95bf4d6cc96e6302980b14f82e151237a", + "regex": "(?i)^https?\\:\\/\\/nucleosomekeeper\\-geneforger\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c45f1d9e4ad1b9b79a0af5c3ec46c1cca7cc694553507d75bdbca9ac62a942d6", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "859ba8e3fd93fa6732aab3d76d6e2cae3f327ec457a5dca16069b0615e848125", + "regex": "(?i)^https?\\:\\/\\/amendesfrance\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "53fd0c66f0e2993b7afa0d89a3d393007bf43ecde78426cf506b137eac596bac", + "regex": "(?i)^https?\\:\\/\\/amendesfrance\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c558df59241fb011f4e30d211d7031e81712f480f2dcae0c34e1087075e7f372", + "regex": "." + }, + { + "hash": "5025f074b1958302ce1a88416f302000b72a704ab242b9bf698969d49e90f2d6", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9c3a6cc324293928a942b5fede9ae0c71a2bceec80a954d383b52563b8dba5ce", + "regex": "." + }, + { + "hash": "e01eeb1f93bbc3f79ccec92f0533caacba61853371db046e436926fce8b57353", + "regex": "(?i)^https?\\:\\/\\/nkamahakaallab\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "23905d7579fc08745f47a3eaf70ee5702f2994c7f27562c6f3864f927a41d5d1", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "92a209de918e0aaf9c3ae8f876a7d281cc1a9e3626cdf6b122526190f6ad9fde", + "regex": "(?i)^https?\\:\\/\\/robuxgo60kbu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "00aee1902d99fbbc598a89a8859168175419bb47fe4dfb0c69665ac32409666b", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4ec51441ba1b78208600479d1721335302dd9d38707b7cc11366086845b80520", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c86c5a87aa346368a92ff98954e97bbff24ed79a01922168be5d2b20af8a8c44", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3785d7fd7c11a3081985e06303e5304f054019202b320e73112ed172d1de2c82", + "regex": "." + }, + { + "hash": "d67cd3907ca4c9c9d3d8dbbb7c931edb46dadc59408ee4fa98ff61f95583b91b", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6fbe64b8401da88217c971d8a3b296d8d01adc6d485a2cce1786ef80aba721ec", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a9d393a7be1b518ff7a98bbae08dbb0c545bc4df7f9c469968a5f77578299211", + "regex": "(?i)^https?\\:\\/\\/klsjdflsadf3\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8fc1734573fd11fbdfad56b251793bef9819aa12c2c7ecd6261940558acb07e7", + "regex": "." + }, + { + "hash": "7a8e1f2c6a3dd9d62d52846d8d0970c248f6443e0aaf2b3a2ac37efb382f7120", + "regex": "." + }, + { + "hash": "313e41219a7bb341b29f4e5cba18297a11e1a2c9618af267ca39c168936def07", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7ee9d6f1c8b1968c1d88479e9af839d713a9e7492e11769bb374462befca011b", + "regex": "." + }, + { + "hash": "ac42a641b388940ecfb966b77a7a7fbde0bb8bbe24d266bad46caf654096caf8", + "regex": "." + }, + { + "hash": "da226d338113e25f0d6c25ad500f1980870cfa566772b283d50bd3b299b0198c", + "regex": "(?i)^https?\\:\\/\\/amandesfrancefr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f390f4a92edfa54426d563614680efc0a0d25cd241fc09d094d85165b66d620a", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9401528e3b4c9e258b0cd1ed00bd103b2be052b49634aaeb6ed579796ccc9e13", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "842303709ae84231075dd652f7b55106cf21cae50b94a8d1660b23639c936377", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-a" + }, + { + "hash": "813cf4f6a5581ea221f54e1ab3e54e8d2a1cf0233b9320679c24fd81096aee2e", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "357905b6743466d584165c49dd759f62d51b9fc1f9ac90439bb596bc91bf34f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+tj\\?type\\=start\\&hi\\=1732803802$" + }, + { + "hash": "79db44d655bb3fbc3b84fa971e77a36f7e6b955f713aa28db61042ff3c67a708", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "486f3a10dd7795fc1baca63ef7c97531edb173effdd436010b91a99c3f2986bf", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1bc994ba48575de549bb04d04b6aff4e16edcdb9b1dc0321c24fc78d9dcf8a09", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "767c0d7a5ab7b3e0483a9f61edac8370355c7f620166475b0774c02003227156", + "regex": "(?i)^https?\\:\\/\\/gatreman\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fd5e9e\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "8474c444bff2e2cbfcd2432e4b876f852bfd8f04534e34889be1106ae056c139", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0a1862423019f7043e386fa7b8c94558b2a94ae9b58cf01066cc6b29b01f8c56", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "07d25f192e5afe5e65127fe9c071098d5bf898513b2845db6f85a624f0ed201f", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fd5b453621cb7b147918b0f32eeb1b0d90180f1e1275cc42f746cf584b021259", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c0a3d24f1f3fb9b501c99a36772f8f9f1bcd2abb080f12f3cd619b1c0c8f9893", + "regex": "(?i)^https?\\:\\/\\/venomrewards\\.live(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c884415a95eb0ef2b80c1701fcdebcd26810dc957282b201945984e77e9edccc", + "regex": "(?i)^https?\\:\\/\\/gaazhzaga\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a6bff7d77ea36517fa6b8a5bbc53a9f20eb739bb07a2d12c17c253d3b6042c2f", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9dbde89c33888401283de3b7d2cd1563c90b69bd64ef72dbc033de89f07eaa19", + "regex": "." + }, + { + "hash": "a7e3ed527d405880f717a42213cb8f9e41b6c5bd5184251784aec533c37f30c4", + "regex": "." + }, + { + "hash": "dbaedef9da0bb0a000814170a906acdf01b02369ed516c14ebea6eb1ba6960a0", + "regex": "." + }, + { + "hash": "e1efb455d1f18c169cf439e86037b392314f6e4837f740e1064e9d52db529f54", + "regex": "(?i)^https?\\:\\/\\/robuxgo60kbu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f90ea49869d65b8ac6ddafd4529cd05177510043a35714d099f2e6d9c4ebada9", + "regex": "(?i)^https?\\:\\/\\/betalingsmetode\\-dk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "72065cd36c09e2d9f95b513a7230f042d2ce3cd239acb2d5e3697461c25d0a58", + "regex": "(?i)^https?\\:\\/\\/robux60kuvvc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4e815ffde9ea3abfc97b889e894ee01549f087a167da1fe4370c4dd7970e4dc0", + "regex": "." + }, + { + "hash": "ce33c46fc2f05c64fff02d6c4ac0a77f5eb5369df54eff6f577221551d034d6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9vv9(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?4c92e8\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "68c5eeb63f34e3378ad85358cea6d5c6058705a981198259dc81e59b05cc68a0", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9045ad7dfa0b556cd816ad57ac116c20c5f00b4c3ede31f439247ffc92ae7e42", + "regex": "(?i)^https?\\:\\/\\/assitlaaoam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "698bd54954aec8ff11f76c6752990b2ce1859ad26857582f1277d9faf2dbc26f", + "regex": "(?i)^https?\\:\\/\\/oquiawmg\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c80f6a592dd8e6f0320f150dff5b4922c654bce62c12f66caf29afbba8646847", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7e4f6125a9ce235d01cbba59314385e85a136b7b9bdec9fefc10508534d960fa", + "regex": "(?i)^https?\\:\\/\\/chromatinshaper\\-dnaseeker\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "15cf204ba52f0cc844399fd1f0fc1d6c351789895ee89c9f8599a0648eef9eb8", + "regex": "(?i)^https?\\:\\/\\/swisspassupdate\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "679c24e5ea904b0e65c9fd82d10d4769a39af938173cccbac6e4305c7526b575", + "regex": "." + }, + { + "hash": "69d310d7a4085d5a2f9176c5946ca7c3777a9a200491447ce0688a48178000fb", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e87018351af1e4bbddbd19c02f1a009070b22ce93a734e28e8d8192face52356", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "323ccc880c56ab9017f53c5a7d46b289b56c77830895223d38d2140fde1162e4", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a1982a7a101cf42057dc3336b48f65dfa01d44d759a833a3aa463b2dabf66034", + "regex": "(?i)^https?\\:\\/\\/robux60kbvy\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "689db69d721a7823d9d47ab088520f5bd253bfe266d00406bd40d6f7f3a428ff", + "regex": "(?i)^https?\\:\\/\\/bgajmaiiql\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a96e14d7501c976b7de13bc214dc89befdcd50998ce2ef1eb6a04a8bc0af3799", + "regex": "(?i)^https?\\:\\/\\/gatwanaman\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8c1b5310cb5700125ae229fe1165145381c735b905c80270ab91f95d10724a16", + "regex": "(?i)^https?\\:\\/\\/swisspassupdateinformation\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3cb33d7fa310666cad9483c7ff613ba66328ea04ac29ccfb641990de363826ca", + "regex": "." + }, + { + "hash": "01e48f3a08181a4015c831c486f5742143f4c6fe1ddfb7db8de17b6ba18858a4", + "regex": "." + }, + { + "hash": "4f175809004e1217409f866b045e6792bd5f8a87a65be0b9656d19f7aa388b54", + "regex": "(?i)^https?\\:\\/\\/gatwanaman\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "affab3998598c56e1df0adb1394723b2b070e6d65d064cfec04e481c1603b5b3", + "regex": "(?i)^https?\\:\\/\\/ribosekeeper\\-helixtracker\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0a6acb9f2d3b3623998be0fc9cb8dffdadf87a9bfafe989b95b7b5e5bf8f4d63", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ccdb0d24a351f0c93fc16339a28cd3ef77a905682607a0ef19b25c045741eaa4", + "regex": "(?i)^https?\\:\\/\\/robux60kbyve\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e2fdc882730355a43af7352f300d155ed4ee07818733606e6bc0de40cc2979f1", + "regex": "(?i)^https?\\:\\/\\/nkamahakllab\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "013dde6b021d4034274766d2acd54e94c9f3098bdaaa5cc3180821422b145be2", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "996948759c8af02f31bc3a3df0ca68cb18aa5dc20bd378d96eac5eb9fb2f219d", + "regex": "(?i)^https?\\:\\/\\/bajzefhla\\-je\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ef93dcb37062c9a325eb2ad21d437e1a9b00c14b1a504189aa11768ee492818b", + "regex": "(?i)^https?\\:\\/\\/olive\\-malanie\\-55\\.tiiny\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "547ab82e33ce966be8694877084775ddebec1fbc09fa3000ddf5c7531a3bf74c", + "regex": "(?i)^https?\\:\\/\\/iaiejiw22\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d8342533fa7466b568399b17b22b93e423b0535bff3ec0d5862d0d7e2a507da9", + "regex": "(?i)^https?\\:\\/\\/amendesfrance\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0fd29bce62237f128694e627e59d51a32c1e612ccaa8e053cebd1331428ab619", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d4144fb7f6ac314a5704bca44b68b9fce071f55ee49e4e067b6232b269d0ac3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yjwqvlrt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "19d96f5150f566cac4b6bb9ce7992bbfb8b42e18a293c685b509968fbf0843aa", + "regex": "." + }, + { + "hash": "277e08fa87680b3c184e1be84d2655281698bfe67d02f5ec7e1bd3598641ab2e", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9fedba8baca2604c15aac80cba5c83c5abc9c9d0b1636acf55f59466a20c1e3f", + "regex": "(?i)^https?\\:\\/\\/ribosekeeper\\-helixtracker\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7280fc72c2418c5674a8cd862697580298b294d0c52b88595f91713cc7db85b4", + "regex": "(?i)^https?\\:\\/\\/genomecaster\\-nucleoshaper\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "db165dfc60aef9957eefbb6d35f0b7ff2b7dbd28316e99763f841bd4bfbcf1d2", + "regex": "(?i)^https?\\:\\/\\/biomoleculetracker\\-pathwayweaver\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1a49826cca4b95a4469dc78b9c7563cb1dc25315475d86b7113d62d7b4c6de0e", + "regex": "(?i)^https?\\:\\/\\/ribosekeeper\\-helixtracker\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3cae97e53361460d66e17f102a03139daa3e135ed64422e8df0db860f73d5b15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+receive[\\/\\\\]+order[\\/\\\\]+y9oQmuLaVg6(?:\\?|$)" + }, + { + "hash": "4b52ac17219a4b327bbbc49ff9a2aef6632b4806d0614285ed01070fe07430e9", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b80c817b9e2e00579b8e3e2b7f5b69f9aadd0605234ded77204758dea8c80", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "12f0973a07617a54859c1fffa9df32affaca3b3afdfb2b02b3ef1a90c4d91c3d", + "regex": "." + }, + { + "hash": "dfef4c9a4d99a131f81be30020781ea445ce8726b6fc8eb6713027a2f9a8780e", + "regex": "(?i)^https?\\:\\/\\/psestafeta\\.cc(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "0148fbf037a10df259aafa5e2b6a787849556af13a91a85b1810a85f52eee1f5", + "regex": "." + }, + { + "hash": "8f2259ab4695e6d00e5fa4f00b6178bfc8a900773557549b3532808b05f34624", + "regex": "(?i)^https?\\:\\/\\/egezrg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bb6c06b5f65e55df99f32b2145b94d33d71d3afde699c33376f153c6dc34718c", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "849702f72b7a200a9d744c0bcbd9b5c9d3039346c477927d51cf3508e297e594", + "regex": "(?i)^https?\\:\\/\\/jshdfgasdjufhaskdfjhaskfj\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "da3dd84eabae53e244e0c31d19d82fc61abba4225655d6c75580c24159ea6508", + "regex": "." + }, + { + "hash": "de50ba5914c92ba3d2d8aa509dece2a1aaa67e2dad52545d8cad7bd82582e0bb", + "regex": "(?i)^https?\\:\\/\\/hotvideo17p\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ed81c50a76fd6cd4477f177b58061fc2ce7a408399367acd04b35218a5d811d9", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "58078b4fe80c826271e648b3575d833438cbfb7b44a79fa48208e970ba819270", + "regex": "." + }, + { + "hash": "ffef11b5eb0ef1c6747aff8b450b5aba6860306ed6aba5cb7633b2fc0dbf4704", + "regex": "." + }, + { + "hash": "97779527042b388c76422101f0ad31703271e35d83991029ee9604f6285e788a", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c3403dcbdc40ff9e011990f5e437d8b38374a379b7dd2469a9a535c0299684df", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f9b57a082c529fc29e4bfe42390c3d582cf3bcaaf096210e9a826c5179e62db4", + "regex": "." + }, + { + "hash": "a078a8bd8ce6bbad2660d83decf9f712bfe93c7aecc2172849f885c8763fdaab", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6042ddb1434521c5cd1b933408c65264a37cdde2ae7b4c55866d3e588613925b", + "regex": "." + }, + { + "hash": "af0dcade00edbb6a10aac2caa3e0bd2f7b904393877870a6f1e3e205a6f7dff8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+search(?:\\?|$)" + }, + { + "hash": "f38be1f09f3c11ece34a9693daa7bb740bd0989f187e443d907961790117a37d", + "regex": "(?i)^https?\\:\\/\\/egezrg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bd7a9344ad9dc84005fe2706b30ce981baba3be00f9b3b10999511dc28d674fd", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b605b899df367a7774bff56d3f969a3a2f98fc89892d172a1505af60b734a04f", + "regex": "." + }, + { + "hash": "e77f5e0dbdecdef7cbcf63a4d478e972dc849649f02026330b7f9555d0db789b", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f129fbe487bd51a7a7f90e2cc445728ed6a488a38cefee762e9dac7daabd3", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "33801f475731745318852782edc3654124d157aedf10e5e1f48692d11f5040b0", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5b0de0c069d37e6cf8fdd4cb28cef33cbb0dd38a79695579e233d92400d68f52", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a9e9d1c6b87d7b0f9303c5c6207ed218fa5f8e2af17bc2bb9c4e78feb2695e21", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fc361f060ea9361ae6c3decc422bb37245aef0719d27b5b6e6e3fd57bdec63ba", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2628656ec9178e356c51b8336634ea8c779306daba019a4642482999fe6c0bbc", + "regex": "." + }, + { + "hash": "5ec211f6c2801bfed1396f4b274391e9cb283d3fbaa6c921285e3d5c5f8baa8f", + "regex": "." + }, + { + "hash": "e3cd90147da034065cd851a18a1d946aa0cfeb593cce549dc518f0cba8e3c67f", + "regex": "." + }, + { + "hash": "40426a61e0b845065c13d9855ee8db7605caf9429e0b79910e57f1cba3a3dbba", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "25b68132d457321b227962eb8b3da8cfdf21178ce444f08e812051178e3f00a9", + "regex": "(?i)^https?\\:\\/\\/pub\\-61850176f904468f9df949e63f4823d9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1953b844d313fd592746ac32c280ecbfef82ad993ffb60e4c0d3b2670f5c03c1", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9d3803e167d8f3d3e1b8a5717ffd3e9911d969d8313ac0ab09729396bb0f836f", + "regex": "." + }, + { + "hash": "4541dd190ef6537b97d4e7755ae12da3c426b066b06832f2dc0e085975aa5001", + "regex": "(?i)^https?\\:\\/\\/jshdfgasdjufhaskdfjhaskfj\\.blogspot\\.cz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d982f1f3f8c09f471f24a2ebc9df5ebf1f02db0ef5bfc95fbd99a8e8e92cf4e1", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?057a50\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "19ac89ff92afa795d4488f6a9874ea3d68ac971d188c3d64d6e6f902280fa1ae", + "regex": "(?i)^https?\\:\\/\\/jshdfgasdjufhaskdfjhaskfj\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "315760ed6994e8b00b4cfecb2426379b474ee50664b49e28cbae4e0251167951", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1e19279db8d1965d5cfaa5b99490ed13b989a3478a6b690ff4ab78a07a10190f", + "regex": "." + }, + { + "hash": "0f1f81fa99002cde54bf0090be5032cde6d6ddaf441dfbdb6aa1b3d8541194cb", + "regex": "." + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?5a4a17\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "6b5476bc3a53bac85b417d7f69f4e846b21ef1217cf0355dab24ee9037f2dbf2", + "regex": "." + }, + { + "hash": "0b1c920698d1de61441ebc56b9717ae2af4848f6e46c43c37108899abbf21ec5", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "90cbfca987c22ca3b17712c2fefbd77fdcf0247dfa57f6aceab36e1a1abbb855", + "regex": "(?i)^https?\\:\\/\\/egezrg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b9d890a63590fbafbab2b3ea7f2f1c7d9955e4ab731a9a95b6dd9a2edda1929e", + "regex": "." + }, + { + "hash": "7a2d48b40a8d4c877cafcddd6a1f6ccafec7d2dd926df8470f40ccb76c01e44c", + "regex": "." + }, + { + "hash": "952ad2f9151b9817b2f70c24d3c531655a4916dd4955a83591f0e307cdae3af7", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "390b2457f3e8470f9b3028f5bb121d98a2090d934139d31cc2560a5edaa7cfd1", + "regex": "." + }, + { + "hash": "0a4987418da8cee4d5640e20e21de2457f79d9959adbf9e72569e9adf5f5a4a5", + "regex": "(?i)^https?\\:\\/\\/lpatriciaxh77\\.wixsite\\.com(?:\\:(?:80|443))?[\\/\\\\]+so" + }, + { + "hash": "0a22682e361b75f7bd109b1075f964461549369fc8647f12b43702a013d17d4d", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3f10097d531f05e8307bf57fb79f9e1510e0577132f99b811ce765781c697376", + "regex": "." + }, + { + "hash": "bbd660442df325c53338614f7d4611fd42b15a5294d7530f0da01e8096d0905e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+whats(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ca1c9d4d7fd84e93a573f9d3439ff5e43e8cd8166a5bee4a204b3945aa4dae5", + "regex": "(?i)^https?\\:\\/\\/hotvideo17p\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?8f7a98\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "2916d8cc54587e8db085d631f7992b5050b34371d83c23115c9007ed39eb4be8", + "regex": "(?i)^https?\\:\\/\\/egezrg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "44a9f7c06fd9a2c97d0f6ff832b8c0eafc665824c981bb8e4e7f76e538ea54d4", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1b1edbcee037d6ae3ec2faf78711e26c74e1fc573f38ab39847e473d1d7ff391", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "20deee5c64a43088ae5be009eedc882e083432253c3d2a653efde16ac696d0d0", + "regex": "." + }, + { + "hash": "80e0ac739ebfc27b3cbbea155fa07e235093e89301594f50f69ab73c5eb6b745", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ce3b756eec8c48adec2c428d8b5015ef5a39ef5b52657a2f4e172eae14aa2c9", + "regex": "(?i)^https?\\:\\/\\/jshdfgasdjufhaskdfjhaskfj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3c20ec3e16f12bfa5c0521ef016a78133acca321787bbdc6ed6606de6aa58df4", + "regex": "." + }, + { + "hash": "f2fa17b84616e34c06fb9efbaf109bd503ca280b5ae6b4b040b65cd5f289f6c3", + "regex": "(?i)^https?\\:\\/\\/bwb\\-104412\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f9a1db1f60a7444d27cedbf38ea39cc75714186476bba0a51d78c3c5a6b14cbe", + "regex": "." + }, + { + "hash": "ae99b9dba87b2405fd7bed41d7ede5642985a2fdf6eaf963447f51d19fb62eef", + "regex": "." + }, + { + "hash": "24a27ae2b52aa3b6349f595191a1b46858d6bd823f1cf06f147dfe1b275af64c", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6b31382f4cbfa1c03a1fddc20a2165fa904bbc5f0536f703855d99002be1b6c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+case[\\/\\\\]+342653142267668(?:\\?|$)" + }, + { + "hash": "8307fb133c47c9d3d25b079624565e3d410ae5c6acf1cdbfb0698821708c8ac4", + "regex": "." + }, + { + "hash": "f0076e01805cc4c82370463ab6a479edbd5e2b3518fdcf77e0ea69f8e3e401d9", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2c3fe94a44dbc0915bf630cc8b586fcd55296d39a3bef83d2f9d188d4e661e9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+b2\\.php(?:\\?|$)" + }, + { + "hash": "34c2adc884420aa41ac920d57c5e0fe01037fd9ec2609a9ffdcc4aebc964495c", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0eaf0c46d77f72ce2953d2665ffe9642a32caae453c0b102d515a1d8051d1b3f", + "regex": "." + }, + { + "hash": "05b5810aff95916e19d8ecde05430182ccda624221303688986f26141acb4306", + "regex": "(?i)^https?\\:\\/\\/www\\.tipobetgirislinki\\.fit(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "794a963715fba0b0f22c388d978b9c22a4e7f8cdde6bb1df6963ea941dc81443", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "adfdf9752500bb2d2fe7652c604ca1edbf7323a4683cbe572666f8c975b14f4e", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "669ca33d2db294f9f775ba7c5fc28ce64f36f579b2df1664fc11bd15ef9cb058", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8d102b7bf6951d618bdc2a13ff33bf8926e05da74beecd5ec1a28b4352d4bf03", + "regex": "." + }, + { + "hash": "4a5c437d436236a66749c532ff34aff92c97f84e6eeaba4623a1da8b89b4ef3f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ce1ab962a9c996c780b680a3cdb16c7a161201ceaedfc7e6aaf90392d0642a82", + "regex": "." + }, + { + "hash": "a1a90699507dac0d2c81c52a6fd1b8a485783b6774d1889500e581233da85b96", + "regex": "." + }, + { + "hash": "02a4041bdb33c659e26c35aff8242af9dd84e71447b2bcfa9803dde6b57ff0bc", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "dfef4c9a4d99a131f81be30020781ea445ce8726b6fc8eb6713027a2f9a8780e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f85d1da391a821733f3162ab5e79ea3d7f771e8a0d2e7c933a961266b541d1e", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0996631594f58a18f3569ff1adbc0b02de25af53feb98e4e28ae7194b88a2992", + "regex": "(?i)^https?\\:\\/\\/pub\\-f6b6cdf472df4c6492bab6991d38b716\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4b52f82f9d6101e0928b0e349aa70362f9fe0bdabec8f09abb4c6e39f9743768", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "32037cb4a5c83d3ecab3b659bca986a2dc7610a1244d4140beccfd1db7ac18b9", + "regex": "(?i)^https?\\:\\/\\/jshdfgasdjufhaskdfjhaskfj\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c77a4c03eb28d3a2742701120f85598302d7f9029a8ea81809a015ead836c935", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b41d4cb738c6504df591784c82bfce046071291467ced06caa517f63b3b888ba", + "regex": "." + }, + { + "hash": "4d5dc9b91f04fb280d247cf8f0a77d1948dc25776d7b277d7c2d7edd04850c5d", + "regex": "." + }, + { + "hash": "4a36c2cbbf38a55deaa7961ed62c3a16654656a062bbf418f3cb9a62a9280713", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "658bd5f448db35654da3f32f4428cb9dcb9ee71292c3011894eb7c09e1797472", + "regex": "." + }, + { + "hash": "8ae83c44ba8efb6edca7d56ddeb38ca2fe7b45c95b562fff8c4f72ff6b5543bf", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ef976031dbc81dc66bc89668b037a272c8347b1418b66a36f480305d5df49e83", + "regex": "(?i)^https?\\:\\/\\/jshdfgasdjufhaskdfjhaskfj\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ea15384f2410d76ca5847c6c4740b91cb9545d2c21b17580fd54bafa9e1cb65d", + "regex": "(?i)^https?\\:\\/\\/paymaeuo\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0659b2ef195afdd26fe42d2ff4cf234825065b83cca6b47da4a5dc6371e3011b", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "aa87593bf804d9979c16f8bd9af5e978ce5ca72b73f508f12532fc4faa073d2c", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7a44a5ea52b9212b2cd78f96e27c10dfed2c1b1c3298123eb0a7d64c660a40f7", + "regex": "." + }, + { + "hash": "4065d684ec49155ad3e1dba8e52aed28594365b3318f899f0f90005eef12adf9", + "regex": "(?i)^https?\\:\\/\\/egezrg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d908bf8fd3d1a00ad673a9648394f95eb1d48cd3aae95c99204c7cdcaba39a95", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "a42fb4e091943819f5a78791fba7af8d609d862b7baab7074999643e53addc3c", + "regex": "." + }, + { + "hash": "f2e0c1754aa803ffd1a9875af1858ce5831ce8a61962e53f388c5f27be916df3", + "regex": "." + }, + { + "hash": "6b31382f4cbfa1c03a1fddc20a2165fa904bbc5f0536f703855d99002be1b6c0", + "regex": "." + }, + { + "hash": "1933ada224c183990b9fc134cd0d30c6a5d8560eed5e09a0c875237f03c452d0", + "regex": "." + }, + { + "hash": "bfef68d9ce635ff86f40c2e400c7205349a45b5cb2f9f5a8f9910fb2fa465b2a", + "regex": "." + }, + { + "hash": "5b28f9b5edea3ee8e1c68b0bcc6a510a2ee06236c051920ac281e3c419121ca2", + "regex": "." + }, + { + "hash": "581e3114a39d3ea9fe89192fb7a4e28e15b6600895474a6d2eac2971a83f6a85", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "01ec6754cd77144b1cedf4d7bc8e8cecc2335fe416e733ab86c40d05d4b24eca", + "regex": "." + }, + { + "hash": "1a2ddad6c086e5d51b1b4787b5f64b33f99df5f5edf3d564691cef1eb503d8eb", + "regex": "(?i)^https?\\:\\/\\/hotvideo17p\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e3f707b8e6caea53290f2eb6442176a746f41e4d102bd1d8704d99e976ecf345", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "377ee33d73cc5b7247502f1314456e37defbb037d0e5aebce4784c74316553a7", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "eb54aa9b8bd21e4b253037d91d74ca01828bfd982ce1022becf7261efe7cc3d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:[\\/\\\\]+ethn\\.io[\\/\\\\]+redeem[\\/\\\\]+3215c94792f42b41[\\/\\\\]+1[\\/\\\\]+010101936b6a83f5\\-6c5129aa\\-835f\\-4213\\-b40c\\-75ff0acdfe40\\-000000[\\/\\\\]+GB8kLd8BlA0yDvPSYM68Es_irIw\\=403(?:\\?|$)" + }, + { + "hash": "95de8b3038d13dca879854e98303af5c00c8a506a621342cecff5b80b2325f8a", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?f06540\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "6b31382f4cbfa1c03a1fddc20a2165fa904bbc5f0536f703855d99002be1b6c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+case(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ce6216f3bd389bf79625d7b4f828419b31dd18f2528a00d4e1c15ac603c57886", + "regex": "(?i)^https?\\:\\/\\/hotvideo17p\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8f156b370f8c65f12d51507a6cc162fcef459562facbe72c8bfa2098bb38c622", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b4fdfc31e63024f1ef5e01ba66c51e00bba5c7ed555fad638cdda2344ec8dcc6", + "regex": "." + }, + { + "hash": "3033767cf480f0a7fa6006289d1fb01f9b1a43ddf3673a1ace15224e64c64cc0", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "489388a162ae52dbe925101f5e8afebbf9381d097eba94a31af36ce479923e89", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c51352b6d9844ba343449bc08c7d9ac9797b4b68f23e6810c727de97333899f9", + "regex": "(?i)^https?\\:\\/\\/hotvideo17p\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7988434a31dbe4ac940daf725d43106878919edaa6f2401d5e9ffd6dd53ba005", + "regex": "(?i)^https?\\:\\/\\/tradepoolclickls\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7bbe4452424117fbdb9eef79434a236a46868a0f048390cc583e51f42c23d232", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0eec782749d0814604c0297cbcd09e5787f6b6ab48c0fcd164a711b87a1dab59", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6bb3714b6bf7eba9585af837139bacc10910160bba4ff433ddfa8347c0d21c9b", + "regex": "(?i)^https?\\:\\/\\/hotvideo17p\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9b6da369ae968cf540040a0cfe69d63c981d4ed5118669213abad904622f8967", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0c5d5aa15262212be5777bec48af5d94ed04048733e441ba8be2f90926a9f70b", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d3c5314343a3d34876d201713cadcecd21c5bd51f6a73546d65ff43d265919c3", + "regex": "(?i)^https?\\:\\/\\/jshdfgasdjufhaskdfjhaskfj\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "686599e46371d650c489c55cc7134f4617e8a5fb1fd4f7ad4ec2a93c49d6118b", + "regex": "(?i)^https?\\:\\/\\/jshdfgasdjufhaskdfjhaskfj\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9431c12b24c353835d9594088ed4acaea22dcbbc6d22401529fcb623bb5ee623", + "regex": "(?i)^https?\\:\\/\\/currently\\-102830\\-100442\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e315bbd9ce99b7e46b97bfb1f57ab64a72e7c9041e4bee41a04fb2285e0b47b9", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a4fbcf82d3cdb441677b832190a54fe5b3d86088c8e4aaf6522564b4f47b5292", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoonline\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5aec642fb3e9bfc79686633adc1d1109b2938cb8c97f3d02ee63731d6bede150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?b801aa\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "705ae4766947634648ff01a785744a39e82d80ce3ef571a7ef1326fd8dab9e28", + "regex": "." + }, + { + "hash": "b2280612f2832baedcb3085877b50489f2e98ca9cf3d373c29daf0198d466ea6", + "regex": "." + }, + { + "hash": "699359891722dea275bf0582e91d83181c9e2a694e1898a9098fd59ac84b71ef", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "141002f92eb01bb7a6c3772ba6e7b31f38779d422dd1ac6b111ef7f51c9b68ab", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fa2f8641bb60ef2fdb5db60142feed1a5d2406e240399ce1a045398283034b74", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9646cc05130b5064a80530ee66cdc75d93484d7f7bc70fb647822fd754c1aff5", + "regex": "(?i)^https?\\:\\/\\/hotvideo17p\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8d9fe538337fb5fac11d0ef206436de069f5b983e31bbf66d33a3214cf517165", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoabc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b0d17332d091c9c3fa2430a1bf25acc18ebd35e469ab12b73c22e93b5f404923", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ec5fa636c9f7432236f4ab5d6234bc7cf7e22e67ae4b3838a0f8fd846427ee3a", + "regex": "(?i)^https?\\:\\/\\/egezrg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "70761dc2e158704344cda3bc6101d87cd041c62374b06aa3a947f916a2497d02", + "regex": "(?i)^https?\\:\\/\\/hotvideo17p\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f17d44997c965245a270116562f767b049ea7151bc6ac612f36c65f97c377c74", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?service\\-id\\-gandi\\-domaine\\.renew\\-ssl\\.net(?:\\:(?:80|443))?[\\/\\\\]+[a-z0-9]{32}" + }, + { + "hash": "05da9ebff9ea074cb197236e4e32a06358be57bf4de72d3a23c6d847d5c7646e", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2a34277e61b3cd3d40b1a6f8a8b3f221cc41edaafd77270a82419fb37f331262", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ki1k23(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f99f5f9214b457b0231b4a71c4c473d6a60e6ddbbd65e0804bfe324799ad7342", + "regex": "." + }, + { + "hash": "f1139aa122cb67ec9ec395a0b64b742da221c0f760b806c4b3b99c78406e5239", + "regex": "(?i)^https?\\:\\/\\/kunal007\\-web\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d0cc3e9720fd4ad8eacadedceffc46cafd1baeeed2007b84f49a9293d916b0ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wcOCX(?:\\?|$)" + }, + { + "hash": "419622ad5557189fbf1e9771ce6f807ee9f2d02e58e86a979a7cfef0cb9ddb0e", + "regex": "(?i)^https?\\:\\/\\/vbucks\\-reward2022\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "b6ccaad1c07964147b1652a3f9c03ea7bd766635aa449d9b5542b072f82cebcf", + "regex": "(?i)^https?\\:\\/\\/hazlakzmma\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cf0c78ef41e681ee404cbaae5713edcfa5752f5260707bcd821a39eaac438e1b", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7a3ac0c3a17667db74f0a48dd672dde0c25eed9cc8ed2b98c631cc8b9a372e13", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "721f2682b5c2795662eeedbd1b4cd6c88f5f25c850f682147c233aa5de527feb", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e973b647bf7872da9aec5f48c331915e790a18344e318a00985d949033d52e91", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0cfea6139011b261921753fb2ec3c0ee55b1a6d56a0e89ad2196e27d8dd27daf", + "regex": "." + }, + { + "hash": "296413ecc0198857dd0c6a526d9357b342023c8619b96ee465234543131e6290", + "regex": "." + }, + { + "hash": "e62b719ff6bd363f8ee451567d3e2318ac08128d9b13095f42dd09b2fd59f291", + "regex": "(?i)^https?\\:\\/\\/hotvideo17p\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "36c36963e8f4acf085ab84bc13a251bd9bb335a8f2a3b99606d0319be44989d3", + "regex": "(?i)^https?\\:\\/\\/egezrg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6710b901822e26d2cdb5c8d1f7c5a4915f603bef790aca095b59640c62bc6c10", + "regex": "." + }, + { + "hash": "99a95a56844c7e1ac153169debe563598356ab04b7d3e3471e2a9c7c279c4017", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6fabd514aa71acf5e743459fd36655cebc892110628e69cebca28595d6753385", + "regex": "(?i)^https?\\:\\/\\/sweethome20p\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1e6088ea8cde092bb5b5436e1561a11b804b1797e16a89875f22b7911faf0a13", + "regex": "(?i)^https?\\:\\/\\/att\\-customer\\-service\\-108065\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d3c51b1b6181f3a0b9e10911cc946514f846495600fafa397a19655364e45853", + "regex": "(?i)^https?\\:\\/\\/videowildfiree\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ab9a2a1fd5463e7964016b24dcd8e194c56e93e291bff5ee792fab1a2ed5ab7f", + "regex": "(?i)^https?\\:\\/\\/egezrg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1a98f8ce69aaf8d6da8be70b6cedd7bef2079d79d28adbfd9505b78ff1e7da44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_1\\&utm_mode\\=skip_if_exists\\&task_id\\=144976346\\&task_auth\\=d719fc7189d5856898daa696b9cf669c\\&id\\=144976346\\&ignore_redirect\\=1\\&key\\=20bfdaed29e0ad45178d80d2d308d49a\\&url\\=aHR0cHM6Ly9ldXIuc3Rib3R0bGVzLmNvbT91dG1fc291cmNlPWV2ZW50X25ld3NsZXR0ZXImdXRtX21lZGl1bT1jYXJ0c19yZWNvdmVyeV8xJnV0bV9tb2RlPXNraXBfaWZfZXhpc3RzJnRhc2tfaWQ9MTQ0OTc2MzQ2JnRhc2tfYXV0aD1kNzE5ZmM3MTg5ZDU4NTY4OThkYWE2OTZiOWNmNjY5Yw$" + }, + { + "hash": "f4d8b663ed750b5d0cfe928462da897de527b3cb5951f2571ee74c01c2164b72", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b35e488dd45113133ab60acc25d0a8e5016360ba56d98a7f4ded634e441ed6a5", + "regex": "(?i)^https?\\:\\/\\/zitjiopzriotjhzeihuiohuioazthioyjeety\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b0df8a1ded86d9710472d89054e7d9ca3d072a955e939466be38afa5976dcb45", + "regex": "." + }, + { + "hash": "79db5631997f0c1093d928835e70957e74350f9c04ab3cfb86859b778c6154d8", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9b59317caaa319163771081bfde904eb4f484a293a43aa16a4e0f2a2c531cb97", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideo\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7150fe6d8f206322f2eb55a704ba9c010954c2796f8196b74c18a5428a9dbc59", + "regex": "(?i)^https?\\:\\/\\/free\\-8795\\-rbx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6b7a4b9a33227ab062f632c8c499088e428a80c9835ae3e0c2968aca72709970", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c46718fdc4f80d1990579d152c6e96600efbda7141ab46b9cd222ea9e0377361", + "regex": "(?i)^https?\\:\\/\\/robux60ksuw\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "09a4aa385a3dfcb85085e4c2eadc299a21c974f4556a66a2f01ec0d832179d45", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ea0e982236102df084069ac527c939885f4268eec4ec62614ac52df4e1d42a50", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "952bfaddd8d09695a7bcd92d0682bb07abf6a2b9aea5fb0695216b81c3e3b7fb", + "regex": "(?i)^https?\\:\\/\\/hotshotssvideoonline\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "aa8f0c3b89c66967eaac7a78f6bc37a3da3553b8037c44576928dfa39607c279", + "regex": "(?i)^https?\\:\\/\\/indigo167410\\.studio\\.site(?:\\:(?:80|443))?" + }, + { + "hash": "85f7bcea78352a0bf5dffcce47437c15791ee5d73f05d226f6dcfe674b58f901", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "12fe85868e9f3e5f2a64bb8113f25e0f262dae982fd5f9a7b4d4d2be4998ddac", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "65297b08a3df7da5a2063f8ea8707bbd5b102550d61e959599ec03629020885f", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "dbb514619e2d1e199bbaef9bda3be1759afab561e2214dd5d160f83f57a05f74", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d016ba4f44c1ea987710a506993f020349da1dcdbb8205d7abb258cb80cc6489", + "regex": "(?i)^https?\\:\\/\\/moochrex\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ede696ed98f531b236bdeebc1800dbe95a50687ac82a5ce914d642ffb459fe70", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "837a9a88654c6b18265d29d34506aae54a245cf0c2250a046c47b1dabf531ade", + "regex": "." + }, + { + "hash": "a0783a05e5aa3f3e302a920c6fc000d0d736bf338f2b7b08f93f3f75a6859eb9", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideos\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2d49d4873a8d1026a90434d290e75f993601918fe2c41bb88fcc58ef33e3b501", + "regex": "." + }, + { + "hash": "65a8e99a567b5f70922b76b06d5ed9f4ea5c727c66172195d8298bda8f4d05cd", + "regex": "." + }, + { + "hash": "8b7c523afda29ca0347ef7e2c21622774d297dbe8bf5c2a64fc9384bbdfafa4d", + "regex": "." + }, + { + "hash": "155be4d1c44026c4b3dc2cd51d505d25cf670f3490e52f2efc836bd0faab6505", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideos\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4d7a4005f947202928a55d95b03d708274150fd356182a5a9ce4835572deea0e", + "regex": "(?i)^https?\\:\\/\\/zitjiopzriotjhzeihuiohuioazthioyjeety\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c3d58b3c3c800905dc15d3faf891731ec9b48eaf8572df7f037bac8a1f9338b0", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "73b85895cb4cac0dc25f060c88b6c8d1df25f8c1c51f0647f127feee3d717630", + "regex": "(?i)^https?\\:\\/\\/iphdnwfp\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "36418fccddbad4eee4feb085a571e4a77e4e28ad2cb357a95d58fd0ce08ec24e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+set89738898[\\/\\\\]+servcse_338973[\\/\\\\]+store(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0ffeaf4122b52e55439b9bef71d4015d497d4252c800d439d46472fa22be05db", + "regex": "(?i)^https?\\:\\/\\/magiceden\\-offre\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "80d58a03915df826f912e6a55952ceb915fde514c0c75eb19c512773070d3acf", + "regex": "(?i)^https?\\:\\/\\/animationjam\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d075ecfad0b5a019c9f76ccd832cb80b49055bc74fbbceef98c910eb2fd0be1f", + "regex": "(?i)^https?\\:\\/\\/animationjam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4d408eb0e55db639e635b40a88d8d55c7b7152e6717c84b5d8bf1dcdf819064b", + "regex": "(?i)^https?\\:\\/\\/magiceden\\-offre\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e0fdee67965415cfb235045c64a63843e22e94fa50c021c46d4d83e7de054960", + "regex": "." + }, + { + "hash": "757741a2f689c35b657d230d455a67cdab0324c6f2e176e366702a7f3d82e543", + "regex": "(?i)^https?\\:\\/\\/ityruydtursrtsrtsrteturstrsyrsryr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5e2f8fdc9345c15650dbcc9582518364adc27ab9184e2329586e0f5e5bf972be", + "regex": "(?i)^https?\\:\\/\\/theonetheman\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "533a9b270c3dbdb1bae667d89bc4dfd6b6707ec1b3027c45741cc5e23dbe856c", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "03a2cdaec4409fc4eb82d2363e53212db7591ea50b8db8fa298098f1a5011ef7", + "regex": "(?i)^https?\\:\\/\\/robux60kros\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e5362bd61874f65133eb0b711fc64a2689baf46e39a8cabf42e8490efb5cc457", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6ad509e56e62a1ce0eddd9a6eb15a2c115535d0325abcd7899537d04a8c52223", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b0f1b8c36838fade89747a57c0a3aac720bb9364fdd36e3e0412af37718e0d16", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?finalizza\\-n24\\.es(?:\\:(?:80|443))?[\\/\\\\]+it[\\/\\\\]+[a-z0-9]{4}" + }, + { + "hash": "7031d7222cd7362b0ee73d75f2752d697cbdabae5e8a547f5cfad0df68bfb2bf", + "regex": "." + }, + { + "hash": "5895628224d933049350dae77e34b9750dfeddd5398e8629f24154444d0ecd09", + "regex": "(?i)^https?\\:\\/\\/ityruydtursrtsrtsrteturstrsyrsryr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "42409f63faa18cb6cc37adf2ef05d5d2561da59f3f991228cac832b362c7aab9", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "84eebd20224cb5eec508a77d5747f9e9f0181aec1c3385bb53c30dff5daa32ef", + "regex": "(?i)^https?\\:\\/\\/amazon\\.snick\\.com\\%E2\\%88\\%95ovlsah\\%E2\\%88\\%95iamkerbdda\\%E2\\%88\\%95tlsgtc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uoguw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96a29bfcbc702b63b02d82d7ddc4d111670778db49cc3ee68b34b1b6eab14f1c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cod\\.html(?:\\?|$)" + }, + { + "hash": "e4f24626a349ef975eadc17f24438e975554dc2c9b7c397cb72e6de5b14b82ea", + "regex": "(?i)^https?\\:\\/\\/robux60kbvv\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d5a6a67ffee40a46dac1236d140119c4a4f9d013afcc6a2d70a4f72c9ec3bb36", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "10e033e51340286d2b69000da29abc1c46700547b30338c0be75935e0b1774ed", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideos\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "17db5d20c68669a324cb36f6aa3d32535aed7376954fa3038187324f6c511c22", + "regex": "(?i)^https?\\:\\/\\/dtmnm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a9f6eebf18bfa5f90c157de0a7f5c45ebc686e343d3226acd5dbb1119cf4bd47", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7b180d00f38b73a5e0d2d0bf847699fb80ac3f0b914ed9b1dddf7aa105204013", + "regex": "(?i)^https?\\:\\/\\/magiceden\\-offre\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "47600f52a72114b43fbe139663f9a721357c1a804b3e1017702b1a6de3c2f257", + "regex": "." + }, + { + "hash": "5dc3bf9269c7777f3d5bb8006d59b577061beaa248dd0b198182295a31d29e9d", + "regex": "(?i)^https?\\:\\/\\/magiceden\\-offre\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3029ab896b5e5a7a274144ffa831ee845b696172a2411a23de322364dcdffbb3", + "regex": "(?i)^https?\\:\\/\\/robux60kuvfe\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9c53cd7defb0e9f5902b77ac3b7bdb10997a9b13cee5a5cb487d2ac69559fdaa", + "regex": "(?i)^https?\\:\\/\\/robux60ksuw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fa9e72706bed89d4f2fb800eae146c265b5d86b8adb05454f41ab507ab68dfb0", + "regex": "(?i)^https?\\:\\/\\/robux60kros\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3efcdd90e9face2074c90d2ca09f61eb231aa553311264dfc090afb28c8bee5d", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideos\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d2ed14332936acadbed7e96110bbb42021c62db7e9fea08d696255db23702673", + "regex": "(?i)^https?\\:\\/\\/ouqyefisdhiouzefhuierfgqouihfuh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a6544c1268095cf35466ba8b0a5f86df970715453d87d851de72d7539bbb17b6", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6c1ea13186e91191f2cadd90ef0517205302f0cc9199a275879ae4268ad515b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pagez(?:\\?|$)" + }, + { + "hash": "13122b88c9552062b168967c0d170b5125af12841c928834f69512fee2665f6e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tQ\\?9kh\\=75\\-102$" + }, + { + "hash": "e2fd0bcef928c1a0773db17619e9c045158c8b59eb89a33232f3b7b686868e5f", + "regex": "(?i)^https?\\:\\/\\/fdnbdfbn\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5d3bf6641fd48b7915e30885a9a8afd525dc011eb748a9b5558dcd6d8c8d9c7f", + "regex": "." + }, + { + "hash": "194b7eced89457a8c62ee1e5f44881922c7f5a74a2ca024f72d0fdd84cc97e96", + "regex": "(?i)^https?\\:\\/\\/fdnbdfbn\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5df55b618c2fd4f22dfb4a4e0c858ac52bbb80af1c01cfbaab142e20e87ce013", + "regex": "(?i)^https?\\:\\/\\/fmfgmfm\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "646141c8ea0a8ada873d1d8b680c57f124fbdf18a578d55573322605dba3530d", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a7d7b099d8bc27120645d45c2ba3be813af8c2b1333e3813be196b88270989e6", + "regex": "(?i)^https?\\:\\/\\/robux60ksuw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "460d8a657bdeaace9db37d07a8fe8aea06a77254bd5cf8533a75f9971340e291", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "07723a4cd9bf5aa89a56437661289ad6d782e92f9dabcca02c1106cc031cff72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qH9\\?hg3\\=83\\-66$" + }, + { + "hash": "66d4743c80be8935bb154d064bb61e15db5f52e1e39794f51469861ea612ac19", + "regex": "(?i)^https?\\:\\/\\/ouqyefisdhiouzefhuierfgqouihfuh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ab4d1bddb268e0f81f8ecb886557177ede2c4091afcad9c9a966edee8f049af9", + "regex": "(?i)^https?\\:\\/\\/hotshotssvideoonline\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "feec6dbe391b72931d6f63b0523f4f1794cdee69ca2b5a1997e59bdafe33c178", + "regex": "(?i)^https?\\:\\/\\/fmfgmfm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3365d65789a08c67bbb3f1870a30ff3508b8bdcd75efef8ed0d748fc7c191c30", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b9156004fcd0ef0c3ace7f1ecbcc956f896ea363739f6d921dbac0a724f28c96", + "regex": "(?i)^https?\\:\\/\\/fdnbdfbn\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c0350e0c47b30d614bbd873aac1b4cc910e0f80ca63f4a325ac8cfc6252403bb", + "regex": "(?i)^https?\\:\\/\\/robux60kuvfe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e6c7ba804e0145726a139897aa5a1b2c76c6b1a8aafee7fc742a5f15b76743e2", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideo\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1257c8090940dd1f47a2f7fe3210e83dda37f5e1aa0579e2528b678f3ec32bec", + "regex": "." + }, + { + "hash": "4662170d03fbb0856159f92d4aac7936fd97cbe718eefb3ae0acea36a6fc3135", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2af0cd4376b9397b3bd87ee11f1401cf0ea475601b869db07d94da5801f64ad9", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "88d8716280cffb7e9d58ea80c0970b92ad83a55d73a1735e739a0f55132dec7f", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d3694cc8179d2c060260604366f46161dc09b363d5c6626d5c6bfd177714c393", + "regex": "." + }, + { + "hash": "f10eef65ef3b7d3e65e1689451922b8557736a0e2a44f8dfbe2a99bb84ac1e38", + "regex": "(?i)^https?\\:\\/\\/robux60ksuw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4f000310422cff3cfdfc2923655a270d66beff9a032684bd9d2b2749e4a5dee4", + "regex": "(?i)^https?\\:\\/\\/dtmnm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7c522ae0a7ed8002be634e6686a96f4b3ed397aeed9d1e83c829d206ac4ef566", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+allocation(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1e3c9149365071b418ef81b9d59b127fd1ca2521d08173ab30f2eff29dcdf369", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "20f106d6dc3f720e76f3a9ee55ca6302f23de10ba0220edbf64320258dd47549", + "regex": "(?i)^https?\\:\\/\\/free\\-8795\\-rbx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fb663123b005f348c1bf392938ad7ed39145399715e06df0226e39a0c9a5a650", + "regex": "(?i)^https?\\:\\/\\/juno\\-mail\\-4b5f02\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f2c131898d9599318b62c4a84eeb7e89545e091f59e1cd02dd1e95fbc6653943", + "regex": "(?i)^https?\\:\\/\\/bvdfb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8150437b532d4525f88d95c8c724a3d4632c61ee0eee5a04900026b1967cf8b1", + "regex": "." + }, + { + "hash": "317f951ec3c9a2fd08f1e6e692443bfe3ad3104a73e64d85e4d64d1034213be3", + "regex": "(?i)^https?\\:\\/\\/theonetheman\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5d57183d06e06f3b7c0609b7bed5e1ee5cc0ea2e9b8db0e19671c00fb3336373", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1778f9e63d538d6637f28fe24c4edb04a1ddf3434d09ba8afa9dcc66ed7da7cb", + "regex": "(?i)^https?\\:\\/\\/fmfgmfm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fdd5b5090cd136931923272a9b8afcb0efa1fe6f697ea43d03b5d1f482452ed0", + "regex": "." + }, + { + "hash": "625d5cd838db316cf6513eae99b7e2396d3411cb26cd10c163459ea68ba5f566", + "regex": "(?i)^https?\\:\\/\\/fdnbdfbn\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "460d45502eeae0f066823acc6db874dd4571ad5bc05f0dc6955f206958484369", + "regex": "(?i)^https?\\:\\/\\/free\\-8795\\-rbx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "58e426a6048cf54433e97154fed46bab7d5bfffe6c55aec637ab15f309c03320", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "deb6e366111288c853b550164e21a93ae74c8b3cd1807cc1e0adf50c1ccbed30", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-upd\\-108311\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a3400314a89f559cb0d3824a9f65e1aea67e6fe540a1d2b6ac418786415ad588", + "regex": "(?i)^https?\\:\\/\\/fdnbdfbn\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b3dd5904754a8ffac29188eaae35c046c7b07afb7e0f93cbdd26edb805c14552", + "regex": "." + }, + { + "hash": "aa677a622d4e210d9009cdf004535f8aecb0da4a35c2403d6c3cf945b28a16e7", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?bullhorn\\.dcslaw\\.site(?:\\:(?:80|443))?[\\/\\\\]+5a4edc2\\-acda42\\-5a4edcad41\\-24aedc2da\\-2cade15[\\/\\\\]+app" + }, + { + "hash": "65e80f64b634197f9b70d758d55012bdd960832d25b06f8dbfabd63b17473bdc", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3d7de1bdcfcc3b24c6e876d2c7e6869da0965bcdd3e393727cfbe036085cc98c", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a74f0c6509a5ad517135cfa26357488c7faa273060029ae7b0f89696d1d1a593", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "31989f1c90be90c0f334de096069c0dc3b6b82a659c902a566a5d498662d11c9", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "84b6f64864c8a10c4c69a22ae73354435f708e01bc1083750684f5ec3ef206eb", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "29ca151e181470a303de4068a5d5215fd59317596b9bcdbcbcba629f49e180c9", + "regex": "." + }, + { + "hash": "3d089202af2d7eeed6573dc4b9a14afb99e09d8acbe940bdcaa3e2e1087e9796", + "regex": "(?i)^https?\\:\\/\\/magiceden\\-offre\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "14b326ec38ade8d7a47237c80bc0701cc5ef58252cf5f7b567ca213fd7ac5d94", + "regex": "(?i)^https?\\:\\/\\/ityruydtursrtsrtsrteturstrsyrsryr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1516abd427212aee0b886ed0f75807c6c2fa76505dd803842815d4cb507318a1", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "01e4006f0dc598a4748db7605c2737eb19834e9a86818c5afe69dc22c620d07a", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "520582e3cc752eb9f226f22cfb9f07a9f1b41f889a934376c0c845c3ac42cdc9", + "regex": "(?i)^https?\\:\\/\\/magiceden\\-offre\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0a95debaf9be2b93f17be010ffe80d01e88dc19d614e98799428b349399117e2", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d7e95d741fdc0193203042b874f37917415ed99c2059a19c9bb167b67b38082d", + "regex": "(?i)^https?\\:\\/\\/ouqyefisdhiouzefhuierfgqouihfuh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bd2908a77ea0cc0f2e6b7ca9c6294abdc1761adbb710212cf8f97cfad9be97fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auth1\\.php(?:\\?|$)" + }, + { + "hash": "8522c5ae30627f414cde9a79776ffaffac90fbc83f35e40c00f712443a825ac9", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c82a3f0a2763a9534ddf42a470eb90ef8414f5851842d772cccc7c4b8dfb0", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e95eb03fa3dbafd8ada2b138f1c55fed54b2135fb72e3261ed32334275438425", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1b0f383d89639362e274d39b89e9987103730eeed7ab8e0868c5ddd418f39121", + "regex": "(?i)^https?\\:\\/\\/azinex3\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8809b78ed0f7f5b87dc17153e6cec93e324eb1d3f27f73d59c07085ef14e1d11", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideo\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3b5cdbe3de43405b51155841de2f0669c236e7b5a2c0ff4fe49ad8dc494924e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login\\%20contract\\%20copy_onedrive\\%20storage\\.html" + }, + { + "hash": "5da212835ee80ddce37fd866b2f17c6b398b2eb95d76e4cf63700b992544201d", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "09a56cb437ab41326674c88af10aa48661ad5381b0e00d495356afc6062da61d", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "abb00ebcdb56b079f5fb55f026bb47e8ca1d969eb43b2ef49e96a5a1126aa530", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4976721a8c7c0b339a67f8aee744a0dab5e8980151967a5da9fa26b73e5c5d62", + "regex": "(?i)^https?\\:\\/\\/magiceden\\-offre\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d674f3f9f8629d245784edea3fd77f624998845d23c352c0c2256cb58b355b8a", + "regex": "(?i)^https?\\:\\/\\/robux60ksuw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "24a26010ef462d940b27b08b84f4d48620398959079996604911efcf3df02b72", + "regex": "." + }, + { + "hash": "271b499f45e4881c720bce0c6c8c5b2e8191e01cf39c51fe0a2a963d3ac47187", + "regex": "." + }, + { + "hash": "ec1c936b990b53b94f5d196e11e7e47aea09899d29d6c8dbdd594c2c65ba78f8", + "regex": "(?i)^https?\\:\\/\\/robux60kuvfe\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ee68f5dbae0b0ba52b3b4b9cac5c6a5e8894c9e80663c7a6e295c9a0195ad33a", + "regex": "(?i)^https?\\:\\/\\/moochrex\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0902cb56c22276c5e74879e7546232a88351ebe3dba15d99484038ce1947774b", + "regex": "(?i)^https?\\:\\/\\/hotshotssvideoonline\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "47338bb08e4deda6b23ec5de86faeb4fc913e8c61ac2e2bf296fd79a474c74f1", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9a026f8c53c7b637a1afe2cb0f984206c44c6080125a1873932f5447b948ba1d", + "regex": "(?i)^https?\\:\\/\\/hotshotssvideoonline\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "106a62e78793ae75e5dada8a8d951be829c47efde55c4c300a397c9962043b3a", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "99e49702f3c797c987d0962446f52ea20849fcfc4619bbe69cba46aa39650d8f", + "regex": "." + }, + { + "hash": "08f5f2287a22cba18780f44ceba952e504e463df86ca63faf6876b328fd44420", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ba2a91708e8ad36388275b6c971660fef73bd63d1541611af98d3338d9784de5", + "regex": "(?i)^https?\\:\\/\\/zitjiopzriotjhzeihuiohuioazthioyjeety\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "48e82c23bc18117fd1a20a442de69737edd3b5bfa31312dfa6944b2ea0c81ef7", + "regex": "." + }, + { + "hash": "59734fad0ad71dd24a05988421a3fd38b51553cccf4ab6508ca2f3162e78780b", + "regex": "(?i)^https?\\:\\/\\/ityruydtursrtsrtsrteturstrsyrsryr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3c0400b3e0a8135515386e4e162f72ce1cff6c48224504e9edb167c5a05f43b3", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e3340fd18ea5836c732806e59dea1212321d917de43cd3de3090a72e0201e6ab", + "regex": "(?i)^https?\\:\\/\\/animationjam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fbe754b305452d24cdb3df3c512efb31ba06726edfb60e34778b2f5fc05ea206", + "regex": "(?i)^https?\\:\\/\\/theonetheman\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "98cd87b1df6e5a84b02c4c8cbafc97c3b32e611e2aca723a8c68ad4820f7742d", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "060a22e26163ff17237533a8a443d358492e1c3c3e5d0c319d17254d44ceb323", + "regex": "(?i)^https?\\:\\/\\/robux60kros\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2349d04ea4d1a6b5f33bd80198b14e03d64ace337d09e7a7d41cff02a29e3f3a", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1d23d5a7f5cb5bdb6c5b4c13d95445f65ce103df16b0e0396ebcbb7cdbd89b8b", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6d3f3037a8b19d68aa1824bcebbe942c2ef163fccfc9b59bd75ed7eba6786537", + "regex": "(?i)^https?\\:\\/\\/ityruydtursrtsrtsrteturstrsyrsryr\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "13bfee2029d8c5ed727ccacfa682a7fc28054734b92866175d072dd1c5c415de", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b4e12ef4a1d0810a501a23e543c1929c6bf3953dff8a7edc32e6d0fcc177fe58", + "regex": "(?i)^https?\\:\\/\\/moochrex\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d80a6dc0d5d9fab8923e12b2fb46db77ced9dad314b696ae1a893b351eeb8637", + "regex": "(?i)^https?\\:\\/\\/theonetheman\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0d15c0df23968dca07d800c308665ef5d9f1748272df021d4b9fad03421c6ee1", + "regex": "(?i)^https?\\:\\/\\/magiceden\\-offre\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "80513a5ad140e88094f44175d5de063cc5da7f08989875e082ba2e3f399a753d", + "regex": "(?i)^https?\\:\\/\\/ityruydtursrtsrtsrteturstrsyrsryr\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d991ac2044a4df18fea808d7c7d9df0f6d67b460e473460d5955d6eaad3d3789", + "regex": "." + }, + { + "hash": "84eebd20224cb5eec508a77d5747f9e9f0181aec1c3385bb53c30dff5daa32ef", + "regex": "(?i)^https?\\:\\/\\/amazon\\.snick\\.com\\%25E2\\%2588\\%2595ovlsah\\%25E2\\%2588\\%2595iamkerbdda\\%25E2\\%2588\\%2595tlsgtc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "9ceaf5997714c2b404a21b39889dfa949f08bbe4e18f1a1ad04f1a0cd1430703", + "regex": "." + }, + { + "hash": "122369901b83925d319c6aaf9ac14a1131e4f578a344330cee7bce76397f4112", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4504aba28fd966d1e94b9996316693600a152afa45b6ff01382a5cffbffe8ea7", + "regex": "(?i)^https?\\:\\/\\/hotshotssvideoonline\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2e35e2f41af193e69ddcef4d8ec1c668cd267558c31a8cd9d1aacb677a4522e4", + "regex": "(?i)^https?\\:\\/\\/robux60kros\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "df736afceec7675998d9adddf46ac087e2a1b6d8e1cbb48690c4cafc26ac430f", + "regex": "." + }, + { + "hash": "9287aa99c2c3ba17071126c9f50718187e600beb18ea8adf3d3d68e3ae9a0b32", + "regex": "(?i)^https?\\:\\/\\/free\\-8795\\-rbx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f9d85796391742f900572b666d5e70cfed377be81cb4be8656e089d46544d218", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b73e1d991b05ccc7aa4fd104fb2882dcbd041af9d791b7f9ebf0175fd5b67340", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e29047ee77c7eaafb8679e2079ec5a499ca6b83cea9e77b06eaa925767b68b77", + "regex": "." + }, + { + "hash": "52342a2edfcd5b0c30ac2b5afc97ae143e930deff8bd062c574ba3eece1d5405", + "regex": "(?i)^https?\\:\\/\\/zitjiopzriotjhzeihuiohuioazthioyjeety\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3004fceff7a8db3e231485f36819797a0d61f33258a5d38c077f3817234ac697", + "regex": "(?i)^https?\\:\\/\\/bvdfb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "83c0ddafd5a829b1403c3fa090963068a7a546af3be9f1e4351fe9f1f32e5c21", + "regex": "(?i)^https?\\:\\/\\/theonetheman\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3f1039c85ed55fc92c56db855fc62261eba231c70b293acf4322b43ae652ff95", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "64d1f5a446e7822db2c8a385280106f430d7f62e6854298d2b8975b83f96911a", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a2cadf453667c6490098f7b74a5ea1f6e46a913c1d3e730783d3de2fdcaabfd1", + "regex": "(?i)^https?\\:\\/\\/robux60ksuw\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9291d71022b3f1bcc2a6386ead20ca8738e94b8f03ff7639edc67cef7860036c", + "regex": "." + }, + { + "hash": "90c5e0f764f075d123f4ff6670a55b0f958b8799c52839cd841370cc2665dcb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pp\\.dealthedailpro\\.co\\.in(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "66b6510f272ee0767371713d92a8248b037cfc7c4309812d925adb2e11d9ad87", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "03eaee3dee908b0a3111c523f67ad6a417997bc0d52e5e99890a320b651846b8", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a434c9192a7c757b1c663531afc964034b9e82657e47caa165a854d17fd4b02f", + "regex": "." + }, + { + "hash": "71127b9ece51e38054545cf029c100241cdc8a1adb021ce8fa41acf65b8e1d2e", + "regex": "(?i)^https?\\:\\/\\/hotshotssvideoonline\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3eaa4f6c44fa907fa59ca427c2a4e2aa5fdda9dc27ca2fba9133bbe44936f75b", + "regex": "(?i)^https?\\:\\/\\/dtmnm\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1aa56b1580f7288ab1cbc29d7a54f62d23d487f328c8607c6e805a1f54130a03", + "regex": "(?i)^https?\\:\\/\\/free\\-8795\\-rbx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "56580d7b8c075951d068a03468c9c410b2e017cfd58b81c6ee024545f87e563d", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ac145c2b22455662e884352b5b418f9813d3b1ab34453d7b624697e8938dcace", + "regex": "(?i)^https?\\:\\/\\/ouqyefisdhiouzefhuierfgqouihfuh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e504aa1c9c29930470265410b2f0282b710ca0f5b55e41cecf27363cb80d853a", + "regex": "(?i)^https?\\:\\/\\/robux60kbvv\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "bd98b1ef90820b9adb3c85b597384e72ded37675fc1d21f104cd9b64b197ac95", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fb3c5e4b8ca34604b3126a2bb7d20bbb0902bf90c5927f80a88ffdbb971db193", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8fcf31bc3e733bffe921cf0354d1b6be9e87ff74f52267dfea6fe2dc3476468d", + "regex": "." + }, + { + "hash": "428ef0a26566289f25ebe6f754c83e7c3b11061a88164b2bb09782080eba2e1b", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4b03e5eaafe0e30522eba4b7c645dfbd6b757cc1adc460567fd3b99048b64eae", + "regex": "." + }, + { + "hash": "f26cb5ebbba75d6940606469c1e27a3bc820d12dff829b4b3d963999ab13be33", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f37126e4df9946beb6bb38dd71067df92b67e328b1e2f9022afa5573f8071410", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cnfeyazvkj\\.com\\%E2\\%88\\%95lhszrhmxi\\%E2\\%88\\%95mihdensr\\%E2\\%88\\%95nwoplcdqn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "5a89989e2feca327df5afa03015fb4bbae378e7bcdae8a57a427f694aed55fcd", + "regex": "(?i)^https?\\:\\/\\/magiceden\\-offre\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "394879d677ce13244e945d3022ac6149207cdf66be558a422dbcb459cb25c28d", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c3845516c32e50b0bc7a1a49e81a7cf3f5b43c3292feb0adbae5c8eb20c81601", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "65dfa40e6341cf94192b18782b37976f8269e819480524fe933055e7676aa66e", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b4d53c7516d7aa5aadd239444b2f41864d1c69de0bb5d8c411e37a7d22e7aee7", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6a4dad4cbda16747a409361683193bf5e50adaa7f01fda13d290c10b96fe0b34", + "regex": "(?i)^https?\\:\\/\\/pub\\-2ebd8770c86341ccb31d03c114fa7a5c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c7bd466be493187c60e63036ac2f5fa784016ba1218aa2adad690fde2a77f229", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "07d47b937b9ce58899fc465e10d9acb82e449e1a8dee1680c8e4351753d8509f", + "regex": "(?i)^https?\\:\\/\\/free\\-8795\\-rbx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "09bb39257d8c7c00cabfeb6b12df9e427501b6d347cb3fb16013e8b5b31d3071", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideos\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "66ee009ba2de4cc62f3cd9e50c38b40cdd99477db58d1706a53708870d247541", + "regex": "(?i)^https?\\:\\/\\/robux60kros\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ca0b8f49ac383ab2b0109a3674ef8a2a8ce1da3830ffdffa96809e50feb582df", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7d109b0cc5332559fe4db16d38300785fc8e2cff98f99589ab7c07dddff06d57", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "40801dfff354f707beae579d0b99aff809df43ff09228c7e20bb6bb284015bdf", + "regex": "(?i)^https?\\:\\/\\/ouqyefisdhiouzefhuierfgqouihfuh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0ee44c7d200aeafa61519bf7e08848078a3cde523677329f4c69cc3262c5c7c5", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideos\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "212bfa7cc002553d39c5250406d58d4b189d1991c9ce01ec2a5cc78d65a20c5a", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8ae80d1f4e03579513e0d38826cf61530f438acd108c6ea0b40b929c63f5952a", + "regex": "." + }, + { + "hash": "1a98f8ce69aaf8d6da8be70b6cedd7bef2079d79d28adbfd9505b78ff1e7da44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_1\\&utm_mode\\=skip_if_exists\\&task_id\\=144976346\\&task_auth\\=d719fc7189d5856898daa696b9cf669c\\&id\\=144976346\\&ignore_redirect\\=1\\&key\\=20bfdaed29e0ad45178d80d2d308d49a\\&url\\=aHR0cHM6Ly9ldXIuc3Rib3R0bGVzLmNvbS84MzM0OC03MDcwMDQvY2hlY2tvdXRzLzcwNzAwNDFlNGNhMTA4Y2FkYmM3NDc5ZGY2MDZiNWM1P3V0bV9zb3VyY2U9ZXZlbnRfbmV3c2xldHRlciZ1dG1fbWVkaXVtPWNhcnRzX3JlY292ZXJ5XzEmdXRtX21vZGU9c2tpcF9pZl9leGlzdHMmdGFza19pZD0xNDQ5NzYzNDYmdGFza19hdXRoPWQ3MTlmYzcxODlkNTg1Njg5OGRhYTY5NmI5Y2Y2Njlj$" + }, + { + "hash": "834426560d0720c8a21b5abd985e25bdf171cf9b1608f9ba4a2f205e00eb3473", + "regex": "(?i)^https?\\:\\/\\/bvdfb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "dbbe24d5438a2992b18dede9978a83df57c31f955757ca00d2e4198e68666517", + "regex": "(?i)^https?\\:\\/\\/robux60ksuw\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bb9491c4d6fec29a3dc18dfd0e1dfe31a2bbca8ed0798b42237d21a32d0b2ddb", + "regex": "(?i)^https?\\:\\/\\/animationjam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "57d067633e0b17823d59560342fb5bec92791019a7add561f7c049ed6c4e4e00", + "regex": "." + }, + { + "hash": "d9161e565c0f7908790eb1f0fb6279a4d106e7e8144e47088b5348e7d06c3788", + "regex": "(?i)^https?\\:\\/\\/robux60kros\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c76d4380cac2a0fc37dde46fd9f44ef8cda5843cfeddc607c85f7166065665db", + "regex": "(?i)^https?\\:\\/\\/ityruydtursrtsrtsrteturstrsyrsryr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "82deaa78197994a1780103166b9af05c980d4282bb41ec9bc5a83b53799ce1eb", + "regex": "." + }, + { + "hash": "88f1aa360422bf70d166e1751161e88b9584e5fe0c210589dd0970f9c0dfe8ec", + "regex": "(?i)^https?\\:\\/\\/azinex3\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8f909795dcc0a1d45cb82270c2405a6f5fb34d4d41bda5b40967a535178b9534", + "regex": "." + }, + { + "hash": "fc364e15923674fe804709eded2dcb71bee82a5db3ffdb66998ceeb3012bf0ea", + "regex": "(?i)^https?\\:\\/\\/moochrex\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9769b9b61eb25c16784e5ba2efb2ce1fce54dd1d9b358a588eea4625d2236e2a", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "10e0c15922ac73ccbe4670edfe5c0e48497d223800379034674a5977e36a2525", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8ff83f9ebccb75165addfb36db75d3ca9807c535deb7ce766df8a20fc63eb606", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a619528b771829cd745bcc65e3f7314f73e0160105c7b4755b4b407b03e393c2", + "regex": "(?i)^https?\\:\\/\\/fmfgmfm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "dd5d3e759ff54bba7fae7258c4b11038d94fcfc3e50a0d413ae65b0c0defd228", + "regex": "(?i)^https?\\:\\/\\/robux60ksuw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "04beb2679978e87ef13df43747b12872307b4128d11bf9a6a9f065b1aa2d60a2", + "regex": "(?i)^https?\\:\\/\\/animationjam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "be77bdbac7ceabf29efa8830ac6c5f12e0e8f5f6ca80561882bba21283c2acc2", + "regex": "(?i)^https?\\:\\/\\/robux60kuvfe\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "183b03762cec955df7ba0b4470ef0c5f77ef317bcb2f480d5863232192be0b0e", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c647ac9d11bd0b28d58f4d9930f0736b199df17d0ce4d84b6d6fe7ee6b7726bf", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fbb0fe7dd11699c2a6df91895e510d0ae97b416b533e2757a80ad6dd22ecc265", + "regex": "(?i)^https?\\:\\/\\/dtmnm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c2adcfcf4cde1c7742b4c73495d7508ee99f117c9b244ecfe41d10c17fb307a5", + "regex": "(?i)^https?\\:\\/\\/robux60kros\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ce31efb93a6611cd947426cff65b2a5ca9ccde2a6a6e38444aa89ddbaf573b93", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8d47ed4070a70d1377016e475e8e4db9f5796952d0293591035405f682e6386a", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e6a266b20fdb91954e2a136b0330646cad14b1de4c4eb675a26c8dd935b107cc", + "regex": "." + }, + { + "hash": "c0e0c0bc35ca7ab7f2adab9513a86cb3b78942755004f1779d9784f7493dbf82", + "regex": "(?i)^https?\\:\\/\\/robux60kros\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e3995e4643767c1a0da301a2b7fe92da44860cd49af6b1390c9315b6c5b155ef", + "regex": "." + }, + { + "hash": "7e81efff8dbf555ef0f3fd998abb4d781255b5e05683629bd421957c64c1df2d", + "regex": "." + }, + { + "hash": "29021e32857a4a4fcbf155b93d01660eed49451d582feb60d294272e472635b1", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fa9a36b8a00cdc88d6db04dcefc039f29a96e1266a3412b477bce30a18c23b8d", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c94e27916001740062c0d9da188ef46d3af5305061b005ea0f10eace6200f5f3", + "regex": "." + }, + { + "hash": "3856dc42e8a8e7202461b42b81b1a6f02f3205909958b759b6c7bda1db1d8c12", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d551659512bec32ddb12ed7e6ba9bb0ef2842b7b0b7f019d03d371b8cb15c783", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "926a842b8efee505aa39057914766fe37ce009b36a3eced4338df15dfc1b99a3", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "37346adf3a03f848d966c3ed474000b1dbb599a0127d733cd8316748479988e8", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3d681b662b594a98d63fa022f38a27188585304f4c6316fa52e738f1cafb1b88", + "regex": "(?i)^https?\\:\\/\\/bvdfb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f37126e4df9946beb6bb38dd71067df92b67e328b1e2f9022afa5573f8071410", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cnfeyazvkj\\.com\\%E2\\%88\\%95lhszrhmxi\\%E2\\%88\\%95mihdensr\\%E2\\%88\\%95nwoplcdqn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hdjgpfyaum\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2ccd2bb95021af19b4ede6efcb00a442a9077fc09a2f626e840c0a003c692398", + "regex": "(?i)^https?\\:\\/\\/bvdfb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8ee176d07de25d61f49719943ad9d5ab338e45a9c3801157d937bd8e20e2e7dd", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "28f8b42afa9054a0543675c4903ad1becfe0f8479df3db1f17728ca9c5220768", + "regex": "(?i)^https?\\:\\/\\/besacesdeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "9f1f9b6baf92c0f070efeed4131a2cf0a41c35a4a2547dcaccfe4f5da7f3a364", + "regex": "(?i)^https?\\:\\/\\/ityruydtursrtsrtsrteturstrsyrsryr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c6bf98b2f8e88b4e03d58509456f7acfc8dd5b26366ecbf70471f92618005df7", + "regex": "(?i)^https?\\:\\/\\/animationjam\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5e1f42930a48c4eed0fe96a9d60e3081f63fc767d19377c88fec4ad9699363ea", + "regex": "(?i)^https?\\:\\/\\/coinbaseservicemanagment\\.50\\-6\\-195\\-232\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3b036246bce68b15564cf5a36665976a8ce64a530db37e73ac9f1a673c9ab3a2", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0e8cb6ebc2d01f0d35daabe9d34fb62b2a34a6f9bc7b824c8f32a4f34f60ec91", + "regex": "(?i)^https?\\:\\/\\/up\\.fine\\-up\\-fine\\.top(?:\\:(?:80|443))?[\\/\\\\]+in(?:\\?|$)" + }, + { + "hash": "36418fccddbad4eee4feb085a571e4a77e4e28ad2cb357a95d58fd0ce08ec24e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+matazb873[\\/\\\\]+kunder_67673678[\\/\\\\]+9873977(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a8188817d1801979017e80bdc62d405926eab749cc396c807149d4a75208b7c9", + "regex": "." + }, + { + "hash": "fc73bfa09144e42776eb6d8582b58987af0476aaf54e14ccd29fe2ae8c40e807", + "regex": "." + }, + { + "hash": "62e1a46291f00bdd2d31da6d832de63b1667271d76f167fd2ecda2cfed4cd9ec", + "regex": "." + }, + { + "hash": "32288cf0773712e1b3ed7f0f8568d15f3fe803da9ada91157b105cf386b1b790", + "regex": "(?i)^https?\\:\\/\\/robux60kbvv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "36d7e114af9172f256a6a869168655c245a26e185ca51f766dfbf007668d2ba4", + "regex": "." + }, + { + "hash": "06c21f82cd767c17f3415e4205c1c6628d41e9089c8c8266214ac5d268db9182", + "regex": "(?i)^https?\\:\\/\\/robux60kuvfe\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "486f41e2b1f53d7d3ccd8e4ff57e9ff8b887a487fd2cf4b7bf1c8f36ede8738c", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3029aad1efa2d58db3747e9cef362d62fd91eea7fb53772e62c29b0ec5e0478f", + "regex": "(?i)^https?\\:\\/\\/robux60kuvfe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fe08b52131b516d1e373203713fcf045cecf92c68e5b6db95c67365fbfb24c44", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "98325e926cc34f78532935224ad1eb19f569915b1e8489db900df3d659631101", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4dd60017ca4c1223c7f95f98eb8ff23db8aac9dd47d13c60a99f526c6ffa0c39", + "regex": "(?i)^https?\\:\\/\\/dmekrcfa\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a63313e08e9326e3142528d9f5670772340b8f55feb898410404e21ea6fce90", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c28085f0b4ca8c4fb54fb180748950a4835d9b656d565e0f15736e72b8949d81", + "regex": "." + }, + { + "hash": "b1f0e44e298a61b42067cedf47692a11cecb6d776fe2cb0ed2404b10fa243634", + "regex": "." + }, + { + "hash": "377d701520c8147875dc0da727a7c14d39b8e6f8461ffdc157abce5353c72d70", + "regex": "(?i)^https?\\:\\/\\/fmfgmfm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b07945b7b0120561dd9699f93e06e68648f09e6e2bb9e8de6513871336fe544f", + "regex": "(?i)^https?\\:\\/\\/ouqyefisdhiouzefhuierfgqouihfuh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "83c4977540be5c59aded262133b71aa683321d2dfe473a51e20ddd58782ee3da", + "regex": "(?i)^https?\\:\\/\\/bvdfb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "20496db31c80639aae6b3b237b2a574b6dac9575a45abc694a5383788390d745", + "regex": "(?i)^https?\\:\\/\\/dtmnm\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8bdd64e3804003503b04bc242865792cbd86fa8f6d868fe187b22641021499a8", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideos\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a45ada83a3b719eff244d515483eae16fff9b21e9da38fdfdd73c61ca28d451c", + "regex": "(?i)^https?\\:\\/\\/robux60kros\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "740941db6c91b2a0fb91fdb07ec9322fd823edec2e4e538ec645104c626fd81d", + "regex": "(?i)^https?\\:\\/\\/zitjiopzriotjhzeihuiohuioazthioyjeety\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1c45cf1d5b6916e4da447e32e7e3a623473b5df5ed6d9408f0715b92337d2007", + "regex": "(?i)^https?\\:\\/\\/dtmnm\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "89d5f190eaba7e504da69a8ad82a7a9d802f5b289e7b8950946f2d0641b1b7ab", + "regex": "(?i)^https?\\:\\/\\/azinex3\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f560991e42c7939739fc9e82d12425a852027d0431b627b2f7d7063e4d48480a", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d0cc3e9720fd4ad8eacadedceffc46cafd1baeeed2007b84f49a9293d916b0ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+PUqWi(?:\\?|$)" + }, + { + "hash": "440cdaa4f3964bbf4641031f35398c17d714b7883496989224c456fb65eb44c7", + "regex": "(?i)^https?\\:\\/\\/dtmnm\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b34c80f835d47894800cba2e3f57b995986299b3bc758423520b65e1d5d26c06", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideos\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5fe5b36d55fa3408616e3face9cec9daca5e2b63863ac7e8857eeffb40b39bac", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "824cafe492da4bfa987aa591e079a2964e0780602256b5264e4934a6280b9cb4", + "regex": "." + }, + { + "hash": "8dc3618e23a71fa24b4d93511e83144af3a9bee2416e409f499293f4e2491084", + "regex": "(?i)^https?\\:\\/\\/hotshotssvideoonline\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "991599d076aa66cf94535c1a0d11668a5e0d5a72384695ac45cfa622154c98c4", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3797300f27610285d2c19fc5a7d5a023c80de2e3136a839093c00850977faac5", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "87e2dc21f91a1f55a3f57fdea7837ba408f77e356bc0f50bcb45c496c6abb717", + "regex": "(?i)^https?\\:\\/\\/robux60kfues\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5dbfdc64f235e72a4bab4e115342218d760935f2c34cf1c961a566f6a3c3ea98", + "regex": "." + }, + { + "hash": "b98d208345c3dd6f2a9b3d9a02f13534b21956ed92e0c8ec36a51aca125b770e", + "regex": "(?i)^https?\\:\\/\\/pxrltuwi\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "defe5e5edc3a46abd8eb315fb6dd956a37deffe2d5c781c437f678e0216d5b6e", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ae3c40550c4480621bdd87886fb41a663d925c8442460375b3573eaf1be50ba7", + "regex": "." + }, + { + "hash": "e0120888d99c8919a2878077d4cf8b7928b03b17d7cb99c06a7c696d8be32fee", + "regex": "(?i)^https?\\:\\/\\/robux60kuvfe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c888b07dfde2dc0422abdad78a764cb037fb82839e1a8984b1f53e42ff5312c2", + "regex": "(?i)^https?\\:\\/\\/robux60kbvv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2d1cb819d40f5b521483f8123d3fb797e5c3443027e859f2993247d174ee8397", + "regex": "(?i)^https?\\:\\/\\/free\\-8795\\-rbx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f789a3efc1c0c9f0f11cc9aa9aec2a6ec96f8f2c3499ba635da530494eb3596e", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cd1e7e7ec2cea5ee550d0456d48f03ff7eef9db60eaa16d62fddec01a5c218d4", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e8a3f4b0ff55a7f09159410238b79d7d8e46b5c4400da79fe48c1a4a66498426", + "regex": "(?i)^https?\\:\\/\\/fdnbdfbn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "66b654944f76cd1e8c6210f2769b0886f835d2b8385578f70c898ca58c39bd1c", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bc552ccb692fd78c527be8124c96d55639488c18ff1ce2ee4000e0dedf5be0c0", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "07c435924be6060f6e3bc3480de97fabd3aab94da6eb2995d5cdbf6865b676e6", + "regex": "(?i)^https?\\:\\/\\/fdnbdfbn\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cbc0f431bd692b9c2fab28b99b5d29b8432c748f14eb43074f62318e58e8fbb6", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "04d53cbb64b4f71908b7c26d006109378c3626e5d9d760bf80eadb088dd58f4b", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "417cfde973089c28b376a39b9586a8c10cdd7431bcd16a8b70b72cf91b50abd4", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5957bceb5fe18c15a39b8764d3734acf94069ba17cc88f358e172fbf585577e5", + "regex": "(?i)^https?\\:\\/\\/azinex3\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "508219c79a7b5c7d35086d878736d184d389948966d63d8cbb98b57bbbb89e27", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b65dc86e1096cea238f4d8d0fe31dcc8f4d69a1f52c0ab86887bd5737c41542b", + "regex": "(?i)^https?\\:\\/\\/moochrex\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "598aacf7ad3d9660f85bb9f2c225668658b17f90de9b2141d9359a9b557207bc", + "regex": "(?i)^https?\\:\\/\\/dtmnm\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c68409be1f94f01f696d4800d873d9489f4fe0ff687c0f243b982f10c38d9a4c", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d2349f3fb330f1da2aab157bd5cf51fb3504ed1d9eaa17b758424e81879274a1", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e1fef43ad6b17046119a3f5f9730469398dea80029b96b7a31b056171ee07dbe", + "regex": "." + }, + { + "hash": "1a98f8ce69aaf8d6da8be70b6cedd7bef2079d79d28adbfd9505b78ff1e7da44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_1\\&utm_mode\\=skip_if_exists\\&task_id\\=144976346\\&task_auth\\=d719fc7189d5856898daa696b9cf669c$" + }, + { + "hash": "f69fd4c82a1932d96d624dee9ca0e8821d11e1db8cea679db0445ce82a9c7576", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b561d6f609a37cd957e230115fa9e33cc0ffb3ed027735678fbbc667666b900a", + "regex": "(?i)^https?\\:\\/\\/pub\\-cf7ae6b9276046da8e9e339a98fd3f4a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3c0525d239a433f15a92727c1d725da1b176d70f70c5b0eda882983805746779", + "regex": "(?i)^https?\\:\\/\\/ityruydtursrtsrtsrteturstrsyrsryr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d5698317c5ddc76d3d64c0aa341ebd3aec32a91115a89fe1952b4a1b0b2e0be1", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "95b874fc4dfe39ec05b9b75a934634ac52578358343b5bb2b5bb23beba22079e", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0fa36e03425b956c8407a9be84992ee3c8793f9a11f6e93da495f9e3a6c0adf1", + "regex": "." + }, + { + "hash": "be5fbf8811997f432077ca73f5e39e71331f6f92f533827a298a6bb94d695b46", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "abb07d8bc151e81271632289270a9985a937e7672e6a6d8c5424874101b4c848", + "regex": "(?i)^https?\\:\\/\\/moochrex\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3e11cff76d076eaa51a636170bf6be5bf5363b7db7712cb037301850546476c5", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3baa270e91574900e5778e8b9c08831b8b49dbed3cbffef1042cf38435ec9e24", + "regex": "(?i)^https?\\:\\/\\/theonetheman\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "413ab14031181b159ef5978100d8da2e3fd25535551790319affdd7f5b2f83c8", + "regex": "(?i)^https?\\:\\/\\/zitjiopzriotjhzeihuiohuioazthioyjeety\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4eb3a21decc3c41fc44052374f57151b5dca65b5e2066e9dd65ee6f7e55d0ab1", + "regex": "." + }, + { + "hash": "2628a4f22b7ef530d2fe07fee65b8a7dfb714498025039f6d10cedfc752241f7", + "regex": "(?i)^https?\\:\\/\\/free\\-8795\\-rbx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a99c151369045bc89f805cc6ba8a4b410dcd47165770b4e4bc5b54f9fb8a4dd8", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a7f0e381b8471232cacaed683127eb53426801fe066c4408acd55cf89b4e0746", + "regex": "(?i)^https?\\:\\/\\/robux60kbvv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2b9d2e19eaac793f2a769ea83de155d7e4e6d5a1874098a78807b64c8d36d3f0", + "regex": "." + }, + { + "hash": "f214ae2280af94b7a8ea9f56c3efc71531329642a3bfcafe37ea6fc695ed22ed", + "regex": "(?i)^https?\\:\\/\\/ouqyefisdhiouzefhuierfgqouihfuh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b35ad7d7005b027edd7a6da8e752cb4c623f6880575c2b4da172f4a2ef95e40b", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cf5de0439dbdd404fcbb376834a321a62efe491cd21c4c1ce541053f3b32a2cd", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ce1250913c70b4350e231bd80178abf6405674a55af1114731c2df286a9ce4bd", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9f80a025bc02e0f4de94a369f3ed8e49e35d0cc17d75dac05447088bff5110cf", + "regex": "(?i)^https?\\:\\/\\/animationjam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a3255940dd0c3200b6d9bec9bba5fc23b3992324693b2ef9a2fa20176a5796b9", + "regex": "(?i)^https?\\:\\/\\/bvdfb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "85930a553c21a5169524963345d945fd7e359c134c9b5cf86cb47aae5b1d075e", + "regex": "(?i)^https?\\:\\/\\/theonetheman\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f0d40b8eb403971633a9aa31b34a5a8009e1e02e28a499314dd43f42c699d9b5", + "regex": "(?i)^https?\\:\\/\\/robux60kbvv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f921f3e43c790cac028e08088f42cd901b4caa66e291d5aafb8a477f03fabd4f", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b90c70f125a1e666e43a02dbf1b1f1efeb0b5ea470d775f1157c74ee15a6e09d", + "regex": "." + }, + { + "hash": "27458b8ec0e05cf89bfcd911f122c624f00fd6a53754fde794c46c01151fb9aa", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1a98f8ce69aaf8d6da8be70b6cedd7bef2079d79d28adbfd9505b78ff1e7da44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+83348\\-707004[\\/\\\\]+checkouts(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "82ffaf2b64ed77bd3e2e6ff84453fd76d76cb360def9529eeee5791a4cf95ddf", + "regex": "." + }, + { + "hash": "aad88dd7a170a532868b2cee94b6b213f6094728020da55da33f156219e6d64c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ce3340ebee3b2564ad023654f6350abd25404219f81bc653604ec3cad8719eb0", + "regex": "(?i)^https?\\:\\/\\/azinex0\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9d0f9344e55c601e9402dfb12c021ff1c56ec683a6ea04652af30c0a0159f604", + "regex": "(?i)^https?\\:\\/\\/fmfgmfm\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6d01da3ba6294ecbd1726004b7bd7139892574fde7d08519a717382c577dc09f", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2a7dc341e222ff222918d2da37d346d4e276bda6313dede54e73b2192a08467d", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a1426544d536d4056e0a20992f1ee673ec3ddba89f0fc286b3cca1706daf9038", + "regex": "(?i)^https?\\:\\/\\/hotlistedvideos\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a8319ff7138c8d89725c75b7b7e6a4ee10653287446adec1a8621d1ba9b12207", + "regex": "(?i)^https?\\:\\/\\/zitjiopzriotjhzeihuiohuioazthioyjeety\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2cd439d52c13a74a80b3d9bb954248d5b3980bea1c49f8168091617050ec77f1", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "84eebd20224cb5eec508a77d5747f9e9f0181aec1c3385bb53c30dff5daa32ef", + "regex": "(?i)^https?\\:\\/\\/amazon\\.snick\\.com\\%25E2\\%2588\\%2595ovlsah\\%25E2\\%2588\\%2595iamkerbdda\\%25E2\\%2588\\%2595tlsgtc\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uoguw\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f53c603919ce42070266c7f3e22258f2fcc39c1e6466e8957d9834013552969", + "regex": "(?i)^https?\\:\\/\\/dtmnm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "21e107819fcd07b000cdf025a763d7fab77b5b78e5660a811d7229bc0ff4732f", + "regex": "." + }, + { + "hash": "ec50393a96090a448d0d464af4bc38843d38fd70c5034cd2247e8fe6df5c4762", + "regex": "." + }, + { + "hash": "d36271ba036adf3916467d4c258215c506344da44c69533f679d8776183fbe62", + "regex": "." + }, + { + "hash": "5341c5ea068be81fdba81e1ee49875e1b9d34c0e8494fa64f6db91fcc781dbfb", + "regex": "(?i)^https?\\:\\/\\/fmfgmfm\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c1e91a3c1d81117b394a66077c3210e8838b6a76b7edbfbbff0d28f88473a392", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "69e60b6e4e65a98b742832c2834512baa13ee2d464ad2979eb0550d501acb60e", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "68807905f5d0fb8794df9848a22789ac8d4273cc919476b0b149f8cd364374a5", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fe979931bc817e4d13eadee002b587460c37327d2fa66156329b191b164c49d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login" + }, + { + "hash": "3d5ec78c3b5d2c53220b289169db9d60c3f04c9a717303d6e2fe88942b045bb1", + "regex": "(?i)^https?\\:\\/\\/free\\-8795\\-rbx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "65f343f71d6daec9f1c988f9698e8e830401ed7568d38c93aacf49089936bd91", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ce11a68462abec09e3915cb1c6ac8f9d5f76ef812acc766b100fe1ff62b9566f", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0e8cb6ebc2d01f0d35daabe9d34fb62b2a34a6f9bc7b824c8f32a4f34f60ec91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?5xj\\=137\\-60$" + }, + { + "hash": "19ace05b376aec16ecab11717daa8b812b0fad86f0b5cee528284ecd679d184b", + "regex": "." + }, + { + "hash": "9d6b5a365ca261e6f0bab4e912791942df21111b47fc33c4ae54fe278f9bb7ce", + "regex": "(?i)^https?\\:\\/\\/ouifhsiuhfishfiuhsiquyrgqouireraygrya\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "970cc6fe03b37140807a82795176aa9ae51c19fee2854b903e24617ef5d78986", + "regex": "(?i)^https?\\:\\/\\/zitjiopzriotjhzeihuiohuioazthioyjeety\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "af5104452af772dfefa24e6bed284ca86a2a08214f83156902fa1d206126fc6c", + "regex": "(?i)^https?\\:\\/\\/pub\\-201ab081b44b419e9bef29528e104ba6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d6a1ca71b14f2fd432a86d2ed9b08dd5a31655d16d68c22f192ecde8883fb75d", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7933a1e6a1d1c0c7ece20f0325f793ad8eec78c80a0a39b84e74184a7e87a028", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "378b5ce462f1d8fbffa3fb2302fc842918a788ca997cb47b2b58075ebb3e9425", + "regex": "(?i)^https?\\:\\/\\/oqsrfyazoeufquifoaziufdsuuifz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6129f9625eea64b6dcaebcad0687eee085df312ef0003a8c447e387365290258", + "regex": "(?i)^https?\\:\\/\\/fmfgmfm\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "61bb4886a2a138918b76f5fcf55c54c7b3c8c7f62f71fc8aeda4a8a84022579c", + "regex": "(?i)^https?\\:\\/\\/fmfgmfm\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "70938e2ae709882a9f339334dda6845480ef5ecf8da6ee98690b711c1d8cf7fb", + "regex": "(?i)^https?\\:\\/\\/robux60kbvv\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "547f79dfa393ae89d636f558e27ceeba40882e535d727469d7153608c153b9dd", + "regex": "." + }, + { + "hash": "f23698cb2a2df8a962e5c147f870bca55b7e926906d1677c3663df62571a7599", + "regex": "(?i)^https?\\:\\/\\/theonetheman\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7e27206603c6809144bf180caa0a5ad33ceaeb3e4531b1d4aeb2953b33895b8c", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "ab5e6d6fba66cc2a34301af0a5557607b2bb2b59ebd0ab3508f9f901450b1856", + "regex": "(?i)^https?\\:\\/\\/hotshotssvideoonline\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8ec164af2537a6401e0401b1cf6c7b7a0cca50a74f5581960c39e21370279805", + "regex": "." + }, + { + "hash": "fef339171f2251480d27a8e950398f6be71a00f8ffa00b359e55ab4ad53e0277", + "regex": "(?i)^https?\\:\\/\\/ouqyefisdhiouzefhuierfgqouihfuh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5216a5219773ca49fc7adb6e37f7064a4a8934c6ec92eb85ffacfb144558ab61", + "regex": "(?i)^https?\\:\\/\\/us2\\-help\\-s1gnapp\\.45\\-90\\-223\\-24\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9499bc71d581d58d22cb2f07d9c0eac9ea17f9bc1ecf94031cb6776c83582996", + "regex": "(?i)^https?\\:\\/\\/fdbnfd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "02322689cded5c04d962eb6eca628ef6831e65c2030a4cc6312fad93fc7198f2", + "regex": "(?i)^https?\\:\\/\\/sdbssre\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "31bb596bb9038f59326720f9581d09de9047cb2e55af921c3aaa9b153c93613e", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "145bc7ae596361b57047fc6a973824b6d7b365762c7a41cf3b561505a815a369", + "regex": "(?i)^https?\\:\\/\\/baby4ad\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ae4f3026326f337755fe680351e65aed1485b66ee22c13b4d6a6449b55a8a1ea", + "regex": "(?i)^https?\\:\\/\\/theonetheman\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "de747e1eb997a9835307dc3e5d319740fcdb56039b523199440f1cf149686ef3", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "485a94cb2db80399dceac01076ac5fd9bab3dc54eb673025527ea661fd4206a4", + "regex": "(?i)^https?\\:\\/\\/maripier\\-morin\\-trade\\-1\\-8\\-diamox\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "af2fd166d7977bb4c10e1002546d08d20673f12caceadbf1b1ade183fa3ac2bb", + "regex": "." + }, + { + "hash": "71b84d63fdd04839f5b185a1a5533e6051da40d77a9cc74b6547f4553c20a1cb", + "regex": "." + }, + { + "hash": "5cf9f1fafe822d93c583bdaa6816985f51962fee000d3010b47aa29972f1fc70", + "regex": "(?i)^https?\\:\\/\\/robux60kbvv\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6f540a1c297f58c50a80cbb2c8ca21182dff1be819086e80f8815b667a1e72ca", + "regex": "." + }, + { + "hash": "816f4dc5d8b2b54a121db981e93b14c0cddc6db24383b85c0b4165d6053c570a", + "regex": "." + }, + { + "hash": "d9b9db167f6ca102b2397aea40bef9066fb778b285ff1e8154f61b1fc8e7aaf1", + "regex": "(?i)^https?\\:\\/\\/zitjiopzriotjhzeihuiohuioazthioyjeety\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "60016816a8479c9f5927b919cc2943385dfe23b699280148ac20774ae3063e06", + "regex": "(?i)^https?\\:\\/\\/awyupfhm\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa48ae5b1b92e3ab3eb80f405d1dfc1c80cd51ea3b7a70eef5cdee9e28401b20", + "regex": "(?i)^https?\\:\\/\\/us3\\-help\\-s1gnapp\\.45\\-90\\-223\\-24\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "93d72f4b593047fb40c6c44c842a085688b5f4a3ff7ae73b3ad8246caece4fca", + "regex": "(?i)^https?\\:\\/\\/moochrex\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b3c446a2544a00056006993142e5a3b8b4eabd0178fedf62518fb660cac04fb8", + "regex": "(?i)^https?\\:\\/\\/robux60kuvfe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bf1c119c654267be8ddd7cba7f52965035bb6d4c5fe25a9346801af13b72a297", + "regex": "(?i)^https?\\:\\/\\/ouierfqshfioeurfghdslqhfouihsoqdihf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d9fb49844b40df850eaa09326f0d244deb0e45eb8540fe94f34e7ca6e3532e6c", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "69a0ef5a86b3f3278c8ee996db65e525b01e8c7890339a84a85014f502e59799", + "regex": "." + }, + { + "hash": "6c700a32efc5591866a8974678a85f8ec79c0e47683991e7e54017681371f4a1", + "regex": "(?i)^https?\\:\\/\\/rhbrtsjk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c2106d11998e02ff1ed35203c33b3c3d5b92f6a81b2bca5cd844d94dd50d62db", + "regex": "(?i)^https?\\:\\/\\/moochrex\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ec0a97d608c07df4c7987f1564ff20d4d7f83c08aa1330711e65e2663fe7ebf8", + "regex": "(?i)^https?\\:\\/\\/fdnbdfbn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b77a280b34fe04b20265a2cac4466a8d93c6ecbc99d51d3bd671726aca995f97", + "regex": "(?i)^https?\\:\\/\\/drawanndraw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7424d4ea7f9e3a0c4ec037a8af99e7d7dafcaa59ec6b0d401df61cb65fb6b9fb", + "regex": "." + }, + { + "hash": "ab88bc19a7af4c1821ad71b5d52b783ab3c9f4ddb5db259b37dce7b978d944d2", + "regex": "(?i)^https?\\:\\/\\/robux60kuvfe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6a838226e7311f01787778cc28b296d7f4b519bf7d2923f15c384595d133748a", + "regex": "(?i)^https?\\:\\/\\/uyruyedrtshwsrthstrstrsteqetzqfdy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "83102be4b4944ffa6b06bdeebdca39299f071f6b43104b8b2524b1e5232b8506", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "89d5b8de60b9e7d80ced54cb637982d2c0e7fc54a29c30bd1247db9c1b5e1e39", + "regex": "." + }, + { + "hash": "cccfd0681282cdd388c488804e78c3e8386303c9c4444503d82716a715306c14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6d55b3bbec55e2e0df7aae17968724217555b13b82a5c226a35c9311f3df45ed", + "regex": "." + }, + { + "hash": "4f914ee4933c1bde0b0901c5923e9972c342f547176e9d5df6ee9551d78ba21e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=vlmin\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "ff3084ef999618fdeeaba9414ec3b53a933f2f82cc7198ffcad4db630764caa0", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0a417565f8bafdb77fb594bfbbe052e9441f6133d0a3e50e4ed50cb03c316f0c", + "regex": "." + }, + { + "hash": "c9279d9f5f271cfe8759a037e52e5628b555b6f423b72e8462b8a8b2fe64e518", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9182[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "5ca2446c32360b5581e7fb5d56d084d6f64cd04d5aa4bf38370b562964be6446", + "regex": "." + }, + { + "hash": "5cd05ceafc81c768fe574ae52eb046acaad5eae229a39a5fda54f23b7a3fe1d0", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6617a629b7485e5806a2eb08f9ddffb47b288de0c98c97cb6d58ffc5d3f91999", + "regex": "." + }, + { + "hash": "4e68c60be19e613b2f2d9c4fb21fd5261237b5833b2a28c47e3795495d2f5e62", + "regex": "." + }, + { + "hash": "3c6c0345233e6d1562de9a538e455f1c84e64df0f6c55bf95e69731efe5f5679", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a37d6c2f371eda1ac15eba332e93e8621075bdf21d6f754086e47d4b7639a7e2", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c88838b3df775f5ffccf334c75ce2a820bf9440864bcd41cd2bfe980512a2146", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "91902cba319a422f69b4743785249fb4fb3532d754e013ccef50d081d86a9f31", + "regex": "." + }, + { + "hash": "94046988ff45c193a772bdcfcc9580aa92de9170937c79fadeb54876a531e168", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ec(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1276bd27c87e51488d77f399f847a8a03786a814b2c51af67eb06b86d755cd10", + "regex": "(?i)^https?\\:\\/\\/att\\-106993\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f133701a7020d746669136ce2bd5d40adea1a932aa9a35cfa57fb6ee659ce09e", + "regex": "." + }, + { + "hash": "ce8b8c5d3bee3ee89f46b1662123373ccf55346f304b5229790ff7eb65801f50", + "regex": "." + }, + { + "hash": "12a2f9edcd95490811b2767ede3087b3503586f8febe965c28111142da405f64", + "regex": "(?i)^https?\\:\\/\\/abd\\-3601\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "697389635cb86f7dfabe152f96dd6c872ac4870cbe63a36975295877d91a4834", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "845f4bd3d836efc120cb419ab4a2ee635b6b5a5371c611a938c01df53e69f036", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bb37c25416790e3a9a9744d7963b5d86b39e2dd5344c3f4f7712e4b7cc50d87b", + "regex": "." + }, + { + "hash": "d7b708f5564d81ebebfbeb838bceea89eef9664b74a860aab6541163861bb57a", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ce60848859dadab38cdb7f158dc28ffdfdc04bf71b776e8cb55c2104454a898d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wwnekyijgh\\.com\\%E2\\%88\\%95gqdqyv\\%E2\\%88\\%95fcysi\\%E2\\%88\\%95ikdgspoz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zldjhb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ffa27fa1a6abbf9561f6ece090e90bbdea86a743aea0e5bc7900ad75c2aae3a8", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "858dc65e5646144fffab111a374abc5e9654984487a8405602c5c3b3b0206b27", + "regex": "(?i)^https?\\:\\/\\/viralrobloxx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3fc0b28738041efdbdf015d89b88a6dfaaf71f1441c2e6c2558903a6f9d4e2e4", + "regex": "." + }, + { + "hash": "c684145d22893b866831f1263a249dbd868744e29e8f4d8be64b235a14be82cb", + "regex": "(?i)^https?\\:\\/\\/osxvdzbvwctzkb\\.com\\%E2\\%88\\%95osxvdzbvwctzkb\\%E2\\%88\\%95osxvdzbvwctzkb\\%E2\\%88\\%95osxvdzbvwctzkb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\%20url(?:\\?|$)" + }, + { + "hash": "69219a1d5b6371e56c820de4bbcfac3d356c51bef8d6f63947674528be7ebe51", + "regex": "." + }, + { + "hash": "931df4c80445a47c0c000590e43c5756f3dd4eb3c43f1651717e4c71722618bc", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d56e4de584c9da0e3f51eface432eecd7e3e00a62b559ec0fa2c500c24e059e8", + "regex": "." + }, + { + "hash": "a73aa886f1681711c6b6552fd5f3b16867d15dcedda0ea46c4bfd31acccb630d", + "regex": "." + }, + { + "hash": "e47c885b4c210bf06c95625b88e6af3052f020f8d94bc653eaa4c731de1b0b43", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e57d06652d57bc6493f2d2a98fd3ae4026e149c873090213d77bcd31188b28f8", + "regex": "(?i)^https?\\:\\/\\/viralrobloxx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "90a989d451170f518d3f1d1bd04e6fcebf2c7d848cc4d99f4aa0d7761134b762", + "regex": "(?i)^https?\\:\\/\\/shotvideoonlinexxz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "034f409ee46b590364afbb0cab0e0db9301c5aec4260b90ec4a1787c003f3076", + "regex": "." + }, + { + "hash": "91f5c34cf512d6e54436f1b367629d011345e6d5b2f9129d2e68d536b973cd7d", + "regex": "." + }, + { + "hash": "1c14b3a12ff0afe97686d7d2bae1ca624137250d52d26d663af18ba30ae04132", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "a239d2956dd1518858ff27e02ec0c73fb7678d0c9e48a2e55ac6ff2483448a0f", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b62c63ae1c6f5f6d1811176a0b21acac629deffc1e38ea23376fbfb93d9815c9", + "regex": "(?i)^https?\\:\\/\\/bnvbnbvnvbnvbdrtg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8b8ba8bf6be731351e8d8442c877703d81b807862fd640a3896ea7128059af06", + "regex": "." + }, + { + "hash": "3004b479e876eed203fae24e2ae6bd9ebb34fbe85bb63ed13c5bbba7d52e3464", + "regex": "." + }, + { + "hash": "56f93582108763238834f2e7acb976ca13a19abf27ddec2eed7952aa58146236", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aI6\\?3mo\\=7\\-83$" + }, + { + "hash": "a803af8b2f173db498fd077d279421739e0065c2e40b24f00fc257c71cc01d97", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "af3a01184752deb97896d847b15d9879f4c9a96effc919218e1688e99af67dee", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d6e74da47c713d53067cbe2a1dcdc41e328733eeea5afcc94cfff07a4dacdddd", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "975c99b46769d785949cebab727210c6f514b825ad1b0803cb4d036f1fb5dd80", + "regex": "(?i)^https?\\:\\/\\/hotlistedclips\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c343c6843621507da5287febf61b2850ef500e96937ffae6fdef64faeb96872c", + "regex": "." + }, + { + "hash": "5323651e19ee0e995b018c302e3c887aa35105ed2ba10f8e9131c80031a79278", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?wise\\-directory\\.com(?:\\:(?:80|443))?[\\/\\\\]+iIEkdshu54kdiOwis[\\/\\\\]+dffd[\\w\\-]+" + }, + { + "hash": "bc46f548343ea235260574ec64cb36e4b1ecc169122a6e8f8c9ae42a2722a329", + "regex": "." + }, + { + "hash": "518dd9d359a1fd0679cef979ac093cd29522da1ab37b57f35b350d1c25ee5bba", + "regex": "." + }, + { + "hash": "da16e8c13398ba4e45041248f0453aad2a78fa95827a9bf7732f86282008e074", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b1cd8d561f63944916f9ea2e78bda60677e68b8fd7f6da1c59a66e65dfdf380", + "regex": "." + }, + { + "hash": "1b8fdfde22dfa4a518c3f2a656ada901033e7c0ac357fdd7fdb7555f1d721902", + "regex": "." + }, + { + "hash": "eae8d399eba7cc1ae69e58d1636be5f19ccffdb6b76c01db1ca14c9ab1d79058", + "regex": "(?i)^https?\\:\\/\\/instagram607\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eae1c40166c4263719649505a0b503f282361e244b6b8726bdbec20c1290ad56", + "regex": "(?i)^https?\\:\\/\\/viralrobloxx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5323651e19ee0e995b018c302e3c887aa35105ed2ba10f8e9131c80031a79278", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?wise\\-directory\\.com(?:\\:(?:80|443))?[\\/\\\\]+iIEkdshu54kdiOwi[\\/\\\\]+dffd[\\w\\-]+" + }, + { + "hash": "7acbd7c68e9c36e028643085b737cceb70f0c0edce4c63e9a19fa88ebb7ae886", + "regex": "(?i)^https?\\:\\/\\/viralrobloxx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d841ea7653249a58868a46eb85cd0ada71dc49156f733b1a3e4f806c4671c6ef", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "79c77e4abf84aaf3edd3abaaba4a1251f624ee7aac48b39bde31dce77fac0202", + "regex": "." + }, + { + "hash": "35af15b900170870d58d1a787211acb8b8f4bee912c3bc6c5d0539ae2a843391", + "regex": "." + }, + { + "hash": "387deccf037b5c47216c2e8d7bd10673f502c5c0a0b8fd4eaf3b1bc49a8cc910", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e7e94720f091611f3f16ce5fe5c10f8206d85208f6e46ae43a63285974702258", + "regex": "." + }, + { + "hash": "27c4724033d6190bf77396a75b827b9dcc8899ec2c34accee326bf09c7191586", + "regex": "(?i)^https?\\:\\/\\/viralrobloxx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "d98904c030fc6548044c0641e79a55796312c0ded82a74c67779b6d64636a0b4", + "regex": "(?i)^https?\\:\\/\\/rewards\\-pool\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3e705c6a5e6bd448f3268f48c9195f2c3c68e50dd97e0abda769a955ece30e2c", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a8437e8aac2ef5868e85a9fd036230a8f1cbd16c849b2453b04d8695e7924181", + "regex": "." + }, + { + "hash": "5d7906f0f52f1b1ca8fb6bae29607718607ae18b5fd44681615fa38e916ed7a9", + "regex": "." + }, + { + "hash": "27689c33e6c736a30386472db57c031a75347f6a3c3bd228681a8d15a0a09ee0", + "regex": "(?i)^https?\\:\\/\\/instagram607\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "87c881bc39ccdf49521e12bcd446fe584605a28633536e0a9601c1c89f32ff8e", + "regex": "." + }, + { + "hash": "0d11e2d27badac5df3849d2ed15035d31d19d0502af2598b5a6a4ecbb0944d3e", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6f184bcdf5825cc5829eeecc3ea31d36fde8fcacbdb6c4fed43c347c5df0907b", + "regex": "(?i)^https?\\:\\/\\/www\\.ndhcfb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "517d67c0021425f530f16ebd23aca781e2ba4ddf546ff56372e4bec5ca18bf63", + "regex": "." + }, + { + "hash": "9ccf15b6ef41c43ef889f43608e57a5da72bdfd1b94e887bb99c983808f70b68", + "regex": "." + }, + { + "hash": "fd435f2c7a1210494ad834bd82afa06531362b92ffc5773e534ee8966278bee2", + "regex": "(?i)^https?\\:\\/\\/shotvideoonlinexxz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "03aec7345d0447dcad7abefe46030b5b673a6d538dec81f5ff08758a84d750b7", + "regex": "(?i)^https?\\:\\/\\/viralrobloxx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "106a3f6a1a1feca088300ecac5728efe4f40d16ce59271c71760f0c404b634dc", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "de82c068ceff431e03f7147a7b5a564a829d654e0aa53c15d8707115e2d4a999", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NnN2Ys(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d1ab735771ecf0cccdc169ce7bcee364ff9490948cd1128123a9924c7f3d0a64", + "regex": "(?i)^https?\\:\\/\\/hotlistedclips\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "44185ea55640268f6aabcf09aa2970847472a58acfd1b3abb7bae7042f8eaa9a", + "regex": "." + }, + { + "hash": "5b32bf2ae8d0a5922dd958d008c8f4cf956d6eca5a6c7371f74f94e05c06bd4d", + "regex": "(?i)^https?\\:\\/\\/xn\\-\\-j1ahw\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ee16ebd67320bb5bfef73e63424cf1dc414bf71494d780f5fce6a0b8fb06270", + "regex": "." + }, + { + "hash": "f8c340c32e1b8f31b3c926170f136889f3039416e2e1f628511dc958f3e1a366", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ch\\=1\\&js\\=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\\.eyJhdWQiOiJKb2tlbiIsImV4cCI6MTczMjk1MTgyMSwiaWF0IjoxNzMyOTQ0NjIxLCJpc3MiOiJKb2tlbiIsImpzIjoxLCJqdGkiOiIzMDZhZnN0bWE1Zzhwa3B2MDgwMnVib3QiLCJuYmYiOjE3MzI5NDQ2MjEsInRzIjoxNzMyOTQ0NjIxODA4NDAzfQ\\.vRsnxTYxNWg5WWjXcHCFtQ\\-zkDfV_MFLvkskz_viujQ\\&sid\\=317cce1f\\-aedc\\-11ef\\-8bc5\\-1df48b14df8e$" + }, + { + "hash": "03e28c2e68591803eecf500af5a0d3346db330edbf6e3f5617b7e5fddfcd77c8", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c5e14b3456957f6d436ed665b618acd01247d801fc2de1d4a47b5319c84adbac", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7bbd9103a7a52b8671bcd927bb2cd525b719fed1660005579d1c8cf658d9f875", + "regex": "." + }, + { + "hash": "e0fdbbf8f7f9060ae9edc983a8687778ae248382c66e7952919ad2d0325c3f79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8ah\\?8o\\=67\\-1$" + }, + { + "hash": "6ea9e70f53598641bb36c99a2203224561f2a217f6209f1ed5f774767f0213b3", + "regex": "." + }, + { + "hash": "52ce985d3cee6b053d588bd75ea42089a4651216aa5ebea76dd9d234bdc86415", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f02591b54e6328cbf56fd14719ed17cc7803e55140a89c74d120e704dbf7cc28", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ef9151206ebeff1098fb947dde4feeeff413166aa50412b8f85a91d4bdd903ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fmicode[\\/\\\\]+code\\.php(?:\\?|$)" + }, + { + "hash": "bb251279950e063ad4a138da100e09618736150b122f60e011180e8061bf6dd3", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b04440675ac7632b39d62729f1c1802d5b55133ba4f6240d3add9effcf4ecbd0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "4478ad1f1392106432c24d22b4fc4ec1884fab8c2bb5fa2cb26d3af0b450b5a1", + "regex": "(?i)^https?\\:\\/\\/uximviyppqohlgi\\.com\\%E2\\%88\\%95uximviyppqohlgi\\%E2\\%88\\%95uximviyppqohlgi\\%E2\\%88\\%95uximviyppqohlgi\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uadmin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b8ab69e3caa4ee6313e8d8db3c9bf484d640a68d6726856164fb9bc0a06b3afa", + "regex": "(?i)^https?\\:\\/\\/topmovierental\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6f62fdaf145fe6db6ff7e5f2ad8e40848470f3bbe99ca926430091f2dd95877a", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "12a268e520a31157cdad0c7b73c88624e0e94bd57dc66cbc92a0640b47215e3e", + "regex": "(?i)^https?\\:\\/\\/shotvideoonlinexxz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0218aa2955dc7164e87ab5fbec8dc244ce1991e3657a9924889cbe4d7faa934f", + "regex": "." + }, + { + "hash": "f45670c625fac38c07b387e8ba85713af9dc6b721bb51a767399a660b15fffda", + "regex": "." + }, + { + "hash": "4c037ebaf0129c7f98b73eae6e52cf24bb2bad6fd0e07e1175943c82d3e26244", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e23697cff937fedfb34dc4c014eaa172e1808ef549bc7dbe76824a84d911f328", + "regex": "." + }, + { + "hash": "c62378e7f57c1bee588b5aa53193df9987173a809e3453dab6824e4e551f4fbb", + "regex": "." + }, + { + "hash": "1d238a7ca176e5ef104a40bcab51e991d6ccbaf6b443d428f1200bd0820919e2", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ded29ab2b405b23f218fb4ed184ea2a4d832fdb530e2c0075c97521f56b81ae7", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b34d30b43f6bf7940860406cffd2fc78ad0cda38169ab1dd6a66f8f7b52dd5bc", + "regex": "." + }, + { + "hash": "a2e52874ba0c4159eb73dbd4ee96204828c1674e7eb554e191a5aadc1b06ae3c", + "regex": "(?i)^https?\\:\\/\\/www\\.ndhcfb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6914d9a4585ae82ce5def331d7ae28bbd98370471d144bac9df8e98e7b016a61", + "regex": "(?i)^https?\\:\\/\\/instagram607\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bf5fd929f33722de9853bd97d8f8577802767787f450a777e2bc8ed0004b86a1", + "regex": "." + }, + { + "hash": "b8d1518d66cdb1b834a4c14366d1ec7179bfc4f90b3c927ca5768e601f89e8e1", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3bb887dcf7e1ada714d50756ac2d60c6b1cc0711031862bead3305431891779d", + "regex": "." + }, + { + "hash": "aa154cba9fb7ad77f25fd6e3523030302b206e00db07f0c8c578c0870030895d", + "regex": "." + }, + { + "hash": "433394e9f43307277af12fea331ebfcf44afcb1ac9c96743d6070706527a8156", + "regex": "(?i)^https?\\:\\/\\/viralrobloxx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0aa9473dcd9384969fe590ab4c1613b4ae52ca84f632c906ff3189c3851d78eb", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d79cc9ca055078acf12b17fa53802df47cfb9d0d4a601460a2b50894217042a8", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "eda51d4ecc37c1b27b55ccae19c0ba94a2b9f58d12458d080294fd52e5ebad3d", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "45a4ee3564072aee528a6689333a89b18ff66415655acddc1c44a5d0074db150", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0faefa968e870094adcb013c0049a1b270df7b68110d67c2834cbcc08b200694", + "regex": "(?i)^https?\\:\\/\\/kvssjppe\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eeb6ca5af463b89ca108ffc7c9e98caf34ee125510df19838842970b674baa62", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "eec3f85e231d4c25a386ff6d4d23a9337603847daf9b15b26f38419aa39bbceb", + "regex": "(?i)^https?\\:\\/\\/shotvideoonlinexxz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d0c5275c8186a14e476acebb42d0635a6dc63ef632b37fe146b5152a261554a2", + "regex": "(?i)^https?\\:\\/\\/pub\\-b6a1413728974f0d99ad4feb7bf59bf7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2f4fbd9d86428ac343675c03cea78a3817aa6a791ea1798250d6ef1e6134577a", + "regex": "(?i)^https?\\:\\/\\/pub\\-7ea1f0b96f6945e79131ebaef18291f7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ddc0998c52fa204467731be909ee4f1055c50ffef26e287860a80b5a02ccf945", + "regex": "." + }, + { + "hash": "022e1204df0dafeaf789b1ffabb65bd3670c59b1569e90d3160bb4b107f44bbe", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f07f88abd8a0aec9fcd1c1ba81645a4b893af9830c11edd59b101b67ee789cfa", + "regex": "(?i)^https?\\:\\/\\/shotvideoonlinexxz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "83593c239e8b6e39b78901098b46e096d0493d864a553616e732a4205703fee3", + "regex": "." + }, + { + "hash": "c684145d22893b866831f1263a249dbd868744e29e8f4d8be64b235a14be82cb", + "regex": "(?i)^https?\\:\\/\\/osxvdzbvwctzkb\\.com\\%E2\\%88\\%95osxvdzbvwctzkb\\%E2\\%88\\%95osxvdzbvwctzkb\\%E2\\%88\\%95osxvdzbvwctzkb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d0d668f15c34774e868462c69aa960a6373faa21de862d35e8df68f966ca2d7a", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "64f1f441d6edcacad8364d54783281873189519442b7450960685efb6ce133db", + "regex": "." + }, + { + "hash": "0e8cb6ebc2d01f0d35daabe9d34fb62b2a34a6f9bc7b824c8f32a4f34f60ec91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?uc0\\=23\\-9$" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "9f04afdc86b4dc746868bf6d649cf4c4c1fa0e24dc115837455e10d695a10681", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eeb60fb8fe5fb86f35ab3d5173a32adb58c86e2c899a54d28280990d15ee69fc", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4f76275c8b008099dafff67bf7339e4d90c67e6a3a7fe4f0be82d7e0ed2c8bf1", + "regex": "." + }, + { + "hash": "fa81dbe573e53db6a4bf44d6bf9884d1a4498229e707127783998f655b619167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "581617932421f2e00ea45b8bfde494e14f33a9f4917fe7b7401a2948140b1cb6", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fda1022d4ff49df9bc8c1acd156d2ee94641ae22fefb11536194b2853269ae21", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6396da3336cc8e05095870bc668891d9201aa7f3e40dbccfeaea3606319b49c9", + "regex": "(?i)^https?\\:\\/\\/junocom\\-107119\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1fbc4cd3918854565684683f9a33cd813e449418256a87ab73f3319e62658fb6", + "regex": "." + }, + { + "hash": "bbaf1cc3088deecb3901154ea339e9241abe5d89cb9ce7ac2b28d8de19418370", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "27efb62e38bc083ad5e34ad514dca5af9fa2b1540e39437a451efe8348b60e20", + "regex": "." + }, + { + "hash": "51f6f3ec0589340bef9e6c8f1813b8d172bfdc3615264aa5d035cb4b45624c8f", + "regex": "(?i)^https?\\:\\/\\/instagram607\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "57f09b308745faf04850f388c3ca312a9fc538fd4571977bfd5ffa9c8b8f9144", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bb632c598225e70dbaf08f02c8e613c269d8a017ae021029688fcbda81a3a84f", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ba0dd64064d20287a0de30cce326c29722deb95f892958c23f473064ceeed608", + "regex": "." + }, + { + "hash": "187ec0350361bcba49533ed199a78de86c257578079d8a2667f02a8cd388e9e1", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "63cb9c77fd20ec84f9da6cb07d7b55f5137c32496fdb025a7ac397f9675560d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6132454835c468331dc2bcdef7740e07812c571ba4ebe3bea15e914e3a304273", + "regex": "." + }, + { + "hash": "e332b89cc0e23e0a40ae6d3b224f205b525ef1a11a3b9d22cc9d9be96a69e190", + "regex": "." + }, + { + "hash": "fef360849e1df9aff1731896bb930f944ac7b9ae358b6bc8c93eae158431e4f5", + "regex": "(?i)^https?\\:\\/\\/hotlistedclips\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "96c11890ca4d9de99012aa3ee4d33fce624fafcc0629cb353638399d331b9694", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-101331\\-104619\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0fefeca909f12dbeaaaa5f1f107bf0a1ebc0b1a355722730b673039d21b1668b", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "438d3e7c323a46b1855bc24e2e7957416372a983ceda3d85e832ed0d514b7c42", + "regex": "(?i)^https?\\:\\/\\/shotvideoonlinexxz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "de8eb029366693c75975b4bccf956fdf774a0bfc11ffd7c232714782427a8458", + "regex": "." + }, + { + "hash": "7cf28e6d86a32f205244598146c269048f2f334e606afca867bc886e2a8937f5", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ad7860adce703293976f87f8c2818f6d07085d5b7c7710016d9c1dde8c4af399", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+k\\?df9\\=6\\-68$" + }, + { + "hash": "254352b225144fa99ca1e632f4b6b46ed5e1718404a10a9de944af7cd1975d9a", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fb03214f5b9ef01b4a32852580e4eb7ffea3d4e17fc1c419191fbe194dbab661", + "regex": "." + }, + { + "hash": "e6e5a03745467970b4d62ab388bcc91f5f84a59ef303b9be383703fe2fb5790a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xfjypmdmhd\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "5700c5cb9d596c1280432766dc320636e9ad1988dc321c0c9dff9105ad18a7b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?72222a\\=aHR0cHM6Ly9sb2dpbi5sb2dpbi1zZWN1cmVhb2ljb25uZWN0Lm1lLz9Mb0tNQ0ljPWFIUjBjSE02THk5aGIyd3VZMjl0$" + }, + { + "hash": "7c3563f42277b94069611f837b42c20062b013b81a325306f3bc25d25891ee92", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "482443ef4c86a92196d0dd0e232c4a0ce3b073673a80a3fbcbd457375e25cce9", + "regex": "." + }, + { + "hash": "6650e9d377149da9ef235bb5c21dfc5f6ad8f6087b7fec30a07f971be36dc297", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ltltgaynwt\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "12f00f7fc5cf3c594c49d590b3a78d9706f29b7ff98a7ec5b72acf6701b243ad", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b0e53d3de6891bc7626a05e39fabe83380d018914d99d2eed389b438d77d101d", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4717ae844a67ea8281e7fcccee5e6b5a0269ea6073aa09fe5a9e76e9455e8703", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f3eb3860f1bee0011e5dcf306b28100b11c5e4fa93fa6fbb6ca81684e6b75f8b", + "regex": "(?i)^https?\\:\\/\\/hotlistedclips\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a1b5749473a53a2827070a160a33fab7d770b471644372d6d615d61a8cf755d7", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a85e454db188338ebe4782671f8017f95cfeee812fa822d326e1cb761de80a38", + "regex": "." + }, + { + "hash": "877ca26240416c91ab13ea3a5777dd7d8648b15ab3c15a0fcb22b5817a5fb837", + "regex": "(?i)^https?\\:\\/\\/bnvbnbvnvbnvbdrtg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "50d449f081055c2257bee027381078fe7665b61679a81a28b65111877749207e", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c6e3e07f47d515ddfe74acfe2e3f52f583f7326b0aa8105eb670832b77ac3bc7", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c20f34c1576883cd2ed8fb66c7ffef45405ca2e1d4def5fe993a55a384811336", + "regex": "(?i)^https?\\:\\/\\/bnvbnbvnvbnvbdrtg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1a7af7beff92cd4e88ca0a6afc6ce130358a04c84902f18b80274e127b0ce1ef", + "regex": "." + }, + { + "hash": "75622c2f95613a0d1d1279708ff57d4363ff7ab0bdc46d45acf1065c71b24c49", + "regex": "(?i)^https?\\:\\/\\/hotlistedclips\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a570dbac65d4270992661167b3d4c4d9fd7d53794b8609f203406def7ff626ba", + "regex": "(?i)^https?\\:\\/\\/bgff\\.kpwive\\.top(?:\\:(?:80|443))?[\\/\\\\]+mum(?:\\?|$)" + }, + { + "hash": "5a8012af29cdcb5700cc301ebbe525beb8c4596fc469592750f0155eb09d3460", + "regex": "." + }, + { + "hash": "9a8d48e4895f2ab7ad65da25fea52679b09d1b54ba2b878736ceaf153da2a002", + "regex": "." + }, + { + "hash": "37df68f229b7488e48a0ca84d652da039030dee0b895aa77bbb39419838bfc86", + "regex": "(?i)^https?\\:\\/\\/hotlistedclips\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eebfdb3edebe7b1ef8965836e102b28c3fc2668826d95a4ec00901bd1ac98734", + "regex": "(?i)^https?\\:\\/\\/mdfhvsd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2bd047c4447c12de76dd62b82360bff3705ee414a5257ebd2bb4b369a5b0438e", + "regex": "(?i)^https?\\:\\/\\/shotvideoonlinexxz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c25a2e375b012c6d4df8cd21094c76cf62436cb0c086dff5fa0e50d6a82fd080", + "regex": "." + }, + { + "hash": "998405b7a3e093276e3a567226d23274102a5055c2acda8e1e04f8bc1a8afdc2", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "febc9408b25546b4d7e2caa475b273437aca597e5fbc59375e1f9a109bc9d28d", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3f08cf7ab1a51ba8e56132792b00b701fcb8d3ecbb8b942a162d161c8160263c", + "regex": "." + }, + { + "hash": "ef1b9046477a889ec6cd3db34eec1f3ecef0db8e95c0ea88f34694dab4cbd0ec", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "39f283790c20a3a9f3508676a1ba3016ab5ace3d0b34a902052a69d20a41dbe2", + "regex": "." + }, + { + "hash": "aa52b3d996b87579a75105fc5f1fcb3a6520d559aa757a64345450f8880c53f9", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9fa898385339f09ddb57865a6689713bc2438b6a90323ce71497fc5b4c775687", + "regex": "(?i)^https?\\:\\/\\/viralrobloxx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f1ca7d0c68d33ecf24f33c6db95ae161f6d41780e03a80932f66e535ff2bd535", + "regex": "." + }, + { + "hash": "1c71b013f8a6e6cf737cac90bdb40a4c52bc0bcbbe60c48ae42268a6374b45ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=juehmbucb\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "1db5a91dc803839ab1f3bd0824a8b6e72ddf0d259f4aa56144adcf9082ed9ec8", + "regex": "." + }, + { + "hash": "976bb6b708154c349b2c5a5a950c3764bc80c904cdb46ef6c830025493916a7b", + "regex": "." + }, + { + "hash": "9766a2b4fc4a047ce3b253545dd973e9cae219d5bf93a4a8d84a9bc2d88183c4", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0e8cb6ebc2d01f0d35daabe9d34fb62b2a34a6f9bc7b824c8f32a4f34f60ec91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?8o\\=67\\-1$" + }, + { + "hash": "913d30d4f5956a10216ab9ebeaad6dd0fb86391210b5ad150ac3fa19ae8a7a19", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4398b6d2ecfc538872f85499843f9d269e9a30e7aad3ecb92ff560a8f932f45e", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "37bfb7c8514fca92047c47ff43556d41fe388d2ff7527636650833697613ec7e", + "regex": "." + }, + { + "hash": "c9279d9f5f271cfe8759a037e52e5628b555b6f423b72e8462b8a8b2fe64e518", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9182[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "36e43854400b8ca409c6473f067528f7284d7a32c1e89e7b0d77b43671b11c04", + "regex": "(?i)^https?\\:\\/\\/hotlistedclips\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a1d6b6aa8f10b5c622bd062efd3f30443104febac7a1b5b9cdb795928b038256", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "8c2b9ed4b948cc8f2a212667b6e9fe7aa2033bc7e14f4ac801ccdf96828f3bbc", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6b4587652e504246a8d495d8cb205d218a88f0aa86131c3603b667eda49fa476", + "regex": "(?i)^https?\\:\\/\\/instagram607\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "314cad982705fc1e0373b7cab599717a1173e537c738aa9b012a275f4c141f04", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2d38b524dd6d28c9c9a7b14bef626e9d3fbb3cd69156ee83dbd22de947ba7986", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "5173f53cec1ab905b3fcf2779cc404b16577a5477d176aa77193bc4898bcb2b9", + "regex": "." + }, + { + "hash": "6461cd09038a35df9ccaf740005a353dd7e1937215b27cc5560f8de69560d765", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sharedfiles[\\/\\\\]+filedetails(?:\\?|$)" + }, + { + "hash": "6bff4202fc8829b699dc7d126d5acaadfc602671b959732427ca4bd82552e23f", + "regex": "." + }, + { + "hash": "54645105d3c994cefff176aabcf7af23d0682b56dbcc6a2f56dfd934c5a7cf58", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4f4292f161eb08982f472b97208816762fffeb55d6ef640dc00d3212ae96d833", + "regex": "(?i)^https?\\:\\/\\/bnvbnbvnvbnvbdrtg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "417f2636eb7ab93e873b03457793b7d0750f26b9c72c0d5f3a2a02e95c0cfbd1", + "regex": "." + }, + { + "hash": "b2e48a3c149ef516f6ae3e0c470bbed5f1c217238cf5fa2f6e2eae9532e81dbc", + "regex": "(?i)^https?\\:\\/\\/instagram607\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "77d2bd1befab2aa7b7e230c7b85a11f05adc2c6bf757faf64118700435e3ee5a", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ae3c1dc58ae855df4b3432ed2bc5427892668117e2254c2bd0e66f9cb7706bea", + "regex": "." + }, + { + "hash": "b355695642162fc78c971d21b7c3bf7d0dc24eff216a5b5a8b8d0af1672401f0", + "regex": "." + }, + { + "hash": "b199d0d800cc8b74fd6c4be4cf2a942d9c6695164056f6d126dd94d8586bce45", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8ab9a73e170fdc169aeb40ede7b0d50156f28020d18081212519d0007bdf515b", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b0d5ec8e83129993af3f9550a4b592b4215bbb55484d766f7f9b6f478ba39c29", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f629d69eebca59ebcb6ef1216b0457f014e5ffefa6215a4b6005afe771321e08", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fb00486ee3b3d9a86cae1b728d3067dd84d2a1240eb61b7068c1be9c38bac47e", + "regex": "(?i)^https?\\:\\/\\/free\\-50k\\-robux\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "69a2590d2c2c5c330437df6c5813255244c7f34992169fa0e31f63b0d101ddfd", + "regex": "(?i)^https?\\:\\/\\/hotlistedclips\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "93c64b83943fa32620de974ac7a96fa1990699eae88d7944fd17592ad851af76", + "regex": "." + }, + { + "hash": "176453e66d6e35c407201b9005500ef967f0a6e8971fd046f71717972c7e6f91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b29d33e1857110c3fbf67a9865580a7c090674add79d77dd69eb733abaafed36", + "regex": "." + }, + { + "hash": "27281fef01ab68415087e9b70ec677940eded4f604ab1d6e098446ea6346408c", + "regex": "." + }, + { + "hash": "df0c64b6b6496582d0eddfa3b61093dcb9b75110ccde6a6eabfd422a85f4b23b", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d631d8f8d7406317d3419819e82e172bcbedc77d3f0768776216257c3866f9d0", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "74067382fb90e3340cab92cf406f532e9258223d97a54f91bf424c0e8c3b5623", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zxkesrc\\.com\\%E2\\%88\\%95mpkrnhsph\\%E2\\%88\\%95iwfciypfn\\%E2\\%88\\%95fncapd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=smuekl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "1e2b64a33cca56cd0c2cdd4061f7d0c6f1b12712948d648ff82840b977efbf3d", + "regex": "(?i)^https?\\:\\/\\/viralrobloxx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5826af5d76ef3f5bb2a960f06c52c01d7228bdfed2e1eae0b223297b6aa10c1d", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "10fc36ed302f8aea872a9c0baf3a3274213a5a38719ea2e2953bbac14ec63360", + "regex": "(?i)^https?\\:\\/\\/promohadiahmiegelas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c9279d9f5f271cfe8759a037e52e5628b555b6f423b72e8462b8a8b2fe64e518", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9182[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d266d18bb2f5db660ca850027b7d0a4cc5074f9305a4e2a8a6b312adbce97d4", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8474a23f40d1e3c3ae84f72d345b89faeeb7ecec99113115af0288cee98800fa", + "regex": "." + }, + { + "hash": "54ed624a2604a0b5032e5a623c267166cdccf6e59bbdf6e07cea17eb4b74c919", + "regex": "(?i)^https?\\:\\/\\/detrannegocie\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0e8cb6ebc2d01f0d35daabe9d34fb62b2a34a6f9bc7b824c8f32a4f34f60ec91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?u4x\\=120\\-32$" + }, + { + "hash": "c9279d9f5f271cfe8759a037e52e5628b555b6f423b72e8462b8a8b2fe64e518", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9182[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "14b83f10a82b4cfdb343dfaab11621deb02d914de09ff2c7092ea91d50b4dad4", + "regex": "." + }, + { + "hash": "f630a8f72c3234d74223b519f10edb1c6b3cbb903dbcc79c8edd59c7de1dd940", + "regex": "." + }, + { + "hash": "f41f572a4057f997e57d63309e038c15f22e08f37687bc6b64399831e4b1d8d5", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ec9bd5918b2629788d93cf3b0e439040a908f31a419b14868e8c18f596b7918a", + "regex": "(?i)^https?\\:\\/\\/tiktokfreecoin\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a1ab569f16eafdee2ddf82acc2be22f89f38b75a7082efcfe895df48257c5886", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoonlinexzz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "eda539f9afaa5aa6b796ab16dcf3a5ffaa75822226c61ace37bd38e7a8cc85b9", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e5986b5a99affcb9ac7af7bf9584ddfa74ec411810d6ef408379fa99b63b33f7", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0f774937af8337becb7acf621da0e9138104e808b401d5315f1c970d349ac3fb", + "regex": "(?i)^https?\\:\\/\\/hotlistedvids\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "eae7ca4665b064e11d2a93d774d4c7959f37c4e5a1e992bd11059de038e9f5eb", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "93713dc03b9854299dc4130d75b9edf8e8f76172bfd72cd3787d3080314d528e", + "regex": "." + }, + { + "hash": "7031455c77b0522a34c1983c81e76d7f4c23692e9386e00f7d75f974ddac9ab9", + "regex": "(?i)^https?\\:\\/\\/intee72393\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8bb9a9e2929c93ca65665ca8c707b6b63cdbef7dc19b13571be584e3aee6d866", + "regex": "." + }, + { + "hash": "1ee086b75e01986bb20eae9d384b51764da4dc40d73a66f45eaef4df07f1eb76", + "regex": "." + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+czo2v(?:\\?|$)" + }, + { + "hash": "0c5f7cb03ba98dde05d281117d8ac0717d703b1256f61c89d70d2bced551106e", + "regex": "(?i)^https?\\:\\/\\/zevsobironerc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f69f6c183650dd5049ec6b4e64f11a1fef4974678be631f0778d588739f16e6c", + "regex": "(?i)^https?\\:\\/\\/shuzikeghlp\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "caaa3503fc294f6a26b598a8543ab69660eb8f4982968c85bb91d9ebe65b8df5", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d16d435d4d5ece4398fea2669bb53e985438e34925be61873b886cafcb167e9d", + "regex": "(?i)^https?\\:\\/\\/intee72393\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1f217211ea9e18a1308b25c06c1d60c145ca5ba78221a954ee356346a5af8d63", + "regex": "(?i)^https?\\:\\/\\/hawsslamakkk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e290ff69cbe233b2f9dd93649e1611aa296a57c7ec076a9447a20030a2030b60", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2a1932aa230144ac702b1a3836afe91b4da4cfcb45c55f4d397fd15b380a01a4", + "regex": "." + }, + { + "hash": "7062a02bbaa67610fd48e8038cfe74dcaef329db5ba0d0251f8e4ab7065e2c9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api[\\/\\\\]+tj\\?type\\=start\\&hi\\=1732962672$" + }, + { + "hash": "236e5cf35a9a094a45e270f7fa066a2e6ae3649c1c1f711eac83f733910f6640", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "33929820dbf00e95626e55899710304806462c0c7ffb3d2f2c8e781d4723906b", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4c4ec47c3939ffc27629d58c6995e806e541812eff1a5644754e0b359c51e57a", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "64400dbefa025de4868c730e2beaee9e428516b50ff40900f3ec49dd27a76a00", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7cf35445d192ec4a606d880bf65561aed0306a8cf592b7f327145c49f8b8e452", + "regex": "(?i)^https?\\:\\/\\/bwjwbnyt\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d569492b492b11fcc47b75e12f6c5d29a27c5d81933bdce459846c6e219f603", + "regex": "(?i)^https?\\:\\/\\/iamzadrotgrkuut\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0f30ea90afeb4e02109905e708f3e0cc15e341d88ed249facaf5926f113db3a8", + "regex": "." + }, + { + "hash": "a1b30e7cbcb4868320aeb0251f8fe25d66632cbb9c4458e3a2ca80ce02e9a1bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d3f0f4f7e3a1626b64eebc92169e2add1ee528813ebad635db6999e3ed8afab", + "regex": "(?i)^https?\\:\\/\\/hafslaamakkk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "36db386c9b0009ae5a79b5866bd5fda343c5e25431a1b738c9d97a1efa4633db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "55063831c1a946cbb8ec7c2b445a0058e9734df7151573e9af2e8ce930d69cef", + "regex": "(?i)^https?\\:\\/\\/intee72393\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "813ce2d147fa7a99e24bcd0468f036f31a702b1cb7bc0689bca72e9c8d4b3343", + "regex": "." + }, + { + "hash": "785255bb0dd40d57078689ef6e9f4d93f0616c0383a4d981c07b4c4eb6c42f56", + "regex": "." + }, + { + "hash": "547a33df16b9fe41da9c30289bfdf35b857f8f48ab60bedd6b8bac01c28441e2", + "regex": "(?i)^https?\\:\\/\\/04321c\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7618bdaa3ba6a1ada4904f2178eba1abe69f7a33b6671ab471757e15b9bfde32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+voluum[\\/\\\\]+241540f2\\-b3bf\\-400f\\-a7cf\\-15af5d028dc8[\\/\\\\]+2(?:\\?|$)" + }, + { + "hash": "35afe9bfa2984dd2dd4dd6ab870bf5947ddab51d5f3f2c04b1cce0a4e385f3df", + "regex": "(?i)^https?\\:\\/\\/meltandyleommumcu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3315fa42043bc08b506533bdd836676d255bb444323afbe1d69023a7977f462b", + "regex": "." + }, + { + "hash": "8613ccf9559480adf0d701bb2b2c6076c6c1429da18ed7a6c69c0957ca0ce7ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nd\\.zip(?:\\?|$)" + }, + { + "hash": "ae6e3c3816664c02d642938a780a1f30aab94f018c57b7ea4c01d108dffcb3ae", + "regex": "." + }, + { + "hash": "a124955f1866cb27c413d1c6edc866556a66a2363fada1706f5b0b8a2e7ed06e", + "regex": "." + }, + { + "hash": "9e5980f8a4fc13cf52a33302972a0a5eae5f68e1b03572f9f8d83d79abe3327d", + "regex": "(?i)^https?\\:\\/\\/vccrg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "12721aaa005b31c50fbc7ceaae443745c339e2897f45a6194ec06f0711a248f0", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5268f4a53e363152d1a7d5521bb42f24887212a89b8169d1b469e6853850c28f", + "regex": "." + }, + { + "hash": "eee7a39635fabe08e9aff341092b16642449858697f02e976da7d9fa8cb69311", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "61e07482e29f026f0858fb76ed18802650058c0aedc23619a79cbc678237d6ff", + "regex": "." + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "4cd9405afa560a2e469424bd85ac154966eff66257eeb3fb1f9a63319021f9b2", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e7c54f751e347964b3fe2b375d3a42e830a32b87c498388dec2eb5bae93b6833", + "regex": "." + }, + { + "hash": "d6a7502b0c54188e9498f540e6bf78fb029cf9eb9c06173dcc365ea6ad3fdfe1", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f26c2a526f025e5e4b20af474ef811c7415ad2be44ec2f16370fcaffe5a59a9f", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5772f596b5889a6ca78f1b73df70d6d56943e35f5780a2ea5775631a4814b56c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "a7d0f4099bdccd71f0874c54fd305c8da170bc0237f7b052f0b3566158b346ca", + "regex": "(?i)^https?\\:\\/\\/hawsslamakkk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "12166ee2c26b5ebbdc42fc41adc71d46f62ec56def0a5faaa78310d245d12098", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9b9e98c847e2c5f4bb422ce8fb5eb95eb77b4a0e3c35301eda05d08478f43eff", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "95c84cae17b99cb02e582ec76ecdf867a7a1463e38b97f1534d8029e0e542552", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9003[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "6c7049e201f72c6a6373ea39ed622cf69e5006e43caaaa42760328de7743ce9b", + "regex": "(?i)^https?\\:\\/\\/hawsslamakkk\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8b874f907468eeb5cee5c46f86f8e2582f7a914cf744379ed2816d1f9522b995", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f822eb2ff6db404d21ebacdfe82d7ba8d7121d27c7310b9f6444c99d0dcf6181", + "regex": "(?i)^https?\\:\\/\\/iamzadrotgrkuut\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "deb96829b980c8a550e1b416fa88dfc94a070895514e10bb97c90274878adf6a", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7a3ab135f667959b3675e09ad3f8987525cc799a77d49a4d7f0e327f8e1bad45", + "regex": "(?i)^https?\\:\\/\\/official\\-coinbase\\-pr0\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "17db414a47334cce2e20c1ec6637db0f1f1283951533a853407d8bdf9d284453", + "regex": "(?i)^https?\\:\\/\\/vietnam45895\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "957a121c155a5e7de3901a3c7ce547ce23f99e66d371acdbd061b9e73d76a4c1", + "regex": "." + }, + { + "hash": "a284faad88623956a7e4dd89789f0a00e06c2bb1c07304ab9b52bc957a5d52f6", + "regex": "(?i)^https?\\:\\/\\/hafslaamakkk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7d20e2a03596e04c953360be87c99175c07a3e71ade8c6c97d0a1e2ef7c1cf64", + "regex": "(?i)^https?\\:\\/\\/vccrg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6eae022d5828d7f754110e2334df6c5e94b0e9cd3bc2f1591ae970d9a3175d6c", + "regex": "(?i)^https?\\:\\/\\/ee365666\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5fa2a1d3932b23a824ea367c7cee81d43e5da5585a3c449d33389ee2d7b18ef9", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3eceac120c46de0e80b65958bb3b7311a92871ca18c1366ef098d293bd228c7b", + "regex": "." + }, + { + "hash": "7760e96435c097fae6af587be776bd1c5b33f4df16c1939d0854d84bc1590cd1", + "regex": "(?i)^https?\\:\\/\\/jio\\-phone\\-shop\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "09a25dec96ff99128d8de1ef9075a26e8f0f3120ff3571c12c28d318bc3a422e", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7af6841d7423914cdd0b89d2af1557624bc1aaccfbb17adbc353ac3e20af003e", + "regex": "(?i)^https?\\:\\/\\/hawsslamakkk\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bcb0236173bba03fab658f674e0b16a054bd07288567734a943542c345225a00", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a70095b5946f82bc4ef10aeb0af7b66ccf0526416e04ee4d7ee15d42ab215dae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe05e546ce97f61239bc822a6620ad18fbb74241d741851fa79155a4661c1caa", + "regex": "." + }, + { + "hash": "c957e1260cdfacdab612b0abdeb941fd9bae182339a99e9a4e6ca4ede8765a13", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+4ijay7(?:\\?|$)" + }, + { + "hash": "97c63d86e9ef5c835462e2f3e83b4905a2037f052fe0ca16e6b2d888c9df3f24", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2401b8a47a0b6eaecfa1dc29154834372a8cdcfc30a17e7e6cd44559b3b21a2d", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e8e09f7f8333397a68b055516b0ac1cfbfe606ece3b335152ae6cf0076ffc15b", + "regex": "(?i)^https?\\:\\/\\/themaxditroybenditoxh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "26b4015552e9376da351b18f72e578d38c3aaba0d94bea0676e83164d6267b95", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9c8e0fbfafa4041a384c072f1693004218b69a9fb24eb68fe2cc072785a8201e", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e8fd3ea661f8605cec5dc65bd7f2cee4d760d3b9659d11b25a8fee2677205651", + "regex": "(?i)^https?\\:\\/\\/jio\\-phone\\-shop\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a74c832e20934b91ed671cb575b824125e133c959bcc4f65ee9c2cbda1c21", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "eab2a1b306ca8f0546dd90d6a51768baf6c67281a33aab70c3038caafb6a808a", + "regex": "." + }, + { + "hash": "65a8cf4f98d336a87b5de2dd4026c26cb1b0342a1c11dcf678d0b0a7016d66e7", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f4b5927358dd77832cbba99d92d8ea3f0d6551c282f3ddc04bab48835725164e", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3cd8e8252cdd2201fe0ad335f8b9a47ab50b2c3357f41e774bf3635681d31e2c", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9096b3ddc607af133fe02e1bf8993dbf79c68d14b2a1072afcf0b1af04390820", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8aecda3ee4d1c36f45ffd938ad2110357c9da331f614da13977ec7959cad86de", + "regex": "(?i)^https?\\:\\/\\/hafslaamakkk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1ae641aa966810e96cf33dde28e8fdfa490f23a96689d81e7b6c229d858e5", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7789367003966b64711b2d6a17b4306eeb41e6677e7872af9815029801ada992", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bb7de5e805759e4b36477e3e8b79b9c894f5175115eee2def928aeeb26c2de43", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e588f652c7811c64ffb7bf0215eacee806504d9a5b8c3d2c76a96f134173467f", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9190ba434bc9c260154f776530234c3c18844825b54b1412ba5a5887c5567377", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4af4068b81b10ccc024c71292de187fdc132bc425ef5100e52a705d72851a943", + "regex": "(?i)^https?\\:\\/\\/vietnam45895\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c5d33adfcee3c181ac213ff6024981bdc1c8408ba84c734c36ba56f1314a12b7", + "regex": "(?i)^https?\\:\\/\\/jio\\-phone\\-shop\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3d2cd73fcd36c308b2611a0e7fc157214f681c13642149823e32a63dd2d27b9e", + "regex": "." + }, + { + "hash": "27d09c1cfa488be0024f8b75c88aad658dc3ed0a2dd83ee9688a13ef08b98be7", + "regex": "(?i)^https?\\:\\/\\/vietnam45895\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "94fcdbb06a0d6defdc0743793ec41a24923a7ce6d736abadbd6a13ddd622c6e0", + "regex": "(?i)^https?\\:\\/\\/pub\\-00fa504636494c2c94d82d51cb605044\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "df8f0eb2a388beab5a405cff98115d75d8e014cb2f71da975f106c4a99bece18", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8b967ce2eee58d664a4f7b60613366de682e0709179af5aa77effe3683159357", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1b0c309790c9ff8585dda7d61558c00c56daca2003b2c7e0cf5f512d60a3ba14", + "regex": "(?i)^https?\\:\\/\\/jio\\-phone\\-shop\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e20fab49d2dac45f21e34307f843b6e8e8cef46d561bc702e57700da2f91d7bf", + "regex": "(?i)^https?\\:\\/\\/haddahlamakkk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ee1f05a8e1957196093b37391cec06feb7ef67b38559085607caea9235a59a7c", + "regex": "(?i)^https?\\:\\/\\/shuzikeghlp\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+$" + }, + { + "hash": "b18f3fedaa68adec4c53eec5ef38bf68a0e751c9a96e6f790de1ed7276517336", + "regex": "(?i)^https?\\:\\/\\/themaxditroybenditoxh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7ccf92f6565220db9e9fb2efff574cddad8a5c5b72509eabad15f9cb0df90a7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "6a30ce699d8e57eef74a9d8cc47772bfe2a45d405bf797c09a7225257968b3cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "80300166caba35f3754532e9a880b3e15698ab0d30de80a44ccbc52f15523e28", + "regex": "(?i)^https?\\:\\/\\/iamzadrotgrkuut\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4b27d4e8ec52e2be6b921e6dffbdf08efceda55587277f00d98d8eb0f8fdb544", + "regex": "(?i)^https?\\:\\/\\/pub\\-0c8d8dd8aec84e5a88aaccbcaaa637be\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4d460610826b5604d195af9b07078d2ea6ce38b50181f8cc5881e1e1e92e540e", + "regex": "." + }, + { + "hash": "6b893ac3dbfa664e0fd3c508ac9b0add6cf00c7e2d40d0fecf0e8354947d9f50", + "regex": "(?i)^https?\\:\\/\\/m\\-auth\\-coinbsepr0logl\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "184a2491aab755aca7f0d0d46fa4a8c803f42b590b2c066804ce4e2c897b7fd2", + "regex": "(?i)^https?\\:\\/\\/intee72393\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "12166ee2c26b5ebbdc42fc41adc71d46f62ec56def0a5faaa78310d245d12098", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "12166ee2c26b5ebbdc42fc41adc71d46f62ec56def0a5faaa78310d245d12098", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f3067bb1b4838baf82666b2c9b3dcefdc166f113f95b968ee815aa486cb769d4", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7618bdaa3ba6a1ada4904f2178eba1abe69f7a33b6671ab471757e15b9bfde32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+voluum[\\/\\\\]+241540f2\\-b3bf\\-400f\\-a7cf\\-15af5d028dc8(?:\\?|$)" + }, + { + "hash": "72578df8c81ca06d74ef5993b812c89a253e9cf747e217a52abf3949fbd2cad7", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1bf419fb1b907085fb9d1b696b1cbb651f936576209bf50a4c46ebc75555ee9f", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e1fa1c358636aa78911fe6fad9ac1b09b24033cd28ea815c24137c7c8eeecac1", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dd018c3ece92acd98262bee59df94eefa6b949e8a1a3a9b3c666539cf7ba9213", + "regex": "." + }, + { + "hash": "4d13d304964ea982220c0ca3aa996face2d24fe496be8658d167a00767df223d", + "regex": "(?i)^https?\\:\\/\\/zevsobironerc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e8845f8da42c5d659c20e9d8ec87745a43a0d17dbb2dcf4caff06481d0e7568b", + "regex": "(?i)^https?\\:\\/\\/hawsslamakkk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f4b5040d3cfcb40cf94be5f51ba6dabbc58fb2b7d046877431f20d43382914fe", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7dcb2ba08c91ed50c8a920f3029b6d091083e26898138541c043ecbbd9790413", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b5ab1556b7fdd464f182297c4ec647507950dd6975d640513f48ef6f8d673399", + "regex": "." + }, + { + "hash": "0013c81f8ea76471794bf30fa8a36c12b3696f3b27f615516e51689168583d47", + "regex": "(?i)^https?\\:\\/\\/qcydvkzk\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d064727175d69d010d949496bffcd1f91518e446e3a72135f29ce3e692d50a5e", + "regex": "(?i)^https?\\:\\/\\/vietnam45895\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "559b667f8e5c0442449c1976c0123f452eaea235a3c653e15d88ce0ab982e551", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a31cae47af6ea56acee5ca626c13dc304f031ff27d7be47ea58cccc309b37c37", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cddbae229d5bd656f798b6fc4ea7f90b96c560fd07bf317c3d0274d98e065f0a", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a70095b5946f82bc4ef10aeb0af7b66ccf0526416e04ee4d7ee15d42ab215dae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ff822926e14be01ff7dd0666782668ac0e1a9eb66b2301ebd05f14e35ec9c9c1", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8c8de7ec83574478c641e5ab2389d11f63fb7c2d549adaa4727f3b1ee607f512", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "061b27b276dea6adeab513cae15daa295aedadbd0146c5d31ee578b20900accd", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b1fba7c919089603081454e325233f587feb5e29a73c5321605dbcfea2ebb", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7e8ab9612c2de184f349011b786e0d005c523de10ba3cf1e38f4a72786f7ed45", + "regex": "(?i)^https?\\:\\/\\/jio\\-phone\\-shop\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "581eea60f4a79b2ff715dccf0ecf81e9ea9bede95e488bb9726c324582923724", + "regex": "." + }, + { + "hash": "baf8602ecbb61adfd9d44c795d3a82a189a01fe25c3e705880553e32ddc61c47", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "89c0367574a595db37df80232fac01faab59638d4489cd208c8762fc35378fe1", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "44e0416e54d171f689deaf64eac10018ad644d87df96081620c62319194d12f4", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1750ff84c7e357140848a37264bdefc08f0f8ef24709a42706b74e8e696d14ff", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "031ed38a56f9d6583c25d73b4235f07c7cb98b43c28ed454c28f662a6bd65f2b", + "regex": "(?i)^https?\\:\\/\\/vccrg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8d234e7d1bba5473a5e9688be344ba48c83f7eb4afc4f8e23d3180d6be50021c", + "regex": "(?i)^https?\\:\\/\\/zevsobironerc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "367eef040b6136f36cf78bb9df95df5ef53c53a3b172f082f37cfff0a3c3e66f", + "regex": "." + }, + { + "hash": "4a57efea8078281cd59829a36f0ecf0cf3e7359ff555a571f4c2fe3100c8a672", + "regex": "(?i)^https?\\:\\/\\/mail\\.16\\-170\\-140\\-65\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "230ce3adeadb7e76e9149b0df0663f38ed35b4b5e44a198251800df57f44d604", + "regex": "." + }, + { + "hash": "a70095b5946f82bc4ef10aeb0af7b66ccf0526416e04ee4d7ee15d42ab215dae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "1b32bb6f51369cb1071522fd172d8dd7d9c4088461cc80b4d377ae3845ef6c9c", + "regex": "(?i)^https?\\:\\/\\/shuzikeghlp\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f8327de478be4e50621b60eff2b834246b82458fa676ed8459bba7fe7b26881b", + "regex": "(?i)^https?\\:\\/\\/hawsslamakkk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3930bd9d842625805760163ebc28486587575d7310b567e18b9b744df63138f1", + "regex": "." + }, + { + "hash": "411256c320de6520ec51136dae69b3f65b069957cf919468271fc5792bcd3941", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c2bf524ef3405b6ad1e35949171aeadc5099646ad73c55c58bf53c80be907497", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a70095b5946f82bc4ef10aeb0af7b66ccf0526416e04ee4d7ee15d42ab215dae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6004[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "a8b895da4be53057fda6ad96ac1a0ee4690c8148f44091d6266f91ac54cd2480", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "852e33ac5e71caaf765999a5761e8c6897d55a4e6f0e5a11ee9ebc07b1d6c6c7", + "regex": "." + }, + { + "hash": "b34c0c33939b1222c8387e88935f45c068cc747e3596ddfd60f84dd0a6e286ea", + "regex": "." + }, + { + "hash": "3bd13e0460b2139a8bd4ede5b92e771a114d36134c1fc5a975bb9533119a0da7", + "regex": "(?i)^https?\\:\\/\\/meltandyleommumcu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "752bd9e7ebfaff2e9e680b855959980b48b158ba8be40aefd41910c60d5dbb9b", + "regex": "(?i)^https?\\:\\/\\/intee72393\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "45c505a05048caf998b072b5d96eba14d7f6898c05d6d7f05a78b852e7cbfe08", + "regex": "(?i)^https?\\:\\/\\/vietnam45895\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3d5eae2a33e8a4613568d88bc7ac9f40b8e31372a91b4a75690f89d5ef2a8f2b", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5ac655d7677ceca48c6ab021bbc98f97d94e40d697924f7145eb206ac700fbfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hmy7p33n(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3e723acb11c91629b342c50cac23e8c32e263ad672f8ea467e9a626393dbd7aa", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3be34c078648b994b7604d299091e68bac20152c33a90c5eb96dd466a1f85913", + "regex": "(?i)^https?\\:\\/\\/pub\\-1337dae00aed4f02a3f3c6656bc0eb6f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d9f0c9fe1e87a816e67e3b00b21b7a30a4517f1982d71c9d0ce5a4e76cd3fdca", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "098f9ddfcc12616b96371ad045915e021920e01e48b24bf2d58ee039a58705ce", + "regex": "." + }, + { + "hash": "d0cc496b28196b526d4812bbebfdf76dfa1a78e5ee49727db721a03e481c2901", + "regex": "(?i)^https?\\:\\/\\/meltandyleommumcu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2b0dc2c3827f9f24f08f59e29ca8e8264bff00f51863ebe8c76725b595880f5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=c42354\\&l\\=Mining[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info[\\/\\\\]+info$" + }, + { + "hash": "a10eefd02e831e88939022983b5b40cc5eca2b6e35be1da58ffc0227d895b3fb", + "regex": "(?i)^https?\\:\\/\\/iamzadrotgrkuut\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "71c3e95cf5006bc6246ce1f38c8b26ba8bcbdfa2d31410dda8437814ad7bf2ac", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "95c84cae17b99cb02e582ec76ecdf867a7a1463e38b97f1534d8029e0e542552", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9003[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "302ed49eea121aa76189c1039a00a67b8eea7a9f2398e502779cdd542bb39f53", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6b7cb978dd790d6150bbdc83f61a2e6b3ee6d0eea279194ff7c01b3acc4f413b", + "regex": "." + }, + { + "hash": "84e1b3bce64e9873ef777135cbb0a6a6d892d9677c5dbc5ecd646898ec33ed82", + "regex": "(?i)^https?\\:\\/\\/shuzikeghlp\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5c02d81dd826c33a213cabdb8e3681e2248e2df254a865761b25504a54ad3ab8", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "05b4b7c35a8485f7f446e3dfc3da660cfc9b4b23d2bade64836d733e681c9a23", + "regex": "(?i)^https?\\:\\/\\/iamzadrotgrkuut\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0eaa459f01eee7f735140e557232c099783920689f104791b7a5051adb37b", + "regex": "(?i)^https?\\:\\/\\/iamzadrotgrkuut\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8432555585b0381a1ad3b5a89b588b9e340ca8360bca47fe653d3d50685bacfd", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3f59b5bfab63101ccc2f1c8e484b7571107c76bde637390a69d0b89acc2e7b4c", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "92ffff5b381960aa99804ff16885eb86224a56971f0b4e04bd0a942d2ee94322", + "regex": "(?i)^https?\\:\\/\\/themaxditroybenditoxh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e18ad8b7ee27ba1530ef70b569d08c2835c7f4bda904d7279f4c4f20c16b6e01", + "regex": "(?i)^https?\\:\\/\\/hawsslamakkk\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5536e7074646a541851df87a971a9caa4e9c3d5acf4254da2a5e8b315100460d", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a4d4d35cd0483b5f00cd1c6b2ddaa93a534041852b94e782df1c425c7fa42d9e", + "regex": "(?i)^https?\\:\\/\\/haddahlamakkk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b7169b65b151e2101807517609da8046ebc7f8bd074216ffd0f91852d746bd4c", + "regex": "(?i)^https?\\:\\/\\/hotlistedvids\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "95c84cae17b99cb02e582ec76ecdf867a7a1463e38b97f1534d8029e0e542552", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9003[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "55379a5c3300207909bd1ea5ffc930e22e9c7aeb1c716368bd18bee928f88e03", + "regex": "(?i)^https?\\:\\/\\/hafslaamakkk\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "04968a25c4b0be1f2ada38287f9055be92ce8af3c52ba05b3b6e33c426eee84d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "658d3451eb296a511f418b839e83f3128c1ce7f9db6721acd61aa5bdc1d6c579", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7bbe0c9fc0d82f16e7f4486c63a8122de2e6466f53975c9267c5ccfb42c35b02", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "55d879f6d71503a0950c747706b017728bd8023c226e0d53c5dfebef24ea9cae", + "regex": "." + }, + { + "hash": "efa2efaa7b7e24ee1c1e5745f00f7ca45fd89ae70451b4441a9660f0b782ed78", + "regex": "(?i)^https?\\:\\/\\/trustwalletogin\\.w3spaces\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4f572fcaa8fad08cdd94faf86d35684812693bda9fcda4ac6c387ad9d8e362cb", + "regex": "(?i)^https?\\:\\/\\/intee72393\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "290279ba6d9a8ef21d9280ffdd1d57877c83749f2381ed301c45e681276a75d2", + "regex": "(?i)^https?\\:\\/\\/www\\.159\\-223\\-135\\-149\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "602036b36ce05af38ea8e17d69ee2471aa9b9b160eabb82727c2474d4ee7f0b8", + "regex": "." + }, + { + "hash": "fa2ba9b48f596b206b4f53fc6eb367c8569d2564a607ae7a97281811550910e6", + "regex": "(?i)^https?\\:\\/\\/meltandyleommumcu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6e81209929bd691a4e3c327cbe0794396b9e9930cf6a6f92b0fdb17919103801", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d10614331d5ca0f6b5fe2c24502668031f4246a6b8fc7f8d001a9247b98f1aee", + "regex": "." + }, + { + "hash": "f069f067dbd2169b89fe87a6259cf35222c37499fc7511d4be11764ecc4bd94f", + "regex": "(?i)^https?\\:\\/\\/intee72393\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cce15361d3571305592a6f0d5a274552950cbaeca8b4112cbb3de185b39bfdd5", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cd5bf7727698b4516342e792a57051749d6ce7a5fb19d5ae5e516b9e04d773c1", + "regex": "(?i)^https?\\:\\/\\/meltandyleommumcu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ba4d76fa6672ad4104732bde6799d10720a357deda042c34464f651f720f4b84", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "209034e7c7f5ed687fe549b485916be2777508074e48ba0aec9cbc6e2e854a7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.luigimarzo\\.it\\%2Fwp\\-admin\\%2Fcss\\%2Fanti\\.php[\\/\\\\]+1[\\/\\\\]+0109019345f57b14\\-fbf27ecb\\-a870\\-4c9a\\-bdb0\\-b05ed0f1c082\\-000000[\\/\\\\]+xW7\\-_uQSHhYFeO5y4jCIMyKVszE\\=181(?:\\?|$)" + }, + { + "hash": "b69b74cb3f670962e202daf08edcd7030e0c7a46779d55802fa88eafee8c2724", + "regex": "." + }, + { + "hash": "5b636c0f02c17cf536029a5c5e533c12528a56633e79570680708f551bec9249", + "regex": "." + }, + { + "hash": "a50c179b7e89f5efc45d28b5f3d0770b10047915b4ebf7fec5d7168a02c64ed4", + "regex": "(?i)^https?\\:\\/\\/shuzikeghlp\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "729e0dd437374e04bded7cfc627787170d12f91f252c7569d09959685192e941", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "546d5172e757b90bb5205eb633436f1094d4f44b23f841bafb4832a361355ed6", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1a98b965db980cfcfff4902a0fc6733657b39113f2d33e888ce4b4f55b67805c", + "regex": "." + }, + { + "hash": "0958b16b0b7d1bc74bb63e26c45a7f0381939843b44f48d022a0143b37d07b09", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ce3daa4d9a700a1e2417b4bcd3a14d6b8fae4f55fe36986cb6314b1f276f78a7", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bm84d9(?:\\?|$)" + }, + { + "hash": "bd8868a5fddc776690cb8e24a128133f2faffcd16336cd3a0a293336473016b5", + "regex": "." + }, + { + "hash": "9c5747d9c0bd048613badbc3168dff51acab8ce22d140695816f8d0571396058", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0a2f15f3e44c81293fca58eca6d3059fb2f5c790ce6b16bfc5ce8ddce6395ed4", + "regex": "(?i)^https?\\:\\/\\/hafslaamakkk\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1dd8531b3062cbf1f49851f67623e48b301ef9fd7d011c01ae84d6239eb2cbda", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "19828d569b598514cc958106a480d65f9ad300e470383d6e74fe4617f0bd8b8f", + "regex": "(?i)^https?\\:\\/\\/zevsobironerc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ea709b78eab977c9fd5d4d36e5fab1d3822f1dd0b3e1373e83c6a18c4029e68f", + "regex": "(?i)^https?\\:\\/\\/service23\\-108369\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6e70d6e151edb0af6160b8a7d156ec138c881d5a9534deae3c89cb15e100caa4", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6921bb744a1def80bb67fd9c975efb0221cb5a0cefd0d91ffb8b8647336c93af", + "regex": "." + }, + { + "hash": "3cdd4274297a5d3c44e694114cfd3773f028d6ab31c682b849cc4bf289e2cd9f", + "regex": "(?i)^https?\\:\\/\\/hotlistedvids\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8e64327144a917de134062456df33fd4b82749d1c25316bb4d998622c3d31be0", + "regex": "." + }, + { + "hash": "bd4a2ec87954a702e705d2139455f1d2b65c11dbe5b3fff4aec58479f34cda08", + "regex": "." + }, + { + "hash": "a9941c9a03c7d3a8feadf3aafe70adb918ebf17d893f837bc2d6f64ae22f445d", + "regex": "(?i)^https?\\:\\/\\/pub\\-8f17fe00277644ee81c8527fe62c7b7c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f572493da984d097a58e4278b317c6638f1e0cf7b6ec00ec62c83f0d50454f8d", + "regex": "." + }, + { + "hash": "a03d93aed1cf5b16c4147cf3dcb86f7efc6c0fb64efee31061c341967a1920ee", + "regex": "(?i)^https?\\:\\/\\/shuzikeghlp\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0c01046de0f8b2a93de0f06fed60980b3c8f6cc1ba7a2c720fc1e3f459f8562b", + "regex": "." + }, + { + "hash": "56a5d440ff8c9e695aa6eefbc0641f9f211eb0d962fefb3104b619748203923c", + "regex": "(?i)^https?\\:\\/\\/meltandyleommumcu\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8712c99a33ce5506d9d919aeed94b46cad7a4c366abda60680aa79f239358c93", + "regex": "(?i)^https?\\:\\/\\/jio\\-phone\\-shop\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c9551f1c3f5162a40d9cbe8435f5b375cc4befa594de44364818264c1a79e3d5", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a385a8799de012c8473c49538ad38b61275986d9cfa7759a1d7429ca5fcef8f6", + "regex": "(?i)^https?\\:\\/\\/jio\\-phone\\-shop\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cb57bead51ddeaeaf52f6565b7c73b36fb6302cd8ab3c6986f6a1b23418254ac", + "regex": "." + }, + { + "hash": "5ce4a3b884b6e9fd2a82339355b2446a834028b02dd82539b9e868accd9b45b3", + "regex": "(?i)^https?\\:\\/\\/shuzikeghlp\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3e32f8789ea152be4e843c9702ab29ffe5fa6410c21f8f4fe341d6de99edb427", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "36db386c9b0009ae5a79b5866bd5fda343c5e25431a1b738c9d97a1efa4633db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "4eb81c0f21719c10dd90fef3c42ab1c89c39f6cbdfa59079b84a937510d68f5c", + "regex": "(?i)^https?\\:\\/\\/hawsslamakkk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c2e8139385218f8ebf0fcde9072dee80a3091295b39adf7060012c3909d56fe0", + "regex": "(?i)^https?\\:\\/\\/themaxditroybenditoxh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8e39555f105fab92b4b3473d021a70eb95985f0a579d7d8c8d8c3234f13ca9a9", + "regex": "(?i)^https?\\:\\/\\/hadvalismakkk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "49c8ee660d58637a8c86d87afecaa5971fecb7539334cf47a8bddd0a2eaa8a15", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d717d72e101c31758aa22ac44ff7aeaa84fff8243ed505bf9d7a90ca7927daeb", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "aa8fb4075049933f25f85caa75ddc384db2494889444a57f0fc377e78d415c53", + "regex": "." + }, + { + "hash": "1f4723bcbf7126daa3b0f6ce2b541fd69f780d11a59d1ce7e0fb3564e35f3f5d", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "948a61b1a5e43a1bbe182756448f8015c291fba2d8946e0e702a920bc9d19f37", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6184321568ce504d8cecd107600beb94e38be0c20f79034939f98ffde97cc10c", + "regex": "." + }, + { + "hash": "fbc1b56d983bcea2da47e3b559638ad02f47c5e5136cfd902d7aa244e203eb04", + "regex": "(?i)^https?\\:\\/\\/hafslaamakkk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "40faab3d4ce932dea1d48de3e27d81c5df2b9645494744de79bb598272cc6545", + "regex": "(?i)^https?\\:\\/\\/themaxditroybenditoxh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1714664ae692dceabe6c663ef7b868d92a1b7f1f96f8f327d723af58e945a1d9", + "regex": "." + }, + { + "hash": "fea644459841e930aa9c82156f8cd8356b78b3cf0b5a62d2acd8f304a0df136e", + "regex": "(?i)^https?\\:\\/\\/hafslaamakkk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "658d154cbecc9925072460bd34d27e2f2a98d981d3891cd925c4bcb52e93a41b", + "regex": "(?i)^https?\\:\\/\\/hotlistedvids\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3fe2c4793129b25c0f6c79da15ba14c728378629c83cef64a65a26269e422216", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1ff868870e2e413fa4593fb388392b46c048814dd6b6d59bb512b65d19bb1535", + "regex": "(?i)^https?\\:\\/\\/mail\\.159\\-223\\-135\\-149\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c5f08a5e1076c7c2af4badf3b8871a327e397bb20a1e484bf891eff3b58b1828", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+view[\\/\\\\]+merchant[\\/\\\\]+XscyNK3H1gRy[\\/\\\\]*\\?bank\\=maybank\\&country_code\\=MY$" + }, + { + "hash": "919d62368a427b7fedcfd24e613742fd91e60d5c2fff1f3183c92430876417e3", + "regex": "." + }, + { + "hash": "41f791aa9f0944f763f9bd4bba7b63e840308aebed12bcbea0e288a18f384e8c", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "43881c817e4c2e40e2949b788126aa6d89d8089bb44b86b264e7f72253460bd1", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d56e665a71547494e2cc91755873e066bbfe21aacbbeea09369d296482fca3f8", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9490133acce30057f45476b0d07f058dc8d0394ef3abc7c5701818213c42df22", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8143da59d01689b5946e4a5eacbf1aa1100b4d1d7bc97919afd6775b6f614964", + "regex": "." + }, + { + "hash": "df1ae593fc613945b953a5cf53de2f83a8dde57791bf9b6891bf9c0fefa18a0b", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8bce15147b58c2cd8f2817052dd7ec2bd65eb95a6aef9d8d18e5c69fd4241954", + "regex": "(?i)^https?\\:\\/\\/shuzikeghlp\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7c89067eb110ef8c261ffd94ffaa96e8befb761aacd8ec191cdc6a85604c3106", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?s5\\=79\\-67$" + }, + { + "hash": "aa809311633698d55a1ccd4fabb190c5ee27eda7d88f20e51abd98bd16f4a883", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "35ed73488606a2da93e2c93e270103e98c18bfa61e8e8831689368a9bf415342", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "317d4aa865a88636abf097692513093a4885ba8d93e8a574c633ea34259b195f", + "regex": "." + }, + { + "hash": "7b385c5b6c04f02abcc561ce82df2649f9eb6d1b2da6e9409cd3bbc771b67190", + "regex": "(?i)^https?\\:\\/\\/iamzadrotgrkuut\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c1a3811e9b008c94810fb07095e394d054ba46ffb39348881d3f9c21ae29ca4a", + "regex": "." + }, + { + "hash": "c9cc54fd466623d925cb757d07527c2e66d5f3bc5f8eb1c8f90a6729b24bcf1e", + "regex": "." + }, + { + "hash": "8490a83adf76ffe6119dcb01cd3e8bcf5319f7c5965924ebc29be498db5f5efb", + "regex": "." + }, + { + "hash": "77b506b77e353a32bff463f1bfef562e930d4860d6b39244ae86378493122002", + "regex": "." + }, + { + "hash": "3a9474208c1abaea1728d72389c0485254fbe7d7de14eb44fbe525751c11c120", + "regex": "(?i)^https?\\:\\/\\/meltandyleommumcu\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "367eab1e8d2ae0ce0dbc21fcf1259c02518d0ec6dbef18015036020063fd004b", + "regex": "(?i)^https?\\:\\/\\/shuzikeghlp\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "98502383f4acb4a4cb0858fe3b6cbb35f542efd55269bb8a7b3e886d617dc724", + "regex": "(?i)^https?\\:\\/\\/jio\\-phone\\-shop\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c841dc0d8f81cc6b4c54615b36829d22edf541a915f1e08637ac9111e5fc844d", + "regex": "(?i)^https?\\:\\/\\/vccrg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8c23a897be69d7e7fd41df7e829fd57f6da83ccb1d8f68d888dad0defe8bb28f", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e5c256dd7db9b02d4f37d70ad77591791577c780f776bbbd4379b93f9da21dc3", + "regex": "." + }, + { + "hash": "9c567e1afa4526c497acb84121aa803114a8197d97b26a0ee34c8bad33d6a039", + "regex": "." + }, + { + "hash": "e7df940b9841ff2bd662f9a710ef13f9b317a996d8c374b4b83502f42027ad67", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fe94588806a463a2ce2543d267dec41059ff5489eba65c90827141d5bf897bdc", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d6913c1c9d00e4cf66b706e1005ac7f41e91f0dc565cc90aca60881be5932aad", + "regex": "(?i)^https?\\:\\/\\/haddahlamakkk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "dea978e7e64486658b9bf446c7f40ed34887b04fa49e46e78cca8c5982453e2d", + "regex": "(?i)^https?\\:\\/\\/pub\\-7aacccb1dcc74364914ea11649460a33\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "18180a6421d1d9925b19ed180306ce9cf23fbec17db8a8cec7193b89d5b45e41", + "regex": "(?i)^https?\\:\\/\\/hawsslamakkk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "55a4f7a7a43d02bd8b542fcb943d953fb9f72261ce1a0e7198ee7125aea15cac", + "regex": "." + }, + { + "hash": "aae487761eba6a13f9bb13c5e6eb8263c3875cb0bb36e1a40ee3be830dc19e27", + "regex": "(?i)^https?\\:\\/\\/intee72393\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3c01dd38315cf0b7a3f056fcb6c2600698491a288c67362f1cbb941b9279dbd5", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "42e821ff60f5cb2d3a038a25a04728ece7f3e6294a4bfcc99787596d72f452bc", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "36f9f3c52a78174e3cb6f7cc804c494e386bc01d7b2ef076c5731b4342eb7720", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "03a265ccd7ce6794ceff7b347ac9bdaa45e29431fbf2eb239e65e6c1c72003b2", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5b1517c9a1f3b2af6f3a318d8963861c1b48e7646a4c76f613f2ef42e4685758", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f62e89b4a166f635ac240db92a49f00e137f26a6b1bddc0673f08d538cff6ad6", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0cfa99cfd2187909cb912f766d58ea9a53a094483078bdfb03eef663745b3f39", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "95c84cae17b99cb02e582ec76ecdf867a7a1463e38b97f1534d8029e0e542552", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9003[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b32392836d51740c75c70ba7b962412e9fb9a23b66ed227b9d1dbab36b3a768", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a925358de96f2f4f1a7c86ea11b4d936289f14a95c90e238ed0701f48c27a122", + "regex": "." + }, + { + "hash": "308d6e8f3100c9b6007afc9aff5909dd0da95524bde37b2488be2bb5673c84d6", + "regex": "." + }, + { + "hash": "7aaccae17bbc231a0dd8559eac691df750f6b51c979c63a6acfcfff135100164", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d0cc3d6121dfa862eb1be74c614a49323996f381161e0704f85cb2869b4d050c", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e187216851ed84aaf48a092710be620b94d1ca51b319174389e6b444b43e4695", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7a6793b09acff0ab6063ebdd6ceb08340e227ff8a01047fb2fa023e8cd78a2bd", + "regex": "(?i)^https?\\:\\/\\/hafslaamakkk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c602913477b0c2b1145bdbddf8cfdb064f2b1b621be9c0c3f35caecac46d9832", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "03e060e623f7dc8954f70ba917af12a0d532292cba3393120bb2cd8bcda13614", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7ea0d8f7db703c8a302a73e895f5884caa965157eb2d3ff8e3a2d7b260bb229e", + "regex": "." + }, + { + "hash": "877f530e641bf7d0c350eb85930332f15b93cc22e85e66d88347702672fdfa68", + "regex": "(?i)^https?\\:\\/\\/zevsobironerc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "536cc9a7db8873d4447fce3f6bd0fc24bc76e36fd584b4866a6bdc86aa02cf94", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b15ee18b10e65c82f8aa18af9f40834a8c8a8e45ebe23a126806f39b3c442a43", + "regex": "." + }, + { + "hash": "af84a249c4a83cbc94ae28fb102f394c36ca553d6ccf82c84d4a22110b5b7f6a", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7c89067eb110ef8c261ffd94ffaa96e8befb761aacd8ec191cdc6a85604c3106", + "regex": "(?i)^https?\\:\\/\\/up\\.maple\\-light\\.top(?:\\:(?:80|443))?[\\/\\\\]+in(?:\\?|$)" + }, + { + "hash": "e26621c457ecf8e4094f97438a74cbdca197780ffb7208aab687569c509d55cf", + "regex": "(?i)^https?\\:\\/\\/intee72393\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f67b499e438ae2ce99065a3780cfc906aa0b9aea1f93c2d97576f26c0cd91f5e", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "697b9ccabf4f5d263e1c614f20dfb504f8bb4ae1771a67398e5f23c00fb36633", + "regex": "(?i)^https?\\:\\/\\/rtugy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5309ebcf580c9a9f8200cc71e5f483ecb29f8c049ed66d34c7c9cd470e8052d4", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9e99d1a3015ff40363b45e4088ded7586e515d200715237be7791139d30f0d48", + "regex": "(?i)^https?\\:\\/\\/metaskhromsext\\-1\\.gitbook\\.io(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "afa322401551ab777522f52e0f99f939b34b32cf2c058046057f84c6173a34c1", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "01564c0d948ed836f713163137703ae39c586d73219c56a05b16bf774f174188", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "71c6d0f25b8b0cce5640ab4fa6e1796363d403839d11dca2b9fc36ac3b6f94b1", + "regex": "." + }, + { + "hash": "c33a48f69787f7cf859a07676c8801b38ff1bc59d26977e3028da0af8f67bd21", + "regex": "(?i)^https?\\:\\/\\/inete782322\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0b7a2303acdfe3e3fe45b8f981b0499dd78d7d999dd13ed7d86836e2903d1001", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "450283b76df188c623babaec326799cad8793932be0d4737200c388eb7073f35", + "regex": "(?i)^https?\\:\\/\\/xxl18\\-tube9\\-videos\\-xxx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "29429c2e92498391448215c273c42d4c6dc591604a0b26aa69d3838d0a32a67f", + "regex": "." + }, + { + "hash": "14c6e213ace3f97da9073396f13cc146847ae026bb59ebf8d292f058b32bec80", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "67c49d3fd641a66232e201683a1c8d41427203f44a60d2d72ec697aeead29fa8", + "regex": "(?i)^https?\\:\\/\\/venoyxikbvazi\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e8ce18a7471a91d9b45154b2eab666b9869fd084d2d1f4a568fbd3294132f7a5", + "regex": "(?i)^https?\\:\\/\\/iwanticanhgvqu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6ff229692d2256452f9e6d122c2a2776e4a031d879c132be2e819e870c393066", + "regex": "(?i)^https?\\:\\/\\/vietnam45895\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6fa2d0212cdc14da5f3c4428390b3c59e309fa5a1685ba0e6ed0fa86db5354ed", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e4ced7691e007f8423fa473111a8f6bb408116cee596b6abc56fe0a243013f13", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "49917b7fd0e63a5203b87b0214ff4f73e12d139be58fae9c5309de5a5094d528", + "regex": "(?i)^https?\\:\\/\\/zvdsere\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c76e826cdc1675a17cf31bd80a630a3566db015cd49081a583ee37b9328e6c51", + "regex": "(?i)^https?\\:\\/\\/vietnam45895\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "42d8d27259c070608849c5ba184defcb628c7eaf7729eb159e612c75a9b0f272", + "regex": "(?i)^https?\\:\\/\\/hotlistedvids\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "74b051a676d601bb163ac4180f9a5ee2191229e8542e8b85ec1a7446355c31e3", + "regex": "(?i)^https?\\:\\/\\/hafslaamakkk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e9411929d952e30f8cbd9b23c52f99d1748230a3a730059bb88fc86264f8e6b4", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "44df2c8d6377aa0361a9f3132c40bb09d39ed219420e056a809d27d58772fc6f", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3fc0023adaf83045ade498a9a0350e9b16cca1ccc8a811a7fa801d4928c33804", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cb562c825507527cbc78912eac6a9b072aa0830dbec2f9c5ebd0cfb8d2026100", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "236e3116612210cbc15a7cc3e449323ba9392164e5cd24a6a262ff32f10a8800", + "regex": "(?i)^https?\\:\\/\\/haddahlamakkk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e000d5607b3a07ea53269f2c2ec7b1dadd5f36caabe022de0269ca8f5668d70e", + "regex": "(?i)^https?\\:\\/\\/meltandyleommumcu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e5588d51e6cc6bdaad515e9b4355a45f8c540700e07632350dbaa997614dce35", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4dc658ff317247477a5c3c41e006cd5f949c6da07ad2021fbae5bd1b3db9ca31", + "regex": "(?i)^https?\\:\\/\\/hadabnallmakkk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "10a19e468d535db9eea008b1114b5693af813ceadfa7a87892b2df053a5158e4", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vrg6y(?:\\?|$)" + }, + { + "hash": "5d22467e3f354e6d116f6462bb1356d2b3b86da4deb424d635f647369c1a2766", + "regex": "(?i)^https?\\:\\/\\/themaxditroybenditoxh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8479d5058f321850408248c6f02efad076b25e98459fca1eaefa3f36227db22e", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "411b62607b50e0df634c32221b6ff6ccb96267bd08b6dcd562f308f65df66e91", + "regex": "(?i)^https?\\:\\/\\/iamzadrotgrkuut\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ec1c74067a1eeac960cbc63badc2f3cbd613c20b0de6042e7d0c4dd553de9155", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "26a99310095b4c53f2739cb1740b7db0ef3097ac28cd28715f1ae5f7564468dc", + "regex": "(?i)^https?\\:\\/\\/videodeligh15ps\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6a79ae9c457d2cc94306f47f42f1d201c1ef45291070d99d02fbea86ec0e3054", + "regex": "." + }, + { + "hash": "86dd2239dd5c7feea53ec98553631f6c6a93393c4eb19d4269029bdb23cac688", + "regex": "." + }, + { + "hash": "6819e0455527a8182afe8c47a09bc7e8892d0ef9bdb170730384da17cc5b3119", + "regex": "(?i)^https?\\:\\/\\/iamzadrotgrkuut\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d61488b44361175932ffe6c4f4d8a91f10796d7d674f0635fe740e0a30b8340d", + "regex": "(?i)^https?\\:\\/\\/zevsobironerc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4222be3775b4ae08de5cd40ba5dda1599bd8f1fd07e734de9608f8e218771c98", + "regex": "(?i)^https?\\:\\/\\/jio\\-phone\\-shop\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "78540bd2e8513865548a1746cf8ba5928f4cd2c2191f321b269be76786cdb187", + "regex": "(?i)^https?\\:\\/\\/themaxditroybenditoxh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ef57e6432640b84620d85b30179ec94072cae6844a7120915bf0e75ba2fb3cc0", + "regex": "(?i)^https?\\:\\/\\/xcvxcd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "12166ee2c26b5ebbdc42fc41adc71d46f62ec56def0a5faaa78310d245d12098", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8000[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "f7e47707e20e253e807faabe116abb188ef2ea636300ac0601d27ad0758c7611", + "regex": "(?i)^https?\\:\\/\\/zdxfbfx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9908f061f75ea766ae80f88f04a4c1a247658d4df92ddd1c69f198bb062aa544", + "regex": "." + }, + { + "hash": "414183ba62ddc80eeec922a4331cd153480fc31f9ee8ee260fd2f952276ec9ae", + "regex": "." + }, + { + "hash": "e754d6df3b860cc112c8983f4f1d763c51aecf1dd2537de1395ac45b5d5c8a73", + "regex": "(?i)^https?\\:\\/\\/gaazhzatta\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "87ded84b8c3edbb0a5975ddb144adc8a8f94587d64d31108bcb4306cdf09848d", + "regex": "(?i)^https?\\:\\/\\/vccrg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1d8c74213c1b307aba096ab2e45c345888adb01cf0af424a51f1e21d67b43899", + "regex": "(?i)^https?\\:\\/\\/zevsobironerc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "45c81b6e8c1f84225731085d1e7badcc974d687b611650a2eac270d8c0bba7c8", + "regex": "(?i)^https?\\:\\/\\/frizytavtu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e77f2714ee59d2717b9bc49be3b9866de4c32e642a1a82d15aecc996e0f3e6f6", + "regex": "(?i)^https?\\:\\/\\/redhotjamvideo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6a06cdc763dce4578d9669bb29513ae8cf6887b8d1b4835ce7cfb4161f9ef3a7", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "92037782ed899e087697707144220c6a136f6e564daf2e69c6821c6482aa5d23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "fc5ecfe31c500b5bebbc4c80e8daa86c8511aff841b37bcfc1e77a74567456a3", + "regex": "." + }, + { + "hash": "bb86c77b640c7d24de14aad2de67a48a1bb6e613fa090321343afa580fead974", + "regex": "." + }, + { + "hash": "f0d4a93614cd3d80a0a3ec42c565af36baaf7fcf4e34810a83bca6729ed26060", + "regex": "." + }, + { + "hash": "c1e9ffd6e01a681d54ddceeb6551b87a710a315a44603996b12bb867b253042a", + "regex": "." + }, + { + "hash": "caaa23ba23a387d9bb67879a30a5e53d3d88e5393175ddf1e9aded91ac403842", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-globe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b98a53e31910d952bd689b9e2a03c55ce83bb0faac3fb96a82516ad5def04305", + "regex": "(?i)^https?\\:\\/\\/xvideohot\\-tonight\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6a4dbb118129b658e6849567944d55d6e6bbc226d75c6aa03e76426ad7170db4", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-lust\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "dc77ce460d466e4c869447ea4b4632c741beccfbac55498d0798dac0ddc8bfd7", + "regex": "(?i)^https?\\:\\/\\/clipviralhot\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3a0841fa1fbf125c30617884f0e4aa7fee7a720bdc50a11bd1819fd5c9f32769", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-lust\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "92037782ed899e087697707144220c6a136f6e564daf2e69c6821c6482aa5d23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "1a2926a1dc2e8d24aeaa2215ac24adf57fdeb42d078805b2eb8d22267ae99cf2", + "regex": "." + }, + { + "hash": "75341d203eb18d9b790d299c7b3d633c65cd43f474f5ee8bb7d441e9c3d9de16", + "regex": "(?i)^https?\\:\\/\\/clipviralhot\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "618f8c87b6a412da25d8690ff1506659233f47ffa8180143f73d75f7cd7acde7", + "regex": "(?i)^https?\\:\\/\\/cliphotviral\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a2ff82b443ae207f7bc80555023c1d47381f86230b73fa8679527d2e5c92d8ad", + "regex": "(?i)^https?\\:\\/\\/free\\-5712762\\.webadorsite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "476035e1a11064ec9c390429b25c16ae850a219bdbac472f4d470168d5bff5e1", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "962fcca33603af496317435024be5c446eef5600dd9d5b301099100fb12da23a", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fbd0a57aef65a9fd53b8b2beeccb474c7d52d3e22135bd2f52565cbdfbbb285b", + "regex": "." + }, + { + "hash": "6e87e09d0ed78628731cd85e088da3ab1c04f515880eaea7414f7987b89a2187", + "regex": "(?i)^https?\\:\\/\\/cliphotviral\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "68f5b5553b14f02ba8d13cae88b24f1e8b5af4373a6aec389a97cb283ba00861", + "regex": "." + }, + { + "hash": "9cf318483c95a697c30a86a044cd5dc234039f63037a34973a89b5c220cdba76", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ledger\\%202\\.zip" + }, + { + "hash": "a0836b9574735018738b9c1696d5a00c552593823fa0a9eb97b5affc91fc097a", + "regex": "." + }, + { + "hash": "79fde672443eaa2f7aa916a3793d212d7275ea9715c95c68e38b1f65dbd981bf", + "regex": "." + }, + { + "hash": "339c45d5916add736059736d54579c29bf8f600c45236c1c1eacc7b4a2ce36e9", + "regex": "." + }, + { + "hash": "550f76ebaadd59f8326e910e55325c84f77c75c90e18bbe595335da3b271f563", + "regex": "(?i)^https?\\:\\/\\/serviceclientnickelfrance\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d7d0b11402b1749c74a5569de92602f7fb5c3b4ba4a0a3b297c34ccf1564905e", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-lust\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ede07755db316cc796aa32ac54e004dfefeb049c8f09f4d656ae5435471d3b6c", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2bdxaw(?:\\?|$)" + }, + { + "hash": "ad1b960b3858ded69d913f3792b38f1608f372d9f9dba5cea2ce2104834b5c51", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c1efce4b3836c936699bfaad5ac5a729a2b969a5d6c4bd688e5a2ce5757cfc2b", + "regex": "." + }, + { + "hash": "ae995e228405f376c85b285d6f250ebd7bbf5f6e9898794d02f3080a29d5cce8", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7eadcc5704246fd0452a39a19b127f274eb2aed3cbb0d01d2f3983ecff667fdc", + "regex": "(?i)^https?\\:\\/\\/hot\\-trend\\-clip\\-naba\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9dcd6695f625fc185d517b9059b93a99d06c77320d1bce5824b03c62201c61b9", + "regex": "(?i)^https?\\:\\/\\/clipviralhot\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d4c5788726f44714e59d6d190d20f2b35d834a4fd417fa63cd9a16688dcfb619", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e77f8c4e8b2072f8baea1c30fd00351569fac900c2fdd070bef9acf4a79c04f9", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "925b6b0d8ec9df6a27865f4ddc0f73614eeccce2e2a803d10e7384c95f150a6b", + "regex": "(?i)^https?\\:\\/\\/clipviralhot\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "83f85cfded9a5c9b24c7cbe59eb3f2d0462adf1f98a280bc7212fce09569f8cd", + "regex": "(?i)^https?\\:\\/\\/hot\\-trend\\-clip\\-naba\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7bea03c3b2b451e33f69b5027e165063933eb2748b718d1e34d003bc3bd0cfe4", + "regex": "(?i)^https?\\:\\/\\/heidarobzdat\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1e9b43d63225391db5df3414e40d52b8235e4f45672cc7c0cd0752e9bf11ba24", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b8aebcb4457a67be33537c75c18206ac65d8aff14ae8fde1cc276031c89c589b", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7a37b152b1d4652cc79a09fcaeb9075e7fe8703f5661b69cafaa43fd4d55e3a5", + "regex": "." + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cpf6x(?:\\?|$)" + }, + { + "hash": "7f0d05f5f3c66a65d62b584c9369d6655fab93115e68788eea459323d5ac5328", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "be36f8835c9c7c48e82edc9e77919fc37b6271eb0b97a6408d29dbd0e15900e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+orl[\\/\\\\]+accountx" + }, + { + "hash": "13508977a28a401d5f657f3daac0179d6f8151b2fe7e03dce41dbe6bb2d61fb0", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4f42e533f662b849f0515ce1b221ff7b2b63fc692cab2cb95be1e937ab286c8f", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-globe\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fac6d0e0213af1538c16b094ceecf103128395387257c3ddefadc0d58e593103", + "regex": "(?i)^https?\\:\\/\\/cliphotviral\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5c12711fcf229cc0bab1097fb9795daf445df4909bfc530b62c791f6ffe63762", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cd4d66e3b2b37d2e8f5cd4c9783405ab4f55eaadc398d5ff7f88c51b1d832745", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3bef646148f773e22d7853289e9301c850a4dbcc8012cb90d36cbba9441cb07d", + "regex": "(?i)^https?\\:\\/\\/redhotjamvideo\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4d84da1d10572ce01537cc54c365585da83ed52acb2868925b0f62cd30bf00f1", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "91518dcf4a492e8316a6d968cae9c308bf8b2b13bfedf8af18b2e596154f7e34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9183[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cdee0a9e7076905dfb36aadde4ceff5932abb9238aa1648b1175b6b3bdbf4b89", + "regex": "(?i)^https?\\:\\/\\/heidarobzdat\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "bd88f750df83f8c4171dc8325f9c3f77014bcc9c62efd64204b4f10510d3c02f", + "regex": "." + }, + { + "hash": "81e414b2e233ed1ccea679e23ead8dbb003cd88fb69049ffa30d2fd68ecb3c7e", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-globe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "dbe144dced66cb4d50c73db7eab962d48d7ec6dcef63ca44d986e6d9b3421cc0", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-lust\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "22276f332033209bcba76a4cbb878968a0b3302012d9d9c954896cc68e44c663", + "regex": "(?i)^https?\\:\\/\\/xvideohot\\-tonight\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7e9edd50503a44e1b0303ba00643de98af3fa3b8ff32fa784c27fc8c216d4dbd", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "83faf1c0660e5aa153986f383a2608d18cf53e3c79727e04b9e23db319625689", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b0ac9900e1afdcb75ce2cecf15f5c39600839347982c9c42bd3decd7432f21d1", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "758f360b0979c5eefeb7cdf2936d853d1b12510f97ed0f102a037fa71098d660", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0ec12e5a472b5180b05ba94112a77099188b2b987a03a966471f887f0f4fa646", + "regex": "(?i)^https?\\:\\/\\/serviceclientnickelfrance\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0c9436bf72adb31a318dd952540ecb3267fe66a72cbd5118857a3bf32c1f5c34", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "96ba2b686377d51fc6522ca3ea916ddf96cc67bf75fb9628d1bfca9fca08da80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+111582\\-b3663e[\\/\\\\]+checkouts[\\/\\\\]+b3663ee0bda248d0fd817ee0333ec201\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=1895436\\&task_auth\\=ef7547de129a6223dd3eb7f4590661c5$" + }, + { + "hash": "5fa9ab225935241a3ce73a140bfbe0ef41e0a3f5bc181c813a850aba65a5f499", + "regex": "(?i)^https?\\:\\/\\/amazon\\.hgvhjrtkid\\.com\\%E2\\%88\\%95rhktlt\\%E2\\%88\\%95kavdsxs\\%E2\\%88\\%95gexqbs\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ytqqhpcse\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d7ff5e586517d6ade9ade833a6607bac084ffbdb01792b403343d45d5b7f5fcc", + "regex": "." + }, + { + "hash": "953dbedc3ddf792ee22a2d5b754e2630ddf9c52c906f92e7381f139346fd98f1", + "regex": "(?i)^https?\\:\\/\\/webmailupdate\\-100429\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7a28b970320270efe5cfc3a21c80de62136b0403d12af1fd21ce80a61ad57e70", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-risk\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "789bf9a5e58a454c13eb83e7a5bb889f5715f36a4eaa6e5f79c8b23ae11ab6af", + "regex": "(?i)^https?\\:\\/\\/serviceclientnickelfrance\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "efcb7b4aa9353b434a80ee925ccae9560d9ad5e3a24d50f7096a21042ac2b59c", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-risk\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "31572e37fd74e0f7eba8267a029ade2be1faf4cfd6298369dc7f82498120b520", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "247254ef6ada94181e7e4dc83c3a21d35b7c8700370db17e1bffba85421ee28b", + "regex": "(?i)^https?\\:\\/\\/hot\\-trend\\-clip\\-naba\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "490f858886df03c4f06c4961f6fe0cc750aa202003e9ff29d440a0920a1ef419", + "regex": "(?i)^https?\\:\\/\\/serviceclientnickelfrance\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1a8dbcba492eef298dea945107ae3676b63a03ebfbfd7a6ae7adc667ddadbbcb", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-lust\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b80e04b551ad66819f328041e98516893c295ccfae6bea91e744de9e3a3e557e", + "regex": "." + }, + { + "hash": "10b98baaa82333d2d8e2b2e46791e7a2a57420987eea8085473bf72e600cd654", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-risk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ecbea966cb06cd19baa3e3cf78f20b9bea73209ac20bd5a18aa9a293c6b46981", + "regex": "(?i)^https?\\:\\/\\/xvideohot\\-tonight\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "19e049679dd98f57eb261b43d9568b6785200d01e9a063c5d6961881bb97a79f", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "92037782ed899e087697707144220c6a136f6e564daf2e69c6821c6482aa5d23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9c5d74c8784e8d10b2cec1ac05848731efaeca8b35905d5a289ba73cac4ea29d", + "regex": "." + }, + { + "hash": "3fe2003aacb14b95bcf6e7fa44d961860e0cfb3bb73ed76c45a302c9e8906ccf", + "regex": "." + }, + { + "hash": "7e43a656c5214215626d0f15c65c8d82cfa047b5cbfcc3fbcc93973791e9d128", + "regex": "(?i)^https?\\:\\/\\/redhotjamvideo\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f68a4d0775d882e991d1675255c12fa4858deca87fb8aeb7f1f165412d351851", + "regex": "." + }, + { + "hash": "e1ef6004b55ff471036fe70de18b41370a4c0227f3725d9dc5ef94e8d7d2d77a", + "regex": "(?i)^https?\\:\\/\\/qqxavpsz\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "42bcdf0a35b0fa3d4e4c5f56c46674515fc29396b1f5ae36b585468d55215605", + "regex": "(?i)^https?\\:\\/\\/clipviralhot\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cceb1fb45271c77ee3f20de58f39af7e0f73ef79af583956943825e9072a2319", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+DOOM_The_Dark_Ages[\\/\\\\]+2246340(?:\\?|$)" + }, + { + "hash": "667b996ab9ad56dd2389b58d5585d98ef0c192b0e42c6f116c149ea5bd37db8a", + "regex": "." + }, + { + "hash": "0f5e6ed362d50deee0b085a5f6693ce4fdadc15ff20d8af3e313e9ec53034e19", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cf4903e6b4fb79c768887904f8139576b2d2763ba450599b6acbedd6fb28d31e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ulykhge\\.com\\%25E2\\%2588\\%2595njahkol\\%25E2\\%2588\\%2595tpzui\\%25E2\\%2588\\%2595meoakvkg\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gykfl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d13385fa19aec7a9313aa2e66dbdfb0640af5acfbf06c5902027339860f1dd3", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-globe\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0fccc559c3c39b0a0885f7b324d502b11e88aab3487958874345bed06739efe4", + "regex": "." + }, + { + "hash": "29425bf2557938ef99643869b90ed549810704e894ed2afab00649ab17195169", + "regex": "." + }, + { + "hash": "4429ca1544e71154cd2187d47df4b1570283d4c61ac04eb366ccffa747a1e5de", + "regex": "." + }, + { + "hash": "1e50be89fe6a9bc1a542f769c23ebcea1922b642fdc45328602909b770212d42", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b6c1e08d7ffc990ea3581c90a84a25a0072d484285cfc5f17f3c8987dd8f1180", + "regex": "(?i)^https?\\:\\/\\/hot\\-trend\\-clip\\-naba\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fe1740ad120f9ea0f7fcbbc8505e3a5407c9728c1e5dce086d006bcc345d0e26", + "regex": "." + }, + { + "hash": "d972aeec7e82eb2f5d7f63ea079dd3b6ff2a4f9fa063742d847821bd69e8f581", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f4a8597068840a29491ee32edb805dfe89ee8a38690bbc2e460d04cc6b09cdab", + "regex": "(?i)^https?\\:\\/\\/heidarobzdat\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a3e3e03d6afa5e7fc3c193ec6aa3a700d4e487bb4230d99f0fe80e9f84ade235", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "adebe683580ad76be30664b033da1f39e01cdee4d5e560e2145a91d5dc5d4f72", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-risk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "29e1155b81ae8d51e137209099538ed79f028d37ce841cdf19fc191eb70de1e5", + "regex": "." + }, + { + "hash": "946f6964d5197b8305cc64047543387b3aeceaab7a62f6a030351e6fe8aca1d2", + "regex": "." + }, + { + "hash": "91518dcf4a492e8316a6d968cae9c308bf8b2b13bfedf8af18b2e596154f7e34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9183[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "35af042afb711cbb4a9f54088a937617c7f6a561e2f0eb3b286dc2f62c9c8743", + "regex": "(?i)^https?\\:\\/\\/xvideohot\\-tonight\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1cf11c228941481b4a0e67c86b3619768f5615a68f7b7a25706319df3008f991", + "regex": "." + }, + { + "hash": "ef9eff94520ff5d2596c6a65a5c65542e33cad5560dccaf454a1ee5d35e1b34f", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-globe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "45e714d93cdb50320ecba731dbefda08e91ae8f703a2f0c8b5f6c6990e3ab502", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c720a3b849c6246addf02a4217f141a58e41f4b5893bc927b0107c4c3f4bc131", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fe23a3dd5727c3b8333eba95f48897d578461332680db35c8bc54368e6dcd178", + "regex": "." + }, + { + "hash": "d7423440b75fb1aef21a220432f7bd0d759ebcb6c0d31f3bfd83e19519c25b02", + "regex": "." + }, + { + "hash": "ca4bf4228eb2e87193e85c70e57b525c1b3e23c895d9c5a4937f7c106d4b3215", + "regex": "(?i)^https?\\:\\/\\/xvideohot\\-tonight\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "85d9ccf52d5e9b3aa2c3d0cdd1c86172203a9fcc72589208fea5482698203ab2", + "regex": "." + }, + { + "hash": "155b89a20f1afea9d7d109897dbcd4d99bb60d85ac5eea7c65e53e6721f8d739", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0503efdd59ce009ac6a61c8b4521edf43488f0cd1ee10f8d94df93dfe319b87a", + "regex": "(?i)^https?\\:\\/\\/xvideohot\\-tonight\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "178b45cdeae194f76b07cc6341d475f3cbd5ed4c2c8a8adb85a12d70a4e28c40", + "regex": "(?i)^https?\\:\\/\\/heidarobzdat\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3f16de69ede229f1fc47cfdcd76f1aff6b3cce9f1ecc7dc1601fbf3ce4b410cf", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d9d93f32a0ba26e2cc4ffc513b95fb72037e59b2585df305d3d663b7d750b9dc", + "regex": "." + }, + { + "hash": "6920307fb16c11f05adc55d6c436ddbd5f68d4a30dc283807784fc54256cf321", + "regex": "(?i)^https?\\:\\/\\/serviceclientnickelfrance\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ab49517b51eb9b19fa788b8497809d39a9ea1e866aa37c9c55d7cc0fdad99822", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "34a4106babc5a18d5b25e9781f2f278f3e7a9b8cfc3cd9b7a65386f8e000e1c5", + "regex": "." + }, + { + "hash": "27ce414bb65baf740fea13765e00cccf28c8c75876a7f466bf34ec5566539739", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-globe\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c25a2b843c6b022467c1944a292f7ba1e559f8e04e41bc7bc0245138611ed8ff", + "regex": "." + }, + { + "hash": "dbfc1ae6f2ba855bdc36a09c3556c331aa9a0ceb40aacc6dd2e2cba4658adc3b", + "regex": "(?i)^https?\\:\\/\\/redhotjamvideo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a2647073ec2c0cefbb3785b906fc6e0fecae32cf16ab9d436d2127ad9e0bbb6a", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "72d489f166e3a6de852468d0164429c4ca818398426d20205331185318c03d17", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-risk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c7372b443f3e088b95ec837c11020b459166fc8b8bee8237a1a9aa4b1e958665", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+S(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d3bcdc85e394d0b53fe1b13afc78c089a2b60382c9fb6c4e9441f281babb324a", + "regex": "." + }, + { + "hash": "d0c5ad5f397767e490c5fa478740eefe7380c9f2be4316d4f8270f8f1f310f5e", + "regex": "." + }, + { + "hash": "e88c27605378a6b625cf0713280097a492b780558cd24134f8ee821b9bb73b23", + "regex": "." + }, + { + "hash": "9c568b76632c99049fd7879bc43f0378f74d48cdc53e3694225bc58617017c44", + "regex": "." + }, + { + "hash": "f4d8d439dc826d2b96057b5e835377feb4ff5956e7630124a6d476a93589f161", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fe9405e4c1f01016fecd2d89352930c5130e4365fdf70fd89ed432bf50b9051f", + "regex": "(?i)^https?\\:\\/\\/cliphotviral\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8b1a1cf176a1ad419e3b8b021c9c35e823cbb12a9a5106bd7a2ef568252bd84b", + "regex": "." + }, + { + "hash": "14fbd01f278476fb20e93bed3e7a23866539002519c701edae64340758eede36", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d7e04f58e54c55e2f3de51ad8f45b4795d98aaa443df441d160977238ce7bfa6", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "32df2de649c25218acb001c3e52809bb5d84f8ef20fb5e4ab71743c4b983122b", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4235b726e9c9acbbbd6a17ec71c966a1cf83f286410c39d8ec5c55bb68d9f740", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "13efd6c79684c53bfc06c6f0e3fb9496dd26893b248e6ff2ea5985a90502cdaf", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e212be802f38a13c05826f0f678eccc3dbfe214855d0eb73a4b0d04a1dd3a492", + "regex": "(?i)^https?\\:\\/\\/heidarobzdat\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e6a829c81f214d3db11d47a1bbd1887a42fe126fa6f373381bab0b844962d", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "35126898f881e316e1004bbed906b77681c66bf3f9093388badff98c79cb8edc", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-globe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "902f484d78d8f8c8c6207b35088f22528177d8eb213ecdfa9e89abe94b924b60", + "regex": "(?i)^https?\\:\\/\\/tjxjyjwz\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a872dc9082e33249d99fed5b2f3131f304930cc5ed0174f944ec9b0a864b3584", + "regex": "." + }, + { + "hash": "c2789bc415b3a2f6e28eebddaedee5a7c1ab76c650aed0ac0ea99524ebb7eb55", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4d13061e38cee39906dd89b07517ea20879b62693c2edcb98dff9f178875d5c9", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-risk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "93a2d84497bcc8a0ff845d6c74f19219eb484ad5d40404a485fb24953e7470c3", + "regex": "(?i)^https?\\:\\/\\/cliphotviral\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "623918bc8d72011a1343fbdc2233ba0405344476036163d05527e1b451498df9", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "44c7234e69d387a3291af28da1644155d10f350c68b2457b9d0cdd1b41ce4edf", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fdf60f20efa0172ebc3838a5eefcf4567b22db46846c00c61c6b5cd2f3673efe", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bf5057951c2057dd03120c8d2568a1086f2fd62bceabf84186833bba60985d66", + "regex": "(?i)^https?\\:\\/\\/redhotjamvideo\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "00ae265fec6c8bfcc8bfa9a0641973754c308a00ceff823ec0aadcaa31021071", + "regex": "(?i)^https?\\:\\/\\/heidarobzdat\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "dd237f1108a086e62e6415fc9e2d2f7940f1027e4a7a9bfdf88d91fc99f32bea", + "regex": "." + }, + { + "hash": "f5ebdb4debd9f3b0cd5e2e202044f3cb9abf0e3aa28aab6446dbecfd8fb9b7d9", + "regex": "(?i)^https?\\:\\/\\/clipviralhot\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "67f2d2fcb74af2c87a752085ce59782126744d06d5392750e391875cfa9deb4b", + "regex": "(?i)^https?\\:\\/\\/heidarobzdat\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "59ce1394ceb72f67df70b585452ca748188e6c4208fa9716610204a8b04efebe", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cf4903e6b4fb79c768887904f8139576b2d2763ba450599b6acbedd6fb28d31e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ulykhge\\.com\\%E2\\%88\\%95njahkol\\%E2\\%88\\%95tpzui\\%E2\\%88\\%95meoakvkg\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=gykfl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7807a27707a18b4688c95685dfa90878ddcfc579cbf31db9857f861f6c4fcfeb", + "regex": "(?i)^https?\\:\\/\\/cliphotviral\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0cfdee3c97a95447dad11bb76d8e449d1860bab4ac3fd177f8262f3e7ad182c7", + "regex": "(?i)^https?\\:\\/\\/cliphotviral\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ce6db83e6ebd28ab2373eb87d41244c2b59baa3c127447a19c60ba9cb8aab737", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6fca2f8330f7526021c695c490745c1da3ab9c8617e9828be0d751a08e93e4a2", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f0d21a9fd10ef0220309cb21ed05a480a6d6f06500dd3a57090af4f51dda9601", + "regex": "(?i)^https?\\:\\/\\/serviceclientnickelfrance\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ece2fa96e62483770e4656813c9f7e504af356d33209c2442389f000c0be279d", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f08d8c14176281232678d0667e4005a7d687dcab22fc8873c5400884be1354c1", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "609cdea1415a8789ad66711776f44240c0ac6a63b4a54df153e1a600c64f7b5d", + "regex": "." + }, + { + "hash": "77892aef7f894158dc223e951eb73a95442a708ab9ee71dd86cb5a7e9fd1528b", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "103915510083644220c5a54f10585294db45ab74d0e76e4dd7c2f546388f8ac7", + "regex": "." + }, + { + "hash": "58163e24ed004d21bd6f47db5e233a0bd26c6d6fd2f6aa32a1c8c368541e4281", + "regex": "(?i)^https?\\:\\/\\/hot\\-trend\\-clip\\-naba\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "49e9cf8931980c257d8e84e0e711ffaeee76113f791bdceafb486ac05eb15d8b", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-risk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e7c08265459d01a59340b68c9b9dda396b09d4e59938404bb70a7f3a6ccdcbb0", + "regex": "." + }, + { + "hash": "6f5adb071d2240f3af6ee5514fe535d26dee7f8904354d720fe7cbf7bad4012e", + "regex": "." + }, + { + "hash": "cfde8a60b268d3ffaf381ed68a247e0dbf714088d0cce9be85d2d0b94b6e2d3e", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "92c1376454f585b071c04705fe8da6f9b8c34e572093e7e75dd4cacc9a943cf9", + "regex": "(?i)^https?\\:\\/\\/att\\-1045mail\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c3e76126f7b96e1e08d01dc760385d3d5a8a1151fd75d6e51c6be38720547f83", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobe\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2ec268e7bdfdb1a5e918defcbec4c85fd9f5f66852faf4165d2fe988844d8b7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign\\-in\\?op_token\\=kRU24SQY8MX2cvnUnw2YSvltzoKvrydyXrrbyfIiFXjaWAZ9gU6An8JyNSlhMIhYTqDOdpk2PyuhoL2LneHrvHCstbsE1nkrxzF\\&uuid\\=2337d5c4\\-79f5\\-40d9\\-a5b7\\-3dd3ee37cc2d\\&hash\\=login\\&language\\=en$" + }, + { + "hash": "d47610b25c3d7e301306135674723cfeae275876c590d2fa9a1a399c3fcd2fa4", + "regex": "(?i)^https?\\:\\/\\/clipviralhot\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "133124a67302611abd458216552eb2c8cc41ef3923c092ae15ca6c19484c035c", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bfefa53987769d97855fac4dfb5e158f658683ea8edf5ddf5a10cd692638935c", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dec4d4337efb9e4bbf131f1b4abc9b7bc60b458e965b72628b27a20d827753a4", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6a80a2743f7ee63be6ed5ef38b1f3e8f8f356a7dc94ddb9097a122f45b392360", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-globe\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ba8024df1c331e7aba86df9d41050dc4766dd779c152984a8e7b91f9c83924c9", + "regex": "(?i)^https?\\:\\/\\/cliphotviral\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "66d22784398132b866da23b6b733f0e799e6cc675f78302734d599f24a8a030c", + "regex": "." + }, + { + "hash": "1cafb64fb2909d39e9f56cc4249e6818d9abf36918055cd5ea63f6a23dcaca28", + "regex": "." + }, + { + "hash": "96ba2b686377d51fc6522ca3ea916ddf96cc67bf75fb9628d1bfca9fca08da80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email[\\/\\\\]+click\\?utm_source\\=event_newsletter\\&utm_medium\\=carts_recovery_3\\&utm_mode\\=skip_if_exists\\&task_id\\=1895436\\&task_auth\\=ef7547de129a6223dd3eb7f4590661c5\\&id\\=1895436\\&ignore_redirect\\=1\\&key\\=edb2366d33f6d93021baba7e4b06a36e\\&url\\=aHR0cHM6Ly9jaGljdmliaXQuY29tLzExMTU4Mi1iMzY2M2UvY2hlY2tvdXRzL2IzNjYzZWUwYmRhMjQ4ZDBmZDgxN2VlMDMzM2VjMjAxP3V0bV9zb3VyY2U9ZXZlbnRfbmV3c2xldHRlciZ1dG1fbWVkaXVtPWNhcnRzX3JlY292ZXJ5XzMmdXRtX21vZGU9c2tpcF9pZl9leGlzdHMmdGFza19pZD0xODk1NDM2JnRhc2tfYXV0aD1lZjc1NDdkZTEyOWE2MjIzZGQzZWI3ZjQ1OTA2NjFjNQ$" + }, + { + "hash": "9f04ea726e6a64980ad0ee616ec5f1bb0a8fc4bd762c6c4f6f8ee9bed9215ef4", + "regex": "." + }, + { + "hash": "5b28b5dcae22a6ba58375b611cc2fa433d11235b5faf78894144e71a4e81369d", + "regex": "(?i)^https?\\:\\/\\/serviceclientnickelfrance\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "052f2540fab7a5c2692d64e3f21a25828f5979eef53cbd34709d4a61ba334350", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e3fad0b65cdac874c0f0da5f4b73f7201f3eaf851ab745d87d32909b311b0bef", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e941fdc0c9c643d66b435339c655c072ca404b95b443664f4264ebdab86c89ff", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5b20b4bbabe326b0f83ec834afa6f345fcd260eee03e1f9a6af388574cf85965", + "regex": "(?i)^https?\\:\\/\\/clipviralhot\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d178e0c1c9f62142b3304d2e7019ec4d6d8f2832f86bb5c50a4f47de1abcc854", + "regex": "." + }, + { + "hash": "02da122516f4c662e77df4a02d25a36144c88f8e0ad440e22f4bdf4736908ce6", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8aa475b10bc638604292e0a5d71ab81372376125e85543c42fd7b07324b47c72", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "15ac309e86795c9c9949070c5c0f4dca6e841d0b7d40af6d83549b11c55e023c", + "regex": "(?i)^https?\\:\\/\\/heidarobzdat\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ff052ef7c174dbf5c7745378c80d95ad5f8dae646e1a10df2a931bd294005791", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "aaaf1c9cf5c6e98d5fcce9f38c63aface8caf4817aeb564bde83e9dc113b8f5f", + "regex": "." + }, + { + "hash": "e384996088977a06c650582b7d9ad60f851c50fa3f1482ed3e21487b04dd7b79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+giris\\.html(?:\\?|$)" + }, + { + "hash": "c6e6d95414f5f0e5e5aca733ded8ddde85e8c145e3a23591445bb22d202cfe62", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "eed441a516d6030617947c1b4e09e94ac9236c73ee2bfb7c9aef992a7031dada", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "799a73746d6f010809fdf3fa183a429a8408f0b5e62416ce2b7d0bc551d4d506", + "regex": "(?i)^https?\\:\\/\\/amazon\\.etfrlfhkwr\\.com\\%E2\\%88\\%95ofelw\\%E2\\%88\\%95gequk\\%E2\\%88\\%95jqcae\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=grzft\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e5c2106bfd2c0c1a31b91bcaaad735ab9d2284b71d88a9dbee521f8f098019e2", + "regex": "(?i)^https?\\:\\/\\/xvideohot\\-tonight\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "687644796a10274837027970904539110f88d44476cdf3839143fdc8cc79237f", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "040e93455328ae2ca0a28452f0c955d8615431f7762baba6926ccc9ae11aeaf6", + "regex": "(?i)^https?\\:\\/\\/hotshotvideoscandal\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "12b4f7be45e841c7d4ff9400de1de0661c3092d45f749ea50285a8b3b3d827e6", + "regex": "(?i)^https?\\:\\/\\/hotvideoglobe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1fb2c3a96638c5b1b93262ee66b72fea4951ec6659f5b447bb37bdeacb8bb456", + "regex": "(?i)^https?\\:\\/\\/tugasensnikjcxfiz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "14b5fc4af696244e778cd4a92769964ad2e5700984ef7d562b8ad125ef6f4f2f", + "regex": "(?i)^https?\\:\\/\\/serviceclientnickelfrance\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ff04f42c199875bbf46d0149ef599e76eee99ef2624b8a74e0be8e9fb3f59108", + "regex": "." + }, + { + "hash": "e9eba657abdb8b9ccbd12a97b8ac475ec09d8c42143b7edbbb0181fa575f6da4", + "regex": "(?i)^https?\\:\\/\\/redhotjamvideo\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "965002e79cd51ab0c16f8e71b778e5421108e2e5ccae368023b4520d145946fb", + "regex": "(?i)^https?\\:\\/\\/hotvideopinay\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "adecd6cc7d8bd01659257245d0b4727c5b199af469d5dbfdfe83c64959c0d2e2", + "regex": "." + }, + { + "hash": "4943cc82cb28bb9a31d8bd4f8e5bbca219908708bbde3cd2c413d4b668575658", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cpf6x\\?m\\=1$" + }, + { + "hash": "92037782ed899e087697707144220c6a136f6e564daf2e69c6821c6482aa5d23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "21cee61484e4467971f540226d43ed6cb4a79143ebbc3e233026aafbaac83c1f", + "regex": "(?i)^https?\\:\\/\\/hot\\-trend\\-clip\\-naba\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e68832feb7a77f7ce270be38991b3a4e63a15c45403858133ab387e827139db6", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-lust\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a239d6f82c5853929f414894c7c3dfcfc12fc55c72898163c7442bfbcb88df40", + "regex": "." + }, + { + "hash": "897a8f076cd7eda6c1c4069971935e7866da4bae2e84e71fa07f2bfa8200a2b9", + "regex": "(?i)^https?\\:\\/\\/hot\\-trend\\-clip\\-naba\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "52f64b45108196a4585bdecfba3aa66bc6bc4a8bbf71d245140711495507d8f5", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cf4903e6b4fb79c768887904f8139576b2d2763ba450599b6acbedd6fb28d31e", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ulykhge\\.com\\%E2\\%88\\%95njahkol\\%E2\\%88\\%95tpzui\\%E2\\%88\\%95meoakvkg\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "f5c1d4d8ba0064a0116506661c1990adbe6fe46578e8f562d3612a95bde9a318", + "regex": "." + }, + { + "hash": "6646a61b87265a3f9cc97d56296084c89f20c416b48913f1af3b5dbe0e6be7ab", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7da82843e3e6fee10ce036c5fd2ee8c159e8cb232fcddd687b39343fdac08e78", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-lust\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "28f89f27062d68c18c9159a2c7012175d0b0315d07f21de13e91a88826ab4699", + "regex": "." + }, + { + "hash": "ceb2737743e9686d3b59fc8ed0e419a3497cd6eeb996469e620e4dd876f48640", + "regex": "(?i)^https?\\:\\/\\/hotclipviral\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "39f608e19bb4f50556e33bb98eeb861f97623b5e306b98ac93a1719acbee9515", + "regex": "(?i)^https?\\:\\/\\/heidarobzdat\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "65acf9bba1197bc2ffaa3f1cfebbba53e383777802dd1b9f43dc862ab2150be2", + "regex": "." + }, + { + "hash": "8443acffb0d097fb531186af2e9cf61499217eeffd11d7b2647fc6bb5a443d6f", + "regex": "." + }, + { + "hash": "c25a2b843c6b022467c1944a292f7ba1e559f8e04e41bc7bc0245138611ed8ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "52c6605318ad545b55485a8927b8732a3786b2a107d896b6ae02f5b2d16cf2ca", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-risk\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "171489941bf7e78276c7113e2222dd550b59d047c8c9b744883f79efb9801c65", + "regex": "(?i)^https?\\:\\/\\/hotvideo4774\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0eeb8622f803f1cf5830fd961e670d0aac80e2b0426239e64e4afbc35ab6c32f", + "regex": "." + }, + { + "hash": "7165ea14e907c8213ca08f674270052a9a5888789e0dcbd03ebda6b01f1a1201", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-globe\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dc3e595cf0872cc777297fbfb32490915200b92bb9fb77787b06c6df3fb332d3", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e9d6373011607da891517a43f52c19c1a7576477042c6ae884365b86cf04ab15", + "regex": "(?i)^https?\\:\\/\\/freefireredeemcodesiteffbdhim\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5da7078aa96735d352da15cc90e4dad661c875b24139c8af15439cda975c3b75", + "regex": "(?i)^https?\\:\\/\\/hot\\-trend\\-clip\\-naba\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "246dbcc1e0b714da8dc021a07939dbdcb08c5eab1bc29a5fc53324ad22af6b49", + "regex": "(?i)^https?\\:\\/\\/shoesdealseu\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "94b64a94a3274e0779a224ab49733fb918949c3615debe508caa17842878f145", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "10b444c42f29a21d09ceffaf75b3e51214f616964f883d2a06aa4a15d86f81d0", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "af500033b0acedeae29688be9d7b49b6483ef703270ddabf241a6b227715b2de", + "regex": "(?i)^https?\\:\\/\\/6jytk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a2268520db7814a9e485a0a424113e082dfb8abd985e97301f3fccd22679711a", + "regex": "." + }, + { + "hash": "77dc991cb6012cf4fac966095e1334dc1bb99dbbf1494448ed052a5b80fae9c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0je9s(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bcd17c9a5823927ae2514ef5ca51083e3271d9b99d0d19cc87b8233260ce383c", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0542693694346c4303e802282faf64ccbba6743b725aaf839a0fa83f5c525619", + "regex": "(?i)^https?\\:\\/\\/fdngf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a4cbd65cce79968945f8777c925c54c5bd434874f401c42ebbaafa9c5342572e", + "regex": "." + }, + { + "hash": "d436d94f53c88ed6a512138506abf377e02750524a4f40494c537e3b55c60270", + "regex": "(?i)^https?\\:\\/\\/mail\\.138\\-197\\-161\\-60\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b5098ef621eed5bd050163fc607716963625532d2b20538a331903b7edd4280d", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "94b20d71d64f53d72cb4df7f6df5fbdf81883ab69813804f09853ac7fc59d472", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "957ab5846f09589e05d730c39ebc881c28088cfd00001b1937b18351ec9bfdc9", + "regex": "(?i)^https?\\:\\/\\/fdngf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2e00c9fe9d4b238e02a0123ebec2a531642bdb2ae4ea1bd4fa79bc0f96ac602e", + "regex": "(?i)^https?\\:\\/\\/translationmainpotencialdomainsaverwindows2\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2ac2eafd3c02611bd5824ce91f7756b01138244bead3b95e7878d0010f964d65", + "regex": "." + }, + { + "hash": "857de52375bdfa21a5304829c201b4c210947da4680d9d48134a20963a8a9c43", + "regex": "(?i)^https?\\:\\/\\/gmhghm\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f2dd4f6570460236fe8ba2ecc9977c98c66f314d37a9737336c780b7fc432045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+in(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "71ab898960aee714175011afe3c7f80b22da605923702920f0b920c65c7ad98b", + "regex": "(?i)^https?\\:\\/\\/evriblogsport\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d544b5c27349b3378b075f64649efef65a2697b25511b0bf3a86edcd4b9cd9c2", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8fb3e396628e4e1c8b827461bf1a4f2189f1f138f0c54421855e9eba47dee4b0", + "regex": "." + }, + { + "hash": "14c299a0f5989484f58f6eb8df2c2a94a878cc83bc9a83ca13b3017f706babc8", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "18cd04001ef46878b14b497cc20177b530c593de94e1860bda027c40463918b8", + "regex": "." + }, + { + "hash": "c0035690219a01b493a5c3ecc62825b810b905148189579181c611b9beb58d12", + "regex": "(?i)^https?\\:\\/\\/hotvideoxzc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0a49b4b79ff31813467f575a6b48e761ece604126784f04afe0a56e005f1221f", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "48228e9ea207b9471b015f037550c3f80c031cae394dccc8ffbad1895b27d669", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c5c6ac24f2faf922fc0102bd81eea89fc7eef6b63bb398dca29352728911e086", + "regex": "." + }, + { + "hash": "13bfd42ac69168e4b37993e45532a5c3e9d7d1dde02a8c57e4dff2509f8c08b4", + "regex": "(?i)^https?\\:\\/\\/evriblogsport\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "727b3a0fac07fc24bc8c3e4ba9add8577ded1ea153b65e8c7fa0c9c9a066537b", + "regex": "." + }, + { + "hash": "95e7008ecfc6ec015cc6aa79ce8730852f645dba02409b0586d61a1436c659c5", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "47a30891e8e932bdfa0b4d8e9b8a436d4d90da7f34e02f2214b6eff55679536f", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b5c954585e5e670f05dec1ed8bca8443332bdc293f45bf4f9ff76fa33fd4fe2a", + "regex": "." + }, + { + "hash": "efadbf7fb2c768e6a60bc6598bf488ea2c9151dc15f2c77ce552192fbf0d1bd6", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8d19e6e2d96598b514550f52c071e60d641b8e2f2f4de9021f29af9c105d82f9", + "regex": "." + }, + { + "hash": "8b945ae7034bdf6c9e79da8d0843aa0dd58729b02e521129a0516e52ecd3cc4b", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e3978d8068e9dbdea02ef1ecf2c1375a107785ebf2f4ccd0fc61991d9b23efd7", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "821441a2ddbca656b4f65b02fa80f69f6fafda536d7c348b359afe203f0bfeeb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+all1(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7c9ffdfa80bcba735ab864cce3d0961a0882de41e7aa00cf15908af9acbe34a4", + "regex": "." + }, + { + "hash": "4d65cd674eef0904588195b5796b146fee0411f23b81edc557a1490e7bcbeb2d", + "regex": "." + }, + { + "hash": "cf6ac0356f0a4c89a9f2f1bfefe99ad5acb8025e9571a0451daa2844f794fef0", + "regex": "." + }, + { + "hash": "f5d3217e949e0b334bc4ecaf35129ccdd65925c1e93b524841c65f36a937561e", + "regex": "(?i)^https?\\:\\/\\/evriblogsport\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "475187af003f56efcfb7d413aa490aebcabd8c591569cd9555a0c0684595003c", + "regex": "(?i)^https?\\:\\/\\/lol\\-goold\\.blogspot\\.is(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "27bb7b66be92ff12ec5bbd993b12e6e86ed756fa1594aba147115e74af1b1415", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3d0821c2ceda6f4187e4537087fb102e2f1bc6bbc126fe0d08cb445f5d1e1d5b", + "regex": "." + }, + { + "hash": "d4fa52a33768e6078a2cc06fe1e49bba217a2233bc13443ac4218a073daadae0", + "regex": "(?i)^https?\\:\\/\\/gmhghm\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "51a7d8bea70d8c8538518f8a00472bad2f4742470a240abeacd3c6ed79dd2a6a", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0fd015113fac55aec995d70792901db22f6d5e4192795718ab5d878598c9f605", + "regex": "." + }, + { + "hash": "4a5591509a10cbca8bddc4495d03dd9019b3f741ebc20b40666486caa1d94f97", + "regex": "." + }, + { + "hash": "86f2cd3a92e62c59d79114b028e613336f81b3f5a11e91df97e547c8b14ab398", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5a9ffa338f38d47cc9a3a4648399094bf0b9b766f4464eda51a5039c76745672", + "regex": "(?i)^https?\\:\\/\\/thusdeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d75e170930d869704bf3a61c432d7f602fbe0d92a46f7f6b8439a085f810802", + "regex": "(?i)^https?\\:\\/\\/lol\\-goold\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "23952f7f1467b7997a27efcd07bccafb8b40ca6e6fabd25b7682009fc8bac3c4", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7c89067eb110ef8c261ffd94ffaa96e8befb761aacd8ec191cdc6a85604c3106", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?5tv\\=31\\-19$" + }, + { + "hash": "208429e06c6a2abebc42e496981031beb6a70edfc341871484ddf9d7e5ff2ccb", + "regex": "(?i)^https?\\:\\/\\/evriblogsport\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ef0e9e47a37a313544adf023e9c6cf9c97669a84ea5161b0e2967af7049973a3", + "regex": "." + }, + { + "hash": "68b8c5980c8c0f905c97b2273bcde10601b3318275130c279e24c555ac1cf8c9", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "dec4c70cf0830b19e257b9972ebfbcbea0bad2978fabda93df1cc9a46b36ab8b", + "regex": "(?i)^https?\\:\\/\\/evriblogsport\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b25b597476451f9ced1b3e296c7b76df563a6b840e2b0b7851ea32f7e32205c9", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "25c35d91747861e0d16c86b97d4a24e5c97b2eb5251f6cabef5643ceb31d641d", + "regex": "(?i)^https?\\:\\/\\/gmhghm\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fcb6f968feb1e1f1c5a6fedf860e80ad5ea951a02a711475505cb5fc4efcd0e9", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1b9a2a664ff09cf4fd97846f4bcaa59b111e6205e74047f8674d341a3e8c40c5", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5df5788d1bf3740537c683f32bf6835ab6c695142e1a3a70db30e38da72e54a6", + "regex": "." + }, + { + "hash": "59610c9a87638833776fa2d5a1a09d836917d5805210f3f6b7908f9876d2d87f", + "regex": "." + }, + { + "hash": "04265d0c1f1472a9ca0a8aa56b7cae202fd8aa14e5a6637d20084fdd5c91e639", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "df60e73f4e61fb2cdc5cdb55de691a3d7a420a00cedb23578d5c65cb998b334d", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "68f5a0c280e345fd8c9dab7565e61be28957d61bf5522d8be4eae6f51aa9cc32", + "regex": "(?i)^https?\\:\\/\\/rajashekar616\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "236e59d8fce45d0a7681355d4e8fefc43672e341406a3a10ae68f6dbf55f9969", + "regex": "(?i)^https?\\:\\/\\/fdngf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fb1159cfe9623a5283aa21b26e330f80b15318732e8a8502556149184987eae2", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6e15fe6c720076f5312e83d04f97c46be3dfa8b37e30d1f031f5a055aa09bbc", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5e8990e53b3a2a0a1325884cb380f1b5f1d2bd179a7fa11dbdf69d30641c78f7", + "regex": "." + }, + { + "hash": "f5e20f4bd7c25a489ead138861f911cbe6974f5e22a1c3df5414111bf8aadc28", + "regex": "(?i)^https?\\:\\/\\/lol\\-goold\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "50bd6960ffc8a566ce77b04e3f6c4f9b6294f5526d1f631b3411d3fe6b93d09e", + "regex": "(?i)^https?\\:\\/\\/fdngf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7ffb19e170795d0c062999e17c153f938a020d2a6436113efcda53839d2173e1", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "32b335366809f6a41fbb12d43f9691453f468a09a8dbdc26880e07a609a182ac", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a6eb8857a1a41eadc13543f42153631099d24015944d585eaab8c51eb0225d63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gov(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7534e64267917172338d240bb9cb6591abfd515cc71db81957f4dc10cba8b273", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8eab3684bda52dbee21279e82a3bc1b92bf4aaf1817f2bcf1ccf6c0d7450c864", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efba6235c128ad4fc733e8b59ec63be954e2987280ce9770f4af6c0f61c2e728", + "regex": "(?i)^https?\\:\\/\\/lol\\-goold\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "76ed743cbd01ad705e049287054831adabbb284a368ecb76ada48292df2f682f", + "regex": "." + }, + { + "hash": "165f2feda20d88357b73364a89268609dae2e287d1867355fa2fd708cd07936f", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "77e9ae69c191e8869d478c5dc5abb68f6d49561bf45703b1642a7ba26ab457aa", + "regex": "." + }, + { + "hash": "1a9fafffa0be26cdfdbd4066e78fa3d372947f9a19dc111c8593ee2dd6c717ed", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "659e06cca62e83066a55e908dc7767c3a770df92bb2c29f9a8670a7477b3949a", + "regex": "(?i)^https?\\:\\/\\/gmhghm\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e4c1e3abb6171b6e06d694097aa63f87778a755fc57b8650747f1e814df876c4", + "regex": "." + }, + { + "hash": "b8d61c6cc01917d9a65e3cbe1527a27417a0932cb7689c93aabb57d81a63e04b", + "regex": "." + }, + { + "hash": "7a35182b81c10cafe138c0060ef1a9e8e1f20f34032f2d50df7b858cc112b941", + "regex": "(?i)^https?\\:\\/\\/hotvideoxzc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b2cd5139f129460b5ea6cca3d998fd093348b99372ba05bcefcfa0228e0c2387", + "regex": "(?i)^https?\\:\\/\\/6jytk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3a51f1aaf8daa6e41d195125793d1efdfe924355f1ea68bea4205636a587872d", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e3fcb9d15cc9149b6e0506705d458a94fe2300a84604e83d1c10c35d21d0393d", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4dc635cdc35acf8e6c71f2770e2fb882d771845252d7ab42afebd25ac0c39825", + "regex": "(?i)^https?\\:\\/\\/6jytk\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "63eac9d1e06bcba239a67ecf75762f9f542081341e150f71b8e3338c14701d1b", + "regex": "(?i)^https?\\:\\/\\/6jytk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ec5fcf5737f141ec5ffc063ab789ba49cb4012d4cd881db36017e2dd6955be5f", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6dda0dd04e5895e5d741916ed3f8b8d6f87cfa010f99148a9b43b5fa4a79c5be", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6346acb08090988d3a356b6072e58809138d4da89899d1bff5f9885d8494050e", + "regex": "(?i)^https?\\:\\/\\/hotvideoxzc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4717c2dce62e16ee0f0d354be2ceaea6c705bc44c90897bdebf237afa50afcbb", + "regex": "." + }, + { + "hash": "9c05de4aae44128793b206afc6e5e634fe95107faf720cc6d0f800b81492d61d", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c3e6fe0497e32025c6338f9385b248b0fa2319fe1c9259eb1a9f86db61ccc34c", + "regex": "." + }, + { + "hash": "957aec73935e5ac0dd56ee60f06c2a164cf32aebdd2c52bcda9ee7c6ceb69cd8", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5fe5ab50ac5e4303e1af652ab64431c8578b7a6ddc662e72cb8d86c43b247206", + "regex": "(?i)^https?\\:\\/\\/gmhghm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "09c30125124a0be93ce8c432608040b899d994f29a12c1c4ee98096ab078bb46", + "regex": "(?i)^https?\\:\\/\\/topo\\-opo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9206e24ec92b9b1d7a2d257c235ef6a5708d4bd68c5cb95d95fb2520a5af9f9a", + "regex": "(?i)^https?\\:\\/\\/lol\\-goold\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2413f60d1d09a5b737602a47aa8fb6ccc267ef95c609436bd74a96b9db9b8310", + "regex": "(?i)^https?\\:\\/\\/apple\\.coroirhx\\.com\\%25E2\\%2588\\%2595agwyclcosz\\%25E2\\%2588\\%2595ekcru\\%25E2\\%2588\\%2595sduhujwj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "476fdcf4577f8ef845cb38a4c90b8544ebc3a37191f32bc77665ebe01b2d3e0f", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1afe1c46e75dd0ae5891da3e15760f0eac24a0497f224552dc5a8a58071620b9", + "regex": "." + }, + { + "hash": "caaab6a455420894878d8da19000a35608a320db36e76f04cf9c38140ca8d032", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6c398fc30d42be82c3f88cfbf2a1c6bd9a101065590c1771187aa2dfa0d6f2b8", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cf25b15e52db5e97fa2e2d5b974c724bf494aec9605c5a24061045596568e9c6", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f8dd17d8e3e03cb103cb3339f75d372734281886f5ec47165a8c663d9e0e25d5", + "regex": "(?i)^https?\\:\\/\\/lol\\-goold\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8561077c86dba8285c8a8b2f9dbd19b5da75352de7ea7e755e60cdd0bd0efb39", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d0f8c781d709eee8b59d430ccee5d195329f8f811639caeb6e43e6774f72d393", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "edab7484cc4eb560cedf6a763f9386469b44d82cde4566bb7d9b7bac79cfe39e", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4cd88f2bbd772f41eecf45a0e2875390ff1b963bd92b3d1a29edb0ffae8ef185", + "regex": "." + }, + { + "hash": "6799fc4e3d3913f50839428757482726aa28516a736f84ad18f7a5199f51717e", + "regex": "(?i)^https?\\:\\/\\/www\\.app365b\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bdbe1ade62b493b07b367b4f742443e2329777e02848e4864234f358ff166931", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a9f1cd953d6224c2e4945516c34868f1d6b2f9c82efd7a979ebccafb60fc99e", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7a1226efd6d459035242552c40d01ea7f0b5b80988e834c4c486d344899241be", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "108cf660de790023f307042bad2a9853eb4b78dd9ff36db92b60728539b64b6d", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1535fa9a47672888087e5268ff57329f25d270c99528909c0e00f4fe8894683c", + "regex": "." + }, + { + "hash": "e4bed67ec4a91cc3427f36833e0b584feffb5d669c3a52813b32e1651c51fdd2", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6cf11ca00ff7077059d012ca423418dbc7a1b8ef9fc886b6599a38e69961f8cf", + "regex": "(?i)^https?\\:\\/\\/6jytk\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5e867af57278586ed0fd2622b692ba2ebb2ffbd79ad9f925a897703bf93d6583", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "de25f3d00e88379a16d59894df3e21ad4b159a8b17583728a84fb5c73520efdd", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nkm184rt\\.com\\%E2\\%88\\%95ccet4b92\\%E2\\%88\\%95n3ofu5r\\%E2\\%88\\%950o6qy2op\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonimail0zop5\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5e647240801b0636f5e37b28eff5e249df884b8021ae07061b88fa88bf64779", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e46d53951c8f91117e76670f2894ef59349b9e1963693a026d45cdb7bc8e3ffc", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b41f5f676c3367982578f3d14ddc43309082b5e578e40e0663578e4132c67d41", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "872859f64439be80b986b714913d8981c59c57d1b46b75b52051e464603ed783", + "regex": "." + }, + { + "hash": "c5f3abc831a9d19c4677aca4f6a48c94053cfe8d62b4615bed1943ea687394b1", + "regex": "(?i)^https?\\:\\/\\/hketollo\\.vip(?:\\:(?:80|443))?[\\/\\\\]+hk(?:\\?|$)" + }, + { + "hash": "b44fc573b05eac29ae213e9e4af325de42b261ecf66261386e6a74d97cd6d13c", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "62e1479874745d52218df20148332554dcff6300b0a836b1f6ccae57ebf5a510", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "340cc2b4e7e147f2d4d039b47a51d2fb0d6b583ed8785fab4b0a41e1acf0cc47", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "80a7c3f18179a1a7c0b0dd6ebb9c313167df17b13ec7ffb81db649be05d007ad", + "regex": "." + }, + { + "hash": "d548ec16692d122e1e7b62077ddb7714d7a1a896a9eb70e7f645041bd6d60a7f", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d3ca41c1c003bb49fc5f7ef097fff91f85354bb8ca7f31c7561b0d3d7154bfca", + "regex": "(?i)^https?\\:\\/\\/htrjhrjjt\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "022d79e0d4842b249969ad6c3248588b62d2eff2bd7cc80e77725345285a4ce5", + "regex": "(?i)^https?\\:\\/\\/6jytk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d6438d88c46bd831368cdca66027104c7fd833ce49b1ab60fa3d253baa2dd97b", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2413f60d1d09a5b737602a47aa8fb6ccc267ef95c609436bd74a96b9db9b8310", + "regex": "(?i)^https?\\:\\/\\/apple\\.coroirhx\\.com\\%25E2\\%2588\\%2595agwyclcosz\\%25E2\\%2588\\%2595ekcru\\%25E2\\%2588\\%2595sduhujwj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jjqusvjq\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "d805868b1faf96aca4381c4083a34fcfeb0e38a3d23860a71f23fa75fdd5f7d6", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "de25f3d00e88379a16d59894df3e21ad4b159a8b17583728a84fb5c73520efdd", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nkm184rt\\.com\\%E2\\%88\\%95ccet4b92\\%E2\\%88\\%95n3ofu5r\\%E2\\%88\\%950o6qy2op\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "1bfec8ba249ba16096eee169e6d125eaad08ff9df1fe0ba719c8a2d2b52d48be", + "regex": "(?i)^https?\\:\\/\\/hotvideoxzc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f65d3748647f3c763ed0a2c95dbdd265222319d3062264fb311933453f765fa6", + "regex": "." + }, + { + "hash": "6a6772201a8e0aa68049da7050772be5d94057e3067289ef667f50758f8c6f82", + "regex": "(?i)^https?\\:\\/\\/fdngf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5ede5ecd03d928240dd7b72c31139d7249e56dd28c424be15c643bae656ed590", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5cdd3baea992aaad91bb1c7d1ac30999fd599f645b1d4120f1906baa1f3caa41", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bd9874e71fba7a58bbc6020285a9695f191d6c69cf4b76d419452eb19e092a28", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f96e90dc2927613b3bbbc122be49222fc622d3a13c944703f28df6fd41daf204", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b5ffda3dfbd2f1ce132a8312a04b777d97ff9fed7a12bc9a3ef1b3503b1bc5da", + "regex": "(?i)^https?\\:\\/\\/hotvideoxzc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "50ca6e4ca4df41104e9aa39b0d9e1b2008aacee40b3e3d4f0421dbeac34237b7", + "regex": "(?i)^https?\\:\\/\\/6jytk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8f6454fbaa6f8cf6713efe73ee5745006f9cc7d65021e8a636e3e5a886ef1572", + "regex": "." + }, + { + "hash": "983ec07da91e1ac0671f50a7092ba0f8764061207ed43bdd480aad1530b0feb9", + "regex": "(?i)^https?\\:\\/\\/hotvideoxzc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "75ab4fffd4e2f1a094007519ff3da02abae312e681c6d9816ff658df7ebc5764", + "regex": "." + }, + { + "hash": "056c04b9598b1f0afd23d2a4498df4b1d6d2b1384982c8f021d48078049a1543", + "regex": "." + }, + { + "hash": "c035e1c4ad263dea807b3a518f9c12e7b4c73a328c51669de5d52c160f30dec7", + "regex": "." + }, + { + "hash": "eedbbffac22e9b3f49fda82739d0d7ddb3f40581da3c9f694f08182d401eff27", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "73f6419e2a6b0fba01ba450c0f899a093a3db85b78ab3e2c9f191c99c5306e3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e7b42a02d2546556b430c93a68b0fcdb06796790b837ad6d6866e8c58a4e8cfe", + "regex": "(?i)^https?\\:\\/\\/dfnmytrj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a83327ed8ad6622bf65f7f24343a81e8eab2acbe2f862a9fce051661867f2212", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.am(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7b4db1fdea83be7e70e8bbfd8fb1088c61a184d98f5fa933654c1c1ec3817aac", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3b384114be9eda8591a161e3eaa495249f60b54a73cf05d71ca3b925966e53b7", + "regex": "." + }, + { + "hash": "004cb8aec1d80d8fbbb09b03fcc52929d36f2f5444190612b34c73c8ebf388dd", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e95eef69a1eee6fe78a6c947b3bd78a00248461cfe89a55b5adff9aaaf461706", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d123c9938d99efd2099f8285fdfd72e771c95b1b004c597c3ac3dfa349c0f808", + "regex": "." + }, + { + "hash": "2857a6608a188a0c9275028e9b8a85da88a9adc8eec62d386af3c6f3c6918f03", + "regex": "(?i)^https?\\:\\/\\/bvttrnm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a4bfab0a045f316921ca1ff2c734f7837e9d8c832108b4b601fe8c3d4c241966", + "regex": "(?i)^https?\\:\\/\\/lol\\-goold\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1a1015672399aa70c61fe847c98eb06017a3e869b134a50aed98da7f4dbb6633", + "regex": "(?i)^https?\\:\\/\\/a0lstorageboxaccount\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d63966206e3be241c7f2dfac338272710f239b5ade456e3bf94263288458cfd", + "regex": "." + }, + { + "hash": "d9a01dd44f6fbe1cf3938608052abf7ccdbd102b1851b297f7f24925ecf9f44b", + "regex": "(?i)^https?\\:\\/\\/dfnmytrj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2ebe94539d2a8afce8bde6e593f8445c1fa88d6e6bde0ebb8d8ad13121780e58", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3d8aaf1a2011142e18a8cbc640eb48bcbfd5b579234487fa7efc3c2033a3a63c", + "regex": "(?i)^https?\\:\\/\\/top\\-meese\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cfc86c4220fbaa5b2f5f3c5d52322629bd45640e6cf2187a7e6e49dcfbe37227", + "regex": "(?i)^https?\\:\\/\\/dfnmytrj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a83b4e0770a374ce16adc5b6afce2b38ea058b428b43a152017263474b597f2c", + "regex": "." + }, + { + "hash": "72a402be501479bab3c9a947e115a59b17210d1c57b6727554ba48d7d16fcdbd", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cb27ee77f2750aa5c827ac8fc5c4292c6a4a78020b5628275fd6fcac76448720", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c656af0b1bcb1c4c52f166079a6951cb05e73cb012624e4be69ad0b6320f998a", + "regex": "." + }, + { + "hash": "887a5d1f55ca6043e10c89f01a706d6f99830ba1a8787625f5ba66dea8697c87", + "regex": "(?i)^https?\\:\\/\\/6jytk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "84ead4d91bc94c9bcfc6840e61c9be89637c43f39d6ca28afbecbb765c797321", + "regex": "(?i)^https?\\:\\/\\/pay\\-paypaynejpk828iw\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "7e2a32da0f2c11b50f715bd9145df2772d743867eec6e656d4bcdf2854b1ce6e", + "regex": "(?i)^https?\\:\\/\\/hotvideoxzc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0957bb9c145aa3948cbc6fb4298d365b9a4590d9d846ad6d32191bdf21894ae0", + "regex": "." + }, + { + "hash": "d5ef98dd7a5974e39631f51381da831e75161fba03d0c73f73f4b49b4809120b", + "regex": "(?i)^https?\\:\\/\\/hazturecargnequl\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "d419e24b65db4b07784f53805e1d87276116fec3d65d93dd9090a6b109f1113f", + "regex": "(?i)^https?\\:\\/\\/fixforlive\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2cb264e4d9f614c3c918c3806ee12cf94939b1671d20c336d581040b2b1b3d87", + "regex": "." + }, + { + "hash": "8c2161b75fa5c822f9f96d261c6aa1718b50808ef954068d78c83d0caa522e45", + "regex": "." + }, + { + "hash": "c41742a31abb9866783692f0dea3ce9d94c54b3fc78318ef609c11ca5c64ce2a", + "regex": "." + }, + { + "hash": "3ba04ce0e94128c2993cf2d39efdde2a6dbf66d41be33f986118b3dc5dea481e", + "regex": "." + }, + { + "hash": "7bf67e9f31049651dcdaef7c221a7fbee492b682d73058fa60a697c5cba83da6", + "regex": "(?i)^https?\\:\\/\\/event\\-top\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7fd8e21891011d3876d55dde5b70683f1be9d589e6f304667f56aa336ab011a3", + "regex": "." + }, + { + "hash": "19aca54a39b869696432c5db91c57ee26afaff6a5ce57392e03f9f72cb68e6a8", + "regex": "(?i)^https?\\:\\/\\/pub\\-26c27b235d494adca5cb267c04ef254a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8a2fda5f218778c51969e62acb363f77079b255ab7f8cad0d380f35b427c6790", + "regex": "(?i)^https?\\:\\/\\/bvcb4vc654n56df4n56fd45v6d4b5dfv\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d0d617b44afa34065dd9df78085d5b4dc10533c3412df379f9da37517f5a621", + "regex": "." + }, + { + "hash": "eddc9f225f4615b41a55e7c72f607438748ea35dfa8606ae5fca931802c085b1", + "regex": "(?i)^https?\\:\\/\\/fdngf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7c89067eb110ef8c261ffd94ffaa96e8befb761aacd8ec191cdc6a85604c3106", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?zq1\\=103\\-41$" + }, + { + "hash": "c5f3abc831a9d19c4677aca4f6a48c94053cfe8d62b4615bed1943ea687394b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96aec1d169bb5b0b5637c8ce787052a66a7f6bf98d7c94929f2930bec7530308", + "regex": "(?i)^https?\\:\\/\\/free\\-6k\\-robux\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d933c280ea20a34328be9c316f320f7fda3cfc0c1d05b52d4c294b36402022cb", + "regex": "(?i)^https?\\:\\/\\/yenilenengirisadreslerixyz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2d80e78a0a059738f8096e87ad71d18ad0164079b84e677713850575e8d6546f", + "regex": "(?i)^https?\\:\\/\\/lol\\-goold\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31f61d9460e9ebd591408a1edcd39c858c0b589f0b1854f6f3e37b10387e7fe3", + "regex": "(?i)^https?\\:\\/\\/gmhghm\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "53ef2aad9c3d200753cf36a1d961280b35d2c792a7e00cd8f796aaefedc7628a", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d547bc7cb02968d5602d58161b15b115715db8a54ee3089fb6c578f35af85e77", + "regex": "(?i)^https?\\:\\/\\/dgffdgfdtgft546546546\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d3b2ffd8e0ccd96e1d90ea210f7236ca48676479f14996091bcc621277205168", + "regex": "." + }, + { + "hash": "d75d7adb0dca3d8a4ca02359863175fdc06bf336ba99fe8e2e2cebfb32952e40", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3ce4b998b32666b6a0056f1c4b0debac7041020f36b1b8437cc55d53bb2f58f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kZ1CM0E(?:\\?|$)" + }, + { + "hash": "5724a1a73010a7b9a2e608066bfcf01a49e033a6c4363242e77bf708394d7ec2", + "regex": "." + }, + { + "hash": "ba84eedf40382e8ec2a2adf9c77120bd0507a30164a3ec6037a11dd46ce8fd86", + "regex": "." + }, + { + "hash": "27ce768f0da4db85a0a0009dd5bf030200474a076d394966c2572bc9d8058136", + "regex": "." + }, + { + "hash": "84eeb476a845f9ba35b3754998717981e9c72392bca7eb5c7185fe1b6b89f339", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6e54ebcea718dcbcbf8c008bad41f4eb774e6746d2892ca38e3f8c195dacc3f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "fc34510e22338d15b4ce013a7210ffd641996e2cb83e3f082c69fc2464bce4b5", + "regex": "(?i)^https?\\:\\/\\/dgffdgfdtgft546546546\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6920e510f8d2e1e4cd5ca56b87e76356872787b6453b636b52fcf1ebb2d9281f", + "regex": "." + }, + { + "hash": "6e54ebcea718dcbcbf8c008bad41f4eb774e6746d2892ca38e3f8c195dacc3f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "64a911df361bec35bf8478644c5909e94cd30d1a75f5bf0721b58e34b0c7e6d0", + "regex": "(?i)^https?\\:\\/\\/pub\\-8ea4a1cf0bfa4e28a3c767dd62fd8003\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d43e510045b66ced1d1be7a507b04da43f632e887f39a2d4272fbf7a765b1295", + "regex": "." + }, + { + "hash": "7e43f57b8e7bc952d90b8e86483865248bcc5bade2b3db290635660988987212", + "regex": "." + }, + { + "hash": "2398cd7bb3633441b256a5f825009ffce84cfb118b13b8c9087d8332aa3fb785", + "regex": "." + }, + { + "hash": "c3bd49cb6d0198a81c03e9da376d39c6687e05db02c20f4f24b7acd683407810", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7e0936f4e4015a2742e3da74593817e400b2a78778afa2629ddf6d946607d08b", + "regex": "(?i)^https?\\:\\/\\/0wwwserver\\.eu\\.ddmgymhf\\.64\\-227\\-108\\-172\\.668\\-667\\-608\\-768\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "843a1d11d072b657ec72203f54cfd63d0c4cfab90edf91fb60266c328567206b", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2efb84b17fb79c02a4d45ab543b9d421096f729055e66a2f32663a31664c02b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:\\?|$)" + }, + { + "hash": "323c56705eafea768e1bcf6b483ab5625f933bdb582b9d1855fed8cde4eaffd9", + "regex": "(?i)^https?\\:\\/\\/apple\\.coukkjf\\.com\\%E2\\%88\\%95ugqjlzrtgw\\%E2\\%88\\%95vuoeo\\%E2\\%88\\%95dyvrjj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qerhkxs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b7595409909b9c3ccbdd4a377c9bd8108f26795a80c6b273e2c55c420c20a93", + "regex": "." + }, + { + "hash": "1355fc7d4abcd584299281798c4d7cffd1dbee38c682b92edc34ed50586c9b2b", + "regex": "." + }, + { + "hash": "cbc06ebd51ed53131c403c3bf52aea1633a23f060a41a54a2c4bbbf3117429e2", + "regex": "(?i)^https?\\:\\/\\/tokiuhy7\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9ce0ac327d3c6cbaa0df67ed971ab632d75dd4a667a2d9ddfe9be913beda862a", + "regex": "(?i)^https?\\:\\/\\/meta\\-communitybusiness\\-manger\\-ads\\.com(?:\\:(?:80|443))?[\\/\\\\]+meta" + }, + { + "hash": "7bdfdc745fd93bda81a3c402b472b9b6dc723f3e6f6df206dc05263b4381baab", + "regex": "." + }, + { + "hash": "ce06c3bcfa6ac006ee5c881e73f51bc883bca8928367a2b9f337e6804e8b60b8", + "regex": "(?i)^https?\\:\\/\\/jogodorobloxdeinfectados\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "df89b4fdaecd5b68c4d899431c1c63fb612eb4b20f08da56a042ada0ccd7b75a", + "regex": "." + }, + { + "hash": "8420c48d59d6ce9c5306653ebe9ff26bdd118aa558c71c30c509fa02b5aad355", + "regex": "." + }, + { + "hash": "765128c4293b0752e64af924d9d49e395db39ad23c3f99782b12fd817bd5a91d", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ece277785bad7212b3a5eb83311056d9cfa5dda47b814df20b997a6664d7c6da", + "regex": "(?i)^https?\\:\\/\\/tromutabokzuanreasloza\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "42bcfa99ca4bdf08bbda4e57c2e0ca654cc0693207f13f1585fbf6e3c5f8d5de", + "regex": "(?i)^https?\\:\\/\\/pub\\-9e58be0ea1f24861b630a6a7f81f1aa8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c9033e35838a08515f756076d3f9e59129969b2eef5acd94de8d9f036d3e5b5a", + "regex": "." + }, + { + "hash": "ad440ef62187dbe38ed4b43ad3a215aef1e5ea5fb129e4d4963e0224604cb681", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8613ccf9559480adf0d701bb2b2c6076c6c1429da18ed7a6c69c0957ca0ce7ad", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "21a6f3ec222d7404dc2879516ed8dd174beb693a4d81d8b8523b344a596504e2", + "regex": "." + }, + { + "hash": "c6563b201b5b5aca96d6653633e7dfbe58c7ba8bd3f1a26adca3175c9882ed72", + "regex": "." + }, + { + "hash": "05b77a996672303414785296c0a2a358ee55b5ae29376e8016dbff13507e716a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NPqmlPV(?:\\?|$)" + }, + { + "hash": "9db1582aa994c719001382421a0ce909f169f049f7f7881957987d014c07020d", + "regex": "(?i)^https?\\:\\/\\/tokiuhy7\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "277eed3353d381e739cbaebd324e1925774e1647f677ce3989f89a10e7f756b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0je9s(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b25228c4e1a2c52dea2b6ddc5523d4dcbeda625a0e154d16ac77353dbb18a17e", + "regex": "(?i)^https?\\:\\/\\/pub\\-c1946bc22bea4506bbfed1df4d49db9b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "82c514add5c1aef3552f8716cbd039b9f92f2f72bae97150522743c18e5dfbd6", + "regex": "(?i)^https?\\:\\/\\/tokiuhy7\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "311ae16c564b7b726b4cd1358d1f81d3a189a1a9789b9fd13f0fd69f5badd63f", + "regex": "." + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.hywhynab.com%25E2%2588%2595yflhwn%25E2%2588%2595fhbfvi%25E2%2588%2595spjviwp@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "5f58fa956a8da7c3ed068dff91d93c99b71e33c40d5c69ab5cffe84769b301ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sj(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d70f809d244d87a37980142f9d7250b147c3088df3b88b3f8a8a2b41ad12e960", + "regex": "." + }, + { + "hash": "cb29df0517a55104ec13a3017b224433a3502262ec51d09b3627f48103702ec1", + "regex": "." + }, + { + "hash": "07b1a9e2a95ee43dde1e9597b2b1e8cc059a49551e9d05dda74801b00bf67ed9", + "regex": "(?i)^https?\\:\\/\\/fitakha\\.tkj1mutuharjo\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "250c5d6fef36a56384a1a7165012cabadced67cfa419195396e66872e6905619", + "regex": "(?i)^https?\\:\\/\\/dgffdgfdtgft546546546\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a70a413d27df9959e0200b283ba0eddb9aed608e3f1d093f7a7cbcf28f1db854", + "regex": "(?i)^https?\\:\\/\\/amazon.cpokff.com%E2%88%95ombmdpiwi%E2%88%95ueavjxu%E2%88%95ucnmkorvo@([\\w\\-\\.]*\\.)?[a-z]{10}\\.aseiouemt\\.com(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=[\\w\\-\\.=%]+" + }, + { + "hash": "323c56705eafea768e1bcf6b483ab5625f933bdb582b9d1855fed8cde4eaffd9", + "regex": "(?i)^https?\\:\\/\\/apple\\.coukkjf\\.com\\%E2\\%88\\%95ugqjlzrtgw\\%E2\\%88\\%95vuoeo\\%E2\\%88\\%95dyvrjj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "a4990cea89bdda80146d8c48c51f52e4583f4359d0b11089e8d824d4572cc795", + "regex": "(?i)^https?\\:\\/\\/avasweqwva\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ec55cc73a58481864c92b5e972dc74d0657062158fe24ecba9c2b3eac702dd35", + "regex": "." + }, + { + "hash": "26f0f225b4229afc9e7025e557e4f957b310347761c6b0714b41ebdaee5c454f", + "regex": "." + }, + { + "hash": "7854327b7618fbff0be36c343d4eaa85a6798a6d4dfdfd28f39b7d5852971cd8", + "regex": "(?i)^https?\\:\\/\\/tromutabokzuanreasloza\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ebd8355b7919aadb69de7f998e04f11ff4de59f35c4a6561b52e1c76edd994ff", + "regex": "." + }, + { + "hash": "37f83872bb7f36d15eafe3cdea7832617c51df110a1634e6a66bdaac99b8a151", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "6e54ebcea718dcbcbf8c008bad41f4eb774e6746d2892ca38e3f8c195dacc3f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "81f522aac8fe995f06ea0827a5c0b7fdef96dd8e6a67b713d2a4830f60932068", + "regex": "(?i)^https?\\:\\/\\/tokiuhy7\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6f6dc157827e844696b847b35ce3a652c1c82b230341b70a6ffb7414921e962d", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "5b3d9e5e61f5b7c39d9693352ad76624c2f7fc3fc30541d9c1e12bc603d56417", + "regex": "." + }, + { + "hash": "ab7d8dfd0b4e62a44ef37375412ae2485348a6c14d4254734413b5e1474a7cdf", + "regex": "(?i)^https?\\:\\/\\/avasweqwva\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "beffa96bd70a154012da9578b55d0be0347dd11ce75f9b55a41a3ed8e64a588c", + "regex": "(?i)^https?\\:\\/\\/tromutabokzuanreasloza\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cd5ca6e3596a0d7eae1e08b6d19d8700aecc033dab2e7b3c841323f38cc91b8c", + "regex": "." + }, + { + "hash": "55347cb3120b09fe84ca2a01ed5e8b752de7058572766347155e745644e131f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49d11a9a7f185eb5e485408bd3987e94aebdafd99629d2e74b702cef0373e6b4", + "regex": "(?i)^https?\\:\\/\\/tokiuhy7\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "5464db025c0129955e0e1ca9d9d43c72a373f5400500106b519b2ade0319bbc1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rekrutmntssbersambumn\\-2024(?:\\?|$)" + }, + { + "hash": "9443bf8836c245cfada3926164fb60a604010a77047ee9049674cee895f8c166", + "regex": "(?i)^https?\\:\\/\\/dgffdgfdtgft546546546\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "67023c31524fa99768bd47ff3f39898c0c0419155c44d24d5940078e06b67f12", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "419785cccd5b1b46811db4f69bd0a95bb37ee1342ce1c7bbaa5deb31565a7b5c", + "regex": "." + }, + { + "hash": "b69fb269ce8a363548bcc00597682317ce78fd1250294168dae6bd8c6b302ebf", + "regex": "." + }, + { + "hash": "597b3e89726397b4f5eb8d827144653d65afc18bc4a7ddbc35b35e0fc4bdef5f", + "regex": "(?i)^https?\\:\\/\\/tromutabokzuanreasloza\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7dd77cc355b4b52b49009b309c83011ebae9364bab7f18c4c64c1cd065a8c337", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6e54ebcea718dcbcbf8c008bad41f4eb774e6746d2892ca38e3f8c195dacc3f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8553[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7c3fba86cf66ac808d97f7fc747451a8fec2d6d7cd3573ff8248af648d688f32", + "regex": "." + }, + { + "hash": "f7567308fcb5332ed3ad13800d1d926a5086ab0e5a91943234ec10b062a281ba", + "regex": "(?i)^https?\\:\\/\\/dgffdgfdtgft546546546\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "11f52381a924334f7fd8497a8e96c9cb0723464ca3d7841a52dd55b0e1e66eef", + "regex": "." + }, + { + "hash": "2efb84b17fb79c02a4d45ab543b9d421096f729055e66a2f32663a31664c02b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c2e89f4573389bee6f393e49d3f1a3c828d474becba12371850a31fc03c1c7cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+paylibservicefr" + }, + { + "hash": "12af36066414085aff33a3066e47a697a46050c029170dcf9bea2e4df231b6c1", + "regex": "(?i)^https?\\:\\/\\/tromutabokzuanreasloza\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6baf3366fd43e2ed1df49aaf6e550c0dd6eb11522da9f97731b1fb56580557b7", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d71b11705e1758baa1d0dcd0c7616ee5aae356f4fb49965038acfcc1fdd5ca10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c7d226f4d25871018e3fdf90a86526438f5a7483d40d5771e631a0c95310c988", + "regex": "." + }, + { + "hash": "2feac05c868bbfeb6b70f3bc4f2708582e93c49c1a80262bfa50a042133b360a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b6b3f9f1cc99a3b23c946373cfd5e3ba5309cbfa7a0f17a2dc066b8c5ee83a65", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "93a941ea55db8d840c1befd14c75e293d8971759e042760347bc12cfe681408f", + "regex": "." + }, + { + "hash": "e69118feb7b77b22367784303f43da40d130dd0a3fb52da5362aa704af1f7066", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "51c670ec47ff521abc49248d950a07a139c309f30d5ea13ca77aaec2e17ba6c4", + "regex": "." + }, + { + "hash": "d7cd3b0bbf45a2ebe2d4a81f5ea936c0a3eb1d4099f6b62c51f15dafcd1a95fa", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e55bce3c28f6764edde48c7ba2f0b59c4d3ed0b3600c573869f5129fc0cd82d3", + "regex": "." + }, + { + "hash": "3da04d9c3c50365c69cc2863ff9b47b5b5127c4760885627e50839ce1ca31f72", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "762faa3d442242aa429dc8f113fd7f2a53b82a0c459b11bbdb941d4f529707c4", + "regex": "(?i)^https?\\:\\/\\/pub\\-7ba8d03a565e483face1cf3b4637ff78\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6c87ce7611b502e73362b112727ff22f666e17c9de939877cc43b4a5a5650f81", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1f0aee754d283a52e4b2a7d89ad9b67d2a8d3e90a61b76a29669091bd5995f7d", + "regex": "(?i)^https?\\:\\/\\/www\\.pinbo53\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d5ddcb6983fdcadb69d8059618e7b59e306f641aa6088fca3427d5efec417b46", + "regex": "(?i)^https?\\:\\/\\/tromutabokzuanreasloza\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bd9856e8cb1a06e0d045dfdd7200ad66476e5481e07e990d17dbd1b718db87bf", + "regex": "." + }, + { + "hash": "b319c5a701d0d2bd2bc99a14b882c1f8dde47d8d236beede6b24089ee9398942", + "regex": "." + }, + { + "hash": "41765e17d724c5cc6d4d46169d3e20f6b66f18a14d00f22428e530d919dd1783", + "regex": "(?i)^https?\\:\\/\\/tromutabokzuanreasloza\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f0075d7cb40af9bf1f749eddabcda381da70fa33bcf26ac62c0f0824b2bf51ef", + "regex": "(?i)^https?\\:\\/\\/tokiuhy7\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "96c43484e4da97b95c05199c301da8ec5824a6e2f02594bdb319875bb0ed157e", + "regex": "." + }, + { + "hash": "8145ca38b7f031c2b31c114df7c17e49baf3fe5bba70ed0f68b77241989090ef", + "regex": "(?i)^https?\\:\\/\\/pub\\-e01323578a764455955c12cbc115af93\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "277eed3353d381e739cbaebd324e1925774e1647f677ce3989f89a10e7f756b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0je9s(?:\\?|$)" + }, + { + "hash": "327e493d8b0dfdec27ef3ce942ce7ab469caf3a8c79e2eff03e57d19b5edd06c", + "regex": "." + }, + { + "hash": "cb8272b7b15eec358db1e23e059219f5d48e5c3e73940a68b92b5101a7f0b66a", + "regex": "(?i)^https?\\:\\/\\/tokiuhy7\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "f35cf9b9a00266a14070781122260e2d2524fbe6d7986e51ec39d7bce309ece2", + "regex": "." + }, + { + "hash": "c667041344ca780f9867426477f8196a399ac868e3b209099af9d1b768e572d4", + "regex": "(?i)^https?\\:\\/\\/pub\\-c4c26a044c6a4fddbbbd60fda395f18b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1f0aee754d283a52e4b2a7d89ad9b67d2a8d3e90a61b76a29669091bd5995f7d", + "regex": "(?i)^https?\\:\\/\\/www\\.pinbo53\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "66eecd88437d2af73b1fc3555912f44cd32096666397b0a2e19559600cd0fc25", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3627c866ca82ec0318835ced419582d30be611fe984b898c95f6478a577c548e", + "regex": "(?i)^https?\\:\\/\\/luigidecalrobloxid\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0035b661b2b85c7e6541eb36cc25172c55ba9094d070f3e704b784a6f5df92b0", + "regex": "." + }, + { + "hash": "9567ef7fb46895c28b141a141fbea84baa7194d7bd099919fe97cb0dcef79dce", + "regex": "(?i)^https?\\:\\/\\/tromutabokzuanreasloza\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2281c7081bb46ba89f365c278c9807503aa43d21177e44279ad4316bc6a5791f", + "regex": "." + }, + { + "hash": "74e317a237ae8928d27c0f0c8a71a8227a4ccb5b8a4a37745f9f08207380257d", + "regex": "." + }, + { + "hash": "6c23d5fd55885ec5855acd76925dc093239765c5a89c28067740c31134cd63df", + "regex": "(?i)^https?\\:\\/\\/dgffdgfdtgft546546546\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "097f86aa995ecb8e96259a616fe601b698af3e492d1e1c204d6585c944b8a617", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index$" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ad440ef62187dbe38ed4b43ad3a215aef1e5ea5fb129e4d4963e0224604cb681", + "regex": "(?i)^https?\\:\\/\\/estafetatf\\.cc(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "b977c07aacb7c004287b28630c8ebc9a7fe6d221cf918645361d477313e2e6ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "5464db025c0129955e0e1ca9d9d43c72a373f5400500106b519b2ade0319bbc1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Infoterbarucpnsp3k2024i(?:\\?|$)" + }, + { + "hash": "a50c6374f89fa172adc985d81499d30105a4feb1b4b75e28c3625e96c61523b8", + "regex": "." + }, + { + "hash": "28bb958aeba28bc1daadd50488e30c7e356b78fb9ff3faeefd21bd95e781c4da", + "regex": "." + }, + { + "hash": "a7f1454d5ec8d24751df08f86ac0d4c63ce980c02b5108fbcdba0f3c27f07550", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sdbgyn(?:\\?|$)" + }, + { + "hash": "86373fb4eb78c84a621bad96c585a6784d5cc173cf88176e9c8264b852fe812e", + "regex": "(?i)^https?\\:\\/\\/dgffdgfdtgft546546546\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a2b684615de0234e0965a1bdc4df127d1e02f768bf86cf2b5f52e92d0fa342d8", + "regex": "(?i)^https?\\:\\/\\/tokiuhy7\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8f3853c0cf6ff91ce998b00c3265ae8dfc67862790cfbfde02b5453d4dae33b6", + "regex": "." + }, + { + "hash": "8c4dcfa88a08bde5fc8f877c5136a0324357aa29c29f8e97ef96eaa4a5de15ae", + "regex": "(?i)^https?\\:\\/\\/jitendrayad31\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5f19d433f962be9f788447462886efdf14c3a97298cbb8f3f66d51c174fe7428", + "regex": "(?i)^https?\\:\\/\\/pub\\-9cb462ee01fd422ab3c8372fd4b75daa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9bb8e3313002ffad16f5d64a0d1fae18ed5e36629cc16f0553bfb8cd324713df", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c3e622b38078fdbcb77702893004409e135c3eaa6e23282c5f3a7300fa40bd8a", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "90e1d62af85651b5a5bd84101ec221bf212ff4ae647a482f11b9ebd2b48f49f6", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3b563827e1c123c652f4a1439dff6ca1840555d2ce74e2537a28837cf1285748", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "59569a6b828da1b75e4aede71c3a9f17612fab0594c582e552be39d13ec2672c", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "05316dcea9deae258e0579df47e91e5af8542fb4b23cac50f98dc2524d0c49ea", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4b225c7335feb0c3631132c6a06c9e8756a0168d1e274723943dc5d06d541e3c", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "28bb4df62cfc835e9c28375256848fd845bd608357dba87afce32a9da981eb09", + "regex": "(?i)^https?\\:\\/\\/dhfmjx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "877fa57aa5a4b20bd319185723df9455a7199c9640929475578d0fb93322e2b8", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "58546301b9f1bd221b51db55903763e7791d66b648f99f4e92dc1cc674e5ca45", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d1ef32a6ca9a1028eca13bdd5db5f10ccd66ecbe87fc0c88318e86d2e4ae14ba", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "36a6325cdd6634a9d7bb27a966e78e285d139f89c3e31aabd313f20f8738f71f", + "regex": "(?i)^https?\\:\\/\\/mftjfz\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dc8b8c2548851735bbc1539835ce4bf04cf49ee7660495fc0275187cdf31d00a", + "regex": "(?i)^https?\\:\\/\\/vfawdx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4bcf7bde45ac86fa3be939aea053013be694f767abd29b08ee045323e989f82a", + "regex": "(?i)^https?\\:\\/\\/inetee78322332\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "116f01a924f158136d6f58ccb87e7d0e45594ad2d150266db137466b71ecc9e7", + "regex": "(?i)^https?\\:\\/\\/jygbfx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ea33a4da89b0833d57376c6a590018a7d722715797dbdb397f315a1c3cd393cd", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a700bd6885e4bb04889c1c94b2b98b7a0806cc9ede86bd78ba3c553de2a15551", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "adbe8b7feb13cac36095eeb63266448ee592e94277634f412fa414174f61c83a", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d916652589d02c5233497a0da4ae629886d9b9efcbd1a5162c1ece2cbda2b580", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e5d9a3ccbcb62984b9e7d24e99a9c32b1f88dd07a3d21be16bf9245cf328c0fa", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyghr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d47a7d9128de8a00cb38211d0700574048b77d5d03faf3c5a5069f19a05a74f1", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "85843e064278ee8f02d0a672265a1b2019512399f2ba884d2f9a2310d189c3be", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "701bfbe48c1576ebcc7f8a1e1537f1dddb2d3accee842853f591cf8a0e6b2e95", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5994337eb9f51a99f667d8a074430745576b12b6d4ca9ec6845be942c4d2d39e", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "257c4a6ebac235e47b43c421089ee4ee1ae628183b5d05f6539b2d07edc066e5", + "regex": "(?i)^https?\\:\\/\\/sbehxd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f816024683d50b9ea95fbced2ec54239f7b23be487cd8331ee6d7f9d256c43f4", + "regex": "(?i)^https?\\:\\/\\/tcfndz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a1a1a641858a6860974aa138b15cf0b25365969fba1aabd9607649d6897dfafb", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e0b9041aac924c3c20a5bfba097f2b8f769b506a0faf3d321d5b7d61a63a7", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8f526de1582e12a486d74646366de82ef99d593e3b7b1c43ffe1d2bab05f7815", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1c5a8c21aa5539e8d9528b9eae978f6762452c514ccdb0bc3e006c3272707f1c", + "regex": "(?i)^https?\\:\\/\\/www\\.jygkcf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "360f5a1c67ec4a7398fa94d2782acc0907231e9a689ae9cf89c245b1c7bd6647", + "regex": "(?i)^https?\\:\\/\\/inegsyauds722\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "896247272adce90b99f950cbb7e40e936fe340317ae8fecdc426b235fc510c94", + "regex": "(?i)^https?\\:\\/\\/ymytm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8e2d75418cf0da251c9a136e8fda71b15f862b3721569b0e45f4440fd791cec5", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ea815af43c74121db5599cc4bb2bb7d0a97734acc03505fc896a893c6a4a2705", + "regex": "(?i)^https?\\:\\/\\/jygkcf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "84b6451129bd7c41307a5179e88fc4d7439c83e0ebe7334693f9e3158f532038", + "regex": "(?i)^https?\\:\\/\\/wfvzsc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0f50b0f52158d2367b10796772ea3c48d6d829cbe222a4c76263c4579c316f21", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "084ed0b6496e7bcb4860e69e9bb968c946b8fdbd652643a18038ae61395de328", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8c50ea2065aa11ed4cad723c5480e2a7eddd512a50a63292b73fdf12cd31a33d", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d67d788f7c8a881ba944e5277eb6c14d2afc4948800e2ab027b210a77992e1c8", + "regex": "(?i)^https?\\:\\/\\/davgxd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "112b73d3677b85120cd21328c7b2b747aba7916a91ef7c67598a06419a044ca9", + "regex": "(?i)^https?\\:\\/\\/bsfbxe\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a244b3f88e6b0a6490046479655d0736b6081da602acf456799ca1172c9edb9f", + "regex": "(?i)^https?\\:\\/\\/www\\.tcfndz\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "35e23cfa81e0b39c8b6fb61f878947bcd087cd0976c4d20de22c3153e50337d3", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "dff43c633f26c46ea64b3c1788458b4f70a27e8c863a29909f137549ccf5db5e", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c579f334dde2815a95f2790cea78f57e687abc78beca477e33f2fddc56b7e95e", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cfc945cf1806f72687e756cb1f5180218ca902e6237232085c9fa081c8a35fec", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "457048579e735f95b2f2e64d845f9f4e835e3c3009fbd8a3813e0b0ded987659", + "regex": "(?i)^https?\\:\\/\\/areaclientihypeit\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3c9a1c36e4d14ce24adfdb23786ca70279ed94b1e28c9f5852fd5136f62bfa50", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "549c8465f4065c6f2e45e50f86d2ea30e85456d3f7ffe966d2d7418ec4f6bc0d", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "76debdb71ea32a59f3e3c18094ce13b9d78616fa481ce84bd9f0b6d0488981e3", + "regex": "(?i)^https?\\:\\/\\/sfdxeh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "44c76c13a51307f6a63fa16fb42517c7dca71a788eb1002cdf7ad6e010b0b780", + "regex": "(?i)^https?\\:\\/\\/hothitvideozonep\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "57d6a6e0fa4ef2b67dbf818f9b5c26cd0fcc32f4e2a8c4a62d725910d78e1f98", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyfe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a10ec6470e58f02b797eb04a6938768f1c874fa3c2ee3dcf45a70f34740926d9", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d47a4e919a69e61301b37b661a3c070c6165e367db9659e878576c16d47d6b4b", + "regex": "(?i)^https?\\:\\/\\/fesxcg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fad7049e2791b3071d82eb36c8c70ceebe1a0b598e89802db9340642724d3315", + "regex": "(?i)^https?\\:\\/\\/www\\.fvsebh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8eff638d4e8ab8b854a108b78cbc16cec25e38c722b060bb2215b8ec14a032a1", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cb274e0ead03ea2cc5ee9e7d8949a2ba67a6931f76dc0442963309afb8eab1eb", + "regex": "(?i)^https?\\:\\/\\/www\\.mthjyq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e79b82f2ed64de619f97b77a23ab8731210d38b8da7dd9b4d261b64f8884a89c", + "regex": "(?i)^https?\\:\\/\\/www\\.bgejcf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "715050dc2e15e34bec824cdac47be37623637220a1f8dbe977948f390d958c2e", + "regex": "(?i)^https?\\:\\/\\/sbefxs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "222785004baa4769baa9577e32fc9ef9e4debcb39e98d7c32d3d86ec66dbe279", + "regex": "(?i)^https?\\:\\/\\/mdbxdb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4b0ad45b00be28334142324d0b85b8a2a0dd5bf057b7518f33c5edbfde3782e1", + "regex": "(?i)^https?\\:\\/\\/www\\.dhfmjx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "68c80a9e69afa9b768ab744b587260b3fe48f5106e660d7f5035423a1f2d39e9", + "regex": "(?i)^https?\\:\\/\\/wfvzsc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0ca6c66e67ee934f6b8be386e118ef8ebb2d7c8ed8e0fd03a6741b08f05f5973", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ec9f2064b0bce3cd8f940a566f240d9f15f00aaca5e3f0d378b06bec01f4b6ac", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7838a90b1761a90dd8aa8667aaafa487c8f1ba2fd47aa0d6a6a56d78955db8e4", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "279aec5b6f1804c8ff3089703e137ff6ae1a3ff1014b89ffd497806097fcc188", + "regex": "(?i)^https?\\:\\/\\/www\\.sefhxd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "624a54dde34bab8b2b2a4a6792677cc0274f8f8776382017b256e8159f365b40", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d7e977e5d211158cc77b7819b5160ca1c55ab0ae991df9062b0219db066b46a9", + "regex": "(?i)^https?\\:\\/\\/wefhtd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fd03f765c26eb02cd6ae80f13258cb3f4375b01815ec32a0438b53b2b6b31f67", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "df2348019ee9db60cbb8b9f19e5ed57bb23448e476f640f25769e863ff776a68", + "regex": "(?i)^https?\\:\\/\\/ndfmhq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b9d9cca8463c163576ef0fe10491bd47a2db8ddaf4bc3d40a3d0774774d5fd51", + "regex": "." + }, + { + "hash": "8fb7abdbc8395e33e45e193dbeb4022920ce65d9230ba918ff0d8cec083f390b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gob(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d3861ba28deba78a38e6ad9a2364bffa78e8c63638823ec86e192f3286faded", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fdec9e6af98c8f8c9ea8dc1083145dcf47cd29e9fc29f3e38a4d7e65eba1c6fb", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a5709b0f74f90beb486df7984db78f8002b903e219d927932289db5e713a20b2", + "regex": "(?i)^https?\\:\\/\\/mdbxdb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "94cb58d49b750cdb1ce728c1ecfe66263ed8d3cc4105d4bb60ef91170d8ec42b", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "595d405fab1750d280c075bd4547cf0a0b465528ccd6a4b08bf8a5611a594081", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5ca707df927e87b9e628d271f2d481a66fc235c02fe441920c0fa03ccc55051c", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "28beefef0e6ed528c3641dead7f7e4defd01fdfaaf5e336e4a9d139c872ac516", + "regex": "(?i)^https?\\:\\/\\/segnzs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c0a9f9c89a89b997cd9f56ea8c771628fe6c860a5a73dc8f0e00631ff9b87d98", + "regex": "(?i)^https?\\:\\/\\/segnzs\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "22dbfed2e05aa11e4948235c6d47bb7f78118dee885db61bf3cb4b9bbe4a1ce6", + "regex": "(?i)^https?\\:\\/\\/ygjvfx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6c4e68a948097a0dbc794592a97ce0ba97d015413adaea86f194a1749b90f741", + "regex": "(?i)^https?\\:\\/\\/fndjyf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2c2bdb2377d6827277e57eda7978f2798351d8553c2bfe04e3bc3ed25294211a", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7c7fc2082a616c20987b22510d47fd78f1fce01e0867037619ccadf91da174e9", + "regex": "(?i)^https?\\:\\/\\/ytjdcd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b1b534dc9e6c3dc28739fd8986fd879152ab469030de1b0c27b6fee4e06aa98d", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f6d42d5ee9aeabe024588ef33eda221f0b3d265b7365bb8fc99267a3adb39248", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a1d6d068c5794375bf2852804d03d30bd27e82fa450beb70044764ef35f3270c", + "regex": "." + }, + { + "hash": "8f88580ecb39f1744d0a981b301c4311ed0ad3df1a412faf1b0d5d2f074b00a3", + "regex": "(?i)^https?\\:\\/\\/mdbxdb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9832471ef1ac10a0fc9aade1b1dc256a792cba28d549059370807eada9ec3cd2", + "regex": "(?i)^https?\\:\\/\\/areaclientihypeit\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ba2aad6d69ec0eba8a7c32da58f3693c367f023365ab7a443652bdd71799e546", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7f68f7ab2fa771dddb57d0037b1e8a3fe1621bb631e3066c6e1bb9bd21d16e9f", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e1b8a18c448dc5c8eada6183198511b994f88967d445a87c725dfe3423742470", + "regex": "(?i)^https?\\:\\/\\/awfhxs\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7caf7d6447ff16b3b906be7643d2a7d492fe39234514006d05c037e66106838a", + "regex": "(?i)^https?\\:\\/\\/sefhtx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3bb156fa6fc2ef19221d1d6a9110814755fc74c2e18d5e44175f295ad8bd8e25", + "regex": "(?i)^https?\\:\\/\\/jivgtr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8bb39aedf314b10053c69be8742ef9fa369618b5e66d4f6cd3e41c94ae4107a1", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbfx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "23063a813818c8f6563d917e2f887f765882ec38340bee86a768e0c7d67da0f1", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfmzq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a4de10c9a1d9c79dbd41f5ce6807c599ce8d0c79516b9d17adca626bbc45a62c", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "786d2282a458a3e36bf86a52e59123f0ab537603e03b0d621e1a0632354ce727", + "regex": "(?i)^https?\\:\\/\\/fafdvb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3c6cee56084fb2d7a9bba56e329ae0deb5dfcca0d057d36420b1d4f9ed9e1ff6", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "85847417b5d5521c92fb810012260c7ce777344d67ac479486062b118d0f57f5", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "30c7230f42c378dee8500337334fa9cfa808a565ca5469f1484836ff707d58cc", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "43630ca97c03969bf59c5e8ea6851b46da3b3492df43f873241b9c81eac2aab1", + "regex": "(?i)^https?\\:\\/\\/ncgfht\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e2cee16aa7f1175f95ffbda6dd4657801e4351ac89b50dd43c2f4450a865d450", + "regex": "(?i)^https?\\:\\/\\/bsdnxw\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e91053b4fe56cf2399b556f24921b76432342420a7570a03733e5372c0b50cd8", + "regex": "(?i)^https?\\:\\/\\/segjtx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e9eea865d0e6da4489bb19b1a5b9f95b75c51acbc6d19e8ecdeb96e536274772", + "regex": "(?i)^https?\\:\\/\\/tcfndz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3e2850818873310de15d721524ec79be4ba31c694dc8c9a30c6dda63c52ba8e6", + "regex": "(?i)^https?\\:\\/\\/ndfmhq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a37213e29378689fac9103eef757be071f4a4f293df41177b4acbb5d53a693b7", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "37dfb3a5eefacd1c0955ec293cf49331b07cad02a43dcad674f632effcd06cd9", + "regex": "." + }, + { + "hash": "45c8b60b8636ef7e25c78baa3b2c143889f0f1d44c21d7abec4f8e0c611e6496", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a90e8eefacf5250809e1fddf3306c0abfcf73f28505010a4e790e566ae197ca7", + "regex": "(?i)^https?\\:\\/\\/fndjyf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "652965162e2cb585538e3814d059c54aff9d4f750301965b16016f6a02c2ea84", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgygd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0fcc3a3f085ddf96c7112d9cee993078bb104731506c44e081965e4e99f6aa73", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7e88c68881a6ddd692ff53b58267afbc8f2e7db20dcc6148109147688320d573", + "regex": "(?i)^https?\\:\\/\\/mhfjtc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "58074cda2b86c46efb16eec174469f15513cb2d572faaa6ce0e3ce231b9c7b0f", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "496e674d01eae421152142bc1a5e8d11ad6c578eaade4eaad9aafa0097929565", + "regex": "(?i)^https?\\:\\/\\/ndfmhq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "691e8f3aac193d1b0b617d8ca0733640a07b48abe1f35a45712a3790b7d6b29b", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9768a099e2edc60c28454792951f10295b23e52b618d614e828424f273035c76", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "75ca8e9156cf0230ceef77fe1bfca4a9a7996dd1a32454a07967d442c1323cb1", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d4c5aff0ef3f1f5e7a27ff9c76e252bdeda719ef283015d7ebd0632083d745f6", + "regex": "(?i)^https?\\:\\/\\/www\\.dhfmjx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f9e49af94c532e000baef193c3826be24154db46effb3acd2ec1f2d4b6d4af0e", + "regex": "(?i)^https?\\:\\/\\/www\\.mftjfz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a67b8962c7a7a150c7c76d1a783ff0f66f9624f6f32e33825a29612331c7b6ba", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "31965caf2c8b18da43f9c493f2dd1618d43a288685a1f91c419d8d59e1e398a6", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1fa403a25a79ff0a2fe920136ff40bcc11179ac02b65d3af6a8d8e070b40bf00", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1344e48c2e05e48c8774ea5826ce4f9de23f40503b4eef116abed7684b82a4e7", + "regex": "(?i)^https?\\:\\/\\/hothitvideozonep\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "98e1950957c5d2b5d7d83705b9867050d1a897c74eec02fca708b47b1735812c", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8150d6b6a987e45498de175452f430446da4ca9694707db64a780a81b7170089", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8696ec3620c4dfddf19bec8abb9696e9fc177bae53f8210575d98f27bd7baafe", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "64ef96cae32a4dd7614ce941d8ecd89e0f0a2a7b417cc18619e0aa2baad5492d", + "regex": "(?i)^https?\\:\\/\\/segjtx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c017c1a7a9ef119bdc405a8bea3ec916ab3e42d613a940745243bbaf6ecc09e8", + "regex": "(?i)^https?\\:\\/\\/www\\.tcfndz\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "73088bed096bdfa7e010d59e36f8d85b67d99b410cf9cf67dc19e39e821965d2", + "regex": "." + }, + { + "hash": "081ba65e284285f31701215e27a92845acb3c0a01c1954de4baad1ab75b8de8a", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d853843bf260fe93151bc20cc1e5f55b5a5f878550088371c1e6e2f4bc34c78a", + "regex": "." + }, + { + "hash": "5b0052c838b6ddb6b726f34621ac7692e2d198a2c5978d2dc00bd0c16c492e91", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1541f0ba873b8be705c2d4e2a0412fa784cfd6e342cc55201ad1a809eb2ddc11", + "regex": "(?i)^https?\\:\\/\\/fafdvb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e46a75440384237cf8601a2f284d6b52ac6b0692f24451e410bbb847bfa7c97b", + "regex": "(?i)^https?\\:\\/\\/jmgyjd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "21d57d72070fd4d80717d9f8226229b39683a7a003b52bc8cdc2bdaf66c69c98", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7771ba68b34583fbc058c17280f2241d4e4d1113a1e6590f6ddd3fedf6fab515", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "39298e9122e343e87db9e4e37378749c0c406e54a0a4b6c007ba71138bd0646a", + "regex": "(?i)^https?\\:\\/\\/sbefxs\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b16420979977dffbe93ff3db9f459081bc758fc05fcf5b7f9018788d74d1db90", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "65ab37086a3b774d76ee0c7a0d10fb47b2c88e4e05a57f374da1329804736018", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d776faa27e13c9c0a0fb3f87ce9fec19026b3b2fe0a8c02405e4a1d3d0b47781", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e9bc4ebb556f6e59ec83e34e814172ca509a648017f64c1c5b5db6ec0ea67eb4", + "regex": "(?i)^https?\\:\\/\\/fndjyf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b01d0c9937827cf5e4ec70c3f74add94f9a741fe3b4f854675a691c8a23c1e3d", + "regex": "(?i)^https?\\:\\/\\/ytjdcd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6a8080113d0c64b8b0e7b7845b489b9cdf0f621593b49951275f378e75f56440", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdnjt\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9758403986db33157d3e506fbd6ce717247fca96e8aa18771832df16c72a383a", + "regex": "(?i)^https?\\:\\/\\/nbdrjq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "96f237f9b8cf8e9af846b18f4b38bc16669d3b23dd2775d7731ebdd721b72856", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "30f9fdce4036c578644442122337ae2639a01c42cb266d136a2df7f6761946b9", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a4ac290379a89acc57059bc5cab48a3143e3dd68350e9ef95cf6ee3ef96e0ba9", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "434a4d53636ac250d7e9937ed37e9d3e2700dc002d76ef608dbed9cb2511e58c", + "regex": "(?i)^https?\\:\\/\\/yjgbcf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "27bdea9396f8a33bd7dc8c33d492b7619de2208d9c223b73ccbdff23b76e20d7", + "regex": "(?i)^https?\\:\\/\\/mjgygd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c0e0fc8b6da4dafd1ab46081c3cc3e2eeba19e14c472687c8c700811faba381b", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "533afb0b8d4c33bbc9742c2a041d37cebedd29884cb67e717e69693c1f1f0bb1", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f25115d050fa930d2a963136c3bd450666ade06f2ebbba296da78227a30fe6f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0je9s(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2e611a357a7fa149e07768d7a176c95521a633e39016b1593199670368b15f3a", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4a7f0f816219a8644b37c5c64aaaf58f39c85149cfd29fc771bd6a328ddf817f", + "regex": "." + }, + { + "hash": "5044448b9990881486e9c7959b7300c527e5bbd30d97fde1289ca1a88a8af198", + "regex": "." + }, + { + "hash": "afc9a6df9054e637ab72983fe82e00a28cd3224df5607c9e3912254fccdeac30", + "regex": "(?i)^https?\\:\\/\\/www\\.mftjfz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8646bc2bd17dcb55e0baca48bb4bae2371e741e294d7bd67fbad498296304b6f", + "regex": "(?i)^https?\\:\\/\\/www\\.jmycfs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fd2e7078693b77790a89dc1078da60f0d0bc13063f89bd144507a65c22e6f965", + "regex": "(?i)^https?\\:\\/\\/nbdrjq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fda1a9ac9e6b962c54550dc09eb47d3680a3faacaf2b1e0e8396cc1bf9fbd383", + "regex": "(?i)^https?\\:\\/\\/sefhtx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "660f230531b71606e2382462cecaf77dad472159e41b14224a6de76964dc32e5", + "regex": "(?i)^https?\\:\\/\\/www\\.vawfnh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a7106e1e7c66edaba10157d0442973c8c21f15f5403cd17f4075e04b14becc04", + "regex": "(?i)^https?\\:\\/\\/segnzs\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8181bacd376ee3199388eea4f634d1e930c11ed4292a8738a8f19c46de33d225", + "regex": "(?i)^https?\\:\\/\\/sefhtx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "65df6c505ac7a762aff05c959569716c180e3057d4efab46d858007ed9f36fdc", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "112d8058a88e7cfda988df06055311cfcaf0805a75a9e3c0c232fb483bedc6b4", + "regex": "(?i)^https?\\:\\/\\/gemsjg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6e19f2726482a7656f3baa542e07a230ea0d3df380eae349acd2207741b972c9", + "regex": "(?i)^https?\\:\\/\\/www\\.sefbhj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b5a4eff412514fbbbcc0a9ad1774786ee285f5c3c52884199bc9ed99501df241", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8e2d4c5b21896b2b3da4bd4bd41317753f857e69e53dabed761901bf65cb7947", + "regex": "(?i)^https?\\:\\/\\/mhfkig\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "18740f73219bbd7de79e05ce62cd383158c037c1b7de12ba5c611f6ac0171be6", + "regex": "(?i)^https?\\:\\/\\/www\\.efqavd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1fb5a3a43e0f1a96513be958dfc9df810067b895e08ec5c32539bc210aa14950", + "regex": "(?i)^https?\\:\\/\\/nxgdmq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e160f7e704cabc70dfce0071897cdc6e4eb2e014e725e7367f07f2aa8922dbfa", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "deda5538f30506b5cef52acc8db0e690742d6eb216fe57f027c0d4d0901944ac", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "52954ba51ba056ab2622dd38f2db0e7ec272ec53a54b9a0b60d2e0530eaaeca4", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "420abb7ddddb7a097bdfa7bf02f2bcad0c8d8dfb25869815f85c715df5681003", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "727bc6f23af7c519b75b17c3ab8fd71608de49f032ca69316d78e54da3b9403d", + "regex": "." + }, + { + "hash": "69b9a0aa19009b1dda331eff3cf0ef83d74932d5ebff02ef1c1147cceff8e260", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9e7da176e830df06d7031c4737fb84b28eebe14e9fcf4581a976dc5c23680dce", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8be0af8600837fca9f753cbd57565444b64c7f79a82c9fc7be5e5e23c0940ed8", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b62ea1ed02d9c29ae721c169ad0f489ab5c39ad7fb06b8723a78af0499483487", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e2fd160308da5cf2431efafd6dc476841116e9c9f88560f03da08fef6b305c03", + "regex": "(?i)^https?\\:\\/\\/sefhtx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ece4facb23a3faef222b95c52d08d9fdf306691adcbd1908b1aa6157b66af466", + "regex": "." + }, + { + "hash": "f7cf5e7b6a983e6d66b0f695be4060b94bc9793223d9f1248d9ec8ed5f38b332", + "regex": "(?i)^https?\\:\\/\\/kuyngs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c58c6ad3692e2f89f22e5b7569db6964b1ecea6b64c882a4f28277bba9982651", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9ce014e6ded86bab3ffeeafaa3baab81e160b44a15f6a226afe3125252fbfb15", + "regex": "(?i)^https?\\:\\/\\/wordpress\\-red\\-jackal\\-dodoafras710997822\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4b1964b79dca84ce6ff705b77fb0afc7699f051d932ef68405013a7065ac3d7b", + "regex": "(?i)^https?\\:\\/\\/www\\.sefbhj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "71704e5c4372bc6eef1d5d8bd848c43d350f7d6b44fdb66b1d923f3145d58fe1", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbfx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bbd40cea532665d02b1d4918c50af73f43f782a1988a0d8ff2328e1c863e0859", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e714ce7aa05775f82eeb5341ee1b8004a332e49676495db0b8d8c0eb4bb32080", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c0466f72bce46157a9e3dace5a34912663d2d69d493d01722822160170ca4684", + "regex": "(?i)^https?\\:\\/\\/bsfbxe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c76023d2b3ef7c843d50b84802cc5a6d6bf6ff1a2fbf3daefbd3be7444bd68bc", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fa2370043463d244442f3fd42f1361e2353f193558561bd9abba8e775bb37c84", + "regex": "(?i)^https?\\:\\/\\/gsnejf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6852f4d36fd1b54226bfbbe1a3b703a3fa8b6208497d1f348ea40e572fba6c8a", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4dd84d6bd09104bdffda4861677dfdca53bc81ed18bf322b3c20acffabc09f50", + "regex": "(?i)^https?\\:\\/\\/mhfjtc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ec8ddb31fb1fa24aaf252351aae4952e4ac41eb61cda0c8585ebead83dadc03d", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c6cf01bf5f71a731e063a435900a550b75e80549e801119444d380cbbd21c67a", + "regex": "(?i)^https?\\:\\/\\/wbfahx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "96a4ab7b145e64ba0dc4ae39e9f1c9e054adf96064569d35b2acce7f2db2f247", + "regex": "(?i)^https?\\:\\/\\/www\\.sbjgxd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a7388e6dba7092f2f3f37b9290d9a2642d42f64904945b820fb464d541a0573b", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "434a9ad3e5b7b06ad1696d2b3d35629eb7920497fdbab57b908f77567c76013b", + "regex": "(?i)^https?\\:\\/\\/fesxcg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bdfbc38b322b8a529bf3a40cab44b1f44ceb423228fe189556c21a7b617f633a", + "regex": "(?i)^https?\\:\\/\\/jivgtr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ff524e4ae7b9f21e873e993633e514e1810998ba59216bf746c661e728d52f52", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cec766c2bd8e34f814415a95b441574d5a8259b72b85f08fbf0f70ded82fb520", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "473e6d8b7a2f3facbe729a312de412ff13b73db2b5b29a5535c2b385475c7f57", + "regex": "(?i)^https?\\:\\/\\/sbefxs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3d6800eea7e338ed3608b0f59c6ab03981fbe820a4eda3645bbcc3a16ac82efa", + "regex": "(?i)^https?\\:\\/\\/www\\.dhfmjx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "84eeb66d5525eb3dcc5031c5b07aea38b5f6f08f1f11759b1dc4cd9dc45668af", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d794fa7952ee34258feb413befa08e68e2a45e5a04c49bdbdf8ef9c20f874feb", + "regex": "(?i)^https?\\:\\/\\/www\\.dhfmjx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9a5ab8c339c176115d91a6fb9208adaf65961dde73c24a6159681ef2542a8be6", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "721ff42d84715e73a900688d5392da87cdb3b3bb490065bcba1e3d594d65055d", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ef88a05d867420d8970e53ccb7fb396422f4679a720aeb40518e5476566b4ab6", + "regex": "(?i)^https?\\:\\/\\/ndfmzq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8006d74396ed14c0adac7ebd29d0cd55c4b1332f724be5500419b2bdecadccb0", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgygd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a7613ba763b3b46391a542de7c0f8e582f837b152dfcdcf3075ce43a09cdaa18", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c2fb40c37a6752993a2ee636ff651c331451d145840920f206053996dd4d7ed8", + "regex": "(?i)^https?\\:\\/\\/sbehxd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cfe2c6aefea0b2042fd12c003a8b6de88c2c4c76fdb5891dd6be4a83e1338de6", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6a6d058e7791c38c933dbaa6859fd472f75fe0c5161c572fcda3d49ab083274a", + "regex": "(?i)^https?\\:\\/\\/jygbfx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a7e811538cad0cab87bc2e4670bce430702590b5d38a3826110e2eceffb8821e", + "regex": "(?i)^https?\\:\\/\\/www\\.jivgtr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "983e13d772c57194fbb30f1913fc61b6a068c24bd6f16c062fd17aeae8d4acc6", + "regex": "(?i)^https?\\:\\/\\/www\\.jugcfr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "be30a204fd50696377b945f2a7822ddb569a62057989483174a6d9187ff13dd5", + "regex": "(?i)^https?\\:\\/\\/sfdxeh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0f8abf5b3f5ce1de5ace3adc1236907c47418662be2598ea3d367bae5da55260", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0a7e6f76b6586790f077b7e2ae45d4eacfa0df5d687a735df0ecb2f416ebcff2", + "regex": "(?i)^https?\\:\\/\\/www\\.fndjyf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "868ea1d31f111e8dd50a324cd60b4219883033c43a457987feb32ae22a21e2d1", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyfe\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "eb7d232d0f8b6ec9b7ec6d2b4a7eb2b25d009ddd4291bab2063c8f9d4c655806", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9045ad3bab796fc253e956c0a4f88cdd96885ed29ca95ed0fc03d70392f6eda6", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "45f61f03e04e7ad42b13b18da372d6aba2d2d02f43852b38a5b7b462e7a36416", + "regex": "(?i)^https?\\:\\/\\/www\\.jugcfr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4f1765f555f5aefc09a118db73aea674f5ea72971f2521758c420432ef2dd54a", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyfe\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5234638eca50f28fa4e8b06b6abd54b5c2ef131792abf32be1f4f332d3624b57", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "437e55ec74467283e781ca43a57ee9a238ab34d1bb627c470b3de2febb289d9f", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "65f39f0666122db58a12ec4a791daa330038e68af77e32ae6d2098fa414c10eb", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7c9f0979fb784fe742a57f35839be684b6256e97e631a79e8aa6988e9f060422", + "regex": "(?i)^https?\\:\\/\\/jivgtr\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "267939c7ed0c9463d79010b192c85b0c738598c2c0baacdbba3622dee3972e3e", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "52285574232351a0b4770151cbf6a953efe55b5031a756c034c9b2d51e2b7bcc", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e721cbc99a9972df6f288a9de57573b76f0e48621ede21df4acb6d906c9abc17", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2cb97fb29f55e4fc634943e284be28f0b42a2957bed579dbdde00b6085e1f218", + "regex": "(?i)^https?\\:\\/\\/tjjfcf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "74d1f460923ac727dc467eb00cd5b25dfd196857a3a0ea0de6cd1ceacb187fb3", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "14c79a6bcfad4fb82b89e86580e823bfe3deb64e375d2937fc28a099a1f92e15", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3c01c6bd7737513f2f2ce31103e6e7271c482bb5de0ceec3e94a6bf0ee56c74a", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "845d46030ad492d86a22dab8d51932b254405196e0243ebb1ab82302d8061b3d", + "regex": "(?i)^https?\\:\\/\\/wfvzsc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5da76c68c680825ae0121cc7a642fdd5d30b1ed2cf2796e255128a75568b10f1", + "regex": "(?i)^https?\\:\\/\\/www\\.nqftjq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0da30181e5ba372f3ba41b5cedb72c11d33dce0cc19336d85c9b88bd8da3fe2f", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "de5ff913c039bf2a282352cced5c3e8cdc3f6207d7075ea3f31f1dddcb9c9d9f", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "dc1a98281ba4030b5fb92e3b2d8cbbcebe409a32375fa0af96744082bceecdad", + "regex": "(?i)^https?\\:\\/\\/www\\.gsnejf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5973302255abe655bed86bc4798abfb63ae7bf8b6448193ef4d33738be54f8ee", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9c8e4910889e114cd0e8aec9dfb648f6722e4bfd25062b38b156d7262dbdf229", + "regex": "(?i)^https?\\:\\/\\/www\\.bdsfxe\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0c76880b3b870119920e52b820d42551794b2ecc922335e2aa67a4e2fca492c1", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4eceaa983edc74237969ecff3d18bc5faab50ba4112effe4186b50275db596c2", + "regex": "(?i)^https?\\:\\/\\/davgxd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6fd7dfbb2ea38347586fadb6820d1d9d7baac2c7f5dc05d599a13733663e1cf2", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "64c8d76bcf46d4c6e19fd38af2a12ed2d42d7e82a67202215d6711d616869738", + "regex": "(?i)^https?\\:\\/\\/mftjfz\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "69b169cc9754d6cb469714362b2000fcc67fee90e9b96d8790c688d310c8810d", + "regex": "(?i)^https?\\:\\/\\/mhfjtc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4a5cc77d303e7ccfabb3b58241a886fe29a88a7c2fd1d4161cfa694470f28497", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "dd4e6d5db61c9da09b24a0d27817f390e1023857c24f281700d88fbb756f50d8", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8e221a1496f6cc906ea819f4eb0a78aafc8db7631f791b5f63e0a37716578a86", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9ce076ab19009c231c7b8b0a305dcc41bbba7a45ab223b73279dd0a8b05a1496", + "regex": "(?i)^https?\\:\\/\\/streambokepjav\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e8f0c4e9a7377315f1a8e171b511ed862e4ecf76dbe09f3499b90229677796d3", + "regex": "(?i)^https?\\:\\/\\/www\\.efqavd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6f675cd596e7f06e29d2c8bd9d0efb959585928fd6514a24085c587cee244acf", + "regex": "(?i)^https?\\:\\/\\/jygbsf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e9733254ef25e671ad997ae2e24d25d094b21d960a0c94d64cc68c7d3dbde4f7", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "72ea6f9cefd4c1adb76d3265cad811ef593078979eb316d10c0c14251ac1b92a", + "regex": "(?i)^https?\\:\\/\\/www\\.mftjfz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "921e7ac3cfe1db86328735cc386f266401091bd57b6e3c6d26036a7dc80e251a", + "regex": "(?i)^https?\\:\\/\\/inegsyauds722\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1504ee758036a61f591a993f0c5e26d45506dd11c6bce55efb483947669c202b", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfmzq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "12166bba395eed4326b2e4d9ae9a5103cf24006e654a039e12f1032fe75cdab8", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "82484a7c4608973d88217ed0e0de4840b62836461fe098d76c23521465563b68", + "regex": "(?i)^https?\\:\\/\\/dhfmjx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1a98b25f413a77385d688d43a535d811f9e07a88655fa7dfe3c2be2a5b334d7f", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "caf103d13c051bf6fc3db0421489282ce1a02c56b5f48e203bad1e2ca028494f", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbfx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3ef9aa483490bde5edcb2eb4c0f50462d4d443ca433e6248d47683b505e31d80", + "regex": "." + }, + { + "hash": "cabfcfbda7c3b36021ff7737395f590441559547d6a3ca72bc098319d2d5d5e3", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "019dfea2e34e25bdb045cf06e95b21ef432b8fc5e52ae6c15f53a66b433d7dd0", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a9d39ccfbea1e93ad47ba22c8dbb7cfac1e52369306d20548a3470a9607f1998", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "73c464239f41e88f5df91d1bc10d24eefbf393fd649841e4c6a2f67b2053ce07", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ffce9cde5148efcfe83581c47990bfb7e1281a29de3b2f855c765662ad7b6246", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ba7b7965b02c148d67768f872fecc71ea8204855b8288d9124484699c973883c", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6a373154af8e7d780bcf477432ed48f2f661fc0f132f5b758bfe1f5b6b2d3312", + "regex": "(?i)^https?\\:\\/\\/bfanhc\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e3e41342a8f993f0557ced81e07876168b326159e3a70f18209f7fea6ed32583", + "regex": "(?i)^https?\\:\\/\\/mthjyq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0b1cb35228c823f647e9487d75fed00b0d6f5d06c92c34433cc5323237637fb2", + "regex": "(?i)^https?\\:\\/\\/sfdxeh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "45e7f768d53f3777a4c66d4d6bce141863cdeb706c3d0331bfeaf4a303424746", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfmzq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "890df1d2fe890287079a8f6037783d9dbb31dc64ad5bc5e2b6f35eaae1b17c91", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fa415dd1cd71866f1c41155f5291eef1237f3aaadfbee4c055e5252345436cf9", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4932f50ab6cb6c7e4d18bb8e3fe63b3d923808cd28eeb1f51a507ae0d04be84c", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8f15f0c8de679efe1b977ee5d226efb3b7346c0512648b2cb0f5e5e86d411a74", + "regex": "(?i)^https?\\:\\/\\/sbehtx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ef757b34ef7e70d95ca7b9a65ca4f68a8b7d28217e9929f956bf7bc96658c151", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bfe08e4923a931227ab9f11d22c20b1b2ab5592eed482fc2bc6331d10a19fc22", + "regex": "." + }, + { + "hash": "72a65c00bcdb550b5482f51e6f29bc7f0597a61a549da59d816d76085a523bff", + "regex": "(?i)^https?\\:\\/\\/ymytm\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bb3fa1baf80d5817dad98763afbcc32c011ef1c474a79e60a956cd6c0559ee1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "79fdaa85b83ea8059da753636b2054f913d84da905b4a812fb80e3e6b353d2b1", + "regex": "(?i)^https?\\:\\/\\/fawbsv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0b0cdcd5697e7a9312e1066c59dcda1d1bc06032ebe88d22b607b938554c13f8", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0901bf438a465e5ae05be02a20c465d9748b7c9a12bc4716f0673503b360532f", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7609cf17daed0d27282ca2a1c57f51cb2ac8bf8b9816660ec7fb5fcccaae4e4b", + "regex": "." + }, + { + "hash": "60531c51b26ae5c6420250135ea9ce29f53c5025fe21b0fac8b6e096ed0fd765", + "regex": "." + }, + { + "hash": "96e8c22bac00adbf6fe8c556ea09a6f53d9ae566c468a7f9080ec8b1335dd6e9", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "25d244ba5d0bb5c7f14c90cd85877f18a02f621e68a258f6c09345ae6aabf9f8", + "regex": "(?i)^https?\\:\\/\\/ngsqxd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d5fa58019494dc875c25c8e6642e5a351f0fa6a815e23b407f3168cbf873b398", + "regex": "." + }, + { + "hash": "0fd0841602fa7d9e06e342f653881204ca78528bd444cd706647b4903886f006", + "regex": "(?i)^https?\\:\\/\\/dhfmjx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "882ba96e7411fc5399bd245c1558be211252eb2b9c744302550f8290e73209dc", + "regex": "(?i)^https?\\:\\/\\/www\\.fvsebh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f02e34bdfde7ad1963a37f066b154982fa19ae528727a415dc282324ba633f22", + "regex": "(?i)^https?\\:\\/\\/sefhtx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7a928a5b066b83c05abd3c5809481a033662a13ad5d284cc48a18039128c99c9", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e9b1a351df346f471bafb1bc47b8042f5b1c7be7fc95297b7b2e8812e89d6961", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6c85672714d53db188a56d84ae9d7497d519729662204a7911d0dcacea759e98", + "regex": "(?i)^https?\\:\\/\\/www\\.jivgtr\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "17e92111236f03a286f14dff1c7f43bac3118824939cf036403091129ef979fe", + "regex": "(?i)^https?\\:\\/\\/jygbfx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5e8826712ab117cbfb88a45fa9cbd4e3298f27c833e2a35ac0e5a9e6692cb48c", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1e12c44c752751fe772929d38af1e0c419714b890cf3b2a0b32b430ac8acec5e", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "626f993483a195cf511a9587972c178bb9c11f6900c9a96b025ba1fe9886c573", + "regex": "(?i)^https?\\:\\/\\/mhdfjq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3c96326cf1096c394fd41873d58b2c140b6fe439b9bcaab9cdc4aae34ce54758", + "regex": "(?i)^https?\\:\\/\\/fesxcg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fb9f28ed2832afbb142b6c74dab044c4b7081e436bbc5e10c0de1a63be232181", + "regex": "(?i)^https?\\:\\/\\/tjjfcf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0cb3c08f139fc5ee45c525fd8d7cda4233b780a2f64fb816b02140c9797a098d", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9ec21f2f6d7e171c1b792ce6dc4a46d7dad2f46cfdde36c57d15650b8e888b4c", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2c897b2fa692888e5ecbca9a9f9fdba2f4143116195342eb1b9a551af3e2ae9b", + "regex": "(?i)^https?\\:\\/\\/fawbsv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a9caccb139f5edea06fda81c87792a2d158085d4374ac764358d7294155e3653", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ff5b654d975b5e24c99d89776a56defe0ffa0037f5d5f9e620d62012398e2008", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsqxd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "650ed6a441d33a56c61af4d9bf26c13d593b9fc6ebc851d05c0532d1548e9b69", + "regex": "(?i)^https?\\:\\/\\/www\\.jygkcf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "962f33b8e1e1559e91358f1b51e1e67215b8adc2779247373d14a21d67de7556", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c324c6f4b26236b257db0acf7d2971a69395032f5367b4521f882917a3d2933f", + "regex": "(?i)^https?\\:\\/\\/mhdfjq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a8729c123a6548271c1250e76109462bca2d315931b5af6868d9b1fa6e013ffd", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ba18d7e52383b13f57530c47f9301fecddae7ee3ca99d6ab5da45b42876fb82d", + "regex": "." + }, + { + "hash": "b57cea35d1131105e6e4430ff04eeafd6c59af8d90d6c72d5074a62824a9ba71", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cccf08e2961649a23a7c515543421bb7e0ee0844ec77dfa2e89ff8f93c241c70", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "803474fc640103d66559c6c218120625868efe5dd7c58e950cfc6c20d3a53f1c", + "regex": "(?i)^https?\\:\\/\\/www\\.jygkcf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "705378a03d0410caa6c75a44d26c806bd57bf16783dba782c0a06fac92b0cd3c", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "737b94ccd2ecffccb0c3e57280d04735363f6d6c7d97955c8a00ecf293b67740", + "regex": "(?i)^https?\\:\\/\\/kuhfnx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "944db37ce0d227805842aa47c6e5b9a05899f33ec5541c0101f8cd405780a303", + "regex": "(?i)^https?\\:\\/\\/jygkcf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "df5532a3411d4d678af9cd151a4d0c798d3da0caab805c510d5985c1653c6c24", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "da65bcba8f441a4eeb5e161a1d96fb6eb68a647036aa3ba3d2150b345ac2ef40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+198858b0a795d0af39ab0e6ce4cc3cea(?:\\?|$)" + }, + { + "hash": "5f2c56bdbaea7ffb1b44de6bf67c6fac5bd780e3ccc3b9d21e06a81b249bb1e9", + "regex": "(?i)^https?\\:\\/\\/www\\.gsnejf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "541f86535dadcf48bf43cefe11f1fb6ab98d84a179f1cca3bcdb06b14b9c682c", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfmzq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "85f77c261c950846e498321dff87821561f648e1725a5d2a957f61cef2bafcfb", + "regex": "(?i)^https?\\:\\/\\/www\\.tcfndz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "12c7c1d8421715291dbe19255111b00b7df0979730660a67d83be6bd27d0c712", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "aa22d5fb54607542e497855e08921888fbaf31cea0ea57041a018f2738437a6e", + "regex": "." + }, + { + "hash": "35af6b1fbbb86d9fc141b59ab7964c56d5cfed52d1044f80beffc355fdbbbbce", + "regex": "(?i)^https?\\:\\/\\/jivgtr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "68b805751c53386a5585088fde08ee0e68f5360fcbf9e93c613762f802e1b606", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d0b4525078cd0c8d3a6a614866acfb1b4bc4f323d82354c8fdbdb3c10dac64ec", + "regex": "(?i)^https?\\:\\/\\/www\\.fbawvg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cc6a46d15afc5a6d173bc579f68947267b45ee6c719abd4ca8763bbc253068cd", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5259995b7e75f18e0620b3bf657bdb9be1fd5ff9d6bcfaab7e9781bea9f63e84", + "regex": "." + }, + { + "hash": "7e8ac363b4123dc15bcb77cdc8abca42ef7adaf54f70a5ecd8ac60c87316f3db", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "460696775bca3647195ca8463e5539cc2a32f27579536ccb55747f0d96c96082", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6dc2be25cbcd2f5904d270f01bde98c3b706ddc4563c3168b8ec283e3eb742e6", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b81f52b90e14297533491c814f05998311de688ce915d471bc2536343276394e", + "regex": "(?i)^https?\\:\\/\\/bsfbxe\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4fb44122c5ba4e67bcfa04eaf3f61a3c207558007c892c82ca00fdc8e2b62903", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "508248b85c3a869366fa9e395d53d627f287b1503d9ca96e2145420bcdd04710", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f4e92d455ffb617c143fa2e933c3291d062509ec081214264f3e50187868aefa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vdgggd" + }, + { + "hash": "21d55aad248cd0c58ce7ea9f7e9740c17a0aaf81f9f3925e3aeb4007426e1f06", + "regex": "(?i)^https?\\:\\/\\/www\\.dhfmjx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b80f31aaa695637dc041989fb8cec69822ec2fbc4688845585ce04bba8ef8649", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4d439838b0c4a5438d13a7d5f8232c5c3e00f84bd7602a0dafaa8ac33d17cc7c", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5c44f9af4b54fcda6c584b9837054d9eba2ef7c560756e8465114405c4372ae1", + "regex": "(?i)^https?\\:\\/\\/www\\.fndjyf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "03de82b75845e9814e3fefe535115851107b3310d64fe020798de318dcb3bbcc", + "regex": "(?i)^https?\\:\\/\\/mftjfz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f789520649078f5af97b3a7f2e75812032bd3306f19173bd464e14db769403a7", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a31c814e56ded70fdffda8f4a44dd2135971a6b80dcc759ed44f4f85bd1859b9", + "regex": "(?i)^https?\\:\\/\\/nbdrjq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "528aec6b67a8995f5d3d2d6920c5eee5a0bf55049b33b9403d5472bd3f0d7988", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1b324b6cbca009a96bd078f7b64dcbfae2e4c36ce7827b600f86bc7cf6db251b", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ec81291148bc507a325efc1131aaa73516a46951cbc58f5cbb3de967ff09ce8d", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ded20ee912bd39c351d0fc6eb3614b848c250a77aac9a44bf0ed20dbc2548802", + "regex": "." + }, + { + "hash": "0487424e792c937db89f6f975f215ef8f895fcf6e145b5738164a97638aaf411", + "regex": "(?i)^https?\\:\\/\\/segjtx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "49c077ad681e90f7bf52d36adf7700d8fcea521e59bf7566ff939696700b5910", + "regex": "(?i)^https?\\:\\/\\/www\\.ngesjx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fa5a018e32837f0f6b14225beb9684b10c864d9a360ffaf0674c43c53385cf00", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cd1ebca8f5ea2ad3956c757dc2ca3ce449f0b14a8f007fa9a8c258b36e18d2f1", + "regex": "." + }, + { + "hash": "8efd18c861de21a7e9db01a3845250ce5583c0e94a46c263972bc58e78e417c3", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d0b95dacd9c8a1729e794ae915b86e2756abfa36a46578d164c230e2b017e5d9", + "regex": "(?i)^https?\\:\\/\\/mhfjtc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e9ee8ca1f37cc2b005f14a5618c701ed828bde7aeccc31764aeec4551e65f1e7", + "regex": "." + }, + { + "hash": "c3333e84f7eae729e5dae8129a5bd7bdbb99077f6161007e189d18d11a693037", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsqxd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2a1e47b007ccd19e5f9516f70348aa2f70f55e46f580e30437d313748027c783", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f401c160206ae9f19065303bf9e38e3ace504fc697019ac99a180bcde51007ea", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f29af60109bc655f40c0b11c3f70e315f37c11c0f83d2134c17b1297d80dc2c6", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7687cc7bd7172215bcbcc5e7fb2fb553a55524522eb3d3b8c9932c1caba4e2de", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "34f2f22a4a53465d64a9f51c1f0bfa23e0951c55d481fee367ac92b85b22941c", + "regex": "(?i)^https?\\:\\/\\/www\\.mthjyq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6396ccbfde3688a2ba4fa95dc07346a9e7b63e9237a9ab2ffedc0dbffae96644", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4805c13116e43ae76b977c5375d10d867901c49a66c166a007351a02c4735241", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "017d98ed8cba780dfe9920ae3fa5683f0b8621d72b8d1512de6b9cb8c855ba44", + "regex": "(?i)^https?\\:\\/\\/mthjyq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "05c55afb549242a76a3f6dd599e6f74d8ef96a1a9b289741b981f7c8fd5074e0", + "regex": "(?i)^https?\\:\\/\\/mdbxdb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4115a835e50508f14f6ecf6b2e54756f45f2a691c0b7f6d3da22bfef7971bf7a", + "regex": "(?i)^https?\\:\\/\\/jygkcf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ba59c7d3304ae32d202e11b1e1a888609fae09a4396382d5e3ca5819b1682bcd", + "regex": "(?i)^https?\\:\\/\\/www\\.efqavd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0f962ffd808f36c1595842716f9d728b216bd33aa51f3b3332425e43356a4c01", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0da7af2317401e43214b2e4e71f78b309d984434dbb34ff3313443cd90c41c75", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1fa53c961ad16696add959c69db81c768f593de7d17631a0f80ee093e35a399b", + "regex": "(?i)^https?\\:\\/\\/www\\.bgejcf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cebe0c3f8067c4b605f02e61ad227ab5430ffbc5f850d1ebd6fbe918f6cc5b22", + "regex": "." + }, + { + "hash": "e26d07a0f96a0965dfbdfbe342dfa13774e1972554ff866b94c8a1e18f9b34de", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a411b2a535952947a0a0f8a7acce71b85169c017fc15f1e79a675a341cb7188c", + "regex": "(?i)^https?\\:\\/\\/www\\.nbdrjq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7575cb213feb5e37089d5e35e2b6cd0fb2ee614fb0b4f61dace286af98329953", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "20ea649de299eabdc186601eb9649d1046772f0b82de87238ad70e5a81b57d77", + "regex": "(?i)^https?\\:\\/\\/sefhxd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7924afbfeecc30a3d3b4d5104a0b93bcf83cd9d3fb3f43175e06254a07fc592a", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "84d40b3a316a4ce464a216d42b46b5e2512128bbff2b7a1351a2baeeca70ca57", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "241344036a77fb47866973e3ba2e66b546484ee37dca626f583ced6c8cc2875f", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "75e21166c6680a4092853e1cc8074f87adf9836ead6fda4b5155fbdb4c48219e", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "54e4ebd2f5983826466c3458b05c29b4ba3dabbcaf332071f72c6501d16c78ae", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5895c20ec5b778ef69e29595b3312e8c22c054edc4e9d69e302f085d3aa90ef5", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a6ebad87379011653f953096c90c6bf0f5e475bfd8b5e54422fe97524c840afa", + "regex": "(?i)^https?\\:\\/\\/vfawdx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "77239efee95f0313f2d728f6b86f3733ac2b2fb1f292b3a2d175ce269800b192", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1b21fd6a817e0b2e4bc9534bca0fb6a44bd37fb36ac72231176f05aad63a802b", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a82f753c9675ea670df75db96435345ef822e95402b4fb01f178e1882bf5496b", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "405266f20ecf4966b84c5d877b88b2a015e6347a46947b30f49f9f23e765bd17", + "regex": "(?i)^https?\\:\\/\\/tjjfcf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cfd176953d2b8600ff7550efd7dcfa033f6d4b9ab329130e63617c3981e67762", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a1ea7665920e1820ad81c3fe94fad3e6f8174cadec1a7e910554f727617c15ce", + "regex": "(?i)^https?\\:\\/\\/ndfmzq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "270d5abd4170fcd309442fe8cf5fa7aeda320960ce83109c24911724582a6241", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "47db3f2c4d2a6d7b19ce8da14d2eb5e12dbeff6580163a171ad531698da404b2", + "regex": "(?i)^https?\\:\\/\\/kuyngs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fda1bf978ed05d37fbbdeefd5f1cf10fb1e09660637bccdde5d455242afe6932", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0d451b2d001f52223d5550a9279dbeec6ae7e9bde4e75055386273766c4c317d", + "regex": "(?i)^https?\\:\\/\\/nxgdmq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9fe1f6e61e740b593bfac56a7342930212804aa868a8beab5bd10057e83f32da", + "regex": "(?i)^https?\\:\\/\\/mjygbw\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "019d5b188b2859f9bc8d0e1158ca29d4f8637729a3cdfa289ba42057e8f55fcf", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e4b40e8ebca68b8add9fb9dadd128cbad5eebad58c9bfdaa696f7a0062b00624", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "67711db08f1d7a2f0dbca7b82136fe5018eabbf6cbe2b4dacead76af8db4a7d5", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9a2f65f5c4a23a2c72570a20b70103c756bf648d38b01e08a79c9345008e3e73", + "regex": "(?i)^https?\\:\\/\\/kuhfnx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d0502ed4dfbefee308c666939a50d5e49c1a91bdb82b79cada3582533944c164", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f8c3083c4bf181a50a5b50b1800bbe86faa7970b755b092e5b52503d6f67fe45", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "39a33e071499fd317b897e8d4549eb9ebdbe6d5a51ce7c58dfa692a03a710162", + "regex": "(?i)^https?\\:\\/\\/jygbsf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ccd13cc8b3bdf14409cac27ef21ee75e579bba33b389c7cccf2c161d62059c01", + "regex": "(?i)^https?\\:\\/\\/tjjfcf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "710e243675f3f823c83b843a4515049952f457c28926db03764ed48427fa26ed", + "regex": "(?i)^https?\\:\\/\\/www\\.fndjyf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4dfbc9b0469699c479bf93daa84081d0f61b16fd60a70a735857b9eebed255a5", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "45786426b96a3b692dfea22d9ea21d59786b4bfabca3649c499d2f8290167534", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsqxd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1c2c70e7e8633a29c08f3d1906b60c72fa1c4ac232f66b13a7d8e675d75139ac", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ea08ceb697094867749493894d6e8ffae33490c30092d38bec3bc199172ad98f", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdnjt\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "210ab432f4cb2f3c3283708d95f14a3336dfc8544a9f3a76e998431ea772022c", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "92d8fbe9c2cc80a3eaee435dd9286a4a4f4fc11a68a63f04c04a9859f4e10263", + "regex": "(?i)^https?\\:\\/\\/www\\.bdsfxe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "93a2d558ad21937c0a84f6f97df86ffe02e06f8cd181aeed3e7aee473fd40334", + "regex": "(?i)^https?\\:\\/\\/ngsqxd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5d3bb247198698819b71206d6275a5ff2042c79fa00e6b5285ac1c6e8608e4e5", + "regex": "." + }, + { + "hash": "18a729bb4025b89cf7cd520f2443b23731469ad68eefa245f919f4bd2e351e6a", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a12ee3c887d8146668c165979530a03a696e4cd3c020879d26abba63cff3f132", + "regex": "(?i)^https?\\:\\/\\/mjgygd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "cda3ce29a3ca5b673a8b4ca1eed5e5df71243fc922b02e19656862a08cedb4de", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyfe\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9806ed3d9a0273e64bf7b040d1ea1110d497ce9463500080b61b996e56f4f7ff", + "regex": "(?i)^https?\\:\\/\\/sbehxd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2ccdfa4f2e45a425be98ed3650a602cb12def1c2cedc0a98828307cb03a17f25", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "068ec31afdc4808b59493b23ff0d424dbfd90a996349751509adae386c956367", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bcd548b0dbf88930552beddcb87834ce8f7a84ec4bde31624ee494623739ab12", + "regex": "(?i)^https?\\:\\/\\/dsnxde\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "bd888a1561baf7bb8b618e2030cfb5fe82f9d0084dd0bc8f3fd3dbb2e595a3bb", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "36c822ddbd4155fc0cabd0b68d7920e4f792c1e9a1b8c1607bed2d9a5a773ddd", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6e8796d9d1d06512186d554bba5121a386a4c7ec5689149bbc7702044561b802", + "regex": "(?i)^https?\\:\\/\\/www\\.gsnejf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bd070117a627381bbc3f242b8231f40c9cd6596404e223791adcd23630974b05", + "regex": "(?i)^https?\\:\\/\\/www\\.bdsfxe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8f2d45cbcce3762dcd27e4e82f7e963bb5bf5edf1a5f3a24a0e245bc9903b71b", + "regex": "(?i)^https?\\:\\/\\/jyjnxd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "88ffc95a0dee7e86029e66cb0ba58fba7d43e1babb66fe55a04712b36d0c3912", + "regex": "(?i)^https?\\:\\/\\/wbfahx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a5836d5717105544a84017d6753d9b9804903a37104940a86217aaceb87d177f", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1645f7e93d7c895cf8191bdb0c71538b71d9a318be6cd1c435940aa119ef0610", + "regex": "(?i)^https?\\:\\/\\/www\\.fvsebh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "00207ede429d1648207f7cb5d3391de361ed48722c9d4603b97a044073b6cedd", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3ef0acc686c94e812426d7b38d3860a9747c5d7d06daef8ee20b15814b34f8ca", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "03ae0cacea1ac5f19c4b4b3a2aec562aa5e5b71305e0b678ccc82d0676dc491c", + "regex": "(?i)^https?\\:\\/\\/fafdvb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2ffb0aa1a12a0da4440acd0466369bb77991cc3d7c4a31ee36ae872d75b560ae", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "56703a226a33f3e4e2e0d0e794bbf4f09debd3580c8b025cd2400e1af13d65ae", + "regex": "(?i)^https?\\:\\/\\/www\\.fndjyf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e18778751308f7c1b12a4dbe5e433412f90fec2c3b29f92bf83a03f90d89f745", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "420ad562adccee91ea290e60d669fe5de2d335469a898fd873bb335888c564be", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3be160b5308dad54d0a9660cd18a3ebdb3aabb9aa13c9f7e4c6682d713e440c7", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "942650d2d63ca2433b7dcb3b5f40ca82f260a1972d04e6a480c7339215bd2228", + "regex": "(?i)^https?\\:\\/\\/www\\.jivgtr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "251e01590dbf67ecd78185eeb2443538db4fc6d84b6802dbf9a6ffcf58e2e750", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "02ed868edb2005d79604a341e0fa91c08ee3449ddd1db3fdbcede4bfa3adab4c", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d9ceb5e523a7406b5162057984be4cb6462cb6ee527e14fa7db04ce304d33474", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "06a04a6935ae510e454cbaeece1c46da2be9019e75b134e8028bdcf4e16cefc6", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e1b44f52e5541d2fce92a6c0dde46e64d83cc105bfa26ba00ee7a217793e8919", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7d0a7694dd55cc6964e4b8a46ac337f965c4c96bb26250a67536dc105dd1e4fc", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "42bc36275874c35b0ba1c4fe8e3f9f76d3ee8c2d794affd7b1ebae9adbb44ad4", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3ab2de03d0afd5c09c4ac03eee0e14f07880d1038c9fa613edd2a07ddeba649a", + "regex": "(?i)^https?\\:\\/\\/www\\.bdsfxe\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2d847c1580187bd33de9a985734242cf8e852125dad24161f3e63654ceea714a", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d03be408f87e605c58fe9ef783639cee3063fe8b0da39be400c93c86e7e8df66", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1c0e5fcb0734bba33ec34cab6323d7ddd9cc23525ae15c593eae58d5b6bb2de0", + "regex": "(?i)^https?\\:\\/\\/vfawdx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e18527e6229070ea59357735f8c0935ba7860f4d84829b27a40c15728c716bc4", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7b3cd9bd0fb52f8bc811514d1dc07082bdba104a5a2c554964f706a42249b63f", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "53b0d4be006d5e26d6897fef2b614d0c73ad9e7f29b16d2566523f7c3bb083e2", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e60033ef7a6503cf906676c6b1bf5831a59b690d89cf8011d760f6cac7b7e52d", + "regex": "(?i)^https?\\:\\/\\/yjgbcf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "00e3016430685ad1242138f9e5f68854c4d54034b0c98aec8d5d71b1d67edad0", + "regex": "(?i)^https?\\:\\/\\/www\\.sgebhx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4f9167149dcb0aacdff338c6527bde016e860ffeff20d5d38fbf7607ebbda245", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2eb2422ebdd8b0d5be9da488a59b7876ffe5bf5e234f826e6e8f390e44226524", + "regex": "(?i)^https?\\:\\/\\/nbdrjq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "eeb73294a2de9674e591e22076b19223fbe8dd40199a4b4ca4e0e12f1ca26199", + "regex": "(?i)^https?\\:\\/\\/sbehtx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b7535f4abc2bb8f8e239f4332effd9ea521604e689f8faea1dc8407bedcc0ca2", + "regex": "(?i)^https?\\:\\/\\/www\\.jugcfr\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7b3c901ab0e1f065f708ab5f339b1fe734e757cc485ed251703af0603e975f39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9093[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "46074ef91f1a463d9f8f4a264ff21eda2445b29e0da9fce3f707affb5a3352e1", + "regex": "(?i)^https?\\:\\/\\/kuyngs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "44688aa11cef51c468e335e8546ede32eb61b8e2771f69f1b735ac3637b871ba", + "regex": "(?i)^https?\\:\\/\\/hothitvideozonep\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7455489eef209de46851170d41a50778b5209d6dec255137974e910a32e349c8", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "12304530201d96d92079e62baa4c4c4073170c4f657f81c95c889d20864e4bac", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b953da17d37dca1ac3a2eedc51589a02c5f024547d098089c1b1ef5c04e82ed6", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "51a1cb0ba6ce4e8981d394a11c2435383007e87c198ed31c5e87f33d649886e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tos[\\/\\\\]+login\\.php" + }, + { + "hash": "a32548915d9e8f712e403460e6486aaaa1ac43ae97728284e6b83db3a6ccc49d", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0cfaf390f18bc96875f5cce8c5a494cc25cccd061c245eeb567126575c21c078", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "05c1af1ca47e8c8d9043fab78b1f24ff9a8a308f7c8393b7f5e0f0b0e18987fd", + "regex": "(?i)^https?\\:\\/\\/bold\\-sound\\-5343\\.on\\.fleek\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0556771c7e3d8cf972c13fb02dcbe58482c91e542adfec4e8ece219d3cb903a9", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "90b59ebf3b9354815e2cb76aca597e1f44f3a2e3d93abe9d7cb301627b4c42ad", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "06622d681cdbfa93feddaf28438e34801bbfdacd18a66dade0ca4178af0643a8", + "regex": "(?i)^https?\\:\\/\\/www\\.bgejcf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3998cbd16e306a471456042880267cfcc96267de3814525e78d3617b325ad683", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9a8ddb8813cbc06a15c00c3e527731c84cbd6cf550b18f832b2ca91d0fda285a", + "regex": "(?i)^https?\\:\\/\\/bfanhc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a7229998acbe95be1d9a81ebfb1ea53c0c2d0b5213303fb061794fca286fa9f1", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "afc0f4f55e3839c908cd8f4ff4c06ea806807c93e85f8ca7d2c13e44ee9e774f", + "regex": "(?i)^https?\\:\\/\\/mjgyng\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1ce3765ebc783dd333812c6ee2e9d7cbe2492392e819c7b73398c153009dd3e2", + "regex": "(?i)^https?\\:\\/\\/www\\.jugcfr\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b86045c7e1085a49e8a4cec370fb2cfe762b300930a8fdbab2d659ed9cc09346", + "regex": "(?i)^https?\\:\\/\\/www\\.sefbhj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3470875df3d44b2ef3a4776ab206245e5e31b68e3573de32eebeda79c950d6bc", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2714c85c012249445bc37ad6de543609e4b61b09abc417f045dd7cfce3e503d8", + "regex": "(?i)^https?\\:\\/\\/segjtx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0f01fe6e19019eaae21a0ed3a11ec671852e0e9b82176dabbc629803116135ed", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+6kkzgu(?:\\?|$)" + }, + { + "hash": "609db3013561976cc26bcb479cec7c870e2cacde3462ab83ba36b2618bfbf0dd", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0cfa988bd8a51e25b39572d2f357263de14acf711d179a96a93c459e02c5af8f", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "69148a4b22d905c59362171cec091d6fa393d8e0c990744c6d9296752bb853fc", + "regex": "(?i)^https?\\:\\/\\/ndfmzq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8bdec198451be1a7dc456208e7ae7b69c93d3cea501a748f20e81b474f99615f", + "regex": "(?i)^https?\\:\\/\\/jugcfr\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3ceba746deb73953b0a0f722ee4949c8630099bc958f0a24a8ade42eec2fa84b", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cdaeb2807e17ba20a8b27c8666fb8afe09921f6a81d9216d6d3d0ab32114763f", + "regex": "." + }, + { + "hash": "10fc7e4aa43b81c02ed9e2d4e9e41965075b75222a4ef3c102b3799621b46c66", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6edbc4c943757a2d85b6534f9d87cb13fa36794937f6c96d571579057eb16846", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6125d52aca9ad97b4902d16137bc16f110e34048c67c82d2872894b078756f2e", + "regex": "(?i)^https?\\:\\/\\/inegsyauds722\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7c0008cfd6f8687e9b8a3f6b3eb4fec0782779210989a1c318e31aad94807b3e", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6e1084c5e337ef1bb7e5001eaa79734c61e38c8ad834f1e3b39293e635c48e8c", + "regex": "(?i)^https?\\:\\/\\/nhtzjq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e716109f73ddfeded487a167593b3ce96f8db79ea1e01ee89fea7d05753fa953", + "regex": "(?i)^https?\\:\\/\\/inetee78322332\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "44654c9f4fe76bc03aa6ca9e8324e4847104fd8588c93e830bc03f12e285e003", + "regex": "(?i)^https?\\:\\/\\/kuyngs\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9832d6718687e28571fd997e7b43b95e52ba1d985da58dfacdda8ccc818c13e0", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "08d4fca38b1b44fa4ebb99d3e2ad1107ba6615c822671f95017dcd9f26d291f7", + "regex": "(?i)^https?\\:\\/\\/ndfmzq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3a0818d4fa54e6b1e7370cb8f1d427e0da7077331a98b9d2f48a4072a76b6ecc", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfmzq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a9ca48576cf880f00e3b81a66b7213e85b33bcc3b341601da90fd1b721df2de6", + "regex": "(?i)^https?\\:\\/\\/jyjnxd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d78c0e6cffdcc4a1c17b82c09b146564e07017df1b27218cc8eb32b5668dea1e", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "94a9ef66873c2decf085f89915464e3da27dab6d856d939738569ad19c3428b9", + "regex": "(?i)^https?\\:\\/\\/yjgbcf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3544f3ad4d7b1cc8165688019c2997f0c453a1a42e22d6ba7e693b2038a9ccc4", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5e86b04fb99d3df96225d3e749de1735d509385c9403a4c7b9a04711c46cc469", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "499c089b37a97c5d8aeb106200fdca1f7cffd7339842ec7f3629d7822669ca71", + "regex": "(?i)^https?\\:\\/\\/yjgbcf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6f9a178b3ced27a80b54d4b4356ab9286cf967dc93e431d18214fe7b2ea6cdd9", + "regex": "(?i)^https?\\:\\/\\/dsnxde\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0e4bb7cb90833caa47251dad3128f7eea675c2ed147e2be36b9826dd2abc4d19", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7bead5282df73b9af14bebb1e837efdc90f2f15a09af4c33b68d49dc5465b9ae", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e4be16af2aa76ad7a0fd57f81cc834100fe817076a431d2dfbf84496108b574f", + "regex": "(?i)^https?\\:\\/\\/streambokepjav\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0b8d2fbd461cb8a8b908cb309eede7b51c51004e91eb632fc9b8d37efdb52a0f", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b65d21977bc94d8c9cba959ddd4bd943ae3628fd8c4020732f47ba5a9593dac2", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cf6febf901b18a972ff1b184c6a552c6b4268e24f1b03bc0f23d11f2ea04ed0e", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "76380876bd1c99b0d791f3fb782e7c7d06f0385342a365d9c196789442c18758", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "264e216e3396c12468dfc48277a57ed1cda908603a0a237d52fde181657564c5", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "226ad17d04bc54bbbe4d62cc6132f1734848437bbafc260c6d5a3e71bf8be0b0", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "07e7c5a9c24a207c5a361ec13318a7e690574946060542d99fc4db8f9de4121c", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d050eda202a3034b74242a76e6b373fa74be9ebadede3a444713df399bf95e3a", + "regex": "(?i)^https?\\:\\/\\/vfawdx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "54fc7da2b9af6aa581f7a2220e9487b4278e3c66ef194f0252f3c7eafe7fd0a5", + "regex": "(?i)^https?\\:\\/\\/sbehtx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "71ccd19badd7add0a7c99ed6714be4604162cf05d04617025e836d792ee281ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fedc55c8237a59e689f748d8251b37274bea217611eb3736e738215f25448796", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "325e404963ecc10b714c9732e79c4b8e034d440b172dc111ce38c82e84949793", + "regex": "(?i)^https?\\:\\/\\/www\\.fvsebh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5bcc23bf9d27287eeaf6bc210ca8b088aacd9df37158185e65f2233c32fa1d96", + "regex": "(?i)^https?\\:\\/\\/fndjyf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7b3c901ab0e1f065f708ab5f339b1fe734e757cc485ed251703af0603e975f39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9093[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "beabfb3d907873dafbc656e02f28c40e5aaaa6d4fc6536c4620b7dcc00fc81ca", + "regex": "(?i)^https?\\:\\/\\/dsnxde\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7f2e99210d00f4969a330d616ca2349b895cdc50d6ed80f21c204c24904da9a3", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "df0cd613fbf4872bdf158153403fdbd48496e8fcf04fc00c82380979cd11832e", + "regex": "(?i)^https?\\:\\/\\/gsnejf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "47155ad83c7ae123555473fa2770ff5606106041286dc266cda71f4d81460922", + "regex": "(?i)^https?\\:\\/\\/www\\.sgebhx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c0356829a5a01db43355894e05500bb363841c862b03312a577d8fc05c25de0c", + "regex": "(?i)^https?\\:\\/\\/tjjfcf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0ce022c9159537445a5b6b5fe9d4bb39a881da897ced0ebb8d01d2509f401172", + "regex": "(?i)^https?\\:\\/\\/www\\.tcfndz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f7d25665651d3c831d73eec3de1515cb6801c850fbb9bd7190f88e1d5f4a59a6", + "regex": "(?i)^https?\\:\\/\\/nhtzjq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "06565127abf5d0c9beaeeee799876d10c3b5ba294aafff7ae2fcfffe7a3a4951", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "673de99f45c492e3a3e92a73960b1c873841fe9ba86d0f90c7e357d5e21afdad", + "regex": "(?i)^https?\\:\\/\\/jmgyjd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1b62aa92d7ee50de787b36d48db194dd2349cdd960e06678d468217d7f3a891a", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3b3ad80eaf071ff507fd5d1328792b5c3430af6aafb3001e3af5e117f185e640", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "be0d5f5ab7057c2e75dca01dc4c2fb42f85a8650361cfbb1d84187596e602620", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7364d5202fca5f3944ef758f14488c39eb988dcf4cf08634d95c17f98dc11596", + "regex": "(?i)^https?\\:\\/\\/www\\.bdsfxe\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ec5b89f641aad73025c2b3ec0c7fa6570e1b77d3a70ac0f84556bb048a0a4a23", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "63ea00374f5e5447a0c74e383c93f3a363ee7e9b2edbcb19dde976a1af723565", + "regex": "(?i)^https?\\:\\/\\/www\\.fvsebh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "399857c75a34ec59af3029f639e9766d3455fc541029183eaedb2ea096c37443", + "regex": "(?i)^https?\\:\\/\\/sefhtx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0a18a1c4708c54697e73203ec907971667a8047291cbca25346312946badd2d2", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6dfd875dd0918210f88ca9e99a2be3c93c39f3fac0923cb5689b4e51d3ae5c42", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "406ba19d2c0c40201bc31fab6c58a7e9c50870056f8fc960602e01c64081991e", + "regex": "(?i)^https?\\:\\/\\/www\\.dsnxde\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f3f73756643ec12c2b72ad9aaf708516fb7e08422b8fd28c1a2d1075ca444ea7", + "regex": "." + }, + { + "hash": "e1ec448df54eca7a071b70ec1d321a48ad06487539a03f6bdbcf9acfeab04955", + "regex": "(?i)^https?\\:\\/\\/wbfahx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "47615dc71050fc16dd5325fed3fc58c60f53888c87a75c4eaab2908d04b15e28", + "regex": "(?i)^https?\\:\\/\\/fndjyf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "641d03a16725331934c38d2d94b7e78febafd859fa0278fd180042cee1701f3f", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2fb476fbcf3c99318fde09b0db0deec1fd71b54c098028b03a70ee0d294f92a6", + "regex": "(?i)^https?\\:\\/\\/areaclientihypeit\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "471b424107f36c334f619e9c11ce66867945a26838765d508bbc65912f489f87", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cc1e9ce03d36a30614cd3f7cf0bd895f474f1fb2b196ef8ded2fb7d496ee1948", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "87d536429d811944868d133405f98662091a6c20f96c55ba07b6b8d28fbaaa61", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "69a09582c3946b3e012de599491052659f999640239b9f63ad47fbf720ab4dd6", + "regex": "(?i)^https?\\:\\/\\/ndfmzq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3ab29aafdd5ab31736bb02ed679208209044fd0f988c77b01b769dd2194a7e27", + "regex": "(?i)^https?\\:\\/\\/www\\.bgejcf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9ef8be83eff2a74f56889ad0cb72faa0b47c5226ea5ebd86f926790980810261", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "dd181cd5ee99e382638ec8a07c86dfa3f80c9d1d3288d705da3f2028982fb2cc", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6464af850495e49709d17b52ab84423a5c8e833dcd91d2a298a2a646cd01034f", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfjtc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c98947240f1a992b08dd20e8f2f4ac03985b124ebb2046619827b16ca5f6d67d", + "regex": "(?i)^https?\\:\\/\\/mhdfjq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7a4492869cd41486560765003c7e550b956d0045c0744bd579a3f3b36332f6e9", + "regex": "(?i)^https?\\:\\/\\/www\\.jivgtr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "faaeca03fa771744eb676afa8ae40baff3a852d43c984c3e46f567c3dc1c5bab", + "regex": "(?i)^https?\\:\\/\\/jygbsf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "11e54a1f8e07fb0f69eaab32f3be9cf8a33903501acf0610ae2a3221daafd5ba", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "249390a725b1504cfa4ac279d6e31717404c4cd1663c175ac953440c214c9172", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2e58a00c7d539176c133f2244993b1d377c9fbb7e6efd3a12e03ce55a2af8abc", + "regex": "(?i)^https?\\:\\/\\/www\\.dhfmjx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1c34445dac04ef8052d1601e77b9409a0a4dc9c9922ce67e792fc16a7b3dbeaf", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8cb8ad15f7fbb7aea000d74c498de38759406de9e6bcbe733dd050504b6f614b", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "e5047f6cc0000ea169873fae06d4970d97bd7b3b7311d4f50b61c65363c11d7e", + "regex": "(?i)^https?\\:\\/\\/www\\.vawfnh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "015627920eab6bb76b0a0103422e7ff79076fdce7eca74ffff65b455ea9eb8e2", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e82dab66dc937919b3ee4a86b9c1bdab56979660d8453d61734fa55c479447ca", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "04cb603c0c95d75c2e8b60d6a102fec36f9887ea32341a61d6b61846c1f66c10", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cc217f1d4fb2dafb2ece595a4b46e5b85c85d5d08e8e05e98381449fd825793c", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b1bdef1bc3f8db54b7a2a3d6b1331e10590a3630f1e8a3d116cbc6fdb6d475c", + "regex": "(?i)^https?\\:\\/\\/tcfndz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b977b87d596fd610520b959aac1997ebbba5448ff7c1b71ccfd2bf1b1e5d7444", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "29161f906f09c3aad76add882d9f06be147d0c07be650dd3bea6446d26bf29f0", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "011e7cc8b4dbf2f64a2cae232c00a9effa86e974e39b08d79ba98b111f1e5f58", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d5f732b53eaf7b1243eeba4e86d848c042009b59881858c578f3e852fc6dba6d", + "regex": "(?i)^https?\\:\\/\\/wfvzsc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9425e75e19d783ac64904c13fd6971dd00aefe2652a5e72678ca378047f4b631", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d1ef00b6868b038d0227d6874bd613c324fef22474458aff8139eeecfe443229", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "055d68d91d38ad6d569ce923bfbc20a40176543f1c8160e26a9b7e00ba645669", + "regex": "(?i)^https?\\:\\/\\/www\\.jmycfs\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "22d4a321767fc44d2f138be0065886d244b494b82a555b1b8e40e2ff6db5c4ac", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "72abe6a5f37a7f225d158d44f7791163351587980e8cb2f8c810954fe000b7d8", + "regex": "(?i)^https?\\:\\/\\/inetee78322332\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "da74155c009aa8582068fa2a09df41e0e56d11b88a25fcc18a9a337a8143cf28", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e493eeed7b5d24ab8748b199d2d92f9208ea18b359bd60b6511450762044c459", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "52c2b8354c953526da3c916dfcab7b622c946e6ad9699857788def4f2129356b", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4e20cc797caaf8500f03e28c6ec0fa8038de228e3493181846e8112597af54fd", + "regex": "(?i)^https?\\:\\/\\/www\\.bdsfxe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b11b973e695fcceb85d69d3511bdc21b4fead7c9a27e560c6ebcdaf5f8ff558c", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "480a951425eb5c3a1ba718e11e60e7172df9ea56c6c045fe3e04bb4cbfdb6f07", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2752cf5b90b720862e5109373ed621c0d8e6a5ad4f1912e4dd7a49a2fa6c4236", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ee64aa02bc3739b41d8266e22e25c7480a059c280f35e3c856f7f730a38b2f32", + "regex": "(?i)^https?\\:\\/\\/ygjvfx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "51bc22865e4155a7808a18f54a74ef289f3f5ea16d5a188f372558460d51788a", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b22c16ccb06c7374b654fd393a13207521c1a14e6c6d3ee74694dfd0ec459712", + "regex": "." + }, + { + "hash": "386a068d3c0b20c2b0ff42425090e0aecc72ad16b430bb69eb1a23029870d7fe", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ed6cf726c2c6ef2003af3e69c903bf56b9abd9929b97685fe059f5a46e224e01", + "regex": "(?i)^https?\\:\\/\\/www\\.jugcfr\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "82885b2c6a1c4b4ba789a853f9634fce54f35c454a7b55c2714b62cbe01badd3", + "regex": "(?i)^https?\\:\\/\\/vfawdx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "843aab2863c878f48960b5a83c447166c53d53084b64a0b5b5ea7022ebfff1a2", + "regex": "." + }, + { + "hash": "76655db4b7090fb64c37f1827f34470f9545a483d567a4bdef6baeec964c37c2", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "38a49924f01c23a266e4906651927b53f8ae978bb3ede29dea3894bd15349b05", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfjtc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d1ef2dc87d86bbd756ec150b44e248aba518fbe3b3a381597149af7d8d8e9835", + "regex": "(?i)^https?\\:\\/\\/wfvzsc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b1e1397d5e1d395156da08add553ef806040380d352998fc61220a134c4db6c2", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e482af2b169b53dee106b76350b2c969024bfee6c7aea8a2b9a347c822984c96", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cc5ac8bc74c62e30cd9056f45fd4531b8cd4af4dfe6d65684cbbbc97c08192f4", + "regex": "." + }, + { + "hash": "b8ae31422c8ec111649e431915c55573343c1938bbab4019a60ce421fa101a31", + "regex": "(?i)^https?\\:\\/\\/ygjvfx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4073e019e72c10abdf5bd73d8fafa1879c23079618b9f21793e7c2587a71a499", + "regex": "(?i)^https?\\:\\/\\/nhtzjq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f227b5f58f2fff5d52095ecae2b728f6730b0bb0e134e1b1c347142bd96dafd4", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6d899ff6f1bc39957240e0ef21f38e728ce535836663bbbfe5fc5a9f1b4376ad", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6440bb455739a1cd794735060abd1bc83fb32241c1e8678f29955fc3523c34b4", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a4aa7e777f6c0cf0dece17422e0ec540d4ad7bc4ef6605d352c89df7d96f641f", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "752ad58f7677123c09494ae280c1581bc4ebac12a9030b7d991ca4d12635f7e3", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9a027f761430539747cdfd7b2bd9d16b673aa8814227cda93e8e54c7e300dae9", + "regex": "(?i)^https?\\:\\/\\/mhdfjq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "27eb0963a78cf78dab8d195532b437c9ed0db32281fa52268655776ea3f0cdd0", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b9fe34fb0a1a5c61da3e6106490101f7b7238319abb8d5ca2229ca28880c2053", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "080a2cdb5b5b5745558eb1b1b5d46bd1e2253f5154ad71c7caa43db1e9058b09", + "regex": "(?i)^https?\\:\\/\\/www\\.fbawvg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7d4dbf561fb9c46a7b635be6729098232d68597d0b5f93947cd4073ac645fd49", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1fb5ead17d57dcafb98ddcddacdd0c2b488c83f13e85626f2b9907887e4c6c16", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ab7d7cb8d20ee316dad84f39bf1e1b67c86023974c7d834191601cee1bc1ea8d", + "regex": "(?i)^https?\\:\\/\\/www\\.nqftjq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b83d67ff3bdf6068139c882869c19c79aed3b9d95dea9ef0f073763e46d7c5ec", + "regex": "(?i)^https?\\:\\/\\/ytjdcd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bbb80119c48919f60d0927f26a19acab5246ed74e06c1ecc6e9a2e3335fa7d51", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "68b8af5826b45219c0c1a04015685db4adc65ed88cd4d643b1479d1c7858c145", + "regex": "(?i)^https?\\:\\/\\/inegsyauds722\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "975c2f4fe0859e88e3ac45c6a4612fbc7eaa0ad1b869c8fddf1663822b0b9811", + "regex": "." + }, + { + "hash": "9cb8a722fc6cfb5fe9bfda74cd602f8ed62bdb8adc3586da77f25b85c9b31a32", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "347fbbc521efeba7044b9cf2eb2b8813a7f2a4c04a3993f1622d186ffd93bbb7", + "regex": "(?i)^https?\\:\\/\\/mjgyng\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e3faf7a22d044b58b6bbdf3b60b4e6011535e6623ec3102ac32fb8ed6e700a8c", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9d40e6bf526226550e65b36ff3833828f60cb408fd73663facdd2defdc4896a8", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "471b668f68af49ac0d4ba1123919e407d8c7a2871524fe5cd656a29ce27cb1c2", + "regex": "(?i)^https?\\:\\/\\/nxgdmq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "be52cadd2568ad7ae687e064a54ae6da39fa54da1f532d5c804bc25f37146c58", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "51f6152d5387d99bcd3584ea6c9fff297203cf70bd6e3456ccb7b59f6e665134", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "194b1308a85b0a5ed7c711b7de29b507152727522a156ae94379910528f6865b", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5a221acd1a7a187c00ee78d80177bb9962065ca29d2ce3aef0b65b9ceab04582", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b85b79890b01e5450d6a4957ab1df5612b2b73fd5c03617850f73d49c2a528ab", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a124ed7e9d2e2fff36d58bdac03243bbd8e5c0a5d50e4581e8fa0b50d2d0caad", + "regex": "(?i)^https?\\:\\/\\/sefhxd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8ca295d9f280baf87effb50968bf6358c7e9a954f969eca6185b2c5e0991bfda", + "regex": "(?i)^https?\\:\\/\\/davgxd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "582629668184999b5ae6614a8a4e70f70e1919a4fce5191e367f124c5b9204ab", + "regex": "(?i)^https?\\:\\/\\/www\\.efqavd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0fddfca8c274ad54c1e186c6aee7134765da0cf39cd9248935a7062e9d6abf2c", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbfx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d203d127ba53227b5302563bd21b00c4e5866d86f9076a0a116290ae5cb8a8dd", + "regex": "(?i)^https?\\:\\/\\/hothitvideozonep\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cf75e8c57df2fe0c973ada9fc5fe48de6254ffbfc21827ac9b046c176ca5e5f2", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9fc020935df9c2079fe010340f4b2ace4b10372ee413c822b9a100c8a0f19d4d", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3198db78c0b641fe0d1e81af5562cbeb91d3511a69982a561a210529c1a0904d", + "regex": "(?i)^https?\\:\\/\\/fesxcg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "81b435c5ef991b4d5197bc6a2c84b3176257982f482e3f9da61967a45eb5973b", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "931d84071bbef3cf0a9e71cc58f4bb8690c146603dd8e646c80e5339256da0fa", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "90cc53006f82855ca6f4d2817742f5b164915cd8bdd72a11227cdfa12747f9a0", + "regex": "(?i)^https?\\:\\/\\/inegsyauds722\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1bac49d3f3ecd15eabda03149ac51f491642c977eefb530eda7ef928f324bac5", + "regex": "(?i)^https?\\:\\/\\/fawbsv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a8e7bc678ba03caf5f227db4dacfd4fe22126c10df11592e9ced6cec81bee562", + "regex": "(?i)^https?\\:\\/\\/streambokepjav\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0480ff31df49c432ff8b380c05f91596366cef7eb78bea816daabdedbc66f538", + "regex": "(?i)^https?\\:\\/\\/www\\.jygkcf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7e50985867d251600c17eb7b357ee92c0e5e3961f0e8e42ebfadd75e8666283c", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e721d0b4c3f6b2f5e7006436cb847e061a59e1bc5be9823e78095092758ba5ee", + "regex": "(?i)^https?\\:\\/\\/sefhtx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6e19b7fe2718b7450d4b6b1b3bf0be9bb1a808acbb5b2126d690929993cbb553", + "regex": "(?i)^https?\\:\\/\\/fesxcg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "00a936b5281db31a19b1ed80c58e802d075211dd7cdab8dd2b863a1c2f01f919", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ea0866e91db2e3543b39b991f7cc772db30b0057f87f8f6a2e2329b9430976c1", + "regex": "(?i)^https?\\:\\/\\/dsnxde\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "822d195a98fc68e247c4806dfb54c0c7715b8b74378be0fb11056e48e5abca66", + "regex": "(?i)^https?\\:\\/\\/mdbxdb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "cd6074dfc1b209316618902eeb1571748d7e141d5cb7e347f02f8775e46b0557", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "952bb9922dee1996bb49194530bc9264cdb0e85579cae20ea3455910dfeaa230", + "regex": "(?i)^https?\\:\\/\\/www\\.sgebhx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c1f5c7ebdc0593d045d907c716f9e78d3ce46cdd333d219b8e54ffa5b59bf080", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8e1a580bf2544be9dbf83f48c2ed046a26eae73c2f82c35d9c32cca9ceb03da3", + "regex": "(?i)^https?\\:\\/\\/www\\.vawfnh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4b610d13e0597194a58724b893bb5979ffe327c9fbe935c68d20a0add9e9e5af", + "regex": "." + }, + { + "hash": "56ea72881f2aaea54b73fc811fd5c637abaa615a70e6d8e61d5cf77f7b12fbf7", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "046cb41ac0e13d829b1f30342669f804ae7c970de486de5a53f3aa0ab6d74c64", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f8329bae52bb33e6b90747fb31aea3b499ca085041defac52c3451f040b5bfdb", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "35f3639a32211433b9f42199000406b8a6c8dc74d506228280258560c604b9ed", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d464d627121c2479ac6bcff998e6def5bab3ac7ecf76418e007de7b9d7e1d8ef", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "673db4ad7ce81967df7f716bfe90986d9d7aa3cce1c919b22d7ad7f9deedcbc5", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7ac921ab34ea43423699853fbcbdada70a93db3f81b08fd93517060b1a27c3c9", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "dff47795c754f67f1a84a4eb36a739b6fe9968f4de1232fc096d456c11a73b89", + "regex": "(?i)^https?\\:\\/\\/www\\.dgbsqd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "af7db7190ac3576c9f129f07c5445cfab596d0e83b43b4c3390ad2cd45d8e3db", + "regex": "(?i)^https?\\:\\/\\/wbfahx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d1e51778e37dad9136afe2f0a8c259191ea18b9b39b27716f72dcface2466ee8", + "regex": "(?i)^https?\\:\\/\\/inegsyauds722\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "699862a8e1c1f24ec572723fcb267514a21e3d595ba2d7338ed5f93d4f11b851", + "regex": "(?i)^https?\\:\\/\\/ncgfht\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ad4434b43cc147eaa8036e8f8d2948ef91e1cd8c7e7ec940a0ce37868d5c2602", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f9d936d263a1acd03d9a81c4336a71074a5535572fb9c15519f953c21051b059", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f72cf74995bbeb4c1cda05441212017e481765c4a22df027fa79709bf1153bf0", + "regex": "(?i)^https?\\:\\/\\/www\\.yjgbcf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f84133991dd0e5199ec808261ce6de7b94dfe0e986545164b61dcad833a83989", + "regex": "(?i)^https?\\:\\/\\/sbehxd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f5fe89ec0297341494323c58e55dfa8ac70fd136478320932ecd10344c971abc", + "regex": "(?i)^https?\\:\\/\\/bsdnxw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b2fba781e90811f590e5bcc42470094bff75fe18b40b39c5a7fd392428572844", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c215c733b5b73fab5d977407f087dd9822c72af65650e3c703d658e9490ecd4a", + "regex": "." + }, + { + "hash": "6921839f81b6061bef60870a9b92eac5b2346412ceb100f5e532da3822a78076", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfmzq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d3c5252f97ba63a58fd083cabe0f2c088ba19098e9833774130e5054f8e0d69b", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "158d5ebc7bf45ce84a14868b9e9531a84aa4abae96728b24385a88f038d1f684", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bc6307a7ddb4d6cbf298fa5835e1a6a0db0bd40a88a9977e14ac6d61db08385f", + "regex": "(?i)^https?\\:\\/\\/www\\.mftjfz\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c9fe9d9d756f19234ea2019d1502c3fbd3b65aca56739e01af3daf98cafa5067", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "478d666637cc10b3c2c8afc93ee6ec13ce8ecc4cc011c37491b413547def9e25", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auto(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b3c901ab0e1f065f708ab5f339b1fe734e757cc485ed251703af0603e975f39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9093[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "84e1d3eae4d16717de24429f4f009971eea06f66b9710500c184a0005ed631b7", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "06413e82e96a44c072f08358d22f1d2b0a6c9e613ffa2e7cfc12fa4cdea84b89", + "regex": "(?i)^https?\\:\\/\\/streambokepjav\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cc0f731ff24b6f0a100a040a5f50fee0ab65e550876229aca4b5969c1153e69a", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "83e89ef1caa40d4c120b72a802ea2d4406b891700a4b927b173f9696050d75d2", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbfx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "800c190d021a64f2104615a3edfd5ccacec7c29f8c12e7621bf2faf49e01ed1c", + "regex": "(?i)^https?\\:\\/\\/www\\.jmycfs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "51f2711be4dc968e8f99548a325e0a576fc80c4b4c1e52e6072a663443c32485", + "regex": "." + }, + { + "hash": "4f76160526101d3c9c02ad340329cb7556fcd708a27d02e0c73b1c126c818a14", + "regex": "(?i)^https?\\:\\/\\/www\\.jygkcf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a1534dce2eff8af1d47e253feccfa792ba34ce16ab9fccb3c4f57789995d0fa3", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "89a9ac9e891426831f7dd0e914013dcb797ca531c6c30a7fb8edaf72fbda71d3", + "regex": "(?i)^https?\\:\\/\\/mdbxdb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a9d2792a0de1a7d71feea1fa2a4dc5a420737b96c94f716e891fc0f4844eab7b", + "regex": "(?i)^https?\\:\\/\\/wefhtd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "db3fc17860218435ced03b5a73d721b0a85e75ac002c4c1fcf7bf0d9a09db42b", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e6db795f737db55ba279fced999ad7e810dcc3fd6becd062cfe0d84210b49f29", + "regex": "(?i)^https?\\:\\/\\/nxgdmq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+n135q7(?:\\?|$)" + }, + { + "hash": "f68071e5aa70dd5ed897d1f2bb8c1c832eeb6220a346c0d4b7974209697aab51", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "960fd1ff5da7a66260619829f7133892dc23d4c7472e9481fda6b27ae5cd3109", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bde7aa25c4cc717d3320389445b4715dc24aa5fa5ce39c66161f005a61db6947", + "regex": "(?i)^https?\\:\\/\\/yjgbcf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1e3c3fa5e9b6aca14487e56256109e97560bac2cf833842675b29f844fb79500", + "regex": "(?i)^https?\\:\\/\\/awfhxs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "de9c7071549726e08bf2898ee2215725f7c51717a0992ca8ef46adc99cc28c7a", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1bd34b4964da9b795ef2e172046c835c3547ad0f8a2484cb43f0efeea4bbfcf7", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f0ef5f415fa3ac0c6be8c14fbcd065fe72a64108f187408895994b336fa809ec", + "regex": "(?i)^https?\\:\\/\\/jygbsf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4a76822e30faa2d82849b50bfdfaff2b632160cb764bbaf71c04fc7d05bc360f", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdnjt\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b2cdd5891e29b9e87179c06a62c41eeec101655667575d6f1765da034baec555", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b46e1ec48cc4be3488818b2e8aec7094d50a134701a21ff448ffc8c7c1f93607", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9a932f763543857ac449471ef3996016ed6fd3caccdedc7774ed1597c6543631", + "regex": "(?i)^https?\\:\\/\\/www\\.gsnejf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3714155a42d618636b7598ed7e358f1ee6c1af20363ba12942b373f4ad55adc8", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c9cee8edaf27a020d61e54b48369f26e3d7446a4b9e45f10802685cc43cea369", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "61298d19ce2dad684eff9f7701153bc4c331d10a4b91f96da52c913c147ccceb", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f3282570bc54916b035dd416fa4ff46dcd1db5a0893a1a309e5ff6963a91ba6c", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "38fa2556c8fcb2256315e8a3a38d8d8cc32679f3376b2c427aa26051db61de70", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6b60a2c37e5a8e2b6cd6be3e2e2a693d4235e9d8e8faf6986c52395471ee037e", + "regex": "(?i)^https?\\:\\/\\/pub\\-fc22b13fd4a544748cfdf31d9dd00951\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bcd1fd6ecdde5ef8a08d456f272ff748d60b789608f39f492935286bad47ef10", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0cac24680c28fc65ea9515a73e83856df54c926b192d9ec297175cfa8d074629", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "44c7ad549612d555b9a07b453104aca5e3943c5e3f9fa20de850a0f9e3a9007f", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2939f50f1316cde5a569f62844034c2e1f21de7eaa06fee8ad4e93e607ee4dfa", + "regex": "(?i)^https?\\:\\/\\/ndfmzq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "eda900e29667c1c786f0362697ff3b1b59d04ae8712413fbdc552a3a673e353a", + "regex": "(?i)^https?\\:\\/\\/tjjfcf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "4fbfd8cd6c383b72e3e3adecbe0499c9209c248560b7860756aaca6288715d1a", + "regex": "(?i)^https?\\:\\/\\/www\\.ngesjx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6920dd38e65f935d653b026ea88f75740bbc623d2920e22aa1bef1ad899f4681", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "95fc6cf643624494f9af013a0eca2ce076b284f09d9e03ad33813f7b7222c178", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f7591ffc971b068f7bef42e433b66a48491fd0ddba8ccb31489f3a05e4c52c16", + "regex": "(?i)^https?\\:\\/\\/streambokepjav\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4275fb510df943a1987f7ef902d4071cdc9b3b7826a595269cf75f7c0bc7edb8", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbfx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd43c0a3ee1a203e338ef89b8e6f46f8bc9c22f5e4ed546a6d29437f7c0924", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f50c4c91fb15a909a01ec6231b4ea698c74c1a4196dd617cf774815244b58270", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7170009757d0882c5f586875c5d6c0f815545c5527c4cf1bb2be367f2024ea08", + "regex": "(?i)^https?\\:\\/\\/awfhxs\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c33937022a46256850a895119c16e7a7154f038ac4df07592fb29f132c9a3650", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c5f54905accdb8296ed598fd6e1733a862720108d54ec7fa69b5d81584daca8e", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1abe7fbaea9624cdd846fd71cf1a0031d6eb91392af00d17f6facb9dc52570e1", + "regex": "(?i)^https?\\:\\/\\/sefhtx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1721bb9d155c5e894b7e040436a96170ea6d8986f308b0d336c96962dc16a51e", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfjtc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "31116fe5e3e8e4b4ee9d3e0db3368b50bfba8d2c1b47248788d31d488563ce31", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9fa3b670ce8469324afd9ac51a664245f54e3d2470c85445173df3dfc01000ad", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "34f51139d1c24e2b0d2bd9557591eb2b88348bd0448b2735769496e6563d5012", + "regex": "(?i)^https?\\:\\/\\/dsnxde\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "060a8d048a3f3e6ed8428a9abac302d10d6fa9d041d3d8f412d6e7b179d0e526", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d278fd4ffa6f737d6a9fef594b3453f4e4d240823103c5ced8ade0f14fee54ba", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "efad285a8679e59b8c692016d812eb87fdfe17b62d9824805dc6610c13752b6a", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a1abdfd52bb9b01808629bd8629b0813c8ea02585255383599a837274c7fe19d", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e439c74480e519b91b9e2eecff5cea2d0f45fa0d38749ea3769dc2363effa9af", + "regex": "." + }, + { + "hash": "dae367137afa097ae596933a2326c80770fe9fbbaa09a75d61c0c96296c46cb9", + "regex": "(?i)^https?\\:\\/\\/kuyngs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5c1ecc1d5dec866b30c386ec19e457677483cfd2e4fffc0e891186db4d412bc9", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "41bdb0cc5618d231012a5c0b14b30b07df9731fcf7aa059e4a5f6e3f65a9ae40", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "814c4edbffe469c1820bd64b22d75395d8cc19bb37afa651132a61c41dfbd355", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "022dd428d9b7778478c6529ba4e1ba4965cef5476c00eacf1ac643c5588c02a7", + "regex": "(?i)^https?\\:\\/\\/www\\.nqftjq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "34c20506a5e2bb25b541bcea4e144b6c014cbc44b043f57e96bd5528fe6dbf63", + "regex": "(?i)^https?\\:\\/\\/www\\.ytrgdx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8429f0853f62c72528f129d12f2988b3a8fd4e3f237cc58cef141e17dc900d54", + "regex": "(?i)^https?\\:\\/\\/inetee78322332\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cdbfc036c0c56be704d8ed20dac6b6bc391d47a1bdf549d2743c98f5019e7c8d", + "regex": "(?i)^https?\\:\\/\\/jygbsf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ded23c09612e1dbfa75dcb40f6cde3bfaa095649d22b31ffe0db1c208134a445", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e4b4294ef0fb5e3d582c6a0b23cfb0edd3b2164ff8969c4bfa32c8f9dd7e33a4", + "regex": "(?i)^https?\\:\\/\\/tcfndz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "04414dca687e750fa852f3aeb2e94f6ef44ba1340a0ea490115876da86d05b81", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "334b2b600bdca3decabb11e60506cee4428e7223f9053e33a53b64e8b27f7526", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "75f4a58dd82aebed41da4e2bacccbe37c679819ebeabf8d91b6c151ab91213a3", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "932b931aee03a3a9272f51c372009d81f33fd52da42c709b8d18a2bc4ba57ff7", + "regex": "(?i)^https?\\:\\/\\/www\\.sbjgxd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bbbe793a41fef4c9097a5cc783df74a3376133bfc1443ed94587419417c54cc6", + "regex": "(?i)^https?\\:\\/\\/ymytm\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "88fc8ec288c7d764f8a576e1bc16e728a706a169d549bc041011e46c76e6b0c3", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c9695740aedf6f19ac8c58afb67c29b049521bc139f41f895244825794a1072a", + "regex": "(?i)^https?\\:\\/\\/nbdrjq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e9d5168857898c5907810b605a18813daf390c15aa813907363233df4bfe3", + "regex": "(?i)^https?\\:\\/\\/jmgyjd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0a18a52ec62874dfe151ab91a9b23f42c8acdada507fa1c04fc639bf6b2104c3", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ef1dbdaff1ac89082b51e795f06e0657247843a912fadf8f5afabd3840a164d9", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a054e97a835a3785acb44129f00b782dfb94abb3c8a3148d16526e93c79bd52a", + "regex": "(?i)^https?\\:\\/\\/fesxcg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e8ccc477734b3abe98620981f9745c456adbf08803474cbc25f97a791078f0c6", + "regex": "(?i)^https?\\:\\/\\/www\\.dsnxde\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "496e863f711450ec517a71df592f3510fac60e4017ebd9a019b5089ce9f1ea6f", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7c60cea04f6b96d439ff3f133b575dafbf2fc3f040f1ce2f4ef52a8d9668f141", + "regex": "(?i)^https?\\:\\/\\/sfdxeh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ff323a18e28a6dd7242f8c5133784b3bb7b0fd08e7196c0600bcb8abf2c5c324", + "regex": "(?i)^https?\\:\\/\\/sfdxeh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3d089fef30c03d0515c9ede60e60f36f09e82e81490046a683ec1527be0590c9", + "regex": "(?i)^https?\\:\\/\\/jygkcf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3862a663a1850536dd6739c72844a059f653009d440a3e63ad5fb795c17e4c4f", + "regex": "(?i)^https?\\:\\/\\/jmgyjd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d998d7f107702f3e9f7737993aa360a2a1bbf84e7ffcb50679d2d92ac8daac85", + "regex": "(?i)^https?\\:\\/\\/jygbfx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1e1222da698223e410fe27adf7175ad6d8c79945e8b22f929dbf4939ffcd34e3", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "45045864b5f4db1cf1913132e3363b0909b3814c9a3600ae78bda35e0f1c553d", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4a2be7ca017f56120e06f41e1fd9f11fc1cb945da0abd7285b06924754babf85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login(?:\\?|$)" + }, + { + "hash": "0c9c1f49621335621d5e3f5297d9c16feed2e4130bd81ff4332b0307d8d3d206", + "regex": "(?i)^https?\\:\\/\\/fafdvb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6b4d5b8e1ca2e886c4be667524f727e75ce0d379382de40a1633ad9f4544e81b", + "regex": "(?i)^https?\\:\\/\\/wbfahx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e6b22d8fbc0877849e75cdd50a70baa8cb481e81e1e50fb8ab7d565010242c4d", + "regex": "(?i)^https?\\:\\/\\/www\\.mthjyq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "380dff7b2c73846f5da9a9b73559db563158bc4ba65cdf16e5b7d8a1cf479bf2", + "regex": "(?i)^https?\\:\\/\\/mhfjtc\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4b6164df8425831bfd77c26435ee359eafbbec91ecfcb7fa4274aed2d16f2484", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfmzq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "831e4fab89996a17c8984c3aabb36757c12c86ae7bac6b8f5af856c6e8928443", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8474254122effe0e7d71c49f2a468274702526b0abcef219ce14abfb78def4d5", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfjtc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2847430bfb1cd9a073a379316ff02a698f6d48ad97cf0f955026eae54296672d", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9b4362cb58e2f8f97882a8737e3ba9cfd3d833f24514536f909a222b421e1eb9", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "513d19f9ed6352fa0b8d2b28ca62114cac25b8228fe2770bca99fa06da0502fe", + "regex": "(?i)^https?\\:\\/\\/jivgtr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dedc2b86f76b9707c6cbf5414824615bf2bac38836997be78f19639391030b5d", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bd01ad9db54b359b2aa8178066b2200175352128593b9c2bcf3ccc12688c7135", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ed821a400dbee21a531f5b724e53198dd3280f8490a0ab1ff0fe245ba6149eee", + "regex": "(?i)^https?\\:\\/\\/mhfkig\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b83987be5b1b127ffe690bbe48d7c447e57a2310bd49408b5088f605299462d8", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "960fc832ec05792c071a726ecd74c12accea63354181cf1634deaea187effcf1", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "294827d9fb721b86f68004b2b354a3c8c922f24a93a49810c1298303edc9a353", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d75f34a9f04e62a9f2b8bf65080ac9d2ba4b45c655aaa5080f99e602e71e6893", + "regex": "(?i)^https?\\:\\/\\/www\\.vawfnh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "be9acee3080321e6ab7ba1e33f571bcf99eede8e5dbee4556d9e4cede268c6c0", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3830140c06dacf8707e5e3c46bea70eb020e5ff220dc99f5d0b74c7b5efe09ab", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c85180a0290c00eff9e60f16ffe73f23156c9ef6d70822716b25315d2351b929", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "211637d88606cdd7470f56cdc6bc4a04b700424972ee12fc90e1544346d27e3f", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "825bf674cf7660d51c8bfd0a582e790d03cf4921564591f6732106a9596465d0", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cea1904d2d74d1317025f89afc1c7662cb35a94e9fec3f564233c6d82bdc7798", + "regex": "(?i)^https?\\:\\/\\/www\\.nbdrjq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1dd9f26629429340abb68ddfb594403b3cc29b6df868430a2978d6685596055b", + "regex": "(?i)^https?\\:\\/\\/hothitvideozonep\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "72a46eeb3efaf1df0c998aff4a9da64a022e38594f5be3be783876ddd209dd0f", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfjtc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c2c86de1404ba1dca325cedb61a8cded6f3ea3a29422989e982da01dfc93bbbc", + "regex": "(?i)^https?\\:\\/\\/bsdnxw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "39f2d7dcf6cb9918f6643ea73b97ab9822915b678ec4e2d189338a6752d78dc0", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "373a3559557cb911f8e97c7417e89a257730bc5aebb329aa9c1438eb8f08037d", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2e8190d452dc379c294e6b57c8ce0bbdf0d33ed691aa0f74197a36b3c6421cfe", + "regex": "(?i)^https?\\:\\/\\/www\\.yjgbcf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3e81fd193dc17555159292fc07127ee5718626a1ce9e5cbe4e24e942b2bf234d", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9b0c3ef227d069ca4a122da8e8d55388343bbc270d0a72a6f9226285fa8757bc", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "212baad431956ad4d1adc71db0be00dc13d851ccce5767def9e00c0f9b943700", + "regex": "(?i)^https?\\:\\/\\/mute\\-sunset\\-ecfd\\.bcgrohol1653\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b44a09436e18843627a1ae1006b4a2fe620dcf8649be6248593583350f763c6", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4ee7df1069fdc742495eca24521780cf3f56ae30fdd618352c1177a17721867d", + "regex": "(?i)^https?\\:\\/\\/www\\.bdsfxe\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4ba47a2fb01eb9b4af09af1e2c77d2df57db59d9f1cc9f53d5f3cdb8a846f18d", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9ce0e1c95dd9bb239920b68341c4c208c6b489b4f432a29bfc942c817fbb8bc2", + "regex": "(?i)^https?\\:\\/\\/www\\.jivgtr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "04d498a08cced22300d67142ca4474895c0a2ef3e1d2ed8b15ebb43d7a7213c6", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a54e5d711ae97381ef1d7a14ec5ee8be6f49d64d5b74ca21424925c318275db7", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8f5f37954fc091ead85845f292e9e1bd07de0b1dab70e71384831c66e3534520", + "regex": "(?i)^https?\\:\\/\\/kuhfnx\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "86222f39794db3a49dc10fd594ab944eb39c6c0aa73c2dff7d405653f4436830", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "aaaba3f36815bec55435d43405fa47bc14a27e93d1113265dc2ff0750333dea2", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e5b22651cf5914e2bc8aa8b44f5670d56e6990e1628c61b94768b51e15007d12", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4b0a93caf2d9ab31ee319592911f4d20705dce316e7c4869302005fdfb0dc1bc", + "regex": "(?i)^https?\\:\\/\\/mhfjtc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "51a7c8827db6bdfb732e8077fc276d78bd6954a1e6f3352c589ba066f71383a4", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c6c31142056279ce00deb40c2f2261d25932fc8768778c91c3e043e9581e32cd", + "regex": "(?i)^https?\\:\\/\\/jygkcf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8c45916a968e7afce6241afe2042b2634550d7d46129d946cedabab3f6fa2872", + "regex": "(?i)^https?\\:\\/\\/ndfmhq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "87786096363f0322e72e1c781669bf3920d8d56f3d7eb2bb33c4b75f9b6eb3f1", + "regex": "(?i)^https?\\:\\/\\/areaclientihypeit\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "7325809006857cd98e037c3f2369c1bdd0d73b89b829396328cbb261ff718232", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "852fa05cb2b42d7857c2f502cf1a46583a9d10c537fb3c64cdf912bc0e06e5b9", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "71d8b89e7dc35e534423c1596249f8a79e56ad5715bbaa5999c8ea95412c47fd", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "b228cd70bee9cd19cf8f19fa3300ee60219cdc7fd54cf28f416ee64bb4c80f6e", + "regex": "(?i)^https?\\:\\/\\/jyjnxd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e6cb39f459abe64a5928a0aadec7f3704347065539accbf3e829ef24f29e1333", + "regex": "(?i)^https?\\:\\/\\/ytjdcd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3f084b82fd769fb004871e19a51299796e829c74cc1bd553750a686bbb92b5a8", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4c5bc327e1693c757200475901f810066d752cf93089807d5dd02b94fe2e69e3", + "regex": "(?i)^https?\\:\\/\\/www\\.sgebhx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5a89fa56c19b27e388c42d46b237fc0849da79de95eb00b4f307593807a0a5bc", + "regex": "(?i)^https?\\:\\/\\/www\\.fbawvg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+$" + }, + { + "hash": "cdb0ea32d9c66c29fe7285bd8aad3bb8fc0276a4df093a73a13a06904e2bf63f", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfjtc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "65d9614cbcedcb7c567010a027de53bd0fe89496b14ac0e81f9abe050e8922a3", + "regex": "(?i)^https?\\:\\/\\/fndjyf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d6e5e843c25d68900eb08ed27787394b1ecf1dc83c716d24d613144344526a49", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "897bf25c4f7b4ab851ed80299daa2600d641c58936d10243e3dae6728b59f1b3", + "regex": "." + }, + { + "hash": "a58afa4b7bafc9019bf86c1c7a01e7fe43568d31697e273ca55554d58570c517", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a78cc9dcc98d0bcc5ac0dd14bfcdd44ce2dc5fa035480ca0d55709360118f707", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5921b605e8faa36d5b93fc3017465e30ba7ebc414e3e068e4b1fe2f55bcf6ed6", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0e9e0c8799c647f4d4269c28c1a26eefa912c85a3ec34a2b7a8e68d78eb977c2", + "regex": "(?i)^https?\\:\\/\\/ndfmzq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1b46f60690b001214c3db8673ad61b2e73ae6c8f5ce0e3a2cb01924e63272603", + "regex": "(?i)^https?\\:\\/\\/sbehxd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7e41db3ba9278cfd4fda4d4a9783c84e6cce22ffc4f805a546e6db55f2c9fd04", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "710e2ba4804f33afade2312fcc4e8a8f9dd57798b365c6591664eac6232b80e6", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "99738fc9cd0268f132c90d1f6e5e87c47c8f5878e63cb614ae8541a2ecfb4df7", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a20b317e4badd34695119507af3dec3b754d66b9b6bcf64d2cd0522933e45175", + "regex": "." + }, + { + "hash": "34dc4561e556c684dcc66ddf7d1db944086938078649bbba5cd0194796950167", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fde04a537cc44e5e29ac0ad1ce82f45daf7b8ae4fc424a16cce322ca944b85af", + "regex": "(?i)^https?\\:\\/\\/nxgdmq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0c5dd43c6c367eb9241c65d3147c3da1f21341bda198723ddae72e1d82a371c1", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cd13902abd9487bd0b6042b10bddab320fa08fd2779bbd728d6e4e53c74e65d5", + "regex": "(?i)^https?\\:\\/\\/segnzs\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "da184db377aa2f9b357e9ee978cfb24c57a46f2fe5e277744880205fe81afb99", + "regex": "(?i)^https?\\:\\/\\/segjtx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5b5d12adb3d26b5316ad0949832e71b629bea781e99c30023f786da0991be759", + "regex": "(?i)^https?\\:\\/\\/sbehtx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7a1dc9f76317e8d024cd11351ab30b35bf13ed2ee0408856521ac1adfcf1e070", + "regex": "(?i)^https?\\:\\/\\/inetee78322332\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f7937adeea293c606400705ec65795023f0c084303d96b24f93fb65fcdcdd7ec", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "54d753829afe1387e74691cd173613b57f5264595365ce0d463065c0338247f1", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c8f4520d4aa5d08d7eb214bb3ba87dcfce52c79251195434f4dfc14885bd33f7", + "regex": "(?i)^https?\\:\\/\\/www\\.jivgtr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8e643c32da6c537647abb7aed1adbcb5a10cbcdf07baaddf7bac68732c57c926", + "regex": "(?i)^https?\\:\\/\\/inetee78322332\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a82625941ee65ec8311863671c470a52dacef6c181576c49fdda98a655caf407", + "regex": "(?i)^https?\\:\\/\\/www\\.dgbsqd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f82254ad10e074583184662b08aee26663f59570086b12eb49aeade26d3c89a3", + "regex": "." + }, + { + "hash": "641b0857823b11c08f13636570c835fbdfe4d9f3f5a22472289983d46e05a6e9", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "55302474540f95b5125dcd580a4a7f4e5bd857e5083fa10406fb77e331be8541", + "regex": "(?i)^https?\\:\\/\\/hothitvideozonep\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "52f6da858c983293297423570bdc9d1e5f00e901cb77d725199e78ec2a48b131", + "regex": "(?i)^https?\\:\\/\\/mftjfz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "20edabfc9b2bba5f4bf7c7042079b0f7089c48ea2974c6c53d204f18ce06384b", + "regex": "(?i)^https?\\:\\/\\/maksus23\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "f77672bcbefa8ace27c4c8312766a915957dd790df924bb9c3d8f405dfba4e39", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7e8ae09464104ae7c4ddeab3ba7c4434c9f4129ff0ce99446ae0ed27e69cbcef", + "regex": "(?i)^https?\\:\\/\\/vfawdx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8ae81114fcf555d309f7580baa0b9415583b9fab2ed73adbe3e8d4b78ed21b61", + "regex": "(?i)^https?\\:\\/\\/mhfkig\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c9fee6c1d4a5ed85013635aff59ebdc80146efd168568b8fb1476fd9f40d50ce", + "regex": "(?i)^https?\\:\\/\\/yjgbcf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b274a53a9fcd2f68314b2907d6e8c28886274328bf5e108df113f75478d02ca1", + "regex": "(?i)^https?\\:\\/\\/kuyngs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "53bed94743bc71cff4825008d7f0bac077ca4d357018f37c59e9f2e0225b6885", + "regex": "(?i)^https?\\:\\/\\/www\\.fndjyf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3601aca50b25364f0faa1354b7f9db3dc40b872fe8f59917c07fb3fa63089c79", + "regex": "(?i)^https?\\:\\/\\/mhdfjq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8b663d96577898bc6e87f996035cbfe7c7b09820f4f6d11849ac9bfb32603924", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "152160569275b7f6f4df8ed529fda934da0d587e20fb81e089f775a3fcc4e453", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c25402e62272a845b688e818fda6c4985708462d1575ccebfc2a3bd0fa11615f", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2e25530a342b66b87914a972ae262aee25871a4c587b82359e1b65057467d2ef", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "76abb4f2ab6e3aa719939a87a94692d15c760f7959892b7d2c78bf8aa2fa8651", + "regex": "(?i)^https?\\:\\/\\/ymytm\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "06799c837953ad99cd9fff5fa0ae79e7232ace4f84934d1ab83885e2357502db", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eae5ffdac5674adfed6829a326ae5a8eb7a8c8670444f00de6c2de1beaabfa3d", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b58524ef23687b4a4c9c0f4568d914056b3812ea7935dba6ab88f9f17684990d", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "73b24295184bfda6cca74af498465929ef4fdf4e879b8113c7c8fd80842c78a7", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d2ca3bff0284cda16e2908bd867d933623ef738d4dc3312a042ad5e80b0c7cb5", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "dfef3a3a749cdd671f6e02f495cde19387f8ced70ca82f95624b20c88ed55aa9", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "99f942d8ea43a11c910bdc5046e77ff29edebef82c7c60a712c54d874702829c", + "regex": "(?i)^https?\\:\\/\\/segjtx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "aae48ed1ff7ca653e8b6bba0371bd802aedb2a9a6492809cf0aeb900fde47b1e", + "regex": "(?i)^https?\\:\\/\\/wefhtd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "872398129859297718a28887404028ff5e76b537985e37bfd36a47cd38eef00e", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b80ea687e0b09184609a8b915f01f6b5aa96d5728aa8d6f19d5543a713aa365c", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "87a36f7ce22a074ecea418c11a601d1dfa3ce32efaa74bbb705b1354d0d3bf28", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "10e0e5e51762c929e98a60e9a4b66575260bbceb3eebdc794f678abd86b33640", + "regex": "(?i)^https?\\:\\/\\/areaclientihypeit\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f79338f0141d4f4a6205af699f81cb76856e2d7326d70dd93e253cf67d5057d2", + "regex": "(?i)^https?\\:\\/\\/fafdvb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "abfabfa8b17005d95c5a8b6efb7f1fe92346eb3c6ec0c2c27dff4976a6e9a102", + "regex": "(?i)^https?\\:\\/\\/gemsjg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2679bca09a70f60b97f009d25b55125dbf0e16b2f86655023dab43306313109a", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4824b9df13e03983c0b1efb5bfabf3c1c9b129ed9be4435b27360946e6579a50", + "regex": "(?i)^https?\\:\\/\\/www\\.ngesjx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c2f397b93e09bb23ea319296e328d9d088eb753767b542823a06d14f28988480", + "regex": "." + }, + { + "hash": "710ef1f91bd8826cd3803c9c18196b7d3b929c71338f6624310df08befde2858", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "14ea82da79ea4f3951b6a153499b47627e974e8633fe2c63b9a5ecaadc99bd33", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cab903f9bc9daa12d50d3fe4ed4cf64c7b520c738c0e81c8dc1b4f631459828e", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "baa0a296342d2f6f482ea2bd0aa711870f3014792635f0e6f52d107737ab0d1b", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyghr\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "20588cf2c4700b51121f00e08e953cb6dcde683f480807090062182d28b9f31b", + "regex": "(?i)^https?\\:\\/\\/bsdnxw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e38454514905de46d9438369942d2110b9a95233e533c4bf9843b816175c1ddc", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b974388115e0e3eb424309be5b3965bd8276bbbfe44320954b447fab59de8265", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f294bd9d0f8fef25441016d2ae353e41b477f07aa8c807c6e0a84459e1d7ffd7", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e7c09211a126d8e8f62080ea22994ae8855ba46be529b69d3875bb1363bb9a38", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "33fec4301d4702b8da42abd4159ce4e3f0822f6e2d99df00aaf0b93900cdf872", + "regex": "(?i)^https?\\:\\/\\/jygbfx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a42e9b1f5526bbbfeb4380c0dd22319c418ddb2de14cc04d458f493ed2ab51c0", + "regex": "(?i)^https?\\:\\/\\/pub\\-03c0d00cfa254d748dabb567fca2d48d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bc46c2c5098c54d0f4a70907be84fe8dca89eeb679da0fd4b6457924bec8f973", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "63cb1bf700327ebfb4da74fe4638308474ae79d3e9d244b48a43a4c638954096", + "regex": "(?i)^https?\\:\\/\\/davgxd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0f771d3b4ed8d9e0bd70f9814419580f2f0199527501c277c7f219d87402677b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "097f3f578128255b3177e09e770b781c271a01cfb2a1d04240a2f6869d79b554", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "547a72441f52e31cd1b52a8a15fe6e58319f775d47dfed1cda5abf9ca66e4bb6", + "regex": "(?i)^https?\\:\\/\\/segjtx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "44ec18c5d73cba2147e34c793db862b06106dac9e89d8a53c2e9e2ce7d200c56", + "regex": "." + }, + { + "hash": "b73ec2600d8855d368a91125dc5916d23deeb8d7cea53fe5a35093bc471d4ed2", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6ef262f4d52335cd34393ee2ddeb79fcb83b91b8e2c4b9a9406b9f7c226fc765", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ea287924ddbd070bc6d4246ea6bc778311aa2af02066522797d7211019ef3de0", + "regex": "(?i)^https?\\:\\/\\/www\\.jivgtr\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "36a6d7735f3de0d7e8a0c1b309b37d33c1c53a9fe9768394bddee551bd7ae505", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "49ef6a09aad2061410610da4720349004798b0a88236eaaf548548335ede8ee1", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ae2da16f49a4b102e243304e86890af9606289c49a9218679fbc89b904479bf7", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fe6bec019aa18d43a9d825be7aa6aa2b287cddb6febea19951958630569c013e", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "edbccaffd7f7a478e9f08ea8ff05294fc3baa6c4119379a0c7efe80ff11b08aa", + "regex": "(?i)^https?\\:\\/\\/sefhxd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4ab69d2fcc8425ee4258be95edfd7d5f64801c6405be152d72b096e1a01380e4", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfjtc\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c623c5eaa4f4e2b7ae65988b9f921d74c8e8f22b401921efc5cfa039842f844e", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c0a9429cee492edb3ef5085ccba8b8e63b881b5acc6b4eff701e8ee091652f22", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1ae65350be16d0dde5e036f7d284708267a326e63abdfbb9c6ef12935551774b", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7b1c100654816a44a82600ebe490edab6e958818b4be3c4d3b3c32e2c17d650d", + "regex": "(?i)^https?\\:\\/\\/www\\.jugcfr\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "93b886682ad4cb40a6f208bc1fed22dd463835c65b2a95ec462ba6bc257afb79", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6f5036e552004cb39f33463f22a43016ed5171ef0d4797f3df841ef9b5af3537", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c343a7bb7fc52bbc560f3eaab6c9c3861f79a51a7829bf78b1380306518043eb", + "regex": "(?i)^https?\\:\\/\\/www\\.fndjyf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5b40b3bc23442969233da2269520d45cefb44e5178f1ae285956a69b86470e13", + "regex": "(?i)^https?\\:\\/\\/davgxd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ec3265accab8d0237fdb0ae9f27908eabf553da4b320ea6d74e73d128109eb7d", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8ae2df107e07bfe9c2175322528630c654c70a84de366242faa0e95916a3b726", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "59eee60c6636bb68c1fdc687ce9ad524a1a46adc739175dbdca2c0a6716df8ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "bec9a96e03add1d0d5eed701a16add2386d5748051502996224adaa4d219195a", + "regex": "(?i)^https?\\:\\/\\/ygjvfx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c455483d4025ba1730212d072ec7c8c75e35c5a045e81b288d8acd235229a8b3", + "regex": "(?i)^https?\\:\\/\\/www\\.ytrgdx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "278c0e3dff197d9ac1653a962d40e6b1d6d91073513548fcf897100a79b5f4c5", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "413aeed98d2cd1c47a9da624c9113ed73b1ff1588ce6356a698dcef7a45f7c21", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8627831c2e9ba6fc44ac46596f13f324bca38b64218df8fd89dca67f755ea0bb", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7ae36d88e3bd74b54e3a4305926735da9f307a9c7dc01978c88c8bcc78b527d7", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a32c9e9861c35d6f728f178f250793c349796f8b4dce5d8a2862d95162eb43ad", + "regex": "(?i)^https?\\:\\/\\/yjgbcf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c7d14496b4bf137bafba7c3a0dcc160fe5732b627333cfaf02069e086d5b8494", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bec934f72c4754b91b9c70e59a7dcc8c225e2e155336ca3d9dca9a6aed0ad989", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "aa8f5e3bff4d5dce46a1506649432c95140a13fbe10f0cbb6d9b3b3c317d1c83", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ceb2289778920af23f30677b375685d310a3ce8e3b4a22833cc720cc4e73a5a7", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "bdac9b7628d620a1d4cfdd687fbf15efc55510a5acf8174a87ca176d00f3566f", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e77cf14a08697beb3f22e27e02db603203365f8b7df233fee2bbca94838586c1", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b4bf3ce1f3837daacbdb42cdeddd0075aa9f36a7efded6c62fc25e6b70de5ce7", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3fe263bdcffce039f49e00e44c8d9700b5b0ddeeb90a792b168c96dcaf994f04", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cb87e81d10225616ee75458cc36d76d6f1f820590f21018235a1ff162b7e5c11", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8f88c55c4b45d6fd3908563fbb3828dc4113dea9714b73744cb9716aef27a311", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e4669fecb5c258766bc9201b12988b1aa579bc8fea1877aa79c943b908e917aa", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a487f5454cc36669a8e8a4370ae77cd211b74643459964aca2e880fc94048028", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "87d808095c647b17a3102d8913fd5fabb7528ee4d4ce752c0f8376802d79abfd", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9584f1ab5fc55e1cf5d6d6ffdc3c7883553a2510b913bf5498faf32bd2d183ca", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c09f4d6645b64ce7229975846e345ce5166ac41934885c6ed4b23de18fa5b07d", + "regex": "(?i)^https?\\:\\/\\/mhdfjq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7b3c901ab0e1f065f708ab5f339b1fe734e757cc485ed251703af0603e975f39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9093[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "424d0c4a49f8ae766071782f9f4ba60bda6165fc4c643650432d3c7dbca4d4d7", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7a2834397076aa0716e3858887a494d5d9cb3e6a47a7cef6208492f743c56edf", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "76ccd550634306bf666cae85615f38706e4315041fc864c34aa380fb1e405618", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "acb5c6022aac0690a50ddd66ab5bd42b60671c9ce452ea3a3f3fb2715136a29d", + "regex": "(?i)^https?\\:\\/\\/fawbsv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cf06edecf19cace2b3854f24b823f78a0acf598dd10be4b43b1bb09ce260ec3f", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3b0e6db472be798b9ea75e65ce57c8ada8e0def9914fcfbc66ad7b63da473217", + "regex": "." + }, + { + "hash": "8a1b1079bfef9aaf2f83e8479025046f7f462fa23cfcc9e579c6622f4c7cefac", + "regex": "(?i)^https?\\:\\/\\/hothitvideozonep\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7f7b3efbcdad90f75163aa214d3824c3853ba6607b3b24ec32c922cb6b1712c5", + "regex": "(?i)^https?\\:\\/\\/wbfahx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9e7d71690563a1aff642d98614d9f64362c6aa369808ab56a991228f45568956", + "regex": "." + }, + { + "hash": "08950db1d7f208c6302b89f79e2ffc692422642f0154bae666a87d26bdd4aa27", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c339048512cfd752c3df46c562bfa1383bd71401c6d07d9c4367d15b9414d944", + "regex": "(?i)^https?\\:\\/\\/www\\.nbdrjq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5898541d436589fd97af2a3161220d20bf0da76e21b80e67a56d425f409b912d", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f6303aff9a384ceb2ba11c6cc620958eba2eb49318d8737e3c2c71fab9aef973", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "751507c117c30e9601a5cf09f26e7b7cb75be4958338c4c5be9d6c3e5ee0e599", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "78af855cbbd2d74988941c6e034d12f40bb6335f4f1c8dd04b208354455b49a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "940404322277f33d1ecd19db3e60f0a8e646fe43ef8330d69f893e1a70634e4a", + "regex": "(?i)^https?\\:\\/\\/dsnxde\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "96b149661d47550b9f8d20760ce7aa52500fba72bbec14e080da20cd2396bdc2", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "aca8d8d0177edac3641f94478734d8132889f86d99554b11728a8d27bb0e18cf", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8d9b15d79a2fbcf38ddfc0d44db7f7ed425604bf8a88e0620cc992f4852f4418", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cb8790a968336543f6041cd32f0541dea9ef5e4a8f1ae39ae3d1756287f7b9a6", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "dc8e4476db67efc0967c4149ce26d856d0fa3046a524108fda25dc7ae6b806de", + "regex": "." + }, + { + "hash": "6faa8a21400db2a2a18064704a1cfa823959a62a82ac212b9c8b1ccf4b370bd8", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "953df00b202e8304182eb4bf18dc3174a32ebd4cd971b8b7190753ac07672b3a", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "da65104ee256312d5fecc6c5203bd9a381bfa51b6644262c7b36d06030215d8e", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "844348d6796eb803abb03659ba9c29bf51aa7050a1a60ff6b61fe4c63ce2e3e1", + "regex": "(?i)^https?\\:\\/\\/bsdnxw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b35e4fcc0514e8130722885474d9d38ef240fb94c898136a83be052807c8fe07", + "regex": "." + }, + { + "hash": "641dba256ae0e6b5b796cd3c269a1e83fc52dbe9c556213b60122f9bf860f5ad", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4609022fb722a28869ed02baffaf1174cc30373333bf6c2edab8b4e474c357a9", + "regex": "(?i)^https?\\:\\/\\/ygjvfx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "899e8c57cb71c12f6f0e6b550099d53a68b6775232eb20743d8877610f72462f", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "042dd21846394c85e15a3700b41acb4d839cfd09e479832ea5c29bf954f3d6b2", + "regex": "(?i)^https?\\:\\/\\/www\\.dsnxde\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2992c2933ee55bf0d74a8e51c632db9fc653629583a950bebf7b0a4e97b4e559", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4dd1c818e392f5f21dcee001a6110b274de8d2b9d865a1c22eead49a772380f7", + "regex": "(?i)^https?\\:\\/\\/sbefxs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1fb572e0cfb8a25da9efcaef33f1d69a980891d68a950d78a29cd4488083c3c1", + "regex": "(?i)^https?\\:\\/\\/mjgygd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e0df9978b4b35a459e2620ebf47bb0e2221adc51d9b60071787bf8c92f370a4a", + "regex": "(?i)^https?\\:\\/\\/nbdrjq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "549737568421344ba5b5d71d097d4333fd4e4200fb32f6b3f08c31214c4c0aa7", + "regex": "(?i)^https?\\:\\/\\/www\\.jmycfs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d3693c0192417fe41668e0fe2e1bb39b9f73a52d39bccb4c248d47c36a99371b", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9f6d98a82106ff59e7ad6da7d2ad098069978521f1f5d1e1f2eca2e527420c51", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a1790d20029b90f22c1e06542a1c36736e95a08111b9a2ab391638e8bda1b825", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cfc87f75c35558f35a5f66f01a227f160ebac71ab7264a30e874cd0035b27602", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyghr\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "eecb17a58b34dfc8b17e32ccf8d50a51f22fd01bc5bbd43a82aaab073257a005", + "regex": "(?i)^https?\\:\\/\\/bsdnxw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a43ee85cbfc4e65e5a7add2ac26459a0f69efc1aacb4024b38f382c63ab55b63", + "regex": "(?i)^https?\\:\\/\\/www\\.sefhxd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6b7a2b32622ef440408c9c543efb7aaea86d8f5bde709b75e0de7cf99bc75331", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "18f2a899afa56fca25c72dbb35bf2e048b850ea61b9d2ad3b554fcff54d9e59c", + "regex": "(?i)^https?\\:\\/\\/www\\.yjgbcf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2c549413a8e48d249a8fa4e2c08e59924146748b1af1d0c11f3a5214e1728b20", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f9a32c4257681388f44fa3badbdc6272650c4c62c6c6f0f53ce047c420e7f8e4", + "regex": "(?i)^https?\\:\\/\\/wfvzsc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "897b90a4d0dab1e1b67549e2af2bbf9fd5656a799deccdacc537fe02d8411b0e", + "regex": "(?i)^https?\\:\\/\\/jyjnxd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "68b20dd01a4bbdf77d6e6eda6aab5832f8e61a1f0c990d1fb82d20ad34e3fec7", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0ee4f82ebe3b0e28bd25c660707d7f8fa8aaaeacf921ffc3786cfd7bf962e63c", + "regex": "(?i)^https?\\:\\/\\/ygjvfx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "be58b9a5b75d246a634cd4846dafbb9fa20fdbd8ae9c6c8b35b939a48adeef47", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "711fd378b43ccf8a68f69d97c023655619d6416a39160a71cd27626f8d9255b2", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e3341f526c6414e159ba533d42cc153f3dea74386bd788e3eb62ddb667d4b6f5", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "983e369de40b7d5fdc155fe4135a762c73bcf00eeefad64771ee7fcb0fb3fa4c", + "regex": "(?i)^https?\\:\\/\\/www\\.gemsjg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a6f4456326e242a0459422b063996d86ec366d3fb9165a3d31f87ad52213ae10", + "regex": "." + }, + { + "hash": "052425259f4f03ff66227b0d35bd366245ee8b5cb8a396a4e77d63a3eeef73af", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2cb737b16a835a02371df8ba55cb7e3a08b2da493a6bfc693cfddcf82d2317de", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "adecd3e4756c24c17579e8c4317a8b398eeb57e48cda6b2cba84e31cea254f1a", + "regex": "(?i)^https?\\:\\/\\/mftjfz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7da9053696deb7671f400c47a071dede89edf31f12ede160b81f2aa5075a99ae", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "034f63d06c593d72b7864279b213a82d6df6d11630d21e52bf3d7c39d139405f", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cee064e1e5a57cab4f5e0bfd0ff8d8fdfecc2774e8f9800e2de34239d6668c95", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4c3dfd006281e07290db090be9bc67a0bc67cc326b1867ed81acca4134e6322f", + "regex": "(?i)^https?\\:\\/\\/sbehxd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7bd9687216dbc3f3982576c3474505f362d53eece5635bcabad09350cc6a43a9", + "regex": "(?i)^https?\\:\\/\\/www\\.gsnejf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c1e9a490d67571bb864231ba021d5386f606fdc3cdcc4441709a0cf0551d280f", + "regex": "(?i)^https?\\:\\/\\/jygbsf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c87f2369696c553e84d4c76682194587b568b5bfe510201c29fdc1cc94718ac4", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "914166d90fb53cb0d9fa80a31f863a79de0d01f9ba27914565f7d15fd104787a", + "regex": "(?i)^https?\\:\\/\\/www\\.sefbhj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b4db6b977cc4deb1713e17c19473ea4ef60f6b837d18f208e8b3ff7c05629bf9", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "85f75ce457d20e9f9af63fe6e8765194c14c41a9554b8bffbd88f7c1fbf99cc4", + "regex": "(?i)^https?\\:\\/\\/www\\.jmycfs\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9c9d6b0ae1a78c3db419ecf3f6201fa0900f2b8f272bd11cd75194c731ee75c9", + "regex": "." + }, + { + "hash": "c070839209720e659a511f67a93791c212861e369c3ef3142b62c5bf0375f580", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f38b8f7a267c0a186230256569f6100d888fe34be4af28ddf6d8600ee74b746d", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f2595b4f74c8214b464ae2cbdb35e6784385657d880ee8a2b9b9f80900408990", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ce8620ff2d0a0947fa634a8376f7837ae8742caa67909a16db841d940ab110ae", + "regex": "(?i)^https?\\:\\/\\/www\\.jugcfr\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "b95a7ab1020266b3fa4eeb83bc001bf7df5cfef734b2fab3e87e8e84a3f58c24", + "regex": "(?i)^https?\\:\\/\\/www\\.sefhxd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "79c48d095f070a8d49deea997f9e1f4c5c959a4a9e23ceb901a0c5786da547d3", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fb2913ea35901d02f2fcaa2a1d421536addb2b933e5e6ac3bf79e5a33bafdb12", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3a6b142ffd542048808968a84b7e93212cac2566009ce1ae6398c5372a4c661b", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5e885924b33aaa455ddd837d6e7f8565459daedfbf255d5ec9ee20b38656843a", + "regex": "(?i)^https?\\:\\/\\/www\\.tcfndz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3d8ace4735d2dadef492c5c5d1bfdd14e9aec60771901e34a9bc770980543ecf", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9bc1973f32a4427ab19a60aa26d71fed75baefe939b153845ad12f11ad354135", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "43bfb73cde9d6c0f63f780cf54e0b863ec3e590ce2c5150b2ef5fc557ff565ef", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "2c2befdc8ad52c92c0ad5ed4c0e70d3897252466be16487ca0ab1eed39fd9d02", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "909ec57c730d2061f035c9213ee0dc8052f6bb90239adca6376f8e4200fbbf6a", + "regex": "(?i)^https?\\:\\/\\/www\\.jygkcf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "80efbc90d50cb866cc1c827270abd458aa0691ea6a419495602d2127ac23a7c2", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b3c49084aba05af46c37929be3e7b69d2337df85f329ee879f4b96bfe41f6dce", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "374b03864fced324ee91078c113160ac6cf042901f3fe25743440f1a74bff49e", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a5847961b336730d33721d38ac3c71c8eb1c2e58e5fb87269f17228dd6512293", + "regex": "(?i)^https?\\:\\/\\/fawbsv\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7b258b516986c727ef58fc27ae36cc7794b65ab260a75af464f34a3ee45aa830", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cb1961bf4a7f262e1052ff0378dede0e09581d65360c8e505154ee16a90122b1", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "87a16fd35f31c80aa7c57936245655ffea2d9b657ceb373fade5366981efe1d3", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2637f2c95246c6e0a790e1dd8308bbc9f064f70583329afd34e61bcce4f0bc96", + "regex": "(?i)^https?\\:\\/\\/www\\.sbjgxd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "474a3c9fd88e12ac6e7daa5bef8e85093cf2964357e1cd7885a47ba2c647d703", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "ce16e25946de0e1c3a568d44fadb4a685eec3c1ae68bf97efd224f712604d4cf", + "regex": "(?i)^https?\\:\\/\\/vfawdx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "942dedff6e557d561a64056e5130620da9212a30b439ca79ca8c8dba7d79ed10", + "regex": "(?i)^https?\\:\\/\\/tjjfcf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "47c05c3a1f5a0d55ba7a7b76a6d71a8bb3c2d610f355c161646c7617a9015a3e", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "94ea8590766811a8530db458c930514633cc4f1b02a8a344bd2dfbfafa898fef", + "regex": "(?i)^https?\\:\\/\\/bfanhc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c817d866767b99476f9bfe2e0b3c8d1bec2e39e371e3a41c87af30ff7089958c", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3160f6f1ff93759ec62c477cd503a1d7fdcb6907ed864f0dfb68d8dc02fe6b75", + "regex": "(?i)^https?\\:\\/\\/ygjvfx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "86a673d9f9e1becf9056ce00c4542a452b74696bfd0ac5409f9fa706496a0de5", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1ee07e609c36b347a7cf08d69ac17c4a87eebbc64b3ac5ff5d92ae690a216a36", + "regex": "(?i)^https?\\:\\/\\/mthjyq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a41907a9c722ad6a902f94536b5a5d4f9bf54a99601f293f16976cfb7d00c164", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a3d98abccc49f7b50a9634ab8925164af5b708a45c4d9690697451fb5cddc218", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7da0a417f2ba50b1d9afe5d99d8b9314ba2960f55dcaaf07e55afa5426346624", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wowk39[\\/\\\\]+login\\.php" + }, + { + "hash": "6a9d81d3a210e9a81d0a60702783f9bee4b2952d75c92ed9a0a70d3ab3ecdfa8", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b6c15b1b58c54ad332f6bc9b4d92516f58584679b73724a465c9627fb6bd1b67", + "regex": "(?i)^https?\\:\\/\\/uykjgf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d467805f508d332fef5be5c229dc77ba8967fb1d290a4c2d0e6d1f24e7d13", + "regex": "(?i)^https?\\:\\/\\/mhdfjq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a41bfa9bb1aeba698de5c911e47b5aaad16304def32563ba17c27a8e355acf92", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "081bc015495f1119ef6e24da26e06f9505036184a2d2d81f52c9063139a5e3dd", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdnjt\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4ed33fbda16d9469e47c96aee75833a95c74e512a4d24c4fdcda1210eb4419b8", + "regex": "(?i)^https?\\:\\/\\/dhfmjx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "411d02ba9b744cce8fbbdfd03eed646a7c374acfbc08d65e7d642f34663c1807", + "regex": "(?i)^https?\\:\\/\\/mjygbw\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "393052c0b3f95fe9caa1f6ba9d9d7bf2919706bcc2ee08cac196c4a9879a5dc7", + "regex": "(?i)^https?\\:\\/\\/areaclientihypeit\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7723a5ff8a66bef6020fc86c7ae69763cc3d02f1fa8e6a6e0094114a24a49c23", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f3c4912853275f790e008fd9b8b3cdca1f98c56d9543adb5b60c64ff3e3e7aac", + "regex": "(?i)^https?\\:\\/\\/mdbxdb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "56bb50e040a85940edeaecc292bbc546838cd598665c5d3086ed77a8135a3bd7", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "98adef534565e0271df15bc484c0693dcc57345480f5824cddea4737002d12b2", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4d7cdfea5a6a1a1544cc753220c4585c242b8e86dbcd2a187db6bdbcc1537670", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c9de79c042992dead55bc9d95979274c0343e37a7fd1c5415471e222253c3a65", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4eef150f6c5dc6581bd50730d12ad5373790ecc29dfbb8c41ee487a1dbe65365", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cdae5d69a3a311ae844a1db0739920968bbf6d2a93b089edf342ac97ef609dba", + "regex": "(?i)^https?\\:\\/\\/sbehxd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c39eec5946bd85b6367012c58328f66b1b1da0ce51bc5ea68b5697c91d816bac", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "72bc85275195b9a63fe0cda773b261b55d9e5bc6cedad2f1fb2fa9de5437b8a2", + "regex": "(?i)^https?\\:\\/\\/nxgdmq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4ab6964a3941d1e99caa34449bb057cb870d7373b47c4fb9fb549ea8b4b835f6", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6650341fc4b0f1d0390583a3684c90fb5059640312371103ddd40daf82d62593", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a3a8f13b497ea0d84e3b631c2595f043a94829050b1d968c24c974ec8192538b", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f08d309cf4d9afc3d4a5b6d6c729f1c712b87f596d31e7dcdf5f26a1d716e769", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+confirm[\\/\\\\]+mobile(?:\\?|$)" + }, + { + "hash": "a4bcf37f0f73d26e4c68b3e15eea541de0f4dbd01c8980318b47ff6560221028", + "regex": "(?i)^https?\\:\\/\\/sbefxs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4fb4a4d1d9089be6fdbc553c1faf327c7cb65ecf65f8d13b31be05480e24951a", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "33efe46ec80e95f047437b7bb2a1ba78723de6325d989b6b7be42b4c938f1826", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "46a78b1ef1e6f0e63a160d579332765ff5c4df39585e81dad7e04c893292c382", + "regex": "." + }, + { + "hash": "d61449dd071f50deeb3b828d19b7613652c8fd0003f21923adc7965f3fa193ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+debit\\.html(?:\\?|$)" + }, + { + "hash": "d36604323d3c9fa87f11c2e0b40696814590043ebc784ed196f0d3bfd670711b", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1dd860c2b0d1eb8af46bc60010cb65968cba1fb40b007debd82e8ae7a928eb2f", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "29e7f00659e2a78d19507f1300bd0486eea4bf8730b5a07ba86c1a94cd04cb5a", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a43c756fc0d3ce5bb962cb5e8abf2230bade0a8ce72c86b6a605758e7bcc1709", + "regex": "." + }, + { + "hash": "3b2c0eb416ff8495b6ee0964499648c8f70576ecafdb4eea89a3691992154408", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "29e5385513461295decc33f40402f1869c9f8cee8466b44e95e7488be49e0a7a", + "regex": "(?i)^https?\\:\\/\\/sefhtx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "26005a552b0d5afc7c620017a36e31b1d6cd21c1805c47ecdc6df55a4e8795b5", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d87847f979850c6b18a6d7c2f2a3dcc605d6bc806fb5ea63271e97c9df14f84a", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7d06935ab6b4aa58c91d523efc4aa801f5cda63ff982d329fbde61b8cb52fb04", + "regex": "(?i)^https?\\:\\/\\/www\\.jygkcf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a99c0f087d040717fff1d880331f88f6f4134ecb8dd3f82b6fa5395e19519699", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsqxd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6860c48e36f986edbf5c00f15d937beb411675c8ab49d834ee68c49ca79c597f", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "70849c8c9fbe3ad26c0cb708160d2fda1340a7eb5c87c7f211b50baa2e0cc971", + "regex": "(?i)^https?\\:\\/\\/tcfndz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "94f26188f5a57b18a3045dc0a5f9cedd457844a0109029242ac129483da0c939", + "regex": "(?i)^https?\\:\\/\\/pub\\-1060ae5367c34d2d99d23093614fa308\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8612a5360fdbb46bf2bcff0c60c3b75bc1f5e5e1c2d1021e13ae5929a3efbf06", + "regex": "(?i)^https?\\:\\/\\/sbehxd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ba7c634d497209c1466169474f4141814f3603f4d5e30fd2fd88b215eb6fac72", + "regex": "(?i)^https?\\:\\/\\/mhfjtc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "59b76eb4585301033c10c98df45e610f9f87cdab5bd5db6c9b5478e8f428e81a", + "regex": "(?i)^https?\\:\\/\\/pub\\-ce7d54aba31e4c5bae495d3cacdb0a66\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6286ce21c46a929ae88eba2ec46d9d944509c1002f861daa1e0d85013f57b212", + "regex": "(?i)^https?\\:\\/\\/nhtzjq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f5edcc051282b9e00f9ed54a902334b067d2e613678c524011c169540c5741e4", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6c0e560d667e2a5e3d73dbc85b417002a8fabc7f30bfb7cd5459429484065929", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "283361b7efaa1db520b8a482b0670c6a2a3920d4e2256c5b2962135ea6ff1100", + "regex": "(?i)^https?\\:\\/\\/ymytm\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4c027994c3de1ab05bd13d7b93ab43db26edfcfbb2e6fe4de6d987f3168d93d0", + "regex": "(?i)^https?\\:\\/\\/mhjtcf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fccb66ef276731c1c30f1fb57ac048f93c21ee8d2e902010e7ecbcd17f842d3d", + "regex": "(?i)^https?\\:\\/\\/www\\.nbdrjq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "15d7c87c99dd2f1f64dd4c6d6952438cf5915801ba8b2009389d02a4be79ce1b", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "71ab153ad706d624b9e932cfa54482ad9e290db318f8b2a31e5a12f54bc6ea14", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "922315ac5740eb5521089971b386bb9463148ba38d3415ffb16eca741cd101da", + "regex": "(?i)^https?\\:\\/\\/www\\.jugcfr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a7d06567b94982607d4be8634c9d5a69e0c069bac6c71a56716e231f3d4ed11f", + "regex": "(?i)^https?\\:\\/\\/dhfmjx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3ccb7e2cf47319ec26eeaaf3815c2a2bce0da67ef68a2ebbd01104c41ef99697", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6c50374f46769941a8afa0802ee3a9bd97c59ad7c78828b980dac319dd2e6c5e", + "regex": "(?i)^https?\\:\\/\\/www\\.bgejcf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a65d5ed117fe6e7eeaad2aac75481791be2e47a1e1ec28a6821c3af47fc030cb", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "05da8d44461058d280d93afc7ed44dd8d87b98e2872ecbc042a3d7144a7d30b1", + "regex": "(?i)^https?\\:\\/\\/nxgdmq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d53133e590c0d16c4c9435ca3e939279c756973125fc110fc21894b08e4d001e", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "197d6ae4223d14c890977a3557082d8a7d2acd89aaf017f92846aa92ba67a244", + "regex": "(?i)^https?\\:\\/\\/www\\.sgebhx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "51bc848fa22ac90688a95b1c466daaff23f1374173ea85c31a45307b705e316b", + "regex": "(?i)^https?\\:\\/\\/ngsqxd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "43e400a6d04ee3f72d83736f4a4d850deddc0dcc29648365c6158ea42a7d91dd", + "regex": "(?i)^https?\\:\\/\\/dsnxde\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "aee613fecb4fa79b4c3733ed811cfc4f84bcdea08772a90870ce05b4f7614341", + "regex": "(?i)^https?\\:\\/\\/www\\.efqavd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1620a1c434da59145cf910fdbdf0a9b6b3cec40166e8adc2c7d210ae38dbfc4b", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6f57dac304239c065d1aed87e4e31ec70dc134e1c1330fb088cbda6c22d55da0", + "regex": "(?i)^https?\\:\\/\\/jygbsf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d7845321504775144d8e3dff70ba967916191b57714bd941d95feaa220211e44", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "390b9927daae7ede4c93e54219f826f7e2fe181ea6ab8cace5d85e22d44c784f", + "regex": "(?i)^https?\\:\\/\\/www\\.vawfnh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0bc1f80f5b012510d6a28f23eb4c3259e4a518218d622c9924840926d7a58ee0", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e56c4964c6765e0165a07d90290f92ffc0a08ea5622d3f038f6bbe4353faa1b5", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2dfd2b189a994d378ebb3060b59327887b1f214c315470c0d471a3a216ddbd24", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a54c828f8668fc202940f7ae7dcf2508f67e38f98ed90923331f51919749d23a", + "regex": "." + }, + { + "hash": "5e89674fba67edb494eb382af3207c8f20c15004e0cac8bb92a31355cec35275", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ff1c7c1f0a4947d1d119eb1ad8d58c345bde0bf6349157e8b925e89fed99d6b2", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "081dedc9bc86fff7d7180ddd430bfdde0c81b378434dd2182bdf1a9ae4d860f0", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3ad88a2fb85285c60de1f767b50e213d152eaac179ec3b6e3b6e168bb23a5ea9", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "47036c39c2f8b26a01c76d7861d777933356910dbd76e5e462fc1141e5db6a4f", + "regex": "(?i)^https?\\:\\/\\/www\\.fvsebh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1942af5eabaf04c779881ca9e3dc46ff7fcf023fdfda2827095776c746d08f9e", + "regex": "(?i)^https?\\:\\/\\/dhfmjx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "84eae3d473a2ac52c499aee6ba79fc79ba8fbd8aa1642bbf34611a8077969ef3", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6a8d3d720930313be400a17d4ee96b3a636cf96ac94f0af4753af9a56f6bf23e", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7320f17120b597135e7d4290cef96c147496dace00e8019edf33e15f834f64cc", + "regex": "(?i)^https?\\:\\/\\/bsdnxw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0a416826365db84ca80648bd8068085f92e80748c54cd1abd7eb1cbcd04be117", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "93b4119761e11fed73e193f7502fb73bf60a1496f70b07a871c6a792a96417fa", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "33942f82dd1c9d7362a71090c99787fab486023216a4779b74a683f8910a77ec", + "regex": "(?i)^https?\\:\\/\\/www\\.sefhxd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0c8e1bf74d2765bab89d64ee0b912b6788382c13e541eba659879a8d98437c81", + "regex": "(?i)^https?\\:\\/\\/segnzs\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "de1a61d7b545da9cbc5874abe2ba2dd9b946998ee6ff297f03ac6966ce41a949", + "regex": "(?i)^https?\\:\\/\\/ngsqxd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "43639a40b278e3da39b9674c22aad777056ed85503d81ce13ac96bfb64bb661c", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsqxd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "12403d9c599b9cfbd918a112f54e26f81c6d392be3b5d1c5051187be3638937c", + "regex": "(?i)^https?\\:\\/\\/tcfndz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2656e1387893d995b8da45561a398318b2167a3d6123d162663cf61af7771e19", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7740eb7f4b318a33a4ccdfeef17fbe73f2711de552fc6df4caada24943c38ae5", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8a7adea5b302736e02b5c0d598caadc62081f232085402b16c87a0598b22fa72", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8051b280a8183e628fa250b04429af38a5a91a838319c33520e6ff524d9e3e9e", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "abfa4e930bd469666c2974298579d4119ce03b58ebab904fc789ea7070ca2003", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1e29d8467ef0f14faa869aefca0210f457ac4c44ac44a56759b212f2105bea61", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ff86eff4b01a279fee2f3d77c2c2be75b953f4ffaef8ccede63885079649f8b1", + "regex": "(?i)^https?\\:\\/\\/ngsqxd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "85f292510802aeb7946ca444f0282975579f52dfeceea96d0ec29b86f7aec203", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "20a829cbf7fdf6e7c95ac77bd409dcac6ffbe7989af2234ba7003fe232c2460b", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4d5d7e7e7ba67ca7fc5c1d5d3615b7f57211806080f6316d46b1e6cf4cb54b06", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8ef9d36f11e72de4659e059b9153bb42e7dc240a8e9d457605d7406c543fcfc0", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7fdde67230876b5b2fc318414a61a4b1b4a40b8a43225ada9a93b23fa7a72685", + "regex": "." + }, + { + "hash": "035aafe7384be3619e639d76edd30b9e9a0d975a666863e8dafad6057ecb06ec", + "regex": "." + }, + { + "hash": "76dc553338fd08eecd7ed5bfe95efd0ba47ed3407def79dd4eb8813c3297089d", + "regex": "(?i)^https?\\:\\/\\/tcfndz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "07f17f1bf23a1d742abcb47d3d05bef3f518ff01e333a308b2c28539340908b4", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0ea192452db3e3bcd7cdaf6362e00a48dd6b1df7210009c515b1487c4d4561ad", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "663e1405e4e85b98a6ab82823cb6dea95497f5566516e0c6d7b859937b236acb", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f8fc9006b5e9a708a79f0d79f8facb9cdfd3813748f7bcdf16a48def28bccc10", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "02fa07b6d783604f414e2fa6c978919d9a9af931bfbb7890230cc4357c3b7359", + "regex": "(?i)^https?\\:\\/\\/wfvzsc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6c5d967375fd94d4f27da2a3594883794191c346ecc73c040c1577858dd9110b", + "regex": "(?i)^https?\\:\\/\\/www\\.sgebhx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fccb8db1017da2628d6253dd363b05f6c0d57ccd8bc6947672810bd337034871", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyghr\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "edb2351f320aa1af668b76be08081f2a97fa9226ed5dc140d36965d6c8371eea", + "regex": "(?i)^https?\\:\\/\\/jugcfr\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a43c80dd2ee626753a401e5e2610df1bff303faccc6587605b07543d3caa1c38", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "89ca89d582d83db81da8df2a28fcb26308790dcfb5d5db14e571a276dbc956c6", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "03ae87609ae579463c180cc26c2cd3d35af9e1a6a04b1b081ddf9aedc0bc7159", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7f7b8d5b0c8203f78247bef9a91ad0a9dbdcca2c3e8ac7ba5d6902569ce2f9da", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "60537fe667fadb75fb9f4ff77ce3ef0c8cdb3c09435e954f24f70a02ac3a484c", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsqxd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "80a8bf331ea420561ab1aa0c9513fd71758d4751ce0ef62efa5268660628ffb8", + "regex": "(?i)^https?\\:\\/\\/kuyngs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8fb7305b739ce5550eecd8622d2984a336ff1cd724686958b8737c05bdf1bdba", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bd086c257437e7598bcdc09ad7f0999bddff3b2231ba61c0526f854b9fb6f4f0", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "828611e40d14f4ef8224ec4b6e1c3dfd7e3c3626761f01a0451ba71df6b08ac1", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b00b2606009dad216b61b9d17998c23ff0790ce532c89c4d7dafbff78281424f", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8643b1cb966608e5013be91e196c9e28e26b27261b70e5d7a46db7fa7bb23d47", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "29fa8ba6b88d720dc475c9e34fc94f4d517a932bf1c82730890304e40919349f", + "regex": "(?i)^https?\\:\\/\\/sefhxd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5cdd8ee83e21ae4b6a786c2aa48a2831036076acbc974c6b659462c30036c244", + "regex": "(?i)^https?\\:\\/\\/mjgygd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "594a73fb66ac244b544019fac3cd7dbf1bb1a01c04251bcd0dd9adb9111f8172", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgygd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6a06be6057f5d04d078753b5258577b87f795e8f54a2a88e93e247b00e857a12", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "31df62e4333532db8b8684660e198d3fd12960d64bd46f6c1494f1545e08eb45", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "093abe183db73c0218fb1a6eb8721ac13bf82a48ab93c0555cb7de50ad4a3f7d", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "701b91f763c18863203aa4ae2eccdcf72009d17c394d178c7213443f3cb8f09e", + "regex": "(?i)^https?\\:\\/\\/dhfmjx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2239bc06ae5505640e65c5a1477e4dcaa5ccfd305a7ee04af022357a1e994d79", + "regex": "(?i)^https?\\:\\/\\/inetee78322332\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3bb19b5dbd44435231a72ff2d253a9a60e6300cb8395a5486fd9b5f02a9b7914", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "db667bbd810caf174dc44c2660421482985b21d88576db2bdb823929c0685ef4", + "regex": "(?i)^https?\\:\\/\\/www\\.sefhxd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "27d37c21c17050630aade1585b118d0654ef3be73a9f8302216250cc55961d0f", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e38c18182433ce6aebb1351fdd1c530600df140e64bbaf087e0d266d64838b07", + "regex": "(?i)^https?\\:\\/\\/dhfmjx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e407701c67916df0e43cd075df20dc1aa668baaa5bb304a5a317b9fc2ff96177", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "897b1e6447e69d74cc697cdd4d3f0ee41682000ac23e1dddc194e608cdba4e89", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "480ab1f9b47cd02781a18a094e2de0c287da85db3e2d07d66771539986e9b29a", + "regex": "(?i)^https?\\:\\/\\/jugcfr\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b7db73dfb30a5717d90c7e65fb602cb9e3f0f41e17239d2fe7b70fbbb3e97b9d", + "regex": "(?i)^https?\\:\\/\\/www\\.sefhxd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ee17eb803b3813de703bb37f4b4f165647a2d08e20f04b09cdd9b482a383ab75", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a4b2d702dc51b180f2c69c31b68e8fe09bbf4bf3d45fe8d25b1c3842aa75e427", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "bf4d7f46f72ad78110f61a58d934aca73be988d24fe40e0c8393623a30c6b50c", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ebfa5896b68a19046c0871d88d6aca18a781aa43f5656c1e01d3e5c754a25b0f", + "regex": "." + }, + { + "hash": "1d206b6296e66e04926554ea35577aa630d0fab34a5e9863823ec13e7efd215d", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "addb821f7d6a2ca7853d309e75b726675edb384bfa3170eade20a7ebcdb9867b", + "regex": "(?i)^https?\\:\\/\\/mjgygd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d7fc4a64f50e6cf30adc3543c6393228d9d453cdd6744818f77e1aa7ff93b636", + "regex": "(?i)^https?\\:\\/\\/mjgyng\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1a2e465877b896d40c07b118617ddc54164e18ea9cc959a97aaa19fc742ad84f", + "regex": "(?i)^https?\\:\\/\\/mftjfz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "21a6757d7017f4b629808dff37df6bdc8c5b02aa015e91d0b5151397cc2b212b", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9ee194d34b04332289bd1b602e75c153a86fda88c6c73c2ee4f5b29ca1e9a24a", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f84c24c6f6848d796feea14a64415deca4a03df0bfc9ecf5b72b84184c22bda9", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "78b085352139f2252aac19b41a0bca0fcb79c6a52fec3cf5d5773f7054ffc585", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3cc6a4c1239283c4b3829940583143dcf33fa833b7c1d1359599105e53657adf", + "regex": "." + }, + { + "hash": "56dd9e36969b636e52bc66eb933184970c13fbc59614182b09a8db2f2c599d19", + "regex": "(?i)^https?\\:\\/\\/sbefxs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "85a17c644615d60fd2d1811d455d81b87622d2861d5213d872edab6cf4ea2e54", + "regex": "(?i)^https?\\:\\/\\/fafdvb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "abdd13a93ecb9d5c6c59a694af8a445356da040f4fe3fbed44796b54a1c06e21", + "regex": "(?i)^https?\\:\\/\\/mhjtcf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "dceba53d1efbf154c21b9ce6c43061e5cc58686c1a0b30944856f9368b7c1ce8", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1a2df8b3f4447f283961ea882535933063e9b0f1b6f8c807833ac1e7a8d79b3d", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9d879fd7113f74bf63bfccff1d0e641b206646af7ffdad9b1ab4da090d59ce86", + "regex": "(?i)^https?\\:\\/\\/www\\.jivgtr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "02e7eef25dc29f80d70810812ec91f8db0a85bd0ae92d592470e63030aa070e9", + "regex": "(?i)^https?\\:\\/\\/ncgfht\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "361e2cf596388f7639353f6c3ef218109f7109dd2c12b7d641be97cd3df7259d", + "regex": "(?i)^https?\\:\\/\\/www\\.vawfnh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a2885805b60d9d537c16d353176d32838ac600a6b172a7196eb4e0cf3778b78e", + "regex": "(?i)^https?\\:\\/\\/www\\.ngesjx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a4ced40c635997c8f9984467d4513538863baf09878695d2455d187fae0d3373", + "regex": "(?i)^https?\\:\\/\\/jugcfr\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8432ef7069d373a769ad7d65d792f70fbd501478842b402d4ca38bcb3923052b", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3eceda595e99ea83b43a3f2ca4507ff64c43cde6c4fc4821c63c911f8d974348", + "regex": "(?i)^https?\\:\\/\\/segnzs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e4c130c003fed19a75b024c814a993ad9eca0be3b4c6a07f53d5725af1370b03", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "34b9eb948ef2d904687eba637f2c87a64ff60f461f2f0452991ce867314ad1c9", + "regex": "(?i)^https?\\:\\/\\/www\\.mthjyq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a58f3621ccbe464a53c3342308d32470c8e098a7928320b012219abfb68577d7", + "regex": "(?i)^https?\\:\\/\\/www\\.fndjyf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ebd8e7c9b12554d4c5f237ce2091ce2e3be37b8dccbcf1cdbdc9d61107070a35", + "regex": "(?i)^https?\\:\\/\\/dsnxde\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8ec17834ffddfef71f7c91dcddc7022818488d3537befb390017939d52ca024a", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "accaa4490bae7ff319cdf540318010002fdf0a98bb888e11f2d896d58915d105", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbfx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f25115d050fa930d2a963136c3bd450666ade06f2ebbba296da78227a30fe6f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0je9s(?:\\?|$)" + }, + { + "hash": "a124a25a097f4a6afba31faf916b42a7c43e1e38bf5b05b52f04c3ad7041502a", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "52009e8130d7768fd91bd185c5e9e36b48c303636d17411914384aa3d6cd11e3", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4dc7c6cbdbdc66290c5de0e9afa3dbcc97fce8036b7eb0ab365b8e302107b658", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5dfde597c1a42fe88ed96da0001ecef87b50575db8ccb601d7bb321489120b7d", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c90e9ab48e369b9e5331b23f583008fc00dba1f80383fb4ace2fcb7614c0706e", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfjtc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "55b0463310f419aed56e8177f81c69397da110b7e39e37dd28a3b9cab9477b64", + "regex": "(?i)^https?\\:\\/\\/gemsjg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "23e0f883f05990d2cca916ccca9647be078146274654b2a79c0a88e7133e008a", + "regex": "(?i)^https?\\:\\/\\/wbfahx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "08b7fe8ed11d132940993f9d08bd27257fdedd4f10f3cd0b0fe0be2d3e748047", + "regex": "(?i)^https?\\:\\/\\/ndfmzq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "53642a74812513980c5a260b5c7cf79ef977178a897152605481d8e355f9054a", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "70e9cef539a77e70acc1697ad8cccd2638a4e4136d3f4346298a9fdfc403cc13", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2cb99e333342579ec15c5585a6cd26cc1f49634f6e0fe281cea1031dcce3be0d", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "79ee285995b371fad3f3ecc362f85d460b02b6cd06f64c46d179021e0d6c5a2b", + "regex": "(?i)^https?\\:\\/\\/jugcfr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "04c434573bdd28a3b512cca012bf171346b9bfddfa359ae5eaeb12c5e3d9e05c", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a31c62d04ea89a62b140fb70ca9c69881240a9a9093a563e179382b66f358ab0", + "regex": "(?i)^https?\\:\\/\\/sfdxeh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e4994a0d61dff81045003013a5e6d2a3a8555b669a761f3e095e6866c1cb6ab8", + "regex": "(?i)^https?\\:\\/\\/mftjfz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3fc03b5013fc5dfedd15d8a4f015dc7ed50117fa64027d904176852fad04b90d", + "regex": "(?i)^https?\\:\\/\\/hothitvideozonep\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2ec2d09f4cfd0e10a02c6af6b6c98b0011654a0e76be8b6fd919d3a04c6eedf5", + "regex": "(?i)^https?\\:\\/\\/ytjdcd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3d257093418409b39c3a68285133519deb992cbf567009ff69fbef832ab25181", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgygd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c79a7ba72d01c08cc5668015e9cb7af723cf245b6570b9d8ac9386bf200a1493", + "regex": "(?i)^https?\\:\\/\\/ncgfht\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "dbbff6666879e64b3871d9a9b3fc9fd995889b072517e62aa3f5ad7e60fe9a08", + "regex": "(?i)^https?\\:\\/\\/jivgtr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fab30f426153d6d815e34d0500dd9f25158536d554689613d5ae1b2f95c9e6d4", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3d4da5ab2116ccc7498218a08cac8c9fc1056383cbe31adae9348cfc428aecc5", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8797d9cc56532c712dd7dea91137613e304839ebef5bf8dd408acf0e4c2af219", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8531d728c00736522778f70b70108430f899f8077b4537777e2a8165944a4738", + "regex": "(?i)^https?\\:\\/\\/www\\.jmycfs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "442393cd678d2ba20b3395551305cad5f3191da440fa9ba88db061ebdb08b5ad", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2b4f9015b84aebd4668ad6738034f13f7edae8bd509d4bf6e80ba171e6f7504f", + "regex": "(?i)^https?\\:\\/\\/mhfkig\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d5158f86a1c139972816cb3173e403a11598770cec519d7384e640d6a9df69d4", + "regex": "." + }, + { + "hash": "007993d70da7fa1166032629f0510d83f4af8df663879869599693778a5b3d7c", + "regex": "(?i)^https?\\:\\/\\/ndfmhq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f6d54b9b754167c24729711b6d441c8492225084a23b524203eed388f4d2b945", + "regex": "(?i)^https?\\:\\/\\/sbehtx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3a28d14e777550ac2ffa43b09495e554e62e4ea6230a94dda8b7cdf3bd1a37af", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c976951a9ff508ab033a8052a529659dca3c6e33fbe5accbaa63927636670e93", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d80f1d29237b65428264418120c89445953c941df295de69bffc64d76738dfec", + "regex": "(?i)^https?\\:\\/\\/bfanhc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1b4534a3bf676c16b41aa6349ee70486cbd64024b833185c4140da078f74f5f7", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ece107b41f1e8db3355f4c32a85fe58adf0d036eb1a8dd4ad947609212397db6", + "regex": "(?i)^https?\\:\\/\\/streambokepjav\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "93bff068c892e33d79e4aebe45b356acce8dcef9f0acdf4937ca75596b6660e2", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgygd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f5e2e3ed6fa59b923ab4d1343c57285ae0d099f27b77f2c93e670a7897b4d0fd", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7920e552bbff03ec18f0377cb4f1a741287dfb0ffefb478a4f0c3dcf4f2ea427", + "regex": "(?i)^https?\\:\\/\\/mhjtcf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "10b192efdcc2cb594b1bfef43e586c06147109de416b986f7e2d201d0d0e1c2a", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyfe\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b30b26b970e48f50d4a211be1f59325bea31efeb49f983fb79ea3426c1e5c4e5", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "db3f8bcfd48341ef582d305d5dfa64c30fc7f015248664f702f4ed2d56cda019", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "531a12674235e6b36bec13980d341bda94bdd3abee4af1435eeb5d610d0faa27", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "642b350b6c014bad52012d4d3139826b3c9c88e834a943b085768baf30dceaab", + "regex": "(?i)^https?\\:\\/\\/sfdxeh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "88e7b25d6c497d5058b95af62142e2cb585169afd35ed61a8b798c7204e6c5c4", + "regex": "(?i)^https?\\:\\/\\/mail0\\.googgle\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba67b78eaac04cdcfa8a491cc5b19301ccee7eb3989cd83e7003d23cfdb5a329", + "regex": "(?i)^https?\\:\\/\\/areaclientihypeit\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ad1b428117aeb318919283768ebc9254be16d72ad6a436af09841fe4a6a38fba", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7283cc7493dc52e54efa826fa4a2e5c08a5b1db652d6a799afb7cc3c9081fb93", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "41fe6f43adf61811aebb10354938a197c75d597c5a3f95b9a826ad6cd6ed6595", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d5f7acb821a4769121588f2dd12284d0ae20316463185b3e7789d43262abb8d6", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8bb9b3859c4968dadd5fee4a4ec113ca374758c6b92cd5e2db520649b4ba0b1e", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "71102d6ef47191add1a7b8ce9d59fd4e638b31cfd29724b7b72f6f981c9a14b1", + "regex": "(?i)^https?\\:\\/\\/gsnejf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0e8428da7e798e7bde00ae7f0a3309e07c9e4c3c0b53dfbd8607fab81d0f251d", + "regex": "(?i)^https?\\:\\/\\/www\\.sefhxd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "32013c1f08ba92b797bcfd65199ce89d3cedeb4164757f93672b2905f397342b", + "regex": "(?i)^https?\\:\\/\\/jmgyjd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6d89a637b73b900e4597602f0b43888f34c9bfd5be786e2f964ddbece88ec6c0", + "regex": "(?i)^https?\\:\\/\\/www\\.nxgdmq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "15e20121b52801662a183557d4dc24aa9f4cf93d2ffbf9f9dea70cba261884c6", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "87a37458f07d6268dcd28e55d843c4c031ae798b782adb14f1970cefc3ccc0a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\.php" + }, + { + "hash": "474132599f9a9d1676e67f0ddc1d2373429d41b56ee16d40399921ee496875ee", + "regex": "(?i)^https?\\:\\/\\/www\\.dgbsqd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "02ed49281a0083e28f37cca55eea30c041e81b12ee6eb715053b108e86e9aac3", + "regex": "(?i)^https?\\:\\/\\/www\\.tcfndz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1d1834cc29b172250c560fe52645ca5ae09a6e3eee719091d8ad11097d7ad3dd", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c51cfdb71c0842b5519f8445633c1e22da421b2b0592abe2e87601b91ec5616e", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a4c69e0a76308c54a00e28ea93b904fa60cc1e1a1b708577cc53db42c20b545e", + "regex": "(?i)^https?\\:\\/\\/mjygbw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dc3e47b1c45b8ff59c5c0ba494e4a7e9c9cf20c00dcd5fda8f315deecd2dac15", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "64813c6af6e1b1d0b1f6b66d1c236d35451728523684eb27f727006da49abc97", + "regex": "(?i)^https?\\:\\/\\/jytnft\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4c7f462eca079be79f7689b87616b5907800a51901b854f111e5dcb923521906", + "regex": "(?i)^https?\\:\\/\\/www\\.bdsfxe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "067384227d1694c2539456520d3616f6fbaf9bebb60b0a95f4b9661cd37cf4e1", + "regex": "(?i)^https?\\:\\/\\/www\\.fvsebh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "03d9966415195aa43c3d7cf67d43ad52715c5b02f19cd6c3fc83d06aa32fd296", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6944817c02bc4713a7b1863f1d7e7289757947575e8c1cc8dddea02130bdc8b1", + "regex": "(?i)^https?\\:\\/\\/mjgygd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fb00fb1f0273ff2d0b3611174766bdfacc9f94a63024ba3612099657fc83586b", + "regex": "(?i)^https?\\:\\/\\/afvzsc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cf663b7be87157f5f35e604e3578e39ab0fe256c59e4490e2a7482dbc72b533e", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "26090eacea10b751741e9777620547e3f4c88d414ca2e59e8bcd605b75b80962", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f1316ca6fe6eaf9afcf491b33067366b898016e28ffc6d45945b488226ba42cd", + "regex": "(?i)^https?\\:\\/\\/sefhxd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ca28668849b0490a0d13901eb0349998fac59aebfc684620676e49ba152e2fae", + "regex": "(?i)^https?\\:\\/\\/nbdrjq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7c8123c3439bb6a227004cc7c83f716bdf2ee48dbe64f5ee9a19c73c307440c0", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5b1a2df1355c1bfe3a274dd74f79cdb0f34cafe64bbc01620855ecd372202009", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "64bd456894a0dcbc29756ec20adc578a149e41c92c48a6f0b6d9715cadb778c4", + "regex": "(?i)^https?\\:\\/\\/dhfmjx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0323735a6da545839c549a16620131c73df956be1cb7ccd19456d651f230845d", + "regex": "(?i)^https?\\:\\/\\/www\\.sgebhx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6dd2945f2d7d94a582f030a181ae8ac1ec97d3c1a1c332cb343898fe38caef0a", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f7f0380ed2240dddc15711ffef2f31b3ebfda23c4da64fc3c8f7aceeb9945fa8", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3ccb90c5dfb2c27d04e2be5b80803975596dda41b2196f030d0755b4f591450d", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "65df2cf87bfd9b71738ac0767797a9a9c0945a538614b25bd7f6db7e34123776", + "regex": "(?i)^https?\\:\\/\\/fndjyf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "603959b55ae63cb3ccfbd8b1e408809b1296f186f0bb4bb77c459de83f86bdcf", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "57933f13ddba4dfe3d62a48f434f195000540caebbf7bd52d68f14232ce6b0dc", + "regex": "." + }, + { + "hash": "0a3d9a515d245dd4e227212dd5b03d8f9534f9dab59b7dd67cb178dcb6063893", + "regex": "(?i)^https?\\:\\/\\/www\\.sbjgxd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5a206516991d46fd15cabccbe87c477d546f532c77711835cda02375af10d731", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8694b20370704f0a464cc0d5cb92208ba5606bf5542f49a43bd8f277175e025d", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "be585b6d7c8183bbc6a97b36c098750ec79f4fd941c097aebe03e8b09b1a1a89", + "regex": "(?i)^https?\\:\\/\\/nbdrjq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "debc482346bc383dd9567143fe424d5455db7e095fb364a46fa56a2c87ebf28c", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "cf24a01fbdaef825a7f3eacdcaf6950e3f02e4e109c21a3435a9243d767717d6", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ff823628545535ce7f8bbbadeb17938b5024b1ec479c5172f3a662e4319111dd", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6ce60fc57bb2638c1e139acb63354c67d8249cd36e0a1879463d00a09aee9f7b", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f3eb407a8ff12ce78a6cb2e26d8b686ab557d81adbe1f1ea64e0d00ea41e466f", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "354bea9fefd2a7b2edb5dd0322c32e5a8190b9191f7aa3e04d759cff52a6b99f", + "regex": "(?i)^https?\\:\\/\\/nxgdmq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3265392bbfffbcc9457e3891ef1164663474d035039d00a1494152fe5adc495a", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a8ee4dc111eca41f8f6f7cf52650add480f01b1af93b0ef1cc15ba98277ad0e1", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdnjt\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "50ab8e6005fbb236ca81d7a36e868c71970ccdc7a55628a6188212530317f83a", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "04080fa2303909a904a3ef17bb6b92e7d096df390225566a9395ce8bcb93c248", + "regex": "(?i)^https?\\:\\/\\/jyjnxd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f0e05daf113363e6f38ab332cf6e0d3366d4e41f9aeaa654c3a5bd7cd4a41aec", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0c00dbe73cefa58b257e060b09943ddd7d582a9a786c27632b080e070e0985b4", + "regex": "(?i)^https?\\:\\/\\/mhdfjq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "eb92e8f54862d7404b3d753fede1b787dddc6efc5018f05df18e12f561802523", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "00e73d07a117ae153f04e660844dd7ad99328670db23770bfdbe38c3d77bc423", + "regex": "(?i)^https?\\:\\/\\/mdbxdb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d5dd8c5453bbce3b1a49d4ccd3e4653344177311b761c76048a2326b0da94833", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1c7ac764701c54a52dd553a8c243f1de1f711b423e165202450e5ff10046321d", + "regex": "(?i)^https?\\:\\/\\/jygbsf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b7ff725e85f080d91bc85196cde31082e863045d42fbe08ef88a951b87586cf3", + "regex": "(?i)^https?\\:\\/\\/jivgtr\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c859dc9c782ec4a8a231e08d38bc142ed75d0eccea155cb9b8fd52231eaa9657", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e06a5021a7c9951699ecd5dd134e8e1430f6e8b3d1ad2895dcbd9b0be7a79cbd", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a7ae8c87fcae96a6208f3a2cfc411316ae053ea91eff517e49808957d21a941e", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "03e28f507cbf1efc0c819b1c488bedd8a31b7ea5e051869e025c1eb6eb5248bf", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d230af5d2dce2f75731216a429ae6cab19680a969404b0d185abee3cbfbaef49", + "regex": "(?i)^https?\\:\\/\\/www\\.dsnxde\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "87a37458f07d6268dcd28e55d843c4c031ae798b782adb14f1970cefc3ccc0a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "e8eef3637f494e2574ea4f4465ece4c3969e3c6b28c5d9c17b0635464fbc247d", + "regex": "(?i)^https?\\:\\/\\/hottrendflicks25\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bc830768379e874fe27a63d5596e022c7e6057772b0bd05231371833986c37bf", + "regex": "(?i)^https?\\:\\/\\/mjgygd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9b038531f28ef9b67404028fe276c26890fec648f663bfb3ee7d87cf70511f92", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e558613c5877fa7dd157d31856e3f9b55c495bf2f301ca4712ff09700ce358c0", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6d57c2183a348cfd574ca84714bb73c2f53cb619be607ee1a5607aa692e358ce", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "208452ac239d441c626d9a65a10d7d0a6c6f8ebf32155944e78163046b226ee3", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "013d821c33ced8fa5bc030ee7af413c18dc3454e8572cb097f7be184455bdf28", + "regex": "(?i)^https?\\:\\/\\/ndfmhq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a3723ac18d31c1c5f874220baded186455fe423fe78c5b894f2fc43219c4c6bd", + "regex": "(?i)^https?\\:\\/\\/fndjyf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f897ed0959d66ce059820d506bf0c0e0c854678ee68bb1e74aec00e3bce32f62", + "regex": "(?i)^https?\\:\\/\\/www\\.efqavd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1e1187c70e13fa80edee92021c55951f6f1b774be1fc1658afaecdaa8092a20c", + "regex": "(?i)^https?\\:\\/\\/www\\.sgebhx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0925b67d6cd587ea21b56c36ada8c2e4c5e31c3c4e6730c3591b9db4fe6a98b8", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyfe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1d3a477208fed708917009885d4a56a33dcb9b82dc32d355131300b13d7b15c0", + "regex": "(?i)^https?\\:\\/\\/bsfbxe\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bcb7a461805a4d4948bd79466183ae0c30a8ace647d632770367b9bc9e1a3341", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "90c52e2687694ac9bc528a38552d44307f7996ed7b16434a27115e2b11c892fb", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c58c0d786057d89a48883c73558f01e138ccf362c5488a3f18b5fbf1240b7520", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "48bba387455ff2831235108ac47c45010f22506d97c70f8b0ca5a80e07d985c1", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5213c6d479c4e5ec560fa8ff20e078fbd6f46f086f60a7a6e0a2657d008c9a2b", + "regex": "(?i)^https?\\:\\/\\/segnzs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "99a6ef161c3bbeb17ad790ad4710c8ead6922f2114c19b611385854c05f1f0f4", + "regex": "(?i)^https?\\:\\/\\/segnzs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9a8df37a7ea8aa007ad1dd9cd3cab275a84357ffb953512d6af884d563068943", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dd87cf1f79a5828cafe3055891833ad51f3f4421f3f54e20e0a02ffd358aba73", + "regex": "(?i)^https?\\:\\/\\/www\\.vawfnh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "42bce7bf578732d6d58db47768c31f7771f5976f444161fa76581b33966a7eb4", + "regex": "(?i)^https?\\:\\/\\/www\\.yjgbcf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f8f0ccd804ced0a39c735c2d0b62881667abd0b0d686e799795f83564b65a7e1", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c785c496b2c9a3f715633331a2d166dc92640c9dc0936fe9864ab7513b1e700d", + "regex": "(?i)^https?\\:\\/\\/davgxd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "60f452cae899898832289a0a658d8ec555dfd3878cf59736e5bae11ea76d5df1", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9404ed140fa08699ca62177cdb815bfb144869faaec5be5a4256dcb4cc32e8ef", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ea8f1f092bda565b1097458a641f9dfd641f1081c2cc812653a8e71f4694ab6b", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7da0a417f2ba50b1d9afe5d99d8b9314ba2960f55dcaaf07e55afa5426346624", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wowk39[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "35be58245c75fe870eb1495dddfe847ebf7f62999efedb94b9c6ee2d85a96da0", + "regex": "." + }, + { + "hash": "5759c0df6d17e44d17d4973fb67eec5fb95c267a03156e1f47121eff12f62382", + "regex": "(?i)^https?\\:\\/\\/efwhxd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c2fa9f645d911b7f0dd733e5216277a6ba2a8279972a60f95fd49df3e1fb32fe", + "regex": "(?i)^https?\\:\\/\\/www\\.sbjgxd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7967f70eacede560718d6e14d6dc1284cf91d202520a008988426f26677607ae", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ef1d5500e3d839f8552b99cd2271f127349930b7060a557967e3a2e39153edf9", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "97dece5dcb3a688f13ba4b246b4fa6124908a65d8585f6c6633bd62aa8dcb812", + "regex": "." + }, + { + "hash": "8e8ddfa9786ca9a614755e2bb836757b1f1fdc54d186e490b6cb29554fdf0a87", + "regex": "(?i)^https?\\:\\/\\/mhdfjq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ac6b781f10d4fcaa7a9156c8959ece6b110884efd6150a3ac85cd217de82fed3", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdnjt\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d3c5f9c5a14163488e0777ba360484ddb001558727c227a9b4646f3c5be67fbc", + "regex": "(?i)^https?\\:\\/\\/www\\.nbdrjq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4a993f23e425151a45982cf474326b7a76265b88cde633da8f147c9cc4c6cfec", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d050847c2eea7d119cf924a1262cbd62fdb7c88fee606231c0556ca322e93c54", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "42870a8e99e2880943aee625c05db9438d6d636952aae39d3e33c5c25d7fa99e", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "080003684c3a431f85aabbc1e6f1eea7f14b9af46261bace61f7624ebd1e5fb7", + "regex": "(?i)^https?\\:\\/\\/awfhxs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1ae1865a2731c2e3ad48aa46c0c3b0319af034a9718d9d660a752a64dea3afee", + "regex": "(?i)^https?\\:\\/\\/gnsejg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f753420d0241e238904eb75192a21babe58af9f0de7b68bc8354e71959a207bd", + "regex": "(?i)^https?\\:\\/\\/tcfndz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "06de419ca6c4315a3effc38f2878b23f9e5d6b0dd4033c5feab3dd31ef90f191", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7f0dd3dc32882dfb644a04df21cf8ec732ba2cea0c3428811b3097bd8b3e942f", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7d06fe35be6e6806f32dd60c9dbbc27620f85e688a03f9a6fe8a6f5e26e577ec", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7424d41adeb18d92a43a195c76f330979159ce8fd51bcb153c91492ae555be2c", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ff384b5cba9880610ee5e6c1f3cf38fe9c654e48ee690dae5a27fd18d3c3d164", + "regex": "(?i)^https?\\:\\/\\/bfanhc\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fe023795223057268316c13f10bdbfba55fd1ef95e6599f76f597a794fc2cf29", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9d64aed0e95f0410da3cb2e246f6a571b1ea84caa0af110f0c9c4f68c8c1e72f", + "regex": "(?i)^https?\\:\\/\\/fvsdbt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "54d45c58304ae5a43663ee46f24458d9926e4f77f16c5aa2f82c78584fe89ec1", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "135212d28fed24ed370f5beb67f953e780f66f5472b56d0f0453e4236048a93c", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4d93c4b4f697050e610ec4b018a431d30aa21d54638edf92144189f101d8dd19", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9db2f838d3325b7e856eaf97f519764908be8b0eee9c08f8b1f2c05986dbf422", + "regex": "(?i)^https?\\:\\/\\/fesxcg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "be380c94fc893f957941c6865c5362123f8e5b348454db14db2a638fae3e0f98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "55355a0d53873ceba98146e486b2ee3b4d7e5a29e601612d8422653ebf2f4af5", + "regex": "(?i)^https?\\:\\/\\/jygbsf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1fe6041ac0a8bce76d863e6318b74118489c2de7a984be14456f03449fe1bb9e", + "regex": "(?i)^https?\\:\\/\\/ytrgdx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1df561585baf7b9a21236da3b724cd4c0f83caa2caf12091392d51afa14fa06a", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8a014827ea72c1acb1acee02c75421a2d5dd5affb252c5b7d762dc246ee92601", + "regex": "(?i)^https?\\:\\/\\/bgejcf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "58c3540db8240864fd8dcab49ee74ddd04d45b13a3101158860cf01c87c8794d", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "631abcd55e245281ba81599e81fa972fa228eeebe0ce549a7a2251bc499120bd", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d6e7a3075d254002bfb7f302728f8dc7c828e82be157641e9a0fea9fc68b09b9", + "regex": "(?i)^https?\\:\\/\\/www\\.sefbhj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e8d063e58baf8bf8ecdb8a5c9da73d81cfdb8986ec441bc9ff2c80c60c5b8fc9", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a831f84428ee43e95a7f1e52c8a7288746bf67a68b35f281c0c665cb4f84cdcf", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "90103fb21c07caa33c3385168b89478a8c2978803114e443836647a449d92f47", + "regex": "(?i)^https?\\:\\/\\/gemsjg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a82f7a0f1e19b073228fcff1f302327ab1245eb539db17994f79aec16da7fa79", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9bbdf65413445de56e8589df846cad6e4813143f59e0caeccd6655536b621768", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1b0f83fcd27918e993f1741c422acae338750d5f94d4128ba7baa80a6fe6ec2a", + "regex": "(?i)^https?\\:\\/\\/www\\.nbdrjq\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d35fa91d114f486404beb95a5c9a8354b4a42c9d94772b70d288fd2fb1fe72dd", + "regex": "(?i)^https?\\:\\/\\/www\\.mftjfz\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "89caafb0ccbe6a7b6576c35eb4a61893cb822f678c7c2b8b3945e7324ee058b9", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cd4dbeb24f6ace4852090b4eca8de3acb096ead5b8b1746a5032e6d10cf35533", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "26470a481cee0015c5c9c9f0bffd061a67a8cf35d05c9f02cfcc99836f09715a", + "regex": "(?i)^https?\\:\\/\\/www\\.ngsqxd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "91be2916138de5f08f28387c3fda834fdbc19f4724cfc38cd16b74844a298832", + "regex": "(?i)^https?\\:\\/\\/ygjvfx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0321170a05807021e7bbfa5d009afd2a4d17af4d1c1cf442950d485a0d2fe89c", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbfx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "705420016bac75f2dad9ed7804f7ca1891dd08839ff24474437d58666df34f28", + "regex": "(?i)^https?\\:\\/\\/sbehtx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bb5f30994f0f188384fbbcba0704c8dc057b17cf84fd6cd97989a30cee5da619", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b9f6592c43f8cd3fda1c6175982395bbfd37bc6a49edbe0b2baa6b83a60d2cc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0a3d4d60c24da0c5851657ab062fbe9a59a0358bd50aac891ebd2f5421b2c144", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0cc15e286d5228fe27bb7e92d9d5204ef2e66541277ee8d35e075f9467c7f94f", + "regex": "(?i)^https?\\:\\/\\/mjgyng\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cda69513fd4e871841269fbf6d4153b14d9d80dac74f7492ff7eaa8ded924286", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0f8524c133036bd8d19abaa63d2b2b7d7ecdc8b0eafd921701d69b6d8e1e5c99", + "regex": "(?i)^https?\\:\\/\\/www\\.w2\\.click\\.50\\-6\\-199\\-27\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a1bbf57ad2222189ade6f7f0183cb1f15874c9d77eaeb3a151814b6da6eeaf81", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ebf29495a8a5b27b4c8651d39aece74e11618528df3097bfedb4d1a5b96cc5a9", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ed7f1f3043a4a1778270c1c62d9990ffbfe383a814f43578cf3a621d531f5879", + "regex": "." + }, + { + "hash": "3e15f18e6c8e6ce65dfe229e0dabe10b2aa7cbaea08feeeb7d149c43ccdfa060", + "regex": "(?i)^https?\\:\\/\\/www\\.jivgtr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "27bbbf43e93a1d006348bc6f13f6151e0bbf8118948a6b45018a1e9a10f7e5f5", + "regex": "(?i)^https?\\:\\/\\/fndjyf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "df237a90cad3bf8cb3ebd6b40156e69d603f191b358e6e4f79e56fb330c55827", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "14b2779ee6f17f5bfd2621815ed9473ebac521e558678948c6038a993cdd6ad5", + "regex": "(?i)^https?\\:\\/\\/tjjfcf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5c10f0fc3fe8bf416b0f122c4b29a96c0055edda0fa312b65484e573ab33155c", + "regex": "(?i)^https?\\:\\/\\/ngsqxd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "97a2748351e966325e8cdc6da62f059f84ec2ee4f960b40b769480cf3dbb5231", + "regex": "(?i)^https?\\:\\/\\/www\\.dsnxde\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bc3003d22973e6dc5efce564bcae5b95f7231a994358869d83c95796865d283a", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7146a1f11e0d9a716c45282a48f28b7642fa0d5e807ddb9acc6dcebc779787a7", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e688795e4612b03d9703e8856499a4a27060f87684a5200312e18997d88c89a3", + "regex": "(?i)^https?\\:\\/\\/www\\.fbawvg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "031f25df622ec2dbed11151c29cbaff6386d574d2201cf5e138e051abfe8722c", + "regex": "(?i)^https?\\:\\/\\/jygkcf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "607649d870de7be5cd747c3157a9dc48af282215c700718d7a67700d38ebb4bd", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6710b1cb5991e35b336c79699f11e3ee923b7266db03916e30630ca8c363baa7", + "regex": "." + }, + { + "hash": "78afde223f8145aec47918aaf070c05c51b5d92e2651f6586d1fe001173168b7", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2d425b42763d790e084856fba3ac41eb187c94a65ccb65d32da2e78db85108e9", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "70de32db3a6eef0fe23624507d788138b808d44470610c9c90cbc779242071f0", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d2c72e0128a65384dc8128f58e36909f80d9c3f0965d8d5bf0d4b33c05ffdaaf", + "regex": "(?i)^https?\\:\\/\\/bsfbxe\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "be77ff9807e55e52945b9edc3c5ddc5c7a9c9e79c5ecfa0fb3fa5b4582ff72f7", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6ee9794bd0177cb8dc7a7ef63b2f219f6fdf15e1a224eda9f3bc603ea523f519", + "regex": "(?i)^https?\\:\\/\\/sfdxeh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "efa4d246de9294e333827cc6bdaf7c88013b3ba89669f8614c95daae8f5728bf", + "regex": "(?i)^https?\\:\\/\\/kuhfnx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ef39bf4e57245c67ff00872af8ff8fad195643950388ba8ae08e67cded27ee9d", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "462418b17fcefdc87568a09fa9a753b005bdcf292a0ae599b59bbb2096e727b2", + "regex": "(?i)^https?\\:\\/\\/bsfbxe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3585231beeb6da4bb9f5fa0a8bb931bd1528ca666ec30ddd8a124032c57a405b", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9d8cd8c426c48d7a279f9b3ba1a82883d929c066a8afb4b3bb6cf75dea9f4c11", + "regex": "(?i)^https?\\:\\/\\/www\\.sefhxd\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "689256bb4be0ae01dda13729227530b65670868ada193e948610e5392fd44c30", + "regex": "(?i)^https?\\:\\/\\/nervous\\-chatelet\\.162\\-62\\-219\\-87\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "b5c932f2f6c98d046bcecb101d4066a835127dc299786b6b06bf2eb3847802df", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "db67dc0c62f3a6cb0fc214b8aff21e867fee88bde21f2093885fed3a692c0850", + "regex": "(?i)^https?\\:\\/\\/mhfjtc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6c1489d9888079dcedcda05136d6b0cf34ea7b537da60f39e88dd49af3184fe5", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "259f6dac95c94f8d6eebc5b2e16407be82ebf8971425655419686d5af6066bd3", + "regex": "(?i)^https?\\:\\/\\/awfhxs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7b3959ba7f93c90fecbc34708cb414c8e12a0d3fa4dd7da9bfabe6e66cb70f25", + "regex": "." + }, + { + "hash": "b30bffb05426757bf200f4d6f3b36dc698cd1d14dc0e038da0ebb4757a2fa1aa", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "87008cf75de5f83882a521048810a53c2faadedfb86c16f32f10139e3c3c8334", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e91166bab264d9e28027da5d6f715024d6feee712c7d3b27a9edd8e58805c171", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2e727de1ce1c9775aa1d62c9e244e43a2ce6bbedef0fe85c646538e4e2306cce", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5d79df3c38cbca3dcc0ebc905c8eead2d751b2b7edd63d7b621acbfc9367d56a", + "regex": "(?i)^https?\\:\\/\\/nhtzjq\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9f6c5627ec38279262c187eae7a5c7d01709f71bb4bf2a22d74bdf0995a02f5b", + "regex": "(?i)^https?\\:\\/\\/kuhfnx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5e14ca44028156c4d2b9d2439299a14e41dc39186b930e6c0be4a619d5e7b803", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "18d10f6d77efaa07af63f37703dabfe97a18c6a58fef8eeacfc15880b379da37", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e812220609955670f4d0106584b66b26b0f09088de4b866032dadcb415925bc9", + "regex": "(?i)^https?\\:\\/\\/sefhxd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e926d15dddd6ae0586f87c0363ac18612ac034fe3314b2163326a483cdd61b30", + "regex": "(?i)^https?\\:\\/\\/ymytm\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f1db09fb5306a1b7c18d166e0934bf323adf696f1d4c56ab05792c53f8172e78", + "regex": "(?i)^https?\\:\\/\\/segjtx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "60f17f6a316d9cc98f12e88c882fa4874b21ccf8460c51b76ede2d50ec8cd4b5", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3bd106f0419994fea6e6a94c823e672fdfd592a1490ac1eb6f8cbcd0f94b1b35", + "regex": "(?i)^https?\\:\\/\\/www\\.ygjvfx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0a161a064e90b8eea2927cb8d2c6e70cfb0a72d77655e556fba5e1f7a748860d", + "regex": "(?i)^https?\\:\\/\\/jmycfs\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "417fd7a6efb75a638643ef7d43f407e53aa9261b3ce916535361faed85239b84", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6bb129a39f96b37f0aebe7ada1d6d0d0790826547f2d5d56f4a61d8d0b8d2b00", + "regex": "(?i)^https?\\:\\/\\/www\\.ngesjx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ac27874b9ea77e59f7a8d59b1608b34e469bb7eca57d9433813e53807038596f", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "81a9b6100f21f09076c74e9520a25fd9f4be10229b61ede920000f789b4c25b9", + "regex": "(?i)^https?\\:\\/\\/fafdvb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "436bd0dc400b0d8294f1c036ca4897247f879de2ad59de42507108b3952e8fb9", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7ce2a675139663fe9de5ced0c25f770ed8e5861724f20923ad128e46e6f551b3", + "regex": "(?i)^https?\\:\\/\\/www\\.efqavd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e47c66d7e072341820adaad720c392fcce9da7d195c95593e152d10b1b075b54", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0a23f99bb7b19ef855d37773364f502b34f0fea5d908397c023d37155983bfb0", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "98a42952993e865c532b3e6f456e928a0b8a2250bfff2bbff0f708324fc228b3", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0f9dee8cfd4891248a2f28a5eca03545169251c8ad70838b69d7841d5717133b", + "regex": "(?i)^https?\\:\\/\\/www\\.efqavd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "327e309a7cd67824e72b88bc38aabb8feeb938ee81152b14ff0aa56ed055cb33", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cac6cd435e4ce2ef72ed93e3dc1f7d6c875eb478b86bd865e64d1271dd68da87", + "regex": "(?i)^https?\\:\\/\\/www\\.mjghbe\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d64f0ae5426d8bf403aa4a7689b151d9e85916b4dae2efeb7a7b6a7c2935f33c", + "regex": "(?i)^https?\\:\\/\\/bfanhc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2b8468082b5a502ca84af7bbcbf01c17494f51cbbeacf058b54c6c0417703dab", + "regex": "(?i)^https?\\:\\/\\/ytjdcd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "633d39494e269bd7973180ff4d037e89603175fd1c15af4e20e67ad0736648b4", + "regex": "(?i)^https?\\:\\/\\/vawfnh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6164d7f941904a05b94dff8ca969db823c100c93b2918e92ec1c70fd7dc0e3a5", + "regex": "(?i)^https?\\:\\/\\/inetee78322332\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "eeec5a0332d40c04e1d8d23120424b2ce104eb59650542cd99cd2dc52e188973", + "regex": "." + }, + { + "hash": "36c2bf70ef68101c47399b435c5cfb06acf4223d18233f7e646316de415dd63e", + "regex": "(?i)^https?\\:\\/\\/www\\.segnzs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9a124672a6b914c21103527867568e4d201a8e8f4de08c22db6798db64bd3a90", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ca8eaff3f99ddb04717c75be54a5e2db1f604ba2572eb6bc2189305ab9a12ede", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d4bbb1f5fa31f5ae83c0cef42cbdc2c9583a9e7ddf03d1efbb2268b8cef98ebf", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b14c79bdaf023d521d0660a9905c45e7448e034f9d358a5e2c182fd01a2ec3a2", + "regex": "(?i)^https?\\:\\/\\/streambokepjav\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "18016f6b3ea20ae5a378f28a288792fd1a643a8544b5c1bb1f93cc2bc927d103", + "regex": "." + }, + { + "hash": "01c73fd379b3f5aeb8b238f3bcd93ddc0c1ba9428133a4381e9fe81377efd491", + "regex": "(?i)^https?\\:\\/\\/mjygbw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5577e0056a9397d936b43c866b76714ef19d75cbf5cd73c38a2b25668e3b6d03", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "20773a1a1e2d035af25d7c24ac19c528eb1acc440e4865ef19f58390a6c1846e", + "regex": "(?i)^https?\\:\\/\\/fawbsv\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "21eb349d263e1bc218a1a817bdd5ca984c81b5fcb2919564c93108620b44cda3", + "regex": "(?i)^https?\\:\\/\\/jmyghr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "adfd4254bc3d8c48e10b62fca73f0f82e2ba423c5beeb8e79cbf344cd7f085aa", + "regex": "(?i)^https?\\:\\/\\/ncgfht\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "659e61accc49c85a71f2e599139945dd07c59655745aba1b891d2e8f39a96b58", + "regex": "(?i)^https?\\:\\/\\/mhfkig\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0c44e6500ee929ca4a857070cf85ff58114e2382032ae577b209d68472800494", + "regex": "(?i)^https?\\:\\/\\/ymytm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d58ed4c564b60264be77a778baa826df5d49b77d3e479a565aa6977447121ba8", + "regex": "(?i)^https?\\:\\/\\/ndfmhq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3bf6bf19e6edf6b6113d11574e0ebfe8a424116e9f71e8745e89c5555f3335c0", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e022ccac88a4c7be3f615c90b63f45d93ffc0df0b0f36f18ea2f710134b1fa76", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1abe3992f2716da92e1e80fc2293aebf25458f50cc8c22750cfc832e55a112c5", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgygd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2301f20f2961f5961cfd51c867aa83a3751e268101b0eec1c07f3872eb68fb49", + "regex": "(?i)^https?\\:\\/\\/www\\.nbdrjq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5239fc386629d66fd74a91c78cf50302cf1005dae2038742b38c3f3942caa091", + "regex": "(?i)^https?\\:\\/\\/sfvwfw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "07992cf22c79ed1d5068c43a2e7ef25bdb8675e309bfb1287d38a6a38c8e2245", + "regex": "(?i)^https?\\:\\/\\/sefhxd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "07d2ab4f27e2aa2ae8b7c262dee4910d52e69f57d44eea9308d68bbab7efc507", + "regex": "(?i)^https?\\:\\/\\/inetee78322332\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1a8363bca7f7798ee59458a3bbb570c9039a425093e9305bdc97fb5bf98fc248", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "76d732c320bd242707a8aa81e0b2157aae7e67a264de51529732795f52371b36", + "regex": "(?i)^https?\\:\\/\\/www\\.yjgbcf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c4f27304d8c18a8c683bef0e376be6198faeb0ee32ef6228041be0923fe7ca6c", + "regex": "(?i)^https?\\:\\/\\/www\\.tcfndz\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fb67f0599efe14b7fe5e40160acea9b57fadba0dd6c638731c4b1b225571a613", + "regex": "(?i)^https?\\:\\/\\/bsdnxw\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "25b54a858a4eada4f363b886a0ace24715bfabf10d44b57cc63c617ce3885d62", + "regex": "(?i)^https?\\:\\/\\/mjgyng\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a738b8c261e32eb4be64d92a800509054d02184e318e9757a8ad310fb3b0edd4", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c5f554aa5ae90643d333d6ce6ffb14c6e743ec872f195c6d811a3bb012363e1b", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4ea26c559d3e3e5643ef5e3cf0c00ece80b2692bb3398fa004be1cbdc83bfef9", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a849afea817f2f465a26df8b251663d7faea338afcd2575cbd897195fc6ba178", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a929545114bfb6773773d523af2872a04f89c02f32b15f6635c92572299b5f5b", + "regex": "(?i)^https?\\:\\/\\/jmgyjd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "af50026530daf31a7c88f1f6108f63d625dd3e653519f24347f00897c6806eab", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "322606d1398069a1331aaac343f481f5f578a5bdc33fc2490a407797cfdb0200", + "regex": "(?i)^https?\\:\\/\\/mthjyq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9c75d03a158ae95a2b50d50abd160a87fe680db59b11eae83138bc7d78b1155f", + "regex": "(?i)^https?\\:\\/\\/www\\.ytrgdx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9d0f02d4814288060243c461335dd513fece84286d1ac1d8b7a1220c46f3eb32", + "regex": "(?i)^https?\\:\\/\\/www\\.tjjfcf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "959d8a184bd5d1ffeb700a745fcacc2183e31d5a0fe182dfa2cd6675554f28c3", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d5a685ae53f6784344fdcf8f6e0a56cf967d642070af6a2be5d10988417e17be", + "regex": "(?i)^https?\\:\\/\\/jugcfr\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ec2dc5ad87f8e150b5b0c65aa655d46420637ca6b7a89e852a8c7dda1057e07f", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "161da3d1ab318c3ee85053de655fbb2d171bbbe62cfa3d61cb81e68c92a01df4", + "regex": "(?i)^https?\\:\\/\\/nucleobinder\\-codontracker\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c516f4aadd27d77e681cef6f42b3fcf483d0e1a4c0292c79185d53f6737f69fc", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9fd408451bc604ec1d87e2376ac0418a56f65f175e94c463e33f4473f9ccafec", + "regex": "(?i)^https?\\:\\/\\/sbehtx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a53f5ef85e39f024752190d5ef30f64a2946ac9694465b5bf6bde1f25e95dc6c", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "abddc586446931dbd89b9a47d7e3b2679f70a850db3eadfbb69eff79c07bc168", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c961030513858a779f4b4fb228570b4593db26dab0c02db10f1535a2f21130b6", + "regex": "(?i)^https?\\:\\/\\/sgebhx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d0976beec68a1aed01220d49cb100d95cb36e9946fd030f43525689345717d0e", + "regex": "(?i)^https?\\:\\/\\/ytjdcd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d12b25aa5016341fc5b69c1b5a54df94117559911f47ac83904186a0fceaa290", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2d681bae24fc9fae1bc5bb5fe3c062725c0acbc0feb2b9fdb49e39ef92da3aa6", + "regex": "(?i)^https?\\:\\/\\/www\\.gnsejg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "df3ac29497b701bc162cd9ad242560c34ab366153963f2b7b255dae1795cb9e9", + "regex": "(?i)^https?\\:\\/\\/mdrhjc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aae4d50d1a72fadb0c615e669a6c14f7e2bf6473404a19e27293aa4d81b10883", + "regex": "(?i)^https?\\:\\/\\/nsggxd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c211859a17548b2261623d7195811e3f16e6efec1fa4488a8809ab86878272b1", + "regex": "(?i)^https?\\:\\/\\/vfawdx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4f72ce790cacb5f7098bbf68bb788e27a258478b6c1f5e90d21be8bcba1adc18", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4245076e68b0e58ac91e0c576968a5f9068e8831c4381dbf486cb3c824f5443b", + "regex": "(?i)^https?\\:\\/\\/hotvideoxxxxz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f21ef513560c247046686ed1a81590f9af973bd9d7c63d17ef65bad52e7910cf", + "regex": "(?i)^https?\\:\\/\\/www\\.afvzsc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "94699ee2c53e58d793b22092ae7094a268b672ace659d14490afb16ffb8c6f9e", + "regex": "(?i)^https?\\:\\/\\/mftjfz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "71166c61bde49a568b6bc6ecddd7036a747fefa346c56b991c348aed2ad4b1d9", + "regex": "(?i)^https?\\:\\/\\/nbdrjq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d7ff0171cecd3af6f7bcc93a5f2fb6d566a312835b71efa1fc4cc39d3ec21a00", + "regex": "(?i)^https?\\:\\/\\/sbefxs\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "27c67498692358f7b5f83e06dd32f791761c594c865fb4736d4dd5f3aa3cd967", + "regex": "(?i)^https?\\:\\/\\/vfawdx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9d5501184c3c685569f959f09db1e18790e0a1f884a15cbb85ec1c0c605fc7fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "566a70c0339842393996dd08e3110e41350a0ce71ed5aee185427dd0ded12515", + "regex": "(?i)^https?\\:\\/\\/gemsjg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c3cb9a29df1100ee06bc4b37fa740bd546f578c13a645ae91c664506404415aa", + "regex": "." + }, + { + "hash": "87a37458f07d6268dcd28e55d843c4c031ae798b782adb14f1970cefc3ccc0a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auth[\\/\\\\]+one\\.php(?:\\?|$)" + }, + { + "hash": "f512e970be5fc545f7ce5db483127f15838fd01b31a615dc102cb50b188148d5", + "regex": "(?i)^https?\\:\\/\\/gbdnjt\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f9a3f2557d10ba447135f9b9f5fd4f52497b34a916961d0f200b3b34028cc210", + "regex": "(?i)^https?\\:\\/\\/www\\.sbefxs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9b5705fefd6094eb251b2bd451f9fa48edb04261cdff8f2a3cb83ceb4d70f567", + "regex": "(?i)^https?\\:\\/\\/mjgygd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b098513a58e0b9657056a887ca47b2d1a65bf278bdbe519d2845847d07247be7", + "regex": "(?i)^https?\\:\\/\\/www\\.bgejcf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f8c14c93ef5e0dfedcdbe3e19389fd87ced5c3c360bd9d9228733b2ca1415490", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a4b518684f9b2b7ff69591a30ae1676b5a5a0267b711f38afc170ae20cd6daf8", + "regex": "(?i)^https?\\:\\/\\/ymytm\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "80e5228f0effc8d27b00783ef4a5c371ec5495b2df6accc6b7a904ca585168bd", + "regex": "(?i)^https?\\:\\/\\/www\\.dsnxde\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a08d0d1b8f54ee1880443c884f67f06de3f62923852e91f5a24c4c53e9880a85", + "regex": "(?i)^https?\\:\\/\\/www\\.mfgjyc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "606b70373ae9575968463f858bb58e5c1ac173db0703a09768946e5d29b1df1c", + "regex": "(?i)^https?\\:\\/\\/www\\.tcfndz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a851692c95f362dd49e41da35a2170e61e9bae6fa258d564d6976c09926d8845", + "regex": "." + }, + { + "hash": "2be8674e660a50d16cbbf5b5c9a1baf70c8f8849b0314ab098d42efab1e17e63", + "regex": "(?i)^https?\\:\\/\\/mjgygd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5f44b87eb841d69549812d56e9be6e836577a535b4072435e09d1206251df6ca", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "02da87232aeceeaad1c2eb00c8848f52e2b9ed30a23a2d13210c6d4068696bab", + "regex": "(?i)^https?\\:\\/\\/sefbhj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "82e5d869ef24a88b271e39ffcbdbfa623ba49abd845e6f2c3eb2f7e2aaf423c0", + "regex": "(?i)^https?\\:\\/\\/sefhxd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f4a2dca122e2f458191f692712b95e16f11d62309ff7c384024ddde8f66675d2", + "regex": "(?i)^https?\\:\\/\\/bfanhc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "2cb2d932cab9c456a613b1f24209e34ed9adc70ffeba9e6982cc995439ba114d", + "regex": "." + }, + { + "hash": "cab9e741e51cfc2b091964ef8c1705f6cd8cbbae3a5f49bbfaaa93905d370766", + "regex": "(?i)^https?\\:\\/\\/fvsebh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3b56f8a73711bb776432146f634340d57f9914ab608a53fd87b329f67648f249", + "regex": "(?i)^https?\\:\\/\\/inetweyuhe723\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "13d32f623dc2cdeb7b2f4d744ec2b8e0a69bda47942613e93d661af2f56044b9", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6a375e586b1eef89eb6a995b659cecd645d9923ad41a61dd2eff12e624b90228", + "regex": "(?i)^https?\\:\\/\\/ncgfht\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "904e1bfc47b6fc8aec344184c1c19afa1052a68dc40ab2243af9047fe5f2a2b7", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3e702d57c6f93a7b91124b09621b6a71d042d3fb777d8f2ffbe0276940ecfcc5", + "regex": "(?i)^https?\\:\\/\\/jivgtr\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "58838137cccced5f1f521ebded53ca19750ca184a83c8c0b896a98517be3d8f2", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "42564bf5a71dd32708af1cff0c30ddec63f19e650edd717698d201e0b3e5830d", + "regex": "(?i)^https?\\:\\/\\/bsdnxw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ed575c4ab4bd10b8ad59b570c3ffb430add0ba2ebb91bfa9b9b95f2877a2672f", + "regex": "(?i)^https?\\:\\/\\/bsfbxe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c00474c505f26b4841ba6a8549d563c9369fcabbf176bd66f18eb5b84e9b9222", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3d4d13536b0d35354f7e5d36af8fabcd4920cb0f25b2fde18405a22a626ff049", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cdf220146a5660029744904eafffdd73137116455ab5c32582320ec2321a6c68", + "regex": "(?i)^https?\\:\\/\\/sbefxs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "065654798ab616b6680e6cec2828e3401e77d8e0da5f13675ad0e7239525c6de", + "regex": "(?i)^https?\\:\\/\\/www\\.dsnxde\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "84eeba592cfac6914759a97837fad9d626d4aab82da10a17c3d993969f1f9215", + "regex": "(?i)^https?\\:\\/\\/yjgbcf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8d292942aec6602770f4110b4b1d4662ae0699b3788e33f7aed3e897630ed327", + "regex": "(?i)^https?\\:\\/\\/sbefxs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d2cad4a82d5301089de2ae793a31d5a655f18d3eb18d6bdec519d5517685ee5b", + "regex": "(?i)^https?\\:\\/\\/hnjtdx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7c3fbd57f7283ae0ce32f2a26a6a2b5212ec135976f1ef171f04a42d7cd941ab", + "regex": "(?i)^https?\\:\\/\\/jmhndx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8b875d78ab696ee609819d81ea09abcac5b5c363dc80db2f2b020bf9126acc2d", + "regex": "(?i)^https?\\:\\/\\/hmfxbw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "89914c953fe05db1b9395c263be5c7dedc2464feab7cb78322ae06ec2c75ea04", + "regex": "(?i)^https?\\:\\/\\/www\\.wfvzsc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3e8136120f2d5e8de48bca59ac22987f7aa2a45fda5db48b2aa68918f6971d2e", + "regex": "(?i)^https?\\:\\/\\/nqftjq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d5443fe748e312297fab587bdd7197e116914a1c628efb138df9c32e0e9a94fe", + "regex": "(?i)^https?\\:\\/\\/mthjyq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e1a70fc415e3bf3533e4aba4169dc450150b01bba80d183d9dae0aff528a755d", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7062604c97928cc136fa14ea63527fae69ee2e17465e5570d9e6859fbfa73d6d", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e1a7745b7a8b5e424886d523c3a8e7aee1a25ecc3813705b1ff4a1a9d65b7cce", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c01587e5efc6f293f3b156f4521717b02e2c630edde562c6ff5bb1704336ba24", + "regex": "(?i)^https?\\:\\/\\/ndfmhq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2685d864128a329f265a0e330da51b1c3aeb536f476ccb0bf08f186ad4920dab", + "regex": "(?i)^https?\\:\\/\\/nhtzjq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "52ddc92f5fa082837cf5854798f7daae5718d718ee26703f23e20db69a39e65c", + "regex": "(?i)^https?\\:\\/\\/sbjgxd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2cd86ed7bfb57aa2bc8518080e3ee2a1b26b62b9564e60a6c437f9d406f2997a", + "regex": "(?i)^https?\\:\\/\\/mhjtcf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "496e74c69e26c67b2e9bdf3b5ca1decaf15a2eb541be4743926d96d60769eff2", + "regex": "(?i)^https?\\:\\/\\/www\\.ytrgdx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c80e1ffc7feb437bcb0e9cefddf8d7c688fd83001b762c8c326294ff895bdbcb", + "regex": "(?i)^https?\\:\\/\\/tcfndz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3f16c9a88ade2810b21ab6e5d522a7ee5936a25a8a6bc0ac261d0c387796a38c", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e72bae73c64c8ee409e7556f9660d96f753e2c37058d54eff807919390baabd7", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f02e993a939f7355fb1257ea6f1984b0883e7027ecbca7f5a98afe6e15c63573", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "090d5d58139d33836cf0a74c8688fd2d43c3f714bba89d2e7bbdd54b1dbd9c57", + "regex": "(?i)^https?\\:\\/\\/www\\.sgnebx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "54dc7912e4d4d6574208ecedcbc2cd853e89c3206ca3fad49bb7e73d0858c0a8", + "regex": "(?i)^https?\\:\\/\\/www\\.gbdnjt\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "80b719710cb1c4694cf9e1d10f5ea23c5c7da65022bf081535900f8f679a3a75", + "regex": "(?i)^https?\\:\\/\\/ngesjx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4880653109c7d91ee17950c047bdf73254fbb38c2bc80909f2ad6608b9a5b193", + "regex": "(?i)^https?\\:\\/\\/ngcsbx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "adc4dfb44ebabbb51ea4e74ae90bd07e83a3b23c3a27e9e6f74e3f60aa5b95bf", + "regex": "(?i)^https?\\:\\/\\/www\\.hftjcd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bd3e02ed77002eba0206023c40e8ce1d86749966001e198412fcd7dc8abbe9f7", + "regex": "(?i)^https?\\:\\/\\/www\\.ngesjx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eeac6fef9437cd6912e8c41d1557920bdbaa0fced679be3c719f914f389d2468", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "705492ca225b6892e0bd680dc4dde7cb9c1d7c610c4ab12c7d96862b3ecf9862", + "regex": "(?i)^https?\\:\\/\\/hftjcd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3394bba5692bff962873cf64ada1bbbd24c698d01e47a5003d304c3209ceb8e1", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0595e334e09de8728d597aae7189cf80defd4fad8922d237511ee43fbc0ab142", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fea194385fc56d0d40c9cc792f150e6b850af4a79c6b91afe4c612994969b860", + "regex": "(?i)^https?\\:\\/\\/fesxcg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4894738e5677d3938822a8bdb760b2d01daaded3128922a79e9dea5160aa1aa3", + "regex": "(?i)^https?\\:\\/\\/bsfbxe\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8af45816bc7388488b552a3b13887c71870f65019c6aa69b446e1f51ee6e74b1", + "regex": "(?i)^https?\\:\\/\\/mjygbw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "555d4754af182da9ffd4ac9d5cb8a99d22165db0a879d6bb8277cdfcbc330835", + "regex": "(?i)^https?\\:\\/\\/www\\.sbehtx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a8dfb55f65203564cfdbd84c570abb8fbee02e6128eedec5ca694b1fc9fb23d9", + "regex": "(?i)^https?\\:\\/\\/jygndx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "68840c678412ecad37520a4bfb4f7413576c3887c618be4f287b4c1b59cb69bb", + "regex": "(?i)^https?\\:\\/\\/dgbsqd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f675b32bb3265d13ca1002078be8b70ca3066d640a88f98c690ba4f8d51c0245", + "regex": "(?i)^https?\\:\\/\\/www\\.ndfmzq\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a65d8c06990debccdaacf0e4e31e514d82ac045787635e14382df5702388b7bf", + "regex": "(?i)^https?\\:\\/\\/jygkcf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e38f0fa3867add81b6bf06d85496af894fec941335148cae86a75b373d974e75", + "regex": "(?i)^https?\\:\\/\\/mfgjyc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0958ca214dfc0acff88fc6f11211bcc81fb7b387d0d642559a4946e6b7e2a01e", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbfx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4edb7563924cedc068afe9d0e911878876c097d6aa12cd4a2101d528079f5f9e", + "regex": "(?i)^https?\\:\\/\\/sgnebx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b52b82f3a776f22b24c12777d6ccf51bfb143dd30d62cd13db3d63e6110e1a2c", + "regex": "(?i)^https?\\:\\/\\/gsnejf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7690d8a701b84f62908ad8160014597aca7ea0bfe80f1d9895ec4b51c5a1a423", + "regex": "(?i)^https?\\:\\/\\/streambokepjav\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4e5a840e0e5e96a4fd6c88660373c939bf9f514171ad49ced49147b6e9dfd10a", + "regex": "(?i)^https?\\:\\/\\/www\\.dsnxde\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8cceaf5ac8728444316e92a43233413f75cbcfa9fd89270aecda45e5e3f8fcec", + "regex": "(?i)^https?\\:\\/\\/jygkcf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6153ae4c30b926529a519e51c47de4b6f92bf2edbdd1777e1734f02d31516f79", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfkig\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0369f49e0ff876b48f90987ee61383e12acceee7c6e7165fe32a321db2aaf4e5", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d35f700c2a983e572db40d4aad09061c43d5dd485034010ac855d7788c796b00", + "regex": "(?i)^https?\\:\\/\\/davgxd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0940bd306ba3f39ac7712ad283d2a04c2e6427a995d50c12120d4e9490c77be8", + "regex": "(?i)^https?\\:\\/\\/kuhfnx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "67a43e0b3f3208c52279e0caf7098d5c5f2cbdc9a2d67aadfa029cffd5fd902f", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5ef2a78d52014e3ebc24a0942b672568ec23f810764eb7f231abe19934da435b", + "regex": "(?i)^https?\\:\\/\\/fesxcg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f5ced0b0124cbc7d9533a1486096631e761275c68d5327b2d3b1e69b8b962c72", + "regex": "(?i)^https?\\:\\/\\/gsbeht\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fea11efbadd3d2f39e8e29d8bb2668db4cb1793fb452147a9c21a51992675a0f", + "regex": "(?i)^https?\\:\\/\\/dsnxde\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9206b510f119dbd6cba2c2e74d0f85eec2091a8bc97494130fe9126cdcc7cf4a", + "regex": "(?i)^https?\\:\\/\\/mhjtcf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3b5bd2a47c249661e278e4fcdda35cac7989c9d4fbae5586b9583c09cc4f1183", + "regex": "(?i)^https?\\:\\/\\/www\\.kuhfnx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9d1405b74f431a35ed4d58874ee6a64726176840e8f82dc178e58713ddf3a49c", + "regex": "(?i)^https?\\:\\/\\/www\\.jmhndx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1d9dbc77216ffaaa0a5ff13881625cc4d98d8a2f91deaa44f0eff3cb2f0cca95", + "regex": "(?i)^https?\\:\\/\\/wbfahx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d4cb21bdf210851b9f0d822d250702cb457ec63dd34b58e7fdbd4ed7e813aea4", + "regex": "(?i)^https?\\:\\/\\/www\\.jyjnxd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fbf0ece7bb4395ef0541352b51ec2465e339312ff7e05c66b15f9ec35c4f6247", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4e5838d77f28558f193a215642cdec8be4f714e656ce448c65c78f7bad81205f", + "regex": "(?i)^https?\\:\\/\\/ymytm\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4860bdad6bdc41723425cdd8b3a3c2ca5020b468f88baacac9721a76202aca13", + "regex": "(?i)^https?\\:\\/\\/fbawvg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9135a841d8be06b5dc5ce2ecea2427d1540712f6e33f6d0a30fc9cb738f705c3", + "regex": "(?i)^https?\\:\\/\\/mjgyfe\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "af123d0574bd7aedd197177ca09d1677e908560888ce88e44507b87fc8530d62", + "regex": "(?i)^https?\\:\\/\\/www\\.jygbsf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "806930ec537dec0fca541022d30bad7047ee436ab12baf1abc652aaea795ffd5", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2cb9ee33a2375d7b06888d3ee59a52e7d2e0b48ca8b00324a1e6bdc55c2a23ba", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4d7c9ee907996d83c294fc92df534f75e58a16eea72acd1f096d1ef19e124460", + "regex": "(?i)^https?\\:\\/\\/sndjxd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ccd8939c7893f0742d27934ac82426740e387d83ffbc4d22fddb373d4f0d2a31", + "regex": "(?i)^https?\\:\\/\\/www\\.nbdrjq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "03218ac46bb127be567b8c11413b35eba285b99b34b2145d0b15e95e84489a2f", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2e93e71dc83b6dc0e0aca3a63fd55d47c6e9c98458d337becbc37b87f412747e", + "regex": "(?i)^https?\\:\\/\\/jmgyjd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "501a7166dfd01081ef97af5530306752536a2df42783dd1cf479d71ef653ef11", + "regex": "(?i)^https?\\:\\/\\/jyjnxd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8ccdb2699cb7cedd42ed3649192fce42591ad36223d5097082d5c6783a0c92ce", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cb716295dffe7f5859a549b5f345580fdb2d786a9bb4f717954d07ce182a01e6", + "regex": "(?i)^https?\\:\\/\\/www\\.sbjgxd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a2195f6c838be5b339dc79cdc443b517c59aaa9314fff095ec3f491088512d4c", + "regex": "(?i)^https?\\:\\/\\/inegsyauds722\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c384569eaf98a67b6438bf6f16bf78a66ffc515b9a5a49952e697fad5fa434de", + "regex": "(?i)^https?\\:\\/\\/www\\.gsbeht\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9a01677544ace0e675ee83e6eb7e3dd79e94aa592669a01db163e37ade9859a7", + "regex": "(?i)^https?\\:\\/\\/mjghbe\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f9baa0209ea9bd87089f51af61064be53cdce977d6a9c39ca0cac8b685bc0de9", + "regex": "." + }, + { + "hash": "689df1621dec7743a202f43120d9c033f3e78a1c377d9895965c5628460d7a2b", + "regex": "(?i)^https?\\:\\/\\/wbfahx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f87da8130383476566205274f09baa21dc21359965b2be8ddca81845ec3884d9", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "64b4a5f1a16083485908c62f87a3db8a590ac5c082db3c7a385f394a743e1346", + "regex": "." + }, + { + "hash": "ed983cecfb880cdfa308937d0637f1dfdf122b9d85f3d41a394f5273b5a94f15", + "regex": "(?i)^https?\\:\\/\\/www\\.ngesjx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5670223f6de05116a0433b368fe0aa30cd1dc798c53506a4d52068e7ccda630c", + "regex": "(?i)^https?\\:\\/\\/jugcfr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "eaea990fd2b58c4aaacf5654dd0e00a654b63bb2ea3731258fe6b51091dd9929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nama\\.php(?:\\?|$)" + }, + { + "hash": "8cc94828e9b7d77830aadd1616365ab89be9b116ba78f965551061c50bfd5cfd", + "regex": "." + }, + { + "hash": "8dc3c943855f5ca188f61ecdb1790b6e800f8e1ff77e7f6d3849dfe9e0e12965", + "regex": "(?i)^https?\\:\\/\\/ytjrsd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "02ed665e4964c32b188672270f831e61a36b436f508511eed118597a30dbccf6", + "regex": "(?i)^https?\\:\\/\\/jyjnxd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "145918fc76fe4fb2cb94a6d2fa81c6e2668599f5bce5afc1f315614893445df1", + "regex": "(?i)^https?\\:\\/\\/mhfkig\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d991524a8b6e60a397b78d1064f27108bd27e8e20ad572ca9f7605546b19c440", + "regex": "(?i)^https?\\:\\/\\/jyjnxd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0dcab30428fc5e5b6af801ed7f23682f98c1d9b0b24e8d6e1301209bdd0d79c5", + "regex": "(?i)^https?\\:\\/\\/vfawxf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0f9d51e5a8337ae5c57da2f823eb99019e3c3a797c3241f175a129867ecff6e2", + "regex": "(?i)^https?\\:\\/\\/ytjdcd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ee04ca840dbfa84bcb616715f2b014004057b1ae296cb6bd93bb3e5cbe301866", + "regex": "(?i)^https?\\:\\/\\/www\\.sefbhj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9d64d90f4d807a5f1c7f91f994341b5802c6689ee36472a9eb3fc38a9df404cf", + "regex": "(?i)^https?\\:\\/\\/gbxdnj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "69e641af009a36828997fceb9882ed16389bc569ffb75aa1c84197e483bc5549", + "regex": "(?i)^https?\\:\\/\\/gemsjg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3ba0ab8a9bf3adab0c9ae768b3d6cae82a19974b59ae9cdfe50a7e5ac6e6fdf0", + "regex": "(?i)^https?\\:\\/\\/intee7223\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "aac6e4828d8980532302be7d5c8c4f45d987c05395947005c0f6c26e193fc172", + "regex": "(?i)^https?\\:\\/\\/www\\.fafdvb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "899108c405786b8ced7d7c5d6fdf375699d24829ededaf0662d677c9f058f1b7", + "regex": "(?i)^https?\\:\\/\\/www\\.mftjfz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ccdb7125abe4a4d636b13fdeb3bb0d2df17e22eea3687cbff55eb3d425adf4c0", + "regex": "(?i)^https?\\:\\/\\/www\\.ytjdcd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2f0e1c83f19669dc3b407e0e5e06097247f847252e97e8f8dcf983e7d70d8bec", + "regex": "(?i)^https?\\:\\/\\/sbehxd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2285e203030c5f407ab9e4c40a49756129114605b27dc362bdf1270064ae65e1", + "regex": "(?i)^https?\\:\\/\\/gsnejf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ca591fcb56bced17371f65894bc5d43767e60afc8224bb91e3760aa324ae0307", + "regex": "(?i)^https?\\:\\/\\/www\\.nsggxd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7f0d75db62e516ec73f6ae0c48362a376a07abb58d80159265823349272750ca", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c0c589e036f7026300a690a459e3bf7033b8056436aa815a8147d8267199fe63", + "regex": "(?i)^https?\\:\\/\\/sd216z\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6010b2cd6e293ca79f14bd9ba3eab5c71cbd4aa64f594a7d78e65837bfbf2b3a", + "regex": "(?i)^https?\\:\\/\\/efqavd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dedc3fb8fdae672f193ba6d927322923285eaa5dbd7d0c42261ad0ccbec98764", + "regex": "(?i)^https?\\:\\/\\/bdsfxe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d3015175f07b0f85fa8431cfff64352312d33771dd7718a42b2978e1749a0b0d", + "regex": "(?i)^https?\\:\\/\\/mdbxdb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0e121b2a8429dbb944f42af7fc2e7c982d65b9addb48a380e144425394072039", + "regex": "(?i)^https?\\:\\/\\/www\\.mhfjtc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "512d1182352271d7ee012bcafbb057e0147613c5764eead0a7c1c1838b8a1266", + "regex": "(?i)^https?\\:\\/\\/mftedd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9d6b0381d4527214b57c0f03d268b97a212e913dbda7a5c8ad795fc42b805a69", + "regex": "(?i)^https?\\:\\/\\/mgjyfe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e84efc3a72f4925a91bd24c7729ecfa92b892ee99c8b9746924ee32d17f86", + "regex": "." + }, + { + "hash": "710a58f594bedad4d13adc9c956c7d5a7295082d722b53f07f3902b886e24d81", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8b54f46f0f18f89a1b890cbfc771bde1ac619aac53508aec15b100de54d92135", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d306ca46b3b39a4b1ad564fc8bdb82d2e5acaf7117bbc1573e005f8c33424a9a", + "regex": "." + }, + { + "hash": "bd98446ede39c1532cc81799ed041ba518555c7be49103c3619cc30c7f3afc10", + "regex": "." + }, + { + "hash": "04c8eb67c8005084ae94d6a85e18dac143425efb50e20cd655ba1a7ae1b695f7", + "regex": "(?i)^https?\\:\\/\\/vawsdv\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "dbff4e2600ea6fa416fe764465beceb0624a70f6b4722120e753b97e3bfcc809", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyng\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ae0beba61aa80be545c20b91be42762158394c4b8f29e8cecbde87163c6957d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+whtsapcareeer\\.com" + }, + { + "hash": "55f19509f59efa7b83e3bb3cf0885514b302e891d83cb58925edde1218b2a93b", + "regex": "(?i)^https?\\:\\/\\/hothitvideozone\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8dc521a97c86562954768758a52b3de97601850a7c79e33326d296e06dd59e7f", + "regex": "(?i)^https?\\:\\/\\/fgjjjghfkgkkgkgkgkhgk\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f628053a3318c5749b3aea2b874d4435eb59e9eb6f9264d5541d344e5a78042f", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e2d45e683a67e3f96a020860708b973e2e21b058e46c0949f4619ec81063015a", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5eb295d947f05aea23bfeff943b45921a920112b95ed4974bdd28e9821865bf1", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfgdjgffgjfjfgjjf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b164b0d00350b1f17c0ec4e97e7492f18493943931b18c5ac05e12e19c4c3f16", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9c57bce0d9b1880a42c89304ae87976af644502d128f372bbc335606248df2af", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f5fe390d11357a506525487c3e66e72274dcd89e107f38d0b7ac8271af430168", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhduhjhjdfgdjfgjfgjgfgf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9d28f00592abdd45a5a2fa33c658c58a7e877daf68420d42ba931b38598c3738", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "cf0d5e1b0e3570a2c51305acf2429c2700b5b9dc6d44d4689cd42811fcfcb605", + "regex": "." + }, + { + "hash": "60f4a1f17f5b155b4c11dc01c2309125698e6dfa14264000ef56ab18b16bb36f", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a089075cf3eef6ef2e53efe423015be599bbe9116809163edc2bd1e24a96f613", + "regex": "(?i)^https?\\:\\/\\/vawsdv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d6147eb6af8991c1ead0ac6c9942d5ecc875da387b924e90f214381f6c68e924", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgfjgfjftgjfjfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c33781a3e27edb2341d170316d86007de8b6c2284210ba8f185f1e46977df415", + "regex": "(?i)^https?\\:\\/\\/hothitvideozone\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ce3d0946eda56dc620b53ef8e37f6c6be3fa7b2e77bac877cbb9b33335d1f62f", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6e81d2ea9258e18d23e411d029f682165bf783143b2c905302977a1f8fec378b", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1d900a059ebba4293d6e69179290da9fbac68a59baa6c4d02d368779d4f87d26", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "95c521e47c04c20f12d5bc78d3d9893c635befa798f9adda3d99060eb445792a", + "regex": "(?i)^https?\\:\\/\\/vbjngjgkghkgkhhkhgkghk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "94f2055b9cc3d23e44c00469ac0563e4ec785dde6be36a719efcc6e4e1e336b4", + "regex": "(?i)^https?\\:\\/\\/dfhgdfhjfgdjfjgffgffgjfgjgf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "88eabf84e7546babc4807d572706ff18f5bf09e5e6c3206c98f5babb1a406f0a", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b6c146a81748bc712e0e1cd17823d4f34e1bada1b4efab84304f8c3e3c23cd4b", + "regex": "(?i)^https?\\:\\/\\/www\\.vfawxf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f0bfd923c523a4142885ad33fce7a7bc89be8a858e87606b98d0bee091636fb8", + "regex": "." + }, + { + "hash": "80a853f3109dd63c871dc8430a9c1200ac538eaf7ff55a13136d4dd7dfc15d81", + "regex": "(?i)^https?\\:\\/\\/moedahabbohotel\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e3153b80022baaf9445e87067457cb626f21c647ecb3f02e354d6f6559aaaaec", + "regex": "(?i)^https?\\:\\/\\/www\\.segjtx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e4cba0615cadfb11e9a0b4bd4989b43d66fd752256051eb7e8b61ed4b35efee9", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fb672cff15323d229feb2f40daa52a940aa2e75c3ecbe180940aa59648796ac6", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "916eacecdda10edeaac9840eeb37479e84867fbc51ec03e53de41148fc5ed431", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "01e41af8e0561d7d5bca44ae9b000dbb0518623bdc044921d8e3132f7e122d34", + "regex": "(?i)^https?\\:\\/\\/sdgdsfgdfhdfhdfdhfdhdfhfd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f776a3c6d0f1ca0015a3cd3629cf9ef83f05039582cd2f67b301e62e5da7153a", + "regex": "(?i)^https?\\:\\/\\/fgjjjghfkgkkgkgkgkhgk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ffce0fd8785fd18692c3fe04b20d58b436a1bd5b8ed4b0cb8e0e2266a7f8e97a", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "34d0d7b66ab9153c34e14e6112046ab9313432a8c56e69d9e2f8d37f3365646b", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c7eaf749f3734e9d7d3e759a6e1d643f52c6ac2dc961d1efb06d343d38ea41ca", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill24\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1b7bb911d7e58613e9adb1b3b4e8a7872388c01df37649d4c571fa6f368c4c68", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "202aec169ac387c11f319a9a442a71e2d0243741a69611d5ffcc826befdf4b73", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjgfjgfjgfjfgjf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a109a3cb2045df08a30e47c5698b11cb3e59ab7370d9e1d0e4637901cb9b5176", + "regex": "(?i)^https?\\:\\/\\/dfghfgdjgfjgfjfjgfjgfjfj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f0a65a6367825bd10ac57628ddbda15e5d089bbeabbd043a8bac92e009f3f825", + "regex": "(?i)^https?\\:\\/\\/vawsdv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "37f9cdb5053426c296eca2d194e057c31206d8b6a2373f28880fef9093057206", + "regex": "(?i)^https?\\:\\/\\/www\\.vfawxf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ca0608a68eebead25c7740b1c0028f04c739c877b448c97e1cb1c837515c4ffd", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ad858ae2e1d7b727b75800b0a9328a75d082ad74fda3d68f85160326cff4e9b4", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "16888f9a89180ec6195a71b077bc51fd3b5cd9532f54abe35b5c463866e9000b", + "regex": "(?i)^https?\\:\\/\\/moedahabbohotel\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b0acf2f213a079a4e3dae006a233b1a59a788fde47b6602788d02af9ea85cbc4", + "regex": "(?i)^https?\\:\\/\\/sdgdsfgdfhdfhdfdhfdhdfhfd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cb56947ad1e9e4a6a60a083ab283c7ca41e7f4016f3d8e58aeaa3c6a146d54c6", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a710f2acfbf4f1e4bb329f2f7f7881a9a4ec3615c91169076106b9a6185e7b15", + "regex": "." + }, + { + "hash": "06ee21b003351e4ab6d66916c4faf5e5f5c7321601507893aa8e74aae971e59c", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7acb2d7c1bc5b9384d611f3926f0a8f98aca1c4d1c33277268d1b1da0f3ac165", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hmy7p33n(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c2f3c3f77fb7a3a42febd3851c938819e231ea68880bc6ae175db3e0487f5660", + "regex": "(?i)^https?\\:\\/\\/fghjgfjfjfjgjgfjfgjfgjfj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b46a7b1ed250f7932c354f56e76085b00f8d85d647347418efbb65e35f4daa44", + "regex": "(?i)^https?\\:\\/\\/sdgdsfgdfhdfhdfdhfdhdfhfd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "25aa89837619def59bd18df831a386da3edad722935472acf13b74b2d6987250", + "regex": "(?i)^https?\\:\\/\\/www\\.hnjtdx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "232653b50845a8a10f91ad4cd616ec50f91d2a320a49501cb6837ead9fecd1ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+we1[\\/\\\\]+grow[\\/\\\\]+9xFGD2\\.html(?:\\?|$)" + }, + { + "hash": "a63bd6d9272afcd6bbe54bed08dd5cf8fe2cbe2d7d4ee76a5a198aabe9be0874", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-17086077584" + }, + { + "hash": "deb603e9cd88af464e06bb03c83b2d498e82500190ab7310fe87586330dc9d5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "42540afc4ca3aa604fbee713d593eaa1198a214c7d4e84adbb18422e4be5c016", + "regex": "." + }, + { + "hash": "a8c67cfa8fb2688273bb20c8dad7925745935bea5de1a46dec5e5fcc206b1b7e", + "regex": "(?i)^https?\\:\\/\\/www\\.segjtx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2e0e77c2350b1d0e610f70ebe0588619c389d72dab6626101d6cc4a0e2a28a6c", + "regex": "(?i)^https?\\:\\/\\/inte7ujs82\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "714181fc3a1fd468f6e170d22fb459ed138b2c34aa6329d5655967c7908e7ff7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "23b7ad40d0403a57c1bd389d0b4d9c941257418d64e784312c1a7d8c4fedd72a", + "regex": "(?i)^https?\\:\\/\\/www\\.vawsdv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7789c1c490b2f66a3f2af0eeb6e20fa17b07fcb19229526997ea1c13590a0f84", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "764267dbf4314414419140c462f26bbc7a9ba23282350b93880041a4598c4773", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f04bf721eb131b0579ad6d7f9ccd27c32389b00a54c24f5d2a4415fc0aa7fcb8", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7acb2d7c1bc5b9384d611f3926f0a8f98aca1c4d1c33277268d1b1da0f3ac165", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hmy7p33n(?:\\?|$)" + }, + { + "hash": "e1ea45588eaa99e24709b201eb0b5c6529784252d1d5a40cf62932bb3e7f8e03", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e6291629a82734833e83a6e2888796a367979a92d674ecb4e3c6c2cbfbb40401", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "26f0413fa1b10ffb57d096f33a5f751c9f047c4359b274239848b87c2b11e5f7", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f134ad0181c3badb3e5e5a91db2e33095b1870210c5a340fcd013ee1e3cf0484", + "regex": "(?i)^https?\\:\\/\\/www\\.ngcsbx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c39d3e0d3293e4818165ec43755d68f149c440d886f2b97d08aa16a75daae945", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8794ee40174c88fc9d15b43b4055a995c491f311a6975b55ee58c61ad153861a", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "0542afcda6975ba707c15609756b0f395f17ec888ac0101d1a155ca95a101ad3", + "regex": "(?i)^https?\\:\\/\\/billowing\\-credit\\-91ef\\.zkc3637\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5d193f2cfcb64989c7eb6939dfa964a462465b8ea5d724256ff5cecaa0bb6835", + "regex": "." + }, + { + "hash": "f4459e56c460d33d6b9b78917a5bbc573595ecdca543774d9836c89eb8f5e478", + "regex": "." + }, + { + "hash": "5159bf72d97b5587abbc4139eb3808a3a44e3f176ba6548f676367efcca8fbfc", + "regex": "(?i)^https?\\:\\/\\/vawsdv\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d89429bd66e6d1c333ee5192134bc08146e1625b86f11ffadbff3c4cb0d1a6b7", + "regex": "(?i)^https?\\:\\/\\/www\\.ngcsbx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1b4667956ee472ee990264de47009dc286af05a8bf4afe53f3c6d5169fa24616", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a12e740228d0308293dc0b7fdab09acc2450ebc679a5f99624e380b510486b53", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjgfjgfjgfjfgjf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f768cb265e4b984046e6bffd760c11af9188b07f56e5f4884f6dee0b93fa8a1c", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "96890a088793c7b8b520b1d94aa62bd4da7c5e42f22a8226c75ea6deabad86b7", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4ddf77da912a3dde061055e61236b76d06c2f44140760ec70ec57d241fb12104", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjgfjgfjgfjfgjf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "56b35a46d417241adc26ba8e22f58efb335e8d16944e921df014b20623b382ef", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "766752b945c6ef97c3c27af29f24431ddef4232a83304261dcc465d3e3ec5c63", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "36a6422131adbed5e3df8f458fdc482b0210e5fb0efeea1d5aa29a0592c3cd3b", + "regex": "." + }, + { + "hash": "b59906636afbaef4830994792d5a2611ff0bdad699e7b41c51316a00895fdc95", + "regex": "." + }, + { + "hash": "970fdb6a2e296be3f37b7a95d26f25c52ee61a873f817e40210d34e6fa82f48b", + "regex": "(?i)^https?\\:\\/\\/reward\\-xrp\\.org(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "771fbbfd3103ba1c92ecf8f2e5c9989fe27bfe0ee1c26c8005bf5b0dd2f3b125", + "regex": "(?i)^https?\\:\\/\\/sdgdsfgdfhdfhdfdhfdhdfhfd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ccbfa15b24dda4f796594d1b143f98402e86e8a61dc94a554833ac4c8bf408a3", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3b7cac9e54cd8297c5229e7e4cc9809105d515a5f93a299af14a32e32c5dd60b", + "regex": "(?i)^https?\\:\\/\\/hothitvideozone\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "10b4c9ac52eca4b554d581a45b454f736a3ceaf3af0f5249f0bbd06d59238751", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjgfjgfjgfjfgjf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b58f70c7ad1295c7616ab0012e6783dd89b179a042d95f9d7945ab0a8c62dfc4", + "regex": "(?i)^https?\\:\\/\\/www\\.ngcsbx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "22b9e078f3416c324c13dd70a7f70538c13e8fd56da4e7ac6a74fb66d0a77d08", + "regex": "(?i)^https?\\:\\/\\/dfhgdfhjfgdjfjgffgffgjfgjgf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "eff23008dcb685322fdf72294976145a31b2fde3ed3bb03ba04d0e9a0c7a101c", + "regex": "(?i)^https?\\:\\/\\/fgjjjghfkgkkgkgkgkhgk\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6cf012192f0324071b33f93c4ca0f14c3f27e2ef8b1a3d128820a406f355327f", + "regex": "(?i)^https?\\:\\/\\/ygxgp\\.cyou(?:\\:(?:80|443))?[\\/\\\\]+ua(?:\\?|$)" + }, + { + "hash": "7085f108bde2c4fa9b05259b004df1ca4a43db126ec715099f590a51bf5364d6", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eeb7f19aa5e9feb880d8998c9e5c40ea7beca51fe2c1679cef056d081920bde2", + "regex": "(?i)^https?\\:\\/\\/www\\.segjtx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d7ee3846c0c2c99c3fea8d2591ed0ecb34a5d49f8489703a4a5fae2629b1b131", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ritdskuckx\\.com\\%E2\\%88\\%95jeyqjhnce\\%E2\\%88\\%95jdhsrw\\%E2\\%88\\%95epbrwzee\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=aucta\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d78d40b9928811cf3e5a54c5704e98f5bb1385e7506b8f462dbab7f1830e83a9", + "regex": "." + }, + { + "hash": "315fe1c6f523d0f0816c2a346f82beb584590c666050e179fb9d69b1aec8428e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pazz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d90d0f75fa8afa36f344266f115e7452f4116148ca92daeb51b7812c9830ba4", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e9ac6e3802a933aef32e7bcffb9af7e4db64e3f0259a74c12bd2c42fc54e2963", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfgdjgffgjfjfgjjf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f9d8f23e1876015da91be728542bd29f92bd300373b771e6f31f9d3cdc6f2d65", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "585c4fdb27bc674e21d6e61c42f46ce69e73b620fd320c1b8720155d59e38425", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dd4ca9c2cec93e9bd6f4427acd6492ee202d8953332671d5d5d4493222ca2f4f", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "53461d38fb101b69e26d50107414b56fd8af7ec00262e5b991fb550355690007", + "regex": "(?i)^https?\\:\\/\\/vbjngjgkghkgkhhkhgkghk\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "52c205217c790eb404f6c4850ba971a0ada9ccf25798c207f4a37e5c6022afda", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fa725e95f7be2798f44c15db294877c4e14bcae1113760740f07b7066d2bdd42", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e56f0aa48fa6d095f59659e449ac5fa95b0a0c453db346e53417e9793045a65c", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "68bd191ca392688f4dade0433ae822ce1fc856ab3e67b4ff85b17afc3450be46", + "regex": "." + }, + { + "hash": "6cf012192f0324071b33f93c4ca0f14c3f27e2ef8b1a3d128820a406f355327f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ua(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4b2e3b13231684822e9e2df58d9e2edb5a53fcb8e82c060f8e9d4199b84a293d", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "361e2c7f89344974745082d719acd8b9a0654f73e987201385d1b75873b1f0ee", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "32ae529f6a41fb452b076109457a951f34765e8464a4db844e2f7f3460644548", + "regex": "(?i)^https?\\:\\/\\/moedahabbohotel\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "437d420abbd05f634ef01f8ba8bef1727309016d6e3ee08a83bf91226b7aca80", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2175bacd544ae29e9d81592f68bfb9ac1d832c85df6f8a2e4044d84789e77988", + "regex": "(?i)^https?\\:\\/\\/pub\\-a23b855a87724023a75c14d92aaf1ea1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e2362f915868d5f071e3bbf45a76a6a4ba3097179485ba6386905f288e87223c", + "regex": "(?i)^https?\\:\\/\\/fghjgfjfjfjgjgfjfgjfgjfj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "411dc794a5fa2c132655c415619f74f3ef41e7d595d32442d0c0cee00cbc6c47", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f6d7d62ef6ad2ee3da0500342ddf9553f8adb20bc112fa1d7b281a419fbef260", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e57dbc6f0c0bfdc2c9f4eb4d94408cd933fb017fc4a5863616ab3d4655ecc0a6", + "regex": "(?i)^https?\\:\\/\\/vbjngjgkghkgkhhkhgkghk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8ad4c5e9ea7d5ca0569e0dbba55870b114fa1e3fd803416c75627b4346de16d1", + "regex": "(?i)^https?\\:\\/\\/moedahabbohotel\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d03b70827d6ce10b0f22806afdb650736b8a9ab4d47f138f5770feb70b1df489", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6973224b5e8c86b7d4d7bac7d848c1741a65288bc8ea5001da4e9dc2a47a0fbb", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a4bcf334ebe67706cae25612bd543dc36252aed2c267675c305b27c7a3acfee2", + "regex": "(?i)^https?\\:\\/\\/1\\-trezor\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "c7d737707ecb067b826f74ba40192cba0cd18b6c28f595af4bc9d2ecd0064051", + "regex": "(?i)^https?\\:\\/\\/sdgdsfgdfhdfhdfdhfdhdfhfd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "18c9506b9a1eb6c99e28f7d951358d02e300bac78f3e67c6919ec06530ce8fec", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c08f2207775631eccdce463eed5281f5625ae75a473c4b10a905d34594c3758a", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "59a1007c9948a654eeba91062d3d4db747df6d6d2d1f4b840abc1a8ad063ab2f", + "regex": "(?i)^https?\\:\\/\\/inte7ujs82\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a00540dad585f4d35c9aaf417e060634ba2589aa2eb843778f6db7be8ee8cb23", + "regex": "(?i)^https?\\:\\/\\/dfghfgdjgfjgfjfjgfjgfjfj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "cb35cf4f9f7d44ad6cb95e4c90b30894c3088665e855519fefab365a357f5c5a", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "95dbb532e3cf7db54f8d8f82669fd310c242e6a56975086f97f2408483267480", + "regex": "." + }, + { + "hash": "348cbbcb13a4528237a862ba3eb25ade1133039276b3ba77ab9c670573246ba7", + "regex": "(?i)^https?\\:\\/\\/www\\.vfawxf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fbc1cb5a4b6c6b7cae36d70a3864b614b96f612a532ace35a36dc0c471d42c57", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6bb36c60b7686420cea8a34863094c0f64b5debb79f3d037f2bc8ab07707a383", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "59a6cf1d06e95ad2017613c7830da3266402886ec3959a56547f875a71b65e04", + "regex": "(?i)^https?\\:\\/\\/dfhgdfhjfgdjfjgffgffgjfgjgf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ce48c22995158981ea24ca545b998b752028405732fc76bd9df18c93b0329d98", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9464441821d33b83152ace46e1e1626abcc2a34c4c1aec8d1d3c0739f34b155f", + "regex": "(?i)^https?\\:\\/\\/vawsdv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a99422a669dfc82a4c2b252fc0acf6d96eab9fe65c963c7597f27d14f1b526c4", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b3a0ad56e0b7a47f7857f1497ed7963ffaed49206ced4a580db8d339804ce61e", + "regex": "(?i)^https?\\:\\/\\/dfhgdfhjfgdjfjgffgffgjfgjgf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7e09a142f69f4b50ac293e714f421fee708513e374eb94fcca383ee11703dca9", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d67d466135811a7ee3bcd216236eb40fc7054be6a5933c43a6663b9b6db1211f", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5c68a5b60843052c648fc3abd8e89a75e36381d16e92fc7629af0626187fa36b", + "regex": "(?i)^https?\\:\\/\\/www\\.hnjtdx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e48485809a37e8f3c1dff069bb6e6acb2a19eb9fb80fc85f1c0c1d2e51ba3549", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8286ba01065d038de4e349f4ce00b6c859aa984e4e5db6b775a4a71dc4dfd53b", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgfjgfjftgjfjfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a309f45a801e72820799e87bcbda5e6f0aa1aaf35b256e9c69744d0328227173", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b22cbadfeac611a0de65c924c0bcfb722ddd5fd2c3b6f0c2cefa9e9a68a18824", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyng\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8b2c163f2bc8245012527252ca85b71dda928c452603890ebcca4efb36922ace", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4b196fe1e1e654b31d8c06c5d7ba5c7f22b9ea20180f439e9358ac16b4df9d23", + "regex": "(?i)^https?\\:\\/\\/inte7ujs82\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c4e418b9e3c8bc31c1ba63a4e2b7cf2d1ec12f6c9c28f7686d0f8a709a2d04ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9bd784b70409657c91d200ef25ffc402109093b8266a806d181239e62870dd73", + "regex": "(?i)^https?\\:\\/\\/www\\.segjtx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9c537031ca8b90a1cd9029083e92ecd1b2319665b1d59c58f3587fe7cc5c92ae", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "970f98f99aeb143216e753adc5f63d0185dc8ff2f2aae93031dd22427bd10df3", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "36186d4f245a8626e4df6f0fb42a06b0cc0661848beacc0f3a51b6e9a86265c0", + "regex": "." + }, + { + "hash": "9b434bad952efd08b3665473ff2e695f2e477c43378734a7af4a8dfd53428950", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0895080d6b445af8ce5849a6893a1e9cd1c65a358b8cb03311b0f393e53c65ab", + "regex": "(?i)^https?\\:\\/\\/hothitvideozone\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c8594e814fc3ddd4f852cf3d527b15f9fa548b3b067a848f152a6fe42d78d845", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgfjgfjftgjfjfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e24e19e888d2d5d2ca72f324c5f3977d6e1688e15091176b861d8a5c91b1b11e", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7ee9276c9a6f6b670c2965eb758df94b4452e166f633d742351bd1dc87bc5979", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9238a2922f35a38ea0464116c1166cc4960e6f7636e016d9756ed8411ceb1c68", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eab22ca22a09e322eb34c26f56bd98c590228e9be22836772f35f66103cbce3a", + "regex": "(?i)^https?\\:\\/\\/www\\.jovial\\-cartwright\\.162\\-62\\-219\\-87\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "aa61192987fccc8d1b9426e620962b4834c765c0d8935292f8841716a3c19cb5", + "regex": "." + }, + { + "hash": "9e308d0fbe39f82f001c322c4ed7a5cb08b63460b97d192fa14326a714ef171c", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cd5b2189c1ea530393ff2764b36a76c31f3fbce5a0bc28711f4b40d0938b44a3", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b469101a451765e0b30692af0b2a1268fe395ea1d6b2fe61c40f863a03e06dfb", + "regex": "(?i)^https?\\:\\/\\/vbjngjgkghkgkhhkhgkghk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "df454029c2e5aeb1bf69abc0338e9682e0e79539b60e8f8a5180bca534401a89", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7963d1faaebe10032ec0ff5f121139516cf52867ad66712a54a4851fef5ef58e", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill24\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a4e19a5373414bde824ca7556567b2f09b89cb5d85ec97813c037236d00fb027", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "2c74907517fb2f7a1f88c6da3a29455aaa36c1891f1cfc3a818ba3186dfb81ef", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1a9f95c9b1ac2fa8638f817893f8341da3a612c69d4095cc25262d87d4363a3b", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "959db48aff6faabbc2ad99799e77915c58cfe5ee948ab53d0ddcb8900cac2fc1", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "1edbfcbff623b57eb1104e688894e04a16de5cae2210cccd111ad01282557fc1", + "regex": "(?i)^https?\\:\\/\\/vawsdv\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+6kkzgu(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "2ebe0c8a97e3b47812243d3c46a2c6f68a0b3c12d2d9c6ade377ad7a7c219920", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "1c40f8caf9b50fbbb50e033786decbb102467a7e03fdd68106b238a98ff99668", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "7ece59be3a0b5df6610ff34d4c6a16002ce823a21d5953b178fd0c62405aec80", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "53ef514a1436fdc5a57d9ddb45d6ff675faea340a7dafe5a7083f3838482f80f", + "regex": "(?i)^https?\\:\\/\\/sdgdsfgdfhdfhdfdhfdhdfhfd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1f2178bb1537254363244c7401a79b73b55e29a0fc58733a34ce75534f12246f", + "regex": "(?i)^https?\\:\\/\\/dfghfgdjgfjgfjfjgfjgfjfj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3d21a43d5a58f574326793110a172f39981ee9796de0081adff249b1c2d7d7b4", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjgfjgfjgfjfgjf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c903a09f34cef56694f65e0429138a672c4e75465029dbce98191c3d3d4c5301", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "39fd87d0b269f17ad1306654756b958f1c1c7cc59fc7471d5953efde1d33c75f", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfgdjgffgjfjfgjjf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8c84a80155278b3d7f0840956f236f810c7b27d665f80912f01f20e970b1f666", + "regex": "(?i)^https?\\:\\/\\/www\\.ngcsbx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f69cdf9607b3412c9b9b0cf50dcf48afa3165b2ac515912b6b1b43ab53c97c30", + "regex": "(?i)^https?\\:\\/\\/dfhfdhjfhjfgjfgjgfjfj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "680ec593665f6e23d5bcb203d45854821a98280164f6fb73f72dff60fba15b5e", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7181d600e536af011ce6a37d85e8c36bf0989b94b2f4c933fa140908eed53f77", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhduhjhjdfgdjfgjfgjgfgf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6f1b12af97b8aa6b46f3809411670cb18070e0fecf050d5b39b09b19f50b61a0", + "regex": "." + }, + { + "hash": "ab8e94b47550c00ee265b14e2ba52a0c234f1bbf45da6728c147dd02b2b6eb4b", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3e3e097548d936e16373523d8759ddfdca07dfa6c69175ac6cd2f8502de168d5", + "regex": "(?i)^https?\\:\\/\\/www\\.vfawxf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d67c210cc0d9ce2200e16939d803fc8054ac43ee5e8f196a1f6c1952312faccb", + "regex": "(?i)^https?\\:\\/\\/vbjngjgkghkgkhhkhgkghk\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8193beeb1b6fb5858ba17e496c3878ad12c32dacf5fe78bed12c9c0b81defcc1", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8e35159f3b2be24abe501ff751c729075231aed3c35afb1b167e80cbdac78233", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1db5b9b928ae57a959a56736809e71612b7196a9647b5e613078c6579078ddf0", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "abd6a4f72f941f9e6c76e24db2d0662366e7b4605825411b224b832162ade1a8", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "59e2f4240d5162ab46b1dee6d807c48d6692a8d74144ab8bbb08c9a8657cca91", + "regex": "(?i)^https?\\:\\/\\/www\\.vawsdv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f4a0c32a6831d0c06c4303bc98269bda7846518d2a7b664320cfdb4c4eaac05f", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e5243d8a22eede172b15becdbfed37f885b0896af7b5853d0fc2183be82174ab", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b4656a260f84eb11b7db1661f7f4e8d0a35c84b0ece8be0d91dcbd86832b2df", + "regex": "." + }, + { + "hash": "75e8d6929ac200b57d065ac7bb2181417ced77d81d686fd8f42b2c1ffc740cf9", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdnxw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4f032172760c254ddc888629c11933aba2bfd59e0fc6ab86c7d8373630c07b40", + "regex": "(?i)^https?\\:\\/\\/fhgfdhfgdjgffgfjgfjfgjfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ffdd08394746cfaeb4e0fd6aae4e937c361ce8133c521f0709e9679b2b4b3712", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c6d534c0c9824244eb29b13415c364aeeec8fd62fff2aa1516d95c3614903b38", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f57eb546fc0d54cbd80b7ab11fb881bbc243a597cc8e8731a1696ddb7366744d", + "regex": "(?i)^https?\\:\\/\\/fghjgfjfjfjgjgfjfgjfgjfj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "aea86b8a62b6aa8733e78ba606d2c24fec67e04f59e843eb5ce3c19a0cd5f439", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1bf02dec751a3496cf8cc2e518bec964816d89ccc06dfba0c8090b69e4696dfc", + "regex": "(?i)^https?\\:\\/\\/dfhfdhjfhjfgjfgjgfjfj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7665866a0635f7fa46d64a52759f89c492415cb83060edb9dbf4cf2d7fb0bd95", + "regex": "(?i)^https?\\:\\/\\/hothitvideozone\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "55352a32fe13dcfea177b42088aadd58d24e780540d061eebb38abaeb81c822f", + "regex": "(?i)^https?\\:\\/\\/dfhfdhjfhjfgjfgjgfjfj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2d1ceac034f36304c9e8d002309de388a71dd3be1377546ad91a5871d7952180", + "regex": "(?i)^https?\\:\\/\\/pulsecaster\\-rhythmtrackere\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "013df63610d5fde2b9f70c23c5195ce2ab54d6cb2c4789f1cce4a3d0fd6ca70b", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b5e398072d80bff8ab22be54244d8c5fe8c81436a7cfb150e2213ece35ed1524", + "regex": "(?i)^https?\\:\\/\\/www\\.segjtx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "80d99f153c31b298a8fda6472c3e12b498b49ba6e1a052e84985214840d7a0aa", + "regex": "." + }, + { + "hash": "44c707b0b5325de4ae0c57d747e729f88d25de36b4ecd5a534300ff09a323130", + "regex": "(?i)^https?\\:\\/\\/fhgfdhfgdjgffgfjgfjfgjfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "59ee754d1c0bc977190e6f654eb46b0334b8863a81667b49faacc8b90f89c88b", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyng\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4703e5f878560bdd23e87390d5c5775c05bfe9200220625aacafa8fb64352c9d", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfgdjgffgjfjfgjjf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "df88763f774625064823caa0d91b4d74dcaa318be79d6ab0c1b40f1efa3d159a", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e714e01bc200b785bdf23eacc27d73ed8524f7d9b89c47a3962f1cfd924b5c7c", + "regex": "(?i)^https?\\:\\/\\/sdgdsfgdfhdfhdfdhfdhdfhfd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "06a1cf017b216f3b8aebb9336b7f0cdc27e3b7c1f51c38e7afd5297b9a39a3fd", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0975663eeefee734de519b3b61b04ed0883e5c1ae285c5ae2a332d3792ca1489", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ff521b0c16e462c2df62380ce6e55cae67317b331e19355b60cb72a1efffd26e", + "regex": "(?i)^https?\\:\\/\\/www\\.hnjtdx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cf5a21d06b47c47e10a3f36229d60e722007cbe6264764fc3855332a0a6d67d1", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdnxw\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "93d222ef80df379bc0d5936d933e093c8f2105f01a25930c764c7a48fbc43f5e", + "regex": "(?i)^https?\\:\\/\\/pulsecaster\\-rhythmtrackere\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bb37f1bdc668e7deb3cee3e78fa4479c50a7c37ad88a1880ab0a51392f89efd4", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "af51b297b3efbbdfe4524d4d1031e4363b0e66e7cbe5868e5ff4f1e19c1327b1", + "regex": "(?i)^https?\\:\\/\\/www\\.vfawxf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1ba02ce93142eb21fcb8b4ae95ba72133a72601a2357adec24a6f159a31cebf5", + "regex": "(?i)^https?\\:\\/\\/dfghfgdjgfjgfjfjgfjgfjfj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4952d308fd7cef6eeadf13cb12b83d5770b16acf3f4681c5d8599fafa57bb422", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "cf06065ec487eff17768456e8671ce304053bc121e6c82e4b0c1b503de05be66", + "regex": "." + }, + { + "hash": "5991ad11350d57b5544db188feb4806917a2d25d3989dfce2c88e685c09cfa5f", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyng\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "82f7c1d561d87b1c4e53ab6bccfdf58c0f9d81f1a3d65afea702f927463ffb80", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cb409c0c306693df21bf797ed439f2dad6532719ef13f66739995d599765c4e6", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7e2706a41dcd0fa63b60874e39c277c015bf621ce5b526b154da129be458ddbc", + "regex": "(?i)^https?\\:\\/\\/dfhfdhjfhjfgjfgjgfjfj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "06a1cc5b828571676d39bc16648e30a1cdc5156168c4cd884e63c7ecd8360445", + "regex": "(?i)^https?\\:\\/\\/dfhfdhjfhjfgjfgjgfjfj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "78475b01c7315e331cef98ed513e38af271c4daeb0f0ac962e6d666c595c6679", + "regex": "." + }, + { + "hash": "9ca0156e2949037f105abaa61fa77b4a3f33433360a55a4ff4c509a57a9cdd85", + "regex": "(?i)^https?\\:\\/\\/www\\.vawsdv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1af77f21c662579fd98b9bf0ad45838b1e6d3ba6cea8994c9f40a897044eb613", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2d68d21ecf3e91ef0c4918055546bfdf8ffe45b95f80a28bccce819ef146dce9", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a30a22771064054a717f02039f7dca4cdf6b51c1fb32c68aaa6899fe753bc979", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "20e143d9717f9f4a31a9d7b8a0a9e92d4bd90519a95b8f0f5f096116615f167f", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill24\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "04d5e4099e144ed4bfe363bf99f7d69d885391b0ad1752c13bb8be1a55eeb8a4", + "regex": "(?i)^https?\\:\\/\\/moedahabbohotel\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "be9a617096d8f07200b795283a10555e8b2062e393087d523528d607022d1842", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "669c728531a88caab7fcc8b2c12ee6505d34574cba49822a160cd17e39c609d1", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a73f7981ae858db34241ea27f61bf24edaa64ba62ccf156d56eaf187109b0d06", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f02f2399419db1df69716addf342b4767066294e178d0d0f59b45f813d6f2d74", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgfjgfjftgjfjfg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ad459915f874d9144ac7f6fb9941279483ea848fccb10c70f86d1736c62c4abd", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d234fa9b2b71fe088603885b1e3ad9d791b8f782cb242cd675f0ecd17cfa32ba", + "regex": "." + }, + { + "hash": "dbd280d59c3cc03bfa438d445537a4ecff365aafe38d2cb54a9830e309b95103", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "048ec5072bfb209e481b2d963ca08a96fc0495ec694b59473a974f87809bbfc2", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a570dbac65d4270992661167b3d4c4d9fd7d53794b8609f203406def7ff626ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84ab4bc8ac484aaa0e8f1df4a614dbe83cdfa96541c2343b4e8b29b8588e4fbd", + "regex": "." + }, + { + "hash": "3723da611eebed09f4fa5ed70a16baeb0fc4fa8f47c402009063b3420d8eee12", + "regex": "(?i)^https?\\:\\/\\/fgjjjghfkgkkgkgkgkhgk\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b400a82c9a7f3a0c4c61ea65f97f5a38943e9dde8e8905335a73586f107d7dc7", + "regex": "." + }, + { + "hash": "2285f5e9387d8319414431f6cf425ef030437d7252986d9768b1c9639cc217e3", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f0d2ef43dbc0727a8ec4ef62a5f4a4e683e27352f9aa85e30df93f4282afdf89", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjgfjgfjgfjfgjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d7f145e5faca0b17a4303880e62f23cca37f82f41857c3434bbbc0126474a2f6", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2cda1601078663e802b3f471a79228b020a24ab067c64eb292ac3b1ad99cfbbb", + "regex": "." + }, + { + "hash": "d51142d0bf57ff861e1a140f7f68d78a5fa24da8151060280fe9192d7a37caab", + "regex": "(?i)^https?\\:\\/\\/www\\.hnjtdx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ce164365dd3979c0c27f44620a6fa7ea89b10617fb31b7df224296dae1b94c9c", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a7009d04faa735ace515b4bffb9093298c530e181b81d766add3abbc6caf3941", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6b789ed228901ae8e9a6c5ec2239b63c2024676c92cf1159262d62cfe85bb9d0", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhduhjhjdfgdjfgjfgjgfgf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cbc58137720c1b9d3002e78e505219f42364118ad7509099f6267d959a01b45d", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyng\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a31f3f11cb4f873de934df250b75f79188a941ea14cc32878929c62adf3032ed", + "regex": "(?i)^https?\\:\\/\\/inte7ujs82\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e3ee4f456225821187b8be148b787b3eb5b47aa9ea431a4c55b163e1b5c78", + "regex": "(?i)^https?\\:\\/\\/www\\.vfawxf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "81fdc4817fdea9fe795b576bdfb071c9a9cce8c9441f59c7d985412248f9c76c", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e3cd2d945d8bb0eb31263ce18925915b3f6fd0072da03713d73df866be79714e", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgfjgfjftgjfjfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b4d90a8f570bfa20f8ec8fc1bde8c82ffdd330f5adb1cb6222275217907fff25", + "regex": "." + }, + { + "hash": "fde9bbd41cd01ef8de3ef1447b522b3bf9711a7da5cd49fd93b0a1227fa18681", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhduhjhjdfgdjfgjfgjgfgf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "192fdc437b3d956bda71549f05ae617fece41788bad7a13a0b497b3af0a67140", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e4ceb9a4357aded68811fe410f74c9c5d4599f79e3c3235bf75abf94fd79cf37", + "regex": "(?i)^https?\\:\\/\\/fhgfdhfgdjgffgfjgfjfgjfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2bc7cd91da7e0d65acdab0496690e8fc009ff548f1a85a659e2bdc756d9b6534", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "59eee60c6636bb68c1fdc687ce9ad524a1a46adc739175dbdca2c0a6716df8ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2fe72b9f0e7eb5af3afc2cc6fb9a6107602b71128b360c2e8398d2367f8074b5", + "regex": "(?i)^https?\\:\\/\\/domainbroadcastrealizationinternationalservice2\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "06a10438b1ed4ad358bb910d01623542212120f413e189705e2203000324b301", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjgfjgfjgfjfgjf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e59655d67c0758dc0d43c7fe35464bc5d98e3c2a206951e99125dcefb6416415", + "regex": "(?i)^https?\\:\\/\\/dfghfgdjgfjgfjfjgfjgfjfj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cab92f9dd2f11b88b24997c9891c54e12a2b727402dfdfb215a277ea658f283d", + "regex": "(?i)^https?\\:\\/\\/pub\\-306e671267d44ae798f0fc259d64eb88\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a9d233ad95f62fd6184d083b9cb0187feff4d5e66611ecb41f6eb43618d2897d", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ffe33bb2326e17513e6dd4909de89ec88fceb8322e2183bfc46bd8787dd2d42d", + "regex": "." + }, + { + "hash": "e7beebdd92c8c523cc37f41e2f75d52f6f63bc247d89c5d55f9984b1a4559b2a", + "regex": "." + }, + { + "hash": "718edb0117f803922081cd71152fbeb498a8638d3e32cdcfbc2a733dc3065d24", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d9890376270b7ec5d40f42c3f1b13100a2a86a894397d74bdcab4ff1fa6fb86f", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b3dd79df0cfaa5cebd1d015f4ab59a385ae071f729c40078ff9addae15a6e416", + "regex": "." + }, + { + "hash": "4e1a290fbac522d4394c9ced879ec8a6fb07d51ca01b8bb1bd31d538bf1b2ec6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ph(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f25453d4d920ac7340358dceebde9974593b79bed4fa8793186d53bca92861b2", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "96469680fae76bdbc16c8c4efb6531eab961de087289f9c22f1cfc296eabb396", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7cf301a43985aa557b14b354eb84757e7a3743dbb4fc5e26b03536e157c90aea", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyng\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7eb44f55fa74d02723b5d72a2d60e0f6c11485140d5144f96b880403942ee2fe", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a242456ea43c607de25cced97c0257378796c1774afccd8bfc0ab5ac93d10190", + "regex": "." + }, + { + "hash": "68924968049fc2efb3d0b3e783a541729e86d6a87d128d6c4d62277fe12e56a9", + "regex": "(?i)^https?\\:\\/\\/fgjjjghfkgkkgkgkgkhgk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dd0f20d7018f6191afcc3fed6e8475d96e4c492055670c7f8f5324c75cd96033", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4cad435c2bbf21aed77df3a6f2ec4f0ab4387323a4c6c3c568e65a172b310db9", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "efbaf4fe3ca0759f00260751dead9eecb6f003b04b4b5ab7cfe06494980326e4", + "regex": "." + }, + { + "hash": "8c1530223962833a7a9a8a0c853094ce1642d460e281c5efd904034d26fadd04", + "regex": "(?i)^https?\\:\\/\\/pulsecaster\\-rhythmtrackere\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b05ddf383b31149233079f6ba6d9e2ad3264da6ba76b956b15c63191df164bbe", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cf1f2a6b8def92223e2d6ae33f085d041a6593c958b4da2ef54b250cb4821e3d", + "regex": "(?i)^https?\\:\\/\\/moedahabbohotel\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a923dcf854c8c933a8269eba178ae7e4724e127dc0640ccc61592d1970b06c18", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "799da144955e939cc602e50c5696a70131b9c791cfcce4e1d9fc5261016dbfca", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "735f6bf8aaa8e57caa1b8c8fc7ee28c2da475e6d3ec93f8644626df839527ac3", + "regex": "(?i)^https?\\:\\/\\/fhgfdhfgdjgffgfjgfjfgjfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c4702e774dc05462076e975c9bddfcc0db5f838debe319296a1fe35dbfb70866", + "regex": "." + }, + { + "hash": "098154a21e84d103642d8bca2539f2aff9f4891d836ed7f88c934eb468464c03", + "regex": "." + }, + { + "hash": "c33bd95fc1f26b80c9dacd4276caab794b19956ddb619a08d9727d86c6e9c711", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3fe42eba36b68236194d715ca7938456acff530fc64bf5ba23e5fa462a5d68c9", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "8c7453541183d742e23b5ba4f106b94629b5c0aae46493f731c8f9c45d473fde", + "regex": "(?i)^https?\\:\\/\\/fgjjjghfkgkkgkgkgkhgk\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "68a3546729de003c1622df88994ec86103f6ad3be3ef178a9b6f077ff53b3830", + "regex": "(?i)^https?\\:\\/\\/www\\.hnjtdx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fa16b40602bc78908efc05708de57b6c63cf7dbb55904a51dd643607c587a7ef", + "regex": "(?i)^https?\\:\\/\\/vbjngjgkghkgkhhkhgkghk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5123c8c91eb9109fbd81f8d4a1ef6192bb042c929512ed0c3e157412d00578c7", + "regex": "(?i)^https?\\:\\/\\/www\\.hnjtdx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2147c89bc353fd2eefbc9401c97a5556b790818f30f7c97335808c49798ec47e", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "68e7e89364ac9a3d2a54247517804ce89a9e2331df8396be5be2850592116c24", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f69bc4773567457c103a79ea0441eeddff2babd8965804512e80e33a4b4662d3", + "regex": "." + }, + { + "hash": "af0d10071d2166047b1515aac7cbe57c21b2146847b9740d59cc0119716f0637", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ac70fa3a127d3d82f4cb06ad22868677cbd9fd4f94ee136b933cc908646ac7fd", + "regex": "(?i)^https?\\:\\/\\/moedahabbohotel\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4f2b95b228183a6070b2f853f6ac46cb35ed7714db8c2a6ff04b056fdc207754", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8ea768a5374c364bef7b5df965232802cc71c1a940d79882adee654a916fd759", + "regex": "(?i)^https?\\:\\/\\/pjqklopu\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4e1a290fbac522d4394c9ced879ec8a6fb07d51ca01b8bb1bd31d538bf1b2ec6", + "regex": "(?i)^https?\\:\\/\\/phlpostasgov\\.top(?:\\:(?:80|443))?[\\/\\\\]+ph(?:\\?|$)" + }, + { + "hash": "3b90367575100ef73e04b1faa95c29d875faafc73599fc14eb90425486f0a260", + "regex": "(?i)^https?\\:\\/\\/fghjgfjfjfjgjgfjfgjfgjfj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "325bb90e3493f25205a17965ed491324cd630dbb539f291cbe2763277216abfa", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "43635b41f94fcdd503b3279b7dd32ab3597573237b5477ccd7db3b3ffc3d4823", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjgfjgfjgfjfgjf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8f4cb99e16275bad77eb94b1f00d8e1974a3ca0bc2e14e05a1fcbafc38e1a33c", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill24\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "df916afdcd4e3aeb8edeea30722c417dc2e08617295a5c5f7a5e5856f3ff9226", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5025d97197cfae69156c4965408630291853dd2e002ed2c22ab23a91994b252e", + "regex": "(?i)^https?\\:\\/\\/dfhgdfhjfgdjfjgffgffgjfgjgf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ecf223e0c36625ef23a4e1704099de73b1b7cf57e5e37ac541799c182ec6e354", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e8141ab95b62776535462baea6e8e93977fd7d01bf04babd6bbf1487f9866346", + "regex": "(?i)^https?\\:\\/\\/www\\.segjtx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "462419f9582d27ac592bcd71b279498b2e22b2f022187f8213a060bc94a49b8a", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8612a0dfc5bc746c8ffaacf9eab78d5392a5bb6ab55da7446a365e20c2b82fea", + "regex": "(?i)^https?\\:\\/\\/dfhfdhjfhjfgjfgjgfjfj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b3a5c1f2c522bc8c876559cecfed985c19012806e3d98fd8e1ed09bde8981a93", + "regex": "(?i)^https?\\:\\/\\/pub\\-2de5d85f3f6c4bf2898608cbde033af3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "03ca3022ab17e3e447057569edce00c25544766c872aaaf1279c7e3392174c89", + "regex": "(?i)^https?\\:\\/\\/pulsecaster\\-rhythmtrackere\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c2fb56030ce1e0db83e39cc8fad79b6a4a44f5aa36d28b3f68a1fac684ecc432", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6548aa6d9d483b8e38444f332a839dbccc4b3e6f065f596cf2b1198774d347ba", + "regex": "(?i)^https?\\:\\/\\/fghjgfjfjfjgjgfjfgjfgjfj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bef34fd2e766daae4f97ed30ba7fedb71542284301e4358d99f921800e534988", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2fee2c23d2b18818461ca69735e4ac74f36af8472eecf8491ca061bbeb0fc5ae", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9609f0634dbeeee56b06afd93d7bbd5e503169c1af220c985761c969eed2866e", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "669285c62c0d5f996bac8324ea3825d00053a0b51617fd44b8dabfa7639658b9", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdnxw\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8f5f9ce0c4b250cbec738f050759871951a58a7979a1efcbeaf8e76a414a0be6", + "regex": "." + }, + { + "hash": "7642a6c42304fcacd1cb0f2a8fa43f0137fee076dc857aaf0c12979f549da72a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ua(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "226b0c9b82cf6472dbda5d8be85bd4b5a34d54d0c3682b1109ed14e4908d01d0", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "12a6bae9002ce50de92c5db35b0be13ffd6fbbfbe01e12694b8a5111ebe1274c", + "regex": "(?i)^https?\\:\\/\\/www\\.vawsdv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "457089f86d081e7b4f00551a4def64723f6eafcd516844c1ec97dee5efb41e06", + "regex": "(?i)^https?\\:\\/\\/dpc\\-demak\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ef414ab5ef0bb7384ab90d6b0f57ec8afb0310dbc44968ca37deced1b07bf26c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "70628b2215e1c1957f465ed185ffb5c5699333e15da399d030597aae7c037839", + "regex": "(?i)^https?\\:\\/\\/dfhgdfhjfgdjfjgffgffgjfgjgf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "70e93677b5b0772fedac920b133d22bf2e5212741fbb294a11cc0fe7a4a185a2", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfgdjgffgjfjfgjjf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "399e6021fa7b20ea0f8ebcc2933a8bc987a9ff466a383312e9cc04fa15de49a9", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8e393f89b1d0ad5ad94bd602becfe8968fa5e8000dd92f9ebf9eafd731ae1a45", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhduhjhjdfgdjfgjfgjgfgf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d3a6f651d088f70cd041de5ca70ee236f463cf8a46720151df85e8e4fa4cf", + "regex": "(?i)^https?\\:\\/\\/dfghfgdjgfjgfjfjgfjgfjfj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "714181fc3a1fd468f6e170d22fb459ed138b2c34aa6329d5655967c7908e7ff7", + "regex": "(?i)^https?\\:\\/\\/ruzkv\\.icu(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)" + }, + { + "hash": "4bf6088d4306c076be3401b1a7c55da2dca636eacbf7531989723b0d9f46d422", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6a37d3665eae4edbd2a35ee971fcdc4d732a3629ded76369c71b7b725a22d096", + "regex": "(?i)^https?\\:\\/\\/vbjngjgkghkgkhhkhgkghk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3392d560faf6908e6828a6217fec7480a0f53168bfa72c0f9e92dafcf10bf287", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e8054cfa1cd9efe421cf50c41563e7fa4973e63e836c677bba55bebb5348807b", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8e04de2932b4f624f316baedc6b3188fd000e8a1cefa6e8bff26e6bb6a7d1503", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e7652bc00e87db48989042bd416e636718830cb725e3b8afc62876e35dbdd91e", + "regex": "(?i)^https?\\:\\/\\/sdgdsfgdfhdfhdfdhfdhdfhfd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "52b0a3e8cf1a6f7434f510c4a5ae2359cb2285b898461e1702d439e56eab12fc", + "regex": "." + }, + { + "hash": "a11afced113246ced3aec0e957a4ca8c5ac4e416d86b710e492a9b359e77bf0e", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdnxw\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4cadbfe43cc9cd222046800acf7a57c83e7bd9608207d237aad4f98f45ab4d7c", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0fd033c28a63234ab72777b11d298e5cd9a5f46891ba51b4783bc8cf83b630ee", + "regex": "(?i)^https?\\:\\/\\/www\\.ngcsbx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "daf10e2d4729f8d9deaf359457d00014591782ed4c8a994c02689ab6f7674049", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdnxw\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "70c4f95f61cd8be2e442bb05853f7ecb9c5567dc187a85c1f59120b37468b186", + "regex": "(?i)^https?\\:\\/\\/www\\.segjtx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3930c35224ad357172ac3091d813bf779553b9a9da970a4f7d3bd543df84f28b", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "42870408f96956a792bbe93dce5ea03b7b0393e1624ab3503ae425af7286d243", + "regex": "(?i)^https?\\:\\/\\/fhgfdhfgdjgffgfjgfjfgjfg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f8153394cfc46d1b5c7d7b72f1a8dfe1bfacec24f488ca72585402ebeae8bbb1", + "regex": "." + }, + { + "hash": "0eec395e931b81b9275498bc5b5655fccc0ebc755d2265918b5f6301b0f64173", + "regex": "." + }, + { + "hash": "325b892587770a10bf4c35cbc25a41392f7bd567e28b3de8b1e6a19f60210b69", + "regex": "." + }, + { + "hash": "834803e0315496afa8bef7755a1176d1d47595e84e78806828fb573b4bc94b31", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7642a6c42304fcacd1cb0f2a8fa43f0137fee076dc857aaf0c12979f549da72a", + "regex": "(?i)^https?\\:\\/\\/radwc\\.cyou(?:\\:(?:80|443))?[\\/\\\\]+ua(?:\\?|$)" + }, + { + "hash": "5ec1d16ce310152e8955ee29c9a03033c5be50dd5dea7af041873ab00e804b35", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgfjgfjftgjfjfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8c9984f95652533844d98928d2163ecfc81f1675c9f30b1b0af568528b8117ca", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "35ed4b517b3139b6f08ba76ed74f4a540487f4f3b7c12c345df34c28ec9329fb", + "regex": "(?i)^https?\\:\\/\\/dfghfgdjgfjgfjfjgfjgfjfj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "aed5b5f4ec32925a4a8bd147dd1f3dbbeccf8095c51d1fa03e895c5884dacbc8", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b3b0d2ea8438aea6241e10ffefcaea15cf9cdae27b5bfd55b8048d622936f3db", + "regex": "(?i)^https?\\:\\/\\/hothitvideomingle\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f8d0082654311c14e90b29a4512bac0ed46e5ebf0cade44de94dd8ba73a24a3a", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3e1e8b5e0453b02a3174478f2286d6f58a2b38bd5dade3a1d00bd93284f8370c", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=btc5_siniy\\&mt_click_id\\=mt\\-f9sqx3\\-1733192381\\-4191302739$" + }, + { + "hash": "a85f58060a8d145f40b631bfc69460afaf80af739587ffb3979f0cd18953b192", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "e70e3257534c4e8e0b95a0eb9bd20ceee6ee87d2bcdab2eff9659e09d60b255d", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "25c2fd07babc7b155348b85b2c6dda8e994cefde639dcf049e571b6fb0b0d8f7", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1982316e586685266c189ebc5ac1d791f1474ea2275bfc254a0fb6f2d34ec604", + "regex": "." + }, + { + "hash": "b2e49623fac4fdf215e018332de4f011154cafc180abf513c2bdb625c91b19d6", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5bcca0ca7554b3833d28c6269becb99aed284ff51881473168ff57bce76da049", + "regex": "(?i)^https?\\:\\/\\/xvideohotxx1\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ea83dc2ab6af8eae2c1f82c2941872dd8c490a4df554dfeff98c0294ed4a9c94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app[\\/\\\\]+auth\\?token\\=0be51841de6b2125e8bbfa2fc906110f$" + }, + { + "hash": "a583bf0b106185f453897629f965324ad7e310bf52a72f76779755408f043b72", + "regex": "." + }, + { + "hash": "0c019ce8ca8e62c3857d1e2e192bf91a449e34456f40a626c8903252d8611888", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfgdjgffgjfjfgjjf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e8f194448111c6cb66a5bd08cf21188bf8f68b0685dd1cc688b70964e113d2d9", + "regex": "(?i)^https?\\:\\/\\/www\\.vfawxf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "17dfabb956a0692f1fb967923830add32609f8d61e97c6eaa680b7808d0968ff", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "5fbd5b2a94f3a40d30949d38de47356bcc05e4743def521d594202c998c85b7e", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfgdjgffgjfjfgjjf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "99a9e65c788cfdf79385c5dedfad5e0b7a67de6a89061804aaa5b9d4da43f2c1", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "477c5ebede8a724a5310cf51b06c956662f7c11b43e1fe4b2b1f1cf685a4fe7a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+U(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3405b27676487806c21551488ad9eac515f2a619fef84d5b1ec8f944118a036b", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4f00eff3859ccee94c074f01c71881fbf7627b301bca88c7636939631f7951c9", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fe055371c69e79972935ab2b8fe4d3ea28c30e36d333649cd11738e44b19b74f", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhduhjhjdfgdjfgjfgjgfgf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f841985ae9c67d02bd3fdad6c1c93a1999c0d7c38a5667048bdfc6a54b43e2b8", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "64bbe9cfc6f2cfd1fe917640de20663cb178fbf55f3962d9ff4e630ff006259d", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b28a67d3dce308f95cbd317e4bab20881249d3fed2f52e494be6992571eb8d09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c6b7cee0dbdc0f06df09a16bbbd2be9bf4e7daf7c460f874ae47afec5aff6b44", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdnxw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "dc8e51b96846749f4487eee318680a55a165994c7c0cfde9e9283b492f09c654", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b5abf9d72c6ac77698af3cb025945131317a394d67762aa7333134050a2a7f5c", + "regex": "." + }, + { + "hash": "86436e8d0089f6f424664710fb54f7d5d86a71c34da05ac6ec62d3d43a39aed8", + "regex": "(?i)^https?\\:\\/\\/splendidmaildomainnameserverprotectionservice2\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fb5c2c5f33c4ce9f540f1ec9169ed701627a9235e2176da0afbcf45d0c94a747", + "regex": "(?i)^https?\\:\\/\\/dfhdfhjfgdjgffgjfjfgjjf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "15b6b8680ba4f5c3d8b4056f1b085cc15a21e272056615e45d6c5ebd223196c4", + "regex": "(?i)^https?\\:\\/\\/vawsdv\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b839f3f35bd32f0f31ea53a70e45ba027957ceefd4d008cbc6e79606e3bc7882", + "regex": "(?i)^https?\\:\\/\\/hothitvideozone\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8f301cc2edfce2becd47b548451645161bc2c2a0d76e486e795113ece4eaf889", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "74a896a681403ac59341e99ad3deb23a6dda074068ef6bcd2050fcd92c6103c6", + "regex": "(?i)^https?\\:\\/\\/hothitvideozone\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "87d8ee97b0626448a700cb1c5c454d228c2f95a5c72148fdc05b2ba96b17ac74", + "regex": "(?i)^https?\\:\\/\\/hothitvideozone\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6cd91e3d04b96dd91a15acc3c8a154880f2925ab895764e9ac014f587a7bb103", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyng\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "c46769832d06fc68c5a1480c18512893b792ad9a8619081d704fb1266f36a950", + "regex": "(?i)^https?\\:\\/\\/dfhgdfhjfgdjfjgffgffgjfgjgf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ba51473f7818ea05a94554148eb8a9372ccb602d8a368417ddcbcc0eb7efc564", + "regex": "(?i)^https?\\:\\/\\/lightseeker\\-beamtracker\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "726a700188465205d79e0dff3a8ab99f9674b84d4256bfea7d77e8885b79dbb0", + "regex": "(?i)^https?\\:\\/\\/fghjgfjfjfjgjgfjfgjfgjfj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8e2deec7f105cc38106e344cb3ebbb7b3a4428087cf83e34289c73dfaf6721ad", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfhfgdjgfjfjfgjfjg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f825fdbcb1a8c4468db4dc455aab1aac0c53cbe39a11ee06f320e62843628f93", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "92975ae2aa104e0993dec67b8344ecba4ca90e7836420f358c6ab23ed1d8006f", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "5536481a7fc5996dc51cdcca292851278ecda9f5dbbc1a236b4887e3ec40899a", + "regex": "(?i)^https?\\:\\/\\/vbjngjgkghkgkhhkhgkghk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3dc5449a40ec06150b62caf8908bd4097132d2dcca91594dedc80433fcf39315", + "regex": "(?i)^https?\\:\\/\\/dfhgdfhjfgdjfjgffgffgjfgjgf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d3babafa40f1e95868140bb8704a9b3823ce5db1ac9c950646c01bc4dab85df6", + "regex": "(?i)^https?\\:\\/\\/sdgdsfgdfhdfhdfdhfdhdfhfd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "53975a0b02e75d856484efcb9df68294c950aa08877fc7e63a608bbdc209a979", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgfjgfjftgjfjfg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4a556cc0c92a5820e9d984ba05bd99d3ce1adcbe36084f0127753512149f4df2", + "regex": "." + }, + { + "hash": "97068a86fe614e7abe247656d6940f936c669805802b4d808d740314893f18e2", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyng\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c68a5e9d4d392d9c6370abf90515dea32003cc0445876ea3a004b570af575cf3", + "regex": "(?i)^https?\\:\\/\\/dfhgdfhjfgdjfjgffgffgjfgjgf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f675d047ee0f6e6e4560d8da44a4f0f3a86c3ebc51a10198c7b321ec8ae2fb33", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1eb8216cd70bb42cac53beb6f8507bfecf90f8384e5573ff5b2d106904bd44f0", + "regex": "(?i)^https?\\:\\/\\/dfghfgdjgfjgfjfjgfjgfjfj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fa818b5f48f365e528a7978b7708c8b17c83a49a21d76385bd7b87fdf7f6387f", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgfjgfjftgjfjfg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7398aec93b63c051a68e0fb1b716dab171cc34df6b30039ec4e81d9e2b27a17a", + "regex": "(?i)^https?\\:\\/\\/www\\.vfawxf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f38b1b4b47491e13da2e3864375ff14e5e891e89e3f88f88b59d1a9ea6c1d2a8", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdnxw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cd4dc71f72be48b40876d45603f872df9b5d770b83e5a20c8ab532350e581383", + "regex": "(?i)^https?\\:\\/\\/windtracker\\-cloudrider\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "61f1db77506bb9bb036a9f5b6a1d85df2faee1ab697a6fa5e1e3288a44561a47", + "regex": "(?i)^https?\\:\\/\\/fghjgfjfjfjgjgfjfgjfgjfj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1b46b69b50cd8fd37d893dad3838c699ff55e09b8df0ba4b991ffee88adff2d8", + "regex": "(?i)^https?\\:\\/\\/afvnht\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "17b5b503156db55f251b36a051757c6d02a1d253d4f753e17cd5c77f22375f08", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill24\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d386088cfaec4691047f82bc2727913e3dbb2413e6b20bbb6358dea93008486e", + "regex": "(?i)^https?\\:\\/\\/fghfgjfgjgfjgfjftgjfjfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "793bbe23ec52101de0d2fa5e10b0ea4cc0e61d117013431f38bf4c6824162522", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "01a524283422bc59eeb5bc2238e662450e9939a9a2bf291ed06f6869f70a0307", + "regex": "(?i)^https?\\:\\/\\/www\\.bsdnxw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3ab2255431e5b2a8de6839ea1d27cbd159072ddd5ba66a6210bcfa31c552d495", + "regex": "(?i)^https?\\:\\/\\/dfhfdhdfhfdhfgjhgfjfgjfgf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f6d1671c662b29a8d2f5e6f795d76aab1f7f5f884bb2d7c808cc661812f25535", + "regex": "(?i)^https?\\:\\/\\/ghkghkghkghkhkgghkhkg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "83fa3dcbe3a68100c55b57b6df5a28ccd871e6abf9c967ffef9c6222da44692c", + "regex": "(?i)^https?\\:\\/\\/www\\.mjgyng\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "192ffef39b293a1796b72679f35e194c2305aa29129956d0481ef7366654daa4", + "regex": "(?i)^https?\\:\\/\\/pulsecaster\\-rhythmtrackere\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "574a9a2785f9f5b731cbbafe86bf974d7b10464d8ef58bf408ff1feca2ba8c68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "94b1a8f9e2dc5c297f24ab4e1482fafba26a2b73b8783d056fb95af62650ae56", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ac8b862b19d3e9be925205c9efd6f575746938996597f9232a04595fb1414b34", + "regex": "(?i)^https?\\:\\/\\/inte7ujs82\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c7203a2d1cbab6ca014ac018b0e7f784053c371c0be5ac8fd7c06982d70b18c7", + "regex": "(?i)^https?\\:\\/\\/www\\.segjtx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "520022a796a0893da6021d8795f5907343e760fe491f7f74fc1f95152a4b9539", + "regex": "(?i)^https?\\:\\/\\/www\\.ngcsbx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d16b9b0b69b4c22c2c35b48a8ec61cf26af2c9198976a77be4a8562566bb6129", + "regex": "(?i)^https?\\:\\/\\/transcripttracker\\-dnaseeker\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8f3b2e7bb5799050044371e45cfbe65aeba50aa0aa9b54711131650aaf320a38", + "regex": "." + }, + { + "hash": "1ee51a13288fc7fe1e9eefe62959ee2ed3aeab5a998bfd80670eb5e3f1bfb974", + "regex": "(?i)^https?\\:\\/\\/fgjjjghfkgkkgkgkgkhgk\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "aaab5d2654d9e78ef7c0363ba926171b69ec99f97add5c16de3bc9a068da353d", + "regex": "(?i)^https?\\:\\/\\/pulsecaster\\-rhythmtrackere\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0fb52db7eb163f012d3841283c777c3d56e2b308efc818dfdbd6f8594ff75ed8", + "regex": "(?i)^https?\\:\\/\\/moedahabbohotel\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e9c66eb6de75f13d24cbb68bcb6aa7f887ac6212e108c421cc99098f91c4a733", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0eefa44a62299c7bf9a2fe9cc050b1ea3a51e021a2ad4051ed4904f487ac7866", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f00635cdf2a58478f30a7c9ee69ec56861b05143e22587cd094b618c0994394b", + "regex": "." + }, + { + "hash": "226bb9486fc8db72bf09b5c77232087d15f05a7144adeeda7284ff42b5cb2198", + "regex": "(?i)^https?\\:\\/\\/www\\.vawsdv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6fdd45033c04b538ca7dcc565a714a74ce3dcdcb373c66e7ee323afa0fac7d6a", + "regex": "(?i)^https?\\:\\/\\/dfghfgdjgfjgfjfjgfjgfjfj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a3e52c284f2177aeae38c59e7fda2b560f1a6bbe23b03e66cc52ae658c26ee7e", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1c4060384ba21ff1b7bbb07757c17d06c55ccb51041d7d14318c3f14dd9aeaf7", + "regex": "(?i)^https?\\:\\/\\/dsfgfdyhfdghfgjgfjgfjgfjf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2fe892066c7edb5fd01a9ee87358e0a90b0e4ef718b4be5bed6e5dbbd5f68015", + "regex": "(?i)^https?\\:\\/\\/hdhotvideospark\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f320d13bfe308d44315fb88bfb79da8ed88e4872fb6f42a9b08e55f82f9a074d", + "regex": "(?i)^https?\\:\\/\\/fghjgfjfjfjgjgfjfgjfgjfj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "72af276604d94fecbd1982bb0a6ec6a534dd0fda36c309c1f64bd3038a45ef51", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfghfghfgdjgfjgjf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "dd5dd3884d87f09664d730399a497e7cebadf6f38567a6fcaf06d4c37e400bce", + "regex": "(?i)^https?\\:\\/\\/www\\.hmfxbw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "ae0beba61aa80be545c20b91be42762158394c4b8f29e8cecbde87163c6957d7", + "regex": "." + }, + { + "hash": "253f540b9c7d3e0bec0b6316c85fb4b7dd4e65086074a2b2a9a84915002dd1af", + "regex": "(?i)^https?\\:\\/\\/hothitvideozone\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e80c7e5e40e0b4858317e0ea16d679f7baa84ac8349d0fd1ef2aade6adb7234c", + "regex": "(?i)^https?\\:\\/\\/inteee56678\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "473e8d8e91380cb7bce14688e01748568d9511be61422a376da6b42d7525e898", + "regex": "." + }, + { + "hash": "265c8c3720e03c38ebdc4f0761d7a8de7ef182fa1c1056d52ac63df5757f44dc", + "regex": "(?i)^https?\\:\\/\\/sdfghfdhduhjhjdfgdjfgjfgjgfgf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "df820e8003f892e12ad4a9b22ec8369a90f4e743b470dd9274afece8ee30a486", + "regex": "(?i)^https?\\:\\/\\/travela\\-travel\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a465d7d6abb87ce57f909bb61a93ac9b4cc5375cc421791a65352003471e7eb0", + "regex": "(?i)^https?\\:\\/\\/www\\.jmgyjd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7cf3e1853c98f61c1c7c0b3f4b601006bceb3a775580dff5d21d51d2c3e9cf04", + "regex": "(?i)^https?\\:\\/\\/attupdate\\-100110\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b319f26fec43cd001bea60d3a4cd2e358c769bb2e07abeee1cc4e300de655926", + "regex": "." + }, + { + "hash": "e3c10ddd3268e9f55cee78a5c59dc29cb4b08b3c3487da781b0151525d23e551", + "regex": "(?i)^https?\\:\\/\\/vcesabia\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "20f122ccd2fd88f09348ac4cf0605db807ad3fdac13b263b0d313109ed9611aa", + "regex": "." + }, + { + "hash": "7609e30b8a5e887cabdaf88cbe5bdbba4c05547dcd8b7d7fc6207dbaac475cae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9fe50cb61fbc2571bb57f452c86c7c47485dc5e82894d37dca67b67c31fb3d87", + "regex": "." + }, + { + "hash": "a8a9586decde21d3dd31738c1ebc3fced27aa1c5f6ea3dd3278bfbbf12ef0759", + "regex": "(?i)^https?\\:\\/\\/att3234\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "af3a5f718afd0ab0212aaf67311c9e25f5fd8e3c96a1359721f72ee77279bf02", + "regex": "(?i)^https?\\:\\/\\/rafieonex\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fbe17f7cff22ca083f526a4f94ca8278a0d2157c29f37c9e078fcd3d951e2b05", + "regex": "." + }, + { + "hash": "c68416de544b6dec548524479287b55e6a68ccf28d6970934fdeeeb052f8d5ea", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tolqxygluf\\.com\\%E2\\%88\\%95frzzu\\%E2\\%88\\%95whyftp\\%E2\\%88\\%95qrcpb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "e598454ca56cb413feafb31b7364be60fbf954407c8278d6c915ce49f543bd1a", + "regex": "." + }, + { + "hash": "095ee0fa9f1a1ef26f6640deab1f2c38733eb5dcba888c44e3ecd194ef47d871", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6f7ac8ae2361bab1d9c1657fef739c951ecbccf94e98a4efdd10b496592cac20", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "803c1193ebe75a09463846b6d2fc56b7fed07e7a05f9937b8b369270678217f1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ehebi\\.com\\%25E2\\%2588\\%2595hhkrffil\\%25E2\\%2588\\%2595fatcbdxima\\%25E2\\%2588\\%2595cppmiyj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "f895a1c70623a1d0268cd34ad4fcf8bb29d5140fbd9d81124375fe087a97dc79", + "regex": "(?i)^https?\\:\\/\\/metamaskssignin\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "2398379daba779f430871e72e6d2267ed72f1a391e2d773439404cbb86bad2f7", + "regex": "(?i)^https?\\:\\/\\/rafieonex\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6575beb0402e6a3e3ab2d8cd9916ab25e6c6600f919402bfac7dc64038d56595", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "172e72c7f028d14d75ef72fa803d3bd533ef8d075f3461f3e1f2831d472b76d1", + "regex": "(?i)^https?\\:\\/\\/www\\.vip3659f\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe6e6d79f099f49045a488500102a6576026ebbbfb3d1f7717e2a906a745f5e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify\\.php(?:\\?|$)" + }, + { + "hash": "e83c08998e61d7329287e716458b19f3352aae0a4a56d34ee9619f0eb070e075", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "691ebc0f22769002112a36e38d422c709920bbfae3e34eb585e7fedbe8d7be11", + "regex": "." + }, + { + "hash": "c4df285d29faf74145c0c54a1cc9d04d365d9d62fdafadf23dc634a731e0e6ec", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill2025\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "093f09fd5fe64cb9b5b10f8cd010a3abb3e4e242ad324d90766613409690afd4", + "regex": "(?i)^https?\\:\\/\\/arahmannex\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d9560f19941d9eb61df4014b523bb784f671bb398469eb1193ff102af56dad4c", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1d4d1904e06c2ea562afe00cda058da142c66fbb1bdc3a01d70d319d2eaee192", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill2025\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f7a869974c131833b80a8810e798547dac2e9874ca672268fc274f18ebe11a2e", + "regex": "(?i)^https?\\:\\/\\/www\\.jmgyjd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e8e0725e3dacac36c031f24517727ac50b2af4ec1943148a57bc8c84ad96e30b", + "regex": "(?i)^https?\\:\\/\\/arahmannex\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "112d3511f373c48393a3fbcf733d27caa07ba01526cc45a9df8448db42a0c3f7", + "regex": "." + }, + { + "hash": "5a7c96c7e9226d8b26289e3906c1496c667ce68a9a4f4cd02556b97279b4a132", + "regex": "." + }, + { + "hash": "451e19c64f1633681509cfea6a1b0b2caf9d86c980550aac17d383cb977a5942", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "252cbb0dd06f487ddaeb39ebf520d651ce2e827bbc7300d7fdfca411ea17aac5", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "112b0f6e81eb8945fe1344b0591d42e32d8c0fc5247659efe457bf30f5c3b1ca", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "160ef56e7d2e4b34dab6ee3daefa7f2f89c94b78f47e30fe793d370438d39d81", + "regex": "." + }, + { + "hash": "642921f71af95edae0d29114d8cc101ad55f51cd3758a6fcc8ce65b1a401c31d", + "regex": "." + }, + { + "hash": "9cb8858936081ca8381c53b0ece43fe7c1a771e83b9fe5fc019e40af904f1108", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kaget\\=xQfgTbfU\\&2yB\\=qPxmzw(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "72bce900f93eff57712395937fd7fec5565e54550cd0b2ec5aed3a5317c729fe", + "regex": "(?i)^https?\\:\\/\\/attt\\-109033\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "22db9e1949a9b9add5361cbb4db12196d45e8aceb0695079491d57b3c2dae3bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uy(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "13aa6826272b0b3ff59045b01b3f09f1e05c17c6f1846a3f905fb5e42675da2c", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "013c7731fa3366e948a3743cbd03cc15850f5848eb1c23c534f6d0055dae34e0", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill2025\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2e2a81decf6b5088f0edc4a1e28ccd04f15f1b74bca7e941e4ffc2bff8ed4058", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "49c8300fb3dc4abf58ae6d2e4f5c2f906493cb211b2a2713ff305f674c0c9e37", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9ef1897bdc483acb4a78c637baea57d35447377856f773ca598f371ebfdf0020", + "regex": "(?i)^https?\\:\\/\\/3115a\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a8d0bb3ccebe4bc1e5e73ad05f30d3e007735d2545a6af1d43dbeb3b0180be0f", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "688488fad301fce23feeda868173fa63c502150823f298c561eb69510e865eca", + "regex": "." + }, + { + "hash": "6bf893bc553b9acc2a292ec540560a8b0eb288d1d0051d3e99acff46224cc691", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "19bd840730bbabd368b54c78ab2c913c5fdcf89b3893878f1939d1af043b294f", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "cfda794d104d4d31535e48c53f123931fd6e0bf85a159acbc01806c19e899075", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "669cf04f374b4421746afc11acc50f8a8e4ba2d9f78f70f401019913d608539f", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6bae9a0815a6be0f5d8e4b389dc5b86c89b7235af5243294c0bd60faee5ff54b", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "adbf57282d50828efa79e153bb74853f3d661f75180864ff762e7bb16b54a3df", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "155b4cac7a4f0b4e255d4c2d9fc397b38f96b73770ffd7e19f348e864ac0d6a4", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "dd7e51ecfbe45da680ab3322ef30823be97f8b9d28a5510ec6275f078d87bd85", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "477e091e312c1a70f0a4a1a94d1fb9c39bd777bedb08b1c91b36d6d8e50ae904", + "regex": "(?i)^https?\\:\\/\\/rafieonex\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fa16fd93f0935774374f790cf122ce2a0388d1357c63ee406604a1dc18fda1e3", + "regex": "." + }, + { + "hash": "32b5a6672acdff17fff92749d5a21b619c88fe81aaed45c15aad4020a645cd56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Metamask[\\/\\\\]+MT[\\/\\\\]+Wallet\\.html(?:\\?|$)" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "3aebd8d191a85a6061c0017e928bf5006d2ebe4b5d90b7ded07682ea89928b75", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "25fe7e2d2d46bed55dea3208be9878765fd4200a5cf43464c34990045dab052f", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "89917b5fa1cc0fca855b503268bc0237e01f7bc784920064bcf4a37ee067d985", + "regex": "(?i)^https?\\:\\/\\/xosejom750\\.wixsite\\.com(?:\\:(?:80|443))?[\\/\\\\]+home" + }, + { + "hash": "77dbd6083ff4a1a9b034f67ea4d13bf577c8608748c6414ab8011fbfd484ca2b", + "regex": "(?i)^https?\\:\\/\\/pritamn23\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d89df3e4bfa353777fa16483c7b2746ac731d4e961e75f421ea327d8be7243d2", + "regex": "." + }, + { + "hash": "31769e493052a7562e9d9dfd4da28ecb12307c27b3ff1462083da3fb057496f9", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3cc1846a878f64a277b74ae2e5d6df11c040922935cf86b990e39a4dd62c0a2b", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "125e364ee1d9bec3a8deacc651f6dfbfa4438f507a1dbc158dcf1cbf6017a73a", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fe6e6d79f099f49045a488500102a6576026ebbbfb3d1f7717e2a906a745f5e6", + "regex": "(?i)^https?\\:\\/\\/bdpsgr\\.sltnz\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b0c2a99aa2acbbac38889f21f03c8acfbf93cbc4365fa8af184d14368119d929", + "regex": "." + }, + { + "hash": "1ef49cf550c9c4a8578f0e72d69301c85b8f2e353d507ec8f005aa71577f3d66", + "regex": "(?i)^https?\\:\\/\\/kaimantcashonex\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a1783ce5c8d3f7fa7cc0c9e20a9e8b239eded66de3ad8bceeb6acbf218c70d26", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "04612cc3232ea4bc397aebf2ca7aaf91e3a30a9796ec970a8289955d03e1264e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nama\\.html(?:\\?|$)" + }, + { + "hash": "aca8c1c22d5762f841f30bb0414b6f7ee2f17dfeba1e6318ec8669ff26242cc1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pazz(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d07dae4dd57f8a2a51df5369b975b9a72e0ce6fc6af0f5260b3eb9495d8bdac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05dd287ca6d84434d1157e4d8a6103d1f5661d98174addecd1f20bfba619a5bf", + "regex": "." + }, + { + "hash": "60fc492da1f9f7e95a3716098f7c83725049efa5f841b8449320983a48585f07", + "regex": "(?i)^https?\\:\\/\\/arahmannex\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6e81f991ae604cd41adaee54c9630f26d4f82fb25aa65eb0570c1cea70314d39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "76127fcc42a014c9fa2bd009ff1f3056f6397459ee481355f502d717b89d90e3", + "regex": "." + }, + { + "hash": "31392d25dc9c9ca3669e85e363fb1da381c6d71be504250a3438530f7460b7b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aBnBv(?:\\?|$)" + }, + { + "hash": "fb8d0d4f2a232a4533dc65832e05886d82a91c85102fbb27443655047efdff52", + "regex": "." + }, + { + "hash": "dab238b27aa60682fb6e6644cba919f8f60e9b4808581aee7beb22666dc3d0b7", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "916b66eff6fdbaeaa7323b0185c8442a30ea1e7811f7499c4f71fa0664e4eeff", + "regex": "." + }, + { + "hash": "70ae9ae09ddbad6c21be2b2c81d297b2e15f76b8344c7aa5de30b1f969ee4e22", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill2025\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5ab39fe4470f4debe0fd1be315c947f060ef43928e1eb618d797c3edbe2d8d18", + "regex": "(?i)^https?\\:\\/\\/www\\.nets\\.52\\-64\\-88\\-19\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "57f002355d85a409c0233f30377f20fd42a18e63fb46b4816ae72e6329a763de", + "regex": "(?i)^https?\\:\\/\\/att\\-service\\-106132\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f17dd4b8645f0b5831acfc3602de6ae0976c9f44b14b62dfb16bd2a77e02ce26", + "regex": "(?i)^https?\\:\\/\\/b12thgst9\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e988e80d3414c99e872d55a5c4fc17fa78a2e9e21c00f4421f5d2d412727ed8b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "3fd49eaf218b3822878be22fda7732d47c0aa9b8421bde00e337ed5ea1dd3b01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us3(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9e839276e70b23fd0210da82550dd574ad88ec7cd49776eae639cb55830d5172", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fe6e6d79f099f49045a488500102a6576026ebbbfb3d1f7717e2a906a745f5e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e83d6849058433c086e5100d32771622ec958ca39da76d7e38548cdc7d2612bb", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill2025\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fedcd60e386d9eb2d15322d55d17a1966e6d950875ec98b830f1585dd77f95e1", + "regex": "." + }, + { + "hash": "d9088f29c06d5987bf8e3473eea7016b364740e26d300996cdbce0e8844f2395", + "regex": "(?i)^https?\\:\\/\\/www\\.jmgyjd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "292d4219ae29abb764559fd0f47df606a8fa99cb9c712a096adb7e6ae7cf14c3", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2b03622bba1e0ee056ce249cc73c95e7801ecf61a092e98191841abbe06d1867", + "regex": "(?i)^https?\\:\\/\\/xvideohotx6\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6775b03bf7f43cf3cf196cc141899a65181583ee7c3dab1f160ccc3646e1df9a", + "regex": "." + }, + { + "hash": "8bcefd713967bd677cf6423e962d87a80f345158549d5fd8b29312f7a58a53ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "e818a4ff20a9fe2b8dabc5fa6c3b36f5738801585305c0022e02796c2066917e", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bcf4d67583a69bc6e837883d1ba7ee79ddbc9b7cc8af5d7ce0fca055da38244f", + "regex": "." + }, + { + "hash": "783b2e47175cabcbfcb5d17a64e25c3013bcc7f0b2551fcb4c5cd43e446dad8c", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill2025\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5bf93d96c45f94193a21bc2b4dff7bd01e0328ceb41aa4a38b4acc4af5d652e9", + "regex": "." + }, + { + "hash": "86c26148e7272fee23f2bcbcf8401c0cc99a15423e6ae6e80f85b41f73ab51f2", + "regex": "(?i)^https?\\:\\/\\/home\\-102037\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6416ab8ca4db257e64a8ab30fb1cd5af2903dc9fde904a2c6ad7f4dfe78fb800", + "regex": "." + }, + { + "hash": "e80caa1adae8db6f6a455efecd3f92f2ae82ab365499774c4a80c1bfe22520a2", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "12ae00b0e075f5365d321d2fbb7f8f9fdf11dabe9bfb2e4d410176db2f04928b", + "regex": "(?i)^https?\\:\\/\\/www\\.vip3659a\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "24bf87a729dfbae5e761f7209407c174d0fe9a0f4257239e1193b9d2ef90e7dd", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0d1e682c47351f4a1c999deed5e3162d5e0c600e560749ef4d37ca051ac556c4", + "regex": "." + }, + { + "hash": "af8493cc7df5e7a75e32daa7848ac588723496e452082317e5fec7b55e5e6a71", + "regex": "(?i)^https?\\:\\/\\/xvideohotx6\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "36f9a0dddb6c4e911b2e739642fca6b3efe384d659447ff32f472a76fa1f51dd", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0c9c62836ae9690787c4e16f19dff1477e3ad4d9b70c473915524849e3b41915", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "420a36fb435da1e5080c81f1e8ddffeb7424e5f9edd18ed28418b2264035d0bb", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a5f5cf2d7e439d133ba0143b7559c408755c80b8a9972c23cb836d06260cf62a", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "aa5843549615cf2b364c75263c05f16c256e01c02d1351bc267faebd45c3aa08", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-101240\\-101395\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f2b66fe02f6c863ea4c73ba0c9150623b302a45e81d7aaf7debde7a0b19510d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0c34b246ae0c54a54a7592b8b5859f20ec1ceaecd4401da13d3fbf9e737e8bbd", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "b14d4b9573564f4f4ddfee6bc43a14bab91b0903c42267d9719c61b3a8881655", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "4943ed57670c732ea1ed2cc7fa89e67d8a047ee1289fa0fec4210eba0711429f", + "regex": "." + }, + { + "hash": "db2012a46899bd26e235e7f70494d135aaf72688996ac5c82d531d678c3120fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+get\\.json\\.html\\.post(?:\\?|$)" + }, + { + "hash": "eb4cdadb8bcb66165e1a59fa801b0bcab60bbd33ebef94a55bf6fa4c7bfbbc01", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cc0fd34b952de8f77f2976f13583310bea2e7abd37733b92ebc3a0ca4f6e0363", + "regex": "." + }, + { + "hash": "a033dce078fac440776f7c144189da09de43dc41c60ec3aa1f7415c481187299", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "0faee74ddf14bfc70e00a0cf4c53872a74ee0f7110f3ea001525562fc51a27e8", + "regex": "." + }, + { + "hash": "07ab13ab771367ae441af64b90eed7751814aa19fc3425180ff4c2e147e62597", + "regex": "." + }, + { + "hash": "64bb6a820cbfaf35aa90caaecc0d80902977c9f009f3bb137ab17352de97452d", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "00e753272c7ccb5260c50b57c1e1124d54b02c6688750e8adc8476fecc8b2508", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill2025\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fb9fdfc23670a00a5ca6504d9a7a90097906b729925db94f90c71bd775f18d44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UKep5KcOm(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b97481932b989f65e6a966532f7cf140346683b7bd97f59f5127e6f328750ff0", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fa2812aeeb8c8626a84317de7efb878788d2d75e838ea6da6f275658db555475", + "regex": "(?i)^https?\\:\\/\\/kucoin\\-l0gins\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "14d860a3d17a684fb486a4b674c2143a8c8f9cb35d27906364c9785e37839785", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c3af91ce75d4130d427d986412735196314e8323ba1e7b276a5122c1802911fd", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "80e5a20e4d3cdfdd3ca16187efa5607f80d4142b7e3d8f0b75e442a65b600b47", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8dc526a3d22b1cc434064f6227b784e727442a70fd2d8c12eca260ed63e47878", + "regex": "(?i)^https?\\:\\/\\/www\\.jmgyjd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1694209938b59f72ac47f9f7094bc3aa45ebd06b980fee3bd9dbeace7fc8cb3b", + "regex": "." + }, + { + "hash": "6239e8b58c54f451a4115c38fa35328d5abd4b50d7b4a070d1863305f5838990", + "regex": "(?i)^https?\\:\\/\\/www\\.jmgyjd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "61f120d3d6ebcdb25edef5a71f0a5a4aef43172f69c332959e0b8c5acc999072", + "regex": "(?i)^https?\\:\\/\\/www\\.jmgyjd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "852efa7341ef12c36f5ed7da767270c2393c19a971d3f27ae3b69df1665d7a00", + "regex": "(?i)^https?\\:\\/\\/fhvenpxa\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "2f44ac64be54bb6b6ad007111b53be90419aba757fa5361ad82355e65579921c", + "regex": "." + }, + { + "hash": "d57552810c12a4b5ec151197e7f27d8c1a2be4e83943f20cf505eae2925beb1f", + "regex": "(?i)^https?\\:\\/\\/kaimantcashonex\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "417c4b30905f503c4de32b40bed41303b8214b1fa434b3c81f6317573331add2", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "aa0313306d574b4cf1621d0d34fdc5d4819edcff8fdb494f75653617114c98cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+allocation(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8ae27e04f1367b3114c7cba2dfdb5307188241da57188cb135de18e481501a96", + "regex": "(?i)^https?\\:\\/\\/arahmannex\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2d0eca0bee25ffaf229f5e5e8edf8cb8bd5ab5f0ebce73296f2b1e782b455d32", + "regex": "(?i)^https?\\:\\/\\/xvideohotx6\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6880266dbf0600a2f43c903b40b7243815544dc4d6597a46abdab08f2e21c1f8", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "de7928140d0a0c3c723cc55545cd71bc9320700f10ccc92a676bc02e336331f9", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "172e72c7f028d14d75ef72fa803d3bd533ef8d075f3461f3e1f2831d472b76d1", + "regex": "(?i)^https?\\:\\/\\/www\\.vip3659f\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "194546976059985e0cc16ae4de7a320cc5ea0284c55f35c23084937a7b53805a", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8477e664160e507f84ed00d36a308c8926f5f531e306e1717f72c91388ed2335", + "regex": "(?i)^https?\\:\\/\\/pamevanue\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "50ca3a49902f4e177b824793be61cf5912c12b4c9d90eb04a4c1e36691e7c215", + "regex": "." + }, + { + "hash": "7bf6bc30d2c13e21156b792e1e90652689d1353359ade192590409bef84d329f", + "regex": "(?i)^https?\\:\\/\\/xvideohotx6\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "354fae13ce3d4d2a2db334a3adcd2246b1fa1c383387d73e9cb4bbd92865d51d", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0b00891bd126c1477b4dc646f3fac7428091d4523390d52948116541425772f6", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a49f12e31af965af9dc0245e017e4af357aaf7f45e5a820a0b5d5e16d6975f4b", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "75c001ad1b3051fbad21c7e5e8f1200008ddb9d07ac449955b22dc42c06ff871", + "regex": "." + }, + { + "hash": "4abddc8548e78f4ba25312f18b8c427cd48d5115a506915e356538963984c7d7", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "c417a69132a1516568bd345c3a2d4e61be4a62e4c6a6762f132400c7bcf7f248", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "438d153ab90c1cf46efee256c3dc4ba1353476025a7c1bbd5bfb6b68e8a08893", + "regex": "." + }, + { + "hash": "28be29214ff79e52da21d250ce47de2a6ce5b9ec7382df95b3928d1ecf730bba", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7f7bdccd29eb1dc2b44d92dd95cdb87b71ec5ae9c2c6aa8208d8ad67d73597f4", + "regex": "." + }, + { + "hash": "b6b359b47bc8a9f36ca6dabd151ad8e07d5728d36aacaa97934c0db083d8843f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b93b7a6bcf7aa199aa0ae1627a74614abb766090d1b586a2ece083fbffd23f91", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4a490658df6dbbc2c10e60dabcd0936452d7696842f40c623082f04bb2c213c8", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "85a11c0817334165b111532004ca63fd61f01bd74e684f3bc5e45e1325b6c7d6", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill2025\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "86014cc6dd88f3f6fbe1c5a672b339083fb0549bc435da76841716b4c029342e", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "083081b5ffc21d00b9afebb450cdbfc1e3a1e47ddccf7ac5043d71935f5bc296", + "regex": "." + }, + { + "hash": "c53b8850c82901755e121a3b1832d41ccf769178dce8dd10b3090914fa4b6005", + "regex": "(?i)^https?\\:\\/\\/home\\-107836\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "85c22d61fd87f878bec0b6c1b3f1b5f432a5eef62fb7259da86fb4888827b86f", + "regex": "." + }, + { + "hash": "8b2c62a915a24c34949a334511189d2b2e46429c3a408f2bdf310bf1db341ee8", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ab9ed0188eeffd3f20620e58d5ce010a99c25622adb6c2b09e536f5aa4bb2308", + "regex": "." + }, + { + "hash": "6ad487c6a921f09fbbece829430e4289f6f97d563c4545acc69e82f5b5bd32ff", + "regex": "." + }, + { + "hash": "9ef867d6bd9fa048eb878aa2afad200e9fbedaef5abe496817188a3969b73012", + "regex": "." + }, + { + "hash": "a7e4dec044b43d43172d52e569ceb790bb0fd7913768f02a7f5ee9193882778d", + "regex": "." + }, + { + "hash": "75dfa702c0c029417469c06705678eabf603e0b4805a85807cb178a727cdd6bb", + "regex": "." + }, + { + "hash": "846719dfd50f96d405b62f54fba16fead20e81360ba7bf151517a6e9a3b7c02a", + "regex": "(?i)^https?\\:\\/\\/arahmannex\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "fdd39de0d14768cfc21a78ef907789ab489e0d90263dc0557eedfb3f30a9f8bc", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1a8a0849d2b52c26fc775f9d6004a94e355e2cf2eed99894f89cce677812114b", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "f50c4104f9e0d2c3fc67d2183497feb516f778cad741ff1262902438200983c1", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexs\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4398492d66a50250e8f939f05c1c7e8867ea0ec991455df7882531f0390c7c8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "8d5473316e28348fce4fcb74a4bf6f31aed2d72b5ec26999c739c401237f4204", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hujikoop" + }, + { + "hash": "5e89f4f25b44efdc372409e29e830263b37ff0cc4f1156faa6b7a790afa46f8d", + "regex": "." + }, + { + "hash": "a6ebba8d003433790ec154a7f8976b4dc43e285f093993c8164962cdeacc2690", + "regex": "(?i)^https?\\:\\/\\/rafieonex\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9b5abc0c73fe9e5d40a4ddc2daea6ae355e5cee63a3ab45e994f2aedb994f4d8", + "regex": "." + }, + { + "hash": "7fe9ba9734f2934f8ec555ecc945b6c9c1bb402b1b262f4d2904b6f774471886", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify\\.php(?:\\?|$)" + }, + { + "hash": "8a46df8da0b4576f850d25001e6491dc63e34e6e9e89f13324180870f6456b1e", + "regex": "(?i)^https?\\:\\/\\/rafieonex\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e449e1e12bea6dcd061366948a89a43d18164dd182c5360849702322cc5c7967", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "89d951d1bf41534b4511c3fab0135e264a80417d7ebc39b73dbb7f549566f3e5", + "regex": "(?i)^https?\\:\\/\\/xvideohotx6\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4b176823b60e63291020eb075c3b97068f39a87b4e7397b3c3a7a4151bd2a03c", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "727194106ab82af14c534e75ca13263ae67990c5161982a73d99e99c6fdc01f2", + "regex": "(?i)^https?\\:\\/\\/www\\.jmgyjd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "78e3c218234b588e6f2613d9cff736cefc34a5a031334cd02cf4b50af40672fa", + "regex": "(?i)^https?\\:\\/\\/vidtrendthrill2025\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c831aa85b72accee4f0b81b6d2eb94ec862fc6c812cd9112fb761ea3c6528e3d", + "regex": "(?i)^https?\\:\\/\\/xvideohotx6\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "04c4074dd8c10437843774a65a5bc96fccb60f739bb3f538f0e4dcede90c6a7e", + "regex": "(?i)^https?\\:\\/\\/www\\.homestlersker\\.a2hosted\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f17df8bc7613bca54528a0b71ada7b247b72539f797f17a14aa3340868a79cdc", + "regex": "(?i)^https?\\:\\/\\/xvideohotx6\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "35afe4fa9bd3ac7d1f5fb2c29864d1f56cccfc1aba8453131d0329ce524c65de", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f3201f779704c13d4329a0df7858e96bc51e287dfe1578d727627fb6eaa07a11", + "regex": "(?i)^https?\\:\\/\\/rafieonex\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "f8ddec889b7543f641ad6c3dd70456b7423de868992a4ab214b87cd67eea6e03", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bcfdf3a097882df622a64ac5ee67f45ccc67f9bca44cb22a7e88a1b88f844393", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fb8db1b27b9535b9a8a1a732c05c6ad6570dfec55ea7d120f93cea373af071c3", + "regex": "." + }, + { + "hash": "3fba34bea0ccb076f6b1897b44b9b0014018b893910d40c23f28d947998ffeed", + "regex": "(?i)^https?\\:\\/\\/www\\.jmgyjd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c68416de544b6dec548524479287b55e6a68ccf28d6970934fdeeeb052f8d5ea", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tolqxygluf\\.com\\%25E2\\%2588\\%2595frzzu\\%25E2\\%2588\\%2595whyftp\\%25E2\\%2588\\%2595qrcpb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ctmrifl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b30e304761c9a8bb47f843ba24f22994bb68f0be6c60cecabce13891eef8935", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "eff2b9cfd157392f432f44bc74c7697f7ae240ef86db366eb66ca7eb12e9995b", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "9ee8402d314193544f4545889983e0e1e6f5210ad8a8d84d994f2ef44209110e", + "regex": "(?i)^https?\\:\\/\\/rafieonex\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "34a40a519692b4cae30a0eca01bae13fafc12a4412ace508d39dcbaad3bd6b0e", + "regex": "(?i)^https?\\:\\/\\/kaimantcashonex\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "83284dd636461c93786783b66249770965b73320b1bf768fcae11bd8c7bfa1d8", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "78c731615fb9bc9b60cdf78415907bfd73dfcb72ffefcc26627751467391b0a0", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "af51da9e897cdd5189d7a14ca84a82ca04656afd13f98c8e7d9484ce9f620d36", + "regex": "(?i)^https?\\:\\/\\/login\\-screen\\-104887\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "335a4f856b9fc904512d0c6c6264cd3b7f12c662594ff7ac5b175949366048ea", + "regex": "(?i)^https?\\:\\/\\/arahmannex\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "61ffc8d70651d853139ee1eb84368dd7d65eb88047aabf5c5e019109ddbc01dd", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "623028a412d7d997bc1f78836a2364f195f40fe47df621021435d7f253d9e035", + "regex": "(?i)^https?\\:\\/\\/xvideohotx1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "96aef1f4a19ed9597ee709ad5d552013ace10d1a0388a6ac3033baacc7d44a8d", + "regex": "(?i)^https?\\:\\/\\/rafieonex\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "814759f3414ee34427f2b7edcd00e51a3810c04e6d27c910e5a55d95c0ba45cf", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "01afd9c50c9eadff334e5d4838e44971c1044f648693814b7a096757df05cd53", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "8ec18ecd72755c552b353d077e7ee6cbf338c9adc09fd11a946e2811c60c8ca7", + "regex": "." + }, + { + "hash": "048c438b0d5690b8a6eb68f7ac5bf9e91580cf19c372eeaae237c50967990a3a", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f41f8f0bb3e22933821a09d445c233c4dc98a261a0072f238b9650fad565bf78", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7c4e267323ef036bd4344fa1311bb27fb3c5f8cdfd30207b075e0bd74904cbdf", + "regex": "(?i)^https?\\:\\/\\/www\\.jmgyjd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d5ddce0343f002b93446a06e505904e4ad47f0af03445e5094e2e315d53da5a5", + "regex": "." + }, + { + "hash": "5ed001feb0b180b3e9a68f9b8d24e99d2ad1a9fd42e6887cd52453b726a4bf7f", + "regex": "(?i)^https?\\:\\/\\/hotvideohdcreator\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "019d4000c1d6d33dd6ce29098ef396f1a1cb0d0f1b91b479f0447b47d8d27dc3", + "regex": "(?i)^https?\\:\\/\\/pub\\-c59e46e2919e46a0b91d335be3e4907a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4d445e023a4642c77041b4f70d641413ab155dcdbb1e451b749fd9212495f0c4", + "regex": "(?i)^https?\\:\\/\\/xvideohotx5\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9ef1897bdc483acb4a78c637baea57d35447377856f773ca598f371ebfdf0020", + "regex": "(?i)^https?\\:\\/\\/3115a\\.co\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "83283db4a6ba69eabd556b255c470b9897bae50bfec4be51ee06c08722e2b4b7", + "regex": "(?i)^https?\\:\\/\\/xvideohotx6\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3fba35cbc6c08ae9b54544f05c7d48b30d9f851c0833098fce0146e171ddffd5", + "regex": "(?i)^https?\\:\\/\\/home\\-104311\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7194c764e3d9f4ff66655dda7a57a76a194f14c0c0481e764bd43d85bb2957e1", + "regex": "(?i)^https?\\:\\/\\/arahmannex\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "aa8054230d7a9b22200225dc5866bdf02925101632e9899650950bab830b085f", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c39537ef983055ac112a891fd5bd70d8328830847c83e3f62da43ba2e0857492", + "regex": "(?i)^https?\\:\\/\\/kaimantcashonex\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bc4b62c2dd5bdfb8994047922691c75eb4f3b62eaf668bde8ef5ab5400d54a4f", + "regex": "." + }, + { + "hash": "39e190372fadf3a3e003f8ac3186531d59791546e78c86ce9e396a8d631d9550", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "c88dd1730b96447f7ddb7ffe0f17b59bd7fba914826d1c6e18e4d48ddcb33962", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "83394aca45a51f443c3d36c285bdb584ba03e1def02dc296c7830afbfdf75afe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+geslaagd\\.html(?:\\?|$)" + }, + { + "hash": "cbc0ac5b1609e36724e68e291c7106bb6187ab51ad7f64de8807ede43093ad61", + "regex": "." + }, + { + "hash": "8b2438c840b38175188512e947df0998ef4e7d75aa9615ba460193d9c53d1172", + "regex": "(?i)^https?\\:\\/\\/apple\\.cokxfrnwnm\\.com\\%E2\\%88\\%95lfauj\\%E2\\%88\\%95bwwmiy\\%E2\\%88\\%95jnkose\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=jdcyvxt\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "556d8f418e224a2a033e749e63c6ff3fbd1b67a1342adbbf6443fa39bf590796", + "regex": "(?i)^https?\\:\\/\\/arahmannex\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "eeb6744ec3c6497aed3988754418e2cc4cc31068f9cc3f3b2f4c8fa73d3d2a7b", + "regex": "(?i)^https?\\:\\/\\/rafieonex\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3e725a5b04dd0070d20e8b4a2275e683a62ece5ada6ef2269f6bb4142fa6cc87", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3f7f9d237f511b9c420f2991c3f5e81e3f47a672547b85082b18a2446f1a8365", + "regex": "." + }, + { + "hash": "803c1193ebe75a09463846b6d2fc56b7fed07e7a05f9937b8b369270678217f1", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ehebi\\.com\\%E2\\%88\\%95hhkrffil\\%E2\\%88\\%95fatcbdxima\\%E2\\%88\\%95cppmiyj\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "c68416de544b6dec548524479287b55e6a68ccf28d6970934fdeeeb052f8d5ea", + "regex": "(?i)^https?\\:\\/\\/amazon\\.tolqxygluf\\.com\\%E2\\%88\\%95frzzu\\%E2\\%88\\%95whyftp\\%E2\\%88\\%95qrcpb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ctmrifl\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96e6f726aac63f548a06015cdbe991c732e8c9e344c1c7c7333dfe5b996915dd", + "regex": "." + }, + { + "hash": "dedc620b5b531b3edb72865db1ce49f728603266c0688f10c9de011f8ac7bf90", + "regex": "(?i)^https?\\:\\/\\/hotvideovortexs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8429eef32583ad090973326c15e3b59b3f25f9723f182e1ffcd4bbe59f57ee24", + "regex": "." + }, + { + "hash": "8b2438c840b38175188512e947df0998ef4e7d75aa9615ba460193d9c53d1172", + "regex": "(?i)^https?\\:\\/\\/apple\\.cokxfrnwnm\\.com\\%E2\\%88\\%95lfauj\\%E2\\%88\\%95bwwmiy\\%E2\\%88\\%95jnkose\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "fc31db386ee1df0b7e33ab7865ff90dd5e8e90199b7979e9f6039fbdc10d1d13", + "regex": "." + }, + { + "hash": "8f2d09c4866f19979701ac442119a6adaa40169d6d0fbbefa65d39e126e104d5", + "regex": "." + }, + { + "hash": "9bb5f914a59c44f7e47fded44bfd868b00e7203881489151be73bb9c8ba9b852", + "regex": "." + }, + { + "hash": "5b0078f5df488275d849e87a4523285e9b571c9d93832f343070144569c827c6", + "regex": "(?i)^https?\\:\\/\\/h4bb0m03d4sgr4t1s\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "04969aabbd71369a8acd69c19d8be26125d304662ad261b9189a636fceab4689", + "regex": "." + }, + { + "hash": "ece262607837d9f8cf4ce34004d88488dc0a7b3ec26040eb9699d4160f4a70e3", + "regex": "(?i)^https?\\:\\/\\/aademonex\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8ce9274fd984873517c0bb09bb3d73a33831c5b32112f2f677a195afa92b4016", + "regex": "(?i)^https?\\:\\/\\/inteee6002\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1eaad30abff09d9f340edfeea97e2eacc1e7e7146d41fcf8bbe07e70807d3b9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c7d16fafc3d16cee4be02dced3fce86a80bed5f039596f311b884696beb4e1b0", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "999662c944a30418cb9987e6245d908d7239936df459c3bf987b4eb283d2ab04", + "regex": "(?i)^https?\\:\\/\\/nontonfilm\\-21\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "aa80e69a5247ced53767e992cbffb3b5348da1967b78d85d3ceeb5572f0ac4bc", + "regex": "." + }, + { + "hash": "031e1643d590aebc0af328361adab10b0a15f7d69609caa3900e459c43c65630", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d4c9b41755cbf2ae48535fb09771c79c57e2c9fc50e45cef31dc2307bbef8bd6", + "regex": "." + }, + { + "hash": "34905576f89d217690ebeec085f12e014d80a22a59a5422dc456053860a8334c", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "624a07df36fcf12a4aad1537a2383e86065f5516375790156608c49f7b547d40", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx3\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6973f58e72184305680282755cca6dbb2da33595f717f369af54621ef1bd3081", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c07a7eda9c7f83b918a0e7d517fff0565b07707655d0431340de9b4a4f479b66", + "regex": "(?i)^https?\\:\\/\\/intee400444\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1bb9af9541929d710577406a66fbb6ddd72ac7576112cd1cd82e5df981d992cc", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2f60c894bc71df679318f0a2492631eed1bc8b2e8b0d46ea834500513708b961", + "regex": "(?i)^https?\\:\\/\\/hotvideohd360\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f390918ab59701c75250806ee9f8b6152689bac37aa39b38d70c191c5386446b", + "regex": "." + }, + { + "hash": "26c0264cd8c85ac8c7d47463e0637b624abd705593b65b25cff93f69980f2a4b", + "regex": "(?i)^https?\\:\\/\\/www\\.mdbxdb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "466ad7d17747c520a435e3f538d9fef52b5d1e75842b1f756c6d6980071f2988", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "fed4d8ea004ce62da950ac6c32acf33448456d73ea5a0d8617121885feda5e48", + "regex": "(?i)^https?\\:\\/\\/hotvideohd360\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b32d69f17fe4aaf0b55da4e356a88fd771e3068cb47ee3fdf879f5d4e2844f01", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx2\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e9146147c4298f55cce5cf2c6bde42d205652d29f879f97e523fb3070c64951e", + "regex": "(?i)^https?\\:\\/\\/intee9001\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1feeefda895afea418646c67bd3a86814f404fd844bc3f684ee28a012810bb71", + "regex": "(?i)^https?\\:\\/\\/xvideohotx9\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "bd49017481058dc8536780d9fadb864087c6268255eb1803ce445f106e885e38", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ce3dc58228f339d7783c7ec1758b46fcbc2dade7d8fe4013c36c608942790fea", + "regex": "(?i)^https?\\:\\/\\/intee9001\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1379d472577007153ea50a035bdd117298536ea7da17e36de42aac5f9ee97144", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "48225924dca3da0e200f0ecf8e2acad70447679364c5adeb7bf0336ff1043fb6", + "regex": "(?i)^https?\\:\\/\\/xvideohotx9\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "047e22a0e4f6922e24829f1d2b36b31933b6c790d953798509e918548a245909", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e8bd6a2fd400bd375da1fda01f823e155bdabeb486d9e0768b9bdd7c5b62f3cd", + "regex": "(?i)^https?\\:\\/\\/blueberry\\-vanilla01\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "793b98bcd3172cdfbe95b725839d462ac80cb40ceab936410e37f5f77009ebe1", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "bbdb553163f65761ae860732f64ce614b8e040c355248dd4688955c7b3a239b3", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7a97a7e01b55eedbeca3c3659b775aaf3b0990a487e9a0f95e20f70954e63fc6", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "1d7d2579e4ce34129426c7a00cd49550ae881aa983bc18daaa6b385593acd6f1", + "regex": "(?i)^https?\\:\\/\\/inte809\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7ee9489888dcb96e3a98af6a62450df74be2ca2e32d09270b318ae9d05bf7f46", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv2\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "650d09948259ed053d4694a38ef90621e2040e8b0a87e668fa35451a55dda3ae", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ea500c610dcf8d41912e986400f0cc361fe5db8b6d4c9b47d41af54406f16b0c", + "regex": "(?i)^https?\\:\\/\\/home\\-105055\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a082d012986151a763d2d244154d70472148e9e8381ed52896068ae7de290520", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1face292e9c309950d74d405826e05ff129e60144ae575913d17957a9116fb36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mkezsdhm[\\/\\\\]+MCj3slX\\.php(?:\\?|$)" + }, + { + "hash": "00aecaa5749110cf294d4bbd739a13bb98140628693ee86edc62b336af9c943e", + "regex": "." + }, + { + "hash": "0f3cf23ee63bdca8630d9fbb0dba4622ad5d9904087ca77045358371d194ed98", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "94b1155ba6313cacd4bf9e76dc0cf19340ff27802a7f98d1ee211be6f1f3c07f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Frksna\\.com\\%2Fcatalog\\%2Fcontroller\\%2Ffeed\\%2Fcms\\%2F[\\/\\\\]+1[\\/\\\\]+010001938ec98d5e\\-11151d7f\\-aa22\\-4e0e\\-9ab9\\-6beb254f5f89\\-000000[\\/\\\\]+0Z7733MXhkRY51vc61HDVJqbhUk\\=402(?:\\?|$)" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "c52a56c3401b33a84f1ddd225b35cfbc58d5a8060e79c01036388ad9d9f8f557", + "regex": "(?i)^https?\\:\\/\\/intee303\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4011be69109cad1eb65e933b6d1a3ff59d8d1153fe794b2742e0395e20802537", + "regex": "(?i)^https?\\:\\/\\/roblooxcccc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "74f3edf76ac68367973ed15b6435dddd4fb007d8e1caf1fcbe6be5626336b68b", + "regex": "(?i)^https?\\:\\/\\/inte809\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "f82397e61f75b7da3996f69b9c8ad48d66e9bf37b48aeeab117e568eddfdc3ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+otp6" + }, + { + "hash": "08a8a5a1c4a30678218272b8b1ac82f2fba61f830753c164348c75a8f9e61215", + "regex": "." + }, + { + "hash": "94bee1ff0afeac839f6546ae743cf327adc12f2d6fbcb4ba3ab3fb64b8404e9c", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b14d4b9573564f4f4ddfee6bc43a14bab91b0903c42267d9719c61b3a8881655", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a340992f387361459417d86104365317ffcba5a44ffa6513914a360c31382930", + "regex": "(?i)^https?\\:\\/\\/xvideohotv3\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "b3a07b3e8b855e5c950c545beb21de0bb5f4e970cd130dde00a415d5c5400e45", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx3\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "241b911d7aece0b3537716f3cf76d905c47d57fc27413e0e9cb1a39a2a16486f", + "regex": "." + }, + { + "hash": "2466ee094be4a7b688767f3add5c5208e1ea3bc2a2d16adfd25afb621372350f", + "regex": "." + }, + { + "hash": "8e8bf7137d2eaf254bb3decb86b34d76d273299ce4f571b6b7c9c9c72374a772", + "regex": "(?i)^https?\\:\\/\\/www\\.sfvwfw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1202e40203f4109784bb202dff22a4f9cd2facfd204c2d7cafefee1e2abc5a5f", + "regex": "(?i)^https?\\:\\/\\/intee9001\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5da273f3dc61705dab07e5a88574dfa427380e8202b4a15ed6c56e7a7514a0ce", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "13171dfb0fd80e3bf4cdd172b0ec242013d25f50054a03bfa8e511639b5907dd", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a5b237a77d522fc4d3920f88d0494df7340ea6a0a78e6a26a2f32dcfcefc7e06", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3cf16e70a4956152d4c5139392619a3c8efdb0e3559104e6c3c75d22a32fd5b4", + "regex": "(?i)^https?\\:\\/\\/intee9001\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f6f7dc8ac2d8df5ac3514651e9ca09f988f856df70dda01a7faf184025389f89", + "regex": "(?i)^https?\\:\\/\\/blueberry\\-vanilla01\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "dd31419c33791587d3d3bf090b5878e15f1d15d7cd6cb1f9878a1d46f79300b9", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ab737f5c99920af4f3aabebbadff96cd203ea57031b77ac2544b639b55f799e3", + "regex": "(?i)^https?\\:\\/\\/att\\-105177\\-109789\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7da90bf140906accf3a122972f90c971e9c8c3b44b42f70ae596a27d2e091686", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13234c2e704771705cd83f5b937945399ec6369d84cc23e87d11c67b74431389", + "regex": "." + }, + { + "hash": "d691298d973e6f5c8965e12900d99f4a09ed34eeccaec66ff65f7b53599263b7", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "8ea5dcfccbd490a5a32c8d4a7d42aa6284c7e5d5632f02ea05b915c63db1109b", + "regex": "." + }, + { + "hash": "b4358268232c212320df7952641dc889d0a4231ca05505131f1ea2532d23064d", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c1666fa40e89924a692a53d0d00b7e774bd1792abe1874359c6bf249d90e5d86", + "regex": "(?i)^https?\\:\\/\\/xvideohotv3\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b14d4b9573564f4f4ddfee6bc43a14bab91b0903c42267d9719c61b3a8881655", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "5a22ac3dd0bbe9c168f8885d1e9a24b4dd34115fc172d5bf4d42152031166cae", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "9ce99dc23b8c64b67e14d765430b9f92f946b79d73bdefd364dc43aadf895ea9", + "regex": "(?i)^https?\\:\\/\\/roblooxcccc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f4538bc4cb64e0927cfc58cafcef21b9c935da862f00bd0b5fbb2edea009507e", + "regex": "(?i)^https?\\:\\/\\/inte809\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b9eba75631dc2038d8bbac52dea9c9a18ba6ad5a22d0cb5429a09e459e725073", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv4\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "16c409ae7bbbf591b06f6793afd9d7bd40ea8b2c9026d65ccf1da3883060a8c4", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4fb4fbbb8e5c873af5a12bfdc502bd84dd9d00c7c269e5d2493c3c981cf31da8", + "regex": "." + }, + { + "hash": "593d90685c2bf59ea650cfb2c7d509002ddf32f94adeff10a838022575a47234", + "regex": "." + }, + { + "hash": "bd29e74733e6a209836e5f88b8d72f392b0036810f698cc40af904ab1578b00f", + "regex": "." + }, + { + "hash": "1eaf30590dbd414bb4b1544dd70a57753adfa46e6f4b2de931157acc2a241ae6", + "regex": "(?i)^https?\\:\\/\\/nontonfilm\\-21\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "465c444771365ae143b86a7334765135ab1326b9768e995c128e3356519c63e5", + "regex": "(?i)^https?\\:\\/\\/hotflickshdhub\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "185b4a73e1acb637d54c3accc9f301831188bb148d63c72484d6f23ddc85ebd0", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx2\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9747eede4edc41820d83c653a90024dd96b6d9b98747e9aa9c75f3834c5e2885", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pl\\.php(?:\\?|$)" + }, + { + "hash": "162068b4737393118afb4758000ca52242bc21ad24348277b42cd80beea106f9", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "05d2f491a1690604824bd8e3f83c1f1ad0f4849c26f94127fc71d74f743b85e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49aa0bdbc377020c6903a5133de318d5283cec0628c4f639db6ad16191ba6a39", + "regex": "(?i)^https?\\:\\/\\/videohittrail\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8fee0ce88da0d918e3a63a6512505d0089e48e27c35bdc3208d67cb04c586387", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "544e7492a94ff10f8935a52aae3b0257451f824bb8036c90b86034a090ed0e72", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bef3ece43119d51af1ef02ef4bf9e689be97fda9468925e21fdf1402cd915019", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7303c773ee5134d10c0058066f209dd6e8f10fbf5e667d4e586c45255faf3ad1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "52565571764639538c381934da3155e884b9004cc33b455d81c12436e43ef196", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv4\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4db714f958a51f92e598b89676d07832eb0944cec9829545d400535dbe12b6a7", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e198fd7dc60c180a0eeb500ce22a27b555829f2284d49055c5593c836459ce35", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0981cee3dbd7b4262a86fa4391babe5c923c9dea97b840ab74f0e4d8dcaab139", + "regex": "." + }, + { + "hash": "9db224c135f517d70715dec54f2c051b2f21c565a52fd1416eb650082f5070eb", + "regex": "(?i)^https?\\:\\/\\/roblooxcccc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "550fbbe09ee0ea5155b382f430f032567e0588d04304cfbaa69afaa78b3269b1", + "regex": "." + }, + { + "hash": "ce1ad0d28f2c38d4b8b2607d44fa29121dacda08b1aae7b03d863976044f11d5", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e24ed05bdffaa7e251ae7db76df1f41454b36c3dbffe3aef68a5b3a4316cd2df", + "regex": "(?i)^https?\\:\\/\\/laurasayuri07\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "613faf3d2fba9dce446604bc68d14a91ef14bf40f8fee8a9f6b9893cb8db48d9", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx2\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "213ac8df48d3fbe2f59ce55c91fe747aec0d28148c3179dda866a4bb79df7352", + "regex": "." + }, + { + "hash": "fad7d003cb4703f9072f1ff54a8a9f199a429e6b44b84772d78eedf1ac78abe5", + "regex": "." + }, + { + "hash": "a124e09758b6fee47303526834159b8511cf79346a971d868f844c5009d696b1", + "regex": "." + }, + { + "hash": "85eb2fad135469faf856138bb5fe377e50ceea2ae42f1549877243e9077168d5", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "33348cc3878d0bbc93cd6b9d47d1750584c6c5063ca3a206c12685f3332c37e5", + "regex": "(?i)^https?\\:\\/\\/intee303\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "57bfca2a71578ebae71842a12f4e8a5170d4bb9dccb03a714656f4c2b0af7587", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "a144c9a5232fe23cd41f44d1170c21297a545d3bc43f0c2af250ef76ca8e4829", + "regex": "." + }, + { + "hash": "b65d2b6cf52ec81541349c2dbb525b2f1af3ca42860fde892598f5526e544ab2", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "51ca69650a75f3e17b58292195af7e489bd4b9d6016eddd035a1ba50d4d1ffed", + "regex": "." + }, + { + "hash": "94f27f9e9363b1cc6825607ed651954f6d36707912bfb54dc485aa4277b2b3e3", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6fbe2d6d94d78bf0f277ac47108428f17e49c0f37b36c3b103255724ba5b4bc3", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv4\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "cfae46988f105f2ba0bdc2103be2b5bc94d1d8960ed04ebbc3f1b1f23210726d", + "regex": "(?i)^https?\\:\\/\\/nontonfilm\\-21\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f9b536525f692122a419eb4b41ad01562108df87c7ffc73cfe451cf83d1edb97", + "regex": "(?i)^https?\\:\\/\\/www\\.sfvwfw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "f02f74935e4b1d73f6b93ac330df6f06eb1f6b97465566d1f8b45b1c179f057a", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv4\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "06915dccf8cfd0fb202eef32c84974c94dce7043e05be7d1516c4b106f1ec1d8", + "regex": "(?i)^https?\\:\\/\\/inte809\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c665d3cbb25944d07f50e72cc425f1ef82220f6490a2bc01327cafd7e68193cc", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6836829ebb037c34a9ea19b88dbdc126b02aca1ca65272be9d1238e62dd668b0", + "regex": "(?i)^https?\\:\\/\\/intee303\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "a73c7940f41511c3f6d6f931fdf423f61bee2d944001f494b8da7fba1133bf4e", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8ab233da753779384098501827f37d1ee467c39b19f85385e6a63bb2ef3ee89a", + "regex": "." + }, + { + "hash": "c1334f10ea2e72901db2ce443e208ecc41a7d29114c39306818654c22ef01c5d", + "regex": "(?i)^https?\\:\\/\\/inte809\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "1b4b4300cd55d92ccc4d6aaa04742b46db3ee24b7ddb3535c187aa0246dba38d", + "regex": "(?i)^https?\\:\\/\\/nontonfilm\\-21\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b15e656bd4d4f214722e4d0d080b82817c38c399c716ba2709cc48ea092131e1", + "regex": "." + }, + { + "hash": "fd436a43625cd88c1c9133d9cb629ae89ba4b86f017ad9ac3e807b6b79bae621", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0je9s(?:\\?|$)" + }, + { + "hash": "c6848e29051c1a02a429382436a9af3bddde5093d934751c2df80abdac116a6a", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d16bb62b1c06b0730ecdd604c07887bf9370199dd5038afc41df4f2e538637e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_source\\=event_newsletter\\&utm_medium\\=orders_paymentfail\\&utm_mode\\=skip_if_exists\\&task_id\\=144033500\\&task_auth\\=8db0e45b3990eca764cf06ce874e634a$" + }, + { + "hash": "7a8e7aaa5bea644a55e8b7a7c1ed56bc5d9e54dc0efadf92e64a01bd72a22d8a", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cfe77381026b1a61aff28089412f6f7acd342131afb1af0fcde32cf61e537132", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5590908d82faedd9aaeddcf5c8adcd386c759c713fdbfdd87231ce10a60fb2a5", + "regex": "(?i)^https?\\:\\/\\/roblooxcccc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5c124c87effa2eb682a212bf1fca68b8379445a9aa9d19ff37564c64af13974c", + "regex": "(?i)^https?\\:\\/\\/nontonfilm\\-21\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a96e81d6e1a9dfe42a513b3083257d4718321ad458eebeb7d7680cd70a7c3370", + "regex": "." + }, + { + "hash": "4703cd1bcfea04d26df9f00e452bafd1c44429644f8a16a0914a4351be2b0c86", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6c0ee6e24317a716106ee21f7bd9d130d6cc4e02ce33c1da935cf6c98f298406", + "regex": "." + }, + { + "hash": "e9ee5ad1c7f4f571eb900579563bcb09649de5a0f284977db4d812b2dd3269a5", + "regex": "(?i)^https?\\:\\/\\/blueberry\\-vanilla01\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7943f02cb5bf5cf942af93f048dcc73c45226f892440d6b5dd82aa61a45e1ad9", + "regex": "(?i)^https?\\:\\/\\/hotflickshdhub\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e26d50eb143ae667826e72985c698e58425806bfafa27bc98afc3a54e6654f6b", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4f6e6b374896bfc73e987dc9c58b54e2abbbf5f2592a8efc1484f82f7a46bc98", + "regex": "(?i)^https?\\:\\/\\/www\\.mdbxdb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f0642c15bdb305b06da78b630910e671f80283db5c694330c4090754842d44b5", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6f90cb6491b2143ad8b5d4038335225bb76b1d1712807c483091b7a0149ba1de", + "regex": "." + }, + { + "hash": "af87bfb1a0929fd1309a32bfb3870dbef9eb37f1739dbd82cdee96a60377d3bc", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv2\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8fc100a42f52405d4c9408b336373c024f085e16262063b53e3fa3eba046015e", + "regex": "(?i)^https?\\:\\/\\/hotvideohd360\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "df9a7e606b753636123942c82b7cd1379eabba4d75be7eeb22e5b8acd4ab307a", + "regex": "(?i)^https?\\:\\/\\/roblooxcccc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fa659ec0a4e16e7eca95b71cb4029df92388b905dc377107d0e193f355aa38e2", + "regex": "." + }, + { + "hash": "a38a7ff1389a35bf23a04d78566c7f7aea59f538ad23f0956b854221c04d188a", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9efbac38879f2ff9fe29e072c46c2dcb2d7cb8e7462af05cc6123a6d44db0c2c", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "0cf0259da81cce465b21ba0cd718fe89211cd8e7c4e422526649a4e3182070db", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv4\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e7dffe0fe390654b4b80bd45936d91b83c96f88a0cd5ee0488f542e6dde2431e", + "regex": "." + }, + { + "hash": "99ad8e4c89e5144aa46866f8d898d54a61f6274daa224e458cf09f180c025e80", + "regex": "(?i)^https?\\:\\/\\/hotvideohd360\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "61297f8fefe78e15cc2a232d289753b4356681103d88c7dc89325952ac0b73eb", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6896897b9df91ca178833348def762fcab88f58f90d3ec5191769f452a06a7e3", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx3\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "280db417280124cf9a117cc9374b734064cbcac546169ef00de0433234ec8d91", + "regex": "(?i)^https?\\:\\/\\/intee400444\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "81e12526bee700106fa852d6933aef74214557c67fdc92fb3fceedb26a122e0d", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "76d83c4ce3e77989fb4f932be778c1e41d28e2e242ea7cb2e9078a76b83aa304", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ff17f7919d7c5d8b36da1cba59c398666b25e898ef52abe62daf6e172bc6b2a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9fc8c65c35f18e7e0b4b14459b34230a8795cee44ffc38a2a89bc1219b9b012b", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8d31edcbec301a627706a9b4e6e9d38dad1e36a5e658a48f80f422b4960f8da0", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx2\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ad8cb1910d77eecaed8847c038416ca265aed91e915366cc25f0fe9791aafb68", + "regex": "(?i)^https?\\:\\/\\/videohittrail\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cf10345213b925fe3a2aed5d3d16f708faedf89b9f496358360ea87749cb22ea", + "regex": "(?i)^https?\\:\\/\\/www\\.sfvwfw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a9baa71512cc32c46522005b91dcce5f81f9ecc01b18a30bf64b0ea5f00dddec", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4de023f87a520e9f80911400f1bfdc418878a9e3a77fe1651d3d8a73325aea9d", + "regex": "(?i)^https?\\:\\/\\/aeyf\\-12\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "354f307747f913340eae04ed2c8ad87c891cb7c1017b32efd726982ea35669a2", + "regex": "(?i)^https?\\:\\/\\/xvideohotx9\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a10d6ecdd1034b75bd8fd68c1466a06e119ab1c090493fe96a88b479bea2f959", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7f0ae82aeba92deebdb2f48d4a9538b17c8a892dbd38cae7c1a63245c646471d", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0a929c3050685d697b2f918616075293e6f4973d9bbd0fda9246636a7bcedcbb", + "regex": "(?i)^https?\\:\\/\\/www\\.mdbxdb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bc7f2260bfd07a8ddf102535c57ae1e832395e70b5aa0019405f8a43548de155", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d1ef7b3fbdde36d35dbe34863b8d45127b77c2bec587f2b2a3000a41403724e2", + "regex": "." + }, + { + "hash": "4c0326499b3b43e0e0ec5fed3ec7147c7b04538109f059d344ba8d442615bf07", + "regex": "(?i)^https?\\:\\/\\/intee400444\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "11eb8b0c444b85d25b70d8338171b6472382dabcc3fda437a8e1cd44b9759fd7", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "11f5ac5ab1f590fc31871dcc65f03b1c85110bf812c6634b9802c0026f254a86", + "regex": "(?i)^https?\\:\\/\\/hotflickshdhub\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "20355462004419383d968450f349198aebcffc89029bb31c1bff20da62d95558", + "regex": "(?i)^https?\\:\\/\\/blueberry\\-vanilla01\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e3878f1045d93c432d296468d37c6ca4db6f433dc0c59370224cfbe61c511ba3", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c0e71cecba3a6007f85a783ef00518462448e03b813cf7caae590dafb1e87c24", + "regex": "." + }, + { + "hash": "ce8bdffd3e663ec98dc12c43228ba0812796daa3489d4f3a85e84de6c6b8b1fb", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "21682edf523393ea77db28cc97acde67d7690445d49e5602b24809a47367db85", + "regex": "." + }, + { + "hash": "00794643f30d78088456c6cd52de25f268f27f2fc4416370817716b211e72b88", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8bc5aa4d1e7853e222621adf9f1b635153d8433f0422169dd9f7e3e356d34d59", + "regex": "(?i)^https?\\:\\/\\/intee9001\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c945d54529f83a4ccb0a40e7050e7f569ef6f08363e59ccda39edc605d8e5757", + "regex": "(?i)^https?\\:\\/\\/intee400444\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "59b719518435de906601308501150ba131bd57a86efb38242891bd1868e7f9e7", + "regex": "(?i)^https?\\:\\/\\/www\\.mdbxdb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "07a9d4dfcf979baa8472feb06849d2c4c4749a7b462ad2e6a0f015a71284d826", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1e466e1bc486fc5489fef529ffb2832ce7e213707cef5880d0b5fde980022530", + "regex": "(?i)^https?\\:\\/\\/www\\.instagram\\.com\\.dl2\\.uchihaudin\\.biz\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "dc9cd9bac5bd536993c2fe23c3a27466ec155bc0d15b8548c457b8b1c49e8f52", + "regex": "(?i)^https?\\:\\/\\/intee303\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4412340aa172e396e0c1af423697869a31730d5872ebb42531879dbc45314882", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx3\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6f0ab1bab61aea9dc0d5de7d53fa35dedf1a3dfaaaae65d6adee0fd22ade004d", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "63137bf8da9229b9634e4fe3ed0e1290d53b0397935b5a0404041413e6cd7375", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx3\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f81ced2ba022a3af1f8990e147992f4ac28282cf3d4911a0d091b0145c296f13", + "regex": "(?i)^https?\\:\\/\\/blueberry\\-vanilla01\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b4117f7906de6ee624d9e2aae01e03ddaa668c7d0827348c9ad5e159e635fbd0", + "regex": "." + }, + { + "hash": "5a8e0e6bc20a47515a15ee906bfdf312d4f81edb711dca80b30e07a141146508", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "99baeefd8fc8b2ed423c32e0c9dbf186522fc86c913a604ea68ae47f3e7ef9e8", + "regex": "." + }, + { + "hash": "d137d6bf1c62f451ce9db47aa63f683eb9f7e1f92f84ec62ecb0a10c7512a4f5", + "regex": "(?i)^https?\\:\\/\\/videohittrail\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "d98da4f65e408808b770980dbbe68b457e2e4059fc935bfd0fa7a2396ea652d8", + "regex": "(?i)^https?\\:\\/\\/blueberry\\-vanilla01\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "61abe717c1bcd978bb006fc29deb2edcf521e731930a7446c2b7daafb3da2e07", + "regex": "(?i)^https?\\:\\/\\/intee9001\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "63fc103cbd16812f48bc6ec91214414e15633c53980ee3bd3e52006483ca33b4", + "regex": "(?i)^https?\\:\\/\\/www\\.mdbxdb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b82fb3bf8bb2ec13cf970434c718c2beae1dd2d747563903a370baac9c1a073c", + "regex": "(?i)^https?\\:\\/\\/hotflickshdhub\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "18224f1107704d01c23832523d7b1182873d603c3364f533a14b54621c3108dd", + "regex": "(?i)^https?\\:\\/\\/amazon\\.cevosrs\\.com\\%E2\\%88\\%95xorom\\%E2\\%88\\%95onvyopwdtb\\%E2\\%88\\%95pnsxrmtx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pdrpeo\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c4789dbd2a4c26680df716a2bfad36d83dd9d1b5e652e32b9e308f1706a9a4d8", + "regex": "(?i)^https?\\:\\/\\/roblooxcccc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f728b5498e08a863a858b36afc971e73d5e96de24221be9f603edea3b9e6180e", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b324200d7a4eda380069d5ce3232ce111e8612a8a1936639bb9101acc8763d63", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "edab84893b18f79215665d24da6e26cb54d635fd0d4c8217b2e2ef2d8e6a0ce9", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "72bc14310fd34326e58beff64d37303891172682caa4d2e31656fbab79526057", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "492bcc2a8062dfc1fd632ab1b1721ff41b9864b588285df72e4660e21cd6fca9", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "627caf69626cd1d11d97173c9e991ee7e392afb5384cd322400b346fb8d11c37", + "regex": "." + }, + { + "hash": "3c8fa114ef3f3800021168523b13319920f2da904e9bc91ae57debb5e751b95f", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx3\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c665c74f54bc5ba9e220be289a6630bde0927e72e758a7468680e2c2ac46af76", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ea9be683c3b0f1bea497270226e6991354db0f5922fe2b41f3ebcce58bbba2d7", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4c7e7603cdf9b469c976a57321da7ba236b503212f9f7539023e77088054ee4a", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3c58731643a7ab13e1a4e3c5a4c8c273f3a7ef8ab87afdcd3a6f3e0af494ac7e", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3315a8db2a2894bb93f6ac063343811390eb55570072f780f84d59b9d7714ec3", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "546ce59a2528ac3751fd8cd0a904ad019f8f6a52fd9254823d68b9b68cda0608", + "regex": "(?i)^https?\\:\\/\\/navnitsingh0110\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7b6dd1bd345e68ce26b319c911b959756c963b9d687ca4d334ea7ef03a4c59c3", + "regex": "(?i)^https?\\:\\/\\/xvideohotx9\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "5259f209187cd0149875787643830f90a124024c68e07e05a045b5c5896d2582", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.hr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95f0c2e4352eadc1e8ea232a8762e976c03e1cf90dde72825dd105de9341fbfd", + "regex": "(?i)^https?\\:\\/\\/blueberry\\-vanilla01\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ecd452b9eb6ebe3cde009741a212f8e48ce75f8276e44bd2b21ad423bb426fa4", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2fa3cf4c5287ba59f49878b36f8bd2fdc98cab26d5dd9b3e312e575ef5a770d5", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "93a5aa9f1492befd2ce138c9d59c1e071fe09b8c1caca94fe13856798ecaf84e", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "17cccf8255d914fa23e44982b073f62a2d35ed560c1a9ea09b9d3957ae4cd20d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.gboyhook\\.com\\%E2\\%88\\%95hqfcjdau\\%E2\\%88\\%95eptbb\\%E2\\%88\\%95ienzuht\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "26b4dba31cb4b8b23b39276fbfba282f1184ad9dde4086f321364f5a7dc83861", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx2\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "271423c69b4b852665bc28f2e3f38f4baf7595a3b40f5c9c8412dac681f31287", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv2\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "29e797ec14c59304bbdee16f13565e8e81d96ebaf064aebf65c9d00153649ab8", + "regex": "(?i)^https?\\:\\/\\/intee303\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9b3d4f272c1252062fccfaaef0441befe2baa3e00ccdfe210a2a726b51b1a6a3", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv2\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fd436a43625cd88c1c9133d9cb629ae89ba4b86f017ad9ac3e807b6b79bae621", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0je9s(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "35fc299cde28ec5f38e8cdd3e57133767b8a46af76885fff1721397d2328e5cc", + "regex": "(?i)^https?\\:\\/\\/inte809\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ec18d31b1355c2441fb12b2b158d93b7c1907219b46fc122e7aff0db56fb1ff1", + "regex": "." + }, + { + "hash": "817fd93e1e38fdc15b63b7b53187be59db9ff7ba019191c5784f0024795e01a4", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "131224b5b3434b1e0bdeb9257f4bebf9c371ddf0f2042c56b28749da293e5bfa", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "3a67913afbd53bc97975bc14fbfca488f45d0c00ef438f44b4ed437a138b4924", + "regex": "." + }, + { + "hash": "92971580964dc3448d08140cb17f68e3d0eefbebff14d5a0224fd77a3b4f3173", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx2\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "76372a60032d48895024da3b77c35d2873fb2246e01574e1848c12febaaf90e2", + "regex": "(?i)^https?\\:\\/\\/www\\.sfvwfw\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "034fdaf4364159c76a8a1c43fccbce340f551841f3f5ed820b5dd87533815fdd", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f269bfc5c19e5d7f37fc57781ea2b86f6420066ac856c006a18251d40962c726", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a3c239afaf94013f8cbee5bf207da3b0b9765025a4daa5f6c6599a78dd547b4a", + "regex": "(?i)^https?\\:\\/\\/intee400444\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6bf5585f4d21a4edba4c8cec6dce55e941b2404210680f134606bf4d40936fc4", + "regex": "." + }, + { + "hash": "ce7db1594534d1cb991cc2dae20aba994ef50f6e76052baf18b603f7742d23f4", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "18398b59b7a0dd7688dfab075bee114ae89cef2cf10321b7bdeaed22ad0aca39", + "regex": "(?i)^https?\\:\\/\\/xvideohotx9\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "514f331f5d1b27098d92c46c162e67e3622d712d1b250822ac1983dfc3033e2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nanajo\\.php(?:\\?|$)" + }, + { + "hash": "3c20601330932b899cb00c4c2bb70e957d8e5363ba688bc8fb9c047668dbc1fa", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "af51fd1f294d6907bfa67b99e67fd964874d0a2f897593aff3ea45122184e999", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-103492\\-100934\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8a2543af62c5f388a34b727e16cb782b33fddd5127e9b509cc0a9d9f42937adb", + "regex": "(?i)^https?\\:\\/\\/dasdsad22\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8d3343ff8fa1428355ddc6b3ea57590b8e0980d8fa91f69409633a53bfbdf99a", + "regex": "(?i)^https?\\:\\/\\/lbl76u\\.csb\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "3e118d108f9fa890c46cde8bc68f6ee8dc28c01e77935aa035cb1938b5b86b41", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fcbb595f1275eb3109aaabb4cd8b1c0fb18d50aa8468dbbe42acbdaa237b2ccf", + "regex": "(?i)^https?\\:\\/\\/videohittrail\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "372268a7aa706e92debaa2573292c4c62151c28083ff67c0f2b62e49f61c8d11", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "12ae00b0e075f5365d321d2fbb7f8f9fdf11dabe9bfb2e4d410176db2f04928b", + "regex": "(?i)^https?\\:\\/\\/www\\.vip3659a\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "45736cb7955f5cbd940d9292735603bce02138c4501607966c0306aea7247f87", + "regex": "." + }, + { + "hash": "331a613975398a4db7c509b8e53b64b237825e07acde0b2a4a42e81b09eecb54", + "regex": "." + }, + { + "hash": "417621abeab32a2854ee2b5989ccf72a3deda08023c19019bdb94c797e9b26f2", + "regex": "." + }, + { + "hash": "bff5e4d796f383d81c7c996f1279a287bc4fd9350d26465948ca8709496580c2", + "regex": "(?i)^https?\\:\\/\\/nontonfilm\\-21\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "eecd87f54c56b1d0b0cd5adbd0b4745a0eb509f0bd96276856c1df25d33fb93e", + "regex": "(?i)^https?\\:\\/\\/blueberry\\-vanilla01\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d6fb0f3a75880885389c5c8f7ccf1f3d29521c91e3a4ff9722faf605a9d9dff9", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2035bf181a32d5f2b2b1f63ae666e94ea6164bc2c890d8437bab39ea702173e7", + "regex": "(?i)^https?\\:\\/\\/www\\.mdbxdb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "76dee2ffc66100e8ad2bb33231552920d9773f29b09f6507bbc6d23c275369a1", + "regex": "(?i)^https?\\:\\/\\/xvideohotx9\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "be817b29fa17c2fcc3431c6235e6cc16e8881a5771f0aab0f64fde38922c738a", + "regex": "." + }, + { + "hash": "649fb1b28e884a72a5e233d27a4570420c42093c1a1fccd2c01d1e958c37b8c0", + "regex": "." + }, + { + "hash": "88587606843635061397225e4950011add41043414dced02db7ec6775293d529", + "regex": "(?i)^https?\\:\\/\\/sigin\\-com\\-att\\-login\\-page\\-101480\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3fe73d5f3c6c6d23199dcc29e14af34dd12e2b498b63ce7a4ce5018f01981256", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx3\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3312e9bdc848bbfe9916a1f943bb513c18ea227b825e6cf8a67b0993fa90f8d1", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8378e3f98f4ea6ec473ab8fec78b196428eb159415b0d188278d69437ad706e9", + "regex": "(?i)^https?\\:\\/\\/hotvideohd360\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1bbc73ac58f61c6bb5908e0744aa6bd8d616080e63777a0b5e77a0e030b8aceb", + "regex": "(?i)^https?\\:\\/\\/www\\.sfvwfw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a33be6c139dd988f7f2b17794860445a374e5adec6edeb317aaa1a02ef152175", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cd5c83d21c99bec790c4968fea7e518ad496623fe43cc7128b4f00be825c1beb", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e5c2062d56eb3506a7acceb2922310f9bd1ebfe8b5649dfd06ee0a6af2af0a84", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv4\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b862241d977c79d210461db2aaab0ea714eb8623a46b8805c984fba36247b20f", + "regex": "." + }, + { + "hash": "0421726c125aa579e2cf98621b179c73c9d6cd4dc2b3d1c03971eb73313c96c8", + "regex": "." + }, + { + "hash": "b416f5f05261a458af4ef0ac965c15ce7212389d3d715faffc7d4b9f180d6123", + "regex": "(?i)^https?\\:\\/\\/22prachi\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "5e1b78f667e3bfaf107ca621380ededfbe350e0701afd8bec6a5b67f300f7339", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b3c6afea14e084aec64ec0eb18124498de059196f0e874f2dbc3e22ce362c43f", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx2\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "7d158f785a676283ce0a08745a5de293d5d22e734a7af8a13a5f5f2c4a8b5a0a", + "regex": "(?i)^https?\\:\\/\\/xvideohotx9\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e1a133da4409eb5c0b3663a3ca1448bcc9184c2cfcbd7076dfd9f6b93e7da85a", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "05fb10e4084d92bb05930905e6e56fa872672f746203ed9182eda71765fd7704", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fa2f80a80105ac0df071723b98934cd40d050eee14628657d6113914d7f1e321", + "regex": "(?i)^https?\\:\\/\\/nontonfilm\\-21\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ddc5bda5622fb9779d2a0fef6cc833e4ebf2d46dd5ee635b729b8f8deee6a51d", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "450445b190a9a975f24ba1105810b78fdbc023d944b6f6337ac61079810134a1", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ca7166bc5d19ac9e63476048f0761f3604f47e516174da9d351c75aef0f496dc", + "regex": "(?i)^https?\\:\\/\\/get\\-9000\\-rbx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "59b70a7278a71ec4d58db416904552347d7abee3025047104034eeba75b92dd0", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9c0eac5f77ab2b9c8f8c3f05a64cf1b86916409dda263ad9ee9c900bbe3f33b5", + "regex": "(?i)^https?\\:\\/\\/inte809\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "adfdd5728d054bbcf203b0bcd4859e251d6c186badda55a9bb2ce8de9b05ca36", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ca690c1e8e76c9272d7e3130bc0125a374fd7b17085165ecbf007f666291c342", + "regex": "." + }, + { + "hash": "0e86ede957bd5292d6a8a86575d1d8baa1f04740395a52a045edc6c045f12e8b", + "regex": "(?i)^https?\\:\\/\\/rblxxxx099\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "320dd107c861e43701d3d081f8719b9de934a7e4e0ddd2ade4133d23bc58fbf0", + "regex": "(?i)^https?\\:\\/\\/roblooxcccc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f0257e06af12a4a97fa2507ad1101ebf4b9fe11f2449d3de1455486e90672dc2", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv2\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "150266dd0f64873924644371dd12e7bfffa3daa110f0441b2fc5c577ae56c843", + "regex": "(?i)^https?\\:\\/\\/www\\.mdbxdb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e88cee5aaf65cb21356a8f60c0e4dda287fd033308e336a73fe32477ca75d61d", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv4\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7823bc1add4078f3d917c736b6eb56c9bcfcc020c0d904230ab4fbaf0c62d223", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "f62ec5dd6b97f4d4b64f0bc80661618daccf112ed8cf657e7922eb8875e251fc", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e0d10a1d804f295b40fd0614c4f649f732de2c9fe92a748539b28546171e2049", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1039e4959b7dd8531773d961756fb6e2e6362db80b5398038d385daf65ad4bb1", + "regex": "(?i)^https?\\:\\/\\/roblooxcccc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d12bdfd73c2bf786c6569d920bb04b5534259a5eaa5ca76d77c5044f5fa32ed9", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c602a7f8d4f231e1d81500223d61a284a02d3f1788d922cd1b39863b74dbf83a", + "regex": "(?i)^https?\\:\\/\\/intee400444\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a64984fd92d930be16aecb0c9a00d6b80810d7af917ce958409963cd17478cb3", + "regex": "(?i)^https?\\:\\/\\/videohittrail\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f7cc85aff79b46b72304678d7b7e876f34ecc96872a544bd0d02824e13e34e09", + "regex": "(?i)^https?\\:\\/\\/hotvideohdxpert\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f2948a66a39241d77ec85226a6ca3a99e379c49248d96cd754cf379b700fb510", + "regex": "(?i)^https?\\:\\/\\/hotvideohd360\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "09a0c44b0eb13b4e45cc32ba715ab4663e3e22500e89b4aaff7d6186c59401d4", + "regex": "(?i)^https?\\:\\/\\/hotflickshdhub\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0957e6564a1d94628a1c4311370431072658ecddb26950058c086c023e028616", + "regex": "(?i)^https?\\:\\/\\/intee303\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f22dad2fce4ed988ceba16a053340eb14b1415009011296b303489e6d71380ca", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "94a8c2322a77395361a63e7b19307102ebfdc944aca0202d0a6bd144752e16d2", + "regex": "(?i)^https?\\:\\/\\/videohittrail\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3187f7debb1fce344bbc9f66783ccedd80cac1c371f8f78a2c796344c404d14f", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "dffe1e9013f8c99d82ebe1a146082d54fbdf19f4c44b8dc07457ac30f1a12e69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a18419b777fbc6854299246930d68ee3f791861719e11c65a420a37f7f96c555", + "regex": "." + }, + { + "hash": "f5edcfece6f08baa48dd5090ab03b70f602b988a5d2f1b2628c9bbc941f56ffa", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "33cf2c9556fb028c20c79d44c4f0c8169c20df0e0ca93d225d8ac83de9b88c61", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d92827ae7a0f9148c6101f07f66867524c16bdb82789b090d8222eda2d21e2cb", + "regex": "(?i)^https?\\:\\/\\/intee303\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "952be9cd0d3d80ba6c6cb60366ae51bd2673949ad4f4a614fe421811261214b7", + "regex": "." + }, + { + "hash": "5dd0c2e68e09db7b342a6536640f2faeb47f5e11b8c2b01dec9f5419253a2b7a", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "c1efa1fd231a0dcffc80c5505e9b1fe83ff9bb00d333ee0fdac811d31b57c6df", + "regex": "(?i)^https?\\:\\/\\/www\\.sfvwfw\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "70aebcfe4fbcf1288a6e4560110893dc0084266ab4e641102bfdfd5b19e0a1b8", + "regex": "(?i)^https?\\:\\/\\/www\\.mdbxdb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "36dc6ea821ecaf19fabb541967e6cf758f9c11af84fec64554a208f8681c7123", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv2\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "50a86cefffb501b3e1627866fecbac2436f49d17363b5d097316a2fcaac619d6", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2f440e3b4d327d203103a914bab824bcf77a85d85eb6eabcc059f3b33c9a21c9", + "regex": "(?i)^https?\\:\\/\\/inte809\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "779a42c85196521da05cfc65b9194f24a8d65bc7d28f5b2e4feb247d12240023", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv4\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b73cca6f51104146f37d1274c239296853dac498e65348aef9f3f15419569b91", + "regex": "(?i)^https?\\:\\/\\/hotflickshdhub\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e1fa5752dbab23bc52d16732de8db70c92a7c62ee77d43875ecc5bfabca8c605", + "regex": "(?i)^https?\\:\\/\\/www\\.sfvwfw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e8b94eba11489ac7fcd96eb3c7d48f3464fc074a033b8c1c38756afefc7a2009", + "regex": "(?i)^https?\\:\\/\\/intee303\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dd234e632eb23bb2662b181fb2f314e18eac9c026fae8e6febec4d1c3f1b0329", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3fd40e324d1c1906b900053376e3b969e2459e2043108e9f01f379b7511b501e", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx2\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "033b01cfe740286f2d9e05292b839f496f3884525a50f15f8b7f09a12419cdb9", + "regex": "(?i)^https?\\:\\/\\/xvideohotv3\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f3eb345e21dbb984e64f47ab53ffa577154aabd4ee6a1fdcff5f1599d81a97cd", + "regex": "(?i)^https?\\:\\/\\/xvideohotx9\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "10db730be422a3cdf6ba14f873005213913212d356ff50ab55af7a144bc8e7a6", + "regex": "(?i)^https?\\:\\/\\/intee303\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b14d4b9573564f4f4ddfee6bc43a14bab91b0903c42267d9719c61b3a8881655", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a6f996d8d41d4863d02c6ab910b9a618f3e249290d93515a3c8e0732f118fbb0", + "regex": "(?i)^https?\\:\\/\\/www\\.mdbxdb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e42dbd24b3e80f019784e9a3ccd9b7df20df2b92424973a7077752d9565e03cf", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8f519ab9aaa7ab0cb6f518f1e94bb56265d51b07884042c35f0f041db709360f", + "regex": "(?i)^https?\\:\\/\\/brawlstargemsfree\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "0a225678119a389d2fbb0151edfa58dcfb370543d918fdbf02b0c9e140430681", + "regex": "." + }, + { + "hash": "5df59e93903ddd204f728ed73761975e44bf8fd1f0cb54aef603a3fe8b8bdf61", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "964200ef695ff51c06dff5ffb9490969dbaa2c390ded1ea341798e2eb7c6d521", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv5\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4197c013e958628da0eb9bfa5407e336cdc1d16ecb53ef12e3b6cc8c5116cb22", + "regex": "(?i)^https?\\:\\/\\/intee9001\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4d80a7dbec7b0e08052c9f6c92e232c4ff26744df0fd542f3bec95a1a0a6f03a", + "regex": "(?i)^https?\\:\\/\\/intee9001\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "baf5f3eee42cb9fe7ba3e535d1c372d901e5872cb480f1e8f8bf3df82a8bc121", + "regex": "(?i)^https?\\:\\/\\/hdger\\.puydfedbsaefde\\.top(?:\\:(?:80|443))?[\\/\\\\]+usu(?:\\?|$)" + }, + { + "hash": "374b515cfd3dbee97e251e50f219b4c638baa2e312b69739cfabfc41b777a2b4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c382467fc82cae8c8e1cb4dc8199c21f179e2e3ea562fc8f3c98a7eb8921ab05", + "regex": "(?i)^https?\\:\\/\\/vidxtodaytvv1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5461268b5b364be0a620e79d2dbd26669df5525aabed590583d04db0cb8e15da", + "regex": "(?i)^https?\\:\\/\\/videohittrail\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1a703846427d0180676fb62b88326beaf79aba6a224877c018700f97b826ea8c", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv4\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4c3a10dfe349aac12c37433ddcdfb5cd759dfc9e94f3547bf501abcb4ec5cb14", + "regex": "(?i)^https?\\:\\/\\/inte809\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "412d35c2d9da9125d949b04bb1487bf73f44f0c458552ae853af6fc21e65e960", + "regex": "(?i)^https?\\:\\/\\/videohittrail\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d2ed930ab7f643b1fc1ba4d1832427f53b55c4dad3e5b6a63633f05645dd572f", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "cbc0e46ecf9e7febb2efb78132ccbf5bb581a35e2e66c01d11330a8c1c50d2fa", + "regex": "." + }, + { + "hash": "3ed55c2df6193515d19ae273e2931c8b28b72a79d84230bc4038d20da4f7c442", + "regex": "(?i)^https?\\:\\/\\/mahinghservervalidationserverauthinticationrequired04\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f512bf714871d3c723bf7e36723e5b347363402fae94362cd0dd7df4fd2e7266", + "regex": "(?i)^https?\\:\\/\\/roblooxcccc\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a70a9a2a2b282a68f6c302baf7e64ecd7cd736b3b4d262d801251d98ab622ef1", + "regex": "(?i)^https?\\:\\/\\/xvideohotx9\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "09a421280b257e45d5e6548d61f67ab579eb8e5cf2c2aa06f7a839e4b9f2d22a", + "regex": "(?i)^https?\\:\\/\\/www\\.sfvwfw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "909e79627b996608a59e8594bcfc93c38d97f1f99609d8c73306c39069cfcfde", + "regex": "(?i)^https?\\:\\/\\/home\\-105357\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "332ffce3b2fd96daf29bf763fa3d5db90964746707e4e93be49436b6854394e8", + "regex": "." + }, + { + "hash": "aa3a0e459cfd49bc8ed458f904a781fd1f6fa78a186663cbd17feeae4f691b3d", + "regex": "." + }, + { + "hash": "a4cbb0f500b7f30ccc933bccba394baa4ecf746b2883d646cc6b2cee0a0f0e9f", + "regex": "(?i)^https?\\:\\/\\/xvideohotx4\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d5a2009d405efeb71018ee82e879f43ccd693998875210c1d91f19f212200fb0", + "regex": "(?i)^https?\\:\\/\\/www\\.sfvwfw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4860168a02664e017943a39f884ec43cc1c58dcc74c8f8e07188eeed8236714c", + "regex": "(?i)^https?\\:\\/\\/comosefarhsnojogocolegiodoroblox2\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "17cccf8255d914fa23e44982b073f62a2d35ed560c1a9ea09b9d3957ae4cd20d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.gboyhook\\.com\\%E2\\%88\\%95hqfcjdau\\%E2\\%88\\%95eptbb\\%E2\\%88\\%95ienzuht\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=nhlpuxr\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "63ad9e3762d9df97426bbcdfb0bce18fa3fd2a840cd1b1ddd4341ae45e5a7813", + "regex": "." + }, + { + "hash": "8af8f7b557b1764f8a9f588586d35129f6fe33cff3bbf5a0f5b46db7c750ceea", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "119b2398302caeff1ccf6e96c7498c519d418b176ea00bf118806ff011c76d4a", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e83c908b8afb4db52429dd10905fbac3e39425631aacf8582691485c042d698f", + "regex": "(?i)^https?\\:\\/\\/teem\\-four\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7df58498738f855828787c24a85b7247cacd95e1f9e948fb4c67ec6233c3043a", + "regex": "(?i)^https?\\:\\/\\/blueberry\\-vanilla01\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ffefa4cef393da4730b46f0d7dca6bda46e829a833a7eb32d23ebf020eb3c8bb", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx3\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "048c394b34bbf2674bc431c004954420e206cb8d5cdb306c0b495a8e27ffc903", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx3\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ec8d380eb4c28dc3e9f9a23fe976ac8bb8647d02ebf44b4adad5e66ebda98e11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "1a7d3ffa6eaed51fcc165245d2b2d02221e18008dcec222a0a699e86bd04ee2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f259e68ade61b596becc30c7786c44633a0da490c27043045d79ac33f4567251", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "27c6a2224b8563f6c7f8679f82d06759803438fd5b05503536d06779af36a2a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e38cb6edf5f108c5b5c34576c240b974f1a503894555777784054df740e8d9e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+doc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4ffb302867eea4f075d8f871f739e40e67ab32061dec8643518201041892d3b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+abo\\.htm(?:\\?|$)" + }, + { + "hash": "27261e6eebf2c2d4dc8f4f31a29e0e102cdd0a392e3b838fb19d8d5d703dfceb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "32dfcbe905d3818f9e59a04636e065ba88907c4add8c3b82cdb018ddd073f8db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "37f8e2345474fae5c6ae2f96db8664241ebe5172bab866be4d1c2da3c916dd60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "226319d953b96fc6f69e77334daf804c96ff51e9c63be30a5263b5cb332e5258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php(?:\\?|$)" + }, + { + "hash": "00368edb4341b68143e3232ee00d3487a63e994195b50da6853538f09ab1e2a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ff66b4c59298a7948ef9d9766ddb778c76cbd56445f3c611aa7b4b9724af6497", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "3ee720037e0006f12fc432641dfada732870070e902cf09c06474a55b1f044fa", + "regex": "(?i)^https?\\:\\/\\/bafybeiamcuftrpbn3uzrfdcnp2p3neqnvb6n7qhjyeipxecpukqpszg6oi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "29029af9a252f714215ef394bf5fd6e5c5a79e48c9322824929b65afa7b9a57a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4ef18bd0a0f8a120721c1c6fe336a36194005833c378a20e2bfa3f32d1e2fc17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=aRJmcgAhBCQF\\&clmID\\=LCCaAYSrPRgEVgBklsnISZWGhifmNLKgMLISTPCPlgrq$" + }, + { + "hash": "1a96108fa084dc563f32b0377dc29b85bdf562e359a169fe4ca46decfb2cf5e3", + "regex": "(?i)^https?\\:\\/\\/bafybeiesd3i5axwzyqo2nmtoc2fo7ip3ezdm3py6p3z2qq4vglcnojg3ue\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4cd59918987b3313caa242b4de9d6766a860d6d1bcfcdbb38df0370205eb7b56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "bc9ec7c6f33bde7a7a6e79050e12fa239648d0d661b3331f7f52b7b880a7e16d", + "regex": "(?i)^https?\\:\\/\\/bafkreifvlfxrqbdynnqqpgc7ju46rxmcxpiyh5asaerbanireju3jsqxeq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a419735e9043cde434d6f3050d1e110e8d30e520d135db4d71fa16c6ced9b033", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=AFtGYXzXYAw\\&clmID\\=eXGTbiycucatPxynOdCxHkIkFtkJnhykoCoHC$" + }, + { + "hash": "30867e49e8feb106e616a4188f56a05fce72ff6326af846659ab817f02835518", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?filename\\=nnxepin\\.htiapuhmbeywdbqoanioogyh$" + }, + { + "hash": "9e40b515c1bfd7abc5bf6e583f37b04154901b5977678cdd848b6d524e53bbc0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tinoupd\\.html(?:\\?|$)" + }, + { + "hash": "309144373129b1c29ee7a5bbfc8b63284e427ac762fa0b8a0c655a311333c2c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ab886aac654fa9a927efc78700e57bafcde9035d813ebe05fa34a6aa6b6cf59b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "89e8d246bb98104813a9af16febd5bc36f1c0309918b29b949ffbdf989ae7c14", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cb0zqa(?:\\?|$)" + }, + { + "hash": "f82523f2fb9979acc011934d1d1e98214d531f7965523c23150817252e02dc47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "21e202d937158d50ccb3d74278a8e86f81f24cb52cbd9b78e40ebcd455857f48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d0896ee38506f3481fef2b2ff56000b87178c7a5db3737348f37e4db8c5e8035", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mk[\\/\\\\]+cl[\\/\\\\]+f[\\/\\\\]+sh[\\/\\\\]+OycZvHuFo1eQsnbesKOn70gq[\\/\\\\]+aiCGZqmIQHjB(?:\\?|$)" + }, + { + "hash": "a9c7e4a6fdd09587e89f3273751944bc231fdd929d20d88af3f77ad5eb3e7e9c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https$" + }, + { + "hash": "8331c2a379fdaa8faaa5fa0034cc970e85d58275053a79601d4444e907e8eeb1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "24e9c35b9411d4ef1542bf96c1795de6b998b07b07ea53795b11bea914691867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "02a4a8826285223b92cb155e330623d5392c6be5a8af87b76d84372788f64bb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "5a40958b5226f80cbeed5f64fe63e09e31bfe96f392cf1b7423c139cfeb44724", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5123a7c0c17c71a28900c4feeb9e12e049ece861b0ef5798ce2b2aba3e40b967", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e4cb0232ae5229206bcc6311ed51d2cb0fdf38c0a0fd8198b741b8ade786fd02", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2082d832ccb3825a0183e56a78c32dbde52a2b958d701bfdbaf5e9aec92c53da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "89a968c6220cb9300c3dbf7424bba5f4781bdcf627c221b013d8a16f80272f82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+3\\.html(?:\\?|$)" + }, + { + "hash": "546495daddc8eec109af5ab98e1f3b7fa82a6416d596bf0ee8c049f4dca7a3ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=cRPLqcZBTSQOFPh\\&clmID\\=RGAHPfNevgLSstXNKwXSwrsvztGPTyolEdetSb$" + }, + { + "hash": "b1b21a71d2b84a8132048a534f6cd3fe419dfbb1a9b44caa8c3761f328d72a50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=RzmxwAFpmLivVsi\\&clmID\\=KQqBOKJpfXcpBzMzcjajixsPuaXhNmll$" + }, + { + "hash": "3e1ec4154ea6a614417fadf7718f3b3024b99795555570fbd8efcb7b861bdc62", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ddoonnnnvch\\.html(?:\\?|$)" + }, + { + "hash": "47c0b545f73abdcde9ccb40681d20ffb7fd5bb69e683d9ac15facf9ea66af688", + "regex": "(?i)^https?\\:\\/\\/creditos\\-prestamos\\.fra1\\.zeabur\\.app(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0baae896281536a0223cb729bf2c85ecac9c45a9b46caac6bd11dc7c3e6ea855", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "625d340db4b2547e4f4a072a4a0b8268e3eb51846a9b6356a68ea9d19868f5b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "09456fe4f6a8f1ff532ea4193687500fbddaedd9a75b4224bcb4c9669ea1a3a1", + "regex": "(?i)^https?\\:\\/\\/bafybeifdyqqphwv532kwopv4sacf7efjfgrzj3vhevrtne6ohju7iy5ys4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b2f6e073bb1053bc0a6b54ba3569c081ca78a53fabe143b6155355606aa5e234", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?filename\\=bluefishiiefullonline13\\.html[\\/\\\\]+$" + }, + { + "hash": "e533a8a1151c912c99491c43d80ebaafa44615519f370c7805a220f11dd7b898", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "90afaa609fd17d7c022d35001dcd75320d7dfe89fb258c1d68a48d65eb0524ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "17983d8ef0fe672ea3de8e16e3b8951d96898fec4ca21ddf0a678c4c4ea52c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+deutch(?:\\?|$)" + }, + { + "hash": "7a8e9b88ce236851a66dd1f103935e5959b24ba37ceaa497921d1074d6c37d3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "8d853cb078fe57a2486a6201abc3c521fd32e828f8b51411637adede110f68dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6c0e29764a32706bdf441aec0aab7f23e4e62b796f36277949b85cb8809eaba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "59436c4f78be28cae8d038088e80366fa43f7c5571861f931518253a7ed8fcb8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7bd1ac11ab34b9425b72ebbd6ab4bf8d586b6bf6a2e31dd8af7ea44a39bf6c6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "bc07591260e544cee086d78932732e57889498ba5d5ac41c63e91124479816b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2424059a1f2c33f49f5c7f08db42f38392233fbf25dab1ffd1775d5cbfccddf4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "303318b3367d8cd4062b89b35f8ad453dbd3abefeaf058fcab26253fca7a3c1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e2e666d4334a8c58d3acf96519b7697cc2eea89bebf8c2a337529bcd42449d11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "1a7a76ba6cdfdd516e7aecb04b74f574ead068cf0dd90664bafa628277482525", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "99356d41e50fb09b87a0635230b256f45a4db1cd7bd2ffe5974cc8b1df184eea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bf1c01985429f7c37c2551f9bece764ccdd09db9a96a8b6176a5c46bc833bc43", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e28608d00995897db48ddcbf6f981cce968983f010a4631b616d26b8dc7d4f17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "3311a140e46e51c09ef6ada55068096bef173f494e975e69f7fa4e7f36515b15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bnp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5464451295247fb2922f904f8f40ef1c075684189712c7c46ac1965b2889d5de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=AUqhuvdZkbDtG\\&clmID\\=YlKOvdPZaLzPuoOQfXKtOwOIMjQJbxXUYoBAOdda$" + }, + { + "hash": "af7d1b21802601decbbffb322c70e45e0bd6138607717eb6dc53ef40a6cf14a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "44bd8331c12260b6162f1e2d101d704ccce234351ec216d962ac40b1463f9ade", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "8add362694fdc49364de6fc0687f689472c3a9173341d151d63761f85246255f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "6256c7ebd4729e936b2579f07ff8fa201a9651a870039b7c1b11c25a1024ab89", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "29e59d8b3a95f6f1de7efe9ede721ed59d37f4f907b2133d3268a25d77e1eb1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4a38c891149ebee77248647ec40f53279adfc42994c780d851a35b3ed905c201", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d98d240faaf3287d3f3048ea8becec9637b7c43ac7596ddaa5a1d608f021ac9a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ee2c29500b3e96b29b179686d6769aaed6366509ba99e389b48b5ec4009c999f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "797f1f0ff40a908da8658f729c8c7842031132df5bcbaaefcbf4b10ea8dc4765", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "44c646be8b5fcf01854d40ca9a8096819bf3f1717a75cd68406031a4e9c2943f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "4a99fa270e68a761fa34c704da3f4a2d5e65755342e64ced0f261c8b2b5acd82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "463bd2cc70fdf67812f5c440fbb1577feb00dc456dd083af77a366bdaac493d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "c2c302b6ca135d9263120e2474ea46af0bcb415615f8ca324b059ba46a5138b1", + "regex": "." + }, + { + "hash": "50654a1c33a931d816e5de27cc17369ce01a06668e29d14e9fd7effa1a1c86ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "86c003b6f5c83bd94bc5184d062ac888564677c9bf33d905a43109876718c88b", + "regex": "." + }, + { + "hash": "ad53fc10e21796c14d0c3f378eb78ea99f51e415215ad9989df29195d625beec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=hrQhsmCdSZsnp\\&clmID\\=RohUyBFqxqqmujoFlROLHetDKWvQOCPEhbMSnOkhEN$" + }, + { + "hash": "bece83625e1dd6221bc77f509df1f08a9138d4519ed429b423964f7959cace4f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6d16b14024b18b7dbb755776806751c4c8e4f0e8d650a127b4212ad107fb8595", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3f0846da06375e79e7fb77dcb7dd486c0948fab4154ed72682a7921bf63a7da9", + "regex": "(?i)^https?\\:\\/\\/lonwaggishs\\-canions\\-webmailog\\-updateweb\\-updatregg\\-jrgfdjhsmdn\\.freewebhostmost\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5ad0a62d77a72cb432f73e2bb9adf4275abb138d112255bbc3f203fedec51e35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sign\\-in(?:\\?|$)" + }, + { + "hash": "641b07a25d1bc17d867072d8a10c7c6b230762f07a202b6ad7797e83554c28bc", + "regex": "(?i)^https?\\:\\/\\/7610f989\\-3fe4\\-409f\\-9f43\\-102f6aaff720\\-00\\-2jjeaoqia9fd0\\.riker\\.replit\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4fb20fe4be15930d17135ffb0366422b61055fe411b3454453cbf1065b0e2ea5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "017999ca4b2a2447a30fdfe628bfdf99f40e8ad4844ae04872363213f4418caf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+BaAwk8(?:\\?|$)" + }, + { + "hash": "325c1364ae4f6b5ba90b050050aac3b9a2084bbeb8a0400ac32e8d27cbc0c036", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "47863173b559e6f1324eb420bac94528730bfbb491c0401b6f1c447eb879f9e2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ca58ce1c0d53437cfcd7d05d42dccf8e51360f8fabab2b6797debcc236f21c52", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "70ec42e7eb67c4eba5c32bd88a4449af3830203117116ed299663ccc4dcd4be2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+washington2\\.html(?:\\?|$)" + }, + { + "hash": "62429d8a081eacf7318a4c644d787ae734d7d65f4e95c7e4ee3732cda7ebceb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+e[\\/\\\\]+pqVoypYy(?:\\?|$)" + }, + { + "hash": "d877a1fb5c33d2fd5a7700c8811fd308d805a7d88f764b8420a33f5bf6a6f494", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "108c1cb2d5de6bb30ed81dc4fbb6011cbf3366fea28453562d8d3b80f33f8bec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "15e20b58fa587e426e332db4b941ef1c7f41a54eaae8bd8ebaa572bf49b5131f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "72060c15b2761e031185c231ddad1ef5ee08c9dc3defd280903a9c609920e655", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "eba99f284436637165946095a65f31ab253a5837e51f3c4bcbdcea6a535bf9cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4beb529743f33be241e167f3e4aeac1622424dd4ae1c864d1dc5e8078debc306", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=ddqdmnWPfJSVodV\\&clmID\\=uOdjWigDKzEbJldCiKWDGaOXKYuRulpBDYf$" + }, + { + "hash": "e5b79046c583ca95b8151ec01bf92fa0a8da5eba63251c1aa8a16b1a015d9ca2", + "regex": "(?i)^https?\\:\\/\\/bafkreidpgjnkcv3izchdmngfdrgqfauxptfv7r4ygv6scx2l5n3hrc6wb4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84a384e69f126b7cd9bf8431f59f092eba7dd8430d1890764226ae05bc2600d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bd8852507b69e90a0b8e3665b60bc03fdfbc9f3b79316a9a318cc75adc4ad612", + "regex": "(?i)^https?\\:\\/\\/bafkreicytrbhjazdlvffxetg2bsxqsjg5d5oxwokztqbigbtc5dzeqs36y\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d16c8cfbf91f83b358c3f071f14b1211a5855d016edaf2c36c36aaecf4d24266", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fil\\.\\.\\.$" + }, + { + "hash": "a1a1de092e2f2f6eef93403546efc1808d2fd144e630199c1cba4881142db0f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3DWrLN_C63C\\-2Bu29RLyKG3Xahr2s6XqH6JEQ0tYgfIy0KyjmAat\\-2BjMjIKRsprJ5LAVUVuVmIeDEuaDMz3Y\\-2FinR\\-2FYLM7OrJnn7RPBsKN3OTipCoVtGohDhGAZfZ8xbV8\\-2FfI7x9Pm0R6\\-2FZZCEVD2A6V484WFFQeuDFRQwG1rb8LM0YnTnbVHCyT1abKBGlJe0XfRUwgSnILCqg9azWrak4r6L9LPU7vppJXSockFxJYo9BaXRd1AoSnfOkvb\\-2B\\-2FZsQq\\-2FiYIgnUwy\\-2BY5TIVpJeb2NWFzr5Sk8JkJfFLy3x0xeFGXhq\\-2FeZCic7qxvdtNOUlrEsrweJ5FVZ7QvL0lJ\\-2FKh3Zs6z\\-2FIv2ew\\-3D\\-3D" + }, + { + "hash": "8fb78452e362da8bf07c68e28f94d43376c3b2fefedb100b145db2add1da4320", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "28e77340099421373e0b73902b5527bb349075c4fbfd316d70b4737c6b9e372e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "6b86a0b2c5696be7a2f21c38eb38374061e097b5a4b02a70e02d52cd20c76c85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "608f66e6af4bc4d9871d9147dfa24600e1fe8301f9bc27ded793960560506ec7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence$" + }, + { + "hash": "d46a6bc0345f03be4a5f419f6d9c8d57af4bedc59bb72ccc7c15de4c5611584f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "23cea26804acb55928582adcf442575e51ef52bb3fb63a3409872e4d3d7ce6c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7fcbc709526a129fc146b23fb9eebcba2e76eb3533c9c715edc947fa6f55a9ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=PotvTGfEKFbH\\&clmID\\=fuDnavwrommTrXSkcFsGJUcZveFpbKVaLArGCPjrI$" + }, + { + "hash": "961d2041dd8298ddd4dfdacbf63937e0bf7da819d1e79045fa3a5622ba3ed84d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "0f8a54a329fcc901a79fcfae4efab02b286be9a697875620f9df5aafbdfbd50c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5bf9a3525ae79744a6ee9c1784c7c99973f86a10a5e2fc7ae3a356eaea2f4105", + "regex": "(?i)^https?\\:\\/\\/xiatvwlv\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4514eeb79b061276995d2ada08e3a148483405ddccc703e9a82b1491140bc2a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=QttToEHZTZBq\\&clmID\\=LzKXQGBhzpsmBEtehDHFlJeDxiWPGcHumMtlo$" + }, + { + "hash": "a6a351f5cd1d3e000754bae17a2e117425cd357efa2c744b102595cbe6653114", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "76d8e84ea782d20dbb1828ae25b5058e906401fb7b69a16a2df4031895f40079", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4d84a1ff1430a5a67741a9cfc36f1b962a76f812566bfac761adeafdd825bdd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+PSA\\.0rZYaq\\.syy\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a55d800867a2ac519c19fdde57444b9fb25b8b5d63410203ebd9f7672b1e9d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-8\\&secId\\=820133\\&memberID\\=tbkDlcCgwFwqQaHVhLFXanOfwLsladbbPpA$" + }, + { + "hash": "9e8607be93d3fb3b244b8208a6afdbe0134b5546243a05f58f7658cdd885fc87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d5f758ae3bd2c45509cea4b02840f5df949b5a676c5fde613dbadf24fe519737", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\.htm(?:\\?|$)" + }, + { + "hash": "b07f5c4ed706f58d0b9ab0377fb0ec9d3dfe2ed6cdfe77f3a72d70159ebe3f67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "608f66e6af4bc4d9871d9147dfa24600e1fe8301f9bc27ded793960560506ec7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f72027746875cb2e052e2234854a8596f37f8f5271d544e7eb3be9798217e424", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "546495daddc8eec109af5ab98e1f3b7fa82a6416d596bf0ee8c049f4dca7a3ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=IOtqYHuePcQqYw\\&clmID\\=OFQAQQYJtWYyqXFrXjIzMgwNpBkHpiqJIzAUdLnUzyJ$" + }, + { + "hash": "5bd9169f2c7d9c7e14e6371295bb7710db58c2880d25d199d4525d625fc7a537", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "0de6351b79d06140e96631ef1433cca2508790bb942816388c60d2ec07f81ba9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fbe78e4cce63452729365388b8bf1fc5813572ebac436ef500ef740c6add9c3f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "c2c2242ee879cb4c77f9d0bc104836ec3053bd5d43e7a81f9fdb412e1b1d4488", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ab7617a8091c0c293e1b32dae440e93f61e7edadda26ee2f70edc7e70d818ef5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "5854535a61ee43893832345069af138f97524317b77f6cadffd634911861e138", + "regex": "(?i)^https?\\:\\/\\/7498f8e3\\-b213\\-4068\\-a926\\-09504e3eca09\\-00\\-1htezcoel0yxh\\.riker\\.replit\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ce4893495faeb46c588a84057e0520920b88f0e6d3155f8db73e75f992adaaea", + "regex": "." + }, + { + "hash": "75778e062378f358d2a61bcaf876fc19d24ac2e3a11a3550e430767d9c525308", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a49b5041aa3ec0dc58f32aefdea6679408ab655865ae441bf4e22fb37fbba850", + "regex": "(?i)^https?\\:\\/\\/bafybeidvbpapcfdp6lgwj6h3prl4umx5blgi55es4tusxc2aybnqvpgqeq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9542126505ec6c4eb944671b600115538eea7e5cc7cc4f5a6c5e9347c05b486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "612c76a3dace317865433de815b87c173eac90f94b9e47a2d68f888935143051", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+webmail\\.cpanel\\.html(?:\\?|$)" + }, + { + "hash": "ce1a0cc892dfc5546e4166a9022ae07bba27ddefb51fc001ee361d61524e224b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=VuUsPQomSDj\\&clmID\\=VqDojRdrrcpAzmgrQAOTDViSsiJzxmcFxkd$" + }, + { + "hash": "69c1a21ebaf28065042a79d47ab8e325fecfe9881a1a618e611ffae74777a8b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "8197534d4dfbfb02aa696df2ab3b4fee99dd31e5ecceee11d3ddbe75b90fddf3", + "regex": "(?i)^https?\\:\\/\\/bafkreidoxofa76diezkbqefm6g3yzlr457ds7ce6ms5rzf7mgowwddritm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d4c9cf9a1032cd615bce4d942a17dcf5a5b5952451b5deaadefc5a8978e64374", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "eeeaf8dcf237c54211b4064e89132f1096247b64d766b8059c929b6370b21fae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3d075dbe416190cbdd2d0ed8b953e260e21e7dbfa59b9a6c4e20909ef890cc1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a9ad07454d19eabf739ae66960dc54cbbab15ffc5295b7f6f8687f99ac272c3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f401f877de6d0141c22698512723355a49a172ef6b6de20813b515911371a06a", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e78ddaa9f05f751847a2204a66867e9807124001a2f6c5e4d44209c1fd719ad4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "13d31fce2bd9674764a32519c0e56bf24d766f38a39b63a043bed23c499c6a15", + "regex": "(?i)^https?\\:\\/\\/bafybeic5fiwx3ff2al4sd2xwvblptkmzyofdgonqg2pics2ryvq3vo2zei\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3DFvG4_4Y0wWVNv71hDZu\\-2Bw32k2y\\-2B0oifCUmRODynj\\-2BWLZI4DtAujI8yNUojmGbh5p\\-2FR\\-2BfKq0UHrif3\\-2BZ6IeXsRO2M8TRn9UCOLDhvKAwgHff\\-2Fqby\\-2BAiti2E240yK\\-2FxzB2MwqzIMqyh1sFYNCELG2DdGnATtO3htyBIHYv\\-2Fb6aPgAqQeRklYtNv1k0n6c8n80gGOAm8xR792mtqBcrlIVWsqMq26t6SIlW61pCIdTpCUP5UMINZfwEQuNsmM9y3ti5DKTVdfqf6dvGrKHiZEHnvIN45luK72Ap6fYUyPY10IW6WbnRMiAIUJRWYbavp81LECTvt6mOj8uyuau8QV24pTKvrzA\\-3D\\-3D" + }, + { + "hash": "e72b8f2388fcb21c8a5e249120fe5696a39075573bffb4e786ab36a7a887ca9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "eee73156fdc8c8ce1132dfc71d0ccce6c547c13fd85fe00860edaf852758eeb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-6\\&secId\\=257297\\&memberID\\=klwPUcveQuwkllrjdjMTJvrSlxXiOLfLiSM$" + }, + { + "hash": "f91cb4f83a52f66c4873962264ba8beaab856c8903e028a18e0d1fb113aa9486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "cbc5b98581e6d2acdb877c35ad4224d0b57ebe304871f5f5ad1b6e6c62c4bd5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "1b0ce897e0303d4ebd5bb2e1a3e0c9d8de9d4017a248ea5393d5537e06d1d2a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "f7f9878963674412cc1c64ba4f3db257b97030ae5c0768d95c90464a23119bab", + "regex": "." + }, + { + "hash": "516b037691e554e3498e55337c7d732d5def6ea5b0a4873683117f888fcfd3d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bd1624d87f7871ff32c268b5af6d91a5b71656ad14aa325d68680b66512dc9a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7683ae0bf2b5954049ca6c092b50dcda95d91e43159b24cb3953ef51701e9a47", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2b03704c9dc73161bf362be33835d7c87e0915b3f7be38e9f1f72f9fd99cdb53", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mcogecon\\.html(?:\\?|$)" + }, + { + "hash": "ea657bbaf0d58f604c131a239546f61991099495c6d2b327d7c012b643330e98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "26474950e4cd4c1ca8825f2d2fd4a3238806d4f3b578b14a62976dfcc7c56ea7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "52f5faa1d9c6cf9dd5d45006fff92b3c6373f4a5cd2a761b6721a74cc84dcfc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "2cba5fbc8ffcbfc4e2f98ec60060289fe55b1bf246745c4dcd38fec98f379f13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=UJGjUYCOxXNbArX\\&clmID\\=AxWKnHeKIGUwSkTBZcHghHXsKBeQZFYRNqrfhS$" + }, + { + "hash": "e533fac73a3b9bfbcccfd9aa1ae9315e9e13111ed8cd256dd45074a53ada08bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "d050a68dbef017cd2e06bf99a1d8437f464b2f74f7f9f826448b4744ac2ef8b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "03083cb018c82e8e1e9701d1a9167c74172a5c44d8ce6ac1068af6b87484e5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=OPNxRAqAYYE\\&clmID\\=IApIhpuJBlEQmNmBrqIZwtlrGKpqKbtUNWKaLvr$" + }, + { + "hash": "e10e7569039b8e73cb1670249a99a4a3a061ff1d8d8801803e8fa272b1aa7c7d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "729b5805ee5f0a5342dedb9dd2379b4c01d3ce168aa7d3e5a631d3e4ffef9153", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "95adfbd6965f239b7bf58f24d75c9adad6ed614df5c1c0b470a6a200b8fff87b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "b1138b100173c41cb0e220ae8301b826d6ac6384879e973fbf786f26615bbfb4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "5bac73016c7e9f24f956c9c4fd0e0c9ed8823d08604e381e3efaf226f48402f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lndexxx\\.html(?:\\?|$)" + }, + { + "hash": "bae3dbcb8a1b80c3d5e9984e66d1716a40faabd16c33eebe9680ccc95d102644", + "regex": "(?i)^https?\\:\\/\\/bafybeibpstagwwggjocyqby2oqhsynjjyhx4ptakmimsf7hpl32wwbae5q\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f09116830fd4f8eedadf83f5d1cae703042fe99e44f1e7acf1a66ca6fc2e2027", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=SvPnQEyXZfoR\\&clmID\\=tEdJsELedKzobwfeQRUWyxdVyeTOVtIpNvZIyu$" + }, + { + "hash": "9a47c1bce912cc6ffecbf4ca718147999fc098469c71ebcde7d2e03cfe1726ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d853c9ba84a2988504faac21cbe8d25c880f7981887d46944a0af73ea76b9daf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1e66599c859deaeafe19054354dbe0c7dde0996089836c2349d3406a6ea8830d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "8cbb861cacc6fa30f093c8a5ba49e116733ac00e76c83e6a1323822fe9ffcd52", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "203522185aa54cb9336347aed850d6ad20d94976201d4988e8691eec29baa9b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "68f555081a210a5d8dbf048de5f1259a665832bd4baaa0dcabdcead5b10b340e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=FaIXPskOlQBDrTmf\\&clmID\\=wAnChGVkAhJsNNvkTPimDmUvrnhWbOJUHLYHmJwa$" + }, + { + "hash": "408b6648ccd535fb6d90ff3aa325d04560c75749dfbdf25ef3cafceb7161e3a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "31986cdc5b080963a3110fdf0b410d08f51526a21eef9783574f1f7038861ad7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "bf1beef4943075a59b0e6489a3493a6a53d81c15f46e47c69101e6fae11f0223", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "62e55295a26c1819e1313bde3c7c4a5150e2ba1fdf09cc996e3d3efbce973430", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "642961f861b829bf991ef4d14368a2dc03038637ab43d29c330cc1def05573c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "16d298f8b10f196a69b6304cb961f475a3537834fd3c2ff01c525c3c6123cd48", + "regex": "." + }, + { + "hash": "59bd2cc27c7be01254c2fec7c4a4f4db192688ae8aaef7218b50e753e82146a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css[\\/\\\\]+ctr[\\/\\\\]+app[\\/\\\\]+assets[\\/\\\\]+js(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0be6221961e9c94f9e7e3134c7aff8e3489b30f825fb38431da840be755e5a0d", + "regex": "(?i)^https?\\:\\/\\/pub\\-d6884d25072f4fa3a5e3815358f533c8\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3d431de40754ae54ef42c278fceda01bcf2e9b52dd26d07da397c2e8a323f32e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4f25a58a901e6ea97909853b82da126ca32f077ba1ffdb6a8584f400904a250c", + "regex": "(?i)^https?\\:\\/\\/mail\\-108937\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d2edebcbbe7c637e8971c0090212d13444130f6ee088252912473372655df497", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "69c12a5c2f8b8511f03bfadcd29fefd1b3513248006c73b2d0e9542304d1d594", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+don\\.html(?:\\?|$)" + }, + { + "hash": "4d13189f9e202fede5491ea33c2f059906a42eff63c5357ca8eae4b8879ad908", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=AHTZahYTCzJtx\\&clmID\\=jlZHryzsNthAGJtWtfccXNHquGpBMqTFtOQxWvbx$" + }, + { + "hash": "03f6013f7911a363f243640dbf851d5d9de6ee92a47e706c13646b5807269a27", + "regex": "(?i)^https?\\:\\/\\/bafkreiabw7kh65oyvnimbstl776luj5puzbwxyyvya7wlpp52xo7ahjhhm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d3f699169baffbad6982425958444c50b5bb3f6e4ecba27f2c920b325ef79781", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bf4d3b2e7349cfb957ed11f6541165d8d137122f99beb3ce46e40ceec763d6a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "12d6afe939d3522fb20e78967131b611aff81298dcc3fd22c78c29f7404819ee", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "833b616967d515f91af3027e8b01d97b6524aa09dd16aa323d438d9d4cc4994c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c9cc17bca9c761fccbf5b0f82668d18ea86db8f8ebe8f5efd14e63166249c6bd", + "regex": "(?i)^https?\\:\\/\\/16eb7c18\\-3e6c\\-42e5\\-b5a6\\-277804b68e97\\-00\\-o5san3bisuom\\.riker\\.replit\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fea6086b111eb3190a9830771d043c717dd91d35ffa60959332a590ace8c63ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?filename\\=iffynewline\\.html$" + }, + { + "hash": "868328333bc875c21cdefb3922e1cd751b7016cbe9b93ebf8bd80cba90180831", + "regex": "(?i)^https?\\:\\/\\/bafybeih2ovc6ktxajdpojnppg7au463spq55fej7lz6q6w3siykcy24kx4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "edb37cfcf55a1716af3968505a59fea4ead13a202e72dc44f899f01c487fb6b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "665f3791aea2157193a57fa2f2aa7d71bc7c5ac6b1107924a1c5dd2f49c4a26a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "31a53d669a4f9accbbc9fb8d6ec0bae4481dd39a4eefa57cd88cf1cfc370896e", + "regex": "." + }, + { + "hash": "5e64bdbe2e1bd81e21ec4df772fe4d6b71d7044f77135206c489574d505e9aef", + "regex": "(?i)^https?\\:\\/\\/bafkreicllcezr4qgswae4eoh2eo4v4rpobpwv6lts3tpov7dun7rmyh4z4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "048e53336c7b19dbd965e46be6c1bdf9044df1b08506ffd3aecac0ecd3c8a05b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e7718bea0838f065daa2ef3bc54031693705f85a3cb74111c9f689a02c486ec0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "914c55c7339cbbc45aa81e0ecb3b9d97afaca565f806ad08cb20c67c1cf22694", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=cfMbsVoDnDRzHtX\\&clmID\\=ZxxRyOQxioiUiBynvbjxUsWZbPXbSXWMCLXRYRmUhspA$" + }, + { + "hash": "f09116830fd4f8eedadf83f5d1cae703042fe99e44f1e7acf1a66ca6fc2e2027", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "515d87382802991a8d356cff36c59da0515abd3d0f750a1389501c990c58f776", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Zimbra\\-dashboard\\.html(?:\\?|$)" + }, + { + "hash": "8db8ea8e851db1c166ce9c903823f2bd9a335ef6f286775a033c6425592c8772", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a6c3f21e6157fefccf00131ae179edd34fe921e0fa3aa0c8743aba32b1d4670d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "07997fd42a81a765d57c065f943838e5ead6dbea9f989c9f0a0a23564c9bd994", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=IpOwpTXgHQzHTmOQ\\&clmID\\=yJqrnSFWJkduawvoHMNbWLglSENKtpToeYScpBQQgdmNl$" + }, + { + "hash": "8e9297307e89e83f8b367d5fef0045be7fa7e82db23089ef9595903f45457cb5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "dc8b3630fc7b18303b586e1df0551650f50ffd65b313366e0340a4bccd630b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d5b1ccb34b4b4b7d4fe82de4595f31b2770e099da8a9e6e88c607aac4f90288c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e7c5aa7bc5ed38e56acc9ad54874f49574aba1807be7f5f1fbe02c9f6c7443a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+BNPparibas[\\/\\\\]+BNPparibas\\%2016\\-05\\-2024(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9d7daba7729d1e1470eecacc60c27217c9b64f035d87e4f17354ee6d634a0450", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c742c5c3782e4d802c541214e42b715d1d21c8a43330585b322b28190ac6a41c", + "regex": "(?i)^https?\\:\\/\\/bafybeigdrwlf2res2ocxiiepombvn4n7enqjnrnwwwpnx5z6l4mmlsygoq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c43d68ec1411f956886a78c1d354c4eec9b77b001f4f556c4a7302b177d943a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "dfefd10f9184b3e7e9040a9475912cf7225608cb58a65e0ac2b29d70e97384bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "1b21858c631d23bc45f8d16166d0464b1d605e77841b77aad26d2141f83a016a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=THbzRxUnxrhGvo\\&clmID\\=JxfwcoyFTpDDYdsvlEGUdRwtvKzwsqqGUUj$" + }, + { + "hash": "03083cb018c82e8e1e9701d1a9167c74172a5c44d8ce6ac1068af6b87484e5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=VcfCewUYfFPJx\\&clmID\\=nkMtVqZPxmODoiDbgpiMkKkuTSXVlNGz$" + }, + { + "hash": "e3ec56c5d3e09624db0bdeb6d07c7648a715521ec1ff36c31952d00341cbe8b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "69806947151e03f1384702c936fbee307c16ba67fcd83b4b8c13a4ec3535e976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3D50ea_0iX4cSPnOtvHeStGBCx7QPUp0KdeV7ZjVmque0\\-2Bfvr9OtXgZ0KwmdIXDgct\\-2FHPR57VD3MO4\\-2B32NNVCRD71gEB3YvEOrjOuWSu6c4\\-2BqvNafLw9diqCbd3YRcF9GF7gtbosx0eHZsVi8L\\-2FlGZZiXpZQePOgznlCW52U5a7IUzXcGHrY0Da3Aytryp2x4LwCS6VHtaflqEYG9Q8LKMsi1VuNtYH17hokH0pMr1wQsdClno9KG3F5U3SKd7iZXDiiUOBDBZy3jRxexTlCUONcIxlAhdwoBqEf7N7PYnmtAOJbUQ9s1JHhOKuTSXizfT\\-2BNnIm4CV\\-2FLlSlJHzRTp04fqQFDA\\-3D\\-3D" + }, + { + "hash": "b32c85552bea7cf986a545bb54fd185d3a3d2f1efeae16f5a68f015f68601855", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+webief4OLVfRFm\\.html(?:\\?|$)" + }, + { + "hash": "dc9c7957210044c28375661219dc2189e453ba92f21011e4d6a5d7026960128e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f1bb6c02c0a445f85e946c7641dc653cef1f162ab2d461a44c1646aa12a404c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "7fcbc709526a129fc146b23fb9eebcba2e76eb3533c9c715edc947fa6f55a9ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=grfNHLLdFZvS\\&clmID\\=sWyKdjKbWXWQVhCXuLNJlSvLYSPHqavgK$" + }, + { + "hash": "5ca718b3a7dae4fdb02d51a3158eb2bd7d4e0c4f4daef494783d5d15ebad91a6", + "regex": "." + }, + { + "hash": "52c03e67e273472f9578a2c8c7c7ce806eeca66d74387b04d089564e783ebcba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9f01a1f2e0c4bd096774a7c1f2bd00b47e851412f5c115cbd761c5446b455ef4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ccdb9e5c51720aed1d57ee3d0540544e9138a646d1ca0b5ca05fa2f44144b0fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9c5d2d88f7266d54abc3b6b57ba318388cd183395497082efb071119faf1d903", + "regex": "(?i)^https?\\:\\/\\/bafybeihbkx4g7qmgi56qguec62syesdjpytcshbxb5mkha7vnvpprmabvi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3b90d402b24068b5e6f0ebc2a0b2f8ef64fe5aa52d6ecd8aa8da658df882a68d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a3a82eb3e2fe90f6a92cdbd68819ab4f07910e7080c6731e35ffc2a367d4fc2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ipfs[\\/\\\\]+Qmau9r3w19C53kFgsk6BUDe67wzwQjUt8dEzjrF77dQmyA[\\/\\\\]+fhtdv\\-hujjnh\\-secure\\.html(?:\\?|$)" + }, + { + "hash": "19a00907d7739453ad83fbbcf0d829a65ea1cae6f0ee5e10e70aa1cd2e1e39a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "f9451c9f01ae01fe5e97c4a79571feb56242ddff2fa310b68270cf154464f5c1", + "regex": "." + }, + { + "hash": "9b68cb121386ca7e68e0a895e10057159802c06bdb1e93ab463dec3d029c185c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=pxFKTxGiaKfSOvZA\\&clmID\\=EjQBiwnTNWKGNXGcYJTJJVUtkwDJmYWlymsexQmnbgovW$" + }, + { + "hash": "441204af898278665237de426786ac472c40eac3b69edf5c566d33b4c18942a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f8169e562c0ae2e943f6ca3a77c6a03e72484ba6ad9a554373a20285c6259845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP7951[\\/\\\\]+FR[\\/\\\\]+1459[\\/\\\\]*\\?dom\\=track\\.twalekats\\.com\\&m1\\=Rolland\\&m2\\=Arcamone\\&m3\\=33687891162\\&m4\\=Cavaillon\\&m5\\=84300\\&m7\\=65\\%20Traverse\\%20De\\%20L(?:\\'|\\%27)Asse\\&m6\\=rolland\\.arcamone\\%40orange\\.fr\\&vr\\=logo\\&cep\\=M9vL\\-c_WJ260fq7bgYR9b22h1XZRzWgJxy7QCHf6G_CJ4QHii7d6YwmtWnrG7FaAsDT2a0KED2GGt42I_0F232c1pOXewTp8Jt9\\-kpq0YpoSbE\\-UmgXXKvwIKltRr6QMCNqG4tLa1m7iWUZ1XRkJgQeOwiqISK4yV\\-214kMhSY5utkYMmCeezt78HenrDo6FnfO6ITcuqN0vxD5aO6yvkjjsTshnQ3I_whgX5rZ6HciC88O6GxQRSQf7JSX7sre9rF0DjcO7MUx_4JgUV7wpOMH2IeYTgNbgsBXzYGLqDZukk6EYJZprF3kTpyzYPEEXdFrwqT3QLceQYBrHutme8WbSfifMYkJzOGepUP0XZ0QXfKbeN4SxaizgYt7HoOiHX6KqHT5ZTj8\\-OeBJh7Pg0bWxf5pMbof99hexkEaq05eod7cccIFpvl2LqxGw1qgS47ZVJNEdQhkfSA4dOLi2JaxJQukARjzFBPOSPIJg49FF7RlTgln3sd\\-FB1yEUh63C8_RYXYmHMEmAlnFDDkew7dXeF5gb_d0mfuYDhyYCxVuTFvhSYJ_wXeapHYTp7wsz3CweBW7YXVocZnYtLp39UUdQ5qBjjBujIW5sbP8BaRSo8gUumURdibDSn3wSqmHESnFJPEmHhvaHEmP2Vha35CV_eZbEonBgZ9WPt56WxSAkF\\-8AKPFroA1MHr\\-AF3Z956byWBbniZfih_3zjeFM8r40x928YQaKRAOXYb4nY4\\&lptoken\\=179a328d02fb177651ee\\&click_id\\=nors0uw\\&var2\\=84300\\&var3\\=I672C77F20BEEA\\&var4\\=65(?:\\ |\\%20|\\+)+Traverse(?:\\ |\\%20|\\+)+De(?:\\ |\\%20|\\+)+L(?:\\'|\\%27)Asse\\&var5\\=79\\&var6\\=Cavaillon\\&var7\\=Arcamone\\&var8\\=Rolland\\&var9\\=33687891162\\&var10\\=rolland\\.arcamone\\%40orange\\.fr$" + }, + { + "hash": "6ef9e88582532a4fce639af32bafd5e804f5b9a3f8438f4488b23daf511ec99e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e0a2bb4a4eb2075a9308b2d59ef5ce93af902a5352331008dcd4980954ba7260", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-5637523687" + }, + { + "hash": "941dd244f56b7fd1e03d73c65891db8348ab6f97bcc3268556c63e399c58ce45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2c8e24302fa7579fd757171b951932b5bd87d7651939f7d5d6f0e51125ea36e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "66b6e6f9b6726f5899d506af5289e04cb5ff6d41865271d707f3d62a40642d0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6d0bf8434bc369d21bda0826aa4b0668a6d294e47e7ad82089539c03ef94b98a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "82d76edca6dcc3c7ba7c42407db96263e79046359df54dcb99c5eb8a7e3d2ea1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "8f909dde3937012e8b66bab02163fb0b33b42b9bab6f17c3f1f2f5fa4c529700", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "28be76b083be14daa3c195e2c254a5b1f3645cf46bd512aaf5308b8b9425e626", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "843ad825556789f77f555a43525f52fcb77e3518f9abc08395f54aa121e4d615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=LWTUkqcJyZfaqF\\&clmID\\=HTURdyXQxklreJOeUzyderSYBoeFiCfueLEjCH$" + }, + { + "hash": "b4816890e7c8df03a58476d4f41168c7baa6e950b3c5f6f046a647b8699d03bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ce7ec48c65a44fa9ddd3b85c5095527c856398346f342ad4146ae36a9d442929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=ppekmooKvJBf\\&clmID\\=YKoAqUvFOAaWgKSEHJUGmzuejwYQvvPyozLKWs$" + }, + { + "hash": "e158981a02313338284b3f5f1de800f1d59358355f137d20676a5d0e7e4b93c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "8736ed8406879fe1f617af5420b56bd8a38b95399c3b7948abc33f5b10771439", + "regex": "(?i)^https?\\:\\/\\/bafybeictsmjoi3qocd6qinhphdeh2t7jh5dlxihpim2jaanugl2rvt7fz4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "757c07002e392fd6c3cd02d04b1660ca055cb5514e67118b37830198463da46d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f2675fd7e30df8579000cc448b5b0badc08ca03e64b409bac31da7af1bab49b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e2661de610eaf483ae3c0d4c08277bbfe26d3546118b5197e4f10948d3ea1aad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f81659929d228b2892fa306c16b868dbf0711e20bad2f2e92521fced8d7043e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e8029ff241c2a5b14391257d86869487136a2e9ca2cd348f343977b7ab7c7d5e", + "regex": "." + }, + { + "hash": "c041b8810bf615346eba46d9664c07a126a39c6118c3b7a03bf2a3430c2ec177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3e297277c931fe202f5754d4988925f2fa9d4453d8806170d5588dbf50d55bc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-4\\&secId\\=772809\\&memberID\\=SdfSDOlYOivAUXCnBSIVMEfrwfUvWtLdGxw$" + }, + { + "hash": "d8b322dc51a5f279b4f5a281391c38d619de025557d1f97a0ac6d3dff4c767cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=afMQyilpqnJ\\&clmID\\=dJjScnAGpdXQODVcxhvJkYdcMOLxcvTCPqNlIKheL$" + }, + { + "hash": "d80dd18aded773d50dd564c26df130b641ab049db21d3a04a090a4ac451d3005", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7bea6f4e2c319e28bb63285b9bf5117ec50c9bad4d36b786f71653724d6bb558", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a061eb02b4148c018dba52c6fcb352571c935f9acd6e8200174e9e74314bd5a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "8f3881762ee792043bc682bbb3d85088462a749692a1029a07488b317226fffc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "95d138ecec75808df0d9658221ef6910e5eb472456719a35e6cef02c9d728678", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "368ff5bbba26ce5fbd64bf0be68b6b5e47d1297abd3f3289a3ec3e0be05d1584", + "regex": "." + }, + { + "hash": "2246accc22f6a2e48994bd8e8a9c8bccf8088c2c0c04950b1b5b4782d96b6cb4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c3e0a73817db876461269f2d6db70e2745b82ddca2cdb575f4acce1a1586a2ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fe054b70d0b2e3668c4b79a0fb5575c6cf951ba8f38a2e6e4038d8070b4ccb6e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9c3a6d1e51ab0fd05ace8cabb695bec7420bb095963dc517112e000c2f088bf3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "277e108c992fb1bb01c908e15af2e42e4392c2adb09b00104e9baad20290c164", + "regex": "." + }, + { + "hash": "cc91cdd904753159032fbce07dc45b8f8bcbd6c65c822d410f5295a8b93a42f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "21a68772fdf492959f7faaf6ce5b4f5de495c7252946959136e9f810733ebf6e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=SGbDSQstpbg\\&clmID\\=mRaqDNcswAtjGLdCvBAhpGgyadNLLaNBI$" + }, + { + "hash": "4cc518fa115c59bfd75e889bc36cbe4d9d5b426148a8af567acea6477190d0e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "59f738f35d7472f7d3a8fe416b3154ad02d4536842fb07f463dc5268b0b6b1d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3df91cf335ca13bd9c6d0eb32aee5c43c5b715b1d2c10f857e9449323494a510", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=NJfeEsLsUDloDEi\\&clmID\\=WGWJxsBSOmxZxGbBxpuHwdqsQJmpVOKhiRVzdxwWkzNgDD$" + }, + { + "hash": "f56da63016b4a11b7d4daf785740fc7c0fc39d84ab9795a44f674cfc81d39e35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "b23e41809fe9b700d308717d63a700754d50ab287b7f0a0e4cbf234d1fa845ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=BdfSmPwLBfWme\\&clmID\\=JdDisiULmvkfhxJyaHwFFaYROEdOHGwsjyA$" + }, + { + "hash": "3152bf21814d49b268d7f38a7168ebf92417697cef1c3947e0691d4eaa278dc6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "84ee91c3af5bc1b07db3b2ccbc5995c6fdc0aea8c9133953e887f8618bc2b6e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1687f031dad13866855b5e38f3f0492d2a2083c09089130cf9bbab1a2069f501", + "regex": "(?i)^https?\\:\\/\\/bafkreigxnlrnfcxgnsllz2bjis53eiu72iowytkfjqv42yvesqjaeb2xta\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b854c97505302eb683b3554a61b51085a530684761dde19db97b8497ea8d24bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?filename\\=session\\.html$" + }, + { + "hash": "08300282ceed4754b7a5bd9da424184f8bfa6094c7a00998dc3098ced5a8823d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "03083cb018c82e8e1e9701d1a9167c74172a5c44d8ce6ac1068af6b87484e5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a2fef9311882ddf17217eee1df12d37c94d87ed714083604ad1948554df0cb24", + "regex": "(?i)^https?\\:\\/\\/bafkreigfhzngnr52l5hbkbqsdx2chzov57e4dtgxtna3ynrwhci5fcihem\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2ff204422a397df4d16fae80796efaa73b8165860409b9048c6b2ffd9bde5863", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e16b008800f3d636b096fc9b79449712d77a1fc86784de0ebcc8a26bcb22b53c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=NJgKRJjyUoYViIOQ\\&clmID\\=ayrliujSuSpzVmHsxVKhxeCVeWkUlukqgdmnKtcFMfa$" + }, + { + "hash": "864db35db476684eeebceb74dd6b66d04b85f086fbbb0803c98b341e2ddba72a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "8c5fde27b63505fe984c54da71241e5c5b958510e039c7d3dbe16d0e62939818", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lIlII\\.html(?:\\?|$)" + }, + { + "hash": "097fa059693cf4cf2371bf7b3d9f3e95254c757e58a4ac339bc7c4fe26b4e8e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "08f59d9753e5f2d59c473014892d5452df0eac15afa66f895abf6564f084f651", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "c0e783616057163eb8567cfaf75c4c4d0016c056b7edff50e3179b3a48e42ff5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3567c99dc9e8d0f59a3ebb70c6e5e106cf39ed8f8818b23d0dedf4841891f027", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "6d92685d218eb5d54c575981f999bbed465753f13fcefb71c32def7f1a21d5d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+indexihabiesss\\.html(?:\\?|$)" + }, + { + "hash": "ee6809123ac02b13bf8d6789900715fd4d71b8d2b27349cef89bcf7fd080c8fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7b18c2918fe389429444005eff4523fd53beef9388bea9acdfbc9492a4ae1c77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Login_onedrive\\%20storage\\.html(?:\\?|$)" + }, + { + "hash": "7c81bb58ce1c09fa47c13b416dc44ac0bad76b9bee33bf9f17a7348c03e89a6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "de8ce189fb6e692fa88081d2e452784d455b0f124257b74e49126b9d437eed08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\.htm(?:\\?|$)" + }, + { + "hash": "e3ec56c5d3e09624db0bdeb6d07c7648a715521ec1ff36c31952d00341cbe8b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-7\\&secId\\=397097\\&memberID\\=stXUMLsHisouspINzzLibpfireeKXuHEvnhsiWuLF$" + }, + { + "hash": "7d24d5b2c2eda1992e701bc67d19a4dd65288cbbdf080873b26af690fb9d01e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ce1a0cc892dfc5546e4166a9022ae07bba27ddefb51fc001ee361d61524e224b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=QBkIEivHJuWkZ\\&clmID\\=BqpBKsWPFQeovgAOYwSeCDeJnGVXpxnDsJle$" + }, + { + "hash": "239820b26c989124ab2fec1dafc92f47cd9a16709383ca74fcbb00d42766fc49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "b9777a8f16c3fd737163316cb74d9047f775adbd85f6486dedfe55d4086376a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "f3f0c9d5a36b4f632ff7953fd58227b0849b6030a7e17379cf803e441bf3d9b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f8169e562c0ae2e943f6ca3a77c6a03e72484ba6ad9a554373a20285c6259845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP7951[\\/\\\\]+IL[\\/\\\\]+2338[\\/\\\\]*\\?dom\\=track\\.weqlaklocs\\.com\\&m1\\=Keren\\&m2\\=Ro\\&m3\\=972544772559\\&m4\\=Detached\\%20Tikva\\&m5\\=\\&m7\\=Wolfson\\%20David\\%2025\\%20Enter\\%20C\\&m6\\=keren\\.rotner259\\%40gmail\\.com\\&vr\\=logo\\&cep\\=07KOp9RxHKEjLnYExyAqtqIt0tylqAekADflAIhhA5irNRC\\-XRcNNJ\\-5ij7hxLJRZT9Ms80u\\-pbg0BXf2J8DzIW218Wx46vC8NY795tF76of_fXWEcU\\-MqQhiU9npgyU9B1mJYttmmyHELVkLAHX9k4Y7TPwzPqtqtegC\\-R2RrjNs_w4MTzWV2P00aQsk\\-OKYuAKODuJqGqonaYAFGrv3Y5\\-pcfbmnN5BLO3YHhn6VsoXod2qICCYZFyxlQs1NxOzriVHp7sVfheWj5QJ_toACNtPN\\-zM0at54Dw2V1HtPrsM3Ss5urpnGhZXx9zsEjEZX34Yr_9Q\\-xufC3hiyN_DNAOdLWSmX1e5Xby1C_oGArNi1AwGvNLHkqSdAzOJ\\-pmSwh47kFOWczhwMhWzWUoSP2bG45nvJ0_RzYB9ZTSmJeEXmLFC293VnrJtG__oOE9\\-iR2ReWZ9wvtcDUyLrOF49IsCYN_VoNbirc7Fb3ibm49III13Vr2GUtWdXyx__q9C5CYzffpGm4tGCmSEFFhAMgx3k_cGbAInzzxQSR4WEP1dndzECd37up3YUYd_NV9Vf\\-fCbsNx0bFWcKWG9y\\-Gvkf8m3fAGdi5Nwju6AnsnI9MavTp0UCkALxtRMSfOJMexjlF8fDCY4VI2jYEVeT\\-3ZSaiT1yEQ0u496HPOszTg\\&lptoken\\=1766323b108462a39058\\&click_id\\=LFV2u0B\\&var2\\=\\&var3\\=Q66CC64F98F466\\&var4\\=Wolfson(?:\\ |\\%20|\\+)+David(?:\\ |\\%20|\\+)+25(?:\\ |\\%20|\\+)+Enter(?:\\ |\\%20|\\+)+C\\&var5\\=1828\\&var6\\=Detached(?:\\ |\\%20|\\+)+Tikva\\&var7\\=Ro\\&var8\\=Keren\\&var9\\=972544772559\\&var10\\=keren\\.rotner259\\%40gmail\\.com$" + }, + { + "hash": "e90e46d0b5a5ccbf78d0433af5f2cfd0c79369d43c16dc6c43bf08ddf0764c06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=gwnwlvvagDhbmSyj\\&clmID\\=ibzPbMnChlPnXmaYPgKeBMAGaszMOspcyJSzzKFVGI$" + }, + { + "hash": "c1befa8993f3ec12048966f368f3469ad02fc2d3e2579de15cfe73abc68f550b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ce11b797b2a29a2dc19bbc789620ec49fc9caf69fbe5ff03cd528791331b45dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "57d0250b70243bd37472a25f3137ac86986bcdcae28919acae7e34207310d933", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-9\\&secId\\=711095\\&memberID\\=sUgxluKZSdiderooWQNFzsUWLAZaaSg$" + }, + { + "hash": "ae0b34514de3e95b2b2630f305541a0b8042a15bb0a5f44812a1f0ad0e8f270b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ce8bf273339329ebaf4ecbf28e6388e7caef7ef4b8026afdcc2944c83d8a5aad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ff05ed77776771fbabfb2e51f8a5cd5a21204cc7321ca547e60ed595fbaa7774", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "cbbaef855f354bff1bbe82c58a3ad9b8a49707cab5d035352eaf4a6bdb11653b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7a871c0173a3a131e6bacd0e71a650fc1a025161df4fea87344d9eafc1fdcaa5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c46e8f1a9a6236b23da1aba6a852a9b443cb945958c77d50542db7ea12dd6ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin[\\/\\\\]+y\\.php(?:\\?|$)" + }, + { + "hash": "8fed4962c9e061c09cda67a16a60a511d54086df41303b53f08627ccb3bfdf24", + "regex": "(?i)^https?\\:\\/\\/bafybeigev6hnajvzesugozqhgw4sknb2asbwfx7ri4f7wxv3b3mkocgbua\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "68f555081a210a5d8dbf048de5f1259a665832bd4baaa0dcabdcead5b10b340e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=jXuZMuqgpGyPK\\&clmID\\=sZdhomVKGEfAagyzETESaENeLEGoTeRE$" + }, + { + "hash": "1f1ed543407528ed6b59b73c938b60d2c8e52f9201c0ebd3c680ca63148fca63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e022aff90eca5536673334a8134b6ec68a03a3d5e7bdd4e6f6790f6256b216cd", + "regex": "(?i)^https?\\:\\/\\/bafybeiazgti2xel3tcbytgfdboskbbrkawd2qanifc5olikhk7ihzuu7vm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5690a7288589fa986b78278ace7a2bef33b1c23feabe53cb3dc5e965af0d17e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=AAeNqqJfXoSErT\\&clmID\\=JYtXPvgGHccbfxSvHDcTJtWPCYYZsULGnCnukJdlrJSN$" + }, + { + "hash": "48801f420d677632304c79a53a394529240dcb43e985edf8c74197d8306fbfb2", + "regex": "(?i)^https?\\:\\/\\/bafkreif2cle3hjr7xh5xvpodpn5erbabxuszzxvzmpnd4w57gllut2pge4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b01d1da87eb19c6a9482ecc5be4c77d93932779adc104303c607d95a2092d18", + "regex": "(?i)^https?\\:\\/\\/bafybeibtnw2ymaikceuvingxerthvnx3qoskyvzqt7pehv4ev5l2xeuhmy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b23e41809fe9b700d308717d63a700754d50ab287b7f0a0e4cbf234d1fa845ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=CSxiGEuuZzvSQIk\\&clmID\\=dpDwopKTRatKwVellLoHcySzaMySUIxYPnnURuEp$" + }, + { + "hash": "47607d8f431d5a7f45db1b67a14827175b84926fd30256d3ab7c4739920f333f", + "regex": "." + }, + { + "hash": "c324488e730a5c9c20d76cabe480e2dbeeb9e0bd9f92da53de5fe69415a8973a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7e4ffc336a5f50fc907041a906c62bf37177bd4de9212f53a84437404c3ccf52", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+success\\.accepto(?:\\?|$)" + }, + { + "hash": "52ce6ca1280d991bba7fbc836581cf4712f13d53379f2ecdfe19b4c7a88ef63d", + "regex": "(?i)^https?\\:\\/\\/bafybeifxqlgswzb6lpqlmy3aqfuumuvqqtuqmku3vxa2en5m5kvp4jcfgq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2a1ed1c1b7037837dae7ae3d13096873ce91aea329b280a3762347f59791a6cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-1\\&secId\\=382043\\&memberID\\=lgFnWUeCAsOBUKbVyIzoKbKWwRJlIdrULyayjBhJR$" + }, + { + "hash": "305c8d0aa9a1b4b27b8bb8d83ef662ec38748fe66aa56120969c0af5050b2b22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2d85c4150ebddfd032df7bfce8ca4f2d5d045afb4e6f4880060d67f20d4c8ed8", + "regex": "(?i)^https?\\:\\/\\/bafybeicoxong64hnza45gwgsumu2a5qy7jf2julrqz5crudaomg4zf2q4u\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e4af1d1d2c8c250255cc3adf46b502a938604f62a46abb7974db729381cecb0b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+metadata\\.json(?:\\?|$)" + }, + { + "hash": "23795b874592329d1a277fdaf1230fc3222b24e158d8f511237d3b3536d73baf", + "regex": "(?i)^https?\\:\\/\\/pub\\-5e5b2041e63b4f759860b969a3ab7d1b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "beff8a27451ed7c4b7c70b93024e6a8a2d593d3ca43dadbbdc82510c85a90a75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d8b322dc51a5f279b4f5a281391c38d619de025557d1f97a0ac6d3dff4c767cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=FKKTpNTgRJWxRJdu\\&clmID\\=fdMhDOafBlOfsFSbXtGryulkZBCgkQLdNMjXsySgan$" + }, + { + "hash": "9b5710b2d38cac82851895242081453c542ae3e11c2629e7b47fc45be478fed0", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5b1ab23b9188564aef0ede5d103c2f2bac189efcdaacc119aa0953090c5bf1b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?filename\\=master\\.html[\\/\\\\]+$" + }, + { + "hash": "9baa244e11c5f9c601e6a7342039f85a78e591cbebb5bab623ab82764e819485", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "65d939aee4b3bf7b8230affa5ffdc8fa715821a352ae7782d3a1c0795b2f77a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e2dd89232fad564d82624723fd93a090c7b9bb66390315dff38d1ee3693a057d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c46e8f1a9a6236b23da1aba6a852a9b443cb945958c77d50542db7ea12dd6ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css[\\/\\\\]+wp\\-check\\.php\\?ch\\=1\\&js\\=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\\.eyJhdWQiOiJKb2tlbiIsImV4cCI6MTczMTEzMTM5NSwiaWF0IjoxNzMxMTI0MTk1LCJpc3MiOiJKb2tlbiIsImpzIjoxLCJqdGkiOiIzMDMzMGk2OWhtMGR0dWtydW8wa3B0YWYiLCJuYmYiOjE3MzExMjQxOTUsInRzIjoxNzMxMTI0MTk1OTQ3NzY1fQ\\.HT12MkGBaG1xeURCFlFgwUn57dPo5S_xJHv3T8czkKw\\&sid\\=af1ea830\\-9e4d\\-11ef\\-a9d0\\-2cb51c3b8d11$" + }, + { + "hash": "f5ebe8a8e64ffe1f8347921be9930d19a6937d55a49aa6161d502eb85f12021d", + "regex": "(?i)^https?\\:\\/\\/bafybeiatgv27pfyyn55y7zwvrpwfi3viu2jekyt72bz7vo72gfzhxknxgy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "408b6648ccd535fb6d90ff3aa325d04560c75749dfbdf25ef3cafceb7161e3a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=WczqgoHinEgp\\&clmID\\=oMfydTkYHnIskvIvmSqVGXowFFQRBjrApURpx$" + }, + { + "hash": "da6112f247b1cd78a36152cbb8275b9c8ba6aa1bfca20a014bbe49857a7e5aa1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+orangemail[\\/\\\\]+4[\\/\\\\]+orange(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3231d3b10a165275bd8b9faf6a1d7616e02c3621cd9b4dc66b62b108acf6d0db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "1d5e3caf92161b01a0b5536bb298279f054f40f260c0945355c49107cb511e2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6cb9ff36adfac2b8d6c11632a8ae3fe2c7400b7865f0747625eb9a3e663cfe3e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+build[\\/\\\\]*\\?email\\=cert\\@pkobp\\.pl$" + }, + { + "hash": "9c8f3672eca4fc12edd54b32b2bba4d7ab92060e7799feb2dfa5c033c17d3506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "117c9d941c10f9b06c2962478cd40f020e80fb53fe7304000c5f47ccc057832d", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5b30d3f8b05b722278f03a0a47453b85cc61f424c729390e3326c166d67cb2d4", + "regex": "(?i)^https?\\:\\/\\/www\\.vedi\\.194\\-59\\-31\\-2\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7be4b7ddb0f5399a60971db3a09799876a23041742f8b3e52a590cb9b56bda83", + "regex": "(?i)^https?\\:\\/\\/bafybeifabjqbgg3xyyyv6ot6qe37qkzraoiwovqh6dq6hwgswwtuxvxkcq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1e6256281cadde4a8248ac1faf47d929fb7086a8ec35d68f4f189546b2987380", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e8c555120a8ad37cbbbd1fb4f69bad801c0d335b09e8de3eda94024defc55f62", + "regex": "(?i)^https?\\:\\/\\/bafybeigxqklfcaawzfy72cqir6xggzznezyqlyqsbamzlb43sn4f7o43qy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "282b2c36bc0c914f60cee2d50222129163aecc17edfa87c604bba1256b4b6e5b", + "regex": "(?i)^https?\\:\\/\\/bafybeigr53l4cxxvfj4r3t5nrb6djmdncx5icmqmk5zdadp7kwgn4zwnge\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e0fdc9f304ed06f8dad9f932a07f52993e7f0bc75030f950ae9000fa75616fad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "38d5de9c4eb8d6e21fac190d4c3a9cb6848a6ebcedacf7fb6d805f9fb49d7888", + "regex": "(?i)^https?\\:\\/\\/bafkreig55dpqyrgjwe5kd6opjbyehcjwgjxgu4l5y3sxnahmzwyrsq4ngq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "889df6c75f1de673c1b1009d711eee70e3d573434c9e6bba885827ca686b38ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=VXoiTqAfqXjJAe\\&clmID\\=sDbSWOdqOhVTwUHevlouNgcCmHtlliP$" + }, + { + "hash": "5bcc054203fd91b014d9d4a2183bef7adc5e540e14174b0163eecfc0bee7e06b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "0f55c943da1d92960563f3016ffc7347f08a9b188662df51bea235b1583219f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "e9feaa583c2fc3f79d46d41740ea86275cb8b17c05ead044cacf30b38fccc38a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3e297277c931fe202f5754d4988925f2fa9d4453d8806170d5588dbf50d55bc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "b3a01a84a03322c29c2cf3de4262105295e54896aeb40f9edefdbd2f61d33b3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1fa503a3aacdf2ce7c39c2d7b1e477d04b82a932f4885389279bb21aebc200cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "55d89b9111fd37860a1e2b063494e4cfb9817c0618cbc6ef3a784194dabbdc4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c4e7a94b5e3ea174661c688521816281d1bbfc6538a3eb30ee0f805e3ee7fdef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "53956f8ea7df3bd66acbf34389567822602588f56dca5f1f91a73fb2713922e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "03cd514af409a9d1cbe079bc823bf427c429b8266ec26e5c0514f97024708320", + "regex": "." + }, + { + "hash": "e290b462852139b1a10e23ae3a95e89b72e88ab6e152226780db4c3cd20d0ff3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c0b48a2a007f6e3e7ce182e617c6bad0052d968a0718ce67867e455106f993c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "cc91cdd904753159032fbce07dc45b8f8bcbd6c65c822d410f5295a8b93a42f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=PQByTVbNdItvVQ\\&clmID\\=tVJcWHzZPkbYHtyJTCTCECJFNOepXmHFRcVMCS$" + }, + { + "hash": "5e88f4e174af7f64c6646c48d1e76442da5be4ffd9a8550a8056f730932a8cd8", + "regex": "." + }, + { + "hash": "9647582b695a731c97574f4483aa212f018c809e9d6ebeecbbbccfa1004f1d09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=6920046\\&pdata\\=s3q3QwI_FawDEh6eIr_gfGRO9QBZnKm7ihz4iliKmCX3KM_PJtg6jmxQhbWdp9kLiChYDM_Erjko3uKBRBP2EbOwS5q\\-NvnrGgWMJi\\-KsuTFwtGqeOsf6S849K2GrsNv3BfjJ6fyoEZ6njg76_LrCk_uOSho9Y0XtHg4Ac13KC0A1Yrm2ISi3l6a0zpCIDyhpFR5_r\\-GkS4t\\-2pPhCk\\-D21B\\-8kmtVwifdP8_ObgceJ6YzPSFtMJ\\-\\-\\-o1xXhzrzInxzw3pSYBtsuTqUZTbi0PN7jUKiOYZSuqsRIYydJEjmCOG66hEGEoBTGHBkFy8dqlsEZG_GrerqmMqG5\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "b1b21a71d2b84a8132048a534f6cd3fe419dfbb1a9b44caa8c3761f328d72a50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "f13d8e991e2c96d091b9b00b6b302a8c3368599ea822493b898d45f62c653f9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d71b4c9a56dc1ce78fb7d767a049347b93f0cefbd610d908e69f2d98c3279339", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4a2deea6c9271879d1281e253020d31a6acaff40e49c589ab9097525f6c5e337", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3e4a88ea4eb9bd5047bbe33b4e9f37e2e5e84e8626409b298f6558e9cb79084f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fea1d4224cde35ae41c1a9b41e87e28f5304edc5aa9c19d2e617d168ce760a7d", + "regex": "(?i)^https?\\:\\/\\/bafybeibkwwznrn5uykfhir3emrfm4q6xpuqlh4ggh6utu7otpgb44mjmsy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1df6002729a6c5160ba25a8026c6438e79df6bf000a89fc91c6de35ffe3c4421", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "b1b21a71d2b84a8132048a534f6cd3fe419dfbb1a9b44caa8c3761f328d72a50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=ywaNTPdsXhokQ\\&clmID\\=qQTUGsublsPpJemHOQlABlKcSEGBoYFYWIZCuPdupi$" + }, + { + "hash": "aa5874ca7d0550958fc252797ad010b4fe721851430a40bdbc66b9d710e87456", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "05b7e7bf9c2c03b0a56a9a703501e6e46501d1a2c95f48758ed81b4abb6af81e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "5690a7288589fa986b78278ace7a2bef33b1c23feabe53cb3dc5e965af0d17e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=DPrGyakFHSoEjvP\\&clmID\\=DxYibPkNrkmRFwBZYYRSlneTtedkzWzaGMqciLbRGYCWyX$" + }, + { + "hash": "d3ca8775e210e003ff1b1378cd06510c8c63095d3a49fd6d7c1d26242cf27891", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+MonotomicXindex\\.html(?:\\?|$)" + }, + { + "hash": "642459420ebbff384a897cda8721ef6586a887b54f3b4c7c3bdf03fe5704fd0e", + "regex": "(?i)^https?\\:\\/\\/bafybeibxny337u32j3tzg3ptg5wtvhlyob5j6z6fskwahwbaw4jofeylym\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c811bddc42d97e09bd2052f25856840ca11946c5369aa37f887813269980f1a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9a5d13d8b63cc96d46b871e8744f80ebeeb1b3d69e9fda7a5d6e9cc2a8e77371", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zcard1(?:\\?|$)" + }, + { + "hash": "6d55e3613c4cc4433433a733db5620d032864593ad5bb231f997a14a509ffe00", + "regex": "." + }, + { + "hash": "dfe5e842b7665569af419bd5ae43c3a89cde071c323285e35a805aff957b398c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "686005c5be9f7425d4a80d22639b378ea9147bc3981f63aebefd04a8ece6e860", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "bd1624d87f7871ff32c268b5af6d91a5b71656ad14aa325d68680b66512dc9a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-4\\&secId\\=379230\\&memberID\\=YWDLQFeTlNKLZTPPtdsGqxtjidTYAiw$" + }, + { + "hash": "9d7daba7729d1e1470eecacc60c27217c9b64f035d87e4f17354ee6d634a0450", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-1\\&secId\\=651666\\&memberID\\=kLKoZoVNzRgciNLmVWmTUblWOsKrJkqoEWLAGnY$" + }, + { + "hash": "9c5d29060743bb3fbeb1a0b0d5ac076ff71555504467a7f0d048a5c669e61af2", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=btc5_siniy\\&mt_click_id\\=mt\\-jcgivg4\\-1733301659\\-1526144477$" + }, + { + "hash": "8c25aedf79bb0e37127976ee516279c5aa92c0a6768f7e597957fa7c237dd2b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=xMCOsnnocqldKWv\\&clmID\\=xIZZhofMxnBJHrksFDuBWUeXlfHNpAXCwuCMEszMgIL$" + }, + { + "hash": "c8847ffcecf47e2169812e49e4651d0533d606ecaf2d92e367e073b8475db98b", + "regex": "(?i)^https?\\:\\/\\/bafybeiaet6y2j67lv4hhhxp2tze6kxy3qihzy3vpf3td5rzfb3rs5abxnm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e3342943c9ad0ab5c2991a50c49a761857a66c6f39ac0c9bbb265453e0a56a94", + "regex": "." + }, + { + "hash": "d8b322dc51a5f279b4f5a281391c38d619de025557d1f97a0ac6d3dff4c767cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=YMXxvymSSgljQP\\&clmID\\=egoDlvFlmhpFCBzihhsbqRSVJkXloDMOuTXcGQu$" + }, + { + "hash": "8728599f631fc389fedd3261643faa460144ab9c2d57a5f7dc13ca7bf956ad44", + "regex": "(?i)^https?\\:\\/\\/bafkreifix4cqs3fptkn3dghrfpdkvv4wil6mhp7svwvuvymy66p7nb5vly\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0cf01b5e47533dd833f03209bd9c7f1e93c8f174e152e549008129a4dd006218", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "8b5433e34a6b40b05a450151fa83b77ac37f7bca01baa635e04a7ae699d82b84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "02c0aa0ff2b645ba17542ab0075e796dc335df2a55559190cbd5477e143897a0", + "regex": "(?i)^https?\\:\\/\\/bafybeigkrldmgj2nb6udo5ttmjneb66mlu7kh6x354wj7cz5eqidlnmeym\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a1b348272c3d4ce7e7f400074546f3f54e509865f374a151367c6b2655cfd4dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "b0d51ac06d835df5ab828193c1dcd55d23bbe5756d35f36bd520773969805c1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "25766617bf8ef9220b89216e367eb3695d517070ffdcfa1d93c0c44a08408367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "b9d8a8c48db672b86af585ed815713497fc9619afff0f1d99da7545840cc7583", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ddh(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8c25aedf79bb0e37127976ee516279c5aa92c0a6768f7e597957fa7c237dd2b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=DcFEynSNvgFiKw\\&clmID\\=publOSWOfnJPmQVuTBKcrkwFBhZintRR$" + }, + { + "hash": "dee3d79fa472e16b40d63a97dbb48695319d5fb83166d6b883c8d8a5eb49dfce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7553d3b50790365a80c8ecd877f877fcc1e39602d72ac3e9119081a4fbedd371", + "regex": "." + }, + { + "hash": "0667b15560d62d95c1197517b7bfb1315f2bd400afe018bf04ebd6520a945f44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c7ad67aef6d51f31576795dbbcc2f70a093444b83226773b7e33497da36545fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "2626aaee1fa3ebb1e5fb3b87cbadb76cd07e586b3719967373c47a9b83416fda", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "33155c536903d5066bc10346dd6374d97cec4491686e57831c9ebdfce2e2b119", + "regex": "(?i)^https?\\:\\/\\/bafkreihcwzk5psz3y6xc4xhp72arwws6ortudrqsvzvbmy5ykoja6h5aui\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ef1bf0334e757b43f7beb18ec4b097d72b2e584a8fc95e18aba2bcbd072cec84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7d47f5e8be55286a3bb054321bc40076dab2354f7049d7d69c8ab53a0ab25b48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "3bb1175e885df46469e15aae3c8d426f537bcaf166497f4c7608fb24e7d356b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c4781a83d5f765c9b9e04ef8c096a637c099bde325e679e3e93b7cb22383d96e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "843ad825556789f77f555a43525f52fcb77e3518f9abc08395f54aa121e4d615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+resultApply\\.php\\?userMetaData\\=666d2329bd05a$" + }, + { + "hash": "160ec8ee12ae490c43ed1bfc2ef55a2cc54dfa3511c5bf68d49472b7d6f30867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=zoScKZJtWYqMhLF\\&clmID\\=nrKmyCBfhwifwuyHxYDrdmxZEEPMvvxWoXBeAuAigPnef$" + }, + { + "hash": "d1a42c6d945241c33b4433bc728f6510dd275547381d6ba1f6b2821133be2421", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a3a82eb3e2fe90f6a92cdbd68819ab4f07910e7080c6731e35ffc2a367d4fc2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ipfs[\\/\\\\]+QmWZD93XreVjtqzXcPCiXC4wgj5WfKWRgfzPcF6Dy2zxKG[\\/\\\\]+more\\.html(?:\\?|$)" + }, + { + "hash": "13398d00ef68310e7a7caa82f390ab0fc3d212a1b561c796ef283692851a916a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "6ebcb1056d672ce6123dfa19433ba5582f3f4892e505310f714284a2d8d47e22", + "regex": "(?i)^https?\\:\\/\\/bafybeicbghf6dkmz653fura7zwr2c3sbwmk3zk4cqgy7nvlnzkyq3ztifi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c9762393cf1f2b108ea63efbe652d0ae902f922f949f1c3d9b265fed9b0d9bbe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "804ceb740c8490633270e95306549288f602adedd0460d4e465936d354525bfe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fdd301bf9d799a5c4a23deef10e64ba22734b87f25fc3e322fa7a55d479e9d34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c2200e383ed61833e9b9377adf364756f8bd5afd3c2851bd99bf9da428f32827", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?user\\-agent\\=mozilla[\\/\\\\]+5\\.0$" + }, + { + "hash": "0d11646984550f777292c65164a55d476801d79c5d51dd14703d8a3b982c9652", + "regex": "(?i)^https?\\:\\/\\/bafybeieblsgxx2mhwhhzua5oglljnsyhgyzb73n7nhqf4p6redq4zkoi4y\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d09367d0485cf63644344ea934e0cc27654a662d9764a9340a579dd236e58ebe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "1ce35d1c1d73a42d329ac302363f0075f9efc639f1f6b03da1ac19dbc8f68b32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "17d763aaa7614840e3b6cf17badc0b15f642617682ef4dd4c1abe59bc3703f77", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3b5c141a3188171c7680d4e16d4968665697b2c3092753f99ebafaac7b679fb1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "b7dfaf49973fc658478167be25850a1e83eb9619b9edbe2635472362f53423e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1844edff1123399dea94f75f0596f770ab704b17c0a8de6c5d26881f48c2ad22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "2f27a4f83473bb488bea4de038bbba1796040e36ee5534cd70b2dba6de4aee3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "2af0b672e17fb9a852822d4a9a7351b889b3b4f47cc00750e0a1826ff2950808", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "546495daddc8eec109af5ab98e1f3b7fa82a6416d596bf0ee8c049f4dca7a3ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=bENlpcgBQbNfx\\&clmID\\=CWZCrZgoIAMoiJHoXzPWWowbzNXxyfLkkcLGPoiqSDhY$" + }, + { + "hash": "a109ed4302e75055101691703b60ac28b2920f6f0cccfb04988f0b853a9a7070", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=HhIceeileMwW\\&clmID\\=XdfbMbQEPTGPKQZdFmQBmLetbxKhJQvwtnjhSYhfZS$" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=btc5_siniy\\&mt_click_id\\=mt\\-jcgivg4\\-1733303042\\-3323043612$" + }, + { + "hash": "b2fb60954104d159a7d7c3ff9a1f7183914508077bec77eeb7d0ef254cae6c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "26894fd9efe6a88859b3e8f37a5dfbd8b683d74555f59f99eea690419e37bb68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "d8a0d24626309855cc486a99b3016849fd783c9fe909d4c5798844e6ba27f983", + "regex": "(?i)^https?\\:\\/\\/bafybeif3spdrupwzz3ucl3pibqyziccsx2zdruhx77vuqbbpaw363s4dza\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05c1d622ab879747ebe3c48ef85182b7fda633e09feddb47e66be416c501da05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9bbd53d656273b22ecd858bd149e10c4553e65c9bdd6493564559fba537e5143", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5a65aa85b538045872fe4218da6e27afe487603b602a7914f2a6351d8500b9ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "d8b322dc51a5f279b4f5a281391c38d619de025557d1f97a0ac6d3dff4c767cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=tIjKXqmNZsLiWYIr\\&clmID\\=yruQVWyAbCUiudcSnlTsURBBZbZDShC$" + }, + { + "hash": "af3a92873c73950c477825f372be3a8c3fc598d5703996d5f052bd960600b52b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e6b26e9dfe582e849279a88e63da07dbd604bcb5575feaa97f4210dcd8be7618", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "71115ef255f016fe1367b1b2527b85f7e3fdac1aa01e245c540a2a5c7b092dc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3af04c11e39df263a518d60af794108194581c2f28689eec27edf11aa97d9772", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e22d486353da56fa26d5b25aa45ab59ad79a8e607f53a6b8a5b22d9257307038", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?filename\\=index2\\.htm$" + }, + { + "hash": "c8bba76b5285d6bb33baf79bc2f2be45ceecb5c0fa9f1fa48fb499dfd30db242", + "regex": "(?i)^https?\\:\\/\\/bafkreidacv3mxdgg2rxqvtlunpbnwfjjxzdole2yab7uoyley3opbtgjjm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "656cc13867115090d35591fe16aa04b03a0d309216e7c7c5a24fdcf0a54ff206", + "regex": "(?i)^https?\\:\\/\\/bafybeia77456b4x66ofl6q3dexjc7kbvwzfmaruws5ef5c3hae7idml4ni\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eb6b3774560cbc24709dde876115ba038bf194077696f03beb5a9bc61b3066b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+66ao9y(?:\\?|$)" + }, + { + "hash": "da135e855168db8425070b61aa077b6053f4d66e80bf9229eb586f77a86f0ce8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "6184bfd0e8d154a3f3a7962683f00d037be032355937ce683334f83a0e1803ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "88fca4224b9cf834b79817b36dd243cee436edf27c3c2505e7c827d43c4c4c12", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zwkqy\\.com\\%E2\\%88\\%95ytefadamav\\%E2\\%88\\%95jkaowjjyi\\%E2\\%88\\%95nefmjifar\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "ebdc5bd2bd1fa88f7c33797f156eff482bb5795242fa34fe5d267a72955342bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+owner11\\.html(?:\\?|$)" + }, + { + "hash": "544e11175c5bed7c856585f3e823c89337d94b693c5295efdd2898fce287f4bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f8169e562c0ae2e943f6ca3a77c6a03e72484ba6ad9a554373a20285c6259845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP7951[\\/\\\\]+IL[\\/\\\\]+2338[\\/\\\\]*\\?dom\\=track\\.weqlaklocs\\.com\\&m1\\=Keren\\&m2\\=Ro\\&m3\\=972544772559\\&m4\\=Detached\\%20Tikva\\&m5\\=\\&m7\\=Wolfson\\%20David\\%2025\\%20Enter\\%20C\\&m6\\=keren\\.rotner259\\%40gmail\\.com\\&vr\\=logo\\&cep\\=wVpZIyD8PTpBydyizaVCl1ChX4X3OmN1PSl5BCFaJS7SV1J4ZWjc5gGQboVoiVfKbzLHUQUUxImXkzHGwMhjqf6eW3x9RdzBfizaV3A_4kPKbThs6BgujqDhAFZj73JOeSI_l7vSoLnlLu7YnPibE2G4BGt_dEsH8M9wPU9EkqtNRYsfD9FV4\\-mloStNJSCCHLDU5V1nVHuBz\\-dnlreNtBWUwLDVu2kHlIrJMHChM88dxKRs1HFxai\\-UvmhvIc5FWVpfzdRXJL\\-xt3hOHXpW8oiBsNFr8_3I6wot0jynSAChP4rbfHqioz0rWTnbjKIgePEijEs9XqvNS6IE5NHU5Ndhr5nG0x_35U2Iuu5t7bbIrIxsmtZ5kYEeKwMG_ZbfEGkg5UmeDlmnAxNVPx\\-yMs5mwjiwQiAuq3Y3FqA\\-g_xgc2tNHCfQFIb9\\-GMiDo4SOKz3ZX_DtTu3BkmbZaRfDrFTm4QFginSN6xtCKfWmBxJ5rP_w3P6HUA2jincDTQDImUWhzIQ3jXR\\-u4zRwvXIzlrst93qkg0wZQlJ8wNjrK4VxE3YAyNciolgG53_BGYYCEvcIpriuza0V2v\\-ZhJvHrexe7vwgY8x7EuvWaWLSN_I7Gf9POdjUY7gqRM_cE5HUEC42zUKuaEAsVloYa0zzSITsLn5h8bj9buN4iEqwk\\&lptoken\\=174f32ef094242f224c3\\&click_id\\=RQbi1oP\\&var2\\=\\&var3\\=R668BF04D8499F\\&var4\\=Wolfson(?:\\ |\\%20|\\+)+David(?:\\ |\\%20|\\+)+25(?:\\ |\\%20|\\+)+Enter(?:\\ |\\%20|\\+)+C\\&var5\\=1828\\&var6\\=Detached(?:\\ |\\%20|\\+)+Tikva\\&var7\\=Ro\\&var8\\=Keren\\&var9\\=972544772559\\&var10\\=keren\\.rotner259\\%40gmail\\.com$" + }, + { + "hash": "021e171287d90022054d041be02fe526b4c694cbb78b3a520aaed76f400039b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f0ad11bfb50a3a7d7c39e5b7d333a940cf61e19285b1d229c1e82cfa9fd1d0bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1a46bf4d581e5a59fde9eab995d47e174fdc1883267adc31b5b7ed55c98226fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "665fa46ae1ebc3d4bf9ed7561ced07032646ff103d0cc2d40c5184045c3b1e85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ce1a0cc892dfc5546e4166a9022ae07bba27ddefb51fc001ee361d61524e224b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=FHZuvQGMHSjcFPbv\\&clmID\\=PURKGFrwVwqaMEBWNibBCzbqSllmEnnRoLbodlsZlV$" + }, + { + "hash": "15e20f9eefe69969a93bcc4e1dc3a2de7ae1002ed0913a23af438c98265fa180", + "regex": "(?i)^https?\\:\\/\\/bafybeibuziyvpli7ev44bnnvaqqpes7gm74fdrrazg6lgfkibjeu4shuxe\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "892d79d3eef932ed76bd17fc1468562dc4c237ac369dbf922222266c63b045b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "546495daddc8eec109af5ab98e1f3b7fa82a6416d596bf0ee8c049f4dca7a3ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=jgSMNJwGQWst\\&clmID\\=pxYLYBfWVRKsvsmLPYLFwqeURarFJht$" + }, + { + "hash": "caca2224b60c847bb6c54607923c63afe479e8341bf560133b437b1a9703a992", + "regex": "(?i)^https?\\:\\/\\/bafybeia22o4emncne5imjhokvjmhfi4znlv5ytdeeh5kgjs5nu3c7hyaka\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4168dbe36199704bc652ca7f80656e4bd9b000f5658da0bbe3ff6deb01d5d801", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=XQMZthIvGnSMFw\\&clmID\\=CuXnonXREobBGtVrkWiywywdoIFKtKuYqTUNfDs$" + }, + { + "hash": "12e1af9b8f87d4c5c8d984c8689aed7375063310055ee3c556a4ad74f383918f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "83fa4937f6663e54d19c889d03e7299c013fb35e3e5be1e5abcc0943ee4b1a79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a23cf0efa428b986cb69181eafc161f6078f4c2c6ce873f06e678cb904aaabb8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "fbb17904b8b9d40a0fbbc47a53f576389777417f7ac5d71ec2be50826e02147f", + "regex": "(?i)^https?\\:\\/\\/advertising\\-case\\-id8128903\\.d1j48daw9fy8ul\\.amplifyapp\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ddf21278892c5b1d0825ec4984117b6f09ffc3f74e60bba8a05f8c83809ff28f", + "regex": "(?i)^https?\\:\\/\\/bafybeicwncskb6klelqcydv6qlavq2lxd3hmyf55yxaap4y6rq6sfvl7pi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4ca4f8585597819d8f298dbb9bb17b2b3a5563e44f7df5e3c407e8ed83530f35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "8dc5a07161775bf3d968077bee4affe7d955241aa15df584b9a180646eca7232", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "e26d15b3dd6835aedd9c32cfc517f02fe7319dae9400853885614cd7c82cb8c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+indexsalaman\\.html(?:\\?|$)" + }, + { + "hash": "f62f2eab391d42e6791233b12ba07f3b5e48969f1efea5c8f67d69251b5b0b1d", + "regex": "." + }, + { + "hash": "c7979fc918b6973df8857e315040fd6cee90426dbf86c7b082b59c78bf22ebda", + "regex": "(?i)^https?\\:\\/\\/bafkreibdytnxndeifgkl3e6hgzh5g57qgsv3gribtxf3yb5uegsebf4fdm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "45f629b27371e70e263bfc6299b93b46883d488accbebe4e567efa9b8fd1960c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "c9895a84e7dcfa5644f49d4b6b5e25a069816be332ef8881a64a1afdd1d32038", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=cqBYraSXXkcI\\&clmID\\=tHdWtEJWXaewZPwCtnbwcYwZgmTfBoIDLBrVHZe$" + }, + { + "hash": "2281ffce68cc0f0debd0a7d79857e11e4a4d45bffa2f9fdc958e970d3c1d0ad5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "021997aef3faa88821d0653b0dee7089aaafb538c0b2c82a6d87b81feb79c541", + "regex": "(?i)^https?\\:\\/\\/bafkreiaiy5xykgzauc7ofg3qhtfzdfja4qim3ukkoc2kdjcfkw3yxypa4a\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d2351c770ce40eb141e88ae7b492513fd8e81e388969a01fd332d205eeb35a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fba8815143fbf8dc9adb8a7ff3ebcffd87ab5f3e518d15b42303d3f5b5de0af2", + "regex": "." + }, + { + "hash": "65e6667b98fb467a88fb0c9747c92ef488cb3e8204d8b2f2fc3f4190aacec19d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+DSP(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0ba69798668171b5ff78bf4e9ec42da6c9eddf49e7068806a2c3f258c03909e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f468cc2030369d764bd732acca02a91eb5309522f6dc106d6f2052d6ae6ade46", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "fe35d361940428812b139f891f9ef00a0447e553a3f492092488f2897116d621", + "regex": "(?i)^https?\\:\\/\\/bafkreihxqzqcail5djgd7ubm6j3tbjjvfjzdwpfyo6rfa7qtsobbezdljm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cd83e948be4728b02b0cefa866c727da7db5dddcb67d25884268602ba09ca6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "c07a036ec863ee8c10bf3138fdbb9978bffa4eed8b303e9c67601b57953483f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=OyzbKxlHHbMrJL\\&clmID\\=hTjZTlwGhCxDwaSNVGEbmlscTCobLjsAIBmTCyZCFfHFyZ$" + }, + { + "hash": "a8face7e1c45dbb126e72fbaf5bc71f5be21b1f4298af685879997344000590e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e9c6c13604e5645fdd79c1adf0ccacd776cda493b6b80df7240e003f3d634f4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "cbe045871a2e0026d6f95b583d5180b0c4e6369610674f12017f0047ac92341e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bf5078c323e611ea760588933a84d8cf2cc933b09017a1a94c60a40e6cdcadb1", + "regex": "(?i)^https?\\:\\/\\/bafybeiayyqm2gkwdxggf6w4cury2sxhesbvuigufxme3igvqm7ybvrdyxq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ce7ec48c65a44fa9ddd3b85c5095527c856398346f342ad4146ae36a9d442929", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "f16807ee8bbe5e308378af60aca2d1a6a49750df18875fed0d839301dae0cfa6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "6b67264a0d81519d1623ce87a0ec67ad5cba89447a7e68253384f94fd42b5a59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "475b23429ee50a6f9da9283b237ec6f4d89ad3036873961436cbb16422949440", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=CDvFRCqhCSW\\&clmID\\=ueRGlWrivSQsEMqiMJUASVQpASStYwN$" + }, + { + "hash": "d5a222cf25fb9df7cc6f890dfdd0a951c464a75fd25c0c9ca276b5feb1041970", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a58407368db2a7788e9bcb94260026912fece48b00f833a9e6150150bef01c38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1ce35d1c1d73a42d329ac302363f0075f9efc639f1f6b03da1ac19dbc8f68b32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-7\\&secId\\=423339\\&memberID\\=WvdTJJCeLCChyeEkNndHSFuzFoeuQSYGxlKDrZht$" + }, + { + "hash": "f8169e562c0ae2e943f6ca3a77c6a03e72484ba6ad9a554373a20285c6259845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP7951[\\/\\\\]+IL[\\/\\\\]+2338[\\/\\\\]*\\?dom\\=track\\.weqlaklocs\\.com\\&m1\\=Keren\\&m2\\=Ro\\&m3\\=972544772559\\&m4\\=Detached\\%20Tikva\\&m5\\=\\&m7\\=Wolfson\\%20David\\%2025\\%20Enter\\%20C\\&m6\\=keren\\.rotner259\\%40gmail\\.com\\&vr\\=logo\\&cep\\=wxNbDDVb93Q82MmdUUsqLwgxvcdeQ4RfymZY8JGBJ7uDJO4XssLnIcMWytlcuxib6icIenI1fSLzb3hSWJOWsxmx3F9yddKawVjB84xAZr1tto2IYep_FaPdcSXgYxBCUuZTJJOQQMPcvprl3tXozXetJiqAxUBlrYqcmLsP4ziQrD\\-ehqS0RFedP67yjFPvXhwXcanyjra6yKOuoSEmU8nPz0Z8HQ_vPtIaaZmfZDxOgHS3JUR_xwJVcyGLyZx30KXhjNeCv7hC1URTixZVIU01y3J6bcAecS4\\-mQTGmRQfZxvRdXMFoCvAVXfMIfylPCJgNsU60N2Fm3_nIxX6UUSG1LZOeSmjbifp8Ju1zZSBy4VZWVhZ7uI84QtMlQmHgEOyzXulyusEWLNzn5gctWsLSZ1GDsGU25wB2Nk39xsbpL0ICoSaH2ch8K_I8rQPHKarMpriB2I0Cm8jLqZa3vOAZUmcQn7O_MUJM5KSG7bf5TA58Mjn_FJ_Xan3R7CkJ19\\-bHDZBCeZWJK38V7DRhbMGbJQ8588UQoVjhvFJfGs6DNLDYmy\\-TGhGOKDg0F6w8S2EmgBPZDEmAVuVS1gYeBQEFV5qXlvHmW0_A9_LkBWp6\\-PfRYN7oME\\-cM\\-8BggyCVcBenxwwOjlwu02Z9v\\-tTH3lPH14HY43cvjNMfwzY\\&lptoken\\=17c2324410ec36828934\\&click_id\\=LFV2u0B\\&var2\\=\\&var3\\=Q66CC64F98F466\\&var4\\=Wolfson(?:\\ |\\%20|\\+)+David(?:\\ |\\%20|\\+)+25(?:\\ |\\%20|\\+)+Enter(?:\\ |\\%20|\\+)+C\\&var5\\=1828\\&var6\\=Detached(?:\\ |\\%20|\\+)+Tikva\\&var7\\=Ro\\&var8\\=Keren\\&var9\\=972544772559\\&var10\\=keren\\.rotner259\\%40gmail\\.com$" + }, + { + "hash": "0eab5ecfb1d8e283e83ed9d684d982624bb4a34545a32bdf3410a402ec88f166", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "5793a979361b0b113934c28fcc70f8dd364d851c74c2e0ee7e7dc45b5911b28a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "0994952827dc62ea1897120c6a6b5109c1446ed1e410316d804564cf38c0dec2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1dfab04d1d8cd193ec31c1361951eccd5ba3c015bbd6f33f50dd3d8b3509b9bc", + "regex": "(?i)^https?\\:\\/\\/bafybeidwt64di7mo6vur5e7k2uahr4rmnutfzxabbgabwtbfjusqgwdbsi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a3a82eb3e2fe90f6a92cdbd68819ab4f07910e7080c6731e35ffc2a367d4fc2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ipfs[\\/\\\\]+QmVV2BRvnCVnDd8jdZeJtBhZGmduRJHaXXQszKNGR8cgXV[\\/\\\\]+5\\.html\\?emailid\\=phishing\\-dpdhl\\@dhl\\.com[\\/\\\\]+$" + }, + { + "hash": "a4b25736bd752c91eca172d0bac77d9af6be4342607a30541027e771b8216b8e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1390c3a548b290cf3ce63493088d6cf862ce5ea0c353552cfe5c0ee00ca531fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e4b46eb1eec802eca503882fe3e0fbebdc94560aeca97ff3ca7eb3badb024283", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1c1485cf312fb304cdb7f8528eeab8a36604b96cb820377667f9669dbf1e630d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "305c8d0aa9a1b4b27b8bb8d83ef662ec38748fe66aa56120969c0af5050b2b22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-1\\&secId\\=826711\\&memberID\\=SYOfKfextqYLwLSBgvFirfstCWQMZEpJCvNqA$" + }, + { + "hash": "1c2e532a493d3cdece8a0689480c82baca409f806c170aaea8dd9add64365bf1", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2db161eadc528a2b73777fef370934451349a89e43fee5be53c93f80a6052b2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9dca2f460d9aa89e36fe7230764371a9b99448d6ea9dca1cca15349ad9646d72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ce1a0cc892dfc5546e4166a9022ae07bba27ddefb51fc001ee361d61524e224b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=UAYEyfMdezI\\&clmID\\=IWcIrjorzNTDOIufzJdxhvHwIEOlgEhfpgnP$" + }, + { + "hash": "38b4f761b583d73500dfc4f18cd19c739deaac0cc405b6b625bd7eab98628574", + "regex": "(?i)^https?\\:\\/\\/bafybeiezcf6nfyi7zxqvs7fwfmd4d2vj2vyra5z6jund2rv7vh5a65xhnm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e2ce5b079de55f622ce59d7d189923a9dde5bdf4a329f43b8ba0ceadb30a99b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "9a0087b008655009ce71ced859f109971ccb058a5dc68b4353ce465c069b1611", + "regex": "(?i)^https?\\:\\/\\/bafkreiabmbhlndkn5fx77cs4rg24h7blxwhqq2uap6aklfudlymzviuzkq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a288bda8b4171976bec3eceab3e814eccd8ee824b08b3d6be2fcf2d6bdae4411", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "564edf6311d2ec321078227423f1739ca4f8762e23607292dcfb0a6efad3de7a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "b6a498178d3ad2a3ef17fcbf06f4920349e01ce4ea2675b78e97554fed27f53b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "dc8b3630fc7b18303b586e1df0551650f50ffd65b313366e0340a4bccd630b6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=SKPYaSeJQou\\&clmID\\=oaLNZIcMwIumUqbTJSJpitPueXQqEFiWAxSDSOHT$" + }, + { + "hash": "e73afe2c4d72b449cf4ae0b45908065f688e39bd271ea31671f71d820ffa6c5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=jaLdPPKDUemrWnW\\&clmID\\=FRQZijhZPRWWePTWVUujxUVgsFYFtlGgKYeae$" + }, + { + "hash": "856e0fe278b130cdc5f117e0bfc2205d50d046dd79049bf6f678e32397e70d89", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "f78ccddb5c97e5f33d7124dbb482c5179709d0faa35841b764232b0788d07670", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "ddd0ac378c8339fd7dc34435f62334412cfb6e68a0ab7402144f61da4f297433", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+66ao9y(?:\\?|$)" + }, + { + "hash": "d301c972c84b2cd38eae93de341cbca439a24a90a900ebd819b9d652cef575aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "f2aaed5c233bf14cb84a974c6ff413275d63e0a2cf57db6a68edaa13d5e5def5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4a55d800867a2ac519c19fdde57444b9fb25b8b5d63410203ebd9f7672b1e9d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "de9ab9f7e921a63feb5b5c0b7428ad75d92a07ca16f0d98f3a6bb513c0955c5c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3d117b322bec259409720d3e3873e4f4289141435398ccc8980cae166f40b22f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "d46a6bc0345f03be4a5f419f6d9c8d57af4bedc59bb72ccc7c15de4c5611584f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-4\\&secId\\=357478\\&memberID\\=JCLnncxUwQNMgEIFiDNTXwYWnSdEXYdXEPu$" + }, + { + "hash": "186df1dacf18019c27c1e09ee490245ed4c20970236683ad7c6d47f01bf9ce0c", + "regex": "(?i)^https?\\:\\/\\/bafybeiftobqdxayzknk235fd4qncx4au6syueneis2hoc5ooqrb4vbqpky\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2656d18184c5270c7e58d22edb73e5a4577e683899ff787a9410cc3cd7de252a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "d516c34558460aa2ee9f7cb7daac631c46a3077c254bb57fa014b928a082776a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "d5514e74f8fdb01df6b5b0a684fad05602a0b28305f43cbc0c9ae6786cb9f9c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9b13b94b0392347f6d60c27adefa11ac546a2030543677365cb455ec66d559cb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c46e8f1a9a6236b23da1aba6a852a9b443cb945958c77d50542db7ea12dd6ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+product\\.php\\?ch\\=1\\&js\\=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\\.eyJhdWQiOiJKb2tlbiIsImV4cCI6MTczMTEzMTM3OCwiaWF0IjoxNzMxMTI0MTc4LCJpc3MiOiJKb2tlbiIsImpzIjoxLCJqdGkiOiIzMDMzMGg1OHM2MGUya2VucTQwbnRjMjQiLCJuYmYiOjE3MzExMjQxNzgsInRzIjoxNzMxMTI0MTc4MjE5NzMzfQ\\.vWtIRod4aI9J0srw1cQnWB3V7t1vpq573plwAYoN4Xw\\&sid\\=a48d91d2\\-9e4d\\-11ef\\-86da\\-3cd5cff9a4d3$" + }, + { + "hash": "bd30b05ed838a866faf3a757da65958dcbd4806d4c50b092e8bafb682d0dc1d8", + "regex": "." + }, + { + "hash": "4c020c7593842308249a431c14bae981d77ef8f0b84dfbbdf76a8838a48b5a8e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4a38b74c121b4d70c826ee9de38cdd5d1aa710f805b26943b6631a6a2c824eab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "94b12a8126e312a8c146a68f5a3e374d7db77b20c121b02439b594f53e4c4cfc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2b1bd9eb6a35ba1fb8277786923ed5bbb7e7e5e82a88ed378c66f73b40e92cdb", + "regex": "(?i)^https?\\:\\/\\/bafybeiavhj2sim4x2tw3vv3iby4tfmmuun76az6nxfdboulckbkqwmqpsu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "210130ee793ec765bfa973fb6c3a078b5a33ea074268344787f9373f32a353ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "68f555081a210a5d8dbf048de5f1259a665832bd4baaa0dcabdcead5b10b340e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=bxYVHJqZlknlgo\\&clmID\\=PDouYhOjJsEndDwNjOoaTXiJNiTYLeSsgadDUh$" + }, + { + "hash": "960faf390592cef8b542c823367094ff266d63ac6878e90469a10d08f082a735", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "c2c2be25aa5ad656e45617b01d834cc5e36ca9575ede74cdaf307b209284c5c6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3734cc8703d2e71a7664a93cfe90d37865cc05a777710dfc9043e315ee0ea7e2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c46e8f1a9a6236b23da1aba6a852a9b443cb945958c77d50542db7ea12dd6ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin[\\/\\\\]+y\\.php\\?ch\\=1\\&js\\=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\\.eyJhdWQiOiJKb2tlbiIsImV4cCI6MTczMTEzMTM4NCwiaWF0IjoxNzMxMTI0MTg0LCJpc3MiOiJKb2tlbiIsImpzIjoxLCJqdGkiOiIzMDMzMGhnaHBjOGJ0NXF2bHMwdDN0ODIiLCJuYmYiOjE3MzExMjQxODQsInRzIjoxNzMxMTI0MTg0Mjc0ODQ5fQ\\.\\-tkRF84zyimTyT4ui8Pl\\-l\\-h8b1EANSLzccqtRAuwGQ\\&sid\\=a8298c16\\-9e4d\\-11ef\\-9f7b\\-3cd5536c112c$" + }, + { + "hash": "642c3f2129779213b07d7311e088aa027f21867f5850769e62ef3375b097b4d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3DXYS5_EMAFw4CJ\\-2BhMn6gz\\-2BgmOrRnf4zCW4EkAngNYnI7QitoaXBFKtX\\-2BYQ5KCX99ph3OOXIyiQqLfOL\\-2FfgUTaH7BplZoGYNKIeHVy8ofBtBw746ER\\-2Fu0PCEVUJLRp6iY\\-2FbJcsEnkn2\\-2BNsYlGLt6DQ8L7JqkobCFVWXkuYF3GxZZIn\\-2Ba7mnDLLGwfYOH3vWQtT0B22BMI6wAv1qjTWtYqPjb3Lug72vlIMAEo4CCmMqDKHmxJ5Rq0a306IaVkwLPtL98kxbeW54N7a\\-2FyBap5mCvZH0abdTqenaNe3UbBtk4xM9T\\-2BmJsfb1j8efcUNRPZ3j4IvVCOdYAURjS8F5it5qPZluR8A\\-3D\\-3D" + }, + { + "hash": "48e52ea655ab8c92c8068488bfacdd258519197ee1373a8ac37560820e3bc451", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-7\\&secId\\=877905\\&memberID\\=GLwTJJkkITqgOaukpdJEVgnhfuNbRCf$" + }, + { + "hash": "9f01ea63427dce8ca5240b26ff687b5ece59d5edfb155f33f6ce322610386813", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "eb12e875bda4a919e59f170948e1feed65e17e13c0551560ed6df00978b772f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "546495daddc8eec109af5ab98e1f3b7fa82a6416d596bf0ee8c049f4dca7a3ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=HRtGIjZswEbrlAz\\&clmID\\=cRWZsUvfyxQJZYzjsXKVIGaJuFkGpGhpbAKYDkxe$" + }, + { + "hash": "8a7ae978a7930c01ba71ef75bf29fb93abfcd5e1d465a340616e23f9a88ad844", + "regex": "." + }, + { + "hash": "cf0603d02083e181f5a56dd1dcfc5be6c397a6239c057b08efa3c9a7b419f1dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=CIQzxAxxMtNX\\&clmID\\=VPMvnBlfgwwqnwnFhWmIUshZNfKWetMjKP$" + }, + { + "hash": "214e6ff9024ef77a71eca7264333d6ad8e4a631521f44f6ae413b61f100c2788", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5a20586d8640da544683a903d36fa55fc6b4e31c8469c122ee778b51055fcf31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "18720164478619e36064e8adbbdf438b042e4d9c7adec999a1e59edcc628e6dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6ca1d2693a89f2ff161e30c6656bef86579fa921337079ae7fc9ebec8c976284", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "5bf3a9244ddb930d2a07f7ae35f27b7d5f6f8a950e39972b068824a90967f246", + "regex": "(?i)^https?\\:\\/\\/bafkreiflz35zuc54duw2aey7jyahwo3acnrz76n2mrshlipbqambpst56a\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f1db567dc9790ffe1ce96afd8ea314967fd6a704caa9b4cf7e6c22988d8a821d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a0760038247ff736d9dc541c5c26d00672e7321fa9e28bd7612cc02f77bdfb1f", + "regex": "(?i)^https?\\:\\/\\/bafybeihfpy3xygxbitjcl6q6jqjpv53uwr3mjk3dl6gvna5tso6ms46tqy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6a7d27efb52f110d87298fcfc52e4a12bccb53fe788504018eb62aa2c723d411", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c9450a60a72c2c9af0bb434c7e0e649ad322ff8ca0d66e6921359b1c4ee0aa90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5858a1559a816e0a4b1bad847f235e84d11ba9e12ad30d17971155b7a3f30020", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4b0a9efc3e442bfd723709cd6b77a328cef171e27872d2e60060c5dea4c7243d", + "regex": "(?i)^https?\\:\\/\\/bafybeih5cbpc4cny43kl642swzw6i73dhqczza5vzq5mdiva3ykptmehyi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a33fefa952caf7081f3ad751e71ae6b65061491426f625f8d90d2a899ad22838", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "8918ce91194aa76cca1e1e933eb70a68a704921ed2cfdcb9736eb9ec68811c7f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "befa6a6cef67a3f9cd55007ef65db6132b28982e64518636d31aabd2cccf29ea", + "regex": "(?i)^https?\\:\\/\\/bafybeibuvzywqxqghtwop633njye6jkwio7n4vmmm33krqnx4fyjcqbpre\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "28969a38fb8abf1e59c06c3af606a0b757b625b2f361461a77f4a172a90e47f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "52ebbc89c8a20b4d0a6e15bcc437fcc6a1a7577abfeff098ddbfa21f98449ad2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5a9de6d1bcab773e88138c23d732b71f565cae1278012bd5f5230c02799342a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=WDotGfMUHHguzRm\\&clmID\\=aYqVYuBATRNmVyrwDhhFnOSMwZbhGKoRQrnIDzrnKobkE$" + }, + { + "hash": "aa267427eeb4ffc77df3b88b59ebde8ec227d6435d97ab87a5de5209035d5b1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9bc125258f1b510bb2ae81e9cc2a0f5895acd7d323c7e77fb87e552dde6ce05f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "ae654e3f541c9fc57f3b50c6f55375af6942cf3df55950e3db762528ad0603c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zcard1(?:\\?|$)" + }, + { + "hash": "1a3c2d32110f05e92a720cb742663baf8ee5f7ce4961595d18bf9406477fe879", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=MoYZnWDhzsYFPqL\\&clmID\\=JoJZyqzEwMcBCXpddFdLxfUZaNPqNzggEYHzYW$" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "e3cdbb983751f0b6434942d8563c0a9b95d1256d457831cdf20cfebfad8a1dcd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4cebddda6b431fbcd0220d5a319582492a9211bddb9a3fb9682730e8ee7f6688", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "eae5896b475c6883b5609ea13d045bade08076905d20826c3d8c568950e0d982", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a32446bfa698519dfdf635a046cce2a40df460371120db6a44049af708da9551", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "0f13337e751665f357f9a2cb49e08e51fc03e16c7ce343226dfb6f2c1ca4bf11", + "regex": "(?i)^https?\\:\\/\\/5e4838f3\\-b1f5\\-4f39\\-9c33\\-77bad86b90ed\\-00\\-1d402kdw46m4j\\.riker\\.replit\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ac51d8e632247629a8bf0f1db59fc7cdaed8da73529437aa2d39ddf976cf8fbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "11d1dd2d7febb72c32a4c43afb665473a0414df76cbd0b608cfe9d3d717a4c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "886da3a9940602a5d23075e5e20545e361e81c2572860fad2c3f4236c9a9b266", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "3d2c4511bd3fd7712e1f3bf9783561c2dc11e949bf02e11bffd056c8b30f3bd1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+926eghhd63427aan\\.html(?:\\?|$)" + }, + { + "hash": "b80fe9a1b289129511275496e419036c2cc646108410a5b8afa7ab5fde32ffee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9b4492f5e2ca5a75b5e85cca11e18a3bf052e81b8646524ef63bfc756e7d96e7", + "regex": "(?i)^https?\\:\\/\\/bafkreidnoswhqifhipegwyfeeonwmsbp7hpgjncabzinhcuutyxivp6ahm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e77ceb5eb54add343bba9265daf73ddbf5d3e0911efd92715bd49ac0859ed789", + "regex": "." + }, + { + "hash": "10a1c4117e65564dd8bf09783c7e7a9e15f082c2a1eea0bce4abae17b91bac2b", + "regex": "(?i)^https?\\:\\/\\/bafybeidwbampsbahctojo52qdmu3vwlpoiti5fycdvmkjpwneecmea6nh4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ec1fc86a67a73ecbb0746e91a6db0547c5d896f3fa2cc132381eea17b671c5ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fb611f392628649564fb8a7282d62d308ec2db2bbd47fd08b8c2bf3c33dc15d6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ca8ef41fa12b2add6cde26759a446edf1865ebf95c50772c8fca6ea45d4b20c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f0ba69798668171b5ff78bf4e9ec42da6c9eddf49e7068806a2c3f258c03909e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-8\\&secId\\=753332\\&memberID\\=ICpOCFFFBkykxZSNOGAcxXcNWSvQJZWY$" + }, + { + "hash": "b5325471d7048edf86aae2ac302a2fe0da113829da1fa15bc3fb871407a560a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "57d0250b70243bd37472a25f3137ac86986bcdcae28919acae7e34207310d933", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fc04e698f5d0d8618f0c42e95f958d948bc0bcc17e3623d0eb4fbe62a37079c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2e16632d5b1f98fc427bb0bd9010c282f715fd5d54468146c74304ef3779e3e2", + "regex": "(?i)^https?\\:\\/\\/bafybeibaaiahwng4pfhxg5wbmgcf3crnkj4uehuatggqyh3g75xs2p2iyi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c78e8adae7c3f403e3555a4eb6ccc9c3793a535ff9194b3d56d5e1d141809c4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "90951ff7f55f615bf51625819fb1153bbd839af7dbeb2ce856d4d52917f7cdfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "3cb97792e2ab996a21fee5abb352a0d8b7488e90eea98724f10ce0dac6218f11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3DOYYa_Jz8gjVV4NihWwu1qH2D5Q3Pg\\-2FUDFIGNIv\\-2B\\-2FFzSP99noxwvHAE8SZb\\-2BspV8qYpTYM\\-2BtaZHaipx3BLBdO\\-2F9tSlZXe6PMrVyFgMXBkEO61\\-2BqHMo1EA58Y\\-2FSwrEfXkSnSJh7zx\\-2Bszr7sUKN75hoBmMcpiAPQDyLzVwJ\\-2BguOki5td0L7e1TR5qxFLwhLba1JH\\-2BA08vHriqb1fpMAaZWt\\-2BCZnwRjmun2coSo\\-2BX61QR3SzguGyZyMP1Z\\-2FrcrKLznK0gqyRg7w9X1wS6V2VQHvNv4my12Ezuxiaj0XV5E0KOSI0Gy4Z\\-2FyZNIl\\-2BpNZWIOTXkSYPdPPEqgdnsGgsQPRbe9Rw2\\-2B0g\\-3D\\-3D" + }, + { + "hash": "98e12310aaa4739a7cd4b9dd33582f128427bfda2dac522a1760224d2b1a125a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?filename\\=guestcube\\.html$" + }, + { + "hash": "37971c09d7d49140346d173dd37b54bd855b051f5ebbd7126d85b443dbd82f72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=vsHnCGeEjsiW\\&clmID\\=ZLhGZNSwIcRghSIhFcroaIkJQTaqhBtYR$" + }, + { + "hash": "a4ac643eb738a02e51088dfc8cb92364f8f50fd999e5f074e1e98f87881232b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "65e8b1044367ef64a41653f1b3d43aa311bb4f201a903c9c836323e77bdb0868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=GPpUdMmzatJEaCtI\\&clmID\\=YtgFwZaoGacZliqKWzvRgvAapbJHIyAxWfHKcEOjlB$" + }, + { + "hash": "f025199783b48afe49d196363394f9c5e9c2493d655d5787977acb7a708200df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4f564d5dc2065d42ac481e997cf482ea922dfdef250018bd667aa281b9b81577", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e7542ff79ae3b49a7b9cf34382295725a7ef23b787c7230e443395bac9046f2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "4d80a688ad499eea81e47f12d61bf95bcfbfa4ab31f851389bec374ab458146f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ecafcd5df4b31211f2f34ffa942fc8d08666af673e9d803997d3aa2cf3f17419", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "b11bd48e294ba11270d8a2d98a393cd85b370407939d4a37082230933b86bc02", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "16e8786935de3071f4e51642f234f863ab3e3cfcf4f3a3080c6498119b3f732c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=CRgWJyoCJBIjxOz\\&clmID\\=CxEHEbfzOWLfOssTlBPLqPlclzzPAlOVukVXEzrhAMWn$" + }, + { + "hash": "4a252f0290f0201589ace09587e5b10e375c50020e092fcd3e74a95a66e58c0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7556faa997fb72d34a1bd86eb8f53f63bd778082ec4c8f035b1bb940975f4765", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7e961afdca964a4c2859ece18339d6c341f1ed06c3f078ad2cddec8b9019970c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bce89449323052f4900ad22a671ca9a56d64b5c1d05a7d69c28bbe0c65e72fa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=rAVeCTgzodmKSMh\\&clmID\\=rgLOTZCMJQovLjuCwTnEyfosDweJtVOqEziO$" + }, + { + "hash": "db3f589ed4841bc93e2d28685b7bf08bcb79cfde344374dfa0a42410eccf18c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e8cc6dcd6e647f2d7b902e48f8fc206615db18399b88453ee2cd530c5162f10b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "eee7eff52fdf84b7a20ee8ac6843a0e9dfba1a8af9216d892d3f929a7e251ea0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "37971c09d7d49140346d173dd37b54bd855b051f5ebbd7126d85b443dbd82f72", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "49b73b8a435cb27d08fc3e1328eb656576fb832ac774316b20a3e283794df0aa", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "beb937b3c8312992bb2dfc35f3ff4b29fee9f684ea2890de7c0524d7104f8797", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "25766617bf8ef9220b89216e367eb3695d517070ffdcfa1d93c0c44a08408367", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-8\\&secId\\=427726\\&memberID\\=rHGCEtnAVgFFBwDCZGRllPVKmiFFhJZZ$" + }, + { + "hash": "cb51b468fcdcfdeb3bde4363190c66159a774722405e7df95f59f6fd4067f735", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "3e4a0cbb0f1bb997c6e3a1835f69e8597f781933bddf84b5811dc383744cd495", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "62b5a3ac2e692a69a86fa0ab73655f202050138ec20c1c721b62c00123c2d805", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "63ad7d55ecf5f3241bb312fe061ac90588a037efca2a95f39645c34d2cdd7bf4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "76ed54a27a43dabf49a8217bc6b87d981d9b82fd87b17d33efb63e69570b73b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e90e46d0b5a5ccbf78d0433af5f2cfd0c79369d43c16dc6c43bf08ddf0764c06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "1e7fa7120e9c9e7e5e0943db545582d2dee4a9353ffd79342da094741a78dc4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "0eaf5f66e9a0efc09773be71dbce1732a2cee8c318b10bc3155b06edc1419bbf", + "regex": "(?i)^https?\\:\\/\\/bafkreiam5ylhele3szgqmznnhtvhuwpivgmrxguqrsi67nekotjdr3o2om\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "686e678d9fc97fb2edd56da9e196cebb08412079578479ebbb763eef7630f55b", + "regex": "(?i)^https?\\:\\/\\/bafybeicr4fpukzpwqjxrivjowgz2qkhc2qxbfyw3apfri7ayx7dpimsrga\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cd73f0c6fd93013c8680cdbfc8295aa4ed4631eae508f659e8ef4cd80329687d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f87d8cdee67e23b436180a4c1209ce00e694a7f9b9b36b5f73bffad3a0a11607", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+arshes\\.html(?:\\?|$)" + }, + { + "hash": "1a58de79f0ada29fb8658c66f43f94151f3afdb561705badf768feb7d09e7a0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6fd8726e1110673e6d93c627534971b6b2c32ae3e7bc3baf10f08383d47790ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a49ff49c8cb2ac9bd2b3a03d18e01ed6102e4d20624c11c7ce3d347a2750b7bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "277aaa0cf2e98a371cedbfa331df7b8c42fc56ad2fbe96ec24408292ddea2343", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "07997fd42a81a765d57c065f943838e5ead6dbea9f989c9f0a0a23564c9bd994", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "66d5002ccc11bdea86141c1813001a0bf2e7529f7dbae5493fb27852657c641a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+file\\%20(?:\\(|\\%28)1(?:\\)|\\%29)\\.html(?:\\?|$)" + }, + { + "hash": "6d5805c28f3f7c66cc9bc9da62472975f3f696a90e17cb7308991a8db0c1ee4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6a6d0d7445409527c1ee4d7843ecb4e52803c592224ef822c781530ff156202d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "633f5179e5cbe84d19995c4d0272ef29fd4f9c6a134d2f0622fcc4b54143823f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "1a9fd371c7783c3ee376fd43f9fc09a8be5b3228905449c16d75b81c71dd93cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "bca916739efda2f3bd87c134e9b9d725f34b3dbc64c35dbe04bbdaa7ce675ad5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d5a2e7a5a8f5481323c47c95e42c9a233fce02e86770e58dcc605669314db755", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "0a6a03f4060ee595f1ea536af1f8e01fdbd22d43a30f1e860463dd71161ab290", + "regex": "(?i)^https?\\:\\/\\/bafybeido22z67bemthhgkikj24eku3kb654heu3y4dun7dgiotuvnmn7qe\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3e2d66043858587f2527a42dcda99dce5a30cf9cdd7d400bf0670a9ca5d3900c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-6\\&secId\\=950021\\&memberID\\=zjozJyHUiBrtNVuRgHinusucwMjPjtU$" + }, + { + "hash": "da1ccde4fc412193da6565142e62e0b8eead427572fa88e6f1db5d4e5ec63b73", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4db7ef7048c4d26807016532eaca6a1f3f4d5ea36cd55bf4a1bf8a98bcf5a648", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "97ff52ff7763bbae184a0226a7ef6cb132b5e1acc3837f1805a8f17a21e47c90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "999601b8fc39e2bea1229dbe0ca191fff1894119801151a77cebf4ea3c86642e", + "regex": "." + }, + { + "hash": "a6592e002711292c31bf77a967a59ca728ac732d5718b5cd55aa761706447484", + "regex": "." + }, + { + "hash": "8f09542e382e1009f056895206e5e7966ff54fea74b438c7eee310ed23636ac1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "49ef6017df8631638612db49788c890ae4792255c6f8dd75de093e92224b1c1c", + "regex": "." + }, + { + "hash": "fb02d1a6150d2e1da7d258abad171134a4894e489cd99e2a5b34d18571666a94", + "regex": "(?i)^https?\\:\\/\\/bafybeifjwawrybgi7kqkfb6wldlf2krndx3cw64y2ydv2wk5ugb6wacthu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "634fc35e50ae1e1181914f9d1e18247461dcbb6d76aa550963f4c3964df848a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2c9f563f992a185e50afe7711edf70185c40a28566dc4a729e2e6970472b8832", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4541e7d305bef10128e54acdf1b1f1bb1fa7791dd355264ecb2338250d4bad20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Formulir\\-Aktivasi\\-Tarif(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99b346e5ff0d1306a1aa3cdb310b2cc6a2110661dff1b223d49c52976d8911c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "2b9d6264307a9dae0df716bf12da20d2ad2caaf45253f205d6be28b44fbb7342", + "regex": "(?i)^https?\\:\\/\\/bafkreic5ulu5sccuwxwwq55t37z5brov4wovxa2ttrdcdwkqcpliixxpga\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f16807ee8bbe5e308378af60aca2d1a6a49750df18875fed0d839301dae0cfa6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=tKRxtyGjUMok\\&clmID\\=mOvdXssEEojXitTneZpyfvRZpvpeDBoOTuozl$" + }, + { + "hash": "532238b0642e566304fa1625b4f701b43bbf57656ef9475792d4632f28f75eda", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d2099dc34a8c525b64fd8039f2acc6f8e530e87e8fb81dd2055fe6659248f5c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "c38422dd7d3074e3dda00c62daab2782a7f3f8e09d64cb2ef3abd8d814c77109", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "6f9a657633af78358376010d380205982739a7dcd68d7eae67e1da9c14406fc6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "03083cb018c82e8e1e9701d1a9167c74172a5c44d8ce6ac1068af6b87484e5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=CyXCKvhlbSe\\&clmID\\=lZFUuIEHXLidHoajWBAghXSkIGRIBjI$" + }, + { + "hash": "f62857226c3186d071f5e9688091c48a05a957c8b1e1987862effe8fbace0f45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f50ca6c39599a626cdd795b490e8de5ea92877ae5cf4bd679a38b79d9677136a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "befa6a6cef67a3f9cd55007ef65db6132b28982e64518636d31aabd2cccf29ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+999nWu0rZYaq\\.syy\\.html(?:\\?|$)" + }, + { + "hash": "28be76b083be14daa3c195e2c254a5b1f3645cf46bd512aaf5308b8b9425e626", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-9\\&secId\\=287839\\&memberID\\=MHhzFZwwpHNJaHDxgrbWkoSqRzBldRebROnuFTrf$" + }, + { + "hash": "a63b29fbe97f41e56a2e6160f4151e246bebe7f69838a05c3e413bbffc9efd64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "26a4fb738660a73feb036b10f8f691a0fc1983e79471ec049701895c6259da79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "de5f764ccc9736a0fe9cf3a023d1a621d44acfd73dcd76cec56c739ad0b44102", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ba7c07352bdc215063ebf5c5c1062e0e2f158d768aadd0b3fce0222b35732e9a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "6f5aa0e005799cb96027203b60ffb6384559cbe61f69a930795c6ebc623bc843", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "72060c15b2761e031185c231ddad1ef5ee08c9dc3defd280903a9c609920e655", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=VJfUqPvckkvjNh\\&clmID\\=WMbZnADQWNvpDgjdvutyAYBjukWhgyuACytxGSIsflbq$" + }, + { + "hash": "867e0a9fabbf3353a86dd6b02ac34448fcbe6c1f3c33e6c38f2b38c671a0ae99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "e16b008800f3d636b096fc9b79449712d77a1fc86784de0ebcc8a26bcb22b53c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "daf106bb52ec71cec2190f6ebf9efc7b5db120f52fb434f56879aba2e255d4c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7b8f5fe1b13777186c0fb307b95600cc819098c889695a428eb0b485f168c994", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fa1cf30ee51b95a00278dfcb77f048870c4fd243c1298fb039b8bee92b1f8535", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "37bf6f950aa103fbc4d95954476cc39670fe5706e0db528b349482a3daff54ba", + "regex": "." + }, + { + "hash": "bc3905d65ea36ea94d8c6ed42721e4fa72bc32b85527a6af3db6617973be3c1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ddd0ac378c8339fd7dc34435f62334412cfb6e68a0ab7402144f61da4f297433", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+BaAwk8(?:\\?|$)" + }, + { + "hash": "0e00f60983a4b4097b833e2b791b847c8d2c4ab3c6e8abc35ee0289d64b3392b", + "regex": "(?i)^https?\\:\\/\\/bafkreiapkuctokjixn4hkswxawo6wy3moazrxekrakynikgj2flfub2rca\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e57dd970e59807d8cdd4498c17723d9612479ec8edf3398b57323ee81b1ea5d8", + "regex": "(?i)^https?\\:\\/\\/bafybeihhgxjxkwrh5vve2fv7w5qvxih562yohgl43db77hmlmqrnqxal7i\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "843ad825556789f77f555a43525f52fcb77e3518f9abc08395f54aa121e4d615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=fCORyAKosRD\\&clmID\\=lFtHXQHYKSfslUoMXkhaJCTOFxAUAmXrEXgcvnPBiihEQF$" + }, + { + "hash": "7e96e50af7f6e3ad534cf6227c8a7a234fa89e614bd5fe4e23e08a16034782dd", + "regex": "(?i)^https?\\:\\/\\/bafybeia4ugqyv4oj5cjcro4k6h36przumozxqhd3ps7n7cb6binkdeyfgq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "20b1f9f54a8f93844863f8bfac1839d491a16b60792e4d8ae8d54314e2044b0c", + "regex": "(?i)^https?\\:\\/\\/bafkreiamtpehw7r4krozhcpawrm5zjbjulfyt733crl43lb5m2r7qpco5i\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b2e42cc63750f4b91c4196e3fb8ca4787c18fe687529ede48b012df44b57d4f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "acd23072b47dabd32dff504ae325d2c0c22aaae049aeb0746757a86cf9cf4666", + "regex": "(?i)^https?\\:\\/\\/bafybeibbsb6njiptnue2mjint7kd4dxvpk2yy4scdat4loa4j2jvhqvswi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e799fbc280f3bc4bc66ab7c2c8babb5ce570b4e5b01fe924b9daed87414cbc55", + "regex": "." + }, + { + "hash": "6a9d298a2119e5fb2f83eab339e937b3374316ed12400ef29090d4880d716701", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a179f0843aba4cdceb39db01f657e02616baceb5557ba01349f1f04d620f62d6", + "regex": "(?i)^https?\\:\\/\\/bafybeidvfjf5ixrhxenxyx2cd7ovj6f62sdtwutx5sk4udrozyi2tyzupq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a419735e9043cde434d6f3050d1e110e8d30e520d135db4d71fa16c6ced9b033", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=XWXcSSgepFgR\\&clmID\\=LnhAYsYEJaXUhPaLBGToSglJlSEUbAcWEsZVDrhoHp$" + }, + { + "hash": "05561d92331d485a58d947b2806fb7f54ff215ced2894a64ff97587bd3b15f32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "625d340db4b2547e4f4a072a4a0b8268e3eb51846a9b6356a68ea9d19868f5b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-1\\&secId\\=913117\\&memberID\\=RNyAOCxivdAISLlkURnUZIZdCGAlSasfhXDxMnSu$" + }, + { + "hash": "812dd72c5072050ffebc6557e945de79445375b7da375bb81cb90d4a3e9e3798", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "71b6051afb80f4eb085e78e6cf1b69c0a589079187dbdd64fc0ff1cc920268ff", + "regex": "." + }, + { + "hash": "a0c2c18d54de3efd5923e93d3b7918ecd79d03ef3faa4cbd157d6b2c49c65d80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "43e469d4d287e25f45ad151fb7e1d8df675bab5e5f9b477f3966ac7d668b104e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ff86feb668bf315326f1c1f86591a19a506caf4b0cf3ea4b9a9c37d57edae27c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "f1ae1946f4c80b41be4798aa07d69073e77350579959037fdf32d07cacde06e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9da3e227eb74cef9cf5f68ac242bc4a262483f4e1bb86edc8d257f73d7ab1bdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "c68f2c719a76812eeebb02e25f4d0778fbe3a79541145091c3ac38cd518a5dc5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a47f872eb054ab5698a080b2471e3252dc00a316df0c19252167532458f5ea6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5b5e2a64bf78771006d76fa4e7d39f435924a3f428f36393e476517108200a1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "843ad825556789f77f555a43525f52fcb77e3518f9abc08395f54aa121e4d615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=EBhkWXMJOoOVAU\\&clmID\\=scAscUjfbYkDEjZCHkjuFlskviWEXQPGBJNsQpOiAa$" + }, + { + "hash": "0994952827dc62ea1897120c6a6b5109c1446ed1e410316d804564cf38c0dec2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-9\\&secId\\=488066\\&memberID\\=jLVaeJJDaDuhaPJpGPGOLugTyeBRSiXceJE$" + }, + { + "hash": "04be361f955f9403be48a25cc4cf9fee167c120b64a0da3ac591ff0e611f5634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4cc7cd43a217b08b12ee558389806f3edd3d0ca78b59cd35f4ed375b2d5dcbe3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1953bbd9d49c3728e809787059b9dc69df46547d1ec749232cb3dd7f86337530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bcfd6eda9d51526e470ef8ec3935d417321c3b69812b7a777c286aa2f1d5b3e6", + "regex": "." + }, + { + "hash": "7d821534dc6e54bc93b315bccab44662035247b1f28c27e81a7455f9f63cd575", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "05b502c710661d18c5a220a617fc2a37120d1169a22edea122d158722f738266", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=ZnwEroueDrMtkWnX\\&clmID\\=sCBYZquVkWZRaJVmPgWIDsBoZDIfhakQFpUqNSVeaQT$" + }, + { + "hash": "3df91cf335ca13bd9c6d0eb32aee5c43c5b715b1d2c10f857e9449323494a510", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=WjMFDoKmCWhMrI\\&clmID\\=XoKgVbYGpZpUmfyPMAwYIfGCWvRjxUpwkNnOo$" + }, + { + "hash": "a7383f4aa2d0d376ca84b1e936ab4a5db2eaba5a39ee2ce10b08c6e34aa1cf04", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "3c8f03dbf8f6cd34237c38dd38c051dbe3683a6bf54687a7c4b2f72f55559b99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fb5c927ded2b6508cfdf7df72d19f3d719dc19c057e23fb5e587ab4b8d507470", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3ec95d95837ae61b31c2849c706eb77795bab395d6f727a66d5939309d74aff5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "a58f5c69129782398008444003a341ab1aeb2d0b4204ab9d983f1d02759846cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "737b9f94035a141c5be501650203be6c3e24ad1be2d157073e85b766490ef387", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a9c7e4a6fdd09587e89f3273751944bc231fdd929d20d88af3f77ad5eb3e7e9c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=NfYeGerLHwQVBqt\\&clmID\\=XHavetUNmhLqkjzMbNpGVBgdRJUICVNGMsfXOeTpVvYeOu$" + }, + { + "hash": "fdb7a3dbe69a78b441b259ba6b6c7413e31f2d0d9eecf3a155341c195ca78b42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "67a4bd339abe51cdcd3feaf727d1b737660a4625af30f97888d96684543dcd38", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "293093d5078441146ffea72ad0cbbb3e10e63e5fe81b43ee5592485362ac0389", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "546495daddc8eec109af5ab98e1f3b7fa82a6416d596bf0ee8c049f4dca7a3ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=szdPmXmeafKPXL\\&clmID\\=fwKCMCkmrodbhvGlvTnHduywfNzIQnIcHj$" + }, + { + "hash": "4c4dfa202aad0f085e374438efbbb4f563043e8264e91ebc8dc6f7cd39cc81d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bb529575c2ea8e070a46e59d978a8f2937e325b3d1b14333bbe7b6de562a7042", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "9cb06ff66411222daf78b3e8452ecf25116929df15eb4dba76c33ef7374dc8b6", + "regex": "." + }, + { + "hash": "56b36e9cc2a2abbfa115935b8e96bc867785d8ff02f56a0634b3fd541e594c56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dina(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a38c891149ebee77248647ec40f53279adfc42994c780d851a35b3ed905c201", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=SFcRhZGsGKVUBzEC\\&clmID\\=IyzyMhNtEXYtxIbsUEzcJrldERMcuQoKEWIL$" + }, + { + "hash": "b839463ae4b539f603732e7b50857196836e11368c3fe33e00876bf2e352a125", + "regex": "(?i)^https?\\:\\/\\/www\\.logi\\.194\\-59\\-31\\-2\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "824c516570ea93cff7715d11a119b5b90a3662e24f39786490bead481e6b265d", + "regex": "(?i)^https?\\:\\/\\/bafkreidjx67q3xtykidpstif7n5kctyvqdxbulszvisbrfhql3vfhkyrie\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a9c7e4a6fdd09587e89f3273751944bc231fdd929d20d88af3f77ad5eb3e7e9c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "b44fb04e38092ba20fcbdf4e6605240b52dc9f73e96ea076e7675a5d7bc6c86e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7760af9f747534f3d6af0d3733a2f12f1310d1dd9083f8b20f72d167269cdd1e", + "regex": "(?i)^https?\\:\\/\\/bafybeifvpy4k73xjyevy56s5asjm3vjwezkuwd5meh3nckf2nf66sj4lhq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "af2503f38a429adcb7acbcadc3752660c0dab9f22e7375a1629f7b7b8c680338", + "regex": "." + }, + { + "hash": "160f69b25b4046fce6e3ca50a4090ef02cab1b98348adee20128f68905e7b1be", + "regex": "(?i)^https?\\:\\/\\/mail\\.coinbase\\.com\\-authentification\\.138\\-197\\-95\\-97\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "804a038f4816dc9a3ca3681280d81330e8c839ee053f8fdbb23a78852cf3ada2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?email\\=aalfano\\@rolfeshenry\\.com$" + }, + { + "hash": "160ec8ee12ae490c43ed1bfc2ef55a2cc54dfa3511c5bf68d49472b7d6f30867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "da1830f2d9131760f586d47cebc3fb1e27058d4a78f0b53b072966e08126dc61", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a48631868c570e3747fb41f7d9fca76e5bb204158672ddb0abd22e88f1ce2f68", + "regex": "(?i)^https?\\:\\/\\/bafybeif5twcpfiw3pfhzwhdh3uj5b7dyxxpmekezx77dicxnf2bhakedma\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3df91cf335ca13bd9c6d0eb32aee5c43c5b715b1d2c10f857e9449323494a510", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=HABuJNxtzarLvpG\\&clmID\\=McykfnHexDLUpuWBgxdmHVdOpuuJdqJDdACpdvztawjhms$" + }, + { + "hash": "5690a7288589fa986b78278ace7a2bef33b1c23feabe53cb3dc5e965af0d17e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=PORMgVuFiIMBHp\\&clmID\\=mjpDMweomBUMRJZKZDnfYJCdXRHGVEbswSLYGJb$" + }, + { + "hash": "f8169e562c0ae2e943f6ca3a77c6a03e72484ba6ad9a554373a20285c6259845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP7951[\\/\\\\]+IL[\\/\\\\]+2338[\\/\\\\]*\\?dom\\=track\\.weqlaklocs\\.com\\&m1\\=Keren\\&m2\\=Ro\\&m3\\=972544772559\\&m4\\=Detached\\%20Tikva\\&m5\\=\\&m7\\=Wolfson\\%20David\\%2025\\%20Enter\\%20C\\&m6\\=keren\\.rotner259\\%40gmail\\.com\\&vr\\=logo\\&cep\\=3cmgb1LexbSbZpkoHttFoZ5GKeEFwsH9kipK3sjl1MYt\\-XeZ\\-6u56VyBERaw9Dec7RCq069f8KszJaIjeg9_XeRqzO5Sy1aY2fExFuAyPcEgt4\\-VbM5ZvUYFNi3V3MMWfyEnfbUPXaVGL\\-1Y1ORbaWZqL9iO_yxfw\\-C98\\-SFCdAsvPpzeXrSL1J31Ydb2XNgeAVtDrIrxmMTUW47yhpN56AGfeQeUNy1ieHdkEZiDqkVD_4sUvYMpShNc5aC\\-FUZFpO1eJBuxeSsomCVKQ0br9Z92d4DcD7aKJfeCwpP2Rc48EGLCttK565_nVlbGojLYZE_gVFT15y1vVqad5t0iApA4vhC0L8vVC4QFWIaEM5PHs6k4YnuJWbcrS9SpOm4nd5Js11vDmifoA3DjapKpZ2PiK343quznRMw0xyIclJrYf8cPekas7wGhkQ5a_Ush9iLUfxvEgPLtKLf1cN4lAllSGnJkdnvk8mSv86PSIdlVXMV5ae8TE83Vg5DAEyzNSq6kPOo1NQasJX5FbmNzjIjPLn5SIQNszkwecAtZ6gX9vKcA1hnPz6nGpwt2mBOli4i3HzGraBq_9lZ5XHxOXVCJS9_NmHopJwIkTeUsKwRBmWDxgGzfOoBgiIv3DUKOaflstayNw\\-MRHfp02oj9v4wS6FxH6bHNj3ltUERtNQ\\&lptoken\\=178732e1105c46b707be\\&click_id\\=RQbi1oP\\&var2\\=\\&var3\\=R668BF04D8499F\\&var4\\=Wolfson(?:\\ |\\%20|\\+)+David(?:\\ |\\%20|\\+)+25(?:\\ |\\%20|\\+)+Enter(?:\\ |\\%20|\\+)+C\\&var5\\=1828\\&var6\\=Detached(?:\\ |\\%20|\\+)+Tikva\\&var7\\=Ro\\&var8\\=Keren\\&var9\\=972544772559\\&var10\\=keren\\.rotner259\\%40gmail\\.com$" + }, + { + "hash": "0c7c682e7e5a1013cef9bd090f5f25faf7ba7091c43dec88dc186862667f5682", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "036712629b8b4a69e790ac6afb0c007a1b113b4294c9f69e42d5e21ab88b687b", + "regex": "(?i)^https?\\:\\/\\/bafybeiatjz2nkjsmwzwborqen5tqrk2nk2crsi4affsmmrllikvj3wvzgm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "818bad5b9de503e7197ca0649a8e0dab5924ce27c6d717498f952a071a190b87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zcard1(?:\\?|$)" + }, + { + "hash": "51f2b8641713fda4da5644aa4965191f2d5cf92586b11db2f444ebce6864ef20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "5b12451ecfa772175afb8ffb34c10493c3d37e768ecb7b1a502e496a9219554c", + "regex": "(?i)^https?\\:\\/\\/bafkreib56kuyrpbbjp2rev2woekv66itcemrbm3zmyjffsr2uzh7sqqk5q\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9464b543ffffccf83a7bd53df6954c94a1e8d176bde0cab76f88f8a2be38d7b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1c142fcbaf0b783044429c10e55dcc66070f20330c15b9238076633f50f63a8f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+everytimegoodnews\\.html(?:\\?|$)" + }, + { + "hash": "389f74fe05469960f091dd71b17caea04bcf2becfd40a3c189d9adc04417b5d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=lXqxbMohbpffPJ\\&clmID\\=degomnzmFJBCsYpWaBtvBrEBRhndXvkCrxA$" + }, + { + "hash": "14abe43c88737048c7074868f249c0063b9ae405f1908e48bcfe8cfb13948396", + "regex": "(?i)^https?\\:\\/\\/bafybeieucx4vbkfkwmzm5nso5gpxfhq6jmwpptctdf57ts6hxpsfpsvoga\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "83d151333e2834f950c84c4d2ffbda8b4f6c99985e7dba4b7a17862caa545550", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e628f7bc613177a2e4778a40fe17b09401b4888bac3dcb6be25e9ebceb4ba733", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5a36e730cd908b5d2aec5f2fe345c143bd9e2d10754b9e6100e053dabc610ecf", + "regex": "(?i)^https?\\:\\/\\/bafkreihw2dcgbgrbllalldg45xjq4hmo46q2az5q3havr63wruifxoghdy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4beb529743f33be241e167f3e4aeac1622424dd4ae1c864d1dc5e8078debc306", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=DMZaetPgpmDaY\\&clmID\\=HWSGiYHyAPCNCwhKJAGGgvkRotlPJtOg$" + }, + { + "hash": "8cab86706db9953f00d8879a90d267e2d42b8bea5f5875d80b8857abe1ff9d10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "ef419ec3941534679de27af19bc7d26061cc0287ba337548f0df577d81bf9cd2", + "regex": "(?i)^https?\\:\\/\\/bafybeidtvqw6zcbeeyizyig73nj433czvrhgitka2pxhgufly5vmd72k6y\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe0852546c6c59a29e6c4ca716e2e5ee0d7568c50390f4cceed58d1a0a3e2587", + "regex": "." + }, + { + "hash": "9b68cb121386ca7e68e0a895e10057159802c06bdb1e93ab463dec3d029c185c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "5b286b1e41f6d9b31ead79f169e3f967ec248760e3f1b2fbf88ec7d75b265f8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "70a9e00bb45e74c4166edcc26b121da36b9128bb4c8f8839d5e85fe64f991895", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7496baac6dfc32d9bf8e087ab8dc08129612d96712f7f8de2ab48b33be8f689b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9a00187e4f1154800cd0ec38bb612cb534b2d2d20b0119e8e11681033b7d254e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "bce89449323052f4900ad22a671ca9a56d64b5c1d05a7d69c28bbe0c65e72fa7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "b1b21a71d2b84a8132048a534f6cd3fe419dfbb1a9b44caa8c3761f328d72a50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=tjgsSxpwCsaC\\&clmID\\=JTBWokZjFATWlbzzTaQcXlzmxVLpSZlnVoha$" + }, + { + "hash": "a4bc782f9245317b900bd986b6b25b2ee71c3ca62cd17f2a061a3e3f4850fd27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "26f06fdbd69c6b002a85b33c7f085cfb97aa49eec154faae554a3cb3353f1027", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bnp[\\/\\\\]+home(?:\\?|$)" + }, + { + "hash": "cf0603d02083e181f5a56dd1dcfc5be6c397a6239c057b08efa3c9a7b419f1dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=bYIRuotrZzIA\\&clmID\\=MXVMDPcEwlPoVqnPoTkpeDMqWKkybhL$" + }, + { + "hash": "e4f6a4939b06038a09fb77c0ff78fd972a7e67ee6e5e98eaedd43a648421ab1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6876906ef1c2360c8f307f70f02dbfe66f86c7fe7bbaafcd08cf04eee9b752e3", + "regex": "." + }, + { + "hash": "6722620cb6fb69b29c05b32449f3d6ed87d06eb415194dd6a1cfae8e85bf0ad9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "9f6f5bbc8aabe5e99c86971664aea1e4d5b456f963e66fb978066562822a2f1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "d8ef4caf57e8539ae178e29cf38fe03f36c57c1a89b67b0ac5994013f8597c4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2281ffce68cc0f0debd0a7d79857e11e4a4d45bffa2f9fdc958e970d3c1d0ad5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=gpiTmTqkjZnLL\\&clmID\\=iteanWFnsOvhkpaGpJMxVQabxaotDkoWMTUIoLiyDh$" + }, + { + "hash": "03083cb018c82e8e1e9701d1a9167c74172a5c44d8ce6ac1068af6b87484e5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=MFuAESmFinc\\&clmID\\=LdXRFuFfBKUhWbKTPmROvISWvUNIMjSoAZFawWBmCJ$" + }, + { + "hash": "38322da9ec11c183688bb8f2df12cd2a9f8000d5c5981a846ae1fcbde3f16436", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6239b34b974fa5f4d145d404a79f257192be7cd02e2013066729fb7e47019bb4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7375fd7727f6d2e7b9432b0f9712857a8f112899db2c9db6b915aa98d01b40d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e7542ff79ae3b49a7b9cf34382295725a7ef23b787c7230e443395bac9046f2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=FohJfbMNRwdocmD\\&clmID\\=UNWfpDucnckPnFeWoHqoxrtINXmzuNDoze$" + }, + { + "hash": "3df91cf335ca13bd9c6d0eb32aee5c43c5b715b1d2c10f857e9449323494a510", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=OWCjdsyMOqjnsW\\&clmID\\=yKGArWyLyXBvhQjEfeZOHbhmtlDFtuMApW$" + }, + { + "hash": "eee4cdfb9a066417f4388b42dbbd2e4d23a29728071eb9161d888df4787d9f3b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e4af1d1d2c8c250255cc3adf46b502a938604f62a46abb7974db729381cecb0b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+soportealusuariobaze\\.html(?:\\?|$)" + }, + { + "hash": "7954d84165e7af25a3377bb0c3879c9b84e5d032cec8713f191bebffea29dabf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "5272deca36c5fffdeb27f91158187b482365129c24304fe3a6a7697ec747d360", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ttRRRu0rZYaq\\.syy\\.html(?:\\?|$)" + }, + { + "hash": "bb497e0b722ff8ce5774e02eb16f7d6e7033dd2a88d5d00ffb8ea2d848f09254", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f25422a856aa082e92877a02bf234bb7ec9846a63504f8ae91b19c0239857682", + "regex": "(?i)^https?\\:\\/\\/bafybeiczp6yh6jdthz7ibx73jrqd5mnmjtywdg2j4yenurhxl565omyq7u\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3DU_RH_\\-2Bev2TWXvH8wL87Ik89vaj2Om0\\-2FnIrp4BE7EUg6A1XwNGxNfMOX0vYG5zN2N5FG23meiV\\-2F4SVS6QKhk9iziOuzQp\\-2FnmIPAhr7ty0ovsp62mo3I6yqrm75hQ3ncT4PEXWz\\-2B6oAcW\\-2FsA0beK7xBGuUyRVAFdFIEeZyaUfy0O5J4Rk\\-2Bes2hZ5R9wc4nbskshC2jhJPUzpfLsv9HnboThPXHND5mRO6raIwkJpMQnd0MlVFiROOU6Tx24ZFug09984mIPkab\\-2F9t21PKDnECs1Rsui2irt9UZPPer\\-2FHYHWkFReTskLLboZlNzC0uEruiS6uFrd6QLbqxftj8sdbdXR3HImbQ\\-3D\\-3D" + }, + { + "hash": "7409452d93a74694e0468ddfe44b28b140e8b5d136ed6465f6f1728b675bfb00", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4d7c21081caa4e35f6595b2acca00d493b24af2a7f4074d61b92f89ef2d972f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ccc09c2ea4841ad9f8a32e1e84df56baeb4336cffc2a6b8ecf5581a690d38237", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c2e84eba12126f79d01fb0a776190b645f6257ab70e0b12c8cf890d08cce4502", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bd0eb3496d596e21042b66ecc64ea87458a14561c419441c1bbc03539c7dcf9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fee1a41c2319ebc5443d4fd5ce18eef97b0d1d4f4d373efc3c028e77395a035e", + "regex": "(?i)^https?\\:\\/\\/bafybeiakpet4ozzvpctwrw4zz2xfbsxjzlsj4is363mt5babdcygzmwb7y\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b23e41809fe9b700d308717d63a700754d50ab287b7f0a0e4cbf234d1fa845ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "7c982a7ddef5cd829be2badd23edf73b0d827bf4c17675af3d52785b8454891f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4d12104ca6e35f415fa072fc176cf28776c81f0e7808569931f301404547f753", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "420956eed585878a927d412764d8cdee0b538dcdc074c1394634bf759a07fcab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "0d83b7828f3864c18683d077652aade1884bd1fe8c9d5591e0477fcc8bbee1f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ab679c4930408db0554726419e951133d5530cd4109eceda9a0bd37d14f6178c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e7542ff79ae3b49a7b9cf34382295725a7ef23b787c7230e443395bac9046f2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=iTpzEueGoiOML\\&clmID\\=eOoBNnaiKYGbbewmxDOozFMXDCIAdGTokzc$" + }, + { + "hash": "577694cfd1a671c0b28b9c048086679f5ef7c8de82093ad1a9c2e8c405137761", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "6710b1ad1f89dc56420dba2e7247812b46a423f9569b2886a34f2bc10b42fa78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4822abc0da933adcb8601971a73866f388f10455d5165dffae4deb5d7c502571", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-8\\&secId\\=269973\\&memberID\\=ePAZzKEjfdMyMiwBXumOqYbCDTRXCnhP$" + }, + { + "hash": "7385f06369ffa64da415dbe919196b3429dad3b8da96dd7c3538e80aeb612c2a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "1e62a0e1f29ad609ad48ba6b3fddeb9e79596d4b0973995d427bc158ab4990ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ea33fcbf72bbe9089b8d3247dd0a7c9dc1448ea60f7f6591543b569642cc9d88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "cae53677240b0ec010ca43002164aa3e9dd717f43350167ae580793b1a4bdb16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e7542ff79ae3b49a7b9cf34382295725a7ef23b787c7230e443395bac9046f2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=pMaUfoOTmwPsHLU\\&clmID\\=xyIRaZyiumZzyyoeShFkpChqtILkKJxECP$" + }, + { + "hash": "8be044795ea93d2fc62f1fe4a95a67e3e0a1f5a4f8a684af3aec1219938c3316", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kkPP\\.html(?:\\?|$)" + }, + { + "hash": "1b320f154f6631bbed13a25e92c40c4681ddad2a39ae7a38f4aa7bd94a1193e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "eb6b3774560cbc24709dde876115ba038bf194077696f03beb5a9bc61b3066b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+BaAwk8(?:\\?|$)" + }, + { + "hash": "e62963944f205c22e1dcfaaa5f411f276b8a923108d8edfcd0dcbce25bef3e54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7676711d365adce35bdf59eee5494038f8268fbbacdd0e05caf09f3cd5baeb04", + "regex": "(?i)^https?\\:\\/\\/bafybeigzk4xdfgvttlv3mn2j6ly74kdhwvc2y5nbxd3jwfnzbyihdv42iu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b08dd015cd7a71699c8182b9cab389aa2a2d2c066820788b5a0933b4ad92506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4088321a220dafab9e5ce943411143e86c56ecedd8b911f136ef675a16686049", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "05d251b93e9250cc7d8f1ce6c081fd621aaa5acf522c03951d0c91761aaf518b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=FWWdfzLjBaKTD\\&clmID\\=XNTxPTsnZSKYhNAagogiEMqkdqKAlYAtzYakuyyGnufIN$" + }, + { + "hash": "5a9fead91404054801370d7d5476ee11053ab95519e4afd80c84a89498dd5700", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "867e0a9fabbf3353a86dd6b02ac34448fcbe6c1f3c33e6c38f2b38c671a0ae99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=djdbRJenRfpwo\\&clmID\\=lUXxAOzVWZToagJUkDTHwWERFoutvwNdHZhFbkwy$" + }, + { + "hash": "67976fa9d08f2efc7ee53588ded29caa71facff0ddefb622045b85aca049596a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e805ca9339729e78be39cb94b371a29b33dc0e539782e474b5026b69ad46011d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "475b23429ee50a6f9da9283b237ec6f4d89ad3036873961436cbb16422949440", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "97c65e13fe3a077b08f091d59238ad17a55c7c3e049304631b853bc0a06628c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "629ad062d9283b8c68fd3b2106cee2464a69b9bdac07de59bec65ee12dc9c9cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1df6002729a6c5160ba25a8026c6438e79df6bf000a89fc91c6de35ffe3c4421", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=nlRihScbGMNMt\\&clmID\\=zojIqgkJluYyaoQzIhvsiynJrXrdpxwTQuofGJraFdkdMR$" + }, + { + "hash": "176422ad8e11ab5158634def19c7d047e0db2bb4549381355c92c7f111640a52", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2b344253d4fe518c9748b1622bfb0b97aa6db0c4d99a5f9609f83bbbbdf7c737", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "be99468554c71c84661ff3ca8cb63801a000da22fa5fbecaeee6bbd9968f0391", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "15075a3de568eb05246772a0670ddd8407dfd148dea02d372c618054a29d9fa6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+east\\.htm(?:\\?|$)" + }, + { + "hash": "c14d447d5a595a28bfab98e60bfb7b88f1ae3056c235b58bc98bf50fed839749", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "eee73156fdc8c8ce1132dfc71d0ccce6c547c13fd85fe00860edaf852758eeb9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e334ba47310b3f669eadc0ece06d0f36f503eecdb903e9b4fcdd9e366258e662", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "04c883e5618e0c8731bdf80e586777c55a44f5c489d72fd811e5a5a00c9629f2", + "regex": "." + }, + { + "hash": "a23cf0efa428b986cb69181eafc161f6078f4c2c6ce873f06e678cb904aaabb8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=tOQumdKLUHLggMzw\\&clmID\\=DTtswlwzezssxYvKuGclZUUegzZrIfUlAdQHRPwNmDFnbW$" + }, + { + "hash": "5ea35935fae5de152ff16359e4886750fe666fd30a55b574b16553ff073338a7", + "regex": "." + }, + { + "hash": "daf103eee31f673294b211c5dcac2e199ec21ffb0d6920a990eef74d85d92020", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "12b9848c77bac714dbbbee93c1011d67d8f4868f3f2dd3c8d33b2afc582d1438", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "b5096df5ac56735f1187d2ca8c01ae691084b13db4c68b2e2692aed5ac8df1c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f6751272dabf0effc80685823315f4dd6a7d279410835e5778576fccc9f284f0", + "regex": "." + }, + { + "hash": "0679e4e68e080466ef5024ee4f07c09191a1d0c529a5bbebb70a03cf9728cd60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "749a629427471fea585a63c61d5df63a6fd406ce9d4d81292286ffb57c20051f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7db7fe6332246179bc4b2d5487ef5f97afd0ed289904fc9e6ba5bf6841ac0f22", + "regex": "." + }, + { + "hash": "946fb1da5615d2a6a631bb282052a0c23a1c98b1fd0eda24e672c5fc8037ac4f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "21d5049c37387b8cd3536f0a694467545b25b1a921e8cd62bb4f618c5db72c45", + "regex": "(?i)^https?\\:\\/\\/bafkreicywo3fxky44zwla644u7wznyq6tany5uouj4cdomd4vdpyy7fcsu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e3e9610ed65905bbc472def1fc306a404f12b1422d855d3eca9f2822991d8b86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "027475801e0a104711d80a3e1eb0c396c0e9817e7c3ebad207d4854f44e65b8b", + "regex": "." + }, + { + "hash": "58217f62bdf4067e71f93a83862cf2740d1af2e3223966050db17b93f1cce60d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "698bf51f6fef69c8eea4b36ea9a2af529e0cb849bf3ca9e8468fbca10f22e90f", + "regex": "(?i)^https?\\:\\/\\/bafybeiczkvkbtpm6qv4h6evqkykgbrcpmnkroxrzesy5a4jws4miyvk3hm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38a806dd2d0049314c68fdc3aff3480819b6fce928eaafa9381d8368de409f6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "106aa77a42974ead839be9539eea7c342f8cbc87dcbef84c69fd3ac9b9aeed4e", + "regex": "." + }, + { + "hash": "96e8ba0111d5d2f2eb23c61b8eec99dd899558fe6c6d44123b63c63f2a00e67e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "3df91cf335ca13bd9c6d0eb32aee5c43c5b715b1d2c10f857e9449323494a510", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "23e0c93eb1d26fae1e97f3cfdd967016cfdc9a7daf438016793217ab7d53eb68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a65456e2bb7845318dbdfa61ff50b18f7c455878836c8f44f94db3e168aa04cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9647582b695a731c97574f4483aa212f018c809e9d6ebeecbbbccfa1004f1d09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=10051998\\&pdata\\=f0o0_d\\-LpoaRzI4\\-W8zR8MXIjsYhv9s\\-r7FZ8QIl6gS8O6tTr_CJ_gbqjYtgBsljzpAyWwRLDXdxrEySD9bvRP28EPMymigJv5lwtbnU7dTgVcJBVx6WUxVWgoxPtTN9nae9CODoH_LCkXL601MwpQ9PIh70CTnsZp9KwbHWDPFZUvK7M3LmT9lLLLbCNv7j7Nb6ANAvcXekgsHkDRDGRXVvnhRmPJ7Qj\\-AVHM0oshqqft\\-g_rinnbHVJxKDDEGItGbuwCwLy9O6Q0dZRl2O9x9Gy44URQ\\%3D\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "7e973c817eaac7ba69991bfd068a48cd1fa5c1a48e2eb16ca4e63c88d71b83cc", + "regex": "(?i)^https?\\:\\/\\/bafybeiaej6ccbl2daj4td7327oo7isi5ipodnbcx5xuujcrgrxmjlqdjk4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b41de0c6328fb86a55f0d80ab85fb29626c8d3bbe9d3f854ee0b529588e24ef0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "d09367d0485cf63644344ea934e0cc27654a662d9764a9340a579dd236e58ebe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=yWDebSapcJeV\\&clmID\\=ocvibAfYOYsuCiXWxsqtsILMjuRfFLH$" + }, + { + "hash": "f4e9a60dd28480595985f98b57ae1ba89d57afecee5586660d429c779ad45f71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bc4685d214874ea151a2d2c9d7b67406dc6cf9e13d1dbb815baa3af2ca3f832c", + "regex": "." + }, + { + "hash": "807a133d281f7498709428b1425e0e755d3aba344e879a89a0f6868646c161bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "51a7e834ed0cc7bd5c2e8f96fe12d1331d65e3bed1edd4600dc603f2bfc1bbd2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d3b2f37270e0f87895cd98993542712a422d3f7494174a0b5d0477fdba1f0583", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9474837b972c4ba522749993da53cc4dfe93447d7474cf52e927c2ad53a6f48c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "93d7fd6edbf6a0858ac7730d5b4dd9afa2f0d2534ab42d957bccca191abba2d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "b1b21a71d2b84a8132048a534f6cd3fe419dfbb1a9b44caa8c3761f328d72a50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=goPQTBrYDesX\\&clmID\\=hScLPLqrvCcNWOkJoydlnaVEIPlQyjIcRehvgHUDJSh$" + }, + { + "hash": "f8efa64f8e1ed3462801d2f6e0ce79559cf539148cebf581d5dc301411c77240", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+MonotomicXindex\\.html(?:\\?|$)" + }, + { + "hash": "27688388e385a62c3d479d8ca6475808e62ad73c05901798b36098be3138278e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4db73cca6773a52e07bf8d08ab1111a6f747ca1708ea8c7a770c286e18397f44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-5\\&secId\\=92089\\&memberID\\=QZlPzBMECjeRNLHYJIfdfwUnLdYepRLLsphCqmy$" + }, + { + "hash": "11eeaf4dfc404cbdd9411088dbe8b17d632ca4decd47ac4a4745eea65012ca78", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e7718bea0838f065daa2ef3bc54031693705f85a3cb74111c9f689a02c486ec0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=YcrSKWotfkqz\\&clmID\\=pUHZWqjjYLeBgcvtcyMXagtYGoEyVBqpReG$" + }, + { + "hash": "914c55c7339cbbc45aa81e0ecb3b9d97afaca565f806ad08cb20c67c1cf22694", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "dad39f78988c1c7f75c34655378d2abdf8e8b94dc07157fee276e7aa7b5ca228", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "877862153f21c0ded88cf33f0240a96dc007e5d5086e86e8cce96c35dc69c8be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5f997c9e819166726a64a50cd47bddae0639663ccf3f10ecf56758b5c48004f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "6a709d503948aa6ea8794f9762b71168d682d99d37cb65bbfeea8384b17d71a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "6f9a657633af78358376010d380205982739a7dcd68d7eae67e1da9c14406fc6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=rUzlVZrlHxKHxz\\&clmID\\=NBfhvtIKrYdnnpNCfiErhXRyHEgpUSdBTgFvpAnR$" + }, + { + "hash": "b5096df5ac56735f1187d2ca8c01ae691084b13db4c68b2e2692aed5ac8df1c5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-6\\&secId\\=17122\\&memberID\\=ceqgZOGByKihxtpmGmcPtynuBikDJdeBRJVA$" + }, + { + "hash": "48e52ea655ab8c92c8068488bfacdd258519197ee1373a8ac37560820e3bc451", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "626dd2a87b12e357990c5148b90b5e63280d9b18811f74e2feefb42c2022ecab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "0fddd0947608c78aee9970072c4f7a3c0557739e20a49e45cde36f5a793941dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6d5805c28f3f7c66cc9bc9da62472975f3f696a90e17cb7308991a8db0c1ee4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=YHsVUItxVxndwU\\&clmID\\=QgUQuFalqIrnjOceLobTyWajbUpOKNZJqkaqbpqaRW$" + }, + { + "hash": "313a7c3c433b159739ad0e59052662a902451396634c01be1ede2b1a3d8f425e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-3\\&secId\\=973363\\&memberID\\=URKRwmAApDFmpvnzsPRPTZDFvTkPZlJkuMRwFVX$" + }, + { + "hash": "a6c3f21e6157fefccf00131ae179edd34fe921e0fa3aa0c8743aba32b1d4670d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=FbxywWicDtdppySm\\&clmID\\=faLizmEucTbRKgvYVPylkNyjoinFlDeqeOXrZXEp$" + }, + { + "hash": "75e21b32d399bc42ed43af2e9d3b9fae879601caf5cb0a439f726a2340fd4517", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Universal\\.html(?:\\?|$)" + }, + { + "hash": "16d27217af42f2cde0b763c0afe3b66dc159989ef6c8d8cca168db324fa2752c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1372b1c297d594ea070fa1af97c161fc5a4e37821395be397da9935511117afa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wwcjuipchrest9059ertina(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5bcc054203fd91b014d9d4a2183bef7adc5e540e14174b0163eecfc0bee7e06b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=DVMOuxxKCdhjuw\\&clmID\\=xzggECmdFgWmUdblipwTJkrocgeoHJrhQeVnlHObdP$" + }, + { + "hash": "f5d046c312dd491c958aca9d8e5b1d0dfc366a9d5927090e1a2e3ad9b5632fb2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "43f703ae0d76a67c7cd8096fc084e7393ebd557796047c9971d735ac58d5ccc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=AvGFZFUpKJPpXhuq\\&clmID\\=cMiCcBPEOowlHnPQJTFPWELrvNupvVpAETdZD$" + }, + { + "hash": "5690a7288589fa986b78278ace7a2bef33b1c23feabe53cb3dc5e965af0d17e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "de29220c43ab60f0ac249362d0fab924227c8ce42708d283ee71b48a116ae585", + "regex": "." + }, + { + "hash": "0df47c7ef989ad5778fcdfdf68aa01edaaf9e50f7e056f87bf5b05faabf5179f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "77e90c3dfa7d07b0bfac330aaef3145c4566fc11a1a6c814d47f72ecd704014c", + "regex": "(?i)^https?\\:\\/\\/bafkreieqbs5jsyg4wl5g5ink2k7zvutd4gcuwykie5zxs2b5cmj6efw6ci\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8cab86706db9953f00d8879a90d267e2d42b8bea5f5875d80b8857abe1ff9d10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=APcQRBfFdsqbHjI\\&clmID\\=qfPhgiAnCinqxdBhskoaUYqjETXQfwyJggSslJfDSeQe$" + }, + { + "hash": "4af4abcaea858e696c9411cb0175c43c950121bb8fcf900df0aaa3d9652a16b4", + "regex": "(?i)^https?\\:\\/\\/bafybeibbgb53cuz3xebd7io4xrugh746z2jhllzkp67bwj4ssy5lqiegpq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a32506cd0edf3a029dbfcca059664479870344b942465658158e1e9e5a061b07", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7631a27d2f0d834e79c21eb554450b7857981ed00a2a610fee9dc5e6b73110fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+akpis\\.html(?:\\?|$)" + }, + { + "hash": "889df6c75f1de673c1b1009d711eee70e3d573434c9e6bba885827ca686b38ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "58c3a240a59ae4d063ce70f014f3723c92bba468901a075a8b50d0210d35470a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f8169e562c0ae2e943f6ca3a77c6a03e72484ba6ad9a554373a20285c6259845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP7951[\\/\\\\]+FR[\\/\\\\]+1459[\\/\\\\]*\\?dom\\=track\\.twalekats\\.com\\&m1\\=Rolland\\&m2\\=Arcamone\\&m3\\=33687891162\\&m4\\=Cavaillon\\&m5\\=84300\\&m7\\=65\\%20Traverse\\%20De\\%20L(?:\\'|\\%27)Asse\\&m6\\=rolland\\.arcamone\\%40orange\\.fr\\&vr\\=logo\\&cep\\=n7XbmRc0LLzFFnSVlnNU7FNYLYmylz3qnZZZy5xP6f\\-5FdUDSdEd_nQGrsXD3skRoZ87aov_4mkDuTi4LvDC\\-HGNLjMQML9HBXQERysX9Iq0VbSAReTLxl3Hd_oz_SucA5ov93ZpimzsC8k1mx3s_w79OsmKQ7gIDVQr7euc9LZE9BXBKpkYV6EL3Gou3ciAYE185jCodiZkYiPQMeVQG2lBwe5CsfJcW1RUBytRDvuZZXR26i5_WY1KUhnDGu8VekKuhVk2uov_ApMkIJu8JgoFmZgZEP0Pgh4zVeZCnLXQAcs\\-Wu7yZ2NFupWELaX7i39wAYQFeHBIqqoFdowAjkLgXfRttgvU6\\-SONwwGUAk7Nempvetu_eSh1NEGvAOjok2UxRxVUg91xAILrIFNb8m8l6VGeLNFpDf_jT4mHtS1RFtB_3DDS6U61uXubqXGmN2emZ10SeNt5YchEdkYbzNpoDAfLN_BafKDmIu4Osy3oB_V3vJB2s12XMmlGGnT1JFKdmOOwgPlqCJXZkdW9m\\-\\-\\-SDuNFjT71zLJnZ2x4DnOQ9dJTg928i6UiUooljx_KH6UJ_TaSf608EshsQ5t6J_y9Lc8DJvqLk7ifw5efZoN_Zcod0scnJ9ELEMivDQAsrq3Zqsdyur54Y7dYwyXYNKYOL8X7hO7eBBhiO3WaewHExkZLoLth8qs5zGcHOCBk9c_mJJZpsz1vPmt4MlP33f3pgRKE8AtnKwZvukmmY\\&lptoken\\=177c320901fa595f0320\\&click_id\\=nors0uw\\&var2\\=84300\\&var3\\=I672C77F20BEEA\\&var4\\=65(?:\\ |\\%20|\\+)+Traverse(?:\\ |\\%20|\\+)+De(?:\\ |\\%20|\\+)+L(?:\\'|\\%27)Asse\\&var5\\=79\\&var6\\=Cavaillon\\&var7\\=Arcamone\\&var8\\=Rolland\\&var9\\=33687891162\\&var10\\=rolland\\.arcamone\\%40orange\\.fr$" + }, + { + "hash": "ef90bbcb02b34267d002655370cebd6e9f535141ee3b847edc59da7a6fb67b0a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "389f74fe05469960f091dd71b17caea04bcf2becfd40a3c189d9adc04417b5d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "74e2d7674c15e3834261ddd06402c09a8762835cbc9672b55ab2fcba12aecdd4", + "regex": "." + }, + { + "hash": "c3cc9a0ecd54a60934a549150652a024fa106649cba99b774848e88caed0b4aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bouro(?:\\?|$)" + }, + { + "hash": "c46e8f1a9a6236b23da1aba6a852a9b443cb945958c77d50542db7ea12dd6ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css[\\/\\\\]+wp\\-check\\.php(?:\\?|$)" + }, + { + "hash": "8ea7ffd394df3ce0cd918a8989843069f0b9ce21b9636930503172f609c41382", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "a5f504a76c4aaa8538013bd2b3a826258b74d8a2b12d7976114b8f7b3d392dc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "6ebcb1056d672ce6123dfa19433ba5582f3f4892e505310f714284a2d8d47e22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ope\\.\\.\\.$" + }, + { + "hash": "3ece67e713b5d4596e3179d064d79aa6d0d8815948287c43eae335cc111c317b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ccd5495efd786e716b0f71da42413679218eee8221ed0ca4117f030601229ce9", + "regex": "(?i)^https?\\:\\/\\/bafybeicoqzdykfcmh4wabv55kv4dekrsw6tmpgdwd7ldsgrtgpezi67azu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa56aedfec9133dcc988473a207b3ceb9ba807bdef758ea3a8cdeba0063a80f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f8169e562c0ae2e943f6ca3a77c6a03e72484ba6ad9a554373a20285c6259845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP7951[\\/\\\\]+FR[\\/\\\\]+1459[\\/\\\\]*\\?dom\\=track\\.twalekats\\.com\\&m1\\=Rolland\\&m2\\=Arcamone\\&m3\\=33687891162\\&m4\\=Cavaillon\\&m5\\=84300\\&m7\\=65\\%20Traverse\\%20De\\%20L(?:\\'|\\%27)Asse\\&m6\\=rolland\\.arcamone\\%40orange\\.fr\\&vr\\=logo\\&cep\\=5r4mg7iSwuFieythkoI3XlLPpgQE9W0rsJD\\-\\-Dk5nK6uNVpChXEZDU9DjPi4Kc3za\\-H_Oh\\-XOL3DDYzIq5\\-7XxEjGp8j3HPMZ\\-O8aYx5Gn7gOWzXdo_QGOV0EAT3Ggi8nMoy3t2Ev665zck_n3XqDe8DCUButu3MmEPgSq27Ss96mz83gKG3bqKkZ7X5dma\\-oGmnR3nvMHc4Q_5XeEb4wPRKJf8t9\\-MTP20YRrnKxnpB658BscDK9dY23N1TBgIeI9UjvOOCcNpCgel8HnRfqmEX_2V\\-2LrHbhmofcRkg9A\\-PnYS2EVhtcCmluw5SPlcA0PxZTDcpCmWagqnEgTSCQTbqFpZjHAdE1LoHz2HRr3kSlawhox6tp7ufOMRjcUCEkXZ_hQix9GPc9thuJbCwRit11suXPVR29LocR2NV8fzg1g3TXHbl0htv\\-A4aE3vjNKdtoIX6WaGc7pQPUrtYWD1omYz_bXgvEcytbB3U6E4KrrjLFAAlnMCefzl2Fl28cAAfjynXfiTOwpPOPGZUTsOFo1isAwRwLwA\\-rP\\-WWaxVToBGGSjv83Q4uCiLcE_5l9KNiTyz4SpzRb7\\-vTmsfYcXkxZ4EoNpzc393ngQI9ZTvLQ1grdmcK_rQ_A8RP8oj_J4GzexmfSC4KsXdPZtS\\-q8zHm9nN9KgFjHVIUWqUgCBEpmn9BoPyBcNyc9E89VgkjQ2712IoJwm1nUPHzd_ngbff3ar9b8NnFjLIqQ7U\\&lptoken\\=1723325901d970b8208c\\&click_id\\=nors0uw\\&var2\\=84300\\&var3\\=I672C77F20BEEA\\&var4\\=65(?:\\ |\\%20|\\+)+Traverse(?:\\ |\\%20|\\+)+De(?:\\ |\\%20|\\+)+L(?:\\'|\\%27)Asse\\&var5\\=79\\&var6\\=Cavaillon\\&var7\\=Arcamone\\&var8\\=Rolland\\&var9\\=33687891162\\&var10\\=rolland\\.arcamone\\%40orange\\.fr$" + }, + { + "hash": "6ebc718c9f7ecde2a708516e5ca66a5e3dc3271eff29992120d931707ec9d3e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2cba5fbc8ffcbfc4e2f98ec60060289fe55b1bf246745c4dcd38fec98f379f13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=jPyUBHqDZyTC\\&clmID\\=IEpFIiLjohgXyFguhobotOgoEUUQXTdoYY$" + }, + { + "hash": "46bcfff852fd326f87df112431a4f89f4af095ca08c75a580c5f983da09428af", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c1befa8993f3ec12048966f368f3469ad02fc2d3e2579de15cfe73abc68f550b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=MgnasnfERkfb\\&clmID\\=zZWMaDVIGjqauFyxgIBFLIurltsyDYjXRVpfGB$" + }, + { + "hash": "fe21eda361ecfb1add32fa0452b9774c146b80ba9b3375bd05817c4551ce08b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "caad93866e1d1ba16481439442253b8efa5ab9f73aaf3b2d672bea8af4b9dd2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "9019eebef771e3ed0028f37fdfef25c66f2b6b993980897afc4cf0bd7f7e61cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7a0e5cebee1a85d30c872979d69b13bbdb8659b22600a0d98ab064b0f46f1b05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "b74e5e1f77d24a9035955d4cb202c25ce517eb58b8d86ad4921f0a1bf57d4c2a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=IJLFSASzTkD\\&clmID\\=HQcElgcKAFOSIIWmcuynRneaxesJreaySDBRThBZMsn$" + }, + { + "hash": "b8ef85be1bb7cdf00c197e3cfb93e3a26e13ea5d8feff3e271378a5e0b062372", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=SGelXmkDvRrfyobJ\\&clmID\\=HTKFPNKnxyXEIrFINRqaGHYsIVYwTYhBMpSArMT$" + }, + { + "hash": "c87e6cdcbadfb499de8be549012075a3aadbe17f0ee3a0673e1ffbfa19454a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "acac5007cd2e704c96e6a2047739ec80a66665a3dc7e289cdd85388993a9f02a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7d357d4e7e40a0875e248da23a785d69c2f80ac02d9e1c205484aa97afa3a6aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "492b13cbab503c294c99261fa03be6d017840f5b579d021c4fb4c3ebed646958", + "regex": "(?i)^https?\\:\\/\\/bafybeie75rvppv43rqaq6cqh4qcb5jphj4vw4ffvmjkvo6tm7ett4vo354\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4db73cca6773a52e07bf8d08ab1111a6f747ca1708ea8c7a770c286e18397f44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e57dd970e59807d8cdd4498c17723d9612479ec8edf3398b57323ee81b1ea5d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "d53cee315367c9808720371709bd8a94a85bde5fab43f4709af44c710bdd4b49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "23df68b46eb3f03c9292c47cc6c4ad7c0ac3538fc3b893c96cc669e0fc3898f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a6c9f2106e2cbf2e400db408a5abee797cd2cb7294e6c95d0f7f29ef9d3d66dd", + "regex": "(?i)^https?\\:\\/\\/bafybeiheneqin7grsc6hmon566f3crtpgy7pfosqd25klmemoytpkpt3li\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d4c54a05775ef6cc000781b6b77947ab6f3a8703e0fe4dd11c4fdf72b38f5a15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "023a2ae2df02a861b7ed85ff382b90b7d9b0e0f9e01614ee638015264a02c73b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4ef18bd0a0f8a120721c1c6fe336a36194005833c378a20e2bfa3f32d1e2fc17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=fGeVDteDIRmU\\&clmID\\=hVCtDRiCDDOPqaCRezpQdbRNTqVCvqc$" + }, + { + "hash": "843ad825556789f77f555a43525f52fcb77e3518f9abc08395f54aa121e4d615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=fzZZIhDwceiIBJg\\&clmID\\=IzazyULKSKkFcajsiAripjpjDylbLJe$" + }, + { + "hash": "542d469eb7d5732814ef67956754eb894b20f3d693ee82c316cdf6723494a5ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+66ao9y(?:\\?|$)" + }, + { + "hash": "7aafc863d1bc07d5b86eb822017a205e9f5c9fc686e9dd0eee285a2afbed3565", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1c2cbf2ae9dfb26b1c0ec5b0143484fe79aa1fb4b76f7837bc8bff855d75fbac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CLB6LA\\.html(?:\\?|$)" + }, + { + "hash": "772324dfa004e541be99dc2866de4d641f60dbc4cf347f59733b5d68af012a1c", + "regex": "." + }, + { + "hash": "d4e400db2458af0910fa12f6ace8f2d41d3f6e0cc4188ca871244ade0992a134", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "b435b8b6b5cb4b3971a88bfc2713e4cf270502874f2eb1d53e384d7d2e8ec97b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a32c4c459309370f41c35f9adedcaf59e39f04794631a5cd546ceb48e00c5c25", + "regex": "." + }, + { + "hash": "44ec75df1bd73f8157c5672d114ef76e3a3e4a005ecb6239c3960d97d5ba9662", + "regex": "(?i)^https?\\:\\/\\/bafybeicaccgzvq4zqfozeagcxeuzd4fo7k4hpy2jxl32hab2yjd3w5ejoi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d4bb2757505859e1de07a9a2662b51d0427288916182cd5c898b22ac9092b2fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "0994337022740ce29932352c1db403d486efb109e3adf80c9d840a77b04fe96b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mtx2auth\\.html(?:\\?|$)" + }, + { + "hash": "e4f6a4939b06038a09fb77c0ff78fd972a7e67ee6e5e98eaedd43a648421ab1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-8\\&secId\\=918950\\&memberID\\=mpDRXeecPKZxrRgSEDCmQHXuXqyKrAoYAPhWfjhQr$" + }, + { + "hash": "0f55ed15c8941d59dc34630374e76478add660c56648ff2197d8afc1583199a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "283487382b7b2f62848fb7a00d119ca27ac7a2341b42c8c438fe52a6fdf11e86", + "regex": "." + }, + { + "hash": "476fbf43e47e6bb2e4d3b7e4c4aa7f514c5946e4af1284f6ec986ad33baf8d30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4168dbe36199704bc652ca7f80656e4bd9b000f5658da0bbe3ff6deb01d5d801", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=CSFCmrnCklZOtGMz\\&clmID\\=mHQjhOVaOerKDXcFGoRZlOOgvXMOXSZyVnSPvUDmYvz$" + }, + { + "hash": "ffca598c84e0f2645574535107ed06f146510e2dca1acd2effb438cb25f709be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+BaAwk8(?:\\?|$)" + }, + { + "hash": "05a02e35417f4e71069b91a4194fe72ed97e0f63d918069150704dff813cb082", + "regex": "." + }, + { + "hash": "c46e8f1a9a6236b23da1aba6a852a9b443cb945958c77d50542db7ea12dd6ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css[\\/\\\\]+wsoditz1\\.php(?:\\?|$)" + }, + { + "hash": "bfdf4031d3e0d0b79f24d995707055a7ecfca7f2afa10790b6324efd32ceef37", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f8169e562c0ae2e943f6ca3a77c6a03e72484ba6ad9a554373a20285c6259845", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NEP7951[\\/\\\\]+IL[\\/\\\\]+2338[\\/\\\\]*\\?dom\\=track\\.weqlaklocs\\.com\\&m1\\=Keren\\&m2\\=Ro\\&m3\\=972544772559\\&m4\\=Detached\\%20Tikva\\&m5\\=\\&m7\\=Wolfson\\%20David\\%2025\\%20Enter\\%20C\\&m6\\=keren\\.rotner259\\%40gmail\\.com\\&vr\\=logo\\&cep\\=LEIuntxZo9_mrX0bJtjks4\\-Qf_S7mwF\\-LRLQJNj5ZipomOSFm6VsJnpwXbX4iIbWphiwSvWU8s9HCfoI6rMYKGGhXoHJYhDgO3wSIRM4Mg5fsPl7jHHbyo0_xn4jjOvZtS8aIQj4UkiP5P3qwvEiZvTpgUjtwI3U2E1VfvxzV4MXJhWkcJJdUT3cgmt1o\\-T8UhCITgCYXicwUU4f12BJXHDDnKPPCqWdkHDpqSEgHox_k\\-APei_FbcDWqalmFwFQDr4ZIwiptIuGiUmUqeCjhlcuUM54rYjCi3gV1EtXAYZY8We9Vreukvba7guvKHTS\\-Mo\\-CJ4Twt\\-yTAqvjfr02B70GTrgjfUb88LHJnsnXhECgzHNenszualN7JAMLSS9pPLo8kfyiup3yoMX6_za\\-jyKSQbtAb20_f1kQhg467A1aAGCrgSW68Xb_J0DySGuLE4aaMg5SAEYPP8elOcDOlold3qSuru2l4D2f_bnGWMczPPUS_SD9M\\-gNdguA4VTl2Ea9Ukyd2w97X97WL24YZaZ2lxL8K4Uh9wH9z6fPHFtfenIj7GzJff7TC8OsXfWTh2wAqsQDia3Mx\\-3XM2y9l7H4mN1sVdR596f93Vl2TtoTeSqBPOLmEX3KmUxvoV4VTde9gJEiIudGGQ2IrdBH3blz2C0EloS17mwUT1R7Q0\\&lptoken\\=175532b5099d205698e1\\&click_id\\=LFV2u0B\\&var2\\=\\&var3\\=Q66CC64F98F466\\&var4\\=Wolfson(?:\\ |\\%20|\\+)+David(?:\\ |\\%20|\\+)+25(?:\\ |\\%20|\\+)+Enter(?:\\ |\\%20|\\+)+C\\&var5\\=1828\\&var6\\=Detached(?:\\ |\\%20|\\+)+Tikva\\&var7\\=Ro\\&var8\\=Keren\\&var9\\=972544772559\\&var10\\=keren\\.rotner259\\%40gmail\\.com$" + }, + { + "hash": "ba594a945cdffa2de2d328c12419aae30b79e8251159b6112cc37a02cc1e1ad9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a2b6d3f794a01e612d905e58ab46d41987a02b318100fd83367a7d213c91fc8b", + "regex": "." + }, + { + "hash": "cebda40ef50ef8a2bf2f0598a64eac9312e3aadc537cf3990abc2876138d9f22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "baa029a955c3e5c4c5b8bea498a2c424f9e0bd762383b4367d8afb701d6df656", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ec1fbde37171f6fe3d9fd20df5f8013b9ef1230ef2551af8db5e7f0db10354fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "8e38f275c7819caa2a13813574046441e354703c10aad480d68f0382e3eded85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fbhsdjbdnef\\.html(?:\\?|$)" + }, + { + "hash": "0f1f53cc3928fa9d9fff102acb0266cb728c2d68728e845ae8f1104251adae40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c46e8f1a9a6236b23da1aba6a852a9b443cb945958c77d50542db7ea12dd6ed0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+product\\.php(?:\\?|$)" + }, + { + "hash": "16e8786935de3071f4e51642f234f863ab3e3cfcf4f3a3080c6498119b3f732c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=BcRGxOrJFkgreZF\\&clmID\\=dOUDlQbfhFcUKopGXxZyNdNOrZzbdYtOKHZjbMGCM$" + }, + { + "hash": "ad45a336f76df03c7cdf08a9205dacf4179306420e88a79e255e6927c13c7068", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "fdeccb26071cb7af001a427b11a4805289c73d706a7ca68e86b70db506511cd5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "546495daddc8eec109af5ab98e1f3b7fa82a6416d596bf0ee8c049f4dca7a3ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=XyuORfofumgmnqFa\\&clmID\\=fnaZGvVaFApcerIwlwEWaaYcbwJlBqC$" + }, + { + "hash": "5fda49208b8b1ba95a856c76e9a40b3df9d43983e2d388b15e7c07736648f8b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "b1b21a71d2b84a8132048a534f6cd3fe419dfbb1a9b44caa8c3761f328d72a50", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=fNwBWuoQcVUivNCf\\&clmID\\=anaieqzNxNEVnJbZlCWoyCFzSQAZNpaCkOmHIEgdskkYE$" + }, + { + "hash": "ccd8789e711d5b40c609d23b1cbb587b0029dad71e0b332befaeaab7907d44e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "879ad805e7ea1a0cfaee91fa18d0301c5a7b7169ded0c43850835b95d72fae3b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e407460881865c8b0f4bf24c9766935e79328e1bd56d737ada4fd5c767a0505e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "38565c0f82c5aa82c532ab045a99320aa0104f6bdaf681daa0d4f87ab082f7cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "1c1485cf312fb304cdb7f8528eeab8a36604b96cb820377667f9669dbf1e630d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=lWxOySFjkZDi\\&clmID\\=gPRWwnkTgiNTjOMNnXgJYGjyuiirWcPN$" + }, + { + "hash": "aaafc6301cc75d4d9416c159a317586b117e22f90ebacd788d0d09da31fd43e6", + "regex": "." + }, + { + "hash": "5bf931413d8038ade965621994a5824d210a3f1f345c52ba17b89a0f0a383195", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "5200d79158189790236564705cb585f2758737844e28b60e075e35f5d31d3742", + "regex": "." + }, + { + "hash": "47179833eafcc18cda533383c2415e18c1c0ecfdeeb9dd38d7a22a34b0177836", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "833b422e7745d8c2e35435e258fc347163db6ed7e2f229d11fbdeaf3082958b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "b3a03623f0fc1376563660dd7a3e0d2c90a8491ff442e64ad5dc58f554527bf8", + "regex": "." + }, + { + "hash": "55a4e277bfb3a0ee9d387135028f32e1303539404288ddac97bc3e8e2702a03f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=WQOkjPDkPYo\\&clmID\\=MBQwIKSDTMBrWFdUcWbOOFpBOllYRINaNUgQ$" + }, + { + "hash": "e29070c6f08c4c8e55369c2e98986701963e8e00c16c4a2237cfb6ed42413216", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ddd03ad36eb518dac773f44ba002f3ae7dbb29dbb1bff4141af8442a1a102a2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "542d469eb7d5732814ef67956754eb894b20f3d693ee82c316cdf6723494a5ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+BaAwk8(?:\\?|$)" + }, + { + "hash": "7d821534dc6e54bc93b315bccab44662035247b1f28c27e81a7455f9f63cd575", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-1\\&secId\\=307194\\&memberID\\=GecdjoPFPRUoMIExLqUbqxHPbrENGuYlHwbON$" + }, + { + "hash": "69b1b5ec0c2c3378741be5bf180a1e44c7f6d39b97391c13671b670daf3ee948", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "43f703ae0d76a67c7cd8096fc084e7393ebd557796047c9971d735ac58d5ccc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "44eeadcfe9bcc21daf0d2d280e7895c111cca74899db64e5ad3ad8073de982b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "226319d953b96fc6f69e77334daf804c96ff51e9c63be30a5263b5cb332e5258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "19a00907d7739453ad83fbbcf0d829a65ea1cae6f0ee5e10e70aa1cd2e1e39a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=vVPgeYjAAaANPEKx\\&clmID\\=nHuKgqyHgxfqFZvhJgbDqVOEOLybetueu$" + }, + { + "hash": "c04d1bd4fa8291a0da386a831d9e986d1984f78993dfd6a7b22063506817169e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "da6112f247b1cd78a36152cbb8275b9c8ba6aa1bfca20a014bbe49857a7e5aa1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+orangemail[\\/\\\\]+4[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a8b5a93986da60e3c23757880d6044230c4047381b5f6a622bc8db66bf05fd68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "89f8b61ce7397fa66afa0bd44ad49272e64a5cfb1e7bff6a09d3914cd346a80d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "e520bd3e3b67eab2e855f7085aeb6f6fd0da96cf11fb54ae857174a22b105f59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1b3fecdae3975a0f5d37a4d66d8abfd39b3cc1420f34ec096a646a8283ac9c67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "921e113e84a5ace41938084c609ef334797a65ff6d2e0ed73709bb8d677164ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "3af04c11e39df263a518d60af794108194581c2f28689eec27edf11aa97d9772", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-4\\&secId\\=685165\\&memberID\\=altFxWHJCNLYzAZNixaHByowqzGRVfhnG$" + }, + { + "hash": "dfb759f78e4bc4404d4bdf60225cef0bc27c5a6ccac551c80d3da7ac4c4bea9e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "3e2d66043858587f2527a42dcda99dce5a30cf9cdd7d400bf0670a9ca5d3900c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "cbadf6835542bffdd81f46637b57316d35f9a9b8399a7795e23aa1082e063543", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=GQYMYrimvgRpjsy\\&clmID\\=rGCketPnekbYDdxlrAQGhWLuzZxoCvcGcKUwhiTStF$" + }, + { + "hash": "fb5cf3d9e3b22bf57f6ea19eac7262e0e836bc2721a09e4cf927315c6a6e729f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "1c7a8da3ba356e1c3cd4fca48e89eb15ed13faa503460ad161825a29a487e164", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "74d168e60598a68bebb5036884f5dcf888272dd3db7a6f66122064015eeeda7a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4822abc0da933adcb8601971a73866f388f10455d5165dffae4deb5d7c502571", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ed1f4c31e5e205921dbfc613b906c6301bc07dbcfb44dd2ae77ec51f220adb24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "cf1fdf195e4c3647360319aff7014153902df841c698a0f666fee843b6ca92d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "092320c015c25b983387e445268b9dfae38a6ee57549670690bde3245c733f1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+CMB24(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7683fb0fa43261235b4989b88055a5f44cf5e072a03ae10ff8bba6979b472879", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "048e69402d5c5fea8716131bad5062343be325b6d324755bdfd9044cb8a1b380", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fdd59e72ac8dcfa3c24f7df2a0a68a12262a9a42faabc5efc3005b24dcf2c7b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "99bad3be604ee06e5551e09b7491faf0c43f22a21d502cc85a60acb6b592bbf1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "894a963705f4cd9fc851f1295d69ad72d6cd8b299f673f8ca17b5757d2f8c5e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "383051a40ded32314cb125fa12f096e0b80d115cffa7df98a25c5c46ad65b31b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "8dcbe18d1a59144ea9b9da156d7fc8f6a89e838a02fd6c6e7a4c07c8604be653", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "03083cb018c82e8e1e9701d1a9167c74172a5c44d8ce6ac1068af6b87484e5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=CKAcuraULcyLUFA\\&clmID\\=vcQbUVEMRnFqJahPViZsyYmAVbivZKnDVghdyP$" + }, + { + "hash": "843ad825556789f77f555a43525f52fcb77e3518f9abc08395f54aa121e4d615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+dataPersonal\\.php\\?userMetaData\\=666d22da7a09e$" + }, + { + "hash": "313a7c3c433b159739ad0e59052662a902451396634c01be1ede2b1a3d8f425e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "26e6b0ed676a3c4d38cf6c200f0f76870fa78b544dc93a504c18ae7d5ebbea05", + "regex": "(?i)^https?\\:\\/\\/bafybeifdv55mh3aq7kmb6n6kapggk6fea6lzdzg3wt6xqz2myocbojrobi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2c1734825504477b51884841e10dad3b2ef59d19e1a5a0717eaaa8151359938f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "8be7f95cd76ba000a3a7956318e212f0d882bab0ee3d2cfe5145756163a60915", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "3ece6a288c0ee222e43f1b3363962e441ec0c7119f948fc89140c62b065773ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2a1ed1c1b7037837dae7ae3d13096873ce91aea329b280a3762347f59791a6cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "b854c97505302eb683b3554a61b51085a530684761dde19db97b8497ea8d24bc", + "regex": "(?i)^https?\\:\\/\\/bafybeigqbtiicpasq6rlmkwykwgjuxnf3decp6dzgzcn5mfx4jszzsvvoa\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a1d54b838583dcaa4de7b5c0a25328632943b49e3cb5fcf38881efe3a07a9ae0", + "regex": "(?i)^https?\\:\\/\\/bafybeiegnpblz32dn7zkgrlxuloj56gsrookwfdk2mkjeu556wwuw5beuu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "26e5eb61c3f18d0157351cbe9e17c859484cb24cf58d7e31f207858a7de30cc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ea3b38853e58052d3af07136f3a6f953f9947c8d158ffa9c65ac27a9d4c9999b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e62963944f205c22e1dcfaaa5f411f276b8a923108d8edfcd0dcbce25bef3e54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=AOcXlBGpLjWk\\&clmID\\=tBrQvoWNIhCujnZJNbwomZFwucApzvLvtxxm$" + }, + { + "hash": "21a68772fdf492959f7faaf6ce5b4f5de495c7252946959136e9f810733ebf6e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "1a58de79f0ada29fb8658c66f43f94151f3afdb561705badf768feb7d09e7a0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=zpXdXGJJyOVqAOTi\\&clmID\\=sUyQvQBErlnKloTNjzkrEqnnFhZlLZUExarsjHYCSedjGN$" + }, + { + "hash": "8ca200e6897359b864e1aef0b06162663913a3599acc155a5c8cefa1096c430b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1df6a541bc9d31fd0436b28aa6fede4fca18ecf83efd40f78659245cf94fa7fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "4d13189f9e202fede5491ea33c2f059906a42eff63c5357ca8eae4b8879ad908", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=rodxMuqIkFp\\&clmID\\=JRvFqDdpHdKHwhhJvjpgvCHfXFZpCRORywcenYmJPZ$" + }, + { + "hash": "54b0587552613e8f63effda8947b719a1dcd6cf245c23939b31c81f7ac0c79eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "f2b6b346be48b4d25f1043f6bc63697a8efb88af819016b45d2efb4fa876b796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zcard1(?:\\?|$)" + }, + { + "hash": "1459461561ae9bbff59126a15ef171f2b36399452ca2ecdbab37ccc5b6e3c910", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ac0be901364b686ce3545234ca5593c343975f70a4e7e6f0fc28d0eb3dd770f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?filename\\=zimbalam\\.html$" + }, + { + "hash": "03c0a5c445d5706d4c6885d987eb41a7a3b8d4b680f59d00ded2967b1ad89be7", + "regex": "(?i)^https?\\:\\/\\/bafkreidlwojizwvskp5fmyyh5o7p2xinxw5khv63xf3i63in5yohlhdt5a\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d0cc3e9720fd4ad8eacadedceffc46cafd1baeeed2007b84f49a9293d916b0ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+PoDSF(?:\\?|$)" + }, + { + "hash": "a74f6934532d4fc8d45850459f392934a1b9747d0b57700f47ee8747052edb91", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+south\\.html(?:\\?|$)" + }, + { + "hash": "c6d40d586a1f88b23a3a923f4cb91d665c60bfce4f8d982bd81bb2c4d61d472b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "80d5a6e5c4439df1972df39a2934d4bccc717f96529455c4bcc1052c269e61d9", + "regex": "." + }, + { + "hash": "a2f26c1ad0af5330eee590bcd19d3dde7b94210ac13105552f8ec445c21033bc", + "regex": "(?i)^https?\\:\\/\\/0s\\.it\\.prod\\.eu\\.phaabqsa\\.64\\-227\\-108\\-172\\.103\\-55\\-38\\-63\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "361e5f4d883732493636e035da4e0d81fe35ce9ef2d18e9e04e11dfc11caf0e1", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d048c4dfe2e333ea8737d38fb28d0e0711919098d18340d7a566879102197bc5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c3cc9a0ecd54a60934a549150652a024fa106649cba99b774848e88caed0b4aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bouro(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4412d844742f5d6987fba52130540ccaec3b1753f398ccfbc2e5be07d617fa28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aspxfatejasoon\\.html(?:\\?|$)" + }, + { + "hash": "97ffdced3d18f14c97c0ae283f547d81d8fdb9342a663183e2eb18b5700de5c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1c2262b6d075e88fc9edbcc246e2c950fa0c7866232d02975f1063688f33cc79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "9d66bb24ebb3740b78f47c9bfa36f512d4bc2792adcbbd4b9f8580c48a11494c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+log\\-masuk\\.php(?:\\?|$)" + }, + { + "hash": "55a31fc85b5e028736dd4caaaca45b8625a3aa23a48ecbb216a204799dc7f0a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3DtVwa_CInW7\\-2FESgMCzt\\-2FMjqgcwFwC\\-2B8hxAPEUMcCwp9CRgZGWR1\\-2Bgu5OFxa8FOFazuTgZXr1xOVmQkfaQ\\-2Bh8\\-2F6QU8\\-2BoNRAYZCGCcQjvQKG9BJL9jRYMq\\-2BGMpjbmtKCjSOrV4t\\-2FqqlSiYvAQU0Fk52CQhnBgsaf\\-2FQhUXV5FZ1xS\\-2FfVt4AIfxgbqKTS6BbEQSDmfWceo\\-2FX1L7Zcltzj7UCpLJ5wycEqp1ONEwyFZOGaKU2sF1twdFnhPtR1aVPyQZTcNDeEAi\\-2B5bJrCjAvNR3nPfSa6BnV3viMLOztZncXcQDUlMLOw9mRqmfktnu8\\-2BNdifxgKiqltWsPBuFUJ6bxaX\\-2BDRBkEw\\-3D\\-3D" + }, + { + "hash": "baab00c80ee3584e9b1129fe2f43a03ba0b88a838d1d0965f9adfc0e98bd0e3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "0a94119cc41ab71b360e9131a08a104f612ceb4d811a2dd45492d90e2313a952", + "regex": "(?i)^https?\\:\\/\\/bafkreigxnl2qr3uflmky7ufztqaypqrfcl3wxivljjrekkuyti4abhc7ea\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a325f0a7ab354d177c6d95f3ec479374fdd7f52a77b99f7e34a6083500293843", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6422c220be3ad97ab6c0084ea64fe65ad2b03693985d7340669995d460663e1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "d989f4f13677ab4ee2b4185a433d2e5c9c8a34088fb359786e82ee684aea7ce0", + "regex": "(?i)^https?\\:\\/\\/bafybeial4tbz7wgnv6hzryiit4syxg73rylqk7fwxribxuztyyq27q2jiy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6d728cec31e2509354c9faa9e8dc7688741b298088251750f26fee18f9b56b7a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "37d4a18978d9143f00b420019dc7842f96464144c29dfe88136b17e4f606aa85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "5a7c5775626a6dd00aba97193f43dad1098743be27cf9e81c4b2dec712f08b32", + "regex": "(?i)^https?\\:\\/\\/www\\.valeriekok\\.freewebhostmost\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6d93b93715e9cc2ab0626748e3c24e188827afcbc4f84f447496813af93fdf26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6356555633bbd86bf8655d5548da561bcea13bea598f4f77a3287f686bfe07f6", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d84121cf12822ec17eb0338d1b5b765c80aee0de231f631c70cd4a7aa4d5b8b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "a4bc782f9245317b900bd986b6b25b2ee71c3ca62cd17f2a061a3e3f4850fd27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=ZGHnRMIkVbaV\\&clmID\\=hHcTgbCIPgsEqBzUvLQqbFMkKRsiEtxemndMPrQQyjvz$" + }, + { + "hash": "cf155d7d84f8b55ab193f6909c739cd729ec3b71c95b57743df9defd31d9dc2a", + "regex": "(?i)^https?\\:\\/\\/bafybeidv66wym46tpjnj2qaalheiiz2vo4msidis6valspzzby32wkspsu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2cba5fbc8ffcbfc4e2f98ec60060289fe55b1bf246745c4dcd38fec98f379f13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "62e4c9203aeff40641960dd804df48c96123059c4bb6efcfe25935f9ec4722a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c47ee9154db649033f9e17ec917831cb38a212e11e218fbc8532d81b2eef05ab", + "regex": "(?i)^https?\\:\\/\\/bafybeiefpfkvi4kuq6it46kndiqmyl4ez73wjrjy44zltnucjozpkhdyye\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c9895a84e7dcfa5644f49d4b6b5e25a069816be332ef8881a64a1afdd1d32038", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "0eef72336cb25b4a43cdbba1c826f60fbe883ea0f4b4b3885f262c8db0053d45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "749a629427471fea585a63c61d5df63a6fd406ce9d4d81292286ffb57c20051f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=JBPqVYOOVMCLh\\&clmID\\=PhkbOVyzotxNQcQjuDxHcXquxUzLLCTWiqYLcKS$" + }, + { + "hash": "369f4a3f175b129a98bf651bca3bbbef4f3bb713674358dc59d098e1bcaa9e11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "1b21858c631d23bc45f8d16166d0464b1d605e77841b77aad26d2141f83a016a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=pEwNPcouzcNYpI\\&clmID\\=IThaJafRmBWuDXuyiRTfZrslnBCPIuodvkmbV$" + }, + { + "hash": "ba59ab494e056cc20419622a292555e1340ceb218601aa22eb9bb38dba0827bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "5fb6a677b126addfd1ada29d094d38dc754fdbd1dc14e887c5b17fcff196fcaf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "6a70e97db506794cfc1df9cc85fa7673cab40eef369ae3ddc68f223dbee02fb9", + "regex": "(?i)^https?\\:\\/\\/bafybeifss4uuvynedijy5vzlbebm6ourdjcwyxb5ibqcsyagtgeiruenz4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "570e2cc68a397d38f6602a223871d6e8d9febdac06a57b048d1f47fc23b61046", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a8de081b901d33d58ce0a48054098689757a1adb6de9070ff7d80e6dadcc2f67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "941cf07334d7c79db1742533d29ba3b679fa3d93fe97c75bec00aed3ed3b00f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "daf1e93677ca5dff0451f97bc82d6c5f56bbc4744f5341ce12e3b6107058afb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "386c5a09f2ba1de0219df32fb55a588a41d70cc592b35421b1ace26bb024ac7a", + "regex": "(?i)^https?\\:\\/\\/bafkreif2642fwwuta2fnoxvwe23nxrxxnvakmg7g5ey7busbqpdeqcf2bu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d9a0cda56eb679fa8e6eda49ceb79c7f9497921db9ec7fd4b1e3950f48b40a51", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "68f555081a210a5d8dbf048de5f1259a665832bd4baaa0dcabdcead5b10b340e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "c6cb8059c0b719cd7916d04b39044c1d2bfa7c119903b72cd48eef38ec2809ff", + "regex": "(?i)^https?\\:\\/\\/bafkreihcqs6fyn7goxkdi5kex4z5hq2gggkg7pfyvm7awvg4xpybggmdw4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7553f9e43632028212521d8c066b603cad0c8497ee92cd0d7cd76e3dc924f809", + "regex": "(?i)^https?\\:\\/\\/hubrbxx1\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "97c65e13fe3a077b08f091d59238ad17a55c7c3e049304631b853bc0a06628c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-5\\&secId\\=688400\\&memberID\\=VwYZuQudTXPedGQZmOFnlFJBbiULtQSIm$" + }, + { + "hash": "ff825298d3bc8f9bcacf5c33d189a2eaf0ba552ef4682c5f78942073d74bfe21", + "regex": "(?i)^https?\\:\\/\\/bafybeiezqxvewvpkjelv2o2lcvqzpetz47evsacq3cjmscp6iskmbxejhe\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "22c2e89fff5a82ef6593ba266b1bd02a95c5c822e4dde1bf2bc211740d3ab7ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "7cafc8c4bf582f1ad6aed10bbdb091090b9c476d7889f264e34d930a09f9ad3d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "f35c0cba51ddf1e070f7bc8c85be3ee1a99ed7f3a5469cda26e05a660090be64", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "ffca598c84e0f2645574535107ed06f146510e2dca1acd2effb438cb25f709be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+66ao9y(?:\\?|$)" + }, + { + "hash": "282be9eb2225eaa079e00aace9b4bb74be0cdebbfbe5c6f5c9bb27120eb22d91", + "regex": "." + }, + { + "hash": "ad2de059bb02dcec802e0ba7e6912769721aa9c07acd2576a209c043ccbc98a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "05b502c710661d18c5a220a617fc2a37120d1169a22edea122d158722f738266", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=LjwnwXvBOqQ\\&clmID\\=uTyeEOnZUVANFkyPaqkikYbiriqUYNIgTQnzddmPUc$" + }, + { + "hash": "16e78a2b06baa7cc81b826c54c39c7de83d9db6ec64b6c461d974833c3881c02", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "fbcf3839c81f286126093571f594307293ac34bfc89a6183bc92ca883b533899", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ddoonnvie\\.html(?:\\?|$)" + }, + { + "hash": "843ad825556789f77f555a43525f52fcb77e3518f9abc08395f54aa121e4d615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=RKGrPegshhIL\\&clmID\\=beaYcUOgkAXctNlnkwSHJwVmcxEjcJSkZRHwjjcrHka$" + }, + { + "hash": "6ad4877ad8ff7e5b1fd5fd47f0bfaa75ccca5fc1e5b2e68357fb42f983fb61c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4d7c21081caa4e35f6595b2acca00d493b24af2a7f4074d61b92f89ef2d972f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-6\\&secId\\=387463\\&memberID\\=UyxsvqauyhmIisIesgvQlMuQQvOKGFVmzbkldmg$" + }, + { + "hash": "5a9de6d1bcab773e88138c23d732b71f565cae1278012bd5f5230c02799342a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "224823dabecc093cf8336834705e3baabe740f0e98bc79e4acb96b44be301303", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "856ef8a52f984f8aaf85300612a6c4006b4e38f1639133462b0dbf2ab59473fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e3743e76e81f54b0a4f38228717b6e15092fa5a65cbc7b3f9a243646e69dbc2a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "6ad4877ad8ff7e5b1fd5fd47f0bfaa75ccca5fc1e5b2e68357fb42f983fb61c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=soUZOnIqsoWD\\&clmID\\=IUgSOuELjDDdsMianOvwhVHIORIScpsfHmDjemLjNVDMT$" + }, + { + "hash": "9141c0cd427d88a5b847211e1a794a2b773ff3171f951c8473825ac5d7b1f71b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "46a7a5bbb59cf34603ed875d6f70927d006f00b4b1197755b0f57c3da6d0c1f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UKep5KcOm(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "03083cb018c82e8e1e9701d1a9167c74172a5c44d8ce6ac1068af6b87484e5ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=KoXQrvjMHLYiDhW\\&clmID\\=RRToziwpqImAvSePGieUJlhHhSJwtnZWdopWP$" + }, + { + "hash": "017999ca4b2a2447a30fdfe628bfdf99f40e8ad4844ae04872363213f4418caf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+66ao9y(?:\\?|$)" + }, + { + "hash": "7bdfc9b1cdc38bb48d63169bbded8fc4dc379fce66c0edb4a615f51804e26b43", + "regex": "(?i)^https?\\:\\/\\/bafybeigh3u6ne5nvd2lousxiklfrduvzuxkjbgmh4plukmgoxu5fmgtg44\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6892959893ca71ed669c4375d9101db4e6bc272c128537b1aa9aeaefd741274d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+8\\.html(?:\\?|$)" + }, + { + "hash": "804a038f4816dc9a3ca3681280d81330e8c839ee053f8fdbb23a78852cf3ada2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?email\\=abuse\\@abuse\\-att\\.net$" + }, + { + "hash": "b74e5e1f77d24a9035955d4cb202c25ce517eb58b8d86ad4921f0a1bf57d4c2a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=nHctGnniAMj\\&clmID\\=rHLLfpFciZQWIzsEZLWRYhERQDhCdxrMPK$" + }, + { + "hash": "11c00064d39541d584af7ba8d4438cee2ba33754fcfe6c329754f185bcc7547c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "0df47c7ef989ad5778fcdfdf68aa01edaaf9e50f7e056f87bf5b05faabf5179f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-1\\&secId\\=34597\\&memberID\\=fxoqNRhaulBsHcGOlAySZLMEtTrucqKACPgIw$" + }, + { + "hash": "f524d2480d30cc4c6a1cff75e41c3517beb1250252577bb07280016c24096075", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "5b1ab23b9188564aef0ede5d103c2f2bac189efcdaacc119aa0953090c5bf1b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?filename\\=master\\.html$" + }, + { + "hash": "d028e0b6e8767b135dfc4bb80631ab2d0fbb0de377ec5f7d03f38e22566de91a", + "regex": "." + }, + { + "hash": "843426729611339efde98c4905223771311d3e6fc61289e47d7b2f99c9ff38d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "71b7743cad3e0415f27e20bc08895195dc4f1cf16f32c0ebfc3e54a2595a726c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "06ba5408c8db036fef794d4fcdcaa3e55258e495ee1f9675e08264bda8de7e23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "94e569219f5385e243729050cd6a691a53e5cd20ba84ed4eaf5c8b94f1de7faa", + "regex": "(?i)^https?\\:\\/\\/www\\.xahyba\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "66f91a10e797e313984f1d28d96a27249a2cec924560ed1f1112daaef9d21510", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "2cba5fbc8ffcbfc4e2f98ec60060289fe55b1bf246745c4dcd38fec98f379f13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=BNwLnoKJCZXBYbDz\\&clmID\\=zMdtAzzbVdoBZLeZwCzBuaEDIKmyvVefox$" + }, + { + "hash": "a3a82eb3e2fe90f6a92cdbd68819ab4f07910e7080c6731e35ffc2a367d4fc2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ipfs[\\/\\\\]+QmbqWZUBrdbJaN4yd1PwAD2cYAZ792tskCWnfUg3cM9FTX[\\/\\\\]+poipoiqwerasdfmn\\.html(?:\\?|$)" + }, + { + "hash": "c87e6cdcbadfb499de8be549012075a3aadbe17f0ee3a0673e1ffbfa19454a20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=xyQdsTBVYlRMw\\&clmID\\=vbEjNmOOxuiXdcKeNDzMyRPEmcYCXVvEjkQPQGxfVVg$" + }, + { + "hash": "da126a9240689b822403733a2b8ecf77e9fbf72fada883e91e6e9c8f9687c365", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "836206e1481002e3e8e730194ddcd19a1235de5edd55f853a1404179e19d4135", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3DcrhF_JEOdIm51L5OtwJ8Q9RW9NyrJH\\-2FQTM5K4br3Mh2qnzBzbKT8YQVslLUGxXWB\\-2B8wGOoa\\-2FbNLUpavdcT8nouVrnAE4BWv11Abm8uBVQIh32Zh9eDEVp5vUkJ8sGvwRJ4MogGvWbmCgCo1UdUwwfElvMJJO4zSGjH4V\\-2F8w13H2TSQBJzOlb71avpOi8Z8vmZFhO22a\\-2F4KoVFjKls8Gzf2DHWPrkVClVSEpKu4gm8JFrQ5rjym1pQX97xCcs6LzmQ\\-2FnUFNlmwIAaMPahR7lRRojI8aGumgwv33Hdai9YtDnQms4DFEnC\\-2FplfOhBnlYfj\\-2FwZdTj0GHmjqyo6X6wq4kpiEj8w\\-3D\\-3D" + }, + { + "hash": "9b018cf0546d238b077ac0bfb7426fec932c5bbf0ab03d702f1841b815cf9e59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c1f58dec58a0c47d92c5af97d7de02321cab213bee3d1b40448d7be07726c008", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "30c9b0a887a6869776a838a1a5158a9e1d632c5516c960c6514307b4ce9c430c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "d3d3f8d2dacec9783db038e1bb2307cc9cd6762f9b376b16f036a3b94af32776", + "regex": "." + }, + { + "hash": "7428f53c93519289ce637d74034eff973bef1e7f4bc3d860acf55e75fbb8755a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "5149fc11a9a4bbdc3d8d2246888ba2f134ce89af025140bd4b7092fed6fc5cea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "35e360b0a085618f6e0181313d12c6b7d77cbb96214ea7539e24deec268a2bef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "536457cff8880a4eb6ef120fdf9f736c9d80a28ca557712539eda2cd9ea42e2b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f58122269451c0cc0acf75361968d4a58a4377f8a09bd990f5d5e0a69e7a3044", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "21a68772fdf492959f7faaf6ce5b4f5de495c7252946959136e9f810733ebf6e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=LtZbheJGtZFtvIkC\\&clmID\\=MKocGwUGXcehJSCKnXgCuwDskAZglCwcGfEudOpSpxu$" + }, + { + "hash": "f025199783b48afe49d196363394f9c5e9c2493d655d5787977acb7a708200df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+online\\-application\\.php\\?appID\\=tv\\-L\\-4\\&secId\\=406225\\&memberID\\=UkVoyxlNetWEbDqFZhHONdahppNPRCMGrKzR$" + }, + { + "hash": "d2d1643029d2b218f7bedda469f48f9e91882d456a45724a6fef4cef5540e097", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9da3e227eb74cef9cf5f68ac242bc4a262483f4e1bb86edc8d257f73d7ab1bdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=COGCapkeCKfbE\\&clmID\\=XOkYOkcIsvwaSyiqrTyJHKJOSVkUhvxQ$" + }, + { + "hash": "4ddb70d746b3f69935c1807cdb4de6b4284e50797e7c91cf157b0d808192456a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "877ca6297eecb1ba28ee7ce43bf69826e12e3aacef92e6254c0e459fdb5c3605", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "329d73ce26e02261f49339273a93dec3485af86d62d208541a4ff61fe805b7ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c2c23506c0e4708b7391a1c5b2e1db1610cb1fe14a7a1d8c2e1ed59f2a0cb6e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "e28608d00995897db48ddcbf6f981cce968983f010a4631b616d26b8dc7d4f17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=bvWCYYzzhVhPrhR\\&clmID\\=xSqCUlfCgxzwGSfilRTIHxmlZQzAIXLatVFfbUe$" + }, + { + "hash": "714b990d8a07ba3bacbcbc99fce4954f448c2002fc77c44a98f994fa8cf32610", + "regex": "(?i)^https?\\:\\/\\/bafybeigr3zx2t6mkw2ojkubp77pgvb5yvses2jewbzdpuppycwtxzfd25m\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5464451295247fb2922f904f8f40ef1c075684189712c7c46ac1965b2889d5de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tax\\.service\\.gov\\.uk[\\/\\\\]+check\\-income\\-tax[\\/\\\\]+what\\-do\\-you\\-want\\-to\\-do\\&origin\\=PTA\\-CYIT\\-CY$" + }, + { + "hash": "65e8b1044367ef64a41653f1b3d43aa311bb4f201a903c9c836323e77bdb0868", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "cf15195b18498048e1d3804d8ae9dd0fbf3d2f08d166d50e236bf4fac6a0e78e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "d6f71ad23b841084d68b3b80e5a95fc48061fe3e366b1b9cbae85715c8de5c8c", + "regex": "(?i)^https?\\:\\/\\/bafybeiczdddyv6vz3a6pkqjwokvhyfjb4qvtg6xhpegqh3mw5plexhcd2y\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c8295be804607840b9db849e26831212a5f210cfa9799c3d509d92c6b1693f1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a109ed4302e75055101691703b60ac28b2920f6f0cccfb04988f0b853a9a7070", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "a0939304bb507c7660928767e37bebdd6fc9f90d61c383982928c1e27fb6d622", + "regex": "(?i)^https?\\:\\/\\/bafybeiestn2ox645culhmuxgunoms4ft3i2tzvaaqozb2oi225ktgjg3pi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0c5db429248ec8c2e54b352bcc27cfdb359ff64bbf30183c2de070884cac2d09", + "regex": "(?i)^https?\\:\\/\\/bafkreicecyxlm4p66ygfjk7w3zlujcpnmakadwcegdxedcsm2pinxkdnsy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df94046e4bcaddec4d427da035b6119535af4cf897a7ebdf12cbea0fdb639afd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?user\\-agent\\=mozilla[\\/\\\\]+5\\.0$" + }, + { + "hash": "ae6ee73ef39341470054f4e875404b871a8cf6e10b840d45732fd110d40ea205", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "4514eeb79b061276995d2ada08e3a148483405ddccc703e9a82b1491140bc2a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "3231d3b10a165275bd8b9faf6a1d7616e02c3621cd9b4dc66b62b108acf6d0db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=ZtUTfFVUAsekZ\\&clmID\\=doxphAqVbHmCQMuyKQbEYCuJwkFrtvynmPFSKNjG$" + }, + { + "hash": "1e80a8562a025453afd420d8d28526764bd3eaab385274c834686a14b5bd6e5b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "2bdc66ebcd05b439e56d30f1e591f96556b6a0de8b8722325d7abb22991ce533", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "17c6504b0250ebaae1e18c8348ec591de0dcf77fe2b6910983696ab54a2a5bea", + "regex": "(?i)^https?\\:\\/\\/bafkreidakhwkkxfijtuzt66hp5sadop6nszgvshwgbcalzypity2vah32m\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e7718bea0838f065daa2ef3bc54031693705f85a3cb74111c9f689a02c486ec0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service_tax\\-gg\\-check\\-hm_income\\-individual[\\/\\\\]+applyClaim\\.php\\?userMetaData\\=BqQCihadHBqHwhhn\\&clmID\\=LLikvoLjEhPBFOhjFpBmgOeGvzNQRptxZshMhV$" + }, + { + "hash": "e70e01bd0b9dfa8f00f737d42f71b0be15ed2d9ce81aa01c0114aa9a1b250b9c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "b8ef85be1bb7cdf00c197e3cfb93e3a26e13ea5d8feff3e271378a5e0b062372", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "aa2ae5535e9c61c76658e1c9b4962629b18c336908bd3c33f972955e1f9612c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "1594d32812053fd10e7b83ad9dc070f414633716faf45cf14b0a847b97d9eb45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "946fb1da5615d2a6a631bb282052a0c23a1c98b1fd0eda24e672c5fc8037ac4f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=uHnzjWVEYaMxEK\\&clmID\\=vHzClITITkPnVfuaHFvbVgOUJzNXoKLmYXMgj$" + }, + { + "hash": "6650025d992de799606d7d42eb295c2624217ea7ed74ccd86a03f73c20824730", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "f18b175394b16a3a9581bd824e0459c001e4c13b5ab0cef1a144568accf3821a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c9ded8574476ae2092b51565bc1fc88297e085b99fd9ed6cd00350206fa5bf15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "7a851a9c98e72177c80f670e82222625c95634c533c6a14d7a4b3dfc234f233b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "c1a3d9ca5f31b228e183e2ada0ed84e13f5306de555788227ddd69d1495130f7", + "regex": "(?i)^https?\\:\\/\\/bafkreihzmjii5rcj2jr6wl3zvyxdxb6fdlwoijvk4sjciltirms6aivv4u\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "50ab5ce9bc00b28ef08be81d8f6f5f0cb17b0a428a25593018cf21b82d8d3d42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "27ec0618e4af6c120e8bf24847a61bee29975448838e90b08bd7c7069eec502d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "ac211f2b7fe9ff5ad123d8180b2bfcd5acdcd42039b4c75ddc37df701b387b41", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "cebda40ef50ef8a2bf2f0598a64eac9312e3aadc537cf3990abc2876138d9f22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+online\\-application\\.php\\?MetaData\\=tuUceMkToZOShC\\&clmID\\=qnBfFtYVBpWTKvNHeUDpWcSJgJsGBnqEHeBwYyN$" + }, + { + "hash": "6145209c831913b6c7f15c50e58a164e1f3bac810348704609c34f25e591d07c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "6852211d8001c2911d0c8fe2b9ade8261ade4ca8550ecad5aadfe4b444e13a9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "09f79a10dfe09da58297a88bd22958889031318f2e24099811d26ec7cb451d72", + "regex": "(?i)^https?\\:\\/\\/bafybeiazcjphbg54shrg77zis2dtgadlcsyttsqxxl7yjpzuf3i4jkblrq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b62c86b128ccb33e95fd8a4e4a1dcbef3291883024446999d47b6d14f670b1f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "4ef18bd0a0f8a120721c1c6fe336a36194005833c378a20e2bfa3f32d1e2fc17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "ad53fc10e21796c14d0c3f378eb78ea99f51e415215ad9989df29195d625beec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+refund\\-forms_faqs\\-update_policy\\-v\\-cs[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+check\\-if\\-you\\-need\\-one[\\/\\\\]+refunds\\-and\\-cancellations[\\/\\\\]+apply\\-for\\-a\\-refund$" + }, + { + "hash": "f4eeb007a2db6c4ba308ed6d3e949ce9077d3746d0f29c93025b15a9622e723c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "bb6391eea78380e39f901202565fa9b863757bce65dea59a27a4ec2fa27e9b74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "52c03b29ce930e3858260ed031521a64a06ad02d4623f5f2f1e8636bb502348e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+licence_renew\\-Check\\-authorization\\-Page_topic\\-Update[\\/\\\\]+index\\.php\\?resource_url\\=https\\:[\\/\\\\]+www\\.tvlicensing\\.co\\.uk[\\/\\\\]+cs[\\/\\\\]+update[\\/\\\\]+your\\-licence[\\/\\\\]+$" + }, + { + "hash": "57aa1726354811c0d95f19219cf9fbd30686b5acdf3e56f1febdd64d20324784", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyjtn\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "06a0b648563b85644161ab894abdd50c4d9a5d9d67481bfe156e3d3e9c25a6ce", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a6bf62341a51acfe159b272d0039ad0f72f33511d548a75c6f1742d5eaeb3714", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwelaxsticsearch\\-prkoduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "53be827fbbc795f0a6f5c17dff72c8f0da51299fed5dbab8059aa2ae69ecc636", + "regex": "(?i)^https?\\:\\/\\/freefireredwardsgiftl\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3fb3b9f40105c7bfcfb772194e86c625b71d537a3d5f32d079ea0477fa40f928", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "df554bfee539fe9585408a0a297e81acde46ebf2501e6afd0fcbee8f65853000", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c623072064068a1a7c3b6e4c4fee7da15819a94b5d46ed26ddfbc1a18c5d0c97", + "regex": "(?i)^https?\\:\\/\\/vbnmbvnm7878\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5b58b81abbdf33c997aa2b4a8d24d71dc300b5f077174c7949a7d19a8f0c2007", + "regex": "(?i)^https?\\:\\/\\/transaction\\.coinbasewallet\\.com\\.50\\-6\\-200\\-124\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1f47af71c8b332b0d7bb6ca9931dcaadf3c1bd7de4550aff7333132988d73259", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b9d968daab6de44dfeb399ee226867dde5a6c44ffbb74ee240c8226576d61113", + "regex": "." + }, + { + "hash": "b0cadfcda0d21d504a206285f9f3530159784a1e971a60e3cc0f7d336c2b6356", + "regex": "(?i)^https?\\:\\/\\/trendinghotvidsx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8181ae0ab80a65c83978bb419cc1acb061c9adaa88c5e4475ef60da4b2677e5f", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6a5f8c43d0aa7d8b4c960aa1747ab40b5d7a39234cae8c33cb6ecf34f315ac3d", + "regex": "." + }, + { + "hash": "3819703206938402ddae0ac1e8b45439cd7cd0c47d2c8e1958e30946cf5eb127", + "regex": "(?i)^https?\\:\\/\\/chiadrdr\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "47a313cc1089b3d60d8b2cb6812ef3032cb0266c27b48a9f40916afb9e1d2765", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0b887ea2c7a2349f7fb4882d05ec053fe1e27305c277b55473e078a3873849d1", + "regex": "." + }, + { + "hash": "17443751ae6f1e619abca68fdc3e8c33a87c9c45894b81ad257337aea1f45546", + "regex": "(?i)^https?\\:\\/\\/redirection7896451l\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d43e3a49ea4c9d31d45d71ca824138d7af687b5f96aabd03e8c6ab7e557901a5", + "regex": "(?i)^https?\\:\\/\\/13256498789\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a722cdb7dfa658a4b51e99bdb55cd3e2c4ab4fbebb6f045c84ff00d5cd7d4742", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cd7363906a40b3e5850bbc9498be6c476d907a2e4ff0e3a585e1d9a01d24f858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+keeping\\.html(?:\\?|$)" + }, + { + "hash": "4a6641ea175bb8626c6347b66c98683edce1cb60d1da6bdb6e1cdbae1c856d39", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "764433578bd3985a36584901034f5819f5c5f1f3dd5ea61c480524ffe6b5831e", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e660875b0c3384fad8418b5688716a39f91db2da90e7ce86ef9d298f5440e461", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyjtn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "de2362cfa68b46cf40e38868e0050de397d1a6840f79c61934ad1482b735b230", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?user\\-agent\\=mozilla[\\/\\\\]+5\\.0$" + }, + { + "hash": "1c2e2782ccc22533859e0c4c78fc3c6a8483a6f5599cf000f8a4287f71103460", + "regex": "." + }, + { + "hash": "d2643e162520b00468860c08d66cb51cee73f97c271deb7f1efeaca6ddab7ec5", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "dbd396aa98adbbb4f766f7eb9753af4c00c3cc6ae84b02b1e7bc5742642cd7ec", + "regex": "." + }, + { + "hash": "5a803116cb3ab74b6ff63008c9bd6c8ab6f7a14898d64997c2fbd2dfdd9fe9b3", + "regex": "(?i)^https?\\:\\/\\/jskfnje33e\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "edccdcec8426ff62f2ade5fb7eb7e7acbbacaa77773613f7db6ce46fbde1a040", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "47db8eefa8b5b599c5cd94b81b406516f58a0ea36132e6da00d397c78daeeb15", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "716562de417139938dc41746c5592e33feb77f4752bb7e9b3fd642bbda89daee", + "regex": "(?i)^https?\\:\\/\\/molpokojo1221231\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a6ff673e0a9c70161c17ef48d5cd0c76b4353a4c8a6ad019e8596f20d72e7c53", + "regex": "." + }, + { + "hash": "b46961033bb9e3f00d42feb3f0de065dd7b8e429f9120e52a8fd4afe2aff55b6", + "regex": "(?i)^https?\\:\\/\\/vodouaze\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "890dfc1e44322f9a43df602dd95f341ed8b3f5e560e0d8fd867792a61366e46e", + "regex": "(?i)^https?\\:\\/\\/wh1350022\\.ispot\\.cc(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "29caf35acd5e8a25873862c5cff6809c7c2f156f43fa8a63c4056daa782d426a", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "90cb2210b5ad4c61c505fb38e4cad073a530a929f127ad1cdf4d70c2d5074fe0", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "76b21432a3233c4bcbecbe5d11afd831c54e948841a70335b2d55d694217efc8", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5d21224166817a30d652b33b425357f2e65c6c66385d2529a0bdb6bcbaea5a52", + "regex": "." + }, + { + "hash": "577d30445f45eb11e7954617724aa4609673c821459cf403830f4a025cc16d8c", + "regex": "(?i)^https?\\:\\/\\/mlpmlmplm78978\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b49d554e4527e8ef0ab35fd71abb33cfec63adc46f73ba17bbdc9975e92ddcd6", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5ac6bc23cba7af1f340fd3d893393ccb10d758b3d4b0fef9809d6c4fcbf1b190", + "regex": "(?i)^https?\\:\\/\\/vbnmbvnm7878\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "98500446cff61ccdc1344dc343314e3dee18a6a0dd1efbd6dddca1e6a059198a", + "regex": "(?i)^https?\\:\\/\\/vbnmbvnm7878\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3f8041bef5bb291787c7c9db3b78ab8dd6ff1984aff5adc98648f68f89b3d2d1", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9b03c5c71663a2cc067d0b690fdf990f1cfc9cabe23bae2215882d7165fa9f26", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a68f87e6d41b972d42ef842a3a81f2726b7c8a7a502075355cbbe8dfef0b67fd", + "regex": "." + }, + { + "hash": "de1a7d6612e65e7a9a6acace85c20feed5f87476f49f9e1e61255d7c6a298104", + "regex": "(?i)^https?\\:\\/\\/redirection7896451l\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bc417e191926af1efbf631c2d845d122177092b5f7372edb30b63ed108f6d87a", + "regex": "(?i)^https?\\:\\/\\/concainit456456\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "22e390988feb70ba8581327557ae5a5258c9d416bf474bbc8870ea33c36373ad", + "regex": "(?i)^https?\\:\\/\\/wwwelasqicsearch\\-prkoduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c170753cf1f1d9f2111449fe19a193fa2438ebbb57aeb1782e53ef5a467f273", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "460d8f83ef7ec23e569497212ebd14eadafd27d4e7660c19207bf5f41fb71e4e", + "regex": "." + }, + { + "hash": "658a75a91aed687147a6931f35197f0f1a66ff08e4454086ef69358176e381a0", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c6563d7d54ddae368518f0b37e2f17e8eb54023a08ce32d72f1e24fc1be770d9", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyjtn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d6bf626870d6fdc6f5b733791d2d4f14d5c65b9c3b9779f16e23b3a33b88da94", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba90c89d24c0c52a6dba02c175b153e9c0db1604960508eabfe330f44f64b79e", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4cb977013a0291744ac0f163f87cbb68b0e617c7c61793a55dbf56b114997dd3", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b673e7a0a0e2e00834972bd5aad47d8c7176db206a32d0e37d378b2f3b912c66", + "regex": "(?i)^https?\\:\\/\\/vodouaze\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c82f30b462e3bb39f1b7e8f1e90ce17fe12b44e6f4cdd30be6888e084f109af9", + "regex": "(?i)^https?\\:\\/\\/redirection5656655\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ebe171d22f56a6a5481c11d68a8278b70f77a25f68f57e0e72d237bd7627966d", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ca42b62646002050962db99ccf44f3d0814d20ead6f11b2446e3ded63402eed", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d2ace752f2d3afd53efc393d6d3129e829c4449663bfc67b8ad096a72cc6b169", + "regex": "." + }, + { + "hash": "e72e9a2bbc6aee92fd596bec4252a352ffc9c7093b41bd3e9f30a43df5aac544", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "83bde3d0b6ff7821c1029712b37d9846788a2f11e8eab67ba7267788ef5cd147", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2a8dac8a9956db9e5ad1346b0b603ba628956cd48d12bf14908fe4059329947d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html\\?jlkuvgo$" + }, + { + "hash": "08953f4b1b20dc66c013e7831f8902936441f53660085f70a7bfc2bbc6aa42e6", + "regex": "(?i)^https?\\:\\/\\/concainit456456\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7c5320e933e5945f0a5260633b7e3b0b18dae2681998028d1fa04120fc9af7ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7189e4a3524cf4b5ef5b345a5fbc5e2a73d304628ac7f2c7a33c2189a04450e5", + "regex": "." + }, + { + "hash": "5b54f753c862b6dfe368b150105a7162a37179c04143a96a2f19d07db91b6abd", + "regex": "." + }, + { + "hash": "00e3e0fd115e6f7cfa39de64f8fd1cc2beb4e484e71993ff7c421ba28f35cca8", + "regex": "." + }, + { + "hash": "98e38f61bb8c80d62e8d069e86799b104593eae4d3ffa45ded1f5c8b70381969", + "regex": "(?i)^https?\\:\\/\\/www\\.mdrhjc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "065931ca48e40bef44e54994ab83becd110667da29492aaa25732a098b9fd187", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "391eff49384c96e310bf47c1e76f79b5008a4878747cc8a12b9c982212da71d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kme\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0a23c92f84cd7adee9850e5339616b57cf6684a97f275d32191d8118df3f68ab", + "regex": "(?i)^https?\\:\\/\\/www\\.bfanhc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2df46cc8f5066d2f05db9a3650bc64f5cd0d1ccacc86a20bde216d8113889456", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d2bd9d8e1037644169fe80ff22d0eef83ba2c3fffb95a88cc2a08ef4a131487b", + "regex": "(?i)^https?\\:\\/\\/redirection5656655\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "569867d7ea7ee5efa05408bea8d740d470e81ac7b6eff602e96940d74903f4cb", + "regex": "." + }, + { + "hash": "52953741b4c89554948de4c0fdfda12582894f245d3589206e6d249d0fb80e32", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4088118924f992901ff6a584714c3ed418f9005fcbdc6c456f8c82471cb159c1", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "731902da4f9ca9d64dc15aade1b3f27eedded6eaabea2aca0368097bd38559c0", + "regex": "." + }, + { + "hash": "fbe4ae637f6c99b1ff6802ab7cf19e6200b0ca705993a90eda65f7f546f7a2a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nwtD50gEw8OKumrD1n(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3dc6b690b72afa69833ca3d7f730846f9f06f21f9a0ff077fda746d3ab02cf75", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f5d825a9542043b138958a075dc9adf94e4b225adfe36ebdff162ae8e054e9e5", + "regex": "(?i)^https?\\:\\/\\/elasticsea4rch\\-prkoduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e39394c2e52c5c91774c7aea23a7e95d2852e4806d80362748a216319b9a57fc", + "regex": "(?i)^https?\\:\\/\\/redirection7896451l\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4196cd91861bcd3707d4f786f859b22cdd886ecd9aca370d1014e8babb45b2cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "260ef84856d1c3373d4ea4fa357a1058e79f0b8720c351795b6bd471a35c7a57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sog\\-gen\\.html(?:\\?|$)" + }, + { + "hash": "8cce119e5ff3f643b675dd444c4db1f2c21e9a0453a32b01be57834e9c93c731", + "regex": "(?i)^https?\\:\\/\\/concainit456456\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0f2c022fa93f0d3de631d2c221d6bb5e7aed5db76c4304a1bf7d6e0104280285", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accezz\\-login\\?accezz_redirect\\=https\\%3A\\%2F\\%2Frdp\\.acccmpuiuatcc6f6aev4\\.luminate\\-development\\.com\\%2F$" + }, + { + "hash": "5e89db2d0a2d37d07ab4626326814b83415641df14a8cd8f662652b979f72b7d", + "regex": "(?i)^https?\\:\\/\\/freefireredwardsgiftl\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e5c22d51c03130a98ef5b5836925532c3b4eef427155c9fdb4a6da8198c061f1", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c9af8b09e779234dc98915021ca2d28ceff6d3c385bd58bb0f30834e5944023a", + "regex": "(?i)^https?\\:\\/\\/12\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05e85a1a2b20f33122571131ff87e7e5e54ce8857068a1fda9c684700b74d1fd", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "47beee503b2180d8a2f64b07f7dfe165abfb1a0bafd4d278dafc58250027c504", + "regex": "(?i)^https?\\:\\/\\/freefireredwardsgiftl\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8e0896c997959348aa770cd9a7a636ce341adfed525acbf9cf31c7633b672cb8", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fae2d04e12bd8f3dfb38d0ff496626d095e9b804a5cdfa5fb52e9984bf05fcbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "04de099766ca7455c202c750fe2ffae5fd21024ac8abe03244d0669212839bb0", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ede62c23454640243b6118251ac14a6fb71e01352ad6b74d6ffbeb2219ae4ede", + "regex": "." + }, + { + "hash": "f8f8f2372f4c1250dfafde4497825e799614ba6f97e0305117fa501156599059", + "regex": "." + }, + { + "hash": "5f2cb816b8aa2f6c2ba677e20e8a82fd4242d3c0fac1a9102e2e37cccbb6f0f2", + "regex": "(?i)^https?\\:\\/\\/majestic\\-nougat\\-c2c9b5\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "d013a601ca60dbde7d386416169853d8da046d4e4dc9b72511f226d16752dede", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4c127607421cd7e44c7e8a40e48c3f3032be91061da70fa7683ef7f8e52c42db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "04c4b9e34acf53d3b985f44f259641db3065c1bea0538b5b9e5ebe094052936c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6a1f4c31c3b882af7749d259d711efb303cf70083ceff8f9bc3fc139b767c42b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d1474cc4f5a434f942d3231389f9cad97c5e5446281bcafe28c14bf4381d1df2", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bb9cefbf8108dc38552715a44b0ce0f678db0d6b94a90905b260ab3afa36aa56", + "regex": "(?i)^https?\\:\\/\\/enucigmc\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "78ab92f2efdc5e2ea7ef7a948662301df79d25ee82d235ea20bde25288b4bd2e", + "regex": "(?i)^https?\\:\\/\\/freefireredwardsgiftl\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f8edcd5a1e583d7a77ded01db2ebf2b9a30e8a16e2b156d0479d442e859ec542", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyjtn\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fbe93d766f62ededa3046db2323af5591d335aac24122e8e4e7c7b23fec6e9ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+os2(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "626f9fb2294c40ee25bfd94a1889dd27fe1a5402bf0733f62541f923bbd423f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b63db63416ddbcbca8a81cfed0b3446b0bfeaffd65bcb7368fa3dff60bb8b293", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8995eef7c9e5a3ae321219bdd2ac1ed57b54cec37c8900bd339459d2819911f7", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "460768af6053846ba60bb36372f152883c0d8f6b58b28a5ad3383b7ea7469097", + "regex": "(?i)^https?\\:\\/\\/www\\.notexistse4lasticsearch\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa41dc35ad206d555da288e602fb2f7c0d6e53361b1c808be6d4ccb4edfcb606", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwmypvq4lasticsearch\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ae4770485956612e049d0e720284cd6500101ee4e2263b68510a6855a8d33f8c", + "regex": "." + }, + { + "hash": "550ab56a3331bf2898305c31e42f0ddbc7a3dc140f372e2cc285a6404350dfa7", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5e2f0324cf4846954ab4619c34ed3851c80129ed26b0f9de9a00ef514d8acb81", + "regex": "(?i)^https?\\:\\/\\/13256498789\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2b0a077985fdeb060a7c77a0e9d9a0cbf8fdc674eaa381f4d7df9456e2bef803", + "regex": "(?i)^https?\\:\\/\\/www\\.bfanhc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c9af8b09e779234dc98915021ca2d28ceff6d3c385bd58bb0f30834e5944023a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9808030b590c76c37ae9432a7d8e4a8ce2aef942dc9063475d82f7ad7d30043e", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0ca647a673afc800a44a6a14a7971c5d538d94621f4f41c6a00280a112ade937", + "regex": "(?i)^https?\\:\\/\\/molpokojo1221231\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0d831e0c5aec5d65d7b847818d0b85e4d538a72eda0d24e6cb51ba9d61d0a336", + "regex": "." + }, + { + "hash": "4b3d89b91fce0bd510106a1db5f6b6ed1d5f32af03799de304fff11de74c8f59", + "regex": "(?i)^https?\\:\\/\\/redirection7896451l\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cc7886c5fd71a19dad7322690edb44ca6234abf77de4908af7829d3cb8082ca6", + "regex": "(?i)^https?\\:\\/\\/tezcaniletisim\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e8997fd7e7d61b4bc181e7f5a32c027f8f90e22760a0ffa5e48c1ec1d2ddbbd7", + "regex": "(?i)^https?\\:\\/\\/jskfnje33e\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4e29ba85e4917257480c4374c5f009d2112241e99f15bdcd6386cba439f8551f", + "regex": "(?i)^https?\\:\\/\\/vergimuhasebesi\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3d434f3c871c28db197d9fd089d616f90f2e6c043dd10a47e4988adf86447ad6", + "regex": "." + }, + { + "hash": "0179fc8943b8e481040772ac181285969be902969cf7c66f926cfbf2ea9691b2", + "regex": "(?i)^https?\\:\\/\\/molpokojo1221231\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "09a4ed717a435baebe2811ba4af6b2ace358671838c4832872c127eef31fb164", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwwwwislfwelasvicsearch\\-p5roduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b673f4f5952d03476eb24f08f41b08bc3901af2765824959337774817ca479cb", + "regex": "." + }, + { + "hash": "6bde8e3a9ecca80d584aa7a3f7f337f813bf5a324894d966a2a0ccc8e9ae3a15", + "regex": "." + }, + { + "hash": "df5fc95400baf9c153f88cdf3fceb3b81fbb25f8bb6b811e478c11789fc81281", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ef16927ef63637af6c9c1da9c93ea8d961d55df5090f417e4ff5fe2f36c2730b", + "regex": "." + }, + { + "hash": "824cd0f509f8e3fe3fa6e682082893a5035de7e4d3fd84a1e9cb0cbd70cf11c0", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwelastocseorch\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d59fb496216cd0904f68fba583e7d09c06beef87e019bc53bee1d4b06e7de985", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7bc269fa4f6feec06f1eeed8eae1a96a8af1c6e70cb6ce52e99dca9c722c1b8e", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f921b43e4f5ac6bbbf552ebda11d759cf25b5dbe6d247624221e268909300975", + "regex": "(?i)^https?\\:\\/\\/bvmnvbm787878\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "916e3e74f89ab444d7b375f7ff7a3b96e3fbbbc39073e05239c255a5bad5ec45", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d35d162c429b21017425ad3e5d628288b49f2e317747c32fe8e48293080a7b0b", + "regex": "(?i)^https?\\:\\/\\/tezcaniletisim\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cda30946a6fd0f067d3670a4e0d8824e538e5a433205098fcb342a86d0c3f3b3", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "df438d427121658fe7bfecf5905bee263a6bfae6dba09078930794a64844f27c", + "regex": "(?i)^https?\\:\\/\\/jmyjtn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e66c82839860ec329b5605b6adb94895af9985c813569a7cd4c182338dfd68cd", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "95fcf8d711b1a52099d158e8af83ebae48908827ca640b4fa22570eb4a3037c8", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2bc2cd9cd165ec5fb0ac7491a0d36c70d0149aeb49a687cfb90c8118f2b870a7", + "regex": "." + }, + { + "hash": "38df6dfba9e19899da50825d5e2dcb8d050a668dd4b3ac04ab33022d138594b3", + "regex": "." + }, + { + "hash": "76672e7d25d2fa874aa9468c4d88eb1f0fd3d67085d1ad02b796b710fbd48f59", + "regex": "(?i)^https?\\:\\/\\/redirection7896451l\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "67fbae1aee5d27baeb60a037dd7aa1a45ea775d8f933a636cd2e871037c732a7", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2f61338729881edb2a047aa24284c5dbfb43f264e64527eea40de5d941dd68a6", + "regex": "(?i)^https?\\:\\/\\/redirection7896451l\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "80f79e02e106cbc4317e8515374fd1274369e27a94fd012b493a62e62733864a", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a42f1e62c94b231234a52c31909c6847fee4ed41825acc108bd866e0e3ef1cc5", + "regex": "." + }, + { + "hash": "651d5a1ffe53b9c82ece411388c5c3c29f969ec7773ae634700d8fbbd2923763", + "regex": "(?i)^https?\\:\\/\\/vodouaze\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ee5c20a0b168aa31b3bc8a93c90758ea5a085aa20b357f37bd2d89364d513ff8", + "regex": "(?i)^https?\\:\\/\\/www\\.mdrhjc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1344c80c4f533cef1bcaaf8cb7859ed5acce372d107f5184cb876239922af978", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "75cd85f4c246ed9aa78f1818b8b662e16e72a4c4d53c1b06e036c063ca471df7", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "53bfe70310c569bc908ab17dc97b5522414d37322c18d5e95af39ef2fac94cf2", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "50001ea12919ec08c2631b4d1f1cd941fface2cf56bda62a2d45f44793984239", + "regex": "(?i)^https?\\:\\/\\/molpokojo1221231\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "052f4959983ce75d9fa9a20eb3b6d578030fd9e69f9ece706eba88b8fe2224f9", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4abae0a0536caa67009b80f82b55a7aceb60278bf596707f4d530fcfdb917433", + "regex": "." + }, + { + "hash": "6a37c514c7fcb008f50a3d317480b7b362d11b7f86edaee735adda598b180709", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f21e9e5067df44f53ef8baf52a0c61590cb714b736a7ec49c89d0ae26963355c", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3d8a828e66159dc54d1909a94940bdc6a207ed3c9761a1903c17c98c46a29e95", + "regex": "." + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6ff2d48c606168b530c07f68da05a466d1e46f8c52932faa4e7fde13e2597f3b", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fbe93d766f62ededa3046db2323af5591d335aac24122e8e4e7c7b23fec6e9ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+os2\\.zip(?:\\?|$)" + }, + { + "hash": "fd46df09d418fb23bf879af32aa16fc6c0c2736773716e6b1aaaf26ccb34ed10", + "regex": "." + }, + { + "hash": "651d91e8c2345b12097b3ebe3302001f0a6c4d33b584ca3a161e3f2e634e2791", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3618dbdbf179149fbd09e97bf02048450289e58f07e6731d6b668820d93e22a3", + "regex": "(?i)^https?\\:\\/\\/vodouaze\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8be7dd12d416a2d1fb9dc03b5ac6bf665668203f16cd5c79dca49ef559690279", + "regex": "(?i)^https?\\:\\/\\/www\\.elasticsearch\\-\\-p5roduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2d906313e9f16924384a74d726c4b554874867ab1ed1014f707ba4fbf0556be8", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwwwsvn\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8ec0e7ad77c4e7464fde4949e5f26c9be56ca7c686f245c447892297677ce145", + "regex": "(?i)^https?\\:\\/\\/vbnmbvnm7878\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e3628c4c6c7cce29bbc5a03f6517f5724460d3b4f2b7c58a284cd9c08d8e477f", + "regex": "." + }, + { + "hash": "d0e060c37ceaa27109fc4671d10aed01cdd89665902027ce34a299fbc3ea3b3f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?user\\-agent\\=mozilla[\\/\\\\]+5\\.0$" + }, + { + "hash": "7612df2e914f3d08abc5c6a17684c91e048485870380801dc03e62ff0e64063e", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "df9aed9adbea865c51def8ee74ce61072f60a2ea214a683e89da66e7a9f91172", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b605dcdfeba2e8eb11e8141b7775da959425c9c4cd156af9a364ef8b59723488", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3744d2e41fb494489a8432503acfee7bece14a93a4ba78c6f146aab407ed6e56", + "regex": "(?i)^https?\\:\\/\\/rjfsgelasticsear4ch\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6799ece3dea3cb3972281e30db7d52bac7495be2484ed47395fe3ac4a562a799", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Fresbaze\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "52725117276a6baf774eb5f7e2552171c0b77d6ad609869627c5c7d75fc46e04", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secure(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e836a7f8f609ef1fc870afec520391857dd26b181cd0dd979c21f086caec6c71", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwelastocsearcvh\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a8fa25b9b5648db4b2a962ac0937741ceaf9701f1104f5b117fff4adef05d546", + "regex": "(?i)^https?\\:\\/\\/www\\.notexistsykppvelasticsearch\\-prkod7ction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eae9732bf1e1a4c9119835137502b605cb15e786d9e734742198fea00f3bd8b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "0cb354ee1f944fbd5502acaed87037392f280287a91d8252df88445c831ed0d6", + "regex": "(?i)^https?\\:\\/\\/mrmacro95\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6799ece3dea3cb3972281e30db7d52bac7495be2484ed47395fe3ac4a562a799", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Fresbaze\\.html(?:\\?|$)" + }, + { + "hash": "3470b9ff2f178f901d3d495fae4b5d537943d66d79364b7e984e899c0723a108", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwcasibom631\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "de2362cfa68b46cf40e38868e0050de397d1a6840f79c61934ad1482b735b230", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?user\\-agent\\=mozilla[\\/\\\\]+5\\.0[\\/\\\\]+$" + }, + { + "hash": "8aca1a73f149a72c66b15eacfe5c490fe1b6a9cb83429a6288c7db02e04ad0ee", + "regex": "(?i)^https?\\:\\/\\/elasticszarch\\-p5roduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9093ba375cde0e7f1a642c00ab562a004d40f9ea624f825f654578066fdab877", + "regex": "(?i)^https?\\:\\/\\/jmyjtn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "09bbb8ddf4c699a1de8de842f2788a46ee13740b00396394d7119cc555f59840", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8133a49cb02e2c0bfbf9f2c06696412a087c1c0c70db64afd5efa1ddd33ed7b2", + "regex": "(?i)^https?\\:\\/\\/tezcaniletisim\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "64299f087bfed7ec25c6f7a7170aaf2e40df250f7f6e67f646162a3878409188", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b1135357e45220b5ae47aa3b5b7c7ecc8cd80bf7838e629ca3cf2dbefb15582b", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "bfe0824964d0e9629de9de53bd94a1f8db9459754ca6a32afb9fc9522d4f96bb", + "regex": "(?i)^https?\\:\\/\\/trendinghotvidsx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3f6b1b71c1825e98e74e4c70fd0a07c6c8e9ce69797db5f6fe2d037c580a1dc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ea5100a45ecc7f61d03b403e10e9563213eb07592958c797e0e6a41d95161fdc", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyjtn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6a72924ccd5c55608c8b027083cb6b1a128b651e0c2d1eb5d1a3ca349e9dbe72", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "39e1e76b9108a44d60b84310fac988c2d7c5636f037a202f6e20b3c84901200c", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d0f82b19b89923ac04fceb41116ea6c0943da9b6c7ffb3ddb4a698aac3f657cd", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0ef4a2efd130af2d0d5aac4f67f0f6471cc55548de3dbcba105fd7ab9611c50b", + "regex": "(?i)^https?\\:\\/\\/www\\.mdrhjc\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9d28af1b7e96c8cf5c8cfd193f533240935f165eea868cd1ae2dc7bb014f663e", + "regex": "." + }, + { + "hash": "17c62ae3e0bb08a3ffa555e5e6df0ea0f5edd38ffad55ad1aefdb670695f997a", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2360fb21a57e6be73122e636a48df8a319bc2e1e4464d27edc2faba18bf29abd", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d1eda0e6f1120c90c1b7b9bd82e5aaa1bcf27cbffc4ac67a565a049ee13b7dfd", + "regex": "(?i)^https?\\:\\/\\/jmyjtn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "446f60c94e99249289015bc1a4f6ba11517bf451744f7b7d03881b61b0810038", + "regex": "(?i)^https?\\:\\/\\/bvmnvbm787878\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ed51582a5cd3d3006e3bdfee97bcc42c0e9b1c8029448f2665599b016f76e296", + "regex": "(?i)^https?\\:\\/\\/vcn5vb7n78\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?a\\=index[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login\\&m\\=Info$" + }, + { + "hash": "84540e271df510485004ae4fbd4c1c38d8ef883277c7ee40e4fe6583a061ad07", + "regex": "(?i)^https?\\:\\/\\/redirection5656655\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "25ba28a371daea8b0c3f49e950556f387c6fd74ebbf9807f7a07186691990489", + "regex": "." + }, + { + "hash": "d5e66f51b0952d2daa9d1e8a087010e300d6516a387f270d77bd46add07d5b99", + "regex": "(?i)^https?\\:\\/\\/jskfnje33e\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "00d6b8da122ac46301df0a7c4a52d293448d9a00564f5ac5892e8a70ccfd4587", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+icolysbaze\\.html(?:\\?|$)" + }, + { + "hash": "1e66269bdc0b818e29e119fbbc9a02d2f570b7f9bb7331caa248e5a04640dcdd", + "regex": "." + }, + { + "hash": "fbcf72bd9472d0520fe551d8bae30080d2dbd31e21fcd453f10886aed6c9a775", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3bf628295fbb5e95f80ce48b518bebec042c7b51ee3d3cd075d920eef6765094", + "regex": "(?i)^https?\\:\\/\\/bvmnvbm787878\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "288abff1c8bef4889910db361b35e963585be566601a919b85ab1107942f7d6f", + "regex": "." + }, + { + "hash": "6d7586954369e0c20d1b18a3844bbb964f1f0374e529755976815429bac52473", + "regex": "." + }, + { + "hash": "bcd1ddfaedcd09653eb7706306951d98033c6eae436d4c51926caeefa1a1392b", + "regex": "." + }, + { + "hash": "afa3e8636f324df1bfd485c7d47900d6a481d63e0d8dbb9496e3685bfcad07b5", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b4496173f32c6bd4960c76bd348acf4e232e3a10e921ef066bcaedcb8b9cff0e", + "regex": "(?i)^https?\\:\\/\\/jskfnje33e\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "afba52d98387974703451560845df7c2c663f2f9c4078b6ea26db3a7153b9772", + "regex": "(?i)^https?\\:\\/\\/vodouaze\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f6e270cf92754b61494e866af8bf8a0aeeb096395272974c2fa8496fc55ab924", + "regex": "(?i)^https?\\:\\/\\/bvmnvbm787878\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5779073a7785ab396a6a3656a807dda6594910f8c36df92524b3aa88e1ed5655", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5b90bdbf3b73e717ba7a9a0fad134519ee78dab53058576d81fd8f122560378c", + "regex": "(?i)^https?\\:\\/\\/login\\.elasticsearch\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c127607421cd7e44c7e8a40e48c3f3032be91061da70fa7683ef7f8e52c42db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ja(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f642832a4ea03945e7db61a04258e00e3adf227ca9a7996042375ef06787146", + "regex": "(?i)^https?\\:\\/\\/pub\\-c95a361bfd1e42d08dfc09bddac0a0cb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c4a4f318874fe6df1029dffc79161ff633c9b8b00358a5ea49c347a7f3f5061c", + "regex": "(?i)^https?\\:\\/\\/yellowgreen\\-manatee\\-304116\\.hostingersite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4c7f727c69b38e65a2fbf2d7a01fe097be5350b21a180561c94b42304b16642", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accezz\\-login(?:\\?|$)" + }, + { + "hash": "28f816d8b0a3a7e0c648a566cbff18409480ecd52c4933dd047111cf05fdb53d", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ba0031cd138c1b32bb01891af9fc6c1071e69255eead9c71d066b36f9b78838a", + "regex": "(?i)^https?\\:\\/\\/freefireredwardsgiftl\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4a466a852ad9da0c3a9b1c4851258e5c1cc37e3e902fc6261c4be8888ae54958", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1b461e75b970019fe703ca90958955639bc58cd3d817c5e0508ec1a0cb167285", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fae2d04e12bd8f3dfb38d0ff496626d095e9b804a5cdfa5fb52e9984bf05fcbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba67cfa7058d4bf59393551d2eafe6888f7ff6c2389d47385424ab0fa577088c", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a50cada492de8ffe755f4811670b4b9cc9abd2024ab0129ce7ebf7533213f9f5", + "regex": "(?i)^https?\\:\\/\\/tools\\.uslanbeiyunchuanxishidepaohuieaddrs\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "f2c1ced18b1fc6d1d7950cbe77c3589ca6d64b77b690d92a9f2753359fbb7cd9", + "regex": "(?i)^https?\\:\\/\\/tezcaniletisim\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f728b125ec71bb191805820fc174874c067bc84b854b4609f9963f0ebb040e17", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6e95788e857ddd4b6fb50fbb051db496f4ace2fe45538e73069323a18c9a71f8", + "regex": "(?i)^https?\\:\\/\\/www\\.bfanhc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "da1c3b77a369f311a13e1d78812df850ee1aed1269139765dc2732d3b94514f8", + "regex": "." + }, + { + "hash": "bb1e7dede9e8a9b07cc61f171a600ba89702d3befc4acc852ab45e1142d1185f", + "regex": "." + }, + { + "hash": "fded197759d76f92a9da8d96c0f597644859327c58f73cae5f19a14ff4b41fe0", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ec5f257bc6a201b06a4794097c9b8d5ca65c56bbbe830583cbfefe9d7e30bc22", + "regex": "(?i)^https?\\:\\/\\/bvmnvbm787878\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3f6b1b71c1825e98e74e4c70fd0a07c6c8e9ce69797db5f6fe2d037c580a1dc2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "522f7ac8cadb3371c63588ef9c8ecb0382184a66ab1af2f10a26d00e18f89ba8", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "539c85ebd92102174a1d6f2392c92cd1a97d69941b16103e52d0df0206181f4d", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "38b0fbd472b055b86fa02475f9725830a92e0ca56d7a9f38ae3a570097116ee0", + "regex": "." + }, + { + "hash": "5dd2449afc405b3471298e7758899e06ee3d299953d1c56ba737eabaa40bc48b", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "52ebaa6139f1998400a884bf06bd9e2a9186ab41a16c34488b82af0ab8351463", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bb22b760f1e60a5619e7f478eb55dd1afb999631c93e2b6ce032f190f2c54082", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5cb658383243563ef61945025a8166fbe6c9bc5ac7e1849ecc10f4d92417fd15", + "regex": "(?i)^https?\\:\\/\\/acccmpuiuat89170dev4\\.luminate\\-development\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6a70c6961ffd67533619a24efdbc242fb5513ac4777d077da1820bbeb063fc0c", + "regex": "(?i)^https?\\:\\/\\/redirection5656655\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0d0a39eeaf0fdf834060f4bff93f0954f6901108cea887dd6db3e7142130406c", + "regex": "(?i)^https?\\:\\/\\/tezcaniletisim\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c3012abfbc9c60492f8eef312a7f14a6ccaa56de720b2735227ae98a4a0ab1fc", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9a120519bc5883a8c2c472325fbc82c80bd8c771e2af26c61b701c9a3d4b5f75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\?__ua_fp_data\\=fb_hsj5CQEn21UR6cx_0iObUaWMS8GYPmfs6CyjpxJHh9el\\-1733206745\\-1\\.0\\.1\\.1\\-417SLYqTx53KduNitUB2OospPj0mgAhXER8C6cFv$" + }, + { + "hash": "5759993301f1aee86373c0cad7fd943695549fe547e6bb8aba70b3af71e99e47", + "regex": "(?i)^https?\\:\\/\\/jmyjtn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "87007b5e1f99c32ed1fdda0ebfa55c008284ca0a8298a2a33fa5c8a7bd487d3e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5d22a40ba3744a81db25761f636fae1001fccc4518ba351f50ffedf52cfdd5a7", + "regex": "." + }, + { + "hash": "827b864fa048dac1acae31b9e1e1091deddc95cd80485ede50a0a92c33b89295", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e9b1e42997b63029c9cddd737efdfb01149307274d62ae4020db56abf4790a88", + "regex": "." + }, + { + "hash": "d5ddc128cdb9236d407205b55fc41b1dc18dad097b673dc32b53f0a3b8e8d927", + "regex": "(?i)^https?\\:\\/\\/jskfnje33e\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1344c80c4f533cef1bcaaf8cb7859ed5acce372d107f5184cb876239922af978", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "caaa193ba3b7d39cda6796d846a896004c01b14703ea8be6be728668c96922c6", + "regex": "." + }, + { + "hash": "13beeadf5cd530624098b5d9a0ca5263ab1c72baced301ac6c3e325623c2af9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?user\\-agent\\=mozilla[\\/\\\\]+5\\.0$" + }, + { + "hash": "6d57dfe0366a896bc91e5c10c46df31a512ebb3e6602180aed3cc8d7beb3ee2c", + "regex": "(?i)^https?\\:\\/\\/www\\.mdrhjc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "218531a0139ee8ba9c8fb761f8b0d6f92396dfeb70b450d963b8db4fe2fa9534", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?mfacebook\\.com\\.vn(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "edfa595c4529046f15dce71e0902e780298c95cb6b5a1a51b55c8f54b3a5a2df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jSFCC4M3OA_hZtczvVjGJyVPldkRvoHRdvgDPcnNTptBP5iTod5X_c3ZU95nLdeawt8EJvhz1P65euuzHOKnYBaKmqWlubCKcAkfTr9OnED38wZPH6JecAviBRiNDA\\?kws\\=lilu\\%2Cwatch\\%2Cvideos\\%2Conline\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fav4us\\.sbs\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fen\\.vidmo\\.pro\\%2F\\.\\.\\.\\%20312\\%20\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&focus\\=1$" + }, + { + "hash": "8cd51194c22b7799a777d6c3a9178682dc7e012d5ea2e29b11d5a41a9d89faa1", + "regex": "." + }, + { + "hash": "4196cd91861bcd3707d4f786f859b22cdd886ecd9aca370d1014e8babb45b2cf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "235b810fb8a283606261667599ce67ec7df8322f491af1e29a4b158ab3586b36", + "regex": "(?i)^https?\\:\\/\\/3\\-145\\-35\\-59\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "36ee686bb74615915870c1c1e346bc533144cd7cc3463079ee8d83c78f5e874b", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "833395166eb39d1f1f2ce217ae630ce5f956df04fef983894fc972a111b4edaf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ger(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62e13831905f72597bbcc84d919941ec75d0cfcc260391c9eca2cadab0eefbe4", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "827b71997f88fb44dcf66fe1663281b70d1110bb41c5e3c9977d5102819710b1", + "regex": "(?i)^https?\\:\\/\\/molpokojo1221231\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2e586d0574fa31d2918cef3f44ce6e8069d8273f49eae09993e5c594d44bbd0c", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2a12df6fe0e6906f5244aa37d8478a01260162fd9f4e45b99d1225637861633c", + "regex": "." + }, + { + "hash": "171ba094310741425642d3bf674cda563574853226bd7a7ef3abe10e3fdaa155", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3dcdf42ef93139e727eef1215438c23ea7adcecf524cb3b0d9ad7cfed33f8686", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e4217c7f238aab7342a742c0016181c841ec60d53f92452ad48e15a08d5657af", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1617983d6f4e64b1d357cbdc09b756de837a38f9b7739038dd058a324c71f60e", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "331aa57fcaf0797589bd682383724229d50fec4a95edea17c81db9c03aaf991a", + "regex": "(?i)^https?\\:\\/\\/jskfnje33e\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9c28eafd8a77fb8ddecafab97f0b370e1abd35da719e9b80e2fbdb3b3097445f", + "regex": "." + }, + { + "hash": "2a8dac8a9956db9e5ad1346b0b603ba628956cd48d12bf14908fe4059329947d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html\\?dxy0tat$" + }, + { + "hash": "edbc580b1d68e8f468629fcd311cd6e77867685e702131ad4436212eafad083c", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyjtn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e06ac23b8351b1f45c587db1ad8c7878af3e0738c0cd7c363a9cdd0f8509340d", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ee1ed2566f435bfa95ba81eb84036e1c5c11bf69fb7f72abfc0cfbd4ab60ebd2", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a0080e5439a01b9ec99d0622b2269d86d4e763746d62c3a05306133a3864f907", + "regex": "(?i)^https?\\:\\/\\/trendinghotvidsx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fb61a426348ad2564140b2f296744a2d072cf28faea2ba88759940eb33285d4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+roundcube\\.html(?:\\?|$)" + }, + { + "hash": "baeccbdb2a47f9472780778cbb79ba0aad0710da872fd41d0b8d2f55a1304516", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "dec3cbe4e5db0512c02768db24f2e2fadc6e92b2dc1baef8762783b4052bc6ec", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5b58b81abbdf33c997aa2b4a8d24d71dc300b5f077174c7949a7d19a8f0c2007", + "regex": "(?i)^https?\\:\\/\\/mail\\.transaction\\.coinbasewallet\\.com\\.50\\-6\\-200\\-124\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2833f7a12389487210a047732a0206f22b2d9a822ed1c4e9af4f65acfa64c417", + "regex": "(?i)^https?\\:\\/\\/vodouaze\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ecbdd1e1c553a9d157d0fd36ff5200acaf0651000cdbde79971d4f81ee8175e8", + "regex": "(?i)^https?\\:\\/\\/bvmnvbm787878\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2515bf5899abef1ce4f94bf06ab552873fd314f404728203731a36a078af9b60", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "99da406025bf048823c30a235ce25d150cc6aa397b5b5d4fc9c2d14c77709f6b", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2a787e532e903e30f7c5408d3532c819c1a4ebf04f5ace4346cb69b922213407", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "75c0b3fca8b94ccdd1e02b131f3611e6adc40f73cecbfa6256482991a720b70a", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cc91443a35d441157cbe5b079e4c88f64577e365b90a8bbf6f6c30853e7d3444", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "68e75dc2b68441dff989ecb13730fb63329449965fdbd24f20163af14bb57b12", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "53ef5ab6a03d02462c29e070e05890ee61f9e818ee33ae1917d8d046f35cc180", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2946076bd201913e3533a430eb697c96ea42dc78c49ef8e93242c920f232a635", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "35afdf56d80f307bc221005fc1395f41074eec6a685acc71a6c624aab15c64bf", + "regex": "." + }, + { + "hash": "a11d70fa7657acf3e2db7d62bd060e559f1cb417e7c6cc821702b92665ffe4a7", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bf6bdc2c6fd81dc29cc62c12f6c2c2bc652814f739d928a2e8f54dad3f01db7e", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0b88030676668846e597c80dc62264e5d574edeb4c36a6791755f65a3b266219", + "regex": "(?i)^https?\\:\\/\\/trendinghotvidsx\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c62e960bd2ffd44c911ffac184264e82cc6a74f45369ff4fe352427c8455e57e", + "regex": "(?i)^https?\\:\\/\\/redirection7896451l\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6a8db98c9795c1f7f0480d4de214c6f5ff087b79e08b4fbe3128c57fdf94fd79", + "regex": "." + }, + { + "hash": "2f27e098893d048eb7414daa0edff122eba6593a6490ec879672eb4fa9c64886", + "regex": "(?i)^https?\\:\\/\\/blxfcqxe\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7c5320e933e5945f0a5260633b7e3b0b18dae2681998028d1fa04120fc9af7ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "40801aaa17e73395841a0e6c9fdb6f1d1021f2df4615d8eb50e73f1fa72c80fc", + "regex": "(?i)^https?\\:\\/\\/concainit456456\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b1ff146e12aec54bf06b081a8515e234b30b6aeabeb8be449229295adeab2ae7", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwelastocsedarch\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f18b121c8d936bbbd7db3523f61bbb739d710fa9f59c0b0911d724caab19d044", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bb73190966a2a90c76747b776f5dcfbab753aa2e6eceddb01199cfa001749136", + "regex": "(?i)^https?\\:\\/\\/trendinghotvidsx\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "23e05c7de8203bd53511f8003ed12bffbe16ece34eb76445aaf8d41e39089b19", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2cdab3e086978ce7dfe186118974fb6c3e7d06d15d8a75e5765f25442dd1902e", + "regex": "(?i)^https?\\:\\/\\/bafybeifkd7xbttij3pz3xk7rmuobgff36c476hovrwf5s36jujutxrzh6i\\.ipfs\\.w3s\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4b4cc99808f8902022bc556a1d43357a6d06205530b810ff6cd4ef6b70f9c763", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d6ebbc33a8d144006a03ace2669f83c1ab8006a6f975dcc13748278c65247513", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a7a203bda2d0b1edfcb6c2976d73ffc8cb96df6889d71d249ddcbf8a011a156d", + "regex": "(?i)^https?\\:\\/\\/wwwelasticsearch\\-prjkoduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1cf8ecf4ed3c23dc7209c2b0eb7ed680f362ed72cf08a08bef22beb8406a6799", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a83be3e4f83ef005e779ceb287cd99608c7a7017dd21f8637fc82ada8843a00e", + "regex": "(?i)^https?\\:\\/\\/vcn5vb7n78\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "85846e1ed2b3fdb79f0165dac857c62711282157d21c0d0faa238c9d5c641223", + "regex": "(?i)^https?\\:\\/\\/claimrewards\\-77a\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "13521d82888b482fc357c41acdba42adf9f19a7566ccd195c509b0c8ba58b076", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b1b02f67d278d8fe0211b36d724936574141559c51ff9ab63747d438f384b3b5", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fbe93d766f62ededa3046db2323af5591d335aac24122e8e4e7c7b23fec6e9ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pass(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d317b7ab61aceb65ffacb40ddec206b947a8100fef25ada6d15c382b82962b2", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7bea67efbe5f9d4ffd1b676d2eb6e518077e0a44fca850be4cc2262bcaeca727", + "regex": "(?i)^https?\\:\\/\\/wwwrjfsgelasticsear4ch\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "731180c23f135b74e7c28180d58be4aa7b8841bd88384479e65e4ae22153c87c", + "regex": "(?i)^https?\\:\\/\\/jmyjtn\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "62a74c98847a9b4f07cace4bbf768b0b64d01d2ea2cc1f1623afc3d17b401194", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+chukwuemeka\\.html(?:\\?|$)" + }, + { + "hash": "a5b2b0a32add0806344352856eb6b503cb101e0e7220dbe3041c1bebb3f9e28d", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fda66d26a249114d4a833185bbeed8e69f24dc94ea395ee1d0d55833c5265a3d", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d88dd3299cee7759d0234e96125b640817bcfd5a018b3da56dd6ec3cf44e9e8a", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6799ece3dea3cb3972281e30db7d52bac7495be2484ed47395fe3ac4a562a799", + "regex": "(?i)^https?\\:\\/\\/bafybeicx632kovolcmtykzyzsmgbl3uxxxsplyazgvwb2adw7pxbxuyfre\\.ipfs\\.w3s\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "76d844d77d84add7b76fb20cdec6c6531728fcf931e0b7193d61df11cd503d54", + "regex": "." + }, + { + "hash": "f2b6b346be48b4d25f1043f6bc63697a8efb88af819016b45d2efb4fa876b796", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "25037fbf95c936b9fbde1d4e1582f3040a2910086f2ee95afcc83e55e8fb53bb", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cc2597d004b084c08b18e07ab13a311ab37a14b6f02446c46a5b2d94a4c4f653", + "regex": "." + }, + { + "hash": "d05c93e9b14525134b5e67e32868238b6d67da5957ccbc07afd6acd1f0d1fdc9", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2847725912ac3a2164fa3c1be780db4cb55534471d9b8d653d601b60bf53012f", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1344c80c4f533cef1bcaaf8cb7859ed5acce372d107f5184cb876239922af978", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6f50deb4433f6fdd07f13b72babf0a72d828aa65f5bc45340d9f83d3ec513b62", + "regex": "(?i)^https?\\:\\/\\/vbnmbvnm7878\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fcc09dbf33abbcdbb74e82e1bed053a28151c8886a89971b54c7b0b51cc688dc", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwvpn\\.dev\\.elasticseazrch\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f2b68a888cb0fbfdb03d6f677c34b44d9354695bd170f12d380f3bebcdf0e3eb", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2515c34b9c95b62622098086a343c13ba46e7210184128c51b0a1ba1cf84846b", + "regex": "(?i)^https?\\:\\/\\/tezcaniletisim\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "63b08abe6a8f5444f20a9c9ad02b9a0ad7c3317f209a7e8c496e7b1862b7c2b8", + "regex": "." + }, + { + "hash": "d79c1a8652d9828c295113a4d2761c509e3e7f5ab29e8528758f45b991b0e01f", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "92c5bbbc9aee05c0269ab3cdaa3dfed09f79b8f1dcc7bf5480e175cbc5350e4f", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9499432167deae5d057380355838893ed7c2fe0618cc8973cc7f987d94fd433b", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1c72ffcb7f0f97e668553ffc18627749578ddff294e366038ae5ee8333cb76bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dom\\-red\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6eb0bb8533575a6b108b450aff57e1a800126579bfe04afe39ac02a42f5b9b3a", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwelasticsearch\\-p5rodaction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b07fccc6abfbee41911156280961c2452a708d96bddd01d724ab3c128df71ec7", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e5da2e7663013201fb0f0526ea14761ecafa8d406987708e939f4914592ae889", + "regex": "." + }, + { + "hash": "be4bd2075ab92477612a22fbdb83c259472503bab2667d8d358adb0620691ea8", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "67f288658375a30fa90b600270e93d39d5e9271666ecbf5e5a0d12da5c22e77e", + "regex": "." + }, + { + "hash": "12fe369c67afe5b09a8f72645dc68ee693eaa7a10a15e9a5b9546160b7ac693a", + "regex": "(?i)^https?\\:\\/\\/jskfnje33e\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f8ad6bed7d0766c385af764d26c2c1251cc52be1c168a9934db2a4d624e002dc", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f8ddcd5033f1378b61e3bcec2affd2d4f7ca20732a1497142a5c89a44f760399", + "regex": "(?i)^https?\\:\\/\\/freefireredwardsgiftl\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "96754cdc37ed3e3bac8c91422f1993aa889194187d75289fce6464dfa038e671", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a19c2c74320dd884b40654997d64f85f6d73b506a137523acff4321ff525e378", + "regex": "." + }, + { + "hash": "22974c32ae2bd25ffb50493a123edee7f671b0f44241322f73ae1ef4bc7de3e8", + "regex": "(?i)^https?\\:\\/\\/concainit456456\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3111be96069abb959719bc368cc8de9746b30824a14614e2707d739f44dd6d56", + "regex": "(?i)^https?\\:\\/\\/redirection5656655\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "af99a12489bdb3105570b380bf35f3fbe6b0074ee94f115b94c232ce64a4ea5c", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "573f378864398a7320a1316b456b524845c283fe6d9a1dda4a2efc3143c00db9", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a55c85edff0e2110dbbe36ad1e04622658d9b7c2a6830da4f45b9d83f4a7feeb", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d07fbfe4f66f4202c6869f04c92fbbec7ab95c3a7c055b7bd0f3c5d12e4a9318", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cb788dd2f82745750cea0b268234a3389ca236dbf969bc27e3624707bc96f7ec", + "regex": "(?i)^https?\\:\\/\\/www\\.bfanhc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1344c80c4f533cef1bcaaf8cb7859ed5acce372d107f5184cb876239922af978", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "f675f5dbf1204e2152f5a43c6794e0350b090d35670d07243e24e9cca27491a7", + "regex": "(?i)^https?\\:\\/\\/avxevmtvenuemail\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "ddb8d7d5cef3dab03179e9d750f54eecb67043d4507d1d9a441916c253581d22", + "regex": "(?i)^https?\\:\\/\\/www\\.bfanhc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e829a05c745ebaf9dc6e710fac9bdad58968c251074eb3acc64f95b330e52e85", + "regex": "." + }, + { + "hash": "c0b4c502e5c2da52f7de2751c28edb2e2350e8980e35cd12155ffe2c4929b311", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ac14b3241f49c5df2293e6d7d2cfd2d3c2f9c3501123187683ba5ecb63f2e045", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a6da0afc3fa340d0ef31a383c84fc3e93e8136e8cce856acfb256ef2e9809196", + "regex": "(?i)^https?\\:\\/\\/lasticsearch\\-p5foduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cb97be064c2c605b6c24344685a4cf759c84ace71890b6de867940f750caa8b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3e7d5a6969a66dec4e039b235a44adc4182ff0489c856e5a9a985ba6f6f4c5c3", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2ca2b70c4eddf7367443025267672d9919f7ccbd4d2c396104cc40c3d34998a8", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d933ffcd7bbdd44b6b5ac3286de9a49b6f44426a1047eb5ac4e2c5cab2dc7b4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99da25263e5b866d0a991b1698c5de76333642690d14960e0250f6a8b70d3ddd", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e6258827d76f194e0178b7a405779573753318f21d5dd8d9bb00e931afb92377", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "14bf27c558a295de776748e5b21112836b3ae203a6f21fe64409810e79b3c3b8", + "regex": "(?i)^https?\\:\\/\\/vcn5vb7n78\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "eae9732bf1e1a4c9119835137502b605cb15e786d9e734742198fea00f3bd8b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "423573979f86412401778e5776d9ce17bec24804733ffe0d01e16f11d348258e", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "05da999273e99b85b8bcbbe5dd8e89778ee6741b4f1741e6ab459a68f33f2f4d", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9bc1ce4e9c2d5f72a9ee937e231462195836cf7b88c7db9017a3d1800d7c5cfd", + "regex": "(?i)^https?\\:\\/\\/jmyjtn\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2d8431014334245a9e9911764b995850a26f398e1f281f1b2691f1355891e38e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b90d775af22fadfc0299e03ba04e305286f96e33c5cd6b03e6615231de01838d", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "3821b8035ab0f3659653548c4a864b814bbd12201de6ebf94d662000715b49ed", + "regex": "(?i)^https?\\:\\/\\/tfbrc\\-isnoplms\\.com(?:\\:(?:80|443))?[\\/\\\\]+home(?:\\?|$)" + }, + { + "hash": "03f2d4eec7986758ff5f1ac5f8f1a4706c55f41c94ebed5bb474a7c63c859042", + "regex": "." + }, + { + "hash": "5fa96217d132c491a21000b131f7459053092b06a39a1fb520a51ef78d255513", + "regex": "(?i)^https?\\:\\/\\/www\\.notexistsyedjeelasticsearch\\-oprkoduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fc4c70f2d5316591d517a2d0c5f39aee96e5994f0a74b709a34137b18ef66923", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "eecbdab25580cb6ef72714e2dc5b56d00ba878477526ff1b2f475ae8dd5b9edd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?user\\-agent\\=mozilla[\\/\\\\]+5\\.0$" + }, + { + "hash": "e7c585481fb69648d61ab4f60a8bbdf0464d01c3904bc8cef24730c8ac80c3dc", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "34d497012ef5d415c9cce80596e6454f11eebdf76f0d1e6717f0032d16667d17", + "regex": "(?i)^https?\\:\\/\\/vodouaze\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "23cbb243383b491d928e95e9fcdf88bd9481f3e41150a40c8861f6581918333e", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "14c7ffc0ec9710108814729fb4a7cdc4d5c452a2de4455acf8f4456694ed3e2d", + "regex": "(?i)^https?\\:\\/\\/pub\\-87c8e30090774775aa965798cbd1369e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2a8dac8a9956db9e5ad1346b0b603ba628956cd48d12bf14908fe4059329947d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html\\?ts\\=1$" + }, + { + "hash": "01fdaacf5fdfbccfe423f5e75b79fad9eb2672ddd82ff6e9e04c4b7962375224", + "regex": "(?i)^https?\\:\\/\\/webmailvalidationdomainserverhosting02\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d4b92d1ea2da8943377c5f02a916b689286de5403d815bfa0a303d3498c6bc0", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwelasticsearcy\\-prkoduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cf6fafb70366243845bef04192b58f14817a1dc1d7d857ec3f8d00269605149a", + "regex": "(?i)^https?\\:\\/\\/redirection7896451l\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3c20f505dd1a337cdbe44bbfbcf31c4b07b2a7e36eaa92b298be0ce3176214f3", + "regex": "." + }, + { + "hash": "3f5f7a4c2618daaeca66005b60156f0ae609f3b0fa580ad647b027264d09e2dd", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d6e70d30a6e47ca6e4b47e7e03224f4415682b13826b65a4b0e19d108ea39993", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a8a224981142e5850e2ab0e52d7121c88c470f02d629ab4c643537475ba35784", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "494327c74484d93e597d4ceb24405efc3fa431182072c3c4a80f3a88294e1bfe", + "regex": "(?i)^https?\\:\\/\\/vodouaze\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "26e3affb063be3f74e911facc463806a211d2e9b34c42eb800be25bcafa10fbb", + "regex": "." + }, + { + "hash": "6ad4e72a7df494a213b5bf7f25cbc626cc708ee49e2083ddb194e387d55c3d27", + "regex": "(?i)^https?\\:\\/\\/jskfnje33e\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e6e55be0a33fe7b328e0bd5efc999011b21a452a4fdc3938165aa2fdac6c5fe9", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "89ca89bf4233a85cc6e3a69c03bef0ba1e41f88c79787eddaea5a70b61d7cf48", + "regex": "(?i)^https?\\:\\/\\/jmyjtn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "97ded2ea8be7403c957f32f77d35ba5e221a49d6be70b7e2212edc45ecff478f", + "regex": "(?i)^https?\\:\\/\\/13256498789\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "818bad5b9de503e7197ca0649a8e0dab5924ce27c6d717498f952a071a190b87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "fe21d488cf912df198af06192d58f76dd9a9996fe066bd527761a03d9e296bdd", + "regex": "." + }, + { + "hash": "22e390988feb70ba8581327557ae5a5258c9d416bf474bbc8870ea33c36373ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c88bbb019fe8b9ec616efeb13205b9d76c310a7e53d2bddb573a410551643d8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+com(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c73e9c3865e48e75a42bd19174ecfef09341bae7c4b994d39e3974b2787b0197", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b1a80fc1ca0d8c89997e53e7177168434a41146d0a8a2a541c447efe8dc65e4", + "regex": "(?i)^https?\\:\\/\\/www\\.notexistselasticsearcm\\-prkoduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df2ca39b4b241ae9d012645786ebf5cb81adf5e83715c80d7c2c6d34bd9f2d31", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5b58b81abbdf33c997aa2b4a8d24d71dc300b5f077174c7949a7d19a8f0c2007", + "regex": "(?i)^https?\\:\\/\\/www\\.transaction\\.coinbasewallet\\.com\\.50\\-6\\-200\\-124\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7005e6703d0e55f737832e224ff658720a7ae591393ba5b2879d17cb5dc996dc", + "regex": "." + }, + { + "hash": "91575c9a0c0ddac76a2dc2f001df07fdbda8de448574d15354fc5743388ccdac", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4a113de5c4181e0fcdb6cc3704ef806529c28f883ab3c81b63d2d3ee2d1ce091", + "regex": "." + }, + { + "hash": "df6838012b0f6e84432447610675755604108af08f96da8d241a917227ea81fb", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fda661272ddc204e821715a0e490a50957110222cbf0ea6faac4fa75fc1abfef", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ad44ac9b3f4a16c86bece3809b9aa834ff9d3fd94f3ec6da9fe269cf7d7969e4", + "regex": "." + }, + { + "hash": "ad85550b58eca17b47753069ba1e146f529ef39e9084f09d21953b6fc5af5937", + "regex": "." + }, + { + "hash": "e89c82436b475e006243f30c739938b420088faaacfc61b83c1f7adb62165cdc", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6b42d3ddc5eb4fa75da369cda04d568dd2974a4d8d550ce06b9e0a5e8e121dfe", + "regex": "(?i)^https?\\:\\/\\/freefireredwardsgiftl\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "dd4d7c5c42d917e99bc7c06b8b61ea7ba65f6b7d0d5b62d2627f5a666c9ff916", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6a1775ae00d7bfc3b22099611eaa94c7f139ef72a8ff8dd2df6bdbfdb7a487fd", + "regex": "." + }, + { + "hash": "c53ef871bb0d13f934dce5992a2a9a987f61be8f83c58c9db7210cea7c3113a4", + "regex": "." + }, + { + "hash": "ae654e3f541c9fc57f3b50c6f55375af6942cf3df55950e3db762528ad0603c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "0c0141942c4e29d439bf3dfdc4229ed07823bebf4a7813e26b9e611417773a0c", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "17c56cb0235a2a6eea24357f5fd8a7546497f900dc718249f75b14f1da44bcac", + "regex": "." + }, + { + "hash": "517d27d6338ea924ae85a83bb29d7121bb5b57172d8d77fb2285468b991a46c9", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "69a2ad6999e4fc2b8094a5e025fbda3a2edaac26cd4aeb6706017d04d275bf56", + "regex": "(?i)^https?\\:\\/\\/mlpmlmplm78978\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2a7d0e2b5d220877e01fd07726d8ef87fc0f8fc8a517b6f238db6c4a57a907fe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "615328ffb4c5c6364aac03f360bade5fe88b90454f642b56e8c52026a6e6a705", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d4194f96384133e2669d14a5be34c9f73e64f17649acfd8596edec8996184e06", + "regex": "." + }, + { + "hash": "47be1da29448d180f44945bef04d9e36e4e6d290e168d221c409098992076a2d", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "490fa6f9c76e96a38a80dc48044b4100d189e4e743f6c421006c9e5de2b7a5a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accezz\\-login(?:\\?|$)" + }, + { + "hash": "95a954b1a9a974c9ba800d59856d543090611585006c320fae82b639e3af6080", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyjtn\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "acb77a380e2b0c5262d902c0c538bd2d3f0a93fae64c7259bc6b7ac3b102fed6", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bd17f121a21a343b4c5984dadc4bd7b41f63a237838710a50778f34b1a9d38a2", + "regex": "." + }, + { + "hash": "e08616db4e213aa21037fdb693c9cc0df26908c04f5bb7f1293e873885bd0f86", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4dc631c85fcc70fa2cf5a9333f4692316fba09c3df8d7ca970644170fd50fe27", + "regex": "(?i)^https?\\:\\/\\/tezcaniletisim\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0c7c4506f1a4eb4b28ff41212631a6a388432cd064f5322d2b7eba6745c0d9e6", + "regex": "(?i)^https?\\:\\/\\/vmnbmnvbm45\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a4ac4721cbafca4ecc6bcdbc91aca4963f9fb9987e4cd3b668f3c7cdf590025f", + "regex": "." + }, + { + "hash": "a385e33e9b8e55f2116262cef3503ff051fad19304e87b54164bd6cfc5ba59a3", + "regex": "." + }, + { + "hash": "90453e5cfd9d4ede75c076c2b5512b996de7090bf581b09d04dbedf02dcce397", + "regex": "(?i)^https?\\:\\/\\/www\\.mdrhjc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5dc950d12157ce6ad10e380bd6e207f34343efa096d5f9c93d9b093c775fa183", + "regex": "." + }, + { + "hash": "0d4c4a848f4c4b73ce213fa97a4b9247809b024d92dc7bfee5460fa65a97b7cc", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9a5d13d8b63cc96d46b871e8744f80ebeeb1b3d69e9fda7a5d6e9cc2a8e77371", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "29166ad7da35f241b65d86d5c2f4f2abbc3352da3a88229b3579ae3ede9f0f2c", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwelasvicsearch\\-p5roduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eba9ff8cbe90afbea4c999c200314e9c3611aeb5904bd52b554bc324f008c1d0", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b162003eb4f8271d1bae68f31b88a9ab519bc6f38697deabee6e3dfc8a6175f0", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "164cdf9d9c97a38d9894f7e8ce43ef86b2c0ea72b3f19f999d1120b5bfb432a8", + "regex": "(?i)^https?\\:\\/\\/mlpmlmplm78978\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "83916acfe336cff8f49831068dc44fefba603f4405b7309ad0e013597611591e", + "regex": "(?i)^https?\\:\\/\\/www\\.mdrhjc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dea95c91e6da2fba747f1648346c0fe03929ce1e213e6f2d291a6e39c125048d", + "regex": "." + }, + { + "hash": "2b8be7af4614429fdff6255300779f0de7c7b0bef1bc0b851400a10f40f6aa00", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e02fbaea0babf1602329ff9b499c1a8add2a5623d97824837c905176ae2aa4c4", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "113f667cf47057a92471bac96e2f0acb58cb9754d577e4ed31593f7b44b84b7e", + "regex": "(?i)^https?\\:\\/\\/tools\\.usbunheigtrgaorefuhensunaddrs\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "5e71311ac52c5e1821cbe75feb1abee7b447c7e6d0e90034a15f4e50638017d9", + "regex": "." + }, + { + "hash": "49cfa6650e4cff222e6d155d4265d06a6a789103d9695461e0a812a3bd71077e", + "regex": "(?i)^https?\\:\\/\\/bvmnvbm787878\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2f4eec54c47813703a55155597a4231096f3022a03a7d19f9b612aba00e9ff69", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "372722d850f638122c7f0667206faedfbbb9e515009553e73b203f4353ca92e6", + "regex": "(?i)^https?\\:\\/\\/pub\\-b063d2bef7dd41c9b3201c4799e53c5c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "711a1e8696df048c2389cb2d77e7f96ddf487f84ea3a1c4e41abef085fdd65b2", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "31a664b7a234100efa775b08d28387664bf62c81f67c6caca7adb8371480073d", + "regex": "(?i)^https?\\:\\/\\/vcn5vb7n78\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6f5eace53e58e1406b0adaa21b843a4a721e938281eff78bf2911af365922408", + "regex": "(?i)^https?\\:\\/\\/molpokojo1221231\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "aeb51ba7352badf0686be669c0e7511cb7881dec14bb1a65173bbeb5e0ac5272", + "regex": "(?i)^https?\\:\\/\\/jmyjtn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0692c1f654662ac03c792acdd3d8d8a3ba4d6a9e652c68c99705dec3b45686ce", + "regex": "(?i)^https?\\:\\/\\/bafybeibrvatnu4rhs5rrzv5xmyipb2yl62rxbkpb23t7trhq6ljn7uc3hm\\.ipfs\\.w3s\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cf25f6d80c29dd317ab0aa875a71f7f6b04cef1f3aaabcf79cd39608ddc3e7d5", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "70dee224cfaf899250f2dbd8a832b41126a4430742624b86bea703f428cb8571", + "regex": "." + }, + { + "hash": "a23c1fbcb67a8b11b7219b12b0a0fa61696d8a1426e2af30510a7ac205b4d5a6", + "regex": "." + }, + { + "hash": "8b32f7c76a5a3e757f4fc09295bf739cd529d39e3a5180da05f425c0a1714760", + "regex": "(?i)^https?\\:\\/\\/concainit456456\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "befbb4fccbe08018a081c968b68ab6570f53331f0d753e5fd2e7b34e2e0a8b55", + "regex": "(?i)^https?\\:\\/\\/bvmnvbm787878\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8a0b6047ef54a73deba8a27fa2c04a906b4e1a048d617ae21cc9985c3f4d17bf", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c035105ee38bb234356e88fb7ef12f233b43192665f1f045232b834b4df0f402", + "regex": "(?i)^https?\\:\\/\\/hhhotclipviral\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0b3e80559c6f42a1b018911233c4b2b93485d05d0c992d828e81d771fa715141", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9609b33a3ccacc4f7a22b7326310309d6610cce28db00eb70595d0f0c7be4448", + "regex": "(?i)^https?\\:\\/\\/molpokojo1221231\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ce1ae7249ca2ce75c5c972f65006f3630a70eec49d8b473d2e9108677f04e22d", + "regex": "(?i)^https?\\:\\/\\/redirection789456nm\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "073f1492b89ee9f6a8d3a378b85b451d457bb5d27700b397e1f7187e72c84b03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tin\\.jutima(?:\\?|$)" + }, + { + "hash": "b3238726567c8f8ec14489c8244b2f4370fe1a8e583a729b7a899135925d385a", + "regex": "(?i)^https?\\:\\/\\/bafybeieffk2xife3oelzktrx6lmdj4ccvnswa3qgzrb5btykhmy24h4eo4\\.ipfs\\.w3s\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2fea1b791a2700b06e72ad334a9916799f6a223559f8d3048d34c4654010594e", + "regex": "(?i)^https?\\:\\/\\/redirection5656655\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c90acbe289eee4d9d412f1c3558866f473f16d09d2c67e82727e4c18c2e4215e", + "regex": "(?i)^https?\\:\\/\\/vnbmnvb7m87bv8n\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c4fcbe64c5b6d03de1add215b32b9522fc20fcb702241da9ba276ee19a6a83b5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+api(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e2fd5d3139d4611258adc3450c3e1a2b0bc29f975130553b01ace67651bcc42a", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a1e6ff035c862a38ae15e177d3556b0585b9200c2321ed8bda5aa0012cc1afe1", + "regex": "(?i)^https?\\:\\/\\/tezcaniletisim\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a862b5ee35712b3ea4dcdd4107f1c669287ebeedb82f3b09cb02d8e7c57c17a8", + "regex": "." + }, + { + "hash": "07e70b26c70ef511f4402d07b0369689a34c561e6376d8f74bacf38d6594cabb", + "regex": "(?i)^https?\\:\\/\\/vcn5vb7n78\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "aaaa195b66095845e7efc5472de957aa28635af6522c8cff786011ffa7bbc490", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7d47b73a010b7ad0a380119ed38a2d92ab50b7e439c9bdc44a328fd7538abf00", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fbe4ae637f6c99b1ff6802ab7cf19e6200b0ca705993a90eda65f7f546f7a2a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nwtD50gEw8OKumrD1n(?:\\?|$)" + }, + { + "hash": "158de381fc1e91255e1af44e540471ba2dd5cdb767aa91b62188eed9a26a56a9", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyjtn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "c73e9c3865e48e75a42bd19174ecfef09341bae7c4b994d39e3974b2787b0197", + "regex": "(?i)^https?\\:\\/\\/notexistselasticsearch\\-pdkoduction\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d3d2fb92f6cb59e447a9c36b4874a687b09bd9e03c01962a54f2e2f31a94b362", + "regex": "(?i)^https?\\:\\/\\/mokloojok78978\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3327ddc73d7bddae26fbccbd078f5d220ea6724d67b29084e4929a53d28d2153", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b63db63416ddbcbca8a81cfed0b3446b0bfeaffd65bcb7368fa3dff60bb8b293", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ja(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b7125af07b6484b762abf58ad8a4b3997b6cb4c2a32ebe3591eb93716dcd53a9", + "regex": "(?i)^https?\\:\\/\\/eigenlayer\\-rewards\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f5f72537e21bf6c14fd51d924e5af587584c98c37d7253882805fb293d55575", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "787b8d30df6bfbda96ec520c9c02308b5329786d0b145812a777351b037f5a80", + "regex": "(?i)^https?\\:\\/\\/13256498789\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e0a2bb4a4eb2075a9308b2d59ef5ce93af902a5352331008dcd4980954ba7260", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?complaintsadvertisingpolicycommunitymanagement\\.com(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-5[a-z0-9]+" + }, + { + "hash": "401b871e0500622f1c9a3b88b118dda00664bb506d379c1f1fd4c58607127bbd", + "regex": "(?i)^https?\\:\\/\\/vbnmbvnm7878\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cca0d611d1c091e1ed348171b40d9a0e55b2efc70e9dd76af1b0cc2ba7db8f34", + "regex": "(?i)^https?\\:\\/\\/concainit456456\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c8e0e3c6a949c3583041fb66a612d6e95ee7a3fc667965cb66b850e3b444e", + "regex": "(?i)^https?\\:\\/\\/trendinghotvidsx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a925675feb2ecc4d4a1497bfdaf795a3d0f3b7aadd99079badd3c149f1c894ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ua(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49f6de8fb8798859af8e011ad4f02e51391e8ec6f0c0b3ad8fc509656a5a51ba", + "regex": "(?i)^https?\\:\\/\\/48998484894\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a3b7b429fe8bbbb415cab101cb7708b6da54b36d5201065af9454ad29fee98ac", + "regex": "(?i)^https?\\:\\/\\/trendinghotvidsx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "477190b6b61706ea520a475f7d7cf2b1cd1700e11efae955147c46763d00bf6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+global[\\/\\\\]+rpticket12\\.html(?:\\?|$)" + }, + { + "hash": "5b90bdbf3b73e717ba7a9a0fad134519ee78dab53058576d81fd8f122560378c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "31f6b71acb242e303c336c75b10df38949f20416e4889c2b1501404d49712139", + "regex": "(?i)^https?\\:\\/\\/www\\.wwwelastocsearch\\-product8ion\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1c72ffcb7f0f97e668553ffc18627749578ddff294e366038ae5ee8333cb76bf", + "regex": "(?i)^https?\\:\\/\\/bafybeiapf5nqyj5mipqna5d2sqjellhv27xf7yok5ek6t5i7g7a64hd6oa\\.ipfs\\.w3s\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "edfa595c4529046f15dce71e0902e780298c95cb6b5a1a51b55c8f54b3a5a2df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jSFCC4M3OA_hZtczvVjGJyVPldkRvoHRdvgDPcnNTptBP5iTod5X_c3ZU95nLdeawt8EJvhz1P65euuzHOKnYBaKmqWlubCKcAkfTr9OnED38wZPH6JecAviBRiNDA\\?kws\\=lilu\\%2Cwatch\\%2Cvideos\\%2Conline\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fav4us\\.sbs\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fen\\.vidmo\\.pro\\%2F\\.\\.\\.\\%20312\\%20\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&focus\\=1\\&pageUri\\=https\\%3A\\%2F\\%2Fav4us\\.sbs\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fen\\.vidmo\\.pro\\%2F\\.\\.\\.(?:\\ |\\%20|\\+)+312(?:\\ |\\%20|\\+)+\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "25451f8eab7dfe8af7600b9a3922841991d20801e8f865fd24c7d716ce188009", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+file_search\\.php\\?urls\\=DtBtaD1nWQt7$" + }, + { + "hash": "84d4afef4db956a274032e201e74b499ab24281f03b8d0db0c971c1b46fcfe26", + "regex": "(?i)^https?\\:\\/\\/34554981512\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a7a203bda2d0b1edfcb6c2976d73ffc8cb96df6889d71d249ddcbf8a011a156d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "39057cb0d328bac5e49663f012d7c362c3ba6ca9995c3d0cac0b1d85046eb375", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a6da0afc3fa340d0ef31a383c84fc3e93e8136e8cce856acfb256ef2e9809196", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cc9a004ff73211e2340f32cfeb54b9bdbb2947a324ee17dc7f426d298da2205b", + "regex": "(?i)^https?\\:\\/\\/mgxdhq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fc34c781946559e37f6f14da1948d469bfb191216850cfdd5ab4801a44dcef6b", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c2e84462e0753dc77a8c7d1d7a11dfe381519402fe974c9cf3e4ae61463f2c48", + "regex": "(?i)^https?\\:\\/\\/zalminajilka\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "596553fa41197d62323d2186755477ba8f535f53c395aac81752fc05e0e3e29c", + "regex": "(?i)^https?\\:\\/\\/sfezsv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c395a5983e8ec60dc38e028477f670bba75c70baf30556226d12aa6a755d2970", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "547a83ee4613cc799a6861781da7fdcdc75e5dc4ab7b947049184981c5374f83", + "regex": "." + }, + { + "hash": "08d43d125c92ae6e6cf2aa9d5caec711688cfd158308954639c57ba32bd68719", + "regex": "(?i)^https?\\:\\/\\/zalminaja\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8e353d5db8b3bc4b87ddf21fd18d7e05dd4cb8999a17c52d639a84c24b306360", + "regex": "(?i)^https?\\:\\/\\/www\\.mdrhjc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "265662d05334f97f45cddee7d98af7f053566dfa74e6d21c567ded4b823e617a", + "regex": "(?i)^https?\\:\\/\\/sffunwwwelastoicsearch\\-production\\.yovip\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "42f688abf9f431acd761679184865295880fde6513b0d87a9c8ea303302902f9", + "regex": "." + }, + { + "hash": "0fd0cfb40aa640c00f855e5691a024e45f9f8f6dfb67d6d5411a0cbff09262b1", + "regex": "(?i)^https?\\:\\/\\/www\\.jmyjtn\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4e4d89a30fee2e5318e96ef253c7e1c187e6eddd251b011b04e837b4beccabcf", + "regex": "." + }, + { + "hash": "f251f6b672210483415a700678f1a8cfcddb9fabc639d65d3e176b188a248b7e", + "regex": "." + }, + { + "hash": "b816471c250a33617f168ef2b6c07982ffcf757911bad6a29da1e40a4e14ea5b", + "regex": "(?i)^https?\\:\\/\\/www\\.uykjgf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "af07d766fbdfaf9008d6651295930b57cce5e0754a43c4b5d67d835e5115815d", + "regex": "(?i)^https?\\:\\/\\/tezcaniletisim\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d064e972b601bc094ce3efcf8fd1de28a165da31adde6f28a33552b9bbd3752f", + "regex": "(?i)^https?\\:\\/\\/redirection5656655\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "00333aa13ec5b55614468988da1b54253f8ccc7b254a317f707f68fa60b909cc", + "regex": "(?i)^https?\\:\\/\\/cgfnht\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "21b871e8459cfbb2b81284b810f0b02e9f3b10a6dfc906219f829f68320140f3", + "regex": "(?i)^https?\\:\\/\\/vidtrendxx1\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "efeccb239fddd7da07b58d8b26741a86b89711ed7d623e05108f303d288fcf2f", + "regex": "(?i)^https?\\:\\/\\/impotgouvfr563\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8214de5b504fde0010dd4f0927a6ba12ac1b0cd81f8fcebc81c9c40c151fa913", + "regex": "(?i)^https?\\:\\/\\/redirection5656655\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "702a4a0a652142f0a557c8726a333f7495e83f47d7572bed46278b1000245531", + "regex": "(?i)^https?\\:\\/\\/vodouaze\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "aae1afdba6d13e5d3f9bcddb1ffbfbdcad6fb3173d72655916d3de7b3af50442", + "regex": "." + }, + { + "hash": "0ea1925d7c3095fc98a88d555a87445cced816f3382a4a7399c946bc9743fcbc", + "regex": "(?i)^https?\\:\\/\\/1564987651\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "de2362cfa68b46cf40e38868e0050de397d1a6840f79c61934ad1482b735b230", + "regex": "(?i)^https?\\:\\/\\/bafybeiec7zpk5ltrfcbifr65ny523tznkhgaugwaw7d6xelgxadohggm4u\\.ipfs\\.w3s\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7590cc3fb6e10d5f67dacc7a7c2beaca039d62c5c956f51f61ad667983a32913", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "94ea6104b6358ee69b12f1f3766c0b8d871ae94ec190ba30045ef1005939dbfc", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "93d76d48b240fc0a3c35ea49124562ff3526e039d8b0d004f6780a3bf7d3f190", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ca9b480b605dc1821f71835d0674cddc80b34a1ecb6496b194a8b3527728e7fb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuashcakscmasem\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a065fd1bf11b7af1bd7dcee36d5ec3bb875e319833db6bf9052bba9ea533c9a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mip\\.lonory(?:\\?|$)" + }, + { + "hash": "7caf23c1000e820b3166488393a6c46d30a8fd8c009c1e3af6d1373e0e350340", + "regex": "." + }, + { + "hash": "eb4a1c08ccb6f156c60cfb27d3d05d36f79e8783b64a7e59b57e4babd5f3abeb", + "regex": "(?i)^https?\\:\\/\\/bafybeibrnjunp3uac2rdohengor4nzppcfkuquyjckpnt2tvlbmymcztfi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=EgrAjLxMSA7fJLob6gGKUWlzJsMaXrgjfTLynIdbOB\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "dcbfe54e922c4c329f7e2c2c7b8b84c61347403b9b603cfd178fe9f27d303b0d", + "regex": "." + }, + { + "hash": "5052109dd207a0837bc323a751b914eb99ecfc0b3ca769ae50a69f1d1000d017", + "regex": "." + }, + { + "hash": "5f6f50d332295a9ed74f1a2575de588e1f7534ebdffb60c64bef6219934d176b", + "regex": "." + }, + { + "hash": "76d51149dfb6ef48be9a5cf9c26716cc9bce502deead2f4f52693dca2f7f24ae", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "71ebb67067016df888855efe64dea2fc5097d2d6de43d610c62a8a8c7e0f81e0", + "regex": "." + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwNTY1MzA2MUBlMjg1NWM3NTNhNDdiNTMxNjNlZWE5YmY1MWU2NGY4Mg\\%3D\\%3D$" + }, + { + "hash": "20dd3a7524c17f2c0f0863a780f53697b97e6e4c5d27f310361a9e23307c8314", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "df41a7a6c3e20f1d767de78f1a74c36a4292b389f357fd6f9edaf21b9360f201", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMjU0OTgzNEBkOGJhMzUyYzg4NGJmYjViMzJjNWUwYWE1MTg0YWMzMA\\%3D\\%3D$" + }, + { + "hash": "69913eb239c831b582b37d8e91b5d71f608ab42097aed72d653976793a610d3c", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a065fd1bf11b7af1bd7dcee36d5ec3bb875e319833db6bf9052bba9ea533c9a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c0bc07c9f69d244092a550657c56f8023d83634e64da669cd82a11bb55df1ce3", + "regex": "." + }, + { + "hash": "d3b79eb8d861a5305cb2cee4f348705a0f8b4999107bec40697dc8bd41c06f62", + "regex": "." + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMDIwMjE2N0AyNWFjMmUxYTNhNTZhMmMzNDgyMmYyYmJiNmJhODU2MQ\\%3D\\%3D$" + }, + { + "hash": "d9d99ded609c7abf47cac52f118a850a6af8b6945452b54fa8aa2d2e1d88599f", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMDIyNzA3MEAyMTc5N2Q5YTNjNzlmNjhjMjMwOWNjODI3ZjNkMmNjOQ\\%3D\\%3D$" + }, + { + "hash": "59a7df15fcc105d6174168dd5c52400a334bfdde48878ee550dbe1ae42a758b4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3f64bf5342192e396fa72c94c9cb9634a2392279f2d488271b670b84781b2613", + "regex": "(?i)^https?\\:\\/\\/litxvideo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7fcbf7b8125ede9b55f29bf197927eecfafa022acffe63cb01122066e1070056", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+clients(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cf49f9a564901db22bc0aa8d59ddadcf0f923fbfc53003921512934248302651", + "regex": "(?i)^https?\\:\\/\\/thundertracker\\-stormkeeper\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMjE1NjI3NkBjNzg1NGY5ODFlNDM5MGNjM2ExYTQzNmY0ZjE5YzlhOQ\\%3D\\%3D$" + }, + { + "hash": "2a42f21f7c0c873af9ab791d66f2f1962bac94a0a5a26a9d1a4cc56787679c1c", + "regex": "(?i)^https?\\:\\/\\/mkalmw2\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "367e18122b9a30f9930bb306b89f21b27e2e4f164c771f0e24191ab8338f2d60", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4dd8e72f6a095e04eddcec3c31eb0cfe39c240ed52d125c29f8bb02a21921292", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "02658bc4a70fd5bc8d1e8a083bd4451576b6574dee019eec8d54fca51b96d479", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "ff59563f177358b2b4cc676f53319aa5ff6d4af3582666bbcacfa997bcd79c66", + "regex": "." + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMDI3NjYwOEA2YTliYjkzZjZmMThkNDEwNjYxMzUzZmMxNmVkNGUwOQ\\%3D\\%3D$" + }, + { + "hash": "755346f18596fda16130b3d397d84413181bbab18872c51f225f514601a753c8", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f1ad9fe5812ad725fec5481316b740693fc49ceb1372b2a071036d8b4a032d6d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=juMXbcQyShAaJoZ2IkZmfJXx1iJofAfFuD9Qq7H6Mu\\&c_ds_no\\=$" + }, + { + "hash": "93650ca4d841eba05853e4caebd4ce5062b3ad7d72709b4974305415cf8d1551", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3d5ecf5867cc65d938db96713e157cfcb11112e6d56d0264d9fbdfdf840ca79e", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "01e2fa72a54050757101e37191ad64dbba5010b1a19e9adab621bd10c09952a1", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f12e95a4ac481cb9943466db0e5b964833cfb82ba40f2a9c3bcf0fda07ef3e60", + "regex": "." + }, + { + "hash": "41bd90b4259faee9be2bfc4f0a757ca012ded99ae668949b3fa342798daada72", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=iwaiRTSXkRbVDqJ3munIhuuN59W7LmK13i640qvudo\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "6e0474cd4fa9af325b72a0ba7603c9c71f732622eacf1191162ae101e4d675cf", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d77b33a09b86c95d3b7482a8212079437962926a7e1ce11df5d148bf76062e79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "317fb4a80bc4f2946a9e286846be006ba7f7bda38f9e54f7c37801cbd96e97e6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "27146a8c9ef02740979f14d3de61db87b5a6b78f5a125298bc36ede674a49cd9", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a941e2127aa3bcb4de10ce6a398b90c76e0bd7bb5f12abf1be92ee70d7ad4fc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "ccbc2fa704f596afaf49c369ff7aa765a8c626f67c76fec552abbee567e4c344", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c212fdc37fd786c5ed5a8664e600cc0d54a6cfb22fe5d9f470a02f9987861821", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "7054623887069f1376372e727d4ac3ce7e6b08bf5bb6ceca784b8c45a6aafd35", + "regex": "(?i)^https?\\:\\/\\/thundertracker\\-stormkeeper\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4ee39e48bbc48bcba0ef4df047eb16bbf8a88a4ad3f9a52047b1f303a1393107", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuashcakscmasem\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e06080635d6061ec040d82f7879a6a84186cf40510817366ad2d33601288a89b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f8d0dd4aaaf655c41eae5f5bc9a62a43480a569d0d3c0010c272055cbc6e45fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "11eb2d2a454ad9036d110a9a65ec4a74590c6dd87cf718437295091ed98bf588", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+alizathly[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)" + }, + { + "hash": "f3d1d5dbe43479876d157a5eee7d0896cafd135cfe8ed3d117d2561691442f9e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=2MEa6EWPR73LEmbAS4MwxFVSBqdXwG9LtWtkVmzrr3\\&c_ds_no\\=$" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=UOkD1a15e6hB1p3d9JMWPFDL9AICaDjsFQvmxGbjI0\\&c_ds_no\\=$" + }, + { + "hash": "6af0a37a0d53f3750f169be6a9dbe258689f6050c583575c20a8d77409d4f1a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2049bc710e326063edcc92379121f4faa0cd998b63e26eaa66e2e3f459af80cc", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1bb98a24b23fbf0730e8970d14ad2d55f84b91d042051fdc9966bd16dbcb47de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "6eba8f312bf5c905be861bc09d1d8a9357f2827716ca5bf44a505a0f7b4afb5b", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=eEa5RSfXJ3fRze5rgLZBWcUi3iNu9HdRHAn4AOqK1N\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "72a4a04a48cca61957bb8cc020842240340c19c793150725fac347366fe1a761", + "regex": "." + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=jodptGyV7h0rTMNWLKR5NyEvkYInR7IUZMcC7TQUDI\\&c_ds_no\\=$" + }, + { + "hash": "f75689e0ad3976f85062d67d1c8410c32e9ce0e66070a814451a3e84538b80a4", + "regex": "(?i)^https?\\:\\/\\/thundertracker\\-stormkeeper\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "14e8ae3601241c9a8eabae513cc6d612bd6cdd5c13e9569d461cfde1f492dd10", + "regex": "(?i)^https?\\:\\/\\/thundertracker\\-stormkeeper\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "57b12e1d4cf071f0b060b1ecff39081589050636eb4ce84a346b679f622e791c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2a889d094f98b80d0e6016fb014d2a1ca203a65c1399085e947e6b5ae29290ef", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "67e633ab5b2deb7056670afad187cea518e105f259e46d38e50928b91ba9059a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0975f61bedd496dacbe8db9af496b7f5a2f158768bf5b2afb0b8d8af628a87db", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsfyuaskcmasckasme\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "be4b63e625c3c0a12dd865419dfc0c5682280b81bc4e0ff71bb0735c3c4a800a", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksamdtuasckalsekasem\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4980f29012bb0000b4ee6cb0e7080aed1733a3eb725b0d56e4e79dbf88980750", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b7a519e84236f9f4b656fd86c1dca118f9df9b01848b9a23370df72af422e6ac", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "36f915c74fea748dab1524f81ac207ade50fc90d772f4e0fd10fd1c92a7fcd4b", + "regex": "(?i)^https?\\:\\/\\/www\\.jygndx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2833eb5f81ee68737794066146182996a4fcfca4a4109caa011546ae7766b6cc", + "regex": "(?i)^https?\\:\\/\\/bafkreie2e6f6qxi2lz7i2aiw4qi7k22ggelknley6g3bxgcx5bhzkz53bm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=35C3Q7Jj0nWuQVDZl09cazqF8dqj8yQLPzVfZmLg5u\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=sVJVm0QC2FlUpMfJRkGJC0LAbr4gWqgxECfpwRNKBV\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Favif\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8\\%2Capplication\\%2Fsigned\\-exchange\\%3Bv\\%3Db3\\%3Bq\\%3D0\\.7$" + }, + { + "hash": "4178622ce406d67bf302b77328e8e27b9a8c225bf395058ae523f58f11271701", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksamdtuasckalsekasem\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "176493f08b38f4340ab1b5a9abe47332513226efd8ecc596f0251fc974b7d369", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ece40235aefed96957a958dcd1929c43cbd70436962b2c3d12cded367fd0ff73", + "regex": "(?i)^https?\\:\\/\\/cb30793\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "019de4ab20384e96e6816d5db931016640e883d559ff639389978195e250bcdc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "caaadab22ca09b4bb79f5b3003701f24ba77f661e4e7bbf750507e0458ac936e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9969[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a32c40502d5d179ccaa3420a37ee4ecf1407a819ff4bbf15f60a66bee5e375d1", + "regex": "." + }, + { + "hash": "9b5aa6dc1efbb14d47b74fdfa70dfe2a265a2a720bc0d7968268e7a2ac758898", + "regex": "." + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=3shruyTj6LL8UMQLcPoRkyyDNcuYiQ8Q1JRx6YVgrv\\&c_ds_no\\=$" + }, + { + "hash": "88485f290331a667690b9ab9e245b61f54610c881785a0b0cdc9de5c8a71a229", + "regex": "." + }, + { + "hash": "bb3f6140ab81bbd99c32db0981fc2eb4dc35cc937e412a6274ab60350e088051", + "regex": "." + }, + { + "hash": "bfb95abd0d91bcaf9f062c240fc6138112735f9526f14dbc2254dfb727465434", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "db34ffda7a48525bfd3c71532862bdd9441154a802f41062d4a5dd984d52c0c0", + "regex": "(?i)^https?\\:\\/\\/pcoaspealvksdmtkalcaksmeasme\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "01af66d33f3e84cefe6aa3eb9c636bceea84d9cf1a0ba72df45d6e5eb5b88d9b", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-superhot\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "edcca4cd4df30414e016b78dc42e719cd141c9563de1c536c18e81be3b509db1", + "regex": "(?i)^https?\\:\\/\\/hot\\-videos\\-leak\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8810b7d9036bd1100e63b52b28ac8a3216bb8f8f2df74679cc1bf7cada9e18e5", + "regex": "(?i)^https?\\:\\/\\/www\\.jygndx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d47a2fda2364ae2f65ca3abdd47b8f5b4285ee89bd8bb77ec0cd21a03738239d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "02fa8ed639aa807f4699326883df447eda311baea3f29f6a7c1093a0717772ef", + "regex": "(?i)^https?\\:\\/\\/mkalmw2\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1db5c1919ba0f5d983aec3c71e205a04918399464b8577a153a30ccfd558c2f5", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=TzTV9wBK8niD8ZedFrQGromWHI2mgnXGPm9e9Oa8nF\\&c_ds_no\\=$" + }, + { + "hash": "c4e4790175bbe1a770b035fe03047e740d5f07935a1f0d1417fe7f8b848c0649", + "regex": "." + }, + { + "hash": "1c45025f80ed8b1f199a4051d2db4bd6866457c794e609ef6cd3d5cf0e73cf66", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ac835a8c300c923dc88213dae71cc9da88550099ad89675ef96d1f73bf9ef138", + "regex": "." + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=MBEGGpRljQVNysTVw8a3rRCiMXOGydND4BT9pZm6ET\\&c_ds_no\\=$" + }, + { + "hash": "addb848e5c8722634c10ad1ff622febbb793a7f458b3adb3954b4a087696660a", + "regex": "(?i)^https?\\:\\/\\/www\\.jygndx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8ee1e4ddb9aebe2e6928f2e3132ff864f815a991de834bef40dcf013bb2e0afb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify\\.php(?:\\?|$)" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=MrsAS5Y2kOJY5CjLIT6aXwv1MWQJKZ8zsOkisqS1fr\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "d98244c1c1148d7e99baf9abfe2704f381d61c1f25951139bdfb25c624b2fcc7", + "regex": "." + }, + { + "hash": "411d7bc1046a6bc1a88ee7a10c5b96ccf9569edeebcd661f2f3b1f38fa703ff4", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fdd3c3512b42877e4345ef7c3261a7d2dbb6d88362b32660b8a5a34bb0152b74", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "97dad4d500ac734edb55b1911c017de857cd615032e5b3d12cfcf333519fa653", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "076e7412dc356659d43beb94934616c88e9d18d07b2247c046f0dce30ff15f7f", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b8bbb459eaf9a9a0abbe826bd8d9e3e34ae770efe9038e71ff3e16628c633f1e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6239df612d34a3f132e01d6f3a1718845cc809ebb44a5dca1ef93ae10626c4bf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "58e46b8eb635ad722e734937bb20472034bc8d80a15a7894e8390c24b99a56fb", + "regex": "(?i)^https?\\:\\/\\/hot\\-videos\\-leak\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2b04c7e53366c4f737e3e439270e12c6c38fe83fbe6fbbe9db8826b1c3400c2e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsfyuaskcmasckasme\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b99227f83e4abaeb42f27d9983dd00dc4391d3e1404fb78154c1d1cae750a80f", + "regex": "." + }, + { + "hash": "440cdff14197c01d9985423649f6e4ebff1a09b7b8714d2b91d58e6c0b58431d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "0dbbffba6ca47dbaa00b7d62a9cc713b1cb7b1c51c96ccf780dc409b68d5061f", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cd73898b36c20826fc1abacdfa2410421949d1bad2e24728696e27f75cbbd0ea", + "regex": "(?i)^https?\\:\\/\\/thundertracker\\-stormkeeper\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "89a3f7a3767e0dfd3f9d0fa57a04acc750823d19aa2aef55c758f43b622d93a1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9918e0f6735e849e2a33b1045ba88ac3270e1d32d0a37b57f9da8d70151bd5e0", + "regex": "(?i)^https?\\:\\/\\/mkalmw2\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f1f110850ee96867061bd91cca295e1bca3b560991afa379a50255cc3719f690", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6d9201c709e71a5e51d1835b11288f776dd023492f5356f26020dbd88f613292", + "regex": "(?i)^https?\\:\\/\\/hot\\-videos\\-leak\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=cS6eU6y9qeXybMQyu4zOEnRzuVmO8ECJrwDvOwP5HE\\&c_ds_no\\=$" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=CPDmbw2TPOIHN2bz07rrg0aPASefu3Ass0vYgaZJhj\\&c_ds_no\\=$" + }, + { + "hash": "1c7a17111c5d16e9495ea7d5538f2e5df619faccafd2c45d16bca21c592a7b5c", + "regex": "(?i)^https?\\:\\/\\/hot\\-videos\\-leak\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ca0ba1479efe16c7c61fe1199403c0fdb93eae95712c9bb14ac5264dc1568b7b", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "58da932b2c5daf6d99cf438df24a49610fdf0ae123e4c6bc130e6e37bbc07105", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuashcakscmasem\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "db1b7a5e22651e7b2caec591104658296f0eef04c2ff6c67844be5025ab0133f", + "regex": "(?i)^https?\\:\\/\\/mkalmw2\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8b876e7c68666384d86e3244e4cf7b4b6c95cd780681f392398ac2075a539f36", + "regex": "(?i)^https?\\:\\/\\/xhotvideoflow\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4eb86bb7a1255cf23a54ec900f40c7a3d014f0f3d7503a2cadc82a1d460abaff", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4452f6f1180a2b67b15db9c339d1ef2e69c76c0a1439db0013e0e28148220948", + "regex": "(?i)^https?\\:\\/\\/www\\.jygndx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fa2b3061f2aca62c695a363457e250077f57b275550f33a457bb5109210a7a5d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c68f9f335d52699975ff6cf9cf8060ed7bcbf4ce4be13b39ef03f38339fe337c", + "regex": "." + }, + { + "hash": "caaadab22ca09b4bb79f5b3003701f24ba77f661e4e7bbf750507e0458ac936e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9969[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "4541064b9b95a22e5aa5a5f9f726aa38fb7cad97ade09edd8ceb66b79c612eb4", + "regex": "." + }, + { + "hash": "ad7833f25cd9bfe82c64b0005da24067f90c301e621243f2d0bf1394f644c74d", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "57bf4483eb1d8a88a62dc462a097dbe5b7f39989c0084e90200b268a39025a04", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksamdtuasckalsekasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=pNeBZcJcxAzXouX3LRuYD1bDX4CKYr1x3g9GjTowLR\\&c_ds_no\\=$" + }, + { + "hash": "504a816fbb67a5691bc692356d0b2dffd3fbb5746c82731a6a85d3569ce436c7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a8a9688c0fa9e0728cdbc4e7a35bd16a49a4ab4829ba77015ba9fb1f4339c6c1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuashcakscmasem\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e3bcf7a4f32330a05ddd9da128c8e8ebe1a7adf29b688b2afa43794424f306d2", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c6e1d4b73543645396f5285f74a672f2715320f7f620d66298c33a982d9e783a", + "regex": "(?i)^https?\\:\\/\\/thundertracker\\-stormkeeper\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cc6aca408df69919a442d50967a0807132f84dbe1002482e6cc32faaac06d1e2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "06fb282f011a2c0e483ab1fbeba46b8def05ab3514e3ad9002e82ec80310c167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Upgrade(?:\\?|$)" + }, + { + "hash": "c3a462d74a89ca86a18e02292939f18956bc377d70432f84212186ab661bccdf", + "regex": "." + }, + { + "hash": "3d0e10fe35966f4cad2929fde7192829c00f81fffe4ce81ef71dd1ecb7f2bd3a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "87287d75456bb39b3b1fd08e193908626d6c012b013bab3f2d7f6194efaa8e02", + "regex": "(?i)^https?\\:\\/\\/xhotvideoflow\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=fkff36AOpkqi04VxQ31Af7XLma04dAN4swlgxKLzcC\\&c_ds_no\\=$" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=TPxAlf5EvK7xcEMAV7BzTzIIxPialMJcAoCg8PL0RR\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "a7aeabc0cf53cf9d7e824c2d7ac3981b891fbd4ee38fb0f82c9cb29a2f7a92a8", + "regex": "." + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMjUzNzI1OUA2YjY3NzdiMTY0NGI3ZDMxNmJjNGI0N2QwM2RjNmUzZQ\\%3D\\%3D$" + }, + { + "hash": "871e0837e9f4d00459c5c16733f11f6b7175b89c0450f04cc2a32d0c8741998d", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "625d70e6d4852f53de9ee82804501914b37dce5f8279aaaa0cf13ebdd5dbba1d", + "regex": "." + }, + { + "hash": "53951136f6e032132add7451312155f87ae8a3c7615236b2c7bdb333dbd9bac6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsfyuaskcmasckasme\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c86bfbabc8cd3ccdc44fe25817efdbc3852c0a2fab2e7159049a379e2f06a68c", + "regex": "(?i)^https?\\:\\/\\/vikrot33\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fd2daea58130d76c9f5efaaf1686d6a1e0d441cf4592b3129ae440807ae92da9", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMTIzOTMzN0AyMjNlYzRkZTJmZmMzNDRmYmYxZWY4NTBkMWMzYjM1Nw\\%3D\\%3D$" + }, + { + "hash": "4ee7e16b534eb377946a8caa9fce554053982a2ec7bcb447c41225cfbc03d750", + "regex": "(?i)^https?\\:\\/\\/nilblogq05\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1ef493f8802e89366ee440e64158c37d214d51fb19c85fd1aaef9ad24e5f0dee", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fe4114109d3d9c95613803b99cb9088cf54463c52b7cf35194173ef52bf7e601", + "regex": "." + }, + { + "hash": "42842bf83f641c6778eaba3d1ccb37e97bf5f796d2174e6d47bdeef12235a9a9", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMTIxMzQ1N0A3MTBiYjA5Y2E1YjQzOWQ5MzIyYThkYzQ0MWZmMDRhOA\\%3D\\%3D$" + }, + { + "hash": "134eb2ac665f49e08e42fd306d2473f946473427c6c17cba07d1d1f717961e10", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=ufrzBzHSLsAWGmt_FolzyISQL9zMdmToG460\\.46duCc\\-1733388954\\-0\\.0\\.1\\.1\\-\\%2Fin$" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwNTY2NDU4MEAxODI5MzdhZGMxZTU3NmVlMzhkYjQ5MWVhMGY1M2U5Yw\\%3D\\%3D$" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=NsRwDuJhec9mGQalbLOYW5fz84P1EtcoDLPXTGE7Ld\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "37ea8311afdda979fe7856105b532ba1467d527409e73c4b3368e67e6790bc97", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f8efbd6f3d9731a6436a56897448669553791450940bef34478959986386caab", + "regex": "." + }, + { + "hash": "339c1cb63d8ef420ff182c03e2111045e2593f4122b05196b6ffa6b3d0067c87", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMTI1NDg4OUA0NjRiNTVhNzliYzYyNjUxN2I5ZDZkY2NhODg2OTY3Nw\\%3D\\%3D$" + }, + { + "hash": "0fd5448a6528a91059d8fef3333f10e8a3a66611b593b0ec767469e11d395446", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwNDc1MzQxMEAwYWEwZTEyYzliNjQyODc0YWFmN2MzYjA4NjYyNmRlMA\\%3D\\%3D$" + }, + { + "hash": "1c5bbe67e318bff922a3bce5d7bd5d5de4bf68f97e4622ba73b763fa6a2e71ac", + "regex": "(?i)^https?\\:\\/\\/xhotvideoflow\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a4bc16865e40f17b27ff13f49cc45f0b07ef6b1ccd04f3e548569bfc7dfba54a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+maxi1" + }, + { + "hash": "80e025fb1510d99679bbcbf3ecd3bac25b64aeef2671f303bdc6f00461cdc171", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "09944c568d858c37c19147e71127a15955423d4c607a128fdd16478337d0abf4", + "regex": "(?i)^https?\\:\\/\\/www\\.jygndx\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "71fd885d843e5f8d413db87613f348b41b615d622cd9f2b0388dbce0cfe83e06", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-superhot\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b36747fe4f471d4e22ee07b26d72402a21b24251c67c3d63091ad02299da9e55", + "regex": "(?i)^https?\\:\\/\\/pcoaspealvksdmtkalcaksmeasme\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ea3392382a71fab96ef7544972e85be6ca30a91f723b19b0d2d56f77f342a76e", + "regex": "(?i)^https?\\:\\/\\/xhotvideoflow\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8e4a9d1f43000bd8266f73998b6ac6837912eb4db055895ca9730e11b12604af", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksamdtuasckalsekasem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d0990401d20d6e9d5b9a02e87168da94bc1861ee524e5d84b3bb83d338a81164", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "17d713e91aaa49f9bf5552ba4ac4ea0806bfc743478d5496d74e4eb4176846ad", + "regex": "(?i)^https?\\:\\/\\/litxvideo\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5c33184e5fda9962b1b48ac058611d1dc2d45dbcebcecaa1b0808111e4feb6e6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ae8289ca3520cd2c1312f54620634c6a587e039017b5efa421f907d2336aacd6", + "regex": "(?i)^https?\\:\\/\\/thundertracker\\-stormkeeper\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1344a6363a1e06fa47454cba3a9f6ec2ae4830e7bc99840f6f485201817ec225", + "regex": "(?i)^https?\\:\\/\\/cz27929\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "014bbbbf6b8af7fd548bdc375145f31a206d3138262500fd28ef1e0bf636aae0", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "249b3a15ec770400068274f15718ae1968d8d2938a3eff386562e79d97dd2dbc", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-superhot\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "30dbfa5063fc0571785aa53e867d1cec0db9c663af07448b7d93c36166977ded", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c46228ccd5f7062c5c588466f75eae76e01e08ed4129ccd2f8fc4acb46b700d9", + "regex": "(?i)^https?\\:\\/\\/mail\\.robinhood\\-alerts\\-auth\\.50\\-6\\-173\\-199\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "354466f7d33284ba66d4adc4e2070cb7b0dc776b12d2e42017ebdde0881fd0ac", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d40b83d3e0d0c96659663a83105b7d0d5885f3e344224c67ecc504e58a6c6429", + "regex": "." + }, + { + "hash": "1bd14122392ea27a38652e45c356fa0497598f9c18c8a099a70735f42ac25e98", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "06fb282f011a2c0e483ab1fbeba46b8def05ab3514e3ad9002e82ec80310c167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+livechat1(?:\\?|$)" + }, + { + "hash": "c8596e58443fd9cbef8446efab4f82b53505f2fbffe33d67d75454f504bfe430", + "regex": "." + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=QEna5N8EcNJdDKqyExHUSJH5K7nSfm0DGFvy8QwHbF\\&c_ds_no\\=$" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzI5OTIxNTQ5NUA0ZTk1NmRmNmFiMjZjOWIxODFmYzM2ZGJlZmNlNjIwYg\\%3D\\%3D$" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMTIyMjkxNEA0ZDRlOTNiY2ZkOGI1MTk0ZTlhNjQ4NGU3OWE5YmM1ZQ\\%3D\\%3D$" + }, + { + "hash": "0fd549d9db9836a4e701e15b0acebc3beb33cef7caa8d1dc6f2b69593d52f4e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+feed\\.curl\\.get\\.mail(?:\\?|$)" + }, + { + "hash": "8b4cc2246b3fa814fa1142a7bce0a79558b4b8cd68f10108433c43ca93b8a27f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2fd2bbbcbacb6191833368da0c81b6a09a8b25e78a3154112b4bcb95aefd47c7", + "regex": "(?i)^https?\\:\\/\\/xhotvideoflow\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f9ecf6ba328880f064b99d8fe477840280e2405c6cd8ac1c954775ce1ae70459", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2dff4ae388d7884acc17a975a9829809a868e7e035e3166c05f0cc350b119c80", + "regex": "." + }, + { + "hash": "e96784afc1c34d470499be25bc10b603289eec9868c6e9921711cec1bf6e7a98", + "regex": "(?i)^https?\\:\\/\\/cj65744\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "134eb2ac665f49e08e42fd306d2473f946473427c6c17cba07d1d1f717961e10", + "regex": "(?i)^https?\\:\\/\\/go\\.frosty\\-dream\\.top(?:\\:(?:80|443))?[\\/\\\\]+in(?:\\?|$)" + }, + { + "hash": "b8c5b108bd7deabb286a774b66807d4b3215076bf2dab90f2d45616cab794932", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0fefed9d62eb3028ffa2e03003989241715ad6d00bf87749af6b94af36925f09", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a1a3cf87248a1e5e28ebafdbdbd27270108bfa8a646b9feb45244d4cbcaf06ea", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "12fec2f6ca64b21cc1ecb8f6adfc87847e48a6c9c2a1c3a35db0a48ba1cc8635", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1e35ee9ef2182bc0a4388e4f07459502f58b07bc6e3b44b9252071339b13eb45", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "df70d74fa4300e6a6d83a665527b43e1eb760681aea1c4c44250cafafa9570aa", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksamdtuasckalsekasem\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "96aeead38310359762e6688a7ac49aacbbb602fa71f2c7b0c9ac246de2258a84", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cf06ce9d762ada08f72a9b307ced831b1b8bc17c3c59af84a57a2f6372a936e5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e884a8519ba7a286edacedb0bd1edf61cb1e2d51c56a01029a4a6ba984e35af2", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "40fa39169a3f91704ff47ef00767cec3d7876fb59463e672127dda40ca2e5870", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b696ff6b52d4adcc5c0127dda07ce870d47b5c0df018a1a2880d0c8aa87ed4d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f227a087b99d53c615254256c1cd1eb58649bc40a087ff0d4c0f0587892a26e9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuashcakscmasem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "102e9de55795dfc3eef33668a926512591332400cc2a4b6b8f4dc4a3c75e13f4", + "regex": "(?i)^https?\\:\\/\\/mt844\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "477ebf3dbc9b3df084bdfcb765e41e91b4bf4bb3b65d0fc3fc60e369cd66cce6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a601ed5de61c0dbdecf4b9f32aa51a910b2f6122202904f4a2c3efd4c2aa7340", + "regex": "(?i)^https?\\:\\/\\/www\\.jygndx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c2c850fa5bfa64166fe689a566947f424e56405f44728d0c8dd93422f75bec82", + "regex": "(?i)^https?\\:\\/\\/cn26036\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62046fd9b92cd04ab7eb214191db5d013530f676f763584139a7e84e191487ec", + "regex": "(?i)^https?\\:\\/\\/pcoaspealvksdmtkalcaksmeasme\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f5d0ac2a6804d80065d922680a35f187cad411599c15a6e6473a76fc435c30dc", + "regex": "." + }, + { + "hash": "f0645640050a368e1fd56f541531873a28639127b842aaca488662c4d28f47f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "35f7481bbbbf091995ca3ed153dad3606eaa186dbf0051fcbbb9c837046e118a", + "regex": "." + }, + { + "hash": "9c8f4e728bc60fadaa31fbaa8af2f435f4362cec3304c0197327940bef28b3d0", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ea13112534f3e19e770275fa0c7efceece7a1fa1189cb2781babeafaf67a0e31", + "regex": "(?i)^https?\\:\\/\\/nilblogq05\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d5faf9fd6d4c9728a8468d618291e88f78c1d625763b581c605ea20f554a3c85", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b916e7c879d45db14b408605da9e9d24c44a12e321e339e16ac53e795770a804", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksamdtuasckalsekasem\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3d9085d0e1fe56249beac4831d9ee30637849d8fc4a15aca854b7c7b9b7ae5cd", + "regex": "(?i)^https?\\:\\/\\/pcoaspealvksdmtkalcaksmeasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2fe7c4ff4bc1fe7c976415b370b9681743b45568a4754eb907a681f402a40957", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6230345df117c78719eed941e8bb2cd52825756244542061bffc6d4d3e0a5293", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\?c_ds_na\\=FURYVx4r63tcSQrUbhKKCSpBK2nvvqUI5LSjn814U7\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "8ae5b167c58a29a75cd6ea50974233f08713850beb4150bed013d65d3c78ae45", + "regex": "(?i)^https?\\:\\/\\/litxvideo\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMTI0MTc2MUBmMTg2OTI1NDU4MjEyZGE1NzBhNTE5NWMxZDMwNmMyZA\\%3D\\%3D$" + }, + { + "hash": "23f05a1c6747023befe98c0e8fd9297424d92f197fcd48e368012389acf60c87", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7df59be8fc6527f38f1c4feef381d922ebf758155f93f8f5b5f36ba1ffb80bc6", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3d6c31bac11e859c776700dd2d2a01b2e5b8dc5cf1002f9ebb79d3617187d03e", + "regex": "." + }, + { + "hash": "928753c98ce1e32a9159a868d205e5b27270e308330c2349c91d44b03340496d", + "regex": "(?i)^https?\\:\\/\\/xhotvideoflow\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "75e2c2b8bc19c66499b43dc46f67894b2949c7984d4d2b7ee9839db4ea0cc3c6", + "regex": "." + }, + { + "hash": "1a1caca7ba75ce11daf0a38f9789099cd91592032cc89a1ec668ff6f06b46b05", + "regex": "(?i)^https?\\:\\/\\/www\\.jygndx\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "aac4bb81365d25643eae2bd46743cda704b7539b322c26a754b7141e3d7a4cfa", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4b2e3946cfd2cadc4d4332d0e667cd7ba9982c8d555c3c8a798622bb482be676", + "regex": "." + }, + { + "hash": "79e4441e2ba3f0e24243657446edb2c1d05379cfd35296f932b963826042d503", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a577b257fd4e059a29b934ab29a5b965866bb9127e517e0c9231e93d69f9a4cf", + "regex": "." + }, + { + "hash": "50ca3eca2e8b6ca7845908655d1afa44e73feb38dc3b98bd60cf68fc84efd1fe", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "36723e983bb7e587c1b103e8b17d53a015b040167097f1a2be62d749e228457e", + "regex": "(?i)^https?\\:\\/\\/itrackmy\\-device\\.co(?:\\:(?:80|443))?[\\/\\\\]+cuf(?:\\?|$)" + }, + { + "hash": "5816a67ee31324ddff1ee747d5d8e26ec97e753956a7b5d8cc431b66bf156258", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "59a15ba5a8ecf5e5fba956278dc8e061ecc2ec658bc4e14b3ab0d04be7e0b141", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-superhot\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "36275ccc989602a0825210b1433876ffdc985408731c512091bef867be097ed6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "adeb4e4ca03f9fc2aa27fc9cf4a759e9c73aacbc5672e15884c9402f960dd671", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMDI4OTAzMEBjNGFiOWM5OTkyY2MxZDg0ODc5NmFjMTJhYmFlMGViYQ\\%3D\\%3D$" + }, + { + "hash": "b81da655ff2dcc3d98725d5311df73493a974dc394dbb9e7b71d95af613e23ac", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6617cf372d45412c7149910fe3a8c0e2912af706e1b15ffbc74afc0b45faa3cb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuashcakscmasem\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d8538b061c981520c4a264fbe99a11dc18b8d2f12f22c88584239a51fa75ff1f", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "87e1240f1df17e12b205e78cbf5d4012ca902e94edeee2bc002181b3492e3f32", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e6001f298783d1f49d8318687d98642454b282a99761f1c7d0886a72e4ca8dd1", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=TU0x0wSPS2Dy283iM3sLXkS5NAh3qaYFLJ6hmKHHll\\&c_ds_no\\=$" + }, + { + "hash": "c635774f66e54f10a052c630ac28c8c8b3552e3a67a442ec34c44cb9d9460eb0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "71731430e7f7eca352ca2f2bc9db310c706df8aea21829f11a9d239dae8f3d39", + "regex": "(?i)^https?\\:\\/\\/hot\\-videos\\-leak\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8a7dfc3694d6364caf489a95509a19e7ad6d63c42eb7d5d93b8f06ad54060324", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7b31b9cdb70ccf059d2e048d42d830f52c9b43061720f6f100ba7cc177f60ad4", + "regex": "(?i)^https?\\:\\/\\/pcoaspealvksdmtkalcaksmeasme\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "be58e633c068760f4496d56d578ce006b7596dec5496b1dc735e45cd190986ff", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aa7111f30c0608fbc080c50d62a7e6975c132f533866a72267c8dec17012596a", + "regex": "(?i)^https?\\:\\/\\/pcoaspealvksdmtkalcaksmeasme\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "347cf1da532a0c7ecc176788466a6b7cc1b1c1bb27fc052994301b227f1432b4", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "349a10967d098c59f51928c207a474c888a1245eaffb90747f2ff268d3ae741d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e8c57a05b06d45ae7d9cf01b643010b026d97aabce33b4257abe7307031b1874", + "regex": "." + }, + { + "hash": "6b0baa2fd39b7a1de9d1d6a15b8869b32920c7ffe98957e1afc7019f0f92ad10", + "regex": "." + }, + { + "hash": "4c996905ad08823354a10b524cc7c6e5b154459bc4afb8888ac48358059a604e", + "regex": "." + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzI5OTE5NzM4M0AwMTQ5OGVmM2IzM2E5MGE0NjBjZDY5NjJmZGU2NzU0OQ\\%3D\\%3D$" + }, + { + "hash": "2987eb3c3da4a4d79c531a4d5f8ac113de1b99aa757cf55ac3af8621c101f154", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+icon\\.activate\\.opo(?:\\?|$)" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=JLgK4D1LTmRQ45PY1Iwu3mRvoF6CPSqO5HZdURhLSC\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "e22dcb24647860e8fc79ce8f5275a70376f203d0b8407dc0be41e6018d0dfdf4", + "regex": "(?i)^https?\\:\\/\\/sczshcro\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9fa3e1a9dcf89a02ba30d8377c9dd5438728415f1dcc76a7a6c62f345c52f3e9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6a6b6605be6aeda2ab0f1f09dcf3b73d207ac7c795179b060faff3730d1916ea", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?token\\=MTczMzI5OTE0MDY3MkBmYTcwOTg0YmZmNGIzZDAwYzFkOTVmNzc1NjBkODZkZA\\%3D\\%3D$" + }, + { + "hash": "2639ee60308cf715c176a194506544190dbd9ab1a55eb0084b16d428413c4693", + "regex": "(?i)^https?\\:\\/\\/nilblogq05\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "49696161164878e0c2459bcfbe9f7f7e170884d8e555a0cdaa5ba011474c46ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30db0f24549ace654b1a0cd17ea36f87a96c11521b40a6ed55fb7a617af306db", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "299cb7e93c67cba50750d88d37b46105fa513ec4d60481acd5fff91abaf71586", + "regex": "." + }, + { + "hash": "fb29dd1d17f95be8ffe7144570448df5aeb6de9bcc78900d9be929143186defc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=J7wxJbEeyaHowF9uysyMJvo38D9ToyROpEGVvn0qkD\\&c_ds_no\\=$" + }, + { + "hash": "6b219bd632017795978d252208d870d6739842a65d92ad7f1c0eea05f3d2d81f", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=hF6fvznkVGIW0SP8UtqdaPFq4S8hVukuuzTV6hMZ8n\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Favif\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8\\%2Capplication\\%2Fsigned\\-exchange\\%3Bv\\%3Db3\\%3Bq\\%3D0\\.7$" + }, + { + "hash": "7a0e5f8402de07a7d247b0755f07a83e942b81f0afc854e213cf6791acff956f", + "regex": "(?i)^https?\\:\\/\\/hot\\-videos\\-leak\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "87d5c218bcd7b85b979eb86fd8e52acfdd06ccd926320c0ff9d9caf268aea69e", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ba0dd6477184e3b23d5626a9d15a120112bc67e445d5dcc14d009c80925f2456", + "regex": "(?i)^https?\\:\\/\\/hot\\-videos\\-leak\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b678eeca5868d54bbe3a7f08b171974f439433897e24ff090d92193f7e8070b5", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksamdtuasckalsekasem\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9f62cb8fec963cf1e78002d8e6f6c2c6ed5dc04866b0609939f3f10eb19ead66", + "regex": "." + }, + { + "hash": "8d335c817b1236b2a75acdd8351b31f091d0f0dc74f151ff3c45e29c53325e06", + "regex": "." + }, + { + "hash": "6346ddbf0582f4cb9010ade7290525c785eb2621b3b90645359d6a6c889550c9", + "regex": "(?i)^https?\\:\\/\\/pcoaspealvksdmtkalcaksmeasme\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "88806161611fa068e075833a9514653c5e85c43ea2c9a29e879a5b7b29dac17d", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3434e3b9a20a076a2a2719c2e77e71f9dceaa6d9063d238a038afa46303ec26a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsfyuaskcmasckasme\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "52c2bda33a8815396c269c7de17784c546ce3c751abdd9d2356063927f125f75", + "regex": "." + }, + { + "hash": "e90e4e421977bd043065feabcb53c9e6c0b0f7915cd1f22557dbc8de310a5e65", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cc5a645359cac70914fc371ad3bd83cac31a09b70e0a1d49c4768dbb81a8ba6e", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "78e0427a6e931d9ace89aafc157d9aa3d9ce64ea4d2a9eccb1e14d454b3f0fbd", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dd0139dd77401d06c6ec630b78f09260c967440422643d322d20ed5cb1337a01", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6eb839adf577fe6fc586f3947000a5251b8ef8ce16b6bc6555a1fe3c8d50f184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\?c_ds_na\\=2SXUwAAR8M3dXPsCdUBBsGYLRZaIRMjIYfOqwHjqVu\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "f6119ff47dadac8c95115c7f3e1f7b919cbd634f58a60a0b0417aa32303c59e9", + "regex": "." + }, + { + "hash": "76dc536e43e2deb2772c3cae219c7e3e5cda1873c1ea05bcd3a897bd15203460", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "235c2d742e8411b7aa6ce2a29c218984128773fce15db60d27e4bc8a079ab3b6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwNTY0MTkwMkBmNjk2ZDUxZjc1MjAwZWY1MDJlN2VjYWMwM2YwZGUyNA\\%3D\\%3D$" + }, + { + "hash": "2af7cbac67333b73f9bebd05b9e2e950ebe60b085181e2f968d23fc7b049bde9", + "regex": "." + }, + { + "hash": "1dd95f96b748474293b7daf4f478a6aac03240891df96031a38113441b4dd760", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsfyuaskcmasckasme\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "07e79b9c830a2e4ce6570f196e840869ce3338da000a4f08b385ff286ec16191", + "regex": "(?i)^https?\\:\\/\\/cy13413\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "5bd21cbbdac4b73ac2ed366721e5de9d4ede3311ceb19b8d71c5bf74efa1acd6", + "regex": "(?i)^https?\\:\\/\\/cp76923\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3D4Q1r_kPIcXzzQi6XI8y\\-2FN7gfL\\-2FOjtwxqeMQl7KP\\-2BYvGw2vek\\-2BVMyPiOoc7cXSvtdoG8lclH9JGDtw73SVaJvw3ulAWHylJAsXV2KDtApzhf\\-2FJzs9\\-2BEEoDsdNs7wStMXCsqxj9\\-2FCvjGH8PJCh\\-2FLogXV13X1ze\\-2BFr2awqijPScy\\-2B\\-2FUWsSUtXjw8AMshLJEDzq39k51Ptu6M8PhH4\\-2FZwRGUezecir61taqCgbeYnGX4VFzpoh0mReZxqyhttf0o6nR1ZOPA3NbilalxhyXAW9cP2jy3mkneYwDMWGjzOIbuLlbfe\\-2FnuqAQRWD2MYTb2Ry0fRszxjog8kY50kAIzCe89p1TjP4w\\-3D\\-3D" + }, + { + "hash": "7afaec51d3afabb8f00f0e019ce22a21d093b0600755fa2bdb947c0757dbe1e4", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "dd690251e18a61a2b6f007fd186213950de93e273ade2419d8b22eabed6cb7c3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "663e928c43ea94180b9f4911644c935777bc7997d38ca129facb9d90d1fcdd57", + "regex": "." + }, + { + "hash": "764439ed6b756d6fa0bbb9c2f40cf1f4401e9a61b3bfdf424c9ae8ae1230bb4f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "993557b5d16c49cba7b899fdbad577c047cd1ad3234aee824ba8cf46569ec84e", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "36e45b3d4337441f2a3b04af1feea15c228e4b3d6b3ea533ae3909b8a47c11e3", + "regex": "." + }, + { + "hash": "3f1d6c72a30aa974211b633903c2bd736ddfe0a5cc2c845a8f6dbb13a2c25bae", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e0a39f34ea839616121c4d2b35eb97da2cf311445a9014d59e6e705ffaae611b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f590be3cadcfaaa22f184b46ddfa820d27e9a14fcf8e206d008b70d73d89bfb7", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cfdcd7e6791dc7c13073e83b4ac325b19a5687275c13e1ce2255ff1d92c01757", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzI5OTE0MTU1NUA0MDM2MWViN2Q0YzQyNTBhYTM2NWRjN2VhMmE2NTJlMg\\%3D\\%3D$" + }, + { + "hash": "e2cd19856d9b99ba8611b2ce9300020f7e8d6f4f34aec10824d089a3c13fc4e9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuashcakscmasem\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a6408b5a173e7d25336d85eb23994064beaebccbd66daed0fd8d8066e0ae1e85", + "regex": "." + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=jZdwPNExJDpITTJakHxEqTdg074M90IYe7Ke5exzZb\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "7f9b3d3df583604c7c693d00aa22c48b294d7c4b3b904b8d6e3628b35b76d982", + "regex": "(?i)^https?\\:\\/\\/nilblogq05\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "79e0afc70ddd10974ba6bfc1dc9a3a75edbf78821576b2d01222bd23589028fc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7b4d17fd95eb9d8c5ba78acaa36687bbcaf8d5d6995f212bb0bdd165a77e4615", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdftuashcakscmasem\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c041440c8b21a03af987c2c51a4bb43145da09a6fafa394c7fdc39e2c585c418", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "115642747856ac73fd15f105782d76c6aaba5c3b194382bdbf24dbbdfc1870b1", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "788d2a30d57e9591c105cd8594cd4b075623001647878f629d44b896d64c0f92", + "regex": "(?i)^https?\\:\\/\\/cb74413\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fc8be7fae79db605a3e0a1b7a519eb7d17ee4260a36f9de7d5e48a5f3e13dc08", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a969ca870f46578725a74ba9542252722bacba9711fdf3c3e0756eebe3872cea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=J4UPMWx7oSgdDjRiieK9Z1kh6TGjsPlAjj1at3dKvR\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "ca21ab9f833342ecedfcf8607f5f509f8165bc105ee928d98b73aa2d61320859", + "regex": "(?i)^https?\\:\\/\\/thundertracker\\-stormkeeper\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bc5513b535251d17772bfd18bde5c094986c27c406db00028d899577149f3b4e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\.html" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=SBS7O97cnWCEWC67MVMIqkDa9QKTC0Sru6Bd8XSjDD\\&c_ds_no\\=$" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzI5OTIyODI4MkAzMjkyNjI1ZGNhNzY4M2M1Njk0NzRhODVjZDAzMjIyNQ\\%3D\\%3D$" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=LlK9P4VwwxjNLnNVhHNqlLtJkfLO7E2DX03m8KPETz\\&c_ds_no\\=$" + }, + { + "hash": "8ad4bdc0357f361e2a041bedf93893710ea340709142e38bfdcd3cf4452b7ca3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "33810a0f970fb8e9fd7bd5089a2dc386fb54ce4280fc355474a2ff2cba4656fd", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=tfzqQjUvWtXdUeCXmw9PoQO3qtSRvqLtMcnJP3NgMk\\&c_ds_no\\=$" + }, + { + "hash": "4ca1e98ba92562aa25afb80272cab8aef2546199bed49b4635b34836df2ba2d0", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "294b8c0e3680b5ddaf7e22821db0db33edf847818791731a63b8d316e2f503dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a4bc16865e40f17b27ff13f49cc45f0b07ef6b1ccd04f3e548569bfc7dfba54a", + "regex": "(?i)^https?\\:\\/\\/gx72\\.2\\.vu(?:\\:(?:80|443))?[\\/\\\\]+b100" + }, + { + "hash": "2b03a12ffd41803a93a608275b453ae453a15b56d5967fb38c3bba06a5ea2f0c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ff4c87425d6242a7b1019869356508db7ae157f5ab4804d376ac47473b61db9d", + "regex": "." + }, + { + "hash": "6eb839adf577fe6fc586f3947000a5251b8ef8ce16b6bc6555a1fe3c8d50f184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\?c_ds_na\\=RBuQDzVuRGeh7KvLKRCKYzvWD4SEXIFA7FXFzzBKKC\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "e086d63acfb3d2b5eeab183bc1b34b8b1f7cacadadff735e95edf99d8f0b8971", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4d7c27fcb6ea6d9226bf294ff370d4af4f9cca191d0a8521a5c3a6109d7705d8", + "regex": "." + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMTIyMzA5NkA2N2MwY2EyZGUyNzA0MzlkYmYzOGViNGYzZTNhNzE2MA\\%3D\\%3D$" + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=TaDvftOAzUvyjO4DYchGenUQsWruDUVo2nJqrchqQc\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Favif\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8\\%2Capplication\\%2Fsigned\\-exchange\\%3Bv\\%3Db3\\%3Bq\\%3D0\\.7$" + }, + { + "hash": "f50c8b2d629e041285f1930da244b37d4c673b7a8a9ef5fc9e707327aa6f1c74", + "regex": "(?i)^https?\\:\\/\\/cb55192\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7087eb87b7a1a0b4552f12f87808ad7058fbcd2e0678557ce90d1299637336db", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-superhot\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "85eb797c1c14b2e2de3470962d9ffd5a01957718325fc367ae8fc55e5e612210", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "49b7561f8cd6709962c92b45956d0e5a0e66bcc0541d9399bf89c4d4066cd97c", + "regex": "(?i)^https?\\:\\/\\/nilblogq05\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "178a76f4a6ce1b487dbcd316f21fa59c6d11e9c0ea6f10cf8e2f57e062d22115", + "regex": "." + }, + { + "hash": "d332b17a839b679a6591f21b05feaf801b6903a128ebc5545397a525a6572698", + "regex": "(?i)^https?\\:\\/\\/www\\.jygndx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bd680ce7e2a56fc13124138cccb5063d8760f24414de8f487ec90cf4f4c868ce", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "328e487d671aa13c091f93d90dfaa7d993f175d03f10d0b47fb7da0d36b8d702", + "regex": "." + }, + { + "hash": "14b883b6b692fa54a79f105d49e68aacb6bc6a14906c5716a6f3febfbc179e0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "023aff04d73bb5de582f8cd67295630e16b2a4bd724becb772ea78f73da58944", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzI5OTI3OTMxN0A5OTliZWMxZGZhN2RiYzY4MTUxNjI4MTU3Y2U1ZjNjYw\\%3D\\%3D$" + }, + { + "hash": "347f9e2af82f9c7dbdf5274e6d7ecb8af6f932485b7086b76cb4676f990eb474", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5c445b05a0abf766eddad5aede4c1996f2b9340460fa109b7d5958ceb3da592b", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "360adcb83b49e4c914df51d9e50e0d968eb28f263a55d56895346776de30a06c", + "regex": "(?i)^https?\\:\\/\\/cj20755\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "82d5cc52e822cf6fdf35ea15fc36a176b17ed92ac980a0ead03e374211c0584c", + "regex": "(?i)^https?\\:\\/\\/xvideo\\-superhot\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8197e6033aead4ef1bb934e72cb82a08927f4c9dd3a3fd93566392a302ac41d9", + "regex": "(?i)^https?\\:\\/\\/1305b\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "06fb282f011a2c0e483ab1fbeba46b8def05ab3514e3ad9002e82ec80310c167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+livechat1\\.html(?:\\?|$)" + }, + { + "hash": "8a46cf77f06d560e614bd24746d08d97fc9ef93981f23061cdc664479ecd146b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwNDc2ODIxMEAxN2E2YThlZjc4NzAzNDQ3ZTIxMzMyNmFhMDI4NmU3OQ\\%3D\\%3D$" + }, + { + "hash": "eaeac1f70394f737d4834e130bc343c743df0501a33825bb5e34ccf16e3bf55f", + "regex": "(?i)^https?\\:\\/\\/litxvideo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "09df53f119f0dc9ab977a58e598bc362231893a8503ed213e7bcb86073ff9054", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ca9bc06a2fca9ad10d4131c1cc8dc4bf85c986e1aaa4f21ba8fd70146b38f1ed", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvdmfyualcakcasmemas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1a460bcb5105c21ec452c431db70a9e316636638b5d0781dc455122c0b4573df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "ed42efef553cf8ad34cee0ab8a9541620234a096e54f537f166c957094c3f743", + "regex": "." + }, + { + "hash": "4a1be739c9375eed31845a874b6082476dc37754a20ea65af93ab8c0f19f8a88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "d36938b3d5dae59e53217c406e7255acb5d37b375ebc343c5889f407a6040db2", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "31c4a22e880ab331211937281f540071747f67be9f2ad859b1be20a89a6eb182", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-video\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c7d71a622a530e6ddb15b382a267dfcea2e2e444c157c4c2539ecc706a00625c", + "regex": "." + }, + { + "hash": "fcac384e77bd0d7f3280f279ca1e78a5075fe84cba6e2a1aa45f30e15afd0461", + "regex": "." + }, + { + "hash": "18f12bc9c3a434d4f445a9fafd16349fdd6bf2b596ebfc2aa50d62c7e315cd05", + "regex": "." + }, + { + "hash": "14eaf0404197ff2481a72cc4503fa7ae3d6b28e29693ba653271898d0030b603", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "490018c1db0cfaa05f9d9d3b8a319b057b609fca9fd1c0694af4fbb551460fc5", + "regex": "." + }, + { + "hash": "89e70e304332fbd35a9d88a065755b4189f703a322850151d81764de8192c34d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6f1b12b784a774a5a5848062fc5004a5c09647a8ac96ae0e418ff05d36150128", + "regex": "(?i)^https?\\:\\/\\/xhotvideoflow\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e3446db48d4ef75f8be3bc3fa2caddaa40ded171758594cb51521d3869beb6c9", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7e50a71f608aaed71b235f298dbb92bb12de4571b89dafd658248696e1c2223c", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c21f634f007bc55f7908885b8be8dcb68cca5b6899a6b3389090d9c5f10b5c6c", + "regex": "(?i)^https?\\:\\/\\/nilblogq05\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2bc721fc4b8eedac155486c0c8319f7653564a2d8204e6831e12869dbeaf345b", + "regex": "." + }, + { + "hash": "24fed809134c957156496bc89048e3a880fd27700598ebdebab95fae2f5b48a3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7d61bbb06cce520bb1acc0c4adc74588fc339525d24d6d33477c18da3895a16b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzI5OTIwNTM1NEA4NmYzMjRhMzdlYWRhNmI5N2Y0ZmM4NDhjZDNlNmU4NA\\%3D\\%3D$" + }, + { + "hash": "5159efdc52172add7ae91aa18e25497e54d0c95f5fa0e43d9a27fd6db94e0bd5", + "regex": "(?i)^https?\\:\\/\\/pcaoselacksmdtuackamsekaem\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b62bf173fa4afdc491818856e31e37ed5fabc9f591664698e087351ff5a1d1e8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0afba653e4d5e1dece46b2a5480b552db0adf1ace1ffa004d277afd79fc1cc08", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7d87b77e61bd33edbfd22e99b4362759f008e115d24f5c95926c05301a368f16", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuasckamsekasem\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9431bb3ff314ab03e3fe8ccffe780ead882aacb52c3c2ae797739a9c340a2122", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d691e63baaccb9ddba3c01f817eb0eeeb38cde3a628f91d3f470123a7a0d0e92", + "regex": "(?i)^https?\\:\\/\\/mkalmw2\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "443312875628727f047a0d7fbb9baa7f774d207c5f244eca9a2894e3c95f8447", + "regex": "." + }, + { + "hash": "973e25467c1eb89635ea70211643a9dc21d75fe0c85d26da6069c46828b608f5", + "regex": "(?i)^https?\\:\\/\\/hotvideoonlinexxx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6eb839adf577fe6fc586f3947000a5251b8ef8ce16b6bc6555a1fe3c8d50f184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login\\?c_ds_na\\=RiMZB5kr0AvykNN1n5gVDBUwaZFWdB9Z5YXFNHwI1e\\&c_ds_no\\=text\\%2Fhtml\\%2Capplication\\%2Fxhtml\\%2Bxml\\%2Capplication\\%2Fxml\\%3Bq\\%3D0\\.9\\%2Cimage\\%2Fwebp\\%2Cimage\\%2Fapng\\%2C\\*\\%2F\\*\\%3Bq\\%3D0\\.8$" + }, + { + "hash": "0ed89b5989581ef0804ae3b7d1b93ca60ec1ef6e072b0dda57c47c61039af9d3", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1f3639c54d6e7f6f50f918bba896f67452fd743d80c62d18fa94c430de84fada", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fin\\.corymi(?:\\?|$)" + }, + { + "hash": "74edb9d6833166d72fd36afa95384159b6eb745be4b72571e924e09da5bf82b9", + "regex": "(?i)^https?\\:\\/\\/xhotvideoflow\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "aad831962be054a448ca9b136c5ae9b17de56258861534ee33fac7916c6b4f35", + "regex": "." + }, + { + "hash": "ed1f93e9a6f488e9361b90cec4536e72fe50e673ba762cdc05c3d28f4484744b", + "regex": "(?i)^https?\\:\\/\\/gobloga9962\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bcd1becb3645f4882e86c31ea2820b59693596cdd5aab68fc16d8aa18a341cc8", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ab76f3456eab6b558da169bce42025f5c70e047ae56225c842cebc266143dc46", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "edfa0ca5072abcd32533b823fae4b6695b596c04e96c6486fcf509ae5491df58", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzI5OTI1OTU0NkA3YzE3YWRjNjc3ZDkwMWIzMGRhOTM4MjYzMTA2ZWUxZg\\%3D\\%3D$" + }, + { + "hash": "9c53d26d9fdf0cf677ba8d1fd024db2f5b582eeecb90a4126b2407933d20afaa", + "regex": "." + }, + { + "hash": "8ee01e66d80cb9efd06fa2ac8de65e41f8cfee8a161e7c8b2000e29a99ffa77f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+update\\.php\\?token\\=MTczMzMwMDIzNjc3MEBiMGU5NzRkOGZkNmMxNzVhYTY5Njg4OTAxYTZmODc4Mg\\%3D\\%3D$" + }, + { + "hash": "ae30f7ec134ad7fbe132cbb369b86fa6f9aa128b664ef7a78b917ece6e684d35", + "regex": "(?i)^https?\\:\\/\\/www\\.wefhtd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a0e1fdf684d861829064f0926bb3d6d955b868785727bafdc9c2a1cf481bc690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Fwww\\.ewfbywucweyiqnuei\\.com[\\/\\\\]+1[\\/\\\\]+010001920cba4825\\-0e70caf9\\-13c0\\-4781\\-8560\\-2bf0947f00d7\\-000000[\\/\\\\]+vhIigv8yZkxDHL4SL9cLCwwGzdw\\=392(?:\\?|$)" + }, + { + "hash": "0617e52915eec4b4a43c485fa09b5a798dbb458a2e5f7467afd770f8de0f4982", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsfyuaskcmasckasme\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cdb0c303f6ff743479c2fa34fd8d18caaf3dafc71b94b665c87c7ac9669a5cd0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7567caaec58dbfb317a269b229348183b520bf487ff6f2aeb53d5d0d0bb0d332", + "regex": "(?i)^https?\\:\\/\\/litxvideo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6416224ef3174f6416a20fdf73f7ce5fdf3fdf7e3c5165bbae4999422236a099", + "regex": "(?i)^https?\\:\\/\\/joinchatwhatsapp1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e5369c39c41ae988069945c42be64d635e8c0e0c453cda8f7b2aba5ee6ef5314", + "regex": "(?i)^https?\\:\\/\\/hot\\-videos\\-leak\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "78d5484b67817a14e322683f9abf09307526a5ba67c0b701bf6a69d6cfb86022", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsfyuaskcmasckasme\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b81845cec13abed1c8632420651df35d0c1406e57338924f8577b8caae540caf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutahckascmamesas\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "eddc7f1a928832dfd7592cf0c2ae9a356ac60ec910404419e7df04750440936a", + "regex": "." + }, + { + "hash": "bd2811f85b751f9655ac57eb0f5b8f0f74d04b5dc577f14d7414852ce5555a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\?c_ds_na\\=YtjAbcdE4ANZR1N1QJCL2fkq5kojc8eaYruMQvaFbz\\&c_ds_no\\=$" + }, + { + "hash": "82f7a956a933fa42e85bbd32594c645a2da34710ecd2ad13ce9f42faab56aff6", + "regex": "(?i)^https?\\:\\/\\/svideo\\-hotshot\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6f4d6e2adb35d5f23b97cc4abd9397bd9126f5259fb10c85e36930054f6c5e8c", + "regex": "." + }, + { + "hash": "73b2f3be0327303ff447da5bd071044c3175a989e04b577a59946d6674eef891", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b4db89ad9a7abda88363147da235aff00fa08c02b481619ec56fe90328521d35", + "regex": "(?i)^https?\\:\\/\\/cg77941\\.tw1\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8465708fef768fcea3dd5f5e5e0e5f317622a7569916d7be8a748896bbfc9642", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmackasme\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "241b467ade41f58da74f55ff5d28f3c0af6143c051cd0e8dd79020ca40264d03", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualcakscamse\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "78c721af14c3aae6bf7692290e130f1a0a8d7e9c4983a6e05f48ca44d9dd6044", + "regex": "(?i)^https?\\:\\/\\/thundertracker\\-stormkeeper\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1b0488b38245c32644119749663fe0589ef6b7fbd12c64f669b30a0246c51b9c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuahscakscase\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5b75d8fc1ad01f9bec91c453a47b1f976b2d213075a8f4bc383d8754fb70e4eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UKep5KcOm(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3Dh\\-gA_aKN0LbRq1CIimrDHz\\-2FUlgsAGqR9SRNtPRSG3iIPzetPLZDPujpoh\\-2FagxmupFxdCexqfgxguDh9cWWU4H1DKus6fyc5a0ItqvoTaBWmcgA1BzSCyzvCoWhK0NfdRTzy6wrcQ\\-2BOI1xXjS86cq8RP2RLwmcUl5SSwaD5jbINVZVLMOuE25kkQ25\\-2FPAno0Yzsz\\-2F77QkIlXcdEzdyClW\\-2FMBpnPZZHGilgYcB6CaXtqdRgXKyN2awkiRIhdQQbzUv9FHdXMy6HN1nLyz4jk4r52hl6Okw\\-2B\\-2BzzMRzfl7KJneH0Cs7W\\-2ByUbUXeMmwJxYiLDyz56NdLgp12yWMkphJ7yytthz3w\\-3D\\-3D" + }, + { + "hash": "d8055f3bd991e139781bdf6a3c8c5da1ba1d5b26f14ec782d2f0d54fd9dff9a9", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d4c5cc2887530f8bd35bb6e985b81c49826b518ace1b689e6022319eba56143f", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ae6ea1dff6dcdd8d752844445f5703f87b4d27982560d5a3e4a1f7e108901510", + "regex": "." + }, + { + "hash": "e9265041adc6db220b78257054127bc63373cea79b4667c477d20c3ef998f487", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3DQBKz_MMy8\\-2FL3ifeZrTFBOltmHaUwJ\\-2FcXr\\-2FD\\-2F7wnfVXxp9hIlLDak6NGU6iZ5\\-2B27ExSVbhJZt1bAhmf6r4u7sC6JxiugE\\-2FvcTuhiYiRiyR5gTESD63c3KEbJy8Nt3fif9vEPxWGX9eM4eBZF2kTxlev\\-2FhI3qcIThCzWfzgivBcSLFp4ZTLQ\\-2FVhAQIXrzZfE9GjUklvI9w\\-2FKdUZYOKQfWy4Wj\\-2BSXlhC1Ly\\-2FjSb\\-2F3y9Ii93dU5cSjRTtZpd\\-2B\\-2B\\-2FsOshoGJ6qTLWtQdSdnB43J0XxsK\\-2FIR6rYo706lXcjg8GXCzZG1L2fYSeJ5UitcAa6lHv9JP4ndQDLz7Ybo4rln5lBuYUfK0A\\-3D\\-3D" + }, + { + "hash": "e3d711cc05f60dd4b3af7523c95e96288284eef6d1e103c07746736e0ced88ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "d0cbcd89ea8a55c31ea660723b07feff6ed04e07df1abfffcbd9816aec2744ec", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "82f0e37739315f66b7c3b771d327e187cff6e14ab64c1cbd996cc0ad347ecd86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ac5dfe634eaad0b42b14968b356118255a42a4fb784cbcb6c0f259e5912de7b", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=e4x2\\&label\\=formspark_off14\\&mt_click_id\\=mt\\-rctom0\\-1733424050\\-2053943691$" + }, + { + "hash": "c6c27a0098fa2129720afc56509ad032838c5e15c3524c00af85d703163dc33a", + "regex": "(?i)^https?\\:\\/\\/coinbase\\.wallet\\-transaction\\.24\\-199\\-126\\-137\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5b0d20172f3e35d4c417c81b43d8b2c56a8287f337a251b8f7f1d2dd4325b8d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "d9e3eb02f2077638a6e1bd0e7f92143bd49253a57b5a5f1ae7c49cf532f12195", + "regex": "." + }, + { + "hash": "dd5f195cb7e5345f310179d82e281f6e81be0230230ac1c528cf27b304571807", + "regex": "(?i)^https?\\:\\/\\/mail\\.verificationhelpcoinxxbsnewakkk\\.143\\-198\\-189\\-168\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fda62d8bb245056aaf4e596632934595f2778805012b427432be938cbe453d38", + "regex": "." + }, + { + "hash": "51b843326ee298331f9c68dc22b1492b942fbf53e434392e8f93d3bccfbfc5c8", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d3bc7994b0a7c34faab7baac3e1bdb84611336368fb81381f53f815826b0d699", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "fcbbd547a6763b612489b515f806eb3d70d514c588d465736c70d69375cde5cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9153[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3Di3Js_sGhGCVpwFe\\-2F7omibEFFkS1iF\\-2BA6hVrHaiY3y\\-2B\\-2BlBnmeHD4O8SYi6hqZM2YXTXl8nnMcY30oaZVb\\-2BCxkQpA2uM5AGgyau2SkibNa1v8\\-2FyZ\\-2BTreMyw0\\-2FWftPs2fLkIuIRUe6\\-2Bv7Eqr4SGMMcBQLG\\-2FhHBN92EKHX41hU3FSM0fmENbSUu4TnSw7Cb8l5OewbRse66EhqUnbVbGRL3oYXmlMzhlE1zd6tK0NN8\\-2FRAMA\\-2FIvQFooQGGRPfAPakiuvEEoAKUOCO293bNqHb\\-2BGx\\-2BiA8ilbmC4WbmBrn48m03MYvyva\\-2F\\-2Bi3MFPfZCsA3AA\\-2Bg5L4OBY3orLYjoKHAuIclQ2h8NxQ\\-3D\\-3D" + }, + { + "hash": "81fddc546e1437aba3aa441d53bc257eba23e732b8791f9b724ab09edcec6cd2", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "79e20657e5920552005e07d83c4f93f47ca6503ddcfec2bddcfe6135e81acc53", + "regex": "." + }, + { + "hash": "affa93e50c3eae11d4c62e0ddd8a2053dea169a4f423711e12ab0e71acc51b14", + "regex": "(?i)^https?\\:\\/\\/erertyuiopiuytrewreytfgyhdewtyuiouirt\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+list(?:\\?|$)" + }, + { + "hash": "f28707151ff1b5f593b807afc9c5aa51d13ac161daa97098af207498c432b5c7", + "regex": "(?i)^https?\\:\\/\\/bafybeig35z62yspfd5qb4n4joqbjalukc6rqzn53nzsiku7ltj46xwjmtu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "bfa392630c29c1d9a517b993d49eec6ea7b0be9ef8c88d7de87ba40c8458baeb", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u4xbl2(?:\\?|$)" + }, + { + "hash": "e48cc0140a58fb69f9e6c12e79a44f6f4e1120b0d2cca3a512fc4845a41ddba5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3bef3fff1a879dd250aa9c1afd9ce37638783162925c02ea2f013dbe57477732", + "regex": "." + }, + { + "hash": "4e6a5c0cc503aff02ff3057eea561389d9ea9a2403d1dc3065f0a025b7e06255", + "regex": "." + }, + { + "hash": "8a167cc1b7c2622b033e79156f8afb7a2269fa0c6c6958ece3c2c7bf1d734b2c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Z2Vz7OPkLq5w(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7c0ec87ebeba9ac5a4fce2f74e5f9e66f2ae1523ff152a4fd65562295d1a9891", + "regex": "." + }, + { + "hash": "e9b69203ca56267337d21e2c657a86c01f3a66ebe6733f8a97fa0561cd2827bc", + "regex": "." + }, + { + "hash": "987996e94c6a606228515288076fa605a6d18762dea6ba0f67abf8328df377df", + "regex": "." + }, + { + "hash": "d40b11e100bba2e1d04e82b9fedf6aa8c07a848e6496996f9ed69a92dea044a1", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b76bcb8461451a8fd16138613b193a160e29b11d58321a10455bf58e6f7b1af8", + "regex": "." + }, + { + "hash": "a4439d287a1f9bf60c9b944d4e100c9e38cc4a439cd5a84f9da35e0389e95b64", + "regex": "(?i)^https?\\:\\/\\/hpoxhytp\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "82e529aef59d8bdc0f6bff467260cb6b9fdcf744ce4fd01ab855bf4d1dcb6842", + "regex": "(?i)^https?\\:\\/\\/steamgbanking\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f45361e3dc542600032462bbc9548457dfc49a70c7f3aac3d7838c7490587828", + "regex": "(?i)^https?\\:\\/\\/steamgbanking\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "56cbd21a988c3e669e2c1efbf59b877de1b39665ed776971007478d0a97d66d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "27fce3b8540275ad76f1181f87454b263a97be1dd985baee0c1072766d84eeb8", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "980877e625cd02e26652d4f61d84c14ad2d48a6d4de0b64feae04bc293b6b812", + "regex": "." + }, + { + "hash": "c499ac5112c3dc4b245e4608c26f646cf17edd373791900d72ca9324fffe1e6c", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9c9d68e705569f491dcdab9cf30254af18c782ed7cbfdad00c8b9d51051d1458", + "regex": "." + }, + { + "hash": "2bfc071521e578cc2e4cdf2f89d22cf60d6debd4f4b4840cf2ee9514a5e36ef3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5bb8128eeeaab63defc2f7f3525e103f28ef6a16d6e879e6b20754a6a48b3efd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:\\?|$)" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=e4x2\\&label\\=formspark_off14\\&mt_click_id\\=mt\\-rctom0\\-1733424049\\-2586606112$" + }, + { + "hash": "5bb8128eeeaab63defc2f7f3525e103f28ef6a16d6e879e6b20754a6a48b3efd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fcbbd547a6763b612489b515f806eb3d70d514c588d465736c70d69375cde5cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9153[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "4fb28f4046f4a1f5e1b7e0e4bfe86b5a16463f17e4dde961e1ffba69764eeddb", + "regex": "(?i)^https?\\:\\/\\/hotreelsonline\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "83c0cad4059c9587e5b59093ad2957f8ca11a9b0439f2e0f8517777889b32858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "21d9b41a24dc75029758274a2fdd1ee689f0168082e8d279079edc4144d50af1", + "regex": "(?i)^https?\\:\\/\\/hotreelsonline\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f29abf6feb718742fdf0608aa9aa5b8a8a26b4a592c12e7c2b1549667ec4ba58", + "regex": "." + }, + { + "hash": "ed922aba7b70de3012e10ebf9e708e956932a71c7851f2fa1a94ff3b5683acd2", + "regex": "." + }, + { + "hash": "80d8c947e16cdb586665424597ba1638ec0980f6b7a2c76d5bf7fa4898ad23d7", + "regex": "(?i)^https?\\:\\/\\/madhu821\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9da35954b33fdfd7c2d11343778cf7348eb89c628b54cff51ff2fa82ddcdf4bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "2bf56fb041e3b1c4ad0ab77821156699743c24db95d8d19615cf32efb72f79b5", + "regex": "(?i)^https?\\:\\/\\/hotreelsonline\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "49c83af4a77d34e8762bc4bd7cc2fb1e0d5a40c516f0b0c3e50884240be4a167", + "regex": "(?i)^https?\\:\\/\\/steamgbanking\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3cc117a1c68e076b4a6166117cac25858c3d7d72f28bf9cabe8016a4b3e1d301", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "76380069e354888cfa08cb8b3a52d83d495353d6f57a376301f288c67ef937a0", + "regex": "." + }, + { + "hash": "fa486dc4822198f5165bd8cba111d34bc54610aeffb9cb9ea024caa199515fd9", + "regex": "(?i)^https?\\:\\/\\/hotreelsonline\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "d43e5d823702e5c948be5ab6644d913396681f26cbeb9424bb909da9f9cafaac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+com(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f1d9e3d506b66e23c7d636370ccf3311fe2c19eea6ab44942808cd500869d3f", + "regex": "(?i)^https?\\:\\/\\/steamgbanking\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3b7c75c20cec8ef704337d79bdbb4bd3248394cb8ac46b8c0ae078f503efecdc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0667a7148e6dfff276caa7b585093d7e54330c08c9ed672a7bccba471727cdea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "539cc42747844404b7d80c74074453a4adafe050e194083bb076cb1123c5a9ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a1e3a4b49df6310b7a43328d4951adf6e3408a4fa58c650c4f4cd002dba68a51", + "regex": "." + }, + { + "hash": "7d8fffb1e475fbe8cf095bed5b4d9009ad8e558efba5e9ef940016d38f97c6a9", + "regex": "." + }, + { + "hash": "5ab20f17213dcb50a4660279016b691983b27f45e8a145a11e3fab6d65941817", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a5773a9c27d1d43643c4cc5adbf96a8c7d59dcd71da8d3a83687710d1e7882b6", + "regex": "." + }, + { + "hash": "84a61eee95e3d54fee996eb377be6147d285c791e9bf6e46437ef0d0e0956e53", + "regex": "." + }, + { + "hash": "302fdaa67bef6184871252be790afd5fb4b71ee0ccace9986536aed5e4fd8ea5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8fd17570c83cda23b0cf6c3b5e234a9571652ac87e3e9b05fd5b795b9c0eb09", + "regex": "(?i)^https?\\:\\/\\/steamgbanking\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6f6e4d23f03c8c765a392697f6e98a47e3f534b5595638f894538a22ff234c97", + "regex": "." + }, + { + "hash": "6dea4ac2d58368668fbd4a7e85f37c3d6c89fdbe923af36a0e062f6c7acb125a", + "regex": "(?i)^https?\\:\\/\\/quickie\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1d9a147671fea9ea0cb9863888cdd8a349504e6218b60ee722413edf896c6dd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3b030446b03ff191d0807765d2f7af1fd1e4e685d376c203869959d404fa34d2", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "299c59548914c8048928c32482bc2690f088ccacfb832e948953fadde900cd07", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "379106af8c7d1af03deada7731dfb854ed4bea73b3f5c3a553329f5004ce1a8c", + "regex": "." + }, + { + "hash": "76318694978c913e771194f18fd501e840d0d2856176ddf025992b99682cb96d", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d531cc3dfe181c77f011095a5e7a1b71070dba5433e1ae6689e90f52bb2fcbbf", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f2274b5433ec6500455e763ab3aa6aa06762c6c18b429dbe2a2407e717a0d5e3", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+$" + }, + { + "hash": "567710f4e2d94a93443a33debf43a644924a78c42bdf299cea2c70960331cf4a", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "909ecd8057008b6e21a5abcd7190eca18e3d5b06405537a29e7161068e071678", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+import(?:\\?|$)" + }, + { + "hash": "a7c647dd2f9765cbe6e82f015f897f631303a1fb486343dfd1fc76ad2c6e8d9b", + "regex": "." + }, + { + "hash": "74137aa9dc2fa715720a6fdafaa84c940dfb1f83a1a41fe054a2c458142b2f44", + "regex": "." + }, + { + "hash": "c58ce0f5ed4699545e5384e8d45860fb9943ea98105fdaf74a80307d7d8959b8", + "regex": "(?i)^https?\\:\\/\\/steamgbanking\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ac14c772472b840465df09fff897c06c5eb3d3058c3511fb208cf1b7e80e02d4", + "regex": "(?i)^https?\\:\\/\\/steamgbanking\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2246da55e0d27b0dc897d35899c2ae11086ff6857330c6363ad1b77d9a00d385", + "regex": "." + }, + { + "hash": "56a53eb41c8d049eb840a664473acfad15b13f752f6743301a32bd2d5f185f49", + "regex": "(?i)^https?\\:\\/\\/hotreelsonline\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "de1ad27b67861669b67869b413e43a285abb4d33e744b879bdd16df3102de183", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wzlppy\\.com\\%E2\\%88\\%95msofymfvqv\\%E2\\%88\\%95rkmrbeyyc\\%E2\\%88\\%95ntozyfaqh\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qneet\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fc4c7e2572bc54953228717138503816798e5cc689b4c4d53c85746f50c49232", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "31c396330f236439383b0f8bed4c8f40ec75546b0d74dcced1156003cff5836d", + "regex": "." + }, + { + "hash": "24138fb9d1cd64a35539a0eb99cfbc24c7c3e241a27b0bb6bf98d5c32528ad7f", + "regex": "." + }, + { + "hash": "8bc5f28255294a2b0c4bea6f503c125d667044d7148a194f35c92968d5c29b48", + "regex": "." + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=e4x2\\&label\\=formspark_off14\\&mt_click_id\\=mt\\-rctom0\\-1733424047\\-1432749998$" + }, + { + "hash": "f956b5c1588126dc72ecf775cdca0bc277e9cebf094cfb027daf675664ff600c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+TRU[\\/\\\\]+trust(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2f345b6f2fb24e85a67d86f25ae7181322f469810aa6cf7707df04b4dc16a43a", + "regex": "." + }, + { + "hash": "93b83f62d9886bf27093386397f77244155668fe1ba67c738a6a5eaa78047d30", + "regex": "(?i)^https?\\:\\/\\/amazon\\.hhvtf\\.com\\%E2\\%88\\%95yccoyrel\\%E2\\%88\\%95ttqnlrq\\%E2\\%88\\%95oskcrzqur\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "77633a7e23d63f096ecba602ca36b78ad9f2e4f8d4d672a7e98a041964da92b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "da85bdd1f854faded0d7428619b8c7f3c3e61a0c7624d65d8e040b09fa8e84e0", + "regex": "(?i)^https?\\:\\/\\/hotreelsonline\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0d633304584bf3bce74b321d0a3991b2693f096c94f2de2eca8d0ce17cc2bcc3", + "regex": "(?i)^https?\\:\\/\\/www\\.robinhood\\-auth\\-us\\-login\\.50\\-6\\-200\\-208\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ddb8548e191a92f96a7e1e52dca9ad9b226050b35f96ef82809944ab99011d53", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d6fb0bab55cc7161b8b6ee2ad70b551c5adeae71ef6c124924f3dc60df84b4be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "f2e01e230a782a500a9d3c259862dc224ac8c2a700b98f406899e06e971b1b2e", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "970cbf61488bd210a54a486f2e34598276d79fdbf0d3b211d94085645645b4d8", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "17983d8ef0fe672ea3de8e16e3b8951d96898fec4ca21ddf0a678c4c4ea52c59", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+deutch(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d8532bbc9092ea03e99b09569979ee19cc8a2a98a313f704f5be504855dfa341", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls6mug(?:\\?|$)" + }, + { + "hash": "1a284b168ec595c8ab44eb1cea2bef14ccacd99b097118f7c6e39565f8aaeeb1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "69c11e92a0ffd172720809f4ba63589515fd3b68f74a87da267b336689adc31a", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "858af3ac736f0d286c832e19effb8270747dc8d1c085f7de1ef0b3bd167a9de8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "a153ef88422894e79958e2789e1f5391a89338e64e1aa3a37e5996a2f5c5eb19", + "regex": "(?i)^https?\\:\\/\\/ident8\\.site\\.tb\\-hosting\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bc2d6982a13d47a541f389c3666007d3a832c652cef832ae763b44d17e6fbc11", + "regex": "." + }, + { + "hash": "178ae2bd0144e8ab7efbfffff5c9a8f307f94b84ad4d2c7b1f6fd7cc6488e14e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "6463d5393c1fcabcd1d413ca56e99b4a79187b202a8c5540163585a1b70d549f", + "regex": "(?i)^https?\\:\\/\\/bafybeib7f5dd2eequcndzihyhsuwc6iaj27vguw5shd2j4j7oganq4duhu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "2c082778303d754727387a2c4ed35ac092e8277cf0c6e81a6478ee465ce120d7", + "regex": "." + }, + { + "hash": "f7892b8dd3efce0aac96b1d3edd6ba4cdead31a93fe648b175d15591910b7222", + "regex": "." + }, + { + "hash": "e9ccdde031f13d11f75bc0ddbb624d027f7253a209c30ce570b5a32881b81144", + "regex": "." + }, + { + "hash": "51e9460d8f5e67ea8cfb03be5503a6f192d01ce356aa69d5eafb9640dadb5417", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bb434abda952fc6fc914295009aae2d3b7a215e76bf6d724fc27125f3f0d2ad5", + "regex": "." + }, + { + "hash": "e536d08877ec98ce5f0cca0f01340b39ef2ec161cce38c14f6119a5dc99056ef", + "regex": "(?i)^https?\\:\\/\\/bafybeie7mdzgdxzqx7mryzep2egugxn22epu3wcli4pza62oaavne6v36i\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "2ae55824f300d3616e404c9dc8b296699ac509ce6d90b795a7244374bce09915", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e7e9e023b441d079cc0fa4815faac6f29ad66d7e365629127a9d3cc833deee63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "8cab6fa56b828a4aa17bc956a6f0a5e1e7148d404b606ee5f2d154ace8c3645a", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "77320eebf5c4f7eca5ed023528186c51cd0b723672163907ae3e17897739400f", + "regex": "." + }, + { + "hash": "dd473347546fd376f4d97a52fd0445948a0f3e359c4b45c3f255b3bd32e6299e", + "regex": "(?i)^https?\\:\\/\\/bafybeib62b3oj6juxxfi44lgiiqss63pfy6wnaxgcfomu57n6i6a6btmje\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "90defd48ee4c22b033c4b1999bf650d90cdb9210e0f3e3dd36885ee3ef148925", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "54d4294550850a904a01bb5b9c3d7056acb839b992b0db9f58e7784c859c231d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+QMXrseXLd1m1K9m6[\\/\\\\]+wait(?:\\?|$)" + }, + { + "hash": "060aa306066170c3e9cfc160941dbaf6f30328f68779549953b95f9912b5c2d8", + "regex": "(?i)^https?\\:\\/\\/hotreelsonline\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "56cbd21a988c3e669e2c1efbf59b877de1b39665ed776971007478d0a97d66d0", + "regex": "(?i)^https?\\:\\/\\/mxvipost\\.top(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "16c4f95cd7c809defd7d27f2f90d801ab157d7a911e7fa2894df6f536b77b450", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "88e77e8dcf5209296d554217c5ce5b8baff5cae06d88e6e5b3cda0300e7ab3c4", + "regex": "." + }, + { + "hash": "7830dcfbbd522ee7ad3966a099fadc2b53fa561e7fc59c87c87f05705abfa85f", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1dd83052d346e5e5298f6872d5d4f2d839e1ff5b4ba34d97a7c6c0531f3b5109", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "aa2291ad8bf9b1c1e8a5601e14edc391c8192f5c8f2a513b1e261390f60e20d3", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "54d4294550850a904a01bb5b9c3d7056acb839b992b0db9f58e7784c859c231d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+QMXrseXLd1m1K9m6(?:\\?|$)" + }, + { + "hash": "62edb95542da48f0a5297314968b25cb3a8a7d0ecc296fe0be9d5885da505dbc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "9647191faf9fc2cb8f09a7cc62fe288275f64a73271bee5f38de26cd8dd4484f", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9daba32b76bdcaf4284f8bb387199010d091adfc0d64af3d7a99040e7dfe70d1", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "affa93e50c3eae11d4c62e0ddd8a2053dea169a4f423711e12ab0e71acc51b14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+list\\?e\\=$" + }, + { + "hash": "19b8ca30bdfa778591dd7709b6c5c8d3e4ab238ffa4cb803640828c1a852cc5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "21479e8f3eef9232ea20839f5969bbf71b4e8ccbf9ce7c6fdd4ec4594a7e6a50", + "regex": "." + }, + { + "hash": "e75543f96b4a842001d3576cf22778335dd23c4c8a369b161cacd25f707b4da5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da18ad5ea5527051b1cfb4339263539eb4fd850368bf1560989d3b996dd26cc5", + "regex": "(?i)^https?\\:\\/\\/hotvideo68686868\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3627b8baa37a0b813f58f363f23ec203d18b00e2a232f14443609c69d3d3d637", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3a4b0809164e5e4806332a4fb2246badd8432f6279e42a741abcb1355c8c169a", + "regex": "." + }, + { + "hash": "ba00d5a132d6b76c103d282558898dacc5888177add7e0f5d8dcde7b8da0751c", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fbf869c430f7ba6ff1a954a5cdb51c7ae38322d845ae29fa7787b79ad62d4252", + "regex": "(?i)^https?\\:\\/\\/www\\.1oglnamzonesmyaccesdashbordprlme\\.159\\-65\\-50\\-183\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e628d2ba5f39c183ea4f8ffbcee24f40c87899c2a8886cc00064e9f8ac6bd83b", + "regex": "." + }, + { + "hash": "908194e2c90de74fba244f96f41502ce7ca6299839e774c1c7c23c1020487005", + "regex": "." + }, + { + "hash": "b4d901106698ccd0a3621533337469289067d7c33db3059800365164921e3877", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "22b905d547749772d879f2f1244959bfb75d2f6c086dd6d4fb9961bf667f174d", + "regex": "(?i)^https?\\:\\/\\/steamgbanking\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5ab3c6b9fbfde1e3f67487f63b0be097f86f7d0b387312facdb443eef1f3adb1", + "regex": "(?i)^https?\\:\\/\\/hotreelsonline\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8f229f5de2a9687604109ebd414cf2774d4a711b51f58f90477257beacef2328", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "095e93786ed1668bc61dd45f39b14648b0118d96af47d29a953178bd883e3350", + "regex": "." + }, + { + "hash": "549e1f72c3e57c9de2f6a45f68e8fb5e84bb3adeb6cd33491055357465a456fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+on" + }, + { + "hash": "93b83f62d9886bf27093386397f77244155668fe1ba67c738a6a5eaa78047d30", + "regex": "(?i)^https?\\:\\/\\/amazon\\.hhvtf\\.com\\%E2\\%88\\%95yccoyrel\\%E2\\%88\\%95ttqnlrq\\%E2\\%88\\%95oskcrzqur\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xfsuelzwrn\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9t66sg(?:\\?|$)" + }, + { + "hash": "2aeeb96f45a43ab1e24bc61e3f94b75e029c3489c3911080143c1ffd48b4db8f", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d89d55599a347fd9b90f6217ff3bc5c78f52e9626ade2015204b0ed1bacb82d4", + "regex": "." + }, + { + "hash": "c9586c9c70d09bafce93432b72198ff34961262cdb6e0822275ffd4ec3b98906", + "regex": "(?i)^https?\\:\\/\\/dailyhotsclips\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "489325a47424dfe90bc59648f04390a5bcbb662b5b291014d0d772af74d970b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.2K7Ok11FBy8lHYdRsQTCV1mhXs3NPni5c3v4\\-2F2EbI1nIF1oFaB\\-2BwWUHIUCzxQlnyq9xSZc\\-2FTD5x55\\-2FCNdPwzejdkpdQsc33FJFgRiGYtPhadzsUzwUMbykzUybrnddzXdSByMvnBiryGhVM\\-2B9z\\-2FmB0M5V6RkGfpJByj9s0c3o2k\\-3Dia0G_\\-2F8Y\\-2BzVbmYva7PzJ6ZEDrdmauMxXip8B5WQ3ROWCNvF\\-2BQeyr7ozUBzv9Wv6wHlvUI6Qm18CICkOE7\\-2Bbj\\-2FlxsrpDN9PS5TL5ex0Q0XYGsZ\\-2FoBDEHDmH9i3ktMOAjcRVV\\-2FM4jd9fLkaoje2MiKvqCvM1oozFD31qw6EfDlpq5k3V76FlsT02p\\-2Flu31XqU\\-2F7SkxdPAvN0e0VY1cv4zkBg25HoW3Fgt3jdDl2NAKaOIhWSQOw9U0OWOyxnnBdzevj3wWn\\-2BaO1EvUwAPyxSYPgTh8B0y90QOM7dpFD0MLpFM\\-2BJFGifjmFou\\-2BaNRCnReTkF9Sovv7EhvFwsB\\-2Bk24Yz\\-2FfbrkCA\\-3D\\-3D" + }, + { + "hash": "20f1446139ddb5af884961e41322ad5ffc98eed34f81a739e1e831c573003d79", + "regex": "(?i)^https?\\:\\/\\/steamgbanking\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a443095249463ec30a435f5d2109c8e87c01a21ed1bc7573077fd9dcf15f97ae", + "regex": "." + }, + { + "hash": "4f0d1e25fd6684ca1318d1fba70447e9c0c854023550f95e01362ad81bc882f4", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4b819ee5d5851f367598b3f0afbc2bda8a0228ab97589f089cc1feb0c7ba8d2b", + "regex": "(?i)^https?\\:\\/\\/moonwolfportal\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa81964d5a750fcc333a5b0e5c48a79c3a75fe0ef23cc0e4bea8c1a0ac64adbb", + "regex": "(?i)^https?\\:\\/\\/steamlineldt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b4da90ce7144a72fa7f56b05f5c57f14900ebb800ea0445ca7cf96c055af1fd1", + "regex": "." + }, + { + "hash": "10a196f94c5d202cd459a8842d1b47fd368aeca7ae593ac987b801d27412f03e", + "regex": "(?i)^https?\\:\\/\\/hotreelsonline\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8622e6d3e240f05db5bcf8bd1bcdbe6620e40679f55367d269240dd191d6b0aa", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c070b41edcbb8a6e761376fd8d86ab492cab9c7559ebd3df4deac34fd84f2449", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "904dd324f293a84e80a23f8722e4973e7a967f014ab5643c62e6044fd7b6c55f", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0833eb027aa20398b0878fe7205dc9ba95b1c2e305bca79def48136021678544", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfdfg33\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "559ce9731e67a1f9ab4d696b25448862f2b8be2ca16fe3cdbdc7de38daa31d40", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "75c02c4c33dfcbcc8c33894e5097471610e063a68692a1879d9ff57b932d8e4f", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv9\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f8854763913552edb5bef9dc6cec802781b0407b3543d53d0428f66c40193c8e", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "567729d9c759d888ec349e2be15db28fdfc5d217a114a43a1f48ceab37b09d4e", + "regex": "." + }, + { + "hash": "184c3f6543dd87120984d1130d300e4ba69ea6bfa5143b156ea6f5541b6b0e57", + "regex": "(?i)^https?\\:\\/\\/dfbdsbfhsdbfhj124568\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "134cd204d22fac533e20c271872abb3d1bba162a7b475d238a33486d21cea0ec", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0799d91352bb8bb85f5cd0c8ff3ca6528da2f81346de5b51797e92b346213dad", + "regex": "(?i)^https?\\:\\/\\/hshgsdbffbb14566\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "79330ed44a481c41d87c447f6274c483687eba4a1c2579a7798ceb36161398c3", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ff86065cc95d603971d8a7b01fc36b62ace2c264ea4578bc0035f8ce86f835d5", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ae82b90c097b30faf02d81d804d49c60fa1229c388e7cd9da31a9745c12dfaec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c0c92f52333ae9fe758772ce8d014215d8750a5e9b1e44d1a73975a642dad571", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d4a35c4d55a6f5ecc0abbdbdbaf4da78c0257e01ef0b4485582ca3d04bdb5270", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8b8793844be753af87d408b8d6f42cbe9bb681c32cd90efd482f17cef96c9f8c", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfgdfhgfhgfvcgfh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "62b52c2107e1f4a815f194d12870b0a8c5b5e42a945e11485d9df82ac8930f1f", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6cdd2f5958cc5257f06d31711538b3af3aeb9f346c96f40956d84f3fedd2dd45", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "62a0d07eb2eb2816f201adf1dbbd6b5047e25a0a9767fcffc6c107ab6f396797", + "regex": "(?i)^https?\\:\\/\\/ssdfjdsgfhdshfbdsh122456\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d7662e2d05256e62cfc729d0efd1f1a9f706d6badc4af8c3a22aa3f29d7fb403", + "regex": "(?i)^https?\\:\\/\\/moemkhecuar\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e0ca2b8dfc664bf346fa45a7583ddce32136d8466e7769e9e5089deb8f7f81fd", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9f6c90333f74a59c3133d3affd26231bf309946a5577805c5adec2eb382b108b", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgdfgdrtre\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "b246b7f537a2f972fad7a7b0db75f0ec14d070d7731be0e7f857d123cdee50eb", + "regex": "." + }, + { + "hash": "c07afbe8a6e91e4074b47e6d53eada71931ea57ad385554a9f8caab0cb7c05d5", + "regex": "(?i)^https?\\:\\/\\/dgfdfytutrurgfjfjghhgjh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "98cd7b2d39b41df1b0c62fdd1ac3b8b3680913931f99ed441e4e5fa54ccb828c", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b529d8755cd296955db126b33301a31a36d3d884b118ccf5ef34eb83b73f3096", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "14094c45022d2656b18f7c8e89c6c97cc722af636e472b0e25196e3a6a8a6656", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0160065c3c2de87a6e21695213772b06ad512e9e87b34036317e5d167d83f3c5", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "11e56345d166cccccb7daae95377e68a703962e855019942d2436ad70b91bcea", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "dd23a14ef97e989e69ed441b53c09e37318b8bfe292f6a0e08ebb1417644f142", + "regex": "(?i)^https?\\:\\/\\/dfhgdfdfbgfdfhgghxx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "64068218034e49eb46fdc7b9ab958274b35cec66a54e94669e5dfa2b19fb9560", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "54fcdf4e4f37a1b0b3161b6edb0e68fceda695e3127d31afce7161ecfbdd1db7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a3d96c6a2fe9afb43879fc558b38bb4ad072e9b78e2a4498827a6c3031fe59e7", + "regex": "(?i)^https?\\:\\/\\/dfndfgbdfjbgfh123456\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5edea44b6e0de35d3a6ff47f8bb3334f4ff560dceb8637a253d7bfb233ca5214", + "regex": "(?i)^https?\\:\\/\\/noemxuarta\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f1ad95c14cafd211a123de52f9dba693a9baba64363ab4d7ce5e0973b29d0c2a", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e69acd1c750d8350b62a0db64612370c6e5021fea1372a2db5e8e46127cbc2da", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b5c7158327b9c3a31081ffdaab371202dad4f45ace0575c871462cb6ff8eddc9", + "regex": "(?i)^https?\\:\\/\\/52465789458\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d3c0131c2409decd84305a00384b350cf53881e3e0604ba0d69897ac52f42843", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "944d21d83337d0136225087eaa7207dde2969b139008e0312c11d1c7ef7ba550", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2569d3bf99017b0143fffabee0307e6a2fa9bbc8a3e71c497f1c3de550ceded7", + "regex": "(?i)^https?\\:\\/\\/sdgdfyhtutrujujurtufgjjj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a82fe03f4922501bafb4561e8fc62466f7ab8603a9f29fc3c33f0e380ec9ddb6", + "regex": "(?i)^https?\\:\\/\\/fhhtfutrurtfujfgjuutjgjgfjgf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "57d2a2f8d6e43af1ce2cb3247fce647cf9205775b733ee3feb95cdc4254c509b", + "regex": "." + }, + { + "hash": "cb29f3d51afa9a62ebc1b4069faff428f96a8cf580b36d7b9064f0e6656fc3f6", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c782628bfc5cbc0358d4a6660b7708931b1803744d077c5fc5242ec81d61bc14", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "74cfaa711939c3bd14e0c6272f8a04b47b429655fd274997a62993f85b63cc3e", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "88a30b441d8bacf742ce1538b2bb7340fedc243a9ef7f306e7b0e78c85bad913", + "regex": "(?i)^https?\\:\\/\\/hotclipshubs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a5743a01a6c9a29d80e55276abb45db36d3369232167ec324e1336e0eac904e2", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8ea7559164efe3b6c19dcc935bafa09b8a3a7da44ef825428265456a68f99aaa", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7a46d08e5612a536351a30d3a8e910361d20759fa19dfa450a45836bf5ab90ae", + "regex": "(?i)^https?\\:\\/\\/nmoemxuarvaea\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ef16486f645cf11f2be494a86727c3587bf2a8c4992b9ec29a4374735601e8d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b6106e1f8101bdf99a245112ddbfdf453077d333ffd0ab947b368f25950fa28a", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "28c1b21b02e25956c172b6f17c2244a430ef34f7739914efbec2c6f36ac693f5", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdfs113\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b299268d759aba9e4f3e7f4ca5a36854b8b9dbdc4d135899d667769c0f4da892", + "regex": "(?i)^https?\\:\\/\\/mkoenxexaa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "de500d9a9c978eb873c3e4fb270768177da30cda03d96222775753dbe4905b34", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "727b11197ac1e98b6c27276ccf976aff6b2e5329739b86d13a592eeddf1029c4", + "regex": "(?i)^https?\\:\\/\\/kjkghhfgahjdfasghd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c3af184afb3976db9482bba71bd36b6fa016d7f660cce06b261f1ccd532e2289", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckamse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b669f63a93498166991fcf0edcbbc57957f2d5623358b177b0e364ca31733250", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8113b720eab2764f4132acd2af84c10967ea80635359f6d79d7751db4b74fed1", + "regex": "(?i)^https?\\:\\/\\/kjsdkfjsdk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6ce6afaf0a41963e02d2fd70863fd34905e085cf41f83858d89c0727b62c96c6", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7bc253c6293798c43236a646c04f381c34fe7230c546c3a6de958fbe3269e910", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "113b1bc861eeb49acf4fc411323773845b56154e3c0e197a0423a77889843330", + "regex": "(?i)^https?\\:\\/\\/moemxarva\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2f34631ba49c7ec175449aad1a47683d2e6275b289066b73644b6f35cf35a5c7", + "regex": "(?i)^https?\\:\\/\\/5649875\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f6a14f13547330e3b5e658a437aa4a130607eba237951e754c63e52594ca83c6", + "regex": "(?i)^https?\\:\\/\\/mokenxuarga\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e5e79491416db94aa35b55d0ba838430c18e589c2b5eb268a40c5d4fb057912e", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "02a4ebef350a4267bc6c70e8869495be75ee5b94795694d2c564b09e5c2c2549", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9a73575b422de68791d323501a97d5094a4274270cb6f56a0eca81e5bbdb5ddf", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgkdfkgkl12252\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "23952362419db8d58f3b6c8f2e9acb51018f0fb38f5769c7436c64b644762de6", + "regex": "." + }, + { + "hash": "18cdaa1b95380942bc0bf44c2970a81c564159d7ee0105f272a8c0b16b4cb2f8", + "regex": "(?i)^https?\\:\\/\\/skdjfksjdfnksjd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "03659de77488ad0ae7f18b0c583af939bdc75410c03330f437b56f910bdbfbb1", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d8feab0e497775747874fa5b0c3efcd48598fceb9d4f3c93f08e5d87a7a621c3", + "regex": "(?i)^https?\\:\\/\\/mkeoxarcatva\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "03f6ae4c95681cc2c139d0ac20b8130ee2b62e8e138750a0135ab1f67df78780", + "regex": "(?i)^https?\\:\\/\\/bsdjbfhgdjgf142552\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "80bb15fe8ab68046418a6a3f51582e72ceb8447ce1ab7afefe07788b9b077174", + "regex": "(?i)^https?\\:\\/\\/352489745\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "091434df3a79cd0522362df5d0d41c5bcc645e224f6ae072f73113c6b46ed8ff", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bbdbc63dc95fe98911f68d2594c5f3e724a21e61be9db0e21344fd7b06eb06e9", + "regex": "(?i)^https?\\:\\/\\/fhhtfutrurtfujfgjuutjgjgfjgf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "32381255803c9c3fd2a81dc97af480823ffc8cee58d6cc383cd568dfbe727b49", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "093f44f11e04d8016c486dd2de50678a2592d2c4337eb2ef7b072f954cd60147", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2bfc619caa8eecfb6f110e8198342314c128682039457a886214b82646c85abe", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f8031f7b4f327c049190fd19e4e716767da3863a4e61085e0066d13accd98201", + "regex": "(?i)^https?\\:\\/\\/gutrfuiytijgfjytgitgkhgkhgkiytgjkjg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6b770561ca2ad17f773182c941ed9ee357bda4f75d4844a66c74a8d3b54e4f74", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f4685e15d6038a41884bc8eb4f4a847ceaf0447bb3e54083691c74c5e75202e4", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2e82b06331656066eb77fd034553c311f7337007009e454c74b2573bf303e120", + "regex": "(?i)^https?\\:\\/\\/ngfbflkcvmbvcb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "94749eab30a6a3af981330bad89822248efb1b4bb9245c419cbc89704bee65c6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckamse\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a718e15fa5f48212dd06e48c2c8ac7b6e08500f5d04bf9661e91d51ded7791bd", + "regex": "(?i)^https?\\:\\/\\/mkoenxexaa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5ce81523da0c380cbdb1d3573fe8d55e9f33063343d32e85b821ddae90bd5edf", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c83576cb45b97af76747b94725f44402bd459c9242e41b210d12341a92dfc940", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "73b3c387274dc24cf1ebf5325dc85bf5c1fd24513065ef310d6fce262bc3fc22", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "858c47f604166f82ce96bdf40d34891c44d63b8feb51d6e5fbb8861098d0d96c", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "19a0966668477f62e24f96d442c2c03c6b474bb41f3f409dbe85d6a4a0f92f80", + "regex": "(?i)^https?\\:\\/\\/verificationhelpcoinxxbsnewakkk\\.143\\-198\\-189\\-168\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f70ed27ec70e28957df75c5f474547e81205578e064c9ba68f306c6c173233ca", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2f2005d0ba63781e71e253b1d4f1c32d2a025161ed969cb360ac72c2660ea242", + "regex": "(?i)^https?\\:\\/\\/dfgfdgffdgf2125\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fa69cd2fddbef369d8316568e936801ed19407cbf0554d9497a13d85f605fdc1", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "71df6ef9a97ac0bea4d297f5f8bc2fc698e3198fc3cf9cef20bc2c39d320244f", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3e43741b8723e0610ba5ff9ebc84b5ede7cf702d50ed959c69d9a7d1c1e06", + "regex": "(?i)^https?\\:\\/\\/nmoemxuarvaea\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "27ecf82d3cc5003a9b93841c01b879e79963067ea758617d7ed1a4067086896b", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6cf012ef96f24e52f56365da041d650e6213a59b4f5e9dbcaef7de7756c8db01", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b2527c39adac378f138264acd17df1e9f4b01d0d11801b0345fa407b131cfb4c", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9d1e13d0e23d8fadd47b246516df22233ae0c05840875849c4bb563f7bdc34c0", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "08331456b7a47257a632f48974511a9b813337acb2e3d28f6e73b0ec53fbb0e7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckamse\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bb5fcc58d50e349df1867687b4e6481c24a7751cd8d185030929cada6c391587", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5ce80cd9f7c07c2e1a5e7b16a4e7566015e8948efb3ef8fef4902a78341f05b4", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "14b8da13075a7bdf3d402b137032cbd5a63b9e4f4a3ee65d0ef9b3915ec5dfdd", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0ceee5a9c3d1f429ca18c3660f05ee5db466a6afb5a0e8e0d1a75bdee6cb90d9", + "regex": "(?i)^https?\\:\\/\\/hdvideofever\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "476f6acb030a6da8aa2f05cc53add3712cd3e548fdc975ac1df651cbaa717b63", + "regex": "(?i)^https?\\:\\/\\/bneixaetcaeaew\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "438def40ed86ff3ba793a83bc728ec265e3ad58990673da677e2ed4c472ea4f5", + "regex": "(?i)^https?\\:\\/\\/xcbvnbxcnvbxc12245\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b3ad1d00a9a715ef79702068dddd69a5908ac6d153166b82216b408c45c2ab7c", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "59bd1ace38008d0258722b53db1e233ebddfb013131fca73d21ac0497ca6011f", + "regex": "(?i)^https?\\:\\/\\/bomienxaeta\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "eebf37dae863442616ef630fd75a051a745a01d4f429e772cd4932999c24f0d2", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6f591fde64a7d2a902ce16dbc10c4ac9c8e71d98476e6e80faf26fecda1eb25f", + "regex": "(?i)^https?\\:\\/\\/mokeuixhaevae\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "62b075187efffa582a57e32b1145c3ea7349d69b58d5e33c05342cc70a758cbc", + "regex": "." + }, + { + "hash": "9bc1ad9baf56606a92380ff0ef864683b507af2a112370aa53f1db9cca1950af", + "regex": "(?i)^https?\\:\\/\\/mokenxuarga\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bd164c217d4608ed9aabd859afbb405c1cf1d0b1a6eb9e1263d84e7ba1893f3b", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b298febc8e3685eab2b5ec30ae27f0b579cd01f1ff90510be52133a223d5e03e", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e4f7eee8cba3853624896c492cc01cda1e299aaec4b3af603eba1662d290ec07", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "eb4938bb1a6c456eaa92ae946fb2cc048a24f36bea46b9b6868a4bfb3c8622c0", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a50a818f343dd3e2bb2b48ca1baaa829623a97c9943dad1980b976a793e65e92", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3e119ba6d33d870db08253b2059e23b2863105aea20ac9dce449695467287557", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f6d115086ca9fc18f6956439ddc01d7b5b88ec1a07759b025af20bc3dc028b7f", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdasdasdasqwe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fa16f1cffcfe5ab6c3fad47952889cd8cb3c7543aa6f2c278dc016c6cee99ad6", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4e450d811534f02aca666fbcd04032c68166e5d6e281408079ece344cfca5f24", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "acf457f6f3cb76077810e831b967351b004fd0ef35e7d090883906b484afd7f4", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "616edd82a621d7ddaaa0085e1f569fb77725fe451ec22590e78e3fac5c1ff849", + "regex": "(?i)^https?\\:\\/\\/aaasdasd4as5dasdhfasdh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dfefb7131483a5c8d093e15db508b7ef14c783fdbfeb9ef7a2fd09ad15dca567", + "regex": "(?i)^https?\\:\\/\\/dfhdgkdfjdfjdfjdfjdfjghdfj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e484639743a3235b8ae487c1a2800fa3afd5e848234e9f211f6bdf9e5381cfa1", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7789b869c1b1e4533229b4c2b510f6dfe3b4043ecc3f16d4851ac39f6949b994", + "regex": "(?i)^https?\\:\\/\\/xvideohotx8\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ff1765c1534959ee886f831e603f7b276acd5c8c8ec5739d85921e89d3a5221a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "64d8ca9abb4c92c8a14adfd88e85bcd0fec74dbbb9faa7bf26cc0a294d41af4b", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfsdfsdfsdcccc\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "496e8507e81670e110015d048001144c3871ab5bf9d5976d20d7eb09adf922c2", + "regex": "." + }, + { + "hash": "ea51a0c0a00501e3ab4d6b57b834cd6dc065a323e4813afffdfb5032f381e5b9", + "regex": "(?i)^https?\\:\\/\\/mkeoxarcatva\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5f952821e12f5e01f125774a809b4114d21fbc6b61dd74db313ac92b0a3e2e6a", + "regex": "(?i)^https?\\:\\/\\/benoajseuiaega\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "799a2ba6ae80ea0f95022f4fc0ec8a016a3da8c562bbea16f59ff648bc67462f", + "regex": "." + }, + { + "hash": "3d1ccaa2bcd28143dd255a5e2079ef011040d0cc3175ea773e2f99876930e60c", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9fb2c76cd5e214d7d0481ed105b481a1d765752392453922f03d4ee1f2bd3820", + "regex": "." + }, + { + "hash": "16c56e2e1dee6a4f9b609a75469304db5c652aa526294d765955fd00237247c6", + "regex": "(?i)^https?\\:\\/\\/momeixatgva\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "493bb25148c60ab8b8c676341445ec762bcc3eb9c97f8ef406bb38301e814773", + "regex": "(?i)^https?\\:\\/\\/gfhjgfjffdghfdygreyhgjuhjgfjfj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3e6f0508070d84e74ea326da69b4067beb0361af62e788c4b737d97005cd7a56", + "regex": "(?i)^https?\\:\\/\\/aasdashfdaghsdfgasda\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1052da94ea6727e62c2c6b167e022aba2f9827e75b19acf9b735e6eea48e811a", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9230ea951f6ad9762c80c4bc03042ec6bca028a477571f883d8747906b31a05c", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ab0976988e036b5491f338d8de9b77acc6b6a5668ca1aec8ba7555f88ff0ebb1", + "regex": "(?i)^https?\\:\\/\\/triolmncaskeaotansebasydaz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1b1ebcd71144d4269f0baa7c0947d00dac83e44151f2b805e3f877bc03b2c4a4", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2edc8607221534a13c2407490f583e7bc63debb92f2b4e8f7d151a3112b9d080", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a8fa892a16c5dc25605de60f2701adccaa714c2a3cb5431ecf5c697453cf5812", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e82d46f2d4217344267d886d8dbc10e962b5e5db747064cef8f8777dd889779e", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d5fba4a291905a5c693191e543e875de6cedd3697dff54a78e980af832408f1c", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "d531cc44605ad1eab33391ebdabccf0cd6d9d97cdbce4f603b5389f5a3cf7288", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "98e3133150c3c8f6ac76d1355881a79b912c64855fe2dc73a39feb896fa6129a", + "regex": "(?i)^https?\\:\\/\\/aasdasghsadfghasfdasgh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fb3a43822dc95382e7982fc9cc61ad0e6cb8b539892fabeb8a80b9e698f86618", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a742f3031c2e63c331d2134a4ca95cb092587163c25d9d618c2ee8efcb09872d", + "regex": "(?i)^https?\\:\\/\\/triolmncaskeaotansebasydaz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b354c338206e721d65a3d595eb36a9d47913e76e5eaa60e31929a539b72d23c1", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9c3aa21e187c425e359cb363242e81c608ccd71a299da9b7ebf21853f0762093", + "regex": "(?i)^https?\\:\\/\\/uidfhgiudfhgiud1556665\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3efa645a2ea71d28ad96559131fde2d23b4f6bfcf0173de5afa9b11ec746742f", + "regex": "(?i)^https?\\:\\/\\/neoxemviaegta\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c01055b17ac573026dca63b38761c5af8121fd699b4d29c2efe79d89d854fa5a", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "923a7f1ae98e3d2f21a2043215e69f235240718354e1799a3a8fa6e558067e56", + "regex": "(?i)^https?\\:\\/\\/neoxemviaegta\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b2984f20f41cd35ca26e70d5aaa3a3c1c3a54c1fd7b0160c4a3d78632c75c3ff", + "regex": "(?i)^https?\\:\\/\\/hotclipshubs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "003e5733802c4512a626843ec80a204e753fbebafcb00f053cdf422cd70985fa", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cb8b60a7bd433fb9eb2697297cb5b0d9c0c352e82d336a16422c75c2ab1bf37a", + "regex": "(?i)^https?\\:\\/\\/nomejxnaercvae\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5199727c8b33be81da9139f0898e3898fa2d3d0274ba597a0a6cf8be1a3f9ee8", + "regex": "(?i)^https?\\:\\/\\/dgnndfgnfdjkgjdf11425\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4a762605e694a77b2e60b25b6db863748e03b1140df1c437af3f34d7794f874b", + "regex": "." + }, + { + "hash": "e80caf4b6d6885d23f47920be1265671249df4911da1f1587d640d9dbd7ce07a", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "82cc9f76fa3749b11b5fb27cce478bbd4c48abe4a476a92c8cc4a5a40c7506fd", + "regex": "(?i)^https?\\:\\/\\/nkeoxaaeycaxa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "09bb91c213944aaa46540c88a32a55338296b2a9e3240dc52673d266dd827f6c", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdfs113\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ca637827b753e218c9018e16a4e6e53f7efb65f3245185912aea9f2bd0ee3c9a", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c0451349553357e465a8152b5a13f42ed28903a2bd037c415e82e0ff6402d5d8", + "regex": "(?i)^https?\\:\\/\\/35479865\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a33fe09a1ca39ff7b9ee8b7ac3deb93af67168a3183a901b7674bfd175f79d1c", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfdfg33\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "77c9c0367b7de6234c86fac41c83a01c707d0a07309234fe1a2d8d4e27e9d401", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4f00c583be9b58237f31a04bb92efbfac7de411496323fdee15fb8d2460d6b68", + "regex": "(?i)^https?\\:\\/\\/fdghjdfhgjdfnhg11\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4159179981c5deb19d6254b72b78aa06b76f39478c9df25af3c069a09750265e", + "regex": "(?i)^https?\\:\\/\\/moenxuaeta\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "95e75a29a1c20730c452058645df46b41db4f434d56aff871d2523575fc100a7", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c6cb6d5bb4e7d0f04381fbb5b31a02a2e0191b062443116403eaf80c6223494c", + "regex": "(?i)^https?\\:\\/\\/nkeoxaaeycaxa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8ba81d45304fbae04db0874d83dece27fc7bba0b88bd41e2b64e2b6fddab4228", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "574ad67c959919d1ed9e4c47b33638135d3c417156310a370eb7a07a44bb309e", + "regex": "(?i)^https?\\:\\/\\/ssdfjdsgfhdshfbdsh122456\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9f7677e813bf813b69eb1842949377e882a2e37f72d1394c839bb89ef78a7726", + "regex": "." + }, + { + "hash": "1e127f2138cb03121ff99de995a32fa8153573172340ea1e09173bf19cd412dc", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c859eb5ad9c43a93c08352b8bfba8e4c1e46d11c137db7f22cb28a9e8a9ca3b2", + "regex": "(?i)^https?\\:\\/\\/bomienxaeta\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a96ed9e273cd8a22c8b1fdac478fc138f5031926d771abbf9c528b21338f8bf8", + "regex": "(?i)^https?\\:\\/\\/aasdasdhgfdjghd12\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "729da7637b994e5b90f8090cc5cbd7eacd809b71f5f825ec28359f819b1879e1", + "regex": "(?i)^https?\\:\\/\\/bhfsdbfhds145258\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ac6d64ce5740e1d3ef850c81ec9918fa113ace38d9b3b4b3950bcd61e2f06138", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "19334fa13ade476c84f124143bdfe93df4379dbe1f366ffe78a70e94c2482d07", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c1be82e65efc6b5fc2b4bc64803e0373d606d03eaa2f6f75402f4311944a2cb5", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d6e8a447a2e6b37f3803dde687dc481aef167df8df546c32809f65fc9129c251", + "regex": "(?i)^https?\\:\\/\\/dsfsdfdfhhfghgghkk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "049cc0e4771d750495cf122cea4722af58b116972cd6d41317318242f7ebe747", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1913a67a7f9ca4aff1d613ba5e195675bff0b4ba5223c230dc6fb080ff49a07c", + "regex": "(?i)^https?\\:\\/\\/xvideohotz2\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c25adbaf378a70a2151581114bf58fe55e13e9c7971ce93d846ad29547a347fe", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6950d676eb6a29798646d5699c05931c9dd5244061bfbe377b6104060d969738", + "regex": "(?i)^https?\\:\\/\\/mkoemuxarva\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a3094a501299b3c03cf8f7fff22e53c1439e038871ad39884da4a577398454b2", + "regex": "(?i)^https?\\:\\/\\/mokeuixhaevae\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7637f266b66e0571f5c1f33558b70d009ce58b86f8fee2712295c73ba7ebedd0", + "regex": "(?i)^https?\\:\\/\\/xvideohotz2\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "27bc1d8d7d9de53a97aa641a6ab72cbe9a806669e3058b46854bae6b67c9da38", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "70c718fdf6f3fbdf1b6537c21c08cd3ce7d07707f18bab1588fe13b5929d0fe6", + "regex": "(?i)^https?\\:\\/\\/nabaoecabresa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3adf098f48b4526d62c9e89925f15cde083c5201a2b971eb780d871beda5330f", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgkdfkgkl12252\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b252ec2ccf498a8b00c70c0e15d2edf8387fadc343a02a07ce38227adad0fe7a", + "regex": "(?i)^https?\\:\\/\\/fhhtfutrurtfujfgjuutjgjgfjgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6d74e5a36247e9b9fd389b98313835b14c1a54f9c9a629bb48c88b78cc5d3604", + "regex": "(?i)^https?\\:\\/\\/bsdjbfhgdjgf142552\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "eab09f9c45a00c5051810b6bed9afdd8d85ee5b702c1313f544bbb84a29c6380", + "regex": "(?i)^https?\\:\\/\\/4659889321\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cb1627addacef1aeefda10313a56fb29321904cc1cf09b38edaac5c5956140dc", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfbsdbsdnf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "247288524c071c49f8669dfc6d110eee022a40d7459b36d498ef7b4e7902cdd4", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv9\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d8941efc4e5028512d0d645911cf30e7d2e96e73f9b3f93d47892e0ccddfd98a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ctf\\-write\\-ups[\\/\\\\]+cheat\\-sheets\\-and\\-notes[\\/\\\\]+windows\\-privilege\\-escalation[\\/\\\\]+windows\\-user\\-privileges[\\/\\\\]+sedebugprivilege(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "895d250ba9d1df4580645f3a9571a442069d84916c773ae9fd40709963497322", + "regex": "(?i)^https?\\:\\/\\/gjhfgjufiytiytgkhkghkghkjhkjhk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b8174dbf49c8969e61a36d56f3da2dd16618b5e5781fb2835e7d20be3cd21b95", + "regex": "(?i)^https?\\:\\/\\/fdbgjkdfgjkdfng11447\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3672ad71d181054d2cd80bf2c3b7a38f831c745aeb8010a25be16192bcd6d30a", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "140045fdb4e45894fe103b52ca80748e6d6e47f93ae4c96a76c26b246963ca4a", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "249b4012dce87db4d8615ed17ad37daeeb8832a617dc430bab6e6927ae36aa52", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c3cd45fd4923d36f2770996bea3e7be1c107c8f65d2a05c0e6f4fcb997f65815", + "regex": "." + }, + { + "hash": "111ee8e3bee773077d14692b12e89eddd9e64cd549e7575bf77c5291336e2d4b", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1276185d06f2934125684fa92a42ed8f947c079ad65d262ec39f16fa94ed37a7", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bd8144818f5e9693a9aa643d280dd582c821c34f915ebb71e7c25dd09fa87134", + "regex": "(?i)^https?\\:\\/\\/654987165\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e6f73f69db4b497af9f987b4d1458926fa1e8324bd7dd191e951d658ec5d005d", + "regex": "(?i)^https?\\:\\/\\/hdfufytigytukghioytugkgghgh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1a1694100dd8c12a45e9f6dbb62a5b77c22fd0ba3ad5fce35d942309986b6f44", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "aa8b1c81315a19728115ffea4c4391e6d838451ccdb1083690912257bb1bcf96", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "34dc6d04ea95f2293dea9ccfcf3152e5bcac9056187675e4a6b5d2d9650289f0", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "da8dafcaee6d16f8565f1b0b783aeec8fbf22375382f34ca26b87141361fa74d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88585c9846d05275cd333741614dda1d99f9c20785122658632754df70ad3ec5", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgdfgfdg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "250e347bae46b2a9c51a5067436aa0ff6c1051d7bbb8e43aa58b4763d4a6a5bd", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7079d38a2bbf41d698da386b8953a0ecf96094ebaab53f25add21950e5d78cfa", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2aee76bb2bd413b96a28c15f96eb30680c16366503206c253f753cbf476dc0fe", + "regex": "(?i)^https?\\:\\/\\/moemkhecuar\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6ea84cb805cb7dec2a49517df78dd7024b41c1cf0ce3939641f5a6c4c402ea8a", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "de8e101f31ff6f021cbf0a9ab8b413c2f83c494bef12a82dd4ad921ea76d0f88", + "regex": "(?i)^https?\\:\\/\\/noemxjaecay\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "87e2a2b0d5343f1734f2cb4e3e6b1fa7234e4645ecf605fce224c69671eb0ae9", + "regex": "." + }, + { + "hash": "b953071b0fe69fdd119c5254793d97b52617a432884b75bf8d012240b3fc38a4", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bd14b8346625c63e072b464914d62a5da0f3a8652416f02af14037bb8473c0fc", + "regex": "(?i)^https?\\:\\/\\/dfndfgbdfjbgfh123456\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ba5f4cb0d54fafe251233a81e3b7036f4c112bcd3588f6f6b2c743f0efbc3378", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "779bc9426f20eae343b7380218ceff1caa8719b56e081e8ee7c29eb0dfcb483a", + "regex": "(?i)^https?\\:\\/\\/hdfufytigytukghioytugkgghgh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "64b431ebc275a8444e9715a541621dd237db8198b459e2dfa15fbf658b5bb7f9", + "regex": "(?i)^https?\\:\\/\\/moemxarva\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6051341564f8fedc30b9e7743827bac6bd843d262deccd0569d2d60c3b00e91a", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2fbd441c022e575ef563a3ce67aa1e3592c43f98c880e77be647cf0d005c05a7", + "regex": "(?i)^https?\\:\\/\\/aaasdashdfasdhgasdas\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a74f03db9f4074cd699fbed9bf28de4ed51083caa79c7f922858e9094f42798f", + "regex": "(?i)^https?\\:\\/\\/dfndfgbdfjbgfh123456\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b4e1be1fafc189dcec66601c75c560a68b446429d821f6c874c9ba34f6e9b0eb", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ca9b3596d7425daab8ed1265c5d381eba429381a9e136bcfeaa2466e7f5d7378", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8c064a8945c27f33c708f9b33892450f5f50a6aafc333565c22c073c3b9ab72d", + "regex": "(?i)^https?\\:\\/\\/mokenxuarga\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ed20abf6a19f67db92e39502a17e34a35863430e4ebd62a0884a515c363e84ef", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d09e64185f406bd96e2002df45a5790a4059e0b89d47d39adfe8453d039cf86a", + "regex": "(?i)^https?\\:\\/\\/meoijnuaegar\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f88993d55cd9341c32fd657cfcec7fde2d7b4b0a4e6bcde4c13f0d678e3c7656", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "576ce1a99daf4b74342451c7bd906f0960ece6a5ad8a027cae9103b3dfb012ee", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8ab467b9431be9ede85fb67d8f0e970d5c35e8e25654ae32133c00c26ff53db8", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ca28a9d9c8394bfb93c359db3874a2bfd0a0476a8cb3a0115798b6c3347c8b38", + "regex": "(?i)^https?\\:\\/\\/momeixatgva\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "52c26bf08c02888469fab345a14c72342a7716e317db01bfd8e58789b2e1cae4", + "regex": "(?i)^https?\\:\\/\\/hdvideofever\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ed927fc510c8096d700a15c596833662c376ae234951bf677286961053dbb648", + "regex": "(?i)^https?\\:\\/\\/gutrfuiytijgfjytgitgkhgkhgkiytgjkjg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "33342960c2eb4feabeeccfc62a73c5010255b839c45aaa4b8db37d76a21b08a1", + "regex": "." + }, + { + "hash": "8802a6fb64e48e75356f1c8260aa70cb71cf1dec9f61cc775307124f075276de", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmakcamsea\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ea33f9cba2915a50b1d8c01b72196b84be5558ade4c8f1e2a68051de6ae46368", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8d97d2e90e00740794aa339fc47bae0e465452dbef9e51308bfdd1051047f4ef", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3c055f91fbace2bb807f16fb9d4b44d3bf422cdcb78dd4ffcd0f1f8a0881dfdd", + "regex": "(?i)^https?\\:\\/\\/nmoemxuarvaea\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a9db28f5709402f1c1b1ab6bae9bbec95a1a708f70a85ce739ac139f1ba6b947", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mailf813642adab5ed6b6e13c81b7f47$" + }, + { + "hash": "420af9b9a80d43d3657bf55802fbe2ad9ec6bec1debf3125bd0c9c78dfd2f3b4", + "regex": "(?i)^https?\\:\\/\\/352489745\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "70d8b1ba5b0bfaa948dc9d58e72b3fa3adea7c7320f4a9c50e04adaa49f5a4c4", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b469248b3ebbf38b8fddc9c64c4f51eb0695673c693bf5cd36736207611b3d98", + "regex": "(?i)^https?\\:\\/\\/aaasdashdfasdhgasdas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d07f4380f3e968d534901b5e78ea51f8edce9d5a502b97d7778493ba8a83481e", + "regex": "(?i)^https?\\:\\/\\/moennxhaerga\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6a70f3bf32e16d5f20c71b0c15f3dc06db20a233de33ace2dc6e58dba6834017", + "regex": "(?i)^https?\\:\\/\\/hdvideofever\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "384b71b0d6fad7d4cf855789cb3646d5ee7deb94b217aab7a73f2ec3370f3f6a", + "regex": "." + }, + { + "hash": "42840a959acc81d659841547484dd55a298ff6f5d4c70a5630c9f64a1fbb5859", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "601e46d6032dc2ff0df747be688490c6abd278fccdbc27e364408eea3fab3707", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "21851d1dd5a599205561620d25e1a22eaf37a5f646bd415de6f2ce34ec9ee1a7", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "97423ee7677fd6780b916d0ad6c03ad0ecf66b71b35261688ffabd6f3ad83bbc", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "79dc19667fc432950534e1bc913436599c1c316a179f0106f4114a11d10e55a3", + "regex": "." + }, + { + "hash": "5d194396eff00b6be23a698b8038b498f725219324f110a71964976a1a04c5e4", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "199d0920c6ca6eb8bb32e95f78282cd4434b498b8ef95524e67ec8e1b4b75726", + "regex": "(?i)^https?\\:\\/\\/sdgdfyhtutrujujurtufgjjj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "38138d7005c55490436c093c847be605b459b4abe1c1ccdb21237005d4af4837", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "339c40cf8b48523e96944066c2aae8fb5558b98f9cbe94ec9f8a8aecbc833b35", + "regex": "(?i)^https?\\:\\/\\/neoxemviaegta\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "868343dcc0f3a604e8e367613fb2ca76f83575ef3ba90d037ed2b92c5766b9df", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "279fbf872bd728f9d9c2d6d1943b0c8b4e7f32fbce7f50a258fe830f71abc977", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fa56269c930206e25bba2047da7d666a67e531e86dd13eddb48139391905cec8", + "regex": "(?i)^https?\\:\\/\\/kjsdkfjsdk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bccd21a01989c01a2679a834d01162c0fe4849b322af313cbdaac5da589e2c9e", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a895828ac03fc99ae6f58a7b86b24226c8c536d05d57ece5dbba4d43b5ed87df", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a40481c264b6114fd9d9106090d2c77dd6a12006274cf154963ff6185e7aa2ae", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5338ab27df7a0d2c891618627ec9534d2621e37d4b51eee233d47176eed8f676", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3d5af21957ce907da7ed460387fd6cbcfea8c99f990ac6a67df3a1ae4c2cde4d", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "aa3aa61f9b05e368f6b36468d52c3901740ba67d66839557c9d48d10246c5bd5", + "regex": "(?i)^https?\\:\\/\\/fdghjdfhgjdfnhg11\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f26e20204b3ade8ec5529580f4d99305261ae20b4e41a2d7ec06166e51e964a4", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eae5ac26e1e7789974164e7a4a4e4e88d6b77983359ca5dfa91c2c015e7e8eac", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c80e738978b7a55414ebbd02bd0c33c91f49800bf55a4aa7c62fdc173fae10b0", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "85f3d7892dd11ee4c7b5906f376bde075bed1ae6d5dd4f84e1f6b67ca51d0beb", + "regex": "(?i)^https?\\:\\/\\/aasdasdashegqwehwfq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2478583f9e501d70eadd59cc6e74f466e4c11a78e44aa964c514c0db792756de", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9164e96d9c8ffe068e7e2aebd3eaed2ac09dde8584bd297fe56afbdcfc8aab3c", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgdfgdrtre\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4606e296affe34562f71c133f1b034f839c9fdaa463a5079278587f126df0499", + "regex": "." + }, + { + "hash": "bce88f1d782d9d0caab657e0bc866102da309bc904da88acf4846ebcfc58b1c0", + "regex": "(?i)^https?\\:\\/\\/hdfjfdjgnfdjngjdfng\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "04877542b4e330ce6d735d27217e8892eefe44c88202987c3651d00fe0e9ecd1", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "84f77865e8b93b7da0f4a7c4b0428f5c9c0bbb1d795edb2ddcf4b97cee8e2213", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c6c24a5891c3bfd58dd0f383a2ccf828809235e88b4332a440d626daa890b8b1", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fab92cde29748613ade285c91bbb70ef73e5bb3c82b52cf3ffa0ff61dabaf27c", + "regex": "(?i)^https?\\:\\/\\/aasdasdhgfdjghd12\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5234845377330099483bcfbcc119e267cb4d15c1a08d762f3db106ea2d50c88f", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaeuvwa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a0ac06bc2bebe9131afcbfb32831f04d0d5820e851b3e5db00e62679b4078814", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dd5d00537b36b751878b36aa386d8d10390a0be3e4fe75f38035924964d79d4a", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ae53320824d7aba832fffb2d13d9cd2d6e4cc7415848934e3fe01fdf6d6512b1", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "97f1e5757ec59ca3557603f0491798549aee2626644455eba7cb0820ce5627f3", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "713babce1b9023ae66de8c3646ddd64b449b51437be1eabcab5325592ca1c4f9", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a8993e7a8eca6246caa217b769b48fb38db5f48599c548e6d3f2de5877984263", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fa8a6a03f0cd65b79d68c5b2c70113ccb687c60ec1713f93d62c4d5f9b1a7197", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7136cda31ffa801c0497a81f5fb5ae13e0173b9536ec915a7c7b59a2ea9015ef", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0441d1cd28dfc91741789c1382d1a7d499e06d8c6340be43fbc93c62f9a257c5", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "823fd617d094f2e1b8bc89fc221fe934833d0727723ac97dea4f74bfdebc3183", + "regex": "(?i)^https?\\:\\/\\/attacayyhhajajabsishshsusvsjsvsushs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "69e461cab79995ebfe6dba6e82c46e501d822a4c2cb8e21134156fa197c0f2a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+QckFZSk8uhoyHPICvq(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "279fded755c50efa188887e4794b20580f7211533f14511d6b4f529d53f50730", + "regex": "(?i)^https?\\:\\/\\/nomejxnaercvae\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0d4c7fb42789a590b79f36c9344ef9792ea41acd63b4dd3c6eba24345eda27b3", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eae85ae0076e0da03ac8caed08ca9e40401d7accd09df9e8b0b30c0e0c74d572", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2914d92314e31e61ab87e70c82db0308134985a78de9153f2dc4715a56f3eb3a", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3bf6cae7ed56ab82214796fba71ff8cb9fa9bfa9bbcb61fd0ad2b6d31e24fec1", + "regex": "." + }, + { + "hash": "2a34c097e12045adbbc6594b648bbe5801f387409b088d8f93ce11bd4c726dd7", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4ec592f756e6576f41fefd126e9cb0357914ed488c58686ac157bd98194aa03c", + "regex": "(?i)^https?\\:\\/\\/nmeocxnarcawxa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3f0e21e860dcf2a0318caa5e2f9dce0935308c9ff193b845310b18e26269bd26", + "regex": "(?i)^https?\\:\\/\\/dasdjgashdgahsdghqwe312\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ff6a8e6765fc4c7bc29b1b51093ba36a29c25f4f80a8c5ff48f5900a1a0d7af9", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2987b82d28782a5c517a761769e2b972f86ee67abbc752bdf5ade702b7d329af", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6950b41a02778c6e4e0bd8e449c285c5936d99f3df78723a4521f1ace2efdd00", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxxx\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d7fc0884314dd5e6c5ca9b5b6b3e9f337e526b78abf27475a07e780f7b463b50", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfsdfsdfsdcccc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ba5f966cf7a5bc16d3f6b8d250ce7e75c1ec16902de4d0146b1565c1ba3ad445", + "regex": "." + }, + { + "hash": "bdbe9cda405936872e99a2e247548aaf020e55bcd0b6836c360537d8f75b2e1c", + "regex": "(?i)^https?\\:\\/\\/gfhjgfjffdghfdygreyhgjuhjgfjfj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "75250c793a4b6837ee418aae7caf053fdc92cfce661d2c4088662140414a2ee0", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2e9d867f5f8e8ff113d79544a2d71c880c89b9f09222485da15879b0c5858bf3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a0ba43997be10e511959d423fb72a570800a14c68e553ea3ae823142e074423", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "00bda07fd15b3b4a8d046ec0ea2f144ae2f592bd3aa33ee4ca7fb5f07174d08a", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "24a298d70c686e2794bb593edef7c2c3ae0f0584e2cc33766b3bde6025e956c1", + "regex": "." + }, + { + "hash": "60f485caf0e1f7e8e9cd01f2c9eacf8e049bf639b47ebcd78e5eb51cbaf31f09", + "regex": "(?i)^https?\\:\\/\\/hydfgufytiuigjgirtyigjghkhk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "85f782e68fd48143b98416f5e13c902a756763aad10c6057ba485b91be6d9282", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b8624d8c1021aff6ca7eadf2e422294738112ba010eae25f2ab9b559869e4c04", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8ba1933e60cd4c39c679bca4cf317fe14ed289476c9f4f37fcb80db4e7245c6f", + "regex": "(?i)^https?\\:\\/\\/xcbvnbxcnvbxc12245\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ddba9dcd58c6378fb00f84877eff083edbd5ec282e966f79f9c83dc4ced7d890", + "regex": "(?i)^https?\\:\\/\\/dfgdhguidhgidfgjdf1114\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f5e26a47b08e83e7437263f2dd4d04d53fb7b6b3b9ff75455fafafdc95383c6e", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "24a27f4b8185b3587c3694930c14aa24ebd2ac45cd8daaa77e82900bfe910d88", + "regex": "(?i)^https?\\:\\/\\/moekmxuar\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6fa2d9a773a402163b94cc43fd071394d8357ec0681301c486626e88fd1505b0", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f069f891df603879214c441b2724922ba518dcf6026ca7b6ba8b77b9b6ac6aa3", + "regex": "(?i)^https?\\:\\/\\/noemxjaecay\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "55d79a1acf94ad6e0327800b03e18a1f057bb4a173bfa6e1feda1d0a21f13cc0", + "regex": "." + }, + { + "hash": "aab2f9de476564edb381f3f01d04c3f2b67b1a253c5dd54d5e5425cfa8309c97", + "regex": "." + }, + { + "hash": "14716b519a5f75ac837cfc99e1bfe43c7847a0ce4b8640fb1f2d1274e9f01a86", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fae5daadeedece023379aad9ac00722a1eb4a2620b4766de76b87866ae2ccfae", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjfjfgjfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a7e23fe9becc9db7fcfc94a0d7fe89dab0de52b69dfde643ccead106c76c949b", + "regex": "(?i)^https?\\:\\/\\/748977455648978\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2833866f8940e9757fe644d15c23e10664adec92ac727368bb347f36e03ce657", + "regex": "(?i)^https?\\:\\/\\/beoxeicaeraea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8add7fc9f1b481470c7b7f361e44ef77582a65da7911cd1114fb290a5e8a77b9", + "regex": "(?i)^https?\\:\\/\\/hotclipshubs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a19ce887db1bc98386ab2d668189435957a9439df6ea63b60b442fd1aa7d66f7", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3b389d5063ace074a7af0023639c6d1b44f428b7f5d24880452c46d6c2fcf1fe", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "bf57f28a17d357055d8bd55aac9f7195928485ebb3aa1b5e64246980993f22d5", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d4d1b9befd4059209efe74424c524911b4fdd1bcc6e3b65492d046a3dcbf0b7f", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "767e2b5dea0e3efc380b003f4e671e4a1774eeed247b3c55caf795bf3ddeb577", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d8b56e3ff9df670b97d4a7fb5760b335b92a75ba381bef86f625de9b46864ae2", + "regex": "(?i)^https?\\:\\/\\/mkeoxarcatva\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6e108de740ad47d52f74a9ceb3351542471b30b1a861a0b4b5c0609d397f3dc7", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cf2429db6051d1ff058aded1e1b1511d7dcbb18aedc4a04fefee1414d0034d19", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a489251062c28ad4aede2e814f56f418b381f59874aa28777ad4942393cbd6a0", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "902fe880f009ac7cc74ae9e15b00a3d2ded86f323ab4104658aab67006f2570e", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "218c427c5d70d8b9ccf8d8c0f657388f225dbff735a1ee178a9b5b23d10838b9", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarecarae\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1323ab832214f7cafaa5269787229d3694d2251e80f27cadf58715fd6d6b9b7a", + "regex": "(?i)^https?\\:\\/\\/koaemuawraewa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d3cbc9e8a3f755a3cf94ab874c97c0f3ac8940c659c76347fe264106c1f12fa6", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "77ba4ac9cb660dd9d0adffdc6c2a3f2e81fc5209c52b25552732845e79fa8e1a", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfjsdhfgjsdhf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1527caec444afcaf4c9b67669d468e99b5977022d597781dcea75a8fe96326f9", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdgfasdgasf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8331b6235e22bcebb0f33c7f40869ebd4d8bcdf2a0bc5356e175e38584ce5216", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a826bb8c81014c21fab266fb623682e6860fadd41a2c1009dec592bcd1d1d81c", + "regex": "(?i)^https?\\:\\/\\/nabaoecabresa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cf5acae99ea7f979f80d49041dff217a1dbe85f2d87cbf74c73cf928e16ee0df", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b11344f484ecf7797cdeacc58882cf3b412c52cc0f53a2bdea1f3393c8ed00d2", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1bc97762c1c45cf6e923d43d272930869eaa1542846e276d42d4f48a41a8b226", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "aa52107e766e75dab3db664b3778fa22c47998974ae8d95bbe07bac8d5bfb4e9", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4c4df2e705c10629864c7b1bcc27bab729490c49a0b00ab3b9134a67bb6daa19", + "regex": "(?i)^https?\\:\\/\\/dfgkjdfbgkdfngdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e091ab5284abbf19d7c8ff812872b89dcd1cc1a13d81e3fec04fde08a98cb5af", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bbdbc40b971ea96377a34066ab090cb2e04b11b95c08fc8bdf55c73bbe30c7de", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "0fcc288393ffd514ee4a41407eaab87356696cbdea2a16395d2ce7469602000d", + "regex": "(?i)^https?\\:\\/\\/dfgfgdgdfgdfgdf12452\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a10973099c4d3c229b3af150867092fd31b8221304993648730616695c8bc2dd", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b1b51eeb92bbc44fa1ca7595c1dfbdab0e3d04d05d8112d92c0f816a1e94a55a", + "regex": "(?i)^https?\\:\\/\\/dfhgdfghidfjgnh111223\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4423689217ac09a20e87a67aa97680c2af67d564dcf2d2939074ce9bcb4d9b8b", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgfdg123\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1736eeb2c14abcc60079a4574f1af82f452595c3afde6f652721f54095d57439", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "640683dd03b474933612eb73b8d38a1235ed7670a56679ec2571094de9f28039", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1c38d26da93ebcdb69da8f374d7c131c26feb93f04f35052a752f5ecdf4b6d1b", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f8ed37bde797248c50e35e55950977a7b2115ef6fc5bf985e83fae79ef80f884", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cf6aa8200c70605cda9f1cf40fdcc96e55ce384b555c03a875242707384b308c", + "regex": "." + }, + { + "hash": "13b7b3cacccd38e22125d65c1e734ab575f8993d823aacd48b052c84a0de4cff", + "regex": "(?i)^https?\\:\\/\\/hdvideofever\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f13d80afcb3200fbe514d129308ebe5e46677b3f77fd16d313fe14c6e546a555", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "804ce54b66b532e72bc0eec815a7044ba34f05110ccce7f5095d5dbdca9dd2f2", + "regex": "(?i)^https?\\:\\/\\/dasdjgashdgahsdghqwe312\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "eeb51de0a7d8d7e6aa56cb45db7788116452c69e786dbd2d0acef39d51c017ee", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "658d74dcac7feea4a3d982a798c7f849563fe92a553474add685784b2aee80ca", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "59ecbe6becee2292aa573660f1de530750678148e76566309cf7d7940cfb656d", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "81e17d38563b7ffee61787e3afe64174c6807a41910493e37667e8e4fc7e5769", + "regex": "(?i)^https?\\:\\/\\/xvideohotx2\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "90125b1e751aa7b19a7087b419c3dac8157bf500717f3cd3b4c0e76c15a00e13", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "30919850c19a609d037fc8793d48b77c22d4cfc7ae2eb79187d2366e95267aa8", + "regex": "(?i)^https?\\:\\/\\/aaaadjhasfdjhasfdgasdfasjh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "da19db493060257cebbabc301c5096cbcea026c91948237afd8005db27d6b005", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a6aa3b721a9cb9be7a2b10c6d78cd20c9189ee10e241dd0dd0bebab9838d90d3", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfgdfhgfhgfvcgfh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a8720509d991b963d118745e45de95f67ed945deec248470fb1163a2bedcc19e", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "56423fdd55f76bdebef6c6f1c3f99ad0007703610f24bfbbffdc2e27bc87df30", + "regex": "(?i)^https?\\:\\/\\/fdvgfdjg11234\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6a837f9cba17897f94127d65cc70aaae12ecf3053c6c8b7b765b4992b9828caa", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "90355b4ecb838ab2046c870a9a80d26adf5e4de62b0fe23974ec488b0570f75d", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "26c4f5b2a3df3f7afaf37267e37da45a703a9821e30d1b874e57eeea0fe4097d", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0495734a874860e66ce0bb642aa6e81d77d22b536f3ac6938532f974c86dc79e", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8b2159362f643c81c5a93679098d4e8ae6c040665234d5e4b39156618d36db24", + "regex": "(?i)^https?\\:\\/\\/2145474658132\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "93c673c9a7f28b3a344880e31e566db697ae0722d0a6036a17c16bd765505cc5", + "regex": "." + }, + { + "hash": "e5848062b35c4cf4879935d3e3cdba6842aa8d03c066bc1cc4dfa38a97c3a32e", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4de07b8988ef33c93802613a2b6e3172694fac28afdd885d494fdc9cace9cabe", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "66593aad5e68e25e1ee0042bb6d800faa667e58b2a50e9887037f45c03d94a81", + "regex": "(?i)^https?\\:\\/\\/654987165\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b58fc571a3a557849763bfdd29175f68e2bceb38de74e30e76972a7b81c67d59", + "regex": "(?i)^https?\\:\\/\\/nmoemcharvae\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c2b572e8f70a9aaf1e16c0d4ebc5ff1f4ded01af393dad3625e4d18fbfc1351f", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfjsdhfgjsdhf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0a22a205b09757595c2c98625d07dfb6b2b921eb812709d6f962e8845b108309", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4cb2d669064f75191a4b68b02e629a5b601070af22c53c8910bef6535262090f", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e6a24994adbe07844e7d98b11e165500d53eaebc898fe0df5b395aed47a0211d", + "regex": "(?i)^https?\\:\\/\\/dsfsdfdfhhfghgghkk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "34d0a1a80f50a23ae513064118da4dea360aaf53f4e16977a84914c50ecbd8f2", + "regex": "(?i)^https?\\:\\/\\/hdfjfdjgnfdjngjdfng\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "95ffec09f57098a77900255731f9c1579eebdcb187c3e1e48c4140e493dc701d", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfsdfsdfsdcccc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f78c580381a3dc2d81d22de97b41c84f85c004ff067e5b5ae8f5a98d02b592ec", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "910085521a11c47c1f9357d3bcc9712be22ebdb01dda79379ea17e887e5ccd92", + "regex": "(?i)^https?\\:\\/\\/mkoemuxarva\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "26c70e968986026c73630f5f7a10cb48185b6de9f272262c29cfb6057d4c6acb", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cbba28eb942124bbc490f18897d80883db8dea7ebb165a1fea8ed1f8c3dce9f9", + "regex": "(?i)^https?\\:\\/\\/bneixaetcaeaew\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4e2c2eaadc8de050b142df7c61c0c2fbb8a8f7cd5211c9bc90ab71198e10c00a", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "611514a3f29e99ec47f949798b04c5bbfd5200f44999b768ba607ea9cfc86b8c", + "regex": "(?i)^https?\\:\\/\\/meoijnuaegar\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "921eb4c546b0813d8041eb55459026469007c50d9590b65d48b5cd1afaffc0e7", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d784710192eef128e68f8ca20d853afed1f1cd93c82b773cbad1bb5388602e93", + "regex": "(?i)^https?\\:\\/\\/mkoenxaiexae\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=maild45c063d31db7f45570c448122ec$" + }, + { + "hash": "0cfe2a9c14d491f02980dd10fc265c6683f85e61261e4dc5a72770e3f7e5bb60", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "67b1f08c1235022b4f9870147463243c62a5328b5116e111524c16eca453c38f", + "regex": "(?i)^https?\\:\\/\\/654987165\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "85fcb11fcdd3918bfabcaa663f2b7e0b6d6013ddd179436376de2585ff392c8f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1f087f58c23ed90a6cc4a1d1a4df0c56eca502e8ca1fe905ec38e222ef7ba78c", + "regex": "(?i)^https?\\:\\/\\/netflix\\-26eac\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "aa579244168c6d26c40d64dabc558797e169558d522363f38cf59683d21f6634", + "regex": "(?i)^https?\\:\\/\\/meoincuehavca\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "580760440a54dd3d565b69e69f3491b92164a0652de79cd434dff05731eb2add", + "regex": "(?i)^https?\\:\\/\\/moekmxuar\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0cacb6116c6625a926f7b71bb62947cea5e59640e0f0dc8c0fedcadab71b97f5", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "55d742352f291d8a94f78c2c4deaee9794376c69ffb30614b114878a707497c0", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "384c387fc52956a8babab7103f05c8ac4e7e864c960bab8a17fa282355ba1ee7", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f2d29044e32d54cfcca07da6ef7df0641f7646b8f75ab32284c309f68f7b9262", + "regex": "(?i)^https?\\:\\/\\/dgdfhytutrufrjgjfgufujutfgjgfjgf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bcd5aae7966db0c397b0865b484b9fb061045786850faaa37cc9dec3ca08366d", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfgdfhgfhgfvcgfh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e18788d7dbb0e814bbf199d0f234ccb4fefce769f51ec0b81957325e46ac0b98", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1ad637cc240e5261eeb42f2e24d3631269457f2ed3937090604d410edf671a8c", + "regex": "(?i)^https?\\:\\/\\/bhfsdbfhds145258\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c52a2fd08f6b0a5e69d9beee45b817ad80d9941e4ba1c2709abd3711cf183063", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyklasckascmasme\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8603ddd52db3aca93570c6b733499285cbb51ce959bae5b02f3426894935d60f", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a4cb25bb6316a5385a7fe15931585a745fba8691f53d26b0f75560b2677d8b86", + "regex": "(?i)^https?\\:\\/\\/sdferturtyifjjuufghjfghjfjufj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1df6bb9b75d6e14a43fc5a0fa8abf21c72b2b4807f48f633e79fed25abd3ba3b", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5922e89c47dbac2fb3ac6c8fa4170ecefe7f2063bcbcbbb5925a44d7f8ee59d4", + "regex": "(?i)^https?\\:\\/\\/ssdfjdsgfhdshfbdsh122456\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "065ed9e2e5fcb8af7fa77620f3e267dc1cda39289f43ab415e6d86f33e9c7894", + "regex": "(?i)^https?\\:\\/\\/fbdshfbsdhbfhsd145212\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fbd031e5ddef5aed8285a2855b57ac32b5774dc34bdeb9f4625ddc01659fe989", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "688b74b4803e11d129f5110f41ce097b47b470b1e0998e7ea2220618a7a4bd55", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "555dd420c84f6e9eb1eedd4caf0a2171cbb4ed475fa05ec46c6f7facef6ade49", + "regex": "(?i)^https?\\:\\/\\/noemxaieaqa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8f3b5628841f1306da4de677eedc1dd623812bd230f3e75c34e8ceb3662507ce", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0ac4049675d6b7c2bbd5159b99a00f51368a36997c4c5a5c22907a24a16161cf", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "420a18156accbc5d66d90193af8664009206eaebcd194774474cbb6534318256", + "regex": "(?i)^https?\\:\\/\\/nmoemcharvae\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "eba9369969ebc9698dce8a8bce766e2df3fa79bbdbf19cc8a0784b7fa2c96208", + "regex": "(?i)^https?\\:\\/\\/moemxaheta\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "57d046056a34ac2588251438ed970c8ee988b7bba02f7bf4054cdc88fcfbdc57", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "24631c355e4c48edb6bb92eae4290b1cf4840430d6d6ff086431fdab09bda96e", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7d2be7620c64475b5ff4b8c5393cd3d045daabd42a92d9ede9c103c35d4ce50e", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "04c395bf3187107a5c5fac675d2e103b7ceac6c5b4168138f1dfaa21f61f0d36", + "regex": "(?i)^https?\\:\\/\\/aaaadjhasfdjhasfdgasdfasjh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0d2fd17acb19000c6154b19d3888fae224619e1c62fb5d7c02e376c706112dd4", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c835f137664f5474052ab6131989e13e71713f2714818efbf7276a867702fbe3", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aad8a265dd6303ef281fc772ed6a19e81e7fe482e91ca5ec8ae42751d160ee4e", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfbsdbsdnf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3cf1d83e375fa9918909d779a5d170caf95793268c2d356114120a09389c8f60", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6d556e3cbf89d539ffec3e0369f0cfdd00796b2f0e5912d199b9e3f7dd940151", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b5bed823c2650efed033a34a6ea1ce538c8dda48643526ecab8dbabebcea39ef", + "regex": "(?i)^https?\\:\\/\\/gfbjncvjknbcvb123455\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0677ba8746e2989b82604b12e6b082b7ded771232edafad57d7fe703a77b4984", + "regex": "(?i)^https?\\:\\/\\/fdbgjkdfgjkdfng11447\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0f5065c7f81e9b7684113f9119d9f4464aead86d0faf98fa0f18fc079133da35", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "49803c3c09bac5a2ab2c7223741f8365a29ea6f34cdc76a5d1ba2ae0981346a3", + "regex": "(?i)^https?\\:\\/\\/aasdasdhgfdjghd12\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8d32898ba47f095bbfecfdd6992ec2c6161fdfa896440c99c9bd979fe4ee38a2", + "regex": "(?i)^https?\\:\\/\\/aaasghdfagshdfasghfdas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5724f237cc43fe90b2a0248a37fff7bab28cdc4a1eea26e883fea9de0c386203", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bbbbe0509709a6177082aeb5e82c9df2a1d4d3bace0e2e2b57e7447f3579fb04", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4cad5ce62cf387c79a1397be079f67bf8c2551ba6bdbb5107d6bc72998f96451", + "regex": "(?i)^https?\\:\\/\\/fhhtfutrurtfujfgjuutjgjgfjgf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2cba5308ce536b70cd9461ed4c42c037ed50d4d27941bb19e38484ff5039931f", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "93b4746d21f33509e3f68f08ad929d5dbc3a907b16794ac2d1d762accbd7c91e", + "regex": "(?i)^https?\\:\\/\\/moekmxuar\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8c06b27aff4912e2e86cbdfb0a281a346619378332fae4405f91b511e189ce4d", + "regex": "(?i)^https?\\:\\/\\/dfgfdgffdgf2125\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "904eda4a5347d4c286863ad1f68c762adf56d6cfada82762c1bcd608c7d5a3b3", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfjsdhfgjsdhf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bee195dff1c8a9a013be6ec8492e22800377ab62b368a29e0c121046ad78e5c1", + "regex": "(?i)^https?\\:\\/\\/6549784162\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d8c376732c7fc3c6e3fda8e8a9d5c8e459552dcede0fb6e42af10b6c497bc9b7", + "regex": "(?i)^https?\\:\\/\\/instagramverifiedbadge\\-1\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "170a272e13796c8be00dbe3f6d16b3ba2df2ad7a5c582a2ce45cef7d7d951851", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "212b67da425bce98bef4a63f03a6c39013b2593b35401d028e5b221f4c58155d", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e1b9227a46a8c5ee1ae856e0ab13fe4718f9c3bd3427c74d0e21cb1a9df5674d", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d39624647cf8dec98ba244eb00fb93afd590f36164e9dc877379e75bb1d8c1ca", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ddd0ac378c8339fd7dc34435f62334412cfb6e68a0ab7402144f61da4f297433", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+80R1JQ(?:\\?|$)" + }, + { + "hash": "a392df19e81f42797b0bb5d27b82e70ba72be245a87bf7fcfae2f2b591bb16eb", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ffe3f57eb78a2264ba940319a92c76150a7cf681651c9f3dd94f400f71c19ded", + "regex": "(?i)^https?\\:\\/\\/dfndfgbdfjbgfh123456\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d76659a4efaf0ab1518149adc238a3a3c3f25b908e20f43f3f7cdc75ff527468", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b1b5136ef045ab2fc569f3334e8aeba13c02a0f677b313d8f45afc0a87fd388d", + "regex": "(?i)^https?\\:\\/\\/fdvgfdjg11234\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b113cc8fb5716a791244cdaea47a014abc59fe1e972177cd33b1d1873d50057f", + "regex": "(?i)^https?\\:\\/\\/moemkhecuar\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7e0960e44431d28ea3b519d511a9d6ef83fe75b951509dca34d403d8019027f5", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b246397e3ad67864bb302ca662743f0d4ff688417f1ee2bfe4d92652d550dca3", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6c3975518be91a7777d63e481c9a5311dce452e82dc15cd533bcb8ddabd622ca", + "regex": "(?i)^https?\\:\\/\\/triolmncaskeaotansebasydaz\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dff574975a3ac3885ce322cccdf45a204e927101cd1b37e6f1db98bf0e9b8b5c", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "90cc35345f4686ab65b29cf3daca93a8aaa0f6619073838f19445b52dab4a1f9", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "01ecf84169c1a9d3f18e06e2cccc21e5e50c62ea5957b4551bbfe4352d6cf683", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdfs113\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6356c77bfd30ed5c04b5a750e3f32b5cefefc72cd9644d78f3bde965cc660f08", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "132335b3c632fb39af8adfd4907cbe4403888009609497cd04d5e5df386584af", + "regex": "(?i)^https?\\:\\/\\/dasdjgashdgahsdghqwe312\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2d76474b4adfbf92ff2b6527dd35f2d57ac186409e1d45558b8fd98bfaf34eb2", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0e7f6d04b39847aee019c9fb9a10c7b22a2408d0f39f2ed1561292279855e0db", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a2593c7ec74f830f21451db9b92a0060733e72e9030a4c2059345714ec921db0", + "regex": "(?i)^https?\\:\\/\\/m\\-864\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a79407505fe43aeb5184ccf0e763d4a6ca68dfa1892573dfd1c0ed45cde8273b", + "regex": "(?i)^https?\\:\\/\\/gjhfgjufiytiytgkhkghkghkjhkjhk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "609ae2bce04a3ebac4f603da8d40535805e0c8e33a1cb8a177080c5410a71b93", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdasdasdasqwe\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4defdc36a27f907786c135f71fa4b758f74222b537597e3d81c315eb325bd134", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaeuvwa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "13c89d4955250923b2818895878a9e7708d9d079aef4583134aaae62998af032", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ebe8ad72b80a5db7d329d3071a3a6b9910b76ddad3c07cab9524112781b1eb48", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1cdd5c38e7c957565895826a972576a11e9e7347865d9580ed34d1f5be1d8b67", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "11d1842ffa2bc5b39b18aff042dab21d8e38b1e9be85bdba49939d1d24d4d2fb", + "regex": "(?i)^https?\\:\\/\\/aaasdashdfasdhgasdas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b860d78c90eaa607181b26d4663a5f80857285679227a837778c0e49130fe47a", + "regex": "(?i)^https?\\:\\/\\/nmeocxnarcawxa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "40ebb6164764a2da86cb97abf7b9f82f4ad4bd7866809812527a81daa5f8840b", + "regex": "(?i)^https?\\:\\/\\/gjhfgjufiytiytgkhkghkghkjhkjhk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4eaf99486e8dd64cad6d17f32951f6006c21c84ca85bbb3db5e86f890d2fffd1", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ba2149b5f52b6f5d0856f3a7e537841b7f8c908902edf08da60f5a2ed65db578", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgdfgdrtre\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "05175385d0597f29f520898efa075aa58e4e37f4d54b630b33b9cc7a6171115b", + "regex": "(?i)^https?\\:\\/\\/hdfufytigytukghioytugkgghgh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "78afe0a547bfdbdeeee239495fe7aa7f44611d0173b5e19cea0f43c1946b2453", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0d7a32ec6aba390f73dd760b83bac74a26f840fa7daa477619fbab51a9279fdf", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a9a91e119fcf1bc7041ea12ac0aabbd3a3eed4237fb8cb36d2da8b712fbf53e9", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7110c9a135e892f4fceb2038370e76b1315a58d6eacd29423ed9285db1a55ddb", + "regex": "(?i)^https?\\:\\/\\/mkoemuxarva\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3d8117179a9e55c75ac7b11290dc3f8ebb80273c41227de9ce8355f05f12fde9", + "regex": "(?i)^https?\\:\\/\\/45646556\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d07e5e89c3ded0c3040fbbd9786248d01c60ff4e7054ee597104c5a67b6b78da", + "regex": "(?i)^https?\\:\\/\\/xvideohotx8\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "fc5ee01e3f22079140efd43a99103b8cc6b7d3db4547c447ef478fe4482a7e9d", + "regex": "(?i)^https?\\:\\/\\/momeixatgva\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "07b028ebde4ab0375e6093ecd3fb180f1a264a27e8ee331fcda030a92d3bef92", + "regex": "(?i)^https?\\:\\/\\/attacayyhhajajabsishshsusvsjsvsushs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b05d9638e8e9db279a0c0d05430a1af7c59c66ecbb996325658da73f07aee859", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d28f4073500c9bf23e9f26abade813136d598047654bf71b03c941f7f48e6f9f", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "bece00acf71e95d4ba6bef352378bb6aa25ba03ccd5358363f496295ee63239d", + "regex": "." + }, + { + "hash": "9a50b9ff4aa16ac3a0fe030747620a3dd10ac3de4f49d16fb49e4000368b1072", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8c231ff638fd64d06793ccc6206ebb2c72d8c4c70cfe1aa69a9411d07beebf9e", + "regex": "(?i)^https?\\:\\/\\/aasdashfdaghsdfgasda\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "134c33bd9a6b22c245a61a7ba16b198bdf6c9263b9fec8dd788db5519dcb2f01", + "regex": "." + }, + { + "hash": "e7c60cf56b0caa6fa51484178a87d82e6d985c84eb06f24d5bd7a32e22276de0", + "regex": "(?i)^https?\\:\\/\\/gjhfgjufiytiytgkhkghkghkjhkjhk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f4c9e42b5043635e42d87cbdf3fcd9063d15e5589b8268c63ffb69e6afb19a48", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "80baecc27083adb0096256e4bd62974e73357e9b4ae7bd2b8cffd82cb3a58145", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv9\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d5ba658c54f6dff9be0068e52fcee66866661d0ebd3b3ea9b0fd2212165ff30a", + "regex": "(?i)^https?\\:\\/\\/moenxuaeta\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ba6162aaf0045e427dc7267fa0de4ae4c0b228ad87de22601c7f155b87e17edb", + "regex": "." + }, + { + "hash": "52dcd4c3b9746c50abac281fd2b353d773407c5462242666e8a01b96e71205d5", + "regex": "." + }, + { + "hash": "2b4b6c98f83cb84df5c02b7c852d85dce60ac045117676417da70b5f1651ed20", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6a8367e9f9724b546831281112867e0b1e615b164021d56c2df03b9955483900", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7618d09efac6fb5b0cb85b6bf8eb7dbda0a75956b500b729cac0fabb1cf7e9ee", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "865ea454bc428894f8890fe7b5b089f3be8809088ef97ae5e104aacd578de86e", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b9d8021190ea2648c13fd8c6681f6ad819a28ed85ca335b934711c48e7cd8b42", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2a8d91ca6242fc367390ec1834ec272f599d6afa9cb9dbd5fc91c21d8b5051fa", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfbsdbsdnf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bc461893bf5d88cbaa7a63039c7a7c2ec0cee453d79f4cfde3db56799689a0d2", + "regex": "(?i)^https?\\:\\/\\/benoajseuiaega\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5c441c19b4f928529f0fb446308544cacd9622cd46d7ea366cf1ff1f05767968", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f72cd0e1f341f9788a2d0df53a363a8d8bb09c01225fbabf8e32f5c16ff1bc34", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9d8effe65f91482088be0675a10a6114c896c2c4bc5e2254446b1461403dd6f6", + "regex": "(?i)^https?\\:\\/\\/gjhfgjufiytiytgkhkghkghkjhkjhk\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a6bfadadc7ab6620fb4246cc5edfa2523b50aa7fd7bb11cee46a1707f3b97ab0", + "regex": "(?i)^https?\\:\\/\\/xvideohotx2\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e4be9cee697dc16ac5779e07e7eb1a6d8fe4808611dd8c308c9245653348c4f0", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "29158ef96560f5d1c1793551e080d2ceea3274ce697245f5b290ba67cb574aca", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "401c2cec6878852210bcb6fba6836789688cd8b5ded81fede7620804dcec0c38", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "845f17a72f7d496e5bb17221c67687c55b546859fe0b86b37405c58e0797eb99", + "regex": "(?i)^https?\\:\\/\\/nabaoecabresa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4046d14833ef25147621201693d85fe37497ea60b3d272fd12497ed6d01a09a0", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxxx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c1c40dc5e3e4e6db9e8de301d1be0ce308c9266de7b95a497461f6f8197fc070", + "regex": "(?i)^https?\\:\\/\\/fdjkghbkdfjgkjdf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a54c01b8e2e7436cea3edf06d48fc36664f65921f4db59dff5a90b7432c46a45", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "96e4bf4c2146b5e5738e136e545202a264e7548caee75b30e952f23505de6bc4", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3f16b8e9f5c195689d556c75f530951495d621dac87783d5743243915c65b5ec", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "03f60a5fa45c0a2ea45d9c79ea02508afe4dfe657ef20013d1a93dba2be0ab88", + "regex": "(?i)^https?\\:\\/\\/zdghdfxhdfghdfghf14\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d0403dcacbec58c4488bcc061c0b6edee828de3c435f3db82512600a201f5d9a", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "90def2d538c4c90577f1e2c1019360a1cc2f4428f49253111c6938d427e48d31", + "regex": "(?i)^https?\\:\\/\\/gfbjncvjknbcvb123455\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "71b8d4572893c22a12907acccf06669ffc32e748dd0e2da31116868cb45982f3", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c0e73795455eda69301f0662b25aefd993fc977dcb24b243f1f15adbadc2b64d", + "regex": "(?i)^https?\\:\\/\\/noemxaieaqa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a065ca5a42d83d243189b94bc9d5c59df7ef61eca12919a099191f59a8ba61ef", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3714a7874a24b0e70d549c459ef77251fb3225bbc12b6ea0ecd949a1239b2474", + "regex": "." + }, + { + "hash": "317faa01ca4f36e27d80d9bb877cc63419d55defa0035d86a1937165f1e4e2ee", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "943c0465feb60a0a0d12f333b8a4712abbf643e34c5cc5f61c35c4bdec5d5d4f", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8b2c4341aebc2db62856308d3e9ee42962b050f213ad179f0d2320ca7757ae38", + "regex": "(?i)^https?\\:\\/\\/koaemuawraewa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "658c8f9721e78084d8c4a1ec053dac7b00fd2cabb1856979a2794971571874a3", + "regex": "(?i)^https?\\:\\/\\/bomienxaeta\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ea28e48042535ae8ef439c551d027bdfcc83599ab8241ac3496666de5ea3da8f", + "regex": "(?i)^https?\\:\\/\\/dfhdgkdfjdfjdfjdfjdfjghdfj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b6058af9adca8218bb5c54ca0cb404dad316b4101e634af4f3c7f62056db03df", + "regex": "(?i)^https?\\:\\/\\/instagramverifiedbadge\\-1\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8878708ba5af172114a68e92f6dbc940d20c11440afc376bab09498263db248a", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "866f27587544829d7b66245cb71a5cb41cf4ba67136f325c7363dc15ed4e70f4", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "58c363612ae62a023cd930f5a1c246c1295f3ea404c1a2e0f73b92e4327fb944", + "regex": "(?i)^https?\\:\\/\\/dfbdsbfhsdbfhj124568\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "779a3e2ca1a926ec41ecfde56a46176520f3635fb58786131351df1fd981be07", + "regex": "(?i)^https?\\:\\/\\/dgfdfytutrurgfjfjghhgjh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cae5ed016da865e74553683129deeea01ba81f5fd271a3d506eb6274424d0ae5", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ac27033c3f83c5378f524964cf91df0c9ad5341dc7fe5d6f12cbffb91310b2a0", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgdfgfdg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "77a69582f280c6cf813d6e5805f8c0462871e75f6c371f344d65fcee0015cab2", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2a42c87304115d5a7cd8f4b56f467fde9e0d14eca1022ec9feff220491c068d3", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d928662ea790f1919335e97ddafb1463f50f2527c34d4e8c3a9f2e8fa76d8708", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e1a74392aff8f26fa4154b10dca2659d2e430db8884f257c39991799f7ff33ff", + "regex": "(?i)^https?\\:\\/\\/dgdfhytutrufrjgjfgufujutfgjgfjgf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "82c0bb6bc8a859347c8dab32a59e83de1653c0902172199a480fcb22c794153d", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0f01f78b19072010c278b9558b81551ed63e786525877671cdddaafe3a9e817d", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0a16567ad65eba09de43df687de5d42024a67af6dda4e059c5912be961c8bfa4", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "879d5350e9ac17ea705adb34c86c48fdb41c45c88e4ad2ff623b8aac75c7b016", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgfdg123\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "72af069af15b1c8e66033703f803d5b03167e0871c88bb4155ca3fa0a00ecf74", + "regex": "(?i)^https?\\:\\/\\/aaasdashdfasdhgasdas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "665ab24a70c752168dfe2d3c2f5f6f0e6c1f77cabb04d770a0e9b45e0f8df721", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e88c39f183c7b807ee91f6df6df5491442ed2fc1aae26d6ce0244cdcc32c07b5", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgfdg123\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6cf0ab45e78a684abda5d9b362b79cf57f47545dc74c63b41855bad8982166c7", + "regex": "(?i)^https?\\:\\/\\/hdvideofever\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2413611534f18a091020203a27a7a848bdf4950ca1c22a7a4451341758613d68", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d639dfe1e00a4b34416157dfbbf5df6dcc5c1ebbf3f7d52ade9b4aae8f4b7e8c", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "562874db23f9ce9cc6dfe559f67f406d231d1d36ddb67fe394412c0dd7ba9bc7", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "31e2b8682932876bfd7270296c6c10be37df45423e3b9bb916bfe976702ade47", + "regex": "(?i)^https?\\:\\/\\/bnomeuxaueta\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7f2eba0a0c6f07d6784cf3d5127620c600c4a0af461858c4b5f3e1c0c25696f1", + "regex": "(?i)^https?\\:\\/\\/hydfgufytiuigjgirtyigjghkhk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6132b552cadf64471226166ae86df685d1ca13b4fd665cb24c7b2045ccea0966", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdasdasdasqwe\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9d0c0f67a80505d36d7b262a02279ed128f0dc16cee2ef04b873e958980ab4bd", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a5a4b4138192548e172411158ef2d86b495e01325f3cedab7fd185513e87c41c", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "51e999f3ad8ef55adb555211d0c20f2138ba59be844cd9f22dd12b940001e1f6", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e901f46c921ca9baf1e9235b943a18e4744271630cc9aa68da1cde463475b534", + "regex": "(?i)^https?\\:\\/\\/nmoemcharvae\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9d96f70972cbcaa32357da323bcf8701f95cf2636faeea07b4954d26d25dae2b", + "regex": "(?i)^https?\\:\\/\\/fhhtfutrurtfujfgjuutjgjgfjgf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cbc0ca3e1faec19e37799bff0451248c7e36d8ede18ec22e1bd3c3013d252b62", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3d5a5de2c22c9db434937a148e30c72be5649511bc5abac91be5af5ceb8b5207", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9ccd130b86f04c1bd1a22f72da3529f01a287b3510106b2d045b8517cc080d3c", + "regex": "(?i)^https?\\:\\/\\/dfgdhguidhgidfgjdf1114\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "451a5db85efc41bffd818bfcd695130045460ca452ca48d649a8edca3afb1c46", + "regex": "(?i)^https?\\:\\/\\/nkeoxaaeycaxa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "daf110c7cdc0203f77f887464b1272deaaf85d9901c5b60459fe119c742297b6", + "regex": "(?i)^https?\\:\\/\\/dgfdfytutrurgfjfjghhgjh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fe05c27552013dd0019e78a6bccf1a5c86f16890e85f098b186e1946c669424f", + "regex": "(?i)^https?\\:\\/\\/attacayyhhajajabsishshsusvsjsvsushs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "91571e259b8a7e558d78d6675611c3d01df9962af4b05bf29155bb1e8af52fd6", + "regex": "(?i)^https?\\:\\/\\/vidtrendsv1\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8e3f0673d018ce3daf1ba3733e47d6b502eb6956bdacf85b8347a7ad79ad8e18", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3bb80d77fafa59b71f72136047e9b4ffadf155d53dc6017a4b5f2d473f027b1c", + "regex": "(?i)^https?\\:\\/\\/xvideohotz2\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c958c5532a990c37b738fbde883f5add8bf3812a81260e410d63343fd3202a47", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "641bbaf9ef631a5c57042550dbe84155176ec3c6c25365983f1bfbc8552272e2", + "regex": "(?i)^https?\\:\\/\\/aaasghdfagshdfasghfdas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c52a13dab9d593f6a44b2f69458ce58cf202da4c345adc0db563ad1d7c4f87bc", + "regex": "(?i)^https?\\:\\/\\/meoijnuaegar\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b036ac4d3879a4f9a489e35ca4c7caf1bad2acd58910c1a5af8ca1718b645", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b5c89d7d6dd18696f69a1d1d2c53fbda244e7e228dfd9e187e8a27d234352d43", + "regex": "(?i)^https?\\:\\/\\/aaasdasd4as5dasdhfasdh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4eefb7ebe9a48d03418e335574d063b73ede1560c5b29a94119fcb04d3e19fb0", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "332f3977ff33734d8eb3f8ca1edac5941f504db5a69df56f28d2e6594902e812", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ce90650844faf7c2ee25995d75df7b6aa039efba8fca3e4d8f201a89240bebe3", + "regex": "(?i)^https?\\:\\/\\/moemxarva\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7bf61fe756ba39cc10d13d3c2167f09b32f69bc1fe4a2d4445e65a3f035a712b", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6a723447650603ff062f1542020bc6960accd64a09a2010c1bf5ea7e7f8ebe41", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8af89af76d867ffc983e0bb7ae2c1e3fd799356c4abfca64ea81c83294e276f2", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c602780c9c3a09898a809945c3646d3f158b65516a182825b741916d07948d31", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "35859be7cedf56fdbecd8307b4f7bcd160a777af3e54193e2ced7c8d4b0af024", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a2d611a1e0007263907e51d66dcc138bfcffdb9a83d6baf10b3b87e21baa4a0", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "18aa46543922fd570dd4ebe2bc398d2a90538886b432d591b76eba7943b39733", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0da49bbb561fac9a4de018880a55d50f3e5e1965c4609e2302718541fa893d94", + "regex": "(?i)^https?\\:\\/\\/nkeoxaaeycaxa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ecefe663458a6c65c6551ce1c670741f2e9d57f45e626bf89595c523ee1f3cd9", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "de117473f93c7e4322a24e5700524013fc36ad0a65e9a1c550cbf5932e9be036", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1d97b1a80ac650f1e9967d7701d1773b8e74b58ac28ed6ce87c5a86f12248a89", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0d7914b455ffe6159b50970367b7d6496110d14758925cacd3dfd55731a70b41", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ce3a91c39f215a88b47215eaf4df52ac5e658af5ab85ed2f82ab434146d03a32", + "regex": "(?i)^https?\\:\\/\\/xvideohotx8\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "76b21e7e6c2c60a1c0af1af4e8d1ec75e328374a725f9baf63e34b23669d8ca0", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "778632ce3057b4e409ef6c4f96382aaa4414324425490f016639f73118dbba9e", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7b89073020e94f1a284ccd2bc5f39139b70b8cb43b50ea4be06f63ef1e40064e", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7c39de117c9b278822a589ae787249b1c152655da3d07fbb8daf2a22d7442c82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d61a9deba792afff280b2bd0ecf2305cf94513f18327f962b87974aeeaf8fceb", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f17d26b2a29a97de9de0456380c7dd6cd1134b6ad148475e54d56c7db5bf0e92", + "regex": "." + }, + { + "hash": "a56cce1bb0315b605b2fda4ac1ebdba1bb5b2f0b437f7908927789b4b8e88cf2", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "99ceb36f75e8d76f2aca364b97448081b5b64e8eba04a42e3d50f926fea815eb", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "76cc626fbadce691bd3e02f116e252c2da18409400fc1ddbf3e5c34c3d99852b", + "regex": "(?i)^https?\\:\\/\\/fdgfdgfdgdfgdfg111cv\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b354cabd19f05fdda6e0cd0ff585b2ebcf3264ac15c777c0dd0e8ec077e6756c", + "regex": "(?i)^https?\\:\\/\\/gimenezrangelfranklin\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "a76215cb6a64b35acf633da81f4f26746f7679ed559bb4417f9037aa43234101", + "regex": "(?i)^https?\\:\\/\\/meoincuehavca\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "59738cdf2c9e05f6fe676915cc23c6383ecdf8659342e4e4da26c6fa51d6eed6", + "regex": "." + }, + { + "hash": "416f7f2b4d34e7e1634c91ef2efd56331708e072541d74af981ecbb95f33568e", + "regex": "(?i)^https?\\:\\/\\/dfgkjdfbgkdfngdf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6010c09435660a8ff1121f6fa0cf3bdb181fa877afc74fe6ae7a5e22fce9241b", + "regex": "(?i)^https?\\:\\/\\/fdjkghbkdfjgkjdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6634fc8dba0da8a6d48e2adb1b57daf2c79d7ea5fc2af6d95adb195bdcdded27", + "regex": "(?i)^https?\\:\\/\\/triolmncaskeaotansebasydaz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "96c403ad459c0a8f5591d04d1321f814f546e68911491dda81b2bc79ce4e9f06", + "regex": "(?i)^https?\\:\\/\\/01priyanshuraj\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8d9f24fe9f7ff0bbe426316337a20e1e0ed896783e6b0f3e3dc3508245122a1a", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "a4192a93ce875528cc9820bc6e8370c5b9c78e9576cf17c2d5b746f0fde4643b", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bd308b1cd6cecded58adb154e0ff2df41c9d1c562c98685cd634a48b5c9a887d", + "regex": "(?i)^https?\\:\\/\\/nmoemxharcae\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b7df5250f7d034840b89828110f23efbbb011ed9fceeac512d6cd521a6b25341", + "regex": "(?i)^https?\\:\\/\\/4659889321\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d420ba91f7ae8b27b70e8270cf455c8cea560f37da86f9385f3c6b5cbf023760", + "regex": "(?i)^https?\\:\\/\\/aaasdasd4as5dasdhfasdh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "520eadc68d1ab7ccb52ac9ce1fa1937fc68b6ff0a2cb75d2ffa45e0491f721d4", + "regex": "(?i)^https?\\:\\/\\/aaasdasd4as5dasdhfasdh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "581e3545aa7a45fca06c50a062bf02b708a058598e6d39320bb9d5f55cad3d1f", + "regex": "(?i)^https?\\:\\/\\/sdgyderyertuyfghfjdfdhhfgfgh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "762fce032f9efae585aee746d8d286633bddfcabfcada8566060d1e19f1eb20e", + "regex": "(?i)^https?\\:\\/\\/aaasghdfagshdfasghfdas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0fcd46f2619ce683517c80829bb91830e6353261fa2b9f3d326e8af842a8e5c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ffe208bd26a7f7000205ccd0f41f9e38e32d8d0eaa14c1306e6f8f3e949d5f36", + "regex": "." + }, + { + "hash": "94a9156197c6ec882d974d0ed7b91c3c1d29221309bc10d7c898defec6660f59", + "regex": "." + }, + { + "hash": "128281620ed99cadc363e93968c208c38859177ece3fa281896082ef9cd0f398", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "911f19cf5388d2efdfe3046bba1662f7dafd026a75c19067cea2ed0a4fac5e91", + "regex": "(?i)^https?\\:\\/\\/xvideohotx2\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "57baaf6046b9570812165ddd704f97df8ea57470cfb96c7cf9ae5fb7d1cba7cb", + "regex": "(?i)^https?\\:\\/\\/gjhfgjufiytiytgkhkghkghkjhkjhk\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b633d87cf6124eb80259f8c13edf2902847d110a4cb373a87a672fa7b7ac5559", + "regex": "(?i)^https?\\:\\/\\/nmoemcharvae\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "bec9f0be6d9c20ed65906690bd412ba1dd8569ba840bce05cd7a884f907e159e", + "regex": "(?i)^https?\\:\\/\\/dgdfhytutrufrjgjfgufujutfgjgfjgf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "319e4c193f3220a5763318d7fe132bb046535c547315d55cad1dd1d52022a1c3", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9884a3f3d511415559ef62471a0619c892d50081e90d2ec5307d04013a91fae2", + "regex": "." + }, + { + "hash": "13a7510cd4717ded6c7c4c59709afacc6a89b36317e567233a0d0ac6dfc8947a", + "regex": "." + }, + { + "hash": "ed3f6aa7e513e09a834a629e506af17107990e9acac622a981173f657e4c1b1d", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b58f22146af33878389248b1a55d394e86ef4af108965bc3dd8293cd63fc508a", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "aede9d6872bbf3b47363b718516605bc80c7d247ed638df496c168ee1dd24aa9", + "regex": "." + }, + { + "hash": "12a6d2e1d7ad8df6837a36c24367e1980050774128842297ce4181546a3a8d03", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7c637f1dccfd8e5542f47a7c1cba7eca89cffedea67823b1b3b64fd565baaebe", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "87e1f91f73c75a788d8a759bb9c67df271f70cf0f3a2ba11df8c544c859ec29a", + "regex": "(?i)^https?\\:\\/\\/aasdashfdaghsdfgasda\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c8314311704cac2d3bd9cfd41118207edf8a11b2c8ceb0bef8e7ceb56fdacc80", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdgfasdgasf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ec142a1bbd88787e9300a7f60e0c1a90062549919cd86c0b5e31afbf795ac08c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Z2Vz7OPkLq5w(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "70e837b53b4c9aa3685da04e722768dd9a319224f369b9fd7a2ac8bcd75341a0", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0fd0c84e4608ff70eeaaf36617f7c218fd738c20f3e5e6dfda79892bddb261f6", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c4e439462d668c159fa707af2b9f10bfe0c713419e0126205496c8c634dcee97", + "regex": "(?i)^https?\\:\\/\\/dfhgdfghidfjgnh111223\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "509a10dc30cddc4fa6110de81a34524549e4aaa035999bfe8d97d4479484aa5c", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8937f697329a4744801a739ff534bcc213118f911012c47bac8258f78456214c", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "16e7074d14d37c1df15490dc02f49653b476e2829a74c7cde74b9d71cb55b6e1", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7b739801f1e402de0bc67e4493a9b6ac7ae3fe92b62e8255915240437520d2e0", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9206911095b02e202a57f4b8f53b743552a73bfd55373f7512001462fc13e8bb", + "regex": "(?i)^https?\\:\\/\\/nkeoxaaeycaxa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8c01a9eab08a13f4d9461411e7e469b6c4b93741d0c5f8a64cdc5c8f90c431d3", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fb9d7e9f744f07453f94d95d245944ae688ac416512e91c299bf2d4b25118b40", + "regex": "(?i)^https?\\:\\/\\/6549784162\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3c8fe1f7f67d4908138c65ffd28f48c0bc91aaae424b95dea7d947d0c592f45e", + "regex": "(?i)^https?\\:\\/\\/moemkhecuar\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c668d03495278a8b57622014529fa5c4e010d3353623c69f6419216ef43180d4", + "regex": "(?i)^https?\\:\\/\\/mkeoxnajefqwea\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bc9e4db2869fd0f13e730cb67db0974c50bc8840a356b22b4663e12e8c3642f7", + "regex": "(?i)^https?\\:\\/\\/dfgkjdfbgkdfngdf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "16e86b4c492e44e8216a46cc64f6d14c5316e0445383d69e8af92258ac447579", + "regex": "." + }, + { + "hash": "58e3644151a5f33dc9972814bfd935dc70da7262a3d25541481e6b038c7e3fa6", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8f8cd4501d02845fda585512a851406dd6b2e4feaa812b6987c58b5e0bb1e564", + "regex": "(?i)^https?\\:\\/\\/gimenezrangelfranklin\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5f890a7485aec94a3abc727ce11586d636f96221e9e4364381485843d11dd6c5", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e76dd2ffff4f9fe40c17e7d5bc06a9ce1aae9407334312a523c57020930f0ea4", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f118d24fd69308ce69c029da836631f36b640752fd35285bc83bd579049c9", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "58e49849ef20192ae8fa978e745c7b17e359e1f36ab25f92e12ad28621e96910", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "54f615c7a4a64f6d382cbe2a148128d2ba6f2be312c2a6df4a1735775c91a474", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bb9f3354b7a4e4a46159847c2817f76fbb8a7385c59cb4834872f6eb6eb88619", + "regex": "." + }, + { + "hash": "4a2d45caa4ce04b2f4680543fd41ae0c014b4a378cf26f0cd6613c6fa6f9fc96", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "961db3ff410ffa0796462e943233d8943ab77f165f506dd1098f5d3753732050", + "regex": "(?i)^https?\\:\\/\\/kjsdkfjsdk\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d29afcb97b004ea4833ad4bba577a101159f6e225afc7bb27caa10e5d5a635cd", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjfjfgjfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7763c315253da705404d92346983524169bce2f1078456869e959e5621780372", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "78aba03f91be1d799312798b02b1245bd0052919ae7e6553e204cfe28d491ca9", + "regex": "(?i)^https?\\:\\/\\/bnomeuxaueta\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "05fa06f86b0fb3c260c2033cdc6bfc11169efdb23e5c86ec144c6425819afcde", + "regex": "(?i)^https?\\:\\/\\/zdghdfxhdfghdfghf14\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d1fa422d31a050e8e3a85a77033b4b454fc30cc6b8dd27663675aa77690167b8", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "aea83f8be2bcc000317f0c717df987b5ce5e197cbf88fb58eb81048bd8b4d560", + "regex": "(?i)^https?\\:\\/\\/moekxanrecaraw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9d40debdcbdaa4b2ce46a527e631ac8aee428a02be3683939c09096b4fc5c908", + "regex": "(?i)^https?\\:\\/\\/hdgfyhytruyufjfgjgfjfgjjrtffgjfjgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e96736a9cb8be49f997e7990b8a1528be1797dae6ea53481a3de77479b8314bf", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a12ef3696117f9ad0b309a9baedc9c8cbbee493291a80fc9be65eda3f3558b28", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "34ba7698ceb0463f67851aaa8a8804c01a79653e3d1ca859de97a5f1a0c31700", + "regex": "(?i)^https?\\:\\/\\/fdghjdfhgjdfnhg11\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "558d4b5ee073bf25319b52a04d1b8f0aabb50aa285cdb3c74fc4ec1bcb8ee25e", + "regex": "(?i)^https?\\:\\/\\/vidtrendsv1\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "be38f1b99adfaa2581aac109b2908ee244c06a9ff340fb981ad9840b5920145c", + "regex": "(?i)^https?\\:\\/\\/mkeoxnajefqwea\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e56f602e897d5be57d029e212587ee05d6ce155cc495598dd2d264187d35d99c", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d6314387bd9e1eb1511f49f8d358522f6bc47ea12e133f9ba4423c442f0de22e", + "regex": "(?i)^https?\\:\\/\\/lkmsdgkmg4\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2b0f64339f486ebe9b00e20ab29655a15a29ae20969e8f4a1279593b9e39b357", + "regex": "(?i)^https?\\:\\/\\/mkoemuxarva\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "01d6429a287800e8d0ec78714d5e9e390523c24210cb06184e2bb4ca1d11985e", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfgdfhgfhgfvcgfh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7db2d0d7d00d1414750d410b4894c90d60e1a0d3207060c8c760c2a7210fcc1d", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2a72f850f16bc57d47b44324853550930d56824f11733c5bdff2d7c13e956b1f", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b2c52f7382198231b6b29d26023b7cbb2310b737315596ff295ea0b1f2dee4ee", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c96ba183b2ff4b5a6d01e2b62a7f27a852bbbd669c7d048f3aec9bdf5cb9e437", + "regex": "(?i)^https?\\:\\/\\/hdfjfdjgnfdjngjdfng\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6a484ea2bb838b77d1b098cb4993957dada907e6c7bab1c0732b3d6279286f25", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "baf5601c027633f1c48d27176d088388d68eade40fe2a7c5b9b5e5cba564ebbb", + "regex": "(?i)^https?\\:\\/\\/52465789458\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1982d13d26ffd25cd0fe0ff70d449b2341743670c0edf9eb9782003bb1b06985", + "regex": "(?i)^https?\\:\\/\\/benoajseuiaega\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1b7b745ee765a7ed1536751b05ff28a74846bcddfc1f5da41760c99b36ab4957", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+extracted_files" + }, + { + "hash": "dfc7d2daad71814d7eef8873ae417713c564d3691fa8f8a134e9de902d90ce80", + "regex": "(?i)^https?\\:\\/\\/attacayyhhajajabsishshsusvsjsvsushs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "13878cfe1ab681ee523422c57c14f1151ae2cca6cfff704e96087de888de609a", + "regex": "(?i)^https?\\:\\/\\/noemxaieaqa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5cd0b2eba1590eed5d4bda600b8d64a28bc064bee3e56b8c27faff32a3fe1c49", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "145915ca23f6cf77505e8f23ae6a4b5743aa20c7bb1721772c309536feb5e354", + "regex": "(?i)^https?\\:\\/\\/zdghdfxhdfghdfghf14\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f67bcdabaa9292c9226cb0516239d1be02cefddc129eb25eeb7e6620ecaef660", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7cb9a719b36e3f43853d76901b55ea3d1773b3585d4b5341526205818ac0d234", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eebb0a0a35e16fdaf1e4d760e483e39b8059bec7e5277a268aa2e6a8ab35e141", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d3ca8526702dc4bc131e8f717d46b9e7fc2d5f8312cfa5d6c7b205015a078ef2", + "regex": "." + }, + { + "hash": "29305527fe59ef42259dd03e820714dded74425840de094b179bb977e623d906", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "9a2d82b9188be83c00f57e359d412ec505081838e7ad79a86c0fd38a6d0dbe1f", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "83158a6e3a3d7e9bc94e0c874364917473c76dcae489c927e94aabd4555c9c1c", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b02456c126c7c1655f6c7226bb9e8cdb2cd09c1bd7628e99200fbf422e814fe9", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9a8972a751f71338f1b1ea3c7f18ccf6d6a081468b4bededf9c926d5e6fecacd", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4893bfb75fe06e0d9eced4756876e36afc92535f69b77c6e752d6e3259493602", + "regex": "(?i)^https?\\:\\/\\/uidfhgiudfhgiud1556665\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "341c911461c51363994f3660fa028113f38d9de8c76eb5642e462a5c14d41b03", + "regex": "." + }, + { + "hash": "a31ea3c0d6284a18ab2c54abfb5c8e0f8ba25e92f1cd23a14f7e5e4d065811ac", + "regex": "(?i)^https?\\:\\/\\/nmoemxuarvaea\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8c8db7574046645848f9f1b91ae016f95422a4464aa1e70c00e32e9cbb1a2308", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e8cc77fa9b814b7ddfcfc088e598660ca43878dbc741f0c2b984fce5512f958f", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarecarae\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "736316786e9acd63770029c24e959aa97ede6426260b28085b9385fb6e1ad977", + "regex": "(?i)^https?\\:\\/\\/nmoemxharcae\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a43cdbf896a971cd58cc9da1fe7ad19c0a75961f1f9013129de11c6b0ddcdd67", + "regex": "." + }, + { + "hash": "4af4db16a239813c1993d3e8a5c705f6bde7abf5daa32eeb18431c6fb5a5b847", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "94b642ecddae135b90020c408c3f661c7d570e2a53011367a0697d18d42f1aa1", + "regex": "(?i)^https?\\:\\/\\/iuhkjhnksdbnjfh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b69b256e786603d004f46cfa29eecad68e4adee3e1333b66b595b007610f14ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "448b1f4081e76e2524fcfc171438198b0def93dbef6d11ccadfbaebf4e315026", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d0cb6b7bf3d3590a9ccbbb355f85998616287578f3b7d99df0b2f9f6faff816f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyklasckascmasme\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3928f3b40ead5f9a6246f65f7fd1a34f8c5ff2d4821267909cfcc43657e7d116", + "regex": "(?i)^https?\\:\\/\\/khjkasdgashjdgasjhdfsa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2f65106ef391af24b679c4ebf740a43b182e04f0383a91a8ec729e256706ba1f", + "regex": "(?i)^https?\\:\\/\\/sdgdfyhtutrujujurtufgjjj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7487c8d1f00c7e7ae3c9414d3a390acd1a3fdd5c98088e24431190fdbc29687b", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "44a9abe8d90d9239b44a0efc5a22a2f6554bc017c9f548a03a0adc169b88a434", + "regex": "(?i)^https?\\:\\/\\/moejemnavwara\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8646d23ae62658567d78cc760b3af49450afa9c0ca51f42c8ec25d18d265c41a", + "regex": "(?i)^https?\\:\\/\\/bnomeuxaueta\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "71b6aa822fa378fb9d120819fe61cf9fefe30bd629a2fc5c07bd99816546a56d", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a244fd12bebcf2ca18b51f46a8aeccae0dc8bb5a47a5e47a5e9eeb82d3695965", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "650f7d40bf1164c3ec1a4bb41b30f9a7f145c8a149993a8e920243f93f42b7d8", + "regex": "(?i)^https?\\:\\/\\/sdferturtyifjjuufghjfghjfjufj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "01a259fdaf38949c11393d012a67ec47bbe6c4ddb74124dc90375cb0ca5fed6b", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3adfd44b77cb4624f892d94b389875e9a0215bde8a23b6cbfdf140f72447ffe3", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "53097e03213455b462ea02c9e71e60f4c5151739e462d80fbbffdb5761b0e53d", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "db3ff140e4596065fc8994bfd71d7f189e9d61e9463eefc5b892fc9de337aab2", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "052d4ac3a86153ca424ce48d5c7c7378b9c540faafc1c6d7d0451f854998c0ff", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f06f8f6469069258cb816e5f191802b674ddf9e06554e6ee12fc4ce5be852c17", + "regex": "(?i)^https?\\:\\/\\/lkmsdgkmg4\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7cf2fd29e792b2a2f7b574b89ba20bcb1d371e91fd0ac0d6659231a7db7d3187", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ea8c298f34d1b2ba1a3b57b46e11932b04c6a2cbcdd515316638de9d3acf4c9e", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c7eaed8281bf89921614c39172b7597e8a8ed15c70f51f81811e140b4a2ddc21", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a4ba7935c97b548e8ce77200a65fce49383b0cdf2baee76880f02be59bfb2aea", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7b4d59ce804906ae6d87f7346b90edc30ee5dbf809bec3a125c68d1e206c0634", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "361813b4242813856b02ff67586a52abd8089ca09e723453a7391d1d319aabba", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "77c4e49cc6b1f912a845ea35d2a7092a37f4f25645dacbc8f3abc354338f67da", + "regex": "(?i)^https?\\:\\/\\/bneixaetcaeaew\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d6fba4efd82a71a90170e1be0fb2a8832c2ffbf0d1d08928092be4662645be4e", + "regex": "(?i)^https?\\:\\/\\/bomienxaeta\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e96c69b820f1e47c8e7f87e54c647e3702f955f707987e6e9da5ba252288a455", + "regex": "." + }, + { + "hash": "bec4a995c26f4d8d195a7b6cd1d65d9c12c5d562a351f522f698e363dadf6ed9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jj1000\\.html(?:\\?|$)" + }, + { + "hash": "ef88f5e71ea600aa168438ab26dfc0290dee9cbc327da790543c77ec64ff459f", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8fcf1226479c568356df7bb5e36db4fbb9b350769a948445d1d2d4d030f0b5c9", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3c0a95d065c5eb116c7a04d78da2221e9e4181494dbbbb322fb0bb49edaf3d3c", + "regex": "(?i)^https?\\:\\/\\/moemxaheta\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2cc5cb10eee87feb0544d10c6c4a23e381cba68c88eb265b08ca74f203ecb7c9", + "regex": "(?i)^https?\\:\\/\\/moemkhecuar\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "332b6ad4ec301d354569e9c8937a3cc88119d502881105832439fc13d24f4b21", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "b82f8986484a4dbc83e23525fc82bb4b2b08e21046cf3726d24852726f0bfffa", + "regex": "(?i)^https?\\:\\/\\/dfgdhguidhgidfgjdf1114\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3f64c9eb8ed4be470287a55777335d67f1aeb1b56843275c7c01e4c57123795b", + "regex": "." + }, + { + "hash": "fb8e9750ab8cf028f44bcc7e2433c773425f2169aed068b836a6fcef70087a01", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjfjfgjfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5292108dc689384766172dd2e21ab4f2bf14997f9d36d46cde2f40bdc599c75f", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fd1c3cb7655f206d415d8b23c2ecb5c4fbec81d96a6b67c4cbd80c2e4400c411", + "regex": "(?i)^https?\\:\\/\\/bsdjbfhgdjgf142552\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "485a2f77ccbb715fd75633ec3aa680c45cbe022399ca7478391d025a9ceb30df", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ee5c05abfae150db560356f53e3e035ae31ce046191240f8739767be6e25b627", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fd03dc8578c69ce679a8006a4c0ddd6d6b5a5b41e91c5981b9c82cdcc7679f4e", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfjsdhfgjsdhf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "67a41524cdfd78df8f482608f44c3e71ad756af95dac29528373a2ef595d6efc", + "regex": "(?i)^https?\\:\\/\\/sdferturtyifjjuufghjfghjfjufj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "cf4990e021f2f4c2625bfa239a1c729d7bf4a7943bd869840c965febf0dbe2f9", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "91fcf87e6b032629a24dde93b3f06fe6dc0824f363ceef35e721e055c7a4c9bf", + "regex": "(?i)^https?\\:\\/\\/bomienxaeta\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ec76ef0515d19947044f48f2dc4d75856637d816ccb554765c3287806102c905", + "regex": "(?i)^https?\\:\\/\\/triolmncaskeaotansebasydaz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3ece9730228ee25503dcd333dd0fa613a30891f470e38396043e144b2454c3db", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "19730b3c542aff0c946216e576411bce935429d9b211947d421bf035d50cd43e", + "regex": "(?i)^https?\\:\\/\\/hdfjfdjgnfdjngjdfng\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "461c9105cfdc15f352fa78014cbcb25a1fe3c73d361c5f41d5daf508aca077d3", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c2433a818da16ac9f2d411de635ba82b8f385306841b5e00d35b9b9445803835", + "regex": "(?i)^https?\\:\\/\\/dfgdfgndfklgmndlfk11\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "36c3e4d8bc613e616c7e03a831dfa0150108b8d3daab0570f66bcb20af6782f7", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7723908de54fa5aeb17484b175d1d2b8a7fd52a9e4e413bd4bb9ce2bf96f119d", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "59bd1c9f118f9e486c65e6a70b7e3d600698bfe8b05a122ceac33d28f57e9ca7", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1bd30ac0db0775ec7d8d93eb8f6cb637ea88be26c24ceffee437404de85c45e2", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c6053ad76afa8fd6e1efb7df584a2f5d4849d2427f7cb14c873e1dc138b80ada", + "regex": "(?i)^https?\\:\\/\\/fdbgjkdfgjkdfng11447\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "17505be099437854180fc0e515f30af1bb51e6e4b6d5f57994db1427287dcd33", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "95c816fe53984b3c1d07c0486968833907dac543ccfa985983ec12d968070346", + "regex": "(?i)^https?\\:\\/\\/2145474658132\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5190894911f2c85ed6a5fc499e8371ba216e9a1e043925bf8805cdf46c4e4233", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckamse\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e4bb01b916ff172b6d514fa04bdbe623da7d4b4f78fd204d3128fd2a4b1ca932", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "abda6b561b66d4f2a73c1bc7da62a91e727ab83a457270fc129ad8c519c01355", + "regex": "(?i)^https?\\:\\/\\/gimenezrangelfranklin\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c3c353de6ee50ee2958cf9453d43114aee459ca3154e8e081ea51fded738e75f", + "regex": "(?i)^https?\\:\\/\\/aasdasdhgfdjghd12\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "17ccbad484fdc8956efbd76bebc7ad5df193670d143e6c791c7125841ea5884d", + "regex": "(?i)^https?\\:\\/\\/iuhkjhnksdbnjfh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "46a75ccd3d28ca19124a2ffb46a7461c6170945d2e6a0c03cfdf30d02c7beb6e", + "regex": "(?i)^https?\\:\\/\\/fdgfdgfdgdfgdfg111cv\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d36949e7b19d789d2ea18a593787154546629a099d33d5d2a833fdf981507008", + "regex": "." + }, + { + "hash": "26b48afc53c93a85bc183e9b52e6bafd23fdb6e17cec5e05402151f4b66aa19c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "606b626f64de1c355f4579423ede7be9fd21109a9d96206eaf5a3f951c837d01", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3b9aa4f6b4094c98d43a4790edf1e19dedf95658ed22a60f80f3cb9e280f135c", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6a3007f553aad6ee33d4b3f8cf501fe6aa52b892e31aaafc85519fc368565f70", + "regex": "(?i)^https?\\:\\/\\/noemxaieaqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ab7127b3acdf9efdaff2ce7cfc07182df52876947fc6cbf281cd2790964f2876", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdzxc16\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2d1c110e6f432fba27fbf6e5e707cb826bd7755b42f6c6b6a04434b31a80ae93", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarecarae\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "edb3e093510be93ba5c135b813e7d2c9600bc2e8da25a058f5e569ef2fca89ab", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1b4696f9a9515ccd814f9821f60b5c43f6742e374b3af93f554cce798aa6377c", + "regex": "(?i)^https?\\:\\/\\/748977455648978\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "01e459020d93c2ac44806c39e60989f4755929c5aaa7747ebc6e3f24cc3e6492", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c83dca5f70cd90c67da2f5f9ac5e974f57944cf618d3a314d8be0a932c7443b6", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cad760be4e1a0c16d393bc93f2f6ce620fbc159d4340ce3411ce65d281d45374", + "regex": "(?i)^https?\\:\\/\\/nabaoecabresa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cab6f0998eb05842ef2c4c150354c67c2653751f0929f1248454b0a5cff8f2cf", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5759808240fe63d5c17fd767c695178ddd06518748ce188a6bdaeeaa1f1a608d", + "regex": "(?i)^https?\\:\\/\\/lkmsdgkmg4\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "593dcd566bbc26fdd2273a820a8b1354361c586db6f37e833664fb7e382fd36f", + "regex": "(?i)^https?\\:\\/\\/mkeoxnajefqwea\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3832f4d7da93a5bcf87cc3bb2a323b0f2296e740a0c7cda6e0e32831e502b0c7", + "regex": "(?i)^https?\\:\\/\\/hshgsdbffbb14566\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "eb92f8d135271f16f3c683763a2ad62a039584b2b4c1336b7908a68e93d4a7da", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b5336f3213f0b6806828c2c992c4ea7e267aa1b44be62ed965d6c27f1e5637d", + "regex": "(?i)^https?\\:\\/\\/kjkghhfgahjdfasghd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d83e856672b35d36c9de1ff7d136efa72206ca47de844ff15ee5d60d80c46909", + "regex": "(?i)^https?\\:\\/\\/xvideohotz2\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "833304ef5207a3ff27385857b5a8201a0e024e8b91741588a34db2ee82918950", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfdfg33\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b06dd46b97a728f656d481e540e083c293d80d6786c6a4b88d48a299f30d0e79", + "regex": "(?i)^https?\\:\\/\\/hshgsdbffbb14566\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a45d6564b810ba6b4be3e4ed43e2ff2f8e5ca7abb77232bfe92e87dfbc316760", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0367be1222c9c68750ade4fbdfa88367425d665f1bd049e0c729cf86ff17b0c1", + "regex": "(?i)^https?\\:\\/\\/moekmxuar\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "52dda388bd3317df36db695b7a4b9d720f249bc7e7e293f991f933eef2b0de07", + "regex": "(?i)^https?\\:\\/\\/dfhgdfdfbgfdfhgghxx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2bfc6d066905fbceb9c504546548b1b48ba7ad5ca876f782e33dd49cfb563c12", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5784a471924065ac37bf9651220deb95542be7f670b90ae383716b638024bb2e", + "regex": "(?i)^https?\\:\\/\\/bhfsdbfhds145258\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "df88a94378f358cd9134b57384e6cd036d4e02c81364a94881796101d1332f15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bdd5294d442551aa417d15442127531a2c6dcccae88f9b4cbebe8f75b156c16d", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "097728f8a7a305fdb456b91bee18c119f8f1f35f4342734347fd4662f11ed35f", + "regex": "(?i)^https?\\:\\/\\/mkoenxexaa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "438dd0be2ad200e227a55fad5f40e48c13d522f374d4a3db61be3d6e950da2f1", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ca284b14f648264cf19e39c6abf1e84db42d7f0f2923503f2fc4490f5e98064c", + "regex": "(?i)^https?\\:\\/\\/bsdjbfhgdjgf142552\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "824ca454d660f5c94ab12f4ee1e86e0f454e9fc18ad89ecd484b6f47ed4ca825", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f08d83fa3d7cf30aace3e2b50e65ea1063c8c351ab371f58a10a5b06ba32ff1a", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "67b4d51eec7670fe9f28f3d9833fb98b72f2489923aca0dd1572cfc3f60c2186", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6deaa889779af94b78443f1728366bf31c8ddd418f0176eb619b9e9de99406fe", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1a49923fef2f54a2550c9888710c1efbf499d6c834a9ec89f550101be2b2748d", + "regex": "(?i)^https?\\:\\/\\/momeixatgva\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "01d55d036e2b74a50052081f79cdc47a61a16343c73090b3c43b94cb9e3eb71f", + "regex": "(?i)^https?\\:\\/\\/dfgdfgndfklgmndlfk11\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "06defa581563b1651023bccd8b2b004f4b11826fd8c4b20379132d6914bcb647", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2f20c5d02826bca3af85e869a28d3a44088eefacf3780c6ea527228b5437dad0", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d75a710acbd6a901149fadb654cfd172613c7f1919ccb13f3bd9a36d5c744707", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0d5b1fea9d0eda053a566417b86d78f0bd33207cd55cca3fa6dc59340d891264", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b3a5dd802b929f7e9271ed20eb8fb5d44f876844b40475a79cba1971dd2a245c", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "93e152c4820ffc7f046a856cc74d495ebe9558f6dde9f2ec70eced6b3794b072", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ca2169a8bac2184257011b6c430af1c7adb8c405cf342b43c10a0298d5445b3f", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "573fb3c6e8bfa4c0bf12d8953d7f37354e176d41ac143a9efc0086d68b83fdc7", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a696f80693f9cf9da23f8e1c7587cd99f9236ede95251a30b8a155124a609", + "regex": "(?i)^https?\\:\\/\\/mkoenxaiexae\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "51be7c091986d1fa19c2b12ef6059a2a90ab6b650458f20fb961ad24a0add00c", + "regex": "(?i)^https?\\:\\/\\/moekmxuar\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d68a71e59595b0ed545220a47cbce9ebeccf8e48400051af560fd47a19271", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "892af791b8d782e4366b8655a86c0c659f283ea4024e99bfa7c766d67de6ef2d", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d83454c9d59c2298f89678862147c218fad6fa88cc0da058c9300a731f228ba6", + "regex": "(?i)^https?\\:\\/\\/fdghjdfhgjdfnhg11\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "05b4dadea135ba1cda4ec182d3e6acec54ccd9e22d5ed3a6b8c6ae1e8aa658e9", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5e7d2a4249cf00d1c8ad636d9f4fd97f5fd341915028329d41b4aad3401940eb", + "regex": "(?i)^https?\\:\\/\\/nabaoecabresa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3a35684bf6f5fd6ce3ebbad9d4a4186cf88573dc433dcdfefe109c662f5c41f3", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bf5ff86f001b467c7d6b2a0709ffe6b5110046055f37ff7954893916470b45d7", + "regex": "(?i)^https?\\:\\/\\/moennxhaerga\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2f9678f399430611d0db8db540e77969e95d246d64eb9db250607f8acea63216", + "regex": "(?i)^https?\\:\\/\\/meoijnuaegar\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "75f4360ec07e6fa631a60e9842b573781b95b010652d4390b356c2278cdf2f7f", + "regex": "(?i)^https?\\:\\/\\/nkeoxaaeycaxa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d285132e938224cdee8705caca35470cfc5300b68de8064101a6cc57f573ff77", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "af541f770a677568dffcbab0b421d97cf0f92913d97daa276c9d285e6eb70c35", + "regex": "." + }, + { + "hash": "45837c42a78c09cde6ce7768e82c7bf7739a412188591d02890f895df301b8c9", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "db5eb9bf38e7513e8582ab01cf813a3c44ffc234d29373477155459366ca8358", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c47850c0bdbaa0a94b0ed7f455aa62fc5571c1a22952db7a53bb15ef738fccf9", + "regex": "(?i)^https?\\:\\/\\/ssdfjdsgfhdshfbdsh122456\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "06f1a7e4096a865efc7c2367966a10ca4a0aa05ba1db6dbcb32a0705ffa4e4cc", + "regex": "(?i)^https?\\:\\/\\/hydfgufytiuigjgirtyigjghkhk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "71b66efdf115f4cebe64912032eddbfac175d0e93c439c552959bca2a6857b00", + "regex": "(?i)^https?\\:\\/\\/aasdasdashegqwehwfq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "97712ac16d66b203bc4635f48813e7aa240686c9a2434cf764deb33c82c875b8", + "regex": "(?i)^https?\\:\\/\\/xvideohotz1\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2306964520caaeff8061304a53c3a33202b9287c09f666e8cffac0170c22e332", + "regex": "(?i)^https?\\:\\/\\/dfgfdgffdgf2125\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "02b6e521cfb2c43c8667d2ca98c63bc2a97716801e951df132d480f8808e3f58", + "regex": "(?i)^https?\\:\\/\\/mkoemuxarva\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f6f7e58b7ca6814d997e51c758f2872b9dd90d0d932a8c03ba07e0bf88b6acc6", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2ca27580ce95771c75c4cb7ebd7a67fa1aaa810b26671572ad06425f247eed11", + "regex": "(?i)^https?\\:\\/\\/dfgdhguidhgidfgjdf1114\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "13879c587aea47c06090a28a3f16540ca57fba259335efeca4dc06ed77525423", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0d2a8fa81a28a656d5b062d40cf6e650cb65d4b2a5df757bdc2f450eca3cb951", + "regex": "(?i)^https?\\:\\/\\/dfgfgdgdfgdfgdf12452\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b41fa59d11badd4016f8e43ffa2463d9ccfc492b4a11482b09575bc0aeee17a2", + "regex": "(?i)^https?\\:\\/\\/dgnndfgnfdjkgjdf11425\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "449c6d426352dfe103dad480774582c02d648e389fdf02efac6e421ff1296f6d", + "regex": "(?i)^https?\\:\\/\\/aaasdashdfasdhgasdas\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "959d64cc1723fd176674efa95d7c440cd4abd6659fe0855d28d70c4e4776433e", + "regex": "." + }, + { + "hash": "1279571abf642f52cd7a4d611ab4a2b6a06bc0d242e57b5c9b7e0215875d9e22", + "regex": "(?i)^https?\\:\\/\\/dasdjgashdgahsdghqwe312\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8f8c3c7e9aa8cd2c7a5a230b036021dd60d3fc51d5a8772e4b987b2ca25c2d99", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0bc157e47d8f4fd64b275ac2549aa9491afb1b113d55f53222d2d6d90bcfe665", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7e4c4b7525cf24197b4c9ad16ce2f89771b7b837608d9b49b45fa1849b06be1a", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "75df7aaa19c9489a25ca624ef60802076519e23ed0d5301b2eb25b117fc061bd", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e910212c5bbcff3a85c89c43f8cdbe9081ab2f58fa8cbe5a131dd0493e978273", + "regex": "(?i)^https?\\:\\/\\/moenxuaeta\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "deb97bd0ee1168edaa3ebf3d3018c44891bf6b2332a72dc18d3db514f8534ad9", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e41aedd9ef6c312e65ea168a0ab09ff3996a9d924d5b979ac601444c6924cc7b", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "056c38498746159fdefa92711b134f5a065e1cedfb0612898a31e2d1137aca9a", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "534614771209ad5252255ee0e6b6d1cfeae8480e184e684f1e0c12e4fb84f5cb", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "59ec0e8289a91783c219c0d99fc1174b9ba081826c0d1fd6037fe77bae53896e", + "regex": "(?i)^https?\\:\\/\\/skdjfksjdfnksjd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "60fcaf4ac56bfaefd4cc77f4e52ba1f1aaa84a70a787637965f14aa137d2a8ce", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b32feb053eea18a8e3e6aa9631d501c05e8ec4ba3d55d4e0308d3115b0a9a76", + "regex": "(?i)^https?\\:\\/\\/xvideohotz2\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "213acdcfff7db0ae172c44a37a22a22c297386e812e61944da8356bad27b7bed", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9b136b26c5bbf2011b5fd95ee2710538cd11b898e09fccf68565bbded88707aa", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b277c7f571bc1eab74771d0b8305268a84a469b61422aa593cb4f792aa4876a9", + "regex": "(?i)^https?\\:\\/\\/mkeoxnajefqwea\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "14b8c05f6a052f90f7930be424122e92659e878c32ab866874891e2f46ba1a27", + "regex": "(?i)^https?\\:\\/\\/nomejxnaercvae\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "420abd692f7bf973105975f07ba85441062f6bbc126826627a0b35c033f378f2", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e0fd9691efa3e4c6cc20b432fe8c671ca8c323a6bfaffb8940d595d997299836", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaeuvwa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "347cb99298d6c9eddfe31cd888a17a31ef3b400632ee693398f12229b2d56067", + "regex": "(?i)^https?\\:\\/\\/uidfhgiudfhgiud1556665\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5de01c542b1950b4db3c5625768d11ec2608d2b5d4094c39529902b17d03b747", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "65df7eea586e18ffb6ea43c4ba562736be757b444347ffab5d54c21eea0f7941", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a56c934ae9fae777ec4262c4590bf34977c541961c13937ec578f36865369043", + "regex": "(?i)^https?\\:\\/\\/ljghdahjdfaghdfagdhafgsh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "91640afd56db7115a8b831daeb00c1fb8bff016c7bc8873b2c71404f1c859b75", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c2c87112822996ef63936680f1ce778a9fa38f71e14f1253076f4d0685e2fc15", + "regex": "(?i)^https?\\:\\/\\/bafybeibyxcvqlwt3wef4wqc4nefjyk2eqocromixxqtazrtusn62ooo6ea\\.ipfs\\.w3s\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "9673f43be0a867dddeb0d59a9329a4ef61d09f72363133802926494e563497bc", + "regex": "." + }, + { + "hash": "d8aeb9264447ce13c295cfd6b71396343e6d69d64fdd800827c6ff7dab41d675", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7ac582d1c0eb38d72b9587c79ff55165f862bac1cb57ebf808d41e0b1f79e30e", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5df519ef376cc071fa3c6cf7fa448d8e32731918ca702d7553bf368303c4b84e", + "regex": "." + }, + { + "hash": "3cc18776a4222d3aeb1dae0fbcb8757a6ddfddb7994cbe2ca6d711fea82d32d9", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2eb21cc0a732f19e2d466f53f5017960bdf3aba356b41aee29fe0af43b663541", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6f67a6c02e224779d3009f1c81f67bd582e0aade276f8d9b5fadc08f65455483", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "39da4a370060040ee9bb6cc4e7495d590e2a18a252938e9beb8fa7a9eeaa7340", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2569dfff9a071c57505b5be07fb249e85c21060327593254781a0a7e00e8766f", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "17d764fe00a2f109dca4c8fe3f0c2f57ec51f63f951da1abd345e1025fa34e34", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c0c960b92236822cf92c15c99928340ba5fe29ed912d60713f3ce8acb6f952a3", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d739c7b6b6e8ccee74a3f63b45af761b8157ae30a87d4a01ef6405a5b14470a3", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "20727cb1ca864648e295578ba5f3c70baa7babfe17c288138d0399c3daa63153", + "regex": "(?i)^https?\\:\\/\\/bsdjbfhgdjgf142552\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1669281db6635f3fbf8ac78f7df2d4515dcbea70fbd10f6fed949dec61441467", + "regex": "(?i)^https?\\:\\/\\/dgnndfgnfdjkgjdf11425\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6b4d96a2e4409c042eda3550d474de02ab3798f5ad04c3dad6f8abb6b1ff3f41", + "regex": "(?i)^https?\\:\\/\\/triolmncaskeaotansebasydaz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1913342e36c19e8d26ce3923d945795d21b2b1a5f4628ae39f76ee7e62bf7a4c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dec3f0ddc830d8a9f697b9f8d91ade2e192cd2a9d02ee96b358067e154cf3cdf", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b29b847c8dbf7ec5370584fa258e75acf5e90a606245bed14992e625c7bfbccf", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2a1e861d2d604b0702c5c7499390ecd88e35f58c35070d57edafc037c65b1266", + "regex": "(?i)^https?\\:\\/\\/dfgdfgndfklgmndlfk11\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "02553439f1f94b88a6f169b915c96c1f2e972dc31a66113a1240d05173d1ce52", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "e0941bf05172d97b5bb78d5abdc0a57083720d3833034a9fdcf4fccd4a28df21", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "436ea7af0f8bdcf51edb8a8bc7fbbacc9937a282067214b6757f62b73a42ab5b", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7b3e8f185518c273c45364c74425e91a4f5d63f90d9111b47dc711b21b876637", + "regex": "(?i)^https?\\:\\/\\/35479865\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3a674781b76741c2ddf5dc8fb9bac546a2cca5aaf7d2ea03e05ff0f8fe4200dc", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "93606078cbc872a38303f64f85ae2809ae42e455b6b5b8044754ec105e5d46c3", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cc8ad2dc66e4d5b50f5b313d6f9a5fc5933380a76c13b9f8dad799deb747531c", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ba215a6b2ce2d109aa08be095a4bf2d2ab8cf6cb9fc372586037eafc481f5dd0", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8e358bee0a46260ded1d3c8cd6497b655918b2d35820216ff0e52b20ec9d390e", + "regex": "(?i)^https?\\:\\/\\/bafybeiekvauhlidqwlyxkajvsndr5j2mftg6mdv6xpmkll2yniak2qyw7y\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "70b09bd54d7461895dae5ee52a37aa89f2b6255b14c33a461b4b84c6986b98e2", + "regex": "." + }, + { + "hash": "643fcabd2181f7d15e395dfde4eb72591d8de968676e7c84e9f84d0b2174a21c", + "regex": "(?i)^https?\\:\\/\\/skdjfksjdfnksjd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "657f669c824a1e8f85aa72a53610f44c31d6deca6d6fb2da25d393a8e60a528a", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8420f97695db2334b04106a429028016ada69deee6552aa4d33e0beabb46e0c8", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1e351d6ce32a61f5b80e0fc39ccf95cfe377bc1f73f2ff5980591e8033253c3e", + "regex": "(?i)^https?\\:\\/\\/dgfdfytutrurgfjfjghhgjh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6549b58eb89f63b0da5d2a536e8cb8e1ca64720ed046732da5a41a2a1fba1b5e", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "374be0623bc57813787f590b82c7d508494fc81be05762577ab1cbdb76deb055", + "regex": "(?i)^https?\\:\\/\\/nomejxnaercvae\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "da75ac70f4778e83e2d98feadef9a09e9db082a4b140322c134b56ce7b0a749c", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "031ef02b32b965bb7c6ec7e64f36df6ca634291c411feac225a870a7b62b1d58", + "regex": "(?i)^https?\\:\\/\\/hotclipshubs\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d3c5ff6bf721baf1bd67816e3e189461f5b8111bba016460bb9e679f1013a67b", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "97601607de0dabfd1e7b245499c6677bfc6ab0ada55316a279a550b5759575c4", + "regex": "(?i)^https?\\:\\/\\/khjkasdgashjdgasjhdfsa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3f73000febbb56b516e7ce34f4ab6bb08c5dfcab7b7be94871afa6fe352a8805", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5677cc877a0b7cda530bfa50f881c557ad417bebaefac6de26c0de78469b2337", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d8ff08551d75ed0520ac174e85bcffa72b4a1c3307403279cb231589e45c0320", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ce16072f8492cce788e83a2994345badb7292d2d75b4a5264d668a4fd10a2a00", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d1472aeae7e4e6807223891bb7e7aabe5c3407b119e404d66696f757fb884e1d", + "regex": "(?i)^https?\\:\\/\\/koaemuawraewa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6538b810930eb896e4d9336a656777d3a075980fa86a0acc291bad42229d930d", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0542c4ab4be92aaa245cf2d1c0d8d26a73029720015882457fdfae8419764053", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f9d869edb94bfa909e0a7e666a163f590009595b5927dd5e19b79e22865228e3", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "310f064318fa494b1fe833506246c80ce82afb07775d77484549d9a7f163ee54", + "regex": "(?i)^https?\\:\\/\\/gimenezrangelfranklin\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "61c40b33303d04296c476fca7e509b6f3f9dbfb34ab16af111bc07f1860b74cf", + "regex": "(?i)^https?\\:\\/\\/aasdasdashegqwehwfq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7d0a1258649b69043d4a3eadcdcd413ee5b621833163a023169d55d2264dc699", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f09bb22fc7b80da1c2e3dfae144b6f5fd323cf2f73c9d570fe12ef114aa442f8", + "regex": "(?i)^https?\\:\\/\\/hshgsdbffbb14566\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8e3fffcfe9ab4cf71cc300458bdaae72043068677dc83212f2caa87a828a1d5c", + "regex": "(?i)^https?\\:\\/\\/gfbjncvjknbcvb123455\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d8ef892635708d50ae5b74efb6e0e54606f9a8f52c8852e641ed7c503a43a73d", + "regex": "(?i)^https?\\:\\/\\/hdvideofever\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6ca8e43114abaa7d57af69f4e2320d060546883a69fe5e2cf52b56ffa29d1692", + "regex": "(?i)^https?\\:\\/\\/dgfdfytutrurgfjfjghhgjh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "82f04763bdab29542510aa3dc4ba77984cfd48ff8d6d56b571ec8fbab8c98011", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9c5364dc7192c5ad1db2ffdb3753ee8c329fc06bead189b9ba8d0b0942e4cee7", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5395ce69e8a257430dac950154c72ae4f23fe5c2b9204b6728ed36c11b093e68", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f2b6d4d62d1b65de3bf681e13117ca246a14b505f1d467902595426a723cfdac", + "regex": "(?i)^https?\\:\\/\\/bnomeuxaueta\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e7b458ab6a6a12461bfafce9a641db08c23c9da26f924e922c1c956c06beb92a", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6eba310455dbccea6b29f8da1bf8b3d423b0ed50d60c8b20c8aa74846ec519ee", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b599e079a200b40eb9defd02f44f5da1120b48a711acd39d24e01f27690a9aae", + "regex": "(?i)^https?\\:\\/\\/2145474658132\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f68d7a55ec941b5fae61482f95dd9ecb95c84d8f468a2290ab90f7dfe5ec3d59", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "06086f26c936353bb5964eefcaf2668ac297b72a51dd4bdb286b676c6d78fe2a", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7c39de117c9b278822a589ae787249b1c152655da3d07fbb8daf2a22d7442c82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pol\\.vunek(?:\\?|$)" + }, + { + "hash": "f8d101b5de5010b35c3e2680669e30a5fdb0cc7eb7af1cdeec91e610da1e345f", + "regex": "(?i)^https?\\:\\/\\/ngfbflkcvmbvcb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a49b0dfeb1588c0ef8a6bfab54e754b26a4f2eac9edb0c694ace59005ffec4b3", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6ee8cfed6202d3675fca5e14b75f477615a3961656cdbb060b29f848ad2f0699", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ec142a1bbd88787e9300a7f60e0c1a90062549919cd86c0b5e31afbf795ac08c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Z2Vz7OPkLq5w(?:\\?|$)" + }, + { + "hash": "761f54f23a115f5002e8b8874687be467a35c77174cfea8af5e0f8c42b245480", + "regex": "(?i)^https?\\:\\/\\/skdjfksjdfnksjd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "018ffce7aa1766bd5998fde79d4b33170da3728b92808cb3cb47c429fb3dda2d", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9ccda4686d5c16ffa35f28a345d1e869f1d9e49379a3ca3d681469f059cc971e", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdasdasdasqwe\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "90fd3a06ab7087d28822c5c52b286d4b3e28e2a2fecbe5be40ea41ac297edd69", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fbb095a4d3736aaab39b9087b93d7b7ecf22124090db35b7f348478d67b1e12e", + "regex": "(?i)^https?\\:\\/\\/instagramverifiedbadge\\-1\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8378a4bc6e03ce953bda76f20e43fcfd3d4a144aa400eed6227a5bfe82548ae2", + "regex": "(?i)^https?\\:\\/\\/45646556\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d3321cb0b492d76d983b12b3defee3df4f4c459b4003954fe2a5e22fe1fa60e7", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9b9e802bea9e7f4c452e20825ed04f3beaeead1db00627c20d2f48d86bb4f983", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1b3f1342e9627fb5a85bf3bd61e32ff128e1e5fc27aa9fb0b3f55be5d20bad7b", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0461f0f6e396f83e2ef78802e35e8b9038bd824cd655ad1390aa34a2094b2ac4", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupdrrrrff\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9cf861eb88a8810c5ca7a3da7ca7f9b8b2fcf66024bebb796dbca3df6f68fff7", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e62bfd6222153537171bfae78c54177471bcbc044be1b8fbd86c259e8b42ab2c", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "eba91d27592c2e4d2a4f99cabbb0d87fa87bbcc26aa52a1100b2d2bd2ad043b6", + "regex": "(?i)^https?\\:\\/\\/bafkreig2fh3xhvt7kd5u6lxkexabwxt45wox6ausfdmxi25wipi25fajqm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "eda66cc2107d199540a3eb60a44ffc8fb586c24061db618a88d7f31edc6f1e48", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ac6d44301d25e95b0ec96170a3836ba2a928f7f5924a1479ed5b428d2487e60b", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1c674c2c97f3498a64fb7252767ee5460f6423694542a2f06fdb231cd798d118", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f885e9f648aba3c8140eb4d19b463416d1c4523fcee58f2838c644854972f370", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7b395b6a7dc87f018f5c6568aacc457f8ed7ce35f3682c7ee418ba4c8a078b27", + "regex": "(?i)^https?\\:\\/\\/uidfhgiudfhgiud1556665\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7102d0a700c769838197b4e47d6a10d3f997ad1111c9d80557f99509a7565bb8", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c9690bb24730083276b5f7d547397916336348fda4c6d77c068110c37d5d669d", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "13180eba3d761b05dee6f5a1ed2951458e32ab31ea66e6390bcf64a0a0a96780", + "regex": "(?i)^https?\\:\\/\\/moennxhaerga\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "83c42c0acb1c8a89826130f4be412b1d618de67b9c34d84f6a8810305ae79260", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6797cf013a19f5647faa3e8a04d436dc25782a0b46a4af2623068279c12ebe2b", + "regex": "(?i)^https?\\:\\/\\/nmoemxharcae\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7669938403cb3da7b20b59c869d16dc86db2ffd6b64f1622e7052ed7ed1ceb52", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "75672caf43d25e757ea8331bd03dcc64d58521247b06a41eb7b737d64818d13d", + "regex": "(?i)^https?\\:\\/\\/blxfcqxe\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0e4b258c142bf4463ddd9017a42f92847a412e53ed60666d18877c3aeb4f1047", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bf6babeeade3404bf118c7e25f7d67c2495f31bbbb6e0670a79a58166a21d0ba", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "eceffbda6f6786e5303f24e89402ce2dbe8e70d1c441e292b162ed02164a2c3c", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5d7cab7c4ac0da22a61595347f3994daa204ed16e628a7ffc71a0982dfb46445", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfsdfsdfsdcccc\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d6d816cd724a9c5bdd8cdeb1f49abc2e6124636beda944bacb64feefe98153ea", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "728df176ebfaacd94269e39d8a2b409003da2aed4a5bf4a521255486081c34b9", + "regex": "." + }, + { + "hash": "b3b0bbc6aa76e20e6697fa604a5fa415ae3c8c69bdc9e9d240e92423b791446d", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "faa5fd6be1086447f90c477be0f572f8b992618b9c89b7421ec29016aee1958f", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3a42917b1141f76ce30d4778c0add7d281d57a8b2410bcda84afa2fbc187fbd8", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "26e3f684e18e090660c7953bcf7b5a88b792e68d6852dff9890769ecd553db6e", + "regex": "(?i)^https?\\:\\/\\/moejemnavwara\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d3e6cd534c548c2759cd0e3ce0a6c7c2f68253b0891ddecdd2a15bda02b45cc6", + "regex": "(?i)^https?\\:\\/\\/dfgfgdgdfgdfgdf12452\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dc93c79f66f4e503c0c5cb1a07634d794a42dd527ff00f31f04b9672e12960a8", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cf0d7027f4f5d5b95f970800ace2ea9285487ffb74852ca3a5aebc9d1a9d531b", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "89a34ff1f9f260454be4d79e4d6a1a8c6ac6f383d79fd1194e5ceb3b8e9de4d7", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e588bf81ae7c3e2b93010e89c4bcc834d1ec1b03eef50d7414fa3d2e178f05c6", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "411c9a4458d10feb0f731335e9124b6fba20b658b986c2b3f7c1e15a7f4f28a4", + "regex": "(?i)^https?\\:\\/\\/aasdasdashegqwehwfq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4080d43beff947374d3c0bb0178831cf6759f9c77153bf4706add45502394c5f", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "af7d1982bc3174a3af58c04bf11bc99d4ce366c09c785b3ba6ab6d2db7de2a39", + "regex": "." + }, + { + "hash": "c2541b4d291ba77a9bfdeda778d367e5d633679d0223d3a6278f9781315419cc", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a1d5d96966356d9acf1ac211f89d65d09762b63ba58040d65cf99c0ad3a28229", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c91984ce845b2b5b12401e82f6cc111af360c5c322fe6fe6730c745b6195c5ed", + "regex": "." + }, + { + "hash": "b96a1391172b9dbb31dff46328b6d0d2f7a3eceb77cd425362c943aea081be13", + "regex": "(?i)^https?\\:\\/\\/52465789458\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "deefd0de3b8ce8afe66cfd23215738265ddcefa4c8ecced2c28ebf925404441c", + "regex": "(?i)^https?\\:\\/\\/xvideohotz2\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7f50d3c09f51f4644faa70132264285c920fc0f16a91df663b22f29d71484e36", + "regex": "(?i)^https?\\:\\/\\/aaasdasd4as5dasdhfasdh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ed8c099532ca684972e15f4fa26aad979cef818e4601b8f3d9a537f1c366254b", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a5748f0c9cb569a1df0c2cc2a173cb9b16551bc1af4733468518269efc821a2c", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "944d94a2de585561d97c1ccaf360842eacc6b25c6d8fd37cd5515f9b84b1c9f0", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "05d086ebe47b3c1cf9e33605c76c07c3b32254e3bf222704957fc1ba2480d189", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5a7f21aa143387757f5ead78b0683a15049db45e82cd05c9204265e15e673104", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d551a23a09b855fa12b39dcd2f052b221d8d6ec9e447278dceb996cce30bb8f1", + "regex": "(?i)^https?\\:\\/\\/lkmsdgkmg4\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9fb0c023ee012e94fbeb6bc9101f59ae175e21b195ff4d9bd7ec2eb53c1cf012", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "68210e0252d433d0e98884080a55337803f8b23021f75e17c29ea4ed33940ab5", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f9561898725fa580059701c58a4bb59a0c723b8e6320ce3c446f73f630fcb3b5", + "regex": "(?i)^https?\\:\\/\\/mokenxuarga\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "dee21f30041672cc0f83925450dbe69ed94cd35e34f67075fa80639470643403", + "regex": "." + }, + { + "hash": "be28a427afec4a546907d7b76df6b756b4f35d047b76c5ec7823fd7bf4302ac7", + "regex": "(?i)^https?\\:\\/\\/bhfsdbfhds145258\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "328933d344644456c38e69d0321a484c91a6c310df9ac191334a85b679565523", + "regex": "(?i)^https?\\:\\/\\/uidfhgiudfhgiud1556665\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ff1c670474c98ed058ba64d2fac0e9450daeb8da9a3b746049a89c2b029a0e4b", + "regex": "(?i)^https?\\:\\/\\/dgnndfgnfdjkgjdf11425\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3d114a5d3c80dab20731c56dffe0969930f098a5945a1b9ed439d164a6808dc2", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5a56aa697dfb69f9e5504725cbc630e5da6f75c13495fee672297baf1c04c08f", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7ecf75d4ed8dc7b61aa447fd666b57096c62aacf3c18cc909940510729a7a53f", + "regex": "(?i)^https?\\:\\/\\/dfgfdgffdgf2125\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b0e58f567a6a112986b48aa0ed428d291dcd01d9ade7e3bf7d2b9edb0bdb1bed", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdzxc16\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0b017600c2c43e26616b6df2199aa5c7626617df009aa75e05dabd643e598a1e", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarecarae\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "17647b85c357eedaa0ec51158f19b41064826bde027e2fdb70aea7cd71c883f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDD4EwOAzgZtczvVjGJyVPldkRvoHRdq8EOMnKE55HMpiU8t9R9MrcU943eYabnthSK_Qh0vi6euuzHOKnYBaKmqKlu7qKcAkfT7tOHQGfhLiW8l__vvzoe7vY4Q\\?kws\\=\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fav\\.tub4us\\.top\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fnjwcjyshepnz\\.buzz\\%2Fplay\\%2Fid\\%2F1053787\\.\\.\\.\\.\\%20312\\%20\\.\\.\\.2C\\%22\\%5B\\%5D\\%22\\%5D\\&si\\=1\\&focus\\=1$" + }, + { + "hash": "87b4b7186b20ab3904d34b84dc28f89eb4ee9214bef5521cd61568a5fa7ab103", + "regex": "(?i)^https?\\:\\/\\/bnomeuxaueta\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b01d8ca8fc34cd46d333dc1790e09a39600bec734803ccf629d3231f6ea4e96e", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c2c303fae12a12196deb03c40db3f8f74c38dac4a3baa322c139c3305012a5f4", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0f5dd69f180025e90da00b9b483fb126941866132e994d3bee4ec4d2841a841b", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfbsdbsdnf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "34424aa642caf814c57854ac24e748177e7157ed721551803b42e2d17f49e4fb", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b0e1d3bb59e88b98cd7c0029ab001f8436b500289fb84005aa2ff5360a8b4e76", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8d238762711dd310c962ba625be70954f421f08dcb24132fd2baaa5c76c4254e", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "913d268256802c576a96a3409cea5c73728b058808d4e25c10730f6d2e61f166", + "regex": "(?i)^https?\\:\\/\\/uidfhgiudfhgiud1556665\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fb0218afe6f7e2938acf04a88b9ab86ca9f0749f18d14525a1788d43492517ce", + "regex": "(?i)^https?\\:\\/\\/dfgdhguidhgidfgjdf1114\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ce702658de2f8fd029252a27e92e99682e157c1636b5fe009c3f07720d2e7ef2", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fdecef4eb49845938308e1aeb7f5598dc202a81bc723e1ca3757d4f85cf58937", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d5447eaea28327fda5ee5be539fbfe8abf7f3f8455c7ea27552145cad19ee3c9", + "regex": "(?i)^https?\\:\\/\\/sdgyderyertuyfghfjdfdhhfgfgh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "080138271cfe62d58a167706d48dd669276a1eeabd01a8b5c37d8cc2458ac1e4", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "183b3f13aaa1fef7207a83a1b60677bc956540f810a4f143add756cc5f7a41e4", + "regex": "(?i)^https?\\:\\/\\/n26en26\\.serv00\\.net(?:\\:(?:80|443))?[\\/\\\\]+boo" + }, + { + "hash": "750a4040b4967dd023cd644bfc1e52c6593d635516a0f9ca82ca6aa226eb3e68", + "regex": "(?i)^https?\\:\\/\\/bneixaetcaeaew\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3dcd120764a1c463b6a6d4bb87e28bb593b85840d44e9db0b2ba906e38d5117e", + "regex": "(?i)^https?\\:\\/\\/2145474658132\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4065400336c2c681fa52899a2595ec34a122ccba689e459b571274a9c334b9ad", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "35b609e5d5673328ed4d858317bbe6e39f2b5793601cdaf8111aa3e2d8e5b8f9", + "regex": "(?i)^https?\\:\\/\\/ngfbflkcvmbvcb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7b8fdca96339fc52cf06ac6431f82489cd1511251712e7326636c13abdac4754", + "regex": "(?i)^https?\\:\\/\\/5649875\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8c5028c8ed3e1759d3d77900c2ba7a957c8efb6167952d4b5b41a906e0fdda3b", + "regex": "." + }, + { + "hash": "e8085676691eeed83f18df0f885622251b94716b8aed3dfb2555b3a6ee64fd0b", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2dffbc7b0d0e59828b77c71ba0a19acf46ece0613aa2d00297cbd7bb2a8bb0a5", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b5c73bddbea6e095683f43a783203de9977040e801be66a7093b445e81a89050", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ad6220bff7f88ac856728279fedfa61349494e11594271dfd9b7cab2858c06b7", + "regex": "(?i)^https?\\:\\/\\/dgdfhytutrufrjgjfgufujutfgjgfjgf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4596215cabe117ab645509b0b303a6d5c7d2b7e302b135d46c68b85d5a0a9697", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "27c41ae2d40c114d4f94630675b3ca726263aa560f44ee3bf4d67da58d7ea0ec", + "regex": "(?i)^https?\\:\\/\\/gutrfuiytijgfjytgitgkhgkhgkiytgjkjg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a3099b0339a7d2c6281056919415866aea6d5e0bd30d3af25efd8572598249d6", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "222a86e35dd5454fa315df3da2c05dc83fe0b6619ca831709fe92b8c51620593", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "914cc77b32e5e50e9d3c08375762445238f83a74a84ad15700994c2a34809340", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "df49c99b16f921a5e2a43ed3853fa134c3818131f45481efb98ec82ba9649dab", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "711f19c9406f6844da2316cf61c2a89b44497cdaf3dda5db3b0459733fccfae2", + "regex": "(?i)^https?\\:\\/\\/oficinaesteam\\.serv00\\.net(?:\\:(?:80|443))?[\\/\\\\]+2k24" + }, + { + "hash": "61579873264b7a9afde503393f786bc27efb46001e8962ca3470f372c5654e05", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "14cd02a41a0f09d55bece6189899bb3279293a00bd52f2f8406fa9476ed8a3e6", + "regex": "(?i)^https?\\:\\/\\/aaasdashdfasdhgasdas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d9da846da3fc225e483a8538d37e4822186e17f9015349d8abc5db90b11ffedd", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1a16fc4a183ef254e72ceeb587dbd6f11e4cd7c17f8ec81516c842e7ee3227c4", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "19e037df3799b2aa01522a53922cb783a3cb13bf78eb59a32c77bb9d100f2e97", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5e1f280a887c159ee3e90c437b58b85d7bc8acc90d55de4dae40b35a5d65f713", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "49766c7d168e4879a9147efa1de41bc95d2b9f772fb2995a8211c33161aa3119", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "82d7f68aa18f3fbf293a2a6dbc62341e7f0eba9fb352ef94ff98c30d3379f6f5", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "efa47bd664444a23dd3d67efae451afcac8f042815629e97e54b5dc56c589d60", + "regex": "(?i)^https?\\:\\/\\/nmoemxharcae\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "93d2949b8f4595f94bd26f0d590056462c020ce73ede24e17879e06e77f05339", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2baa47e2a27740d9935bb663dbd665e03434ad4a6dea4fa5262eab3bc550a0e8", + "regex": "(?i)^https?\\:\\/\\/dsfsdfdfhhfghgghkk\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d832efeb2527322d2ef47e54fd3730fda455d3bdba915fb962b7613467b3dcee", + "regex": "(?i)^https?\\:\\/\\/mkoenxexaa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "124052f6611ff6631e6359b2633d790473824d0a9ab632bc26c092d11bb2102a", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "70c3a9adb28d1d355d53384992979d85c3746c099c9033f6f637b67048960d16", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b113560bf6a2101c6d690460ee3791ec9a18a8a7e5e44b715f0cc2fd89cb2330", + "regex": "(?i)^https?\\:\\/\\/ljghdahjdfaghdfagdhafgsh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7170748d2564617449fad7c1c89871923825a4451fd2b3c635c7a5abaa564f55", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "650fb1d538e6669e420864372597ce0beccf1a56c0ee12a16ef5f815d712d41c", + "regex": "(?i)^https?\\:\\/\\/45646556\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "54edb6ad1a973ceb12e7d7b133902bee1f5141a79d95d94f4df2d94f93613bb5", + "regex": "." + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=maild45c063d31db7f45570c448122ec$" + }, + { + "hash": "af7d75811b5e5dc9ca699eb5eeefea6904ca5b0b07bc122112b1655504601846", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b61012afa943e22a984a04d0814a34d2c5acff4f3200ea0df0482d544d08c89b", + "regex": "(?i)^https?\\:\\/\\/gjhfgjufiytiytgkhkghkghkjhkjhk\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b355c429aed99d501528f2203745ed9c362397b34646f9447315aa2a709694b4", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cf49a4f725f563cc8f524c374d50a0543e0a03bf3959928caeb91c5b697e47ae", + "regex": "(?i)^https?\\:\\/\\/instagramverifiedbadge\\-1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "84dce814e7d5dcef771f6eb7a78be7a98f238551c3a758da81f19364cfe93172", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "633d20807d87f70ef5719eda3c7c729e4f047618f0973dc4ac7489807aba7dfe", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a1a32554b8efbbe0953c34cf32ff2156b42c22570662da1acc6e68f2e1aeb131", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "54b6f6eb05da3db12623db392e4f374808d92f7f3746d972fa74838698590a4a", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1a1c251ff97ecd3c6657f0a45709da78c95296ca34ab98b28e3c19c2588f2f0b", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "83153052e4dedb5b35a8c49763accbf97a389ee2c9736b2a493ec5c049b94fc2", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "70c3d6d3fbcd5853e2475f1c3320dca053219a076c27a8e615994b8d8c73fd1f", + "regex": "(?i)^https?\\:\\/\\/hdfufytigytukghioytugkgghgh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "21a70cd601e1bdc5d8260940aaa81e8fe7d602bfcdbca68d3602981b785a877c", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "328ede536b6e20c95c3d78339aaecf533645bd43397bca0251a338d7f7041997", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "325cbacfd7f80c45458236ef92eda2292e88b90104521e55d3888915ddbe51ad", + "regex": "(?i)^https?\\:\\/\\/nmeocxnarcawxa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "48e56eb8b6cd11310c67da55b15d6a13cdb4c21f2bcb908ee3e5bac4f4c611c2", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "171a144833eb9e7f453da9f35bbd056765aeede469546b7f5ffc55789762c372", + "regex": "." + }, + { + "hash": "2626a04733c9162a14e6610e07dbe1369c993f9686f770d31e865d3900d6502c", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "13d32bac90aa5e0ca60cb049547f59ce2c1cee1de46b239c7bc35a16ae8ddad2", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "afa104460076e04dbde87728d04a4873205ab7b29450c7d209c0f168272c9e3c", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "da75508635ec4369ca5ae5be3fd3fe94242c230abd8e7b7df5fed2390c04b192", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "92d4445c6e13e94d6a932bc553095a3ab665a4758638f469414ef1192a979409", + "regex": "(?i)^https?\\:\\/\\/xvideohotz2\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f53cc603fcb6ca8548b925b30e930ad6658f9367265e52e846c7d93a515b85f8", + "regex": "(?i)^https?\\:\\/\\/noemxaieaqa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5669fdd5f63ad98a70c93ba826594521ce49531c49b31c2bbdb952d9d809fb6f", + "regex": "(?i)^https?\\:\\/\\/aasdashfdaghsdfgasda\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "271b0fef158f5ed19b4caa7da3bb45f64aa7e8747d2df75c0a1e818df45ee2c4", + "regex": "(?i)^https?\\:\\/\\/dsfsdfdfhhfghgghkk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e06ab02337b3157eeac2cb6e15d352de1234917bea4f37e539324cbded891841", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "be7376602209b9f8ca93a63943a0fa753cf7880a6b2ee17c96d84ecd69ea6be2", + "regex": "(?i)^https?\\:\\/\\/aasdashfdaghsdfgasda\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a66e598492aa87d4cda76edd817db53e0f4824f2075f35c735438ffd2ce3a69a", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "29306de45b2fc96005c0832e157b21ac050eb309245c2bfc749800e23ee486d1", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1dd9f046fe68677a577ecbaddeccdf4b0537ddd4b40ccc309d512b1f8d5faf19", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c5aebf7e1291ea9dd25a43d7de0ac03285d66ad7e23221f6da577fa282311d5e", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfdfg33\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1c51c76aebbe71c8e836de7556d0c1e0fe113de3a672b94387cc282d2af6791a", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "368fbee9d03d0e9f120861d202edf0842f51a84b590bae04086fe60b4dc7479a", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0be60fe6da08e3942c443c678528478876ec7475cb54e4dd719fb590eebdefad", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8b158b16d5b194e3dcd5be26e1f3e18ba443fb27fc526feaf6beaf640122a3ac", + "regex": "(?i)^https?\\:\\/\\/neoxemviaegta\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9e3e0af9555f6d939aa8bec7fc9e4e4dd8b4dec1d1d2e91fc22afea8cc6d02ce", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1dd914169be36af77e7c3676c497490d94fb2497390caa17daf85206b1c13446", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mail4ec0334434cdc389ad1ca74bf219$" + }, + { + "hash": "d07eaa8c0403c0bd3ea0b766cc58ae48ae4b245faebd1b9b3ddd1f633cf6ef53", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "87e1aedc2be0b1a4e94b9a013bf26c47eab00b141d8d9406441c5e67127e5d34", + "regex": "(?i)^https?\\:\\/\\/uidfhgiudfhgiud1556665\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d8b3d7554e1612545461089de8708df9b1031eb0b37d7d3d5d8b59d19918ab39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+logo\\.svg(?:\\?|$)" + }, + { + "hash": "94ac22a25a0f38fab8788bd22e37ae135cd22b334a9000756530c31f3a76bdd9", + "regex": "." + }, + { + "hash": "61e0b05f35ca3f45717ba693dca5775cd0f5ef1e847595e5c6938ab2e1bf449f", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "62be4b8eb79b923278076926a98fd010b62c2528f929e632b0f3ac6726b771d4", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d2ed7ea221ff24a0bbc7992d04cf7a0abf1a865005fd7899b6325b208865dcc4", + "regex": "(?i)^https?\\:\\/\\/fdghjdfhgjdfnhg11\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "00796ca2d3a31bdbb4a4049315c76ef6845b1fd5d26c11789245a893f8896a3c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyklasckascmasme\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "73118e0c29c60c015889b3c8989e6c758ba606bb389b89f11c868ab0b7da9ba8", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "932c6765ba651206a6f670e9d0c2a37098b810c80426f07330c1e0fc3d6e336e", + "regex": "(?i)^https?\\:\\/\\/aasdasdhgfdjghd12\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mailf813642adab5ed6b6e13c81b7f47$" + }, + { + "hash": "d15ba0f09e5e0a77062419d906d8c5f944ba06f3098603a12319d17454d9a679", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "88abbd0ca7bb9b2f48e8d168cef64b07ec35a3078d85165aea6bd8b2b707d2bb", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "480121da42b191c9314f79a8120992fbd95419b415492406309543eb3869c4cf", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dd012110d28cf15f5729eb170d0f1dd6c380a14e5bb90af6ffdca92e81f2e758", + "regex": "(?i)^https?\\:\\/\\/hydfgufytiuigjgirtyigjghkhk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "acdf8a23c9b235b9681400431cd5dac638faeecf594390f798c285b3c3a4850e", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "065ef799506e896c520bafd41432c47cc117fd45e348bb68c4f98e95e36cd109", + "regex": "(?i)^https?\\:\\/\\/mokenxuarga\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "864d03626d6d2c251bcfca57e7276c2e8b9dc2da5cbdebdcc177d5577749008f", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdgfasdgasf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c2c8c487cd61565bdc77eb289199c7e2abab4377f1df9e28813f66822fc03bfc", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "82c08058be56df0e92fc401c128d4979eeb361e6228ec9f857b29d43a8b5ee83", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "945846084dc40f15523b6186a574f5c6ba1d35dc06bb9e797cd7d9bfe611d024", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b754176d007f24d3645024f07860600ad671fbaf9dbff8d27419ade70900ba00", + "regex": "(?i)^https?\\:\\/\\/hshgsdbffbb14566\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "223cf20e49f53fe57b7c8ae4b02728b4260f5f3d1c28cb5af755e1a9ad9eaca7", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfdfg33\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0f778662bbe939ebc3320750a62e907aef12b210e3bd871553c2fa8a88b0b9a2", + "regex": "(?i)^https?\\:\\/\\/fdghjdfhgjdfnhg11\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aaaaa6d0afb8099c3f633bb4553e3196d5b51b258f8da72d79f5274c6da7f3ed", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6388d834eef4c103f0f5f9dc0465e99c54001493c2a24eb1cb84464d4bb06269", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "02793839504ab6b0178c840d04c32afffe966fe4f2129707c898cd57ba1445e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mailc7d1f0b86cbcd972f04745f73408$" + }, + { + "hash": "fb8f72a1b98bb8df25a3f686567f240b4b06b161346a784dcaa7ff539ed46e41", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "71fe746095469256383ee42e5626bb8bf5a4e7101b475e990616cdc9dd3c5968", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4fbfb6dca45992c45ed4b5f78a0a22556f0ba7dccc04b9a67a30b33f38e6eab1", + "regex": "(?i)^https?\\:\\/\\/fdbgjkdfgjkdfng11447\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c04dcc8b50d9398d13b2bb77352bcbc0ebd2ff4bdc4c2ac260a769b78ea483f6", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "762b8a06bc0778141a503e90603ecb29e8d0640d52f34e477d78f0f7e3393ccd", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdgfasdgasf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ca660a5d992505f7647172f169d681106d8c07b5e1e1948e26f4d3743661c6ce", + "regex": "(?i)^https?\\:\\/\\/dfgdfgndfklgmndlfk11\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fe08232c8416e2c4dbab463709fd4ffd5c66d54ed5ea1fa5328419e0f4b04ef1", + "regex": "(?i)^https?\\:\\/\\/att\\-105788\\-100662\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d7eece2a6f933585db543217df2d00dfeed11bfce6c0c99138b7173ad878d87b", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f214b492b75ad5065cd9e77df843a551707c3530e660b8a884090002734e5b6f", + "regex": "(?i)^https?\\:\\/\\/hdfufytigytukghioytugkgghgh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f0437f7ada9300d97b66cf1a9df9b7648eaa1334a2d113563dab1ff5ea37af31", + "regex": "(?i)^https?\\:\\/\\/xvideohotx8\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "25c183fa8ef7ece897e846986252941824f298219d105f9b616af2ea22c197a5", + "regex": "(?i)^https?\\:\\/\\/fhgfjhtrutrighjgiytijghhgghkgkh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e628c76c45730fdef0950186ae0cd41686bb02b0336d248e9b50dac4b7bd93e8", + "regex": "(?i)^https?\\:\\/\\/dfgfdgffdgf2125\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "bb5965075310984896e8564ed29908e32cfc9d242469ab2d02a63948ae1f225e", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgdfgfdg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1317b11f4f28f456d594fe31ffb8c7e299f5dbe954c23e26d9f7df6862cde011", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1df6f9fcb5bf1ebf7f5331175e93a001c7313ebf163a97c21cd80fc26d47f880", + "regex": "(?i)^https?\\:\\/\\/aaasghdfagshdfasghfdas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e334d52b3c747163877129126663852464b0fc27311e309986d12fc5063edd45", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyklasckascmasme\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9c1155c61ca51678b24bc367aff8ab5814c3681dec6ed0a16a0b6e5db7df0ff8", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "377a4db62f7b25732487d4b72d936f09bf4cfe0204ad07d5350af1d9afe6db80", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "304bba0ce3bc39a22c527b9a51ecf32f51783f4fc65feece2e538bfd2491d9af", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c77afb2c36f95ca816dbd50d1ff1a620942fd131d925a2418d36fe5d75e05db0", + "regex": "(?i)^https?\\:\\/\\/mokenxuarga\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a8dfddb4b7af8cf379d8116db65adb820632a5a21249bc056cdf6feef38e6cb5", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2326ef118cb72ac94fcbaa53af41b541a6c7911fc9c8d4f73c8a5bf4a9e85022", + "regex": "(?i)^https?\\:\\/\\/fdvgfdjg11234\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "86d32eb507b93643b7feef5b56ae32a13574eb2d66bdbe5202aa3bb1284965c5", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0cba6b2d67abe4ce866cabbfcc36d0fd2ca2b8ab3b10d53045c576c3d06b5518", + "regex": "(?i)^https?\\:\\/\\/zdghdfxhdfghdfghf14\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d7cd847a837a9fbb68923106676826b634ea7ccaf430054180b894b40eb5dc6a", + "regex": "(?i)^https?\\:\\/\\/mkeoxarcatva\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "763be5c8a518b31ac70f58ece55651feb35a27a5069ea2913fdee4a555667c9e", + "regex": "(?i)^https?\\:\\/\\/gjhfgjufiytiytgkhkghkghkjhkjhk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "89370ab921c3a660bce9234e3a1100cefe52e08928d5f8cb9fff00056d155ce7", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "09dcf081c03abc1cb5b771325b0efb79397ae094476aa0ab5b25a3cc3ee4dd7e", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d64f83853ed3f9379e77d4c5aaa2d314582beb761d6075f55f740ea6cc4fb0c1", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "13a2008ba08d3e7c5a224d747331db5b35e295510c4b4b0cf7fe19c520180950", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9fb0f840e6e39f69319bfdec1c3ae43c43a4501c5b82de5a6cc433dfe83d9385", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "25b5d331fa68be45fdc78c201244ebbcc0cca1259edb0c17b72589604dbfb8ee", + "regex": "(?i)^https?\\:\\/\\/sdferturtyifjjuufghjfghjfjufj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "351290eed2b4726b1096dd7504a6bb3b76fff9a882b01a94d980567033d9dce1", + "regex": "." + }, + { + "hash": "eb6b3774560cbc24709dde876115ba038bf194077696f03beb5a9bc61b3066b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+80R1JQ(?:\\?|$)" + }, + { + "hash": "06ed3b430b9a93d329afeced164bacc8f7f2cb7311d6e5a4746bf4ad1f0ad1e6", + "regex": "(?i)^https?\\:\\/\\/dfbdsbfhsdbfhj124568\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "77db679e22d098645a3a6dd74d6e996a290adfbd4596cd286a2141dc6140abd9", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "332fd509a8101eee5fad52449e39089c602716a356fc1f0f5e90615deea5e266", + "regex": "(?i)^https?\\:\\/\\/fhgfjhtrutrighjgiytijghhgghkgkh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "970cb311e2ce0f68324720bd92ab8d6a48e82e9d1b6315fc8941ccf5674fb9b2", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ece4cbd0dd29ecaa5ff3440a12d8db7b2753fa32e2eb06800f95c01a3edfd013", + "regex": "(?i)^https?\\:\\/\\/gutrfuiytijgfjytgitgkhgkhgkiytgjkjg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8fee2b08a0f00b17cd79a855182a844f83179881e2e1e86c8647eed3f5b9f455", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fbe7478a18ebf87183f50a905efed31084c317e4d9d79bfe06b9ccf7dce0f862", + "regex": "(?i)^https?\\:\\/\\/fhgfjhtrutrighjgiytijghhgghkgkh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5b158353d216f0feafda4a1f0fc771b8d3de8e997a75da4be81c76d5c5505036", + "regex": "(?i)^https?\\:\\/\\/4659889321\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ffe2ef27840c0f323496ec3f14337e61d93a82d25f755a4867873ea64337cd23", + "regex": "(?i)^https?\\:\\/\\/meoijnuaegar\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "71b83eec6f9a1a87f2e36a40f3bbc255627df9bcab102860fd3b17edae6d24ae", + "regex": "(?i)^https?\\:\\/\\/benoajseuiaega\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9d60c8d14f8cfca6a390e67926e10b4a64a39425fa3e86dabce6fae2d2031926", + "regex": "(?i)^https?\\:\\/\\/mkoenxaiexae\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4917990cd023b4afc7fbcc0ff76ba4f3d0697dedc24f6d1ac333be6c7f25ffbe", + "regex": "(?i)^https?\\:\\/\\/sdgdfyhtutrujujurtufgjjj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0ad272e2447630c5bdad8bedef4a559398f42621bd0272adcb0bd07439a5e2b7", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d8b142430bd44f24f9a4c27eb43cbca047e5a1d48f8f2a7aff82ecded935f3ee", + "regex": "(?i)^https?\\:\\/\\/dgnndfgnfdjkgjdf11425\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "83e82eb75aa80771632d002322f643690066b298bff00202337420667f380a5f", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaeuvwa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1b00721a1f9c22dfd7a75b50f22233d00957dfbd7eabefebc4463eff1c263abd", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdzxc16\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6796bd9a63f45167c59cfbe909d146f23effa634d183c9148a8b2f820495cbde", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "65de3501d9d2221f12c1083649b312e10a6483bfe1f484992d509cce97356d2b", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ab88bd0a55e74ebc11c5ef7217262b0f6e768c3676b84d64c18291f7cd26a6c4", + "regex": "." + }, + { + "hash": "aa455ec5ba0e20125e0349f79d267445ccb73425459e9521d72224bb4b2b2a4c", + "regex": "." + }, + { + "hash": "61a492acaa0ba12d2cff6f358f9b0bc736360abdd8e8c798216ff4509826df08", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgfdg123\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "315fd8a58c319d85aafab0b8827689297cb8ecf4710d8b1cce6eaa1ff607e146", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7c819f77c52dca173796b50742179c1bd391d1a461621c765251dd5dca5fec61", + "regex": "(?i)^https?\\:\\/\\/dfgfgdgdfgdfgdf12452\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1b0b6155e88ef379dd811f07e119d53504548104231e15edad3a606e34b0d700", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "51be416ed2b8b8f97ee6bf8002ee223f71486b6d027f555b56a94f7b0e2d71eb", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4c35056e7a595281819b7391ea615ece37fa6ddfd825f13b7ce1bdbff01d1677", + "regex": "(?i)^https?\\:\\/\\/aaasdasd4as5dasdhfasdh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ee2cd9ac4c65af69c0efc37d8e8e64845a156b904c724c39aeed4f11e449ce06", + "regex": "(?i)^https?\\:\\/\\/ngfbflkcvmbvcb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b7a548c53ea73345687cc3bef970c1c47f12b97622c0f91a024e3aca0ef6cde8", + "regex": "(?i)^https?\\:\\/\\/neoxemviaegta\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d3f6ef29fa78442c03525a24a95741a7706825c28050d1b14c224afad68b0c63", + "regex": "(?i)^https?\\:\\/\\/iuhkjhnksdbnjfh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a7424624feb33e565e5a5c697ec4391b483e569b83b0a81cb179cb56505561d7", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "68b87b53cb9940f1c6a95993844b6d76b6a9497113ac7874d63bd3c0a83706fa", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8152af54a2034dfddb08a7af1ea790c134fdcf3632c698cbff2cac0d0e2d635d", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfsdfsdfsdcccc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d5a699f4ac5b04966d9e1250acf13f16194c0226291834fbcd28d2f1f7627a4d", + "regex": "(?i)^https?\\:\\/\\/moekxanrecaraw\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "91f5c9979c05e2fbe9c00d232ff831d99f65b7e709b7ee68d348943f8894163c", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f5723e4c1b16ccd8db18cfcaef24a2ae30ae3d540db79c378046137a48718413", + "regex": "(?i)^https?\\:\\/\\/fdghjdfhgjdfnhg11\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e8ce621b5e4ab2ccfaf2c3d909ece535ffa20b9696867474d9c17d949e3794ac", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "324e0ad32e731f0870e822830f0b1626de672aa9ba10f6533b6ed4557ac37e03", + "regex": "(?i)^https?\\:\\/\\/fdjkghbkdfjgkjdf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "262866da0adbb5c6f19b448738b188a5496e43255df34517427b378972f4f250", + "regex": "(?i)^https?\\:\\/\\/xcbvnbxcnvbxc12245\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "75cd9d8ee3c1a0347c25ec1ba6f6d0eea181715f5f0e15e9a77af147a74f92ba", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdfs113\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "216e0761ba9d45ccdeb05eb36b3768c6cd5263a79751639fb486cff1bc0b7c95", + "regex": "(?i)^https?\\:\\/\\/sdgyderyertuyfghfjdfdhhfgfgh\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6d9ea88569d264ed4e224f3b61b1c9c0dbd9581f08bdb5d8610f7cc7a2584bf3", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ee64fc586ede0e6c370051b18a9e15b642e139aec9d24a9789182c754dcb4bf5", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group11\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "932bdb21329fa68e3955fc41cd469fb7f9f3619676be50bab6c3888df30cc60d", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ab88681098b2de4ea701e0a475fa286e7dc39c9486fc93488785b6cf337807f9", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgkdfkgkl12252\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2af04c73add759d85f33608a952b98eb05be74332c12d267ba43f52c5df75a6c", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cbadb232d8c6228d0791ccc6705b3c3838e518418920f069ad99f3f16834f367", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f35002a92d074a6dc653b94314b51173cd9ddedfbbbd2a8488f63ac8fc5e7ff9", + "regex": "(?i)^https?\\:\\/\\/iuhkjhnksdbnjfh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c737d86639c97fd221edafbbfc401b21a830659b9e3903e03ac3999aa3ebf2a7", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3a0057b23e5bd89e5a169c5d4702c62822b6fb240c1527fab1f55daa55a769e3", + "regex": "." + }, + { + "hash": "08d4cf77c184a7b17f98389cd8f1780b1e6e4035aec1174908f0d4cb2b8885ac", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c2faace29b3fbea10380fa9e4ee6579b2f3e4728a2d19a60d3b5ba6c88b8cf7f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bri\\-mp06\\.zip" + }, + { + "hash": "e3eca505883657f918b4cd3e3957a3aacd853ca5a7c193e50ace3c5ab5a91902", + "regex": "(?i)^https?\\:\\/\\/hotclipshubs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b75b9c56b6c168c3756df741c7927c4bb2613b4a33b4999935e086f3d0a9396c", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f449267569e43d175a743cec6c81bfd30e57f1e372b9bad54c22d7854f0f5f21", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "258af5cce7b50fa31019f7187d0a4ce73cf190704fde5da984e47f05703af283", + "regex": "(?i)^https?\\:\\/\\/ssdfjdsgfhdshfbdsh122456\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "047ef02b274e64f4ae241393d936ee455f7bbd26620860dae3bbd00c61538151", + "regex": "(?i)^https?\\:\\/\\/hotclipshubs\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ca3031ddc254b0066dd81a6aa913851b33fa9fe2445ba0c6023c288be07fedcd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f5e988ad4583154f1b4d59a477179168aead3014b808105b1d87e2aa1b05e70", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c768cbd765aad09322ed5742895da73447f347c380979a7df8770a40cf6eb7fb", + "regex": "(?i)^https?\\:\\/\\/dfgdhguidhgidfgjdf1114\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ef9634d1a91ad709c81b7d1fd5263299e9bb97861521985db06e921446b5b289", + "regex": "(?i)^https?\\:\\/\\/meoijnuaegar\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f3efb01f95cf4ac14cd3a2c90c326e8f874b787591c7c37d99cb710b859897b0", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3cb31e75238ed905aef76c7b806356fd3a34f2502132aecda08b3736e38f4bf9", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a11fec2a797126099bf0f531fc0e705a87b3609948a3b29a076cc6d735e9295b", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7a80d56f43d13f3bdc437b18c4c235b60ec5b547e02236dc7c44f7e97bc4d4b1", + "regex": "(?i)^https?\\:\\/\\/fdbgjkdfgjkdfng11447\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1b2777a15f2f7c48728ca7ba961cf6faba8552e3da0accc9c8e5007826058026", + "regex": "(?i)^https?\\:\\/\\/aasdasdashegqwehwfq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "29ed011d75c144e6938269f707801f8831550079d0f1c34b9e9b94eb7e81ad92", + "regex": "(?i)^https?\\:\\/\\/aasdasdhgfdjghd12\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9f8a90008f00bc29a12d751d9a98a21736dbe8222845715799bccc43b6adab45", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e7b44d417509f6a57325397c882719408a785b907e9e2b1c6a9bf699b7842ec3", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b654d8d26aede36409d5849197a028cb25dcfdc7e8e8dc1b3005639c84cf6a88", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjfjfgjfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c96b81f385b17e656c57bb0fe28ad137a9e3c97da76bea263487168b8c577a1e", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "43c2f8b4f22a1b439d4b6f5b44a76525015d571c8b0654e3e874b0fd93f94357", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxxx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "885b276d29f643461a5d1cf57caf21a16e6f6831ec931abc640a58fc32e6c820", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a7c549fda35c7dde85b20d99cfed3926687be26713a79786023b609ed0443cbd", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d0add4d493d1c2508db3decd77510b925690e28a13c74a6ea3756bc565c5432b", + "regex": "(?i)^https?\\:\\/\\/gfbjncvjknbcvb123455\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1b0f33f778be7b3f714a017e0dc2a49d080876eec4f0c10388491391e921bdb2", + "regex": "." + }, + { + "hash": "eda6d238b4f020b90066d280dd6489ab81f52360714840bce97b5631abaee422", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c04547de4507914e9d29e51004581284bab0782de3dcfe8d4ca2f22cec56b7ac", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3a4230670652b7e488bfddf9e26ed54f44452363b7dd7166587436bdf819e201", + "regex": "(?i)^https?\\:\\/\\/hdgfyhytruyufjfgjgfjfgjjrtffgjfjgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "467384c591a75ec0f06d8b7cded335fc9c058a1ae33f8bb287956e1f71a05fc4", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdzxc16\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ca21385307e253623e9e1e997af8fc46ee7764059612d8121db0ef287247460a", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "995310021f59b7fabbe0ab0d7bcc88f62d71d79145a4f7c668accfaf56863218", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4c0e449d6500474c33363b9731f253fc2203a80021860345b1e8aa8ae98838d4", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "db18c2dc43a84c11f9a5d2b51f09c5899120479a7f2d4b4c5ed5648c66b32c0a", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b45c4b43683187eb6e50cb4445841049a7a131d313b5e03b0feaca43ce9d5819", + "regex": "(?i)^https?\\:\\/\\/xvideohotx8\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c46e758f1334f53eb3f7befeceb768c6bca39fbbcc9bd307a5cf38e4e229e6b6", + "regex": "(?i)^https?\\:\\/\\/meoincuehavca\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "088929efb349b034553353917ed016532aa239503bea0bfa67f12d36245d37d1", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgkdfkgkl12252\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "71684961db57367a0b3efc28414f2038fa1cdeb4827f28ddf4b84cebe0cc4f18", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8069964199fc67a90aa3541559862d8562394f929badb8c76744c589a8206886", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmakcamsea\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "26c74445d264ded2e2a422fb93774a0ee0f8750e7f3ec4cc8e0e254f5531febb", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a762656c8da55be18483fe5802b694ca277ffe0f4ba207fdd9c8eac7f6ca8e50", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "75f42cfc875a1881f038ca50833032d4e1ed5e4cdc8f8edb821493337d4a0fd1", + "regex": "(?i)^https?\\:\\/\\/dfhdgkdfjdfjdfjdfjdfjghdfj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "392836e109d5f66fa6a3c696a534138ec04c1f9647f34a47d6e1d8323a79e83d", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fe082cfb437c2505fdf49a299a132d9be8344946c43f419f7a11d80f7bcd711b", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7d61fff3e269a2633617446bd85b110148fdcd2285dcd6b55191ac35c3b35fa2", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8c5dfa8899e117364dbf1f01ab222b9f6d076c3b8402f4015478808c7e1c87cd", + "regex": "." + }, + { + "hash": "ae01945277717d3fa562663a8d54fea029cb6124f82c9fa9eea97c3c85a21b51", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "75932b0945512e1ec71015291c0ecb2ea94782dd001057e357bb75882c32be63", + "regex": "(?i)^https?\\:\\/\\/35479865\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bd826ed27ea12683df88b08665a9db922da525ca79e4e86ec8f93d60a2c06e96", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6decdd6117db96d5515805604af8f19cfc41d8763038361f92c254cdd003b3e2", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "03f6dc94822cddf55192b4662a07d57b50bcfc48c1ba2baa2df3bec5ac8a9f7e", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f4a012c7b693e62e387b911bb82f1909bd853f1c6c44360502811417b8b609f2", + "regex": "(?i)^https?\\:\\/\\/xvideohotz1\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d2c7c20cc3ac27d489ce7b2b247dfaaf0abad2e012703116718decace452fbde", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5b12b613a9c9eb0547236b3d22f2907983c1f9e0b7370e140bc33699db46fa6d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyklasckascmasme\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "513de14a26895cabf3df887627d51c496baf11cc0cec3cfabffaf4dd78554448", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgkdfkgkl12252\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5044d54dfd7daad662c1e010cfe9c9b69aa4cfcd1d6991f215ead138b2109a6f", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7c8977776c0092d7b3b13cfae2cb27c7164570f24af19460812733278a75b21f", + "regex": "." + }, + { + "hash": "d050b9e73a6e0d1d09cc33596e785c4eabafd7033b17ea63014f4d8a992a68c3", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjfjfgjfg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4d46ab11aa68366dcc2c9df90f7db0ccceefcc01c9519e29983cefd51a569015", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "995d6308daffd204452b463edbfab36da90199440629a374478a79b07c834649", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ece25b390e98639086b37b7199180c47c6033de597a26a05c4baadf9174d7240", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "92d8ea0389be4f8517e4a123ad25f52f29d141b8b2ce3d05b37fc40c3e7af14f", + "regex": "(?i)^https?\\:\\/\\/bnomeuxaueta\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bd16bf14b7ae292fda8536dd19e44d24f12668bbf35b02221ca0bb4e8d4c4ade", + "regex": "(?i)^https?\\:\\/\\/sdgyderyertuyfghfjdfdhhfgfgh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "437d9a55abcfecf98a41fd74536de46c09fa0638cf26bdc90fd063f145625f0d", + "regex": "(?i)^https?\\:\\/\\/moemxaheta\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "15215a56ab9626b1cb8dc20ca62fbc0af7234c8f3b6f9b53dc345e0b5ec91a0f", + "regex": "(?i)^https?\\:\\/\\/xvideohotz2\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "817f77d160099aa596137033060e491f27e893e388f89a04a2e0dc8b5e00c53b", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7f6c02217719a783157e47bc1361a85e7ba3660a043a493ee59b08cf39488e7c", + "regex": "(?i)^https?\\:\\/\\/aasdasdashegqwehwfq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9bbd4fc40ee311e227838b783b9d210717d89cd39f6ac45c8a9545d2e2fac93b", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b138591709e4f4789f7aca9e260b50f39551652759322e35b497d286e59b132f", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdgfasdgasf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6c611c29cb7d215bc51f22f869c8b64c0cb3cd8835c6fda65f949a2713024e67", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ba849a7d0f9e81b301d3fa98e9c3acce31860e9ede9c169d54f6edd46719c068", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "16695c79eb391fe23636f70bfcc54a9e56702ee7691c08a1eded1862ada5b7c6", + "regex": "(?i)^https?\\:\\/\\/mokeuixhaevae\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bd6bb6f89d0ded7ff723c6cc2986ffb9cee55ee548d5d3645351aa423e40d180", + "regex": "(?i)^https?\\:\\/\\/nabaoecabresa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "034fc7515bd11e50891228ef532741d86b7878cf2f09c17ab557f7105331c0f7", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "843a548d86d453f955423ab14c2cf78de8b29b6f9f41d4061c762058c09562f5", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "64409ecc9b20077884566c692790e43512429fcee1a0fb53452ca64979e801d1", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "528b000fb1a65aa3a90eea2f67b14a76f58ce5e463489cce82d01805680ee1b9", + "regex": "(?i)^https?\\:\\/\\/ssdfjdsgfhdshfbdsh122456\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eeb44c941aa3453cf8afc0036009d6b3959b4ec4052df8d4005818ac7862b3d7", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2efb01b37e3508635df97a8e51be9585fa233d1fd6662c2c0e87e5add65f0aa4", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f7e21d800cfe73e4b68ca0f780d6880a193e56995b711e6e641854554dd16912", + "regex": "." + }, + { + "hash": "3a2cce86051892e8611a539850255efe904302be4d02fc008b3a522bf01af11a", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7be43c483ebf0b8a474f9deb3cea7502f66fc64b9b89a8e2e24a515870f21807", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "056a287d12144283e584ce930b2c57de9983e860d44189a45ea96698d4370f34", + "regex": "." + }, + { + "hash": "a1f6d7dc9759b74cd9492e57d0e5de46d330d80e82e7f32b026a63fadf22a8b6", + "regex": "." + }, + { + "hash": "314a151f631bdf2b62fc1a25a066d459bc979198955ab4e3b3a6ed6e2ecb8180", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a99d6a8f5761e517e06f761260200588b32ead641b14b2963d4a10f5e2831b0b", + "regex": "(?i)^https?\\:\\/\\/im25\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c6053cac184a61face019ba46fa2086daa20dcfb7ec3adcb0362648ddf418672", + "regex": "." + }, + { + "hash": "8146ee3b81be7342fd904d4501bbe4e76488479d86a74e883a2f04b88d0fb791", + "regex": "(?i)^https?\\:\\/\\/bneixaetcaeaew\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "03f2c416076f1455d2f4228fd5dbf2023e0f19412777292d1275e35934f74f89", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d1be2851c0c2e796c1ac79660cb72994d44537e066c4bae3bd04a0cd8918e48a", + "regex": "(?i)^https?\\:\\/\\/khjkasdgashjdgasjhdfsa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7760d3001f91777914fa668a793f113bf9f98cac01c5c481540b27641558a219", + "regex": "(?i)^https?\\:\\/\\/nmoemcharvae\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ad1c7de81e8bb4b17d684acb62747c6fb39bac17201a6eaf190cbaf0e221b2b5", + "regex": "(?i)^https?\\:\\/\\/aaasdasd4as5dasdhfasdh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a198bc0b72db75848e24121d9227d14f16267ad3bfe28ea6a0c0a284426a1bb4", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9f05d14ee0c3780268ba6fbb197c8fc85231de7fa27ca8ae74c16ed568cf4208", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfsdfsdfsdcccc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4b0363cc17d0cf575b4749e395f76fc9accb5859e72f1e701f28f108c25a5ab5", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8974f4e954b5f2c35a6f22b87f8f4bf78629fca504a7d6edee766fd54e9da723", + "regex": "(?i)^https?\\:\\/\\/748977455648978\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0db0fe4c5e4577ff0e8b786aeba3edcd474304a634d9145513708011d6594986", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a1a309b46743cecb9ff0ba17937ef4a8dadd6b47c92b14abc307c9aaf5ccada7", + "regex": "(?i)^https?\\:\\/\\/xcbvnbxcnvbxc12245\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "58c098a44fd00558367b96998b79ed63f311f7c36ed098a0093ad8e6b8098275", + "regex": "(?i)^https?\\:\\/\\/dfgfgdgdfgdfgdf12452\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d83ec7a2818e5f0c77e771dd247c035ad8c61f2ce40d06007858fc04abf55464", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0d7be07512200ec27c93f05a06f0de3ea85fa062e4c3b015a69192b2490313c2", + "regex": "(?i)^https?\\:\\/\\/5649875\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6af378156bd4b57d3026bf94efc00296868613676c60dc50061ab6c9a0703e1b", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "771fb7047ecdd5c179cfdd29fc0b3872957c9b071260dbfaa96f8afdf1143adb", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "11a7ea91203ca7b7e5c2d7a9b24673e0d383f95baa527c676a509d00b405ecc0", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bc7f9e808a310c78942cdec08474fee4fbe0ef9a4a11988b30b4ba4ec5773673", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "53ef7a81ff682f228e8441731b5c90c3a450a670402492d16d5e97cb21e14c4d", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0156c3393cc0c58aca586dda26b8bacba81089b53acb05253e3745ad589e3501", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5f68eed7edab2ee2c570d4e426d71ba1da62f2d62d1f1a1212ea615d328f7f2a", + "regex": "(?i)^https?\\:\\/\\/triolmncaskeaotansebasydaz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e1f0ff30aa11a22ab22e738e934b3eb3a4fdc4ec4a8b75dce4ae47df4244c715", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ce607ed679f160c5cc7e2b6d524315026ba55a53e97a45acc729d00073692c58", + "regex": "(?i)^https?\\:\\/\\/bomienxaeta\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6c0037070702b4210dfaf9fd2ad8dd415434d5c685146fcddd6fae804aecbbd1", + "regex": "(?i)^https?\\:\\/\\/xcbvnbxcnvbxc12245\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8bb0bd522e04fa3f40459ed496fc5bb4dd510446de777d3a0d6ca65dc5aace68", + "regex": "(?i)^https?\\:\\/\\/xvideohotx8\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "18f24a20f057aa5cef4f0d52977abfab15c505a2c5f24d21dfaa90ebb30097ca", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "31526e8973781d669635b2f9bc9a83d7e41ce8f658d972ffecf08861f5905c47", + "regex": "(?i)^https?\\:\\/\\/kjsdkfjsdk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1c72cb57ec36a30538ae4570595e7db597659ff23640deb658be6d39989a1186", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "134c8f826423f52c9096aed7f283d5bcfc0a031af660ec77d0412c6f7125e31d", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c8abd4bdbadfd24913a6b2b00eafebe7c21f1da960bb92d3fa76146361d8d845", + "regex": "(?i)^https?\\:\\/\\/fhhtfutrurtfujfgjuutjgjgfjgf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b0e5156e8bf8bd8b78073bd7736220bd3ad8b3f6eee16da3d64f107e79ed6526", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "27bcdf617a3e2f1ad76462c36e577ea564a5444cf9f40b23f58a63d7adec716a", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5ade5a6790750cd05a4af6be8e012ee8b9df6b8c4b92df9f97ccfff5d9cf13d4", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ba7b8aef9aa957179e6f1069759bd765181de21aeb77854ff343774d918803a1", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "da16de8684c6fdbf44e0c6f4d11f8d155c5e70542f9849acb5d5953e36c56f3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "36dca7c7bcff9540d3f772bd7c3b036297fb32e6122a156fcde4e758462acf93", + "regex": "." + }, + { + "hash": "55d8176917c06e97078310e0200c142966de4ba8083dceb4a7eb24d28b9d4248", + "regex": "(?i)^https?\\:\\/\\/45646556\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e4f6ab0176fdb0a26a999bfd861e9be5a9990b4ef474a31d6a5f10cd9b007b74", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fbe389e393c8c49d3a434b57d96dfbabefdcebc8a3b5925a96af8a3550ff94ad", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7ecfdc9d9613f53eb84165afdd4c30bacaaf69ed0cd96a1036d4e46f6bc5ea52", + "regex": "(?i)^https?\\:\\/\\/hotclipshubs\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6692fa345e0a4ad76b6e24b5d7f68457daf193b5b5ef0ba67f4837a77801decb", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b138df62f9ba9663cdb460c32e8d01aabbf2c5036409197739c4dd9dcab51462", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "81ad1b3f5b64c2b2e3887529f3d8e8a14313e96fe7167f5feffdf25e13069345", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f897ffb483c9e823870e1960e13d5557af7d10b981214d5c0038934c2195fab8", + "regex": "(?i)^https?\\:\\/\\/noemxuarta\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "71a46f4e005befe60e0359d4077172d8cef898ba425bed601c756c29dddbf05e", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9d87b121e1b1e5efb76e14d80d8f81aae3df434236cd46bfd1d9555195b1c018", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UKep5KcOm(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fbb1164462f6c03e7f69f93d87314ace49e541933d302095c57e0661f34d3920", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "96e5e00fe1d1669a40bf135d7f7b46fe5d260ad6a09a4ea7734e25e6cdbe213b", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8b24d0513f6fe70e571980c9ac12234cf058465f18ed4a32c2f45beb0f9661a1", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "39e2309f46188187a7ff42ca754558e00d0548b014f22c57022b07fe092590e3", + "regex": "(?i)^https?\\:\\/\\/fdjkghbkdfjgkjdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e3d71f1765a3beaa41f2a02823c4b743e7f94fe7afa6951d772cb666ce5603a3", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0cee502793dc25a38f3bac0afbdf0b29fd8413a1c0a9e3074146d62beec90808", + "regex": "(?i)^https?\\:\\/\\/sdgdfyhtutrujujurtufgjjj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d043ba58b785c5863b2807db0f4a06495eca48291f8539c47b134bfe6c097194", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7593da3c6afae3a18200c567638c1b0bbcaeb7749f759e44b4dc34315ca39ce5", + "regex": "." + }, + { + "hash": "e2a1c9a51cdfa5de5978de14699ce696e8ec61db596142262fe5329585696f04", + "regex": "(?i)^https?\\:\\/\\/6549784162\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6163c4404798d037918d12b43bcd9e0d83d3b71e38fde0639a1a4b031871e57b", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "343c640f3ac465aad9334c2145a7352394bae7ddb612e17bf4a18a295eaa999f", + "regex": "(?i)^https?\\:\\/\\/fhhtfutrurtfujfgjuutjgjgfjgf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "539cae0aa2d138130599db70454f84fc979f5a61e15c5948b8d829550f6e808e", + "regex": "." + }, + { + "hash": "1fb2f3ccf71b7a5b1e9945ab17a520b21a429286c888a18475380dd3cbb83b3b", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6c1eb82a4fb997393dc7d38fed781c00dc9bec36dfc882fdad736a3f855fefda", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgdfgfdg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9915fc6f3c5868bfa46694b7dfecff9fe01b560bba7749b301ffbef8c98c1c60", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site(?:\\?|$)" + }, + { + "hash": "44dfb623a2a4ce0c9b6fd73737887d1f63f26671e6123985daac991c9b9b785c", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdasdasdasqwe\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2fd68678ed52e8d931863e1f87e3bcb5c5bb77146fbaca154cf4a57b17c67b24", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7332391ed291043e49da8edafab1604cf71e6b7ab99f37949be1b7a51e302113", + "regex": "(?i)^https?\\:\\/\\/neoxemviaegta\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "59a643c50ce7fac8583b6f89ac6ad94376c11c9bf2441a9a10b7de22feb21d29", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3c6ace35ec5faae7a5ad2f4eee7f59547533c1f1800556ffdc509798d2e1419d", + "regex": "(?i)^https?\\:\\/\\/khjkasdgashjdgasjhdfsa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e227a43b1bd0bf86a4aead1004498b40fb1de4f9477aec7a083e9b9c13a290d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "028ec266dc24540706e8c3a5f648bf5c2d67973d148a024100b42e868f18901e", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "dc7fd2900b91d32e3ec23b85e23ff329d979f773b481b84032f45a493b3fed94", + "regex": "." + }, + { + "hash": "11c052964c1bc0a0169fbf46c79089e060552c1de07d7255d2c42cf65d2f74c9", + "regex": "(?i)^https?\\:\\/\\/neoxemviaegta\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4468c8c938ae8c72b24df1aef33f5010331a78d3968e5098e0e89a1f50af6d9e", + "regex": "(?i)^https?\\:\\/\\/bnomeuxaueta\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bc0d1d3ace124f41270565ac64c203e5398a575c8eded845a2655a268e4c3f96", + "regex": "(?i)^https?\\:\\/\\/aaasghdfagshdfasghfdas\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1bd18414696f09ce9a17b5fe019989eec5861f2c53f12d5b95e3a06efc5d5938", + "regex": "." + }, + { + "hash": "64c91ddf7aa1b8920d24d0b8c0221e11eed833729db63e757a75d0db5e3fd634", + "regex": "(?i)^https?\\:\\/\\/dfbdsbfhsdbfhj124568\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "dfb744068f7474d19ee490e39c1849c1c1054d70d67db4e360a481389e1c1615", + "regex": "(?i)^https?\\:\\/\\/hdgfyhytruyufjfgjgfjfgjjrtffgjfjgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f26eeafcfd5726794f7b341ac7d640ae8e7385b6172107ea50213c29a435d7b4", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupdrrrrff\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "727bcf9726e7d1b4254a14edba3df2cfafc47ec7ebb01eba28f459e7c2982ffb", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "5f6ffe889b669855789106e2cff86e458c6975d6341484b1fa05c4e6cd3690e6", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "aefe1c5d173f9dff40cea6a8583ad471e82ac59a3942ff1d7878473559c7448b", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f7e036756891e2dfda437d3d793f876599dd0b11a7890151267edea9463e50a9", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "15dc524a5a933b84ecf7cc2ca5ede7d31351c1e86247b68603a4a6ce97b9cf27", + "regex": "(?i)^https?\\:\\/\\/neoxemviaegta\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0d83acec638138d58e309f5c269f18e6cbc05600814ca3a31a7f3c901c975ca7", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9c7655614b0eae22737b58f647cb35cb8d8e3782c3e3fc4946ec432de5b36efe", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0c945e92e9b8fae11fec478bcc490ec1724636c6cf6b709a63b34742cd40b5f8", + "regex": "(?i)^https?\\:\\/\\/kjsdkfjsdk\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "302ee7ff7a00391f20e0b5d1a5a67d8dc2ffeb1992aad8a7019ee3aa06bd71db", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "35ed9282728518f9006bb9802a0480b07ea7e5737b0f01be070eaad464daa65f", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7062a91819f23fb2fea5b2d34999bafcd0c7ab8f64c85ab2ead45cfc008b68d9", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdzxc16\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ab6ac8df27a33799c23d1d15db6626b00e2b00352b519228c41858ad0b908284", + "regex": "(?i)^https?\\:\\/\\/nmeocxnarcawxa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9609ef6a8c00d04bf826d84d3ef51aa5748496577b2a52902f7b935e26ea4ead", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b3a1c27c1f533bbb75597e37af9d25a206984d0129a5557eb4e47cae2b14bf45", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "02804dbbb14c0ac0a089bf7f922d0f06fbb114834ec7a3dbe1963426c73050a6", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "da8dafcaee6d16f8565f1b0b783aeec8fbf22375382f34ca26b87141361fa74d", + "regex": "(?i)^https?\\:\\/\\/ervitres\\.click(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "c5f395662a0a06da55a03ca4374da47589b4e3128ca6009344f21394f3a23294", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9ee85d017e1e42eb01adc4b955240e060f671f05ad771507caf4f1ed5852e180", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b19970bc605b94334970e393ad7a8fe11fd481ad79a60bd17998447a1f6e2167", + "regex": "." + }, + { + "hash": "38cf1dd3a6a30b1673edb136142a3bc387ff516aadddb9d531146ca56bdfb89c", + "regex": "(?i)^https?\\:\\/\\/ljghdahjdfaghdfagdhafgsh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bf61bce17aef1c32b2ac37f8d1f665d27883c1512fc3d9f4b1ff544c65dbec56", + "regex": "(?i)^https?\\:\\/\\/gfbjncvjknbcvb123455\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bd08af59c7f91c390782b8491c876bceefd7bc930ea0e22886d6f17f1481ab25", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6c4e4560b81c05c7b31419ad2992dfed07617c4a6f9976a64001ffc16f764af9", + "regex": "(?i)^https?\\:\\/\\/mmskzrpijtme\\.com\\%E2\\%88\\%95mmskzrpijtme\\%E2\\%88\\%95gkUADiMvtnpkxadkExmXLrsBj\\%E2\\%88\\%95PiBnAizUiCeW\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zmrkjRpvxmKwZBobMmSv\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "436e5e82547d560d1d7dee29127f5762c6653ae5fdb98a677e5f0970bde7c509", + "regex": "(?i)^https?\\:\\/\\/skdjfksjdfnksjd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a9ba2c91df5d8a947e5330d4936d5fdd601ba17826c4fca77882af0a30212307", + "regex": "(?i)^https?\\:\\/\\/52465789458\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "11bb30b3f48a59f45bccc799238dc58d3d92464be6f6b3a0a7a9d3f43ef45f04", + "regex": "(?i)^https?\\:\\/\\/attacayyhhajajabsishshsusvsjsvsushs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3eced06b263166a317c40fe8faa05f31bc0272615d1cf44e83ebd70932cca534", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a19c00ff214f7e7fe2434cbd40059f054c7f5fb6a020031264b2d9fe7073ab3b", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfgdfhgfhgfvcgfh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3df9ef794f21dc545bd074c2c12686ad496af69e073390e1442b6da7c622e546", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e755d8f95b077b840abff96ab527dc529c955f762c0a1bd96c51fb5a7c7c45dc", + "regex": "." + }, + { + "hash": "c49984ef44940ed7d23e5699b6a128531279bf2efd309208a57856c9955e0ef8", + "regex": "(?i)^https?\\:\\/\\/skdjfksjdfnksjd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "113b96ac6ef2976000a4b5060b37ec0613fd57438d08f94e9ad726a50c6e2bae", + "regex": "(?i)^https?\\:\\/\\/dsfsdfdfhhfghgghkk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "efa24dd6c58cb74667f88861ad799ed915acaa7bf72aff4181e7b18e8f9003e6", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "76d7603386554c7aef98fc26250f6e53a0856b5156a317213a1156bbb8efd97e", + "regex": "(?i)^https?\\:\\/\\/sdgdfyhtutrujujurtufgjjj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dad517c44a57d643241dd20eff34f516b2d0a8195a3493ad857e31de7bab3994", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "54fcb114a69675f59a5627629425fb700e3fafc31601600c0f61aa4136abad3d", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgfdg123\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "df9413027b884729e2af5128793fece22a3bb38d119fd8acbe875df8e5102d53", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "818b328a241e8ca4655e95466558dbd5a3a4cc9709fc1fad4883fdac5b181a42", + "regex": "(?i)^https?\\:\\/\\/hydfgufytiuigjgirtyigjghkhk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e59873f105e7eaa253b1700d73042a9636f635e61f4980e6985e3e7fd06ce413", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ac42e537eb213eb0603dcc69ce9c2b64cd17a8db1a0d3408979eab71aab3393d", + "regex": "(?i)^https?\\:\\/\\/meoincuehavca\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5895d1355a171049b901dc6857fc358b74bfc9e70ff93284d4151079b5b869f3", + "regex": "(?i)^https?\\:\\/\\/52465789458\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "054cefcb9bb8a39e694cb54ca2343408cc2b4376b0507b8536524bd2b771f264", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "72f074942f1f0c369070c47d021d069e68c2bab2cb3d698e29e83bfda0583f55", + "regex": "(?i)^https?\\:\\/\\/xvideohotx2\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e0a20244e3d719a81777aefd656f12dfb9767c9ee5584d07b7033d23ede3273e", + "regex": "(?i)^https?\\:\\/\\/aasdasdashegqwehwfq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "edebd78ec0e7d23bcbe4c7c51b231455e3bdc2fec5d4853bf6a8cdd528bfb0ef", + "regex": "." + }, + { + "hash": "8152937861105f9183725a028b20ad9a3c70cbd5e7f8d18eef10db1852625d33", + "regex": "." + }, + { + "hash": "6c855065392e03cc1fd249e510403b3556f42867827eca4ba19a2dbd4ca92149", + "regex": "(?i)^https?\\:\\/\\/dfgdfgndfklgmndlfk11\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3d411b82c6a351e9cd001c225ef8468348a29d4bb10faef6924c67aa3215c54d", + "regex": "(?i)^https?\\:\\/\\/kjkghhfgahjdfasghd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ad443fc75d55e38ae5a613f81e096957b803a387b665a2f81fd2b2e63c86fe70", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv9\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "07ab55ebfeb2e352de70ea2cc29b11b8efa935f9e5177614316f4a6d37ebc44d", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2bbd98acb43545fef69baa09211664421766cc37a277cdaf1cf849ea2a875cfa", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fb9f851fe03900192dcb33da06d962f64a4d4320e7170a1e6137c5f251bd1a30", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0eeb21a540036fd68def8713541657467b80b5b6f42a119f8be1a676e572d4a1", + "regex": "." + }, + { + "hash": "aeb5cfd12b241816f663d3f784975622c5eb491f63be1b8c112f410864255126", + "regex": "." + }, + { + "hash": "20ddd729ee65b68a49d3b2a26e038969ad6194f978f3639e48e9ab519855f6d4", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfbsdbsdnf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dbae1c8f04aeb8044360178a6e24c5a67f632c8ff7b48c22ee993672c449a721", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3ef9d551674bffb808d1d126442e4856c5b4df3358d3836ce06a9eb614670230", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b46e4cd4fe2b880d624405e6bb55726499df942264176d79df1c5c28eb56897a", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgfdg123\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ff62eb951fd536e4f25f58d77eee27e104ebbd960a43ab3a22e674c354e3175f", + "regex": "(?i)^https?\\:\\/\\/nkeoxaaeycaxa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3b6ddda9da3f69591562bc2460b83abb519bbdff6b766a588d0fa7f10125d620", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bcd37f59ae8cc1432588e28f2d16eda85fea309a6ae9adb3cf2933de02299710", + "regex": "." + }, + { + "hash": "33bb830638ddd3c1b161ad551f98a049f7cab1a53bac9ce34eaa64798f5a8f3f", + "regex": "(?i)^https?\\:\\/\\/748977455648978\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2c9f5d35b5a038c69031febb7d64e13ecab30ca128ecd5b62803f6f6cbdb744b", + "regex": "(?i)^https?\\:\\/\\/hdvideofever\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b0ca95f68279bc0f976a39b5f3e5d895f710e3340345e7996f0c27d04dfd7270", + "regex": "." + }, + { + "hash": "19eead7bb70519e0b8c4e9dd787ad7d343cbc6f46d16240f160a88925299c2b4", + "regex": "(?i)^https?\\:\\/\\/aasdasdashegqwehwfq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0711eacb076f0cfa2d01474f8e692103f6dd11885dc2bd66e2b7812aac624be0", + "regex": "(?i)^https?\\:\\/\\/moekxanrecaraw\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "da4d3471fa9164c2b4b3310875d0ad173439c41ed0ddac90cc3deaef88ad58b5", + "regex": "(?i)^https?\\:\\/\\/dfhdgkdfjdfjdfjdfjdfjghdfj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f55b5bcaad60ca7e2b48ff237d1626d8ec433761a8bdddcef3e0d000f4b9b633", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "034006300dcb889c390804e19c9eb02992f52f845addc9bd77db860c162eb213", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3e5d093d268a60cb7c65fbf588d4bab24bd3e8ce2d5e108088e5ca7071adfaeb", + "regex": "(?i)^https?\\:\\/\\/dfgfdgffdgf2125\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "356761a165934418c2b779078099075a0cf09039e2dc1c948913b8826673525f", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a12e2e4a54ecf199af855fb22f1796f6ac2d55f009ccdf7387fd0af3c13d72f9", + "regex": "(?i)^https?\\:\\/\\/nmeocxnarcawxa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "81e42e7415cd374b9082ce159668b2ce9a11dc86584926895a84a7dd4a376a0a", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "116f48351322ac00711a59e800f1a0cee3e41e9ade22c2fb9b73d95062414d12", + "regex": "(?i)^https?\\:\\/\\/neoxemviaegta\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f205d8a2aa30efa888458e2c0a7c8e9649024369664dbc692a8ade0607a02334", + "regex": "(?i)^https?\\:\\/\\/ngfbflkcvmbvcb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c8513f867f2aff63d55bca075cc8d8aff579ca4abf035a474f2edf47881f6c73", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7fb8381922a06a1ee370d01395fe84fe8b5f99a01df9fcc56668ab85ddb03daa", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfdfg33\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "01ef0b732317d92a9104e701c4883a98ce9dc14e537e9c9be73d7c72bc26282a", + "regex": "(?i)^https?\\:\\/\\/bhfsdbfhds145258\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "55d801b7975cf10542e03bbd45ab0a04833ad3728db9950e27bf38d2f2849111", + "regex": "." + }, + { + "hash": "a7d01a21581a8cdc313171b7484fb83c8a9c68dc6a97be3eada97017b43ce12e", + "regex": "." + }, + { + "hash": "c5cd796612aea985b10137bd38519000537a685d7522ad1aea2aff92bb7a9347", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mail21b4b7a467f2b3a74ff427af26a1$" + }, + { + "hash": "21e25def41dd6de2340d3aaa6aeb1bc775c5bd0c26d709fedfb784a2d289837f", + "regex": "(?i)^https?\\:\\/\\/mkoemuxarva\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1642eedd839a6ce28d1c64aaa6f624d19d3463dcb637b3713a5ac87afc8c5686", + "regex": "(?i)^https?\\:\\/\\/xvideohotz1\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a6ff2a2aea2968fda752da0b2d029b1b1fa3cad45296c402a4991a50ac61a52e", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "931df5ba8934ed173a652e9cc6f9391b4789f278413eb891c06f3e53a503517e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ebb2477915d62f7fbc12cdfe2f2611436f67d29eda95a86d66b0cb0d9c570f68", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cb3f0df0c520427022f4f253f86f470f98a0e4684efac9ca3b1871db1c1cfed2", + "regex": "(?i)^https?\\:\\/\\/koaemuawraewa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0a87eed61558ea8344e71bd1b8b1b4fa14f1fd7368ea09db630710081eab08cf", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8bb9a043df7e0ea5d1f41a70ddded7f5796ec119895a6d9d74c128e915acbfb8", + "regex": "(?i)^https?\\:\\/\\/nmoemxharcae\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f001028f1c64fad424882cf96e0a0903692ee34df83addff59250abac004b7d3", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfjsdhfgjsdhf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7eee1f722a787e113b4169c208135ced42b6be8b4c6f0a85c50c8adb339ee092", + "regex": "." + }, + { + "hash": "30d602e04262516a88fcd5cd52034b76db93076991fcdb259548076a454c3313", + "regex": "." + }, + { + "hash": "aed5761d606a86922d1fff00955a4bfad3582c701f4187a95a4825a82e57654a", + "regex": "(?i)^https?\\:\\/\\/aaasdasd4as5dasdhfasdh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b62e815906b55b8480548e2a19d2b049d8c28f246ab60da10a72b9572561c024", + "regex": "(?i)^https?\\:\\/\\/dasdjgashdgahsdghqwe312\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "512dd2af5c36ca3b2a8ac4be0aacd1e318f65c73d25ce51ec4d07358de35c32a", + "regex": "." + }, + { + "hash": "9c95fe4d618172e478b9a92ced617d72beca3713f035cc955a14bcfe2a4f7f86", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c22a4706640ee9748ec29d9a89628cd2095e4868ec56ffa29178f24d2d5b5", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "808315a4be57426b586ed18d3cb5bf2a91c9858ad65fbbdaf3e60e0b758b0326", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cdf031eb4902b80b15b151818eb5fb74e8bc89d962c3a8fc6812e73d0f9eaa7c", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wibkbr(?:\\?|$)" + }, + { + "hash": "9e5d0ef51c8df6e89d2606ba504f2a2216d5b092a9c38cc8b4caa7f3951b9682", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9b5af854977cf3bf9bd1bf49965c36786e0d8d1f29132e3f4c674c420b96eddd", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ab9a8847991b32f9b0be0b555409dce5f3bae5f169b3e2ec3a8ac29f4ea67a27", + "regex": "(?i)^https?\\:\\/\\/aaaadjhasfdjhasfdgasdfasjh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "74c608432a6f595efa37fcb01bfdee2b2489a71754f5a39684a65f8f5d79364a", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aa4dba5222415113fe968b54d2b4591e9e51a539377af1ce1a4f6d20c04f243f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7a3f60750c14f7828c364d8269a9ac633fcdbd1c5050ff92d2a5a6bc75677111", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7a07788d5c1deaf8671eeeb00c7f8bdd394842281f475819a88c2cc171ce6d88", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "73334a0ea640150816c35b49ceb0086ba1d6901ded00e1e7aa38b6a557e020ac", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c80f2d0a8ba1a10f241430a2ab4bdbe68cac2c2f34eac03a3d66716cbf421666", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6dd24fbb4518b52afa76ee9e99fdd07e3791d9285c1363ea54c3b445c9e0340d", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f9d82e6beda9aa37b97b7779234ab9fceb2e05b48d20f08a9756f7fa71c8143e", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1eaa2da8ec6795a74c7bed254831e9f95489c56eea3ed35ad35a002b113f7172", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0fcd2a0790fd863c831cde20353ab4eeac7ee9c061e44d67461ede18f65965e9", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b31918c6695b0d1efbca0623c666e912afaa096385fb507530ef804f9ff0b505", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ca661bcdc39960d465f40e27a4e7ba9a9b74afe59641524d84fa8ec1090522e6", + "regex": "." + }, + { + "hash": "fc87adfe8f34543057dd4fe1cbd5c738e71e4dfa45dcc57f6913e31fc5715cda", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5534360891192bd45b449a1610e8c8b4bfdd19df8289dc347c5dcc15746324bf", + "regex": "(?i)^https?\\:\\/\\/aasdasdhgfdjghd12\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "477ed3fcfc17b62f12f8d9e905f752d89b7c46ba9cec7d0a115cff70373c9bce", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "15d74fdadd78e5e82048b71585f0d283d2077bc4c548ecb2865691180ba1f2f8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmakcamsea\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "65ab344dc47249c1383181ed7b8550973ad0ed44e3197f090ec7ebd7825b0da2", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "108c4059cf52ee27153757ac84d37a29b4ebc6267f040040b4252d0b59a78e9e", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaeuvwa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "22db335b1f6767178184f9797c55dda30c384c8976623aeaf7041ac4b826130b", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f8c641aeefcbcbc0c9133d2b6dcc4783fdfefbd0084792c00330f96baa5306c1", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4ad1a8f91717109cb1463cf4c268fe0b0983fefcc66d3dde106dedaa3bbb4b0d", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9fbca71efa83eb118c692a73f584db2ba6e6fe6910247aaedd9a38cc4f53e724", + "regex": "(?i)^https?\\:\\/\\/45646556\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ad85656c232ebc68365f075e7a94b01f400418fb54ce9f64b04f4cac8ffa935b", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "09404a56afdd4ad581a97e0a27145ba2b8d00f57596a48f4b80c8e30b563f55c", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5d57fca600c8e18481267cc307fb230ce0119b99a7febb325d0dc976b259ef6b", + "regex": "." + }, + { + "hash": "b62c11a947da156d8e0e9074de78902355ae829051953323083cef1d93c95f67", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6e7e3aa2477ee93fbe11d7c5aa0016c14332d909c41563ded548daff851c163b", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "46d0dfeaba6b12a71293481801254967c50e6a44bb9bfc2e99804d40eb5344da", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9b68e4925d31fe701ccf0ab97bfd5a45cb6469d1c4c01c237a379b27e3a90618", + "regex": "." + }, + { + "hash": "f3a00ea73a5203152c8a71e4b1169ab60e53bc84fa18cff4da22b71f585cb708", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "250c130a4628fe21c37a27e26ac2346495c3e176a21e0014d1dc1021a7dfda0d", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "805c6792178f7b94bd39b5399dc86b42ae4f8e027dc40745367146f43b46e869", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "84661279aece728ca397ca35c129419b2d44886eb6559633f5d46a629e34fc45", + "regex": "(?i)^https?\\:\\/\\/moenxuaeta\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7854d29f2ce2caf6de1a4d7a89e343cfa78573ed93540fef9cb01760331cba73", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a82fa15e662326ba638611f37ab783ec2140ce211f18b1525c2537eaf952daa6", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "50e7fda592bc1911c8854ef836bd820d1f297a126d1025b3eed9eed13d165f6f", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgkdfkgkl12252\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e0926acd0c3d979224eca5b42be0d36d6f12ddcc94edc5bf1124b385b47ed1b5", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4159751606bed3eaeee534a0f37bb38f239ec8bdbcc11875fb521802232b7be3", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c33efc3ecd28f24c2a00de085345d8be7ce2b6d303197f3b563b06502701d299", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4897626af9bb5593ddd789dbb94e9f3e2a97e7f690d90911d9e17d149f1bd4e2", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5a333ebfcef4430185405a23664c0acff22060863e3320d52df61d5945fd7a1d", + "regex": "(?i)^https?\\:\\/\\/bsdjbfhgdjgf142552\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5db1d3f654e29f19ffd276aa29dd709439ea1fcc6d658d712bade100b996f5c8", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f79ae3d29c6f4c5375d5014b06024edaa5cd126cb0fde05f85ea46ae01823673", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "59568801feeb92e13fcac23ac547d5b936eef24245e306c967aaebfc6311af11", + "regex": "(?i)^https?\\:\\/\\/dgfdfytutrurgfjfjghhgjh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bc64aed75c289bf0df817faad65ed29abf69c9162e2f74b1a8d2008c73c4a6e6", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bb3d4b076519b790dc8f8915b9ea354f232a0ef29a7d1c0da4d722da5017e936", + "regex": "(?i)^https?\\:\\/\\/bneixaetcaeaew\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f7bee7559a1cdc26bc39fbf05989f2108605dd9443b3b6bf4997f51467add1fa", + "regex": "(?i)^https?\\:\\/\\/nmeocxnarcawxa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "23b351433b85b2ae2b6f7eeedcafa849709e9aa3118103716a7860eb8368aea7", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group11\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "559c2ab3f2d41fde037b95ce66a4b09899beb78bc7ad6a67c83fc2fdfd0855b4", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "855b5e876498393b9f1067dcc344b7e6e12405fef7215d6643fbb55476ce7d14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+amendes" + }, + { + "hash": "bec913feb5578a14ae1f53fec54106b76e6bf939f65d3126849701df675f44c2", + "regex": "(?i)^https?\\:\\/\\/moemxarva\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "16d2492921d77420f9c563d7dba9b7ebf5aefd20504c5435ce00a5294c1c3a23", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5ca79342e12edb4440d3fe002d2957420b247f54343b1463e3556f4e85ef4001", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a19ccf5546b6565ba95f533ae88e63b688fa1c5ec80809f9a31fbc1f190be4e9", + "regex": "(?i)^https?\\:\\/\\/sdgdfyhtutrujujurtufgjjj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "07b1583073aa4f8897ed991f09da1193c0564ce5e57e46678990da6a5f3cc066", + "regex": "(?i)^https?\\:\\/\\/mkeoxnajefqwea\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6424792124f52f38024a63b9e349f2f4381f89e6522b6c0c088580fccac3b976", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "78e0507cfdb718a4c66bb7cb1d4d6c943c8d4c07a8320c6e8e1cdc8e322dae83", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "12c74ad2563bdf325fd81e4fb535130121ae3f72817dae7a31b7ce124cb94adc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+unit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f2d2178104474bd61e2b159cf7eae136f5c0b3374fb6a4d46f9d2099b4607a02", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f001c39ab4a752a6ceff754bcad945baf1d0419d8d998c4be926002e1c0e1c70", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8c8df27e83825562f23db7fdb46e7d33ee8a6152aa5019ea300fe5246749942b", + "regex": "(?i)^https?\\:\\/\\/dfgdfgndfklgmndlfk11\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "56cb26152c2a25d885e266c400272e6b80033c561a53c3ece30eb019094e7dd5", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1bbc06d530451c05ae00b31985312ba0c6266aedfb28cf0ce13aa546f71b9fe1", + "regex": "(?i)^https?\\:\\/\\/fdvgfdjg11234\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e791855f6ca026aafa7f8dc21064c3160458891898d4642d0c136e52c33b17b4", + "regex": "(?i)^https?\\:\\/\\/koaemuawraewa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "15219823175f2aed365139f444f0f88cf592ba936a9f24f7c9dc7d78fd602d63", + "regex": "(?i)^https?\\:\\/\\/noemxuarta\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "111fe15300c8cc974f073e5cd0fcb259388137b8cb46e9eea3b0dfc7bc380abf", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group11\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "86335b0c8e56095526563999ea5fad0da094a2a9b793103141d1f47e4814f7d7", + "regex": "(?i)^https?\\:\\/\\/iuhkjhnksdbnjfh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7be68888324ba2084194fe5023157c99501ae486b1975f73aadf0968d5291669", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c9585b28ced696c4fbaa5d183ac12647e8670aae564ba62239aacfc64b2a5a22", + "regex": "(?i)^https?\\:\\/\\/mkoenxaiexae\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4ceb8c008bdac488bcef368fd48c96ee0affcbede2260981e6462864669fdf37", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmakcamsea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7784d7221e805d49f676841195530170e962736fe6e3843984b6b2850964c3b1", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "acdf5b894c7fa528a012285c2b4d7e50997d10ffee6e8ee0e5ab038ccb7f1c01", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "08339525bd90636a91d9ad01b9c950a381940013a4e4228f94bd586e025c3977", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8a3ee1d93fe553972e8cffd158cc0db1d8c036898268bbc982c995714c4ab554", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e588bb6db8d7ed919aaa0c8d9068deef72c084d4e5bd9720b228de8babefdfc9", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ad308e31ac98138ce6e423b0cc6ea09b116a0593812f49c430305f47132497ba", + "regex": "(?i)^https?\\:\\/\\/dfgfgdgdfgdfgdf12452\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "250a88a6e1810b39add97f2b8c130ba3592377c742dd72aaf945023f7aa52c85", + "regex": "(?i)^https?\\:\\/\\/6549784162\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "acff27611bedfa6c1b012757fad5f97d5d2677147ed731263b7b42545808b17e", + "regex": "(?i)^https?\\:\\/\\/nabaoecabresa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "46e89af36f7f34ca68fa027dbb0918931e4b7c70b00ce05f343b6f8c65a821d4", + "regex": "(?i)^https?\\:\\/\\/kjsdkfjsdk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2c21fdf0e149b5516af2ae24e8304796eedd86e22ba9f5a903a936536541ae34", + "regex": "." + }, + { + "hash": "0c6363b99472df844bb4a5b936b59f5740469971abe39b7f06a4aa5739620edb", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b1b5659ba7ba99982c543494e8b9883514122df5447fd5440bfc1f453ff98614", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "bcb73943a9b702d80aef345f98c134470159bcd65148bc97ef3787a39cb236b4", + "regex": "." + }, + { + "hash": "cae50315acdcabbe48d9a8f4edf06e66ee3fca60fd94a8f09e5b351aa3631d4d", + "regex": "(?i)^https?\\:\\/\\/moenxuaeta\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "69e431f3609405c2643fb642563367acc2f95812b3554e792a156df3d04fb7c0", + "regex": "(?i)^https?\\:\\/\\/aasdasghsadfghasfdasgh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5c03938c9f3b8c8f109854727bbc5b5166084865f6a0b37beaa764ff43019076", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bc2dc1e152535cd372ed02e6cafdc20157b2e5becd97709ddac8cf0afa5bb06c", + "regex": "(?i)^https?\\:\\/\\/koaemuawraewa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fbfdfb7df9c26142eceb89e61f53bf23d637814bb555db344e99e83ef52cc708", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7760f2f4ee2e0a485ac9554d2439e19c494564e6ea838689921c716efcfbf142", + "regex": "(?i)^https?\\:\\/\\/moekmxuar\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b6b987c0c7fb63f76cbfc7ec9ba813f8c2c4dc66ef15ce0bb06cf1b46b3205b1", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7f174d223de1e413b32472c357da4c337b7edea105561f204bea3602406a3f6f", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f21c3413668e7cf38e7060a28e91956d760fba399614fd6aaccc32af68f08921", + "regex": "(?i)^https?\\:\\/\\/dfgdfgndfklgmndlfk11\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4ed379eb9ad43933b57877e9ac0feabd4674c98adb7db6116df020adccb95939", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Mail\\-pdf" + }, + { + "hash": "ffe20c75bff572b59e83bd0843fee2ae6436e7e3df8502d46cabe9f56b33c138", + "regex": "(?i)^https?\\:\\/\\/kjsdkfjsdk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "71784929ab2e23e25499e56559eed2c0e5b14e551fd27f7e0557984756031198", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckamse\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e520402392c25eea755dacc4bc0922e28bfac97eac1ea136b08c7c2e922aaa0d", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8937cf3ff4d1e63370476a6656a3318856beb8f329eb3178b47775d1f701f7de", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7111cae4cb9e0e2012302101e14795abe0c402bb5ceeccf876feba3355ed4fbb", + "regex": "." + }, + { + "hash": "36c340a92a07ae4b6be3964cd156c015abfd1cc18d6b57297a333f06d5a58977", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a61fc332c1c319750b72c2a49a6734a24459a4d6cc1cd4870a6ef373b1d239f3", + "regex": "(?i)^https?\\:\\/\\/moenxuaeta\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1389b86c45d39b2e5ad26aa4fa37be3e96aeda15c8a42178652d0bd1529db5c4", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0d56438adfa05eec9196c0b59edb3f7f511dddbd1fb22a6b304ab1c713d09a0a", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6ef9d179edf245d6b22bc7712ff8ed497ad6bb8af27c015b7f00382736abddcf", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "04c85a51f318a829b9d25e6b82379ed764ddf37b2aae0de2acdcf349b1f939c6", + "regex": "(?i)^https?\\:\\/\\/n9813da0982ex\\.azurewebsites\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "5656cb51e5854ddba0c0b4787d97926a57d2746807d4d89b21dccc81348e71bb", + "regex": "(?i)^https?\\:\\/\\/khjkasdgashjdgasjhdfsa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d9917f7b5fb43d5a63dc63cc7e9b4b221310e08d0802dea055f6e309a4e8aa76", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4478f1241d04ff4bb5d4ae04d46fc810a5f1abcedda32e828f1f3d2cbf705748", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c23c12097a62e96aad653a991ba35087c97abd26011a03c1c75127cbbaba2975", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "634fde95a4de499cee9e7ce48e52da76e5c6ed1874236ef9a27cbb158556d1be", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1d02f78de66ff8b46ee2288c300ba99cf3c7e66fc060e420c5cc14fe29a29fbd", + "regex": "(?i)^https?\\:\\/\\/noemxuarta\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "35af31cc451c414edbf2d65af15cf3ef5d5b9c6b604c4c15fbbc974ee9712003", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "04d4112b098b446068fe0ce9fda1440017840932fb1af6bd1d43f23ee53880b3", + "regex": "(?i)^https?\\:\\/\\/supportinger\\.serv00\\.net(?:\\:(?:80|443))?[\\/\\\\]+12" + }, + { + "hash": "6c70c77324d9f569bef7b5c8a89948cc642ed4ef8ca1c7a31d3bf04729b31304", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f435bf6a333f0cf4e2ae1f397ef80a994a18433fdde7056d7b51fe9e69ea62ee", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6821ccb1e7d0cb3723c2647ff538bb909881f08d2f50c88131856810f39ced63", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6145324e399ef2e6ec6b8a9dd5f8093480d9bd6ae4cb92e86ae01874d65bbee9", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "aa5228119d3d402afb644f1f74a5290c27e19bb334089bbf4d6b5a9c7db1414b", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "eeb5f151851cd5cdf7b3a3ef019fbcc5f0b4c3d38021f22f2be61d3a599130df", + "regex": "(?i)^https?\\:\\/\\/dgnndfgnfdjkgjdf11425\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fa9e8b98c90b8d7a07631687f0fb04c88f46c4c80b06143ec8753f0469eca106", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "03c9fa698507fc2bfb48df6daa388c8410586567b0f8cf6827380a67d8950dd0", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fb5c7051c9c9de7f805ab56852fdf972da65b9132cdd89df5e7b6fc7cbdb09ad", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "02c0a0e30eede4c680a6bedefceb20b13f2b102a9b1939623842e084877e5a89", + "regex": "(?i)^https?\\:\\/\\/352489745\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3b9a836e52c55fb9cec37a111014fbf21072f65d081d812dc7eeaca3d0195b44", + "regex": "(?i)^https?\\:\\/\\/bomienxaeta\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ba1880bda70899f7da4dc863887b39568a078d40769e0b6ba12f0feff6e866cf", + "regex": "(?i)^https?\\:\\/\\/35479865\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "460d2028dd067a735ab7e5a624d6449e972b1f682e81545a3563e345fb286d62", + "regex": "(?i)^https?\\:\\/\\/kjsdkfjsdk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d3bc3c39278ba42746116c432d03e33502e129205282730bd8938628c4034146", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4bf66cc1aad44de477d4155e71925b6cde4b788722644061b1c4aab19560cbe3", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "aa1583dffbda283314e03cb3d6a81c0477202a010120c293d6cafff9426e2d85", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "34a458842e4737e57cd791f6e122a6b480b8b884c02c648e251736f1e9fe1b96", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "28f5bf30b26e6ec9d8e4a998c7beaa71d8ea5fce9ea5f3b9abb3af9b98ad9d4d", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a904b3fdcb1210902e09ac3262e20a8822f389c6d9d2cb0c9b242bf14078303b", + "regex": "(?i)^https?\\:\\/\\/nmoemcharvae\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2728037f3ea4c6ea782435ee7a5a9fd47aad130ae42b135cc37e16d314e95c22", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a58b6b5861f42c89441abbe968fa414a6c8252892c57fdce46e8362314d00471", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdasdasdasqwe\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fbc8fc88df2dfd9cf522a10d5e094a7cd009ab306c9609139f90f5bcf7c9e47a", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0284271a2b58e03f8a60de3c337adacce5066cbc3143aae595f3df2943d61afe", + "regex": "(?i)^https?\\:\\/\\/aaasdashdfasdhgasdas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0cee46c40956b69803c1820a45756bc8d06bff64d85bf0fdf3652dd9c3eff207", + "regex": "(?i)^https?\\:\\/\\/2145474658132\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bca99c9c09b776f98f4d9d85d4044df8a55a125f2d49396822e462755a6e8bbe", + "regex": "(?i)^https?\\:\\/\\/gfhjgfjffdghfdygreyhgjuhjgfjfj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7bea1c17c51674dd0f028a0e3d9fc4dfb4c80bd371cfa56b3165f9b4c2f98cff", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7bfabbde9ea2b876b56a1e4278380b84d6cf8accf7d00b30e6eb62129aac1c72", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3e0f472e380d339b051d7294c7d8abd30f7f8b15e39c3ebf86b97a3a0f94973a", + "regex": "(?i)^https?\\:\\/\\/instagramverifiedbadge\\-1\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f81651c3476a9e228b13a4bec8e9260e4254cbdc37da98b901a1973257b847d3", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9b3d7075abf0968b378205268215029c0c5fb015c991f29a9b07a7d2f879ac5f", + "regex": "(?i)^https?\\:\\/\\/triolmncaskeaotansebasydaz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "32cec8fa80c3df94a0b6500a0b9057d2b194bbee0c8519efd42220bfd6e085c6", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f9291ff2a3438f7610789b49f05ba3b45374c5adf23c25f48ff53dec68c33414", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0eeb15f07031c73552cf32d288ec040b75d1f57c6dcc413d88e63e46f9b5f9df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+backup[\\/\\\\]+krlcftim" + }, + { + "hash": "051744ef8549da3a8ed3e547468bd23e23c24ee07d58a56b14c0204b9dde697b", + "regex": "(?i)^https?\\:\\/\\/gutrfuiytijgfjytgitgkhgkhgkiytgjkjg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a66db0e7b3b150d5c3f28a1ca3e6a11a77681200b7369f3de4a93813a4756f04", + "regex": "(?i)^https?\\:\\/\\/hdgfyhytruyufjfgjgfjfgjjrtffgjfjgj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a2262a46241ddd9ad0d39d653e42777fcbc6f3b1f5d9bcb38c5f227840ff3e54", + "regex": "(?i)^https?\\:\\/\\/aaasdashdfasdhgasdas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "819779800805e301e5c931dce70f8a7c1912fd72e0f4adfe3d785c9934517a67", + "regex": "(?i)^https?\\:\\/\\/654987165\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1f09f353393e4f9093432800c447052dd1ffe6d8205635a6c4047e5fb7270fee", + "regex": "(?i)^https?\\:\\/\\/meoincuehavca\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e76d138355df8c2fa85be73b35d467ed85d3a12831c908ad3b55c901bb84c02d", + "regex": "(?i)^https?\\:\\/\\/mkeoxnajefqwea\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a484c22d46ada5daf1804f1a8280cb3627e64b52162e954fbf005ffeb2e671bc", + "regex": "(?i)^https?\\:\\/\\/moemxarva\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "02fb0e20f3b4d27b7c1366bb3297db947260e72bba5dba8155c1aeb93d843972", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaeuvwa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd796612aea985b10137bd38519000537a685d7522ad1aea2aff92bb7a9347", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mailf813642adab5ed6b6e13c81b7f47$" + }, + { + "hash": "277af1e59924446bdf22e24157182d9f4418142144787001241b096feaf68929", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dd2bdd892e8274facefa124d9c6ab568298f1d28876e1909cb6204b95865ce3e", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=maild842f1f27f3ba97275946ff7bd35$" + }, + { + "hash": "280dc359955e8c4d6afccd713b0ef9082c922ee1772afac1d66944b527b0d41c", + "regex": "(?i)^https?\\:\\/\\/xvideohotx2\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "06b534f7c4b67f46911b0fbe9feb9d935ded389cdf063e02e404568b32b7fee1", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dafbd41f469a2a4776b956e0180df5ae3035d92b84b4d684bb7abbe4085e65f3", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0f952fe65d535a358f220ced29a8dad8af52b3b8949cb786683d70ea4d97b08d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyklasckascmasme\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bd760fa0991646da83c78019845ebd7d24316a5b8a86fabe1a6f3942299d543b", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b6c10469764e37653ea8073fcd23e29e36f7062b1a37f1c50958be7e722ba51f", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9ee2c6c12288ceed7d9eb966a487b6ed17fbecac4ada852a44626c9f030466a0", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "928ec7ba3e6e2dd62c15ce944fa2c125c362cc8467c971b6073c919bd0d855e1", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mailbc29948039469414d2eb6b8d72e6$" + }, + { + "hash": "ffce8d7ce2ae67d0e0bf85724ab89030b8cc9778963f05dfddfe980eb680101f", + "regex": "(?i)^https?\\:\\/\\/dasdjgashdgahsdghqwe312\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9687c74bc0a4e64f8dd192b79b5da1af40058417ae901303945e0ed649072ada", + "regex": "." + }, + { + "hash": "acb5a74312707a1b553b0374ba194eb1f8555b8510202a2fad71efa2a96cd766", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "99ce6c65562296dfb466f16c21dd4fdf902231534d8d9c33acd1b69d7843efed", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "72780480b354ce3b4032fb804a8151819660082885e5bbb1cce52e906b041a45", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a96589ecbacf584911c9abb9dc0687a4f86f0baf44a2a13d9cf0a96763562e22", + "regex": "(?i)^https?\\:\\/\\/nmoemxuarvaea\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "af879a5e168a613a06298249925d25f78a8efed40bb3dcc6c37adbd146079ce8", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2abb274de0aa6329873e8c0b801f88897671f0374bf9f7a61ca7b1e6474239ee", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4a367f064a1cb8d7a6f23926460cdfecd57676dfbb476100cb8313d9fd4cb666", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d5dd0079b9df56069fc5740ca8441b963c796f6c70800ec30d97d1c2602a7964", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfbsdbsdnf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "00310d54c71db6b59e001fdf85a7b4a0b5b73e4ed6a9c9c15d3aba491741c4a9", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f4cefae9fce2621e74f54f42726887b8f69078168cfa8e3b79de95aaa23dad89", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "00e32d23c0b1e17e84f6a94c02b5019bb7ac437e57c65791c2c51c6ef895d0a5", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ea284396fa1226a24e69a97b753f30ce38874acc4f2b9a6783035d71dfe3294f", + "regex": "(?i)^https?\\:\\/\\/bomienxaeta\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d15b9def418e3d9c61697637264d135ec2ff153079e1caefa20b686d50f9c1a3", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f29a3ce413050ff78cbfc53792b86d6d1ca66ce588dd52c5d5f3ceb62f643c56", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "46de09e228ad57160832b0bdd9d8953d35b30d5a2f7b003a70f93c8d25046417", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6ad5d97a0b1a3460092d0e3db29b3cfd7492d30372abdbd0408e969aef25ed95", + "regex": "." + }, + { + "hash": "c80f0c0d95715b74e0417179fa5d34ab5fd50d75224a5c948529fe328af9af51", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9f312371d549922cf78c4a0a85983b0ddbf1fe0f6b4bf82071cd60a6a66602c0", + "regex": "(?i)^https?\\:\\/\\/4354896749\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "319ed64a26ab1f48a59612f34c39381435c90d04a23728d3f3eadfe8497cbb96", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjfjfgjfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b0f8f64a4f3220ba1600d40e7b18e346b68b699fc76ff303ae5b361bf3ed9e0e", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfjsdhfgjsdhf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "97dedf83708410621fbdb634c9ab4042864c47cc591042659f7e7cad62f0eb16", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f10e909598dcfa6f55d5ddf77a61e461f7012354166b6e1287eb0d4183c060f8", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9495af0a3ce90ec4e1a79be4fa12d299ec70afbf9b16d09c61478864823b9f93", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1eafcec8978ac6ede75ce2c3b96bcd082244a1c39ad071876d0c0d5442801d9d", + "regex": "(?i)^https?\\:\\/\\/kjkghhfgahjdfasghd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5506a304d857c86c6c93ff3c9f7962e8eab92d384d7f824200f25a40d5c7c914", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group11\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8481fcf4522b2d583f65ea04750b7ef6ccdafe5637d4267e2504015ac35201e5", + "regex": "(?i)^https?\\:\\/\\/fdvgfdjg11234\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e88c0b2b60bb57c8733e539d23b39dc4f20ea88afce2183ec15dc7a1346c101d", + "regex": "(?i)^https?\\:\\/\\/xcbvnbxcnvbxc12245\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b4a2346e0f52c5b2b5f791ff8ec0ce23859c43a282451c079b12d34b3dc079d2", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "419644ff5de4472acd42aa0bfe01a502014f7370b3edefe32658ef1934d182be", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c6c2747e61f3ddc10157c4744c69352b7385aa961d1232b6a0836180ab6e9af2", + "regex": "." + }, + { + "hash": "e7c6d6b604b199b203f0109059e4b47d01b96773676d39a3c62ea4f5f0637c78", + "regex": "(?i)^https?\\:\\/\\/6549784162\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3cae234fb2c477dd1f28a5c6f03ef571d47d01add91b56e77ae766470e72338b", + "regex": "(?i)^https?\\:\\/\\/4659889321\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "62b06c488674b5ce2bfffa0a8450a8dfd00d56fbb43f7d0ed595e6847e2ceb13", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c89114e11310faa08246c95a90adb068b9621dad6b5bfff254af27ab22228a05", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "098d3eb64cbb94b1cb1fc0d344d395cb3c9e7b83385e9bf675ebf35007732094", + "regex": "(?i)^https?\\:\\/\\/fdgfdgfdgdfgdfg111cv\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "246d293e6fdbf73629a9193868c9f37a6957b6472e44f66d230a9d8fffda37a3", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "844fd69e1ce449208daaa088988acad5f387b50d55944ceb28d488b879b0489c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "3d335af699046fe74ef613a6f4e19f02f38dba8d9b31c5371b7ff8ed88f671a1", + "regex": "(?i)^https?\\:\\/\\/meoincuehavca\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e1583cde432a89f56d5a8a5c8199effdd11064751152c8007add1c008783a50f", + "regex": "." + }, + { + "hash": "ea81805e7ed1b99671caf0edc788e97038e416a6ca567c2c413391d37df6bd2f", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgdfgdrtre\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6af332065c4b2e1ebf5c57c516b069227f61aa1c8ade2da371f9d6900247aab7", + "regex": "(?i)^https?\\:\\/\\/fdjkghbkdfjgkjdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0c00473e83557bb9686c224daada4993dbaed093d0dc1ee443eadfaee5af8b44", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "213ad39cd25a0c909f98e3d37946544dd66b251b58ffb569c591a76f5f221e2b", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "26c73c3bd284db4807ce057869e1f8d6f524aee3182ed795671bff2b7d3d4319", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "670d9b05a91cc37f74e130a5e6f39bd892e9ea653c38c9a22e2f6ea4fd460d1c", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7f43f91f0ca33045dc5283f4f3c9683e7f5ab3a2333502ff87f94e228a7ae463", + "regex": "(?i)^https?\\:\\/\\/benoajseuiaega\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "61641fcefd3c489bd415eee892a950fee90f1d181bd2a80a24e2bb4de18b1d4b", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "be4b6cbf5dc3ec1127eec80bd3800e21972dbd76760de1ea20da8cd1cbddbe25", + "regex": "(?i)^https?\\:\\/\\/lkmsdgkmg4\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6e87a9b612d23e9c886a04b828b0db04ad74a0ade292e96697f0084646e8be8c", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "beb9e048f081aa1f803a0dd0e7740ce6762c2548140715d80ea4434bfc085af1", + "regex": "(?i)^https?\\:\\/\\/bnomeuxaueta\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e7a5051dd9688f35b0cae706c6ab69aea1b955634805e79f77489034a5f15bfe", + "regex": "(?i)^https?\\:\\/\\/nomejxnaercvae\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "924ffa1ab740d26190e0ef676af13ad28848e439d914a8aa636e863c629a5846", + "regex": "(?i)^https?\\:\\/\\/bafybeidfx4go2lfe6gufnwcpbtvcdacb2sdek67mcwe45xnojqfmliahfq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "82595d6ef3e6956e201b4d85993808b68db44b95f690dd0704ce4bc7ba6ae790", + "regex": "(?i)^https?\\:\\/\\/ngfbflkcvmbvcb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2b9441ce8e11fec6b081014710e3a8d7b6b2a9e2db01b7f44e52a6bdb04f7fa9", + "regex": "(?i)^https?\\:\\/\\/aasdjasfdghfsahdgfashda\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "dd5df8be99350222678c173610db75ff91841d53631798d6df2dba25c82ebdb4", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1bf07a375159c4e996143c656fa956318c801f7386206404ea2e310aed5b6e69", + "regex": "(?i)^https?\\:\\/\\/moemkhecuar\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a8a21f41c81526c76c25aa2405edc9e5c2d0832e8ec4d027a6f3ae027e1141c7", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "542d469eb7d5732814ef67956754eb894b20f3d693ee82c316cdf6723494a5ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+80R1JQ(?:\\?|$)" + }, + { + "hash": "dca8c5ea3f2732f1d72d4ff57afa6d45333102051a7c82a2edcee16afa179760", + "regex": "." + }, + { + "hash": "9baa973e9ff2a1ef8a98f2119d6e2873327b61d643bfe8b9b0627d9ace591568", + "regex": "(?i)^https?\\:\\/\\/noemxjaecay\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c797e51b042b704cec9bab9c3733d07d7e0d6d033aa82c8159d8be0d14099349", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0c5de0e99f973c9fdca36707ea806832de07484791f5817df321b6e7ac933b87", + "regex": "(?i)^https?\\:\\/\\/hdvideofever\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "29faeb22fe4b7b0ac7bd2a76fcd9449790ebbbe23cb3ccb0abfeac1a49e62af7", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cf6f190f4c425ee2d25de770acd385260b2f8659e4358a886d658083a491cbe3", + "regex": "(?i)^https?\\:\\/\\/khjkasdgashjdgasjhdfsa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "61a407560aba9c39628a60edd4e80a42079f8ba9178481159503df00e3d4acd3", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "80bafae7ed13150e6178f651e6ddd90b978fcabbc67fd8bd992965f31905bde5", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a144a528baffe4a523ca1d005e22129c0ea4c8f293a8727f9926c0afd1e241be", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c5a0d57dc38305cea5367271a6990da6d9d71ae120af5d7752310b6c1581d84e", + "regex": "(?i)^https?\\:\\/\\/ljghdahjdfaghdfagdhafgsh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1e7bc931ab9b87fc5a276c87034d06cb6af617d536721d0e6314aa9fa26181f6", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8a3691baafc301cb9a7057459ee71431c9888671b03b5426a542da7afd9e08e3", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2451ded9e2db1762505621de00c0de404302e491cb0d31a76ac2930652cab3f8", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "19ee83c1938eb6c32b7bccff3f7ce17fe93ddc33d3c6e47a015ae7cefd78be01", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "a63bd6a7177b6340fd10de0353a66b0ef13f3caa4d7e440c13628c8b30667f2d", + "regex": "(?i)^https?\\:\\/\\/nkeoxaaeycaxa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "58c01283dbad83bccca06b1a9b86fc54906aa14b379b3df0d24370f36afd5eaf", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c487b654495687fb85bfb5de282378f4cd16090b93848d54c12c006d6b8c1853", + "regex": "(?i)^https?\\:\\/\\/fdbgjkdfgjkdfng11447\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "499d84f6d7ecdced68854198cd1a24d9145ea0c1067b3d7c44ef791a76ecaf6b", + "regex": "." + }, + { + "hash": "4e4dcf0db695b298878213e611cbd1e99c521b11558a6fbb6cc5b4b100a31fc4", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5adf99891ca8c92d7c48db0ca83d2bd71a793fca041febcad47dc714cd431cf0", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c891cf7c85fd9c40a350c90b6864055887f9eec3af7e0e490ed2c0c1785a8667", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "01c5bc86adfc02776d037adb634a1b70888d90cd1bc13c825e2f84c37f6329b8", + "regex": "(?i)^https?\\:\\/\\/fhgfjhtrutrighjgiytijghhgghkgkh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ae4fcffa46b520b3b84488fa3dd74879f2239c7e5ee84cb025ed802c7fa9348b", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9d93c1924ec3cff003f4ff7ba8a6931502c8d412d2f2fbb81c36c54d4b53f3b3", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "904dd4fb02e8c2816cefc1ef25ba22f7f8433cb779e79f4a3d6085eb7ca0d42a", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "94b65b96128fafd7fcc57a1acb395dd856adb0010852a54cdd1ac6f9eb883ebc", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1272411f6f733a206485190742236be119e2bfa43d5ee2ed248b868b90d71361", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1387a048230e5130613268b3f31e8db9a4f8afbe45c40bae2db3773c3c58fcba", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "aaaf082d60d2abdd5b832c018390c538e4ad0115ac68e534e319e1a124968248", + "regex": "(?i)^https?\\:\\/\\/xvideohotz2\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3b869428b657612093551e13c5aee93581926d2ac4305286c222e9a4b1e3e7d0", + "regex": "(?i)^https?\\:\\/\\/gimenezrangelfranklin\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "93a55bc1bdad5fdf77ffbd44dce50916b07d919ad59fd0e7d7b7a2d7ee53e00a", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgdfgfdg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "63b0e2f314ec3d22da66013d3dafbdd11a1fbad0bf7a9686e0ecf999e4124909", + "regex": "(?i)^https?\\:\\/\\/dfhgdfdfbgfdfhgghxx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "188491e9667bba06752210eb2fb2e58b70b50a367585a54c1cff5ac9cde9765d", + "regex": "(?i)^https?\\:\\/\\/dfhgdfghidfjgnh111223\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1eb8d64ec4e2ed0049f0c1ca92a12e55dfa68e1cf956774536d4c135c4a387ad", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "916e2527c712680bdd1e15a24f707fb3ee4abcfac7d1d74de287f03c2ef2f4b8", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1a1cbba724c90e1956b55e45184cc765d9eeb6d3dd676b46ed0536b3000f0c31", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5aa5efca2178e816512e0773a86a023bcdad6c13457cc27a099623cf7a7bf89b", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e39909f2f3afa42e19a04a7b15e2368bce691161993d6cb25ee2f13572b35727", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c33b497157e00cd72f1bbbbe62d7e96e8a46a62da1802c1dceb7bde4e621e073", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "60d9e7689cd45dc91176bad572f559ff6e4d2147287ef08262ee9d5068e93a98", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7f83289d4155680107ca57798c144fc5ff29279a0c9db82a72c2dbea617a1e29", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a11f8561e68ce48f793e6802869da7664c48e87b2e95860c1c64719471bd6932", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "99f465bcb6414d3532ac535d176900c58a8eae769ab3a95c1a7534cf11fc3be8", + "regex": "(?i)^https?\\:\\/\\/6549784162\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a6aa3204b70cbf62c705b2e8b1c65068dfae330c65bfbafa236e16dfaf103d00", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9e17ed8bcab05631ae0d0ef534d0213241b91f4ec04688d4a6435b69468d1a39", + "regex": "(?i)^https?\\:\\/\\/gimenezrangelfranklin\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c8b0d34ddc7e274b7aeb420de888d1b85d249397914f83fa2249cef168b3ad75", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "29426e5a938fde70a51bc826bf7801a2d9e71582a62b97e6c7f3ba52445bd331", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4a7605129b811d20a82c7fcb225148988f3bfbc3ebcf4c1ddbc6eb41e67c7a02", + "regex": "(?i)^https?\\:\\/\\/fhhtfutrurtfujfgjuutjgjgfjgf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9501ca0376f56326130d8329425c3a553a7870a77a5157ba8f3bd2c082d72ea7", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxxx\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c7cf141f31dc40af8109fa8a9e2650be6ea7888043542e0bc9d26bbc14aca597", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "37bef49c690a7637ae86c551ca220e04b4f5b60f5027bc8262d2ff998bed5935", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9baa187f49d83d6b949434bd0fd427ce47e395509d1023f73ee358f6baea1eab", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c5f348025773d0dcbe2a85910222c10abcfb475cc5d517fa959bb2705122c165", + "regex": "(?i)^https?\\:\\/\\/dfndfgbdfjbgfh123456\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c8ac17cfbd04d96e0ba40eb2cecc764b924fe6692958b3ff88607f596eb63633", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2a246a601c91943f415e8d4344917379e1d0dac356cf5d82179199b01c0aa211", + "regex": "." + }, + { + "hash": "5670fc32d9ee04756c2192a3266d459b6d4be4ab8a3ff4a3eb66b356814cca44", + "regex": "(?i)^https?\\:\\/\\/uidfhgiudfhgiud1556665\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8723976374a8dc3b283f759b6bc37b755a57d0d115f22a2ac4f92ef886ada3b2", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d1effeea50822bdcfb6a039576b46d6efa0fa55378d717c018c6b64b2d7226cf", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5239e1a6fda6f2cacc65731dd63fbbcae5703c56d13fdde4bc0616c9df0ee69f", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "62b0246a7b920e524945222beb0e2e85e4644efcfd207f203806ef3be11864ba", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9926df8ef2df8d80a9dec8d3e083bc87505be4635ff0a2348cc9a32203b9bc31", + "regex": "(?i)^https?\\:\\/\\/noemxuaeta\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c8e48917d59c8629c57169d32fbddfb61517c2ff6e808fe8e1f621369c181c0e", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6109c78ad43eba14e887567f5f275a7e4c23989d043580b0a2319930c63d79ff", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e1b4e5e0f99abfcdbae3085159f18af403c427e851a72eb3f22b1172a859564c", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2e586f8a8677ca628548325ff1afc490536f3987e91dcd109ec485fd5feac3c9", + "regex": "(?i)^https?\\:\\/\\/nomeixaevawxaty\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb5c4d5ddc41417880de0c149454ea1b43893731d3aa23fd80e50a5b2e830b", + "regex": "(?i)^https?\\:\\/\\/gfbjncvjknbcvb123455\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5c12251caa3398d4aceba8b5da43b3c0b56e582bdb5ba28472cbd8198766a417", + "regex": "(?i)^https?\\:\\/\\/nomejxnaercvae\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b6787101354dceba4525869777c6c778268e69650149f1fcb8929970f5c4bdbc", + "regex": "(?i)^https?\\:\\/\\/mokeuixhaevae\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0cfe95921d91254dde9f8404acb82b470837245590b015621e7a3efe8b3434de", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "eefd5babf22e2fe8473fd6ecb6e9b2a4d5b408214adf4664e79a7318d473d34e", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c6db700c5303b2ee5fbec6f53c113693e4d8dceb2d3a4527980df5d8703aa05f", + "regex": "(?i)^https?\\:\\/\\/moejemnavwara\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "493b648131ae63a0bb05c391921b2c153f74e8a7cb31a23279d7cc6131cedf03", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "da4d26d6d1af0ae48cb09f04f3f851165bf4d4a3476f8c777eb03e591ff909cc", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c4707bb81f165fddde10b097138c412ceda22f0ec6fd5a4d7153cac9dd216c83", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "804c2fc780f8be8d3c74b81e069541c5a13fd35d06cf1037484ebeef9b333f7e", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d209faa42ce5473bf6386472c10ce97f204ed4a261ff51c6c21c348c10c06fbb", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e522022cd2109be816732d4a039d1c6d9010f512d3f510253112f801c3a7d163", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6c1ea78fb8b595bd6ebb0d6eb5e543e7a9f614180cb661e854c293506d238e49", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cd89afad6d7ea6b336021f6059f8da022023b0e9932a4f0c843ef47cff2f2911", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c0c24ff664d2dea2784f8444cac85d214f9254063038e3ed3346cbf8005e48ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vtoken\\.html\\?otp\\=zcz6elbwnov12h6b2kzy$" + }, + { + "hash": "7dc07b213f880ae3f4c94856dc0f85e09042399f4a2aa373f920b9262005b7ab", + "regex": "(?i)^https?\\:\\/\\/bnomeuxaueta\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "231d0145c00c599ead5137847ec7cb7961839f5039d86799576fbe7a363937e2", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f823ef3a87f125cd40e733b40e5ef66f124fd71262eb073d1d79dbe4adcc930d", + "regex": "(?i)^https?\\:\\/\\/dasdjgashdgahsdghqwe312\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0a953ee235092f27dcc3d936eb2d3e9ad7cd1d2b5cadf2010b6f3bba6b8c75f5", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "697b39fdac7ae8893229695ee7afa5da987bf8c1422c79293bcd6b06d77d5dae", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7a071401da91cd69a61f287daa73ee5eade8322fb29395039087ac2d7da41c5d", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4cec068d02c8877def447fd6c10cd2fcf5381ee154a80b1f8331621be4e9b9ff", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6b0fb5828c010d73ceee1fcbb06d299695ea3929d6c52c17839293811d7ee242", + "regex": "(?i)^https?\\:\\/\\/dgdfhytutrufrjgjfgufujutfgjgfjgf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9474073797f03fa9a2c53a726ef14316526920a587ca0e290e4a36f3be9a890e", + "regex": "(?i)^https?\\:\\/\\/dfhfgjuftyiytiufgkjfghkghkg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ffca598c84e0f2645574535107ed06f146510e2dca1acd2effb438cb25f709be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+80R1JQ(?:\\?|$)" + }, + { + "hash": "b98c6aeb904955bbba113ed83b226b9cd432410e2cbdbb28249c1142143da608", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "41fcbc66ee5411c2703382908ecf61712104462e2732b3ad0957848939fa961b", + "regex": "(?i)^https?\\:\\/\\/hdhotvideolabs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b62bf492e1c8a81edfc59141a474e9f30999c09c5bc530618bb4420f2e84bfff", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "62e464de2e3bc74f812eddf87d9c64a9b0b636bd4812d4ab6940f5bf13541191", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8c150c06f8c1b66ac58d5f97d68cf4d929a26045dbed8d5afceb173371ad149d", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "685292a43754c155005a422a408583aa0fedeaf78dd439e7f8fc162a3a0d3f1e", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "554cffc48d70d08278fea5d0089b39d890815f68decb24b9877c684ca33276c3", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f10e168b43ef53b52a4dad630c29bdd8abd7fe7c757c3202f62117aeb12e2e0f", + "regex": "." + }, + { + "hash": "339215d7adc41e6a035125d70b1cc0e7cfc796ccb88d877826456bab611a5ab9", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fc56e713146688d45b622ae21b0cf8dd0970b398e5b54e305cd2245831d41eae", + "regex": "." + }, + { + "hash": "dd31452eef03fd3bebef9b29df7b16743b7d46699e9b9bed35a64e7c2edd9a09", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfdfg33\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "77a6aa4fe32e512d8eea8faa2d8b97538f69287b72f9566ec48ce3373d8e3649", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7c0a47405327440192f0f3b7728553cd2dd4af95035732f0a565c269553f0e87", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a8db06d2d09f06b4c4bcfad58de3a644155c9211609050ff32638fe63594da62", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c98709f8b6dec42501271f495810976eda0e32dddcc3996f31458968d314a5e3", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "19b8b82f643c704124b0f532574f9b63c31c8082a7dd77018e25cc986a825760", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "52a5154791ccba47bae5050dc3d13a9195cd5644b3c087c4f4c9368149b07bf2", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5675bd9be3a55e383564ef4c76a6f2fc6a78ce8fd02369ad6e2de0194fb8980f", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c53eb4a1188570a02546bd67a774da341deaabfbe6536197b1017f8725c84bf9", + "regex": "(?i)^https?\\:\\/\\/moemxarva\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a82f41bcbc5a9d1b543669a806b2fb69863656d82c3fecf14143206c86d61d0c", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "621fece7f8e652674dbf8546310306eb4df210f8cb778f4d4fce9def6df1fc3b", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a888104a88ed7eddb9cc59157fdef31a1227db47da2ecae587a7050deac69158", + "regex": "(?i)^https?\\:\\/\\/bafybeibc6euxsowco4dy3tccoefw753frdsflcg7scowuxgpgjpz645hn4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "39e2fcc9211730564dfd8d416e82ac435281894c304f0ec5449dde435d5833a9", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fd030a92b2fd38f8ba8ab1b98510e42f2559a5043485413dafaa348e85a38101", + "regex": "(?i)^https?\\:\\/\\/352489745\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "57a67861e77f354294f7cf4924e3709a127a0321587e3f45842240d5473a1ea6", + "regex": "(?i)^https?\\:\\/\\/fdvgfdjg11234\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9100c8fc6b80a7269fa5c06ffb277bafc369dac8fd59610f427682d794ef0cbd", + "regex": "(?i)^https?\\:\\/\\/hydfgufytiuigjgirtyigjghkhk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "56bbcdab721355a3207d48838c40172ac2078d72c7b1570e24fb50eb41f926b5", + "regex": "(?i)^https?\\:\\/\\/moejemnavwara\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a7e4c5aff7c6f254f97fb0cc2728e82df75e9a53112b8b5b4fde480825f2e254", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdfs113\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e83da672b9114d8c973df67cf999cb810e2480592a2155f84d414eca18ec75f3", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "82e51de85a6fcea194b73994474cd31e19238dac77b2ca039458822b8397bab2", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "73b8824aa87300b8fa7b986cea5eafe189bb60b4441183a8d457bd299acebbbf", + "regex": "(?i)^https?\\:\\/\\/xvideohotx8\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a74fdefdf8bfd9b63d69fb9843a3d42295192a4809bd2beb841c9a6bc51dd733", + "regex": "(?i)^https?\\:\\/\\/aaasghdfagshdfasghfdas\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7cf260a554c2bec4199cfa40f140111a62e5a87c293181ef2b8bd114e955d388", + "regex": "(?i)^https?\\:\\/\\/4659889321\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "34d4ee296fed03092a9b3fcf5f03122096b3bffd010630b0298005bc8b72c1ad", + "regex": "." + }, + { + "hash": "ec5fe5151d75a63c55e8df19166a51e1d4eb2e4faef8b4b6bfe6fcca56425772", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f9d9948368af06520a58e5cde593cd045be4e3418f8c6f18af92e690ece55f4a", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaeuvwa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0cbafd39d639cea8eb4628073767a8106de8011a90937c588b95c4ff1e99eaa2", + "regex": "(?i)^https?\\:\\/\\/nkeoxaaeycaxa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4052842924b7d956861759efe4b6f72fb331c819e2910adf7ced5ca14a19126f", + "regex": "(?i)^https?\\:\\/\\/aasdasdashegqwehwfq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fdb70169d16e54a1f6e872f2d8bac13cb432c4a18f8069685620bfa3f048cf91", + "regex": "(?i)^https?\\:\\/\\/fbdshfbsdhbfhsd145212\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5787a786b7cac27fd1c51e5730ca5d61303bbe2f1d09ec19747246cb9700bab9", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d4b17a74c36f028dc1486374923b89bdeff19919c9a274689a331ed6fb482096", + "regex": "(?i)^https?\\:\\/\\/dfhgdfdfbgfdfhgghxx\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1a2df74de283ad936ca922e7a50a092b97c3eb476467229d3adc4be332f78c2f", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c99a586ff8315c1a5f61865d1ebfb8a56abbc505ca152fc20d9d757b116cbc0f", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0e1248a5d837b4fc3807cf69e378be1122db6eb0f6aa2eec293a5d9cfff3d368", + "regex": "(?i)^https?\\:\\/\\/bafybeib432355zvrg5kdbpkuaoqpmrjjz5wvhvpf75bc6vvwfepoaksxye\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "897dcca5207fb8771fcfcdcbcedaee9701556cb06e7664ded05fc4dc963f8f69", + "regex": "(?i)^https?\\:\\/\\/aaasdhasdfgasfdgqwefgqwe\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3c046f11be2fcce32b2b20512b70c5e3026f133adf602ee6718cc903b70d940f", + "regex": "(?i)^https?\\:\\/\\/bomienxaeta\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "72509c1e3e4fd87c18c0bcf52f8f668ccae7382d3cd4fcece05b17f90abf1eca", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fe638e1cf6f1cb27f6275061ecd754e66e57ef15264c8f33104c337fbcd81fab", + "regex": "." + }, + { + "hash": "921e5e17d92fa109cba82b236cadfe3ed24a9f18621084415313b087e921cdbc", + "regex": "(?i)^https?\\:\\/\\/fdjkghbkdfjgkjdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8133671fed28f4816dffea1a7af71d1dfe6a299c4c204849d5fbf4c90b0f2ba1", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "352df90be559d00d8420008f585dea6368a15b8676ce9192888e6965cf46329e", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "08710ad68f38c330d157b7db278559048e63d1bc44fbb54cf1b85c6c3784afb1", + "regex": "(?i)^https?\\:\\/\\/kjsdkfjsdk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "673bfa924d888a65168b13584684c43d826817f7cd6f8cb830fe395a01b4c150", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdfs113\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ceef10bedf0b3c3f6e52fe794c9a8ac249e2c2a08b36690509c04bf4f46d45e8", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ddc03c6ecee53060e6a7d8e1c6900572b31f05ae66de0674fba4dee3b9f087aa", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bb5f838bd431a9d0a928fe49455234f9fb08219f466c37597706a1d2e2153106", + "regex": "(?i)^https?\\:\\/\\/xcbvnbxcnvbxc12245\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "565835f161fbfb9ab290dc5a8b023fcf767b7388dca14a3ac7865d5ff4ea7fd0", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "052695ee52c5dd694243a011714edb2d12d285da458f939d10b0e234d0a7399c", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "58586415879a9d8269dd1c0cb703b737687698218dbe9e06cc8e03433bc2d7ff", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f6337030fe44f5c73f35fbb6491749176ccfba60d58ebe2276454f202601aa8a", + "regex": "(?i)^https?\\:\\/\\/fdjgjkdfnjkgdfgl14569\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "80d8f7aa6b97016eb8a220077f43dae8baebf904ecddf11f91ffe7f02c43816d", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b5291199d3f7bbd70a6c78011110b012b30002d9393b4d55650f00dba64f1353", + "regex": "(?i)^https?\\:\\/\\/ssdfjdsgfhdshfbdsh122456\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "00bda8eb69bc358bced2dedeacecbe72801a2b1d64869971256473294daff4d1", + "regex": "(?i)^https?\\:\\/\\/dfndfgbdfjbgfh123456\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fb2a30ec7e73d1441f1f98ae2920d065c1c466fa4314195ed239ac7561dcc59e", + "regex": "(?i)^https?\\:\\/\\/fhgfjhtrutrighjgiytijghhgghkgkh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "36b4badb675493556192ab6af059d064f85ea8cf0d9c016cd32f711a8744ad2a", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9c2874c460866be0a4c317c9c8ff46e9c8a1ff2d607b7c1cac2f252857de1365", + "regex": "." + }, + { + "hash": "5f00899b17f2a6fde72e26d4f215ad1557176fe4a86c8d231b45f5f956c2712e", + "regex": "(?i)^https?\\:\\/\\/moemxarva\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "278c8e737c1ceca519dc161dbdfaba3e7efbcf80daf2c983c7792613d3ea4c78", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b199f807676c4f0bcb075cc593951bc531bd3fe66efa11d57cd4aac50e90bacc", + "regex": "(?i)^https?\\:\\/\\/dgdfhytutrufrjgjfgufujutfgjgfjgf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c4df5e27cc3de1f21104adc5c5db89a55bc11e65027c80d6773c0e0b727bfeb3", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4c02ad9d3efe799798444334d01419ed72335852652683098df25e1fa1ef49d3", + "regex": "(?i)^https?\\:\\/\\/dgfdfytutrurgfjfjghhgjh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "221e63829cb5051e8b55bd34c2b18bb55dce70ef28eb336d9ab37b1c7e3e5e0a", + "regex": "(?i)^https?\\:\\/\\/kjkghhfgahjdfasghd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "226b3a72142f9f947d5fdf3231ce836ca6fd508d59ffcf29b83cec2873b5cd70", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "253f320ff9cb67bf2a9dee6efae58c5b748fe071c60fad902e8be3a345c7f8d9", + "regex": "." + }, + { + "hash": "6a3ee51494e4147345354dd820a77afe67e58d71186ec554efd071f4173114c1", + "regex": "(?i)^https?\\:\\/\\/kjkghhfgahjdfasghd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c109e4b6ffed4f935cd250077f3a7789d42899fda31173a383bb728b70394ba5", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6a4864a994170d290e5caa4e42c65784100ef7b6ed248f0a76fbc350d240f5d7", + "regex": "(?i)^https?\\:\\/\\/dfgfdgffdgf2125\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "803c7e360f33513e09d2f10da618e6a6954bcf5b3485a858457bc67978a9e98b", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b40c93c2f2118dc627cf51e0dace669d6318c5784fded9a2688c6e32bd44e037", + "regex": "." + }, + { + "hash": "d29a21db15913ace9e2c041bd1177bb6fb2f39f5a762477f211b2b5f09db315f", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c33ef2f21dd7b9bc5d2732cbaccb01f75336ad9fb567ed25d3ba3b7983428c40", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "43f7918920ad7c198c335dd27deffccbfcf6b9468868e8ffa55476a74ffe13d9", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ca308c6c48539254433c5887f99f9131e15afdbd3a3d71709f5716fec1a702cc", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "93bf82b04d3f9469d4bf1808eca41b4b2723e217a962be4076ed897e647359d4", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "93c01055570e70c2a9db92fcc6d590020c053a2833b4eee077497c2dce53517f", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e0a240d115174a397c43f598094ef0fb0dd41014e241fe474a7d923c517591df", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "08b7809aeae0e0b3760eb43c5db2d0b0fe5ec4e0c319c7ec9345b29a671f187a", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cc5c23579e50d664f8a8e1e7ae0c9619cd2a5c7e708d6a2bd26ca25ec3811437", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "17c5fe65be09b28db765f67a763ed85cd3c51d42a96886fb402569373745a116", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a4c60d9ab8dd57822809dc56a5e0919afad47818e8536fd28e530910e8fbf6fb", + "regex": "(?i)^https?\\:\\/\\/fdvgfdjg11234\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bddc7de01ce346ed63b62fa672a4daa7643f78cf9f546fa26239f34bd03e6096", + "regex": "(?i)^https?\\:\\/\\/dgdfhytutrufrjgjfgufujutfgjgfjgf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "20a83ec6f9bdca0d0a1fa6a850c1579838b76b917d2e41a76f34b38bbe03cfc1", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgkdfkgkl12252\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "554c6dc9038ffe8e2b17df92bf7a59f8e71ec9b32e50b264a5e87c192569d9bf", + "regex": "(?i)^https?\\:\\/\\/sdgyderyertuyfghfjdfdhhfgfgh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "478db534b50c2c84b5917245086419ac4443bb739d0a571a76b1c16621ab929a", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8b5429b7120f7e42f3ed23570ec2f945deeb92f29f4fdde0d16b13cac071d60c", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "cfdd64149d42cc7b92458cfd0a70e28a16ae2a889850667d77c2004a73401513", + "regex": "(?i)^https?\\:\\/\\/mokenxuarga\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8593315cf29de78aa72dfd2d6fe1ca1568bf0c342af27c443b3dacb5a39b1cac", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfdfg33\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cf68ec5bd2ec4d4f0b4e5c59ababed56c5833fbc1ca367a2137de3016c2c5812", + "regex": "(?i)^https?\\:\\/\\/gdfgdfgkdfkgkl12252\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "033befcf2adfb776308feb3a4d6187cd0eb8ba9927633c66a316abe2a2535908", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "53637bfcefcbd68c15ba41e3c20c3931399884a751683de3fb1d65a10f6419e0", + "regex": "." + }, + { + "hash": "bb6c3d570b178a4195d04c781cd3c990218039115a888c26a567e56cf11a14a8", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3c8fb9e66667281af575b0d18981a08c774297ea057ed26fa6328ac465c95af3", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8e2d86edc7934d6bc02fd9e3acc75d4b0d5a5a4a13b4ba9703c8f376cdb656ee", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5eb2ce1bfb08692002920fdcbf8ef9717227adacbe39122742f295bae00a29a2", + "regex": "." + }, + { + "hash": "2d801cd5359412d79312beccc25ee737c63c503248ad61f8ccd5b70a49f3798a", + "regex": "(?i)^https?\\:\\/\\/lkmsdgkmg4\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7e06f3240b05563b8bd71cf223472d4a51d83821febb27a8d7990e0399b89dfe", + "regex": "." + }, + { + "hash": "921757aab8f70c97644b2879d1b6b5366d4549da655325269853b5a7b8a27599", + "regex": "(?i)^https?\\:\\/\\/zdghdfxhdfghdfghf14\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e9885dfb805c84ff3b62a38b21f71c144cb28ffa68ccf8b35952b3c1d444efb9", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cdb0c955dd53417f4603b17bb7c99cf56031df03b661ba8435b363b3abd8b234", + "regex": "(?i)^https?\\:\\/\\/moejemnavwara\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ec51d7ca83e80bae15e3ca52fc6e872adc8cd463cddd66f7b6011978826dfaad", + "regex": "(?i)^https?\\:\\/\\/kjkghhfgahjdfasghd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "93b861ccb48d1b08e33daad80913bf8fdc12e3bd809dea2c60bd4ef5ff91b5bc", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9a5f283ac332c6146dd51d99f7f4fb2e55f1f031e7f21f6a7fce5fada6ea5fde", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fc367b9fd1672469523b85e125efabf04ab3c05834163a06b3f67bacf737a528", + "regex": "(?i)^https?\\:\\/\\/4354896749\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9c3a986e4c705dc35f0b2afe67f7981f73751ffff8deb1b1d46b8a6d198c356f", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "10db4ca26fd129cbd5d26ad2e70ce244aebc11183427e698fa30b09185f55a5d", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1e6241e7f7ce5bb4085dfefde0ed11b4dfa97fe72b72686507f9b356116a6567", + "regex": "(?i)^https?\\:\\/\\/45646556\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "521be6833a70a91be9d98c0705e2a286f665ba0a8db707804a6805d47c8e5338", + "regex": "(?i)^https?\\:\\/\\/fdjkghbkdfjgkjdf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f25405f61209236d577b14c6701b3b19071c8638fc897bd7e05a264b79d3081e", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fda99c43f5dba98042347b157b135636c0ee043878b84fadac84fb90a76be748", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7329b22ba4402587bcab2eb0b2ed39603e1afd3970c62cf05067e65fab7e9905", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f8ad5aba65e12e1d4f59dfa265d31071c4f3c169b8a9820b9a636d05e0123622", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5fee3349f7ec0979dca3e0c663e8187265ed5b6e321f2b39bb4d5a3518882fa0", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4d828b01fc31cc90c33cfb5096eca1199a9d112aaba56e9ea301b5377cb20116", + "regex": "." + }, + { + "hash": "c2ad564112b8143c743081b38b70c646a30d4438bb95a1868962f598e7c17895", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e0cac07f085b6f6d580ee236b6ceaecbf1d6e58b463e0e792c0d45f4baf9ae78", + "regex": "(?i)^https?\\:\\/\\/momeixatgva\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8022497ebc90e08bf44eeccb2fba94347b33776f9c501815deeacca17da1fe5d", + "regex": "(?i)^https?\\:\\/\\/bhfsdbfhds145258\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e754fb40ab1ecc358df90f604cb962463a431f975ca546badb3ee5b9d830cca1", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "226b49b9dcb5879b27f49f1cd7a26cabdac670a672b5699d73085d6da091d933", + "regex": "(?i)^https?\\:\\/\\/aaaadjhasfdjhasfdgasdfasjh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "609abc6281a78bd8b0777a817acecb9433ee0d22b023fce1c27bb0d858f526dc", + "regex": "(?i)^https?\\:\\/\\/moejemnavwara\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4f6e4cd31334113a45c29a1f236681ebb46c028def802c1c9a59edaeab64386a", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgfdg123\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7a020e347834a3a5aa74f1d697e13116cb261aad65032770602bd14c373ced19", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fba8229565fa07aab02c237e5be9d15d83c8f0a5d3fecde59e5868f42126ccf6", + "regex": "(?i)^https?\\:\\/\\/dfbdsbfhsdbfhj124568\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7c523f119b4e399aa1173edf1494dad68d6dd52f12d7659ff4ae7b191a26c172", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c87f1add1d86860e891503d4adf0dccd2fb6870b8d5607c6d6131b9388e05627", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "90fae904122177643e1f0ba02fa4a0d42847a70e7e3f143a636a3e54958343bf", + "regex": "(?i)^https?\\:\\/\\/nmoemxharcae\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a30aff8e5c98909a52321b0187d13844a21d961e6a984430eda20c66d78e6693", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9d30572d150d9d135e76cfa74d0ffe135e5be22a525eb6707b4a6ee1a04bbaf9", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7b4031a28d9dcf79f1042d230464555253a92758677354f47ad1948e790ef54f", + "regex": "." + }, + { + "hash": "e714b697b1fae2953fdcf51c2628b6381cd1ae8818fd653a76a8254e13f8a0cf", + "regex": "(?i)^https?\\:\\/\\/dfhdgkdfjdfjdfjdfjdfjghdfj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "02e7d660b87302fe3dbfd42861069cb7c73597fb96b8afd96bab40a192331fd5", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "496d0e5b869fec4df08d83554a71a342f0366697f583d99a40cbf4debaa261cc", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "18c03371cdd983e397cdb86948222c7ee290690c4070f22061a188a677dd3661", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8b07f656cc922fbc5342d9e13361c64a2ca6828522da665cdcdfdb8236742a26", + "regex": "(?i)^https?\\:\\/\\/fhgfjhtrutrighjgiytijghhgghkgkh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b3a0dccc436efa53c8772d1acdae3f2dfd6771d9da8b3b7519386b5b1f810944", + "regex": "(?i)^https?\\:\\/\\/meoijnuaegar\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d894d5384b9dbcf8bbd438bd3be4e0a125452f40eae917358e20d5ccc21c91b6", + "regex": "(?i)^https?\\:\\/\\/hdgfyhytruyufjfgjgfjfgjjrtffgjfjgj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "73297078292bc5d7bc8dbe4e93992a2f1c94db4d22f364424ce41efe830b184d", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxxx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cccfc88d2ec96111558ffa6ce31002be092aecd6b684bb0f305597cb20348b89", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f22abb67173686ff58fc025d8ab5d690ff69792e2e34db05645cbe7a5df4ebdf", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7385f4c7a96d6a84365247c00b38af7b83b87d4e29c10cd802f8b8c0a020dd43", + "regex": "(?i)^https?\\:\\/\\/352489745\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "544e27127fca7e122d466700384745b4a8cb566d049f7beb508b9d074e5799aa", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "056a2dbe8fd81aa50387485fdbba99ef1ee52258c8bfce35eed6863724e3bd08", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8723b040360fa583488d3c88cff6935736e9e0ee15da5636cb786e090df0e416", + "regex": "(?i)^https?\\:\\/\\/hshgsdbffbb14566\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ba8445aa974eafc5162449a753437d0b88e820767c1bfd7418323bd5376b36ca", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv9\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "61deec3a0c79e744ae6eaaabadf0f955b4531299548b7c77067b875c31c56c92", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9300d4b58fc1f21fec693be83333435e793bc172daff2789520b192a3ac0d67e", + "regex": "(?i)^https?\\:\\/\\/iuhkjhnksdbnjfh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bb7d2766130645815eda962940f11170bb6a8a003105bedf4c0d75e67742e79f", + "regex": "(?i)^https?\\:\\/\\/xvideohotx2\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e69a3f2d4aff4764c57096003923f0c3c8064920ddc580f589ccc880fe448f5b", + "regex": "(?i)^https?\\:\\/\\/benoajseuiaega\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d4a459cee9d89094faa5e583ad8498966b9083cb9c605fd321beceff5af61d20", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1f360595d6798bbb7648b6d0e6f2394e6dd615ccd03d4bf978eb726b0ed146ae", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "39f37967d323a0157ef0a4fd73ff343cf588d74ce4174665fb2a832e8a774163", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e69a8524b122d581b59e4305453cac019037ec20e542410394dd427abc5f5dcd", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1a70823da92f209548c4d1413340f4dbdf16f03def4da512ab40edd0c5e83caa", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e76558702437428f99307fe29e783a802e83d62bf735401a25d8edbfe3eb39c1", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c83431af6bffd386f503f92df2a2d790f6ec4d10ee533b6fedaf77611372e882", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "52dc5b61431878c4d4b90c01ade92cf3e30a9493f138f51e91b15006ffb5b1f7", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0f13a9c16bf787c6dc0120eaf7fbda13de6ef3da06013146c9484c903750dce6", + "regex": "(?i)^https?\\:\\/\\/hotclipshubs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e6dbb8d88ac7137985f71f727d79653376fbe684bea2498e445a69869f742ee9", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "dea9bd141c791b85358d95baa31dcd9688ffac5f1b1af708f4dac0299906b853", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f297ae9091d88d5bd6618af4b156e715250c8b2d151cefc7d346cccbd2cf613e", + "regex": "(?i)^https?\\:\\/\\/xvideohotx8\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d9780076e6153913a90823bf77bf3bc1f49990b391aad7872ad9b6fca8c76809", + "regex": "(?i)^https?\\:\\/\\/momeixatgva\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1c4100ae658512cbbe2a991f81dcd5a18c2d8aa9dacb289ee3daafd9b7ae3f99", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgdfgdrtre\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "18d72deda48f92c03a7f274124ccbcd0acfb9b51608950bfb1da804b5f81b62c", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "042bec06a1f2acbb54722902ca3f21f5d429a46127f561b444cb77d8ae376594", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "80ef889e08ba108a8edf3ad825dcdee60988b2521339d30cb1f3d0152ac4af40", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bcd1e7b9be0979db9805cf649f06b353c0b3d91f6168353e3e29d6e1abb8eaf6", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d7133de7680f08c2ef6393759d02c61b4bcfc403671b0fce89dea3f0f2c9abe5", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "48f011e3e9a69d673d15cef00f26f24de2c48e07757f604620a662f505819c7f", + "regex": "(?i)^https?\\:\\/\\/bafkreiaeqwwnpma4zw4qe3j7w7w66geqly75aoqqyr3clzfqennptv33ou\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "d3e6c90b02d0cd9671abd49c0fb547fe355ff4a2c10e12883690b26db12fde15", + "regex": "." + }, + { + "hash": "da72316675c4ac5f6f006152c8f5a1222c7fcbfbe453d82fae91aff13f34e913", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cf329ef6e0866481732dab04bc86cdda9ae1b3a16050a924319e5c2e4c1f1bd5", + "regex": "(?i)^https?\\:\\/\\/52465789458\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "181f42a03b503411f2e34ac8bf3f5e357b451c7f6e24874b85c26d146bf779aa", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e387851a49e9cfa3f48caf1b276fea2aad212999a29b5043e492e79adcad77e0", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e7976ac8b20a963d9cc34a1b738d154329677e9f7e146b6808c09a1cf5543734", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a85fcad3be7313c2dfc6211b5795b8e0b41509f2c8bbba4a610fba392ab8db0e", + "regex": "(?i)^https?\\:\\/\\/moemkhecuar\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "932b87b0c3df5c709939bbd6c8d58fef3c9e680ace031311268b3f69f661feb4", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "390b7ee7973f01e324f6ed08b6c2ce1454bf9c4300b7c733997a720a7d28a0dd", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d23b83d5fee5d66d98e3fc884695f6ce191156ea1f7504d1e6aa0c034320ce8b", + "regex": "(?i)^https?\\:\\/\\/moemxarva\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c0d281006b92aa7c9b7760182458866005c5766c1b3a735c36d7d09024bdece1", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fb6170638205df5334da55dd78361f3c4b002e715fff365b37291ba397336855", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "77402bfe2b22a3755d57d67f4b4935558e20af505b3838aaabe861907feb2c1c", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "aa67aac6fc4455037105f138287a7b9903525aa5f006e078c6b9729f492d918e", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "aed5b9f0e81204e8dff7aabf478c20b4b2f3bf1c5955939dbd259a163ade29ac", + "regex": "(?i)^https?\\:\\/\\/35479865\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "332743942ead67d4197ced4043f0908f460fbb07ea46b7b6e8cf626b89a3b2df", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6c0ed88c13e3fae608444f54603e20603ecc05af6ca33eed29f91c077d95a5df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "931a903a69ba6e6defc99e63e2e93df9dd6f68d9dd0abdd7fe1b92a9053c1e44", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "772327ce167c8cf0cd5d79cab1d5f5bff7cad6ade6345fe7ece7153512f9c097", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df45005f2f25c7888219f5b653bd3c1172716e074ee1d9cd5fa569131dfb607f", + "regex": "(?i)^https?\\:\\/\\/35578951\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d125af39743ebaa78fb3bd3004c3d4fdbc346d75a414f7e34fd8634707fac68c", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "31d4e29abb9b6621455fdf668cc8871798343b6e77e46586c70e704786fa4931", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "df8f5eaf64dd238fcd8c6d5c3051e405482dc182e72f43149be06db25e03fcaf", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdasdasdasqwe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "68964ecafb46ffe1e693fdd037883d234a7e0f8d64ccaa4a66b22221b4ae2ccb", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "98ad7c21a7155444b96d9126a60bcf04a77babb1a4293abc9518eb29218f6e19", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupdrrrrff\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b96a84d17aed1a56e03da0c6b7d0c6fd3b90abfacf8495f29541b6d46d59208d", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0ac4f05dfa8df002abeab01ada905f62edde89efa72a196ff3a51a98a7a546fb", + "regex": "(?i)^https?\\:\\/\\/45646556\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "70c36a2dac3b210eaf1e418cd1528651a7e5210b5d335a10a356117f6dd57eed", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1e35ec80bade217839ffb8aa96a86f91d572926408c23f4f67df1d7fc13979fb", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "852f91cad074f9c4f68553d932f785e19cf0c0323aaaeb9158c277047f9e0762", + "regex": "(?i)^https?\\:\\/\\/gjhfgjufiytiytgkhkghkghkjhkjhk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "74f39370a1b935f6acbf715506a6861abce49297fe9865f7c13bc875ef7d3c83", + "regex": "(?i)^https?\\:\\/\\/fbdshfbsdhbfhsd145212\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f889be0b5f3942debe5d4b28b782e854206549a7e5a367d348c1a02f94e3796a", + "regex": "(?i)^https?\\:\\/\\/skdjfksjdfnksjd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1f9eb94712b8609fcdd7e95dc230304eb87418bfd1330fc64cd3db3f22bc6514", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f42b4a5aebd1eb8f8f43eb18987baff72e5f9f1eebcb7d9497d2a5a8662c92e5", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group11\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "75e208b8d4b4bc0a14670ceefaeaba58825f6c19ff84376612c74f168f7b3e2e", + "regex": "(?i)^https?\\:\\/\\/kjkghhfgahjdfasghd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "425c15a3bda94145a8e9d07d307f5cacde88192748e52438a2a58b792c6dd862", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ff21d24e6ef8124de65abb6412b269754cf515f0d429947791bf34c3edf3918", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8584c878882836d060962ee8064a54decdf52fddbff2ab5e328222333b7aa83f", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "26b219cdf9653e389c85449e325e3170460163dc5dd61e99a63114995881294a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bantuan1[\\/\\\\]+bst(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a342854811243a28d1a03f51dc795be1d67db58af64395daf9b36b043b66f16", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c9db730f36c434a4d48da5723c9e3e78d8edf0c3b3664604fcc08f9a0d072a11", + "regex": "(?i)^https?\\:\\/\\/aasdasdhgfdjghd12\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cf15b5288511dceaeae7fe13f2a52a94b05b600996bbfd215fb87ed2e7d4ac07", + "regex": "(?i)^https?\\:\\/\\/sdgyderyertuyfghfjdfdhhfgfgh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cc4e90a5445cfd14cf804474e439682e0d6c4f10e3d7f1635b4ef50028ab4c99", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "137f5a58f0bfc72416817249a2e7bb29af5d3b70c1007e061e3a5a5faf3286c9", + "regex": "(?i)^https?\\:\\/\\/dgnndfgnfdjkgjdf11425\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "23986f567a41ef099526fb1d586b5a33a96780d766a2e7c2abc79da9872021f9", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6e7804dba2a42b5b010f2890becf8c1961c0626ba7368497a333d492c2a2cab0", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "7da098765611d7d0889cc6d4a511c7328795bb6dd3c80ed82c69b63220bea54c", + "regex": "." + }, + { + "hash": "aea5376d99561f3113dd55a9f97650dca1bbf029730ff5af7a8862427e542c02", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "87c8f2d51e96966f9b1e1a894ed8844e2717d1925e596e10a010cc9e6aab10e5", + "regex": "." + }, + { + "hash": "18f18d0349d51e015a9b1777ea081fcfbc816fc9609743a5ee23adea63c9005a", + "regex": "(?i)^https?\\:\\/\\/hydfgufytiuigjgirtyigjghkhk\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b2e07658ba3345e00b44f7452f29f93a2c9be57411ceabfc54ea738876716c3d", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3920f510a64626fc8706bf8d14a890729300f8e4ddf98f37a62f5bcbac824cbf", + "regex": "(?i)^https?\\:\\/\\/dfgfgdgdfgdfgdf12452\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "807a03d7c44d2d7f995b6ded25a52ce60fd277dfb0146f53c5b2188fd8b4dc86", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b14cbf187c45ad2eaabc76b49cfaac7cbc6821cf8799495117992e30e5379e6c", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "caf164717e4b133ea6bff99a77354b49ad9d0cae6e2399e3002effc2e2300a72", + "regex": "(?i)^https?\\:\\/\\/sdgdfyhtutrujujurtufgjjj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7f2eeaa2c296b034e4fd0616f80fbcc221457f1e7890240f66eb0f50f3933a4e", + "regex": "(?i)^https?\\:\\/\\/meoijnuaegar\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8c5ffc19c105850e42498e084c9ab7deb369009d3fcc10bdf88ec305384a49a0", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4d513d85884d9bcf40926fe68870bff0c4f582f66326512181aa924017264ef1", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3d0802c9c41aeb60c21475fad962db159d5dc3ce3a63c194be4e3053f5cf3baa", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmakcamsea\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "eab14ccba2ecfd0e6eb6ccb3c1db12b3e8a56bd99fa78c27b57f71cc346b62d3", + "regex": "(?i)^https?\\:\\/\\/5649875\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "50e79cfa0918f6cb5bf68341d95356e0c5ff9df126ba36f2c918e0b9982f780d", + "regex": "(?i)^https?\\:\\/\\/fbdshfbsdhbfhsd145212\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9e3e97617913268500b4a3fe059829aca37766d8fc5bbba26498ca32bc757429", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfgdfhgfhgfvcgfh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "451438766d2c63514a337030588f225a5243c29d7c6d9f413033e82b022fcf76", + "regex": "(?i)^https?\\:\\/\\/moekxanrecaraw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b62bd062d0811bca4a4bb00a341f3bc6d0d59fb6a038c5cc73b115446e97e329", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d4d1cc79a9f2d2782de66680a18f077abe3d42b30d0c5975741c240a5140f986", + "regex": "(?i)^https?\\:\\/\\/bhfsdbfhds145258\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "49d158554ec5a89cf2183974ace04578da911111c3441f82f22c6080d4d39985", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "449c94b22c1e91cb55af5b86e7c64f93a11c0da615a295cfc451e1e39b9ba951", + "regex": "(?i)^https?\\:\\/\\/fdvgfdjg11234\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "357acde3f09ac545dce9a783fb52fa1f5c23ca1cf3d1e677e57555ce15a891f0", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "852efb9b5d33d0c5b32f0f51fe0e2ed24ff882c58d7bc024ec2b161e412bb0df", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1c89daa1df0e27f482df7036e4416a696a32894e19888414250937555bbbfb44", + "regex": "(?i)^https?\\:\\/\\/dsfsdfdfhhfghgghkk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "017999ca4b2a2447a30fdfe628bfdf99f40e8ad4844ae04872363213f4418caf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+80R1JQ(?:\\?|$)" + }, + { + "hash": "3bf6e395ab9a2c9c869fd0d651e923591b52300f64e20ad2ad7a1d89c181ed6b", + "regex": "(?i)^https?\\:\\/\\/fbdshfbsdhbfhsd145212\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b95ae3cfbf62939e60e4e944c28d73956f4ba7fddfc7a75718e139a50a3a2ce1", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a9adc96e42a57598673d0702a8cc5adcbc9297430f3af336470f0cf18ae77938", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f7b06c6abcf598bc0dcac93aca6bfd421c79a406c449b9dca3318b44e39b0eea", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e786d703eb245dfa0cc48e5da0a31dd5c424dc19757989d5a397abb8f3b4f063", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b654c0ec829ddc0948f7140f092ba42efd388115fff2beb03ef84c92c2ceab22", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0437dd82964b23b920ecba9672084d8b30af7e3b2e20499658ee1ccc1419e223", + "regex": "(?i)^https?\\:\\/\\/xvideohotx2\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "05e29ee53ffbac1b70c05d6d302a81a78a19aca603a930a8d62d6e3912e2d768", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1c34ba7349708e13964100b7c8bb097902a00d164c3c8338e5f6a85b5d7e10c8", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "78adae49d2cd9eeaebb44b18076bf553d015b222728e8933fef6bd6dc785d7cd", + "regex": "(?i)^https?\\:\\/\\/mkeoxarcatva\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2ca274bf6becb567706b95960e9e4454c851ba24ad9eb9adfccea0f6f814988c", + "regex": "(?i)^https?\\:\\/\\/dfgdhguidhgidfgjdf1114\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "843a15b1a63a28e20c1966d56bbd1f22d11561a12032178e53c62b29b7ff9770", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3befbb64a68e3f7c5fef3f5a3a537c17c4aeab366780e798d776d9d880f6e192", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a2d93bc26f62c88a16b1d7befa5a4418a42c1859aa23c76a4b7663f477a3b59a", + "regex": "(?i)^https?\\:\\/\\/hdgfyhytruyufjfgjgfjfgjjrtffgjfjgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "76b28f15183fb6d6fbad745ef05aa4fdcc8230f2db81430720470c8b7e8045fe", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "88fc841553779cb850c75b5bec9e1d6f84e1bce6fe39d6bdae442cdaee713f20", + "regex": "(?i)^https?\\:\\/\\/sdferturtyifjjuufghjfghjfjufj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "86f6e5141620b3ebf70e8133daa150c1bcf0930045f5abeb1949db508443ef53", + "regex": "(?i)^https?\\:\\/\\/bemxjenfaegawaw\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8c254f54e2ca50ec924567a7832f1100e3dce8f87920dafda34412de049bc0c7", + "regex": "(?i)^https?\\:\\/\\/ngfbflkcvmbvcb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bd7a6009aee8e69de2954fbb2fba07647bbea397390b70c3b509073f6df5464a", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1d8c3f2558da9c2cb32cbac9277fb2437bf453f1e0dbcf58566e061e79720968", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6a3ef962abb7a7629a8fde85c60bf79c5fa19b6e4359cb9175d19efd91a38c7e", + "regex": "(?i)^https?\\:\\/\\/fhgfjhtrutrighjgiytijghhgghkgkh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "94466c2769ff68357bad4986fa9f04940b53759cf13e5ce84ef2915ace02dc9e", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "81e4d787df2c18130bec84d1bb5594f7c68b27e69d6b34d0f792416e72e213b7", + "regex": "(?i)^https?\\:\\/\\/aaaadjhasfdjhasfdgasdfasjh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6567b65f95d9eba06a9ba12d2980add29dd4b81e6445228657f43e35befe50ec", + "regex": "(?i)^https?\\:\\/\\/dfhdgkdfjdfjdfjdfjdfjghdfj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b7aa4aa86df7a65c233b06de8b877337ef4dee8be7094268dd7be8a67b232651", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "03181e5c2d36a039ab0da6f8bc600f74ff41ca507a0c460dba5140fd6ee7aba5", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d58e142b755c02427f9be7a9c93fb3f2e26fe87d45cdddb0d0a2aa88b4272ff0", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "34dcaf1419412840aa1da5f7b936c139927419bfd7a2be43e1243a62ae687b7a", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4f036b839ca41c268174fb806b110bf5ac3f836ba40b2597a0a02fa0fc9a598b", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b654fb5ee2e41c8af8a37ed906418afa8dbdc3aed727aedee5f9839ea30c6b85", + "regex": "(?i)^https?\\:\\/\\/konumaretyaxa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cdb09175f1f3116f288190d1ee8c3cc58eb467080d71c95be515d34fc1ac090f", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3f80db3a7d28269338760c20f05d0a56885a573dea574a07a39f11ea500482a4", + "regex": "(?i)^https?\\:\\/\\/mokenxuarga\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6af05e7f4058a872e9e3c1ed9a04320fe757f2c195a250650c69e60cfed88ee5", + "regex": "(?i)^https?\\:\\/\\/mkoenxaiexae\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "db1b7298f0a00898d3f8fcbb11f713ac31b447f59e569927fac8d521f42740c8", + "regex": "(?i)^https?\\:\\/\\/fhhtfutrurtfujfgjuutjgjgfjgf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "218cf72416ecac91159de0e0398d14800a33c00c05681e7199f763d4f1884c43", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjfjfgjfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mail21b4b7a467f2b3a74ff427af26a1$" + }, + { + "hash": "71d8c372eb626cc5e0d58b87872837293fb44d8bc71aa4587a4df0058cee9d97", + "regex": "(?i)^https?\\:\\/\\/nmoemxuarvaea\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0aa94e20c2363d9de222262c47ac23d54150189fe1f6b3b20b7b5caa52e90906", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f5df4ea5b4ecde31659da6580eedc92c0ee42b92a5a104d70683d5ac49eb5685", + "regex": "(?i)^https?\\:\\/\\/beonuaebtaewa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d050661ddc8e24bc459d16d782561ee4c389ed5a2ae033064efc8f96b05ae458", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "582c565618a851b77d1151e6eb174307f68c57c0fab4949dbf523fbea5901ad1", + "regex": "(?i)^https?\\:\\/\\/hot\\-video\\-leak\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c8a4bb4b7edf646ae92922a7523dbec62d754b3e9086b76ad317bbadeccba12b", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "527699e7105b49579b90bd8c124855520b83f18cbcf35a0c38a2d83bae9cce13", + "regex": "(?i)^https?\\:\\/\\/bneixaetcaeaew\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d464bf794daf6fc3248b494a0dc96c1bd63e415a0131df335ddafb3bff53c759", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cb7830b9d38f6e6a0a9ad58d7c19c60a13386b67af1530529d75a67881282550", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "380ddd152973bba080b1222087e5583833fb7099432576496c45c687be823aac", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c2fb2f4cf18bc67bdd60cc5bc4cbcd4984e2e1052cf882cc86ef6229d6a57b6d", + "regex": "(?i)^https?\\:\\/\\/fhgfjhtrutrighjgiytijghhgghkgkh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e6b2a1f42a0d19aa0a35dba1b76bb6f91946d7c628817a66b12f0f93968d68bc", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c3cb3a76d9165df7497e5ecc31c26d1c3168ab8860963cc4898d078980ee5001", + "regex": "(?i)^https?\\:\\/\\/noemaecyuxra\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a7f119c948d7be375b48830dd10390d3cb1e28ea602a89683396cdcfc383eb3c", + "regex": "(?i)^https?\\:\\/\\/dgnndfgnfdjkgjdf11425\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3be1293dd168b5fceafcdcc71f96c87ebd1e8f9b80858544e07d382e60ad87b9", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fc987eb97a3b724c42dbcc8a80598f9ec00dcdcb80188da0a1e12321497ef7bc", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2dffa75aad6f7e79f08bb4144ebc8d1de4eb96614ad671cf73e9be96656fe7c6", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1f2175fddf68fbe344297e413bbf8e6cabc455e4cae98e6453d825e4ea78120e", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "18be9ba7e8fe484eba5268fbcd74b6b554533cfc31b71125a68af973818b3220", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cfc547e0fd1ec2db048025443ae291add3c0cbea7eb60d1367e1959a47d17173", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d243cd5ca6c26fffd7287013be44dafcfb797968712fdad965c9cca5089d42f9", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "10e9dae6e6819845f7422693b7f8bd7a3b752ae03ebfbc8d63d97b223411dde9", + "regex": "." + }, + { + "hash": "01ecf0e87b49aeec6c8395f66e0983dee5b5f7f3af4b65e0f2031ca448bf4505", + "regex": "(?i)^https?\\:\\/\\/dgfdfytutrurgfjfjghhgjh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1eb85f92f70786e46d9d38b57a3ceb976a8c488dd572d34ef92890b4caff3e22", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f7685aba108162b7860b88a16c45d989d436aa515913ce6cb28713a68baa55f6", + "regex": "(?i)^https?\\:\\/\\/6549784162\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1c2c45863a12f7b0484828325dc3f73a428bfa6e4cb63248e05a891ef3b8ead4", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxxx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fa69942795dd585c999937153e903867352a03b56cd67dfb17d1d5035ba17d21", + "regex": "(?i)^https?\\:\\/\\/ngfbflkcvmbvcb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c2faace29b3fbea10380fa9e4ee6579b2f3e4728a2d19a60d3b5ba6c88b8cf7f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+299(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "241be7953dea0f29944676e592968efe8bc4b0b1a54fab8e70e14c62c9600a01", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4c254bb4c33b9d4cd4820eda6e142bbfa4e6296e3cee3adce00407391311aeb4", + "regex": "(?i)^https?\\:\\/\\/hdfturtjufghjghikghkikghifgu\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "77c9eed3f2b9a23c35b13a87cc082a22b9b90ad6835daf7a17004380233aa0a7", + "regex": "(?i)^https?\\:\\/\\/mkoenxexaa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ffdae61297b980dbf0f5150eb07c304257ea5f31b8e7134eac67041af6e3f66e", + "regex": "(?i)^https?\\:\\/\\/ljghdahjdfaghdfagdhafgsh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "876cb66bf9caf3394e0d63cc3f6d627e214d82b5f9771574004eef5c0fbc28ff", + "regex": "(?i)^https?\\:\\/\\/jgnfgbdfgjdfghdfgdfgb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ce3192e63c985e509ab847662ff9455be9d1be0f5f254f65a664e8af0a71ae8f", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "794a6058eb773e6386c5d924c49866a5862fd084b7762fad382284ec84de3707", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ffef27ac423dc3a32489407b775861749531e0b516fc88158623c15620a33b64", + "regex": "(?i)^https?\\:\\/\\/nomejxnaercvae\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fa8afca91d3bd4b1c34a35ce17dbfb32ca5c10472740dcfa6a2171e61522ed19", + "regex": "." + }, + { + "hash": "ec27bed1d2fc395a49c625c172179e7f8fc97749b2551479fe068215b8acd746", + "regex": "(?i)^https?\\:\\/\\/dsfsdfdfhhfghgghkk\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6414ceb00ef76fcba712c00723aa6d1076e401f3172288ac6876f75976b5c241", + "regex": "(?i)^https?\\:\\/\\/hshgsdbffbb14566\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c87f8cc1970167613e0112578d415bcd7f54784c4444c34e96219c928eb4d7a2", + "regex": "(?i)^https?\\:\\/\\/fdghjdfhgjdfnhg11\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2cbac273165295fa42aad82284107fdf6ce103c160683fc6f5683c44f30123d1", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdgfasdgasf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0d0d7e810ce1cd2a510510fb709dfb15028f11c3d338aae0625016e353704bab", + "regex": "(?i)^https?\\:\\/\\/fhgfjhtrutrighjgiytijghhgghkgkh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5821aef15f057ddce5006d61ba28bae3274ee643d0892b615da93acefc457161", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c86c07354de0da944f31df5770424f1eddb118bbd34151d4bc155565788eea0b", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "640bfb8b27acf77ffa3065a98664a9e46baaffaffe916e2ecdfdcee8dc1e5602", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3d08c7bcd06065ab4c0bf219286d7f3c46bd6a4b9db36eceef1d98114523813a", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2016eff6e249c4d004701ff4cea886a5260e13c273110e587058755e9aec91cb", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a244547975a1697ce9e7815b2a782ca146e39f20ead0d4f313e903f0d786a0e2", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "178a455a47d6295aa57f110d606dfe064885350487a8b906aea04dbf1bfc730b", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxxx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "eb55be5e3ea91b8464b09b2c96ed4e4ac40fcb539a4276f164ade1290b586d15", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarecarae\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f08d3d6dc2ccc1068418b8a3ba94c4530938d97c9797310d3a74d7b7208ac7ec", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8522724d9c42869a44ab01b2abbcf6942fc97c6db31df56a3acc37d31d8803ac", + "regex": "(?i)^https?\\:\\/\\/2145474658132\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2d49b3dca9b618e3c5bb3e7807cb0f3f5cdbb4feb48d999abeea61ea1f2aa2ec", + "regex": "(?i)^https?\\:\\/\\/4354896749\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ca5f8c81c52c5e6d74bbd4db551b5397b70034c4e8d8f60c326ae73ea123d46c", + "regex": "(?i)^https?\\:\\/\\/dfndfgbdfjbgfh123456\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2815364dcc077bd1e659131ef291a6d0a307ca3eecb29cca365ab3903469602e", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "80ddc59d52a364b10443d2a7597946e0782578e628dcd4e1bab06d486e8e363a", + "regex": "(?i)^https?\\:\\/\\/hdhotvideogenius\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c95561ee82e5bf99a59fb2439c163b61f1e0bcbe6cdfc454b1362d0b7ad0c935", + "regex": "(?i)^https?\\:\\/\\/sdfdsjgfsdfhgsdhfj789789\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dbbd70c497112eb0c2572e011535a02abdfdbb8cfba77145edfd6c01fc60fb9b", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "df88d7402cff6ef10766853d405f75eb1f775b50a5ac5e7d673de34e3dabb473", + "regex": "(?i)^https?\\:\\/\\/aasdasdhgfdjghd12\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8ab15180697aadacd7e7acc19cd1c24dbe6caaf3d0108320b7321a31549cacf3", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cfae7145d9340fc7b16615cb549fd04dece4068a354711fc879f56f6cd7fcd79", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "728dde9ee833517a8ca12aee1c883af9675cbf58ee397e51e45eb377ff142747", + "regex": "(?i)^https?\\:\\/\\/fdgfdgfdgdfgdfg111cv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d04401b1abf6b24610dbfa4ae6b380c2848c5668f4427b789d1205f52195d796", + "regex": "(?i)^https?\\:\\/\\/nabaoecabresa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "479e14e8abd5db1b3c8f9d515c61eccad184cd32be96bc545f8cc8e92e29cc4f", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "eb4a0cff8351e5b36fb5f8d8defb5b414b3ad5a9e95861dc095fd646f8028f47", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4f2ac951f772f7ef46e1a827075b62c440e783091b7d9736a6f0ca9e491fc924", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cbc51ddee6db06b4bbd915aef72eb763a7c5f745291fb718a5b1e321cf50f08b", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgfdg123\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e8cc1bd10702c290d6612214bfd6dd84e2ee1094113aa36afb67c1b871e1986e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+connect_wallet\\.html(?:\\?|$)" + }, + { + "hash": "05421b97a210bcee30f6c7903c36f818af4e91808603e30230f29bd79451bbed", + "regex": "(?i)^https?\\:\\/\\/dfgdhguidhgidfgjdf1114\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "94e580f862781812d4608d989b4af25ccbc1b104aed4c6349dbbd059cddb2902", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfgdfhgfhgfvcgfh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "dcc1311d1e1c03b196d75c3da3e724a2787b2cf3e4bb60cf6a3967f9f18a5eed", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1b12625e373defb88a01898b972cfc05126ac7547106d69b6099fffe71de83b4", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fb09b320a94d50773efcc2833593f80f0ffe7d578a3a2cdddb185493a94ea420", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4ba9e9313ea93b06a9a4f879ed2b2ebc173882ceeca9d923baf31b4b6d2446d9", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b5ec346595dde85d8c8018f9049a72b7bb14dc68dea3879f7747f8e021d1b3ef", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8bf182cd2b158d14b49c597a67d48ee6fcdf4488d8b685f9e9851eaead3e96da", + "regex": "(?i)^https?\\:\\/\\/noemxaieaqa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f2fa159158fb09ba01f845ba9e6c2a156a15b1305849911fcc317b799d5f035e", + "regex": "(?i)^https?\\:\\/\\/kjkghhfgahjdfasghd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e56cbbc89eb992e1539e66f332fa22a2b613253d9b08fbcc09bb88023b53c0f0", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfsdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "fb7c03bd24619df3d6ac3746bf472a39a4cf81e5769f76e2961ca9e5e0f5dab7", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgdfgdrtre\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "15cf79e3113a267b136496275a6bb828d399ebc94a76aca9b47ffbc48a2efd44", + "regex": "(?i)^https?\\:\\/\\/khjkasdgashjdgasjhdfsa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3aeb840b49d00ecec8703e8348c2757166cef7da228c0e8e1da591e9e243ff8e", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "78527da44d254d9e5852eadd56882fad06f2a7238d309449b92c395b372aff76", + "regex": "(?i)^https?\\:\\/\\/dfbghdfkj12354554422\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "555d04282ac6179742cb66e3b87c4e9a440a1986e02b3e9e94d7131986e0edcf", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f3ef58a639711e5cbb00c2ce224a1a2bd62b5eed919d1f96d3a0f3fb8e3fad3b", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6b0fcff7d3ffb44c46cea795206cb7bb0c1d00bf1a219d2eb1f5159818a8b2da", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "77849872de96b1d3ff7b1a14de0ac3b5db9afef33f40af7a27d7e32f13dfa255", + "regex": "(?i)^https?\\:\\/\\/dfbdsbfhsdbfhj124568\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9fea44acc1bd009aff81cc3b98b4da749fe8a1c3e25bdf78286b72a728038472", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "d0c54395dea06bf475684ff1b622168701c1d7cd7cb7ad01039b20faf2e33f31", + "regex": "(?i)^https?\\:\\/\\/dfgdfgndfklgmndlfk11\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "28bbb701fab2620e2e5fdb747c0434a0ae4ab93ef08ba5de4a09b56f2b7c734a", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "39b8e0bb369d9b5f0fe042ac6c88fa30c08fcb64d073a34e1a89439d09baceb5", + "regex": "(?i)^https?\\:\\/\\/hotclipshubs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1a968a18958e0df345825790a31d6943199daf9f9d44b27fe6f5bdaa06df413a", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "69213f3308ca2a4fb1571bc1f15aecbbc9756b07b7f79474d4219cc46873b856", + "regex": "(?i)^https?\\:\\/\\/moekxanrecaraw\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ffe277a0e5d4b2aad1e11c76baafb9873b1c6df228a6aca2608ea0c710583a10", + "regex": "(?i)^https?\\:\\/\\/mkeoxnajefqwea\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8b4dfc8966255fd93c21d0e16c3172531785d895ecca5c1c46b57a33167acfaf", + "regex": "(?i)^https?\\:\\/\\/mokenxuarga\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0f136298e8d1ffcb1ea5c973735c74c50c978c4142b51a355ddc94e62890cefc", + "regex": "(?i)^https?\\:\\/\\/dfndfgbdfjbgfh123456\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e96c678881b8b06f13a1101f2d31527f6c3256e536d5b2d5dc2fc2d35eca7f00", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b7a545aca7448e08698d9b5feedd5158eb77c035ce431adafc7802ca8e1af274", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "aa8b89c62f52cb6b4ff0443cf66e5173239f514906942517940eee9473a068cf", + "regex": "(?i)^https?\\:\\/\\/352489745\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2db186c16fbc0b47a75903e0ac7db454064b9ea2f45ed847361bacec9b0de7a3", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4c4e7b185219efa6570ad8d12ef655c1dcd1b4b49c8024572fcaaceb494be29d", + "regex": "(?i)^https?\\:\\/\\/dgnndfgnfdjkgjdf11425\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ad437413a0614396024ced53c8942de10f8cb03fff2d05b209b1d22e02e6670d", + "regex": "(?i)^https?\\:\\/\\/trendyhotvideos\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "57aa5f1ef567abb7769628280696acdd9c725edb2d30624c7232b7caa3ab18a3", + "regex": "." + }, + { + "hash": "ec514695171a1c22a3f000a5750736b66c658c84412b304f9ded01be1fcbb5d3", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b7afc67f97291cc3e1626f60ea79c94b575d0f61b0ea5dbf4c6f39ae325bd3ef", + "regex": "(?i)^https?\\:\\/\\/mkeoxarcatva\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a48648687adc9212167a5c38e444c5a478a16464f62f91a673964fbd8a69fb62", + "regex": "(?i)^https?\\:\\/\\/vidtrendsv1\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "55fab75b5a2a3b4adfcaca29704212a5e244cfa64e646ebc94b5d61cd66bce13", + "regex": "." + }, + { + "hash": "2fea85f7525dd2ce92ab0f7d8c170441a4b158e62f0d19032c495cea743420f4", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarecarae\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "33cd80e61a61ffe9cb07ad14d1ad4afc94b8ba6c91868ddefbf94dcd51b8a71b", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6c1c14bcf3ff3c372e94891246b7e9311405684b79589b6fbf886124af18b3c5", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0d79d1dfbd3b43555e03de37820c01efc4dfdc91cf8e95dc460a9af81d80c455", + "regex": "." + }, + { + "hash": "9914833a5e900c19a6767fd44e0a8a1c5561ffbb38840d4995a56fa3f6805c7e", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "685200df73395db1b9f582385f101d0f735127857c459d83ac41ffd19bd90c55", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e5d5e96375d58315db6b30b937e476173543fcf90be479b6d3b2fd8f902420f9", + "regex": "(?i)^https?\\:\\/\\/fdjkghbkdfjgkjdf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "25c166ad740bc1314aea750493ba4f5580e3c9254bb3e56abf20d2b92f2f6361", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d5a2900b9bad93311c179defb10bdc049e3bbac53070457c079c6aed5bb8dddf", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c21f1506f807b1d01ca5c7119a59552acfaddd9ecad673489118377c79df3b4a", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "14bf6b7ea94f74597086db18740f6154c2330a0a6cc490f8fd1f74e5238aac75", + "regex": "." + }, + { + "hash": "0cb36939d3cf889cfcd753e9f4f61fed5ab1bbd1e19aa35b1e01c945c66ab344", + "regex": "(?i)^https?\\:\\/\\/bafybeiacz76c2egbi7knj7aoqi3s5bzz7knyquysnog5llvwofykgdnevy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "b80e912a54477268ad6520c4a47995e04ef00ded25fd37a4d1c643d863daa4bf", + "regex": "(?i)^https?\\:\\/\\/352489745\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "31707ab81002641abbe5f25f9a7f614d55723fb720beb4bdda18029180c5388c", + "regex": "(?i)^https?\\:\\/\\/hdfjfdjgnfdjngjdfng\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "19a1f7d6cca1890b6bf8bcb06abc88cf5600d689913f1a67951e00a5ecca5b3e", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a6ccdab1069770d49b4677d06747acabf06e2c48c4ef9a5c9973f6d319a43dd3", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "79180bad193ed7812104eb0ceabdb715307e1e916c509cc77ac9d2cbb536fbe5", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f6303b024eb0045a37c321b4bf5f4bef48d234f18a06541a33b202df786ac7a8", + "regex": "(?i)^https?\\:\\/\\/dfhdfydftuftjufjfyiyftjghk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "483527f826f4385e63d5128e850f719ec8e603ed1fc6dda9ecc4191457781dc8", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "071136d139729124bd1d129ddc94b818e774f31c81e58e3b622a1008937624a9", + "regex": "(?i)^https?\\:\\/\\/54897984654\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6fdd3ce0e0fcb328788e2ab462b419c10336538d631312d51053b5009c274b2c", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f4214ee98fed6b0c979c02c8653040bbca4fc7bf2c526cace2ea880ea0685347", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "78afa9a4d526d416f57c60f8d440b6e829051eb3fc51a61d4646924ce30727ae", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "faa56d6500dd4b2570a7666dc0d46afeaf5bb0d0bba6d9ba4209e71c274a9b18", + "regex": "(?i)^https?\\:\\/\\/attacayyhhajajabsishshsusvsjsvsushs\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "71293262fec97e57fce0bd831d0475bbf3b3a7b0f4be04ba52f3a99154de184a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ee6d60846339cefac943b18868161e54aac45caaf87e96e9049f280a1cdf551b", + "regex": "(?i)^https?\\:\\/\\/khjkasdgashjdgasjhdfsa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bf849f08efdc436a669c8ac92628a9b57e80ae59eacc997a4c91ea89bb232373", + "regex": "(?i)^https?\\:\\/\\/nomejxnaercvae\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cb2f85d02a81f7829f6ea107e7ca8565063e7f2640db33247de39a8f206e38c5", + "regex": "(?i)^https?\\:\\/\\/aasdhghagdasdfasgh3\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2ff23be1c5fb50874c79cba5df2ced83b63c3180170b5e749ea350fabe52382e", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?t3i1l3\\.com(?:\\:9965)?[\\/\\\\]+entry" + }, + { + "hash": "5977131f22fec6dfede44ae5b6682ea00bd1ac2c06b873c501836c5341a944be", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "02a481e6e591c9e9842a4a386575bdb2b5cd38ccb977f98f9ec8d87649e82921", + "regex": "(?i)^https?\\:\\/\\/moennxhaerga\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bd81d8df31f796948b1133c39d6bf3c81a8202e27511fd7d6d51610f35196d67", + "regex": "(?i)^https?\\:\\/\\/attacayyhhajajabsishshsusvsjsvsushs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4a5ca8dd0de2111fe8b14c26b03e42ed18b15947d31951c83e3df8e6f79d24b4", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8105c82ae19ac2a4b23d4279b94f0d02c718c528e3cd3576f43dd914fb5c13b7", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fc56f4a1b52de3468e84100a0a7271f1405fc7f4e8f5e2895499d8a6232b4897", + "regex": "(?i)^https?\\:\\/\\/dfufrurytujghjytijghkgghjkghk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c98783f86be249fa3055bbc86cf61ca84b785399a7fa2c792b198d562a1238b0", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c6f12061acd0ee51f8389874ac9215a33f277b8e1631577811159f9ed91abcb6", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "49aa4493352a094ebb99f8934afdd4b60a27f02dbdd013cc21dbc3bbdaff8e72", + "regex": "(?i)^https?\\:\\/\\/multa\\.serv00\\.net(?:\\:(?:80|443))?[\\/\\\\]+s1" + }, + { + "hash": "6ec6f6c9674428de2d36073e08958c2cec6063e1d1a4ce2f976461cc562588c9", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4cbfec59043ba77361fe3c0b170a42aa4898477d7e06132e54cb10dc6cbf4514", + "regex": "(?i)^https?\\:\\/\\/aasdashfdaghsdfgasda\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4a98b2de04dd60006cdfcdb9ba1a5ad5559670bb2d9d1eb260643cd62e2e64db", + "regex": "(?i)^https?\\:\\/\\/mkeoxarcatva\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b524ba01c279e06da22883847fa51fd7130eef1a5f16947bdb2b79197585d479", + "regex": "(?i)^https?\\:\\/\\/moemxaheta\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ab5e4250fa05c5e2f6f4b0a9f09e31d5d2dab365a8567cdb81c93d209e62ba2e", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b0d1d8feea8fe6e1ee6901abe86916645aac10af79fa744d1b0961bf2f8acca2", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4af4088394b2acec3d21f5bdd438c1a1fa4f9cee0a210090aafa545a40bfdd36", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f929823f2263289f5b3b4e657aa7d288f46acddb32ef892d80eb7a1e583f01c3", + "regex": "." + }, + { + "hash": "3c054907bd59e0a51b966e9e3f0a4d1824e7777c49e7493f259702bc1c7e6b83", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6b3f224c20dc51667b0fbaff3334baedd7f1cb30a4a1501e157ab49292e10714", + "regex": "(?i)^https?\\:\\/\\/45646556\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "44524ff279e8d14c9e135655af57b139cc1a89a0f394e2f7e883df2a68e763d7", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0f137f076351b4142abff7680cf54e3f633a0e5b796d03985bd70f4dae2e5385", + "regex": "(?i)^https?\\:\\/\\/neoanegheawa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "07f9cfad4d5f1e5808e3a4087491491f6585ff17da34ed834ee16f8e09bcd9aa", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8288409f12ccc30af2ae72deb12b7516dc848d0c2a67f9e2785c5eecc8f4496d", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7556b9686d32a322313459cf74191612241b821110db679e2c1785b497df869d", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e3b3266db0e9ebefe07efc58d930f0de9b20ca8a68b8d26e72118cb392bada97", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakscmasckamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c1e97629150dae09ef634f908e7e40b3083e1dee3ea1b3554f9e538768df279f", + "regex": "(?i)^https?\\:\\/\\/jkjhgasdfasghdfasdhas\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "805106f806d90788c5d5be9bdbd21c2ce63f8883992ae1e197e4355dfb67cd90", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "467fc13e3156b96d93bcc675129deece14176c41b3f8b3e6297d467fc6e4daa2", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "da85109cc140c5a8e37dbc6dc159ec0b09447c6f773517218e786593705352c5", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "73a145c2f2294bc621e15772642f1b21f08a0f220c23a39f6d248172261e8442", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "64d80c4a43d63f2f2b3f979fce7ddb4fe4a9cb0e4b6fe3fa5635bc1b9679a9fe", + "regex": "(?i)^https?\\:\\/\\/jjsusgsjdisosojshsusueioeheurjrbfi\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "92ab86a9ba69182e3adaaab53ed2c55d8636bd515704031f59bfed9b965a2858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+presale(?:\\?|$)" + }, + { + "hash": "17647b85c357eedaa0ec51158f19b41064826bde027e2fdb70aea7cd71c883f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDD4EwOAzgZtczvVjGJyVPldkRvoHRdq8EOMnKE55HMpiU8t9R9MrcU943eYabnthSK_Qh0vi6euuzHOKnYBaKmqKlu7qKcAkfT7tOHQGfhLiW8l__vvzoe7vY4Q\\?kws\\=\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fav\\.tub4us\\.top\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fnjwcjyshepnz\\.buzz\\%2Fplay\\%2Fid\\%2F1053787\\.\\.\\.\\.\\%20312\\%20\\.\\.\\.2C\\%22\\%5B\\%5D\\%22\\%5D\\&si\\=1\\&focus\\=1\\&pageUri\\=https\\%3A\\%2F\\%2Fav\\.tub4us\\.top\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fnjwcjyshepnz\\.buzz\\%2Fplay\\%2Fid\\%2F1053787\\.\\.\\.\\.(?:\\ |\\%20|\\+)+312(?:\\ |\\%20|\\+)+\\.\\.\\.2c\\%22\\%5B\\%5D\\%22\\%5D\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "8a3ed2b287db39de356dd0a6740238a73d5cf7f9f15f00398ebbd210b547b7fc", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eae90eec6868542849360e2cafc88b674ecb6ef5408ecb57a10d318e0b55ecf9", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0b18e511b0d1f229cb01c75e41072ed2ca4b52371f78b8645515bdff2a2d92ef", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ca5f737e4bcc5bd31ec3332ff7b40b25df0cfe11e7150c16cf17d6f1d00ac0cd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3a42510bfa641430ad599116d802297d45ff8b41b3ea3a3e94ff4de86102e3bf", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "39f0aed376aafc9586053493967c08520f4d5a1b9493a2161683e4cbc78b75db", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6dc25d9bec009742c2d3109f4371e0a0725af25da4b21ec0fca0ccf0f0eb6053", + "regex": "(?i)^https?\\:\\/\\/nvideoxtodayv1\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9f05fc2d7318fa8d559e5c7deb63fa91777105fe669cd86aee4e66c1079a9e5b", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "485deffe4c70a8b8d7fb2660c2fa27c3fc35cf721de496dfec0608f8025db924", + "regex": "(?i)^https?\\:\\/\\/hdfjfdjgnfdjngjdfng\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fcbc538346f5f8908239652b2bf3e8f0d1384a757e760c8acdc51de9b530826b", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f7e13d9b71b2b8a2b9a970c7e8cbcdb75df14e0ff4919ef69be9315bf2dfd6ce", + "regex": "(?i)^https?\\:\\/\\/zdghdfxhdfghdfghf14\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "81add920b1dc7bb79d570c65d23f3e52bdf04119b8519dcd42fb1b0845ba80a6", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9d14c6f77388c8416bde1c17ce00ba89b945dcabe166110277732a50dce4c725", + "regex": "(?i)^https?\\:\\/\\/mneixarbaeva\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "006c1daa61408ed46b3611428998d962611337b1b9c778aa7d6e903b0249b169", + "regex": "(?i)^https?\\:\\/\\/khjkasdgashjdgasjhdfsa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9ca00042a87a5f5af29d0c47794f1ed0fb9e0e93b22703843dd6017d6e04da63", + "regex": "." + }, + { + "hash": "bab01699e70cc0b74accedbfe136d7166c26411c481ec8fe3b15539d8efb76fa", + "regex": "(?i)^https?\\:\\/\\/fdghjdfhgjdfnhg11\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f5d3e3a96026873f33b5cb8e1dbbbe0b668f127633644bc20444249b7a06f067", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a3fc87d34216ddc8fca5d3b2a5ce2594d80a9e0d6df9e31fdc010e8df49a4b29", + "regex": "." + }, + { + "hash": "daf1f645ad0d05c4d01ef5f1954b2015aa27050b8001c0fd2172c7c03689e64e", + "regex": "(?i)^https?\\:\\/\\/hjufgjiyifgufgutfuirytjgfgfjgfjgjf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "842915d70d541734464de87d754595669ae9809814ad593dbd7a92cc6c29c68f", + "regex": "(?i)^https?\\:\\/\\/moikoemnxar\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1409942a4574367915b24ced3efefd0a40410f4912decba931ad58176b5b8eb0", + "regex": "(?i)^https?\\:\\/\\/lkmsdgkmg4\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "13b469c2d672d63dae2bf7e48393d89883b0a6e9bafc9aca53c312d907443e95", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "119bf463374e9c546013b91c0f05dea5ca78aa744fa6c39218e134e10cd87021", + "regex": "(?i)^https?\\:\\/\\/fdvgfdjg11234\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1913319f9e54396acaffd355a00c829146326bb48959414484d8d76d410ab50f", + "regex": "." + }, + { + "hash": "19730ea5246d645262c4a9947246e09911b6ad18a3511e6dc250988c12100337", + "regex": "(?i)^https?\\:\\/\\/ljghdahjdfaghdfagdhafgsh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "dfb7c5460f64d68fb1e3cf6e3b6d558d17fb1c33110e53d3a7efcd0c07c24b87", + "regex": "(?i)^https?\\:\\/\\/sdferturtyifjjuufghjfghjfjufj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "95dbe9c663a9aae48bede490cd5b7c0eaccde34f9a7d4110e6b9b80cdc1d5e2c", + "regex": "(?i)^https?\\:\\/\\/bsdjbfhgdjgf142552\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ef0e2b2d0819076654f1a27e906fdd5c9a6edf7e6536d17027080afd7eadaf06", + "regex": "(?i)^https?\\:\\/\\/moekmxuar\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "abb62dc672962417d33c00295e710641b8e9e8cfc41b0bffcd9df29fd620d429", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3228e6b97b3d7dc453aee94322d05ff79a883ec2c1d6c8302c27b45932dc2c1a", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f1884bdeefcd29b78562dd48ee4e38fe4046fdb67d25dac712ce23c65bbafa07", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "96e5212d05ea74add17b42963e7238c03d6fc512377d6d1e7bdff5bcb27d3217", + "regex": "(?i)^https?\\:\\/\\/2aslkdi9\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d9a0956e0a203bab3320886abd7bd3ed1b135e419e062c10f0720f4d12d6dbe9", + "regex": "(?i)^https?\\:\\/\\/352489745\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ea8c7b1794b811f886437df00c52c3cc65ad7b446e1ff44db4678e817b1340b9", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "efba4437c16f9ba11fde2b59fab818f12401a46a4c212d7682dc46b2522ca417", + "regex": "(?i)^https?\\:\\/\\/mkoemuxarva\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4d462614bbe7da00c3e9585ae287aebfe43bffd7cb232468ab22f74f835a1b08", + "regex": "(?i)^https?\\:\\/\\/dgdsyretutruthfyydrytryhgfgfjfj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c974e4bae82819058218d1e35979a381ec3906c33cbdcb739c7413f58ed72546", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bjo24" + }, + { + "hash": "ff30d31e2c9789dcce3392be37d873c9ff222c4da711b1a7e2907d3a1a38caaa", + "regex": "." + }, + { + "hash": "76abb23856bae3b485c9fd80efcbec38391e148d963661e3fcf3d9d9d3441bb3", + "regex": "(?i)^https?\\:\\/\\/hdfjfdjgnfdjngjdfng\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "201df4a05cac849218d1b561138cdcb11b99ea3ef6381464930c4b37ee6ed4da", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "65df799d2f03c62e4009d05eb5d1652f3debb675ddecacf5385cbdde956e615b", + "regex": "(?i)^https?\\:\\/\\/gutrfuiytijgfjytgitgkhgkhgkiytgjkjg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1ffd0c807a036889e105c5407a7fe36ab3c3f7b143f274bb134baa93fd3062fc", + "regex": "(?i)^https?\\:\\/\\/sdgyderyertuyfghfjdfdhhfgfgh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4d46339072f300f3254b2e320349ab2d59335ebd33a9022271cd523a191293c9", + "regex": "(?i)^https?\\:\\/\\/moennxhaerga\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "69b177c1e5e0cbb470c4f1318f1aa552c316bdace407bdd6dfdf883eaec6ad66", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "67138e5c6dfa9be8a7677d1679457241dd12fdcc84189e87a100370f7e9d316f", + "regex": "(?i)^https?\\:\\/\\/fhgdfufrtuirytfkgthkiytoyujh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "dfc662c00e5a2f07da9eb45157b4c3993f40b03705ffbb6cb12a7227608b1683", + "regex": "(?i)^https?\\:\\/\\/fdhfgyutrurujhjufgjgfutfuhgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5677236407f959b9513857741b789cc2219ecc8cf8c9e8b5ebf0efe22dae0024", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9164764ff1712f2cb0a7130576dc8bc74276d617e105d70c24a0909381103563", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "18047d5b1e728e86ae44ee72574ead54a89e528e1c013dd896084b2b3d9689e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+a2WUTi(?:\\?|$)" + }, + { + "hash": "0ce04097acf0c9aac9a96d7de5faac8138b5cbe36a7128cd084dcdd8f2bfefd4", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfgdfhgfhgfvcgfh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3a843b6d2c778c39349646dcfbcab4667749bc29d288686ee9c8fbdf8f27020b", + "regex": "(?i)^https?\\:\\/\\/fdgfdgfdgdfgdfg111cv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9a685e7d7fd52016d74dc0ad908406888637a560951b7bdf95476434d5e071c3", + "regex": "." + }, + { + "hash": "9d87add8fe69faa6d31c425c6e25636e7ccdde37670b8b519eaf9ec5d141f0a0", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "440ccd7fdf52df35a9a94af476eb2dcb08adcb1d3fb55ff563ceda4cd436da7f", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7481b8d4cf785eec0806622ad9bafdf95b4a0c88d1f1d40a660995ba94c61cf4", + "regex": "(?i)^https?\\:\\/\\/moemkaeica\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "10f154fea5c1d8855f74b426a22e3054f2f11c02f7d9745019833a099808db6d", + "regex": "(?i)^https?\\:\\/\\/dgfdfytutrurgfjfjghhgjh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a9bf72167a8510cd1a4845cd6981878aa456f43a028e0c5ed95ebebdd177a41a", + "regex": "(?i)^https?\\:\\/\\/instagramverifiedbadge\\-1\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4b0af1b07056b41e4887f425992c4ed380f289638591599bfc051a268bfedce9", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "11a63d70fabb4f77e06c07314868517fae5f4eb181c533276d012d3a4d32bccd", + "regex": "(?i)^https?\\:\\/\\/hgfdhgfdhgkdfhgj111\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0ec149d5fa81691fc6aca35e50cf13e56b051142a8fde37784fa0b8a0416bca7", + "regex": "(?i)^https?\\:\\/\\/zdghdfxhdfghdfghf14\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b7aa38d0dd8e6d10d2726c64724e6d4d72268116ed1badc6dcf185f581ebcd44", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyklasckascmasme\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f87df42dd01a676cc41705fd9883a15f6d1b330af8f15bf26b2370b80a67ff4a", + "regex": "(?i)^https?\\:\\/\\/gimenezrangelfranklin\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f832172a907d2a21a309c97f1103199cfbd5c7e53aa0a59913628cb2bbfd6ba6", + "regex": "(?i)^https?\\:\\/\\/3536479846\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ec5b8c666f8469fe913bb91b72f3603da48d1948798b09da822477a11e390ccd", + "regex": "(?i)^https?\\:\\/\\/ysf11\\.serv00\\.net(?:\\:(?:80|443))?[\\/\\\\]+s1" + }, + { + "hash": "1a9a1c8d8baa7864480109c02f1d550fa0e746cd9ec07a7a50a890130a34ced3", + "regex": "(?i)^https?\\:\\/\\/skdjfksjdfnksjd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "842f2e9ff8417a9e833d51d5dfe31f0e9d80bc5aaa7066f2a05e48ba3e9a276c", + "regex": "(?i)^https?\\:\\/\\/aaasdyasrdytsardasyt\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "65dfbc08dea7cedd40cff8d0e277dc2c2c1a9b7022bab823f3bb422c98a9bd74", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjfjfgjfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9769ded06a415ba48fde65e07aeb3b1453b74162679b6cd5adab0740cde25514", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ca66e49ad46f697d107d2afe2cbc50ff6a19617eabb330113191b3712f8d30da", + "regex": "(?i)^https?\\:\\/\\/asdasd4asd5a4sd5as4\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9a89e30b462a2bb4db72c73a52cabc06de0a4f78e52d1e32f2b052fb111f2d77", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvastvca\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ba84d9c502158968387920b278aad3e2d4a73206a5ca17f340f4a2b839191caa", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdfs113\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e2274d336c4723454b95b07f8f5dce78bd3606f8da0f7dbe44f894837e244439", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3380bc1e89ccdaddfaf833c7d4887a560b9ba94298c7573afdbb9821025bb4f7", + "regex": "(?i)^https?\\:\\/\\/beoxeicaeraea\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9fce19c27754426a36253d79603c799e4a8ad38f72587992e47cc203848ee3a0", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgfdg123\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c3833f8186249b30a16fd3b68babfacf31e0660d2bb8952313b33bf630ed3b50", + "regex": "(?i)^https?\\:\\/\\/moekmxuar\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "43985be45764a63cc6e640f1819cb27e6e1370e23a75968e17e2e05ec121a2ef", + "regex": "." + }, + { + "hash": "405253d8cf4ecc7c6606fbde442df4bb7629d8764eeafd72b6a5c5ef51d49f25", + "regex": "(?i)^https?\\:\\/\\/uidfhgiudfhgiud1556665\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ea25be2ba42e8fb9d3f7bbf8faa0b9ce29304a246f1155bcd4de197dffbc72b4", + "regex": "(?i)^https?\\:\\/\\/aaasdasjhdfsadghfasdghasfdhas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "6bf8e801bbf42ea6a46cbe249286405118983f347347b0722dc952273f940768", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "003ea2db3b4f6b8cf9df49d398337b09f760a33eed30e586ef9813a6dd9982c7", + "regex": "(?i)^https?\\:\\/\\/zs2345w\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "7e097204d4fb7fbf6b2abcdda3f813e4206d4623f0a230baaa992a651083a575", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "82c44a32b5371fa9aa6efd7365b360595740fe1588e3f129457085c9a0aa8519", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fd039f989e1973cf7009968215c3cc3f33515c33addfccb94153b3fdab1c137c", + "regex": "(?i)^https?\\:\\/\\/fgsdgsyhgdfhhhdfghgfdyfhgfhgh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "114dafa137f7f49e78cffff11cdeda9c6fe1afa8725810f160fcfaa1efc6e122", + "regex": "(?i)^https?\\:\\/\\/4354896749\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "658c4d2eee00df66421c0d2f65796a952dcbfbdc932951c2b14efb88ff06e656", + "regex": "(?i)^https?\\:\\/\\/aaasdjasdfaghsdfasghdas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c4fc32a1e3d3432f2dbfbb7bd9a230e5c4a16cfabe8204356e9789cdda5e459a", + "regex": "." + }, + { + "hash": "5ae5715260928e68cdbfceb568e5a3b883a2a001d8a5e8d39ecb4ee4fc287c9c", + "regex": "(?i)^https?\\:\\/\\/dfgkjdfbgkdfngdf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6eb8f0e15376174d9312ee1e388f2707fc8502473704e5083264a930e6ca9018", + "regex": "." + }, + { + "hash": "0c87dfdc3c9aafde8b5d5e00abd1bf7c9e9401a4c0efdff0bc5d8d7926896a89", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "085b7d0445de7a1b08848e409ea82cd85fd84254e7c8ce3b6bd448749e1953ee", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f12e0520a38b48573c11619636b0b4bc47e595fce84ac1907d3367b7e81d2081", + "regex": "(?i)^https?\\:\\/\\/nmeoxmarvwst\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "af9dcf5db856582607b19f8c6c1d36d1d3fa573b8f0c41ccc0dd30d8a57ffb23", + "regex": "(?i)^https?\\:\\/\\/moekxanrecaraw\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d510d2cea300427a5fd78238f99c7995d57d7f4dcb3b1fbb4d8c4b699d3b780d", + "regex": "(?i)^https?\\:\\/\\/2134658978\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a19dbfd37221fd846f0d5498483420e738977e5b7bcbfc61d55ad57b2b900767", + "regex": "(?i)^https?\\:\\/\\/xvideohotx8\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9d87b121e1b1e5efb76e14d80d8f81aae3df434236cd46bfd1d9555195b1c018", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UKep5KcOm(?:\\?|$)" + }, + { + "hash": "83df784eb6bb8772bfdc77113bade2555094c335d27af381e9836099b9ddafa9", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "dc3ecf3ce1b937e9fdd17fc7b4c84f083c821cb31fe59fb25c2d378eb369f765", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4c4e537142ac840d4e950395ccb07e0d75a5fbbb750cb46b9dccac54db5f250b", + "regex": "(?i)^https?\\:\\/\\/fhfgytrutujfgjfgutrfgjghgkgkytiggh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "75b12ab2e4a736c8cc4be2d1fa288b3f43223cb0bf88444ec3d57a044b631af4", + "regex": "(?i)^https?\\:\\/\\/35487511\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ea862fafe0ec5e4079202f0f445fb33c9e267c122c151ea34ea9486e519b58df", + "regex": "(?i)^https?\\:\\/\\/aaaadjhasfdjhasfdgasdfasjh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ccdb1fad70b96c2e214ab87c65c6e8d0ce467d2b742b3cc8d8977bd5f930e2c5", + "regex": "(?i)^https?\\:\\/\\/dfgdfgdfgdfhgfhgfvcgfh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "41c4bdf77ffc73936c1656937ecd936d2a163b039f3f3770c25608f61db95fa0", + "regex": "(?i)^https?\\:\\/\\/ssdfjdsgfhdshfbdsh122456\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e2a2266ccc321acedd13b6122bf5b9cc3f8c0668ad4eb6e27470e1df8ea665ae", + "regex": "." + }, + { + "hash": "8085971deea3a2a78b5d404b5d3bd2a53ab5b4ea34c8f0b49153415d019a2b1c", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjufrtifykjghkghkghk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c1c009d443eee2fa9591fdf3c8abb4ca160d2d275516fd71669e5329d5a9e44c", + "regex": "(?i)^https?\\:\\/\\/fdbgffjkfjkdfvcvbvcb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0800b8287ad0cb9ba5ef59ca0426d850df3720778f762c5a8177c9f11b2e6f8c", + "regex": "." + }, + { + "hash": "8d1c39bd5f2d6b8a83f8ade681316a2cb83e1122cf5ac9ff1e51be8628e7a259", + "regex": "(?i)^https?\\:\\/\\/gfbjncvjknbcvb123455\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "aaabe49936047bc29d9019977906f1b5a4b265ab22a7371f414b4c9fba43ce4d", + "regex": "(?i)^https?\\:\\/\\/45646556\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "adecc08a000f7955a81d8b6d96e74aa38088a6ebaeaa0e3971cf29ded6a869be", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "03d567ea9998dd7cdf7bedf2608d321993b43e5ca5f57458b835de1ab9a76ee8", + "regex": "(?i)^https?\\:\\/\\/4354896749\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "84e141a7a65e0ef18407dcf46a4500c7d9e41f6718d3c11dfd874ae9ea5323d7", + "regex": "(?i)^https?\\:\\/\\/mkeoxaecarwa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4f43ec70b807c0a4c22af10479e96863ca0e5f83c4571e4b915dd17a5136f382", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "55f1a83a5742027cd5ae2cef0af8a102cb9b0e766830a31b39bf4f1a92617dbc", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjfjfgjfg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cc4e057724a8b7c2f04f1f29bd8403384555df93e78d405bcb6e738be213ac0e", + "regex": "(?i)^https?\\:\\/\\/fdgfdgfdgdfgdfg111cv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0f5e579e48f5e81700814a776517b80383c8e6b79becf9c459b041a12928b451", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "521b01d354febc9dbd245993d98ae103291ea52929bc78b9fd5659a8c9015e85", + "regex": "(?i)^https?\\:\\/\\/dfhgdfghidfjgnh111223\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2b94ee98c16a3dc7f9258fa88730747ee4f31e4b4637d865e279cb4fb46c7d97", + "regex": "(?i)^https?\\:\\/\\/2145474658132\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7a07d6c06089b8c8039b31aa302df75ab0db331ad6b0e9ff02b24256b3a70490", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9ccaa38e40f3f315fa922d5630528a866827be6253e3eb7f9d6d393ec4e8b32a", + "regex": "(?i)^https?\\:\\/\\/dfhgdfghidfjgnh111223\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3b3c353f30a331fad4f1adea5901f23f43308ed7d32f1b46749e86541a427408", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfjsdhfgjsdhf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c2c4db47f11c2c104077d47dabf9455c5a4529b13c5cba96bfcb154081e7ef28", + "regex": "(?i)^https?\\:\\/\\/7898797879\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "4ccb07bcbf01a75eae92e8572849a430f52af440d89562ef605e2c484e56773e", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "453760ee25fc1677655adab80b90c45254bce23ace33c7e142a0f8a0822870f1", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5957cf9842dd7e0c737988db5775fbd69dc2070e4d44bbd72a050209005c5792", + "regex": "(?i)^https?\\:\\/\\/xhdfufgjfghjghikghighkghk\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2b0010f51129a4a526a53f9ab791d99c9e449224e5e5a5ea1c40426f6f844b99", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "82c98cf11634a8bb39179d7f14b04cc3347901f56377d54f6e82a9cfc3e586b5", + "regex": "(?i)^https?\\:\\/\\/triolmncaskeaotansebasydaz\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2847d525e090bfbc287684575c25139fc4fcde77a6a468747211c8f1fe692a9d", + "regex": "(?i)^https?\\:\\/\\/xcbvnbxcnvbxc12245\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3376cb18c002aba0b3f881e96574beaf4cb49dbceec51b139419634d708037d7", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotx1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "39f68c10e33b6e7668619ef71327263b3844e7c51cd0902fccc394dd2b899d44", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "26b4bff11ca2e1638e00712deea8f1e9e9cfbdf36707b6c8faf973c9537b1648", + "regex": "(?i)^https?\\:\\/\\/dsfsdfsdfsdfsdfsd1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c14ed9c42dc5235747a86ceedaadb7a47ac61ecc8af5c39e2250082f8b9d1cb3", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e558e3a55d3d0fd75bf3bdc48548f084d094b8f5afd5f7947de0e63448c06ba4", + "regex": "." + }, + { + "hash": "25d641ab3ab69098131f9d85a71deb70ec1b146633863ab495a9ad68e6ee6429", + "regex": "(?i)^https?\\:\\/\\/aaaadjhasfdjhasfdgasdfasjh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ccd2698a8997d4c264264eadd2b5ae60caefc703d1071837af054d30eff643ca", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "218080e82627ee7f9710ef11030ffaf8a36ece1a242a85d02750471853136293", + "regex": "." + }, + { + "hash": "31abac6afb08ecf047751a65059b9187aa355c21e45bffefdb181e3146189276", + "regex": "(?i)^https?\\:\\/\\/noenuxaeghea\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1a7d6427eb0df7f69b5b1a81728e67050e9116fcdc3bf3796525e37f543cd6a5", + "regex": "(?i)^https?\\:\\/\\/hydfgufytiuigjgirtyigjghkhk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fbe3fb59c7255198aec42146f4de660cbabdfaf28f556ed149e52f79a48748ef", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bcf23bd0d220391931d3b07964af2795dd96504c7978d4d054585d9a67515a0d", + "regex": "(?i)^https?\\:\\/\\/hgdfghdfgdjfkhnk14\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0f5d213d355062cf0f6f1eadf8685092d6feeb2552d666936babc4d04831ad6a", + "regex": "(?i)^https?\\:\\/\\/benoajseuiaega\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3f73c60c4ff224f590e17852282d9b76c6cab186f99405a56f21eb93ca97b7ec", + "regex": "(?i)^https?\\:\\/\\/neoixmaneuvae\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6702c33c9844f5693764093cac873fbcaaec888cb0cf465080e57f9a735543bc", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9a02d8d2a9588cd2fcf9d34f5b5c3fd2c8f82a256800783be48cc551e0b9648b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mailf813642adab5ed6b6e13c81b7f47$" + }, + { + "hash": "6b3f31b2f114610d100442ec9f31293d84c328b7be6d71bb2319cb907312ed4b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmakcamsea\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "de50298813e4d05282681319241208be9480fe2b048430d0ff988f2a27068442", + "regex": "(?i)^https?\\:\\/\\/vidtrendsv1\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "df49ba4285d3e99d25c670cba5dc66ef2b0c5bfec872f9e4942dfe8dfac514a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "689678ca2ea21ac6394cff6558a2bd6260ea4d7bb3da0b78667bf80ee4f942d1", + "regex": "(?i)^https?\\:\\/\\/dgdfhytutrufrjgjfgufujutfgjgfjgf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9aae7776aa9f89bef85538b5b1959c30f246361ad9434d4cd5149349b8f44a4b", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c3cc87037d6e178859122100747ee0ce29411ab1ece3b49b63ce7b3eab16b3bf", + "regex": "(?i)^https?\\:\\/\\/gutrfuiytijgfjytgitgkhgkhgkiytgjkjg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d6d8ab523f6e721c98b270ce69c71911763ec65502592636bd097f972bb03196", + "regex": "(?i)^https?\\:\\/\\/mkeoxmarcwa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e8e09afacadce069c2da379294a0ed42fa5e130ec8b78e4ad31eb5d474df878b", + "regex": "(?i)^https?\\:\\/\\/gdfhdfhfgdjfgjgfgfjgfjfgfg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "732ef2aaf3581df39efb4cd2e4d83d7926aa9228904963681b7b1b50cdb8eff0", + "regex": "(?i)^https?\\:\\/\\/mnaenmcagvwa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "324eb590ff420a421d0349c703624f8dd29c5bf3905a4af1cf4321e938336183", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d80d38da06554c567b55e48175afdd82cd1b3e0a74863a59a24ddbad87095642", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "332ff022c377b143dcdc290f4ec1001508a01de16f20da8447031d9b26c9fb0d", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1c223cee56cdb188c7957d1366fb208cac0bef0b51ea0c38a46ad4275958c138", + "regex": "(?i)^https?\\:\\/\\/546688798\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a7c055cb601440658cd2cee97f89cbdfdd1e6e033a748d881b0f69b3445fbca2", + "regex": "(?i)^https?\\:\\/\\/yhdturtfuftjugjghjighkkghk\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "29f38b8d5202013845c8aaec82155680226e6e00f5fe85bd1ebe9aef1b0c3122", + "regex": "(?i)^https?\\:\\/\\/dfgfgdgdfgdfgdf12452\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f4a81e9cd1c9929bb2352beb2a1f351d02dc262dbb60e5c1165bb48f06d7e031", + "regex": "(?i)^https?\\:\\/\\/ebxaeghaegeva\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9996c12247f8769b5a094437d302515cb52b7dd35c96f2634e5dacb675e51904", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "03cacd32dba568a79fe39a4bd18b0f3c1f26cf0c23583a447d00ee96c3011b66", + "regex": "(?i)^https?\\:\\/\\/1235798798\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "da74853b3afe0bfa5f70f1506930368bd5d71269f57681b9869cc227b7559c39", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfsdfsdfsdcccc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b3ada5c78c0d314b7d22e1d055ce648f560cfadb5e1e9e279373f96c89572ec5", + "regex": "(?i)^https?\\:\\/\\/aaasdasdasdasdasdasqwe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6b458ebba77d239dd4e18a6bb1370b25056b7f13c26085d615c81fadaf860fd1", + "regex": "(?i)^https?\\:\\/\\/352489745\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "976e1251d906921d558f5581037833e3a9d4b93cf9e4bf3e807d094bb4bb57c7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+faceit\\?ref\\=faceit\\.com\\&lang\\=en$" + }, + { + "hash": "cc18aa1363999004505acc7b35e51759adaa717cec620b061dc3023e25c245cd", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e38489b86421ffadb23d26457b0d11ed5bc4179b4cb471a02e080f9be31401d9", + "regex": "(?i)^https?\\:\\/\\/ngfbflkcvmbvcb\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fba84496049a345c0a7f8c2e6ee66c8c595f8d22c5312dbc591006c1998f7610", + "regex": "(?i)^https?\\:\\/\\/noexneiucarta\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c091e5b9a4563f323892b93802201acd5a294a48327be0ad02d2afcd1dcad1f1", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaeuvwa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a42ea5cd2f7d7bc494f57bc3e9c80d3a545bf297d99e72609e5b0714ba41cf2f", + "regex": "(?i)^https?\\:\\/\\/748977455648978\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4a88b5e9394af9b19e01d01ec9b12a9cfbd13d6445e05bcad78abe6687f3b624", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fde075dfa3bd74fd3357dbc678fd03c59ac2c3cd8028d59f7dd0ed709b284b58", + "regex": "(?i)^https?\\:\\/\\/mkoenxaiexae\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9c280a9416f4538d8b807e77dc5771442d0c45ef5485e3ca2e20bc5167666502", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6d726968a9d0677b05409e4f0b8efb9fed82e1b99e96f98ad3a722a36ba5638b", + "regex": "(?i)^https?\\:\\/\\/hotstrendvids\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b58f103301a526624d8985590127ef80c9983dba779d58d88c61ef0de99dd39f", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0e9578a73cde303551a6071a6e4ac8b935148fc7b5ded851751329e71da6067f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdfs113\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "341cafbadcbc89d69c0cbfe4c8f3f01e8f372a8e34869803163a249c38a43c12", + "regex": "(?i)^https?\\:\\/\\/aasdkasjdgasdhasgdhasfdhas\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1d7dacaf72a2e998a63ed38bac0e08b960abaa8925cc682002e10d564834cfce", + "regex": "(?i)^https?\\:\\/\\/sdgyderyertuyfghfjdfdhhfgfgh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0160f028387183e3e5aa9f1355a442aa3a8792ff013c9f88c704bd96a50bb648", + "regex": "(?i)^https?\\:\\/\\/sdferturtyifjjuufghjfghjfjufj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "04378c9c7c615814eb552faf8d8e8d138a8028c19a0e222a0a5d222cbfaf9a54", + "regex": "(?i)^https?\\:\\/\\/dfbdsbfhsdbfhj124568\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7a703968a7faa629e6ceb1cb5f08801b6ac64f062c1868da2c6b6b4d23a22207", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "48914e80c9611d9f01fe8cd174fc5d717d785c2fc853435a0e6bb748cd2c86c6", + "regex": "." + }, + { + "hash": "3196312107e684446cf6b88978c956ae606ea7e8cb984bfb98c32eee1b4f0b0d", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3628dc33085f9462fbfd3d81668dc40b8c97cf900ec39b80e090f516160a077f", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv9\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "87e118a3187f0e0de993c40b2512b092d54272b1184cebae9d7d502ed8dca903", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdzxc16\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0b88a6caa5142b0213599a9d4bb81784a1493e3d80db150cbd7c20f19ee4ccaf", + "regex": "(?i)^https?\\:\\/\\/857mx\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2747234908626d5f1ba9519bdc98ab292faebb741c5c6b793192d577dffbd24d", + "regex": "(?i)^https?\\:\\/\\/sidufhksdjfn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6b7abba66c2931db7d678c325dbbdd7961185340a483c6ad1879486255d03a15", + "regex": "(?i)^https?\\:\\/\\/hdfufytigytukghioytugkgghgh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2f418dfc97b438f73d7ec0867c58ba15ff4054dbe26f1e7aa9c10cf8b2d4973c", + "regex": "(?i)^https?\\:\\/\\/moenxkaemcira\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "805428e5bd0ac22358995824d9b160a7c02b0c507347e1bb94ace8cd87d2605e", + "regex": "(?i)^https?\\:\\/\\/sdfbsdhfsdhbfsdhbfj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f7bb7e6b3701a505b64b706568ad6ddaa41f992b82ca08c8c6eca5a732641c34", + "regex": "(?i)^https?\\:\\/\\/beekeockaga\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "649fcc893248cc0a553b364a8bb0cf78b5abb26f1790dc69f6b1a152c7a4073f", + "regex": "(?i)^https?\\:\\/\\/dfhufrtjufgjfghjfghjfghkghgjhk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0328847aac14b97a2b1d6418ad25544f4eaba1708251f924828c28bff10fba7a", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c9c699d44d91a78ca65b8053cda9f61f69416c229976b097026300efae903677", + "regex": "(?i)^https?\\:\\/\\/ssdfjdsgfhdshfbdsh122456\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b96a493bdd884506072b36c50bda859b309a270bae8706e468b403579711d070", + "regex": "(?i)^https?\\:\\/\\/sdfsdhfjsdhfgjsdhf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f67d1430937ba69ff842aec919152b9b325ea2b10a2a793c6ae9552d918b8d19", + "regex": "(?i)^https?\\:\\/\\/zdghdfxhdfghdfghf14\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cfc5e396b4116a8a75cd81d46fcc194a4387dc35aa1f5a7b38d9fbaa7aacb742", + "regex": "(?i)^https?\\:\\/\\/hdvideofever\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1b04008acc086d7c8b567693b6a0a562d2ddcfe6f1b0b72b1fe6b8c4c02079e1", + "regex": "(?i)^https?\\:\\/\\/dfssdgbfysdf123\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "eeb4859630cdd90c1b04253d365e38841af5398a5388aefc1005d95732a216cb", + "regex": "(?i)^https?\\:\\/\\/designssassignment\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "629a42c9863e8a0fe4e22bc54dda032ebeeaa2d2381f120d88970a555d9a7472", + "regex": "(?i)^https?\\:\\/\\/nmeoxaevraaexa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "aee4f18c63683a556c4a4b2848b74b82e2c5356c645bf64d8289ee331b0d0e5c", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "954f20cbed3a95c5c2b8ff4c00a3dac65e222b3570ccd6a24ceab7bfa0c5d5ec", + "regex": "(?i)^https?\\:\\/\\/748977455648978\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5d2d56e014a569cffb329f17131536e0e370994fec20cc50647a12d87e56b62a", + "regex": "(?i)^https?\\:\\/\\/gggasjdgashdfsgahdfas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8acd858448c6c206d8bb129ddba300d3741c18b5ceb18d5835058cb980de304a", + "regex": "(?i)^https?\\:\\/\\/4354896749\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eda5fab42750546cae2e229b37865f59c160b99feccd6791c5f4cad902b2bc33", + "regex": "(?i)^https?\\:\\/\\/dfbgfdbgfdgjkdfxc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9cb8b9238eec01a1c7900f59b4ec9eb162db5554d71c06f30d01e1ddbfb31a7e", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b9cdada0a74a60adb019cc97739001dac5d3297739590e9afce70ffe7a6695dc", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ad3113ccab12d333be38d9cb34a7a49cc2248586cf1543e44100391c2f2cfd56", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "aaaf46328701493181592c3e74770617ddb4a3117119344a29acf8f48b957ee5", + "regex": "(?i)^https?\\:\\/\\/6549784162\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a53e316c73036a6cecd20d44391f7f6d20105b74720ce35af4e977172ae005e1", + "regex": "(?i)^https?\\:\\/\\/jnskfhbshbf1442666\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a5a4de07db82610ad22b5ed6005f715374d3f709763cff4ad560eebfdd88f15a", + "regex": "(?i)^https?\\:\\/\\/vidtrendx2\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "221fd6e9daa1ad5a9d972eada36a2baf8b7e8e5233405a576815527609010e78", + "regex": "." + }, + { + "hash": "3db2b205525f86a66957fbe326ec84f7275bc7ad90557ac91988a970743bc102", + "regex": "(?i)^https?\\:\\/\\/dfgfdgdfgdfgdrtre\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ecf2f2869546621bc6120d25fc1dcde8cb0b58826aedeec1594e5eea5646ba37", + "regex": "(?i)^https?\\:\\/\\/moekmxuar\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "65f62f540b757370e5ec0f858360a012b5977ab5eaa0520508e58d63f33eafbe", + "regex": "(?i)^https?\\:\\/\\/dfyhuudfgyurturufrrturturtuu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "05241bab6363d75edf3d8da10c174ba197f0baf8358d22f0e60f9d5dd9a19c4f", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "be5fce03616820d1cd1a0ea77b93964dc4b5a98be5cfda9d20e021af50271507", + "regex": "(?i)^https?\\:\\/\\/fdjkghbkdfjgkjdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5ab2ad4c35689be3ba656483c1d785c6a17e89799d0300dbe42f06afc8e86a4a", + "regex": "." + }, + { + "hash": "1fb50fbae6724c02fe588002125d0f515bab072ee783ceb598b094677ed79f03", + "regex": "(?i)^https?\\:\\/\\/aaasdasd4as5dasdhfasdh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ef0ee433f37c4d637abfe1a7e3f99af4ea31369bf67d0ef0d65e47388e69dc5d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmakcamsea\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "54ed80f4ea20092c6d5b46246abb84497850fb8f67a09e92ded5ceaa1c985474", + "regex": "(?i)^https?\\:\\/\\/dfhgfutryuytrujjgfufgydfydfufdhfdhdfh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fe35871cba679dd7572aafc9f3d1d6f969c6babe8ffaef653a3e9504d930eaf3", + "regex": "(?i)^https?\\:\\/\\/nmoemxkaecawa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0e613f9bbbc79e715cf3b54f7aac1000409fab7e4cf873c6f03c5a205ef17260", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "993c3f1cf98b22b5e09bd8ddd252c595ca7d134b199bd9eff3cb57fe382cf2fd", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupfdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8aed5f4536025d578757e8d29ff854b32fe13671539f33da8925b0007f0c4b50", + "regex": "(?i)^https?\\:\\/\\/zdghdfxhdfghdfghf14\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "916b7f193a5d1a71a1d793b49d90d94d4bd3c45d9a1f4d80e3349911c1ada283", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9c53f748083019725e872c0ab4a6ae7ef5cabedc2fbe54863451b23ca489a113", + "regex": "(?i)^https?\\:\\/\\/gutrfuiytijgfjytgitgkhgkhgkiytgjkjg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2fbdb6fca5f916dd4fa84cbaa4137337d7b0906789498b8fbe299be7104e0c59", + "regex": "(?i)^https?\\:\\/\\/moemxaheta\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "bd5d343fade2014d3af635704f88c70f8169b204ae9059790fe180c864e9066e", + "regex": "(?i)^https?\\:\\/\\/dgdfgdfgdfgdfgdfgfdg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3bf92b5f6b4870db648f709329a23d60d095b19c402d592086a3a3adc34e4a19", + "regex": "(?i)^https?\\:\\/\\/sdfhdfyudrturtyjikfghkhgfkfghj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "097308aa0a72a49aa996bb529685273d891b64a3b289defceb4fc9adde656ae3", + "regex": "(?i)^https?\\:\\/\\/35479865\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e88c9d07a0309f9715c473f4e82c86a3223dcf4cc05c11bf84726bf1d56bf337", + "regex": "(?i)^https?\\:\\/\\/xvideohotx2\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1a982747b9b7953021ad9f9c25f830fc418fb41399102a6feee477a410f389f7", + "regex": "(?i)^https?\\:\\/\\/dfndfgbdfjbgfh123456\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bdc36b0a0bb083fff5dd5ae79e7d5e1884b096ffbae8e2daad960f5019827ded", + "regex": "(?i)^https?\\:\\/\\/mokenciarvae\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f44908f7a63b3103db29c8e257434d6705133840071a65959048209239208f7b", + "regex": "(?i)^https?\\:\\/\\/hothdvideochampion\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6ebe39f9d881c1dd4c7d0aaf3bd2b07daba89f3aac6e11675a423969b233fc11", + "regex": "(?i)^https?\\:\\/\\/fhsdvgbvhjbxcgjxc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "83a4ece8a219222a6b99a579825c8a96c4b8423d4cea1a94790b99dec3638fd5", + "regex": "(?i)^https?\\:\\/\\/35479865\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f945d918407d40bba3858ef774d81a06a3827714f00acea54aa4dceda728cb10", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjhasfdghasfdghas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ddc0b04358d0ac8c50878c6f0d0f2cf0867daf23d506a37a94968fd663759cf5", + "regex": "(?i)^https?\\:\\/\\/sdgdfyhtutrujujurtufgjjj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e3c11e2f486b57aae1577ad0b508e2b2404952d053121e41a3d4e5931ca68958", + "regex": "." + }, + { + "hash": "8f517dac5968f8a735b67bc18ef0b1cb69d1a79864d3bc65726d6c14d4ef4b5b", + "regex": "(?i)^https?\\:\\/\\/gffadasdwqeqwd5as66\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "552cdff43b13350b82e110227ed7fc79d9fde6d916fb26e9f2eb28c1557e25d3", + "regex": "(?i)^https?\\:\\/\\/fdfsfadasdqweqwe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ee64869ae4b144de2d16dfa5e9dcc50f43512d9abc3458cae7d721ac66e478e2", + "regex": "(?i)^https?\\:\\/\\/erejhdfgnkdjfgjk114\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "899e2b5c9116a9a0aa5dd1d17f89d715f5676fb26cdb33878d51aaecc86a914f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfnjsdfnjksd145526\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "46671402aa6ba74fcf87f4cad7b161a6170a667fe1f86fa08c3926dfee8469a9", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7593103f9c0a229274c02899705c11b4f57ae8663a3157fb3a914b0e230139e6", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "886d67ae389884bc14cbe2c653b1dcb7452ecc6ca0082ef69de8a902b4307cde", + "regex": "." + }, + { + "hash": "02a4071024a7f1b5fe3973da357f9ae93dcd2a8c4e13e4fbfed29b9eb8576ea2", + "regex": "(?i)^https?\\:\\/\\/moemxaheta\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "40739b9d473b03c6433760d937ad121d2ee476a06084cb90bacd24d1602afd88", + "regex": "(?i)^https?\\:\\/\\/moiemxkarvarv\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3b03dfbaba709b488683fd3f4101a1b1d984afd0cfe29d8c22726f850c15f59a", + "regex": "(?i)^https?\\:\\/\\/nmeoxnarehae\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0bc64e53f200b21a9174b9e9cc367e17eb348152dae2041eaa6a284f585bc2f7", + "regex": "(?i)^https?\\:\\/\\/654987165\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e1417a8b645073ef73f653a1578acecfef013a50d56185f1d9666d0ef11eaf61", + "regex": "." + }, + { + "hash": "cfc5eb36e8aee487985113f6ee1624a65a131034a0a08779765a2ef38209d1ac", + "regex": "(?i)^https?\\:\\/\\/gfhjgfjffdghfdygreyhgjuhjgfjfj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "60011c1412198cb0e5f8e5b045c0a1832667e5345f7dab439084cfb9770e3fb3", + "regex": "(?i)^https?\\:\\/\\/aasdasghsadfghasfdasgh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "46679d15052550875ac1c40bd8290f5e4703579da95d3def6706734e3f4a82a4", + "regex": "(?i)^https?\\:\\/\\/dfdfdgfdgdfg1452\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ddba75cf25ca363086ed4b64b78499c48fe384754afb3d01f9561f3328e1a64d", + "regex": "(?i)^https?\\:\\/\\/dfbgdfhbgjdfhgjk1224556\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c1f540793441dcaac2e7a254813fa9b1f79d6385948b2e36309be2e549085217", + "regex": "(?i)^https?\\:\\/\\/gimenezrangelfranklin\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b0c5aa31e7fa7d5c2f8f8b3f946505567e6b9827a6a591c1b9bde22566f0570b", + "regex": "(?i)^https?\\:\\/\\/dfgkjdfbgkdfngdf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "313aa3cee3fe99b013b3c19518f8170a4b3dc7d62ab80485505b5c0185d38145", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e421aeea31dbea959135305ca9427d96e5cd1ebec81587937fb266f7f45e7a24", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdfs113\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3c6153c36efde6207e17c7a857be536ed832173526e9e07923c93086509c7fbb", + "regex": "(?i)^https?\\:\\/\\/bomneuixaeta\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bb3f93b70a07ae6ce2e4bd5eadc35bb31d37395670ce178a07893f502e352f62", + "regex": "." + }, + { + "hash": "968bfa4b54eeea6d3e64eb436bb97fe2bd7da879cb73bdc9bc25b4adc1263098", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfsdzxc16\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "943ca85179852a11d727cdce43053cf6cf3f36be9fd957ca8d08c785a7626cd8", + "regex": "(?i)^https?\\:\\/\\/bnnoenmxaega\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1b467f0567e6293aba3389520966687f5e73dfe67c128f30fce6da0a4f0f3ff8", + "regex": "(?i)^https?\\:\\/\\/nrekxmaeigwea\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ff173c38f04abfedb1e91c80b9ffa6e61cef76f8424fd0819d0dba44c6b7bf72", + "regex": "(?i)^https?\\:\\/\\/bafybeic3bn2hh4kxujufghgychturehlnn4l24ic7ajqscnf4yd5b53sue\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "a08243fca55e10fdb798cb39a79370b8152451a04e55cbd8e2356a5facde208d", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv8\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cc605e06bb03a48dcc4d3b2a2cb9f192dd4553595edaf6609e0d44e4ea3bc0fd", + "regex": "." + }, + { + "hash": "7e65a571773e05022bb9c69b27e7cb4fada42dca4d8241de67339e148f73b259", + "regex": "(?i)^https?\\:\\/\\/momkeixaeta\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9fa39aa064fe4fcf535f24a10a5196887a5b0d0cb69efd3f52f2be197801da97", + "regex": "." + }, + { + "hash": "a7d096c9e328ed4142d54938d20130197c055c4f0aab9004d5f32e3ac4f62896", + "regex": "(?i)^https?\\:\\/\\/hshgsdbffbb14566\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd796612aea985b10137bd38519000537a685d7522ad1aea2aff92bb7a9347", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mailc7d1f0b86cbcd972f04745f73408$" + }, + { + "hash": "72eaf7d486cd27271ec3b77cd223156b4b9ad6f569533a3e78b50d00e154b202", + "regex": "(?i)^https?\\:\\/\\/noemxjaecay\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "253ff5062cb200508f904b2fba7bd048655bd457d768bd2204d544a49cf0cf0a", + "regex": "(?i)^https?\\:\\/\\/vidtrendsv1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "a99afd4a69e3f7cd70dbbc0ccd93d9b59ed8b4baac1668709719df5bd751a273", + "regex": "(?i)^https?\\:\\/\\/210231465\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0e4cca3004ace923f79998e8e0acbcf12e8d1e7bf64c14fd5bd1dd7cea9f983c", + "regex": "(?i)^https?\\:\\/\\/3214678987156\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a53ea70dd62c95774a7300dd9a792d38326764cf9575a9b401ca04b715de00dd", + "regex": "(?i)^https?\\:\\/\\/moemxarva\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mailc7d1f0b86cbcd972f04745f73408$" + }, + { + "hash": "18d1af7997f23767013de7380eec14e3410c2cd25857ae7f86db906e4b9b4666", + "regex": "(?i)^https?\\:\\/\\/aasdksahdasfdghasf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f8221085ef07defee876bacd41719a54a07bfccaea3a9cdfaa1149277abda4c2", + "regex": "(?i)^https?\\:\\/\\/aasd4sa5d4as5cxzcz\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a540462b8c274b3ab5b7e64d9a26cde719fa973671d366fa5ee063bad4127020", + "regex": "(?i)^https?\\:\\/\\/clip\\-hot\\-2021\\-dfvgsdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "97ff6a3ed4a586f562ec213a92cf3cae272c55eced1736fdbd75e8b6fd394ff9", + "regex": "." + }, + { + "hash": "9a02d8d2a9588cd2fcf9d34f5b5c3fd2c8f82a256800783be48cc551e0b9648b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=maild45c063d31db7f45570c448122ec$" + }, + { + "hash": "e65fc96601c762f7a2efd54ad55792ca8a4a8e01b91b1111085ed6dae7d5d72b", + "regex": "(?i)^https?\\:\\/\\/aasdghasfghasfdghas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "80bbcfa76abfec1c87eca8e16df95d2eff4a473db9efb85da47a034706300989", + "regex": "(?i)^https?\\:\\/\\/aasdashfdaghsdfgasda\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "935248f7d9f20a067cd555a3fb79d4c099343ea35316966019005225eb6f9c56", + "regex": "(?i)^https?\\:\\/\\/66959564\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cddaaf0b6c26183e0e6ccf4b9fefb1aa438df11750ec59c066a1267052004564", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv9\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6341b653e7d3bf50ee233b9fc269a70c9e9065d8b4b9784558d4df5e8b201777", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupdrrrrff\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1754ff62cc158b7154f10728271745808b7fd65d6d033b2b75e6c338aa759e54", + "regex": "(?i)^https?\\:\\/\\/sfsdfsdfdsfxcvvxcvse\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e72bfbf14c9206c5ba6c0c366100f94e16e89d5eb3b8a4c05c62b2615f919a9b", + "regex": "(?i)^https?\\:\\/\\/dsfbsdhbdbgdhgdbfd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1f392d7fa0e13883d3df9d2ae5858d35696f74351e3bff27a7fea8836df858c5", + "regex": "(?i)^https?\\:\\/\\/bneoxamecae\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "47be210e790f2be95eaabe6039c424adc6f54e47796ccace8f2b55e8a1b6975c", + "regex": "(?i)^https?\\:\\/\\/jhkghjfdghasfdasghfdaghsd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7b39188780756189e804f9758e4d5fdffd6124b52aa52cfa4d7fa0426781c0fd", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "868344f9849ac63c9baec336cec586360a28c8ca0a5e0b604e023c3aaa2b7ee4", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f40139ec0a5cd39c56f5d44a92b82e73fb3bd76549759b72aac541bcee7fd709", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "74e2e66d36c229e1acb3787a199c6edd1644984ae6e4a0d531115d609d487a04", + "regex": "(?i)^https?\\:\\/\\/skdfjgdkjfgk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8880c27f4d547ccaaf8792f4d47af8ae4e5eb82aa06ed87112498eb2642fe76e", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6b57228faf3695fdd766536ba672fc136fe698c370430b60c4f110ccd3d50a91", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfffgjgfjgjjfgfgj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a2194c4765852623b4b9528bd8699e0356f9b0d3892eba3998fc7d86a690daf8", + "regex": "(?i)^https?\\:\\/\\/oziutryozeifhzeioutheiouthzeuhzet\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f720881c34611b7f1ada9ecf284c84fd4707f4b42cd002b16da7328084b0508e", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e9accc090cbd09c547100155e5375359c66f9130e9d5895aeb49c899e30152ec", + "regex": "(?i)^https?\\:\\/\\/skdjksjdfgd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b839020c95f9a172cbb0d140637171d37acf9a22fd3d6889439fbee2b8bcad65", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjfgjfgjfujgfj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fa2fbb4115ca6e54dbc7993dd065a259ec5e7ed39029566b5a18e720a8d2af85", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6fa2b7877490ad4e54d495aa3230e10392e1387d1d1161a618bd0380e62b5b86", + "regex": "(?i)^https?\\:\\/\\/fgfjgfjfggfjgfjfjjfgjjfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0646e13f3fb3e5aa579cb5e23f03c406c7e9b1a0e2801792054ea06a4c847f95", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "fb11e48621c06e63feeacc2638eeb83de860942dbbf61cd3947149f432697d6f", + "regex": "(?i)^https?\\:\\/\\/dadasdas4a5d4as5d\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "676e18ba82ee9a5399388d463400509c59ee73ecabe98f326ce9373f7ce5c01f", + "regex": "(?i)^https?\\:\\/\\/ggfasdhahsdfasghdfghas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1eaa2d94b454881fb98a9d9e9e8784fd19c030abb56d5a4e413ace59caea6174", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3c9aec43b3dbfa022b60329d3d8eae34aa6980d10497b3548dd70727e610d38a", + "regex": "." + }, + { + "hash": "229815bb3a5e5fe91277057a67db1f8a3d9719ad89c8fa03ee9638d31f8aa035", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdghfasdghsa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7c98db83bbef1667872ae99c824bb2e32356c50d80c36ca9e287de779e773a6f", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4cecafaea3e559008aca9c163521d5db90236b904b2315a71df33f894b0aac89", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdjfgk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "003d894b2e5668dcae85dc1ad59b5f3fa87df3bde13662dc149f29bfa11af876", + "regex": "(?i)^https?\\:\\/\\/aasdasdfgsjhadfashdfasghd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1039d8127a87a2ea3f885e7be43b1db289928388ae659860c229ac9805b0bd55", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d6e5d7b0b0d4e20e5373d3a7f429f8415147e52697489e5747693c631e495274", + "regex": "(?i)^https?\\:\\/\\/12365489789\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c97482c23ec9d05b8dcfdbee4dbf1863b59b54a247caab20718f8ab640d2b6e9", + "regex": "(?i)^https?\\:\\/\\/hotreelonline\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cb82f11e0c24376dbf5f98b7850e349e476ccd0d7139c6bfaddb133d9ace4512", + "regex": "." + }, + { + "hash": "54cb6f76478c0ae9e2737df5eef29492b91b77bd62110d273b866829cd91f0ef", + "regex": "(?i)^https?\\:\\/\\/dghfgjgfjgfjgfjfgfgffjjfgjfjgf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "799a676e7fdbe133ef08fbf77ef8e83938fc8eeabc37ccae04e1d65a6206630b", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "459670468647d63c8098557c7a63d1c10ef60ae372be0f250d029c9d13f3e74d", + "regex": "(?i)^https?\\:\\/\\/ihksjdkfjnskd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "53ef44355aff19b0867dcc5cd46bdbfc093a159901b06a13378cfbb5e80dc321", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e9fcbe6d7f0139456ac4fd9e8c93641a4d9203b9d8cb81ee65e6f0e4391ee", + "regex": "(?i)^https?\\:\\/\\/6587465465\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "96e6fb4fb63cb23128da03e8f147ac6b56ca225d74322026e745c09805f1d3a2", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "517d7c9fc4a8a46198a564737d092abd968aa7fef30b53eba11be212ff8b3bcf", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdhjfgjgfjgfjfgjfgjfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d147cc813dda8035eaf9ba20c51eb45a5728a61d0f86725330716083e7848af3", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fd17196ad8947d434d1f482405ffc22ebc080b237929a0a8f2cb65d3488d156d", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6388b2215d549275973e280fa9590eb62373b868520dfc7e3398365e8d893a90", + "regex": "." + }, + { + "hash": "6a17ebd5c06cd04cfe868472ddf4be2e796e74557e6d50efb29ffaf52b70acb4", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c9de71ef28ade8e54b28195a8e879a4920355e54fe7e326bad945b1be2f34fa8", + "regex": "." + }, + { + "hash": "4452e2cc20422e862f098cafc3f14aed31ac145a190cf07010268b4ae38e4107", + "regex": "(?i)^https?\\:\\/\\/aaasdasghdasghdfasghd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "71b87696cb73793f70b75c64628e5f6ec21a8bf654bb6c6940fb5ac6917e8ab8", + "regex": "(?i)^https?\\:\\/\\/kingmancoolboyeqatzfj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c035328e68afa704f425dab83f682a5f53122db0e91352dc87f254108570c6f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+o(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ff6a27a6b22200297c26fc6983020a6c45d182d809090c4dc65c64d36998b45b", + "regex": "." + }, + { + "hash": "297c3e76c8974b2d2cffc1c8dce7ee08e0b6479d172446ac8e94829d66d37b66", + "regex": "(?i)^https?\\:\\/\\/mpliy\\-lo\\-xtgsuj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "04874f7c200484e083d11b18b6fc9224b2c9142bb957b4683975f9eac4aba62d", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c974c3a92954f61db2d49f079a1beb857ba9db1a2e44df0d826123f89225ed75", + "regex": "(?i)^https?\\:\\/\\/xchgdhdhjfgjfggjgfjfjjfg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "95f3a922a29087cef5fdd29a1b35ffaf08dc201e374f0dd89ba155cf51212cf5", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "de296fa855c24ceba3596ce7c370b01648e661e1a0f8835ac5ca9fb96614d098", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "20259ec87035c869695a30ae4cf4f9ec336302345cfe4edc052d86e039eb56ef", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfjfjfgjgfjfj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "94d687b6d632f2e20c8484b40f718284f5da72d60f5452d42ec26a5e4f6b0e49", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a88b1741ba0016fb85ed5713eb11eaf009d4aa4910681a212622bbafe6769bc4", + "regex": "(?i)^https?\\:\\/\\/fsdghdtfjfgjghfghfkjghkhghgk\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a37d2deb2c70cf24d70f0f041c4cfe830c07f2e1fc42d8076e87d6471b042476", + "regex": "(?i)^https?\\:\\/\\/jikhjkdasjhfdghasfdgahs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "939934a98ba43454e15453d39061929287c65ebaec70a8f750d98b8b20790720", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c458d9e0ad7569cd61b04d7b8b9eca8161a4d3923734dcb78ea68c5fecfb7371", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bd168945e9b937f3ea37014ed96c3e0b056ace3f940219e4d0885b29c37c9509", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "63ad4dbaa51affcfd140d6e11db33f5cb2460d4b6214a6d6ad254fdf7cabd597", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4eccd6762542f71b5d3a0e1d5a5349388adf10b1eb0ecfb4684a9b419883758f", + "regex": "(?i)^https?\\:\\/\\/neoxmeiaegra\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "09a1d7b4b9e10ba6dc93253984b466465631cd6965d4aedeb7c99cb51cb89447", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7be7597fb216a3d5963696ba765cd58e5f920374175beef2966d55bafa4b0364", + "regex": "(?i)^https?\\:\\/\\/beodaefaegae\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "25a8538f4782e1211c24e2d34a2bd826799f344a65819418b22b8ee40e8a6a23", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d3412543b0e0fba5e53da37ea23a6bd48449379530847f42a3c7b52d2d130e25", + "regex": "." + }, + { + "hash": "ebe127ec2d358faa76798cb2c77bbf4280ffa4ec130db7b02520ed32503f65df", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9c56b95de1a97d000ca901303b22b68ce538854a835901c042dc7632c6d86a35", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "81ef1340e2eb91d2cab4c2364bcec898a58c77caa2742e3c726bf021ec772de9", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1dfa17eeacbaf9a5cb8675f1314c5cf033e84ce39eba80bab4b9bd064135e186", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e46e6f27142b69d23dfa45d62e7bc527364aa713567e8151f163e93e68f9396d", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b2b1269be4a277e3ff810ef77d39388d75e2d96e1e1515853701002afc11374b", + "regex": "." + }, + { + "hash": "399e727e7c1a3bd6cfe4da48b1c873a123eb1d25e14325367b010bf4e9e427e2", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0bd20688b4af037608e37f788de643660ea03099ad2ba558ea62905c379a9d9a", + "regex": "(?i)^https?\\:\\/\\/kghgdhasjgdhasfdasghda\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cd21c926158449b44c6212ef1b0e92f83e6233c4f645a9b8a673a73c6b4e8511", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UKep5KcOm(?:\\?|$)" + }, + { + "hash": "80a726423fe99d851c8d6c0796c613105fd2276cd753e7394981804d3db3d77c", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1fbc63f7145ac60b660023a412fa6f41877c77e7bc2434bad0edc788c528a5cb", + "regex": "(?i)^https?\\:\\/\\/6587465465\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5e89c813e07668013ad3578b89e0960bdeb708a6a26f464b1915fa6556c93713", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5c68b4eaef9aac72840891dacdfa292d2c4f3b72f73f13838aabd9cecffaea38", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "da1c3e8d76fc038473533af7cb31b6f4016169dfe781c111d209470150540c0d", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "55f1b329428b1f2058b9b8327e2b11d5ff053270dddef9f5b240f94e235cd779", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfjfjfgjgfjfj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "92fbf4bc6d4664e773355ca598ae7b789f428eada4bdc7596592a6c8690e2f9e", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfdhfgjffgjgfjgjjfgjf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5b29e40d775def4ff40988d2b9a403c9a8d7ec34c58c3fe8722c378118500305", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0b35c7c128ce34b5843c4c8620ca8014c11748a834eedc54768f303a256f6624", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "cbadf179d1a152638dcc5668ba4a86156d4e4a3e90315f5284aebb39cbd57e72", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f0067209687fd3c5c4b6e7c28419d6b22673bcd58faf0866c27fbabdffbad37e", + "regex": "(?i)^https?\\:\\/\\/rncoaemcatbaae\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bd14823f2d5af4e80613d8d0593451671b2a20b269ebc29f1c425896aca850a9", + "regex": "(?i)^https?\\:\\/\\/noekxarcexauia\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9aae12921837f6bb44fc61445d544f3948cd95291f11f3e75c7d24566fabb942", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "da7459d9e3b71b5f7e72fa97ac39b810dbc1dffb6285dd65b3441fbb016ad4da", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b23fe4f3b076b9f78380880b5cec8438cf6751a9699a5675f46369b71b595384", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "babf777e3dae55e5d5a00d9b6a40b705bd3005bca75234032f73e0058f466a1e", + "regex": "(?i)^https?\\:\\/\\/aaasdasdlkwqeh21\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "420a00a526872c7fbfb65ffa2ac96a2b6ab6693f9276928f838661ca2727c6cb", + "regex": "(?i)^https?\\:\\/\\/aasdasdashjfghg32131\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3311fb00cb8b905b0da275711cf57f144985b9a6479f3aee3320b6109c2cbaf2", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0e001d782c8e33f1336ea92bd322a02c4480281bd1cb308da5aa3e5ec01c79ff", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c9557da1a4a7e1e45ff5417678bf1399ca8deb7fb9da06f1825c168d4c23fd01", + "regex": "(?i)^https?\\:\\/\\/kghgdhasjgdhasfdasghda\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "00e3080bea221c93b3debbf1937d2cff1ef62369aae18b4c4a5eae3597e0f252", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "57ba0900e9fab836a78064f34cc9bfce786ba38d77c807f1b0104dafba28a681", + "regex": "(?i)^https?\\:\\/\\/instagram0837\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "adf6a3a632a39f6f29fd5a366c97e61eeaebb5ddfa0053cebf57a804f7f8157b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "622d290f0c0e07f53d92c101783f2287bfdf2047132a7057aecd71c744b0a948", + "regex": "(?i)^https?\\:\\/\\/sghdfututrujfgjjutrujufjfggh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b87e1903fc97baebce522bfd91220ab86ad27f922fe306e2a2c4f08e1487643a", + "regex": "(?i)^https?\\:\\/\\/sdfyhderturtufhgjufgurytrytfijgh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a37415cf9a4e56302c000276b8cc66de74a4fa3d0f8bd7d3cf40f4d1c8c6b443", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "eb6bd5ec746f5f98a64d0c287bb683df4a856587ff7762845d031c4c68f8c5b7", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a046dc250b7e4a4c6069099df67aeb1f9a6a2418a4c55162b00e9fcab60ddc8c", + "regex": "." + }, + { + "hash": "f43582a893267bcd2eac77604dd49d3a5781e8f2e3db5705bcfe3308b80fe8b9", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cc60cfc56b9c0cca05886399ce2d471bfb69b03bc9eff73a9ac5952527211e0c", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8c851fa018a00b8dbce0d2863a87e45ecccefec4ecc0b87d2c2ab9a1a9fa03be", + "regex": "(?i)^https?\\:\\/\\/masdmk2ms\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ff66080485659954a85f899fdcfedf68b933c575d5a2ba278b7188dbc50d82b8", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b402428bfa7a8adf44e1bbe2c2436c3d5d3baa7d7de2fa6fce602a24410bafd4", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "13526ebb1d73eae1ba81420267eae2e18595a382ea0b30314049c336d867091e", + "regex": "(?i)^https?\\:\\/\\/gfffasdasdasdasdasdas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "99f44cb987f8254d9d543edcf713bf9fae2015305b993a02cd5e68d55a435399", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c9bd9a7969a031d42032fed65f3033b9b111a3d99d871e1e8ca7dc4c90145718", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingprogtamadvance\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1bf0ec96d7c10b07b964dcdf02eed431b8dbc11fe31bc1b72a2d7289e1a62386", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "066521575a597dd0ccb201c627d9bcca206ac831fca0d306d2afac3933f1873f", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5244f302471660b2255f68152e075d14a6e470ae5362dc01c8d3041118409619", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e48c13a317dce17a24f820da3df714adb2326ed3a407c1e208184f47316fc12a", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3ff368f867798db493fb53abfb31c025fc83ae3de25d28e9c133356a30157a17", + "regex": "(?i)^https?\\:\\/\\/jshdfshdf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b654a77f6c4bb3914896ee97c47baf63062be99dd36bb7792a8b65f9584ccebf", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cab9ccb4e5d57b0c11cc18224863dadbb9b3db8dbe347acca98a860add531561", + "regex": "(?i)^https?\\:\\/\\/35487459878\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9d8ea4bbf6d2bb6672474fe49361ef141c8190dffbf12fbc9b84bbc589858dd4", + "regex": "(?i)^https?\\:\\/\\/sdfdksbfdfhjnds14252\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d003bffc531837839fa0b3c4e7316d52f1e852aa47f3c1367b5a64ad1f75d743", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "15acccad3242484e0b29ac4f377a6ec54eb58fb6722bd0f87dd8a88676266819", + "regex": "(?i)^https?\\:\\/\\/aasdjkasgdjsfadghasfdghas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "74e3562dccc37c29b40d644fe3e731ff08ebb6b5c8d00213102007fd25420153", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d5dd4484342468e893cc9b5e4751cfa1a42327bc5b7222d2c9c50b7dd2526237", + "regex": "(?i)^https?\\:\\/\\/dfghfdhfdghjfgjfgjfggfjfjgf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5e74a7185f273675e40858415d241a5cd22eab7b4e04dce0223824d286aa306b", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "478d807c5fa1e74fa74c76ad69142e6e58248180375a503f510877e1967143ce", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "154e543dd5fb7345bafaf9310f8380329cbbc7610773b3fe4a325ff2ae26b133", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2a1e200ee76c8707816a5b719af385f59cb1ee76db45f802eba4ac74334b6e54", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7153b244994cbc2ca051dac300650855f9ac7c8d19c768d64d6ee307d6125a5b", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d4bf2afc1296517fd1a8aae9613684047d96c9a1060a146b83059af4fe0ded2d", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "928e6f8844d87ffce04b4f3ce3199c921ef5f92ca74d6f9f9a6ccb788c3ba5cf", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "192fdc9dd878ab171347de4212d3f3cc5db20a88824106004f62d4df7ee15d71", + "regex": "(?i)^https?\\:\\/\\/dfyhrtuytigkghkytuikghkj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bdc8a94724e530d9917f179d0331d213b186139087b6e6f7c3e61530427442e6", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "242254d52f21eb23eb429550cbc218d6577b3f6ddc425688f41fe1932e2888a2", + "regex": "(?i)^https?\\:\\/\\/ihksjdkfjnskd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "da7412a7c80a2f30b284dbd75cb31b72880d9d504b90d5a3ad50272fc268c9c8", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0a1c41a32cf959b5d8d964beda2aeac554f795fad3deb67125556c7933123925", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e384f959decde78eb1e3ba48b1895caa612ec0723f79d127da975069f1f3d55d", + "regex": "(?i)^https?\\:\\/\\/bgzxahagdhjasfdags\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "da199c5a7aa7aeb39513be307a6861fa3f5baea451260fcd18d0cee62fd6d906", + "regex": "(?i)^https?\\:\\/\\/homepage\\-105077\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "baf4d11a7ee94093e6101bc0517002844f40a01d4375d4f8d070602c131156d2", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "00b231c05ffae6e6c5b430845e285383586fe8ca882a9479f37181a7cfd9cfc6", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c1c92f36cef568235c7a6446f119624c3a2ac9d4b2d615f9021cca405da69", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2df473c9d3eb01643d69c1b8181a7884a2aeae4a0cf5526cc32a74d56dd0d38b", + "regex": "." + }, + { + "hash": "36e74c96e0e50ca88a0edbb80267a4694f600427e4bb8943bf7c507edba2d786", + "regex": "(?i)^https?\\:\\/\\/sghdfututrujfgjjutrujufjfggh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6b86908663f4272502523dcc7b7c6519ee0e3a14a2393b70150b290909d0972c", + "regex": "(?i)^https?\\:\\/\\/dfhgfjhfgjgfjgfjgfjfj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0c45cbabbaad2a7ee7186010a41e16a2d52318163cbaebcdf4d9534b13c4dbd9", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cd21aab52f67aba9d978a17e4e872e92dcb4c9b2e686e7a70844e404aeb45d6b", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d853fd6a1eb2eb94106751615868a736dd98ff012deed653e4a94930da73cc23", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bd7a69bd53dbfd2ba77b741f9eb52fc96abe9217d1fc39fd3cf2f378dbc4a783", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+da(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b7afb3a081b70cc5dfe96e7c4bbf3a5c9ced95bf726c3e757b53fc42563bfcea", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "066f6d533fc954a03020f458267f910c58cdb8e28668c26befbb6056ac4001ca", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9a9176ad2c91d16d70913fa8e95aa91d3d3e539ea029f93535d4e1f2b6cc4425", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "45c5c7a6bff749180f80ea346d2e3ef1c329b88a0662a67d204abcf56e3dc22a", + "regex": "(?i)^https?\\:\\/\\/noekxaeaeaxcetra\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c2c335b84a5487591edd8de376463bd51709cdcecc13bff2b41b04347a56922b", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6a6debdae48a4dff0e2f7c9ac4c028a426899d5645892b6ad56ea5604baffc63", + "regex": "(?i)^https?\\:\\/\\/sdfdksbfdfhjnds14252\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7534445ebb7648b074f518f314e82be4e5d6fdf6e494ad00b29b6b0878f50460", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c7d114ecdca42b6300ed37c68adbe7cf9532cbf5e0a3e8dcd55cb667c8c73315", + "regex": "(?i)^https?\\:\\/\\/isuhfkjsdf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4f089a42609328979e580ee025515f0ae0389651321644ac2052e1f996eb717e", + "regex": "." + }, + { + "hash": "5268939e8bde5fa96440b37ebb39c449f2b8f18a37be380a6ef6ee8f66d8a942", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d6e7fa33dfcf327adb3ea31951f0c2d41c33893627f79ea964129321c51d4630", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bc0c4a8c2217b0aaf89572fb7ab57eeb781fec8a1996631349f39b13c4287dc7", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7a85ac7102afd97c39a70afb86d99ddfda77e48d5f81577b48dfe181938884b5", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1fac3f54d97548ee51ba9c734b0248b32fbc14da0a6f7d8635842de393266c9f", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "591def5a4a236cf36f264e57d54f04c6719dad356e199a1f475c5239b3816a7f", + "regex": "(?i)^https?\\:\\/\\/iuerfhfaioperuiodfjkgpuioerghiaerhi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "07114ac3f12be1671e8f07ddc72400dbdfd84b9cea028868586e1869d2d436c8", + "regex": "(?i)^https?\\:\\/\\/robux60kfuesc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "65a85694cf36342cf1843edc5147c9e07afbead356bcbbc0e3514c95a2b6e54f", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "859bee33007321cc2af5ba0e91cdf07e304448c0367b4f9c3fea38fa899c232c", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0ec12048c7cb1eee0876544d48340d2bd6260a2176d03e0d9d61e34418c772fb", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "77a6991dfc6bdb6dde140d84e4bb8613605e876839826dbe469f05c7eecff19c", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2b536ed60a39f3cd8c7ddf712e0113806c20378072fe9e8f19b1846f69445697", + "regex": "(?i)^https?\\:\\/\\/bafybeifyxmevjxsctzuhhjp23zaaidwfjl2brcpjvern5axsvff4vo6kvi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "066f34493a5fc4c8771500ecf61b028c4ece313d88b622aaaddc8c500cabf912", + "regex": "(?i)^https?\\:\\/\\/aaaashdgfasghdffasdghasf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f7d253b2f4c438deaabed0f90e0191f253dd2e82adafe265cfc491e2ea579d94", + "regex": "(?i)^https?\\:\\/\\/xchgdhdhjfgjfggjgfjfjjfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e6004635beb31c64ef0fe246a10135b568ba074009156736759d9ad9e7a8a1eb", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "09528dd21fe09d732fd3648fe29a69da4f9be2d9508cfbdfe871f7c65a385fd6", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdhjfgjgfjgfjfgjfgjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5860a4e4373613b02986b6bd86110f5c620e5eeeca51d002216a20f13f4d932f", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "eb9d7335c9423c58deb9e2e4de84976aadf56d9e4ba8be15a1fe6ec9610b3bd9", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "488fd02477ffbe8b49b1c266354da18a658ad23ab287b07705c224ec5a3c4835", + "regex": "(?i)^https?\\:\\/\\/gayhotboy2021\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "152137887c32b274149b80e9cd91782df6af5ee6627919c6aacfc7dae472cfe3", + "regex": "(?i)^https?\\:\\/\\/aaasdasd57f5sd7f5\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7df464dd05210eeae45f8b45dba09924808ea8bed0d55bf0635883638b9302d7", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdcvxvxcv1144\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fa8ce2591ebcb7916396c174a0cbc0e6ca4a4fcbade79b4df1beb68aca4ae8e8", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "653d04ebf48e3c4f8229165c27a7c0c8211d253bab1e85e58c9a4aef5f444e4d", + "regex": "(?i)^https?\\:\\/\\/robux60kfuesc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bfe07d52ef3dc2a3e5be6513fbff0322ea0e7eea62126964173853464a6a6605", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdghfasdghsa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "db34516f1a75748ea04a59778b5281036a3c94df5a8a485a9b7b9add7adbe208", + "regex": "(?i)^https?\\:\\/\\/masdmk2ms\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cae5ea1504c40b65b8875629fe30aa734addd56e3a60c8963edd5a2bd95aec66", + "regex": "(?i)^https?\\:\\/\\/jshdfshdf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "609a6f048a501b48f2ec555bd6e91289710467ca652d30df6bbbab039bc9ba29", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1120534c99cf0c2a534ce62db10072eb4b8965dab791c1c9ce4dea7c09d36ce9", + "regex": "(?i)^https?\\:\\/\\/ghjfgjfghjkghkghhkgkghg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "49f3ec9454a93d7d097f73e914e24ef5ff78850b7e2e9bc2927371bddf4e7518", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7a44c4232f7aabd15e09574d1fb1b2e5c608091382cef1dd108fbfa4015f6b0d", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bc14f5222fae56e4571b139e613f64d44f102b3968dcb159f9261ad6deb658b4", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fd3908fee53516544dd9f967df7a75379f0ce4cb8d8288df6523d1a5009d139e", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdcvxvxcv1144\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "70c86894db1c17e0da95d830ea23acfbd45fd8669e3e7a2ab117723f48e129a6", + "regex": "(?i)^https?\\:\\/\\/dhdfhjfujfgjfgjkgfjfgjfgjgf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0d283fa009864bef185f3fc80e1c53390dc33f375d49999299417c9943a3914a", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9371c2a2abcfbeba9111216e7862cf1ebc5b0f0e5463a080c3f66bc4af01a96a", + "regex": "(?i)^https?\\:\\/\\/robux60kfor\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "478d2f7c7c8600019e71e4a01ec0444882e94dfcbbf103b1ee08460a61c5e3d4", + "regex": "(?i)^https?\\:\\/\\/aaasdasd57f5sd7f5\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "112038ffbece0c82d91c035b44d480b5824f9c59b1d0d906ca161e70f8c18764", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3d432a00916904c2302ba9d7ebaa13b5c15ab687085407cedc32c9a65e939072", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f6d1835f4df29c508ce5ba94fc3d28d843c92f84a552e00ca3fba448c548885a", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "02c0e62fa2270f674b5f003e27ee163164a1eb288a7e4f02b93ca353c9ec8dbf", + "regex": "." + }, + { + "hash": "6797d5f80970629004653ead1342cf9fcdcaa81c19bd986347c1ab8b3075bbb3", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "28963c73ee3671266c07a0fad00a70adbede98504c35e13c62e42346a33bf5ac", + "regex": "(?i)^https?\\:\\/\\/ghjfgjfghjkghkghhkgkghg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a6aafbddf70777ec8476d5fc0f32adcb7e45cdea25bee373d54eb0368a62bc7a", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d9281d610e15be9e8a9684b0515914527910ed5782e906ee48e64f07026a810c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=6895805\\&page\\=001$" + }, + { + "hash": "9ef1350745e9498bb7b87372766f2d3f35b6a77f84c48b4c22bfe4223340b468", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e799f325ca1c4ee6c9349bad13158950c76ac227a4ad85ec587b287c1486b428", + "regex": "(?i)^https?\\:\\/\\/skdfjgdkjfgk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8ec144ba16cbbb2ca895b2b8fcf9541b09ad4a4ffc87541265ea9a1709772316", + "regex": "(?i)^https?\\:\\/\\/aasdnbscdasdsghafdashd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7612661cc203bc9e34d669f1da26df04224288d07fdc6423139e425a02ee2cfc", + "regex": "(?i)^https?\\:\\/\\/dfhgbvdhbhfdmxcm\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "49a00795f3c68f38d7708337c1800388bc6238c33079921a1a483b14ee197362", + "regex": "(?i)^https?\\:\\/\\/jsadnjsadnjkasdnjk12254899\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9d87c9d54ea1943fc810274c15dea03c53d3de213d9454f79779835130574c88", + "regex": "(?i)^https?\\:\\/\\/mkeoxanrucatga\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "accec4912cb600fe201129752151ecc3acc10d87c3ec5852a4858f6f5b230a2c", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fd39a0fab5b77c9a35745be147059505d8f7e854497854fd8fe8c97a9f5a47ab", + "regex": "(?i)^https?\\:\\/\\/ksdjgfkjdf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9c8e989185b069e52aaa0a0240d07248327aabd29d9b526826b1d0bd8a8aa899", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaevcawa\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f2fa5811ad609d5281884ffd3fb3c835ac53a8260ab92e7d7868b06d4b0c5e53", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "308d22a70dbd5d75b1d76070e16560792595b3b0240547c44b8c5cd7b7e14699", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "945b0ecdc5e75b459245ad6a4f30b735b192f8564ece9ac42073194ac8997abe", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "99f9d5100a62714cb8d34dc1181f7c0662d5de2b356d6dcbd010bb1c420f3b5b", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgjhgffgjgfjfgjfgjfgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "acce65d4a302f84d3266009ba0aa8d96c7359e9fd691b1dbf8e17da3892c6828", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "95ad651ff6b1c7fd4daf73b4971e9e58bab3abe05d127e3c86808b3b62de53c9", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfffgjgfjgjjfgfgj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "593b2c65221eba07c369c1cbe0a645ca028abffd612eedc1d0a73379cf5f5cb2", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "dd65ad82e2e896a4b1365564d335d0b9a6c11a5af1fa2dad590ddf1b90bc4953", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fdeeaca5bd3eae34ddd095dcb6b4b94d3e520a70a8e877e81a780e46b315532a", + "regex": "." + }, + { + "hash": "026fa72447958ee1d56cdf317d809de868c45416e81834ef6f8926ad3ace3eaf", + "regex": "(?i)^https?\\:\\/\\/dghfgjgfjgfjgfjfgfgffjjfgjfjgf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b024a7a81f7b13a659400e89911b8b7660d12f57fd784451ceb854e4c67611d1", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9297fa9dfd4da5e247dd5e301aefe433a9208e76f442a6fd773481350aaa0fa5", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfghjfghjkghfkjhgkhgk\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1972d982f5b8d79a0b73e20ba7b38f0224746782bb4ec7f1f88e4c382eb5f915", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7b8f179dec38cecc0c8a333b87bcf54a07912a241e5b080f7faa4fd67847b431", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d1ec585ac47c8fbb9ea49065ee94ca5e3695da006e87a77736ce04682423fcb5", + "regex": "(?i)^https?\\:\\/\\/aashdasjhgdasjhdgajhsda\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "055d37c4ca7d23345f39bb16c1e9e68c88a67d14184a4f9bfc5114fc838d045e", + "regex": "." + }, + { + "hash": "71fd231930571c001ceaf73dcd3f409bfeebbc88180aac186262c8d3d1e10684", + "regex": "(?i)^https?\\:\\/\\/dgfdgdfgdfgfd55\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "36419b102a77a02b97b7a7adbfcb6f3c89daeae58c2ec5a772a76404983ae8ad", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7ccf2de8dac2a5a107a99ecf66a600137daf2002a6a7b9e5290cce20ece9f0cb", + "regex": "." + }, + { + "hash": "6dc21ba01a7b4645c1a991473c823033799a30ee10b9623c6cb0d7e0e0124ab3", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhdfhjgfjfgjfgjfjfjgf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "887adc494393a00c561f8d1c81017790de3e2a59774e12427957e53877ca8cca", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjfgjfgjfujgfj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b5e66626226570cd1b11631f270f0be3def41e4468c34679bea907b8eedbbc69", + "regex": "(?i)^https?\\:\\/\\/renewnetfiixcs\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "420a661c4931172447e3deec5fb79182ebab9ad8e589052f8f9e0729b8d8bae7", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfdhfgjffgjgfjgjjfgjf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4ba06ad976d5a958c89946cde5532ce3a9bea7e1e4fdea5ad1956be717d51227", + "regex": "(?i)^https?\\:\\/\\/hdfbgjjkdfjkl11\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bcfd3de68ddbcc53161144607978bd57cbcf8c2612058c04f9d1d71526189323", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2cd8f34e4a6d7b8c739db21f85561793862a9e1f0e57614ba2e4b33e65fbafff", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ccd8b2bf5b8454b35be3e0ffc0bf792a614fcc39d03d2c1234fc03a6f7e0d30e", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfjgfjfgjfgjgfgfjfgjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9511e9eb2acedfa95fdba42c4ce07a8d00b44a33940c29bab827f950557d0f82", + "regex": "." + }, + { + "hash": "d39b24203e6fd3f869db74f1a17964016d2e92d89233f6550cf30627acf69f99", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4597522248df03b04fd7e9daf4c8f35069d0b81e724fc1bbcc00172d73e26805", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "abaf47bc3da449434adf8a0587899363afd116577d20021f554e08e3daae3a43", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cfae12d1f844af82037b8adbe38d0a77cecd7da06fc994b9abd7a7bb67cc98f8", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a2254914701c663ab0c879bc9af0b236ab087f970c2a20c09e33c87231df61f4", + "regex": "(?i)^https?\\:\\/\\/moekxharegca\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3ea6d76c4ec87bfd3fcbb5432d88b79c5760aab76e2e743d120c62e87270b92a", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2e61171ed47c83eabe44ac49ae1849ac349628d0e222919bde5db1d604e85aa2", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cc4e6fde791e98c4e2b189c3a98028f0a5e67095d1c5f8605af55b8a347e4bb8", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "c6a4166ed31ded24e7c47d4e0228fa4ea3ca43093bd91ee3454b48da2c262379", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6decd62f345c451b07bcb38e3ebeb782cd73c975b689542f73beb07f2837508d", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cc186e6eb524258e49dea4538a826d8775d57a082b8006a8dbd63152af4c9895", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "76abc95f251a0b17f90328970de86abf3519373c67164255e8b04b611a623629", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7c63f8942a75b4589f1f036c5773a410f062498ee616d98cb504b154b6993783", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e77c8d8f4ca22a6f244f3f9f07e7cb3010de62d8f47087c4819bf83cfdf80768", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "20ead967faa951e37e86cfa9c119ec996be93513d0a8627599adba7730de5bc9", + "regex": "(?i)^https?\\:\\/\\/aasdfasghdfasghdfas\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f1131ed4f08bbffe32eb73e034b3f0f5c638737b2d43d127485f93238f3407f9", + "regex": "(?i)^https?\\:\\/\\/robux60kfeosa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "66a7ba4d1afd59d6b980d5c31a4f8e8b1954fbbc5199bcfc295d45c487d15816", + "regex": "." + }, + { + "hash": "59b7a5c47a701f35bdb3ed3b5e17d5f4035736f4a82ef1fc25af7c47b1edd998", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "96cfe733336969de1e8523629a8ec04c3661943f894fa571956bf31c289b03e0", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "582c337da36dec0640f4da16c9c3bda43801aed58cce2dcd397453f9a402d4ec", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "217532c0c62fee038ab9c6278c666270f19e79ada36c9261a5595d0980982862", + "regex": "(?i)^https?\\:\\/\\/xchgdhdhjfgjfggjgfjfjjfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4462bca6a272a9b4be491e1cd1691a91f5aec33a6d63bafbc9a3c3e01a096ba6", + "regex": "(?i)^https?\\:\\/\\/renewnetfiixcs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "361e58b4c76dab1279421b5ed85ff9bf50a5a561ccde094fc652168dd81eaef1", + "regex": "(?i)^https?\\:\\/\\/osuidhifhnksdfj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0fefa1b668097ade7af838686e32a5ad6987db5b0f61b948ea3be48e97f56dfb", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c4e47ca36bdea68f5d1f9820dda644cc7275dd90447d008eedd592585fba15ba", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5650604938fa4807dcbd64dc3cafb67b168ea4332fe56b2a9bea264783795f75", + "regex": "(?i)^https?\\:\\/\\/aaasdasdlkwqeh21\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "54fcf97ccd5844d86a02c94eb17df8b349e7ab05086bfe1fadfd4ca124dd1173", + "regex": "(?i)^https?\\:\\/\\/nomeuxaneva\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "22b958fbb046b9ae3c39e357d7ef3a9d931752316caf7941bd84ae4409b13c16", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7d1b5f05eae01f6874f5e41a64362671da73105f2728f84ebd0de8d34305cf61", + "regex": "(?i)^https?\\:\\/\\/nomeuxaneva\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3c093862c6d8e498c02fc07cb679717c0be3f791d23fbc9ceee3d8f703156126", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "27c4472e514ffc2070b296db0f71e24fcced3c2c560de1c83a9c1dc464b1115c", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "78d553cda9c38ff3f65dff6dafa5934dcca95614aaf6736c322c4fc7ecea9b3d", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6ff3e84307c804ab9fc8b8cbc2416705a4e22ca02fd158e85ffe3d2a06ed3c32", + "regex": "(?i)^https?\\:\\/\\/sdfyhderturtufhgjufgurytrytfijgh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "03c9bd28dc47a5c4dc9baff3027cbc9c8ebd8dcc8cbe6e3f7609f86dc6ee683b", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfjfjfgjgfjfj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "50e12346896bd17c175ef2afaa0f14aa5c1c970497a9810f36e6d8ba75b5d77a", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "37149fe7c3b6d1d9de58ad3f084eda0fa4923c0318ef65c75a6ac98191411d54", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "14b86e28cb079e7d81e1f28fbb057ebbe9e34ab78ef0ece0b2385bd1648844f2", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "30418aba54888a5374aed760bd3734aab54136edf1df70dbce24ed1c409f0516", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d9281d610e15be9e8a9684b0515914527910ed5782e906ee48e64f07026a810c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=3918829\\&page\\=$" + }, + { + "hash": "baab23aff38218aea515c56c7ca8b23a995f157ff99cea31440d2bd268ab4bba", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfdhfgjffgjgfjgjjfgjf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b524d8da2937f7342eb38f1027954cb9291e0151113dfd57769ea0f102d71e28", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a144b7f6e27ddad1dd292bacda5a5c35e5d750741971904d71140933376f4714", + "regex": "(?i)^https?\\:\\/\\/skdjksjdfgd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f350f430e4d4b149f40c8ffac623731fba7b2e21841c37eaeec43b8788b919ad", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b4a14a9efd3fbf6f01acce60b5a1d51144e526dcc959eb12f1b95a04bcbaa30c", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d3325085c50a6662c380e5b75f1fda68973589b5749a0fd569a062f073144fca", + "regex": "(?i)^https?\\:\\/\\/oziutryozeifhzeioutheiouthzeuhzet\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "47be2aaeb5a032e3cafd0327fa80a83a0c8de8d422998a5b7c020de17b40d368", + "regex": "(?i)^https?\\:\\/\\/dhdfhjfujfgjfgjkgfjfgjfgjgf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9f88d2be1e8bb15ccfc7af89be954f12cbe636480ef5f397330e39d7050a7757", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfjgfjfgjfgjgfgfjfgjfgj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "102eec34ab6608ff8a5192fb85d51791752bb4d21bb9eabea3a247743941e74d", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9433e645d664162e6212957ce54a9329869a6dc329c4c1028b897809fffda205", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9f31c16482e9663ed1be56219087fbb6c81fdf02ebe6852b09f79f4648744e7b", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "24655be1a0a6c072979879bd704ab34e52eb668a715aea18538d96c4e2576d27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6204c5e5687cc24b433dc87f2036a99a7539754c079c9857dfe670da4436d30a", + "regex": "(?i)^https?\\:\\/\\/gavayalahaba\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1bd1764a5c1cd22ee27bf1adc024a34ca2e9ee38d2b1e42f2c462d8ce1a42a43", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e6e5aaa237f171dfe31b22279bf0a894aaebe024a8faaeb97f28e17ade351db1", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?fd0deab8\\-8350\\-4168\\-9543\\-8bc9a6d03c2c\\=\\&email\\=butch_smart\\%40yahoo\\.com$" + }, + { + "hash": "e749c7d64f251b4d2231e95c5fc3f8eea6219a6ff15531663e434e5a8e503703", + "regex": "(?i)^https?\\:\\/\\/aasdnbscdasdsghafdashd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d36bb5e6b50283d0a262c8ff5714feb78c51b1fc3b29e802c088e6e2493abe30", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c5a4270ff205bfe3fa2a9df1b7ce31ade5745673efc373267c8e87f64c0378a5", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7483c0de9bcd5b411728c3d16d330e3ef83dfca4f6977b670c13a80080e5f298", + "regex": "." + }, + { + "hash": "d089dcaa548397e2bc6d0a634c4d2a703aa4c6be3f2b40e450be0ff27a27b48b", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0e61e54e2b99eb74b1829fd0a03bf42015699b5a52c7d82b14363fe3e867e78c", + "regex": "(?i)^https?\\:\\/\\/aasdasjhdfasjdfas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2f341fb253f888371acfba72a450e3b67400c72311a0517a3cb15ff0f6fd381f", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b464faa1c0286506c35b9676af27ec8ed53ec14cae4522dd6882359c0fff20e2", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5a300c55190ffa4fbc1f4a6bec11eaf5a8276dd2370afa1f4b6c7d7accdf48ff", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "26476a5af03e63ef67074d2d4523838bf1b39cbf923533fe39df4ac3acc5779c", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3c1d33e3875a79cde205d877eb6cbfaee6a026d5bfec6aa4032bdf2f98e7648c", + "regex": "(?i)^https?\\:\\/\\/nomeuxaneva\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7c3fa9c561b69089c38168f6d9ed1c6342906657a83cad2d30bd9d77e494833b", + "regex": "(?i)^https?\\:\\/\\/foodessy\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6d3fe1c8667bf9b72e2d3729a19a3bebfe4f4a5dcfde55b47e5bc3a5bfcc5dfa", + "regex": "(?i)^https?\\:\\/\\/robux60kfuesc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3e4a082f135a0de4d5b7a1fba8f42ff766b1f9a5c7de8df3f20b2237660fd4c9", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2456b3c39d518178467e6d70d2c231845fd2b8ffe28f9d4666b90a8952abbab5", + "regex": "(?i)^https?\\:\\/\\/gfffasdasdasdasdasdas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "da1c9a8245cf46dc8d5a4f8d992f1fec2d5e3ae69f7e50a2c9c676d33efaf597", + "regex": "(?i)^https?\\:\\/\\/35487459878\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b34c7a4e80ff0111ba7476e99ec4f2b6cd44a0a7cba6b8d8b94edebac1da379f", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "689da609379cf9831e6c59fe7b83458fae4aa5edd8085a03acc60dea04e70f32", + "regex": "(?i)^https?\\:\\/\\/ghjfgjfghjkghkghhkgkghg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "19b59884d49c15ae4a0d0596b93219045b8565e10144bd62b66776e58a2f8cf0", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7720fc6e32bd1ecee703a7559f25c58520200548184915c8efa419af3432b4fc", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "593dc9dcf1a1eb5995bc71d02227afc4937eb9363c77bdb3548842760fb45326", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "71a83e68057b7bab67f373719208c1d3afc38325ca3be65f4564dbaae656eb8b", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "02f9d62f3a02f45373c2b5e5ebbc6b80417b8c0df4b4a4f575df21c4d480ffc0", + "regex": "(?i)^https?\\:\\/\\/aasdfasghdfasghdfas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e51102984e63d99bdfded060a8f583b0731f01157deecda1cc1e410e8e591f1a", + "regex": "(?i)^https?\\:\\/\\/card4uu\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5a3469224c589b3b4208accf9a10017df983c1118a7639dec90d07053ba06e3f", + "regex": "(?i)^https?\\:\\/\\/activatesabbnet\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e8fdfe3c4b568d5be9bc379986219d63b62d6a4235fb3ffd114766149b0862e6", + "regex": "(?i)^https?\\:\\/\\/dfhrtfuytrtyrjgfjgftfigkgykgkyhgkgh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5a31f985e8acc2072b44aaadb874633c60f663c0601b24eb4371021afc1e3acb", + "regex": "(?i)^https?\\:\\/\\/aasdasdashjfghg32131\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a6175c8ef65eb843a9a1892baca728c3ffda0c881d92b260a2c1a5fab7938c5a", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "aca8ddfdfbb2da32c6909f9bf95a75a3eb5d14e736512bd608f4d3d440306ca7", + "regex": "(?i)^https?\\:\\/\\/kskdfkjshdnkfjs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ce60993481addd5370e46aa0668978b6c3280cb6e448396a7cf0d2a969a518d2", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6f93159acb749f48da030bb5855bf1f82b4652be593981308596178f6d0c2cd0", + "regex": "(?i)^https?\\:\\/\\/skdfjgdkjfgk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b2cd4b432184f0c5f725ddbdd64fa4b30d9af3ffba0122022a8dbeb86ab86d05", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d77b4692efe47154ded5fc6dfb1520eae089f061bff628d25d7fba9db2103032", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c78563a9ef7a43562fb5cc6813dc0429eb8e775cc44ba07db2c21b8ebf6d2d4c", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "950caa4c5a2af2c0233570ec7ec1a65c61c2808cd2df3145eeef9fc9f7ae252a", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdfjgf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a45d2d0e7f0843909c3b8627055ab0b344e472bd87bdf354ff0a6283f0191074", + "regex": "." + }, + { + "hash": "ef16843094da142b86136b51edd635e216f09ee3761481dd0531ef5174fb50f3", + "regex": "(?i)^https?\\:\\/\\/kskdfkjshdnkfjs\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "adbe9d32e88419cf4095b20b50a70917c941ecf67a6a789bfb0b355cd246233a", + "regex": "(?i)^https?\\:\\/\\/dfhgfjhfgjgfjgfjgfjfj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "85f3d6f0c5f45ed1c20d5888d51449ff560ae25a86c43ac006cc2614e9c01d22", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fdf437add5a8fd66756163929dc05f751e671fdef06a8c5576acd46fc8abbcec", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d10f1f7fc7ce192042cf1f4ebdc4b70f8d3556e4191e88f565b5617147479eb1", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "822d2f138cfade77fa98db9a6ea15e58b1e38be7bd09a501e8a4a85900940f3f", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "de1a131a80426f901bcad3766565bf1c88f06c54d2feb9885d1563e344aa4ad0", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c3ca8d3a565df473480ce7034b5b2d9d2a1e3c08c26fd95f3bc1132ca40e9a03", + "regex": "(?i)^https?\\:\\/\\/mgfhjlgfnhjlogfh123556\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "887ac6853f007d29b02bbe3b6dbaaab4f350c7eae69e8d5f224575ace730f308", + "regex": "(?i)^https?\\:\\/\\/aaasdasd57f5sd7f5\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "de1a6702b184bddd6c7ae84b5f9073512a2139e38a90560be6e701aaefb36d66", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9a4712d3879ec4d9b2ae6804305f4b7163ab582da983e830e4b917e79d73d520", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "afd389c236fdb33964fcc28ded0dac665523310745984289e04400a55db77497", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a4ac5a0108414ea87837fc927c73b27d3040f5bd587d40da607815ce89a5fd5e", + "regex": "(?i)^https?\\:\\/\\/robux60kfor\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "049544ed33ebf17218447ce393069e88ec2497172b0b5e39c20250659eebb2c6", + "regex": "(?i)^https?\\:\\/\\/ggfasdhahsdfasghdfghas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1bf08d5cb9b14c50aaf0b0d2258393548e1d99e74e84ca5d3b5b9230e3648112", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7a3cc31afcb4b92e771aa2a5a048ede673b851079c8ccc64f1144ee3588a1d83", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "187ef46f6cfc5ab29e5547e62b5e6b8b3c18cb30fc1db3085e23f379de722eb5", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "22335e2394defd86a44adaa2fb5944e555b7bba239f547069e2af4515609af56", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhgdfyhfdhdfhfhdfhdf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d2b845fd851b64fb95d4d116fd6d8b81d7e90b8476160b80281c64ce6138f5b2", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6816c0f1639f5f67d23af92565415107b2dea54b56b0a32338a0c6b5d8f38d44", + "regex": "(?i)^https?\\:\\/\\/ihksjdkfjnskd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7f0aede1870b18c1009bd8b5e40e12a3443b0fe3adf240de86bd1cf82b214b89", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f629c351629d320f5addbdc29faf2a6e4d1eebb39a921ef456def40373df2b04", + "regex": "(?i)^https?\\:\\/\\/aaasdasd64qw4eq5w4we\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6132628548df4f1edb02bfb4f8229824d372f9bd40b08087550eb18fab66f1f1", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6f3839fc5e1395fd778dc1df6cf0d9e3902fbd245a2cd02955914d4e97d6aa39", + "regex": "(?i)^https?\\:\\/\\/325348\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e754b1016f7027f7dc6287ed20cd10259af4a8a484131941a2409ed1d9bd8d44", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "935630746ace4733922b0a4b3b7bcbd9b970997789c97881df77ab3f93405463", + "regex": "(?i)^https?\\:\\/\\/ghgfjfgjfgjgfgjgfffgj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b585423cc3185f76a042e49bae85bfd85f2dd1723cdc9df6ac87fbc59cae4922", + "regex": "(?i)^https?\\:\\/\\/aaasdasghdasghdfasghd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "39b53eba6983087e383c855c04ccbbee3ff4d9723f93e6d1d470df0ab87f729d", + "regex": "(?i)^https?\\:\\/\\/gavayalahaba\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "545a22d4271e38a5057805edd260ffe88c6b80b8ad0a6b6655593eb243c030ac", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2ce24deb767791c4887ec018134c2061964f1b002c63576a41354330d5b4cc2e", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "097d7872c11cea061618fef8ac123ae2daac9849be412df3e39207d0e7c7002d", + "regex": "(?i)^https?\\:\\/\\/jshdfshdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6880a52ce684f85539dc1f2ab698d0d1de5f66d400d250416aa294126049e681", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfjfjfgjgfjfj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d736d704d35d2807c697c1ee3482e15d22ca7e711c52f1fae6e5afc21879d71d", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c710871da6b73e81d8c9c612f19f4b899925bb8a61b6c1e8df49b0d45fae7241", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a008085cf8b52e5e86e3f82903983d29f45c79934d90d6d845ef5e60ae14fc2a", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6b578064ae5549e57f302e00f15e8e88390b0a979b6882cd4c939270b375278d", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfjgfjfgjfgjgfgfjfgjfgj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "75f4523a9d03baa6fbb1334e34c7d6e6267252fa2014b5611a945c5902277e4c", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2efb67111e7c342f8b8e7d075cc0defb0eb5f9cb92b38026c4af5ac70b2ae1fa", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7b5e6f5e5dedacebc502ab80e6f65b838782c470ffdcfb23fdd816ff0c23a59c", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2b1a2e5841b8a3d2575a5553c396959992eae125b16aabc0794a456e8dc8ce3b", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4cd5584070ecc1c36a18b0a3b5df22b69785857a5e799956b040bad03cdfdc79", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5db70cf5cbb81d8c857c2259bad283b1cbca1a56fc6a845c53e1d77617aa191c", + "regex": "(?i)^https?\\:\\/\\/aaasdasd57f5sd7f5\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c25af8a3dca5e2577d0298c1c9f9ce15f1012585625b669514e59615030444a8", + "regex": "(?i)^https?\\:\\/\\/jkhgfsdfsdfqeqweqw123\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2645b93d337f1d3e5a9a8e5aeb19de933dfd86838a4049ca748752a58f425397", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "705f4933caeb03b67c22a5bd0ae14d8812cbc956dba75370806affe8ddd75f8c", + "regex": "(?i)^https?\\:\\/\\/sghdfututrujfgjjutrujufjfggh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fab35fc97b29a175285d540cea8dc6e62321757c766216a133449dbc4283a6ff", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfjfjfgjgfjfj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cbee75c511f755766b43ef2d54489eba294fb6b18fb98881d579fb6a7f0b8dcd", + "regex": "(?i)^https?\\:\\/\\/hfgjgfjghkjgkghkkghkgghkkg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "495227f5c92a4b1dd427755baa77ef96dad05702ba3e38deea6e6a2b655553e4", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cc900daf73de4cd560e40a3bd95994c7c4848420d8fde214cdd98949b6de391d", + "regex": "(?i)^https?\\:\\/\\/fgfjgfjfggfjgfjfjjfgjjfg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "05d0ba76aea88a049a24c449f51e02323c21e5925d09a4be6b1d728908391c8a", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e990c496d69b7dd8230eb3c14e5e54245f5906cfa2cd1ecf2aead37b6c030b2c", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "486fc6ea69535e26e0530b7a383834a4d3ff0bb957c510b52a721fa29d8b2c61", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdjfgk\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3696e450d706b15edd36cbd0c6e2b1cc3df839cd60e1ba1c3291430663e5f3b0", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "60fca3f853f2dd5070252fc77c8ee020d4ced1b1ae7a2c8b4b6f17557ee5510f", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdgasgwqefgqwfeq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "20c9ed6fb2f068947206a583b47308247ee00cc1ab55b4690b0941949395ec82", + "regex": "(?i)^https?\\:\\/\\/instagram0837\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "92177ee2941efede8de269546ced85c63ff216c60ee0ae38f804cb66e1792d3e", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3a94fd8d1b9799bf9a41027d0524592d09a50e9e5798d7a15e2a96d49713cf40", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cf73f742cf0387378c71a2729cd1abbd26d08eec2b1d05f979052a09b44d815d", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "623990c2c5e9ea9ac72c0c65133293eb8803414fac0cf07d46d1001125f0d066", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdhjfgjgfjgfjfgjfgjfgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "077c0582a64a1851857a21cad88305c7020323388e48dace1338428d8e9b520b", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "17b3518c16189d17189c847b85425810b73fa0927cdbba3e18e18d26d0d95609", + "regex": "(?i)^https?\\:\\/\\/noekxaeaeaxcetra\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bb3f096ee4813cbcc80d90e016f4d435f1eb54adcf604fdbbfdf7433e9e07e19", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c14da2cdd15ae829f086879b0935893ad77bd2e3a644d0d85e67b4f075ea4625", + "regex": "(?i)^https?\\:\\/\\/dfgdfghdfhdffdhdfhhdfhfdhd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "313acd482c22416e4acdf4a6042bf06ceca4d1801c5eea94682e22f230cd9940", + "regex": "(?i)^https?\\:\\/\\/odfqpsiofzeuodfyqofuqzeufqio\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c5d3cdbba55d39b2dc50e203e4626da26228c80c16b70f36f3a03999fc798ebb", + "regex": "(?i)^https?\\:\\/\\/6587465465\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e1a142cb2d9b0ad4528d780601f59b9ffa494bd465dad501bc295b8de37eb18f", + "regex": "(?i)^https?\\:\\/\\/dfgdfghdfhdffdhdfhhdfhfdhd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3c1d437ea1bf77c14256b3b650351606f8150af610128af5ef1c03ae76bc56a4", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3c1d985473dc082b85741088bd40741649acf7118a821c78d7300460f113a602", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdgasgwqefgqwfeq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "199d0835154a5c45f1fc58d34b7de763aaef2bdc711208702a794cec436b795f", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7575beb5fb45cc6a9454b853faa09df2c0626d2a4efce96c6c31ec8595b2c6a9", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9e7dad38c03ccf45034bfca70886d3f5b1d72d49e43e35469f52b116a6ff2fc3", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "457c231cdc1aec8ced7f62ae8cf46ebf29b0da988ee37bd878eea11e3c21b6f0", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6a80e56c7fb166fd8c36b23a019192cdae2aaf0f2c2c77373b896f994596955e", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "22925b24a01e547011724ca66dbdd4a85c1c1fa1bfa2f4c9ffd370ad9482e539", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "999646b5fd2c7316af135d9c9e9040b1758324615b8b7cefe46f451b34d78dcc", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9d8e1e9768c18134609b5acd2b2aeb57760328b1a8a09d58a4ec3424dc0dc3cc", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9511706a36a687d00ba169dd9e16382df908cf553ede67f2d277647b13a4e79a", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5a566e94a327f4a6e2f704036e45364987c671a4603fd83b9ec8033681f31b9e", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "842a3358eee74e419ef211763a93f604ff369e33d33995a0dbc432c5110d1612", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cb372ab20da85676da418fb63b5e58fd32dd106ef32f4b563830bd9721625844", + "regex": "(?i)^https?\\:\\/\\/robux60kfeosa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e32ed5b0ca2434309362f9ed2ecad4874ea24a5cc0211a166da59e3a355dc11e", + "regex": "(?i)^https?\\:\\/\\/ihksjdkfjnskd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "9a507133f726c53c2d26acbaa1cf69f7feb1df97b59c45c460ed0cd571805d8b", + "regex": "(?i)^https?\\:\\/\\/robux40ksbvw\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e7541b4796c1f818110ffb6630499bdac82a9fb28153a11aa86a1492fb2430f6", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1b4684186274aebdd402a1a46a6db29c65f02626b72f0bbab7d098ea47c82613", + "regex": "(?i)^https?\\:\\/\\/dfhhdhhjfgfgjfjjfgfjfj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9777dba3be58ba59a63af37f06ee97cdbef14e3a86cf756eadf856b76f089e3f", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0646615d7fc661c5b1e727258e57ddd41327f1d0ea7a4f51eb3207adab4128c2", + "regex": "(?i)^https?\\:\\/\\/robux40kdwb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7a922c3bdf993d3bf72e1849e6ee254636c4b529fc7424dc212e2591bc4b027e", + "regex": "(?i)^https?\\:\\/\\/mpliy\\-lo\\-xtgsuj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d3ba1616dab75e7d0b965d818fa54f7c550c769215d57ef4eac65db488960fc8", + "regex": "(?i)^https?\\:\\/\\/aasdasdashjfghg32131\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4fd7ea2ef503188015a3ce3fa3c55e6e90c45a438f97cf673022e042a0438aed", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4a756d4dd1ccacd1039e2c9f7c9889714db60376cb5e51156f5a2c7ded93747c", + "regex": "(?i)^https?\\:\\/\\/bgzxahagdhjasfdags\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "558dcd1afda7a8c70f8acf53cd6be14a872607719651c8f791f206c6a1845748", + "regex": "(?i)^https?\\:\\/\\/dgfdgdfgdfgfd55\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2c2baeb0cee0915be3618b1cc39e8190b490a374cf78f47e56b38bde7cad7f43", + "regex": "(?i)^https?\\:\\/\\/fsdghdtfjfgjghfghfkjghkhghgk\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "96875a12d75a452aa9f369df3cb93a1aeced5c5885dd42bb5a12c4720ae4826c", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9caeea3c66fb4951557eb349026ad78f57147f970021349616338f126ac3f7bb", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d45d639c8788776d4e2f85e1f0422606fbb1bd08b25b754ad87fa9ded46fd70f", + "regex": "(?i)^https?\\:\\/\\/dgfdgdfgdfgfd55\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9984037245acd055e3927c58ec92231f923ecf1de785c7f1dad7f432b29245bd", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a8511994ee08128bc980ce0412576d25c251035b062702e510e1d32cf3820bc9", + "regex": "(?i)^https?\\:\\/\\/robux40ksbvw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1e12f4ca9da34def55157fb5640357ddc9a0b8ff365ac01b90f1ce85e8338939", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b81844edc5ccadab6654a81292ce46d703ceee76edc775195771c49a56351ff9", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8e3566c4ff4c96938978e4102ec60ce4199830ebb9d8015a63f8efa72f245964", + "regex": "." + }, + { + "hash": "7fcbe80e952b0545bd79317bfdb6ab22d65fc0dff533d7f5072bef2b6a570969", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "dc89ba19e5ee4c356bbf572da0757e2dc5614ab88c9e22b52d723eae7ba3f37e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84dc415ebb06bc0a5b0d292447b22ca1d66aa03fa5d781c058e82a4aedea97f8", + "regex": "." + }, + { + "hash": "1a7c1acdde2063b5007415fd6c9291828093b172de66b0d059a00fdd36e6f89c", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9399e775c97d4d6b311d3a752ffcfe763fad35118051e867ea64c1266757614e", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0659d70b20ad460ca8a613131d351bc184cc6498b2bc95f0ee1463cf6a127741", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "54d41694926ba97da9f1c88ddeff1a8491b74d8ea3ba18b68301f73e11a8d652", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8ee1df699c09042afd021d53991264d3712021877fdf3ccc61195a53247d2da1", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9699d2345949b217d914ea5f9b4f550f1457147e5a871b76d517a205f112f991", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "36f3d5b6b0e6144313fdb3f7f1599df2eacc9a98d9e53fbcc5ec20633cba4fe3", + "regex": "(?i)^https?\\:\\/\\/dghfgjgfjgfjgfjfgfgffjjfgjfjgf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1688fa1448c42b5c4e65447690bb986f0742a40b2994e8e80312f3b097057243", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfghjfghjkghfkjhgkhgk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "65f3f7ece264e1bc62ef658b533101771ce0784eaa4cb8de634f75b3d98121e4", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5f1932e6b4257b26bc686da72cc045f5ba46d1b3ef4bc9e502d91c9f70eadd1c", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b8d1fb92c7df264e6254d1aa43656639adb8cc0add5567a4a5bfb8f376016335", + "regex": "(?i)^https?\\:\\/\\/lsdkflskdsdf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "02d25f9a3e10fb0345ad9781b6a2739b0a074cbe6963d39681a036b9e721f124", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cd5bbb42d0fd082ad13dbe07175f65c1c470f76e5164f64aa9e01d36ab2ebc7f", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1add5215303b2548ce324b0094dd335692b80271a96d0810a6a39bb6a6ddd53b", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "78d52018bf9f3641e40434c7261023c42744784f23fecb83066d3b39bb8e3cfc", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "76d32aa578962cd079f26e2495f49a6c8a10514024deebb5af1f12bbd89a3a61", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d48a5899080608c0df520a2a41761c2d389cb8fb0df076f56cfcce5ddd70e307", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3bb893dca52da0f5423ab444ef0c9d229b268df585a160591970c19082a4e776", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1ad6ea0823dd66afe2d65836cf90b5bd17009cd71e76ca3216aea4d2d284d37e", + "regex": "(?i)^https?\\:\\/\\/gavayalahaba\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1b46dafa44c7bc70471d31a5ca1b9e5d8b6d4c8f072ee8ea44cbeba6465f444f", + "regex": "(?i)^https?\\:\\/\\/mgfhjlgfnhjlogfh123556\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "05dd59c7400a70242fc943d3f0e096aa315cc49bd3c4a32d8e47876db6c372df", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b8c568308ed81df8c2e1af2b6fc47918198f13edda16ac41ad9a3676527c6b21", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d6248fe3e4dfa2b04c2ec62bc7bf8e99a95f9a8f7a393f422bf07897bee9aaae", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "89e8ca882667d2b3085ff1263c3aff0e8208e76809e29fa95604367e7c263937", + "regex": "(?i)^https?\\:\\/\\/ihksjdkfjnskd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6c525409cc9359c6724fe02cfe43c6898c03dc72590c9c11b60b9da86cf7485e", + "regex": "." + }, + { + "hash": "7153d065f3d7b77224d7fdc66e43ed552afe44b1c06db3aa9b8fc7e679265ff1", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a4ee51088c4f1c69ffc4c4aa5731da0bcd49ee3cf5c39367a22e0c4a8f42f", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8621fea18266723f0c0d8068f8745fdc420e16150e3eac2cc801864b57474cda", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdcvxvxcv1144\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "33ef11d745ac055e619cb544c82c6ca0f23e6ff84462499757d7a023435c0eef", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fef3dda29cd53f7ff33bf56b6c0ab74694122b2d44ca97b74f6cce4874707309", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b40c348a7d0e3a9e2b7f8f81fc07414da6bacb50ac26e2bef1f5d695b3bee305", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "92c51a2730123d9633370daededa9807fcb1864065eeb6f231763a8058b1339c", + "regex": "(?i)^https?\\:\\/\\/dfyhrtuytigkghkytuikghkj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "27283c3018e6cd0a4d205d791610152143792c0d0c5a2c434c32a07f4fe741b4", + "regex": "(?i)^https?\\:\\/\\/aasdnbscdasdsghafdashd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3e1ee716ec14b2a53583ccad19d51fb54a2c19062b8b12800200f83434540648", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a722d56965dc4e4fa2e8884b26a7da1b1cb43ddc41b685a23a5f62780e90f1fc", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e38b2b2f7c1f715392ed15d0f434ab9c96fa2faa0fcc4c02bb997ff3e232e6fa", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e941f8d067541ac3d39f426c0d4a4bcd31a2f31c71c142c3c2452ad9ac5c3a9c", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a70af0d6c393ba290005414ee5e5742dce814ffd58f3f3fd91abfd759166268e", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "967f5dc87be546eefb1972f1f31655e0581ed9d1e4e7fd32877bd639391fdb66", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d8b3c6823c97a081bf973b42d31b3afc256354a40330dfb603f84aa75c963071", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a089f47d3cb6c07c53a4d0153ab3292d9fcc11988fe8c121da845698f7bbee41", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "74cf82f707eb2dc1d0a7a0fb31e4ca0dd60772062398fac5398f53cd3b5e231a", + "regex": "(?i)^https?\\:\\/\\/www\\.best\\-deals\\-offer\\.net(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe39a66da98283acb4de1cc90dbc255a7b86b878107e72fe149a9905053f5518", + "regex": "(?i)^https?\\:\\/\\/instagramloginaccount01010638357\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a8266c0eddfe2a857c4fba1f29537c7cb5039d49334fdb7e33d04cb021bbd19a", + "regex": "(?i)^https?\\:\\/\\/oiuosidjkfjskd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "65df57b622757c1c8662b8c8f3cf5a2de44d77d79e85f9fd59f8d722949a6122", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3b0e7ec8e295c6a3feb62e94dcbc653359d02a43d0b56d46240acbdefc4c0fc0", + "regex": "(?i)^https?\\:\\/\\/dfhhdhhjfgfgjfjjfgfjfj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "89a906397732901a2b98403dffeb0a362c85b69041cd4864b75ce47eed4b8d9a", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c7ea19ca316065524f9939ac06fc33b476490e770c17cb38a0dbfede9792cfc9", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1b7c5e543557266e9bb9c5386e847591326d99e8895f64f65f99402b70083b73", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdjfgk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d2a8253f8a87491b2572bb5f330a534274a1b6faaac13ee4ead2c7d301e361d7", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "25450f183e53f9a8717ebb90edab42e489bea293d024c96a2eca6ded4a713762", + "regex": "(?i)^https?\\:\\/\\/noekxarcexauia\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "80e52665fd9aefd2796b245d2bc9602e0b0d6742f33469da47e1d76c825259b5", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5de0e0271492dd496e12cdac47d6ca7f9b4803c236fb6e000a723ec63d0207f3", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c989ef29a5fca6a90e3a0eac64e31ecf74283906e68d1aa141e3d1a09557881e", + "regex": "(?i)^https?\\:\\/\\/kgjhfghasfdghasdfasghd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "779b0c7cede7a02a423f011c29a24949cb96ab75a7c728c76651e8da4e83e46c", + "regex": "." + }, + { + "hash": "7786b49d0147bc868799d4155dbc2d4aec809829f671325684f965fe05722bf4", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "da1566f4f952fd361a67a2c3afc6560d5e94cc1d38474cfb543e0e78c2624ab4", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "437d632fad4b3d47c19cac73033d0d0470af5311a842692529caf37f474eeb2f", + "regex": "(?i)^https?\\:\\/\\/nyotcrot\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d9281d610e15be9e8a9684b0515914527910ed5782e906ee48e64f07026a810c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+3918829(?:\\?|$)" + }, + { + "hash": "7b6cdae7e77712bea6cbe55118a0219eba764f67fcda8bb2635c0718db6f6b6f", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d1064ec277f8485b51236b5924bf7e3f45a17b5707418e8d8e05a7763558cdd8", + "regex": "(?i)^https?\\:\\/\\/noekxarcexauia\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c22d760f73cbde00b3cc0331429e5c40014b8eccd8dc908c00ccc8c05594a39b", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjfgjfgjfujgfj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "80800b9be121d7e760ebf5f1250c9197dc40ca934c78c5cf4c509f119805cf3c", + "regex": "." + }, + { + "hash": "c647ddc154d40b3fc92f88b28b98a474e81684e05d77675bc0af730e06c25554", + "regex": "(?i)^https?\\:\\/\\/skdfjgdkjfgk\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "94682b649e9ae2a5fe99c878d32e23eae7b8add830463515352f7528e64e4c26", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "61e0e0810a48cd14dc9a40776cabbd7857ad8bb1b96235d480e2f48b8e16d037", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "323c0b19a1e1a2e7d70dac2bd27b1952be51dadb5da7f0aec309c21974841c5a", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhgdfyhfdhdfhfhdfhdf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6f723f6f07414b6025dec7df23c43f0393543525f5b64b4560c534daed6fe450", + "regex": "(?i)^https?\\:\\/\\/mgfhjlgfnhjlogfh123556\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "842f17f8f491e87f443b7d724428a80788a3a23fa86bc7ca8071e8dcfe8b100b", + "regex": "(?i)^https?\\:\\/\\/nyotcrot\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f8abda4385c1b0cfeed8a647049f1780a723d424b8a46d98c449eec0caaaff31", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cf84761beea1b78799fd84eb49f6823657b175496f380d0c9023891412344759", + "regex": "(?i)^https?\\:\\/\\/blogedelanaissance\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "334bf5378c3bce19ec7aab53cd392bfedf4fc1ab68b2054ac4248ab6b695f699", + "regex": "." + }, + { + "hash": "5de0abc68027581e0654f3f10f4ba4814cb98b9cfe81847e7384a4af6841875c", + "regex": "(?i)^https?\\:\\/\\/mkeoxanrucatga\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b29d4c3718b3cf28380ba2b4276e2c4b852b31bd877d2f43cdc93e8a022a20f1", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0772b040a7d2c26859789629c4584c34a5d1204cdb1a963fe5ea153b90ab7ad8", + "regex": "(?i)^https?\\:\\/\\/jsadnjsadnjkasdnjk12254899\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "080fad7004347856d365243392de7896a865af2ab266320a203f871f0f396dda", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfdhfgjffgjgfjgjjfgjf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8cf7fb78f926ac3edebf00e3af0b1c814bdbf0b9dfef4fde85b31a17e96f5bb5", + "regex": "." + }, + { + "hash": "e7873bd72438590e2530592420a36a77810e56c3344c2548a444f8b36974f33b", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a27d99627523dd01c3f717e42c1eb04131aea0aebd7565a859a40393d61bc613", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4bab475212cc7f4397da291d893dcb2b866f4239b5fff45885fc7afff0e155fd", + "regex": "(?i)^https?\\:\\/\\/nomeuxaneva\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ec6353957f61e5615aab02388da40b3f9b2c932a70b21d2ca81b7dc422c25adf", + "regex": "(?i)^https?\\:\\/\\/neoxmeiaegra\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d157a08e1fea18dc68ddc50c742d5a1127bb746b65870c5664d01588a1191575", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a7389ab8256e5a8513de61061d643309cbfc95fc1466e09f49ddb20a9241c3d9", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "96fdde66fdfa9bed7c69d03a5c84e652ec94b0ad350c2ba3e8f3cdfdad82ef8d", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdgasgwqefgqwfeq\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1d3ae425083eb7640e5109030ac0b5b38851ec138f205a625f80107bbcaacc76", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a4cec6df7412f8b62e10126ed3f7dbdc8d32b160343367ba32570e80316f458a", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ff174ff8372f8f2d55f4e16c7c2d86b80de05c6bdd45f09aea659e7aae5aff3a", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8d9aa11b200397d8a9e3c912f039b4094d3d7c29647ec3f5a0ca9131eab81d06", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1b00bafe0d08af21ada332320746ce2b53de3e627e797f7b4ab48be4ede76395", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "05c562cf6ccc449153cfb431f69bbc8e4c79567f39a3e1e662103d44ae18f3b5", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8ab2616a5b385e7ddd1fa49b7422d84739318280e475fa0bae731195026d0b58", + "regex": "(?i)^https?\\:\\/\\/fsdghdtfjfgjghfghfkjghkhghgk\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2950b48eab8f2bf7e0f7f80b16a232b9cd26020d83952ad381e59c72b259eca0", + "regex": "." + }, + { + "hash": "31e24f04fed76657205b340f669d6af5b0c371788163661b8fc7b0ac3782ce90", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "38565584d577972ddc200b95dbc6029d3cc8c385590bca5372b8d3d185d0e716", + "regex": "(?i)^https?\\:\\/\\/oziutryozeifhzeioutheiouthzeuhzet\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "83150e6007b0fa0f4d35ca1b1869b068fa262fdf8f60464678c5ec522c3e9793", + "regex": "(?i)^https?\\:\\/\\/jfsdgkdfj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6f4941cdb5d48b983a4e51bf1c449a6bcee14f89788dc6aad96622b68ffeb84d", + "regex": "(?i)^https?\\:\\/\\/oziutryozeifhzeioutheiouthzeuhzet\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8880312774a964147d35e9f272106127f0eeb9f590a8f7a6ca6783fb97d3b7b5", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "74139821cfd9acc2f9d25ccbead11bb2d6483daf4b4eae3bce0fb63808528317", + "regex": "(?i)^https?\\:\\/\\/skdfjgdkjfgk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7ead5ac978a95608aff24046d6a005967e74c7aa6c92bf615772ecfef2d5b55d", + "regex": "." + }, + { + "hash": "fb9dfa90e5363a3759bd75276aacaf525b7b1bd856b3c071654623504571d175", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4715805a5a72adaee7ffb8062a777b3a603e416a55461ecd275d275704aedbb3", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c33941fce865348ea1f2d09b496fc3ea66e1fb9f6a1ff1185b7f505f5f6bd824", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3ec9dec6ff6e96feba8ed3fabb3a2ee1696c750b612a6c2ae98401551869d385", + "regex": "(?i)^https?\\:\\/\\/robux40kdwb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c5ae55cc39bfde5796079539a3f2a0016f61729f97955bccb5f84e439d1c9781", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2dbaaae89081b1783cf4174dbdb97483fe0205ca7e7c98abeb1e3d3e89e173b2", + "regex": "(?i)^https?\\:\\/\\/jsadnjsadnjkasdnjk12254899\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "72133c1962bd8723615690541bac1973b37e01fdcdda0a6b85f2b8f863123626", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3390cf716efe35eac60c56ff50e63209c1025f5eecae7d268df617a87c09dd84", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4ddf9314647b95685287aa6bde24ceec6e517d26c34c368ef21035454de0732f", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "649ff8146983ad2e19cce83a894f3609b55fae8052755c12b19cb855275214c9", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "04388e45f32efd318dc480ab4d6caa6e7c84fcf09ccb611a186e6cde56f4d9e3", + "regex": "(?i)^https?\\:\\/\\/gavayalahaba\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d97897424f012b597621c15455be4cc16a4e3842099281e68d80434ae5cd3e15", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "69d3beea47cc1f4918affae0367dbaad5024995e278bf56f03bac9ea7a94f156", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8d17869c4e0a5529d4912394abcf46d7f54eb06fb82cb9a0085e5165c4ad4593", + "regex": "(?i)^https?\\:\\/\\/dfhrtfuytrtyrjgfjgftfigkgykgkyhgkgh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "516bb4577b511ccf967958dd6710230ec2121c14afbb2836c7e8b9336e5b940c", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "91abf6701e173c885965e15910ea2f21c64b1270658236186db63e0a3f6f5b52", + "regex": "(?i)^https?\\:\\/\\/jsdhfjhsdjfhd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bf0c8d450b8ac2710663d15dd93ad369ef593ebb1c37103d0f4e820873c4d226", + "regex": "(?i)^https?\\:\\/\\/renewnetfiixcs\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c23c552626a3587b107f9a3ccd2eca1c494f6a4ee2bb43486f924704a3a5b00a", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b95a837e639845821f1a93b14dddce12c8bb89a9a14c8d16b38c1bd7148a95d8", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9349cc21420c536fb2f4565ccb668d9c46a1282d0a05b010a12c40b02976968a", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "81d436c278b1214337573ef8978360238a32628fad60d403a2f393779399b3ce", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e9afe7c68926e68f619af110867639b0623396814b137f542ab893aaa77cf78d", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "24556d2f2978271d8c110139d0a36a44687ff33a4d975efddad1aa16a94b4275", + "regex": "(?i)^https?\\:\\/\\/instagramloginaccount01010638357\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "417cd41831b1adea5d6bfbe55f0d8c069299a06e0ded92d5deb662a23de4d72e", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "84672f06ba0d24d766ef7764ed480df56127f7bad9f67d4bbff8cfa345ee6e81", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b5e3c070142f98040a89000e4494bf21c2885d5ca8e2295e03823821e839cc7c", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1bf0ce1121d5c01ef772d18cd8c1825663d1bb48c1e339834de5180a240508d6", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c4df9c346f7ca1fa440a8ac5fa5c1bcdbdc71430629233aa14dd646c637e1523", + "regex": "(?i)^https?\\:\\/\\/dfhgfjhfgjgfjgfjgfjfj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "436e2450f670381faa1025e3e6ded563c41265bd1ed0c926348b320a706a10e7", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "df6071da09e56716e45eabdb88feaf197b1f7c7bf8ce85887443eae3232bd689", + "regex": "(?i)^https?\\:\\/\\/pub\\-56536c4c85894b68af18f31f792de0b5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5424cf746e3efa71bfaf62933e0676502cd9534d3e016d3296118c222bdbda5b", + "regex": "(?i)^https?\\:\\/\\/aaasdasd64qw4eq5w4we\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6771e8b23664a05f510f137d8429977542051b748d7951a459633cb89b149917", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "104c77beb75d1a6df1d092e6d69ed6b3155ec2457fb6b376fc4e3b2226076c53", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5860e14e82224da6b1613b5e0e00063796b9036c6e1e75b87cdaac1d0594498d", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "550f61a18cc59f5eb8c186f6733ff579e84fdec59e8a4c2fc2de8c90efed048b", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6b893506a9291089dc8dafbce9b91467e24c905825be546bc158deb95fb3aea4", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfhjfjfgjjgfjgfj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "19a16f9174fc772d49a2e8eaa67805e4d74bdce938724e4d6512a34210bd29ed", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdcvxvxcv1144\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3f1617bd44d82b507f6c86ee9fa5c4716b2700d6526676b2cc059af74d0e2c3c", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c51c5e71ec658231475b549d011a817e3dc70f909b81a2c2579ce1162434092c", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "af608d5cb06a73a55a7e530138752c64610fa5a94fd6bd5db05ea6061475ab75", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d842bb8f97d8925473d238a118bb8784c1ca0ab1db8822924da0b786e54994c0", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6192ec11c95b2bf60cd7979da9209fe96cdf06ea034d3704c269f34a88cc5a81", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhdfhjgfjfgjfgjfjfjgf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4f42124398b7e3e50c162c7c1e557a724b39df1a1bf953502ec1c5833438ed51", + "regex": "(?i)^https?\\:\\/\\/325348\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "06844415890bb3111df85210b8191e7cb75df897ed043b1c84d01758cddf3093", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfhjfjfgjjgfjgfj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "14f94c8f0a4bad83efca86b2f596a091d47ed6f75c5b0f6f219db1b04cc4d5e4", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6d9e539373273a5b5cf9c5699cb796510103932d8d0c4cf07de8c4c7eaef0555", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3a078d41ba85955f7fe79950c9fbb743ce71ee3c0421bd37ad721a08f69a0307", + "regex": "." + }, + { + "hash": "4d5d3327aef98a4cb1e08e2c3d57666f23eb49011b9f621f2857b1ce2b112267", + "regex": "(?i)^https?\\:\\/\\/foodessy\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b8464b7807d9822242ff6bd09b97cc70cb25aad2795f5e6710804eab106b78e8", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "44524e43494bc707a41cb40dcc7083e0a018a52716a3f967ad9f74402ccc43c3", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6746a42eb9c4a3546168120582b8568bff5628c8fe497dd90d31b170eae415e6", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6053dc9810f18f9763255127747e3b0edbec7993ec87635cce710f4d5baef9d5", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6b94aa03fd698da2b1b5d853d4f4c29b733087b2f7dc9856664777795be96416", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e160ea3e2a1df2c4a6e0808ec48203bb96f6a778efd3bebd69f1b8fe2e91cc38", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaevcawa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "03c3ded7d7bd1934b945d126042dd79b213c96b2105cc760f94e02d0629e07ee", + "regex": "(?i)^https?\\:\\/\\/aaasdasghdasghdfasghd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b449ab5c8675c5c4fd5949aa65ae8ecc41740630c35c31cd1ae30d3e0c3cb3ca", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "68b873c503599a6fd0e5c3ce3d81f2671ba4064103cd33b3aa66fb64579bf22b", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8328c4970ba1136076e6a45d1978b18f014455d12ba2c296c3ba6523f25cd1ae", + "regex": "(?i)^https?\\:\\/\\/hdfbgjjkdfjkl11\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "29b35a8b7de8fbe82dffd97cb397b05d17a15bae4e842f6065f708047831b0ee", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e96e7f45357f0ca47068904b9a4f005da42233cb44e334023043ee856dafd5ef", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fdf6ab75571f8967831dd4b1eb93b381091dfc0207daedab08e853d153233dd7", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "544e2d2bbd6f7caebbcf851c38acff0b1fbdee6ccf47a0d362b51b2639e0e66e", + "regex": "." + }, + { + "hash": "8c2166ba9a99ad7aa4c2759142916a23eef053e8a665682d99edc5e0984dbb83", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "30e0cb2f6276559832c74d3a334efe76026f9249dfe3fe2ab4c34c7001db5498", + "regex": "(?i)^https?\\:\\/\\/masdmk2ms\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fe086e5a44a20d2049c00ce14b00231105f4218384cc8359f6804ec0ea7d4c54", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cb579504d7f5504dbc5ef22e15c6e3480a1926d612ca60303751690a16559773", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "29caa4a16239a55c751569ebc2f0c1cda80e5071537545a8d36cf1f96afbea49", + "regex": "(?i)^https?\\:\\/\\/ghjfgjfghjkghkghhkgkghg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b6c1caf4176bee767ba9b193823bc517612892bf80679dbfdeba65fdf9ba7673", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "585274eb95732615ba3e5515212808fa78af8b3810c72470f01cf52c905899c0", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1e6275f9189edcf50412026a677c5fa58ad21498aa39d353e6fb28d82bbdf723", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0007038d5a9b6e5206ae45d52894c645ef618c51e08c8ff03ccca40aa760151c", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "de8cc97c165f265085419a67147227df9e66bdbb6f9be8852026915cbfa5be0a", + "regex": "." + }, + { + "hash": "22ed28d55b02092db7f9d3e4b38ceeaf6ad36a671cdd600ce1c6bc85da74e570", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9ed039f70063ff2aa04cad8bbe3b2ed2c2d5a45e312f21798ee903e5d03fcbfa", + "regex": "(?i)^https?\\:\\/\\/dfyhrtuytigkghkytuikghkj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c243a8ab3ba9756ff423f3f44b82b493d833bda0721213bccce3fe5e81dfb1d5", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgjhgffgjgfjfgjfgjfgj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d94aa5d1eb428016e8402cf673ed468a883495888341a54a1c939316202e7dec", + "regex": "(?i)^https?\\:\\/\\/card4uu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a1f71811dc24decc0bbe8f08808ff8e0a3067d7aba5edcda632d170cd0b2269d", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "339c7589f2f31b767682177af03067d9225f354ea8498357a387f331a02da586", + "regex": "(?i)^https?\\:\\/\\/aaasdasd64qw4eq5w4we\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "59f2d370dd61bcd6a001dfbbeeb76e3ebe4a8a5010ce3326b864d5852680bbf8", + "regex": "(?i)^https?\\:\\/\\/aaasdasghdasghdfasghd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ce3ca174a9e9ab93c3aabbf24934afab49ee7d48460fce2e8de7b569c42ed2bd", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6a2000a0913e1beadb93a95236d572c6cd347c3d783a8c3582caf37232a2c9c5", + "regex": "(?i)^https?\\:\\/\\/activatesabbnet\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0035b2c513886095e0729f352b0a4aec95d3f0ea2fec71401c001254f4562779", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7f3f3aebba63b2e60626c09b866ecdfa977a3c5d5ebf98d2f5300cf44ff458ed", + "regex": "(?i)^https?\\:\\/\\/skdjksjdfgd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7be62b48fdab2e4d17cb46996331d616f591a5ad2d244e97c83b012c4ae5d699", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c8894453fa292e8f6ea5105712b277dde39612aa29a6e7f0c043fb626ebfc75a", + "regex": "(?i)^https?\\:\\/\\/jsdhfjhsdjfhd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5f58f8e3619f7ba341c1c95728b2e538ee71b6b349b07755e0e1db2dd34c6820", + "regex": "(?i)^https?\\:\\/\\/sghdfututrujfgjjutrujufjfggh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0b301b7ee661004a442082ad022e71d8b99d5ae42fb4d2aa0ab10b6bd1f3b97c", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fd14c367bfd6a60cbc1706f4ac3354398db273f1ab6da3a447029d6fb8d04efe", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfhjfjfgjjgfjgfj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5cd318c4f79ecbe737e806dbd4670bb119e9374835872f69dd4426eda7973455", + "regex": "(?i)^https?\\:\\/\\/renewnetfiixcs\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5e865505f25be4f47a740df17c1b3bc20d252451754b826d6ddf208e9320bb02", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingprogtamadvance\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "fd2dd2198fdbadd3516dfc31d2dc07d99753fd830e80a20d7209c8a284ce4ea6", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a36a1452d5e27bc056b08badf36e582738e3438ce54e8e399b4a1aecaf33eee8", + "regex": "(?i)^https?\\:\\/\\/54488654\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f615fa2274627e9321bfdc6a60f99d5b61eb3d79f8fc5731be5819482e66da0e", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "483cd1af8f6fc7eca3eb79ad73aa237fdb13c597ec2172ef9590126204091b75", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f3e9129b07d870fdbeed3ba6c98f31c18a92846eff18bcd0428710527a1b5b9d", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f5e2068068e5a6ceb91ed225875f99b7718a4ba5b6025b8439e7fd8dc9938dcb", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfjgfjfgjfgjgfgfjfgjfgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9fead30f5158c96cb237feb4ae5e8353645b7d73ee49fbdc15e74b2649b45eee", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "86a6f2cf3f244d84e9877277d5dcdc6bcc7c6576edfb59f17bb1d0aeb5f67234", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+logo\\.svg(?:\\?|$)" + }, + { + "hash": "0e7e7dc02d31439458bb184303188017b6fdc9f7cceede34dcdb38524db852eb", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "01cfcbd0e84f1710d49e9fd359f4bcd4a1d6552ee8f30d8c15173454d92cd979", + "regex": "." + }, + { + "hash": "9489e887720a17f553e4f197ef16fed3e289ae1b7977bede72a313a27e5529e4", + "regex": "(?i)^https?\\:\\/\\/fgfjgfjfggfjgfjfjjfgjjfg\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?f93626ec\\-c3e6\\-473d\\-91e2\\-842ce781e5e6\\=\\&email\\=lifeguard1733509266458\\%40yahoo\\.com$" + }, + { + "hash": "85617cc77f7e9f59617881eecd8689838ce84c4fcfaf5458bea8afa28e8da6f9", + "regex": "(?i)^https?\\:\\/\\/aashdasjhgdasjhdgajhsda\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3c6ae081ed1cb580a53fdc099cff9d902efa103761d3def18eaa3f8a11e1e4d7", + "regex": "(?i)^https?\\:\\/\\/jhkghjfdghasfdasghfdaghsd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6f24614c901f4aaa8b1a61cb469c5f20bb1457c66f85d31a102233531257b78b", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0f5e6f333aeea64c505e5481468b7409d800dcba2ba774b2d909161266545cb4", + "regex": "." + }, + { + "hash": "0824df19258ebde50060d99f96f7ca3452eee3875f7845b98eee6c835f1b5740", + "regex": "(?i)^https?\\:\\/\\/masdmk2ms\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9dfe8c702e71514e7f675e6c16ebe908cdc52de28aee2915edef80f5abe36255", + "regex": "(?i)^https?\\:\\/\\/aasdasdashjfghg32131\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c409e6e910bd1285bd5b617a95be9275867631996386a61c5d75551dff72ecbd", + "regex": "(?i)^https?\\:\\/\\/jshdfshdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a445e0c74d79f3949c45aa1343c9fdb53de55cbb679220d247bf7af3f118de16", + "regex": "(?i)^https?\\:\\/\\/iuyerzuguqygyfgytfqeaaezaeydqiid\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "dbe104430cb54115c6eaa147d9a92febc714ccf0b22eb3c23858bdd47ed475ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=whibxaqr\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "ddb867198bc1be500c665c1b26fc16d2ad5861c5fd146076034c915898fe2b44", + "regex": "(?i)^https?\\:\\/\\/card4uu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d4a4bb68ad758599f00226022fcf1244dc9580567c43f8df46c3fa4a42162db7", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "18a13aaf1b734149435f028771426a61a8c528c4abc93aca48d56641d3b42221", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1c7129ae0ade5d4e18aef3ccd917774145843a7ff3455f051f9c8d24fc3004fc", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "06fbb36883283d07a47370e8f0528360b35dee47fd0b195b966ead4cf08ae043", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "808539c420cabd22031e0351ea9623c75b65d681089c42ea93d16f16c03fff59", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d23bde5516dbcda956082cf1c7c9957ff0b6d442ea438666bfc18ce8c9a7dc8f", + "regex": "(?i)^https?\\:\\/\\/solicitudprestamoweb\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e46a307078b8b8aaee5160e5df35a88176fb872dbb1738043f2dd236713d21eb", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ebb263ffc4cdb947ca053d6fd11080cc94ccce9e87beb89d0461b6e2c07f25f0", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfdhfgjffgjgfjgjjfgjf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "060ffcd5f76d6c57abc2ce4380ecb4408ad4971926fbfe90d7428be00fa3b187", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8dc3757e791cecb6de2960c4bed8d11945523c6c60dd5ef0e237be805e90ec1a", + "regex": "(?i)^https?\\:\\/\\/agazfvkv\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99b3646c2da7f7e942d8e381f03f47eaf16373f8199848da8b05a32676002c6f", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgjhgffgjgfjfgjfgjfgj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a8b56503564026729dd4a2999ecfb85007bd850bdd1b8b79c82a1e392a02e0a1", + "regex": "(?i)^https?\\:\\/\\/robux60kfor\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mveee1(?:\\?|$)" + }, + { + "hash": "9ca4c9683dafc96003f23e547b2bf02bb613fe4a8b6afdc529c62538a2782a5a", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a1843d3a0445a08b28486115d585d2e1f860abef5183290ebc95ee02b5779bdf", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ce7e8dd5ee31dc47dc60b44dddd9f8d0b92b5748f91fa1301e84903387a20149", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4952771ede29ea68db0b79afdd93c4f5abb7b67ea9354354e4f2c8d593192a6a", + "regex": "(?i)^https?\\:\\/\\/aaasdasghdasghdfasghd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f09b857f1c7c307020bf66a8f931167358e2a995260dea42270cf2984389ee62", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "153cbf1efcffb239f636bbcf276eb9f584da5c26543b1d4baa884797a6796486", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Url\\.html\\?ant\\=y5m4mybq$" + }, + { + "hash": "116f64b7339a1d98b5b8b9205e8dce7288d6dea358c784aa296969c5eb8295ca", + "regex": "(?i)^https?\\:\\/\\/dhdfhjfujfgjfgjkgfjfgjfgjgf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6e09f02efcaa12264f0f772a407219454bc8690007f7bd64dce06b96fbc54aaf", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "17b69f99d3cb65fd6fb3f847c9d763bc02f66c3126040fccf15344af980be9fb", + "regex": "(?i)^https?\\:\\/\\/54488654\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e4f3f8d5e87df530e34face973a9af277277794317a95a9b172704a71a6f2756", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f131daac2d74ea8319810f329d51f8cd033df25441d01403bea8c77655dcae33", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "be5228d20424e295cf23db5b648017c59302dfe7a8e16d6b985e833765f6d89f", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "bd98f3620dba4d9353a492d7843a4fba2401e85d23092a5cd9596e96b68926be", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c989c3f9bac48f9019d3d3f33b24cb7a5ea77ce72918072464d1f6bd8a900f14", + "regex": "(?i)^https?\\:\\/\\/jikhjkdasjhfdghasfdgahs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c889b09712f1e19a7782e0694971740174ad7e5e26343e223e2612009e1649bb", + "regex": "(?i)^https?\\:\\/\\/instagram0837\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3cc1f4d46866ff2b01c8a9d0fa867d64a3313e2f019c91c09500302c6acf1c23", + "regex": "(?i)^https?\\:\\/\\/kskdfkjshdnkfjs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4f3972fa1f3e9c66e26fa9b24d25b80c4b27b7c136dd88f3948e9a14dbb78fce", + "regex": "." + }, + { + "hash": "80698dfefeb7d16a9487ee36abebaa42f290e3167224ad15fdb6d9572da76416", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8c4533ab0237a3e8d33c028d6cf236108017e4902ab1fea3aa6d58d3e4a5337e", + "regex": "(?i)^https?\\:\\/\\/iuerfhfaioperuiodfjkgpuioerghiaerhi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8c3bd56a8f8c7774349ebb3a6e032ea4f9c0c602920febff7b7ad7ff9c18c349", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cb3570059d2a9def6de82915ebd1eac4049732e02185228c52952f8d6baca88e", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8bf104a1d52b844e8a51b92773f248e778e159117c09de08fdb285e58717f0e8", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "787b558e846eb7a13e0b01f9b1695a9a0b0c70fbb1018a9e9d28efee1cad4516", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b2ad7f3f2d691485f1803e77e6a6bc645af6096ee60ee8f0d9aa841a5667c5b5", + "regex": "." + }, + { + "hash": "6c709100903e873e06025d91b09fa9be7b16adeb41f753274f80600f3fff51a5", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2964a52b1a1cab6cc756a96229f106586b67053261dbaffa5329dea3054aa658", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7447994859cda4c7f802535b20c4423f27d46dbfdf9204a496a38d0d41f0cc31", + "regex": "(?i)^https?\\:\\/\\/jsdfhgbjdfhg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9094092add0b4212cf36062bbd1647ec268a783017ec482728dbb538b7bf0970", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a57019b02db758375844c865f50a6b226dab0b32e706fe745b46cb168e63a4da", + "regex": "(?i)^https?\\:\\/\\/dghfgjgfjgfjgfjfgfgffjjfgjfjgf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7129ff126f441b6648c6aadcf33cf57974be79514668630297b83a178b65dc63", + "regex": "(?i)^https?\\:\\/\\/kgjhfghasfdghasdfasghd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f895967b5b34e593d49cc0b923dcf00cfdf3a7ccd669a3393d5fe2de03f8ca4b", + "regex": "." + }, + { + "hash": "a4840e359608cb8f5fb05c18fdb400ff716d6b86f6251c3fc82d83443c56e74f", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "52eb35086cbf312b36d63dfbf73df1cec3821c7bb6e7bbbffbb66755bca4f2fa", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3e7d8ae31ed2f954fc08a8edee3d1f0286bb923ff934db20891c9ae7457d0053", + "regex": "(?i)^https?\\:\\/\\/iuerfhfaioperuiodfjkgpuioerghiaerhi\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0292404a0c307499220cfc4cbc299ac287bf0498356f140cb350235bda037483", + "regex": "(?i)^https?\\:\\/\\/dfgdfghdfhdffdhdfhhdfhfdhd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b14df1a2e6e6168649e99d8116e92b66a743717116ac9fd4c7a9edc0cc8276b3", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "72b5d28b33613299157832f95bd4ab454431b19feb3137128d5dc9dab1355c6c", + "regex": "(?i)^https?\\:\\/\\/dadasdas4a5d4as5d\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8af89039e9d349e24e6c628234b09084a966a08fca7669418813d58313a6eeca", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c43ddcb89ded7615075cf036fd37fde9ff61c454422852913354029c062112e9", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f113f0e0c421733272602c1e0f982e70f4f71897519d65eaa397bf8fdbebccb7", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d3870c9fb1dea1d0dc641fc97f088db4256a0de21b59b8c8d6ec3b84b2affb59", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a11d081cefb27c177b76e7989b8891d2dfcd0b0e8743e4c27931bc3fab221a20", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9012f21408d2ada5297ab4f46fdd777bbb1423958689ad40ed2384360efef338", + "regex": "(?i)^https?\\:\\/\\/sdfdksbfdfhjnds14252\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9c6a9201e7aed8b53f51d2dc86ab19161b416548ea21288c4af2b1ca8bd97561", + "regex": "(?i)^https?\\:\\/\\/dfgdfghdfhdffdhdfhhdfhfdhd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1272ce11789d034772bfa339c72fdd147a05d35bf8f51e6844383b3c349eaaa7", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ab9e2c2f2dcf82e77c2ec547036c28c42da61d888207e6301d8f486ea9301a6c", + "regex": "(?i)^https?\\:\\/\\/jshdfshdf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9a35474cbad1cf5b0788603378359db4686bacac03e556bd636edcbb2908c055", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "85fcf81bb6e83235307abc9f7fdca6b2bff04f91b4008f9badc7406f61185c28", + "regex": "(?i)^https?\\:\\/\\/54488654\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "db5e2d4f96d18d6a0afd1b8396c32be23bb26bffe0fcde1ce62e95c89cb38b44", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c93d78f7dbf194b491b56abe7981fb1f20ae29a1062817b36afbf7cb504e3180", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdfjgf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "89d57ed0d99879aafcb86bb4bb04df0e570fbfa3748da31bf54a77124c46980f", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "737b8d201b84a1ad1f6de98c54e9e5903d85dc5c2064847d5ab6d601a0efd1a5", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "14592eeb8b1a0b1c2594fcd835bc36eacf3ac00b0454c8e7883a887c560e1ed4", + "regex": "." + }, + { + "hash": "b16f5a71b8a23529c3d0c7f624946d76cf2f207dbe0a7f22d909c12cbcfa9648", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9e3e33310ff1abb9bfc0f967ae6630456d4c9c8d3778de15a896c7322530264f", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjfgjgfjfjgffgfjfjfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "10fc819046f176e84ffeb0a280b4c83c40f7ce711aeb245da7ea8ec824295d0b", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "960f601bce99e510fb6ce00b47c97ed714bcc794d1b48f91474e4477165490a8", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "da728924c47dda8d01323ab56b8555d2cd5aef96e2bd0334a56cde7f7d5ff23b", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "08907d2bf3180a71e49b149115bde0ad7e36e048fd2b57c188bad6cbd05f9a1b", + "regex": "(?i)^https?\\:\\/\\/lkjksjdkjfnskdf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fa8c16be4656d44c41b2a7f7284db8932911be8e2333e6a4baafca0f8c41c757", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "af07d000894cd1df2d631af56b64996b1f7eaa743b9281e2556cb128d1839b5d", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "017568317a61ae9ddf76817e07cd301e6166c9cc9ecae74dba36c746ff8f44e4", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8f889bd11d232ecfebcd7363326eba3717d519114c279a7d01fa7a85325ce2f1", + "regex": "." + }, + { + "hash": "ce48cd0a17903503bd8b333307fd9a52e7b11ded47d85b9b823b456d18511540", + "regex": "(?i)^https?\\:\\/\\/dfgdfghdfhdffdhdfhhdfhfdhd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bb944683ab009c979a65276502a9cee380dcaad9d84acbeb882ebf19a953b042", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c2f953f8a15e5c49912b75eeed437ebdf214a7454b04a0e01b418e48da71096e", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c3e0b95f31ac4c5f279b39c93135ad72ef15552b2d7b2881c930bad38c4d09ca", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdfjgf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4a99e8dbfdea296f95386cf7069644ae1f225128f7b2211f9c97b07972681754", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "81a97956e1a5014fac335900405c7f8e621d30372938aabf87780a242dd77a49", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "14d9475f0d061c7321c0580021c27fa5d1f1ca8aebb4b674ce3d69fcc8d6e380", + "regex": "(?i)^https?\\:\\/\\/lkjksjdkjfnskdf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0fb578b9d6ebf61ef40b3ca852abd22f473687b11cc13bc691567d906e3bf3f7", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "931da676145ffa5c03eea1cea4271d6ebda0dac1eedec2ab2333cae7978f3192", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "de796fe77070b0874e6217c1925038f715852e9a698776c756bd0b759892ef0b", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "23efd71071f227e3f175a0ccaf07548c323143747a85c46818f42f7a49895a15", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "36fda97b6e6ab81be65f73bf7b5d5a61ebf6bd6b199fce56994dda72d92dd3f9", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2422fea76aafd30f5ec96be5147fc6bac199ea6b7784cbcf5352eb7e28706b5a", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "69e6a239bc1825d2a4fcf61116967ad1c8d3840697288098183db68556fe8b07", + "regex": "(?i)^https?\\:\\/\\/robux40kswae\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "171a22d2e3b658ab45b6c39a2d2257090181b6f8e814594fbda42082ed8a096b", + "regex": "(?i)^https?\\:\\/\\/gsdfgsdfgsdbgfsdjfsd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?1aa45064\\-0965\\-415f\\-b1e8\\-a8a3e0db559f\\=\\&email\\=fishbowlio\\%40yahoo\\.com$" + }, + { + "hash": "792ab799c5be3b03524267ba490a88cb0ff719950b2670db13a1935925523cdd", + "regex": "(?i)^https?\\:\\/\\/beodaefaegae\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ebe1445733eda7e1d61647713aed08b2b7d3f947f22650a4fc8c3ca3163dcc5d", + "regex": "(?i)^https?\\:\\/\\/hfgjgfjghkjgkghkkghkgghkkg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "048c14b199db651873d29af193aab8a5441e0288294e052efdacf24a46b3f598", + "regex": "(?i)^https?\\:\\/\\/dghfgjgfjgfjgfjfgfgffjjfgjfjgf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0cd5318a79e3b77f2c4b8f5f8f1b4d768b7e9a7727bd9a0769544eb8468e12c5", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "20e81a32144df1b12ced78a40befa4e8a6cbd012d6ae8425bc767f235b9a14c6", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingprogtamadvance\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f0ad6cc600e47eb5d6b6df2334165b7d6e29658cee9e07a45d5851f2f385c4ec", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a1bbb05b262a365679bf3f190e83e258d3e20e6ed1638f5bad7001e10e3f4bdc", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "18a1c66fa3996f507a4925991b23d5f1ca3818bf4ce044e7747bffc11b8aa8a4", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "013df6d43bc9ce7492166f5e584cfedb86773d7b53582197ad629c338932bbbe", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "248cc680bad5f9620d9e379f24ed0a697aa996961484969ddfb50697f4a57631", + "regex": "(?i)^https?\\:\\/\\/rncoaemcatbaae\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b9e61d6745d9480b4f41ad2222d648004af98d304b0b083d85c1406e9b879737", + "regex": "(?i)^https?\\:\\/\\/ghjfgjfghjkghkghhkgkghg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ba58f8e8dae93badec6a5454f794dab586745d2bec07addfabc15994bd5bca34", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5c505cb8fae4982dafb8d14c9f269936a03227b5d6eca541cc2cde4570bb2b66", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "25c562108063ff2f43f53b329cdf4394e10806688ab5e43c7988ad3c101f9010", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "02793ec7d8da4542968a2eb2ad44e92630b0f39f5f3bcbf5bc084fedec79eca3", + "regex": "(?i)^https?\\:\\/\\/aaaashdgfasghdffasdghasf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "7af6904a62d31549eca4b6fa92534cc2bb7fafff25e046e4e8f2696dcc9e3204", + "regex": "(?i)^https?\\:\\/\\/fsdghdtfjfgjghfghfkjghkhghgk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mail293d185efb4437f9c640ab3457f7$" + }, + { + "hash": "56fdfcabfae38e29333309339d82ed063e162aaa286028d88b3afeaa3d3b5730", + "regex": "." + }, + { + "hash": "a1c7526bdd26ed51e522bafb0146972fcf3e2285280bed515bf906ca61675889", + "regex": "(?i)^https?\\:\\/\\/iuyerzuguqygyfgytfqeaaezaeydqiid\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5a3029d4822aff33a8abb3449d49f9a6351f443eb40cd573f339f50188a521af", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6e687f157e4ad961422ecd4d41445acdac34aab89ca8e46ff3fabcf6a419d19b", + "regex": "(?i)^https?\\:\\/\\/nyotcrot\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "46204ef2828a28a486ab705f696d69cb037401c871ee66763ffe311c096660e4", + "regex": "(?i)^https?\\:\\/\\/aaasdasudfasghdfasgdhs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6b13e8478bf2e234900d08d430a72d37ddc3457aec0cc10dd17f720b1ac5a904", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "661a4552fc813270b03493d9797c668d63171e55e58ab9ffa4cdfa876d5e063c", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f6a132a4d9d99275a6ee5978db65928391fb9789909e86d051167b9eac69c907", + "regex": "(?i)^https?\\:\\/\\/robux60kroix\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "05b4e25c82dc2e26f1d0df48959549d419046910d3df12f616696cf580cce553", + "regex": "(?i)^https?\\:\\/\\/iuyerzuguqygyfgytfqeaaezaeydqiid\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9cf89f463c64ccadfe251b63ad947d109e3cc37c89e67a9fd955fffc6c37ff52", + "regex": "(?i)^https?\\:\\/\\/aasdjkasgdjsfadghasfdghas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4e588da88f477598d70571a59de42958d8e983e3bff85e6ffa50e3db14448f16", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?4cc28dc8\\-8a2d\\-4020\\-84e5\\-fdff974cfa00\\=\\&email\\=schrimper\\%40yahoo\\.com$" + }, + { + "hash": "61326360748926f8268ba2e5bf4e9ca75db0acf57ab950b16400aa666595a7ef", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b4118b2d7c6c55077ed581996e72aa90227610d4db94e3c9290174a7b70eb4f8", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfjgfjfgjfgjgfgfjfgjfgj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5d210774a4c0b4f07f0df2511ca7bf45fee7f87d97cf69ad919233013f46581d", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3b0e0e5e17ff3fa77e142de8655189e3b541026c252a7b3d3d929958cdd8129d", + "regex": "(?i)^https?\\:\\/\\/activatesabbnet\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dd853599463fb59b0834ce46ffc7b98fd3778a7fb8b18b70c5583f121e9d9d65", + "regex": "(?i)^https?\\:\\/\\/lkjksjdkjfnskdf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cfdd82a2946404ea89014c97000fd082a26119571de8274abfe2314116cf5ccf", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8a7d5c94b293776e116b17fc79cca7a121323ce879470f042276a6fef96b9aa8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=alfpmge\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "2fd698f6d337d50dce9c3e58bef52b1f2813cf53a291651b08b1fe974ea196e6", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "729bd5338c41017c0320fc47b1e161e889d069859e27fd7054eb70d1fe07be52", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5b0d69549e51ba5c357e6165940083ed17a898cff5381a4f671a7b7b71a270f6", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "9490bc709ed61d46de4c5dfdf58edeb14ab94ad30151e31b486a7720eb43479e", + "regex": "(?i)^https?\\:\\/\\/ihksjdkfjnskd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "68629a51dc8c63d23a11b9a9617b55f5b2a902445e1945a7809301fa217b9d75", + "regex": "(?i)^https?\\:\\/\\/odfqpsiofzeuodfyqofuqzeufqio\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4c1754f2e5e1b23b8ce9c87840af17bf1ebe1103bf04e6103c6ea29a5ecea48a", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1b8fabeb8f5ed5f0741b1457f10d3be625f870c44a7b819b5d1fe25cc2fa9596", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ed4b3d63113719fdc7ac8cc9927dd2e4d57b886f04c7de2dc5081c02d339a78b", + "regex": "(?i)^https?\\:\\/\\/aasdasdfgsjhadfashdfasghd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c8abcab56ef769f60470fb71fc2f2b206d1621ccaf752c4b83fdf7e5d221bfcb", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "566a24b2fbcdc73c1e527a6d60cd9c2bae78ad02fd68a821ba4163a9ad76079e", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdjfgk\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9ca067608e75b43661948f53cfbb8de16b0ffe6f5db78ea793093a77f06c54b3", + "regex": "(?i)^https?\\:\\/\\/aaasdasd64qw4eq5w4we\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fad78f744cab3cb5acf7b51306f11832a908b953cfe7854ba44979eec2c52103", + "regex": "(?i)^https?\\:\\/\\/dfghfdhfdghjfgjfgjfggfjfjgf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8cb8ce4ba9ad3f386b32113c286c0e3c327f8fc04678a18c3694a1ae7dfb8e07", + "regex": "(?i)^https?\\:\\/\\/dfghfdhgfjfgjgfjgjfjfgjf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b7d4bc4859d6e8dae417fd490c712bab018254817e34c3cbad14d9c435d3fb9d", + "regex": "(?i)^https?\\:\\/\\/rncoaemcatbaae\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "313df433f22ad924249fda27def8e777e2bbd6bd44d5ff1267fbf1a6a1762413", + "regex": "(?i)^https?\\:\\/\\/jsdhfjhsdjfhd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6e977e4c51bdff7345a26453dd81afe13dd18fdc08dd4f12f546344cdfc88324", + "regex": "(?i)^https?\\:\\/\\/dfhgbvdhbhfdmxcm\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b9d4db24200af0a42689f1c7db18228b7aaa4227778ea5451c61754daf5ea6fb", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "80804f004aeb8cf74640c2b67efbb6647ad7e3037d2dc261fcd8511398386ecd", + "regex": "(?i)^https?\\:\\/\\/gayhotboy2021\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ca5f2ddafc20af29d78e6280ae307ff8f33582671a4f6916e6ebea31333c1146", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c25a5843e8c02e5d99677c40a809c4916a2d14934e75cf1096ef02d54bbb879d", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4c4329e933611a7b774dda4fd6ed4d910d6ed37da9b3d472700b543c791fcc90", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "879a78b3d08d246a2e6ec73af514a33dfcb64c6bc542b292c8e1270392fa0a87", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3e2d5871517e0f91313c7af8526902ee263d1fa13be5e15e93eb14ccc9cc7d23", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f10e374953c1ad7e29d8f0981155b3976e2fb4b8e9ea2b8d355f0e665e399fff", + "regex": "." + }, + { + "hash": "412d0ee2ef88cd67dcc0bf195d443351857e28aa3a8a572731f2e03ca69d1b15", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f5da671b643fbf6062f9b509d649011f07a0f68a2dc17933a43b8f1b00f3d02f", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f5aac39ff077d84ebcc2874f923f28dbb242c8d89f05cfbc9b924b05fa0056ca", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "68ece2183775697514526535c41e5535331c81c291fd96448e50f217bd0632df", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "89742994a2983abf1587df22f3439e632d3b85523930a2faad92369caf7fec4d", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2f278387919342d4f5c220a936813a908a5ba5129d47354b4245a673ecb356e9", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2948e319de22918b0ebe02d70959e4ba7e5ecef45783272e085c7f75ec96ee16", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2dffaeada0f6dbee3c5689e10dbe3026e2f852447265b0f2bed326fcd34c4d2d", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4f40455265ce4b4d6b7fa54cb48851694c8a502b784829bc433f7086ec73c2d0", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "05e5caa044fec671b727ac3cdadbd0ad653eaff2e45f45f70bf95fb33aca157e", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ac1470567b845defe9f88de1919716bfc7915fe164ccb77907978053d678cd59", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6f0661582bd7a8232c3ddfc2f2b1777812391e11133b511b7af1beba56f16956", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "83c480fc5256e7ed81043cecd92fa033ee6494b6af2d45f086448ded3fe1d212", + "regex": "(?i)^https?\\:\\/\\/zdgdfgdfgrgttretre\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2515507babfdc90e6418373ba317a5947a32d6bbdd893daa180f5fc85db46560", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a11f284fe8c0866a69c8c9cb670eabc25dc5a33926a0bee18f59d2541f679770", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3fb9afd955266bfbcdd2ce0e16247eec6da0d655bf691b206d5f83be8d6a2d39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9542b47bc3fd2945ee28a948b74cff55608d91ad02e72f5f736848cbcbe4764", + "regex": "(?i)^https?\\:\\/\\/aasdjkasgdjsfadghasfdghas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ca4bfc0d2316307f84f67e47aef2164339b491c191fb6089837a63388f9df92f", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8b94d4c7533fa8b814b7fbd5bd619cc2ab72fca7a88d0f42b64a8e91e3bf6413", + "regex": "(?i)^https?\\:\\/\\/att\\-upgrading\\-system\\-105319\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e56c7a5e4343e00c23a1ac59f4cd464aa65e530ad01aeea0568a3d5b40bdc180", + "regex": "(?i)^https?\\:\\/\\/moekxharegca\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2e256e3ed5d9adcca4c4782e8769a531e4b60c4ca351f979b99654de7280dad5", + "regex": "." + }, + { + "hash": "6283894ab6484a490f8d62ff0643e58a0e7ed5206f7c1492eff95f0e4d4c4865", + "regex": "(?i)^https?\\:\\/\\/dfghfdhfdghjfgjfgjfggfjfjgf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "87c8b4f1c9ab57e3615344d927a875fe4b471c13b95b2e5c46bfea56ace44df0", + "regex": "(?i)^https?\\:\\/\\/gsdfgsdfgsdbgfsdjfsd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7df5dfd5f08374e3f9873d5b2dcd2bf47bab4baf358b6d59cf51595790eb457d", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ece5fdad4323fe0b0d7c7be872246c6e62f298bdb09e78dc4c55ad9d327ce095", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0f71f319b9479acb1cce724432081b98922f135b0da168bf3502f23509a8371f", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4b8ec34bf8864fecea501af76e4b17b9fdf5108a0d2e673cdbb8d454b3ed47ef", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfdhfgjffgjgfjgjjfgjf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "73c0bef485578a461d0bda7802434e28057b75b5a2e427a8c008f1f52655a3e9", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "140eb83bc9d625eca7f7123a64baa8157193a8aa0bedef92c881af4cb1727190", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfghjfghjkghfkjhgkhgk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7bd1d3fc0ba3df6246ab472f357371c55a29d40c5edd2527eee9ee0440777078", + "regex": "(?i)^https?\\:\\/\\/gsdfgsdfgsdbgfsdjfsd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "21ce8e154877bfe80d308b4699b75a4518bffeb72576abe0e6c99ead3b422d45", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "528bffac11375b110fc6b61a4d9c1431fd34900e080fc8236ec5c2b390c97c27", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhfhhhdyreuhfgjfjgf\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2f2cbe45932378ae67e42d491e7541ab2d083476482f99462dcfdae9cf47ef77", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cecc66111a85afa0b4d69ef8e8fad3d03b4eb2681379b262fa1c10cefb4da886", + "regex": "(?i)^https?\\:\\/\\/iuyerzuguqygyfgytfqeaaezaeydqiid\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dfede7e2d6e5b4f6e358dd677aae304eb224c95c70fd9f154dda7ba5785d8768", + "regex": "(?i)^https?\\:\\/\\/aaasdasudfasghdfasgdhs\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dad668fb0e3d48dd3dfd4f6cf5bf8a86e22ae9fb41b5d737ba912026445ba59d", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "a19832e637f6fa0631db8aa6a96a2c09fc0ad83faac95b9e6a609f414f536d38", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "12d4e1df7df22967a051d46c3707f85abe2654d55887aebf9dcb69ae170f839a", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "da7227bbe424778ac43f35d50151eed12cbc04a55988b25ad016981eb354f66c", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d56e8c7f3578527cc39f2cd5237b7afc6fbc7ae468333d2ad9c83c73ca472c9f", + "regex": "(?i)^https?\\:\\/\\/hfgjgfjghkjgkghkkghkgghkkg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f001044d87fa30758dd0eb718863f7f85db19399e3b8dc048d44953062592893", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e8c94d4e0b64a38bada81ab87abebbf2126e46fb97f75f92da8bce3cedcd0189", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "69b17eb0c4ad0029f69b122242ee67c488611355126e8f63de6a383857e7448f", + "regex": "(?i)^https?\\:\\/\\/jsadnjsadnjkasdnjk12254899\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "27148fd934b7347699711f82e03adb8a3a3aa97408d3890fdf14db685dcc7dd6", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "09028d8a2d0d1705c1ceed6c92a7951c093568426eb99d8cfcbc611d5afe1f24", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "658c322bfd550049958f0f94a1dfcf6ce7fe1223be47f4f47743cf728c883730", + "regex": "(?i)^https?\\:\\/\\/bafybeib4chxz6erb2bpazusyla3x2a4yrvb4wcpzluae34kjb4jl6tyn7a\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "f17d330d1f28a1cdfc45f548b5a20b330c67296e9e767c2b220c4ebe49ed12a1", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8134e25c39fb5ecfd582631abc3c46fba29102a6f9d7dca6cd983f6f4de8a6ef", + "regex": "." + }, + { + "hash": "fc5e45d24f160ffffa5b6d2450585721b3b2bcedddd274de2eee8bd790d383ba", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bb438fdcc4d689dbf9537c2b3701e4f193e70efe67d27dd8c9af673e1b53bd39", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4a7cef9f701285105cc70ddedc407326c0472eed4f91d9b5103cc919b8eee7d7", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdhjfgjgfjgfjfgjfgjfgj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6751c3749d71ea3b26a6d1b0cf51beba4045f1d1378c6d4736f37bd4bbb75186", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "904d021442bea49ca8ca4cdd0fe1f822505b4688fe112ffb21770ad038e37061", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "52c652112688531eeb2d71db633431452cd5718d332fe1690b1d8fb9e146be02", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdghfasdghsa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b0a75fa3604cd5848b3203cd38eaef88129efc1a1ec9d0a543ef28d43e8d42fc", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cdee47d4f00411a08d5e169ee102a1bd8961d0791f1646a1322a88716e80ccd9", + "regex": "(?i)^https?\\:\\/\\/dfghfdhfdghjfgjfgjfggfjfjgf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3ba03842682972d87a8697b7aa27598790fe0e024e3a7aaceb66ac20c02c312e", + "regex": "(?i)^https?\\:\\/\\/12365489789\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "577d8ad893fcef80df1baa12486b9f23320d42935deb13e0aaab0e4b21f065ab", + "regex": "(?i)^https?\\:\\/\\/robux60kfuesc\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a1911e69d31f3b6aab1df34351e0475d2cb71fbdb7d7b9ff029b8e3118385246", + "regex": "(?i)^https?\\:\\/\\/nomeuxaneva\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "257cbeb04cf3e5659de2add5c374c4d68b48996fccf7a18219e580d2ab81efc5", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d5e402f26a09ff11cedba9651528057a6e24adb1d9e1eed424b09836d3a8c5c4", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1da85c727dbe1d14ff058a009d6efd19359823888df031398c3ad61dac1f58fd", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9fd8eb1759c3ebf0b502fa440d9b530b9b3194b9c4e1536958fa622619671840", + "regex": "(?i)^https?\\:\\/\\/robux60kroix\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "17cae2795261bf6e281fc47547e353fed08c50798c39123de72d1d04bff2ed43", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3f7fade9e91c8c524c0a4b7b76fae440aaa4fa69914cae01c08219d1245e6cbf", + "regex": "(?i)^https?\\:\\/\\/jsdhfjhsdjfhd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "295610a907f9a1282c8ce33b8261a700f71dd07bff2cb309470502d205d900a5", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "dd9bc30f8046935adf4be782a3e228bc385c3439cb8c9688421c09a159b08775", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdgasgwqefgqwfeq\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7534decf7b840d720b0f25717ed4539e4f781936e7eff926c33cf6db798f39ee", + "regex": "(?i)^https?\\:\\/\\/dfghfdhgfjfgjgfjgjfjfgjf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6a723843af2f0207ae877466f7ca467a23801b6eba99af9bb2ce648d4d3fd1ee", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e7869ab54c774e8ef1f3d5463350ccaeedf0b52547febe35836534cfbb3174bc", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "475b07fb9f6f6be1e091bcfa5154d6d6c1aff4171c6092a1167a52a447a13784", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3be5960175d2d5f5071ab55cc2fa462f2d0d20040ce498897ff80e659ec82d15", + "regex": "(?i)^https?\\:\\/\\/lsdkflskdsdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ec149d9d6198f7aa054c63a29f1fbcbdab9caf44ccc5744394ab842d28c0d2c4", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "11f552403bc7c644d803a763fc326cdc9261ebaaef7849ca0d4aea86fcbd7a52", + "regex": "(?i)^https?\\:\\/\\/hotreelonline\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "99f7eb9011d6e804d4daa39628c3777f58788eb771764d8f2eb35313fac237e7", + "regex": "(?i)^https?\\:\\/\\/card4uu\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "51b8aa0620d02f70c05273faae6711e6547eadc096825680fd39323cc0df7b9a", + "regex": "(?i)^https?\\:\\/\\/activatesabbnet\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e8fbe7e7f9088b0bd0d7051bd89f946fafa759fab36e787afb88f9863ef0030d", + "regex": "(?i)^https?\\:\\/\\/dfyhrtuytigkghkytuikghkj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "960fba0acddf042b58d8bab1ac11385c78bedb15938fc25f05cc2a9969548971", + "regex": "(?i)^https?\\:\\/\\/aashdasjhgdasjhdgajhsda\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "314481ef3136aa125bd8ad8dbcc4edf110529da01af8bb054252337cc9545a51", + "regex": "(?i)^https?\\:\\/\\/325348\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "845d7f72becab35f7253253d4c141600a57ea451a46fa99a1729605226203e63", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "99b35f17aba845004331cf434ef9dd349ee727bc7312dabc25f60e9b9198893c", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "68a3eff1629ced87acdabbd0e0ef2637cb29769647691b3c287e39f61c185b2c", + "regex": "(?i)^https?\\:\\/\\/fgfjgfjfggfjgfjfjjfgjjfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "145b0d2e1f7314ad369287d87c3190e8d2343ba3a7760515f3a16b63ba55693b", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6afa9b2c500840b01c7f51268ee739e58e763abba936e9874cfa667429115a3b", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4756a839d99a5a29e8148c83fbcee502e55e1144dcc596eb80e8d5974dda66ca", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "788d5343c96f699e07834b41e48482fc523d7c971ed08e7b369d2376716c7fbe", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "10dbdc2ae12dbf2b11800e7c679cad20e14fe09d700fe23f958ca1106043e6e4", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ee5360beca93a40e31632dd5b9d7ed3460533fbff5a43ff3a299a48bb47e2415", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7a37672fe853e6ed8ad6ce1eefaff05203ad9dda2affe99532032065c990e113", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "974e0123b6ed55e34c4f1bf214c50bfd8c9ca41e065cdae29542ceb603fa88ec", + "regex": "(?i)^https?\\:\\/\\/jikhjkdasjhfdghasfdgahs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f32048a7603e0db700a8df2708957427e7d9a662e2642b4fb611e9c8a7c88005", + "regex": "(?i)^https?\\:\\/\\/beodaefaegae\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0b2727313c1884fdc6655ad55121b9f234af254fdf6df1dafa5188e6316585e0", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "afa1ffa19123ba116b6bcd781f7361ea069478182ca48ef1322b7ae6846e8b10", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5474d6945fbfa78320cf86d88df89ba574ddbdfd628a3ae6406cbc486cba8758", + "regex": "(?i)^https?\\:\\/\\/jsdfhgbjdfhg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7fddc55eeebef4e8abd7b8fb467dbc79ebcbec53f7f3e2a38cccee3878581cb5", + "regex": "(?i)^https?\\:\\/\\/aasdasjhdfasjdfas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3efa48e78d2a01aa91748f870e8d9623763918b14ae4ce199ffd2efb6418d544", + "regex": "(?i)^https?\\:\\/\\/lsdkflskdsdf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b590b04a3427df78027135ce51e48e06c8ecbac7bcf3d51d07be4ff931ff76f3", + "regex": "(?i)^https?\\:\\/\\/robux40kfifu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0de6e473fee1bbe44150257aaf38bb7fefa238bcc5f9c8247cf626cc11e78a75", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "049642251e86f41480a87f2095f4f889010f9d6e8cf8d7281528251a8ecfeb04", + "regex": "(?i)^https?\\:\\/\\/card4uu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5b126cf1d5c6363af01e5682b7d702df4db762f75b0b250a67429734d3e6d2b7", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d6fb6a51a5227d0a627912b047147ebb155f7d4ded9336883985d3dd1e84d62b", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhdfhjgfjfgjfgjfjfjgf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2bc2903849bcfeeb7968c6a3f405c5b158c90f6cd1026311bcef6a3e4c034946", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "622084afb15e72123b1a1845eca19976bfce070b34ec62c53631bed87c2c632d", + "regex": "(?i)^https?\\:\\/\\/sghdfututrujfgjjutrujufjfggh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0c8e96b9727f3e1faa3a9a1d394f21431091824c4e452de51f853d3300743783", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3e316be11c551ec9eafdc2b98e2d0314cb51d41970ff70c625fc0f7305755c5c", + "regex": "(?i)^https?\\:\\/\\/kskdfkjshdnkfjs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a7b207c37cf39cd88058dda92cd9739635e2e7482d01589a4ed890955058dc96", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "060a20be3eb0c7e79d872adc01a22a5f30981feea7a0a07adfe5e70d86d772a7", + "regex": "(?i)^https?\\:\\/\\/zoieurfipzeufqipeufyhezoufheartfa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "390c41aad108364da1c4358d7ddb09fc4d3bae47b96a7a2d47d457f22af844df", + "regex": "." + }, + { + "hash": "b7b16ed9150183d3a3b1bc06bad4c467c995020446bdc44ff3300e580f397e58", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfhjfjfgjjgfjgfj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8133b5fa7793e94b7765151903595d5becfce6fee638c1ef96da9d680ba26589", + "regex": "(?i)^https?\\:\\/\\/jhkghjfdghasfdasghfdaghsd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "09447edd561f06635a435daecf0c28d8eb416dfcd3ec7f6c6dd2f4c47b494090", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=egmmdr\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "3adff8c947c7b230d682579365a47e0eac7e5fec36f4156de9d7e560effcdbca", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupdsf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c0a0d380c778d6b945e423fd3a2690fadacbc1dab0ce6aa7a1d22f1e2f017f64", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3c2b6fd4f95d403d4951648ecb68d11af093cf564e7774f0ad07c95b5710e565", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "22abece1c01dc7977289ecebc1f9199e2ac6fc44ca5a719d12bd79f979fd6784", + "regex": "(?i)^https?\\:\\/\\/noekxaeaeaxcetra\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "61bb31a32595c3b3cd6be6d124d9aa4b3fa976cb4e58e7d121eafcf929f89c5d", + "regex": "." + }, + { + "hash": "427c77364d7dd52ccee03c83bb8c2e829def7d88251be019393c7e040a2f08a4", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b62e49e32a9873f1e4b0494251b68db6e539cee3bb04956373de56b2ef8cc1f0", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8f69c23238b984546bf8a9f62650fe4b1f1161979fea3620413c96a8de1b2bf5", + "regex": "(?i)^https?\\:\\/\\/dghfgjgfjgfjgfjfgfgffjjfgjfjgf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7dda5da0e43b2e71e9df802ffe9edafd791293b54f541cc96e3ef84260258c4b", + "regex": "(?i)^https?\\:\\/\\/robux60kfuesc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f97bd117a8d218227dfe0e161f7905d3dd2d8ca460050b17ff4c00623c244735", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "72892e7bdcc1b6e0378770496a2e590c3ba9b4d361aec5bbe09b3dc0c26103a2", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "304bb71190cf0014feeb4a75486cdf463e175f74b19898a5fa0ab77b2cdda0ee", + "regex": "(?i)^https?\\:\\/\\/freepaleestine1\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b0416bf2b16d66a93752b481595baaff1bf50550abda9a1387f8303e4e80afe7", + "regex": "(?i)^https?\\:\\/\\/dfhgbvdhbhfdmxcm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bc0de3ce2aa9dbf4a6fc5514c6c78e64503478ea88e3b022403b6baab231949e", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjfgjgfjfjgffgfjfjfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6115a671c5632e3189e42951a785e5b377e8f892150ef26a186c4108f0da12e6", + "regex": "(?i)^https?\\:\\/\\/sdfdksbfdfhjnds14252\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "09c9bcfebe790757964f80142b9b1b1269d41321d0ae2b52dfc9e0b4ed0df292", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c831d8cd96f32babcccefd38a10b2b6bbb2f9fd8d72be9ad3c117295015883a6", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a872796da4a0c021708e6141d6b98f6952df1b3cfb0f9deb53f417f6419f27c9", + "regex": "(?i)^https?\\:\\/\\/fgfjgfjfggfjgfjfjjfgjjfg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c817481b5b4ab4e4f8d70a985b96e7497712ea4e0fdf6074ebd20fb00ed0f269", + "regex": "(?i)^https?\\:\\/\\/isuhfkjsdf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "869d9e3ee649cb894ecadd4bf2b09daa6b83612279bce7efca4bdd6e72fb8f74", + "regex": "(?i)^https?\\:\\/\\/servientrega\\-fkc\\.click(?:\\:(?:80|443))?[\\/\\\\]+com(?:\\?|$)" + }, + { + "hash": "2c13508a08ca55bab6e5906d2b8782e929e831fe1361909e4125e6cad80e721f", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdfjgf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2d371f6d7c32fb7f75309cc1257cd0a0313eb22116391bba7dd5e2e7185718c9", + "regex": "(?i)^https?\\:\\/\\/dfhhdhhjfgfgjfjjfgfjfj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9fbc678e80c469429bba30570f5a51a203d5ff827c6c88c0e9a05ffc7da3e9f6", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b42a3789738d651e2cf4d902262d9baf1f551e072c77f3d9a3fee37af1b31391", + "regex": "(?i)^https?\\:\\/\\/aasdfasghdfasghdfas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "47db62b7bc1336ee1f8810bd8dd9dcaca4a07ee9d6e2d51408cd0d70fab34692", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "78aec97267432cfbda7d3e9b90563286f13723d20934e7d2e40371fbc5d9e1b7", + "regex": "(?i)^https?\\:\\/\\/robux40ksbvw\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d414fc3b8c49eaa3b3e56ec79f3af85b967c5a0912fa37cfe6cfbbb80a12ba80", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f07f60d9b25326c40907caa1d89fb1688475d341291c4e5a40262ec0c3ace2e7", + "regex": "(?i)^https?\\:\\/\\/arcticglowcandleco9\\.godaddysites\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dade01f91f5d315f064edeccfb4f0b72b3694aacbf54fb20c52f413d08e05efb", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9a02d8d2a9588cd2fcf9d34f5b5c3fd2c8f82a256800783be48cc551e0b9648b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mailc7d1f0b86cbcd972f04745f73408$" + }, + { + "hash": "551e43dbba8b28fe4ebb362b45cb861c1a67fe88360fd0dd52d357e672199631", + "regex": "(?i)^https?\\:\\/\\/rncoaemcatbaae\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "21f77c8cb9de91dedbb843398b4449753d3ef15ac43ff8aa8b14958c2f896768", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "91450a2df97c17ca9a7804e55dc324f8e306ea42b42afacd85b87b4e26eed29d", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a42e54a0059b77fb7a40e59f5ad01c9cac6469c2f89c330036ab8fb48570fac9", + "regex": "(?i)^https?\\:\\/\\/dfgdfghdfhdffdhdfhhdfhfdhd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7ac5b452934fdf9975dcd75d58721359e50bd1bc997ab4584780a166974d841e", + "regex": "(?i)^https?\\:\\/\\/isuhfkjsdf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1b7ccb263a69105371380bbbd9c4ec0fe030555131eb8122e9b09ad74e98d8b5", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2ccdc611786e6f3ed4b87038f974d019a494e619af3ed37657135e6b33064fcc", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "004c80f73e10bc372d97408ed4c35bdb81aef7116cf8635bb20f9d8a85fc4d75", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f2273b42bb7d52700c58038b7beb3ea19d8c0155dd1c12da6049f60ac4aa8fcf", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8d231f181ab4c4269884cba532d5ba115613e3a800b163265237ffb39ac3f83f", + "regex": "(?i)^https?\\:\\/\\/robux60kfor\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2f7c96da9ffcff254e5641c5a27324f11a434f9dad954e2ef6bd6d2f2e87bc2d", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6f59ea9688d21f3e7847fdc577b4576c73ad69d80d2f6c787eabdacca582b7c5", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdgasgwqefgqwfeq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ad1bdd63680b87ff8e05624b8e8039f4eabc3627f76b7abadeed2e5fd007961b", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0e4b6c6483de9496f376ac9ee187c7d0a3b8b8a158186a856619b6184df8c08d", + "regex": "(?i)^https?\\:\\/\\/kghgdhasjgdhasfdasghda\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dd7d7402aed5c403e78020124eeb2e04105061cd819a44a3e1ab152afd3442fa", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "574af2aa40b65f5c11a4a996ab99822a4cbd5d9cae38590c483f319ae0da1143", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f7760a0a7a593f016c428ee32d22a25fa798a65cebb6d1fd33588680e9d7b00d", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c5c68b5031e6faf41fb7468b59dc1ed886cc6e2d23b76aca15691f86ec6279f7", + "regex": "(?i)^https?\\:\\/\\/sdfdksbfdfhjnds14252\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4d0b3b335f1df7e4cceb98b9dedb1e8df6978865ff7c0f48c12394935c566912", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "172e17762500e984383dd9e9330b09eb90f86e8d4c5db09a73fb318c63419523", + "regex": "(?i)^https?\\:\\/\\/robux40kswae\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b8a35a64f11916038e543f7b9dba1a17196cfabc2731dbef8955e63dc067c0c5", + "regex": "(?i)^https?\\:\\/\\/bgzxahagdhjasfdags\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6c55163f1b701ffae01d54bed2a97ec049686435205be20ea7f2e0e98d1461f3", + "regex": "(?i)^https?\\:\\/\\/aaasdasdlkwqeh21\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "348c8b945e5a7f5ca54121ededee08480ed0f42b8166cf109f4632287bd847b7", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgjhgffgjgfjfgjfgjfgj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7924dbfcf5bf23bd03507aa3e92734c7f46ef7f0906f1c8f92fee4527a06a3c0", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "386c2f2bb91500c3768439a88144960d91cfdef810a69336406fbca4108fd19d", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "913b1ce6a2db0aa5206472c2a6578fc79913b1238f0c343d565c20106c204a63", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "51f2b857196940140c2dfed699c905cec40db59b32335872aaee7ccb056dac6c", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "435e5b63458edc6782d609c77d55efc39866d0098f2d8d7568638d679779512d", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f8f947b1b0c6d0d0612a693d970604eabe6e7a1574ac6d64ef8b0a8ebf3269db", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4088def26e1e24d72d4102e19d16073a855dd0622e679dfd9fca3b6b74b60a6f", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1305c8e5ef5332f81fb3caac2836c5d388981cdac7050493b42dc5621bbf9fac", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "10fc78cef864b8bdb659e0f1680f3b7b25e2e0ba5f69820a9b8238664027de7e", + "regex": "(?i)^https?\\:\\/\\/robux60kfuesc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "30c9d0e4e4d340961c2dca04a54f04287df6a4018cabe4da543fb2a5c606ba3a", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e60e316ebe8bbbd7210e8bda42ca222bbc1101ff77f37aa3aafa0135d503890c", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "25d76b24cbed59e275331d4e4bb9113e58829be5ebd9bfae894cef63e89816ce", + "regex": "(?i)^https?\\:\\/\\/aaasdasdlkwqeh21\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "19bd88bda3fe0361bfbe36375f0f27ba2e97d39d33dc53651140882e74d17efb", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjfgjgfjfjgffgfjfjfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "235722be7dc28ff2176de8fbb367650ea8136d88cf7a0b1952c42cd5e2ba2059", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "876c5c657117f770a7f2e8d7fc08b04870e529889eec6c3e167eec391c7b6394", + "regex": "(?i)^https?\\:\\/\\/instagramloginaccount01010638357\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c8e436f36226aecebebc16075713dee2e27cb8ea79a8d8db9244d635d9956acc", + "regex": "(?i)^https?\\:\\/\\/hotreelonline\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d9281d610e15be9e8a9684b0515914527910ed5782e906ee48e64f07026a810c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=7202942\\&page\\=001$" + }, + { + "hash": "abbcb79fb6c7e855b35171acba96601cc1c3b81dcb5a75695ff4bfebde3b522e", + "regex": "." + }, + { + "hash": "09812e93740c352b22f2f9d3a6cbfd7cfe519056b7ebd7f491f4bc1917737ccc", + "regex": "(?i)^https?\\:\\/\\/6587465465\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "525703578341d72398afb22f5d59fae01df8592502c67df44b5f1745a032ad2f", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ffd1b63ffa3ada1cdb1cf6559c51e834ba90652c52c3cce91411afe656923989", + "regex": "(?i)^https?\\:\\/\\/ghgfjfgjfgjgfgjgfffgj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2147dd83ee915e6e0e420f439734660bf85815b1d9c81db553a5d1bc5e8599c2", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b3c4cb68cf058e3228e022880b6eafa5a392a74f9506d65c0fe22fca10029dd5", + "regex": "(?i)^https?\\:\\/\\/hfgjgfjghkjgkghkkghkgghkkg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "049cd024211d33adf6fb602973989df3c652740e3b10cfb58e8db546b3dbbff2", + "regex": "." + }, + { + "hash": "869d9e3ee649cb894ecadd4bf2b09daa6b83612279bce7efca4bdd6e72fb8f74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+com(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eeac45e401aa99cbe7083a8639f2f94b2074b20af54ba9ed4e5f926c9d3056cc", + "regex": "(?i)^https?\\:\\/\\/zdgdfgdfgrgttretre\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "77fff53af43286cdbb562aa9625c5c76b8a943a6a878e387a524397252f84084", + "regex": "(?i)^https?\\:\\/\\/ableh\\-com\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2a7df38568a7ec6c9fabc5ef5b344f0e43f3877cbb0774243b91a61de1b7bdd7", + "regex": "(?i)^https?\\:\\/\\/dfyhrtuytigkghkytuikghkj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7c068c64ef7750567f849b40b2545ad3117824c2f2f71cc38c78aefd52df7dbe", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3404164bc7073d5ad16ee458f874c063e85c2d68cb75fa0f199631380bbdaadf", + "regex": "(?i)^https?\\:\\/\\/sdfdksbfdfhjnds14252\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9b6280378630253ea1480125d4506d7228dec3d4b7157a07f47d7cbac4a09fbe", + "regex": "(?i)^https?\\:\\/\\/iuerfhfaioperuiodfjkgpuioerghiaerhi\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "65e7d2e0d748c2f51e5cffb4707b882087c15ea1c38a848f44f1c2418dbaf098", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ce16df179e025c802fed760fc2de51e57f230421c3142e7b3999705a2888832c", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2939cb62f2de27e6a3f72cf62702f4cdd176ee1aa32b54f8ae175310aa8e444e", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ae2d0015bb08f365751fd2c5b81a85f9bfe95b86820bd05ea7e607bf30bfc253", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c5a4fd3faf8e152494f8be54767ace156d3ecb5624ec4ebc62f2a76c288847e5", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ee0cdb9634a54f3f2cfce83aa851361af6db66fcae2848845878ae549b4c7020", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "814335185ca4a5b306ab33cd974a1c12ec06e1944eb6d0c1e0f4db0e533fe85a", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c77a824e47371af12a14ee0e43ae26989802a12f6583f9aa5896d03644f97deb", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "465cb0dd1454913ab1536d3f17434afeff2d1a7b8b6cb029567a40f48e27f028", + "regex": "." + }, + { + "hash": "8e225d02d222867b88ea818da7439edc69e91f5db3192d540bee8d9aa2b634e8", + "regex": "(?i)^https?\\:\\/\\/robux40kdwb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4976d6caae431c961a399c15be0144bd23dd2d83d86f35bada69abbcf917bbf8", + "regex": "(?i)^https?\\:\\/\\/kingmancoolboyeqatzfj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4ec9663d0a06c0e4f7132c545a3426180b2c9ab06db2245206e2dce9980aca98", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7b87ad567f65fa7bc2a6018134010631c2c91dc3e1a3bbb836a30f625babacc6", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e96dd139782af5e220aaff51ae8ea7e4d351debd8acd78fef5e75533adc62da9", + "regex": "(?i)^https?\\:\\/\\/dfyhrtuytigkghkytuikghkj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ebdc63408a29dadcd2441474a011501745ba4c4871c714ea0e98bc92841a651a", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2b6a56dccf04cbf62af178842e82f616220a6ca3a4ae51ab6af15a538225aecc", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e41f970d11a5508c35542b28ebb1c154067ee9246a0e1c9ff641250fa4d4f90a", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "32b157c8d4a9609e164ba441af2045858360bb5912353e64bcea6d1ccc785afd", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0f01037478f0e0fcbe5ac712b85b052992e0efe2839cb8a9be58114796c6b576", + "regex": "(?i)^https?\\:\\/\\/robux40kdwb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fb9f6b0bc253a39cfdea4fe214cd74eb7b4e1b645f9f739e040d77afa0c7dc3b", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d74240ef9179a7191d78ce513e97874a86380672ffd75517f078892ac4ed193e", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8bfb8b49955bed089fd4a6104b09dfbbf2590a950826344e753d21dfe3af8560", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5bedfc3fc462b38f00786fbca743164d87df15d29a9cac773e6c859e80508a8b", + "regex": "(?i)^https?\\:\\/\\/kgjhfghasfdghasdfasghd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "77d93773565c6e1caae49de73d1fb024bc756936419ac2da5e24899ea84f3038", + "regex": "(?i)^https?\\:\\/\\/iuyerzuguqygyfgytfqeaaezaeydqiid\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "06b54fc3a9b80c7beb8131fab13f092e191b79f7233e218e00900f4e32584ed7", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhgdfyhfdhdfhfhdfhdf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6eba10b9fcacb6f935a4176f238b5937bd29f49238f2d4ef9c727dd3594e2e91", + "regex": "(?i)^https?\\:\\/\\/ggfasdhahsdfasghdfghas\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e79bab1f33f17d107ef9d910d1952724f4f2785d910e390dad55753de6f30cee", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1f557e213920b42e7730bd286c8819a0c92e33aa31305fb7404505503282edbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rastrear" + }, + { + "hash": "3bf0e0fde8f229da66fa98e062076a83bc159e556927c68444027f4e4e3860a4", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ebf261b6a6106205aa1b561c392380fb285565e579ec4423432aacb7ea471aeb", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "230623a1d27c99c0d96d3946da0153bbc078af52f0bef0a08eb522b3ba0acde5", + "regex": "." + }, + { + "hash": "6d591bc33e02af9bbe983776086f2ac2912e430815f84910179f6deec9ca008a", + "regex": "(?i)^https?\\:\\/\\/kskdfkjshdnkfjs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "02da7ea2aaed75f7bd99400632abfec7ccaf3a614a65f9dba1128f7102238162", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4ba4006156abf4beae53a168bc6ece299c5a6aa268cf2676cd88c6f66d93a9cf", + "regex": "(?i)^https?\\:\\/\\/dhdfhjfujfgjfgjkgfjfgjfgjgf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "361e9a13ee133af7231d50e3dd1c002f33241c0c45f89bd37d40fc336659250b", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfdhfgjffgjgfjgjjfgjf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "18745cb1938bb95d141b1bae88a425e5c676b754bacf9e98a93fe0f85a6eaafe", + "regex": "(?i)^https?\\:\\/\\/dfhgbvdhbhfdmxcm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8ebd46f816aa1d0e42c6f2e078c8644e7c2cf4775f7e76ee151308e1da44cd7e", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3c0aafe6282599f67a49dfc2b388ab92651239bbc4629ff07d797c549f19aec4", + "regex": "." + }, + { + "hash": "faa0c607a96760706a06bd56ace7d8e8918854eb7ea145aacae86c6b42646bd0", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupdsf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "07f459a40dd8f4b432f0e7f5b630d4276fb385f22d12bc3d62cf647b4bfc0287", + "regex": "(?i)^https?\\:\\/\\/aaasdasd57f5sd7f5\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2d901dcac04c9ce9043dde99817ae0365ab16dd05777c68cb435febc1cbe1cd3", + "regex": "(?i)^https?\\:\\/\\/instagram0837\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eb9dce498ff692f6e79ec57420dcb34e75f023391476b18f856501c65422c6f3", + "regex": "(?i)^https?\\:\\/\\/renewnetfiixcs\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a32c2356d04eab0e7ffb0656972b46b39a9ad2570509be16506696ba2600a852", + "regex": "(?i)^https?\\:\\/\\/hdfbgjjkdfjkl11\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "47958f8e725e2765b6c8c33555d65bf73cc2d0d14f42e9bc7bd3ca2973563d2e", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7e26a2f5a85dc4faa0daf2a179b70425c74d0b8932e7af7a600d8f3ad6b58030", + "regex": "(?i)^https?\\:\\/\\/mkeoxanrucatga\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3e15a8cf66d16254854166dff91c0e0cccdd05210c618495a32bcbc67f249ebe", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cecc141356e73c13578d1e8de6f576e5d241bc0aea21d419231399afcfeca681", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3cb371ce9bd5740bc75e566d5205dbba53f66e6f58fe0ae5a01cda3b347e5148", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "08a5982fad46aaaa9b26150b326254a9bf13d9e165276424bcd7d9e22b01c4f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\@[\\/\\\\]+track[\\/\\\\]+email\\?next_url\\=https\\%3A\\%2F\\%2Fqrco\\.de\\%2Fbfcaki\\&sig\\=5380b73cf902ec58272919631c2acb91af0958299fb03b723ddc06251662b8f2\\&link_index\\=0\\&email_id\\=11332901\\&v\\=1\\&recipient_email\\=aleighsmith\\@schenckprocess\\.com\\.au\\&client_contact_id\\=7202148$" + }, + { + "hash": "04640cf581a5ac74e4866f7a4ad80d88d2cf20a09295ea807d81c392fc641e1d", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7bea2d3a04a35a1c170e19033616b6b97db958de1f59752e479a672e4c0d2207", + "regex": "(?i)^https?\\:\\/\\/iuyerzuguqygyfgytfqeaaezaeydqiid\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4495a899b8cd202946df6c74f2eae7923dfff28e51b14af698dd599492ce1c7c", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1801f3d12e83ed3afe960da64700e6e11da4e80e14166cc4ae39f26d1870fe41", + "regex": "(?i)^https?\\:\\/\\/oiuosidjkfjskd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7c6004dce17a8bf7cf64814c56fc490d55e8d02b419215ef92229271a9fc6fbb", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f5d3278d1d0c228fc031a067e45d7cac013fad0ba552ea2a7ec3aef4ba55fc89", + "regex": "(?i)^https?\\:\\/\\/robux60kroix\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "41f7007eb02822bfb97b811aac38704ba52e42ffbfbd00b7dcedac748df2dc60", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dcba6b95eadba860f079bc50bac603eaf9ec19110a509470683c691bd16ac732", + "regex": "." + }, + { + "hash": "ae0164c34a0d2ff4eeed05fe74ba437b56293c5bb3198c5e13777ed9d2eff3e4", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a965a6f31b103aa7ea00090e5e9d85a0e442d28d6260024ef4298a5eb9ae1ffd", + "regex": "(?i)^https?\\:\\/\\/jhkghjfdghasfdasghfdaghsd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "09d1353331acab5cd17eab30cdf5b1746c94e2fc563a3f0b63ceae1a9ee01ecc", + "regex": "(?i)^https?\\:\\/\\/zdgdfgdfgrgttretre\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "629a78aa1331ccbfd121139215f308be9414bdbc13059176e79c85b767156223", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "970fbfbbad7510d4ca02a37c084815af19157ea5d44bf180e2a98a1b13200973", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "67b459408df4f14235cedf0d512eef184c172b1c4c9df1ea7f398fa2d61bf819", + "regex": "(?i)^https?\\:\\/\\/mpliy\\-lo\\-xtgsuj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "793e3c74943202e13494195296c9a7895912c92ec6c80efc11791ef867e62426", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1459935742dd89604f9082ff450b9ad1d9142d214676b408fb04f2fb393d9197", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c5a3c664c15ba551de0b6482c7a2def95bea36b7961c4293b2b4b2bf0e12d597", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "45785bde26429ae27df4522fd5675620bbd32517ef8e1aacc2adbefd3bbab6f7", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "596596ebf9093618da783542c1e8ca099e07d6690ba5ce3b5cbf12faa0a5741d", + "regex": "(?i)^https?\\:\\/\\/jfsdgkdfj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "09e24c9dd27383dbd526b6f9726f860b02afda91a774cc477655eaf95bdc99fd", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8974b04010d8cd3e722e8fc848538654424f0629f6a48489870686dbe1565014", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6c0e2239c4b4ddd44c99d55c8841e7d8d21777bf8a53d2c3188847aa89c2d17b", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3c96d9dd87bd5e71094699731a824038d2e1ad3109fc47425ee6ef43adbe56a4", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "dd23d334e82f9366f5dddf8f02cb3d776a32a5cdc59d86c61477b7682b831075", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a39c77dfdc590baa4a3dcf79cd0181d3393d258a253c9e75b128fa2a48effe40", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4802e7a957825177aad328d054579ec03dd3d3dc6dd03cdee35115d172fb3b2c", + "regex": "." + }, + { + "hash": "bb25c84b3825aa65d8c444782ec9d586f11d0510f2fd6b2913ebf751129330e5", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5b12612223d3f7bf353378adac611b520e3e88614219200cc5af02e591d4bcbc", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f0012131bbc9551f957c56df4663ce862457e96db484ff006ffb237cbeccf769", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "69b142bb6c560a8598bac2871f8ffb9e24bd1d197c15973436179fee84eb9c9b", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d6246fca4b92339caa44f3a0ca300d8365bd1195fb408b2a1c7427ade479c616", + "regex": "(?i)^https?\\:\\/\\/isuhfkjsdf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "46a7590c4d30b38e029977547ced139b67f4d21cf702b90a5d3785e4245d33e3", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "640bf95d9231da2892ae4d345b8cf85990c47a40903d113ce6df7ed8088c49e3", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f49a54ce49a2aca873b42b49a84bc1325f0501645957a882e60bb054d9aa30e5", + "regex": "(?i)^https?\\:\\/\\/robux40kdwb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c0469f13766846bb418482b4b2ac3131a0fad136bde2c073e3270a4abbb2e817", + "regex": "(?i)^https?\\:\\/\\/dfhgfjhfgjgfjgfjgfjfj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "327e8edf705d4a2587bb0b686feee6b56a8325d1a5d3b2e8ea6bdf0df3e8ddb3", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5943574a02301f7c83591a74ba3c0f54d730cbe5755d3df55e847996d14f2a60", + "regex": "(?i)^https?\\:\\/\\/ggfasdhahsdfasghdfghas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d7175e8f6424c6dd9361260f6afa9a3c230823380fd0084855152a09bd81cb8d", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cecca1f5d57a1897003ad071671075c4609b2c7ee076410caffda4ebe315ef11", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ebfa02dcfc449316557338d81f8a17941261e07ac6fbe665388d09e0b35507f5", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "da12aec8b5c74f98699627a5b9aa3d5b5b19027db787d92c81c56c8a8ad22e56", + "regex": "(?i)^https?\\:\\/\\/[^\\?\\/\\\\\\#\\@]+(?:\\:(?:80|443))?[\\/\\\\]+home1\\.html(?:\\?|$)" + }, + { + "hash": "078570623307ad1bc29a8128f6953e00ff04d512a5595ebdf6443186560594ed", + "regex": "(?i)^https?\\:\\/\\/noekxarcexauia\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eece85b3159b3e73cb3ebaf19c08bd3b20f627e138a137d01e34f45e59db4108", + "regex": "(?i)^https?\\:\\/\\/skdfjgdkjfgk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4b8ee33ecf0dc63090c882c4b3768afe833eeaa690f9bdd2cbbbf413bf71e522", + "regex": "(?i)^https?\\:\\/\\/instagram0837\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6cf237684b0e3c200f8575a6427b8994b8e18e4ec0140ffe05b9d8c2c437d50a", + "regex": "." + }, + { + "hash": "bccdf3e25b9dd135e7eb4e18f9ff93b168d613c523ae2fc45088671ab8c79fd3", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "460dfb271e425ec8cb44d0f41526f508eee701b050c3d11b1bfe3dbdd3c3d486", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "22635722765fd935e0776c36de31dccc283db4f747add555d585e3af3c0626d1", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d4c5f1f6775a96cdddace764b0ec6ee0c31d7fe21adc6f8a1c7d2240fd75730b", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "26c0215b74ec71d007ff9d35430d913b44d8fc6f193bb1353167345d1ba1d40e", + "regex": "(?i)^https?\\:\\/\\/skdjksjdfgd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ebc5643f1579a0f6b51843de19ed6a07e775840dd31f894ce8795ce4238b7c68", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6944f372804fbe0445cc58defe6c1638144e1e4810f570fb7fea51f3b98a8a3c", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "74131094571e24f3884218a97468040bb5e6baf1775008fcf45eb0fe6f9fcecf", + "regex": "(?i)^https?\\:\\/\\/dfghfdhfdghjfgjfgjfggfjfjgf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4e4d117edc7df4085444b061eeb925c421df0067a98635f9bab3d5d15cbc7f32", + "regex": "(?i)^https?\\:\\/\\/lkjksjdkjfnskdf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c4e48f25dc19ada1ee0b5bbabcde16a03d7f89efecd8541f300a473e15935a5c", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1e43c9e41b0ba5febc04c4454bbca990c8316bed1c4df22d3049e1977dbb1703", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4654cfe0480bb62da49803fceee5f233a61c8a5c3680eb3a5ea4559bcf9d355e", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f753f8fb8f6cf0cf68d9a2ef9ec5af08f89aafd04ecc8af1037252662e97cb96", + "regex": "(?i)^https?\\:\\/\\/kgjhfghasfdghasdfasghd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d442d1d17495e5986a769d184922347ca94a12555a89c0e25032684860a5e4a9", + "regex": "(?i)^https?\\:\\/\\/bafybeibjkxmzy7qutl7sgdwslfptzhd5rot2cywxesglx2eub3xthemjw4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "c4e4abe18de420b7ae55adbf841830f479b7107346a9a2ad6a7ac6fd115037bd", + "regex": "(?i)^https?\\:\\/\\/isuhfkjsdf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "67139d0a76d5afc8b444b3e49c4280e0be5206a3d1e20c3a98742b8ecdc8d513", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fd03945ccaa2e770ee7719498804a729ef4af1dd3457ba3c52f4333e71940916", + "regex": "(?i)^https?\\:\\/\\/xchgdhdhjfgjfggjgfjfjjfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b1f07101640c9c65f7c52f41b1e0dc578ba71a1dbe915ac1f2c08c9aba7fae93", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfghjfghjkghfkjhgkhgk\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "737bbd027c098e8019ce8d23e819bd697b0251e497e6ddbbcafcfb33f784437d", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c46297259980dab62c291f83c7bb935ae076b139226df33382a9bd9f069dcb0e", + "regex": "(?i)^https?\\:\\/\\/robux40kfifu\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2b1013f933f378fac4d5e2832e36564a46ca106de5de5b18731b149db7d67310", + "regex": "(?i)^https?\\:\\/\\/325348\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "08a5982fad46aaaa9b26150b326254a9bf13d9e165276424bcd7d9e22b01c4f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\@[\\/\\\\]+track[\\/\\\\]+email\\?next_url\\=https\\%3A\\%2F\\%2Fqrco\\.de\\%2Fbfcaki\\&sig\\=5380b73cf902ec58272919631c2acb91af0958299fb03b723ddc06251662b8f2\\&link_index\\=0\\&email_id\\=11332901\\&v\\=1\\&recipient_email\\=907f52a2a281\\&client_contact_id\\=7202148$" + }, + { + "hash": "023280a43c75f22c04df4671c7e087e32b31e204d1ab2cb5176cd0276eb587f5", + "regex": "(?i)^https?\\:\\/\\/clzqrhuh\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c4caa1a1ff9cf9495ba85b9959b04153eaf21a5722c11b0c17f0fb4d27c5815c", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "904da8ce80e968b44074d55f2abb19f24f3758c32111f690f46a7651a8d192e5", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3d337489c33acb4daf38817ecebdb31749802e97d28808d9a96304a7fad201a7", + "regex": "." + }, + { + "hash": "ce7df2282b83c19e41594d6dca4e016480f079ebe6eee9739806b57ef9df6099", + "regex": "(?i)^https?\\:\\/\\/odfqpsiofzeuodfyqofuqzeufqio\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "97774a3da827eb4aedeb65d9c1f45faba5333da541633ef88118bdd03ab8a5ca", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdgasgwqefgqwfeq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "70035d0b1db14be8dcb6fad234021651a58f2015e3d02db1b43f581154ee01fb", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1e22030034526cc46c2242ebc736575858667d8eadfcca584aae9aba7f5d2447", + "regex": "(?i)^https?\\:\\/\\/dfyhrtuytigkghkytuikghkj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3e9c98259e616fb57865d54a448af39266a79cb4f23cc8c760c64de8250d2e02", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "203586231212654d7d498da523ce4259665017ba73ebc7d74a064b889d95133f", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1317cd6e0bbaa8c2514af4ecdacf09adb59ed3113a915e3709f0d34d1dcd8ed6", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7da9c12e22569992fcf9e0213b8a5e141f2e0eeafdb46443fc08e2dc393ed6a0", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "88a3f5eacaf95e98021af03e01a6f2f8881049e9d00622146ab2109a04c6fac0", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5b0d216280a06fa067e39f366a844f9811b6a0b917b1ffd34922dbfa2e41ee0a", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ae3c56adc822c750c1cef2848910748a9d14ceb569bd1471f41032afcefa828e", + "regex": "." + }, + { + "hash": "a925741247619fb165a27582f48ddb8521cf53469a09308decec806c83832fe3", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "78492c74e8086d50695f650219e5f224004f64bfa2184f99335c657429cc837f", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9e304461411454c148a827743fe0e0962772cfecaf7f28ae491788ef34d75d56", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d3323b441a61886dfebe9f242a176cc8889bf4411d3dbdf7757691ac38afb1ef", + "regex": "(?i)^https?\\:\\/\\/beodaefaegae\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a58f4a5a0832a0cddc843e53c8bd130ea0e7d85abb6b71aa956c9d4394e3d9fc", + "regex": "(?i)^https?\\:\\/\\/nomeuxaneva\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b649d5a9c1d4496090146ab8e95c8ac6bb3ce67c713757ab954da7ad3c8759fb", + "regex": "(?i)^https?\\:\\/\\/kgjhfghasfdghasdfasghd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4fafb4c94e2486a32f02f8adb0212e3c41d6159291bffff240127782ea46147d", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a7d7314ffd075a0986b1a05ad25328ed6666b9bf5200b635ba289179e2bb4e4b", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3d0740ce4c04373dbd86b3e2cef517fc05539f540212e45e123bde93b170bf69", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "488fe5dd9e1b99234eb2981cfab499bbcee22480a52d94a5e453a14d36a7884f", + "regex": "(?i)^https?\\:\\/\\/aaasdasd57f5sd7f5\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d4a4189d0a7d83fd086247b669f8c23036049c8704bb105b3b2036a89c759aff", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "348ce179060ce3c4d350a5ddb0fcab5f2cdf00ae80002ca3e59204e4c7b7439b", + "regex": "." + }, + { + "hash": "369fef3f26785c1d3ae04539644a3352b73e05247f1e8a16ac11065e7b2842f0", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "653d13f7ec97510adf20066974c73a6a962474efffcca48a871140ba2fba629f", + "regex": "(?i)^https?\\:\\/\\/spaceship\\-voting001\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bde7ebd24a8e419c57a9d395d23e0ab711623d302cc346ce6944d3c91d349074", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "73c075ea820c03a47265e3e007c2fb2a170832860b6ad845c4a37dec9eec5ba0", + "regex": "(?i)^https?\\:\\/\\/nyotcrot\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bcd3ffee96f717576142f87555c70cd1b74aaf34d0668790027bbe9c48bca353", + "regex": "(?i)^https?\\:\\/\\/ihksjdkfjnskd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d2ca0f8c844a93767640265d80c60abc314804c2a87450c5a212be5a6b557b55", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ae47875817fbba6179024b6042aee638c7dd9161d5676d446b7639797cba28a3", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "216e96593df1644f40593ca710a585c446553884cefa86d3a370dce1b656cce4", + "regex": "(?i)^https?\\:\\/\\/fsdghdtfjfgjghfghfkjghkhghgk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6aa2e407999d1b1d522455411136349ee7782977017db93f80094c7c656ba6f8", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6bb2a8d93a7be3010663d9ef9f1c61c9b067c4277f8840101ac0c200c2c72a42", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6bfe040455a1bd6cdd91aba28da661e18cfe032e9b6cb2f49967cd651e9aa297", + "regex": "(?i)^https?\\:\\/\\/mgfhjlgfnhjlogfh123556\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c7bd1b93dcdbc042044ea9a6c73b7204da9fcdea76651228756f9d7f3a3fe891", + "regex": "(?i)^https?\\:\\/\\/hotreelonline\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4eec96c5469d3377e74665f84880dce5420589d37716fb6731a50ebb8c31591e", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfghjfghjkghfkjhgkhgk\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5d830506968044e66d6d6e98a26acbb3d6596302b5948345a7aeb3b95c1c920d", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6edc1e405feaa18a095d209eca0fbc3b012723083bec24cf49ed2c8ed1b0d6e7", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "61159fd231c25a65b1ac0b5d5a5416518b26605b1635eb9b4d6807319187ffc0", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "32aea67267ca75dda99cd836d64cb178b3ccc31a184c419eb3bbb7f032962217", + "regex": "(?i)^https?\\:\\/\\/dadasdas4a5d4as5d\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "302ea2cde74cc6e8521822b48b2d1720291b6e2f73dcc12296b9ad3cdc14726f", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "fc4cfdf884802f3f1620bf5313fd09b61963ebc5df08083a463e3a375cc9486a", + "regex": "(?i)^https?\\:\\/\\/ableh\\-com\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "80a8a513cef47db0922abae6f826e9fd4a7ba956502ce914e3296f8497cc67ca", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "73c4735600242d3e5f44a1053566198e8ecca49948f0d50f0764eb15ed0c1e83", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6a3e7b9dbeac89e6898e946add4b4464a87a444e23b9c103d2233dfe503d9ff6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dapps(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99ad2e4cc31efebb3e3d7fd74f673e0e607518d9cb1c29c5a0a0e376f413a744", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "99e3e25a67a81cdde7b164d8298ed3ae9a651194a0c272ace29d92cc0bf0a19e", + "regex": "(?i)^https?\\:\\/\\/robux60kroix\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7413769f31d93c280915c7f323f3066b1ebe099032f3d0c185b234fca1b2440a", + "regex": "(?i)^https?\\:\\/\\/aasdasdashjfghg32131\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "028e17efcc56a1d1f391bc279070f6878b848e5982057564cc05ac6447dff8eb", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "886a126bc051a64aa2193e59e40b0915ad9fa0e0351aa660a3556a05d1899644", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "967db13caf11fae511744aa5bc8fe7e2644bd404ac8f255825d8c7d9e91a2ca0", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c21610be4e9e81538a2883b97231c190dc845c4b324222b963b7213859038b82", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e7cc211da8b940319c945c00c81c3ab6e7d9d2626f84558078c25c0e9384acdb", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5a87b577e13a07e073c0317a4350785353ec9176b62269bfbf1730296c1df95d", + "regex": "(?i)^https?\\:\\/\\/dfghfdhfdghjfgjfgjfggfjfjgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ceeb580744c1919dd53276e0ca70dd4ca5b3c898a84330f20e045cccce2d0dbc", + "regex": "(?i)^https?\\:\\/\\/mgfhjlgfnhjlogfh123556\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "475b33e19086b161c5899ae012f53077fba05c1b4a7e15a4d4ed56f2b61670ba", + "regex": "(?i)^https?\\:\\/\\/dfgdfghdfhdffdhdfhhdfhfdhd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "76835e929c1762fc339961286a1bdcf68f6da5a0c520e5db356a45cf4edb2b21", + "regex": "(?i)^https?\\:\\/\\/bgzxahagdhjasfdags\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f08de7982b916dc79d92a1513f8079418480cbce64e8973cb5714adcf548954b", + "regex": "." + }, + { + "hash": "14b5c872c79f5f5fe8d708afdac770211977487c63ff388977487510341148e4", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "67e13cf92903e2ce8a4315a23ef7c493617089b36c5c67751f2d9a19221131d5", + "regex": "(?i)^https?\\:\\/\\/kgjhfghasfdghasdfasghd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4ad7b562e17632b7809afaccfa1254b42a74a12c87aab2661065f1a5793ac303", + "regex": "(?i)^https?\\:\\/\\/dfhrtfuytrtyrjgfjgftfigkgykgkyhgkgh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cbc5f3c6ef150a06caf99119c4065132c10fae0cf27970b15f7de0f094e05c05", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3ea6396890c8be69445ab5977e82bb12cc3e71c3cb904d9745366cf846081dc0", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6cf0cd20a19405b9ad61265257d091817366399ee2b601e8bc1e5ac8fe361b50", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "66f9977ad5d5c08ccfaca9ab3036acda41640309f67b3fd32ccb8feeb5658ddd", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "24aaf33f10cb8ddfd6be8a9d0098ab21595ea890c032c049d4b3c031acc2496c", + "regex": "(?i)^https?\\:\\/\\/nirvignya09\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "317f1c4bee4f84f76a9ecc6c753593fce9c7ac39c04fcf07717134e12c921b12", + "regex": "(?i)^https?\\:\\/\\/12365489789\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a99a27c7b57885fcb8160631fc4697f5d602411f119bd6eef4da68882e8827d1", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8802a5c8a97a18e846c917a0d8ab5bd44291e7b854ed7355d17d6b0a63c315c8", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fa9ac5349fda622c3dbd83c5d82ddd1eeb8bb0f1897144f92e4b60f5f60c6057", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bb562e97ba736bdfba1ab8bd12c544689a728c1b551b36adf81ae13f143a7d47", + "regex": "." + }, + { + "hash": "6a4d3cfaaa7b4f748367777b37a1460d4a7fe70b21f7fd59690e5d7952139e87", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ff82ef17eeb5964de4c2d7e7e99d402efa20ce4bd55b1d3491f24395b3a39a14", + "regex": "(?i)^https?\\:\\/\\/dfghfdhgfjfgjgfjgjfjfgjf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d446a9821a11b53da64c214a26e663356bb5ec47a62a7da638dfce6d335d7da7", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "807893bcef85548c71f7546d4df2d01c1878734596216e8e7c28ffc1d6d044b9", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "18f257444861f71a7c89ce96101575eeea75dd6ceaaf4d3256e26c987532e8e7", + "regex": "(?i)^https?\\:\\/\\/dqscores\\.z27\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "ec8fb260e0e124ab99dd787f56c5aad6994e53ecfe4bb1eaa708e3cd73d5e59c", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0b357cfc74475946f72cd567e7dab554f2a2e3866f8c05db4b4a909e07782b9f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sol[\\/\\\\]*\\?login\\=info\\.9llq\\@serv8\\.joodmo\\.com\\&page\\=null\\&request_type\\=null\\&page_bg\\=null\\&no_redrct\\=null\\&pcnt\\=null\\&no_psplash\\=null\\&pmax\\=null\\&vcnt\\=null\\&use_cdtimr\\=null$" + }, + { + "hash": "eff482d080b3a2928efcae3b1945ec4a4294b11ec6695d50d06ada888bdfd5c2", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "06fb282f011a2c0e483ab1fbeba46b8def05ab3514e3ad9002e82ec80310c167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Upgrade(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d71ba7073473341816f248ffb8d2059733b63983a2d124f7c36a14536d6fd803", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "07a9147c768ffe931858463731c5784accd41be66ce88ffb765eca59b4375093", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ce7e635f97d4285e549f4c3452e4e3534a5487678f27b42d9c70df22f9518fe9", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupdsf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1d2002c3f12124441b83bdee718cd726f2a4197216ff54cc4742cbe3bd8b4e6b", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2d46c25d51ee386542ab73a04bf4c9883b5c19381f3f03de48ec6632e2110dd1", + "regex": "(?i)^https?\\:\\/\\/spaceship\\-voting001\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2833358db5adeedd3643479d9f69aed4fc156e2feb86debd22735ced34acb180", + "regex": "(?i)^https?\\:\\/\\/freepaleestine1\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "58b2b3513d6ee1a7c7a0a9a3f46c9ae4e422f51eb0989fae52be62c6577f7321", + "regex": "(?i)^https?\\:\\/\\/mgfhjlgfnhjlogfh123556\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "457c28ba12070fa9c78ce00e404bf244574e03fff9c123eeaae8b81991293bb5", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "313a08916ac6ed0eeddf371511e95f0c7a5681cd21064094677aee551ffd675b", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8ea7b839b29f38262ef9938a1f97460b238dcc56bc3f0c0c01cb283a9dfc9e0f", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b34c9137569d34a590331ae5368ed3c9cc464ee09ab703d17f90150be9dd3868", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d029230c121219ccbdaafce252017489c147eeee394ffb02e93f74cff06b118c", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "88fce1fd6eb1edf935958e95b6b65940dc5110bdc8e684c0ed85be618c0003bd", + "regex": "(?i)^https?\\:\\/\\/jshdfshdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d9a03043baf48951e4c639dbfe49c055dfe2eec424f874453363d68d031c9661", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8cb8c6624a5ba1efb7e4ae8478eaded8969f3f937c5beeaf1af88ae0c0903be3", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4de0a7989c9ef790cdd8af8ea2dbb5d6f099aa5ea40c858a3f9740e930c1d8ec", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6616ffbd2817a21644ff69a7c676a121ff0d0f7389284e8e1c016448b338aec2", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bc95532ecaf2b95f6cdd7f72f48ba522cd87b54375d38554596f10a946b47c48", + "regex": "(?i)^https?\\:\\/\\/aaaashdgfasghdffasdghasf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b82594f0dada819c2e52f1a627c4ad4d8d1fc716a65ac6185a0ffc27dd032e47", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "19a0c50cd19ec95c96fd11dd63f2a65690751015749daa0263946fd984c273fd", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "71fd16999ef015b4973473a339d3fa9ad88cc26026fc535658e7884872dac4df", + "regex": "." + }, + { + "hash": "a826b277aeb46e49f19c28d00f603b746a099b7a23554e2317763782af075577", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f0866f409fd7785c1e2db41c8be6d602f8b4d23ff23e93c4ae86e8171e081802", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8ae8d16bddd3bb4d0cd0404473418e06bf70195025b701cda85eb4be8a53260f", + "regex": "(?i)^https?\\:\\/\\/moekxharegca\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e90eeadbd627512c795245d1775884e7d208e8a8b3d62030fd7f9dd0feae32d6", + "regex": "(?i)^https?\\:\\/\\/hfgjgfjghkjgkghkkghkgghkkg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "46677d9ee65f4217afdf263aaf31c414890f555c71261d6245aac4d9f4d82612", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fe4124de6a3b209ac97898c603a8518ea7c472cf2852c14ea2747f3245f4dda0", + "regex": "(?i)^https?\\:\\/\\/dghfgjgfjgfjgfjfgfgffjjfgjfjgf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ba8d483c546d16a40e44e9e4b8a4a70a0d4a0639ffbe815f418953b6d0d3cc4a", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "20e8ed25b9698bce755f6acf703c5b22ff4117c190632e8094fa676beda4025b", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0c5f53ff5e5fa6a9931f0b0a0e493fc50398ec808ca3b4a8ba6186ad2c3b3529", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "00a76f0e2facff20f116152925ce3f72413528864542b2cec50ef62e91ce586f", + "regex": "." + }, + { + "hash": "6a70a8e8b4bfdbac1a96cab37e3b70d1e3850a1204b573507399e0dc348775f9", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6b87a887d5db40231c99a33214d4902ecf928edd9ff4c169da9c8c437f7349f6", + "regex": "(?i)^https?\\:\\/\\/aasdasdfgsjhadfashdfasghd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6168c99606bd1a3f832a48af84f1cef47330d5aa10d2a4825a13c38f5c5e5e26", + "regex": "." + }, + { + "hash": "52eb6a07be10a97526e81fb14a55ece7497c55ef70d6bf238b2769baa4cd946d", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "501d1cedac5b529ade267a21dbfa745f7c6f1b9f75607570368387402ca8efb5", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "931dd81e819fc5c160e0cb14ea1485b049ae7eb4cac78ecdeb488df033cdb856", + "regex": "(?i)^https?\\:\\/\\/oiuosidjkfjskd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0089197e3ccf42938db9c1776f43c5f2d5b35b442aa9d1517d1f2d59f1adf787", + "regex": "(?i)^https?\\:\\/\\/dfghfdhfdghjfgjfgjfggfjfjgf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f7f9c188a32b9f98fed2ad6b65bfeaa963f6743a922727a83b1266cdc975ebf4", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e9c6a1680470597c8e26f3d78ca8ac799f9f27ae087330fbdda564af85eb0fca", + "regex": "(?i)^https?\\:\\/\\/ghgfjfgjfgjgfgjgfffgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "66504d53a9ac736272175539120b7994e4d8a87dec5191c73bdc1ee1ba28106b", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7dcbe4c1d6a8cc1818f9e7f5b82acf406a2cba245cb13f50c77eb2733361850c", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0218f3c771d1f46fbe685471106e6350ae95cbf310ce03bc17cf75adeb130a0c", + "regex": "(?i)^https?\\:\\/\\/dfgdfghdfhdffdhdfhhdfhfdhd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8cbb7a449ac44176cb5f0f257d5c5c31b7030726c0a23cff301e60a9ef58b6ae", + "regex": "." + }, + { + "hash": "18318a18d58b97cbbc5792cf0f107fd57077c841fdd30c68b6896e95fbce9a62", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "eeb4be107346792c215fc65d14554904c0620791bbc9819e8ebe757264afd8de", + "regex": "(?i)^https?\\:\\/\\/neoxmeiaegra\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9360b0f10b9881db177f78be84af26c78c447e9e7c9be67c8854aa87b9c71c0f", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6d58e346ac393bc73b8502059aec1e6b870e723543b66b8da099b643d9ab3cb8", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhfhhhdyreuhfgjfjgf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b242ac36891cbcf06371560edba682add1352a1c5196e0da97014ec7f5bfede3", + "regex": "." + }, + { + "hash": "81fdfb9a57cbaf1726eef8d07466660975bf7edeef592f9b8a1f7be4afc9c858", + "regex": "(?i)^https?\\:\\/\\/xchgdhdhjfgjfggjgfjfjjfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "55360681c08b0aaf7edcd4ba8d1182c9abcf5a525e0f98d8df74d332d89e0984", + "regex": "(?i)^https?\\:\\/\\/aashdasjhgdasjhdgajhsda\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1fcdaec4799db7e09d302096cda5807bbc3f6c9ce5f244577f8e1499cb05a5c1", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "914d7177ba6890c50fc8dfdbf8ec26593a9436d6ff0cc11784539979c1e72877", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "addbe6f6677b3841b837cdb7dd6ee34e7ad20a2391fb67a680067ac9e87dbb81", + "regex": "(?i)^https?\\:\\/\\/gfffasdasdasdasdasdas\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "32b34d40b09e9c081e929618b18492cc4ef3c321405df1d35be1234cc445ebd2", + "regex": "(?i)^https?\\:\\/\\/kingmancoolboyeqatzfj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8fb7fa713544dddd8526348501fc7e0db9bd4b1fb635f9ceea0876dda5279996", + "regex": "(?i)^https?\\:\\/\\/robux40kdwb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "11defc93f492e920127355ffea180d97721c13782995b7676c510ab73ce2cb2a", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "857d47e8602db4baa9ee23a0054b0733289a25ef5cb0c03dd35bcf169a490dae", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d040043b1e9a682568df0f5bd78448c083aa2531403905c6f5cb1e7f3001ee5f", + "regex": "(?i)^https?\\:\\/\\/beodaefaegae\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "7d24b5b47ce8a526cf1c129c0b2d76f3af03f94f607a836e27f4d4873fbb9573", + "regex": "(?i)^https?\\:\\/\\/aaaashdgfasghdffasdghasf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b2f6ea893817aafa06b0cd8760b414e025f9d1bb267c9edc255cd6e443aa8ee4", + "regex": "(?i)^https?\\:\\/\\/freepaleestine1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5807b17044b65fc58b57ca730ab0e3db1c864905c7b7b14d8a870b8427920791", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "42aeaa458cbbab8eca0e76850c2e15e8ee581316ac051da6e398beac4af13a05", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdfjgf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bd7a2ac71aad3729a4b3b468001009603306df6110b28a9d92230b63fa17bd7d", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaevcawa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "509a0e0368ca66d56a59af0e1d91adc3365ca06c9347efcf1c3f42a7b6e28c48", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhgdfyhfdhdfhfhdfhdf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3f90fec505540666637eed1a3022d4e9a1887500f2c39d17797b617d2d45ca68", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8f69b7ec9ea47e0978b1eabd7ee577e4c25bc2245f2bc382047504f3850204b5", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5e0a0547e180d73c7ac1ea82644cac3c196d60e9961d9f3c4e2644b69e001b7a", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ab88f551405727353f03017905f4ae5e9f9eea4dc5710669d7adddc9863b7ef6", + "regex": "(?i)^https?\\:\\/\\/mgfhjlgfnhjlogfh123556\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b96c73fbd261b60bdb82765c97eb053e7dd1ebcefcd4db184890b8f0e58145b9", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0d8355f76312153e0f745ce726f3896d09110fda0120655517709e88bcfd4be7", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6356d115f9d7f17416b31a683c10b39791dba42cbeeabf1c32115466f76f5267", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4d133fe71d41359c56ea2952398d7ff4c3399f88a3b3fe20ccaa219ceb8fd4a8", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f92c46bd99b5df944811af98ff931e8da6c0abd0c3b672f03f803d3145ab84a9", + "regex": "(?i)^https?\\:\\/\\/dfhhdhhjfgfgjfjjfgfjfj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3714acebd4ec00465f3b5ea55860b65c71676c06c597487981abeb7d65ef00a2", + "regex": "(?i)^https?\\:\\/\\/freepaleestine1\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2510e9a4b4e4d23f4af231d230085692526bfa7584ac1cda92f919d7bb073bf8", + "regex": "(?i)^https?\\:\\/\\/freepaleestine1\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b0d105aef5268950193ceac6f28fcfa63b301847bda7f720b019e18fba89f042", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ece15462d9045169ac6b8feb59311fdb422da45e9b61017dc00fe516335f3e60", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4cb209d6a8f80d790b969785927323922e1236223dfcac3be3039c3162e94c98", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c2ad17dd0bd5cc93c12c2cadd7d3a9267d910619678bb1d4f3dbb3506a9034ae", + "regex": "(?i)^https?\\:\\/\\/35487459878\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e9cc33b6e31e751805357668c0d747ba1a499569fe54c45fb9719d14ab6a2977", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdhjfgjgfjgfjfgjfgjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "de8e00d36f9c54ce3f1204d5215ec2d99ef7a1c84c8798c7b56e3e0b503ea53c", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6c1c7a4791cbdcc5c9f9dde543465aeb90655f1d50e150bf6ed0a06677a033bd", + "regex": "(?i)^https?\\:\\/\\/instagramloginaccount01010638357\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7a18c94bf9bcd3af2b47ca8b9b85ae133bc9aa67ad72b8a9628085113f38a784", + "regex": "." + }, + { + "hash": "2bc75803ef8adcbc88e9d7d613c3a99cf6cdd83db3e790871ea356da43434749", + "regex": "." + }, + { + "hash": "27d37206c537c6bdc08199e6764b6bd6253326621bd9943b08122f1dfc93cd2f", + "regex": "(?i)^https?\\:\\/\\/noekxaeaeaxcetra\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9a8990563ebf10bf25967e79ee67df2c42e68016342dbc646cae3da40af1c1d4", + "regex": "(?i)^https?\\:\\/\\/nyotcrot\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd796612aea985b10137bd38519000537a685d7522ad1aea2aff92bb7a9347", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mail293d185efb4437f9c640ab3457f7$" + }, + { + "hash": "f0d44c6934600d75b77e94dbda07b88ccfd40b799b03ff866dbbe524900de845", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "514914bbe0b7e13ce7759eebe42ad79a59e2acb31d96e8774c3aa2e7e1a956b6", + "regex": "(?i)^https?\\:\\/\\/ggfasdhahsdfasghdfghas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bb9c6560d861ab1041bbf65a9458f1879ddd1f55cf402b82dd549dcea34a44eb", + "regex": "(?i)^https?\\:\\/\\/robux60kfeosa\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "cefc6a219c805bfc7a6e5b5d2bc28b98e119003bfeb32dad3791fc8ee1f4ff1f", + "regex": "." + }, + { + "hash": "ab0930cab58d76973d0c463cb22bada4c17e686d439f6c4c1d765c678b8567e5", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "869611c3d5bce8c73f28b4f405297f81caae493eae567234a94998c4770d58c2", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e840d5ac95ff15d2f6ea672847ac70e13d9af48c3092ac233f94b3f03f1f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=foxgjmo\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "10ea74ab06fade4c242f1ffadd8cc21f4a40188a3b7724dee30513afce1148eb", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c40976e17a81d649e95f946f1071bd9389b26fca2dda206e146d1e84809785a8", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8778eee8919d6bcaad1f9b2114b5422c870f8cb98f333125c8f409f5cd2e7337", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e4390defc26001fe806a4fe55415fb39480070f69e0ad464ebe8994754e87a87", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a13c88c13449659b4e6ddd8a6a0dac386a0fc4deb8d7d5609adc0a109f50871d", + "regex": "(?i)^https?\\:\\/\\/noekxarcexauia\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0914985e89ce7f26a61b1364a114495f56597ee2330b03fda9d3187ab0fff25b", + "regex": "(?i)^https?\\:\\/\\/aasdjkasgdjsfadghasfdghas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d7e0fd77e01c9a06849abd5a55b534e1788b0dc266c190d9f89d166d219c3768", + "regex": "." + }, + { + "hash": "0b0125af001a7a42f019a8a6ab77dda303e31fa5ef981e2d0effbf359a385d5a", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2b0004dfc0c45376944467a50cef5da018a29b8778cc281e4c7dbd5a8dc5e7f4", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d5b108a785ce34d1b85e2902d554d89fe1ee2acbd3a36ad3b62ded45fc5e8668", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaevcawa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e1bcfe1e817b7f621a06d68377b12bde19720b452418b635bc11a67181521cfa", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6c5059106a48c0a61077524e015bf86509b791287792512f8277c9dcfb2d3fdc", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c17dd0855c277ac2eb35525b8c85e31c107f23ca7a62a529677ea054926aa6e8", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f09b15c053d59e162b6a1b4cbd908c9bc38c6437db9240ea002fe6453902dc88", + "regex": "(?i)^https?\\:\\/\\/spaceship\\-voting001\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5016bf1c3c9e3c0b751620cd89343d4f3a0c58944ddce6507eed461d771e90fa", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d8ff66328adb4d46c848c2ce3c6361942b105ec56f2f3ed14b2b02b724526a03", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "61c4d9f252e16b1d330a9e1ee5d3d353a416748539d7f304ae415b43ee4b89c0", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "16811f3dd58f011359f36734639cedb8b83a293038b536e75e5704961f03ff86", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e83394aaf543e975f55e24ac7258c13f696d982d4fca954b2a80c805b726e189", + "regex": "(?i)^https?\\:\\/\\/hfgjgfjghkjgkghkkghkgghkkg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "befad6f0892f5e1fbbbe3b34f8421560a33fc9413a0edc0b075c41aa7591d3a0", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdghfasdghsa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "94561af82864c0896445859204ee8e5654ca3a5ab066b5ca81d110422ef885de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7bbd59f29da8b16bb8c457570ef8140584f4542469e7df9cd33f1b7e13804aa5", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0da35320bf999c60af5e33de0e1fc5edbef595926cdcbfd55e53fe7a7890f962", + "regex": "(?i)^https?\\:\\/\\/renewnetfiixcs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5b39d1a4db56343c20e3b86589580cb02e0a228e95e1849640c967d8ba4511fe", + "regex": "(?i)^https?\\:\\/\\/oziutryozeifhzeioutheiouthzeuhzet\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "88fcd9ca6299ae71081a566db72b5e7948b7c0f2465c211013de2496b80642e9", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0dacf00353d76faf01b6db7240dac45e97a7b5072bebc6aec58958b3d38b3100", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9d40433ba0c032f5f7cb1df8fb2c5faf73b0992bc5fbefb955704954c73d169f", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfffgjgfjgjjfgfgj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9b0c66f8c8a6f130e4e4cbec2020bb41ba3e1060997ec1a8167672cd3bcb4306", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?3909b39c\\-943f\\-4158\\-ac06\\-4690c5f7c880\\=\\&email\\=veronicafraga\\%40yahoo\\.com$" + }, + { + "hash": "73ce69cc22f34a0eaf30d79ddc479e0030e42ddd8fd551b5625f1d58b80bd2f6", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3aafb398dfe2b90d3709442c02cc6d9c65f3a55b746000d1f40bb2b6d346104f", + "regex": "(?i)^https?\\:\\/\\/robux60kfor\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bb3d5c330726c225db09477daba2604274ee30d13966c8272305f75326adea14", + "regex": "(?i)^https?\\:\\/\\/beodaefaegae\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8da1811eefa47299a30fbffc7089d3c88fc51177a56cc2debec6753bd2896252", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "94e10c17cc09162549d6aa6ec2517c6d25b1b0402e99c9888d2e54aebdc74091", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2e2af40a8b9bc0b0b0b672e6bfb1843e3a218ed8f0780729170e6ca845b0aa5f", + "regex": "(?i)^https?\\:\\/\\/jsdfhgbjdfhg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c7433f1b5e059cd4c0b21d6a32bb6f62f47fd9aa6843a37f62f258a2be8947b0", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "39d28c13e6ce6036f44339d2972a5d5492613540f3bbb334f8e33eaae2877184", + "regex": "(?i)^https?\\:\\/\\/jikhjkdasjhfdghasfdgahs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "17c6c816f66d1ddbf486c541aef2af0eb7b995850b15a19f42e2e966c5f79bce", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhdfhjgfjfgjfgjfjfjgf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "53634f0d8be9d1958a4354df75ec2d1d17a75ca2bf17771ac33c5b69a3cf6b34", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8e7fc45e03823ae6cea2803154c4b29517140e271c97674d9ead8e3c27eabf3c", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8cd32e755ca7faeba12362cea41df99a10087d77ff4fb472b140a498c1adaad2", + "regex": "(?i)^https?\\:\\/\\/freepaleestine1\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "efce462cbfd4101378fee546d485a6f02866703421807c3af9f35479e50ae2ed", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "18bef38b20fb054ed34520d8ccb5a5789883ab8d99e9dd55d591a7f0f462bd6f", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0321ae76017a77e8123d97e71f2d36326ee7c1e7378252d2f26ce7138893486c", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ffe256012933b8b9b8cbe181248ed011917224ce0cf7a05199a29d443aab11a3", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "957a487e814098807458447b3db795234ec2121b7ead3e44c2312caf1f926bf0", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "55d85083cfdeb937fbfb6d94982471ec362a6df9b89918bb4edfcb1c7b4e2b01", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "631a9836c257a35d4643ac1c406ed13c090449b953006d7e2ed7922a37c56231", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c220c3383f1f4aaf85d9f5bbce76645118587abde80f4173d7985ffc2c5e5a14", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bf1fa3910036b40dc84796007ed5357d33ccb33cded4bc596b7c3c853d7e6b47", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f6ebe934ade5921289d730af9c031f46e359d1402af2f8f587bd2a3387fb5736", + "regex": "(?i)^https?\\:\\/\\/aasdfasghdfasghdfas\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "22edc582c1e3e92f8972721e0a23aa886bfe81a5ee498de07355e98d958326c3", + "regex": "(?i)^https?\\:\\/\\/325348\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8ef9b5754c06accbecf4b05e45827657ae067c734b4ff396f9d04a111f69fa7a", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjfgjfgjfujgfj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "c6f9ce3c5ee163c4f2851dc3535740b8f0f86e63733d1a6521a401902f538dd4", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "72061167240f3e1821610be0842b9617958a86946ea42fac9f9b3b5fdaa075fb", + "regex": "(?i)^https?\\:\\/\\/blogedelanaissance\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a99cfb3273411dab6796212ae5f90c6a2fedd6322152a459476683d34528b6bf", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4e855b3b64eec4d9c384aed29b2fb96d338e3d70dda7ea8ffedf825b14ebc18f", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d258fae1e771ded6f9914cfa1bd632487fc7d0b18854c48b0c68a171aabee44b", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c148d933b28f57d16d1a55783265929bca4cdbda1d8bf0369a588445fc0cdcbf", + "regex": "(?i)^https?\\:\\/\\/dgfdgdfgdfgfd55\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0d15871278ba66212972956da1a20080bb5e74c4ae7e47616babfde2825719d1", + "regex": "(?i)^https?\\:\\/\\/renewnetfiixcs\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "96f73f27a8421889de9806ba23593ca88b27dd31c14ac29258c9c20b64d03fe8", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5759f6ebe1575c7e9f15dc5869cf68cc1e62a605d57292d8efa64d6e83944368", + "regex": "(?i)^https?\\:\\/\\/beodaefaegae\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "852ef60a7947da5357f7d9f9b80a07d93ddcdf6df13e89cc1ba0605325cc575c", + "regex": "(?i)^https?\\:\\/\\/hotreelonline\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "669c970aad137cc17acd24058b9a05918a0ad7a7ad472cd3d6d5e849086266e3", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c17dcfa21a6a92521a8139d4e9a4960bef60f9937aa5e6f5a5d63ffdaf5f590c", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "cb68d7993c3935dbcc7d464cb5a54b7848dd293f4896e160a595b79c1940f4b7", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d8ae0d1b57f422d8ce1f271c9a5e99bf5655fa236ccc44ff2ff35906cb08f9c0", + "regex": "(?i)^https?\\:\\/\\/xchgdhdhjfgjfggjgfjfjjfg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ece5989786fb44ca094a31bfc4f38eb822051b315f4a90f70bcb7697994c9e88", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a929f4120bb75a120f1ef057942fd275e7c33d8cfdd67251b2d9da9eaa16bcbd", + "regex": "(?i)^https?\\:\\/\\/moekxharegca\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ef7512075a63579be5824c89791cf19237ba0832d15530b46028c323d4e1d64a", + "regex": "." + }, + { + "hash": "ca28df7d00796388252dd33941df9006cd74a2f10a875bad463e3f8434b54eb8", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9cf393ac8cbbe31fdea6948227be1f114066fd98dbd271f1ef026f9f629bb47a", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "88efa3ec819a90824da0bfc39ccdcadd2534e0d8923ba634a17e0bb5bb62c69a", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e6a2a856d8ec8dd597df466457a97368461c4c2c6f3c744f1cab8b4ad99a0816", + "regex": "(?i)^https?\\:\\/\\/bgzxahagdhjasfdags\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cd60aedef073e80b9ba4f8587a477032c869501ff95f4844faf26335ac8f515c", + "regex": "(?i)^https?\\:\\/\\/jsdhfjhsdjfhd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e96df8c35bfcb8953a03f4fbbdf1c0a882b5110f8bd5946fce28e20a175be34e", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f7bbb85dac8c5b2338b31593ae01a4bd973fef578ef534ca945d446be742f472", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ccc2936d5763f2baeab11a98dd44a4aae2c65deefa074c5762b6a659b69dd81e", + "regex": "(?i)^https?\\:\\/\\/aasdasdfgsjhadfashdfasghd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3cb3cb7aa6f7146ad0ce2f7714eeb3f9a273718593ab535b4b3cdb02ccad8b17", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "813c510e4ae766a3a7a2f98a526293f798a5fc570444b21df0b0516734a1389c", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9a2d52802393a628032990d59bd3aadb52ae67e4f8d593b43077351cc983fd3f", + "regex": "(?i)^https?\\:\\/\\/kskdfkjshdnkfjs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8feb528f66e5c162527bbad9afcd7362118b89049b024189db140261d3471472", + "regex": "." + }, + { + "hash": "73033c12de8dc9705cbf9829d57c1ad1524a1e20334300d5f0d58698b1e458b9", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "64227d52f100c1ff2c21862a318e578233ad524db12b17d9832350de2bb9339a", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fe17b86000771a0541bcf7f858b4ea1d435c16be2c04b03bd04e41b7c3d74de6", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3c20b03d40724e266806ed8d1e983f9c2dcdf0b92206cd10f5d70fb20311cc92", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "98e1dd9b2248d0b5ff32eb0a8782eae754279539a6271477d6cc79092440e39b", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "95409635d443cc47aec566f246a1611831ca6c3bc38c8d8ed46c941d043473dd", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7c4eea049d3d6b5f44e2c9e53f6f23dc48dc28edb72e32b30494a43a07f54dae", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cf840510e5eea63b1d8c599ab14124da38177e45f27bac48e4924d454e5215b3", + "regex": "(?i)^https?\\:\\/\\/aaasdasdlkwqeh21\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ec5b6f8b7fbd785d8940c34208c46d82b4ffb3db393730449806ef4a84257c33", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d075dbd1bf7848d28a815ab7f7e21ec53ad31ce0b703aa37ad4e2ca4e3598bad", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupdsf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "00a75f1a8736bfeb74ccaac6c8d5b7a0b26daa2586bf0f6b69621a589bd42cab", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdhjfgjgfjgfjfgjfgjfgj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "df263440dfef187e098f54c395c816803737f6c376aabce725d8d6724f207ec8", + "regex": "(?i)^https?\\:\\/\\/dfghfdhgfjfgjgfjgjfjfgjf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2674968fdef274f42ca188ad1975566d47283c665aaf213f7a5fffcf7ad361b0", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9771ab8e57626ad4f936e072f30be3e91ebd9f8c41e58a694a86a4e8cddfa4c1", + "regex": "(?i)^https?\\:\\/\\/oiuosidjkfjskd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a691b79727961e18b87821779363e25c6c9aca3dcc6027b395d68def56ac7958", + "regex": "(?i)^https?\\:\\/\\/sdfdksbfdfhjnds14252\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a941d32dbf815323360918f6dfc17e33cd4706ea9c3d7ba4ebf5c829b3fc8b94", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4ece01ace2dab1bc8d4efdc2f5ecb8b694b1561cc66cccfc5627ed7eb7a4e830", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "66bc691ee221eb46983b48ce7be57bc5d149623149c2d959768de594d669060e", + "regex": "(?i)^https?\\:\\/\\/noekxarcexauia\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9100a0fe5edd76227d0f8e8f253b08bf92326a56091bf8dd34f33fc2e7ed3d10", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f02fba416b958112a60769404bf83f7c7642b22f5f89f4f96a74e72b3cf37b2d", + "regex": "(?i)^https?\\:\\/\\/aasdnbscdasdsghafdashd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ad83885731beb9bc2abe54cc3dc2d7fd28ab58c6544c5ee0f208ac100e9adfce", + "regex": "(?i)^https?\\:\\/\\/aasdasdfgsjhadfashdfasghd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5e64f3dd51266ed32ae95e3f3827e0faca50042e2efcbf71fbb188b20ee4027a", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "003163146281eb88e2e3bd5c89c932b201dd2bf54354c5fd46cadc89691b345e", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfdhjfgjgfjgfjfgjfgjfgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7a80293580fdcf5437e09862189a8787013c4dcd18bac174745a3be70e3d6ca3", + "regex": "(?i)^https?\\:\\/\\/robux60kroix\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e7be0fe5d27b433e2aae03bb7c649f9611d3d3b94d811bd17f865ccaad5004ac", + "regex": "(?i)^https?\\:\\/\\/nomeuxaneva\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e8e462e1f1878b035c804c8904a841e75bfdbb7d0842a26314a7a017671a7f87", + "regex": "." + }, + { + "hash": "ff62dffdbc945c83e8d204f91ab1f4d3db004871084fdd26477899e8150aa77a", + "regex": "(?i)^https?\\:\\/\\/fgfjgfjfggfjgfjfjjfgjjfg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3389c3df8e7596757a72302de8abf526ca2a76e8c7c39c17662e6e3b794788e0", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "11e5a7f8b807ede07b53ef56bb20f2cda8eae635f6c2023a3bd80f2950f404c3", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "314a9d56f67b6a10ee0c0004fa81fbd83a32d0c01ac0d1f7a24393368562f994", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhfhhhdyreuhfgjfjgf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "eb905d7522f3f9bf35b6088148b4df5ffe41198ab7c212dd365ffc1065dec6de", + "regex": "(?i)^https?\\:\\/\\/nyotcrot\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "313eac75af647ca4ce076c42310dada675428b6bd58a89d8d61bdd0804491fa1", + "regex": "(?i)^https?\\:\\/\\/activatesabbnet\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e588ba3415280b741427192fad72da41630bdd6ffa7f65bf093b23a2f654371f", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f37170718070ff9fc75a868dad39914a2491e855856d168ec3ae9836a1ffe6e9", + "regex": "(?i)^https?\\:\\/\\/iuyerzuguqygyfgytfqeaaezaeydqiid\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ea8fdf9971104653ea792de6ec33afbd8ce5b959206e9c596ded50bc2db38976", + "regex": "(?i)^https?\\:\\/\\/12365489789\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "76652a0cf87556a10a9ec88dee49c7cce8a31f9d2e46c9e75dbbe59b583cdb7d", + "regex": "(?i)^https?\\:\\/\\/oziutryozeifhzeioutheiouthzeuhzet\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1ff807c4740fa9110d0f6ca94b5de273980a0caf7d723f9c7520b03a453ce58e", + "regex": "(?i)^https?\\:\\/\\/bafybeie34z5lvpiv5uochuq5nfftcbd2pn55c3fonyczis63hh3t3duxae\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "c6f94282c59a7a01f6cacefae1e036b5a0224dbe7706f4b9c7949bbd26333e3e", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "26797437525b56a895df4408939615e7e5942c5f73dc90c53971b21a28318968", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "76ada4753c73bd54b962e02f397ffa5111e896b9e75dc1e52ee53bbae48e677f", + "regex": "(?i)^https?\\:\\/\\/ghjfgjfghjkghkghhkgkghg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a6a3d114061679487134faf8de6b471e9475f7c1e4cfe414b7cd556e572adc55", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "027339e2a0141a7262dcd106b212350fe0264134ac98f05ec24acae330d5ee1e", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "984bf36cd8222d9b3b82d5d0369b3f881a516194e7d19c7cfc6bcd24f5b3887f", + "regex": "(?i)^https?\\:\\/\\/freepaleestine1\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ad89aa9d821626835cabb038cf5317883d1e28ea44e0a92b05091f7ace6662b0", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1969bccdbc934e7df4474bfd159cfa5aa6cb835ba0c2ab3702f0381ecb43f040", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4a1b7ae5b51c8299fcd5efc6cb79fb3448afac88fde34d6ba3fd5541ba637016", + "regex": "(?i)^https?\\:\\/\\/jfsdgkdfj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8161643881be3097c8562711b87c30035b9d2263897fb8265e98d34a741b3cda", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ddb78af3ca707ff255710bf2edddec5a494f93eb0c2838f11c11e53c08e8366c", + "regex": "(?i)^https?\\:\\/\\/neoxmeiaegra\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "49b7148eaac9df04dc76175c4229667390edb09e7c114bf3b61a642fd99c52bb", + "regex": "." + }, + { + "hash": "91fc62fbac15e242697d3a70f1d6b642e9de1ca8b60c9b29a2bc1a78e36649e4", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "77c4b9fc3b28219230bbf26b6e3e75cc58398f74d3db80f1882524d07a46ede0", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ece4e07b99c3cfb03f872b49bc76cd5748c6fd7df5a0de2a2acfe25856c2c4c8", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "17b5efcd90a7dcf09af094483ae29c535088898969f93a2afdae934f9e0587a7", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f60e07d41f0b5abc1c61898f6d855001ecf94389cbfea389637148acf35fa1e1", + "regex": "(?i)^https?\\:\\/\\/jfsdgkdfj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "75901ad0428a5fe76c0ddd01175efdf4798e0a784d5bfb8569eedd78e17bc607", + "regex": "(?i)^https?\\:\\/\\/ggfasdhahsdfasghdfghas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f78c340eb417b91ce73a4f41e21150ecb23e7867d94a0d0b6522da25ac8471c1", + "regex": "(?i)^https?\\:\\/\\/iuerfhfaioperuiodfjkgpuioerghiaerhi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fc734490bfcc64496435a764614638a2fecf517d416c3370302216b2fe9d1a8f", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "be5c4316eb7a5a15b29f9ab12fa2f845b0b01ba2256e7c488e97e03ad136515d", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b62ee93e1e29001705a8a88bfdb301510428da7e34be49ffeeec2a71a78753d0", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8443e1b33fb040e9df640e15351250dd7cbcb3b7f9002a6d88cf585f6bff9acc", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9d600daf841561169aad611e20c8fac7652e1b3ac9a13ca195bb3d8b14d223ba", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bee1227a4a31941e92b143cfabe716e1b9645e045b90038d986c69a039a5fd3c", + "regex": "." + }, + { + "hash": "091461506a57f68025b5dad4571802f092ffc9f8afcbb51278e0a4114cfb4af3", + "regex": "." + }, + { + "hash": "6edbfbe07cf8a644d7526879180fe0094ca49d8065f8c2b4983bd2a05bae1050", + "regex": "." + }, + { + "hash": "20b648e378775646d7fa96cc45d83fdb4b3eddbc6236d372f36bd154b850bc7a", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cf05880f1b2875848f86bfaae692b5056b18c75f4c5ccd2941ae682bc64cab26", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8f82feb6d975156ffad1a1111f0923ebe8f557ce3853cde8d6c177c300bc9a5d", + "regex": "." + }, + { + "hash": "cb9d5807da6bf203c909e0fe7def13d63861e5f83757cd805375159c2797dd02", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c09f4fbb7b7feabd91d785918b7892cdc763b4a65c883a61bd5f2918a7f690bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2f41f2a2a58b176b2e3ba53af1b1c004355d40be987fcd83bda8bae1c576087b", + "regex": "(?i)^https?\\:\\/\\/spaceship\\-voting001\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "92c19d243a607c655ca580082c76f3bfccd62b2be9eb6eb1cf4a66359efb8aaa", + "regex": "(?i)^https?\\:\\/\\/6587465465\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "855b5e876498393b9f1067dcc344b7e6e12405fef7215d6643fbb55476ce7d14", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "5772ebdabdd521d2d7f71bf7a19891fc3ad06d1f9947802093e4cdf9906c6a53", + "regex": "(?i)^https?\\:\\/\\/12365489789\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "12cce9e512d7307b592a6f6e628c19ae9e93e890f859faf2bf92148087b8db9d", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d00300b1f11f57837a7816abd732860b1b0cc3e171bfdeaa321c4c28081c9c7b", + "regex": "(?i)^https?\\:\\/\\/gsdfgsdfgsdbgfsdjfsd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "daa03b4a3a193c1af0731dbeef98bd1c68972b2d4d9ef0d21c259ed32cef7372", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfghjfghjkghfkjhgkhgk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "86668a06029d0516fd067af251a7c7c0c8695125fe902e62ffb84965e9f844dc", + "regex": "." + }, + { + "hash": "f6af1f33040cb9d211d1d71e73b2e46a7ffa1f34c2a4928c3d820e405e1a23a3", + "regex": "(?i)^https?\\:\\/\\/bafybeibi5h5h5afyw43ptml3ct7ppwdtjzims6aws4zcfxhrwvdty7zmaa\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "8b69280b8769129b95b9b8e37ca81366dfed1c88147cdecff636aaa15c7934f5", + "regex": "(?i)^https?\\:\\/\\/6587465465\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e8ee9add64fbfaa55c2ed4f95c24a2be8c744dbac46c5027ce2a80efcf99cac8", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c14ee5ea7272ff4b3896cfebf763aea6ad3c2ff9ac4ee4de32bc16584b0ec8d5", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "21ad30b19a4fe1df0f1d2f8c416cb890d2f79bf41139ba5a748e591d1371b58b", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cea1804fd9a83ea9e102f2d6ccc491f410ac8f5df2bacb99412ea039695524d2", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f26c01c1a4e7551434b0581200a5b0a46461a6da3e13a2b692dc4c1311d71275", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "390c4f371ae8b0dfb1461cfb5a0340258ef5ee4b000f5199597122a474599c54", + "regex": "(?i)^https?\\:\\/\\/gayhotboy2021\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8f908dd0f11f4aa9022aac076236fb1220596953281342f0cb5a285b796acb55", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e36283d66f73cd4442a5cf850ef451d5fa70bf783a094863d5744a058ad6f704", + "regex": "(?i)^https?\\:\\/\\/robux40kdwb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f3dd5b83690e543398214890084c110a42fd41d07fb5bbea1a42d725452dda0b", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "35e0bb138aa34d6a70b8454c64f1171a84807ab46dc5aa3622e8b52f92e84220", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e794db7e713a6e9c9f9f59271a9dcfa58d11fbb5abb496ec07e3e113a39a9450", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "522827da3a762faf141dcae5ecf3e78e36ce15546b87d614d07236ba79e2074f", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3567cdf3067aa31c27a4d50c45c9c7dfc7a4304d363ba97781bb9f87a3a3ac21", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "695de794fa04b7aa22bf1015128dbb5ac0c6075c0da1e552830bd0b17ab4ef93", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5bf919e6dfbafb395a93c78138c4b042b8d9c049ce64eff8733a001d934cf590", + "regex": "(?i)^https?\\:\\/\\/hfgjgfjghkjgkghkkghkgghkkg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ede9726509fdb7c978eaf37d7087284381a2dff146b7bc4d9024b6dc997962fe", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "eb555c49640391b6fa0bd6261651291efe41b52aced0556696bccb6f8ac62175", + "regex": "(?i)^https?\\:\\/\\/jsadnjsadnjkasdnjk12254899\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d9910f7c64e3d2c4aa4d5d8bac8115e0962f23ac27c6af2c4f93caf0912c6ea2", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8e9236e9d887284934051f17945a2b77fb838829cfecfd650597bb463fcd5388", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "61a490f0f7455b32445fc291791dee9921624788cff9fc49b3ce0f1ca72d388e", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1c41faa6aeade1a10ee0767c2d47e4e404e59590e9922a19ff7f57bef9e57d54", + "regex": "(?i)^https?\\:\\/\\/dfhrtfuytrtyrjgfjgftfigkgykgkyhgkgh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "db3f7896c97f24c0f1820f0b8bf249b45971f768984b00e006f891cd320b743b", + "regex": "(?i)^https?\\:\\/\\/12365489789\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4da85600c8d854dba988c384602b92919f8a700ee9fff4db3f5078c87e81b142", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e155f0c70bb3ff21458cbdb72cf95bafaeae404971de28023c89aae5950df976", + "regex": "(?i)^https?\\:\\/\\/metamsklogn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d8cf79c053d31edd688505991f6e375471d12cb130fd3ea4cb3da0f3cdac01c7", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5200f1ffb444b293c927ccac8f74cae60d97a8aec7ca0c354f8c88384632488e", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdjfgk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b9e6befe6f3eac29646e14b3b68a3cfa42160dedf26398535c7541a24bbffa4c", + "regex": "(?i)^https?\\:\\/\\/kghgdhasjgdhasfdasghda\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0e4b31188c8bef1d0d2da530629b642c182962d3cf3857460917a87d4255c4f1", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d9788374f77fa48fb6e9ddf00e8949ef545751f0e39796f0a38c3b49715d5105", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+walletseed\\.php(?:\\?|$)" + }, + { + "hash": "c9eb563d8931910c0f646386031dd34760f61c85bc7ef05b25b2853c8f47a560", + "regex": "(?i)^https?\\:\\/\\/aasdasdfgsjhadfashdfasghd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8fd3e68b5fc21e20345faa6a0d6b4023ee24140268c2422dbb7d239add4d1926", + "regex": "(?i)^https?\\:\\/\\/6587465465\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "210a73e32fdf3d78d1868a593551f23bbb5018b7a32d7351e2b85fe251f19b04", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d56e59c6e180a9dbf3eef435ef6928aa2a9d930c02898ed3a3e9d030a8e56da1", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8552e116000797955db2436bf44937f169e95370438deb6519acda6138be3bec", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "66c93da7a8f1f9dba46a02754e9f6071588c79c1abd068594e6ee2fa736a5af3", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a7e32d3e19723261d0c65b6f043750df0e753794cfd43e3095efaf0561d67384", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfjfjfgjgfjfj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "706628217c7896707b1229ef8559e0d6fe12afc0e86108d67c9fde0aea9b7e11", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a109c0c153b76bea00e6f3ed05450a158677a8375e365c7660ff9e3db820e062", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a6c9bec13a5005aff28103fc7c2e9d569537999878368981ee51f01a2d3d2e01", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8eab0c6748590e942a962b1ae75824e59e16ea5d9a8ff8503f901d693f908be1", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5aa511af7de40eecfbd4a708b3e5a01d3dca6ebc95c57f098170586c4ce3dd60", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d9086e82e4da74c344baa83aa282f3d98f9edce3a03b7443ef24a5bbb72c3dc1", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "efe8cf686a6bccab480ff27ce174e063c0a00fe9b7e295472740dc58f6d6d0fd", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "428eb133c2ddf6749c449aac936b15b926b0514ea14eddb9fbfc0f14beade256", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdgasgwqefgqwfeq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5eb943c144c6d46518dc450901a85d595a2d6bd0c1a6e41b2ba56aa3b6bfb2be", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5759594125da859bf857a431024796763939431bd62fb7cc4df14c2d3d635f7c", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bc83e33d0a0e2c0ca3db84c8e67063ebfcad227172d542748ee794d286eb5314", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0280ebad7c556fb69a8fb639743090d458dba34ec76ebcf8825e590b4d2713f5", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bfee3ff637320e3fb176d58ec12d5aeaa02cb1ae401e441531213b1629c35494", + "regex": "(?i)^https?\\:\\/\\/aaasdasudfasghdfasgdhs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "be0d43e52dfe75f3e959a3b4a4d50c7aa4d0c85808f1099c20b465bbc30c01dd", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "548594d891ff31f311ce6f15a8e9df5cdb648358227aa1be91f99e9ce6ab5bcd", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b32d08730114582b7480efd7dd379b116110e73e4db58fe5f2bb5cc459f0da9b", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "528ad17638c56c262bc8ebf79fd31016b58e018bdb095e8dde65504e4af116de", + "regex": "(?i)^https?\\:\\/\\/robux60kroix\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ba7b89a3f880354d312a96c29c588dec4642d8e1107ff95bbc9a7178ecf66d9e", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "edab8671337dfd03686e01bdc68d2ad6d9808c98079e81671b6f00b219e49b9a", + "regex": "(?i)^https?\\:\\/\\/bgzxahagdhjasfdags\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5f00b21ab1ffc50191c46216e1008f509f1a5b0a3ed4d2c848fc54cd4b9ed770", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "beb9f746d992214849ce797ad1f3ceb43e8a65c0512da3a02962c8059b3fdb93", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a4b55f147e799054707bf71a7c1df2e4ca2bcb88564df394711f52b4864cf931", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "911fc05633ee998523a0d04a0d56250950476d4f828c1524a2bff8ec40017f62", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7c40363f2a88075a24f06ad51df78e09e4b3e0f55e8bbdf739c737279f8546a7", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhdfhjgfjfgjfgjfjfjgf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e884b3a81470fc71fbfc1118f241233f440428f85adb9be516996d9a63d07932", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "816fc2a183f22dd8e3b72f5f4a2689a2f7dda5289d36b7f69fbca8c377790f91", + "regex": "(?i)^https?\\:\\/\\/aasdnbscdasdsghafdashd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "07c89b68430be27319af2abc4ef726701d421391fc0e5db10a425faea9f0d880", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhgdfyhfdhdfhfhdfhdf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f92c2364408cd2fb3889cde79c7894099af55a2f7e1ba569f65539487af17144", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "aa22af2067418eca9047464f32ab6768f66e3cb98c70b4f5c30dc8f16868ad8c", + "regex": "." + }, + { + "hash": "6ca2e01bd8a04f4d3e45a517f24f3abdb41e9584beabc114b71fe53258804eb1", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2af7eb208654ae5318dd912c75268bde6e0cc3093c92db13e35be542991060c7", + "regex": "(?i)^https?\\:\\/\\/aaasdasudfasghdfasgdhs\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ad781abf771e32a782c10c8d19e7111720e83dee1f4779d89cbdaee798c97e30", + "regex": "(?i)^https?\\:\\/\\/bafybeifjzzpwi2en32xmx67opy5nvx4i2cl5qmrgthtdvlye2rw6rs2lcq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "f4ee9773a6f88fae782cf6b65690e590e851a4df330e21f84a691f3aa653d0b7", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "23b3f0982e83d1d1bcda70ed2378d5ed61f6f918e31fa991a16a0ce7a8547a10", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "10b1d54add4a4f3944e4ff27d89fa484cdd5c1907a58fe387d91a3aa3b4dbdea", + "regex": "(?i)^https?\\:\\/\\/noekxaeaeaxcetra\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3e1e70091a58eeb4a86c42d174b1d6c705cd05d9f7859b74113d00dd44d9d567", + "regex": "(?i)^https?\\:\\/\\/sdfdksbfdfhjnds14252\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c33333e1801cfd5fbaf6b992d532a4a0fbf032519a27836db5537737015310fa", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdfjgf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "088741b58b9ae7662c3c0050f9c431c6a0c7905f49d4eeb777a9ac179d3ffece", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "17149891c4a82e5d5a8f454436779da8a6468245344ac31ce8927396c365fd68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba96ebd2b07b0ebbc6fbb3d9749726aceed2532e16e551f0ea409b0a53d302c1", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "76ed90b5a3d38c8f782fbcc87731f1f039ee2cd0907d4f5c3251fb885669da32", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e558ffb8b77cf8e64b816c36d5b84ad78b6ab5dd8ee4a795dfc98f23e96a4d7f", + "regex": "(?i)^https?\\:\\/\\/dfhgfjhfgjgfjgfjgfjfj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "32b95d0568e0f10b4985eec62d1a42ddf64ba66ceeecac9784f254bdc4e41bdc", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "eff2332ef36983daf67e2feb3cf69e12f0b70c10919180876ed0d7f56fe76daf", + "regex": "(?i)^https?\\:\\/\\/aaasdasudfasghdfasgdhs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d6a7de8b20b757d8b589352b1fa752ae7b726c2aa10fb8b68e0852d7b241791e", + "regex": "(?i)^https?\\:\\/\\/aaasdasudfasghdfasgdhs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4c127c2b200f80689b23121f263d52530d1d89075f42fccf8613653d5673003d", + "regex": "(?i)^https?\\:\\/\\/nyotcrot\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fad7e7b28e95e3c063cbde927e96991aad9d92922c11255fc1ed54750ea5d6dd", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "9a4ec3cddf269044ad5371c2b219a84db73fc3bc8904e377f303bc317ae4a3b4", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a4e16d37b34ae6836ea9f2da838e4ee28d50b8fcc3993cc77b1484a7e575805b", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "70e9471917e33c02d170819edec0ba7963eba913dbceaefbcc5a040d4cae722a", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "829e7d8adbd7cad8a7179e3d9f3cf04247e01a44e4fd7e93b183feb75bca1ba4", + "regex": "." + }, + { + "hash": "7e430937390c38ffdf584755b1e7d217b641d83520b39cfd133003ca1a2e9b15", + "regex": "(?i)^https?\\:\\/\\/aaasdasd57f5sd7f5\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "466a7435dfda2f49fc358344c4121fdc082322806575cf340436e1dbc7f28e90", + "regex": "(?i)^https?\\:\\/\\/6asydiasas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "af12ef9b38d88273010d5f89f4bcb24ac56e020307f31fe57b6942c7e9f3ac9e", + "regex": "(?i)^https?\\:\\/\\/hdfbgjjkdfjkl11\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8df0943662d6e7f7e0591f8a46102a7e216c4e50b8e00265cf6ed15f128e7bff", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "df91497b96b1270dd7ff755dc2391c1ab2362e747333d175aa40e4a0ad5925b6", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhfhhhdyreuhfgjfjgf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b5eea136f6d0ecc5fac49d844541eacf15fc41d7183574d504104cabc52686fc", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "aa4d9965afa8434901ae50e91c588d88e056aac4d89c6088244c256f7b4b5827", + "regex": "(?i)^https?\\:\\/\\/gfffasdasdasdasdasdas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a3a8b05021d72128692559bd601235c68bdf9cd940787023027fe59b6a0dc2b8", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bb5243ec41c7c4f67c7e3cc0cf0dda404aa831d10e8e2d21cd2b06ae8a13dba2", + "regex": "(?i)^https?\\:\\/\\/robux40kfifu\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9cb85bd147bd9906aaf3c14ae04a8dc86c3e78c564c163dd773c8021da1c3069", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b471ae936d7510eb4662275e4f4da171ce17e0cb99f5be9864747e2dfcb1f391", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1cdde5f6c80042b660632e0d0124ad1a5ab09467a96fb974247c79e3a535a5f5", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "291dfc52ae46fa6d621e249ef4fac936d1210a748c2aa085f91fd69897018fcd", + "regex": "(?i)^https?\\:\\/\\/osuidhifhnksdfj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1c5b077ac46387847e22655a3c61d87a230566d15e59d7a56b628cc326f13379", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1gQTrY(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "274756d4c25db0f1ffce5e9c7d6bb7c64cfd3183692e3ae4e70dd735117ec6bc", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f628403e04f8b704927f0b134fd9943ec778ff9710d9d04fa8ed3f6e883697fc", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingprogtamadvance\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2495e064269ec51bb07282bbfcea428359ced7002d0484921b01dd1857a4d867", + "regex": "(?i)^https?\\:\\/\\/odfqpsiofzeuodfyqofuqzeufqio\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1880a007f0e5b5387ac98154367d9a8aac3c00138bef288b05919cfe1db55340", + "regex": "(?i)^https?\\:\\/\\/aasdasdashjfghg32131\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e81490a0d1cda978ce31b5494c88e7899e42535151ec82d82c46bb64fa44c273", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingprogtamadvance\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "903870e78618f7556a34b9a407ff597af3ec8fa6a41ea5f3c106251cb6be76c3", + "regex": "(?i)^https?\\:\\/\\/dfhrtfuytrtyrjgfjgftfigkgykgkyhgkgh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e8fbedc62cae68047ec0ae05c261dd27d08618ade37ba75caad37abdd352ddf0", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjfgjfgjfujgfj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "21eb5f81b354653214b0b163155bd44b249f49503ed577f802c1b3ea0258df3a", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "2ba2b8a0658521bba806c595e63037f801d5c1fe2f0bc5908db76a8ef607f485", + "regex": "(?i)^https?\\:\\/\\/osuidhifhnksdfj\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "84849a94c835166feb6a3e90718bfc0eabc73b5f863103d3fae2719e087bee53", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgjhgffgjgfjfgjfgjfgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8af4f194a3683ddd61d76cfd130fb9f4bf1414726c0f4dbba971e163f2f4dcfc", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "658a47489773f90601d09f9645c9f914d0c4c2a00cf43e09ba53b6b63ffdf3e9", + "regex": "(?i)^https?\\:\\/\\/robux40kfifu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d9788374f77fa48fb6e9ddf00e8949ef545751f0e39796f0a38c3b49715d5105", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=7314022\\&pdata\\=4MkW5cWYWP\\-0lpYl8wCtft8Lb_lEN_LFiXJy5es8UIYyMAr7zbibAEm3vXNmUuEVdEii_4tBuUfI1nGOdyQukkLaJ2PPi5BMRVV_\\-FaY6kqcZ_x3FHziEaVe7RFxfl8dxQQcyDQFbAfAKFWfHkBqKavYpinOCQMBJUR26zM8nV_rvWyTOQpYJcoZf_SayZXvcPq7UUV9I022BnqSjuWXjEtmR\\-eOCEnbmcNMETJM67gtqcwh1\\-F3aAhZ37KKljGeK_yjNgQtAqXTgGiBQNWIh2OOKIQo0_ylBiOCgmI\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "4f3929015f37a1c142799fc3ea169964a4fbe2d636d592ad7ba55f66e3631bca", + "regex": "(?i)^https?\\:\\/\\/card4uu\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c4175cba9d2ee1b723ea7d0cc3de3b0d2ecd66998b2fbd92e17cdbb61db3c7b1", + "regex": "(?i)^https?\\:\\/\\/noekxaeaeaxcetra\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "792a6a28ba89d68793b01a512ff2ba209fb3ea3c09146dd644977851f8294278", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "be7331b011784026af390f42e547eac91ebc6ff3575f22ff54f659513c12e2a6", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "eba348eada341a08b8f536c759aed96748021a9092505d67e3200edf790bfe60", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "2378f4fd4ba3fda7fb8acd58e91d1ada600ba405c1f2f4005408d8b0029e1a48", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "052465121fbb29466219005c1a0a9bf34a090a125bffa920e8a9806c496bd716", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "517d1fe6eb78dcae272c8b4bf0af74548e069217281398c9746ade1960da9b63", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d2b8c96473fe960ea8c0b76ca5c69102355d0dd5cb3e129777fdca683aa5d138", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f26caf034dc0c364672d5a4b6d0f107941155be713b651bb871beae0d981c1dc", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "bcd1ea012e5d36902ed4a16c2ab0931e30e01d44b0c88f02465e5977be41bc77", + "regex": "(?i)^https?\\:\\/\\/aasdjkasgdjsfadghasfdghas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "416f06078350d8912e6656dce2a0c5f4d32303f166f1615d0889078cf7583524", + "regex": "(?i)^https?\\:\\/\\/moekxharegca\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ae991c87ecab023a68d058b9d7c5a040c9b29a2f09dacb62c0026758054dd873", + "regex": "(?i)^https?\\:\\/\\/robux40kdwb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8a3e83c7b2fe50d9c73ed6f5e899947ebd891d05a5a091a1043856adb1c3d67b", + "regex": "(?i)^https?\\:\\/\\/dfghfdhgfjfgjgfjgjfjfgjf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c1f507d868523f071c2d77921b3139afe2fe95c8497048e8f871e3114a98e11c", + "regex": "." + }, + { + "hash": "c80e85241e9498762c796ff5255268f07520d95365d6c9f93f08d90e9e4f48f8", + "regex": "(?i)^https?\\:\\/\\/zdgdfgdfgrgttretre\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8561717133c6ff6608217c7a2abbc567f9fd5b15e0eeb13aa908d3c6fa4053a7", + "regex": "(?i)^https?\\:\\/\\/jsdhfjhsdjfhd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1a7a24c72c3dc72150c8315edd860523d09ee420080bfef425471670a18c5698", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "fc4cb631b1dd664b913d8c405f5db0731ee87fd027f27e8e8b9a432deaa381b4", + "regex": "(?i)^https?\\:\\/\\/fsdghdtfjfgjghfghfkjghkhghgk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9094259d91b0c504447c081254852060ffd415de3665c80dee2d8b63d15e1681", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "31a58df74ab8b1f2ba21cab68959cbab65e24ca633563d9bc19ad4a4cabd6dbc", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "eaaf04e4418e2100da74f3328c6eab09cdbac39d6d3b9ef11879fe8ad34a7538", + "regex": "(?i)^https?\\:\\/\\/osuidhifhnksdfj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2503cbafe39591de71e8d73cb660c87e8b816ad4a301a59e425a05a587de42da", + "regex": "(?i)^https?\\:\\/\\/lkjksjdkjfnskdf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1e1749d3892f2a2cceb58a426a92359c85b8b51962200d0887ccfc12dcd18a74", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "877d85e39aa83575e5ff5452bb93b5dd76ef669a3ef09d73e09c7f59da896a18", + "regex": "(?i)^https?\\:\\/\\/bgzxahagdhjasfdags\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e511aff381f38bd4a962bd609275b48679f213db160e23d2e576e03f6517a882", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "72a44e6b537d9c69ef233b9d87480b163986ee33a73aacb713c8bba4a510d38c", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d5413466ec5558911c08063813d0785162e1ef69ed1efce1f1ba881ac08397e7", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ffce4494a9ee1299e3704e791301adb0b4feec17c1ac17b48d31dbb877e78f88", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "49438fef92eab0c894a52db8b300ecbc732a1a0593a9d88cc93baa716dd0ea79", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a8b8a49f5e0af788b667895e0866a7111827ec620ab67619b314c1667c8d5617", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7beaa0d86dcae46a212cb0bdc64a08661ed86b35d4376c4ef72017f6b2b291dd", + "regex": "(?i)^https?\\:\\/\\/325348\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "27c43e54bafd5c72e6eb3804a6c0eef617381754f3d2f8a8a426af1f7b3a50b6", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "34baf03bbfad6a510e41d750dfc28342bf74b70c151f0ffd367f2e2c7314c2a0", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "8e95de23f85042e73d5cbe60836a67648f64bfae8e832b3ee4a53d2396685da5", + "regex": "(?i)^https?\\:\\/\\/skdjksjdfgd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b044e858fc9980f1fe270ed1081c8d8d935298573850e780e309f09a1e7b260f", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e77ca81decd967e65826117477effacebb241e4878fb7c84621bc6152bfbdab0", + "regex": "(?i)^https?\\:\\/\\/zdgdfgdfgrgttretre\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1216db22bf8e643aaf21ca6468a2791cbd58614f72128073a863385ffbe8d25b", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e8799ec58ebfbd9904b9f16a2b03adf09bd9c3f97b9d4db04450d2490b438893", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1df52e71ab010be4d8e212f492991612aa48d32eed52de1eeda83f2597b62ec9", + "regex": "(?i)^https?\\:\\/\\/aaasdasd64qw4eq5w4we\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ae3c864260a6a6dc4112d38efacde501ece1f14b54c786b7b4eb43b0cb04eae5", + "regex": "(?i)^https?\\:\\/\\/zoieurfipzeufqipeufyhezoufheartfa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9a42bf0b7bef3cac30a629ffde4e4d5997d082a19864aee7999028b795d506b0", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bcce341cf4f9b113254d01b3bbf184399bebb7abf983e08b375f0d96a9914d20", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2f76029918efc39843ffa6b6d5d811080f2479c00200a280dc6994567cd1b142", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2679b98a01c75146a67a676c4021fb0f733d5cd189cc6ccb059cece0de739db9", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8a7d9f2bc5c322b6cf260cbc6195ab7451389bdb03ed12c715a533c032bf0fd4", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0d154dea2d39248c8f3490e8982c31be77b3b8c3335e9e15688c448744774381", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0bc12ca3b8389cb1c91b8018c4d0bf8b5d9d3273ed20dbebcaa47311fc485c3b", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8b66553945c9c5f23946d35c06737ec62a1436f25f98434cb85916951c9f569c", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "eebb91c7b2175f84dfc1745fc1a0b7edc91e2908c45c203db846e3f63572dd9a", + "regex": "(?i)^https?\\:\\/\\/reward\\-xrp\\.io(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9c6ade2bf3323d0623a179c3615288ac7d2eb0fb29349894f8783815a679e72d", + "regex": "(?i)^https?\\:\\/\\/oziutryozeifhzeioutheiouthzeuhzet\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a2a4d1200754c4ccc85c3b89fd0f0b912ec1d74206e26e74b2dcf1f5c4e0333e", + "regex": "(?i)^https?\\:\\/\\/sghdfututrujfgjjutrujufjfggh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "87b44a6a97fc5b5c16546cb1c0345530ea03d4a26ce16a59c1efd506a09c00b9", + "regex": "." + }, + { + "hash": "d39666b42023502bd6dd60a1aed7c2eb76501d6d0d6293ea4995f3965f3ab733", + "regex": "(?i)^https?\\:\\/\\/blogedelanaissance\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3aeb2ce8ba1668293ec3a8c9b8aed58aa3495cefc82ec0c360de98667b6851ef", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7a3736177be7493e8d2fbae360ec2cd5075ee8592c91d8472907a99edb62bdda", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "128b6b1b51f980bcbd38f5e3f86d92c943d463baa867d1dcec570709ac63c12b", + "regex": "(?i)^https?\\:\\/\\/masdmk2ms\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "201dfdc2e6fe76d244fa5af8949fe4f892e326fc5d8644a98f76a674261d4f30", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a5b210610f460ff183b9d72f20cda0e6fe176238370d78002ed63918c611fdb4", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4fb2a113f86e36923f136ca7ecb5081ec275d520b372a7e7cd323c573a37627c", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "03d56270c0a422d6a016f4a2913f176ec13029c806ee361dff5b01a718da7e95", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1efe81105cbf202834502207788f90b16252a535e6b6daaa402bcb4836eb8f5e", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "08a8a768634a9c4204dee74ce74b0b307e442422021beb73c586e5e86d9cd6a6", + "regex": "(?i)^https?\\:\\/\\/kghgdhasjgdhasfdasghda\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a84ac82bfc7e59ac1a36e2ca2c53cf9b5767b59b01842a64846e5240ada45741", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "93768a07b31b5c91f64a68d2dfc6ebcb1ec4b985c8caca59cc2ff7b8491d5b32", + "regex": "(?i)^https?\\:\\/\\/ableh\\-com\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d09ee162237e59192e8a2d5ca9146d7854d047f7adc8f1fd85b1a982c233f7fc", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c1ef000dd346290a42fa45072e58aeca7767a3e2ebf6d2c1fbc91aaf9b650cf1", + "regex": "(?i)^https?\\:\\/\\/ksdjgfkjdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ecf16ec510606076e1336ffd8453bd1fcb3f18d6a1f737a9251684573d073d2c", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdjfgk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a0084ccb682584d24aef5daa0437d83fee9d57e92a557647ab18bce637237e48", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5b48c3227ac40dc8c3b3074d90edeacc587dc7acba9f17d320a5870d72282a2f", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e69a73c43c43ac5f866c50f19fe0adc3064ae10b6c5ad0dc02d7874e9ca79d51", + "regex": "(?i)^https?\\:\\/\\/aasdasdashjfghg32131\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "461c6d1b544554297cd59c943015112eb24a909625e4bb41e470d22a9e5a38a2", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7df5e22382cbb59d80b2228d4bceb557d683a46a5de2e0015f6b9c1d1c643c0d", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9094ded721dd3f9b03371c1ed3a1f446c39f3d4d336abf2b07734958db82104e", + "regex": "(?i)^https?\\:\\/\\/robux40kswae\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6b9497ca8cd77e8c5724c2d432228cc7471a8baabad799b49e0272a41b8dd2a3", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a855c3ec39ce6d5d5527b9b63899579bd67fe6a302bade017ea8a3a8a8f7a46a", + "regex": "(?i)^https?\\:\\/\\/aasdasdashjfghg32131\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7ac5f7b66944800285c570ef88748e2df622f20ce6a215940ce35d37180d79c0", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "aea5299bb192380b35d4250e6dc58342c97e455bc82af1e03c2fca420421ffb6", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a264d6b14c0fae136ec7e23a24ad097b80fe431ac2fb4fc1236e7248a1b0fda0", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingprogtamadvance\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "07d4a87bfcf4c18828b097120e1d3d8dce870079c660ae5dd37883c9aa10b675", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "eab2f150689fe01be16370338e884aafb11089a9dad5929f60aad01421b9f691", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a3e5872c459635d107d939fa7622c43d790ce1210c5b0e2f224ca08895765561", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c913c31647079790bb311f9f3d338e4a6b776d59dd323a0d75214e9d6c63dad2", + "regex": "(?i)^https?\\:\\/\\/mgfhjlgfnhjlogfh123556\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "dc57866f36caeb021caface6edcea5c5565a187a666ce8600dea71141922abef", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f79a744e75069c7530a8d5f9c02243ab91347b56afce1064ee491260c12030fb", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2b2f0ec7e086d698124fde3ed9ce968705331d45036170ac59c82db7e4322245", + "regex": "(?i)^https?\\:\\/\\/lkjksjdkjfnskdf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9bc196e478088f4cbaa7889dfff76aabbe422152710877d1cf375f1f1a44d371", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6dc0d0a3e184b8d565e90e3abe3c5ed738024d667150e6030d216e1329784323", + "regex": "(?i)^https?\\:\\/\\/lsdkflskdsdf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f815f465105859bbf29b327f44dce6eccb6efd424ec509967d90e1ce3617bc33", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b46ab6bc96e639ddb9240dd85b4b6a500d6f06dea46bacf0dd47d5c79d192782", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "89a3c4ea16b5ac6e921b3cac3b1d8712ca923b5f3e360d5f24dc59cd0731430c", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "474aa5b5a84e1ffc33451de4d1ca800c614b539eab72e18b42e299bfa78d3f3f", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "78302b9ef0c9eef79d5b412d2f448bf688d3e790756ce08a83da0f30ad19aed4", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3411b175d1b78bb0ccd170029a0c1ec57d9f74d5c240ceb3918c558f417050b0", + "regex": "." + }, + { + "hash": "09a78d06bad4573de0cfe4cb69e3dff534be9d268ddfaee5ff5a0b59664c5f4c", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a2e05ade2875c4cd4a03638b4680f10cd755023910d82efba94e42f3b29157ef", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "5dc32d055f4984d17b7e390083d2f301b057edb4e27d8505fec052f58834e357", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "940152b8612f0628d267d0bac4a55a0472bb143b8fb515e325e5a1f1a7a63cde", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "aa9c4aee45a16a5ced2d9f92d482bef896ada63b58bec92daca4c022a529f34b", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhfhhhdyreuhfgjfjgf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "93c6078c9fe5785d4b29cb75d32d74740a252c66df959849650b385600a73fe7", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7aeacfc4c06ff6a2b9b030e6152bc4c06dfce7d46d6b8e84e3b0b198bb515583", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a3e37d1877a1b451ce1aaed9b02662aa9af703ba4e258f6017ea64080a53fc11", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfhjfjfgjjgfjgfj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "573fa720ed32855be8e3e8ed701f482d02312c78f80f645140c9513dd1a107c2", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7084f0c5c1c461786ae0a372227fb96c28a5da7cc7540b015d0818ce54a597d7", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c7ee8a8491f563041450ca8d1d5d160490ea31be53c1a01a942fa4d30d553cbd", + "regex": "(?i)^https?\\:\\/\\/dadasdas4a5d4as5d\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e0c6c7213d2fff4e0c2bfb4d40b5d4faf8940c5ece80e09869402b32e97da2e8", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5f2553333a145ba984b36e9820c28b81f6811c8bdd279d9164277ead78248db1", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6d74043e13721f298603481182cfb24786222fdfa37c3421d627be834399cc50", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "544e663b7bc5295356c9f67fd3d5f33357ce6785a357ba3caa5b12cf9fde5b0f", + "regex": "(?i)^https?\\:\\/\\/rncoaemcatbaae\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a1bfb0a9b1881715f867e1ec890240f89bb3806b3b1455af7675cfdb906b827a", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "70667bb163d229b6a239c84bebb321b93671b42e6127cc9cb3c5553a1fe5f1a2", + "regex": "(?i)^https?\\:\\/\\/jikhjkdasjhfdghasfdgahs\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ab73794362c5290c163447ae2a778ee410829bf8b22e90584a90f8e3424ed8cf", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "67b9b9c755e7d58ced0e4eaa0ee8e6f03f284655ea48a837bd09357fc1e2bf0b", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhfhhhdyreuhfgjfjgf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b2c80f565df6713d5ec1e6b43e6b6db12775603a2d620b73a9f69214e4a3f9c5", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3fe7c2fdd3288fda8941ab5e9244f4538ee26f6929be4fbff21e4e4902fd2801", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "17cad8e41530388bea367dd6d4952f010b902ca914427645a3529836a5769cc2", + "regex": "(?i)^https?\\:\\/\\/robux60kfor\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "de79f72749b385a95fb1a308b4ad4a775ab24ea5a2b4b666a495e890dcd16247", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fccb6efcc85c25579d945af25f3862c691457388b555d3aa69ba78bc1bbe8267", + "regex": "(?i)^https?\\:\\/\\/ggfasdhahsdfasghdfghas\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "90b5d4b3fab8462ac45c3279f880556e5ef6ea7087707b48982b393a696a1c58", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "19737fb69d1e8cea9ee64bf7a5c9b046854c7f039af76acad4e0176b42442d23", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjfgjfgjfujgfj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "64809810b549fa6b6df8993eb58bb7026be5e126c04b5f9facddf61b4e80ff32", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0d0ab37572abfd2e9eca46fc5df95cbb490cde49139e13bd26890766799db922", + "regex": "(?i)^https?\\:\\/\\/dgfdgdfgdfgfd55\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3bd12ef0d59d98890b8b103ccef0353a8acfcd0c38b813c420ab304f8473267d", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdjfgk\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "96f2bdd64c353af60e985f80cb618c974e958228f132e3b8bc4f37c2e2660657", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "de0fab9bee4e9586bea9134151f362e39f012a9e61843bae12ad0bd795f35beb", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4c250dd98948ed76cc40fe3a889f1753adf563b2607f51c87e95219eedebb8aa", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "05311b7cfeffa530f6fb06a3c9b4ccf104d32eb3a322213f95134075ce5da7c9", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e8bda463966ec1ebea0b6a1f92d851b0eadcfce768546a9c2f99d19f3d6a0179", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "21802c4e7512080da21093eb2c0e639728f289b78fba0fcbf8ef9b12e3c03cff", + "regex": "(?i)^https?\\:\\/\\/hotreelonline\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "dd186fa3c5bb02e1fc866cb0b507042fd72ef887cf76f46ed10227e3ed3a320d", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "aa2ab84f15302692dff42d0ef62a474e8d3224ca628718f76d599d76d2d201d0", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfhjfjfgjjgfjgfj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "697b2243f87f1f6f5917274c35caf21b0477e1a8df33a32c3fdd5884bc79bbb4", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e26a70d756f8161c3fd98bc04f11b81f5ee3673960959bea0a2d94416342d525", + "regex": "(?i)^https?\\:\\/\\/vote\\-rewards\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ad6a8338f851ae5992817af998797c94c86ecb54ee4e71a1190ff22604ee8c3d", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1e4436f7c063502a3b81760a0c78e9790f07579164ad4248c4b2db35eb3ac2bd", + "regex": "." + }, + { + "hash": "326ff4dfb71724b1b4344f7b2bfb660620c6bcb06053197b8be7cbe6cd4625b9", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0945556c81ff47c251fffea3bf2b668d58c5dfdbfe9663d271a1748bd661bf87", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdjfgk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2c2c0a6442e358ddb7ee10b381066952c2c13cbd08cbc3125d6eb28d5b37944b", + "regex": "(?i)^https?\\:\\/\\/sdfyhderturtufhgjufgurytrytfijgh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0a1c317d38f047ba0800e60aa860ba8701572f52763c2e2de54d341fc98fdc7a", + "regex": "(?i)^https?\\:\\/\\/masdmk2ms\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f110b1900da1b4069484a5198acc3a90c5fec010ff1b1b355d2f8f7d4ae15", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e57e14b827518fcfc46b0641844d0bb25281fefc999e6f8af3c4ab25c1493", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e22ddb44923003fc363d04fb7868b0f35e88596ef69ec1ed471e14cfd554334f", + "regex": "(?i)^https?\\:\\/\\/aasdasjhdfasjdfas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "66e1b6f39ed9f1c7fec1cc12ae673e865b52ab4fc5bda8d47a5a269a17e91bdb", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdgasgwqefgqwfeq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "28be985ac68d46ee057f48d020c9551e8f4d299c2f2b4746a3db96674e4a5ce0", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7a12b554baede11222355216ec3b144ce3414458f94989c27893bd14f90827bf", + "regex": "(?i)^https?\\:\\/\\/jshdfshdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7496553c3d445c873641c8047a6fb56094818adddfb1ecfbdaa9013ae5a84af5", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7fe9334e4c5931dd507c52a11277a73ea57a060e7c03c388e59aba0a2121b5d3", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ca2856231f52acc77cae277b2592cf89361a1c61f812e04975dfa7ffebc80c68", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhdfhjgfjfgjfgjfjfjgf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "94cbe88dd01c05dbbda5b9e7dcef5b0b9fe9a6607997dd5e8861f2d46dc6cc43", + "regex": "(?i)^https?\\:\\/\\/moekxharegca\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d71bcf83fba51dfb50157802a772bd66b2f0c2115c8a380938f3697e69eaad82", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c392650d9ad464b8df5a7f05afcb105420b15c26b7772336fe77665c8649a681", + "regex": "(?i)^https?\\:\\/\\/robux40ksbvw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b13b20121df512603f6b61bce3c666a8950362b928c9eec9c1ffed13ef933895", + "regex": "." + }, + { + "hash": "6ef8a30fdb90ab5f066a96f485d34cd5cfed26b711264da65a4976ecca9393d3", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "28e72212c18ff2213d7543245824ec4e7d07679090aadbabbe460e64b1bf0dc6", + "regex": "(?i)^https?\\:\\/\\/aasdasjhdfasjdfas\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2ab147dadb5844eea78962fbcb52efc686c070e72874613c513afd0cf2e1f55f", + "regex": "(?i)^https?\\:\\/\\/skdjksjdfgd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b0c5fed70dcb6a1d8bb8a105d5d316227ac580f6fdc0c762c58d7c7232cc90cb", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfghjfghjkghfkjhgkhgk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b9c808341bbcac9128e3e88cd18b9c3341eb3464fb883d8fc791236def9de515", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8d544c00ec5a5c2050a14bbb2bb36f2d42e9f8305519147eb8871a0f18f5d68b", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "bc0d89e588c0c48dcb6637384a61fd188739b344f4ebb11479e95cb02ad9c019", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5a94f43f62bf38153be0ec6c0617ebc70de838e5bcb3ded900bba533be5a8f46", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "146c1e692be353ca9d3b6845eccf07f4d3ff46886954bad2444c1fe9d7fcb4ff", + "regex": "(?i)^https?\\:\\/\\/mpliy\\-lo\\-xtgsuj\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "442f827ca66a4964568cd11ff260198db321374dfc292bf7feae92f6aef6d085", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "065e3e6d4264f54568d65b1385daf18c64eeafa00926d1a2157653bf1dc39916", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c53bfeb68034af529369889e6904505c34ec3dd7e9c29f8b637e4a47455760bf", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "62687e3456468338f7dcd4cbb6b19915ff9022d51623d0018e921014900c64a2", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingprogtamadvance\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "80e024c84a7a57de207d45a89e5e45118c9f1c0752f5a813921ee28052829027", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "93c67093dc3902f9c4ef90ff6cffe3faaa4e546dcca30c486dee5a636198cc84", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfdhfgjffgjgfjgjjfgjf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "112dbc199192f82139542f5c2a198836f60f6065aaa68fce5e2a75387adccb23", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "717348a1c06a1823d66a944db3c62864164113404785dab4386d0b2bec9c534b", + "regex": "." + }, + { + "hash": "d9281d610e15be9e8a9684b0515914527910ed5782e906ee48e64f07026a810c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=8212325\\&page\\=$" + }, + { + "hash": "5ff235446ee49a9feed5c949d539a82567fcc44b1a5b02e6bc199447629a6017", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1e504b98d1b2a285f5230cbcc3b68a6fa7f62b2d49c10b2f375ca681f4f84e49", + "regex": "." + }, + { + "hash": "4e4d17205f76470af01b20d2c375c70c83ef2e32dbcf32c4af7778be7b4fab80", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2239f156a203bf5dc8b829112c19e7198dd7eaf5e7461cfcd8df00b7a398aa48", + "regex": "(?i)^https?\\:\\/\\/aasdaskjdfasjhdfasdjhzxc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c62e497d57df42a87769f68a16e7a84421eab6f219e56f694ebd12a302f307ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f8f9ffc871f73470ecf30af651572597be098bc14c658d9e55a6be39a2a8d408", + "regex": "(?i)^https?\\:\\/\\/noekxaeaeaxcetra\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e721bf5e68a6752934d30b58bcf2289796a105ba1138f325a0244e25be67b838", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfhjfjfgjjgfjgfj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4f57d40631cbfbb1df7e8183ea62a52141c5d52fc7ef03e47563b51a34954e25", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "cfdcd221f1ba1bd08a7a897ea7ebc279e5fb48c620592b64c1631186712725a0", + "regex": "(?i)^https?\\:\\/\\/foodessy\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9cbc9a975607d5c69dc01b90574b803bcba4305928012534dedb962e69f51792", + "regex": "(?i)^https?\\:\\/\\/renewnetfiixcs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "54cb05fbd118f4c9ef3b6b0f869828e722ba2d3af6de5d8f7fde3a1ed5aa62f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=eyrwed\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "32c442b129c153a2d7cc9a1a7e39298ef8fc0a9825b3a34c4bffd4e59552c178", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "00e73db8b72fb98cd44f7efae014ae005afcf4d1aecf1828bf637de47b071f58", + "regex": "(?i)^https?\\:\\/\\/fsdghdtfjfgjghfghfkjghkhghgk\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1e3c76a52589a2bfa7a8dedd011b8a3b4fae3557ac3bf9fccda8931ebb93a576", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c0b46c10da2d7f20cb8ee04ed2d49f2f5f82693f7c806f867e19e2762d8ff870", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?97eeb772\\-0a08\\-4674\\-8d73\\-71cba404116f\\=\\&email\\=teresa\\.salerno\\%40yahoo\\.com$" + }, + { + "hash": "879ae79d921145b4c47b9b61279832a149939f0c6bc9794b450c3472e9d9f3fb", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfjgfjfgjfgjgfgfjfgjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6b1346d28a6c346a2f98cc9f383911adcf6676a3ca8c96401212ae2ab8aec996", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "72a46807ac5b85474a8b8852d9291d7b9bb93b1101313805bae41dae7500dd18", + "regex": "(?i)^https?\\:\\/\\/ghgfjfgjfgjgfgjgfffgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b579c6132114db03bb1f40e335cbd34ce67e2dd930400d46c94a4099d243d7e7", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2f4182c15e89110b06b1220d3b14268b29afcb755066ddd3d0d0bbe3083689cd", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6edb2bbd86a02ef7e5fcbc090403c0a4bd3c3345c49b558a6b4d56dfa763e91b", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ed82b61832ff7758540b64d111b999df1d80c085bea76ec6cc555a63420512dc", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "67e632627a610f151ff370a04a4ec191c980c964784b1ebd32e6cf1a5eae0d78", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e7c04f32f14231511bc68c1abc9ad175e075b2180c6339f5ed78eda7c2446983", + "regex": "(?i)^https?\\:\\/\\/jshdfshdf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8d10cc25d97ac48c5e1941a333db5761688ef2576df8bfb1c64191553b56dfaf", + "regex": "(?i)^https?\\:\\/\\/ihksjdkfjnskd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c96143c6ffb6d09c6536f0874d350d0003bb5b0167c71697d4772ed12b38c969", + "regex": "(?i)^https?\\:\\/\\/sdfdksbfdfhjnds14252\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "14eadf29dada7442cbf8386203ec22ed0ec1710623a4ad36a08a8221c56ab373", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a773ddc19f618f4819405d790fbc94a6bca891ed8e4470ea2745f821aaae8ad4", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "30f7c3f537965aa3ec368923376ba9a7d994e8acd7dc6f98b74a59d305dd7f0a", + "regex": "(?i)^https?\\:\\/\\/kingmancoolboyeqatzfj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2def8b5640ad566e9501bb29af9e66943a65f3f8a4408b25da3e9f4e1b6587a7", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7c8921e8561215135f2e930d49a13890b4f1dffc56760b707b9ea85612c8775f", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c4a4ef1073c7b47385934dce7ec39d79818b754ab0e803e733e484563af3a9ed", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e1f0fd363c493d9a5972997a9121368e0e725dc98f1ab3a1fb8468714ba2dada", + "regex": "(?i)^https?\\:\\/\\/hdfbgjjkdfjkl11\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d9639a4083622bce0c7cd9f75bf1e6423a2aeb6aa506e9639c9f32975836e2fe", + "regex": "(?i)^https?\\:\\/\\/aasdjkasgdjsfadghasfdghas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "72bca702c44c8d15843aba9bedf9cd02585ae8f88d7b50476996c623748ce708", + "regex": "(?i)^https?\\:\\/\\/nomeuxaneva\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "becc80ff6abecc2785dd53aed00edce4a0e60eaf068c6593c0e931d6e51e00b2", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "10698afdd06f1cb9c275cf5d7b46a02f496c7fd34405d5bcc008f8194c5dc29c", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "260e56594cd0fe298852d54c7bbf713629a81400e719199b07c0d83bc9f7dad8", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1f9231509f8170b1a86657492be70aee61435f02f48a4da6af6b4830fe1fb37b", + "regex": "(?i)^https?\\:\\/\\/jfsdgkdfj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a72938e0b3eef400dbdb5c39170d7f9a131ece249fb4eb10de1c86af50623614", + "regex": "(?i)^https?\\:\\/\\/robux40kbuve\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7363a7faf2e1be5672b3ef2bf26870c659309b55068a04f7dedb1fec262f3a27", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d9281d610e15be9e8a9684b0515914527910ed5782e906ee48e64f07026a810c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=3918829\\&page\\=001$" + }, + { + "hash": "7da8ce7ca75ca3184d07f0c934925542c056cebada3292d6013ca0e33b568a87", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "52860e00d51e7bdda4dd4b1077bb04f88f7c1cd8f9a4cf5cda47854c9fcec04a", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d56998e2a4ff183aacb7939cf08e42014539bb77e463bccb7f429dabd19d586d", + "regex": "(?i)^https?\\:\\/\\/sghdfututrujfgjjutrujufjfggh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "06df768c6e7e5c9972704f308fd69845da5b7f5b5a2b97dc4627fb4a3a248de1", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "b4bff6b7f25557c84c194ae479c3d93e7d99c43caa55763e74d52e85ec7a1c94", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2fbd7d8daaa4cd069f6a00fc096788760ceb39f4d4f66d033132dc60183d51fb", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "594a69aa812292b774f6510fa61f0d6ea8f1d4a1b44c41b09e86382a76b1f4b7", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2f81c8de98a61fcd83c3b5a256e4584809fefd883f2a37f9209cbcb41bbf7c4f", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ad53afca85379ee39500b13118c6d98ab2040be3b46778dbac3ea42180622514", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2c489ac43865fe4ee192daeadb5dd2ceef231874ee2a019ecec5d72f76e3d79e", + "regex": "(?i)^https?\\:\\/\\/robux60kfeosa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "577da87b05ecb5c8ead8e2499bccdfe3b1fee44d0fc61b1fe9b6b47076bc72c7", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0058e94a86d69ad0010e1b35c1b0bfd257ad7925f15e0925423a9ccc97edd6f7", + "regex": "(?i)^https?\\:\\/\\/jikhjkdasjhfdghasfdgahs\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6e7095f2eb89ae1e24ac9705469fa32eca0640f48d578bf764a7da6a20d981d9", + "regex": "(?i)^https?\\:\\/\\/jikhjkdasjhfdghasfdgahs\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8a460a8db067ef5144dbe18b7a3efe4415a49fa521b0eaf1d6bdc364c228c1a3", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b9cd9f4329ed0f839c7371877575a0543b366473b8ad6e0311089a537a6cef6f", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b4f801cfbaa06d1f69f3120a29bb5bff24050a547864e142514d5ffc7a05861e", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdghfasdghsa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5744602dd4c0f49a29aac99e91e13e07ca20af6b067f5cb91805668f6a90045a", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f67d13e651376697cbfdefa49dee3824107d5f4dc2185757e35bf7f0994030c1", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfjgfjfgjfgjgfgfjfgjfgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "642cb7e5e52b2754aae640bf1ece9e4165a9a1a93966e4a3f50b2b37c8513f0d", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8288547c1ec4717ea142615d88e6438f4c3b516d8eee77ea8dcbd8eb79654afd", + "regex": "(?i)^https?\\:\\/\\/aasdasjhdfasjdfas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "84fe8cd74a0cfe65bbb66d42ca1589e3bfcc3b41a357f8f177c871b91357148b", + "regex": "(?i)^https?\\:\\/\\/activatesabbnet\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9b3d624044edf857a500db028291968f03eb1e18d68037fca1e4dbc95f176ce1", + "regex": "(?i)^https?\\:\\/\\/mpliy\\-lo\\-xtgsuj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bf1c5c888891ae930b003e5896bc493af148b3eb576ec0745f6598ec24676ef6", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "17c6620a6caedd9fe6caaf44391b929b416f0f59baccd77bf3311aa4c64bece2", + "regex": "(?i)^https?\\:\\/\\/aaaashdgfasghdffasdghasf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3c08e3ab4124f4e68506fd64854017bc6fb68db4f34674a046a4c603395697d9", + "regex": "." + }, + { + "hash": "942dcb02115d7f7738cf6c422b1be6b6974a77daeeef45939a2c867b6745e1a9", + "regex": "(?i)^https?\\:\\/\\/robux40kswae\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2e955a2885229041f119c3f3c9337cbb47073239c7501f46948e9237d9c59739", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9b5a3af108ea426538f61ef917de7d0cdc93cf4a1d9ec3aa7a512ba94590a28a", + "regex": "(?i)^https?\\:\\/\\/aashdasjhgdasjhdgajhsda\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7031a9db8b93759c7151de404800c47c49ae2f5dc06496228f6916b71a105bba", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "36db6f264d499a66efce4f3684ed3c4850be57587460df1a0a6522a368443836", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "50e0f3cbb5773f384a2e25a21f72a81b31ef2106499f6dafbbb4af5605b36725", + "regex": "(?i)^https?\\:\\/\\/hdfbgjjkdfjkl11\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c67d5b185b7ddb683045a4c42520d49388f06ab8ae215d925fc8ebc82feeb8bb", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8a34309e29ecb2e61f05c7b3776b7bfb1708b6eca42f8b4aac33e337495844d9", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2a787ee4e69e4d276640f5b6d2231446a1b326990c0f78146073f67b7aadc34b", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0d288b046ec8026f10cb62682e310394cdb78b4d775b0a87c965dc869b0b548c", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "bff5f95de60f5fc7c909b249056054daea684f47ff1a754147d8debc6d0e15e9", + "regex": "(?i)^https?\\:\\/\\/odfqpsiofzeuodfyqofuqzeufqio\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6b450fc5a0fa778cc44dfa8be3dd04bce62e8ea7f824b1580591275727b9fad9", + "regex": "(?i)^https?\\:\\/\\/ihksjdkfjnskd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "28c144683407cffb8379d2eeff512876a9bf862e4cebdddd6893ba03884b507f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdcvxvxcv1144\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "923aa7b990446fd1b5ef0872256a5b9f43aa26b0d0babaa9ffd22bff2dc693f3", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "22d32b49a3e432103907de33ad7c71d4d507df6acba2094742e9038f4a5840b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+english\\.html" + }, + { + "hash": "4beb3c943ba6f3edf5c70c9c8c11d87a2d7a34501599ecf87cd2bf9d72b64c8a", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "459b21c4b16112ba75290308b1692b4e0719edd31b888b1f994cea920a336ac2", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "8ef9c046e1497a2b4a628af88be82c49ac194cdeb06d5262476ec18191e53854", + "regex": "(?i)^https?\\:\\/\\/ggfasdhahsdfasghdfghas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "b2cd2d8f7612426b7d14ecfe806b75101b140a101334777e5ca28a4cd2b6523f", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1dfa4da74eac3cbfd44ac12176f6add0a00f9e12054a9b97afcab46771afc18d", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "17e9a97b510160aba9d082a7e826e24e48280e95b3f6746fea4e2f91c6c6a45f", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "12a60b0bf8579d74109df9055270864d4664c6bf48734c50e39de6fd3e4a6a2e", + "regex": "(?i)^https?\\:\\/\\/odfqpsiofzeuodfyqofuqzeufqio\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fbb04b594702374562ce1371585aed47b9cf03cdaa3431ccdc67fa7ec15fff88", + "regex": "(?i)^https?\\:\\/\\/kskdfkjshdnkfjs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9bb837206254ec934646fcdf8d5e006b0b5631810693e0ded336cb9af36b2e64", + "regex": "(?i)^https?\\:\\/\\/foodnetworklegitcookingcon\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "877c7e07d1bbff0bfedd55bceafe8190b276cfd30d3d3317f3df3f7aa6715082", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c760192be7d9205872962b614fb049de9c5fe3abc6ad7aec14b44cd8afc59582", + "regex": "(?i)^https?\\:\\/\\/gavayalahaba\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f9ac7bb5efbcf4fd927f034d42d7e2f279898e01d310cf4c4cda281d4fe98bfa", + "regex": "." + }, + { + "hash": "ee53de4d48147721b77be314e28c803fa62e08bff44ea2a20ad859d06b279a85", + "regex": "(?i)^https?\\:\\/\\/dfhrtfuytrtyrjgfjgftfigkgykgkyhgkgh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2fb4d01f9305a2f48c909033cfe6020c20e4affcffb0b6120b5e2656879b4a78", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9cb02309eeead103aeec93d191a67d82288009c895cd5a3e4dda4f9b6c7b6373", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d9d494977fa652e8fab2e981ec07f8e782de6b26e5168fd90fce29edbd1b964a", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjfgjgfjfjgffgfjfjfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "3ff33dc5f13921faf3b88b448c8aab0b1c661da860edbe4d6c77b995065ca1b2", + "regex": "(?i)^https?\\:\\/\\/35487459878\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9217b57278513130e3874ff671021b7b580dff3e691ad55a2a5e626281e19d1b", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "af5014e5a6959c00cae7d59ba8344905a85c028ae76e1d6cd5e7cc3498d5d324", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7979ad743f017c11cfa87f59ed112437344f2e5a0f1cfbc88bd73f73a1c68d98", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "14c6fe3aa9bd54e9e5cfb667bb8fb28e690c8c415dabec68e644ad852a8d1eb9", + "regex": "(?i)^https?\\:\\/\\/zdgdfgdfgrgttretre\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a1096c60b3d82b66971dba92565c761c36426e62f7d3a63714b3eea7e91f518f", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c003af25a86279365526323f917a288ad3786411766dec4eb814b3371658cd25", + "regex": "(?i)^https?\\:\\/\\/ghjfgjfghjkghkghhkgkghg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6153603b28006f43cef3f24e7741bf55975c261f80dde54b5372193323ad7bc3", + "regex": "(?i)^https?\\:\\/\\/35487459878\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "165f4acca96bf1294f900143e794c3b9a43d9551f2e28cbf96fa3b4360789338", + "regex": "(?i)^https?\\:\\/\\/jhkghjfdghasfdasghfdaghsd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c343fe812220fc9f6521aa31f09edd56473848db9c55f8d8e8a37c834ee515d6", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "acc81bc890a1b7cdb325c4344183f4b095decf97e05165847758b74f26fd5112", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f633369df3d41b02b47c7d09bf99c9ffb91ff5563738d0c125284ea73a808f1c", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bc34669ac1f035f7167d6d8cb5b491439f0daa1ec5a034289de7fb661d793d21", + "regex": "." + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "72fcb169f49203ddd60552bf8f1a28021252ba295598160519f35d10ea821b29", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b4bfa16c84da6bf171ef535c2890e73ff76f5bd74927ed8b199cb58c9a5e8ff7", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "00b2b218d1722cba44a97b9b299a06bb87770955981957cebd7f514477178102", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a73a62446bded36f0bcd8af13c71e2c3d13680c78308555349187037f221e176", + "regex": "(?i)^https?\\:\\/\\/instagram0837\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "13a7a8e09e17cc2065e727370cda2e6cb51292c4f93a2fbb701608d10955ae10", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1305094237f7fd8eeee22ac17c493cab36e15d398c369dbf6952df396616c049", + "regex": "(?i)^https?\\:\\/\\/jsdhfjhsdjfhd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "014b5724fc4298857ddea153f5fde2d23706e0eee0720711f349b756d0b51489", + "regex": "(?i)^https?\\:\\/\\/fffasdasdqwhgefwgqf123\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6ec78a26ed045337ea7ab04fb477a7771fc3e66a2515e6984c63139563a66298", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b4270248397bef9604aa7b010411379048568ee05693b4b2e7418b19156b89fd", + "regex": "(?i)^https?\\:\\/\\/prokillssevdl\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "91cd98d2e194e24f2267b86fd7778ffa4530a97c069b24cbdf01e1b94b907192", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "21b8ca6218aa2eee1c92153dd3a063a6608071f72c9cf35c1a4da919da0c4ecf", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "71650ecc39de1f79fb2abd8c11df36d0c9078516caf8382542412c812db1ed08", + "regex": "(?i)^https?\\:\\/\\/robux60kfeosa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6538fc02d7d40b88c8b1484971f341422c7e9da086fd93ddac98817679b22c46", + "regex": "(?i)^https?\\:\\/\\/oiuosidjkfjskd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9562b705a21800f2d956d64373aae81a3f3ac1f79f7d9d03c518e60708cd66b8", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2a1e2fb11b3e6486ee01c6bf0762ea7015e28a1786a40e6a00df11a5b85dc2f0", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3f0a1cfaaf76ed4069c7cb3c56d93e73af8bde4c93b2d94dea10fb7346347a7f", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "95ade683753dcfd45f7367438240190e9de791232b4b21827b7854fe56e4dac0", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f7eb7ac5e63e7d14ba9368eb33ef6ce96da16c71e6fdb3feb1f97e10a4365fd7", + "regex": "(?i)^https?\\:\\/\\/kghgdhasjgdhasfdasghda\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "691e6190b8511747692c89aa2c72212bb2b627bcc9c94a8524942ae0417553ff", + "regex": "(?i)^https?\\:\\/\\/alert1\\-esl\\-org\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "efcbdc1eabe30a11c1bd922a9d3221ed44a1256cb918787dd3b7056d2f12f15f", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "51eefadeb4a2477c577f337869a40824588adeab4254d618273d08aec440ce15", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f825a91c7bb6d0fecbc1f1f46070e89c7db14155c1216b6c58ee857d93d41c8e", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "282bd8d17fcab36ea7ae0278b7f6bd7db8ec18f190bbf674793df31fdb24dc74", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8d75375c8ce252573f1b23e80ac0a61c5e2785546191f8aab63228234dc36d6b", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c9b12bd8d6e4ca74d87b2e02cf019ba958c30d327f863cc4f03dcd1c7bda0b64", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c957bb8eb9c8c6cef70d726e8f65436acee9f025356f37601e9c51a068501856", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfjgfjfgjfgjgfgfjfgjfgj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "69a09b109421dd32a87d01b86551089e89f981d1b159406b8e003cb15fb70dff", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "87d8b8158eb27a0981f1a02f40f92ba09cfdd4406140429a8198fe33d081a565", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfhjfjfgjjgfjgfj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4cd528a873a5b55df91cbffac5adda79035a2c79947373c2060d21d341870891", + "regex": "(?i)^https?\\:\\/\\/lsdkflskdsdf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a10941c3bcce5c34b81b2f57cc53017349252be8158aa12e81a489b0469334bf", + "regex": "(?i)^https?\\:\\/\\/325348\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e3fced3290ff6fea4187af725bb2a95e5475fdf6375b6c32a3db272fdacd8853", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdfjgf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5fe577354a092ab77a9a1f4a3ae440830416b8518903a5b6c73e79065e38d0f9", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0b1ce987a7694ef5e4a667148761297a2caba3c899296fc8f689df00aae42b8c", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjgfhjfjfgjjgfjgfj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b63c3064dbc36a2d1cb36b748cc328e73425bcb710f778575c7b61fd8c9a5dbe", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "718a6d07b7f142db375ef8c3e0ff52aaaad1cd0f7bba4adadfa81942bc47dfe9", + "regex": "(?i)^https?\\:\\/\\/aasdfasghdfasghdfas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "71b68db6aef769f668be96b2f82e5260e9c2f7ec790740a8bf027126297c844d", + "regex": "(?i)^https?\\:\\/\\/jkhgfsdfsdfqeqweqw123\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e9af01db9899a7f85d90ffbfcc993c517d7f8275aa4dada8e053bd115eece473", + "regex": "(?i)^https?\\:\\/\\/activatesabbnet\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "93522ea45c8b3adfec860546338056db67100b106a515fbd489a88b573ea2e6a", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfffgjgfjgjjfgfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "db3fb9c81bc52bbb4aab7ee0e2d44d7a66eb2d750ccd2051375761b8d15efda9", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "812d309af68e25d9bb89bf20bcaf78f23228ac05e26baaba6d82c6802f01361f", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4d22b11f2dc0faaadff0049605c59f1f0bcf633c9944a05bfe13a22a0899533b", + "regex": "(?i)^https?\\:\\/\\/aaasdasd57f5sd7f5\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "22c2e64f9d0ee4d2d0bfa385a522f5b7eef47e3fe73261b2e366d9f3f4826778", + "regex": "(?i)^https?\\:\\/\\/gavayalahaba\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d5164530a425a117db5c691faf95376c9a935afd4b5144ba6af165c168167031", + "regex": "(?i)^https?\\:\\/\\/card4uu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d05c9ffd234620bf588feb043bfe529822a0a9c21e7d1d778ee3d087d0d99667", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "47565b566d9a5e3628356b6efa0fdee2110e168059b0f2971c9dec081ad147d3", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1390dc6ba0319ce862f57bc7b5aef22c6076dbd36f27027de5446d80ade56dbf", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8287fdaa6950b95333c9d6301e85b8b0bb419e84cc32acffadb43833dbbc7554", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "275a0efc5cb6c3e23850763414c803a74e054365cf9b1c2ccae7a0e975bd0c95", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "32b3163b801f41428d04ca1f28228996ed1f611b79d3d3bba84a26c446eec5eb", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8554dc41ddaafbfbba0124c833f712a3341f109a12f05d010ac33cdb846a4a31", + "regex": "(?i)^https?\\:\\/\\/instagram0837\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "248c419d6fd4b0a7294e7b67edbe5725c7c308f33566554a2d746e09725371d9", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7933e8320ccdf963def1f5e351d2ce4d701cb7e0efa56a3730d0dc34588c361c", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "67dfb8058c65e2b5f86f16898348cc43cb7ca469b3ab33ec088cd308a84f07b3", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5173db957654759966e4076db99598afc96b170869992d4286497c73525f0f21", + "regex": "(?i)^https?\\:\\/\\/foodessy\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4e1a977571b6e142b4f12749b3f995e2a2bd9440f184c827cb7a634d5eb0c741", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5dd28eeadd729ed7aa5882235bdac8df694e240b9b833a108c110c05bfcf7c58", + "regex": "(?i)^https?\\:\\/\\/aaasdjhfasgasfdghas\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "aa4d6776a50fb62cc85b2cb9851c162b12f5d16fae777342bfb2bd667d62ac12", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?8290157a\\-c9fd\\-4634\\-88be\\-a373eab763d0\\=\\&email\\=victoriabreeden\\%40yahoo\\.com$" + }, + { + "hash": "610a04a1d1d7afad409550f3ffd99e3bbe1f6999a3a0f72bf2785963d777acd4", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "12a1efe742103cc7baf2ec38862fed4191784c15bfe24f7316d9737504bd5448", + "regex": "(?i)^https?\\:\\/\\/mpliy\\-lo\\-xtgsuj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e80592253122c0149782d216ab5c1fb7bb65b543beeb55f694fc1ab47af5116d", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "34734eb33eac10cc72fbbb7c73b405eb64ca1151a23769ca5e4f075f9be4c8ec", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1a98d87310c391b6a62d17e012ab31cf35ef2768d4a5153f6da361330e0ca482", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3d415d0eb8b4cc5653946abe28abe17cfb97bd038e1813de1c5b9a2ac9d528df", + "regex": "(?i)^https?\\:\\/\\/robux60kfuesc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b5a480585f836bc05d59827fa01165f179a61772c1ad83c6a144be4c516da2b4", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7061494acc720dfeb918ae4d86416f229ebc943afaf2ab43da858d2449eb11a1", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "250ad1c69ba8df15d8c1fa1bde9a906068b8f422c009853b183dc7ce86178541", + "regex": "(?i)^https?\\:\\/\\/jsadnjsadnjkasdnjk12254899\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6980ebb39c21360c6e0ee90f6f74910f5079a86d8a10ac9671d5716049e1f208", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "353c05972de326f67d28c614f7ba8f5820c9423ab56b68f413695b76f85a59d3", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1504a3ab7cbeb8e7cf24502439ae5bd0159e1f59a28bc07e10a8f5c700271572", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f4539be3e68d3ca5ad9f392c304c52881357a5cb1018662552e550d016926c8e", + "regex": "(?i)^https?\\:\\/\\/jsadnjsadnjkasdnjk12254899\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "068e251dd5f5972e7e5963f2d11f06bc10712448ee6252dc34e9b43c3f5f5711", + "regex": "(?i)^https?\\:\\/\\/zoieurfipzeufqipeufyhezoufheartfa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0f015d48b09daafa5d61da30a2c8877e2fbb7399339ac73b38a853dd174772b6", + "regex": "(?i)^https?\\:\\/\\/activatesabbnet\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "9c8672726b70e7fb8446299a511768bfeea971d4fd58a4c1aee0f842044dd1ce", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f6e2b785972e5782a7787c05143b3513ac29d703e08d0087a0b36a6640d80acc", + "regex": "(?i)^https?\\:\\/\\/jfsdgkdfj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "abb62e698e4c8ba4ec6307718023e3c3bdda1fae0f87ff55e561b8937d6c392d", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "05dfd5fcd575b33ab5f2f567141a3d29e78c0203b96756837c162663411e0bdf", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8f3a790155dba2d50b6d78f749abcf56c8ad3583d316879dbc2f395d368ef6e2", + "regex": "(?i)^https?\\:\\/\\/6asydiasas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "03c37aecc724c0c18c42abff5d595cd34fca338cc3707e25cf4f3b7a0e9d2567", + "regex": "(?i)^https?\\:\\/\\/ksjdfgfdjfg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4d0bd20735f2dd0172338332f738511da77e1a5badf20b279f758b665de44c7c", + "regex": "(?i)^https?\\:\\/\\/bafkreial55erdd77bh5fyis2xysf6d745vxd52hr245xp4t6jyox6vaxze\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "b6493ae51eed8008cf43dff99df079defd5a2bb5253b8e82527fe73a779facf7", + "regex": "(?i)^https?\\:\\/\\/robux60kfor\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4da8f17a0f487e7483835e4736c900a5fc02968f015ca689a70c9925d6a0a664", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d545c8a0839246e9f2b6ef92d64c619e36f95409b990970f8da822a60aa6edb3", + "regex": "(?i)^https?\\:\\/\\/ableh\\-com\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "231dd040c44e3eaee4fd8300c65eec19a419ab650abe5b6c3340c8da0cbc5eeb", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "686b6d1adf57d89f66766af1234e2ba2c5b79a30cada5e56b73d418ad5c21caf", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d25042e5b010f8c0fbb2ee0b8524a8bcd4721ee6262601b4cd95585c8f5a6828", + "regex": "(?i)^https?\\:\\/\\/zoieurfipzeufqipeufyhezoufheartfa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c80f7b311c474d6445b01a83329fc67bfed56a3ca8a11cb8e82c5a21ab7116cb", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "74e3e529eb34a6c60ad45028c8e5638a00ebff207841176bab467ae53491cd6e", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "05faf21f06981c62a1dfd96174d2fef08b4e863650b8e93d55ffcf61e4337fa8", + "regex": "." + }, + { + "hash": "457bdf18f86464a7edd858fbced5b1d1abf7dfa0be80993121740fad0f36be78", + "regex": "(?i)^https?\\:\\/\\/dfhrtfuytrtyrjgfjgftfigkgykgkyhgkgh\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4c99f9e956f5718a854f4d3b35c2035fe752a82ad0b77e6a5f745546cc628c0d", + "regex": "(?i)^https?\\:\\/\\/instagramloginaccount01010638357\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ee4010ce79271bc113144deb9916f3850ac3f019793361c4bc7c1aea0fb9e804", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?a\\=index[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&m\\=Info$" + }, + { + "hash": "14f291ce9de1edd2a8c052d6428d6163d5d85a9fd4626d69922269ec8c259e9d", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b80fa483a3af811458f9ec86cba50859746f0c753cd779d65a53efd6ba232af7", + "regex": "." + }, + { + "hash": "ad8cce5c6a8449fb7a8899dd8ed43eb3e36cceaafe04a9be7de6e5cef0589b5f", + "regex": "." + }, + { + "hash": "92355b9927848d0618cc5cae21bb3a1307e7e55fe0f921fcfeeb040c96827204", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "794ac125094721a9cd8e93674ad6df96d5caedb4e0df898cb00a08945e29f87a", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "eab0a0996a9e82da1d8b7b016bafef3bdffc744f4050379e8ff0e823f8604c2e", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ee5384e9ee20a60c13dc782b1dc5473db04eb9c25b62b6ce9904651aa7c04746", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3bb1dbeae2225e4bb4c0cfad9a9a609f9a61467711174215e973a3a3cf67c35c", + "regex": "(?i)^https?\\:\\/\\/325348\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "979cbddfb72be96536afc606267956903e22209d3b41099512f26418077b9d06", + "regex": "(?i)^https?\\:\\/\\/bafybeigjhqrmjbiv6ugcrzfgyfqy5rdf7ss2bsd53rj4se34u7k6ykcnqa\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "944352385569604a0574a3cea3bd918e24193948b51cc74ab37c0a9119cc840c", + "regex": "(?i)^https?\\:\\/\\/iuerfhfaioperuiodfjkgpuioerghiaerhi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a67ca8a84c7dd427d5370ec0d13ff5183537bf18ca4bb8870fa8d1f77fb15fdd", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "446fb1e672b62d265041c5b3b0c8dca077cdf2355390f9e8bc4b5b8f77ccf94c", + "regex": "(?i)^https?\\:\\/\\/dfkjgnkdjfgnkdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d7de868cc228b63b49e5adaa343b4ec868b0e427838831e71cf74a15ac1c953e", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cf1fd2781b89c1a0c8871437bbbba7d3932bdc2b6f294967314a32aee735bde1", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfjfjfgjgfjfj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c86b16343e3224efc83be695fbe362aa317a544ff7d5b029d8e32b3024d1b7ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=yndchb\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "3ab211c7553ac0d911c08a32a588da5fd56af0465299201666178cb98446fb1d", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9b6d0d396351f456293aa0052e8d15a44312cca43e0f426d3a83688c1c71bd64", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f3904cdad0b1d203e14b1012c915a0920b5eaf5a89dadf17d4ff8f188552f5bd", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "62be2391cbb03862c912279852ae264644418c520ab510e3e7a0f03bb8a6d84f", + "regex": "(?i)^https?\\:\\/\\/aaasdasd64qw4eq5w4we\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "af7d69c4e6ef4e2138d8408b441d55f70e5e02892e6c0f6ff6355b70cd04a358", + "regex": "." + }, + { + "hash": "3ccbb4077974a854eeea153da1e4582dba065b1f54ed4f442c528039a720b36c", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "57aac299daf910d02387e9f312262b78851bd506115eb73ae557bf7c36bbff8d", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "337e795b78a63b6a9d9ecc96bbafc18e862b164ffa29cb199cee71a4730b6d46", + "regex": "(?i)^https?\\:\\/\\/activatesabbnet\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9d19bf835cc325b02759d617cd02f4748c1d737eaa02b42512f9d8d91a2ea23e", + "regex": "(?i)^https?\\:\\/\\/pub\\-8c56c5f8d06a4f45b2c0c111a5ca7d2e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xs24dl(?:\\?|$)" + }, + { + "hash": "28f8edc8159e729d078343e5ab5bc47dddd5176b1921660d3574091435f461c7", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaevcawa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b3a1109149bd98f001043bcfadfd033f70bd5661075b6bf8a89249e3db4ac3f6", + "regex": "(?i)^https?\\:\\/\\/ableh\\-com\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "30a298a219de6ce30dcb55685aa7cb66237a49689380341c9c230fbc7f17a02b", + "regex": "(?i)^https?\\:\\/\\/hfgjgfjghkjgkghkkghkgghkkg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7cf3723312f7010e6f895ac5928395adcdec4ec45a72e70a31ef305b38969f0b", + "regex": "(?i)^https?\\:\\/\\/hdfbgjjkdfjkl11\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7fd80aa3ebe406d2d7786851b89d16360bbc98f236f8c8be67280c0d9a542349", + "regex": "." + }, + { + "hash": "2f1827b12b94f0ba2ec1aafce9e905582f92fa048a6fc35ac41ffc18b0a383bf", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "38b07bc6471aeb23be6b0a3bcd9d7e9c9bea34ac7bcbe7a0a72d348a3e343538", + "regex": "(?i)^https?\\:\\/\\/dfhgbvdhbhfdmxcm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "06554c341f16db656c04ac20f0c5ffc15964fdc2af75507faae48874e73a0352", + "regex": "(?i)^https?\\:\\/\\/zdgdfgdfgrgttretre\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1982c865a559cf26e191532ecb3cc58fdb9301a96bdfce6fb7486bdeeb96bb23", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "cd21c926158449b44c6212ef1b0e92f83e6233c4f645a9b8a673a73c6b4e8511", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UKep5KcOm(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4080521003ac334dd95d3069061bffc990059eb4e8fe4a35cba628d3daa79cdf", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e505eefc5aa022f5beb30b415671722a1a9adab2f4bd9810061286bfbffbe870", + "regex": "." + }, + { + "hash": "fa4805012a581da53e1dbd6aac8b6250229b12781ae6a458d070268a79e46ac3", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f5df348350ada15bf425c006970d5f00fc3df54e3cbe2c8a34b5054d66aa0ad1", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0c632ae54d1aedd361ae8cef38d4483402d3c1871791a37256914d9a60796f5f", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f0baf137d758b59554a54f58180e8e3fa797c7ec5ebef6342ff9a9e113fbef96", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "75f4bcd097b1d589f3600aa22a8ebd1096ab243b452f3e315d6468fbf05bec53", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b2c54904f92a7268c9573c1f17dc2f09deaee1421bfd4bbc34629219885d5426", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3d71bbfdd9eb7f6b51f7f09217dd87aa12214bfb95c4fdb1afdc0518433f6ab8", + "regex": "(?i)^https?\\:\\/\\/dghfgjgfjgfjgfjfgfgffjjfgjfjgf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "26b2c678e00544cdd8fc549d223ebc3b5217ae0ae1c3acd9faff7eea199c3a47", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "10b1c48722638d3dafa98e688df3d2dbc8ce16fbbdb81ac87e4457d2fa0542d2", + "regex": "(?i)^https?\\:\\/\\/ghgfjfgjfgjgfgjgfffgj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0160d04f4667a1b7e9e47f30bef51e4e0f28324297c78a76a3be3bed3cdf21be", + "regex": "(?i)^https?\\:\\/\\/ksdjgfkjdf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bccd5c75547aa1a1893fab7a66ab3f921d53557feb3d30faf372d9a38a46e8e1", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e7e99ac2a1b3c7e6a76146b49a7e34737effbdf2fbbdc4f85cb1aa97403270ba", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3ac7f540c8b18b541e33ec995370f5c194930df8c77e4d161319007fd2787bd2", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "61638e1c5642032d2219b862f8c09742a615e2850e3b9df34226002b280b5f55", + "regex": "(?i)^https?\\:\\/\\/jkhgfsdfsdfqeqweqw123\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c87e8cfc776081c7f69f59ad8c66c25c5d106f13f39064df1b9b2c679dd143b2", + "regex": "." + }, + { + "hash": "0c34a3a8a60af53a50f24e7f74cb10bc845d38746e2c11ceb31e8f613647c15c", + "regex": "(?i)^https?\\:\\/\\/gavayalahaba\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b23db6aedfa5bd7dd017e678fb6b1839681da17404e9fb481ae599a34b357163", + "regex": "(?i)^https?\\:\\/\\/kdfjgkdjfgk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9d8eb3e0dfe04edcb65cea4089b3e970f1786887b7b57f688914f0de567e0e58", + "regex": "(?i)^https?\\:\\/\\/jkhgfsdfsdfqeqweqw123\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "50520f5c7a1908a8916757ca2afb0ff66dea2d293f6c26c103b9450a93a82133", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8e2b1f46119fa85d7fb0573ce180e42286632a488984b790ee4d8ce3fe37ea2c", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c107d35f4ad09e53f3c943513694806100122973d02fdc949625ab6d62dcceda", + "regex": "(?i)^https?\\:\\/\\/dfgdfghdfhdffdhdfhhdfhfdhd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c494d6201d8c9aa2a28d36236111a579e78dbdd36e5dabef4b81e49caf344205", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ac2e4c9db4d19e472cfbc09e7193fa9b57246444dad4a21bd74c93bcf08e7fee", + "regex": "(?i)^https?\\:\\/\\/dfhhdhhjfgfgjfjjfgfjfj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "aab2740840117625702c506d188ab686e260cb40b76c78e113a32129985dfd2f", + "regex": "(?i)^https?\\:\\/\\/kingmancoolboyeqatzfj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e2ec54a553f92040b55acbc35ecfd8a5c40cf77cbb46a87797178180c0c1b01c", + "regex": "(?i)^https?\\:\\/\\/kingmancoolboyeqatzfj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2a489da9e4cc796d39f22799e95e59f9b1f666f586602b3917564ca041a51031", + "regex": "(?i)^https?\\:\\/\\/7sdjfhsjkdh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "128bb97c18f949d1de8f7aa28ac4e6f7363140b6adf437f841547a502c3514f1", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7129a8093975cdeeda6f6abb3a67bef078edc596b4d8f5f6b6dca681be3d7329", + "regex": "(?i)^https?\\:\\/\\/dfhhdhhjfgfgjfjjfgfjfj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d9788374f77fa48fb6e9ddf00e8949ef545751f0e39796f0a38c3b49715d5105", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=10184605\\&pdata\\=3RHUjPqKx9hqC\\-J63\\-UvdlgRp_VDd\\-ZsFr3LQcBunv4OV8TGHa08fHEOxAJGJ1wOS\\-Ez4lgFUgn4dgJx1dO7q19ieZKA6muUJJBbM4P_U53CAvEBteNE_uXXZcjgVllwlBz5mHDe66SUi96E3lEJOmoK9JEcl9T71oBGZCDl8Q7Q47lc1Pm\\-IHDo0aUSpC8JzQXE5DAszmzYyKfTq8zmYl_sVPsTfkv0LSClTFjGOQ\\%3D\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "ec9fc13de9c5ddc7a7272f90a667517ba38ed40d069e909f36b40e5abde6c3b3", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e0fcbf6f80b6832eb37ddc3fbaf1082aab2cc7ea2378481f8bd8cf064ffa8928", + "regex": "(?i)^https?\\:\\/\\/odfqpsiofzeuodfyqofuqzeufqio\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d123af51f3c508fabd747e1b3d2e2411b841afbc4be4936468709748eb6104ad", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfghjfghjkghfkjhgkhgk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1f557e213920b42e7730bd286c8819a0c92e33aa31305fb7404505503282edbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+agil\\.html(?:\\?|$)" + }, + { + "hash": "90afe997bf9068d4a985afb1d96321f0b5a1ec8b78f012b48af90fc000c2daf4", + "regex": "(?i)^https?\\:\\/\\/nafiya101\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8bb319335374fd4d3e50e9e59800d4bf31669afc3252602d63cfc6c08164132d", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3572812dfe99de60df152c66eeebf936e606f32be028cd861b5e64909ec962d6", + "regex": "(?i)^https?\\:\\/\\/jkhgfsdfsdfqeqweqw123\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3d43646b1e2f7c85734dd7e002c70b1c4c1d2db9223f567e8d211cbff213baf4", + "regex": "(?i)^https?\\:\\/\\/p\\.updateinmccv\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "bc63c349552f81738170981bd48668ff20ac1b9ef4d9c5bfd2cba438c89cf7cc", + "regex": "(?i)^https?\\:\\/\\/jsdfhgbjdfhg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e520ecb6f461274385b23cdf31f091f5b02cb8904074cb0d356619ff80dc1fbd", + "regex": "(?i)^https?\\:\\/\\/iuyerzuguqygyfgytfqeaaezaeydqiid\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a290dfe0613ed9445f036240202250301a587e7c9164d8fc98a033b30f7b4233", + "regex": "(?i)^https?\\:\\/\\/325348\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4b0a6ae137c256345202a6277ea14817642182656f14ff9bfb70b359d351db67", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "23f2d40b7e6e9a49fbce2d33b8dcfea6ae7feb05632d457dba72f503baecb890", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "62e50672ffbc9204be3c71aad1f00cb7b248d5bad20e104d0a2119cae2c4ee1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f3d17(?:\\?|$)" + }, + { + "hash": "f06f063785defbf34f6d18264f63b10416974b8c2cebc34de5de157a5d5667fb", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "edfa67e356a422a56e95b3e8a2c3e14ee78ef289bba732bf01e9013216fd51e3", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "712943064fd868458482cd99476181b7fc0273125f541117375ef1172085c2ad", + "regex": "." + }, + { + "hash": "bf92040ed43958ddee886193b6512063b2c6e243a1630c85c547da71895fcaa4", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "924f757c662c58f297f8d2b21687e63d6bd11a8cf5f91c99d9ea694aac856895", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d8a5fad9814817c4e302f568602590422c2aebe39ff720abdfc8f2caa1c7d666", + "regex": "(?i)^https?\\:\\/\\/aasdasjhdfasjdfas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d306c57c60fb4de48d42e91dff0a2605faa29ced6d1008bc50bb966e4de65671", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b3ad8593d7278909b330512db44386a198cd0c768c5ea9db5ca14202057553c8", + "regex": "(?i)^https?\\:\\/\\/ksudhkfjnskdjfn\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ba583882a90ac6b5a53d9ae6387f1c71c11bc1371b7fbac60469a62bc7c8fdf6", + "regex": "(?i)^https?\\:\\/\\/aaasdadghafdghasfdghasd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d9788374f77fa48fb6e9ddf00e8949ef545751f0e39796f0a38c3b49715d5105", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=13419671\\&pdata\\=RzbqOUDpNzqStPNCItjF2qSrFA6PxBaQO\\-9W412yjJmyMF5PGtpc68dsS8vsxV79TlUW6mEWhszOJMsCeVg96w6oLMqe5KpQ\\-ZVmZb5pLU90KPEjz7AN91AJfmDkHzVkSqOetVAIToMeYl0qzxpn\\-c\\-vOq3J7FknZ\\-sS1FoHf4FKi1_tRRY7u10e8Qu7mDy2l_0J7NnltwmYpInU_nMi5Ne_PNUWAaI9TICFDA5ehjlC5f4MeGJzwQ3C2ljtjsT07_VUg8TsfT8Zc0noEu0CefdJX05xA9PIpWs\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "77b557f86bb9984a5dc6a23fdf6fb34cac006029674196df645685ec60a19020", + "regex": "(?i)^https?\\:\\/\\/aasdfasghdfasghdfas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "622d125780a42bcc12b387d9b8839ab2458165be7906e9fd061e79da802b4042", + "regex": "(?i)^https?\\:\\/\\/robux60kfeosa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mail293d185efb4437f9c640ab3457f7$" + }, + { + "hash": "e362f51799fd67a6d1806594a467925594bd73563944f7dc6fef37aa67f0da4b", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4240f8df9178f1c3b345bf0d08b573a4ab5f5fb2a2def49745e12d377f84e9af", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e0fdeef994748b338eb6d1d18cd62d2f4062589fe9afccc9dcbb657072785d59", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "76d872fbfd82fb745adf2b53e031978afb9ae1ba42a2f14c7154d79c30c1edac", + "regex": "(?i)^https?\\:\\/\\/aaaashdgfasghdffasdghasf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0b3e56e7ef613ad237d532223e8180f14f009bd367018a36083ad9822a076a68", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "032abc0ed5a954542536b0d4cf46ae44d212d7ebddba7f18b84ba00a7f506209", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a7acb446dc4da988687e480b41c6b8c839aed311c99a8dae297647f52ace7fbd", + "regex": "(?i)^https?\\:\\/\\/dfghfdhgfjfgjgfjgjfjfgjf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c041ca7d1864a428b4c26540e6cfc355ecd48daa9ee41062e9b04eae5ef904e9", + "regex": "(?i)^https?\\:\\/\\/ksjdhfkjsd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6c1e2c6e35ece2ed53b6f297f7a7d461cc8dc4e485d22d369ad8f2d0137285cb", + "regex": "(?i)^https?\\:\\/\\/freepaleestine1\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9fe286f6dcf1d9ca3ce7077cac7372e782a999b42977fc0330cee1e08fccfa8b", + "regex": "(?i)^https?\\:\\/\\/aaaashdgfasghdffasdghasf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a4cb0cf77d97060abd0c92ede597fc867750789e3c872ff85ef9c94d9e5bd752", + "regex": "(?i)^https?\\:\\/\\/card4uu\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e7a63fea37e185445b6f7ffca1023408af273757757d5195182773cd4a6a763c", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "06b5658e8706ed7022598e932bc4ab78da6df1d00af25944ba0a04a9ed6f4d7d", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5f19fccdf08fb4862c4bc7142bec80203f8893825374e459b03fcd041926e970", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-groupdsf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ea8ce948ea59c5fc41d70408b33990718f5d08c1b07f29abcd1bbfd718bc6671", + "regex": "(?i)^https?\\:\\/\\/gsdfgsdfgsdbgfsdjfsd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "75ab96c83e67a73a57f68433f6965cb7af44a37623d83485a599ae65f156a949", + "regex": "(?i)^https?\\:\\/\\/bafybeidio5m3xtmrvv3ok57vpl6hjebehxj67boiwf3o2ycy33qrjf3xxy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "030801c4b08fa4b4021e6ea39ac21a8f7e8ab860385d661a199c8ac0ff295f61", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "78d5e52c46e7ba800aafaa90b6a1e0a1f782e06337dfbb3ebe57bd68e3455a0e", + "regex": "(?i)^https?\\:\\/\\/jkhgfsdfsdfqeqweqw123\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a0c2b581d10524c31f57cedc6142c20e3fb8145373b749d378022c58d1a033d5", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "64ee879da230d673f810435af804c0f721bd3a7200dd78e23136bc0ad42cf63b", + "regex": "(?i)^https?\\:\\/\\/robux40kaniu\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a02426c7c927365b7e8a9e37887ac48e98e5249c5dff83189b35a1a0a8871b2c", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "22d41a8d5b35c10ee44c21c3f3f4c8d9c88fbe22cb650933c7d18f0fdbfa136c", + "regex": "(?i)^https?\\:\\/\\/instagramloginaccount01010638357\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "01af650109e6e7faa0d80933c8e30ceb1450f71d18f3baf82f8b9c71f467e083", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d8b5486f36c4621071ff4b281da61d5e635cce8bc716e41f98b8fd0d3aca4db8", + "regex": "." + }, + { + "hash": "03cdfb65ed5879df1beb4b4e0c626acdf1a97fa74c20ac992ce3246f20e7d537", + "regex": "(?i)^https?\\:\\/\\/jsadnjsadnjkasdnjk12254899\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "331a32a490ac35498011810151833daf31f0a2c2a44de6bd1bcd2fbec93dec9b", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "32b59426f56d15bd5f286f4efef392b533ffdde8eb1421a84122104aeb99251c", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "87289ae031fe29efa57ff017d86c5a7a2f3bfdec7bdddb2dc284cbfc2f60ac71", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "137fdbd31dea6e0588914184bb4ce92649adc7c79233826756cc3c40e81a0b1a", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f7e29d6db24f04fa26f897b8558a1d2c6dcd7ad22fba50420b61221d7314ba3c", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "172614c2a21691c13d2a875cba76198fd9563e7e6d15fa20e2150dcb37a80f3f", + "regex": "." + }, + { + "hash": "e9bcc5ddc89fc49cccbc6b47e32b5b4ba2beddfbd894549d35203bf48797f8ca", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9794582e6e756d236357b3830032b57fb2c5e71813fbf303a9388df681be6f68", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "c6f9abfd2a3c7ca7867c7982f625ebc6fc332c83faed2e86375d83e8c2c9de3e", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "da8d1e9c6ce5c1262088daf0afe24bdaecff6bb79be306794b5c7a940376755b", + "regex": "(?i)^https?\\:\\/\\/dfhgbvdhbhfdmxcm\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b3f18b7566399b34642a3698ef3d44cc861ad1b0fd943adb2d3296cdb539b69a", + "regex": "." + }, + { + "hash": "6e95d749323533c47393bf28a995a3ac8756c9044fb1a8c090f766c72c86602d", + "regex": "(?i)^https?\\:\\/\\/bgzxahagdhjasfdags\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0662070191542834b5a14109bef781d9ebb9419b615e988bf4d60ef235469be0", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "da3caf858d6373ca524ee3ccaa298bf6d97abfaf720cb2abb36f3e068c7173ca", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3cd89c05e95f2ac93c7daa378e979bd877f92d9190d18457fa404feafa68bbf8", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "be77251bdf7c77617f2d7feda1ff4ee51e1dc9502e9ca558225743ef4fe05471", + "regex": "(?i)^https?\\:\\/\\/54488654\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "616e0f89c9af89e84d03ae382caeda68fdcf505031a06d92f7eae9301622366a", + "regex": "(?i)^https?\\:\\/\\/mkeoxnaevcawa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ba8dde1c5610811511e2ddfe57f4700c7c0d9a8da0af35e8f3eeac100d315b41", + "regex": "(?i)^https?\\:\\/\\/aasdfasghdfasghdfas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5670997b901902cccfd0a96be265989168b920c80d68342a99a6abfd90238bd1", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9755aeab17a8db9f171a7d5ddc3297d79d7b327a93380f2db1609ce39f3117ba", + "regex": "(?i)^https?\\:\\/\\/dgfdgdfgdfgfd55\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1911608237a45eb7a9560eaeeffcfd36fa7ff0d6cb4d33169a216b2244de9238", + "regex": "(?i)^https?\\:\\/\\/moekxharegca\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cd6626902c62dde881013aa31d9c20d5e4267d884be6502ae18695aeac50eefa", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d0854abb29450ee8d33ba150edad795226994420ec932f1078d56a6aefd8fa66", + "regex": "(?i)^https?\\:\\/\\/robux60kroix\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "66a7c814d8939337752eddbc1b60384085f3cad84a8fc9389dc9321a459a36d5", + "regex": "(?i)^https?\\:\\/\\/kgjhfghasfdghasdfasghd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "78389094a29ec66205ee6a69e13a76db17fbfad90b56f89390fae61cf38f1f2f", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6a3e7b9dbeac89e6898e946add4b4464a87a444e23b9c103d2233dfe503d9ff6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\-2(?:\\?|$)" + }, + { + "hash": "b7a5fb5827f9c721dcfef570172d123efece73e802c61484c298e0e516b945f7", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a2195d70ea45f093a6c1332e3495eefff76e9cd667e6fffe83b4850191fc3936", + "regex": "(?i)^https?\\:\\/\\/nomeuxaneva\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f17dc9e0a956449afd9e95e1a86d66cc29d4e690ce8115a70239b82e5960279d", + "regex": "(?i)^https?\\:\\/\\/hotreelonline\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "302909e41b81ca4296caa359829bc43d2212bfa1d5bdf16ef6a4901a8c98adcd", + "regex": "(?i)^https?\\:\\/\\/324354789\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c5a6cfa0538579bbcd407afc345ca6cbf441d44f7bc248fbc1d6dc4f71ff4aa2", + "regex": "(?i)^https?\\:\\/\\/bookky67\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "94a874f7dfbb398e0d78056fa3c05e08a2648d875b1f65906dca634328d2aa0b", + "regex": "(?i)^https?\\:\\/\\/dfghfdhgfjfgjgfjgjfjfgjf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a2a708dbfb8094deaf77ce5e3291a1248ace886aefa83ea140bcb9a82a40c9b0", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9001f85f3cc8f041773e7d17dea9ca0137f1cbf872834748d04ce3dc107e801f", + "regex": "." + }, + { + "hash": "00e31dc352938ebb779d3a964e4092cdb3f1e1a799e5947b902acf7bb07fc430", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "86d375ae062cafeb421ae265ede9f4fe8d967f38d4e4cd8edc9445dfcda14c95", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2dab442cd93bf14f6e43a6c5f88cf805a75fe41a257ec404af1ffdebef3b4b24", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "99845d995f2f0d39713bfe6826ebd31e29a0cf0951c23015a8bd26ad74f694a5", + "regex": "(?i)^https?\\:\\/\\/12365489789\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2c740294f840a69d5b486088fe412b42efa30735a7a400e93d368c50aafb01bb", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "88fcc6d563faf3c29fa3050c0ddcb9d35c99ff79e72185609056e7f3409e3a26", + "regex": "(?i)^https?\\:\\/\\/sghdfututrujfgjjutrujufjfggh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0684695f16c7af35e29a9f8047dee06c0af9db228521b23376d28aef26258ae3", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a2aec093faec1ec502b70b25555b5de4095d9aa3e1a4925f7a71a09403b51180", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a7e373ae6f41fb98288e30b9191e8403772e9637ce4a639c335a821cb85e3801", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "76674f63f8d938dba50691c8b62cf9a6577eb2311d995f876e7362107f73f292", + "regex": "(?i)^https?\\:\\/\\/beodaefaegae\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cc77c41e297ed200b0021c2ae6eeadfaa4c8495eff7b8d3aaf91f71d1b8a8df2", + "regex": "(?i)^https?\\:\\/\\/blogedelanaissance\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "838638153e4ab1e54f76e74754f852825bc6a398e75833d171d2f7b5eabaf959", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b0c24181defc2e6b12e44ab69232ddca4f44b54f933bd41fb18e21941d1ed662", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b0984cd10cde6da47b55da1e9bbd2345579ef4d3f49c5ec2e0d3a52c58ff7199", + "regex": "(?i)^https?\\:\\/\\/iuyerzuguqygyfgytfqeaaezaeydqiid\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0f772bf11d787af83ec6b01bc4f3a9443f3361ba15e0a4f20e2d3a03c1a05a35", + "regex": "(?i)^https?\\:\\/\\/noekxarcexauia\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "18041a64a8b4f3d1f1ae325080e7c6078eda7b5978f208d092e4e1fe79a0e8cd", + "regex": "(?i)^https?\\:\\/\\/robux60kroix\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "b6ac82c4391ad9aa52a2ed410149234d953c347261e8b4e7db2e5803555c0991", + "regex": "(?i)^https?\\:\\/\\/jsdhfjhsdjfhd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "16e529a7b6ef8fd2309b09fc809378e845f132c8401c461e57a63640a72e21e0", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "378b8fa1dd7b98a8e18d49184c64317edeff40a174d3f22bd088797cdb1e1ce2", + "regex": "(?i)^https?\\:\\/\\/dhdfhjfujfgjfgjkgfjfgjfgjgf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2175c72b2f8ceb43faa947b76ce2a2e5b2ba3f0a89b55bb80f690cb328960092", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1e4437d8c57d1e9482c2081e43e34bcc4c8139258b47260ee7ed461f8843a6b0", + "regex": "(?i)^https?\\:\\/\\/aaasdasghdasghdfasghd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "605111ede0cd520bb123fb3a1b5b71eaa31758bee0a2b99e49c69a6b6698235a", + "regex": "(?i)^https?\\:\\/\\/masdmk2ms\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d5dd44e48bdff37550b8d02955307b195ad4da941b42b94abe02988d63dd6169", + "regex": "(?i)^https?\\:\\/\\/aaasdasghdasghdfasghd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "904591c627a363c46335e7bbc41a31713751e108c7991e16d88b9fdf3d8e4a5d", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cb8750f6b6d96077e7cecc96af99b4f6adacbf5b0f7b2084eb81ed3d7e185059", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "bde776e7730c5eafea4b9c19d3eeff7a5fef4a7a83cd5cf7bbd6595be0873770", + "regex": "(?i)^https?\\:\\/\\/jsdfhgbjdfhg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "af7d30f318efd14962995553386a2ca73be58fdccf94fd15271cd65427b1819e", + "regex": "." + }, + { + "hash": "d296dadf972e155454265a60a0ca579a8272f35dbabbdd48a5f3faa61af9e3b0", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfdhfgjffgjgfjgjjfgjf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1a722e664d0b5f0712a4c502ef9eff037ee6bb3e0a9a42750e1591382c6f8166", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1d6cff43a3c6611bdaf2989ae1436af66a69912103d22a06090c6b3a12f4463f", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e372a598b0e547fca677c5cc9e626380d3d1d6c4ddf82192623eec40129dc5a7", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b891a2ce63ae99ae6d8675f061071e8a2b3ecf6ba982678ab389225f4a816837", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "7f92df4de3b8b718cea0593fab502abab3c38c2ad8f619676c082c620fe63bab", + "regex": "(?i)^https?\\:\\/\\/odfqpsiofzeuodfyqofuqzeufqio\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6cf175e5158b08c5b116d0dfdf54d9b0b829a4d33ea240812878e7948e64241f", + "regex": "(?i)^https?\\:\\/\\/dgfdgdfgdfgfd55\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6ea286a9cc6c20a4eb4dda960ea896312b624bad9ac3187d271345db5fce5569", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "32df3499ea1dd01ffecb4e9489bd27930cc0b7af4dd05f8904df813982e33bba", + "regex": "(?i)^https?\\:\\/\\/aaaashdgfasghdffasdghasf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9c8eeb27c3eb2fd230c72cd616e8dc2859728fbce2b982a7440665cb88000e7f", + "regex": "(?i)^https?\\:\\/\\/dfghfdhfdghjfgjfgjfggfjfjgf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2f4540311ec8c361f97337a8223e6540d605445fd8eed0f5cb079e1ee8b9a741", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "302ee3b610f0761cf20a4b3e78f33c399b57692f00a2f89fc39022940e3fa7a2", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfffgjgfjgjjfgfgj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f4458dcd7e708d5b3e0d61353fc3643f4b29cc76836245b41b4c2b1c328199a3", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2d49dd755c8fdb80d7ba96a22fee7fc075543c0ee1288092413a31f377c80354", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5e7e19831e4d7128e780f5aee84a56389312493200f0534929a6e7889aacfb96", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5d5715a5338a2eda6b11ea9b00aae2eac3173f3e49e1ebdf4e0f9b0a93ad5e71", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "710ae54d08d045b797570a737c11baf886b2a8bb4b85b21dcdfd4b115e3c3aef", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e8b99ff41e93e7389b66a1c47ef81579cdc4cf79d9a76b8d6dd9f1f6f3b7aa9b", + "regex": "(?i)^https?\\:\\/\\/aashdasjhgdasjhdgajhsda\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e884359506ab7de373b64ad5ba64a8c5581480d88992367efffff059a419d04f", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "302e7f7994192f029e1dea864490c2dc24e58b6caaabd5631d17dea776db6d8c", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "38c872bc81ccc9cd16a06a57ef13ce8bdd8f05fc466a7b73505418da7bc85014", + "regex": "(?i)^https?\\:\\/\\/35487459878\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fb6183feedef298d9a6f00de0e7afb80ebf6c37c0682f571fcba48ae0c926ebb", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "35448e162e238360a353b2ab9ff3b4ce2789cdf27583a1a1c8ff6dcada12762a", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "974519cbabe40b5b634ba5aa0aba2685954112bf03c409606e8828b71b955fbe", + "regex": "(?i)^https?\\:\\/\\/oquefhqioshzefheaufhiqugyfyiaguy\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a715f4fc0f7c1afd26d8fcc44207a038096d7d390e654b3783266baa9bd2b263", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "15c64a806e5fc28327580ca6514c516471bb0863e788674448cea1e994c2a2a3", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e3c194a72eeb72b35eafc16351a3d2c7b97310146135fdd77c523dc81e7ecec0", + "regex": "(?i)^https?\\:\\/\\/ksdjgfkjdf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "7a65b922b2be90fafa75af94c8a858c984a94e6b6461b64fbb0e1f7ad4f6a216", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "09755feb683d94505e58e2bf6a08c51e15b1d1864010ab65650caa1a9d9bceb8", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfjfjfgjgfjfj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "023666e4ccb4f8bcae6c86edc1377e9c5132271c5cd40ce77c886900180747f7", + "regex": "(?i)^https?\\:\\/\\/btconnect\\-9a0f84\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "71105cf53cd99631dd98ac4cc3d0c026a239e3c9cfed00cfb7a132368c64b61c", + "regex": "(?i)^https?\\:\\/\\/aaasdasd64qw4eq5w4we\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "fc34a37ebeca1a7bb6b1b5ee92a00e44b4c9c47693333bfc77e812565b54e561", + "regex": "(?i)^https?\\:\\/\\/sdgdfhdfhdfhjgfjfgjfgjfjfjgf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "844ffb93695a8338d399d36950f0de7e632c7603a8f4e524626816d115cf65d3", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a435ad09acbcc5d2350cd6e71e6030a34237ceb61c59772a0d7fcb68d7457790", + "regex": "(?i)^https?\\:\\/\\/aasdfasghdfasghdfas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "46d90903ad8963dc3cb39e43e156c7bee322b12700a7e0a18bd293f070bead88", + "regex": "(?i)^https?\\:\\/\\/kghgdhasjgdhasfdasghda\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9aae1c77beaada6c629bfd5f9cccaf05a66e45ca3baf85619cf0276bbdc6634b", + "regex": "." + }, + { + "hash": "08a53ff7087d780931db7a0a48b5e1ec6e44fbb19f392972f99ecc39ef5937c7", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c7cfbf6176d495ced534688381b5a714431fd56b0306ac0d2eaefc196080f08d", + "regex": "(?i)^https?\\:\\/\\/mkomehxaurcae\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "997e175fab977af565abecfa91345ca701ebc580023e9b802c04c86e0a4ffdc6", + "regex": "(?i)^https?\\:\\/\\/12365489789\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7d0364dd95a7827078a713990a29fdcf62e77ee7bf57f93415cfc750f56d7aef", + "regex": "(?i)^https?\\:\\/\\/sdgsdfhdfhdfhdhdhdfhdhdfh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9fc8e9158b71acb68917caf0d7730ec2e0824e99a7ffa160276ef72a3488c7c9", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "842018e0c33e0b398ffa4f3acb8d6801eafd745f428adc0cb0f5e765d2b94a5d", + "regex": "(?i)^https?\\:\\/\\/blogedelanaissance\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e8c8725db5fae5df3122792ddfe32336ac62137f3834d6325075738e0cd4d", + "regex": "(?i)^https?\\:\\/\\/robux60kfeosa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b9fb73ef0b53ef3f9ced55c856290688fb2ba60dce4f7389102ccd01aeeae1d0", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3af0c63385b2032b624f6a82c1b9ec14818f5f4f9e084cf715932c108c659261", + "regex": "(?i)^https?\\:\\/\\/aasdasdasewqe21312\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5ede45fb9ef7f44bed67d5182f9afcb0d3ff15196dcec89b41a94a85c9370c89", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1754283b164f9216914f1bcd9e733580a5296476c3c2f192b8d66a8f5438706f", + "regex": "(?i)^https?\\:\\/\\/aasdasdashjfghg32131\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "79cdb7ce354f0a90c1388c20f6d5a3a19a8b0b1c39e69f93fcabea846d37b084", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7a5338332281f1fb9383002527c5f9250feb0d23cdc1e950b6271d2fce8a9263", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cc210eb8be9134a2839ea42dc008d9efddacdf940521a1d804dc00c931fb6ccf", + "regex": "(?i)^https?\\:\\/\\/aaaadshasfdgasfdgas312\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "50e1bb437b2e5f1cb929ac78dfdb7bfe7d8494799994fe7624c215cce1529f7c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b31398b2274338bb3ffb56b8ed13d32674ec7d444c8d1c96f6e6b7109b4f772e", + "regex": "(?i)^https?\\:\\/\\/aaasdasd64qw4eq5w4we\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "532243b24ff654698113f550eb45dc1c6cb7e45bd45d642cb18522f28712d96a", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ba51533e1624860bd424e8c7858826bdec90d152b60cd305a676b4d6ff6533eb", + "regex": "(?i)^https?\\:\\/\\/ableh\\-com\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "aaaa2f2b277f6669407648ac79723fd6094613d7a5b148a4a947dcfc95a7ec22", + "regex": "(?i)^https?\\:\\/\\/dgfdgdfgdfgfd55\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "62be61339fe18dffee9ad531e85fa188ffc41116239a9487ba2a282ff1e2af79", + "regex": "(?i)^https?\\:\\/\\/jikhjkdasjhfdghasfdgahs\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "55a31c5389a4d4b248c47fa27d9ac22abd4889a6ae9546df22a9378f686cf341", + "regex": "(?i)^https?\\:\\/\\/neoxmeiaegra\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "abda9068380f1e2659c1787d598c420a72d461a81a5cb183eb9ffaedd0149753", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0a7eb3bc068231180ff70cbf53e6bf2b29542c77f05796242f8335c54acb6e01", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "14d906a39ce097034a043177be93785aaf3f338e70339c3b315d53a3e54c8dc9", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d6320ca2c7def04f715448d0bf1524947a892f15241122dd059f63b5b4e3534b", + "regex": "(?i)^https?\\:\\/\\/zdfvxdghd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "12ae51a57e38e72eef7b88b1421d773a2328449b9f306655ff70f6c858899473", + "regex": "(?i)^https?\\:\\/\\/ksdjgfkjdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d6439bd021fee4ba618664a1143d1e3feb58c2dbec54c9f52c671ccce40dbf76", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0598c3cabfc204886b45035ada9dc255512089a7d9adf1fbad7b419dacb64a6c", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9499938a9061fd86dff24cd4046f3bb4519869dfeff70b235ffba6724a5060f2", + "regex": "(?i)^https?\\:\\/\\/beodaefaegae\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5628989b2dfbf900dc67b87e38569148a862e078c9ab5f2a75bdd0da7709927e", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1b11db1218cb5a4d316f2bdc029b66f1d5f0722aded9a42a5e0a453aeae61e0b", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fe97bf135a3e8251fc1ef375046f82bfda61955eb050c7cb1934c5072891ccc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=twsskyg\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "07d76bea785918c3e2ced1a04dc5d4a26acbb3c91f4db635470f69ba24d7fa6a", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjfgjgfjfjgffgfjfjfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "32653dde9556dec81907d884418219857246c18cb1381e0ed5b7f40710b138ed", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6a454c5dad9b76b66d1876f41237155e1d14c54b111fc2753bfe5e87e72b95ca", + "regex": "(?i)^https?\\:\\/\\/lsdkfgkjdfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7c9f0ed8c586933dcb616f0f0200c3eab905101f912bb29c54fb92713449aeed", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "c33ad23df0ffd562c352021879ba8db70a529e7a5862bbdab4c0018c87296abe", + "regex": "(?i)^https?\\:\\/\\/sdfghdfyhyutjtfrjufgjjgfjgfjgf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "11a784d492ac87453fe395128ee2c84352cb1fd0d591aea56891304ed899a92c", + "regex": "(?i)^https?\\:\\/\\/kskdfkjshdnkfjs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "68e730bf5e7a79783ab536adf767a4a8540acc4083fa101acc6cd31b7b2ce2ac", + "regex": "(?i)^https?\\:\\/\\/hfgjgfjghkjgkghkkghkgghkkg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ce7d91660f82dcfd95e4182e38dbe4a0990a54aee846fb409e824612d1edca48", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "33c521df67ef105f7db1ba9b6db6f61be9d9a31a2aa48c2fb70e4c0774ea1424", + "regex": "(?i)^https?\\:\\/\\/aasdsudtsadfasghdfas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8476992477ea922b4edcd14bc20adcbd2d24bad69685becb61d051f33851d1b4", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0e8b3d4853a37a2484193f2542d3ec1c4c3cd141c9ca713811489c17f44a8e5c", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwe\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ed6c5449882bc0fa90433e82c2d2fe39dbf8e6ae772e8b4100c9bcad1c043dce", + "regex": "(?i)^https?\\:\\/\\/jhkghjfdghasfdasghfdaghsd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "71124317031f371b8054d36fd781260895c261d1dc85d79f5f8cfe45685b7a82", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0cfe4536cc1f3a1d17552f564cb986db922a3d277c66845b71e73ae9bca185d6", + "regex": "(?i)^https?\\:\\/\\/dfhgbvdhbhfdmxcm\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e6f0e0057214d5e2991bc8512898981ca57e5702899cd429243daf5577beb732", + "regex": "(?i)^https?\\:\\/\\/hotreelonline\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2bdcad6bb53efbf3dfa745381e1fd907a0b27a9d34821acfa3d4abb71a50576a", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhfgjgfjkfjgfjgf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "53bf6d6bd2025da9f4f6873fbc0278db2f655cbd0952b57e03b03eab6196414f", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e2ddca46d4ce8f0472719380c5a134d8fab392c12de34e608bdd96f1210068be", + "regex": "(?i)^https?\\:\\/\\/oakleyvotinhhh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1052c38056ff1c2c1d8ccd7d6cb2c61dd71f5ad13b633c2ccf229f6ab54f2d2d", + "regex": "(?i)^https?\\:\\/\\/masdmk2ms\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a4b27ba987fda948a0b3526807b964265e001a054fe4a1206dc9f9150a12e42d", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5966aff82b71825e0efe14df17629389fca1066fc517a277281994927b16d734", + "regex": "(?i)^https?\\:\\/\\/dfhhdhhjfgfgjfjjfgfjfj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d044536cb9a5f1c3b0dce8a8c678f6876cc4d50af741e2910e7bc7fb8c929275", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fef3c5ceaf2cc1895947ae6a0d99b83b3e3e35d7b8232cc273e9e1201214f38d", + "regex": "(?i)^https?\\:\\/\\/iuerfhfaioperuiodfjkgpuioerghiaerhi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a7224375696c8a7d5319d8e711729aa4ff63ddbd555872eda93c05e4511b4f80", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "9d165aa86d38905e140cdcafab7baa7b4969a244e0fc35a719255c789002945c", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a1943386a70a4d1ca19ad618d051ce1e662d1c14c329b21e49a7355df1eba723", + "regex": "(?i)^https?\\:\\/\\/kskdfkjshdnkfjs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2a5db041ad73e81667d71f838fee561bff02dd873a88180ab66619d35613e413", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5b003b618878bad57466ec5f0077959c30ed1df7aee64997ab66c0b6c470b044", + "regex": "(?i)^https?\\:\\/\\/6asydiasas\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "64249a0a55fd2ccc00fcd354bf36724b01bc444075104a46a91c8d9d624c6ca2", + "regex": "(?i)^https?\\:\\/\\/zdgdfgdfgrgttretre\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5787f1abb3d4b4ed5ab39ef72cfa527bda0030b438caff0f86f3b374273e0b00", + "regex": "(?i)^https?\\:\\/\\/lsdkflskdsdf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b98cb96c69a9408493b158e05dfe08a642ec2e284208e2bd9f2da0de8bcd90e5", + "regex": "(?i)^https?\\:\\/\\/moekxharegca\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d3bcdb680efd18d884b151fc2255c36d4891df432831bea5df94942d302f219f", + "regex": "(?i)^https?\\:\\/\\/dadasdas4a5d4as5d\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eb36dc55a554d19a4580fd6f7846154d5ff27f52c8d0d95f528e669da5b80360", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjfgjfgjfujgfj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0058664339750bf4adff9c980851ef7a423134d2fdb5130c9f6ca18959fc9f75", + "regex": "(?i)^https?\\:\\/\\/654465978\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a7e4a345eb5fca9a3b2c7c24ffbc7083ce09fb0f43f9a983d4f71e8aa101666a", + "regex": "(?i)^https?\\:\\/\\/aasgdfasghdfadas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2b2a82ed4e77ffd61fa96274791b38a2e44f7f8123ef5f89e4c67ff721e92584", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5b287e9d1a8eb1c23079275bb75c74f0c808479058a24f400e86e7a3943776ec", + "regex": "(?i)^https?\\:\\/\\/bafybeihdwd5rtyl4jkps3ok2xi6obmadkn2vy7dkp3jphh5yqfotkld7o4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "bc0d39a59d3fa69e5ee69a3a79b1c41f8cb6cff5ffa9e6ea5a535a4a492cd0a4", + "regex": "(?i)^https?\\:\\/\\/blogedelanaissance\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fd14772d216bd6bee02fcc625c403b4fef259eee1177aa3a90f290349ed6e5c3", + "regex": "(?i)^https?\\:\\/\\/35487459878\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e5d56f9dfb3141e15ea2a092f1a62de45d7ea3f507d1da0859fdd4ee0d54dcea", + "regex": "." + }, + { + "hash": "6a176583e8f482d39147f07dca6d283b291ec853e8648dab2559c85bb8199d58", + "regex": "(?i)^https?\\:\\/\\/lsdkflskdsdf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "146efcedab7671b013f628dd3f6ce24203fd75d036bfcd1c23d7b907cb84f7b8", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3a5a40a6554186e5f531d137a52cc94a4c138647c03b98542f31fd945b8edb9b", + "regex": "(?i)^https?\\:\\/\\/aasdasdfgsjhadfashdfasghd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "64efc9528360bf177c389a03e7d360f9b5973eb5a682f58473f1f2be1ddd3b33", + "regex": "." + }, + { + "hash": "d03bdbf019ce02cb570856e558006e0b97f140dc78f10eff3fa4879728dda024", + "regex": "(?i)^https?\\:\\/\\/mkeoxanrucatga\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e286f6d4202cf9dbb0920efe7a70a11d8555505fb25372fd27124a1a5d6e0501", + "regex": "(?i)^https?\\:\\/\\/dfgdfgfdgdfgd14125\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d88d0f60b220abf5abea0bb14b6a51d42dfa59f44dd9661f34ee5e5fe2449bd1", + "regex": "(?i)^https?\\:\\/\\/khjhjdhsajhdasgdfas21312\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d1bea6218334b35a571cc8d30f5323accaab07b0228916058b3ffe21ea8e3312", + "regex": "." + }, + { + "hash": "57b1835ca37a752894ca6bef631b728555ffdb131f328dd50707868db9f08f32", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9a2a325580358ca8de8167f394a07fa241a3e157a59ae0415f1301e60acd9c47", + "regex": "(?i)^https?\\:\\/\\/neoxmeiaegra\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4168c71e3e51807199484da209e6610b85047ac6126f575bfa5a62ff15e936fa", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4a88b27529dadaf008e57cec9447801784132ad446f2b0452feac406b7a8e6ee", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b81d6b40ad2d583275607a5a8a25044cce9de191bf30f147cf97dd594eb0f4ce", + "regex": "(?i)^https?\\:\\/\\/dfhgfjfgjfggfjfjfgjgfjfjfgjjfg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "baf5eaae5cc02f85b3aa4d9d9579ca609828c30ae10a3435adbb770ca6ff7095", + "regex": "(?i)^https?\\:\\/\\/card4uu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a7571c4e9a2c5b62039eaec1d8a1853305a771decda4f5da8b5b63e6e1fd7098", + "regex": "(?i)^https?\\:\\/\\/foodessy\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9426a2d10a75dfd97432339f3a6d2510662cac4df4a74b7a784fd86280182a4d", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "80fbeadd1e4572cf6adda18e789e7cc7822d901b0266c5c271db9e793a4bf3c2", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "58c3214eb479650b3579f52bb818d7a87aefa0ebde75786770bab5214a06f3ac", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "73c4305f2102d6225736626f8bdea5b76f620811487e4018d8f79181ce1998ac", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9661f92409d47592a55c09c19290ab47fe3259996aabc08e3d0100a2e04a72e9", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "550498444b08765a1f67e7532a5328a660cccea408505d47789a63de641f407f", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "030d9eef867d8b5d489e7296a3bb57aea0f745cee66200829444f36eb20aff7a", + "regex": "(?i)^https?\\:\\/\\/robux60kfor\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e4f3b2e22a6aa7989fc8fdef39a18df6c0e5bf3b9618322425882185ac39086b", + "regex": "(?i)^https?\\:\\/\\/renewnetmemeber\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d6a112ffdb06725960bf4e7aab102ac4245ead7dff6176807f6e77a5c73bebde", + "regex": "(?i)^https?\\:\\/\\/kingmancoolboyeqatzfj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f2879e63135358eef808e2163460c2642765d0874b66599a3d0f690eb138ef0f", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgjhgffgjgfjfgjfgjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1a8ce81d910fdeea4a452d84b736dc7e8cb99200f4075debf2b8af048f39aea7", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ae9cffb54cef568ee58ca15e1958d86420bdfe1448b9d153cd2c940d979fe62f", + "regex": "(?i)^https?\\:\\/\\/skdjfhksjdf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "967d12a5978a6ad60e6e9f47eb92009e22a885f73e62dd3427826064838e7d24", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "80838b61503ee49de8ce5037adfab644ebdec7f546af5e77bb8052dd98ebaa0e", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e8bdc3a2b27c6b603f95ac8d25027f6aaafbc143d79929b2057e09b94b2692b5", + "regex": "(?i)^https?\\:\\/\\/12365489789\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "da224dc5fa860faead5307491841e2168bc4d918bd31871a77da504342a27727", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d9281d610e15be9e8a9684b0515914527910ed5782e906ee48e64f07026a810c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+8212325(?:\\?|$)" + }, + { + "hash": "674a6e94c140ffb9aee2c57e4875c3e3088e91b4bb3934691c09752fc2cca421", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6944cde4478fdf7bded106121c5ebe563c328b2c6a133fec0a321ab8da289edc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyxFD4w5Pw3jZtczvQOYbhxKk9RQ5tmHZvlWX8idEJodPJ2RyU8ToZFnSI4tYKVnFKjUgNE\\?_\\=61dbe90a\\-b028\\-11ef\\-8c53\\-a9ceb53804fd\\&d\\=BQ5qQHPeGpTOqTnpVBIFRS5bEtNJ1Jy1omtB9y0YJ64cVTKSca9p4WS0nUDnCwdZAOU6HbpXh\\-X0lkDW5CoHAK5r1piO\\-dsbqmnKwPlOyAhl07pr\\-XKGcsrSDj8xFKiBvWTzjhu6QnJ_fFvasYgWcGCq3RWwlTiyaEfcqklU0uNg8g9qxLA\\-\\-uEv4f86K6bwKB3pgUQo50jVvW5K7UOBtNYdI3IayekZc0rPK\\-9MNZOsTtnLtSOHvYz7vlGq8WkKGIEIuSvBrw6gw_JwFVlLWlCvOoPuXNhmg6IU3zy5NghOZlqhYzNeCQcngP2SUau7Th72AVY2L_pgfPyogbzRTccaeTtOi\\-6X4qZ8MkLFLFZG\\-RbY0\\-ypR6kn72WGaw3ycJ5PRu9GRe\\-algdPHLXH3Kq61NzYgPCRm3Q2rWRU9SNRAP\\-X0Ryc2rWz_xNcnKG2NA1TQ5DxgLsjuZ7ILnL5gWhTDE8is8HaEhZSRdtp6WcXi5YGPXmDmOGm6r87Y3ztRYbNrg2m\\-kzIZx52exd1K6in7tpP17IE2sTOgfNnveCQSx\\-Qkf1orVwPi547Bak\\-P6K\\-nGq_DBNT6V\\-VACTWTn230LNnSmKRItRiYnbmHgyWWg0g1qXSI8wJOvcmhZRQ64Lwn9ANGLtlTdzaw7kGjBM4TuOzuWDkgAFGm0WwwgiBRXQ66wVijai\\-5rAq9aTqxPhf05oeNbJVfvoF4SGTGyadWWyt\\-tN98pkoODuCZKI_c7K7OGiFP9Z1dPzkQ77P1Rsz73rGF\\-K2dbZRkVig6ZD2dtVQ2KwgDH\\-42q1gVk7mxH\\-UGgcyJJyVg8O6a6WD2V5o0myqNK5hdikAoBkYtnXTyT8Rn1xvFrAtp5VD8EpLWEMt_SUiiERQCZcI4U0aS8k7vbgePblfOLkLaS2wd_f4C0x5o2FwSalK6VVwEYi6OVFZTNu9KRQ1sNBPP4OU8ACVNR7oBI8G3ouBbsl90ZyoirtkyfEQpwZf5JppeZNHZzbfmKmmrmyv9GfqfkfFG_WcJPYIXu534IzG1KEHkg4A6FqYFker3rqz4CGR8Qf7jxUFlvVUMFBq7uIPj1_0vLDxfGHGYyAOg1L9Wfm6LJUr2OGIJan\\-tmi4aQrBibN_l26FRARwOMU_GmHuvW26sNzenxevnaF5c7EjVxcoObwcmVeXGmG1CpPQGX4M7iO21diRrsHaYYo0J\\-Aya6\\-7jV5RksCCHGtlSLnLw_GnspHdP_9bsNiVEygQw39M\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "5f6fb718a0324ab382334e920ee081a05f2d2fe1def2110eaf399c2b5c826f49", + "regex": "(?i)^https?\\:\\/\\/asajsdghjasgdghsfad\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9647c1e96f825ee3d53ec5777d321646d03e81a839a200ee1d9db9483eddd775", + "regex": "(?i)^https?\\:\\/\\/rncoaemcatbaae\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "995007d9d54d68e1a57936bec3e704f6c5255bdbe323ff80b2bf98e48da4389e", + "regex": "(?i)^https?\\:\\/\\/54488654\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a0accf2bf0b48d8514962d0915eb397f69c5d85219d6e5ab8c4a9d50e00c8f05", + "regex": "(?i)^https?\\:\\/\\/zdgdfgdfgrgttretre\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "793b5171c2f5f0fb57635c12ef90727f90a4c041314511ec417d863cb7b3270e", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7ece424aeaebc21e705fd90f94d3c3b8e624eb840c247c2ab5e22c428c175fcb", + "regex": "(?i)^https?\\:\\/\\/ksjdfkjsdkd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d6fbaffbd4044dd35abd80b3fde8028f6dd8b5b8e4f44a53eb0fbd7ad4673aaf", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4ee7bc53a3cc6ab43f10281d9f9ac065bf0cf8b9be765a9d8b5fe0f351d929a4", + "regex": "(?i)^https?\\:\\/\\/mpliy\\-lo\\-xtgsuj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5fa9c20ca38288076a122924264eeb681bcef3afac10f64619e73e025db202ae", + "regex": "(?i)^https?\\:\\/\\/aasdasdasdhjasfvhasjfgq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9106380c21ca08dee90f6a51f3d7b664ed71cb4aa299207c6705e03a51769860", + "regex": "(?i)^https?\\:\\/\\/kghgdhasjgdhasfdasghda\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9a02d8d2a9588cd2fcf9d34f5b5c3fd2c8f82a256800783be48cc551e0b9648b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=129857X1600501\\&url\\=https\\%3A\\%2F\\%2Fxfinity\\.com\\%2Flearn\\%2Fcima\\%2Flogin\\%3Freferer\\%3Dhttps\\%3A\\%2F\\%2Fredirectapprequired\\.centralus\\.cloudapp\\.azure\\.com\\%3Femail\\%3Dsuspect\\%40safeonweb\\.be\\&sref\\=inbox\\-shopping\\&xcust\\=mail293d185efb4437f9c640ab3457f7$" + }, + { + "hash": "772110b99bcbdc4bf01d2377114c8aec1305a04a14cce3887466ba32840a6c2b", + "regex": "(?i)^https?\\:\\/\\/aasdasjhdfasjdfas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "098dbf756f9c5473fb1a4da5211c94707ca8268267457f3bd15b1f78e86ff876", + "regex": "(?i)^https?\\:\\/\\/dfyhrtuytigkghkytuikghkj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e18716a0e05d9c6b4ba1241469ec26560776a1330750c943887afaa5da588955", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "353c7290a9b250917383441d6c92cdbdca149c22a2c21ac7237345eeab94c0f3", + "regex": "(?i)^https?\\:\\/\\/sdgsdgdghdhdfhdfd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ca891788668a3518ef128c1dfb10791d055186146b6aeaa419dc49b97e61a6ee", + "regex": "(?i)^https?\\:\\/\\/robux60kfuesc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6052897c373bdf868fe19d99578e85f76a2a76644fd87d694efc460779d739db", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c1f5a64de1c97b16c4a7145155dc9123f28dbb6d4d044c0150b6fbcb041229ef", + "regex": "(?i)^https?\\:\\/\\/cafe827\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4fafa48318bbffe267704224210e894450f645d99e3007a3ddcf107c5cfbf237", + "regex": "(?i)^https?\\:\\/\\/ksdjgfkjdf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b0fe70d13b41ad867ee1a7f6f41dac5fbe2d19f7f9a6b91230965160104d290e", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "07a93d8ce4b7fdcc9c542e19ba479440bdd1e4c8c4902d87455251ffc64ff836", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "beaa5202ad9107c133a3b93744f8741a206b3b93def2f48ba36044fea5fe1399", + "regex": "(?i)^https?\\:\\/\\/gayhotboy2021\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "48050ae3f26df64bb4a0a5208f2635ad02d9c8b15e3f27ce99f5644baad7a6fe", + "regex": "(?i)^https?\\:\\/\\/nemxmeicatca\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bb9cf33ea7a69e2f6cb492678a761acb7596e1a052ef352da2c8bf7574f3d23f", + "regex": "(?i)^https?\\:\\/\\/jsadnjsadnjkasdnjk12254899\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "87301ddc17bf9a4a3886d39ce332591aff86837389ec328199c2af77a80ca670", + "regex": "." + }, + { + "hash": "315c6bbe6ad0c0e17b1e970c85bae73029e7e905abf7f49dc15cc1326904618c", + "regex": "(?i)^https?\\:\\/\\/konkows\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e66cf2e28911dea65fe0379652f07072efb46338a281d56967ebe664a3e414dc", + "regex": "(?i)^https?\\:\\/\\/ijksdhkgjsdk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "62e40807bab56dbcdb8f659c53f66d0ebae7beec67ec24f6ba4f6bd7e2daa91c", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ae00f8d5ca22a024d18bad9558de306add711b0e929c28a5b3735267a51ca614", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "082e9b11993b01c9d0626cb8e375f0713a4e46d55c06b01637f09742e3160f88", + "regex": "(?i)^https?\\:\\/\\/fgfjgfjfggfjgfjfjjfgjjfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d541f982063fb7081e86782b37c037c8500183718008f3d18dd6f670ec2eac14", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "83df6de57dfcc9032accbacc22d396ea310110432a6089e2b4803a2d7d36053e", + "regex": "(?i)^https?\\:\\/\\/dvfdsfdsfdsfv22\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d9f0c186b98649f91adbb1b6c3fa7824b1ba626827b2ddaf701e8273d2e6a16c", + "regex": "(?i)^https?\\:\\/\\/lsadkjfskljdf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "84ea738ba0809fd2a4b1b90787ed1b6a6207a69cf4c67ffef1b8e7490f81c995", + "regex": "(?i)^https?\\:\\/\\/talkwisdoms\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "78381d975c75905fd1a40c7aae9bd5e0283dda909355977f2175c6fd1568e324", + "regex": "(?i)^https?\\:\\/\\/sdfyhderturtufhgjufgurytrytfijgh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6fed29c7b6ed092ddb18e764b126c8d1c7223ac631a20d0fc08624804c7162dc", + "regex": "(?i)^https?\\:\\/\\/robuxfed60ks\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2b8b462126e8c2ca51da126380c84885563559ae81e303bc6cc50f8ae93906b8", + "regex": "(?i)^https?\\:\\/\\/aasdhsafgbzjzcjasde\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1a7d50b55b9e184cff52ce6d939fd7377c8eb47c897ab2b08438f74d1c810f6f", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ff05232bb4b5c9e7e301e99348b2ff6e55aabc1ae6c740c57e69b0fbc19f7e4d", + "regex": "(?i)^https?\\:\\/\\/54488654\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4ca46adfe26360ffa3c6b7724177ae3a50731b93a4b6b02d349e2e371ec6fd1d", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjgfjjfjgfjgfjgf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "62425e6222c292e6837156f807a3b8c8cef2379027e9c07ac8b49d6beff55c1a", + "regex": "(?i)^https?\\:\\/\\/kghgdhasjgdhasfdasghda\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2410abe19d0cc0c75e036acc592f548d5aff86ae22c9210b4fadf18866ce7bdd", + "regex": "." + }, + { + "hash": "8c01d7b12ae7055e706c1070ef0976a11566eada5ebc9d26a0e10034861b0cbb", + "regex": "(?i)^https?\\:\\/\\/dfhrtfuytrtyrjgfjgftfigkgykgkyhgkgh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "64a05cac7aac860c321494f86b0c8893639dec688f452cea761533e7bfeef714", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "affa891f294c68b1dfcc558ebb65e676f4d7754642e95d06cd8b7b2e7d8fc5b9", + "regex": "(?i)^https?\\:\\/\\/35487459878\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4a1bb07b314c74e5b963e4e09cb66d96d5d94afefe150dce99bf6db7631b1b80", + "regex": "(?i)^https?\\:\\/\\/gkjhhjashgdashjdgashj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a1930a6a75d5cb057036aaac7fb533ee13595eea04c4f602109bff87628fc8e4", + "regex": "." + }, + { + "hash": "14b305c75d9efa2aee96a3e28eebc8c7f01e1f92901f8c53eb7ff36dc69051b8", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "aee029f3fcc9389632d045cb13d24888dd1335c6a8721789195c68c150f727ed", + "regex": "(?i)^https?\\:\\/\\/oziutryozeifhzeioutheiouthzeuhzet\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b58445bd107c209bedce1bc76e12a98eaa67f2d667967bc65b30fefd73ce20b6", + "regex": "(?i)^https?\\:\\/\\/fdnetwrk18kw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d07524c983b56c05ec79e2239ab8eb2e19e44c414c7b6ff5e521858127fe1460", + "regex": "(?i)^https?\\:\\/\\/aasjdhfadfasdghasdsa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "de9ee7de3a0a651015dc1ec890cf972f613d011d4297d2fce5bab01dc9aed918", + "regex": "(?i)^https?\\:\\/\\/dgfdgdfgdfgfd55\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "428ef72fc05b26cce41c791205bc1f4e84a2388fc449bda6c6b3ce570acfe2dd", + "regex": "." + }, + { + "hash": "94564fc59b99da8c32701b024f79aaee0ed66b65b11e478186bc3e13c779d483", + "regex": "(?i)^https?\\:\\/\\/dfhgdhftgjfgjgffjfjg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "308dd1d2c7e0fca708ba5319cbac377db442e2dd85e3cfd12373a4c6979e3afe", + "regex": "(?i)^https?\\:\\/\\/aaasdjagsdhjsgadhjagsqweqw\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "90facb7b8b3976d0ff079d519c01de2ebba05a058b7992354eb56cd036e6b406", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfffgjgfjgjjfgfgj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ffc49de4c132a307ef42ba532ecd9370710bc5623cd75258512a6d7eaa124f1f", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjgfhjkghjfgjjjkghk\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "073f4054c7e3e0c4002f41e3135b6cdc2442827fd631cf04baf4bd2065080939", + "regex": "(?i)^https?\\:\\/\\/bgzxahagdhjasfdags\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c1e8de4addde19eaab640702c68eb7d1aada6ca899f80ac4659bcb252ae3e17c", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8c23a4731e75e3d053d6232a5cf8e22599f59956867d7a615caf7a39173dded6", + "regex": "." + }, + { + "hash": "cf4b239b144bcc940ae0156b06077abafc9c26bc4418046f559ad0b4e8acc37e", + "regex": "(?i)^https?\\:\\/\\/jfsdgkdfj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "004ce36d07712c6b16b3534ed242afe97152713402706c6efb815e2b25f795ed", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a78cfb2b5ceeed21e3da814d1db04f87037d0a61ed8d71c7ca0428df846de549", + "regex": "(?i)^https?\\:\\/\\/cookinginspiredmotivatatechiefs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "451d81ddc023d4c05e2c85abc3578e0fd8127088a09ad73c847931a93cbe22f0", + "regex": "(?i)^https?\\:\\/\\/bafybeifg7cksmwzu3b3adx6m32yoy6nhvsn3bwvhgzoosbmqsa6gmdyehy\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "2a8d4a5d895161b0928c706bfc63fc6b7a98c6de4cefbfbda53d3013224bbc73", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjfgjfgfjfgjfgjffgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e5c2a94a20fb2ab08a3c5549a538c33f759224495b187ff6ca5cb9239077ec82", + "regex": "(?i)^https?\\:\\/\\/hotreelonline\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cba6bb337241980b54052574002c6c10ee10154e665ad9750a95b2585ac89482", + "regex": "(?i)^https?\\:\\/\\/fdgnfdgnkjdfgdf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a5fdd27760a65882a7082c20f5d25f12a0dd509c7951fbf3192f279e345c3fce", + "regex": "(?i)^https?\\:\\/\\/robux60kfor\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d3bc5b1b72f9ea6432155a1e811f4a92840759504d4371c21082ce476c880fd8", + "regex": "(?i)^https?\\:\\/\\/ghjfgjfghjkghkghhkgkghg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f8dde41630b69b432395b134aa69581996851010571ed16555ebb0335bc9d4a8", + "regex": "(?i)^https?\\:\\/\\/bvelaeckaeva\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e9ac9e6c4f9fd56c9257ca2f1c82fb55b78bb7b7d552bb7bb9bd737bff66e6c9", + "regex": "(?i)^https?\\:\\/\\/aaasdasdlkwqeh21\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8a76d7fc3209620da2887c39e5699e7b7d0cf6b6f8df33bf82d084d638b227f4", + "regex": "(?i)^https?\\:\\/\\/gfffasdasdasdasdasdas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9ad5bf35a85746064127bf56a57ca264e11b2406f35aa308631137f8e5166cf1", + "regex": "(?i)^https?\\:\\/\\/fdgfdngjndfgj15566\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5e1f63fddba675942ece0f397042262a0de18f41af8fe0fabb32fda7a30439cf", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhfhhhdyreuhfgjfjgf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1a2dd00f751b060b8e631b19644002146aa81175fcc9fc95cf08b9e066449ff1", + "regex": "(?i)^https?\\:\\/\\/zoieurfipzeufqipeufyhezoufheartfa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "88eae2c5cb554994e5889c65e49efb85665853ef89c75ad626bd11c48b58c498", + "regex": "(?i)^https?\\:\\/\\/yhurtuifjfgjfghikhgkghk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7b25c4df59d935c8f6914e7a3720ab43fac44dc990b9b226a8b6152df120a9ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=dejugc\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "9c2af91cb7757961f18ee39c20c73148a9f6041485a36ad3a8d29c65ff08ae13", + "regex": "(?i)^https?\\:\\/\\/mgfhjlgfnhjlogfh123556\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d510265c63801260fe84552533bf664a9fbdbb583664c0101f140f4cd921de58", + "regex": "(?i)^https?\\:\\/\\/freepromod101\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6256ec21bc1f79153f0771f74ec8ae0493c5c1f5452d50d116fef2dcb0ad646a", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjfgjgfjfjgffgfjfjfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f0079d28cc2e2db849467e9e4fb5e3a3d227a8163322b0fc2fd01c60fb8df26b", + "regex": "(?i)^https?\\:\\/\\/duongdz96\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9b136145e7fe03d02a93787f363e83393fbce9c059ea074d8875ec7eec03b927", + "regex": "(?i)^https?\\:\\/\\/dfhhdhhjfgfgjfjjfgfjfj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "710ea33c06d8ebf1707d0125b6393a7efcf50f4cb6732ea32d88569daf2f66f1", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfffgjgfjgjjfgfgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bc4db011c9ea5b471568c102ae50872628e64a047878f2307f4e6b14ad9b122d", + "regex": "(?i)^https?\\:\\/\\/ksjdfnkjsd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "460707ec30418ff23b2cdc473c842cf2bb6a4039ad228e1c64d81508940c0f04", + "regex": "(?i)^https?\\:\\/\\/aasdasdvqwfeghqwfvdas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b8168f3a594bade3869ad98f763a939daf20e11bb1cd1174ef466f94a7bc064f", + "regex": "(?i)^https?\\:\\/\\/lidoficlaimaidr1\\.serv00\\.net(?:\\:(?:80|443))?[\\/\\\\]+lido" + }, + { + "hash": "7ae30a83b5493334c9737169fdbeb1b8249a2a1467da11ca1825bf716cf5a242", + "regex": "(?i)^https?\\:\\/\\/rncoaemcatbaae\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2827e80faa52160f0b157e0f7cda11a236a9a82a06cbc9d1ea6142cb2bad5bcf", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5e8b3f4acfaf51cd75f10379e20bcb184fc0b73687afb936ccdc3feda9e0f20b", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fc306229673528e98f57b198d52943ae8442d86d900073ad6347c9186a0cc533", + "regex": "(?i)^https?\\:\\/\\/sa\\-mga\\-gusto\\-sumali\\-group\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6e811674c9f3b852b4bc4ef552123e6d3e81261790e9a2501f9dfee493180786", + "regex": "(?i)^https?\\:\\/\\/9i8uisdhkfsn\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "acf47c055d9b9dd803508fa99d3feb698d8666030b36bd86ec6c929fcb246596", + "regex": "(?i)^https?\\:\\/\\/aasdasfdgasfdgasfd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "faa502e9c82a5e89dd77ee8728f019798e151c21c86a26acb31ca5b4f2e6d967", + "regex": "(?i)^https?\\:\\/\\/jikhjkdasjhfdghasfdgahs\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b471e2237029aa5ca33252f26b522d16d6aebf9fe0b3774a94aec1e5dfaacd77", + "regex": "(?i)^https?\\:\\/\\/aaaasdjashdfafgdasgdfhash\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bb7310166d96531d9d0bed278eeb59501d095ba0e9c28cad137a649f5f4a585e", + "regex": "(?i)^https?\\:\\/\\/jshdfshdf\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e8a85cf6ec22f822299a1e4da952779aefb7ef5ddc93b4f27f9c11984709b15c", + "regex": "(?i)^https?\\:\\/\\/gavayalahaba\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f437471780aa2e870b476108e675b1c9cb731d7c5c8c822aa3fac3c0fae7cad8", + "regex": "(?i)^https?\\:\\/\\/hdfbgjjkdfjkl11\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e0004c1655bffebdb22cf7a6c610ee0f7c2cb70e5c164afaa44d436eb746bc92", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "13aa76946a9961b74c0497a642a0d2e8e18c13ad942b2f4ef0e79528433c2606", + "regex": "(?i)^https?\\:\\/\\/robux40kswae\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3727cdeb6c4e508bde28db0531ffd292a237bade527b0695bb2c1840b3630281", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjfgjfgjfujgfj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5015be8ea7cfac3de561200c98164f03203843657ff1fb461ce1f0476104296a", + "regex": "(?i)^https?\\:\\/\\/oziutryozeifhzeioutheiouthzeuhzet\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6ebebb33711098c4d473ecc18bc815f691a7444d8dfe0a9aa8511e65c4fbac36", + "regex": "(?i)^https?\\:\\/\\/zoieurfipzeufqipeufyhezoufheartfa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "34c07c2096b35d3dbe4481d3e8b03d860ab5d36c192f100b9edcc52f7e91ce07", + "regex": "(?i)^https?\\:\\/\\/ableh\\-com\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "617d7e4da9bbfe78c9c2b64f46192978f8b5616f3994833fa11e335ce5df9080", + "regex": "(?i)^https?\\:\\/\\/oiuosidjkfjskd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b4d5fa4b8517fb39ccab0772c962f37c80a08bbbccae90393d60ade89ca3fcd4", + "regex": "(?i)^https?\\:\\/\\/sdfyhderturtufhgjufgurytrytfijgh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "75dfcb75f258aced87e7c8fd7a75263cb8915616cf13489f420d2e06a7ebe26c", + "regex": "(?i)^https?\\:\\/\\/aaasdasd64qw4eq5w4we\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "21ed90b86cf4a9bdcc1e1e308e809e3ad3713b7211c3b295bdf24b2d2e0132cd", + "regex": "(?i)^https?\\:\\/\\/gfffasdasdasdasdasdas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "856e0312a3751a33fc836d4b0875b1d951035348d50aacdf0c2ec078a67dd824", + "regex": "(?i)^https?\\:\\/\\/asianporn\\-online\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "70ecce3532e3bdb5886366c822c3aa1f1b7e3623ec40acca285788b43b1f28aa", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjgfjfgjgfjfjfgf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "59665d0d7288b3ee7681353a0f9de55c1f05ba568d7880627c8eb32d0f4a94b2", + "regex": "(?i)^https?\\:\\/\\/gfdjkhkasdgsahgdhsjad\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "337ce21879d578a204785b13f8e07b9193586c8250ce56a461727af64db37d92", + "regex": "(?i)^https?\\:\\/\\/gfffasdasdasdasdasdas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5ecf03c96c78154082141dc2372654b3b4f2830c6d9eec5b17f759c5b15a4e1e", + "regex": "(?i)^https?\\:\\/\\/fhdhgfhjfgjfgjfjfgjfjfjfjgf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "222a03a5d340522dd1356b64c277c76dc9b04885d6a3b2e50fc979f593460d7c", + "regex": "(?i)^https?\\:\\/\\/aaaasdsadsajbashfgashjf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5fa2013d43547fce02c168a7aa4a8d13b95336cfca8e46356603a8ed80205797", + "regex": "(?i)^https?\\:\\/\\/bnnmoemxaeta\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "72afe659f1513ec66906141bfc1ef2483dbce274dbe0c4b1408586a586faad34", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "04c87b7896d05644c037cfe1c9d8c6d80ae1b4596287b5801985a28eb65e0a4d", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjfgjfgjfujgfj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f227593ee7946da8d65d1fa7efb61bf8908f7babb2b00b3a1e01986e5c8cbe01", + "regex": "(?i)^https?\\:\\/\\/sdfsdhbfhsdbjkdsf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1d70b4f98c6ce38eb9355e5579945f268d36c1d3d65cbb0c5e66be2399f79df5", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "13552f5baf588b80c8af40b0c169945409e78ae9b7018539dd4c9c968b46c419", + "regex": "(?i)^https?\\:\\/\\/robux60kroix\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "53ea18fdae9ad801076358de0bef45f3d499e6dcdbd0f88fef6df81d7338bf9c", + "regex": "(?i)^https?\\:\\/\\/ijksjdkfnskdf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f98477bcdb30a6746e2788f457a2ad5062896566cbfe8dc52851570f8db2c561", + "regex": "(?i)^https?\\:\\/\\/ikuhiujhskdjf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a380cc69444f0a6255013d06391a92e212146975e7fa3e03a8b86636a4e266b8", + "regex": "(?i)^https?\\:\\/\\/ksjdnkfjsd\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "813c50f46455586cdd62ec7a91ed85915fa4867f7885acf6cf8d7959056724cb", + "regex": "(?i)^https?\\:\\/\\/skdjksjdfgd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2fcc62688dc9ad784026c75c101f70d35b19dbe27dd4f080cb622bd7ec22d54f", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdcvxvxcv1144\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f90969df249aa268de4ed1392f60a078746be4945236cea2c5ec92042d8a80d7", + "regex": "(?i)^https?\\:\\/\\/aaasdasghdasghdfasghd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "82ce21eee573170243e4cf60893d4c9319e082d0d6688d1e83cd184159264dba", + "regex": "(?i)^https?\\:\\/\\/jfsdgkdfj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d7d039381cfa84dc86dbd419272140b237de7632bbd3b614d11b075691f0e9d6", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f1ce61bad4baf7370bab880b0b8a4bdce132bfdb70e422b12bd5bb81b9f1744c", + "regex": "(?i)^https?\\:\\/\\/aaaasdasdjkgfsdhfgshweqweqw\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "afd3935eaacb47ca63a59e5d46ed47ee16b1addc5ec675d789e09404ab1463bb", + "regex": "(?i)^https?\\:\\/\\/prime\\-renewalappscase4\\.216\\-194\\-173\\-104\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5b90b64ca6c3c41dc9b117ab72760d40acc83bb8250e33d449d373f431984f02", + "regex": "(?i)^https?\\:\\/\\/dghfgjgfjgfjgfjfgfgffjjfgjfjgf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "948ffcb65f302fa83ce4dec7e20aa26f76823646724949dd7b9e5c45ac85a21b", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "26a9c063f1f844fa2dd4cefc5f7640f8c41c06f88cd64c3a9f58ee63588c6360", + "regex": "(?i)^https?\\:\\/\\/ssdfsdfdsffsdfxcvxc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cb274e213a6b5f6049b04e4a90e28dca2e247db8bc5ae798feb491143012898b", + "regex": "." + }, + { + "hash": "3af01f6c083ed79e69eb5a0e910f73f1dd9923e4c60076203c59129ef067c404", + "regex": "(?i)^https?\\:\\/\\/mkeoxanrucatga\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e10e5c47fb0fcaeaa4e6b97bb2ed4714c7f6e12fd884439acd94672f96ed340c", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d2d1d9f8ae3552be3402e1e6c28463477d58b62579bb24ce371c26e7f913e718", + "regex": "(?i)^https?\\:\\/\\/instagramloginaccount01010638357\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "29b32822a842e2af1553e36591fc5a539bf34db7b857f6320a8fe9d5e49bae53", + "regex": "(?i)^https?\\:\\/\\/fgdfhfgdjgjfgjfjggjfjfjfjfj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e12f16341e0e37715a1be1d21d650730515571e3f21ca4a2758337897ac5ac3f", + "regex": "(?i)^https?\\:\\/\\/masdmk2ms\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "eb90d9ff5769e6d917db2e1288a7ddff47046507ad6ffca1ecb94e544ba81e30", + "regex": "." + }, + { + "hash": "35678be82a4005eb7c5c47a72468cc85e033bbb371fae38a27f02df06d8f0700", + "regex": "(?i)^https?\\:\\/\\/blogedelanaissance\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "01c89c78d3d10a2878f2dca14bb12081f37a89a058e2e87f9142251066b196ab", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjhgfjgfjjgjjgjkhgkhkg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ffc40f1dbb050b2dd395c909b9e1c47d62bf37e72b452e8dacb04c8322beac2b", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8c2b7e9dacd9dc68e3f47a36523ee445b8d8a8def43167273af2681ff1d47d8d", + "regex": "(?i)^https?\\:\\/\\/aaasdasudfasghdfasgdhs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "794ce8bc369b1ed16a6cc60cd931b0164a984ee4538d885dcefeacf578283e16", + "regex": "(?i)^https?\\:\\/\\/sdfjshjsdhf\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "762bb5ab042440f227d9bef888ac205413e2eba2a678fc5279f1afa78b10ef71", + "regex": "." + }, + { + "hash": "2c3f5fc81433d9711089ff20d2970eda9165ea45137459c680dc63c7665d2e5a", + "regex": "(?i)^https?\\:\\/\\/sdfyhderturtufhgjufgurytrytfijgh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2456509d83b9a618c068a1709bdf4ec092c5139afe8b98f9b6238f58c9873c23", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "41761c983479c4a3952528bb9b64a0557d67dcbacec82cd416ad7f14de36bb25", + "regex": "(?i)^https?\\:\\/\\/rncoaemcatbaae\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "493b7fe0441dd31ed5ee860b7c7305ba2d540db333492308a821e12702d0f194", + "regex": "(?i)^https?\\:\\/\\/fhfutrujgfjgfutrfufgjgfgfjghjg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7dd7ffa3bad25d874f1c99355dcfced00323c4e5e2b0635bd25694538b704622", + "regex": "." + }, + { + "hash": "a22079658de9227f5be11695f336a31280187cbe3138d72c8d4630dfb9f1173e", + "regex": "(?i)^https?\\:\\/\\/ghgfjfgjfgjgfgjgfffgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4917738a8e834eb3a42fbf5e07f0b2c0f57950324748a623816486c82ed840bd", + "regex": "(?i)^https?\\:\\/\\/dgfhgfjfgjgfjfjgffgfjfjfg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c0d2e6ada6502822a4276d2c287c7002693a07f4840c3dfc9686413cba72b9dc", + "regex": "." + }, + { + "hash": "522fc53f8da39cac17e3537c1f6dae022332105601e6745525c9afb48c5d16f8", + "regex": "(?i)^https?\\:\\/\\/dfghfdhfdghjfgjfgjfggfjfjgf\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bfa8b20f82cc3549035fbcfe7d32225406ad58b77bdaf2985d2f9d803300ed48", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5d5146e00d28cac41cbc4ea881e229ec57cba934b4f922b159aeb212e8ca2a07", + "regex": "(?i)^https?\\:\\/\\/dfghfdhgfjfgjgfjgjfjfgjf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3d1c4fe87b9f2ef415e16612dd8d3c490439385323539bd34c974e68b6d06d72", + "regex": "(?i)^https?\\:\\/\\/moneixarcarae\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c035e04c8268bbff3485b2a1cd39a2b10f8cb35473549746054ff85ca370d8d9", + "regex": "(?i)^https?\\:\\/\\/oiqsufhieufhipqeufhoihfqerfafe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "902f1c0b7aa82259da68bbcbdd12b7980969faf88a5ec85cef5d32e303dd2e9e", + "regex": "(?i)^https?\\:\\/\\/aasdhasfdgasgwqefgqwfeq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5fc5d282da1ee24483449e40603d9d16e58e75d86ca9ec2ef090aba32fb514a9", + "regex": "(?i)^https?\\:\\/\\/34594678\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8c5fcfd87996a0d7e892425e71307fab9540a93aca0531c07e6b7d283473439d", + "regex": "(?i)^https?\\:\\/\\/aaasdasdlkwqeh21\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c10782fcb90607041c5c96ba6bb5cf7cd3e9fe214bdd20ff01bcc84063b6f52a", + "regex": "(?i)^https?\\:\\/\\/dfghfdhgfjfgjgfjgjfjfgjf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "baf527f9e8c7073296d9ebc6040fadc4b70ca7823b25037c4d804f14800ac00a", + "regex": "(?i)^https?\\:\\/\\/odfqpsiofzeuodfyqofuqzeufqio\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "710ea166baf65a71c94f3e535d86b4db33ea600eb4daf2c10877a9680d5a167a", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ddb8fee4b4a165fca5f8a8b2d2a65ed5b2eaa271d80bea156326b6e539fe7546", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcookingprogtamadvance\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b81d10d21960c33e54f3c15d0bc30c46c399eb563a2e3c6af84e97a1f78d8667", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c96b5c749cb7ca8b48f78c17ff9376d4d44cd9bcae020ef29bec1ce426d0fc6d", + "regex": "(?i)^https?\\:\\/\\/dfbhjdbffsdfbsdf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "15ac0030c1310cd119e1fa12c7ee8a80bbc39d45f26bf37e2492a72b808376aa", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fb1b828ebd6b258848b688a138c91051d59e25075f427388149e4940f55a1b03", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "15700f695f10b476b3d7c3c99cc3bfe26753c6e5cc6f67983ec0aefc10dc00cf", + "regex": "(?i)^https?\\:\\/\\/hdfbgjjkdfjkl11\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a486382373d9372438f647071df3945cf2c8a938f5b4f987890fc078a942a129", + "regex": "(?i)^https?\\:\\/\\/yochana29\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "446f0d62a9d5069a31c2959f2914d0f7b6de54e3affd9ff15b770a7b38e1157a", + "regex": "(?i)^https?\\:\\/\\/dfngjdfnjkgndfjkgndfjk145255\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e421f116950ca2467e47ddd2412183a18394fd726e855fd304e6420deb105626", + "regex": "(?i)^https?\\:\\/\\/djgjasgdasjhgdh21321\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7612f8cb4c652abb79385c27d6f6e080a160292435d3833727b789908d754045", + "regex": "(?i)^https?\\:\\/\\/beautilifedzipq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "61e08773b78a764093e78667502154d3a965b417e157f1cd09a859bad15e05b2", + "regex": "(?i)^https?\\:\\/\\/kgjhfghasfdghasdfasghd\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "8ce158c7e5c04b4f790aa4e66d3473cd721de865e046d211f3d6450da30886de", + "regex": "(?i)^https?\\:\\/\\/blogedelanaissance\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2444da95e1a8103f8f7ceb33898430f501a3975f5a18eaeac28fb9f3db5be76c", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d30130d8431fcc72408bcc053502a29cef9523de802b860e5be4f408ed10d1d3", + "regex": "." + }, + { + "hash": "dce1ceda4736c609d65f2161e033988e60a1d16cad6aa8e8f56c25460aada3cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+paylibserveurfr" + }, + { + "hash": "842976ebff964154d2bc3c72f751a31066f0a15d2f869b2630ba81a7611bc42e", + "regex": "(?i)^https?\\:\\/\\/aaasdasudfasghdfasgdhs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0d3c9bc95ad63baa81f63665f02f6ab516c3397240bf763afc956961aef83d98", + "regex": "(?i)^https?\\:\\/\\/aajshdfasdghfasdghas\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c88dcc07bbdd8f9f4e8677414f9fedeb83806939b2716494b2b40db1da927ee0", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "184c57bfdc4cca1a689452d10b69d5a3882cda3af7d4a3c94e8e0c6238b199ff", + "regex": "." + }, + { + "hash": "ba58c225a1b4564b4f898c0ff9961f894704875b4b16c76dfa9bd01ce98e5869", + "regex": "(?i)^https?\\:\\/\\/dszfzsdffsdfsdf5565122\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "242236440e2d893d5a3fcda636ac544593a5749bffc77c64a193d9363f7952b7", + "regex": "(?i)^https?\\:\\/\\/robuxced60k\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "f5a07acf995b1dde613a8dd5317033585d172229e5f6811d08ca2af4e88a71f9", + "regex": "(?i)^https?\\:\\/\\/dsgfvsdgfdsj123452\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5c902ca1821a81a3250b5cf6094a7accfbaa9fa6869df4df72537723413f2e6a", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5b203c0f01260405d84d43c2d3ab4960280890308a5624c858968d131fbec631", + "regex": "." + }, + { + "hash": "367ea4b18c84f4e2fc02737475b7c6c27ef98383e5dc228ca3773ffe7b7839ac", + "regex": "(?i)^https?\\:\\/\\/ableh\\-com\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cfc542a7a4556db80e9103b10634d8281a0d7055bd29acb97ca212d6f1cf5675", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhdfhfhfhdhdfh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b753d9c8bdd5ed726e202c9052ee02179c01b3c3344b844eae3eddb09936724a", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdcvxvxcv1144\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6481ab8eaa8aa9020b1248e7d30abe6a369f1d35f7ba12ec95e036e5d85517e1", + "regex": "(?i)^https?\\:\\/\\/jsdhfjhsdjfhd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "06ba2bacef7291c0bdd5a830aacf906657dc943c1780f0bbd90c7492fefaef3c", + "regex": "(?i)^https?\\:\\/\\/hotvideomoihub\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b23b8b7222723c5cd1126b9d5245ac78ef1c3ed57bfaac1341b39d997522045e", + "regex": "(?i)^https?\\:\\/\\/wcmasculinesecrets\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "01008c1bdff418e70690ad90514502486d15a065bbd4460c4cad208085c0e037", + "regex": "(?i)^https?\\:\\/\\/robux60kfuesc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5f1963dcfb580352478ce15849956fefb66206bbf887d86fd0b93c75411f9d65", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfgdjgfjgfjfjjf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fe17f33b1b6ea5ce303268ebeee59147d25324f51fa2092949575823b2db500a", + "regex": "(?i)^https?\\:\\/\\/fsdfsdfsdfsdfdsfcccc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Info\\&a\\=index[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "ede9b33bb5bc9d317483e8b5b387b6be83c058d2073855faff889fd5b1e6c4d7", + "regex": "(?i)^https?\\:\\/\\/moekxharvac\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f921967088ae8681dedd7d4ec9ebe8b77a2fff1a08b665d2dd5dc4cb28fc8c47", + "regex": "(?i)^https?\\:\\/\\/sdfjsfdfjksdnfjk12345\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "39f2e5964e38b009d3d6728379c78ef7ff0ba3dcf2451ca528ab142a0470ce6c", + "regex": "(?i)^https?\\:\\/\\/dfgjhfgurtfufjgfghghgh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2401e816a764a812dec5695ca0a84bd37207ff0b26c20783d69d3b598f18bc81", + "regex": "(?i)^https?\\:\\/\\/dfghghfgjjfgfgjfgjfgjgjf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "54dc3f1c1b591ded1fc8edbc5a4684aaaca558e0e97b5671ba5164c305e88533", + "regex": "(?i)^https?\\:\\/\\/moemjargcaare\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c78599d172511ead1a36050f43027750a89f32c987be0035f1fe215f0402e69a", + "regex": "(?i)^https?\\:\\/\\/noemxuaetcaae\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0f6db3d9c8fdd2c0e4d7308a06e4bd42cb843732c6d1daf377efffb7eb28bccc", + "regex": "(?i)^https?\\:\\/\\/dfhfgjgfjgfjjfgjgfjfgjfgj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bb59e705a3ff1d22da9d454f73be2460cccdc22a2554b3ac63a1e9eeaef1f94e", + "regex": "(?i)^https?\\:\\/\\/antaiservice0\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e66c8c264543190e7d12b10e8676b64a70fed325e0761ec0b98d4fd4797bc7de", + "regex": "(?i)^https?\\:\\/\\/sghdfututrujfgjjutrujufjfggh\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d9281d610e15be9e8a9684b0515914527910ed5782e906ee48e64f07026a810c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+home[\\/\\\\]+tracking\\.php\\?id\\=8212325\\&page\\=001$" + }, + { + "hash": "4ac6b0f2b4f3d511ad2a84644123dfb0b4903e972e4e77b1d5ea0388836f9758", + "regex": "(?i)^https?\\:\\/\\/gavaalmzghlna\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "de25a6fd1748e12fc08ae4f8a521db8f72729f60056e0e109f7fc4c3ee61ba99", + "regex": "." + }, + { + "hash": "83df300b650a7d27ca220e2cc79026fb1f459a28e63d7baf5c61e978e3ff552b", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhfhhhdyreuhfgjfjgf\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c01ed30fd4ed85bbe227613504aa6e275b54d524e5410934bca700b8b9ae39e8", + "regex": "(?i)^https?\\:\\/\\/6587465465\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "49f6a2949e05280059f421df2961cbdf3f120de3523ff1da80c1f892eb96b801", + "regex": "(?i)^https?\\:\\/\\/sdfsdfsdfsdfdsfsddf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9464c7e43ef24344075b60e6fc11eb81978ca29fa809c5d84c62278fd9b5f129", + "regex": "(?i)^https?\\:\\/\\/nyotcrot\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3bf6e27a21245cbea56e0f154b6229331898c727906eb7e193281cd28e2abbff", + "regex": "(?i)^https?\\:\\/\\/dfhhfgjgfjfgjgffgjgfjjf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1dfa31825387bd7373dbe09957bba4d9ac5ea3504f3b922e8a76780c3f86d201", + "regex": "(?i)^https?\\:\\/\\/dfhdfufrtiufrytjifgikjghikhkghfgh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3ad1bace1efc6f354c95a977e665698fc17af89991d65ff07f6b19c415f81ce2", + "regex": "(?i)^https?\\:\\/\\/serviceappw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "74eda2907b131d6a1745d4e46f963cffe3d27b6d4be01bb266bd4dcd57ae2fd0", + "regex": "(?i)^https?\\:\\/\\/game4only\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "064669188fba325db44e9e19e1a34375f536da004d9c08df7fa493e79a6d1d4f", + "regex": "(?i)^https?\\:\\/\\/hardik22092003\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "8715f225f0d0f685120acf2feaa112ffa3100bfca519ed8610998c6151fe0c4a", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "66526d061f872873a497d8f554c6b4c2922c097406bd677584bbe5e0118085e8", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "50bda56be65add59a47f9645fe3f46c3fb539cc268ae21b74c186fbe1e5718c9", + "regex": "(?i)^https?\\:\\/\\/sadjhagu627hasik\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c02cfcadbf601c211d57f39757f391fe9f844e1c3fe53106586d276bbc11b394", + "regex": "(?i)^https?\\:\\/\\/asdhzxcjuy267tusa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "47411a35e3328416d5d9bfaedd7d5de8aabb4b5890179517b94172277655870a", + "regex": "." + }, + { + "hash": "78af7246609c340f6f3f49f40f7a91c41a450a67f9d2f0b1a7504a954d1ec49c", + "regex": "(?i)^https?\\:\\/\\/instagram\\-logings\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7dd7bd266d297aac94a3df5813d1e07606fd40b0f6d16538d8e60a94f9a000b6", + "regex": "(?i)^https?\\:\\/\\/zxczjhg67qw5d7\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b3e5912cf957211cbb4a3862d88dc89b428373edc80aab206869fb08cae7b7db", + "regex": "(?i)^https?\\:\\/\\/currentlymail9943\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6a20a9a8393cbf1f8cc3ff8abe5c29f3291bd067fd09468c090200f7b15a72bf", + "regex": "." + }, + { + "hash": "45731966f02558b211f1c51ce9edd7b87f6b8f9347ab80beb879a1587cb39f6e", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1b0bb66e34f7f3ba883f6c5a43cff55122c13c19f9bd9fdf3e6b21137e72a77b", + "regex": "(?i)^https?\\:\\/\\/anekamalam88\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "984049ce527ffab2c2a6c9b27dd96e0968f646de1cde07dc30b17b3312ab4c35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "ad62f1a6cb5b7751cef564ecf2c474bf9f5a9a90c4becf0243c31480b29907e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "9fedf7d7f8e8788469a7e84990a2e7f578a0c4a4930c9be2f81aaceaa939e86f", + "regex": "(?i)^https?\\:\\/\\/claimit4u\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d9788374f77fa48fb6e9ddf00e8949ef545751f0e39796f0a38c3b49715d5105", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+walletseed1\\.php(?:\\?|$)" + }, + { + "hash": "a6401e6a8e8364ae3c2630b6674b47cda9bd9585cb55b00cba3d76b6518f7296", + "regex": "." + }, + { + "hash": "4452eca92dd5452a2cf62436ef0d1c9160a951f393301abf549a7e189b04db8a", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.18\\-171\\-178\\-180\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "365cedeaaa3a0db7ff1e15a42b9df202de7ee3c472f1b64c3424d7e7a91e42e7", + "regex": "." + }, + { + "hash": "1e60483b65c3430ac84baa4ff97a8a3e9c62af11f28b666bae7dc7bcb5b11d09", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "62be75f8006373ee318601262f82f8510aa34cdac4fff961283a819a3a335d9a", + "regex": "." + }, + { + "hash": "c6ad8e37b432ac3104bb400bcd4b94e0cba319893b3ba21509fa6e18141d943e", + "regex": "(?i)^https?\\:\\/\\/good\\-foody67\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a700957a2b25ce385f66041485179a98804ddc66679afe061fbe1c8e8671ea53", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1617cdfe0edbddcc2d9df9d48eb71eb64238033870ac88f39b677914413765b1", + "regex": "(?i)^https?\\:\\/\\/instagram\\-logings\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "6856157843424962db2cec7e069b8f9914b8225b88bd7bb4b08e05a93bf0772a", + "regex": "." + }, + { + "hash": "70201b464812ea4aebca62c09841514f1b8da1d3348144fbbb0d0a8fac82666a", + "regex": "(?i)^https?\\:\\/\\/undianbritama2015\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2543d8b23ee2219d643bed0e9855f436511fb3ffd2b63133ba7a9b6a116c61f4", + "regex": "(?i)^https?\\:\\/\\/instagram\\-logings\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b354cf1837f9aadf92caff4cf18c6d212e430378b7b68a883cd2c673f9f06ffc", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "626d4e4e06ef9308c78a9936f4e10c1fca96e3820ff7b414a9027ce3d05a885d", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "048c00387b9c0a8b7cdd50cbc1394b2f7bc0fff39f2233a1b543c25d9cd053d2", + "regex": "." + }, + { + "hash": "327644f8a1f49ae7ecf1ffef955e4507b655eb18a1eca90c3b59f29a00ff7992", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+updateinfo" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595128\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938a6209e3\\-0c014bcb\\-9de4\\-4aaf\\-af00\\-7f6e3db29a6d\\-000000[\\/\\\\]+BLARsa8p_JZdiAfEblWFr11qXRI\\=402(?:\\?|$)" + }, + { + "hash": "367275d5512f603258e5fc250d710807d592c01e3a24a2d8660af25eb578e0b4", + "regex": "(?i)^https?\\:\\/\\/vzxgh8i726id8auhsw\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "39a0a6e3da07fa012d4f8fd764a96a9a565a70f54c3c47c9318a1fcf50eaa6bd", + "regex": "(?i)^https?\\:\\/\\/amazon\\.hlehslaww\\.com\\%E2\\%88\\%95vojuikymd\\%E2\\%88\\%95cfwzjxu\\%E2\\%88\\%95muljcdn\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ulroz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "130208088d336cbc02da4dd37b80640335424f8723d54134b22e692e1bfcd9b3", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "abdae5109402a14896ceda595588b82abc73fb08fba27e9c94df2edff4f8aade", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "88c7945b7d06109a009c90fac3f14a333c5fd73eed014b9d44b7d17c10d3717a", + "regex": "(?i)^https?\\:\\/\\/ssn\\.toqasaw\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "79ee0174ed1f3caeddbb1f763a7ee5c83a52348b485a0f3056febf6fc09cf048", + "regex": "(?i)^https?\\:\\/\\/ahyd72yusahd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938a96af30\\-b9c3cdb0\\-e5ef\\-4eff\\-a8f3\\-d9fb5f6fbacd\\-000000[\\/\\\\]+DcjYSSxM\\-thLvU7J1IqEHv4nat4\\=402(?:\\?|$)" + }, + { + "hash": "6ca213ff755e30ff6ceb8cc608f9c0aed7c16f40845c9a7262438a5271182db6", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4fbfca1249dc6c2e091428201a091ab4c76e7cadd9106ee85146acb33386c91a", + "regex": "(?i)^https?\\:\\/\\/mmwedapv\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "51b8d278e30f6bb53fe0a1b66fe6a69e072836a5a673948564da4271b8e7ff34", + "regex": "." + }, + { + "hash": "f8ffce25e7dd7e661c84e60d766cb10ff84084f68990ecb62561d665aa40df0e", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6ebaeadbcdab6978676b913e587ed7460b54376564d5f8e102941e359aa01fa7", + "regex": "." + }, + { + "hash": "bf6bc97bf5f2c1296a96741498e0c89ef53a1dafc1b321ee3bd721645eb69e84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yy000\\.html(?:\\?|$)" + }, + { + "hash": "04215c7b2fac53ce32c61a142e78fc41728dc975850341f2cdbc720f5f1fc76a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+amgerman" + }, + { + "hash": "861795a16dd04e508b36a464e24afcee0ae8a0c512cd14d5ee0dc50fc9f48010", + "regex": "(?i)^https?\\:\\/\\/game4only\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "df0c9f405a82d485d291ec736d3a08b566be2c23529db97aa9ccb6c3b88b8be2", + "regex": "." + }, + { + "hash": "5e110a2b744263c337bdf6829272a92f8d3ff31b7ae3d12a44ace613ae16400c", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4799fc19d6cf45210e78d47e5e4359c0967f3859d09e7012206a059478d8afe2", + "regex": "." + }, + { + "hash": "f7b480d337d67858303e83f301e7d4018008b3624cc3d3cc77d994f53c717cbc", + "regex": "." + }, + { + "hash": "62868612560195b7d7a127454936561c46f340c040bee7bf0b983a9ff7bd5121", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uLpDc7(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c604e2b1640ca6c9f255e6b8e5dca40a7db7e69f1fa7d8baac2a9cb47d9d9921", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-calais\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "85eb1a822b66fc09606e6e772e22c0b1f57fd0addb5a8e4399ee2a13d030db4c", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ede9559f9b6757188e99fc944e3626b3746c7dd225e2824ca29de94468f6d4e0", + "regex": "(?i)^https?\\:\\/\\/instagram\\-logings\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9c7508c6e2ce7be424ea6c5ed75d03496b7cb3260a6a9652a2370ab087d9915b", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b9fb36c9b3e73b3b5b9b687204c40ae5f98db1646969cdddec7c8e5b26e038ed", + "regex": "." + }, + { + "hash": "4c94b13f27cf0bf4f1b90c24baac6d61f2acac614174d4811712e52a8c61940a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e0baa49c4857b5c422bf70794607dadcd05cb02e20b25c799632bc491dfd044e", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c632cd2\\-595710da\\-f787\\-4ab4\\-86a0\\-93e012721175\\-000000[\\/\\\\]+6zUOD98Y1OenTmdzXXtFbXi31Z4\\=403(?:\\?|$)" + }, + { + "hash": "6b310649a8f6ecedc2ff0a824df0c612eb725ac2bc8561bde083fc05a970594f", + "regex": "(?i)^https?\\:\\/\\/game4only\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f41494e0103d9b7856a7e31ec6391199c0d0690c43e88d1d2b0e4f60157994b6", + "regex": "(?i)^https?\\:\\/\\/rbx4uuu\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c2c8ae963fcdd3aa191a3e125a23808377b0fbd3d7678b65caf6348612b36144", + "regex": "(?i)^https?\\:\\/\\/rbx4uuu\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9ca0c1033ae1b454e27b93b14a14c2f4d2b799eb4817e5e91a3899f7d4727fc5", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "12e13e6fc89f96d278cc1133acd747c3c355b97cd12a6ca4f73c8c860432fb7f", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9029afe88dcafd9f7c82ecc13039da433c165b6cd3b2ebf4f1a555e9379ee3f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "151bb84187aca5f906084b9ea5b8844342681ea9dbaaacf9754d703db8758bec", + "regex": "." + }, + { + "hash": "ae944656ddfd7a2a5a530afd0104563d4b1a14eea4663b34d0fcfa1d087e56fb", + "regex": "(?i)^https?\\:\\/\\/asdhzxcjuy267tusa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9499366a8605d2d777b956c82bcef37add99cd00fb65ff9bbc8a618b957347ff", + "regex": "." + }, + { + "hash": "88e7cb89abe0ab57325187ea007b5579aea985e1c73ac79228478b8a2764f46d", + "regex": "." + }, + { + "hash": "f421fb67aec506ff146fda5bdae9baa4fb0e4a16cc0c6b1b0a706b2b9067eb7a", + "regex": "." + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938ca80c4f\\-d1463309\\-df51\\-440e\\-91d9\\-d897d3e12a2d\\-000000[\\/\\\\]+nz0yxOlhR6f8hGBSp9HKYc6BWas\\=403(?:\\?|$)" + }, + { + "hash": "4ae82796d469b0fb1870ddb2fcdb27cfec32a721dec928b461fd17f118bda6b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+transfers(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1aaed56b1c291538bfeeaad8f171e52445e14909a2454a601b330a927cda8712", + "regex": "." + }, + { + "hash": "e38343f7711e6061fdba31e6ab14ff34dedce03024fe67b29d4b9f9f510bf432", + "regex": "." + }, + { + "hash": "477138eb7d042ce5ddd6c3b472597d5652c13d5e1654eb2fe015be138175dae1", + "regex": "." + }, + { + "hash": "ab41a63bcba3d166bd2bb6d672b3bde7eb9a0abb950dba47dae53f85580696f1", + "regex": "." + }, + { + "hash": "8e645445fd78e17d1bc6679556b7a6c7a52b1dcc74702419bac12b96dfa13ec1", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a9f62e46421a8d8d2ef32a55b6429393fd4fa02692d739283e8203672075f631", + "regex": "." + }, + { + "hash": "412dbe09bb55cbdf1608ac772f8194ad4c7e0d61716df008a0dabda006c4402a", + "regex": "." + }, + { + "hash": "b5835b708da585b8e9dbe5e463488ab5029d01c09b101918361dfe6dfa3a7c6a", + "regex": "(?i)^https?\\:\\/\\/xzbcwju6d2u8hkia\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b63dfefb8961ee220b1d18a4ae264c25a0906b2c0dcf9b8529a6620ec7aae800", + "regex": "(?i)^https?\\:\\/\\/good\\-foody67\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938b8abd28\\-10713f96\\-5a32\\-4b2a\\-816b\\-66881d79e7e4\\-000000[\\/\\\\]+9bGaRVEyN6eaDnMOGbEFDWOhsUU\\=402(?:\\?|$)" + }, + { + "hash": "05038933ed077fd161fd32f68cf8af76669918059b59e3a16463d9de4cf8f044", + "regex": "." + }, + { + "hash": "775b5a548b851108b0d0cc81863c9e473f6c275d555fb73da44440a6f27c658e", + "regex": "(?i)^https?\\:\\/\\/asdhzxcjuy267tusa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5ecf97db3cc2cc065927128622cb0076a82f220d8977a9cf9335ba5d9b448fc4", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7a2483d45483ab570f58974cd943868b5ee9d923890f45d0fdce80b2c762c5a7", + "regex": "." + }, + { + "hash": "9d19157dcce369620a5ed549ed8d1b2f8617add1b6b0abf810b5ecf918a88ca4", + "regex": "(?i)^https?\\:\\/\\/83611225\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "53be987587b099d9185ad00d72a5bf6670d762fe3337878d8f910f3922252691", + "regex": "." + }, + { + "hash": "d3260c4acf9197a88114d14264cbbe318e50463ebdf9e7e269ef089853156ca4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1dac02826169e2176a0bc777c69851c7e0364371d30510d3fe431b386c77e221", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5c90cfdd6be6fd63db74178d85b05aff34fc9f570633b85b0970bdcd5973757e", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chate\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ba5f3c0eaca86eeef8ef3842c9bf7b9d672175f8fa029fdde4492ff57031fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9162[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dc6a5bb6c6f9b2c743a614f6f3ad7e4d788c2313f34c624aadedd617241f6d9f", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a3c2af18009affadc9cb45165c35bb8a2d321405b1d956560b9abdea7196561f", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f13408815546db44cd6fe72c47c9ba90926537389a09b813a2edfc0c531ba955", + "regex": "." + }, + { + "hash": "f42eab81e058d317d4b655ff131ebd43b38865484b2b9e1fbc2d6191db8667cf", + "regex": "(?i)^https?\\:\\/\\/meteorologistdsv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "631ae54260ed4970f9e4c62863642cec23392db6eea65f5259c4d8ace8267155", + "regex": "." + }, + { + "hash": "7c97c348607f917a5031250770edc3e0a1fc606d63724663b618587c25446586", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "12e0cfc70d3329c5b22a8fdee73d3c113711634e9120ca9a268e6620ba222915", + "regex": "." + }, + { + "hash": "4079d57beb1e27aa1d94c42510d68c5e3b11ff8526ae86384f780b3dce272415", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4aba5c1f5cd720b6ee07fb03a0653ca77fe4424f0528268ec1d3cb3f183ac0a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d15dd6b4c39d45a31d219e9e3d8b21abead7064df4140248a011650260f46e28", + "regex": "(?i)^https?\\:\\/\\/game4only\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b450fbe9ae61f488fb4ff6d4db75a7238db466603061b540a09750b668996627", + "regex": "." + }, + { + "hash": "00316457277054aa4df83b4f54ae475c9899d8178449f3d2ed58fc3507aa0589", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "702d8d891e67d0c803c1b85ff9b49e5e902e4270df0c275da3a08e5c86580b19", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f8ad4af0f88ed83f63c688840f6df02c6da26ece3e2dcf87e4ac2997b97a06c2", + "regex": "(?i)^https?\\:\\/\\/anekamalam88\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0828df9c457855d6f4cb778cc221f75bddc6614163bf546cfa62a1b89dcb5709", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkgs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "27bc67a727814e073a6b172c6e11d1be5934f51aaa1cb716a67e67e7fadba30d", + "regex": "." + }, + { + "hash": "3be35163e9f6805364474549653b7465fe830a2509e436366a119a05fee15c35", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b74ed30133834051e6c06d42045eed1b94b85f286ad76190b35d63f60d3e6c5e", + "regex": "(?i)^https?\\:\\/\\/gdbhre\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "26f046d904d5e0f83b86d0b260d9f0e53759d0979979be180632c6f927c884d4", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e62bd9951e0dc4c6265f73f1138111d59994bd3e1d741ffa10ff4abb3019b4cf", + "regex": "." + }, + { + "hash": "6692675e1ab57f1c664e54de3ac0f577386a00136ca14f06d08a4936ecfd596c", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkgs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b80e4b9f58a6ca5eceae2be911ce597ea99b8d187b534aa6bfa29e7bd2ab469c", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1b9a9b40d1a43a1439b3da2c07916cf94e8a482dd508431c396e815e78b9fe61", + "regex": "(?i)^https?\\:\\/\\/anekamalam88\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6c55d4344e628fc8b1969ec71359a87f9dee1bdbb95d74b7d3837f56edfb00d4", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f9e47c4d598432886acacb98349c3a028ec214576bacddb44403cb50d3f6adfa", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "48808d4eec7c734e1bd2ebe9588f40c241c2ad212a63f19b8a102ecf5fd3da65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a4239ce9ed1e67b71a51bbe7c0c8a5b6158790f7c99478da010d5e9f61537a2", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "411d356aae41debf13af92cfb777937b191aa8916ffef8c0eda90f55957f235b", + "regex": "." + }, + { + "hash": "8af49b13a9ba274ed678538f1bb931eec0896927f33373d643bfda71775da963", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e532a0935e82823e9fad5d77c23868a1a9620b8e707e1433234c070c98556fe9", + "regex": "." + }, + { + "hash": "38a88e91300f681f18d8cd9fa2ed10d50612408e9336fbfcda3dc858842453d4", + "regex": "." + }, + { + "hash": "4ae82796d469b0fb1870ddb2fcdb27cfec32a721dec928b461fd17f118bda6b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&l\\=btc5_siniy$" + }, + { + "hash": "83fa542a0e2514eff59287a6f65fb5971ebc53ae959dafb55aa37859239d971c", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cbe72397dadc2cebd56efb9dc594057b35a08fe11ce8b230cf9b931b288c5a10", + "regex": "." + }, + { + "hash": "ec518be36e11b1d37a9d2500b104a0253be35ba7a9f93df55dbdb20b57112049", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "54f6fac146daf5b530f6a1480c5a49721eefccbb8e7e25a6fdbe46a93ee15aec", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a19876a0297733edcb7e3d6f31feecb4ff83a707a12faae3043fb59c2db798c1", + "regex": "." + }, + { + "hash": "b1feb723230c3ca1791e6f60b1710361920cbb0104f8fadbce209efe1efbc63e", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a90e3bfd8f51f28e7e919499bc53b4fd0483123c2ab94b3432bd95498f8c4d99", + "regex": "(?i)^https?\\:\\/\\/claimit4u\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8105b00ad49c5a30e0a25f0f44d119f0ad7ff2622482bd2bc9a52e57f7151811", + "regex": "." + }, + { + "hash": "2821fd0f9460bb458bedf41dc5932cd9f09787e9769d412f9f9b18a20db69ae3", + "regex": "." + }, + { + "hash": "96a26d00f3ec910a7ab4d1a415deeb14c97f6af5be7753b1b98e71e80256ad30", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bd81efd2efc81ac22489602f6ef89a8f2c1856c8a96343c11175f5f971a58ea5", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0eab8028a06afd532a972823f250a60f1101d2c587a1faff00c2e76f33bf72e1", + "regex": "." + }, + { + "hash": "59a690b428facacbc9bbda7b9649f437df3febd77d056899b6fe7b4dbeeef4b1", + "regex": "(?i)^https?\\:\\/\\/xzbcwju6d2u8hkia\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "eb9df1719c36e90b56dea1fe0bbb73b3e15c7995cd4398751afeff4dcd540311", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4a1be739c9375eed31845a874b6082476dc37754a20ea65af93ab8c0f19f8a88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938bda4c30\\-baeb28a4\\-52d3\\-4f88\\-b1b1\\-acd5323252bd\\-000000[\\/\\\\]+gWTefvfBFhnNBgGkLUVqSMumPfU\\=403(?:\\?|$)" + }, + { + "hash": "528c6b47edb209a2db859c311854cfb4b02eb97e551c9884c72ebe74731f13b8", + "regex": "(?i)^https?\\:\\/\\/xchbasyutd672guas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5b6daabcfe2c1f7030509fcd547eb3c1fbe00bbaa83e082da2ad91f3fa55b5b4", + "regex": "." + }, + { + "hash": "24a2845b08c4715b19923f10af70b3bbc53927c1f55e5e679ee501eed2fe52fa", + "regex": "(?i)^https?\\:\\/\\/instagram\\-logings\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "63b0d28723c4f3aca918f3df92ccde2ce63949eeb19523795bfae5ea66e7866e", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b8bbc5ba80288b38cdbc17bb8d1c43000ff23b7cff6b70befbf1c1126a0c2dbc", + "regex": "." + }, + { + "hash": "f816c3405be9daaadc18a9db9a91cff7402c8cdeb73e6c09babcce3403a437aa", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c298f6b488b71ac4582c8fed604e64bb352b4bf211943d30e99c9659d6a6029a", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "811337913b4c28b6321c2d2167c0f3dc03a50fe20b64ef9714a593b71744b5c8", + "regex": "(?i)^https?\\:\\/\\/vzxgh8i726id8auhsw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8da879edc5cf564c1de9be0feefd198c445edab76fd0fead07e55a79f59aebf2", + "regex": "." + }, + { + "hash": "788d3594efab8e92b584e678a8049476a7f6387f9ae5bb079b4a730fcb28c8df", + "regex": "." + }, + { + "hash": "2a429cda65b8b875a714c0d1b0bae6c75e3435a0727bfc1cc1cf05e00ba96935", + "regex": "." + }, + { + "hash": "d1f83df1d7c6f6e0a9fc97399693927734d10092b773f8917cd93ea5a4764aff", + "regex": "." + }, + { + "hash": "27eb697f3ed95f2778f2aa7795e56d53a59b5b2ed3c471e0db1bd348ab956cda", + "regex": "(?i)^https?\\:\\/\\/meteorologistdsv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "99f02bba3c394f29bae88edcd56d3e23f99a4f0c75c8c1e5faebc141f85cceef", + "regex": "(?i)^https?\\:\\/\\/81885805\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30331410b41a2c6e04215f299702918caf9aa58355f4924c9443aa67c3b41902", + "regex": "." + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938b45fbf9\\-0241530d\\-c862\\-4b38\\-b67b\\-e2f527f7b18b\\-000000[\\/\\\\]+1mqI0PlCSzUAcnFlvySEClbP6A4\\=402(?:\\?|$)" + }, + { + "hash": "8b8b47d039f6606943a70b4bec47e6d770601d57340b7f5ee33777c70e6f0a86", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938a832de5\\-991237e3\\-ee15\\-438c\\-bfe3\\-86c69411f8e5\\-000000[\\/\\\\]+iwKWER4Yp13yuo11zS7cbqsVQI0\\=402(?:\\?|$)" + }, + { + "hash": "cbe712b873cf7ea988eb4dfeed931a30572addc7e7597e4a6ee57692dc16d738", + "regex": "." + }, + { + "hash": "6c0e0254157ca879373f8f02a131de26e07aa84f2979b83999b4cbdd640c5248", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "229ec52e86938117b5917fcffb158a2afed9eaec42addbcc8bbd674dbd486782", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c8bb4dd\\-8a40bd02\\-4d81\\-4a73\\-b1ae\\-55d53cd54e17\\-000000[\\/\\\\]+Tz2egIrmd1AqPGcbMnrEb3dTNLQ\\=402(?:\\?|$)" + }, + { + "hash": "0831b7eabe036b9b477072a1035a018c05c859de29e98c1e5c5c9b712b7bd35b", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9f7637ed8a1e69dddc00a1e40324d2505709bb6db26d4b627fb4da3379b5d90a", + "regex": "." + }, + { + "hash": "1419a4982d8d4c0f67ecc40e39c01d2968b08236d5e0264d2bfceef206023c8e", + "regex": "(?i)^https?\\:\\/\\/derdefcazx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "887a7df3b21bb87b1c61bfc2a94f533720f3df471490bb2864eafda69f89db9b", + "regex": "." + }, + { + "hash": "a4fb305ec43dbbfa2fd64f4c470b7ee68efad6b914a4b646689b509f0021336f", + "regex": "(?i)^https?\\:\\/\\/28308782\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a90ef02c2420601d419f0c840a7a7eca0c0c8ebe9563301dfa26d98732b9dbcc", + "regex": "(?i)^https?\\:\\/\\/sadjhagu627hasik\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d0dd9dd804f05df387b4f4f9e2ccf3b73fca255c7f202e34520b3cb0cb0f2e64", + "regex": "(?i)^https?\\:\\/\\/zxcmjaswue628idgikas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2827efdc059166bc091f8846d968d831fcc5cdabae865cc5e29e1fe32c823604", + "regex": "(?i)^https?\\:\\/\\/good\\-foody67\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ba5f3c0eaca86eeef8ef3842c9bf7b9d672175f8fa029fdde4492ff57031fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9162[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "28bf7cf94d7c339e479901d7d732bf2f33f5c19eb86960f60d7c65a5fe4c3c19", + "regex": "." + }, + { + "hash": "f4c9f9de9a7da002708cfc0a8ded8f6a8f3675779271e0c152bac234a0f580ad", + "regex": "(?i)^https?\\:\\/\\/programmer2101\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6ae6aad42050f05324c789b8f5094dbfcff12c136db2da984f6546543955c635", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "904b75a56c5ac1d50bd61dc42cfa3cf4ca06793edf13e29b5f94b35ee66b61af", + "regex": "." + }, + { + "hash": "da7a9165d70f6f83c594a03c6c1511e3752f45fd582f23981b02fefc81df3fd7", + "regex": "." + }, + { + "hash": "89189e7e2f51b8528ae43ba511d31affa9457bd01c9c73eb18efe634790a049c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jap\\.filory(?:\\?|$)" + }, + { + "hash": "b2f1751fb774dc2547e75011c9f19d3c4a99811ec94a9e969b465901ef9f227f", + "regex": "(?i)^https?\\:\\/\\/meteorologistdsv\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1617af8fe9a58755e508532d465c1bd04dd1960fdcdc6c3832af959b714c3f71", + "regex": "." + }, + { + "hash": "14590219e8c2eb7383abe7b8ddfd9591afc77c0294d8b1d5de71989107e86c5e", + "regex": "(?i)^https?\\:\\/\\/dnsjhdksjhjdshdshjsdhsdjkhkjdhskjhdshksjdhksd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2024[\\/\\\\]+01[\\/\\\\]+var\\-myarray\\-var\\-rand\\-myarraymath_30\\.html(?:\\?|$)" + }, + { + "hash": "ea83ac78bd866b75fc724d39bce68d17552e31e0784979cfb8aff450e4badef4", + "regex": "(?i)^https?\\:\\/\\/bafkreif6mu7y442rob3cfl5wr7blxusdqt563htl555s4fyxcnl3xz5bpm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c8be632\\-6b22234c\\-ca83\\-4fe9\\-b611\\-74773ce23a2a\\-000000[\\/\\\\]+m8_UHRwHprtcFdOZR1p0LvPzCnM\\=402(?:\\?|$)" + }, + { + "hash": "55d82e7139324236b94e6a715543070c402886d944cad8bbe0b3e8b38c64b8b4", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c873916935c6caed5f72cffe25a3dc23d54a5dfafbe2e2f5f00d4600a109b84f", + "regex": "." + }, + { + "hash": "3e9cf2ec950c6008cfb9f77f9ab371a06b4cd067cd94f70b33ae8f9c649fe19e", + "regex": "." + }, + { + "hash": "6529b1f4fa8d1a1442d2ac33ac7dd280195491fde3a2481190d732400f83b305", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938c2008cf\\-6215842d\\-ca7a\\-4c4c\\-ac48\\-1a4de5241f42\\-000000[\\/\\\\]+MCeN4Rcgb5gMvse7ABfmVgfvtjE\\=402(?:\\?|$)" + }, + { + "hash": "e833a56f1dae5d2a1ab592542113a86e15b3912ca6182dbf4e4724509b5a2b3d", + "regex": "(?i)^https?\\:\\/\\/grosse\\-chate\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "282b5e04b1086fde8ebcb2aa88370ff2d2b9ca580972656e5b8c5b4fd800a158", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938a734c9f\\-c65294df\\-2102\\-492b\\-8428\\-de00fdeb8f32\\-000000[\\/\\\\]+QIPAu2Zaiwc1PFtWr2pL5gN4Bi4\\=402(?:\\?|$)" + }, + { + "hash": "1fa50d1bbad27b4928d9a56be316afa325132d4034001d18f10e076579aa9371", + "regex": "." + }, + { + "hash": "d1fa8ddb8f7e80ecd58e8e1ae3b507e2dcff24fe03a5489a184be2ffdb9df44a", + "regex": "." + }, + { + "hash": "6ce6fd2fc743e630bfbcb1972c438512e0d4c5096e9ea8b101b2e03bd695a58d", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "81b440b809ddc1eddc0208b0cb21aa9c0a9058586fc8cd164d6efd2ea610652d", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c4e43939d5574040c9d92a85971bf988a9e966b9e8d171292f16e1b472fdf7de", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "72785895b2a74742118bf3b69416c741019c320e209eeebc8cf0163e4cf5abf6", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c53eba5903cf1f4deed2296d5f565c1db3c0798ab68782be869979a2dfda6d9b", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4e6fed86c13c60ccd8a1ca1d5f161d658b7d9168f7acf072895cca4c35d16b56", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "772bbdb06e002d3d38953e1461a52710a5a7c181c569e0623ad02c853eebc427", + "regex": "(?i)^https?\\:\\/\\/meteorologistdsv\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r\\.php(?:\\?|$)" + }, + { + "hash": "ec642a15f7af59eaa60961a1ffc2b83cf8f0d6173c519f7e8aac4cfef2d05b8b", + "regex": "(?i)^https?\\:\\/\\/bt\\-365\\-70578b\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0eb59c6c33113f31e5e9be3ff2f911b51ffd83971a9daf141c960db0f9929add", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a2440c3b9d3aa04be48cc7d6798258b3d819cebcefbc55d2f5ef000e9e095c30", + "regex": "." + }, + { + "hash": "5bac4fa3fd5b42a3603a60142b556e342cf47cd7affb9a68e2f65e5038f8a3a1", + "regex": "." + }, + { + "hash": "33e15b965f5d0adf1c56db861662eaf8cabb3531e2107bcf71344c93b46ef944", + "regex": "." + }, + { + "hash": "ea8f8b93b4a98c613c0c0fa78c101ae0fa3604eb11faca373f9524ef4478e3b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mixcc\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "34d4c4979e5c24e8f7bb93ef6574341179a8375544d427d6fce64ce139c86bc6", + "regex": "(?i)^https?\\:\\/\\/asdhzxcjuy267tusa\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938ad00e1b\\-4f62170f\\-838d\\-4d86\\-a620\\-4bb19cec1b76\\-000000[\\/\\\\]+f4r8cZlirH8Fpp9k5arfMolotqc\\=402(?:\\?|$)" + }, + { + "hash": "743486f56a7c65d955bbee54af8cfef24da98b5da381091f1d90af8f8b41b9ee", + "regex": "(?i)^https?\\:\\/\\/vzxgh8i726id8auhsw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595128\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938a6209e3\\-0c014bcb\\-9de4\\-4aaf\\-af00\\-7f6e3db29a6d\\-000000[\\/\\\\]+BLARsa8p_JZdiAfEblWFr11qXRI\\=402(?:\\?|$)" + }, + { + "hash": "df41c6ff30c1313a2210d873a0d38440edd6b03b80757b4fc1537e659e5381b2", + "regex": "(?i)^https?\\:\\/\\/ahyd72yusahd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0f71425b3224ce4cc03e4a4f105f92dd683581490442442fdf6cda48fd5cb5be", + "regex": "." + }, + { + "hash": "fd173e20bf31b3f4069467794d296a44ae43dae472549937c8f4a4cf2beabf79", + "regex": "." + }, + { + "hash": "5b20b071f47f1567d59023e30222ac1cc757cdc009a7c277df2a2888d701077f", + "regex": "." + }, + { + "hash": "6ce4541f6603e684da21baf33b87d7932c754f29dc2ade00f6e8c3bb7eac05f6", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "992e020f82725efad42452fe029a93f43e0c10014a35b847d6aad79370a6eb25", + "regex": "(?i)^https?\\:\\/\\/asdhzxcjuy267tusa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "66343f717759ff17d50aa8e4465f29c742a89c249a4323237c24bb04c5c1e410", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "14590219e8c2eb7383abe7b8ddfd9591afc77c0294d8b1d5de71989107e86c5e", + "regex": "(?i)^https?\\:\\/\\/serviceappw\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8cabc723880ba2be77b962105f91f0bbcf15d60494edd212674b9385e90a1909", + "regex": "(?i)^https?\\:\\/\\/ahyd72yusahd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a20b63521c7cc311612955a2873872c31090d100838f283c3fe61b2dc2e37b49", + "regex": "(?i)^https?\\:\\/\\/derdefcazx\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "853111c3a4fd4a1f38f315fd6b5424406cbde83fc5b2ff838e400eb25c2a6c97", + "regex": "(?i)^https?\\:\\/\\/att\\-home\\-27e6df\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2674faec5bfaa57d4e6c8135313aece6a5f03adc313a252ad102e27baa630b1c", + "regex": "." + }, + { + "hash": "ef39c0b1eb35da3f801d5f5c82d0be87bbe107fd4e09cc5d9bcb22af2a9bceef", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f96ee3d1eead0261b58121787618c5e549a6a60a87c79b9114d6cfd30be91ff4", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d0ad1f9162406b394e1b8bba7fea5550967275031d2ee24ee967a44c03f22f5f", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fe355693b8b888b9974c1ac8180a703c0e1c4a441077af079790ebcee236d591", + "regex": "." + }, + { + "hash": "7593a167f51fb9b5c62e2177c2179d2a3a1f32a0fa8a9f7f20288639f09505d0", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "249b4dfd553b9f5b7582841a04600d21027f5888968fa3fbbaba9fb87b300e18", + "regex": "(?i)^https?\\:\\/\\/dnsjhdksjhjdshdshjsdhsdjkhkjdhskjhdshksjdhksd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2024[\\/\\\\]+01[\\/\\\\]+var\\-myarray\\-var\\-rand\\-myarraymath_30\\.html(?:\\?|$)" + }, + { + "hash": "3f9692612babcd38500ddeaaa824c4b7033541c0cf407c75a9785aa9dd619e6b", + "regex": "(?i)^https?\\:\\/\\/meteorologistdsv\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1b890d2e88206fe0de8328d15b75470576c746e4181f5030e40035c419490f5c", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5a80db7595a9cfeee78151c1fd65f4654306cb8ab28f963086237e4a82f4dbab", + "regex": "(?i)^https?\\:\\/\\/xzbcwju6d2u8hkia\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9237e9f910e18df801902b451763be55a5d78c366d12815f762b09f68ea3fa8d", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "36e7bdb45b4fb285e4817eb1e7e699978d344248a84676afc14a4577e6652208", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c6fa7b0eb1212eca44b81e4c28204d54aafe7a6b985f62d40a005d03e911ebc4", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "85f308046ded3d43d2785e8cecb157309bf33541b192d3147402544432bb8a09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7GR(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e7e49f79ba499ef1c612bf6a6b0ef07ceeb33ec42b790dd5c9c6ccf249833b7", + "regex": "(?i)^https?\\:\\/\\/ahyd72yusahd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "35f317a7c78454c0e1f529f8372b3f100bc27f0e92042a80296c800a2d6aeb8f", + "regex": "(?i)^https?\\:\\/\\/xzbcwju6d2u8hkia\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938bda4c30\\-baeb28a4\\-52d3\\-4f88\\-b1b1\\-acd5323252bd\\-000000[\\/\\\\]+gWTefvfBFhnNBgGkLUVqSMumPfU\\=403(?:\\?|$)" + }, + { + "hash": "c6cfa80c388ef591b7e16409780efe14d174727ef43f1e7bb5f2dd14e81d008f", + "regex": "." + }, + { + "hash": "1798e7b1d92f1fbbcb511f76160b92eeeff0811fe2d64bf4c4591b6d766d87fb", + "regex": "." + }, + { + "hash": "4de0848337cb6db3f8e662ff91c521c3aef3f1b4c49b1716b52cd243a88d66ac", + "regex": "(?i)^https?\\:\\/\\/rqksoimn\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d2d17e2dd4d96b9794bc29c35f4f22592867244c8a6df1785a7cc5bb719c6e84", + "regex": "(?i)^https?\\:\\/\\/claimit4u\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938aa7ff35\\-507804a8\\-6ce4\\-4a07\\-8cf5\\-d0fa8a9fd777\\-000000[\\/\\\\]+pJk3J5HrbCsiRuR4ZwABMuHUjUs\\=402(?:\\?|$)" + }, + { + "hash": "c841d88a882b02f14ca115f2acc18b9c471c8c093849c24a4f3dade0e7a568d6", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e2ce2837fec10b9692eff535e6cffe8a273067f5598d7439c76db9793c2ee333", + "regex": "." + }, + { + "hash": "04beebdf2b41655f6e109431e1396d147c333391999991e395586ab48ffd276a", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5ac65467d33cdf889c9833f5f033215b8ef61ce4db4c9d5d193937a15ece6869", + "regex": "(?i)^https?\\:\\/\\/serviceappw\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "10a4844fbb252817dda03765c1e7c4f9dd482f0886f48b1d2e01d38d8b5111e7", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5bde8890a2de011673c64ba17ad8aee81f8fa75e896ab7a5fca620c9d249520c", + "regex": "." + }, + { + "hash": "cdb0106da2fcc47eb56e764ee92514385861d2ed80e42a9a33718ea0faeac918", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "af5427fe69d25e383e22c42240a8493e5da692572182183ad11c87ac7e55d10a", + "regex": "(?i)^https?\\:\\/\\/instagram\\-logings\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "667b57a2d28e83bd65a02f6d7ea6a3bbd8d4d3347cba8c3508efc2fb9da09f07", + "regex": "(?i)^https?\\:\\/\\/xzbcwju6d2u8hkia\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "94f33afec28666f525d8952513bc566cc85b81d83968640598c8e81e272bef59", + "regex": "." + }, + { + "hash": "8f7a2cee8b48ab08d5d5cd7384b7b8ce06305420c88bc4e899f60807e0a6212f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+within\\.my\\.boat(?:\\?|$)" + }, + { + "hash": "2e8122cc3488b7d06e06d4fb4a80ef2ddadd9538a9b924ffc94554fe340910eb", + "regex": "." + }, + { + "hash": "b2e0b8a93b4a59ef389ca490bb15d4175ad9583b876b3e41366eac0fd3dc7975", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8ec0143c0ea4cba5e0a78f0decd36fbf3e7f5e13e53dc08f5fadc755bee592d7", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "29f63c0df14402351c32dbacca3f3fdafc212b796aed8580dae3689cf3ce66d3", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3c39b43516aca31e9a4951a04bce8e37ff2396e8ad64c00d5577794f7cea7779", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "04d4c5af7d122022502a05843450774949fae059cf4873118911db6d723ba153", + "regex": "(?i)^https?\\:\\/\\/derdefcazx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "12065069a07174aa0e28e676bf87ba1a94403b07a32f01127cdd986332b8a05b", + "regex": "(?i)^https?\\:\\/\\/vzxgh8i726id8auhsw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a48b4f421edb54f8640b4e4c7c52433b05c2c75fcd90b7102d4c9bef908f21c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6aecf384e364b1a0bed8ae7b09b77b70c61a61c1d7733b824ad08a68b12520c6", + "regex": "." + }, + { + "hash": "b65d53c793809e759145f4dc4a3a735dd425cd8a1ccc42436ed1d4e8860037cb", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "892a7a48b87d0aced846aced91daecd8fafe9743837fc8603330bf4c355c4fc0", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "769046e970c6827e0c36cf29f8ded078dca3b952a28687955cff2dea9553ae29", + "regex": "(?i)^https?\\:\\/\\/undianbritama2015\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c29586bae6971e32f096951f0020a0ce65a9f20d8a37798bf6b4fba8348523fc", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a94196b4891230953d33a01114f8708748b61c2551b75eacd12bc9ea04df7790", + "regex": "(?i)^https?\\:\\/\\/game4only\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "81ee751d43a55cb783b8b1f500f8a0029095877d3041c6f8af4e9c70f5bfaca3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+disney" + }, + { + "hash": "836101ee98d104016846145ffbbe2476bd8e7b4c0e0d063d40d1d08e7f58fea8", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7b024ebc20f9f82ec9bb599f896d957cb0038fe9124336bc666741adaab8fa43", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "eab18698911940af431e3f5d3d9b7ce24f1dc1e3730479f2bd7085a55bd2de91", + "regex": "(?i)^https?\\:\\/\\/derdefcazx\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7be4fcf17b35b7fc5d28ad17364fd1b9b9bc3bb9d6eea8e6a98669a0eb81fb2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fdf6a29942b79430a432214a0bb1fa831904d6efa95e235461fba7f3b3018a79", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1eaf5b5175da659bc44605e1f02df81a5deed25c68d056ae3ba8edfb3b0bdd10", + "regex": "." + }, + { + "hash": "0c8b588882e2706d57be2528a044718493a78568d34cf9f2ec8091c078663070", + "regex": "(?i)^https?\\:\\/\\/www\\.165\\-232\\-132\\-87\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6fbe1a14571bc9e684a5c08c5183a3c5ef09239e0591cafc730a47c12a59cfd5", + "regex": "(?i)^https?\\:\\/\\/dnsjhdksjhjdshdshjsdhsdjkhkjdhskjhdshksjdhksd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2024[\\/\\\\]+01[\\/\\\\]+var\\-myarray\\-var\\-rand\\-myarraymath_30\\.html(?:\\?|$)" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595125\\.info[\\/\\\\]+1[\\/\\\\]+010001938c9b84b2\\-734124a1\\-4afa\\-459d\\-b040\\-af57ad55aee9\\-000000[\\/\\\\]+6sPYJrAqp9LxCoDKGMGHw\\-Ny\\-Yc\\=402(?:\\?|$)" + }, + { + "hash": "5461395a2a2893e4bd8cbb56b317ab8ce0913ed7983e2c6aeebcff1b9a01bfbe", + "regex": "." + }, + { + "hash": "67c4990c34ba4d8a06be352ff25ddda36f3256f541eb3e685268acce855308e2", + "regex": "." + }, + { + "hash": "1736cdd3b4597774cc1c008a3261ee8ca444f852e07597c3bdbeb07d28584b2f", + "regex": "(?i)^https?\\:\\/\\/rbx4uuu\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938ad00e1b\\-4f62170f\\-838d\\-4d86\\-a620\\-4bb19cec1b76\\-000000[\\/\\\\]+f4r8cZlirH8Fpp9k5arfMolotqc\\=402(?:\\?|$)" + }, + { + "hash": "ebf2d16dd224fcc646cd5dd52d2c480cb7e3f187558ad99fc75560af21054996", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "84d820a06f8dd878f54509a590ffbdbab9c291daadcaffc30b1282f5887e6185", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "57a695b2be0af92e147cb851ae3b79ba9a761bfe1eaf1e23b18d1c5b61a4aa65", + "regex": "(?i)^https?\\:\\/\\/derdefcazx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "863335f032e9f793a2c01c12e4884973b60bf763594ffc4c27dc10fc97055d5a", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3473b371a0946e108271d3f319ed8dacce0c696bf892c8a80989b9d6fae4d5fe", + "regex": "(?i)^https?\\:\\/\\/good\\-foody67\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "291d146c3c79b3eae67584ccbd0c03efa7eb7347a2217be9e38ea8fb61710776", + "regex": "." + }, + { + "hash": "7ba73dbd6203c1cfacaf8b6bb630f34cdd70d68900e4af09970f8298953b8177", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "61ea011902330a495d8a8ad0ace443fc3a779a95783d930f2b4c2845d24b55ef", + "regex": "." + }, + { + "hash": "8537c63a515916dc06ce1c6211ebecf1c1036bb314a9ae74fe50ffc74673c52d", + "regex": "(?i)^https?\\:\\/\\/robloxpromocodes2019maylist\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "63b4cdf49713484ea226ee0f532079a5f53ef64aa1cee97a34bc4ce29dd0608e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+paylib\\-recup\\-fr" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938c248fd3\\-e9f09de3\\-231d\\-48e5\\-9e34\\-adacdeefd79c\\-000000[\\/\\\\]+oiZsDH0uZmvJhuIoGQ_3941Xq6M\\=402(?:\\?|$)" + }, + { + "hash": "a69152473b01e018ec50016764a9162d239b3ff5c9e63ab00f3c8a4d9ac0cab6", + "regex": "." + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938a9d8c71\\-26599cb5\\-765b\\-4bab\\-91e1\\-d5c8aeab4fb0\\-000000[\\/\\\\]+BmXsPNQyx_pgCWDVhDijENZ1reM\\=402(?:\\?|$)" + }, + { + "hash": "37f832ad3bf41882d7112c2f3f4fa2c44abfcf354f6e250daa7e343c91ef7abc", + "regex": "(?i)^https?\\:\\/\\/ahyd72yusahd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d63979af43c61f459536375f499d153ba4a81666b398b06134bff9ef6fa69102", + "regex": "." + }, + { + "hash": "23fa93bb5aa5313c41a077d9fcfe3697b776de4e39a3f6a39d5488e0d956e723", + "regex": "." + }, + { + "hash": "4a1be739c9375eed31845a874b6082476dc37754a20ea65af93ab8c0f19f8a88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4594123\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938b73c0a6\\-5fc3e01a\\-36e7\\-4c6f\\-8894\\-bdab84fef6cc\\-000000[\\/\\\\]+MJFQ_9J4tl71wsbMKdl6nC9n6EI\\=402(?:\\?|$)" + }, + { + "hash": "b76b77dbe3a543320651007462249869c71cde11b05c70f42a018ec2ba9182f2", + "regex": "." + }, + { + "hash": "8c74360b205f856930441a6d786e7ff899992b236d3d412df74e2dc54d36542d", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b2e08a1e179128567e10316bc8e6572d5d57a7b6368beae3a47123c625cde881", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9be6d7025f01634fc138e2c143548d06456312c6b89726df99e78200e93b9e0f", + "regex": "(?i)^https?\\:\\/\\/anekamalam88\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1ea9cb15bc5c67101fcbd285f586f1920b880c808aacc53c7907ca150314b9e3", + "regex": "(?i)^https?\\:\\/\\/rbx4uuu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4282a13c5ec3db2ec9564ca73887efc5d2a8b9d95559dcd81b351264376021d7", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b8257c280e2c336fce253634203322e6a8feef0650e7d3a175b89176f1a4c227", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f8ef7cd8f99dd44dd5cbcd3ef4aab4b2020a5f9197ab989617a5922e46bf8567", + "regex": "." + }, + { + "hash": "dc3806fa9d9bc81f1dab50f21d51d5733374380389ce5107ecab6bc9b0b931c5", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a7acc2881eb1f7972f7883b758c0029e180b2f8ac9a8d97aedd15f7e27a5175f", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ccd2bd5bc0c59e0ae8d3ed207e029ffb5033f14426bce96e7ed943938cba746d", + "regex": "." + }, + { + "hash": "8683fa0b2c0fd95414e0bc89f6237c5adb4b09d3fb177f4ff81661d4a23ad9af", + "regex": "(?i)^https?\\:\\/\\/xchbasyutd672guas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6cdd78f9a42817b9830b572f0ad2b065612d3319e709817de28bb4d00b9134ea", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "902f4830ebad2effea380a7137444a3c81922c73870a7c2d6493bafb77003cd7", + "regex": "(?i)^https?\\:\\/\\/zxczjhg67qw5d7\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ed3fedc1d1d28b77e3d300957ef2eef3b32ccad9d7e5717ad2a2eb804daa6d3e", + "regex": "." + }, + { + "hash": "6fbe1a14571bc9e684a5c08c5183a3c5ef09239e0591cafc730a47c12a59cfd5", + "regex": "(?i)^https?\\:\\/\\/serviceappw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7809886554c3d76e9546c93ccb4cee49eac9fa5c3f985de6bd39b71c6c82132f", + "regex": "." + }, + { + "hash": "d9788374f77fa48fb6e9ddf00e8949ef545751f0e39796f0a38c3b49715d5105", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=6659946\\&pdata\\=_egS1i6hrbZ6uOfIaMFZrDLQgKtuMd4VD4zHmDNy3dut3LyTRlFUzlyzcDt1i4M6xMk4LC1gtBZA3G4hMU2mQY3fkVgeQWiFH_\\-9KCf\\-w5G\\-Iq5PCCzsvdaVRlMGDTkkVnJN6UTceZZBBjF7iADyHvbf0uKsa06y70APsOomSX8De74GXE59rZHsbnvjLBu6AjpQDYdBztabVwYZfu3uWLFPM7i8Co2t_tTPwvnkSQ\\%3D\\%3D\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "addc685b5a6bb4f716f360f94d4b8c6ddce0b72c8e262a310f9505a7a32cafe3", + "regex": "(?i)^https?\\:\\/\\/undianbritama2015\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "78c78f0e4f6a0c4b3ac3195ada17994cef1362bf430c3161b4da3088274f7feb", + "regex": "(?i)^https?\\:\\/\\/zxcmjaswue628idgikas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f95678ea20687b0ca294378abcaa13661ad61f6c5a0e79cfad299c1943900e86", + "regex": "." + }, + { + "hash": "e7c5126f360bcc5ca8b9720c76366f4e4c9de25a50675f9a6f9016185884a065", + "regex": "." + }, + { + "hash": "c5a7dcd02144ec0b10ffed1ede574433d422b258f1d8f5506504762bed15aa41", + "regex": "(?i)^https?\\:\\/\\/meteorologistdsv\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4bebf28e259be8cf6aa793b7a438d4076060484a9e690d204b7495417e29f552", + "regex": "." + }, + { + "hash": "30f93192e571c1b8a6b06e49149ce41146451aea58f280ea005227e6ea6ddbf8", + "regex": "(?i)^https?\\:\\/\\/sadjhagu627hasik\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8da8844e30e27f44cf73c036eeb8ff092e19bb2c9385580ecacaea756ca25908", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "71106c52402075666a59f7deac80b5e14400f8df93ff9a52ec819f03fac947c9", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d9788374f77fa48fb6e9ddf00e8949ef545751f0e39796f0a38c3b49715d5105", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f\\?wsidchk\\=7496859\\&pdata\\=mUjZFgy8inWwPadWDyMi73Ehv8qpkkvAE1bk2EecdVbjFiMi3yQjtN3LtC2T8zeEDMLeZHjdMmKmrUhRVXLqembysdXd0HxGHB3xsVscvVi1TiUgtHM179hqUZ\\-RdyKL_PQ\\-SPnEfqdS5LjxFRPVlz3jnQYY0Mc75wCyvsYd9MHOWlPKktokWI1JbAmtH_OzuHz2H1GuX\\-OkJKt\\-zyOPGhTPEpRo3sKZxFL6rSm1fTWhwbvKjhrt72PQFLEvV7DDUyw2Nzox0YWZQNJTvaCFhJufwDKgPHwUyxFQzBWg\\&id\\=7fa3b767c460b54a2be4d49030b349c7$" + }, + { + "hash": "6a061c974747d1f956bc1e6832687813866554802c06aa3dcbbcd6b80db878d7", + "regex": "." + }, + { + "hash": "8b07db6c0ad8c4f6d2f5f51fa00309935054eaf1d6f95fd281bacbc09e944b34", + "regex": "." + }, + { + "hash": "22d76cd051934be593a25204f10bca5bcb9ed20f9978c902505b710d31dc06fc", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a005bc7cfe9b52f82b9737962db83c3d73209de132a7fdb68efb3435544e57e2", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a6cc814c615c5d071c06aa63d9741320555d715e9473e7631ac6288fd5d9490c", + "regex": "." + }, + { + "hash": "a37dd507b020d99ad6f13e87775760a711bed5f2b267c298e3981c34177986dd", + "regex": "(?i)^https?\\:\\/\\/xzbcwju6d2u8hkia\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a404f57e9d655c22204ef29c91d07eee5206bf18d3eb47ec2bf1a14b05337fe6", + "regex": "(?i)^https?\\:\\/\\/meteorologistdsv\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "76f309fca18cf34f02aeeacf6296b2d3e262dafe008890b01625fdd49e43f565", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "20416ef3045fbefcf89ea94ba78751da7796785aac55e36a42154b1148539c51", + "regex": "." + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c632cd2\\-595710da\\-f787\\-4ab4\\-86a0\\-93e012721175\\-000000[\\/\\\\]+6zUOD98Y1OenTmdzXXtFbXi31Z4\\=403(?:\\?|$)" + }, + { + "hash": "b9ae7ce9261dc44ffeec5711d5c2e0cea476ebe1a70362df1d2cc2a24f9adf93", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "95a9a73b73413608140d445a1a9881e5a271ece5d3d8d85172776607a75b891d", + "regex": "(?i)^https?\\:\\/\\/good\\-foody67\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b22c4b54b95782392dc2374bc9a7f167a3cb66353bd199b602b86ccaec4df311", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "33344d0cd015626a39ff86edcc06cf65a14952b7d31b4372821acb1422380717", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "183996da1274c43e5286a868eb9100d54c53adea6bd9cd4ffe8d134f8ad78f88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+k[\\/\\\\]+8QV7ykky(?:\\?|$)" + }, + { + "hash": "d825326686ae70fb71751190203d001ee035a3fdd739987def585f79b6e30350", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?g[a-z0-9]{8}\\.fsgjsjs\\.biz\\.id(?:\\:(?:80|443))?[\\/\\\\]+\\$[\\/\\\\]+89[\\/\\\\]+06" + }, + { + "hash": "1caf94118e8c3efe55d6da372140bf884e3e51c8f30b52472370b4e3bf185ff8", + "regex": "." + }, + { + "hash": "df686edbd0ff3c26604ba8be32af679e546e4416a2878f64c5609aa1473e5876", + "regex": "." + }, + { + "hash": "0a23cb0ed7987fda7516a78e2eeafb91201f7d553c12affe3f267f4c4097301b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f73f98b785fee994b1fc5ef37d63fab60c37478b35db1e23ab6f8b2a11c634b", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a0a768a5ae8b3562b2ed1ea84a70faa36b01f79e6d2e29f8b7c41fe852a34250", + "regex": "(?i)^https?\\:\\/\\/mail\\.154\\-203\\-197\\-141\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f62fb2fcef2f2446e11e9c315584fd240215d5c48fece129b03b4c82ace41f9d", + "regex": "." + }, + { + "hash": "fbe9b5924d13c6f6c171e58d7b56faaeb25dd297582905f877e35805b1079190", + "regex": "." + }, + { + "hash": "5d2522e54fee54b95f4fa4b6b09e9a9f8321fb7423bbfea02a04dbbd0fe6520b", + "regex": "(?i)^https?\\:\\/\\/rbx4uuu\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9516414fbdef974092ba38f206e03b11d8a7e2627937cfc2b5286efa57e4914a", + "regex": "(?i)^https?\\:\\/\\/zxcmjaswue628idgikas\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3969d5fb54fd41260555bce436f532fc511617d812e0c491a0d10a3170710397", + "regex": "(?i)^https?\\:\\/\\/ahyd72yusahd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938a9d8c71\\-26599cb5\\-765b\\-4bab\\-91e1\\-d5c8aeab4fb0\\-000000[\\/\\\\]+BmXsPNQyx_pgCWDVhDijENZ1reM\\=402(?:\\?|$)" + }, + { + "hash": "7fdd14b9e263d70c04126a5eb793317da21de41ffc276611379afa399ddbb6c2", + "regex": "." + }, + { + "hash": "38a4f1d432b0578ff34010cb144d842e1d2d006ef56babae64bf3b552612bc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b1b0d17f6f9530f0bc4745fe1ebdc67ecf638d97629fe7dfc8ebe9cd46711a2", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c66cc87a18afa33e7d3c9e177b57dc623fe6e6aeff2e525a50462dc8a71351ef", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0f30422c8297084b9df7cbb07db1c117484d6cd2c4e135152735f44ddb123274", + "regex": "." + }, + { + "hash": "de8ce189fb6e692fa88081d2e452784d455b0f124257b74e49126b9d437eed08", + "regex": "(?i)^https?\\:\\/\\/bafybeif6zdo7xcxr3oga4htcpmtp73l65inqkt35hhz3eltzx3v3rblxw4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "06923e7360050ab6a13d46af8868539304fa96991d1765455e8bdd091446ce74", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkgs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "aa5259a1e364851247e97cdfa071b6a6cbaa93fe5f27c1117f1364ea8045a1e7", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "cdae68a4878d6c32ccb0b592c8e3666f2b270b0afb56df2d45bc422068f630b6", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "314cf0df4d6b8f3843940fbb44bee27470f79bf06d87474ec7d5d8c0d53b4b93", + "regex": "(?i)^https?\\:\\/\\/zxcmjaswue628idgikas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cac6257b204b1e3dec305033248aa2bacfff2f8177d0ca2299c0a08969836e24", + "regex": "." + }, + { + "hash": "a6f90294230a533f5af6edb6dafc8f065700bd5a633074f966e2150a47cdb478", + "regex": "." + }, + { + "hash": "52ce1d516f9dc91b5649538e1999c176dbb82ffb32f84c039c915e0c89aa7671", + "regex": "." + }, + { + "hash": "95b555ed29e2d9868ee4836254d2cf86b73db53738383190645ee3442d9147f3", + "regex": "(?i)^https?\\:\\/\\/asdhzxcjuy267tusa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6183c1c17edcb89574c0707bc65cd7c65dde13017ac7c0900dceb9e4b1adcd5d", + "regex": "(?i)^https?\\:\\/\\/bafybeifmupiza4c2exdcjmjhjqojnvugju4p3zvbdixut7psonql7xt24e\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "b854a659365aaeabb59b063ac4e5780ecc1c87c512fc5bf240e972dd300eb4eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Url\\.html\\?ant\\=y5m4mybq$" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938b21ceb7\\-d558a02d\\-66d7\\-4d5f\\-a5be\\-272e3795d19f\\-000000[\\/\\\\]+xDpRSLhd7zDmkoRjF8\\-fkSj7YiE\\=402(?:\\?|$)" + }, + { + "hash": "62be013064166259f06f8811d19194360b74daacf1aebe0b47bc3a89d092e53f", + "regex": "(?i)^https?\\:\\/\\/asdhzxcjuy267tusa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "12b4b506847c06c6f419aef654facf73411e40e5d0ea476b3e10b57d56ac1436", + "regex": "." + }, + { + "hash": "80f76c8bb3ab60b7552820012c08c74454ed43237c7e7a244f0056e1333ea0bb", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "308655c29c4b19361de153f49f15d5cffbaa6ad1ee6d4fd388968c69a68f7cf6", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3dc5d4bafaa6835b10a47a31944ec7ccf3a7fcb891f81006654d2f429f9bcbc7", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkgs\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "710b4d1a0f487022631c58565fd1ab42c96afbbdf9dc22d27879e76b704c6c99", + "regex": "." + }, + { + "hash": "ec63d30aad19fe3d963408653ead1570e981539e2af8374994e12aa8ef9b4635", + "regex": "(?i)^https?\\:\\/\\/anekamalam88\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2824210f018d9914d6a69cc6c95725f8189b1613f23bfced05405b38ac7f873f", + "regex": "." + }, + { + "hash": "a4aa5adaff7222354ba39849f2f8fae5d7f99efd9c11650b61642ef60d924897", + "regex": "(?i)^https?\\:\\/\\/good\\-foody67\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "df0cf23f321bb2bde2cabade0b79eda27002434e298049d7369a7ab6abd885a1", + "regex": "(?i)^https?\\:\\/\\/rbx4uuu\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f9bc4b2702a24fb3b4f639e732ee294918033904148d4b4ff0ef6863e40aec1f", + "regex": "." + }, + { + "hash": "7fb8441cecee19607b045f6a27444f9b99953f081a48e05205a480025ae1f260", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4c122b99b04e09389e8071fb17cf9fb6af27a994e5fde5cdaf0a761056cfaa9b", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1302fee37c6098dfd99fede85ba4fe575fb873ca544f9744d78f8be49f794967", + "regex": "." + }, + { + "hash": "0ee16eb77e3db1f4c277470f209cee77d7ab46423c7c20ce3884095498a95fe8", + "regex": "(?i)^https?\\:\\/\\/ahyd72yusahd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8e2b6baad3ebf82c68437e32d4b2d83c39da633e1f049633471c1ab21f97c837", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "f2fa893ebd9349750792d5a4e5f1c8e6f765a1f0fc353ae09fded253bdf7f205", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes[\\/\\\\]+\\-[\\/\\\\]+\\-[\\/\\\\]+METAVERIFY24A(?:\\?|$)" + }, + { + "hash": "4d93e8c8e0eeab8333cf319d74cebab14e50f368d25f73c4d816c719c945d5bc", + "regex": "." + }, + { + "hash": "9afc0222cb11b9cfad254e5bf2e949b891a37167dd353b02776991453368757c", + "regex": "." + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938b1814e4\\-65fd6dbd\\-9364\\-4dc8\\-880c\\-683dba199294\\-000000[\\/\\\\]+Nt_j1lL3np8an0PhATSnWbM3RHs\\=402(?:\\?|$)" + }, + { + "hash": "b92b19ffeb4504c78efe9a5ada58b16021ed98ba358928c32e7ae7a44e47a7c1", + "regex": "(?i)^https?\\:\\/\\/ahyd72yusahd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8b871378f4f4ea90054f00086644a9cb5d21b3af509e4cfcb2d4c9c57cab7448", + "regex": "." + }, + { + "hash": "49d940b6aa5ac7f3dc6efb3e302a6a161f515a3733347a6d1fb0a4f459f63c62", + "regex": "." + }, + { + "hash": "ed8c1f83f049ace8aeac4f1dd1c227912a443e258f9ea3afa8a128ed7d7cd466", + "regex": "(?i)^https?\\:\\/\\/xchbasyutd672guas\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "96c16f36bd46adb4faa7b76d527e3d871ec43221522f544fc9d223aa700f76f1", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "725003e5aee650d84457f3683fbc7fe37bf3949b70f0cac8092a729fc1454da0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+messagerie" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938a832de5\\-991237e3\\-ee15\\-438c\\-bfe3\\-86c69411f8e5\\-000000[\\/\\\\]+iwKWER4Yp13yuo11zS7cbqsVQI0\\=402(?:\\?|$)" + }, + { + "hash": "4f2566fd25aaffaa23ce19a285b112de113c9da6075867b9d132810ede21d26f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?a\\=index[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&a\\=login[\\/\\\\]+index\\.php\\?m\\%3DUser\\&m\\=Info$" + }, + { + "hash": "643f4872dc32e2f8af5b741a71ab2c34c44189ea7e467d58285c6cd28e9218bc", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "acc8d712d44ef5b9a95fb663b054f00f3ec61f31f0d6a5271c0eea5d143e737c", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5137f371c4520d94ece314c0a747c27664fb52c2b61fa5ff3474e9efd28d0cec", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938c5c25a7\\-a8c31cad\\-32c5\\-49ed\\-9983\\-c2e05a4f103e\\-000000[\\/\\\\]+UFSaKt6flwK2C8aUtgwg4ew7xcs\\=402(?:\\?|$)" + }, + { + "hash": "7489cbb536ab908047c806ddbe86593acea881c0ed6a5d03d72f0c6f4858986a", + "regex": "." + }, + { + "hash": "cd215534ec8cd592ef47f58a907524a908207039a6e4c68e8720a19ef08a530f", + "regex": "(?i)^https?\\:\\/\\/85615193\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938aaa1747\\-280ddd9b\\-9021\\-4540\\-9b58\\-4e944fe9c0f9\\-000000[\\/\\\\]+Y_UD0g_Na3k1zL843fejIj4pWSc\\=402(?:\\?|$)" + }, + { + "hash": "6472b99cce51bb588eb5437aaa31fc9fc5d19fe725dc26d90754811d91e7f9e8", + "regex": "." + }, + { + "hash": "10f1dcb179e628fd377fbe3d5338346f849b9bac07980a1cf44cc9f94178dc0a", + "regex": "(?i)^https?\\:\\/\\/instagram\\-logings\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "204162adb51610fb9a38c34ffd9764349e78c930633185d2d2c76120a5a77cda", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3ad8eb93896032d6c4af5f72f89173a2bf9b680dd41642de5a98c7545464e09a", + "regex": "." + }, + { + "hash": "8d646e7494b8724666329f0b491b142f9bc933df0b46d5474905f08d622fd4ff", + "regex": "." + }, + { + "hash": "cbd52473da5d169f5042e63ac254201b30850447da4e2d32f8bfffbec57d577a", + "regex": "(?i)^https?\\:\\/\\/apple\\.coarpnf\\.com\\%E2\\%88\\%95ogoyb\\%E2\\%88\\%95akgfldmrht\\%E2\\%88\\%95nxccfjnpy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=klmgkhjlvs\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6be1a455d36b9edfcfeeb30ee68d94717d5bafdceb75cd90f426b631506e8929", + "regex": "." + }, + { + "hash": "dfeffc0aafb927fb0745af614c9c4b37b8d409f4e9bfc43bf3c49241c2f0cef9", + "regex": "." + }, + { + "hash": "a7947a95d785734a9c7030a56bd82e89983cdb3b19705eddf8381878f51ef83c", + "regex": "." + }, + { + "hash": "68b888e5c9b1cec2264e6eb93be2b9ba3b448ac5e4cd3bbab08130e1ea9a2f68", + "regex": "." + }, + { + "hash": "d805ab955340dcb32f99e577f36df3d81a1015a241b2e0ab5dc2ad7e977e27c5", + "regex": "." + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938a871ebf\\-7e406f72\\-52a8\\-48ba\\-bc6f\\-7dc5391d6af6\\-000000[\\/\\\\]+VQ3739DebUAbPGzYekQfa\\-Wg04k\\=402(?:\\?|$)" + }, + { + "hash": "87bbfbc4a74eb3f9e500df78fe95021fa07f47402c7801859a9f96b02d9b465d", + "regex": "." + }, + { + "hash": "952a77b8539068055ac759bf79be522d2836b728738d61272fa059ca532f9a77", + "regex": "(?i)^https?\\:\\/\\/vzxgh8i726id8auhsw\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4894f06f0cf58d88717570a10dbb46253a9cfc4f066493f39ce919acc1edeebf", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f0d783d1c499cfc0c955e24c2292fcbe90fca53c92e1e43eea7e41f003d3cc47", + "regex": "." + }, + { + "hash": "d1570f69dbc6130fb2f8c58a68bfb211fe389bf223a46b835ac4f58363ed8a6c", + "regex": "." + }, + { + "hash": "e6c78130816c6ca389fdb6f5fe11a383370c065e4d32a635b1d00a9645e95184", + "regex": "(?i)^https?\\:\\/\\/zxczjhg67qw5d7\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b6483621df7eba27f80a4675510db12dfb4f1f6ce42537fa1ece07c639623436", + "regex": "." + }, + { + "hash": "30f9659dde9d19da9224afa61b00a673705971ceed2c3553d44434c08f5424ee", + "regex": "(?i)^https?\\:\\/\\/meteorologistdsv\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938c832aca\\-16843717\\-661b\\-411b\\-a398\\-e640161964f3\\-000000[\\/\\\\]+BcOf0UA_s0C1or325vfZ9qbkUdw\\=402(?:\\?|$)" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595125\\.info[\\/\\\\]+1[\\/\\\\]+010001938c58afff\\-9e835cf7\\-74f4\\-4549\\-8a7f\\-b8f1301df5fb\\-000000[\\/\\\\]+QQxHfy28AXkdyllmZF042eUovfs\\=402(?:\\?|$)" + }, + { + "hash": "77d24789bd5f4922ac25999abf669ff0a8eb76ead6f8012e3617ab1ea7bfa0c4", + "regex": "(?i)^https?\\:\\/\\/bafybeia4cberqathznuijeduaqf7u76kysljby35ehinwyjuacgjetdebu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "8ea524e618cdf6c927f302314b692d542d29e825bedcbfb48b34e3d5d97f2696", + "regex": "." + }, + { + "hash": "1fac48fcdb471c51c9c42709e6f1a879a23d2efd12ce3fcb448ef902f054597b", + "regex": "(?i)^https?\\:\\/\\/zxcmjaswue628idgikas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "431e088dc5ba9425aa765d830f9bae093863ee3593c9ccb76729f466d1cb3b7e", + "regex": "." + }, + { + "hash": "64c9dfd8ce310ffdef75dd02be45365d292958e9eaa7cb548d546325e161770d", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkgs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c11c2dbab1eeaeea1fc184e7e1cd19d7c47993503b9ac29f2fbc2b10c058c380", + "regex": "." + }, + { + "hash": "d15732667e1abd1d198fd1cca0f6724140be94999e2dda5a49f98d69c1277650", + "regex": "(?i)^https?\\:\\/\\/undianbritama2015\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "beaa763576226ac2e07e3318656feb27079e0da231d7942b3648f802f351fa5a", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b57f7d30b996a9424d5b75598e8769edf8cf4560a756ab7c98921aebaf255a7f", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4594123\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938b6a1ceb\\-fbeda6de\\-0632\\-4a8f\\-8dd4\\-4d64a4a31194\\-000000[\\/\\\\]+DrD7eZoyEA8H84S6cjMwydkapcU\\=402(?:\\?|$)" + }, + { + "hash": "78095f594af439354c1dca50aaa38d0017171b06e3c22f09c536d3d8f8acc0fa", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "0cf04158a616e76d0b1f1f84196311188c9543b871dffb65e9d9e05206a1823a", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "28f52869cfcf7650b92c48e7e4ef74a5d4a6555af6f9f0b633eb501b9855df84", + "regex": "(?i)^https?\\:\\/\\/ditmemmaychotaodc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9f623a38ae83280cc3b269328c172625911b19e4972ab92d798eaed364623f44", + "regex": "." + }, + { + "hash": "77929235541a0b804fc5bdad0adc79a831e7137ff6195baa979972e343a935ac", + "regex": "." + }, + { + "hash": "4cec219d3bd328256191b9faf8cabb82d3abc50aabdd7aa212d2968f9aa5b796", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5257b70fddd4e941d90fa48497e30bfc26cb54b81b3841123787bbd4ceaa81db", + "regex": "(?i)^https?\\:\\/\\/7822761yatata\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "95b5551de195412caab4d896e4dccc2970acc8df734348cdfdf3ab89e21c856a", + "regex": "(?i)^https?\\:\\/\\/hadbankiaslam\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "76ed17e0d069ed0c4ce657b8b97b85db994b691e1dd95b66dfda825c928e0cea", + "regex": "(?i)^https?\\:\\/\\/sadjhagu627hasik\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "eae8376e1987207c29c650cd9d1d335bcd50a5a74d2ef097a480694a07ef8eb6", + "regex": "." + }, + { + "hash": "153c2cbd009685cd7f7e6b7cadd956be2da5fa5a1610b64a954b8d060fca7276", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "327647cd329f4ac626504c61c8c215071beb9752738523000c4b2293231b1499", + "regex": "." + }, + { + "hash": "f34361cac787afd542e7b18a8930472c8ad1feb9189416c3fb00f0f2b7d42c8f", + "regex": "(?i)^https?\\:\\/\\/xzbcwju6d2u8hkia\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0d63a3250355de8421baba4883ca28c15b0fa2919c2377709cb7f64b7ba9c74c", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7706a6ece079adeda1e10aba7a075e9d9db431db723104488359db721ef97c60", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d8e14cefe01661c7cfec5448b1e42e96d7ec28ded4be8ea4496a22d2884ca8e9", + "regex": "." + }, + { + "hash": "3ef055f16ca7c977dabdbe05fc6b54d6a9860bcf82419bb885f67dee732ae7ac", + "regex": "(?i)^https?\\:\\/\\/instagram\\-logings\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a4861c8ad6bd8bf9d2303abe70b3341cb8d7ef37d990afe4fec574e48694b27e", + "regex": "(?i)^https?\\:\\/\\/vzxgh8i726id8auhsw\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3efaf0dc1ababe27485531ed55a08f07553f46b64b8411e1d62de331e219ffcd", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "26a9522ab23429d1058e7d8e7b189bec1fa9cf7d67f0db2503535aaa4c27285f", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cdae9e86c7bde59acddc71808250372ba7ca80d8058de863e0df21c9252e28f2", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cd6226461826a2de331430fde41f92b950a3fc10f980b118c62785381d51f901", + "regex": "." + }, + { + "hash": "ff5e786b0fad1be2d1c153ab80beecb3c79eef0e7e6361752c5dc69e30686ba3", + "regex": "(?i)^https?\\:\\/\\/game4only\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "249b4dfd553b9f5b7582841a04600d21027f5888968fa3fbbaba9fb87b300e18", + "regex": "(?i)^https?\\:\\/\\/serviceappw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "14cde2eb8d30bf8ab8d0bd718b9c08f7c3c49e2692c1317214223aa373a82544", + "regex": "." + }, + { + "hash": "59ce0519503064747f8be9e59f8caf9ee249c6d13fc8f5474805c9c8a0a9d7e9", + "regex": "(?i)^https?\\:\\/\\/asdhzxcjuy267tusa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6e70b1f07ac46867131d5f958a080c66c4eddde05871e6dcd6c8cca63746409d", + "regex": "(?i)^https?\\:\\/\\/sadjhagu627hasik\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "66df6e4079681db7655e0ee30c643ee555c0ad332140e42efa2722465668a4dd", + "regex": "(?i)^https?\\:\\/\\/derdefcazx\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d61a68ae890733a4f94dc6391ccd24669cb3ce3e3a444b36d22c98f59aa0a6e6", + "regex": "(?i)^https?\\:\\/\\/sardar\\-moazzam10\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a2816bc3918e74a7289157e3da4cfcbd426887ac846ffc540184fdfd06b06f0f", + "regex": "(?i)^https?\\:\\/\\/game4only\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8feb52496740e39dc9bc7591964482a51fe79b5e73e4095ddd59bd46abafb25d", + "regex": "." + }, + { + "hash": "6bbd0a2370e2a87f63fa751debf7c4d8933881f9d510bf666df90976eb23aa10", + "regex": "(?i)^https?\\:\\/\\/asdgh268tysuiy\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4e81c8610d7a5bbd9eb8d89af1742d558aee1da74ff346b822d5d9da8a51e6bc", + "regex": "(?i)^https?\\:\\/\\/zxczjhg67qw5d7\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4d8413f923a7929e06a282a235b11840f38665fd1fda9e8963c2a9e4736290ad", + "regex": "(?i)^https?\\:\\/\\/kkkkkkkkfgfgggffgfgfgfgfgfgf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2b9d87afd26c088ef09fd538249bf032184e9ebc93b487258f90bc12cd84bf41", + "regex": "(?i)^https?\\:\\/\\/zxczjhg67qw5d7\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7278fd6bdee274b66648dcec289248962b0f39768bc45e25f8602cf6a2c83de9", + "regex": "(?i)^https?\\:\\/\\/xzbcwju6d2u8hkia\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2c483f497b2d3f54f3a26e58c88213b2bfbce76c79d1d3f573c9dfd28ead62da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uy(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d07516b7015fdbb951873dfb5e5ca37cb08c224dbb07af0e9171665f9b23b5af", + "regex": "(?i)^https?\\:\\/\\/anekamalam88\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938ad18372\\-f03f56a7\\-b685\\-4e99\\-b7d5\\-3b74d8f69586\\-000000[\\/\\\\]+KUrI7QBoaEh1moUybpOMdQPMHQA\\=402(?:\\?|$)" + }, + { + "hash": "c9bdc867b1f07cb5968e65791f1732b1e02a1ed459f1c637a36da989b07d4188", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b8dc7d779f138b3589a8e624c5fcec3a20ada409720a023cd4f77a7102ce5d5c", + "regex": "(?i)^https?\\:\\/\\/zxniawudy7ik2\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a54e02cb7a487c545470bc83f7d75c1d2f906ba63ccde994528b4d14de97ff94", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3ad1bace1efc6f354c95a977e665698fc17af89991d65ff07f6b19c415f81ce2", + "regex": "(?i)^https?\\:\\/\\/dnsjhdksjhjdshdshjsdhsdjkhkjdhskjhdshksjdhksd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2024[\\/\\\\]+01[\\/\\\\]+var\\-myarray\\-var\\-rand\\-myarraymath_30\\.html(?:\\?|$)" + }, + { + "hash": "dce1a6e3f3f31e585db57320bcdb98d0ca411e732bc270ce32708ef0761783e7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UKep5KcOm(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a9417be10656597084e072d8ed2604382039435b29a4fec4e00b7b23fb9da891", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "5142f27315aa06e3d5ded66c8061ba233958acd1b994b8926f328f58c8a4c0f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ea8f8b93b4a98c613c0c0fa78c101ae0fa3604eb11faca373f9524ef4478e3b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zil\\.hubek(?:\\?|$)" + }, + { + "hash": "74fcf04f05d06df4cc9c4b29c2c75119e2244a87e148fa412f1a4dc75d02207b", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9a32196ad993851a3bf2e56b34c69476c7d583e509ade22953c212025739e673", + "regex": "." + }, + { + "hash": "6109343d7ce20005c33974e88ad6518703637a3fcdbd1a2dc13128e1e4dacabb", + "regex": "(?i)^https?\\:\\/\\/undianbritama2015\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8fd3ff122750a035baeaa578befe771a2aaa9410111240a096b239551edd0446", + "regex": "(?i)^https?\\:\\/\\/meteorologistdsv\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4eef63d066daff477c4b63bea03595be36179dd3b644f53bc5931caf38b9ade1", + "regex": "(?i)^https?\\:\\/\\/zxcbjaw6utd2\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "c01eb388446b3a805e07f413a1edf72b316d67f7e529d40881cac2b20301b1f3", + "regex": "." + }, + { + "hash": "992ebeb4e7a8568676fdbb9cea0618e14cb881144ba2f81c23309889b82dddae", + "regex": "(?i)^https?\\:\\/\\/bamecononha\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b73e94310409f17edeaadd24b352992c0b9e1a5288bd23fb9463d3462f5da8c7", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkgs\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f4f0793be219d887b0d7b653de47b8241879fa89f3ccb08b3c519e9fa0df4848", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cbd52473da5d169f5042e63ac254201b30850447da4e2d32f8bfffbec57d577a", + "regex": "(?i)^https?\\:\\/\\/apple\\.coarpnf\\.com\\%E2\\%88\\%95ogoyb\\%E2\\%88\\%95akgfldmrht\\%E2\\%88\\%95nxccfjnpy\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938a8daefe\\-e40dbbd5\\-45e7\\-498b\\-b498\\-64c6b691dd21\\-000000[\\/\\\\]+A3SZJYVmabjEJYbGwBAg3Eq6AIA\\=402(?:\\?|$)" + }, + { + "hash": "70dee0f6514a487f905324aae32a733ecd376e1a547e4a90ad2d7d0197b55352", + "regex": "(?i)^https?\\:\\/\\/dnsjhdksjhjdshdshjsdhsdjkhkjdhskjhdshksjdhksd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2024[\\/\\\\]+01[\\/\\\\]+var\\-myarray\\-var\\-rand\\-myarraymath_30\\.html(?:\\?|$)" + }, + { + "hash": "35e08e59e3cbce78986409d16e765e5571599726ab4195f0ef52fbb4f421dd70", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Onenote2024\\.html(?:\\?|$)" + }, + { + "hash": "deefb607b2a2ba9d229294ae77e7c4e644b94bbf506478c6bd3903a19be4d829", + "regex": "(?i)^https?\\:\\/\\/00663110188799ef5443fd4715fe77b0\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "81b437c490a4ed6d208953d39a7b4fa96ccfecb18f324f3369faf1a0dbb3a38a", + "regex": "." + }, + { + "hash": "317da61f3486d05961f07cc1827f79f9e06428530f16ab7393d40412a547412f", + "regex": "." + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938b181d97\\-bf29c670\\-ad38\\-4ff7\\-b3cd\\-d4edf958e5b0\\-000000[\\/\\\\]+6pMehq\\-5IRWR9bCb5JQqsEwawFc\\=402(?:\\?|$)" + }, + { + "hash": "959dd27f2925839260f13cf9cd5a6cfee0fe1e516b7926e5fe721709c780b4db", + "regex": "(?i)^https?\\:\\/\\/derdefcazx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "46d946ec4a86773112091a2ef10e7ec75bf100177cd50f8f2ec512bc848440bf", + "regex": "." + }, + { + "hash": "e9ca1772827faa2506bd19d87d6ca28a6fdaabfd1cae8b34cf8692e5fc9d6920", + "regex": "(?i)^https?\\:\\/\\/agmahmzs\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?email\\=animal1733565000958\\%40yahoo\\.com$" + }, + { + "hash": "5239dde2bb21dcff2c69e2b16c9873ddf88c836ecfdabf98c8aa0a6a32f9d243", + "regex": "(?i)^https?\\:\\/\\/asdhzxcjuy267tusa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ae96b84cbf8e6fc79d01cdd5d98dca091ffb2c183e60f174d8f951727e43b2ce", + "regex": "(?i)^https?\\:\\/\\/sfx\\-sfz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "918905938a27e18a7522ceb7cfb030d1fa9870bab0449d4cafbedc0079040859", + "regex": "(?i)^https?\\:\\/\\/rbx4uuu\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ba60a27fcc1c8301690fd1c49cca9bd83b03f6f091a03dcde9abea73bd911d70", + "regex": "(?i)^https?\\:\\/\\/claimit4u\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938b1c3ece\\-b92a10cb\\-23d5\\-41b5\\-a925\\-20153445f8d2\\-000000[\\/\\\\]+wSmuBe7ZJXCzZyQ2biW93xeDo8k\\=402(?:\\?|$)" + }, + { + "hash": "6aa81cca8938162bdaa7ed924f5bbc0e8623c1bfb05490e57f2c314540e31de5", + "regex": "(?i)^https?\\:\\/\\/be\\-t\\-s\\-1\\-o\\-g\\-ir\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d3668f040cf350e79a20edb287f22e2b0bec8e17cbdd98fbc6a31d3a4f11e4d0", + "regex": "." + }, + { + "hash": "4583d0f09e113c061bff9b50a442be649436de2e9556632ddea0f3f8404e8e58", + "regex": "." + }, + { + "hash": "70dee0f6514a487f905324aae32a733ecd376e1a547e4a90ad2d7d0197b55352", + "regex": "(?i)^https?\\:\\/\\/serviceappw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6523f8081218a8671fae089b3212adfc0f98dedd1234ce044faf6e57f97e48c6", + "regex": "(?i)^https?\\:\\/\\/anekamalam88\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "19bffa3752fe4cee222c51cca9c83dda2de0735aa3f516c3e98f24fd4b471c0e", + "regex": "(?i)^https?\\:\\/\\/hadiahbritama2015\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "19e08680f7dba792014eb8e0ae59265f83a3a55cbc4f4ca3a8f046a5d2dca90c", + "regex": "." + }, + { + "hash": "d67d72d7bbdf8f54d79f6c5713698a960aa19b5f66012fe7dc6c42107653b1ff", + "regex": "(?i)^https?\\:\\/\\/claimit4u\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a9cadd418902f1183a9c8b6f689915c1f287d2ebb03902b632941889e59a7451", + "regex": "(?i)^https?\\:\\/\\/rg7tu7y74hujf\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "882be4c8f8b5c375988fc8c147a898883dd1aeb19bfcfa2c19444bf17725295b", + "regex": "(?i)^https?\\:\\/\\/hadminiaslam\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c85960879a15e238497bf088d102d0426a3eefcefbaf2955a564f86c0c321270", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "14713066ab28884c7a0b26852294bd7686056673e73fcb7d4f5a30eafdddcb6d", + "regex": "." + }, + { + "hash": "6d37a1bcd12fadc66aa40861e699519e746507d54e3cc0c98b5ca40a3cb479b8", + "regex": "(?i)^https?\\:\\/\\/hadbhhanankiaslam\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6346ac22958ced93b0382e6f9cfad94db6652353d3d305fcdec0685c5d80c935", + "regex": "." + }, + { + "hash": "658d50910c48f33e944da761e82fef482fdfe4d874c8706b433733d2699c3c16", + "regex": "(?i)^https?\\:\\/\\/xchbasyutd672guas\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3be50b22eefbc2238fd3f77e155f3c50100da4a379ad808e65c9ae37066e1bf4", + "regex": "." + }, + { + "hash": "d243a99ac129ce25dda747154e237e54116d13338cf7745ef97a210462c64ab9", + "regex": "(?i)^https?\\:\\/\\/xzcghawd62yhu867yas\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bb81ab41aaa6926ada58f336d9f591d447412bd1e77baa00715a3f783a1f9112", + "regex": "." + }, + { + "hash": "5f6287bd7ac17dbabb4e922c37300faaade7316a46754732883dbf8d449c139c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+consulte(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5ac65467d33cdf889c9833f5f033215b8ef61ce4db4c9d5d193937a15ece6869", + "regex": "(?i)^https?\\:\\/\\/dnsjhdksjhjdshdshjsdhsdjkhkjdhskjhdshksjdhksd\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2024[\\/\\\\]+01[\\/\\\\]+var\\-myarray\\-var\\-rand\\-myarraymath_30\\.html(?:\\?|$)" + }, + { + "hash": "352d40b522f2bffd097703d4699615ccb76b4c0507ccf28ea776570d0c986fa9", + "regex": "." + }, + { + "hash": "f0d7d358193eefda9ff76c704bf4ecb53a4d3be578096f7835d60db0231bf0b4", + "regex": "(?i)^https?\\:\\/\\/3km\\.ae2000\\.cloudns\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "0f9d256391dd388763f467004356bc87093f06fa085b74a4cfbbfa435b4b6fe1", + "regex": "(?i)^https?\\:\\/\\/zxczjhg67qw5d7\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7fdd5d285ff2778e83682015684e81b39b45f866096e6e5318ffc1c3fdf9818d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Url\\.html\\?ant\\=y5m4mybq$" + }, + { + "hash": "1874fc3c9f1cbb0eff805ae5967b7f17f6a42ffb1a3ae8b2cb6d5c3832bf43f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ece1caba89ebacb0a2e690e31744e08e34611c6dfba5b7d5be3cd8acd838b936", + "regex": "." + }, + { + "hash": "b9fef153c5fc8dbca1a6bfa98fccc24f5914c7ce9d257303f801c253b41702a7", + "regex": "." + }, + { + "hash": "623984cbd5a589d843b8e1a9d6c9a7c1019cdb5864f7ad7f27a99713372e95a3", + "regex": "(?i)^https?\\:\\/\\/zxcbnawdth62gju\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "be4bc73b9eab7293caa89f697def8a22626b8f28c4902db617ea711576b9bb2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+faceit\\?ref\\=faceit\\.com\\&lang\\=en$" + }, + { + "hash": "9a745ddf4c7e7d070a80af19a58c38dbcec44cf0a5e0e298ebd2084123ad6259", + "regex": "(?i)^https?\\:\\/\\/xcnbc7n8bcvn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cfe751fb52beea0999379be544a0e7506ee448517f444127a769e7890eb10b26", + "regex": "(?i)^https?\\:\\/\\/hot\\-leaked\\-video\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "3c3942727f6ac193f9b9935917e241f314a6ec8b82dd4ac04ec388bf6bd25e01", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfykalckascmamse\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2455ddbe6c44bbb747d800aa7fe9461663f659ffaf237cbcd016b1ea1cb157dd", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutakcmasckasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8fe27027417560bf81d553e36d2305d23937fc34c3080b6afe07fda7497732f2", + "regex": "(?i)^https?\\:\\/\\/tryingweblink\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5772e504fce98aa8d09d65a7724606dbae98ebbdedc030be0aba9ec9b921cfcf", + "regex": "(?i)^https?\\:\\/\\/www\\.nesbzs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "457008d70645ca4f17badd293f324af51499d55a6df2b022e266f0e47f5ce7cd", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcalsckasemas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "cc572395c41f1bfc40235cffba561b270121c17472fcfc693d5bf41c2835687a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "79c7894054351747014cb37024bdb880190fb9e57ef80941b4711263f539560b", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "70a9151f16639ef251cfc31647cb1e76a085fb13243586f2e7b2646e9d86a211", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4b03f6bd36e20afd19e4b5fcc4d00edbfe154a89a0afb911ec0b4fa2f7d9da22", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9fea62120c24d7bcfb62686151b436b69f9eaee0a82d6753bf26d70a6a1a1be9", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "843a65bdadc669e1e522512fc27847e2daf90d87bf071e14907f04ea794cdb2e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b6d5ff05524dd001e3014336e35bdd02fc4cf1d5d9b57f4f0309c344ad26ee7e", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "56ef15747a9c6ab1b41c2951de83753f00f3523fd73c7952cb2feb2bdfa2de50", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "750b1ef7e38c404b6026a681dff4025ed30749fd7f5c6bfb60209165497469f6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "78041b4345446011ff52e5a40b9dd8c3e75fcee5ae5ae57c0fc6e5475e30715f", + "regex": "(?i)^https?\\:\\/\\/ersdf654s5xzxc6zzcxcasd\\.blogspot\\.hu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ebe1afb1d710f423b5fb41fd1400950372a3d2a27d0ba3f43b0184dc7e5eb0e4", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7349920e538149f301dec1f1a2b76686707367ee5fd259bd3bd148505b7d2ea8", + "regex": "(?i)^https?\\:\\/\\/www\\.afvnht\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ab673ccb095524c52d8fd343f7efdae34e4611937c6425f516f273e8d9e619ea", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcmasckasmed\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "dd5f5b017e1648114119714e317c7be746618245637c32734f75f56f20fabf84", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d1bee1c3cb22bdecf44d488a80b756f371ba6c499a8254943448623e586aec51", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c835b17432da57071cc68f4aed976a72ee6384e9e9953496bd5aacda74a63bd0", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3bf67a8ace7e3693362bced15c92b5e269adba1bb6e77e898b5445e3f7f25710", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7be72dd445c2978792b622ed42ef14addeafb74027ee863773b3abe0b0a4664b", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bcf470544dc8f950709182c61a80b0ca9068ed4740acfff998d97a3df8c6984a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasduaksclaskemase\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9a0b5f9026d3f1e52ac8c3c1d146ed74545c82ba2fc8859426937578fc7441b9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a8c693cd54c0dbd2d76cbacf262ef912458b6d800294cc65bc13f8ec8396f012", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutahckasemasema\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1323bc0d9d0b857dc3a5efa2227a7d46b23b1fa59ac03f9ee03711ab58cba625", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcmasckasmed\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "83620a6f397454ee75c1ea05199e24e93fb6fa81ce06d20ef339a3e1fed7e826", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9a508cde243e7753ad1751b236a0c28e34151cd35485db9cf50c852fba45dd0d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakscmasckasme\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f823f1fbd8baabb9e0e8b8cf161a3912362e87b8aef4f2d21685667f7c4bd8b1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuykacmaskcamse\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f5a0ad231b54901e30b6390f365a27f5c21fa3341f8859e68c3a3117afc074a4", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bd3e4648a174072ac79e077eb1bfe1dc01cb1441880a9f806f7f021161f285ff", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuaklscakscmasema\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c3c311ebc295572917f16c2a14f347d206646c25579be648d5c4f0f7bf0226b3", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "901d9dc643385ab23117533ebac31e88fcc4faea4673b4894bb5816b7dabe4db", + "regex": "(?i)^https?\\:\\/\\/vnbmbvnm897\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "08725f5c6623b863fa99aad4fe581dda8d904aafce111a642391a99d8600c203", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakscmasckasme\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e8a3c1929d86d539d6b7f9f11feb4c0f021420341843a9965f1c2d8f1fb5c51e", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c5a38503dde78a68f4dec1b27794e419abf8ca4d527ae0c8124851151d8963bd", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuackamscaksemas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "202a1b41eac3ed1f7703f67a28634dfd57a27d36a0a3b512420ad7c028154544", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "79db4818f2633ded7cfdac0bc667b6755b4e6f892dbb796ba3594e5d5938198a", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "098de851f6b96094bdd20e3fee03cf11ef1e24d57751639188deeb70797c6d34", + "regex": "(?i)^https?\\:\\/\\/pacoasleakvmsdfuyaksckascmasmd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f02eef2522fae46e4dfac92c08f2e8c2e653baa1c4923371cec8a0c56d904157", + "regex": "(?i)^https?\\:\\/\\/instagram5062\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3969fe85621a8a170384e2b5d0bed27559b14fe526374b5d7c38d6bb6551bd6a", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b7df319c9d35fdf1cd04e5f6b79f5393976e729f8238f91ee1344222ef552d3d", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c73ec01e950bd9f9a84834d05307bb9055eb0887c121a4f2c15b8b9c757ac21a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsduthckasmeamse\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4d0b61bd56ebbede61133a56513bbcc84071297c33b1ed42863b073c2c97977a", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4f0d9bdb75014bed42c58dbcf4954817e7258165727aeaa76ed5dd725c69ad00", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c11c82910d55b0ab20fe61967dbb0fecf14fe9cade5fe3ee4eb033de6731770a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmskdfylasckasmcasme\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e2d46b3a89157907ac2af512778895bc86066c0eedf2e72e0bcee98b96fe28d4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahckamcamseas\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d7c5ba16d3d1c2f6ee3cf67598235ab75ff572d6902600e873eb931d05c43cb8", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4b524f75e21caa5ca92c8a504c43a3fe0e06bcc0e2843c3767cb3a4493806464", + "regex": "(?i)^https?\\:\\/\\/pacoasleakvmsdfuyaksckascmasmd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a36a39379c13b814f9f79f3b3fc75e1d84ff8aa2ad0d39364556131fa3dffd3e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "550a95459abb7ca60fd3584f286ba006730e215f0f3863de1174d812fdc03bf4", + "regex": "(?i)^https?\\:\\/\\/www\\.sfdxeh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f13dd7ae273f63a69195fadb36fd002e792160024644117333091acdc1592594", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdtuahckasmemase\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a3c2077268989e682c1b38d12ed938653909b0f5b518e682e70238ff101df6f2", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9d14515e75ec7d91d693f30bbf3b2bd87b35f746cbfa40e24137b33bda9468fa", + "regex": "." + }, + { + "hash": "845f390cf3fd49229f4a74ca96a1f697b3ecc59b8696d2fa27d92763f147babd", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b0d1628d1bd3c308b7df638b7af3dc10dd47c115a13969719c9a3548dfe30afc", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdktyakscmascmase\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cec199a794f312064c857177827a2a27191cf39c94c08685cb1b3157fa22d3eb", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d4467958ce408b193e42856bb292b9b82254f089a56073970f8cc6106f7a3bb6", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2f195df5c4147ef18ef3b546b4ed171bf5fc34eee9858154ee81fb4f1ddee5ab", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "858a511b3d5b4c86504e8effed3296ef3e9cb1e01fa8d55dbb6df45f6ad379ab", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "baf59444da59362f4d90f69a032fd9842c23ec4f0c42eb18ecd0a1535623b309", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuaklscakscmasema\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f2d2d4b2c517d92002065a83057847075942fe27edc8d9115170156a7ccc906e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1fcdfa78f00f3f009ed97cefea5ff4c04f7455222227ecd24563dac3ec7a7b75", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a11af1109ea1178e2e5b4419e4548a76b6d1c9fee25aaa8651aed75e8c8052ee", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b4d591b9dc6b1dfa7abe7aa153a4d88adcf86513e76fed4403ac1a442f681526", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a33f0783891830d789ced284224ad57799f239a2a8f050a942b5b5a4a078c4de", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e1fa53f991c5851e868600dd5cfa75ce09d9a430a8933d808b08338e5cbde397", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "aa8b9bc36fe7458374527e245c0f447e29e0981321133f22aa46535545d295b8", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e4619cf2085891ec8a6bcaf60738c34cf030e5c18d07464a7268a75c006ef4bc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuackamscaksemas\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d199cfa9e9733c8139b99133ef997f53d2db1db1f6997cca8cbeade988d2be0f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a55c4b9e9327430836a6cc8d5a90781d6743cf40e5cac2b8f34f9d3f240a12f9", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fc04ca86c4078e582fab54623d32bd55052187c781d136dc47c52ead41cc93b0", + "regex": "(?i)^https?\\:\\/\\/www\\.afvnht\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a85e0bb8aedfdbda877b054a70615149e0f8d7489505d83fcd0b346e26fac445", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "858dffd1a44719663c7e38ac9e9254c9f1eaf2e6439f1d44af4a245c9008be4e", + "regex": "(?i)^https?\\:\\/\\/pcoasleavmsdtkalscaksemasme\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1aaee3dcb7a4e2bc155aef32f1d3ac2f882540772cdbb6b9683960ef0f8b1e90", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsduthckasmeamse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "96b10b263a1c3d5e2df5d91257cb9b6d1067cb12ce31b500baeea8004595d0b0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fd1caae610b4d34f8db3c6a484b6195e4f95f5ed68bc0157df520e59461ed251", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7de935be807e1dc648deed2647dfc777b82efe11c59ff408a502bf569629cfa7", + "regex": "(?i)^https?\\:\\/\\/mololkloijh7789\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a8fac3f645a8c0a1d3c4d60fc88f4c6149b88a750b738cb33ad0e5043427a6ab", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7a28a3a727c85bc0a4d22cc3881756a1a86a643d02ffffd940a47a76f69cb437", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b7aafd43e642716d4a2de54db461c250a21239e3063072340b9dc5b1de6ba40c", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "559c48ce5e24ea23f6b4d6fa1df138f894b354a29144a4ba941e3f294b0d2ecc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "59438f145d3dbd7916bc23268b41508b4690d92e76596a117701ac57d2847e00", + "regex": "." + }, + { + "hash": "4e4db1fa397e43291d31f27ae2a953c161909184536915095cbe2ff9192dc960", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4c5b1a76a33b35aa9f253c60bdf7f44809bc2c927522db12d042f91d3fc3d730", + "regex": "." + }, + { + "hash": "3a6869a5551704c9bb04102f18393e764161f97472d4853098d32280c5fe7f0f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsudkacmasekamse\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7b434aefb76a31fc3aae54aa2374374950b3d980a52ec6c6f91850ee8fe7f649", + "regex": "(?i)^https?\\:\\/\\/ulysautopeage\\-app\\-louloucissp38628\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4a4674fd6cc8a54f1484286dffdbba82dec99688eadb96434a45af6e2749bee7", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "454f9d745f5b859c7802875c602f4fba1dd68b274dba835f76d1d6bc822ea153", + "regex": "(?i)^https?\\:\\/\\/qpoiakloi4567\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d77b5660c0ff0bc6ca6521066af68a5080875cdbe3736f13222c4c44a170655b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasemas\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e49d66176b7d19524a0ba3ff49f21094666f8d614c918d91be35a5d7a5bd818e", + "regex": "(?i)^https?\\:\\/\\/bvnmv4n6546\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "243bf986c1f338a73bf8947c6d688b19db5574f67545239f47e85a3da32c7638", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d4bff5eff7e1e64e261ae408d478802f0f594afe286a32cc6e12b014699939bc", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2b4b3d2ea29a51feb6551f79dac66fa090bcc4dc91c1f24c530a5a14bdf31318", + "regex": "(?i)^https?\\:\\/\\/uhstsyhsffeueienejedsuhsehugehjegeh\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bc0c49fd622a145f3bf44f462b54c1c71c34fa705eddeaf08ae87ea7f3d57064", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e8a315128a32def09fd5b9e77fcd35a11e70758a37a63cdf049081cd3e2908db", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "640b4eefd23d211c5a9eaf2123777d007f6e98835f102cdc808c543f1a68d667", + "regex": "(?i)^https?\\:\\/\\/mloikoikoi789887\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "58b0172c0f64275a1639829bffde77e85cc5616756f58abca0e1c18667b41fa4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutakcmasekasm\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "26c7ee16a474acbade87203fa17ac793264d7505a352d517e45c21506dff14f1", + "regex": "." + }, + { + "hash": "1de55522efd0e7191ef5c1a041b5328cbe789a43412024e5b7c489f66187a31b", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "436312ef29bc09c2a4c194dd6c5f16774af209ff23c614b1e38cee0d92c2ee0f", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "446d934bf97dce5fba8fd2e56561dc08044a079082134b69d9ead7c6ccd1b065", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "616376d0a718192ea69fdc3457d8a3930d9ead788886e92a71fed0d47c35bde3", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c128aa1c23aec9b4d437f53a7ae7f53a5eb1ebf2db47df7951ef69af3b94c9ee", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a63b65d77741a5dd4857e884d7a143da5eea5072bd4e4820b99c51bcff9c2697", + "regex": "." + }, + { + "hash": "459b63cdfb088a9f5512fe038cb6c7101ddf534bb23f3b837a4486a9ffd497b3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "654d3c490eaa7453542dcba19c9bfb9753c974f6f38e1aa50b9d5aa8f24c8756", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8ad420f3d1654062b28431d2dce3b811c6561d76a05d74022022890781f1c74a", + "regex": "(?i)^https?\\:\\/\\/25kjlhoihmjjoljko\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fb7d68ebe9e437a2bc78d2692482d42c85b15c9de95712b5daf15f0077c4058f", + "regex": "(?i)^https?\\:\\/\\/steamproductionsl\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4ee72d4a0f73784ac7332d5ee45771e0668c9bce1dda5cf075af5ff73af77230", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ca2890fa87a7f67c8b60a000df81190a69103d5347ae49dbc6b2bd7d5a73308c", + "regex": "(?i)^https?\\:\\/\\/vnmbvnm78bvnmvnbm\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cd7332ea8457e6cf3b015219cece9db244c33193cccec491ed295878bdb8e61d", + "regex": "(?i)^https?\\:\\/\\/www\\.nesbzs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "20a0adb19833e18bc203e0007760a226e16c17064564ecbd425f9135f9db3070", + "regex": "(?i)^https?\\:\\/\\/streamcommunicate\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cfaeaac9f547b55b8c5127bd5ccc84497f56a5084579b0539fb40e90d1018fd1", + "regex": "(?i)^https?\\:\\/\\/hotcliphotviral\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e600f6ee2aec492e1eb4dabcdc011a5117f272aef714c233dfffdff873c31f98", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "95ff22870f3a5c490a1eb483cda8dd217a68bfc7172ab8be4d5a8da3249a5f4b", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a486572338c13e4a75649ed8b8827ae6cd3d947e2a7642f6f77327ed931646e1", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cbad95c19bb7e597a35cfefd30dabd109caf33e3c462fc1f01fb6a8cb4d0ae46", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahckamcamseas\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ab710ff98d1f1ab7145e0eb2314f9bca3d208576bd9a2a912d42b7bf8d5927d1", + "regex": "(?i)^https?\\:\\/\\/www\\.afvnht\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7d25f0c64c5dee002038701a1ff04badfaf3f328bb75a0667f6844254c2a4e2d", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1c71406a88554f82e1e5bbd93b519d0a7caffd9827aabed30cf5fbf5345d870f", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9647fb5ab71b4f98092573bb05cabfc3e9d3ac805036de085871358d8b5f8aa2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasckasmea\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3091beda0efcf922fceb3b552c2cad0986836d4fad7b1029f03f33587b251a4d", + "regex": "." + }, + { + "hash": "c2984777d8fb508e8338cee82eb444ad59ffcfaa2ad14bd7fedbb08083508281", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsudkacmasekamse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f93328f5f152912eb18aa2d6534c26a10e5858787d6543469a61b93096d00127", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "113700d774e68accf1a035f209d53101c4419c58c6058176a8e17eb328eff495", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4a99a4c86779f99e8d487030f1b1350853d799cacf441306f5282368123e2e05", + "regex": "(?i)^https?\\:\\/\\/instagram5062\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "75d773be3dadf02fa5696e3a70b6f207063f8826ade97783951bbca0fe63fcd9", + "regex": "(?i)^https?\\:\\/\\/qe521436512436512\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9a688e18d1dd10935d7ed3f3c55991e87f068aca8e3ea74022dc7b19ac4da57f", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "babd0234257b427c7791bfc7da97eac9b0a694fec4016429cdcc6cde4ee30e9e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsudkacmasekamse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b23beea3040cbd9358dbee679d885ea9ed4554c5bfebd1f256a9a805406ecef9", + "regex": "(?i)^https?\\:\\/\\/hot\\-leaked\\-video\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ce7b0a484ef915348c40a047e14d43febc02299b285880e9c3fa306fb13ada0f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvksdktalscpasclasekm\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "37f8c444036af75c0576232888ac96b5aa2e1f78659ad1a3640a5bef8f73f5c6", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b9fedac6e0f7f8a29db110be1faf963fb8c93b20915f4b7bf175b3fde2b426ea", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "449591bf6ea6f20576d005039cc5a1c1324028ae07f83805399e422e59229127", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "852466b5c5c5888d1e71e8e148c68ab3b565e4c80a5bb8cfc018938a7fcb61a6", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c88d508a4e998d97e24e512039fff023d6fca69c77ab71cce75bdd55ee7582af", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f6e222253bedd10e5bf5d3f80459c80f213c8f33a244e43433da9d49777fee8d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "88e7b05813c714a300ddcc44d884ed09c5157c303b5745311686c938d845a797", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a9ca28be9cb1f41bdfae8d52809ce6740759fab1ad8f5f5bf7ec3bbf3c6ab830", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "63dc9f813672f17d0ad1070b281b320078d96160d104a6e3ee08b32d4c83edb8", + "regex": "(?i)^https?\\:\\/\\/instagram5062\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ebb2da804fc891549e72864b43f1ab61fe472d0e83834261ee23a9ceb70f5cee", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c96926f45848770beae10d9150101b89a81f66dd110b46ca85e29238f5f82708", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a2fee2a5a1921e8804b3b95bb5bca65810c45daa4224d9d1a094212a0e52c9c9", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1b46a961a2ba55bd664c81bf79e72d687c073d1cf6b415d28b00d4b5802c9af7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdktyakscmascmase\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d0e079fd3038d71f1d6466127135ef510fbeaf34b3237b7120fa0495a408aa9a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdktyakscmascmase\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6fb15dbf62f9bc4187cf2efb3da35de9c8a6642380c22996780caba709354145", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f0915f207d45b38a8cac419edc4d44a4dfb50a7918d044fa4c9cda9963dcd872", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "23013296069675402b0367d3fcd38e84c41326843ba5bdb5b4bf5e6dce30e5f5", + "regex": "." + }, + { + "hash": "411a7e362b3a16dd5f9d56a5c1064f53f87a3cef32127ea28dd4035daeda8d8a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsadutkaslcaskcamse\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d73622e33f959aaff0b518a87397feada74b826e0cfcd8835a25a7bf5ea16c66", + "regex": "(?i)^https?\\:\\/\\/xcvbxcbx987bxcbv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b5bbc5ec3b1a4cb96a099db3ecb838566bb1a5d5805177ffec38a51ddd472a3d", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "fba80a3cc041c2f2c47bf3359c29b287c8425997943a2e3f834363f1f480e372", + "regex": "(?i)^https?\\:\\/\\/ljkoikoujkiju798897987\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d5690b4d67958be0c05118918842e6c921ac6a0690c1f88fb878f32df0125283", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2789c7c77a8390a2163b641a1165e84eafc9015df435c0acc33dcd1dd1d9d194", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c5a089f880ad67642c446e73c7fe0c304a1d4f3e6cf53e788a21bfb5a4b6c872", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "02658bc4a70fd5bc8d1e8a083bd4451576b6574dee019eec8d54fca51b96d479", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938c828b61\\-8ace49b7\\-c06c\\-4bfb\\-a44c\\-619b2f4a2ccb\\-000000[\\/\\\\]+pkFp1w7LMhQlFRZRcmV6irBnpME\\=402(?:\\?|$)" + }, + { + "hash": "fcbb6c0d2015bf2b97e153b63a1409d5d141778855420ba4688846727f9c527d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasckasmea\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "79dace7094f6a33fa8f38a74626e7d74066cdcfa962c910dad76aac8a87dc2d1", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "02fb913bb4808ac7f1e748dae097dac1543b135b1c48f249f1ced29d8d83117b", + "regex": "(?i)^https?\\:\\/\\/www\\.sfdxeh\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ffe22993036572407e182375b596dea8ca70adba5228aec68b49db05195a9abd", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b0a7bbe341b1609b0f53ce1c38a62ba8e9c86c06a59fc39bf141397d5c4dc950", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9dca696c5ff58b2342bbc22acbcab8a031f4e33f5877ca5ef5465759b6064fa8", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "abe37b9c12e15eaaa22a2c64904f0d74d7e4b7df0f02cc34ce838ac2110d7a77", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "df606d52e6ca6b76302c344ea67804569e230e779efa9689ec8ed29f30ab9253", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuackamscaksemas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "935237fdb02d83e16427bcbdfdebc921ed4af2b712314c3f740df47613d76a41", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "117fcab7906caa982b4f31890ed445aba1eb3b10bd9dccb6ed626cae851dd555", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdtuaksclackasem\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ae1fb2069879bb6574a4073e4616a29f08601d3803774a7b7cfec56e5c315a67", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "698b1aaeb89750c94b58cc20cf87e2675fd339234881cb5a0fe76f8ff3bd0612", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "36189098b31f9f5f0dbe49c0d255a82fc4511439dc897629594fe1753f51fddb", + "regex": "(?i)^https?\\:\\/\\/ocpasoealcksdmtaksclaskeamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e926929ee655ccc9b2c2306ca5964accf2e0ea189619d9a0f1eae89bf8432fe6", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.147\\-182\\-134\\-224\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8e22c2ca040829aec9b8f81cf214b542779f8357471f9a47fa6b7e4b71939057", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bf926d073f27dc1b7ea88dd2e44bf9418d90ba6fa566d8411ee0afbfce211dbf", + "regex": "(?i)^https?\\:\\/\\/xcnbc7n8bcvn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8232b42f7a9afea819e5f7c5fe52bdb7439a43d0e5c84cb8eb4201e81b67c97a", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8bcef2efa72327b85a6c9a47c29a59e3a297398aac45c21fe3aa794b2b7cda1a", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a9c7e191073558e5ed780dd47c908919a5b5e43113a1d5f46b2920a2dc789dfe", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d1f8c9bfe01c80286fffba348aef8a13f95ac7972e467263d5b76aa35f7aa772", + "regex": "(?i)^https?\\:\\/\\/xcvbxcbx987bxcbv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "aaaabb767c233b7d02d173a914452d9053e985ce3be0689aa4d92e5e431a4620", + "regex": "(?i)^https?\\:\\/\\/ljkoikoujkiju798897987\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a19107f426da65f651171d7a178b79141548c2a1eb97bb41c21aab9820a1682a", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "449ca90f493059d87f66be67c0148049d002f3f60e5022806caa67e40d8779a1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftyualkcakcmasemas\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "dc4860fac961b214780153e17ac49441ffeb062c5288fbf5a2285fda5ddf8dcb", + "regex": "(?i)^https?\\:\\/\\/feftfffhhe\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3c8f6207eb815967cc19a5135490e4eb5a4b45a288c0254e2cd74073fb4c3c5f", + "regex": "(?i)^https?\\:\\/\\/xvideohotx7\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7ba70a7bbc190f95a01f9f1eaa8efdc8589b3241efc0e8773ff620eb595e4d4c", + "regex": "(?i)^https?\\:\\/\\/mloikoikoi789887\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ce77265cdddf8331acebe8d61cac25990ffc9f6368e0519d572a394365ed1d45", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "97ff4263217951a02cd42f3f0ff54cf0ad28bfec2901535c1ff41e909f42c2a3", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7d47594579adf0bf3b18fd738cc1dfaab0b76a3bbcb14c2a448353784fb9d449", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakmdfuahckacasmease\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "845fcc9442a883ce3701b0980d9fbb9825191388e4f67f029889d03350d06e55", + "regex": "." + }, + { + "hash": "9a8de64ef8d001f1845165a3fcd8af0823151051d17f54e465acc7a55fe2138f", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "05d0721d7c9b3f900c99786a959f2d85d4464b06dc994c4e50bf3d37e62076f3", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1b898d226438ad45d6c76827f4a6ffd9041e3cf41f8e22c591492d371051ce68", + "regex": "(?i)^https?\\:\\/\\/vnmvb7nm98nvb7m89\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8612d2b99fa798878eeec1f41b4b3446507bab99518f478382854c7adc906bbb", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1c89c2da63efd679ba0e0f400809a30b02d6532f4a7b6b06d0b333966cbb362f", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cfa686b6afd51186a54e797e4b3c4936a9d06f20fc8da16d3f224128da9fb85c", + "regex": "(?i)^https?\\:\\/\\/mloikoikoi789887\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6bb218aca63abbb0ae86c8ee1a423915cffe8d90ec218e98443f32c6a2a8037c", + "regex": "(?i)^https?\\:\\/\\/bsxbfb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2d3ca770147878ae1f980645ea7744dbc2cd49d4d61263f7df8248ba3fcefacf", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5521de3446f16f8ddf56363cc0faabd57ab00ca852f6bb7d1be60cfd03348663", + "regex": "(?i)^https?\\:\\/\\/xvideohotx7\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d1206c9b0d7848e8360434bae2daaa6b5886eb8285a6d41977eddfe384be3832", + "regex": "(?i)^https?\\:\\/\\/vnbmbvnm897\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0eabcdc1a26ece1c895d39c539ee7e67ff95df94f3a51bae1cf980e8926625f3", + "regex": "." + }, + { + "hash": "dd0fc2d1e979ef0769658ce44d6937f196a06a98dc87f6bfed2ca9a91d761e68", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "bc0d6d606c34e7d2b556bce4a6397ae0bd8fff9ccafb23ad116986f8f70ef537", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c40975548c4c548318fa35e10706a91bc0b3e205f2d7cb9cea53f4b468428b8a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9a044a1f6b4556323a4852145fd822a34c03760a849e24beb3dc68ecabb44fc9", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f7a0e5034f162793464aecd7574e7ee603724a6148bd99a5bb333ad9ac2d39d3", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c62e4f087d8de7d8956cdb504babe0b720ac264f7aa1d5d1868972acbc1bc5e9", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdfkyalsckascmase\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4ceb1ed7261624f23db1cee38a273c94a4abc6b1caea37d1db675ed26dba510c", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "486fee677bb5b232dd812dc37c8046fbb148513ccec5a3e21fd203816795adcd", + "regex": "(?i)^https?\\:\\/\\/xvideohotx7\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "67e193b937793fc0eac4a32f5290f2ecff37749b2eddd12cf7af1328e78078cd", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4bebf3baea85a5669011999152dac757e9cececb10fd83f27dce6d06c556bacd", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7a44080b76668ad495bbdb2b6190959879903af9ce64e24db54f292a83208e83", + "regex": "(?i)^https?\\:\\/\\/vnmvb7nm98nvb7m89\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "650f250d35b9f6175e7e859bc02970c34899f1ac62c50fa3b1c78c20d5403c65", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a733e3f9c6abcd6f051e0facff329194a37c8e08c899ff640f8a647b894a1ba6", + "regex": "(?i)^https?\\:\\/\\/vcbmvn7c9m87nvbm\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "12ae4fa7baee1e959075d0ad88225c74ef694f97eb8736a156b6e76d6d09d8fa", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4a251383aa12089dd655a2a79f090fc59609317c473a721cbe0c3981a6615e91", + "regex": "(?i)^https?\\:\\/\\/streamcommunicate\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f1ca8c17bec68a5196b419fc7936d89ce6073d03312e7a778ce7bc0512c14201", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5d238f3288b5baf041bedcc51e4914eb2c3502bef2fc1edcae9bef644074af0f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5b073e9a4221261677bffdf8c979b21a1be6eff462280c9ff519e458be1e60ac", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakmdfuahckacasmease\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "acfb2b677529dc846bddcadcad4bc4592943e14eba6977e753c06af631b4d8b5", + "regex": "(?i)^https?\\:\\/\\/steamcommunicatesl\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "888004a16c44bf5c704591011cc9885c7b9b3a1fdb870d59e31ba62d2f8e61fa", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2f6190cdbb57dc6a448922d32da8d0c0882be02605b43ba0b4ad910f51c5f9ee", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e2ec301ea42a027ce2d497466bcad7a28a239442d24334d7aff4fedcc990a5b8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftyualkcakcmasemas\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "1bbc059877b54cf7d909fadb83cdd108411c0bafe0cc727013edd6eaedbc8e43", + "regex": "." + }, + { + "hash": "f10b0e41b376e1cffb218dd9ef240496948e119d591dee53ba045b0095b65658", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4d1273aa418853587afe128d83f492fdb90f41e5d4408da8be404c312bc65d60", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "bb6c1f238acb8fdb7698b81267845548cd97140a6a4baa81c580ff55368c8d17", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6fcf121cfda5e39894c1d5c7e0d4b3f3f8da4fbbd8ad411ed2841e5cc1ce8ed8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a773eb7d6dfadd590eb22cf52ca75b48e4b8f169edb9e263b66e8b5114b279bf", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b3f188d99ffb0ede6ef35adabf87cbcb91229f81c18225e98d252ff6a0f02889", + "regex": "." + }, + { + "hash": "14d92de2ba18683bcc8a2e75565441c8d167ec00591d7702bad20908d7dc6396", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdtuaksclackasem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bf85a3484949e828e74cd44a73d38203dc5d0dd6ed1b78e6a197fc711e77afe7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e901f5bfab6ea0a8b2a35f318cd1017d9d630395da11cfbaffb293a1bcd4f39c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaksmeamse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4d5daa2c4558b8dcfca82e356c628063164d4cbec3928b5a7d281a79dbc11c91", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "829eab291e21c261d8650095411b5c3596ce7805c483e0aef9bf17ce7bc91e44", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualsckascmasem\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ff64151507dc12a949126388da287a63898c9ecb9e4036c7e011090f3883f9bc", + "regex": "(?i)^https?\\:\\/\\/8975465\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7852dea190bfc8c1a4533e1430371fdb3ff45a5e4a6de2494769f11e4cef4e0f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuasldvalsckasm\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3199b7c4d3806e43fdbce1b9262b21531cc9c317e740cff75f6e2e9b0dc6d682", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c210bf1cee5fa82eb34f44a337519db584fc75e2cb2ec260ebf4294220659726", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ce8b2ed9ff72aefdcd7fcf08835efd1d86fbf15fba0b2e69f25b37be1db1fc69", + "regex": "(?i)^https?\\:\\/\\/bvnmv4n6546\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d6e5902568d604f0f67de7bf51bab4cebadac88b92018e5cac4dc233616fbfeb", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0feea14e6c80942ebe1a810347608edfe1e6fa6142110497e02b9269c52be97e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualsckascmasem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "191a41a0a352467e3770dd31d46891720b66078203fd46730cf8eb8957eb9734", + "regex": "(?i)^https?\\:\\/\\/ljkoikoujkiju798897987\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "59bdc420b3f94ce9a3bb66fd01901a1673ec05b861675c2a42e544205031e597", + "regex": "(?i)^https?\\:\\/\\/www\\.afvnht\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0ee4501b7c6ea2f67c3c39142af099955f64e9887dd338021dd1359b62061bb2", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6109137566c3682a16798385465ee9502e35a653dcba65912f8bdaae7a6404fe", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsduthckasmeamse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bcc0717ef0eae7ea05d73d09771767a0c3078ad760a6c3389c83e7467c8611d4", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "13a74337bcd5f127cae39a670c40d12ad7c684dd5e9245f738413d71c7d87c73", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cb7182b811a3a24fa140604c6a509a6d25460ed055e4155445060f9d30fd7524", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "641f1ea485595aeb979ae870a6207f25dad65480333f9a3372b2acb0b8fb689d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahckacmasme\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "81d4fb068401630ae0a3f4fdaab69924b64c9f89c282a5e88b3fdbb4c702780b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rastrear[\\/\\\\]+informacion[\\/\\\\]+login\\.php" + }, + { + "hash": "3cc5f97ab86a270b8b38f97e360ec0a2ab74b73b0ff20859643b72fc4aa817a4", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4e2091fbba56d4382799f51ca140941eac402c9ee6c7acf01d9638da7f1fbc2e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d8676cf1dfb1dd3247d3c35a223118ff1511c63ec291300273dfd37bef0f4b3d", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0aaa0a3f8cdf524f7a7da9cab25832be575da4950572fc775907d2035f1a111e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahckacmasme\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "72f0d9351b71d7a9d1a30bfb4a3b30a14bf14922ecad148f3c9dbf775c099ef1", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "466a82c072095f1016cc29c31f077e0074fc883d1e77880948b3b9de098e3f97", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "209e481e1db6fc63fc2910635ab2da48aa3bc0fca2141e12a7c5563c83ff6f42", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d3e6aa235a9673693aacec402806a2d16ea28e6600f74a2bd1517da185d0e276", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutakcmasckasem\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f3a0e479455fb334d647c23c6fbeb40ea7759a0fea9e64711c927beb3fa05d4d", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2c0b408b2807a1d14796090f4e21eea6ee4ee7f405c07012b9990dc23bad0717", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualsckascmasem\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0175762bf7a245e34e94b1f625d450b4efcc4c50b7c6e8860167196f79ab9a93", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "aee66e3aaf46b3cf39b72dfa666ef24710d36ecbff8587d5beb0606ea8b8190a", + "regex": "(?i)^https?\\:\\/\\/ndrgmq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "cd60efcf7b7fa78c08658da430d0fb0bb94d63e0063164fec1612705003e9c99", + "regex": "(?i)^https?\\:\\/\\/qpoiakloi4567\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e9cc2f1a672e46ab4e18b5cdc7500c929f462b134eaf5bd3d4db27210047b227", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "578554a1a6e6e8b99eae3a706faabcc1760197c3bf29f646156c27163ab122bc", + "regex": "(?i)^https?\\:\\/\\/www\\.nhtzjq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a5b0d3cb8c1452e3364caf3c459491dfc377c28ae48b47277ca2191d65d33e66", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ae00cf9287656700bf1a4fc88fcb1388d4f7d51568d1fcf17b0728e5ccc49eeb", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "96475f6e19830d1c17f4fe8054eff9f4a217f9036273391a5eee5e682aea0393", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ea0e8ae60a2849953a05089483017fa653b2f552c8edd0b61368a8de2dfb3a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+speed(?:\\?|$)" + }, + { + "hash": "12c6964d46fa05abd7a0f6585677901dd6e156ba752f02d0638fab6d0f6018e2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "813cfb89efaa766c4593337f3ca151c02c202475da53a2dfb492d4928206d2ab", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "fe6b72f718de420b664f8d15a313223d4ddb5ca10e97d51aa290c53f5feea7be", + "regex": "." + }, + { + "hash": "10db6a3543d9f377cd8b1a6cf878541339e90c0195db1e655960f8c49beffa8a", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "246618fb1b0d76e2a17ceb2613e3e738e890f4ff10beb78f9e06a88b4e345f66", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "cddf60cf347e4bb62e351ad6de74913af008a47d326b40615c0d105d7bb2cda2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdyuasckamcaksemas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ebfa89a5a24da884904e7cc94523ff6c5c38792aefa52497e013ffe548abc106", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1325012815195a2d01e8bc6cb6540d20e339439e60812d07f70e3be94a314e8f", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakmdfuahckacasmease\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "e95e4cb36e2fc1337e24e02d2f2c3723c952b2467447efa5a8e9573cad922875", + "regex": "(?i)^https?\\:\\/\\/feftfffhhe\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "2ab970585588f076b6d346e9caf89a4302e1340fb4cfbceec6fc1a04e6511333", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5c020f990fe34a13526f4af6a4fcf06b16a04197c9ac15af2557bb618495ef34", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6192a50f2e270b019a79dbe221fecf613a5b7d804073c0225efedf97e5a9164f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "612503cdb92fc15bd49b9990e135f66988f39061890d260fe73d9ac9d1d3accb", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "15dcd8c0e3584a2ff4ff20168f4a3851f3b2873c6f4eca2db88d1203e0e48cce", + "regex": "(?i)^https?\\:\\/\\/ndrgmq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2bc26058c1afe3fa30ac24edaaf00d1628048db79d639963e786344aefc58a4e", + "regex": "(?i)^https?\\:\\/\\/35715947658\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fa01d9a181de1cb53e539058f4cf1100f2c9b069ba84944f2c66c39cd3da4ecc", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d050c0f8419994f2a184e8c4c4ba42cf2d6965315edafb5ea2f992ec965e9c68", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "8f7a24f4cfca186aa720890c538f130258dab244238d2c387dd82ac363daccab", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2c08411259e5f17f1360ef35cd1b5a44235db9f09c7053eaef351e41622e3bd7", + "regex": "(?i)^https?\\:\\/\\/765765798\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c43ddbd4d31194082d805d161d18e9286870c9241f309d5e27eadd7733f24741", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "184c4dd2f98c2a5671e232b3c4de1a601bc8bb78993f68fc199c8c62c7d40785", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2401403187a3738c6f76fc822387c7ef89baecc06d3a1746ceca50fc8d833116", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d0efedaae004f78233ed048fe8df9e51c2eea899554a7f5e3d38bf7cd229f19c", + "regex": "(?i)^https?\\:\\/\\/xcvbxcbx987bxcbv\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8054eaa385461487c19a315e391d6e5f04fc7e06ce2bb0d18636f85e8c2bab21", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsadutkaslcaskcamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ecf19ee1104bc8cc86fa33b0e292fdb28f3486d21e6d2dd8d03e64a640c3d0b1", + "regex": "(?i)^https?\\:\\/\\/chaumont\\-chienne\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "208422edc4a92704bfe1f40392473c6b5002377712d70b7b866d947b9d1ee7a2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "263961ac5b3d2f1c33f2687c8d86b410a46bede2d66c6aee633ab792a505a6dd", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "26850a4d44c1799ba04fa1234a6687b06b2441c636e414aab1b78f8ed7b515d3", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "923a227f040e2e3c8f8d8cd0fd786e9959af028266f4b54d68d2966bf9336229", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakscmasckasme\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f7eba356e1aa5ce7b70cdbc270dff61b93c81d16124cd54572474a53fa6c3ec0", + "regex": "(?i)^https?\\:\\/\\/www\\.nhtzjq\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4d5db47edaef2cd9aa6c086fdee699a7de76565ca25679327e787ccf7583011d", + "regex": "(?i)^https?\\:\\/\\/25kjlhoihmjjoljko\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c96be592d7157f6740687f7e728a0ed61330568ffa451019db5b382e5b819a86", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsduthckasmeamse\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "efce386e5834a2877246f8ad611155f0468c6fc696c57908d6d3bd038e0c075a", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e89c42a6b7c032208138f1534726004c00edd503567aed8cb0b3117cfc90dd7b", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7bf6485f438aa6f2805389d909d5c21f525f30bf59b2c3d74cfc816ed9c94575", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5ee7516cde8aec7ab921969b5cfa1f23755e55e3f98e4e0b4731f50b2ecc1732", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8e649fba714029a58cc978c322233dbedcf17e81f2c4ee4e2f8efa01ae328b15", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0942478fa39a017601be420628187756d9dc985aeb70f49cc02718a5ebdc8f91", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fe9114c64cd95ff53c25297b3e4484947048dc0041388214ca10f079d1cdbc42", + "regex": "(?i)^https?\\:\\/\\/streambookpublishedltd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "451cabd67679f0ac41bfc2a6366d55af22700e59a82f5822986b2fdf5493181d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfykalckascmamse\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3579822c86c0057cd2d66bec4ebe4abd79e9f28dc2e43719a13639d683a714a7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfyuakcamsckasem\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6ae63792e920eaa7d726ed967260aba70006f35d5b1b816a658cfbb6716e2c6f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "25fee15dea2d16fa62641eda340fa957b9df6af1e2380b3de648281093608e2a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftaksclasckamse\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4d8084583c34a25239f1be967fd5cc6ee0e721b1395197e527b85ad979e7f0f5", + "regex": "(?i)^https?\\:\\/\\/1231146469849\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f2221930eb296631fd76e81dfd45e6cead8cf0db910f935f5d1fd56c4494fb02", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuaklscakscmasema\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "201d88972ffc7853fa93dc05d2bb3e76ab6fcba2eeeb72d80e7aae47b2b85c90", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakcalscaksemase\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5fdaf53e67b3cddbd12d1f8df6a69670f9e81747258f7b388351d4f70a12e9c6", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "54fc252f1f55a9a9067a314fb36444b7485cb093d7f7538858f168c2ed5d420d", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1001d6480b4f29fb52243f1dea91ef7d63cb15b18f5e365d49f5d534b0e2452c", + "regex": "." + }, + { + "hash": "e7a643b70c564a8b57cbc9b2b7a50f753ab7b71087285c3d22a6e8cb1ff012e1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "30edee8b4ae31c89faf211a544b092626eeef20d3fd73bc31f0f0e4a6f7b8e87", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d0a954731199265628e239211c1cf649711850d45194c912e2b2fc1124b7011a", + "regex": "(?i)^https?\\:\\/\\/46456465465\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "70c4cb394b13849ba6c7ccf23dcdc573326c642f67ae4819adc7d71ff57da154", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b4fdbf8259411139cc73b5a68820d28525597dd934f8345e7cf9d488bf2cf628", + "regex": "(?i)^https?\\:\\/\\/hotcliphotviral\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "85c949dc91571bb9f084053a3a920b55c8fb199cff769fb53637de05fed860dc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakscmasckasme\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ba0d4c98fc5f5c4e6586a4d2c9a5c4e78e8bd0a9aab6aa8ece93602a4e0dfcad", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e4b4a5053f173376aa6e13e79d06e28dd2af8357fc04b7cad6b69487dcfac8a5", + "regex": "(?i)^https?\\:\\/\\/ljkoikoujkiju798897987\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "55d752beda65251fedb836ef67ca2877e951b7591a83d56f9c7ca7b4fa65b0d3", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "20314253d3dbee79cad1dd4039da29b79fa8b018c10c24af28e897806e9f6ce2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ac1482708179b884fc46597e0147bfa27556d67e8aef42fb92eb3fd6b2ddbb46", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2569c86ff5af327652e65ead8052aa054d8280405ecbec2aa9b4b25bfd4e3983", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2569ac6467adf5e3d508986909861a6ec09dd596c85e89e4b908cd9d808e66f2", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfyuakcamsckasem\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1a981dad3b9961b8a66ef30c70127c0f5e3ff7b4c23e9dc81e0518f077deb73e", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "073952a341690862fd3c1a9f30ceffb8628e2cc92961d7854ec9adb3334d3068", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuasldvalsckasm\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dafb42c5376de1339f0bbdbafe13bfa1a69e07b16a36aac30646dae8f47c7801", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "419856ea572c86ac3cfdd629f349294eaaeefb5d64cdd9be96104412c47b9753", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "499553fa6e1e7cf1841948f4657013547930df2ef2fe843df38a730108432433", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "aa9ce4d171d43244d62c29ddba95f8fdf59d03a7e982b9d89d7d5c8613191afa", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsadutkaslcaskcamse\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "383220738ef809639bc8ccb1807657cc8da4a4a6a0d6d6e66694ca1a9189857f", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2cda4661a18b27204bc6e5211be103a55af7d8f64bf6593a269e1da4ebcb94c8", + "regex": "(?i)^https?\\:\\/\\/ocpasoealcksdmtaksclaskeamse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "27ce3d76c22672057a7a89aeb8a1cd5a19a88ec069642f88ef18bc2ce03183b7", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "30b826b3b39752e7441ad06941875db187796b752bfe1bef07d528e4911335f3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "02bbd23c0709052f09f938c8f3dc1c4ecbc49a5631c1cd579e7ee03faaf40f25", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdtuaksclackasem\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d29a04ed8f3b5373dfed568316b44175cfa5fda9756839ac1aca3408eaa4642b", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3df9190a93c3144dc009ee16768ca51086585fec975bbfd623c721acbd55423f", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7b4d95dd7c49b5703d7c1ba21d39f6bfad2666738a81b287a137676b966291ec", + "regex": "(?i)^https?\\:\\/\\/vnlhpjhjgo789789\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d8261ca48e717cc5da4c6ee95b9e3b31fd7a616ade44ae6614bcf42b24049ad2", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "dceb6b02156e33834bb58c5cb729a8f8fee93a0735705fa25d222e3bd7b050d2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftaksclasckamse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cba62b9dffc96ff148a3861c4b29d04bfa58d4283923694d147a3ac777b0a8ab", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuasldvalsckasm\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eeb772598357713a041c35f18a3e83bb2cd1525130488667c41cf0f660b21f25", + "regex": "(?i)^https?\\:\\/\\/promowhatsapprewards\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e56fa55a7494c25b2ff0c2dd8059d365bb9b1bdd11314c0c5223a5dbde31fd8d", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "22dbcd373204e655a453fc791249aa130610aaa8b2eff9ecb9fc9f19a37780f1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f675703ea91e9af408a92ba5c26678a16f7d6d0c410dbf2197999816225c30ae", + "regex": "(?i)^https?\\:\\/\\/promowhatsapprewards\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "43927087bf6a2c495995e76267cdad3faddfc94faf844f83b925a3bc7d2d45ec", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a404ad14a1ad6480c795a9d9e0f83b758f2c53021ebd96accbdba928dc8fd2b5", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "38b0c75b4a5800836ab212262b84aeb82582bd6c7c52dda263c903eb63b5fd83", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "b754929d122a81bf58132222b2088f2029fd49b6ab7457517a07e4c2d6350260", + "regex": "(?i)^https?\\:\\/\\/35715947658\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f3853f723fb1102de6656ab4e97b86bd77e81f89471106586ddfd8a40e79d", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f89dc56cf78bef8729e03d863725daf89668c83c62069bfd6bb7598ca16632fe", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ad157e26bb8afd9738f0f837bb207f1fac5f99c1b60521f369406863fcfdab05", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2301ae6da42cf0e014d28428208d376255329d668e1b742cee09a0d5a4678000", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "440cdff14197c01d9985423649f6e4ebff1a09b7b8714d2b91d58e6c0b58431d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c88823d\\-7369f57f\\-08a5\\-474d\\-97c8\\-eebf65bac462\\-000000[\\/\\\\]+pUbo4QmekpcXM\\-J5dlipk5HH1nk\\=403(?:\\?|$)" + }, + { + "hash": "1d2e0d6660e6104745c2137389afff554adb9a45ea170cccfb9e3ab261421208", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "932ba58f11d203a319db811ae5a5becbb0eca6469b9b31a50af4b25dd3f3b458", + "regex": "(?i)^https?\\:\\/\\/xvideohotx7\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ec519e7b2f3a8bb8fae502236253ec00ebf46a0ea7bb97654571adaebc68e5d7", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bcc0517eb5a1df3b70a6bab10f3d3f5f356627cd69d0f402d051df86ae3818b0", + "regex": "(?i)^https?\\:\\/\\/qpoiakloi4567\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "19e4e1373f393d47dd7bdda8845816db45f9f3fbe63feff595d104ea2768e61e", + "regex": "(?i)^https?\\:\\/\\/hnftxb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b97754ea1e82f0ca69b4c0b9b0b0dd0dfbc3f7af6dfc4790f1e666b648b86117", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "00e4e9a599ffd4a2d529657fe179432035fe7287beb15bb63c686c506d628e69", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfyuakcamsckasem\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "714b5fc50936b8dd8c9c168edfc3e0bf42fa8b9b808bad37c1bb781d28b958db", + "regex": "(?i)^https?\\:\\/\\/teleghrm\\.cc(?:\\:(?:80|443))?[\\/\\\\]+TW(?:\\?|$)" + }, + { + "hash": "a43cf3674fee9c0caaea33fbd7b481b6a077c43f49d1658838b13ff02faecb36", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3baa9597c3e3ecd58603240e0479cef62c9f610135f54f02c2d1d0e1a7a5564c", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7c632db8271f6589a7bf2d46bf6aff8a9e3f1a233324e24b9f59c61fa0258ab7", + "regex": "(?i)^https?\\:\\/\\/ersdf654s5xzxc6zzcxcasd\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "2c08b301c54f50b97c200c0b8c2458c9e3ddc0cf2693cf185f01718d47d1eaa4", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4e1ae71c2455c1d66af320caec4a7e9da797f670bc18f5e1b9216f03d4a72bca", + "regex": "." + }, + { + "hash": "19857998bf5082e62f5df70120b6836668f4fc3386e734b482c1c14a2c34ecd0", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "effb7cde8ad0ad5131637ae1511b88d79a3ffe07a48d4807b3a0b1e66b3b1161", + "regex": "(?i)^https?\\:\\/\\/pacoasleakvmsdfuyaksckascmasmd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "5759624c5a26eb1093c0908692806e2fc5916f80f11a13cc579f6877011b821b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakclasckasmeams\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b3d570d9045343b6b8898e6ace607e6a465570232c5d28bb35cf51fb0553bb4d", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5c5c5f488a795b3c0b5622d09b93910b24d0f2b846b2f0ed1125a392c121b6d7", + "regex": "(?i)^https?\\:\\/\\/vcbmvn7c9m87nvbm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "33bb56504dfcf67701340a79524ad6d7f5cf23540124a47369772f4eee5db337", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "bcbff96f647dfcba3aaff77a7bb0745263e582a9c3c6eaa4115122d62d9e924e", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "230656baf28a63f5a69a59ed6c8bf794997b49a344f2b9d3455984f086ba2aa4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftyualkcakcmasemas\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2dd1d6708f05a303c057a25bc26813f5f200fbb40907c856b9d8bbe6c44b4b8d", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b599dbc9a6d761eec2c79129e5bb778258e6ba1bcc5718eeeb056c38db111176", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f22781ee434077a2c9279d158d6bcfa85259ede9d4fe79cddbeeceb98e559ea2", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f13322ec2a00edae0f6fff8db6738c042b69e3ef7d039a2c3af0a20c5e717fb0", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkascmaskcamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "32766dc330a174022682d27e5f2d965843e1aed4e0248aa9d0df50e10b882a92", + "regex": "(?i)^https?\\:\\/\\/mloikoikoi789887\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3cc1072e309e00d0b9fbe5d035b1753e3a9e50dc6deddf92d18ed74d8e51c21a", + "regex": "(?i)^https?\\:\\/\\/uhstsyhsffeueienejedsuhsehugehjegeh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3a46a74c1e177d94f8de260776e8e30dea91e2a2d2cd9d993e46db93bdfcbe18", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftyualkcakcmasemas\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4197c57a5f711ae2ef4e6255d31e7c3310b5dd71e1b37c1c3fa5b546b9492be6", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9e959a639b2ea969f0a458879239241dec34e46428ce60b4cdaeb42365022244", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "de501095b6f344e48ce9edbf5687a9aefeae336ce53c198dde76ab52a9755f20", + "regex": "(?i)^https?\\:\\/\\/35715947658\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "16c549e860b834afbce433708633d1ff73f036c08b082d6a80829f33ad84d079", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dca9eab40aa877acc13c26cecc0b1766f3b5167756ef918b6c4b8a4317446ab4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bd287e5c3b8b97140e245cce2e3034bcfd67ec6427cfe4897965fca52473abca", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuackamscaksemas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "350e4ae1318a15f21a9c55edaa77b2c67726dd60e442083ab06d4701698eaed3", + "regex": "(?i)^https?\\:\\/\\/www\\.nesbzs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5309a389044a56996df233c951fa4f084b4060b15a7b45ac2222a9c2d5f998af", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdfkyalsckascmase\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "485b1bcbc97ceb4d306ef1ac4df9bb90d66ed948bbf54eddb382bc3e5111afc7", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b044ec4ebf91095516144334aab50762dae5eb54f5b6a2f327c34168eaea046d", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "171a5111537f239c36dad865bf19b7a1fb554420491d6784ad19d231487cce7b", + "regex": "." + }, + { + "hash": "84b6b6b250650fdb9a3f142c1cc531bdf165e615566bb6602703e31aafcccd04", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ee1ecba6c5354627c726b7947367ddd9b0a92f21bfb208dea079c1ce559df477", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasemas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "79f8dfdf8890f18ea86b8008d2dd80ae25139e0fee584e0e56c0b2130f5c1bc7", + "regex": "(?i)^https?\\:\\/\\/streambookpublishedltd\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "56fdb78ddfe3b2ea33b9047ce2d2cca12cddf8bf17fccfe411ae4c947bf5e413", + "regex": "." + }, + { + "hash": "2fd6dfaf60482d2424edd1c0aa2ffbba6c20a8da3befb78c0a2bbbe60dd5f507", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c10939b646dc4d2600e5adf3ed06ffe0b16edf7340e4ea97c31c8859d8db673b", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "714b5fc50936b8dd8c9c168edfc3e0bf42fa8b9b808bad37c1bb781d28b958db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+apps\\.html(?:\\?|$)" + }, + { + "hash": "3c2b7c59f4fc8b3511cd9b6fef3d2ff850292839ecd934d34d9e145bd2fe679b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "10e406ba23c370ed1e6dd1a59768a32bd536a7ac81df1e2491f7551dc3eae4de", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c01e051bde7f3f56846f20840a028014da98331264b5111b7bf27418a87bba4b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalcskascmams\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c742ce8e787120d9c1251aee1d0f5172318c41afa139246fe687f830c8aeb84b", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a72999a947198ae881b40998ebaa80a8c8cca147f0b11480c2d8b08d0e29f5fd", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6bfefd5b03dbf788fc88e8e3e8506edc7937af1b77007574e36527c68db7d885", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a8316cd58fede79053329b129e55f9ed4212a3a1c3b3a4b7c3056df28c2be694", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5286e4007012e5fa5a764a367fca1e045a62aa048cb4ab153618509634c08962", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5d22bae14674c9a8322a53df19128f8eb3e7607c5b960f0c9582e5281527e3b5", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "26c717e8489c4fbab69f07b2a225537f88d6880de1d0374ee0581b6d59517181", + "regex": "(?i)^https?\\:\\/\\/ersdf654s5xzxc6zzcxcasd\\.blogspot\\.fr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "67970b8d32e8ceeb6a6c54b2b2208970af83f07ebaa043f2601255acc3769933", + "regex": "(?i)^https?\\:\\/\\/vnbmbvnm897\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "636af4a2dc4f6a9ea45a9ad9ec65f1e94bb389b37d2cc6c916e2f2f8ea73f097", + "regex": "(?i)^https?\\:\\/\\/vnlhpjhjgo789789\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b90d031fde436ee0b9a0885b1cd3ac1c67d6efa19e9a52b11105348098c778c1", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fcbbd323c05bd7569c0afa756a35de7f00c4786649e3d1a0bd70b70b583893e3", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9c56a8406cc05b6f323725f3c5bcc4812c374b96a7c13d1516e8bbbc61aa1225", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasckasmea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "599456851b8d03418f0a14692a32cfc02442e76adaf31438bebd23030eb6b43c", + "regex": "." + }, + { + "hash": "2c219d2a0235dfb82b21d17fe2f138c08234d4ab3863702ce6e37d7f4b6f4655", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1df5da5b95e7aac43a37b45eba0e026bf027b23ecccc9fdd958df89c6e984268", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "17aed53a335f4d3bfd29f89a7bd55860d37d427be579a8511dcc61f91467b45a", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6821374391a7421467d16385cca3ad1e8620c95530d290eb5f7b14804d1663a1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3a0ec1281964b47323e2da4922243447096b37f09a3b0842c61adc90561a3c96", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "55d72b0bf362dfb78c7bdc587b42f9902f94b8866aa6a3ba83c137b02bddd0a0", + "regex": "(?i)^https?\\:\\/\\/ndrgmq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dfc6e67712f5a3a3273ccc10e672c26e68eda59ebb3852318211471934706266", + "regex": "." + }, + { + "hash": "e2a96422ac179d017e626a4c450d960486cef5c04c1286232ed847fe8d128430", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5994f18f7f92531809870d31214c1d1ed0ac18007b807f99eb8a5f259bad523a", + "regex": "(?i)^https?\\:\\/\\/xcvbxcbx987bxcbv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7c976155320c531e01412c59f524bf06311b5145090ba4121c628b1dc1e582cb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8f3b886164cc5edab53ccab2be0752c456f5a20d7dc009d0d8bd5bb248f04d55", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8d306f1b1c6aa8461f312570dd69c2f1ab1125bf2b6841ad410c4281d8a8fa50", + "regex": "(?i)^https?\\:\\/\\/www\\.nesbzs\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "45e98f475e7d0442a8436ccec0b96cdd82d20ffbff9c5c02e9b29be13a97aa51", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9365296ade414ac287ef600c6a9f52f820e016e8e571eb4494b830bdc4ce798a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsadutkaslcaskcamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fe91920d89a328f3558357256ba6d30840f253b7bec1ac6f60c36aba071762cd", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "31d438069c5519c886d707c2b734d27af3dcfd8efbbd18f0e41816eb53b3b467", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c22d519704de149979f5fd29ccd0ccc5474c4018b21b87d51b51275ecfae932c", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2e97629a300b07cf15d707095f2039539b47a4d2b4d8e8295e16241ff4865584", + "regex": "(?i)^https?\\:\\/\\/pcoasleavmsdtkalscaksemasme\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8b11424d3f37493b16ad635a2ee962464c677a5a06a4713fc7b72d49175c9da6", + "regex": "(?i)^https?\\:\\/\\/steamwordl\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1669a89997a06dfe7e925a62c9e20a9baf40510b41cdc48933c9eed41fa11500", + "regex": "(?i)^https?\\:\\/\\/vnmbvnm78bvnmvnbm\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9cb0c4d77329f32621e1b8e5fcd70f78dcd76b96c3ef9ea63e53b79c88f230c4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "4222a6efd1715d3613edbede73e24ea3ecc75c78cc4b3eee1b1a3aff447e7c66", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4a66d7cb904e120e8b7725255acf73c6724f91c5191d90429ad9a3fd7a4e4385", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "79cececbe9cbb7d64efbb4a37510dd5eec6acebe4b42439eaa6e4bf7958412f9", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "628669f3b5e3d34dbd391e58b6e159629485f287bce97267ab7e900906021c38", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ac425e827faeebe618249b12841bc00ba293bb8eacb08c90aad06916228cc26e", + "regex": "(?i)^https?\\:\\/\\/mololkloijh7789\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1bc98a2dd67d0d4aac362816d7c3dad3fecfb091aafabda6a3838a2677cc993e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d691434d94cccad3735d1a54212e60f9dbcd220f03c4606b10d9081a7547e86a", + "regex": "(?i)^https?\\:\\/\\/vnlhpjhjgo789789\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4760d6b2dfb5e488b9bc9ab1001f7c457a2823e657fbe233e083b6afac18e06c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsadutkaslcaskcamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c6419df7dd0948dc1b667af7b8dc5cc90710cb9868243925bf9b2aac4fa803cf", + "regex": "(?i)^https?\\:\\/\\/mail\\.147\\-182\\-134\\-224\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0f354e29b6531524aaa8d7d5f6eb7954876ad385d58c23eedb586206287a2afa", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cc5ab53fb70ae436f211d17062d9447618b9d545556972eef0b66522f352125d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "cf6a939ded41d2be47bfe8265be66d312b487a6418f5fa280b38fc85d17b06da", + "regex": "(?i)^https?\\:\\/\\/steamwordll\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0b304053b8c9421d6345907be39a51080f8261c226f499562dc099df0a5932e0", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1738001c8b827d9306b733fa962982bcaf957e83decffe4fa8b7b81832302771", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaksmeamse\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c9b1c4d95ee800cdd97c55a9ede2b2d2aebd7f9da86e2a39b0e5484f35c859dd", + "regex": "(?i)^https?\\:\\/\\/www\\.nesbzs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "574cb27476898b124990a0a141c155ff1d3f02c1d2f836c9a79ee2329984876c", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3c8fcf7ad0cfaa108fbb6eba5fbb5450c4611263c3e5f6d6cb943ddb6c86218d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5842bac1bc93159e4f6baaaa35cd774d88f5afa26183c9b6e3bf55f58724c6db", + "regex": "(?i)^https?\\:\\/\\/steamgbankings\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7481bbb737503fb6b9ed0ee31fe53f2ae4e061befb2ef3bb1a1094ff69285a65", + "regex": "(?i)^https?\\:\\/\\/vnmvb7nm98nvb7m89\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6ae62602f775be7c516dd794106b7528fe89c22695fea4eedcb05bd577bb4eea", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bb46bb6f16d8d0ef541a1218a8cfc380cb457bdd69a844c72887c192e702ac46", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "52a543c042fbd567e5491054d0d6d8f57dff9cc8179bea125ad0055a6013a0f9", + "regex": "(?i)^https?\\:\\/\\/pcoasleavmsdtkalscaksemasme\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "68bdf4e6e1b9ab865ce6f54f43ab121b3647165bb3e70453d9f808255e888d26", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e24185164b14547be91dcd1dce18a13578ce613c9dd7d7ab3fe6e297c0d0ac55", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "146edb61c5f6739303567792410159a08a062b57ba37f0d114adafd32eac6808", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e141547ca366cde0fd8e61d90aaa9ac98d88cd4e28c7dd81ca8c7dfb1e0b4bf7", + "regex": "." + }, + { + "hash": "de5f89643a737c428906f26a8f516771b3ea1c878675772ab6e788b274edce62", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "aea8566c415a5eebebaf53996b929e8a9ef6be5395c81ef5f44b8dcd8842a53f", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "c8265bfd3980d11b349b2c45faa03eae57fb24e320d1afca79474eef154d388e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "41784b71dba3c5c55e8cee35d3d8a37d11c752eaa52794565e4c5b83139eb7d0", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "13eb5cb5e8272ff6f1e7cb9fe75575dc041f58dd244d4786b0bae84f07893f03", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fa27b1eed74eb66cadf1984946d37cb99355de5b33035eb9f9d05f2f435633c7", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d10fa592751f3f7a126e70cfd19412f3117f4cf7d48c81ddb44981f69b90d4aa", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "133655d05c012aef6d957ba91e399bef0fb01fc0565ddb139ba037390958be59", + "regex": "(?i)^https?\\:\\/\\/mloikoikoi789887\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "39e1213a811f7306cb717281a5eb6b0b34a560fbed8d30e664d2aa7d6b8f9929", + "regex": "(?i)^https?\\:\\/\\/ndrgmq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "509a14b361fd6a95912d04e19a7afa2f067b9ab9b010ed7e5bd0a5569de5a899", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6c38419765eb722a8b28a03f1db58358839a5895cf60731f07fd8a729d249a0a", + "regex": "(?i)^https?\\:\\/\\/qe521436512436512\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "bc0cf2f9e1b55326530a7aea9f9199f21760acdfba02de28d6c2d6c0dd359c85", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "304cd18489cec802b6550b252054dafe99d292889fa286146a5262d5bc00e192", + "regex": "(?i)^https?\\:\\/\\/ersdf654s5xzxc6zzcxcasd\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "66c9c2dd2045d79ede72d733a64151d48a08b3ca3f478c601797ad943b090570", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "ca9b78cb77e339371bfcb739038fbe35572805c038fb571601c4e197936831f9", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4f391b909b3be1f70b5027091fab892f3ae5026752672c366b2e744f1e37cd78", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftaksclasckamse\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cf846eb0be1d1d8e1b1acfec8bcc5970819797ec4249690896de30fa418e22e2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ea8f8b93b4a98c613c0c0fa78c101ae0fa3604eb11faca373f9524ef4478e3b2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zil\\.hubek(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e6859bcf5feb1b4c3046bc4748557f9409fd8d1122b7f5a9c42361439d0cee3a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcmasckasmed\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "845943f6573de5f25adad482a1ae7ae84e1e0190c848af1d32848bdbe12c035c", + "regex": "(?i)^https?\\:\\/\\/xcnbc7n8bcvn\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "77db481ae9f9c11b85f0df9acc956eeab6fbbad33f9103fa02a1b033bccef710", + "regex": "(?i)^https?\\:\\/\\/vnbmbvnm897\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "09f77ce6c75692f9dc156fc4791b66dc1b16ae1dff41bb244b7bf3a5d01a8bcd", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "beab9a28d0e03f6ac4d941ba73a40ac475e41496866ee6f512a02ca62668eb07", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "024f8a23bec780b82692c3e56fddc32047a8ba74243e33faf15a89b356cb7719", + "regex": "(?i)^https?\\:\\/\\/steamwordl\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f479338f6183a33fcd490f1b525ec4ac5d7e6027652fa9d98ae1caa6acee599a", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakmdfuahckacasmease\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a1e629a746037ede3de73e2357a60ccc879b70838715a7ec492cc45aaa32dcc6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bd681f5dc94109e0199353366cb6c67511f0d4d53d527017ab92756fa46bb807", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b16f3f0a3f370175c15a1b1bc4966b6dfbf8c62dbaea598a6117ce2146fb5107", + "regex": "(?i)^https?\\:\\/\\/feftfffhhe\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "de50bb9182f22929dc6403af64329cd92ad76188a006e5c690fd609101db9a82", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d0f3b4799cbb215668312c20265c0ef0bb0a905fb52baf9faa77cd0b38c57c42", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "003d410b482307ebbdd57ab80988151672797394d6b7d40c5a656273c70f810b", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1d9efb31ee60b77442217a5970527ca5323c5d56ab0aca94078c28d9389ce0b7", + "regex": "(?i)^https?\\:\\/\\/hot\\-leaked\\-video\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6b4b7ede416d91e6e00a3f0e9bb12c79cc76a1d25d3da42ebc880bcda2d15e7e", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "de79857f254c9419a56a0febec7bfeb9a20e6b4120edcc66af45c6fb4fe2fa9a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsduthckasmeamse\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3307cc2802a07518ad232c1b640ceadc8ee63fb5c7e0525dfc98eeb6e124d2b1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsudkacmasekamse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "78e011bb7e70bd025334149f1782234f53e6c910b03c1f2e3d24e47f5258e3c3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakmdfyuakcsaklsckasemas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "69503d902f9c69c74f3da83259dc03d7e62f77d7f75dd285208ddf17c8bc8ed5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "10f196d6198de8f3b871347cb02dad05c5b19191a5274ce421ebc44cc57bbb76", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f8fc565b7f980702feebf4cd9727ad93a8c7e6c39e28b44464332100522c4feb", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e2cde7f28deea5d945dc2f0e6856c611bd12fe03eaec383165d343ed95bfbb48", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahckacmasme\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dd18eb73fac31cfc20ca5dfcbeb4b3ace000c5b832516e8c661dc83e4a2ef42f", + "regex": "(?i)^https?\\:\\/\\/8975465\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4c12a6d626e988c744e3fb329c61dfb804cfe373263da1572faf099d8f7827ea", + "regex": "(?i)^https?\\:\\/\\/bsxbfb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "66161572a28593121ad2c10f1614e48b93e98fe08b5959ee452bcfa408b16260", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1360c216bf0922e967cde00de2d2306ceaa6a7b2bb2843177efb816eaef7f531", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0f91a91d7d971834cbc481dba641d7e0f4c4717fe14d783e85a6b78df1956d5c", + "regex": "(?i)^https?\\:\\/\\/46456465465\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4a4e3189451fa22fcc92e30ad108ea145e4a4fcf0f8756c5de233a009ff11bd9", + "regex": "(?i)^https?\\:\\/\\/pcaosleakcsmdtuahcaksemasme\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "465c6955aeb73128bf0f10ad1117d3c797fa2266a9ca5f4d49427d5e14891909", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6ef9b3c39bfde5ce72860b34ccbefe5dbab07189c859b5d59fe8beb5ec4cd68b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "07ab030ca629913419716bb151cd74e7ec8368a6fd614d1449e2fd48a407b32a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1b890ff28ba0617c36e22a8a02bfbeb1ddc0165425eafb8ea88243e7fc67abb6", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6c00f757af61c25b96da42ea434c328f5dce4a7d2b7db388ec1cda7169b0d0a8", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c884fec8bd82e4ebf811dfdbc89aa115ae03d5098169ed9591cf3c911308acee", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f9a3d5a11af0ee77914688c23e48739db614948b83a0d8550a2d5c7ef871ab68", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1f55183a483067b418a5b44d64a2fa0c46cb65750cbe63726b4d32eb31faf21e", + "regex": "." + }, + { + "hash": "3dc57a8884aee3f17ca7612df97857fe7232eda62d8cefd6e7c47dde4b3f3c0b", + "regex": "(?i)^https?\\:\\/\\/hottodayvideox\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9f6f2cb3f23747fd2c5f025750102d1ef90dbec7277e9618a4e414be6c1c2ddd", + "regex": "(?i)^https?\\:\\/\\/feftfffhhe\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "35e3dc987e8fd268d3deb03e1f26adb6512e40acd7cb88354ca7d19648be8bf7", + "regex": "(?i)^https?\\:\\/\\/promowhatsapprewards\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d5087b21c30b3e2c10b715c2b60b1dffb0d8ebc50e6751d7d2100a75575e4e6f", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "8646e359aae826922f200aae7636f182ff8a5f54701d222d61a5d76aa01885b4", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "81a999cfb5aace07ebede79947325e709fd343b6fed6448aba6ec2f2b4f320db", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e97f8f2eff65cdd28fa9c8fc1e72344aff4c482eeef916cc6297336b4aba0", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4f000a6dcd30eed3f75ff304b69a795f13da16cc3e5ffabd8029f6a3cf57943d", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dffe34953b77265f03e43545d0fb5c5bbd4ab71841a17823629e3f4f171f5f32", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuaklscakscmasema\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "96cb58a81269074f805eec56e504b68cde7cc254a8cbdff3c691d1f53f5af670", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e78dec0db1ac8dc40146b3439bbf57aa3e0320ce42be4a995f1b05f3892f0de9", + "regex": "(?i)^https?\\:\\/\\/8975465\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "20b677a5d51e8a07ee4bdd2c1969dc41ba8bb6441e044e5cf212435b48992f00", + "regex": "(?i)^https?\\:\\/\\/46456465465\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4203358367cd6f9eb7f1b87a3d95618ade02257fd24194338010e55fad997952", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8d2f854e089c83cfb5112add127c5a7fb9fec3b3c565db83c6c54dff35ec9cc6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "787b28364e8674d171289e1cc073d7e85f99bf32197c94df1ec7a88f065f1593", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasckasmea\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "556c823d87e3d2b633e0d610e06b971832664ea25448576eb1de438db48d861c", + "regex": "(?i)^https?\\:\\/\\/pacoasleakvmsdfuyaksckascmasmd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9c6accab1b1fede74a3b01eacecc4f41d0f5a5007a8e7dfa671c2191c56e538c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "521b69d0a4f513f896100a7e2298b5d97b535615e80e3c41b3334c8e199186e7", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3b2c5d86b6e9ce4226f2e867a18ad7c99a33047b0c75bc464c7c6e70c67c0af0", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9d384f1f742bf3668b28b6e9d8ffc9b37576afa978483bf4ca3a241898d62afa", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaksmeamse\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f1f1209d9cde53f08a2e3ec2b06b13611169559496ebabb6d2a26e7eda540087", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1a2fd1e45a879b7ec9e56a1653e1165831b57079aad295fae7c0137228c4a0f9", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "aff19281718cd488ec24803aeb5f5704cb704a885a4234d6d81bba5f2f021c65", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e978752c97b8007fca086f6a30a0fc5442f2597cf824d0f6a49a6f1329c80fa1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsduthckasmeamse\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "7129199a9c6b266946ec8abb975a7066641e36033860d191f62b50640ca77da2", + "regex": "(?i)^https?\\:\\/\\/25kjlhoihmjjoljko\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "496d62152b9e779a92f0fbf46669f5489e4c96c58403f7c93fd0e1886b49f113", + "regex": "(?i)^https?\\:\\/\\/pcaosleakcsmdtuahcaksemasme\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1bc96567a41c66c16f42a2beb0f66b5043fa52e33b11dbed9f1479eda01b06f7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f70dcce2ce7bf3dcf2cee3dcce0509a519d14469f7bc94368de0e8d1dd566900", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e899c1d0ae7f12ef6e36bb5a02d4d5adffe8ca47f7f9894739b9a4e134167caa", + "regex": "(?i)^https?\\:\\/\\/vnmvb7nm98nvb7m89\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "60269797c1f42b3018224afef6ddad14191db9a5925b4efb37e7e3fbaead923e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "08b78490d45d32c8859352bb7d22b5595a0092bf49278b38306f179abaabc9ff", + "regex": "(?i)^https?\\:\\/\\/765765798\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "529296af565331e091537af2258cd5e6de48d8c88cae3fc374b46aba77357299", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahckacmasme\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "38d51d87e8611f4da46765b45ff6138feb4678009e51b05e3ee4584b0c976228", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "06fbd9e77b33209467d4ac3fc99c6e4860b7d2c894f922eea45aa95941200429", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c3bda557d5c5d9db0f9d0681b79e5ef81cc1f65581d2f3b9c80cf764a7fd6e2f", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8286cc035be69de128ed6c2688db7d31aaf93634ec380bc545380bfb294cd8ef", + "regex": "(?i)^https?\\:\\/\\/25kjlhoihmjjoljko\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9d1e2cd45b4fa3d740f91e2be32117f5dfdaf872df887f0c5b29db386465d3c4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4ffb0f0c30ffe441b788bfc2e91b6d086aac241e2e13bba13ca697f38bb87dfc", + "regex": "(?i)^https?\\:\\/\\/steamwordl\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f13423a7b1c91046ac7946b38bccb2f2b598541defd4b989a0a35ea5a72b36c7", + "regex": "(?i)^https?\\:\\/\\/cmfggvpg\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6944999516fd52641e59b546165cd8cf187cb143b978fac1d62e84831aa82874", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "64069c357466764a6628bac53816b346174785efd0dd418b0d6d600a1957c6d3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0be6bc888f77e5c2fda7cb8d58f79b39489e9eefc56fb72bebd2eacf58d99ebd", + "regex": "(?i)^https?\\:\\/\\/instagram5062\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "faaec8f7b38202b42c61aa3b6da667b20dd32ab6dbf4f6ca96607177b53874fe", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "971f7fa7a92da492b4defb5859826b0531529f70ac99d0df2933e56896f057b2", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdfkyalsckascmase\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3adf1b4f8c1cb2ad9cbc893139717e2a8aecaf997ae1245b7d70f110d44b49c9", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d6ebb8e5e873a250baa2b01479341d9eb5ab74931952441f809539428975eb41", + "regex": "(?i)^https?\\:\\/\\/vnmbvnm78bvnmvnbm\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e96a5e018d8446141b8d8f204e4a7cc8f91c769821c01ea9f9df9c3c2247ef6b", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2f2e1f34fe604e198dc5c050dea8e61e462476b4c5f4e08f53f3b5561a9d9186", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "65d96669358f224d3be46b9fdd52a3e26a925ada069a3b90d582adb5de3553ac", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6c5d7b4b9c95f93a402766e0bb277825b8d505dbd2ee256b8af8b000871836f9", + "regex": "(?i)^https?\\:\\/\\/steamwordll\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "780763837fe72b03a4df0433dcc67ace3ea5a2c27b7c60d8dd5536eb0dac6575", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "84765104fcc0fbba08b7ef4d2f1436b87ffd184766e98f4747c284be8dee8e1d", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7784a1063a049cde759c2bf213c03f7cede529c62ca9cfa1877e6faa0b803585", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6d8ec288bb975bb9f2c284473828ab1990e3b34c206237a4bfa99209381a540a", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a994aeef7fc4528f5cc59d0fbc6ddce438ac43448b4923a8e4fe8b474e532b9d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutahckasemasema\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f62f7933dc4edc0db2365cfd64cc36df140c9ff38e83a07cf1cd3344cffa31f4", + "regex": "(?i)^https?\\:\\/\\/steamwordl\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "81d4fb068401630ae0a3f4fdaab69924b64c9f89c282a5e88b3fdbb4c702780b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+agil\\.html(?:\\?|$)" + }, + { + "hash": "6f6d25a206a980ff1fc2a5e72f2387f0b3e0a4a2138abeb855b3d0266a2202d3", + "regex": "(?i)^https?\\:\\/\\/pcoasleavmsdtkalscaksemasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7f505173e08e94ad47ffc825f9979ef87327905f31b43fa4ba86e52731bc45ca", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8cd40017bdb46587d8238843ed424205e239805a45027d25bc664961bdfd4857", + "regex": "(?i)^https?\\:\\/\\/hotcliphotviral\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "128675b620036c9585d816c5b3eba43d89d6de0f003f9a5629b45d63ebd61a9a", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b2fb3adc910a16b984df5074b3e0e30c0c966900626c7f4a1771a6675863655d", + "regex": "(?i)^https?\\:\\/\\/colonhue897897897\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "dc93f00b9bb87778d871f6f4cae85bdf2d302535a0f4e8336874e62339f7ffa9", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "69b92762886b9cd66e995166ae2faa253bab3153e0111f069cfe541ec045b7f8", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdfkyalsckascmase\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "eba942e18aa676dfddaee37f684f40097d77e91b9f34d055f8f56c160ad027e0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "35857d4731ac5766a9529de58be13acbbbe36d6fef43437c69bfde4edc77b7f5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e7be75a7d1de70bbaac193360b299417fcd411013e6f7dccc577aac87ebf5269", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c74291a6b2e9e08c6f410091aa66771bd8ccb828d34d423266313649ea47bbec", + "regex": "(?i)^https?\\:\\/\\/www\\.afvnht\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "85526a724d47cf4fc2f27bd84ab90d2925958bd7c7ce0c0056d2962b685fddc4", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f4a2a26b55e3347c87babebb036ce53b934b4a81421678756c2cb3ca1896d5c9", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d7761131657a3928484875801235d01b0e5b73b1c288a6a5673218b2a53de986", + "regex": "(?i)^https?\\:\\/\\/pcaoselakmdfyuakcsaklsckasemas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8d43b64bf666a74a9b99f70c31146b29e7ffe516fc33537df492d0d5f56ff72f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "68ca522cb4e0be97456de67549aa7da3d35345961ca5119fbb79cdc47725a296", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d76da16ac284e73c69848ffd0a6f05a294f71c309be1ec510de1d800ff569a5d", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a3c863106a1fdd5b476a1457c289c3ffaff3627428918bd7d235810331f3015b", + "regex": "(?i)^https?\\:\\/\\/hot\\-leaked\\-video\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "921e45632f8f9c198eaf1918a784b2ca27fc2976507cc81e88d88f5347e53fd2", + "regex": "(?i)^https?\\:\\/\\/qpoiakloi4567\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "90af82a9f9a2fb1e8ca7ac9e3e75c9a5b0bba1efd0da825c6841cf0fca11f1ea", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsadutkaslcaskcamse\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2ffb238c167297322f9ef1a87e76d99ee9c34680c9667e71f54c6873105ed999", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8c3b1f8fea77da9ed388ce354f5738b5d86ae4c1171cb12886fe882834ed6941", + "regex": "(?i)^https?\\:\\/\\/www\\.sfdxeh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "03696bbf7e07502f5d0fb3d58a4c20d8f9b7584e6e424e4714fb0f60b6b6324e", + "regex": "(?i)^https?\\:\\/\\/steamproductionsl\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a1ea169996b594e0780d349db558a97124c9cbf27d920e559b4f615d4923ac4c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasemas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9a056d34ba9585fc6833253f04cc41faa386e7dabf1b4727994a322704120de5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakmdfyuakcsaklsckasemas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "71b7115464b6a190508f8526dc7b6e3736a8e470583d72b4d248eeda0c370497", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ca5913f0590e63f81de8f07e89b0610a53b00ab3bbf15148d1482172574f7f51", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1d2398a17035cc2eee023acd1170dce5a1884f0e0f31d84cf0af3099272073e3", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6ff31663151f2d7ce583032d45770839dc8e18b9a55c1e8c402bb71aa2fb4654", + "regex": "(?i)^https?\\:\\/\\/vnlhpjhjgo789789\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bd192aa3dee76f175dc8a91f350edeed9b8b34f4f875622242d33fd6f7e62e3c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b3b03bfc44feaae539c2c8b3bc531a43099dc88b2454199f65ac5b2dd568a246", + "regex": "." + }, + { + "hash": "d57591cf3e9d313f91e613fe50e0b6b42d87daea601918f4f5b0f016132e614e", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "35e4ca8a8f6b35a437e5a446762d31a5058e9279439eb0a296716c2e2174e157", + "regex": "(?i)^https?\\:\\/\\/steamgbankings\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "40af99fe98a3e1029ccc5ee8522813a237661d5b89d231693e559e91594ee681", + "regex": "(?i)^https?\\:\\/\\/765765798\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "02a841addfe7245aee030233628942eae6e774b1dc1bcdd52345f3fcb3baf5aa", + "regex": "(?i)^https?\\:\\/\\/promowhatsapprewards\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "230c9ea4018df26e5c192b9601112140f3e8ae4039c6aabdf748856329bbc1a5", + "regex": "(?i)^https?\\:\\/\\/promowhatsapprewards\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "d36e1335e25c4a78056735007ffba0683d48380841a09b004b480583ddca0650", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "846554a5a0908a583c8c4c43ad5c97427dbd75ea5522c10fa97a87d966bf73ce", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1e29493185a35736f4a38b8f9a94dc1de2bde2f7dfa68405df47016ff71a99ad", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d9083891e87c71b38d224e4f7e554980d78ae2bf7d38d09e221cd7e7ca93b1fe", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualsckascmasem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "508e5ad7912a7fc9fc71f2ccc1b376f681c858fcb2ca1b45ad5f3c61c007d796", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutakcmasekasm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "005803c0bc82b0777183611aeeac48459f1a78de4a23c8a546392ed3c8f7c334", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "21ced15e4b3a6fe924e8aa407553293c861acd2a49edac7526376d93bc0c0dfd", + "regex": "(?i)^https?\\:\\/\\/mloikoikoi789887\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8bb38b0deab186064515281b8c68ad400c4ff353d324f45e160ae07c5939ed58", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bea15c5c505aff0ead3c5d7c34706c4808dac657a1dac37241713f444ab11cdf", + "regex": "(?i)^https?\\:\\/\\/colonhue897897897\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "fdd5ce488622097b03f3a2703d6e07ad0ce4cf3f3b7299821d78ef37a3bfd800", + "regex": "(?i)^https?\\:\\/\\/765765798\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e73ac93f8243e5eefe0aa8c54023c3949133dca52617875ee5b6979f3e15172e", + "regex": "(?i)^https?\\:\\/\\/ersdf654s5xzxc6zzcxcasd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7988ced180c25015c5e2b8d30b013fb8a8a194fbe37da193eb0a3c0bec57e498", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e56cd2f5d52c9e1c757d2deb4ee57a14d064048a85ce931756a050b0dc6bc1e1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalcskascmams\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7f2ebfce7ae32d71070d51cf8637115678cc0f2d8f084e79b6ad7a131e2e206c", + "regex": "(?i)^https?\\:\\/\\/www\\.sfdxeh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "817ff1e638be3e6c7feac5954d78a0af0603b0d334a4055e7faccb58911a6baa", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-104922\\-106958\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fbb1af4f6bebc2ecc7f9c974773fd5d5ca7f9e9cf4fe86a8f0fa4fb7fe91cf26", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e685f2d02f74d89f7264347c48f7a62359b1f60e0bb9e1de31b24f00d5fd53b7", + "regex": "." + }, + { + "hash": "d933e2b823092e3028bac976f6dc3efb801bc0b8cc4b4b1538b4885060c533ad", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdtuaksclackasem\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "368fb28c298ecc14adb54d67a48b77d42f0c6ef78e98b40d387124480cfa2c33", + "regex": "(?i)^https?\\:\\/\\/hottodayvideox\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b28fa89ab798c4f5b45fd419684b51515ca07f5ca1ed73e2d3f0a8d1226718b0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutakcmasekasm\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3381c507ef2e0e1a813d40e219325118121857ba435cf94998a3c0070e974dad", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuaklscakscmasema\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "434a13b08c66a38bc75e2ed0f6c3023d73d772866469eed8873452062cdde065", + "regex": "." + }, + { + "hash": "3cf14115e8d2bfd2f6b96c334c3239d57a662f400176859f6355092d10ae7cac", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "beff6edf97486ce331d181eb959c1ab3542bbe888eb64c6c50bcb3175b4dada5", + "regex": "(?i)^https?\\:\\/\\/25kjlhoihmjjoljko\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "30234bb3e61e2a6fd95ed931831c50efae754a8ff70cd5cece3455d19698693b", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "df94a026f0ea539abb8636c2313dffa5baaa059a9bf38af155417c8794456168", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "40af21801893f75ca26fbc5015d70693a0872e55f0373fd1b0c6e40ec303f07d", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "26c79c5fb2fb3aaddf4174970eb5a2dd92fe22ba57960161a7d8eb4e757cda6a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "82c04a5fc8c2595f620f8d79ed9fb26d346bf1d27d4c02caadccf845238c8dfe", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e749cca76c1ad25ad011b2e508eea7b049983d640df657f0fd4139cd7d4a563d", + "regex": "(?i)^https?\\:\\/\\/hnftxb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6f18f6f9a7c716c8c240f8e8a5a1f774f90e25cf3274967da6fd16d4cf486377", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "61c3503ca9e9d1cc4ff0e5b429f0b2702a9a7b00caaa1f888c309a2a4977f546", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutakcmasckasem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3d643fe8f6f557908c8bac0db08a9bfe97521451daf38359f9980dd0cc3250ff", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftyualkcakcmasemas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6b42124c07f8101537db0db65ed878c773362ee2f0519207dae76f7daf32d393", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "080f6e195362d6a06ea319c480fca608e5c4acd255a4b871347e0e2ec96036f2", + "regex": "(?i)^https?\\:\\/\\/ocpasoealcksdmtaksclaskeamse\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "29fa551c83b2a13011c6147b0e16d0e6f24347cfa66d01b4eaaf48c6e28b491a", + "regex": "(?i)^https?\\:\\/\\/1231146469849\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8effce2ea1e9ec49e40d57cb79a629a11534f2327a319e613d1e10874997b225", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4ffbb2413a2468155bc6e128b052db615939a9c2b5df999a267f52d89f644344", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "70de05040376f13d0374c8241ebf9b648e321931962e756927d4c9f85081cab7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ad8cc2dc7ef0c3ed0f80979e1e8d9de1f4c3053f9c2aa23553c2f57281576385", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "65f3135fcf1131f18a1932e6da4008455bf2275fc5107453f4feaaccae986f80", + "regex": "(?i)^https?\\:\\/\\/pacoasleakvmsdfuyaksckascmasmd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a1a1e48715f27ce1bd0e09c776435bfd1b81f0368f31bfd6cd244681d13a0573", + "regex": "(?i)^https?\\:\\/\\/hot\\-leaked\\-video\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b9d479d717046e3f5aa6aa2ad713b7a6b20ddf40ff459522dd9a398d358ea2b3", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakmdfuahckacasmease\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4193be0f4402511a77bfea3cb463e5e4a8d5f9db210762428c2e186e99944b52", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b6a4120a6c121f0b46b8576277affbb209aee7eacf7a092cbbf8da7ad851b187", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "399839bf0947d3bb3c790d97ee88e69517e555a35f4e6ca76503eb44f1ac2be1", + "regex": "(?i)^https?\\:\\/\\/steamwordll\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8d75ce21f4fe1e7e55c012b8f95db694977f9a5700b09c990b57f5cd1f9b8147", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasemas\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f94cf397c99c4d24c1a1344a127511701de4ed11d3eff049a8c4630ca94291d7", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "49f6cb7ba1b12c1e71bc32f0fbd3672c02bc12c71edca082a7d22de8a8e0fc35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9973[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b9d17c1b1d435699b2801e13b7375e1ea5f001892625bed59e5053ddeb041497", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bee17eee00d0ecdf0ad54ad3ff4a5f8d5fa7ef01b1c4d478e82af127cbac50b1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b11b52e7de77243d74dda539791dca1d402fe301def95313384fd394d1ce2164", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakcalscaksemase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "641bedaf85f2d14132701f827142ab868d0d729d46a22256442f45b3d29c627d", + "regex": "(?i)^https?\\:\\/\\/mololkloijh7789\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9371f50727341bbecddf5d1ccdecb0763add83741c211a07de0135840f489835", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyuakcaskmcaksemames\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fda9a084212a15f4889df41523e0972d2b6b6ee2f88522bac5409716cada431a", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4ba43c8746013a2cb178c520f04b863833094532b7e36eb25c804c923782f9fd", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuackamscaksemas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b73ec26de3b9a266041caa7cfb393b60a8ed85150431bd436582c5fe856c10e9", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "918256d79ce564aa68d7d5381c1c26142b0be74b54471b63fdf4951c4f714741", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdyuasckamcaksemas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d75a1cec60d3ff326713687f6ce2e105423a30b943e913678325b9d8e556dbf5", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f089030aecc3f9bea976cc90bd86c7f3522f4eef1aba1b7a47eb1e64701c96e2", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3e6f27f57ba48eaf5b7785916ad28d481632aa7905d8fce7d363ff75ba20b549", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b9f64b49243ace64df047013aa1e728e9fb36e1403d682e7198de32d4f4d0c4f", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b5ed5306964eeb1c3452ea4ae9a5e705082276941981c079f9e3e5f9571366fb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e15833a2f5abd8e771ec24ab730270a0bc0e8d383d023ebffdd306f3cb9f5639", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "78b0637cc4fa895000fefc3b9546cf8715ccec41e4e482d927f90dfa8ab122e5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuasldvalsckasm\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "eebf288c479e033823e92b923be244a47ccec33e08d9bc62cbfbd43b450060d9", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1a4ca69c6ac61554288448815c6015a761e0e25183cf3a841737456bdbd1155c", + "regex": "(?i)^https?\\:\\/\\/instagram5062\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7830e57c7ff4e0e9b2a68893be132e9302e97d8032b61dacf10331aa31dcf31d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahckacmasme\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2ac27ba8d5bd035598cfae80e4046890631db210406bc15650e509aa2cbcadd6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "49a048902fb4fb22e0471a156d7cb6615f4f9c19c74545c432a903c8c730a0c9", + "regex": "(?i)^https?\\:\\/\\/ndrgmq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e1556f8111177bdc461586e94799af596c369fb4221f577be333e65bd4e0e60f", + "regex": "(?i)^https?\\:\\/\\/uhstsyhsffeueienejedsuhsehugehjegeh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e7b4ccf705761a0e19bd5ce38c15e3d156d34894a4c2043cb87ac010c810ed98", + "regex": "(?i)^https?\\:\\/\\/pcaosleakcsmdtuahcaksemasme\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "106a6a3b05aedc16d80680cfca09081beaed0d8352581e5bd3bcc9248faffcb2", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7a1393b0826a60d359f8f05a0f487062ad0152cc596b13896541f0b9f8d30c13", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ea832f4f2d98bfeb8a7689fee6ea17b34e9af0366d315b0b5dc1123e66ac278d", + "regex": "(?i)^https?\\:\\/\\/www\\.nesbzs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "61c32e4a5249d947290b6bb6dc566bc45441560bd52547526d89177edd0e476c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "772310e6d939bde657d8ede91fa33421a9e02ac61c9b1fc73e91aa9ff1021654", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "184451976dcbe6c555a633fcc779a01ee51a7621d0bfe49be7922796e3f7dfea", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e808631b4cfe84e1fe1117e1e7d80b43b3eb3fb53ad790fb16956b73168d2f80", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9b44f11ed9a2ef4fba0ebb33266b09b60d4ea2c27b5bbca9f382f1bdb581bd2d", + "regex": "." + }, + { + "hash": "0323a301b03d02c6c407163bb246849f5b8fdf5be49cad78f39a128fe1fcb367", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdtuaksclackasem\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4dd64b200b33e33f979cfb10460747ac142bfbde169306a6e5e3c1cbbc3b757d", + "regex": "(?i)^https?\\:\\/\\/hnftxb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "37447b12269f2ee03332e5e17f263f15fecea84bbc45d04fbebb481eb8ca0ac7", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "68c194745bc838d823bc95e39b7f04d80dde063547b23730635be6ecbb604a99", + "regex": "(?i)^https?\\:\\/\\/promowhatsapprewards\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "83bee4247f0ef18eb3a515cdde863d430f70731b40f6b665a1b1b8d3c3371b75", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1af7cac0dd6535e992ae10f7bfeb3d314ef8b2e160c919a9df33e05b9410f587", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1d8386b6c735a2e5ad0dc1cff75f5348f16732871e6911286f2b5d804ea0ff0e", + "regex": "(?i)^https?\\:\\/\\/1231146469849\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b8ae39b7a730089c8b2d7ca97b814e8e5896a2ff2123c8f000051b74bdc2bce4", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "3b06ac27d7648569d54a6e319f2cfbace537a50275dbe7f00906194938d02d86", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcmasckasmed\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a0248c73291703ac97d35da1e71a6c4685daba88a34ddd1a2b1d6ae0a36517a5", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "d972887add8c17ab49ec204905f28a2a842e29d3adf2b153720666288edf3a26", + "regex": "." + }, + { + "hash": "b74e5e77e6763a002a461c1757dd71124814c862f2127942009d0f0f6bb48db5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "48bb6dcbc4276ea2a719c6c0450ffe818a217660ddd0b39531d4f9d65ee6e026", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakscmasckaasmeas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1ae1124cd77797eb5d8098ce0197f5c1812935a3022c8dfcb4c64b58cbaf2e6b", + "regex": "(?i)^https?\\:\\/\\/ocpasoealcksdmtaksclaskeamse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0c5d61268b18118ef33394b1822b96f8ca407a8755746516986ee4378196a860", + "regex": "(?i)^https?\\:\\/\\/mololkloijh7789\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a8229d4f939af2a2c0f80d8c7835fc8cd0638b75337ae2bbfdc5b4bab2ac52f8", + "regex": "." + }, + { + "hash": "258a888c3f24ba301e1f033e980f513d243f0cb010511b1d58d9b819fee83abf", + "regex": "(?i)^https?\\:\\/\\/bsxbfb\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a392d3f750f584a962ede8ea85ba8a073e59a62198662c6a3a1ac2f8b7bfd414", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "323c6003d74e96c7d850ce81f8d7c94f51b5ebfcaa96c57812735696b6e94433", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d387faf5a7a79bc31c7c3e3b7a25e2eb55e47b4ff976de7ebdf2a3f64733bb50", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakscmasckaasmeas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0421f9707843427eeabb16dc04ef115e65c496383c3f96b332c1276d676003d0", + "regex": "(?i)^https?\\:\\/\\/steamwordll\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a7a6c2fe7025bfb6c2321233afc56a70f03f466eeaecfaa0e8d072999410febf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakscmasckaasmeas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "900e422987c32282c37331deee0cf8c7086c034a8b00ad996a3a9b5849321794", + "regex": "(?i)^https?\\:\\/\\/www\\.sndjxd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5211972dfd03dc1762a4bd1aef2036507f5c2d5248bc5b36ecd9aee85c043f64", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "aab2dab1dc27e47d052338730c20dadab191ccb130cc12be1fb21441c3e79132", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "65294faf0641d6ef55a137f8b9256598857eed5e862f057b4a060bf90f1616ce", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsadutkaslcaskcamse\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "14e850beb258dce0d54e9133f0c50034afc94b802ad418a46e4cc2c6808c7fec", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4cebad5c603a4526993c819cf76c5c8d5b358fd54199b8ea709057da08e8c46a", + "regex": "(?i)^https?\\:\\/\\/lomnoijmpi9999\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7a1301fe66496022c31a7a0fd0457cc84d040130a43baccf202b1aa61d09aa6b", + "regex": "." + }, + { + "hash": "a3e35f078993b975683ab31184c241cc08e13099b60411b644d8d065bbe04941", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuaklscakscmasema\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8bce1546af6213e9ddde091ff683afe2944c9642aaf69f4e8bd9acd8b79c48c1", + "regex": "(?i)^https?\\:\\/\\/xvideohotx7\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "36e73cec68e757a1e58c24865081c416e2dd1e21ef2036a2453db3b7a62f80a9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutakcmasckasem\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9ee200a36778d0172cc09934351f5079033497f7f7676b63a9a5076a00d3ff55", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "95d1105c0a3a83e4ac900f91d8cc3ff462336bf21ad67d0fd9c7c60eee4f3dc8", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f07f71266f88c6742c5a04df499fdb0c3d9ac47f51440369ea23ec01ca10f300", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftyualkcakcmasemas\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "efa02a9007b935deb03c1379985e24f2f2dc490a91baa92e9acedb7b33e7c0ef", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7979df7307db4a674b4828ea23f3000beab68d5b268005817a094be8099c05c6", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "9efdcc18515daa360cfc1aced62990cde56094b95ab89c36bd248c94e679fa85", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1cab76b8c93ecbd2e3dd2e394c01f8bc065f79a63ffcf5169a590adc374d5c09", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "44a6b03d477ed19d0d6f2664eebe23e73fc3f066b89be85c7029420b299f635a", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c7addbd2198d4b2dc0965638e4ee9d8eef2a8e345edae75fd104bdbdbac6f94d", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "df7334d4ab0ba17acebf29f9f7cfc222eadaf280978a5e1b78d1b7e85852cbbc", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8361eaf24657b524f6dbc1c17625fccde2adadb994c842af79cdd0ac81f9ee6d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmskdfylasckasmcasme\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0772883b337f825c4af55cb8a17a1f1c18424a68fce42baeb537484e8d79f7ca", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutahckasemasema\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d7f1b8fe381a64640860a8210e86270156dc1194a730e0d4a6e73ba5461a04c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+www\\-paylib\\-fr" + }, + { + "hash": "39b554733770fe4a8345a39adc2dc527a9bbceb7e50d2b4eb178ec91575c9593", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5d19fe803d3cb4c210b154d4a13318d03add6191882dce954843a4fa013c2d0b", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e4914b2d4def54a057e396265409a123bd22cfe589fdd574e99c42bbcb81a1dc", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0100e2040498c885e5a801761906707bac512fe53feee250909a863f68a76300", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasduaksclaskemase\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "95b14738af7d006af451ab3a0b56e17e41382580b71f4be20df47884386a6239", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "20eacdf619e57a9eba7ff10e741a7c11b97a54ff68e4fb581f3fbf1db62d6272", + "regex": "." + }, + { + "hash": "9a5ae96e1ee0daa0e088e340c92f5355e5a71d8b9185d44d06ff4b9a9e53b3af", + "regex": "(?i)^https?\\:\\/\\/765765798\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "58c0386c7ce38fb7147775ddfb00665bdf732123d58ac445754f06173ad15d83", + "regex": "." + }, + { + "hash": "f70efadd357f83bac92f04bcb098e43af9263e6c05dec5e0a81bd799ba7369a9", + "regex": "(?i)^https?\\:\\/\\/vnlhpjhjgo789789\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0ea194c4bad195aadefacc68121bc62297a30fde2427c874c877b320dc2c1329", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "df8281bac05a83c4155ea5451265c52e06ad98aa1f30ee36ec2c750eaaccf490", + "regex": "(?i)^https?\\:\\/\\/www\\.afvnht\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ac6bd57bd7c9cb3bee80788d210669ab5226e87c5305dd498850121db90387f4", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv2\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1a8dcb2c1868613e321796dcdd237d59debfcaa42b67c2a023a739648f06af50", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6c2718c126b6d93881c5786bbea9677d30a322e351f6934d9a7f12fedee91851", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcalsckasemas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4e52dcfe06762f923ff2f33182afc694e6d74815c39375c155650d5f85cf802e", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "76314d6839b982730dd59a53deb0acfbb1489da6efc07dfaf8f57edc37834572", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c2d3dc0c2ea3cb5a0a601809b0a3a55774e11cae319865b69ac26510693009b5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasckasmea\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8b6934d3434583a9e3c2a34cee1cf2c23b62d0bc277d7d24204a9692976ce1f2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "17b3ae860ca2ed179d66dcbe6b2af1d33465a122a179670f381e8be1e4239c26", + "regex": "(?i)^https?\\:\\/\\/pcoasleavmsdtkalscaksemasme\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "babd29a11ca47ee2c893442f6b3b5fb0e65723ba00a168da7dca2c2e37b2306d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutakcmasckasem\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ba809dbfa02b07ac5bc75daaa3831cc40d5494344d0e151cb923fc738a5d74a0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasemas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2576880993637bb03a9383c60db4d2fb008a329325a87b401e17224c4c91bc15", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdktyakscmascmase\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f7bb5d207805461c1cd826325880c36b9de519218ce0f7af71ea5fcbb0f5eef5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuackamscaksemas\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "41967d558ab1ca5060b5b7bb86c53c40091adf61434ad4874eb85895c377f646", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakscmasckasme\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e7a919d148f5bbb5f240e6bb33c52ddf197c6b2c353aac664d0c5bc0c20a4fef", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "af5124cd1702337a861534a4b2c0d4c32df8f56b7238be9ee9779fc2053c60ba", + "regex": "(?i)^https?\\:\\/\\/streambookpublishedltd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5eb4241176304de48bd4610a6faf981d133628c34588546db087d3b2a97d3895", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "61152ea9ccd847d14028a9854ab4b0d1d797c45c51b848561d412823beaa30f6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakmdfyuakcsaklsckasemas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "234b30f68df2ee970d8cb490cbb5d0b253ac0031d938e451b544cf14d6a1cf9b", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "80132356681d57f7d594b42ffba155a9766982f680ca1d559ce5970982c46a24", + "regex": "(?i)^https?\\:\\/\\/bsxbfb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9d196f52344336ff19063c8088a4a934b8a062e30d982bde21d858c4bfda9bf8", + "regex": "(?i)^https?\\:\\/\\/1231146469849\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "545a99e4bb0947987c9f44aaf07f2e6ba6b06e3b950ffc2c1cf4f26c67443de2", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fc3426929778c21da6a51672c781bc01a20b47ae7d107b12c428d7216c84c5cf", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ede65cecfcd1db937563917a68237dd21ee275481618809dd95f4ce7549265f5", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "968934edb8061f5065c81db2ced13d8000ed1feb7a810b6789558392b76d932c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuykacmaskcamse\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "a3244de95a4d2a38c1dcb5b691190555983a60cba290d79a16caf13f05a66eb2", + "regex": "(?i)^https?\\:\\/\\/pcaosleakcsmdtuahcaksemasme\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1e43c23580f259385ffe96daa165f14dc261759b66413cacc232ad379099bb72", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ba8d7d8625733592db79ab601fc44ed7b043dcd0a4dcd6020bf6fc48ea568c6c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4bcca0bcfbccaf62b2493235327ebb3e611c3b4a1b11b01320d5b46204ab1030", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "855b753c5cd0df629e9964e660aac0e88080c76255236feaff5e922c17c2380a", + "regex": "(?i)^https?\\:\\/\\/vcbmvn7c9m87nvbm\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "597c691e729826a63ccd682195598ee9877122f01ee85f621847ca71a3caaa6d", + "regex": "(?i)^https?\\:\\/\\/www\\.sfdxeh\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4d4203370ae1fb8d0886c887e61ba73ab1601db8de9a28b2300e97e16355045d", + "regex": "(?i)^https?\\:\\/\\/www\\.afvnht\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0b27da7363dadcc2706764107d3db990d2a119cd47682d7c7cee856e87e9dcb9", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "fd730ad2a9ec7b37e2e3982cf3bf45bb2be05ed58d3d4623ee41e24faec4206c", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9d6b30c9fbd941866ddb5d2e8eef83b2b1465bf866327b4730d524771384c294", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7c40bb1bf0aab049d00a1f3eb08c3519d5a13b5e248046e666e7aea41c364c24", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualsckascmasem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2915bfa1ff6fc76e8ee06c6ba5d93e483c7fe448b4e6b56f4dce838f15005df3", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "dbbf31488106cd7e1abf68a70d7df6a3dcb962617885684bf7b975ef5dba71ad", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a7eaa3b8df329fa20f6abb4851dfb9b15eecc78d6fa93280742bc0d8b7d4c421", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ed98869dee6f41dedec4a04aca670e466476295a8fa98874987949d75dff5453", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1c41286daf0320a119ce17f93ec597d880da17dc82cd3e3ddc16676f08ca9e3b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d5084a67b2689d0f04db23bda138fda71d809afe4f1587b4093bf1a7e2c6ac4e", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1e1564d62ca3284b9f41113e7c0cf8cdd12a4b7e9dcfe5c30fbf8e1fa50a64cb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcmasckasmed\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "14e8b2e73427b486fff8b381d03fb8992b0b56f123e559ab10cb3fd113a0b796", + "regex": "(?i)^https?\\:\\/\\/8975465\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0fa3308e8e6960f02c3f5e88fe5efb79daa00346c1da273d07e147538d3a8790", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eda9346f642895edd9b4a3d6a5bdf3e5f7029c995c38e443bf688a354bb146fc", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0df41816d02da1432717a49ee16e97826ce7f29ebb530e957250181baebd965c", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "073982b801cc7db51488df80bf07f319a59ca06ea025ea8415aaa33f9416aec9", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4741ca6e1e22f68408dc10a822f288a7e08e5deac9015181856ff89ba9909b83", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "33cf2499b479c6db52cf6afed833831ddff7b6ab3ed67331ea6096359e46ccde", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakmdfuahckacasmease\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5d2dbe49a0a9e862a832fe269c3665af30fcab3412af4cf9fde42c8144dd78ac", + "regex": "(?i)^https?\\:\\/\\/concainit7878789\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0b410e6173059f2dc570ac9c30530abcd66bf0b7ed577122b0ec7bb5b17e6ef5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f66e5cfae9aab8bf8da846471fe0e9f3b710c322b4c53452df508b4186d3eac9", + "regex": "(?i)^https?\\:\\/\\/steamwordll\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "948faecae557d917d549c55725cb8446b0a8c174b701adf8d45275b5ade80995", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f3d153b1f99977396aa4c3b7b99395ab4049a5f4cec6db779ae65fcc02461226", + "regex": "(?i)^https?\\:\\/\\/steamproductionsl\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f56109c8419068b915cf254761ce7979cad82c68993c652da09d86dbb905718e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasemas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "418a69b7aa2b24f67fda6c22d5dcad3de0f6091c19a18309ac906499ecc8f856", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahckamcamseas\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3bf69056d9b3a62ac7652d11139d6c85c82c1369d50e0bde194baa74df17d24d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4ffbd07d0b141ed5b4b64b49aa293e3b4610e9bc0482a52d7286447625524939", + "regex": "(?i)^https?\\:\\/\\/site\\-109295134960\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4d847f65fbb6ec04fc5dc9772c86ebc599f0faa4a36ecb4d4699837552ce58bf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d65cf2d65397a06e1116046166f72aa80a3c9745ca3ebef58ae56d20e5545eb8", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "52be221f378f7b0c315183d64195f7ed4d4620a110ef35aa4c843e128672b609", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bfc7f41fef7910316788535cd51418b1a5576cad57c6cf180856a23a9d451f91", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "080a3981231afdf1abe475d774165e930fdd7a8daa0fe737ed78fcaa6b9a5d0c", + "regex": "(?i)^https?\\:\\/\\/xcnbc7n8bcvn\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "f903761c7e53726971eea89612da8e1366cc984a046b32258e46f87348b9e7ac", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "508219c45a6e3537ae019cc6b6c07646d6d3b9bfe240726724a3f506abfbfa17", + "regex": "." + }, + { + "hash": "7e27142c24d51161a266626a9027204c6f716c379562df097b17983953923c3a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalcskascmams\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "6a924edc752586fc7499790d707370e98d018f346d131e3b60020e962b56adfc", + "regex": "(?i)^https?\\:\\/\\/ndrgmq\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0fccd174e8310d5c134f9f8fb66257beca957de7df9b7ffc287edd6a242775a3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftyualkcakcmasemas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5bf9dee05f3e29db60c99aedfba3a3e67829e200a1574b58136c9f89dfa73d4f", + "regex": "(?i)^https?\\:\\/\\/ersdf654s5xzxc6zzcxcasd\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4703f32f17056b9be70f8a0ef813dfbd4922ddf2de9b6227aa2c73ca77edb356", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "adeb17ab7f3313979ad5c7d56bd3ef44bd69780c7159a0b437d407bdeafe4ca0", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cf274359fceb04d58a62ec426a5e6e667c1b4099058a796d192009f6908de6ea", + "regex": "(?i)^https?\\:\\/\\/autormaticalystebledomainautinticationservice4\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "71681f49864db8af4635d6c1ebce13dd0d42d9ac8e130c6028415c35b0ba2ecd", + "regex": "(?i)^https?\\:\\/\\/765765798\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b0fece2c18fd5878cb019173153fd4df72e37653f114f1843c6e961d7055c799", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakclasckasmeams\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7c35a2979a6f8d966a17628553ba5a7cb800c8ee24a5d8f86bdf1c4374c708f0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e7949365eec1e4b1499e4c8ce98c4951dfccc186668c3f8506e1ecc840cda228", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c1281370f1992ff0aae9e4d2533e48374f0d4a4787bb288eb0cfe83445ee0cee", + "regex": "." + }, + { + "hash": "db3fdeb543d7e480bf2613dd1896d4df2416a3acf1bd9be789dcdddfa84b77cb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d61a9018a0b3f4eecf8027dc31553b1ee37fb831538250edb3f40469741dc044", + "regex": "(?i)^https?\\:\\/\\/lomnoijmpi9999\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e8ce51fc9634f90702d868e39a908489adc39cd35fb1e50928d256414d8f9835", + "regex": "(?i)^https?\\:\\/\\/hot\\-leaked\\-video\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "38c8b3ad570ce15e878a2972386b9c7550fad814620d981d5bd9a9bc4d738592", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "42bce759fed52b5de8944a47bb0c7abc59b0acea0156114a76792cf0500ffd91", + "regex": "(?i)^https?\\:\\/\\/www\\.nesbzs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "38d55c775a258ffc3a818f051e24ee31e76f1dfaa9a1c5971d39a5636b8f41ea", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfykalckascmamse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "aee4378cf9eaed5d82e0849efbaf55cac2820ab613f52aa7b8aeae9e3a784d86", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3c61bad2c610c5ec1fdfcd9bf45738bd0bd41c2fe17c1a8c2f246961d1474561", + "regex": "." + }, + { + "hash": "92df072255c1c3e8c99117a6067f00441d78c86e908da7d1f6f90e575e8133d7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d250c8de5f2a543e760fabceae75828a4d352235feffe74fd741bae36b50c043", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmskdfylasckasmcasme\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c298faa3d8bbd8662507143cbbc6d9884082de24b4776f030f41c519726dc34e", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f421cd9fb93e5bfca228befe383007565b268bd89dad976e44223a84c71a9d8c", + "regex": "." + }, + { + "hash": "b9fefbad663d8efc4ebd86eb0ff1cc19cb5a6b26933854b028191be8a37e559a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "da61ef51ba381a329b2e5e2f7e29c72aaef984df77ec819e4a407b2ace5698b4", + "regex": "(?i)^https?\\:\\/\\/streamcommunicate\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "57d215fb602be385eeb6c67cf31e9cf55f239570dbf539660558a0122184a361", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a45daab574e0649ed8e691532f258b8f7c725ee658c3986052250c4708d26d86", + "regex": "(?i)^https?\\:\\/\\/uhstsyhsffeueienejedsuhsehugehjegeh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d9da193be7b07e2c3e7521a78a92aaa976ad416d10c2267d3ef2ddcf79a8a116", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+valor(?:\\?|$)" + }, + { + "hash": "06730a8f98d3139b0e0293a086cb28cb5d6722140af4d432dc4ec0f120829b11", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a6fe9c4d2cce1e112d6ba0978d0cae6c5c4668473864802fc8c3acfb39dbc4bd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaksmeamse\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9d96e00c31e1001c0d6bf2a8920e0a71026d6712c9514e1b1e079622210f9dac", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a88c61227343eab353ab89a93939cda497fb898938efd3e8a6ba9a77e7952d3a", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "00c9da6ea4c529ef90fd32e976d40144114e77efc5979e36addfbe25d91723ed", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f4eee5ce97ed95c936bfa3e6f249dbd2de8d07616ad7688a1bf9f816a87094ba", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "22b8111849d3c34c9f62d9fa309900e70bb786377eabef21613b0a0136191778", + "regex": "(?i)^https?\\:\\/\\/steamcommunicatesl\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4cb44d106fee09fe0157db2de75e0b666b06908cccb1c0bf9565aae33138fefd", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "93b8a1d8a93657541aa98bce91983130c8110fb7fe630e110ce2326c4a44f26a", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b8bf59a870e0d821cbbb142ebe1083351a25a9eab5802e059a22a52d18dd3fad", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bb1ed443da96167ea541eee18211231daf064ee58550c2e99af6dff2bb46b132", + "regex": "(?i)^https?\\:\\/\\/steamwordl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c207d661163c85a4a10440c1a4f14ce1368407a6123fbb39ab57445c236a6945", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "451400ab51a8100a591f3d402d78d1515f22f46d15106588058b4284f9ea4fc4", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "61f155bde38bd818333db2659640d6598d3f3661f6b4cfb1891e68508f3d2032", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "06465b115d1b3e96959c3e6cb9f4b9db0d4ac08875fd378e1e206b78ced6376b", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4daeb30039e2f6cfba215398c483ad6fb8680dcf1e01579f4491667d6cbaa977", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkascmaskcamse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d476f6c974666cd8b643dcf5a61dce420e69b0c0080079604da1a248260081c7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fcbc36a978031ad112a1bdc97ef65f5b735785d8cbbd7b4f3b27d55e260c32ee", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e46eea8ca1a35c7f67c9dae43bb956cad482924b641a14487a8501d6d40a4252", + "regex": "." + }, + { + "hash": "b7a5e1aba906ebead45b8f15475ba6cb862ec244c1bf9748a8de1e1ff4e3c0a6", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv2\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "eecdb47470c6070e397b2d7a8dea6b5b03af600d3818504ef4eb84132a1f2156", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0901fd864537614d552fc80128ef49aeebcda8644c0e2e908be3eb05b247916a", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fb61a3e671493082ec15893bda64b6915b6838dcc2790557b2df77e9b6d18caf", + "regex": "(?i)^https?\\:\\/\\/colonhue897897897\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a6f97509f22d87dae74ad24fac464ee1b1ea2dc2624c4bf69c9a7836b52ad60b", + "regex": "." + }, + { + "hash": "602b1191a5087e92625c1cc78c5085f1a6a5fcef6493f5e0938302410474d29f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualsckascmasem\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ea86f55b2ef594a5992ccc8cbce55634cb829efdbf950fa356f91b68c9708526", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cb68f99518ca53adfc12526ec1b629080bf60b139d3da5864f6714e5fb4cef6f", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "89b85204eed9101d58963688d23267b0f376653c5e56b35bbe9546c1ad945d73", + "regex": "(?i)^https?\\:\\/\\/bsxbfb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8ec08de99fc13093fe0727166a5dd8661b077049dcf18ec3e49bde059d5e972c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvksdktalscpasclasekm\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0da4e63c1f744d22bd86173d102f627b0ef9ba3f73192434ae052ba157f3b055", + "regex": "(?i)^https?\\:\\/\\/vnlhpjhjgo789789\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a773fb4d37ae334a7ef5a4afdcc49c70a7ffec394d6cb4319abdcdc48ade6e12", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "bd49f15eee128d3d30167f2fe493e3c2f971e287d9041319239bef1e378cd034", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "97618815aa521b480d9555b254d88fd19fcb7e8146af28d47be1bcdc00507e16", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "559b9ce678d25266a2df12669f489c19d35ced4936274c65e9f839d697bfd8de", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdfkyalsckascmase\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5cf28dfa174dfd62e12f7b88628f2c791efa74a0131f651dc63d8c628efd7094", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "658cada8c44309d872a7ff1ce3b838fed356196c1c9c75dfc780863dc0c743db", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c5b594938b3655d403342c67f428433235eb4dd7893280248e4a1bcca71f5ac7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasduaksclaskemase\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b30b57c3013c3338d2bd9885f25c82f07f1dd8f224b8705eebf89f45421a1902", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "642cbb6b02a856917f00a4db52f244ad25a93c12787e08415ce39f19dce7750c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutahckasemasema\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2c0310aded72da1c94b06c971c19be17cf404e1975bd4b450bae2fd63e621c1d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuasldvalsckasm\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "92df08e7cc5a5fd1319d1909787d3223676e52a9679a504f77c797a2f784e351", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5f2cbe060416988b60a54ea55cf8b6a8ecb0c189ac3f5bbfbca293645f41a14c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasckasmea\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "436e6dbc6f67d2e84dc17b9870f0b31a929c420080d0ce56eb5ce973c0493fb0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahckamcamseas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "89e7de3a70e3cfaabb88881658b15c34ee9585abe79d69c617d1beb18b15939f", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "207920b41bb6069a3fd3636c2e1c711a7025d6df2a7450b69130ae3dc95091bc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7ffb460a49e8d29cc82d0a1e96f9d8a98008f600decac8d7d7880d5c3040879d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyuakcaskmcaksemames\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d6380f7cde01a450562faf4a2f82c0df5e333e5dd01d4df3378c012e27aa1296", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdtuahckasmemase\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e7cdb35bef31e8bed7ac843035c3f19393d6a2aadcc9e87c620f2eba63da6", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f933b9dfd564f173ad2b95417a4899ce84a6ae341d61831a98b83d6e169fff3b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakcalscaksemase\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "dfe57b4e8f1827864ed6f2ada20da8e397d1b1d4499ec32d89d81909fddf0557", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c337c453151fa4c5bde37ce14ca690552ebbefa4e45c8b4d583d427bee9ea751", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a99a4574ecb091d64572b1928abcd5275d29e1c84706066d4012c9c702b964be", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f43b61adda79380bf71e4b990dc27dc9b82fc3119129e9f793ee563f37de0a92", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "265c48e08c6ce1de4bac0bdb2672a35ea9a3c17023bde5cbbcc8e60c10c55725", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5ec231464052c54324e9c99434d1f5439c4d25fbe47df3624305fab5eec0c1f0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalcskascmams\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "96501bdbd64827118e84a0f75d88e850f0c7f2c025d0c8c7794420c68f547477", + "regex": "(?i)^https?\\:\\/\\/pacoasleakvmsdfuyaksckascmasmd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "764491a2549b252752dbcdad841514f0afe851c6530fd404b2d0d872ae486ab7", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "315f2757bb28ae158bd6c2b77fdabae691c5cec9192a6a468be96fcca5b3a03d", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d1570affc097e3140ccf0dc518ce41b094bd3310bb305f8cafea3b76fa1e5697", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasckasmea\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0ca6309d1470937e5200a8cff9f09e036af0711ac0cf454ff97311292af3357f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8535f6632b0c2e6aad5d20957f2df26560ffcd8d2ad752d6adfbaebbef39b4ca", + "regex": "(?i)^https?\\:\\/\\/doestafeta\\.click(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "a8de810331c7dd8a71ddffa89eb7a14161556477bd05f24e1d07c9a68720bfe0", + "regex": "(?i)^https?\\:\\/\\/vnmbvnm78bvnmvnbm\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5246c303243da96920557afc68ce0bf9998721bd9a5bc438e11941cf014218cc", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "32b3c70ba29cd119ff9f8b0dd47a772db444d6ec1dc6f5bc1233208655f1423e", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "28579d7a7847a451ce4345541ad2804f244dc1dfe980983391cbb14bf12083aa", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a4b52685e93eeeb6bd47510d5df83db01e30ef938a9169c2322d7084bd615079", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv2\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d2faf60a444291628c14f13e2f85a31b493acaa34f93a9b153cdd5f41a787dc0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftyualkcakcmasemas\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "01873b9f2505f24182fc2b30618df10bb27e338d34e359199245f7662fc85b64", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "433386b533564c50828ad2c50dd29dd63e394682464cb2ccb63d333c6e15af08", + "regex": "." + }, + { + "hash": "de2545484ee1abdc9a022b5f2263835189bc6db623e9ede041f4ee403fbcf6bf", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "68c88b26d8ddb17ea80dec18db690ed442083f8d8a660dff761d028fa775a391", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkascmaskcamse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bbb8a3c59e656c5c8951ddbb31889de0670b0726b66723cfe1f99b07ddc1ddb7", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4ece5aedc5b60e4cbc6ed8eb54c317a8d944df73c3eef8ea97e338645f7b637a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasckasmea\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "326444b576c80d97d6f199a584124587d578367f3c544a35cd906ca1f62494a9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdtuahckasmemase\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4433bf6d67750c49be5dc3488586ced3f5a6b5d48c00b17ec1c9d7ce49470185", + "regex": "(?i)^https?\\:\\/\\/qpoiakloi4567\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4193bb9dd324ec32e2e1d5c0035dc959b014cfdbf8c9fc481f03a98b5d096a5b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ad50f417bbc61428a7fdf841ab5ae5da9495464d0b24884d2129d663b2dd80d5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsudkacmasekamse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b74e2a6133706c13756e2c609a1cf8fccb0ab3d04eb2b93dfc6be249f3175397", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2360db0a814a169aa230693c38653f8e6b6677a6ae010382ae6686daf2ed9de8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahckamcamseas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "337ce72c0d286e3ae2dba51970fc53c3bdc2482d922484aeb1a59db0c1e7de6e", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7732f339820f4ebf23f80ae155b582468666c2af9f2419ce7aafb67e0e1faa7f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8cc83642b148d8d0530a63cbbaf5d09262389c7adfd41f5b7ded6d41742a992b", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d0efea8fafea307f0cc5169d9e00401495d5649aef1c7cfd205510bbb407841a", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "94335835f352ed924d051bd7290a39f5205b714824479210f80f118df87da692", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4dc6f0f81ab7cef4a172930863efb433af8ff6f2996a8004f11cc3dbc6f6388f", + "regex": "(?i)^https?\\:\\/\\/www\\.sndjxd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ff802496bde3b7f7e428c01e3076443782e6c9be12896e5f5da775361110e730", + "regex": "(?i)^https?\\:\\/\\/hottodayvideox\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d9c4a9c1bc0b249fb69ff32db6f755d5c0083ab4ab19201e0e8b82bccda31334", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasduaksclaskemase\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e2cc9c4e61a77abf41c690edf0559f989a440369ee6d6aa8089c67c52399c5ee", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "becc50fb490b919b52b8d9f7057ffac902e7bbf2bea03f724ec428f1947106a9", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d67d21b5a3e15fb7b223ca5d9510a6ba3f2403db6c1aa7b8af1ffdab988f8a85", + "regex": "." + }, + { + "hash": "6fcaebd0df419daa25328ea5261109da71f11b3c1830d6297de82800df1c3582", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsduthckasmeamse\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "90deec2f4ae3db70b796d1445dd75f5fdcef9310cd19e305ea8173cbf449fdfe", + "regex": "(?i)^https?\\:\\/\\/xcvbxcbx987bxcbv\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a729de8f6d8310a6e8bfdd1ae9fae9a1c81696acfe8633515aa21559ae033570", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "67fb86533c1da75fdb5239f0e8e393c18e7fb4f41aa85386cd292c6d42a44f40", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7e33464331f761a40ba8760205467c8d4661c9e98bf667f7d8dfda4cf7768408", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahckamcamseas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "2fccf7b5bbd9972b4df728a23b17702272a1366a032c26a74aa0421c4d716869", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6af3175d6914731c3d96dd77d8d7cd05b820806df3eca80c42bc41923d641a81", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsudkacmasekamse\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8f15d30db962d19c5d01d9a6b5f98998fb67a4e37229f8475a802b050d8e4ce1", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "3ece9ed7d4c3fd8bf04af47bf3f837e40a5643f7305aaafa09c434563cf14537", + "regex": "." + }, + { + "hash": "cf7b043d0805021f595a3ef58e5a5e0da2ea41b433ae2ea585a9144f394a7268", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "068e7acab2b1448e52bbb49e9f5d6b6ac9f0658ddbcad8260203de7c1ebd8a8f", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0f1ffc8e10187a1aac4895d5840ff4ab2bded3be9ad49141c5f8c57a47481137", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "308d1ed73f02f11907d6d297b369388e893cb205a9962b9cd4fc38410e13c7df", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdfkyalsckascmase\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ff644ba8e781d06152ab5ab3b5c06eb14d81caf78d8a368045b9db990fbd20c0", + "regex": "(?i)^https?\\:\\/\\/qe521436512436512\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2dab071711f8d9e10ac8c6efbcc7c5a5d5dc13866cd0ba3d7f6dcf8b11716266", + "regex": "(?i)^https?\\:\\/\\/pacoasleakvmsdfuyaksckascmasmd\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "15e4562aa7ea1b93315507789d10d29b549a897713e42b366b4db154b6dc4d0b", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "dae38008184436c69f37d00839f11422271777aeae9a1c52fbb8c43cd9541e83", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcalsckasemas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6944668528c98be3173115e41d4827cf02691af4f3ef492749a252931f8ac084", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "c3b2c12b8573ad60ba7e4e6b5060f6e1c1185cb93bc535d24209dce390a833ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4b39aa1888c7fbc657d9c9317944d7b3d55944ba2e2bba2811553a381e987011", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9a00cb143ede70de7b41d2ef692d79a36073e96a9458c52d79a266021f5201d4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuykacmaskcamse\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a4bfa67ea2d3f5b8e4c7a93e0b4b570dc26a031577c52295c48b5811926317da", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmskdfylasckasmcasme\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "1a3c253b21206808d7b630bf31b1d263ca05eccf3ed97980b70823be5b05206a", + "regex": "(?i)^https?\\:\\/\\/promowhatsapprewards\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "308103f06b4e690ca338bfdf127e540378c637be26aa6c373018b5c14dff246a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdktyakscmascmase\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "651f6b5df1886d20c42f9f78b1b5b574c00cc66b89eaa2f97a63904d8fcebc18", + "regex": "." + }, + { + "hash": "d043e7cffed8bee702a9d3b11a5e747f18b3e1f2f92e7501742098bf8cc9e6f7", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1e44ee6e0db1b1c5f88b82219605f8faa019466ac902a405fadae146d3075a0f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfykalckascmamse\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8b8750346625a011a6fbb5b33c6a953d1ccdb2328802b665beaf4fedf634323f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e9bc2a8602cf0fcd051d712adf6ce5e06e2d2799081d174c64a50a09e5a3f4c6", + "regex": "(?i)^https?\\:\\/\\/ocpasoealcksdmtaksclaskeamse\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4bfea2a5039a7c7dc0cd506713c457fe2949fb77dd086fb8c0e7f73e94198c88", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4a1be739c9375eed31845a874b6082476dc37754a20ea65af93ab8c0f19f8a88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938ac468fe\\-ea15434a\\-48b6\\-4971\\-8f16\\-858a7cf47e04\\-000000[\\/\\\\]+OmR3sYcxzX5aOrs_C9Z3y05P4MU\\=402(?:\\?|$)" + }, + { + "hash": "e5243d283c7f7840e5d0161b5324442997aaa9bc518085197db76e148ff05747", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdtuaksclackasem\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "193c7f362aa4ee789bee45756dcca5f3f8be9d73aa17910e9840ec32ec902e44", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2330343acce578c099a54dd425d91555a7b19bef1860b395b08b34475c65ba9d", + "regex": "(?i)^https?\\:\\/\\/concainit7878789\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f128aebe5af6823ecf4c65ca354357471dcb31506446ac6748bc9207e467bbd5", + "regex": "(?i)^https?\\:\\/\\/streambookpublishedltd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d58e16de996e149b2d41f500c7a52ffd8d22077f56d44c19b76cb6e0d485c125", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "5670308ed463bce0a86ab3d769553ec741f0deba5d95d07125bcfaf5cf172ce5", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "940448cd14a5b5871565887946103192f8c2b971b528ce39fa291ebbf9d154f9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b95abf73f761e7f39b2524c3d402b4351223a76faa2ef0cfba805ae63d20a3bc", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a67c07744490ee00d0f2b0b836130c1176761267e3c897764c8bacd4e977e1a9", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "32db04f99d8a37cfd0df94b00591648c40e0db8868d8cfdd4f83789735f7c122", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8535f6632b0c2e6aad5d20957f2df26560ffcd8d2ad752d6adfbaebbef39b4ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "428205b738bd8c8adbd663acade582efb5e666e07b83ab1b6f352b4e94dbcfaf", + "regex": "(?i)^https?\\:\\/\\/www\\.nhtzjq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1a497eb9c7fc0418aa430d96788d5c16f1352cee3be2ab2abee17d61d2954114", + "regex": "(?i)^https?\\:\\/\\/www\\.sfdxeh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a0e1fdf684d861829064f0926bb3d6d955b868785727bafdc9c2a1cf481bc690", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938c828b61\\-8ace49b7\\-c06c\\-4bfb\\-a44c\\-619b2f4a2ccb\\-000000[\\/\\\\]+pkFp1w7LMhQlFRZRcmV6irBnpME\\=402(?:\\?|$)" + }, + { + "hash": "03c3a7b92be01fa0324aa43fce63da96c278f165ccf2ebafa8c45131eaa106ab", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a45aa9c1477db9476f44d5c35c5f2805f77a48e6cc4feb9934ec9f365d2165b2", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "76dcf78484d11a375396e12e241ab2acc87c10d1c8b1d72aa0e714c7fbc6d4ac", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "36720045fd07082c949632a09eb8f0e0f3585c136c58df3ff788581aa966c38e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcalsckasemas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "897438c88fbc3c0673f62fe8cd85ecba696cffde02ba3478e440ce049568be7f", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b072814314eaab1eb79452fc3a1f0c9cf1484ab1792c2c10ecc2f00c471c8187", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "94b1f8843d2a137355b043699d6ab998693d0f0ef6c28de35da742d020ad45f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b9b37432a7e354bd50acecf3eb6575620cf49b357beb5598fcc418a0395b0388", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "95c82a9f2919e0149da88fa867dd5667d7c3e20cd59f9d83773f292a54b5b777", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c6e1551ae6e7db7feff697fa8bfef41da4831fae6e42b25e1161bf435b9a28f7", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "92d871d3bfc9675ce3fb28fa724f1acc73bedb6239cd08cb22fa1a7280370d61", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkascmaskcamse\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "df609f632e91857a406a4994a74f0bedb8292422d687afe43926632ae9da624e", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6ae4570379f40c1ed1e934c64ad9fc49858bfc836605cfce033b2451403842eb", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1bb98a24b23fbf0730e8970d14ad2d55f84b91d042051fdc9966bd16dbcb47de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938ac468fe\\-ea15434a\\-48b6\\-4971\\-8f16\\-858a7cf47e04\\-000000[\\/\\\\]+OmR3sYcxzX5aOrs_C9Z3y05P4MU\\=402(?:\\?|$)" + }, + { + "hash": "1216d3859be6726b48870ef64915811df522c83b7a669353f6050cfac5e0af89", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d79c7ba2db9a3ccac47d1c13251c2142b2c39cd66a8c32dd2eb48cf64e86e412", + "regex": "(?i)^https?\\:\\/\\/www\\.nhtzjq\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1bf0b929c902e8ace570e8101d3c168f0d63c3653ddb2f255c890308491419cb", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0b00ba4283add6f07c7071377bfec863e286bca7ec90439308d0d61924fe9807", + "regex": "(?i)^https?\\:\\/\\/www\\.nesbzs\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "11e576e5a4209e9cb7d2fbf2dad66f684ab00290031b502b700a21e6533a5d7c", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7de962c53de61f8de61b67eda079e7ac704493b2311052081f2e2be462be55b3", + "regex": "(?i)^https?\\:\\/\\/steamproductionsl\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "12e1cb30397250dd7bafdc016c9d01e8d6a31cbf528e1c3186449adaacb20f2b", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f8ef199509eaa065b1514f40fb44e74da85a39722c8fdd9a904eb37c6e62702d", + "regex": "(?i)^https?\\:\\/\\/steamcommunicatesl\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1120ca3d7f9d86f7389336521a7a6363ea08ee5711f843b796e49f4e0d982362", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f287f5f82329654acbf264d3855922f569bc0423b3cf86b3f99941cb349463e9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakscmasckaasmeas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "5e7d7a3b977022f680ac2b339421379cdedd491b81465437d326a77349ba543e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdtuahckasmemase\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d9e3f76eb8ce5e9f04b9f8d1801706e2b63d6dc50cb08c862c9702660ad94716", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bd604f263a2bc63eab72cd5440981ee20f0448734a3ec7f08330f1853fb6e8f3", + "regex": "(?i)^https?\\:\\/\\/steamcommunicatesl\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1305137f3e4ef593d1a8f49e4f24a425cddde42f91209311890ee133197b1ee7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakscmasckasme\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c87f6e04545e21a0528900b139bca43c2b6307dffb07b21870ae37a81460b652", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fdee427b6871703ff1e35c85c98143fa908aac091faaaf97cf9394f232fd22ef", + "regex": "(?i)^https?\\:\\/\\/vnlhpjhjgo789789\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "eed431db99de23d5b718ee5c11397bcadc7341c2ce176356131f552a32451ece", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ba3dd3d8a095f997c0e60879e5e43533d42953fbd9569ae69eb1e9310816baee", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "7a283c9a1a2bbea6c95320808238da4daf86d99a5d00cc8479d40f4797f3a54f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e988d9df71ee1e4ca2938c3c73fd11c8483fda8194a6cec12286cdd88cba6cfc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyuakcaskmcaksemames\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "055d6988c435fdda907deb1476e39a8416aec1a76c1454d7b5f3ea2a67aff78b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakcalscaksemase\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "acb7c23a85dffe8618fa3672c48fb42f70dce79ec8fecb8e2e37acf886b49269", + "regex": "(?i)^https?\\:\\/\\/www\\.nesbzs\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4ca198b2078cf93cec316aad53ebb0c2549c3290854151f938c6c1244fcae72a", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c458c33000753f3ce6ab5d14e1f17c5ce80c66631bc5faba8477e6db3222469c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "76761f56953dc5210c069f262bc6bdd11464e528e1d85d34f9b1a6e05c6ed64b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuasldvalsckasm\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "61d2da25f7d58d670a80bc7a02cce2bb511750fa89c63e24c16ca38e3fd6b482", + "regex": "(?i)^https?\\:\\/\\/promowhatsapprewards\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e193da86d18409b9b818b7052bd4212478d3618fd379ffe432e25fee78c49ba9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyuakcaskmcaksemames\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c940a96010aa21a273e6b4047b29b7299e91abc0546d98a6217a8ba71e2579e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sq0\\.php\\?session\\=6754a33d0c1d8$" + }, + { + "hash": "b5c787e8c1c25aa7b5170aa3e033a34f50d856cff6a5fe73454b3a3e90cea6fc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "6b310b7f21292cdc569080d1b4a5267e32e2b5143c426c4ee50aa71f29dfb66a", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0c9cc6206ccbaec58b62e60ee745e39d2ff8539e8b6c086fb205e615bcc2e7ea", + "regex": "(?i)^https?\\:\\/\\/765765798\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "3203e8ab5416273744700572ad8e0912c2760fda849583105990ae9357819f32", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5e74c39321cb4ca6130951b467d71ecaab067b99ece1e7038a58ebfc1ef04b66", + "regex": "(?i)^https?\\:\\/\\/xcnbc7n8bcvn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6ce432a5902a9ad6229acc37b0465e3190dc45d585c8a6e0ae388838c2820076", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c39e3d20f7f207235454adec88ee3d04ee958f96e79a64399899331210631226", + "regex": "(?i)^https?\\:\\/\\/hottodayvideox\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "665060b0fcfb849bcbb8127d0c0ede3d3bc49d51dc5afcfebacadde3cb437d9b", + "regex": "(?i)^https?\\:\\/\\/25kjlhoihmjjoljko\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9ce0b04919007f3c2fa02677b26b2e34f0f7dc24c59750bdc588fcc7bf1fea39", + "regex": "(?i)^https?\\:\\/\\/vnmbvnm78bvnmvnbm\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f9ac1de3b3dcdc5d454ebdb0adf623182b33dc3773f935acac0c38d80b3f3165", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "548829223268dd5804d33c93c969527180d115f002ecfbc428f3fc310b45f65e", + "regex": "(?i)^https?\\:\\/\\/xcnbc7n8bcvn\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "61de6f89e3d4a8347780a09b2322e25214ede44b74964c3cd34a0d6cf90dbee4", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv2\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2d12aaaf52ec69950920fe86deb4cdd37c27a762b610c40803b3491364fd2f00", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e120f388b0e0d4bbe14688997221f16a21b7f3941e28830a01bf4ec0a64a35a0", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv2\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "eeb4ab7c9cf28399ab38c87ea69ea02f0082d5b94713208acf1ca5c20c38c37f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b633cde09b167446af052ae94cc2c1a68d1bb6048277ae4bb32340871168dfac", + "regex": "(?i)^https?\\:\\/\\/ersdf654s5xzxc6zzcxcasd\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "95c71a3bbef19e62d0e48ca9fb9d6f5d8735b8e90e61674a24c81fcc52cd79d3", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c010ec65d4d5a28e9a403f183ec01adbbea208c0e7b3cbbe5c595be472f3202d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutahckasemasema\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "829e0e8bbdff6bed97905d3c12835bd3247e600ecead574b1e2bd083a384ee2e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "496940c17a1fb63b2cf0485f7b843e2ab4e5be76c8a6b597a1c2a65c4cc34bfa", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "cfdc12561ee42b0aca2cb141663b829fccb21afc2317f7a500554eb2aa9232dc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "59f7cd04bdddfcac527ed337754bc70ee3573d23db343da3999ef04f73ca65ee", + "regex": "(?i)^https?\\:\\/\\/steamwordll\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c940a96010aa21a273e6b4047b29b7299e91abc0546d98a6217a8ba71e2579e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sq0\\.php\\?session\\=6754a33d0cc19$" + }, + { + "hash": "7c39f73971d06f2e261e610247ef3e1737698c2fb390bb7b5f41c5f6046e1776", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdfkyalsckascmase\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e4822a7e8c3216e239676a528586ebe86d31b2a1557f9454c36b1a15c042365b", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8c1fe1f48502b43fe0337791f9903a15c1d231341e8596477c3727cf4999022d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d7fff5b638c954c72de8e7ac90b2370587e1342853ad0c1dd7edeb0890cb6abf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakscmasckaasmeas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "1223228bf70aa936ef23cae7690dbef7c556abd5e18f08a90c7d4b2a154553ac", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a109fb483fdbbee6aa3691d650956a2d6bad1c3e5407acb76f0eecf04a6e93d5", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdfkyalsckascmase\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a729251fbaf52113e22645071a562076a65a8b06749af7e7f057010b87be4943", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "361db7a96d633484e361cc3d2af3a4f48564431e9002db2389502102d2654b9e", + "regex": "(?i)^https?\\:\\/\\/xvideohotx7\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8c154283216d2315571eb82dffa28ff613bba13605af2bd11566331e424d56ee", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5a349fc617f587f207f2c582a6c0b34133bc84545d89f58d6b8830efafacd07b", + "regex": "(?i)^https?\\:\\/\\/pcoasleavmsdtkalscaksemasme\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "928ea5f5265634cfe3598a62bfd1fc6772d3600b7c502edbfff7de67552cca4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ph" + }, + { + "hash": "175198cebccfb97bc68fad0bdebce11a149aab4a24b7220cdfcac6be26fef705", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "51c65ae4634929c12c12dc31145030119c566848c4dd4f04d4fe6058276dbef1", + "regex": "(?i)^https?\\:\\/\\/www\\.nhtzjq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5d251b9faf0e355716feef4dcb0e1b2fa6d6ccc5087822d65fd21593b3fd6cd3", + "regex": "." + }, + { + "hash": "1325b9d91219343e6c5584781edc8a730f31186029bed2b5a29e805c9cf85595", + "regex": "(?i)^https?\\:\\/\\/vnlhpjhjgo789789\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "56584668c812f1b204acf8b556f19f57979e1788c1afcdbae7c7553ba2b9f5cb", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "51f205cb43c3d02246f538a092315bf1e3d355d4c81635ac8d38244a2ab75c91", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuasldvalsckasm\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "6e8746245f39786e7d5fb59a9ec3da912a59a6cc0e465f4bb5f8e3fa6f6ceb9d", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7e2af76b59a36c02c0268d3070650c444296df4a07333ecd87e04d9f2a9a63a8", + "regex": "(?i)^https?\\:\\/\\/vnmvb7nm98nvb7m89\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f768c3bac3da168f41355a4ed33e46ad0d53ef1260af009abff56dd7bfb0de23", + "regex": "(?i)^https?\\:\\/\\/www\\.nhtzjq\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0b7ac3b005afe883c2dcaada85b96d73be8cc49854c93feaed56b1faa25f0d79", + "regex": "(?i)^https?\\:\\/\\/hotcliphotviral\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "34f272651fc35cb827785a59f34def727cc46407cc657ed7cba9433e0dd95478", + "regex": "(?i)^https?\\:\\/\\/qpoiakloi4567\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "093a45d10578dfcb2bdc6a47819e481be44789a1d5dc1a11de4acc0ac2d46497", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ffa9ddf7a764eb1f56b0f38b349de6ca4470dfac160b6f008c5abdca6acf4746", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1e353cc020efb56999544ee5a444180b452f5999c32356dc9a29ea9e89e6dcfb", + "regex": "(?i)^https?\\:\\/\\/instagram5062\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1b0b56635ac83fd565ea993ea54e7740e1e504cd064b080149602d6733124a5f", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0709c7f35286fb29986a283bbc094a8791694ccae2bbf16446981a8de50c46d9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "10b10a2091daf807e26ada0c815d88609994ec807d416ab5b9e54274169595fb", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "91359996c4eef51dc8351a4f88455b55e4ffc83ce5796f6bf28c43e46cda31ab", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "49cc74b4157dd8078bb398974955da89960887b533af8cc53654d17a2d3dd95a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftaksclasckamse\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a941e2127aa3bcb4de10ce6a398b90c76e0bd7bb5f12abf1be92ee70d7ad4fc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938b5340b6\\-bab5e398\\-559b\\-42cb\\-98b9\\-d62af24d84e9\\-000000[\\/\\\\]+MzUKcdFJj31Jt9PE\\-P8LBfxQWjo\\=402(?:\\?|$)" + }, + { + "hash": "f6d54391585b188ae850b156613c46c6f9381017e7bfe80273ee8dde7b8812ec", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5c442c422a21d1a494d35ad06f8c1259b1a9a9cedd07ddf6fc286b5780b61547", + "regex": "(?i)^https?\\:\\/\\/hot\\-leaked\\-video\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e5daf1315e535b462f205232f0881a2e05f74e146f1a0ec7608aa709522fcf99", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "eeea7233fa750eff69e4786c3c0be4650e9232899fbda8adc39a80768150eeff", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakmdfuahckacasmease\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8ec092e40f51e83360bf8fbe25ea3f0949ba58090187d7b3dc9d4063f74365cc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalcskascmams\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "01d5ffd2c950ef6ad5eb86f3cd80d76c232a1317fb4b315d59c4598e3c681bb6", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d49da6c69d89ee65c9cb1e5ea6540e75644454459d5a1b362502bb276ce1f3d7", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c2433d659966e20a2d7181137f38b8c4f3c8440be641681b119b135559d29830", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "40ffec164403f372180611d8497067cb4d0e544e1b8724de0829877187ac28dc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e4f73ab906546ef15a68d52ee95272adc810e1a0be8696d0e7997cd101f8215f", + "regex": "(?i)^https?\\:\\/\\/vcbmvn7c9m87nvbm\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "48f0c4b923ee30bd5a171cd8bdb6b5e2986d01430e2acd35532e5e8057d2da0e", + "regex": "(?i)^https?\\:\\/\\/pacoasleakvmsdfuyaksckascmasmd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "924fa95259b4e92d6c8e12319f75f31302d1b4f9731406f6e33c4f15bfdf259b", + "regex": "." + }, + { + "hash": "b44965d43a077dcbb6fee4e0a03b5b67005765bda286ab0ec84bb8d6d1dc5dbf", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b0e7678e1f61e29e7086136d684636a9b0bf977ee8f853806a55b470f73a92da", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcalsckasemas\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "466235ddc16b3da776d5999f3d45df5453202c6c7bcf18e9d3bde44f8f58fe79", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a78c9154e6d3b615413c9687fbdedaad5166ebced56f3f172ffc61fa5c92381e", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "70c382c7dee6b69035d52481d0790ce15207133466e345167e97a8408c3f5207", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c9bd9a0e2fc9e52a25c324b77c46a4e99148e0166ae582107c2ebe8e37187c87", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "52283857917fb5fb6a1e98f2e13351b379b46b9496275b2a097c392e705af32a", + "regex": "(?i)^https?\\:\\/\\/8975465\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5ba44aef2a1077b234950bbad4a5dc48d3c63b262fdb08c8540ae832c58918d6", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "56581315f7ba7ebbefce0936587b5e9c803a1a587ffb6af172131d5aaca13bf9", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "21ad3a382794ec34110bbddd0c8175c6b062c4fcd8d50e70967975ddce1ed14a", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "80e5822dd20b8d1d18825bc6d9e0a71df665ac5c480f76215239f22a2ef69122", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuykacmaskcamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2292288be5ceb4a5632010863667a1dffce60b8615e88eaa78008411fbf8a745", + "regex": "(?i)^https?\\:\\/\\/bvnmv4n6546\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "17cc7f81541a5a604b04b20c6752d4980096bb514f400bd345236d0d67eab46d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakmdfyuakcsaklsckasemas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "ea0e8ae60a2849953a05089483017fa653b2f552c8edd0b61368a8de2dfb3a24", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+speed(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7644f5e13e0483cea77f7611274a8a93ff9654e8677e4e53501757a7624c1edc", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f99f5c186ce316f754f16acb21c68584cde96e30332e9d056f09fe07f97edeb0", + "regex": "(?i)^https?\\:\\/\\/46456465465\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "42786ceb8b42802bce0c54fb218e59f267544e44d94ce03d3aef36f7b59d245b", + "regex": "." + }, + { + "hash": "50bed5831533a657d605a87f9b0705fa39e24f75ca4f23147c53909f5a11288d", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "331a678a289c2c43b0db9e8e5e14ced1540404789d53802e5ee232f0d0d24b30", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1969d6525656c1a15ce056c0d8606add39360989057904f07e887f0e2582f162", + "regex": "(?i)^https?\\:\\/\\/feftfffhhe\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9a507a720e143da556d7446be1daa6744aae34743fe36aac8ae077ff7921e6ff", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakcalscaksemase\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "9196552ee966cf2838aa2bc516b888a1887587a1167c365a8f9a37c48fb02bda", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5ae509e3a1d4b1a609fa4040bf5b403bd2077367a4fd1a58736786262544e569", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "569087925195cca96db88d877660448b2b37adbc7740602bba39252a00762480", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahckamcamseas\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0236571eedef88f41b17e150eb6fd31c99b8110ffd0f2a9d7ee4fbe500b884da", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuasldvalsckasm\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "da1672bffb2298f738e15907341c66d09ba835846164289d19ba01f42844b72f", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "71d8193038e3a0b1d0d73d1a7c3c6391b12013ad21f54a35d96e9a40fad35d64", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "82b48158d2e6bbbb75688f4747d07301b1cdf9dff943b77d5c65364f3ddc7227", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c494f0caaea0d7e345bee5fceb24af859e9832f89ac640042b42fcd1a57001da", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bf1b7eda2c642a16e3771e82f1983d3df030e0dce38602f2ae84a31bfde21330", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8405a46380dc61d55075c3eea8806283ffc26694fd90f501dc21b3c0e14347a7", + "regex": "(?i)^https?\\:\\/\\/streamcommunicate\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "377ae12c1020009b20fd3f70a15cffc1a7ba37718f89381ee21320a791eec861", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d71a846582def6e69356988ef2bf245205a7d9e349255a285229fe517a05a2da", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8d172f9285f165b4b29ae0fa0b7488495966cbea9b37c07e82a12d5538083ccf", + "regex": "(?i)^https?\\:\\/\\/vnlhpjhjgo789789\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4db77acccb81c11c24705b241256a90ff7c15a9d912526dd5f2edfd51db4c9aa", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5bf9305ed1f3c948a2e3c2a3013b51ffab812091185cee23c64c313ee8e29843", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfyuakcamsckasem\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ce55014c6992039891a0561a0a7e882aaa5f1601a6d5084c9d52ff1593ee6aec", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsadutkaslcaskcamse\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8bc24437c736a54b4bc743c267f6e4bd809ade8fe067ebb2eb10e819d2a0a71d", + "regex": "(?i)^https?\\:\\/\\/46456465465\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "4a252ac71088fe94eae81ce41dcbb0e0adf1dc84e1416bcea8204a19b3a60c56", + "regex": "(?i)^https?\\:\\/\\/mloikoikoi789887\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7971fa259b368c75c4c057d184c24c64932e7404e5ad5bdf3b1990ed0d616ac5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfyuakcamsckasem\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ee64ee15cb5728624b1e7e3fe6cbdaebdc730324a4462ef885173add6d67ba8a", + "regex": "(?i)^https?\\:\\/\\/ljkoikoujkiju798897987\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5137d57c9da8ef6bf9ccebe45848057ad682d53a907235fa44fccbe023f03ee7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "825bd9017da5095607125774dc0d482f9bd822725fefd7cdbd306ec1e6fd42d7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahckacmasme\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4daee85164c6788a194293e37d1842e73f312ced0d7b5240a9b6296087f04575", + "regex": "." + }, + { + "hash": "c148ba9f1ebc25f2658349e5ddfb527cb58bfc5dd6a46e22322ff2a57f765531", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkascmaskcamse\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7427c2898c8d1f354ea5f029fec74495396a0f6fd2d55aa71301e731e3cec4d2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalcskascmams\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "51389c9cfaf99ae18522ced0e6ab088a3c5a44ac05c4b3caa707d6c63174a2b0", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ba7c130e3ee2e8d604ac68d619758b4d2a9b39feec8f2fa9733ffedc1bd7bfd7", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "74a8eaa389056841e80aca3f81bcf40f929b87840bd5b5b3207b62b8d994c4a6", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a1597c9c5fcb2bcd96e02d8d19df09643a7e5bf12906a3e42d1d6a0ec5bffb98", + "regex": "(?i)^https?\\:\\/\\/www\\.sfdxeh\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "de28404647769854f1b373feb4e00714f9c83c050cc94c79f66f2fbf57508ae0", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ff17f54cd40faad9c06e57aeec1f9f0e083044498cbb0fc64d5b09ec2121c7c1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "aa9c8dfcf9733e0691aad2cd59d73fbb586e59f6d7bfeb6bf5a18cba04df9ff5", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c95722e8b0d77aec893acc34fa826ff6cc450c7330012c277c600fc827b04f6c", + "regex": "(?i)^https?\\:\\/\\/www\\.nhtzjq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c39d2b9084c18a81451304ce39d289871107ed6d916387f70818baca7a1a824b", + "regex": "(?i)^https?\\:\\/\\/steamcommunicatesl\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5461b26ba3c9117c603364ff4a388a4daf2c4eabbc8e41fab26e5b4aaa76325f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsduthckasmeamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "79cd5944fa1b91b9d73b55485c3ce7891c29acbea6b0774b5edfc48350a346bf", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "2a1997b3405cef0d498edf0fad7bcba6e20f29cf0f603778df5e2a130dbe0941", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakcalscaksemase\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "20f767bf4758a2623671592ab4ea91b6a1fa27e2b28dd66d34a14f1503dfb51c", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8bdeaef2720fd17c67b6d98908ee90038002182348af85e30af716f1491d0293", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d07f294f6e9fd686f05dd9ebac0580461e9cc5abd3f9de98aca3d687fdf97be1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfyuakcamsckasem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "aa445bd4b18a52394d15ae7fd551c3dc06282509e5acd856a506fa9706471713", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4018abb1a6e88c9315d23db2f3b47b10abcca6e9ce2fa23b28b81f1b70793f58", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasemas\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8344ec6e2d24fa65fbf53215cb5de81bf7595d4dade0e1ef15267e818fdfeb3f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "420281df22ac825a1d3f4ad840a8945a879a384eab3fd84e892e1dd92a4cb077", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e24eab7b405fdf7b6caad395e9b5eec6551a6d2e93da1189419cac86811eaf97", + "regex": "(?i)^https?\\:\\/\\/www\\.afvnht\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fe05380aac389fb4c6bbbdfdbcb9c34d1fbe88f86cbc8df0aad4330efefb0462", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5197d8662bbc4f9064170768855016bf4078adb5d6d9e82a2a8e9cd14a00611e", + "regex": "(?i)^https?\\:\\/\\/steamwordl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cfc9ef46bb20764aab7b708d2c8622ab4ded863559f2ff53f3164c1db96f4abc", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4e7afd8e8e66e945be9bf13efd2f80b8308378f9d126a9bc9b3af78ef77e4aa2", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7ac5c23f7fb6fa14f359397d576c575051016e557240eceb2898a9c5e3c020c8", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "df825ad3c7f261a625bd495effced6f24897deed5879ec828beb059df99c2795", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b59997489da5d321766657b04f39a00943122e3ae0545f091cd9700c9ac67ca5", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "63fc228bde70bd42ff55f8e3fa69662deed08caba6d348e96990f9b974480733", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e584ea97f0a8b42bbd84592139afc5e7ff990fb1a2276ab4a7fdb5cb98ff5692", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ec14212cf19900c43feb182fa4cbca660259f2dc1c89b2306a303f51bf7a94da", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8cc1c3aa307c724ed142771cec9715a5363dd844e831c6cd34c0d99700a56912", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cfd1a0227af598116b05b4e1f33021c3338f9777e911dd92530bc56274effc9e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a68f97304ab563f14349b26736d84f1fad56127c69e7fded15310ef53f7276d7", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakmdfuahckacasmease\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1325290b3c90ea33827bd3ae76bd15eedd532a8b432b450af118357ff68249c8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "482adfb5325cc16ce9db2a941a5aaf0f51c8e71258d062fe99efec60823c5f48", + "regex": "(?i)^https?\\:\\/\\/ndrgmq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8715fb5ab6484a22ac9ac0ebe4f375337611d621b3dd490db0d24b75d8ea0f25", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c383418685e5f96e4493036b64e6fd1bc5e9014045fdd65eb84af41d3be12e96", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "134efe0814e2a99a4fa83dc0cdc037f1389bbc0eb0cbe5c52e7ee327a97befad", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "7b401c7263a096f654bb8cef054d22c1345663a8b79b92938e472c134b57af78", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "61c377c011a478a713bb0418d5234f4195a3dbef97c1e172db3862300f01af1f", + "regex": "(?i)^https?\\:\\/\\/xcvbxcbx987bxcbv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e96a641053b31e7593ce42af1026c94f1b885542d1f6aceb9c4adf2aecda039e", + "regex": "(?i)^https?\\:\\/\\/feftfffhhe\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e505823a7866adc4657271d56a3debc6698422e0b37a0976336c888a72f51cd6", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "387d41b5a3e21c9142affe7b5b51e15c58793df21a614b59826169691d3ab84b", + "regex": "(?i)^https?\\:\\/\\/hot\\-leaked\\-video\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "00356ddd45877e0c791893f5e31e15b1edce48fc1f1c61ef7883fd25f26b4090", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fb7d0223694e44e9bef481400c636984985a82ed33f1a1a6d5e1ab22b667306b", + "regex": "(?i)^https?\\:\\/\\/25kjlhoihmjjoljko\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "943c5273eb5bcd9bddfdea08d57ac45769fb21f30f94784fa0f8e239e9671299", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyuakcaskmcaksemames\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b24673715aa2fe17dc2b0d310dc7a19b042a6ad12f0ed4f1ed921f2866abb6e2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthackacmamsed\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "450252be46d2f39cd537fc0f881784d886558f1eccaaebaed696a50b8a78183f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfykalckascmamse\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "25baf2d08d0ee1db74470ea32db93fa675abc5ecba5aaa41c6269c5e70606884", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "25c56de787c66dbc8f14fd5aca9c1866929856b0583b9e5cb0c39db58e9baeaf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "424d9a5fc03a7d56378b37e8d6ea75d82764571f20ffb5ccce3d05ed19c088d9", + "regex": "(?i)^https?\\:\\/\\/8975465\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f8954c3ba792a0424e2b532a580b85025e0c818277db4671f6476621244a2ea5", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5b15cf44f9c5ba9c920ecc69ee963aea5fb925f2688c45a7639c1a6bde07f3fc", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "84c277b34e4f21bdd8ec806aa9ecb04339c67b0d8844bf7dca8ace2ffad95344", + "regex": "." + }, + { + "hash": "fbf0f2a5cf217a1d4bea613dfb67cbe176806817fb5e471363d958c29797e85d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3fe431ac699eff9910f1482040f60b2c00451d6d26a6362ae7111abbc74be113", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "caf16385babd75a7fbcd6c63926b38180773e34c24cd5787470ff512bf2a2a9b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "149a3ddda7a5e844fee0eb43521e7b437b50e1332603583ff4e7c7b50dbec331", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahckacmasme\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "89a34202f5ae22977e41a13cd7532d7542d93e055f9f987a3f488766abd5a4ba", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "de9a65360aeb73ec0f16f5bc7877dc50096b0202ce27315ab93cc0585a6dd03b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuykacmaskcamse\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e65c96b5dbd546470b3a2e615b2157c5274a99d824b535e8d558593f363bd29f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftaksclasckamse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "09a7b7e50bca800399acdc60dd2e264260b402097f9771afc918c0f95001dd49", + "regex": "(?i)^https?\\:\\/\\/xcnbc7n8bcvn\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d6439f8e886fd27ce8f76bec17d139f140843052d35d447e87c9fa5521d21b58", + "regex": "(?i)^https?\\:\\/\\/vnmbvnm78bvnmvnbm\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cd74fd38e584e96a111e0dfb88422cf7705ddb6c59381d7e4a5d9bc60c393cd7", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "302e3dd01398d3eee6cbd67dce40a08f8366d84cd355671bf96906a991a5cba9", + "regex": "(?i)^https?\\:\\/\\/8975465\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6042cd2284544fcc5ccbfa9a6b03b6e96d6107889cfc6bf70974df6b458bbd9d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyuakcaskmcaksemames\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f22a4e0d7b12b0f52874f8e08cf7d14425585d8e6161370c1e4d86f24b68c370", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8c5d9882a18b399ad7c37f953c5629f1529096076b0d46ecc6f9e1985fd44331", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b041fa7fbf347b6ad212133455740b61859e7d8bf98ca80c559c1eb43da8513d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsudkacmasekamse\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "99d4f360aa40f2bbc60255a948e91df5496847b1b957c2491ec7f7ad937b523d", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "1502017164037238bb74bcd1963fea4a8665725593df85650c06f2260276025f", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4d0b4ce9773d2955d9f7058eed1cc7dc2413e1fd9c98917d021415b886ae6c07", + "regex": "(?i)^https?\\:\\/\\/concainit7878789\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "10f1a28fd4e72a1a991dddd4ccaffb99a5bb9863ed4e1540f61429ed41b09122", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaksmeamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "834f92277fa1bff6c7d5189c35bb3de85afd7327928e3e64d0daa19274eb0741", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "94b2ed56e2a6692726507e749174afc36f44c8408663b59842acf2309fb40220", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a969aec780fd962a62520363844fa1f09a02c25b04169acdb648f370cfdb4231", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8a36046c96233f08a70ffa7cf195cf1e57a1ff5d1ed34d07b54054c6449e135d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "080feec93c455bf01b571982d7be28ff9b0c3a6cdf0db1205f7ae1de194cdbc1", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "48974b0d9fd8ea4a5ec84c1589bad8ee1cab5f02d9547fe0282ab265fdaf59f9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakscmasckasme\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e0fc9cdf22406a93148384fc9233d0a5cf6ed1ec557ac73a0f115575af37eb14", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ebba8706aed99ab9b20f9655c6fc7bfc1444698ce45df06a7fa537317621adaa", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "46aab7bf775b5bea2fc3572cf6b95ed051623c128ab1af10ab51693d6da9fb00", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cc5c1c14545912b9b72c779928827e2d89efb2ef83d17e3d0d77a293403952ef", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6a3eec6e001283d3ac01c7553db564c9908f76203c77a15abee3fb42fe10f8cc", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "97ff9d2b105011ab9ed279dd8f1fbbf436d00f4ec74da08dd2a45640923cd305", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "24d84986ed1e0d7f15e91198cb15092d0cc7cf44a44a805e2717d2391a1ed3b6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1e9bd972b03ea4db6659ba5511d15674d86b6af07a1468dd984fae8afc50f26d", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3adf53e86146c66b5645f277de1fcde020b2a1529f8b208b9165b285dc601ebc", + "regex": "(?i)^https?\\:\\/\\/cpcaosleakmdfuahckacasmease\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "170aad23873de9444372d7ca05a903c4c00acd47075b9a8169ee7ba9634d9cd6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a66e5dccd2f0b8e08d7e4bff40d930c0a0b58dc817558b4fe96258a3e9aa579e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuaklscakscmasema\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1b62a08b2b25a881fec9bb899379cfcab3608e21236cbe7b4132e945becc9d8d", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "317132eb05c45e5fb92ad0a06a4fe04d5bd639e76ff6b4645597a15dc747b768", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c00453ec1ca52182cd7b51d69373581d0d1bd74c29e139b4879183c0ea1c23f8", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "66d2bea7217072a03def23eac6a46adb3bc091992460ccad82fb2e77435c0ba5", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "80e5f55d5341513f9420c4908402f7257177e09e75f9af4eb2d2790804a5906c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "77812d0f9ef44dce780c5db5c63ed45dc2da9aee51894c5c4b32312eda85e043", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "2c540fa88270c4c955241084968ba3a97990a8060fffa5327f6d7da66e51aedc", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8894e716957bb4c73a10a23a0e986e6892878fe67462bf5a4311810472ba05f3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "dc77b66e28b36f7a338dea9ca1c040f478d86bef79ddc1edfd03c6e24be52f3b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1778dce47b3849e239c2c7481f410c39c019909e199230d17d2fbee5e2ef6143", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8e7cbdadd7a667df116ffedc1da79ef8cfe64cb5c4554de35aabbbda8d1ba4d0", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2bf5e295c501e6fbe96e4c5d09907534d74141ccda50be36164fcc892dff01f6", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "41969995b86760ff95a1c108372378374a44ae177d675e94d9d9c2ac97649f9b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuaklscakscmasema\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f0ef2902c61e046e9fb71e7d82b1b6c604a9f930b7014f64019a3def5748d768", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "eeb532c573fac8c0cffd2d8fea068e053a832aeaffbb7f1aa0cb71bfc3f89fdf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaksmeamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "73a6442e68f79526df2ae5e4541673c9e451f381357248171df77fdf5998aea9", + "regex": "(?i)^https?\\:\\/\\/www\\.sfdxeh\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b2c8c60206e67afd9c89c8b4483069d5955eb11de27115f300d336d924f5bb7c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcalsckasemas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e5043a82996611d8fae0c60dc122f6f9b4d5ff5252d84a985d76bf8ce7aed6ce", + "regex": "." + }, + { + "hash": "2c0856a340eee09ab3765e35a05ea70a62333813aaa0f2d9d24e6788faac4234", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2c1334f437bbd7457e4c24c2e533a34dbee24cdcf5bdb54111dd03c2a3ff2320", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8848c13a29a6ebf8187e6dc2a2f11900612aa26bfb43b1cceb0a7ad8ce2f5abe", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfykalckascmamse\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c148f74ce71e66d141f94df647b47aab567b8729c3ee7127e4038cd5cd151778", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e29006bace65ba0a2b2760cdbe13e5c26ae6321eff0eb5fb86658f32bab554d3", + "regex": "(?i)^https?\\:\\/\\/8975465\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "208288db35802fe78ee3896fb20b70e635e26a917fc0ddb238e0e261f8029e45", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ee6d9b4b455d9bb98d16cab0a5d79c72a31ed3134f623c1d35d2e8b1052bdae6", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "44e0a27d5bd16de6f6d41fa2e94e985fe679ab4ed49d4fb31fe159b34d8a82f1", + "regex": "(?i)^https?\\:\\/\\/bsxbfb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "34ff14be5bd066c26f5faa9cb575196c5ab425b4956ae40021c48292884fbadb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualsckascmasem\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b816e2934994d29443df28dcd5857e34ceaa7a5680d0c5d497bdd4d2c680a3e2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "bdc3d31581438a367a496aeb75f850ef02819e06756acbd65689e5510102ce32", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyuakcaskmcaksemames\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "9cb86752bccf2ba02a7c8ccd59cd1bca75bb0ea9c477e854af386d301b02a8a0", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9b59eff4a530aa174b8a22e755f68b8101d0eaa1fc5c38f505ee07542247f8c7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "afbab89e9196da8dfc8ac029139f5024143e52f9b9ed6939ff1bd3ef9a414471", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8fd302555548f7e26747f29798af4ea64c71af15960d153796ce1bd01815f2aa", + "regex": "(?i)^https?\\:\\/\\/lomnoijmpi9999\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "71c6f509adc1fa8c32bd9d6a4060ec49cf50a0c1ec27fbd3ad9e2a3d6565b3bd", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3d11c6ae1232bb1a2294bb110f59a8eaf14d68ac5089a7ba258391d0ca71d18c", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskcamse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "58268c67cbcc4eabc4152e002e118dba6dfd67d366273660c67df71d1eaa2b0c", + "regex": "(?i)^https?\\:\\/\\/qpoiakloi4567\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e9cc0b36c7cd5a124e24ef212c616c012e0f4289d00b3e5bc532bdbc2f0e7533", + "regex": "(?i)^https?\\:\\/\\/ocpasoealcksdmtaksclaskeamse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "dbaec9e879652f9f4b8f239579f7b444c77c320928625336151d2fbcec8edd4f", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "4db7c1e4c036364f344e22f93a73ff96a564f27bc2112753ebf0787a242a4da4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "913617a18e87e09fe801128342a9b51763bbe0790f4e6d7dc090810eae7cc52a", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "aca82921016a54eda29678da3700ec047044d8fd1b73da0e7afc3db4ba09f12c", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "851c0be83f3a241a1d6b17237e4b4ba68bba350a9b1ed5357160b1845458a6ad", + "regex": "(?i)^https?\\:\\/\\/hotcliphotviral\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c339ef6ace9d72e105323680ef67b7590f054acfde5844dca1c0b0ba5b00c9d1", + "regex": "(?i)^https?\\:\\/\\/pcoasleavmsdtkalscaksemasme\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "60012cf4c17e1e5b9b9ed3d93d4c1e3532348ed55bdd338ba80d25bf70583335", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "aabbdb12f746b183bfb896cc30e6f1ec1b822f352833d316b900ae3aea58ec21", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduaksckascasmeas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a7732510654dc9508d3bbc270f9e14d14dd4f2bf77f7720bb9f151b7a829f0cb", + "regex": "(?i)^https?\\:\\/\\/uhstsyhsffeueienejedsuhsehugehjegeh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "39b5a04493b368702848c2c630cc5e6b5d0eb6538e04d906371ec1b0788f3324", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "900147eb31721763e1867454453bf3fca5e2b347aab6ca6ad9bbc0835a22aeaf", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "280d217a9a67805951082f6adc942fdf7e2d3ddd61dcc0aecc796e7e80cc0709", + "regex": "(?i)^https?\\:\\/\\/magcube\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ece48a0ac77523b1a8d4596c6d88a4f04a2c037de090e2f35aedc5a3cc3aa2c9", + "regex": "(?i)^https?\\:\\/\\/vcbmvn7c9m87nvbm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f90974c7ab9b1ae845410c48fb7133577cac51fdcd806621faec45e473f92eb5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "235cdfe83ff794ae4751bdd007800d1179e544b7d235083398b9d9c37b83610f", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2306fafbf32d052139c8925a4b8da37bd4690811be58c4068027a04831c46790", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualsckascmasem\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "9b575d9066a9161ca797d03321cfef6e191137df0bee3eb127659cbd235df1d0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c989325a9b27d28f963b30148cba0cf05218fb7393bf5ab8fcb4a9b791a476d5", + "regex": "." + }, + { + "hash": "e8763402c3d02e3f4a7f62c8f11bb5e788ad67c1dbcf3ac39ba212d7b654f5db", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfykalckascmamse\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d6a187a5e1457cc89a04d8b504cedd639099035214b428145ca00537e25f89f0", + "regex": "(?i)^https?\\:\\/\\/instagram5062\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "11bcfd90c16aa9a86c317039cd9f9aba9c9bad0e23e5b4df7b904daafdb4a839", + "regex": "(?i)^https?\\:\\/\\/qe521436512436512\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ff04164822e9b96deeb391525cbd39b8aa58c42ec1a64d65d228dbcaf6ce4fe3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdtuahckasmemase\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "317d6f15848e45ff355d58e949da971c55fb20e5a7b08289c197f700debd0efd", + "regex": "(?i)^https?\\:\\/\\/streambookpublishedltd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3c054ae370c98423256a3ccf1df77d61191ff73326ab6f623464ef5d3adf0902", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e46da192d09292a3b8248b5edf1fe325b01c6524546b90d6534f8b3756990f11", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e8fcea101fd55afb8520de564a09cccdb690a1fe56b93a49be12eaf42526621d", + "regex": "(?i)^https?\\:\\/\\/bmvmnvb3939393\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c6f92785f903cd18f7ed8b2aecfd04c75b2b4b140c09938b18521522f762450d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdtuahckasmemase\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a03335865bbc149b201293cb34153886fa031a90217e994ec1730c7ef9fc344b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6edcc9a036adbeb63134cfda0aac170ebc75a2dbf91a801babebb8a5835652f7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakscmasckaasmeas\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b46eccae3c0d368d74c1b538636582575e28288ff3397be261847ae4d9d42dea", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcalsckasemas\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d9d9054a1df015055ca83b4c34b56f0edea879b701232c55fad3402aab285969", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "729bedb2ccab11d3e0677259ef73dc58fbced1162df5407fe82c72c8d7d0a8c5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasemas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9ca0fd0f36133b4eca0508e3cdd3f2eba2a36b53cfe6d7e46a979bdb63a3ab24", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9e40270d681ebabb69d59ac61608be4d30b544240284d7ffbce6971395ed4555", + "regex": "(?i)^https?\\:\\/\\/streamcommunicate\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7c817b009e5622c103c906f915c70046b44482bf13e65180590d8ebc287a9154", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "25c24ad84a8d561ba33808fd32b89f75830274d5311261107948af19424e2571", + "regex": "(?i)^https?\\:\\/\\/ncfgmh\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "576c9caea2bc44156963c987f157bb6bb920963b2573dc1b9269ce3342b62e5f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "711624cda5ce2ae3aa7e997a193f13a3391bd97e79fd52c4ca2ce4f1c2a1a171", + "regex": "(?i)^https?\\:\\/\\/lomnoijmpi9999\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d6a7420a0ba342fff1db20269d4eb1cade04e3f66418ec6bc61e3d9fe28f54c7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "633f84a7712087838db0c7264df2d0c65fb9a3b8813c7d58a4ee11239d28dcda", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d9d96edead5ac7f7e0ec6116638fb640a20b29d2b4d27e3179582e7d04a3ff04", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6a708e8c03cc32227bd115bab28227c46f8f3fca8aabb03eaf5b8a2c677e428a", + "regex": "(?i)^https?\\:\\/\\/90751022\\.vip\\:6899\\/?" + }, + { + "hash": "1ffdbef8be0f3ff20dc86508ade65c2ecaff15bea7e33fb5c4694ff496b08fac", + "regex": "(?i)^https?\\:\\/\\/steamwordl\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "665a35fcde329d08ebcc0968bb37efc163565c79fbfc45f8468c7450f44ab3e8", + "regex": "(?i)^https?\\:\\/\\/steamproductionsl\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7173c4e8389b85887aad7ad3e2440b48585781a2073b4797359895a1a29fd8e8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmasduaksclaskemase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "49f6cb7ba1b12c1e71bc32f0fbd3672c02bc12c71edca082a7d22de8a8e0fc35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9973[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "e9ac7182ddaed34f6a45012f14ff4da48f9ac2dc59ccb6c01566b309e51d8a35", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "de5f5ff86edca8b51212c46a70837e54e3d79ed828246daaceba196ead809ee5", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ea0e7c525e358ff850746a3253375bafb4de14d2ec6891b57f3fc6fbbd7b17d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "29928e747b2ec1b4d38e7a8c54a67c1c4a9b198e2757582b4804277bd5279f74", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9755a19a3e431966c3808ff8cf906a8cd2f134cac5e06f52795574bd6e0f0455", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6a925c32b7e22abae6d1a368139e6c54e74bbff660befbf7f949d0bf3c5c8332", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "11c0e22b7d8dcda5d00f55ae494b367faaa0c8620194270517764960ae4969e7", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d2a8c9f157e4c2112559615d16943537cc6d66ac1c245ce0c6ed2e2e94f2b0a1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfyuakcamsckasem\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "fd2d2a1630e8a9e4290e0e03010b4ff0cc1ba24355fe3b6136110eaa5873d065", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1751b24f4aa2397d0fda3f7e470b7fd1cfc9c411666c1a9e9078f64ea1822ee8", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "49f6cb7ba1b12c1e71bc32f0fbd3672c02bc12c71edca082a7d22de8a8e0fc35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9973[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "57d203e70a684e083d330bd4a736cce9d15b008ff4b73096debba1bedd6b3c79", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "50ca7fcf6ea66a2719f318e1493f5ac171cefd5e83e07438fc94cc8af3435ecb", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c5a7e82ec38dcedc3cf33c68da85d5c9e327cb2f9ef92f2c8dcbb4d1ef1322a1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaksmeamse\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1eaa662e6060b40a7384e28f71c8a90b4ff102db27df1eb37d2f6affd53ab1d8", + "regex": "(?i)^https?\\:\\/\\/hottodayvideox\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5bf36fc100460d735e1dbd4a3e9baf3c8c0f418bf5c4bd02cfa502cce581ea43", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8e398b60051e535261f7f37bdfe619400f82b3e3e964e96488ff9a5e17e5a61b", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkacmaskemase\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b0fe51d608a2781661049199629836a31531b23f8e28068466a533337b9400c0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutakcmasckasem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "dff458d327c0c555f035ff5038b491b304577078e593ed18877a69fea67a434c", + "regex": "." + }, + { + "hash": "3a80c2903c963cd7360068e2101ee3b123625fbe30271cc2a4fc90cf4aaf61a8", + "regex": "(?i)^https?\\:\\/\\/765765798\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3116cee6074435a25f0ba303e43827a8b31dcf3852e99a1c8070d22e9f2cb54e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmskdfylasckasmcasme\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "05d584a9c589063fb148583e286f610599f6fcf2161f57d8c47ca40c95bda257", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv2\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d0a953f7b395aae5203e49cb4d34eb916a66094ccb486df5f08565c90f9a62f9", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6944118ed2fd47c24e6db9de97d800934daa9816346b1992a1ffdb24ea59e774", + "regex": "(?i)^https?\\:\\/\\/www\\.sndjxd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4418df468c6cb5f82b7bfb2795183d3a4c20db5b735c26b4e720266a89f7950c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuackamscaksemas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9e9521c3cd1db1f9b501ca7399e49749f3554a3ab3df41b8fa9bb1f0027c3166", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuykacmaskcamse\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7e06a54b7dae7fa2148bcc724c17c407bd3b1d688fe6f51c2cffe805d829798a", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "348c1642ba85e6c20872a78a650cfdf1000972abc25bbfda98e5519647b2bf9e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6ce4a2d6e57ddc0211e3900ee065b7c5ecfd91af90a384cdfe6009fdc0e1f562", + "regex": "(?i)^https?\\:\\/\\/tiktokfollowersvip\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0a18df97775e92e44882f7cb73deeef6aaad781c6ad29d1cb037dc688d54fb18", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "adeb06fd38019bac93138b35f804c164cda3bc16f864bf0dae6bdf37168fac8c", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9e5d2b68fed43968f7b2ebd559cdaf52fdf366724577ceaa92f5321f98bac559", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "dfbee35809c24cb874bbced70c346a5bfb569b667f92194a8bf5ee31aaf03a1e", + "regex": "(?i)^https?\\:\\/\\/hotvideocoming\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "09df6cb0ee740970c48060a8e7dd2916d8ed41a4cf2e704830fb4584c347447e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutahckasemasema\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2f7ce4ce9af2532c16169772a61a63a51617a443d5f753f876c1c18c030c6931", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lists[\\/\\\\]+lt\\.php\\?tid\\=fElUBAIDVgJSBRsGXwFVHgwDAQYdUFsCAR9XBwQNWlVXVFcIU1JLBgdWBVcABlMeCgEGUx0FBlsHHwtXDglPVlZRUwYBVlMDA1EOT1pXAVYBBlwCHVdUBlYfBw8GC09aUFcAHQwCAwUDVlUFXFIBCg$" + }, + { + "hash": "f7be2bbd0d1ddfc5bc53ab6e25cf0ecca7fce934181967ca156804b029e4f207", + "regex": "(?i)^https?\\:\\/\\/1231146469849\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "480a3cb22ec4c55986cf01138537390716f39b4929a25669e2a528453bcc55e9", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "807962b34216c134187d4adf8db11873d964a40f407b5a6120aad1e79a09d77e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "74f3a29da49cddd4bcf7440a31b2d0d62fcf5293aaf1d415f94c0e7e20087e06", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "814cfd165dc0f293a6103da31fcb69a71948973a93b4e65d381ea474cee53b42", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ae9c68bad9dd08a7d5088038f576924bc16f4e285f8fa5bfc8882e67f65c6e1f", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "eed48166aa4a234a41811702a8920b3b933221f2d395310520980fe18169a0ea", + "regex": "(?i)^https?\\:\\/\\/vnbmbvnm897\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5286aa34db629f37e84f9f957eecb46604f646ba3678096d0c4b1c7d2438b879", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "21d9b2fe69842c64ca7bf273b8a3842321bacaa73dd6216321933975de8d700e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+agil\\.html(?:\\?|$)" + }, + { + "hash": "4ef168f4042044e877c0a4d93ae8fbd4fdc6b4a8ee370a328cfbbec419c5283d", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2f818a64d5fef332e6a89b74710510f22c000df1295b5dae41dc70a54425a594", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cf25132b1892c4c4881bbd4639d0d14a99847bb461ac81a95de73ce72d90389c", + "regex": "(?i)^https?\\:\\/\\/46456465465\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9cca399e9ade2e6ecd6a9e05f1d7d4fa7307274b1a93aea855e184b09509216c", + "regex": "." + }, + { + "hash": "8b8b09b802a9bee7c739447ea01b026d62b55f55a0a4e8e5b96d4ea4056a69cc", + "regex": "(?i)^https?\\:\\/\\/xvideohotx7\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "44edefdb2c52eca62e4a2050c7f0cfdf3ed859508511e44064e0368206acbfad", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "068ef21ea3ed8f24cfd1a0162032748b37a43069a1aefaf02b5a1340480d2e08", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasckasmea\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "39a0134004a5ec0e371fdab39b8f5617fa86ae72868ef12a5d2cb2c17b78cf42", + "regex": "(?i)^https?\\:\\/\\/pcaoselakmdfyuakcsaklsckasemas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "5363cfc8180db5c2e17fd3fdc6c2fc81787e5bd2a3232a3f847840a9f30ded28", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "204948f15556d82aab4963dc4e1fa9f66aeaaf15481715e76c64d6913f3cdff4", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "33cdca67a40ba00c5b7f8ceb7eacf7cbd13f9efc8387172653733a6679a47d78", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "aa803dae312c713f8c8f3854d23192b75033b5c6d16986b2f4d7e7a7a534027b", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ceeb9065e3a4c66828d7d9c4915c2469948df52f263c76f2fdb3cd6034899273", + "regex": "(?i)^https?\\:\\/\\/www\\.nhtzjq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "31c3e07d21da7683abba79956870dbb898af1ed0b21aaf6413aa5e826d7ccccc", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a4ba147c9953b77ad796ac21be6601081d5701749323ca52b889387ffb0cf5b7", + "regex": "(?i)^https?\\:\\/\\/hnftxb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "eae542c33f4f09bdca4011a9e69a87eb9cd9cfda865adf13346959bb3af2552b", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv1\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8bc5b8ce4462ee01218f16aebcef8f354702a0de9430a7b60afb3dc334eef5d2", + "regex": "." + }, + { + "hash": "f8d1d81cf8f2aaf8bc8150ff2d7355c5590a573d1c46d0b8bc80ddd136cda4f4", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "3da088f9545fd89bef7feecfdc72df04e50a90d8107f5d3fbc1f3d3b25aeea6a", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7ba7c252a01f9935a54baefb3348e5cbddf5c741163a6d4a8ebbd3e3f2186924", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2628c800a1dd42d47a9feb4fa9db14dc6b577c67478c960d21327703268b51bf", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "056c64f7d2117f5739191412d5f11b4ae9f5c8c7e26b7a385d27f9e2f5750225", + "regex": "." + }, + { + "hash": "c2ebccb9e31f97c8a3082ac8e97626415049fea02af7e9c6296992ecf672fe74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ef574775e7f8914f6d95d0ebb017f0042d064d7e3d4261cbec4f8f58e1e4474c", + "regex": "(?i)^https?\\:\\/\\/shockvideopinay\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a570cdb7dd328afedde37309935edb6b33076c00c9640b6a19804e07439afbd4", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fd4304b4fb4725a2ddfa7b98fa0031890fc736151cff4b14b7e3e9cec658b2f3", + "regex": "." + }, + { + "hash": "821497bd279e0dec433f89ea5ab917558b73462a0ae8525cea99b2dde7732546", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d3e69226c09baef24ee3def3d142904ce0944626f4c6aae95c62978dcb414cfd", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "86b9ee0b6aeb2b7e8b4103f932fcb4924dd0a0af7fb5ee44e6ee90c8f9731b7e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9fb0eed5f4e2013cd3f4b54452046894ff484724abc71c2120aa74db0b3d5dab", + "regex": "." + }, + { + "hash": "d77be728f46a727812b9a4636bb1b5a9775ea7cf807eb0218258a8c2f04f3d79", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "81616cacc62ef687372ea8a11244f0a9c49cb1f91a3aca6a722597ffe52dff5e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvksdktalscpasclasekm\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eb6b973b9155d8c7a3071eba4ca5e907827a7ee48978feb1c4e981e11e2db004", + "regex": "(?i)^https?\\:\\/\\/mololkloijh7789\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d36ec9228656219e84dd4c70eeb8e81f06eac3769c81123af5d3eda69678521e", + "regex": "(?i)^https?\\:\\/\\/35715947658\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "69208895c8c882229c56fc5d65a5a3977e3f68ac037141e23bb19b4604012328", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ff7ae009f349a4e610e4703b1b1d9215641cb246ab7d075bb654822fc8036e15", + "regex": "(?i)^https?\\:\\/\\/steamwordll\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "76d899750048dcd1eae1bb629f91a096a1e0ec8e995e8e08592ce416b19e3240", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b770d5c763c450b5b73d510201845791aee406e512624d608ee1053ef54698d6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvksdktalscpasclasekm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "80e5c842200bba245225d2a3b8c789ab4ddddc99db16d86bbe794ea5fc40c74b", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "113bf9c13206e5cf59a3962aa18d2573692d7d61a3e2e9a1761c1ca36032abd7", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "becc7970956e7ff6e25ac32b556302f4fa8a4df94320469989675e54201cd903", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d8b2164cb209fcae4ec8e87bd882713535d3ebe56b84692850418845e943a693", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ca6edbcd4bfb1e61832a1bb21fcf3669f77c242a194ccb1cc086266da31e6e2a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcmasckasmed\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ac72c947c16dbd74f1374fdd30c335f3092ca039810e305482e893727f3713cc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "18a7615101c813033c4c786d18c42c739d04ce526519d6b9850266ff01062ad4", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "048e2ce0aa434b1a3adf1f4ac5974840fae2da3d7471bff77633497e9f2c9d35", + "regex": "(?i)^https?\\:\\/\\/vcbmvn7c9m87nvbm\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "eda5c46f21e38ae78770aebe51371176a4e380844094c3381daa63fcfeff259b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuackamscaksemas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6a8c14c06581ac18eb097ba2e7d135d8867b8fe8166cd7cda606685e41b9b2b7", + "regex": "(?i)^https?\\:\\/\\/bvnmv4n6546\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "28f8a9b15acfb1a021cb142f3f4d4bc5ec390711d6252a7234ca078d11bdc1a3", + "regex": "." + }, + { + "hash": "964298c74118e46f346755ad688ff51fa6cc366a3d6f2809d60db430b7b49179", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "4991d8c9b3c24e85f3a20c3200b7495bae5e76a91facefb6d56612e89d18c8f5", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "03617dec38fea95952b50a0f76d06972ca7296a37657cb94708505696fafe415", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "62b03dfa4b7a858a8c15c0816da6a002c9bcc92d20d754df5c34dac585c39a6e", + "regex": "." + }, + { + "hash": "44c682b9e717bcf66147f11a4de355e6a5937e62a1dd4536d37bfd928974028b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalcskascmams\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7ce3a08824b2f5a939838526ff506bab4adb28dd5823ac050fb2c58ec709310a", + "regex": "(?i)^https?\\:\\/\\/mololomo4545645\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7375ed71cea6ada06ed4f50f66680ba72551eaafc7fca52201386a9a976ce0fc", + "regex": "(?i)^https?\\:\\/\\/qpoiakloi4567\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cc779ef08149830085e2be4702bcb51addc331c5079e5be9c59e3a74f938379b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "8310b9ac2c1403c188ca6df1e1670f9077bcbaebfc4edb04a5deef8d0ad5598c", + "regex": "." + }, + { + "hash": "5504cb3e9840c79e33e9fa7d78954144cf251391daedadcb16fa3bdfe1fc208a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmsdutyakcmasckamse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1231a4baf5b4cc647223c3f7f7aa9d41f9475af6650f3b59b784d485ad70cdfb", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "023abc39fe46f9a112d09366b9866983f9e773f90123d16e64a2b95987777519", + "regex": "(?i)^https?\\:\\/\\/mail\\.noreplyverificationcoinbxaseakk\\.147\\-182\\-134\\-224\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "aca86627f336f9c3d56b2f85b77091ae91f84dfe01ac707dc695db9cad8cd4f9", + "regex": "(?i)^https?\\:\\/\\/pcoaslskamvsdurlackasmemase\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a88b0b9874343c0549adf122b84a21b24efc397188f80e53440b08ac5f06d22b", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938ac468fe\\-ea15434a\\-48b6\\-4971\\-8f16\\-858a7cf47e04\\-000000[\\/\\\\]+OmR3sYcxzX5aOrs_C9Z3y05P4MU\\=402(?:\\?|$)" + }, + { + "hash": "c0104b21b9b68dbf3db80af5e1b4990992500caf376802fffb081a3a4b2ce6ee", + "regex": "(?i)^https?\\:\\/\\/streamcommunicate\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f903ccacfa524d304a8eff0cad914662a01a6a323b983b64874a500ea95bd74f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakcalscaksemase\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0cfd0ccbc7a376794689049aef6b6ae272175c601d5389a18e824279716c29e2", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d03b3b59a8488eb7abe10b499c910bf525e455798f6123a0bb5b1b56c0782887", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0cc15acd33ddf414c2ee1b9d253b4f2a4c3588833a66001d99510ae537aa4d8b", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b37c65338a695388afbdefe76e099a3eb7d2cb9cd75f7b23d3767348f24278fc", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a57786daf3449aff4a05d6e9b5fcea816d5e023bec8ff6beca44ae571ee5e622", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamcsuadthakcxamsekasem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "11d10351fe1d345b27deaaceabbbe9632f5a5091ac6424f7f9bd1ac143db3240", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmskdfylasckasmcasme\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f0ad5bce01c90e05f6fd74040f356482d15aac1551052e40378fcd39cea5754f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4ecce77cfab9188b9dbc4cdfe88f1f0b53cd4eb4acae65e803b6d0a3bb4e2bc9", + "regex": "(?i)^https?\\:\\/\\/concainit7878789\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cfc898a9cf7c0dd6d2d4e2caab065ba00d29d57a287385e976ef57bc2657fe8d", + "regex": "(?i)^https?\\:\\/\\/bvnmv4n6546\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7f7ceb8e24ed1899bad299ce17fa060c3357fe554f72e14f1cb0a124e6a85119", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "844331207e4af1b7a71da9d635b5d63e3afe27d53eeb45308a7b14db179979be", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "15049231a5e55a24e411645205c5a85d84a760a753dfec4fbc83c1ff2c9d0691", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cfa677231b0140c45a23dcf714ebd625e47264d2a81c08192b8d88bcaba82f96", + "regex": "(?i)^https?\\:\\/\\/colonhue897897897\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2015fa25f8c0fcdc4c8ad545207d31c227128806117aeadb6bd2513c223acebf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakclasckasmeams\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "897a995e858386764bf256b2d0722967b1789a7e8333360f87fd65e263839ee7", + "regex": "(?i)^https?\\:\\/\\/xcnbc7n8bcvn\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "448b199a957a8aecfaef05e0cef30fda8f8a4cdbca2ce5b0059a501471481ebb", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1af7647549657a535afb2d07d56986683bc49f7a84bac52d4d291f9b88b353d8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "626fa31a86acf67f312b7a7a8c05a253a2415352dc748f42919dd0966571b2d0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutakcmasckasem\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d050a23bb3c59cf40b831955f4b27cc15da236ed1918c5601415bd60283ea921", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a10e6c2beee665e67855ead111130b3034435be3df51ba44402a1ce6245d8040", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ea2553c77e881b577d6fc4c3852779a208f48c009bdd5f0ced0f7fc8638860ae", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmskdfylasckasmcasme\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9da3d8c1191adeec17ba4f33a561cd8477240835957336be966c65beca7a6562", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftyualkcakcmasemas\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "62562c617348beeff1f4f7cd389eff3006f9ddfabcb4452504f6e3abb55d0d71", + "regex": "(?i)^https?\\:\\/\\/hnftxb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2256f6ecf2c3630c4191e5fd2bec59c69513f9ba7ad356d7b6285e10084c88fa", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2452165d2f2a20e8aafedf1468e0abde3747d898220f46ec1dc1f3eb6d433a53", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a99dfee85eb0578f83c378bba4faad2dfdfd7cf6f0ab961a10365edff77241e3", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdfkyalsckascmase\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2964d895bc3496a8bacd14dbfa1c0d500a6b8bf08b23de40c67c63a3da4d6860", + "regex": "(?i)^https?\\:\\/\\/streamcommunicate\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "859b2a63255c3cb342b551a68d0fbb7671bf86ea9d2621481d6bdfd2ba524d6c", + "regex": "(?i)^https?\\:\\/\\/xcvbxcbx987bxcbv\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "814a2204b6b433522dc389cccd0a702ab8626fb25be564a6fa461c27f080da2c", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a11ff376f82dbcf630d191014c48b0dff335a6400e26f7fbbce9352b40cf9add", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdykalsckascmasme\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "762201352e47789789ea83c3974a4760f435975a7f674ac9061b564fded421b8", + "regex": "(?i)^https?\\:\\/\\/nvideoxhotv2\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6f5713e85f30a75f7c8fff930aaa96c20f5e13fb17f2ffc76e8fece26d61332a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "adb13e1ff0f1f69f4cf03512cf27590644a065bbcf3b9bffa7ed0f1aeb8f0e90", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "90412f635d7086864f2f796fd550e671069dd649e1049a02509172fbd7a0bdd5", + "regex": "." + }, + { + "hash": "b40c017c6ad082b0bc2de3f4e58f1579e5f9c87eccc5f41ad6ee7047bb519384", + "regex": "(?i)^https?\\:\\/\\/pcaoselakmdfyuakcsaklsckasemas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3fe2ae843bd7509485dfcb5193eac94938e1f50b12e4056efe117f33aad43904", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4073bc7d35ebbb5e8d4dadea20aefef79fc0b870e66ad45a7ada7c8c1ee2424d", + "regex": "(?i)^https?\\:\\/\\/steamgbankings\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "932c3215f23d324d171c0a2e40495e62d0a1b3165d3570c9f69d6442b23f2a7e", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8b949bab892a8979e099a4d50b48ec6075ebffd84218f63fdaadd2800a26ddc6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahckamcamseas\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ef31b557ce6ae3be624325f547cc45ebcef264185c76e2a4a093cd929b0d2e39", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7381acd5ac5c7669e33989ffa4e568d02a72db546a2b653a345b3b2d9107016b", + "regex": "(?i)^https?\\:\\/\\/feftfffhhe\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f2a1cb705d6fdbb14dd58c750d7a275f0e9b18df011f208f69c29e5de7fc8178", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "315fe288520fff1ad73e2f85d46d3f3c6b63593ce39e94b5c28c95e5cdcf7964", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfykalckascmamse\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0d56a157d317975d742450e9f49d6b2333a3cfba27bcf884c021bdd58f15bfba", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkascmaskcamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bcd37c49b5f72aaeb75cbf7d5602804723a1b40c9c91d74a72c8a775cb8e1761", + "regex": "." + }, + { + "hash": "f3f7c7c321bcd620cd118e856456c4cb217728b3b66830b272e734d3da0d599b", + "regex": "(?i)^https?\\:\\/\\/clgt00122123\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8f30e661822ee206139f2948bafb5ac01bb1538d6d1cab3c305b18cd114efdbd", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamcmasea\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c045420664b90b7665065366e26887865117d737da80771f2055bd98351e8658", + "regex": "(?i)^https?\\:\\/\\/ljkoikoujkiju798897987\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "449c9cd310ad4ce19f7f4ec38432e30bc98c524ae9ba342b800fad749934835f", + "regex": "(?i)^https?\\:\\/\\/www\\.sfdxeh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1702d47ad89bfe89aac223f63156829ee3594b226237ece4afe4fa79f40781a4", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "059509f618c51b919e1d5e801ed724fcb54f7882db292fbd51d4d5d82a263cf8", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4a99b1130391f98b1d664eeb7a2d1e0966fc965b9512f41f878c6bf4f4cf32f4", + "regex": "(?i)^https?\\:\\/\\/ewghfx\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "766546ced19083de9f4ac058b9aee3aa5091b2c3408eb89d7e8c2528aa119aae", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmskdfylasckasmcasme\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3cf54343591c72768dde4adf4a915d57602da05a708dcd67396077b496e6c2f6", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "eddced12cfddf9d4e5fa5513434cc1b58a86344db64a6782479cdb84cf957a63", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdtuaksclackasem\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7f0d4630c678a8adf786781ecbb4482a8d2a844ccca823c9f47ea49419210c2d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "193cae99c7cddcfebaeee0940707ff91c8ade6c8c4cf8db765dac9662970dea2", + "regex": "(?i)^https?\\:\\/\\/promowhatsapprewards\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2a1290dc83f468a7aa78b38b58258188d71dee0d5594a71069fc3e35daba2659", + "regex": "(?i)^https?\\:\\/\\/molookmlkj789789\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3d076d3022edd1fceaed18785a8c3069c2850056e09965da5eec7416744c66b5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakscmasckaasmeas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b469b88d1d327c24ac6c1ab49479c9e29cb2a1cb454c1f15f7771091ca9e27de", + "regex": "." + }, + { + "hash": "967716add611e080deb839abb8fca12fcaa13b1ee79800f4f6cf7c347e607ec2", + "regex": "(?i)^https?\\:\\/\\/pcoalsekamsdtakcamseamse\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "104cb0adf350fe8982b556a334de4898f5a5be71c2a3fe4bc6a279c2e1740ba8", + "regex": "(?i)^https?\\:\\/\\/www\\.afvnht\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a45d9117448da55b8a28db02b5707658df0ff7a553d6f0638c55c9b38bb86941", + "regex": "(?i)^https?\\:\\/\\/pcoasleakbdkfylaspcaslcalsee\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4cb9caf5b71b363498733ed39743548ef1125799ecc48e800b061c8c888bddc7", + "regex": "(?i)^https?\\:\\/\\/pcaosleakcsmdtuahcaksemasme\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "64f2cb7798eee75dafd9fcf7f0d02e03a7e0fc09e1a0466828d26d8a0391ccdc", + "regex": "(?i)^https?\\:\\/\\/hot\\-leaked\\-video\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "729e62df815052aa91e5eadf98b230cb465b91c17b4724259352b9369752d2c8", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4e202aa30e0243619822440bbb43d0913af6b4df6c96a8948a1ee5ba3462251e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "485a567ac1f0f834a5a79d613ab14f33ac830d197cd5ec850877e497e2c2d840", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9e86a8a67bbadf8cfc350aa67ffd474bf4a3b7c08d985ff1ff27b965f7ef2a3e", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d53c42841fb503866892ac52eb80cfd0a61e28ec808af641ca9447feaffc5062", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "725770cb2ea8180bc2a5606ae672bda5603af217fbdb7cd95320d6c6618087f3", + "regex": "(?i)^https?\\:\\/\\/zeolorene\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f2e0c7533638e39bbdde933a6c1b0038d4a335f70db6d9a3f17c28b89af9e162", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdtuahckasmemase\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "573fa2c03ca06a6a8131f3f98be30a92f38ade8398b946c5ba781e4dedfb3b6f", + "regex": "(?i)^https?\\:\\/\\/25kjlhoihmjjoljko\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cac2268a9b5985900a57347d10f3ff94c3c938120f0afe96b7284303cff543bd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuakclasckasmeams\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d05092ee02a8a424f97c7053cc20fd13f29e8b19981c03d9ee4b7baf39c96d87", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "94b7a1257e1f8fa101c5a5c9b70d28375d1953e9243c528e3fede7b3ec8d6309", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6ee8dc4e578101b4f9a94a172ecf3436021cd422b17105497d6fe43b5b5df5e8", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2af0449a17abafa315259c6461a31e056a17b82e39bb07872268c2507adf7975", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtualsckascmasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c3cb8491abcc82fa9893876dd0b8e223f3808f9aac167fc855a3e6ab25cd2372", + "regex": "(?i)^https?\\:\\/\\/cummingvideo\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2b9e2dbd2013c034ddab6c0f2cbc8781f56fc4cad267b1fa5355471bee082857", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b2bd6d5c45c4ecf3840a893a9d8e8bf27f96935cf5dc00b95dcdd87e876373ce", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutakcmasekasm\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0c76d5c41c1031c64c4eda5a988daf46e2b11711ccc8221baf8c9b915a954a68", + "regex": "(?i)^https?\\:\\/\\/ersdf654s5xzxc6zzcxcasd\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "40554e6665592454c9c270553b911f1481f3de6b21223c8d6bb9143cd76e4ace", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmsduthckasmeamse\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1d9af3f639dff701b2c6fd903361106ecccbd9326df9e376921218e8b53d3fdd", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-100240\\-106172\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1afb215ffbbdd29eed6b97ff80c2285b704dada06d0b751d6fc24cf686be89d5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaksmeamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "570e8fde07f169d379ac01b4e58f705fb7ed83fc976eb9b1f7c761896bac4c72", + "regex": "(?i)^https?\\:\\/\\/streambookpublishedltd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "81d4fb068401630ae0a3f4fdaab69924b64c9f89c282a5e88b3fdbb4c702780b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rastrear[\\/\\\\]+informacion[\\/\\\\]+index2\\.php(?:\\?|$)" + }, + { + "hash": "f21ca23ab55139eda6a9f58b57e216904c6cf934c928d5b8de2ebf6461aaffe9", + "regex": "(?i)^https?\\:\\/\\/hotseclipshub\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "49f6cb7ba1b12c1e71bc32f0fbd3672c02bc12c71edca082a7d22de8a8e0fc35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9973[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "5d9c000cb0afa15600dbc7357e378b5ba65c2ce12a2b862ceb3e0383ae91de7f", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "75d7ac7f48f0a814ecfffcd49507871cbeff54b715de8280aea5064127c391d6", + "regex": "." + }, + { + "hash": "25de0ea2c00ba0f8dd56bef5a7ddf295d4b34bcbaa155b1b49c78974d561ed72", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftaksclasckamse\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "434a70bbdd8a620f42e4c922e82fdf67801ba645eff041c6714ea872ea1aa8a2", + "regex": "(?i)^https?\\:\\/\\/ndrgmq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d9ce750549e8611bc9c7164808dff3a9dca72f578436cb5bdb3dffd716ac1778", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkascmaskcamse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "67b4b580b564bb1aaa2e0d3fa6d6bde09e30f41e7e2ba560769193ea631725dc", + "regex": "(?i)^https?\\:\\/\\/xcvbxcbx987bxcbv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ca0becfce7be68b371951b6308d1b41d9a2ae1011270ef88f9e1232e0a0a6f64", + "regex": "(?i)^https?\\:\\/\\/lloloool454545\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ce602c217053479bbcce188c7ea601e56a3d540273cccb15a32412200e44fa56", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "aa15b43ea447b40f092c73fd127318c1be3db16fa17d6e82e7934c58dccaa74e", + "regex": "(?i)^https?\\:\\/\\/bvnmv4n6546\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f2ddf8f7541017714c019174c976b0fbe9e548c1b1c638723158bbdc043a399f", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a193be87b150d6ff24ec117da1e1952e29c891301802e6c267f2b9b1bf6b0a1b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdtuahckasmemase\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a56ca0ede030496cf2cdec5bad254e32a9487760e035f96bc2d064547328d51e", + "regex": "(?i)^https?\\:\\/\\/colonhue897897897\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e76531d7472dc8b8db67dd1c3fc242528a4677e16d85c5bb3d5ab4ea36e7a090", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "96ce43424e0bf3e46130acba9797e513b11ddea2fc9464ad3d4d870ddcf6bd02", + "regex": "(?i)^https?\\:\\/\\/steamproductionsl\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a12488196fe31bbbd0dd0cab110f34bb23d5a0a4869e34e123fe0ee206cf8cb6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "66527b413a6c9f79eade510c1877a0196fc65e36b7c608e454b9bea03839f465", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakscmasckasme\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a2c45eff92897e2d62f33cd49306cf6c57cbfd3de378da0988407f1a3b396ecf", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdyuasckamcaksemas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6ff3999b5540365e7b40663fad95fb825f180813acd997e9e5351b397e7f123f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutakcmasckasem\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0f85cf2e1dad040521def9591cb7068969ea82addf961565058d202ffea07f5d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduahjcaksemasem\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ce3ce33ccecb3eaf531db5f292e89d8df3ac851d40c73ba77166d2e9b768b041", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9443cabaca605eb0c67f10ecf9e880fb386a01703d90688fe0050fe4ce72566c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakscmasckaasmeas\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3ef9708ef9f922c46306b4054dc661ad6bff7aaedafb07a577d67b1c1a5eee60", + "regex": "(?i)^https?\\:\\/\\/ljkoikoujkiju798897987\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0d114016abea32b35afaa185e57a6226002b3062f42da175dbfece21f478472c", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "62e505f103225e38c04d21141382736702cfff4658de2e8c88fff25d5e5446a1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsduytalcaklckasema\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5adfb6c1b03b47258042d8602448ca6337f0d1730f9682c21e810e8d7fe0e27c", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0c44fcac80c5f82ef63b831575f9022b424357755c60ac0b83efc8235347b2b9", + "regex": "(?i)^https?\\:\\/\\/vnbmbvnm897\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2360bd5d7ad0a82e1385fcc8e7583ae7ade41134793ba431274d6e9cce59e588", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "dcbf586aa0d364c242df02e8468052edffb9dd41e5410df28f59f05426307d40", + "regex": "(?i)^https?\\:\\/\\/3xhotvideo\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8df070cc4cad76d5a2fddf2447fff9f9bf11a40ae6b04dc70e23a0397efe2328", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmdtuackamsekasemas\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d751807be3f2c2862071d26df560f9c102f3931f80ceb05ce82490ef48f1b3c0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdyuasckamcaksemas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dff5c1e5e0b3cedf6306a7ea7f859b8393a40960c4ee0727136534aa010da9c8", + "regex": "(?i)^https?\\:\\/\\/hottodayvideox\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "311a1b4c1f2a680006a5ff2181cd8ff171a1698f73676ecbedee6d8190edfece", + "regex": "(?i)^https?\\:\\/\\/feftfffhhe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ff754b8be06e58dc995e874569150647418a6f8d5321e97ef85ce68c930313ec", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b25b3cff8274595fb8ef101287612af44bf52a77ed391e025e598e664c9cf45d", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9033093e9799d8cad7e424529cfa56d78e89048dda3cf338b24a213ea0882450", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduthckascmasmemase\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c513127e775d23bb42201d8ac12fd92b2df0af7824ff8dce98c5ab47089adff8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfykalckascmamse\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bdd56dc21f2ce0782a8ecc7045964bd2f02daf57333a7723b54b5299240fb2bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+C(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d739f97cae4d70d9c68d46715ce0da78d8d25ba94df83899c5d3395432dcb071", + "regex": "(?i)^https?\\:\\/\\/mloikoikoi789887\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7d4dafe5bfe7f256a5409372db5a760f772a064b5451e69038fb3df9659df193", + "regex": "(?i)^https?\\:\\/\\/robux40kxcbyu\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "06671567e79fbbd3a25533f721a1840da934b0541393e20eb7a18699d2b6f42f", + "regex": "(?i)^https?\\:\\/\\/1233213245665\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2f1c3c45a95039a39aab1ac367712c311fede1432f02644b9fb7053f780ff4c1", + "regex": "(?i)^https?\\:\\/\\/35715947658\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "761fcab2059092855154196be1fb120c4086e074ffd336a79f40d71edb911456", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f02f1ff7cdf0286229ecac410488620671cf0000708116b2bedeb276626da752", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfuykacmaskcamse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a03d790d2b4b61bce7927ea2935b457aed8455a02e53c86de576bc570bb1b65a", + "regex": "." + }, + { + "hash": "e20f48ff50f210cf62b679a256663d5e47c35feddc31e269d3d74d058c3e3828", + "regex": "(?i)^https?\\:\\/\\/vnmbvnm78bvnmvnbm\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ec51e96e1032fb6725d218fdf0115cd4779b10672a4c43c1585233881ff685e8", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ddc592a6057f225846163aa247e957f50e6ff47d0a60c53b5a4ad7576137b887", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutakcmasekasm\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "57a2af296fcf610e3fedab27c08ebfdd11a20810e44157e390e37580e2a03992", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "63cbff1463823c672f7017041659513ba75ca96b4e6c018ece1eda33693280c4", + "regex": "(?i)^https?\\:\\/\\/pcaoselaksmdtuackamsekasem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d12bfbed3771dc363e6a7bdcb3d172fa908f06412336e2912bf31d1bdc0af5d8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "71411ebb256efe28bb08523374176e4cd0fe2f322f4543715fd31aedbfe8ef4b", + "regex": "(?i)^https?\\:\\/\\/steamwordll\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "360132f1f82b41edeeec3daacaa79e369958f8565f85f13a0c66ff3d3691e9c0", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "859e4c5dd7da238d76b9443ec2e33778062f8b0fd13e119c2d7e1c8160396600", + "regex": "(?i)^https?\\:\\/\\/qpoiakloi4567\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4503df5673d8b9b14794a8d9248a2b7c7b515eaa6f2b426c2672337e307fca58", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakscmackasem\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "aee0c78f73e3ca36e6e3e183f6f806cb75a7b882835c6afd9467ae18c55f31a5", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "264e8a667d18d4305ddae310d0965a7f6e09d9669ed028660a04829f1e719d15", + "regex": "(?i)^https?\\:\\/\\/mnbmn7898\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "08a5ae2fb202141dd35ca8e5f67fe3e88ba11ce6499716427f7f7d7db3c4f36e", + "regex": "(?i)^https?\\:\\/\\/videohotnowz\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "14d8451185883d12262bfa23ff9f85241904a12baa245b6520c7e658b068b40a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ae476a4c10235d92752682876663160825b022c82b1c7bab178cd15ae0139e2a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "237cbb03580c4a1413d269b694d15a97aac5b90928eda8b49d74c5d8d71750c1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmstuaksmackamseas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f12e62a9b08a0bb7646be92fede02ba6723eac8b680962ea4899545008e55db1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahckamcamseas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8d1ca3c7be5199c3b6aaf087d22abf2abb0430fef142e99ff15c3243645372b7", + "regex": "(?i)^https?\\:\\/\\/hotsxclipshub\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ae2d1a99ef4d792f2ae97d8a8d2ef82e2c796df2dde79d0b8a16f6160c6c2e61", + "regex": "(?i)^https?\\:\\/\\/46456465465\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "005d1eed0c73f4641da8551f64a3ef59820ee10c5be52497f2a2efbdec8ff9f0", + "regex": "." + }, + { + "hash": "17ca728e14dc6207daf1f4fea4176a7569d916d7fc6cd98fc25175ac224c7b73", + "regex": "(?i)^https?\\:\\/\\/465657878\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "856eac0a077d72bc7b79405cdf4975221027edb63809c10d670d103f118d5256", + "regex": "(?i)^https?\\:\\/\\/concainit7878789\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c64145c2f7f8306feb72eb798d6e3dfeb422e0bb16735db9c05f2350efd21c2b", + "regex": "(?i)^https?\\:\\/\\/ocpaselaklvmsdtuakscamcsmaesma\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "834f15e30e92ce66f3d1def9663bbd4457a7c4e45b1bc874e33ee2d86276c86c", + "regex": "(?i)^https?\\:\\/\\/46456465465\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a008fd0ec9ab30debdb34ed7b18dc88f359e07daec6f056b33979ddf4fb4a2c2", + "regex": "(?i)^https?\\:\\/\\/mloikoikoi789887\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6646b460d13b97a1a332ed1c7da44c3cd8e9f01e73080bea4f56cba44d73cbe3", + "regex": "(?i)^https?\\:\\/\\/xhot\\-videos\\-today\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c10924d940d3890e7c2008df360dc41ef935d0c6a5f21ae3dc374816bebd0d65", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvcmsdutakcmasekasm\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a7a25db8d47cc8f3669e7fb895811ecce8455fc0cbd6ca088be54f85f5612d9e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "609d5dd43e7c8d2abd67a7c20897381f223003d5c256c72debc74222df4ee413", + "regex": "(?i)^https?\\:\\/\\/steamwordl\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bde3e52747116848a36126873dd0a8a41b46ccd0e3f3ec299978543ba60b0cd7", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "054d7ce9450863c1adb164f5bad2127d0a81008847373ab3d30c1f3c900faf68", + "regex": "(?i)^https?\\:\\/\\/2143547658\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "24feeca00f8c0e8e809ca997cbaf5c072b9b1573760ce71875b71d8226f47b2e", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "21d9b2fe69842c64ca7bf273b8a3842321bacaa73dd6216321933975de8d700e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rastrear" + }, + { + "hash": "3f562f353b992e0653acc68a07aa57769d6f77ceb1e43fac72b3ddec0d830e58", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+d[\\/\\\\]+g[\\/\\\\]+login" + }, + { + "hash": "dbe120fb700aa1bdcc1c1ed47370d29516e9502ede03e5799a1dd7480882b335", + "regex": "(?i)^https?\\:\\/\\/vidtrendx1\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d0a9725f1d43398e985729bbf1f9c6b076b19cfdd5a8be5b0b1e1bfad3a5172e", + "regex": "(?i)^https?\\:\\/\\/xvideohotv4\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "94110e26ad8cc99d5ba80a4f18973938f781a928d231f1e9694db736f52a6ee8", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuahcaksmeamse\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d7161e0b2c916427993d87ec0e7ecb6afc7cf941d2f3be6b608f036ddd580df8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakscmasckaasmeas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "951104541674bbacbcff47aa2cc3c5f08f0addf372788492bfca3663f8df1db4", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutalskacasem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1c38585decdfba7f26654db6b8f0194f1bb1927cada20e1512ca0426cadef26a", + "regex": "(?i)^https?\\:\\/\\/pcoaseklakvmsdguakcaksekasm\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b9c09d2767f5a7dfef6398c3b52262f4dd16c26ea1379bc4db8d1ccb0e591", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcmasckasmed\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "edb365e30b4f20aefcca5ff4054e28219f3da12e60462aacfeff3d2bc2a30f35", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudftykasclasckamse\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "056a3c934faa4aae0ed44443f0036194a79834a5cd3d99f5b833ae82781a28a8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdktalcskascmams\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c4df0165eb241b417c6a041ac4bca7c24df8a1f5b306464936d95d0b54dcf1c2", + "regex": "(?i)^https?\\:\\/\\/nesbzs\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d828cabc53529f90ff109e8ef728775ea01a798ee319de4d4bd369ca226e54ef", + "regex": "." + }, + { + "hash": "5787df0e8974e7203f081f0cd93c7cf63bc027eec4a3bc7ea091e1f4316b5504", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskytlaskcamcsmase\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a1d67518476011d1a62a6cbef3e3b3b0d2a3f12225c95c86e38698afd6b37384", + "regex": "(?i)^https?\\:\\/\\/bnopbnmobnm789789\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "1aeb992a1baf0cd44a9f2226afaff3008d9c82e0c863f8079451fc19467c3c5b", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ea835044e704c133418622dfb311e1eef5eeb0697a7245bdaffc975e62490b99", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0c44e8991d143036166983a8055db39cf5d42f3957ce0e8f6ab0ca57ba60c63c", + "regex": "(?i)^https?\\:\\/\\/garenafreefireempress\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "49c0c60c5b7edb8cdc1c9901bf2780db90f77df05ffc58172e55fc52618036a0", + "regex": "(?i)^https?\\:\\/\\/starlinksnetworksllc\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6b3fa544f0f3f7f40e9fc32471613d862cde25eaf7e90e1c3f39f5aa41a8f2af", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuaklscakscmasema\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "93c6c4c89c818bf82274caf1a86fb07bf45bf7b0a6a80ea797b4d58bda36e021", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e1997db53d597ae25268129d1e11592f6497f8c197f975eb46b5016d304d3556", + "regex": "." + }, + { + "hash": "eeb62091607ff7bc1fb15374baa8c17e54352071ac6fecda14cf977e75a5508f", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkascmaskcamse\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c7e19115dc5f68da70d133023ce063250e34331eb43e704244f27e861d7f4212", + "regex": "(?i)^https?\\:\\/\\/xhotvideostoday\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "71eb10e61175baf82e1f49237093bf1fbe5bc336187659d65c065ca7c589538b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmdfyukaclasckasem\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5b54f14493c6c32f6b755e66be5b8371922bc5e5bbce85e30ebf0ab4465cc72c", + "regex": "(?i)^https?\\:\\/\\/red\\-school\\-video\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a4913e7adaa4987fb10762893b1a654dab127a7e366ce50fd300623faf736376", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsduftaksclasckamse\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "78b5ff2d7718a84ce83cab23bbcd58182a172227bee1ac4ab21b3354baef12bc", + "regex": "(?i)^https?\\:\\/\\/polpolpol\\-oi69786\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "e4c13f3cc80ef016936c28d4299852e81ccf2c26fdbb1b94daa782539a0a50aa", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcmsdtuakxcamsekamse\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ab644b00dd023a9d670176949b5fd9cb21de81d3deb878a4b7a219dbd2d937c7", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtuaskcmaskcamsease\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "758fe151f51f078ce5b12994fcfff4b9691d383c14093b43ecf97f5d33a4cf06", + "regex": "(?i)^https?\\:\\/\\/mnkloikik4479898\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "71656d6bc31473194f9b759d0d5ac877d86942df3327d499b79af34dd5069c22", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdftuakcalscaksemase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bf92b981a8d68eb6ffc0d0296d290c2fe74d73fe9113762ec29a494e013ada4f", + "regex": "(?i)^https?\\:\\/\\/pcaosleakvmsdtuaksclackasem\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "56ac95a02da2d2b41c80379d406fec49c643a16b4d1ba5f8bd4cfe0884b2ef3d", + "regex": "(?i)^https?\\:\\/\\/qe521436512436512\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1aae4ae3eff5c73432f4c44fe82291a59ffd53eff7d5d1ba8fa7b0aea6cd43c4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyualsckascmasem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bae3b9827db77a78ee3d64eba2da154adf9a9046bfdc3f78ce62d6eefe6d6e5c", + "regex": "(?i)^https?\\:\\/\\/qe521436512436512\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "90e1c0a220cf5a06d5bbfade7ef847f6daaf258af12c0011bc6c1b87dfb630e6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutfhasckascmamse\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fa655bad851ff11de1611f6f0a030325e1872889f221833a11ed159e42a69edb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "a824ca7c6b0d134af84695711507b1ce8aec4467d496947c433946bdc0011dd7", + "regex": "(?i)^https?\\:\\/\\/hot\\-leak\\-videos\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "711f71d35e98664ee009a17076f47e28d27828355f51813a85a62a079b4d8327", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e5e7e36afd6dce4959fd9cde4ad07f686e10367b135452f2af823930ddd1aba6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdykalsckascmaes\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "bd9ba1608663781bc5253f37476d0f2839bedf3db9086b8cdfe26ed250041c43", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcsmduahxcaksemamse\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b5c93d18510219886b909ef1bb20c42bd43656373194eaa7b970ff7fadfae593", + "regex": "(?i)^https?\\:\\/\\/steamwordl\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9d8cb3d838723a91c41cd1894fe6c7ead7c472c5d22f58ef9129a2a5cda4e206", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3408db6ef9456bd392cec14bc6d131961d0cb44e444134350b19816a2e539247", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsyualcslasfksameams\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cc88f216a7b889bd60e9d2724e76dd88d120f508f27bc050841eedfb884d900c", + "regex": "(?i)^https?\\:\\/\\/vn2bmc5gv4n5v6c\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0541a211d4cc310725e80cb3dd4e7ea16f741eb0ee3b3f647819f84b964b3544", + "regex": "(?i)^https?\\:\\/\\/pcoaslekavmsdutkascmaskcamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8ff8cd1a1bee56eda5524b934c2581adb75a3850b0a6a3b69add928b7669cf1d", + "regex": "(?i)^https?\\:\\/\\/xcnbc7n8bcvn\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "fc87a442639a8c6375e6a1e560b02d46439a7fb904bfad54f161bffbe678e4e0", + "regex": "(?i)^https?\\:\\/\\/streambookpublishedltd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "faa447bc891b6e94ab05264790e748c653d61342f71c6f4102567a62cfc7f0e1", + "regex": "(?i)^https?\\:\\/\\/vmnmbm7898787\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "235769a83cbb7bce326cee67d39ae41517963d152e7d165ec7af903479dd0a2c", + "regex": "(?i)^https?\\:\\/\\/steamgbankings\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3fe4c84d065d7d114b5697058e3afcdc7e32526651528f9ba406480b5136319c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmdfyuakcamsckasem\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "90d20bb99ea635aeabf0c22aee17bca2141211a1721badf6eabb7124d36ccc6b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuackamscaksemas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d79c3e962eaeffe640982fa06da2efde89655d3550a2b67fc96074850a6522d2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakgmsdtuakcmaskcamse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cf7bb9f1063086e001214abb394eabd14dcee9b7f1f74a756130eeea29bc28a2", + "regex": "(?i)^https?\\:\\/\\/onlinecookingcless\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b435f93a85846247c30c7c3aa13e39171f2eca829a4a37abeb0212a7fb8257e9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsuykascmasckasme\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fccb6a34f23a41ec74968bdb8df9fae36f9d126b343438051e01bebd9772d47f", + "regex": "(?i)^https?\\:\\/\\/bmnbmnbmvn96969vnbm\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c8fb7053b8b01b366e1183f41162cd0798b6fce6deb29db94d77516564c15d94", + "regex": "(?i)^https?\\:\\/\\/concainit7878789\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2dfba92cd0b4d0381c2299a9a9d5f4d70e726949b7b1c31032ce07e347eef5c2", + "regex": "(?i)^https?\\:\\/\\/pcoaslkeakvmsdtuahckacmasem\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4553a4a7993e1c3e6dad120db4e93646637813be64d31ae19ded392d401e6b70", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c3629417437fcb327d8e157dd31ccb39035d4932b425a5dce8042516ac4e3fd8", + "regex": "(?i)^https?\\:\\/\\/ocpasleakvmdfuhackacmasme\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "53bedd8f7517672407a038bdb9a20ea9b26af2b9127754568357eef8073627b2", + "regex": "(?i)^https?\\:\\/\\/pcaosleakcsmdtuahcaksemasme\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5c611feba35caf45c24fb31fa432532fc2b758aeac7e4800eb05265ef072a48a", + "regex": "(?i)^https?\\:\\/\\/767598495\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7fe9e13f2a1c738cefa7355d633d761bfd0b5bff7d0fd29e2ba4336ea4180b28", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmskdfylasckasmcasme\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1a7cdf9827599a67f9535bde77b043dc50081da6c4e9b7ac9ed9f362583fd5b5", + "regex": "." + }, + { + "hash": "f36938d7c98f8f7a4c2021dfb889ec92d3557ded23bb34acfa5b3059ed193b52", + "regex": "(?i)^https?\\:\\/\\/pcoaselakcsmdtuacalsekamsemase\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1f8a05221a48df7ef1452e8f9be1b0c485fd271fdf678550e08f87cb9620847c", + "regex": "(?i)^https?\\:\\/\\/click\\-103950\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0f0158d89323bbe0c4de1e7bed5b4d0870d44debd1f71f3b801fbcf2a855450b", + "regex": "(?i)^https?\\:\\/\\/www\\.nhtzjq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e4af2fc3874d8158e385380e9bfeaa752a47094df91b226de13edc44be88712b", + "regex": "(?i)^https?\\:\\/\\/clipviralhothot\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "61923e40eba8fc5885ce813f2755094fb3d834f6e7032e74610c468c9a3dccb7", + "regex": "(?i)^https?\\:\\/\\/2\\-a\\-t\\-t\\-105855\\-mail\\-0987\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7dda8a3f9c974d8440e12751aacfb8c9b969e9bba9014ec2f81db70e1ce877b5", + "regex": "(?i)^https?\\:\\/\\/uydoaoduouiajsdhxyzocyxozicupczxuw\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a5137d53ff9008cc8e298d754707d6e39dc9b8b8d1fa45210c79d210e44458a2", + "regex": "(?i)^https?\\:\\/\\/uoqwryoquriuhskfklxjcxzczcouqweoi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "793319999e44a94abc5a5040de684fb839291810f55f38a7d7361cc234ca4f24", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2f61f83e9ec5e9cea04dfca904f823cddf56263569fb26fd7fb25fc9768d4b49", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8e226b157cef87fc4ef4899c2dcb76cb06de523c1ed1788075147d564a24e577", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuahcaksemasme\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "6b728e4f234e96e7b3465a01d8998c4f276544bc8d9583f07d84a57ebe9a3b47", + "regex": "(?i)^https?\\:\\/\\/auhsdfoaisasd6787atsd897ayshd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "30b80c3c341e4d2b3b18889a0b79a5285b7443f7b621aaf3c7d676e277d19600", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7054d020ddcbc177f4d4e037cc857eeae7570a9d1305f1a7d6da3b6622f3d25d", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4af47dc16dc24486c72e01bcfbc9c84a81f66ad273f73b908ce0982347120d86", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "59914ccf57f86b3ee80393522a2cd6f3fb7981345d20eb2a3f8c2d75d9dcb6ab", + "regex": "(?i)^https?\\:\\/\\/elishaunderstandmehegpqk\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c01efea6d43f32e7fc0bcb383dffebba48ca8a5b6ff2be7c3d33590e9b5e1e34", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4a8889a028eff729ce42e2f45bcb9417cced9dc1dbdae339fe021f8c451ac87b", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4514c53c3625773240f26ac65e777285e40d46493fe27b40408873a3915014af", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "654ddc334e1a2309e345cdb651fa652e0470db77e36a6a5f9e04453bb11db4fc", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a061f4431ffcdd8ac4ee434aa991c61ba3ce57e48be85e85e9d97cd4aba07c44", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "315a265cf1c69799992b4c072540234dc21e8769f88cda208fdcd47d7be38ab0", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "42fe5bda94300b9ab0d52caabdcfdf598e8945b9f0cd97422be62d6fe5145415", + "regex": "(?i)^https?\\:\\/\\/infraction\\-antaigouv4224\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "569007be8a3a1589e477f0d3a3fa80ba08a974765bedf3b980a09b8311d7eb48", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "445266fd33e95218f8b66ebe4d2502643d8a94a7938b54be337947e8a8a7db40", + "regex": "(?i)^https?\\:\\/\\/gomonopoly10l\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bb52ea018699d288f891a94ef092b471107ac7c569622eb07aaede3fa41ef7a3", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "35ed5780e1e41b4a1bbca4f98116da95bb719627289725b9257ae823f64dcf38", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "05959847976b2121334df6838c03b73d280a60a1b072f52b62907f96414d56d1", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "14f2f0769072cf4f943eecdd3c0378bc850b847050a4b4671561d0a7c87a3460", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7667b5e62e06f05af226e0000052faf1eb85fe6b166c5c4d91e9b57df93960c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c80xuYDKNra97IYY5O" + }, + { + "hash": "730b055e6bff46aadc10b0a78f0161f273672138bcbace2b5883f59206b3c028", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "aa80ef487b3303d8cc943f7bcf73d69a384026aad3268e58217e2d836cf964e5", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5b583dde0fc801ebaf03cbe0166e8c910feea6e371c23f58fcf6debcec5984c3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyhackascmasme\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3a00ce362c7d1c952df4ffad1394f5ba18cf46e6f4e64fa5880fd9d5691ab47e", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuahcaksemasme\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cabf6117651c3e5820ad22a5d9b8ca4187c815fa21720a19b85db9deedbc176f", + "regex": "." + }, + { + "hash": "e4ce03ce038306172fbf7d1df659d5c17564e8037711a694f7c009ed1dc127b9", + "regex": "(?i)^https?\\:\\/\\/yuaoyjkhzcuhzooiwurwiioqwuroiafkja\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8d1c88a4416967a158c1944ecc7207ce63e6f6c6c8ea6562449061fdd0a6bf5e", + "regex": "(?i)^https?\\:\\/\\/ytiasyfoiasyfuaibhxczjxbcjhzxgcklzh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c5eed3598ca432f93edc6e51c9995f80246fa08a71d994410fdae9dde1b83ed2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8083abd213d0cbd5aa2a06b2f363fb330560277fc15cabe81904088892372ee2", + "regex": "." + }, + { + "hash": "0cfd83782e1b3b0005ec0f118474395e763f6b76b2a9643bbaa077de6e8ce8ae", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1ebd95141d0da90afdd2002fdf69782b080fbb332023b62b9e981016ebd38f0b", + "regex": "(?i)^https?\\:\\/\\/uayoaoaiiufasoyfoasyfoasifuasfwq\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f8c1b26c8f95b7472911d069595f1616647d4dd4f2e48ee794e47470bd8ea607", + "regex": "." + }, + { + "hash": "77ff64424c5437d3ef85169401192cf12f89147cca9757a27397cd45e8062f8d", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a01ee30d05f25635be7191e314a90342a08b9bc721fe241fa64bd92e7d0498fb", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f10e6f156c4b1d8415099d111f9276fc740805abe3a0eb4ab5982cf30dc65539", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7342feadba13738bdfd4fede62bd6f0b34213e81d4dd6edf3f89a115e5acc3e5", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuahcaksemasme\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5798ff5e5ba080743f12fa8139aa1d1b284750218316133b8a5243bb56049eb4", + "regex": "(?i)^https?\\:\\/\\/kjashfoashfkjashflcxzkbcnxznckjshna\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "09bb7baaa7d7f33ed0a7f4a2f4824c2a0c3cb6b1c8283755e95fe09a24a627a6", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvskdtmahscuasckamsemaea\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "87a1c0253985b9b4aab063985715816a21aad552a463bd8b6d68f2ae1940ddf9", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d9cefab2548665797ec8d2037f0a2d831fbbeb9708fdc677d2cd654a45e084ae", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e96cfaa1ddbf749e67f8944a708a007365365c1b93b80e4cfeaf59a545972afe", + "regex": "." + }, + { + "hash": "bb43253930caa5f88e303d4559c0d77f0d909e8d254d0e4667aece9113cb4607", + "regex": "(?i)^https?\\:\\/\\/nzcxkcv39cbnzxczxcn79zxcbzyctx39cuzx\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5ce4f2f7a55d56d00293ef0b67a70f67e30c81b0dc7df5267e6ebf80d41b7859", + "regex": "." + }, + { + "hash": "bb4360f87045001d3b6caa8999bb8a190f75194af02e50e7b04c19d29df3e7f7", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c2f941c3d06b534f56b043d1c47873979136e313c0440518b8c58292f20b632a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthackasmcaksemase\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "478dfe112766339251dd83320ea7ce84ab662eeb7ea56c35b69540d30e1e1370", + "regex": "(?i)^https?\\:\\/\\/aibygidfahuisdhauhdaihuzcziczxcizxc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9a250e345af39819bcee845985b46feda1d6686c28da364a183a926337efd8fe", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuhackascmamse\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f21e540738c77a09629f979222c5fb4d8b092558ecd5a9d20fa0a14d2ab2d029", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-105714\\-108904\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3392cbedc42bfef9d8360935d48f56bec60f19f14773b343bc8fb5412580aae9", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "54852d29d6915363e5ee42f1ccebc91d4a1f536aecf2ee32c6ad813baf079239", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "304c57fd8a20254c259d55c7748ff1dfc7d56fb1afc99fe48a94c3dbd6b56902", + "regex": "(?i)^https?\\:\\/\\/cmasleoavpsdktmachaucaskemaema\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bf658b9beff7294f30dfbe69d318ff16900c293219bee558584410f95739ad57", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ee4c8638aac567653d63e6f033508d2e03c9464b1a3418e6e11dce65ec063950", + "regex": "(?i)^https?\\:\\/\\/cmasleoavpsdktmachaucaskemaema\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "28538067d070bc217ca9aaf22d8ca19657394c263a0a039e033190650302d509", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8d473892a1d6a458118306bbb5916d5edbf64030427877279337bcec96d6e872", + "regex": "(?i)^https?\\:\\/\\/mzhfo\\.cyou(?:\\:(?:80|443))?[\\/\\\\]+ua(?:\\?|$)" + }, + { + "hash": "089507767c3f93d8705fca70c6d60f256fe8744ae750cb1b78d554b6a43bb0f0", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "afb9aaa8d7ca515fa474b7ca9414989fc1fe072e4f6d625da410971e04760a86", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "864cc7cfb50386a91da36f6da15bbc64dccc37309687bd0b4c8a22e142978c0b", + "regex": "(?i)^https?\\:\\/\\/uoqwryoquriuhskfklxjcxzczcouqweoi\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5ba466c52104416d7222ef56f8bb0a65a0505a18ae64e09a71eca60354210e5f", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3bf681234610a65cb170a3808804f589de3b4935de2b0b66c810e82e79253a84", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "45e9de636cd6490b92b152843294741caf6808e0660925603094c1b1c5fc9ed7", + "regex": "(?i)^https?\\:\\/\\/naaaddaunofahshasuohdfoasidajdai\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8e6b62094feb61ce579de731127fda3df70196d90b85e43f0987da98cc1de25d", + "regex": "(?i)^https?\\:\\/\\/infraction\\-antaigouv4224\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "58584ad50525a2d32e32997a751052d082f21ec09205de861f8c6e0aa356ac89", + "regex": "(?i)^https?\\:\\/\\/nzcxkcv39cbnzxczxcn79zxcbzyctx39cuzx\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4f423b32eb8967ff164a811a00bab7656353ba9a94669ade5c98888633d3bc4d", + "regex": "." + }, + { + "hash": "154e5b8d33b50df789a4e97badea56365c7e3f8808fcd85725b3b392a06fde26", + "regex": "(?i)^https?\\:\\/\\/cmakselavpsodtlakcamhaseuaeas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5f659f05ec5bc94cf0c5b5ebede126b0e35780bce49738a2f4e4c1e016e0af6b", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "71c6b2e2659386eab386411c0c9f227b87f9e6e3a580ae9b02d99ebad3249a7e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasme\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "02e7242df194b42e5f02ec62e17aa9a28b7942bf6fa6b2a5fe8c28a793b1868a", + "regex": "(?i)^https?\\:\\/\\/moap\\.cheapjzxoiqwuoi\\.top(?:\\:(?:80|443))?[\\/\\\\]+msp(?:\\?|$)" + }, + { + "hash": "36fd7495fe64e97e214cd57c804beaa20fca6fdf880923f8125f0c0845753ec7", + "regex": "(?i)^https?\\:\\/\\/www\\.63037210\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a1be739c9375eed31845a874b6082476dc37754a20ea65af93ab8c0f19f8a88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938ab4c6b8\\-636787bd\\-d60f\\-456d\\-953b\\-a8428cdf4e2f\\-000000[\\/\\\\]+kzPXLXWybpGBn_k9odBJhpKLn1Q\\=402(?:\\?|$)" + }, + { + "hash": "868e1f3aee6f9e0581852e0d73f89557874cdbef14a4e9cef6d4ab82abcf3761", + "regex": "(?i)^https?\\:\\/\\/proyecto\\-sut\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "da22aad675aa4f6c3eda595401c620672412f21879d19ca63e84c3d9fe0e9599", + "regex": "(?i)^https?\\:\\/\\/nzcxkcv39cbnzxczxcn79zxcbzyctx39cuzx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "66e16dbcaae43b5fa2e700b2f5fa7720468910123f1a03913ac7f088832b718f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f4d853b3ff8a3af16435d19a1dfa54c8b80aae8a1973ffc261f4a99f276e03e4", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "eda7d0f28d62bfb9042c9e8d54f11b09e56aff07fa2970507c0ba2d989af02db", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fb118a21ffacfc7f3250e2b9f85e39963b69f63a509a2c3be38679b94567a513", + "regex": "(?i)^https?\\:\\/\\/ytiasyfoiasyfuaibhxczjxbcjhzxgcklzh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3df54f9f8eefa50768bb59f7a441b563f77e985657daf8e5de3146caff41f99d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0c76f297f44dd250300790d6ee20a8128592db8b6781640e6038cc6e6069f48c", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ae122b2d09b1d4bf909c0ae923fddadff12cb110d9823324edff543d1fb3986c", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b83dcede5de046f9c157ae2a6a7c339610efa28c7a086340e8f065595134c8a5", + "regex": "." + }, + { + "hash": "f4e971e7a4b28a3f437057012fa7e9415af147bdb78459fba0b80ab6127c0eae", + "regex": "." + }, + { + "hash": "a97c9f4aece1362c54ace6a607ec1f4b73ee31701d41b4659fa33cce9717eb08", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "587f5992e90a6769940e5e4ffa940bfde894ec092593613d420696585456ec37", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b87e13ee3c323a0ced6e66976fbb844a1cd974bbeb6d0f0f04471277579d04dd", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1d7def9b7d194d7c47fbe49a353a47eff7e451a0812f098e1d78aa90178bb81e", + "regex": "(?i)^https?\\:\\/\\/zynga\\-poker\\-toolbar\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "594ab9865688c027527722a81734a55e85aa9a727f1ea7edae5b6388afcee9ca", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5658db60d25ce38fe4a1a39d4c86f69c3a9d21f5007b589511b73d457f696316", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4998f85f553f873cb078a9d1bbd955affe994b3d62817bee09a8924355e0f9ea", + "regex": "(?i)^https?\\:\\/\\/yuqwyroiquwquwrsuxcozcakjsdhauowq\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "32b313401ae55527c1520cd38191d9a54f9d6b6dbfb466cbfdd20ddb8fa60cd9", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "dd5118e8db2a67d61ca89d34168633f2ed9ffc1d928a23c77fbceaa84f61041d", + "regex": "(?i)^https?\\:\\/\\/uydoaoduouiajsdhxyzocyxozicupczxuw\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "031fe07612a4b980604abd5af3bc7ceac650827c44f408fffda279f43c9e3a39", + "regex": "(?i)^https?\\:\\/\\/proyecto\\-sut\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "377ad88187877ff8f72e06ec001fd6ee4ce2bdb005b1cc02235169ec60e75f20", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d6bff14b0aff1a6a283f074bad57ef1ab6b48cc599b71a36c00d331c4a3c95e5", + "regex": "(?i)^https?\\:\\/\\/yoasufaiusfpoausfasohshadoais\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5464b76d48b12d441a769048dc31e94d3ee25ee724afcddd199ef469e24ddaa1", + "regex": "(?i)^https?\\:\\/\\/pcaoseakmsdutiakcamsckasmaseasea\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "25272dba276d0f33b43647d5faaeedcfad477877e840d0c0727f36cdd553d430", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fb034808b4a715a09c2f253fd5a94edf651755d3709ed5f8ea2b5e7ce3fc6310", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7168f6d5d9cee6d26f910d6b2bdec81ff50785c40000b590687276e3775c519e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fe0812f2f224a5b6c838aa1dabc5db5eee705b95809a00dafd27913a37fd70ed", + "regex": "(?i)^https?\\:\\/\\/yoasufaiusfpoausfasohshadoais\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "28e7388302f031e594b0edf72160a3b4dd7a9b6be5f668b282571fd963b386fe", + "regex": "(?i)^https?\\:\\/\\/kjashfoashfkjashflcxzkbcnxznckjshna\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fa9ae4dc1a44d4d1f95d3c8b6c9759c75e9a125e155c2fa422e358612a0249ea", + "regex": "." + }, + { + "hash": "f615631209033d4ea26c275f9fef03d87c8d5e472e9971170b5963d967f94041", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "976947757617a3f1d9db58850504b3d492fc89f08fc86996a53a8cdf33af5353", + "regex": "(?i)^https?\\:\\/\\/shaw\\-101015\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "021e805ef05ce8d6da4492f109d452589d7b1495089d791dc0da62e1dc5ea150", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "bd5c68958b95bcd7e9cbe29058c6eec2c61247ecc4e80befee2d745ef8f12f17", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7be7db3091d98d10c4ef4e510972919a77be0ffbfc90599c899a2bb507363feb", + "regex": "(?i)^https?\\:\\/\\/auhsdfoaisasd6787atsd897ayshd\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0659b92bd05af27e8dd96af3a49a3be608882301da9f1492e2ba694aabdf55e7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "081bb31d76f41c70fdaa1331d65f4c14042e81d7bee54c11c2de5ae4aa1b0a85", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c0605881d74119675cb795467d05691e1fc1ff3cc715e0484fcaa8e1d660212d", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fbe44050d78600040036aa7b4869f09b4f20ee645f32c1d3e6b93228610dbe0d", + "regex": "." + }, + { + "hash": "c4705001cc4d95a62411d8d2bb1641cd14acc7bc4d7583e1a4849c98c85f5fe7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "71ccca8b886af9bd8dbac9f27d031555a9b0206f65fdd5197f17dbbd3accf8e9", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5b544f37bedfcc7a916e8bdae3e9cac77a20131eec37766d4358ea55ec53c266", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "36b1fc0ae85711b7057069b858bc909c274c2ac31951f8559fcfd6c25ab76f78", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "718bc2b0cf48b6641c6bd757e1bd1effed09b1b16aefffdaa30ccf501aab1186", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7a13b05545351c06e70f01db37f2e020c391a131ad4d0a3a2eecdbe2c5df3de3", + "regex": "(?i)^https?\\:\\/\\/jzelamllan\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2e9de70194f9a6115f77ff28bb597afeb7c1da6a0228f935092a53d9f110d7ad", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "60d91c3b08960e5752d29a2cc5ab150ff5d2c456856e88449f3e86de453a02f4", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsktmaschasucaksemamesa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a9bf9c1870d2fe454a38651b0e40e566f04d52f08855bfef2701e1baf60a2d69", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuytakscmackasem\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "eadee4ea570a3e364af7ac504441522ebb22e4551269d0c9a6301258e35cbe41", + "regex": "(?i)^https?\\:\\/\\/uydoaoduouiajsdhxyzocyxozicupczxuw\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c34310c1161360e5d3829b9be77a2a120d33fba35c0c2622a5a944b229173885", + "regex": "." + }, + { + "hash": "c25ab60ad1183cb972a19d0b12087578809c7a3926d0a21f6fe90fcf1c3252ca", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "17cacc216e3101984dacd7b460d837ba9a69bce047a2d679430a5f5e2eac4395", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmdfykslvckascmamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f6e950332a7744955f2d78a855675ba400817ea1a2ef755bd5087e0d8647fabf", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fe3c281498c75f27c7d39e002ca67bb55671358ef42f45f989134b546216db96", + "regex": "(?i)^https?\\:\\/\\/elishaunderstandmehegpqk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5b8679bcd10b3b25b94915cccaf2a60a91315741f72aeb0e009f36eb58336431", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ec5130a6f2ba665f3675b92d9fb94b83bd6a91b30411c09abd3aa31be2ab6aaa", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "032852d500f81d805bdfdfef9d0892e10c8c7a6961462a5defc9baf444e4f73f", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e3f7f3c262e5f2804e09dc4360e34ced8a01e2a20e0cd26b8c3a9a57b70772a7", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c0155196274f0a72352289b600ebaa63c349772fb3408649ab3356a7c0a2734a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuytakscmackasem\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e7a64da1ff192d476df270b637292468a691b2fc1a71628a0f593dfd3f4f5bda", + "regex": "." + }, + { + "hash": "dad6c7477b0dd9f5549fea6da712a6111434b842bd287362d5c9e2f4f532f1c0", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "81ef8a6e8311b624f8b9f6f07a3fd572579e281c9cd6977b79991db09357f3d3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4e85947e347d87ebf80c89e2128d5b8676659e4b48ab0aed020e8a935b26a6fc", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "55378fce30ef26f56384e70b8bfe166be16ac5208abc287d70381e2b32565174", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a9413fdf2a709df479e1f06baa642858b5ca15b004abfa87adf0ecf1d847d9da", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "962be6ffa0a74b90078ca24ada22d0befc3f737985b68e6539e229ef3890bab0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c43035f[\\/\\\\]+JTFfI3[\\/\\\\]+lfMiNx[\\/\\\\]+ZF9pJWUvcn5[\\/\\\\]+8Kn5\\-XjMjbz1\\-JF5nPyEhJCQjQDhfMTNAXngqbnwqdDZjJGUjYX4hfH43JF81NQ2(?:\\?|$)" + }, + { + "hash": "7e2a18239a92d77eb1d892f78469fda0a47762e9fd4ba1abc200de1e49b8e538", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a082cb3e288bb9dcfb7fc74669e48b8c6f2c75ca73971677fde531f0bd5ff90c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "43fb161d8594abb609a1d3fe3174e2a9d7726177c98b2a1fd0c190f7846d1f3a", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e5338239e2dd2ed9adeb4f4544e26e4ab286a2199b29c55e195e7804b2f06732", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7a2daaff3ad1cafb57190519d857f62f35f7196ec38ce4c1affb0b3a1c1c1871", + "regex": "(?i)^https?\\:\\/\\/infraction\\-antaigouv4224\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "117c9df1dff07b44afba1431ad9f34b7ca7de96cba616f8953a97cb46662c26d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthackasmcaksemase\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e1fa35604b1844a30f380f30f299acd17af0b8cca03f36161904722b1534daf3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b0e172f0e4ed86e99f8f64edb83bc7eaa5c641599bb3d8f319c9e64994114121", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "99afe1f32d913862129dedabb84ff598474431298e294492cd8f116b61133c01", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdyuakscamcaksema\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "37be647a17be88243493d42f60b3133fc79c6b8ba6248adbcf195b99a624c0dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "2e58ffcbad916448b319011364d5d6f0c34a39e193e53d69d8eb4d5b22a3f195", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1a34ba5525daaf4d9742d56e32e410bea7e7a0257a53998f79ca28379c10c0e1", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3033b0ac71c48b7a0f13d0d96151ed1acac7a8fbc52eaad779956c8912f88b51", + "regex": "(?i)^https?\\:\\/\\/auishfoahsfhasoijoiuwqurpquwoprs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e771bb857a04e2f21a99a49bfa64c497bffa8573706af56263122b92f7c2f5a4", + "regex": "(?i)^https?\\:\\/\\/yoasufaiusfpoausfasohshadoais\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2ec29c7595af6609b03b4e7a3cb398d4dc9234d02d612e53de1ff620c438d1ad", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e5b2647bfd08e2dc9ca17d530fef5b1dc01d17e61e8fa65e43da3a376fd07dd8", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "92a252103d7f83691d2c2c1ad3ce601af7b004048ad154426ba2fd1bf0abd494", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a1b597b614418089fb954b8a5ebd429098e8bfd58282aef2132f741ac14eb8f1", + "regex": "(?i)^https?\\:\\/\\/cmasleoavpsdktmachaucaskemaema\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "77a6cdb1e68c89cb9be4f0b5ca661b88c2ad9e3ae6f71413a4272cbc7121784a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d83e9e5a0f840c85fa0667e87ffe1986c2f0bb551e8e806b16ce5f5635061823", + "regex": "." + }, + { + "hash": "9675dc383279dbd42bad86c1c357083c83763c0fe1012fd60127d06aeae8961f", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9689361e79cb235d47d5063110e75ee76f455df8f8d4c7dd730ffe6a2bebb2da", + "regex": "." + }, + { + "hash": "ec276f5e4d16ee2fa0318eefa827d63a6595c812e0bf53ffb1bbc530d9c63dfd", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsktmaschasucaksemamesa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d33104c0c74a034d35e72c4da4c93534d96e6d39205a4d0855621a82e2529040", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fa536a24fcca8081056f31ffea903edceb6b5473b3523354c8a66cb65831e581", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "18c091c04e86ff003c83b6279cc7530a3b0293246a895ef08062392a432d1458", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d9da193be7b07e2c3e7521a78a92aaa976ad416d10c2267d3ef2ddcf79a8a116", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+valor[\\/\\\\]*\\?utm_source\\=organic\\&utm_campaign\\=\\&utm_medium\\=\\&utm_content\\=\\&utm_term\\=\\&xcod\\=jLj675537ee802235b57f732da3hQwK21wXxRhQwK21wXxRhQwK21wXxRhQwK21wXxR\\&sck\\=jLj675537ee802235b57f732da3hQwK21wXxRhQwK21wXxRhQwK21wXxRhQwK21wXxR$" + }, + { + "hash": "9efbbeb4795d86fa0efbfbde1102bd8bd1cbcd6bf5070f92937e448066a60f3c", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c324400b14a55196203c48ee673e9dcfcb53e2b93b597b1c264b77a20bfaca99", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4f39c338f87057ccba064fc3bdfaa8ef38f69d441894e0a8de42e50df586fbc2", + "regex": "(?i)^https?\\:\\/\\/aibygidfahuisdhauhdaihuzcziczxcizxc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6cddc612e05fc5cb646e8285c2f5c2bfafbd392e6273b444a5c2030370c3eaa4", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "609dc1c0daa0239a5e88425c68937df04e120e836100bed0cf414247802d9c4f", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "64072af78daa94e792cb593c97d2199dd033deec6489bd2fd4243fe027f033bd", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "827b9401b6f3f9c6056fe1ad1178f6cc54f1cf5f18542d682f0f7dec0b3c7d65", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "56dd86db1411c8b496871cf13086a12e8682b4903717bad042403a73c7fde2f9", + "regex": "(?i)^https?\\:\\/\\/uoqwryoquriuhskfklxjcxzczcouqweoi\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b529c10c0e2623bce52f9b8e221ffcaf8eb92272c5224cf2ee53eb180493c946", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "82ff7027e9fa3ac157503392e770f41ab7ab2f77630b9101b85e0c616cd5301f", + "regex": "(?i)^https?\\:\\/\\/kjashfoashfkjashflcxzkbcnxznckjshna\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "32ae8a78a846c06efcb47da465de759171f408d227679bc142312c3fade050c0", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c88b552266bffd290d44cb407b899843e4ba106df9265a6c17af68927fbdf35e", + "regex": "(?i)^https?\\:\\/\\/oiudpasifpkmdawmsananhsuoamnsdio\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e836941e82060bed905f1dd53f5dd7f7701495ca3914f3403dda7cb8a5b8f1b0", + "regex": "." + }, + { + "hash": "ee3c04688a8be9473df13fb7d4f0132f140448ccbf723dc66210d28c0b543e6e", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "104cbdfce6dd8491b6a24f9a4c02a40184e090d9737b6f5db064a7738a1683cf", + "regex": "(?i)^https?\\:\\/\\/gmxuser\\-100007\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "55b063591ecae957f8552b0a8b2174b1c9dc28a04a0b396b1a370e7d0b286568", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4fdf2f80c22417b2fc2f5e8bd7f4487b93397c1ccd378cc54d61e23795c7e825", + "regex": "(?i)^https?\\:\\/\\/jzelamllan\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "95c5ff49a01d6ee43c4c5bab4cce1d96cc048ba5a49b238d2be0a8038f70af12", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c392434a2f513a919a2cc21c44c521647da059ee3d4434a0cd814604b29ab7de", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4cdbbed60678f65a1e48cfbd00ea74bbc9e10ba055ae47587771c1c2167d9012", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b294d51ab5401e02a034734583a361953e9fd7adc9b03e3d3d2bf14448be188d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "38dff5ae09e86eff8081993576cd534ccf5dce88ea6186a763bd4a6a538ce8e2", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "444a4fbb913306196dec530ccabfa90cc3a468e90f100ba96338ca84c867d53a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f15d08bf05e84fd8972113048c8c97cb6f4f1c89cd19965d24a0d773b1297619", + "regex": "(?i)^https?\\:\\/\\/vaslminas\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "aeb5d33135bc933fc6d6ca859373a5cc3115c0cebab74d40ce8d5d48efd8e710", + "regex": "(?i)^https?\\:\\/\\/infraction\\-antaigouv4224\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b5ee0050fcd8e72da2f5233d5063de05c0cf27b75197a8f944a38e45a0d2ae1a", + "regex": "." + }, + { + "hash": "b5857b5666727d417268c6cf6304be929f12b0cad13531a44349770ce2ef71c8", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e64c013fc691b7e37f5f4073d3f641223dc5bc8080ff20ceebca19c6184a785d", + "regex": "(?i)^https?\\:\\/\\/hotclipcouture\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2e597ecfc578a5e7a56cb4824a5a8f8031136de36026300f8665deb8925d9e6d", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d79c206c847284504a40cd98201617745acbb1c19c1354ca46593bc90121b4e1", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6634164cbfa66d97fd9366c53818626c9e07084261d00adf71febbfa3cf7623f", + "regex": "(?i)^https?\\:\\/\\/elrafdinbank\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "26bcbf52b61a43b2a7698ab21b2f8b8d44a4e6e39b007786cc0f76da8577e8ea", + "regex": "(?i)^https?\\:\\/\\/iouasudpausdahsdfasjdfoiuwqriaioda\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "70f3e54fe2e2cfd60d67ef5a599f714dca00bb708fa0f08a79e72f517f63b63f", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d8a00377acd5f48b3b9b3734e8ccfee6e6cfd0462049adab0557893ad498014c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6d3785c5268f1da52ed1e48108c091a9412b66502e8aa2792baa6c17cae8902e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7de95260e2568db6cfa2f40a0fe66af0ce7c53a75eca5699f951a9cd077b91c2", + "regex": "(?i)^https?\\:\\/\\/bkashdbnxjkbcgizxhcoizxhcnoasidhals\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a22582dc62c83914fa4326e9beb0e3530f1ee24f5e90e7861ad843f1d6c500f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+points(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2f1421a70e2e9b3d670e226e9b1aac3197e6d4c5e463a5b0430f5e69ceeb6b39", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dc3847055b2ff5dcc19baa6b541fe37b9dd3433fdae34574ea8b05dd7428c896", + "regex": "." + }, + { + "hash": "c8ad3f6194fedb50f3c478986e78988c52270d826c6f5ed704ec0841f97f100d", + "regex": "(?i)^https?\\:\\/\\/jamkaiakmama\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "99f0c5e89f238f8d0bc702260b72a72d373d1302f5c955f75cfb3057aa17f823", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "402b8dd13d19370daefb85912deb8df5a544b9b75be4f41c0f79f0ce71c77d27", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "191a1a0fa14e390a6e8dd7f8a086f1ceade9513651ba679ee22fd9154b82ae5e", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "54d49fe4d51ccbc600c23cc734feb4e6c69300f36d7d0e24afcffe46d40faeab", + "regex": "(?i)^https?\\:\\/\\/yuqwyroiquwquwrsuxcozcakjsdhauowq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "80efb3d3530a5b184944f6af328426a6c1c069a73fb6fb53b091d3110b0b4455", + "regex": "." + }, + { + "hash": "ffe42f8d181f4510978894d1ff6bba5a9e08cab41eaf5f3c4be460a00640f5c7", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "68e7a26df6a07561610c88b6f3a1461c065876c42843f278478e50e4a2e20395", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3cdd9c800745af9650301792736ecf5a05119d764b44d7f79b1d008e62989feb", + "regex": "(?i)^https?\\:\\/\\/pcaoseakmsdutiakcamsckasmaseasea\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4d5ca82d789f4fe526871d9fb99623687468c9b75f48368c1dc1d7829c557430", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "aa44687f17dc524f53fda5be8819dc785284d19d8b0070452e98115505e2670a", + "regex": "." + }, + { + "hash": "15a88366af471f2d93cd11247c41e5030b481521dcac00be62b5a1745cfa3aee", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c1de549f85db1112f20f7bc737a43b3a6939d6eb0378eac24569c25379b28f5d", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "bccd6ee173f71f85c6f5df89abf0cae0be0275550f1cde8f0906667b3e063b29", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "40ecf9cae5fa284b91c6d2ed47641b4ed31366ba7f72a00bfffa4023a481159e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0b43877fc5b0fe9ad98bf58880478e1129a5b99a6cb8480f78c9ab7fce4d0b3d", + "regex": "." + }, + { + "hash": "e26de45e48b6a1e6a714679870b236eba7d86b357b3472ff563a9012af5ac739", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8bcedc75bd68fae0bae91189e98434081ebfc247803ad3d90c0483cdd84b4618", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ec76752ec73a3686bc528b8acf82007fb8aedca8d32ee2a220dca7d1cd487082", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "69b94f3af28c3aa096795bd5b9849d003e9e9a7daf60b9b57bd8120b1c1bc497", + "regex": "." + }, + { + "hash": "ed3f7c0e9ffe63e63c1d702440b5faa8fd4088184bf8a4a1a030d4ad267cb57a", + "regex": "(?i)^https?\\:\\/\\/mail\\-102566\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8e4aa5dd51ebd0511620fe59eba73c1cbee6394d8f916374ec0ef1a68e8aff76", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1b0b304bf0cb2c6ac4944839cc4dd52b57420eaeccccf3d7fcffe829e9dff780", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "202acfa4acd6c323c599d4cadc577fb2cde876bf3a28ab6f023d68aaccf54551", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "31c4ebde5d1ad76222dfc4dd54813adcc1139bd0f948e546ace755fb1268d89a", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d61a95f1ee5259e44fc7687f5dca944b699dbd230dd7956a8f9eaa6d03c52604", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "64f14430ad5e47b7811a012268a39e1bbd9f8e44f3fc53774a7d5ed65c185c80", + "regex": "(?i)^https?\\:\\/\\/www\\.142\\-171\\-67\\-205\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4654407f2530a2221889735fe983d3a68a7074825eeb99bca5005fdab1ec5518", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "df948a6c0208451313273b4ff7313f44846958925e681fb53552ec4ff198ea03", + "regex": "(?i)^https?\\:\\/\\/anakkkontias\\-kontoototlamsa\\.34\\-230\\-89\\-216\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "de0f6dca0766d16885aaeb60daa670734b8afd309503e095e78c3c1a3e0cd50b", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d35353bc0027e3f88d123ef36201e96efc6f3b2c4363230b42482045823a5227", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "79fd535686295e7f4f6f325d0f06bbd15c1385dae5d5b3f4ed670c04c4aa92bb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938ab4c6b8\\-636787bd\\-d60f\\-456d\\-953b\\-a8428cdf4e2f\\-000000[\\/\\\\]+kzPXLXWybpGBn_k9odBJhpKLn1Q\\=402(?:\\?|$)" + }, + { + "hash": "e290d73c2ae8e8ae357c565ef94e75d50fbfac975744430c21a7a0a0b983f829", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4e1a74881d2bfb917f41cfb365912be26c341b942702de5a3771fdb265879f6a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "50257e25f7241dd314b1e67e4903833102101e1329b47d4634affacd75ee3eb8", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsktmaschasucaksemamesa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "39f2a1b2490d006c90b7a1e82568571817c9ea2bbdaa9e811252beac68d7415d", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "827b9dfd8471bdd4eaa8220a0473eae581fa1576511f4c2aa95b242370ab689a", + "regex": "(?i)^https?\\:\\/\\/xgyno\\.cyou(?:\\:(?:80|443))?[\\/\\\\]+ua(?:\\?|$)" + }, + { + "hash": "97054e78bc79ecbc9a57b9fce5c5581763ac5c9145a0659ac4b776016060945a", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6204426dc2430085a0e54f934c04fcce057e70bd68dd2478e9f6210e767ffaac", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "67a84433a3d4b95fff9843a53942b19daf08794db3f0bb0147dbad05d8c2f848", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6c39db60029de57b67bde4192abd8600cd06c4b997a873d724abc53642f84fb6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e37fc9097e8255bab4405188501f1e3b7ae658b4fa77b473a94ab5ec6bdd5c55", + "regex": "(?i)^https?\\:\\/\\/naaaddaunofahshasuohdfoasidajdai\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "34421bbb833765778cbc9d67bf9f71b19032abad5a9a6ebb33ac8da85f29ff74", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a1a38fba9f7e68f78202c93cf75ce3f6af653c55fa2bb0c8b8e726eb06395f12", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "77d947952dceb53be304fb2bf0bbc5137f6707f8d6b246f0b4fbe8b9321ac7dc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e5d95d5d6e3d82c583cf5c27569f16fb8d44a485a77663557fe4450021c91f6d", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c742bd425279e21fffc9ffdcbea9c70601ac5dba61fda6d60a58c5e75a251d26", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a4c66edaa7a47955558f2e3216e31d214e16aa1f173a062298a71f841b4aabcf", + "regex": "." + }, + { + "hash": "b34c76d3362c107246e3216fbc5131ac2c4f36a82223c0bad9f93e9c8011bcbf", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6b674e87c70ddeabee7dcd4520c662c8c966c692a2a5b2dd122543b78210542b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a7f1ba73d9f4bbd0d74b25fd71b9cac68945940391708e12c52d0a06f0f65566", + "regex": "(?i)^https?\\:\\/\\/hotclipcouture\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f8979979b713ee0807c5979760f2efd2b7071f423b013ff984c1f0d6c52faa34", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ef35d1eeb69fd3287bf60663d332cec103e6e4b550b20d28b6415af86026be87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+openid[\\/\\\\]+loginform" + }, + { + "hash": "85c2fab595d8b17d1025c118e409f7d529607808d704f1c70dd3a59d01323c95", + "regex": "." + }, + { + "hash": "df57e9ebf3f039da8fe6e7f20d5179414284005c3b87bb65ecea6834b1cbe044", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f7895a50fe6cc8fef7566642c3d01408c6664fdc98a040e1f512b9adf1edcae9", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "34dc80a12e99022445eaa23d19c1b3bbabaf3a51f5180d1f1f25f94751b6253d", + "regex": "(?i)^https?\\:\\/\\/augsioahfnjskxmxzckhohawroiansd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fbc930b005e31f95752fe9ec030ab085f964ed12dba69e76c914763a7fc60ed9", + "regex": "." + }, + { + "hash": "e7c6a2c2e74cdb53e940518f5332b172d90ae1fa843b9e55b0cc55ba6f09851c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasme\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "936058b00d90216f6117fc7f1c5bb0eef3b9c93f70ec7c1ee41cb3adeba84629", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a7b257c1d284b2c6c919d147c37a84a1bb33adc98d88d0e8468da634e178a652", + "regex": "(?i)^https?\\:\\/\\/vaslminas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "54749b5e2655f2d5cdd7c053e2c1c3fbc5dd4ab33ff72b5755df3abdfb5dd0db", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dcc159209582f952b1d237e0f3a84baff61450545187f7b9833bc1adaca9d05b", + "regex": "(?i)^https?\\:\\/\\/home\\-100604\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ba0df94e1f10623fa5b72636691a6edf84d74c17d0e89e638f376afc4f6021cd", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f5da158929d9d88da3a544dffe0bf3fbe15fec8dbb6995ca8e0b0815afd18f73", + "regex": "(?i)^https?\\:\\/\\/bkashdbnxjkbcgizxhcoizxhcnoasidhals\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e39b044f6be2b002402e6d2e2764a3a6fa5d029d5cde5d6701356a2e0a97e671", + "regex": "." + }, + { + "hash": "5e346ffe2046317aff8fbb428f966d969cea941c27aed52391edc68a9a0488e7", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "728941b9272de665dd295daf495a7963d3f66f458446ec7466ae691d9b9eb23f", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "be38238aba92f2817bda3e478ae1827d135835899ca8bd35cccf6cecb8c465d2", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "2f2cdc3a40aeb36bf9b34bcf338bd303c948e80b293ef9ade965707a926c26f2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuytakscmackasem\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "46fd28bb1d528d5fa35adeb3db586d877f43e0b1db4e43f0023bd0a0a4aed5e4", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ecf1478dfb063a931316315a97cae5234646c98618dbfc424a5845df34debbe1", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f4a18f969ee8280eea37b7a33a952ed81ee30fe98b4588be4eecf6b08bf52825", + "regex": "(?i)^https?\\:\\/\\/iouasudpausdahsdfasjdfoiuwqriaioda\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7da9bc71982197a1f1de814a6a0ceaf920d78aa0a87eb18df3e08a991465376b", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e83ddfcf3f2438eb00b0325847e84cc6866409d5d8908775f07a4660819c9d92", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "789bc0ec1ff3c08c6867a22a357318e822cea50826704b3d38cf2e8debb1274d", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4fbf1d98c9b22a563a76c95975f5af3f02929663cc74e93f7af77f03a34c7c67", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "66fb3bd7f334911315813e07638f7acf65bae6d4655f418c3c095bf84e8e4906", + "regex": "(?i)^https?\\:\\/\\/gomonopoly10l\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "88481e66bcd325965bd25bdc03296a32ab675813f3a77b458feaf456c5c25d8b", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "34dc0d8022746197f353985c04232106d5802853fff55a9d4686c971fc0c98e6", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2cc56cc6498982692d91645c16e3421a4ea2dd5d29f6c151229d1769c5cb1409", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahkacmasme\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "22480f8a6bd24dcf6d094ed3c1ccb6ae5dbd1521a4ec9ba09325b180985eed93", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4cdb552381b4597438dd2e034d842087cc746c6e72bf3c524f6b5e38927d4af2", + "regex": "(?i)^https?\\:\\/\\/gomonopoly10l\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ab67dd6d3947277e1dd65f0b8e9b08a0a4c595526082029cf6e0af64252fe694", + "regex": "(?i)^https?\\:\\/\\/gomonopoly10l\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7e9657d89035079658e59da30d44786042a75e5a23272ea9918103e84f134071", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "78ab36d12fae80251719dc527672109fec62c312809630b1bb009547c8468944", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "745569a0801b05510540a6fcd8e6f8210f3c31abab8db13f50522055a99c85c0", + "regex": "." + }, + { + "hash": "02edf179786d18ed707331ebb2a80de86c76c51e07fc92ef2568c9376bc061f0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "acb71600104bbb14195060155bb36cecb4ffb582cc7529c95444a8881e9ef340", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasme\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "320152a09b6e08e189c7d6f616886079cee2487f45ac7aae54360c557b3d2512", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cc05637c3e03e8302e86686c4d8554ca4802b2a1b7f67a0d2785529d83c326a6", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c7fac2e23f6b9c83470aaf3ee775a567e908b7c97dc703ec5cf7890284b8acf2", + "regex": "." + }, + { + "hash": "78ecf96fc2bc2dd8836773a817d19927e37ca1e2d18c837d796a9f07acddc8d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+LWF(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ffe3b0d6458c2142b489ab8cb68b55df95af358ab82668bc632f95a642bd3270", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "70ae2de1f377407da02179221d85ce28edd33ad651fa539235b87570eb542155", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7e063ccb0c93947848b385a80482fb633e970fa607683f73495a408fd9a4666d", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a2ff962cc49a3c6ee52614b95986303bbcfb50fb9e910577f10a010d769f5456", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "29edeab8d138481efb01bce9c9b53ec32b93affbfac0b583541c36c2078522dd", + "regex": "(?i)^https?\\:\\/\\/vcbdgfterhf6789\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "96e45b81010ae370dbc0a945fd60c07a34bf21cd06b69f550f4f1db0853a0639", + "regex": "." + }, + { + "hash": "1a8c13462808b6f2ca63bfe627a64db9bed75cebe0db4232bc029134cd4dbb34", + "regex": "(?i)^https?\\:\\/\\/aibygidfahuisdhauhdaihuzcziczxcizxc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "64bbaa1ed93840c431827ff2aa1260fedd92871880d5d1f16cbcb56edfde3bee", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ff0479b235e9d81707fb26986c31eaaba37502a7a42b66b5f07e353f5eecd371", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d085c1facc6ccde7316ab1ff725a6f0f1652538a9bbff249c8bcd4b982d5c4cd", + "regex": "(?i)^https?\\:\\/\\/vaslminas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "dc931ed6a44242898105b6253c3f12e45afcd4b99f7da015e47ab6b4a1470066", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "24953557ed0b1782d7d2cb1a7147ed59901ce77286c5138689c71e1c7e144cd7", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a2fe0fbec9a6726789c2ccd699b721d9afaf518871a418d2190929df2b2351ab", + "regex": "." + }, + { + "hash": "1821e2f0bc738792fda2d5715d0c1ee0fa66a4df7ebae2e60f3c7269f06ceed5", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "916ee9143092b13f8b70e1b7b8008b67bcf70d2401b0ec057b637c5f4478fd9a", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c91920edf0e0c3e6d34e4c2edabb25af49cdeb5878aa082ee5d359262e75b3d8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuytakscmackasem\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b62c83277ac0355e46462f9388f109bd741798ade1cbc845cfd267736d5ff435", + "regex": "(?i)^https?\\:\\/\\/auishfoahsfhasoijoiuwqurpquwoprs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "37be647a17be88243493d42f60b3133fc79c6b8ba6248adbcf195b99a624c0dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "ba615975bfdb007d5ded882d9f6c90dd718fbd63f6df7ca7403abb6063c6e65f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuytakscmackasem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=https\\:[\\/\\\\]+cestrategic\\.mx[\\/\\\\]+\\?redirect\\=netflix\\.com[\\/\\\\]+login\\%E3\\%80\\%82$" + }, + { + "hash": "09a42e6501332d2945720d91e8e18752c1f31bff54f7461530fc2a83bd5ad1e0", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "96704ab70e8c0c53b78456258f2d236530b410cf90564ac08495d0d713758521", + "regex": "(?i)^https?\\:\\/\\/ytiasyfoiasyfuaibhxczjxbcjhzxgcklzh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "85cc316ebd44cb08df1f8e5315ceb21befeff31eba0ab2d73baea5ca12c90a71", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cd3defc2c4b706869022b65c0576e11b0b220c8c3ffc1b5b5b3cd9582fd1dbba", + "regex": "." + }, + { + "hash": "acac8b2d58092bf7d6af04b588f31b282a8469fcd9d2e1542cd6636f0c2bf6a8", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9bd70bf18d92dc4c6d01073324c8aa8ed0a00cb24fd992428e9fb011749b63cd", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "67f458359f96c519e3686962e6e6e96dac7391546ca6fc2dd639e4ab36e58d5c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdyuakscamcaksema\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b7b1ec46b48969e8012b802e44137de08baf6ef8e0dcb7507d3a81abed000168", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ffe414a1e64860ffb55e872374569a8f371ca9b73254929eb44e06871b30bd84", + "regex": "." + }, + { + "hash": "1ad692ec008209d5eb839662bf39281c3b08c3d59d2755f7a5a087561433ce93", + "regex": "(?i)^https?\\:\\/\\/auishfoahsfhasoijoiuwqurpquwoprs\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0889e86eb199d29f355050c12b94e3bd8abf4a771dad31d76ab875d6e90283a5", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuhackascmamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d9085b4e96db163541aac9e2187af07923a76b3946a49dc94b471342131adf89", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "78ad769ef234d640077a9a0965f087ff2629525d05a35ade57548917924fb87e", + "regex": "(?i)^https?\\:\\/\\/aibygidfahuisdhauhdaihuzcziczxcizxc\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e7be5a25fc38533d0b6aa3f4a8f7cc029ae0a330b2b69ac6dadfecc472c45734", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "76dd4faf4c3ab53c81a4eb389719b77f58c373898d5d8fea68961888337bf208", + "regex": "." + }, + { + "hash": "b6a959f67a482a44a597e361671f61f9738a12f43ff8740c82b4e3beed5efb56", + "regex": "(?i)^https?\\:\\/\\/oiudpasifpkmdawmsananhsuoamnsdio\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "76d775c04b4849c07605748ee800668a5d60d723e6ede2460fe6ee12a9add57b", + "regex": "(?i)^https?\\:\\/\\/jzelamllan\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c5eeb5df188c99037e29a19dd912edefbd8206b1983b3f4a8be0d1f44dc35f8b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6a72f27cbe29164cd56736f0019f5d8e491b9c2c7f743585d6ee2546598eea9d", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e5047e5a72caed99a162c5e9b5d2b413af800883f092a652cc8e591e4dca83a6", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8307d895d57819d43f76f3e598c351d845f293d8c51d544f8b95754882ac8adc", + "regex": "(?i)^https?\\:\\/\\/iouasudpausdahsdfasjdfoiuwqriaioda\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f41b6ac009c6fa35d1d8d128fb588cb12bb7f5faa6884ed0004b32303e1c59ee", + "regex": "." + }, + { + "hash": "c9c3b7232fba40fec4d3743a63d42d13318b5ff723b6716085d3a44f84a84228", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuytakscmackasem\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "97da3f3ed5f14e1c04c7f9238eeff928653d55d50f3947a7f55add423c53a5e7", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "33c57a3bed75a337b071859fbb3f9d347ccb8a4d7a1f658889ed441d2b2000c4", + "regex": "(?i)^https?\\:\\/\\/maksukeskus\\.link(?:\\:(?:80|443))?[\\/\\\\]+Crnt(?:\\?|$)" + }, + { + "hash": "a0f90b696f993d7bdd636a7ab42c87603dbdb8b38adb8113b3f1d9a015c29eb8", + "regex": "." + }, + { + "hash": "7be6b97af7d257177018644e38f0529581f9e2555efcf1dbb91bc73d94eb744c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d88d005f8e466e4b6e26a3864d6b529ab842a2184df9534d31dffc6d6c8e37b6", + "regex": "(?i)^https?\\:\\/\\/aibygidfahuisdhauhdaihuzcziczxcizxc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c22d8d30c12189e5d83b70eafe2c03835e5a1ee489dcb5d9fb1aa1cc2cd8116d", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "38d59c04cec3003278911a6258c14f750503e16122b65950e87a522a2178ae38", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "da7af327c542126dadf41f32d75340c4809a3a7626529dc48f0857e68ab42986", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "37d0f5df6a2a203dc240f963bd5fb9dc0b593303772f8c5a39bb20368853ba08", + "regex": "(?i)^https?\\:\\/\\/pcaoseakmsdutiakcamsckasmaseasea\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2847671b70d98fc117ccd083c773e79775883334f7f6e299fedc8921e45635f4", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "76e613617df533139e9facbb5cb7947931416c8c906a1ca879bb764ae8766f53", + "regex": "(?i)^https?\\:\\/\\/jamkaiakmama\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9562ae61b5c4ebb53029aac8f959efb1977f7e15a7686b51fd81ab7769723a91", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "47a3a95e00683701751a27d4182c919dfb769444e3cb27e30fb72c159ad86a42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ua(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "22e3fd9ac070916e4a972e035a8250e24685b79b9e82e78a9d82209a07c6d47a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "d3ca91f0cf828541146f8cdc9932e3a4b5de6fe38613fc9269afa911b8fff17b", + "regex": "(?i)^https?\\:\\/\\/sfr6060connect\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a34310fdbd93be7e016f8b39e2c1cfb5be3ab196f6ced30b23a4239b24ffd2c7", + "regex": "." + }, + { + "hash": "50a8a022b4f34a28e3108ef1ae6b14a06199c7c7c6b3939851ca08fe7125a76c", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "2077a8225a6f7623b547d38f7ff448e444d187d06b5ce07feb45efeaba562fae", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "77ff46f147c75806371c3a7a0bc74bc2ad7cb30f299a34610de09c50736022d2", + "regex": "(?i)^https?\\:\\/\\/infraction\\-antaigouv4224\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9d38afc2377ecd3fe0d37290fabf031b999fc684b176cfbc40ca0d91d1e562a9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdyuakscamcaksema\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e60e2644a68ed71b1a93808b35694c91fa4e4cadebfcd0a76e1a2aedc343b531", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ba1a95683111a974b2591b5788385b2a6d3ecbcf541531d442a191533b5b6d35", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3ee75fd8ac5e0b085c4cf1cebdee32dce695d0f6043f7e8b524044bab26036af", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cf27088f647857165e2e824f8487eed90ca00ff3137986d1891048e53e075c91", + "regex": "(?i)^https?\\:\\/\\/currentlymail411\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a46558e013510a7d217dec3efdaa7f3bf324685f6129e3030446a057450dc8da", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a09486d4bc672dbb3f4c3b1b380b9f5648dd07084228eb35737ff6645405c5e7", + "regex": "(?i)^https?\\:\\/\\/pcaoseakmsdutiakcamsckasmaseasea\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ce93dd6dffcc131de747e3fced7f4a66127cc47a9c0bde24a66fb60664333f8d", + "regex": "(?i)^https?\\:\\/\\/cmasleoavpsdktmachaucaskemaema\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ea772f03a59a86d96c241ff034ca17ee2b658a265a09766f0666526b4d6fd6d2", + "regex": "(?i)^https?\\:\\/\\/naaaddaunofahshasuohdfoasidajdai\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "62e4f3de9b6edc30e6100a6a6edf6e4ec7a5c63314c41471fd9b71f27b9ceb31", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0dcaec4e100b93c9bde2be5ca989a7fb69994a00f7dd5570a070b7c0478876db", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cc6072517a4780ec9f66c236a30ce5764ec029bbbd4bb8272ba54e6e64ed7104", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c5cd796612aea985b10137bd38519000537a685d7522ad1aea2aff92bb7a9347", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=https\\:[\\/\\\\]+www\\.naturalgemsstones\\.com[\\/\\\\]+\\?redirect\\=netflix\\.com[\\/\\\\]+login\\%E3\\%80\\%82$" + }, + { + "hash": "bd148c9da472d60c825c6e2fd8f94152713bba3ff0642e132ffce21ab402adb8", + "regex": "(?i)^https?\\:\\/\\/auhsdfoaisasd6787atsd897ayshd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "93b8d93270b46b528ab3721967479510f49ad1506b7f6a30bab85f7de824f266", + "regex": "(?i)^https?\\:\\/\\/hotclipcouture\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a2a78ccc7ae3ceb8705a726379a7669068ab6566f36c76f2d70cb3b9b919a010", + "regex": "(?i)^https?\\:\\/\\/cmakselavpsodtlakcamhaseuaeas\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c109e2b70c583ffc81be1bf1a9ecc46d8133f338db2cb4e9d45552f40fe1712a", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kffy2j(?:\\?|$)" + }, + { + "hash": "1d2eb3f466eaa6697419aeb161d4321eabb8538997dc209db724b1eb7115be0a", + "regex": "(?i)^https?\\:\\/\\/yuqwyroiquwquwrsuxcozcakjsdhauowq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c92726a2eeb04cc5b10b0fa34fa02f6550663fe44bd9b8c885fcc27802b6ec04", + "regex": "(?i)^https?\\:\\/\\/oiudpasifpkmdawmsananhsuoamnsdio\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "196258de4c20f6c197774838a00216bf225f1ec77b221fc6985977379245b1b7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3a28370137ea15b7b3e371cf93fa467207db368432c9c3d914af76279e22e6eb", + "regex": "." + }, + { + "hash": "055b05d877d3f7c07fb214b1be1ea825b32148901007b04156fdd00c91e099e4", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "96e86720b0a84424934aeaef2b30ca682eedc22e918afcabd0811fd751acddec", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c045044740cb2ca4271c0d43fe51b69bb1c6295782b57c84972ccebbb434a99d", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "905fa148b23585d5c71cd9b5d6491b97cd2c4ac6a68540fb660e85ffae5f8f47", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c395b0409870932efec166e71e29f7b19ca3346658e54cc284313912bd4a99ad", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ea23a674b271195890f50d9ffae58de59dd866910c8118d1b86fd708369f456f", + "regex": "." + }, + { + "hash": "be269f35b742240d520e768e90a2b3e3145a786fbea565f3ac84069eaff017b8", + "regex": "." + }, + { + "hash": "5213c11d769f383550daacd92be8777390abb695a829f72710b3663f5101a740", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "449e9f0914c82a1394114992543bc64ad64a0ee6108c9bb1c7250050812764a9", + "regex": "." + }, + { + "hash": "88ff71afc092c90cc524ef4c5dd2956782cc16d4ce0fc42b935ce7d5a5413be5", + "regex": "(?i)^https?\\:\\/\\/oiudpasifpkmdawmsananhsuoamnsdio\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a640bbe522da781dc98b6b7b89d761f9c652197156b5d5ea075fe3dcf7ed3596", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "592166ebee06a599cc3ac81d422b15f1cfb3383780456e4b0a11842510ee466c", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3f08c780cb8a6d381899992637d8fcb73b286461f36f407f48fec5ea6c5452ff", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "610ab71ea3d0675dbf4bf1d1ce4376fa3e4a08835db1537787bcecf164a132e8", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5b150ebd9824055904b9db8debc90f6f8454b255bf1dce3f654e2a0a90495594", + "regex": "(?i)^https?\\:\\/\\/jamkaiakmama\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "84a6d959eb24ca3a74d9d002058889278af6175d115ee4711b45067c40f225b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u1SJds(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "93492cd44ec0d3e1540b3752975ec0ef664a15ab4fd4b24703b6c4ba139b3ca2", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0c8bf25f6659bc8c41d02f9e3d59ff184679d8537c5d5f1bfc483ad6e386c9bd", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0349094137c3b371161db168fb966385b51ec23a871545c4142d202ec8d2d2ce", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5ae5bdbbcd3505124f65ad7cbffd0e10a58f477ae97a282dde8018eaf06915b4", + "regex": "(?i)^https?\\:\\/\\/yuaoyjkhzcuhzooiwurwiioqwuroiafkja\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c8a4d63cb25b71765a1f76431489bb8039c9fc7ab53772062713835be11af4fd", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2f1c94cffb54239b7fe56040e149991a721cba56fc4788e430842ef74de4b62b", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "287f4fee948904276c37d3096c283d88011c5e39b2e871ba5f60cc7f893d35a1", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4c1271bb1a28c127647bc665e829515bb8a7354514bb5b1775c252d9f5e5b702", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2e351c0da6952c329d127fa99776e8bd3e0eb97ed31edf70e3b33b262694951e", + "regex": "." + }, + { + "hash": "c04dfa08e597969e592b88ffcd857c1ea7753eb57f0b7909d40d4569ca306492", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmdfykslvckascmamse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b14c06c232df07632f12988899568ab87624aa0544941551213cc5fe3c1acce3", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5700cc37055d2dd76820e56090d71ff9b16263264583c9cc53898389f815ad40", + "regex": "(?i)^https?\\:\\/\\/elishaunderstandmehegpqk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "56565f93987463e75d7129d754362df3cff213dfadbf15945a9d7d8e67e6e3b7", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8293663b5b3e7c4fd4e43ada6951874652af9cd79497bc619a7e5b44d19fde79", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "aa58b8c96c68e4403572db1fa4b2496dff07c3c931e785d5ce19c07bf848d474", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f2b920c48982f958ccdaad0f1ac209cfdf2ab59a0bdc823e52231a5d24413aac", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9469e6e20e43743a069587e1fb3dfc2cc93576715333acfbfe1f7d169fec34f0", + "regex": "(?i)^https?\\:\\/\\/naaaddaunofahshasuohdfoasidajdai\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "83782b2b23f7811d3708cab275260c9d9a3e0ad534ebd77066d11742327f5247", + "regex": "(?i)^https?\\:\\/\\/auishfoahsfhasoijoiuwqurpquwoprs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "12d233ff8b487367f9b721680d6a37fd5df18d94dccaea1edc1f537caf90f223", + "regex": "(?i)^https?\\:\\/\\/pcaoseakmsdutiakcamsckasmaseasea\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ab6a70e21e705b274dc60db69dff4a6d2ea02c1a576db22b769e443946fc94d1", + "regex": "(?i)^https?\\:\\/\\/mail\\.104\\-248\\-118\\-200\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "326fc8b5d02e2963ea3cb7032bcfdb75d5e2c8ab6c964d8362160c485dd39ebf", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1bbd7c3071782bad83c6d3143c236da0a5013b1779c165069e31d15646f292d4", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ea2082d19660b2c8f32a4ca9abfd847501df3225505ae1d25767052942fbb3b9", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fb03702cf2c611c61c7697fc067ac29576df6cbdaa29e36310151571eefbb2a5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "dab20ac35a971fa6031ff6ad4ab8cc3815de309114419558435cefccc8f210c3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d050d393862951e71d0cb10b044e0c03fbab5d46951f48122dfeec2c88f7b499", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e1f076d49b5fd6737d52247b7ad26998d3fb2c28faab62623ca5054450453788", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0739a37baa2fcc5f8bba672eb2f8ba32a5c2f1378de67f2e151b1ca512a24ff3", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ddb864e831b3ffdeb8a0d27e4ad59ff64ae67baca6f4a22a12d07576b367cbb4", + "regex": "(?i)^https?\\:\\/\\/yoasufaiusfpoausfasohshadoais\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e590d4b7d906ddbda12d5d2af460cf57286931e8a1917396eff46b6623f3e309", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a5a42d3298e7cd641fe42dfe6885b0cb620f58a8212a63beeb355e9ee3c43a4b", + "regex": "(?i)^https?\\:\\/\\/elrafdinbank\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8c2b3f389e66b72a55e8a52686367bb6f1a4859fc28ec62dd0585fe25a2832b5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f84cb071a61262a5e2110a9f29946b55d8edd67365891ae2e380184659c24212", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "25c5d04c0466295a3f4489d4a01acc37bb8a162ef5dc7ab9ef7e70d427bb84d5", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0a6fcd29a0263ca292e905348ca1a0eb8d00313bb43fdeb8dbeddd2f25de6d9b", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsktmaschasucaksemamesa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a60108de7b220fd08c802f2489c225f07164702d5314fd7db63fe2209ac5cb8b", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "56f99de16e0272192016eec1ca821388eeac0ec29e331dfa99fbff8ac4498e6f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahkacmasme\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "93d21e3baca1273836f51d4c35f180526c62c32b10fc5073d992a615c762b82e", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c003941a27fb4e37ba529e69efa1df550ecc5db8be0dbf89ee504222445194c4", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdthaucakscmasmemaea\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "ea8fede73a3bf46b791d9e8756b18bd66b13ff69ad44d303a29f24e7d051b6d9", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "de504902497443c0722e7ec018389f1620a3b498ede7996b0807294b07909816", + "regex": "(?i)^https?\\:\\/\\/auidohiasdjiourqiowruowqurpqwpepoqw\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b8766fd8b208d980c635bf5866b4e782c2429264bda2ac28da8c1d4d9fa566d2", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvshdurkascmaskcmaseasea\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2dff65b78e8d13d72e22be02613b95e0369b48b1143ed1631f3f2111309c127a", + "regex": "(?i)^https?\\:\\/\\/proyecto\\-sut\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8b94da20e89b6ac08e04052e165e725d8ca6df8090086f53f436b52b20d2b312", + "regex": "." + }, + { + "hash": "a9ef7ae1393d05271a1bbd23a174ae10eba06c032205a5d4d298f8f8663bea2d", + "regex": "." + }, + { + "hash": "abbc0d95df65d6596aca47b39afb9f5c57682a43797acdd963d5d68cbc2c0e83", + "regex": "." + }, + { + "hash": "ee4028f2b88e1ca729e90fbe676bc478652a661eb53daf360a44bd5b85dafbad", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1bb98a24b23fbf0730e8970d14ad2d55f84b91d042051fdc9966bd16dbcb47de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938b460d05\\-d89dd6e4\\-c06c\\-459a\\-9d8b\\-61e5d7d14e85\\-000000[\\/\\\\]+jDkhkPasxQpUmAatXM2d1M9hqpg\\=402(?:\\?|$)" + }, + { + "hash": "610a85fb8298b28857bb3e8ccb51f7a1ed8e8e7af066498f5a520e4afc306fbe", + "regex": "(?i)^https?\\:\\/\\/oiudpasifpkmdawmsananhsuoamnsdio\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "440cdff14197c01d9985423649f6e4ebff1a09b7b8714d2b91d58e6c0b58431d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938ab4c6b8\\-636787bd\\-d60f\\-456d\\-953b\\-a8428cdf4e2f\\-000000[\\/\\\\]+kzPXLXWybpGBn_k9odBJhpKLn1Q\\=402(?:\\?|$)" + }, + { + "hash": "81436c76b866b9f1fdc86e0a70ea53cbcd804a16b1c7f3d137e629b1397a1310", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "85b0528dba4bcd36db433d1582c875ffa0b59b300285315b2fd9c0b93aedcd97", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasme\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f628a8ca77ab54304fc488bc8246c5814986a6c55920aa1365454fe3d922e489", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "25152b8e781eab3b94cbb4e2fa646f80fcf640bd334322a8a4d533bf400011d7", + "regex": "(?i)^https?\\:\\/\\/nzcxkcv39cbnzxczxcn79zxcbzyctx39cuzx\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "065623bc5b4c4b7f15cb1a28f3bc83b45e686784a4cdaa0beb48f3c5fcc84ed1", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "e1a7a04dc75d72fe3a7b1b604363adc231550cabee47ea248c4df3127736fa42", + "regex": "(?i)^https?\\:\\/\\/uydoaoduouiajsdhxyzocyxozicupczxuw\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a941e2127aa3bcb4de10ce6a398b90c76e0bd7bb5f12abf1be92ee70d7ad4fc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938aabac09\\-90ee4a2d\\-4a51\\-42dd\\-ae9a\\-bafa1a203b79\\-000000[\\/\\\\]+_qRdDui1PbgIZYOKZQ99NuPnSJg\\=402(?:\\?|$)" + }, + { + "hash": "698bf1e3e93fbbfa4bd95b944e3b0bd3a7fe2ce39463435d807963faa3f42cd7", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ammtqsxuzn\\.com\\%25E2\\%2588\\%2595aslusausg\\%25E2\\%2588\\%2595mlqexfjw\\%25E2\\%2588\\%2595wstnk\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDlljo\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c1e87065e7f5db8e9c07c3dbefe692865f3342b2829519f0fffc765a96121792", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8736e04473e834889e56bae704b785e910565d2c2bc44fba3812992bed5689cd", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3c0ad8d02dd9817a15090939b4fcc9d31ee6ef8b639a8bffaa7e55fefc2d277c", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0f501173f52fb8555441d1df23e2fbe728b555ba69961762e7a6ac1e9f3e94c6", + "regex": "(?i)^https?\\:\\/\\/uayoaoaiiufasoyfoasyfoasifuasfwq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "66fea535bd75b872c0042a91dc794a464eeba88a2e75e350ffd869d127e4ac54", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "323cd7d18db986e380ca1c26f9987ff2fd2644787c51dfdd6dd0d80183e567c5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4b17f336db1d29fd7479ff15373bcc9ec102a3ea2c210ab463f64c120d78d156", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0b1c9d60bcc99f8d41523b503fca2b230ba4b60699bb582140aefb3c17d638b9", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "8b4c344d522656d0238fa6ab52a80ae559e0f884f38503ec24872745dc601faf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyhackascmasme\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "71298ae19adfc1c7c5b8b69be6d8b896cf7408f71883c1ca2fbfc875bd1059e4", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f437f0ef83ea27cacbb5f822b98efd55bb3755f781d310fc76f9b881a9b0599c", + "regex": "(?i)^https?\\:\\/\\/oiudpasifpkmdawmsananhsuoamnsdio\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a0e15f9851b21f9c2089647162687d625673d1a9318c235472d21b019d6f4990", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "12d9b9b6b09a0d5193cd86e679701f1cced9d50ba8aeb4a92bf23bcaad3d027a", + "regex": "(?i)^https?\\:\\/\\/bkashdbnxjkbcgizxhcoizxhcnoasidhals\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3cc1cddac0ea767999c3ae5eed962513d7191cfaf64204c49f7ee9160174a139", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a3e512a54088c5bcc95296f3c6e60921b7a2d96c136634f74e183e9da1f777d9", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e2a200b6740d9abe0bcb36b676c6431cf23f665f487414ecc332a19e19207cea", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuhackascmamse\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0be64a33021504a876fb287c8d47553201529eeb3135ba684b435350763054c1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmdfykslvckascmamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "401bdc3d9613053335595b708b4cbeb2d794f9a419752e85f048b7f605b4c7a5", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "868d3f221d164ee2eaac64aa2e9fc003f8dd33b4d0f6da5f22ce8315e2346360", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "cdda775ff7f1d68e1cfd2a6abbdcc9d7d797f137c5aff8cf8ae14f1eba3c03f6", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "cf893ae7c331d7c2c0bccf47e480ea35fe6bd458a880bf54a87fecedaeaf74c7", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "034f87ab44826513124eaacf41faccf8428197d748df123881533b2c2b7672ff", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "05d8be6840677b9ed9785836aea75969a71b5a4ae4ff15e2e4eab1fed5d2e59f", + "regex": "(?i)^https?\\:\\/\\/bkashdbnxjkbcgizxhcoizxhcnoasidhals\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a700ee2e35533a7db1d756e9c099483b3a2cfb426218057672e5a851d7e434a1", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "84a60dec507479c7688255ed6b0bb679ab3db9c77e81dc3b3c956cd0f985e704", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4b173b96bb2e9160b652aede861d83e2285649dcdbe0cedfd97676ba405b3bb2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e72b4e88b5f6ee1c0c993fea56b52608ec1f735bd1df2158207fa53f81bbbd0c", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "bf503ce066a2b367dc75f051a4b5ceb384c12e49f2a3458b94361cecc3c76286", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b654234de5f197ca3b019c6661fc82d300303fd9cc9b65b1d319c542b42909bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jCFFC4Y3OTT_WNc1oVPGKSBH1pMNr9WHf_8EOM3NTJkUY5iVq98Do8iIB9Qyc9HIlYwCdvR3jsbuQOu3A\\-e4fBSQ_qfCs7uGegUWIDJiZjUKxAKrPZ2J10d78dk\\?kws\\=\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fav\\.tube4\\.top\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fakhwbjyshezaxck\\.buzz\\%2Fplay\\%2Fid\\%2F109093\\.\\.\\.\\%20312\\%20\\.\\.\\.2C\\%22\\%5B\\%5D\\%22\\%5D\\&si\\=1\\&focus\\=1$" + }, + { + "hash": "609214bd34d712cc99adbe081c851c94853c38481f74d9fc1dddcf35578bb018", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1bd151308c69cbb48c468224c620d3f55362a0e305dc9ef0a669450cf637d738", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "3ff76c20592686f3db2671b6566fa69089a30e808c91dfb02f2f9b7c1c143a76", + "regex": "(?i)^https?\\:\\/\\/infraction\\-antaigouv4224\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "164c1695b4dc31b2b8fc812b58f0a1df2f759bdad3cf8a0a7e93dc29cbd054a8", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "af845822d4d7bbd102b1d656fcc12938a87c98222971715f95b6f9087f291135", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "946f774d2fb98144cadac26ef13cb73a16a0e5a050657615d6171d977609e109", + "regex": "(?i)^https?\\:\\/\\/uayoaoaiiufasoyfoasyfoasifuasfwq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b04404d33dd2ae6fafb91bf3485935dd2a499b5f14e60101f80f457c71637ebd", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8522aacf81ecdcf0fddf5afb70c4269ed3c73d0e359949fa07bd76d3de0de6d9", + "regex": "(?i)^https?\\:\\/\\/auisyduakshfkjoyiuqeowiueiosahdkja\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1e198de923ee371a0daefef49c9cc2e6d7805c26aa996c0c121e69691f9ba5e6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthasckacmamseas\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8ee0df5d467a3e6aac1b58a7e898d1e5fc9226ac9eae28e8979ae010c6275999", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmdfykslvckascmamse\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8b321762d657a7a4de3572449989016370375a4e52309f6f76fc9dd0376ae051", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "29ed380b71405d684259646e1b2cee58aaec925ea808e7485ac0d0c38870278e", + "regex": "." + }, + { + "hash": "65df7061e0c218ada2c19864e2d963055fdb21b4557a2cc0a361fc67136b0f0a", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6f5a78dcc50bf6c04ca45a104c8d7d246ea1d3dc20c2878b6170618435fdfff4", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8ff8a8ac32e6d5d6ee75bc4c5f57380fc4b57243b495f0c0ec5e9c1bbd0e3ff4", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "34f59b4ac04f1f11e8bc8c69fce0e0139af2489b27f865c27622d031fabaf144", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9f6fac0ade507f609b0a59be9f224117ae4228fd439be3e4912e0518dd6645d2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "9b6df91789becd9cfd241cb60ba64f52a27c47d3b2d49e4aa2e21c504d375f26", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c09f2c82c24facc9f652f1a0de0a2957da6e52d7609e2244adb0518c8051b600", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "30299e15045e12ce992e8d5ebab0e01c06a22b66132ab9e8ab1ac9d663678717", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a941e2127aa3bcb4de10ce6a398b90c76e0bd7bb5f12abf1be92ee70d7ad4fc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938b460d05\\-d89dd6e4\\-c06c\\-459a\\-9d8b\\-61e5d7d14e85\\-000000[\\/\\\\]+jDkhkPasxQpUmAatXM2d1M9hqpg\\=402(?:\\?|$)" + }, + { + "hash": "4503bc18e5e0a02137dc698c74d06b6491875402210a77a77c7fd8340cbdd91e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "25fe12261d6e060893332396f998a83cbfcdbc85fc6cbbeb56813aed841e8c87", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e12fb705c472440f56c844fb596b5acf8d44a8d800e848ec10cbc55ff20ad6e3", + "regex": "(?i)^https?\\:\\/\\/yuqwyroiquwquwrsuxcozcakjsdhauowq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "31a5f4d8423935a7da9c583e4dd357c4178e4a1997880c15cb408f50f510ab00", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "68fcae4d3ea592561ed389ca97536c93b68740a882bdf398c41b49c72c430b57", + "regex": "(?i)^https?\\:\\/\\/jzelamllan\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1ea97b475cab67eaceb8a6655533c46505402670126348ecccb22d935067cac8", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bfa84eba662544ee873ed54b567f004894cc4ee112ab8f23b12c1afb96ecf0a0", + "regex": "(?i)^https?\\:\\/\\/cmasleoavpsdktmachaucaskemaema\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ba58d7445a7bfb1ff7e02ccd33a47613942591c621f2bc808e34ebc016f07446", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b654234de5f197ca3b019c6661fc82d300303fd9cc9b65b1d319c542b42909bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jCFFC4Y3OTT_WNc1oVPGKSBH1pMNr9WHf_8EOM3NTJkUY5iVq98Do8iIB9Qyc9HIlYwCdvR3jsbuQOu3A\\-e4fBSQ_qfCs7uGegUWIDJiZjUKxAKrPZ2J10d78dk\\?kws\\=\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fav\\.tube4\\.top\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fakhwbjyshezaxck\\.buzz\\%2Fplay\\%2Fid\\%2F109093\\.\\.\\.\\%20312\\%20\\.\\.\\.2C\\%22\\%5B\\%5D\\%22\\%5D\\&si\\=1\\&focus\\=1\\&pageUri\\=https\\%3A\\%2F\\%2Fav\\.tube4\\.top\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fakhwbjyshezaxck\\.buzz\\%2Fplay\\%2Fid\\%2F109093\\.\\.\\.(?:\\ |\\%20|\\+)+312(?:\\ |\\%20|\\+)+\\.\\.\\.2c\\%22\\%5B\\%5D\\%22\\%5D\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "616879f3ff95fa02f1c93de839fc95dd7d734e210474f979c0c58fcce6999f1a", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "49f381f88eb904ad453bd5c926e6bda496a1af7fad80a545a1743b3686712ded", + "regex": "(?i)^https?\\:\\/\\/reagan\\-webmail\\-107656\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1bb98a24b23fbf0730e8970d14ad2d55f84b91d042051fdc9966bd16dbcb47de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c8610ca\\-a79fd5c9\\-b84a\\-413f\\-a510\\-975b1953c451\\-000000[\\/\\\\]+0Ioi4G390NtY4D6\\-s2LkANks7s4\\=403(?:\\?|$)" + }, + { + "hash": "8da6e2768565c43172bdefcb55cb5b2e2481b5743f5dc8f9deefe9eefe821e0c", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2637689893a83891bef9ea0208b21bab1600f1201f66f4ac2b49055743eeb86f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b81850d7c3e44e51944468c8f732f63cc409c7aa9f98caba18d07bb0722cf00d", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4aa433c3a30917ea2fa7807f439d006a4d71883ae10146a1b11297d0de8239c0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f7cf7f0e33a1d837f93a331f1495310aefedbdad015b1613bbd9ec5d7a552f31", + "regex": "." + }, + { + "hash": "ed7f59a50c560311089fb8b57daf2d29360d32d4b9aeb1332ec10f3303548524", + "regex": "(?i)^https?\\:\\/\\/naaaddaunofahshasuohdfoasidajdai\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8e95f8debaa997e1d2e5bf4de2df5f1a0fc414b69b4a78947d0f6a16c7f29172", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyhackascmasme\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "31bb5552317fb0e0e55e54737e9c291fa1c66cd54d6a2b941a4d3696d7ef1771", + "regex": "(?i)^https?\\:\\/\\/auhsdfoaisasd6787atsd897ayshd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bd1da527622a3d5978ac70db92e1fd400875c327ca8e2869b8a8b6afd679ec97", + "regex": "(?i)^https?\\:\\/\\/uoqwryoquriuhskfklxjcxzczcouqweoi\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "78c501efcfd93509f6485563854d546235f21b0c280fa3f185d0bcb9a925921a", + "regex": "(?i)^https?\\:\\/\\/oiudpasifpkmdawmsananhsuoamnsdio\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0ed7121aa3f8a197bef0d67a12c2d329f90045d8bd1b3e5c304ac9e86272c3fe", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b83535c5e8a287c546cb1f57a31a8a02c696578ec635b2e517dc8b8e34649ea5", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d16d7aa169ba0a77bed8a0b1c00122f3dab59c61149c418f9b6d66114be56939", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "825b4df98626525fb9f6ec0f79048fe52903e182cf9a7b855703a91030bbf72c", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a7985e4b70afc8b5320426def6b101dbe5281f956c50c3b6354f440dd369a7ba", + "regex": "(?i)^https?\\:\\/\\/hotclipcouture\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5f9594027f3688b25be41ec4f548e79e7c1488a0b00a885d2ac72b7536200c7b", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c1e8d678e4fa27ff7c93f6a3b63670ac344b1df4c214b6c7704ef25fcef56519", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthackasmcaksemase\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9411d80784276fa5c7b2dfa052a36a46edfab5348714cf24f5d1d89e3b5efe1e", + "regex": "(?i)^https?\\:\\/\\/att\\-102348\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eddb6a8203fdbf2f871ee4a774fd0fd8c496fd5647a58984962ef3fb7da0c1ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4707f2a93e61e8f6b4c00d70b787b1ce59fa972e245dae0958a54a586648e6fe", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "030d3e5b40791479ae4abb4c08bd412f83838f0db8c64b2936119abc51cb8b0a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdyuakscamcaksema\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6ee8b1315e68d06da0e6169412ad17cd5949b5b7676ba007d3acfbd89a0abcc7", + "regex": "(?i)^https?\\:\\/\\/bkashdbnxjkbcgizxhcoizxhcnoasidhals\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3fcb12875e11fb677ec4e311dbd80b1497972c31e3c7b28404ac24058e480fd4", + "regex": "(?i)^https?\\:\\/\\/netsdfgidkg\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "99622d73f2f35d9360bd551637fd5ae6aa42ce9870f74bd58a14130464eda83b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "79ceb5f12329892234cf3ba2b711a1600e6d5661ba3215778dfdcc4ed8faa7e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a66d3c55a68d5a520c8a99f17b8f9b1bc2c3c55dc967593715acea591949aaae", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ef91a95309062da97d9f97cb3bb8c735f73417da44802eb39750daa618dfeb3b", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5941f13f6518b47f9edab365b0ddcda33798564c6d9e71e3ed05dd2e1073c743", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5bd5c6833bf401d65e1fdee8bb8a6b3d9eecdcfa5e2113250db9a79ac377924f", + "regex": "." + }, + { + "hash": "49aa97d17878573248909f0750f8ec732914251b958d4fb188e5a493f7fb68c1", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ffa95fa3fcb8df296e4060cc1b7cdf0a6109097802e149fcc3443f3789e4480c", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7b4d2ec27f34246601f40ab8cfbc3c8c8d96513666ce8bcf82bfe24ba920ab2b", + "regex": "(?i)^https?\\:\\/\\/auishfoahsfhasoijoiuwqurpquwoprs\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b7db4d2c9b690d6c9e9328abb710561d46e982a5fa01b843124b1329d783b54f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuhackascmamse\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1efea64b4302898c8993efd46a28282441e9ecc5c1a96052496e6999bbc5a3ae", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcackasmeasme\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cf1fc95a9e994b3a9d9571f913b72026a844b1aabec89a47aa06b90879707937", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7e4c9bed3f3f40a1e960851d98cb8a7fa286ac8073fbf2f696cdafb63c89a366", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c2c215f94daa00d213334d2864cbfae6b437034def2d274783b313af8ddc26a7", + "regex": "." + }, + { + "hash": "9fd4f5dc2c4b93ce5771cbeef1dbfeafd345894e8715fbb3e00f7e7e41b70f59", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1c515ce1508e1b2ab7ad38810cba5fce355ca1ede93e0221887b431247c076bf", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cb93535cfe0996c68231690c6ff382f0fa91a92391fc307f36bdeb9b2a307486", + "regex": "(?i)^https?\\:\\/\\/ytiasyfoiasyfuaibhxczjxbcjhzxgcklzh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "36f95609398991eb33dc1b7bb3747a0cb4d74ff51d7a809f98a17017b4afc4b6", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d0dd69bac38843bf9ee073aabb13b76f6aa08c52783f15263d1fb76e716eda65", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c20f17dcbedbd467f677b943c454559295e424e020f0845cee5ce6d527c0b9b3", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvshdurkascmaskcmaseasea\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "99fd7a4c07387be4c5bbe4b2b192afe2245a4895cf447838760535df684400a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+dy4_ykQy(?:\\?|$)" + }, + { + "hash": "e64c853ab232c6b8dcfceebafc59df3c5780a9f1c872bfaea24246183898987e", + "regex": "." + }, + { + "hash": "2025eaa680be6523ab615947d6eb97f8706af9fd814d62c57423e1498539eeb3", + "regex": "." + }, + { + "hash": "b916cf424bf3f1f5494f2d46f3c044be843493209010e37ba991e6e51c9ed551", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthasckacmamseas\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5ca5acf3057179fe13e109184c5f3506830cc340d72f6d2eaba906911b31c760", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f7282541077740fae4727f6585466f34b511ab51a689548e4dc4bf96b829718b", + "regex": "(?i)^https?\\:\\/\\/hotclipcouture\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "304b238fb7fd157e496d7e45cd818b70638f6883337de7c9bb2b199ecd8a5225", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthasckacmamseas\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c5f57dfe50a61c469a188cc9b31627c05d04521f972ca96e1bed1056fddb4d9c", + "regex": "." + }, + { + "hash": "8dc55858008719c4e3b2ad6445d46b23a29dd981a54bbbd642422c6a42b0f5e3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "420a29e6c82eaea81f1ff3b01da2e8b6e01aee3f966aaa0eb30d8f04a7efe4cb", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3dc6f8aac885637a7ebba9e8656991f6223ae6670fbba683c4845c86adb34a06", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "21c535198ae5ff929fcccd3869bea0abf256bb3daf6c34e6db077d325c85fb97", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcackasmeasme\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0318a8fbd5166dc1fbc68d5746089e2003880444235105bdd27854c36c419e66", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c39efdea0456ee0e274db4e289f605647bad32992d0733c15e54b7d71fe9fa2e", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "90968668bd0eb3adc0afff57caa0e10893ef29da55ca25bb2eb0ae04a9e170cf", + "regex": "(?i)^https?\\:\\/\\/redirectionred33445\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "00f95ba069a10ab0b0ed9b7a2b1f1b218ba7200ec3c68de17faba500023f1bdf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "26ca206ffa67f7bc00e00e4d78aec4e9a95447b0b0bc5c19d2e4aec55d481659", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "cc01bacd57e3d6ae832682d6cd1eb8e08955c9b3cb5e429bb31377eb0357c693", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvskdtmahscuasckamsemaea\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c3841532fed5d3a6b9a1f3e66bdf94c86f67dc02aff2c5a6680c986548e73126", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6051df5e18e1855a2aba8c496ef940db85d20550cc518cee133075d4bce5a559", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2d4624bc68ddc0d9c8e7d9e073efc092b6b1de1ff65ffa68b19c3e1939a7c8ec", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6be97eba16b0727089f827ceac104cd32127415ee972292f28c44fb42c4eb5f1", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0655b74d111e191a741fcd17087e3d5e3cb900875816cfcba758e36b349d36c7", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5b07632d43ea7a27aa2112819af396cf38644763b6a74596d777d14ec667c956", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9b014229daf3a103e39bab50bbbd2ab2991c4d569b29e4e8c96a511ba7157a25", + "regex": "(?i)^https?\\:\\/\\/kjashfoashfkjashflcxzkbcnxznckjshna\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b7a51192cf1ee6b960d739323f531e7edf4f7c6bb44fbb507dbae59710d0f327", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4b82a3ae17668c321eb5935cc9d4b8a0d94ae696745845d79080d7d60a0e90d6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2685925b209ef796da9344ae446c9a46038ec1c4074045ac2bb954117d0b2177", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "941c06897bb08784eeec3e4906adb38e3280dfda2e2093ca0ab7d496aa5337d2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d0e8513fc97827c17dd1c3e21f57eaab43cc69f6d20b560794c640a4cea45090", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2e8f5d28552755175fde18c0f388d15a40f148a89fb8915b352edda6837ba2e7", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "60f4e0c64a4c88d130ffbfd125d6b0e37ac2d8b20317a5109181625ea4631097", + "regex": "(?i)^https?\\:\\/\\/gomonopoly10l\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "65496e3d39904a6095c80300b99d3693d4f05378366aee899976501f61ff24e8", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "1a24e78020ac27381a20e86ba52232ee47c96722b4e24175c75a21cc9e5a6a60", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f7bb87347396086359f80343db70ae2a3e58d4d31d8706bb57d0cec1780884de", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "55a41b2df72caf18aef6c85bfaa2b45ff027f8d05782ad36e3833254a65c7ad0", + "regex": "." + }, + { + "hash": "3a3553b548d9d6a586696ed4ebc441c7ef544b8f4d32033a13976cd66ca885d2", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f089a48bac670c26729d597682680016bf7681929b76f41590f07e03d65a03a0", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6a17c92c4042d6c5a4e6c341283e6a5db84a4e5ccc6f05882d61d4076571e333", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "20ddf95ae616ede27ab00b56486f6369bf8c29aac779c26aabb563cfa1d569a9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2942b9dd07f6344d99b200f18e5b66e7ce5d5a0d75d63e294f08a7f88045e5be", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "672240dc61e5a7781f4b6b4247d0b9f1e4b6fc714da3c267642cb75a197ca11e", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "fb5c4d67f2294eacdeddf4ab20eb348e003681e778e8ff50cba7b7915bdb3373", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c7979ca039e6d93f0ff0449d6a874b5f3d637419791246e61a4fc36b8205a892", + "regex": "." + }, + { + "hash": "2645dede320d2c1a9b942e57b21ce280c369b6041a717d84498b9b4a683f0286", + "regex": "." + }, + { + "hash": "df948a6c0208451313273b4ff7313f44846958925e681fb53552ec4ff198ea03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+locked" + }, + { + "hash": "fbe3d8b5c64bc698f4a7aad9f08e5a1625ce4bf02e38e008d704bfd43832256f", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "83f8c83f63473bea2512e8e3dcdb95092df40dfec038f5f8e928d45710ae6279", + "regex": "(?i)^https?\\:\\/\\/currently6510\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dd3a4ef77925b505bf2a5a59339216ba44d2f72636f96b8e7664c3119dd160fe", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "04beafac682a94c7e6a7aa86e13e10ea754a08240bdb81702ee00790246ca0bc", + "regex": "(?i)^https?\\:\\/\\/auisyduakshfkjoyiuqeowiueiosahdkja\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "09c3a345be302c8280b070c910c58e6e6b06054f20ac0cdf1551221e81589598", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "af2fd82dc835407e0ed5abcde92e8bcc216b091ebaac185951371dc1f8b2ba84", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0d2fe88288ee5087930d61194b9e785478f24f3cb4e261fffa3ae5f9d12faa69", + "regex": "." + }, + { + "hash": "ed4b60f0cc509f4fe526f5296abfb9b3172299671ed67807d0aea73b8129b149", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5aec0a056ebcce0b1db32c0b6580d0986f96ec5ba6b3ee55fcea516b6f5ab3e4", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d2d12183c91d8e05ee1b19fa2ba23f0ea314f9d2f4ffdbfcc8be671ade0eaa18", + "regex": "(?i)^https?\\:\\/\\/auhsdfoaisasd6787atsd897ayshd\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9a02d8d2a9588cd2fcf9d34f5b5c3fd2c8f82a256800783be48cc551e0b9648b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=https\\:[\\/\\\\]+cestrategic\\.mx[\\/\\\\]+\\?redirect\\=netflix\\.com[\\/\\\\]+login\\%E3\\%80\\%82$" + }, + { + "hash": "f1f11fb8783a451cd7047192a7bf9ff2f1fb2aa0b80aebb5cb6ffbc8c208cb3f", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d61af0fee228ec946b77998a7b2b2b6e4ccfb39ea7c95a3778109ee1929ee518", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "05c1af252d15812225e8c9ffaf686cfe4c416408f2f7db7af5de78f3cc502dbc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "5464720bd5199235403c414e3d01f8f9ab4bc1c8b3d3366aae0f03d1fe4ec25b", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2942ae30bb91c29a5cc2ed6cc6775ba86fb0faec83694096ebe3106b294a8f8b", + "regex": "(?i)^https?\\:\\/\\/ytiasyfoiasyfuaibhxczjxbcjhzxgcklzh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e3c6e3ad50fd3e47d798c76d9799fa5d091b3d08bc41d7fcba21537159c80019", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5009ff7fdd9b1b0c163704c7ab6af03778c65baff669eb000c3ecc812f2759c5", + "regex": "." + }, + { + "hash": "3819a403fbc8bd30ba32dc315f56cf495e0b721ffe275ac69d78e4977629f00e", + "regex": "(?i)^https?\\:\\/\\/elishaunderstandmehegpqk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "635618e3510aa0acceb1dc1dd608728c74049ec24b77813c504bbeb5abff86e1", + "regex": "(?i)^https?\\:\\/\\/infraction\\-antaigouv4224\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "67b9293cd972599a2d2df25c7a15bb118018fa12a3cbdfa66eb9060939c09541", + "regex": "(?i)^https?\\:\\/\\/gikgf43\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0438bc50ed84f22104f87d1a5c2aa031089c10920cd502d7387d8916fcbbbe80", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "656cbe87e3005d34210f98d35bdd1aee3b15e48fb8a46ba8c4876a79f54257e1", + "regex": "(?i)^https?\\:\\/\\/pcaoseakmsdutiakcamsckasmaseasea\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d5baca3b23fca0935cb3c9e99acd64cd08ee9122fae922801c5211902b9ddda6", + "regex": "." + }, + { + "hash": "f9d9583d72dfae6407ec17a380085521a100fb7740a1460936443fcd28570357", + "regex": "(?i)^https?\\:\\/\\/gomonopoly10l\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "36ee24264b55e29e0a302a9fc65837e246f74b908e38b5fda458bb56847730d0", + "regex": "(?i)^https?\\:\\/\\/uayoaoaiiufasoyfoasyfoasifuasfwq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "865eb2af7b9b02b73a8e6ffa5655038febdc5db44fa0a9cc6214e587d3094580", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahkacmasme\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0eb63d32a2812f7b2084d448fb5e2f5dd3535eadac0b9571d62589f1f2cac421", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f445ce167542aa7a50f071910b54818245df3ce8a7fdb84beac76528d55c963e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcackasmeasme\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "64c87a00536f41f6991c352357dceac7f1627f90380c30cb3647407863758bea", + "regex": "(?i)^https?\\:\\/\\/elishaunderstandmehegpqk\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e914c0f0635b93ea5e1430b33a5d3dcc4a6bff6ce8fefcd244e2f07551f124b9", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "eb7597cafeb688131f85bb9c2e0bede9422d8e5761e1fdd349409d93811c5b7f", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "82c0ea0c9729a71d037f78f86a2aa67c0e198aaad65c4b43267901c038d50eec", + "regex": "(?i)^https?\\:\\/\\/vaslminas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3033a44bccf2b18d91ef1bde4d5b95f2b21d43aed606cf382dcc67a3c4393ed8", + "regex": "(?i)^https?\\:\\/\\/auishfoahsfhasoijoiuwqurpquwoprs\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d3269ffd9469d97c80c4f0983af0dc74bb2751b8bdc0f500f9286fe4f2b05cc4", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4ee3b634eb01b6a3d3382d8872d60a81832f0c08ed504dca54b7c4b94a01797c", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2b9e51230ea4a60b97840c369ac459e3d9065a4fdc14e03fe04b416a93a3e748", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "babfcb9b23f9bf5d7adf22b2e2100f6778227967162fb8e304f6ec71e591dcf7", + "regex": "." + }, + { + "hash": "87f5f642e367d4aa0218789352cd8f138503a17af54f8d7be70d8ce36d1900c9", + "regex": "(?i)^https?\\:\\/\\/elishaunderstandmehegpqk\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f3800bbd4f4d409dd48d542bc9515985c5663ff47c512003cf93a73c751388f2", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5cf973328a20482ef80c37753a933b80374652de7e46ce1cc13517437f3cef71", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "79ceb5f12329892234cf3ba2b711a1600e6d5661ba3215778dfdcc4ed8faa7e5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:\\?|$)" + }, + { + "hash": "2b53c390bfcd5080e4ec79966da9780d241a782cd2154dd29fa510bd718ce232", + "regex": "(?i)^https?\\:\\/\\/vaslminas\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5784566c30662e6c2cc136c3767889d1f57a6d8cf492aaa8ea937e2106e338c3", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "748761b43ecefadc6ffbcc80650c7c49356afe5a291b3e569aa18424282cab47", + "regex": "(?i)^https?\\:\\/\\/cmakselavpsodtlakcamhaseuaeas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a601eec6cc4bdb372db2ce5832d49e2bd147ba245563d3e1043415aadd2b783b", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7a80771c4e50b029af1131be2ddf1c5992fcc74daa7f7282bcc491596eb0ed26", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2bc721d10387fea150d6e3717d1e9b2193a50350c9a207703b3761412c430017", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1cab28e426e38b81c717bd9641dece4dc0751221c3da098316c6857883f6667f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuytakscmackasem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0ff7a22910f60abf147d0fb237544f6a947ad6697046d8d5aec0398dd1578b05", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "357220255d2cd33e06b63bdfe310ede900d9eb8c9b0a42e9e08b1d1513e95c13", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthackasmcaksemase\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "921762f005d6b16985abb6861f481a6896ec88e1635a74107d31903eb5d4a9b0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmdfykslvckascmamse\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c6fe66190f7edfc875f93ed9c3d352ac29ec7535bf261202b5c05b22fac6f41a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "47a3a95e00683701751a27d4182c919dfb769444e3cb27e30fb72c159ad86a42", + "regex": "(?i)^https?\\:\\/\\/senga\\.cyou(?:\\:(?:80|443))?[\\/\\\\]+ua(?:\\?|$)" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c8610ca\\-a79fd5c9\\-b84a\\-413f\\-a510\\-975b1953c451\\-000000[\\/\\\\]+0Ioi4G390NtY4D6\\-s2LkANks7s4\\=403(?:\\?|$)" + }, + { + "hash": "fb611b19ee45e9172695cbfbb600f1c8cfbde3ed191acd8e1525a1fb959e1857", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahkacmasme\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "28f81406404daeeb35f9ccbe414a182c9c713b73181948f910da26fbd0cddcc9", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "27bb3c2f9308ce3f963e7549dd6d97515c53dd06be35e659b91acf2c8ff8f0c0", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f4796c850006b67c7624d58400052ed49d6b238049c5bdea5531e83671f2747d", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "faec324d9e266e04d45c3010e865f09c16ec275fce5c8734fc0eb1f6c729b2fb", + "regex": "." + }, + { + "hash": "4b523295393302f00b591d569a4293f4d79690eb780588cd48bde0ad8f004064", + "regex": "(?i)^https?\\:\\/\\/zynga\\-poker\\-toolbar\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "89d5f51fe7c9ab7d929644081c884387b2eca47cba04091acd40f6513fbb115b", + "regex": "(?i)^https?\\:\\/\\/uydoaoduouiajsdhxyzocyxozicupczxuw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "97696caea412658109e69202a184113a4dfcc5532b6136480d513dff784f9a8d", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0f8577273cdc3e2c22b984eb3271532bfa0aa712b7f2d806ac9a06375dd1a22b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "1caf180f3fc935717e0642d5bdb2eebe8e60b3c9ee360614dc714e8a20738ebc", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e28f6c6a118bea611f068ff66f080df5f6f1184151cdec18c6dc21fea7d0b8f8", + "regex": "." + }, + { + "hash": "45e738fd7ac3fd42085663c7dc793805162d78494bd94480a36420fb588f2cfe", + "regex": "(?i)^https?\\:\\/\\/yoasufaiusfpoausfasohshadoais\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5577174e96762359361bd1fe357ec555daf4995bf438d1a5aee202394903e821", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7a12a8f2e81840fd424de339b140f477aed44be09efe7bd67ec2188b16556ce3", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "39f3ef3a2861ba8650fb9e70fb05df1804aa4bdcb8f4aa6050f513e9be36b536", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsktmaschasucaksemamesa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d7665e591ef159a6bd97cd3a61d2c515f1c420c3582a9cd44123c7b16be6a813", + "regex": "." + }, + { + "hash": "d713ad6ed578cb147d8b884b4a4afcc24f2bcbe7fccd1992b6ca119619c6f640", + "regex": "(?i)^https?\\:\\/\\/sahuhardik22\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "559c4b24c16dd3477f0ec59f53eb20a204530c3982394b42ed501a02cc648123", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "4a7dd84e65bab935b15bbc00eace752c52786827faa7ad6d1c8a5ac5ddeef68f", + "regex": "." + }, + { + "hash": "c17dcfa34c1da60637b5862113da01c3d9fe14eb8eb3e7c3d6b15dd1b29b7f64", + "regex": "(?i)^https?\\:\\/\\/proyecto\\-sut\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "320dae28aeb6e03465890d718236aefb64b73a736d891c918c7c74ac161af77c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyhackascmasme\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2b9d375e1c3acdbf660e5d95c8331ff12c538cb76fea9a6a26898a04d2234306", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "89951cdfc8787449d62240b0481a2c3a29263a8f2724f77fb01c0bd49809eda7", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dad5e77f71012e757e0623fe25a28905321e5f3f05df85c799b8c465730f931c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "687d485d238f267bac369180c0737c6c331e32d17c5464045cfdc9f8071f52eb", + "regex": "." + }, + { + "hash": "eb9d11f27420fac9707895e070ab7c5d95953992d8a03e4e62f0f42379a9f4cc", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3abd0b09e8f1e333436b2e28c6c769077ab5525839975a3f47506ebef6ead9d6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938c962ae0\\-36c1266f\\-8c9d\\-4e31\\-8319\\-c626605e8fac\\-000000[\\/\\\\]+LtKzwAiceYuC9P\\-KX5fuWXo8xQc\\=402(?:\\?|$)" + }, + { + "hash": "b8abc68a3cddf51fb7a1d79ad1b9e87fa7fe3f40d505341e612c58e9f19d0767", + "regex": "(?i)^https?\\:\\/\\/iouasudpausdahsdfasjdfoiuwqriaioda\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1bacb59d50f993ce24cb23ac1043009e9a89bb3e23fdf403ec90a11ca9d7a8d5", + "regex": "." + }, + { + "hash": "cabf1c356a0a3357b7d729e83690b3764052812a93861cd062825b78888d852b", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "09947444ebbcff0061f787f7f83159588fd5e1630b07ed134a684d77094d2259", + "regex": "(?i)^https?\\:\\/\\/jamkaiakmama\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d4bbc555b2d6fd60d220132949e26ac296ef0dc194e8f56b20692b569900262b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8f7586ae3150ad6fa1bef75bb7ddb212d8688373e6e827e3aad4a91110d55b52", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "21a452325a7dcfa1dc18878432eb1e7504a0d1835509a5625020da6479ba9f05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sumap(?:\\?|$)" + }, + { + "hash": "c49443095ebc1ef1c09b6a8127aa8f15a2fe0d052cf94edf029f4baef309d2cf", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "78c7c77589667cc7eb81ccf1edd7b539c6c1e294612898f3023d262fbdbe14d6", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "485f46c6fbe2f8d15da04cedaaf5f3a9670c8cf6d614d218893b63cfb1a7bfd7", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2317f5f2d014aac5bd9756cc2d06a3c9050d7241ec71d12120c1adfbf946b8c0", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7de918f40046d022f0767f081fa1e4452333e6089189ce8b7a54d82b6abf4544", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3969b04dce4a95b09ca5fd38b97809e4b3c6c8868b124324eae3db2790c5df10", + "regex": "(?i)^https?\\:\\/\\/uayoaoaiiufasoyfoasyfoasifuasfwq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "53090826fba7dc52cc27ce1b5857cc730958b3aa7ba2149bfe4106420db9e13b", + "regex": "(?i)^https?\\:\\/\\/gomonopoly10l\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "9081bed7588f1a74010f98a7780aceae7bcedfdd0ae230a22996c17b91cec38c", + "regex": "(?i)^https?\\:\\/\\/elrafdinbank\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6184c61cc9b6dc428b2e0ac2164f5bc3b0c52af9a41b137ad6755ba38445296a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthasckacmamseas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d742bccad185bba03e6ae89a634e8e33fe2dfcf5c79b535d31673a604876dd65", + "regex": "(?i)^https?\\:\\/\\/uoqwryoquriuhskfklxjcxzczcouqweoi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cd29ad266d8846e1c6e7eb0289a08e0fdf6fa8fb8154c732a8f0f47b5bca9533", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0086ec00bd727fe95c8a4eef4626b269d9e07b266381df11c7f2ab7f32e0bc95", + "regex": "(?i)^https?\\:\\/\\/jamkaiakmama\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b817f3567e9cb13eb5734ecb552812575541bbcbf0a545fd44a5dfb32ca93c7e", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "14d975f49b16d2101f838a14dd90ad6d13525d9d2ef083bd18814b321c25896c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "81e10ba234e2d5ce73e861ef7cd90317f43b89bae3dab5c0d5cf65883c7320bf", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8d438dd137e938b122fdae9360bd35dda9dc5cfa70049e832e882dff9118fefc", + "regex": "(?i)^https?\\:\\/\\/yuaoyjkhzcuhzooiwurwiioqwuroiafkja\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cd8917ef84088d0aa4e2be19031b40d7e2d7ae3ca3de6132f0eb6578ae09d1e8", + "regex": "(?i)^https?\\:\\/\\/cmakselavpsodtlakcamhaseuaeas\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "02ff1f0663e8886de74780c8dad44897bad4a3f475075e0e354b56ef363b78e9", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8db897b54112dad5f0fc5e58a346c34956f4665d05207fa29f1ff84663f897f2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthackasmcaksemase\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0cba6b88f2c9dec48954ede7c6a09572d5fe3dae641855100178050c25bd55dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ua(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c316ae5ac36181b710bda554d66ee22de58670a97454bbcd03a99c0b0e6ec435", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "15045612fbb61b658ea135b92905f5c24e042b304a29f6e2a5a0f70a68c1af05", + "regex": "(?i)^https?\\:\\/\\/jamkaiakmama\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0361f01c62fcc8bc2ab58c80840015eccfbd58b5b22b476de7555c6ce1f95fae", + "regex": "(?i)^https?\\:\\/\\/elrafdinbank\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a9e961d54eb98e24388665562f1b5ec29e2e41652cf78837616b405cb5d1bb55", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "38212a3d499a907f576e3ab111476d6a468bdc342b5027b15252384027d5eef9", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "16cd0844cb18ce192b68ccecfbf0c28012402f5cf535ad2769486f874378d9c4", + "regex": "(?i)^https?\\:\\/\\/zynga\\-poker\\-toolbar\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "82f0929a69e0f0b614637d558eeabd4cc64d460c156573d248a55389140bf36e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e69a8a3d908a5c47c922607989fe2054126aa52b41757fa2dbfc1c9893d1eea0", + "regex": "(?i)^https?\\:\\/\\/ksbgjjqt\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e399fb76187eac0096149362f2d631ac68d57e2cd269ca6919fd28a88ae5893f", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5b3997b5e8a42c84562e84897db8eac33e1c003a6b661e089ea5bcfc00a2a265", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1d20ec229177e4cb4fa46e28229e9a33912a582b208a8ea45a57f03fd0700ac2", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=https\\:[\\/\\\\]+www\\.naturalgemsstones\\.com[\\/\\\\]+\\?redirect\\=netflix\\.com[\\/\\\\]+login\\%E3\\%80\\%82$" + }, + { + "hash": "92ff7a7745667b287995da54c4d86e8a4a189ed3d007237c0453c850eb8f4d77", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "defe6c14f1aed46efc1f8b8c2856d586b5452960d65483773e4f81feb737630a", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "aa7f284c5a1c3590ac4a694e2c6737369b629aeca34fe504eeef1935353ed88f", + "regex": "(?i)^https?\\:\\/\\/uayoaoaiiufasoyfoasyfoasifuasfwq\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "83ce54543ddca53ee2b9f610cab5465c0ee51a65d89c50e6b8b887240313b4ed", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bd161cfdd3cd50ac098c3d739f3372b42245149265f3aa784190f7c6f49908bb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "56eaffdb7521aa2ede7e6877a67114e4dc282238b1a8ec5034dfef4bd5d3beff", + "regex": "(?i)^https?\\:\\/\\/naaaddaunofahshasuohdfoasidajdai\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "63962383a906a0ed6bfec36ac883c3b025c627d97a7ede81d965e37edda5aec7", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938ab4c6b8\\-636787bd\\-d60f\\-456d\\-953b\\-a8428cdf4e2f\\-000000[\\/\\\\]+kzPXLXWybpGBn_k9odBJhpKLn1Q\\=402(?:\\?|$)" + }, + { + "hash": "f7209f083d60975523229329e722f5dc7dfc5fd8b265f4721e84f690357e9009", + "regex": "." + }, + { + "hash": "11bbfcb4cc5e0fb4c0a75ac7030a5069a4d2a22a979bd0491aa3dd06653b6ba5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "dd0f7cdaaa3b6bfd8142acfbcf0f039b34405fb6c7d7cdbe9f9e951fdaa675ad", + "regex": "(?i)^https?\\:\\/\\/kjashfoashfkjashflcxzkbcnxznckjshna\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "222a4324010f446504136523b44527033afba5b1e25873ad58c168524589c68a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasme\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a2fe5fa8aff103cf0779d6f876f9033b8396cddc95c48f3ec2fcd85c5a20d4fa", + "regex": "(?i)^https?\\:\\/\\/mxeapost\\.cyou(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "3a473f46db85df8e594635195f86fc528f295f725323c1a0184a8644a3635953", + "regex": "(?i)^https?\\:\\/\\/currently3456\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3a682f27ab61a6424b949723598a8ecd28f921fc36c1753f496b1a9596e7f1c7", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "56eac003d3b7df738d3f00667c6c793ab2309942df21045605511efbdb218e12", + "regex": "(?i)^https?\\:\\/\\/proyecto\\-sut\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4eefe2e07e444e349d1fdd93a0989928df06bf7b2a010302c4b8d92ed43e008c", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "28471f276bb4ce68f35e5ba2a0d1fbfb895f16e8319758c44bb37de25436062f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mlkoqhbeg\\.com\\%E2\\%88\\%95tmfmkmr\\%E2\\%88\\%95grnob\\%E2\\%88\\%95cwuyaugfz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pjsfmb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "19bda4bf62ebd23e0ea4c290f4d076dd293b84e59230c6b29d66e7138f2cdb61", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "714135e6c9f1c13b7e5c15e58ed59e085e9ed88eb39d05787c65276af8c2ef8d", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "913b53c5b5c3bef36466dc842250782e4c822b75d64c4a74a4ed45830510bbba", + "regex": "(?i)^https?\\:\\/\\/auisyduakshfkjoyiuqeowiueiosahdkja\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "28f5ba9ef31b5661d939402d62d559ba8b7cf79656cbf29f5203cc8cbb30fd60", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsktmaschasucaksemamesa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "fc4cd2c0c0fac874806887eec7037165a0d513b55be1ed6f6eb298a3b4d0638d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyhackascmasme\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6e97fc3c418c2eb6849ccb4f5fc66a9cf71ab15a0e954d6dbc98e6d4eff3594c", + "regex": "." + }, + { + "hash": "20ea6661209f4eeea44a7556e160d11c4c9c29158de8f858c700819018e6fa6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=https\\:[\\/\\\\]+cestrategic\\.mx[\\/\\\\]+\\?redirect\\=netflix\\.com[\\/\\\\]+login\\%E3\\%80\\%82$" + }, + { + "hash": "dca9bb42acefae49a50e60a0616a726b6b25d35939b07ccd848188d1fa5e0383", + "regex": "(?i)^https?\\:\\/\\/auisyduakshfkjoyiuqeowiueiosahdkja\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a82e1cbdfdf9e9a606d82524df0c19807c444cbed968d3db2b843871bb47fc13", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "85c914ce13df0761ab04ce8bd6dc2f131dd1cdb963bd57c6633e6f919d6670cf", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d07f0c966ed496ba409c6a844841f4caaceb76e781b5fd42f589f0588828c766", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthackasmcaksemase\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ed0bc4cf3dca832a37cdd02e76fd529273e17ac2fbb0e687ec4f7ec620c890f4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuahkacmasme\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fe97635cce4fc6bbd90752462e507a656848bea9630aa6a60b9a32baf9ee4438", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1c409d8ffdfe37cd71d5d18e8fa502598edfc7d155dc0f0c30054c431ee61c5c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "90a937e8157eaf7aac903bc927f85c8bc27c5ea26ed60cbc2e5155f6430a36c6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0c9caf0b6d0501f02afb15c3e19aab333e8c212aa76c4fae0664d3581456b0d4", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "06a16cc274e58bbe5abcf3fe959a85c384754ab0779dfbebf553d1f48fddfe3d", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0fccf58dba63d2d63fa8d4dbbafe3505590ba454612cc66363aec1d0c599f556", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "daa0e26dc6dae1bdc0dace16e17c822ceccc7fac6a635b8280590067d7d66bb4", + "regex": "(?i)^https?\\:\\/\\/hotclipcouture\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1942c934fe0c9a510b00853f0b85edb4f08c91e9cd3201462af3cc35edc4e6dd", + "regex": "(?i)^https?\\:\\/\\/cmakselavpsodtlakcamhaseuaeas\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "730ba335680914057fe652ae4502cb70b6cf5b9ad57b9b7564ce0cc770dd24d3", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "dbd3453cd24ac0009c23edd5370e6d5293673bb46e1cceadc5ab996895b6bb6a", + "regex": "." + }, + { + "hash": "7206129109c4425ca419d0a3ff7cb3ed94d4104f00af8d7531c2d1abccf5a6ad", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0772c3f51b4bcfb3fc344a75c05c419203f46ac7ab468f73fd4a7854cbbf044d", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0091eff8675c5748c0db81016bbb054509e70227a6f85b635c7eb4228efc0905", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0d15a3254d3cd422313536a142d99919357885665abdaae1f76ff2f0e210ec7c", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1282d96efe38e8669193d9229a61b2ad2cd6753eb6f5fc04577a16d6315bf616", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "84a3a70ab8b26e231a769dbe23d0030b23453fce78020edd3af0f8e7e8e3991e", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5711abe17f03edf0ca6fb81e570ea3544ea01dae40141e2c71dfe193b3847583", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvshdurkascmaskcmaseasea\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "eb55d165fb6da123ab3e5b874940c716c64cc83ced6b8c615ac7e5083160ea0d", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0665eae40f9873409836e2559e9ee808d5709021a4ee8bbc4f890836c59bc990", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "39e217a97776728d1f215f0451cf135311639fcbb90548bc9adbdbde1b69ce3c", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2dab1ab291a7a1d05e93cfc90f0518ead71776445808955c92c26284341acf9e", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "caad7cac88e9e0527a97710f83ffb39494a7958dd3d18a3dd3f0a91580c57fd6", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a2f24b599e6220fa103b0c1a214978022f1b6e34ba0ffc2aec0d495105be1006", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "01d6a7376e71edabe0217dad7b8b12efa1c93d7d5669f7f5a6b6f75f3c7a215b", + "regex": "(?i)^https?\\:\\/\\/webcamxgratuit\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d7e0a6da6844393fe02191b3b00c00d93ca74c18f64c0a873c97ee47d7e7cf90", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4fdf00165147c1f7afb857e5e04ec3c77d4a62e5b990dffb19fda6e2339294e3", + "regex": "." + }, + { + "hash": "44231f04ce125d629d9a328e65f232a8bba54ebccfc3e223111e5f6b1506dab0", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2398b88fc9d3a2f4817dbe3512bc936d745234e6526fdff66437a3d7f8cf1c02", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9f6d99511e50015f9dcd7850f31c8a85bdae3d55f88838553a3185cf62218afe", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuhackascmamse\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c5a67be2b5b62e66bb5df2944a5474aa0e03e2bb5cfdc3c451372547be219694", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuahcaksemasme\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "87cdf1355e703a2119fe51bb44c1da13e4387a4d98240a9ef002296c788e84a4", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fe020a773c8e5971c52e65cd0ad3affc42ffc3421a673bc1d07b3871604e7d0e", + "regex": "(?i)^https?\\:\\/\\/uoqwryoquriuhskfklxjcxzczcouqweoi\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d5e46cba06fe5e958c18e89d68446a07caf19eb65b9bb600cdaed5ef478be865", + "regex": "." + }, + { + "hash": "35445ea25ba0f0dcc2e0aad61787075fd56b9277a853ff539b70c8d0b6e32a46", + "regex": "(?i)^https?\\:\\/\\/nzcxkcv39cbnzxczxcn79zxcbzyctx39cuzx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d19defe69e2be8d4e08ee752f3c294adf144bd3cbbe722fd7f50218c23f4433c", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuahcaksemasme\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "7ebec15d6f1bcda9a000a7a338c286e67e14e8ed18f40b03f40d6d3a6849d7e9", + "regex": "(?i)^https?\\:\\/\\/jzelamllan\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a81879ac3592e4dc42de2111e953a0d62c5c74bd50eea729d00c378a4b96936b", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a1f8fe30d97a4da0e461db4d35f18142ac95dc1a2ea2e242f9445c0b695bf247", + "regex": "(?i)^https?\\:\\/\\/bkashdbnxjkbcgizxhcoizxhcnoasidhals\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1b1ea70ee5c3f2bc92e6672c7831bb2dbc4ffb113a5357f86cd768d61977dc2a", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "be251918f08967b3f3edb415fa18b53aacd1e584d145f111fc91baf7eb9d1388", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d2fa2e7d8c90f76d644c77a762ba856fb778eaf58b401a0a86cbb00e7b541c46", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "90a951b878154e389b77904b10e69a7cfc7b72a141d9a33bfe0ac46e48d1e352", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9914b7df01d127a65651426df6145f185db04ba0f9c00d54b0b932ebab9b3d74", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "3c01186bf3190eed06f1a670d2dc82c9bf352af582704cf8e31875af0a4a07f8", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ede67535e1c79071563f64b5901e141b3a77b206e7c429dd35ff1cc90a0faadc", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b585968dbaa83a0c36ad7bede1d93e0fa1dfc85488025dc082d569fd5927edaf", + "regex": "." + }, + { + "hash": "c78e124583832ed41ee45be7bddfe0884fec5c6c42ab029d157a622a39ce0e3f", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthackasmcaksemase\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "89187a5209cd6de0ed52859eabd5a5f559f413a4e2fe29b26af6fa8328296536", + "regex": "(?i)^https?\\:\\/\\/cmakselavpsodtlakcamhaseuaeas\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9f6298b8779dfcd6147d6c2bad952adc327244e0abf06b2c83326656c20fe8f5", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a2d9d6c911cb76ccec206f84cd632e895879453055a9cd0bb62e5166d2f8c65c", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "c80f78c59a9e2918784553ec341e074256d4ce06ff184c8a5953eff20d7186c8", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmdfykslvckascmamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "a8ef645c036baa8b086e80aa4c4534b8cb2ef9dd4ba96a55c4aa3e8c8ef4c913", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "61dc0e5debc6135b29a5a25f1753d48c6baf033fe5b9442975c2ea1186fa9348", + "regex": "." + }, + { + "hash": "2fe71b6e6360b7a971293f49bee6c06e10bfffc05785c7a2e447a62997e40d29", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b6a815286e7bfb1104ba5c6bae9484ae51171416bced6fbb3710a563396823c2", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0a2271f41cecac9659d0e3cb97b6dc20be587df5692e2777679aae734022604b", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuhackascmamse\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8e08777b205f1bea5dedf75e7fca71599bbc486e26ced976de103acb94f13edc", + "regex": "(?i)^https?\\:\\/\\/amazon\\.sshjmlums\\.com\\%E2\\%88\\%95ykoxl\\%E2\\%88\\%95iayrcstc\\%E2\\%88\\%95kkmpyan\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "cd89258e147e82d3c103ecc27c63a06cd23e59a2dc7f1627e59e19834a1eccc2", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b1bf71801a67db7ccb2fe6d8daf3d9386a50194725492aa86475e8a3cc32379b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuytakscmackasem\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ec32d1b65595fa7f9bf4a645662f3a58a678d630b9afff767c1b2b43e0c48e5e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5027302140dc43db844efef9527c3702a3e69af15764e4d5c589f935e6f47c9f", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3fd437299caa8f90e066ae88e4279b80a1ec49d0ff0366c0efba2ff951a84ca4", + "regex": "(?i)^https?\\:\\/\\/uydoaoduouiajsdhxyzocyxozicupczxuw\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "70c3bf593ce281955c9eea8a4caafcb4085fbd62caa4093fb02631c88f400f67", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bd6067f73e0879f81514ce01458322af4afa44546357242fe0266ffaa131b24e", + "regex": "(?i)^https?\\:\\/\\/multichainfix\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cccf92e0a3e879b85225a9d3906bfa130688c090db682ebb5090c981890d304a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1d2e80332dd13a35e8e85b0071117db950dd25625a4d6eb919a917a546c0ea06", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4a38d1a99ada4d26dce7432796b73d6120282154e63a4d5e02d990309053f912", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthasckacmamseas\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a6c301c78a552d87f34ab170d5ff44e3f2c55d93e160f3bb7a7b1acc0d4a131c", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0656900fbe24435557a7201a5768c60cb34678458b709fe309085e8733b89bc3", + "regex": "." + }, + { + "hash": "5e88d9df267358dd4463640845acd60fe32abefba09b8542901c4d4c0b86ee51", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e9c6950de74aa7eac227bc21e9085a24dde1362fbf42d78484916cdec16a36ce", + "regex": "(?i)^https?\\:\\/\\/niuhasnaosuhfasohfoaishjfoiajsfahnisu\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "96908746bf4288c35076308b937c750d9e1647c69932934f0da8ad8bec54b3cb", + "regex": "(?i)^https?\\:\\/\\/cmasleoavpsdktmachaucaskemaema\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "b77a55c383a819fc23e36cd3a0fd90e8ffd6f85478f5be344a58ea3ca665c327", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7eb2420ff3a2e0295a692bfd5307eda9e65eb850f83d7c2a0ef8186545989fab", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcackasmeasme\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b3dda1e38012bd41fad049a6478d679e5df0216ad5b8fbf537968cbb47ec8f84", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvshdurkascmaskcmaseasea\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8cce9de3aae799d7e33b2ee90d6ca3eab09c5814e944ec63a9e3d51845616721", + "regex": "(?i)^https?\\:\\/\\/augsioahfnjskxmxzckhohawroiansd\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9196bc007704a6afecf2fe2f793083c012960020b293f25e9659e1d010ff4062", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthackasmcaksemase\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f0d2745faec5c9601410f315a620e1f0f2427b43080b5963b9374771a1819669", + "regex": "(?i)^https?\\:\\/\\/oiudpasifpkmdawmsananhsuoamnsdio\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a0ac0235edcd116d31c4b0982adc757990077162639b8e4c1f6cf61979e9c383", + "regex": "(?i)^https?\\:\\/\\/cmasleoavpsdktmachaucaskemaema\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0031138f88388ed194fe459785c1b5d1c344ba9e7a90113165f72194bb78418e", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "acce250254a6155d4c48000dad594f91d26eae1488a06dba00675988d41c0178", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8bee5d08a2c0e4b0b4a21a3cd5d20cc0cabc3c9ce82c044e14d21fdc1494573b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7b6920ded8fe42c66a904c2fd91d3d1147a482205e0e8d8fe69b116501668ba1", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6b42431f6f7b52d291287dae39a3763b828a5cfdb4399b531ffa99060e2a81a7", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "3e8178bd5d32b189aff32e5bfcf6a8d4df9b49f31573b1a8b5350fcfbca04215", + "regex": "(?i)^https?\\:\\/\\/vaslminas\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "867e127e1407a4376c56c376e2af6c47ba0a3bedaa318188984e017e44bf9445", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0503d914a774e8980f01e2b2e7fece8d8fa381641f0c0c4b7700356dfced1ef5", + "regex": "(?i)^https?\\:\\/\\/amandeep\\-2624\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "b4c2f017bcdbda0fdcb249e50b3c410592176de1d4b665281fbc1452b23ca8cb", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "80fb4f2f3e4c2ccc1dbfb721a30091faab483a873864595a4a9020776fccbc45", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "737ba701ec56e70c9b039aaa3c676c33afaac8deb3d8a02a42d773fade21f59e", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0fefd344b41cf569036a6ef00a24f3b75e6b0e5a47255b4c08eab92d0d2d63c0", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6722d3f43ed088fa1257f7ae8889f66fd3e811334e840eb8ae968258de5827e0", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d8b5ef01cdab1d15c14e0dcce36a8ce908b21d358c99c74c79f5b60bb6bd25ba", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3a5bf55d814a8584777756a96abcf2d4d8597583e4db22cce70fa40c6d9eedd1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a7c04dc11c9e8cdf94013d97585f6eb790d3889370040cd6d58f0ed789ad0b40", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "dcc6d941eb15518822f861ce3bc080b41a38f7312e435842c2da91aa335872b5", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdthaucakscmasmemaea\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "76426235b34ffbddb2235f65972fb4efbdda4712d461548debf1ffe0fa5380ba", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-carcassonne\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "69507c9bb8a21305f7e1fe7c36b041eea81ce39c24d442517f275193a7c1d9e2", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "2dbaabfe8cc0218304d0f3849834f4cbc023bda965f36f71f320aca3164e6529", + "regex": "." + }, + { + "hash": "6a80e34811211d6e2ae6d33326e4dc781aac46cf1d5678901d470b6fd8665eef", + "regex": "(?i)^https?\\:\\/\\/zynga\\-poker\\-toolbar\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6b6072c75ad6b9ef86d58001de0b13c5790010481e40a1f834948b2dde0c5cf5", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "77d995c67e64fbf6e72fd90c818e4bea57880366c33295ff9383cd580e977d13", + "regex": "(?i)^https?\\:\\/\\/uydoaoduouiajsdhxyzocyxozicupczxuw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5464434dbe958e09634da6b3fe1794747901ae41b22c1efda9849852c8c8f67d", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "71b2d4584dca5c7a56df5de405c54c22b3f2c40c2d266f3a477049dac06c7722", + "regex": "." + }, + { + "hash": "436306571532645de78632980d8cb476228a993f72ed258bbd6f4a88cd108a89", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "258a74960ffa8d6f36bd620230047619dd1ba16dde2caf5e152c87127d32c61b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e64c782c184cea7229332df9d603ce3ccd9026ae5d6b8bb82290444e8e7ec1bb", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a6da9f4c58d004577b0d3e1794cecd275ba88175524714376053efb3be374c52", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2d492bf57c08103d9ae43a64f3863df5158f5c3971051f50034fe75dbbd155bc", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6239d6d1307e35e5c9022012c3ba75597a7e7205d60cd8c8b57087d42f0c2887", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthasckacmamseas\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1a7cae55eb55fcbc4eecab4dd65b438fed71dd5bbdfef14e12b4146e1c1b17ab", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4e298b5cf0f830ba687956bb8d623fcc379db8ddedff9b57f13b03327d4d5023", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1ebdd576dbc8c82de308801f22cc824e7f9102e9714d872a2db3a82f366ac9f2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0751eca0264f7d2902eb5e2455f53d33a98c91a6e2dec5be8c8eaf8bb75130a3", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2390b0bd5f39e86ea331fc22fe4eb0bfcbca941a313a5e63d077b0e2a82e6284", + "regex": "(?i)^https?\\:\\/\\/ppcalsekamsdkylackasmcamse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7da996d45c0bca91fe66a6552df539d4be1d72a5e12162fbc55eff1cd6784bd7", + "regex": "(?i)^https?\\:\\/\\/hotclipcouture\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a48b0a1b86a45044cb954eeebc7bd2d3797be6c6f03515ef62d983a578129903", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "df948a6c0208451313273b4ff7313f44846958925e681fb53552ec4ff198ea03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "bc2c4cf4d4d201bc3d44ddfbbcbc4fefbc69bb7396f504978f0508b31326454e", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasme\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c2205b1271d6d0ca6952d390c436745422c8aacf3cda6a33ead33573fa679c62", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8d9fe76aece795930032a267a41044901aa0f2eb805935b978c7ef34e987ec7e", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1efe400ab5ef2912b814bce8396c16d26d42958cab7d873b8e636bbeeff1f5c9", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "51a788ec2c109228fd654bcce77c550d56e04794a35d3b7ce60a72019bbdb50e", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "fccb5b7e3c4bc04dfe91eb58746d38dfc9386f121d175f68cadf11d5f062ee89", + "regex": "." + }, + { + "hash": "d1fa3968553ddc1c1c262f9baaaf75fdcc0cd894f95da3ac0a77ca1f49cdc70d", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ccef246d88ddfb0aa666c502dd0bf5353c07e09568f33eb893f74b5fa374e9a3", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e7550816dc5f1c33feeacfc42a87df1eec530099a613c7a31e8cbf1c495340e9", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "749a670162c2b37544910136ae03918301c093db6f554b1522b142fee6f44f17", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a220995874beda8651caf9a9aa1f21437e0d52a3b465bda523a9d2366bad7dea", + "regex": "(?i)^https?\\:\\/\\/yuqwyroiquwquwrsuxcozcakjsdhauowq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b4dbf0e459454f2c53bc570a7fec8366da9c1b609e4e5f5965346c3e5c780311", + "regex": "." + }, + { + "hash": "9ee185411fbbe673cc2ce7a00915e577845382a11c82d01440ae75ade80b097c", + "regex": "." + }, + { + "hash": "f131e7bdebc100a395bf15a080bc76bf487cb69066aca7df172e2b36946cb121", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fae2ea62df1b5332c2fce59e0a976320021e2ab8f9731189ff66ceb32a5f039b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f0645640050a368e1fd56f541531873a28639127b842aaca488662c4d28f47f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938ab4c6b8\\-636787bd\\-d60f\\-456d\\-953b\\-a8428cdf4e2f\\-000000[\\/\\\\]+kzPXLXWybpGBn_k9odBJhpKLn1Q\\=402(?:\\?|$)" + }, + { + "hash": "afc9929514161b4f87baada3165ec8a295c3a7e4ba57bb6b956835bf5607685f", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "87947beb8710a9959a4fa4ba30e219657cff137fe7eb816bbf81ba4fb0db7ee5", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7d0227282a7876448609914a1826595a6cc7afa38784fbb4746e1aa0963499b8", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c974ec7dc375943a0e8bac89cc91c0b835b0008dd7662821ab56e627ed291a9d", + "regex": "(?i)^https?\\:\\/\\/uoqwryoquriuhskfklxjcxzczcouqweoi\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "58219b150b924bcf5d6db91fe3589c2b4a685b5bd5e79a9c51859f2306a7ad19", + "regex": "(?i)^https?\\:\\/\\/auidohiasdjiourqiowruowqurpqwpepoqw\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4a4664d81aac9f109c2126b76dbee2916da0886ae309c40447f519bc8074c83a", + "regex": "(?i)^https?\\:\\/\\/niuhasnaosuhfasohfoaishjfoiajsfahnisu\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "929187aab1e4b801dfe78f71d00fe1750f0545db0efce371f2b0867f8b5b82b5", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9d50f86e386cf68f34b303645fcd96626614f60c126323e87cb0e39982d5da11", + "regex": "." + }, + { + "hash": "baf416ab92651b892fd05e504cbeb3550655c4f5987106a3d679b8a66a3c4f55", + "regex": "(?i)^https?\\:\\/\\/auisyduakshfkjoyiuqeowiueiosahdkja\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ea86b6655a086eabc742b0ba0a2952893454b29ccb0703fb1382c7510c3461d5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdyuakscamcaksema\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6f496a924424aae86f5317ff32776191ba0787b6dfd5a839d4eb718750127b6d", + "regex": "." + }, + { + "hash": "7f9b31924d8c1b99d972d981a9925679ae68c62f2ebdfe4c09b4ac173160a86c", + "regex": "." + }, + { + "hash": "fe806c0f8b20a0580937d366df0ab06199e67746bb0a3a7319d38a05f4805ed2", + "regex": "(?i)^https?\\:\\/\\/kjashfoashfkjashflcxzkbcnxznckjshna\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8f82c1eb5ab7b38d81fe860891f5e5d1542fb6efc40c86e6c06a3b4fe17bdc8c", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "52dc3e3101cdf8d2cfcec5f879d57742331ef6f6b73ce16260766c9741eebbbf", + "regex": "(?i)^https?\\:\\/\\/hotclipcouture\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "332f15dd47a8cc66737dd18c5e15e4a61a7d7120960e6ac1a4788b6582c43ae5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4445514ec37c411d5a3ec6716f65f44bd8573255bc678268f186f371a65175d1", + "regex": "(?i)^https?\\:\\/\\/auishfoahsfhasoijoiuwqurpquwoprs\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d4d19052c99d59cbcc193e2b1e480aa7a9134291d06a95f6159e7826c88f059f", + "regex": "(?i)^https?\\:\\/\\/yoasufaiusfpoausfasohshadoais\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "59e2150ce2d27c9b6f2715925d50dd3fb3aa40ffba92adbe866e1a9fa34d63d8", + "regex": "(?i)^https?\\:\\/\\/vaslminas\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "221e44bc682e792607f492728047d4a132d6cdd516069346b1c0a8af99a18825", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvshdurkascmaskcmaseasea\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "b9b3e5c6ef19091a01b90c63f396cf5426e4111f99d153496a53e4e4f3743445", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvmdsfutahsckacmasme\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5c311cbdc1cf77d988b9e460c1ea6a8dc501d95aad48d30378b73e763165ef6f", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c88d769edea4dacbc35c4596adbd402cc2de74c55092fee923e92402fdb63355", + "regex": "(?i)^https?\\:\\/\\/augsioahfnjskxmxzckhohawroiansd\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "81ee5788345c149f81afa79e8d0f370f1d10ec1533c44862b0876aea6422e1fd", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cfe7c0200a685b3bcbe1adf40439ca491cd5b4b97421f4c3eb94c423fbf42267", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9cf3daed6be982eab1dc4423426b266543959af8f74d1c4e0e9de279f415df2d", + "regex": "(?i)^https?\\:\\/\\/auidohiasdjiourqiowruowqurpqwpepoqw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "102d820c9633b1d70374362cd52f9b027786ad715b4b81eb405a9e23cb20ef37", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7381d6a289275ea1f3b79fb9f7c374698802304a82dbc04a05d4f8de73541a33", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "e3fbb8ef793ff5b3b24c03a626cd1a310bcc51fa1a66b3707bc97413cc5ffc49", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "02322ed4f23ce7d73dca86c15458aa607444b28d69a60ba8d6d677a4285161ce", + "regex": "." + }, + { + "hash": "9be46fe59f8fbcc1d029ba5e9c74a3ac5a89301ea701098c37cf944b5fc29413", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "800683a2689f3fe1ef964a07f8c7ad1c1cdb91e4eb9db93ea8dc2f48e25f0b75", + "regex": "(?i)^https?\\:\\/\\/redirection55654654\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "03283c36b5e16c6a25ea712008c1972d5fbeae32fe31f3c6d73347cc27e97bde", + "regex": "(?i)^https?\\:\\/\\/muslima\\-chat\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "97da0b3d00476a675be2a928c2d0907820b27939f9d63279e61ff620cbe54d63", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b00b8ed510fc56e70f67376306684b0541dbaef8353e2fd93214acc0fc9532ef", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "0bd2a93080c025bb03db2a5b1626cd2b386e98f6a4b78552da126d075f86132d", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "493cb73c0c39496bc0854b9cf4895b1184be09c2bafb7245e24d5edbfbd738e4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "bf1b16b5ac12b188c3e76ec81ca655ff4ad9458366b1d0fa8c6782ed16ca1737", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "56a522d75c8aac76d78b949290923fb5eb2ed14254960438d1636559b0962b5e", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b5327a41a308d081e417163573da14068b5b5bb92825ac5e313f7b7e2ecc87f1", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvskdtmahscuasckamsemaea\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4822995a813dd8a2d7fe708ec3b947b4681b69c2aaa6a6a9ee9a54b3ce080d04", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "486f259fcc1a02d6e2b72c0a8c3b805c074920541d6016d7c7224e1c0731931e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "212a0f84beca05a2dab78c5746f23c19db86505e83db0a1482e807fa0ce0349e", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "06eea9f1737ad1881bab07c65727d4af16746c4eccfe9983ba2077fd5193f081", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "76ede0efc44744d21f60665b341f846a72124f906c7e7338cb6b03b7280a0ca9", + "regex": "(?i)^https?\\:\\/\\/oiudpasifpkmdawmsananhsuoamnsdio\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e16b18af297ef2c92c24cc59035b909882506d418ba05576ba42c9faee7f2f12", + "regex": "(?i)^https?\\:\\/\\/gaiusgasjdbkasjdbkjagadaskjdhasdaka\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f8dd507a23fa28d1a2e5eae98d50fdddaad4f4ef0d89936815256b10e4480cd4", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "29ca80c0b05ef97ee2666d7f27f95130b49e1f292c660e3fd88bb4416ded2b9f", + "regex": "(?i)^https?\\:\\/\\/jzelamllan\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "033b66d77b50bc66cf159894a96419c7d35ad762095ea9003966b082aeb546ec", + "regex": "(?i)^https?\\:\\/\\/auisyduakshfkjoyiuqeowiueiosahdkja\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c841c1dcb1fee847074ec4d158a50c97f28f8834b213c30d264e2444f0524d16", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d285c158aed08e29d05f0ad350acf6a63b1fc624dca819c18e139feafe423ce8", + "regex": "(?i)^https?\\:\\/\\/niuhasnaosuhfasohfoaishjfoiajsfahnisu\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "baa022952b88c8f661595a8b631a8cf354185dfa5e958bc1f8de60247073f51a", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "b246e002b04b3b18735416017c296398519d81dca20b4b4d888a7997a1ca62fd", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e46e20dd5182ca5d657d57ad891b07bf380524fcc5f1e1e191ae2f3127f94408", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "367e4a3f3d2953620613dc4d539d98690c8df0947069b09cab8729a855956ac7", + "regex": "(?i)^https?\\:\\/\\/cmasleoavpsdktmachaucaskemaema\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1ffd62a32a7fec57c2e3a09df0a0c88b91b901d0496f28968e287e4fbc1c4835", + "regex": "(?i)^https?\\:\\/\\/iouasudpausdahsdfasjdfoiuwqriaioda\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2bf5976a2960d2eaff4a8a7d9924bc2757c6c163ef8d19b56cd3595856e0dda6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "642ea90d24266d00f13ca5ed2c5e8fc20e29fc5a768eaae404d3e992f76a9d0c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9d383d4584cfbc8bc7caf1295375df275a3ec5ba7179489874c48a0dd7e4c7ca", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4c4d3354504dfcecb9a58ea0c07f99e6c3829d3fda503a793c7d6d0a9a8e6c01", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvshdurkascmaskcmaseasea\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3f73e6bda05ff8569011742a27453a9f692ffa4d5ef453c15cf8a327bf2bad95", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvshdurkascmaskcmaseasea\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "32b4a97d8d11221aae7eb257b2f4c120560c3a742e91e53d494e27ae9fdb424b", + "regex": "." + }, + { + "hash": "59c2977dc0cd669cd497305d0fb55a307a82b55321aa8b474e9c70f7ec4b0517", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7b18a360a84b6f45fa797b4e93afc456582e98b65aaf64143987c6753b063486", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bab08408fd4afd64e0743545370f2ad4515a849a4f1ca0334c0949bbbb96036c", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "54dce52c063a617e1fc5a6428a461780c2e8165771cef2cc112718123aa6f811", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthasckacmamseas\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "38a271fc2548edba05c9ef024763874c03d81f3e43fa2aec2a0776517f9ff8dd", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1c89bee27e2b4c74db43ed340953cd3df645a4b7ad7c8596060956dfc278eee3", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8d173366d659299e551d0dbb3023416d42e54b670510197268e46674c8cee4b2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyhackascmasme\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "454166f2f1e702890d4f08fe03193f68a28000d33262489c6f76f30c72be7219", + "regex": "(?i)^https?\\:\\/\\/muslima\\-chat\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "171a2942741c1d87e39b3a12a604af13ce2644c13c67ee46295ca71f45c0bce2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthackasmcaksemase\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d7394155f48abc42b1d1aa44435ada8cd15e36614d586a0b223b9b77a0220627", + "regex": "(?i)^https?\\:\\/\\/kjashfoashfkjashflcxzkbcnxznckjshna\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "37be647a17be88243493d42f60b3133fc79c6b8ba6248adbcf195b99a624c0dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d4b1176d246d61b6c6c9876a0d3f1d99087bf0f95bf7857dbc75fb8f9a14442d", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2424e48ccdcb1f4d538e7ffaf441e64bd792913d1e366dc6722efa9f9429439f", + "regex": "." + }, + { + "hash": "f841c3ee460741f0b0e6051759b193431d0b082602c2f149689f674810587191", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "52a3d56ee4c16c76ce45a27fdc171f4bf83f4256f845e3dcf122d10a0a5c1b19", + "regex": "(?i)^https?\\:\\/\\/bkashdbnxjkbcgizxhcoizxhcnoasidhals\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c17d7afd7754ae9126ad5b7c0a4c90fe374214a8da199532156470f1aa4b6289", + "regex": "(?i)^https?\\:\\/\\/hadkafjkaaslam\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c83f4d8ccd7af706840978a42baea643a8e175fd3b290b69c9536ecea102f10a", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "18a1f2a84b90e90584454b06192209b8d8392947a73c281d117c1d66e28ddfe5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa2b6460f2122b2f563f75b5d9250f74d42956cabf0705f761684df8047c637c", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "dee394952784387575d4ebeb24f24020aa9f0dc756ebb2f6e0853eb7c731645a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ac97b32f69882e802345e5ce74b757d3a5303af3272125162c39a08f7c37f4aa", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "5fc5fa28ebba22603abc01b2270f5307f289b828b6322f5f7f0a28d20d0ef58a", + "regex": "(?i)^https?\\:\\/\\/muslima\\-chat\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "21c9e42e797d976815e384fe0c2cce7f280f2411e90177745a9772d2ad601d80", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fbf8af12c14c25d75fec8e2a3739d201c1015a6a705216f2216d4878616aee2c", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "5b86814531715d87bd159b90c07935f3685d5031330c837734663633db143781", + "regex": "(?i)^https?\\:\\/\\/tunsarabbank\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "377e9edc5c4b01e306fbdf1dd413e852c6b0a8fdb0a5565640179c6501cd12fb", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyhackascmasme\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a8fc0e43ed4d1742a7e38cd757c368546dca3740ca886c5b3136ce928e69207a", + "regex": "." + }, + { + "hash": "78ecf96fc2bc2dd8836773a817d19927e37ca1e2d18c837d796a9f07acddc8d1", + "regex": "(?i)^https?\\:\\/\\/dubaiplocecfq\\.com(?:\\:(?:80|443))?[\\/\\\\]+LWF(?:\\?|$)" + }, + { + "hash": "a30af24015e55685448808a561c0777df413637b0c563b4074e42cb636bdbc5f", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuhackascmamse\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "79545bedf18a5c4ba5da46c3f255b91a4a2e3e0e68ec5ec1ba6ebe6a874eecc9", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6a92f902e0b185cc7716335c0aba1adc36bf9ba842fff34c5c20f0293fcefa8d", + "regex": "." + }, + { + "hash": "a83333fe44bc7dbb2244903878a26c09759ce26093281266c86052eb4d7d0e15", + "regex": "(?i)^https?\\:\\/\\/zynga\\-poker\\-toolbar\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "bfb919fe2e9cb4f1fa6e56d2ec33ae117c245d2858ffca0eb1854483aff5504d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthasckacmamseas\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "09e242f6b896fa027ab250055aae24c7df61995946e14dbab59ecb09ed0d99c7", + "regex": "(?i)^https?\\:\\/\\/augsioahfnjskxmxzckhohawroiansd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e02f51c3375af7c0f69dde33eaf97825790801967543f92438be6fa39024a6ff", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cbee6495e9e5b22575ed9469ff84c077de04fdd5724f1b06cd1ddd76c83ec2a9", + "regex": "." + }, + { + "hash": "bdd5e565944142e7661e81e8a72c819eb770d9ce68bd5185e0b1e7d4248968e3", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f9846f85a9f2270243ab8c3a9d99ff7022ac6d34436c49916a95ebb596842bef", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0e12dccb53c9bb7c2f9181b5edbe62806fa42534c6ef21f437eee89593287b36", + "regex": "(?i)^https?\\:\\/\\/yuaoyjkhzcuhzooiwurwiioqwuroiafkja\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3cc1464701cd828b64ba4471f7adf3ab7daed618df91d5ea5dd1583d99906ed6", + "regex": "(?i)^https?\\:\\/\\/elrafdinbank\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "827b9dfd8471bdd4eaa8220a0473eae581fa1576511f4c2aa95b242370ab689a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ua(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c9133d61d5b78df7ae71b12b47ccd90c1caf3e5e5303d04b5be2f18b6987b76e", + "regex": "(?i)^https?\\:\\/\\/pcoaslekamvshdurkascmaskcmaseasea\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3ff32ddfbc6c5c5ccab9f3b402cd403a5a693093a65101e887be1c5a00b2fa7f", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "49c8a6ac406485507cc8bea9bc147b126929db1b2da38471a999148680aa6451", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8a2fdf9514b0240fc6261eb0b7fc9948977cd9641b784762cf994d347fdf2c81", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a3856239561a7248514fe6723f092b246d112bf72510950dea0230c78f59824d", + "regex": "(?i)^https?\\:\\/\\/yuaoyjkhzcuhzooiwurwiioqwuroiafkja\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "dd6995eac8e2d5bbcf777a7fb0fe38f4fabf019b3b957a191494d7f37ce8027d", + "regex": "(?i)^https?\\:\\/\\/elrafdinbank\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "83617c976cff5e8556e7d060e08fd00b66cd6a5b27ecd0967eaeb11a2bf60519", + "regex": "(?i)^https?\\:\\/\\/augsioahfnjskxmxzckhohawroiansd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8e2d6372395903aa53ca0eb887673b5606db5a103180ddd79d800fcd404500d3", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c5cdf24c7e6f2cd621055976871e838f22436f7e4394d4ee0f03e98d327f16a6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "617d5450ca48c5b2337e9f42a1bc45557c1b15ac70f88d2188a3d6036e1324b4", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "04d372598ea676aeac521663bd90b0963e1911689dce3b822be450ed2bdc16ee", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6c00fc0ca7f86bba44700f0b608c126789a98a70359bc17b7b8fe55271c0761e", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "78049143d0ae3c99812e621c688cbb4c8d71d3726971531a4384f57b6c5890c2", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b07f4326ca3a7056a437fa8b2978037d07a730d60627840529cd38f3708f3302", + "regex": "(?i)^https?\\:\\/\\/cmakselavpsodtlakcamhaseuaeas\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "fe35ab10d429d141fa5b77f90795c0acaf90cbd40f26ce65120230306564d541", + "regex": "(?i)^https?\\:\\/\\/auidohiasdjiourqiowruowqurpqwpepoqw\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "4cb251f4e825add244de77a9a103492fe58a0168c5d0bd4dc22c07bcea66f20b", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bd339b049b06b35f257c58d84e9878d8a752197844dacf3a8fff32cc0d813721", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "579876e581e645cb8cde22dc1dad124ceb4ada8e4727ebd088b652d00def3184", + "regex": "(?i)^https?\\:\\/\\/attnet\\-100294\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cdeeb615e27320ac9bca4ef354c9f2bd0ae67abcae678063572501ae0c03f4d6", + "regex": "." + }, + { + "hash": "962be6ffa0a74b90078ca24ada22d0befc3f737985b68e6539e229ef3890bab0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?x\\=sd0mpvyek\\&comment\\=3ba1f32114255d\\&interval\\=72\\&tik\\=jk$" + }, + { + "hash": "681601c8076c5b741bbc66288d428d0284eb053801ba7ee0859a71bae346a0d8", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvskdtmahscuasckamsemaea\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8987fc83e412b11e6448dbd244da7d986104d3847609fa211284d3f6e976385c", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "aa8068f325499a7d711801a0d516c7bb46ef3f46959dcc509e220af6d0446b69", + "regex": "." + }, + { + "hash": "f80e2535cdc7d6098e489f24ae006f8684a6676485a06f6b83a1c5c665878373", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfyuakcalsckasem\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "dffe4475c93f77cc2f92755fbe9be65fec78915c35ab197c5df347eccc4e8229", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3e32599a35e0d2b2053240e884d8bd17510246e350225c99102ef976cdfe4aee", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "06ee07bc983d010ac8a23921c9e7821e5a574fd670eb4f2b57e69be9cefeaa19", + "regex": "(?i)^https?\\:\\/\\/uoqwryoquriuhskfklxjcxzczcouqweoi\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2515a68827790065beaa7db656fa64aab8994fbe0083d7d188d6a07dcac7d0ca", + "regex": "(?i)^https?\\:\\/\\/oiqwyroiwqureoqwyrqwqwoyxchnzxkl\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a70ae90ab06ea82cb5082d405a1f7cbebd6a78b12fdb8524de8376743d987903", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6be14ceb114bed6cb760aecc0f68d5fa1bb7dd232451c92b5dfe266cda293f40", + "regex": "(?i)^https?\\:\\/\\/auhsdfoaisasd6787atsd897ayshd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "09960d9d14b5bddb2e920dd2e1bac5a4ef35918f8b6531a07509c40556f07776", + "regex": "(?i)^https?\\:\\/\\/ytiasyfoiasyfuaibhxczjxbcjhzxgcklzh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "08306a3630fac12747d199deb6485d6c7ecf1ee7e29ed1d19dbf8ae96e33c88c", + "regex": "(?i)^https?\\:\\/\\/gomonopoly10l\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a16964598ed810bb21f056cb0dcb4990411bf6249a920aab11e8ae0df6f8849c", + "regex": "(?i)^https?\\:\\/\\/dakilmajajna\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "da1957d2129227b4374247eac6f8137eff34adc6f2c9dd604a2bebdb69c68564", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bd089cac6e9666b3b41059241bb72c0e68318181849abddda68ab691a6a6796d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "698b4e41173937481ec436e60d88abee28bc54cb90bc294e9f3333f538d6bd73", + "regex": "(?i)^https?\\:\\/\\/uayoaoaiiufasoyfoasyfoasifuasfwq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "85f32bdc502bc8ad329d4341ddb273e0a6466e3e172d6dd7f6f6d5a2e419a2c0", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "28471f276bb4ce68f35e5ba2a0d1fbfb895f16e8319758c44bb37de25436062f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mlkoqhbeg\\.com\\%25E2\\%2588\\%2595tmfmkmr\\%25E2\\%2588\\%2595grnob\\%25E2\\%2588\\%2595cwuyaugfz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pjsfmb\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "748961bf50fa9558ae1a232afc2b7c7843fd2330151ee7ff028eda1227dfb7cc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "440cdff14197c01d9985423649f6e4ebff1a09b7b8714d2b91d58e6c0b58431d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938aabac09\\-90ee4a2d\\-4a51\\-42dd\\-ae9a\\-bafa1a203b79\\-000000[\\/\\\\]+_qRdDui1PbgIZYOKZQ99NuPnSJg\\=402(?:\\?|$)" + }, + { + "hash": "a65db3409fdf6d527ce402e636f91a35a5e89f206c2d1dfaca45d5c3408fc3f1", + "regex": "(?i)^https?\\:\\/\\/redirectionred33445\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "653de61e0f841697a91cc9448cb796d53784b582b8f8057f104e0a094769595a", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "30dbe7d3f3e549a8d4bdb1b90f4fd98b903b3bd29a717047db132d925ac95ded", + "regex": "." + }, + { + "hash": "52131fc78651118e70c318de6a9aa69f5d5450a435d3faede7b288a245fe091a", + "regex": "(?i)^https?\\:\\/\\/yuqwyroiquwquwrsuxcozcakjsdhauowq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "99d4bc138b72d081f27111aa0c9fae6f478cdcc9fbc3b197fbe64494a0cb4543", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3df5181058f4e50d4ef8955598de59fd62053d9c30df883560fc2aa04f31311b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "31696c56ecec1f9d0d2040315384c7e211f1d53081cff3bbeed8f7274102d535", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "aea8e1bd2d32340d40d44b04726b13d3e679524fb991843471a0634c4c28f8a7", + "regex": "(?i)^https?\\:\\/\\/hauisdoauhsnofiashfoasijdfasfoashfoi\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8d473892a1d6a458118306bbb5916d5edbf64030427877279337bcec96d6e872", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ua(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "af9d7caf6921c84db65dc56a452f2f55c43447dc37762f875973c45bed01b36b", + "regex": "." + }, + { + "hash": "ca5f454627e70ae427ca9e3eb01b4798cb5a066bcac2e671c0c3ba386d610db3", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2b0f75dd0e561df79023cefc0ae09c518525b9fd6da0a025ede2c44fa1f13a1c", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "caeb5fda226c0c703d0d4783c8ca1c38595618a2c40632cc261a4d00d0ab2c59", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cfe4e3cb283bfcb0b5517c4a88c979b044a1bf86e246d0e31e1a4f30cc8c5c49", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d4c5802a9e7540b78de66ecf8686c15bfd6ab0641506693d8f170097f48ce0ec", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7bfffa6fa4a9c31acf1b51f869c3444ddd1da1ce1006cfc4e0d3b4652c1de0f0", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ecf2b58199ae19961a59c8006a77b3d7d65532065c2615287b03a02cebcc32d6", + "regex": "(?i)^https?\\:\\/\\/elrafdinbank\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1b123d301361fcedcf82422115ff53c9cf66f3816f5391426501b3fb10fbe495", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2c1388a0724b8f0119741430a270ab8827b44b77ca8e23562ded1e77366104e8", + "regex": "(?i)^https?\\:\\/\\/pcoaseakmsdtuakcamsekamse\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5e7e10661bd20e729a8694c4cad7659e8644819f3d0126cc045a42d42a85891f", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "a0789a81b065883ca7131f922e72c12777a7e932fa5031114fd3982fad885743", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9879009c65f20ea2ae7da084b655b77106d621c9155f8cd5fb0b2b5aa60c6ef7", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "df948a6c0208451313273b4ff7313f44846958925e681fb53552ec4ff198ea03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+continue" + }, + { + "hash": "6af359adca15a90483b3f43299a596859113cf52e5e9ccbd528dd1315b509976", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "45d6a17fc448317e0bd8237a793dc209a2c4d09c243ca2b5d465b85b70e2db8e", + "regex": "." + }, + { + "hash": "3225ec74887aaa2ff7accef57d8eee0a3dc22ba886d5007fed7d0e6792d07018", + "regex": "(?i)^https?\\:\\/\\/cmasleoavpsdktmachaucaskemaema\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "02658bc4a70fd5bc8d1e8a083bd4451576b6574dee019eec8d54fca51b96d479", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c8610ca\\-a79fd5c9\\-b84a\\-413f\\-a510\\-975b1953c451\\-000000[\\/\\\\]+0Ioi4G390NtY4D6\\-s2LkANks7s4\\=403(?:\\?|$)" + }, + { + "hash": "a6ebbce9ca8cc70c19cf00731f45d45e0405af2be8e16226d03ff1eee93c89e5", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuytakscmackasem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8f9a245d5f9ca99c061261e833207dc7fff76d6a208ce2bd662f18afc8a56ef2", + "regex": "(?i)^https?\\:\\/\\/jzelamllan\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "31c47af250715c3acfe085ff0538a2fa7a8e5d5d3fce10094f0c0890bc274639", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "528cc71a939897b98b9f3f5d3d4dc16395b6d0d2d0449f58742a81abc06b7008", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e855f694f06a74941c57b3eda3408204bd1c1b97d9e4092e48e0dd3d1332b16a", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "0f6d8822f9afafa9163c503a1a0f6e3a7a3ff0879151b2817fd8516429bdd42d", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "493b82955c95c44f8dcbdf65ba08b48c2df26d8c1a92e0a788703bf5f19f235f", + "regex": "(?i)^https?\\:\\/\\/haahohfnjxncxzkcbkhsndflashfasf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "16cd725e2c83e55c5d0f58f082d612cbe72a4849b3b30c02922af0a0a5432459", + "regex": "(?i)^https?\\:\\/\\/auisjfbhasfuhasdyashauihdhdyhdqueq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ec18a8e5bd908c3c448a257b39505c4899de5dfe6b1384afbfb34a918f3e78f0", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a726edce33333290a6f0e11affb6a72598722f6bcfc833cf67d730c4830aa", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d362e09f5bdbdc563fd034c7d0a6f7294bb02fdc86f212d996e9f109a149c09e", + "regex": "(?i)^https?\\:\\/\\/niuhasnaosuhfasohfoaishjfoiajsfahnisu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d742a76395f562daa5ca7b7ff8e41270a1401cc250573ce6c834462ab629bed4", + "regex": "(?i)^https?\\:\\/\\/infraction\\-antaigouv4224\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e1b9258eb3a02d6e7f0f23096fc8080aa40f361d88bb1a35659fcfb0be01afa2", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6cb9defcabc3b8222959797f5802c6e97c33f8f4285fc7fb68f55d44a569c1ef", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5895d27475cf6843a3eb464b38f2e5b782a2b54bf669b9dae1fa0da4f5a62f05", + "regex": "(?i)^https?\\:\\/\\/auhsdfoaisasd6787atsd897ayshd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cfa6ccc5cbded4b4ae241f11e2433f901489c87a7ddfdc8a85ab3bc2db037f46", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdthaucakscmasmemaea\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "68fccd9b48690ed7279ba19311355e69f1e821318e83630d7ec3f9ba52d8b615", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=https\\:[\\/\\\\]+www\\.naturalgemsstones\\.com[\\/\\\\]+\\?redirect\\=netflix\\.com[\\/\\\\]+login\\%E3\\%80\\%82$" + }, + { + "hash": "eac6fa3ec39e4f0d1b7ad514662a071ad0c7f74d22bb0e9ada6a8483cb774be2", + "regex": "(?i)^https?\\:\\/\\/vaslminas\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c68aa69273c57efd870666771f394086ca37cf01e11b06f20b962bb35ed67ae6", + "regex": "(?i)^https?\\:\\/\\/nzcxkcv39cbnzxczxcn79zxcbzyctx39cuzx\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "75df83e15ebe5aa8e76c4e735c4bed322d822566d8f30aaf5ca47960de50b7a8", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuahcaksemasme\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "c811e915d8ae2040689af8ead36caf200fd751ffa6c10ff41783ee6da5a2ac76", + "regex": "." + }, + { + "hash": "8bdeee581371f0e0b7bc76aab305f3771256a27ef0dcdf7537ea4c64e52027f7", + "regex": "." + }, + { + "hash": "4d4647cceed7b3d96b43b61f56b3b2472f889c0697dca3942ec8e88f70e60951", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0438eda3ccec2e06a43499df361bedad8639369c15b8fb0eaa37cbec7f0754cc", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuahcaksemasme\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "4dfb4c249f9efc6fc2f9ae52c07993b1e377b0875a4ad9a9509535cb11c2ffb4", + "regex": "(?i)^https?\\:\\/\\/aibygidfahuisdhauhdaihuzcziczxcizxc\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "65ab3a19907cb828d1ff3e19e756df4c24e861a8ab0f7945486ec6eb58646b43", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a3d982b577f007610aeec636314d869855897d5fc76e21d62e945fa204f282f7", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ad53267ff6ea0c785063edbe8a8dad28974be1504fbf79cb97cc9f1937f084c1", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9f69db9cda2a010da85ce5b945b10d0ae690a630350027f886f2f548ed23e3bb", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "abbc791782a86722daadc9bf3109ad91e7262cd8b96ac4b8262389b82773a08c", + "regex": "(?i)^https?\\:\\/\\/dakilmana\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e77ca39c3dafd7fef84d98a3d93df504c0d64d122ab94d738e27abadccaf7506", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9223f15c89975597268ca41e7fbb34b8894452b938e435870ebe15be3f3196e7", + "regex": "(?i)^https?\\:\\/\\/auisyduakshfkjoyiuqeowiueiosahdkja\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "80d50119f76f5d2de361fea1059a50e05f6011d1276653339879b64987334b80", + "regex": "(?i)^https?\\:\\/\\/pcoaselsakvmsdfuthasckascmasmeaea\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9be9d59e25b008e43eddd0971503fc04c2764bae98ce8643d8f38af0d64caf06", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1ee586dd83bceedb8f79a2c111d5f0597bb656ba8643d62d988761475565eedc", + "regex": "(?i)^https?\\:\\/\\/iuuoyasdhaudhhaushdqoieuoasdoaiudwq\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5f441f692c9a78e8e5f3e8fd829d4ae00e693e46c2fc3790f2b30bb58fa35c84", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2be88a8aff32b481ab3505b7252d481d4ceb30640ff5d0c0b8be04c632fef748", + "regex": "." + }, + { + "hash": "8dcb03d945a5f5d5d5528c61d018c1e31a3a8c1e6613a53870a0053fea81f23b", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "37be647a17be88243493d42f60b3133fc79c6b8ba6248adbcf195b99a624c0dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8005[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "094077baa5312f4f74bcd8cd082c671dda7a37b1c7e5f4f663877b115eb79fd1", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "25c10ed595b37b36ae71b609823ae30d70447a6547d086ad9915770ea011944b", + "regex": "." + }, + { + "hash": "28340f511c9c710d12f87773b5899ed1a13a245d8c9e332d0501666832a08dfe", + "regex": "(?i)^https?\\:\\/\\/uoqwryoquriuhskfklxjcxzczcouqweoi\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6e38b7a2354d5aac5b6c362622f1b6cdd9b723f772a4980e41abeceb31be0e3f", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e8e0ca78f4bd9c2462209b68b063ebdeb63af63c6e276cca1bd489802b0900bc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmduthasckamsdamse\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b5e34fc58a5cd03d6069fdb8c8ae33a73f25c2453ac16d0f6d2b494130d50d90", + "regex": "." + }, + { + "hash": "88d87a808a3a2a602384dc1ff7be79967701c3d7b869cc86852f927104c31d75", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasme\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3277b4c6422efc6c0f395148edef338b5e4a25df722a080c295092391343dcd4", + "regex": "(?i)^https?\\:\\/\\/zynga\\-poker\\-toolbar\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6ca4eba967d65cb5439276a7c6e9896901f8afd516c94911fe20cd7d6cf69930", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdfyuahckascmasme\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "134c0f6c6f9480fef22f2017745bd447ca16e1030536d467000782492b3ea519", + "regex": "(?i)^https?\\:\\/\\/naaaddaunofahshasuohdfoasidajdai\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "386a7f7afb48d029f99b66d4ee218803c87d318d290b9c1c066baf706b72faeb", + "regex": "(?i)^https?\\:\\/\\/pcoaselaksmdtuahcaksemasme\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "32dfd730a4a0d7080d6cf5f3f96217b31749ee07874b0f218bf79733e43e37a8", + "regex": "(?i)^https?\\:\\/\\/aiushduhaisdjkashdiyhhoasdoasdous\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5e2ece55d68efa379bb0bd01a9979417c6c1c6297afab8b684daafbcd2e49cf3", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6a67d5758cba3d40962c4d98b216162b373c2b63175a55b249c38b8ff60fed99", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkamsckacmaskemaeaea\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "313aa0fedbabbf0749cf3afce715deb86d2d0b0e8a5f35ff56091492dfb29d54", + "regex": "." + }, + { + "hash": "4a2b5adfffae5f29084ec5a51495aa202edc173332bb0a7ec5016d57ee39017c", + "regex": "." + }, + { + "hash": "c3929d0b1bc30fa9362436f78f1f11d523e36970bf76e7c06c763c260bc2ba62", + "regex": "(?i)^https?\\:\\/\\/jzelamllan\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "973eab41547f08acee69ae26c32c5b7fc524e8e8471c911d9089bb30b6911f34", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b50960c71796e753c349c219cb2db3a1669d823a3b12df40cafb73058f987ddb", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5ab3791877727beae0402a84afb0cd0b7821d2b694eb46c6e96ebb954b7fd51e", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1f9163f92d7bc29d72e876318190ce2bf7721ffa22a4f06dcb172f41f597e2b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "83be0d37d8bc1b5b0d0fd3c46f8986217d7ab5086fbb45d2f9a768162e0f151c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "28273a4cc0ccbba58aaad0d41ce0d9619f3a73d4e0544c1cb3c24c76b7c8153c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdthaucakscmasmemaea\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "f965ff4f05cd195a642b9e02d7cc38d7802dfa8ec1c959a66f27a0e7375e256e", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0007ae925026222843ea49a0dd9d2ed989c951a27a17a26bb7e510d8f9b51568", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1bbdbd158548619ef41e1a6ed96118b3cc96d786d0ad0fefab9852f5947177b5", + "regex": "." + }, + { + "hash": "222abec02a0a83acb024a741ea474d1a19f1031cccc05f466105a8bc075878c3", + "regex": "(?i)^https?\\:\\/\\/bygaisdhausidgasidhasoidhoasdjasjdais\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a31f9ffd19d5fd58ec55892d99bc804c8a69009f536edf3ecc755b2149568a60", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2ebe0b1b76b7e9abcb4f86d1b63b088d108b79a017b783e1945a2254be076cbf", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdyusakcasmeakesm\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8e3f0d541dc1fdb26a86ad7d7afba773111ff1e9ce8461ac46ab9d984776736e", + "regex": "(?i)^https?\\:\\/\\/uioqwhoryuqwrqworyhowusdashzxcbiwq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "15125bae858a2a25afd10ac823b7bbac5f7eee833f654d3c46388a4a3c1a6b1a", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdthaucakscmasmemaea\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "81469c7ac65bad834d81e84cccc8c919a0e16d23157f05b023ace4fb385ba500", + "regex": "(?i)^https?\\:\\/\\/auisyduakshfkjoyiuqeowiueiosahdkja\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e4cbbee90795aba7690e06f0c903a026516e63f0e87efdfde90e793f5822e1f1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ba4d903f6dcca2c49c6f5fd5f38ee6fac062f641e584bf694456d1cd55abe6d3", + "regex": "(?i)^https?\\:\\/\\/r80q9c\\.webwave\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6a37044515985d489b5df1903ea06f902db0fb6ab01edd2c17f24f76248026b4", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0340ceab2a5d1d5904e51bc2634a12bec0d2ae92bff765ed93bbfd7f0e1edde4", + "regex": "(?i)^https?\\:\\/\\/hotreeldaily\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "260e032227b7372c9a778471a4ca5dc46934765ae1c89790ab163824ee471160", + "regex": "(?i)^https?\\:\\/\\/pcoalseakvmsduftakscmaskcasme\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "89a9af6eb21e1865e16c01ea98ad7b73cdc9f0fff4d3190dbf83f4496b846131", + "regex": "(?i)^https?\\:\\/\\/cmakselavpsodtlakcamhaseuaeas\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a3ca548e6320dc7cc3e06b892285f0765b46aab7a41dd4f3bac6bf77716343db", + "regex": "(?i)^https?\\:\\/\\/yoasyuoiayufoauzxcyhzxoicuzxicoicuxzc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "480216cbd4e9f42c296126a442de74be8d68953ea8158b1e09cc20c1bdb6cc5c", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6f38d2f91de8f2e855431ef27c3576cddd60f415f951a0192b54e14c4e8cbb1a", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "a61746f0356f193b70a6db92f67c317ff931e5cfd2cc67d0a2936a830792a858", + "regex": "(?i)^https?\\:\\/\\/iouasudpausdahsdfasjdfoiuwqriaioda\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f56d0ea5d88f8343da566efd7a00eec9c9c90708023200718f34506b5ba6e475", + "regex": "(?i)^https?\\:\\/\\/yuqwyroiquwquwrsuxcozcakjsdhauowq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "07f4673fa82e0ebd492fd50bcd6a5208a8a2d75b7ccd231c1343e6c97f342d25", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdyuakscamcaksema\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "da3c7c4e0e73a8f68a5d70444fb02a37bf87487d690a93377be4583bf46cb830", + "regex": "." + }, + { + "hash": "1aae27da19b8a949c4daefec639fdd45bef4fcc12ef4894433d1b4c93a7f5916", + "regex": "(?i)^https?\\:\\/\\/auhsdfoaisasd6787atsd897ayshd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "18dedb35de1ffcee7d3d734c26f94ff9c9b101adc75774d9309ba3750b8a3f7e", + "regex": "(?i)^https?\\:\\/\\/selfiegirlvideoxxx2005\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "94337e364021e4a243e6572ec3e5f0c3aa7fa9f7071d431a905d00753c8a59cf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "2239943e882c42f7aff48fc1b7cdfb74374bb9195854a1590a0dbdf641a426c2", + "regex": "(?i)^https?\\:\\/\\/jamkaiakmama\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2e2dc051f433fd9d406be248751584be0b822a123a4023be3b089c1be348f6cd", + "regex": "(?i)^https?\\:\\/\\/infraction\\-antaigouv4224\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "294656d37c5ecf7bfea544bb3a55dc24001a7e89a103a673ec972a93283e9750", + "regex": "(?i)^https?\\:\\/\\/whatsgrppu\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "60e1bae70f8c4a10c400e0a153e857ae83e31a5e7030b0e60d422c7320eb7ca7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ab2d9a041a69bc35dfe4682330b1d777601ab400154ef8149c01086077cc8f2d", + "regex": "." + }, + { + "hash": "66dffe9d5c6540b133fa34d31faa5bc6033aee28acda8545262e4183eff17d19", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ca66c5d73042d826528de1c8c3b362c1897ade611828de29692bb96a80a14e95", + "regex": "(?i)^https?\\:\\/\\/auisyduakshfkjoyiuqeowiueiosahdkja\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "28471f276bb4ce68f35e5ba2a0d1fbfb895f16e8319758c44bb37de25436062f", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mlkoqhbeg\\.com\\%25E2\\%2588\\%2595tmfmkmr\\%25E2\\%2588\\%2595grnob\\%25E2\\%2588\\%2595cwuyaugfz\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "3f6e79d5f532020416fe005041ac79feeb358cbdb8dc82b98fd29f5e890c68c0", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "46670db1d001b9ec31d80e3f6f0b80c705729506739fd56b0bbbde9bd5fc5fe2", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtkamcaksemase\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ca8e8811b171d7a7a0fb8c413599d18cd05d1b6536b09ae89e486472a469e8be", + "regex": "(?i)^https?\\:\\/\\/redirectionred33445\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8e35a842382ff037940ae7912b790249084fd926517f50f1e31231a712332541", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1a460bcb5105c21ec452c431db70a9e316636638b5d0781dc455122c0b4573df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938b460d05\\-d89dd6e4\\-c06c\\-459a\\-9d8b\\-61e5d7d14e85\\-000000[\\/\\\\]+jDkhkPasxQpUmAatXM2d1M9hqpg\\=402(?:\\?|$)" + }, + { + "hash": "e9cac9c262a153b6e15223e7d3e4008bce758dd4e69712007ace6f451ef8a9c7", + "regex": "(?i)^https?\\:\\/\\/yasiodoiuwqieuuoiqwuewqoeuaskjda\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "af0a485e87770b2db292eba2cd1db6071b75f1cee4d180034a9169df5607c3b2", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmskdyflaskcasmcamse\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "02195998e18f5fdd64e4e30d143afc4ad547ab53bb14450917fbc06e8a044567", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "56bbc6481b5fb86fa8e3e5f3db679146376119bb13f0fb5bba4d1f72101e1ce0", + "regex": "(?i)^https?\\:\\/\\/bxrcdetfbyhuixvgbuhnivybguhyntvygbu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d2aca81254b592bef6ac2b64737d06c425cc8b5014e4c2d9ca51ce1938381448", + "regex": "(?i)^https?\\:\\/\\/elishaunderstandmehegpqk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "3bb87d62e3f308379a0d43fec9abe4c110bbbef84388f0cf3cbd65b6a0f999ca", + "regex": "(?i)^https?\\:\\/\\/uydoaoduouiajsdhxyzocyxozicupczxuw\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "536d81c6b8d138873255d917e0b80f7e603b9c0e96c2084f5460659c6ffdae37", + "regex": "(?i)^https?\\:\\/\\/aibygidfahuisdhauhdaihuzcziczxcizxc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6013dcb40032da0f1ce585d3197d18edef02d385b46b4a5fa6a24a4b4d075d6f", + "regex": "." + }, + { + "hash": "87a15e260953b239ad93145378e687dd267271c1ab7bd69a2a21cb2c9847a98a", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutaksclackasmeams\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ab7d90ac170b20af7f3e345547afb64b6910a48a64c12c0b40f08fa4b1342170", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "031f91e2bc69222b42def19ec4872c8fdf239addaa8b5aca50f17235b3e4c76b", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyalcakscamse\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3c2bffc70f574e9701c06cbd1db3df06cc80d0ae2742b6688df6c9791fd331fe", + "regex": "(?i)^https?\\:\\/\\/pcaoseakmsdutiakcamsckasmaseasea\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9be4c76d651059edef1cbee12dae1ddf6a45f75303f66dc0df3e960cb89540cc", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvdmfyulcakscamsemae\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6cb54a1ab2ef9f9e50b0a135eb58e5c63eaa0ea67de5c2d5749e5ce4523f7568", + "regex": "(?i)^https?\\:\\/\\/mziuhcozxcmzxcoihuzomcauiscozcoz\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9b57798ac0bb68ceead078875a0aa54b766e670bef82adb47882a171e3c4612c", + "regex": "(?i)^https?\\:\\/\\/nzcxkcv39cbnzxczxcn79zxcbzyctx39cuzx\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "292dd1954e0db704e84eed10caa38b3d4ed7e0754dd225839733e58531cac73b", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "7c3f4ae2faf99c7d6bd9d5abe5554f1770cc7c9a32b3720084e45119374fb425", + "regex": "(?i)^https?\\:\\/\\/bkashdbnxjkbcgizxhcoizxhcnoasidhals\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6c613e3e5d266eee9ad289f418188f2e4dab07651fa2dfd9b879a0daa9e8f96a", + "regex": "(?i)^https?\\:\\/\\/pcoaselakvmsdtyuhackascmamse\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "72a6e73ee4b03aa39b9ca065f0690f590dbbe573c1cdab7eb6d6b2ce6cc0e3c3", + "regex": "(?i)^https?\\:\\/\\/uiryhoidhasoidhhdasoihcoxzijcozxc\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ab6af35d43004d1ead328726aea66e276f154f9afb6e2e8867607972ee764934", + "regex": "." + }, + { + "hash": "d6436e8dcc613d38bb94051f7762abace45ed6c329d0f6b5cba7910872febafe", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ad53b6df87a2b997dfb70b6ee7493d4ba0a2db9b4e4eb8f6c6b3c3c701a12e94", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3b03ac18f15b014ef2ae07785fecb7190c81698e105d620d6db662a2fed38715", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c930a759039da051908106c160eb764c13b86e3d061770fa7a5c63f7ae4d6093", + "regex": "(?i)^https?\\:\\/\\/cmalseoavpskdtmashcausckasemaem\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a941e2127aa3bcb4de10ce6a398b90c76e0bd7bb5f12abf1be92ee70d7ad4fc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938ab4c6b8\\-636787bd\\-d60f\\-456d\\-953b\\-a8428cdf4e2f\\-000000[\\/\\\\]+kzPXLXWybpGBn_k9odBJhpKLn1Q\\=402(?:\\?|$)" + }, + { + "hash": "0ed8f9711398be902c6062209beff1f42762196e462b5fe19c29abb1659da890", + "regex": "(?i)^https?\\:\\/\\/sdaddfa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7c63ec7f586f8d6ef9204e99fab439cf397b9203cc06918d561e0ac52a22342f", + "regex": "(?i)^https?\\:\\/\\/zynga\\-poker\\-toolbar\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c9de69c452fd44cf1b8a7ee5a7ad662a6043cc0d19fb2d4cf513daf5af78d016", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmdfykslvckascmamse\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2c2c7be6378a5f78570d79a69986fd816ba10016d6da478778eb8910949651a2", + "regex": "(?i)^https?\\:\\/\\/aibygidfahuisdhauhdaihuzcziczxcizxc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "799d963507b338aca6d9c63542418e1cf01d9e0f151d140871e6fb12dfc7a592", + "regex": "(?i)^https?\\:\\/\\/mcalseoapvsdkftmashcausckasmeams\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ab0952ceefb166122eb64530e89b65c7141126518839b741ded5082493b6db7f", + "regex": "(?i)^https?\\:\\/\\/zynga\\-poker\\-toolbar\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9bb531ef99d0f51084798b51a1f7cc921509c96d4364cb1cc5c391d09ef79833", + "regex": "(?i)^https?\\:\\/\\/niuhasnaosuhfasohfoaishjfoiajsfahnisu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e0fd5cdb3f9d468849625bd8f0d0e1f8e06578e75ac31aa5daa2230c93d0931c", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsdutahsckasmemase\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "27c64d60e118f97a16934ad9369770c00e5eb96313a887496322e676d6a2a9e1", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6f38ad9596d89fed5c1608211b91d3468bee46258252d8aa9704d1f1cd88d0db", + "regex": "(?i)^https?\\:\\/\\/gomonopoly10l\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ab9a8e1a0c949bd29f31aba632790709257199f1ea8ec195d4f92df6e1cefd7f", + "regex": "(?i)^https?\\:\\/\\/auishfoahsfhasoijoiuwqurpquwoprs\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "da2255fc8c01849c0da1843496d258c5fd228187d9ee0b6889b5ae538d50b3e3", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "72d4cdf9ccc9feaadcc411a6e35027e5a3b6f0d362878acacd43d64f1e2650c8", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "14bf362e49089222ad8cd747081917dcb4b97ff4565b5d6cd06609d7c6518d42", + "regex": "(?i)^https?\\:\\/\\/reyretqewrqwrqwytubvxcgdhtjhutgfhfs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b8353c7ec4a7af535fd8312598f1338ed60cf7493233ce36f1c3edcc8daf918a", + "regex": "(?i)^https?\\:\\/\\/pcaoselaskvsmdthuackascmaskemaea\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "337cc57295cdc3e9f73bba324ae3b77dd18eff589a1c7e937cbe28edf551bfc7", + "regex": "(?i)^https?\\:\\/\\/pcaoseakmsdutiakcamsckasmaseasea\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c602aa58b5395f4a39ee62c930a07043adad5761ff39c116ec39b139d2e0cb28", + "regex": "(?i)^https?\\:\\/\\/hotshotsvideoxxx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "098dd84651779287b8bc2162641b1123a4301b91d29bad653104958de1aacacf", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutkascmaskemased\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "226bb08623c78bda36277746aea3a4c1d86fecdeab7b38e42f747eefe56bebc0", + "regex": "(?i)^https?\\:\\/\\/augsioahfnjskxmxzckhohawroiansd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e90257764befe017e44231b7d150f8145401906d950daa35421561ae3b9a5a6c", + "regex": "(?i)^https?\\:\\/\\/cmelaspovsodfltyaskcmascasrasgas\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4ccbf5bb7a8ae0bd09d8ad00088e09c129d3ed67f2d500370847d11ed900876d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsudtkascmaskemase\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a1f717f324782b89d2575ffd6d524bac242d1d609d520af967eb69468c6d8095", + "regex": "(?i)^https?\\:\\/\\/pcoasleakcmsduthascxkasmease\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9a02d8d2a9588cd2fcf9d34f5b5c3fd2c8f82a256800783be48cc551e0b9648b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?id\\=535X561\\&test\\=off\\&xcust\\=b8452c10f31011eda2579e46292aae400INT\\&url\\=https\\:[\\/\\\\]+www\\.naturalgemsstones\\.com[\\/\\\\]+\\?redirect\\=netflix\\.com[\\/\\\\]+login\\%E3\\%80\\%82$" + }, + { + "hash": "6c0e41da18c52ad214b47eb4265434bb20bdbfa4d6092e2f3eeb1f3a76735472", + "regex": "(?i)^https?\\:\\/\\/ytiasyfoiasyfuaibhxczjxbcjhzxgcklzh\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c2adeeec4e0f841a79d507ee6f2dd21bfe0824b88c1736f1e7fc8ea8ab183959", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1bfec6a8611ab94d6c54a2e52eadb49698594df8c5dda19b89b1d8defd2e7b41", + "regex": "." + }, + { + "hash": "6dfdc7b5bbf69d721610fa093db7b4adb7f1b2749a469ed56d01ed567dba02d4", + "regex": "(?i)^https?\\:\\/\\/fortnitevbucks7777\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "86f2bedf8802ae80155e7e604547201cff6b27281c82bc0db977f9ef1820d34a", + "regex": "(?i)^https?\\:\\/\\/jamkaiakmama\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1181002a711bd462ade61b7c08f8525994e2c353712f63e0bad80c4a44ba4362", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsmdtuakcalcaskemase\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "68b82745e79166a611e5ff059f0a2fd97b3cb37cad087ed29a066ad4646a1078", + "regex": "(?i)^https?\\:\\/\\/ahuidhaoifakjisfnojxnvxcvuhoijirewqw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8c1921178a39f13f5031a6fce296bbd27b11c87a1619cdc40c387feaebba1400", + "regex": "(?i)^https?\\:\\/\\/yoasufaiusfpoausfasohshadoais\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "134e41c8499421f4755a448a766f2c85f47a8651a844df64b1a27bebf6988037", + "regex": "(?i)^https?\\:\\/\\/pcoasleakmvsduthasckacmamseas\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "440cdff14197c01d9985423649f6e4ebff1a09b7b8714d2b91d58e6c0b58431d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938b460d05\\-d89dd6e4\\-c06c\\-459a\\-9d8b\\-61e5d7d14e85\\-000000[\\/\\\\]+jDkhkPasxQpUmAatXM2d1M9hqpg\\=402(?:\\?|$)" + }, + { + "hash": "f5d0363397a5dbc9a1a89afa00322467988f14c182b6a5024ffd0ea594b99742", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdtuakcamsekasem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "434a5d1372b47d45d435e4d083494ce0695bcae474bc04da11b263b3095f243b", + "regex": "(?i)^https?\\:\\/\\/blazevideotrends\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cb7893c61a5dab7e04c8ef24b25e3ec9424819fffdf69cf0a6121caaa16ca17f", + "regex": "(?i)^https?\\:\\/\\/frt24\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1d83fb6440b37a2187331b1e20fdddeb866b83d02179d2a5bbc7cec99c5d2120", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auw(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ac0be7b2c5a1b59b685d91928accecc702ae714d1491caf364e5b006dbce902a", + "regex": "(?i)^https?\\:\\/\\/shaw\\-101034\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6c394866eb03c0b2a89950486426d8fd26557f35886e76332d53295a0b8983fe", + "regex": "(?i)^https?\\:\\/\\/vaslminas\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "243bf7460c9a649b7103bab232995a07b8b0dca021f36ba4c8590bc6fa6745a7", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmftmakcamcaksemasea\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "842fd4afad09495cfb98b982dffac93902d4aa3375f30ad8bff61e2740ae69e8", + "regex": "(?i)^https?\\:\\/\\/hkasfkgasiyg6diywireyhotusgadgf7ao\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "efa2f699be00f64e8cc7318ba593f2c040bf4baa70ea0d2711dfdf9d63fb6121", + "regex": "(?i)^https?\\:\\/\\/forttt2nite\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "457384e525253aa58af6bf61defc650621e2eeb12faaf9a1f39c99b886847770", + "regex": "(?i)^https?\\:\\/\\/pcaoselakcamshcuasckamsemameaeas\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "09a1d7c81e08d8d560da9ccfef04d00ff4742afe6853b8b3b06af34ad527a5bb", + "regex": "(?i)^https?\\:\\/\\/sghsjsghghs090\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b1fe9eb74d50d9b84a59c2e5dca9fa4a2a08679c252fc96aa4726aaaabc46018", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "c5a04c94da3c4f7439ae329be6b3039221ec580723a4b01c5680353bde192840", + "regex": "(?i)^https?\\:\\/\\/lcoaspealvksmdrmasrkclasoepasl\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ef902cb39cdd937127dadfbdc10aaedf3aba945002c98c6694ca646f4b6f43b1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcackasmeasme\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "49bf7776d7176e3c1eed5c1cf106a28b0407d8c6c53a15faf8c31d88ef334512", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfuyhackascmasme\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4f93ab4546cace7a8e3c3d153c86cc8a8a5d2977a3396a8bd71678b0176792bc", + "regex": "." + }, + { + "hash": "6fedec5c34d27b66ee2962625b7a98e0bd36438798b1e03bb27390ff921f70cb", + "regex": "(?i)^https?\\:\\/\\/uiasoaisduouqwoueysaczxuchouzweixozcu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1305187d0170948f6decd1651d311d624c6e40b657a35cd0772350bac3643cd5", + "regex": "(?i)^https?\\:\\/\\/kjashfoashfkjashflcxzkbcnxznckjshna\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0d79b5d2775cc8e11cb2494e4099eda7d4b0bb05810b320cd896bce283f5df5c", + "regex": "." + }, + { + "hash": "b83903b89f28515f2eb70cd09449aed853fc464f6413a27b1edbae2718c9e59c", + "regex": "." + }, + { + "hash": "c6c36ae31a145fb80927fcb533fce8f9365222f22a0664f126a56a8f73be5a85", + "regex": "(?i)^https?\\:\\/\\/currently142134\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c6cfd68cdb36998b889c0f404e9ad4da83c5ace8e6afe8ff1d474912f4b21331", + "regex": "." + }, + { + "hash": "afa1ab010ef4db55044f20892a6902769a95f44bb99b9a4e67d63dbed0f276f5", + "regex": "." + }, + { + "hash": "c458155ff7f8a12106a75386e9a2d541741ace773a58ab01e5848b9f1e6b2e7d", + "regex": "." + }, + { + "hash": "9fea53cb6e5e20f9e452c3881e0e3db20718176fd0174e1c3245fe92208fb8a9", + "regex": "." + }, + { + "hash": "ef1b0197d568bc1e0fecd629d7e62082a623db6344ace53fa2105e822d4f0ca9", + "regex": "(?i)^https?\\:\\/\\/d314xy\\.csb\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "aae92b31f7d27ff1164b5798d9140d45576fc6e3225463892ad950f95ec17f6a", + "regex": "." + }, + { + "hash": "056c9a067fb20f34c74874cc63d5211616856219adb5c11f76844192d81236e9", + "regex": "(?i)^https?\\:\\/\\/qayueezv\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e0d1c3103f4170e669e0607e43c0de05371c9595ff171053e3f4f924128af2ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oauth(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f89b695c03b90b9a1c797ac7005cf0b9d2fcb9072dec566561ea10133ffd4916", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2a34da028427833d281e6fc2e21f62d979e86707b5a57bbbb57b31e7ebdba4b6", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "337622b9c79c7f1e8e2e54329b9b8d88bd5b84799f06f590f6d67db5ab603a09", + "regex": "(?i)^https?\\:\\/\\/jkdmhfde\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fd198ce52f587bed29ba4478b92d8c274883e76d6c3a957f10b2b83aab4680bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "271b01c6956c553fbeb6a0041ee60625c75c8d26e35f4a6dfdb9df4a65bbd2e8", + "regex": "." + }, + { + "hash": "ec836b1711452c37f3ad3f94420b031400809ebd3ea39f262471b87ecadf92d2", + "regex": "(?i)^https?\\:\\/\\/linkphilippinosss\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1ea982dbf78283796b113ffcb68512c4ccd1bad98adf33c8e16aa7984216ab51", + "regex": "(?i)^https?\\:\\/\\/hjsd09828\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3d25378d640b54e7a69d163650e32d0628b7bea21c9832d20024d0f1c78b7beb", + "regex": "." + }, + { + "hash": "626819ac513cde11c39c649eb08855eab32f3b64c3830aa56f0fbf9e1f617f7c", + "regex": "." + }, + { + "hash": "0872d229f5ee07f8e3da78fe8139289bf9d3e1983cc0a412f956c0f668a73d83", + "regex": "(?i)^https?\\:\\/\\/serverprovidersalidationactiona1domains04\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5c429049c6d8195ca592376a790b3ae0545c84ffca05f1601584032d976cd77d", + "regex": "(?i)^https?\\:\\/\\/shaw\\-104925\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "440cdff14197c01d9985423649f6e4ebff1a09b7b8714d2b91d58e6c0b58431d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4594124\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938b6de1d4\\-44a7474f\\-a7b5\\-45e3\\-a874\\-38a811db3923\\-000000[\\/\\\\]+leLv5sCAhcGPXiwVlDjVTJz0ir8\\=402(?:\\?|$)" + }, + { + "hash": "6f1b0e53a5e4a4d6cdaa82739e4d198ef996671c1cc47e4867aa4b4c72a199de", + "regex": "." + }, + { + "hash": "d1a72a7a84520781aa45b633ff7ff7583cb0ec9382c140eeffbfb15c6b25318d", + "regex": "(?i)^https?\\:\\/\\/ealvarado23\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "caf3fa12912f554f80306af42aa7f00cbd7e756dfe2e3bbde023344e4c2903dd", + "regex": "." + }, + { + "hash": "a88a17582cca5f125da8445b8f600548f2b3278f3f58c8297f1faffe20019cca", + "regex": "." + }, + { + "hash": "9cbc30b243c5c24148877ab8ea0c510ff24b6c252b72f403ef2085980c21577a", + "regex": "." + }, + { + "hash": "6d925194fa475c5c0dfa0efc37fe79ae623e0fa1f7e4792a8aed3bae27594c59", + "regex": "(?i)^https?\\:\\/\\/attgktifrivjfdkdf49fej3ituvjv393ui93kceidkieoc\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eca336dd8995762a82f88144598ac450767b00dc01b83052a0d124e6122cfd41", + "regex": "(?i)^https?\\:\\/\\/onlineclothingbrandorg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "46aa615620b9037f58b2a54542ade2423db2d2402eb88e10a2f0f6aa6f2bd3bb", + "regex": "." + }, + { + "hash": "fed6b9009e1cb5706c38c53ee50451dd6419fefe2891171059642745813cba72", + "regex": "(?i)^https?\\:\\/\\/hppajapn\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f984d2b65e56a53d4c27f39e643ccb0812ba6786f4ea8fa7268db466dc918ab1", + "regex": "(?i)^https?\\:\\/\\/xcjdlefy\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d427701779e7d5b05e8e2bc8cc3827369ea092f38503df0867bf981eab4038aa", + "regex": "." + }, + { + "hash": "7a1d55f96db31e31b018977d3e665d1a7a34cdb3e8671f8027b1d19cff84abe2", + "regex": "(?i)^https?\\:\\/\\/onlineclothingbrandorg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f3152245906e3bde10ae3cb297b9f6fadbe715e20903de5dd469eaae91528cb2", + "regex": "." + }, + { + "hash": "57a6b56e8a3504ba904d527b6c85dd2299ea5ad10b1ebd633ea65f7d397401cc", + "regex": "(?i)^https?\\:\\/\\/www\\.47\\-129\\-119\\-76\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c06d7becd92a0aae0ce4023352930ac2c7083c69523b77af640e67ae454d5b19", + "regex": "." + }, + { + "hash": "2606445d84c9418cea111de42c5ba9287eefe7c1963923f5e6e95e09f3db961b", + "regex": "(?i)^https?\\:\\/\\/msngrcall775567\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5650eb41c6cdbc3ee1ccd301461fd8f3618c2cd9ea0a30063b6c455977d98aec", + "regex": "." + }, + { + "hash": "3a2de8c8e3d297ff2983d9eb5b19d52cfcf305b2e1b54822d06a40a558ef2357", + "regex": "." + }, + { + "hash": "258eaf04331d0e02cee9b54ed041a4f3ef396f4f458c5842983688431f12f535", + "regex": "(?i)^https?\\:\\/\\/eastlink\\-103689\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "de8e080ffba77a852ea973fb13f3a7341ddda0b28f2a73670878ec0e755be413", + "regex": "." + }, + { + "hash": "6ae40dc1db47a468d93307e624a5a7f4d81c52e6bb50cedb44c5a39cd03b6f3d", + "regex": "(?i)^https?\\:\\/\\/xfycwhrt\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d75d65bf5bb8f8416ed8e86ddc7b39dd6311874c5b9e95de568bfadab05db56d", + "regex": "(?i)^https?\\:\\/\\/home\\-102517\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "119b8f979fff2a347e4cda928f44248d73ceaebfcdd8b506318cf6335d1e5338", + "regex": "." + }, + { + "hash": "c280475f926f7edc01050b389a62df73071d1c1d5f1a2b3002eaf3fb8278d25b", + "regex": "(?i)^https?\\:\\/\\/home\\-103720\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "21d5bbe65f4146d30fca44c090c8c20fccd3ece9b37275323eee40c82c65f529", + "regex": "." + }, + { + "hash": "3c237f25533ded64a12c9edacba2b55d48de2b94c4ae86b0f2f07d3637c45cb7", + "regex": "(?i)^https?\\:\\/\\/www\\.coinbase\\.verification\\-account\\.143\\-198\\-130\\-125\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+el5k2q(?:\\?|$)" + }, + { + "hash": "fb3c3e991f5f1994a717a3a6c903445bb87822e586e2db631d6db3583fe9def9", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9c2add501da88327fc25751b40e5286c097e125edf5f1a45710d3d57ec23bfc9", + "regex": "(?i)^https?\\:\\/\\/msngrcall775567\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6e7e5b30b1656e12f9b58e3cab19644e0f8cb54a7ccd782672953a1fbd87c75b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-2" + }, + { + "hash": "e0ca8a4980591899d7e349aa1d25352be73c032d9510a9d3859520de0ec47d41", + "regex": "(?i)^https?\\:\\/\\/msngrcall775567\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "02658bc4a70fd5bc8d1e8a083bd4451576b6574dee019eec8d54fca51b96d479", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4594124\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938b6de1d4\\-44a7474f\\-a7b5\\-45e3\\-a874\\-38a811db3923\\-000000[\\/\\\\]+leLv5sCAhcGPXiwVlDjVTJz0ir8\\=402(?:\\?|$)" + }, + { + "hash": "5711c609fb6d33632d7a18a945ac384a6d2624f7fbd744b49e9e670f88d14ed8", + "regex": "(?i)^https?\\:\\/\\/bell\\-104431\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bc9e612fc8f08ce6debc0fe0f43aac204f8a9484bf4f9df534ac643c2d3b7f03", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "2f651abe17d0081971e4862d3b246a4247cdad3aa1d0aadf9dfe44381784aa64", + "regex": "." + }, + { + "hash": "b098481e2586d893eadbac0040039900d6b4da52928925ded667f60311dd45eb", + "regex": "." + }, + { + "hash": "eb4abbd563e7023a6e01efa7d88116ae795784dea279ae7d2f65333613a4e325", + "regex": "." + }, + { + "hash": "01ec0b60965b729b35be62c5ae09004d30556251d61a8e515bb2d919c4403923", + "regex": "(?i)^https?\\:\\/\\/new\\-currently\\-1\\-23\\-24\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d7855607893e797d2bd968e84b2726575deb73d57194625af6b4b8118c5557c0", + "regex": "(?i)^https?\\:\\/\\/khaled\\-103\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e36af6d2591a0008cb893d36c48ca3a41cc560822c4b100f8ef0204f03f8c4e5", + "regex": "." + }, + { + "hash": "5b909dd5c0e5a77cadb76c8401aaee8c510056f04bb379b88b3b309949d5a467", + "regex": "." + }, + { + "hash": "7642952badbeb23d7a7bd7496e5166dc40f917e05992915a08fbdf9eaa6240f3", + "regex": "." + }, + { + "hash": "3da16045bf241a8fed6ab9c7e2eb288dfe48be58b8ebc5164f694b51223d2d15", + "regex": "(?i)^https?\\:\\/\\/webapplink\\.firebaseapp\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "97a2f4cf52c647c8ce796b80ad6cbcea8953320e4710c32a5f327b745ced3647", + "regex": "." + }, + { + "hash": "1d391ef0c04674b553ce3eef54cdcb1ee8e2bd7ac38b17924d96010be3c32156", + "regex": "." + }, + { + "hash": "13e273304a8176a002b1f9c0773ab098f4116ce8a3f9c5e7ec4feec2fa4d970d", + "regex": "(?i)^https?\\:\\/\\/speedtrack\\-canposca\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d7e0061cef1c2267f67d8691f28af6d7cda3f2940687db1f2873c595b4fa2e2a", + "regex": "." + }, + { + "hash": "4998f955a14f1a0b4316cba9190e6b4c94f45ec3b9fed04b1c2363fd8623aa82", + "regex": "." + }, + { + "hash": "c97422980e5fe3e74e7068c27a611c804d7814c21b527091f5d4dd813a49b32f", + "regex": "(?i)^https?\\:\\/\\/nhxedqml\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5a3c1d164337b127d71f1103e12ebf3b9a63e4b7c5d67cf967da31fdde4eb2d4", + "regex": "(?i)^https?\\:\\/\\/home\\-100297\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "364d01d7be3eb674012100d67a436262882bb5806a1236dec1e010a725502998", + "regex": "(?i)^https?\\:\\/\\/onlineclothingbrandorg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "de28c7c405571c75f3ab6bd34cf0739b30199ed085823911ef8c1d0fc5623989", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1bf4df1406768d4c52fed11f515df0c64e4582409c1bf482e90214f4dda48d7d", + "regex": "." + }, + { + "hash": "348c7121d2443cb648ccbe999836dcca7ee9e4d085a878e8f2d2aa882349f9aa", + "regex": "(?i)^https?\\:\\/\\/jsd9jew0dsj0\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5675bcf8fd8853f66b112ce0d9f60b10dee13c928a544c0c3d9224363af19640", + "regex": "." + }, + { + "hash": "fe025dc04ef1f129b1acfbf76bb1e4ad606440373256bcbcc6b47f58e2fc2ca6", + "regex": "(?i)^https?\\:\\/\\/linkphilippinosss\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "915738832a0c46635d5bacacd840e2b913cf0ffc5cc5ea915e9adc237e712978", + "regex": "." + }, + { + "hash": "317163110276bc194e8d4ad541f66e80deecb608a86f03b2bbe6143a646758f4", + "regex": "." + }, + { + "hash": "9a12344b2c923fd689ba19b0253ecd845d20ae08461a1e7f011a32a5d825a46c", + "regex": "." + }, + { + "hash": "f09b744ac990c0e69dae0533d7ac46a9da6a5099cddb601ce623f9753cfcc2cd", + "regex": "." + }, + { + "hash": "ddc54d4eac0c9f6122814e1b7d3ba04769e087ced0dac7e09175e98408eb8771", + "regex": "(?i)^https?\\:\\/\\/bqaqqghv\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4e6fa9902a798cef4ea684c447131202864efe8f65c07c397a79898cf3195ed9", + "regex": "(?i)^https?\\:\\/\\/msngrcall775567\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4eb0c0cb9e7878545d874e5c8596462d070b1555a4012aae7c006a2bfd265ad3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b7c749f4c75f898d16aac7a23b96502dd612827ae08357dd52a81d5cabc74dba", + "regex": "(?i)^https?\\:\\/\\/tmvkshfr\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7d4dc2f937675bd879ecc990680460cf472d09ef72b4f967f60747752ec78147", + "regex": "." + }, + { + "hash": "1ffd8cb09ed7a08a37c3da19e45a920848a873e41ac69e3105db7476003b479a", + "regex": "." + }, + { + "hash": "7b0850cb1467f2fa486beb12dad22cd308a707f75909b6b34eba6a3bb1ef9969", + "regex": "." + }, + { + "hash": "6ee854c30727de7c9e9684a2c26452034ec41ae382d5a0e82c4521fb8e17897b", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8378e7565f978d66f3fa56626f733d3614738a231c5cbefb32e74afd7bb3d41d", + "regex": "." + }, + { + "hash": "62fc1c6c160e9abd33421c4eba6058a9fa4e18d781b53846817dee7a0b6f0590", + "regex": "." + }, + { + "hash": "98e54a589ca899f0534617974431ae636c035c992d7b3f7a59db131572d26b7d", + "regex": "." + }, + { + "hash": "3cf261b85281df3c40224480ca3d1b8502c69e995c659d58dfd6ca77fbe6268d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+25g(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "772b45df5fec18078bf9a085e571dc6d8c8333daadc28d418d7779e81117c61b", + "regex": "." + }, + { + "hash": "a82f61bcc03dea020f225930ddddd3e8a8db3993a22a46046a059a7f8107396f", + "regex": "(?i)^https?\\:\\/\\/home\\-101521\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "013175b9d05d13de36cd6233629eb0bd69555e75004f846c0f015317c26ca348", + "regex": "(?i)^https?\\:\\/\\/shaw\\-105922\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "451a5b4084d537d2f7ea3c77aa2b76af7165f658ab1285b64896fc259c9bf65a", + "regex": "." + }, + { + "hash": "c97fd2bb7de49b39a4419c07a96dc14a51c2038c341895601d61211255bdaebb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+user\\.html(?:\\?|$)" + }, + { + "hash": "9fe1466322a4827e28c4cad90d18c7f44f0cac168aa936fce4c239ada35b9511", + "regex": "(?i)^https?\\:\\/\\/msngrcall775567\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7933cb258a65162da1a86d24757ed7b8df74297b75e66c778a97424d0e48b2f3", + "regex": "(?i)^https?\\:\\/\\/eastlink\\-100612\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7feeb2ab52b79d3713051be732b5210557c2335cd8dc4f97b51827be52f12296", + "regex": "." + }, + { + "hash": "28f5e560c4126d5e56047ac7503e225459e28db6676d9e23ed5874f89820b75f", + "regex": "." + }, + { + "hash": "71c3ead767d0aef121a589bbca575928fa7bbf875fd63bd51953011ec209c028", + "regex": "(?i)^https?\\:\\/\\/mhzikkga\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9dbd71e683528199ce71561d108e3875e0d93a2b4e33cfb9114057069a53b00f", + "regex": "." + }, + { + "hash": "9287b92fe39871b02017dda8e4c74437505cfba9ea5c9a675fbfaa5e2f91a5dd", + "regex": "." + }, + { + "hash": "fc87d63253ea8add2a5295502bc30a9a98c436fba2a62855c94760499660f266", + "regex": "." + }, + { + "hash": "06256702b830d5b2987c5ff3ca9a7e20f5423a946b956f85dd475bcc0ba36867", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "95e767e1e753ce931e6580289ec3148223a6a524224e39e12421c450d51c4013", + "regex": "." + }, + { + "hash": "0757a299ed2bda3d01efb8185bd2ab4dd14aceee5a5d8e982b97ce925b5e6eba", + "regex": "." + }, + { + "hash": "dd69b0341d6190225a49ed2385165b9b684572725cb24d12557c5dd341d980bf", + "regex": "." + }, + { + "hash": "946feb2da3b89726d02f57e67c02009b626240c5b8a5513103695747f83a4f45", + "regex": "(?i)^https?\\:\\/\\/onlineclothingbrandorg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6d861e92ab59fd8adfa80b2856d03bc5fdad7f974f4da06ac3b5dba0945f9350", + "regex": "." + }, + { + "hash": "7b89f3ce05b39c71a25fe633d86a49ac2c785e96d94ec4c618bfdb4342c2804c", + "regex": "(?i)^https?\\:\\/\\/o6is7n\\.webwave\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4eb0ea0b4eaf724f85d283bcf8ce0d2fec8f55ce8ef9626717a4f522a3837e56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b16ff869fba16d24085bf593f15edba1ad37e2e596fc523576e441be3b8f7bd3", + "regex": "." + }, + { + "hash": "5c03f16a942c590c2930b77eb9dad0b7f03740b7b2480af913e77acb19490d8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "658c65aebdda0dc8c7a253d7a8ef5a73110cc457c272e1463c57dffe9a1e1766", + "regex": "(?i)^https?\\:\\/\\/bahsk222\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "af4ec5961bf4cd1528e73a1324b4f3925967d3ebabd3afb14fedf3644c5d30f7", + "regex": "." + }, + { + "hash": "f0645640050a368e1fd56f541531873a28639127b842aaca488662c4d28f47f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938ac41437\\-4be1aa44\\-2b4f\\-42ce\\-a473\\-c0e7a376e4d1\\-000000[\\/\\\\]+A9xR99nXfEkMRrocj8H6HqkBAuk\\=402(?:\\?|$)" + }, + { + "hash": "65d05a2f3ae50baea1251ef34f5c5b0bc5c579deb275bc583f0eacf256958112", + "regex": "." + }, + { + "hash": "f8155b7afa98b529095b55cd499b56b3d8281e2bfe7f3ccafafc64ebc843159b", + "regex": "(?i)^https?\\:\\/\\/home\\-100945\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9c7ec3680bda80d1319e3081713099a0fad336eefe8634b0bf25154b4bb9c601", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "de23113cc8e1e1c6443976f2c0ae40b6f67ccb257a49028b0e0426749308e877", + "regex": "." + }, + { + "hash": "fb7ca7608dbec311d3f5d7c11b61d47159387a905febc6030ae972ffe8f0c9a4", + "regex": "(?i)^https?\\:\\/\\/jotordr34\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "84435ffbf7f5ede71b4894fa440a75b1b3837fa001ee7753dba9026edd091b21", + "regex": "." + }, + { + "hash": "28f0bdc249adcf2aca640cba3133cc53730f46dca8787ab4fc01b112415cb019", + "regex": "." + }, + { + "hash": "a7f129930c0e36fa62de3c5f420ff70d78e9987db34e59b96431a22cf380390e", + "regex": "." + }, + { + "hash": "fbf8f7879d03227afef2ea881386f4d08981627ae25054abffb2db252fceef65", + "regex": "(?i)^https?\\:\\/\\/cibc\\-056\\-dev\\.azurewebsites\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "ed92e501c3903ebe194816b5b53be74bc4ca335a1bf06d678109f6203a8e254d", + "regex": "(?i)^https?\\:\\/\\/viecex\\-nsn\\-po714\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "95e796db9425854e30f9f03ccef8e2bbb43c24f25134e612ad9dbdbe30c5739f", + "regex": "(?i)^https?\\:\\/\\/bafybeigmtnio5oqn4jiccbgwgara5lhzl56jgh7x7ly7jctu4rsvxijsby\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "02658bc4a70fd5bc8d1e8a083bd4451576b6574dee019eec8d54fca51b96d479", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4594123\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938a82b73f\\-030c434c\\-d545\\-436f\\-b6b6\\-77ba40aca850\\-000000[\\/\\\\]+A11lD8akPXs5MwZXgHEBXNoAwis\\=402(?:\\?|$)" + }, + { + "hash": "c983c8f5aba0e7a359d2e23fe3aba7a7ae509ee1754b8839dc67c2daa4a2a54b", + "regex": "." + }, + { + "hash": "5d513156fe5ae62600d1a7de92b0933114fb05f2923f9589fab74cf9695a1797", + "regex": "." + }, + { + "hash": "b8bb62cdc18ff34d9d5a84e1290077ee09f9118a2cf22ccb3f5fe90307f92d17", + "regex": "." + }, + { + "hash": "a941e2127aa3bcb4de10ce6a398b90c76e0bd7bb5f12abf1be92ee70d7ad4fc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938ac41437\\-4be1aa44\\-2b4f\\-42ce\\-a473\\-c0e7a376e4d1\\-000000[\\/\\\\]+A9xR99nXfEkMRrocj8H6HqkBAuk\\=402(?:\\?|$)" + }, + { + "hash": "b55d6db92f0327048ab1fea04c8396e105976fe14715e7d028d2755b9f7b238c", + "regex": "." + }, + { + "hash": "4e45af94d3625b6ce85ba4888ee6f5615669019377943c80451e37eb10c4c2f8", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "abddc746aed0429843941eb6c1f823245f44ed8beb9ec6032850cd300196ed03", + "regex": "." + }, + { + "hash": "9efb051822c9e35f7898d4434d3f15091abae56d3ab0bdc0fd441253daf0a307", + "regex": "." + }, + { + "hash": "32800ac21bb998993651764c1e6529ff2ee685a6c791ee1db7ab2d477fc25545", + "regex": "." + }, + { + "hash": "1a7092556a9386169f58d48d091a5d2aa9647aa44325f0e7aca5d0651f12b238", + "regex": "." + }, + { + "hash": "d39668302c4f792b25eca8cd1c8fe0c86b02214fa9d16ff4dad3153ed2a74c2e", + "regex": "(?i)^https?\\:\\/\\/msngrcall775567\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d8b1ddb07d84e79e95862395857a392047b31d2dc33b01c76e556380824ca13f", + "regex": "." + }, + { + "hash": "5fea40bd7ebf68dff15c994a88067566fe8557798d4f0785a23cc4cf5c7831ba", + "regex": "." + }, + { + "hash": "8c23ac5b1f9afe1531d31d99f1c1889041907fbf1b1db6d4da9839228ef710e5", + "regex": "." + }, + { + "hash": "e49148b40b3b3f842e0a6e81c42273c88fee97fda26e90290718a97b806ff68a", + "regex": "." + }, + { + "hash": "e2d4fb80ed6fa0b3cd9f57680e0d157d90e036a3ae580d2033a85518f6d53e7d", + "regex": "(?i)^https?\\:\\/\\/shaw\\-105060\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d5e643df2b325b64765c65c2fe8885ea09a8c63641a3d8ea8495c3fd7eee3d22", + "regex": "." + }, + { + "hash": "cad7ced30c9aaa338103ebf977667a6ee0752a8104faed7dd1ac66905abc405b", + "regex": "(?i)^https?\\:\\/\\/onlineclothingbrandorg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "84d40a38a5f87ba790e92d44a5c4ed014982f4b2e4e63a3d5bbd4d514379f18e", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-100156\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "de25cdac7b3bfe5f1b426c3debd4727be09512969cbfa2ce0f231982d36f6096", + "regex": "." + }, + { + "hash": "c22cdea39fe5f86d92e645e89ac0fdb6891f6c3c2a7eed8590000055f687b99a", + "regex": "." + }, + { + "hash": "63fc4363aa7ea7e94f0cbbbe7bbaaab2bb8a215b83b9f3d330987acec5dc5bda", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vhtxz\\.com\\%E2\\%88\\%95yckipxgcqn\\%E2\\%88\\%95wbizjmgor\\%E2\\%88\\%95igbjb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "437d5a39265fc77d55b27801130d258c185bb4cb16795b8876fe8787fac6759d", + "regex": "." + }, + { + "hash": "f0645640050a368e1fd56f541531873a28639127b842aaca488662c4d28f47f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4594124\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938b6de1d4\\-44a7474f\\-a7b5\\-45e3\\-a874\\-38a811db3923\\-000000[\\/\\\\]+leLv5sCAhcGPXiwVlDjVTJz0ir8\\=402(?:\\?|$)" + }, + { + "hash": "640bff4bfc3c14e1a8211edbafc43223cff26be1eb3c23210c7962da26bffdd7", + "regex": "." + }, + { + "hash": "fb2ac0029b455ed1badf3603aa47835161ea34009c62c89a5c5dff283bc12436", + "regex": "." + }, + { + "hash": "b7dff91f1f67af95100b374066a17931ce9b3cb5a67a283e63962ba438ec5ae3", + "regex": "(?i)^https?\\:\\/\\/home\\-106743\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3ab2457689eaa5a2590e7e1e873d3be859cfaa5b3856eb0b386ae8d481984bc4", + "regex": "." + }, + { + "hash": "52466c01d6903156ab92ef955690d936931da8a0a7a0d21dd0dde5b1eebf659d", + "regex": "(?i)^https?\\:\\/\\/linkphilippinosss\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0cc150cc00089022d6056c40471a10140367caf28732329775541c7a12b0ffdf", + "regex": "(?i)^https?\\:\\/\\/shaw\\-104345\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "661a65a9b6c185f8c2b65040d2f9377ca271be89b1a6bf45b1d3c8def3c04ce5", + "regex": "(?i)^https?\\:\\/\\/home\\-102155\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "edef83878a1e0dfc1542f7d5df0726b3b55417e7a9d8686f787eaf30bc10d565", + "regex": "." + }, + { + "hash": "aec20e043c5bfe2edcb9e7e39a09e3fc6983b4b016570967b0be5dcf5b6715b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "d366a9c883f1f884d9c49bb7e98b19df44bea9254500cb2a91ccdf5fb78e24cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "63fc4363aa7ea7e94f0cbbbe7bbaaab2bb8a215b83b9f3d330987acec5dc5bda", + "regex": "(?i)^https?\\:\\/\\/amazon\\.vhtxz\\.com\\%E2\\%88\\%95yckipxgcqn\\%E2\\%88\\%95wbizjmgor\\%E2\\%88\\%95igbjb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=erixhez\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b05d6d32058ddc001736dd50e34ab3dd04dcc9e948ec5e09d2bf30066f2bdb1d", + "regex": "." + }, + { + "hash": "f4a1e1046208d672349e0f4a9ce57bdd5de2498c6c238f48ca9c7e03d45498e7", + "regex": "(?i)^https?\\:\\/\\/pub\\-42e514e7598644e48155059fe234cada\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3c6a7ab48bf43863f846b249d33b4c301c2b8f146333c94b13b6d2a821dea86f", + "regex": "." + }, + { + "hash": "235b343cdf8da21b24ee5254980ee9b63dfcfd210d77015f4550b4e87732eb2d", + "regex": "(?i)^https?\\:\\/\\/att\\-108153\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "13eb94d79f590ee5750375070e9987d1faf3f133159c38f0a176e23865004a4c", + "regex": "." + }, + { + "hash": "1331f907c5d2432f7feb75461234c1deae4e90b12509d36301ce71303316a084", + "regex": "(?i)^https?\\:\\/\\/uw0xub\\.webwave\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "909e656f5a83737bdc3a61c8cec0bdde195b23bba87546a5afbb77b0547406b9", + "regex": "." + }, + { + "hash": "98add71774b482ff0bdf0d13357c2a3777a03497a4a4d5c434f7c283350d3117", + "regex": "." + }, + { + "hash": "9768e69fab7f646086b4d7a72ceaf684e41e1f8ab01d9ee2a31ca96ea2a664fc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+loc[\\/\\\\]+z1SvGQL(?:\\?|$)" + }, + { + "hash": "aad851568934c160d52842ba826ca47f549e490ebeb3a2d855383b0a4afac097", + "regex": "." + }, + { + "hash": "4daebf832d114a7c9ee8309bf7206049e5486d55fc0fb257af6a82087344818a", + "regex": "." + }, + { + "hash": "b19639f60b6edbf09207cea8726bcbbc2de270a11cdf170f250a4fdcb4eb6a74", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1bb98a24b23fbf0730e8970d14ad2d55f84b91d042051fdc9966bd16dbcb47de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938ac41437\\-4be1aa44\\-2b4f\\-42ce\\-a473\\-c0e7a376e4d1\\-000000[\\/\\\\]+A9xR99nXfEkMRrocj8H6HqkBAuk\\=402(?:\\?|$)" + }, + { + "hash": "2b4b01ae9bfc17ab121a003e01c6ff6346c71777689995e59e351b3775f15872", + "regex": "(?i)^https?\\:\\/\\/amazon\\.zespqp\\.com\\%E2\\%88\\%95hxqzqbo\\%E2\\%88\\%95dqsncdmyfl\\%E2\\%88\\%95rylchzr\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "6cf0ba6f12703501b8717b258139315885a6efe06ea9b42e89ce2cff9b462f82", + "regex": "(?i)^https?\\:\\/\\/msngrcall775567\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "70879ca44eace9758eea9c2a1555b1198d0c16d4395af77b3a4faa11607a7b6a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "324e275902af22b5d135c91358c6e34a8abf564ab51a075d9d0b47b653365023", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "33c57a3bed75a337b071859fbb3f9d347ccb8a4d7a1f658889ed441d2b2000c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Crnt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aeb5b66b22eb10a6bc7f0c38f76cc8276e26812995838cfccdeab21c650285e8", + "regex": "(?i)^https?\\:\\/\\/linkphilippinosss\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "54b61b51b7a4565d249d057224a5b5c4fe4df041329ac2148ddef6c777cb2437", + "regex": "." + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4594124\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938b6de1d4\\-44a7474f\\-a7b5\\-45e3\\-a874\\-38a811db3923\\-000000[\\/\\\\]+leLv5sCAhcGPXiwVlDjVTJz0ir8\\=402(?:\\?|$)" + }, + { + "hash": "8b15d21a78f69403c970512045189543a9537848181c33cecaadd9eb9723e46a", + "regex": "." + }, + { + "hash": "4a7a6162cf76b1b6ac16962f1970bc2e942f2e50284b1b4cb228d60e9af8cc32", + "regex": "." + }, + { + "hash": "858cc6d0bdaa7dae0968ba611616f9c867722a93ffeeae7c5978882f62f8da9e", + "regex": "." + }, + { + "hash": "6fab316d2d81a006041b8eb1e468c578e71091eb73bdfebbd004b92e4a3a0411", + "regex": "(?i)^https?\\:\\/\\/shaw\\-103591\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a10ee08284353bffb5d4c38cd84e286e83303ffba5d5e432d0fb418896d830af", + "regex": "." + }, + { + "hash": "c930cc8ffeba660bc2c9289eb0f7adfdbf25bd8443e177733e9f5a3b8d380149", + "regex": "(?i)^https?\\:\\/\\/haslamjikma\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b67fe19bb4eacb14891ded6ce8309cb218e616ba2eb2e0b88c2fb5bae268fc3f", + "regex": "(?i)^https?\\:\\/\\/shaw\\-105033\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fbe5181dbc307ff26cc3462a3a08d6919605dfec8b9658fc415d4c72562842c3", + "regex": "." + }, + { + "hash": "26795e7ea4af960b8d336463c2434283bb76c2ab0ac8c151a43e27afcdbb52e0", + "regex": "(?i)^https?\\:\\/\\/currentlynhomes7832\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "68c822bb1e1cdae71829535dbf62a6aa3ca9d30eb0cd710d8332e2b13fe89599", + "regex": "." + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938aabac09\\-90ee4a2d\\-4a51\\-42dd\\-ae9a\\-bafa1a203b79\\-000000[\\/\\\\]+_qRdDui1PbgIZYOKZQ99NuPnSJg\\=402(?:\\?|$)" + }, + { + "hash": "fe6e20e0f0dc1627eb67c22928fdc409945f3dcf5141f91a2b9122d928d46c1f", + "regex": "." + }, + { + "hash": "4f399d9d26fbf5eadafad0a1890a91f928a9965c15bd9463c29e9630d7a409c2", + "regex": "." + }, + { + "hash": "f001c7d2400cd7613d76cb16c7b6380d8ce1c6061fed2c2a728695c242c238fa", + "regex": "." + }, + { + "hash": "65f65a1afe583df8101a4e9ef9747ce7db927dde350b571621d76f6ddbab2b0d", + "regex": "(?i)^https?\\:\\/\\/orange097842\\-0914\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4594124\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938b6de1d4\\-44a7474f\\-a7b5\\-45e3\\-a874\\-38a811db3923\\-000000[\\/\\\\]+leLv5sCAhcGPXiwVlDjVTJz0ir8\\=402(?:\\?|$)" + }, + { + "hash": "08872fe845e3400d842e00780bbc31fefe03a54f30b8d5917aab7467ebdeeece", + "regex": "." + }, + { + "hash": "dc3f34463c70c1a28ea46202e5c1687cfc74e7370af74001218bd42ce15c7c00", + "regex": "." + }, + { + "hash": "9afb117cae9a416c8a97d051ff8ded226e83bc077c8f4683498f09a8fcac4c57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+amunso(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62b51485b3036ee2534b55ac470536cf7ac13c8ad6487cdc4e689d62fa7f6611", + "regex": "." + }, + { + "hash": "3f7f0d7ab16da7163ec1a216d03567fc176d5d395e0d4339cc21429c020bd7eb", + "regex": "." + }, + { + "hash": "f3eb88978f53e2e836f0302b408f12188d46aac7b0b571319fca5772de05b284", + "regex": "." + }, + { + "hash": "dbe1c6b676ea1ed1478a9801084205808ae73c0caec10774a8ac02950af7d800", + "regex": "(?i)^https?\\:\\/\\/hsdjsadsadasf\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "6e87586a2e1286ca61abeea78efd64db47b6d458b010bcccbcea099b947646c3", + "regex": "." + }, + { + "hash": "da728617b83b1c17b2c23fe55450a4d9f89a57f920ad861cccf599aae0fa1fbb", + "regex": "." + }, + { + "hash": "94d6defbd5811c6c354a1afd5155d08b7c06286aea8afd3c10158b0be023cd5e", + "regex": "." + }, + { + "hash": "2ae5f6d7e0407a2308679450f413f3966b853839efdd550f99dcbe089492b1c3", + "regex": "." + }, + { + "hash": "b5c87145dfecbaef1779bda6895fbd3245fa08f57c6fce1aa1e9fc10eafa82bd", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?usji\\.wuotaqxe\\.top(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "ab4d2b7295f1d8bf41b2809d4d0c154a5b0f5ad8301f24ea9966795e9d9c70a1", + "regex": "(?i)^https?\\:\\/\\/att\\-109027\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ce06226c5c38e7b66d97a8159358aa82208071ce334d97b9c20e0675d814fd52", + "regex": "." + }, + { + "hash": "9411660946a47daa251269f365ba6bf53e608932e601fd97130f1ee0f2f97e11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd303edc634628cd1eb97bfbed2c8a16254f9510582f2f3e51057cb19c7b1f8e", + "regex": "(?i)^https?\\:\\/\\/currentlyatt49009new\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f832a30b9458fbd67f533833fd09f9a85f078474092c8f58bf4cedc5564e399c", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "71f0ff6672eaf65c853642919959c202cab7a284327e1284362895d7568aa93e", + "regex": "(?i)^https?\\:\\/\\/appealhere\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8134a5ded303fedff0fbb59219427634318293a580c0862c7f6c384712675c5d", + "regex": "." + }, + { + "hash": "eb4a5e440dccccaed2bd42f0efb39568c1a53568c7241aef968c93132021c943", + "regex": "(?i)^https?\\:\\/\\/fsgfdhdfhdfhdfghfgdfgjfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a1a9184be1e6ed0a69dbcdb0bcd49c2cf6253415a36a46c29d308abe6a8c913c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "29fa1e99570499be527a545ed2e1a564fc269566c46e182bf08571877c78edf5", + "regex": "." + }, + { + "hash": "ca66c16179b9a4fa0636fe6c4b532bced366ebaec44e74544b0c39f679bd5398", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "cff396e7f5c94cebfa9b96168ea5d65c05ac1c5fddb341306aadf136d70e3635", + "regex": "(?i)^https?\\:\\/\\/onastrollshujc\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "17b69cc608ce1194c1fe662d012def1cdc84b9b09e7195b846db06673e0a8039", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a6aa9015489d55820960095be2d740bbf66a8cf96c6e4b3b2a72698a72866e77", + "regex": "(?i)^https?\\:\\/\\/appealhere\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e424ebdce1a785aae3fb1a2307cc3d5755563efa5144debab850a43cf772a43c", + "regex": "(?i)^https?\\:\\/\\/sdfgssddfasdf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ee0c0e618cef6a9cf335998252f03a9ce676972b5c986353d4e5c1393884728e", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fd5ba2f497126e0222cfe969855000a3ab7e1dbe12c0a2e7846f6c53ed03edbf", + "regex": "(?i)^https?\\:\\/\\/str98s\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6892be5736bae2961668c3e1a68a217680cd6500be980045a1c185fdab7c4fe9", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "42da04c502685a0b4bd2dc7c03adcbfc95f04f36dbb3aa008bb75e009395fdb7", + "regex": "(?i)^https?\\:\\/\\/netdfigidfgkdfg\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d0a958c43b8d30f52f7bbd898baf9e342c2a1dcf3effdda04a769a90910f7cf4", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjfgjfgjfgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "07e7b5511907f6730ec3fa7c3383e9c0af3d53f3930ed25830ff7121fea1914d", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontestant\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "14c6e335bc25c91551abda0d990a3500ac0d52b3e3a45b1a01915a24fbf59d20", + "regex": "(?i)^https?\\:\\/\\/yourdiettk\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f1adf6c8bb3b4aa74c385d66b21867fc261890c37bbd9b7768fe1a7d6caaba1d", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f680893cb2f1225b01578a81c60de66ef3ac0094dc76d3a01bda3307e4076760", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1945c1b8475f030505ecea50dcb0dddf7a64b7bc0481dd6ab4f7fd3904632bb5", + "regex": "(?i)^https?\\:\\/\\/eafc25reddem\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d7fcfe747b6072203769efc38d2b5b1fac3c09c3153a0a339cbba370d561f1ee", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7102120a793894ae47b6ee2b850b2bf2657b3949655d3b83be44815764d39224", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "895dce1711d7de37df94943dc9c60562f8902bedbc91f688c3b68421b84fed32", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "5f990eb0dfab40f7f0abc207b6bf2f3ff0756cd6208820ef56e69198346253d6", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8a3e526e15c6001e341dde00d17d924b56f048b0b1e19ff49879f4ef149578f0", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8d85f4c26844e8f84695302b247b67c03841236efe245eacfecd1e8c4d942619", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fccbf5f16916eb54b8d2d33a92d95d436fb33b53af9455bb09fba64b823702f8", + "regex": "(?i)^https?\\:\\/\\/str98s\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "adeb71adf4a13dbdcab4b0b283a58d3d384e8839181ef4ebabcedffba39065bc", + "regex": "." + }, + { + "hash": "e79f9c1e1cca8db558d813d64671b7c4b790f0292508c90a86daa484c2b3bdc0", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f7501626b766dd65206a769f5092634b524fb2413353bb818761e9050d1e594f", + "regex": "(?i)^https?\\:\\/\\/food\\-net124\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "f803f96b07b5ef4965818e66adccbbd8d20cfcba8c6f5bb1d1a541d972e8739d", + "regex": "(?i)^https?\\:\\/\\/fdndrsfdnbrr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "727bd676f45a02a253d8678d53460af7ea42be35f589aaf25075a48003e8aaba", + "regex": "." + }, + { + "hash": "d429f341909b600ab480c7eab5b42efa3bf04e706ea49c98be7a33fa8fc1bae6", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjfgjfgjfgj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c976f770268a72334b1ed38a9bc769cfff2adee84254a62df8271893e8a62813", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "05fb8b117222dbd698dac3cbdf349b4010c4e0c54e300d7c136a4c5c12f9362d", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5d21ecba33855cddd1dd845b08e7841196da4bf4524c4ce0cb3b49f5f7b80513", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4f6e36c3344a4a43d3aa4539156485ba075a5ecade9159d508b3aa5eb8d7c4df", + "regex": "(?i)^https?\\:\\/\\/qxcfe\\.blogspot\\.ba(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7721d6d848a24ada2ec3cb85fe48e07f0b5fc62834eebcee40d91ddc17d8f86f", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bf8556681f84b38548a349234d7332f8cc50231cad84277d5892fa248f37c426", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "05dda11c90fff4e8df556674f19395ecaaa57dec9f6c4d91b38aede814009ed6", + "regex": "(?i)^https?\\:\\/\\/dfgfdhfdhdhdfhdhfdhhfd\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "252cf7171595a1d6bad9370474cfddb2577d9ad9b0aa231080409f76d4fb3f9c", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "95587d014fa86891deed75132bc4d6351f54620624f0453a1cd3256a3aceed7a", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "283911956ac4d11f91502d20824d33b4415a011562a7d209246d31b0f593beb5", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9ef070d853501d49aa736f8755e459b29d601bf6c1009e1d79a15fbcd8c2601a", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b46e2a60932ec5465fbc61bac97b7142c09a27b7099396651195d6f7c98a1c3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business\\-2fa\\-error\\.php(?:\\?|$)" + }, + { + "hash": "fbb066bef037966fbec3101cb2340c6fb59d334ed50d0029826f5797c8bee444", + "regex": "." + }, + { + "hash": "c3afa91497a309d577b0651c15cdeb6439bcef28061cb6af3d43d11248771692", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0160d6412c3a84be5dea361445bad1bdd080ee63da845a8dd67b6126f6696503", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "00a91127b37bdbb27c82a5e4b79c303da6e011e07fd98e46d40643eac4469332", + "regex": "(?i)^https?\\:\\/\\/dfgfdhfdhdhdfhdhfdhhfd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "71edcc405b1c9bc5e02acc9133c64af2630879e8808d8fe211fce8063da81fac", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "20773081588ec62650cd512ec345aa4533dcd8666f4a17f2554d82af069696c4", + "regex": "(?i)^https?\\:\\/\\/godsentannualcookingprogram\\-sc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1d23405a7a8c8df27d0ae0f71b9749a74edd4ca0390f6b068311627a982af2fe", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "706d5489442ed501d2c09c2fb61cbed085df884e4b6650303d7514094a92138a", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjjgfjfgjgfjgfj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "2bd16d7f25575fc0a46bac1e911093ba2e2da458dc02b3853536cfa1f34e4630", + "regex": "(?i)^https?\\:\\/\\/sdaroblox1432\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b4d948f1ce843473fdc2855c3a7b6bacf5402c74b41b92fcaa111f4c7e72587c", + "regex": "." + }, + { + "hash": "52ce450df4a086a9f5d61a6b0667abf165452fc67de63b54e795420faaf28699", + "regex": "." + }, + { + "hash": "efa0878c74cc51c5d4e2368e4df3efce0507a1199c6c541df2088b99afbc8ff5", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjfgjfggfgfjfgjfggfj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "360fbff4f266999d5fbe3e97cef7951696c01300752c1e2538008d322550c20a", + "regex": "(?i)^https?\\:\\/\\/dfhgfdhfgjfgjfgjfgjgjf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d828fc94335e14c7f09499192caed1c0b477582d08e87bafd79f12fec9323f01", + "regex": "." + }, + { + "hash": "710b9d0fa844b80621643e177a7234f5458e092e2d5f72e9c4233f4d0846ef19", + "regex": "(?i)^https?\\:\\/\\/fsgfdhdfhdfhdfghfgdfgjfgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "d87805dbb20e6afc83a4c695aa4103038223788d5efcfcbfc1dd5bbc1ebcc09e", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjfgjfggfgfjfgjfggfj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8310412a67a7fc9f26657240350a5e2acbb758514e913f4ad22b03275f07968f", + "regex": "(?i)^https?\\:\\/\\/dfgfdhfdhdhdfhdhfdhhfd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a3e50502884dfcec5e97b0efa8f08d8abb79041f6dc5d99023b8f53983d1dea3", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6e191850dd85ea919f47a05dbe88bcd224db8332e2d9b801050a54e6d2bfc574", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "904e6ccdfc15b1830009cba09d92ee0ef2b1b48b14a2ca0281568c2c100c824f", + "regex": "(?i)^https?\\:\\/\\/fhghfgjfgjgfjgfjgfjgfjgfjgf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cc9a1500d85f057d7e21ca3bd55f6bb8325d674099f4ae53b5a82bd22797a530", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "965052beb1b8bd9f6cf7fc822ec710624d66ac8a1164a9aee3c78bb0d65d4198", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhdfgdfgjfgjfgjfgj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "974edbab39fe1d05346e1f1f6854377f294cbf0d09a9d3f5822bd7ad76f2577c", + "regex": "(?i)^https?\\:\\/\\/str98s\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "6337c2bcd41c94068e2cdf9b3a963a0f65dc0612ceceb74d2be00332731f23d0", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f7982cbd9b723cba101afa11d1af2ceebf7f265e9b2bc82c12ba4fe86840b23c", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "09816f6078c34b7f97086ca8a00ae93da0a09e230a6c478bc52802d81301ca24", + "regex": "(?i)^https?\\:\\/\\/dfhgfdhfgjfgjfgjfgjgjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "5bed909137deb17b35b934a54be7360e9e0d0b97e69d039887d3fd7d0eefaded", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7eb24aab9bc234a1a986a0735ca47cee731d2d00f3aefceb8d2d85cdf71100ef", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "71fed2f23debd81d0166f3cb78448543302165e884c5a569a097b7db6f1c2118", + "regex": "(?i)^https?\\:\\/\\/d4s54g\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d04598c1fa59fdda852dd482ecddcd48d33137a0464748efa21f05061fd1f5f1", + "regex": "(?i)^https?\\:\\/\\/yourdiettk\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "58e37a88556f204e8295eedaf0a137e456d649a58ea61ceff8dafa1e6f6b4de5", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhdfgdfgjfgjfgjfgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "20dd4f173cb7ba1dccdfa9072f850449c1cff5f8c5006b8eee6795fd56c8768b", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "72fc850b71dbe42e991a586d837592d6119d1ef91a8ec3daf7b96e83f8c9ba79", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6b57c59e5b9e009088d05d89e3d3559c397d0060ab91d4444bcdf29b86641ffd", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d6570b10d69b4c6180fccb85db788db3efd1cedcda3ff1b3e9249d184ba7cc32", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgujfgjfgjfgjfgjgfj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "24552b081ce26a5d2fc2d6e29ad45cfaa8e8640449f574d6b7d5f3714837478b", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0751c2c325249a748cf77b1f9121035f5de297a975adeedf152699864807808d", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "db75bae63db5504fa33697f3cfb4a15252145788d0906081e7f483958a165008", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "16e79e1d14ddace802a731ba34c008acf1651fd28580ec8100828675fec662a0", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "2111b1b36e7634c0bbae2dd27a489cba7cb60764ac400c7758d1f9a8593c9b26", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UPhzi[\\/\\\\]+podarok(?:\\?|$)" + }, + { + "hash": "71abf168974da3ca468b78a17ea38c33c17ea6867c0c1b938810328521769036", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjjgfjfgjgfjgfj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1cce842fb1629e26d5f24c4454a4b8beb0c11a496514274b0570d47140801cdc", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e5336ef2fb7ad2c2c4c87b612aa0cb55858732f127ed91828dd17f499facf731", + "regex": "." + }, + { + "hash": "a199cbc6e9630dc0eb248ab94ad67b2c7e0df50bed4586334dfc2962e483769a", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "81e166ddd2674c030551a4aa9530bf82b4429b994d9dfe505d4cd68fa5423ec4", + "regex": "(?i)^https?\\:\\/\\/dfgdfjfdhjgfjfjgfjjfj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d5a29a98e77d4a1864943d019b759fba4c9d9a96c05a1beae2665d223922ee0a", + "regex": "(?i)^https?\\:\\/\\/gjhfgjfgjfgjgjfjgfjgfjfgj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a4bc2a35375f23dba32a80a54b789bbea50236a807a6da3f04a3ea2e923c26e5", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6860bf9faee9e9a8dffefaf97aaae3e7d95d0be947f85259c00d9293d470748b", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "804ad19cb90eae367083bb636a38e95c4cf4b8ce298ea1c5a21db936c77d8bd8", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "c82e4a85eef1b8f733b2ad8c5f90f4c48a6288a2917d333613929524d7e7c014", + "regex": "(?i)^https?\\:\\/\\/dfhgfdhfgjfgjfgjfgjgjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a17890a25d402af7ffafc5884d6aff1dd1abe8c57237da22bbf70641de76c24c", + "regex": "(?i)^https?\\:\\/\\/sanekleeundefinedpuq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b30bbcfad3479950824549ade600a7742341519979e08398c183ae4e02a684f7", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgjgfjfgjgf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f0bfa927125cdf3bda04e703942ce00ebc4da7b2a3863c84acbf3110fdf78a73", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "09a03a4a3df1c9598193c2a03d511dbb83228bfa4e9de55e92584e5769b6cbc0", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "4a4604fc0836b3ebd9a232f5230365f49a8cba35f41177aee510a19b34bb9bae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UPhzi[\\/\\\\]+podarok(?:\\?|$)" + }, + { + "hash": "169465ff988bfd2332431cf57e5dd26a0e6bfb0d8804f8d4f210b3df0b611c4c", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "52a390d1efdf68287bc2a1d08bf4809a6c3b43ff3ba2d72035226fc8501f3eee", + "regex": "." + }, + { + "hash": "97a24c12c5ffd05e0ae8ac32838407df6129b93eee3cabfbd3e14becbbbef1f0", + "regex": "(?i)^https?\\:\\/\\/no42igbinoviastreet\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c343978276f34f530d1a89cc680fce756cdbdd5505f894c24447ae930eb1fe96", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f5fa0dd61df353229df6af044ec4924f5406a6aa69b400ab4cf555f9d4e4b320", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d15bcd4c28a9d2fb0653abf1b602ab2d3f122e0a8bef536bed0f1bf876e4ffc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+qritb(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7c0605bc36ab55e3b9fe3d6ecd116e5a48c407b5975a2da2d7c6b208ff8f36a2", + "regex": "(?i)^https?\\:\\/\\/darkpalladinnwced\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "288a4d273bb7e1e9df0c445f71c446755def84b071e9c1719ebec527d4353d89", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "13233ee2435760b66dc9d0ae3b98a2f5c260fd4e40fa5a3bb778d4a14504c3d4", + "regex": "." + }, + { + "hash": "06ed46e284acdafeefb094ce46abed46a1471de65650d913ee3d6093752dbe83", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "babf74d7efc82ef7537514fce429a2677b88b02ae6037de31c192304a2e27f5d", + "regex": "(?i)^https?\\:\\/\\/forevertnrej\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2b0377ef6359ea4d22615a619af7c25292dd0e5928018d813351dba653844e6b", + "regex": "(?i)^https?\\:\\/\\/goodwillfoodnetworkcontestantpage\\-sc\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6437fbdb88f0eba3686b10e2fdc30c9431260c767853587a11ac244d541c962a", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e522c199f8aa50873a060579b04d4967014cf701fde141f7234f682b0e35e1dd", + "regex": "(?i)^https?\\:\\/\\/controlprobt\\.top(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)" + }, + { + "hash": "25d686df2fa5b418da7202d69569b41f6cc44911c85ae11f2b3e05209f98fdc7", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bdac38b655dfc1758fd1cedf96ac294abeb4912af580d3f8b1d3618ec56d43a9", + "regex": "(?i)^https?\\:\\/\\/foodfusionpk\\-rfgdscprogram\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f803a4b4b4454c49b5a4a8bb6e89df697c7d9a14316b99fa1ef1dbe9906cc021", + "regex": "(?i)^https?\\:\\/\\/instablog80\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "92a2dfe46adb7ffa5ad13210309c05194a1b6d8752f1af1945c82518bfebdf77", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1d8849d38f8a0804898bb34ed51a17ee299a4042b6c4224cd5994c456acf49fd", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgjgfjfgjgf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5772ae0c6a3fa74241f96eebf866e94b009342cd4d17075e4ba11f3c4925bfc3", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjhgfjgfjgfjf\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e6cb4074fd29b0b0c17b9203b396b3e563ee64508ed151ce4b3ff360ff9fee3a", + "regex": "(?i)^https?\\:\\/\\/nicetv\\-45\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ef1dd46ffe16939507174e3a0dea25329845bb4220020a8c33e32e6f921ad273", + "regex": "(?i)^https?\\:\\/\\/onastrollshujc\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9425e79d32585084760e527fafd2c0cf18d7c68064c459c02c295cdc1f1df805", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a9e919874044b0db83dfb88a7b8cb6830e995e9ab07788327e8f55a3f5e13a4c", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cd222c006af1b762e9539ccc8c38064d98ac772db102365d9aa7c0c951873a1f", + "regex": "." + }, + { + "hash": "6a45238df90e733b617dc3fb73b808066a945d111a92d017737c582fe1d1d914", + "regex": "(?i)^https?\\:\\/\\/foodfusionpk\\-rfgdscprogram\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "82d7b7690d66f458560420632408bedc873fc77187aa7980e311742243f9417a", + "regex": "(?i)^https?\\:\\/\\/appealhere\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "5ac6712adf6c03939aafe7b66b72313dc7b20388e76b9010b23a57cf6a8ebde6", + "regex": "(?i)^https?\\:\\/\\/nicetv\\-45\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b11bba230faa69e3106c8724b954473adf15b74506b68bde620398483e006699", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "895daa1d321bd7d238d7eb6c6d47c0b872c4abe4ad28591c2555862246debdb4", + "regex": "." + }, + { + "hash": "df86512e633c4972d85092a3bddff2fbf91ef2a15d7b1b8d2fe0c599c7a97aca", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2987623c81d1f996f6a5beb6e0ec100bf6304f1987a037818cb22974aa1bb53a", + "regex": "(?i)^https?\\:\\/\\/no42igbinoviastreet\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6b455ad565490183c1d114f68fe693a5f205832015048ffac6c96aa60d4c9184", + "regex": "(?i)^https?\\:\\/\\/hhscsusihvhusjwiwowbsksnsdhxihw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ed2034e9656ce078b27dab17ada2e87190409faf443420c05e77c7b7b6264c7d", + "regex": "(?i)^https?\\:\\/\\/fdndrsfdnbrr\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "2d386a6ca1003dfd211e5337e2b406f9e7b3d1f27ad22bacb0aaae06806c17ba", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d614c23995991af44c02d6984a2b248188d7137703005633360213cbe94a13a9", + "regex": "." + }, + { + "hash": "7257fdc46346fda75a80862879d4cfc4ec2fe571c086465ae0aae1f9f20dec18", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9cea8f0825cb360acd9670e65ed3ba6b0d3d260ffba8d8efe4f24c2acff2cb4b", + "regex": "(?i)^https?\\:\\/\\/brozlen\\-as12\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cf6ff00c2fadf305e0f1b0193bbf4bd29584425232578b8d6b10f5f2f00f4630", + "regex": "(?i)^https?\\:\\/\\/gjhfgjfgjfgjgjfjgfjgfjfgj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4ad124965a4d41de9db8cba3c6f1f05151a6b4dd1da603b74a338681f45ed4e5", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghfgjfgjfgjfgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cedbe7a991a6f42b04805a5361ccfb7b7dcf09f87979467e4cc1cc0080aa99bc", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontestant\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "441841d9288cbccf466de15690b1e0ec9db8d91eb0aaa2d7ae17b5ff04c55173", + "regex": "." + }, + { + "hash": "4bcfb81ab66dc3f3b182fdeeb128ff5b33724c905e0ba3cf38a2349cad5e32fa", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "bb99bd8873b6437da809ba5506531040b54ed779407f1d224378b47086eb3e12", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontestant\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b509f108f553b1ce1f5f4acf662482f9021960a33555c661744da755068329b1", + "regex": "(?i)^https?\\:\\/\\/sgsdfghdfhfdhdfhfdhd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0f55e5bdceb8e5bd9f71b75de236e75d5e7d1a7ac8914f79edb13ed6c912082a", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "8e083e57e6862efd35f80c28f4cd2aa88b8754936a2301d7bb3f871bfca6fa67", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e3c165af487c146c2847812f00d07d28cad06e3d3133f89a508e697cce49eecd", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "4b19948954005de04822ed9b2dcbfba55c2d944736eb257ae219d12c31eb60d9", + "regex": "(?i)^https?\\:\\/\\/gromilaundefinedhnccgbl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "2248541850639e765d4ab4b49a172ce5aa708e0e177032bd1d8646b044a8d20d", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bb255cc4703710b3ca2835332ec11b9bec2a4be73d4974c0abb498f93f55faa6", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5590e375710a2d17e660ad515111156e9ac7c981deb5e0af7e54e98c2b3a27d4", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3f64a006146d7b51c24977081703b0897f3a7179e7a35c1691b866953c39d191", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4f3927038621473d455887f5df70f47fcd30c1e901ea2f2c794cb9a7abfde677", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "482265084940c86ed0a0884bfbb6015ad3a37fb1a6495e7fd81799f973a58c49", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhdfgdfgjfgjfgjfgj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e554be215b01752610d20237cf8b91cd739419a0cdca729db2d21caa956fc35f", + "regex": "(?i)^https?\\:\\/\\/food\\-net124\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7c3d6fde78f37dd72530a35ff267572d7a76576519cac10eb22416909e73ef3e", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjjgfjfgjgfjgfj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "80516e339c9b3652054cc7bd7c189f315637e44a45215817efaa509aaef4bacb", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8f093d061626b56f3dea994a2ca3672a04bf8d6f1cf58e37e7bec207c1d6c6cc", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmfyuacskasmcamsem\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8fb2bc2539dc780d20f001a03e4d322336213b7a1dd8a6ea0863713f84bebaf4", + "regex": "(?i)^https?\\:\\/\\/profcrypt\\-world\\.top(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)" + }, + { + "hash": "1736c39aa0318e2eab204b33f4e34aa2138b5edcc327af83becabe0a4852af1d", + "regex": "(?i)^https?\\:\\/\\/bethovenogoffja\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9c861f71565257a82c8cb1692e2811cbe417aa64417f501669ff6ecc457251b8", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "06ba882b77ed05ac51e3283cd2b253f2049b0b944075f4e0591db9edceae017b", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2561fe97cde607c15c08020cf64f3292e03daff631f24b72bae0607f0510cafd", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f134be23ac0e982d8b25d05e797a28633b2f8b4f6d26f53650ddccd4d8e95b54", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9f69e276f3d5284037ac51f55dd27230c0811d3534dc0337d221db5ec60411e6", + "regex": "(?i)^https?\\:\\/\\/high\\-range\\.serv00\\.net(?:\\:(?:80|443))?[\\/\\\\]+fr" + }, + { + "hash": "e393e226945e6523799a9ee464938fb2588603536440752b99fa3c51c07bbcdf", + "regex": "." + }, + { + "hash": "a4454e44b67fbd3b27f6152ddb2d0e1d50d4a333fb2ceaeb97117cb3d1a419cf", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3d70a38e8b7823f03d0141026b44f521e88718da425e23d384e4f69e7eb675f7", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "b4da72c5618c6d7da806b5a983f912989c82cd56e6e7e4917d806bdd8d257c8a", + "regex": "(?i)^https?\\:\\/\\/webcam\\-hot\\-gratuit\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ea236de2defbc7860f4965409909e35172de5309256e0a222214c17d5558f895", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9a91c9cf594a807a84b9e1443248678e537d276c9bc662b1284970e52f2e48b7", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "aeb5420a00e42a33ed83b92b96cd1ec662557b3a9516b04cfe856230f2e2f0cf", + "regex": "(?i)^https?\\:\\/\\/rhbhrb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c60ab582118ebeb98f6643a0d7503e76828ac6dd2145717200e98476e4e0e037", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b0fef342b72be60f46905e419a7c5597bf25161a1c6f37fc6665b07c17c15d36", + "regex": "(?i)^https?\\:\\/\\/no42igbinoviastreet\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a246392d9ddd4ef140ae082e49ed38f034a9bb9261af0459ac959987351f063f", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6fc5f8b4db2c5c3908a287c2878f2dbc95d40e04333584d223bd681a61e558cf", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjjgfjfgjgfjgfj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b23f71caaeac66015753d6d2b4989134cb2cc1237281087827146b8f4b984d6f", + "regex": "." + }, + { + "hash": "b1b25eebaec9023ba7fbdf7911ce0cb17daf8594cf594d1fb185bfdee3ed04f9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p[\\/\\\\]+768577295(?:\\?|$)" + }, + { + "hash": "f7e411dc34086f2a47895e6a849d1eb11105bab94364f8e3075d3ff73ff68e98", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "554c230ed3595bda87d4390aab932f2071b5c17b64ec919411e495b0f6fdb0ec", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6e862ea295304304b6871a9489df24b8f6adc363a058afd91f01fb5f8ff67db7", + "regex": "(?i)^https?\\:\\/\\/www\\.timdronet\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ab4daa2f33cd63ffa640cd18eca3ee1071f86916991da253d94bbbe4060e0854", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5c6110c72109ca33de2dbb2ccff68f3f66e94acf205001ee9bfb493b14ad0182", + "regex": "(?i)^https?\\:\\/\\/instablog80\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4991202c1b573da42c6b91dc6a44d62f9c399025f470ebad1de1570b5436e5fe", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "098109f98d3355941c9ec6ce42928c8a73e1dab5d473f2192b4def6ddec66ef0", + "regex": "." + }, + { + "hash": "904500994568e275ea101ca32545d8c3bb4b292bce6695c5fcb7361cb5dae4fb", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ac2ea683b76c63d7ae4f544254e15ef16f89a0af88700dc5d5c0a193418e53fb", + "regex": "(?i)^https?\\:\\/\\/floomeeroblivionrevhbzw\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "64a05d311d5f8e178a59f12c7e786388129a16edd660fc6496fb6969c100690e", + "regex": "." + }, + { + "hash": "b46051e5c29600fdf4dd064767ea3ace266abf9ff1f7de147df8d02cb466103e", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fc8b443e6a0fe1f1f27c0dcce984a6a7de5ddc548447b7899f41711dddc45276", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8c5f4d6d48cedaefde172237deb6d259debcc5bae99459c28f2df083a3892456", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2c9fea94fa0372cdba388f5f86b95be6d2ce7e5d1feff3b593b458f41fadb4a3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iiiiiiiiiiiiiiiiii[\\/\\\\]+spk\\.php(?:\\?|$)" + }, + { + "hash": "57795ed98ced8c24a5bfb36f7e19979663c50453791ea077fd16ff2eaed00d73", + "regex": "(?i)^https?\\:\\/\\/att\\-service\\-105697\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8c5fa6e206b9198f67cd7d121e138240db3a72c7921cb1ec4c0fff93c7ad9a12", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3ef9ba1cb2ee3345088ee0f119771c1668c8c5770ace5f032fe53c5f840c732e", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5db7c1e4544e129a0670e226798fcb4421e286fabbc0c0d745df162ed52a9453", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1229e431c8baa20081b7dc10459423650a23a68844b6989e26badda091f8acee", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b4698f2202d4115427d889911378271958a5478867e322ef399812ff506e8758", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "39f29f87d5ab5aabf6f0287eb2d9ea46d3eb6ab930e4ae7b2e06bfb79b733e59", + "regex": "(?i)^https?\\:\\/\\/sdrfnsrfn\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5464effb21de0b2a58201f11ce08a6bba02c1ba195cbe7b5cdb0cded61126ac8", + "regex": "(?i)^https?\\:\\/\\/cogeco\\-1015313\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "13521b29d3cac607011d65c72f5d1178103b83ddb243d3b6a4c2f53120c24564", + "regex": "." + }, + { + "hash": "94681612ff74f9651d2521c292afdff1057d4d0ae8ce4a1df5b2cbd9a8ef75f3", + "regex": "(?i)^https?\\:\\/\\/hhscsusihvhusjwiwowbsksnsdhxihw\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "09406677a00e2e0f88dbb8f9d8645fafe362054db894b4a7bcab8ffcc80e7e8a", + "regex": "(?i)^https?\\:\\/\\/sd11hs\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "fa7dc59bd793fb22ee430396da5b943768bf0f8a5b3c3086fa4082babda90986", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghfgjfgjfgjfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3fb3e91780657096bfbdfea2a17b065e019cc815f29b711f31790536b188678f", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e899457694d7ea0ad64a783946f1dadfccb394ca2bfe89ac6a5d584ef5eb8c5a", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "db70ccecfe2e2b1740d1624f6add231535c687487807c72ddb9911aaffb72b7b", + "regex": "." + }, + { + "hash": "36272c01f31091e4f90bf8a29c8de873fd14efeccc9a5cfe1fd796beb4055637", + "regex": "." + }, + { + "hash": "291569235f97e54ff323ee479ab3cfc002c5b8c391b5dd7db9796f2c9eeb6af9", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cf246d3cb23ded0371e9921bfa0304a1f5bc1cf61b1280cb381e0e2b2b416bde", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2576d0ddc2e443f8ea4d289c604c487322a81b5901044e58e8d21d634e54a929", + "regex": "(?i)^https?\\:\\/\\/rhbhrb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1f394b8c3f35e2881376c896d8ede8706c886cf60442d7e1813432fc8329c6df", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a74f6934532d4fc8d45850459f392934a1b9747d0b57700f47ee8747052edb91", + "regex": "(?i)^https?\\:\\/\\/bafybeiafngiwcur3tf4kc6bbrik5bdyyftoukvwocisqu7ctfjonjspuda\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "e1217e39d976872e173b21dfbcd71945f94d1dfa4720c1cd842146adb148b8ae", + "regex": "(?i)^https?\\:\\/\\/robloxfreem\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8c8d54ee708e3176b71efce1e9e6764276eac9fb07a5c94c7fac1840a54fee75", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "4d7ad139b5962380c5c9cde8fd834bf1ea764538ee50e48edb5b091dcb8426e7", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "acfb617932908b35c3241c6e859d908c89993744fc419e36e5e8b0825f5436b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ebe18b547675222b4c03e8b86fe908bac39ccbd6eea503295d09dfd4dbf53539", + "regex": "." + }, + { + "hash": "c0a9626780d0085e1b6ce7c5fafae109e311d87eb3cfb1a2c619f2090f195008", + "regex": "(?i)^https?\\:\\/\\/gigglesflyingnvny\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b0f7e102af64929ae402b4cdafb81e22d49b834b6b3ad2f6fe84cfc5b5791bd1", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9d169c8e18945ec14c3ad273602499433e8bde5b1e6bd27c95b050e16fc8a06e", + "regex": "." + }, + { + "hash": "ffda4713ba232a1f44a34a2e864c5f211ff8a4a616a4af1b3b6dec82a94c99b1", + "regex": "(?i)^https?\\:\\/\\/godsentannualcookingprogram\\-sc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "1c404ca8489ab8229208777d0dfe6ecec04400a325b6bd1a48bcd0fe51c122ce", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "34b9f249a6c6e09cdc15dbcd26908bb3c3d97a0443bbb528bf27c33c62789078", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgjgfjfgjgf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "15dc07098373f4bbc8ccfdac21a6c62ceaa7991c8ec37ca60e9ccc7558aa6f97", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cb19ecbbc9a8639ac795493659a67aa22bb012782c8685c89c9217d4deb3f84b", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "54748c41d517c2639af3fd9d1eb1069dd6021c33c53cda048506e8d8ab834201", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4cbf80670d5c1bf0662f149d8382ec1e85b04a5997507fff21d73190132cade5", + "regex": "(?i)^https?\\:\\/\\/fhghfgjfgjgfjgfjgfjgfjgfjgf\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6b86c746ed1702b10ce6162086699ff8c204d6bf0ecbddb11244846a5b13b939", + "regex": "(?i)^https?\\:\\/\\/eafc25reddem\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bd2926707af890b13832088ba89299047a6aaac720cd5960bd5406fbf6b0fc2c", + "regex": "(?i)^https?\\:\\/\\/sanekleeundefinedpuq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5921fef2773b8d6a32295bf4a37421b742ae3940d3849fff3e704fa3f4233322", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "be9aa1c0468f9f59370d3b2d43d39d95793cd86059620a9c07155ad686697cc6", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgujfgjfgjfgjfgjgfj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9fb0be4ee2e5b64a328634065213a09f477686486d00e789f5fb5a34b647c43e", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ebd7172d839a502ecc40134b2188418dabc3ffc183b05a9ddf1e73f47f43edac", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c3736f7f8124036e77e96d748affe9a22a52233cd35a4c1952a82e30b7714f3f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+allocation(?:\\?|$)" + }, + { + "hash": "70c8371ff0aaf81c385fdf87f90dcfa05d180c6dc5a702446ce98071b228af4c", + "regex": "." + }, + { + "hash": "25b6c071ef6995c48b551ddb10376123ee76677d39e3ac81cb7ca8ef979d80b3", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "18729addfe7bbba338977cbe3d3d78e66eefa173c23feebe6ae8617c34b02fd9", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2a34fc8a16b5c6542f83ab5c0cc38dbe518c2d4e0240007e439c09d7b19c49a4", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "2a7a0ca4e8bf3af0d0e110086f0b5f3ecfad2d06f97ee254c480dfb4b352db72", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e79416368370bd42fe49a3841af69f6c9f9135cdd665d365e1951b58065787b6", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgujfgjfgjfgjfgjgfj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "a5b08dd69e4bc93bb79364c2ee70df4e2a05d6c03ce3d045ecc8a9828733e541", + "regex": "(?i)^https?\\:\\/\\/dfhgfdhfgjfgjfgjfgjgjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "82bc4a1f2ff704abc2bdca4f6cbeac4a541cb0267a437b1ce29202d8fc23e645", + "regex": "." + }, + { + "hash": "25037ce46666b57806d7a2ef7d220de391a30225eaa4fbaaabec71a61bc2cead", + "regex": "(?i)^https?\\:\\/\\/pub\\-d483a085a76d445eaee7c66ed25b087c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ed0b89a8cc30e8e25aaa3b9b77184ade521f6a3de49b8c0243a5b4b025420894", + "regex": "(?i)^https?\\:\\/\\/profcryptworld\\.top(?:\\:(?:80|443))?[\\/\\\\]+info(?:\\?|$)" + }, + { + "hash": "d648c2d7d1f8e105bf4d133ab66fe9d5a2766bff5187433630a463963066ae7d", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "7d068b106c4e5b58492bf4576e9694fad231271ddf1cc446b8713840a6465c00", + "regex": "(?i)^https?\\:\\/\\/goodwillfoodnetworkcontestantpage\\-sc\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9012e487a5381ed298cfc7c0289f196d2f5981fae6d26825a27ad5f1eb6c99ce", + "regex": "(?i)^https?\\:\\/\\/rhbhrb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "13eba5444f2878110eff57669df190e162a1e670732b13986f589434e650414d", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a8494c293acefae39d383e3a1431d05b577820d4a7e2650f0f9f6b69344fdbf4", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ed8039bc878edfb7ba3e9f418abf516c068ee0e0af2b1eeab4fae7c34a9e8f78", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3d817d08dee03c8e3e844bfc0bea582beb7d4ab75ee5c0bdf4856a8f877bc62f", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "527276bdd3a1431244a4593bcc9c049eb3985fb9c6c192358e02947df06dc039", + "regex": "." + }, + { + "hash": "e086f5267b0dbf782a8d4d13f8d4fd58af5bf890491195ddb793de0989c3fdc0", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "347500e1299cc6080618899b30a74334a33b1f0434bd533d66be23ecd14da0ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tradeoffer[\\/\\\\]+new[\\/\\\\]*\\?partner\\=1176487359\\&token\\=VCdVHrI5$" + }, + { + "hash": "a7752559189085e58b6b69c091bcc42ef6c2f74892b7c39ffcba78dababc0e97", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "aa0ec9efd9f4e5b49aa1f3f8cb42116f457d4aa6ebeec14d53a4054c3a25789b", + "regex": "(?i)^https?\\:\\/\\/sdaroblox1432\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c315d0252cdee65730e43b62b3bad4130ce9b78f4746898a4b42877f7664a88f", + "regex": "(?i)^https?\\:\\/\\/101firsatlaribugun\\.hopto\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "b8ab2285f8fc593d7e8872e7901588af6e36fc509fb1ee9dcb3f8b6c98e2d120", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8878af9cf4df702d719907c56dd69363620311c66760f90e94682e91ca88dd71", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e1988b65116b02a31e8a49c1eba55b4e52a1e71504d4927c0f4a69c684e44cc0", + "regex": "(?i)^https?\\:\\/\\/plan\\-cul\\-manche\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "19850199f6e6aa203236e3490a7e5bf46088667898165a37ca151babbcfb2e80", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0b442fddd99ba40176e270570dc1b4b9a9c8890557c71c6d79e9997f09116ca5", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "50e7af37343ff0db2c04bd0e67d2749416f9e5ce1fa234e5029bfd33e81b64ec", + "regex": "." + }, + { + "hash": "501d09678d95c8def527f337610ff1dd21d81c076420bf2ae2cb957dc3644b7f", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmfyuacskasmcamsem\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8378d6d3d4c5de18df6f1d515b5900f471036b4fbcd5e4c41d7d393086cc95fd", + "regex": "(?i)^https?\\:\\/\\/gigglesflyingnvny\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "90c54fbe4f19285b2994300902ea2c2f302110e84d69531d550d8073af78708f", + "regex": "(?i)^https?\\:\\/\\/godsentannualcookingprogram\\-sc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "09e2db1172ca73dc61b637dcc0fbc049678d880b41db2a66ece88c1b31fd0f14", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "af4e67fbd8ace9afb698b5ba30659322621307e59cb8c7bc2595fa352cd98392", + "regex": "(?i)^https?\\:\\/\\/rhbhrb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3a5bdca4e6e9dcdb7b811ca6426338399db3e0596af997702c6970961123b336", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjjgfjfgjgfjgfj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6a790349d531d4cc38e0652f5dbdabfeb212793a4da0609c254d59ff6a1afe27", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9196d11a986b8d3f3ee1075c0e5d426413e5f036612c5a30f4f08e06273d75a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fda6e35dbc800ed16fc508ec507ee635feacca9d3f598b85207898060171a211", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjgffjfgjgjfjf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "4445b0f539b2d931886f8bb85a3a4a91300b0bff2fc1033e2bf4c75365cdde0d", + "regex": "(?i)^https?\\:\\/\\/sd11hs\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c4673a84e09544944cb45f0c0243e4b7f87d93d59226f8bb30f1354fd923d54e", + "regex": "(?i)^https?\\:\\/\\/wiwiwwiiwiwiwiwiwi\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "691e7eb5f3a1e61a353a3815eea02312efc516c0b7f89e8fbaaaa6a8176d40c4", + "regex": "(?i)^https?\\:\\/\\/brainfuckerufl\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fac195c47bb6fe68f7c29fe662abcdb0759560f47400d0cd54049d9f7a8c9ded", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gfKNTCcAjZpZYUH77(?:\\?|$)" + }, + { + "hash": "fe6ebf518214461e27e222903a804fe0aa110fae61788bb4f9bfd6ae82fcd3e6", + "regex": "(?i)^https?\\:\\/\\/yourdiettk\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "369fe732870149a748d56269794250a7dea111d322c906f0ddbf0e1289c35b1e", + "regex": "(?i)^https?\\:\\/\\/barxaswebshotuofr\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8214ee8b46387091280d40f5cdfb7e19e393fa430e27827d1cd6056fdb0bfca6", + "regex": "(?i)^https?\\:\\/\\/gromilaundefinedhnccgbl\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "337e95a88e59c5a9f48408996f6b81bef6bf4757f634c7fb8442badcacae6734", + "regex": "." + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938ac41437\\-4be1aa44\\-2b4f\\-42ce\\-a473\\-c0e7a376e4d1\\-000000[\\/\\\\]+A9xR99nXfEkMRrocj8H6HqkBAuk\\=402(?:\\?|$)" + }, + { + "hash": "680ebed18cdf61e9e3a4f44cfbbe5d962f5b073ef04557c11d174447236a4c52", + "regex": "(?i)^https?\\:\\/\\/goodprimefoodcookingcontest\\-vote\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ff5b8e32a4a196afb9ee9c5201091067007c76ed995897b7a051cfe0a0436d8c", + "regex": "." + }, + { + "hash": "95582ab25c05f10884f39d53d6387363c27f93996c83fb087e7666ca534424af", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e48249e3ad5ab9d230b791c31bf4eb610e42f72d6d4b6e7ed61c21473988fd91", + "regex": "(?i)^https?\\:\\/\\/dbnsn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a220ba13d3955e272c09e39a397ca6b944ec8726b28c72929c8a2d3162eea78c", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "49a0018288afe4f5f91ceef687edc5e38697ee626e33df2d762a3061f5722841", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgjgfjfgjgf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "357271d45aa60e06d27a533e215313204e8dd5ed2af96afc2c4658e296a7b170", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e0bae265ede72bf09c1195fda116b9a204341d309a571e1d6f8d46031d59a3b2", + "regex": "(?i)^https?\\:\\/\\/wiwiwwiiwiwiwiwiwi\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e6915dd6df2e2864fbbda1b8efd3b2bb4ffd0011f00543ba1c6674174e711040", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "ca589ee779de1e5a2e7d66117534092985265744d513d5a90b5a9adf00c98eb3", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "63ea0f8035d88264006bc23c976bcf580789fefad8720e2b71431857cbf0d18a", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjgffjfgjgjfjf\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b8545b11e112a3d5c21554d15b230ed2786c61b298d855b9067fb676ebc762fb", + "regex": "(?i)^https?\\:\\/\\/att\\-105473\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7c13db236b70c996bd024a56ff0b2a344695cdd2e9ed4ea55848d833cd3b766a", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "8434f18d073a78d294dfaca1b8653162ea8ef5f310ab0ef16ffb3fe2f5a76603", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e89c872bef9e45dd42bcfbc344e8bbc1a083a0ce8fb2e1a98f1b1d92a8ae241f", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c8118feca024859e824f98865a04e5fc20a7152735ff80d15b0f5dcf2268918c", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "81adb7e4f42dd2a9b6b117224228840c99523525773ff911322bf0ba805e731e", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "37ead0440944f2442635a77fbeb9f2c5fef73445d74b6925259d3b568d261afc", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "38b56f71d3aea1919255e4f9f239989ef139fa1beea13a21162ac8090143aa65", + "regex": "." + }, + { + "hash": "e9884755eda3f2d6851aa166fc83d2b6e6a7fe7f30951e7e68a0389536c9df32", + "regex": "." + }, + { + "hash": "25ee56a9a7b04fa7d9f92168ccf8052aa02000de231a58ee5c44dabdb8e0333b", + "regex": "(?i)^https?\\:\\/\\/no42igbinoviastreet\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f4a27b5da7465f1e2aed6d3e7ebbade94a4ec37fe2f27cb039fa1abc890b698d", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "edd133bc9c577805d0c6eee538da8afd7fc48a583110ccf7f32a1fd1f2ca3734", + "regex": "(?i)^https?\\:\\/\\/gjhfgjfgjfgjgjfjgfjgfjfgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "19af431b7f2fd48c3f8216bb11c97b19a459ee54e781dfdcfe1f34a8f25c8ba6", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cf8900133dfb2b69bb917d296ea6465550388eb1591ee41e122154f8259586f5", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "cf5af2ad7a9b3f38155af63b9c69722a9e80e425e18706525ab104738d34a8b7", + "regex": "(?i)^https?\\:\\/\\/sagawa\\-qhohsw\\.com\\%E2\\%88\\%95epswgfnckp\\%E2\\%88\\%95jvmzmc\\%E2\\%88\\%95qvnsp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "a9ad49916626b28123d65f73e9857a4844c355cea5a58d1617219f77a45bfec5", + "regex": "." + }, + { + "hash": "a2ca6fa2de04654a26f52862059a42fdaf29ecdac849a13711192c872eb04e45", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "483594c37a15a7d3aede272cee31538f7144ebffb9c2a2a27bfb1a29d67b89bd", + "regex": "(?i)^https?\\:\\/\\/bethovenogoffja\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "104c27545cb1eb9619fdb228d4473269c17519f08830bc2db1a47614f982fce1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d36999ead3ec8ae9fa47f7664ed591862a8bd4e76153aaf6ff26825b1fd2697b", + "regex": "(?i)^https?\\:\\/\\/yourdiettk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "85f3812aac544d75aa98da0cf6fa4bf3eccabaa52942d5c272d0149bdcd36db5", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c6bf7a37b81caa363218c8905d9eaac379d12720d70ef50e9e56a04d8469568e", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "27452b063e05857f2125c0cb465fc0be116ff1269c673e26e181b670adb57380", + "regex": "(?i)^https?\\:\\/\\/hhscsusihvhusjwiwowbsksnsdhxihw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "86f60f0f0f8894c5a9c10531f304326f28ef78e21cc36ad2002a51c9523de503", + "regex": "(?i)^https?\\:\\/\\/sanekleeundefinedpuq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d1c80b242ccea597ca6a45992afb3c59359f9b9cae31e97bca6faaa09a7ac383", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ce434100f0a5cbe647ab78b3f0310a532b8f424eb25251e95df45706d4a0293b", + "regex": "(?i)^https?\\:\\/\\/dbnsn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8ad4632fafe0f244e9015060137878102b5bf121aafcdfc4f37a5caa052e167f", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6b4223190c9095dc58c2df1b109db9641e33e37c13b9160ff75333d42047f064", + "regex": "(?i)^https?\\:\\/\\/nicetv\\-45\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "da12934d23dd97734af9f91e2d651b1db5e0d51a999a54f00e39f1f09387242a", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f87d58bc56bbe608a51a8889c5c52ba937a301cb04a070b3e485ed2eb1cd32dc", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "96a6827d6e3aca90a18741e4fbad408f3fbd455aa89be7b0e2b1fb0860caf51e", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4ea28ebf2bddc5f3f7d6a71e7861e6d53d5ceb677c49aa9cad699d8555647154", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "09584bd16a590408ce7a2ffdaf0f0dc7a9569c4df4dc1b4aa9576b141d13bdb2", + "regex": "." + }, + { + "hash": "4d12f949c8b8131add3895c7e630be0a971dae94b0e8c11dbfceb08db4cc3599", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f4dd22ccef8d6ee6065d5b25e66b6d73c106160369ef03446825af1de8045c32", + "regex": "(?i)^https?\\:\\/\\/gromilaundefinedhnccgbl\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "95ad41864947fee765ccfafc24825edcdb8069984cc05577282c5d5835545d12", + "regex": "." + }, + { + "hash": "debce144fbbfb47270bb286b1ea42b7a045ff10dd0d9dca333a18cbf43f0bd7f", + "regex": "(?i)^https?\\:\\/\\/sdrfnsrfn\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "dcc6856569c9fff769b9dc13a6e715fc56a6d2c48ce06e56a5c513b0751a5cd2", + "regex": "(?i)^https?\\:\\/\\/rewards\\-orai\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "461c801095435c1a61a30b157a6e5385586a96e24db6f6c85f82781cb9e7f17d", + "regex": "." + }, + { + "hash": "fa1ccd831690390fa7666bdc3f4a4a72f62aa1bee55587a5d44992823e0a35a8", + "regex": "(?i)^https?\\:\\/\\/eafc25reddem\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0679ad4c151e6462fc8107875bc42c4c2ba1f76e0793e6c23ad709c606e0c356", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "576ce454b20d15c537101587a5e6c2ab26fa8fbf64384941087710559e99d767", + "regex": "(?i)^https?\\:\\/\\/sdfgssddfasdf\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f2fa893ebd9349750792d5a4e5f1c8e6f765a1f0fc353ae09fded253bdf7f205", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes[\\/\\\\]+\\-[\\/\\\\]+\\-[\\/\\\\]+METAVERIFY24A(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a50c68d634b58733949e531d0fcd2448a24b62aef7b98e4d14aed74c2a2cf45d", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e6f7339bb9b5d293564a5c3c12c7d2e24da735ab6ebdacfc20a0ee9d53d7376f", + "regex": "(?i)^https?\\:\\/\\/sdrfnsrfn\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "48350ea869efabe61f7a466b302c85f62b57cb12d9d21a8fedfa7698a021d7b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "39e27dbea531399581a58736d3e1044c3b0c0a0d31ec34f6f8fffe2e57de9dac", + "regex": "." + }, + { + "hash": "e4bb32ca52888a199d499d8c1a5653144a8ced32be68a5d05f5a742a386b0c94", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "8cc125f16a87e66dbdfc3edddecfb48108e2685176d403149f43f5f507bd14ac", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e805bab8d008d10b3a88adba7c1f529b5cdd960a607549a9b74bdc4b91dfde73", + "regex": "." + }, + { + "hash": "212a0e820a1cd6b78ec5bb2322fcb0137742717fda92f90af088745dc74b1588", + "regex": "(?i)^https?\\:\\/\\/yourdiettk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "61d824a80af9f0be0d3a8a178ca5afa5a2bf3cf2361515134f619988714f42ec", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7abe3dac8e41634142ba8ed04f5cb46131c269bc57809c3adf8b7a5bdf2093aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "d841d8c4616a946adec6ccf1aa3f42fec93e9d6cdcda707104b7ee2f6b32eadc", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "7bbdcd92f3ff118b928214b13d3e02936ef9ffb38f798bbbd713eb5a8ed350ea", + "regex": "(?i)^https?\\:\\/\\/fhghfgjfgjgfjgfjgfjgfjgfjgf\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "822d88bdd7447822ecaee063be194e681b525011a7cd0ebb854f6825ddaceae9", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a8a20f148e082ba404b4a88f173708e3a4a61704402ee624dd8c5666a3a32e57", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "18c052fb35d7f0fa93d3d16ba2cc1da0fbd3d4cbdd60082ecd27ba1611a69ef8", + "regex": "." + }, + { + "hash": "f449fa0840ea14b8346802c5982bc6f58cb82fc7b2042f042dd7a05f530a4d30", + "regex": "." + }, + { + "hash": "24d31c9df1e3b54a2a0eaca822ee713847597381dfc777c8d4768a6739214fe5", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "67a86625cd5e23486264e785fc2689150e703a2415b75f1c3c392f80b5a2db48", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a13caf31e390e2cf88048954e09e10868eeb0d57f003572313e8c79f4d292079", + "regex": "(?i)^https?\\:\\/\\/fsgfdhdfhdfhdfghfgdfgjfgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9f1f624cb35547431ce57c4ce33188a474b05d17b21163182f02a2bbcdb380c3", + "regex": "(?i)^https?\\:\\/\\/pub\\-01b10b6776f74b83a23714251ab26252\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "925b142928f8c6c19b64385bd9ce974488dc2a73cb69c56f03032c7ed997dbe9", + "regex": "." + }, + { + "hash": "ff868acddbc64ddb1640466f1eaaae8e54ac094fd0e2c6105df930699c82ced1", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9fd826770827d1e53f93d7f7b634ab4aa1570f7b67ac86b4f6b5914b9c0ddaed", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "6f38f64e8e5d4a4c2ba1c4c906c95abb090a97119ba148a7f9dd9a058a3ecfdd", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c2f35960b81c9bd7fe55628f0c04d6da197df8d68c4ebec3b93d3a6136611c82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+PBSCkC(?:\\?|$)" + }, + { + "hash": "6e38b291ed49f8b16ee9a69c5611f51e0fa84e2e28c05ad15bb17218b97af269", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "ec511e39934be5f6e9780d9797745665dba84655af28f3e7433b50ba86bdb79f", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "41a608c781ba943ce6ec184e5e177bd5edd2d725a742fcbcaddf0aa5f602c022", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4aba0501528c248ba7be89842d77a45d566922601808e5af7d0224563fdc3db9", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b24258db1f568d1dba9ebeef973476231e803d8b49879645ba463020eacae40d", + "regex": "(?i)^https?\\:\\/\\/canada\\.postscanadajjf\\.top(?:\\:(?:80|443))?[\\/\\\\]+ca(?:\\?|$)" + }, + { + "hash": "aa58d2745e832dd00d7dfa723cb08a4f6213a18b39e4a2e842961ea0ee6bdc46", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b4e1af8abe515cb1a433ca00d88fb8499916406b3216b4b103ff724055fb515d", + "regex": "(?i)^https?\\:\\/\\/food\\-net124\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f611d3512a4d7126d8dfbcb85d937746450fe395c8331235abd21aa66c63978b", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ae7c526b18d6bc4923fe8e224afed101ce74e3f041bcf065c03df25f67266847", + "regex": "(?i)^https?\\:\\/\\/fdndrsfdnbrr\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6b89a8cf70240e0f38bc9ec366695952aaee7e3f7d96deff7f52f9861835de9c", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ba85dd927934afda4a97aaed46ff1bbca04cdfeb03d8f4c812b599833b3c3239", + "regex": "." + }, + { + "hash": "8561b2ea73361dde87a8ca8ec2d44d75bf949f0de5fecfe2eaa3db3d6c62b447", + "regex": "(?i)^https?\\:\\/\\/onastrollshujc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9ef088f9c3e36272183b2ccd3d99b488da550404fc66a086309ad1b04c9a6c17", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6f5a0a38d42e0f3e2f2b5f2d369a21a77dd2aecca93189fe806854afe15fdf71", + "regex": "(?i)^https?\\:\\/\\/goodprimefoodcookingcontest\\-vote\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ab9a42d10d0fac42b52ffb5515f7a66e37bcd56b21c134faf6841a77077a4757", + "regex": "(?i)^https?\\:\\/\\/sd11hs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0f6e7dcc4bf41fff61f696b5b9eb59263bf15c88e1bcd9817de566054dec5b5a", + "regex": "(?i)^https?\\:\\/\\/coxcare\\-108430\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "27456ef462ad91dcdff6813b60bb05fb889ede6355a3cea8446556bca089829b", + "regex": "(?i)^https?\\:\\/\\/www\\.kce75\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fc3656fafb737a755fe3bee83cda22fc17a3dbed5f6bb8f40cc254a9d367e141", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c67d7771b2f6a7a650574545c24c1c101578fe2f4d7bb050a119b1157e78949d", + "regex": "(?i)^https?\\:\\/\\/hoolcspy\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b4698f2202d4115427d889911378271958a5478867e322ef399812ff506e8758", + "regex": "(?i)^https?\\:\\/\\/misase\\.top(?:\\:(?:80|443))?[\\/\\\\]+en(?:\\?|$)" + }, + { + "hash": "0b18f7d935fd8e1b6da3ea230d82695cde535e6d3ee41dd2524877ffe2469d3c", + "regex": "(?i)^https?\\:\\/\\/rhbhrb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4a664afdbfe506a5bad5a1c8412010d5d008a65c4204cecd4e175a5fa296b979", + "regex": "(?i)^https?\\:\\/\\/phypxzer\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7424e76bee3c49d71b4ec0402d47d2c5650c7b0bb41404550e914ec3b6d00746", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d71b6e8993c97c42f2d716adaa848de38c7fea628eabad16105cf19091f3e708", + "regex": "." + }, + { + "hash": "1507ed6e06ded92be3a7d18d151cc896bd6ae43bcc510c6d541f9ff182358828", + "regex": "(?i)^https?\\:\\/\\/fsgfdhdfhdfhdfghfgdfgjfgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0cba1fdc28fbd39201f0807e6aa0568a9ac93b184018d4743f315f57cf733fe6", + "regex": "(?i)^https?\\:\\/\\/dfgdfjfdhjgfjfjgfjjfj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "055dd85deca54e1a813b1dac0bceb2b15d832c797c709c245ec8dd8777914b53", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "556d67fef6501f968510895712c5e1c55159da22299dcd4d439eb1312379ddcd", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjgffjfgjgjfjf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bcbf71b083e68e8bdaa0bdc4bce9db97951919cdd09a2c7ce81178a09ed85c1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9dd8bddad25ca362258532083a7bdd84e2906a34c97f6786340808c3bc6ac5bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e5b89ea4c432babbb2363377aeaa1afbd22876f183e3634d82d297c4379e4bc1", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "9ed06703abc67c2c85fe1e5dff5bcdf24048669f0d9bf92b84f4e6eb12a7a693", + "regex": "(?i)^https?\\:\\/\\/onastrollshujc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "68a361d32660a027258834449ea20396c417acf8f31f7e0041df72e7e02e8458", + "regex": "(?i)^https?\\:\\/\\/sanekleeundefinedpuq\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2456f71981c322960ff1585f89f097bec129bd2900bb641f818488bf6d5550a9", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "96ba2752ef9337a4697ed9b0ca365dd44d546670ecf98413061455dbf42610c0", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdfutyaslcaskcamsm\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cbe7b6def3ab7c2ac5c1cf6fe0f09a6c2fd9e6fbbfb55eae81479abb0903199d", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "98082f81cbd031440bb408f691705074a885a3683ad49e09c100c56facc2a119", + "regex": "(?i)^https?\\:\\/\\/hhscsusihvhusjwiwowbsksnsdhxihw\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5210cb7e6d9aba00e07db53c9a5b45cca4ee117d8e52c9e731835cce0ffd2510", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgjgfjfgjgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "97d59dfdee0cf8369ab6d94bb9340da487c4cfb1f605c9fb85507db717294cfb", + "regex": "(?i)^https?\\:\\/\\/pub\\-381a899e86af437f8d38bd230830e473\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "210a92927d43613fcbc0f3b3aac67510bc206939fc49d3fbe650c09e5a4293c4", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjhgfjgfjgfjf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b41f50511b7503b79d110c8bee3d9440a90163263864fffa24da3b2dc64c0f60", + "regex": "(?i)^https?\\:\\/\\/thieuletrinh33b3b\\.wixsite\\.com(?:\\:(?:80|443))?[\\/\\\\]+so" + }, + { + "hash": "e2cd3e7a29cfc682108a48c096e903120d11d58bf0d9fae6fb4813ceb99e9707", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+task\\.html(?:\\?|$)" + }, + { + "hash": "84d29b4138ab84b420360ed9f566c14648079d889c411186ba13b4193c8515db", + "regex": "(?i)^https?\\:\\/\\/fsgfdhdfhdfhdfghfgdfgjfgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "ad04b950ed442b6c7e846e49abde8df4c3605b8bd10131f266ac9fd6fb0fe40f", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjfgjfggfgfjfgjfggfj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6cf26e4af30745e9494e38229665c38b7bb6845d756d46212a37ce3ede74f26e", + "regex": "(?i)^https?\\:\\/\\/goodprimefoodcookingcontest\\-vote\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "90af8deef9684a14f3a47919fde72a20835f16876c2664d4aae94b3b5797ef0f", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cfdd99f2475a7e46270300b652ec1815516147194ea6d11be82e6219b3921fde", + "regex": "(?i)^https?\\:\\/\\/foodfusionpk\\-rfgdscprogram\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bdfbf04c4f92a919c812cd17bd39969abb23fbc818354bbf7d04c8e3c0d1847d", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d35da1fd6a6390116b2e3d0fc32ac042aec24b770fde27e8713ddec939c4d131", + "regex": "." + }, + { + "hash": "4fcabd929e1ec9b34291541da97dccf4b6c1cefb06aa2902b60d8f00e5b661b2", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "fe6e1f719a6b2c4456449f928ef4524824c9418cd90b514096c96dcba93e42b0", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f0645640050a368e1fd56f541531873a28639127b842aaca488662c4d28f47f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938c35fddd\\-77211940\\-ad93\\-4aad\\-a3c3\\-8e876269d3e3\\-000000[\\/\\\\]+gAnblPk7ak791ToF2MmspbSwwww\\=403(?:\\?|$)" + }, + { + "hash": "92a2472395a1dad84745c886f001a20bedcb84a0b8a145a9643926a7af83e85c", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c2b51026884c0ef0ec55b6980bac85efe834b9a2a9981354bfd4aa86fb85a591", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "723f29721e2277d56c9355a8a2b166e2226a79d3453782f5bb82a3a4c53e080b", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhfdhdfhhdfhfdh\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6184e50dfa5163779c16916103897ae1683ad623ad51469cfa1dcbe2733136ff", + "regex": "(?i)^https?\\:\\/\\/goodwillfoodnetworkcontestantpage\\-sc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6f7cce90fa35099a7e4c68e80344982f16001016d36fdcc4839f754d1611ef28", + "regex": "(?i)^https?\\:\\/\\/nicetv\\-45\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7e961903cba38e25eb39033493af3da475009c9ad96e818729a564cf2b498459", + "regex": "(?i)^https?\\:\\/\\/eafc25reddem\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bc861496c77a1e25ea7e40fe56dde6e18e25179af690ff0271e896dc0658acdf", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3a082a3bcbcdbf35a600146f1f03a075824a6af6ab9c1a20dc1b0a44b6ef10ff", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5256b8759a2b2aaf65bca54c9f8e7db8a92d90e57f1a9314d6cb86398357f450", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1379430b35237684a893312a3507b1d3c02323cef681321039367ccf6e987ce0", + "regex": "(?i)^https?\\:\\/\\/rhbhrb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4b6123d122f270d23199546e8a7d1633de6c09bd8ad65fe0129556c9f02821fa", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "cd5bdaef027ea17f5ebb4edcff56e45d55a62ce7cf713d40ab97f9d45c641e3b", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6bdeb831706fd11e80692034c42c786814689c2fbc9f8617b92dfeac3525f4bc", + "regex": "(?i)^https?\\:\\/\\/1oglnprlmesessmazonmysedashbrdupdte\\.64\\-227\\-118\\-221\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "26392bf93b4e09dbbb179ed3d29ae16f81abad3d239ab534fe70880af2afc6d7", + "regex": "(?i)^https?\\:\\/\\/sanekleeundefinedpuq\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "60bdc9382eae99de918fd93e95139d80d89302b3a0253f6d20fe626bb3e89fa5", + "regex": "(?i)^https?\\:\\/\\/gjhfgjfgjfgjgjfjgfjgfjfgj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2175aa249f7a07cbb11d96bc0976c4fe6cb149d3c1c4918604f042cf63a38728", + "regex": "(?i)^https?\\:\\/\\/pub\\-c92a4cf1fb774dd79b9c7d32023ab3fa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "54fc189e9ad5b15aba3c2f28cee5e809b1b1b885786d664c363a5d5f798a9597", + "regex": "(?i)^https?\\:\\/\\/foodfusionpk\\-rfgdscprogram\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "96ba08ac68a9c1a25e595cadc2b8e6d02a289e59d292d26054dd45d766887d20", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "82489d5cdef7af0060d1b7fa08f6bafac0c265219194dd6d0c5236f7e609d36f", + "regex": "(?i)^https?\\:\\/\\/goodprimefoodcookingcontest\\-vote\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f62069eefb93ea9e11b0e79e1344343378f18575a3b97cc7030f159a0166fb5a", + "regex": "(?i)^https?\\:\\/\\/darkpalladinnwced\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "52349a2c00be42d59a4db656599e5fb525b4f7522f71250c19e5598ea7a1fc21", + "regex": "(?i)^https?\\:\\/\\/sdaroblox1432\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8be7a1dd01e9689cbc4cd137d7e737a58511da1a2dc23dc073950ff765577956", + "regex": "(?i)^https?\\:\\/\\/sdrfnsrfn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "61bbb157d217bec93a90b37a365e26bb47a9deb3cf89d36d4c5766761dee81eb", + "regex": "." + }, + { + "hash": "eac4191e16b6fe33b1af3bfa626ce6060af51890132521d649d7ac6e9866be1c", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b992542f3f4b0afb7ac486b8d5e1f54ef67c1fe301b0ba1d139e86bd01608bb7", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ecf23a0fe996fa6dd850d29b5c8bffa1638e5ee9ee800d4ed9faff5646df3479", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a8b857470e5df8abfe7d9beb0dcbddcd6be3c1a2857232c62fa04568c176b13f", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "7f1722348e62a2fa52fe2c766ce2a428cae4595e3f2094f014a45e1829efdfdb", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2b9eaf98b239f369e6281748237b5846bb541f5956384409d6065d835be300c4", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eed4123742af247f2a6febff46bfaa399c06f4cebc62dc6602a321df1d6ff456", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "01efb1416e6ad07dd5fea24a1eec970d777b3ced57d182f2c6af745677420320", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjfgjfgjfgj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f71cd442868d873ac3b6a7a9e6607fe9ecf4b385727822f4803d96e4c9300f03", + "regex": "(?i)^https?\\:\\/\\/d4s54g\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "15e27d9d84221b8ab7b5964389eb3a1be74b42cb57cd76a1aac72f59ab13c777", + "regex": "." + }, + { + "hash": "ed5104bddea599715c2161930e64799da5270e50e4d83b4d4e13ab006ae5abf4", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2f0ed3044a39a5dbb4fb647b606952ed15d2cd49e499c931bbd1398b222d6d1d", + "regex": "(?i)^https?\\:\\/\\/sanekleeundefinedpuq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e941e42dd73ca54945aae86d53de1ee0a8b1a294fdc215141e3f37ce7f99fcd6", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjfgjfggfgfjfgjfggfj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "653dcc7bf81847cc170da665b1658c39cfef854a69a7ac1fb20ad99a54f7d513", + "regex": "." + }, + { + "hash": "192f38785f69b81b08e3910ccc99619fb8762477b3fd4a814c9333589dc9d787", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "130a753858e9f2cc9d68931fd49e29e695d6a4600a817dd9b98e5a18b226278b", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4f17533967804a7e15b271ffaf716de80a567bde20ad9c240ee42f66e0dfa614", + "regex": "." + }, + { + "hash": "e5582c6bcb3f6719109412be6471a5dde39efce15bb50f3e8c583f06314132f3", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "caeb52276d91956613ebe603991d9e16f7ebbc5909c08bb7d11941edeae8c6a0", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5bd2b386e4e445c2f489ccf188659cd0e9a2ca2eb4a759977c5453fa88d75730", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a7ea0d3e28ebe0047136767a55515672b3695abf4d2f1a4c37117e33bcd4cf97", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fb299fc748fe0ba2e3f42f38fe18bd5d55d7aba04d984fbaaea5dbbf05acd3c9", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjhgfjgfjgfjf\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0ff741c1542c2a87caa2437058efcb7479046982bb38c613f3be5b32071952e2", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2902dec7da146993c30664c82be748e544b7a96b5663df69d7835925f3dd3e34", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "dc1a696ad0c689f0be879c82a4a0d2fe1b6f21fcaba9196249fbc43759b3ba3f", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "49ef998379578938693305663a02d8c016f7ffbce0266bd09dfee41f4c44dc93", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9d168ea4a4b9cffd77811df47945f89befba48cdcce360d576b19b54c8197cde", + "regex": "(?i)^https?\\:\\/\\/www\\.petesdrivingschool\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+contact[\\/\\\\]+\\." + }, + { + "hash": "504d96e17e0d0131bb5916b8f1d113c7e3425b51ba69f347f65522c813771d0e", + "regex": "(?i)^https?\\:\\/\\/sgsdfghdfhfdhdfhfdhd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0981737db05f36ba22d475630be20a91462a3a506dbad1e622f9f09c70d28601", + "regex": "(?i)^https?\\:\\/\\/sgsdfghdfhfdhdfhfdhd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "762289ddc04e80c83b7b68ec0b5ebd1f2bffd8bcdc95d0b75f3afb8581562536", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9c5754bb9467e3a7eba86826b90c48dc015435f62f0856e6216e0d536adf7184", + "regex": "." + }, + { + "hash": "4ba9d48a46973d3a73e91d612232386c5eccd95496b050a55580b81ffdffdb83", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6cb5a45a6f830593f41173b41c9bcfbb8eeb5db97c06656a520f14adbadb24d1", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ba4df4ea65880396a79c3fa0efee9307a0036ce254989dc11e7f3867520a623e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "93abc902c862047152faa81586e4a78421fc384f672f446b329c65e5df23042b", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "72f081d9c6b32c38ad01b419a9e8ceed788791581ffa5e8de97d42f5ceac8baa", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a4430e8395cb3bcfda32be28cabf9b73fed5e7ca86dc1d5353feeffeacf57622", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "46e29ba6bce252f7d2c681f8069fe1e8aa71b9c5d18fc5f32221e773f320528d", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5d793b4df99f654f26146617a2373606208a26b4db8f6d3d2dd7cb5d1df92cfd", + "regex": "(?i)^https?\\:\\/\\/pllgav\\-ji\\.top(?:\\:(?:80|443))?[\\/\\\\]+tr(?:\\?|$)" + }, + { + "hash": "83f8c19dd87502a5aed26b8bb216a63d4a97b8c3638f4ecc8b610c80f34355cb", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b07952647bea4b2ece5522d9058feeacfba5ba91a3c2e0624cb96de46043fc11", + "regex": "(?i)^https?\\:\\/\\/gromilaundefinedhnccgbl\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "1409a409ff8b4170e793a85c4f98e06676befa1a0f4254f0a0327029569eb4be", + "regex": "(?i)^https?\\:\\/\\/robloxfreem\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "fb7d3d9740c464a504151a7a0920e615d35c1577541b8de21669c220ba51a088", + "regex": "(?i)^https?\\:\\/\\/sanekleeundefinedpuq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5a9d35ac82f5595cdfd7421fb4de5602f05e46e98fe3998f53cb04ab1fa286e4", + "regex": "(?i)^https?\\:\\/\\/foodfusionpk\\-rfgdscprogram\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "697be6392001609eae35dfe3f136425953dd69339691dd4fa692a68fa63f4e43", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "99b3d2544a0badb338df3771b76880498bde46ed2e63c177d9ab5c106c5416cc", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjjgfjfgjgfjgfj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6b1ff20e1cf1ec26276fc7f2b2ad2a06d8dbb1719a857222b0aedf6bc9b58f83", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "cc4eab7ed5850f33bb201fe5ce4dbe9ec47f9437a224e23588a37445f83e7e57", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghfgjfgjfgjfgj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bc8675b00426c2f5c52658debfc510dc6bb2459790aa24cb9da126b95e4b8c2d", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a56cda2648f84098d996e930a7eb62bac45a25029b36a4959796383926712021", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fa168fe44fa0573af55d020718753256895369a06227e5b15effdcecc66cb934", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "aa458536e17673a59d2a43d03597a6db5eb50d20e69359847ceebd4819022cfa", + "regex": "." + }, + { + "hash": "153c1c17fb34c20ef07213c3bdf7fd972e7e6b711c200b1b651bc2ef4af8f5c9", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0c0e02322416711d85a19796ae7294988764214c4a8f74f40c31bc05b109ec06", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5e14c181f2a39f2a48fa19e6b6eb6da26134e680f7adec068cd98a0832aa6107", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmfyuacskasmcamsem\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "13a7706c6e2d388fdf7253996f77bef0145ff129740c9475542fa43cbd07e80d", + "regex": "(?i)^https?\\:\\/\\/att\\-new\\-verslon\\-2024\\-10523df77qe6t97\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f4178d124c23f9d849f5432a941d2dc7dbc1e5baa7465b10e66677311c553744", + "regex": "(?i)^https?\\:\\/\\/fdndrsfdnbrr\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0d2f63aa3529c6c6a328cdf9e3769a25a0e03fbc89a8476858d0e0d1b7f40b3f", + "regex": "(?i)^https?\\:\\/\\/gigglesflyingnvny\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3c647839a408d4950befe5cef466d0d52da16aa7466b0e44e8fc4783ad746d12", + "regex": "(?i)^https?\\:\\/\\/dfrndfr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "995fe2dcd792ea24e34ac29ae625ec2f1b6b02f538d1e5f9f9d8344cd0792e7e", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhdfgdfgjfgjfgjfgj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c207a31cd8f914ba7b9d2d075c07e5acc824897f387d22ea414e0918efabf7bb", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1bacda5f55868aa90e597fe055882c8408b2d116139332221bc2fc0382e2b742", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+confirm[\\/\\\\]+login" + }, + { + "hash": "3d711377a5ac7086ddefe31a9ad6ef6dbd6cbdc11340aaa0879d024791789dbf", + "regex": "(?i)^https?\\:\\/\\/ixkhonwy\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "742b71869dd219183845b603c8edcc50f596840dc2f1ea2e7305ccf1a6f1ff74", + "regex": "(?i)^https?\\:\\/\\/gromilaundefinedhnccgbl\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "f53c350566860a25614ed9153ea37acd6bea7634bf41cd15c23e510471778b99", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3c0550bbdad98a1b4f13292f5b9b48790c4f126ceefb70632fe460b8827605a9", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjgffjfgjgjfjf\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1e55e842142807199cf268ceebe90828ab7a4dceb983325fc9a38bb58b8e879f", + "regex": "." + }, + { + "hash": "95ed094026f76f44baaf08d0a3e66c829be3b77ef23eec09dbceacc5a33a68c3", + "regex": "(?i)^https?\\:\\/\\/eafc25reddem\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a77b93419967aac6aec8362011003cf27e580b43270ca55298d697a15e910", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0b14e53f316e15b9f4833e1f80640fc60820c67ca9d413ba0bc520067d962ded", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5fbd7b9d559b0ab9354683dc25aa09323c84ef9d82e495a235be0bade4fc4025", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c668a12914e0a2d0189b4248780e8dbcadc507d8eadbb70476e79f5a069e204f", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjfgjfggfgfjfgjfggfj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "affaa1abffa313beca2a470a5649f08e9d835d850cd2d34c6f65fa8e122c81dc", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b464402d97bfc795122840ceb830112f848bb821c2ed7b1175000c5da19dc34f", + "regex": "." + }, + { + "hash": "9ce9e6126abaed11dbc1b32baf0d4d8cd5dd19474682b00064a2e9f753adc751", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f590b30a51b1658e85a162fde09415390f29b60369300f4526549d7def12be20", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "cf5af2ad7a9b3f38155af63b9c69722a9e80e425e18706525ab104738d34a8b7", + "regex": "(?i)^https?\\:\\/\\/sagawa\\-qhohsw\\.com\\%E2\\%88\\%95epswgfnckp\\%E2\\%88\\%95jvmzmc\\%E2\\%88\\%95qvnsp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=xmymfkbqys\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "328e6cfc06d3a60f359f49a1ad278fdeb7faf133992d77777688ff172362271d", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "25cccfc6989af905b9ddb4a110b30b3173c807b6a4a9e5ae89ae4c2b832ac372", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5c6829e7c8b5b53851bc97bcac26d0ed39921cae812cdff45e701df0d167da21", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1818e40645e7cb663dc751162c88526f8c7b5ff7285aae89d8043838d7aa1462", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7cda1d2ebd08907def7b9a8de69ba7a23f253ff8546307c789a2d0742e76233c", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontestant\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4b58a6a75348eff3a5d6826c4c828c923ff1a8cb36a220764b43075012660a02", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhdfgdfgjfgjfgjfgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7e81d5721f45089efb46a31aa720028f0775bb4a4d5e8af69046ac01bf226a5a", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhfdhdfhhdfhfdh\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bf85d465c88a17f96f07cb77e920ef7e9f4ae43e41f9e4bb4fcad2b776b2d060", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "314aa026902aa89be03ca1d1c9964fca6617ef05604ea7de6efa42b8236850c1", + "regex": "(?i)^https?\\:\\/\\/appealhere\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9db1d79ce362f9c7d53b8416d5087efa41ab215bdbf734d003351c63e6aee7c6", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "37e4f1d8d610a65039fba064af47afbab12abc1aaa003633217c83dbf4a06e1e", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "6ab3487de846028e701693e5ae6799eaac853948dd50cfddf770a73bca03a6d5", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "b47ff7b9acdc4b3de79007d580b3f976bcf16b5db80dcc41fc43a25255bfba7e", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghfgjfgjfgjfgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "f18b1fb16eb893655bfbf8b6cdfa43b1b83801ee3f37fd7387a2643f10a075b0", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjgffjfgjgjfjf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "62dc21980eca78aaefbe5768ef6594d94e3d02c5eb5d7b0b6a26bcfc99f1063c", + "regex": "." + }, + { + "hash": "f572bd25020207b7347f0016e854d2042edb1d7c73817d5a779175177ce6a89f", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f675ae646ac3aea138e18261a2d77dbe628e5dff7b0687e7cd96c792843f3381", + "regex": "." + }, + { + "hash": "529bb71b2cd5bc1a7f10b77266189beaf0a8e7fb67f6ff5c5a48f4d931b98be3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7c1385001beda2e4348bffaa0e843e7a82016e8f35368bd00ad718695f3a53b0", + "regex": "(?i)^https?\\:\\/\\/sgsdfghdfhfdhdfhfdhd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "603dbd2f900548dcea9843ae9db316cf17f037f96a897bda5614fbd565658541", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "474a42edd7c6d2dbf2d54a8df2e842968bd649c5d6d71ddeb73377cf31d570d8", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "4a1ba6c6e26e01b408bda52f607aa88730adf2f510bcb947839f5724721ae48a", + "regex": "(?i)^https?\\:\\/\\/dfgdfjfdhjgfjfjgfjjfj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "49fd054e45f420bd8958351c8033ec6f26a8c63563c7ddc7013ea803c9d0b9f6", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "23df6d54ef5a60b2bc88a374ead1fcf4b6c1126d595f8ba77f1f036fbd8bc747", + "regex": "(?i)^https?\\:\\/\\/foodfusionpk\\-rfgdscprogram\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7349bc9e97d69699fa57f82e7b29eeab1d876837c90c01826edf18ffddf54938", + "regex": "." + }, + { + "hash": "a1789f103c24696f9ba3659e3e25ab61559ce84794a4848c34e866474926b21d", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d54817288e50fa55e8af3e5275cae4716b3f0f0e35165e4a8a6b6e4e9384247c", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "705fb57150ac8d6d359519472046a61efd1ed81f6fdf1f9fedfb44c43a3ca829", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "1c4137ac7705cb8e3ebecc0a1c88468e0a438d5840e3e8cd7581d142a7a917bb", + "regex": "." + }, + { + "hash": "a0ac17a73a12141b38db5869ca6f6a14c764e464d3a43ecc5e4c7162f60b9225", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "72bf1c6575647d3b0f3fbfbe4207383a4fa312c3b04b0eff4dbe90bb262238a7", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "58529474f2bff6f1b7459d2668e4bb7445e3ee34615b154e9590383925a8f6a4", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "cfc5da7db98fb571ba789840a89c1a3b974eb48aac0f482656426d941f1939a0", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a6b7acc5824b3ba2cb59bf6f249c07216a5c223c2a1a93fb10d566cffb6b1dde", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+faceit\\?ref\\=faceit\\.com\\&lang\\=en$" + }, + { + "hash": "150776285cbcdd6d6c3a3cec62a628720a36abf3df54bacde2165c7009084461", + "regex": "(?i)^https?\\:\\/\\/instablog80\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b0f1a9bc2631139608c61772a0342db7deb4cbb27b7a99f8c00aa79af3a263b5", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjgffjfgjgjfjf\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "45f6f8c9fc5131f0611ba84c657ffb06b6027595c01c1765742f8ddcc6847142", + "regex": "(?i)^https?\\:\\/\\/dfgdfjfdhjgfjfjgfjjfj\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5bf303b67fbf4d367a9f740e74b59bf6c6d782d30cb7341d6208dbebcad623bc", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "83c462dee3f8bc4de7fd5aae243ccf68f80f751f7c8e05f15413be68a4bc6145", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhdfgdfgjfgjfgjfgj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "6c7088c92516ec3966e766bb8d6c15b500c09116ba75bfa9be7058012a9b22df", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d4faddb446864d622a278217ea626dd6fc456a3a7481836cf6ac93ce13e3f8d5", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "72710182722072833b8214a48e0a8b90023a31ce9fe64cedd81a3f2669089356", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "09b3a95641a3c07e1c621bb68e79619fdcf2afe8396df2b2003ae23aeae2acee", + "regex": "(?i)^https?\\:\\/\\/dbnsn\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "49330093901dbda2082a0695e53fa4a3eaba76af19ea21516101403c863e4793", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b1623bb6f6aeceb6995834572dd4bbde5ea0ea71e953b9f4168faa400e36a258", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6d4341663f48b7a34648285869e4609f08777ab87eb4b99fe35fb63c9e1a5374", + "regex": "(?i)^https?\\:\\/\\/sdfgssddfasdf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7933f4c7420483e835e6b9dc41c44c228660d9663ebe4e8c9ff284635991c4a8", + "regex": "(?i)^https?\\:\\/\\/fhghfgjfgjgfjgfjgfjgfjgfjgf\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "857da2336041c0baf066cfd12ace6090064497a4292da5dffe1c8e05f9346eab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "2e2d0f7164beb2d57cb5e578d2614605bee95a47102122382f186f4dbf8dbacf", + "regex": "." + }, + { + "hash": "c4585618dc80720414037a910849d1fa880897620e8758679709d07c03c765f8", + "regex": "(?i)^https?\\:\\/\\/gigglesflyingnvny\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "2b3144996bb31bbae4eba0090089f797383f38e4d4f0545539bb57338024ec06", + "regex": "(?i)^https?\\:\\/\\/appealhere\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7b2a17d5be1bde2f9cce1f992bb6312e0602393171fb9b39c8ad21ccc31d2118", + "regex": "(?i)^https?\\:\\/\\/instablog80\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "baea7353471a3451e8650261b3a73978faf1c33e5479fb2c63d71c3f9d2b0342", + "regex": "(?i)^https?\\:\\/\\/goodwillfoodnetworkcontestantpage\\-sc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b846ce103422e7dfe3431b9405dc6a187a3361fe184d556248ba4c255260bd1c", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjgffjfgjgjfjf\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "02edb5b7a947da014e7bc38f1d372e728625f66216b9b7ea4823f94b2a3e8b9c", + "regex": "(?i)^https?\\:\\/\\/att\\-107288\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "19b8659c61292817d4539d5f80ff22302290a72e8606d0c8c0ebfebd796f9288", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "92305f00d2b5648de6a30f8aefce8b9d0379aa3b9d76562323a4ac45f8ae31d3", + "regex": "." + }, + { + "hash": "dc754b861276fc5ad463bcaae7fe192e0177df83a09a1db89e6365ef9702bb07", + "regex": "(?i)^https?\\:\\/\\/bethovenogoffja\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b74e5c5a5df247e36540e64e501388026c3d3056d6aca3031c6480dbb569a771", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1b6277c56c5ed67c5553bc11ed779bc7922f3f8360a1b7ecf2390391152b0f3f", + "regex": "." + }, + { + "hash": "b0ac437bc098677cec621b300879a41569c85ee4e239fc0ce5e34d67dc887de4", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a6671fd23bea6946e5ffe40fadbd9ec13542a70045fdf8c86c1bf76d2e3ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d040c233a2686d6d7da03d238d382a99e28aba6d554486318cf9484534f40e1b", + "regex": "(?i)^https?\\:\\/\\/dfrndfr\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7f8639de72aa3f08f5a609b4c02c8ec20c75fb52f665cac9f32ed5aeceab1f15", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ca4bac5c2cb9d043a67feda2d2864559448b71416afe3a03e845f583f9fba9e1", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "653b1ef8954eae720d6e066dac5bf88246eb966b0ca9842552688fe0e9165e23", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "69a038e78e604cfc4d260eb745c5b0e426717e8e3756fef1d9770f9ff415c086", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "00ee9d603a25748f75a54b8dd80b50ce207639b3ff62b3cd9c5b54e094fd9419", + "regex": "(?i)^https?\\:\\/\\/foodfusionpk\\-rfgdscprogram\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9196d11a986b8d3f3ee1075c0e5d426413e5f036612c5a30f4f08e06273d75a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "79678275cf58f225af89c13634780d46cf747eb518783f7f66f28adbfc6f73cc", + "regex": "." + }, + { + "hash": "bd33a14cd25dae6882623df7cff1eef611190ce50187ce23a7d1cfb4ca4d2e11", + "regex": "(?i)^https?\\:\\/\\/coinbase\\-pro\\-1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "fc36fb3b3cc95d109cbd6870ce6973639fe94d25ed9cacb26629e605be6943c4", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "416ab2f436a6ac1a1c6533ec249a38e54a49f70b1c6c5c51f520ff654c9ddb96", + "regex": "(?i)^https?\\:\\/\\/dfgdfjfdhjgfjfjgfjjfj\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7bd1ee33af35dc3a45ceced20a233c9cc020ba7911104ce3d10f136a47f77fe9", + "regex": "(?i)^https?\\:\\/\\/onastrollshujc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e32e55781f84b7629f7d09afd25d791e73555ed58817382271d9356ba3d20409", + "regex": "." + }, + { + "hash": "a746b75dabcbde7a9f0c2ce3821a8adcbe12aff5c33be7771904f01ab0220dcf", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0de6939750e6d5a9c2cf63dd306b43db72fe85d7e5e6394fb7f5cc440a5bf373", + "regex": "." + }, + { + "hash": "2b9a73eda80460adbe86a28a2b862036bdd8b9d07b699b99d6e838dc52952823", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c3cd9fb158be89ec0a9723cdc3f9294f2da96620a3bebd00b5e975e51625de84", + "regex": "(?i)^https?\\:\\/\\/nicetv\\-45\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a65939f525d26c21d30e09f32a665c0c76c69f880b9c3f5a480d3b5ffe68ebb7", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "c0705b151a7f9405cbe7e3d8d7571f39f9c122a789f07a2f21545aadedee2f83", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1f0a8b179fd0240b748ed8898d007750158025713e321c0709f2602487786299", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9ee2496d71a18e7b377b824caed3cc61a7b218627730aca2dcab41760a12c695", + "regex": "(?i)^https?\\:\\/\\/sd11hs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ec9a314667c33e6ed38786ff35ad88b86662469a91e4729a22a0f0cd575fddef", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "bd076810b2a5069108a628149efea10ed72fb2c265e8a8120a65e2e39676be59", + "regex": "(?i)^https?\\:\\/\\/food\\-net124\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "134c02f81da3682c0f6e0e39a493cafec628f5c31d19cce3d78aeee7ab3bb73f", + "regex": "." + }, + { + "hash": "eab1fbeae3206a2cfe060865df088a9b1659b1f08da26171666c323e36e76e71", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ca0b87c139279d2d4d513906dd7a63d4c0a744ee8c774c05003a8d03c6646f82", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "99a6ca9ab5898ad9961aa3184a143e630da0e85a9e5e367ac15378682b18073d", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "05562847dfd224a25dedcbb935129ae49c4a16b81c2ef9499dc2c609a048b654", + "regex": "(?i)^https?\\:\\/\\/pub\\-778c9922a88c4d2c839b01025172bb0b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3307e0d514fa41090f116b9be053f5248a362bbf68ce187364113c850eb977fb", + "regex": "(?i)^https?\\:\\/\\/sdaroblox1432\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f0645640050a368e1fd56f541531873a28639127b842aaca488662c4d28f47f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938c20de05\\-178b04f0\\-f34a\\-4983\\-a452\\-a4c16b2b724f\\-000000[\\/\\\\]+9kLoiaX8f7VeTzga7\\-xI496Da3g\\=402(?:\\?|$)" + }, + { + "hash": "01d6f7bf4ee2bdcce237baf44220800eefc0bb32ce220c2b9dd34097b9d74518", + "regex": "." + }, + { + "hash": "0dbb0f9f1fd62907b3892f9f999d5f200bbee6deeb74fbd4fe76e4af0144994b", + "regex": "(?i)^https?\\:\\/\\/instablog80\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6fab27254957f8b6017788d4aa0abdd1dc756cff22553b7b76fcc84457fc3fcb", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6a7d2f19a2708a4b34970f6b97fabd977f94c7dac666279fb99b2e114f078116", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghfgjfgjfgjfgj\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5346b52c704be322e7ee873f7ddbd422032482468aaeafa58ebfe70224fcbd31", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b20d1e1268f6cafb440b69aba0a080bca63c7ea697e1c116898637f75608f1d5", + "regex": "." + }, + { + "hash": "7a8005c1a846dc2815f75cd3054f008fce38fc3d44c276679ff2ba3dd02a82aa", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "b6c1b5f9a56c320867db957a9029a03fff4f0db994890e7701d880400ae8f7ad", + "regex": "(?i)^https?\\:\\/\\/d4s54g\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5da25293148e8b24309d2b9503f1306844d25f8ec9c46caf82802023d9bc2407", + "regex": "(?i)^https?\\:\\/\\/fhghfgjfgjgfjgfjgfjgfjgfjgf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1c891bd0216042fe2d635b6edc8967d238b355ed2f730df2824498e9f2abfa55", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b0df5f4669fe825e177583332676607bbbac8e2b201dcb9220364e12932d3bcb", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhfdhdfhhdfhfdh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ec1cb93a1b27c98f722e9db3581bda4c3fcc7e667819cb69f48e1a85c9cc92c8", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6e682d606544e4ac1c7f46fb552e0b06cb45bfde8539bc83099636bcddf482ea", + "regex": "(?i)^https?\\:\\/\\/yourdiettk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "373415060badfd2e80ed4c568238fd7c9b9ec5ceaa5063e345c8ee7bab94f496", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d4d1a80e57fee7d5d3044c5d41a9bb59ef3660f01b4258bead89f6673d86741e", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0e95f9c5593a63dda2c807af6864dc73a5916deb836e873ef9589f53af2f1321", + "regex": "." + }, + { + "hash": "e3b2e56e103d7489f7deb3a8dd61472f927e7296e96fc5b9f13a3cd4d4e2e311", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7a4403dada793226f5828d1132ac45a371ea4210926793565c2b23e1dcc6d21a", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5aec08948d19bc2350578231a76b412d8dd45e310a51cd7ee09493e5ec45c252", + "regex": "." + }, + { + "hash": "c6cfbdfdb45283de882f5904cabb2f62d0ce48948027fd0a3240644c53dcdddf", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "02804e0d02fa3dd2a2bb39da726fbbaf13b805631cfb6c60783ce23d879160af", + "regex": "(?i)^https?\\:\\/\\/barxaswebshotuofr\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "62e50672ffbc9204be3c71aad1f00cb7b248d5bad20e104d0a2119cae2c4ee1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9e3fd(?:\\?|$)" + }, + { + "hash": "f8034fe121bea5f588905c6386f4ef14572e6dc713bd41d864eb1b26dfdc6dee", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjhgfjgfjgfjf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "042d3bd001ba299405d161414513e91e12c2dae0f44043a71f13c56de41f7c64", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&o\\=d433\\&label\\=xg12$" + }, + { + "hash": "fb5ec972b3ff648002e2a8689c62087c575d9b4a4c3f14382b6884318f017b48", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5ff2f1c4c916955c82a45797b749823fe6054946a1067e9a8f0c065719c8e266", + "regex": "(?i)^https?\\:\\/\\/fsgfdhdfhdfhdfghfgdfgjfgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3ec9df637e1f121fd014c8eb4c44186d3a82dd26020f0669830017a1be20718f", + "regex": "." + }, + { + "hash": "d35d9c282cdebf40d684b3c84ca58913899f15d8708717b53e479047485fe874", + "regex": "(?i)^https?\\:\\/\\/robloxfreem\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4392803a65be0170c6234aa32e32b402d33e012018e2426cf77b95694f0716e6", + "regex": "(?i)^https?\\:\\/\\/gigglesflyingnvny\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d2bd9e0de2650d137081f17186290258cfaccf2da046a3e71481a7d23ad08bbb", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ab6574bfebf57be3477e09975c5c6e23fe2e438b4dbe1a258551b42392e4c6de", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "52e1b2ca0ecadaaa28a7e303b94615ed05b64799544d832ac6608f46b7434922", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3b5c8d0e83ce34ee9501f48797a02c7d237d70c27aa454d7c03393b05f9a6c66", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "337c30f3a1b7d3af70ff767adc015a149ceec38ef226838d2bde1e5610f57b06", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e5ef8b9c917f0c0b78ad0b647d100eae08bd9ff92b3dae17c8bf00a82b6decc8", + "regex": "(?i)^https?\\:\\/\\/promo\\-blackfriday\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "573fb7940a375e4b0f959a985d9efcae1d02ac9fbc58ff89495008a044be1a7c", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "919dc852a498d0d0670c045dab7f0a9039eaf444a813da488bbb0d60a5c32419", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a1a9593162616482a57329106e04e464ab05c5097bd5bcb598da2f6a336305fb", + "regex": "(?i)^https?\\:\\/\\/dfhgfdhfgjfgjfgjfgjgjf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "812bfe8060cfe4585f6b05ce705c99c8d53dd01c90ff0fa154be631a399b9ae1", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e4f36358f8ba2e268c2faa775c3812cc109409501c6702a0011e0775ec758e18", + "regex": "(?i)^https?\\:\\/\\/hhscsusihvhusjwiwowbsksnsdhxihw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "cf6fed6ba0b2594ab8846c76bce87e29a9a373f92a97e0aaea30b8bba231d401", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5bb89ca62ff504209f156a18db623cae8c024be6e424afeda6732906f9858bc6", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3176965ac5735f84aa989da8e61d77b6e8a069c8c4c79e7de2bdb79dc2780309", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+amunso(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "804c83de46be8deeac7a65d1dc63092be02009ade05110d0c5d743456b07ec98", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "593be470e6d3323a1cad4c1d0f31f89d6959533ad1fa57eb577045e7aabb7d3a", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "cf3139fac4623a6caed2bcec5722deaa9bad1166d581fdc081f7f4d58f7f6061", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9ccd7eb9d0f8c7c75392fdf92047284f874e65b195bec36dfeffa050e7ebd75c", + "regex": "(?i)^https?\\:\\/\\/foodfusionpk\\-rfgdscprogram\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9d8c902ea831408c4ae43ea40451055e0a301f854a63c4e4292ee33dbbbe9634", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjhgfjgfjgfjf\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "85fc9ff062904f5a335d27ddfaac7e400d3cc10591ec8abf94d58a45f03cb820", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7b5df79a9f7a260b8dd534e99ecf0b29701d02d8be14a7349c11d05375a41b76", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f22242c470f24260bc015c289a47319c367a099aede6d2c8894a74e482a70552", + "regex": "(?i)^https?\\:\\/\\/dbnsn\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a12e4b88a7b2d55f73884158019e0c785e1556af5eb3db77534100766c1bede3", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjhgfjgfjgfjf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8f9f25c36bd52eb4b62437155b017de0ff2b2c4ede659aa26a2a38a70df179c3", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "27237a0c65ae749864c18d917205d04d1b90a9ebe774e7d0f472ba0cbc6a6d26", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "58ff45b816753a5e7358764375573d7278ffef06e8a9380579185f025ced4fda", + "regex": "(?i)^https?\\:\\/\\/goodprimefoodcookingcontest\\-vote\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8593ef8e601f58775c638640aa87b177a56c20ce80c9058bea19d3675b61d7bc", + "regex": "(?i)^https?\\:\\/\\/personaeastlink\\-beab2839\\-9af62c82aada24\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "789bf1dcb5171e4fde33c5cb714a27e554dd51e8ea69392006d927cc26d08f8b", + "regex": "(?i)^https?\\:\\/\\/federicojzq\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4ba400b5b6a23bd2805b7a5ea4b7987c9ecc6f8c2152d1b843ee694fe8d6773f", + "regex": "." + }, + { + "hash": "6edb6da4f5a4e147795ab3e6419eafebbfe5a58b190a73de418e8e41c89deb58", + "regex": "(?i)^https?\\:\\/\\/dfgfdhfdhdhdfhdhfdhhfd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&o\\=d433\\&label\\=se22$" + }, + { + "hash": "b81fa48135d07c4516fddfb8ab325bbb44129b5f8707879f742a9c5576bf6443", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "12ae3b9edf1eb1a8d78657433aa39a1910770980c257ac3660ac0aa4a4989816", + "regex": "(?i)^https?\\:\\/\\/nicetv\\-45\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5013b0d6ed37fa3cbe67d618eed80ea249ed455ad21a5d7a3dc6ea305f463ec0", + "regex": "(?i)^https?\\:\\/\\/goodprimefoodcookingcontest\\-vote\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f670a45b432abb4da3319cee6450f1ccb11e57e71cc1e39d7b878c55ff527120", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "756763e3ab7490481cb1c3f7f9203ff0c421b87cfdfa23c2ca7ca144cb5312ef", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "172605701e875168722cf988cfa29ad222a882c8658e92c582bbb677f949c690", + "regex": "(?i)^https?\\:\\/\\/dbnsn\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "95ad440162c2b6fba07d2586db0fa38b47d047cc30360df52fce8d6ca327d569", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "02edfb456db3ec9ab4156471b8306ddcb0bb60eb47ca6860d88f9dada3dff1ed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "4fb233fd6124932ed81413c53500975a2c10c3567034a3bf48350bce6302a18b", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a01e72b1307808e4082fa8d1ce2d2330289b3c6853f3b6967f6690409a1d5b75", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "19a05dce41de666238f5725b8d4f7b85b624d2a2dff5c2986bce973c777168e8", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "84e16a75d8a61cd4644b282056b04ce8504a1c90b7890f4fdb4d3c483d1c3315", + "regex": "(?i)^https?\\:\\/\\/yourdiettk\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "95b47f90035e805f4408e39248f652e28330498b29c31a80ae0a3d9e6f733250", + "regex": "(?i)^https?\\:\\/\\/sdfgdfhdfgdfgjfgjfgjfgj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "772002fa902e060c7f4ddf03b5215bbca659cf996664f476260d45edaa2706ad", + "regex": "(?i)^https?\\:\\/\\/cougar\\-en\\-ligne\\-gratuit\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6af2c1d8f6de0133bd1c6aae2f3d45c1b6704c666dcdade4a08bc21d5273db4e", + "regex": "(?i)^https?\\:\\/\\/sdaroblox1432\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "22d48cbe5c4d29a47784326cf8d24b9018332a25c40f71a7203369bc8d51db8c", + "regex": "." + }, + { + "hash": "5675f3bf2d952629a57bdc56b5aab1bca8ceb25b5092e5605ec53d557a763074", + "regex": "(?i)^https?\\:\\/\\/instablog80\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "efe6f1a01385b8fb1dfdebcf89a59bc12ab1a31727a6878f0660c143830f6ebf", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjfgjfggfgfjfgjfggfj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0fd5a507bac82e2f6f9f627972811cfd53bed523c30af98963a5bc11b66073a8", + "regex": "." + }, + { + "hash": "7093e4911063be02c58ded760bcde62b83a21005441a67531692b666770510dd", + "regex": "(?i)^https?\\:\\/\\/gjhfgjfgjfgjgjfjgfjgfjfgj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0da44ef44650c93e394c4feb5310819d240cb2cdd56b23d13f13fdabbf2260ba", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b07e8deb3119c58ebb8ae967abb7ec07f43de41dba7d94be54a91fa2f4ddaa9", + "regex": "(?i)^https?\\:\\/\\/eafc25reddem\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b8dcd0f326008970e9c6b6a7ed7e18679c577f8f87c898f3a5dc9c2d0d01c7c1", + "regex": "(?i)^https?\\:\\/\\/dbnsn\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "134c447e2ee073e2290846f486484f99ee7a84247b0bea8c6ae64f1719e1b036", + "regex": "(?i)^https?\\:\\/\\/supp0rt1\\-markettplace\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b55d1d223991f718ce862d2705b3a8119cf9cdb0dc767b6a54a9e92d5c7a1b2b", + "regex": "(?i)^https?\\:\\/\\/str98s\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b7163eee5159582fbeb57d923db11d89acb700af29f3ea09ea551d2bdf847bfb", + "regex": "(?i)^https?\\:\\/\\/onastrollshujc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "39f35f44f83bd862bebcf5fd0464fc1c0536c5a32c678858804b7f86b4919c3a", + "regex": "(?i)^https?\\:\\/\\/robloxfreem\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b32d0832d40ebfe5aedb7a2f94dd47d82e57126ec757db53902c9a406a7150bd", + "regex": "(?i)^https?\\:\\/\\/robloxfreem\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5e64c1867fcad66ae5a3191e11e778c95f8ac9fb8c67a8a40683afe1015a91a0", + "regex": "(?i)^https?\\:\\/\\/sdfgssddfasdf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "95d827545ea30d7b747b50bcc5bc1cf800b22ce212acb014adae36b02dd98dc2", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7854ed6c8a7824e04111e916048e1b35d1b621ffc802582c4a90cbce8f5d9a84", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "71ab5c7212a221ce6cbda037ddd9b7cb4422bbbe9d04a76de578d8677eb1bd34", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "c77ea212d567c7d7fe323e3191e11f16c2a379112ca71e569e9de7c288b65a7d", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5d2569e982ca26ddcf659839b55a2350fa87e7d38b644df200cf100021aba2ae", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "64f1cf1e8d63b478120ade4c31c9f1729808301356f3e60db445845362434966", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhfdhdfhhdfhfdh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "dab09c2b5aa1525befcdf14f44dac8a6646e8ceffe0a7d52e089b2d3f5ab68b8", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "47714d9256b5ea683605d53da4e1ab746909bd9b1dce82652897211fab9631ca", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3238f6b2dafac61c5535413de4aa85193335a9b22e3d876016d6ebaf3f503207", + "regex": "(?i)^https?\\:\\/\\/darkpalladinnwced\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4aa46b956ce5aeea4f9b47739f6c3ad0b331e64a87063d9e563c142348c30e8d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mon25" + }, + { + "hash": "50bd2cd741f99a96aceb94623f8934cb9b5c9ef0c16e69be4a62f379e6f76fff", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgjgfjfgjgf\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9c7e35bc94fe860467b97ce1b17062e7d4f0b898e8187b306bb70a9e19bbbfc5", + "regex": "(?i)^https?\\:\\/\\/sd11hs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e8fdc1255154b09ebe71dde2cf0983742e4589e2ba99b1cd4e1a52219196d48f", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8730aea13a196570d05559a17bd4336e1b07443b92d9aebd2f9bc841db695eb1", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7003da18f910e648c333425957c501e095d389c2a879ff14a59053e983ae09df", + "regex": "(?i)^https?\\:\\/\\/darkpalladinnwced\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "17e9ac0c16e8d4dcc10e3882ea1ddbd1eeda13a472eb92987df7376bc3c6aa7a", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "d243e2f4823bd431821fe04cdc42baf6a95ca850b1fb98f31c6a4918b6e81bda", + "regex": "." + }, + { + "hash": "0f011d5d708930e1ce4ff91b61a893958c9bc2742fd68d7b84c30917a6b8878b", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b0a45a5344d9fd120ef13c58942c3bd6bfaa4f100a1de7d33c9bb6f4deb8dee", + "regex": "(?i)^https?\\:\\/\\/dfhgfdhfgjfgjfgjfgjgjf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9fb242072658a54ecec439ac5226a266b860c9d43448b4859262e084fd3590ab", + "regex": "(?i)^https?\\:\\/\\/onastrollshujc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c5d3bdf01ac87cc72cd8763df223bc309bc87ddbeed06565fc5c45f3cf26463e", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7084ee338206bc6c5697ec7a4532cbe132154a3ecaeaf18c6baa564416dd2966", + "regex": "(?i)^https?\\:\\/\\/robloxfreem\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "640b41125968660abd142bdbf0115828c8a3f1cc8d25c12a3c884d13614b8d6d", + "regex": "(?i)^https?\\:\\/\\/fdndrsfdnbrr\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e5130fafd22b0a98fb9bf8efafa48dbe0e3373a91a6c990b70edaf87b6c39e1f", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "1e55ce0111609cb3b856a5ea4e8864147ce2bf898069147072059eabdb9309a3", + "regex": "." + }, + { + "hash": "e15813ff446d9c4b4aa6f82d4f268ce9133df72c23e65b4e3aa27c9d9636cd0c", + "regex": "." + }, + { + "hash": "c0fac8a909441f593630a95e25aad988a9e6eded30e05f3b5b6ec87d87093e8d", + "regex": "(?i)^https?\\:\\/\\/str98s\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9fc0f0129fe2aa977ca1e346e5990fd4dc47a36c27b1883fec649ec05158a5c3", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a61f183a255d33abcefc26fc82b29c975df2297e7df5aad449478b5112360556", + "regex": "." + }, + { + "hash": "22924ef5cf46bfe1d8038c12e4a59b43fcba016d6a4d5e14038f377e5ae5ef33", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a259fbc6a84bf0e01b7948e2ca12cf35d029e39a27cdef9218dd9a2fbbdada53", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7ba7eece8d1fbd4ce72afb36cdfa31d5453d543a8e97d1c76abacd20d43528d8", + "regex": "." + }, + { + "hash": "aa44f3432417d323ec9383a3699a20912a24ee6b6d49f2579e0f554597809d32", + "regex": "(?i)^https?\\:\\/\\/godsentannualcookingprogram\\-sc\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ad8570c0f39a1468f027d512d9a237b99d07bbc079ca1098a653a528cbd1b38e", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5fc502e42d7dd396b6feda80a35f296f98c5714afa534b14b95e9ed60133760e", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e4b6cc6927abd31392529969444253f9fc82a42b0c0e197f871140a27290dba7", + "regex": "." + }, + { + "hash": "d8e199aa0c134b25208eaa53ed81375ffb58c163fd19a33f46b32e3871829157", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c80e614c5398909fa774b064205bbd33e760b444ba5154c3528f5f3a9732ba2c", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "96ba04aabf3f75ceaf474f8359816a063066435a5ac65c38e4ab141a958d0fbc", + "regex": "." + }, + { + "hash": "b782ebe74fcfbf593441fbe848255f142ef1fb94f6e422d9ff91743eb446b104", + "regex": "(?i)^https?\\:\\/\\/sd11hs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "04080a7a772d63c3c2cadc41b453c794917e47642b34e3a00f05c6a1d78cfa23", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "036964a7d7af4ac8dbf113fb3f8c4531513070193ebc71cd35a311268fefde9e", + "regex": "(?i)^https?\\:\\/\\/bethovenogoffja\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a0545cc51f2d8f940786d2e7dbbcfeb139defff6dbbe7339c4f49aa3738e08b7", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "43c2de28a625d57add4cc79d4fa9cd5bfb02cc3f242656225712682189b2efb7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "66d433b210f93a578f4145cb83a9ba9194a5f448403d86337789e979ae76bc59", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9dbd09609c01c7eabf382970a964db6d2b3c416cebe126bcc274a5168b163515", + "regex": "(?i)^https?\\:\\/\\/d4s54g\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "60511b121dd0b23b3e849e83b595ae67cd212748ff48098149d9808c74e4d2cd", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0c01c639660394be41b13f557526760736a7d0b33c46657b73a1de999f7db5a2", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "163e04318836611dba503baf441081a9d0abc5bd6263cdc07c2c7f94ef0ec07e", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4d93cc396dc62e39856c79c0bb49f3dc9cb44ea38a1f3c229146a620fe115107", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2e5929675423d0560e3762f1abb858b9255b114accff6cd5b40293c281699db2", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5276da90a84381bcc903e70ab8020a7a86ea0e9722c4cea35db647f3ede40270", + "regex": "(?i)^https?\\:\\/\\/boresg\\.cyou(?:\\:(?:80|443))?[\\/\\\\]+en(?:\\?|$)" + }, + { + "hash": "baab06d98116194869f74c469467a7a94066cb675e257e67d66ec733b6d773b6", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c785aff993b9784a71fdafecc4bfbc778788f07770ea8c563ea9e1ac67e73cfc", + "regex": "." + }, + { + "hash": "841964877a006a522284408f82be45b5eaffb53fe9fe494ccc3b42f103e077b7", + "regex": "(?i)^https?\\:\\/\\/barxaswebshotuofr\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6c278cd5b6a6e56172542c279bec3acf090890a2ea97b86b8692fab8c1d6610f", + "regex": "." + }, + { + "hash": "825b26992705520d1194d17c9e5ebfde98fc7513965c0f2a38816e747c968f0f", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjjgfjfgjgfjgfj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5e7017448bd14334b468695a6c2ba67f4c90f23bcd6792d50e5e9dc6f6925468", + "regex": "(?i)^https?\\:\\/\\/godsentannualcookingprogram\\-sc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "df458211b18511e278dee61dc59e282ecda65563839983cd6be9b215c96d3074", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5957b61484c16e11b33b34666c8b39203f7ef90c9f60905897cf317aaff05488", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f214fa2fae2d5ccdd07fa11feb37f9a38353fee7f9a7c3c9c02973d2812b35b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1390ad2b97c221eeeccec6658ae66b9af58b6548bc76119d8425cd681d0c40a0", + "regex": "(?i)^https?\\:\\/\\/foodfusionpk\\-rfgdscprogram\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "24aac0677bbfaecbc93b64f8d6b6b4af3ab1cc843719c213493e657184f0ea44", + "regex": "(?i)^https?\\:\\/\\/nicetv\\-45\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5994b741610729b88fb3c8d13312dcb3938d2f42c9278dac218ca4c6ea22382a", + "regex": "(?i)^https?\\:\\/\\/wiwiwwiiwiwiwiwiwi\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1b27010ec1bdc0ea61fbc2e25b581e72f2138fdbf624332c5dfa90991e416b63", + "regex": "(?i)^https?\\:\\/\\/pub\\-4c83cc9b33974e039ea249e34af6b5d9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "597cf06231c76f57a6b165dfb48fbd7496634377b7c08421596119479c3c812b", + "regex": "(?i)^https?\\:\\/\\/darkpalladinnwced\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "dd4e8fe6dcd4e79428bff47f3e7ace8e07243b1e1d76ed2cfbcda1999acbd698", + "regex": "(?i)^https?\\:\\/\\/nicetv\\-45\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a4ded0306b4b628d68ba4644d163ce561bf004d3142a85bc79a2316455fd5c19", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ee68841034cd8a4d5c9aa24a2bf6665b888ef8f6e1c0e572c8d1a4f3794a439f", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontestant\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e558646af33f4c44b117d9df4c1cfd6547fa988c6f470a3a5abd568c598316bc", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "504dbcca066ce44850ec9d47928bdd627d355e6066f692148761df93c55c5184", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "26c48694502dce2d002c061792ebed82623643b3c80e3fbf7ac5c61221f6bfb7", + "regex": "(?i)^https?\\:\\/\\/sd11hs\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a729d042bc1375520bded59265ca8e74827203a2b29668fe49bfbceb92426caf", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5821df8d149a35832c22af364e8b0f19473e08796a2201fde733e3ee1dc1f15d", + "regex": "." + }, + { + "hash": "16c5de00fe53befc224b60a525d8064a6f937ae5550cd1d06f33ee26a0cb5d22", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "8f7a53ba25cfb3fae670751b66b3a80b9a69e3e446f959cc493bbe81f3a67a71", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "37a54341c6c393535cd094eeef4b4b286d7289fcc63d9b6e56c149d000b27d0f", + "regex": "." + }, + { + "hash": "a65d66f0b6a85a0bde69b0dc72932fe27d646e0cab9faf9204acfd85471b7924", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "c2cef51db6cc8946aa048fc5677c662fbcad17f2d886deaa85a2aa755b78381e", + "regex": "(?i)^https?\\:\\/\\/webcam\\-hot\\-gratuit\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "5779a3291287179c398351c41dbbc7e69c8d1c4eba74e996c9fa49bf1f200736", + "regex": "." + }, + { + "hash": "3f0a55f9bb8a73d5cdf6e7706cafc85714b09dc4b30f527d290c0f8585a58892", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7ebefe4315195104f998be545a1bd67698495e1cba0feb3c89e616c4300591c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-admin[\\/\\\\]+na(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "70de1e1581c8a28a9ec1b0130380daa5eac917d7d7c6b9593ccdeb613565d95b", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9c8ace01520fa9df4d7871dad2c8e4abba588b391747e2104e87027c694d1da1", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3d0ebf027a2ce7e6a624482196d0357c317424de3da2b5af8fab01b213a58c41", + "regex": "(?i)^https?\\:\\/\\/dfrndfr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "877d7b41333b09da012faf18e70dfdf9d78ae0325d2d17a6a51d3158b9c437ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+enlace(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "89a9f9fed4b7328dd88d0ba4bc0265760bdd099a234cbf1a796a159b987d358e", + "regex": "(?i)^https?\\:\\/\\/bethovenogoffja\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "f8957928f39dffab87969b1573f6e6ff20521b0fb9dd4a19fcec1a804731c202", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "135531e015e7cfb8792760953b811c4f4eecd500c8df5aff4f2fce6b428e4e11", + "regex": "(?i)^https?\\:\\/\\/dbnsn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "4cd819b441acc50aeec6f4fccea82acee445dc0f619ef46168567f1830a47ca1", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "279fe2dacac40103a85c3408f7e2bafa67d1ac566f9fe57a0d50dd2640c92492", + "regex": "." + }, + { + "hash": "cbcf593b70d8881695feb4a29a01d4139bc52936363fc246e9d83b1bc66b0046", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1754246a53cff79affa680079d938e6e64581c87dfc8ba0429855c65bd282dec", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "be4b47eb1e2f018ca7a382b0a652da4926db48d4bce4fb93587594253e16bd8a", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7d3559c3346e17b7fba3912cab9c9fd40d7a569ab59ca619dba76e2b5e5a117f", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "2d909ee8531a208258b65d095aa4674d5c426479e22a06eb05360723cfba6cf1", + "regex": "." + }, + { + "hash": "2839c3a6dab31e8dac8fe2eeb251e694f9edc9e28f821ac0e667faae4bf6af3c", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "0ed8659f12bfeec429a3b65ad9336714b97b20a9b4153d1b6db3192dee712f60", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "202537da5d89abb76b696199417364af02a941c7fafbb395ca2c1073a9be92b2", + "regex": "." + }, + { + "hash": "c80f978b1a6cfe1b903095a68e90f3f1b14e191ed761849c47160fa040472529", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjfgjfggfgfjfgjfggfj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "417802978c26cbcfd7f5428cc111f72a1cd41534b6b964833c3e19f7172f9723", + "regex": "." + }, + { + "hash": "59a69ad1f249778bfcdee389c97d93754b9addfe36178fb4590f9fdc4782c81a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a0be2d8fb99222a2f471580e73d393df416fdfc7c96b768565e57cc4c5af662b", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "bde71ecba59d5e516c1b5dd47179e62d970d109e688be47e828ecb0922938cc5", + "regex": "(?i)^https?\\:\\/\\/fhghfgjfgjgfjgfjgfjgfjgfjgf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "31c4a29f473d87d679c21eb57ac475db494c0c8cd323b9d59c10b7d2ee1fd5cb", + "regex": "(?i)^https?\\:\\/\\/bethovenogoffja\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "883251944bfc0b72ff5029d053ce4ec73c9b08aeeb401947ff76857eb735664d", + "regex": "." + }, + { + "hash": "94b6a6a3a48ed241f7eb7ed50b1419c513d4fbd74d5862b6a96fe9b055d13c4d", + "regex": "(?i)^https?\\:\\/\\/hhscsusihvhusjwiwowbsksnsdhxihw\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a6b7acc5824b3ba2cb59bf6f249c07216a5c223c2a1a93fb10d566cffb6b1dde", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+reqkya9naxqe\\.html(?:\\?|$)" + }, + { + "hash": "4a1ad4a18b3de5157dc3c856260ebd1fe4d606a1d59427ad2c6282a49b551df7", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1694c9817d17680933f73ad7a046abd6d451da7a100599d48f87181f428ab18c", + "regex": "(?i)^https?\\:\\/\\/dfghdfghfghjfgjfgjfgjfgj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "19abaa706d4e345d18a1417033699a8921ac9d3d986cbe8aeecb354b821ed9fc", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c133d83b4c19c9c1606b2be7d6d574acb49ae3a884fb8989d60b50a5fbaaf74c", + "regex": "." + }, + { + "hash": "65670e1c4205debc8a5add007e15a7276113ffb0587ab5d55ec36acdbb76bd76", + "regex": "(?i)^https?\\:\\/\\/dfhgfdhfgjfgjfgjfgjgjf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b1ffc69a276382c35818668232d5804fb4578eee17876bcbbbd988d2e3707ff9", + "regex": "(?i)^https?\\:\\/\\/sdrfnsrfn\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d896988fbc84ca7a00baa845db40b3bd6cb66d2ed528a1b763daa75dbfbf4ee0", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c579474dcf7b15105e55ccb39e8fff31eb8e8e9d8764f3eda319c8a8bd173c18", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a85e639fe18772eaeb0b6efa32107d342b10706595ca0874055849bc2607f565", + "regex": "(?i)^https?\\:\\/\\/sgsdfghdfhfdhdfhfdhd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "daa03ac3874ac29180d2507615a222020c490bb0926da7eb950ed1cf586e0701", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6a677ee88fb4063b1bd9fabc16b039faeb78af5a97bbf0e30e33bcf0fdcefa36", + "regex": "." + }, + { + "hash": "bdc82a5057892dfe29ea3f484c0781e9828224d11e8b6780da9cf941e5db9d6d", + "regex": "." + }, + { + "hash": "8391ee276ef22558d06b07975d73b2ca534627853339b71f067b96d8d7c3ae69", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "63ad99cfc3e28f7ce0d0f93aa44035896813b612000ebddcb1258d064657671a", + "regex": "." + }, + { + "hash": "fc98e5678ddd2139fdc4cff0fef32ad78cdb1eeeb952d848a52b837569dc6702", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "14f208b3661add3d44a127c31ecd6d652d58fcbf8c5d481cb10b72ac9c7c9904", + "regex": "(?i)^https?\\:\\/\\/advertising\\-case\\-id38211\\.d34jb5fdswei8n\\.amplifyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f68ad87a934950747c720ad9e9ddde2d1ef7d4d16309ab0f2a33d06c717dd862", + "regex": "." + }, + { + "hash": "7784e3d56727f229717ab6bbf3f461787bc6b758b904c52d69873c52f447ab2f", + "regex": "." + }, + { + "hash": "7b869d85c957b8f0f1e84e560970bc888102cb6d7f39547ce0fd3793c0dc5da8", + "regex": "(?i)^https?\\:\\/\\/godsentannualcookingprogram\\-sc\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "0ce0d31bd3c723126fe3b91ab6f2df5ab09cd032cecd4b2d62ee7e523258bb7d", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9d506538a818695a5a662d596340294456bb69c8680d04da36e038fcec624ca7", + "regex": "." + }, + { + "hash": "0f71c738bb2ba9485ef20ac3d027d8cf0159c4945e659424b7b8dad262c9b6c0", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4b251553e25486278c2ba3c7e623624f90fa968b757e7580b77126706fcbe65f", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgjgfjfgjgf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0dcaf7f3ed9cc7cbb6b1235aad9af408792be455e9bb0d9bccc9e16c641c88a0", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d0a9994b35bdba680a08e081bda896207bba0c75020c03075d3951d3cd1c3a8a", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4a7c59ed109a205d878e28f01995c4633a0bd8265c4c5f18d437f6227a60ec57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+plok\\.php(?:\\?|$)" + }, + { + "hash": "f38006b30b947a1cb18f1164a4f9baacbd1f26653195557c4cc8c6b023cbe7b6", + "regex": "." + }, + { + "hash": "fa01b2fed04a8cc161194fd8d3773c6ff8d534d10531985cf151240f88423b82", + "regex": "(?i)^https?\\:\\/\\/yourdiettk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6ea8aa409d136c000c7034e72bfa49cfce785f49d9c80ec015b82abbd71195d9", + "regex": "." + }, + { + "hash": "348cf68dc2e3b2ed7baeea157b8ced98da502d61142fa5226464c3a393f68327", + "regex": "(?i)^https?\\:\\/\\/tastethegreatnessofgoodfood\\-dc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "f2222d57cbeab37517a1f4d5bd5d1e24fcca2c17fab78d52a98f2ebdada39795", + "regex": "(?i)^https?\\:\\/\\/pub\\-c0736a0841204ac1af9177f599abf301\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3bbd52824b1062f877c4940ea266ba0a6a3adea1ddb881a04677f0284b7d74ae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cc18b1428af66be3b666410f6379ce8424cb4d25ed01803c4c6ffc855fa6c795", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "a824998f5ace6b05603da0f19b4a6aefc2ecdaa47c5bf878c93b44c322a9ea41", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a37d7589b548a91fedae1665ac0a857deed8beaaf3b67a5035f8a8ae085bf4b6", + "regex": "(?i)^https?\\:\\/\\/sdrfnsrfn\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f9486b909a508f1842dfecaba913477f22f264b6040b672c9dcd88787c8be5f6", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7c4072feb4dafa64255acb9ae2092ed6a72e67e5a771b952b44ea91b042e1688", + "regex": "(?i)^https?\\:\\/\\/gromilaundefinedhnccgbl\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f825edf0df48293c85e09e06b7af16ee9932f0ac172d3dbaed65660e8dfc4c44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lu(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3311ad4ea4e01dda9049ceb1efb5b663668c957da6900bb641ad28bafd8b0ece", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "709ecba77b0d53ad3b8d34727a8ff76215f1d29cec64dbe6c6d298bec66bb096", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?v3[0-9]{4}\\.gamingcontrol\\.de(?:\\:(?:80|443))?[\\/\\\\]+kojin" + }, + { + "hash": "1e6000ce64f1e29c97511993464b29b3309f62d66369617ea1563cc37d980f11", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e83d6374cc3be31ee32765494692ea5d7389e6eb232069ffd95fc1299de258b4", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8be733f5376c071dda468f23d5e8bc8ffb51840096793edea7cd4642367b39ae", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3b6d9a800c2706d9086587be37c54846f3ac96a2d10f22e8636440e3c5e8b259", + "regex": "(?i)^https?\\:\\/\\/robloxfreem\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "82ce8d151015a6d70699c6868fd5120c44341175bd9dd756fce685f91ae889f5", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "082cd2e05d1eed87d130f02e8367d75e2e8e355d58f16b57687260a18dbd20d3", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "713be4362586bb71bc74bb406191a6700dd6943529cd036fc2c6bd084724ed1f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+uploads(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "35f8c30639fa8c032fd5afb64c69caf4178da0e7c6bf9034397902a6bcc63693", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a6ebdfbe1edf9490fc1911e811e35cba384794bf67a7e2e840f4d1a8b7e38b6c", + "regex": "(?i)^https?\\:\\/\\/solanadrainer\\.pages\\.dev(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "f1ae4adeec0a36e1513b55f8bff6127d7bee62ce23da2de73152b1081cfee371", + "regex": "(?i)^https?\\:\\/\\/dfhgfdhfgjfgjfgjfgjgjf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c961ce1411a454c006cb2cd9b2995b7568ac246e7e3ac0cb0185dfe7283fc188", + "regex": "." + }, + { + "hash": "858548af89d337cee14007d37ad21e00c5d4c5671d0e46f96c5c83f8d9cce4c6", + "regex": "(?i)^https?\\:\\/\\/darkpalladinnwced\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f75e59fb09245f189b86b4f5b5e8d25b600d396b777dbda486900372d2c22cc6", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6f6ee1d09fbb119997d2cd29205de297bc5b31973d24d59dfe7d8ad2b0a1bc59", + "regex": "(?i)^https?\\:\\/\\/str98s\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8bde378012d89db7882b74e234cc4c16a05a42afd2b521f24a3cbd0c055dcf86", + "regex": "." + }, + { + "hash": "8d475d61ca2540c05a102e5147add5e89f002a36359798038bdb34a35ab95a08", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fd43e7156f939d8e4b2f08f3d550a31cc7e1fb5a2e46c821cdd6e85ff1a0bac7", + "regex": "." + }, + { + "hash": "f789c56001f0e5e8087222c9ec0d42d386b31d6cdca670363897dd1215b36ab9", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "21a4aecd31ca73d084f66ba828654eb73510a54048b7189abee5398beee879e4", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c913ef6e3afb08909cbc131938d28ad4980c874ee3484a0af70cc65363481239", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "ea285217c6e8d9177adbdc0b5e8cbea62d1657942db5d357befa496945378a53", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjfgjfgjfgj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "6183fb4b9674221dff94413b42262bcd7f8a27778424455d74f61a7f4165fbdb", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e8fbbe8312ddc167831318e8ca8902fa3590a7480ec3d62e4b3b632c104862a1", + "regex": "(?i)^https?\\:\\/\\/hhscsusihvhusjwiwowbsksnsdhxihw\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e3345d24d41e5687b3ba83ddcf0b64bc5876cacca292d6ea3c2d36c93cc0722b", + "regex": "(?i)^https?\\:\\/\\/sdaroblox1432\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fee1151d0c1f3d13a9d394a7a50ab3e87aa687cdf4c6a1acbbb053faf7f158a5", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontestant\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "96f2fb87e90d391628576f0ed58d5248f831bb3230de633a607197a62fbf3f3e", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f6d76c1ee86977238671896374aeaaac366eb72ba7050eea575dcbef53fabff3", + "regex": "." + }, + { + "hash": "3734e93fa55c61c97d973e6ed4e31eb54bde1e94bf81e6c8542f0832b317d079", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e522c199f8aa50873a060579b04d4967014cf701fde141f7234f682b0e35e1dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info\\?u\\=b42384$" + }, + { + "hash": "09b3dc28ef14c4200f44c7a71a3b8c066f53b7102a6d232c1c0ece940c306e61", + "regex": "(?i)^https?\\:\\/\\/wiwiwwiiwiwiwiwiwi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b46e2a60932ec5465fbc61bac97b7142c09a27b7099396651195d6f7c98a1c3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business\\-2fa\\.php(?:\\?|$)" + }, + { + "hash": "78d52cd0ca367f027cf30f0267fc5f4eb309c0d9019ca5350906298fb0615dff", + "regex": "(?i)^https?\\:\\/\\/dfhgfdhfgjfgjfgjfgjgjf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3ee7df5d4fa12744a2993199fda582a2629007b36294908a2c2bacca68cdf1d3", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7d47b52ed188c5973f2c72f9389132806eeabce42bb5e9df4b0f6bec70d08cd4", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "8b66021775bf3a9b4207557e8783f19055d9d73f75e6f0b40658227f216fa2ca", + "regex": "." + }, + { + "hash": "dd3a34efdee78eb2f3b9713868d658ef51a3d9f0e507eaddd13cf717e83cdfcb", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "acb5515451e592d0defdca4a1ca85cbcf720a49bb659e558079dc4ffee9e5ab2", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5adf02542b7496ff840f06de69c34dd32bdfaf921ff2f77562cc38fa2eefc1b7", + "regex": "(?i)^https?\\:\\/\\/home\\-102750\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "184cd8bdd36580774423089ffecc1be9cc431b1674a7636567e5ee6300ec0939", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "01a591921c45ac35e55bb5ec48bf1015f04b3424ed48e0f7e22e4dc5e20a9867", + "regex": "(?i)^https?\\:\\/\\/dfgfdhfdhdhdfhdhfdhhfd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4b250e22464e201fa786ea90442925eefbf50d00fa94bfca78bc91e03b8f96a1", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ee555afedf701bfccdcfc6abeecd616a37a09e1bff169c0e01cfd1fa906277fa", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "bc46febf51fbe2d7c08e57ab046aef01dd2c9ac8e37a58876d6a0dfca45b2943", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+true(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c8351fc6a8ed449bba10bb0ee5a98995d5e87a18a1c7adcb6e56dd98625a22ee", + "regex": "(?i)^https?\\:\\/\\/pushglamorouskbzoml\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "eda531b2d0762216b30db008820a2c94181bb6de760d279ba326fde7ea66eae1", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "060f0b2fe7fdabda308ac81c5a189affe35dcd5b51b6dfae81881123e683e267", + "regex": "(?i)^https?\\:\\/\\/godsentannualcookingprogram\\-sc\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b3b0cff1173aff87af41cd0e4aefb8974b76194cd4d82606825a9d6df4d74915", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "556c471c8d529105966e0d337cc4025f49b891728b5074f3da0850f7188ffc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8147668a40b1c52317a70e8ddffa8b83da361dc9dbe3b022cc65547a133424bd", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7447afbabe49fdb5b55acc534b7f05795bb09627f6226ad0f4795124e907820d", + "regex": "." + }, + { + "hash": "5adf6fa913834e3bb5d54e8cbbece061405c5f554d1b6b43b944b1b0eb3a721e", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "13ec6b091531910d401208059271b598e412c65887b941258f3f5c87c1d88d6b", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0e6ac9e2913a5b593d41789a7941a8ed4ed2c64b76802ddbadaabce18a52b668", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9196d11a986b8d3f3ee1075c0e5d426413e5f036612c5a30f4f08e06273d75a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "4443952df85c9926546a8d7e1d21b7e1a0767eb5a422ca060073408fe63b7f29", + "regex": "(?i)^https?\\:\\/\\/whitedevilo1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "13d2f1a2193119a262625208f3dfb8097a98960ec934962d1e110a9a8f0f8df1", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4f55041ffd96ce6883d998dad63b709cc94533bb1eed58f754f83039fd0cb9be", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjgffjfgjgjfjf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5675d43b611a34d5e1dd19ecc5bdf268427f440c970cbc69a13f426465505e55", + "regex": "(?i)^https?\\:\\/\\/fhghfgjfgjgfjgfjgfjgfjgfjgf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f3696860040711468f0933b1e77c54c59587e9786676d8ad67a774476878af36", + "regex": "(?i)^https?\\:\\/\\/sdrfnsrfn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "71534c38b2df6daa745d04781e4bb12b96582e45b6679716bad4a20de5cfcd50", + "regex": "(?i)^https?\\:\\/\\/dfgdfjfdhjgfjfjgfjjfj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "7924c7dcbb6afa02ee03ff8b49a6c4d4ebcdce474c1bf15cf40080e5ba13a317", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0c0e0b0f1718d2898c1fbbcd1eb32c8678392711896b076abea732feaee0cdd8", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "23306d3fe936225c6440865e81ac4da0ae124f0e495bcf007824e83cef2dcbc5", + "regex": "." + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938c71dc5f\\-2f21a837\\-9028\\-4f25\\-9af7\\-0d5308542499\\-000000[\\/\\\\]+ydgNNB9MzoC51SYe7bjDMknHU0Y\\=402(?:\\?|$)" + }, + { + "hash": "30a269fff86e6551e92d680ae25d50e04fe230f81010c7e96b25a7793e2d30dc", + "regex": "." + }, + { + "hash": "378bdb5c872d932fd7407ccce1e163e29ac4bd436673843bdd935f8c84b61126", + "regex": "(?i)^https?\\:\\/\\/dfgfdhfdhdhdfhdhfdhhfd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "62825adf4e735646a7f77959b86bb52f4337000a27c45490f2b8ac89757521e7", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "70845204f724022854693fbba0cc8236e9ea85d7543ee67623c1189ede891fa6", + "regex": "(?i)^https?\\:\\/\\/sgsdfghdfhfdhdfhfdhd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cfc847f8e48d5ba9e7cf2e6edca360b6fa160ac1cf0e3dc34e5e1467f347b3f6", + "regex": "(?i)^https?\\:\\/\\/darkpalladinnwced\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9ab1e4fce03a9d2b11322c23bb8c20cb4c830d1fb26831a4032af9e9dc1745e2", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfhdfhfghjfgjfgjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "70145615bef1bfbfea19f5a769eab5fee0d2a845a0f942cc2616450557791fe3", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e5241462c22f769451766bf72956dc8cc90ced96df1dac5bebb87e7bf1c02efc", + "regex": "(?i)^https?\\:\\/\\/sencorplaex\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c742a848a5549ab432ec576f33f76ef1567626401b8e5211a6661a9de687f7be", + "regex": "." + }, + { + "hash": "a1b33c24f0ba62ad5adacb0e66ae135f9dda23b48654f51d8136fd0d40ae9885", + "regex": "(?i)^https?\\:\\/\\/misterbigbadeycuvtbc\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cc8aa1dff7686333c245d3f517c4bd6bfbb1a07feb172997ccd75bd048c9e720", + "regex": "(?i)^https?\\:\\/\\/rhbhrb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e4f224e0572415070d4ed595235f777e0c266b4f99aba49ff4ceed1275dbfbbb", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0d2bf45dc812616a485b58bbf5e929329a825367f92d3a06a5f136628d2bdde9", + "regex": "." + }, + { + "hash": "c74264c950f1d6047cc7590d4d57cf39e111a1a683a3a19e8202c4e58a51c1d8", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "44a9dc18cb5f3a0d5a70ca1800ebfc8cdfbc6dbd4409be49a72eda815f8222d5", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8cf7f39aa28c3501e8dc8bcbeb153e29285d0aa01e7e30cb47066aeb9dbaf040", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "813377e319e74ecae08c615703a0f3891e180c461961aa0e96708e089e2f78e8", + "regex": "(?i)^https?\\:\\/\\/pub\\-77f4fe956e5843c2a192caa870bd4a0d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "093a9dbf4ff50958eb5dece5ae00207fb5e259e7376171b6ce36534d88b100c0", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "15046c394baf23111a4edf43c220c2ceba033f2aa752653fea659033b105c0dd", + "regex": "(?i)^https?\\:\\/\\/bethovenogoffja\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "3b905d0aa21767110fcad3b0bd677d9c50d8b981e01d33212855cf3ed3069218", + "regex": "." + }, + { + "hash": "364dcf113eaf3d08c94c04599e5c77ea0ded4217cf385f46820010a3a537cdef", + "regex": "(?i)^https?\\:\\/\\/goodnetworkingfoodi\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "84ea378ee4d95df8bdefab1fd306b45ef71538bb33318e5664a285d3c3a43d50", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjhgfjgfjgfjf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5a3158fd96c34d6ddc4fc8c0caf260de3b78093ba8a79f076b27508621fa152b", + "regex": "(?i)^https?\\:\\/\\/goodwillfoodnetworkcontestantpage\\-sc\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5b002038f79b33ed8d7335f2fcaaad873149e5187361704eab58f0bc01f136d5", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d016c9c7fc1e3d0d2870caaaa9cef55b99d200dfc7020ba7c95c0c3c018cacb8", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c5a4d180ef70dfc4ffdd109d97ab107b9c4436b8db2abf4e53c3758b9e237e77", + "regex": "(?i)^https?\\:\\/\\/sd154z\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "adb11925b3d9e2061c67c12fa526056e2d694708df893126d67975cdb5bcdd7d", + "regex": "." + }, + { + "hash": "a44500c640586fdca74b9666c87ae0033bf68c0fb1069983c0bb460f7f67283b", + "regex": "(?i)^https?\\:\\/\\/fdndrsfdnbrr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "60fc663f59ec40e3cce7f95780ce7525af8d1d11d4905c9e966634e1b0a91f87", + "regex": "(?i)^https?\\:\\/\\/gigglesflyingnvny\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "17265a184d12b0d5a9f299125a9819fc36036eb1e795ce83d8ccd863ef59d3df", + "regex": "(?i)^https?\\:\\/\\/login\\-screen\\-100155\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "97d5360f23933e1c991fdb8b0c3a786840563d1671cbf54d9b777da12b4b59ca", + "regex": "(?i)^https?\\:\\/\\/dfgdfjfdhjgfjfjgfjjfj\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2fe885a06d4d740d89a6560eb29ede22e631d17117cbed489f153e4878e5dc97", + "regex": "(?i)^https?\\:\\/\\/megacraftgreenjjzpc\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b46e2a60932ec5465fbc61bac97b7142c09a27b7099396651195d6f7c98a1c3a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business(?:\\?|$)" + }, + { + "hash": "c162d7d24d57247f0275322bef518af2f5d8d9454a48a884872f049cf615a22d", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "fa9a2116713ba5621a04d950cbf15e1e2cf162d5c7dd47bb58b71c10bfd29891", + "regex": "(?i)^https?\\:\\/\\/sgsdfghdfhfdhdfhfdhd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "66fbd114c4cc02e4d8b1b4618fbea9f1ed570d586780a41eb8b3d869b250b88b", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "556c471c8d529105966e0d337cc4025f49b891728b5074f3da0850f7188ffc54", + "regex": "(?i)^https?\\:\\/\\/asminutos\\.rest(?:\\:(?:80|443))?[\\/\\\\]+ca(?:\\?|$)" + }, + { + "hash": "b4e16ec1cc69ececb370fc33867b7d930f28dffb02bd91d8d30b19e19c82822e", + "regex": "." + }, + { + "hash": "8d3ba485cb75f331e8b3e9db753bf6a1625d753bad4e35d120deb41a49eb44be", + "regex": "(?i)^https?\\:\\/\\/dfrndfr\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "bec4a995c26f4d8d195a7b6cd1d65d9c12c5d562a351f522f698e363dadf6ed9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+555mm\\.html(?:\\?|$)" + }, + { + "hash": "07d40ea1cb66d396dd90b2038b266acea8ce488ef79c95f0c18ba3d1b0fc04ed", + "regex": "(?i)^https?\\:\\/\\/gromilaundefinedhnccgbl\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "829ecd4ffb1685647fee74a30956fd32e0b02de55a760cab48c3cf0d6c47e2bd", + "regex": "." + }, + { + "hash": "9c5760ad444aa18a66bf1b908da80d732999d09c6d607200d4928859786c0bf7", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "081b01d19b7164ff2305f5dcc5fe82e9a97ca8ff87a79eaf93092244a39c304a", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfghjfguhjfgfgjfg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9a35fbe3b59c06fce4462d35d9c68791b9e0c759ee0b599d938b800a4c66d3ca", + "regex": "(?i)^https?\\:\\/\\/bafybeic6tpxc323kuqr637yoawx2rqgcpa5dl3kdj5kwqgixm25os4fzm4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "a41120e82a5e6796fa8da602ee8bd07534be451a7fceaa6e987ea50d13268dd0", + "regex": "(?i)^https?\\:\\/\\/meta\\-maskl0igns\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "cfddda6183c080e9976fae8f941e20041ffce98e377921567c45424d484bbe8e", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "8a1bad18f78684533512822a418a5072eb5e504f3310b946e6ce3705ec6c7ccf", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a1949c1ce86ef940430431830b2dd0da820b5ba7a225580bed5171c0db659f7a", + "regex": "(?i)^https?\\:\\/\\/yourdiettk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7ccf78ed9e12446dcd6cc9f3537ceb0f00b0e9f121fb24325f7d0e147e73c0df", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "946991d16cc38ba9091c9f0e9f057b5b71d4ae4d44da07ef056d87b768a41268", + "regex": "(?i)^https?\\:\\/\\/gigglesflyingnvny\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cddaa676338e3900c8184641a8a50553cf5589b02efdda7f114e730f3f5266d0", + "regex": "(?i)^https?\\:\\/\\/no42igbinoviastreet\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "fd1c356f5eeb6afbed397df3ba511c811083774cc9aa353ecc568527cf7b2834", + "regex": "." + }, + { + "hash": "f069469c9c6b320e5550a7c6d276bf3e6fd88fb6d1a6e8ecfc36412163f6a407", + "regex": "(?i)^https?\\:\\/\\/sgsdfghdfhfdhdfhfdhd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "3fd4a52c0fa55e1be6139f81dc21f3662e6281711bc1409310cda32915fb3f6f", + "regex": "." + }, + { + "hash": "f0645640050a368e1fd56f541531873a28639127b842aaca488662c4d28f47f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938c71dc5f\\-2f21a837\\-9028\\-4f25\\-9af7\\-0d5308542499\\-000000[\\/\\\\]+ydgNNB9MzoC51SYe7bjDMknHU0Y\\=402(?:\\?|$)" + }, + { + "hash": "80ef73d7f4244c1007ebd486795ec5d5c8ce5fc7c56fde68456fa162d28b8365", + "regex": "(?i)^https?\\:\\/\\/instablog80\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "529564c545b986f4e66715bca0b7bc2f37611e8b2ddbf43a7f2a1efe37c00cc3", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ac6db155ce00ad38f80fc9c28e9c34e16ca60e6eb256cfd3b9b86c9b6f297447", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjfgjfggfgfjfgjfggfj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "05565de809effe601cd9a6839fed8a031ceffee90830141c1048917a260d2b92", + "regex": "(?i)^https?\\:\\/\\/food\\-net124\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9f8806131ac1895569e9aad527ce0be42319c653d274902891ab3f9f7d528c2a", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "26265759e0e12a79ded819caf00c43b9a8dcf088be130d343ae2c2312e1fbb6c", + "regex": "." + }, + { + "hash": "3812f2d4e9cebe69d10ecc9259a5e03d014254d3711fcb1f11fcf7e144c4eca8", + "regex": "." + }, + { + "hash": "2685eaf6355da867171539829315622da1a821624430a21f800a086d85bbbec8", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "29e54de5d33a386685f89763dd048b54e014cb9a8cbae01fc87fe1729c5c0762", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "69a0c7be190c197f8ed1f219f047a79b73d40851f0d484e206dc18a7964c525d", + "regex": "(?i)^https?\\:\\/\\/sdrfnsrfn\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3c6a850b2adecf62cd5e09a9d9bf45e829687624b90c811f36b6c46e66d67352", + "regex": "." + }, + { + "hash": "38377a7cca531dc2dd5ea53690b52a6d6c96e3286605dee085e5d54c18c99c6a", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "106ae2ae46f5aad018251e614d0727ac91d6b8cde6d1be2e0aae011b618a8944", + "regex": "(?i)^https?\\:\\/\\/wiwiwwiiwiwiwiwiwi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "daf12531748e3c4e70b54826480bddd80e65e42aa6872470a47f0e7a408087c7", + "regex": "(?i)^https?\\:\\/\\/rjbb2024\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "00e33f18ef59cb788c6e4399c3933636f4b78f4d561f80730289f6d2175cc049", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c7436c09bfb18317740466a7a55d8a6b776131f35662b9c62e89b8f56b154a0b", + "regex": "." + }, + { + "hash": "3ad8f470a2f42a383252dcb3d674ebfa2affe70e264b0beff24d27df44409c37", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d5519a646a7aae5d5e14cbcdda1ccf8c8bf15f3dc0cda5286041a98a816e538e", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhfdhdfhhdfhfdh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "44c6f03162c3a6ce1dddee6ed9e1ad9f4f5967a087f56df6a7e2a7c523fd24fb", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "856e9c22d7340e66ef84d31e56840d57f3cb8362db942fcfbc61b07be93a22c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99a9af6cf15e5516f11fffc4d6c9c6d9a1624502c4196846fa8651b1a3186387", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjhgfjgfjgfjf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "48350ea869efabe61f7a466b302c85f62b57cb12d9d21a8fedfa7698a021d7b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:\\?|$)" + }, + { + "hash": "bc6e712077c45815c77166174a650a7cd071a3701cb56c993f955114381f1f4b", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b0a528857422c6ff068b4a969e5b1dad686ee203cfc836256b212c66d3a70f39", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d15733a1da6cc7b7fbe63991b8e94850e1da4548c098811f17f2eb78aa49a15f", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6dfdc3ec6b5fec59fc75d59c02662a3e99f627aa10490ff735cce5b55da21225", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfghfgjfgjfgjfgj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "bcbf71b083e68e8bdaa0bdc4bce9db97951919cdd09a2c7ce81178a09ed85c1d", + "regex": "(?i)^https?\\:\\/\\/trackwsgc\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "275f42aaa318b8d55730555641bc25d697eda073508d8ffd12885a36432fac2a", + "regex": "(?i)^https?\\:\\/\\/pqiwujvz\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4d46561d5f8622fa9177720581eab0ba829a0ec0fcd4b6f14407d015c6d57603", + "regex": "." + }, + { + "hash": "2626d10df2488992e13cc84ec365d81deae245728d7acc14c2bdb92a06167b90", + "regex": "(?i)^https?\\:\\/\\/appealhere\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "4f40c72ef3ef1989e751456fb2731ed738ea3ea077afcff88f2d5c14fb425501", + "regex": "(?i)^https?\\:\\/\\/sdfgssddfasdf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e2cd3e7a29cfc682108a48c096e903120d11d58bf0d9fae6fb4813ceb99e9707", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dc5763761ad46c8a802ab6dd60ffd1892131d311781e225232f26b660d8f95aa", + "regex": "(?i)^https?\\:\\/\\/appealhere\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7f2e05614e18b688364b34f1c7c0665bbfe913cb2dccdf2d4d51335d003a8272", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "35af42f877995e7a8802a8aaf69c90d55139fe6b6f86845c7071dac68c8df7a0", + "regex": "(?i)^https?\\:\\/\\/robloxfreem\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6af3a97120c7fbcfd1296f41c285d959b755e261ba30f1c77d110f1c422d862e", + "regex": "(?i)^https?\\:\\/\\/eafc25reddem\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a33f19fcef10c3cc0ea6d457bab5596495cb4ae8a071fda437e46bb814f5081d", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5c1eb996e48a70a3abe1f6c8f66b361316c37ba66d4bba698ff6b447a1e2c826", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aa8f757939890423aded669c03c9ab2eb49de0784a0e954b1308092c572618b3", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontestant\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "f205339533f171cf3cb2087cfe15489c2de4685bf3a65c58161edfc3e854eea6", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjfgjfgjfgj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "5d793b4df99f654f26146617a2373606208a26b4db8f6d3d2dd7cb5d1df92cfd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6865a854b82f3ae11803e11d05c5c2b123b10e35bc54f45d209e87df871345ee", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfgjgffjfgjgjfjf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6a70cc3bcb9599677dd4fd4afa7da65c66dbb01b6faf060303a91c7fa7a3d89a", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a4b250ddce80bb852645927469b17b7fa8868d0b91ab7af2fdf4d2510a093c2b", + "regex": "(?i)^https?\\:\\/\\/godsentannualcookingprogram\\-sc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b62e17b734fd72908751ba3d23073700a636629b1fe3d60244e6d925c520b742", + "regex": "(?i)^https?\\:\\/\\/dfgdfhdfhfdhdfhhdfhfdh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "82f00f7d73e15390b381d35dbd02004881ec99f9e114689f6caa79c4ac723143", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "27282e186aa64f439edc3ecfb32c6af30794dfb17f67710747741b7317525cef", + "regex": "." + }, + { + "hash": "5a3657da75630a9b2eb669df277dc5175de1be89189d87f127e9526dbe14348a", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a7dab57b7235d450a3648fe50ffb89fbb6b41bc8782d8a63ebbf4011f7721080", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "99f4af4bef683ead517875a28e358761249a08a8ea7340671b1d36a53855c9d8", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "75c00b276c74f79ba0f20364633de673459e1d17dfef68f196270a08c8b034d6", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b41146cac8e514430b6344821ed1a10322f9f46e6d7d8cd4f7d6802ad3cc631a", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3c235e5be46bc4394fe196923c2092722c2bf1e6a4a1fda536b66e9d1cfe79d4", + "regex": "(?i)^https?\\:\\/\\/barxaswebshotuofr\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "51d299efd2f24392502c600a797f8c226e01ed1ae0dfb62a8c1f5347c3af6137", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4cdb2353731b0cc05ff36f190435e2802c26a4510f5f62faecd5b352afeef885", + "regex": "(?i)^https?\\:\\/\\/hhscsusihvhusjwiwowbsksnsdhxihw\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "979c1ca5c741538c9aa70ce4ee04adadd6b900e708dd866f5b8930c2d415fa9e", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5e344eba8900193fc1b98f2298c04d0dbdf20c9fbe58d1db160ea4236ca6d8f4", + "regex": "(?i)^https?\\:\\/\\/drnrdftxn\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0f7ccec56fa00c8a6a7448a421d22cedac4a68eb08149674d619b8cfafc710ba", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "aa0965fc45c3ca9c288484ff15548487b540609d1b20df0ee808b795efded355", + "regex": "(?i)^https?\\:\\/\\/str98s\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "aee64fa3d9107ceeabbfe646cba4e959ec2cbe82c7530ebd8985a10db17023bb", + "regex": "." + }, + { + "hash": "f6d1b6e376822c60d737f5ec4ff816105162b05bffed9d86344d357a0ad23742", + "regex": "(?i)^https?\\:\\/\\/foodprogramnetwoek\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "354bd64ed20747890ad84442e023731dbd24dbda45d388b969f3df45e34d629c", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvbsdmftykalcaskcasmem\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2088dfb614700bf094c2a58cbb4f35578cae96f4105b70808295354b24e589c0", + "regex": "(?i)^https?\\:\\/\\/hfgjhgfjfgjgfjfgfjfgjfgjfjj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "406b7791cdb83a49d295aa64e8259c4fccc713d4b57c7f0b997691eb0203a75b", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6cadbfdf343001ebc28a8a7d7e11d40e0c99883799858246b90783fae2447170", + "regex": "(?i)^https?\\:\\/\\/vdvdsvfew\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d36dd9f11d0d117c63563c4ed2f692fb01487480afb423ea5505f7aafa817703", + "regex": "(?i)^https?\\:\\/\\/ghfjfgjfghkjghfkghghkhgkhg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1ba03737fe2438e12e349b735da3195b086e8755234886314ff9a30cb621a62b", + "regex": "(?i)^https?\\:\\/\\/dfghfgjfgjfgjjgfjfgjgfjgfj\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3af567bda869bbc2cf15a097398135ccb4e4c1a7c2317d96716cd6898d68b8b1", + "regex": "(?i)^https?\\:\\/\\/alert\\-pristine\\-computationalscience\\-qwertyuioipuyiotyu\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "dd9b386ee0876792d57c440443b0c0435a4656a4da62772f74f47c09f88e60e6", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9c8a168e7e1e42e2fcf4da793a6e3c153d3843bed46f5f2b7e90faaa104ee680", + "regex": "(?i)^https?\\:\\/\\/d54z7\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "098160b97d7080478ff4713a88f2d202f4e235583b499f752ea781bf6dca3b22", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjfgjfjkfjfgjfgjgfjgfj\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cc5c18985b00eae00ca693c95b60d91260cf49457892627dae6a0a8f1b643829", + "regex": "." + }, + { + "hash": "e5222215f9344b31eb59d2a178453e85e6115bb027c2844d3c120b999bd9d8de", + "regex": "(?i)^https?\\:\\/\\/fsgfdhdfhdfhdfghfgdfgjfgj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "87e23866e49bb9ff585f18eae0353241e62bdf86c52b87a0e7b3da7c69c3194c", + "regex": "(?i)^https?\\:\\/\\/sd11hs\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "27ebcf922e2524dfad1fa97f6af45246ead0010f5183eeb6b1c804c9de6aac44", + "regex": "." + }, + { + "hash": "0ce0e57ed26f73cfbe07531d06d270138878a28b252c64ff1f1429aa78422807", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgujfgjfgjfgjfgjgfj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4786db67f1546583f1b226920dbaedc1e1ab266750bb97814cbb7ac777f48e8b", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjfgjfgjfgj\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fa8cf6242016f416e74e8859326c561d8d848ac2c0c4ac606679883fc902d4cd", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cfe7a9662b311a72d14ff53256e573d0f88b471272893895dba44c723fa97962", + "regex": "(?i)^https?\\:\\/\\/annualfoodcookingcontestprogram\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1a1c2e703de220ba7bfaca8abf73d28bffd778a38b5e7ad5a69149614017ad57", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgjgfjfgjgf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "49571944fca3c7f2e44292e4a4c4b826283ef37b820aad2f6a877557ea541a8c", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgujfgjfgjfgjfgjgfj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f89b009e662c4e55c974b569c1db87083b6a7fa7c31c119fcf246887426faa6f", + "regex": "(?i)^https?\\:\\/\\/fhghfgjfgjgfjgfjgfjgfjgfjgf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6dfd3607955d7f06732b56554706805f78ddc7c41afc04bd23111e93020666ca", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2e4123e8469526790d5904592439d0d42d9a20c05fc7db8082adb193f3be2ae6", + "regex": "(?i)^https?\\:\\/\\/dfhfgjfgjfgjfgjgfjfjfgjgfj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "aad29b7d144d8ce418beb3e80dca85c9e930f51fe2e4b2334515e8322b8028bd", + "regex": "(?i)^https?\\:\\/\\/gromilaundefinedhnccgbl\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "79ee6cc41743164a4980622bb3fa78443b07b18c4357bb42e48eb9b905c49074", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3585cbb54ca0d76ea44df71fc29475f255b87836512673c6c8cd5da7c69d1edf", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgjhfgjhfgjfgjfgjfgjgfj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5b1af25e18fdfb46cd08a02c141ce2638c5f82c5da61c47f1d18b8d217188472", + "regex": "(?i)^https?\\:\\/\\/dfhdfgjhgfjfggjfjf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9196d11a986b8d3f3ee1075c0e5d426413e5f036612c5a30f4f08e06273d75a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9979[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "39f33fc99041d7d70d4e82ba9f2ddf3d44534073364c6602be95d869b55000b1", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "67ae0531d3a1a1a7f8e432b468c489f548933e8a3053c14d74eb1e85e7032543", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5397488cd789a433df26444f9855f8496b78540eef61adb6582ce5c125e57d4c", + "regex": "(?i)^https?\\:\\/\\/crazygirltqj\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "adbe4254411c2900e3b2823cc8bc6e99e54e1b1b2adcea6ad35bee40d274eb34", + "regex": "(?i)^https?\\:\\/\\/barxaswebshotuofr\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "4ce7ced4fe6e08d0e6a62355beff43beb0ca8d55ee5cc0666d5576f516d13d3a", + "regex": "(?i)^https?\\:\\/\\/godsentannualcookingprogram\\-sc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7553b540ef8ef5e95188a9e24421f4f47405dfe8695ee096eb5187039adb8e58", + "regex": "(?i)^https?\\:\\/\\/pcaoselakvsdmfyuacskasmcamsem\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fb03e521ea4a265e58104df9465692b2106d364a0af1a0a616b83f9cb0af8eb8", + "regex": "." + }, + { + "hash": "f4a89c1cc5cca0c22ab995cf44b1d942698d533cc726b16f43fbaeb9899e100f", + "regex": "(?i)^https?\\:\\/\\/aw850\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "20726eed72bad5a44f5f9542b34ce40d4d6696e449fe7f0a0500862ea676b43a", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a43cd5b33843fdf2d007369c8ba9a93e38e762067490d5860a410920d38ad439", + "regex": "(?i)^https?\\:\\/\\/dfgdfjfdhjgfjfjgfjjfj\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5da2dbfcc1c5ec53ae1f11b0e67c2d7bb03df73392f207d3ffe36ef07bfc087d", + "regex": "." + }, + { + "hash": "b0ac4413b3d993442543cae80e937e929e90343193a6b20e14871cfb48df967d", + "regex": "." + }, + { + "hash": "a1f717f5f2546dfd61b122d9f99fec36357191b792750ddc08d2b2a96dc2b54b", + "regex": "." + }, + { + "hash": "bc41b5ffc575fe9df65bf5bdface5c547542b26a9852557f287797ce9f9e5790", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2bd1ea9f0426bc25650393c70d03ec0fa55e8dbb770c115a731fc7363b362b17", + "regex": "(?i)^https?\\:\\/\\/dfhdfhfgdjhgfjgfjgfjf\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5b326d430719413e1c0d1f377f676e38c31d784ea3664f8a95b5f313dc254f6c", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgujfgjfgjfgjfgjgfj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "296471f3a6346948941d346b641d5142433eef9a4bf6c34792b96a58c79cc0ce", + "regex": "." + }, + { + "hash": "0830ab0090a30978c5e0675dd7b7ec69cadf762525c9d0cd4ef3d66c9a6a7884", + "regex": "(?i)^https?\\:\\/\\/a51ed9\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "800c632ac785970e53847c4f845b5f4d870dae3f6ece53fbfaa110ff6f8b3e35", + "regex": "." + }, + { + "hash": "921eba9e14a8c9949473e55b3f994392c451122819dec2aa48f34bf14b8d509b", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6bff412c0f5d2736b5b3cea34ccf95481a6ce0ceac0eeffe2d0cc7a32942b63f", + "regex": "(?i)^https?\\:\\/\\/dfhfgdjfgjfgjgfgjjfgjfjfj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cf31f3f80adf77ef2dcbdc39a47e269c230e884b5055c2107414ecdb0056909c", + "regex": "(?i)^https?\\:\\/\\/facebook1\\.somee\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d137a553e0a4cc1d5b471d5bf53e83a2ba46b0452a796154afbdfe22e37799bc", + "regex": "(?i)^https?\\:\\/\\/dfhdfhdfgujfgjfgjfgjfgjgfj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b5e6da1f12f63020aa7e145fea9ee1eeac5fd4597ccc5645dfb6b0540abafd47", + "regex": "(?i)^https?\\:\\/\\/dfrndfr\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bd4a950543c3045bac6dfe2671f0d53bc9e01cc361d5e8ad4defb122b2f00d6c", + "regex": "(?i)^https?\\:\\/\\/s52d6z5\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8c995c6a31e528ed3de3b4907c4409c09c716b6681415dc53342d9b2713b8e8d", + "regex": "." + }, + { + "hash": "bb28a0c1cb770145648ed6e1f9ae3f453eb0f39ad1db461e4351bdc2f859e9dd", + "regex": "(?i)^https?\\:\\/\\/bhuvans1memories\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "9fb0959dd823e0e4c17abb3cda9c0957274fc5be3c29ba99d7d57d4ea8cfb659", + "regex": "." + }, + { + "hash": "dff5405cadc5af0fc0673ccb80f55ec2e5707239e0f8d328e1bf5aadc7288948", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b65c6022643d77259f5e7e57e1edf11fe9125f6f70608ed1e846705492806399", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjfgjfgjfgj\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7f0ab270997f4f98b30751b91da70f3d4bc94eb755aaad83d3a3de9ad0c3c8a8", + "regex": "(?i)^https?\\:\\/\\/food\\-net124\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "697b433e7750ced3967d140ed3d701acc063b7df92435f03e7b987dd82fff42b", + "regex": "(?i)^https?\\:\\/\\/galeriwhatsapp88\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "57986aaac917f1c8ba2e40701b8c663842316bf8e18b37224e32896d8e8232b4", + "regex": "(?i)^https?\\:\\/\\/gromilaundefinedhnccgbl\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8a03ee0758cde37b72a635253968bd4303ae6d9f9dc7490308d45e722e664389", + "regex": "(?i)^https?\\:\\/\\/dfhdhfgjfgjgfjgjgfjfj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "e685c055d01e204b988affb795b0b83674897e1d3d704796c93e82a9945b67bb", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ff05a09d672c0db2e62d131a492b2e2af8add0b6cda65640d8c1fdfbdbf5d7d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+autotonesonhi\\.html(?:\\?|$)" + }, + { + "hash": "6b7c111edf531be7320335ee068da14b84642d80681aea05ea1e49d3d5bf38ef", + "regex": "(?i)^https?\\:\\/\\/fgdfhdhdhdfhfdhdhfdh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4b033e740e7ef0cfd109e2b853a9ce908dbcee9a28692947743687db053fa8e1", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "22970c2c3c84b566a2c87205e2e926708e4dfbe067896541c5e5c181270b286e", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a72252f64471a9fb340467e0ceebb2e13c7ea3e184a23a5c55bea6cd1d344a5f", + "regex": "(?i)^https?\\:\\/\\/dfhfghjfgjfgjfgjfgjfgj\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "52a5d18a5ee84cc3f3381c8ce338275f88326832ad27be5b6845213ad42421b3", + "regex": "(?i)^https?\\:\\/\\/str98s\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "24630c9aebc2c688e237704e34c4b3aecc4da6099408d115d77947d2197fdcbd", + "regex": "(?i)^https?\\:\\/\\/dfrndfr\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a238177470a64e0223ca4c5eba8d3a8a31fb5717b8c92dfa2623fbcc1797ac88", + "regex": "(?i)^https?\\:\\/\\/farkinizomo\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "793e67877f940259a43194c64655923326f37887cf3ee252024ab5214fbbd2da", + "regex": "(?i)^https?\\:\\/\\/dsfgdfhfdhjfghftgjfgjgfjgffj\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6ad51e0d5cd0850d1b65875f14d551bbf0f5812b9344a6894376f755f21fb7b5", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4f645e6c87dbdadffe43c5c6c7bbe6e84ebab95c93bcb1c87b795d927cd883b6", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "fdecf3e4e670b3cb25523e88cc364909cbbd62b7317d04f51707fca0c656740a", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "449cae1342314908a54e511f8dcbc675c01a1afbc5fe0f1c73e33111f16c04b4", + "regex": "(?i)^https?\\:\\/\\/fghjfgjjfgjgfjfgjgjffgjfgjgjf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "0e4b4368f6108bf9862e80ad1a7056a2e78e4209f0db5040b83f066750ed4922", + "regex": "(?i)^https?\\:\\/\\/salope\\-en\\-webcam\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1ce6d673a8bf6442c851cf4bc393f3def31c9b7a3e8574084052557b5682a63d", + "regex": "(?i)^https?\\:\\/\\/dfgfdhdfhfdhdfhdfhhdhdfhdhd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1d907cc350be58d345808fd3f6547035998055a90469dd4155b07be962781728", + "regex": "(?i)^https?\\:\\/\\/pcoasleakvmsdutakcmasdkaes\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7575b54bd7f251d4978ff610f96859981ce47061b1dd3f423251421966697199", + "regex": "(?i)^https?\\:\\/\\/dfhdhdfgdhjfgjfgjfjfjgfj\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e78daea6d31fb4d2994ddf0d8aa9541ffa35a3df7761d3bc7bb88cd46f590823", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "85c372fb3a993731563e9a5ca98f6534cb5b8031ca68c0f72cfaaed4e967b0a3", + "regex": "(?i)^https?\\:\\/\\/dfhdfghjdfgjfgjgffgj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6980978ad357b6cfbdd946848cefe4b4bf84a7539758dce42c154820040f703a", + "regex": "(?i)^https?\\:\\/\\/dfgdfjfdhjgfjfjgfjjfj\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "347e7a8d30b4a288c09fc17da939dafebe92af181edc10be1d4d7dbc017c0cba", + "regex": "(?i)^https?\\:\\/\\/jfghghfkghkgkjjfufgjfgjfj\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "d65079e2a3d88887ec1835f1fce2303ca9b119197f2372814112a0b34539cc7b", + "regex": "(?i)^https?\\:\\/\\/dfhgdfgjhfgjjfjfgjfgjgf\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ef1b483ba0c05b58dc8a3db5328201a4da92e3ece8f608f49d986685eeba6123", + "regex": "." + }, + { + "hash": "1c72b00a9d6055447353f9b28d1e3e2155c985605f2aa8973a5b41f4373f2767", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontestant\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0f8a4cb3cdff791983eef91776287ae1063f81047209c9fe85c454c6a3833aaa", + "regex": "(?i)^https?\\:\\/\\/aontestteamsupport\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3fc03077d591fcbcb2387b164dbe902a7e6be03f77c6e848a7e0a4c3bfdd86ae", + "regex": "(?i)^https?\\:\\/\\/hjgfjhgfjfgjgffgfjfjfjf\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9f802ceec9d2fac93337771f998110c44d72efca50af0b08fdbde8c1351675fc", + "regex": "(?i)^https?\\:\\/\\/pub\\-b21d18de3a374246bba2ba1405261622\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7b5d90afafa4004a4bd78962ecf06de87ed27d7ebd995dd47f0d092dd827ccd6", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ec9fdf147296a6ee8772d168b4e36ec9bfc9eb87c90b1f23068d033b8e6e111f", + "regex": "." + }, + { + "hash": "a1e608b69969c98a50cf59208d15b882b3e0938eea0a081d2fa686d547df0b78", + "regex": "(?i)^https?\\:\\/\\/dfghdfhfhfdfhudfujfgujfjg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2503b50911b4e0c189ead2b1616ccac9ab44a6dddf4381712830b910e23b88ef", + "regex": "(?i)^https?\\:\\/\\/gjhfgjfgjfgjgjfjgfjgfjfgj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ce7b745fc8cf7a5cd469382346e870a966c96650129b36c5edf4fbb5930c6482", + "regex": "(?i)^https?\\:\\/\\/sk1ees\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "dd4de671e20c0fb40c7860be4eb08e1e753b56c93e49c1299cc0f3c343132b39", + "regex": "(?i)^https?\\:\\/\\/freepalestine8000\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "26c70063c810141ff0fc41b1bb292e0e8594ff4080dbac7b62b2bfcf5e234853", + "regex": "(?i)^https?\\:\\/\\/dfhdfghfgdjhfgjgfjgffgjfj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f6e96997a93d32ddd4c656a5cf87e19d59cc62918ae9cb765185baf1f3b7bc8e", + "regex": "(?i)^https?\\:\\/\\/nicetv\\-45\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "4ee7fc703aa4c7b88116ee9839f6de0a0fc11c2f831fe3497f5b68149381f3a6", + "regex": "(?i)^https?\\:\\/\\/ongoingfoodcookingcontestant\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "319828fcb2aa1613f66f33a3d7554380d411c6429e7770264a40d42bf7c23404", + "regex": "(?i)^https?\\:\\/\\/fsgfdhdfhdfhdfghfgdfgjfgj\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "7247b5f29e30a55777c815127f15ac13bdaa769e88e0d9c813ad9d84c6e0b560", + "regex": "(?i)^https?\\:\\/\\/www\\.36593651\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a03d2cc0e4998bd6ba0667d9ffc15d110592cdfe78d9774c1f39b9334d7877e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+public[\\/\\\\]+meta\\-community\\-standard" + }, + { + "hash": "542d469eb7d5732814ef67956754eb894b20f3d693ee82c316cdf6723494a5ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+YUo9v9(?:\\?|$)" + }, + { + "hash": "a3a8a199df4217f022074005c4112c6fd176f40f52b71c9aeed6cb7f30531efc", + "regex": "." + }, + { + "hash": "d0508273c4d7fc25ee55253043896fc301b83d97b0f20b2dc6e1feaf6f3dc805", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jSJFDYUwPAfiZtczvQOYbhxKk9RQ5tmHZvlRX8icEJkVPJmdyY2i\\-i1QLsuB\\-YU_M15u0Vo\\?_\\=00a06109\\-b411\\-11ef\\-b1a2\\-54f966664ebc\\&d\\=BQ5qQHPeDpfWlTnBLhc7MWft8vyQ59W0_1U5gG7KMdwwFaqOYYRiBV9HJrUuuD6FcTMnY0C8I3ruXtAI4DWsLZ380PLJKjjSs9wxxe3W925scW9girf0zy4mUXTqfGt5PHEFbY15mI1VFo03K_2_K\\-G6dGKKXJWydhPpuOMzliEtBD0D38_0evCBWqQsW5vkQRpnB77A6fdLiByC0POCVy1A1t0\\-F7F4F\\-juk8cSCnmG7m1OoaGqCNVtgN2D2jh_QP8hFPjvC_fVLLCPSTbyH1IY\\-Wd8rIC5VV8eHdmLUYcBQP2DDf4PiPgLOEKBAYCP4srqcqYAUQ3kGTKAllY9eMRieLa2Jb\\-BEU9HNccSI6aUqGfiKjk1D35QifKkszQ77C4cA68MJ_Ya47tA\\-\\-hVwkQaY7\\-WfDOJmZvF9LG6P4P2h_G0qymMh25Lv__0Z1C9IcAXkLytx7bYvAZNc6PvN0KsfH9t16RW1l\\-2iiUW1\\-zd5mtitLNtOkX17Li3mB1psZAeVxEgtpROTfhhRTtsYHFNGTD5YVzwiOqHR3hY69ibxPksnx_so__FpIx5HAf9dLIErczFarhIf9TnS_5Kfe6uC3uShGsUQmO2ljvh16wQhoxSMnx8pFSM0A0YDg76F0EXXZjpvtekhiDgxZ6hkPdLqp0ptHEXwH7HllnIaYDu_DT1QW8FeWNaPkCZ9bKfiC1c1Tbsntjg1BCN4Ed\\-5jHU5Kz1TNNYp9zi\\-qe71jiAsuFwYEDKNt7W0wgDxR9491bjDS4OJFmAPuiPl6\\-oEStZ9p8pOL\\-29_JGnfWNlgt5Iks_mHneesDzvlkvAtqvP5BeJDBxTlq5M2wyd80y9Yi5XUUOr\\-_SIiIPa7ihS2Lb\\-9wPMt_qHxI9LmSU0Jt2dcUViCNEqLo7JJCW_JT\\-5zUycV8wlVvkkXxCXYGB6GyL5z0FR874Fownvi_NBAWYxpRHKNoE1A2ocISly0oXzow72kx0xPT8V39x1D_DQlQPsVVbbyN9DtTLIS_EF_n0RhdR2iq_Ah9bMjk5WhpOphOqDMpm3uDEBfF_m\\-dMxTfscsUPkIBZ1zVGnATi4jZadnsf19Ag7OjizcNmfWr2GKTMy22u00cy21vt0R5KyqtWIZ7Fh1g41kmQiYfxfG70cmP6k4qRE9HaL\\-NUaHqt3bXXg5nRSKnnzrGNIbK3D2fRVJ_aFJy\\-ER1A8KnkF9Bi9tNQh7S5VjSjSqgr2nBZKcyS7Rg3ru3WncHlShe1QKmqqCqdbXDVtaKyVQe1H_9m9OjeVYg29nfu1\\-vcupjinh9iEx6bAQKTNYYImlUiY3Ppw6A4CY7zgOqhiM9A6JZ7E2RUTZSj9CxNjmxfU9yZwV6\\-xdXCfOTD3JDJoPJ5jmHGmN84cUsnFgbcS2CSzzX_THNcZt8KOo3Yh94\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+x65eij(?:\\?|$)" + }, + { + "hash": "33cfd52598bd40cd019ee6660f510233739fc3408eab8e2108f5ed38c715a3ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cd4d7b4ff6f9c3b225f8d5f2160ebe709fe2f2ecbf2091d3a47b98e950a6380c", + "regex": "." + }, + { + "hash": "119b1d1535a07a00a6d9b40015a963b49622b884cb990a0de1eb27d68a66a522", + "regex": "." + }, + { + "hash": "9fb20fad4eca1a99e0e17c5b064d9c0038291cfd1bca45230e37aa732cee7271", + "regex": "." + }, + { + "hash": "21ad3a8a8c7da8d3ad9f5fac97bd318fac199c5554dda313af3beae796fc978c", + "regex": "." + }, + { + "hash": "609c31640e470b9a331cfe77b38592a02c546286f35bedb4a1154ac9c19a2279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+merchant[\\/\\\\]+bank\\-confirm[\\/\\\\]+ing" + }, + { + "hash": "38b5511afeccd078de18df568cd8767f2645f5facafe3e2086da80a9d19c47ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+co(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0645640050a368e1fd56f541531873a28639127b842aaca488662c4d28f47f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c62b26e\\-7374cc75\\-c393\\-4a74\\-bc16\\-4c43ddf1379a\\-000000[\\/\\\\]+D9iiRXUs11kn1vsNRYdrpLPIRz0\\=403(?:\\?|$)" + }, + { + "hash": "1a3ce1fe14d48f2cf0ca1355e94fbefeb9893952474fa982a90e28173f84e36b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "946255c49022d533358f62ca257e4c246e17fdc69248d04896835cfcad861371", + "regex": "." + }, + { + "hash": "6286eb144bf04bca3bd17d7d7930b7718572e4a97812211698ee41e2df981258", + "regex": "." + }, + { + "hash": "c80f09b4f582c89e41f2bc126f270dec3486b0de7ab1d1e23edd72ee349efac1", + "regex": "." + }, + { + "hash": "9491e7a61a3879f72ae9d5b1359d7b15abbfe80d50ab5f52518c7c1724a36174", + "regex": "." + }, + { + "hash": "0a6a9ef5d29e26234298a94eceaaa5d5ec4451938cf43e91a69082e878adaa90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+recov[\\/\\\\]+usr" + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "609c31640e470b9a331cfe77b38592a02c546286f35bedb4a1154ac9c19a2279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+merchant[\\/\\\\]+bank\\-confirm[\\/\\\\]+macquarie" + }, + { + "hash": "0a6a9ef5d29e26234298a94eceaaa5d5ec4451938cf43e91a69082e878adaa90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+otp6" + }, + { + "hash": "38da21a579bfba428c66b85282cc044c44668cf0051e588950185ecf9cfb0bb3", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wkpzhho\\.com\\%E2\\%88\\%95cjzlfs\\%E2\\%88\\%95harct\\%E2\\%88\\%95jmlpdrsqg\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=mmkhvb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "96e892950b8d2a4be61e8da64a5e9e0087b1d579c10503dbc8552993873a84ad", + "regex": "." + }, + { + "hash": "83e814ccc97bd3d809d8982de173d597fd20d034e8bd3dc0f6da0faa3bd79f12", + "regex": "." + }, + { + "hash": "70dee05c686e8f847565797882dd3fe828428ae100825932c49ad0c73f2a08a6", + "regex": "." + }, + { + "hash": "3ece07df3715d8902d285983830bbf9d042738ba5270e9df79fe9f0a4157e599", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d7763b288f43acbac1645b5bb85e582733ded31ecb57548ed748c3005f3a4848", + "regex": "." + }, + { + "hash": "60bd2fcd0ddd125ad9c8f1986c98c3f3b7424699693bb5fd385bfcf7111cc84b", + "regex": "." + }, + { + "hash": "cad7c6485bd1985131cc2cce84489177b6305e857f21b8a44923afe527f40c93", + "regex": "." + }, + { + "hash": "4a7628f593fb820a70263aee2038f109c58ae953a451c1cb95badf38d76aad33", + "regex": "." + }, + { + "hash": "e6a2f13ea36da4d3d16978570cead084433f6d243b3ac074762320b07a75b632", + "regex": "." + }, + { + "hash": "59ce336abeeda7a3c4864af837b61a9ef89278a30bd8ca1cfff7c8fc3e88b2ba", + "regex": "." + }, + { + "hash": "642ce13c7811b00cc0a76be955b813dab98b81d1b4181503be90e43d45c5a15f", + "regex": "." + }, + { + "hash": "c0600e8ace06ad60ce649c88b363faa623e14d1ca8f7709f059ec07b7393690e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "542d469eb7d5732814ef67956754eb894b20f3d693ee82c316cdf6723494a5ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+KdFQIQ(?:\\?|$)" + }, + { + "hash": "b69fe6255e925f21b548e5259bd22f51d2928d59adb8d20d8f7ab53af5ef7233", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+amunso(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "646475de041d5e862999982ee7adfe92f89413c87f878780a1ff877c6f71df24", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-gratisss\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "fb7d9bd681affeff0b560f1461ddd0dd59e3bf82f84a7130252357947273c5b1", + "regex": "." + }, + { + "hash": "ef3529eb9f5b7a723403dcd65af9b3fd202ef0c558f06dd20c6ec6e3821084c8", + "regex": "(?i)^https?\\:\\/\\/sbgdxt\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ffca598c84e0f2645574535107ed06f146510e2dca1acd2effb438cb25f709be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+KdFQIQ(?:\\?|$)" + }, + { + "hash": "609c31640e470b9a331cfe77b38592a02c546286f35bedb4a1154ac9c19a2279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+merchant[\\/\\\\]+bank\\-confirm[\\/\\\\]+anz" + }, + { + "hash": "ffca598c84e0f2645574535107ed06f146510e2dca1acd2effb438cb25f709be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UXVYnk(?:\\?|$)" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938c6f2715\\-b3e843e4\\-ac6e\\-49c5\\-b1aa\\-181cf49112b0\\-000000[\\/\\\\]+oOxnVK3g3SuJfcGoWKk1QI\\-5hYI\\=402(?:\\?|$)" + }, + { + "hash": "609c31640e470b9a331cfe77b38592a02c546286f35bedb4a1154ac9c19a2279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+merchant[\\/\\\\]+bank\\-confirm[\\/\\\\]+nab" + }, + { + "hash": "2cbaa26a1bc9e6191a5e0ee3d39a129c95203d10c24e9779c854f6e4c9f4f5c7", + "regex": "." + }, + { + "hash": "cc25e0660a0fd35d248f8914792db536be0ae20462578acaff46d4749f2874a7", + "regex": "(?i)^https?\\:\\/\\/jjss9988\\.com\\:9900(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ee1e21b46d752ba28d2cc0cb3ec8dd7bca4d63f9decfab10102deb5d58de7320", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "640e0551aeade30da960756d41373c542833cf1645a994cbe31de664fc0c807b", + "regex": "(?i)^https?\\:\\/\\/cqslayq\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "c86d0719ce8b85236a29074ddce6b3e1318be3a1f230b05abdba7a6e35bd44fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9964[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fb0002da72310660445e331f065a46fc62a8f5e414a16c182dc05786e2c030e2", + "regex": "(?i)^https?\\:\\/\\/amazon\\.ggmiowgglf\\.com\\%E2\\%88\\%95avjcw\\%E2\\%88\\%95cpzwesn\\%E2\\%88\\%95yodpeecfmx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=ehqmui\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "81336097d46e8a57793631b4632e91bc0d25ba369d2e2997c8cea7382428b772", + "regex": "." + }, + { + "hash": "df66c5821e3febab0facc691b5dff15eb10f4191f2582ab9a5f6ae5d7c8df455", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a0f907ef68d1f7042513074b003a13e66b315ebefcb2ce2ededc10e1fca7a1ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-2" + }, + { + "hash": "cc1ec17782f06dd1413e13811ea7a5c2a806a440955ee83317e4be2ee31a07c2", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "dc0b3eb5b1cff61fcfdb76e01145147e477f2f16ea6c238d1af10572a12483fd", + "regex": "." + }, + { + "hash": "dae39a099cef7843c2011762da7df30b08bce95f452d8fa4955a67dbe660e19b", + "regex": "." + }, + { + "hash": "0e8621333ef1a6b7bfb57c1ff873091ef7fe538e7ee26066dfab33390ef25f31", + "regex": "(?i)^https?\\:\\/\\/100nightstale\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0fa3917953282fda66b0673049db52aa522b14f5a5054a08918ce52d386db703", + "regex": "." + }, + { + "hash": "5ab35343ca8440b0e7f7a3853f885da620e55c2b5bc04c4aef50a67f0386618c", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mrhcgn\\.com\\%25E2\\%2588\\%2595ujeylbve\\%25E2\\%2588\\%2595uyfqpj\\%25E2\\%2588\\%2595zhkponatgx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hlxsrgvb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938c13cdc5\\-ba74094a\\-e64d\\-4f45\\-ba9a\\-d85a4999f939\\-000000[\\/\\\\]+ezkB1BHZkpoF8CSpZSRI8bEwXt0\\=402(?:\\?|$)" + }, + { + "hash": "ec27c76c410ea873f1611a38e1b0961e99bd4956394ff969b35b459758c5519b", + "regex": "." + }, + { + "hash": "af873b90212236808d90c009ab4c783d5057673cafa76e046b0d6eb6bc9bd389", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0036c5ee054d6982c2471d452652726d057456838fa9d059878aabe3b6ca93fa", + "regex": "." + }, + { + "hash": "9a5801f35cfb14c0f854aa4a021980c42ba20cf77a51de77dfc3360ee546ec80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+merch[\\/\\\\]+auth\\-bank[\\/\\\\]+csob" + }, + { + "hash": "8effb5659715814cbabc0285f54071d7620588ea4675f29c408888dc1dc0cc54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938c62b26e\\-7374cc75\\-c393\\-4a74\\-bc16\\-4c43ddf1379a\\-000000[\\/\\\\]+D9iiRXUs11kn1vsNRYdrpLPIRz0\\=403(?:\\?|$)" + }, + { + "hash": "4d126ae7fcdaf39a20607d8efdc833d35b6b6db65bcfc53746a60fb9f2732107", + "regex": "." + }, + { + "hash": "6c06849159d1bb3e9cba7a41b7e945689b2b1097b36254ed24926ec5cf6cabbc", + "regex": "(?i)^https?\\:\\/\\/talktalkaitbill1\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2238dcf169f92b83478620945ecbb462b0c6834a79f904353ba1350774eb1923", + "regex": "." + }, + { + "hash": "7618b01323c16c23deeed1279d5393cea9a9384896841bde5e5608119d1414e1", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-gratisss\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "d49d7929f21ea45fbd27e1982a80abc574cb181b60315800d603e205f40b2956", + "regex": "." + }, + { + "hash": "5b403bcadf7995f3fadb21ddddb8a1b47ec33a01185830d92447427d4f00db7e", + "regex": "." + }, + { + "hash": "07d7a012e78389bb82a607494779ce34725f239e37349703a459bb1292948de4", + "regex": "(?i)^https?\\:\\/\\/instagram9740\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css[\\/\\\\]+\\." + }, + { + "hash": "9be640a17b61ed02bc4d668c3996bade29c2ef0e9dfe37c3062754e1a8899224", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "c041fdac34525fb5c79cd405c3ab2175643f12173a64d92a4cb6f5689f0fd77d", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4287ca6e410bc1c57840acb5a6686862bfb5d10fd6b63dafe7157a8f9ff0d96a", + "regex": "(?i)^https?\\:\\/\\/100nightstale\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "017999ca4b2a2447a30fdfe628bfdf99f40e8ad4844ae04872363213f4418caf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+KdFQIQ(?:\\?|$)" + }, + { + "hash": "6f5a5712a3409dd95ecddbb836673f04aaa6d18d374601fcc0071a1d5f41b5fa", + "regex": "." + }, + { + "hash": "b37c44296273094f1c81c1f8e3af4af978ca076115ac8aa9b296dd54b82e451b", + "regex": "(?i)^https?\\:\\/\\/jenwnnzds\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0c196e9fa965eb506e043c274aad95d7da50607e79645e2f23d3d680fed291fd", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "6d0bdf1a7e170b7162aa1ac17bc3127c3dd1f421c0004d805673db0ffa036502", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.A02ChtCmLyHSWg5qE53HL8fLTKNAVfO3Q9iA9MR26LbsG2o1Tz52knyK7BaWW2Sw3dD4FzF1U731miiwQkgtY1F5sGQ55JwU2hhyO8q2h4IXvM9KshSxf9nsSI9y12mkZcZURoxD2l6MUumk0YKZPsNq0FQHojqaPiDfEA2Mzgdjt2jJZPfMu6nSnKThAvq8tjAMkzpSGlHTZdhQN\\-2BsjhenMyY7vxPEV4VDf2BCPsbk\\-3Dy97e_6TskFEdcvPzrLyyEgrqrhREvAWeXhoE\\-2BwlwHBBynriAm4UH7WVwdQd68DOVZ1ahCwO5FmzkouksAKiIr3Aqkei2yr\\-2B51bMouqueV9jEHWMQtBsd3vb3dTREWzYU0XEIbr8XXwo5Y0m28uYuyfBo5hqoWFjXgTMQUN99aJSpCOmhKzv9iozVsj2BDa\\-2BVURPvJAuIjSeTnkS\\-2B\\-2FMMReJIh\\-2BS83YnjXhmD\\-2BlfazKmXPOilflLD1U1YBWbcnW9eXfXexvnsT0J0f5wgi37zeCWMVgHwgRoPI1\\-2F9IcrijY9vVrc6Jefbn9Try31a1djwTupkSngfLRdW7BySJzqoKQmvf1C6zNlvSeL8DRFAZBSDazHKzxop6579kHilD982RZsYzE0r8nrW1Q9SUTQlCfSojLQXogUdP819Cj4j4wfVI2\\-2Bik\\-2BdD99xIZfplJmzyciipJwJ6Cz9YAj6bh7KeaNO4DGBq4whzRJbkAt0yNgX\\-2BGomlczh0QHxK2iAyetYO\\-2FhmQyf" + }, + { + "hash": "e7b4195e98b970d7d3baeb68b4e811c97fa6db1c9ff60a53cf20cc1245923753", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-gratisss\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "93b2a05a9584aff005036ffecac897ddc56888f926e7ffb89f495e473b04f945", + "regex": "." + }, + { + "hash": "05422ed0d75b98403af74ba18ff9c4f0244cccdd2131ea245e3d179ae17c6c7c", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "867ec9f4d2ed7a37369a5a05fbd6d8b6f58c0a71091aa71f9af187f790ca2497", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-gratisss\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "71365cd0fe4a510b1c0e7baec34032b5cba533f2c24c5800a093b090b7361851", + "regex": "." + }, + { + "hash": "cfc9fdfcfe06a5c0616160a0c69f520565c74688268ee2f7132748614e74bcba", + "regex": "." + }, + { + "hash": "b1c5ffaba40eedb8418ff18611b419dc0b61eb9bff37d7ea1c9526137dd83dbb", + "regex": "(?i)^https?\\:\\/\\/free5644\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5b54b835731c6fefdcb7cbc014f496477d60fe38894aefc83c35a1a1107ff60b", + "regex": "(?i)^https?\\:\\/\\/instagram9740\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "14b0f638f0e3f0d2b3b8c0cd5d057b54511f9d0021b56dc563529c80e1a48f44", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business(?:\\?|$)" + }, + { + "hash": "017999ca4b2a2447a30fdfe628bfdf99f40e8ad4844ae04872363213f4418caf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+YUo9v9(?:\\?|$)" + }, + { + "hash": "aee028aa708997ef158c470896e229cd9b55049320a06685360862cf45f11a86", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a10e2c66a405e95cb72644f5bf88e246ae36686295f719bbf521f7428d277685", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b32df9035a10519e90d6f96f3c9192f860306635d0e61210d2a1388e90d13b69", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f682cfb27205b9891eac60232bb3071c8ab8d8638ddabda838d54de79c36b402", + "regex": "(?i)^https?\\:\\/\\/srgedhbvhecb231\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a2a4c83b68a132e07a257a27cf3e5d8432fc733f4ec4505c683a78e605e5ae50", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mkzzlgo\\.com\\%E2\\%88\\%95oxzhyw\\%E2\\%88\\%95cskamyom\\%E2\\%88\\%95vmwmzii\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=eaimqah\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "864c66148774aa1566d8f64fbb691888dbedf1c15b9c09e5852b602e5d339dbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=WuPCtHURBzzWGCOYvDYRAz\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ddd0ac378c8339fd7dc34435f62334412cfb6e68a0ab7402144f61da4f297433", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UXVYnk(?:\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caspid(?:\\?|$)" + }, + { + "hash": "805826f55ab8c245e3a7966856f86f5a29fd2e21c839d6e4004e192114581899", + "regex": "." + }, + { + "hash": "d8a05ba7e57c90803079c9abb0455202e56b79233684ea6bc670dd5112d57cbb", + "regex": "." + }, + { + "hash": "6debd69909462a8731a9d1fcb934fbd98aafc761dfb30167413035b500710dc3", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+k5wqss(?:\\?|$)" + }, + { + "hash": "e923be3d02c0ee2b91f840bc3eb80c8c511790e6a8f97cc474b8af7ec765c1cd", + "regex": "(?i)^https?\\:\\/\\/nicfoodnetworkckoo\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8e2d204afef4da50eee48df0ed971ed0b756eb4cbb9e5da77572865e05f91799", + "regex": "(?i)^https?\\:\\/\\/bcgfhc\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "055d33f10f9ee25fc9276bbba4bebd66df80844e459875a25f82ecdb9b975ef5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "5df5d9621f57c41b239dc43fe0b3dda179626962b58c5182557e3006a7fdabd0", + "regex": "(?i)^https?\\:\\/\\/eki\\-netgrebipwq\\.com\\%E2\\%88\\%95qfzrjadt\\%E2\\%88\\%95meqerlns\\%E2\\%88\\%95ylcjheshq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "bb3d0e04e2ee2b695d00c587c81f616fd359f0f71d20eeef006194aa01f630cb", + "regex": "." + }, + { + "hash": "90fdc99e8c179bb197ee56637664610808f97387b9068d47d93c7a3d32b5669b", + "regex": "." + }, + { + "hash": "ed57efe40193ef8f5e58b3c0cba39ff2ca6b70ece3e27a58292d41e1ab683412", + "regex": "(?i)^https?\\:\\/\\/nicfoodnetworkckoo\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0a6a9ef5d29e26234298a94eceaaa5d5ec4451938cf43e91a69082e878adaa90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+recov[\\/\\\\]+login" + }, + { + "hash": "282bca9e5b4c69e6932e17ca919e3746562b76f8d8822a98a6374ffd7483daa1", + "regex": "(?i)^https?\\:\\/\\/terravino\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "82417aeb4eae80adc769008f6ca0417c29a4fc118ba327ebbee538c865b3654d", + "regex": "." + }, + { + "hash": "58aed7f370a2b378f95922c76675745d325755cd6994826ec3d7d771b428fe5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+272013867(?:\\?|$)" + }, + { + "hash": "017999ca4b2a2447a30fdfe628bfdf99f40e8ad4844ae04872363213f4418caf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UXVYnk(?:\\?|$)" + }, + { + "hash": "208829aa75f53f457849ef86028c1398b71877db83463e2cd123400ff5338506", + "regex": "(?i)^https?\\:\\/\\/ieprhlh\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "3e6f9fabc51cdaf88cedfc874a86bbca37e9fcc25cfface4ef6bc6ebef0d281d", + "regex": "." + }, + { + "hash": "bc55715f36cbcfd3488706cabd419c41034f6ff0431519988877cc4d2a4f1658", + "regex": "." + }, + { + "hash": "a03d2cc0e4998bd6ba0667d9ffc15d110592cdfe78d9774c1f39b9334d7877e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard" + }, + { + "hash": "cfc8380b089a18ac4f76786c9c198c2851965cf2bdea96a9339f2fe45415598d", + "regex": "." + }, + { + "hash": "640e0551aeade30da960756d41373c542833cf1645a994cbe31de664fc0c807b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6c1e1889b893c2cebea1566668eac68aeaa0016a04c11c5cde66c212fbffcd9a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+receive[\\/\\\\]+order[\\/\\\\]+IImVgJ33ox8" + }, + { + "hash": "9063f500a1373e0f17f0d31c08f5aeb269d9a5d9dc1013656d50b251ad84e465", + "regex": "." + }, + { + "hash": "789b8e475cdd8ea5de16216689553e937e80730ea57fe51bb9bcdb98d7d826f3", + "regex": "." + }, + { + "hash": "1202cbc3523d960bb29a64b37362a93e5c4a092a21fc89d558b6fa540dfbdf36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bf8596ae9e277ddc5f85f7268436929548dd24dc31acd35229697b7082c33daa", + "regex": "." + }, + { + "hash": "923776aa6e650b77faa989b17326c09c07cf15607666bf2f0b8c48cf4c330ef9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+nkbk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6dea00270074e76ba59e05926757ea61a3474d3c58e355f5f9abd6a8e365fbcc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "34731741a4da88079edd4ff5887101a94b3b69de280e8b75efd5c213c69cd29c", + "regex": "." + }, + { + "hash": "35f32c8b8f7ce5db34b5e6693ff0ffa14e7b2ebc5877e1a6e6f53ebaca221bb8", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1ea6ea7ccce5c6054474b28b1bdf0fe9d310ccc2c77f49f6cfd0c7e125196d37", + "regex": "." + }, + { + "hash": "0efe10ecb9902dc5f950ee1502844b3836030627f1b28f1f31fd4820e70dd17b", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "44bd6762e7ffbb56b0bb70dc3d062f4f3c537bff484081e91c87776e6a3305e3", + "regex": "." + }, + { + "hash": "f10b40c5e7abe042ffa251a52982ad977921ab14ee5c2da995b1bf53fa9e903f", + "regex": "(?i)^https?\\:\\/\\/100nightstale\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "808509e5097fbd8f3cd291034997872fbc9f32f12b7d646052f9c41001ee43c8", + "regex": "(?i)^https?\\:\\/\\/hjjdcj94\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c0e726802a6ad0a52c35f30ac13b063e76fa5c19b2b99bfc722259acb4df9c7e", + "regex": "." + }, + { + "hash": "af0a7ea4e9fffd8c08b31f8358037507d008afa8e665f1d922560bd6055efce6", + "regex": "." + }, + { + "hash": "5ab35343ca8440b0e7f7a3853f885da620e55c2b5bc04c4aef50a67f0386618c", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mrhcgn\\.com\\%25E2\\%2588\\%2595ujeylbve\\%25E2\\%2588\\%2595uyfqpj\\%25E2\\%2588\\%2595zhkponatgx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "9f76eadf0e43208b3d9ad9393ed7f64ce06b734bc89d97c4de9f0af84fb24cc1", + "regex": "." + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "401e93cdbb00fde31ecf17ab8e24fd61be71173793463e122332048f2acc6127", + "regex": "(?i)^https?\\:\\/\\/bafybeibqv3rzzvueikdbtlugtvdnqiegwtmlgo7aotioqgw3iym2hmih7u\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+\\." + }, + { + "hash": "f15dfa6e40869fad298902e2b72c6ed28b87a63dadd2adc71953e05611bdc903", + "regex": "." + }, + { + "hash": "8878484fc2d7160c74fff28575da03f5d74fdbbf395069882f3c1115391e0cf9", + "regex": "." + }, + { + "hash": "1c3b130d19a14fb9cff7e1d983ea7954b31f9173a45092688623a37272627fa3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+public[\\/\\\\]+meta\\-community\\-standard" + }, + { + "hash": "9ef3d4e8984bc4b08f58d8d2c01b0eed447a887eeed677e99f7ba871311dd76c", + "regex": "." + }, + { + "hash": "25b57d3ad204300ca3def3ee722f3c6bd0beca44f6ee2664a6e99f347b3d7dde", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "86d3c85a06eab32d5455a068336e247a932dcdb5517597e5460980347cbf98e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938c13cdc5\\-ba74094a\\-e64d\\-4f45\\-ba9a\\-d85a4999f939\\-000000[\\/\\\\]+ezkB1BHZkpoF8CSpZSRI8bEwXt0\\=402(?:\\?|$)" + }, + { + "hash": "51f2b7e81500fe793fd211f171496429f96a940d44444d11b350beafe2e5c2da", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e8bda2275a7c82c3371e8a5ec5c5dc35eaf2ccc9af9d3979cf3ae0f8943e182a", + "regex": "(?i)^https?\\:\\/\\/100nightstale\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1fa48be9eeb4ef3d4d5790aacf90ff637d4241ac156638133a90c37e53047817", + "regex": "." + }, + { + "hash": "f6158cc9161724c2337139d149f10461eae218f95b8f2cda62af9aca825074bc", + "regex": "." + }, + { + "hash": "ffca598c84e0f2645574535107ed06f146510e2dca1acd2effb438cb25f709be", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+YUo9v9(?:\\?|$)" + }, + { + "hash": "1a4681ffb9f044e5c9b7975c6cdba62fff8b98c89a00ca7ef2f5836e66497e37", + "regex": "." + }, + { + "hash": "eb6b3774560cbc24709dde876115ba038bf194077696f03beb5a9bc61b3066b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+KdFQIQ(?:\\?|$)" + }, + { + "hash": "6944cde4478fdf7bded106121c5ebe563c328b2c6a133fec0a321ab8da289edc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jSJFDYUwPAfiZtczvQOYbhxKk9RQ5tmHZvlRX8icEJkVPJmdyY2i\\-i1QLsuB\\-YU_M15u0Vo\\?_\\=00a06109\\-b411\\-11ef\\-b1a2\\-54f966664ebc\\&d\\=BQ5qQHPeDpfWlTnBLhc7MWft8vyQ59W0_1U5gG7KMdwwFaqOYYRiBV9HJrUuuD6FcTMnY0C8I3ruXtAI4DWsLZ380PLJKjjSs9wxxe3W925scW9girf0zy4mUXTqfGt5PHEFbY15mI1VFo03K_2_K\\-G6dGKKXJWydhPpuOMzliEtBD0D38_0evCBWqQsW5vkQRpnB77A6fdLiByC0POCVy1A1t0\\-F7F4F\\-juk8cSCnmG7m1OoaGqCNVtgN2D2jh_QP8hFPjvC_fVLLCPSTbyH1IY\\-Wd8rIC5VV8eHdmLUYcBQP2DDf4PiPgLOEKBAYCP4srqcqYAUQ3kGTKAllY9eMRieLa2Jb\\-BEU9HNccSI6aUqGfiKjk1D35QifKkszQ77C4cA68MJ_Ya47tA\\-\\-hVwkQaY7\\-WfDOJmZvF9LG6P4P2h_G0qymMh25Lv__0Z1C9IcAXkLytx7bYvAZNc6PvN0KsfH9t16RW1l\\-2iiUW1\\-zd5mtitLNtOkX17Li3mB1psZAeVxEgtpROTfhhRTtsYHFNGTD5YVzwiOqHR3hY69ibxPksnx_so__FpIx5HAf9dLIErczFarhIf9TnS_5Kfe6uC3uShGsUQmO2ljvh16wQhoxSMnx8pFSM0A0YDg76F0EXXZjpvtekhiDgxZ6hkPdLqp0ptHEXwH7HllnIaYDu_DT1QW8FeWNaPkCZ9bKfiC1c1Tbsntjg1BCN4Ed\\-5jHU5Kz1TNNYp9zi\\-qe71jiAsuFwYEDKNt7W0wgDxR9491bjDS4OJFmAPuiPl6\\-oEStZ9p8pOL\\-29_JGnfWNlgt5Iks_mHneesDzvlkvAtqvP5BeJDBxTlq5M2wyd80y9Yi5XUUOr\\-_SIiIPa7ihS2Lb\\-9wPMt_qHxI9LmSU0Jt2dcUViCNEqLo7JJCW_JT\\-5zUycV8wlVvkkXxCXYGB6GyL5z0FR874Fownvi_NBAWYxpRHKNoE1A2ocISly0oXzow72kx0xPT8V39x1D_DQlQPsVVbbyN9DtTLIS_EF_n0RhdR2iq_Ah9bMjk5WhpOphOqDMpm3uDEBfF_m\\-dMxTfscsUPkIBZ1zVGnATi4jZadnsf19Ag7OjizcNmfWr2GKTMy22u00cy21vt0R5KyqtWIZ7Fh1g41kmQiYfxfG70cmP6k4qRE9HaL\\-NUaHqt3bXXg5nRSKnnzrGNIbK3D2fRVJ_aFJy\\-ER1A8KnkF9Bi9tNQh7S5VjSjSqgr2nBZKcyS7Rg3ru3WncHlShe1QKmqqCqdbXDVtaKyVQe1H_9m9OjeVYg29nfu1\\-vcupjinh9iEx6bAQKTNYYImlUiY3Ppw6A4CY7zgOqhiM9A6JZ7E2RUTZSj9CxNjmxfU9yZwV6\\-xdXCfOTD3JDJoPJ5jmHGmN84cUsnFgbcS2CSzzX_THNcZt8KOo3Yh94\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "72d479902e39391d6f7f582ac9d9021cfec6c69824c8829e73e2e983b93ee77d", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?butb\\.trrbyy\\.asia(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+admin[\\/\\\\]+\\." + }, + { + "hash": "542d469eb7d5732814ef67956754eb894b20f3d693ee82c316cdf6723494a5ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UXVYnk(?:\\?|$)" + }, + { + "hash": "1d23abc770f6dd311ec436cd9d4836d0803efc9af6537cb187ae3acc6fcb3c05", + "regex": "." + }, + { + "hash": "d099ceb4999e61c71c5ab4cad4e3e6af4b04d5e45c561a71999734963220380a", + "regex": "." + }, + { + "hash": "ceb295983a94c32a0101fd562bb6f4363decc40d048c5287fbbc6adf690200b0", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b464cbeb7de965a6f0487a89966b2f27d4e521fcb367ce7bb26c45043992cc4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d31bbd5d00fe4d1f37f3db5fc4002b29aecc03b9f5d33e421bd9c84bdeafe6c", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3dcd613979b9adb70bc7cd67216dea99118726684e48fe8296310eb394236dd3", + "regex": "." + }, + { + "hash": "63dc1d884f8bcd73013f0bb9a6fb117ec4af1dfcd08dac799238e3912187fe8c", + "regex": "." + }, + { + "hash": "efa25a5b3e4c6ab4c93086bb05da4bf5bb9a2b88baae87f8ace4afbeda7f4179", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-104474\\-108613\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+css(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ea8c611fc79abfd14d3eb00a1e19418d2bd006679fe9bc32bac9b8d55ea16495", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7b86c747274b2d7c0ac0539e21f0b71f1efc2f425fe625ce8b71fcecb859fa95", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ca4be2fbcafc426e2829107246977c5c08a0d7e8b043372895e781bda591abac", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d1a79d608014a05b7ead54ea52b0e4d9577d1e1d2fcf80018e76b92d0664c2af", + "regex": "." + }, + { + "hash": "9850a7f9d8e0cb57b65902f2584593bfa470d0b96da7b73121f8d38e0d32b44a", + "regex": "(?i)^https?\\:\\/\\/100nightstale\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2e598175e4fcc89bcb65dd988b5b1ea5e3ffcbf1aa8815904b225b99cf5d582c", + "regex": "." + }, + { + "hash": "c04150a4e25a5a80042613fdc8df7103ffab4cdcd6b6f36c380454b564e73e2e", + "regex": "(?i)^https?\\:\\/\\/nicfoodnetworkckoo\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ec0a22a4c192ef6a97dd6c31ccb6465c3df401b2e34b6540932870e6dc09ec4d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4ba91b9816aa1ca697b3486b1252caeee38d980d6b4a2a2be738debbe6eb0e9a", + "regex": "." + }, + { + "hash": "ef90eee41482302d36b8781cf70627124c4cd9627b0ac41092ca64baea6c5704", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "eb6b3774560cbc24709dde876115ba038bf194077696f03beb5a9bc61b3066b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+YUo9v9(?:\\?|$)" + }, + { + "hash": "09bd7789817c3b0d1e837e92c31d0bf6ba28d36e4af86cdb9e91f2f6747dbc27", + "regex": "(?i)^https?\\:\\/\\/bvhmblul\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9fa3ef76bb711ef1a1218135951bfb2629e09d1ae0f6b1de4a5606a51b8da845", + "regex": "." + }, + { + "hash": "7a1805b13ad3cc4d17de7a9c1513fb5ab670001fd51a9ac313393547864bb4fb", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "e82919d266fd27ce959f817394a9514e9ad71bda2d97c75923d3e194220f0847", + "regex": "(?i)^https?\\:\\/\\/oliverkhanben\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e012409c5be76fc8b7d786e32c133aee95da40cd72f60c2ad90c4477c8c111bf", + "regex": "." + }, + { + "hash": "ec1897ae7162798c0ac84b30f3e7bfd57611e634e665a95d4e88311c8ff7d6fe", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "20a82276ecf04e984fac37ae260710885ba97dd2a4fc482e374780c5237cffd4", + "regex": "." + }, + { + "hash": "5b0b657b55378a6caf9b07ba2a53062b204400d2ed46efa14e8f4ebc4632210a", + "regex": "(?i)^https?\\:\\/\\/bafybeid5uualtv2y7hvmwy222opymppba7lqetbqlcgyn3pdqhe5sk7isa\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "eb6b3774560cbc24709dde876115ba038bf194077696f03beb5a9bc61b3066b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+UXVYnk(?:\\?|$)" + }, + { + "hash": "4d805a072a3487b1d1eeba7f6cbe6dc1f0a562205fee248ecb20102ddca68e88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "271b04392d497587f5def17610996a2ff9557266c897e38f4fe31e418bbebbde", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1c3b130d19a14fb9cff7e1d983ea7954b31f9173a45092688623a37272627fa3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1ce34f66c07dc225d4f3118ac980200c070d966b738ca5e17e1044d9ca1b4147", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "4573d92674e693df50d2edf80a29e3dc5218a6da1089b76206e94430a9d61a96", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938c13cdc5\\-ba74094a\\-e64d\\-4f45\\-ba9a\\-d85a4999f939\\-000000[\\/\\\\]+ezkB1BHZkpoF8CSpZSRI8bEwXt0\\=402(?:\\?|$)" + }, + { + "hash": "ce3c9a256d020e4eb07724f4d7204a916350ba254ab9b91fa1d284cfacd3fe31", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ddd0ac378c8339fd7dc34435f62334412cfb6e68a0ab7402144f61da4f297433", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+KdFQIQ(?:\\?|$)" + }, + { + "hash": "f560755563feb5594d9ef0353d29549ee39e213999b55ca55b13fc82a7413806", + "regex": "(?i)^https?\\:\\/\\/instagram9740\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f90ed76ff1a2dc9738aa28b975e22511e308104fa021d175d2da7eac65fdd3d9", + "regex": "(?i)^https?\\:\\/\\/100nightstale\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ddd0ac378c8339fd7dc34435f62334412cfb6e68a0ab7402144f61da4f297433", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+YUo9v9(?:\\?|$)" + }, + { + "hash": "5ab35343ca8440b0e7f7a3853f885da620e55c2b5bc04c4aef50a67f0386618c", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mrhcgn\\.com\\%E2\\%88\\%95ujeylbve\\%E2\\%88\\%95uyfqpj\\%E2\\%88\\%95zhkponatgx\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hlxsrgvb\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f390ab1b588f76025359082825882797803a88caa1fde1f6ce29402e3cd43ef8", + "regex": "." + }, + { + "hash": "23b8b755d92a747f1ba7430d2f9a0a6678206deeb441436cb2c701e4db56e187", + "regex": "(?i)^https?\\:\\/\\/100nightstale\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "0a6a9ef5d29e26234298a94eceaaa5d5ec4451938cf43e91a69082e878adaa90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login[\\/\\\\]+pin" + }, + { + "hash": "aee028aa708997ef158c470896e229cd9b55049320a06685360862cf45f11a86", + "regex": "(?i)^https?\\:\\/\\/esta\\-fetc\\.help(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "20411f8cdffd664831e55ab1bcc9d3dfc68b311d47e398ba779d3562d7acb7f8", + "regex": "." + }, + { + "hash": "9b788adf782d18abd0c02d529602d8fd81a14377d971f6064bd0e82a0ec440dd", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d3bc7994b0a7c34faab7baac3e1bdb84611336368fb81381f53f815826b0d699", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jSJFDYUwPAfiZtczvQOYbhxKk9RQ5tmHZvlRX8icEJkVPJmdyY2i\\-i1QLsuB\\-YU_M15u0Vo\\?_\\=00a06109\\-b411\\-11ef\\-b1a2\\-54f966664ebc\\&d\\=BQ5qQHPeDpfWlTnBLhc7MWft8vyQ59W0_1U5gG7KMdwwFaqOYYRiBV9HJrUuuD6FcTMnY0C8I3ruXtAI4DWsLZ380PLJKjjSs9wxxe3W925scW9girf0zy4mUXTqfGt5PHEFbY15mI1VFo03K_2_K\\-G6dGKKXJWydhPpuOMzliEtBD0D38_0evCBWqQsW5vkQRpnB77A6fdLiByC0POCVy1A1t0\\-F7F4F\\-juk8cSCnmG7m1OoaGqCNVtgN2D2jh_QP8hFPjvC_fVLLCPSTbyH1IY\\-Wd8rIC5VV8eHdmLUYcBQP2DDf4PiPgLOEKBAYCP4srqcqYAUQ3kGTKAllY9eMRieLa2Jb\\-BEU9HNccSI6aUqGfiKjk1D35QifKkszQ77C4cA68MJ_Ya47tA\\-\\-hVwkQaY7\\-WfDOJmZvF9LG6P4P2h_G0qymMh25Lv__0Z1C9IcAXkLytx7bYvAZNc6PvN0KsfH9t16RW1l\\-2iiUW1\\-zd5mtitLNtOkX17Li3mB1psZAeVxEgtpROTfhhRTtsYHFNGTD5YVzwiOqHR3hY69ibxPksnx_so__FpIx5HAf9dLIErczFarhIf9TnS_5Kfe6uC3uShGsUQmO2ljvh16wQhoxSMnx8pFSM0A0YDg76F0EXXZjpvtekhiDgxZ6hkPdLqp0ptHEXwH7HllnIaYDu_DT1QW8FeWNaPkCZ9bKfiC1c1Tbsntjg1BCN4Ed\\-5jHU5Kz1TNNYp9zi\\-qe71jiAsuFwYEDKNt7W0wgDxR9491bjDS4OJFmAPuiPl6\\-oEStZ9p8pOL\\-29_JGnfWNlgt5Iks_mHneesDzvlkvAtqvP5BeJDBxTlq5M2wyd80y9Yi5XUUOr\\-_SIiIPa7ihS2Lb\\-9wPMt_qHxI9LmSU0Jt2dcUViCNEqLo7JJCW_JT\\-5zUycV8wlVvkkXxCXYGB6GyL5z0FR874Fownvi_NBAWYxpRHKNoE1A2ocISly0oXzow72kx0xPT8V39x1D_DQlQPsVVbbyN9DtTLIS_EF_n0RhdR2iq_Ah9bMjk5WhpOphOqDMpm3uDEBfF_m\\-dMxTfscsUPkIBZ1zVGnATi4jZadnsf19Ag7OjizcNmfWr2GKTMy22u00cy21vt0R5KyqtWIZ7Fh1g41kmQiYfxfG70cmP6k4qRE9HaL\\-NUaHqt3bXXg5nRSKnnzrGNIbK3D2fRVJ_aFJy\\-ER1A8KnkF9Bi9tNQh7S5VjSjSqgr2nBZKcyS7Rg3ru3WncHlShe1QKmqqCqdbXDVtaKyVQe1H_9m9OjeVYg29nfu1\\-vcupjinh9iEx6bAQKTNYYImlUiY3Ppw6A4CY7zgOqhiM9A6JZ7E2RUTZSj9CxNjmxfU9yZwV6\\-xdXCfOTD3JDJoPJ5jmHGmN84cUsnFgbcS2CSzzX_THNcZt8KOo3Yh94\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "52a32eeaedd6a84c294fe3db675a8136b9ba53f24c894c68f3ca33650f094303", + "regex": "(?i)^https?\\:\\/\\/binance\\.com\\.179\\-43\\-172\\-131\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9ef02fd4ccabeff20f59eacd66f07f8ebfc0aab0ffd875b84a18df4e63fcff49", + "regex": "." + }, + { + "hash": "d8b2bb36d74b37a3e64329f49aece9b1b79583bd792eb15d73c5352ec1ddc19c", + "regex": "." + }, + { + "hash": "d89699227198483fa6fc714b44fac074c478187c58eee558b0176487756825a4", + "regex": "." + }, + { + "hash": "e7868327b555f2e745270c3adeb5367fec400504d9fd52d57d8e7f6192f2ca8e", + "regex": "." + }, + { + "hash": "f75e92304af2b260e8f264c12a4505902c35e467970936c859d81b197c8775d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+4(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "34c072e35dafabab22b032ca24077764cd88faf7f8393da99bb7886a36f79caa", + "regex": "(?i)^https?\\:\\/\\/nicfoodnetworkckoo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "d88d32e2da0c90f8c6dcd857cb006b15902db5a15e78bf1458cbd954e1b7e94a", + "regex": "." + }, + { + "hash": "1eaf140093c4ae1b183606305c600cabab2c73ff9ec19626441cda0e9d13ca02", + "regex": "." + }, + { + "hash": "bb9915594638b32dac05b075c3578af77b1ea8e7aecdc946ce6bf4199ba53b30", + "regex": "." + }, + { + "hash": "b464cbeb7de965a6f0487a89966b2f27d4e521fcb367ce7bb26c45043992cc4b", + "regex": "(?i)^https?\\:\\/\\/zitkzcr\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "da3c082fa55461868c1e7c2bf07ac64a90b79e19e02b86d3131ba96f3af584d4", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-gratisss\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5db7474132b9c4490d60039c421c5c4993536187227b6e40e384568c9bb7a4b7", + "regex": "." + }, + { + "hash": "651df7b3074f22b709d2c2d046dffd54ebba414bf366e316ea0737eb7ae1a66c", + "regex": "(?i)^https?\\:\\/\\/signin\\.securex9tz3fbj7w\\.147\\-182\\-233\\-19\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cf158f0180169aa3e440fa75693e1fdd02a702fdc07457012859bcae8b9f1db4", + "regex": "." + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+contact[\\/\\\\]+112131072835037(?:\\?|$)" + }, + { + "hash": "4f03c2da8bfb1f5f5277181d2e297a34f9caad2f2d9f2b5a62a4728ee0a88e26", + "regex": "." + }, + { + "hash": "6a75ef359e52af7c304c738dc5d952414176b254a309786c7c0851f87c4023b3", + "regex": "." + }, + { + "hash": "5858fd7f93a4724cae251cee81ae8bfe81ee07e6ccb0096cfe95d623676f71e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+S4ntander[\\/\\\\]+Registrarse(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4dc680a0c24eb6f0e045cf20496ac405fbf5dc2b1457af46690fb7101884825f", + "regex": "(?i)^https?\\:\\/\\/redirect4bt\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3c0a1832d25622ffd798e1946b96ec3050c852fb5592f0d2d59042b1a4022b23", + "regex": "." + }, + { + "hash": "1b11ae1bf4c3f6a4d92a30cb98123f06d27a7f3591aac04488fbafaf17b04513", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cd508e23239d3245313ea114f9430c74231cf25dbfd36bc4f3a53849e8fe68b3", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2f3b36549fc7951d70129432340a534b43428b95b4613a4fa389cdf24b5bd1ec", + "regex": "." + }, + { + "hash": "b583dc1a494825ad1592bc9c1cfd2c11c47fdf3119f360652a59b1faf08219cb", + "regex": "(?i)^https?\\:\\/\\/talktalk\\-105127\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6f6e2fec8cd9a5ff5eba7b466178b7bb7cf0a5158432c0c3799845404a6f64ee", + "regex": "." + }, + { + "hash": "82c5428212ae15193eb21e79c9ed6c4d1fa15223abc8892834c9be8a0625bbc1", + "regex": "(?i)^https?\\:\\/\\/instagram9740\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0b9ab17257de4f4c1e6281f4ca5dc2fbf17d1e8d8dbe1dcbd5816c19d8fdff5c", + "regex": "(?i)^https?\\:\\/\\/instagram9740\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "96908f995c1eb673d701ee3ba1dd3a4aaf98b4c14033c6298049f6d116ea7257", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4d805a072a3487b1d1eeba7f6cbe6dc1f0a562205fee248ecb20102ddca68e88", + "regex": "(?i)^https?\\:\\/\\/hgpdhkp\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "cfd13ada12683e9b675551e466e4f785b927e374d4f742326ccac7e2e3fbb359", + "regex": "." + }, + { + "hash": "609c31640e470b9a331cfe77b38592a02c546286f35bedb4a1154ac9c19a2279", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+receive[\\/\\\\]+order[\\/\\\\]+wtPcNZhzfdU(?:\\?|$)" + }, + { + "hash": "5dd2c340085282d320559c11970d1c5e74790cd0e7ab3384012ebb30e3f034f2", + "regex": "." + }, + { + "hash": "32ae353795ed73894322d8c5be46967e1ea34a53ed0aefd34b7286b1813bfda6", + "regex": "." + }, + { + "hash": "e0d187ef2678f1018fe7b4453912a30563642b026c77551ae44eca14980749b6", + "regex": "(?i)^https?\\:\\/\\/mail\\.20\\-115\\-51\\-4\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+admin(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2077ce01db7cf22b0434cf7b789ebb7c335354c81885ca7fdfbda4375244e1dc", + "regex": "." + }, + { + "hash": "835952db1d86844132baee3288cf90bf45da789e9ddc8e7e2f1f75a688f56181", + "regex": "." + }, + { + "hash": "4007e2b63d8d0906523ab56ff92571cac9babc630845ac14400a7f2c912592fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+otpbanka\\.si" + }, + { + "hash": "8cd5927c5305469febbbd61e486d778d559a11f2bf3dbd74710df61b705114b2", + "regex": "(?i)^https?\\:\\/\\/95779908\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5eecb107d7fcafe24449a3b93a22bad914ac3efa79fc4be4d621eb26acb820a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ls[\\/\\\\]+click\\?upn\\=u001\\.Q5bEgA4dKJilgLN8\\-2F\\-2FCgsqI\\-2Frek46Y0jPPcPUTwKWdQFbIodHTYTbk5ixG\\-2Frg6PkBH9AVWz0wG\\-2FzhGsKMSCWiinYvnaK1reMNOhhWO7nZ9\\-2Fajoa4P4PT\\-2FDPr\\-2FA0aGwb0vLkbYav1gjlipeX\\-2BPl\\-2FGKCvBxQ4Yj\\-2FGNXN5TrIqyc1SVvv8miKb68kPQ6NXxFyyg0NK04\\-2F80F5FNAeivrRUmhSMqVfNUJyZ5H039rwwBbiY\\-3Da2G1_kbOAseur4mcTROjjpt4YOwRpyGJq2GXaH2dpCvVrJHoSUwY9QfgF0\\-2FsUB7B6K\\-2BrAWtTvlu93yGfVyaH5IeQftlb7Ang55Uo4GaNTG8\\-2BUduX0L5iR34D0ozwqvnmPt7L\\-2F2x3r4W05y4H6AfsTcJAN\\-2B\\-2FPGSGcRZtAWcWIz5KDw1VsQAKDzwt4AFTA1LT4Crz1\\-2BHGckcydlCd5huuvHDQtSCA7FlgxKUDdQZ3K7D1nn68B\\-2BejrEqw0BTdiyRgiasO\\-2BPUINIAngAs2A5cmbV47JMTjMlQZtTgnv7IjDuI21SAk8YsyBza\\-2FYc\\-2FQOpl\\-2FgE0KYglVld6F4HKYMYDjl\\-2Fp4ZCz7QY3WFDs3tGiEyK9xIMz5QNmiD0Vh8BFCM2jMOk8DDxkeO558QQFRksomBuLVjQ7\\-2FPTy8Jdi5XrkD\\-2BFXGWhWQeqaEnzmjg9Us0j0VDSOqmHrp6Qiv9MLNALouo0fEhRuN9f68AvBBTgY1j\\-2Fj\\-2BJSrXjfpmw5k35CvBTBwjaV6Bkyz8sobJoAe232M\\-2BEBzquHGw\\-3D\\-3D" + }, + { + "hash": "75755d74e2d8c14d211b8c7885156904ba3326622f75d5b77ac7d865982f5987", + "regex": "." + }, + { + "hash": "02658bc4a70fd5bc8d1e8a083bd4451576b6574dee019eec8d54fca51b96d479", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595124\\.info[\\/\\\\]+1[\\/\\\\]+010001938c13cdc5\\-ba74094a\\-e64d\\-4f45\\-ba9a\\-d85a4999f939\\-000000[\\/\\\\]+ezkB1BHZkpoF8CSpZSRI8bEwXt0\\=402(?:\\?|$)" + }, + { + "hash": "4b033527a61b772cd5ccb5f7f39d614158e23c671b04abe3e60bbe142fc04364", + "regex": "." + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?ts\\=1$" + }, + { + "hash": "3af5591671e1a0e8f420b8b185555b1a55724036171dbd8cc6c45a7b94cfccdb", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0e8b98a07e6e4baf336e19d0dbb418c9f1bfbc3efbf79a78c8d1daed151dc74e", + "regex": "(?i)^https?\\:\\/\\/ws\\-7e1\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938c9167aa\\-8ae6b1ca\\-3eb8\\-4539\\-8935\\-fe8296aabfa7\\-000000[\\/\\\\]+sZ5\\-arCsQEvSOWRD4Ah35FqAmGk\\=402(?:\\?|$)" + }, + { + "hash": "2dfd962eef2049c04af63afd6220f27923b4d289ab9a63a5293048d3470f5f75", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:\\?|$)" + }, + { + "hash": "a4c7a25a0201f418783220e3863e60d43430da8508f918eac54ef80ff3f2a812", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1926b56d9aea1baf12afcda6b2ae3407014fe0df229a43566dd0b2f91c290f67", + "regex": "." + }, + { + "hash": "53dc7c18880108ea452e3dd70096c5a8e36464a2fca67e6d99c59c1a8ae858f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "e8ce919d0dc5d36ed372ee3ff26af0ec622507c49ee7f749bb66216325b1c23f", + "regex": "." + }, + { + "hash": "02658bc4a70fd5bc8d1e8a083bd4451576b6574dee019eec8d54fca51b96d479", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+http\\:\\%2F\\%2Fsncf\\-avantage\\.s3\\-website\\-us\\-east\\-1\\.amazonaws\\.com\\%2F[\\/\\\\]+1[\\/\\\\]+01000193878e922f\\-55a297fa\\-9d97\\-4673\\-8cc5\\-5334054a838d\\-000000[\\/\\\\]+blM5iGVGJSF551y9\\-9_b8FXROMQ\\=402(?:\\?|$)" + }, + { + "hash": "444a5fef1ee5917afd0b969ac933ddf360cd72dfae4c2125e4dd2f9389c6912c", + "regex": "." + }, + { + "hash": "5df5d9621f57c41b239dc43fe0b3dda179626962b58c5182557e3006a7fdabd0", + "regex": "(?i)^https?\\:\\/\\/eki\\-netgrebipwq\\.com\\%E2\\%88\\%95qfzrjadt\\%E2\\%88\\%95meqerlns\\%E2\\%88\\%95ylcjheshq\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=nnkcieqxg\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "be772fa8ce911451169a6d2136c1e31e7633add850bcb244d83037fa6ce0d8c3", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-gratisss\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "06729ad257d9cc2057b83b9231a76b3d332f262d6a400eb35af766165751c750", + "regex": "." + }, + { + "hash": "1d70d99f4724775a101fe5825f378881f723191a191c85b4565ca1ad4bdbfddc", + "regex": "(?i)^https?\\:\\/\\/instagram9740\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ec0a066679e63ac9e2873b26e367594b1f76ffc249958a1312028a5604286889", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nplvmljnfd\\.com\\%E2\\%88\\%95xqdntqajmq\\%E2\\%88\\%95kznydiob\\%E2\\%88\\%95vrkymbyxt\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=kygzflini\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "86909525e888ff37b4cb3e9912e1c5d5ca5108ddcdf52826a5f83ab328c15ab1", + "regex": "." + }, + { + "hash": "e3d7ebc5f92ebdda68f139ba5d96a01a720bf548f5944ad2ef15f2d5b747efbd", + "regex": "(?i)^https?\\:\\/\\/moedas\\-habbo\\-gratisss\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3434fe7bba5b859ca7c291cafd48322a896e3441d073da081e8df06447c5050f", + "regex": "(?i)^https?\\:\\/\\/renewcsnst\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6d7440fdad426e910332c36fd750fd5656876a2a805ed9bce1eea0ba4cc549e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "414127f9057acafd8fa778e41c0f3b2934e56c6908446b5e06c527aa6103eb81", + "regex": "." + }, + { + "hash": "b08fc8e22fab590fae32901d6119cc6707c3149e72266873995991c8a886b692", + "regex": "." + }, + { + "hash": "f188d360d822e6ccd126566f5228779ed883ff1d28d45e8d632a9ef7fb8315c0", + "regex": "." + }, + { + "hash": "1a3ce1fe14d48f2cf0ca1355e94fbefeb9893952474fa982a90e28173f84e36b", + "regex": "(?i)^https?\\:\\/\\/multiservcorp\\.click(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "8419f4eed8f5880f1a368bb44669b68871bea77b95fb375aa8b6a08183a82d0c", + "regex": "." + }, + { + "hash": "cdb090fa4652e93e4c786ac06bfbf274e17eae4b6244ba3ba114abf1e2db7c9f", + "regex": "(?i)^https?\\:\\/\\/100nightstale\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1a2f64b4682fc47b6182504d95b7602c06d481f311816a7f182486f867e6d1f4", + "regex": "." + }, + { + "hash": "b69b9a322187755fd574ff295f4b85c2009c8c2babad5606c978226868f57ff9", + "regex": "." + }, + { + "hash": "81816130390af3ed0514c2b0de770e92abc440a53270a51857373f4ae8bab264", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "67f234eb814b5a11b13b8eba2db38ac3308a0b97ddee42bb4124110810214157", + "regex": "(?i)^https?\\:\\/\\/esta\\-fetcz\\.help(?:\\:(?:80|443))?[\\/\\\\]+mex(?:\\?|$)" + }, + { + "hash": "3544f7245fa5f353429ff9c758a0fb8e450837a83daa7f09ce8d50469b63e312", + "regex": "." + }, + { + "hash": "280db1bfdf574fad0e8e270fcd5fb8600eb73d7c38bd38089003ae050070e8bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "defdfab1596685f1ddc6a3c1055825d012fbe6339ff94229ca5d490f82367ead", + "regex": "(?i)^https?\\:\\/\\/pub\\-eeec989a756747bda7bc4110beb93e52\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0441ad2a8375110d006e0cf551861eca29f7f4e757af239fb901399216574be4", + "regex": "." + }, + { + "hash": "a7154d12a380cad41a2288ed25bd72a7673e7cd2b89a2df90c3f66574678f401", + "regex": "(?i)^https?\\:\\/\\/barlow\\-is77\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e77c4c20ae32f034b5312000c3dc593abd98dc7ef48908b2b937c852ee296986", + "regex": "." + }, + { + "hash": "a2a4c83b68a132e07a257a27cf3e5d8432fc733f4ec4505c683a78e605e5ae50", + "regex": "(?i)^https?\\:\\/\\/amazon\\.mkzzlgo\\.com\\%E2\\%88\\%95oxzhyw\\%E2\\%88\\%95cskamyom\\%E2\\%88\\%95vmwmzii\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\%EF\\%BF\\%BDimqah\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4624a27b235d4357e3fd691d23a11f6b4b75dbc230071b562169b212416f38f1", + "regex": "(?i)^https?\\:\\/\\/instagram9740\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5a9d0299418dbb2d2f1a76387cc856a959b90d0fa848b0d76494785ea7e54f11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "93c9e426144a3015a7abe378d08db6a20575e32b7bbe98d0d2a3c21e5dc3856c", + "regex": "." + }, + { + "hash": "b22c155a127b126c9a4dc93e627af1571edd822499aaa0d6139244d63332d518", + "regex": "(?i)^https?\\:\\/\\/tranquil\\-kitsune\\-687191\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "e4be2d02330de1e364b3e5adbab4a354ab9f022ed3335152942141d887a3dce2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jSJFDYUwPAfiZtczvQOYbhxKk9RQ5tmHZvlRX8icEJkVPJmdyY2i\\-i1QLsuB\\-YU_M15u0Vo\\?_\\=00a06109\\-b411\\-11ef\\-b1a2\\-54f966664ebc\\&d\\=BQ5qQHPeDpfWlTnBLhc7MWft8vyQ59W0_1U5gG7KMdwwFaqOYYRiBV9HJrUuuD6FcTMnY0C8I3ruXtAI4DWsLZ380PLJKjjSs9wxxe3W925scW9girf0zy4mUXTqfGt5PHEFbY15mI1VFo03K_2_K\\-G6dGKKXJWydhPpuOMzliEtBD0D38_0evCBWqQsW5vkQRpnB77A6fdLiByC0POCVy1A1t0\\-F7F4F\\-juk8cSCnmG7m1OoaGqCNVtgN2D2jh_QP8hFPjvC_fVLLCPSTbyH1IY\\-Wd8rIC5VV8eHdmLUYcBQP2DDf4PiPgLOEKBAYCP4srqcqYAUQ3kGTKAllY9eMRieLa2Jb\\-BEU9HNccSI6aUqGfiKjk1D35QifKkszQ77C4cA68MJ_Ya47tA\\-\\-hVwkQaY7\\-WfDOJmZvF9LG6P4P2h_G0qymMh25Lv__0Z1C9IcAXkLytx7bYvAZNc6PvN0KsfH9t16RW1l\\-2iiUW1\\-zd5mtitLNtOkX17Li3mB1psZAeVxEgtpROTfhhRTtsYHFNGTD5YVzwiOqHR3hY69ibxPksnx_so__FpIx5HAf9dLIErczFarhIf9TnS_5Kfe6uC3uShGsUQmO2ljvh16wQhoxSMnx8pFSM0A0YDg76F0EXXZjpvtekhiDgxZ6hkPdLqp0ptHEXwH7HllnIaYDu_DT1QW8FeWNaPkCZ9bKfiC1c1Tbsntjg1BCN4Ed\\-5jHU5Kz1TNNYp9zi\\-qe71jiAsuFwYEDKNt7W0wgDxR9491bjDS4OJFmAPuiPl6\\-oEStZ9p8pOL\\-29_JGnfWNlgt5Iks_mHneesDzvlkvAtqvP5BeJDBxTlq5M2wyd80y9Yi5XUUOr\\-_SIiIPa7ihS2Lb\\-9wPMt_qHxI9LmSU0Jt2dcUViCNEqLo7JJCW_JT\\-5zUycV8wlVvkkXxCXYGB6GyL5z0FR874Fownvi_NBAWYxpRHKNoE1A2ocISly0oXzow72kx0xPT8V39x1D_DQlQPsVVbbyN9DtTLIS_EF_n0RhdR2iq_Ah9bMjk5WhpOphOqDMpm3uDEBfF_m\\-dMxTfscsUPkIBZ1zVGnATi4jZadnsf19Ag7OjizcNmfWr2GKTMy22u00cy21vt0R5KyqtWIZ7Fh1g41kmQiYfxfG70cmP6k4qRE9HaL\\-NUaHqt3bXXg5nRSKnnzrGNIbK3D2fRVJ_aFJy\\-ER1A8KnkF9Bi9tNQh7S5VjSjSqgr2nBZKcyS7Rg3ru3WncHlShe1QKmqqCqdbXDVtaKyVQe1H_9m9OjeVYg29nfu1\\-vcupjinh9iEx6bAQKTNYYImlUiY3Ppw6A4CY7zgOqhiM9A6JZ7E2RUTZSj9CxNjmxfU9yZwV6\\-xdXCfOTD3JDJoPJ5jmHGmN84cUsnFgbcS2CSzzX_THNcZt8KOo3Yh94\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "3199239643c5b9949dfbb50c06e72d5625a8245d643bd2cb654a1653bb037ad8", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "86ddcafecb672e3a3e6a6227f3297fd8654286b1a2d796c85d1519800db27083", + "regex": "(?i)^https?\\:\\/\\/nifoodnetworkfoodi\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595127\\.info[\\/\\\\]+1[\\/\\\\]+010001938a7613b0\\-28e5679f\\-014d\\-436a\\-b461\\-cda8bd3711be\\-000000[\\/\\\\]+KD89tkCMjCsEXIgtKXNLMJifnR8\\=402(?:\\?|$)" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ezow4y(?:\\?|$)" + }, + { + "hash": "3a5be3cd31afc05c5c0d69c5274ec37f0c09f2fa7efc6ec89730b6a327660681", + "regex": "." + }, + { + "hash": "0be67c14108a8ad293526abb8f0e198dd1b4077c15b3ad557defc8d7fbf108f8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bf1f329379e2f1138deb8f91c6e0c63c8064a247356505ddb3c78e45dca5ecd6", + "regex": "." + }, + { + "hash": "134e16cf03ab4f6232443c74eeaaa7102dc27742159fdb9bfde6d0bd3a8fb03a", + "regex": "." + }, + { + "hash": "ca66e42ad3547d5a70ce2043c320cd30aa047121ebfa1ea0719517ef4649df63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Url\\.html\\?ant\\=y5m4mybq$" + }, + { + "hash": "2233742afbe99d9e41b2dd8dcb95b1e0777c8816eadcb7248c16187c82572b82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f9190921cff595d619c6f0d445712c7ad061d1223f978592c89be2f075d6b0b", + "regex": "." + }, + { + "hash": "12feda55491b9e7ae9ddc40f794f949d7dfb4b69ab36b844e3d8d9916af890df", + "regex": "(?i)^https?\\:\\/\\/amazon\\.pcxqw\\.com\\%E2\\%88\\%95wjrweeqn\\%E2\\%88\\%95isbmufxxch\\%E2\\%88\\%95cgjinya\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=pkpmbcijep\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f4baf9fdff5f618cf183a3f9647f0826515f5d07d486f0bbfa7e7ee329d95206", + "regex": "." + }, + { + "hash": "b6c3e56d9aff89d863e63e48a50e341ce87a0803758fe17a15997533c577577e", + "regex": "(?i)^https?\\:\\/\\/internationaldomaierepresentationmainserstexts2\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ede05d128ec61fd74c937f47b8aa3e1accee2300d3ca17e6b3089a87bcaca1eb", + "regex": "(?i)^https?\\:\\/\\/amazon\\.chepml\\.com\\%E2\\%88\\%95wiyuhflagf\\%E2\\%88\\%95nhfugfif\\%E2\\%88\\%95upqgoujwdu\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=wdcbnu\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da7a316d222d1c8bb9caf85999af026803affe549b3c3b17267d87ac9f253f3d", + "regex": "." + }, + { + "hash": "c53ed6e3a49f34aba386e517a50f64a3709bc78025ee844fb4595ee7b068b212", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes[\\/\\\\]+\\." + }, + { + "hash": "308d892e5db314e03d6b3cd517909b1e4d403495cdf472d7e29ae13175e6c53b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+at(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0325c903d244a3b3e7bc98df49019cfca983479e24978b61999fe762ea9ace8", + "regex": "." + }, + { + "hash": "a941e2127aa3bcb4de10ce6a398b90c76e0bd7bb5f12abf1be92ee70d7ad4fc4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2Flanafost\\.s3\\.eu\\-north\\-1\\.amazonaws\\.com\\%2Findex\\.html[\\/\\\\]+1[\\/\\\\]+01000193a41d146e\\-0201398b\\-d35f\\-47c3\\-ab7c\\-a284e0a141b4\\-000000[\\/\\\\]+_wis4R2VK2KSidNLHb8gzpgKj\\-0\\=403(?:\\?|$)" + }, + { + "hash": "ec0a22a4c192ef6a97dd6c31ccb6465c3df401b2e34b6540932870e6dc09ec4d", + "regex": "(?i)^https?\\:\\/\\/czptso\\.top(?:\\:(?:80|443))?[\\/\\\\]+c(?:\\?|$)" + }, + { + "hash": "f0d36bdc2397f00d79e4b39ac0f4e365699e72054ba13c6966868e5cb10f2b21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "254355240b889ff4aa2d3c3b3cedce51ef4b92af251f7b5436e3927f44f02a14", + "regex": "(?i)^https?\\:\\/\\/amazon\\.nrndh\\.com\\%E2\\%88\\%95gvlqszivqc\\%E2\\%88\\%95pmugcg\\%E2\\%88\\%95fmjzik\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uhgetfaqx\\.co\\.jp" + }, + { + "hash": "f81c89272eac2ca811fa4ce5dbca028aca5b0781dae75d720accc8a9489779c1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jSJFDYUwPAfiZtczvQOYbhxKk9RQ5tmHZvlRX8icEJkVPJmdyY2i\\-i1QLsuB\\-YU_M15u0Vo\\?_\\=00a06109\\-b411\\-11ef\\-b1a2\\-54f966664ebc\\&d\\=BQ5qQHPeDpfWlTnBLhc7MWft8vyQ59W0_1U5gG7KMdwwFaqOYYRiBV9HJrUuuD6FcTMnY0C8I3ruXtAI4DWsLZ380PLJKjjSs9wxxe3W925scW9girf0zy4mUXTqfGt5PHEFbY15mI1VFo03K_2_K\\-G6dGKKXJWydhPpuOMzliEtBD0D38_0evCBWqQsW5vkQRpnB77A6fdLiByC0POCVy1A1t0\\-F7F4F\\-juk8cSCnmG7m1OoaGqCNVtgN2D2jh_QP8hFPjvC_fVLLCPSTbyH1IY\\-Wd8rIC5VV8eHdmLUYcBQP2DDf4PiPgLOEKBAYCP4srqcqYAUQ3kGTKAllY9eMRieLa2Jb\\-BEU9HNccSI6aUqGfiKjk1D35QifKkszQ77C4cA68MJ_Ya47tA\\-\\-hVwkQaY7\\-WfDOJmZvF9LG6P4P2h_G0qymMh25Lv__0Z1C9IcAXkLytx7bYvAZNc6PvN0KsfH9t16RW1l\\-2iiUW1\\-zd5mtitLNtOkX17Li3mB1psZAeVxEgtpROTfhhRTtsYHFNGTD5YVzwiOqHR3hY69ibxPksnx_so__FpIx5HAf9dLIErczFarhIf9TnS_5Kfe6uC3uShGsUQmO2ljvh16wQhoxSMnx8pFSM0A0YDg76F0EXXZjpvtekhiDgxZ6hkPdLqp0ptHEXwH7HllnIaYDu_DT1QW8FeWNaPkCZ9bKfiC1c1Tbsntjg1BCN4Ed\\-5jHU5Kz1TNNYp9zi\\-qe71jiAsuFwYEDKNt7W0wgDxR9491bjDS4OJFmAPuiPl6\\-oEStZ9p8pOL\\-29_JGnfWNlgt5Iks_mHneesDzvlkvAtqvP5BeJDBxTlq5M2wyd80y9Yi5XUUOr\\-_SIiIPa7ihS2Lb\\-9wPMt_qHxI9LmSU0Jt2dcUViCNEqLo7JJCW_JT\\-5zUycV8wlVvkkXxCXYGB6GyL5z0FR874Fownvi_NBAWYxpRHKNoE1A2ocISly0oXzow72kx0xPT8V39x1D_DQlQPsVVbbyN9DtTLIS_EF_n0RhdR2iq_Ah9bMjk5WhpOphOqDMpm3uDEBfF_m\\-dMxTfscsUPkIBZ1zVGnATi4jZadnsf19Ag7OjizcNmfWr2GKTMy22u00cy21vt0R5KyqtWIZ7Fh1g41kmQiYfxfG70cmP6k4qRE9HaL\\-NUaHqt3bXXg5nRSKnnzrGNIbK3D2fRVJ_aFJy\\-ER1A8KnkF9Bi9tNQh7S5VjSjSqgr2nBZKcyS7Rg3ru3WncHlShe1QKmqqCqdbXDVtaKyVQe1H_9m9OjeVYg29nfu1\\-vcupjinh9iEx6bAQKTNYYImlUiY3Ppw6A4CY7zgOqhiM9A6JZ7E2RUTZSj9CxNjmxfU9yZwV6\\-xdXCfOTD3JDJoPJ5jmHGmN84cUsnFgbcS2CSzzX_THNcZt8KOo3Yh94\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "bee1b2dfa492b2d89ace956362b74e49b8bc970c78fbf0d2c44dbc4ee2c21fd5", + "regex": "." + }, + { + "hash": "495ab34a9fa63970f3ce0b62901e196e59feef536ca371009df2c5c671f158a3", + "regex": "." + }, + { + "hash": "fa9e2b8d764b7c746708bff4fd72696ad609c4b8d488f803e196e11b83ab6790", + "regex": "." + }, + { + "hash": "0f011668987ece83ea5fd5179c27df370e269a0a430f1f98a3a4704aec5716b6", + "regex": "." + }, + { + "hash": "a7f1ab2637a5777d5545e1481b142dacadedddfa9f41dde2d2f7cd10d2cd50d3", + "regex": "." + }, + { + "hash": "5082db83a28433d08d09e3422818668bbe36d12f43a99b5c8f9ba3930f9f0aa1", + "regex": "(?i)^https?\\:\\/\\/nicfoodnetworkckoo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d89dbbbd09e9e0573cb512ed72ca1571bd0ecb4ae3edee63bff9bd1465ea3ba9", + "regex": "(?i)^https?\\:\\/\\/supportoakleyt\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e7a591aa45ac28e06e609cea368b57ebfca6b3c9a90e74d28b51bb8b8dead3a2", + "regex": "." + }, + { + "hash": "35117d2f50ec3e2c271f139a87d61ba54203ec8285358b1f87eb0a07f72eb1fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ctboiht3kl6c73cfml8g$" + }, + { + "hash": "3aaf8b1d516e2fac656d57ba48a8a147cc67741921048d3585594550e66df1c3", + "regex": "(?i)^https?\\:\\/\\/spxt1\\-mail\\-vcfx\\-nu7io6\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b8764c0249873c32fb0d8a4d0bd73da7b1dc8a4409752c776bfbe524cb114f90", + "regex": "." + }, + { + "hash": "b164de9ee7bc75fb32be78065bde556e8f1c84ad396f83e6064d081710af6021", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+http\\:\\%2F\\%2Fsncf\\-avantage\\.s3\\-website\\-us\\-east\\-1\\.amazonaws\\.com\\%2F[\\/\\\\]+1[\\/\\\\]+01000193878e922f\\-55a297fa\\-9d97\\-4673\\-8cc5\\-5334054a838d\\-000000[\\/\\\\]+blM5iGVGJSF551y9\\-9_b8FXROMQ\\=402(?:\\?|$)" + }, + { + "hash": "6c4e0ccec12e0561a57c091db03319513082f28f5ebe4e485ceb7c580bfd74cc", + "regex": "(?i)^https?\\:\\/\\/100nightstale\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c0600e8ace06ad60ce649c88b363faa623e14d1ca8f7709f059ec07b7393690e", + "regex": "(?i)^https?\\:\\/\\/verif\\-amaznon\\-prime\\.157\\-245\\-208\\-161\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0f5d81724d1f8815cbbe1fc29bbbfa9cc5714c2edf34ed4c2dda6b6e037087b7", + "regex": "." + }, + { + "hash": "bd01f8ec5b69c8c1ee358781aa34bbb16b101d6c0694af9f2f2dea2f6d62c836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+contact[\\/\\\\]+639556077636197(?:\\?|$)" + }, + { + "hash": "931d9cfd28662fb46c86854dd5a46c9aff8955861e756fdee098bcd396f4704d", + "regex": "." + }, + { + "hash": "03c0a8684c8948ed500b0419d58da87f165264ebfc7ef4fc24f9bac3e705ad39", + "regex": "." + }, + { + "hash": "c86d0719ce8b85236a29074ddce6b3e1318be3a1f230b05abdba7a6e35bd44fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9964[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "a9dbe6226c21004083fd958c3bf2614176f335861c3d709d5ce4c146b223e114", + "regex": "(?i)^https?\\:\\/\\/instagram9740\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3ff77fac8498b41652755bc41bade44eeba6502320416116d2e3dbf032ceba7f", + "regex": "." + }, + { + "hash": "4d12bada9c817fefa84361c38d1142f92e7945b97b16f5cb116b18c9a72bcc49", + "regex": "." + }, + { + "hash": "93c685a921c4e175a0400f7cefc08450689bc69355a1cc55a5fcc68f6b1e5c31", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+case[\\/\\\\]+\\$PageID\\$(?:\\?|$)" + }, + { + "hash": "c737163a809dd93dc4e98bfe6d3d5b9640b4a080ae94fced8830c6fc1a68dbaf", + "regex": "." + }, + { + "hash": "02658bc4a70fd5bc8d1e8a083bd4451576b6574dee019eec8d54fca51b96d479", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595123\\.info[\\/\\\\]+1[\\/\\\\]+010001938c71dc5f\\-2f21a837\\-9028\\-4f25\\-9af7\\-0d5308542499\\-000000[\\/\\\\]+ydgNNB9MzoC51SYe7bjDMknHU0Y\\=402(?:\\?|$)" + }, + { + "hash": "971f353ada16889649a2c24e94246bd0fc74c6b04b53c3a303319e81eb89a858", + "regex": "(?i)^https?\\:\\/\\/67178828gmsurv\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "208829aa75f53f457849ef86028c1398b71877db83463e2cd123400ff5338506", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "157527d550f9da7b8a83f0106fe498ab321649ee6e9e2c1a8c6fc8879e886a46", + "regex": "." + }, + { + "hash": "e09213766e97017acc212efc4a52697fbb267fcec18c714bdeb7768a9d310158", + "regex": "." + }, + { + "hash": "78fdfcb57caf18d1fe7427c1e12e1b016faa40ad50eabde6cfe10ed01427f507", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "53bed0a6274914c6726dda7af0169cdad7bc708c1b0c774a946e2cf95ca6c56a", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "1d9e4180ca8d78f23ed1c9bf72d673abffac6c26565d0e9abf42c25f47bbd1f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9077[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "74e6407d17543f1734c2a36a49f8d3b50b523528795f3e20e1346ae10763becf", + "regex": "(?i)^https?\\:\\/\\/sagawa\\-jiuvjadhl\\.com\\%E2\\%88\\%95tdjlh\\%E2\\%88\\%95ovkegbj\\%E2\\%88\\%95oezrb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "f9d9eebc646acd8aad1aba08821575e27cc01b2ac5d9f801837a244272cc2ade", + "regex": "." + }, + { + "hash": "dedc4e74bd77b21d40385e4b082f5e93d80feec10ba71eb29a0cb7caf1b25bad", + "regex": "." + }, + { + "hash": "b69fb5c5933a8089dd40f383d87f9750d58760da1f60ae2436351af01db3d02e", + "regex": "(?i)^https?\\:\\/\\/trackopv\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "1d189b633a6f7666e2f0cba93f83be9c81596ed2c1d607a8926a00ab40534662", + "regex": "(?i)^https?\\:\\/\\/546549861654546\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8c506735a7b55e37bca514d3b94dc76e79e5be6d24df34b2ffc80af2877160c7", + "regex": "." + }, + { + "hash": "1681330c3511653f9a8b9a7d6ff3f40320ba4bf7acff711d119e906a76feee1c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+auw(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "92df266e4cb3cdfecccd9d6d1a90684d171b4e4c6dd40972730d99727893fd41", + "regex": "." + }, + { + "hash": "bb52c77a4485e9a15864f8c0c3e8e628b0268accd2719269f2210ed391454301", + "regex": "." + }, + { + "hash": "2b8bb727c7b3e6f1a0197e052723b22cadb31757bbb470d69a85c13e895205cc", + "regex": "(?i)^https?\\:\\/\\/564149654165146\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "106a0058b910723effb66f81daa1ac43760e55256c1798218d836794cd2a33a1", + "regex": "." + }, + { + "hash": "71b5ca5e88bb7aab0d68db22cfe01e6ab9e8636d043451276285b132d8161ae2", + "regex": "." + }, + { + "hash": "86466f45c698f9bccde05ea63b2a94dd317527021cb22eda71e5f538154a30a0", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "658c2469b0a460efac60b76906a638360aacf7f121c30e78aae96b95c3858b1c", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "33114a57c0d1234ea549af650104ee2728abaeeb8ff0240bc1d4e4af0a0e05be", + "regex": "(?i)^https?\\:\\/\\/85435892356\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8612aff7ed3c59254e30d23066897bc8b83b00d1ffaf6721cc08e90b579c4266", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c90ed15c3e5797921303ef0702984f7f17063f2fd5117f84004a9987ab536a92", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "3390a30e7093e71bb1abc4c821970f4b4872345e6ee2e0deb8fe66f3c3dfa052", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cbe7126f0a6069750552bfe0597dbf2960e7f4003665133322d220c7181d8495", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c5c6d6249323d42f29dfbcc153e51b010b03b259baa11f01fd18da69b6462837", + "regex": "." + }, + { + "hash": "afc02a6ad699a2e8ceb69f57c0266d7266b4c2e0d8910bf2732717a2f360b77c", + "regex": "(?i)^https?\\:\\/\\/pub\\-628d73bfc2a0488a9693d05b8c2a9f6a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bc3410fa6fbed9b45bb7d91ae7a90ff93af3536c62948d5c4d42361cd6ebbbf7", + "regex": "." + }, + { + "hash": "7720d986f2fcbadfe28586e2519a86d8cb7f1684a6387b69a498eed22ac40243", + "regex": "." + }, + { + "hash": "bf94cac91fd21cc97f18e2ddd6e0164ceef9b79e8a86ebc10adb64bf75a34532", + "regex": "(?i)^https?\\:\\/\\/5461954965316\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cca0ded459ca228c499e8f3baf2f220ff8021c0c6bdbbf1094bfc024dd942549", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "852266bfa7a3f132c23c7222dbff8b223f6cd868e62c6c38d738345faf059c71", + "regex": "(?i)^https?\\:\\/\\/hserffrabanaaliman\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cccf5236ac9a2c71dafca0fd286cd7993b845f148190f117904f183e361ebbca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d852425d390856a7b332a91f88644f43d9911d502d961fff3fc22f37f30c345d", + "regex": "." + }, + { + "hash": "d3e61d673553357bc0e3d3d3a94c8c942ea98976f4e076e564a4bd4791c624a8", + "regex": "." + }, + { + "hash": "381b56000faf2f6ea44916277e75af8f8f7e6b8a0524e243d346fb10dea15067", + "regex": "(?i)^https?\\:\\/\\/614648651498\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6eb839adf577fe6fc586f3947000a5251b8ef8ce16b6bc6555a1fe3c8d50f184", + "regex": "(?i)^https?\\:\\/\\/www\\.click6\\.acc0unt\\.login\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "95b851b778b82e7e217f15f693899f6d0823b7d30c32f45dca88246c1d84051b", + "regex": "." + }, + { + "hash": "e484eab8fffa55497f00f3dc25a99b8a83156868b34ae52b4d6b62e449cd1678", + "regex": "(?i)^https?\\:\\/\\/41564965156\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7c989c2cf6db6061aa89ea6119f085b403ecb9c7a33b5a8e8324706badee9e7e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+contact[\\/\\\\]+301876664446293(?:\\?|$)" + }, + { + "hash": "14f2b267920c70029b34382cda7a620cd633b31f520c9d9dbe7c3478228e353e", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cee0598556267b8856604ef727eb313359bffd42c906be026df45f9b7d136f0f", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "976106ff125a51a04cce0f54ea62b944eea4b2beb2a126a5810d46c676676d55", + "regex": "(?i)^https?\\:\\/\\/54654654649858\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "dec4abe2a35dbfcaa3f045d7a0e73ef9f8a6ff7a0f08dc0f4d8a7f84201b5775", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6313eb1991662de26dc503318189d4b3fb0e2bf4052a805883d4c401cc53f40b", + "regex": "." + }, + { + "hash": "d90859106d7552e961f82fd1ee4d2791a14a2f6108a1756735362c337bd8fcad", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "abb7066d012f5f6b0198fb96ba4706e8517c58af9f04e866683e8783319b0e39", + "regex": "." + }, + { + "hash": "60f13edb777084f3eb820582dda31c6f31cf53d0bed80232c05b0303fd655cb1", + "regex": "(?i)^https?\\:\\/\\/bt\\-101806\\-101844\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "70c79353a854a27074707a0299fa2be33a3a8a317df0c67d4546ff3b60b962a0", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?evos[0-9]+\\.ggxittru\\.ru(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "7c89bec1ab667b0551a4d45a8f46e9b729e633f451c076ca1e30ac0a324b5dc2", + "regex": "." + }, + { + "hash": "2ca2dff147c61ff31813e916f5d988fc0a44a3af3f2bbb401e771331fd91556b", + "regex": "." + }, + { + "hash": "a0acf59229c265b52de4d89329a0b2a7caadeeeabe9aa1f9129452adbb7e9fb6", + "regex": "." + }, + { + "hash": "90defd48ee4c22b033c4b1999bf650d90cdb9210e0f3e3dd36885ee3ef148925", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "24bff38e43345be815f4dd8b4ce080746563a5d3f85f512a32d2c2fce909d6c7", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5bf8a2a1b81ec840df58eecbeb7cb4dcd422264faa9db4f8f62b69bae4f348ea", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4388a8c1b44e11a09a6d935c85073b2409b4c4e73516ce980a669f498d688105", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "56ef569ee75f810e3a5340f1e09885fb10ca2565ecee9374fdd3d4478de0a0cc", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "bd01cfc78e8489bfa846455d55bd6b5bbf7c2be2d8a9bcbec1382434b742ae78", + "regex": "." + }, + { + "hash": "22d2a8a717624dae608de858fde84700080a777bff9a94251ff5b9c370226083", + "regex": "." + }, + { + "hash": "880064e7bd53393171454d9373720af01293345714f3d073277ff38fbda6201e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hgdgz" + }, + { + "hash": "ef90a4c956026f1da9e63db19cabbc88f947384767d67c1417418e257f319a63", + "regex": "." + }, + { + "hash": "f26c31b3ab5d90bf25f8fd68da2c8022aa16b9660509c6154a913751cc29fbee", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3998c0b5abc23bd8596f409986e23b085d2a00c81d5b60d4bebc716b42edbb62", + "regex": "(?i)^https?\\:\\/\\/5564568565658\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "eddcb2dbc04ccdde6c57b908d88ebcbfce5f079885c34a63a593599f3119502d", + "regex": "." + }, + { + "hash": "7fdd540ba57e6238d104ac1a8787cdc62aef59cc80b1f2f2e64b2fd076f4c079", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "95b51640f039ea42c7dcd99dcb2b6d0da32c13de495a8ed9a86e01e1f6d108bf", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8aea016fa5a1af0ca7085c093e8b5c6016b15433cc2d1a0af8478062d45b35c6", + "regex": "(?i)^https?\\:\\/\\/845156149156\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "1e358f08cac558bacc979b847ef2a7f300926e0cc4ca66d6d4bb45dd6188f74e", + "regex": "(?i)^https?\\:\\/\\/app\\-nickel\\-eu\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "f8ed9fa85a6680c986b865a02a82acab9d965d458920deaf4b7fd7cd9a2b3ede", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "10b9dd1f64c47a4e09225fe269f408c530acf4cf7b96d251a5273825b68e8365", + "regex": "." + }, + { + "hash": "4bb1a661256f4863cfde5f825f75783ac5a873512997ab7d4ec34e846ba4cc64", + "regex": "." + }, + { + "hash": "aa441c49957b166edc039cadb71986987b69d0b369d1ee77b6486bcca7f2ff69", + "regex": "." + }, + { + "hash": "bc0cb498f89ad7c035bb9a6332c7214a6d92dff7f04602a0dc791ac07d55b8e6", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "373440efe2eef13e3016c4403b77b94076cac660077d0911725e806f4591f9ba", + "regex": "." + }, + { + "hash": "cecc0370e2a376b8d92eff220c0f41c1dc4f48827ccd038e6d9c6c09685c4345", + "regex": "(?i)^https?\\:\\/\\/adom2\\-fbmk2\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "37f27c756dc95e811c9d9b6ffd6ed2e445457df0220ffb63a93994f4b7573adf", + "regex": "(?i)^https?\\:\\/\\/489543159645\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "14c6f2840bcd8db7a8db15e7a523123c58923e3d2c49009be88bdb1a1a7946a4", + "regex": "(?i)^https?\\:\\/\\/app\\-nickel\\-eu\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0e6a4c86c5ea10d74af5989248b721414b9a63629d3c0a2ea68e2f54c9b6252a", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b9ae4415c3d5e849a59c4fb526fdaadbe8115be33a7e8399c1342d5f781b406d", + "regex": "(?i)^https?\\:\\/\\/nalimonhassdima\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f0d4e70c39bca177343bc090cfac1282da625bfae87c680115599eeab0ab0f53", + "regex": "(?i)^https?\\:\\/\\/jgmmccontioi\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "979e3049ad2d58fb1294abb57ab38d9465e940c5d23675b3e888d5ec0c3f67bc", + "regex": "(?i)^https?\\:\\/\\/156856516156156\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bd07e1abdc9aedf88dd099f2806461ad60ae63ec8f7787c9e4ff15ffdc1d88fc", + "regex": "." + }, + { + "hash": "ecf190ddb35b8c9767ea901713c2c2975e0d975ac31a3d52c866e05665b5f621", + "regex": "." + }, + { + "hash": "674a86480410e065dfb0ea8202d97136c3ecbd7b1d16a972e80d789f7389459d", + "regex": "." + }, + { + "hash": "093f46014d474480238636ef55454bad706b33d5735f264f2db6b7cdd88ea029", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c324606269e4f1875f9b2f27b5a9eb47f1f74170f306af8b44bd09048dd4aaa7", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "94d782df9dac8b5fbd5db52486a7ba2c3341f0ae4817f64b482ca368c803489e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "454af141c268d86865c4f7cb891b17724f8a56403362da1e0a3413c1c9fec9d5", + "regex": "." + }, + { + "hash": "a48654b628b63e988f982bb58c194a48f0e946b6aabb4155741c8f29eb0efc49", + "regex": "(?i)^https?\\:\\/\\/talktalk\\-106086\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "49f3379b2e622da516ad01fdf584241df9d1f77706cae54a555b2d0bf1c806fc", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "7434723dfc3c75bd44008f59015cdcc23d978501f236811182ee61a607454dee", + "regex": "." + }, + { + "hash": "33902fb83804e9003e1c7c760e613e2f6d45ef0baa7b970dc0125d1187150b12", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "730b82048014e82672f032d78699c0845ef82843c9e501d7447742bf8e82500a", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "998420f73d85472371e7feff6aa36d3906e8406f39b5a77e3ba72671cf7904dd", + "regex": "." + }, + { + "hash": "d7c53ba7fa8821eec934877bd844d32ccf7402fcf79f85012b93602ebb377b60", + "regex": "(?i)^https?\\:\\/\\/food\\-tv89\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "1e620c12af468078a8d7ae183fe679ee00ec30180c1e5bb5b139b0b76b84fa76", + "regex": "." + }, + { + "hash": "0323ae0270fcc313b6dd0d6c82dec0300ecc3fc7a6cab504106d4bd08123a9fb", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "04c4f2acd83935827341f5ef22d2834c73cf0f18049bd1aa5cf20f46f8efda11", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6b5412119a176c4d9ff55d30fad55e7c80629d3032164d1aa36cf321b843e8b1", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4eec10bf2fb4fc23f283df250d02c431fe6029594ba7ebec59d3c11b3ade713f", + "regex": "(?i)^https?\\:\\/\\/564861546516\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c0c9dc3f8881ffe5d2ee0787d7aea6935cfcc60df31bfcb2d4dc00afa6040448", + "regex": "(?i)^https?\\:\\/\\/564861546516\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "da1cfc0e93f59484975744ba936a22f9f3c390f1c0366d3523467f8183603b04", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "58950a593e4899784c418b4c15f01c7646fab057d7923744c6cc9623ba281bdc", + "regex": "(?i)^https?\\:\\/\\/6451865114653156\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "609cc64f9509f2815ea8ef9b3cf7d15d0f7bedbe11bb316aac0fa0638a214fce", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "34f2ffabb87c347dcd270b67b30ad1de00641f7773411498f28113e5be4cd4f6", + "regex": "(?i)^https?\\:\\/\\/app\\-nickel\\-eu\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "808088b76b1d8061b89d51c3236e4ea2114b0d485d0f0e443b072d18dfba2e7a", + "regex": "." + }, + { + "hash": "07f4845ffca56b54af5eeb8d947164e3e12d1aeff3355c93950fe1a256c87fe2", + "regex": "(?i)^https?\\:\\/\\/hsdasabanaaliman\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "62e59fd58f237486412b2a159760a31fc54bb9d52c4e3dc88bc2d15002163208", + "regex": "." + }, + { + "hash": "e315ab2bd2523922924aaf818b9de063c4fc76bdfd98bcc962c63a92d63de0c3", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6e0ef23f4b4ad0e87c7d903df745a40dc3a45f08b51aabf39bafd93730401640", + "regex": "(?i)^https?\\:\\/\\/6451865114653156\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "25e102dc080f55e039d0fdd382874f450e55035ad509083b8cac0a249c8f3eb4", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "450438035749eeffc7e17a9851fda3a554621e4e22066fe683e0a2f7ed030347", + "regex": "(?i)^https?\\:\\/\\/5616516516165156\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "485a9a4985890031c3c4906d933e1d9143d201a6b0e764f0244a751e11005cd7", + "regex": "(?i)^https?\\:\\/\\/3214632896356\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ed51c4280687e342fbe013ffa92c957923094481a5b761e2c236906cab377559", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vsion[\\/\\\\]+VisionFCU(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "559c0812bf8382ea4f1ad3d4266485bfe3b9497b83275129a45efcee56b26084", + "regex": "." + }, + { + "hash": "1d9e4180ca8d78f23ed1c9bf72d673abffac6c26565d0e9abf42c25f47bbd1f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9077[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "73758c5300246cedacf3ea918acb1bef1f597d69f517d8618042c5d05ec8c6c7", + "regex": "." + }, + { + "hash": "8ba1394af9271e1aa7d8f6f4b58de46ef08dccb43290ebc1afb0ebd8fc9c07cf", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fce89982517029c1ffccd85aff0682a63d8ecf38bcf6480f4c60a2739aeb9074", + "regex": "." + }, + { + "hash": "74e6407d17543f1734c2a36a49f8d3b50b523528795f3e20e1346ae10763becf", + "regex": "(?i)^https?\\:\\/\\/sagawa\\-jiuvjadhl\\.com\\%E2\\%88\\%95tdjlh\\%E2\\%88\\%95ovkegbj\\%E2\\%88\\%95oezrb\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=tucvwnf\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cfa6d3c8e0eb7d660ee3e21b389f56f57ed2c644993ab31fa605ba76faf0d731", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ele(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "55a35535eea574dc152c4dc1f0670845f7800b980dd74983c7161b216c7f1278", + "regex": "(?i)^https?\\:\\/\\/5461954965316\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "7adbe10a08bcda2ddd8ed73ac83d6801487994c1343681226fd2592e4e46c4c2", + "regex": "." + }, + { + "hash": "0cbe640d201dbaad2f930264ffd1a4d076cc0f12dfb98a6fa8e72945f7f21948", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "622d02170cc493510d1c9bdc42a775e5393195a2192bd890486aa89ac8074a49", + "regex": "(?i)^https?\\:\\/\\/586986514586\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d178194d5f91fca7a05332811c0465a27b4ac26fb54ed05ddc0cd4665e5ed239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dc7704d6867f07687358f5f3447d0aff816e5711cb88e36f2c995874b7f910c7", + "regex": "(?i)^https?\\:\\/\\/614648651498\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "97d5fcc1c04369eb591b0fbed5adeb7b7f2abaa614ca1921f60ee3d163f29d12", + "regex": "." + }, + { + "hash": "35717aa9a7468866b0417f4a6269cbcac07ae4073094dafa1b5955166b66862a", + "regex": "(?i)^https?\\:\\/\\/5615651561562\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cf4b7761aaa53fcb31a8f89d7902a011918ec78d3f7f05a967ff95672f56c9eb", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "3a46ffac8f447e524c95dd7c04a75f5c9b39871ce775e45062dbbd7d7a362d67", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "0146b128ba109cc9cabcce38f1734f1258aabb4253f3cd18dedf7fb85ef182a6", + "regex": "." + }, + { + "hash": "7ccf5aaf17c6894d8ef4077c389d8281ae73febd492492405fa7b9b9c12edda7", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "00bd6ce3eb2f14b4b68e35400ff0aa6fcf63a72a347168cfded12ffc74dd7f21", + "regex": "(?i)^https?\\:\\/\\/nalimonhassdima\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9ad53e9a532b7e864d5ff8f77da52b0f208d520f21572d51a599a578cb33c372", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3315816c887ceb3ebe1135c441a9824a2129491b36a69fd1ddcf3e2a5f25d431", + "regex": "(?i)^https?\\:\\/\\/125145648956189\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d178194d5f91fca7a05332811c0465a27b4ac26fb54ed05ddc0cd4665e5ed239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "d2fa2ebf9a86596a45f0a8af19a447c117de64a28819b58926ebca4ed8e0535e", + "regex": "." + }, + { + "hash": "de2aaa12785f404c7ef349dee2087449ae15af944b02dd6aac867c508f25cbf6", + "regex": "." + }, + { + "hash": "16e576278c8efb5ae78a615d3a2d427fd26ff972f415e62f07ec94ba6c8a2ad8", + "regex": "(?i)^https?\\:\\/\\/489543159645\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9a04bf3df7277eb1a92a06c66a7dfca528d29fb05f475d8c099e4fe201f6b649", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9499ffbd136231236292cab9b4ce896a01386b5193de6dabc56beca7d7804c5d", + "regex": "(?i)^https?\\:\\/\\/pub\\-c78e92c863f74c5c983a35f616cbc789\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d15bd7bff92a8897944dbc26c4da73148ba1a8d50b95df649c796bef4260583d", + "regex": "(?i)^https?\\:\\/\\/85435892356\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8a362cd8111d986b511d381669cfe2ab85019db77c035afb89b36f4f94b6faf4", + "regex": "(?i)^https?\\:\\/\\/546549861654546\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "6549fa653b1d6d088500ef8d4a29230f47af40fc5968c92c9e0650c2f74d5332", + "regex": "(?i)^https?\\:\\/\\/489543159645\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "bd49e1d167798e114953a32ec1d5adf6816ace6c2a63de1bc6c663c03425abc9", + "regex": "(?i)^https?\\:\\/\\/nalimonhaa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a5b20538312d2969432af59b5677a248d183eea247868391bc54ce0aa2782978", + "regex": "(?i)^https?\\:\\/\\/nalimonhaa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "61d8790a2951cb9541ce2b85806c8c089d65e8843ad2cd3804360f587549cf9a", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "18deff40a48cf464a887753f6d3988210be29c884e9909706c20807822c4e160", + "regex": "." + }, + { + "hash": "9a049456bb2fbc22cf8df09e04e0e73c43f48f5616f77fb4335e4c67fae31d0b", + "regex": "." + }, + { + "hash": "509a6f6ec6b1d6e13c5ff6b538b96376265a916d8ebd5d8708cec6fe21346f27", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "00c96492771bfb46115ce54517124d878635c8f068905eab2d95bc3623b89f3b", + "regex": "(?i)^https?\\:\\/\\/ccoxx11\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "87ad55f6684ef7a61ff5478c4beca50e18ad952b33bb4f0372b53a2fdab768c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business\\-help\\-center(?:\\?|$)" + }, + { + "hash": "d3497fb16e959d7c9a560362497ee996e0fb56c51a056ab25d40efa38904179a", + "regex": "(?i)^https?\\:\\/\\/s1x32z\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f2d623491cb54fd99dbdbbc04b4675f4c2160d9f556203bef98e9d00cf8acbdf", + "regex": "(?i)^https?\\:\\/\\/food\\-tv89\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ee0c7aae27f8ab1184ac7c288fef3b27ee16e3252afba07db4c7ab7d0b570c6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aU3V44[\\/\\\\]*\\?TToLCofhZ59prmHnULzhskmMbz8StkqSdzCZwjb3qObrz0KIl6uK4kGiti964xdrt3uCkElzehTKedRlok7iVx8iT1a3A4xx2UIQZeTpQH46wc1yZA3FHhmJvX5UJLZ1r6cdwoCMok8lCYmT5hm67c1FLTuJ5dsyRpnAC3WIJP$" + }, + { + "hash": "603d830fb5156e0ba287a0d9a01b05dd01a58d1752a8c752678f794aae7156d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "901df30a6af1563c80d801949637110586f99339fee6e13d0c9912d63592363d", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8df089a6abc1cabf2202282b826396ad6561e4112070d21a674f63fc8298ca41", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "124029b7f62d23d137e3779a5d47f2ff380dd0c6c230688c50f55eb162da3c03", + "regex": "(?i)^https?\\:\\/\\/999999999919\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "68bdc60cdca5ffd65df3a8fd6f0dc3ecee38d72d037ee24badfd03d916265a43", + "regex": "." + }, + { + "hash": "b4f8d0c8332e2e434b335f014916aa4c291ac653b5b913c0ae759ace156a1e20", + "regex": "(?i)^https?\\:\\/\\/odfosdkfksdf\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?d2cb794c\\-7082\\-40b8\\-8ec4\\-8f6f55a60a1d\\=$" + }, + { + "hash": "75264050885ef59acf68e1321efa6cde3a4d3753cf868f808bec22b4a8bde23a", + "regex": "." + }, + { + "hash": "564e58d00683a4972460cfb769f01695deffa870fb3a26541cb90535fd349657", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "fd784b7ef087fc0ad7a0e1b0ce306148251c0309b02b43b19391ee013aac3b25", + "regex": "." + }, + { + "hash": "0337f4f7797960d9918ff0d76feb7c8142245f7e8f3105e813128357e992510b", + "regex": "." + }, + { + "hash": "d99866e5cb2cd9edfafd6f575d207a098d0b4563a1ac92ba94209b4926552751", + "regex": "(?i)^https?\\:\\/\\/labencool\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "23471bd4f42fc07c1581ea34d4d1515c179167ba35833e2e2f63bdc23cae1d9b", + "regex": "." + }, + { + "hash": "23f2d61e135bb065b090b14be89b45d4491dc03fc4ea167e0820b6a13d90d38c", + "regex": "." + }, + { + "hash": "4c0307af33de850f18ae3b2eaabf22b6e022636df467b971de933268c7713ff6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+s1(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3832df8aa6687ed7fe5cd4a2ba08e639c121afb103903ad2098d116380d57388", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "a12e70a614c906388cd11f4a6e95309ae67c330daf899af9d037dc0b218aad00", + "regex": "." + }, + { + "hash": "4def072ba751fb095d2dcf712b7ca6d9949d5720a8e3758741ccae2c25310cb0", + "regex": "(?i)^https?\\:\\/\\/564861546516\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5d19bb4dba9ae1e3b3f9dd96057ffe4a98231e7d8b110129bc12b8096024b749", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "f445b5374751d559ef58ca55e83b0fcd6926640acf8324dbb4ea184f077d77ae", + "regex": "(?i)^https?\\:\\/\\/food\\-tv89\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4c5b21097ce722111e7cdc6fbaaf466e84ad982e13c6605abcaa7fba6a289c93", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4b035cec40bef8af2539ed770ed2c4fe3bd7addda4d530839b7782ee1347975a", + "regex": "(?i)^https?\\:\\/\\/41564965156\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "aa52b926c37e084ac9565b93ad108966adeb86518d66777b60decd301eebb422", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e0cab4c1ed46e420b0c1cf70fb5582797c43a621c6db1968463906898f2244bc", + "regex": "(?i)^https?\\:\\/\\/chubby\\-tiktoker\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ef311d4bb70e2debe013b3ec00be851f80df83d1e453a6eca57c977a5fc9d02a", + "regex": "(?i)^https?\\:\\/\\/nalimonhassdima\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "af2ffd8462c072da24841156b109cdf8e48619b65e816c4eceaa91119e831e31", + "regex": "." + }, + { + "hash": "b9d85491c40f2d2ba630cd9b4dade4e5f25df8e47ab370b24f3d34312246732e", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3ce4d8088449aa98a43218f5e28f8e76cd00854ea9be2e1d0b30f95be460cca4", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a82d27e0703e7e3f36d135a1d6d56b0e4e8e80d26a189eea20be4c3318d077d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rin\\.cupory(?:\\?|$)" + }, + { + "hash": "479024e62a3436cb318e542a194e61b1c4bbb593c90dbabb6ea465e3a29f3f10", + "regex": "." + }, + { + "hash": "d1ab28e29fcd3e1a92dff2a5e89327df2a29c2d8ef78c214e743fed1f9363cb0", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "61681c5b62f60f15efefcab17e178610a6a71e89eac4e39e296bf5d8be1bb711", + "regex": "." + }, + { + "hash": "246df0276eafb4a9710ede202af8d0d5fcf24fb2fad23d95cb892340ffaff991", + "regex": "." + }, + { + "hash": "d13c3ceabc0e869cae654c4e3e49ff76e4f62988399e7157631b720df0376508", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "03e3cf23c25e1a9f665890e336f84737224da94dcc8753143f32c462aa08fd3a", + "regex": "." + }, + { + "hash": "94d782df9dac8b5fbd5db52486a7ba2c3341f0ae4817f64b482ca368c803489e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=zRKNyDdoUxH84XAqeNg57wj7yaI7b__a\\.U3lmUell5o\\-1733835830\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$" + }, + { + "hash": "f798ccc71791a46e33d2b6c2019e557a94d3c97fbd7177e4f8a8fd49b38bb792", + "regex": "." + }, + { + "hash": "9658fdfe83de9ec931af3a33cc9e3b189aa45106038619931c3319def33f7d47", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a89a22b338e6eb4b39c09f7d3e79e68bd2a5b8037cc393395877caa16346197b", + "regex": "(?i)^https?\\:\\/\\/5564568565658\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "368f3703076ceb338faed7f66f422bcfc652ffb160dee9ee80aaad18304d0fc3", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4c7e904766f535270dfb98a60f06c9f63e6be68f732dfdfaf7ff81ab51a9e09f", + "regex": "." + }, + { + "hash": "69c174411747b2312bd868cf5290f744c9bc1c691675c82d81f91a6fe1f64010", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fee12d9515e417e34a40b087400a24bcb011030f5324fbc0bfc147c300afd6a7", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1d9e4180ca8d78f23ed1c9bf72d673abffac6c26565d0e9abf42c25f47bbd1f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9077[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2c5a0675374fa373dd00e8cf2dc670ef523680c80c3f6c02e7461af27b4656a3", + "regex": "(?i)^https?\\:\\/\\/food\\-tv89\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "341175c1be16234877f2577f0c2035a62689df3341ea3abdb57af521ad25e325", + "regex": "(?i)^https?\\:\\/\\/156498156489\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "267458bcf05b4ef24ca4600dee026a4e057aeaa7a960f1a79a0607ba5baff20d", + "regex": "(?i)^https?\\:\\/\\/5461954965316\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "74474878c2747bb1e08606fd14bac1eaa1e7b8f9cd4c57ee3ced517a69ccfae0", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e58bd2f3c54a5182c38dd4f91642792adf9afa4de262b8b227c09628b51391c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+isGun[\\/\\\\]+gunluk\\.php\\?fbclid\\=PAY2xjawHFVc1leHRuA2FlbQIxMAABprYae0mgliRIUBwRlLJlXRs91lwPLPYlnGmtFAlMAPri4YVtZXwA8lzMKg_aem_Q40Y6QcGpw2mzFFxpJWm_A$" + }, + { + "hash": "698bc541e3d67d86a444c4515f0e0c08790c7e0bee39e4e340bca51a2e30ec12", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b2dfb57a5a46e0debd4530fc089e4d513f9c28c74a35b67c633ed77edea27009", + "regex": "(?i)^https?\\:\\/\\/app\\-nickel\\-eu\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "50e19c3c15d517cabac728b2d2181d7bd0ce48d4df72eb9b82af9648df77ec0e", + "regex": "." + }, + { + "hash": "3469ec82bc5ac602e86841f6217283b8db16e001b6cb764d43067f5704eaf0ad", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "1ce682065de68e3cb84b3461794f27fae90028e2ad0be5f300af932fb4272687", + "regex": "(?i)^https?\\:\\/\\/999999999919\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "f17d24fb7c32f3adbf49455d675ff89b0d9c88add3b2e438897dde5f55790291", + "regex": "." + }, + { + "hash": "914fa3775c0d3667b8076d85fad1bc1ef2eb08c55660e12f2c356594d670c0e9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2ff26e5c7a2f6e95d97f74577b8d7bcde632d39df365d37ff42f13440fdcaa6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=duUU1zjpYhcFN3xkETL_kbybrSkNvW_c5kH5WbDTdh4\\-1733835873\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$" + }, + { + "hash": "c1f50d1940b59e142137d71221853b114b3f6ec0f819671ec9fc0a65cdaee55f", + "regex": "." + }, + { + "hash": "75c0fb27f7faf962d698641b755bd88574588b4c8ee6227709bd72de256aa999", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e46dbc3463c7873ca1cc7a098c25bf345a7b29ffc913aa7e32b5e950f97dc0ba", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "25e136eb270c9612ffcdff1e8fd8d19a9f1337b354c441b4d13c40d39a4282ae", + "regex": "(?i)^https?\\:\\/\\/yogesh0711\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "2b943bd06a338eca0412b20f19fe259ee6dbad2a072c917b1bcdffc43d2c9bf0", + "regex": "." + }, + { + "hash": "26009245cc4b5767e975b838185368ff1885eda6bafd9d7eb21721d356e42a50", + "regex": "." + }, + { + "hash": "9b97889595b629e0d9f34d5bbab5e51a27cda0dd07a46fe2db803a9d6fab6651", + "regex": "(?i)^https?\\:\\/\\/jgmmccontioi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5c42da2dc011add2248c51f6d0722b52ffdaf776392d87921cf5c86c94781ae1", + "regex": "(?i)^https?\\:\\/\\/nalimonhaa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a176fba5cd42ba34f1bb3ba28bb02eaf4c4e7c59c488b747e6488d763c1fa61e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5898bb9d950a15c35ed3e0973cb6353b3b20983c55b3094d8cf29c9cf8fea012", + "regex": "." + }, + { + "hash": "4a8886175a59fa91f6d4892bd60c4945caddf3e930e9b49bb7ada44b764c07cd", + "regex": "(?i)^https?\\:\\/\\/nalimonhassdima\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "99266ac6fcfd697c312df4d5f6313a32f5f4657d5e5bce9790d322a7fd583a14", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "95d11a12ed82f73f4b598a23af93a6a3673f2b00351a1d8f456913b60ce2d2e6", + "regex": "." + }, + { + "hash": "20906863eb94800df95787c98e00728f38f48d08174abb9e7b3f31cf82e48a20", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3d7dbc4e769f5a08f40e5b0996bf7ebca459bb6701a3d69447a10098df9a4310", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "7d877dae57a5c4de9e5768241cec08bd6aef2fb23c4dfefb5b5376cec5e230c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "41785c666c42e538abf565f9f692bb579c85588e2a5c0c825e5f8f4cf5cddd80", + "regex": "." + }, + { + "hash": "9b571459be3079a9f0eee49e73a35299560bb9b360c2d12532febc17e38c5bd9", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "748fc0909f208e62c63ab7a8b0db8d664f0bbdd78e62dfac203000c9a195ec7d", + "regex": "(?i)^https?\\:\\/\\/btonlineservices556\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "78a7deef5506800c4f8794de260d042e3773115539dbb89653f4a70d2d94d1cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+en(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b23f99aceedd000518175556af6ce35481e33b353c7bbf85a83e17cc3a425fbb", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "784746be564118cd6236aa1fe44d68113822466cbb117e97a11517b69743c046", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "14eaa61a7d0a3635ea9b7523721edb2293fc7441a7feb98fa7e61c8986313cb6", + "regex": "(?i)^https?\\:\\/\\/5615651561562\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b4168166932a5623aa56826ba170418b7a760dd3e73af34c2bbc1cb40e82b98b", + "regex": "(?i)^https?\\:\\/\\/hsdasabanaaliman\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "509ac959a5723030aebd5b6c67aad1ca83eb50ee6732f50dc9f812ef3ad799e7", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "93633a4ef6463ca2a8912e974946acb75cb3e26f9981f0134801f8229dabdfea", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "91024cb1f7e5c2f0cd13e2c2ccd8fe2029bfe68f88e1bc52239eef00c0f16e97", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5485b63fea8cf7e878de68c8186a2bbfa180301be2f4d5f85009717b23e49b8f", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "1f5540088a02ab19ee6ed653bc2e46b84500be6fac46564c1a43154f3348692c", + "regex": "(?i)^https?\\:\\/\\/portugtr\\.top(?:\\:(?:80|443))?[\\/\\\\]+prt(?:\\?|$)" + }, + { + "hash": "70ec40ef9382bfe7d7d709cbb2d2cadb3a02d9e71b81b92c39ee3d594d326636", + "regex": "(?i)^https?\\:\\/\\/5461954965316\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "25c5aad6af57c42b15733386e93625ab3bd60d1b95f0fe371010b8b41d0ae691", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "52468c74dcec4e68b847c1b72729b38ab3c1494c674bdde2f8832ccd13661f2e", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a988dc5685b50fd5a96ff267cb36d80b2122e13c0ba521f9055537cc0c9de83a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "046942a5095c19bcd3cfc05e4a39650365055b26b2189b442b16a6c651f14270", + "regex": "." + }, + { + "hash": "8b21a41e235afbf7b166862ec7fa4021c9e6af747b5b53ff501b289af7a588e3", + "regex": "(?i)^https?\\:\\/\\/25145615616\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c6671501fcfacfde82b8887fe9238ead176b9d747ca4a2fd892adcce835d7bab", + "regex": "(?i)^https?\\:\\/\\/nalimonhassdima\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "4ca4e93f2e047b05267c8a1743969a8d3877ac7fec261cd0883621a85f4585bb", + "regex": "(?i)^https?\\:\\/\\/546549861654546\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "82f0f5b789fcdc40a34dcfd4f08b11aa8ad2a44ea6a7acf6e53d6721b03d9554", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "01569a124ebaaf205261d56604b88c0e3f56a7d23be721a9939ceab970c3c60d", + "regex": "(?i)^https?\\:\\/\\/3214632896356\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "258a8f40f0f54ad64126b1a7ccea833e1484d2c7ea48721d80db34e602a44c35", + "regex": "." + }, + { + "hash": "132d4c3358a6d288e5e955c31697c78303158dc652e1171439b6e955e7c9cd07", + "regex": "(?i)^https?\\:\\/\\/125145648956189\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "acb5322d8820f368462cb185b14a9207894a7fc21db30d573048a7395459dea1", + "regex": "." + }, + { + "hash": "300b92b2a095fd91303859adb697da78ba729029042c09a8bc6f9741f77726b7", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "14fb38386ac86e7972d51fd1aa6899dc95c919294135bab2f1bc9e89756eb788", + "regex": "." + }, + { + "hash": "56602a7a4efa0f7d863ab86e636999760a5305a8de702cbd17e9f9b1da4fcaa0", + "regex": "(?i)^https?\\:\\/\\/global1cuun1on\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0a863e5be42260f47ee6ce23af0ef6426430e181193eadae34f702b2120a7198", + "regex": "." + }, + { + "hash": "449588bfbc1e9161fb2b403e58dbeedeb3692e43373c774cc03f7e23ee452d90", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2999db019c564e23d4ee713a64b73222feec162ad2dc0409a6cd51e96e8a661e", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "6e687f69b8ad65679d60b1c299420f1b12a381ff07747ce5df0ed7dbda30b7e8", + "regex": "." + }, + { + "hash": "c0b41becf3899fa47e3340f533bb022bb8ca51c5b535b0b359b04b2ecc43e8b7", + "regex": "." + }, + { + "hash": "d70fd8930a370e70d56466462bba50c9fd4e71013d737406d86784fa572c460a", + "regex": "(?i)^https?\\:\\/\\/trendyclipszone\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "64fdb0a5d57e4e40cc8b2c174f0418455b40afc2cdaa126d16f580321756c312", + "regex": "(?i)^https?\\:\\/\\/586986514586\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c9743b5a1cdce92bd166d14d30e26288b2300d0c5bd11e43c58be3a7e199d24a", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ec0cf35ae764d30a28d818b36643966aeaea3b69cf2b9957b46f7f8640d5844a", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "cfe22ab10e15ece9b31d4441701077bf21ad4ee8d9e8d12406dcb136912f50c5", + "regex": "(?i)^https?\\:\\/\\/85435892356\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "df43a7ceaf72af0e1a5264c676e09cbe9fc0df781e20d275362400c5c13ae218", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "67b92e88c9ad7b800ae33e76d188d4f3a73ebf84eee2a8f702b3d8ca447d4b20", + "regex": "(?i)^https?\\:\\/\\/156856516156156\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "7ebca2076bff0aca79ffdc60ad9c21b356154aeb6b0d3bdc1678171005a7c4ae", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "fb58ca11101802f42f7cec082e1e3c4cab09ec7ca04ac5a27ad44ee409987c3d", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "48943563367fcdc33195f9a9c7b91b1833b9aebe8e0e79b3045d114165ab2bc6", + "regex": "." + }, + { + "hash": "0d56d39bbf5e48cb1d903176b13505d40a04b642fb4e069cfd9f2a4c30054116", + "regex": "(?i)^https?\\:\\/\\/6564564156456\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9c6a8d8e6d33d30195ba7fc36aebc8e2eb8d123edd91eced01902952efa56906", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "889487c8443a479eac7010bbe8018ca227df31ed5c784f952a19930d2ed32b3f", + "regex": "(?i)^https?\\:\\/\\/6451865114653156\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c62ef494e7a5df1e7519f06d017bcd1a95a166fddc0a788b056011d64411b883", + "regex": "(?i)^https?\\:\\/\\/giftcard03\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "6c87fb1397ac3b1b7039096d5b733ee5dbd422ec746656d81027da35383449de", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "2b8ba0569b8e233c8221afef123f5360ca46aa9a3a7fd10e24d7e9a1d22f454a", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8c846337ad2f25da96a544533712f69e64efefeeca6df9d8af800faef60bb149", + "regex": "(?i)^https?\\:\\/\\/25145615616\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "10697fbc5b2c42a01285a958170fcf7b1db442547fab5fa51f645d13de7471e0", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "de28dbe28c8932fe11dca752d2965c945ba617ffb70f03f12c1c1362624b0633", + "regex": "(?i)^https?\\:\\/\\/coinbase\\.verification\\-account\\.64\\-23\\-139\\-190\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eff2e9a5dd9372fe21f371b5a34293a646f7fa665971de583b966d94fc24db5e", + "regex": "(?i)^https?\\:\\/\\/125145648956189\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3196e35a96b2784b61175815f7867b171e7afe6fdbd035453ab8c74f1510c148", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "005d8baee554da891cb1f2076b7d72a48d92459c658c2870ce55ea7e5e4ed8d1", + "regex": "." + }, + { + "hash": "67f234eb814b5a11b13b8eba2db38ac3308a0b97ddee42bb4124110810214157", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mex(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e7c64dd49b40770ac6395fd7c2ef5ec6c58e2d2a606f22f3dc2143ecdead4ed6", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "314a8faff959afc35a6f9c79aa3c0dbfeec020268df3e44ff0e566cee79d82f0", + "regex": "." + }, + { + "hash": "f7bbd7b650dbf489249353bdb4267fe1f2177f7e9de1ad57a34b29b614424757", + "regex": "." + }, + { + "hash": "578c4fcce0635f359e501549e86ad738160d4aa277fceb4c6662593d66337e47", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f7b4944a2a175da2d1e08461238f8e205d9e3c9ed0b5412a8700358c5eec9e19", + "regex": "(?i)^https?\\:\\/\\/o2\\-account\\-unlock\\.firebaseapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0f13cdba330ad73e0e1a49dc1ffb540124a6deb2fe970fff269f90d3b3accc0b", + "regex": "." + }, + { + "hash": "f0d3c110ef8e6df6b7bfb964d2cd7a25067a0f70ad2ececa1b62b7ec219fee7f", + "regex": "." + }, + { + "hash": "514fdd460d0a9cd65e431be45a255a5fc9ecf40aa66d8e23dcfbcb2b701380c0", + "regex": "." + }, + { + "hash": "ff64f8c61161f651811f06053fe834ba4f08724a5dab42fc36ebb1a7dfee37a7", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0ce0546d4c432b0616a0563c3b2f912d609e0a1cc39e437020a9561282be8f63", + "regex": "(?i)^https?\\:\\/\\/41564965156\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "710e17bd3f218177f6f9fcb6e3fdd3a9fc26c19cf89178f2cca650251c32dbd2", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "95fcbd4ae49d97aa6f32072317fdbd27af83a96815a6486a36f4e6e23bf9dc1c", + "regex": "." + }, + { + "hash": "2789c1cb2f988a4f0e75f17676dad4dc6c55292da05a93b3035817ba32d646dc", + "regex": "." + }, + { + "hash": "63ea30940c055c7c9bd4baba3341e1e584c4f43f99d7a86712206b0ad815cc1e", + "regex": "(?i)^https?\\:\\/\\/125145648956189\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "df55d0184cc098587621e75d34f7fe52e2c2a6280a78640cf20aeac692063b12", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1a8daa8d56a22af9489fbd2e1dd1612e0b0270f515e50451c9697714ba24cb38", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0ec1bd921e7ed858dc64cf9e4fc505f8a9ffb2be90044bc87283fd744709de2a", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ef1b4e66b7fcb9bde39de97daad01e69f92c0af394a07c5e215bd8efee5bc679", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?a1d1ebfd\\-c7f1\\-44ee\\-b348\\-80b0659de137\\=$" + }, + { + "hash": "4ddb8afd8f860cd928bc8ebc373f15b9806f5b3481aca05b03faf5153558a9a1", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ccc2f78a70ea6cd963a36ed3bee47dfaddf698e1ab6087fc10b9dd627f0a4734", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a0781c5b17f50d26bf59fcc2ffc73eab8a9f83968ca8e8b079141f920af54aab", + "regex": "." + }, + { + "hash": "e7aec344b4dd54bd23b619c14a0f37b0067ed905f4dfdbda715e93f1ed826910", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "c3956ce602bc0c17048b12b94ea2b6947a31cd7610a8596a572dc989abaec3b7", + "regex": "(?i)^https?\\:\\/\\/845156149156\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "da85eb36680058fa3500a12d5b3a4d30bfbb3cec0a56f232b432ced1b4d50135", + "regex": "." + }, + { + "hash": "dabd33be91d7e2b7605c009ec7378bdab268e949f9f5cd91c89d207d04893d5d", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1ba0f17fdd247bbaa18d6648fa97457d2ab4b7b9459998609f703d3fcf403420", + "regex": "(?i)^https?\\:\\/\\/489543159645\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "45832676763145649de6cb409dc0a6603e25e83ecde9967644a9574d7a1b846b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d9787511c2b5a0858abe2af68aebe54958903df7ed31c1d7b4cdff02d85750a6", + "regex": "." + }, + { + "hash": "ff90c7e7994156b7d60a7668deb233f075f649549320cf21b7254a05344a4a80", + "regex": "." + }, + { + "hash": "627f3bbd5ba27a50ecec919a3bd75cb0a16a8376fb82c2daa270f8f56f92f2a9", + "regex": "(?i)^https?\\:\\/\\/5564568565658\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1e43d10b7ea55e12c5e7b210bcd0ba09c19f1565217c90486a6a8f118d731988", + "regex": "(?i)^https?\\:\\/\\/cox\\-de2170\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0b8888bd663b116c99fa4706f2e9717884e8c7f400f72e27b1f456194d0f3a42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5fb6b95c28bddb54f89cbb9184369bad0da1f99ae5a5599d66580735ca2f703c", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "23b7fc772aa4ee1500ac05ca7bd6d515b6dcdd8f5492dc20882ac7a2798bda70", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "22853f9be4644e5563a8fb274012cb0873da806bb3a191cff5c8935e221f92a1", + "regex": "." + }, + { + "hash": "96feb2666f545b3441c31f03c4143decacc0a7969b9044e329d897a46c9dce00", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "5e2ec430d9ddd7ec031bbdb1d2348b9af9698609799ca5baf7f04ed6e7401fd6", + "regex": "." + }, + { + "hash": "ce3a5deebf85cd66c1df9a1bcac8b7bd47e9fff0b8e9e8724e7463a00087cf29", + "regex": "(?i)^https?\\:\\/\\/pub\\-ee9de501d1fd44f6a885a3b8b5b0a9f6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f329b6ffd63f41ebff1efe7badab0079afabff1b5fef9699329706753b4c3c54", + "regex": "(?i)^https?\\:\\/\\/564861546516\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8333a6005c028cb45f9f4991d9411c06681aa4b2f51381d166c7363435960324", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0eec197272bfac4577e5db27d6c233085a485e48068317cde3036a3f8c196f8f", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "09a1fe1c542316caa6d07c22823ab5c61f197f7cf4de3248125f190bc165d214", + "regex": "(?i)^https?\\:\\/\\/561684547896589\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "09a560884bfc667c9c321e736037a81feafe2309c18ee75ecede83e63fd49afc", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f09b7384fa11bb8ab742fe174bb8a5c8f69a594f95ce21feca73770df67ef5e4", + "regex": "." + }, + { + "hash": "ebaea83dd23f2b6812feca8d17a6b73625448bf47fa3a469435887ebaf56940c", + "regex": "." + }, + { + "hash": "a18c100d39bf2d72ac8a95dec0ad00bfbf8f8a3ca38f3f69f81a7247d9bae411", + "regex": "(?i)^https?\\:\\/\\/5615651561562\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3081317210a327d3812e872def7e3ec40f61922f9bc7d8d9f3648095fd181504", + "regex": "." + }, + { + "hash": "2227e739dbb57d5116ae125c1057045e070000de6feefcece19edbe9dbb595f4", + "regex": "." + }, + { + "hash": "27debd8aa546c86eab1430948dd374fb44b25b6a2684bd1e906ab8811cb6fee2", + "regex": "." + }, + { + "hash": "67961c5cd6b787991507891571216fa62eacca1e0111f2101d0e8918214b50e9", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "94be281571a88fce8099a9685d99a3cf7d3aa0c45bc2098b91d35b8c81b8a3f2", + "regex": "." + }, + { + "hash": "066f5f6e78a20c517c41819fb41d66ef889dc46662adfa7db42426f46f28b00f", + "regex": "." + }, + { + "hash": "3a5b4f0cb0e4225b916fbc7c800091aef74107159edff7d9d9cc40fc3828a68a", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "bb22bae00930a9738f46d045e2a6d23284a481d8fdf1430724ff84a25bcb636f", + "regex": "(?i)^https?\\:\\/\\/41564965156\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "fb2aed9c33bf01bf0c898f4610bf6499876d61720a0319d87b51335e0f65d216", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "0f6e8c119b83324f6ae8de5d6795db02eea00c6f2edbf54597d0576e740f39e2", + "regex": "(?i)^https?\\:\\/\\/food\\-tv89\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "827b8b9dce2705eb4f6d00d4a08468b9efcc69f9869bcc1fc7c64cbf4e040e3b", + "regex": "." + }, + { + "hash": "f5d8e46f9d02ffc19cd5117bdd128125109766b57b3ab0775c84078196d2b7ae", + "regex": "." + }, + { + "hash": "f9bcad772e468b83e7de96908889f7092c9c9eba734e8933ed58d381bb13b048", + "regex": "(?i)^https?\\:\\/\\/hsdasabanaaliman\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8c844d0773749f15d195531f143c7bef8c5f8904cafd9c47b14163fa4997c89c", + "regex": "." + }, + { + "hash": "d46a7b47f99a89e5d8e3d2307c00271b64560918b11746d49a5c857eb09d3889", + "regex": "(?i)^https?\\:\\/\\/5564568565658\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ea72e5a84a9dbaf842397aafbdeb3bde5d947e4bc9399687e0c36dfca4e010cf", + "regex": "." + }, + { + "hash": "b69fb5c5933a8089dd40f383d87f9750d58760da1f60ae2436351af01db3d02e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "52c00efef5da1b06ff9b055439fb9ab6060506c1cb92707b89b74170a134ffd4", + "regex": "(?i)^https?\\:\\/\\/564149654165146\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "0541564c677b411a5d295e65f05350e166413e2507465ac842a90a8961bb24da", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ddf35f95967570cc44673e4c75882b81be66ab9d8837e82cf2bc88b4a0980ba7", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "730887978beb3e66bc1a01b27d91534f3462d7ce80d1c0dde7e477317009d297", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "deb9cd902a11f33a4558b6b162e7b8e70ae6fa49ebbcad5a3374524b2ba4bc17", + "regex": "(?i)^https?\\:\\/\\/s1x32z\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "02d22b6d26740a777aac9f65b9abfa16c1e9258afd99a21b62e578f687f5f50c", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2f41ac549a3b66589c6036973964fa8131a15388609f919284f819839415c123", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e7e9e023b441d079cc0fa4815faac6f29ad66d7e365629127a9d3cc833deee63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "b46aeb44c972ebd24896cfe8137778051dff0a6304ef8c0c8479a47b5fdc4376", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "b16f98cc5394ab0cda93123a2f7cf0b3320a64fd606dad8e27435464a25b22f7", + "regex": "." + }, + { + "hash": "1f5540088a02ab19ee6ed653bc2e46b84500be6fac46564c1a43154f3348692c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+prt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f0151d63db76ce0ff6524cc8d0902adfc7beaed7a6eece9e5c95c401105f1c4", + "regex": "(?i)^https?\\:\\/\\/cfqknj\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "6ea95c424e9f701f9010f1dfa453cc803bf0ab13a5fa0c3580d1754744ca9184", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "85d90f3ca69c7756fb6797c5b57e0a78a8a07d947072cbb4fd91c282e6a4d97b", + "regex": "(?i)^https?\\:\\/\\/hssawhanaaliman\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a2e57b38b11d86be53bc4d6a645751e628e8ced4d85d7dd949925d07cd4536d3", + "regex": "(?i)^https?\\:\\/\\/hotspotonlineclip\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "ca8b8d6ad0b11ccfbf2a9413325677b9d6bf3bed7a983bfbbbaead74a27e4762", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "8bfc0126742da6be1292e62a1b0359521a89eb0314baa895dd3a7284719a3db8", + "regex": "(?i)^https?\\:\\/\\/mail\\.coinbase\\.verification\\-account\\.64\\-23\\-139\\-190\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4d521b702c7fc8796d0ecf295ff651700b87143a457a4322380cd0318de6e76d", + "regex": "(?i)^https?\\:\\/\\/65416524562165\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "862fa65df6ee55a27d43a340e23d7cab95187d9d2e855f2315037dd93c25dadc", + "regex": "(?i)^https?\\:\\/\\/app\\-nickel\\-eu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "945819f1191affe255676c3a7b2ecf34d3ca55319e9439f0e372aa98a65efcfe", + "regex": "(?i)^https?\\:\\/\\/654651465563\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cde75b6625ad859cf798209fe0ea57cee06d929e4308669bd9f37d52eda2bae2", + "regex": "(?i)^https?\\:\\/\\/nalimonhassdima\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ba3148c9ec56ea96c40a22615953798a17fee0f225105f02d88fabee91cd7f25", + "regex": "." + }, + { + "hash": "e4be2d02330de1e364b3e5adbab4a354ab9f022ed3335152942141d887a3dce2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "1b21ec994349c92eb2059999f5d9157f232740379fc47bde252cb93609580784", + "regex": "(?i)^https?\\:\\/\\/dyhy1688\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c4a4d3f3668b1ca13b9c4951622d179555e4f74fc380310491590084e278d030", + "regex": "." + }, + { + "hash": "9db74934c5899106eb9c333c686136ba941e79b1d6b5d764ddc7f539152a2779", + "regex": "(?i)^https?\\:\\/\\/hserffrabanaaliman\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f1c3786162d92bfd1ad8493f3d97c0a1efa884fdd34e1d17e5ab25a032d60d72", + "regex": "." + }, + { + "hash": "451df35531f3a516ef276db5f284b506bfaa0e896f3aea482ebf9536f1e3e8ef", + "regex": "." + }, + { + "hash": "cb2fbb14c83abfb11c25c793eb7426d143cb18d0d44f35983df46cd7070b7797", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f581775938125456cfd8931dbfcc579d488f38d15d40d64f9641e2b88a4052aa", + "regex": "(?i)^https?\\:\\/\\/s1x32z\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3553bd398eceba8bba9a9e80e38d058c18f6cd95561ec226ddac864662eec2c6", + "regex": "(?i)^https?\\:\\/\\/jgmmccontioi\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "5dab0325b1e7ff7c4134a62ba756a58f33af7128a31bdf32c1e9564526d412e9", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "36189c7c34db763db11634a19848930ef8f2609a0a528c29b86e3ac78b8b4fcd", + "regex": "(?i)^https?\\:\\/\\/6564564156456\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0e137a72bc4570ec2f6c492889698a64b9042060615b5a85ba7eae37ba914b43", + "regex": "(?i)^https?\\:\\/\\/hotspotonlineclip\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "25aa512d2b74187e718166276ae2eaa277a1f4b5610d3a9870f7b7609b7602e1", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "75c0160420d9cfed68c724d9c051b8b7bd6efd80440ef55f08e44594f5587d64", + "regex": "." + }, + { + "hash": "ae65772ff940c2100a7379cbd90d7cd742d4dfb00724db8b39ceb57f599aafd6", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ba852f495b932c8f6fa98ac0b779271002ebc50658a1a1d69ec04822fa8cf9fa", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "90954c32efbcf632f8c7c9fe3fd13c1b30184f9d169c4ee095a1ac3ad53ad9c0", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3b033f63a54a268d198cc84702ab88f5aedaa7f33c8513ad5c0ae9596bfc3de0", + "regex": "." + }, + { + "hash": "94465fee56435225c4bd5d8962f74dfa0c694f0ee0e89f5aaa441aee0f842302", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9ce0f43588aedd3815199bce5c5148ea6afa2365d066d8b01ffb9ec09ba38761", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "093afbab9c799d5c05c78a06461c52b137c4d232ea17f7478235c4648c68854b", + "regex": "(?i)^https?\\:\\/\\/125145648956189\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5c1e70df36d222c0fd328218afbaf9d12d878b367dd6b6299ab43da70c146e9b", + "regex": "." + }, + { + "hash": "948f22b5041eafa4f47e7b1c79d3b93f4229f3a4ffbb8e9aa982aeb40ffe61bb", + "regex": "." + }, + { + "hash": "ebd73105ef657acbcb10975ae9327bacf300f830f0b44ce079c28e7e7fd26450", + "regex": "(?i)^https?\\:\\/\\/chubby\\-tiktoker\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "0b8d3fff7776b49214e79ef3e009534bcc04771da1a7389d52ff5a211a622d59", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a88a6f7e5c6a7a0c44fcd47e2dd065bf026482899c87493d77d998817a726f57", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "f6297849954f194c22a7d40ddc6f84c40f3d5f51f8dc2c82f977f5bef95b78a8", + "regex": "(?i)^https?\\:\\/\\/jgmmccontioi\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c9feff23d7c3e6278cae9ad4777d2fde5b3161c6864ee8e39e0327abd44b5115", + "regex": "(?i)^https?\\:\\/\\/999999999919\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5a651fab77a2f13ad145275d1bd17c57e169d212076ad43d7729d99da4477e51", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ef974797a90a3ca3e9f675a31f99796c10dea44b56210a09e977c3094d66c274", + "regex": "(?i)^https?\\:\\/\\/654651465563\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "546dada18bb53dd81f7692ffc86539aff66b45634e5b4ec931a82f7af1cb6c50", + "regex": "(?i)^https?\\:\\/\\/hotspotonlineclip\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3981015bcf1143a3366c36b84b6a980dc6f1b4217ca2e520ba5e9798e2a25f30", + "regex": "(?i)^https?\\:\\/\\/54654654649858\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "82f45fc9e8a7f6a364485e147ded4740a901248908fa7166dad17c18236bf35b", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "f43591b5fe4f099ceecdaab984f69161faa47aaebd365d00a9a6279e340d5c80", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0923f3d07ba82268e9e0736e881215143f1018e95ab4c09a11f85b183fb0eb8b", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6fbe604849c8d2fa450e48879bd44675efd9ac5fec90ba52dfc9802bb42ff7e8", + "regex": "." + }, + { + "hash": "3862cb9f24fbff538c6dae40e1b484d8d7fc1eeacf23a92386ac790a3eacac6d", + "regex": "(?i)^https?\\:\\/\\/instagram07386\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bfa82c96264ce5057724388361f21236096b41df4eaaccbcaabe9b53b162548f", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bbe46d8c4a085689ea1befcdfd352c924e6559eaa70c3d1a34dfeb39ba5bfe0c", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "de9aa0923acd9068e0c829e39883fc5c30e0d695db729879ff0e19e7f0c451cc", + "regex": "(?i)^https?\\:\\/\\/85435892356\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2e8f76114584e6d295fd6cefbfd1d15d506242d17613d778113c9dc8d9eb7f45", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "59735a0fb714c308d2023f18a5f70d62482c0c05724417b220a0ce3021f52987", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "6ca14e6ba6565addf964eb2a73f881e8e9d24ed9f15c3431ff61eba0f9cdbbb1", + "regex": "." + }, + { + "hash": "9a259466b65ffb3cd6634d1fa29e0b645f6bc0cda487ce5e0d56857c8d48afb1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0088677508412c4d8adf51763a51b29f45f3b51648f1568a639c96c7bb9cafe0", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "184a918c8e86bea0b7a6a0b8eb911a81706d91969030461598e905402b223227", + "regex": "." + }, + { + "hash": "6e81037d379a26d43178c8441d55db543968344b633368ab255b2b8070f1bc38", + "regex": "(?i)^https?\\:\\/\\/pub\\-86aebda4e5db43b49a7a5a4c0425ed75\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7178a1075ffeaf8038778d83989365f66866d31989329659edba2866109fd29a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+globalCU" + }, + { + "hash": "374b5291ae6fb23b464a0235fdb1aafc2aba599cf7f40578d36055fdccf30eba", + "regex": "." + }, + { + "hash": "a42e68b37ba93cd5f33f08df0a60dd0179773a3d3ef03f43198962c8a1e3e6bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-562825O153" + }, + { + "hash": "b6c1069228081f846ba71a26d78ef1e5a865956ec66be6fcfaea323e46dc9376", + "regex": "." + }, + { + "hash": "512d1778744456863651096584e3e0146f49c7194bded1f1091ece9ca5f0149b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m[\\/\\\\]+clients[\\/\\\\]+MKVlSC\\.php\\?verification$" + }, + { + "hash": "0e8691afba54302ef9b9e964859e9847f9c437a4436ee4fe03b1a3d71dcdf73d", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "20159143ece1d3a1494e7e349675ccbd8a884bbd33a23780e5697028ac065a87", + "regex": "." + }, + { + "hash": "aab2a14fd6da3eca27cf3f5cf1538cc9804393c69bc4d87840835a15a27ec4cc", + "regex": "." + }, + { + "hash": "265c0208e607eea96522674fa8d5f096d84c5f3d3a0e2bbc24b0a4f3c93f7b2e", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "05d5fe625f2a798a394fd07c62aaa1b7c3eb0e2b6d69579f7fdddd7d361ecdbc", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b90d040c51ff0922c1a49af2107300838ba1950f249eac0d275147fc72d99cbe", + "regex": "(?i)^https?\\:\\/\\/pub\\-f20682bf984b47bd87973c340fd30d22\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f5dfea74dc62d82e713153d82ca05364c4ba64ae968c16fe9af64d6a77125829", + "regex": "(?i)^https?\\:\\/\\/hserffrabanaaliman\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "93e3843476890facaf7533a8e6f1d8dccb8583e8b7addb154fdea0538daa2874", + "regex": "(?i)^https?\\:\\/\\/trackwucq\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "4beba82ed240a521775f84027a7e9d8b93634af7c8364a78e16eac0c9a4de5ef", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8f51560a1e3070d440b4a09eb8d2fbd26d9b98cdc8ecbe6fa56410d835316d2c", + "regex": "." + }, + { + "hash": "aabc6053df80d61e47987e9ad513e33a3473aec8cf9f0e2410506640b05d3451", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "02ff2e81b0d57fbf3845f0c875cba0e36e392274d94dd9abecc86a652176ffcc", + "regex": "(?i)^https?\\:\\/\\/65416524562165\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "251ecc3322898b904d706387d1e9eadf02c01dc43fbaff1f2ff16e9d8a1770e0", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "90b5f723e2e2f2d57b8f0ec096cfea4f9601c34d938a1a807ceac11bf94afbfe", + "regex": "(?i)^https?\\:\\/\\/5615651561562\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "cc219bd8bd74dcba8733d421f785e5662a2a73afaf00658a54f79eb262e58a55", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d82527530de611112e08ed5a6300f46e2e668116b8519db35de5c2574e7e5ab4", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f9y55x(?:\\?|$)" + }, + { + "hash": "609dec1e4994a857b57fa108b700037eb6dec5f708ede138b3c158fcd2abde3d", + "regex": "." + }, + { + "hash": "6bf5e1fc61aecf777f23d797e74c8f1195d6af2bfa2e67a2204f324ee604afb8", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "87ad55f6684ef7a61ff5478c4beca50e18ad952b33bb4f0372b53a2fdab768c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+olb[\\/\\\\]+app[\\/\\\\]+logon\\-web(?:\\?|$)" + }, + { + "hash": "6cd9a55d9cdfb0999418e080372bdcf5b587a51658a4b41be8c3e3f11bd1a07d", + "regex": "(?i)^https?\\:\\/\\/6451865114653156\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "923a3c3e4d0df3ffcfe2a7d35b9d0fb57e293ea357f6a3ef8dec511d02e94e2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Z2Vz7OPkLq5w(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a710987f15da5d1698a463c4ee416d13d50eae7b86a16fd3e0a2e3affb7c28d7", + "regex": "(?i)^https?\\:\\/\\/156856516156156\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "bc4d7991d9a079e5ba35e71c4def7d620ed44dc100ce8f570e36953ba8dfc179", + "regex": "(?i)^https?\\:\\/\\/5616516516165156\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "6a7dcde18d13925883529be135c3639a8ed0b4e0936a2c0af131f34849b4a216", + "regex": "(?i)^https?\\:\\/\\/561684547896589\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a4e10890f2288970adcbeeee134775b53448ecb06e5e1acb65e6f5f6edcb439e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "748733514375f54be323c31d61a393ec4774e38f8d34aa530569f3bd1897fd28", + "regex": "." + }, + { + "hash": "6e103aa25591ab89af512521ad664c430af73e1e41cd75b0c6ba012637a1a270", + "regex": "(?i)^https?\\:\\/\\/65416524562165\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "9c57e0b97772ff2590775b4a6995d5a3e202669643484103b6e70f0e5bc490b2", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b81ddff7b7da286e2089443e55c0c849809df72d6fdf7a7771dd4775182176c7", + "regex": "(?i)^https?\\:\\/\\/59856498023896\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4088b007e3ff8317229fb481c386626614532bb3ba3d48840f153e6376cff62e", + "regex": "." + }, + { + "hash": "fac1b28e1015bc62162668aa9b1b8652e8cad3759744f721ad98afb417bce1c3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "40af314245eeebd007ebdb468899a5050690b55076bfee421eb62bec3bd0e075", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "66528c7edb72fe5ecfdf4dcb1e8ec3ef3eaf58997f7932d51c873d03f4ce481b", + "regex": "." + }, + { + "hash": "089092a60c78cdd418fa548d1a782c363b11f4f5658e7092212f2264edcf2a8c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b57fad061076e1143b783c77a3d64f03b2c9d0b6003268d61b33d4c73eca0123", + "regex": "(?i)^https?\\:\\/\\/hssawhanaaliman\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "65f69c6b52e15690fb92882e6dc2e6e50e3616d0afd254299b0244f5c609c637", + "regex": "(?i)^https?\\:\\/\\/586986514586\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "3389a20d4b7df6b2e053d02b3690b946aeff6e0fd22a187280240c4de6615dfe", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "eda5839bc820e1763389f4c24cfa862b10572bfa1bf9a9d0f9b42a7caa9dd68e", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "85a19de78bad97655ca1935aeb806893e9819f48e237b45c58ecfc68950c3a97", + "regex": "(?i)^https?\\:\\/\\/564149654165146\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b62eae5faf1bfebb7d3d8d72da0151748d1450abe850b9c4dd571635a89b2483", + "regex": "(?i)^https?\\:\\/\\/help\\-vwa\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "df41413cf138cf94d4bb0c371820ee878c99ae794c04ec613f2002c087053cb5", + "regex": "." + }, + { + "hash": "64e5ca801bd7c3b0e603b51c59b2c248fa7b783e82ced4a73b32aeddb8f06fbc", + "regex": "(?i)^https?\\:\\/\\/25145615616\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "eb54695602d28feeaf46078871f2a9a5f1951850e0cdfcff1b94e1d1010dc4f8", + "regex": "(?i)^https?\\:\\/\\/561684547896589\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "1e691103ff72cf78b11fce9a4fb84c4928e0efd21d898d08d5096df8fb73524e", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "67fb9df8a1784e6464a91a210c520f6a38d18043ae71c07251faaece3524a029", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+792831456\\?fbclid\\=IwY2xjawHFJdJleHRuA2FlbQIxMQABHSMxvDH6giXaG_MAfRnuPN1RjvsrFCB_alQwd8OBdvDjFyZkRawLfOyk\\-A_aem_gRzEyg0Y_DPksdZxy2vmkA$" + }, + { + "hash": "cd94313ee96fe363a992c5e75740a3dcfb92e8f6eaaca58d6e14fa983ab08e1d", + "regex": "." + }, + { + "hash": "ba5983d1bb4497d1295eff16b4c3e50af31a54673367dd9d40069017c941fd61", + "regex": "(?i)^https?\\:\\/\\/trendyvideoinsider\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7df4ad64658198e53add932ca778e4dfc46a3d75ff5932f5b592565bb10e7e20", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "279a4ba7350d86fd69c7baa785cd42c23194546f50f402fd665f647eb6824b05", + "regex": "." + }, + { + "hash": "315a3234a303e5e26b6eb80ca5c3820a3c7b22a32f18a09ff2e7ac08c3ab5c72", + "regex": "." + }, + { + "hash": "45c441a91914177f0fdf2fcadaba72078b491b9d9d1a471bd324b828cf3c65c5", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f54d8caa65d15a0adf4dc2b03bc865c2e8399a122aee581dede28d808b41301e", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1bbc32d217d978dafafdc16c9e367a277855975c37474e0384d6a03a18ad865d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "7f7b249f6ba5a149ebe496eb0c4b6cfbd295f6d48de430b59ece6ac2ca6097c4", + "regex": "(?i)^https?\\:\\/\\/trendyvideoinsider\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "12e09bff3f50e5720dd7b2bcbdecc59473ead8dd473360c3b52d8cbfb226bdac", + "regex": "(?i)^https?\\:\\/\\/hserffrabanaaliman\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "706dc3baebe0dd78d6d2fc2af38bffec39706dc5b8cc467f5f6e3708b75024eb", + "regex": "(?i)^https?\\:\\/\\/trackwups\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "c8ac5f27286b133536ae31b28bd85e848eed98c77c732b8ec94ba9e5dda71f1b", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "66a716fb0849495db1ca60e36762ccb4c2989b069c29dd97392b6941be9bafa2", + "regex": "(?i)^https?\\:\\/\\/5461954965316\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "2330dc9d4aafa7d7cdd20d9840bc813b2a1c18ab72db15c911d4613625db7104", + "regex": "." + }, + { + "hash": "de294e09a26a5a05927ced3b449ef96b428a4aaaac23ae090440bdf258fb7582", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fb1b7237f0bba54008db8fea89ec2dabfbd9a445601f927e42815b818d7e4b1b", + "regex": "(?i)^https?\\:\\/\\/614648651498\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ee0c7aae27f8ab1184ac7c288fef3b27ee16e3252afba07db4c7ab7d0b570c6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?i\\=K3zh5$" + }, + { + "hash": "344264befef98fba3089a60549af84d170529924d44ef4e01fa845295a5115a5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9235c587dd162ce5130d0aca991c3b11892410f412ff759e11c5cbda1d134368", + "regex": "." + }, + { + "hash": "59a54ed6619c40d6f1153f7a4cc306ca075aa838ed92ffc241468e242c9fb452", + "regex": "." + }, + { + "hash": "d7f112880bcae66605ebab0ff4844fed5568abfd85d1b49116d7cb9d24201578", + "regex": "." + }, + { + "hash": "13b76e9fee87ec39312496e61278b983631967f1f7ee9a4ff270bedc44558ed1", + "regex": "(?i)^https?\\:\\/\\/41564965156\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "514fbe99440f0ab863da1fbddca83566cd3055701e142d35a167caa242c36f2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+be102\\?gad_source\\=1\\&gbraid\\=0AAAAA\\-VJfmxRWv4mHbxBfknMOBUtnLGnS\\&gclid\\=EAIaIQobChMI7MuZxPycigMVYICDBx33SAJbEAAYASAAEgI3jvD_BwE$" + }, + { + "hash": "b2fbfa9a7a4c4f53fba6401ea2a665cf81aadbb2d756570576a8070c3f81ff58", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "513793329520a0747c0a77c1c118ffc6b5e8bbad4aa7c5d58f0d2c002d76df38", + "regex": "(?i)^https?\\:\\/\\/59856498023896\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "134408f8e58c3c31bd69f4efad6a2f642f9551dfe59fbaed3f5c5cbfc1be842c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0274abdc9ef0c405f60ad6108452b74b61d6e090c2488673dc1243b15b7830c4", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fd78738d1a6b4861c35aeea3fe3683d3bf1f8911515cd2f7f8185230445be93f", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "94439e2c5b9393292d38d9fc9e1d5b1c495715fcd03b98414a8fa3d801ce414d", + "regex": "." + }, + { + "hash": "0438e2fee89b20f054577ab6d3e7e208e33acf0406b444521f2146cd0ea91d31", + "regex": "." + }, + { + "hash": "74cf89baa6cfa47138a4f9c75b85c19fa007c1e027bd055c9ae3c7a82b3cddb7", + "regex": "(?i)^https?\\:\\/\\/trendyclipszone\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e1414c3c2a18727e48a80929628d6653be2578c4655808be6171d9818c95482c", + "regex": "(?i)^https?\\:\\/\\/hssawhanaaliman\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "438d323fb35267ef21e728fce6e63b00d1acb8932ec7a157c6d4605e481457cf", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c9afb04e847be1bb4bc31db5257df70183c4f2843eb9d170320c50dcbd54faba", + "regex": "." + }, + { + "hash": "3c18d83b63fe0737a8c6d69bcfd86522bb3864770db9f0806db7a29c58b64feb", + "regex": "." + }, + { + "hash": "c655d10cf5983770828f3caeb9b7800effcc456ad7c697dc31f9b107437603a7", + "regex": "(?i)^https?\\:\\/\\/nalimonhaa\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0e9e24aaf4ff3d8fd1a729e969bb8a1db9f101c3311606b736016af5d374afeb", + "regex": "(?i)^https?\\:\\/\\/5646519814965\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c8ad78fb32b56015857c73f07a785f83b15e746122d0d477e3b8988ce411701b", + "regex": "." + }, + { + "hash": "af5f89b33fada49fbeb9f2085c8ea9e3555e45f2998d18d79dd29426835c9971", + "regex": "." + }, + { + "hash": "93e3843476890facaf7533a8e6f1d8dccb8583e8b7addb154fdea0538daa2874", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fd1c7855a3a3e891d3a321e9ae9b93afac6eefe5e408422f3245be537bfea278", + "regex": "(?i)^https?\\:\\/\\/instagram07386\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d4d9aeeb88f7847a7a733732c0299a2593ce7e4309310f2ebb963a53fa3ff18b", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0df499eddd07ef8d8de53513968419dc5da95922b3c8b3e9fee50a4d9699638d", + "regex": "(?i)^https?\\:\\/\\/586986514586\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3a0e5e1e04dd7bf215d038fa52173f31e8aa08a978713d2255a2c052d97de311", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "80f707370a407839e9346f52ecbce52cf58f06a9797d0868d4fd3954aa2bfc84", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "822d683d274807516bc2b799647001390886a0afd80da3cb66532a1a99294440", + "regex": "(?i)^https?\\:\\/\\/jgmmccontioi\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ee6d848f354d1915e2b86e9faaec93cac3bd7ffa69c6144dd737e271f85ca4e1", + "regex": "." + }, + { + "hash": "3cf10dc9ef82549080b402310b84686acacd8004ccb11a5064f624b8d9748c59", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4cb9070cfcd22522faa174d306e48bee237bbd1c932c4be40f8177093923f0aa", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b0d762f9fc20c869c44249fa5e08ab4f41d0070573f61c658537a25172dc52cb", + "regex": "(?i)^https?\\:\\/\\/59856498023896\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "0e134157234c19ab0f06dec417a154d47c4ca531db43b3a382f1f184e5215137", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c6f9f3fdc4a359386b8d09b1057bdcfac18527eaedf4e2b44b5b66ae95be5ad6", + "regex": "(?i)^https?\\:\\/\\/3214632896356\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "b83938ce732c860558ce26b7f92592c9183370893b150f27bf99b3bc700b020d", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0036df64bf77031755030ff9c2031fe2640879812ab06fd3db653cc51b3c3d17", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a2268105e6222d8dd1985d67438e608a9eca84356c5e47a17b2e00c393b1e256", + "regex": "(?i)^https?\\:\\/\\/654651465563\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0cb330cefab56d4e4b091e0e4ea55b40eb0d5d1d84174b75ffa2d10d1498b9bd", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f00672660cd3745da2675279672599c1c075655fc1b270f322c8b0ca7f27d66d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ven[\\/\\\\]+\\." + }, + { + "hash": "a380c3060c55f72bb5752a74f13ffaf0194776be39bcf045eba0b363af938976", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d6e564b12ab757bee451cf4265d7d77b6b8836df52a2a3b8380b50d77b0b9d9f", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f50c47c0702979a904fd3ebf6001e973b6573ac346f59f0cf6c3fa16e5e754a2", + "regex": "(?i)^https?\\:\\/\\/54654654649858\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "61fae0691d53c4d4fc0516c4dd895e7240508349b9a43486e237bb66a65f9e14", + "regex": "(?i)^https?\\:\\/\\/eqahgqaehff\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ce48e258259323e0791f281cf85849c27a5fb808e50ec5be55b5f56630831055", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "905fa3eb0792e33398c2a3439b59181d9b4eaf5e27f21bb7a10eab791fd11b6d", + "regex": "(?i)^https?\\:\\/\\/6564564156456\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1181e5eb5c3b3bd70da5570cb01d66109b7f237cbd72f5ded108a5b8521bd2dc", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "d648422fdb2249e5823a5e79a7e8a38459721e2d9b98b0fa76591eb7e9b6348f", + "regex": "." + }, + { + "hash": "c462fcda06ff5343a05abb840e2dc77a12c46021d5067ff8d3cc416e096ae8ad", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "02b691c9511841af688fdefd27ee7d2ecce00a949dc854ace7ce87f9e3e62a36", + "regex": "." + }, + { + "hash": "df75f1ddf2d986cd2a040a8a6b79dbf6496045e64259d4f66d7282868b553827", + "regex": "(?i)^https?\\:\\/\\/hssawhanaaliman\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "19b8ca30bdfa778591dd7709b6c5c8d3e4ab238ffa4cb803640828c1a852cc5d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "bdbe1ef629c31b33b30c28cd60e0a2e2c7cabc9e2746c1676ed4874f2e153d5a", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "21d9c131f38508a4f6c46cf9c46a3a699ccfae73a61abbfffa8d19b4aaba244f", + "regex": "(?i)^https?\\:\\/\\/59856498023896\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e0caa1b1b35490982a1ac15c339f87520d648a67422ca36662f1a413d058bbc1", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0fdedcd879969136d1f055f313beea2d95fa1badf75de4853825e1a6d77ffa4d", + "regex": "." + }, + { + "hash": "3f5f0e4a8b12d874326441d42e0ad12433b7afdd1b6dfcc3112d2bba2e15b17b", + "regex": "(?i)^https?\\:\\/\\/564861546516\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "3022bdd4e535fd0f50979911660e28ea28ae1dab67437cd36f2c18fd92621263", + "regex": "." + }, + { + "hash": "8d9aad5ee240b6994c5495ba1652c2b0c4836e270a52b5faa28bb9c28ab17750", + "regex": "(?i)^https?\\:\\/\\/hk\\-teisgram\\.org(?:\\:(?:80|443))?[\\/\\\\]+dist(?:\\?|$)" + }, + { + "hash": "0d7bde0edfc1d848d0bb2188d9de3c167cf958403d074249a306c921aa5806a5", + "regex": "." + }, + { + "hash": "2cb2a7c46207ef2fd16e9183ad54e4e5e8e317fb0681b6a6e9ed13518c2c6d66", + "regex": "." + }, + { + "hash": "131290124dd3cfd2cba65318a45a342190c4e397355397bbb8d7b39d511d6014", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a4b594426a24753758f09ec372e4a89ba74ca7208183194c342040e024f23654", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "85c93372f6b010bacd1356822bb411ea30a532d342bc5f2978953e1b1f0b28b3", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a82e8fe6476b70c2624620caa30828857bd0f21424a16ef067495cb4a0ef9906", + "regex": "." + }, + { + "hash": "45832676763145649de6cb409dc0a6603e25e83ecde9967644a9574d7a1b846b", + "regex": "(?i)^https?\\:\\/\\/trackwtuz\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "8bc7a253e3417c2489d3b6410fd24858a841aef7d78dc608beeb061913f57a4f", + "regex": "." + }, + { + "hash": "4e6d21eeebcb970f191b1cddc4f07820d4dc9a71047c345a007920d58fe37877", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "549c2f46296932d6798c4e7bb3fab737fb98c08a14e31a27420d577f7215bd5d", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z0-9]{5}\\.aj568\\.top(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "76457db0e2e8879f7651391571e23b5dfcecc8c070ae751ae8df460541ce41c1", + "regex": "(?i)^https?\\:\\/\\/54654654649858\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3ed539a489ce5d312ce0f94352fd0ec697e723fb20e1a5bd7ee3711a83e284bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e91018345ce94f034b018a498635213204e144c7e887c502b072c869fd67e465", + "regex": "(?i)^https?\\:\\/\\/trackwrcq\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "a507f3b3504300966d41ff7e6584e310e8d1e28979f25c4ee2f748d0cb69b2e8", + "regex": "." + }, + { + "hash": "9bb20640dd09866b7b411d505634ff407c4ca58411d4d61e147101ad6c73d905", + "regex": "." + }, + { + "hash": "dc3b3310519550a99648a136e6e02970e1e0ab0284c421b0c41440fb1b2f8b56", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "41a65296b679a204934b8a8d29f20507ff7ea3df242f99b01fe5bf9b810a06ab", + "regex": "(?i)^https?\\:\\/\\/156856516156156\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e5b8397e9792b93368dd1070355da3e37a135e3d9cd3be2b310850cb1896ed41", + "regex": "." + }, + { + "hash": "9ac65be6ac5f0a8506673f6dfa774228be46383c89fa80d02f84c4a07d8a363e", + "regex": "(?i)^https?\\:\\/\\/6564564156456\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c602f0ee2ebd47554ba3c9db1e8761c2d06451759fb1cc526203616d3beffc9c", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "82c50bb99aeb1f4acd3bf58560e614eda38cc254b9ac971701b5bf40e84855e4", + "regex": "(?i)^https?\\:\\/\\/jgmmccontioi\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "868e44052fcf0dada27146e80c00d32151bb5f4e9abb835b654a988f9bfc5d40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e910ee4052c1cb49a594c8ed0ec1c401d000fe4ac74fd193373a62a36816aea0", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "55f1d3d3eb251604e8b1593e614ec14428902c3dab268126a7b25c558b25f5c9", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fbe7696d6924fed68a85c8ac937c05b0a2c95a8d602ad09523073c7e879b00ef", + "regex": "(?i)^https?\\:\\/\\/3214632896356\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3639641a93c0531892ce6abf0566478246609a1ce502a58a36c5272015af3e9d", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "23602fa4f1454360669a589d6eb86d851ebaf21ea71f8b2651af68119f773bc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2ff26e5c7a2f6e95d97f74577b8d7bcde632d39df365d37ff42f13440fdcaa6d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a7ab5810f8a3f1b326bdec51d22448f3e62d256b91d44679fe97ecf9baf5879", + "regex": "(?i)^https?\\:\\/\\/561684547896589\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7cdae7d84352519b032e58d905c51052cb736275f00c0aac4a0408f66a5ae2de", + "regex": "(?i)^https?\\:\\/\\/pub\\-4e5d110e4d7e4d6c8f94fdb1ba300d3d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0c27e651b72b66f7cf2e2637d5e2fc24bec1caadb20f4db5609c130d54c58d8b", + "regex": "(?i)^https?\\:\\/\\/845156149156\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "f5614ad2b332ede289d4a9417b8a2306dec61be991f4b26ec7452846bc3487ed", + "regex": "(?i)^https?\\:\\/\\/ta1k21\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9feda18fa01b4045697ac552f0101e2cac100ad393a5a22e1ef1be268ba6bbb4", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d7deef32bb9f56847c979c453739211aa0b034ac15e47d0454f6788d5dce78b3", + "regex": "(?i)^https?\\:\\/\\/hotspotonlineclip\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fab9b3ab696d4d8a369caba053c5f95879db3ed46a4e68b0bec414ea0e3716a4", + "regex": "(?i)^https?\\:\\/\\/65416524562165\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "57b133cd638043df0286c428b4e17f85ec4166a620ab53cc8c7a7da76b11eac6", + "regex": "(?i)^https?\\:\\/\\/app\\-nickel\\-eu\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bf6b14827c6e752c4e1131a16a312c781381039f52e3bbde400ef204ddbb7e68", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e8ee5fb9cb61e32bcd761db13fd139b27e996be05d221b3ac6128c56ce5a636c", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "99addb2432fd79df27e5ae71f5675469d7d405704f25021c283801119e2163eb", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+axhta6(?:\\?|$)" + }, + { + "hash": "6ee5deeea804fd6f583263cbfa890f5536881fcb00098384a9dbf8a9e567a8c5", + "regex": "." + }, + { + "hash": "7319695fd3800947515fb21e847401515edce2d3f5451e4148043e79d966d6f6", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8e04d5f3383c666e9fb1d1746e4fc952d59e3b2103f83781f5ec86990e460918", + "regex": "(?i)^https?\\:\\/\\/614648651498\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8c0677bf0c654230f957a765708de35e2236dd7768ed32cdcb6f45f8de68554c", + "regex": "(?i)^https?\\:\\/\\/goneural\\-rewards\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e875994faea83faa2b5b121a99295c547a77d4558f2c5bdebbf1d8a077c66def", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d263cc2a7e5cc2ccdcf9f90b8fbed3321934ed9e0eda84c4f36be9077be220b3", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1d9e66845aa95fae19078b51fba5e811c73375f1441978328c5a47253085e730", + "regex": "." + }, + { + "hash": "c884a5af42ae432412541a26c4e37c442a0e0a709b9d1be12298c520334303ea", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7caf5ac21a6cd24337015588b940a666ec4ca7dc1a0dd829e862481b5936ffdd", + "regex": "." + }, + { + "hash": "9001eaf2751e136211b03382698e477d4ad59cc159989dd524b5b4e050c476ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mjMcu(?:\\?|$)" + }, + { + "hash": "b14dfcd618270b6cd8c1b05e1824cb4426e4a66b114b1c5b4ce124a489acb914", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5b1a3cb7be299449b51882a5e4d6a49ffea8da8cced412d58884d2ebb8b8b36a", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "08b78ecc56e175dca44f70de2a8acee642a9b95bb589847634c786455999d09d", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "defef1ec09b22d53a7521a2e935ee5ef6a9e39af8282800a8e010f23a8dff314", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7c0a0672e97056e50276e44c1c520c934a956338eab9b7098e97586471ad1b4e", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e7659979becc580375ee88be35a678fc9e269df5c84b3b4ef17988eabbbff8ac", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8e8d0cdf2ccc99a6f06b9a79d3210b9135b9add68dffe07cb7d4b3ee010b8bb0", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "93d2ea5b5efd2cd5c87217dad881f300202e40732bd34a304f5f9567f76c4f90", + "regex": "(?i)^https?\\:\\/\\/hssawhanaaliman\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f69f9f987ccc5cc747199f66f31bfac2968f61041a2f92a0d4267150c8b13d72", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f9bacbd9e6af89a7791450997230d4f83ff901ad63dd258b9f9e600502fd0261", + "regex": "(?i)^https?\\:\\/\\/chubby\\-tiktoker\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bb59928ccdbd4685c02b85f6ea0570dbfc79ddfe03051764526cc87e4b82ae9e", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "45d6596ed4cf461d86a397b9c958239c9ba4ee4fd137c1e1f46291b66f230e19", + "regex": "(?i)^https?\\:\\/\\/hsdasabanaaliman\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4fdf3cb0fdf0f011e04e8cc3a378d2602762c33864fe34b4cc1c1fe1fe6a9c90", + "regex": "(?i)^https?\\:\\/\\/564149654165146\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "092304a389ac3cbe04c9a97795d2d6bf5ee05ea4e60e60b50bc72a4e63e13bbc", + "regex": "." + }, + { + "hash": "512d1778744456863651096584e3e0146f49c7194bded1f1091ece9ca5f0149b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m[\\/\\\\]+index\\.php\\?redirection\\=words12$" + }, + { + "hash": "be80d07c4b0dc7adef51532c7c828b6f4423dd2a2710f7ccb991dce4b846648b", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f1dd697eb79cb8e3ef99d9db12cfcd2ec249729ece907e849d16446eec0d1503", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "34f28d3dfd3a34d1070b4f4fd162eee23ca9b04c2a4c3efc611179eae0950fc7", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a0760cb6ff6feb04650de4d1e5a6b132a16f0595c6491d5632ceaec9d4a4e3d8", + "regex": "(?i)^https?\\:\\/\\/maurituspost\\.ink(?:\\:(?:80|443))?[\\/\\\\]+my(?:\\?|$)" + }, + { + "hash": "702fdbabf42e6280ce9859637c7c1d87d637333051f861df876e01915af775ad", + "regex": "(?i)^https?\\:\\/\\/614648651498\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c14aea1838b47f0d43b1f5d79bf753449fea850018015484bc40c15badc58794", + "regex": "(?i)^https?\\:\\/\\/845156149156\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1ae6bacef7a5587d892bacceaac2e2ec476c3a51fe0f728242dbbf305d0be9ec", + "regex": "." + }, + { + "hash": "39434b80f46ce819e6921f44e5e77ef5e934104ac6ee827efe83188d0a0575a8", + "regex": "(?i)^https?\\:\\/\\/59856498023896\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dc775a1dd9588c06ad6511027ea7576003299abc71d1190ba9d240bc991cd4b1", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8c3eb33629a8231dc4e75d2eb8a3c685b876392d6d4e4676d985549fce6486d0", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e7df6d19f68b5e28671740744645a22a7ff9c41fc323d6b9d46f52bd75a12681", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "054c7d099ef98c2333932c8b8e0bc3e8dfa98a8ea2dd964181dbba412a088da6", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9bee26fa4fe76539581227d1e271b5bb28ec48fc0ab604f62f76228f4871e5c8", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a8b8a5b2a45fd5a0e59867776b88e7d72f7d1e76fc558c4c5457756cf421683d", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "cdae5ea1a860df7645098baee346da403b2e427334d82172bf07c5e6edeaac53", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fa564fbff947ad2fb0fb1e9b031b3606c12ad71a8ec1e7e654ad02f58a7506e2", + "regex": "(?i)^https?\\:\\/\\/jgmmccontioi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "702a0fcca90d746b9319033118d5b2a656e31b5dd2baf9423816a6e006b09d51", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "76b2f48ab743ffd668fe061e89c9e8e98f2cbc3cae05bbeb9977386c5787c040", + "regex": "(?i)^https?\\:\\/\\/156498156489\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "83ec39f2fd89aab26e8ffd4ffdbf0dbdddd851f39e613cbcabe5077f6b00d6c5", + "regex": "(?i)^https?\\:\\/\\/5646519814965\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "62869105f0e1e870270f686ddb60b2f9900b7dc39fdfedb33eac89ae94ebda03", + "regex": "(?i)^https?\\:\\/\\/trendyclipszone\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cac249c541230b1c69ee4014d5a5476b93d8fb3a92bc55819bb21279eb63ab79", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8bcea0b7294eed5a42ffb5df1f16180d995d29446d19a6f5d5a82e425cf5d994", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "a96995aa9c4fe5412cd5a04729b4287f57e2537e80917b0d251a03a1ab30f0d0", + "regex": "(?i)^https?\\:\\/\\/156498156489\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "24555281b9e85c4fefa8f126907c55fd6ee78242fd1027ae9ff2272587cd7a0e", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1fcdda2b67b064a154512cb67f52ac21face30a2610f6cb70682595026a3fc95", + "regex": "." + }, + { + "hash": "591d5f1aee097c5142a6e4a729d982bc35f64a37a3086f8fa2360d66ad5a6838", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f08ff662831230ea3049d446cc32f66bbe95d6d8dfbb34ea7551532f62fb25f9", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "68c56daba7183ad8b17533e34094629e2f94469cc418bc6ca90e7a2be150d342", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "868e44052fcf0dada27146e80c00d32151bb5f4e9abb835b654a988f9bfc5d40", + "regex": "(?i)^https?\\:\\/\\/trackwxnw\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "628377fcd9ebf78956ba4b5c7bcf0b1c36a44b12aba34695d1ce42750c63146b", + "regex": "(?i)^https?\\:\\/\\/whale\\-app\\-3dtfm\\.ondigitalocean\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "9001984e5b81af0f3eb824e0881db0a9096ed46aa2da340233dfc814a73bc1e7", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c2f9e62c475841698627534897929c31324165834ce32f2785e9cdbed4a40419", + "regex": "." + }, + { + "hash": "b0ca87ed80a924098494d0601a06801f54dc53aa2adb252aed09361c3d2abdb9", + "regex": "(?i)^https?\\:\\/\\/489543159645\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c0faddba54a5be0f24da22028933acbd236879c692ecf9a53da5bf356b8d4889", + "regex": "(?i)^https?\\:\\/\\/54654654649858\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7fd80f16ec6444e553eb4edffb07fc88427f2c37228dffc85dd51d362cb7ebf1", + "regex": "(?i)^https?\\:\\/\\/s1x32z\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3f0e4df2998d1e5a1cc11039b9b5256adddda37e6a53cabdf5109418926f9d87", + "regex": "(?i)^https?\\:\\/\\/65416524562165\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "0fec16afb2c7bedd0b30deb7efecaed5f72c2d49f3f701e45b39376738750c21", + "regex": "(?i)^https?\\:\\/\\/hssawhanaaliman\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "8bde150e01b373f263bba978787dffd818e04e54555ae4ec3ebd480daa4c4a58", + "regex": "(?i)^https?\\:\\/\\/trendyclipszone\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a0b9b7064571a8e774ec8be9a10f2297c4cc17302688c1c0dcb67ed0c3c6021b", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "fb5e1e74f60d9917e4d916e58b0e188c5321ab6f99e7a185498ad8dc39d1e44a", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "27ec772e00cfea5f769ee3d98e1c7e50208c5704c584d50545d3c592e05530fa", + "regex": "(?i)^https?\\:\\/\\/561684547896589\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9a32500cbff59bbd1ede0e5ed43f3705b8737cd6fdc3df179c44b3f15e9a554f", + "regex": "(?i)^https?\\:\\/\\/3214632896356\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6afa7f665a7ba122efacc58794dc65841b3d1048cd246ad15e49e0f02c793c7d", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "b5bef8778cb688111a56627950dde600a84359005ba93132460b673ee3c9ec00", + "regex": "." + }, + { + "hash": "5b1a87bdf2167fa6971bdc647dde8e11e849656969b20d1e21a372239792b427", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1eaabf9b4e464328eb9bcded52dadb85bb7fbe39f77792bd99536ea6cf74189e", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c7f220e8be650540a42f0c50fef3973313d2d4830841bb3930d8e08805e86a79", + "regex": "(?i)^https?\\:\\/\\/156856516156156\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "49efa3a1520f44dfda59e0d8a0550c8a2251694a61f499a69aea073c563554e9", + "regex": "." + }, + { + "hash": "8c885bf70654b0ef528678de85e8d8a0bfc27096a1193052dfab0143205d91c6", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "895d4abf897eb0c4550a8f906bcb9f1d02bf373f5cad0a30e868a311393cbda2", + "regex": "." + }, + { + "hash": "51eeebdca7d66345b641e8dba97bba25cb1137ce36146877bef82f9b8b800af6", + "regex": "(?i)^https?\\:\\/\\/food\\-tv89\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "bb73ad3b2c66ce9a24806ca1503ec21ec42467299d316c33e201ca7f404975b4", + "regex": "(?i)^https?\\:\\/\\/654651465563\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b2320fad7fa2a5cc71fe2dbec8d61e1621bb6a3c08e66414f5e7c09ec46d337a", + "regex": "." + }, + { + "hash": "a30a9c477ed00539b660256f5843547769bc90478f84ad4f75af727f85cb55bd", + "regex": "(?i)^https?\\:\\/\\/63\\.172\\.153\\.160\\.host\\.secureserver\\.net(?:\\:(?:80|443))?[\\/\\\\]+bred(?:\\?|$)" + }, + { + "hash": "ff804b44b80374142e051a08897972218e2651e0b9c09e3ce84e19878d94a55e", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "5000d7411f07b201dfad035f5386f2e494ba234bc374322fe9705100da29f294", + "regex": "." + }, + { + "hash": "7ebcc0e9ea6c18f337a971d2155d5f4c98ab91bfd01bbc3a2644e921bb924cb1", + "regex": "." + }, + { + "hash": "a2b660be713d02e38b8a705ea7503a5ecf7d9486828fa67914f83c929ff59bb1", + "regex": "(?i)^https?\\:\\/\\/3115nn\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cf5aae8ece1abdfc370f05b7f281497755941ff448adcc5bccbf7daa2bbef489", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "fbf893af373cfdfef2597c0beae34496025854a7a9a4b0bf661882de9a35c140", + "regex": "(?i)^https?\\:\\/\\/hotspotonlineclip\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8c36b1885518c00b27731239a82418166b78084b1cc64a3b3770f06fa0e26af2", + "regex": "(?i)^https?\\:\\/\\/85435892356\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9001eaf2751e136211b03382698e477d4ad59cc159989dd524b5b4e050c476ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mjMcu(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e70f6e8ef3b63e7c29557daca415c4a2a2f566366cb3caa069bef082184a575", + "regex": "(?i)^https?\\:\\/\\/59856498023896\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "b972e4c39dcb217e56edd8585c72a6edb0a67af99ee541ac7b3607c58a300da8", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "95b162962cff4a6d7db73de89ac8e5e6c65f34413c1137e58cbafe5c96c42cf5", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "5829994ce7f477080bfe6e6caefd9ead5b0211944cb19dc4c22f8f940c298678", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6be9f9969721506a13af9d42bc532df00b2c8161447d8e222520ae7011f636db", + "regex": "." + }, + { + "hash": "bb4998f7b7a4aa7ec40141dce66cb9fc7b021730cbaecfec90056b808767a0e7", + "regex": "." + }, + { + "hash": "1b46787570f6d9f604daaf6388316945f4a6cdc611f5eda63d1222d3ad742b55", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+jmca[\\/\\\\]+pages[\\/\\\\]+region\\.php(?:\\?|$)" + }, + { + "hash": "6b7a55bbdf6bde5605d811603df375cc9f1c9035a77be7e95a3e7f89d78cb0c1", + "regex": "." + }, + { + "hash": "cee0043cf26282cdb38bac80d9be415aab49373df488cf3e3293dfd55d67b70e", + "regex": "." + }, + { + "hash": "641b8a5d89e69eb5717339b871f6b598a65d50a36f12e97bd06f6d361d0fd3a6", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "959d13f404b2d18ce34bceee39f8f09bc296d238815186ccb39ea6e79f21a6bd", + "regex": "." + }, + { + "hash": "cb2fbb14c83abfb11c25c793eb7426d143cb18d0d44f35983df46cd7070b7797", + "regex": "(?i)^https?\\:\\/\\/khgbybws\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "e96ce35c8ce3ec181c6d5cae1283a5a6b9df2ae6d8b8cea40391ef860b77f38c", + "regex": "(?i)^https?\\:\\/\\/85435892356\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7424c4ec5b466af929fbd4d1dd72efd0e4948f60c313bc7ff7f12a1c77a7cf0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-6" + }, + { + "hash": "b9d89252a97d6ce3b63da1c79422715a4ad7c9bc73488d5ed4109da497518655", + "regex": "." + }, + { + "hash": "1bb98a24b23fbf0730e8970d14ad2d55f84b91d042051fdc9966bd16dbcb47de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4595126\\.info[\\/\\\\]+1[\\/\\\\]+010001938a7e06a1\\-4365305f\\-b166\\-411c\\-af6e\\-185e5c0b48d7\\-000000[\\/\\\\]+scrCnG\\-HMN2PB5Zdjj0xFH_LfPQ\\=402(?:\\?|$)" + }, + { + "hash": "83d1586aa50e105bae4712710d4a716f45abc58a76f0e9693370f27a5dc3b29c", + "regex": "(?i)^https?\\:\\/\\/trendyvideoinsider\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e28fe83a263775ef7e225271cffe9e86f5d139fa6637f97859af8122174f74d9", + "regex": "(?i)^https?\\:\\/\\/546549861654546\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "94be1da80eff5ad807205bec85a4cd9f7b2b711866b58fa5255b83c88588c283", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+id[\\/\\\\]+client" + }, + { + "hash": "f6ef0e414713f7ec2600b7c36bd113b6f6271f181c2bb598da0574867ce2d2f4", + "regex": "." + }, + { + "hash": "d0c531ee68051e2b73cbffdb4113957dae8a1e14941d221cb9490549cfee7676", + "regex": "." + }, + { + "hash": "de79437a1cbcbef695ef7e624f39aad101bfb796dfcaccf10204ae6a51cd36a6", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "fb9d6ce6d1da46e68b041847d7410842ed706cc6cd8d8ec40a46fe41ae0c8993", + "regex": "(?i)^https?\\:\\/\\/59856498023896\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6157fb4aaedbf9783e57a9a9807ed822a7fb5be43fb0edda06a7297d949b165e", + "regex": "." + }, + { + "hash": "dbd2d810254336f73772b49cf1e01398156fdd91c58ba914a0904610d78c4c6c", + "regex": "." + }, + { + "hash": "476f13ec413f96c3a9999d3c5202261c39dc11543ee7cf94d9fe97e8dcef8d81", + "regex": "(?i)^https?\\:\\/\\/pub\\-a73909e6e4be41c79b34e8403ae87a0a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e9ad254d788d0cf3c10b139d104a26a416f6b53fef31cd1f020b89ed47a7720e", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3d0728c46feee50131723a9376ca8addbb1b32bc1027096bd33cdeb4aaea9854", + "regex": "." + }, + { + "hash": "84a637cd820817bb5f7c553df0b0fb3891cfe71bcad5e88e7d75da2a66eaf2bf", + "regex": "(?i)^https?\\:\\/\\/3214632896356\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "53dc7c18880108ea452e3dd70096c5a8e36464a2fca67e6d99c59c1a8ae858f1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "52dc154b012baaafb293dfa34087ea9372adfd17daad6844732cc0dc3e9f5752", + "regex": "(?i)^https?\\:\\/\\/app\\-nickel\\-eu\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "6ec7617b9d360bfacd7956de8fe988e0a07fea27b0ae0d37d2d7e19183b53284", + "regex": "(?i)^https?\\:\\/\\/hserffrabanaaliman\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6921e7b85b4336cf0077c2def41f42b6ceed9afc003d1ff2765a37c1f7c8c156", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "28c1ea9d81fcc165f1ae1a06c97f11b830a96466f68130aebad1e31f7502daca", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3c051cd08a1cbfe8b838fb15ec6cf60db97783ad753a079f12e7592222bd75f7", + "regex": "(?i)^https?\\:\\/\\/s1x32z\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "7c218b23fcc7ce54ff9954427de0e4987adf76888bb37141d6b5cc9f96d98e11", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "bb564e2badb3b3ef3aba270be3f4afc5e5d370a7b8aafc92e62cb1d9a7b20990", + "regex": "." + }, + { + "hash": "9093d45d3474cac84db92a9d7e7182b6f4823bec59f8ef40a752a47814781091", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b9f60ed14827bb2c504694c21c9258d2cdc6ccbd1a1c94df786f1f5eabb3ca2b", + "regex": "." + }, + { + "hash": "a0786e6091885ded6004290263c3212eeb7943e095c49df425c0ed96a6fe8759", + "regex": "." + }, + { + "hash": "d6f17ee0edcd00a1b5b7a336eb76a92e408fce827f0a73d66b8b176bfdcd8686", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d3ca9dc3e90752ee5e8bf594ad56d7d7268edfae7d7e003540722c37dd09906a", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "622d987682000562882113f897e5f2825aef4d167a0a17dbb1c30233551a9322", + "regex": "(?i)^https?\\:\\/\\/6451865114653156\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f2e0ade32fa7cb7292b901c82dc64070e18ea0ffbf3a06a02e33944fb3ca4c58", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "967ad7a1843e8f6cd55baa553aadeef991ffe8305a1b5f5fe3ed08c04fb3dd1c", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7257bb797f3541b918c3dbb6bc8ddab9d2fd648601d1307d8489fcc1f52917d8", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "051b59d2c0b8f2f0337ba26c2fcbc39e4dcc0c6eb58d4a2b76a91846dc9999a6", + "regex": "(?i)^https?\\:\\/\\/nerudfgjdfjgdfg\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "180e3f1109febee593894287c5a53e0b8d7f017ecee5f71802c9f9350bca3a4d", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "192f6c74344d1e314e40f1a9961b106b83098204c03eb07073722fc5a7f7a6d9", + "regex": "." + }, + { + "hash": "76694c8f981b023e8fb12fa1b29ade60c68bf2ef8b82b1c65a922f1364679fe5", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2bdb92279c46ff76fe21801b3ad244c36c221bdba3ecd41b1cb61ab4832a879e", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bcd585d09aeedb9b9795f531069834b25bf80143265cfa3a654b3c2b3a37b466", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "83c0cad4059c9587e5b59093ad2957f8ca11a9b0439f2e0f8517777889b32858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "0f0151d63db76ce0ff6524cc8d0902adfc7beaed7a6eece9e5c95c401105f1c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "23478094dac886ce6fd8c27a9f15a4b631f8cd1f3660b2b801c904bb5f065702", + "regex": "." + }, + { + "hash": "f87fffa94c49c0430d872ed509057295fc37750d63a1fa445a7b11ab487cdeaa", + "regex": "." + }, + { + "hash": "2b6a6731a412af3d581bc5a85be651d83270c4c67d207bdec913b8b0d6a3c646", + "regex": "." + }, + { + "hash": "851cfbc8c1d746f35fd1c5fbc3ea634e5a33cf1b405da82f98d9c2922eee2e22", + "regex": "." + }, + { + "hash": "d20f8c1a13ed43a9a8314fdd77c4b341ec8e4baa6caf397566e2477f43fc75f0", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6d868a351cd72c236bf664c4cc241608317aa146da14ee42c325669ed5dd656e", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e3e9fa8fdc743bc8d5407743e2b147ad096b633b59e955efd59e1994e722e9e3", + "regex": "(?i)^https?\\:\\/\\/999999999919\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e3996a894a4e7f24a356208c2745c922df4b323e0f885ca8a21b603dcd662ac3", + "regex": "(?i)^https?\\:\\/\\/hssawhanaaliman\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5785b55711af2f5564db9909b17f2d20b89245c2e5e939e3fc65f9d99e16389e", + "regex": "(?i)^https?\\:\\/\\/nalimonhassdima\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4faf8aa8336a14b5098ed69340375a08bbd5294331c21c84ea9716543b87fe25", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bcbf62d8fd6c4f15e68981250c842ed19b8da904ac7f164de9ff1a28b496c149", + "regex": "." + }, + { + "hash": "d178194d5f91fca7a05332811c0465a27b4ac26fb54ed05ddc0cd4665e5ed239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd50bf9e32f368652863445e5744f76be33106c283bbbefca98854660c3fdea6", + "regex": "(?i)^https?\\:\\/\\/125145648956189\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9ee3138c3bb6b06f40da05f65d5ed2dcea20651df0adea2598cd27afaef5af77", + "regex": "(?i)^https?\\:\\/\\/s1x32z\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fb00a07bc04bcd3f0a6de22e76eafd22b02dee65e6ea49050742c538df9bc8f3", + "regex": "(?i)^https?\\:\\/\\/586986514586\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9616a3623494bfc472bc7c4e39d22e79247b21313d32f9c268c56ab4490f6b86", + "regex": "." + }, + { + "hash": "4f91d91f4b086d9f3edb634ac418fb503320f01862bd9f0272198861b88e1ee5", + "regex": "." + }, + { + "hash": "e812a2e5b153c052c6787a180f59c8405db03f553bf421ef339f7a36b7d200d3", + "regex": "." + }, + { + "hash": "b835c1ea027b712645c5446f6f86785d19228d9f2a3f5bbedb85fe5f25afd7f9", + "regex": "(?i)^https?\\:\\/\\/instagram07386\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "70c3563f54e4687f3498e072953309434c517cce650469db36758ecd62c9cf49", + "regex": "." + }, + { + "hash": "9fea0f20dd9c8f8fcd54c11c1b76aa9499630635ea94a8baff17939564d6127e", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "81f26ac2cd8cbdc43034be3fab49f887ea04427498599b8465c02f4192977d7b", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "8ea56d503281330e95592813940b88648e09b8b7b2ffa9d621f8a0f5cd61832e", + "regex": "(?i)^https?\\:\\/\\/586986514586\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "8ee15a656002abc4e948fb640cc843bb72c06efcfe9f76ccd7377962e8a83f5a", + "regex": "(?i)^https?\\:\\/\\/s1x32z\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6c2332e3887df6087e3ed1ab5278217f9e4b42e9b6af666e8cc366c5ba188238", + "regex": "(?i)^https?\\:\\/\\/auths3ure\\.z27\\.web\\.core\\.windows\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "df7042b948f7b585dcbfba679cd901db7ac99cf3f9170862879d66a551ce5f2e", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c0e79f256c6ef1d90f32257cfb6d895fd833ced0ea4fa379da6a5af5242f08e5", + "regex": "(?i)^https?\\:\\/\\/561684547896589\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0f71752adb1a6d0ffa1ec1a4d9e327fc3d8627cebf34efd02b13c83498e77e5f", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "cdfa829611b1eab09b8027f97a02ae81e6c1ad4bfdc9d02e68efe65ac39ed320", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "fb3c74624f68dc1b151ae5e082423ff8dbec98f1c0c99259488c648d33e9155e", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "bb7daf8afee7023befaab875d04b1904e41bea1afa10de5e2daf13e6b857068d", + "regex": "(?i)^https?\\:\\/\\/156498156489\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6af2f95f6a42206a2ac8399ad2f77c35719530599215562e016bd2f06ada1cfe", + "regex": "." + }, + { + "hash": "fdd5fc4651b80c56cd5adce59f3c6551a49d9d7906937c99a17c6cc2563942ec", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0915c2e25b34f2a82e62bf70bf9cab133e8aace5b29dce05d5ec901bf69352b1", + "regex": "(?i)^https?\\:\\/\\/5646519814965\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "df41366b035f876b6e4be487bf4f51f22cc861f2cd9748b1bbbbeee311854e76", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4a7f2c400f19e47d15b5fe3bc717b0a06de8d4f6900d68f21939439c462575a0", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "f0645640050a368e1fd56f541531873a28639127b842aaca488662c4d28f47f2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+L0[\\/\\\\]+https\\:\\%2F\\%2F4594124\\.info\\%2F[\\/\\\\]+1[\\/\\\\]+010001938b785a4b\\-67bf8571\\-7347\\-4bd0\\-bd8f\\-2677d4e48da8\\-000000[\\/\\\\]+Nk_1N62vINqn26p2_sNBiGi7fqY\\=402(?:\\?|$)" + }, + { + "hash": "3b0e6e129fe5894958fb10fc5ef4471be668d427d653ded18e5475289961bf8d", + "regex": "(?i)^https?\\:\\/\\/156856516156156\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6ae4445de87bbb235c597b1806a20ac575cdd6a073222040eb487500a86a57a4", + "regex": "." + }, + { + "hash": "416a63c0d8b8d21ef52e734936430f9ead963b1e726fe415375ea372f62a1847", + "regex": "(?i)^https?\\:\\/\\/hserffrabanaaliman\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "01e490fa258ddee24908b57bacb56738a11742d646daabe34879a65a826e58ab", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "87ad55f6684ef7a61ff5478c4beca50e18ad952b33bb4f0372b53a2fdab768c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)" + }, + { + "hash": "5973c471842c3d5c5629d11b3a2da492023d85ce84f7cf6e8e6a0eb8dd9a2b81", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "4ecc381d02c7f25f51a33d33d2248c15a2e10e11b0b36e80a8e56a23c9191b20", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "869686f38d81b7a6b6e234be7e573bb851404c47c488138766be60aa98873c53", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "390c6a5f9650878ad0109fc1a4badfe1c9c51e713c13c02e31486bb3796ef060", + "regex": "(?i)^https?\\:\\/\\/546549861654546\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6eaed419ba30fb2d2f441cc5328ae7110cadd6a396685489c0f31292b9b37546", + "regex": "." + }, + { + "hash": "4ffbcf9fa275b1ac6e278792de00084d40c64ab29b30cd634334428eba947886", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "5f6817d2021424910ab5fa30ca70027dfee56e943a883ee0b0a8c6350f0fab6f", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "41965af0fba1cdb16b4b88bd1244afadb1933d17082faad8d45d14368c4fb381", + "regex": "." + }, + { + "hash": "c8e42e85e0ad8593e5d335d089e30497c664b0ebfa83e49bbc085d2dd83ee10e", + "regex": "." + }, + { + "hash": "62fcd35dbed7b697c608200ab15e7efbb089d33a41a72f2f01b97381b2f0d74a", + "regex": "." + }, + { + "hash": "93c0d7a8d26399240446e238bf6dad0261e96c989576d124161f652015574c82", + "regex": "(?i)^https?\\:\\/\\/www\\.payments\\-telstra\\.170\\-64\\-180\\-189\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4f1e57a38e66638bf14c9c4341d3476e86de2beb1f2862e7775a7ff4f1d3886f", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e26656aaeb07e0a24430ab6e873586f769bb8a2756721fac6d4039b9ffbcd6b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "a0760cb6ff6feb04650de4d1e5a6b132a16f0595c6491d5632ceaec9d4a4e3d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "26e38f4415dfdd3cef9f24056f40e95ef0928e33a9d4ff94accd2acebca57435", + "regex": "(?i)^https?\\:\\/\\/trendyclipszone\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1587c938c4fa83916f32961c8e41b829a29048f5a648fb35d9c8410102ea8cc1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f6a146bafd88d7623d0b00a65400ff5a85687923e5c54d781682339d0bd6d09c", + "regex": "." + }, + { + "hash": "eddb3ce95b229821ac6f6eec974a86af09d3d071ef4695b935962be5415dd666", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+97IYY5Oc8(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cfedf2385760c88046fc30e6d050510bdfd50b98a3067cb74670e5932991cca1", + "regex": "(?i)^https?\\:\\/\\/5461954965316\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a0782ee9c18567aad16702f4b8833b30aadc526f2700de08b61347a8c19ac7b5", + "regex": "." + }, + { + "hash": "21a4b0e01b7e7351b83f775482003909eaa2d9b2f29e5b5c967720110e86e256", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5dfd41c5e96a8a3248095b70aac66d60bef66d8abc58f1929d0862d17de00713", + "regex": "(?i)^https?\\:\\/\\/nalimonhassdima\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "452ad725530ff3ef68014290aef2738d04801d93d5f9e329e88634d39fe8a462", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a1ab9e3dbd79672a350d77fc4bb22d481b290627c88147cbbb3d9fc4c022bbf6", + "regex": "." + }, + { + "hash": "9c9513d27eeb1f3a08663274ae55acc5731f9ed1edc4a071671799e4cf4ff44a", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "00e48ae057405449d1b8d8393d6ea06e5e5644b8f4f74c936280f6dcdf157248", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "cafdeb85cc387a402856075c9f0e46b537abb234952cbb9f26fa9e95da3477a0", + "regex": "(?i)^https?\\:\\/\\/25145615616\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0890fd60eef1c2da1fe9cde76b87c93f4ce314878eacecb691e872a56791c656", + "regex": "." + }, + { + "hash": "7813032b6331018e4a3303b64f27577d123607df2e4b25b88d08428b69c17bfe", + "regex": "(?i)^https?\\:\\/\\/6564564156456\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b62eae5faf1bfebb7d3d8d72da0151748d1450abe850b9c4dd571635a89b2483", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a2bfc5d7920775c2341e9885d4a76eac5e52ead69b6f09d39f575de652abfe2", + "regex": "(?i)^https?\\:\\/\\/dark\\-sunset\\-6892\\.vapelerumuj1932\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ec1457051709d9e0f48bcf279b2271d5b57846f1996aa1ab0d4d67a71b797cd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "02d2b0bfff1bb524136ad2f7bd2fe0ac90dcf7d3108a3d77e96bdeecf6d2aad5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "56e50ee435d7f5e16b79207c76d41e153c57076b30d581f367c22c9c92cd1513", + "regex": "(?i)^https?\\:\\/\\/999999999919\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "512d1778744456863651096584e3e0146f49c7194bded1f1091ece9ca5f0149b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m[\\/\\\\]+clients[\\/\\\\]+KrhFAD\\.php\\?verification$" + }, + { + "hash": "ac423caca04c92864c9792dea0ca95650cefac4fc230819652382ea48f4afc1b", + "regex": "(?i)^https?\\:\\/\\/85435892356\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0de654ce5abaf1d8383b29a4f48ec437191ce025f741c02d53f9c52bb5bb734e", + "regex": "(?i)^https?\\:\\/\\/nalimonhaa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7c39376bf7ca5d40d14cfce6d5936e4f36fbeeac152d1d9187bc11439c113c8a", + "regex": "(?i)^https?\\:\\/\\/54654654649858\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f2145106b6c5056718894e5bc95cb6f9bde6ee770d5e28741aaca57514f9ea45", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d9b99d372484737b728f558cb15086ab9c44872e903b2b0c31e705e826081a59", + "regex": "(?i)^https?\\:\\/\\/489543159645\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "61dec669010afcc80217e969261f829ae58b17200459872aaf841f47a394af23", + "regex": "(?i)^https?\\:\\/\\/nalimonhaa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2efb88ba13b87c71cc451d481c155a92d259c71a4b05196cc4749772b86b58ef", + "regex": "." + }, + { + "hash": "25aae75aa1dbb98ad5c47498e67fbf2b9ea1c191bd78e094ee26dc721b65c721", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "69938e3e167d5a72385d9c654f0914268482947a5d310b1b6098aca1f2afdeaf", + "regex": "." + }, + { + "hash": "36a12a8180d5efa4fe35b33694831e185c13d050a59262de809e55df5a40e24a", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "62a06ff75ebfbafa75638f45aad0b9fd9d0820bc8c4ce9ddbc52d4622861e539", + "regex": "(?i)^https?\\:\\/\\/546549861654546\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "23b3cd27eb481bd690da9de47dd29104887a4df0bd13b000e54acd7ddeba9e17", + "regex": "." + }, + { + "hash": "2fa3e67c427e6e74a8ac5d2455ed2d1d85f9cf98e94a71974bb551217e01932e", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1f476e12fff52fa1c6c5899dd3f1a71c92f48c3eb2a5f888dd497e3fdf2ddaf1", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d805b7886548f3b39baa86eb80a822558582720f8820769c8ba6a5c015c9d6d0", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "871278c1d993e5461797be56572016d243807bda8cdd9e6f2ba4d0896c8b6181", + "regex": "(?i)^https?\\:\\/\\/654651465563\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "01d5e98ce4d4d26e1d448983ed8452bc03baa627dd2d981f61a8b17a1879d55f", + "regex": "(?i)^https?\\:\\/\\/54654654649858\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ce3ce950f63ac713c7674b77f19db32110f30805fa1945203f11f5de756c68f1", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "dff57160933a73d512bfd63ddbe767705d9daefa9346fe5c68c333f3fea3c2be", + "regex": "(?i)^https?\\:\\/\\/489543159645\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7098f3a54f4817c8e580c7e4e86364ce072d735654e85fddeaa89b7c7a2518d9", + "regex": "(?i)^https?\\:\\/\\/654651465563\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "66d430354081cd1979087467cfe4eb4fd1b398f3f16434b12dd3e2091aa72f09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3c1ddb6859f77febf89f9fa6df4459b605eafc3ceceb250037fbd05387c02b09", + "regex": "." + }, + { + "hash": "13254cbb71e84216305bb05e78cec2eccf6784dbc15a6f509f969a2c57936fba", + "regex": "." + }, + { + "hash": "15b6eb72448d7025194c7ee1a1f8c13e58a94b7d86b838e21015d8a8509ff443", + "regex": "(?i)^https?\\:\\/\\/trendyvideoinsider\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "294b20de8fd64dc83e6daebff40cc35bf1ddd3fd61b34e27644bd9008989ae92", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ea81fa7f9113bcb16585c3ecf1d8e0defe130ab06a87f130ea168b6752d97e99", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iSRDDYE4NA_mZtczvQOYbhxKk9RQ5tmHZvlfX8idEJsdPJyXyRcVYnx_cz7Cz6xIUBnif74\\?_\\=e8ed7a28\\-b5a9\\-11ef\\-9dcf\\-9046b10a44e8\\&d\\=BQ5qQHPeKpcGqjkxKe87LpcMuvYjt_w50vzueSQB9AtjzX3qB8cO53By3SoZa2wlx\\-RGvIYC_82YwSK9X3mirzVq7wHSe\\-TGZXXhnJb9DO1T0zPopd6_ldb61K5ZP15fBxVNRIYRJpZk6myHhyZtetXb8VXCQkngz3P8TkZsq_IQpJaDSrhmbp2dQis73RAMRC2gP0h9xb3A10WjvVoc1jHCV0j2aF1v5EcbhGrZshrzCdARTb8Wfs2zmXOslOtmyB0k9\\-4B7rjlWF59nm5b8ljA0Lq0ZBzEdGPR2f0_r7ZTfhdUOeBdv2\\-xopmlD\\-Nb\\-jPeieyj24sIQwYiE8u8w0nDNTMpK8sR\\-Z6l_PHMI18ktWJML6NmE2MjwZBj0aM0aKajiUVZl9skotIgWLcXNYi3qkn3CJt_iH6ub7Hn7cpfUUEZS_yCeG2Zk56jdI6JbwkB7Mqtrp5R2yfVMocKyIIiu21\\-Koq5XhFMGCco1N\\-rst92OUZSJtPpMMtfhxBMr9Lwbwpgiyd6BgOUii6mmC8NYhkL4BHOA_QBQLkQ_GxL\\-r3fv0kviI_yrCiieZg55n8dWHGfkDnsCMt2HDqOFaiOlt1wZuRrq8Iui5lAqLkbfTCSEDcvf1Fg\\-hUwR1v0volTdDuCkvx2fPv1Q95oH5HUSh_PcJfjezudahvF7dVAjwwPnAjcUDskiZwFQ8AkdOSDEuueCY2yKfhKpyD66sbUqMyvQl7wBOsz7kK66_vFMTEtb5ycbjRk\\-RM7AGwH0NXYYv6CFWMYQc59N3\\-IVT3IpE5yJUrY6Kn9T86j4bJyYhGkL0EntdH6uMdw7y\\-ZnH\\-JfQC_nAb1nSKlJhfC7LtPEJ3PfrcN2kMc7pMgZiXG3B5ebSDbE8p4z4O4ii6q_7Bkmel8Nieg4Nq5ERD88dwVd7vIjpcmriewxI9oZWymu6pv_6\\-ltlhxnWjJ77i1e386zmnI\\-1ofahNuwoljS8vo6H8pzB\\-3wupbKuwqrbv8\\-UoKYVZcsIMJPDkLnJHIDNLn\\-_u8vwU3J\\-eS\\-vV3qu1GFv01v3G_x8uTKMFSbXpip5Vj0v\\-axoET5y6LQV2JtqRst8YlzV\\-cOOrml4k9nquwDRBA0418OVkXNYGQvIN7_YzoylWyN8xxeRxVKsIufee1nLzCZb798I9DCeFBfRdOahg154FcY\\-LtnqciT5t3Y649IzIgZaPGa5DkiFDue3TrRfMVJU6Qb6Rz60E_GwDxipxCE_bUlx75VEuk3vg6bXoIbyfk0sJ8pHe2gOwvCnHR8noD0BNBb\\-VL67tXxIC4kHMnUEGnnVVA3wpU7UkdweNoICp_Xo\\-GeGMooMlUjo3VEkXKfyulMW16zdDAiypynJvQCzw2g2IhoDeXPr9uvhHLTg\\&prsl\\=1\\&focus\\=1$" + }, + { + "hash": "9dec2aa1cb67e8a111eed06aa26b3af72b3eac886d2a6dcf6717906581f82fb0", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "68ca06ed2a583b5c0b3ab450e20eca66c2f16c7801066d57c2c0c032f5525708", + "regex": "(?i)^https?\\:\\/\\/5461954965316\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ac832154513036afd6e60de781a1b9ee86d63448bbc3cd95e737480f6ac486fc", + "regex": "(?i)^https?\\:\\/\\/nalimonhaa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4b4c57c33bef14364830bd00c656ccb39c99f2e9c629b198279b052de82a6116", + "regex": "(?i)^https?\\:\\/\\/jgmmccontioi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4ca4ecf78cd08054a9fe89712d9745c3aec0e11d3f2026fb7f1dcc4212ec47da", + "regex": "(?i)^https?\\:\\/\\/5564568565658\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "caf16ebda5c0d5791e8631403941104ecd47a60310699ecbd275f18ae67eeb1b", + "regex": "(?i)^https?\\:\\/\\/654651465563\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7283e8523d7037c511113063c944300f59ea1905254ba52d6051d437a86a5079", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "886af0720a68fd985d0b0961d651fc5f198ea9f6cb88f8a39ebf3559329cb1ac", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "27d34c26bfc4fb5ddf170ff14793e24dbb24e65a3fb0c15599e7e8537c863c27", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c004679e4db7f1dbe7503e41e0856cabb96e0cfb6961ca7e4dd5961d43c34c40", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e1a7fa4ecb9d6149da76a9e0e4c282a3415f2da32e9dcdb5ea7efb4caf2a17d9", + "regex": "." + }, + { + "hash": "5cc83fd3b98e78e529ddd877106a6eca2be2e66e8e9b146b677d311dc8386a75", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "8c5f1a000a069331e085aae1f1459025320d336ba57d83b4d43ac921ed8d5960", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6d376d9d29199b1098a533e4a824f436490bbfe9fce6eeec2b92b2a1a486e7ab", + "regex": "." + }, + { + "hash": "259f0620c4287725302386d9600d7acc83500fa044031d6001ef23e9f063fd9c", + "regex": "(?i)^https?\\:\\/\\/food\\-tv89\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a6eb1be6c6b5fd58a55ce2ae7f6398f914569ac268b7faec1febb84f435be3f8", + "regex": "." + }, + { + "hash": "008805ff3bf0e98707bdb9a12e289ab9550b4d11fd35d1be657057250d2f0874", + "regex": "(?i)^https?\\:\\/\\/nalimonhassdima\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e65ced8dc4d1eb5fd7ae4b759397b31243e82bb9deaf12f4884c708f814e2a32", + "regex": "(?i)^https?\\:\\/\\/6451865114653156\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ee0c7aae27f8ab1184ac7c288fef3b27ee16e3252afba07db4c7ab7d0b570c6b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+K3zh5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "602bd5f41311428243bbf1802b9e066e8b8656caf7f7b9d068953363312be547", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r\\.php(?:\\?|$)" + }, + { + "hash": "3d2592b39903d19f2b6599c3a063247004efe3eda77226fec16539fb5e91dee9", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "01efcd51e40e8b412bbf683cff1f61d5d01eba35269f805c5faed830a7396106", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "6d83b0371dd49616886d3cf4508c55b7cf2783fbd495dd08fee528d72bdf3c6a", + "regex": "." + }, + { + "hash": "7638a62dcc2bc0330eb3553941371f619fc0ff58a494a7f9827f54d47f9873fa", + "regex": "." + }, + { + "hash": "68964c487f678f698d1c26985f029cd19d3fd3536bc67b81e2f26edebb884901", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7a0e4486a8083144eb0969c6a4cb0570912c4acfb017bba750b65b8d5cb8dda4", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9cb06ff6492a6c2b6b3d73c9e2f48db4358d61cc79f3a947827f97e114c2caa3", + "regex": "(?i)^https?\\:\\/\\/hsdasabanaaliman\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c00374aec29e316a68688cbaded25c2351c38f1e14ab126b510dd317fa22624c", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f759678221e06d00bc77eb0288302181fae45511c1c2dc1cc6b069964f177a49", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "361ee0e8b66b8548ad02e5fbf3d95c780f97e8a654740c9c26261f8485d19aee", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a42e68b37ba93cd5f33f08df0a60dd0179773a3d3ef03f43198962c8a1e3e6bb", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?advertisingsupport24hcontact\\-fb\\.com(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-[a-z0-9]+" + }, + { + "hash": "92ce49bea399fdb5e510bc1e885ac140f9d08139f05bd16d6185798e99cf0f35", + "regex": "(?i)^https?\\:\\/\\/5615651561562\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b5d5a5e495d1e43bfc9981e2f31a0a1ffdce6aa29847d2baa1702b98ef3a7c05", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cfa6d3c8e0eb7d660ee3e21b389f56f57ed2c644993ab31fa605ba76faf0d731", + "regex": "(?i)^https?\\:\\/\\/lwosjdaele\\.com(?:\\:(?:80|443))?[\\/\\\\]+ele(?:\\?|$)" + }, + { + "hash": "7364e0056ed3f19cc640892e7278dc7f9d76a459abed8d82db5fae6f8d095212", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e3f76f97d646f2fab5f46719b6d43d87772ff21b3fa365bc1efe8a4416d9017e", + "regex": "." + }, + { + "hash": "0ceee0ee8215b653eed4070dde29c3eea87abd181bd2aefc5ee9f1a76e9e945c", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b16494189b2952a3f9e28287a2eeb5cf202a04e479a5d0b2c9f90e0106188704", + "regex": "(?i)^https?\\:\\/\\/bms\\-clothinggggg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "401ee556e2cece6e14d90a0fd86b0f442333180a43bafe1490a145a5fd1fa9d6", + "regex": "(?i)^https?\\:\\/\\/rghhrg454\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bf505a0541441faab5e511ba927738022adfcbeac55de879f2152d7139511d3f", + "regex": "(?i)^https?\\:\\/\\/usps\\-ta\\.shop(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "da134aba5faf16a86cf5425e3143a719f07acbb130fed9e1e686ff0dcd1ca7f5", + "regex": "." + }, + { + "hash": "2f4fdb05ed48ade2491241942db7d29b0537ab5d398eb1a0d668bf08896bd926", + "regex": "." + }, + { + "hash": "fddc3df5edf9b44f3a45e376233066df8387260e493e2b956302a211c522419b", + "regex": "." + }, + { + "hash": "897d8be9aefd31ace0ca737e425723c327ec0d2a45c50ddc5b19a4f256c1d4ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "02fe4f0cd7ff743c47b4bd368fbc6b59cbc03e78c66a3c9a36d0c94acf89867d", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bf505a0541441faab5e511ba927738022adfcbeac55de879f2152d7139511d3f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0b4416acc5ede5c734ea84679f93cb35da2da0f85d6decbcd3390ee9a3d95909", + "regex": "." + }, + { + "hash": "b529647344a4d81058931a3a382db2b0d98b8b3221e85e13a934873c4cada0d1", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "496983241f04622b5ce938b4ed0d409bf880266c6d8400576ed3850188820f8b", + "regex": "(?i)^https?\\:\\/\\/5461954965316\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "b579c14c33ae1caaeef207cddde49821255f6b5fa814b28a67ae8a417ebf6cad", + "regex": "." + }, + { + "hash": "b3d94560f89915d04d04e072a009661f724c02ab3cc3ab57afffa2555ea3337c", + "regex": "." + }, + { + "hash": "e5131bbcc75c2b148dae711ac535b624cde9ee04542c6c2f71ef4472d30e7de8", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "05982d9c0ad12e4ffdccdca4def1c10ea6cefaf29d9565f24e0086e5ed212fec", + "regex": "." + }, + { + "hash": "7a2ddbbe7fd182ad8ad3f167708b2e5d207f78f801ca1708c70459157fba5c3f", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "88c7b064831b83eb9faed858eb4c941022e23f59f1cf97921907671331349429", + "regex": "(?i)^https?\\:\\/\\/586986514586\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "5a8e51a606d34614552dc54499c0647d3552eabd2202de54c5b3a96043085677", + "regex": "(?i)^https?\\:\\/\\/5615651561562\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a6a3dc0afa54904e429da055f44bfeb770531fcc141be3ef408c82ffa7a239a8", + "regex": "(?i)^https?\\:\\/\\/s2dc33\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3e32f80ad94677bf77cc85e17dda2581f3b1061fdd3bfb39d47e93468cac7be6", + "regex": "(?i)^https?\\:\\/\\/hserffrabanaaliman\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e55bd1ecf523f7c2d2af20f82ef135c9c91e9a363a5cd0d4b7d6b44d1574b275", + "regex": "." + }, + { + "hash": "63111672bfead6d46c311cf461061c2c658f9dcdab4caef90e6c82418718a381", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1ef4bce6fb64e53f9275aaff7018564c2a7afba9aa29a3d1a5c559e768f2ecff", + "regex": "(?i)^https?\\:\\/\\/25145615616\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "05d037e064cd75c7848258693e83e9ff6ceda521c0e163bf68b1724f42e94ed1", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "113fe263e026120a4d2ee4e1626e16582bc033f28fbc15c539db3da2b4bd6d18", + "regex": "(?i)^https?\\:\\/\\/5564568565658\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "0e57ce57840b6200d21d4e681198322be8f40a34dfa50c514c118747793dcdd3", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c288989584dcb6062520dae2e51dddee7ce603e5133655fbdb4fb5e56b05c031", + "regex": "(?i)^https?\\:\\/\\/25145615616\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b5d5f2a34808e27828b69daf1009071e1d58361abedf24cde14a577211f78ad9", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "65e7f7f65fd30dfa43481f4d2ec37c127036e5a8b54baf98dca055d23e69cbc7", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "4b170240046071480ddc8c6609dce4a8d321b28d62d350deea9b1a3317398362", + "regex": "." + }, + { + "hash": "1b46787570f6d9f604daaf6388316945f4a6cdc611f5eda63d1222d3ad742b55", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+plugins[\\/\\\\]+jmca[\\/\\\\]+pages[\\/\\\\]+region\\.php\\?lca$" + }, + { + "hash": "bf573c760ea14a0bea3d2d9dfcf618c2e15d812fa7ce9326fbeb0fc65067b0cc", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d83266de212860aa572cbfdb661a6581913e509ab24c494326ac02546fd2813b", + "regex": "." + }, + { + "hash": "ad048ceb65a34d27e67a6188cc4e9d504378a47c429b7ff1c1e6672fac710e02", + "regex": "(?i)^https?\\:\\/\\/tsolutiozi\\.store(?:\\:(?:80|443))?[\\/\\\\]+l(?:\\?|$)" + }, + { + "hash": "297c0e0df3145c1a91dae331c837506e8cafbf831fcb724fa2917189ae6ac54a", + "regex": "(?i)^https?\\:\\/\\/trendyvideoinsider\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "816fd891acc55d0d8b10d663f55c3b3110da3ab4d776807c63e111d48b3d16e7", + "regex": "(?i)^https?\\:\\/\\/5616516516165156\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "75e29a3e56cb51e333925ec557f31ba26a03f3cd02d765def699276ebcfde297", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "dbae9b9be0fb9a87fdb39cf4e2ff6b65941e2ccdfa4393ef64f422f5d6f64282", + "regex": "(?i)^https?\\:\\/\\/59856498023896\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "aa157fe6373a9a07d8a2b2a10c232c3edff5f6b2db47509843ec26a0f8f3af28", + "regex": "(?i)^https?\\:\\/\\/489543159645\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "cfb964e7953b00bf0498c3cbe249af382526a8529ae9d059481e815270e40b2e", + "regex": "." + }, + { + "hash": "02d2b0bfff1bb524136ad2f7bd2fe0ac90dcf7d3108a3d77e96bdeecf6d2aad5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+perinforeviewandupdatel(?:\\?|$)" + }, + { + "hash": "2b2a192767e332226356d661d0833cfd369961abe4a430e4c9de432af94e6490", + "regex": "." + }, + { + "hash": "e8fdb811ddd1f1c1b40af9885cc76825e98fa50ac50293014517296dbe10295b", + "regex": "." + }, + { + "hash": "d0e072479ab30dfcd8edd7a3f840069b41e435e79902138cbf2178a1c059b5b5", + "regex": "." + }, + { + "hash": "3f843ed3e9fb75008b5c2b15db654f161524353c4f91f27a0676178fbafc4796", + "regex": "(?i)^https?\\:\\/\\/65416524562165\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c6e1b3e8c84c1552cc94f68bcd092e5b8fc4fb6f7d5bfcd939d210db00e41c27", + "regex": "(?i)^https?\\:\\/\\/489543159645\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "cac2c669b3a10c59a771973ef0bf94daa9be3ef31b4d85fd17663faee50459fe", + "regex": "(?i)^https?\\:\\/\\/5646519814965\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "401ba17768a2be7717cf8b4dc04481f08e9459b1dd11d788225969baad75bd16", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "1ae16bdbabb919a99838ffe9923afd0810f8442c0d9796b51f2f004fd18487f6", + "regex": "." + }, + { + "hash": "6a1f745e0e1ed0426afd08d9ef35a60b12f24e9491e77dccaa9f377d87e7377c", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "81f23cc132cf48c535b0fbfed7c396f47ff559c839f9f1abaa80f4da097f4ffd", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "03caacfc03002627ed4887a3e880d43e71fa62b4022bbce30cf6ae2ee57fc681", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "76d8fa5896f2c4b60eee4f52c0290dcc4c06b93ede5e99fbb2751cfc38cb86a6", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "52ebee0376c21eb7eb94c92011f22844f6c63f2499aa41dd76deaf963c4fffed", + "regex": "(?i)^https?\\:\\/\\/hotspotsonlineclip\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "13ebbb4a6fc6aee59ba4fb48517e9246e926d529ea850b78bdc9f3a6cd487a77", + "regex": "." + }, + { + "hash": "b65dfb17f14cb4322e2e9f3ab06a98e19f092ea3dd53c7afae279a72b9c632b6", + "regex": "(?i)^https?\\:\\/\\/nalimonhaa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "95b48a1415de25fcfa6aa7f4e00b9305a8ccdfecab0c93685e5806df40bfd13f", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e46ed8f3733f63c4f3ba0adffdc152c3fd37de818f1647a40ad436b412af868d", + "regex": "(?i)^https?\\:\\/\\/845156149156\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "3cb9f9adcf4af53509758edc1a07d0e0f37ceb7ce0ccac88e37d11b68609d3af", + "regex": "(?i)^https?\\:\\/\\/hssawhanaaliman\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "66fa08e1c77afbc23aa95846ea8e166b8032a15b949993c4884ce8c1776a4a07", + "regex": "(?i)^https?\\:\\/\\/aw080\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a2593c528bc8c4b58cc22b8a9d5252910c7b8491127a3f0e24484a0579845b2e", + "regex": "(?i)^https?\\:\\/\\/6564564156456\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7b31a528313e31a5ed594c1f87642b3d12a0c0f6e87a25aa2d54dfc2ccaebebc", + "regex": "." + }, + { + "hash": "1b90e48360b2cea39f7913403689939be83a1a9909d09fc1a3ffe5ebf4d5a712", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "017d78f4ed28e77af93419b23d0e370dfe460cf798fcc6fccd62df4b190fab5b", + "regex": "(?i)^https?\\:\\/\\/3214632896356\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "1c7232dfdf93f869b31aa8a2e280a7eae704d901e23ab97f210174fbbb842530", + "regex": "(?i)^https?\\:\\/\\/125145648956189\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fb660ada7ae24245b6482ee4b0aef7e069211f87ae0f16c71e35afcafef3ecf4", + "regex": "." + }, + { + "hash": "c77a844f58974ce3e7ee4b169f49d5eef25289fa2b8a90e5481f0330ad906be1", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "941cb21b772f80b1d006aaf3a3456087fc5e507bde1e798c820204f2f862996e", + "regex": "(?i)^https?\\:\\/\\/hserffrabanaaliman\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "446d9f19e0d5edce567a0b42f024376bc8d99237188f9e219e0b9227cb83c74b", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "aec255ba6f316187a978d9b28dfdeda49d40bd43a88bec77bab9fcb7173ed2c8", + "regex": "(?i)^https?\\:\\/\\/6451865114653156\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "6bb11959849f1b326b1823732dff8d10e355be5f33496be008888f37935d8ec9", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1c45b3a880aa6f36df247673dfa8a5f0f3b87cd8cfefbce72a26ff0341572adc", + "regex": "." + }, + { + "hash": "ad048ceb65a34d27e67a6188cc4e9d504378a47c429b7ff1c1e6672fac710e02", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "10693d9710910adc5f1d03d661d61f990b50eb6e3a3f9beca200d28fcce22b7d", + "regex": "." + }, + { + "hash": "d2b8e37cc15e2cf9a30afeb76ac9788f848512be80e718d0e941aff91236c00b", + "regex": "(?i)^https?\\:\\/\\/broadband\\-106724\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "897d8be9aefd31ace0ca737e425723c327ec0d2a45c50ddc5b19a4f256c1d4ac", + "regex": "(?i)^https?\\:\\/\\/telenog\\.top(?:\\:(?:80|443))?[\\/\\\\]+app(?:\\?|$)" + }, + { + "hash": "3b5c7d3e7213aed76db728dce83f8f60025fa5d33d596f9abaab7236a1bdcbac", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "da855b580803ae6f703b859c0874afa81663f71a068fb502c7e39d76d0ed46dd", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "3797ec2e5e652f09d2ed32c96e85bd913fac4b7de9077ef8f6984af96f63f997", + "regex": "." + }, + { + "hash": "3a07c72048a3606715eef2877e4f4d049745d779e5092440b475541c938c7521", + "regex": "." + }, + { + "hash": "a4468bb59be34c6dfd7ba30eb68fbf5acc6a783f2db7fb282c763a45459474e6", + "regex": "(?i)^https?\\:\\/\\/564861546516\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "042d7dfe73bf5f391864de8e374616ee3796885c08d35ac8c9ef8ea35444b617", + "regex": "(?i)^https?\\:\\/\\/hanjianaaliman\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "9a73fc055c545b561217c2b332bc972aafee30c28da41232c5b65379e0c32d9c", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a7943dd682a5c4d0205ba137a39c249f5ecd69a99e3d97839157b686079783ad", + "regex": "." + }, + { + "hash": "f96516a06c299384b68739dbb65038efe8e3bfe6178acf2409bcfd1bbf28d6ed", + "regex": "." + }, + { + "hash": "a7ae6df54ec5ac3280465c4fca32b8da62f91817e753849f875e51ac0f49dd0d", + "regex": "." + }, + { + "hash": "209e20a8e3ba80c2c8b51f378fb23ce4be7914eef0497861f2010199d1da7c39", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "1e9be1575535651f752fff19a42b83c85791a9cd34bdc0e6b9c63db7f1eff019", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8f706698bdc7b58c7b3df3a16d040128bdf49502f2c7baa076a3b041be9f446b", + "regex": "." + }, + { + "hash": "0b4125eb7a2025c363f12b022bc6f32d6bdb14d69586dc5aa34ed0466f2b0b4c", + "regex": "(?i)^https?\\:\\/\\/96696363666\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "57aa184155ee4c3510dc63280b37c99f16c8b7f6a6cf260497dbd64a539e8590", + "regex": "." + }, + { + "hash": "64810bb87bdcfae5417de369e16c6efd792c4daca079a9838bd5c2c28f68ff43", + "regex": "(?i)^https?\\:\\/\\/61564658498156\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c45548e5b849f21a0307888f2dba17974f8e29fe99fb03caceaafb99a5fb1dce", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "bf93f652f8082811a94fa24d690f65da5c93d0733bd676467d75c83687d99ecd", + "regex": "." + }, + { + "hash": "6eb07f01bd179b203b1ad2ff0e24985ab99496c1692aa276c138cf8350557271", + "regex": "." + }, + { + "hash": "2abb86125f3502d42b980300d2461bd5b0c8e140e04fee3720d64c76d849a58e", + "regex": "(?i)^https?\\:\\/\\/vote\\-clothing\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "98795824bea4dd0a9f8b86ae3b878ca717c4bb70e404dc501a6f952b1d9b4431", + "regex": "(?i)^https?\\:\\/\\/685461465465\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2704b10ccab383e3a32dc558f5e4cd6e2daaee5bd283918bc293343b0a087847", + "regex": "." + }, + { + "hash": "4f578ceb84daeaa8783dd0f9b80eba5ec00dc2cd6ee53d0bf7b939e246e4aa62", + "regex": "." + }, + { + "hash": "5a31945e6c4550f1c9b55041c258f39b123ca0c28ddf36d862f295e4421c1ec4", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5ecf4082ca9677f578c9cbf070a99314bc82bb1017a0736340752a3a2047abec", + "regex": "(?i)^https?\\:\\/\\/6564564156456\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "92172aa068ea5c504a44df5d537aa3e4626b0cdb94458ccdb4ffe82fda9283e4", + "regex": "." + }, + { + "hash": "3f537578cfc777ca295115d0bc1e2af41b25ef378cbbcb1236bccbb5a9484e10", + "regex": "(?i)^https?\\:\\/\\/156498156489\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "87decd20418e770426a94dec743a338f935dbab537c12bb8f6d8cf61e26471e5", + "regex": "(?i)^https?\\:\\/\\/trendyvideoinsider\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "1ef43852cae81534a11487c3fb4a387a2a5db6676bff7aecc6678ab202bb8f18", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ccd5699c440ca51a79f5422b00eff703201c31f6b7f9f1ea2bd5592d0f5986cb", + "regex": "(?i)^https?\\:\\/\\/156498156489\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "eae93d95a258740cd2492822769f9ea67bfc063f557ea43a5cb46e6fadfa9d52", + "regex": "(?i)^https?\\:\\/\\/4566895615646\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "9a68e352506d602de840c9ec678fcee7722ca37e658c7fc4637459b3b9705212", + "regex": "." + }, + { + "hash": "a988dc5685b50fd5a96ff267cb36d80b2122e13c0ba521f9055537cc0c9de83a", + "regex": "(?i)^https?\\:\\/\\/tbvbhvks\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "1d9e4180ca8d78f23ed1c9bf72d673abffac6c26565d0e9abf42c25f47bbd1f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9077[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "f9b5090fe2768dde5d40e266abe2b11991796e07a84a4955e68e42f6c98d70da", + "regex": "(?i)^https?\\:\\/\\/s1x32z\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "915125091aae83adfb87b55f843954a05acec0b00de5b1cfb5e8b288830989b8", + "regex": "(?i)^https?\\:\\/\\/5649856485656\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "62043d600ba58ea229a501f0805aff21ef91183debfc2c67424069d5e7482bcf", + "regex": "." + }, + { + "hash": "2b4690a78ac3307095c2d52d4ba5c911b8cd2d04ac8d06f12c8b87586f92c963", + "regex": "." + }, + { + "hash": "63824beddc269077322d8789b9ba9e0c7c90fe4e165158ff38db3ab742623852", + "regex": "(?i)^https?\\:\\/\\/hserffrabanaaliman\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3e74670597ebd5cb3b51625cfe9273ff7ebad86fe97d7526ec853c300a364eea", + "regex": "(?i)^https?\\:\\/\\/5564568565658\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "c315f7ad476e19e574df69fd86254d24a4b69f4af501fbdc4499ae82468fca1e", + "regex": "(?i)^https?\\:\\/\\/canada\\.postscanadaggz\\.top(?:\\:(?:80|443))?[\\/\\\\]+ca(?:\\?|$)" + }, + { + "hash": "db1b5e7c8d420476f1e4bcddda473ca7864fb2f84c775efc9d212d62f3d80be0", + "regex": "(?i)^https?\\:\\/\\/5664985645656\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e94187585c5693f87b8af5fd769c70fc6e04b84b0f6da905b02cf83dec2b638d", + "regex": "(?i)^https?\\:\\/\\/hsdasabanaaliman\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "2246ad0c842b789fe9cbec119b23cf179cae9744d682297442510d34171d6f3c", + "regex": "." + }, + { + "hash": "39a3fe737d7c73fffe6a8b56ca32b6db14a98630e1194f89a79a472b95c16fb7", + "regex": "." + }, + { + "hash": "134408f8e58c3c31bd69f4efad6a2f642f9551dfe59fbaed3f5c5cbfc1be842c", + "regex": "(?i)^https?\\:\\/\\/usps\\-op\\.shop(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "c455014172658aef6391a7f52f8827ef3eccc556c559f4f917023ee1359d3388", + "regex": "(?i)^https?\\:\\/\\/chubby\\-tiktoker\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6a6d278bb28fbfeaeb7e9e77917c685e28af5759938624cb4e08ffb31ee538a6", + "regex": "." + }, + { + "hash": "e9eb3faf6db384968e849774a6dcfcf9dcc245b925275c9110f774e6e11eaf55", + "regex": "(?i)^https?\\:\\/\\/7845616485658\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "574cd789586228be5ec395eaba7dccbe315cad8f6ba8ce444e3b0649d132bb6e", + "regex": "." + }, + { + "hash": "7301c51c63345b701ffd474ff8c81b301364f80e2186095d31bddc4b4ceff975", + "regex": "(?i)^https?\\:\\/\\/561645863458623645612\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "be0ddd96e8884046078372e4e5f388fc95a98db7289039830acc5af44d2fc983", + "regex": "." + }, + { + "hash": "b532fc0330b1a634b09fb51128c900fda05d49a08a8478a117e48baa3f1c4043", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "cf6aa48ba4b6d16f27326abb8d7b9e7c14eb5ddd8b50fe571a6c8b0b928ce41b", + "regex": "(?i)^https?\\:\\/\\/561684547896589\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b3ee5f886e4a864a333c02b86a164eefa992318de9ef2186caae3b728b16a6b9", + "regex": "(?i)^https?\\:\\/\\/564149654165146\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "547fba2e832b63b60d7988c66e1d045e4f83c3720bf1573ef821c252a8e8bc09", + "regex": "(?i)^https?\\:\\/\\/instagram07386\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "dda0369fe9e4b3fd82ceeb616f31651afc3fa025356a224e48b8c8ae4ceaca55", + "regex": "(?i)^https?\\:\\/\\/125145648956189\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "218c54a6e1549f60b73424cb11f3b4a786fe727369aecb2ea0b1d13361c87b3f", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-109102\\-105128\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8ce12aacee2a770b31ff50f5d91637bf3a13c7e8133f0af63b5cf70f17aca115", + "regex": "(?i)^https?\\:\\/\\/chubby\\-tiktoker\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a6afa6bcd067ed4fa22ee27b9d7cbce305765f153eaacd749a0880d71cff5b5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "63117ca502fb505dbb41ff0bc5de6ac99f1387387e51c9dd46b0e7951c745231", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "24013e9c97f67db09b5a2e8d1b063206fc977d43e374293d6dfdb7f6905b206b", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "6eb839adf577fe6fc586f3947000a5251b8ef8ce16b6bc6555a1fe3c8d50f184", + "regex": "(?i)^https?\\:\\/\\/click6\\.acc0unt\\.login\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2674a6091daf456ab07010105dda5105676eb05558e0cf2674f8fec5cc0f4e86", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "69b1841efb772e364ad3ea6fc601954c401ed38a9b7a32b13f79ad6baadb818c", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2286e8187b372778fb6c90c4dc295e858f13e729ef29264b2f7071d79a22fbbb", + "regex": "(?i)^https?\\:\\/\\/546549861654546\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "abd61d75b9b655d367d81eb66be00c8a0016ff9eae019e8a0ef6c8999a4aa349", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "419356ebd395361ad74601ca8654b94d168efb4d4d9eb5217b10fcfd738b0ae3", + "regex": "(?i)^https?\\:\\/\\/41564965156\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7dd70e328d489eef8be9b08e9958e47a040a3b9c959b7ee49a5abcf4c1aa389d", + "regex": "(?i)^https?\\:\\/\\/21345678912385\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "757515fe1f16f6ee6613c8adbd1588a7cbe29037878adc630f1afe5531b043b5", + "regex": "(?i)^https?\\:\\/\\/25445654856165\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "b7d424db475f1f3afed0b7b179f03ee04042b90d356beb0bb8f49345ebb7320e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+user[\\/\\\\]+ggkv\\-jjqv[\\/\\\\]+rktkmpqc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "68e75c263b4b1952ec92d8e69bc933793973886f42eb41d652ab49c6b3b8686b", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d7e9ae0ba17a689b41925493db70047a03e7fd58af87167aae723e9aad6c755f", + "regex": "." + }, + { + "hash": "c8e8ab352143c7228d965944546c3abb4167f0bdc17226bfa52b22a0ef675d2e", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fdd30135c9baa603fd548d15d5d44a53685daa1c1aafca2858dba2badcc7e9c1", + "regex": "(?i)^https?\\:\\/\\/156856516156156\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "eed4cfbc71490b12e9eaee47629edb156768813eb53c189296e8bc282fde7080", + "regex": "(?i)^https?\\:\\/\\/59856498023896\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a065c6a0cbab2d57dcf0b9baa3d0b46e18ea87caa341e593b6bad73136fca739", + "regex": "." + }, + { + "hash": "489780eaf011acb4db07c7497ef16859fcf790680e5b9d3f23852744859fc346", + "regex": "(?i)^https?\\:\\/\\/56896536549652\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "e75532645482fbb55df0ae3217c290d9fa94e06b590b4e5b24d891119394549b", + "regex": "." + }, + { + "hash": "913b6a7203daa32db436cca84cfcf0c5172ba189a2a730d663c6a1a0180458a7", + "regex": "(?i)^https?\\:\\/\\/561684547896589\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "96504ae5a53d3ba197b63ecd0fe86c98008500f19cfae1fa852db7b1a075a0b2", + "regex": "(?i)^https?\\:\\/\\/415698651465\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2e04bb120302398a3d6c22e85d0c1ad094f133ca0b30f88242821ab017422b26", + "regex": "(?i)^https?\\:\\/\\/845156149156\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ec818b244987b6a8a33f102606516e7fa22551cdc0b138b80e19844f4930b10c", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8d19cd88d1e612d7b056c82e56ce72db6b0630f8cb4d3378f4f4f19569ca0c76", + "regex": "(?i)^https?\\:\\/\\/85435892356\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e493809bf6e0becd6f115cf01241991d8746193dd65ffda7d9d9f7435a289adb", + "regex": "." + }, + { + "hash": "0fee242edf20db0e7f8f99c63a008ee45749884190dd0f368f71eabb7b90cacd", + "regex": "(?i)^https?\\:\\/\\/8516485631565\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2930b9b0db41adcff0aec7da66f30ca370eca45755b2b43d46e1d6a26f025ab4", + "regex": "(?i)^https?\\:\\/\\/156856516156156\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "0f5519ef4c97d679a6425e4a417210211d111dd85ab60c9aea3e088930e4d14c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4d52cce804ad02ef15de11af31b758ca501120981f6129ebba278acfd68884d9", + "regex": "." + }, + { + "hash": "b10b05e0988cb6269dc36d907ab6487296a6bc722462d7ffd791d2e9ffef3901", + "regex": "(?i)^https?\\:\\/\\/5616516516165156\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e2b1a9ef22c866076fb9c054982c810cc1998fbff08d8985171993f0f56ece4f", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "df60316f32f9ec58d1c1183d2fcbf48fbeded59ad24eed4a088bb44698022048", + "regex": "(?i)^https?\\:\\/\\/pub\\-78520c1c52354ad29e4e2d0de33dc3af\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "71b7942d898b832c42ea1ada3e25ee7269ae5f66cd0ed4e16ffc114b7fc36f16", + "regex": "(?i)^https?\\:\\/\\/soundtracker\\-tonecaster\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4ab6a4702587eef65c703aa055e22e256c6d084286698183ea83463fa3613f16", + "regex": "(?i)^https?\\:\\/\\/999999999919\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7d877dae57a5c4de9e5768241cec08bd6aef2fb23c4dfefb5b5376cec5e230c4", + "regex": "(?i)^https?\\:\\/\\/trackopq\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "3c6b45dba896e0ad25eec7f9b4aa183d95cd501e4f91530d9a035eb515db470d", + "regex": "." + }, + { + "hash": "1fee419b1dc6985adcf86454b5e4c6d74e99bbbc171ee94892289c850802c951", + "regex": "(?i)^https?\\:\\/\\/3214632896356\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8aff77e7b2fc5f6c1f3583108a8a33b29e0ca8b93ce18986b686fa686d33297e", + "regex": "." + }, + { + "hash": "512d1778744456863651096584e3e0146f49c7194bded1f1091ece9ca5f0149b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m[\\/\\\\]+clients[\\/\\\\]+02ncaf\\.php\\?verification$" + }, + { + "hash": "a4359d7cffe2b3a6e4b0c181119cb364637a43c66fe8f592e9b187b55f4673bc", + "regex": "." + }, + { + "hash": "d9fb4dba0f24b6f30da7963ee76babf78c75bc73131742d035de8d17fc1ac59d", + "regex": "(?i)^https?\\:\\/\\/564149654165146\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "f750bbed255443a9a69d0667c9aff59c7886e41724a0e05ac8c4500cd727da6d", + "regex": "(?i)^https?\\:\\/\\/jimkanlmainaas\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8833f1b8f98febefd7bdbb0942d03ec02756c1cedb7db1bb5be0496b8dbbfc3d", + "regex": "(?i)^https?\\:\\/\\/hot\\-tiktoker\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7eeeaad948bfd49a25bde497904d14c32e93a71d025509d5f151224f9dae16cb", + "regex": "." + }, + { + "hash": "b35e166f6e77d4c31ece7fd575fd77d38f13a4894ee67f1095f05055f3981dab", + "regex": "(?i)^https?\\:\\/\\/newviralmovie00\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "74ed65aeb86ec4920a423c6ac9cb9e36254ec7b19b44c1649fcd2167d16fc7a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0afb5729c9870f7fcc0c2635adb065ab4ee4313199af2350d8b145c777e8eea5", + "regex": "(?i)^https?\\:\\/\\/5564568565658\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "41979aa7d351a9bef98530a82a15be2d04319130a6264309211121cbee3e3a16", + "regex": "(?i)^https?\\:\\/\\/5646519814965\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6a45541f3bbbc36a1097a038442c84c1a463eb0ee21478e98a5ee23ff56fc799", + "regex": "." + }, + { + "hash": "d62487c13cbcd94279e76fb3503d3f82c5ce2cef40245debbb753dc9419c6d27", + "regex": "(?i)^https?\\:\\/\\/pub\\-4af31b6ada8c483384313be39b573d6c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4eb8d14b5b074df9ee442bbe9f48bf5d8e190dc8271ae57acc8350957ebad3e1", + "regex": "." + }, + { + "hash": "83337fe0f25674392b589ac27bfb77307c622c32d9fb507b088945cd87936e64", + "regex": "(?i)^https?\\:\\/\\/586986514586\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "00892b9b4479054a639a06b653d5ce97bc526b4f17266f8a6da643889559a4cb", + "regex": "(?i)^https?\\:\\/\\/app\\-nickel\\-eu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "3228190afe432eb8c8fff333dbf96748aec6c188324fe8883a7cc213aa5733da", + "regex": "(?i)^https?\\:\\/\\/741567489654\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e9ca36e45181c0753dbb4982bfadd6d18d2b222172bc7a281b1185ddab4e431e", + "regex": "(?i)^https?\\:\\/\\/565615861561561\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f2d8cd3dc2f1680e86659154d1f7174d2c390a8614bc233a08a274cd68e68989", + "regex": "." + }, + { + "hash": "d178194d5f91fca7a05332811c0465a27b4ac26fb54ed05ddc0cd4665e5ed239", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "f4cec55c087585009cdc324c283346d1dc68507acdd512443b88aa3f6cca58ea", + "regex": "(?i)^https?\\:\\/\\/fdhrfdgrsgsgfs\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a23cb3999a65ff9fdc92e08ddebce8dc08bff772d3a705666016dfad79baa685", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "51ca375dce92b47efbcd3d443d10397b9a3b3c3bb867423aad61ab9d902b1e7f", + "regex": "." + }, + { + "hash": "399ef34a99c992d6a0008a34b2cfeb1676a7828b2702bae68f25668c29133b53", + "regex": "(?i)^https?\\:\\/\\/5165186135146\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3e116116f577a7842c0467e03c11d73b028cbf708b712281d17a3d2108d51c51", + "regex": "(?i)^https?\\:\\/\\/8884949589872\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3fe7b510f02bee2d7e0397ef54ab43f21b25b7ad973a11fa6ad7e2125e6e747d", + "regex": "(?i)^https?\\:\\/\\/61469464556456\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "6cd91373b573ec1039d081f517b8c5e5051ece3bef70d8b649f5293faba65caf", + "regex": "(?i)^https?\\:\\/\\/54654654649858\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "cabf80a1329130c028fde1159c8cfb9e2a539b0486bfed4142e0c1401a62e8de", + "regex": "(?i)^https?\\:\\/\\/qeadghbqedhb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2328d7963554f4691585830cfba46f7cfa4b99049832fe8e12270025fda70161", + "regex": "." + }, + { + "hash": "8333e18707c054a96c29476215f2202732ccaba462b5f66347554eb4ba97fdad", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8bb9d1a0eb82ec93ee15ca928fd0cc2b951d60101a1cb92deee76fdf96f63d50", + "regex": "(?i)^https?\\:\\/\\/qedgqedg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "24e9da327f2eeece3fa00adff99f97d79d22425b6ba3dda1965d41927298941a", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a19d553d8f44f37df38ef1feca5d304d5c17c0412256bca3d4b79ab8d55ea635", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e236a6c5bcbb9a536353f1cbc0bd9f173cc1c4eb61a4c9c57e54cde525c759a4", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9fe1cb56e813b07b05df8d034c6b3eb7aa54912fea5f847fd78163f688e69fbf", + "regex": "." + }, + { + "hash": "7760cb3af7a05117ac8e52dcee41516221a2d8e5381311339d26ad80fdcf62b5", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1e69660c98b652d1e7b2eef5e4a6afb2c4b6e7edc0cba87ff97961578cbcf7d5", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6a06f1f4a358500dc025e0a926156a763415b2d453151f13ab608ae2c07e0339", + "regex": "." + }, + { + "hash": "7ffbb0959377dd5d0fb1e3a23f5c4477b51195f397a757ee2f33bf9d5776b8c7", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7421d6f54e1dedab05a33bf91b93f217ce08408ccd385800724907e22ca5a85c", + "regex": "." + }, + { + "hash": "4beb3ec5d29885c7caf84825e0ec6b53ec7ee1162dfef9c759efcd249f4af7cd", + "regex": "." + }, + { + "hash": "229704b8a0681b43230185b7ea84da3aecd28931baa5d7ace0a4b0a6386610bf", + "regex": "(?i)^https?\\:\\/\\/eaqhgbaqehgbaq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "d5a224bb3c36b37236cfe17b00ed71ec70f136d4ae627cadfb27e247c9ff64a8", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "276ba8987c51fef872dba5e810f82f4adcc54654f4945a4974e6a806413f3e31", + "regex": "." + }, + { + "hash": "83613dcc5a7228f6259c207be81e6ace2489dbb4e7416d26a91c4437277fd927", + "regex": "." + }, + { + "hash": "b8f22de6d82a51ba225a9494df3be9e303c006cbc093f3c036f423d4baa93a98", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "213ab36f190f1abc17a30ae897467a557da83d94715f661f7d2f1b882d0fa147", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ff5b38c53d2dc5621701c2993279591344a9d788ccc9446c6b7e45329e974846", + "regex": "(?i)^https?\\:\\/\\/zscqacqa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2fba36f925d9e55c2d75bb5050ecc784c4be5bdf84c81441916f0af3c6cffbcc", + "regex": "." + }, + { + "hash": "7de9dba9d0d36e781dbc1709920b51e749b746ce8a8039eddfbbbbfd366ce3ce", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e18a5371147d9ca12ec0598063974793c2b009e7d40a50c12070f30fa8e6e7ce", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "8f7a283012d7710b56f9f076ddf270d33eaab806c9e6a7015e99d0d995c21c95", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c5a79e18f1f100bc4fbf7cb6022badb930e0a8feb503f6af852474f9d8a876f7", + "regex": "." + }, + { + "hash": "f7ccef6ae1c2931d0bd99fd374b9aede7c14d14bc5213b01f4b852e4f04d894a", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "f5d80fda3adac4f10fcb79a7935b9cc50205a806b9d56f3f8b833fc4f721a84d", + "regex": "." + }, + { + "hash": "dad380276e4df3e2efb1b051e195c654385791aa016e255afe071715061d0a33", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "33fe1d2a5865a0847fb95a6fa700f6f17e94410639763e5d9076a58a3e486c84", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "0fdec1a151adf89a995d98df2cab57d4153c3214b13230d86175c87bbf4c45da", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahg\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f40169f393a8a67bbc9f870650158b115c07502f0abddbaa1b54f3f51a778598", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5bd9f0e6d366ea675e7e4764fe609ba078d5e7c97e6c2e44aecd0d058b1d5534", + "regex": "(?i)^https?\\:\\/\\/telegraneer\\.vip(?:\\:(?:80|443))?[\\/\\\\]+app(?:\\?|$)" + }, + { + "hash": "ba909817256ea24feac343a2d5511214470014a9d5198cfd6e87e11cfda42bcd", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "78385ab74c43d2ba6b6463b7f3c459f8207ae81d34d978f9c42308ce4f3d64c1", + "regex": "." + }, + { + "hash": "af8779230c2e893884cd626976aebb0e54efcaddd98cadbeecc0fdf6698980be", + "regex": "." + }, + { + "hash": "943109cd710a2dfdf6a2eac785ff55a1c5c2ff825d1002b3ff5267a52f298347", + "regex": "." + }, + { + "hash": "ec0ca967ffbc148ba98f8a814206f11a63f3ae0c78484b71de818c5bdaf35c1a", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "4ef1ecdd351398d64b05d2f2af1fd2b0bc9334a58c4d8d54a6217d6796faac0f", + "regex": "(?i)^https?\\:\\/\\/hdsrtrstyyfugryyryiookverdyiihyreybu\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9ef89f92bb24147dd682ea0d762e615b20103a76e2524162a94b6846b002dde9", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a49f2704995386fc31a885630b6e60de8c97b96fb1c6810b87dbf1cbec56abd7", + "regex": "(?i)^https?\\:\\/\\/hdsrtrstyyfugryyryiookverdyiihyreybu\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "acfbc4148991661d43bee7ff4e26e445b333f13c21391711755839c1755aac6c", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e0c670c35a5175c92e3c7b2dbde1a9ab18be38527e4a82d58a2d186651162d12", + "regex": "(?i)^https?\\:\\/\\/nexolaria\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8e95b6960240f0ae8440d2c8f228a18adfd1d34cb6a1e449e31513939afa4a5c", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5b20e17f64c64d66a9b9904d5948d07f5d9cdae73925479ec36db392aff31b4a", + "regex": "." + }, + { + "hash": "4a5573859b672531b8195cb706cbeaad3228a7038d4c8ab90348c5355a116516", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0fd21a729d894bf533caa1e31db5d3322d6c388d23c4cbc6194b6d75e72ed436", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "46bca931446f20cabf100ba90f05287058b864353c239f85f8b166301258eebe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ve[\\/\\\\]+cuce[\\/\\\\]+dupije[\\/\\\\]+faka[\\/\\\\]+rafepi[\\/\\\\]+index\\.php\\?rpclk\\=z6fWZckR5JtO1MSAx\\%2BAlbJ8ewJjKtDiqDw9dSDzhveGxG9bescTkMfLGMPzMc5o3J0pld6Bx\\%2BZ8GNK1wKZNNl7XhIRkC3qi9UV8LepGGVZQzte2Qw1LB8e1GPFN0XhT9fPiUl1iq\\%2BTLOkOWkPxPoc\\%2FIn87sjUC2gRfwrdnfT2W4Ry8ahZmWrYaCZQn5NrodEhjzEtuW7LuOlxklQ0UTb\\%2FdUlBvbOoAffQCtkBigu7XKKk0Dh2ZOgcS7gB27Wp933ivHGGIrvfDUHo\\%2FimYSdIkxAtRHj\\%2BvyResKUCIDInCNAeElKluw8HHvRanE8JId4XxGNAKM88jKo7BCf7wWtrdcWmXcNpbDzkfbiSmBfG6IoB9Ghd8N\\%2B4vXiSnRCeSUfU5sEo\\%2FJCULYL516da\\%2Bh0bc73LMpjbko2RoH8NpKXkCx\\%2B2gDmPAkit90QYBHyGuhrbNg6Fhbtwn0qjSqsC\\%2B51T1TqYPsQgNrIDJtqpwQF0VywpPOTRA8pYDjrL\\%2F8uVqq\\%2FLmTFCz0AV8KjnCV\\%2FZcygAeLivwKlr0pLZmxndxfEhf0paf8XO1WatOOfJiqZTycklqhI45c6nwNruOP1zXIll6qX3Gk\\%2FJgYcmkL\\%2B6aqQH5uzLLytVjFPlHLQDg\\%2FdoLs\\%2Bn28kbzZK9i5J87ZbDlBRAyCzLhoElz8fG54UfZqvVg1JTl7nr\\%2BKEaPMS\\%2BrHBuTPN1gUpzZSsM4yxxvDXfXxbf8MQj7Vb8IfDh9x3zkOLI382zXfyRkbPxpENg9rGIDNfRCTGWDlg3Ot4QT8WxhCGV9MwteEQeu\\%2BzsiSUr\\%2BS5MLZAdbJ\\%2FjGJu5CSOc5s4xuZgop9dviwaFR\\%2BdhvOhxcA\\%2FncVuykGTMWB8tA75YVe4SNPp0\\%2F0UqhFqkRYeGI\\%2FSu6n2Gl1TpQbiUjozNTHsltEjD1cd3xyLsBWDZOXFVVlwG0RC8vP3nMMHequTTcjiXRjgbsvqdZowlkk\\%2FrGqRfH\\%2BcBtkwvK2fwWBVrW2GYlad5T0bogSmk6LxSvJwhhEYq8ka2rsPkGyNJZbFxikiOdZE0Xq2OE59PedSvXm7Ca9KAdHNlBc8Bi9Tw78f4A8zGd0\\%2B4eVcXchIfW\\%2BYbB\\%2Fiip1uqmaRmzZ3hDpxq279yAI\\%2FAGc1aXzR0lK0Q3SaxBhNuN\\%2FhgCGbI\\%2Fq3OAVaGZCMNEDUJ2ijj18zT6JrORdGZyWV4jTrk3bBEJzymqsofyWXBKxA5iaq9fYZQU0oYSH9StS0CdWyJIqrWsxwhl7pQ444YZVUfUDO84u9WJPBcCPzdkomnrPH4kwnSrYGTtb\\%2Fz\\%2F43CdG87rRnfqB5Z1jsoQWHcyPxhCTE796NjJs9bXzyQ4NEbDqYreGW\\%2FoYvRTNDlKm0PX4Ba1TmsoCiULxd2QjGeBvsJ6gQehB0cnSlIalSjrXL4Wa5UtNr5\\%2BHK9gdFUcz3TwloDDYYpS5snuy2MKwpCsQD\\%2FjpO5PSdxHULtkzhnyTO6p546Z7FwpVPmMRPzcdeOI6DuspoAj6WaZQuMowpAhvMYy3ZTLrXuJdg37R3Voto6WdZOEYm\\%2BD4iLl9q\\%2BHco6YNPaEMP54\\%2FxP2wToF7fUgpEU0KiKVe81ucR8kQG8lQ\\%3D\\%3D\\%3A\\%3A06611f5ff04e32052f4a624f0a127bb8\\&p\\=QKRf27qZlMWhJsZ2pWfW\\%3A\\%3A86a9b7abee18371f419cdb0f2e8e252f$" + }, + { + "hash": "c33e8cf0fea3f4c3dbc8f589edf0bce30ea600fb8003f6f0f0e0eeabb6935c1a", + "regex": "(?i)^https?\\:\\/\\/61387799\\.com\\:9900(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "63fcd7a41d6856d0cb9653984f34ec684c27169acb5a75a8006059cca03b9707", + "regex": "(?i)^https?\\:\\/\\/hbsqzrhbnsz\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4c4dccdf6a2f8296f3d2ec4dc5998e97ce68e2d3aefeb19853f292a396f08ad6", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "060f7fbf02c80d7d5482a505bd45bf0c8d86def37e47d41a87dee9dbcc90365d", + "regex": "." + }, + { + "hash": "9db197b7d3036dea4fe768f7fceb4e1fc5cb0c4caf24be4b019c6e80cd9f6eb0", + "regex": "(?i)^https?\\:\\/\\/472\\-psot\\.top(?:\\:(?:80|443))?[\\/\\\\]+co(?:\\?|$)" + }, + { + "hash": "6c73b15d474a29525c180d36ec0fde464821fa493780eca6407f369490d7dda5", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "68ca37664570609956a486dd6df9f02e574f7c6052acc0b37314e3c0e847cc11", + "regex": "(?i)^https?\\:\\/\\/hgqedwgbqewdhg\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "2ceb595331191acff1e6b2108f8923e29ca70661ebd296a6895353e84e5da75f", + "regex": "(?i)^https?\\:\\/\\/hotreelhubonline\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dc576ed2b98d52f9ad12362eeb7952ba312c4679685efe6806ed44fbf785cce3", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "26798860a90baeab8948910c0eb06317049b1bb139747f2bbadfcd6c5c72cbcd", + "regex": "." + }, + { + "hash": "384fabf85b0d9a595f028dfb2f60a2649d3713a4c921ade5992bb1613465d0ef", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "942549614aa67458d0c7530d1c7f2c5ce62fdf5ca123d9fc1d0dc26171a206bc", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2bbd97e427a0336a69849ad04f85b71db432c6db580760201b5682d7bad5b7a9", + "regex": "(?i)^https?\\:\\/\\/clipchiconline\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "2679dcf8cc0fff4fad1aceb5eaf6e5036160ea0ef7427d423c632ff6495a433f", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+818g9f(?:\\?|$)" + }, + { + "hash": "0e6140d486c142b182120b7be161752bab93a3b92d5b43621276059775b91d67", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a818ad1ae202bf7e1488e45538e6909e1b264cf841ec71a163426f1845637107", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "841f6dd7dbf241f30d83cf3f03245df15c4beabc9cb00ab25142fb49a7f166a6", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "e3c10343645ef757582a77ad29ddb76a7a31d829c86c917b4deac9a236443f43", + "regex": "." + }, + { + "hash": "13503788911e8913dd11bc9597ce541b08bf114a5c9cc1aa7de84e631001a98c", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a193ad61586f37736570db575e239e9ad12443a20dcfb9a521d9cf46471001f6", + "regex": "." + }, + { + "hash": "8894ddbc65341dbcd5158c54862e95a37f01cd61f03ed3d78ba26f9ed64a3d5a", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ffe49b6631e52bc9a92a53db079d009a8cbbe0a6ab98f71b59ecbb7bf6faa2a5", + "regex": "." + }, + { + "hash": "4d460289e6cfc8af3510ac9d96a4a8e8a0b8f0062a677c9494743b1c1e7c8264", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8d99cc7761d7ba8f1fbdbc596371b62b93a60daed75ad3ec66548be58e2c08d6", + "regex": "." + }, + { + "hash": "1c456abff8480a6218f0c7ff80e4c3c003157dd6b906d050ddec671207f83749", + "regex": "(?i)^https?\\:\\/\\/nsndjsiwk\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "34d0d0b868ea2ca183752613626fed6e1d05c4aa5b6cb39e704573450afb6cbf", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "130a18d487f3ff9c5a86cd53d049ba058ba13361d88bbd6920490470d2c5d63e", + "regex": "(?i)^https?\\:\\/\\/18956798961565\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4babec60a0b0da8e7209c7cb01c3ab4e5e12b7e769fe26b8b660b7e6859e85f2", + "regex": "(?i)^https?\\:\\/\\/18956798961565\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b3a0f193fb822e5a778c3cfff1ec78dd59f56175af7bcfd6a974b7a0c347ec9c", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "e1987d27fc4bde11b060189576fe486fbb31a304f19f30bda722e565d6bd0608", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d80fb725ae1e056ec849b51981c622ace964107002d679c53a1376982b717009", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "970c1bae572031feae4ba4f75cf18a031920a4614746f9491f322a16443a7a30", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "e1bce2a490cb2687df337b3175ce238577391d347f066a3dd03c52a718a548f0", + "regex": "." + }, + { + "hash": "d1254603b56639e24a7fc49011ca7bc9e85ac919a31b35f6154184206ad0d68a", + "regex": "(?i)^https?\\:\\/\\/qdhgbqhb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "2e72f713fdb9c429af49c85ba89ca1cf6f3a5a845145788eeb01d456914b91ac", + "regex": "(?i)^https?\\:\\/\\/qaegqaedgxq\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "11a733b6475c02879fe69c2635bd42dc7735e7a07f4358e9727e59dabea16951", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0e4c6c78b9019362d743661f24b140099256aeb07cffd3b43fed588a803d063a", + "regex": "(?i)^https?\\:\\/\\/thersiaelpotiere\\.click(?:\\:(?:80|443))?[\\/\\\\]+help(?:\\?|$)" + }, + { + "hash": "1257e82a796c5e1a361f2317dd415dd2693da2f89576355090cf9afd2921bd8f", + "regex": "(?i)^https?\\:\\/\\/qaegqaedgxq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "daa8ee100b7a1e0c60d9be7a38dcb8def4b4bfcd5535244c55abe858e0f8cbdf", + "regex": "." + }, + { + "hash": "403e8a1f674ae1a7f7b6e5b49137ddfb6abb55ac9fb24205011d2424ace36ccf", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2cb7ea9f52cc0e9b1ec3e5a956e31fc316ffa5a1234419d8621cc112f11348b6", + "regex": "." + }, + { + "hash": "1165675b400a82853b3e92ffbbd35be63c4bbcb117b980f24924d41dd65e508d", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ef3932d5fecd253ab8df43f3a38035d699503223aeab5c080754b51bb850ed22", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "15d7e4149d8c4e4bba73ea4706d24d014eb0c1f40ac3a507614235cb11f597c8", + "regex": "." + }, + { + "hash": "5b48b046736dd3ae8fc4d68f9301044960852606b7f1451b012cc850a5e0780d", + "regex": "(?i)^https?\\:\\/\\/dancing\\-jalebi\\-1e22ff\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "2edca98c8eda061f6046c54ed13e15f15eac4587cacd6d9b974ac35444469b8f", + "regex": "(?i)^https?\\:\\/\\/qedgqedg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7d82164a086061dcbdd9e2fe9fce234783c7aa0822c85a8d140f076fe27f9d60", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ccc2c625921b589a2019dca337d17dd6083520a6694d05b789c4aae504621890", + "regex": "(?i)^https?\\:\\/\\/qadhgbqaed\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "bcd100f341960657433b7323db5c43e731187d1030faa0ac31edced35bfde743", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6b87c903f6aa9d317c27b193c927a275288279acaac17f5c6c4a703d71ef4fec", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1fee76d195cdbed37ef8703505c15866b46855e33bfd41ec1469e2492a97cc7e", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "e4660473d5827964044786d6d44b613660622f49715adc461a56bf7c4a4f6296", + "regex": "." + }, + { + "hash": "96ce722f1a97394dd001b3e0267c8aeeaa737b4e69fc260de8053d7f39818e98", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b9f6ad100b5a8f933ac7514ce30cbf922fc9d07c89893db3e8a63befea2ff4e0", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "48e877645bb7848b8bdb20e79b9a5f5742245182f78eb6f810e033b2ddf4fb15", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "76878962ed1bf173bfc56c1e6b7c97533f66bd5a7b4fe645d5815ae9ee07ca11", + "regex": "." + }, + { + "hash": "6183b44b2fd9c4814a51f8f028cb2feeb6a569c7840546ef721c3b7988ee2bfc", + "regex": "(?i)^https?\\:\\/\\/zscqacqa\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "051756d208a14c8b4b9c36139441613228a5d5d8c594966e97db393476ed5c20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+o[\\/\\\\]*\\?c3Y9bzM2NV8xX29uZSZyYW5kPWJ6ZHhZa2c9JnVpZD1VU0VSMjExMTIwMjRVNTkxMTIxMDk\\=N0123N\\&utm_source\\=BenchmarkEmail\\&utm_campaign\\=Dec_10_2024_Email\\&utm_medium\\=email$" + }, + { + "hash": "0db02a54c33f42d1c1a6b85871a57298df70a05c4dfde736871ff39dbfd06036", + "regex": "." + }, + { + "hash": "f4da28982bb25a1e1a6a421a749b3200b9f57cd6f3175ddf65f1e97617126f59", + "regex": "(?i)^https?\\:\\/\\/dozesell\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6bde74916386fa35d5e64ff31b7f9e27856820d86bbf0bd1cfe1bc839a64ba91", + "regex": "(?i)^https?\\:\\/\\/pub\\-d8b30e127daa4b588dcaf695265188a3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "424d95e013350c065885ac59b68fadc7370c520c1bb0664998e9df70e046f27e", + "regex": "(?i)^https?\\:\\/\\/qaeghqeaghbqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2dab5800889cab05496e5b8ea4c63132a29da1ad932a72db735fe1ae1aea5557", + "regex": "(?i)^https?\\:\\/\\/ripplereward589\\.info(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0ef4b92e41f15a784d6dc1984191fcebef012df24a3dbc7e145531097e1ca642", + "regex": "." + }, + { + "hash": "78c7b46ced47d8440c86a8ced8578213271201466bfa16b2b05cc725995dbbe6", + "regex": "." + }, + { + "hash": "addc7cfc9e94bb48ca9cbe424b636af28e405ce21134481ab7969af50488ce85", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b7c7eab4ce430f3f2ce2ec4134ead13806757fd4923cc420f7874dc5c14d5897", + "regex": "(?i)^https?\\:\\/\\/www\\.us4\\-signapp\\-coinbase\\.com\\.62\\-72\\-26\\-25\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "58e45154ae8d8987bce49762aead66de297597b4989c366859f6cffe8d364561", + "regex": "(?i)^https?\\:\\/\\/46546135461\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "136057c93fd49630473ec901229f1869bdc38b9f6e392df34a700c5adc4f5abb", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "8571bfd4122e27615862b479252967f5481fc09b4277205c4758ccac155c7c08", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5bd9f0e6d366ea675e7e4764fe609ba078d5e7c97e6c2e44aecd0d058b1d5534", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bdc8527137be6b29389af32cfb1b73c25193912e96246779e7b833402425f139", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9c7601ffc6cbdebb5f63f47ee015a94df231b76badc0eac930fb293afd0b573a", + "regex": "." + }, + { + "hash": "a577604b9c2ad8963f168bd603f30c9d17d6d715514d2dda4f6b99e6c1078e46", + "regex": "(?i)^https?\\:\\/\\/18956798961565\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0de641bc33f6dd480e97532911e45575f8a2e43704af0df9009f307e133fb29f", + "regex": "(?i)^https?\\:\\/\\/pelorixin\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b8bb4c42b003a4ce17290222ec200d4146d2dc10c36794311fad7910011231f2", + "regex": "(?i)^https?\\:\\/\\/646465684899\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c7825df1b52106211022d31e520d98e10a72ceaa990e150c0549286842c468d6", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c4787c7e466d2cd5d64b5bcff44b6afead956ddae0336904ffd55264aab675e6", + "regex": "." + }, + { + "hash": "dc93cd0e061ea0c7fff6e35476c8708573a388c49ed63a0297a9b35512ded2e8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f43b98d8c9ea31ce7f4c7aa46befbd2aab0bf9ec21d317bc014bc5869de4fc94", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "5c4455c3e69a9104c7242a7fe5606ad8aff49136da8dc00b452894f14a8715d3", + "regex": "." + }, + { + "hash": "35b60529f5c110d72ff6c210607ca94bac83b27cec8c015d14cb95bcd3331fee", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "0f13b9cda31af8d304b6a9a2b7ea977ba4a112400395137bd93a1f79754dfbef", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "99a63cb4caca6a5d8115fab27ff3142b9d05a4298f47e7cb3b9ced9d5defe063", + "regex": "." + }, + { + "hash": "f99fe5b8d382fbe8d0112a89f2c86e611ab6cd74002298e8f3a2b34c0b83b60c", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3e0fbb37195d115512a38f4cada53c997aa9d7e6933c06745761ab8c2dea77b7", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbdqa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+24q0d9(?:\\?|$)" + }, + { + "hash": "0772aeaa99a3caa8d761df01a2532980a695a2df949f30ee7c0d27f76b13204c", + "regex": "(?i)^https?\\:\\/\\/cadnedfzf\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "609a868eaedf42f401e8164f18821624673eab409eadeed9e6b03b157b8729cb", + "regex": "." + }, + { + "hash": "c211ec75116b8d71e9badc17637ec8b7c4319bc1a19f21fff37de7f43a34d8ab", + "regex": "." + }, + { + "hash": "5ce82675e279314b88050c150ec51f6df9128935538bc27021247d722a042630", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ac6dcc91d8aacefe5ae2d44935a1bc046189cef681da546c857f39c0c1c09000", + "regex": "(?i)^https?\\:\\/\\/hbsqzrhbnsz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6cf004db70daeafb0b18eb3903be41503638e9323b10013346c367b51934d090", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "9d148e42c4de1cd8050e1c7e963e1b1077bc39c00283986bcba5523107bfc59b", + "regex": "(?i)^https?\\:\\/\\/foodiecontestchampioning\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8ea526e287a25b53b76080d6a720b11817d9b0e1a6b25ae9c4ed8817991a431f", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "e7910b79a8103c5d118ff7994164615bb0bbaa3788ed6241d97c42e2a4277e2f", + "regex": "(?i)^https?\\:\\/\\/zscqacqa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "25b5026937e8f50094f902a5193ddbc80afe7594a4635f913ec047f36af1b814", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "3e3ef6d7a2f9653ba6438db24005d09bda929638db92e4a1c879413bf280e38c", + "regex": "." + }, + { + "hash": "97ca9b87cdd1b4c31037659b8d8b95dd93ebb709a65a21850c952bd82ed1398d", + "regex": "." + }, + { + "hash": "f87d6ce892f688028978d06642c490c1d1307a9a7093c2d75599a09744744259", + "regex": "." + }, + { + "hash": "8585d8d6af20034c5cc88d036730acaa9bd715d117dac7a522e23f64b8a6c8a8", + "regex": "." + }, + { + "hash": "084e9d55903e31e4d39fa070e97086d6ecbe271010789cb0ed2b984595b13b6d", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "457c8240b390a04e5a24b4ad4dc80b1dfc410605aaf77ef2b723253de5ce8177", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88e770c9b7b5e6aa5855fe156731ea1236ab40490ca091c05081918fcfa24e0e", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "8a24847498dd10991ef77d1865c13c58426f1a626f50c25e7e2e576868b3b349", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "cb19aa95b93cd1885aadf2e4ebca20167159821c5adf2a93a00055c2395b828e", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8bfb7dc33f6ebc717165a5df8c5217f5a5c47ae80a65cbd1b31d573234c07846", + "regex": "." + }, + { + "hash": "862134d4bb21d5b063bf3846ab648d70d6f8f994e692796d387a7a06115fcee9", + "regex": "(?i)^https?\\:\\/\\/netmiodksfkd\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9836c1a5cfd5cd922c3c91b665bd2c72d246a5b4d101623cd5b4ca94409b9bea", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2a24c2a36b21d9462e7cf820c79a06618c8203d41dca5597adf4a5000da0ce24", + "regex": "(?i)^https?\\:\\/\\/groupwhtssapmorocco\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "61b6dc831305a5ab10c7acfbfdd1f55683ca919c7d6d79c7ca5bda914b2b0dec", + "regex": "(?i)^https?\\:\\/\\/564568915648\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7413a3e739f09ae8f31f212de1919c4b4f0a81a7b4157946cf3ef3756135a7a9", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "97581e68c51aee33c77998d43e460d2bb31393e763b8a4f1d7e23c4e9f1b3a56", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "09f77849a4678ed9e163b02ff755493f5d6ff005a74f48cd9dd7029522ed3784", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "71657715408153483b0ce9b14af0df8f607fbc92ee0138ba4739eca7983307ba", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2efb2664b8dde4c79b7f6482d21b57f280449bee246535f910fd7d357cf2ed22", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b0c506470e1c67102986d44ddbea027bf0a49da0ceceb6737294becad5024bdf", + "regex": "." + }, + { + "hash": "dd236d3d7a22365b672f558c8888be16fce0dedc1a0e906dfc5a8b93be48fc11", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "8ebda35db667e08b825f748465ac460ccb54899e774b41d5cb83e905c0ed15d6", + "regex": "." + }, + { + "hash": "831d3b8c5b8d4baa3d3d1191fd2fe266eaef39607fcff01cd032082fb81448ee", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c6e1266c532bb23e6191c8989ae557c6a94838318f8cf0ecb782d9ab0523102c", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "a7388d7d6e2f70dfa3aec9146c6c990b5707947a498eafca6d7202c1a56a8d4b", + "regex": "(?i)^https?\\:\\/\\/5586998514654\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "0e13f2e9d3e503b097baab08b28b122269b4b8c017e1f7b5f0c44fa7785f2469", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "ebd6b13c7384ed90ee80075bb5092b4a7b632d55bd92a89078280a2180b0b01d", + "regex": "." + }, + { + "hash": "d39609400248e73ad29e5895359122b24f545ece3eef1f89e3b67ffc3813a84f", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "65e85b973cddd186ef01d6e76fe2cb71b817cb15bb6114df03bb3580b145aa5c", + "regex": "(?i)^https?\\:\\/\\/bafybeicwyrl22opuuky5ftpd5boj75bbp6dfqdv7jql5ez4p5e7hsqwnza\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "3365912d091260c56c281dd42fab66e17ffb8316d688058230b5ba11fc14c5a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+slug[\\/\\\\]+LZ1q9Q3GW5B8PEso(?:\\?|$)" + }, + { + "hash": "e387cbf1b70789afe9645d3b5c15cdba158e654e4a6c186b511640f44eb0522c", + "regex": "(?i)^https?\\:\\/\\/belgium\\-be\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "10e0c68b0f36cc4548402d937936ecd7c3883fd766a6b57199d05aa006fc946e", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "01ef8ed3ca16766f5fe6f78954409a14247be1a14a8e6cac8b74f8aebe0e9a2b", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f75632d5ab268bb6199a300b675a9fe845aed6ea9349c70e162fa3b62a59827b", + "regex": "." + }, + { + "hash": "a42f1eaf2f1c084d437af2ce39b4960007584046cdd2e61abb907727fdd4dcb1", + "regex": "(?i)^https?\\:\\/\\/qeadghbqedhb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "19abb3e0b725947ca2b6219b66640737ca9e2ff38b9dbba380e14a959d8cb0f9", + "regex": "." + }, + { + "hash": "807d7ecd0ddf023f78c6eeaa3d64bbc8f26936bfda95f874a0cb829fd4e6f3ce", + "regex": "(?i)^https?\\:\\/\\/shark\\-app\\-e7399\\.ondigitalocean\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "f20552fdc40a68835445cf938a75ce16ba1880731413264f0b7fd2e17dd20c6e", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2d90debd7b8dc046fc0949ffd614a3bd9849a05bbfa1ed79742cee4de18dafd0", + "regex": "." + }, + { + "hash": "cd746c30ae503bda151cc65451bb1640bb62d5c6a0dadcf71bbabc253a83a6de", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4d0b0c3fbf3a1624b6c3da6962d3cdf338aa0ee459bffe0b9c8fe6df3788bf84", + "regex": "." + }, + { + "hash": "35e2e9fbc563db78d84b82770b67879b287d6ac9fdf79cbc343b504c0fd36bc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+com(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eddb2048d1fb5e753f71754519d822b297d57930348a34a30d0747a100817a18", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e8bdf9b158caeb902ee47fcff5a9156825641edfb351c04de507ec0991a8254e", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b94360775cafdc552a4f360a498b85ec5a1bb6837c261580c3fab55ab226dcb9", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "adaa50beb246a734add696e73e65689f4a0270d6a69b01633945ac0c6bee8683", + "regex": "(?i)^https?\\:\\/\\/hgqedwgbqewdhg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "dbd1ec16d260bed1df334d3e962f5a700b3dd75bb00de9e1810f36741375ae67", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbdqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9dd891ce466da3276294a671965e32e058ae89e205fcd97d012db209e6d78fcf", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0d3c188acb6a6586dfb155e2a03c4d0219681084bb1d83728ee39b6f31208c0c", + "regex": "." + }, + { + "hash": "beff96f46c96b268d608cdff106e28bc059bb8112679acc94d6709c4bae9a8bc", + "regex": "." + }, + { + "hash": "658cbadc98b3e242bdea9d81c2019eb20bd142d4782aefd15f820c1f96be13f2", + "regex": "(?i)^https?\\:\\/\\/groupwhtssapmorocco\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d8b39eac3d49fed081607017d590e9f1a8de2b653a56eb09b77253952c6cc6dc", + "regex": "(?i)^https?\\:\\/\\/foodiecontestchampioning\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "282491c79cdbef3a74c36de19f85893017a0d76a6541ed791a4cf9b2ed9b4f96", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7112a9d3c0620bc0aa906639309cf44f66f63c4f933a477163e7aef261280ba8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d657541c79cf919a2c95f4efc6d09455486748b21f6da277f5c729e56d4d9795", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "83079b04ea6d589863c64c4d25f060ce63ec183aebec19e36eccaf3f6d1d3502", + "regex": "." + }, + { + "hash": "94cb0e88ae00e841761154bce28558b756d1dd4e621d9ca55f0ce95a50d6882c", + "regex": "(?i)^https?\\:\\/\\/groupwhtssapmorocco\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "c6c31a221a12d92f93fd911eabaad0f258c1e8d35c8292c3feee2cb0822214ee", + "regex": "(?i)^https?\\:\\/\\/aqehbgaqegh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f4351615f4c7b3092865d7a5def659833fda878a0bc855b984dc3f1f48ee11ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b2df96df6d4e5e21589436c1e989e4268949261a92e3bc1c98b0e0c36fcd4296", + "regex": "." + }, + { + "hash": "737b50e089cfcf5361044acca6eaac7c2e89afebadfb26be6c2b49e251d0f1ec", + "regex": "(?i)^https?\\:\\/\\/18956798961565\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0fb5c74a1244c0b55a8be4bfe898f07f6a3ad5f6c05eb6af55dada94927752b9", + "regex": "(?i)^https?\\:\\/\\/qdhgbqhb\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9cb053456ad4b4c941818a1ab39f4069c9a7c85402de273693b6beb28f55f5fb", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "842f05eb1043bfd64af2e72ff2ada395c26d506975e664573dae510751ae1f19", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2c48067ab5cb3209d1f448b738004b826d66864cc337980ff5d886ece34be7a4", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "6c61ed88a209a8eae7c17738a857e8194b4feb3036258b64961a83f3a9e4f032", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "46398aea8a5bbfd3008020c955684df21f025ac2780601fa946f9056f1805f38", + "regex": "(?i)^https?\\:\\/\\/646465684899\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f306e31e402741551d576238a6f34b684af0e0dba58091d5a6064d013e47bd5b", + "regex": "(?i)^https?\\:\\/\\/46546135461\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f17d384d6cb2325fd20010344369b15e227e9b0c339ba1beaa80748fbe3ace2b", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1be67987758942294a07129c5dc91ad95caee5e39df78d42bcfd753a59a99afa", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "90c53d4b56a8ea4ec4ad92e07b5c1132d40b92b4543d3f0bc3002f6dac68e9ab", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "7213b40cafa5deaf09c6f2ccc48446addf011f5a915430039e6acf85f3e02dbd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49aa0f044f734d116a85242be7d8525080d1bb348594649ad0a827e3c4f64ee9", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e4cbc569637ea6f4abc584134d69c042afbb4b8a0d626e4862f1fda100d02b30", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "0db01fb7635c996b463bb874e16a4c9446916864e589f04fea31f6e2b61d9fbc", + "regex": "." + }, + { + "hash": "c3013915a9adecaf0ed02d33d9c151037d1eb52e4477c691d4e1efaa350c1666", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9035762ab295a025ba2408e8b2431b1c41e7c41893f7a0d71da7f7e809a8ec6c", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ead7138d4cfca1083f780f9ce480eeb2aeb4a9a384e9da36592de93e50e1fe5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+es(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "07b07d5c7155dfd0d380c0d0ccd5cfeefafd5ba790c0a328d54a42bdf525564f", + "regex": "(?i)^https?\\:\\/\\/togelsingapurapools\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "0d286360faa255f17af352a6aa9e004feda1d70976faa8810f3e537bd3c8ae15", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "fc23b24b5d9297884026ae45284618d25b67aac2d09ec0c253f3b541d1661d43", + "regex": "(?i)^https?\\:\\/\\/bafkreidn7vlme3dbm57ks3tfz6fwlyhlhd6fqdh36is234pobw6k7oo644\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "7b4d049c3be098041aa681bb1314c69241170c41a414079eac73605b18c48d1c", + "regex": "(?i)^https?\\:\\/\\/www\\.tipobetonline\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "25de38509890cb4b3f3d08b18a3a2163dc1a9d1b15a1362898f719f8ec5a5eb4", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2fe8ad96784921022c5578ecd644ea5522727e3456c237451b7b75b7d3109b68", + "regex": "." + }, + { + "hash": "1c0e6ec389104873a7218bdd5bc90e23feb70dc785a15a8d32d53855fce74cc5", + "regex": "(?i)^https?\\:\\/\\/46546135461\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5df519704dcb9d40439443621730e08ce7375113fa14ec4824cd91e53b9d2d69", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e3c609aec8c61bc44bad521e659b99f02fc9764e8b39a0dbf6bed354dcc459f6", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5690ce84ee261aac6674bc18e6d7514150dd1a0c8a6733d0990a452020c9fb94", + "regex": "(?i)^https?\\:\\/\\/hbsqzrhbnsz\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "68539bbba34430ecb83f5d6dbaba3882feb3167e6a860fdbe28c66206cca26e1", + "regex": "(?i)^https?\\:\\/\\/zscqacqa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "9e7d2b22c097547dedb76f1ea43c4b1c9b03360d92723617d7f6037f3aaaea97", + "regex": "(?i)^https?\\:\\/\\/qadhgbqaed\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c0a9b198b4c8002b61b5277236f9bd072c11ed03a1cad3d755b50b991aa55940", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6156544905b0af8ce3c8f5e3615543fe04ebfa318fa5b7a8fd0fe8c0d01c1352", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9d1989cfc135ae6d412175c04fc9e792b3af194a68691067fe0d140d3cc6ffaa", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "46d0c3465c94c539efd94f3886c5bbe322830bc375e594aaa28bf0e6048baa3d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wmbbrhbep\\.com\\%25E2\\%2588\\%2595dypqrevq\\%25E2\\%2588\\%2595gfvxmug\\%25E2\\%2588\\%2595yjoikajwp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uggnkhq\\.co\\.jp[\\/\\\\]+\\%3E(?:\\?|$)" + }, + { + "hash": "d464dc8760c96a05e8580bcec1cf2a80115511fe58d02cbd8ffc4013d7c5d3e2", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a4b2f996093e86a1d4e2d67bc452bcfb88477d5f74ba72462de867b8a19d953e", + "regex": "." + }, + { + "hash": "fe23f8c6613649f1cd4f98ac093d9afddd2b159a3052d25d2ef2bf7bf7ae711a", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1744c85b1f021b691cd8dc8f3ca41cf6e584be6b6a293c2aa36986604f34562c", + "regex": "." + }, + { + "hash": "ec50f8581713811e13a02ec54d1fadf28d44a4ab5843123df0db13913c3f5dd7", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "9969bd45a3f7de921450365e9080b2345dd789259ff214eb10b6740f166e0caf", + "regex": "." + }, + { + "hash": "679c0bbe6f8bf87279e1a22fe7b6c0f713c85d4f414bdb0e7a264c7cad48fbf0", + "regex": "." + }, + { + "hash": "c5a68b7a07274d9a21fc9e161563277a3585af7fab84c44d3924333f2311f8f5", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c8e403d548da4114fb6922fe94055fb54bc96e6bec0c7733fefe2de253611370", + "regex": "." + }, + { + "hash": "b3805be7f22a70daa4613cfb7790c2ade30bc7c62550618c4da9a567bfa6d13f", + "regex": "." + }, + { + "hash": "4eef2e5cd1733f8a976d2493e329fb23b752da5347fd88119c1835450f1228d1", + "regex": "." + }, + { + "hash": "30c97f7e66b6a6bfcb3583b9bf92c715b22fd6ff5c793496320eb841f01dd19c", + "regex": "." + }, + { + "hash": "ce7b1c4caed42e3d98e16f2f458e19376f400baf8bceb4653fbfab29bb189298", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9203924beb6e517111a0215b6847fd523a674e2f8ae5faa250eb17a4fab5960a", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "99ad7b7b6c8cfd532e2146881eec978964a5a6f5a62165502d380c412b9458ea", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ff527bc344902bba50e4e595301105e0872a28262fb3f44c73ca77ff17c1f721", + "regex": "." + }, + { + "hash": "f2e08f36c5b71d803f5e09136b1952826a6b2070914d83e9d96a8051faf29067", + "regex": "(?i)^https?\\:\\/\\/foodiecontestchampioning\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4a7c74d67277ce50bf927784879c2844e8a1fa6112108a5674e2602f77c04d5e", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8481caa31845b66bb583e464abd27948623e956fd32d076a2ccb330508c94cfa", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "59413ede49dc10fbe71316e9784cc68558b0413e89b2f168df1adf43c66e3ffe", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6b1f4a4a77db0e05a1ebf747c1d0a95e1d95a68786e430a49986ee8dd6d20cfe", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "ecbda81cc36131b17a03dc8e4984828e338b099c5828048a12aea82eea252f67", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ccb5b03518fd2f9070002162a50c5a779d7b8aeab25e0ae9b0cc2cf5f7290c14", + "regex": "(?i)^https?\\:\\/\\/clipchiconline\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "03e21b962b80d2a0ae53038516c5754bcce9557c8c0a40930f32f73b1a015f50", + "regex": "(?i)^https?\\:\\/\\/ehqewdgqs\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "04c8d20946eddbc26ad937e036c3a96da6187ff46e55b38ab0a1671268e04572", + "regex": "(?i)^https?\\:\\/\\/5586998514654\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1973e150b6315a03c3a97b29dcf3ee37e5e001d4831f1ebb19169746b7ed7ea5", + "regex": "." + }, + { + "hash": "ebba565546da36f999436cc76d9ce0f952ac6a3ca6dce176a457e2f355ab784c", + "regex": "." + }, + { + "hash": "38709cee4be1be0613c75cfbc4016a03a06b40f0d87e62fa271e7156e35923e4", + "regex": "(?i)^https?\\:\\/\\/moravitas\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "14ea81f394e07529fcf7af3223f96f455e7b825054639f4535c39d43c7449aa4", + "regex": "." + }, + { + "hash": "5f89e2e8a57d3781a2c60a43f692c10b9ea8e687a8c442e9fcc06664169e0715", + "regex": "(?i)^https?\\:\\/\\/togelsingapurapools\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8b1a65130d48066f234850038cdfdb4d41f34e28c836a3ceb170fb7c28300806", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "51b8c2039dfa6f8176ab0afa655c6d06fbb6f33a63dc37a1af09824d2020018d", + "regex": "(?i)^https?\\:\\/\\/qedgqedg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "561ea19d9f51c03c2e9eb008836179b28fd7c7d4f6cb0b9dbc960b2310587a2a", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7c606e5e9c70fd2ac2f480aea8e287bc164543d0c61c5bd817c883ad579109c7", + "regex": "." + }, + { + "hash": "a58a8c4de818c9c2ed3803ddbe7140a34596b38ff540c48f6c748d3ff0eda572", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "49fd732e6a799c876c431582ed89d35f2b07563b6594fa67d92e0caabf30fc41", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "641ba478cdf05cab880b91d9180e9d18c6c9933adcdc5843e82c2fe4f09db209", + "regex": "." + }, + { + "hash": "1dace3351106fa3a77e1a45a49a56e0e94de98fc3baa40e0abc8b065bc51030e", + "regex": "." + }, + { + "hash": "c0b493b80f23a1b47a36748a91a6f932cc056ca33c210ea1ed182be65c797060", + "regex": "(?i)^https?\\:\\/\\/clipchiconline\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ee0ce4c40a3ad59878e0dfb66ceee3055ffb0138dff043bc075b464e84af2cf6", + "regex": "." + }, + { + "hash": "032abcbd3b6a9a3dbfbfef384b0cd1d5e307213311411350aa07618d4bd73a10", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "34bac33f5099c5119e31cebc9882dbc171fd716b377408747f1cd0d57f392e28", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6973448f0962567d6959c4c469cfbbcae2ae6a756ae9feba6bd75e8ef9e480a6", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbdqa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4b0ad3866aa3924e08c3bdac242d787874c8b664d2bb04ea102e451ce8aa5dc4", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a1ab51de9186ddea480ca63f9b6d029a527f9ad869bce38b87d9bc8d56704156", + "regex": "." + }, + { + "hash": "f60e47817c7dc491e6c921c4fc86111a1fdd4ce5924049a14795b2137927df90", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "aab349a02e465b58d809ad41876c62d8c6c39457399fb7f70865e98781e67482", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+x[\\/\\\\]+9vSGykQy(?:\\?|$)" + }, + { + "hash": "0944edf1db07e73518f97a7e1e27b83802c0e78caf9c863915fa0c7b2f8cd9ce", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2b1a86a18ff46f42739552674b5b644d36ed746c24568747d8624346f2a0b88c", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5759967270b18747b03c1f60c5ef8c89e8cd759d1cee1e4ed98e7fea071e83db", + "regex": "(?i)^https?\\:\\/\\/verf\\-amazn\\-prime\\.157\\-245\\-208\\-161\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3efab189ced66d001b92178f200533311fcf2d0e817505dd09e1f7f0a5a59ab0", + "regex": "(?i)^https?\\:\\/\\/qdhgbqhb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0c5fa631e36378bdb1d3857004b0fce50feea6a449fa630836687c8c32c73a59", + "regex": "." + }, + { + "hash": "ac6b29debf9a14d03a016ce9c368d825a85beb4c9872a2a071741ed05a7fbc21", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ca21c011eaec45207b89365c8110b79c662974176a53494462471178a9a30252", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b29b249cef088e5c95b590d0b0c498a78d44a18886a86156d567a48ce0e8e42f", + "regex": "(?i)^https?\\:\\/\\/foodiecontestchampioning\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+y5hrnn(?:\\?|$)" + }, + { + "hash": "aa4d8668ef9fd80605bb83b4f78d7f45eddc89c2106b4f07862f785551ec642a", + "regex": "." + }, + { + "hash": "7d22e447928deeb767c91a8532708ac037095a13275f43b8457b12c451176b85", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "1c14b2d847abe9a51051eca4076450bff6373bf271793ce3fba49b14ceb59e8b", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a9abceb5c8a970551f619d443c54db2f265144446c002f58f5ce40904b0de2b1", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e2901e7a2d775de58b0f311efe6c02f3c030883ee6cfd7b389121ca8ae4d0060", + "regex": "." + }, + { + "hash": "680e4dd01790af62de8d2fefaff89945157cf075bc1011ffcf74a36e79e2844d", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3aaf52f8c40e69b25d4b8b185df8e99f264d13efff7975bf015bd7b22330ece5", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a380e8d650350e2290b63b74e12381621464c9f793a1b75d3c76541eb37f1ae8", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2eb5e9fe5dd373e42d636ed7064f786521c25a2140102522ef64ffb4ab93b494", + "regex": "." + }, + { + "hash": "ba3d7fb5ff33128ceff248a8ad88fed2727f32ff8a5017f9c498b7b60b16eb88", + "regex": "(?i)^https?\\:\\/\\/646465684899\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "d349057356d628ec7d0ed5067f6294b2aae2e5647733b9fcc1f93a79ea9ba9f0", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d64feae67b091e4129b62c757d98fcc457225fbcb7186856b0a50e0a653ef5ff", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f128882609a008030e1c44a927940f9c6973dcc0d7efaf11b895c29ddce4685b", + "regex": "." + }, + { + "hash": "49cf52b1307f2a855b9b50becd1b7982e499487c9f0b294632bf99a260217b30", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "59973ddb1d6215f74acf0e12aead930ec5cde5b5bcb2cfb8fbe0160d5c564af4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5d9c51fc134509fbe084846dd4a0c1eaa1b9fbcf012db0856283f206d5f6575e", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9a963949f90c9922278b98eefa06b410205bf96f2052e02bd8d289664db66ac0", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "aec2875c425f643aba607f923d4afb0362c92fca06cce5dbbd3ec5cb783787c7", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "df1a8f3552d3eed50b4b61c1cc4e9242008e61245e9fb5966ef7dbea07a16ccb", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ec14bfb5cb9807c17332bbc348560fee7fd0fe40ed5d84c80b64dfcc74cfe7a0", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "050750b01a0b762264b1d3ec57dd645c57e7faffeed23c0579e8c3803798d819", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Sumupv4" + }, + { + "hash": "d83098d3216d925f9ab0bc4f0d2ec35690cf8965b0adfea215efa70738ac8b04", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "24560460aa150ef9da1891aeab781ec433e1d525df764f58788977c4121c49fb", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ba0db14431e62ef12c24d93e3c13e09a553fb8d2d4046d035a10c927a00c4db6", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "4a7d9cbe661018de3be4da0f6abb81539ba5fa0a613df9526e95fe303a67e52c", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "916be62eb3659a41b3bcb1fd6509e46d277b0f53e060c2d37ab20b29e875d970", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8161fd014d426e1fc0d5a5f065b04a3bd48dc350eae1f52a6f49148788f4e5ad", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "63ad22e177c44e94161988f721d9b420cdf9cd28a0260d024b5dd818e87c6fa6", + "regex": "." + }, + { + "hash": "a73ccfff6be45b3407cb5e6c60f37c83f21c81baceb640bd88e33ebf818eef3d", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "c2fa6487ca20aed280a34437561698012f426f5ef3691306351f1ba8ef4dd331", + "regex": "(?i)^https?\\:\\/\\/eqaghbqadghb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6dd26da997960cea0662443e3a114416d2f0d8aaa99c4e2184bcc230b21bc0a1", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e198b0db501187d198c5351da92ae35c9effa21f715b1c78fa31d6c98670c46b", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "4846e5a1a2eedeead0ddc41304406fb7da1f1d3c9511f1c357b5513ebdc7dd85", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a01d774c6fb8a944bae35856762960fba328671dee7d3e8aaf4e0923b5f190c4", + "regex": "." + }, + { + "hash": "818b70894fb20213f044473097b26eb0ab46c7a0afb8c2493d369d2f12d79048", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "27ded6337a66dd5dd568460d674427a46b81ab81da826226797f03c4ea11dffc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+how[\\/\\\\]+calcul\\.php(?:\\?|$)" + }, + { + "hash": "ff66ac02633e122376ba830f8c91c6494067c46ab01be975ef80ea51aa642ee7", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "9127dca6f78eea0cb0c1f61edfbf3283c8c52bf3a498946b2cfcbd62cab59505", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tk(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c1161bd32f111eb67085d6ea8633f510731a6419406d5fef26255fd31b32190b", + "regex": "(?i)^https?\\:\\/\\/tasebest\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "762b1a8b4ff60c3497c269b2360e414acc5297f68823adfb13868126c1e80cbf", + "regex": "(?i)^https?\\:\\/\\/qeadghbqedhb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ccd10c9fde8d6c23a861fbf97b73839b43eba7c11cbe1181a3e1812083754c2d", + "regex": "(?i)^https?\\:\\/\\/qadhgbqaed\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "21e1a0bbd1c0d3cbb3417869003d81562c77b4fecb8af1cb28c43018b01596b2", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ipxlxt(?:\\?|$)" + }, + { + "hash": "e484ca0793b7eefb051586ebb5ec6e973d4cc0637425ab0320f19557e4975378", + "regex": "." + }, + { + "hash": "3c20d565d568249f53aaf9b2c896de0e099b20e8a1b205a69584ccd8bc3fb85a", + "regex": "(?i)^https?\\:\\/\\/qaegqaedgxq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "80ba5e7e42e7e408e0dcf4a7dfa3d81e3ec72cdecd52411d09c5717e42661499", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "c0e7398b962b6775d0003c2df13ffc2133b03899ee5794b62e93bae7d014743c", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0901fcc7029edf90f892385e9803517e78414adca477fe85f29136f99a878844", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a7e86d0af96ffc458a60fcd7f49380129e60e4448c88082d9b5e973c759db07d", + "regex": "(?i)^https?\\:\\/\\/eqaghbqadghb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "9604cf60a86498c8154c9b732282eba1eb8616c63da064536accc24b2ea5a081", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3e838fb785de8ffa71877529162ac8f792e514bbe29d408ccd62b8447db475a3", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "726898376ada091e3b2f869889de956a431b0e8f325dc1383af0c8a09ca58cd8", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "6dd26ca580857f7264090cbca8a8a4480b35fc97617b68882b3f4d85ebbddd5a", + "regex": "(?i)^https?\\:\\/\\/eqaghbqadghb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b3a5699371de945a16162ce7aaf4f68185d8e0d1eb4825a7e706f1167ef38ea7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a4deb31f581b4bc52c27153dea12bb74bc1c83f137cedaa0fc79d2d4d4768b8b", + "regex": "." + }, + { + "hash": "b7d411888b1856e3059a2f22569a4457d0cf9fd424edbaddeb40d87b8056d77f", + "regex": "." + }, + { + "hash": "fdee84fe79847bd9098332f96a01c4118e30ef3ff3363964fb9b4321daaf5b9b", + "regex": "(?i)^https?\\:\\/\\/foodiecontestchampioning\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e818838355b62fea3e7c42f6d176999579f7088c3729e4a6b4b3e1a6c3e1d66a", + "regex": "(?i)^https?\\:\\/\\/togelsingapurapools\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "643fec92b57f4b5436cab9a55f18f5c8cead844bdeed8a60ecc663a02002db71", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "9127dca6f78eea0cb0c1f61edfbf3283c8c52bf3a498946b2cfcbd62cab59505", + "regex": "(?i)^https?\\:\\/\\/plaoacawal\\.click(?:\\:(?:80|443))?[\\/\\\\]+tk(?:\\?|$)" + }, + { + "hash": "11dee7f35a931101580018a0e897ecbf71f2f4b0881c1736c14dded66b35a393", + "regex": "." + }, + { + "hash": "35c288e15d75ded4a7d1988488aa8c6f3020fa03c43ba0bc0f6ed2fd4394aaa3", + "regex": "(?i)^https?\\:\\/\\/dfghdfhhdffghjgjftufgj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "eeec10a50ca0d9bf4e80a163b083050d1f32764af44430a79f39770b710d892c", + "regex": "." + }, + { + "hash": "78040ae0601ea856ee2649fd40b036cb8f822e94c7513e06c83c26d320016d08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+user\\.html(?:\\?|$)" + }, + { + "hash": "0751b14e6312904b43de37b4fa414a0ff48ac5066b6cd5b040ec1367182d1f6c", + "regex": "(?i)^https?\\:\\/\\/qaegqaedgxq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "9ca4fa1f5fd77b78d5b0c2a8a95f51dc8c7b6ce68bbfab3568c059ddee46c5c9", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f0e46f0bbb4b17960055fd98fbfa2c7fa9b1685f82bc27442327abc75ead7ee1", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8f8c8e8b08283b0cb8e0796f098fc70cd197c7e23fd552e09e87e1e457ba15fa", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "93c11ed9f54dfdd632166850e3538f11ef34f18c7094f4c5176bf83cff5d720d", + "regex": "(?i)^https?\\:\\/\\/maildttfl\\-att\\-home03293\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "94e1f41de7c1feb1b5e99c21c6bbac3ba4821af74d0c11487bb06c22e2253eb8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1gQTrY(?:\\?|$)" + }, + { + "hash": "4a75e181a48001653a2bd4c29391ecd9fde01d3f6ba283d0e94f00b28da0032b", + "regex": "(?i)^https?\\:\\/\\/ehqewdgqs\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "f606b20357986525d0aa0b276a91d3c1cb84246001efc3fdbbdaa2deb6b6224b", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6e7ee3322321ed95d7a3b86fc3d436ee2271e148789107438f1b716613c01598", + "regex": "(?i)^https?\\:\\/\\/564568915648\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a994a307b5b36653d46d20cab925da4fc25afcc883a02f56d2f427bc9b5d503b", + "regex": "(?i)^https?\\:\\/\\/qdhgbqhb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a833a2ac0d6368e9549353af0331ec49f6ea11b628361bee56420e4a6535e91d", + "regex": "(?i)^https?\\:\\/\\/kravonita\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c4e6b89fda622dd19049acdeb9bbe6386dfb5e7bd9208948dd8e5b3033740686", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ba821aaad5acfbe0162f3131f5cb3daf8a573928e92354f8773365ad9c6cf67b", + "regex": "(?i)^https?\\:\\/\\/hbsqzrhbnsz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e532b54708f3c086eb0b5b7342af8d4da6229a1aae5d5b7dd89bc712470dd63d", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c718833ac213873017222334cbd27555b0f16d79326b991031b6ab890ff867b7", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "3327e2adddb3e0e556aeb579381b061bb35c6eaed50ba907f8963aca94c49d94", + "regex": "(?i)^https?\\:\\/\\/qedgqedg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "eeb66376e60dbf2efed08e0c1c32095e7972cc385bd50db7f61cafa2cde16221", + "regex": "." + }, + { + "hash": "4767d80d08fb09365c5898ee92eebd75a95711b1b1e8711f94170c13ae87c2b8", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5f89322788cff8adc797b4c6ccd92b186cc27ed2eab1e95ed2d5b5c0535312ca", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbdqa\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "de82cf611eba8ee72661caab0a27c3b1c7895d07d06a27997d5c47efc4f63cfd", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "2e25cb32a73af04737518383bb5627a8f95dd409d086f545ba0d7a68f78cfd42", + "regex": "." + }, + { + "hash": "a2b660be713d02e38b8a705ea7503a5ecf7d9486828fa67914f83c929ff59bb1", + "regex": "(?i)^https?\\:\\/\\/3115nn\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "72af628680250f0c94957a40831359dd9da7572a0b3a5a8c1b569c67d8233d93", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6a6b6a86ba52b396810565fd352ea0bffd1884235c313bc493929007b229a4b7", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "32262ca8484a0ec811195da464a565a24fb1fcd1c97c05383467235a3f2caf37", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7a1a38521ee7d685171cf53fd14eccf9dc0c2e321d81ad836c9e179273423bf0", + "regex": "." + }, + { + "hash": "9540d766184d2873c91532bef348e6296c2a3025d5e8af2f7b43ce816586df3c", + "regex": "." + }, + { + "hash": "a04644191e0a75f9c1f92ac6595e6b7e073265f5f2c4a32ccc7452d1cd88bd76", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "46d0c3465c94c539efd94f3886c5bbe322830bc375e594aaa28bf0e6048baa3d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wmbbrhbep\\.com\\%25E2\\%2588\\%2595dypqrevq\\%25E2\\%2588\\%2595gfvxmug\\%25E2\\%2588\\%2595yjoikajwp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima(?:\\?|$)" + }, + { + "hash": "f5aab1fd7d8b9b7bf54e14d82d0edc665f992b1d90d5ea6c466d546e187f0e97", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5ca7f6d889ba4705c7f7cab66d86a4b1ab0d00679fd0339de747dc6b403c191d", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "d1a4b08eed52bf67cc14c1042403a5812323b51a0cd64bbaccd8d601a4a0e5b6", + "regex": "(?i)^https?\\:\\/\\/46546135461\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "250c97d4e4ab9062e7bdea4fb91abd638ee741bca1311548cee96709498615cd", + "regex": "." + }, + { + "hash": "96ba26fae894e2f9490700fe83c483502baa0f5b1f75fa190c4368a6b0098e3b", + "regex": "(?i)^https?\\:\\/\\/pub\\-2b29dd5faed04a3daa474fd712795327\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2a7d9054ed9937b2dc27112081bd36c3814e9ad6258aa1147662eeb23baae87d", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a82d8efb77a83f5b7e7a54d395409e1f94b3efefabefea3ea2ddb532cbef90a3", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "337e4b218ac841ac7ef073df2bd97fcb4b43a797edd8ff2fd5a55075ab9d2554", + "regex": "(?i)^https?\\:\\/\\/646465684899\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "cd740da4fb55c9228484019df6ebab7c70c74957b8109b5d394b1faaee5dea3f", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "642908251806a6efbe3ba99381d211451d227fe929fea899bd49f253a0008c0f", + "regex": "." + }, + { + "hash": "97973058749ce6dbee50b0e07e3025f49ab544bc9a686e32111c6c05d1ff678d", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4e5aa2ec2ab7f66bfa294905355687a4338350a20384667c7e1a2ae7897a1358", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?i\\=cXs8e$" + }, + { + "hash": "776efebdeeb6cf0faf441c52f7a566899053c7d897bcfb9d41e3468a6e26f590", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "1b4b6dff68ec8bcb8c86422ee9d594db2048b16607f338dc636f63968385d792", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b73c87e9cc866d3fa3913ae048588018503cb46e21c3a5e7f52faf98095c200a", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ebfa1642fe17c3614eac10591e37b99c0cd039c1eb8bcc8841855759c6d6480e", + "regex": "(?i)^https?\\:\\/\\/eqaghbqadghb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "deb94ed6c2a2bc709fca3efb965ae651dd7921b9ccb5a596991f08adc4dccdcd", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d5fca97dfdacfdbd111f9f6a2b6f678b529ab3eafea5d33c1f1b31716806e52c", + "regex": "." + }, + { + "hash": "ab65d6e9fd752ca0b82f8dea967ddb6291f014a741f32fc00d157b47cd50a0da", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c0456bdf52f88303630a950daa0d575f192308b6845a6275fc8a31716078cf12", + "regex": "(?i)^https?\\:\\/\\/qaeghqeaghbqa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1985eb927373b468c3b116cf353d8eaf8c83b5df2c1c280716d3cb0c77456773", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "8b0cdbe97aedb2b947f36719713555b162a39e6bccdb44af442c0cc22ee1dd52", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "efbb96b9c687d8f4196be4421848894b251c7090f5a5a5389c38e123aa2c652a", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c34363642da66ebcc7935be0f09305f2401a57d5f2186102bbe23fef6d59487f", + "regex": "(?i)^https?\\:\\/\\/hotreelhubonline\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "102d07adcea5f6eb2239fc6251f37f2955c9bb68793db361262438a9a5afed4b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8531ea549f0e3bf878166d1ece047fd79a1a802601de46a30325cf202cd223ad", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5c441220405f902e7df6c909136679ab4bf035302af9b036bb8dca30fd42d5ea", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e36aa8440e3e3c3f66a4f9aefa4eb7da6808bdebedcf188d65e0dc5839677d1a", + "regex": "." + }, + { + "hash": "e6e18bca1b05200b05e7d3f0216970c18181bcbd6250c80e0b295a92c24e9404", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+data[\\/\\\\]+6472222156[\\/\\\\]+payment[\\/\\\\]+a1974X36[\\/\\\\]+Mellat\\.php(?:\\?|$)" + }, + { + "hash": "2ae5a9864459b425875ca3d8e39c71a1d560a2754f6e4037b686a443de0f525a", + "regex": "(?i)^https?\\:\\/\\/46546135461\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e1a770e4dd957cc7cb50cdf6f0fd91bd24c3e37480ae0baeb01a1e5c6a4eb925", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7c6303f015c9c3ca043205a2ff2f5f018b26d74244ce202c564da0d4c8cd5518", + "regex": "(?i)^https?\\:\\/\\/646465684899\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "67aea26667c86301deee592fd0ad54ae8b8eb64dfeb165189e3cc94631465b90", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9a2a77ffcc224484a5e541a738527bf2e852f4796020f34474ca3be593249bc6", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "32e5a16cedda8da1ee90fed58f0240868c2a4b4a849284944862fb317c0cb4ae", + "regex": "(?i)^https?\\:\\/\\/hotreelhubonline\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "842aefd4d7c9b7dec520a9ef42bc8eb3f135df3e0f25a5cb76dc929aa8f9f214", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "7cdc755e7bc7af8a1bb06a18cd8da2d1069bf54b72880ac0f66e8f0fede0cf27", + "regex": "." + }, + { + "hash": "cf0c6fdb8e7f04d6015ef01ce1cbbabd4182ee612abedb3f632e11d922d1e86b", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "26b275166772428744f9c0cfeec17c730b288515893cd31efe60fdfadd73b82a", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fcacdd7c333699b3ab68457399a3d83602f1a88ce2fce87eeaaecb231889162a", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a180ab568fdc859a1af1fc27804c7940d723d036cb8e7534e817e1181a9f3fd8", + "regex": "(?i)^https?\\:\\/\\/zscqacqa\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "a3723270aac0add41dfd1b578f047eac594075320d3e2f84f3d453838d07d292", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d43eed83e164d3da573a96291e66fc4d13e915b41fe8eaec24e0c79029c303e7", + "regex": "(?i)^https?\\:\\/\\/clipchiconline\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "75345d38ac78561f690a0b18c3fada09debca6a34d5821cd9fc6fb7770dd28ba", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "474a2d6a60cf53acad8d6f1192bbe33dad3f745ee9d871a6ae0b456909d2aacc", + "regex": "." + }, + { + "hash": "5003d6e6d1dc83cb3f0285d9d6132b984210ea39f42d7edcfb0ce0ab5d01e054", + "regex": "(?i)^https?\\:\\/\\/valtogino\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f269b21e3e6bae4c3fc24e23f569bf96e10353b53d8ee4a0049b19a223f59030", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "89e7a9df1f06b0b60dc91a222418666f9bd26fc181583764232e1fd7e4c12625", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bands\\.html(?:\\?|$)" + }, + { + "hash": "2d38f7709a95bdf4e3386d4c12611774596603941e04ff387f56e87e28471fc6", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6856b953e1d4e2634d0e8e32c0ef97159325d6ee943a0aaae71cae28f5dc5ca0", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ed6cd1af8dc794e78f979f687fa6d47f2a4daae206eb6bacebc0a0bb4008de86", + "regex": "." + }, + { + "hash": "e399da21e7f3fefd96feadd9c0f1b71846db1edf1b3ec8681abdb9859b1269b9", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "8b11576fc37f561ddc35bf0bf6e941d0f46f1d6023022bc8752457c61e2521f3", + "regex": "." + }, + { + "hash": "756fe590b94881f6e9b6adef8f7d2c4cd311f7ba129be5afc24192a69ee631b6", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "60e1ed670abf7355f6d7d4458c70d602f184564c86a552591a836a2e63c83837", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ef90630883d93db2a7b9e7b6a3bd593395932507c43d2d6bdd6c870ccd04449f", + "regex": "." + }, + { + "hash": "06460c2ef71a58bf914f78aa3656420a114fbbd45acc17f9d112d96989f50bcd", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "919df4d02df6820268f169dd28558f686ddba5c9f7bf07d6612c7183fb75d759", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business\\-help\\-center(?:\\?|$)" + }, + { + "hash": "8f5126afd98bcbab5814e9fc71e7fa046a40ccfd273e40f45e6dab3d9e936bda", + "regex": "." + }, + { + "hash": "26008ea6608c59328ae7afe53d5ec25bd7e6e0090174be2b5d54a921774ed289", + "regex": "(?i)^https?\\:\\/\\/pub\\-a869a47428c3403381b4f856efe44740\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ac70124401be3f7a3c63a6a2352d41a9fcff61e281445b2342186273ea0d6ae8", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3231ae554f5e48dd5ef0ecd5454e5683a5b61002f8f45910192c6585d4e9a60f", + "regex": "(?i)^https?\\:\\/\\/qeadghbqedhb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b6c3d36633ab8cb605dc9cdd301ad0eb4b2d24d858b5c0e22f04a26713b36e0d", + "regex": "." + }, + { + "hash": "2bbd27979976aebbeaf7a80c1efe529aba6a8fecbdeca1392e1f1b02e6f147fa", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bc6465ae487755f2bcb77ca7c83013c1ab0cd2ad4f4cb03f9a7ab6622a9083c0", + "regex": "." + }, + { + "hash": "5216d7fc8d10bf7c8e99133a6db138542de81c67eb33115d307cad3773bb0c36", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a11fb51052f4d4b27d06821556bbf8954e3144fbbc46a675306aef829906b7df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62b0569e4bb7318a1098312ebc346048d2ff2eddae4bcce594d6b838f3627691", + "regex": "." + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0ch1kq(?:\\?|$)" + }, + { + "hash": "7a0e17257ae44d0ba9b31c5ded0f405be4ca2bc5de23040fb5f7164aacbf9e0f", + "regex": "." + }, + { + "hash": "c208671d55bf41f4aeae2ff4e7882527de8574741ccb4cd52379631c5eb628c2", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1c679fc0330ef6ed9be162eb047dd688148a4b5bf306852dc0320b8c18613fb6", + "regex": "." + }, + { + "hash": "fb6607f5b4db4c2527e604a3cb37dd2af3934b71df40d23889b289f3d50e515a", + "regex": "(?i)^https?\\:\\/\\/ehqewdgqs\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b98aa41a1c52e6306b110f220d76ba889a4e93ac987a2e307d33efca39c1391e", + "regex": "." + }, + { + "hash": "5860b0beec75f3f3096c0cab9930c7e71c95bec0501173fb73eb83370320ef69", + "regex": "." + }, + { + "hash": "b013bcf31afd0272c86682d4f8638d2c2552f2fc3a1baa0000609a93242ac8ac", + "regex": "(?i)^https?\\:\\/\\/qeadghbqedhb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "872365ffe28a5060475a2e33e64cbcbed9d1f286b59cc8e9c621a2ab7cef8675", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "4cdb6eb48b1e8a205ac2e4ef6647f6f2868fc6820ad5e7520427c2354072adf2", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "953dd8eff741f32fb66db61b38358678799f6e4d76f5831ff6df8bd6ed3180a3", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "f92cdb2b07fa04dafd7d9a7358779c9990bbb4d30eaa27c017062aebf5339ddc", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7d038447665bdab3ec73d2eddfb02018fb1f1fb7a3f6e448536080623bde916f", + "regex": "(?i)^https?\\:\\/\\/hbsqzrhbnsz\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "66d5b04d0591c880957b5e0658d7ccf254916cddf851bedbedae400d7afc643c", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "77402b913659b884854d4f073d2a353ad70c83bce0678f46e2d80d2ae1459d53", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "311a19fdbd799bb595b82ea5d8c16d46790d1476c18f75885fcba45ca0d9b836", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+co(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "99f705b61071a300ceb8d153ee2bea3079d99be80b55487297fc37317f0a9a2b", + "regex": "(?i)^https?\\:\\/\\/qeadghbqedhb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6e86bf92106fe8f0838099d61a3f9406f28f9982ceb32c62060a90b0d4073b8b", + "regex": "." + }, + { + "hash": "051756d208a14c8b4b9c36139441613228a5d5d8c594966e97db393476ed5c20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+o[\\/\\\\]*\\?c3Y9bzM2NV8xX29uZSZyYW5kPWJ6ZHhZa2c9JnVpZD1VU0VSMjEx\\.\\.\\.$" + }, + { + "hash": "38da1791658d12bab0dbf505f7147e947b1cf90e59272d2689a0ed92bc8576d7", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1884ad5d0ba899857be557269f4f68bec9c1967810c2d012619f668254284a7b", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "992ecb9305dac556214f7bb575be4be02b67f33f619d537bcbcd6ca36760815d", + "regex": "." + }, + { + "hash": "7c89754b7da34fef0f3b5f0a9124da1619b3cb7885734b8efc2e7af5eb9d485b", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "dbcef31b5c3dd368665b36e3c93634fbcdddc4f125aa8c841ff32b0b2a5fbbb6", + "regex": "(?i)^https?\\:\\/\\/646465684899\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "9f6c624830126318ed8fd27ed160c40463b4759899b58feaea5ea0188d3c4873", + "regex": "." + }, + { + "hash": "436e86df173f5ff648f898d5e66e548d703374c0ad5df528a4e64c5cb81b0cf7", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "0323f1d632048ca9e99e2a1c9ecf4b74fd61c029957854ed3ca8902a37c0ec4d", + "regex": "(?i)^https?\\:\\/\\/aqehbgaqegh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "183154aedd11af3daad60916d15f42263c76ff6306cdb357f072f24d27a3a7da", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "caeb8950d70dabc49857619be0838d905a3a6cb6da1190e20b8e3361c8261087", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d972250d80611f8fcfb01aa1bbbd2a05964ab7315e2062130c9e45c8b730d384", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9iy6g3e33es2wae[\\/\\\\]+7y6tttgfrfrf5t" + }, + { + "hash": "bc550c36790d794a8654877bfce548fda6ceff3b77b8eca039ea8dff5485d681", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbdqa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "377d857f176b1b566a2e5cf8e999c5c72395800c0fc189cb268f7b4bab0a1254", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "daf1ac67177792fb9e5f81f99bc8b50b7f8472f1e6bbf8e02b6f885b00bb3241", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a9d2e82e4446bdab406a40d84508c5087f99048eef985c693fad6b4f1da663e7", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fdf4d10da6bd0d21b5dd79e67f1ea69c23ba9e78a6a8afb35d753894b7809d6c", + "regex": "." + }, + { + "hash": "9a91719d1607c971338d9331c260d0b3fadf8c85b9fab3b4a2edbfbf7998cd4d", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "56fd564032ecd68a388399ec42ec03ee5d1fbc29edc87704770d575ed36aaef6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cc05ed078223bcd0730a7892b89bf9be140a3d8a384ad279e193d67ca92188c9", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ac5f008e4c2d001d0ae83946b0c668ad3f0f9ce7c0c3f59627036d8d83d9e1a3", + "regex": "." + }, + { + "hash": "f9bcb0c83be7d3a4b4e3045513549437863d9def9c71d98279e168ede539e9b6", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5fea82fddae527537ced69b8a29670027c5aea1989f9c718aae37a5686b8c3d7", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9747a1db13a6d0110d2c01f7ebe22831cfd0bad9dfdf12082711c0d5779b662e", + "regex": "." + }, + { + "hash": "500950b85b368b12b4ed83b765ce5aed8eb7a094175bd51de1bcc5d91de688df", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "9794ab508a3e75a98f5b2327dd3fd769d2d7b72db3dea08ab029d5e3a5a784f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3b3b7b1d0e18ecfcb61e458e719a6e6bc017e8864d9ed16f7e7e27324ae86b74", + "regex": "(?i)^https?\\:\\/\\/eqaghbqadghb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c4170c8344fd5468baa6917ecfd9d58362ea2dc5c24cd8345dd66fb637f4bcf6", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6c509095d43c196d7cad086dc661baae1b3f5bf57954d7332947c7c820ca2a7c", + "regex": "." + }, + { + "hash": "84a317888474f2c798395b1e569b315c5f7968006a672684b9f72bf330b2bdca", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "df9403d7c9ee7e9f419a69ce1d34de81af959a281e0543b927af7a5aed0b1e2d", + "regex": "(?i)^https?\\:\\/\\/eqaghbqadghb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "8c3b92a3e2cf16a85fb14cf503fbf84ab18bc24a248aa080582dbdcfb0a4ae08", + "regex": "(?i)^https?\\:\\/\\/ehqewdgqs\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1389c39945f18398c88fefe139ebd45dbe52e1f389b5582b163967b53a3c86d4", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c8295e88afcfdbe0f78eb5171e65db08e2cdc5612082d2042370dee1d5057846", + "regex": "(?i)^https?\\:\\/\\/zscqacqa\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "25d622a7455fbe0f6db33c07e8719988c08b74b6a03a3f7c96fa25d625de32fb", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fa52329c3daee966434149528c9f32140a6d10152278284750277d794741dac3", + "regex": "(?i)^https?\\:\\/\\/eqaghbqadghb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "8ec1a53cbf9b8efbe0d2ab5b04de7225738aeba733c330c4dbfdcaf6af4e7979", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "b95a6e3b14ca454c2e21f384a5fcda283cec749bdb192ecb0c0e019f2fd88a21", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "578ccf4ae3696df10323d8fb0e20b889e37edd56162298f1598aa15ec5d01782", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kVpfpH(?:\\?|$)" + }, + { + "hash": "7c5341c20815a69a128986d063671eb0d448a575d2c9f0f1e3f23ff63ea49cba", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7150af0ae921792c41092f5bb16e98b409d5c16cb2ead914cf608e4b9f8d0ed2", + "regex": "(?i)^https?\\:\\/\\/zscqacqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "702a23cc4942ea9b179f30d5f20d209b6f04e865bda15372de0305405765420f", + "regex": "." + }, + { + "hash": "b3a51235efce37ed9f82a34b1e084e9187a3f5b2fa42e605be546a5924f371dd", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0afb41060a56bbf628c1b5197179a141c2cf043896a53351806fcdc71096b2ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "8fb244e9c7c74cc604b8bd89fd568fcb1733b1f91092ad46d6da839db82fb63f", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "437d32d59d7b26648f44e6c65dd1ba9efdea995eea7794d65bf0ec84012ce486", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "5f99e9addf7191236c0489d4975e72c4437def7bea07a51c50d244a4b6f74d0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6003[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "44edcfefd49a4d0a6d50a437ecd85c31e2797a04726b25a3d5916cecc3231f43", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "8f7a1525628fa0fa0873c4bb677e44543ce194630405ad52c632dca4feca11df", + "regex": "." + }, + { + "hash": "a324b3503b15b7e5ef3a9fd2db976cfd79e066fb9b9a89741a41585f08e82e26", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "85cc2c5a19d300fc8c4a05cc56640a03aa0f6bf507b4aca15b141db991c638d3", + "regex": "." + }, + { + "hash": "914386c14b4376f4e842757c719bf7088868c991f448bff935db20b55915f2d6", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a27dbcbfbab6037bd2c4ec7b15902737fbb28dd870fb8499b52d42c27f4096f6", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "89b4eaa7700a6b1bda6814f07231f2b88ec35129f0d1f07dc80af7b83fa46d77", + "regex": "." + }, + { + "hash": "87940531f062483e352b35ca6bf8418d72025dbfdc0485d2490a2fefe2fbf89c", + "regex": "." + }, + { + "hash": "50d4bd544990e8bf8b668c781a13f5c62d34cecebae8a38977e0bbf6f334a05a", + "regex": "." + }, + { + "hash": "02d2ecc26a87555a6fbafe17f9673abae5f975db173f6f2c78685feff3633189", + "regex": "(?i)^https?\\:\\/\\/hotreelhubonline\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "5bac73016c7e9f24f956c9c4fd0e0c9ed8823d08604e381e3efaf226f48402f7", + "regex": "(?i)^https?\\:\\/\\/bafybeihqyyrnhbu2q4nynkb6z4ygb6xdw7k35laqtmkecefhz6ukdpvxfi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "1c5a67367b3c673def43a70be8f5c047116ecace8e451994b0d703ea5544e363", + "regex": "(?i)^https?\\:\\/\\/hotreelhubonline\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6aa970e24088a36783bea1ff95bdd720d5c5cb7ee60c8b326bb62d4607d361c0", + "regex": "(?i)^https?\\:\\/\\/hbsqzrhbnsz\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?44529641\\-67b4\\-4e92\\-ac19\\-b199886e7068\\=$" + }, + { + "hash": "4bcbb07e6ed9c3279c3248ae45b16d33a87f5f9d60e0d25c9ed1deb9243a0553", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b81d14fead9654a8ada7a134a1895f1d9f22e718800f175fdcaf7460c7acb407", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2ce28a10e67cfa62526ad066800101db12b81dd3a791db488f48a55dc8121b2e", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "cd3d7d8398c7853e38c5bb85d063768dc160b9d28b24b470564bad0d6060b17f", + "regex": "(?i)^https?\\:\\/\\/hgqedwgbqewdhg\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "3171ec98ae89ce2638d13f9875023ad3161ced4aa3f95a447e3f9bf710d50d78", + "regex": "." + }, + { + "hash": "09424b3a263a18182e9e5c2c4fb73520d2b52a8e33b9a8cc227f9cc1adbbf766", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "17989115b85909f8a468063ffec0c432161d59bea17d57729683314c5a39c289", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cf254aa4becc0ab92b06dbb1cc4ef652dcb4ef162a097bcec820bb06580645ce", + "regex": "." + }, + { + "hash": "a68fe2ccb69054b222f197e58cae7a04528f938fb0d5df55ca4dd9dc1c144e4e", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "94a92f25d7d6d856da01671186b43fff511c84fb1141624878125908dc277687", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "46bca931446f20cabf100ba90f05287058b864353c239f85f8b166301258eebe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zutejine[\\/\\\\]+potoya[\\/\\\\]+pojego[\\/\\\\]+index\\.php\\?rpclk\\=GvEXRYBOPBmn69l1I0AiW\\%2BaCojCzZEMqF4NQk5Y2\\%2BevVar1qrAvj\\%2Fsljgq1hwvGiy0RCa9KXTBnKmyBGcPXeTujE\\%2BPe3R2GogpJkn\\%2FztW6UNFjlSmNoZellSn6Yt1JjKf3fagJmu1QBInc7eX3O0Vjlna6UKIF\\%2BklfAwm2mHlq0s2FVBEqulmSez8blkdOmk7Gdp8ZTxu\\%2B4swpvNh7YGiG1TOs05yLdeWylACmmpU7H45XSn3NnoR1o8MRzGuS3tIP4\\%2BC2U0jkwKrBChzX1bN18cidvQ\\%2BCeueWYU\\%2BXF616FeAwjbKWsXOv2c2IugbDm1PtbUTmn8EZt74JlXWBWfAuJIoGsTblbxwMpHFXzmk43wYdVIJQp0GY9UuhcMiaYwPz4ko8EtbE89Nfod6B9hLN35L6T0oFdHyBmFu1GRYnvI2jVvkaSPJVGGAYmk\\%2BK8EJR29FXWYsGhhNUk1c0y2bSpX9GbhQAcg5I\\%2BOrCHRgCTeCRRMkqri5F7a1U38DAyCvc\\%2Bcn14FJPtXWmDHxX\\%2BpSWuQ3QEXWA0fFQ3h1BZWhjC4sInTBozstWoejDOoHG0j2Vd14IFTppk8gB0ZFFvSUKkImGyp9RPJ5a36KhnMaBEpxAnu7cSiaYv425ZYrsbwoLK\\%2F67dOPTV3H0sneicltwxHfb3WI2N4lIYSFsLEayVt0qgS\\%2BxNAKEEo2L2v\\%2FQwa2u4IwixtgNoZ34dDbKQXP1uLge106R6pk8Uc33Gjbt1A4wsljxOYtVHEBj\\%2FkdBqwg09KD4Kjh2wzj7o0Maqj1lrvSMKuaseqKwPV2H4cVF1wjPpFZwFUTbPrvuJYrUdYLlHvUDxvk6EsZr5FnrpN6tzxKnCcXUDMZ\\%2BBin2j5d7Wc6mf18EHW8g6ciJAA10ubXC8f2pPfDH0k7EqrcAiaEsMLwncftnUeBH78VBqUge6UwixxmKuq43LtlUjReEhRVXa0ig22fC8OHVQ5XGLT\\%2B9GinxBs4LvYWGzwnBNz7FNANz5Y5EVhdQeihdItqDVT8Jn4yTf0FRA1bX\\%2F3Eewojq\\%2BgEqM44\\%2FqiJsV8uPDc0oSrpN\\%2BRZqNab8HMcpxRSUomcGvEkVYAnFTz\\%2BTaTq2Jy0T0n3xcY8hDaO5LLjJRqxyAuZYthqK\\%2FfRs6xt8KBCZo0Zcha9OW\\%2BiaaTAE3SUo2lHgwCIN5YpnkOWFUxG\\%2F6kAKpSrLZXFLQOf0whqQZoW5rNH5Ge0FOaZJ8X4nenyDQUnOWKjDZj5dmpzRP6UjLirX\\%2FDR5qm0llYEQRLpi9BCY2Mig6\\%2Bybl\\%2FfyQUeywOe3E9x\\%2FgfJ4QBjiDJnvoc1o0VV1WpsozzCcpYASbSFi4MrCB\\%2BEuN8dLvf115RoXdJlYDwM1CO0gRZZUn\\%2FU2Rql5qj1bxySO5zEFEkfij6Iqiibqwgrzf4d5DvGkO3m3\\%2F2VpR84LWvpRbecxs5OlG6GXhRGlNCNRTfRtY\\%2BSrKMOhuII2ywy2u\\%2BUa\\%2Bhk4gyhN8Y\\%2FEyF1GHtLLK4ibYr08SFC\\%2BVzUrjUHCwylc95KruqUmqID7gjOjJMCVWne\\%2BmTIfg5NJIuKTuf37x\\%2BKWUiVlhJ5mQ01xX8A4FYvsJ4KxPvL2G0KQ\\%3D\\%3D\\%3A\\%3A0f951b81842cefeef2e3e66725edd523\\&p\\=5KhCZ9Dfl1tvdu\\%2BfW2it\\%3A\\%3A305a42864d078ff7371dd5f2bf35139a$" + }, + { + "hash": "aff1d7bdc8f3c32dd06d0f5fa7caf291e8e2f300e21993f938cf8ed70c2c09b3", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e973d3f4ed7dc19e3a5e6ceb36120bc0f8d5034f8ede8a3de513f74aec32a25c", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "39b5abf85b230e2e03b03a6e8dfd9c2730f93c5a60c04fbbe2e018445f6c8530", + "regex": "." + }, + { + "hash": "a77355a61c27eba847f4ec5e232c3656fc1e827f2848cdb5d2790a3a90bb266c", + "regex": "(?i)^https?\\:\\/\\/netidsfsdkf\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "59437f3d7a3eeba839c7c0dd7471f4e6a94fa029e6e718741f325917679894e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+loginsumump" + }, + { + "hash": "2feaaed9e96b2d37acbba1b3e0c077a4028e400d2f5957d3611ddfac33d31aaf", + "regex": "." + }, + { + "hash": "c9306c65d5ff46653068d37ed2d5b26942b384b0f606e70709970910ccc48aad", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b846093e3d154a519c84170ccf9a9ef0f3ada2031998ab1e0bff524cca780e3f", + "regex": "." + }, + { + "hash": "4715415811bce34822585ab2b3536ac8ebd443b3d014061813e855f90bf8e4c8", + "regex": "." + }, + { + "hash": "212b25f67790e269ba08e12dc29260b32f790c4963db99c4e03ccc1c61a789f0", + "regex": "(?i)^https?\\:\\/\\/qedgqedg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e4847c3e60685f4a32aefe03c9dd0ce6f9095f23ac87a6e31e596921e6fa1bb4", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "96e45451b1c9b928bde69bd35b036bfec77c38db16712df9b6553dceccd5a0f3", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "d3b7fbc5ba125b8dd14b874f49ac2dc230119ef90b92ede785b5ca9e3a827819", + "regex": "(?i)^https?\\:\\/\\/groupwhtssapmorocco\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "de9ad995fba2f65b4226c520fd59153d933e3d7d1584aedf9b33c07dd4d12175", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "474a2fd00fc563d1e050b462f8df49c7c4890ae223e43dc5c82ca7d9a340fac6", + "regex": "." + }, + { + "hash": "e2cc396485e61737ed73f9ea68f3e5de10ed5b9aab934d696ae032b56abe3d6c", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0e0078eae2aa4ee1ea4e7c094577216ad489febae515e1d21e3a4352712fb2e7", + "regex": "." + }, + { + "hash": "919df4d02df6820268f169dd28558f686ddba5c9f7bf07d6612c7183fb75d759", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard" + }, + { + "hash": "77925a6f1ab7a6ca6c641572bb9250d2eda58561d27169a8ebe4e1342454fd97", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+trackandtrace(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "57d0238acf732fdf15289c68fbe7ea9d2eac64520ef189cb50ba3929a49353fd", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "cecc0757652cd1813967e06be20ea7657897ec9549b36345c2868b414a98b296", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8b0c8efd809aa8ac07b52da74e90bb7dfa0b8e3e089ac3644b16ba467555840f", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "95c84c3ea0f743206e2d868b8719a7f45c6d4032f01a985a1766abab52212f91", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8b54b2b184809e9207e8bd1e9116ca0a96f54e92c76df5b34bd431f0befa8dac", + "regex": "(?i)^https?\\:\\/\\/eaqhgbaqehgbaq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "babf8844d2652f4f10f2bce8c7f6f7cfbeb1903c980d10dbfaba81d986662515", + "regex": "(?i)^https?\\:\\/\\/18956798961565\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "be5fbebe553fa915739fd93df1e00917967d0c430eea9517a70ec0b992e045e0", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "2e00b0a0a182b532f7c8ac1e6d59e6a7b4bae6d86f7772d94b3b1d6a33eb0bfd", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d7ff2a9a4a59c42467a985711a294654e10294809691234e5afb48c483c1fc90", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7667ae0e331bf67ecb939bc248ede4225ae1ef87a4327c1544903a08d5424ae8", + "regex": "." + }, + { + "hash": "442f76704a1f1ad8fac9e63771c65791016798fb9cf35d955f66b2e31c7a0e6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e2b16bbcee271343acd019aed087a2c9432079d20872feb5d6d1bda887028e00", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "8bdd6d61771daabcd91ac3cea14b3fcce8f5c12663c19c0cd830b95933071e96", + "regex": "(?i)^https?\\:\\/\\/foodiecontestchampioning\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4e5aa2ec2ab7f66bfa294905355687a4338350a20384667c7e1a2ae7897a1358", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aU3V36[\\/\\\\]*\\?W4Wu3ge9cVTACzyH5c5RHhmY0tj0OD9Zr6NLcSUulWKmNEFFtwgIlu9jZWLYpOFRXuPRF7DwCO9yCfSCW3Si6QXYi4YPPPXij2jg3Dvn6LJs9VBcL3iCLClCdfyiOt2NVlfBM6eNxaRmriFVVBZMoECu3xDfSaI9nGveFwV1Js$" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lg6ii6(?:\\?|$)" + }, + { + "hash": "c7bd2ca35c60db834d3532fbce4e3e605d2c9d0ca751f19edb1f6b2310ed56df", + "regex": "." + }, + { + "hash": "c919d84c44e954081fd416c9d055418676ecc9a1d547e2d4d631779eca858aae", + "regex": "(?i)^https?\\:\\/\\/clipchiconline\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "10150cc2ec20a54829ddf86f67978f7f554a6f5991c33790ef7b97db7bb67e55", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8454864224cbc26c7b464f35900f8454d033daaea419c2988ddeedb46de02f58", + "regex": "(?i)^https?\\:\\/\\/qedgqedg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "95adc9a13b970c819572bfedf3027f2e2a535a660d7ead85a68e1fcc8d78d007", + "regex": "." + }, + { + "hash": "869478e49b53d2a00b71c11292bb9cac019e8f1bf516521e9cc7da4ead3efff9", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pgvfck(?:\\?|$)" + }, + { + "hash": "afb61208b8f3032cf605f347dee95113f7c0530d4b6e575009f4cd7d5791c12e", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0507b17234e12ac3173f444a17c88d9ccf1a1b95281fd23188e84eb35f3c0c86", + "regex": "." + }, + { + "hash": "37a569ae6bbe18076e1ec7fa6399ad9d3bb87a694b6d0f56f15078ec5e4c0d79", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "554c913d114e1e010854a3676c5483aba926de183874039f1ad4b4cb59d4ab80", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "5ab3e8a3ecedc1c047e27e00a190fb567ebbd751c0870c9692fad28f5d21ef36", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "30db98f17623dbb13e168640f750f2126d23e1bf796b53e6ebac237586b3f3f7", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "aa031d38679440aa261c0ddf766dc58fbce5f62edcf4f3196ec26b7b9e91c86f", + "regex": "(?i)^https?\\:\\/\\/18956798961565\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b400585984a0ac22c76c68be65d3e5475040ef6b8c1f012ce34628e3d5c88767", + "regex": "." + }, + { + "hash": "4e0c072cbc9ae0e7064ff1a71cb7323de66c07c0e49c600447e08c7014fa2bd8", + "regex": "(?i)^https?\\:\\/\\/togelsingapurapools\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "b2ad3950f349ecefc4315b97b38d81cc7583f5cb18757680d53cc90402c217b6", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "615770c948740970e4e752d51f980b23c9f83f2f33be195d9de4e9e4c7f603c9", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "962bf3fd52662d9357729d0633b3ce758d03badeb6f0df3bd0628854addb3a63", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "137f1c0ebd3671b32a58ec41a3924eaa839368d35321feec1c7d2e531ac2349c", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7b86e15ae583f36e5c55acbe645095b2d872cd3ab0d557a00f40f8f808e1217e", + "regex": "." + }, + { + "hash": "f5d3f1b0deecf3fc1ed9bea8d473af946d8aafc3bf9dbe12d5e3a45298ea930e", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "de74dd782aad56455ccc3c66d93f546256a16c653e9acda3f430a8bc94607e5d", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "35f7a692e1c8bf9f36001aec98410978598e65f7395310c653aaab0ae9b3ac9c", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d436d4dfe6e0a31305c332563e3fece18942157557b0688f977fc5a591a5151e", + "regex": "(?i)^https?\\:\\/\\/qdhgbqhb\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bd38ab26546dc5c98511711462c076a58fc1152c093ab26d512973b092f6609a", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "72a63e1f379af6b40e6e9602588da3e83e02218f21f3c00fc3cd582ba74fe03c", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d13c9e7e8b44041d39cc4e8673c5d837463341c23a7f911154bbbeb9564b8a82", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ab711f8cf115d2dc3377052066cd4dc8cf4ce9b39a545f4c35b7bb022d8a040a", + "regex": "." + }, + { + "hash": "1e43d3a66c024dadfb475db206ba0a360859b1e163f96dac69f7cab0f08bedf2", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "317d550ef1c518a1b3f5d1ead2f68a74e9991db85bd6524ef763c244e9f70d34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0a3d372957115b9fec2288456facf4311a754e400aa0beec8d67c9dd7bf5a4bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+user\\.html(?:\\?|$)" + }, + { + "hash": "5a20ad6079c0d7072a8cc76cbbcc3e9f5a96cddfac57b50dac6da589eaa44061", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "65a8742f5575ce6e5ed26a9f869bcd2a592543b369f4af7f9246949134d87453", + "regex": "(?i)^https?\\:\\/\\/18956798961565\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "17645b92263ff0e0157277e4f259484a0df7ccc3ae952eb52a50e38f533652bd", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8356f3e8eea188dcefff1fe7997014e1c54f9f3464b7eff9fd41844b71a39e7e", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "26562f57f28379d89351e42545e0edd8a43c06cddd526cb77ce3252af19cd8bf", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0d63483ad3b02e56056ef1c7d131418e732f8704c69c8e182c9b86aba2280bab", + "regex": "(?i)^https?\\:\\/\\/qdhgbqhb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5f2e47c4d2ec7febc0b74ea35f38b33033455990e7623bce5f3e4113ea2f76a5", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2c17c380d393f0d80a8ea68e609f86ad35cff33bd47aa417966b04b979fb7ec7", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "bca28a57f131bba289bb24e4e846d44c136293465899266a4b7dc0a1fa29b6f9", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4846f5f5a90b46292d1ad37356618645a1388248a63d4d81f5fd1dc57922481a", + "regex": "." + }, + { + "hash": "317deabbca86e36e92b7868938dfddd2d7a125063354ff74982bff052ccf5af6", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "172e85f4948987f8f5bf282359fac8c6f52cf341b417b45a11d88ea8b7acf434", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "674ae1a932da8b868d3acf8942d32c48f9416c15a8515890dcadbe905060450e", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c08f823cc7ef756326833a17592e76a4aa70d3b972e869f9e752fea92bf9efce", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d8a437d5ae8cecced1b2ed988a8059114beed9549c9fe368be505b56f38e9e1e", + "regex": "(?i)^https?\\:\\/\\/groupwhtssapmorocco\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "21e1cdfeab2bf7d667e390498f01186d922e9325ed989f6c000fda23bc2658d3", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "9019d9cdafca6d31a8087da7357af3f425f62652a72b06344aefbf61127a2a2c", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "993c09f724c7843b0ca17609bd2dabf274771eee9824e78c35fb2c57bf6a48cf", + "regex": "." + }, + { + "hash": "b23e0b61bbc8d8adbfc95b91fbeac634b68d168488f6f7bb0f41523cf991416f", + "regex": "(?i)^https?\\:\\/\\/plum\\-binder\\-6795\\.typedream\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "4e5aa2ec2ab7f66bfa294905355687a4338350a20384667c7e1a2ae7897a1358", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cXs8e(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8ce5e49e8fc2669a1591770c0d7e1894c532c70e28d587aab5cfd48eebc57ab", + "regex": "." + }, + { + "hash": "639600bfc605d60f90fb90bac1bd8ac049d34ce4fc6fb983f69acda4c351b36c", + "regex": "(?i)^https?\\:\\/\\/vexonilar\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "de9ad995fba2f65b4226c520fd59153d933e3d7d1584aedf9b33c07dd4d12175", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "65753e16fa487397f6cc8811d94fc2e518f640b6c210866f031a37e55176110b", + "regex": "." + }, + { + "hash": "2db12910c60fb54a70b1133cb2f57a5abd60e38e5813b45fa0ee33bb131c4a45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "0ef2728d0f3429507f94def5a8fa00b1ae31de48b8e60776c41f2c4e55d13875", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "1aa58b4f3f1c2e3cd515136b9dd7f868bd11dadd38ceecf2781e10b4a895afa8", + "regex": "(?i)^https?\\:\\/\\/groupwhtssapmorocco\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "54862b866abdfaa3d11291e54642d46562e1d077521d75edc4b2a509b6612794", + "regex": "." + }, + { + "hash": "99baebef352dc86cfa9e4414f0f732468ef7f79c68b37af8ce470937ee88334e", + "regex": "." + }, + { + "hash": "16d245d439bd595595b7d1b50221f9a3db09c807986775d217be7fb42f3c00b7", + "regex": "(?i)^https?\\:\\/\\/ehqewdgqs\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "53645707e5a74c4200d6013f49ace33b300f07f4d425b43f8f0a4e6ddb32418a", + "regex": "." + }, + { + "hash": "9ad579546a6b0a4e3dfc3df5742202bf54d80e775bd675714fdfacaf7a2ce7ff", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "696735d13ecc0352d5b4ddfd3dbae3c38ea4d96d3ed0ca8be41c4070b51304d0", + "regex": "(?i)^https?\\:\\/\\/qaegqaedgxq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8e7c48fb530e1e999fca80b8e189ebe35b36f01f47ac3c2b121f69605458ba25", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e810320005f00d293db16035d811e114f406657f5e9d6ce3b5dba4cb0241c112", + "regex": "." + }, + { + "hash": "4f082510382676974cd4ebc5c31cddb4ba01c277b639fb1de360fa72de8f8a3c", + "regex": "." + }, + { + "hash": "bd0e7451a8c5cc7dca426a62b3e26f307924af203361f031f7dab03845a7d3f0", + "regex": "(?i)^https?\\:\\/\\/hdsrtrstyyfugryyryiookverdyiihyreybu\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4a2dadfd12fa0f395a8221a45216b685e339c698fffa81abe76afc5cfa93efb6", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "50853d5be0763b00034ae31d0912a05e9c273371ee954ac33394e7592e1799fa", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "559081047deb3969df1ec28d086f9ba851b9ac03836f27862a4f86534513804f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "a8d0225343fef38ea7b506688e69e05c03bd2e621b7c78c54dd03fbd2a04ed6c", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "0d07fa3de4ceca9b980dde6c9d622d89f246ecfc1b6bee731bfcb36af2c66eed", + "regex": "." + }, + { + "hash": "65e7918727ed63d8e1e615f7b0083227e12570b644e6a5b8cf0f67b3dabba718", + "regex": "(?i)^https?\\:\\/\\/qadhgbqaed\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "15a80576efcf0cb400ed0486004340bb08a8774c1f6bb80bf877f399ce2bca61", + "regex": "(?i)^https?\\:\\/\\/hotreelhubonline\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7b8f09f0050b61845dcd762adf7704250fc15af0a5befe80e53f9113a7c89c18", + "regex": "(?i)^https?\\:\\/\\/mail\\.23\\-158\\-40\\-165\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b3aacc9d1bc0547f1c13c2695f1c717fd6d00d47cc238777749cf16e3e4c152f", + "regex": "(?i)^https?\\:\\/\\/5586998514654\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f62fed6baf1a9b79efd1e06e3c6ac52f6d5a1f66ab63ec279e6c94a3c404734a", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "03f2aa766eea22bf839e8defba6e22a57fe8dc4c0de67a32a13047483e60ba9a", + "regex": "." + }, + { + "hash": "15138262bc15518c9b6a88c07a5b0d3a0b042c024d43019b4502e7029b58d3f7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.zqz[\\/\\\\]+\\.qxq[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "36fd59c05829c44f9f8cd30ef89c5029c41c4fee1f62455054feb6e2a50e6155", + "regex": "." + }, + { + "hash": "c9b45d610c7c835dceffcc344ccbe1e34e04317d7686cbdaebe407607a6eacfb", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6a9df16a9d1f3979a42f8ed57dcb882398a081d4018574c3e665cd4feac943b4", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "112db5d1bb9b972b8ba3cad965b4e8bcd913aea2360a97db1e589c5eb6f5df3a", + "regex": "." + }, + { + "hash": "687d984c05f92ebd1ac94b641aaaea72215bcdca6966a87e7b7b76940665d2e3", + "regex": "." + }, + { + "hash": "41c64b58d4f8a963ffc8a5cf2f704e06ba2341d27b20894666acd9c5adfeb65f", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "dc75b6c6392459476ccde6004a3cef4c74c1a6b2ec8465e776a3d183b0de0e27", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a6414bdf50ad98352d77826845b6044dc51466dd804c8e7311d8cf3d902c176b", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "905f39b3ea6264fcf005cb280fe342b476e2ec891b2bb8ebf9c92147c94a20e3", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "6c8c89de69d140fcbbe2b66228e4e93d30dacf84b6896010ec4bb226c3d55fcc", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a691bcb811d95bef4bd2652c9edd7a99441d0f514635b80ca48ff746bfc30132", + "regex": "." + }, + { + "hash": "df4926eca3b30e00fdb551c1605916d1027b8c42c1300e9cf99883383bbb4160", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "f9217d8e1aa73a36806dfbb50cf3209210c23d94328d6e16c1c67885bb0e92a3", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "566a8776a8a6229fe2910fe166e1c819bfd12783a92472196f28a92caec16a50", + "regex": "(?i)^https?\\:\\/\\/ava\\.game\\.naver\\.com\\.sg1\\.tokodswara\\.my\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "c647e75634d10d114760c320dea9cfbcdd76a37ff19538dfb3395adb8af8a3f1", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "abb6dd219f0d5a1923e3d159421d5b3b461670030fef1730acf0e7b1ebb4ccba", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "67c4fb24f25a1cbb8ee25dcbd0a54b4174bc24b414a61b56256bddb87c0e23c9", + "regex": "(?i)^https?\\:\\/\\/qdhgbqhb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "7933de5d3a4f7cd3cc9919fea2ae8a0ff28e6e6288e62bcfbbfced729ba8b400", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "4805a71d3287933dd050b6bc62bd29c3af42ebc0b76367293921cfb9141d3196", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "780728be46bd1da0a08a1dc6b0fd66e9597826c49ce835fe8e83abcec354659f", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "079ca233ae50d0364510252b0eec891efaed237dafd55bb6ff8610e40f1b44f3", + "regex": "(?i)^https?\\:\\/\\/realdev2345\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "d285a6d3d9a9cb85d0771608bc26846570d0d31faead91ea1fc10bfa018f8f81", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cad73a518798474850d39889b99f2b22627162fa4b0a71bb119ec5c76c307712", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d6f192b1078be8f1204c61f97922e4870b3211160f62df803ce45d71682d11f3", + "regex": "(?i)^https?\\:\\/\\/hotreelhubonline\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3bf9b8be26b6327d296b7a4e9664009822fc680167a5013c987676eefc5d8245", + "regex": "(?i)^https?\\:\\/\\/telegranar\\.vip(?:\\:(?:80|443))?[\\/\\\\]+app(?:\\?|$)" + }, + { + "hash": "cf27cf36dcde08848e1ccb9d2a0220f30991f9cbf55d92b233dacf1d1daec7d7", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbdqa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "5759967270b18747b03c1f60c5ef8c89e8cd759d1cee1e4ed98e7fea071e83db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "161d77b6568302f8b40461f254ec6157308314d4f05e5d38e3c98bd585b1e597", + "regex": "(?i)^https?\\:\\/\\/564568915648\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3380eb2756e70e78cc45a0888be81e8410c923a2f6f61cce3d8d23d4d32ad487", + "regex": "(?i)^https?\\:\\/\\/eaqhgbaqehgbaq\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3d70fccb4400ca7f134bf3fe2b0444b095e544cdbbc9067de720c05251032c7d", + "regex": "(?i)^https?\\:\\/\\/qaehgbqadhbdqa\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "88f1dd960b4373634289011e1b2956e9a02e6bec3b475825ae17cd34ce430803", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a19de693940463fbc582aefc4c213c6897b997d97da2e8b12258cbd7fe8e03ae", + "regex": "." + }, + { + "hash": "d61a8606b3a3ae94fbf03d2637b9e11e467a1b3776b46ead4d7e235bec086427", + "regex": "." + }, + { + "hash": "a499f87017f62b3c7711927200880407b2eca7992327f9258dc3ab8a470f0855", + "regex": "(?i)^https?\\:\\/\\/eaqhgbaqehgbaq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "98503c6567e86afb65189e60238972acbc634e6ff1134cb4d4662c286285e10f", + "regex": "." + }, + { + "hash": "05e89f2b918d10181ed4249e46cf973cf79a3bec1ab8b1ee0899eac6ec0a590e", + "regex": "(?i)^https?\\:\\/\\/54684985611649\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e49db4321936524d947a0ec4e808a7d756b3add77b8f20ef21c73d0a94912c49", + "regex": "(?i)^https?\\:\\/\\/46546135461\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "93bf61c165af63b853b98a5baa815e9f76a07604473decdb729b89eb7f588ae7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+aXCVOnJc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a1c6913bb400e0399773b6d4bf808a73949bbd7a2729998d7ed30b31e4708b4", + "regex": "(?i)^https?\\:\\/\\/hgqedwgbqewdhg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d80618713b2fdffe2e997d221d4512e96f8172b86da038f56693eb7e63d94267", + "regex": "(?i)^https?\\:\\/\\/togelsingapurapools\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "4d937fa6792052fbaff3b4823c810fb64ff63dc0b666ac22399e28a7a629d6db", + "regex": "(?i)^https?\\:\\/\\/hgbaqehbgeqa\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a58a8c4de818c9c2ed3803ddbe7140a34596b38ff540c48f6c748d3ff0eda572", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:\\?|$)" + }, + { + "hash": "779b03a56f536163d6e9dcc979b6d4ed28b60dec33a94f2f460bfb0897cc238f", + "regex": "(?i)^https?\\:\\/\\/qedgqedg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4801d2b72014ef6cd13a3905c95e164179624fe3572d23cff19d8c637255ade4", + "regex": "." + }, + { + "hash": "29960020e0c03a93e6b3c15ef72289a9c3fb9bd207c310e886b44d8c16cf9567", + "regex": "(?i)^https?\\:\\/\\/offices356\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5e70c992a16c47030ba5a17d52b0745988e6bdf457fb6cfa81238ec0ddf6b444", + "regex": "." + }, + { + "hash": "49d1caa5ca6e0aa5d64dce3b1ee37d69b1a3c1548d484ee93ced90293fbf128d", + "regex": "." + }, + { + "hash": "49f6fbdce6406514c8782219e6aa3903e517cec95c33f21f99f180c359f5d020", + "regex": "." + }, + { + "hash": "a2261cd24047efa85af8cf955e12c320504cb27765f23375b1e8f841a3e347aa", + "regex": "(?i)^https?\\:\\/\\/pub\\-ab175af4620c4a9cbaf555a3b02305a5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b4d5e186a41e75b1103fce9c209af8e9f949e088da29404a8094912c2a8586a5", + "regex": "(?i)^https?\\:\\/\\/hgqedwgbqewdhg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "8cceb76ba7e26081a856859c4c1cf7b7c6c254872abfec6a200eb062d990e4df", + "regex": "(?i)^https?\\:\\/\\/eaqhgbaqehgbaq\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "279f415121474cb0617a945e448690ff31d1d88a60bd92e531c93548265fb3e1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "2390bb5e328030c97d73e7b24a566d1813d590ad737dcc75b228b29d087e03b8", + "regex": "." + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?5fbe2559\\-19ad\\-4a71\\-8d7e\\-d60232163aa7\\=$" + }, + { + "hash": "b66a55f2218a64a1962d560745a8bea8e8f5bb09ce17f79f5e848c904b72276a", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "07516768cea64ab8e0d4544b6b6d0d2577a9d861b5f01499e0c67bafc7250882", + "regex": "(?i)^https?\\:\\/\\/564568915648\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f7115671b9a81418fb6a8dafb70edf2586537a741acb41b96e82ffb8547942c0", + "regex": "." + }, + { + "hash": "1527cc87ce9ab8508bc6a2a5e40c74421d3cf532ebc812a228afdb97c58e9563", + "regex": "(?i)^https?\\:\\/\\/groupwhtssapmorocco\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f845c9576d868c28b10b5279b68f3108006cfabae33f39d09427759a1c582b92", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d9089f636e1ebe10157fc77b9ab9c1c8278ca1939602680729fc27b2fea3ef11", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqdagbh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "76317535c1fe1d3d1aaca129dc940f9b1b310e02febd6bcf717dd89ca802a452", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "cadf934517f7bbb56c0e54078b90e38e4e6dc0f2cb75ae251d3097e1e14aa6fb", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "5016d9867ae4903bc60e01cf4bb42001597544bd1f007e555c29f83fe6f0498d", + "regex": "(?i)^https?\\:\\/\\/qaegqaedgxq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f5aa848669cb2c3a95c697a539ecce1e0b565219389c52bb873697babf399ab3", + "regex": "." + }, + { + "hash": "774086d5215534b43b46e2dc66ba11ba9c84353bf4020dfdd76137214aa261e1", + "regex": "." + }, + { + "hash": "f8d19d0315272859fa6d27e9efaaee8c40bab4b0d59b0e25d47428444bd7f60a", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "e7490bdf122a90184644579ecbe62accfb38ff3d77d4ede0cb152ef0cd398ebb", + "regex": "." + }, + { + "hash": "9a939d0b9568a995b57c43d13521970123fe8f2665f778e7528ef7b5b5e77f18", + "regex": "(?i)^https?\\:\\/\\/clipchiconline\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7525038b07c96098fe5b6cae0e28b3a366cea41ac7536f97dded9f4b29816b8a", + "regex": "." + }, + { + "hash": "a4c73e6773c6970e175dd12f6fb35e34eba3526e02d012f4b08697bdf5e71085", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "158df627bb571e88d4a67d80c815002369d71eb528192d5e1bc218acd278f417", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "9d66f4dc0256bf61d27c67b5464444667f965386fecee4d1482b039f2d1d1d36", + "regex": "(?i)^https?\\:\\/\\/564568915648\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "45047d14608c45cb1d30b960f8f2c787c5b9892d08a464a55c7baa5d769d7209", + "regex": "." + }, + { + "hash": "f7282c37383db58e57627d4198dc0dbb1fd0be653b02d002e9b64b053c114dba", + "regex": "." + }, + { + "hash": "852e00498d719a111df57ae00fbbb73cfc475471adf5d8cb37430c7929becbad", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "09dc38c60b4c85527916a740be62e348d195d417a1559bf9a8beae176310dde1", + "regex": "." + }, + { + "hash": "621f3f173e41b9b60248b366f7bfca609c75b820fd6e8ff892297f5ca2e3b060", + "regex": "(?i)^https?\\:\\/\\/up\\.buck\\-miller\\.world(?:\\:(?:80|443))?[\\/\\\\]+in(?:\\?|$)" + }, + { + "hash": "cbcf6d426386e44720be2f0be0a4d66c8948b3a1761a3727f6b3daf9cee85496", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "49ba2b2972e1db3adb8a6173e7e503f82d7b5bd30ce4d10deffec2dbfceadc84", + "regex": "(?i)^https?\\:\\/\\/646465684899\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "08f5d523c979258079ae14e3d474117911b15c9e2d9d54de835d0743e839a5ba", + "regex": "(?i)^https?\\:\\/\\/qaeghqeaghbqa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "0692678affeda18bb2a324d5efcf9adb8f3f2d8d41af58f6ed41a10bb1719c71", + "regex": "(?i)^https?\\:\\/\\/om5edn\\.webwave\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6337b4153c943f86c8a5db05372caee71451dcacdc239fb0467e72c2df1bbda9", + "regex": "." + }, + { + "hash": "01c75e4842987e83a456f428a8ae0c401e6831f79c36caf0f4db21276ed324c2", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "42179a65b5a26a59c2427a6f324182e6d0d4341fff55bf7bcf583eed984e61f0", + "regex": "(?i)^https?\\:\\/\\/hrfshsfgv\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e802f38ba22a4129b812d696dfa30bc87c6cb9614b66170fe86afb6a8fc0bb11", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "59973ddb1d6215f74acf0e12aead930ec5cde5b5bcb2cfb8fbe0160d5c564af4", + "regex": "(?i)^https?\\:\\/\\/telenogd\\.cc(?:\\:(?:80|443))?[\\/\\\\]+app(?:\\?|$)" + }, + { + "hash": "e8fd8f976083a6aba5c55fc693f0c2f7f00ddc0a85e89cef3ff1aee6201d1c51", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "485ba7fdf95547ec5b6623af75626c50a584b4740c3a0b2c69660bc4bbb7b7ca", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3c64b8f7f9317b5887b53ac62035db862a46beb86d72d757f383753a0e30fc23", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "29fa3b1cf1648d427702ecc68de969fb4ee2d4c61176b66f0ad048ce033166f6", + "regex": "." + }, + { + "hash": "7f2e7f2abc3677f5ba4ada8b9086ef45aa78e852dece6f6d47ebcae0b66d9f90", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "bb37d6e2b370c74c203508258a118fd94d267d5eb67e6c0c27e7c7a35334b283", + "regex": "." + }, + { + "hash": "11eb95f4bd0731604e53d4afcc27d7868e6e6bb7db9b8f4b31b9639a8d9f6ec7", + "regex": "(?i)^https?\\:\\/\\/qadhgbqaed\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f5172e2bf8344c187ce05483d1adee6fd968012153adf4ce13ae95ce18c09ea5", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+15ep98(?:\\?|$)" + }, + { + "hash": "b8bfecea2d73e81e3647f4f008b87112f7e5b732abba970f954a4e11674d33e7", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f7b0387b079fff1d1047926096ebc4829eecfa1a76d28523367d6adf2b450077", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7d2bbe969202cf9e2c9e7362f43b38221046483aa4e3cd6c89eccf9fc63e593c", + "regex": "(?i)^https?\\:\\/\\/564568915648\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "6076a6779a1179670a2bb943cf6ce5f2c2b9d177ca7469e3327437a63d6a9c99", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "46d0c3465c94c539efd94f3886c5bbe322830bc375e594aaa28bf0e6048baa3d", + "regex": "(?i)^https?\\:\\/\\/amazon\\.wmbbrhbep\\.com\\%E2\\%88\\%95dypqrevq\\%E2\\%88\\%95gfvxmug\\%E2\\%88\\%95yjoikajwp\\@[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=uggnkhq\\.co\\.jp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bce89f7ddc341ade3f9b8673f535e973d3ceab233b457d3b85e40885d1a341ed", + "regex": "." + }, + { + "hash": "1e12161c1d1625b58c3d57f6877318f430235952b8f9824722400f0cad8ef495", + "regex": "(?i)^https?\\:\\/\\/1234567562356\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "665f17bb7835fe221791d796a401a087a911dfab67bb00575850b6d2e89486bc", + "regex": "." + }, + { + "hash": "cb8b5349beaf1239091d044c087ada6089ca9f1139c2afe86b12cc0b9c9ee29b", + "regex": "." + }, + { + "hash": "9456428c3fc12a8a717d5daecc84a29902414f44238fa8a2b1f63c64bcef4de9", + "regex": "." + }, + { + "hash": "621f3f173e41b9b60248b366f7bfca609c75b820fd6e8ff892297f5ca2e3b060", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vote\\?r9\\=18\\-80$" + }, + { + "hash": "44e05215099b8e49e4de0b413a6e1c79e883704b167a6150a44434b06228bd28", + "regex": "." + }, + { + "hash": "d07fbe54762dc2a779806829c03fdebfd2c0e23735cb1e4a2136653e1b6be9a9", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ccc02e99e0038b6e693529f1bc0cb2778c7d184bdeaf5f85588331769e7905dc", + "regex": "." + }, + { + "hash": "e1604bd712b8ae0836302beabdb83f869819f66a83a02787471fdd80df50586c", + "regex": "(?i)^https?\\:\\/\\/qaeghqeaghbqa\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "317f745662f94ff113305ee1844636c1122f64c1ccfd3e4e1eadb4a202ea470b", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "1990c5267f79d8440104eac157d5f952fb14e470b826faef444ba632ea3a2b3c", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "390ba7e71a7798e0631ef15217e673285bb02a0fe17bcb73884dcfc833fa0c3b", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0a4900793a3ae7625e0060dd1108f8f2274277271d544fb824908a2094f0fa07", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1dac7817fbc3a0ea5add558466aa7759e1e2e188561d27ffc7da59b1bf68ea51", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "dcc16cb3903357280f40582bd475e77ca354a6a31ad08269efe12415307eac7e", + "regex": "." + }, + { + "hash": "f6177a0d007fb6256962b8e71e2fb1d86c4bbabb9e78d01526a98e0b20e727ee", + "regex": "." + }, + { + "hash": "2803b8ddda02ed5f35a437cb0d6e65f718c4e9e476fb5d8a2a7445dae27ffccc", + "regex": "(?i)^https?\\:\\/\\/hgbeqdwghbeqd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "311a19fdbd799bb595b82ea5d8c16d46790d1476c18f75885fcba45ca0d9b836", + "regex": "(?i)^https?\\:\\/\\/4\\-72wysf\\.top(?:\\:(?:80|443))?[\\/\\\\]+co(?:\\?|$)" + }, + { + "hash": "f8972df7e9e7abc2c9b87017fc89a6657f2e5f9a59b9f417d077015a8fcbf1c7", + "regex": "." + }, + { + "hash": "de2ab47a8c0107944eeac2210cd6da52a78231c10ca276ef9576ac1eb1b33a4c", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0e7ef7ce91289ddaf37115c9c34f4d7304a99816460ebf7d6d1ceae03677c7b0", + "regex": "." + }, + { + "hash": "c1def41499fcb52c75a2c1135c90bf3f9da0d075a0639fb051c0844dbd09265b", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "11c09f856e0714b72f931d9a443160e0f06a1bd70ff18db83fd45e4399539717", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "60f4de4946abb7f1044d10c548ddf5776d04f5c145b7ca70899190604b499f79", + "regex": "(?i)^https?\\:\\/\\/aqehbgaqegh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "d5efaa3d2fee47afbe41cf4727a09b7b5fc1efabfb01731fa13ba398173b3d5d", + "regex": "(?i)^https?\\:\\/\\/46546135461\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "467ff644f79b0539fbea7f29f77ad160fbb5d4fb9977436da951b28dc9928ce9", + "regex": "(?i)^https?\\:\\/\\/togelsingapurapools\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "dd85820e144ca237e0692d3ae3541b9adff85442a3d91ac4b7fcc43cfc056dad", + "regex": "." + }, + { + "hash": "451a49dde24276402be4106358a7614a24f49c3b126ea6fbd004a2d4c0639578", + "regex": "(?i)^https?\\:\\/\\/hotreelhubonline\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "b5a54ebaafd4e644ecff8f5cea17f91a851ff90b0e509e6cda62c2ae27e6eea0", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ff5e9cf9b0b1cc43c6e1420c66d06e3f119e684e73f1385800bb14e62655cc54", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "063ac2e84d6e7cfbcd41fb9a0b096a237ac8a91cca035dfec939e1846b969c66", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "c4672c67f19b7baceb71cc10dda1d8306e56e6c3acd8429a43579065454af4df", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9d93b44c45183a547a8d51b9f55efd8cb4e70c375299e694e5aa7e1f18fd8e68", + "regex": "(?i)^https?\\:\\/\\/hotreelhubonline\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c383b44fa5e8533ae22a198258ef050dc0f7e20ee74056a6085a45721811083c", + "regex": "(?i)^https?\\:\\/\\/vefonirax\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fba8e811630a44bbe73bc86418d02b96035cdad9aebf7ea2290e75070dbb239f", + "regex": "." + }, + { + "hash": "89e7a9df1f06b0b60dc91a222418666f9bd26fc181583764232e1fd7e4c12625", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+contact\\.html(?:\\?|$)" + }, + { + "hash": "d73964e274abb6cb24f1a4920bc798888f44ce939e00cde2b09dd671365967bf", + "regex": "(?i)^https?\\:\\/\\/bafybeib3sbsyvzpq7prdhkclwng3uayftymzoywfd2d7stv55wrgq2er3q\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "f13321080d4b9cf550bc42cfe83187a43907d9f5926b59731d00875aba2ef1a4", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "da7afa1085df9edfa2feb738eef260f0eeca695b28528cd2e0e47d9be6cc6497", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ad6213ada4ff187ab300bac0f114813bab918a932b35de34861331ce97b9cbde", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a7f0a6dbb5922ac0dec767eb424291440a0e0049e7126044f98b8c7cf5f25bd8", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "50521e8bc2ac3ca24e4b9cb492e3b88c2395bed0afde8f4e388ef33c38fc40b5", + "regex": "(?i)^https?\\:\\/\\/qadhgbqaed\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d6993725adc5b92ae283e65687c04dc67ddc98451f6ae473f5855b04e517b3e6", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "aee035f97789feec6af7d73009d4e817a8576e727bfc345406612462ad4d5eb3", + "regex": "(?i)^https?\\:\\/\\/646465684899\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "d048d826ebc6b2e7f1846ef5020a06a60409c367b37db944a230ef06acac9068", + "regex": "(?i)^https?\\:\\/\\/qaegqaedgxq\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "09421df57c9a9690a3ff52411cfb28f0eca1167cbd1a8d0082279f983e030407", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b75b7ee1c57b155b9d6149b9feea9a090d4bae0c0051926f22f023c88e2647f3", + "regex": "." + }, + { + "hash": "21b5b64922fcfe96a59a0c89decbb0fe15f04b17651604773b72920966c25e15", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "4860088e3c9f207e758144404556d5cbcc325dcb9700410a0df3a1db5506b5d4", + "regex": "." + }, + { + "hash": "d3aa2262066e4baf1f1b294e5151f6da1b57961466e91b112779df09fb7a473d", + "regex": "." + }, + { + "hash": "697bf951a081efba22651b37133b9da36277b14efaaa50d6822fbcd994ac3b9b", + "regex": "." + }, + { + "hash": "f5da97711ab20deaa1e7a3ee12fe8d832dde439d3c67851905eb3662a5f1dd79", + "regex": "(?i)^https?\\:\\/\\/img023pdt45\\.s3\\.us\\-west\\-004\\.backblazeb2\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bef33e4e388f764ac9d033df440cfc35f2a637b5d890201789c182ef53f0e563", + "regex": "(?i)^https?\\:\\/\\/clipchiconline\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "39e281cccf2c9c84fb4acda3d623b4e88616f53b165a478576715ea79cc3daba", + "regex": "(?i)^https?\\:\\/\\/eqaghbqadghb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9f62af73ef126dae7f774ae8eec5e051616361aadded0b36ce84376a64ef8544", + "regex": "(?i)^https?\\:\\/\\/564613861596\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "af3a696fae96d334b75b3bc56ee069ee2948df5db3962071d679c2b4769b5c91", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "feec86a016168e05b05afd5ecd34b965916ee55a2b0b0520c7260dbd83a54cf1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "50372e5cee92e9f05cab6cb34ef4c8b45cdd45d6b75d918c258e919d4928f2c4", + "regex": "(?i)^https?\\:\\/\\/qtyhiwjy\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0a17d1e4138c1cdba71bc967ec0878fbac5691f424d04ee95eac44491a32131d", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "62e16a85b0b1f99da8ebee5eade6e18e58eaf1206e7a718273072ec0e72edbfe", + "regex": "(?i)^https?\\:\\/\\/togelsingapurapools\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "45a4114f98b3714796f35629f39c7669739c987739f3c28184d9709fe3d0ad4f", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "602b5ec86d7d0d112659f824947dd10ff84130d41f88398ccbcb0b24770044b3", + "regex": "(?i)^https?\\:\\/\\/ravolirae\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9fb60155b3f3a71b29f1b0bb349ac6a5b0cc4f229e2054f685f38a5fea1acbf0", + "regex": "(?i)^https?\\:\\/\\/5586998514654\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1f92ba80f5a1087bf88321c17ee01cb8d5a6a52394e731e84d6ad6318dadb2b1", + "regex": "(?i)^https?\\:\\/\\/ehqewdgqs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b82f291b9746498e829c69f5bc35599e5827e187aae27d681ecdaa491b5b34ff", + "regex": "(?i)^https?\\:\\/\\/bell\\-109793\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f87fce1b4c26a7728e89d81084a49adf0d245fa8e58b60443dada8a610ca6e28", + "regex": "." + }, + { + "hash": "ff5b3c59f4ef5c6c80cd4d3912edb9265d69b64a24c944e866a1e998f9bd4d40", + "regex": "(?i)^https?\\:\\/\\/ghbqedqdeh\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "d0dd1e8c9e9fd2f5c07b6c8075f0c2633d539ebb4facb03b8073005328a8a736", + "regex": "(?i)^https?\\:\\/\\/646465684899\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e73a5cb3bc32ad44f5424b4ef8efcbd021eedf0387c8b9dd2ac242c00d89234b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1dt0wj(?:\\?|$)" + }, + { + "hash": "134cbceaec62a8e9a24822bf4b691ba4a5a1c3c7b2fd1c87a97ef014ba50864b", + "regex": "(?i)^https?\\:\\/\\/qgfeqagx\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "06a135af8f642ebaf5aa40c8b040998891688965d09173e7f233197cd5600834", + "regex": "(?i)^https?\\:\\/\\/qaeghqeaghbqa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "65050c32d3b5f3a8ac788c17fd470a8cfe582f7cea20a56141c0b285d1288e46", + "regex": "(?i)^https?\\:\\/\\/ehqewdgqs\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0ef123f4cf912b47776ee275eca5b4ec47cb810733f33eb089263759521a6eb5", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "83d1b8faef3e7877c33be5de15499d1f822f55a7482fc05e2f0293cc9277924f", + "regex": "(?i)^https?\\:\\/\\/qeadghbqedhb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0d4cf1d93a61311f0f745a0a40dbff81f0df3adf0d46d0585c2ea618d62951ac", + "regex": "(?i)^https?\\:\\/\\/gbhqeadgbh\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c7fa53fea7907ac903095f4820c63f452173e8eb30f3b533eb34e33b1a54ae80", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "11819595813be245500bb85df042755c9381f5382e694cb4d42902d6702ad424", + "regex": "." + }, + { + "hash": "172e85f4948987f8f5bf282359fac8c6f52cf341b417b45a11d88ea8b7acf434", + "regex": "(?i)^https?\\:\\/\\/telegrpg\\.vip(?:\\:(?:80|443))?[\\/\\\\]+app(?:\\?|$)" + }, + { + "hash": "7409d34f7aae8fbe8a6d44ed385182d5c7fa05873270a287498f9e0965f3ec51", + "regex": "(?i)^https?\\:\\/\\/qaeghqeaghbqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4d46af17d13811530bd76291fae5a7583928f4058055d62dd85fe2bb847058e2", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1ce36676a8075d1e71281b990e338936943d04b9463778c4cc71b7d1baadaaf8", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9db197b7d3036dea4fe768f7fceb4e1fc5cb0c4caf24be4b019c6e80cd9f6eb0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+co(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b55dd6adec45a3cc5e284ab6a862c63bb7097a410572886cc8d8bb26b289fbac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5d191853bf6caae53343f6dd1d5cd6ae68460b23735cadd9ee497e4d3f8cc577", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "bd0e32673fe784d8b07f7a06a4becda2c00bb16a204b5961f51b1a1b6f89497b", + "regex": "(?i)^https?\\:\\/\\/hbsqzrhbnsz\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ae3c82299f8ecda8f10dbdfd63e3edd6ff660313d376f3cd03a2065354f7e300", + "regex": "." + }, + { + "hash": "3c6b4d1d16fccfaa4a19e704f81370c02457197442199c2bb6c2752e959a8cfd", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0f3056932679216a4586744aa2c415b06ff781205d34911f9a4dee926f9e6e1d", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "4a7dbb9af8f6e287fe086b080ef5b40af4d7a81eb077dab8e2299193171409f2", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e41aa49881932b77711431950df7f451a9d986d448d369786cb65b776dfe79cb", + "regex": "(?i)^https?\\:\\/\\/qadhgbqaed\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e6b270389cd09d54d470979d8f6803f153c6b96b01189b3abed6c01bcfffaea7", + "regex": "(?i)^https?\\:\\/\\/46546135461\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "b22c3a1a416572159cbd3db9b38a1d4ce721871678aa2ee6e811e423304f3ad9", + "regex": "." + }, + { + "hash": "c5586793bf7e6de66f7f48934ea52203519b84b66724eb2284a2cc732597eccc", + "regex": "." + }, + { + "hash": "7fcbbbe26a196ef64e807b1c59c97b46d3621e8b07414dbda4ade79445eb7981", + "regex": "." + }, + { + "hash": "fa8a97d6833fd83a37569af6dd457e2c138551203bf05dc8aa4ff6779db5eec6", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "727bdaceb7f2876d17b6387264fef29d592230cfb8dfefa85169fff83c9ef396", + "regex": "." + }, + { + "hash": "16c593de027f0a585ed4bcd2782824fef14d6576cf481d537055a7a86162161c", + "regex": "(?i)^https?\\:\\/\\/free\\-8790\\-robux\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c78bb9f469815c418e6fa6b63cbcd4af124ba021cfc96230bc7709d114a1de29", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "37270207aad0e727fb53eef546851666736aadac2a833f60905455e95dda06c9", + "regex": "(?i)^https?\\:\\/\\/clipchiconline\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "56fd564032ecd68a388399ec42ec03ee5d1fbc29edc87704770d575ed36aaef6", + "regex": "(?i)^https?\\:\\/\\/estaefeda\\.click(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "3a553811ea709fe00196d63396cf0d774c8d8eb1c265328c702bad3b8a1d4464", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "5f99b71b3c2912c048ded9ab0b11f7e7d72332e7e35ac407bb173cad144b7be7", + "regex": "." + }, + { + "hash": "128bad05e7748935853fbd22aa9560f55b8160f89f489b3cb5e2dc149cc00332", + "regex": "." + }, + { + "hash": "140ed8d54e91443ba60e38a41b3b91f55708ad895d29ef3d9354a201bda3419d", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "28672cf374ed392dafd6d21b1e4338314a71725d678e3eeec868c96f26ff8463", + "regex": "." + }, + { + "hash": "cd66c750817a31fbcc41da0d773d3e8b882dc77df24b79ba72efa1ff45240994", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8818d88a4088e9dbe26537b29c429773f4dd9ca66216e9fb61582f8772e08f72", + "regex": "." + }, + { + "hash": "fb1b7af026661c7263bd5fe5e0e3f05cdeaeab2067d1879fbac1a277766e94e9", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a1a6fe8d5429856b94398f7f99dc732c0878bf46bb84b4ffc3d5edc5ca94671a", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "06928aa23a478c8b39e133765f095eb1469f1302771ad2ba03bdf81f37d0924c", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "252c5691192d9df989f3fb79d37d21146dc546bbc5c9be17b62db776cd072d3b", + "regex": "(?i)^https?\\:\\/\\/qehgqedg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "93e189713fdbee28bbfb224bb529edffaac1d2ad1398605ce24615a719f7c781", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fcc6aec19d470055958370361773be19b459f17efd3cfb33af2d914033fa2c1c", + "regex": "(?i)^https?\\:\\/\\/qdhgbqhb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "d5f70655128f2a6136a09d171099b75a070123b42005adb894daf450a06d2b90", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c785823a5a0ecb00c2b44ec12bbc1741ae5160e1fa40ad4121f4ba1652ee34bf", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d4143bf8bea6374c98c9f7033f3967d6576b15b2c424175d0b9164eda74aa94c", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "6d0b9d50f26932c4ec6fb3745027e4281b8b795a302126043fbed3d4df4efc9c", + "regex": "(?i)^https?\\:\\/\\/videomorocco18sexo\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "e000b0944ac3d91474863f421f471d156c845b0cdb5de6a50e2e2acb4a43ecc2", + "regex": "(?i)^https?\\:\\/\\/hrfshsfgv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d5310b154d96dad0b29547e9148016c0b1c801ab696b5db0efd94b98a0ddc8d1", + "regex": "(?i)^https?\\:\\/\\/8546541456159\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "6852ddb686a5a79931220864adb4be660781325afbb7e9a046debc56181afadd", + "regex": "(?i)^https?\\:\\/\\/qeaghbeqahbd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "4cd398313ef544ecfa55b2eba831f9fb6aef8eceef230113917e0bd9d7ccd88f", + "regex": "(?i)^https?\\:\\/\\/hgqedwgbqewdhg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0b3018c97f044122b5150e953271e0aa14145889033210d6999b938e7a6b09d8", + "regex": "(?i)^https?\\:\\/\\/qaerghq\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "68f55fa07ca62368eb951652693df89520c9be07c4e7090f604ae568c487a67c", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2996851114a9c84579e03e64dc9cc34a8401289583c82784306f6272aae9b77c", + "regex": "(?i)^https?\\:\\/\\/ptt\\-agov\\.ink(?:\\:(?:80|443))?[\\/\\\\]+PTT" + }, + { + "hash": "8feef6c16d3685a4cb719a59896392b977ca83dfc0d8727b7203ca3a6be2304b", + "regex": "." + }, + { + "hash": "5f99e9addf7191236c0489d4975e72c4437def7bea07a51c50d244a4b6f74d0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6003[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6cf054d8c4055ead1aab026ab664b30edfc2a6f8fb3083491e167dc3af8d9ac2", + "regex": "(?i)^https?\\:\\/\\/makemoneyhamzousse\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "983e1e9538bd792701ced2c541652dd0ce4a9def1d7723e5ea9c5bdeb68d8406", + "regex": "(?i)^https?\\:\\/\\/aqegaqehgb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "50853fb6d5c2f465b1f47a1d76dff90a1195236af10ec42355400e3656b6e501", + "regex": "(?i)^https?\\:\\/\\/65146156469516\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "b8a378c14ef37ffe5cd8d6ff1ed963a553d50e96c858ce21148edde6903de5d0", + "regex": "(?i)^https?\\:\\/\\/hgqedgqed\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "01e016c23e2dad194065bd8ca535175b8ca05f599e24a51a614d07c2e62636ae", + "regex": "(?i)^https?\\:\\/\\/qaehgbqeadhb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "64c97150b35c3501d4e75314f3f87868e0a87807dcad879aaeb08861d685f05f", + "regex": "(?i)^https?\\:\\/\\/gabenla\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a66e2a7d3ab6241e35f406abbc8217723a84e822a87dc4b0b088071bbf184d78", + "regex": "(?i)^https?\\:\\/\\/hgbqedghbqed\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "c2c8435b18a6863e5c3f11ece090f6f7c24c80dd82404f72ae0ed62f1dec7c3d", + "regex": "(?i)^https?\\:\\/\\/hdsrtrstyyfugryyryiookverdyiihyreybu\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "20e11c39aa50f1c143d4ccc870bff2a5ec73c01437d43f85741ff867026a447c", + "regex": "." + }, + { + "hash": "e76d2ed80a16fe6862f2f4d5127eb07d052f6c6bc9ce41dc10e199235429ef8b", + "regex": "(?i)^https?\\:\\/\\/qaehgbqahbdq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b28a6fe9054d67fb2a017d68df089f23e107f4aae3e515ecb4891f0a4f86264b", + "regex": "(?i)^https?\\:\\/\\/qeadghbqedhb\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "39f0705a725b33d7ae47f8fc8f8849eeba06009921add91ead2048bebc85f6d9", + "regex": "." + }, + { + "hash": "54c9414f7f4869ccf101642ce229fdeecd589754e12da99045d2b3eff16cd564", + "regex": "(?i)^https?\\:\\/\\/zscqacqa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "6f0642faa0ff8544c9d9177bc42ea0b53eb9a52708abc6159b792f6155431584", + "regex": "(?i)^https?\\:\\/\\/trendyclipinsider\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "cf0cab1ab560c869d334362fe4302be7c2ddf469360b05817eb568ec08b939e0", + "regex": "(?i)^https?\\:\\/\\/qhrfqgedqg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "76091066df82da9767dbf4798ed14873dd201b0b26683479cab90f2e8c0732e6", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "74fc6e48bbeb5557453f0f3a56a02c628b11991b707e3197f2bc681c8fe8e7c3", + "regex": "(?i)^https?\\:\\/\\/zscqacqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3033c4499649a1a78d116e3f81afb0737b328ce2414b5598003be7e1f1778608", + "regex": "(?i)^https?\\:\\/\\/eqgdaqdahbgqda\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "4893916ee8e05b02fb4a464c99dbdb0b3f9686a8509a0621c4d434e08b6ee21f", + "regex": "." + }, + { + "hash": "4198046657cd95b97a7aeeba9701a03dfc387a57c0d6bcac7554bd2ebcaa224f", + "regex": "(?i)^https?\\:\\/\\/qadhbgdqa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "d36675b03319708c667829fb8618f9da4fae78b9ee60e5123028e1111eeef480", + "regex": "(?i)^https?\\:\\/\\/hrfshsfgv\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "983681f159683a78de04d96a8adc210f13d846d435942407864ede1d38ba1450", + "regex": "(?i)^https?\\:\\/\\/trendyclipsinsider\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "2f4fd7cbb7107c96e8fc0de30db6f87c45843484e32fbae5be35b20a36177a14", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqahg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "cec1ca8db80ec7a70e1fb6ce12adb8df58d2c9482729781f870fa76ea3600918", + "regex": "(?i)^https?\\:\\/\\/groupwhtssapmorocco\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8fe29ca3a282c1905c2eeb116bd3c955e02ec1b11e6b4dd28591099204934d65", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+themes[\\/\\\\]+elementor[\\/\\\\]+login" + }, + { + "hash": "86dd241e0de44b80a317d1e172f7d8549cfd465544b6546b787dee4ce8dc42c2", + "regex": "." + }, + { + "hash": "53221daeccb95b5781bf8209cde4c3701cdcf8632c6d8c2db706566f884eb8ab", + "regex": "(?i)^https?\\:\\/\\/edgrqahgb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "6b67a7d1ad774f4ba1d1eaeea7c3c4063ae0da56c14acb1299070a5d1f3c4725", + "regex": "(?i)^https?\\:\\/\\/qedgqedg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "3e3260b803999efe6d6b95dc6f0051040400e2eb2688d62918cbbc01a5ab2709", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "21adf9e61afe0d41afbb80cd02e0cc26cf442b4173dfcf3d69adcf77e08108ca", + "regex": "(?i)^https?\\:\\/\\/65149615986165\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "bc4b427252cf9800919bc72ea7829869509dcb435d3f1428540bc2334c9f2f33", + "regex": "." + }, + { + "hash": "f8000a424318bf89f547339cf5ab40610294d62da09a4945fbccaf5d1199d1be", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d3f63d7237441651700d14ade67c5cd71de90b5271e5e5097037dc29af697a46", + "regex": "(?i)^https?\\:\\/\\/564568915648\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "aa0eda641a853ac9c29c4f0b84d8bad00263063357c5a1bf16f89f4fa8d9649f", + "regex": "(?i)^https?\\:\\/\\/eqghbqahgb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cb16ef19c3fac219f9ee0f530f0683125fe360be96750a978570d49d3ebfc7d5", + "regex": "." + }, + { + "hash": "64ef00b2053c2845ce6ca2d5330c70516495c191c4453ce0b787df599add63fb", + "regex": "(?i)^https?\\:\\/\\/gheqraghqehg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "93bf61c165af63b853b98a5baa815e9f76a07604473decdb729b89eb7f588ae7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NHEHMZYANNODGL43573334495282287589767l7k2u94dve2iewh4\\?ITBZFPQOGCQJYVDDEVGI9JDGSIN48KV5IY0DH$" + }, + { + "hash": "3bf9b8be26b6327d296b7a4e9664009822fc680167a5013c987676eefc5d8245", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7f86b67f2c35abd09c85758af086ad867ce9e2435270218136ecf9e9726e90b5", + "regex": "." + }, + { + "hash": "90a95493f39c7df0cf63630fff29d472fe51178ea81cc51cc1236c7d107f3e9a", + "regex": "(?i)^https?\\:\\/\\/qaeghqeaghbqa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "194d3859b7428e8ee0030d3783602bc0efa85ad346e47cd8abfa05d4a4ec1683", + "regex": "(?i)^https?\\:\\/\\/goody\\-y24\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "788d2b91dc2b941c31114da78358b2948030d4d49a062fbbb201c94241c2c26f", + "regex": "." + }, + { + "hash": "2a8ce61a70b5ffdd5d5b7fa404e44f813925ef943106343cf938b5efd0ad1959", + "regex": "(?i)^https?\\:\\/\\/togelsingapurapools\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6ee94b6614e392db6bc903e8a20fc95f8e2a8e540d5df54c2baf669682755b11", + "regex": "(?i)^https?\\:\\/\\/qaeghbeqahbaqe\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "5192125cb5adc00073add3f9f20bc40259c956bdd7b34192739091c5944473a7", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a9beb694b28303f31d3cb22c4b38353319ad0da18e32930020c2bab218081182", + "regex": "." + }, + { + "hash": "6cb97ff8f3603b044db610f1cc979ceeaf2aa8f89513c420ea48cd3011493222", + "regex": "(?i)^https?\\:\\/\\/hdsrtrstyyfugryyryiookverdyiihyreybu\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c22daa601c094677bb09632d11a3d38142e81ddab67f69b48098bff97ddc9c21", + "regex": "(?i)^https?\\:\\/\\/clicktrendyvid\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "425c6ded99855f77bdc19e76e46391e5040a5314e2a17f15de3ef56ce39969f7", + "regex": "(?i)^https?\\:\\/\\/5586998514654\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "a9251c18f9f1ff3760cb266fd660e75afb55c2be382a23995d06e14ea1a88b2c", + "regex": "(?i)^https?\\:\\/\\/rehqgbdqfg\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "beaa8755e8ea636e9b37b2f189e6672c76d3eb81eeebce3ae92218c5d213b276", + "regex": "(?i)^https?\\:\\/\\/togelsingapurapools\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c22ccde95b660357930b060d6e7bebe599be23c0ac62e377a645191d7dde6524", + "regex": "(?i)^https?\\:\\/\\/18956798961565\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "823f70a524f028cad4ca594da825dd30c8eae36d9e743c920516a65fac04a7d2", + "regex": "." + }, + { + "hash": "de1a6270bb2bf9e2e7ba8919992e3623f44cb877ee0141c4e3f6aa32fe9cdc04", + "regex": "(?i)^https?\\:\\/\\/sms2\\-esl\\-org\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "42a7d6e26f3b0265d07595f3f611fd2a23b4a0c35d9226e95b6293a60f243b5d", + "regex": "(?i)^https?\\:\\/\\/5586998514654\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "411bbdd83deee4de947b93fc9b3aebc5cc97ca3e40541b561b6f09d74aadb915", + "regex": "(?i)^https?\\:\\/\\/pub\\-eda900fe370543e4b9aa817c09102c34\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "559081047deb3969df1ec28d086f9ba851b9ac03836f27862a4f86534513804f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "66fab29b088ddadfd125aa305b1ae3ca2ae57ff0d0f449f6fea15c94b25780f4", + "regex": "(?i)^https?\\:\\/\\/hrfshsfgv\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "15411756a2842626dcfbcfe75af8647cc171da17c86a34f247f207cd2001be8e", + "regex": "(?i)^https?\\:\\/\\/groupwhtssapmorocco\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "a49bbffe910365d965b6a2dcf156bc0579d5e769042822a1d9f159d8aeaa37b3", + "regex": "(?i)^https?\\:\\/\\/gqdghbqda\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2f61b653161c75b6973c0ed96543083080f7b78cb2e89851da3bdce3a2f1bc19", + "regex": "." + }, + { + "hash": "4d174101ac74a260fce4e48bd9238f5f1f464e741b0ed57c138051ecb4d9a12f", + "regex": "." + }, + { + "hash": "2116d6262bcd5950522067acae7b1aa8169364a9097bc20aa22143b505d04ab5", + "regex": "(?i)^https?\\:\\/\\/irantomvkigeps\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a67cba13328831c82b07a62e18cbec6617ed2f3c2a48d3148add6012378c1ee8", + "regex": "." + }, + { + "hash": "56a5c68b22418a170aaa0c8d891ba517df8f5468041462b28597e93a5f118469", + "regex": "(?i)^https?\\:\\/\\/leodeadshinexxnzn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "af1257825beafe711c4937e808d41f0657a890df723d48117e63454195fbff46", + "regex": "." + }, + { + "hash": "0caced7f82f61263d0134a226a27980d320373d7206516dbc8c6be0c776ba943", + "regex": "." + }, + { + "hash": "f5fe9c0d0a8ddcc801d100e9942373df4e24cd22e5a7d5c9e8102d7e5078d00c", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5a8753b2602abb5173af18a7248a0c533c73205bcc949b88ecff8e1a2dc0ad61", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "230ce014531e965c2c2e32435973398f2a6344c7e47cad4230ac510fbb24fc3f", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "e1ea03936c71b0221b26f95e038684c54e3fb7499cb0534588d891c9e686c3c3", + "regex": "(?i)^https?\\:\\/\\/leodeadshinexxnzn\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8f82278bdd6ee62ad8e5e83718f7000a31d647a03d56f361127ba8ca3d2ca2d3", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3fd4358ffed05d84b50db96ac2ee48b0494766df26f77bd999d3758783e49c29", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "658d50b8f051650ce813ae2329ed7c12353306973c58248495a94529951a96c0", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5f9929b443c51b2d40d5038038eef8cd020d1b5b776539662dd4b5cff4c040ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ubb\\-bg\\-17765" + }, + { + "hash": "15829b91f93267d1ceac99360d2e99d7e67b2843bee2ebed197b4a3367a56cb7", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fccb6e5c626ca5f0686930dfde04a6e8d9476da089c7d29056f1583709390d3b", + "regex": "(?i)^https?\\:\\/\\/sappermainsggmk\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "01ec536725db31b39fd9702666ad71697f8e6025b1f41fdef56482c90a3806ea", + "regex": "(?i)^https?\\:\\/\\/linkertuxfqvur\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "6f9024886461c0473356445a64f5e8f958348cd1b5de01b71cf311cd838d89fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\.html" + }, + { + "hash": "b01dfea07871e42e1d7ec12a356e340d91851a6ba51dd97f796d0817ad41a9d9", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fd2e3d8694b0ce648e67749f14ead799d2750d3149d564afdfdba0d11825af6b", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "04d53caea03b586d415ff749772d4c11e374fae1bb691820066c97665ae1dcb3", + "regex": "(?i)^https?\\:\\/\\/monkundefinedwbndslx\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "756f1bcd6ebf59a8c73d113d9f5ae5effc395cf8fc9f597075c347dd1a939e1c", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d243bccb6e9c75e5bc5859266e1ffb2f61e662e1e689b656c83d05848952c228", + "regex": "(?i)^https?\\:\\/\\/fashmaksimivanovolnpqea\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "26ca87072f1d204fb21bf579aacfb2edfdd5697ebd9713f471544060d9f38894", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r\\=mistedragn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7455e4d6f6613b867a5207e42e3ed06d662c0ceee9170b2f6b7f25c0032f1768", + "regex": "(?i)^https?\\:\\/\\/hrthbsx\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "cefca434129c7e944717c9e686dafa76a0096776a0d3d9f75a4c35fc8757e25f", + "regex": "." + }, + { + "hash": "5824b54568d42f205406461dcc135b1e2dd4cdae2b807a1fc3ea8304b834a0b4", + "regex": "(?i)^https?\\:\\/\\/pub\\-241c6108bad14ee4a4f474e305b951f2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d8967b58a4296d2bc9112c38f9fdbff1d4644383b0c8582176d3eb756a9179a7", + "regex": "." + }, + { + "hash": "e786dbeed384f79efc30b5e703412825c0916d4ee36926bc8b8b62db14347ad6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8c99929a40185f82fed465ebf77921d68d2e18fda30daeeb733d47cf2e94484e", + "regex": "(?i)^https?\\:\\/\\/www\\.determined\\-blackburn\\.67\\-23\\-166\\-125\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "9a0bc2bca3244d0faca6de79acecbd85ff24a905a101a04d18ec14abcbe9d521", + "regex": "." + }, + { + "hash": "55a38c359ba44e03d715a21d751217e11bf0e516959e6b945c3b25187d842262", + "regex": "(?i)^https?\\:\\/\\/identifiez\\-vous6856o305o96056996otpo50y000xw\\.yolasite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d7ff43792888bcfa04388f55a2fbd452ec657e9a4b99cf74677f1e380ebe5de5", + "regex": "." + }, + { + "hash": "328807d87065a2c348acc53469a3ced41b5bd96afdc2d9ad03e7129d9c399fd8", + "regex": "(?i)^https?\\:\\/\\/eleganceextravaganzaqueens\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3bb8a883088b08a525c618ab80a76c7ef16f0bc55e4d67bc25c08b343dd008e5", + "regex": "(?i)^https?\\:\\/\\/eleganceextravaganzaqueens\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "da22e76e0db53c11c9a5bd3a4849c6e3ba93fdf0beec6d4852803f1e44461729", + "regex": "." + }, + { + "hash": "1b892c51e2e25a1e980e529b89d2b72924ebb736511f63745cee0398b3905be1", + "regex": "(?i)^https?\\:\\/\\/pub\\-637d30dbff0f440fa3398853dc159a6f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "626d2e5160645f42fe2a1b8fd3a8a6471ede20d3dab589cb5f2b12ccab225788", + "regex": "." + }, + { + "hash": "f7bbd90422b736db68058c01b7cacca6ec2f49b471ce0b2bb08da838cbf8c78a", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e1b8da46095d0a817795f52bbe33bc10cea8dc253de0e7e02a54ff541116eb62", + "regex": "(?i)^https?\\:\\/\\/antaigouvfr\\-emailpaie24\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "c90ae38ca96a5a5c8e452aff87de6c71ef6189a0da705d534c8e4f5587dbc5af", + "regex": "." + }, + { + "hash": "7be7b4a895eff4d7b806f56a8add127183b3005425d514b750066d53cb2cc8f3", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5e9bae3ea5d1d91077a9edf1653172353c1aaf94830ed40fc92f4e085680bce8", + "regex": "." + }, + { + "hash": "034f112136a2653412cfe77f13bdf46634068ecca8824f38545f05a7fbb0ed59", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "440ce883ba85252b5b838122966a9822f177016808459afa0eae53a618186d88", + "regex": "(?i)^https?\\:\\/\\/wwwdotamazoncommytv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "fb9df730050eb8babfa2797dea3747276b1982b5b7a7414b76426430b395ba8f", + "regex": "(?i)^https?\\:\\/\\/dsajghdjkawwcns\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "9012452428b9bd0deb1f25ac097f4df203501b1cdc2e754233a696c215d774e7", + "regex": "(?i)^https?\\:\\/\\/signin3\\.account\\.applink\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "201675b3d392d096fa059d80d5b7d42eb486363f79194e60143137838baeebc8", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d386ca7c683a72f2ff5e80971bff92d45813a9bc26a099b99836d9c38b06e5ea", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "64227fb15daad21a7c7c50921e7371805dfc30cd86769abe85d98443437f734a", + "regex": "(?i)^https?\\:\\/\\/dsvsgarregcsraeg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1419f7a01d55d5c11c6e5b70fc4e7e2dd253894eea7fe0185c894874bdf865b0", + "regex": "(?i)^https?\\:\\/\\/pub\\-e54d62190d724970acb2bdc22645f2b4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5ef2f66447b331ddbfa27b07f25225a56d8686add3a79ae664a5aea93df29a05", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bfee55a251f3332cc7e1a04c008590af29de9755f3e83e9472da1f19f2fb80c6", + "regex": "(?i)^https?\\:\\/\\/linkertuxfqvur\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7e8857ab9f58add09ff03bda3227961152944308c18887f40ab793fd564491d0", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "841f0bb994a1f3ef70635861fa98bcdacebe6d69b942f1b8fc58a8cf324ab7bf", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1738f22f2e7f711bdba31508c1def3c098924fca2e784f379dc48f80bca3190d", + "regex": "(?i)^https?\\:\\/\\/qp66aa\\.com\\:8989(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cfe7e916c2ebd25f6a73c830e972be844ceadc7687d6e0552ce9b1daba97b3e9", + "regex": "(?i)^https?\\:\\/\\/monesjamoabkal\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0f01c4e7971e291cf4eff411be42cf4d77e0ed6b61dc87c2b733af068610b11c", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "64d1c86d5f1d7213a52cb661da34cee18abd462eac7967f56365cfa43d6f4a32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r\\=mistedragn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a1d89a4ce2ac0d7d14fa88cd6796432beab3c28c82c56966c35853abe93b7570", + "regex": "." + }, + { + "hash": "9012452428b9bd0deb1f25ac097f4df203501b1cdc2e754233a696c215d774e7", + "regex": "(?i)^https?\\:\\/\\/www\\.signin3\\.account\\.applink\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d972ec972731d32f7560382405b3bbf455b9e1c96858e5887838f71c5491866b", + "regex": "(?i)^https?\\:\\/\\/www\\.ektaconsulting\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f2272792373bffcf8379f0359604235e91238957210f68305b3da92fb0a35c3a", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "490023a340ab1560d4903d9ee6cb940e0e289b97d5bb379bb129890f64c8af69", + "regex": "(?i)^https?\\:\\/\\/monkundefinedwbndslx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ae53e90d0ae7c04fd32cad7c50ae64558db6847fcf0281f83f6002394e83837c", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f086e540706b37c91595704f7a5680b36d331188d1ceb85c07354de490d27e42", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "cdbfa53553e7ec05f4513e5dc2c3027fb2ca08ffb3e049a749165a39515bbc36", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "ebba8644b563ccc279bfe1bf41d52f4a4f4572777e51a5141ceb96c0bfe8e757", + "regex": "." + }, + { + "hash": "8bdd57e39b6368ef827dbc32437c61190d15fe0413809b6dbbe13c07379d3be3", + "regex": "(?i)^https?\\:\\/\\/fashionbrandffp\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "311a42da49a0c4220f06be2f90c2e647565946ee82885c75327474129ab3aec8", + "regex": "(?i)^https?\\:\\/\\/tmnibanaalimanga\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "dcba54e5829e1bc62d7b6de5b3e1eefd92ca6cd480cbb29d7a2c14771f883cd7", + "regex": "." + }, + { + "hash": "e1a5f351e071349a73a18894f672a6d21729bb1e87514195c7f5e982c300b351", + "regex": "(?i)^https?\\:\\/\\/monesoabkal\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "28bfa7f52fb1ba8fa5d0b215eb79583857ef87ce064dc2d8139038bae6cabf09", + "regex": "(?i)^https?\\:\\/\\/modhopmfiprlx\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9fa3e05067c9c90c467c5fbfe2eb2f718c7030d3b106bb5b239f93a83c3f0830", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e3e46b344e31f4b243f6f5da505943520a300cd031b9450c3b25c92967078d30", + "regex": "." + }, + { + "hash": "6a177c1ab8df15020314dc82965a5dea23e139931b4da3442d41c5334ceb757c", + "regex": "(?i)^https?\\:\\/\\/frgvdzshbstr\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "e3cde3c8612ee26f8958e1c6e9d4cf76305ac49fefa1a75fd44769d3dbe000b6", + "regex": "." + }, + { + "hash": "d7a74d05be5b8b6647d3f25b139b3940f252a81e65096f259898ccdc153cf9e3", + "regex": "." + }, + { + "hash": "f6e956adf3af874399d6afdfd59e5e0d16dfa7b1a2545016270bb8d59155c194", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "6b45ea995439d1adaecd3899dc60ed6726e4d422504c992396be1923e94a47b7", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "533a7c8650d2578d69f454560ac6222e590597b99840853aed08399cbdcc1045", + "regex": "." + }, + { + "hash": "3f5f77e73a15a8f03dacdd402c82fa2884b1bace68dc2b979af7734feb85e149", + "regex": "(?i)^https?\\:\\/\\/irantomvkigeps\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b1998d5cd25e02cf901f6f2cf6809650832827c78ae5667ffe24aa3b3734a7e3", + "regex": "." + }, + { + "hash": "cf27c241df70424061a2cc0b3a392e7a36d6f6f386944ff8fe7951aadf016316", + "regex": "(?i)^https?\\:\\/\\/antaigouvfr\\-emailpaie24\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "247294e78a4337eba5778484ebab2ff94358cd20fef89068c44ef695bd1dede8", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e96c3131e275926ff371a5ab14f4e14b3769a4b26f12c46200bbe12921e71e18", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6d898338d823b0a985b2a134ee02a7b6c58ea96fecd7c279e136f04b14ea1420", + "regex": "(?i)^https?\\:\\/\\/blackblancaokkeijo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "67a8604a6d7f5d54bcba63d426065e8e04ea5910c03f991f14eea6ef916dab2f", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d8b2a6410d4187d76d7fbeb5d579c8cc4b641b07d02b66d549e62f5b18571144", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e7689b5294f1fafeaa447efd3d1affe1b3e534cc685b5eca8fdbfd101d35b5ba", + "regex": "." + }, + { + "hash": "dfbeb9a86d61b181395b7bbd9dcb5556ded42f703bc2e73ba6dde3b503b21e3c", + "regex": "(?i)^https?\\:\\/\\/dsvsgarregcsraeg\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "924f96e477a599ed1099b0b732a771c62089a2015e45cc56d1baec8c8f5ec32c", + "regex": "." + }, + { + "hash": "eebf9fff1b84acd4e905a59077923952a92a0b776841983ad0d02757c0f37a61", + "regex": "(?i)^https?\\:\\/\\/dianannblackcherrygevk\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0925b1fd2c1c3aba8ca990ddfdd8575ccdbefc6530a42d6b3cd968debdf45a92", + "regex": "." + }, + { + "hash": "edb2d4d0a160c8c5d0e15ecf7d52cf35f4f75be3a6fef38701482c93d5e2a1e3", + "regex": "(?i)^https?\\:\\/\\/tmnibanaalimanga\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f0861daf7c81ff167ac1f1751dcae934f8a42fa993ac6d537b82b9ab446536be", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "1b3fdd9ed79502feb1ebdac70779322322f5e6195eb21ffe53860903d9fe3d3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?s1gincsv_$" + }, + { + "hash": "c90ee3c06d5b9467778e644995a100bae4e58633468f9ebf1ef2e2881cc0822f", + "regex": "." + }, + { + "hash": "d35d983eefdcaabfb82776caebd00bfb63ee9e2ee31ec180999065b0f853c37b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-2214689O13" + }, + { + "hash": "b6c3e01c0d68768ed55bc33e27fcc1a2b3587ffdde64fcecc09fae0f43acbbfe", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b876ecd040383af12927ddbd89bdc5e2e7634483dd32a08c660930aa0163a9f7", + "regex": "(?i)^https?\\:\\/\\/gatlahbalaha\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f895a34856e0831b89411ec4c187d734bca0e3ddf5671173a66b6c28b355a669", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a2b66c3ca810ead871d6d0f8a3ba6a77c8cd5c290a1bca122f0234d3474cd53b", + "regex": "(?i)^https?\\:\\/\\/blackblancaokkeijo\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5a8753b2602abb5173af18a7248a0c533c73205bcc949b88ecff8e1a2dc0ad61", + "regex": "(?i)^https?\\:\\/\\/verf\\-amazn\\-prime\\.24\\-199\\-126\\-137\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1b3fdd9ed79502feb1ebdac70779322322f5e6195eb21ffe53860903d9fe3d3c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin" + }, + { + "hash": "2c5b4c60c8e508814760c4d0ee7f88e3b7e1a5096f567516737a8944306e5410", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e57de082578b9e0da8232bc002590f1dd7e373961d717208dfae844e69e490b7", + "regex": "." + }, + { + "hash": "9c115110302f079442893271332956277d50414f89d2a349bfd7f6ce53bf91be", + "regex": "(?i)^https?\\:\\/\\/monesoabkal\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a390ec68231a6936b52fd307188130cdccbbd8e8f588f6c593dfa5a70a8e3057", + "regex": "(?i)^https?\\:\\/\\/dsvsgarregcsraeg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ba60d0a6954063dbab73c8731dc423e5a2968686da78c35b840329829a2c8e3f", + "regex": "(?i)^https?\\:\\/\\/epicureanexcellencequest\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f3a1aa1f9da73fa9a9d4203165bb68646b528e74149c0a37ae94e1654431c0ab", + "regex": "(?i)^https?\\:\\/\\/jkhduysatewwbshg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2ec2a1f5c1f55302750b276d55afd359f9b72c73f1ae16d90b6cc59dc84463c8", + "regex": "(?i)^https?\\:\\/\\/instagram50630\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "37eab1ab14e0ab8c72bb61d6311d45ccb238df818d10dfe9a3c52859dba89ee2", + "regex": "." + }, + { + "hash": "41c64feec2397b666a334074d9275d19828d9c38360b28d08c4d1e013f053442", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "9fa327b02736073acff7d9f43739480bc7ce83bb697ada889ea79964bbc20e45", + "regex": "(?i)^https?\\:\\/\\/galjyalmmab\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f6e9f8ee31d7f1c2c9dbb74dedc34bf43cc9aeeae935b876de2439e0145ec921", + "regex": "." + }, + { + "hash": "451c5e50751ab8497815b46f45947b9150c06c626e367cf2f9df32d6acdb2f6c", + "regex": "." + }, + { + "hash": "93ae3cf14fdd37fe02cd0fc2bf15d00bb0836c81ff3c1be0a087ca635be2aafc", + "regex": "." + }, + { + "hash": "82a8d979aaeff6aaa94c7b91340f18f217ca71436222bde35a9ffc0052c21387", + "regex": "." + }, + { + "hash": "1b3f82910cd753fe938158f2834c5e7e1dae5882d58635f49cf87bba131153fa", + "regex": "(?i)^https?\\:\\/\\/bafybeiarlu5xtwjvs4f5ozwvam7mwv22gudqgehj75s3pmgv3jnfr46qfm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "067dd8e796fb3a238236e240d72d8981c23f0f6b149ab3b4f456a9f24be25950", + "regex": "(?i)^https?\\:\\/\\/monkundefinedwbndslx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c470aaf771227bf148a764415650f6f9c0619a8ebee7e2ab633897e4b4e0ddda", + "regex": "." + }, + { + "hash": "5f2c1b7b35c262765f9c94dadcca174d2662714ee8d953282978ec30cc7c0ede", + "regex": "." + }, + { + "hash": "a0ac101eb243096a196bfa4eb9fa4d6670a269f04b937ea422b5d287ab8ba808", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "39f6bacb19f5d87972524beb5f90d1184ad9043f14c161df27ffe2eefcc186ab", + "regex": "(?i)^https?\\:\\/\\/pub\\-ce1f1d8eef18479785b40655bde46238\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ad048901d0f5e074933063de98f191ed1d94f727c4bc890daac3b6f2e233f759", + "regex": "." + }, + { + "hash": "1c399309c1ba318c56864ac1fe9005bb4e4297cf2579ab9bf4446f5280d848f3", + "regex": "." + }, + { + "hash": "0a22e30415e47829a695db7b04635c2811372655ef77e8298186f730ecb38b1d", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "4c35e2b505ffe1db9311a169cd9c3b30fbbfe1efa100fa0ec6ab45b1e3779dd8", + "regex": "(?i)^https?\\:\\/\\/wwwdotamazoncommytv\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "4235b122d41db1a85d5c32fc6690a175d3e8708776b2a4f20a61c3ed83f1962f", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "78472b329984791820e4b1c65d6cc1f855fd8d1dc4e6bbb4d277a45bc30ec714", + "regex": "." + }, + { + "hash": "04c484f096d01c61f47dc37cb8747ac3214d1392c777b2acdd749dca7c0c32f6", + "regex": "(?i)^https?\\:\\/\\/wavebinder\\-tideweaver\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "89d0bf6081e289301b32dd3e841447e20e2287755c31556b9f5ce5e627deba80", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f53c908912e2a6a02a6bae9ee64a25f8016aee3c0f9873b906d8700caaac6844", + "regex": "(?i)^https?\\:\\/\\/fghcfghjdgfjgjfjfgfgj\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4d2f7754dc75f45f458e805c16efc257fe69b9ee6991d844aaf542e682fe9d7f", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7d35ffc47383620f65e68793d0b053ef6a7fc56cc17223bfe22bd6a8f15d7f41", + "regex": "." + }, + { + "hash": "4741c9ac410c1f5a921164eaccc4b24c595571146fbfbcd605a332adeb9b7fbc", + "regex": "(?i)^https?\\:\\/\\/modhopmfiprlx\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "cdb0c8392a3722660d39a0e1ae9c447af2bca0ceb8ce231ce3656b88b65d5ba5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "221ee994cf212a65b33ccd2be09ba0b08aeb662d92f56553532f5ca23e291711", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "07c4f1eae5c4587535d7b2062e13b33d8ab1c2b942660c365f509968b6e487ce", + "regex": "." + }, + { + "hash": "805c259b5408c72fb2ac4592827ccc128ef2f67c7b70505a68c611ced8ae3450", + "regex": "(?i)^https?\\:\\/\\/monesoabkal\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9c75d0ae3ff055c6fa031e19ab01eb2b32656468c1f5bd0b074f1a13c9328a61", + "regex": "." + }, + { + "hash": "8ff84fdfb5c8f41bf70f9f072026d88bd48efcc3e93278c11161adac936dd219", + "regex": "." + }, + { + "hash": "cbaf8db393eeb6c88fb8d29280af8bc08193f29df829517d8e183e401e7d3cb4", + "regex": "." + }, + { + "hash": "4c4efbb9aece8e5b4b3f9b26dcf8c72357d17f9b6b6dd0f889efc6aca6f0c24f", + "regex": "(?i)^https?\\:\\/\\/instagram50630\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "279a1540feabf5f72c2898ecc2fda716e918a8688b18c67655fffa0e7fe16877", + "regex": "(?i)^https?\\:\\/\\/pub\\-2b894ade085f4baf93ae8d32a344c607\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "168d7b547c20e71aec926b91e57c423596ff4070492d232b02ea2794d955a8d5", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9b9e6ff54d1536af3ccdf5b4b44857bd1e45dbabd066aa591d30397b9f7ebf7f", + "regex": "." + }, + { + "hash": "a53e2a36d45a8ae243cbb3b4de92b87be8880b65d8773b021b742836be8fcc44", + "regex": "." + }, + { + "hash": "076cda200bc2ca93c6193594e504b765dd1e64ca315f27ee73fbb76800f492fc", + "regex": "(?i)^https?\\:\\/\\/frgvdzshbstr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "7e266c65d9871dcb9ba49aa796f27a09d9c557b104590c7a60b3069676d4f543", + "regex": "." + }, + { + "hash": "b06d0843a0e6de1c869a020dd17270a1b7eeb709e239a2e2fb92239deabcfcba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ubb\\-bg\\-66277" + }, + { + "hash": "fc56f90cd02759e0d8049171636b33d2c96ba1268afe20a901b0bededb1d292d", + "regex": "(?i)^https?\\:\\/\\/wwwdotamazoncommytv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "65e84d7c9b786982be86cac45203e161654b8359a098aae6c72ee627cf47c0f1", + "regex": "." + }, + { + "hash": "26ca87072f1d204fb21bf579aacfb2edfdd5697ebd9713f471544060d9f38894", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+r\\=mistedragn(?:\\?|$)" + }, + { + "hash": "ba61954d18377dbb1551045231068b52c57961e811af0c3b7ebd2e7009b5dd68", + "regex": "(?i)^https?\\:\\/\\/frgvdzshbstr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "313e5e9ca30b219faa2f534ec2b60ca106c4728bf0d2a19611c68a05fdbfe6da", + "regex": "." + }, + { + "hash": "184448b7d47adc085e31550a36e216c6340d88a7076f7c8dd43d15d1eb388559", + "regex": "(?i)^https?\\:\\/\\/galjyalmmab\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6c857bade94995b81a7aa4c92f3f3569fde9cee60028662c1e698277df5e319d", + "regex": "(?i)^https?\\:\\/\\/jkhduysatewwbshg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5027c5acfe3c94a71291a6c396065bfba7bbef83c9a87c8ba1d070fd342b2af2", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "30f98d74c9fd77f40b221803a66ab9cb4576b0ff49f86ede27a3796d4fddc939", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "222a702a6a4780cda4e5c9340840226f6249d7b1ce42de2fb88f6412200c23b3", + "regex": "(?i)^https?\\:\\/\\/instagram50630\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b277a410ef8ecb8f23b7641cac4295eff17564e53b62fe5dd4d23de14cf83971", + "regex": "(?i)^https?\\:\\/\\/fashionbrandffp\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5256ca8250718069caf0ea05ad600670142d82c4b8ccd40a68ae50041325d655", + "regex": "(?i)^https?\\:\\/\\/wwwdotamazoncommytv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "4d13de05fbe094bebec860b36de599a1cac9ad6a734e139af0f9b630c06b9f55", + "regex": "(?i)^https?\\:\\/\\/dsvsgarregcsraeg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2a41318f18252cd8a16d16aed166a96f8c85251c1de73ffcf6a4466bcbd37933", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "65c0747d032d7f506e77ea399b89992f323109e1bff0a0e37f0a837e719b6d96", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "875c0f464bab97569608704b9621f9cc0f6b8806aab70a9f1fa3b4e4664e7077", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3ec5d1eb812e22d6f488672a9785725a80284b8918335290b9995bda5eb9cf63", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8feec1278de9ad375b37305e2998ead0ed91c23cd37086a3e4f379766dad1f01", + "regex": "." + }, + { + "hash": "d1ed93c92fa930f34c62b421fff65864dc1dd509e3c8ab7e8633a46ad482bcfa", + "regex": "." + }, + { + "hash": "17d70a98dca728d42fe7b2b3f994bf0af90105f03080647fea0d83e198fe48e7", + "regex": "(?i)^https?\\:\\/\\/tmnibanaalimanga\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "eb75659785fdbcc59bf3a3206692dfa791439ff82fe0834e45799e9bfd78a0bc", + "regex": "." + }, + { + "hash": "ff90dd850ccf96078fcc1386a1c09cabbce8c9e61a32f7404610185137eb9301", + "regex": "(?i)^https?\\:\\/\\/monkundefinedwbndslx\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6b7731638c1f45a545a4e13931527cfc3d3424f0699aca2abf24fcffb6d641f6", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "fefb354cec5257d889779d518c4c962730dae20824bea0f43ae9642995a26ccc", + "regex": "(?i)^https?\\:\\/\\/servientregasf\\.click(?:\\:(?:80|443))?[\\/\\\\]+com(?:\\?|$)" + }, + { + "hash": "2613ed9a289213f93ad12a68bdbc5da28e46becb4f4e119adde4e7010c271e55", + "regex": "." + }, + { + "hash": "9ef833c93941db5200a6037db8e71c7ce6ef48b1421f8337318c493d56d3496b", + "regex": "." + }, + { + "hash": "67b90e69e4d2aece4364619e219f3cfad7e885e793d0351b65a35aa908acc7f8", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "0b278bea16ec5d2748648f213d2c8ee4180fd02c9a8e933f6a10c0789a7d5038", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "46f1a22b42235812e74bbf64a707375063d6a662bf59969b6200cb6cc6539edd", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "cfedcbfd5b82ab2b52aaba5f638d41e60b1eecd8c46d9614d5e7d38a2251d354", + "regex": "." + }, + { + "hash": "485b8399976b2f9f33fc2db5cb5b5199b9ee5869afc0c5d468d730827ea41c6b", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8df0ad95ac1820e5369329508e8fe0705a4482df843c8088d3ae2f7d149c0bad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hmy7p33n(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e2869c0ea0b175ecfaba95a75378b114590f477ad1e5a5f9796f10d91200797b", + "regex": "." + }, + { + "hash": "72a4eddacc4deb254d816a44037bf11f4182365636fcaca62953147c96811d33", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "cbe71787551e44ca2f7aeb1a3b07e23a38d2f965723a4936de20b0f224d33da4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.html(?:\\?|$)" + }, + { + "hash": "d0c80ac0624fe046fd29426fc343b010e56e799bd6df27df3bc339aebd54952e", + "regex": "(?i)^https?\\:\\/\\/pub\\-58486a03f92747839903f97f84ff326e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "80d5fb90e8734882fe8bc54fa2848eb6ccacff5492d3581e05836fcd4a405b50", + "regex": "." + }, + { + "hash": "13d2a806a98001a474930ffd5fe61503f55ddb5c2946399f83c015ad63349f61", + "regex": "(?i)^https?\\:\\/\\/fashionbrandffp\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e479546b2461d06d0554fd866b771f989e1320ff5dd5904d44ac2405d5591cb3", + "regex": "." + }, + { + "hash": "8dc37a990b68088a8dae50c8dbf5125b3021a5aabf128275c1f5a4c0c1d92565", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "cdf2d89c8a6f0cf61032b61fc7267faccbf119978a03a8d5660bedac7bbc9b67", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "398145c0b644faa3085154bd19e8166f529f7a9dcab9ac88b71dfe76f4e6f3c3", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "050300aee390ad452f946195858ddb5e770f757098ec9ab562ea4c3c4e56dbf0", + "regex": "." + }, + { + "hash": "e4b403e8af5af44b4b9f250ff33d91259802b02f21f2ba94d3c13404d23a77d3", + "regex": "(?i)^https?\\:\\/\\/ifsqjg\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "dfefb18ae1b6c86f98542c1ff9296786b1c8b4f2d1c530d7184aef56a4a2fb96", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df55b52faaa726f55bd11d584eab53afe52262c59e58f395ac93766a6042f953", + "regex": "." + }, + { + "hash": "593da459c725456a2db0a5a121181c9ca0f065d93b6d0aaf186872efa1ab8a34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "3ee795ddcfe386b40ee36645f54a93491766738abb8f01e86f4b499ecdbacf72", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a42e68b37ba93cd5f33f08df0a60dd0179773a3d3ef03f43198962c8a1e3e6bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business\\-pass\\-error(?:\\?|$)" + }, + { + "hash": "66df2a3164d0fb3bd00de40c873982fb10fb0e69792f6cdee90d9bc9ecbd0d4b", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "35f8df93064eaa8e49863473dfcc28b80ca551eedcfeb1ae4d7ae49b41140dae", + "regex": "(?i)^https?\\:\\/\\/leodeadshinexxnzn\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6c1e29a28e64ae4d2ad191a95017e3cddf18eeaff39f5ff618f859fac4f72a0b", + "regex": "(?i)^https?\\:\\/\\/kjgsdjasgdljshvc\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b5c973f988a839462e6e72dcc72c0dfc08e39eaaec7fdc002f0a8bd08a8cf5f4", + "regex": "(?i)^https?\\:\\/\\/iuntu\\.aoleiuibunreikiu\\.top(?:\\:(?:80|443))?[\\/\\\\]+fir(?:\\?|$)" + }, + { + "hash": "d6504faff0b2ba7ba91aa0166a6f707a2488ae4f90674b01583cbeca101874ef", + "regex": "." + }, + { + "hash": "d353cf63d55c5f27c35bbec68050f2644012ff176bd4a824047b36ae10b1c862", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d3b217b492d1a27f78ad0e158c673c4dd68b288729987dbff3d36d37afff2b72", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ed578608ed4b800de6ff4d1ff4cc55661f466b8f55127be25a71152ada46fabe", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "73f9bcf74321333e7618e4f365c6fc85f683ece5dee98802e0a98c58e4b2a8b5", + "regex": "." + }, + { + "hash": "c10961dd63611735351b423d4628acaccea13b3fccca1a95c45d84d3b8d047fa", + "regex": "(?i)^https?\\:\\/\\/hrthbsx\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d6bf3735b23e2857008a9c76e02624f6cd23e8cafabf6bcb36590fce250e866e", + "regex": "(?i)^https?\\:\\/\\/jkhduysatewwbshg\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "df50de7dfe931f9146f4801e521729276bbfe6c4c6be613f78769f899f7b841d", + "regex": "." + }, + { + "hash": "dd77683bd062fb37dc76674006c37504e455dd3d038546ae575676840f444d4f", + "regex": "." + }, + { + "hash": "892a67df7552e1aa7e67acabcae568c8c5630173a93d11c95dc5d65b4cc45947", + "regex": "." + }, + { + "hash": "877f3bd758db5a8c9e9faa8daa08fef901422be4d28d6d0f10fbbd17c9c1bb8f", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8fee84a20b03251ed696154d6cbf948d0eff158e66782123ebdedc6ee918698c", + "regex": "." + }, + { + "hash": "b0f1b8c36838fade89747a57c0a3aac720bb9364fdd36e3e0412af37718e0d16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+as[\\/\\\\]+apt7(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4cadef1ea41a0e0a6654aa51e5f7d20a39e4d67de496effd12a0aaf426d5f717", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register21608(?:\\?|$)" + }, + { + "hash": "70b0458f054bf292e4444e4c1f31eee36ad8cac5f921f538e5b5a03aac2c4f80", + "regex": "(?i)^https?\\:\\/\\/hrthbsx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "fa9a2727a31365078f84f9d2348b4b58b263f6dce9a93d6fa1dba769ad230416", + "regex": "(?i)^https?\\:\\/\\/antaigouvfr\\-emailpaie24\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "1736a91d2a39ce5d0726a288d88bf0a154397e7466a47bd6b20216d8e4b8de8a", + "regex": "(?i)^https?\\:\\/\\/monesjamoabkal\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f9bc116f5325c2f2761ba1737cccf2fbaafa33a0894cec434f62bee422651087", + "regex": "." + }, + { + "hash": "f9b05be66da864e3915cfd12461d37a9bce1d9adb446ff72605799cfbae655db", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "c67da98070bdf576457b07c9f21a9a89d5d2c62cef81f39c019ed4404a7dc000", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "581cf173cc39298436448cc390f78aac209682b1fea2ae6583203d908f1cd7d1", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d8785470638100376661e27bf28786b0f8934bebd929112ff6bc999e64c2f8b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d8ef4a07c5acadf43c9df1b3ca091d01f081aa76f49768ca70451c8941c22ac1", + "regex": "(?i)^https?\\:\\/\\/epicureanexcellencequest\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c2ad4f1111670169107159f96480bcac6d01fd342f578d96a74e6faf668a79de", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "713b9327ffe0ef0b8fa6f05356549f7ad8f523d626a92351f2f0994aaa9fd9ee", + "regex": "(?i)^https?\\:\\/\\/epicureanexcellencequest\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "461c0924ad3d7de6ae014fb6f97a13bd8fef21c5451ce61094de616cbb2e4577", + "regex": "(?i)^https?\\:\\/\\/dianannblackcherrygevk\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "04616efff785b7e95eb4733bbf73ba61763c31f1c0b3b134378b4dc2d3e99597", + "regex": "(?i)^https?\\:\\/\\/irantomvkigeps\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "e1b9f40fd667fd12d51771c1fd4f29de7b7f771fea7d251a177389f8d2590f1e", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "62fcf7572baf828b3c6ce8da9a36245ad126fdb0936f3ab2926a4cd24a5054ca", + "regex": "." + }, + { + "hash": "8420a07d716e21db5fd4fa052911818abc0ef3248858ccdd5fb59d095141bdd8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c[\\/\\\\]+l\\?u\\=11E31263\\&e\\=1920DBD\\&c\\=1A7574\\&t\\=1\\&l\\=119D6472B\\&email\\=UZ38MuK5vvcI7EHokl3fuCX6ZHYnpwjN\\&seq\\=1[\\/\\\\]+1[\\/\\\\]+01010193b5aaaa4b\\-db918165\\-7236\\-436e\\-a389\\-6f9f8dfad6d5\\-000000[\\/\\\\]+3UxKtXC6h3jFqDKh7nRAJoARmYc\\=405$" + }, + { + "hash": "af60f8187a81f7751567ca6fbdc87eee19fca97a7a7fa7a05bf88dcfab87be21", + "regex": "." + }, + { + "hash": "d6bfe6d82182963ec5532b0c302d123bb9daf5e2c84b09792387aec706602665", + "regex": "(?i)^https?\\:\\/\\/pub\\-1cac67a61cca4fd39d38b58db6cc35ac\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ca5800dd435218b0b991c327fa64789539153abf9d6e75bbb743018902588595", + "regex": "." + }, + { + "hash": "f8ef1f5a28caab882dc4486ef35bd0ac195d7e07d79eb69f2b82718274a04e27", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "be36a0b66373ea8bdebe8d115b331e7ffbdabe43ddb54fb89948b1b8ad816c19", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "de0ffbd34298b9a23c7ebce64d05d39d97a73f27af82b8998bbac7b10c939054", + "regex": "." + }, + { + "hash": "eb127b0f74d29091216bef5320976094ccbdd1b6aed206e0623fb937220bbe31", + "regex": "." + }, + { + "hash": "cf75198efd822d0eeeb4ca91b7af9d409850933aea50442f543a2cde7e9ee854", + "regex": "(?i)^https?\\:\\/\\/jkhduysatewwbshg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "90fbc33ab15af28881c588c3796c2175dda240126ff14262498f4ad6d0e0c55a", + "regex": "." + }, + { + "hash": "406533bd8711924fdfa7d9aabd06dae1600eaee4fa183eb605619c4250546294", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b95aa6dc076deaff23138fa372eab768be3b6f31d3b4a21b3afb9f7158d22aa4", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "9135a663195c679f75d1d328cb5a6f9e9cf4c3550b3c69f03a5b0003e477e2a8", + "regex": "(?i)^https?\\:\\/\\/leodeadshinexxnzn\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3bd0fa9dc72e0496ac8dd226fc92b83ea6fbd9d7093152cd1a8740d30abaaeba", + "regex": "." + }, + { + "hash": "0c872db347b052c30f0e3d95a070ee29953f46498fae508bab60cb041ab7b10c", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e092443967414f741a0c5c02ba6c7ce8eab074b14227c0cd30fd98e0a428ebda", + "regex": "(?i)^https?\\:\\/\\/administrator3373\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "a73e42fee51c2e7447dd82c5712e0b142f7ac126ff429fc3ec52a65c791686ac", + "regex": "(?i)^https?\\:\\/\\/hrthbsx\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "fc36da4ab7ad4918b4fa3478f480df0c5bb7c4153b2aced6375f8ffecb83a3c7", + "regex": "." + }, + { + "hash": "4667680a28b611fdfeb756feba0b7d1aa3790b999cad74b5998574764c49beb3", + "regex": "." + }, + { + "hash": "3ae8a9f655d6cd3c88ae3066d070e760e52883aa05f91705f2a9bd149053ae42", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8f9ae85e9d6a3118ebd3e1d91737b3ee4985a3e532da73e8f2a8f47d10b9a80a", + "regex": "(?i)^https?\\:\\/\\/sappermainsggmk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f7896af98f5efab90669b058d24dcb72ee16d14b7f1ef4c282b4358aeda66708", + "regex": "." + }, + { + "hash": "debcfd6c51c18fbc93d0bbd757b35140f0a54c03892ebf0de9efb32d808f7c37", + "regex": "(?i)^https?\\:\\/\\/khdiwuncccgf\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "586ba60b9041a918ed0b4c6529c37c4cf61328d232e80c1635e4fbf8c95148de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m[\\/\\\\]+Qcz3yhCy(?:\\?|$)" + }, + { + "hash": "4a7fa6843a760d39dcba0d6137ff3a7ea7bd723b703815a2655117001e03e442", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ea5121956a40b0b5500ca8dea4f90cdca21c6036d1bcc9b840ae15176fda1f1e", + "regex": "(?i)^https?\\:\\/\\/monesjamoabkal\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "19bf320e1a22e312782c8382ccce8e26f0b94f00c2090a13d7fa54dc6ba4df51", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e2d405bd5f2528579c50bb0cfbb7534976431fd4ef75a467081c5c53022f44ae", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ec76dcbbab0981dcf5e377a686a183f9201e0e48f76fa3ee47a298002e24d7b9", + "regex": "." + }, + { + "hash": "abd3e64fb162b79409351102aabc1f79684298a05a19c5728697837699db8d82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "616f6dbffeb7c56fb82ac34dbdb13cc27386f0b461d8dc1d36318fd397f89bea", + "regex": "." + }, + { + "hash": "a45c76634d9322af9f0eb70c1a6363babb81910275358d1ee8c01baf7c8c43ba", + "regex": "(?i)^https?\\:\\/\\/pub\\-3bd0ebd78d834b47a5ebae308e3aecad\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ba673234d0b6aed71640929b6fcdd544b2adb0c57e64cdddc16597e5d99fd1b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e72e7e71ba5bf174d6775f14f1f07f98b4bf7f2025f06bb5b93bd5104afc5447", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "31919990332804235c2587cb62520a27ef237fe01c931d2367643bd78b2900b2", + "regex": "." + }, + { + "hash": "34900333224eac88cf0303c1581794475afcd5f28318ad625cc4f8a431ae0444", + "regex": "." + }, + { + "hash": "360f618026e5efa79ee23bf7fb0cb8622facb10e1607f9d632294c21066d8494", + "regex": "(?i)^https?\\:\\/\\/dianannblackcherrygevk\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "643fb0d01b220cdd3aee8ba424a2e7b7f2cebcea214b2419c318c826a2b2fd73", + "regex": "(?i)^https?\\:\\/\\/ghgjfgjgjfgjfgjfgjfgjfgjf\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2326058521cac537428bc05e91885d482e2d5a7fc0d0997c0828d3cebfedc7f0", + "regex": "(?i)^https?\\:\\/\\/linkertuxfqvur\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a2f201b5417778867e6ba8bc003fde4c92dbac7b49fea89d0e78ca0603d285d2", + "regex": "." + }, + { + "hash": "c73e39f6d762994cc37d4bf5406e9a68c1d4cb816753e32f33ff703f660c921e", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "dd4ef64897ea12bcd31304e90baa03d2f168a52c539519a620f47f76d0e124fb", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d2434ac62e7b0341d3e391ff2a78e4d268dcfe591ee13fe0aa47b91cd4ea085a", + "regex": "(?i)^https?\\:\\/\\/antaigouvfr\\-emailpaie24\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "faa5774459adf8f4be7a2f7319238890dd9efac4323907e6ea53bf15c8c585da", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e2f497d13b54af272629f74b8a8bfc9b3887934f7b2b0f675b96387db10fbc90", + "regex": "." + }, + { + "hash": "de2a168ea4d1cdc7fb8b31d84e5051e5ff1bb4f8532c7e6ccb31ddba9176262c", + "regex": "(?i)^https?\\:\\/\\/instagram50630\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6b4be7da8571a36aead3fd4ac0f3d8cd695030f1fb913dbbce2781552f37a327", + "regex": "(?i)^https?\\:\\/\\/gatlahbalaha\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "919043042c7859aeebf5d94e3bb1d4136ce6a4d5217bc40476b4e4249ace69be", + "regex": "(?i)^https?\\:\\/\\/driftmover\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0d56c301b752301c4931c92ac150db48d4aa0b66a9e19ab345dc4c7d3ac78c42", + "regex": "." + }, + { + "hash": "d5488d2650baaf623cf2e578042a15ef69f708f4fe69744f54089fdcf1f1a65e", + "regex": "(?i)^https?\\:\\/\\/sappermainsggmk\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b13bf11720a89b3ddf9d61d36078a498f6f4a3d17ef0b8aa10b4f79e44321c7d", + "regex": "." + }, + { + "hash": "dfe576090860e2f79bd78860033d44c7ab316b6757fe78e63cd37aa6f47087b5", + "regex": "." + }, + { + "hash": "0f9d98fce3868dabe60d812959d09bc86844d759f0984a01b3f71ee703a76e08", + "regex": "." + }, + { + "hash": "3aeb6507f8ffae8ba338effd2f295b2f8686226baaa03bd2ba267f43826ea9da", + "regex": "(?i)^https?\\:\\/\\/kjgsdjasgdljshvc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d137b5eacc28e5b9bc8177fbedee61f6af228eaa90f876d6fb47d10ab1bf61ef", + "regex": "." + }, + { + "hash": "c8e4b06f40383627b1a1e434dede1c32574d8917581303438016566c788072ed", + "regex": "." + }, + { + "hash": "d8a4c950788687b8c7c8f3521ab08e4001e193bcb293c82e0ff2c7ac5ceabbf0", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "d810d5ad47eb0a2b488e5029031316687461da2e953b6d4d07567f77ce6842a8", + "regex": "(?i)^https?\\:\\/\\/dianannblackcherrygevk\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "89d59ad7cb7ce87785e567c2512bb9a2f3771d329c5086f3dc5a7554756ffd4a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "78aea1dc0862d35f1e539ced179a647de4c95dac4806c046048bb59515cf6e3f", + "regex": "(?i)^https?\\:\\/\\/jkhduysatewwbshg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "c2b5e07e35bbef7c0eb949f3f5f8f5108d86db3f3e2defb543f8546d6237dbd6", + "regex": "." + }, + { + "hash": "f7be5dacf1d91d09e9bfb7532107be8f3ff706a12c628ab70431545078ef9b78", + "regex": "(?i)^https?\\:\\/\\/blackblancaokkeijo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "581ecb1fd10c0a3804d42e98417182769ad36aa5fbe249d1f0e022247341e51d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "98cda29fccb777057b04cbe4c56534b6cfef946b44a89819e066a70eb8231ebd", + "regex": "(?i)^https?\\:\\/\\/monkundefinedwbndslx\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bb9c9bb27e53d507d6477124462305b840ced3ee3cee7c99b7211b5708cff774", + "regex": "." + }, + { + "hash": "a96e5911537398603b980848286fd06810a5591186d8f21cfecbc40874c84a7f", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "5b28cbd9f823ebfcaf242be5d53793d229d53946fae02f94357d55bc87983d45", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "3d074942b21f88af71bdbb3e0fa076a1c8a22df43d08a8d0fd16f615cf704081", + "regex": "(?i)^https?\\:\\/\\/dsvsgarregcsraeg\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "4cadef1ea41a0e0a6654aa51e5f7d20a39e4d67de496effd12a0aaf426d5f717", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register58377(?:\\?|$)" + }, + { + "hash": "15b6763f4d164c4d910cf522bc67237010a2ac81484f31baafb60a90c8ec74d7", + "regex": "." + }, + { + "hash": "a6b780d66f9c885a7e84a0d0a2711261d6801ad52d438771ca2a50fe3593d8e8", + "regex": "." + }, + { + "hash": "3743c3962650276b7f795fe9f2f70d5b6b63ffbe08bf6ac7c8f184155daa5777", + "regex": "(?i)^https?\\:\\/\\/monesoabkal\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "234b0e94d1e18caf3f5d0729270d71187bcd73fa67e2a3096c279ef40d9a3e76", + "regex": "(?i)^https?\\:\\/\\/kjgsdjasgdljshvc\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "05e28ec9ed25222c98e963a4cc4f28f44e358ed620c3e9040463a201accd8826", + "regex": "." + }, + { + "hash": "d79c036b0ef85ea6ba957b05c8d15a15d86f3dc6ef60221c9ecfafde97f01c9d", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5a3618851e7e62f1166902315c6bfbea5ebb0d8396100973ef5fece6bf8e36a3", + "regex": "." + }, + { + "hash": "b678444db4ff8121be5d3419eb84f8f5dde3208135fd46b6fc3becaf28f71a1f", + "regex": "." + }, + { + "hash": "7d06c8790cbda7ec4b03883ba1ae7cd147b1340959a8288015d74c2336b228a2", + "regex": "(?i)^https?\\:\\/\\/leodeadshinexxnzn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4e72b093ce0e01c92cfe61767475d1f49be851a36a13503ee0a07e55f9130320", + "regex": "(?i)^https?\\:\\/\\/modhopmfiprlx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8df0ad95ac1820e5369329508e8fe0705a4482df843c8088d3ae2f7d149c0bad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hmy7p33n(?:\\?|$)" + }, + { + "hash": "eba309e2367a96ee7dce3239f84ea8d5b57f683a9839b7c0f64bb3066a35e6bc", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "91892208dad8f84f97f234cf6bfdf7fe97b8fdc29f49e928851c48999b3c3f7f", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "0086125e7a97105cb8f3f062958482d7679a6d32d9775cd8771910c02c64e0f4", + "regex": "." + }, + { + "hash": "cae5b117f82e7d6e89fbebf415460bbe74b56779cf62aa490ed80a6db2aafd10", + "regex": "(?i)^https?\\:\\/\\/linkertuxfqvur\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "7f2e56d9476b84b4e8b6e307a2f1967afe9341180bc1530be0be45c57f6b9fdf", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "29f34ed55e635e6c0fd0eba180b582ff1f26052aa293fc21a2f8c0d7d2bcf6ff", + "regex": "." + }, + { + "hash": "688cbf662660bb29aae8426350a1da12ba079179a6d821efb3a300957b424d97", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1a96c699c629c915e8ecdfe9e7e95f6a2dbe7622180a5c025fed43b3a8d1fa0a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "1ff809ee141286132fafbd13a8430621ffbf001be036362dfe01188f16dc813d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index(?:\\?|$)" + }, + { + "hash": "ff807b6db54b001e10bb1a46cfbc295435f58e32db52f85f416d560c61d082d0", + "regex": "(?i)^https?\\:\\/\\/dsajghdjkawwcns\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "058272925be3f4a04ae3fbdf024839f4e219fa10c5b0df7f8145b2f4de2aa47d", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9cf35aff4787324b5ad27f7bdf382458c949cb91cfab9175ff078db31e03ca05", + "regex": "(?i)^https?\\:\\/\\/pub\\-20eeede5f4bc48d3a963230f8e7c641c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fe601dfc83abef6e37bbf78f2c77d76c85252ceee23a3e9a5ff8c4714274819d", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "58ae5f3bf12458589c06abd2315f81b26914760a76d489bd1b219bd1b4c226ae", + "regex": "(?i)^https?\\:\\/\\/epicureanexcellencequest\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d80a8c9b566ff42465e095d027c2426266c6ab6a38c551e27a076a1022f72e07", + "regex": "." + }, + { + "hash": "4412d844742f5d6987fba52130540ccaec3b1753f398ccfbc2e5be07d617fa28", + "regex": "(?i)^https?\\:\\/\\/bafybeiej22aznyhfaerdlx7aygpp34f34ynlanqddtpbbdkbfnn7pb53ce\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "f67b132684226e903446430dc4e88333cb1b142ea6a8205c3c5f429a266eca54", + "regex": "." + }, + { + "hash": "5b849aa43e9a39259aeb9f472e96fee5ba595a96b2e5cb2078b20196393e4e08", + "regex": "(?i)^https?\\:\\/\\/dianannblackcherrygevk\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "d3d37ba59333d89626ee6eef1ac36f4666f4ac49a5db48b650e49bc635319baa", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "db6badf10c185754217fe4614e1332d37109d7c83136b8d669ec1430020d7e15", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "980800e79683156a16f7fac3cb2d2e16ca3329dd93059d80c04246a3e3936892", + "regex": "(?i)^https?\\:\\/\\/weeqeedyl\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "89a755b78f08d31827eed829f0f2c8ee559be33c0c9094cd1c8c278d20441aa2", + "regex": "(?i)^https?\\:\\/\\/hrthbsx\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "178dd272c34d8b3ab59c3c3952ae3a10be1677d6fdcf772a1fe7c648b4a7c2a3", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a1447c35dd7c4b701f052a15c270267c10865fcea9e21a032e0567ccd36b0fae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hmy7p33n(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2d8511a6f75731a4214fec75b02aed27d03fd8f10557f9f125ff7db1e9765222", + "regex": "." + }, + { + "hash": "048cddb76d9b74a74abb3ccd1729219bf41f9365063a99d56595fbfa14d728f4", + "regex": "(?i)^https?\\:\\/\\/kjgsdjasgdljshvc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "2d808e6198190a0e289bbc07f33d26ca8b100d37c285cb48430d09902a6e9b25", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "e520b3fefe79800fda5bd465b36e7ddb166695069b68817eab295facdd8e2f02", + "regex": "." + }, + { + "hash": "6ce68ce439671c75a89cfce960f411a9ae7bd0b40d847e2bb7b223dc6f744610", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "70d85810093ed219b14a77769b5a91601a53e747ac159e7922cfe905fa8d2578", + "regex": "(?i)^https?\\:\\/\\/uspswrhiold\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "5706e9e0b6cb2287fdfeb4fc1fd9df3347f01fda7b27aea5a2733177a934de56", + "regex": "(?i)^https?\\:\\/\\/weeqeedyl\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "c8f785dcaa5cda36ce4ee4f66c64bc3f7143fb8faadad850f78e37818553a48a", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "9b3bd73d26e5baf1f67bb44fee76a98713661c930e5655c89b54d00b1085f73c", + "regex": "." + }, + { + "hash": "348c8e21f2a6dcf3f5f1f422819867cb6c83f6234cc53d967d57b817ca58d202", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "f2ec5843427ddbb4889488f8d9571acb8adee5826af44ba2f69db8219d659599", + "regex": "." + }, + { + "hash": "37f20ba4d7ccd2025c5f45fc0309569c9a096d2ac14c79de6e08b235f3103270", + "regex": "." + }, + { + "hash": "7eca11a7a1c17d64b9ee10aec9d9fb2df03c71d66fd79b28f4afe70b6e211e9d", + "regex": "(?i)^https?\\:\\/\\/pub\\-2bebf788fd2d4290ab1c24755d9409a5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6f3b6a37beff5798821e67a93a04a72c44809b0159246777fc9fa22649062421", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "fab3c811e1a7ee42c12017b1b56cc22831872e7e006f189f69588312ab955b18", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "45acc47c97e7e436e98c145d055e2c0f3503eafb5066b4d1714700d75d39e460", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1305c686f4d830b7f7c344a4bd7898829095fd2b7a6dcea3f36c72e4246b4692", + "regex": "(?i)^https?\\:\\/\\/kjgsdjasgdljshvc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "2feeedafe58a78db6f0bbb1e497148db048983f01c95b6eced7acced97d4c9a2", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "cf6a7a238af1f29c4a7b628cac8fe5f4f9b15930b150397d765cba3c0b6eb0f4", + "regex": "." + }, + { + "hash": "0318d71b46eb9973ab0812f311d6091769cc75467c74ffe95a9bce0a8930b699", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "cabe05b28f4182293d9553b7dfd88db22683c0798eb83875e68c68c0c1099cf0", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "5ade6c9489fde9d637505ac3896c7f07881f2455772539402f4e74a30ad5f1dc", + "regex": "." + }, + { + "hash": "5bf33700c25314ceba2906a1485d2763e95bcc43421ef998f60943bd7393bdd5", + "regex": "." + }, + { + "hash": "c04d71c21f0d8a8691ca0b9e1bae2315c9b8dd8d184bf6972929e73bc67ab0e0", + "regex": "." + }, + { + "hash": "4f08a5abfa20662fcb4109a0cf4fece1f1b42fb098b903dd9569700d92eaba11", + "regex": "(?i)^https?\\:\\/\\/wavebinder\\-tideweaver\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "8aa4afc58e4adbc8bb1281b8f8b3ff01d2c382a328f6e1f399888b684c1c8a20", + "regex": "(?i)^https?\\:\\/\\/linkertuxfqvur\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0b1ce5f71512f8d2bee10b324df56c7cbaaa47a2d2aa0918e89f287524fe37b9", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4073c4caf11ec7438b70f39ba0093e1558867b8437c1559478871338d3554ce7", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "1a72dff30a37033598b218f7b24c8856dbc1053526a3618bc841d3b75d3422f9", + "regex": "." + }, + { + "hash": "e5844f855a4a2a9961283cab5f3c0ac4c558eebe98b8cef5f5e8737cbd8c5051", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "ae652fcfb6973f5a83b8b800de7337455d5947b87d14df8680d8ceb0d00ade69", + "regex": "." + }, + { + "hash": "b9d1f2acf352a2e5882936760469c245b292f6b67e9a187ab9567f224faed3a9", + "regex": "(?i)^https?\\:\\/\\/dsvsgarregcsraeg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c20ff5c06912407348aa77f4cc9f27a9212d64a6dc76d2f7dc086d8dbf9752f3", + "regex": "(?i)^https?\\:\\/\\/tmnibanaalimanga\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9c052b16a911ffb1d002249b211eeb6a3e0af71f0a3a07950a6a1cb6f8667abe", + "regex": "(?i)^https?\\:\\/\\/dsvsgarregcsraeg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "6af24b942fff2211ebd954758817cff3cebe85743981443b51f0c41e7037e83a", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "4cadef1ea41a0e0a6654aa51e5f7d20a39e4d67de496effd12a0aaf426d5f717", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register21608(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "06724e5902ca15faea769fd4e3f9fdaaef8e39586e2f55ae67c362bcb53e70d0", + "regex": "." + }, + { + "hash": "d94a14eca132ea7b2b284c64bef46d709627f4f2c07a22f88a606e73c48df286", + "regex": "." + }, + { + "hash": "165f7aa9ef17970551c17cfc53978669c16da643d49e7e178c85299deddc5e20", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "26747dedf7bf2aa9e1a5fdb3b5aad1f126a0a599870f9125d729a30823d8f619", + "regex": "." + }, + { + "hash": "73a63e1baf142e388045e028d142b5bbb21a1ba37484972353b2c05196d9749c", + "regex": "(?i)^https?\\:\\/\\/leodeadshinexxnzn\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "c974ebb86720f64cb90ba29a3941eef18e5747b23e7622b27fb4fd020b0ec328", + "regex": "(?i)^https?\\:\\/\\/wavebinder\\-tideweaver\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "968b711bfb29f132a967529a40bafbf1aad9d96c93ed4195aa9793623b589b6a", + "regex": "(?i)^https?\\:\\/\\/dsvsgarregcsraeg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d2b88ab924ebcc5253a9df61f29c010d1c7af3c884709cfcde2d6384ad0de97c", + "regex": "(?i)^https?\\:\\/\\/modhopmfiprlx\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "fdd3e7b1b0905ad28fded8708b9d574ee16f5b82c564da061a45af615d7ce1c0", + "regex": "." + }, + { + "hash": "86906dab6bae80125634409352922218b8f83d5a97fd551a75ebb4c376d1ac98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+link(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f1886ae1891a60ff6776fa34fdb76ac56618aaa20409ea808fabb1f034170003", + "regex": "(?i)^https?\\:\\/\\/tmnibanaalimanga\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "e4934e4d2c4b5d31314f0555363584c19697c2cad68d43e49c443313dc801f46", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9dfe5cd88a81e71713c4824b1250822bd52f72a0e54eb13c52c6ed2bf4c3d714", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cc5ac2ce8d0c02b24f9ecb42617374b7902e983021676dac9127f8e91369740a", + "regex": "." + }, + { + "hash": "6d0761768faf2409d8e64bbb13818d009e4ef0a6f9fc9f25cd5d553438fe5abc", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "459768ac4a47bdb900ff92dfdad2fa33bd60362d138fc5e15132eba16941a893", + "regex": "." + }, + { + "hash": "76385c8279a6761dd8bf3f4aedba2fd691b707a71d3ddecaac43a8d1685035d8", + "regex": "(?i)^https?\\:\\/\\/monesjamoabkal\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c829b218b8912a53d6ba56cbd770880ee5511f7d41570ff999d4a684290a9e8e", + "regex": "(?i)^https?\\:\\/\\/eleganceextravaganzaqueens\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "327e4557c8f047476c4101293c64f2a49ed9911529e78bdea5f1415a57923a90", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "dd47719d1a3d7e7cd14a9ee4ce1641f1abd17346337da34afe2d4d4e7b7f844f", + "regex": "." + }, + { + "hash": "37e45d5e774baf9f65db0ed7ff3e696b5f8b03fa39ab33195c2e17365b4cf304", + "regex": "(?i)^https?\\:\\/\\/fashionbrandffp\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "885b80e386d458b137d31e5a60c6df1ec1c47aea365ba4502835aaf0a8029021", + "regex": "." + }, + { + "hash": "610a17b0afe0953df168dc1ae39eeead75f0014265b0fca67114afa332da3ac0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+D5vxcR6G(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3dc8a1547172fb10a9bcb63f96a0b23c89e963334497ae4982242f7d2b336263", + "regex": "." + }, + { + "hash": "8a038d3af97f2e25d177897386d1b4ab5bf8afef083b819b16aa18076beb4973", + "regex": "(?i)^https?\\:\\/\\/dianannblackcherrygevk\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6f90895eb86eced04b86cb7a783f5bee0be784ed55112ec28d99e7c982289d5f", + "regex": "(?i)^https?\\:\\/\\/weeqeedyl\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "17b3a9fdc9dadbbe243166d94ca0377304ab7c91ee69ebb2407b439499ef8898", + "regex": "." + }, + { + "hash": "4ef198246b079ad16dec8b3436e201a664746337d3fa7f433184f60446f7865c", + "regex": "(?i)^https?\\:\\/\\/sappermainsggmk\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "e4b403e8af5af44b4b9f250ff33d91259802b02f21f2ba94d3c13404d23a77d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6268ef0ca5c22e18dfc7be26e716aa2a3ba72bc8016d7ce058b452a22fa4a040", + "regex": "." + }, + { + "hash": "a1447c35dd7c4b701f052a15c270267c10865fcea9e21a032e0567ccd36b0fae", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hmy7p33n(?:\\?|$)" + }, + { + "hash": "6d2f12936e34c1cc9e2fc052592e4f90e91b8a71f58c45cbfcc5e29591c83620", + "regex": "." + }, + { + "hash": "021e23c9e61321a234c32dcdf4c7ace6b1fa52a12c7d9ff81d0122747c70596e", + "regex": "(?i)^https?\\:\\/\\/frgvdzshbstr\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e4f7508b9658396a4182cfc43e7c185d0fc1090c185e1aa18b41888a7308346e", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2ba99f01be173e9cb805af375db34ecb47b75c8270ac323f0d15f4d54ddd46a4", + "regex": "(?i)^https?\\:\\/\\/antaigouvfr\\-emailpaie24\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "9ab386b229ca0399f1955e590bbdd25052f4a127cf0374b5eeb80a0cfcbc33bc", + "regex": "(?i)^https?\\:\\/\\/sbc\\-very\\-12\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "61d243770c8a4d07b846be209bb9c16bc7ab07aee5ac35b81649298c9a2a38ed", + "regex": "." + }, + { + "hash": "32ae25c6009b9788ab5e2eba9d2d25a4da062a565827f1b0cbdf49d269ebd5d5", + "regex": "." + }, + { + "hash": "b5bdfb47441566079da274b7a9b3410b6aac0b91351a4a09a3ad24765df4f505", + "regex": "." + }, + { + "hash": "bbd4d06aae54d43beebd16d02baa02f7ca2078132739648cc12b9a8334aaecb3", + "regex": "." + }, + { + "hash": "0c9cf815681a5e3dcd9b8cc437998bfdc314ff58b2942cfd03f8e67a6b05d8cc", + "regex": "(?i)^https?\\:\\/\\/pub\\-44e266580795402f8256017ae1c567f2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5044cc9682b3f7a4106ad358be5e4305a104292a55617e1b837e21fce5142d32", + "regex": "(?i)^https?\\:\\/\\/pub\\-b9ff5968ebcf4fd098c69f2938f49239\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d6528c71b788c5f528a69bb16e4f9dd867f11dd495bdd0bd659fad8b1ca0567a", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "411b03b57a8045effb3cc00395098b8f183cb6e2f7b48c2659c45575387c07cb", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "19e339519abddea52680ddadb659ec12a04589d90bec016996d07395c5373951", + "regex": "(?i)^https?\\:\\/\\/fashionbrandffp\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a77341749f25b615b5f85041f927f20469a0285c51329f1de4ed2a7ec06726ae", + "regex": "." + }, + { + "hash": "f7be6821ab8b53a6d4b55e4e70250d9dbf0b0b9dd1ca6c580e0032be5a5cc149", + "regex": "." + }, + { + "hash": "cf06eb924642cc1741bae8a6e36186cd2e79c33eee3fcafb3e5db8df87efbebf", + "regex": "(?i)^https?\\:\\/\\/pub\\-0e250ec9fea949a1bee02117206219dd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "490fce9e74670dd8d1dd11741d3a77e0079023a7513965c52863b0bb83443ee5", + "regex": "." + }, + { + "hash": "a325cae678e54475b6c2a6d85a037fa877b72bd87d3cd0b03f008484fda645e9", + "regex": "(?i)^https?\\:\\/\\/tmnibanaalimanga\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "983e4d0fe207f7a31730f19b5d2cf593b6cb9e730f99443f71b7ec4528e01172", + "regex": "(?i)^https?\\:\\/\\/weeqeedyl\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8d97cc202ce1e28e9729b96466616e99d425f806f0e6bba1db9ba4736c53e142", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5474af1e8d1aa4a624d39ed2d161e2ed23df5f8465be178b8da3522a890ccfea", + "regex": "(?i)^https?\\:\\/\\/ndxjwjsjm\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d36db8d002ef374e18c101b2b65a7232230e8f4bdca1daeb6c7bb28ed9f1321e", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "074e9dec3a11b3a48b93c74a5474e9393d5992d832002706e386d8433ec98d99", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b7d4a37dfac5122df262e683169482f7ab2778150571a84501aba17f4dd1171e", + "regex": "(?i)^https?\\:\\/\\/instagram50630\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "c9cefc27c6249b8c44951ee8853569f3e8379b3d632608312c53e0892da67e75", + "regex": "(?i)^https?\\:\\/\\/hrthbsx\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f08694dcce443c480f77c2a9132a485a48a7d41adc468b10d4204dd2de0660be", + "regex": "(?i)^https?\\:\\/\\/galjyalmmab\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "ceeb3877d1ee41d818541b965e924d0f8d4c06ea413e76335023d02069de578a", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "a74624235ee3d9ac8957706217beff49cddeb37adfa4e9eefb2b1e79ddff4312", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "e79611d6cc31899cdaf8187a333974e431bd2bba7ebf611cbe34b9de23a16a3a", + "regex": "(?i)^https?\\:\\/\\/kjgsdjasgdljshvc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "8fd3d95051ffad04b0eea5bcb7ee90351b972c7fedc2431764775efdf4c0d31f", + "regex": "(?i)^https?\\:\\/\\/instagram50630\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c9742b7aec59fcecef749e842794d3edcd8305c0e86fb9ee62b7ad41ca393d0e", + "regex": "." + }, + { + "hash": "89a37b1bbd4179863bf778b96797572529ebe60ce8f9ef09a5e85f144a42f21e", + "regex": "." + }, + { + "hash": "79243ad55d791ba7c13171b0d4ca2fbdb50fe1bbfa1a758036b611bb38abaf30", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b06d0843a0e6de1c869a020dd17270a1b7eeb709e239a2e2fb92239deabcfcba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ubb\\-bg\\-21251" + }, + { + "hash": "3fb94f573cbf71730a3ef01c1e3686ec3924e2c37a4fe365573691864b97750b", + "regex": "(?i)^https?\\:\\/\\/tmnibanaalimanga\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "961621172820b00cb1998c8b2ecc7e946fc57a5d0ed029854ccdcb2b820c77c5", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "c7d2fb2bd857f1d0958bbb95f982acb1ba56b2e3f97414e5cd1ae9d39b4ee21c", + "regex": "." + }, + { + "hash": "8d591bcae53f4406bd5944c251c34f8647df2e0b9c72335b5404556181a7a834", + "regex": "." + }, + { + "hash": "32251c3e6ec0956b2457c8e25f23d2d1591a59b0455ebecc892193aa5b61a9bb", + "regex": "(?i)^https?\\:\\/\\/khdiwuncccgf\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e855a5cbad342023d3b58b69cba760c0bf9694cc5f499ed7cd52293291cd41f4", + "regex": "(?i)^https?\\:\\/\\/tmnibanaalimanga\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "9012452428b9bd0deb1f25ac097f4df203501b1cdc2e754233a696c215d774e7", + "regex": "(?i)^https?\\:\\/\\/mail\\.signin3\\.account\\.applink\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6991372885f061e941c901700609b47f2e6f752350a5ee20f10e01bb62201f84", + "regex": "." + }, + { + "hash": "206b2fad48c29648fe5440a5eaf00a94a8872b299ba1627a7bacd8086aa11b59", + "regex": "(?i)^https?\\:\\/\\/instagram50630\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0b4348fa3d429e52b8fb69074850b794c2c9e77814e843d91a4b493c99684597", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df94a2cf3cfcda954a721c66999f5d31a0e5e43c9ec49fba1cb4445f552f6433", + "regex": "(?i)^https?\\:\\/\\/dianannblackcherrygevk\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "ac977d09a441f7b6a70b04420fa5a895fd0db10dd80010a92bfb7d20a9bbfff2", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "7c982026da58e1f513d38c212f82b92ba424ae0572678fdd2d3d832971d2bc56", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0d63a0527ca1c649c0654eb815b5daced96626b9856ff3cd7240fe9cf27b772d", + "regex": "(?i)^https?\\:\\/\\/gatlahbalaha\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "294631925fcbe693936979099651d68c5a37702ecb1cb30b103cfbf99082b9d1", + "regex": "(?i)^https?\\:\\/\\/linkertuxfqvur\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8bde25ceeb87b85b338c0d616b8ec6d784edeae708e34deb41a39c28b520e1e4", + "regex": "." + }, + { + "hash": "b1b575e757d38be7ee35eac8f6ba3f5a4242ee1a6668550fb11b6fd336071cee", + "regex": "(?i)^https?\\:\\/\\/epicureanexcellencequest\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "21c57c6088923995072edebcfce60562563e00d43d36cb1c5a652e876371eab9", + "regex": "(?i)^https?\\:\\/\\/epicureanexcellencequest\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1280b56c2bae4d6d32f28e52eb6e9a0506c83c13148a3b3398182e0ba4e95d70", + "regex": "." + }, + { + "hash": "08b7179587a60e5c2c119ab70405327c0141c71711164cace6b171d7e78f8acd", + "regex": "(?i)^https?\\:\\/\\/khdiwuncccgf\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "90416eb8912fa2c400af68abd0a0acb8faae8791bc169bbac694f2437b617af6", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d88d6e382633b7bbed7b49b0a5a70db077f8d2a7614f5235b8c18448a28613ec", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1962209216dd51708b7c6ce263b1c45b3275ab64979f1c0cf23e45b271a5254c", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "93e3a9aef88539b4f00ec7ee10a1587eff60c9c25cd2553bf7281b7ff3d4b96e", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "dedab2f6c34ce8e1f9c248179489e024e72d5fe1d90141c1482abc33707ac3d2", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "abd3e64fb162b79409351102aabc1f79684298a05a19c5728697837699db8d82", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:\\?|$)" + }, + { + "hash": "93523580cd14806686e8491a51bf8b60b474616057fc2485fcabde6c2e4f9424", + "regex": "(?i)^https?\\:\\/\\/linkertuxfqvur\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "ed201e229e18472c6e429cd09287818f556176c2a4588baa9b871b2f36c69244", + "regex": "(?i)^https?\\:\\/\\/blackblancaokkeijo\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b062fbe1b7a05e57043dcf96ddea0372148dabeee4d0db3c5d46af3f2b71978b", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c86c7470537790dcc889232fede6d6f6bd809de77dc50e025cd0ac62c3db6b47", + "regex": "(?i)^https?\\:\\/\\/galjyalmmab\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e36a370c540a9faecd19a6f8350ec9d5716681998b235923ec85ec3e68ef01f7", + "regex": "." + }, + { + "hash": "d3bcd66083523cef24ef1f9b84b897be2d1cf3eb33b19a27de3d3635e9c6712c", + "regex": "." + }, + { + "hash": "631142922cdf9747c3a7ab30dfb26dbd89381e216ec111cb43ada954b904f519", + "regex": "(?i)^https?\\:\\/\\/khdiwuncccgf\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "cabe3af8f88afe78269629dfaa495a538d371f52a75a223a4fdc111fa27a5f6b", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "37bfd070c7bdd39826107d031d0ab6dabd31154f37c74fff91967471110cdf3e", + "regex": "(?i)^https?\\:\\/\\/modhopmfiprlx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e7683bcaef45538057b80205a56e6dacf1f6cadd5d97b7748c5581547107ad3e", + "regex": "(?i)^https?\\:\\/\\/hrthbsx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9a684ba5f01bc6063c56d02e3cd7f55b6c1c85486fa201fd4607717aa7bd99d6", + "regex": "." + }, + { + "hash": "95f05d15b1137a1f24af1f2cc74656a854b824ce615fbd543f6fd84404a7a1aa", + "regex": "(?i)^https?\\:\\/\\/dsvsgarregcsraeg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "e9111caa15cb42b5d3599f6d38ee9d6dd7716ae51f5c5f1ce2320bb05338743a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "cb27a186b76267b3b2051a1c1af02cfac2bf3f93da4b5bf7a41f7c2449feed82", + "regex": "." + }, + { + "hash": "9eb51afb0e03809b299ddf54e96cda9f1bed4ccd1c42ade60bfb746d936bfffd", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "250c19f06dec79527a4e7be79094cfba8bc04a4456683f58f1a202242e47c3d7", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "727e048787fa3967b1effa68822fe9befe4f00010225afa19b30eeb8747f2aa4", + "regex": "." + }, + { + "hash": "cb93cd752166b2023d24685c9b32dbc8ed49d7e863b3b59d0ba527666205414c", + "regex": "(?i)^https?\\:\\/\\/jkhduysatewwbshg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5e14aa7ae58323569709057342dd95e1f0fb529182f08386dbc6982d4c0ca759", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dce632fd93f2b16df8875ab8d05eb9f86aefd0e45a5cafc484f3b2fdd3dc39e8", + "regex": "(?i)^https?\\:\\/\\/frgvdzshbstr\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "446200daf18a52030fa1e90d190fc6f2436ab69ef897c4237a4a4d3e35fcbcac", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b83dbe7258c20cefc71dabb639550f71ae800861a7cd93a551e577b295ba9ad0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e0dfdc7d16ff68115467c6acdeda85fefd1d44d6e93b165921b2a276ee9ce2d6", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "f62f22aa850eccfc8c8ea850f308c6e7ec39729106e6a8b4fa40d11d486432a8", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "957eeb5a2d93215e53d246d32802744b57613cf14e979f5d2f46636806c31120", + "regex": "." + }, + { + "hash": "d51665605b234fa986176ab8cd89eb9a83296a50eee68e80dff40560e538df57", + "regex": "(?i)^https?\\:\\/\\/hrthbsx\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "99626ca2524f9703c9a40532d5294192e1ac3ecf4c915cf3632e0d367dfceae8", + "regex": "." + }, + { + "hash": "1e55ab2fe16b0249b72a8c6a1799dd34cd489e6833f4bfd290a43d27d4f254b6", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1eb8cec57ac8f035145000426ea8353595d3e395e929b3206bc890a6a17bfc5c", + "regex": "(?i)^https?\\:\\/\\/monesjamoabkal\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6c00e7a73f8b480bf788728bffb434f1d9ae3c391e3b92cc028edb3e2eb86178", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "5690d4806bd71813279f7f49bdf9c0325dd93264dadead7a2e02f890d2440109", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "f12e9b7cd41b6e0a11eaa7d2624d875e899e4edbf65ee98cfa5b7b4e89d57655", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "19629344d0c82b9ddd66880f58c8e2e439705342138cc589f43b15cd1d86d5c9", + "regex": "." + }, + { + "hash": "ce318680ec2022e3eb47b2efb72e553d396b0b264c9e796117216a0364595484", + "regex": "." + }, + { + "hash": "8c3efd0758afc933df5ef759f4e8d3b44b2128b18e52186b6a414c36a2a7d067", + "regex": "." + }, + { + "hash": "5a36989156e4c5e5b7340c05b4b89884029d535b1da9207ae841bbe21eb32c48", + "regex": "(?i)^https?\\:\\/\\/fashmaksimivanovolnpqea\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "0ac44724e8df932061754bdd9462bc2acb32c3ae7fc2c7a649946267c3ee3c02", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "04c332dd2210e0f17a32b2c56f585911be266c18c37304d6cbfc5b210ea12c9e", + "regex": "(?i)^https?\\:\\/\\/epicureanexcellencequest\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "7a857ccb4c85e7483bdbcc301e8f1b1e9c6fff617694c46565b54b522876d68f", + "regex": "(?i)^https?\\:\\/\\/quyfresshousex\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "df55923da985f782198aa71f7cb4c8b91e28f66b35f3629f87adcd4496ad9e73", + "regex": "(?i)^https?\\:\\/\\/frgvdzshbstr\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "6aa9bc679071587e8f36c985fc416bb5127b9fc90b7bac0fc5ee386dd60b53bd", + "regex": "(?i)^https?\\:\\/\\/monesoabkal\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "32b1d818a35da3e0b345032218b5b8ee8d0cddf90d804b2303ab0dc7d457df23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+giris\\-140[\\/\\\\]+ayoldas7926(?:\\?|$)" + }, + { + "hash": "99ce8242dcc6a6c187300d6f80543cf82df516226fc0b98ae1ecefa06745ef12", + "regex": "(?i)^https?\\:\\/\\/hrthbsx\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "4e8ec608163f9998a654888416de944a7f776759cbe50c0dad31c7a09a3445e4", + "regex": "(?i)^https?\\:\\/\\/fashionbrandffp\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "88102483ec6484ed3bfedd8c58f3d7212ed9e4b9a71643187c2f6af99166a472", + "regex": "(?i)^https?\\:\\/\\/fashmaksimivanovolnpqea\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "43fba2dbcb42d974a69763a571cc818b2de1161695b7e7f3ed3aea41e47d4172", + "regex": "(?i)^https?\\:\\/\\/frgvdzshbstr\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "86906dab6bae80125634409352922218b8f83d5a97fd551a75ebb4c376d1ac98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Rose(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "842912c0413602bd58b6adfb99357b0d98a9b46df6480fd32ac8b2f6da6610ef", + "regex": "(?i)^https?\\:\\/\\/irantomvkigeps\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "5776950169f928c57ebdfec7f5bf01b3209a4cfd88aa67aa0f53fddbb812eadd", + "regex": "(?i)^https?\\:\\/\\/irantomvkigeps\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d03b89c991c5164468cb5f5aeb036496fe5887ac13d4588ddac741855247ad88", + "regex": "." + }, + { + "hash": "0dca9a931fe8ad5ef061bc98e19de928ec8b45b1b8fda3c90d0d752fd1815868", + "regex": "." + }, + { + "hash": "34d04a264e247602a29967b43079d0da93cc27f533a58d16a8ef56b7af7ff4be", + "regex": "(?i)^https?\\:\\/\\/monkundefinedwbndslx\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "9689f4c10ecc0ab5b07889ebafcc326285b2a72ece653857e7ddea7b2a2ec51d", + "regex": "." + }, + { + "hash": "6dac3751708fc78bad6d88f3f24c8131552b65ba378075777afea1ed1ccf69e0", + "regex": "(?i)^https?\\:\\/\\/sappermainsggmk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "e786dbeed384f79efc30b5e703412825c0916d4ee36926bc8b8b62db14347ad6", + "regex": "(?i)^https?\\:\\/\\/rrsluu\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "252cebd8b369faed516b672a60995f4b1080c2811cbff5e8bacd09db4ed2b9b0", + "regex": "(?i)^https?\\:\\/\\/mytalktalkupdate1\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "329d6d40cf9f9c04bd7c7181f852b6667c48c88828f2a60578605edcdc459638", + "regex": "(?i)^https?\\:\\/\\/wwwdotamazoncommytv\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "49576ed5416afeebeb94c71bbeaeb31c9048df1d6086147c76cd667d24ae2d05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2c80afbfff1a3cc2346ad2f43ecc8f51845e25f2a1bd4e4f56a159890aa0dab7", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6ad554848f26df152e1fbc08db86bdf3893914c7303bf91801f3b0f1547d2906", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1872a9d431a220a1255be77f5e4dfc4045b956b26afe66fb84d6241700136278", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3e9ced3e61e4fa67f0e34041e18e2058ff5310857eb9b075df88226b77340b76", + "regex": "(?i)^https?\\:\\/\\/galjyalmmab\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "a971fb75903d7de5bb11395dff01327c9f9a74bee775c43d5483271501afa8b2", + "regex": "(?i)^https?\\:\\/\\/att\\-currently\\-12\\-9\\-2024\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9d6426c3b22efdd1b57b92a528521973580d761fb40b6cbcd2766e57ce262153", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5ab2703aebc06a713fd65b5552d5269035afb1c4e935b694350ccde12e676300", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "3e31ccd510769135bb4cef03306809712573b1c45fb9b424bd494cf8dfc7191b", + "regex": "(?i)^https?\\:\\/\\/monkundefinedwbndslx\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d8785470638100376661e27bf28786b0f8934bebd929112ff6bc999e64c2f8b9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7gy6grlwd(?:\\?|$)" + }, + { + "hash": "23cbfe847d307e5e00db2f422cee8061b60998b3ddbda08558e36919ff5e467c", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6523c7ed599f648e3c2c8d6590276f8d77bb5baac666957d41e9fe3198fa9529", + "regex": "(?i)^https?\\:\\/\\/monkundefinedwbndslx\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "dc042e76cd40a3c8119f85de7fe8a1a0b0fe5948a49472ef02970883bd0607f3", + "regex": "(?i)^https?\\:\\/\\/galjyalmmab\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "581ecb1fd10c0a3804d42e98417182769ad36aa5fbe249d1f0e022247341e51d", + "regex": "(?i)^https?\\:\\/\\/xcqevf\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "739860ca8869d1c51f7dae76f651f3d9bda9677bf956f310ea3f906a987a4c87", + "regex": "(?i)^https?\\:\\/\\/ghdmyhv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "20ddc0f2aa3741d7359a813ede54f55870edeb38d502372b1520475456514098", + "regex": "." + }, + { + "hash": "2c2c21a6c0068727105ff060b9a1d48631fa935c15bd7f82f8a18631e7f96e49", + "regex": "(?i)^https?\\:\\/\\/linkertuxfqvur\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "35be0b0b297d3a3761aaec28d97518fd68eaefccfef8b1b41ec6a7c89f62f8c0", + "regex": "(?i)^https?\\:\\/\\/instagram50630\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c667e5824e05361bf4b9119d44d809ef726b75c5f9f96786724f69b6bdec506a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+unit(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1389b951b940fe4d0548b7cc6d8c7e305ee2a7b173dca2b157721b4fb6eb2fd9", + "regex": "(?i)^https?\\:\\/\\/fghfghjfgjjfgfjfgjfgjgjfgjfjfg\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f36961e9c173c4a58d183e6355319f0c4ed9d909ee4e92feb93f104e2098b7cf", + "regex": "(?i)^https?\\:\\/\\/instagram50630\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a99b42e0b01446b2f0309c5c1bb9424d392bbdaa31030a932cce1059908a1", + "regex": "(?i)^https?\\:\\/\\/modhopmfiprlx\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "83c4a8ef4ee1d293f131741ef73948c36fa0b0397a854d82a12d2666f701cbe6", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "cdfa2574763529065a234d4ab7167c410c4209456e433cbe68cffe57eb12a741", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d478eedf2aa9111427cf182e54366830f2650d6b394d9df096a9b0bec40f9ec5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rUNvxcCuRR[\\/\\\\]+6Z[\\/\\\\]+QKV03WWnBpg[\\/\\\\]+vMY_eYBck[\\/\\\\]+V2UeMmTIEEl[\\/\\\\]+7x[\\/\\\\]+Zlnj34lGB8Et[\\/\\\\]+rrx5_Yx[\\/\\\\]+oGiDK0ozTr0[\\/\\\\]+rrxx[\\/\\\\]+9HyCSjp4wwU[\\/\\\\]+MYrx[\\/\\\\]+IqQFU9k0CsAdpN[\\/\\\\]+YYdr_(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6fed21856d437944f4a4e85a8a8afc639febb4fed8bf131b3b9748c0a22879fd", + "regex": "." + }, + { + "hash": "e43ce0e17365e91a252841378ba8c83a6d2559b98f0b75ed05d281a260ff8a24", + "regex": "(?i)^https?\\:\\/\\/blackblancaokkeijo\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "14192798a22ac1a9d09282e3a2bf3383a49fa59a80c43e2695d03e3ce716d95b", + "regex": "(?i)^https?\\:\\/\\/fashionbrandffp\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "7e88b9b2f3cb59ae705bbf387e8d393606cf70a6c048a334dfb622ed61d3bdde", + "regex": "." + }, + { + "hash": "2950a6bbd36aeb349bf2b946ab2ea6c2264998e3a735a98455b90a9d85e9c7ac", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "827f5dc38bb1095f90c8120c54ebe05f8fd168f17b3f32fccf6e654d1e3c4808", + "regex": "." + }, + { + "hash": "27c4d983fe028c4a98f089b2285f388455d70e3eb02e668a177d3c5442451506", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b2cda3c76808718ffa78df449b23c2ed70f2dcd0730ecd44abc2015cb00207be", + "regex": "(?i)^https?\\:\\/\\/irantomvkigeps\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8f5506e5ea3d53d1ff6206da93d9f34877801e3a0a68a710e714f5f8cacce821", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "65d0c34eb65e6c52ae9551becdd5be398ca9fc4ee2f203fa01e7666135b0f2ea", + "regex": "." + }, + { + "hash": "a32c32f868f6959a974b5ac4c752ebf25016282b429937534a49a2c9f554972e", + "regex": "." + }, + { + "hash": "5ab32cb086abffba34755c2b2f1fdfdadfb13431f2f8231e78f5f696ea1dacef", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a60136d6b8ade505fcc091a691488af5c1cf74b6bedb5016332798b3bb9fe873", + "regex": "(?i)^https?\\:\\/\\/www\\.aggiornaora\\.91\\-235\\-143\\-9\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b42b997c7a988973680a08cf8856ad276ce7a7b01cf68d979b5b57b11740951c", + "regex": "(?i)^https?\\:\\/\\/hhghshheijvddugvsksbdjdjdbdbhvd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ffdde5d6283a1c09c70db3b80515d4af15e7bce5cf573ec2eb44cbbef381ba42", + "regex": "(?i)^https?\\:\\/\\/dianannblackcherrygevk\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "3dc80f8284b16fdf40dbba9252c2bd89b7a2ac70312efcfb4983ddb768256bef", + "regex": "(?i)^https?\\:\\/\\/fashmaksimivanovolnpqea\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ac27f4201f3410eb586d0e1fab07de811d43b4b070e4a84f8b94ecddbdd1a5cf", + "regex": "(?i)^https?\\:\\/\\/xrpofficial\\-reward\\.info(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "28dec042e680d461ba1ce39475e12e6c336601b3ec2edde8303e9b2fc912d72d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ruu\\.html[\\/\\\\]+hwkls\\.html(?:\\?|$)" + }, + { + "hash": "cdb0c8392a3722660d39a0e1ae9c447af2bca0ceb8ce231ce3656b88b65d5ba5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d3b70467416c73e579b40ae8fe3d52bce3c1cae564ba9259f28fe12cd20eb1b5", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a1a1fc1b55d5c804ddd3aeeae5d96c03c447594871cd2b6fadb4a126d910b407", + "regex": "." + }, + { + "hash": "4ed3813d7c0c1fe93e2968f574b6238f5dcde5bedc8c9f87f3dcf7897d82cd56", + "regex": "." + }, + { + "hash": "3a686f8037606d9d73efaf478fcffcd844250b402029526f0ec9ce49baf60c1a", + "regex": "." + }, + { + "hash": "d35d983eefdcaabfb82776caebd00bfb63ee9e2ee31ec180999065b0f853c37b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\-2214689013" + }, + { + "hash": "81816f57a78ba6f9de114d624aea19dc086ba88e2e944d1bf021ce6760cd3d3a", + "regex": "." + }, + { + "hash": "9d1e38f904ee4b2eafaa1d10ccd8cdf8f01145c442525594b0cfe3d1b807214d", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "6cb59440f8c3e2a256273f8dfc42ebaf89ef5a46dabe5c62e2a04953c9b2841b", + "regex": "." + }, + { + "hash": "1420391905bd34de99fd4ca83a5902d86b42a048dea7cbdf3865e426594de8c5", + "regex": "." + }, + { + "hash": "4b52383c51a5fee98a56517333d2e5fcbbea6b12194a90dc995c6c23e60463cd", + "regex": "." + }, + { + "hash": "06ee8ec35460353390661d488c19df851b7d0899f5578b280ebe44f07ad2e769", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a8d054d126e61a3754fcee94e41fca2a324f4cb4b263631fc48eb9c7ea600a85", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "45f6d05bcb6eaa246a676b92edfb5a5c22cd92d38b4e1b3b0d0ba90aea91b647", + "regex": "." + }, + { + "hash": "8feb9ea4308f620d392dfa3911c3bac17ef9be974271b13e5f1cfdb7e1f0281e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "98a93a34b15da24bb286aad0ca7a1509313b978e690c84573a5212c23431ad02", + "regex": "(?i)^https?\\:\\/\\/correos\\-isw\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "3473648173e2c33fa9a0e9a126214a3aed66511d958095f528f8ecea39e723bf", + "regex": "." + }, + { + "hash": "48e80030e621edd8d799f44f2dbaaa9046a857f97e0d3c2de93327b239a887ed", + "regex": "." + }, + { + "hash": "d928a32d702f69daa6ffd7a4d6cab7bbcb487f0be2b831c5bccf0da9a41a54be", + "regex": "." + }, + { + "hash": "4d17ed2f8d6b110f754e64e9bbca8a02c985d7d8b7d41eb2601f862f3f11bc8c", + "regex": "(?i)^https?\\:\\/\\/modhopmfiprlx\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "4115605c51260a6b2ea3cbeee67d8b7f1dfc3679391ad34b9452f38af3b7bf60", + "regex": "." + }, + { + "hash": "d9d9b5920a0910c7bb1f78e912563f70f36a044182eecd363c6df0a4f4114026", + "regex": "(?i)^https?\\:\\/\\/fashmaksimivanovolnpqea\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "933d7a6f7cd4de264bda0587fa1a6d27a85eedf43d2fa8c6fbeb326a9e21a11c", + "regex": "." + }, + { + "hash": "252aad6c6ce9cda907bb00042589e115222d8c4d6ab20844a2cb81d3db73da96", + "regex": "." + }, + { + "hash": "c362373b54bf4c260ba07eafdd0e2df87c3957e4f0addeffbf626bfc398c299b", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "33762cde98809fd75964a63d8b0ca7ca50eeb179d34da5ef97530093c4d84f0d", + "regex": "." + }, + { + "hash": "8f64960892a94ed1b13e630536709d91e8fa484565c7b71364fbb20aa6a7b7a4", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1933b73e3ad879d80d262e7176817cf835c63143378ea4bb87f63972ece51144", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f20fee5c12c110130ab07f9b9e7f3af79d236d3184694674bef01f4f4542d927", + "regex": "(?i)^https?\\:\\/\\/frgvdzshbstr\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "2e2a87ddfbce4d94a649da0b6fa5197f7fb570a147f7bf887af1dabb86509e2a", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c817256ab7aae3dd8380e9602d2e42b0db6c4b172501f5d8185365ee92984fd8", + "regex": "(?i)^https?\\:\\/\\/ghjfju\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "da75f2583eb9e8045fe40b53f68bc43aaf18524f19fd500f18bc392ca71001ec", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e99023ba663dae4452f086d3875936fbbf80718ca6dd33b4cfb595bb4add2756", + "regex": "." + }, + { + "hash": "5346451f4823f50ec68b41423bbd5d77eb15b89f664996c5593786e28487ac3b", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "aae9a20bea45ce7cd740b804f4683b8a1947bc79d19ce88151ddb751bf8386fc", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "09bdbb8027f9aca0ec6b5fc3f961f83d3d7f7dc3e68fef9cce3e068455c15c57", + "regex": "." + }, + { + "hash": "bcbf3f360f4d3149a2d17afc705176dd3bf2da982f4f856aad11ee0c23af4a8b", + "regex": "(?i)^https?\\:\\/\\/jkhduysatewwbshg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dde0faf2926bf4afeca2e71817e739d0c4472c9e383a379112e49810b723d170", + "regex": "(?i)^https?\\:\\/\\/monesoabkal\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "374be044972d0b84b9b5b2b646c91fec766ba0311d31fc8efcd1232cc746d360", + "regex": "(?i)^https?\\:\\/\\/fashionbrandffp\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "962becef2e7ee4e2c52692044abfc440b4239f93e555f3ca0fed82eb2b14411f", + "regex": "." + }, + { + "hash": "bf1f26d3edcd528816cfbba979e30da6446d9c5cab67e044797bd4377f3dac16", + "regex": "(?i)^https?\\:\\/\\/monkundefinedwbndslx\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "47a3756512829b0a5ab11c7b9785929465ec9ea8a5815a25cdb8878e72812323", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e0df970a3a3505f0ded1efea590f3507533c89c74a1de9d822f2e86b116d3ffc", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "d7ded98647b7b3eece67eee80d5744bae323d8aa2962ae124e5acc2cf80ac6d0", + "regex": "." + }, + { + "hash": "58073b91d420ba0c99573421ece1ba4e76252b5265e2a59c0d9ffd853b63a1ed", + "regex": "(?i)^https?\\:\\/\\/leodeadshinexxnzn\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "a1a16ad35b2fc159ce9c7ea8928c5c921c7a019eded9835032e9473f3d2cdf9a", + "regex": "(?i)^https?\\:\\/\\/weeqeedyl\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a1bf4c3389e9641e06ecfdd05f58a7402bca34517656b977d72fe79ff7248661", + "regex": "(?i)^https?\\:\\/\\/sappermainsggmk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "80d9e31ba32c31e39adeae31743279b8499c4d207fffad1b336158a87e81f853", + "regex": "(?i)^https?\\:\\/\\/pub\\-3b8f37c2d89a43d1b222e3b4bc1e9669\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8105102acac8cc2d3305c5156ff2776687370227940cb21accf046c1be834a8f", + "regex": "(?i)^https?\\:\\/\\/dsajghdjkawwcns\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "4fab07c381571c1ea50a90c49c772666a5bcad80c0cac5d8c8e9e02abd7c4e60", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0cee742e3a99b80690075d931d608c849495e13cacf41ab56104bddf464ec6f8", + "regex": "." + }, + { + "hash": "69e6f2c7dbd0df5d22dd1538666e420ec1dcc60226655672fd744bfb42efbbfc", + "regex": "." + }, + { + "hash": "cd5b8e4592be473930039b6ab037b716c8d3b70c15f10d27e37a5fc1a202e8dd", + "regex": "." + }, + { + "hash": "0709afbb248df68ac5a3388120a41e313163fa0beaf74515727c80e7683e0039", + "regex": "." + }, + { + "hash": "70d85810093ed219b14a77769b5a91601a53e747ac159e7922cfe905fa8d2578", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "641f9d1e843814b2aac30db6acd0eb4b727abb4bdbd5a2552a9e88009b8b596b", + "regex": "." + }, + { + "hash": "15271c16de474dbb34901b3681f6d91c8eb2d5f333f67476fa59e3f4782d10ff", + "regex": "." + }, + { + "hash": "2f2eaae20e03ed168d2fb570323cfbc3af67d0a00919066cd414ddd3202dc206", + "regex": "(?i)^https?\\:\\/\\/rencontre\\-couple\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "bc839dadf9096347fab11bb14b74403a58f5c52b92b07adddbfb8e5df45ec81e", + "regex": "(?i)^https?\\:\\/\\/716722551\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "7847c732c61eaea0130637a6a397a137621e4b68a8154567b7be1c0825107d07", + "regex": "(?i)^https?\\:\\/\\/monesjamoabkal\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0f71187722e21fd18c8330337f03289f4daaf35d730d12218d34f0725fc96eb2", + "regex": "(?i)^https?\\:\\/\\/wavebinder\\-tideweaver\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5b3daeb374166a7d6e3fee2a0ff782b468bfcd347fd4c9d8327b4de466ae97ea", + "regex": "." + }, + { + "hash": "5ed00343a959a584f2eafcfe48de91692b85b1bd38fdc4c865c9943d931b6e1c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+receive[\\/\\\\]+order[\\/\\\\]+ynCVbGR67rA(?:\\?|$)" + }, + { + "hash": "ec0a04611e64a4b815430289807e0f18dc15f2c16189a35c886eba0129d5eaab", + "regex": "." + }, + { + "hash": "dc486d916b30523dd27800c17a5b93b04def0fde330a06d00e6863a22ec4f6d1", + "regex": "(?i)^https?\\:\\/\\/blackblancaokkeijo\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "6b4d4ed67dcac80b93e48303e0eb532520142d5f8f6566525fa9b77dee4a6cbd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "834f18b071a6190896c7e9498ee26726a0ee0a373ba91c4ea51e68438f63f18d", + "regex": "." + }, + { + "hash": "b9d4e5053cf7a81412c38f728151e54561f9a6362b39966354f2e19dd4954d47", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a19cf1cd3685ed3d77c3dd2f3776a1842c0ff764504ce1f03d0d2772ec559aa6", + "regex": "(?i)^https?\\:\\/\\/modhopmfiprlx\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "042b1c0dcacddc10fc9a41dbbada0087e0dff4d65b863c46694a1b930b9bb188", + "regex": "." + }, + { + "hash": "45531aa26d69505005de00ac5b26f85bff0548812714556058587e7dc5c0ee7c", + "regex": "(?i)^https?\\:\\/\\/leodeadshinexxnzn\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "22d59cab57a21f8776bcb7be493a9c04daad29d35f0a8c15a5d6069546e9e762", + "regex": "(?i)^https?\\:\\/\\/frgvdzshbstr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "9d1fdd2f9ef70351a8af30da176f36091fd674e4c9e58933277ce4ca69a7acb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+accounts" + }, + { + "hash": "742750081c967920589038720687e941e172acd4bd10cd02425329670373009b", + "regex": "(?i)^https?\\:\\/\\/dsajghdjkawwcns\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ece1b556cc26d3c01db4539e9c5b9d54564994b1f0666b30f0c4d6e1e4abe355", + "regex": "." + }, + { + "hash": "73de53edd06dfa0ba9b6fbf449271573afe6af6dc389a17b00ac056356ce379f", + "regex": "(?i)^https?\\:\\/\\/aqq2626bbxv\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fbe97c18994cdf46a5334a248b5e06cbbef276be10e0eadc077a5a67f002b36f", + "regex": "(?i)^https?\\:\\/\\/pub\\-08ad947a175f4074a567040343968e32\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c9c3b577f2ed0155276367b5fd349603d97114dde1f3f6b23dee985ea489a6fe", + "regex": "(?i)^https?\\:\\/\\/antaigouvfr\\-emailpaie24\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8241e5b9b841deccb4925f7f5ccea8d77aea9f72cb1dc65b623e9211e06845df", + "regex": "(?i)^https?\\:\\/\\/leodeadshinexxnzn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e2cca0af83cc946d3c14354b6e387bf15a81bbc274a0a2a4eefb0240390b4db3", + "regex": "." + }, + { + "hash": "9a0476cfa7fe90aaa049b5b04768fdd0aec20dfb6f5c196e224877ddc4a4ee61", + "regex": "(?i)^https?\\:\\/\\/cookingconceptsintercomecontest\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "63404ba8ad7bbe11c2f94cd355c4a02e1ee7bc5e857fed947b59260df8cb5147", + "regex": "(?i)^https?\\:\\/\\/linkertuxfqvur\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "83f83a0e459eaf5925ddab6874de1b6665a45139113f0c199ad38b2e0f52c70d", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "edb23e8b211059ec196264bf59b8b2fdc0bf2d5cdf0931ce6401cff53b961cc4", + "regex": "(?i)^https?\\:\\/\\/fhsadkfheakcafrg\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "959db153c2416c05dcd4577f59357d8918b57f6863990281bc94ae4e4731bc19", + "regex": "(?i)^https?\\:\\/\\/hangajjklak\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "ad47aad701ead635c6118c81cea4591c6569c92a8789e9947e670f397529ea52", + "regex": "(?i)^https?\\:\\/\\/weeqeedyl\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b1ffb1cda5dc0bce4c55f0bc283c459e593b5c0179a248fae8489f0a51f274a7", + "regex": "(?i)^https?\\:\\/\\/pub\\-77bbd39aaa92422ab9a0c696fe8d7a4c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2db18d936f7d12a9e3ea6a69748e421746e02eb3e6ed0ea1bd5a4028488aff55", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6f9024886461c0473356445a64f5e8f958348cd1b5de01b71cf311cd838d89fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+centre\\-unlockpage(?:\\?|$)" + }, + { + "hash": "49d1b0e31e5688ba3a56d9c817e492cb9f94ff2fb8b39752aeff10604aa43b4b", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "81e48010c0ed6cc392722ba6ca6202c0a634d0b179616ff998dbf4c132a5b7f3", + "regex": "." + }, + { + "hash": "ce556211c6a168f2fe0fc558c8f6d4dec91ede51784cd404aa5f926d2031f6a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "56703647e502b6d50e422f6b26c4277345307a20650386056ba915baee42c345", + "regex": "(?i)^https?\\:\\/\\/www\\.galleriaconbrio\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "658d6bbd37e5c039957883fdef72817f4e5233e08162127c418784b68384b7bc", + "regex": "(?i)^https?\\:\\/\\/monesjamoabkal\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "41977fe6fe26369bfefb8f5fdeb6e18e15ce26cf4c75eb7ced1628ffa0dd00c9", + "regex": "(?i)^https?\\:\\/\\/zjevzihallam\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8fd3ff4ee813d48dc735d71bdb119040bc09a265455f58c51079280b639c8527", + "regex": "." + }, + { + "hash": "4cadef1ea41a0e0a6654aa51e5f7d20a39e4d67de496effd12a0aaf426d5f717", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register58377(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "65484a3ec5b16a561f3cbc67a5f64d6eb407eaed14e0c439f13e884e10e8bc38", + "regex": "(?i)^https?\\:\\/\\/company\\-12\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "90454c9f4e40edbe5fe1a5eb8b520565d81e3ab30f136349802086ed848423bd", + "regex": "." + }, + { + "hash": "1642cac5210dbff6b75c1de73d22d36bc55f83953a3d84b2e461f5d64c8786aa", + "regex": "(?i)^https?\\:\\/\\/monesjamoabkal\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "2824411ad41d53d03d29eb8cdaefad4ab63c097e8c6ffcec95341adf1f4da68d", + "regex": "." + }, + { + "hash": "4468d03f347e50f4f218eb5fc3158779af53ede09d328f6313665c133035088e", + "regex": "." + }, + { + "hash": "bbd61b6b8b8d1897807cf72812a88632f2f5eb68715f657ab992dcd565947f5b", + "regex": "(?i)^https?\\:\\/\\/hgatmnibanaaliman\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "c0455e227e5c789dd136f44163e6594cfe2464c6cccbb1268ab4f10082db7f58", + "regex": "(?i)^https?\\:\\/\\/shsh2662662ssrf\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "01b9e7c81d70795f4b3ca2a3953eed24a103264258626259659073537194341c", + "regex": "(?i)^https?\\:\\/\\/pub\\-328a7861e29e4130aa3ff49f2d97e8ac\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "70a96e3e984fe7ea061f60efd26e1c262c288561a04c85c3e3b7a3abe7527b34", + "regex": "(?i)^https?\\:\\/\\/gatlahbalaha\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5064a5d2a69e694b11213b3c9d5a2d366a661d063cdef7173735bbc1539000f8", + "regex": "." + }, + { + "hash": "bb285d0197df24ae1cfae07af4b1d34fb96cfb64029f78b22455295b3044761b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0je9s5(?:\\?|$)" + }, + { + "hash": "a85e32d34bee78f26a28ffee9ddf335e8fd5517a090d7bd42a257b9002d757c7", + "regex": "(?i)^https?\\:\\/\\/dsajghdjkawwcns\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8d595789c5808d1037eae3b052a292b93c169bc5bdbdcc8656c908b7ff676dd9", + "regex": "(?i)^https?\\:\\/\\/instagram50670\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "41c416ab3d6e8e34094917850a373844b2874e5c41672e4fa6a7d5d3d5f592b6", + "regex": "." + }, + { + "hash": "bfe069306ff396f5bbe45e815ae4a66620c31e4bc50aa866748d7cb0beb728e2", + "regex": "." + }, + { + "hash": "a710f837cefa5499c4d7e14105e2c1c11d17ba324fa428911b26faf4c121f29f", + "regex": "(?i)^https?\\:\\/\\/pub\\-614cf422e8a14fa59534ab08e62b9a9a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6a83db82cac0d04b18831a1681988d28b545230fa6dd77597655375de32f0ec4", + "regex": "(?i)^https?\\:\\/\\/lempla\\.com(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "6fa2df3cba96b555c56daaff36bf4d052079b625ea36747f8adf57dbb06b9238", + "regex": "(?i)^https?\\:\\/\\/gatrelimona\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "95b1400005ea261cace14656f85b7fbb3a1696098edd2180c3fb70099f554460", + "regex": "(?i)^https?\\:\\/\\/blackblancaokkeijo\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fb000fa92bdb276336d845579964208a7e019d25a025698f369a428fa9186a06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "ad850cfa2b88cc6a43d9e7722f952122f721c79699d7eb985bea71fd5750df76", + "regex": "(?i)^https?\\:\\/\\/fashionbrandffp\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "0e741bb352cd65f72dd9be6bb99cc934362b861b501bd5e94f069845c3baa42c", + "regex": "(?i)^https?\\:\\/\\/www\\.silly\\-tu\\.162\\-62\\-219\\-87\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "b83dbe7258c20cefc71dabb639550f71ae800861a7cd93a551e577b295ba9ad0", + "regex": "(?i)^https?\\:\\/\\/bvjdom\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "1738f22f2e7f711bdba31508c1def3c098924fca2e784f379dc48f80bca3190d", + "regex": "(?i)^https?\\:\\/\\/qp66aa\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "26a9e3dc06e011cfe6f35a8462fe4ff0df0a5d6ac6691b9dd81d2a5ab40ce336", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "76458d939fb06f74fc5880d4eeb0aef8eb1b1f4f881e8f366c0b7907489881b7", + "regex": "(?i)^https?\\:\\/\\/jkhduysatewwbshg\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "352413b7836fe9f55673931dbea457dc0a097ce48e3873d8b05d30065839343a", + "regex": "(?i)^https?\\:\\/\\/modhopmfiprlx\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "11bbe618a4608bd56a684fd3e48101ed5f4591b6dddc5a7b4ad8b2af6d1d11dd", + "regex": "." + }, + { + "hash": "dae39a7aba638cb75958b27ef7f52179ba5fcb98baa07c0dd23cd011c75f75df", + "regex": "(?i)^https?\\:\\/\\/antaigouvfr\\-emailpaie24\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ae4d8c1d956fab4ed6dc7958787d9176da25d920a1cbf9b7d6343d326ffe4907", + "regex": "(?i)^https?\\:\\/\\/wavebinder\\-tideweaver\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f92975efafb3eb789edb7bb3c3c53f6d01f8203b7de803c919cef2e97c4ffd9e", + "regex": "." + }, + { + "hash": "fba8122fda42175098ce8e052bfb911feef2f13651d015cad09263ba043e0624", + "regex": "(?i)^https?\\:\\/\\/fashmaksimivanovolnpqea\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "3e81e18e5126cfd2ff3725025cd53a55a3195348551111b9b5d504dd6bf25fd5", + "regex": "(?i)^https?\\:\\/\\/tmnibanaalimanga\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "0503ef6ee155deaeee4fa33f27c9b7af27f638ce0a303120f013ea7084724328", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d0efa9ca71fb170ff10fd1bdac3cdc028d8bba3bcaece0a487f2d328e52cae2c", + "regex": "(?i)^https?\\:\\/\\/pub\\-f1a52e7b1e454e75aab969889927d0af\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cd1efbd3f093d530bd1e4b5ae3c199ad8156ff48e77fbd50b0d47536063e6121", + "regex": "(?i)^https?\\:\\/\\/gatlahbalaha\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "0ef17f6fc85af40b50ffa35538ae2aec3055245f84c65bb86926b83f1d9fe512", + "regex": "." + }, + { + "hash": "1669804128d66cf451e388c42dc1bbf9f1a3b74b9a50e9022a55893daca979e9", + "regex": "(?i)^https?\\:\\/\\/hangaklak\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "614558bc6ad33dae7b5ba1177762bb9b0d1177fc37bd3fad2252c5d4e2292852", + "regex": "." + }, + { + "hash": "e60e4df50315a289f55bf4f472d0484044b10f3217d2d1ac51d47ab81f20b148", + "regex": "." + }, + { + "hash": "acb7cac6f0fc28ce41d022ae901a80c2de6933ef6d21c6bc38caef855cc70c7d", + "regex": "(?i)^https?\\:\\/\\/kad5\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "699161e5493593ccb85b0e5d149341a71cf4ee4eccd9a0bfdbb5824bb67ac7dc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ec81b0cec505ea1ceb0eb183b9d18a7b6d30a5906a41d80c6d5a269ebccad733", + "regex": "(?i)^https?\\:\\/\\/kjgsdjasgdljshvc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6a8d1484a69bf6fca75e3d62c65efa352bf898b745b99107188d63e0e3c23376", + "regex": "." + }, + { + "hash": "71dfff95bb934cc29d41e0814a59c26da72fadc6d8dc54bfe5b75af701eface9", + "regex": "(?i)^https?\\:\\/\\/irantomvkigeps\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "b86046ab0dedbe631098a99cea8a79f4fbb09ad4de5786b992f627fac57f7dc7", + "regex": "(?i)^https?\\:\\/\\/pub\\-1faca7e608244b7ca412234a00951cc6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eddb648730baeaa692fb5cdee727cb1395d2e50745a693343ba0261e25d541ef", + "regex": "." + }, + { + "hash": "7003c0c4eda503ed30cc20cba9c45b313de51ce6f6702621b800b15ea529818f", + "regex": "(?i)^https?\\:\\/\\/khdiwuncccgf\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "06fb26227831944a6f59a226c3b329acbc7b891124dd7676fba788509a605090", + "regex": "(?i)^https?\\:\\/\\/kilikilinwokeomaaburonnenyemdigitsyougkluwanimodupeeyenwwn\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4240e46e29d01e361cb7a59b008db8f7265399b6352acfd255c348c2c0406ada", + "regex": "(?i)^https?\\:\\/\\/5starrr\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "d0487d158bdd1b604a4b368eadb382bc5746d7345a4b0ddba419cb224a9d964d", + "regex": "." + }, + { + "hash": "6b89b34f19f93888684e0df041c8909c2df9cf1311699880968a852eb775ec68", + "regex": "." + }, + { + "hash": "ca667c7d1af1f53b541ae86345ccca33838bf79cfb138fad1fa80a0df370e4b6", + "regex": "(?i)^https?\\:\\/\\/foodnetworkidfsss\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "fb098721eb716575a45c11077b324e0f257d8ee390cd0808447c04b05e90ca2f", + "regex": "." + }, + { + "hash": "ba21e7ffa19af7601e7415d50ed76ed91522caac2cd5e43b5c3c92d7d522695e", + "regex": "(?i)^https?\\:\\/\\/goodoodinetworkconten\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "480ae3afb8fabd01a707db8167733bfccf63a0c25a8a967ecc1caa0a1535dc6d", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "052fb83f4221cb526517875653a6f1b431f0e4b88d6769080749c4553156d24f", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b0fe52ca2b12a73fc7e44b20d9bb186f3c93e8b649d5041046fc949c2b655854", + "regex": "." + }, + { + "hash": "9fed992705641f00e73eebece0ae5dfe72a6f6b40c6ae9078a307db0a97e44c6", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "cfc846f08e0b89a761b646c6277b9cfdd4cc962cd5452b61849b202c424ed6a9", + "regex": "(?i)^https?\\:\\/\\/ignitelkfmzqmyw1wo2k9mjewmze2\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "11a77622a30b1aa1991f8e6e3b002596c6404126f4dbc5b8a220a484f23fc6f3", + "regex": "(?i)^https?\\:\\/\\/ignitelkfmzqmyw1wo2k9mjewmze2\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ad4327d4bfb352b9c239d0f3d8f602507f93504b378601806c29e2bb852ad50d", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "99af3bb637a0d7d00bebda1be69e704f8a2e940c3e8bf4adbcfdf297b12abc76", + "regex": "." + }, + { + "hash": "cc210d1d4ef81cb2911492cc6a210ae66eb006c3d69fa3c98392b9ab4e3c5139", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "8f38682d046a47885763933cb7cbe64028e7270441259c7f9fd9da2762292f05", + "regex": "." + }, + { + "hash": "f70dccaa4411eb8ea0927fcb6559745dccf8e9930a85cd43a59454da09835d50", + "regex": "(?i)^https?\\:\\/\\/ignitelkfmzqmyw1wo2k9mjewmze2\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "228cd8cc0ab1fa3893178702398bf00e86381c2a4823f0adab05c8969a3083c7", + "regex": "(?i)^https?\\:\\/\\/officialqunickeventsfreefire\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4a2dd5ce5d5b2d9ace6c1f1869a0bf80391219305e04d92d3c83847a2aa20ad1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mjMcu(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "39cc28203947e7405d269c59b1631502ed9fdb07c9f0fbedb444279a2f6144fb", + "regex": "." + }, + { + "hash": "18843421c0a39f91ae14eb53ac4432f92f0d185a5ceb64db883a7d9f7d7c15e5", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6cdd9361e52453c2ac88b944d29e2730af384ef3685e8a36969fac1b5f2f6602", + "regex": "." + }, + { + "hash": "0437041092b432bf202a281417477c2ad1287ac3be5640daa9757d93ca191f5f", + "regex": "." + }, + { + "hash": "049607a33067b916f136f5406923c449dd5c8c5dabd9a04de329c5f03c912d67", + "regex": "(?i)^https?\\:\\/\\/denovixus\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "569863cf8163ba9f533714b3fdda039c9991c2292f7dee4bd00715e0f821607c", + "regex": "(?i)^https?\\:\\/\\/vidxtodayzz\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "03c0216efab087fc49c3a1a227d88d1475a41765a40a8e22693fb72c90a53fa5", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f96eab67863e19c7c40054971cb37fa7546435560bd91b4d65b8e32dd1f9ccd0", + "regex": "." + }, + { + "hash": "877f4efdf27b10a9ba404e2f3b9d8a3a128a7b7d8a4c945fd5e321ae55fc02e3", + "regex": "." + }, + { + "hash": "2946ee1803dfbacf0408edfde58a9967390fcf4f9c77252f634db2e8ba775900", + "regex": "(?i)^https?\\:\\/\\/bestonlinefoodcookingcontest\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "9e7dbf9847c934a57a119146817acb398dbc94bfd702b0c43c25977fe96c5565", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "a244ef80e1bee803773b7d0c625ff555b2610184b91e47df11363776f67c0d07", + "regex": "(?i)^https?\\:\\/\\/officialunickrewardsgarena\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "cd618a12cedc610e49a4a60f09f693a8fa887f7bb4b4bc89bee36406144f3ba7", + "regex": "(?i)^https?\\:\\/\\/bafybeid4mflism3eutek7whcf7l56jbjfyzb2om5jyywdg5i2ekiippgai\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "ecedbbca34191b14161f7a0ec1025a6cddf1079f10005cdc93238863715bb259", + "regex": "(?i)^https?\\:\\/\\/trackwqzu\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "c03541983647e35c5ad4f23650b4048f6d397112335d03825b043c90468a7329", + "regex": "(?i)^https?\\:\\/\\/foodnetworkidfsss\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fbe34ea9e636d314a20bbdb0c5363e6ae63af620b9e2ebed2e099357fed491c5", + "regex": "(?i)^https?\\:\\/\\/foodnetworkidfsss\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "427c19b34aa69c828a21795bdba1c7b0376b5564100ab0fd9877fbfc07718fb4", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "324e51654edeaac41a03e2df6938dbb6d50837c557f2728f24087cd749d7127f", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5424ff4cb827fb4a59917f51e7448778c99cfeaab6af347ba93ac4618c7d79f7", + "regex": "(?i)^https?\\:\\/\\/officialunickrewardsgarena\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "8b1a4073bbdd6f77a9ec01747b2df4aa2e86449e1ed02a7cea18276217a1f274", + "regex": "." + }, + { + "hash": "6b72f10fb7c42240193a918952a08e73edba9b9952d9e77a8f04273322677ea9", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhgb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3be3847ff8199dcc7ae8df1e5723a9fa69683724a3206ae2bd421bd640e71a70", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a04ea8c9e335247269a6f996030749cdd40165f1111b645edaae403f0b2fa64", + "regex": "." + }, + { + "hash": "a762d0461e190ab75558e0788eaa8d94f34ce5d193232c2b68340acba22faf19", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-snowbinder\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b34d9898bb2984c3268bcafa46f49cc101454ff64fc64ba24fb34e290066372b", + "regex": "(?i)^https?\\:\\/\\/firstclassfoodnetworkcontest\\-program\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "11d1e21a25f0c7a7f519d50d4a770422b8ddc3d80c8d55f32b0e2d408a5324ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sdjhf78239847298sejuiuiy(?:\\?|$)" + }, + { + "hash": "0a6a1fc1cf6c4280b7219eac761e049f29550bb6cebc4e5ab9940daac600d285", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "1e7b9de338f0745f46ad8c3384df03cf9648845fba7bf72f46d6a35ae67936a6", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "87a11e3cc40719d0756a5b397040d187076eac8fc0c460365eacba53babc0c16", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c2c31aabf661fca4a38eda1e0f1382ca9b1faa6800c6b5400c882062e8f87d54", + "regex": "(?i)^https?\\:\\/\\/garr500\\.bonuslink\\.xyz(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "64b43cc979e04e121032fa8c843487ca4a892bc85295ec273a5079eefdeb2564", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "08a85ad322266052f1986a33d4f52886c63febad92eb60bfcf0c0a111bd47420", + "regex": "(?i)^https?\\:\\/\\/signin\\-com\\-att\\-screen\\-att\\-101362\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4e6a1b7f3497d8aeb291163a230f473d64186f13221c8b0982bd5f30d16bb24f", + "regex": "(?i)^https?\\:\\/\\/goodoodinetworkconten\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "6b89b34f19f93888684e0df041c8909c2df9cf1311699880968a852eb775ec68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mar1(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7054a5d12d25df183a9d77c32d52b04ba230a631c7de0de3b0511e9c976ae258", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "546de644cef727c35b03caaf4706d95ddf58e9245b7c41eee21964f23184a61e", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a826f6f422aa7af6936069186225a4507e6c2f16d5adf765284ff89ab4454337", + "regex": "(?i)^https?\\:\\/\\/www\\.coinbase\\.com\\-verif\\.167\\-172\\-252\\-159\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b469a94d81fd97000d7ebbaf13aab9c1bda96d306a4b566000cdcb2faf29a005", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-snowbinder\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "11c02dddd46fd70e3aef83728c9ae7bbb4d76c5763722db7b5f98d7b4b396332", + "regex": "." + }, + { + "hash": "0480d4557d45789b20a64b3a907873368524c7d29633d2a5110087d6fd7fa125", + "regex": "." + }, + { + "hash": "f67518c6b1d34fd95cc78a68543535b45504b45f4beda458414e99d34378ee2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hmy7p33n(?:\\?|$)" + }, + { + "hash": "66bcf1d1b1f840eb8d4a98e20d8c1572393cc46298b5c1491f2fc22b5ed9626e", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "531a76ede0beafe97a8cf60163cbed7499e7b2a7a79fe0a251195f95dc3357fb", + "regex": "." + }, + { + "hash": "07f45944626dbc5655b13c2e8048feda8a9079fb72c906db40fc3d30408ee972", + "regex": "." + }, + { + "hash": "71508cbaf05afdcfd455b4531263b92043d79cedf85c3c571fc660b6ab43fa99", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.sg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e24e24b4857dfdd2d39d8ae5e9a7ef25de92d59b18557b61e0f693cfb29b612d", + "regex": "(?i)^https?\\:\\/\\/vidxtodayzz\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fc75d1a80c61aeae6aab0df7abce3e2d34093d3144fd00c70999ba1d3d6189ef", + "regex": "." + }, + { + "hash": "f6cafeb09751ac37be2a61ba1ea9dcd53b6bfc62a9aa00896670adafe1a04b50", + "regex": "." + }, + { + "hash": "aa57e83f2ee5bb1f1a581718471d09e7cb99fb9856398b260c656fcc2fd19eb3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+co(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7a37bee80b44f67c81101603421b1ac779a817efa5fada32beed44938417cff0", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "2233bb09985be1a11d59a329f8cf7038dd5625a983b464e7a66e5c53fe2ad738", + "regex": "(?i)^https?\\:\\/\\/vidxtodayzz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "461c3babafa4f2dc8db066ff54ea231fb33231ae82fd3e480a7d0bdad27fad37", + "regex": "." + }, + { + "hash": "408bd87d3d86c6da2ad6e14aacd1962edd3379a6c50556b40a635e01d5d26e15", + "regex": "(?i)^https?\\:\\/\\/qeahbqarhb\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "40076748e1493d509fd05cd688327e6663e5184171acd8145659816b68c395f5", + "regex": "." + }, + { + "hash": "517d43edeb9429f991f14150530bb58c6cddc89973b2d537252b8e7bbdc19c69", + "regex": "." + }, + { + "hash": "64d1c5765e7bd4cebbb5aad359d39932899abcb0d201644b4aecb7dc6573fa11", + "regex": "." + }, + { + "hash": "79882f9f331eb341190981774638f82c9c5425b7e92681c7f9b119f246508d66", + "regex": "(?i)^https?\\:\\/\\/instagramreel552\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "f171d62ca4f4333d05b2592c209a500b1cb1d595194fe76d9d65a2546b115487", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "3929f5a1863c5983a5c31d72b19604ea7993956c3d65e239a7325b1d36f5ae47", + "regex": "(?i)^https?\\:\\/\\/instagramreel552\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a1e36fa2ee6f522d68cb7db0709fccd0cef787c9bc59f0e35b69bef3fa4ba68f", + "regex": "." + }, + { + "hash": "18de8d2341859b2e521d55fb444ca137bc639bcfab32ea83fc4616f432316b05", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "061ba5d51e3a0713c0bb843aa7a1870bed114c72ca06cfd02c4f66e9da15773c", + "regex": "." + }, + { + "hash": "d0eff86dc194e2e999f7da9ec9c3fc948c9556442e346895f6e88e89f0dffc7c", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "7434fa08c581ba9f3303562619208f6c2b4887c99f586384e7a0e92e1efc731e", + "regex": "." + }, + { + "hash": "6b89b34f19f93888684e0df041c8909c2df9cf1311699880968a852eb775ec68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+marathi(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e1ece6c4b1b83d0cc132a216df1476f8880087b5950c1d97c1987625857531ef", + "regex": "." + }, + { + "hash": "ea77287b4cffea2999d14f0f65225e54f690b7cfa7c0960771531fd141d3e91b", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b65c165d7aaa231eef7d67350547f0e89d3b2fa28fe3fa25db8475a89f573b1a", + "regex": "(?i)^https?\\:\\/\\/bestonlinefoodcookingcontest\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7f0a2f90f39267bcbed796148b224300ddda921c6d64af92b961c31c992af78a", + "regex": "." + }, + { + "hash": "d0974ad14f13bbc39fcc993ea989b48c6ff3562e5060727fb0c8dad8cab71e3d", + "regex": "(?i)^https?\\:\\/\\/ignitelkfmzqmyw1wo2k9mjewmze2\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "fd420af7357b4c6b67ade9a442615fcb7c05f80df6eda64572cdc84227dc415b", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-snowbinder\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "37bea5ef9dbd6dbdc5391ee2350f3e6df0b7f60dc8fe8f67fac61cd0aad8a9a6", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f71c7f19d822176ceb7c68f01c6f98c35664540ee03ebb92d40646ff68c36165", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "b2c8c99bf029d33a9a8f7a562ef8188a0b8ecff330ebdc60513b9499cfc3388c", + "regex": "(?i)^https?\\:\\/\\/networkannualcookingcontest\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "60f18833bd4fd1f70b6d8f70ac4e8aaa0bdb7e5334aabfec7b48b0323b59af3e", + "regex": "." + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=b40364[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7e4c794319521a1f2004e83396346769dbc0feb8f70d1967d1b14a6d2ffae106", + "regex": "(?i)^https?\\:\\/\\/goodoodinetworkconten\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "ceef62d57618b8d849d992bd0417ae2b4df140a189005a809346c890b2ff5095", + "regex": "(?i)^https?\\:\\/\\/vidxtodayzz\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "7a02bee336da3d7c8f414f1edbffebfe47213a368bdc54d90e8f9fd8f6d98765", + "regex": "(?i)^https?\\:\\/\\/officialqunickeventsfreefire\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3cdd7e2bda133faefde7968df910cac9f9340ef8967f3307c746aaa0dfddcf9e", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "966b33a33d71aac5d4abf56a7006c1a75efc1238ad3fdb2b5db0041e37cf618f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkidfsss\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "19738bd3c1bd9e5dd94ee55381eb47b986d72d7ccf58b559093a42578c43ff2d", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcowqohlpwckyaon\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0318fb2d56c31c05bd1179a1a51f008090b56ec57504afffb64e0ba0bf7bee40", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "df607d7ccbd7a1da75533455e6684a406d66a6d42fa1a23b70ce6924b8ede407", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "aae94a624b71a4e44b40080a583865c1e268303fb8d1ab8e748c20ca9ca392f8", + "regex": "(?i)^https?\\:\\/\\/qeahbqarhb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e78652c675c677d43ee54ac70df2029a3649fce2969631684361e6774d6b652a", + "regex": "(?i)^https?\\:\\/\\/officialqunickeventsfreefire\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6a6750c1ad2ffc9f070f5b4d3c96eaeaba1067febb252da6d97007d08a335fa8", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f3718570580fd448fba7d67d649d42967db4e36327982592790a3a3dd9401b7d", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "317631248073e280256045600a18dd50bcdce43493e2a4fc79b151aee2506107", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ecedbbca34191b14161f7a0ec1025a6cddf1079f10005cdc93238863715bb259", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9642cdfb6afddc63291fe38c274cedc4c1649fef00ade59301ddff68c089a0d2", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "711fa1afa695bdc6ab97a9be7d17708a9ca6e8c6bf598b8f35080e4923a50f5e", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "752b2fbd872f18e0b526e92e0a8e031f8f9fd06e33fb2b577acb94358feb35a4", + "regex": "(?i)^https?\\:\\/\\/networkannualcookingcontest\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1bb0ab53c72d16e0f9a7c351fea2f036df982537f0671994e320995011966961", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcowqohlpwckyaon\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "cb3f9e1aa19f2bef3e746cb953c481bdff458a9a3cf93514355f24337398545f", + "regex": "(?i)^https?\\:\\/\\/www\\.esend2me\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4c913a7b0c2bd41037484b580e4555cb74ce92a65651a099a5632a4a4241de79", + "regex": "." + }, + { + "hash": "729bd95fe34bfcd32b150dadc6e2b6851d2da8f4bb6a6c8790fda9b29adee9a8", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcowqohlpwckyaon\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b16257ecbde12257c0f6213ed582d25116cdc6f3b8f585800475de7d4b90815e", + "regex": "." + }, + { + "hash": "44a9b3451aeaa5ad340a5b34851fabda172c28701c035845ebb1051910574961", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "855b672b198fb30ec6e6779a724d370587a460033d7d0ae79f5d34ad36d6acc2", + "regex": "." + }, + { + "hash": "b4bf5bad9783bad22244536d6f136c3f33a95d6cc8d20cd14b463e9525844b68", + "regex": "(?i)^https?\\:\\/\\/foodiecookiecontestfood\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "70918077cb64131fa3876b6fef661871f373742194540f7d09c70a7aae87cf72", + "regex": "." + }, + { + "hash": "8c4d03dcce363f4ec729ff567af62b89b479d7cb817c5f77cccaa9dad9107db8", + "regex": "." + }, + { + "hash": "98e5bc47d2f5df0c84f6e02a31715f8079d907c8615badb1d0f615ca2db30953", + "regex": "(?i)^https?\\:\\/\\/officialunickrewardsgarena\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bd505fe685bd754aff93a2421ac480447ffc055b8a6c1d756998c0f9b827b718", + "regex": "." + }, + { + "hash": "13906165ffc1c3d712bacad114190fcccf5a033da3f37e39cf4cbea6bcae2907", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "ccd813f988ce92ac8a0dc37b233ff40906ae793b1c37fab42a725f751ca96973", + "regex": "." + }, + { + "hash": "7247475bdcecfa09296eef5d3fad4dc96e657490f518eba4d7ad00f83a964a6b", + "regex": "(?i)^https?\\:\\/\\/szrthfbzsrh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1d889b579a0e38bd33a176d43394d0ea4af2818c838f4b0e1876172ec17c5618", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0e8eef458140526f1f6e7a6940426dc589b3319d67c7754915530fff1e658b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+RedRiverCU(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "967536f9eeb688b99ff14f70abe2483dc37fdeeab62e1a2a74061fb845c9b015", + "regex": "(?i)^https?\\:\\/\\/sign\\-amaznon\\-prime\\.157\\-245\\-208\\-161\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a0a734eb29b64049b6d0d21aadb2906aeec3fcc311cc4178e12b03710e9f68d2", + "regex": "(?i)^https?\\:\\/\\/vidxtodayzz\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "b13bff8e65bb3409e6cf54a35c4cc45cd347e5189275b8a83b8625fcad7d3cf1", + "regex": "(?i)^https?\\:\\/\\/officialunickrewardsgarena\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "e9237f859486ec5141aa114d0c15c1f8d2633c2f0a1dc89a138d62e425cf1910", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcowqohlpwckyaon\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "abd68679760fd78d5bbc65702555420a661e9369a3b0106faf9fd51b7cbeb25c", + "regex": "(?i)^https?\\:\\/\\/qeahbqarhb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "42bc5e4729d4d9c050939389eddd3db377a6794556b22399f318a8d3b0007e92", + "regex": "." + }, + { + "hash": "7a1831be97604ecd87cb8c76d3f1e413c4d09ca9a51d24371e7623d10a8c098c", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-snowbinder\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "bd4a02727989fd3c2d0dbc8835838a2a1178683629d674879709cc78adefa636", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcowqohlpwckyaon\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "18a7bc638b61abe3eebae406ecc55febc388330ac3348381632ea4b302aa3232", + "regex": "(?i)^https?\\:\\/\\/qeahbqarhb\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "9ab0c1a42c9889c87499e61e37eee53ef28fb9c428269b9ace965703b2da8e5f", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-snowbinder\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e77cacdf55920d9ac12113724cab1363c53fbae1dac33a172051ecf80af50e4f", + "regex": "." + }, + { + "hash": "09bee1197f16a09651bf24d158f67cc6e728ecc3df8c7b4d0d254fc8db2073ef", + "regex": "." + }, + { + "hash": "967536f9eeb688b99ff14f70abe2483dc37fdeeab62e1a2a74061fb845c9b015", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "33d34c037cb758b21d14fb5895972bfe7888dd65857f349fb7f8390a9c506174", + "regex": "." + }, + { + "hash": "ec5f14fccfbae449773b23f4ab57d7979a8bae097fa6684632a5b057d2053805", + "regex": "(?i)^https?\\:\\/\\/foodnetworkidfsss\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "b825983e93590e74540e7996049c1345e09a20de32289796f20cc8a4445db82a", + "regex": "." + }, + { + "hash": "d20fec987162e79b8be4de75420ae5ec09af9ca758ba55fe5d9507dd77e90fb8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "610a7cb067ff073561aecb3a57672e2de6f83592b0825429f5cf370beb0873c6", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5f65f23163551347abfefd234f5c9e61bc605e5ab6fbfb73d62353b78e67fc10", + "regex": "." + }, + { + "hash": "1312558ffab26bbefc4f7a537ebd42a94c8fe1db28af9f3c4a71e6fd3d01c6b5", + "regex": "(?i)^https?\\:\\/\\/ignitelkfmzqmyw1wo2k9mjewmze2\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f945f7130fba2a0bbbe40382907ea14fc4fc474283417b1293947fbf6e0fe9fa", + "regex": "(?i)^https?\\:\\/\\/szrthfbzsrh\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "294652a988c97e6a4498895bef9e9e90995943d6e1ce24ab8cfc7c449672492f", + "regex": "(?i)^https?\\:\\/\\/vidxtodayzz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7da81b0829d3713310d5e377deec67f5eaac2bb67342895ffbbe516f27ab79ea", + "regex": "(?i)^https?\\:\\/\\/bestonlinefoodcookingcontest\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "f606de6146e4c4a33cbd6985e13662b4e0b4bcdcce064f1c7b39ef75c0a7a651", + "regex": "." + }, + { + "hash": "37d0bd31cfff7feacf1931a13cdcd2790610a9600ba824e34f5941924dd89f55", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a7433ff9c14b275d5c33e0ff54255683624e5f33ba8a6e8ddba9cc0bf7f1c3a0", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhgb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "20e192bb8173e8dcf8929db7734f6a1587d246c7c4af453ae8cc1c38b804cb1c", + "regex": "(?i)^https?\\:\\/\\/networkannualcookingcontest\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "be73b3a5b4b126bcd932978636c1284d3866ea4e519052859d316e90b9f1ea0a", + "regex": "(?i)^https?\\:\\/\\/instagramreel552\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "a4c70f9627154132ae721461150c16c01a8bd1677f568444750bb2d2841627ee", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-snowbinder\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "6ca41b774e917dbb44456d233e37e33a7a4350628c68f39dc78140dce29d45bf", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "0274e90bb94614e2013d0a55554ac761e2845ea1c70bb8fe838fe89671a26304", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e554a28a0a25133c5e226c38b9ab2c5eaf72babad9e9c1aa76e22d68d7b5a293", + "regex": "(?i)^https?\\:\\/\\/officialqunickeventsfreefire\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "2eb29d9ca87917a94b6c64f0716bf991fbd8c2b70d63a2a1f4a4f0530608741a", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0480d4557d45789b20a64b3a907873368524c7d29633d2a5110087d6fd7fa125", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+brt[\\/\\\\]+societe\\-generale\\%2010\\-06\\-2024" + }, + { + "hash": "eeacddc1f2e9ec0c7baca6030f049e2f6c273bf214675b1007c4e2af593a9446", + "regex": "." + }, + { + "hash": "830798ded991145ddcd78931f6d76b934965e4bc3dc70e2069abc6b32e510a7e", + "regex": "(?i)^https?\\:\\/\\/networkannualcookingcontest\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0ed8fe8cd71f99a3485471227c0daaf6bfccd94d64b56ed72d79dedf732f4c6d", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "c38285e338a2bab75bc44abd4327a6466799b708cf1ff2c79779062b10e5ddc7", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3dc5dd0efd3750c9dabf606bacbcea7df97f5dc75b937b5fab0c131d1d677489", + "regex": "." + }, + { + "hash": "151b71b45f758bc330aeef5f7c1d86ebe87bd8bf7f3a912fc104a8cd49bd69c9", + "regex": "(?i)^https?\\:\\/\\/84378alkvjsf\\-921kfjoasif\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa9ad151b7c9e9f640cb882a81c996ef35b3f2f8ef414078769ff666d757275e", + "regex": "(?i)^https?\\:\\/\\/foodiecookiecontestfood\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d4070352d3f36fc2b77a9db1dbcf1e39130b441bd3aed6b85cb601a5670c253f", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1039dbc3755d9431c652f441fb8be179b6659ca565b1cef4f81e813c3b4723e8", + "regex": "." + }, + { + "hash": "3da1bc2154cb146b9d11f20e0853bf46d3c1756a234abf3f11eed602425860e0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u\\.giftitem\\.my\\.id[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d17450a2e7b3f493ce5ec1edf127ca353a55191dffb5e0ef2b97f9948ee19d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kVpfpH(?:\\?|$)" + }, + { + "hash": "ae825c3a815bddd155d842683c286819dd87b8662e38621a14daf0df9d21c09c", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhgb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "a7a2b74aee3c33465d5e895c57a270841a2943a953620b2771fc2d83afd24e3f", + "regex": "(?i)^https?\\:\\/\\/ignitelkfmzqmyw1wo2k9mjewmze2\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "548698462e8342cfb6d64f96d31be14f7909b6f7a8ffdc392ba8ef095ee990d1", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a41e9b3ae9265a7f41f2a359e8f76f4102c04f9649709f4934b2368216e8a754", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?uscpsx\\.dykfjuq\\.xyz(?:\\:(?:80|443))?[\\/\\\\]+bd0392[\\/\\\\]+KmdyeHkjXyp8JTFjfGV\\-IyQhX0BAfD1eQDF8JSEkMzY0J[\\/\\\\]+V8zZCEqfn45I2kjL2[\\/\\\\]+5fQF43" + }, + { + "hash": "bc64121a91c727c929e98781d47adc91597705a8d83e6c2dc789f6f7a91fb37f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wsaq2" + }, + { + "hash": "a07612169fbdd478385157415f1a3b01d0a987a7d8c393809bd63a049ad8bbfc", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhgb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "e38fd6c8f73629e6fc48a3d55c3695b842fcc04e8d94407a7ce2aa64bf59eabe", + "regex": "(?i)^https?\\:\\/\\/foodiecookiecontestfood\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "f5d376606a039e922e8185307b606e4d33666cee85546121776510f7467eb40d", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "dfb7039362ed1a3cbe704a6c03039638fcebaeeae92838e499349dd238d0e2c3", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "74eda8ae9f67c7739c1c791e41d17f921ec3ea57b57ed573e6a167325745b69e", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "477edea76d58f40eda86c0f989511b0e852d5ef424d0ab210f8ce1fa4486752e", + "regex": "." + }, + { + "hash": "1bb5d263ac6eabf048d8436bb706603fae3251dd63c94b28af59ee6ee29cf1ea", + "regex": "(?i)^https?\\:\\/\\/foodnetworkidfsss\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "54f4d282c67a770866a9deee4a2d7ea6cbf88cb35f0102fee3d3a38bbda83714", + "regex": "." + }, + { + "hash": "ec1cd23621b3dec9388439adc47790206ece9fe92940f67492587414fc425920", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "026f492932b79fafc1f6a1b92aa5f30bdc49d96bae9c9973014e8467085d509f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xserv(?:\\?|$)" + }, + { + "hash": "a41e9b3ae9265a7f41f2a359e8f76f4102c04f9649709f4934b2368216e8a754", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?uscpsx\\.dykfjuq\\.xyz(?:\\:(?:80|443))?[\\/\\\\]+ff1c8[\\/\\\\]+JG8qQF50XjFn[\\/\\\\]+IXIzbn4lJEA_Kml8NjkjX3llNzckYSUhZGNfL34jIyVeX14kQ[\\/\\\\]+F58fjFfX3gkcSMzM3" + }, + { + "hash": "11e55ea22917233b6dbae13f5d3fb276737889f88ce8e1c030819ec932aa1a43", + "regex": "." + }, + { + "hash": "94ac3d00453db0043cd3d7000ae4e2ef063501256daa8e97bf855da356ba312e", + "regex": "." + }, + { + "hash": "7d0a0149990ac0a4941b15eb74afc4ff7dbc315d7b18424d4e36504f487f9b73", + "regex": "." + }, + { + "hash": "1ff809ee141286132fafbd13a8430621ffbf001be036362dfe01188f16dc813d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php(?:\\?|$)" + }, + { + "hash": "4dd6e61bb1e18783cd63de25cf1b393e55d21e5e8fbbdcfc4b00601655785080", + "regex": "(?i)^https?\\:\\/\\/szrthfbzsrh\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3920214356c46f807767695c2d652981e2eff60fbf1b7fde4ed124751d482759", + "regex": "." + }, + { + "hash": "770d9b7c0a333eb779c25fff337b8b607ba5ebcdffebe1dd87ef781676865fa1", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "92cefacdf3d571969bad355155edb74d0b4bccbf496433137ead98f186089b46", + "regex": "." + }, + { + "hash": "178abe47e6ecf0d1cb2fb1fbcde057b567e76238be37d93ce873cb64dcb8039b", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "2d856054b1d6d2440ea78f9b69f33ff13135d0a0d725ae34e8e7095644ffe8ee", + "regex": "." + }, + { + "hash": "a10efc86933a474ea475dfc442b119a09a0a6e711d9026affbf6f98220123ffb", + "regex": "." + }, + { + "hash": "ad30a9e68253de6f1ba650f2156554d88b51856938522abdefcc1fae5c151cb8", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7308881e9864e4f872e9f696ef285d9f385cbd145c0d1065e4262787a2a09920", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "74218ce7392831c7e3b72706b21b548dc29a5b981eede294feca1d272e774bb4", + "regex": "." + }, + { + "hash": "e584bdb1adf864ac45a89ca2415e1d9a07d3708adc6f76726c8d88c17fa80b25", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+build\\?email\\=house1733962428258\\@andywaite\\.net$" + }, + { + "hash": "f8ad7f0148bcb68d2d66561c24d8e0ed750a5e87a28bfd94b04fbf150f867529", + "regex": "(?i)^https?\\:\\/\\/foodiecookiecontestfood\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "2e16b9a73af81f4c428885ee94b65c83c639ce987c5d1adc7db4777e11938d12", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "d6bf7163f46b04726281a67eed44ab35538fa32d6cce4e9e8e51231db96e3637", + "regex": "(?i)^https?\\:\\/\\/instagramreel552\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "2e415aa2fde9e8fbf5d03c7a1a403d694a587386c3727c2646e4be3aa34df0b6", + "regex": "(?i)^https?\\:\\/\\/officialunickrewardsgarena\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6fabc2e326c98b611142084a6429fd457866192cc7ac0a2317f58cde3de3b389", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.tw(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51e97f971f36eda920c6cf8a9331005f89121c105a9c16dc3d66571fbc6d6337", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0ba32c879b397e9c30de0d9236b893005bbfa5b2d25315a4a9e8051b57676e3", + "regex": "." + }, + { + "hash": "018f54150b09272e73f0dac10b95dc08112f83249a28f1665bca893345b622c3", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e0a2e58418ac400293a6c8e0662226f7e9e2db9289b7860153a04185aab3c072", + "regex": "." + }, + { + "hash": "3e74f62f90bfc8d0d4c0eb9b95248fdc84d54133b1fb26b89554422a32fb16e3", + "regex": "(?i)^https?\\:\\/\\/instagramreel552\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "82d7e8e0b476d64b37437bf0431dfb093d4a880c42cb50fb01b9eefd486e84ec", + "regex": "." + }, + { + "hash": "7427bb2524fb7fa2349838216567d227b59ef9ca562cb0d3e8353478854f4816", + "regex": "(?i)^https?\\:\\/\\/buitenlinkvzw\\.vip(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "42bcf73fb85039b2c24035e6ea9d6f67cbf7ce3d8aac4170bc92e37e5e379431", + "regex": "(?i)^https?\\:\\/\\/officialunickrewardsgarena\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "ea5517dfe9f1fc30ebb16db03aeb04fa66008d0c5dff03ef8d9c931b68ae8326", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "50441ea44cbfa462daaf0000877885c2b7393cead1e365bb2e9a2f05a42cff24", + "regex": "(?i)^https?\\:\\/\\/qeahbqarhb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "3f7f984812677b986a6aabdda7b4fb913a60fbafc05144fa213c81f103f90aae", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "849788a950e06bbceebf8509df37138633c3a93d622f6a60e3ba09147083a0ca", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "902ff7e4950fb7e70e2f6b7d8ae458b93033c4f1d540ee3777db0f8534ae4dc4", + "regex": "." + }, + { + "hash": "7054a5d12d25df183a9d77c32d52b04ba230a631c7de0de3b0511e9c976ae258", + "regex": "(?i)^https?\\:\\/\\/aramexm\\.live(?:\\:(?:80|443))?[\\/\\\\]+my(?:\\?|$)" + }, + { + "hash": "3789918cc247975ba020dc17b8077c8095f2da404d38b00f6ff47b7b524dc6f4", + "regex": "." + }, + { + "hash": "0408607abeaa4e8ee2d1de71ed876e4d8fb39709b57a43488321c8d683cea0ae", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "81e4829eecd58a93cf081d1c74169390b51f0c9f661c0a5c3c6bf3ea41eab6c5", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.com\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "24242b7d53f9f0f382ad2946d43fcff7c20c8cb7648b9865a034e0dcc169225a", + "regex": "(?i)^https?\\:\\/\\/bestonlinefoodcookingcontest\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "294821040ace800f76924c7069dc64404d5b565170a8eedfb523f2e13fac72b1", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d0e02924eb7fe2590789f9ec7e3066d6fc749bfb64fc4e06ad669844c32c3d28", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "6195cb96becb0832e5fc88059a9cbb15864415c497c20f7056dc59e725e4c372", + "regex": "(?i)^https?\\:\\/\\/officialunickrewardsgarena\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "dd87d3c1dbbebdfbf9da638b0632261c6c998a1470d2f77fc9e6d902c503aa1e", + "regex": "(?i)^https?\\:\\/\\/bestonlinefoodcookingcontest\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "5a871d8dfcf5a987a724a8d586bb2e51b2559eb57843096df1d23780ffebc976", + "regex": "." + }, + { + "hash": "0480d4557d45789b20a64b3a907873368524c7d29633d2a5110087d6fd7fa125", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+brt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8c3b0aada193cbf7861646669393c207ea3681c17a47e1a19e66841b6a7d4933", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "68ca306dd00fe6bd65eeb1c0e061b15bb70b3561499e4274b6c05a441df20a07", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "43fb9a9579483172ff06f9cff36d8e23cf3f32899d6be8339ec48d827754c101", + "regex": "." + }, + { + "hash": "51f22b693515fc0c7df1e66225344f4f03eafa7f3bbad6fba1ac27e3e736f776", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "549734f99287d243c8b6c5e5ea7715d7c22f63fcbe467e52823af1e481a59259", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "4835bfc2f181dd7f08779adc9bbbb5c579354199aa8a4faab9131887178cf4e3", + "regex": "(?i)^https?\\:\\/\\/foodiecookiecontestfood\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "6168954675f3c2b525728c63d20f16c81ae8e35ce424b6f1c3982e44d0172c56", + "regex": "." + }, + { + "hash": "b2df5641750dc7f2a9d2e82030b6cce349007c6c56422986abf1b3eae687972e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+reqkya9naxqe\\.html(?:\\?|$)" + }, + { + "hash": "c3849e80e664bdde0860ed1c3646b22843833645d6b5a461465cbe7243a3dfda", + "regex": "." + }, + { + "hash": "e6cb966349d43fb4ed09d2b1eb26eac8a503d7ef03db23976d7d05a667942583", + "regex": "." + }, + { + "hash": "ff040fb587fa6f640177a55a136c28192b8cfde69e56b2b05c3b14d0549f903d", + "regex": "(?i)^https?\\:\\/\\/officialqunickeventsfreefire\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2ae56e3b885951d9a912b3f3d9618431dc7979f2aed7ecd6c75bd7115fc7d526", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "50caa0a8b9538cd9ee98eb6290c26a83799f53349c2148f70249b70ecf5b0ee8", + "regex": "(?i)^https?\\:\\/\\/officialunickrewardsgarena\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1a62d55c084b36a469cfddca62440ece2d86fb94fa3502fa2c2eded3945fcc56", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8b3a2201f21c66b9596a5ee2ea008283df3bd905c8453bf489effc5c8012ee4e", + "regex": "." + }, + { + "hash": "7b3cfd2e7f69dbc315c2e657f150b23230a706a474d6f03cc66272e55cc4dde0", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a8cf985856336b2048e32757553faf9cf847566396baef2ec50200c81afc2c3d", + "regex": "." + }, + { + "hash": "097cba5adc69c3e42fe120180d489414a8de056f7d9d0b64fe5fc48ce7dc33a9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3365912d091260c56c281dd42fab66e17ffb8316d688058230b5ba11fc14c5a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+slug[\\/\\\\]+l43Fhpbnk88ogAJ7(?:\\?|$)" + }, + { + "hash": "6856789f4b99f452ee5cb5ecb76ef438a7026d08099dd17bdb49f026621daa65", + "regex": "." + }, + { + "hash": "41fcfebd76a609604d2c0f4374fc6d619740d1a6cadf7cbc2e5f313af6ce2d33", + "regex": "." + }, + { + "hash": "1b7c3de895422b6e2c15644739831306435ed19a1478c7f9438289c987cc8c56", + "regex": "." + }, + { + "hash": "f67518c6b1d34fd95cc78a68543535b45504b45f4beda458414e99d34378ee2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hmy7p33n(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "12b4e438c505fba7ec97bd291dd66ed92c6e953fa3788c31eee6546c70c3fd3c", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "4a7c8c28e7e60240b30f8e45abb493de2440df23fdc10cd9f19d3338e296c60e", + "regex": "." + }, + { + "hash": "0f8a5430a79860bc0e5bd23ccca4aaf1a825608095644eabb0ea6818d1532fdf", + "regex": "(?i)^https?\\:\\/\\/foodiecookiecontestfood\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b3f1d1cfe223e4491403eaa5df26c578ec98faf62fc26a8bafab98ed0644a765", + "regex": "." + }, + { + "hash": "45c8cb7abd84055b6c5f2ece6140576f09022a1a83b140f3d5884482af2b08ac", + "regex": "." + }, + { + "hash": "5b07c89c006bddd9feb07e55d818d5c98716365f58ffa922f0d6c906bf448ed5", + "regex": "(?i)^https?\\:\\/\\/potabilices\\.ru\\.com(?:\\:(?:80|443))?[\\/\\\\]+amex" + }, + { + "hash": "e26ae382d62671ea62af4c61f42663093d8ec3786dd4499d99bd74e987cf4240", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.pe(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b58f70a9c6ca4fe6d7b33a0c922d7a1dcebf61399888cc012d4a090568acc3d2", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "9d30f4446633c17f39ccc5c26158ca8f1a735b995638e7eedf4e879dddf552db", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2ca296011f170acd7da2d82a3ba82ed14e368c4cac1869d886acb289030cc3c2", + "regex": "(?i)^https?\\:\\/\\/firstclassfoodnetworkcontest\\-program\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "11a7a3010aa979bd512232b3a3a236b9f7dd0ba48734f693b6ed5a654db7884d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oauth20_authorize\\.srf\\?scope\\=openid(?:\\ |\\%20|\\+)+profile(?:\\ |\\%20|\\+)+email(?:\\ |\\%20|\\+)+offline_access\\&response_type\\=code\\&client_id\\=51483342\\-085c\\-4d86\\-bf88\\-cf50c7252078\\&response_mode\\=form_post\\&redirect_uri\\=https\\%3A\\%2F\\%2Fview\\.officefilesstorage\\.com\\%2Fcommon\\%2Ffederation\\%2Foauth2msa\\&state\\=rQQIARAA42Kw0skoKSkottLXL8gvKknM0cvNTC7KL85PK8nPy8nMS9VLzs_Vyy9Kz0wBsYqEuATW2lhte89W571HQ\\-ess_lP5VmMnPE5mWVglasYlQkbp3\\-BkfEFI\\-MtJkH_onTPlPBit9SU1KLEksz8vAssAq9YeAxYrTg4uAT4JdgVGH6wMC5iBdq6SonVqNEn12nlWkORtF4nhlOs\\-qFVFrlZacbljpbGZeaBFc5lBQZl3r4uRRWO\\-X4GPm4F\\-hXelZZlGT4lpcm2RlaGE9iEJrAxnWJj\\-MDG2MHOMIud4QAn4wYexgO8DD_4dnVt6ttz6Ng7j1f8OuVFPlnmOf6FaSEBlR4GZRXZgT65KcWuxWWWZQGpmYF5oSHGKZGZuf7BJsW2GwQYHggwAAA1\\&estsfed\\=1\\&uaid\\=b63a3cad06ef4b7ebc282ccd4337f923\\&fci\\=https\\%3A\\%2F\\%2Fportal\\.microsoftonline\\.com\\.orgid\\.com\\&username\\=hugolehmann92\\%40outlook\\.com\\&login_hint\\=hugolehmann92\\%40outlook\\.com$" + }, + { + "hash": "761f4d3951c6310a882814a52992beb955cf70443ba117a300b12bdc9688e993", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "67752066acdaf32596acfec3d07a4e2829d48c450fc59fa4d13e9e6658a02ed2", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "887a71407bdf6ff02c3f49ecbd41d9e769e35ea1c26811bf705461f3437c4084", + "regex": "(?i)^https?\\:\\/\\/bestonlinefoodcookingcontest\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "b6059920271e3c2feb4d50cb4d78987aacbd31e40d7eeb1401f7c44b30bbeda7", + "regex": "." + }, + { + "hash": "bd29dc5707e5999350bc609776018750cd722c6067cdc0390021d240d9744232", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9ed0204c478595a78423c7d6e5aa0c6c5681232f8db1b0ed4ad43ff0f6bb811b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30f91da83dc3b89407f621b8c0a0e1d92d52568af9faf96b99b07e326d043492", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "30d6773fbcadb4b4ad061777e87de5fab173060da3afd1880434ce03874f14c1", + "regex": "(?i)^https?\\:\\/\\/goodoodinetworkconten\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "3fe76ced51035a6486567d689bd0f48867cce8bf10f6769efabf82190c54484b", + "regex": "." + }, + { + "hash": "7be639f13b9b90f700ee720b3de1031021bce9dacfcdbb3801331622d9756803", + "regex": "." + }, + { + "hash": "485f67e24babf25b6ccaf6953bc154ae86487bc65cd1869491f76bcdc89eb4c6", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "713600e4fc100b43da235e7745f952b9ba9d180744a5867ebd52bce9420a63b6", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "fefb354cec5257d889779d518c4c962730dae20824bea0f43ae9642995a26ccc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+com(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cc60b344f6342f8a4bf78290161b4897a2895c5a88212a88a7348f95df4efbb3", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c513cd16e1b7843000d379d163247a31a81e25a5dbb00187bf4c1f8e2dba2ed", + "regex": "(?i)^https?\\:\\/\\/instagramreel552\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "a5a425e0571ab99d571a1133d7942c1ace4f38a5168119c01fc583feb5e945f6", + "regex": "(?i)^https?\\:\\/\\/manageaccount\\.amazonprime\\.69\\-49\\-247\\-76\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fdf610f716abe5933f60898600f81e82953d1e9d43df0bbd652db8579fc8c4b8", + "regex": "(?i)^https?\\:\\/\\/firstclassfoodnetworkcontest\\-program\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "37348e5afcf303cf6ebbbd65fb6ca7cbf979311e859224febe3442e7a3748e83", + "regex": "(?i)^https?\\:\\/\\/pub\\-c606f94a57e7422aaa899c7756623050\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f172e1de3a4ff962a5fa183d378ef5c9f43abccf648d4dc516dee55cbdb7e87d", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "6816f247d2ee8d531434ca2e448a0788cb5fd662897f75c505be15c40bd6e459", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a8fa3ef4a35db78f2b7305d1ad9ace2ebcc4c192de697fb29a3e7ba742d25883", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "536490805c89c93f7eae37133b072f3035a475fab8804db563f5beda5944749b", + "regex": "(?i)^https?\\:\\/\\/www\\.lakshmi9001\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a6e1a75c118d2c422b1c31221070a1c303458df87d9eb2a4ce60201f00860680", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "29990e5482661f000ffebe96a7b2dd25ea517c301ce0b63138d744fe02387549", + "regex": "(?i)^https?\\:\\/\\/pub\\-88ba7d567b5b43ae887e34c8fa46cd48\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2e2a06d9838a77bfb946fb1ef7957a7c535fe60140cd905dd24c5228348c867c", + "regex": "." + }, + { + "hash": "f188aed665647d7d5429305d17fe9ef3a06e515051e341d9342b3c03efd9d131", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mail(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b25aba2cd9e0a6af6c7daf94270cbbe0cb4add5641836c3df5e6fa5dc2f15a9", + "regex": "(?i)^https?\\:\\/\\/ignitelkfmzqmyw1wo2k9mjewmze2\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "f3d1315ef42efdd1e14bfa39f81e1148b498c8c80db5a16e01fe656534a24b72", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a4b5f2f6e816553ab963dcd2cdc61ac6984d0c009b26953245d1dd179d36517c", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d852bf8d633b6ea62b664d01c98689b0f0ad935a393a4ce8ecbfb53270b71105", + "regex": "(?i)^https?\\:\\/\\/ignitelkfmzqmyw1wo2k9mjewmze2\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "df4387a45adb24797cc42fea2efaae1f7f64355a0a3ffe81c14fcff914015f49", + "regex": "(?i)^https?\\:\\/\\/pub\\-8eb32a3cbd5f4c57a59f3d5732f987d0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b46081339d381fe4c36e6edf72edda15c3788c90693939dfe7639af6fed93692", + "regex": "." + }, + { + "hash": "d0adf1b0516fb74c05b4ad936feb2f793763e16d5752dff5c2051156fdd00002", + "regex": "(?i)^https?\\:\\/\\/goodoodinetworkconten\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "8bc7893371bccc08d63163ebd12c7f1a1c5dd688ec298429f7955fb8899226fd", + "regex": "(?i)^https?\\:\\/\\/goodoodinetworkconten\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c046308cfc6a83bec3dd5a41d8e3572e94089f1a87934577b8160387b4e82d5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+af1b6(?:\\?|$)" + }, + { + "hash": "0a86d64860050e5e605dcc072374fcdf4142d232d565c63166c308527da5dbaa", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "caaa3cd644fb68fcd87e8d6254ece477a3444f2bd99f6a78d6739842f5c5e728", + "regex": "(?i)^https?\\:\\/\\/networkannualcookingcontest\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "eee4efba25bebe5a569466c8bb81f4108404b556b4dfb6425bbb33822d581166", + "regex": "." + }, + { + "hash": "894a0e1e5ccdeafb569bf00f84e894c264f5fb3ae88003d04093859605e2e24f", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhgb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a443451ee219941a55ac6de142a55d17da328d5737b80b6d969a04ae21975f96", + "regex": "." + }, + { + "hash": "f90391a75310d4f6bc6a4ca42b0e71b09e48fe5ac34c85e4cd0310515fad58f6", + "regex": "." + }, + { + "hash": "2c895483ff0eae801531bd78bc4b1f8575bed8fc859a4ebbbbc0926c2503d463", + "regex": "." + }, + { + "hash": "0179354f98ef83c155d355464f66c33112b0abac232f93e6311654b7fc45a5a4", + "regex": "." + }, + { + "hash": "5e4a3c8ddeb41e55bbb436609d07f552e45ed99b962920e2bb779bff7cb943d9", + "regex": "." + }, + { + "hash": "0cb3406f9c7ad3b58f9bdf7f8ee5bc5a5883399d7bdabc2089d66735be1c0e7c", + "regex": "." + }, + { + "hash": "c9de0b8a750a1028f2ca0393c3a76dac99321cb90b18a8af2f24baa593a9a0d3", + "regex": "." + }, + { + "hash": "bcb04688555e5b8ce3ea8bab8545fb95b300f9ac00953bbd0c848fd2e424a358", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "d07fae83e531fca9240f87753bd9feacbe63379fce57343f6630bd01e2d09caa", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "b591c4d3d58d89919ff3ee842fc5e71215eb2f9a74149f89e8d37a9021926af2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+204e7e577e045246415655035d5204551312012057564010577f46512348054b1059554416067505010e02530405470257435c0d5c5d120621635a150d59530a29(?:\\?|$)" + }, + { + "hash": "8d1ac9203bb99d4547079d4b3a525b8f4374236333cf61f6e5446a8a1253902e", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "eddbe36e03fddbf6edc3f3613c03f2b3a590dd47fc5c466475b9cc6af04c1306", + "regex": "." + }, + { + "hash": "8b66bb4859d5b735ea3de4b129dbec7fb8cfadbb71a584910bd719463cba317c", + "regex": "(?i)^https?\\:\\/\\/www\\.fatihofficial\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa286d5f6b9c810a17e40d548a40bb63a62b7b301966194ebe2c79c7ed7483e6", + "regex": "." + }, + { + "hash": "89b81adf6985dfb5408c12910ed1592c8a6145d06d4b2b4a9833473d4fcbda36", + "regex": "." + }, + { + "hash": "324ee28ef7051844c43855de84ab8390ba60a4670eaabc89d56ec94c4814d523", + "regex": "(?i)^https?\\:\\/\\/foodiecookiecontestfood\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0f50d385328f78fa85394459fffff7532e30f886136d1fe76f9253d072a2ee3a", + "regex": "(?i)^https?\\:\\/\\/szrthfbzsrh\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "280c0da8126677f35199f16480d41c16bb8e04265e3de9ec802b4205e25045ac", + "regex": "." + }, + { + "hash": "01b9865b9369220de921c47e06231fcb4245491d2b9b22597d1ed9688f211db4", + "regex": "(?i)^https?\\:\\/\\/qeahbqarhb\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a2ff803a01d124cf81500c6a9ee219274d8f27780558e8e346acd73dc00db1c2", + "regex": "." + }, + { + "hash": "43bf6da390c5daf10023df1611ed017984b76df08fbb7f65793126b0dd9b987a", + "regex": "(?i)^https?\\:\\/\\/pub\\-778082f6319e43a8ba71b5ec9bd34253\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ef354e46e8fe9d880e7500db75b4c7aec035d5f461cd6e0fe9fba484640b5405", + "regex": "(?i)^https?\\:\\/\\/bestonlinefoodcookingcontest\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "5ef2d50a4132e628fa0f1b1c5c5069d4232bfd0949c447226f453ff10f805fe5", + "regex": "." + }, + { + "hash": "cc8a55cdcf3348a650f71caf46023c4cb09b86ae860ac8a78d68f19fa402c12b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9172[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "50828940e5a74e63b0b9c77b7ec3e41a74b778242e16353bbff37c6b131cb09d", + "regex": "(?i)^https?\\:\\/\\/qeahbqarhb\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9879dbe4c1f7684374293c5e460b660d4b50f85101ee45a87eeb64e3132f3ae4", + "regex": "(?i)^https?\\:\\/\\/officialunickrewardsgarena\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9e06c1b871027c74e93050069dd12deb43efd6a0a4f9aa09fa50c087c80dfe04", + "regex": "." + }, + { + "hash": "9d65df04aecaf3f25b3c6684452d28a3a9779637bbee34adc504ce58591670f5", + "regex": "." + }, + { + "hash": "11a7a3010aa979bd512232b3a3a236b9f7dd0ba48734f693b6ed5a654db7884d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+common[\\/\\\\]+login" + }, + { + "hash": "013cdc723308cfb562eb66e50906ed45cd99dd55383d58ecb69f3c2b33c11b9a", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcowqohlpwckyaon\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "7b5e604f55fb8a156c0ad47e3800da9bbd3245d645770a227621955a93506458", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php" + }, + { + "hash": "1673b62c06c66415f3c61be0d23fed50abba76af12487d91191a77cd7e89dbdc", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9ed0204c478595a78423c7d6e5aa0c6c5681232f8db1b0ed4ad43ff0f6bb811b", + "regex": "(?i)^https?\\:\\/\\/moklivz\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "c375a17d4fc828fad4a4baeb69df891d4d7084c1b0f2e12f25e4b870f3648114", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "84057bb9f050c6980b90e71df5ad31c4575f36622fc20da9a431e236adbda921", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2597a1a5b1a530dbd693453d8937bd2cb82f6f7f0bbc9a4db510dd26387ee33a", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhgb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e3f7ba5ba072082af3deb5e9f0fe80743fa846f84de50282399ff31f050fb9ab", + "regex": "." + }, + { + "hash": "5f95c456ea0db18a81bf6cc001881663499ba53f8df03988f14aae854e0a20e2", + "regex": "." + }, + { + "hash": "bf503cfe123d33197ace1a7665910c0bdee3ea1bb2ece371d80994ae56be8551", + "regex": "." + }, + { + "hash": "c68a934184282f16bf2068fdc164440a7fc3e31c49bd6a1e83813c6758c413eb", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3a070330c4569ea138732fa6d17e53482dea0afa13411ece6688643e6e8525a5", + "regex": "(?i)^https?\\:\\/\\/firstclassfoodnetworkcontest\\-program\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c383afde403b8a88e5499e90fc957add4c92a157f245f2740ff61d9487691993", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "913675167fa401e265760fa7ddf6b144a21c37c1f5e0789af82d18a64070babb", + "regex": "." + }, + { + "hash": "73015aae46f3806d36e284b123184f6f56a74f869e1428ece0347f3783ed74e2", + "regex": "(?i)^https?\\:\\/\\/szrthfbzsrh\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a1c7d4ee7d68c50f874412a248bfce7b46ed48099184d885b3c300f58524cfa7", + "regex": "(?i)^https?\\:\\/\\/firstclassfoodnetworkcontest\\-program\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "aad20ee6ac33f085126e1beda5021690e501294ba4f62492a399d07acb8f7c0e", + "regex": "(?i)^https?\\:\\/\\/87484\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "ec51fa65e221f0307b8775098d1b260f38f22df531ddae1cf14667fc3e93e6b6", + "regex": "(?i)^https?\\:\\/\\/officialqunickeventsfreefire\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "92388e9fd97df0cee0c57349cf8a819250391cfeff9bf2d906f4576636fce4eb", + "regex": "(?i)^https?\\:\\/\\/goodoodinetworkconten\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "63193a130b7e4932055231de2ec29b0869342087e220cf3300785cf4e1d88ba9", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "e520198456f545e865be28ab7b3275c28a3303ec739a4b8140abc5268e24da91", + "regex": "." + }, + { + "hash": "36dc646025abcbf2ea3ffc840dad87aa00de1b2e6c26cfa8bed3d59f2f8e47c7", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=b40364[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "d0e8eef458140526f1f6e7a6940426dc589b3319d67c7754915530fff1e658b7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+RedRiverCU(?:\\(|\\%28)1(?:\\)|\\%29)\\.zip(?:\\?|$)" + }, + { + "hash": "8537548407f237d41de63ee71ab998dad5f5c14c9e1616b3f584dcf768504e00", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcowqohlpwckyaon\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "003660be35ee948dffddf0726469f175f90f31b7bea5f412ad2d5b4b140bf23f", + "regex": "(?i)^https?\\:\\/\\/ignitelkfmzqmyw1wo2k9mjewmze2\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "e19366c8ef15bc281293d04555578b6bee6023034e45d3c13968c6982e0c8519", + "regex": "(?i)^https?\\:\\/\\/wallet\\-tokentheta\\.sercure\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d89d3ca73020fa81ec2aa56c8ed0529240268fdd8ded3318b38dd9afb656a08b", + "regex": "." + }, + { + "hash": "7ee96d90874aa6559e31c3ca0252dc8504346d4906f1bb581396965dbb39933d", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9a93c4304521ff7f7cab581b43d8e1cf38a950021cd8c5c5884a3b91e3aff7bd", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "1286f0d1ea5d212bbf30d06f313ff4ac290b1fa88ce37be1e5f7cdb6e490da31", + "regex": "." + }, + { + "hash": "11a7a3010aa979bd512232b3a3a236b9f7dd0ba48734f693b6ed5a654db7884d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin" + }, + { + "hash": "0143809c77f2fd1ed886348b9295054fe06f0ec2135f3b7b731714b90ac1ebdf", + "regex": "." + }, + { + "hash": "e4660a8a349bc706c951fb86ada0eb4b5d2dc8e682c6a07b67ee71793e9a2110", + "regex": "." + }, + { + "hash": "689215ff90ca7bd2ce86f7c9b69eb7637acfd401cab4df07551ff90a92e76380", + "regex": "(?i)^https?\\:\\/\\/szrthfbzsrh\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "de9abc43cc408e24ba2ede70306027ff26ef16c8d4c7af42434eb6f93ed4fe6a", + "regex": "(?i)^https?\\:\\/\\/networkannualcookingcontest\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "af2f58e7fa6faa80f5e8b50620e8f2ee4a7ac50b165548902e12d4f6b7ebf898", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhgb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "91ab0cb781bfc6a7942dd15632eb55b084b6d5d5b074891e4d2c4658af10671f", + "regex": "(?i)^https?\\:\\/\\/networkannualcookingcontest\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "641d8f8dd4d969471cb0cee15265736e7bdf7663650f0d9724372113c6bb1dcb", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "24d8c7743f83c2fdc90626a969ad0f834b2b4378f5d761c2afffa5c396050034", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "7920d25ede158b80571cf2d122bd6ca48f9f14c5b8f9e72be736f6750b9aa1a6", + "regex": "." + }, + { + "hash": "a7dbec2fd909a60d9eccef2148711f4ca1de66bedf8ba2b6f706a742aab2e57f", + "regex": "(?i)^https?\\:\\/\\/2016pornoizle\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ece119c262676bd1064d081694bdbb399205ab8cf23163ab758292bd5c76fab1", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6e54eeaadf514c3158ff6b95087fe5ef7da335bae4f9f8e0288d46ce106d1b31", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.md(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4afd44f222f98182d3e3797a4d445e653cf15e4167e817887347f871a3408365", + "regex": "." + }, + { + "hash": "827f04cc3558aff7f9f921d356d3dea5b85bfbe39c82d69928b2cd5d27451a22", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "0e57f38d2c52452a66e270c08bf910e210e8dbf607c3f34b8a04737049c0eb74", + "regex": "." + }, + { + "hash": "d65cf09637f897c4a2a74b6562d874a34223f922e4e1f669943ea243ec11a045", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gh[\\/\\\\]+abv\\.php" + }, + { + "hash": "800cc685d69499792f9bd3f8f9e04cdfd0641d0c9a75791f067dc77342c7269f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rswuptbxznpqhgd5722555963930089604293363L26MWBMTX36U4\\?mudtkawwwkatuggpnfvlh8779400390252651883668279qac4yc5f51kgi80vqb$" + }, + { + "hash": "d0c8335a4deccba8030e7622a88fa3112135a4de2078682eaea8a7919a4e8e0f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "11a7a3010aa979bd512232b3a3a236b9f7dd0ba48734f693b6ed5a654db7884d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+jsdisabled(?:\\?|$)" + }, + { + "hash": "b591c4d3d58d89919ff3ee842fc5e71215eb2f9a74149f89e8d37a9021926af2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tradeoffer[\\/\\\\]+new[\\/\\\\]*\\?partner\\=7293561\\&token\\=Z9wha73M$" + }, + { + "hash": "a1d63adb3ac5515b311823e7b0f86626377b7edd618887bbfbc259355bcf82eb", + "regex": "(?i)^https?\\:\\/\\/foodnetworkidfsss\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "49cf9a3190f50d11a63b72b5059f0bd4749182d9abfe17e64060f1f50b1e3b22", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "99b3a59d04864d5781081187338e479d07a034122b253519b2f2ad54d39a001e", + "regex": "." + }, + { + "hash": "73ce38299e6c73bb7adb6c7bdf6e7d9db264a0b0038514ff5fc6ebec3f64013f", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "260e7d1dedce1adbe8dcf3faa2fee2ae622ed9923aec274b92272348c4f807c6", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bc465da182549bbd28e19e70a21e7d712447c22d3469acd0e26fd1ee36bcb34b", + "regex": "." + }, + { + "hash": "e8bdb379938bb331cbcad4b89a38c4a267896e855004f104f33d715434ded827", + "regex": "." + }, + { + "hash": "49aae5a43b1ff815ed2064e5270d4d61fad2f9131a027d77a02a748882949359", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "8fb2d12c83a015330ee68782de6703268f5cf137141f87399f6dac39ec0ca08c", + "regex": "." + }, + { + "hash": "97458ee02f19d9aa8a6cf05e31e524619be155ab21032d37e59cfe53105dd284", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.gr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "48bb7c5670093f58df55f08d020065ecebeff8072cd532c62f11cc14b77e8f21", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8f752c9ff73966f905094752c0abc96209d989e2799b33ef8b06c1daeebf0ddb", + "regex": "." + }, + { + "hash": "f75078673d4023893533abf9495da84fcb0ef729cb4a84c2e166571d6b054972", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+PzKd4MV(?:\\?|$)" + }, + { + "hash": "6afaa3abccfffeb7386fb146ddd95efe32163a5ad1129e5b8031f1a532e7c9ff", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "c8176c2c04dfc643874d1cb8a4fb77756d06741187e136aafd8d03c4013b9f8a", + "regex": "." + }, + { + "hash": "729e26c87694db7c494547249f1b42d69f4431dce29d87aafe5835ca0653605a", + "regex": "(?i)^https?\\:\\/\\/foodiecookiecontestfood\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4a2dd5ce5d5b2d9ace6c1f1869a0bf80391219305e04d92d3c83847a2aa20ad1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mjMcu(?:\\?|$)" + }, + { + "hash": "3a42d9ddef43e9f04ca3a46f2623e3a78abb7b8016f79154f6123dcb46c5bd48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b122fce84a67b714d35ecb6d45bb236c6f4a8d4df02b9d042cbb6b2528858bf", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a6cc447257a3039bfbf76dfddf71accc6ff2a840bf7f1fd1f04b1221b91b8e13", + "regex": "(?i)^https?\\:\\/\\/szrthfbzsrh\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "09e8a1893377e36c3897431dac97304ad6ae45c3ad5269b938427567cc71956b", + "regex": "." + }, + { + "hash": "d8b3070274b4aaa3c22bd1a26e66d859ef24702f2b15795178b1432860f18d8d", + "regex": "." + }, + { + "hash": "f69f5b8c32d52017e8e9029583a636af658cbfe54e295d83f924a04ab32e9a18", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-snowbinder\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c918ae922671feb070fa06767e102ad08276824afec1c859687181d913242b8c", + "regex": "(?i)^https?\\:\\/\\/goodoodinetworkconten\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "99e64db3ec65c48234b7abde45f5771d582c02f1de88de1bb8ccf21b632a0e02", + "regex": "(?i)^https?\\:\\/\\/instagramreel552\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "460dbcbb005db46d36ee9e90daaa71742b9b41ee4f12040817e9c6075d475306", + "regex": "." + }, + { + "hash": "d24ce0f6df84b789381368a59be1a39b982e4b6966b09720db4d645c22ab1f9e", + "regex": "." + }, + { + "hash": "39bf09ea1265b0ff93661c215f449337ebb5577ce9b185b26b0cac7e4fcece5e", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1fdb3abe6c2e7faa5b907995f470dc26abef25b9b352af9e03364ef6b9451ad7", + "regex": "." + }, + { + "hash": "77dc0a961c999d3da0c9aeec3a6e925ac39a14adda26a49077f10233079baf03", + "regex": "(?i)^https?\\:\\/\\/foodnetworkcowqohlpwckyaon\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "fa656a58676f393da0af3285e2fb0cb88a40d4f88a6f322f1ab3b2ad23562c58", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.nl(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6b89b34f19f93888684e0df041c8909c2df9cf1311699880968a852eb775ec68", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ind(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "556db68a37dda7db6c66a121bc2faaf16592da55e07500f326263ea922acbf1b", + "regex": "." + }, + { + "hash": "b8f276d0acaaec7e7eb42c62dfadcd1957d75eea550320f5af3971b85bedc283", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7d87bb74565cfe1d3782c370279bf86989b743051ed8b7740f7ee996ff8d22c4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tsgswynhp(?:\\?|$)" + }, + { + "hash": "71fdfbc526723b775c7070a3d2357d5bd1a2c09a072537832422c607712c3b82", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d9b9abf3cfa4e94d3f633149b22e870dd899aa6a9067e685a5338fdb54f7ba80", + "regex": "." + }, + { + "hash": "eb4e9fa2f538fcbcdc6b15d94e6246b0d5ef7fd202b6798f5abd39a6c791f36d", + "regex": "(?i)^https?\\:\\/\\/goodoodinetworkconten\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "98a93a34b15da24bb286aad0ca7a1509313b978e690c84573a5212c23431ad02", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8601c84ced7aad51c583665f651e2d23142fc2c03b01a1c38a494e39f3c7aa23", + "regex": "." + }, + { + "hash": "3a476f8b13b9609c81208c1dfdd166dfcec8442435cc56c6fa6c0e04d37a08ba", + "regex": "(?i)^https?\\:\\/\\/talktalk\\-106281\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a8fc76f50162e35ed19ade1ab228e3e591f5ae4b07a930f28703a15b38117dfe", + "regex": "(?i)^https?\\:\\/\\/firstclassfoodnetworkcontest\\-program\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6f5edb6fbd505eb3bce24ad757fb53bb97fbcdcbc81c2a7d2cb5b706a1d50d14", + "regex": "." + }, + { + "hash": "8af42495c64464115a02e71be711e2136cade8e7a1e1cab4461367354e08fe34", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vx[\\/\\\\]+auth(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3152f518d82fe25b1e1aac41989cafd282e13f6d622ae4ce60e85d2dbf748978", + "regex": "(?i)^https?\\:\\/\\/vidxredrooms\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "ab714b8739c1c95162f43e5b65b4977ff83e680ab3987f1cebb4bb20ad24f603", + "regex": "(?i)^https?\\:\\/\\/global1cucaree\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6c504546841141c54380622af0272af8aba0aa156077a3154af934f023423546", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+card\\.html(?:\\?|$)" + }, + { + "hash": "86965f618762a0f361a7aa761a1bb6ae9860dce408dd66d3ad747eacd5a83b86", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhgb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "9908ced06b9ee5bffb7505766fae764275811eae7aec03fe2e5c73e2501552a2", + "regex": "(?i)^https?\\:\\/\\/vidxtodayzz\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "f3e98e4bb3d69e79d89f51b5b2b25d165547216cf9b238a93a20c884f04a7d3e", + "regex": "." + }, + { + "hash": "b32466a085e911e5fc7396b4af3093c8751c200897aac6de613e6a20181ef373", + "regex": "(?i)^https?\\:\\/\\/vidxtodayzz\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "1a9a6846eb41286c0514dcfb2439c642596e3a4c039f2eeef060a53a36843e8f", + "regex": "(?i)^https?\\:\\/\\/codontracker\\-dnashaper\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "54ede27001c3ecd1097ca613e8b50a2b67798db8a69e008037b06d1154dcdd89", + "regex": "(?i)^https?\\:\\/\\/frosthunter\\-snowbinder\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "27bced5300ff2198fadadc3c6a6a9e9ec83604175666622a43f2a6f20e5e45d4", + "regex": "(?i)^https?\\:\\/\\/yeniguncelladresi\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d516f5e04965ca41c14f862b895b4f16252d58cd6c30ab09364678b5f8dbb632", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "d3869b48a44cf3787bef50141446c7361c14307b08863420332fc8eb0001f96e", + "regex": "." + }, + { + "hash": "3f08322996b821ce229106262e1f9c7b1e5cfd96d2c4c16d8fd8faaef7dd8120", + "regex": "." + }, + { + "hash": "f064cc584032d34bee3142d0c1db753b34093d67095df8127884a6e0c0f99a67", + "regex": "(?i)^https?\\:\\/\\/networkannualcookingcontest\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "27fc1e9e8a530e9e52abe77495ecf6846ef610958057295be67098eca4c5d37c", + "regex": "(?i)^https?\\:\\/\\/foodnetworkidfsss\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "7bbd0420da13cdec876ec347bb35361c25d6d044fbf48db6f8cd33ae6124ee06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "13ba1e9bb6187e34e929ba10779725e17d6818db10f04419a6703eeed9b54e8b", + "regex": "(?i)^https?\\:\\/\\/bestonlinefoodcookingcontest\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "50e7408a6259edf56e06c505ebba91115df1d36c21551215d9ee262c218c322b", + "regex": "(?i)^https?\\:\\/\\/eqahgbeqadhgb\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b8ef85920e17795782d291e895866b2192f288df35df4ac2e8ec3300b476d755", + "regex": "(?i)^https?\\:\\/\\/robuxcerdsix\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "38371a77fae14bf137f12f134b4dc4a9ba1597e6fe8903832414598789c1bad0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a74309b23fac30d637b1f459bad9255b0da437e0fc493cf9c72cadb398651f27", + "regex": "." + }, + { + "hash": "e10e5280ba17ec247ed9dd01b9ff38e0625a3ba64ef43a3d407c907b94a959f8", + "regex": "(?i)^https?\\:\\/\\/officialqunickeventsfreefire\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "482a2750736816c07b817de189e459c82aca0d6e254c17ec120d90c04dc34127", + "regex": "(?i)^https?\\:\\/\\/vidxtodayzz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d78caeb61f41837db42e72e77fc7a89e8eaa28e44e123d8b1230a38108bdbacf", + "regex": "(?i)^https?\\:\\/\\/szrthfbzsrh\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "4eccdbd0063f269c715807da6ce8e8889b7a9a4e35d4cb34337f56e9df17539c", + "regex": "(?i)^https?\\:\\/\\/56464vcxx\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c091d81cdac54d65b581483c4e4f2b879f0f47304cb1cfe72344fd0d92ca978f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+inb\\.html(?:\\?|$)" + }, + { + "hash": "8aea29f119469627979d3b0ef70c8d7739e5a55cb74fc050b552cd5d21147eee", + "regex": "(?i)^https?\\:\\/\\/cookingfoodnetworkff\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "d6d8c998360e6a6cd89c35cd26d08ebb73a0d2dc8beb084e63b03da1cdef545e", + "regex": "(?i)^https?\\:\\/\\/top\\-mess12ger\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5f658a09e61ed34f26bb58ee8fef8a46a527d7605970d612761994a1c4e73a26", + "regex": "(?i)^https?\\:\\/\\/bestonlinefoodcookingcontest\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "bb285d0197df24ae1cfae07af4b1d34fb96cfb64029f78b22455295b3044761b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0je9s5(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8d99aea4955eabbb22bce54664560426a642cc1100a20447e3521fcb9fd26eaa", + "regex": "(?i)^https?\\:\\/\\/foodiecookiecontestfood\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "4f2ad9b87748a0480092012682a68f9af106f524a2df0e47925dbea7ab3d2538", + "regex": "." + }, + { + "hash": "f15d756221435702b79313c5bae33dc6fc24ab7f63189876ab23e790df757373", + "regex": "." + }, + { + "hash": "cb51778b4b76143ada93d5ba77fff91b5bea71702b3688999f1d2197155b5311", + "regex": "." + }, + { + "hash": "f74f062132215657c8988ac97e21fbc9b46409a74064f2815e1a106fce13a74d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+yy000\\.html(?:\\?|$)" + }, + { + "hash": "3a42d9ddef43e9f04ca3a46f2623e3a78abb7b8016f79154f6123dcb46c5bd48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:7988[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "c3675f63f579e41af85cfcc01f69a8c1b9ca5e00322c9be2887334973ef3c3a8", + "regex": "." + }, + { + "hash": "4e2d9c2a934c6c02ad89246183bf3698529d695c00da309ee9f427568e807c45", + "regex": "(?i)^https?\\:\\/\\/foodnetworkglobalcontest\\-gd\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "fbe3ae073348b7776838762890e3c7f629e5ccac4c325edcdc7b8750f0bb9176", + "regex": "(?i)^https?\\:\\/\\/robloxarsenalcodesjune2021\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f0d22acfc10508dfff301c64140889ba1e270833cd5d611c335112268376a68a", + "regex": "(?i)^https?\\:\\/\\/networkannualcookingcontest\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "74a8a5e8eb6bc2ae9e83e514c3f8f727dce4ad842ee8c2114cafe410517362ae", + "regex": "." + }, + { + "hash": "39bf4fdd2d0865f0cefe23e21bb224263547d924b33ed59c90ddf7b01e3f7934", + "regex": "(?i)^https?\\:\\/\\/dsadsa4234234\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8c5de64f709ad283f0d43c666dcb6b33e5fed9f382879faf845d488241dbfdd6", + "regex": "(?i)^https?\\:\\/\\/qahgbqaghbf\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ea3340b38738ddc2cd59381aecd5918abe0b4baed30cda7ff0cf5ba47c5ca44d", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cc8a55cdcf3348a650f71caf46023c4cb09b86ae860ac8a78d68f19fa402c12b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9172[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d547a81d295a3df499e86e74ba3e0d3797783045eaf17cd41f17cc49c5976bdb", + "regex": "." + }, + { + "hash": "56428a754ad3d4708962c40b3b502155d45774f1fd31b31fb844612f00cc852d", + "regex": "(?i)^https?\\:\\/\\/rgdfgv\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "65f3b002b55ac1f5a1f64d7e0efb3bac57b57d6e18b3e40ba2e800a472862876", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+www\\-ubb\\-bg\\-95933" + }, + { + "hash": "5df249617445edcb70a6617121570c2f43f0eb2cff8965099affc69d37b4a262", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwaz\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7d4d34e7846066ba7c0210e398b892990821d472410af6c4aa4fcf19b79cee79", + "regex": "." + }, + { + "hash": "c035328e68afa704f425dab83f682a5f53122db0e91352dc87f254108570c6f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+MN\\.zip(?:\\?|$)" + }, + { + "hash": "03370650a36532c56c4bb65253a21af4b03ee0f397645381e379ffc73240aac3", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f3208af97971b6d0172dd1416be8a7fdbb6d1733359d99d4caddeeb48a7d1e0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?israel_stars$" + }, + { + "hash": "da4d428cd93bb780b714022547b087420bc991d6a6d243467e55f73426b07430", + "regex": "." + }, + { + "hash": "6b3f2551b632c5f9b16b4409d3764ba80bceff17f30c521ddf78f060eb5bfa4b", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "faae6c20d3d153ce3719ceaa6911a78fafb084d12c563d5db86ceae5736a6c97", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "533af94bf7415a3e53bd5de31f7fa8d952980937e98f11eba16e5383f507f761", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ad454f0ff99f73cb70c05e9c6b66a4d89349220616366063693abe0933b39728", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?n\\=BlleBUo$" + }, + { + "hash": "a654d1e90e1bd0c7ead85cdf0f1e0986a2095babe14995771d8b00523f4970c0", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "dfe564a52fe9edba06bb3543e72c5fd9d4e560854d6998f82eb68ba3e199a9f4", + "regex": "(?i)^https?\\:\\/\\/rgdfgv\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0a4b83bbbb3067f6b153956c9bfa12cc1a7ede86e14bcda8d097370639814eac", + "regex": "(?i)^https?\\:\\/\\/egdfg544\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3b3cd441683d3960c8bcc2feb796589d6b8bc03400f37502ced57ba4ef1e42dd", + "regex": "." + }, + { + "hash": "8b1a5b8744ab82832a7441c13bdc73f04450e3b2273f64e0ee3170c71c596f68", + "regex": "(?i)^https?\\:\\/\\/qahgbqaghbf\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "3f2759b32cad9c12c7501a8c11094b151d7d79d6a8e13dd0ee97ecc64b19a8ee", + "regex": "." + }, + { + "hash": "11c0f207a9ed5e5b05a4fe99693b5132b2757d7f9a0a6f5e7ec16f5dcf6d0b06", + "regex": "." + }, + { + "hash": "fcbb602ef66e35d45f80231daf4c47d30ed3e679b15a83f52ba3508b6c9f9013", + "regex": "(?i)^https?\\:\\/\\/daskdj3423213\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "5a9d543b5f3bdd7ecd8d21a2eb0be0ec8e23902d4feefad2d8cd24016cda307f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "af87c6c3dd2e6ee0a9039821ce20710214a9f1c6cd27de96b75ffc251f3a2823", + "regex": "." + }, + { + "hash": "21ad9c9c376ebe9b3ca81d0e3c8f269a9c5f78fecc73c031cd341f4e964b871b", + "regex": "." + }, + { + "hash": "e8c9c19b8985dc88dece484b307f273c816a9ad3ce6d6e7cb0801d03a09222b1", + "regex": "(?i)^https?\\:\\/\\/goodconceptscookingcontest\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "dab2226223a28c1b6f681850dce8987bcf6941e07af57994635943f46caa83ed", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwaz\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c5f544700830f8c98e74dd5ebacbbd56220a7bb0e15eddf1b77d186d43418558", + "regex": "(?i)^https?\\:\\/\\/zubidoo324\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "970f8c51600885434d57431aca83e5c78448274065ef42477661b958e8bb6420", + "regex": "(?i)^https?\\:\\/\\/thailanmkjj1\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "bbba43043d6cec41ce0b73825184e0f605d4451abf7ce7b072ea58eb9561e9c4", + "regex": "." + }, + { + "hash": "6baf338698d1b64bf8f647f307affcabd86c2b43bab37c865979ba6b126e21c2", + "regex": "(?i)^https?\\:\\/\\/pub\\-0c22e16cbbb7428ebf3fa3404210f46e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7da85a45e9ff74bc3f047164ab717f6a557f40667840be811d9edf5e8b306a67", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "66c9984e2c8fba7b27badf60a4edc78e68843246383f10d5e623c0bb2d362487", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ad8cce80126d7456b7454d28a766b3a44dec055e453b1ded4dc45dc20ce4c8c7", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "b25b606c22dd2455134da7c1f0de96721ad87e5d18ef68d6e55fcceef67ee67c", + "regex": "(?i)^https?\\:\\/\\/clothingbrandorrgg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "149a50777b90850a7678618e044ac4a41c4c85823ae9706291bca36b7ded4d2d", + "regex": "." + }, + { + "hash": "e59808ab0892ee15a32e4acf9f57077f05dbba18a341314a6a3c5e332f13ccbe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+volksbank[\\/\\\\]+blz[\\/\\\\]+675a3aa0ab9b1(?:\\?|$)" + }, + { + "hash": "78fd0010fb5be05ad8aa21dd8ecb36458bc210c7dee695f8fa086d97358d9107", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "f1717c0c62b5fab1e908401ebbae995e808fe040fedbea0fcba55cbe29eb5756", + "regex": "." + }, + { + "hash": "ec5be43b29d6b82ce63f188aceb3a0470497b36e4f6fcd16854d1e01b4117895", + "regex": "(?i)^https?\\:\\/\\/djsah73233\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b3b00b9900d2c033d56d5d40a2cd606b59cc5912229ef0fdd5aeeddb759b0626", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "68f5a3d1c59be3876bf551c37cf3f6f32252f47fc8b1411bf2dd29aaccfc66a2", + "regex": "." + }, + { + "hash": "824c958e4cf39055ede86f2d21d31e321920ad00e8e11e36fa940993498172dd", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "1a537a3ef1e782ec3fccf1a46c0ac30e1829e401721f143a5350a5a16089119b", + "regex": "." + }, + { + "hash": "7d025365f5f38de8cb4b726e0c839824ccfb382772347474096dd5721d28fd32", + "regex": "(?i)^https?\\:\\/\\/goodconceptscookingcontest\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "5c0298f1a7f5229a425b34e225f7406caeca81774afcc56f831b4d018785017a", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "88f1c72dbad72fec7e835c6ac75ada5e361199c32abef56325b8608ab5c6d8b0", + "regex": "." + }, + { + "hash": "83861fba7cea8609d1f07305f692f38b179605ccf58004e85e2334028cf146d7", + "regex": "." + }, + { + "hash": "d0938ccd41e1b3c067c9f3d14ff8450027bae584618c6769402f777ce391fd40", + "regex": "." + }, + { + "hash": "442f7a2ba44430e2fcf68dd68bc6fca30129294bf422752f1c70e5328f43d9b7", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiws\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "131763e4a841b755a36285042301b16f88be0a499677eba415ce98ed56fa3a53", + "regex": "." + }, + { + "hash": "aa4dda7e75cafd0b57201513d2441dfe68239bb5ed5586f627e7f02541c88d91", + "regex": "(?i)^https?\\:\\/\\/dsadsa4234234\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "bb250c686f558489a509a456d1e57a2220e3b40945a9cbbc9974fca7b93a2bbf", + "regex": "." + }, + { + "hash": "aa800063adcc433a58cc379b75f738375cf38928c2ceb2049b8f4ac34594c505", + "regex": "." + }, + { + "hash": "0b447cd80b8ceb6c05a1d89723b43e3806d15b6261b893da519d7bd9c020db0e", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "6a3a8803f0275980c339c4e7395e39101bad4db7ff26eb156ca38d75bbad3977", + "regex": "(?i)^https?\\:\\/\\/hgmcd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b3801662e1746406fd0f28aa2c8f50793a2f5bd7a6892b7037ecb83088770ce1", + "regex": "(?i)^https?\\:\\/\\/daskdj3423213\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4b4cfa1ca7d83cd01314454817beaac752ab401c717c3e33f60b460c5694129f", + "regex": "." + }, + { + "hash": "f8256dc8ac3c9e5b213fedb661256115ca78fde82916212ab4b303bb2d7d9ee7", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "a82f4ca369c4c760ad6b35d375ddd7b234a952f5c5e3823131dfcba09dc2ea40", + "regex": "." + }, + { + "hash": "b91542278e36e1cc01c1c7852044ab35dbce113cc06ce5a8a4f949b927c67805", + "regex": "." + }, + { + "hash": "37be180f0941620a368ca3a8a0386e775c336bb7aed7e936caae3a57645fd33c", + "regex": "." + }, + { + "hash": "74246b5b0cf09c4352eaa595b115c1248be3b59eaa4cbb088e34ebb3a7735b6f", + "regex": "(?i)^https?\\:\\/\\/m5sd648\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "0e4278b756bb73d59f2175747fb83bd7d77e1a0ac94b425a68bbac59ea590cfd", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "c470caedb66478f6c704ef147c1a7008cc1663c7391dcaf153c7c7a976dde80e", + "regex": "(?i)^https?\\:\\/\\/fgjnvn\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "c83fe968976aa86f698443b45a04ddc66ccc2bdc124d6c2426e0359e7198f0e6", + "regex": "(?i)^https?\\:\\/\\/s13s2x\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "5821082e28ebbc4d3df2dd277b1239a7436d801183777dec8e344d4cda916099", + "regex": "." + }, + { + "hash": "45343b945e687d1a335e6811a39a549a6597ae1f465733e2edae58c461efb7e9", + "regex": "." + }, + { + "hash": "9516f919ad63aed422960faa791c122fb9a99a402aac96b96ac51a43a28648f6", + "regex": "." + }, + { + "hash": "d9e3358858b1be56af30fc2bfd21ce8ffea96a3c5cbc01631e206e61a92b4cc5", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f5cea5c03d67513f272dc7dc11c5da77ea2b731b966bd056cc0af8e0224096c4", + "regex": "(?i)^https?\\:\\/\\/hgmcd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "e5ef63e40aaca10d379ecdb23442e40e5a76a46937450ef1567aa401af6f6b81", + "regex": "(?i)^https?\\:\\/\\/eqadgbqadhbg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a768592e12f6b5dd3e8ee8ce78af6999d41e858c3ebb60c7bd86126e17cad9ca", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "277a885ee061b5555b3e414e32b82279065171b4d19c68a25608d75eb3bb6c1e", + "regex": "(?i)^https?\\:\\/\\/fdsfsd4324234\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c254233cc4d907095e6dc66872ceaa62c15ad15c5181bb2c87c9567d0a58e1b6", + "regex": "." + }, + { + "hash": "9029c22e53826e26d38a468753a8dac13d0a47281c4ed18b603193a7fdd325a8", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "a9bec48cf7c43a211f11f04c0b984a0019d32f53022efe7cba587525668fa17a", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "3cf5138de9819a5999d8f812de58dfea7d8eced07c2c07c01ce957b8a46f32aa", + "regex": "." + }, + { + "hash": "b6ac39cb5874636d8466da1ab08f105371135366d586680250ce0bd371edcf06", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1eaaab582b3c56a8cd2d7041e8f6932432322c59ab44bdd78250f3541fcbf2c0", + "regex": "(?i)^https?\\:\\/\\/dasd73323\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6a4df62ddc48c2b4ecbd7384e70232fc2cc87be9766046191c542d568725c708", + "regex": "." + }, + { + "hash": "e39b5384917c370667acb11c265b4209112ecce1a7d925de20d5a8d6655951fd", + "regex": "(?i)^https?\\:\\/\\/lkhky868678\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "b7b162f51aebdb9850e5f9d69ed654c31c3ae49383ed98b22bffbd6fc62864e0", + "regex": "(?i)^https?\\:\\/\\/dkshd732323\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "abfaeb4a8fcedd94dff7bb639bf5743293ce02ac3f8e787a3d25c48c80e6c195", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "7d87af5d3ec06003b3be78642d7b2e7a7a4e48c70faf9d239929540b3fef8628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ae9c3e1eda7f2739c6da4797a4db4946373340b678c855534d26412246d9f367", + "regex": "." + }, + { + "hash": "7a9763f4fc276b43f17ce07a9977a932aa52b4292e08eb681995ede337a1cc44", + "regex": "." + }, + { + "hash": "814c1c10733bbcc3fd41d581bb9509b55c78bf9262867dce03c6291809a51c7f", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4fca4c72393fdf5faf6e8d4638f31a0ad7dfbfa24d0801e99073b06dd4164f6a", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "1872d5fe4b9ffadf164554fdef77667fe0e317ed3800f9da25a9dfeaf74b60c5", + "regex": "(?i)^https?\\:\\/\\/dsadsa4234234\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "670239011308c41680e2ffcc9e02b18e66aa8349ad86f2466e61341cf2d10e22", + "regex": "." + }, + { + "hash": "68ec3e0ef7847ef9b7723b00caadbf7954e1580c5244a59b98dbc1176b97b83b", + "regex": "(?i)^https?\\:\\/\\/djsah73233\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "99533e796f45909fdcca4e59080e9f5c0fdb5c2b34380896c6978255d83b81f9", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "47c03c4d69be0906b1b29ddf1b44e078eea289e50f9489eabb057f310ae6c939", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "62dceae6e5475d4e1e8d602c66cc3abe4bcf58cd48d98aba74f721d624433f4c", + "regex": "(?i)^https?\\:\\/\\/m5sd648\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "164fefdcadde43fc6f36d2c34b72e6d15200785104e613d8843caadd1dd1c122", + "regex": "." + }, + { + "hash": "4b2777cbb989e4f6d5c037bdb70568c63c03e134902a18832254279e144122e5", + "regex": "." + }, + { + "hash": "82c4f9e6f97d0ff459f5906e759eb2bfe8f0edbc33dddb9089867c1572cd43cf", + "regex": "(?i)^https?\\:\\/\\/qrahqrah\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a659d2a6dfce99401b3af66fbc9e65bc445016b5c9a2ddad116c15fb23e0719e", + "regex": "." + }, + { + "hash": "79c7fa58f136e50a259bfb278fbb94d15009522bbd1f6c141fa9305d34a1147b", + "regex": "." + }, + { + "hash": "f3edc4d3383ef9228348f3411097309f8b0ceef2f9407671d97b90a20bc617a4", + "regex": "." + }, + { + "hash": "02f927cafa6880e9050baeca1f1b8b473d57dc0cec8ed3b36d8a200ac86387e4", + "regex": "." + }, + { + "hash": "e799ffa643cb83d05163f8e3a5e2487d938ab5fe5882b9785ab2ea3ca86028e2", + "regex": "(?i)^https?\\:\\/\\/dkshd732323\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4980a9e3dbdcb51208d4f381c5ecdf9025552b03eee30c72c49116e98e4dfb0f", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiws\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "63413a28b2194b04e4b7185d6158c35b878194cf0f855ff7234751dd4c07aaba", + "regex": "." + }, + { + "hash": "04213b2583813dabcbdb446de763ec528cbab662f8d9d766de5852d5826f2890", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxpromocodeslive\\.blogspot\\.al(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f134e77ccd076fc003593f0625fbdc5273036cb98fefbe077e268fbe1e3c97f5", + "regex": "." + }, + { + "hash": "0148a1f4bc075deafdda3138f570a8719f91a768fb6f6e66968afe03b0a8e462", + "regex": "(?i)^https?\\:\\/\\/lkhky868678\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "36181b323f9bcf87df418a078c67b70087b64854d3c0a9f58b5f53ce13f568f9", + "regex": "(?i)^https?\\:\\/\\/pub\\-b33bf47328c942adb5403358e04a3116\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e721c4ed428a9bca24fae44ffd712382fe21368c5fe7daf1504a447e5a95a46f", + "regex": "." + }, + { + "hash": "3d1c911fbe25df6cdc8d0419416b2c88ead690f3e2eac0412817d9bf4c28fb8d", + "regex": "(?i)^https?\\:\\/\\/clothingbrandorrgg\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "1a7de59ec626353157da361e5e6ee7fafacd62de27d2cbb341bb39ccf19cdddc", + "regex": "(?i)^https?\\:\\/\\/d3a4s5\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "528a39d4289dd89a6eb6e47aeab9ee3d2042bc922881e89620361c5d5d9428fe", + "regex": "." + }, + { + "hash": "aad2beccd52b1a09096a97c1d22a5afaa3103a821054b4480497101ce166cd5b", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "0a3d372957115b9fec2288456facf4311a754e400aa0beec8d67c9dd7bf5a4bd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u\\.html(?:\\?|$)" + }, + { + "hash": "2867654c9bf4df95a8e5ef205abcb4cd5d39ec3b865922a31684bffafab734ca", + "regex": "(?i)^https?\\:\\/\\/djsah73233\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0785220c3b461ec50f96aeee3ec748b08c38433d1703cfe78e59bab3056d5996", + "regex": "(?i)^https?\\:\\/\\/s13s2x\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e6fba066017b5a49303202cfa6d53ec78cfde710c1974668b6d8b64720d54538", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "a6ebceb3bf9ac94c114a1a45c589e4bd82349030b8b20fb1399b525e7917cf06", + "regex": "(?i)^https?\\:\\/\\/d3a4s5\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "278cdfceeb658f6a8d2a20080e272334feb8e179cc7a1c275c95e3261af0b342", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ecedfcc223fad0e310a975c4e7897fb9c4447eb714355f7beb455f3e8d87b16c", + "regex": "." + }, + { + "hash": "18745c538eed29f70085fe630c79b8f28703e214809c4ee5cc0d223226d0a06e", + "regex": "(?i)^https?\\:\\/\\/hjkhgb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "ecdc31254b4dd8c9172a600ebfbaea181f107cebb8a45b915b24446aee73c7f5", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "7963bb7da57f69eb13f740cd37b449253caf0e9f0cd273476be66a2669bd51de", + "regex": "(?i)^https?\\:\\/\\/trackwvpl\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "38cfbca93e682c90bb7cf2c5d838c358ac3b62ca04be0244e4a9ecbff74ec452", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+x[\\/\\\\]+pGlOyg9y(?:\\?|$)" + }, + { + "hash": "9b68a7deebf4182256dcffc01f92eba1e7d5d7ef3a6074bd4ca074b3641537e5", + "regex": "." + }, + { + "hash": "32df08b87a73be8765f2445689eb2d57ee33c7d3e5106737321a980503ccde1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cc\\=jasminsepahi\\@slurpmail\\.net" + }, + { + "hash": "36dc3ac8a1744092c79277a227323ad2576aebcace9196236c89ba37ab034a0d", + "regex": "." + }, + { + "hash": "dedcbd4c01d6aeb2bf8e1fe6b2d9f302cb481996c5e9cebb1e2f853bd192acf7", + "regex": "." + }, + { + "hash": "6746fe1a90669dc88f21ba49964caeb73705c3ca757da2176d05cc1a4fc414df", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "6652d5ee45a3a6323c550c4e18c8fda6572ca92da222f7db5be666f7c444fe08", + "regex": "(?i)^https?\\:\\/\\/dkshd732323\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "bb56dcf88423ef977c1143f8cf0bd343760fbf52fa45c1ab45ca51341e229b74", + "regex": "(?i)^https?\\:\\/\\/fgjnvn\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0cfacbde30d259abb9b8a63ca43232b9078c5a82116ac9007d573f434f1235e6", + "regex": "(?i)^https?\\:\\/\\/lkhky868678\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5f250550124cda1e302a4a5bef5eb73a562dbf77fe25ef52fddb6b454ce19f9e", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiws\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "6ee5ce97e7d015ff777d9e98049b28a49f1919223e8a2707e65a2d3f2a8d52a0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+media[\\/\\\\]+2oth1aho" + }, + { + "hash": "1a9fbb87166f14fca974cfa2354d038d688cd410d7ac2886d8f70e1fe959bd0e", + "regex": "." + }, + { + "hash": "7667c34e377a6252f84f6132674aed60d6e80878a3c2c460e33144fc59a1af63", + "regex": "(?i)^https?\\:\\/\\/fdsfsd4324234\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ae2d8d766b667e4319bb9e70e13cd8fc535907eb09b28e72d538618467f6500b", + "regex": "(?i)^https?\\:\\/\\/thailanmkjj1\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "047bc53b6e119db76d05e9d06340f865755a54eec8d11afe9477687331bdade0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3571a8f87418a95630a8d5bdaeab9a49c2d2eba8c685cdfd7eb29c9a8b6db454", + "regex": "(?i)^https?\\:\\/\\/s13s2x\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "23068a4eaa1755b30a36ec62cc0c8b68a1e3d4b10e91b137b885b79d6d0359e9", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0942adb12b5b97e78eb8cf848e648332836c08c76c12c2d0a6d990078acff4c1", + "regex": "(?i)^https?\\:\\/\\/mail\\.1oglnamzonactivelncludedprlme\\.143\\-198\\-201\\-229\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "903d1c1e8a235032ab2cb2a544c0e1e2291331ef328577e6d5e932fa84b9e408", + "regex": "(?i)^https?\\:\\/\\/eqadgbqadhbg\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e80c536b2693f1fce42d5df4bba173b3a30017f6c678e0c2152c09e2cf7d2411", + "regex": "(?i)^https?\\:\\/\\/hjkhgb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7da94407808218847f017b637352e8b6fe17f7ec5128f79f59463ae9b856dba9", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "997375919a1fb29dcc1f62e6d9b87ce1a46fa62edc4ee7561cd1814f41321191", + "regex": "." + }, + { + "hash": "ffce50893dd9922ff4fc3312de3e3f61a9a1316cf4fb880d89952e807da562b0", + "regex": "." + }, + { + "hash": "c220774d20db1c7d3f62e6c2d9d48131ac6ea0f66ee5400d17f537675d0688a3", + "regex": "." + }, + { + "hash": "cabde8ea618c2306fdb832f74055d39c6fbfd57260e4a945a2ecb02225f249c1", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "df491949ad7d30d0156f861ba98368ff952acda9cb77d58110722f4801cfaac5", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ee53ad57ddb52e965b5e88b90fca985b507d21e3fbd7935db2c9bcb5d8f5664c", + "regex": "(?i)^https?\\:\\/\\/zoomrooda\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e8183bcaec0e720e3d2166e8296d00141113434d30cec4f106b53bdbaa1c0bb2", + "regex": "." + }, + { + "hash": "82864843c5cd8f95381093b595fb97fa05e3027b992b0062e0ba29ea94063917", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "d75de3710f6a3913393527afde96c95c79a38327544bde196a98c7b500ff6f3a", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c5c6ed8e33093cb53e343ab4054e7cac35a7777fc29d7b975cdc22de10af3b0b", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "84dcb78120690f149f335f3d4d6506c4a69fa7aa4b0908b2492b5ea478a4cfee", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?ww1\\.assinantescentral\\.com(?:\\:(?:80|443))?[\\/\\\\]+port[\\/\\\\]+accs1092[\\/\\\\]+acesso" + }, + { + "hash": "2a9d749ee7b1c670f36c974433b4dd0cdfef9b8f80e7433fb8140921ab84665d", + "regex": "." + }, + { + "hash": "6821fddce8d70bb3fb51472c05a33ce442f3d0778b9a6662bd2cca15f6246995", + "regex": "." + }, + { + "hash": "74247ed65dd54d020668952d74532619757e72ca7ccf0d8378dab1dce586fc21", + "regex": "(?i)^https?\\:\\/\\/egdfg544\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "be52c0381e5bb185f1fdc10219a9754fc2757393a2112506e36e2b0e05d05bfe", + "regex": "(?i)^https?\\:\\/\\/hgmcd\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "957a9f7da66025177f77025435751cfe48493cc088cdf6da47cf46813158d6b7", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "ad43cac386a84459b06827e3d62f647468287a0c90a557e05473a17290d2e55a", + "regex": "(?i)^https?\\:\\/\\/trackineuxp\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "fd307f04b6e34313dcf2a759a007adb7384ad1e1768f4411dc4c4e0b968d4026", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b92b687c312d0a97323896582783adf8a4ef3bb3c4312ee797041c40e4690c82", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwaz\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9a73162e972e3c6fd728197cc88bb64ba413a410ebda0684f415c42907810943", + "regex": "." + }, + { + "hash": "323cc44eada2df1faa59b2e767035306d3bbf2ed2004e632d520ab24e63eacc8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f86c4a87665d7ae7485dcff912518d37ffbb0facac5f3946f057b9ff820c53ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-includes[\\/\\\\]+ID3[\\/\\\\]+dhi[\\/\\\\]+dhl" + }, + { + "hash": "20f7ed16cf0c0dcd40862031163ea6061d822b9c2d0d842b2d3b282f3c06eacd", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "72b5c63bb16197dc9c12294e23cd1d74feec93dcbb60a8fd6685b4e32fde0578", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyVDDYUwOgzgZtczvVjGJyVPldkRvoHRdv4DO83IGZ4dMZTFpNxW9sOGWt8wftbKw9hSIqF1gaq\\-euuzHOKnYBaKm6elubiKdQQfTrhOGNjgdAbsNVgBesxiMhgUeg\\?kws\\=\\&abl\\=0\\&fsb\\=0\\&pageUri\\=http\\%3A\\%2F\\%2Fen\\.tubebay\\.net\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fakhwbjyshezaxck\\.buzz\\%2Fplay\\%2Fid\\%2F\\.\\.\\.\\%20312\\%20\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&focus\\=1\\&pageUri\\=http\\%3A\\%2F\\%2Fen\\.tubebay\\.net\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fakhwbjyshezaxck\\.buzz\\%2Fplay\\%2Fid\\%2F\\.\\.\\.(?:\\ |\\%20|\\+)+312(?:\\ |\\%20|\\+)+\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "32df08b87a73be8765f2445689eb2d57ee33c7d3e5106737321a980503ccde1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cc\\=saskia\\.janssens\\@slurpmail\\.net" + }, + { + "hash": "36ee275b957279656d13a59aa65f552204e05032ac506b4ce5cb6cb7ac65a851", + "regex": "(?i)^https?\\:\\/\\/zbiida89324\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "95b1c083066a4ecc1f17296424a9d54f44ac9f3cd0b3fa5c83161bdad70c40db", + "regex": "." + }, + { + "hash": "8c4dd4a286d08b71bf4408ba14709a17cadaac20af849e3a6c9e942a06b63660", + "regex": "." + }, + { + "hash": "f78c6f6671788fbbf3adf667bc5b3a4feef6141466a5cfa635a27fe7d75f864d", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7abe0504abcbd2d9449eb9fc225005c85f7052eeb0de1e7af23ed327f8f55a3f", + "regex": "." + }, + { + "hash": "3db29a23aed59be5e2f81aa0ece58fb483282d4111a92d1aa9a0e30e8b83bf59", + "regex": "." + }, + { + "hash": "232653b50845a8a10f91ad4cd616ec50f91d2a320a49501cb6837ead9fecd1ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+00988866[\\/\\\\]+grow[\\/\\\\]+9xFGD2\\.html(?:\\?|$)" + }, + { + "hash": "d1471d4785f86b2646497b91a58f624b84388ab460fe5fcf616115c10490d3e1", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "250e08b62718fb7162c05a494e883a171ace3b748c10f5eaaebd7431bcee50fe", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b15eafd22433543c7b5c07c309337c449468325201dd6b656d7b6401242c1c1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+f643b[\\/\\\\]+IV4ldGUlPS94I2QkJC[\\/\\\\]+FvZX5AI2duIXljaX4_[\\/\\\\]+c[\\/\\\\]+nwjcV5hXg2(?:\\?|$)" + }, + { + "hash": "c0c96b989d9574359678bcf9903a3ff6050ea0f58e4a4012f3b942ce0f8d9705", + "regex": "." + }, + { + "hash": "c73e4d5dce44dc26584bdf8147ff6ed83924a4d35fabdc8a4571b5f4edd1267e", + "regex": "(?i)^https?\\:\\/\\/www\\.krinddeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "38cf454ee69d22f35c3b5e0013fe84b128592beefd8d0741b7291695936deb03", + "regex": "(?i)^https?\\:\\/\\/lkhky868678\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "9e99828106bc9207ed6c9f9e1259b2e155e929b30571b180f3b91e23b12bbd6b", + "regex": "(?i)^https?\\:\\/\\/fkdeal\\.xyz(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "00894da3e7677e35b9b9cbd6798e37af4789892ab5a5838a43018ab0b7f511fd", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "9a58a803acf9b699f1d63115c0a436d282675b6373084fa7725b7b79d5a2c07c", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "13313f5514b3edd89f28110e544a6467a4adebce2b7e0a1907676cc1195953b2", + "regex": "." + }, + { + "hash": "7c81eca0e6c2f5f17796998aaaca4df638c83d7254566e15ad9a1402024dd61b", + "regex": "(?i)^https?\\:\\/\\/s13s2x\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "d53cb5e5fbf0fc9287f4482e519707a4be80f4312a79b77d434eba0cbf03ddda", + "regex": "." + }, + { + "hash": "8a460ffa3a71626107797a700ac843565b2ab1213be55092eb95e8a2f78dfca4", + "regex": "." + }, + { + "hash": "d3340882346be4345b1a424f26bb23e810420376a0943056cf58ecf07b372f41", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "7afa05df479ddfd143ade694069c52db59e7c8641d08a67e4ccd194e22e5d04e", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "0902117264067c52dfda76290195186e88bca53143fdfc966804f11516f81310", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iiRCD4E4PA7kZtczvVjGJyVPldkRvoHRdq1TM8ObTpwTYM2VptdT9M2LUtRqLdeSwYhVIPkkgvS5euuzHOKnYBaKm6elubmKcggfSLRO4TEVTNY8x1yEJn3hvdcWzw\\?kws\\=\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fen\\.av2\\.top\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fsavdz\\.com\\%2Fv\\%2F142536\\%2F1\\%2F1\\%2F\\%2Ftitle\\.\\.\\.\\%20312\\%20\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&focus\\=1$" + }, + { + "hash": "fc0ee23cac0b72ee9cdd43556626405bb3ac7fd8e6c1afccbd0d86f8fd80fb65", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxpromocodeslive\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f9ed48132b94475d77bb35d978bd94ca801a99d30cebd4ddb91fefa07b0552b8", + "regex": "(?i)^https?\\:\\/\\/eqadgbqadhbg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "c2fbf3741dd9da07878a8e5fb5559e551be9450fa7f7e43f7ed0ed41a8241be6", + "regex": "." + }, + { + "hash": "5a33285806a3118af2d9f44a143ce5d60588465c94017c4f442e7a01749e4d4e", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "be268bfbe085968355b8ff96c51b1124605994ed19ff3d6ca8edb2f318ed726a", + "regex": "." + }, + { + "hash": "a8997c3d0ecfd9a0781ed6f7d3531ea64bd2635ce913162893e2be40819dfded", + "regex": "(?i)^https?\\:\\/\\/qrahqrah\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "0f951243158ea5f15801d8be3aeb8566125ff6175f057ccc408163e48e52124f", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "65298777b1e172b4209d5385645051dc778586049d4e243a576451e438a2ff25", + "regex": "." + }, + { + "hash": "10153d4526d2496dfe1ccbb20711b1107daaffde4a1563deecb0e02d58dc2139", + "regex": "." + }, + { + "hash": "0a1c6285a9a83073bed25f545cc4ae7881691d66749819f9a48595e2995b401d", + "regex": "(?i)^https?\\:\\/\\/qahgbqaghbf\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "051b4579b021c365f23bb85178256f862303c8a5556746fb80ae89f84049c20b", + "regex": "(?i)^https?\\:\\/\\/zoomrooda\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "86962497414a9d6317d3cc62bb5e66da84b02478cdfe3acf38f0757492dc1b98", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "aab2bc912913c006f437b00b11e3cb2f5df62653ea72420023ced729c9bb3a06", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "8927284356b78f0d0e960aad0bc76634c111baeea6ff99a955b030e28d42d001", + "regex": "." + }, + { + "hash": "0143b75afa68c126399ae8446a070426f0ba8923419b1f95c69a40ede19d8a96", + "regex": "(?i)^https?\\:\\/\\/fgjnvn\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "75e26cec180de45c6f030aef12e25353514317f5c5f8f797bc5dd72a609448f8", + "regex": "." + }, + { + "hash": "7bdfc5e1c43483c902948d26edb1da2facd859d0c489868fe23a84a1a343b5f2", + "regex": "." + }, + { + "hash": "b9770b127b94019b67c9458348aeb3edfea11f44a060f6b3842dc302608bbc41", + "regex": "." + }, + { + "hash": "6538f7254355a77ccd44d42d525808aa587e6ca3de0d6bcedddf4e8dc0ea92a5", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "e1a1ea0cc927af7d3e7e9577130c29d388182d2db2d8467091ce683f1504142e", + "regex": "." + }, + { + "hash": "68c1c061a20ab1a2032a331a73a49849db906625897f1fd46ff60fdf38426c1e", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "ba2a3247bf7e3e126d3427becf2912c9aba335be44070012ce8c862f20a9f87b", + "regex": "(?i)^https?\\:\\/\\/bafybeianploumecdomxpg2arxkgi73sjryk25d325ixoa5dhu2gl6k2ugi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "bfb961985325271ce13c339f60d7647d8da9e64fba3450f2fb926c31e3b17893", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "84a684fabe3d55532c6abb30edf3c34d2fb9bb431c4cef43459811ce2efc45ff", + "regex": "." + }, + { + "hash": "1617746220b27249a5c7ad0871f81a968e40618b74d3c42dba811c6d699a82ab", + "regex": "(?i)^https?\\:\\/\\/zbiida89324\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "1d8cc8b5e42026992adfb6cc046517cb329bae6f3a2256d76a8307a7e6ac86ec", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d0dd1e5587a402ab69809c4657414e8884ba63ebdeb79ba6240644c0081bab4c", + "regex": "." + }, + { + "hash": "102e9f45a557037360b31446bf52b79620f528247c38c8ec477a6d06abd76c8a", + "regex": "." + }, + { + "hash": "dee2d6f8ea4ad1e1ee9b334fbc60b6a5f1a05df3612aeca19e7c72822f688330", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "340c769cc65be7918f79943ade0aa1502a5dc5ceb4408d7b68de849d007ff0f3", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "52578433c7074a1bb9c63e68662cc554bffd58e93b0ea692d8771a9fb01ab4ae", + "regex": "." + }, + { + "hash": "2306ae14d32b30a0c0eddb0cf4e450a32a7153722f9a609b68d423b65a9c901f", + "regex": "(?i)^https?\\:\\/\\/m5sd648\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "60a9917386152c3331722c8d5a3c1a40cd28d79a0d8ee32990d150af1040954e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+user\\.html(?:\\?|$)" + }, + { + "hash": "b15eafd22433543c7b5c07c309337c449468325201dd6b656d7b6401242c1c1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+5a0675a97[\\/\\\\]+eCR8fm[\\/\\\\]+kkIW5nJWQvcXleY28[\\/\\\\]+kKiNyI[\\/\\\\]+V49ZWEjP2V0JV58fg2(?:\\?|$)" + }, + { + "hash": "94953295c05c030f8b05fb04e4e9abbe829ca499ed071f7e63e629371270d97d", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "128608494cf788cbfd107142fe880d2b4c7916aa5ccbf648f4095f48d8a684d7", + "regex": "(?i)^https?\\:\\/\\/zuubidaa7822\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0eb5a58cfd5d0f7981a30e9d5591c04fd1a3bbfbeb40a695c302e1dd73824764", + "regex": "(?i)^https?\\:\\/\\/goodconceptscookingcontest\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "8c25551b42a53a561a8d346c881daefcabac71c4b4ce6bf64d22c1c9050234a8", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "51bef7186c2816009cb1e5e36e62c799b992d546a5950ce2d98ea7bf07ddf6c0", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "71b7f327a4af2b97b855ff12284e2c8792e6f51ce43d7250cb7f10cc27cdd92e", + "regex": "." + }, + { + "hash": "02e7a71bc8ceb5e95848d49244854ce7540453428a3511eb32d0d49908df52f7", + "regex": "." + }, + { + "hash": "5c68347b8591a5b125f8b5743039b554c595def1bf6986282a93b16c125c4a35", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e7873cce1fc200a2e3767833d60e5c14f78f78cd3748291888eb77a0e587f613", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dd859053ee2dbc0486fc7b3a6878e229f8f012a80d24d9faf0e215dc3d232cd9", + "regex": "(?i)^https?\\:\\/\\/d3a4s5\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e2e6ac1f87e2f2170262e1008879c3c8f15433f4f1021abe9f5fa240fd339083", + "regex": "." + }, + { + "hash": "ad43cac386a84459b06827e3d62f647468287a0c90a557e05473a17290d2e55a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6d7474c0a291bfc1956dbd3ad558358ecc204a9b69cc79a7ab69c1d2da52ce88", + "regex": "(?i)^https?\\:\\/\\/dkshd732323\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7d2ca3b581f31fd0df267301f0cb09ffc5a215d05005383a7e48c4dbe034ac81", + "regex": "." + }, + { + "hash": "347f454bb8780de4527984e1e367c5697315fe88d0f343fed5ee89f1cc742148", + "regex": "(?i)^https?\\:\\/\\/xelonior\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b15eafd22433543c7b5c07c309337c449468325201dd6b656d7b6401242c1c1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+90ed3[\\/\\\\]+dCohJD[\\/\\\\]+1pfmR5KiVxI3xvXnhncnxeZ[\\/\\\\]+T8kbmNhJCMvfiVlXg2(?:\\?|$)" + }, + { + "hash": "041eb6ad52edffc8ce9232f0cfc5ef41b0220eb4ed65afd421d8df0a6b4fd6e0", + "regex": "(?i)^https?\\:\\/\\/fgjnvn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "e8056049d04f9a028101e7e383a0d68c799b408eac2a74541c085c42be34b359", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kVpfpH[\\/\\\\]*\\?REq\\=y7Yg9$" + }, + { + "hash": "8c507beffa278caf72148f59fad0235615d876e313ad7b5ceaaf70297466ab4c", + "regex": "." + }, + { + "hash": "b15eafd22433543c7b5c07c309337c449468325201dd6b656d7b6401242c1c1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0748ad[\\/\\\\]+PXIqfCN\\-JHl\\-ZX5pL3gqdEBhbiRvY3FAI[\\/\\\\]+2RAXj8kIWchZQ2(?:\\?|$)" + }, + { + "hash": "5bf32b0c65a0bc6095df45d7afd5157aa2f3305bc0076aa40c77112bf50cf929", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxpromocodeslive\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8fc2986c0cbe4ae19cb86fc3d1216c5e87f0e4ee1c1584421b127772e9acdb9a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "06a178f6aabf60731fbd643ec08f3d116250f40ffb3261aa0d56cf46bc8cd38f", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "6ca245465768e9a027f44af6dc79767798d2cbecee33d31082799efa1049703d", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f35c1de7bf6b1361e639b755ef0bdcba1b422c0c45076c11a32d97a0bc13ed2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=mgUaYqMZsl1mq_Ibg7zEfEvf6_LFiURyUmf2KKlXiww\\-1733988441\\-0\\.0\\.1\\.1\\-\\%2Fus\\%2F$" + }, + { + "hash": "6def1484ecd2e36ecbbb828fb6f885cb45f6894a1d883635def3a71d9ba0386a", + "regex": "." + }, + { + "hash": "2834f2faefd05538c33aea15182948354d3046fa5765ef6374b076d23a6fb8ee", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "bb371d65367b54118559fdafdfd3c4d3f58e6d4544b1163d1d35f232cffe9a53", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "92abdf798e6df6db6f96b6e89e1acb5f8a8dafc4512acdf93a7020238f75107c", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "8f699d5d20735da02dbad155f917c731311465e6a3159a47a9fa2ffaa495ef7b", + "regex": "." + }, + { + "hash": "b2df5641750dc7f2a9d2e82030b6cce349007c6c56422986abf1b3eae687972e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+faceit\\?ref\\=faceit\\.com\\&lang\\=en$" + }, + { + "hash": "7d87af5d3ec06003b3be78642d7b2e7a7a4e48c70faf9d239929540b3fef8628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sports\\-updated\\.html" + }, + { + "hash": "b5be3e09b8cad45cab8806d8b167d446f61c35eaaae64827dce8bc46609721a8", + "regex": "(?i)^https?\\:\\/\\/thailanmkjj1\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "ac146bf7714eee7ac25c3fd0cc2e147fd5e4a6c3e4d9a9507a6e0619f8778215", + "regex": "(?i)^https?\\:\\/\\/egdfg544\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b6da068e50a6b89bbf871a5f13807f40e1ed71e8d934020d98e2781fe9114e6b", + "regex": "." + }, + { + "hash": "38623b961916154a76755dfde9703e8f4ebcff4f908d36453a0b08ebe23bd2fd", + "regex": "." + }, + { + "hash": "61d29469aec1aeff8b42e90a22f7bad5f8b654628dc43fa7666fe5536f71e987", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f512d8cd4a6d07a1a943660250656ef16b8272aab5b5de8f409789a8c5baa9d4", + "regex": "." + }, + { + "hash": "0f5e42c57f9bf3c175e1a16ee5746c628ddc82c43b8f8149930aaccf98bd2aba", + "regex": "(?i)^https?\\:\\/\\/qrahqrah\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4fab0f045c9c39087757d093cde53155249ba7a49330e96eff5513e7a1f6f0dd", + "regex": "(?i)^https?\\:\\/\\/zidjhsjd8323\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "679680e459064acb5632c356001fc25a17579466e11daf26f383bddce92112d0", + "regex": "(?i)^https?\\:\\/\\/qrahqrah\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "03c9c4144024176681ea199bcd140efcc466134cd53a0cc929f2b19277394ada", + "regex": "(?i)^https?\\:\\/\\/m5sd648\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a58b868ac856da3e2f2ff6f0703ca42db9cdb864e6898d3f800ee26733b52d15", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "3022353f927034059262f4c9de0de358a4c46bde2dfcbd693a055cadaefe75b5", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "abaf3da3343d9e78ed91d70b3081623860c32557e5eeee14703b5a09c9ea59d1", + "regex": "(?i)^https?\\:\\/\\/rgdfgv\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "061b80975ae865fcd83060cd84d4987e052438a3f7464d49a1cdefe47054ae0f", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "401e60ab503c6d7d98c87b2e2a9118268b94e1b8565edc59e54faa37a3947ab8", + "regex": "(?i)^https?\\:\\/\\/dasd73323\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "bb9cf3876bce6565f04de166398a90a9918e64974a3b5d05eaa9f89ee2dbf62b", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "3943374d8a5b06ad9848b841eda56e2501ca9811884afa4ac535b43edccdbcd4", + "regex": "." + }, + { + "hash": "222acf54a2c87b2deb8955d70be1b2272c194fc3c47ae617cb791deba107604f", + "regex": "." + }, + { + "hash": "d0e04bad75da4dceb1ee4f858892f2252cf925858991a8e4abca3a96d23216e2", + "regex": "(?i)^https?\\:\\/\\/m5sd648\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "38da24fb2a2656795580edb9c77e5fea75cc00d259f41eb2742a81f1f229e647", + "regex": "." + }, + { + "hash": "c4e7b91886be8e27570e9ef9bfab9c671099201cf024549dfe1c6b2d07c981d3", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "caca7a7e0bcf3ad8627cfbdf6993f1509910af935b828f3f6b51b6e1e0dfabc0", + "regex": "(?i)^https?\\:\\/\\/thailanmkjj1\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "04f94cbc89ab15848492630267aad16961c0d9b60f16948edfe3b05a04c5a9cc", + "regex": "." + }, + { + "hash": "8601f54eae237143fe27bcad29c4ff0b8564c91a7b5dd8bac1c7c4c82b1edef3", + "regex": "(?i)^https?\\:\\/\\/clothingbrandorrgg\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c6e142a7bfbd3d625407c639bce52682c3824e1e6f21f5dc59874f6a16a8c81b", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a491e3e74ddfe56c6b53001328ab06a6ea412c6ac1cb5c1b498f318109385d62", + "regex": "." + }, + { + "hash": "bb228d6f64afd8086f4be056e67c4d8b26a3fbccde9dbaa9e26b5034a9c3abb5", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "c22c74f5b86082bbd740a8e38f509ec4fce1d0e427c847d3ec832b04fa13004e", + "regex": "(?i)^https?\\:\\/\\/s13s2x\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "56ac51f45fcc0939cabd54d0ad11fc9bc8bc2515221b92af229c71a7ecde4ce3", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "85933714feaa676ae58de332fb62d2dd81f0f157a071dad9bc75f000eece75cd", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "605337013c1a3bb4c4d4f0ae6f77e4a4f6eeabdd24392d218828758ed25e44fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+claim(?:\\?|$)" + }, + { + "hash": "e973d63897597a08d637d90654f03ba7446bf4f88e8a34dc96d36d81c533bd15", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965(?:\\?|$)" + }, + { + "hash": "3d0d55882a9d993357befb3de4d4616a4c621283e30624a3806b1b179d810dc8", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "7481eff974c470e664b9af46f9922777b5a0ad4a79002c7a21ccdd4f77eaa156", + "regex": "." + }, + { + "hash": "92ab86a9ba69182e3adaaab53ed2c55d8636bd515704031f59bfed9b965a2858", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+presale(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "76d7db0cc4c09b81052f30910f60a3f39c64c2b59c1a28e70ba00552554215e9", + "regex": "." + }, + { + "hash": "125199dba19fe0763ae614c35506a0a4b67ee77cf0c8722eec1b8ed80116f379", + "regex": "." + }, + { + "hash": "a904d16f610456313fa2f2e80ae453b19da410b95852efecf8ded0f2ec1dd512", + "regex": "(?i)^https?\\:\\/\\/dsadsa4234234\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "644d689809278ec3d9550b687451970c6b0a4e3b0796ebcb7d37674d28e72b69", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ccdcb4e475c8557cb264d8752eadd781830fe7db61208dd08b057860e4400f96", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kVpfpH(?:\\?|$)" + }, + { + "hash": "842ad57a3e4542c64d388431a2e7add68b9505a65bcd0c7ddef01aa7139abf42", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3c20f22e376260f54349c21c1803b86cce4c8623bee9a6597fa8f0bc32340f73", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7a3ceeae9a7a25003e39cb3647cdbabf4ca8e207240ecd504376e378790dc86d", + "regex": "." + }, + { + "hash": "13bee7a489927565f15f4ba4c8e441c384e96f32632aa5c6ae4027b915ceff46", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c97471fc6fc7cf59b2162647c94f67b41d11c33db27e8e0f6e432467f4b23106", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "fe97c5e98b35b380163d8afc8a8103075433efdc85a3763902166d513f839bec", + "regex": "(?i)^https?\\:\\/\\/telegrxm\\.xin(?:\\:(?:80|443))?[\\/\\\\]+TW(?:\\?|$)" + }, + { + "hash": "c5a825fdbe8e6d99d1444653abc645863ceffee702ef341ccea966bae0d67088", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnw\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "3fb3a5d76ed9fc5b595b3f592d3fe4aea6d62daa373a84d067107621959f039e", + "regex": "." + }, + { + "hash": "e7be8312938a86fe0efbddc84b16f63ab50e5816e4de286971ed70c8d7e9f4f4", + "regex": "." + }, + { + "hash": "052d4fb15320b9156b98384cec727352b5019616adc1578bc8756c1d4a61139f", + "regex": "." + }, + { + "hash": "12573c185a233231a98cd1ca5013eb838adbe1976d86c9582f926cf369c05d5c", + "regex": "(?i)^https?\\:\\/\\/zidjhsjd8323\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "8f52128d61ce387639c91c56edaafc3049b4f2d41d97278a525d928af83a535e", + "regex": "(?i)^https?\\:\\/\\/fgjnvn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "9a74fd7a519c727cce86417a492ff4b6101c9e524abfd3def4faee2c4b655b6f", + "regex": "." + }, + { + "hash": "6340081b5f8e9b887aca6e9edac7b4e256def13ff270d7ec8cd64d4526cc25bf", + "regex": "(?i)^https?\\:\\/\\/netfh\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "146e34cb5f713c15f5560417f61db486de0fe3d65c81d5d9f2373d99cd510ac3", + "regex": "." + }, + { + "hash": "983e2a7c6f6c753fa124b6b56955c7ad63b441647332afb9e360e744dec69248", + "regex": "(?i)^https?\\:\\/\\/rgdfgv\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "d6e784b72b2efcebc391819f206c46666380a598ad352f3fbd76364d47869051", + "regex": "." + }, + { + "hash": "9b6d7ba4f9e09e8a7f5a56fa466de87a21bf377ab888e757bf4aae55571e39f6", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a9e189a8c74ea62ef928755c273f03d546e7b673e662377a09daef2ec03a5", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "766593f76bcc6d8ae81377849d5e02555cacc6eb72053783276a259b85058ff8", + "regex": "(?i)^https?\\:\\/\\/egdfg544\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "102e577d642f5cdfdf565f254c3bd685f19176dad26e9b200c405500cecdeca7", + "regex": "(?i)^https?\\:\\/\\/netfh\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "4e6f68363b5580da741907c0388ce5a25e2b12c8f391c4d70812de5d2aaf9679", + "regex": "." + }, + { + "hash": "80a806825530d0a58c6e7fa1ecf99b476b8f5058aac05d73a3d9073cd5fa7253", + "regex": "(?i)^https?\\:\\/\\/qhearqrahjh\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "401c62059e6fda7067a43507af5e7b9bf194d3c03de2ae74fe73a080fcb31881", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "2f121f0cc360379278fa7c9fed21e9f5594e0971e733973ce354a54f2999259e", + "regex": "(?i)^https?\\:\\/\\/clothingbrandorrgg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bae377c316321a59dc97cb217e2abd36930d574db26528c03682435a4a8bb5f9", + "regex": "." + }, + { + "hash": "650f8ea48f74f123dd197d0b752c1df589f6c3c3fed308ceb7ba846395b856df", + "regex": "." + }, + { + "hash": "bcce23284bfa9f83b94235f8739c08fc6c632c5530e91db94782ad49cfccd94f", + "regex": "(?i)^https?\\:\\/\\/dasd73323\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7caf5447ab047f5b06f35e5aa9b1f83286cbb90c4399270e477b8dfc6f057db4", + "regex": "(?i)^https?\\:\\/\\/fdsfsd4324234\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5d7c988f27c9d90e556019bcfe3cf853bb575acc81e62927b2981616d4e6c4e8", + "regex": "." + }, + { + "hash": "2349f6802995e04354f795e034a9bd03fc3f62e06b31f175dd67656e103f1e75", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "92977639fd837ef356fde4db6afff4475299b9518cded533f91b8f1d58096b65", + "regex": "(?i)^https?\\:\\/\\/djsah73233\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "c0bc40f5a23c15935cdc59e807f9d889a14a4de6d34003c090221ed3b5d97ede", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "1d23df824e4a3ccc757882cba3fbb21ba0f5f6680f44ae06a1b6d03f80c3e588", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "377ad74bc954786ed922ccc286ef110d6d145a5d64474f37c7248b32e4a9cef6", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8603d084a66ef7cb2100b4012a58eb40efab94b8cfb93bfc7ab9a9983e6bb619", + "regex": "(?i)^https?\\:\\/\\/dkshd732323\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "74d4f21be38a5b80e40dd73f707c79c9f44437892c0898f538de63580b5e1ce8", + "regex": "." + }, + { + "hash": "dd871a10d9b8ca467b93a0cb1467a4a34d59f8b92a5cf949da81551fcbbec98e", + "regex": "." + }, + { + "hash": "e091d6afbf56c2b2685b86385f9d0039c673875ae7ffd9532eecfc53a9ff00a4", + "regex": "(?i)^https?\\:\\/\\/rgdfgv\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5b3942330e3010f23be7b52ff1bee410eb3b7b7af12dfcd8e0cdcb5708a1b57a", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "2f45f6ea6e106b9d4cd94c8a2186f46734ab61dcd4fb945a367ac81e46582f38", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d7e05fc6ed04e02ccdd1f7a298e1b9fab5c5aac71525eee3d901c439ce3cf639", + "regex": "(?i)^https?\\:\\/\\/www\\.p1\\.154\\-203\\-197\\-131\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9642cc58b0d8e4cc8bb695a743fcfb62a6dee4de85b6a65934afa3522c9c6725", + "regex": "." + }, + { + "hash": "4462f549621b8b241b8b22453e39c5c7e185ef8e839eadfe1aab82164479b98d", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1b01363d99acd49321813843a9f616d2b337cbca22908b809a7e88d171668535", + "regex": "(?i)^https?\\:\\/\\/zidjhsjd8323\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "8c4d23b79018554e651225e50f2e23447998268ba1f79c464f3330822da05dff", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxpromocodeslive\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ae990e17c64d10247e7f2626dfd831f3228a101d80e7f207e9ab137b9dca7ef8", + "regex": "." + }, + { + "hash": "f35c1de7bf6b1361e639b755ef0bdcba1b422c0c45076c11a32d97a0bc13ed2d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "07c824f4d1fb4e03eb307b17b094b6d86e2a3dc3264d70eef943a18e26b0e916", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3cf1e7f32391480b2f5f47d0f274611c3705f52d8866f06e04f857d0272a5585", + "regex": "." + }, + { + "hash": "1fb54bdc427274c547096b249520f30a3d723092046b30dabe13b045d40c0876", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "eeac4938301128c304ee1938139a5be180f37e7a42937e6c9176804b97d62d09", + "regex": "(?i)^https?\\:\\/\\/coinbase\\-pro1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4f175bc76321f2ff06cb51382cc370073f1263fe8ffda06a586465db21cad741", + "regex": "(?i)^https?\\:\\/\\/goodconceptscookingcontest\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e7a9d52bf9f1e00a0cd084d8720986976924009b2a4df67ef0575ebcf25d0a85", + "regex": "(?i)^https?\\:\\/\\/zuubidaa7822\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "febf2d5b145593a2f41d590beb613c8671296fae73d770eafecc5b7095a1e460", + "regex": "." + }, + { + "hash": "93c65ba6d57916514b63c97ddd2fbb960140a278d01f3a097ca5a6ce088d4508", + "regex": "(?i)^https?\\:\\/\\/zbiida89324\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "425ce859263a965d0bb174618cbb4246c5997ee6ed3c5e6703491db71186bdb0", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "541f55572527c5bbfc7f5ea9d612bd9d601c87f0c9500ca6545462159bae48e9", + "regex": "(?i)^https?\\:\\/\\/qrahqrah\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "615398351faef6d18287b3700e8d3581f9558238d3c8fd6250689a6feaed4bd5", + "regex": "(?i)^https?\\:\\/\\/goodconceptscookingcontest\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "94e504952460aab3ae4299ba81a7145ece26d18847beee78d1c420c38284b493", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "ca236151295dd1701b60592fc883e79a1cc9bde25aedd5114b37b6192092d665", + "regex": "." + }, + { + "hash": "439880b504fccb94bbda9bff6f5517202dc9d1ae1e7f176b0d77bd076a5638eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us[\\/\\\\]+smarthelp[\\/\\\\]+contact\\-us(?:\\?|$)" + }, + { + "hash": "77400b9cc9af2820d49760fe9f6c99565e81881a0ec03e23b5df98ba8d015e5f", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "e2a1da72005f399d8ab633e54597a5992511e80a9c2180328f81875a0ac6eb81", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9149[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "6f931b2e827cbba50c37788d7857798cbbd7dac8fcb989271959a324f87cf926", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2914dabd5375680a3eed22ba366fb93f2b93b6edf666bb4ad4a8b242e05cbe04", + "regex": "(?i)^https?\\:\\/\\/d3a4s5\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "63dc40ac6f191dd6b15ed15bb76faf904d8e1d6e713f7ed4d948400b20d220e8", + "regex": "(?i)^https?\\:\\/\\/s13s2x\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5d3b56e75a39091dbe4f8b2a62221148d2710c4d099a256e08513f9995df2d5e", + "regex": "(?i)^https?\\:\\/\\/zubidoo324\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8cc94487ce1ef04a1d9a390c1ec3fe6da27ac3e3db0ea0fd4b1083c12dae0adb", + "regex": "." + }, + { + "hash": "191afe75c1a081fc3c1ebc414fe962dfc89de6e1a68855152fe3ea6d1de37f24", + "regex": "(?i)^https?\\:\\/\\/pub\\-647efec841f2469ea102ef18827f7780\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "98063d08fdd7194a34ef62c5aa4938b0c1f63e825e8f7a22ce9f63431d569f05", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "b2523f56b5630938fa68151ee1e50474195078d7a978be63b59ad5a3dc8c49b4", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiws\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "18efef5d0745af3fe2cca43b6816d83343ed67f0a757d6576892fda82721e9c0", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "eeb5ece9787fda1a226854de9e3e825dcf842874bce8d8af149e0558eea8b9fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+kuramochigrp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a989130cb1429f43390ac8bc3b1ad2ad7cfb235a83f5b1886e125d158feca47", + "regex": "(?i)^https?\\:\\/\\/zoomrooda\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "e8f09d03671807a58a8621b11a457308d1a22fc9e6a1af4f1c84793fe933b32d", + "regex": "." + }, + { + "hash": "65c063377e7b3e754e2b4d59293b6f2cb2b5642e63235097e7c876783a6cf07e", + "regex": "." + }, + { + "hash": "f09bd03eed340a937f2f576b3923e3a60ed8d5c8e807082f66e2424c2171babe", + "regex": "." + }, + { + "hash": "26bcd96ef816769bd4425e8cbb49fe25a89bd4486759b1ba00f21fcb88586600", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f53d85d8217e809d6a4534c02798e3784095e6da56593de3fa443da82bc75", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnw\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "07570d7520025e34132714eedf7072a2479229476491c52bf384970252bac256", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "23302e4ca401d640ebe99974c5ce6bac90104a70e6d56133ab33c0b5ab752d22", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "327e43a4f5469434cfba203996d97ebcf93be2a6a144bb7c2c253f3913e1c3dc", + "regex": "(?i)^https?\\:\\/\\/quivomira\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "036713b69f02da12b002f6a24cfcc033b9df4b3f731cb55cf4d4a2978261568f", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "498045315e083720cd78a7da6020721fc264084475b76749a3647224e4432eb6", + "regex": "." + }, + { + "hash": "5bb8128eeeaab63defc2f7f3525e103f28ef6a16d6e879e6b20754a6a48b3efd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6def1484ecd2e36ecbbb828fb6f885cb45f6894a1d883635def3a71d9ba0386a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ir(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84a37d119124bb960ab5701705c629ac2c1e020761c3f2f509d4d601ac7cfcc9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+es(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7ce3bcb459e7ac631b0cf04a2923ee00c4049acd76d2c3f7ec368989c5b15b30", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d2637c5a53b1e1ce417f49acecfa3c330f02c37ce5cc4461f2a9f7eab8e054f2", + "regex": "(?i)^https?\\:\\/\\/tx0f7d\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "ed6cd42296c6613f5487f9246d210a8aea2d1924baf5e7fbd3fb707fd10259f0", + "regex": "(?i)^https?\\:\\/\\/daskdj3423213\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "032173f55f573c0921c390684e732c72567d8d385fd86ca53e18c201299c48e0", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "d894e38de2e07955a0b7493f3771f18f1ac9398037bd580c709cab4cb18c3893", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxpromocodeslive\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1c841568630e4c8fadd2038e483d467234ea5d7ccebad771795cfee8b0fc8e78", + "regex": "(?i)^https?\\:\\/\\/zidjhsjd8323\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fa5d6d93787ea5d77c582639ea37db7d9c474bbf36055db06c2d93eedc069766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "da75cac5089a3747b5d7bde255b035b2f7911590fcef97cdd71dcb8d57869197", + "regex": "(?i)^https?\\:\\/\\/m5sd648\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "e9affdd8fd620d58cd4d7c895f91d5caa91d8d3269443221e6dcd0ff3c3fc3cb", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d1be098cab92bfccb6f0e41b93fe02cc976c4978df968ce9828d3b6c4c216d8a", + "regex": "(?i)^https?\\:\\/\\/zbiida89324\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4c02103dc8c1c234db1d64b39180c581e49bdeebe5076fbd7e6e6ebd33bb2767", + "regex": "(?i)^https?\\:\\/\\/zbiida89324\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "f7bb31f9367f70e07d7eca2fd6692cd7c76fd33595d40df0b8d2b80f3cf37dfe", + "regex": "." + }, + { + "hash": "6282f42b69e5eff82ae96e4e6bcb18c25a4cfb1a05857e170e0c88e71a73690a", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "785fffd1183d28b92454261823b1f7dc4b5316cb91009e9b8067351e942972ab", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "7aad8f15b14d7b328cdefb65b39147bdaaebbe88c6cf81fef8bef72fb3304ac3", + "regex": "(?i)^https?\\:\\/\\/d3a4s5\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bd82379f11d4cbed8af0e9dcb12ce304d20782f4904ee165c4c3080020fb8db7", + "regex": "." + }, + { + "hash": "d089104075534b41768b981183946b433ff8c509227adbf7d0415f62fdf9bc74", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxpromocodeslive\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e6cb0431aa6fb16a92fb00e6db8b2aa5d54fed3e056417e976c64e83b382c326", + "regex": "." + }, + { + "hash": "1f1ec3070d9613c57d092d814380bf2d5ea02e63360386d489f28a69e44b5a6b", + "regex": "." + }, + { + "hash": "2f4b5a2e8fa4cc6a083aa98ee138020c5b3a697a76110f4af0c02da078bd7909", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "1be0462b707a8156cfeb1796fcfc44c94fe8c6d085377923f5e72504b7ebe477", + "regex": "." + }, + { + "hash": "49f61f60be1b5922af1c3385c562ff1a5f848ed73e0f923044fd3e787e2f1212", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "ee2f1101497a2dd58895d3c2d090683809f1c8e2323b28dee99c3ebf4a469403", + "regex": "(?i)^https?\\:\\/\\/egdfg544\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "cd2261a73e962ec3edd46ccb9011705d8f5baa419d97e407aada310a6bd6532f", + "regex": "(?i)^https?\\:\\/\\/hjkhgb\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d61a633ff7bc53fef89733bdfe3a44f8686219ee2e816cd56724457aa0b84729", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1b8f4633719457bda4fda2af0a8275a35267e6388995b65034a5d98de7aab314", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "cfdcc11860e7516c1074a8478d5196aa1ea7c302343395e1f6bc25ef7f6bc109", + "regex": "(?i)^https?\\:\\/\\/dasd73323\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c6f11fda2de0d6ccd9851cee3f939a0fc24f73a2d6aae9be746541d646832c19", + "regex": "(?i)^https?\\:\\/\\/sky\\-259320\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "00c9a018ffbce5ff49485eedd434ffa703b53b8b5c14d533bc60ac415fdd7d86", + "regex": "." + }, + { + "hash": "c930a455d2387e00f06011c624e98769f9b1bda5ff03d8c1aca5e31f3df02225", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiws\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f61109dc4555e98ca8bc76210523ed8fe4a2cec64277af16789ef801a74d3b3e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f62fa635143e88303570f0717d30eb8d009c35336c00f222c08969390085dbbc", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "18efb0b0328aa624149de802807532049e7faff955cec88b33c0c48900336476", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c7d761ed50d84eee34a1d78571df9337cae36068ff029516ebad1e8741ef0eb0", + "regex": "." + }, + { + "hash": "36722d799d44d0163b0bfb747fd7696285c5ebaae6c8e279d92fcdeaa9f5f7fa", + "regex": "(?i)^https?\\:\\/\\/daskdj3423213\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "b6cc35c00974be0462aa668222bdc1357e62ef88f54f525de20b6b9eb4441c21", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "946fe9e0ed0b1d97671b95f2fbc2320b88dd67c1cc9072429b9091d3dc12c4dd", + "regex": "." + }, + { + "hash": "6bbd153d574556a43d925a63cab7fc8115650de33dc4fddbc825182f456b2917", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "796329baab23d95f07c922a35a3eabb8aaa5b1f8680a367df1bb12099e14cac0", + "regex": "." + }, + { + "hash": "d2bd4283a591a7719ee63331962bcbeddd344cd27954eca42f0bbf2d34bf1d4c", + "regex": "." + }, + { + "hash": "faae32b2611ed40f27fda889f32bd4b3f28a623c977eb467d241f752c32fe84e", + "regex": "(?i)^https?\\:\\/\\/dasd73323\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c4f26d369da26036412669f752103f518781596758d25840cdeaf2cf8dd1a61a", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "ab3cf84436f3ae494e36550765b0aac660afd505903188f364ec3812458ccd1c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "79f882be589f13210b97255ae86bca2220ba11081db10c0e441cb86bb5dd800c", + "regex": "." + }, + { + "hash": "44456549926d6c464ba180de534b02e7ca558302fb70596c6d10ccb37dfd8792", + "regex": "." + }, + { + "hash": "8f6982e499c118bea9e38a7ad507507677d2c73fe32ef766a393207f97d7db10", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7721090670f9a8992757872a137c3709de8866a0b97d70e59e02e0e9886a3b82", + "regex": "." + }, + { + "hash": "e83c76a89363f3e3f4fe801f33e9a5e8ac2adec6b5ee9608ab3367fdf56d7e21", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "39f0e7d04d835e89fa0807c72760045f3bb9210b993caccdc939c0abd816a3eb", + "regex": "." + }, + { + "hash": "d19925259601926033eb4801e649fa277f321b16aad3ce900c2e39cc3dc7dbd9", + "regex": "(?i)^https?\\:\\/\\/lkhky868678\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ed20cb1a39e66c713007d8465c19cfb8a2a47ad4f44a0b30e520c54e2b948028", + "regex": "." + }, + { + "hash": "e9739a74951fe5177baf3356f306953f85846539170a0828a4e8869c7048f67c", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ed8cfb4fac93611c0d373528e4f7c7decf9712bb1e7ec3c549950eaf62379c5c", + "regex": "(?i)^https?\\:\\/\\/djsah73233\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b2777bebb076ba65ef62619296224a9d2eeb935862f5a1f073efa94c67f8ce55", + "regex": "." + }, + { + "hash": "ff30c69694b9fa643ae716e494d1d56c5d3631a55a5cc9014b8a5f547e306bf5", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "66925165099d0c1f557e4c5133d8d3110cc5029069e3814807b9e2801ccc2e5c", + "regex": "(?i)^https?\\:\\/\\/qhearqrahjh\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "92ce8b7614205a01283d1c8095de4763afe1a4666ae915c3109f6cb0f62e611e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "967da8294e50d9143e34ea364c0a78bc5b9aa0d7101d9db21d1c99fce2732b14", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "1efe01a0f909fad707cdf197e30c204318c231ba4cc46a218b29a1552738d6e6", + "regex": "." + }, + { + "hash": "3e0f3f8cc2753aaceee80312157b3353c6db402066536d423fe610a69591243b", + "regex": "(?i)^https?\\:\\/\\/s13s2x\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1a9f721ac33b8acd6448106d941775d45b035b1263d336016fa54be003114270", + "regex": "(?i)^https?\\:\\/\\/rajkumarsolanki7\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0a1c429ffa4b496a0cdbc0328128b474307318cc73359473f9853f4ea8b4c169", + "regex": "." + }, + { + "hash": "8a038a99db6fedb96ffc33138c6eb8a5305dab4ce2854332216958de8315c41a", + "regex": "(?i)^https?\\:\\/\\/netfh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7fe98fb0c224c05cbcf775650781a661844ae5ddb502bb97b71461a11eafa3e0", + "regex": "(?i)^https?\\:\\/\\/egdfg544\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "c9582ed1347e2b9571bb1b3993368b84395703f8e6bd0fb73808d43cc45d1614", + "regex": "(?i)^https?\\:\\/\\/fdsfsd4324234\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "547fb895a3b0f472e498fc0a63daf3b8dbe65dda3b51e6407c2ae0057d0dd4ff", + "regex": "." + }, + { + "hash": "f1aeb2c06a596004cf4634f0af10ff9a213c3f125254ea36f357d7f29e77a160", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "3c8bfec72b7b57559262bb8c7422f696478d56fb931e57876d6e9003b10fdf16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=User\\&a\\=login$" + }, + { + "hash": "26bcb22d38647dbe78cb93860ad22ea60b4c0743cca800ae5643187b35eb8832", + "regex": "(?i)^https?\\:\\/\\/thailanmkjj1\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "da4d2c3447f6295652877e8f0a061393fbd7077df8eb948231b0f70d6f0da594", + "regex": "(?i)^https?\\:\\/\\/fdsfsd4324234\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f55baa190bc03e2deab7da2269dc616043d2667be60c15fea72cfd00047959b7", + "regex": "(?i)^https?\\:\\/\\/qahgbqaghbf\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "9a250c6035f4e9eaf5aa7cc2fc1e1b59bcf93ee6e21033703be61bf108c4303f", + "regex": "(?i)^https?\\:\\/\\/goodconceptscookingcontest\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "aab3ca930c912f37fb928b3e0adf7697464afcc69b0cc57fe9285a7588af5507", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "354a7b19765fe81d7b397d875d5dd11636050f42e4493cb7131f60b2f0d71c9e", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d3e7b834721844d6059652a138d772a5804a33d01b43b1639db373cc2c288f12", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "a33f409afbd8e7f8377863be7e80fa0018465bddeeb5fb999ae6cc72102afc58", + "regex": "." + }, + { + "hash": "7aafbee8923bdcd4b9734208d7e32296e16b08f4ceb0477c221492139ee72679", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a6414bc0145911bcf58c6ede6fecf194e346dab681f6c571d4b41f4e59837914", + "regex": "(?i)^https?\\:\\/\\/thailanmkjj1\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c661020d31ed58dd435f92a5df4b105bc5c72798d1c82c67941d12cc4503a611", + "regex": "." + }, + { + "hash": "df2c08df73b6fb2cc86561ef8e646ab1945d1c0e763359dbc528c7deddf85672", + "regex": "(?i)^https?\\:\\/\\/clothingbrandorrgg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "916e16b6c54ddd5bd6d3ce3248a3af4e6987ca4033f189a4e83260a0fb7df821", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "44bd0f468c1394b6392d7e42276d365647afd351b2671bea7bf9d964666ae2fb", + "regex": "(?i)^https?\\:\\/\\/qhearqrahjh\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "0526a604458b68f7c7d500189267ec3b294f1ea293a8411be1b223060807971b", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e6e5454dd3c6f2256eb2e5e431c95391e9f3b0f7211166cdb7f17d8866dedf2a", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b313c9751551f158cd925899a29723a7f348840bbf350531150dc2480345d246", + "regex": "." + }, + { + "hash": "710250a9b92345876a42d3fa49a38817e399a529e226a523df8ba2ea30c79caf", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "84ab94a35189f2012b80ba3e80bf231b56f16c9f5157b401ef3811ecdfb891a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+id(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f3c622ef4016b54279ae22030b6efd902e435d1dc324ebbcc92c220fe76b3813", + "regex": "." + }, + { + "hash": "627cb0b4a33d9e8bdb24e4744e660cade82b5db0ca85c368955135e873df991a", + "regex": "(?i)^https?\\:\\/\\/lkhky868678\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "bfc7119a700a47ac8caa51628c604da0fe6b2cda495b57077726c625ad152bb7", + "regex": "(?i)^https?\\:\\/\\/s13s2x\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1206c521719a98b9ec0e6f0856181012193a645cb926cdd6bb55da221bedbff5", + "regex": "(?i)^https?\\:\\/\\/netfh\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "0994005bac56087b0107e254553a8944145163f10abc6593e8c2a3499b12b262", + "regex": "." + }, + { + "hash": "62a0015a937245974db0de0b7d416fa8af5b51ff175b087cf0223df199f433f5", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "eab05331249702966356391a84f286a779a07463a5a2d80c0a4cde66c461b809", + "regex": "(?i)^https?\\:\\/\\/zbiida89324\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "b3b0824ee51a7f7b9006c4ca2005502c191afb0229598eedc2c436abb5f37698", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiws\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "0a3de5013a2e032b4e729afeed9be390eb430138398f59ef72ae560b908d7feb", + "regex": "(?i)^https?\\:\\/\\/paypaypaynejpcar68\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "805c28deb79fe69d6915fefec6feaeeaa0d1b5c8b907174d7ade07bd2ab18590", + "regex": "." + }, + { + "hash": "1a2d9286de438ec85a82a1570af0e6c8527adff0da8257e48e4df769a057382e", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "27c4e92e954afc64f4d4db8c3d4d1638fb1c8ea2ccc9f4438e32ded5a182bff3", + "regex": "(?i)^https?\\:\\/\\/dsadsa4234234\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "108a88c1b75aaf271b9f2757d0b93df189628dae1c4dd40b1281d5988166833a", + "regex": "." + }, + { + "hash": "35b6c0d1b802b118e5126218fc2a376eb6aecb2f1d2366c4a1ff49a13a64eaa1", + "regex": "." + }, + { + "hash": "6a7ddc6da3383bc97515826f1d8b9d22b0047321739bef4bb62ece9d2bbe4f03", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "c3014ebedab6cb4b18218144802a77082a2c89cd2a487c8572589a54563d57c6", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "d2ca9ed345f504efd9b45633ee93a7821ec3b8792040d6bb68a44826d5866882", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d9daabb12fbcacd8febc3f8de3bdc22a5fd4c0edd7024b9ce11580423c558dc8", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "7b5e604f55fb8a156c0ad47e3800da9bbd3245d645770a227621955a93506458", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\." + }, + { + "hash": "7eb4cfb4c78d5dc0fa79e4d3d7d734590501ff4a59abfa261222d2c60a1f5639", + "regex": "(?i)^https?\\:\\/\\/hjkhgb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "5824871dac69268d4559ba51295f9b9228fa5a525396878dbb193c4977e49e96", + "regex": "." + }, + { + "hash": "7ac52286816957c9826c1b57763f6597abd3f2967a84eecfaf632dad9e044b3b", + "regex": "." + }, + { + "hash": "3dc667e0760692079afc715900cd589e8d8a8e63e144813606bb028c361c0d5a", + "regex": "(?i)^https?\\:\\/\\/pub\\-1c0d19410a0f4fed88f1e24ccfd57f08\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cf89050f8f74b5ce58f4b2aca555f139aef2cc0c7369175fbfab550ebbe440ff", + "regex": "(?i)^https?\\:\\/\\/qhearqrahjh\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "2ec2fc575b1a32a78452e65b202fb29a72c844d9e4b6a4f4585f39007e1b3e4a", + "regex": "." + }, + { + "hash": "ef93b2da86484db8d14b3935f3f3141e712d052536a9bce11c046860f30468c2", + "regex": "." + }, + { + "hash": "54243f94c02d8ac2c9ce4ce6255413c81a418cf25f1275c18b62589ee8fd1cc2", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "1fa5801c134a82d9a26fd5f4d638aebe3f7765a811e273d78650e7bf8d53539f", + "regex": "(?i)^https?\\:\\/\\/egdfg544\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a730dbfbcd845753ac194aa5c3d2e66d59fb13426a41657fb8aca4a3768cda35", + "regex": "." + }, + { + "hash": "5b0b1b846b1b11b3a01ff62075eec19a3044fe0dc2afe78199be8acd79b740b4", + "regex": "." + }, + { + "hash": "b6b9bc1ca5448684fa861f565d4380371c98451f198df9733e0bb6aa2b872f58", + "regex": "(?i)^https?\\:\\/\\/daskdj3423213\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f8437b802f58ccd5f2e785f1b82b0622a577187ab9e5399a641a8bbc10f9d", + "regex": "(?i)^https?\\:\\/\\/trackwrtt\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "6b213a89acae32b3b4cff5fbc815941ece03d7714b248d2fb0bf92b55662df56", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b18f4fc962f0c4f8c503db74ce42f2b0c7d7bddd8ea6a944ea23aa57078d3a24", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "f823c078023cb70cf07b853b890577f08b3e375518ea1c700f6d78d142d74ad7", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "b992eac9275daff66ffe98758fca1798205d32f99e1cacafaa041210e75199de", + "regex": "(?i)^https?\\:\\/\\/qhearqrahjh\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "bd819edf924b5b1e84875ba3d575a21e2ec3db43b77c30d067943a1f9dfb452a", + "regex": "." + }, + { + "hash": "fb02dc2f4fec41ea7d96fd043fdbccceb950f63342f30322229e5ab93a072658", + "regex": "." + }, + { + "hash": "b5096f85fffa049b3a6aded7abd3a6a9af9a3649e5abb38abc0fd9fd32112587", + "regex": "(?i)^https?\\:\\/\\/hgmcd\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5bd2e332ef9674da7f6267ed60e24d86979a1e365280e74c046fab54c77e60b6", + "regex": "(?i)^https?\\:\\/\\/pub\\-64d10ad2310f489594f573af678a80e4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "21a6e71764e2e0373f8fdb5e5cc56c31fa0c2c106b7020929e5de5fe09497068", + "regex": "." + }, + { + "hash": "e1586f5029cc74cfa67b7051ca2da0ea26e206f04b71d1663e6d3e306280b20b", + "regex": "(?i)^https?\\:\\/\\/zbiida89324\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e372c8bb32cd7676ae97994b6dd3f2083cb0646994792a8f5c335a2b1c4853de", + "regex": "(?i)^https?\\:\\/\\/bafkreidtavd5tfbyhirbo62gwpwsgsu3s6takth45fgwoqi5nj3mtj6an4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "54f6cc057ecad6b07b2b1a9df7e42a0031951a8826d2c6869e23f71cc79cdede", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwaz\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "3db2b27f958235bdae99a3a0386304bdcaa0b39e27ab8c969bd8682ca513934a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+no\\.php(?:\\?|$)" + }, + { + "hash": "aae949f3e7994ed38eebc429e016f9d2aa9938db0d59e602388a1d499ba20847", + "regex": "." + }, + { + "hash": "3d70167a11b4c43164f8be937dae301ccebf50b62e664ef58ad4a26f5c23b17a", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "72b5c63bb16197dc9c12294e23cd1d74feec93dcbb60a8fd6685b4e32fde0578", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hyVDDYUwOgzgZtczvVjGJyVPldkRvoHRdv4DO83IGZ4dMZTFpNxW9sOGWt8wftbKw9hSIqF1gaq\\-euuzHOKnYBaKm6elubiKdQQfTrhOGNjgdAbsNVgBesxiMhgUeg\\?kws\\=\\&abl\\=0\\&fsb\\=0\\&pageUri\\=http\\%3A\\%2F\\%2Fen\\.tubebay\\.net\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fakhwbjyshezaxck\\.buzz\\%2Fplay\\%2Fid\\%2F\\.\\.\\.\\%20312\\%20\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&focus\\=1$" + }, + { + "hash": "62dccd22c5555620da64f50761efbd93a0ecf70db2ead79dc8e262b55da0fd57", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "f90e148971a1081d692b272bbfb14cf540a3e7c50cd51d9b81a9bd662be6585a", + "regex": "(?i)^https?\\:\\/\\/fdsfsd4324234\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5f95e48c8e8ceadcd64d09ff1fa0442462d1b6a949f81e4c22d3cee71ce85e6a", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "36b440b503159bdbdbfac3d9ce2eb4bc993ff587a4fe7147c7f561783a4b728b", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "b4aefe7cdd9b14fcb526aac9e27a5fbdad7e6a93cb4db16a93fda643fd36a98d", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c0bc99935410a694263037d0553287bd0d7b220f3efd996582ec5d290f22b920", + "regex": "." + }, + { + "hash": "ee2f5d7a252301a4ae94269b1d758acc16ce58d6ed9ec97e1d73264fd03b3670", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnw\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "26a9abde79fbffd861a14ad56b2acc38a6624f642eb5e75ac7a4283e87556fb7", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2a19ea1c5f5db68ff82b807b7603310f940e840ee988dc5dab1e34aa7b860464", + "regex": "." + }, + { + "hash": "c7d1fc4a4741cde56438cc5239226994f7e5b3a578d706d83a194f90cbdd586f", + "regex": "(?i)^https?\\:\\/\\/thailanmkjj1\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "50b2f6938b849ddc1bd664211010f3b2ce06a268313d7781fd788bf3ef7b247e", + "regex": "(?i)^https?\\:\\/\\/clothingbrandorrgg\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0035a238abb201edba10fff959c3f96efc2acf67fa8854ebd1cff13c0769392d", + "regex": "." + }, + { + "hash": "b98cb15e2597681a02c2031dba82aa153eac212779c912c9a2336e1b6cf97424", + "regex": "(?i)^https?\\:\\/\\/zidjhsjd8323\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b411c462baeb32908723634ade543448ea8554ae596f7eb625b56b1dbbbe91b9", + "regex": "(?i)^https?\\:\\/\\/fgjnvn\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "d0cbcf99139e08f92f85d44d67ca1ac41c9c1ecd1a79b82da40634acd8854c5d", + "regex": "." + }, + { + "hash": "b6a43d2efa890c23291ae935f91d6934edea2d4aed33be685c2c36f01335b412", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "9ed0861502545c2f2681ea448159bb25cf33e99cf2e50b86820448ef4e3a19b8", + "regex": "(?i)^https?\\:\\/\\/hgmcd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f26cd354014bf88484233f8ddfcd1a1094fd25ad9befa61cbac2e16a12a5c751", + "regex": "(?i)^https?\\:\\/\\/robloxfreerobuxpromocodeslive\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0b1c1b069c87f5c1cc07164bbb7467a1cb6ded9647d09c48f29b3a45be909091", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "01a2c2f6a7256747c712987dabc5277ac27faea0f0fb6e07e3863f8834108ef2", + "regex": "(?i)^https?\\:\\/\\/zbiida89324\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "3d08dd96196b9e0422f05e3a1a27ace53b1c2d64783eb73efebc02fc9cb7869b", + "regex": "(?i)^https?\\:\\/\\/djsah73233\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "bcd3b1fdacff49000ac822d16503ac828992da050fd763447485289d9f17dddc", + "regex": "." + }, + { + "hash": "adec86a2e618d91ea797a7eaf310b0661727983f0a270902b9bce2fefedfa6ff", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "98d5a52734abb820c63fa5baa7139a02eca4d332548a137539271e0df2809528", + "regex": "(?i)^https?\\:\\/\\/zubidoo324\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "528c294df5008384ade07f489e9b2398e3e706ea309231416b3d3397ed862c5d", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "596193836b742f51126fa2b6826b06626f1bd25d6e9abc91fa9feaa948ecf05c", + "regex": "." + }, + { + "hash": "640792ccdbb540dcf71ef9763185c0f1fefcfef3914ab37049da024085b56e1a", + "regex": "." + }, + { + "hash": "3981859205e178a216bde8487eb064b12e323b6b9b03d21b877c32df64b7aa81", + "regex": "(?i)^https?\\:\\/\\/zidjhsjd8323\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a445a81fe5a3358272293a2a706f4f9c8cda2c9e1ba0e79f848ea8a08c6d6fd3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9113[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "abb667452865295ac090d55cd562da37f7ddc22d3fe8b941d0d6621d88ee7bca", + "regex": "(?i)^https?\\:\\/\\/zuubidaa7822\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b44ffcb719ab8b95e5c97e2d9152ba0ffc3f866b75b7313cc07e0709afd93631", + "regex": "." + }, + { + "hash": "9ce9ecbfc15486747722457082d8b55a1251e5ba5844b3395f5527da3cde9bc2", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8d1747acbb9d7f40f1fc099e95acdae98bce7b287176879478dd1b4e7a367e24", + "regex": "." + }, + { + "hash": "d0b98b83d642acb9433035c504dc400b1798ea80bef4901aada6a0b526c031f7", + "regex": "(?i)^https?\\:\\/\\/zubidoo324\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "e8b45b18c42513322f8f19c9b19739776a5226df69b3d8cc4b3cea3f107cd4fd", + "regex": "(?i)^https?\\:\\/\\/zuubidaa7822\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "68b81515ec4870cd5d182437f04a15dd1f1667f9829c942853a2f1a35e95fcb1", + "regex": "." + }, + { + "hash": "4c8ac9c2f741a1dfd5746b8629a8f2880d61e3b1255b25ca4b18707174d812cb", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "b73ece6e64894ecd84643e6c06337c2a02110ad61cf3490db2808353867c101c", + "regex": "(?i)^https?\\:\\/\\/egdfg544\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "4d84bbb245ee63069d4960df005fb0ace7a44b3b2ee3c538ad907946cd024af6", + "regex": "(?i)^https?\\:\\/\\/zuubidaa7822\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "33cfc9d501baf5ea0dc41380e8affa669c5cec6b5d1048da6765ff2014232c10", + "regex": "(?i)^https?\\:\\/\\/hjkhgb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "4f55acbd96dab8ef17f5b5074c76e2091b68ca80d1079912678e4b6dbd036be0", + "regex": "(?i)^https?\\:\\/\\/netfh\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "2e82468708530ac6051a12f3c1d7535f3e5c3535bfc1b5a17d1ccf28858cc385", + "regex": "(?i)^https?\\:\\/\\/fgjnvn\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c668b78550d62dcc78d2bf5c3b03dd3baa30d4d375dc4b3e7a7beebed6f5f894", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f42e7c8f20695cf99f49b1b5740b84343fa5eec685381fcc0aa0b00c13872447", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d39690fe9900e6439ad567524af394b698f88af24dcaba09b4810a2cf4c73359", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "577979b6df2ebc0ddf9aadb045424df630c6d77bfd70af5679ec9fda9fb6e353", + "regex": "(?i)^https?\\:\\/\\/clothingbrandorrgg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "42f6dc831d0781678eb810b2418fb200b5fd1102514163f0d28696b336a43fea", + "regex": "." + }, + { + "hash": "3e7d92980ceaf4af916e9f130fe6d0cc149300bd8cbd0372010d960eed146e93", + "regex": "." + }, + { + "hash": "d0ccd8a628cf19fb2ae4fa4d3da87c83ac8ad4938fa8af97b0684bb6c585bec0", + "regex": "." + }, + { + "hash": "e8d0153f9bd1f2d53f29c7efeb0381ed0a00423c8dfe9f11f676cd4b0a1f6b71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c4e440148b88516eab442e01e67339e9a560a84ff21f82acd613d3bb50ad61b8", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "c478cbe12ea525b8440498b571f2ae1327cb25adb5f6b5359043f33d45163731", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "1c89dd8a22ca7cdf5af94d67d27f85fd42361501f55850c40ed280f70b37375a", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "609cec74485f6475d3f274ca3fb8852aec7cf0ad87246698f539f630e6da242f", + "regex": "." + }, + { + "hash": "b9a7bd15256fae7172010e4dde08fe8ba2e8a44d6d0ef336dbc82bcd36ab4cc0", + "regex": "(?i)^https?\\:\\/\\/zuubidaa7822\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "41dd1562b6be8f291fbf72d3f9426b87b8024880e5fb6a6b4b07671c3ac913c8", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1a8ad0e2f3607a190e69d9511853a3ef0dcbb5109426abcc00d2c489a8c84441", + "regex": "(?i)^https?\\:\\/\\/eqadgbqadhbg\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "df5bdca9aa4318159bfd8e3445123caee4db6270c74b6a0ab518d7db8b2b9df9", + "regex": "(?i)^https?\\:\\/\\/qhearqrahjh\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "73646ba8be6e1a7650c7b5a3583cc7e80479d792afd3bcc2d2d67b52fe27288e", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a9a954e706d7459329830def67d038c3997764445551e048168bf88196a995de", + "regex": "." + }, + { + "hash": "baf43023646d16aa212d26e8b1476b4eb8b68f49675b83c4844d4c1c94e21eb0", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "3819a4c2328d2379abe24309d3fa1c7105a118c2d29fd7aeeb2805aef40f7105", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "d2fadf8544d0b897a72627a6a6c414962444135f9b862af32334440361255476", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "8f9a386c9e319d4024d24437f9dfc3ebffa2a17517769ca8f0744d9dd12c93f1", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5ddb47eecca45ce54ed9d3fbf1a3c099f92d4a5d03f0a9de5505c8562f0757e1", + "regex": "." + }, + { + "hash": "424dc9ca98e3cf721cdb68771764f1d81475e0782760fd3d554baee14879071b", + "regex": "." + }, + { + "hash": "46cee554336680d595c9cf202ec27b0d6e413763baa89da3c9b640845a6862e7", + "regex": "(?i)^https?\\:\\/\\/daskdj3423213\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "476f81857c0cc3e32575f2b34f3be32119a60a6408144ad6a6888a32ce33d284", + "regex": "(?i)^https?\\:\\/\\/eqgqhaetedj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "2466a3905b5cbe54e86d0376557e7e4e45f02f6d4dfeca99b38c8fab16310434", + "regex": "(?i)^https?\\:\\/\\/djsah73233\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "8420f7cf5d18d955a56c5bbf13b5da7d5ee786c3e55bb68c69a8d620ad49a265", + "regex": "." + }, + { + "hash": "32df08b87a73be8765f2445689eb2d57ee33c7d3e5106737321a980503ccde1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cc\\=andrew\\.dunlop\\@slurpmail\\.net" + }, + { + "hash": "1350eb672efdb535450141135db2527f8e048c81dcf0b9b0f6b2624ccbacf98a", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "23b8ad35176375b497b2afcc08b18e9d244154b492f17dc05fd80fca96b02a89", + "regex": "." + }, + { + "hash": "842ad57a3e4542c64d388431a2e7add68b9505a65bcd0c7ddef01aa7139abf42", + "regex": "(?i)^https?\\:\\/\\/trackwgnl\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "287fd9ba4796fcd98e5aaf6b9948c972ee4b405108bcb739b81221cc1dfec1a7", + "regex": "." + }, + { + "hash": "761616e3d0159cb86ad2f3677dcdfd2ed9469095fa55135b949ea7aacc5bab60", + "regex": "." + }, + { + "hash": "32df08b87a73be8765f2445689eb2d57ee33c7d3e5106737321a980503ccde1d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?cc\\=damian\\.graham\\@slurpmail\\.net" + }, + { + "hash": "cd97f062c81e46d2895d781085ebf3a55d2a0be8a3b36bf99a8e241f8ff3eed0", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5dd00c2f1671d6f61449afd4d468eeac670d0c5aea185ef8d3fe6cd26d11f1ab", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnw\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "ea20c09be8f379b8f668c261ebe8a289f4242c69f5bdbd08dd54ec074ca43577", + "regex": "(?i)^https?\\:\\/\\/zidjhsjd8323\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "32260d0780b5029e2b172beafa086f5267751525a03b9c3ad90ba6a3ea48e623", + "regex": "(?i)^https?\\:\\/\\/d3a4s5\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "528cafcc1359d608dcac6d290fd9d9ea614d77e38b4cdc0ee39c737985c93d3b", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnw\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3af039bd37200670148519eb6ee92f5c294e48f780bbe08a23231a46147cdfaf", + "regex": "(?i)^https?\\:\\/\\/goodconceptscookingcontest\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "7fcb1b2c01b6209d508c505a4a4d523fdfc6fc6f398f216db95342df9dbc08c6", + "regex": "(?i)^https?\\:\\/\\/daskdj3423213\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "7f05de3152ece43dce37bce141bb8a2f0918e01e5248bea1c1fa63b93ce88791", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2c3f4c488ecc207d4cfbcb159cfcd3d221f6b490e8b501201176f0d3068f0360", + "regex": "." + }, + { + "hash": "048c8a5082725911ae6d878927e64eff056f520e83faa3591481d7ced943bb11", + "regex": "(?i)^https?\\:\\/\\/hgmcd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "e8b4d5781b617dfe1d75b431a6671fb10d648ef51f23f51bc75ec47b4c208884", + "regex": "(?i)^https?\\:\\/\\/robuxcardsxnw\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "c382741b96210610e31e755d405fc167352b62367272b3dfc2ffbfe3a4af9fae", + "regex": "." + }, + { + "hash": "3e7d20e5add4dcfb4683884bf7411ae865ac709335bbecb31662077ccc535bc8", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d34984a4fab8dd3a3d0ae4efafcf090e40ba9f55f24b1e6fb2a9fd9e1a49edb9", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "26e65d43e5a9821262688ce6e7a74f1f5172832baeba2c8bac5d0028efff5de8", + "regex": "(?i)^https?\\:\\/\\/clothingbrandorrgg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "01c882539398da23246122f7290e95a3bb4f8ed1652e47b0385d03d9b15cb070", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b782505abab6764cd40b24ab5531078d22acd5780d5e9260080fc61aec725035", + "regex": "." + }, + { + "hash": "3b7c22d71e6d6cf45b245ab397e8db75d5206b27fa535ae303cf0e6bf6b3723a", + "regex": "." + }, + { + "hash": "64d16b37ef728f5e787e21568b7949b73f8e8bb0b7db6c2432e46fb78ecbc9e0", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "7d87af5d3ec06003b3be78642d7b2e7a7a4e48c70faf9d239929540b3fef8628", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sports2\\.html" + }, + { + "hash": "885b3c9c7634d3f8ffd23441fd2d8e0114e01240e215b85e8290b9b05a753ebb", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "337655ecf867306df11cd476f0c7d95c0ffbcf5db5479ce55f9779880680b6eb", + "regex": "(?i)^https?\\:\\/\\/rgdfgv\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "00e375f3b5e54108006de991cbcfa950a62aa109d47fc8f2b9f70437cc8d4c36", + "regex": "(?i)^https?\\:\\/\\/robuxyopk\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "055670144fa6ae2ea9134015ad635ff0106f2f55843b999ca39b358d045d43c7", + "regex": "(?i)^https?\\:\\/\\/dasd73323\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "3fe76306c9bd5f0ce79e43e0047d252efd87b8016adca38c297aa65107833a0b", + "regex": "." + }, + { + "hash": "dbae95b311a3f92af69ac4475d8fe933885f8a7346548e244ec64a92b7017aa2", + "regex": "(?i)^https?\\:\\/\\/fdsfsd4324234\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "95f3c5752dd4ee5613160b4709ce2ae7666ed074899c9c6dbc22168b43a68725", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "0146712f68504aa34b2673ea26000aee3afd1ebe07f7efdf378e9172d904e6b5", + "regex": "." + }, + { + "hash": "82a885a16d416ba53b6e34c6cd168b09e18862cae628c08a64685f7fe6026a42", + "regex": "." + }, + { + "hash": "ab091baeff1efc94ab2d31b9dcd416b5968531f418538b330c0a552a6152fa47", + "regex": "(?i)^https?\\:\\/\\/zubidoo324\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "87c8544a7075725f8f25277ec4e2cd82b9ab9b9c9dda66281a9cebe29625408f", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "4fb4512a8b9fd89b7838595eedb484240fda354701314a98a43fb0ccab124103", + "regex": "(?i)^https?\\:\\/\\/lkhky868678\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3714d7a31a59e4f54acffe095fa0ed935dda48919d093dc20d9c09c404e8d9f5", + "regex": "." + }, + { + "hash": "73b2a73d906c0b655fc465e5d2c36ca4cae38d7e8442a3f2172aa52528c4bce2", + "regex": "(?i)^https?\\:\\/\\/5s2ze1\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b47fe84f912bdc696b6373895069c87bddfbd30b9318c0a3c4bda9759c10d632", + "regex": "." + }, + { + "hash": "528ce834ced4e4cdd0e6a40cca796f77c917ed7ff933335692b8d2f354a45730", + "regex": "." + }, + { + "hash": "d02e8acbe7c314fb739cf16a17feabf5e3b5dde4b6735c4cf747907d7a4e0cee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "ff6ff73c06fbe3bef20e6a7378a000374865dd90261e9e9d7c3de1b338d8b9d5", + "regex": "(?i)^https?\\:\\/\\/daskdj3423213\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "12d27529c2ac218ba27477f9d0dad4840f8f300f17b17259f88334bf88cab8ba", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3e7d351a4dc24810e50ef7a70ec0e8051a3f2305077f54e1519133ca71a15839", + "regex": "(?i)^https?\\:\\/\\/netfh\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "09574c9e3f48229bcae671c28cdee5740cbac911a756694e52e12aecfcf93d80", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "dda0554c24bf8602cdd59c2f0287ff261cd732e75fcb0eff7e1a77f4bf538324", + "regex": "(?i)^https?\\:\\/\\/robux70ksiwi\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d02e3ad593ce942e502c5c5482054f88802a6087cad42d91a8dfc495573d223b", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girl\\-clip\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "386250616afa8cfa608e708c3dd4730760822781d3e16a38aad8af296a637c03", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "4c4ed6c245545a8d5dbf0dcd3d87e3b7e82b467ab5fcf2129124149dbdc966ec", + "regex": "(?i)^https?\\:\\/\\/fgjnvn\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "4dc6e2594565cb6328796f0da4174f5f73d92516ba4041adc2d80892a732ad99", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "f78c80dffaee0acf680e137585cf69ebbc276d91a5da40aee26d55711b5c290d", + "regex": "(?i)^https?\\:\\/\\/s13s2x\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "a1f65e031ca39ffbe3306ffb9ad39b364097593e64e185997b6dcc482dd616e0", + "regex": "(?i)^https?\\:\\/\\/d3a4s5\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3a7403d7da6dd6365184951b0a067755b873f1b422d988e2c0e7e4137f12a19e", + "regex": "(?i)^https?\\:\\/\\/bafybeiedmlpfop4tqej2n77nnqesdx4cy3ur4e7eha23u6bklnrqpqg4wm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "f9ec96900b0dec3d0cb29eb3d26bc9ffac29221cc9c1bcefda04c7bde504a6df", + "regex": "." + }, + { + "hash": "2c5be610d3380db0dd0959af7b1963d5c57aa6d80ad9cd1d4bed51447986aea4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uLpDc7(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2077b49b53a6e87ad42bbdb1054a3d106eb19ba90f6124d136ee87ec0bf84987", + "regex": "(?i)^https?\\:\\/\\/ton\\-airdrops\\-spin\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0a494310b8b81c6cd5e506544eae3dcc3ba001f8f5b2af880fb2438a7a4c16a9", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "94d767a1651d1149f8c67a12ac25c257b1c770a52bdf35efaf0c18c6972eac70", + "regex": "." + }, + { + "hash": "06c24bfdcb37f92619bdeec12ada2b5acf228bb5ca933fb2dd56e72a6fd07fbd", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiws\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a1c0aa905f6f728f1480b98e195bac0dd052de96f9391b9a41a036d6f973d847", + "regex": "(?i)^https?\\:\\/\\/lkhky868678\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f69ce9c14987105c0601346b95aa20f33db5189c2e8e3e78111a9f26e07f1cd5", + "regex": "(?i)^https?\\:\\/\\/zidjhsjd8323\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "c02c1e7cf77783897e14fe3359919ab19a6d5af2d1622635edee00fafdfaacdb", + "regex": "(?i)^https?\\:\\/\\/rgdfgv\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8b211b44d58891afea38f51e0d16381a95fb821486027eabdef213de88a49805", + "regex": "(?i)^https?\\:\\/\\/d3a4s5\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f13102efbb421c0470c56e1dcacc7269903f3f134b4cf03eb37e4b13f8eb2e62", + "regex": "(?i)^https?\\:\\/\\/dkshd732323\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "0c878660de1b50a10345bbf429a9f96c7c10359c20825569baaba6882a45da50", + "regex": "(?i)^https?\\:\\/\\/qahgbqaghbf\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "05e27e4d0f6ee931da9c1264e4a287a4ac2ea3672f87f43145f177d4f24d6392", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "09a479e0faca179e35c0ab8022a32fb2e6b4428a8d478e10516f7e124f90ae1c", + "regex": "(?i)^https?\\:\\/\\/robuxfixk\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "d02972918e183fa14d6f2dec5a4ff4425ef5a0af0f8b672ad65d970d7feababa", + "regex": "(?i)^https?\\:\\/\\/qrahqrah\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "97949af6d69bb7b6166b9dec55f3555139eb6d3c7e5c70eb65e071d76ac3853a", + "regex": "." + }, + { + "hash": "1eb8eed4a4c293df99ff1fea320e304a4a4246857b9a641a10eaf9e684dae146", + "regex": "." + }, + { + "hash": "10a49be6c4d4c6395cc449653c592e8681eca3a45cf55d5a263616e98a808d0c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pagez(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f3a0c60b4eadb436cb94af5dd96f1a0a541769dce06b6f3d399c5dbadd01d31e", + "regex": "." + }, + { + "hash": "033bf798547fa0808b19887165b7f31843ec38c0972352f4e13f1735dc0698e0", + "regex": "(?i)^https?\\:\\/\\/netfh\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c1c03e7acd10806d1938595303d74b46cc13d0b36cc116e94f02ab8ad0f20e82", + "regex": "(?i)^https?\\:\\/\\/eqadgbqadhbg\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0942c49bcc11b94cff4100f0e611e75aeb3269274e3355b83896d4876ca5b635", + "regex": "(?i)^https?\\:\\/\\/qhearqrahjh\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9ab3050b9256737b80f114fd32231e10ad2b7e70f5b8feb9050defd7a4020a77", + "regex": "." + }, + { + "hash": "bd0e563ca7e170c281971ca1931de451a63cfcb7c653e8ae86463b9c8efa8a5a", + "regex": "." + }, + { + "hash": "5504f1b2a33e62d1a3f793107cbe223c39fe0b4585e3819fb7026268f554b6d7", + "regex": "." + }, + { + "hash": "539c08b994b9fb5f0ffb1c95dc8f56574537b3d2f5bb55f8a94a3b1455ab799b", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "42562b9d4fe5b438d70f28d18127bd35dbca23e7a04b8ea969cd68511e473dfb", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "b2cdad400744b815a38c6bea2b002d8eaa9dc95e0dcc32bbffeec74ce920a569", + "regex": "(?i)^https?\\:\\/\\/hgmcd\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "7b5045403b271047676b6c706c1ea814e2396ae53007d17ff5320f4d5bacfa1c", + "regex": "(?i)^https?\\:\\/\\/netfh\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "fdedb82bdc085ec43a7c5cec9657e989e9ee8f9d0741dd7a7ce2813ca47b0dbd", + "regex": "(?i)^https?\\:\\/\\/eqadgbqadhbg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c888b0f4b75abd73496567ae6d0972cafe70130699c9347b6708e856b19adcfd", + "regex": "(?i)^https?\\:\\/\\/dasd73323\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "baab7353ea3bcf852b3f193bd92056f58cbc45fd9af204a779d33f47443518b6", + "regex": "." + }, + { + "hash": "e3cd4ef3f84fde9105cc68e33904f42df2576dabc4969840431c0bca5164a083", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "c83f38d0a82e5397957d7463db489ada0c8e3cba95eb197164d687ed01fc587a", + "regex": "(?i)^https?\\:\\/\\/cookingcontestannusllycontezp\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "98909b88262cd8770e9ee8c98df0deb7a2fdcbe41a75ed5aca23dac752dfe0dc", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "0902117264067c52dfda76290195186e88bca53143fdfc966804f11516f81310", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iiRCD4E4PA7kZtczvVjGJyVPldkRvoHRdq1TM8ObTpwTYM2VptdT9M2LUtRqLdeSwYhVIPkkgvS5euuzHOKnYBaKm6elubmKcggfSLRO4TEVTNY8x1yEJn3hvdcWzw\\?kws\\=\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fen\\.av2\\.top\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fsavdz\\.com\\%2Fv\\%2F142536\\%2F1\\%2F1\\%2F\\%2Ftitle\\.\\.\\.\\%20312\\%20\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&focus\\=1\\&pageUri\\=https\\%3A\\%2F\\%2Fen\\.av2\\.top\\%2Fv\\%2Fs\\%3A\\%2F\\%2Fsavdz\\.com\\%2Fv\\%2F142536\\%2F1\\%2F1\\%2F\\%2Ftitle\\.\\.\\.(?:\\ |\\%20|\\+)+312(?:\\ |\\%20|\\+)+\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "c20f6232c8a32e44388092f00f739870fc968fee695db12ce2228aff41908946", + "regex": "." + }, + { + "hash": "e1bc81a4e110edca62b7f0f775392d2083b49289f43b33a1f0dfe2dfff27a3fc", + "regex": "(?i)^https?\\:\\/\\/dkshd732323\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e65352b29c10409fc2b9f35eee388aa41fbd1f917b12cd3a487139e7680f14b9", + "regex": "(?i)^https?\\:\\/\\/fgjnvn\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "475b7346eb8bce8a9e21ce719420b16af12f853e071a674d169d4e5db2adcd93", + "regex": "(?i)^https?\\:\\/\\/thailanmkjj1\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "4a2da51f164aff720665cf64e1b95fd9793bcf0eaf5d75bfebff5f8b8a015026", + "regex": "(?i)^https?\\:\\/\\/zidjhsjd8323\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8ec1b85e6b7c3322b22e7076221c871fd6338d6020a152cab7995d2e8335e7a4", + "regex": "(?i)^https?\\:\\/\\/businessprofilehelpcenter\\-verify\\-meta\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c1e83da5222bf9cde3dee6a6d70d81f891029b84e7620274786c0b35ceaf89ec", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "dc936f999ae0bfe1a2151c38d86679e462f7d7338a18bea2e46a106c47104286", + "regex": "(?i)^https?\\:\\/\\/foodannualcookingcontest2425\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ad454f0ff99f73cb70c05e9c6b66a4d89349220616366063693abe0933b39728", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+access[\\/\\\\]+me[\\/\\\\]+Doctor(?:\\?|$)" + }, + { + "hash": "edd18ab6304cb050c5ecefcf710fb7788410f41afe8066dde50814a19addd466", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "df6073ea859def759599791f49d72bdde5328b21ad87c4b6715f622f5e5d7b4e", + "regex": "." + }, + { + "hash": "e688616c40cc675f1ff8f3287ab16ad7a47f9a7b50a0f29ea3097ec8097eb81a", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "3a6580996eeb12d9d8102c3c792907db1ba5392ddad719521649d8421668908a", + "regex": "." + }, + { + "hash": "6d077fed1bc16854d92da1041fae2b031a25c4b263903976bf9630da5503d0d9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8e3850d6d77dcf3da17ade9bf031d53d39d044bd3e2b3517d2dc9f44138f665b", + "regex": "(?i)^https?\\:\\/\\/zubidoo324\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "13a293b73c88d192830d666f7865fd5d2b65bbfc87aa72fd2784eca6e572da4c", + "regex": "(?i)^https?\\:\\/\\/robux60ksiiwaz\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "0e596d4c2d2bdc51751304dc06d0e014de76a8125534749ee5590e49ed215789", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "210a3031a5f73b5030de1e69080fdb627469614060f313489385af4a82cafa6d", + "regex": "." + }, + { + "hash": "7d4d4de058e05177ebef5f8b293a22755a8bc1d02d5f14863abf50aaccb88b3a", + "regex": "(?i)^https?\\:\\/\\/zuubidaa7822\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "380cc9a2214af2f2542d243908ea3c13536141e7e0b271740010c8fe095eb04e", + "regex": "(?i)^https?\\:\\/\\/lkhky868678\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a631bb2cf0e67c091c9efa5a4a084cf0d7b90f61d9446032ba0fbed2f6895374", + "regex": "(?i)^https?\\:\\/\\/djsah73233\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "4932f1360202e8cfd70f556d818eb60db5834e4c77e12c40b8e66b53c3781409", + "regex": "(?i)^https?\\:\\/\\/qhearqrahjh\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8800dd8cf1d8c3c134bded1e1c85e939020c0ab270f2bb34429f1d29bff97b5e", + "regex": "(?i)^https?\\:\\/\\/eqadgbqadhbg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "80a863fb7bc38fb80ef58cc8e909f733b45a953421bb3100078e02381cd145e8", + "regex": "." + }, + { + "hash": "67a41189d5fca269b66becd067464094b40a33ad3f39c7cfd85daf6bab081b20", + "regex": "." + }, + { + "hash": "8c503faa070a65441ca4d5f3a150b2998afd7200af9c321c248eb52984a0984e", + "regex": "(?i)^https?\\:\\/\\/bestcheiffoodnetworking\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "a6e1aad184ea6de267b37890be2ee9f6dff8780a57cc3cbe9670d10db965df96", + "regex": "(?i)^https?\\:\\/\\/intee1111\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "2493249a767dcb523bd5169fd44e6ad99b198e41a9e4a603941c8444977dde46", + "regex": "(?i)^https?\\:\\/\\/goodconceptscookingcontest\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "5845ed82ea37d36608d4e13c79045a614929290f4b07180cdf9095c5ecddf7a8", + "regex": "." + }, + { + "hash": "157531f5986fa45924bfc176c608d49255bab5dbc74b5bf245b4f30fadc24865", + "regex": "(?i)^https?\\:\\/\\/zuubidaa7822\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "71818918cd96319082de0eb799b53e04be54354e95c282337f3db784904d6247", + "regex": "." + }, + { + "hash": "fded1f13d3671a6e33ad8d1fe0fed18db6b7556f802bde3e6e1debe142378935", + "regex": "(?i)^https?\\:\\/\\/hgmcd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "14c21fb474cfd6021949e502040e4b6d63a64952b5120d14cb38a3a26ec96958", + "regex": "(?i)^https?\\:\\/\\/dkshd732323\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "c6e1f2106df0f99efd1b7d807a9291ee436ef617892fb178be04711e5337a7bd", + "regex": "(?i)^https?\\:\\/\\/robux60kisi\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "08c6be78516efba85c3f15485387f779415fe90bd0fcafb4cb486158719799d7", + "regex": "(?i)^https?\\:\\/\\/chubby\\-girls\\-video\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "74e6434ab7985d41e631432df85b5d446de69dc6f49065fb478292160a4510b2", + "regex": "(?i)^https?\\:\\/\\/goodconceptscookingcontest\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a3e547a21ddc4ce38b0198e646d1df35b7910ead44470cd189c73e830ca45313", + "regex": "(?i)^https?\\:\\/\\/khkh798\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "84b6d8542ae9a24ef7293e7938ece7f0b02f591e55464fccb47c8c939a68accb", + "regex": "(?i)^https?\\:\\/\\/d3a4s5\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "18c0377fdf55ed4c2552df7e9df8289215a72a43619c2bc9c5a6a883fb1667e1", + "regex": "." + }, + { + "hash": "810534016853fcd03578acd8e6cedfb1d54ada3b97debf9cb568d85aeeb70d38", + "regex": "(?i)^https?\\:\\/\\/egdfg544\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "0f715c7e8beae84efa06180886d664655bbdd31f4bef310daff3441a7a8b70c1", + "regex": "(?i)^https?\\:\\/\\/robux60kribsw\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4415e2b55da42e405e9d5eb90870b5a3348965feeffa26b0866fa8cc4e4196be", + "regex": "(?i)^https?\\:\\/\\/qhearqrahjh\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "79dcd3ef55f235ed24ff3f01b3925abd5dd54b42ed73b99e5cc4bbc78f1365bc", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "2cb7d61e53cb6aa9bd8564c3838673849da81dea6b2d15b347da53b97a4efecb", + "regex": "(?i)^https?\\:\\/\\/office396elmhurst\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "df884397607d620cddf5086cd8c851a924205285849da1b3e69240c38486c7f5", + "regex": "." + }, + { + "hash": "0f013159b2d36b7c8decb6541ce076f98e80af444a36eb055e1e2907669abba4", + "regex": "(?i)^https?\\:\\/\\/robux60kbvyc\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "9c8e415a4137866a3b319c8d0fe0dee627e2feb582bf38ba184d6decd49117c5", + "regex": "." + }, + { + "hash": "58c34a79342ea4251506677180253d1ba82056d442f82e9ef00ba1360733d76c", + "regex": "(?i)^https?\\:\\/\\/dfghdfhdfhhdfhfddfhhfdfhd\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9e308a7dc2846e1e860b9e72007af9f99cac70419a01aa5fbbe430fe2d8a1b4c", + "regex": "." + }, + { + "hash": "45148fa7649335a68c13f37d458edef7219dc0bb56eca730a490b17d2487e800", + "regex": "(?i)^https?\\:\\/\\/hjkhgb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "f7e1d1b3f12f36c777715aec3b3cfc2d9a3099bd71da3d223d5255098023b4bf", + "regex": "." + }, + { + "hash": "7e8514f4159bbfb89278a89f1b85130dfcda8c4359e6928fc28545cadf143ed9", + "regex": "." + }, + { + "hash": "c33b1eb5741619804e976cfbd80b458e55dfbd0b29b8332add931436199eafc2", + "regex": "." + }, + { + "hash": "d59f2e91e6cece0a1f3c20d50905f6ba03b88903d5eb637e324678f2bc0aa192", + "regex": "." + }, + { + "hash": "0c19caf2102f49c61138df7af27242663bcc570397955d30b8ef8252c3242c32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+es(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a48653ecb86e12b012ac022651b7815eb1609c1d3f33b0cdce62ddfb7770612b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d0b4a4343bc224f698c4e2162ae7d00c590fe954a4f94a952744f175e22a8bab", + "regex": "(?i)^https?\\:\\/\\/hrtszqfhjnrqzshj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ce165898236ca6698691f0e77b0b7e9536960e6deab2813fa379a0e38c1e1243", + "regex": "(?i)^https?\\:\\/\\/dsadsa4234234\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "a1a13134e6410fd565a22a68a14a85eb15a12d3c0c2843d3d97f106a282cc2ba", + "regex": "(?i)^https?\\:\\/\\/robux60kvyw\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "3c8bfec72b7b57559262bb8c7422f696478d56fb931e57876d6e9003b10fdf16", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index\\.php\\?m\\=Order\\&a\\=daikuan$" + }, + { + "hash": "cf89f242e894c1d37e70d3a1df4ee3181a92497911b39d383c8b1094897f19e9", + "regex": "." + }, + { + "hash": "c6045bd5c9e33e694599358524b7b845b030706a9a133353246b85cdf6328b55", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "146e5527b7c3aba85c1b3b1cdd7c1e3bbe927c7dfbe6ee103f6f64b4ae953070", + "regex": "." + }, + { + "hash": "27de777989a838f2eacda16478c6dfa52fa403bbf2c75bc7c90c978664ae945a", + "regex": "." + }, + { + "hash": "d8e16ee7298ae236cafbc86358decc736771756bdd1fbfc25dcfc4de77eee196", + "regex": "(?i)^https?\\:\\/\\/awdtuadgyiawdgiawudiwguadawdhawnd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "7f0a88b14da1ea96d3370b34c6ef4b5931bc391d474be7d22f35a79e4646af87", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "2ab137e4ef42f5a712a7fb9746e9525b4d9460b312bcba46331bf66904f6306f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "be5f6536bf951b8717ef1dbd5df46919fd27c1c76adf43b19fc07ea1eae68ae1", + "regex": "." + }, + { + "hash": "f924890127e9a57f367e14ec49772a53d59a4326a7eec46e6078b67e465cca8e", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2964cb271496c785151851860db917c438ed7f8676a853a16d948f4283d21882", + "regex": "(?i)^https?\\:\\/\\/followersfree007\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "506420ba58db025d5f1081b86bd759a5420ae4b331ff9e9d9743f137667d19fb", + "regex": "." + }, + { + "hash": "608fef3885cc44f01bf2231a33407f83f1a77c024ac0ee3ab9016219375fbc71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+uy(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5883af1d073929c623b0f0781323d93c6b9d3b6985fcc0de30133243cb5621fb", + "regex": "." + }, + { + "hash": "688b30014ac25ccc5a73f95dab215d28c14c829a0033ba738eab0e3efe612a14", + "regex": "(?i)^https?\\:\\/\\/followersfree007\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4cd35ca58ce32defaccd9b0f5948dbeebeadf2a025f3f48712589dbf4561d38f", + "regex": "(?i)^https?\\:\\/\\/voterrr\\-proo\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f9ec64246abd2848d818c563fa53b45f41e97b2cfe9dd2ead2d30ada8e583402", + "regex": "(?i)^https?\\:\\/\\/universityofmaryland44\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9b5a7fe10d6bd977aa3a2b10af96b76625b450ca5b0b5b9e2b9feba705da598c", + "regex": "." + }, + { + "hash": "4c25459553fe7d1bd9b055bd12e81958e911694b115c9d4fd76828f850a66cee", + "regex": "(?i)^https?\\:\\/\\/comcast\\-103596\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e55fb65af2ec0ef528810045e93744fa42a43e3cd0f0380d24de1c24cc739b31", + "regex": "." + }, + { + "hash": "18de0a98a932dc88f6e07988c49f35b9b514439b4fcb5be60fd1e98f4622d77d", + "regex": "(?i)^https?\\:\\/\\/redxmediax\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "da3d9d3cf731b18d9afb96811b50b7b30d98516485acce379cb5474692c82daa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+SMzBeuCs(?:\\?|$)" + }, + { + "hash": "249b6e16aecb5776451865a912f2966313e60f13fee8816c67c8e7ff57f096b7", + "regex": "." + }, + { + "hash": "d61ac37abd5112321a7c87b904a2cebe37cb2cbcce623c01a2f351c2c45a3594", + "regex": "." + }, + { + "hash": "80806501bdeeb8e7a4a3aec32ab76a6871c7a831100e7a4c969be66f8b4d3efe", + "regex": "." + }, + { + "hash": "d541d427e8a2ddafcfc31f550f8d3c5acd568b686a3df7f7028deceb812baaf7", + "regex": "." + }, + { + "hash": "f60ed16ee3481a1a08ac4f81eea97d3cf99a74d5d60a6f04a7f6ea131557e1f2", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "3c96c93699cfde9d22b653626b520596109d3406502e0784ae1fc746a99a4d48", + "regex": "(?i)^https?\\:\\/\\/awdtuadgyiawdgiawudiwguadawdhawnd\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ce7d7b02b8da6884f44350d48932a260a3de4fdd250ae3b7b5b63b71227368b3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1" + }, + { + "hash": "0a223e812e733dc0257b5a24c02beb0aad7562650aeac2da1cf988eed97b2027", + "regex": "(?i)^https?\\:\\/\\/allgft4u\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e5048c33b5907ac402e5e8191237e86585327e4a5e9a1db7531fb0099bc2720f", + "regex": "." + }, + { + "hash": "c041280a738e8aec9c9abd5f2f7d3058247c584ac3af5d36e8534fd6c8266621", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d59f7319092f679e83da6ff82a452a304c1e695f86d5d494acd5b8c88c01d26b", + "regex": "(?i)^https?\\:\\/\\/www\\.upfridaydeals\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dde016b9fbe490c9b7e33ead9fb95dda59ec8b87ccb77858cc3ea4a0c9c62b43", + "regex": "." + }, + { + "hash": "01561b5c94b169f31c8d81e4e0d182995054443c67682d240121f99adda5aacc", + "regex": "." + }, + { + "hash": "a5831ab004756229009125bfb82995b03900b1b68244738aa24a2fc38200d9da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cc88136b9[\\/\\\\]+login" + }, + { + "hash": "fd034081c736e60eef21063197969d9d32123dd2569ddc0e1365c3b9a04ba9c0", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "14a317fe61a6a5abdaa9fee011351f966e0ff0905de93c36160dc453348ed31c", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "849791c1810f47601fa9dbd2e1ae0cef969f2aab307bb8111a01ad621dcfbc3c", + "regex": "(?i)^https?\\:\\/\\/sdgsdjhfgsdhufsghufgyufsyu\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "abd38a7901364140c619797a6bc4617b36c29ec834ea99772ad3a8678971111b", + "regex": "(?i)^https?\\:\\/\\/robloxhousetycoonscript\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7c98ae3f28d7f2d416454494bd110604e9e7bd91a30527499d9942ba274e1864", + "regex": "." + }, + { + "hash": "2cc5b6f2246e3cdafbc2fd284979b102a370050c5adc22cabce8f5e00c727698", + "regex": "." + }, + { + "hash": "641df4ec68941202b180813b8a9a4d1a0c12c3e46d1753c4caf281aeaa0e1193", + "regex": "(?i)^https?\\:\\/\\/followersfree007\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "76f374957997d37eaca6d98c41c93976873336136a976eb4472c4a9b6b5baea5", + "regex": "(?i)^https?\\:\\/\\/voidtracker\\-spacekeeper\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "718a1e8fad4d01323195cfd9cb775aeba28f59133e57f17caaae53a6fdc3365a", + "regex": "." + }, + { + "hash": "5d22b3bfce90f9a8566a4dbb2394f677a440d3ec7d391cad26e34efbb5809d33", + "regex": "(?i)^https?\\:\\/\\/verify\\.64\\-23\\-159\\-187\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4a7c3bd24d89da2da9fdc6888ed3248fea1301382544fc021e4a95ecbc4b52bd", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "77c905b37a7b502bec1930d126c02d2471783c0b189bacbddca939698b4fb5ed", + "regex": "." + }, + { + "hash": "3315fe5b8b2aac6a11ab7078d4b24310eab65aa84120fb6cca719c91f9d19aa2", + "regex": "." + }, + { + "hash": "e334ac9a7e77a91bab67c6da922c00d48fa302f9976bc31ded680444e2593231", + "regex": "(?i)^https?\\:\\/\\/bafybeid3iiatmou7ch2xhacqj5fvpgiymgx44bkf4kymywfzzs4ut3nmei\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "f7eb943c9f0327b0538796e058126ba611e2b3e4ac8795dfb6e0214329c35137", + "regex": "(?i)^https?\\:\\/\\/followersfree007\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "1a98df260f3f41ca80f7206a69ed12abcb525158b9660862702ceb7b3cdf6436", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+SPoN7Zc(?:\\?|$)" + }, + { + "hash": "909e5e4e10ec191d4f4532f8c5265e6df9aed7e026c4c3d2c481c8896ff48c0d", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "3490676cec9941d9f077913c6fc302604b58eea83533c092f5461700c3c3e079", + "regex": "." + }, + { + "hash": "5ed2838796156fedb4ee3ed12af8a2e1f98f78f85a7b213fd854d5e1cb120dbb", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdemardermyster2\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "11d1af201d362d92f88c933b403fcb87fa805e9bfd9775b0b02385410274fe02", + "regex": "(?i)^https?\\:\\/\\/olenthin\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1eb8f453335a802ca126ea140b01c8bec9c74af2f8ecc869d12e50965fc3c4d9", + "regex": "(?i)^https?\\:\\/\\/online\\-mail\\-105351\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "88baaafee7bf0800823bcd1561690edb1c53d9873623171f8d2de6d9cf1b1f56", + "regex": "." + }, + { + "hash": "bd28296cbafb96916247a89d2a5ff8c00d3fcabff3f6f6d1a76f42d9b10d2110", + "regex": "." + }, + { + "hash": "9f69263f14af40403882707fb1c6f9697056c312fb3e179e7b43d86db506124d", + "regex": "." + }, + { + "hash": "f0ef3042ad7c7e00e0a7fcba312b1b5d355754322fd4deb1e24847e1e7a68a16", + "regex": "." + }, + { + "hash": "ebbad26f8797fe6f567387d3732862fb2844b9fa2d413cb9ad46f2d4f769c45e", + "regex": "(?i)^https?\\:\\/\\/balenity\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1419a49160b02b80808036ed776da2bad93680298e9d5d68147ef57382ddf5d8", + "regex": "." + }, + { + "hash": "e42d0a93c8b1800e063922982b9a2c09cb801c90ae086ca4573da206300ada66", + "regex": "(?i)^https?\\:\\/\\/70w83mu\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "1a464b2ddfb039b2629ac9ac5942d6ef545e3cf6038ab321d2528a1f037ec7db", + "regex": "(?i)^https?\\:\\/\\/online\\-mail\\-108542\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "547f135c274f264130567849a7b2d3f6bbe7ef36014b45ac3e4897902a86aa7c", + "regex": "(?i)^https?\\:\\/\\/att\\-108606\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "55044219e4619916d39d60e6e9fbadb3c188f69a2515709cd96522551f28ead8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "b0d772776ad2d3252d1b11527c2a6d65f799f263ebe959cb80f8bf1acbd75ad4", + "regex": "(?i)^https?\\:\\/\\/ramidela\\.freewebhostmost\\.com(?:\\:(?:80|443))?[\\/\\\\]+bnp" + }, + { + "hash": "f8a698d7bef8e5d2352bb4ecf6355a1beb7d9b0c6330cd5a04b6d24d1ec131cd", + "regex": "." + }, + { + "hash": "aad2345e0b0668d774e84e6a152d3a2fb247ad6b682903bbbf0f59f0f8b36a0f", + "regex": "(?i)^https?\\:\\/\\/www\\.universityofmaryland44\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "35c2658cf828d345c5d32a1a2ee942f17ab8d27554dccd534417cdb2d8e05df7", + "regex": "." + }, + { + "hash": "6a3e017f5c7e51d99927ea9be240cc4732d6b01ca10e5b35097cc549949a44d3", + "regex": "(?i)^https?\\:\\/\\/eastlink\\-104411\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e536e124b0c28b7ed0bad48d62b7360e5cd67f6120c98e12beead5112e779c8d", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "01a5b0164b46de281c44b303045d030b6756605adb95f4b47a1b81a1e4349bf2", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a5831ab004756229009125bfb82995b03900b1b68244738aa24a2fc38200d9da", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cc88136b9(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f5e28d98ea263119038bb1f90d4a583c2c27e33ec091a13b6d0d3ee5f73b587f", + "regex": "(?i)^https?\\:\\/\\/allgft4u\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "ce5e81858c1bf3ee7e78108a33b58c58270fe3957d1e026e377956d3fb247cd9", + "regex": "(?i)^https?\\:\\/\\/awdtuadgyiawdgiawudiwguadawdhawnd\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "5ee7a74d01177f38c43650ecccbeec683c6b157e530ea5ecca87b8c35d3cbe54", + "regex": "(?i)^https?\\:\\/\\/rbx\\-10k\\-here\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "13d2afa667d7e5a05703e4f379203fd229e28dca1a08668f4ca926dc4cddd0d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+D5vxcR6G(?:\\?|$)" + }, + { + "hash": "0eaf1b97e18fe3cb4e898c32469b76dc3add843899059c203285ba5364dcd682", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+regalos(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a4acd3990f61d9d435a7581ce0fee37f93fb26287d6ce1e166e47bd72cb2d9df", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "626d18a41d32ceeb8e6f822bc2ab4938bcfea4ceb72fa5e4e71d72ad508d6d3d", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?4catgn\\.com(?:\\:8002)?[\\/\\\\]+" + }, + { + "hash": "ec0a92584977a7a1e3016e05776f8db595f7e7bd3aabf2d13a3629ee3d362da9", + "regex": "." + }, + { + "hash": "58e41305f1a9d4622255470c81f7b39700c99bf52b61673a66ee8c1d06a307a4", + "regex": "(?i)^https?\\:\\/\\/praveen9705\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "51a7fc92a4ea9ec268fba1c56e7d7e3143c77c03b2948ee83601ea9add269bc3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9035cf9af8f059bca0a79133f6290435b5df973599b6faef701024d8dca63428", + "regex": "." + }, + { + "hash": "1c5ac79f73d1187064c2927cc887534dff6a415ed977bb6cc58f46bf23efd5c4", + "regex": "(?i)^https?\\:\\/\\/voidtracker\\-spacekeeper\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5df5e1260545f7663f6a15f0191901c0ebdb6b59403eebc3f6b7d756eb2f2be0", + "regex": "." + }, + { + "hash": "7003b470dbbe6e493f046b5a421c5a0c8e5e9a29c3f453ecf96b5bf67b22d308", + "regex": "(?i)^https?\\:\\/\\/pub\\-63ee9e97e9eb46d78c12a9137fdc4d90\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1b74c49b6819c493d53ae10548cf6d1a527b93845987e4662cac8d1a48babf3f", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "184cdef012a6e5c3799b62b3bbf139e71a746e07204b1efe1a13994d30484c4d", + "regex": "(?i)^https?\\:\\/\\/bafybeifz5dqrtxow7ahrnvyqoj5rdkm6yilrgk3g7lutrrxvztytvisck4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "816f92e70dcf2a66d439fc991be0243c7f0867b9fc3a1b39b79c5a5867d2d735", + "regex": "(?i)^https?\\:\\/\\/followersfree007\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d0b92928371db109c5b5c3a72b6ed6e5b8c9c59cada633b5dc80fd24155f20f3", + "regex": "." + }, + { + "hash": "af0dcade00edbb6a10aac2caa3e0bd2f7b904393877870a6f1e3e205a6f7dff8", + "regex": "(?i)^https?\\:\\/\\/fridaysdeal\\.shop(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fe97c5e98b35b380163d8afc8a8103075433efdc85a3763902166d513f839bec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+apps\\.html(?:\\?|$)" + }, + { + "hash": "02c0ed177defbbff393efcaed393679017e80baaf2f8a49e81f0f72ea4a8bf2d", + "regex": "(?i)^https?\\:\\/\\/allgft4u\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "860355e964e415a7e72607e3790927686a6739c0ffc8b99cd9d5b6fd1953b696", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1486cdf47698228e414b2b4f5c9af2db2fa01b61e50afb981b8b3187de4fc629", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4b8e6fc0f1b79c973b80eb2a588656bc0511c12ea99fa164f3c37e829ddf028b", + "regex": "(?i)^https?\\:\\/\\/jogoderobloxdemardermyster2\\.blogspot\\.co\\.id(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8f383899f0632d733e9ed6815536bf3d9da985fb7527ab695738fc17c3aa1a69", + "regex": "." + }, + { + "hash": "0889c7540f70bba01a60c13261ff4c014f396fbc9aae69c5f212595efd11c9f3", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "e155a772162b4f12cf201d0780aaa0abeca3d70d857b8c4cddce6d5b983428e2", + "regex": "(?i)^https?\\:\\/\\/rbx\\-10k\\-here\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "a99a62af71d0d9c642f71355533f3bd4d858348c21ae4a9340d26e40a7ea46e8", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "91826f83e2e310168adcd6741f84b4412e4a9c8a47c4014c31a3c4e7169aae22", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "e5ecfbc221d75fcfa20238413911c013c78e72b69becca48fd84fc785df0d1f9", + "regex": "." + }, + { + "hash": "bdfb31f035b9b4c055ff7fd4a0436dcfdf14bd3a79e76920ee0c1a1a13b46c28", + "regex": "." + }, + { + "hash": "f8d43912f5420c2047724788ed336074ba5b997f5d8d14cd73dcf5e698dc2ee8", + "regex": "(?i)^https?\\:\\/\\/awdtuadgyiawdgiawudiwguadawdhawnd\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "26852c5bc04e39666244ee3584adb0a96fbbd4a6a31aeb380f35a690643aecb3", + "regex": "." + }, + { + "hash": "95b5b37592fed28909ea9aa6a2d9fb8afeb77b2e327e44f5123a6ca14f556ad6", + "regex": "." + }, + { + "hash": "20ddd6df11586274d48edaba520514c68f95612f8ed6729858436c9822091d7b", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "07c82deffcde8ddcb6e44dc866a9c355564b8349c0011c372d96373cad5a6274", + "regex": "(?i)^https?\\:\\/\\/universityofmaryland44\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "d2fa7283d4a67a08a544a17f276c404766ec7ccb5792fd1405feb5cb9e4c121a", + "regex": "(?i)^https?\\:\\/\\/sdgsdjhfgsdhufsghufgyufsyu\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "76875fd9e66fbc2921c6bfc5483f28a838d35783f996a7175bdc057bf213e999", + "regex": "." + }, + { + "hash": "970c75216d5d5ae96b4006d111d2d95318a6bba415f38f5f57926a290a6669ba", + "regex": "(?i)^https?\\:\\/\\/www\\.mxestaai\\.cc(?:\\:(?:80|443))?[\\/\\\\]+mxm(?:\\?|$)" + }, + { + "hash": "890de24184c798cf6721ae325b67c13691dffa528d832ff6ca90635e0211241a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:\\?|$)" + }, + { + "hash": "b33b1fda259787e70a2b0f149ce3314d3a29646fa01ab9e35f7df32add4fa9f2", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "a7224b332f32c2baca265feedc1b00ce94a949051635c106b80c5a5711c1c294", + "regex": "(?i)^https?\\:\\/\\/flamingoearthwormsallyrobloxid\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "fda1ead8f6b007fa973f14b55e09de28da9fff72921e14017a5695361fbdbad1", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e8b8868e8968a51e8d70053b0decb5846345a751c887f5a0a794a6aac1bef9d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a5133e42e8b486b174e177b881dfe76ec67c26d06276828806d9885594b7af90", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?ts\\=1$" + }, + { + "hash": "8810c5fc24c2d814dbb7765968004f332173c1af3794942323ada431ae37ab03", + "regex": "." + }, + { + "hash": "7963bb7da57f69eb13f740cd37b449253caf0e9f0cd273476be66a2669bd51de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a1cfd1a531acfd8b1f4d193bfb5416a43bb814d3086655203155de9a8dc32af5", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "812d89e790514d2dd85806da7fff706cfde8fc1895a79f97f829a84c5f712f21", + "regex": "." + }, + { + "hash": "163e9c80c8d94d2f47290f71d44c81b2abe555dc8a2d12858020e993492ec493", + "regex": "(?i)^https?\\:\\/\\/universityofmaryland44\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "8a3644c81430ff1f1fb98097c09c4d47eebd1eee98f2c10a5a08289099bc10e8", + "regex": "(?i)^https?\\:\\/\\/www\\.universityofmaryland44\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "28038f6fd32bd1db259e2353d8a47bd017d13364e3f7255c0e83cadb038def6a", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "28c1c7b738ca9d076dd5aef3063cfca7d94ad506f5f1688d83cbdd710aca3796", + "regex": "(?i)^https?\\:\\/\\/online\\-mail\\-102522\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "890de24184c798cf6721ae325b67c13691dffa528d832ff6ca90635e0211241a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "493b559179209ad52c8ea92c404d963c78810b0ad1369a07ab947b30a1db8a34", + "regex": "(?i)^https?\\:\\/\\/monopoly9k\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "0d150022dbf42c605c1f452494f9b48891af70d2ce536b31647433b93dfbd8bb", + "regex": "." + }, + { + "hash": "082cc9299c53461b0806260571df7f0ba2e5ff12f852c3ca66d87c662747aa72", + "regex": "(?i)^https?\\:\\/\\/voidtracker\\-spacekeeper\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "4ece8cbf63c084ee5015cb65956c02b8e57c3cd6b83a4a3eb2467dd3a460b375", + "regex": "(?i)^https?\\:\\/\\/robloxhousetycoonscript\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "51b8c0406dcb972e4b74a61c36917508225fe8788f7bbfc2f24f944948090abd", + "regex": "(?i)^https?\\:\\/\\/voidtracker\\-spacekeeper\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "251ec4c2d519e6ea8cf8b475f607bef97efea4c06bc4aa0f6edb1abce0ef871e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index[\\/\\\\]+user[\\/\\\\]+kp\\.html(?:\\?|$)" + }, + { + "hash": "ffbd0c2f6034969755a5f596671e5767592f92122aafe19ffb6e66a39606dca3", + "regex": "(?i)^https?\\:\\/\\/awdtuadgyiawdgiawudiwguadawdhawnd\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f750085419987ae6669006b3763577b085b5c1b51632bf50b626c67fdcf5398c", + "regex": "(?i)^https?\\:\\/\\/www\\.universityofmaryland44\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a6a396499daeabec29295f2adb97412366bbbf3d709b2025a86bacb6f0de2212", + "regex": "." + }, + { + "hash": "e5f19433b36a1d1aff548e97b314f2c0cc4454dca938fd54f7fbe601336f621c", + "regex": "(?i)^https?\\:\\/\\/robloxhousetycoonscript\\.blogspot\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b0f15fe36dd20d31d64e690d2ad75bdd45de0e79bfd32cdb64ec90a96d9fbd18", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verset\\.html(?:\\?|$)" + }, + { + "hash": "ae3a61cd7eba206d0ec046c5f298aeb762106f30cc18f6b532d15d48016de487", + "regex": "(?i)^https?\\:\\/\\/voterrr\\-proo\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "b5ab2594e43fc5cd307204cacc4cb904c359814388b5645d32e27f14bbcc5c8c", + "regex": "(?i)^https?\\:\\/\\/pub\\-2fc77195cf584ce8a57a128ca6fc6317\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c6d83fa96ecc04b53d4667ac06fb02b3201e4bd98d61474927fc9df686ca8bfb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+file[\\/\\\\]+thbrns(?:\\?|$)" + }, + { + "hash": "89371fbd43ae2fc86b7392be5c93a26116e794b3431e0269dbf98ff8394c7134", + "regex": "(?i)^https?\\:\\/\\/attcom\\-106994\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f8897ea689f64330cd9619e3bd2beb8973b1ce3cd298b0e6cac1a96c9280a763", + "regex": "(?i)^https?\\:\\/\\/rbx\\-10k\\-here\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "abda90f3686701262c89bb67b7c5aee9cb8b2bdcef65931f154a4c2f7af04ea4", + "regex": "(?i)^https?\\:\\/\\/comcast\\-102479\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=cl\\-f5\\&r\\=emony4jar3$" + }, + { + "hash": "6c1eb99120b887fe4af3864a5872b3a7a33799e6ee1e8f5163cdaa7219dd6ef4", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c0912321ae4e71e49ed4fc24022cf20992c4b2d0e8e41028dc7cf731d78ea8d1", + "regex": "." + }, + { + "hash": "cf0d7967baf6e55f999e73b40d47aaeadd64c142153a0f8a4b35b3180908f122", + "regex": "." + }, + { + "hash": "59564657b4823a17d0db70059d3fadd604007cffb4dec5bc40123d10dc175ce5", + "regex": "(?i)^https?\\:\\/\\/recup\\-mon\\-paylib04\\.mystrikingly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c301e18fff97ba9488a59d1b49fcd539f7e01cb22bee1a3de7b5039490c0a449", + "regex": "(?i)^https?\\:\\/\\/comcast\\-102935\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c046308cfc6a83bec3dd5a41d8e3572e94089f1a87934577b8160387b4e82d5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+046e4(?:\\?|$)" + }, + { + "hash": "ad6a1e1e6eb76304323fe6c024152b77e950d45827ff62d7558ecc85dfd6b8ee", + "regex": "(?i)^https?\\:\\/\\/voterrr\\-proo\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "90c5d276804dad5d9d02951c25685f34fd60ad55fa29e77a9e97d54180fe2b0b", + "regex": "." + }, + { + "hash": "fbf8559cadcac5e32f069a28bc2ff976146e984f22609d66fe1565b4aef019fd", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4079be889ecd0688ad24127faa02b819c54d624e9b6125bbebcdec3b7fb3dc2e", + "regex": "." + }, + { + "hash": "be384b355b4abd89c69785e70b1ca8df692503c5c6e65a470fb3e149bac9dc1e", + "regex": "(?i)^https?\\:\\/\\/bafybeigntrfwopxumk2lj2zfvzp4w3xsbelpacylciobnh3j7sqmodvkti\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "28f50e2e406edea82fbfd1ee7f7dca6686748bc0c9564555f8801cf2db6cb5d2", + "regex": "." + }, + { + "hash": "b2cd57d9d91e785fe10646119678fad6a5d753c6f0752a94d224f4ed6ffd91cc", + "regex": "." + }, + { + "hash": "f40103120a39a4b101ddc1684d272081217a8736a9a9f803a01c9f7af927f425", + "regex": "(?i)^https?\\:\\/\\/redxmediax\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "5aded10a3e7ea7518b3e8e474f887a12b16716440e0a365ac9d6c19713652ada", + "regex": "(?i)^https?\\:\\/\\/wheat\\-stingray\\-909272\\.hostingersite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "52be9fb8d718c587a76414641233b3db00a9e93a96e4cef652af372ddaa882d2", + "regex": "." + }, + { + "hash": "05e8bf9b11f4c47376f6ed1a4a5df64bbf0e4404521c91ac49204931208cd545", + "regex": "(?i)^https?\\:\\/\\/www\\.universityofmaryland44\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f421f670aa24274e63c21ee1a97efb2c0002158604544c64c8f4de5796049b58", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ZlRcDownFixsDoFvonPhjqfqfpyiPhgtpxXivDtsFitqfqfeslxsfqFiglxsPhQhlpzqmqPaihPaWzmqihhxQhDrZlXiWhynpxPnFimDihhxfpDrnlPnNXZvpiFvWzZvFiyndQdQ(?:\\?|$)" + }, + { + "hash": "27892956ec100dc72dcb27b2de64d58b8569635a76e4aff41a014874cef608ab", + "regex": "." + }, + { + "hash": "2eb2047eb5c3d1ae79cff1d08a95b2ed29e7ab8b49263894f4af57dfe7deee7c", + "regex": "." + }, + { + "hash": "b4fd23c5ae8ff569ceb8b794b8c8cb7f2e535901dd5c7f1776aeea2e0a0a85f6", + "regex": "(?i)^https?\\:\\/\\/go\\-bmx\\.click(?:\\:(?:80|443))?[\\/\\\\]+mx(?:\\?|$)" + }, + { + "hash": "6cb56aa9b2d982e0f6cbe755e9b228ef1b4f2288b5e6a2a1ee15dbe0b3966189", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "24132b6f58972328b37aa6eefc7e9b39ef558385185bdb0400ae8d2d99070fc2", + "regex": "." + }, + { + "hash": "6afa5e7259525ea59d45dbb22d8d659ea38c18c00076a0b236ec78b2a4b00935", + "regex": "." + }, + { + "hash": "d2647e83bce2ffd98c1a76ec6ea43eba74b0ead84bc22aec96c510b7a43f079f", + "regex": "(?i)^https?\\:\\/\\/pub\\-5ce7163fb4d4432f92bdccbe9699f070\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "897b72744c5b63cc5a24956b6a8d5f58742894d9f08eb74300136b8f3886b66b", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5309ce3402e051f2facdc3058f136aecfabe609fd5a57289c80fc8eb2238d4bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "5bf931ca0e114e67eb42141d840718ec32b04af33ba05c879a4e1685907652d5", + "regex": "." + }, + { + "hash": "5c1ef5084ee1ed8390f2e9d6456cad068cea2a08037f4e326814745524bd12e5", + "regex": "(?i)^https?\\:\\/\\/robloxhousetycoonscript\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8e3f7b033c360700777d7c6740965669b13ce603c9e3d99eedb4ae98093d35a0", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a340bf22fd112f9893599d0a1fff0c33e3f3014e070665b9d4fab2d25f403033", + "regex": "(?i)^https?\\:\\/\\/followersfree007\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d3694ad2d674cb0ca0dc5a4a668847e1e711a658366971ba58de7f74266b4948", + "regex": "(?i)^https?\\:\\/\\/rbx\\-10k\\-here\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "a70a0c5e2f0ed9e24e094b75c8dab3615116a030b2db7aa10639c2c2215a67d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dc8e5b4a7b4bd51b32e5b324c89abac9de694bf1825212f98990ae9d59ad6a37", + "regex": "." + }, + { + "hash": "1e8018d1f9e8f9232d63aaabd18d5b86294a0d9c2ed51d7cced1995ea760c60c", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "38b493d3a910621f94667cc65aaa180dc96d3dcee4e26e06aa0cbfa6ccb8f820", + "regex": "(?i)^https?\\:\\/\\/sdgsdjhfgsdhufsghufgyufsyu\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "0bc16f737a3ef50f7c5b4fc23052c5dd422d85c1ad537f9905bea16bff70642e", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d3bcaab5cf64717ba1049f48a99886b343adae9d1f4db6bf54f10140db380f1d", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "e2a1da72005f399d8ab633e54597a5992511e80a9c2180328f81875a0ac6eb81", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9149[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8683081254870ef4434683168337a273b60b4dbc1630cf99c8f27e644fa5f23f", + "regex": "." + }, + { + "hash": "479e632d151323f8cbfff7c4239ebbdd79465f5b6c241ebb686361f95032d861", + "regex": "." + }, + { + "hash": "e6db03c92fe5116a522f567c880cfaca2a10328b64c1b7cac4a142e491c735b1", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "1d9db12459a50e3481b1c78321c5aec4b76f027bd1b56c95245dcc36fb1f9e4b", + "regex": "(?i)^https?\\:\\/\\/voidtracker\\-spacekeeper\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "33feb6e21898fd0e054509834d9040b008ca35841b1789aa96cd5b96efc37a05", + "regex": "." + }, + { + "hash": "e0a3412ad10dc3b9e3f02cb0aacec2647d6b1796ede04bc2280c4da2b4ac251a", + "regex": "." + }, + { + "hash": "c7fab52846cd4d1ac6ab35bb00848a22083427001f0b5c556b8fe09dd1e833c3", + "regex": "(?i)^https?\\:\\/\\/awdtuadgyiawdgiawudiwguadawdhawnd\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9a2f962a02e4857fc0c2b59498ac129c94882580b25eeeb14a8cb1eb5169ae6c", + "regex": "(?i)^https?\\:\\/\\/robloxhousetycoonscript\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "13d2afa667d7e5a05703e4f379203fd229e28dca1a08668f4ca926dc4cddd0d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+D5vxcR6G(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "20b1aba66c5e141811a0574911fd0c159f189c393980daa9fc9f8a0df2141bc4", + "regex": "(?i)^https?\\:\\/\\/pub\\-0e4702a7cfbe43f997e6fcee82dcf0b0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "26000f5a09f840e84640230aaf63eb7b40c5ec33ff6346c279bb104ce42e712c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?utm_medium\\=paid\\&utm_source\\=ig\\&utm_id\\=120216964024980387\\&utm_content\\=120216964025160387\\&utm_term\\=120216964025050387\\&utm_campaign\\=120216964024980387\\&fbclid\\=PAZXh0bgNhZW0BMABhZGlkAasYsRzT8qMBph6oUb\\-nPeGoRQQyNVjq8fS6A_8EIWlYvyMtBex1hJi1P9GoxUDKrWz3Zw_aem_e2p_PtKseGQ110oDQFhPCQ$" + }, + { + "hash": "be38193c62610cb9b9e3d9e483b36fb1530188514fb22be101da3613e39df109", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=b40364[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+payouts[\\/\\\\]+$" + }, + { + "hash": "7e81a3f93f7b1f9ce324b90d4ece8d802593bee3de9c927a5555dcdf2cdddc5e", + "regex": "." + }, + { + "hash": "288a0baad34663742f24cebe34407309618b352ed2d9ae55e051fedbd6b611e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c6cfb34a98117a4545cd22fc2adca74d58565219bec63ade37ccf95340b9fc6e", + "regex": "." + }, + { + "hash": "ff5223033fc2e536adb9476bed0a1ab19505158970a292993548d4d1f52adb59", + "regex": "." + }, + { + "hash": "86d39ce598bd245e0f7e17ae17a855c590f213c3dded15eab1eab66b5ff95e37", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "493cefe9c595e16a4d68d6a67b59b85ea3df6c7e6c4e549e8e30137e7d62eb40", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "ae3a1c4422659568daf3ab118469fc254a11bddcdb17f146902f7a93d05c34e2", + "regex": "(?i)^https?\\:\\/\\/sdgsdjhfgsdhufsghufgyufsyu\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8083e0c4bee4c953b44d9979f9b97caf262b34969cb22b348009064f5bb6f13b", + "regex": "(?i)^https?\\:\\/\\/pub\\-1065e8b7d92c42eb80d0de982b67b65c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "3cc59349dbea10942ab44b7bbd7c89e0720d9d4eec77ca44a4396a88f637991c", + "regex": "(?i)^https?\\:\\/\\/rbx\\-10k\\-here\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fac1c61c4b4bf22772ce848cc89a1ac1c0269c5eca9e8f1c888e0a46b0bc2c72", + "regex": "(?i)^https?\\:\\/\\/followersfree007\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "d243ca92cef2693fba968e611a087bbc828f6feb6bd7d87d3c8dec57b615cc57", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f67b980079a1f77e02e5c7939ce9a80ae3412b172015449d92b5b8303e2691b6", + "regex": "(?i)^https?\\:\\/\\/allgft4u\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8e3516eb6e50438305a51fa4bb434ce86a8c89d46993cf65c2310c0a9bd9653b", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "1dd98e4bb8d1b4c58a124b466f43878d6aa0791245a6a6960da1429a377a450b", + "regex": "." + }, + { + "hash": "03672f9dc61defaec525abbdf6a88b34fdf96dd546dfbaaba33133806b98c65a", + "regex": "(?i)^https?\\:\\/\\/voterrr\\-proo\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "f5daa420f8d43978e617883134c1f712232a50dae7e8c2b7d15c9f564e0b128a", + "regex": "." + }, + { + "hash": "f793ca9eebb687b2da8480d7d1eedbafc7222e11fa5729b07cf984b5e7b7aae3", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "fa9a9e2ceb1def75f8243d4fbe219ae66ba123ae4996b0d8235ceb47b540d0e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iixGDow0OAbkZtczvVjGJyVPldkRvoHRdvwCP8uaS54SY86Vp4pWp82OWtZmLdCSld4PJvRzhfTueuuzHOKnYBaKm6aluL2KcggfTr1OW7u7aD2wqxbTdEwkdz8pqA\\?kws\\=inurl\\%2Cthisav\\%2Ccom\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fimg\\.4jpg4\\.top\\%2Finurl\\%3Athisav\\.com\\%2Fpic1\\.html\\&r\\.\\.\\.\\%20312\\%20\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&focus\\=1$" + }, + { + "hash": "b0f15fe36dd20d31d64e690d2ad75bdd45de0e79bfd32cdb64ec90a96d9fbd18", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+intest\\.html(?:\\?|$)" + }, + { + "hash": "45d8318ae08d59ad39e81d9b578d2af8ca7e6b11b12eb6f686156ae646ef23c7", + "regex": "(?i)^https?\\:\\/\\/voterrr\\-proo\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "558d1d44466e288bd2a9edd5812dbd79283e713179e0d54b914073e71d68876b", + "regex": "(?i)^https?\\:\\/\\/voidtracker\\-spacekeeper\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "f728e05cf28de06a9775aaa9d227043a484e3c8ebdbde70a20e65bc3a0adefa1", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "e69a4689707fb01c8254c3bf22fb6eadccbb19e3ce7128812f21215b5134ea14", + "regex": "." + }, + { + "hash": "c13389e684cf86aa1ec9dfb7c0c19b5ce3714d94c381b5e73a218b2ae49853a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "578cf0eef83341948c69cb74c0eefbe7764a31d2474300b6a388a7a7bb1ba246", + "regex": "." + }, + { + "hash": "b7af3623932e7dec7b6355bfe4a06005b7fbd131c113d0951923f247aa2695a6", + "regex": "." + }, + { + "hash": "4a49c784e230a8f9565ba0020c1d2aeab50b395c7794b3f4e0c9cda116b89a48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?p\\=1\\&t\\=Adalt\\&supportName\\=(?:\\ |\\%20|\\+)+g26IASbQDJE0ZTQx\\&botName\\=\\%F0\\%9F\\%92\\%8B\\%20Angel\\%20\\%7C\\%20Private\\%20channel\\&imgUrl\\=https\\:[\\/\\\\]+i\\.imgur\\.com[\\/\\\\]+AoCfgDa\\.jpeg\\&pxl\\=1089737309024881$" + }, + { + "hash": "a10909622f08906d5556b375e567620d8972d2d409041f74ec0c37ab6e29a855", + "regex": "." + }, + { + "hash": "cc258717b87fb9b259971e87389e37f626d785c4a8fbd22887bb77c295f8bc3d", + "regex": "(?i)^https?\\:\\/\\/redxmediax\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "800cc685d69499792f9bd3f8f9e04cdfd0641d0c9a75791f067dc77342c7269f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vEaZp(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f8c65c092bb27ada5ae2b3e86d56b6ad377a111337a253ead9b160ef17d1a48a", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "ab641e643df22dbc66806def4208053124d75f552e728f6844deecdc6098da1a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+oi9PHBBjvAV(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b4db23c6854296a7cfefd9a19c3c9eb66035e2999256dbc882ad0dedbe7c28a2", + "regex": "." + }, + { + "hash": "7e81d0688883b7471a825489aff6b48cb945d8eb5cf35006eae5994adedb54dc", + "regex": "." + }, + { + "hash": "e57dcfd61244a39a1f98341cc9d82642d0d493e7a562cafbeb19854a2fe097e5", + "regex": "(?i)^https?\\:\\/\\/robloxhousetycoonscript\\.blogspot\\.se(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d75afd70de20cec12cfb10ea39e00daa17455e80ffb12f42a7f351f74f54e3ab", + "regex": "(?i)^https?\\:\\/\\/monopoly9k\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e6fb9c57a7b9010a97ba72dfb60918fd5c95b0b783f49ceacea9dd1bc1e89acb", + "regex": "." + }, + { + "hash": "c51caccfa20f589b24da196ba8871b834f9dc12852d03011328c082e1d0d6080", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "237d358b06b6a3c860af18b4883418922f70c96981bbae1adc0101254c25c711", + "regex": "." + }, + { + "hash": "f17274051b0a2a4bfdb5e2fd14a9f43f8ecbd8f9fe0fc34d4409cf0e190a8456", + "regex": "(?i)^https?\\:\\/\\/nsjsnswjdjjd\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a169b7f0e32d46c94aad51a2d46a0e30a24cf3721f92bcfdd37812b7c8327212", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1eaa76c17b707627a3364ec427d7ddd12e85c1c6504eef0f2982f69bfa17201d", + "regex": "(?i)^https?\\:\\/\\/voterrr\\-proo\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "0afb93d2750bba08cc50596976b2537c3bc5df65c5d7a21d9d996fc3748a2a86", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "95b426e6461b251a5f1830b200480f621763f94761b22a3522aa58f4cb0e5a67", + "regex": "(?i)^https?\\:\\/\\/robloxhousetycoonscript\\.blogspot\\.mk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "44c6271dd245754331ee8b38fa0e88dcb6e80087d6c4728d4e221ffa84ee67a2", + "regex": "(?i)^https?\\:\\/\\/rbx\\-10k\\-here\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "61578eece493c316ee60e207caab3e83ad0ceffbed2eb4f7d587b78503087b45", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "87aac83018f3226983726cc8e65d6f040d1d20a6f858e4127c5a12eb2678dd59", + "regex": "." + }, + { + "hash": "6a8d4e48a30c455f86fe365dac9e48f766ca8036c5ed2b2eaa8535daff2240d5", + "regex": "(?i)^https?\\:\\/\\/rbx\\-10k\\-here\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "38da56483fb28a6f894f5c9daf4e61e1919c90171ad35ba01cf093c315f0dd5e", + "regex": "." + }, + { + "hash": "4c1e6e8a67bcb4418d1926ce3837c3fa60f7629bd579a5ca28954cfc7cdf070c", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2cd8878ccc567c63f96aa21c1271136b8345cbf882b5c7b27612e54bb9797279", + "regex": "." + }, + { + "hash": "843457d6d6140c5d1592bc408a23e3c52e0ced3565b18aaf0644827ecdb1251e", + "regex": "." + }, + { + "hash": "a1eb85772c3c3ea6ca05c59615c4ea6c045c4cf8d22c0640e80e42d71c4db293", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "18de57ea7b6e0bafd4e9965035e23f71b3141a87505430b75a316a3b02f0ccfb", + "regex": "(?i)^https?\\:\\/\\/www\\.universityofmaryland44\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "6a1f8437b802f58ccd5f2e785f1b82b0622a577187ab9e5399a641a8bbc10f9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3579263d9ef9634dd2c012863ae6d72f6ddfdedc811464219a59d803f3662393", + "regex": "." + }, + { + "hash": "0d0a535ace59a621c46c20bc081d79cba14a3a25e00f3533e63d3dc50d4111fb", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-103820\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c835144c8ea9b560940d9afa17e6abcb75be4f6233032f9bc4b9409c03be4a4d", + "regex": "." + }, + { + "hash": "32313efa7b0382a5fe077bf220e781860f5bddf2a38a1381031ab49d9d6e8471", + "regex": "(?i)^https?\\:\\/\\/ckfhd\\.udjfgdienfu\\.top(?:\\:(?:80|443))?[\\/\\\\]+fir(?:\\?|$)" + }, + { + "hash": "5e71f761ab3218b9ecc021dc76c2b79df9b251a0760fd0728952929af6d4053a", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "6fbe4595ba890aa0a249cbc1f609f6d89cf79fb98ff5861a86caf1dc6e19fe56", + "regex": "(?i)^https?\\:\\/\\/instgramvideoeeee150\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a2fecbed395ae5ee9903bbef46a4262398721a98f081d4528a21b7cc17b78b9b", + "regex": "(?i)^https?\\:\\/\\/redxmediax\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "9d388d7735a4b54dff95edb7e83fbfc186f5e1133dec59c4b1a83b7b0797a222", + "regex": "." + }, + { + "hash": "54edadbf9caaa2685b903f6dcf95801f00d28a1a98a42b6fe1e8499a34ae65d1", + "regex": "." + }, + { + "hash": "627fb93a8b85904ec9377681180bd0c05e25324fbec9490a4871a4b0f8835cee", + "regex": "." + }, + { + "hash": "a6b7e5a36385367f0422db083ead3e5d7dda1eb7495c514d8754629ba8d63181", + "regex": "." + }, + { + "hash": "a445a81fe5a3358272293a2a706f4f9c8cda2c9e1ba0e79f848ea8a08c6d6fd3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9113[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3f80eb54a89e59887113417fb745bf25b50ea3b1c0e301191636ea4931da3bff", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b4fd23c5ae8ff569ceb8b794b8c8cb7f2e535901dd5c7f1776aeea2e0a0a85f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mx(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "57981519f5fcdda437ab4810bb96c7e43b937cfeac029748ef1cefd04e5c4f55", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "2d85e3c45526b102ec79ee3c24ce702d1bfbc5faaf234715e9c5de7b3040bab2", + "regex": "(?i)^https?\\:\\/\\/bafybeichriw3x2zmtmp7x3xlxefdxfzydltbn6ik6wupor4dc6fhdvsazm\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "d28557614316cfd8f97a8798c7ed157a6d9a81aa8d500cec108963c5b9c73c70", + "regex": "." + }, + { + "hash": "b34df58508159f1de5ad0e102adb2784cc93a1f5d20117a83847f32e23ea4bf9", + "regex": "(?i)^https?\\:\\/\\/mymts\\-106118\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1a1cf0da1eef16b03d691442fd70ec1e266ec3fe7e20628843dfd1e4eb41388d", + "regex": "(?i)^https?\\:\\/\\/monopoly9k\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "cb2f32b5d750d90013e86931016645dcb6b12b079456fa53f97e325372d8560d", + "regex": "(?i)^https?\\:\\/\\/robloxhousetycoonscript\\.blogspot\\.qa(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "10a48e4d9b92b3020d6153c372270c77439772aac898db95050af6d67b03164c", + "regex": "(?i)^https?\\:\\/\\/online\\-mail\\-103124\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c720aa8f218664c313cd276f9decc8d35a25d390af4b2752d31bb0004004f31f", + "regex": "(?i)^https?\\:\\/\\/sasktel\\-103674\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9fd8335198b07c3dd8a5de1f5bf865213b37fcbd41ee511c81b2fe2e7dc5b04e", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "49d964417dc1985bf393f86556bbf7e815b97496c73ab97a0bd8ccf4fe77953c", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "37add2767804e3318c5957b030b213ae58f3690c84b15ca4ff3dcbe8a0431da2", + "regex": "." + }, + { + "hash": "2dfda5941b374dcbac92cc3c24811a25de88fce3e50d9a6b7e9612ce73439e17", + "regex": "(?i)^https?\\:\\/\\/pub\\-51e2b30cd4ec421b9b3660945793dfc7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8da81726302e7b0169faa6812576001a20e29073919ab4679e10fb92145ae41d", + "regex": "." + }, + { + "hash": "18315e64e378c58868f2287bd442b4119d39ffa552a3c7399c9b9be7ddaa67ef", + "regex": "(?i)^https?\\:\\/\\/accounts\\-microsoft365\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2317ee6485429af8a08398afe11c9e7e306918b1af49105534e2aed7785a3c71", + "regex": "(?i)^https?\\:\\/\\/redxmediax\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "2f612bd9ba487e073840da785390b8fd0b9aa1c511c1a88b6ddee0aed619ddcf", + "regex": "(?i)^https?\\:\\/\\/robloxhousetycoonscript\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d442dad7eb17524d2ff73a85227f5e14ecba95a15f218b47598daeaa97888c0d", + "regex": "." + }, + { + "hash": "defdbdcca275ff0091be878630c8374fbf2604a339296e28ed093f7371c57a30", + "regex": "(?i)^https?\\:\\/\\/shaw\\-102453\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4a7c71f7d687d6755afcd7ebe125ef3d6e4d7aad965f6bde41e3a2ff7a6ebccb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "79c4b24bee87042185ab508e666bb4c1c2d838ec84509a8c61dc39985f1c213d", + "regex": "." + }, + { + "hash": "df500cd18d5de192d2b3409f593635eb8ea28adef2cb69b68d673ab1da60a10f", + "regex": "." + }, + { + "hash": "c47eeb3d2e3da8ad278163d23b3e7dc494cbd875c064bb2b62c2ce7d5a6975de", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard" + }, + { + "hash": "0bc6339f59b85c0f0213f7555cc70aa63d170f5b3c650512db8d6cc9805de789", + "regex": "(?i)^https?\\:\\/\\/sdgsdjhfgsdhufsghufgyufsyu\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "71ed36dcc0544500d23e4a8b052088321b8d42d19dbdfd49f62cbafb06d58d0d", + "regex": "(?i)^https?\\:\\/\\/sdgsdjhfgsdhufsghufgyufsyu\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "dc933bf790ac284e7606c500a4ea7a2b95d830712ca018ed05a92c4eeeacbb32", + "regex": "(?i)^https?\\:\\/\\/sdgsdjhfgsdhufsghufgyufsyu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "2628994717e68d798367ac1560b5ea057c0f1f366c6f45557c25615dfd732264", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "f8e4f6a4b042059919dbf35b964fde2c0784c51c7fc750823f80fd0fa7dfa231", + "regex": "." + }, + { + "hash": "e8e0e721a5e45d523c2253178f60c1b5754cc7144445ae5913204fe02367c8bb", + "regex": "(?i)^https?\\:\\/\\/www\\.universityofmaryland44\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "3a35fd5a2a614f6b8af6b38b0a06b236cac2bd90e8fe0664e80808dbde83e81e", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "7a2d3a589abd4f554991c13daa08b09a629147e92ba7fe6ca9d0d72f1bd124bb", + "regex": "." + }, + { + "hash": "839109dd0c75314c5296280fd73fb21358b423e92cbd8aa9e5724e2b0ff23852", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "31392d25dc9c9ca3669e85e363fb1da381c6d71be504250a3438530f7460b7b0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+VHnPG(?:\\?|$)" + }, + { + "hash": "6deba56c1eeb0144f4bd2f3b635e013708b7b263d9422818b14a0d09f5ba9232", + "regex": "(?i)^https?\\:\\/\\/att\\-108617\\-103798\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b15eafd22433543c7b5c07c309337c449468325201dd6b656d7b6401242c1c1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+door\\?octopus\\=4680\\&octopus\\=3tvf5utix\\&ice\\=e5420e4d27fiffj\\&upvote\\=6835$" + }, + { + "hash": "6c8cf576dd3473b93be245c191ac46614294fc0d407dd96357100d20f270879d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+mum(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "89b4f67bffb2b6134cd57bf304c071ad26ce6674b9a68bb211918510d439b51d", + "regex": "." + }, + { + "hash": "92ceba5086f84bd4f22f2134c52da9e403d1db4f0cc147073f4c37f51c1f0b33", + "regex": "." + }, + { + "hash": "3696a04b4d283c65d6b7d40607d1ccc1098b31bacaa8d05aaa7b7ad3885f4590", + "regex": "(?i)^https?\\:\\/\\/instagramhack010101\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "ab670e1da99395c977547bc1acf1ac0bfb765b973debb6dc01a92cdd4a939188", + "regex": "(?i)^https?\\:\\/\\/17181392\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "21e1010fcd1db471aa42a5ba8889758c9d58e65532650f86ba830ad0f2df593c", + "regex": "(?i)^https?\\:\\/\\/pub\\-f77a4698c27d4f8bad5f5b0fcd136513\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "debcc8c6c2fef66f6526ae042a0d12c5d6097e5adfa608d86f5ecdf6bc580962", + "regex": "(?i)^https?\\:\\/\\/voidtracker\\-spacekeeper\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "915735143e66ae1693aaf24133b0703d63db76d479aa60bbf12e577174d19470", + "regex": "(?i)^https?\\:\\/\\/universityofmaryland44\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "e59808ab0892ee15a32e4acf9f57077f05dbba18a341314a6a3c5e332f13ccbe", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+erhalten[\\/\\\\]+675a3aa0ab9b1(?:\\?|$)" + }, + { + "hash": "ccb5e6c4fca330d6545d9610ba4eb78a9d9fe83afd0f16f105ff645109140fa3", + "regex": "(?i)^https?\\:\\/\\/tools\\.usduanbutianweisaichangpingjunaddrs\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "807d7f0a779e30ff2b5d738948f810fafc7c5b76b5a6eb058c724d70007f2966", + "regex": "(?i)^https?\\:\\/\\/ford45\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "12ae3d6bc308961377a7d4fa48ffaa9467737fae2db70a096faf09ab8726b23b", + "regex": "(?i)^https?\\:\\/\\/instagramloginin1122\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "67026db8529287aca3704e589147f93de70c0077a6cc9f56e6a56b87bc7bcb3c", + "regex": "." + }, + { + "hash": "68196b1509f25896096615f2c326f3fc791205f38247f330c82a56f01d2d3ee0", + "regex": "(?i)^https?\\:\\/\\/voterrr\\-proo\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fa9a9e2ceb1def75f8243d4fbe219ae66ba123ae4996b0d8235ceb47b540d0e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+iixGDow0OAbkZtczvVjGJyVPldkRvoHRdvwCP8uaS54SY86Vp4pWp82OWtZmLdCSld4PJvRzhfTueuuzHOKnYBaKm6aluL2KcggfTr1OW7u7aD2wqxbTdEwkdz8pqA\\?kws\\=inurl\\%2Cthisav\\%2Ccom\\&abl\\=0\\&fsb\\=0\\&pageUri\\=https\\%3A\\%2F\\%2Fimg\\.4jpg4\\.top\\%2Finurl\\%3Athisav\\.com\\%2Fpic1\\.html\\&r\\.\\.\\.\\%20312\\%20\\.\\.\\.e\\%22\\%2C\\%22\\%5B\\%5D\\%22\\%5D\\&focus\\=1\\&pageUri\\=https\\%3A\\%2F\\%2Fimg\\.4jpg4\\.top\\%2Finurl\\%3Athisav\\.com\\%2Fpic1\\.html\\&referer\\=\\&jsr\\=0\\&abl\\=0\\&acrc\\=1\\&acrs\\=own\\&bdd\\=timeout$" + }, + { + "hash": "3f80f20e588ca656372574ed53ed311df0ab2b8d84bc64202f1ce5c982fee7ac", + "regex": "(?i)^https?\\:\\/\\/office\\-365\\-105727\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9584e4994d5759ffe5e014a8d7ded3bf4a17e8dcb2df3e5c903b439c33c8ae5b", + "regex": "." + }, + { + "hash": "f803d92279f4d8e54a1ee32067c3cd04b71c4402e48991616cc518f75eb0b522", + "regex": "(?i)^https?\\:\\/\\/vid4redgroups\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "2fd2c918b7aebf69de0a39c552c75e9fdec4e3cd640bf99d59970086d0c63258", + "regex": "(?i)^https?\\:\\/\\/redxmediax\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "6d16cd30985bf302d2854995f5774c9a240da617e1ea1b17bf5537f22e5e7fd4", + "regex": "(?i)^https?\\:\\/\\/universityofmaryland44\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e8bd1e69c13f2bbebc61f948a0d788cda73468ce3e2ee93154aa470de49446ed", + "regex": "(?i)^https?\\:\\/\\/clotund\\-voteee\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f3a1ca12f273cda4200dc1f68347702cfb848a5fa0df3bcceb987d22c679a16e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fbclid\\=IwY2xjawHIQ4lleHRuA2FlbQIxMAABHTmGdHpCyjQVJGboJZjEVY58t9ik0juu_RsAgIm0bgRIaqJ6Krn1c0scIA_aem_9FbdT_x\\-gzgDjC77CQL6dA$" + }, + { + "hash": "901246da840c381212e1fd9266a865be4e059f7ffa540bac73b1a2ee8974cde5", + "regex": "(?i)^https?\\:\\/\\/att\\-107046\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "dc75e603048779e815bedd68482d24c4ed6b20a72aab6b404b31f63e0d018b3a", + "regex": "." + }, + { + "hash": "c6d44241c3526efa730178eb63f8ae47ab4c92ee1894138f20ab855b338169c9", + "regex": "(?i)^https?\\:\\/\\/haszamilan\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "d896ad0cacfece8867c79e09cb6dc0cc384ef793cecf73cff411866e0ffd4024", + "regex": "(?i)^https?\\:\\/\\/gmx5gdg\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e65c16ade8e4708a885a6861a7398d413017b73e7e9a7f799c501fde0c4d314f", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "417c3b7645cf18e5a6314a8410d9e06cfc21fa2535e62943a0513d328c7467ac", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6973553c5ab0add531f900ce85c3d013e726a8d039969992f37f3710adc4d071", + "regex": "." + }, + { + "hash": "f21c0ff8599416f9685f090e9f4808536738e4a289fc9325c8c976e6b2da4064", + "regex": "." + }, + { + "hash": "79149ee5ba219ce18933a768395bfc7c4db64087946236289f8346f28c377e17", + "regex": "." + }, + { + "hash": "7e26a2bf3dc497d23a43ecd5e0c2cf803f6763ae03572ec8084f2663f8f3f986", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0fdd7b860b594812519c883d245fa41c6414a9a2346e93cdee13f0bacf54ecbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ppp99\\.html(?:\\?|$)" + }, + { + "hash": "6e7e3478ffb8642d1e35d83914609509145e20bdb888d38c617ba2b9d35b596b", + "regex": "." + }, + { + "hash": "9b97361e317868ff882cb78eb2af0d158ab266792f1b2280efc023a85ddc777a", + "regex": "." + }, + { + "hash": "f57e4b6e743fa1afdf7a47eca4216786b5a83081984e02031343e9f79c1ba5a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register58377(?:\\?|$)" + }, + { + "hash": "e7914467bd0e59d3e76f3d9adf9185e5a92fc0b94e6561be92c724885bc1d613", + "regex": "." + }, + { + "hash": "2312b78bc942a379ed91b0d3eb9cada342e971f611b4c99ac09528acfc24adad", + "regex": "." + }, + { + "hash": "897ab28e1901b23cba48cd364d05b02c9c461cec36f66ff8319b0140c43efe9e", + "regex": "." + }, + { + "hash": "57d6065bcbe7f042532168fe82f4ac44d0b534137a7cdd70278d558d25b0b8ad", + "regex": "." + }, + { + "hash": "9a4e8d8477c24eb65230a0563a4cab4c739137baad5c5826b16b86962f8050c2", + "regex": "." + }, + { + "hash": "707961d5f0e836bb228a4706cd968431d484ab96763eb5d9c34f1b4d95a709d0", + "regex": "." + }, + { + "hash": "77849f03c311e4bef1081ac8c9c761435ce329758c6cb16666311ef31d515d79", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroups\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b8758a65152839acd2c3b937d200a1bcd011e17e9859a459508c6bd121018f5a", + "regex": "(?i)^https?\\:\\/\\/gatmlional\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "e6a0d0be2ac683becb3f737ece7edaf61e01adfe85c09eaa3ad28371b6e8982e", + "regex": "." + }, + { + "hash": "e5b8966ef7b0093be51a6c921312c62c3df8f762b425262b277354af00809595", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sucess\\.php(?:\\?|$)" + }, + { + "hash": "550a55fb9c902cfe12cf5f361b53152e2864cf38d29d5ae15da00fae8277f50c", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.com\\.au(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b7562424f1046ee9d66864ff324007b3f8792f8f29271b26c9ac79f4817ac6d", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroup\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "32ce289761be7201a97a6a4464060e4a70cfc2eedc6169489d829c7170ff1543", + "regex": "." + }, + { + "hash": "ac003f2a77ecf6bcea29062a2e53f2966d07337470b423e2c97c1b5e83d67a60", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "53b0a4753ced7e489476ffc0e0e6eadad7a6139fcd3f351943c49384367ef22c", + "regex": "." + }, + { + "hash": "0464d99b9f33adae230934bd4563aa8b8c56dc530b2a95d2b55fcbf79381908b", + "regex": "." + }, + { + "hash": "b65483c61024711d113c92ce70e0d09c97696344cac0ae143ea2f18c4da96c1a", + "regex": "." + }, + { + "hash": "e4663abc9b936e076246a040afe2e0b8b353efec50fbe4bb652139daa7ac9f9d", + "regex": "(?i)^https?\\:\\/\\/haszamilan\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7c00729d244c308fce607e1e63b2af24c9f31dc299f3a9337e5c648b13946dc4", + "regex": "." + }, + { + "hash": "f57e4b6e743fa1afdf7a47eca4216786b5a83081984e02031343e9f79c1ba5a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register58377(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "de8c73761f9e3e5c0d40dac107eb2af7492147b50c0899fc8bb4e1195ce8c2f0", + "regex": "(?i)^https?\\:\\/\\/yrstxs254\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "467f81b4ed1b27c10487505cc9bd5c94d49c09bfe934a04ece87b0edb5722c0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+produto\\-verificar(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "250cfcf25ba16c98b1434c5de7242f0844157918975fa8b3ae1173ff32cb083f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "03eafb5f26c46bb16fd641d6c41bbd11b990d93c03478b81303736a45c5a5a49", + "regex": "(?i)^https?\\:\\/\\/hklmlinajsaa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9ca07eb6491c2c2e5f67c9e4b73f8749265ebbcfeab70806b4645f544f448d19", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "4415e05a8fabcb103eae1396db0a27572127cfc564023a7205fc90543645e782", + "regex": "." + }, + { + "hash": "3cf1b794bf93b9d369e7a6226a6ad1cb235873504f7653d873285b58d01d6631", + "regex": "." + }, + { + "hash": "c25a7b11d64bc49c23177c205ecb0f7b44e023adb4e31850d2d5d62064a25226", + "regex": "." + }, + { + "hash": "54d79f46a8a23565d8185ab77a4fd77348e8617bf3f4c1c187f1ef54c520ceb8", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "c301566bd0fba5a65334d0f048600fe42ee2060a5b81c81f3a45c988041d803c", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "c6fe1b40ddd6bfbfed4527110cacf603d8d8e0bee8ff952de14d39700b75ace3", + "regex": "." + }, + { + "hash": "cf0550cc907da2f2309b57a899541f4bb9aef0d553235f25603e131085de6de1", + "regex": "." + }, + { + "hash": "9a503020482606af6c0cdc58bea98f6f6c29ed90fe5b4ec804489313d1767226", + "regex": "(?i)^https?\\:\\/\\/asliminah\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "96cb24a0d9d424f1b9009d7c0217d216ba9dcaf42218ac1006a234ac4e0d923e", + "regex": "." + }, + { + "hash": "e7c028133f7e5a7e5b12e95d3e272d9fce9b90aa8fae1df0ffac320d88c6b081", + "regex": "(?i)^https?\\:\\/\\/haszamilan\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1e7ba07b80eca27cec9158a209d7bef173e8d1ba7a1af9443c6f953f4c684e7c", + "regex": "." + }, + { + "hash": "8c23541c0d5bb0374cee69b079854d31cbf4495975f96dba1eef09338ce885e2", + "regex": "." + }, + { + "hash": "03e32744b7b5fa42979e6575b0159364a27d1c3e8915a5ce6e6e44ad31501860", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a99c5beee24c3481d81fffeedb886dd7d942c673737bba45b40d6d5a80e4c798", + "regex": "." + }, + { + "hash": "2d3c0062b919b5bddb39f7bbe828bb9c40ad2ef2fa55f4c0816d7ecc02a2ed7f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ibbbiiiiii[\\/\\\\]+spk\\.php(?:\\?|$)" + }, + { + "hash": "2eb296cebd7de6be2b7df7593923a1228ab77869ee2230bbb6e64953817195c3", + "regex": "." + }, + { + "hash": "2d42d715b20d284859b64f0bd84396380a4c67eaf8596c80cf4b4f0a9ef45664", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroup\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "14c2bf9ef58fe38bdfcb27b542a671ee6f693f70dbb95342aa88b830827be459", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "67b4fe7290560572780e6af2d7e10a2fa1a98783a318d3bfb13de0dcd1719eb7", + "regex": "." + }, + { + "hash": "aff1dd279a9e9cfce886b5c38e2c774753abcf9892962612dad6336fde8814d0", + "regex": "(?i)^https?\\:\\/\\/canada\\.postcanadandwq\\.cfd(?:\\:(?:80|443))?[\\/\\\\]+ca(?:\\?|$)" + }, + { + "hash": "d0401143ee7cbe65a23fc40519219aebaafff6bfbb0cc5110e075e4511a774da", + "regex": "." + }, + { + "hash": "514f5c6b0b297b24ae730945cc275c34f1c99024d33287d1fa90700d538e24e8", + "regex": "(?i)^https?\\:\\/\\/hamlinajsaa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0031cc86197a0ced4c9a1e2f69a95a9e554a91fd3d5161b4447e0da1cbb81004", + "regex": "(?i)^https?\\:\\/\\/gahbaklma\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "80bbb952eb5e7edd49cc9a5073d043446cf2eba89c2c1c7d10970313951d3d97", + "regex": "." + }, + { + "hash": "8fb7b11dac11afba3469cf35b990669ea745bf0a654b6c6b3a2c9af1db19d0d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "2d3c0062b919b5bddb39f7bbe828bb9c40ad2ef2fa55f4c0816d7ecc02a2ed7f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fifiiifififi[\\/\\\\]+spk\\.php(?:\\?|$)" + }, + { + "hash": "f4e937b1e926b5d5580cbf57542c1c96638761f7e6fb3fcb1118e2605baf8b99", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "035af1846c1e75aab449dc90ea85a8d204a942ad9a35607ab80e1e027855acda", + "regex": "." + }, + { + "hash": "5784771440cdd3c6c0803d52ad793583765f66dda41369849a9a32a525c1d680", + "regex": "(?i)^https?\\:\\/\\/aushah1\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "296428c1863c1f1be34ea7dd986a026e19b0694cf880cff23c7a737d4c60aceb", + "regex": "(?i)^https?\\:\\/\\/gahbaklma\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ea251bbd7ff0002e11e5580319a62948253ba78ef2456757ef66067e5418c313", + "regex": "(?i)^https?\\:\\/\\/hamakjalaioa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b83d82e23b71e8a6440ad55687a4346c34ba78f512e63a4b2150f2f92c20989b", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "337efde280e9cef68bc31d6db6f758a8e0fae62f0cb5d8ff7366b7401565ad80", + "regex": "." + }, + { + "hash": "9093572a3e7ca94de245dedbe519b9b64797a48a0405b6726a3fd73715948528", + "regex": "." + }, + { + "hash": "4202aa26f45b84a226f0b67ad35658adeb1eec3e026ab254a6ac87cc66eb6646", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "2e5800e1d138c1ef5bb8102232ae65a4c039296b3291a7e460edb7da548a572c", + "regex": "." + }, + { + "hash": "bc1455419b4654c0865565090c72f67c7460d298f6091ed30410a3382c0a2718", + "regex": "." + }, + { + "hash": "ca9b3384b8b4ca8751d67b77cd4e4c6637a7762da6aaccb1210821055323b5ba", + "regex": "." + }, + { + "hash": "df5dcd38fcb93937c64d4b9605e7522d6f12730c1f805be5cf04a1aee8469ef2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0ed81fce137953051f590db95b8c8d170fb568ccb7dd627140ccc4db15b3f4bc", + "regex": "(?i)^https?\\:\\/\\/vid4redgroup\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "1be6f9a54bf0bfb08ff86a49cf56324ab0b1b1a3def4a278087d96ff4623c8e8", + "regex": "(?i)^https?\\:\\/\\/srdejs855\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "4c12426381bd3d8cfae3b993969346ad36f062267c1e1273ed50bbc65787c6d8", + "regex": "." + }, + { + "hash": "c95707bb8377d0153621559a1b56ad73150728bdb518a78f8496b52dfe9cd061", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vwg(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6d57c0b14f5be785340cc075c37234b9a1081ef5ec04fadfaa77727c8db85959", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "35c2326d4a494e00890a76e82449a9c357b316e43c9055357986abfda47f68b5", + "regex": "." + }, + { + "hash": "8d23d350cc9adcb7716572ba6cec53531ae363d321f190145e1b3da13ba83406", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+129BBVA" + }, + { + "hash": "7c0eb2471d5bec78a7869bc5541d1ecbb3145ab33337206e8e3d19a64b39d6c0", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.ae(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d366429d63cde7ad249354b341a4f7cacbd920fbb6a420b418d2f88d334b33b4", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroup\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "2465c2a2f2b27d9e50f67278ceeb6edb1c09d1a93a2aa371ec8c01c387366ecd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lgin\\.html(?:\\?|$)" + }, + { + "hash": "4cb9ea43a6695d60a3eb127f0cde6dff587f752f0df57eedef13fbadfeddacd7", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c930e4b70bfba2a0717973a986d0874cc5e7bcdf94deeec859c219a67ed94594", + "regex": "(?i)^https?\\:\\/\\/roomvidxgr\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "467f81b4ed1b27c10487505cc9bd5c94d49c09bfe934a04ece87b0edb5722c0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+taxascorreios\\.com" + }, + { + "hash": "4917e942b3dd472843fdb9ad0ee7b8e828d18a5d7ce8bc046e85b91004c863fa", + "regex": "." + }, + { + "hash": "c9032fe1c08248d4e6a17e125fca3d4568e584e628f62335da676fa0f0837815", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f87435cce8e01204fe1eb950b06fd3f7939523cfa477c902f8583773fe7fa460", + "regex": "(?i)^https?\\:\\/\\/mail\\.signin\\.secure0i6jv44u8y\\.147\\-182\\-141\\-246\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "df66d0b845dff92455945bdde14e081dc7b9c24e9f2357ebdb56516cc8dff57f", + "regex": "." + }, + { + "hash": "a5f590ef531afaac7b84e8caa4c9b9550ecbd47e6f52996fed43b8272933eaf6", + "regex": "." + }, + { + "hash": "1973db68bf5a242409e5c25888ff8de6ba2fe5399074e4de708f5ccb6ca0322b", + "regex": "." + }, + { + "hash": "2dff4cd921f3705585e3537321cff008ce65a9b7a85a7d21dc031a15cd4a4e10", + "regex": "." + }, + { + "hash": "70c3e6904651e5b675ee279302f0f206416fdf0d7efe30f9c9c98ff6554832fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "71f0582187da8128e8573a87fde499a92e24d1740fb1470415a4d25ddbc2561b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "9b435217b0da348339b58a09ee634455631e4954220488bfece7b0de16efac96", + "regex": "(?i)^https?\\:\\/\\/hamlinajsaa\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6bb1d07bde5f2ba10ae44f43fb6f277a32245c3a61216e567419f2cd60a56c65", + "regex": "(?i)^https?\\:\\/\\/neroxian\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7c52651306ab656a204c806a6c3fe9698ea27d3ac2af3c65bac60fbfd7b50f5c", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "b7707c1dad7900ccc42260973d4c8c72accca3eb1f8b2a7bd7ae2b5b5fe782ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+GR(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "059519d78954f3067797c8e4dc77cb0a800427e06681b60f93065f8146ecf114", + "regex": "." + }, + { + "hash": "326473c8732c8d8f3036f0d947fad8209e85b6f2f0dadbdb97c14f272632edb9", + "regex": "(?i)^https?\\:\\/\\/gahbaklma\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f9a168174732d8e4df27b05b7bb5adb9662a58c4e2ce208ae8754276c8573ac0", + "regex": "." + }, + { + "hash": "d396e67e074a921db79c49d22636453d62c6df6297e983024149efe76f1efe98", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "faa5e63df08c324fc84813b75927874c6307936319a1ca11b0e7238826529f98", + "regex": "." + }, + { + "hash": "d29adf49c27de9a68867e939ed20705fdc0ab2195ea0d25cb8e5e9cc640e85cc", + "regex": "." + }, + { + "hash": "00f950ea5ce64c1a04e0e65866ffbb80f80ef4e444dc3a8d751d3f92f1fe5647", + "regex": "." + }, + { + "hash": "e765a3c82d4955b77a5aa2127f80b1ebf71514d44e4560133e1eb3546e9988b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dXEvbWJ1anFiZGJqZWZuQWJkZnRvcGdubyRTNVRYUDFpRlBCe0t3dmMxaEdUWXdLc0lIUDptSkdtZzY2MmdQbUxJZDNsUHJEW2kyTEx0ZjFrRXpbckhRZUhvc0hzT3dYUjVjUjlbczFpUHdSalFWV3NOU3BTWzpiW2RQbGNyY2VocGdodU04b0hwd0RKQm82ZVZ7eDFkemxIdHFVQ2p3TDZGQk8yZWs6amVRU0dtMzFANjE6MjNmMWdjMTJiLjFkMWIuZ2UzNS5iNTZjLjNlYzpjMzVmMGZlL2xwZW9md2JpZmU2QQsLCwsLCwsLCwsLCwsLCwsLCwsLbnBkL2ZjdnV2cHoveHh4MDA7dHF1dWkL(?:\\?|$)" + }, + { + "hash": "bc4da9b1d28d1b87b5fa00cf88166a4351d31463972a47f05e917c3c87ce52b9", + "regex": "." + }, + { + "hash": "a2fe64b597aac5a38991eae1cf882bacba1194210ef193c3c3206518d689ac8f", + "regex": "." + }, + { + "hash": "8e7fdaaf1151d09b20d6f4f8ab9edbad904f612d0d1ecc0baec0608c0a895068", + "regex": "(?i)^https?\\:\\/\\/supportconnect\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4961cb70d284ef82b6f96538e2382e76f69c2bd6f698960ce7b45407310484f3", + "regex": "." + }, + { + "hash": "835939c0c17a7f223c6ed2c0c593b0f90fb9fa48a1ea4469864c80f9b05ae627", + "regex": "." + }, + { + "hash": "19b55cd9a42b29073747fd8a6a3c1dd48b1402cbff6c6f990bcb85991a84542c", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroup\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "d476e90e84deb534e9bf0ddf2360964ff19cf831f9c613b069af380ef686bc1c", + "regex": "(?i)^https?\\:\\/\\/vid4redgroup\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "f9ae9f2d29e901a28a092390fd3567e6a087620fa0c129f24d75a8c7a021448f", + "regex": "." + }, + { + "hash": "835c6c8b687eec7dffd0f3d5368e8cdc26482b821d68d018e9f2143e43a7a834", + "regex": "." + }, + { + "hash": "294be688f6f6e20a0fb275c7d4e7c021d9538f983c693fff95ba6ce11348b233", + "regex": "(?i)^https?\\:\\/\\/hamakjalaioa\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "00933745ce59b004c6df24efafa829a166f2b50a4c662baeb71471673d4ffc45", + "regex": "(?i)^https?\\:\\/\\/hamakjalaioa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "14cddedfefd5e487a1031752578e73d5372622a1e3da022649ae9144f7627443", + "regex": "(?i)^https?\\:\\/\\/vid4redgroup\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "aff1dd279a9e9cfce886b5c38e2c774753abcf9892962612dad6336fde8814d0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7e81f0f90c77eaa64279b0d41a1a8e56f0217546652d1c772d5dc4b5f0b16d74", + "regex": "." + }, + { + "hash": "38fa385fe8b6e8325ae95320f0137093fd25d02444536c1ead8dbc1ebaad96d6", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "be3239076d14918d2dfc9f49c412aa644d87342d2449d3064e527a00abd37142", + "regex": "." + }, + { + "hash": "3f5595daa8cd93225b124d1e696668c1a3a097aeac1fcc9cd1803cd41df264ed", + "regex": "(?i)^https?\\:\\/\\/roomvidxgr\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ba2a180d47351594d77fc7cfe5c19871ce505d8dbf519ab0e063a38c85764ace", + "regex": "(?i)^https?\\:\\/\\/hamlinajsaa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "c62322d59d2d1b485960d57646e250f6cf09403ddc95b7547c77dfdc05ece9c2", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "e2d4fcad5d3f490a645510081c876de1ff209e7a1d764bfff4e922a17f6e31c7", + "regex": "." + }, + { + "hash": "81973fa921dfa8262e8965339d2c65ddf509eee506745c158230d117905d8a79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2d12501c2117649e1d8aca5662888840ce6d50f5a78089d487823873b3776623", + "regex": "." + }, + { + "hash": "f1a357cbc8bc3ccd4574ea9a1722137b2f6a05838609081134f3c32852cee899", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.ro(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "15e4cad407389f6bb74d886acdbba7932e0cab324723464646ea87656cc439eb", + "regex": "." + }, + { + "hash": "0367a555aaccf95403533fbd9273283b37c2ee1936d12c77cbe6388e14ab4c8c", + "regex": "." + }, + { + "hash": "ae1fa84ad109c8d351e81820c34f11e4a2de47d7f3a922d04710c012df6084ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=xE0qzqlVAV4wdVuclNnwj4vaqX2qFnNBT_yF5Y\\.urEs\\-1734089250\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$" + }, + { + "hash": "2e2d72f57bc3baadae14080e16d7f425c9252dc67da9b9b2bb1482fab9ce074e", + "regex": "." + }, + { + "hash": "c5f3c29a8bd7e9237ad97cabc6d24031dbffcdedebbe4283d01b2162d2aed495", + "regex": "." + }, + { + "hash": "9dabd9e0eae359053e0d582a4a526b1b54214eeb86f16c38ab91f8daac2d7ffa", + "regex": "(?i)^https?\\:\\/\\/haszamilan\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e5b8966ef7b0093be51a6c921312c62c3df8f762b425262b277354af00809595", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gsm\\.php(?:\\?|$)" + }, + { + "hash": "b591a65ed042cd2f7438e5c556cbdea52f9d0035316fe28cdff9cbf985ec7537", + "regex": "(?i)^https?\\:\\/\\/kialimona\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fb7c930b712315a3f3f6fe19f979033a472d2ce62f74af290af35affdae26b46", + "regex": "(?i)^https?\\:\\/\\/asliminah\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "ecbd1b69e4c86abe1e205ad601583d7444fdff1c80941c0d29bfef4c39bdd646", + "regex": "(?i)^https?\\:\\/\\/vid4redgroup\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "39a3675d7bf7581e70e5b56abdbd04752d2e589cb16e724f5c93e31928df9012", + "regex": "." + }, + { + "hash": "afa380f11bf6b3d39bf82caad169e5b3f7b8723f34c3a1a76660a3bf67142d3f", + "regex": "." + }, + { + "hash": "f945ea1f0ffdc08d2794c95106467824a3c1a3ea15ce618e76c0fc79683afc18", + "regex": "." + }, + { + "hash": "230f4f35482e572823f66505faf0f29d66c73389b6a02db35bdf7a9ece5eaa00", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d0281f698b211a438424322c5121269723b70b2230d9e9004fbc770f735f99bb", + "regex": "." + }, + { + "hash": "c384777612e3d257ce37bc25fa5bc656fc4c753e05a6fe5f5b86abefe2269339", + "regex": "(?i)^https?\\:\\/\\/roomvidxgr\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "1a7a0aa5f3039f67614c29476b8c469fb0007285188846afdbb3392bd0ea65b4", + "regex": "(?i)^https?\\:\\/\\/hamlinajsaa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "03672a0203fc206796503e13a6b950f638c3477ce574945ab20563a2e248e6fb", + "regex": "(?i)^https?\\:\\/\\/myjin0806\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "4c99ca301357fc437d3825ad62ad87f526a0c316759aae48dae5bbbf60f3a48d", + "regex": "." + }, + { + "hash": "10391572ff52f4e69cfb01722f94f2f242d6f86bf2584df7bb50094fa74bb025", + "regex": "." + }, + { + "hash": "2c3dcf9c05ddcfa377d6c10f114cd031c94e24bd4800e144a37dc189d1231f54", + "regex": "(?i)^https?\\:\\/\\/asliminah\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "96f2321773cb7bf670474af2b847db409a545a5c78b673b1a7ca2a6857dc0577", + "regex": "." + }, + { + "hash": "3f6eb98ef597a1c6b434d388ea3164f243724b8f419b0cb8eac9b66458b52bf6", + "regex": "." + }, + { + "hash": "993cb55cb83b2d12a21bb5389b184625c534cb48619d52f5dd5e7f11c5e8573c", + "regex": "." + }, + { + "hash": "a1a3b6da5f7d3400b90d26e955ae9db5eb92ab6ef21ee4f1f4ecd1b2e5f63a24", + "regex": "." + }, + { + "hash": "843a63c14f380498602059c20f613eefcbd39e3d66aa7501581da3499678b6a4", + "regex": "." + }, + { + "hash": "7311ca6cd924d609cd8d4e63484c8e88548d36712cb3456f2b0226593bb01fb0", + "regex": "." + }, + { + "hash": "d3d31e0e0c175aadfddfd70b31dcea7d1b0aa267b4a61b23d6e9258252164ff6", + "regex": "." + }, + { + "hash": "f56d8b94f830f258eca54bf2f48f220061e6374f95e47422f86543cf5ae79f13", + "regex": "(?i)^https?\\:\\/\\/pub\\-60e9cddf857f4e2b8cc0301fc376c257\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f086d2408521405e61f8d40a9a937360b56f9c3ea6e39c8afe4c6d7864bf334f", + "regex": "(?i)^https?\\:\\/\\/gatmlional\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0662bf276cc7f102cdef0bddcfaf708a5b53ec32f4c61ffeef06f6c6850716d2", + "regex": "(?i)^https?\\:\\/\\/pub\\-49b8b16db7834bcbb6dff151e37ba5ab\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7f832a3da7f5130a4281e8a46b6a950dec51a466ed1a0d3e2e7a1a04983302be", + "regex": "(?i)^https?\\:\\/\\/asliminah\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "705432d490a33478a9ef7699b5450285fe683bd1f638cc45e9b4f10b6b13236a", + "regex": "(?i)^https?\\:\\/\\/supportconnect\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "eb4ce7590a93bc9185cab98604fa8160f79c66c1c69c852b13291533689abbca", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "33fbd0cb15388c0ba4fa01c2316da5ddf204b0d3d6413e7ae83a9b231d4f6050", + "regex": "." + }, + { + "hash": "2c0b3e058b24185c8755a71ce2f00e715a87b9f337ced029ea0aed33df94d9cc", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8cabcce81895ef8f0672217f9b78662cc67a5f046c4f6934b2bf29ea7d5ba75c", + "regex": "(?i)^https?\\:\\/\\/hklmlinajsaa\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ce60006af4ff40e78a96283b776124c3eccfa507ae355ce83afa4d02ca259525", + "regex": "." + }, + { + "hash": "9953791648db96f21fd6c39e3cc12b2a23db7586a2251269bb000bb6976a8c13", + "regex": "(?i)^https?\\:\\/\\/xrp\\-official\\-reward\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "15c628ab6338d2ae26b74d5807e47991b74fb2222bc9a5a5580dcf25ca94ee8d", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?euonlinethenorthface\\.shop(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "2cd88f0e832098c3bf05dc8f28d6c02cc18a30bba66a72f332f727b5456d41e0", + "regex": "." + }, + { + "hash": "8ba87d6e3c0ab465c1caf832dc089855cd747e5706bc3ff397762eba96065ae9", + "regex": "." + }, + { + "hash": "0cbe59f530a75a12d88390d65a679896965c658b7f0d3d169e7372bad2f9c996", + "regex": "." + }, + { + "hash": "0d1cdb5d63e45b8789c291ac6c5f5c03eb556f23030a552beb489f212ed56c34", + "regex": "(?i)^https?\\:\\/\\/pub\\-931d66d70cab4affba39239d19fd1352\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "971f80c2253a202ba4f83d35b9a205e7eac8c4255b5354ee2502c7ee2fc3e18d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4e20f6fd7dfd0dcebaadb1730c78a38096017d146eb05a3fe376d8de6a558756", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "5309ce3402e051f2facdc3058f136aecfabe609fd5a57289c80fc8eb2238d4bf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+thewl6\\-a" + }, + { + "hash": "c4bf2130ec1b475907ba0dff729080f5e2dac76d45131403921224599d0e8ced", + "regex": "(?i)^https?\\:\\/\\/asliminah\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ba60c24f3601a5bd8c3081af51ea22d40796b4145e371e7c4cc92bb4c1aa79d6", + "regex": "." + }, + { + "hash": "cfc9a0d945e5a8190a5d670ea2f58ef5656966451c57394aba40c47583911130", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e5b8966ef7b0093be51a6c921312c62c3df8f762b425262b277354af00809595", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+index10\\.php(?:\\?|$)" + }, + { + "hash": "980636c5ef3a6dbe165a5241766058221b6ddc114212798c8fc6d9021e3b987b", + "regex": "(?i)^https?\\:\\/\\/weekendpowerup807\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b07f02f8246461e3956bd115bc15a2476afab92ee9c76e0da2c682c532112ff0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cf05c2ea2d9752fa1977830841b08c2654fe38cdcb98f586e4c711a9fe3abea9", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "bbbab0085dc88c2e1b9d57b6a4fc9d74a6d891ce658d00382c8f55abfba4abbe", + "regex": "." + }, + { + "hash": "72abca18c1511e2f18cb2014cfe73f6e517728c5cb8e04f6e4f63b9a16a678d0", + "regex": "(?i)^https?\\:\\/\\/gahbaklma\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "41a66ace0851a3ad715cf301062d6d9bac97802d70421b43c442671dbe573006", + "regex": "(?i)^https?\\:\\/\\/roomvidxgr\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "113ffab71326fcefff9ec397b0369d6e4e8e7c0dd2a62d2c7197bc48c00d5b3c", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ffca5a721c1eddb889e1dfe1c85bad5bfb220ab6d729f66e6a7becc75097912a", + "regex": "." + }, + { + "hash": "7789e1d8fde54541e83855a2939686d095cec9a68aaba80e58e2c3b188244906", + "regex": "(?i)^https?\\:\\/\\/oytaprff\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f0d25af5865a5efaaaa9453e052864c08273bf1a266c762be4bf6a7793fbae67", + "regex": "." + }, + { + "hash": "e6f72e8f73ea091123b2c38f30b952de8376e2678a1308fb30a816273cd33715", + "regex": "." + }, + { + "hash": "a24679e1b68d655e9d4921442f0e8598f0527c7f4338529b00ade5937d8d07e5", + "regex": "." + }, + { + "hash": "30f7a1cba28435dcf1b568205142d433de8941d09376b1e952731476bae165ee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "0981c033175a4d3358a6ad6893a774fcab88e4cc754e3974a34eacd6828c72ba", + "regex": "." + }, + { + "hash": "6ca8655bf3504d8e5c6dbc98c1c2fc51c3ef0e8bcd56c3dda83d7e107917958e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+scood" + }, + { + "hash": "ce43c4a99f4915d0071a1108ba5501ff662617385e8f9abe8bc6b7178029f9d0", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "db2093050fae754318a278e3135ada6509343470b8800585306f61184a3a171f", + "regex": "(?i)^https?\\:\\/\\/hamakjalaioa\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "4e51fcc417507d3282670f642197a6f060d2732b3a5e48bb28a99b0a8df51a31", + "regex": "(?i)^https?\\:\\/\\/netflixgpt\\-7777c\\.firebaseapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "32db8b744c17a5347fdc6deb911278030b3ed2c36c3561f4308ee5ad9144940b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7332bd8120d7f32cb93e473fdc6c3a6ada3d13fdfa4851a261033e6ab5d41830", + "regex": "." + }, + { + "hash": "e374a1128cbf0b03ac07fe2735d5fb86f52197ddb683309aab2714073ed53369", + "regex": "(?i)^https?\\:\\/\\/roomvidxgr\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "8f51fff656e3120cfa06f9a22d1b2c13e03f27da5f4760287619203d5e29efd6", + "regex": "." + }, + { + "hash": "9d0c1d3119e23d324b94663bb438eac48b5868c7b01ac8befb4ad74bfca3edc5", + "regex": "(?i)^https?\\:\\/\\/haszamilan\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "607a7e39924cb007dcdac6af84c7e1db417113c2c5fd84c99f484c5ff0904c63", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+data\\.php(?:\\?|$)" + }, + { + "hash": "4606c02800f3b712d30c88a7b2e086b4f6e7b0c2fa5a4add86680eb245ed6a49", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "5b12c53b0ed1114b8091232ed9749ce6fa764e96b23e7b540187f2b468312495", + "regex": "(?i)^https?\\:\\/\\/kialimona\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "9cea0c9cbaf198485cc5cc2e43943a0e5b6c964385032145fb073a04375359d4", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "0464186d465d72cbe3ed937ecf2dddf24e0cf5f64433b26c6ed1000b99f6981c", + "regex": "(?i)^https?\\:\\/\\/maxtv\\.cl\\.45\\-12\\-1\\-31\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8e39edef3fa7c605b0ff554836e32969467f99bab0852271ef8cf5a8ecb17ec9", + "regex": "." + }, + { + "hash": "b82f0aaccd1a1e1d51f48f914ec0f5770b808c708d8facd918ea8bde4ce37e63", + "regex": "(?i)^https?\\:\\/\\/asliminah\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "1c09f86377291d1df9dd08946ccb2b282fcf5c7cfff9973a98f8d9a5ff2f314f", + "regex": "." + }, + { + "hash": "80ddc97fd869754bbd74fe9a7153f52afbc7bda5a1dbc87118314156bbf21c02", + "regex": "(?i)^https?\\:\\/\\/mf10233\\.is\\-a\\-photographer\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0f6e8323dc15bd6727a3032175eb622bdda1424208a1e9bc76778c7997155bee", + "regex": "(?i)^https?\\:\\/\\/gatmlional\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "da155f45114df66ab1f616933619f814e501a848f6957440b5393215537e4e18", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "016065bafb6cac7af4adebf4e1b66bd6c9ddf46ea41be5c04223a71bcc45d8d1", + "regex": "(?i)^https?\\:\\/\\/hamakjalaioa\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "61831685f293bd38250f6a553d76330c9b966a69bb1b90292db3875be0eaed40", + "regex": "." + }, + { + "hash": "7a28cf95c2a7d3011f8ede319be7dda3566ba6257ecaf7d910e1f674c49b7ace", + "regex": "(?i)^https?\\:\\/\\/storlian\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dd4c08dbcfba74bb82c66248691a2e50695d8664c3966095203c0d54fac86f4c", + "regex": "(?i)^https?\\:\\/\\/wongmesum\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "cab9727374d1b0706b729e5860b180a87fddc86d4d983dd1ec3546c91dd1e7a0", + "regex": "." + }, + { + "hash": "2b94853ca833826299b0767afcf1aa92650bfbe2b41eccb2b6786a77f6b075f5", + "regex": "." + }, + { + "hash": "14007772a37921a02c49b6e62fc6757e5e543a94ecbb452860ef89194c9350bc", + "regex": "." + }, + { + "hash": "23cee8b7a0702d7a2fbd289f44626bfdc5f5bc73fb50087a9cfaaadf51eb19f9", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "467f81b4ed1b27c10487505cc9bd5c94d49c09bfe934a04ece87b0edb5722c0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+receber\\-produto(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f9aceadb2fc56f1f4a2a76a6ad91e6ed582eb56cac29b9654cb17f4d8ec7b5a3", + "regex": "." + }, + { + "hash": "d7b7c84e137ac8385d12af574a41585c20a1cf3d54847e46bd2e7d7971719cea", + "regex": "." + }, + { + "hash": "67c45bbff4c25e490dcaa4e84bfa6ecf957133e2cb63923747192d55e6eceaba", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.no(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6ee9ba896fa4533dce365be357d336d7dbcf67905fab93db66e3f9593c623b5f", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f94852f5c7d9b59d243dd9baec24380e19f721d28324f42303cbdb845d2daec3", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.rs(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "07d4ca378bf9f719fbfd3407bcf81590d643808263e8ce2cf8df0cd50fae7992", + "regex": "." + }, + { + "hash": "fe417bb9dfc8c78dd0165578f6faef0fb59de7cf3ed16e38b4b331ded4cc87c7", + "regex": "(?i)^https?\\:\\/\\/vrresng\\.live(?:\\:(?:80|443))?[\\/\\\\]+Vo9(?:\\?|$)" + }, + { + "hash": "55d8c75cb769f8f6da97553c6a69f60d94fa7a101de1d61492bbb0429f4fc874", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "c5a718ba2dcc16aa260db5d724ca2436645183135e4e720a9eb63af79f888bf5", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ee2f08367a84e658bdd221dda3dee0182e0c6cc26c8545099b93117766b6b6e3", + "regex": "(?i)^https?\\:\\/\\/hklmlinajsaa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "10ccebaea321d9d3d8624e8a07014dc58ee02809210837485f4c4745e212afba", + "regex": "(?i)^https?\\:\\/\\/ufwdkzmn\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4900bd9d549c653888252481bcadc286c54c8a63a8e451ffc745b15b6e67f656", + "regex": "(?i)^https?\\:\\/\\/abhiraam\\.serv00\\.net(?:\\:(?:80|443))?[\\/\\\\]+12" + }, + { + "hash": "32b572dfd4a16d569d81a86699682b874738a79add75c0b5983c0ad8799dfa07", + "regex": "(?i)^https?\\:\\/\\/mail\\.applink3\\.secure\\.account\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1ef4e9f5d6556186f2cdb9ea8f535514af2ece9c5bf5823cb4533188f1526eb8", + "regex": "." + }, + { + "hash": "1450b3d9684e3241eab23c18f1d4598a7c651192a91284e85be72e772ca5ba6b", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.ru(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "4a7a962ed690122dd9fb531b5289ef1aa64d203327d8708caaf54da07d13aa47", + "regex": "." + }, + { + "hash": "71f0582187da8128e8573a87fde499a92e24d1740fb1470415a4d25ddbc2561b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8004[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "40eb216b3e1614c01f029e1d2a67c358872b269dddd53bd0fa469fcd1a31b6c6", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.ca(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "1e11011404340deaa7163d60228ebabe53b092c3c3280db6765575f320f617f6", + "regex": "." + }, + { + "hash": "b92a8b2fc7bab1ac2593cba7a6875d8eb0a3b88811935968257316308586a862", + "regex": "(?i)^https?\\:\\/\\/liyeon99\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "95d82c30cb7af905f0ca9a9090a7c61f9d5d469717026f33607f951a77faaf1b", + "regex": "." + }, + { + "hash": "7bdfe2423203eeb6f4499631a6273eb1cfbc38b428b5088a3396f55b8a8ca21e", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "fbb11e5eab3895725565f1f2278c30099a9d9b2c85e325cc4ce0efdb0282a149", + "regex": "(?i)^https?\\:\\/\\/supportconnect\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "8eabcb39b62160de7033251d28fd85baed9b1a9617bdf55d83f9a648fa670442", + "regex": "." + }, + { + "hash": "baa0068c410b5caafd9d9149581036064ba97ab601b9103f0f58825a0370613f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "e9d6a43a0475d2a9afdd68c20ffa86e783f2bdeaaeb7e3bdff36bfc8b629f16f", + "regex": "." + }, + { + "hash": "93492aa16b5ba999e115fd817351e32c2df998c5780f7691cdda256fbc7300b4", + "regex": "." + }, + { + "hash": "14fbc84208a3e4c0abdb1d04b2ff0f4fe9b431e697e7811bdd05dd09cd4ee0e5", + "regex": "." + }, + { + "hash": "5f44e1d790947d91a14eacf6edf02e80ab2de2f8d1f133c6788b0f1ff76850ab", + "regex": "." + }, + { + "hash": "138438d71632c057898654e9e7fc81987f4fb1ee11069902828907d43f400cb6", + "regex": "." + }, + { + "hash": "a194baa00c84881bd621d9a7d6e7a467f7583eba97e0a433c78852fa6e88e453", + "regex": "." + }, + { + "hash": "14cda9e5dab4e8b4e72d9ed0674740e4fdd6e8493e0f87c018490aa1fa434ef2", + "regex": "." + }, + { + "hash": "772b34a420f30562218967c64c4c13835aa01854ce39b2e3adbba44636c77b90", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "f57e4b6e743fa1afdf7a47eca4216786b5a83081984e02031343e9f79c1ba5a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register21608(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f086a9640d5a9057dca38dde4777540f1965702e050042a70c5cdee17b9516c9", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "6a3e582d66f067476a8e72313214b09305f7b3d3c8632e3c577fc413f2933609", + "regex": "." + }, + { + "hash": "a1d831ff65b0f9f7b394dbb9c1382bc3e671ee2164b641daf489d3f59145f87e", + "regex": "." + }, + { + "hash": "a3d9cfbdf176737e506248cc468f9c0745e826caff767ef05e24c741c4502994", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "380de03570486adccdc84dfa55f84f0fe8d549547e0fb94b1ac0685929aeda76", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroup\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "467f81b4ed1b27c10487505cc9bd5c94d49c09bfe934a04ece87b0edb5722c0d", + "regex": "." + }, + { + "hash": "96895cdbd1f7b284f84faf161ba5cebaab4bd492654f4bfaba6166b77453fa83", + "regex": "." + }, + { + "hash": "a20b2b2c70fd6e5c39cd40413a9bb8cbe34affe0895324c9af30fb651bf0539a", + "regex": "." + }, + { + "hash": "b3e880973d3a777d0c4a5e419d92692a867dd3ecc30e6d1a978c1088a490f049", + "regex": "(?i)^https?\\:\\/\\/hamakjalaioa\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "43fbbef12155bd2a3ecf90851c2049493814d75d7cf5b3d958060617165a1d02", + "regex": "." + }, + { + "hash": "c641aa7293c35f05df9f71ab2fbd210c65486fe1a748f19a19d6e8fc7cb13cdc", + "regex": "(?i)^https?\\:\\/\\/roomvidxgr\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "53d78a991b7553fa998d9a42ae40e4e5541dda75a93bcca260fa91a9e0ba3c29", + "regex": "." + }, + { + "hash": "cb78bb12fb22ce21e9fd5bf40bbee628b4c543910bcb0fd405f966f8912c9bf0", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.my(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "6359b027cfb9eca7aec6dae357be521fc6bafd99f6c839066ae2fc8e1bbc9824", + "regex": "." + }, + { + "hash": "d043e23afd07d21bb550b21e0cbe8c6810797f3eddba294c1f01b34f9de39ea3", + "regex": "." + }, + { + "hash": "c88e7d95baf63832d7abb2eb65ae2d9e0ab5bb951d6ba5cb0d7ca06cc188368a", + "regex": "(?i)^https?\\:\\/\\/gatmlional\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "ae1fa84ad109c8d351e81820c34f11e4a2de47d7f3a922d04710c012df6084ea", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+appeal_case_ID(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "32db8b744c17a5347fdc6deb911278030b3ed2c36c3561f4308ee5ad9144940b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=KhpioxlS3z2pPXXC5B2hO03gAdKdL8XnX1AIGO139Qc\\-1734110356\\-0\\.0\\.1\\.1\\-\\%2Fappeal_case_ID\\%2F$" + }, + { + "hash": "6538c1fff9adb68e18f4200dc016f0f9b5ca28fbb35a14daf65eb6900f317eb1", + "regex": "." + }, + { + "hash": "d097d926fad4169ededd06cb207133aba913ab1ff4d61d3e870e13dda6309099", + "regex": "." + }, + { + "hash": "e3bbdbbdf3450015cde5f5658b8d91286bf87fe1841d65cda3bd5da0b3dc5049", + "regex": "." + }, + { + "hash": "f3ed61f804440d9dba60fbcd25bed6b2a8043c8d3f2ab91571ad10514964fd21", + "regex": "." + }, + { + "hash": "9f6fdc159c53b6efc9f011b4c9ae2017fcb55ec66208954f0bba06958737c5a3", + "regex": "(?i)^https?\\:\\/\\/gatmlional\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "5fee17cf112664e64e70f1baec2e94331896e07aa698d6967f1bbac4716d26d6", + "regex": "(?i)^https?\\:\\/\\/hklmlinajsaa\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "a4460381274f358044ecc37d8198028203ad45cd9b6389c3acb8200f1947aabe", + "regex": "(?i)^https?\\:\\/\\/haszamilan\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "bf1f6ea0f00be0d3a6c2b02c18cd3cbe097caf4b19e681ee4cb844f88e5bcb44", + "regex": "." + }, + { + "hash": "bb433f1ae8707b18f116548bdb27e080af1e5b346cac8b5d1328acdca9d11d18", + "regex": "(?i)^https?\\:\\/\\/hamlinajsaa\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "fa7225e49281b0617bee3d3c8fcd0bbde1ab4684ac2de45213ea82783bf31938", + "regex": "." + }, + { + "hash": "1b4589134e9d4fdfc2c44f7cc2aa43da32083e2b0c96ec9cd8de429058987693", + "regex": "." + }, + { + "hash": "8af8df54c59134a5566b65b55001e3ce3d923b3ef527235c5926ba2045fe8784", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.ie(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7e4f2390e0971fbffea94d0440817cbe83ceea82deb6c1fccf85f6f0fa1eaa42", + "regex": "." + }, + { + "hash": "f65841f00b00820906e0b68998ea511d8153cadd6d52b647879f78503898213f", + "regex": "." + }, + { + "hash": "daba0f99f818659f4bdd7d27050ba1b7654f756381492b3318b954344034982b", + "regex": "." + }, + { + "hash": "1d235ae6732156f75cc856052a5527eafde970b4e7afb10ff2e0af040b82492f", + "regex": "(?i)^https?\\:\\/\\/hamakjalaioa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "a465f89a2d7764a5aaee61a408a75ec3f3d911b746525a0ddf57ec488651418e", + "regex": "(?i)^https?\\:\\/\\/pub\\-fe4b51401f9c4de68ba0f331146d0faa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f57e4b6e743fa1afdf7a47eca4216786b5a83081984e02031343e9f79c1ba5a2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9553[\\/\\\\]+entry[\\/\\\\]+register21608(?:\\?|$)" + }, + { + "hash": "6f7c0549804e2b387608b7ca974d3d4124dee2e8b56ff785184611ca2b0701c5", + "regex": "." + }, + { + "hash": "15dca7e204397cd49fc8417a719e811f90d5427cc95394161e7cb5bcde5ae737", + "regex": "(?i)^https?\\:\\/\\/kialimona\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5ad0359401afbcd07d244b7b0f06dbcc77ca75fe030b7c4c5df18296d5096096", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroup\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0d11222d3138ea9dfa41eefdcdb9d1c1d9bbfe642a32294960cda2e66f48f296", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroup\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e765a3c82d4955b77a5aa2127f80b1ebf71514d44e4560133e1eb3546e9988b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+dXEvbWJ1anFiZGJqZWZuQWJkZnRvcGdub1kkZjk5V1piMXJJW3tJVk95eFBlNnVLWWt7bkhoQlpUSG86ZldCUVlZMUJXWmtPbTE0THg1eDlyTVJRUHdzYlF0VDZoMzl7RDh3WnJsS3RqQ3A5RDlIUFdWNWhOdkNFVGxEZWxqdTd4ZUVqbjJDUTp4T3lTb25Id3hSMzpIeG50dkZidXhyQmpuZTFRUUNnVUozVnVteE1sQDAxYjM0Mm4wbnBkL2d6dWZqc2NwdC86Njc4NzUzMDA7dHF1dWk(?:\\?|$)" + }, + { + "hash": "14860439019ee1f5538198f2577095fdd86ceb822d9cfdbdec417ea907a4d6be", + "regex": "." + }, + { + "hash": "93bf8703718ab7e4290436413a58dadcdaa81862c1576dd5e1c5d2ddd3a887dd", + "regex": "." + }, + { + "hash": "59773e6ba08bdee2dcc15d6c9a76e9508d1215dd407a2abce81100a5346bffb8", + "regex": "." + }, + { + "hash": "9143cda0a0333c77e51ac340c40716e5a950e0fb887c1f3d6177acfcb45ec5d9", + "regex": "(?i)^https?\\:\\/\\/vid4redgroup\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "c8ca11d0bc1b44fbb30569bcd63dc44d1b9547787f45e38b4626c5e9429254e9", + "regex": "." + }, + { + "hash": "c14846557f477d4624d9942d2892640dcc532378d7beeac38a8c5bf154b54723", + "regex": "." + }, + { + "hash": "121217eb977f8153e85733789a99a0fa5fac463e1c475460bebfd35fdd9e9e3e", + "regex": "." + }, + { + "hash": "fb29c76dd82895b6942d92f55fa6a750b50c413f1c9fe97bb524fdd49bf25d11", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.43\\-135\\-137\\-110\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2d1c5b98bf69af84e807c92f17f4426d8c04c516f7ceb78c3c65daa26aa08aa4", + "regex": "(?i)^https?\\:\\/\\/asliminah\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "0a7e62413bf6c77e39624414090db0a1e25c982173df5f64ce21ee828d7d8f0c", + "regex": "." + }, + { + "hash": "d511c33acca3b37c8fbe8ee7ed8b54de163b60e333ba91fd6f5af7611e7312ef", + "regex": "(?i)^https?\\:\\/\\/gahbaklma\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "c79d6dd97ba02aaddfcadcebd9e8b95877a6832b66b24ac80a7c61cc612577b0", + "regex": "." + }, + { + "hash": "c665f2ba470855803cf6b538134bc6cbf131faea4482181857ea21334645be7f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3029ab0ba7cde58229f5744c55c39d2705bd636865425970ce2a2409314726e5", + "regex": "(?i)^https?\\:\\/\\/supportconnect\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "eae8015f1c110bb72d41a7cc96fa0f40e91fd400e1a3e531640b1fc5080d9d66", + "regex": "(?i)^https?\\:\\/\\/gahbaklma\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "178be469a2838aa20bf1ea03d212824aa62b12b2c3c7b2c3ffba8c74dc21535f", + "regex": "." + }, + { + "hash": "727bfb8016dcfdbb939096a9c58d9d3464f97696052a4babb60a71c96fd3fb2c", + "regex": "." + }, + { + "hash": "7a97ee50c5f71969ec456c855d3fff847e8cb976a56ba898df6677df3ba1702b", + "regex": "." + }, + { + "hash": "c3e047b362b527d68d3e4516df7ccc470d4d4e2a8a3be1ebdfc06da89d9ca3c2", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a798a58049cb50faa898e526df03270602ed22e2a9f19f4e4d79a83b4b77afcc", + "regex": "." + }, + { + "hash": "a9f6096f6307963e2c9e1bad7f5274a9288ebadf792398bfcda93397be744713", + "regex": "(?i)^https?\\:\\/\\/meta\\-team\\-090\\.tempisite\\.com(?:\\:(?:80|443))?[\\/\\\\]+son(?:\\?|$)" + }, + { + "hash": "f7f994dbcf6955febf77f7e2fcd47a76968669ae90aed04dfb0bf888e67e9340", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)" + }, + { + "hash": "16e837f845ebbd59bb5c73e5bfa0abb9eb9e1a85462dc94ef4bad3c02deff444", + "regex": "." + }, + { + "hash": "d54864a3903b410104057dbabeb0408b453adb6b7976538134d21c38180c56c4", + "regex": "(?i)^https?\\:\\/\\/rhbztbmvjc\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "23dfa39e9923969a2b2fa87ae25bd3b057caff3013ac16ecf12d98efadeb6aca", + "regex": "." + }, + { + "hash": "ff7a21aa5c3039b78bffc98df70e7dd9f351fafd9018519782325d420ae5776b", + "regex": "(?i)^https?\\:\\/\\/hamlinajsaa\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "32b572dfd4a16d569d81a86699682b874738a79add75c0b5983c0ad8799dfa07", + "regex": "(?i)^https?\\:\\/\\/applink3\\.secure\\.account\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "19a3ef97fd0514d6868ebaa032f7673a43915573ffdd622eaf93dd076b61df30", + "regex": "(?i)^https?\\:\\/\\/haszamilan\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f71e4797e87bfa7ec71b0fd5b4933b9f9452e976588db8968ca9c36eb491f", + "regex": "(?i)^https?\\:\\/\\/roomvidxgr\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "ffe4e38a7574e66ccc984aefc03acaf017031badc3dfe913791df2496d303799", + "regex": "." + }, + { + "hash": "c73a0118d6b910d7446cbc618dccee08e277a8073f14d22fe762ff7fcee4d1f5", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "daa0c3f439ba825285aca33863e72c059ee02fb4493b2c45e24098693fbceab1", + "regex": "." + }, + { + "hash": "b3194a96110b8b493d48b697ea4cad206657f04fbb0fdc54f316592caab64dad", + "regex": "(?i)^https?\\:\\/\\/vid4redgroup\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "d23dd9548ce3c48f285e27d2b94b5bcef5e2639c47d94acc36d408de40aad8da", + "regex": "(?i)^https?\\:\\/\\/bafybeiayvgnthewxedappb5uzevu5zgvbvhxhpz4mdtdmfc66j65peu6ya\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "98327ee8f8a51309da8854684018b35b7a07f1d545b93bc2ffe1654f2ef4318b", + "regex": "." + }, + { + "hash": "df885d6f682273939026c75f608274652468414780fff14b425a71c30d0d85d1", + "regex": "." + }, + { + "hash": "ac5fe044ee435ab19d92fe3712917c58ef45d6c2869bbc6ae022fe144e21179d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+koo96lEFT(?:\\?|$)" + }, + { + "hash": "68521a3bfd55d87baba02d0b58d802632423859aa4c7cf8bc26c132a50f376db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "fdedd0b1e81f742319318892556a0c671d389a5c6f369c7857e7bc0de70eee92", + "regex": "." + }, + { + "hash": "763840ef4af242f09b724a382a90dac38e28031c2da1d4d1be026732386c5631", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05e5346c79e696e8d1a6d9ef5d85e54f7716bf40ec2b81732be01c265e5f6360", + "regex": "(?i)^https?\\:\\/\\/tamodeals\\.monster(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5a31e21b36afcd15f4c6e8c25491908e8bb81abd00d908e97157866ce3b00986", + "regex": "." + }, + { + "hash": "97da903732e3ec54fe68364af0f295d2fe2a1793177869a0a34c43085d23a724", + "regex": "." + }, + { + "hash": "e9c61166e6dd61a702a1fba841dd03a8f28b9c9e71909dcc1f81d2ab06706b88", + "regex": "(?i)^https?\\:\\/\\/bafybeiez7bpvwlzk4f2ikseg2ebwy2rywtnzx52hxwt6oobmoshtzvhv3y\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "82f4690d1619fda7b4faa31678a603596e5665282f587903713b6af3bfb9daba", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "6be1366bf74f3334313924197ece3aab2ef022d674eace5cc1a28558c829cfab", + "regex": "." + }, + { + "hash": "6d01ff538592695af2e2ba71ea4ada3797eb0c045906ae551e27d03eac78f08b", + "regex": "." + }, + { + "hash": "a722b7c4ca0f1f94502bd308369bd3d220d5b700e2f37d9687b04d80888894ff", + "regex": "." + }, + { + "hash": "224827822cf22d1c46846095e81299948a3e168c7f9f873271e1187f4b95ce3f", + "regex": "." + }, + { + "hash": "aca89bdedc61e8b7264562333cc93ee9b5abdeefcecf190faafe72606c6c1121", + "regex": "." + }, + { + "hash": "d7de0b242c25872ea880dfa6d75b670c138718b66c69c3afef7c3afd8c2b0d53", + "regex": "(?i)^https?\\:\\/\\/hklmlinajsaa\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "827f362463311debb292101140d8e81a62936d001ce8f90e046882faaaba005b", + "regex": "(?i)^https?\\:\\/\\/hklmlinajsaa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "c6f15531cd35b27643bb1e52596ade63611950d556a08966516de26997390afa", + "regex": "." + }, + { + "hash": "a9e9a1abe19b139398133e578590bae4273a502e9ea30b052b99a58947afbe4c", + "regex": "(?i)^https?\\:\\/\\/asliminah\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "f7f994dbcf6955febf77f7e2fcd47a76968669ae90aed04dfb0bf888e67e9340", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business\\-help\\-center(?:\\?|$)" + }, + { + "hash": "05038674f2b2ee25155930b65b77b26212fb8bbf65f7d30756b2fe1e461b5a40", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ca1d28f97f14cbb254a57399aa032e01f390a6678a7041b4717f5f5136491e0a", + "regex": "." + }, + { + "hash": "1c5107d96b2671d4f971abb12925b733eca34b52260463831f2834e710ad51b1", + "regex": "." + }, + { + "hash": "bf85e5f5a946c78a50d49cf27e2c59b9c8699881b8f900d719ac1a1e783884e5", + "regex": "(?i)^https?\\:\\/\\/hamlinajsaa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "1bac27896a916dda93d6b7a71899fcd3ba7f874e84d7a9fa862885d44465d508", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us" + }, + { + "hash": "ad3169d40e8c2ae2c59706e7a12c70bc4a587afbb9acdaa62cd65364c44208c0", + "regex": "." + }, + { + "hash": "652996e8239d38d25b6ab0f795a06e8a20e0c7e3060f90e3b061c5c39eb246fc", + "regex": "." + }, + { + "hash": "5ff29e31705e5edf7bfa57b34b32c841262a5d731fe08908f9dac44a1ee3fc91", + "regex": "." + }, + { + "hash": "9d283c57fb2f91e31f335e293ec59787d219a5aff29d0dafd677e73509ab9762", + "regex": "." + }, + { + "hash": "e091d8c6084d80ee1612aa968b16840dfdfdc3e86bfd0b29bb32b8babaffb3a9", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroup\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "a894a2147e3899ffd8385089891b061fab4e8dd34994bd66f2962d1d5d364013", + "regex": "(?i)^https?\\:\\/\\/gatmlional\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "8cc9a8c23a83eb943061f8647a8318bc50bb6aad2dec3e249228035ea8116d5c", + "regex": "." + }, + { + "hash": "0fa3a49aba5a7b8ef060b681dc432f090f0144db5069da0273fae1b3fb8c2759", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "6bdee4aefd9ef4b35aab545f118f239d498e131d8c9f5a96ee88d036fabc384a", + "regex": "." + }, + { + "hash": "df5dcd38fcb93937c64d4b9605e7522d6f12730c1f805be5cf04a1aee8469ef2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wor\\.keiwd(?:\\?|$)" + }, + { + "hash": "b23d0d5b162e7193033e5c3be0ab73301c1d219d84d60f36b3236fbdc9bda87a", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.dk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "80a80cf2acc14a6614dc65f5d23267431ac2977ba10efe65dd2e13a45d039f6e", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "59f75844bee4d0116fbc7f8b9f05df931e60654b791e2ee0cadf4465a7c7b000", + "regex": "(?i)^https?\\:\\/\\/gatmlional\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b7707c1dad7900ccc42260973d4c8c72accca3eb1f8b2a7bd7ae2b5b5fe782ad", + "regex": "(?i)^https?\\:\\/\\/elta10\\.top(?:\\:(?:80|443))?[\\/\\\\]+GR(?:\\?|$)" + }, + { + "hash": "c143e433765f44e87d1a9be2069c5b94c3a10797d9aba602a101dfba0343e5ca", + "regex": "." + }, + { + "hash": "430185c73586bc069c59a90317de1edb53f0a09f7170734896137f984728c26b", + "regex": "." + }, + { + "hash": "2c80dcf22f8c4b06d8dbc1505d09bdf4aeeadb5fc3b3155fc548f1fe1d3f1c7a", + "regex": "(?i)^https?\\:\\/\\/gatmlional\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7645d827d99b36dbbaae07cf237bd965253420629cd324f7223220425f9c387a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "34f2ace9029948b284f27876964da880d8554498cc57a1f1a546a670102e6917", + "regex": "(?i)^https?\\:\\/\\/4535\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5858bca482a74fec012ef6b226e04d9366bfaa529c63db6464fb48048e6058c6", + "regex": "(?i)^https?\\:\\/\\/kialimona\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b29d90431217fd25a422e0b3b077deefbb5543bbc780762a2947e820615f4efb", + "regex": "." + }, + { + "hash": "b3c6046d597aa598ddab68d013805b1a27b34df113cf93651a08e734af940b33", + "regex": "." + }, + { + "hash": "4d84b843ed1e3ec5745311c279087c3a9aac3d134ba41241eef8a04f190a2238", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "bd173792e075801cacebf917af1169a1e90e811451e726f61a8e2283b50d8b12", + "regex": "." + }, + { + "hash": "026f2e7f7319593299bec0c47bab3ee28d7cfa2fccdd0d514ab03d5df0971364", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?rid\\=bePrg2a$" + }, + { + "hash": "04d41d5b5f6fcb3a8d1fed17b6e52619f76e06bf2f8c0dc54543c50c11da65ad", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "485f3d75e1bdb980f5b762608aead30094ac78fd256ef02dd265d44af1cd5b1e", + "regex": "." + }, + { + "hash": "4ec56773ffd35ede313832b3243eeab5607605462bc14ec8f75454b3315c0ad8", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "3856e403d04339f8d6c272acdde35af6900785d7b30b913cc08967a977cbe213", + "regex": "." + }, + { + "hash": "4cb0c8d75945f39c226e16604fecb0f253ad73039a9f340dcc344afc8fa828ae", + "regex": "." + }, + { + "hash": "e42475da543e323e414bf4d1f62fee990d3124921dca93838e2a0ad8364ff0c4", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroups\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "6d3fc8ef77e3d3cbe1f1c080190c2327716233ab71bd7a2d5684d0f30a0cad2a", + "regex": "(?i)^https?\\:\\/\\/vid4redgroup\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "4065ebafbdca999da8f5196e9a04b1d7434bb543a617b927922c9989c8d24917", + "regex": "." + }, + { + "hash": "467f81b4ed1b27c10487505cc9bd5c94d49c09bfe934a04ece87b0edb5722c0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rastreamento\\-verifica(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "09bb72b9b5df6f0572129684ec4cc00b720ccb66f5a90e816861a04dbb2129fc", + "regex": "(?i)^https?\\:\\/\\/roomvidxgr\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "deb9267cb3801450d59bcde6fcb921e448d6029b9d82a3cbfe915d1ce11e4d6e", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "83336365f104a6ce6b6543796e4af27de46eb8b6fcc7a84814d7c22ec00030ed", + "regex": "(?i)^https?\\:\\/\\/robloxoofpackagecode\\.blogspot\\.lt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "d0f3c63ea1a45de301e3243a3163db9bc5af0231cbcec124778289338744e145", + "regex": "(?i)^https?\\:\\/\\/wwi\\.dwqfevwedcwdfe\\.ip\\-dynamic\\.org(?:\\:(?:80|443))?" + }, + { + "hash": "4961baef2592d36df430bbea70cf2648ad069038823e30fb8bf6c237d465f389", + "regex": "." + }, + { + "hash": "d3d3e41288d194ede8166ae869582433d7a679c08843a81c14db73131858b9b1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+So[\\/\\\\]+CAD2i9jr" + }, + { + "hash": "e286d0ec493b83d26a27e9e633a839b29f9bf2d06e94f704229699ae224691d4", + "regex": "(?i)^https?\\:\\/\\/haszamilan\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "59972c0f2d2843ca17e455d4575b876489e8212a3d313a37599649d82acc5d96", + "regex": "." + }, + { + "hash": "718a6ddcca1f8fcbc45becdf91c64439a3bbaa36d4d00fef027a6576867f646c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "77d9d69eb2749fab3e8507eef321518041491a5a99a33b21dd23c40535152abb", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "eff60753bbd57d734a678b41427d2244aa3e1971324ce2d214c001986dc6c15a", + "regex": "(?i)^https?\\:\\/\\/hamlinajsaa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "d47a289ee64965336a7846dafc8c91e4c5d0e5a97882d45a615807bd4b36771c", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a0053487eadb4ac11157e0c8e1eb260d8a762ec07e2f2525b65e48cb54c904a5", + "regex": "." + }, + { + "hash": "c046308cfc6a83bec3dd5a41d8e3572e94089f1a87934577b8160387b4e82d5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cb5f1\\?ts\\=1$" + }, + { + "hash": "a5f5f37b63a0c4aabb2c3c8cb4f92f9fd606d2b4515042c2fc0606c77f09e5f4", + "regex": "(?i)^https?\\:\\/\\/blank\\-site\\-mk3zb9jon2hbrg16\\.builder\\-preview\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "cec1fe48d4d6e9237407cea7f19ab0f37112673ffe3471d6c2901d386231892d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?fb\\=420985180572166\\&utm_source\\=crcr53\\&utm_campaign\\=2260368894118375$" + }, + { + "hash": "b32388965f47fbc5c4a2d61e2b0aeb9cccdb782948f83c4cafc9046229e7b364", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+serv1[\\/\\\\]+t13213[\\/\\\\]+acesso[\\/\\\\]+pagamento\\-titulos\\.php(?:\\?|$)" + }, + { + "hash": "68c1717fb68a9f1cdea6bda7fe969b7b92fd682d97bbaf9e37726f0316301fa5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "80587802fbf846488cdd3850f131528790687b54b7f1ebfd8f7e081ebd093dfb", + "regex": "." + }, + { + "hash": "9fc068cc4ad994a957a7fc2983935c8cb42c02f8db9bdc8a0b5c7a817793aaf9", + "regex": "(?i)^https?\\:\\/\\/dghjrtfuj\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "dca88b29635967678019d877fdbb2b8dbc9923a1534ea13267d69ee30d64ddfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c046308cfc6a83bec3dd5a41d8e3572e94089f1a87934577b8160387b4e82d5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cb5f1(?:\\?|$)" + }, + { + "hash": "228e4494cce40c7981e7298da65059cde96b960b054411834a6256a88d908837", + "regex": "(?i)^https?\\:\\/\\/vid4redgroup\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "b135cc319ae9468c787e9ac99f3fdcd9d9bf824d2952e671e4e231d446f5fb4f", + "regex": "." + }, + { + "hash": "02a4f49b706c44a212d13aba1c3fec71311723ea0d1f02ce02c174bb55e07c1c", + "regex": "(?i)^https?\\:\\/\\/kialimona\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ec0a370ff51fce3ff6e19b66cdc78c1341c2574592b595a3e34c1e14007f6f3d", + "regex": "." + }, + { + "hash": "6e0c52497e0cd861094e157b06b3c13df7e44393857dd19d0065f69eebc0dda5", + "regex": "." + }, + { + "hash": "32b572dfd4a16d569d81a86699682b874738a79add75c0b5983c0ad8799dfa07", + "regex": "(?i)^https?\\:\\/\\/www\\.applink3\\.secure\\.account\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "d0ef66ba8018e10e42700564824e876eaaabd9e39926deca283b4572efcddb61", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroups\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "2456a9b70510301803bc90f80bfad940c1e358d5e09f0de81d9e0263d0d3416f", + "regex": "." + }, + { + "hash": "66d598506a8f5724c5c9feaed98070ad83fdc6186b0d0b286a8b4e7059a58604", + "regex": "." + }, + { + "hash": "e2a9651ab9def2d415873fa4e0645fd5040cbbcccb3d49cb0859cc0f93da8a25", + "regex": "(?i)^https?\\:\\/\\/hamakjalaioa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "5d255322a2d7b61ea18af09c0dadd2b083fddf6d0621c361c0100a462102f7ee", + "regex": "." + }, + { + "hash": "4a66208e506e94bc5a6c1532ee4810cc7175f8eb392894799e64844cf164e56a", + "regex": "." + }, + { + "hash": "fd848984bf7f62b2d5f7035a0fe7cd1cb2e6baa65eb18515d32796cc9b9d59a4", + "regex": "." + }, + { + "hash": "e6e19a089ae60e8c2b114e22de2d78d861eaaf862bd11e7216ee25653c70be3c", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.it(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "7914ca0bd8761f8aebbbbe113ec559286b24cf68ad1214f2b9eeac2c69ae26d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\$\\$108(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "78549c065f40bf6ba1673be5103570a3a9f6b7cbf3bcd82d2d5ea823b564b0c6", + "regex": "(?i)^https?\\:\\/\\/supportconnect\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "566ab9998d29757df49c1524ca225723a92cd312c796613d964cd7e6253e14a4", + "regex": "(?i)^https?\\:\\/\\/hotvideohdsparks\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1f92bd5fa167de5bafc13f5c66785745e40f818c6e87d7b58fdcf681c05317b4", + "regex": "." + }, + { + "hash": "4eecad21e50505744f33b85ffde6c7e17c0ef48b44cc56e64619b269024007d7", + "regex": "(?i)^https?\\:\\/\\/vid\\-redgroup\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "965f677648fb1aa2c691557c5209a68b383c78bbada527c016e8e03f8a936cd9", + "regex": "." + }, + { + "hash": "3c5845edbaf5a0a70ef2d6114687e5e6ae9071f69a7f4056e520f00e6b0dae3a", + "regex": "." + }, + { + "hash": "859ed62b77fecf40558a8b08ec9141be66905a76c2c06f70af7af97fcb1d270d", + "regex": "(?i)^https?\\:\\/\\/kelyonix\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "00580384688e1f50985c38d5cd456c777f9ec801b08f1c5c3294c25f8aa85c66", + "regex": "." + }, + { + "hash": "7914ca0bd8761f8aebbbbe113ec559286b24cf68ad1214f2b9eeac2c69ae26d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\%24\\%24108(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b32388965f47fbc5c4a2d61e2b0aeb9cccdb782948f83c4cafc9046229e7b364", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+serv1[\\/\\\\]+t13213[\\/\\\\]+acesso[\\/\\\\]+enviar\\.php(?:\\?|$)" + }, + { + "hash": "0a6ac7d0505c263969472d0d39bd494c8a925aa145b01abacb58e237af26aa2c", + "regex": "(?i)^https?\\:\\/\\/hamlinajsaa\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a67c7c63943acb946d55474b970c981952f392bebd80b454afa253402ee0e974", + "regex": "." + }, + { + "hash": "12d6f630400d4878e0c516e4b8f24236835b1066f7c497ffe224dab7e7db81db", + "regex": "." + }, + { + "hash": "8aff8ff859a3a688dcd9146642358656857ab9dafaf919c0d927ea7c77bfc122", + "regex": "." + }, + { + "hash": "e7abe8eaf23fd9278c961b656d2741357d8475b176972133fed980a4530c31eb", + "regex": "(?i)^https?\\:\\/\\/supportconnect\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "a1a3f9087f425dd8e1ab46e42f4da25141788157d3efab1d9801dea6facbe531", + "regex": "." + }, + { + "hash": "b4fd676271b77b25efc3d07ed8ec0f49ea0cdf317ca685282b1ad370e49dbb32", + "regex": "(?i)^https?\\:\\/\\/hotvideohdbuzz\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5c10d1ef25f2cf0458e4e446929a702f764a988132273fa4fb3165c0a53a784b", + "regex": "(?i)^https?\\:\\/\\/jjonlines6\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "70c3e6904651e5b675ee279302f0f206416fdf0d7efe30f9c9c98ff6554832fd", + "regex": "(?i)^https?\\:\\/\\/p\\.updateinfotuqyuoc\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "216e25b57199d72873040c4a289a60098036eb01291369309563121d06582ead", + "regex": "." + }, + { + "hash": "e9237965670636a1c3ff66638c6a23b25a76056123d01c7ea09741563405b374", + "regex": "(?i)^https?\\:\\/\\/reviewsbysoleil\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "b9aed1ea12d7cf8a37e8c860b6b3a156341786213c8c533b1a80e16921456143", + "regex": "(?i)^https?\\:\\/\\/kialimona\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "cfb9a6857c3464091776318328b15c296824bea1d79e7fc72b813f104ef01f90", + "regex": "." + }, + { + "hash": "6f6735e11c1818ff927babe914d645a4dbffe98c3c4c836ca0075a95d9086d99", + "regex": "(?i)^https?\\:\\/\\/robloxtampermonkeyhackaimbot\\.blogspot\\.lu(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "f89d207bc9383fc7b18d903cb08351243fa1d4cd6486db73501c9514f0fa7d5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+x[\\/\\\\]+Aq4Vyigy(?:\\?|$)" + }, + { + "hash": "0f73b29d6e8115e93ed189bce5076b003fb706bd65066db1471a1eb61e84397b", + "regex": "(?i)^https?\\:\\/\\/gatmlional\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "9836744e62a693f2c54d0d02c8c94ff379d01ac64911951b051dbb47d558a711", + "regex": "." + }, + { + "hash": "ad2dbe672e24570790ab3c68181f4e02513bbdfff6cf4c35a2be6e142266f5a6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "76cc16c7026f10c1715b50c0dfac612099b102a6c5ceab4451793e0d34b009cb", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c7372e96a4674982e9e4913e98ca305c6245c0d1a0a9a1a553b43a775b2ef02f", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8fef44f9ff6337de614c579494040690ba3f53bfeb4d5405596e394de97f0645", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "84b673d3ffd7e8db9dcca9b0974f1544d405d317e18e6bfb3969dd349558fb20", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "d8256125ad7cb6aca215beff8beaf39f749322689f2eda1421f97f1d76ff7225", + "regex": "(?i)^https?\\:\\/\\/wicenr\\.com(?:\\:(?:80|443))?[\\/\\\\]+usaa" + }, + { + "hash": "2297e2e602423bae8e981ed9ebb800ba2af81f598cd1be62d839d521ba3680b3", + "regex": "." + }, + { + "hash": "b95a1ef07a304fc45d8b5019560334c46b93a11dc12d73b213a5e7c670b48473", + "regex": "." + }, + { + "hash": "7ce340d625b58b3f1d58d7c12cb820524240b27a342918cf9b8398799dad8bf5", + "regex": "." + }, + { + "hash": "c1e9e42d152e5f5cb7ff2cdfe596c60368c6f946bcc2c605765cdab62af86d94", + "regex": "(?i)^https?\\:\\/\\/newpage\\-109473\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "c918c348b7d863228a40210448ff4a2292f090e12273648265e181f5a31f1068", + "regex": "(?i)^https?\\:\\/\\/675d0d7aefc0ae814ce8da27\\-\\-super\\-pithivier\\-4b11a0\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "b08f84fbea019411753942c633dc0e55983fb4c77cb15b3cc1a10d9b5eaa85a0", + "regex": "." + }, + { + "hash": "a666b0894c5199a76b243ff83c3cbdea3f161fd2ff22540816d482b3301526dc", + "regex": "." + }, + { + "hash": "e8793b183bb6daeee2f33167fdac929d4c36b2a1a5976a62a393575e5165330e", + "regex": "(?i)^https?\\:\\/\\/jastrove\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b5eed9af4018f7c2638ecd6464782fe80316bc9333459bfe79af632cccdc36a5", + "regex": "." + }, + { + "hash": "c7d2a81a15130dc4a16688bf90a9716838f1e299b4eae345880723500ece9f70", + "regex": "." + }, + { + "hash": "5bd5f19f7c0f62cafd0ecfe1a1e27b0d9f23b1cdf1cadf2944d33fe54f1603d4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+secured[\\/\\\\]+sign" + }, + { + "hash": "80133c5a9e1097b7e9daef07ddc4a19f30fce9738175d9e0d81725b93807e8d6", + "regex": "." + }, + { + "hash": "d4d9cc73433b9aff7708f968534283ef5ce974043a81fad4770ba75d1298e2c8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "113bf82ddf1412569efd461934d8b7e4af7b4a55521e1629ecb02cbec3765a8e", + "regex": "(?i)^https?\\:\\/\\/nicefb\\-12\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "5921d4679351ab651dc11bf0935f2276d15cbc8607c7170b146468bf81f9cda8", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "1202858c802515f89d23e89e8fdde0bf8844147f59d081d865706b14e8c5e356", + "regex": "." + }, + { + "hash": "92230855f9fd289c4028ca7c0329f695d2b89f9eb019b579d34b196ac08bd96a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=cebopuooc\\.co\\.jp" + }, + { + "hash": "1b45be68369142975b9c0094406c692d3797f5404f397cbe54a0f5b448b70986", + "regex": "." + }, + { + "hash": "01b9905fb50f2247b147c9a28d02ce80ca16e730d186a9bed3af42438773b4e1", + "regex": "." + }, + { + "hash": "7852a92d47c3dd443716bc09fe83dcd8bb922d773c4a2e63b766de26487ee4a4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+service\\-infos\\-fr" + }, + { + "hash": "2b4609a95abb213df246479c2916afce3f5f453fc0d0f1761e12fda5e89fdbf8", + "regex": "(?i)^https?\\:\\/\\/fdffgfxcv\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "39fdd2f339e254aa36cee1510d1c0a2ad5b02ff700497ca8a7bbb5c00bd53150", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+centre" + }, + { + "hash": "93b2bd4e19662b2b92696e0a486303e244dd4ce062dc63b74fbb6aa109ae779f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cf1528454858c300aa38cf327847450594d6bb0376e18daa0c010bd47d3667e0", + "regex": "." + }, + { + "hash": "fe9182818748220e1c6f19524dde5e47f9794d8709ed9bb699afd917b427f2d0", + "regex": "(?i)^https?\\:\\/\\/pub\\-2dc858e82c0743edae85160bc3b6d8ba\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1c34b7ba4bf1540c24e2ae8b4971d870f6c81922aad5148cbcc2b9888b5ec5e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2915c764856dbbc13e9b37afa8059ff6764b379a7fb11c5c7f042f2e92182d84", + "regex": "." + }, + { + "hash": "18c978aa21c8e82daa0e45bdb3aaf871b9b09bf984ec23c24823897811b4f164", + "regex": "." + }, + { + "hash": "41fcf2489b215def897f31c4a9764e3ff6efc3fa49c65df754f86d5de16416fc", + "regex": "(?i)^https?\\:\\/\\/nicefb\\-12\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7af630db1f86d88d2e4512c22f3f423c8f79cdd3698f15252955c6f05b9f3a11", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "eedb7a2a4e076ebc93a78474c518957a72927c2d9a2b8da976c3c604c94d802b", + "regex": "." + }, + { + "hash": "8ab2f2a8cf177f5109cae0a0931257f21357d87d2d89ff849cb2cf06bc44aed3", + "regex": "." + }, + { + "hash": "f306220c808a92a88ea016b369c411028ee301eaac54cbf4db42771a4bc03508", + "regex": "." + }, + { + "hash": "eed8240c83351966a41c75d1ef821122373f2199e4f2e8a43746989f12fd9a5e", + "regex": "." + }, + { + "hash": "402ba2a0dd1e67ebc5a008e2db9d3f1d51333ba00f78fab80da019ed2b8a2ddd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+atomic[\\/\\\\]+import\\.php(?:\\?|$)" + }, + { + "hash": "835c2481184b8b71eb63b6fa1885b06b60b0088146da8238a8727a2267cd6773", + "regex": "." + }, + { + "hash": "932c1b6d004cc5fd76d793845ea587a4ee9d5708fcc96fb77e4df4bb21cb763c", + "regex": "." + }, + { + "hash": "11f5c48840d84e49a33c02a07f89a9b8fce67cbc494bbd8c8048370f8aae3173", + "regex": "(?i)^https?\\:\\/\\/deliciousfirstclasscookingcontest\\-sc\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "dedcaef327820982fbeda296bfff9023c91f32356c66f4c77a8af278046fe622", + "regex": "." + }, + { + "hash": "45f612d36ed88eafefcade37d5cafecb6807b267c9c2b140b05f22da2a2aa006", + "regex": "." + }, + { + "hash": "21a73fab5408af8d216ee41e38a33730726caa4815f0ef7dd5a3a1cf999dd420", + "regex": "." + }, + { + "hash": "eceb75f412b6e39dd1d075a7da6927d587188927a795b533b60c5a891ef6baed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "178d22ed5e6dfb31e32accb28f118a9e02656e1bf724bffbf75bd061f2dbda09", + "regex": "(?i)^https?\\:\\/\\/admiring\\-noether\\-0dccda\\.netlify\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "c046308cfc6a83bec3dd5a41d8e3572e94089f1a87934577b8160387b4e82d5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+46f40(?:\\?|$)" + }, + { + "hash": "92877df832a0991fd03af00b8f8c103a1e1881146b6c22b6987f0c1e308bf915", + "regex": "." + }, + { + "hash": "7df4eb88067c30e41a5a1dc3044dde1ce9855c38a72be65dd9645c9ef6b2a80f", + "regex": "." + }, + { + "hash": "18f2bcad85135de1e7c1c5fa59788a50322a823330eb452c56bde02b23aa5e8e", + "regex": "." + }, + { + "hash": "6cad40f8f25a14495d43bf2308e30be7d6e4d560e7f4d1e40cdb2a409866b7c5", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "441285c4520842ad359f66eaf6d26864b86c80d36cb53bfa60ca89ffd8b6f7d5", + "regex": "." + }, + { + "hash": "18f2bcad85135de1e7c1c5fa59788a50322a823330eb452c56bde02b23aa5e8e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+validation\\.html(?:\\?|$)" + }, + { + "hash": "5ff38352d3b1274a78842912b2f6f51f4fd30e13fb5adc75230ee39cd3b0c046", + "regex": "." + }, + { + "hash": "5706e52904da974276113549318c305b788dc7bdb31d6ac77ba45672da4e6281", + "regex": "(?i)^https?\\:\\/\\/hjyef\\.launsdgeibensh\\.top(?:\\:(?:80|443))?[\\/\\\\]+fir(?:\\?|$)" + }, + { + "hash": "52b090de416927863787584deab02f442237142992aaacaea8dd4597ebecda14", + "regex": "." + }, + { + "hash": "ebb22654c7affdc463c86e59b32fc0261cd82bc168e63af3018bbfef6e3effff", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "f3900601410892acc607a76840d56f7eea62f784798c8252e17bf6d3a5d6962c", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "c918c9868d2f53e6d5dca4f4ecf8b9b5d48e1b967eb4eabe1cc0e2d5231c6279", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "8378b3043cff95e9455189efc1565059604bd0ef125c8a9d9bd2b89bbdac12a1", + "regex": "." + }, + { + "hash": "d36b388136d8ae6f0e8324aeede701a64dd583dccd5ae0e3edaa3fb354f0db5a", + "regex": "." + }, + { + "hash": "80ef0d6809a3b3a9da357f273b3185249c8d4765f05fb53711bf6f9151f1e68d", + "regex": "(?i)^https?\\:\\/\\/fdffgfxcv\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "6c38423e6a777a549a0645734c257efcc9aca5c10aec18f837e9591d62067df8", + "regex": "(?i)^https?\\:\\/\\/fdffgfxcv\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "8ae8b0579046e7ccb1bd3fda7dd5ed492d4b9383a95bf852ef433b428604cc44", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "858adc13610f80e9bd74902a56fbc231d878312b01735ea2ee6d6c033b856fe5", + "regex": "." + }, + { + "hash": "0e5c5f33e2e0b016113cd25044c38358a549fc57de647bdd7c344b0790054901", + "regex": "." + }, + { + "hash": "eaeae5f50bb663e20b2076fb6bf12e446b83c338944377d2f1828b5ed28fd0b6", + "regex": "(?i)^https?\\:\\/\\/www\\.cbwalletreceived\\.50\\-6\\-201\\-52\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8288f9240e73390b2b7078d8619588aef8943108a10396a3adc5dd5b0a742cef", + "regex": "." + }, + { + "hash": "975c133e888491f7eea409c865b166441da988e95dd899794a96407655fc8fbd", + "regex": "(?i)^https?\\:\\/\\/deliciousfirstclasscookingcontest\\-sc\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "9794d7768dc868c0dc7ed23651b04aff44ba5fe8cc743a4b52f939a7c7ee0d69", + "regex": "(?i)^https?\\:\\/\\/nicefb\\-12\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "89a754cde02e0d3b17221d22e11c475987e1a9ee458d59dd5f548ecb7f11655d", + "regex": "." + }, + { + "hash": "10d6c1b60382109c4f39187f09b1be022c827897f2278db90e5c5fb23abc73f6", + "regex": "." + }, + { + "hash": "df2c6f2462fa6377dadb43589036a5e0333a0212611bc6db0984bba01441bc2a", + "regex": "(?i)^https?\\:\\/\\/dapp\\-connect\\-rewards\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "29ca0410b05268fafc9113b4cd9587ee44e8808587dcdc4051af0b3149258ccd", + "regex": "." + }, + { + "hash": "c44da7ff4c604d6b3a77fffe720d84e22d450835d8feb43e264f371f23e5dd35", + "regex": "." + }, + { + "hash": "4ddb0c160ff7d55cb591c07ff78bf7a72b62b690f39a5a01a4159a97f3ea1397", + "regex": "." + }, + { + "hash": "424d7ba322181c1e6ff7a6045aa0cccff0be0b003e4ef53721ce88e6eea625b5", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "b5245d76fcdae745234213af8724e230a845d5e33021ee31d44620f62e8102f5", + "regex": "(?i)^https?\\:\\/\\/continue\\-signinapp\\.amazonprime\\.50\\-6\\-173\\-157\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "5e559b427eef8ffd71208ac089828a28ce513ab51b17748c73b30b875234fcc3", + "regex": "(?i)^https?\\:\\/\\/bafybeicoczo7rcf6wjuk2bncxl5htxao7jebv5ckqtna46omnxgnzlrxre\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "f6114241b20b4087822e29dbd834044015c1db8f1d26c8cc6b00822a8dea8dee", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "84ab061d671e0a94945198ae2748eeda4abd95578d050b2ad537ac2f630889f3", + "regex": "." + }, + { + "hash": "0d3f4862ab3eeb13ab7c1f8303769504bcc55244787fb76547e71370232c56dc", + "regex": "." + }, + { + "hash": "25270e50ce4337077b028ff880a416b81bd78e6615109a6b87d258924fb67097", + "regex": "." + }, + { + "hash": "d7d0b7b9cc012b6d233a2da6a269a74c83b0897e5d72ef31423d68398f641b0f", + "regex": "." + }, + { + "hash": "3bb8347b70b69807b45456889280e0ada7819d92eb762ef004fe4cf9d46fa814", + "regex": "." + }, + { + "hash": "6e31c6aef0caf5afc4e8ccafae2a6308ec8b15df82c71ebfe6d1594612bbeff9", + "regex": "." + }, + { + "hash": "ab7306eb40f42430e6ebb6c27ff0bdd720505a3f9035831214afb1e017f192fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8365[\\/\\\\]*\\?register\\=1\\&agent\\=4374577496$" + }, + { + "hash": "f0252d0aa572f025c3f8d86238e0acc85e3be8a5b0371955760a2ffeb397119f", + "regex": "(?i)^https?\\:\\/\\/nicefb\\-12\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "f87c3dfeafc41052e3098898f971fb85e4f3909356f14c9b7329af2b0dcf0afc", + "regex": "." + }, + { + "hash": "499519214a555325d6373e74d59d41c03ec175dd5504a1c6b94641389ec42bab", + "regex": "(?i)^https?\\:\\/\\/pub\\-e924fe82df3740d4ace2d3c27cfc411c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2c80c6501300794071a277b73ccd97621bab9285b3c90af49dff1d4bc3a581a4", + "regex": "(?i)^https?\\:\\/\\/nicefb\\-12\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "baabb05396faf194e17c709a15e398d487c94e429640be4788fa9f0206d8fdfe", + "regex": "." + }, + { + "hash": "c046308cfc6a83bec3dd5a41d8e3572e94089f1a87934577b8160387b4e82d5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+46f40\\?ts\\=1$" + }, + { + "hash": "edd18ad590e06142c1df37b9ea25e83bec25028135182ecca93780fdca8e17ae", + "regex": "." + }, + { + "hash": "7d47dda9f1862ce289bf53d10f1e07e9cedc88c1c0376fedf234b1da06b54f0d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u00NOZOwI5HLXVEO8UAtJ[\\/\\\\]+bdfaQFtBA0RKWnteV01iN0AwEUABIFxTQwcoBHwRO0ExARUOeHxlXQ(?:\\?|$)" + }, + { + "hash": "932b5559715812fbbdd43f76ec6b67608bbf9a127c02f28d8f335734f3c3b803", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ld\\.html(?:\\?|$)" + }, + { + "hash": "32c4302c195a99b1cff928fde203a1bc8ce6a24f4bf19c499d690ba1207d9910", + "regex": "." + }, + { + "hash": "d4d861331c9f5654698b80da9ff46c6baa07ceeea0f18ae0cda9fab8c6caca32", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "775b40e6537691fb2e0ce57101b0659a200af21fed358352154789844546fadc", + "regex": "." + }, + { + "hash": "8bc7082ee306917ba886de12cb1643d496899f9aef722aca57ee7307c70f9f7b", + "regex": "." + }, + { + "hash": "ff055d00b1f164cbc00d42d73ad8ff12b70375bdf2acaffa08be75f2f197d22b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=sgvedk\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "406b769134a7c62e0858296a564c3b913291177ad9589dd79fc25a4a54973a49", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e2d42cee1f4082a1e81c8fa353a9d5ca448638a8fe9b12a250bd34bd666578d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+461171749831884964751041GB9OTCH4NO81Q3\\?ovyplkrbfvmuqoovfbvgwqcc39079062356430TWKS6R8V4K51ME1CL0WKP$" + }, + { + "hash": "db6658784c1cd2f1abebed8ba57af39ea06aa7f9d645eb3170e1a9032cf6af3b", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=cl\\-f5\\&r\\=4sxbqhcuny$" + }, + { + "hash": "749a3a83ad1923ac2a459c2a37971187921bb61daa6ee146fdfe9ebc7b4032c2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d0cc43e7cfba168a2bddc8985d8e128fd7b5b3575968a75c5ea03e8bf9a99832", + "regex": "." + }, + { + "hash": "e1a1aa7fd07d2b08e98ffe9ed5736157d16247e3a0f1889b0f6ce3c10903b8b3", + "regex": "." + }, + { + "hash": "dcfb5dca244c68defaa12e7988420f675dae5c268f1d3abd98ea841540eca12f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=lzruyezyk\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "fdee8c601b6b43a32d7668b7f2390dcd0f19d57c70dbe5f5442aa715ad877819", + "regex": "(?i)^https?\\:\\/\\/yellowcup445\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "869496cf0426795dd29b6f6c8a31db039cd4afd318a92ca8177991a03845c613", + "regex": "." + }, + { + "hash": "8ebd6813a04b1260765773afecb7dd4494783e181bcc8f4194812a964cd232a6", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "66160419eedc798468d43f65d5702ebb5029809f2e2505fe471c697aff3fa9b6", + "regex": "." + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?d39fa051\\-02e3\\-4179\\-9c61\\-57fdba7d8fb5\\=\\&email\\=crose6110\\%40yahoo\\.com$" + }, + { + "hash": "63b4519821f485589285b5b4160bfbf71cecd9af868ce3823b05079afbf54739", + "regex": "." + }, + { + "hash": "49692f241dfd987435d1c5d468aa0e4bdb83d5ff3dd02b4525b44ca006255ce0", + "regex": "." + }, + { + "hash": "3d33d98ae4834ad69fb95a37068cf502ac8acf4d993360a36ded162b4ba83467", + "regex": "(?i)^https?\\:\\/\\/sbcglobal2020\\-105116\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8146af889dd3ad28613fc9c8bcc6d963b5ea7126a0449cf6b074f4c12ad50d75", + "regex": "." + }, + { + "hash": "75074668afc75ded9a12b2fa1d5cffe98e6e801488fc2ddf082172c0b03ae21e", + "regex": "." + }, + { + "hash": "14107fc3508329ff693b1cb4b0d4a099720cb293431682eb15ae105c3097ad88", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+c(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "19733321d43eb9144b8935aff85b91502af1b933e5aae73482d2786d51c557f5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c33bce4693e573652a3ba3ef4b58008359b6d5d7447f69038758b5b5eeb72196", + "regex": "." + }, + { + "hash": "6f7c346477bc1dd98a99c124ad3a8ac123be71caf130bd2e25f24cb701cc72b6", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a61962c4a5c963537c0c21fa60243c0e536cbc93dd4bd7b567153f2bfc405a51", + "regex": "." + }, + { + "hash": "31c456e99cdb5c7b9d551b09c157ab1c06a7299dab5a9fe4ef8223dbb1686946", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "0feead2e64f5ed324eb091a9343e64b5881ce6689baa1d56ef7dcd05089bf8c8", + "regex": "." + }, + { + "hash": "5bf30baeae51aae0af4d7256216e00b541957f439b4c10436c5155ae89fe9328", + "regex": "." + }, + { + "hash": "86906dab6bae80125634409352922218b8f83d5a97fd551a75ebb4c376d1ac98", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?exrtartion\\.com(?:\\:(?:80|443))?[\\/\\\\]+[a-z]{4}" + }, + { + "hash": "1df50564583d3946ba8152bd1dedff37105105922f7c074b030d5e12f3e7ab0d", + "regex": "(?i)^https?\\:\\/\\/deliciousfirstclasscookingcontest\\-sc\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "f7204a6c2c97f12ab81f5d404ecd4ad443f8a7f3f3109ff170197aa97a458e8e", + "regex": "." + }, + { + "hash": "a76839390e444e3ef835e489aab854374299d0c9aaf796373b04e065724f0be3", + "regex": "." + }, + { + "hash": "a6147bdf569a3dbc6cb4e776121880eb4beba290470324b9adea9f098ac88f31", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "9dfe1b5d177282dad59b207ce393d73fe80a3971398efca393327e194783c007", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u[\\/\\\\]+Pfd9yrky(?:\\?|$)" + }, + { + "hash": "d6ebed87778ae0f3880b67ba5290225bb70947a6f401ec8733c613044bdba68f", + "regex": "." + }, + { + "hash": "0aa99ccb44e460696a556919a4767f7bbd0a4b1ce39d931cc73a051dddad028c", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "3cb9775401228ad04f90bff88e1dfae212d7697c9cc10a7fe694254338bcec60", + "regex": "." + }, + { + "hash": "d35f4e395b45f89a786a5c9013d1f03e6116b1a4ad5c78139a46ecc791e1cf9b", + "regex": "." + }, + { + "hash": "86906dab6bae80125634409352922218b8f83d5a97fd551a75ebb4c376d1ac98", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+File(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "be0d35965ff8e5b4e84be3371f375be0ee2f002c00fae2ce97fdca112093ecad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "b16467f055b40ba68a9daa0e6944bd54d7102cbd4d3a7c996a557c7507e480ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ctml(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "098dc809d2c8092451675ee0307792ef3632534cd6d15c5d8be2339cdec78b63", + "regex": "." + }, + { + "hash": "218c337bc85fc019a552718047487b0b047844b1a7e867f2e57c07cf5aa45a14", + "regex": "." + }, + { + "hash": "2286d608a044d3ba6b1a5fe8b74c74d66fdcd6d27071da0cb6fa83d6f505b52c", + "regex": "." + }, + { + "hash": "9e40b515c1bfd7abc5bf6e583f37b04154901b5977678cdd848b6d524e53bbc0", + "regex": "(?i)^https?\\:\\/\\/bafybeiftu54nkiuewc5fbilz55m3r7i5ttwugsqq5vkhwwc77auxleevb4\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "218cfc4fb16ad0d8c6f834c7a31dfbe76aed3ac20cd8de26d79f4f497e7c733a", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "245209ce4085b0384257fd9c58db39e66ddcc50af091b8cabcb81ffbc197181f", + "regex": "." + }, + { + "hash": "ea5025b5422998dcc772bf32592a7248c7e5fa16fee0efa57e694bdfd5fc86fe", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "0ffe3c3bb98c86c186b329e2dc89b1a66336e6ae353bbd544d2863974dbc4a59", + "regex": "." + }, + { + "hash": "bd335b123151bbc0a8e0fbf29c1c9a19c3cdb95b525b8eba63fca8ac5032648c", + "regex": "." + }, + { + "hash": "7f6c387ad16be3b70f7bee51b1795a6b173fec2af466b79842909709849202d8", + "regex": "." + }, + { + "hash": "160fa65777a6241eec4819df8d1982fb98ee42b458bf4e3b83a9999c6935d848", + "regex": "." + }, + { + "hash": "451ea5ee4a2a3143a070268576f455043447fa93897a511bd5fa9f1de144beea", + "regex": "." + }, + { + "hash": "bec911ad8b6987377e6a51c84a583ae25aad707eb9eb9fa1ec1e9c7d085a0205", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "6e5ec01429b64cfa3535d385067c7b574c88e25e9a496ab0b57971bb70fc140c", + "regex": "." + }, + { + "hash": "c0e027c9de86ee5f363b7d8e2293e3dc0f835b35876ebae42af68e95e1175ce1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=qidxpnugg\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "d643c8c01d2e9bfb1c811ccf8d4eec185ab97881a5b0e7fd6010562cdb74bded", + "regex": "." + }, + { + "hash": "2597248e2f7a9129649b8487e24452204d8daa821c5ec327c81f8b66e9377766", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+perserv\\?login\\=k\\*\\*\\.b\\*\\*\\*\\*\\*\\@x\\*\\*\\*\\*\\*\\*\\*\\*\\*\\.com\\&page\\=_dhl\\&pcnt\\=3$" + }, + { + "hash": "cb273f16106022dfcc0925862db4046af8153a30ca52d81ce42f6316d6a5fb7c", + "regex": "." + }, + { + "hash": "f043a5add417fe48d4b083ca4d75b0c47b0d7ca811b75cbe71cf9ff576d43105", + "regex": "." + }, + { + "hash": "d464b502ea2efb0b44723db7eb0980b11d3abe0240a6a456ed72e5cb7666e885", + "regex": "." + }, + { + "hash": "82decf6da2bbea3dc4fe8bf19a3872276b16fba74f5d2fd21c8b4a37625d3542", + "regex": "." + }, + { + "hash": "8728cc38c06448a1c918034032b220bfacf19529070ad3bfcb37a31ecc19031a", + "regex": "(?i)^https?\\:\\/\\/batalkan\\-blokir2024\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "b4fd23c5ae8ff569ceb8b794b8c8cb7f2e535901dd5c7f1776aeea2e0a0a85f6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e89d8a146e8fa2680bcbebd571804db080a5e5fc8f943910f851ba7fe45970b", + "regex": "(?i)^https?\\:\\/\\/jfksfjowoef\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "365fda25345149a484d95cf2389f7cbcb2e0320b4967671c88d85ec6db7c96e9", + "regex": "." + }, + { + "hash": "9a0b74dfa8ab60cd83fac4b74bff7e3a74a6b47ae613fad42a423e584af02249", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=bybwiz\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "67e10df222b191e13641b5dd3fe126dc337f65784e0463e6093f7d1517d236f6", + "regex": "." + }, + { + "hash": "3993ec95866f257b09d6e4b71fa0eb09b1b0731d369ebe0a9ab2ab7a0bdf3f7f", + "regex": "." + }, + { + "hash": "f9d8e8e4ffc6a3b70a02c266e185003631558f026d507cd16e0ad9adc99d5096", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=hktjnvnck\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "6a92c8f9052eaf34fc595a27fc7f9d1bec0627d94771f462bfc7a5a241fc8f3f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Nett[\\/\\\\]+auth" + }, + { + "hash": "f21cd1c7df206d0245a31bd421fc554ecba4b54684e7210f1493ba14c712948d", + "regex": "." + }, + { + "hash": "36721a3558940bf01a1ffb6fb75261fe082dd1cd71eec5b4be94b0c0354c1fdc", + "regex": "." + }, + { + "hash": "0c32c211b53cbd85e17c4695465c24fa977d080716ca6d3a7b6a922ee85cf9ac", + "regex": "(?i)^https?\\:\\/\\/deliciousfirstclasscookingcontest\\-sc\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "163e37d398105ae52a73211b7c49a6b44134bd83869d52c08405d2c9e126b9d1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "e1c7a683b95dd55738157da6dfc685bdceb1985e790663426bc8b9e0dea571dd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1804a33518863022d261c085f42ac9cc2444175d3d3c7dc19ae806bd5e7bfacb", + "regex": "." + }, + { + "hash": "1104521eb32385b26d8cbcd7df271de7581378369ed5ea5e3e0d54607e3470ab", + "regex": "." + }, + { + "hash": "8728971f4dd17b29ae68a1ca4b2f68da352c34395d22b325473ed5c3dd56e3fa", + "regex": "(?i)^https?\\:\\/\\/nicefb\\-12\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "f841fe4e35f380f687f748c04196b882e5127402c8098e46133df870854b8ac4", + "regex": "." + }, + { + "hash": "5e71ef7574f5c2d7d035ee7ad02fc489564bd9d42258e7ad4dd72b280e570a2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ec(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7f9b0043f71da4d5d77f1f84c03ed2d546cf8dcccadcf7bd57d373867d2b2774", + "regex": "(?i)^https?\\:\\/\\/nicefb\\-12\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "c73af57ca9a1b3e0cdaa7d3d8a20f2b78b3bc6bc47c9e2c3102c53f842ab203b", + "regex": "." + }, + { + "hash": "57989be315ce01cc01df93e1c62c7ca03156168e9b94c98c995fb344fcbb88e7", + "regex": "." + }, + { + "hash": "6e0cae75c69e9d8a699876f88d30e99f1a73d4a557ac1ad63358946d4607b6c6", + "regex": "(?i)^https?\\:\\/\\/fdffgfxcv\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "648c15dca253fbd8c0f2e62f6c44ab2646dd449c6d25972a150d9b32da29fe67", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "fbfdda74f01b9774318f6b9b0cc9f5c001b1f27f6be39c8caf60ed21e776eb9d", + "regex": "." + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=cl\\-f5\\&r\\=2pfq7tttjb$" + }, + { + "hash": "a9bf0ca256f8d6e9baddb9daea7bd9c12a58ffd5a91f5774986d087210479089", + "regex": "." + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=cl\\-f5\\&r\\=8kv7d2s7er$" + }, + { + "hash": "4a7d25148584ff5527628a85e0c3a1f26118baa9dfd27f941d599017590bcf58", + "regex": "(?i)^https?\\:\\/\\/mail\\.secure\\-amaznon\\-prime\\.159\\-203\\-171\\-64\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "af511c6ebb15f63cfbe9908db3a2fc44484ed69b80a901c2fa419162f1b014ea", + "regex": "." + }, + { + "hash": "2f8f94396dae0704c735b0be7a75f5a31f7a948eca42dd72ac9fa8437e850cc1", + "regex": "." + }, + { + "hash": "3f5578841765c109fc726db0c9221c0adc18f72374160b7e29074d6324f394bf", + "regex": "(?i)^https?\\:\\/\\/mobilecasinoplay\\-30205\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "1387a062eab7ccc728c9d84e3e204b8a2ed11881ce1614da54b482105decdb2f", + "regex": "(?i)^https?\\:\\/\\/deliciousfirstclasscookingcontest\\-sc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6dec7131bdf121a582c34785c5381b00ebad2fe9def5e99a3b86608f8ba515bb", + "regex": "." + }, + { + "hash": "6a92c8f9052eaf34fc595a27fc7f9d1bec0627d94771f462bfc7a5a241fc8f3f", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.24\\-144\\-93\\-146\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fb8f04bcc22decf83b930bb1ebfcd3a1f9cf409c1613994dbc750d5176866b90", + "regex": "." + }, + { + "hash": "b529e0bf402efaeee2d0a13871c860025d065d4330fac206f8bf4ce7f1770f6e", + "regex": "." + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=cl\\-f5\\&r\\=1c0vatr1kq$" + }, + { + "hash": "a4430df9b530d5212efe769a6753b2810e137db4f374e81bf8a265480a3abfaf", + "regex": "(?i)^https?\\:\\/\\/www\\.xrp1\\.org(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da7499e62430e2c4aca167082ba389a8f4d0dc69d1e236e03f9db18634dc8c77", + "regex": "." + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=flip\\-5\\&r\\=58ehi4p5y3$" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=cl\\-f5\\&r\\=bgl0fynf5w$" + }, + { + "hash": "056a06342c6a34c5e48eed4a2bc0ac65993924d334556a5bbfc98ebcae469c49", + "regex": "." + }, + { + "hash": "8559dd130ce1689c92758d6651f19bf2d589cc14bcc7b2fafe04c329765c297d", + "regex": "." + }, + { + "hash": "3231de60b0a9d767ca2e008de5244a655757e506af862c1a6d6a60945e5d4b88", + "regex": "." + }, + { + "hash": "83df5312085a87b7b3a802253eb3431fd0233e27cb3109ecd82601136871c4e8", + "regex": "(?i)^https?\\:\\/\\/fdffgfxcv\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f56d7e85c037ea9c2fb36fdc3a5a2a86376dd2213ff96e7608b2da946c156538", + "regex": "." + }, + { + "hash": "1620597d54425128884ba410c8d187bd9137efca252bbe7ada9871568733a0de", + "regex": "." + }, + { + "hash": "4bcf65fc5fb7e17c8bd0fb8a5958f877a3c33d6463f00f02895425b70f1377a4", + "regex": "." + }, + { + "hash": "71d8934d1cc831adbb725ff27d730a022edc488c5611c23ec89883e1cbf1aecd", + "regex": "(?i)^https?\\:\\/\\/nicefb\\-12\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "7683aaafa5027b3b81f90ca90a4314d1b49c9b197f2224931fad00854ffb15b7", + "regex": "(?i)^https?\\:\\/\\/guncell\\-linkler\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a443a59276bbd9c4624228dc5928d194b6d94334a42937344f74427db930844c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1899d75725ba39dae787f416cd427b68902974858e2dc92397408d32d79e27fd", + "regex": "." + }, + { + "hash": "68b87d53a179653b5bb0c77127ba9a3e4c6bdf779deefae6660320a7df65503a", + "regex": "." + }, + { + "hash": "e66c4c15398fa94c8b4b1d25ae7a4c48e516169014752e73b4789283271d6c35", + "regex": "(?i)^https?\\:\\/\\/slgnupdtedmalnsprlme\\.64\\-227\\-118\\-221\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8ec0585f1f2b0230384aa2329eca9d1cdd5cb9663921a20f637f896656a7bed8", + "regex": "." + }, + { + "hash": "128049edbd462708b049257a4ef5f5678eaebffd0c2f417bdfc86fcd222c8615", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "b3d922dda2be63835f43b647eda7c28a8ba02ac8fa990ed0ccf12045d0ff939c", + "regex": "." + }, + { + "hash": "41c4e2a22af06ea3ac52ff64f8873e1b0206abeba4bd0dd59d0a417f4bbd9a12", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+1b4d3c19\\-7302\\-45d5\\-a2c7\\-56db2c1a7965\\?d39fa051\\-02e3\\-4179\\-9c61\\-57fdba7d8fb5\\=$" + }, + { + "hash": "c6e1de2e8e9aef2cc8c64ae8f17052dfa603fdc6c9fdd5fe782ee858c5fd8116", + "regex": "(?i)^https?\\:\\/\\/www\\.xrp3\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d3873da094da5b90a8fd9215a81057f6dc9c16cc41f3e3b194f27fbe9c061c57", + "regex": "(?i)^https?\\:\\/\\/fdffgfxcv\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a083d6473defd3b06e2e1c9a20c6e25273c1925ae1a7638b599838c11d814521", + "regex": "." + }, + { + "hash": "7f174219916b51638be898cfd2633f23cf2e0eeb5af83c451ff207eb77d706ca", + "regex": "(?i)^https?\\:\\/\\/fdffgfxcv\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "f897b8854d60596f3d612ac87b20038535f65c5a79b9530df191603eeb3d0e0d", + "regex": "." + }, + { + "hash": "0c5d6c2d5cd20e9700165bb4a37cc3eb83fa724bb6788a9b421aa2dd56b62679", + "regex": "(?i)^https?\\:\\/\\/t\\-eerr\\-a\\.sac\\-contato\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "2d6808bb476a2e97376a3ffbe2bce2a7b1017b09105c95dbeefe70bffa971f4a", + "regex": "(?i)^https?\\:\\/\\/infoservice8971\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3041d16de84d51e2b06dd8b8d7ff105ae7ebd83e522dcf612076e1d57a06f3ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa9ef35df8603331c4bb6995b1f6fd1d7ebd08a61ca250d48d41ec94ed781bdc", + "regex": "." + }, + { + "hash": "f0d22409e4e938855e5ce09ed7eb5d226bdf79f8a8c32e58f9df268a43559f01", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a403a4\\&o\\=c4x2\\&label\\=cl\\-f5\\&r\\=eetqixv12f$" + }, + { + "hash": "00a79df8c30b57faeae2c37739cca4f49ed53a8764fc13f221afb114e011c516", + "regex": "." + }, + { + "hash": "e6f0b77ea81de10352145bd1a1ec0bf36e1f3dd1f36e6c15915df75b54c71029", + "regex": "." + }, + { + "hash": "51b82163996236199f90b95666d082d915087680f38cff8e80402c1c130cceca", + "regex": "(?i)^https?\\:\\/\\/deliciousfirstclasscookingcontest\\-sc\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "a20bb4926c821dad2a6f39f51177244be86c425b19469e543a1687104230504f", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "8d314bf8031defd015c403ba8215e6ad974c14afdf881c3fcb7082524e5ed24f", + "regex": "." + }, + { + "hash": "06b56c4a3eec73e7f11eae97e304cad70833b2ef4be3b9c9f711a8b8ae6fd9d6", + "regex": "." + }, + { + "hash": "04bef949de8045d731fd73a9fb3d076d177966891eefae62dad4b2383b0548b6", + "regex": "." + }, + { + "hash": "e2d42cee1f4082a1e81c8fa353a9d5ca448638a8fe9b12a250bd34bd666578d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+9bzLk1tJttJN6zKxM(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e198ba593b8cd5a9ebbbb5795675057298615797c50e6234c198ed2d2408ccdb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+log\\.php" + }, + { + "hash": "d71b322aab92dcc07322506f8445e3883a0a14d59099f542aecce92ae2a958f9", + "regex": "." + }, + { + "hash": "7d22ffc51cb1e418d84270b3f81481517d2e0e33cd0d18a54452d4e250019a14", + "regex": "." + }, + { + "hash": "1a2d06eb59e5c3c13bf89c70bfc92df377c0a5052680dbc90e17375eeedc80eb", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5a35c94bc1fb5496878524275a8294d3e6a1d4c8370a311d1f47a67908f0725f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=knytentn\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "ed4b47389a8377deabaf70d9ba4f23ed13d555e14c0fe31f3e486f9d305c5c80", + "regex": "." + }, + { + "hash": "83ec046cbfeff9648afb30b5f0ed4d72acb59a0dc38bf8f2e32c70bf7f849aa0", + "regex": "." + }, + { + "hash": "32df6bcb8b742a8fb7ac4f12c614b93f51a5a7b580d0c0c8de6a1b82e3ccc814", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "0fef4f02e91bfc1248c5353e7725c33e19a8c6c3cd344f998ac6f02bfcb39dc7", + "regex": "." + }, + { + "hash": "a4871a98edec7129947f7402b53fd224dc91df4e7bbe46fef9b6c98df61889a9", + "regex": "." + }, + { + "hash": "d08556fbf36e820962931f123d46480fbf6dfb11c239cf7f50eb6c6a7a6cedca", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "7a44d98f836f6cbed445d55c4301624acbee90a1f97b145bcc1cca09404483b9", + "regex": "." + }, + { + "hash": "814a7c4fdf1b8d1e552c446cde07350d397be7f33fa9e6dd7972c6ac7332865c", + "regex": "(?i)^https?\\:\\/\\/gerniths\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "32b9e8102b6e4881f8f6493856c73fd59e5da789128fb420272f7680ec8e831d", + "regex": "." + }, + { + "hash": "43bc52b0ead297e4351baf25506b5436aff6e6f0da6e912b372210daa6d86791", + "regex": "(?i)^https?\\:\\/\\/instagramunder5fourchats\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "412d50fb09ace385c7ec817975bd3c454ae71bc5912eccdd38b95dc2724177ef", + "regex": "." + }, + { + "hash": "4ca2483c34e77a67618b515ef5d40f569189d574c7ed3405960019e807b58d1f", + "regex": "." + }, + { + "hash": "6deac880a59d776f57717505e86919415d95b05a1d7b2c04fb89ec2b581494bc", + "regex": "(?i)^https?\\:\\/\\/th9689\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7eb2014bf62cda4bebb2e5bc509932e61478456ba87f2607e31d9185b480d158", + "regex": "." + }, + { + "hash": "da7aae256a465b02872eb5e1a610f18dcf44d3cfc00e86427ac4c376dbe646b2", + "regex": "(?i)^https?\\:\\/\\/eddklofgxew\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aa577f1612278452033fdf4d34f09ac2af804f5c99c3dacc8c807a0b0baef440", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=zogqndb\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "8da6b42cf144ecc1e1e1983aab760cf5b1222c3599a824c8ae63cd4c66d8f7ba", + "regex": "." + }, + { + "hash": "c661bc06a384ccd71d9046a25f7801a6a3cc0943582f74b000c06056fa4fe178", + "regex": "." + }, + { + "hash": "3d413eb91fae921bf381e1927abcbc891c1f3053a3a77d3543a209db086ee343", + "regex": "." + }, + { + "hash": "9db721a0f3a97879d8568dc90ab03c0ee643eab3e9d56da8639411ff8fc2366b", + "regex": "." + }, + { + "hash": "6c70a60193193fd4f0c01b88ded1ba92b11fba46a88e56c2e4fc9c91ab692952", + "regex": "(?i)^https?\\:\\/\\/netflixgpt\\-7777c\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "1243abe2be5f19f70cb622436e01617b84e34bdcff267d6da5573eb233099a2f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d5694d0fdcd9b610271d0160defca84885bc3ddb4e40cc8b5dfbe35cd46d141e", + "regex": "(?i)^https?\\:\\/\\/nicefb\\-12\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "20ea9d5cedc0821ee3c144996946ed49911a49fcafdb103f73766bd93e836bd9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+MijnlCS(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f064055bf7d9f87bd80194444b57dcc4443c6372754455f560e5db8dfa80cf71", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+caonima\\=rlsiazvdc\\.co\\.jp(?:\\?|$)" + }, + { + "hash": "ab7306eb40f42430e6ebb6c27ff0bdd720505a3f9035831214afb1e017f192fb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?register\\=1\\&agent\\=4374577496$" + }, + { + "hash": "7398786b9ac3b4e9ec5b2a4db4a48247fdadcb3125a282ebf466a5c63ea92a8e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "041ffbdb5f6451dbe3c538f19af4cbc43973b9bbb51e779d1b1bd48f75de919d", + "regex": "(?i)^https?\\:\\/\\/tntsport62772\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "b232e08e9a8f596af4fd06a991232ce5ba8b51965cb4cf45356a3975eb2e393f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+best10\\-tr\\?gad_source\\=1\\&gclid\\=EAIaIQobChMImdmx48KligMVrco8Ah02qxjmEAMYASAAEgKaxfD_BwE(?:\\(|\\%28)$" + }, + { + "hash": "e2a3225f2a48454c8eefb15420bb2fe6208d7ee9d9dd61c8067d9fcf62c0e11c", + "regex": "." + }, + { + "hash": "2e2da3fb6cf3d4959720e47322d5203e216846f1a61aca6a78b6ac40981ea991", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "74e649a08a3d39400b3d155d6386766acf8ca374e4dc7090f8d94a2e67475993", + "regex": "." + }, + { + "hash": "1dfaf336a3cf3fa2f22063ffb27eebcb33b2c2d5dcf48fb20acf7b9272ec0ed4", + "regex": "." + }, + { + "hash": "0b308836b95ffbefdd309c5be4ab1978cb894ae014dc478a8c6cd549a3e8ebd4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "c930d3917667fb2d50ebbc6c37e213b136f1964d8af62e6c8d2749c7d7b7e255", + "regex": "." + }, + { + "hash": "9ab1ec6c3817553fa32bd809e182152342447df5e07b1cb5c0159a38e2e5f151", + "regex": "." + }, + { + "hash": "4880f3671e70e5733400d9a0838bc2d8bf5357873433c93c18249ff8a435f2af", + "regex": "(?i)^https?\\:\\/\\/seguimiento\\.serv00\\.net(?:\\:(?:80|443))?[\\/\\\\]+mn" + }, + { + "hash": "9962c2b8a9dcd5442c15b3ec12df09a00efb286bb0c3b589d1149cdc4b289693", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a574b28ae9507d3580724bf1dff712d0984c679b654283e6dda5ae13dec7a716", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "96e515d8ed2a4e593cc44f586b87da74f0fb0b680c918b074477730085be5373", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f628baf25800068cd94f334251087840254b4bf604ad7a334e67b8180ceef91b", + "regex": "(?i)^https?\\:\\/\\/parlinkigiofgbw\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "4d820eca32094b5762e9273f04a469c3c77e06774f46a5775b8052b6179036a6", + "regex": "." + }, + { + "hash": "d353947cfee95ca55c44d5e2942683dd44e86f3c5c21df17f591720b6e432c43", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "99a6fa02b3f5ded65e0573551b1d5115b52fd6b76e2e93941e7eb7dee57ea225", + "regex": "(?i)^https?\\:\\/\\/godsentannualfoodcookingcontest\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "d9e3d700a9d8f60db1c19c3944c4dd7cfc1cc08a9ae7cf306ba4d72ad07b1c92", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "0d0da23685e179d340dc7bbe48ff677988e6a3c7a4c09fcedea58b79436f411d", + "regex": "." + }, + { + "hash": "bccd6e841f9976f1e38a0e62dbb7e0fe687de40cded3cb317cfc4366850aa6fc", + "regex": "." + }, + { + "hash": "9d66f755640aeed84957ac2ddcdf375cf38c27e58e685c76e9068dece71e764c", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "642ef37ff2bdf096f26ca153c2f6dcf4b3b65272d0689288ef08072a7cbe9f13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register58377(?:\\?|$)" + }, + { + "hash": "0f3c948a13cf0287c99601e6a7fefe9c2bb1cb47ce317607156bca34d0f4043d", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "597759f3409d1520620071fbd9f3d494811e65664190ac18b0dc371d3bf43cc7", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e97fa6c6d770fd38fa5564117a144859a9d3fc09635e44bbfcb08b4e3cee763f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "2c54660135bb351c90cf45a6f2dff32b8b44ca7580b4237b247db2c1e572e5f2", + "regex": "(?i)^https?\\:\\/\\/sfe\\-dgt\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a93c3e49acb33498537923432494f7c20d99efd145ccab2e692f77ff38570dd2", + "regex": "(?i)^https?\\:\\/\\/sfe\\-dgt\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fcac7fbb63308b27a8b1c272ba8f9f4c378596d087101093515e7a3543630ce9", + "regex": "(?i)^https?\\:\\/\\/godsentannualfoodcookingcontest\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "3a2d7435468e6919fa654d7b11af9567dbaee77318d7aaadf14721c186ecfb75", + "regex": "." + }, + { + "hash": "66b04060d2f64a090c2a012a57a6e920027004544c55b2450aed810032fd7771", + "regex": "." + }, + { + "hash": "cfe2414284b3e195faa7961438c79da372419a6ef10348d2cf6eac60b554a844", + "regex": "(?i)^https?\\:\\/\\/godsentannualfoodcookingcontest\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "c42f3c1e47994e735f63c97e8fdb5df5980f43e825296b5a9d1c6dc010d0ae01", + "regex": "(?i)^https?\\:\\/\\/godsentannualfoodcookingcontest\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "325eddf47dc48124a5dafd3a910a7954bcc232918d9a168c347d4a20d99e4aa7", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "09585de800f9bcc189355f265d56594b8b937713a4f77eb2a565d81c0902dd07", + "regex": "." + }, + { + "hash": "ea28b63266720a9e6002d1022d32152991011e79f4b40c79fa7a168ca898876b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "1502a5c2fd21b0ee0a38d9ab60a2f334e67f5118cd78ec281498637307c7e5be", + "regex": "." + }, + { + "hash": "c3af81338470dc3bc69f4a8f6804f0f60e760220bfb81fc6a3d3c191e1a31403", + "regex": "(?i)^https?\\:\\/\\/alices\\-stellar\\-site\\-bc328a\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9d65d1afda9c273b41f6926eac78ef93ae10e8e7fe9915adea36bdd32b28a23c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site" + }, + { + "hash": "25ee41acfff277bf432b0f36b3006c1c171c4d063b70018c2dd94466ee481c78", + "regex": "." + }, + { + "hash": "770d79940b9a7c41319d10bdec9b5bb876c68777907fff8b54b6ffdcd2d79f4a", + "regex": "." + }, + { + "hash": "50b212510e1943a407b2c094f1015fe4c1299fc173385041b762d9719e92217b", + "regex": "." + }, + { + "hash": "79ece60d7a6c17f0a3bd689400db5a3983656b5818e1df2aa03a5aea7e820a99", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "cd22bb27fbdc894a2284af37d9118ca262e7ec178c558baac7026479ca09a009", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "eb36d5842b42993f16c4e17350e8775a8cd31b378f14d33c6a0dad77ba15d6a2", + "regex": "(?i)^https?\\:\\/\\/godsentannualfoodcookingcontest\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "8333549e6e2028647d94671cd88460df09366a76f00923e5b57a66bf090a0a1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register58377(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "112ba707e2006dcfc55a74e7afa256d9ed7f4957428a6aa541e3f813d0060736", + "regex": "(?i)^https?\\:\\/\\/starhunter\\-astralseeker\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "a6eb5ea1545ef09eef7fd63c87a56a1346568c26aaea80cfcad6573f7b236e3e", + "regex": "." + }, + { + "hash": "6bf88ef3cb8e98faf99b9cfb3a26a4f2f1c8ee8a392dfad69c95a327ab5b0b97", + "regex": "." + }, + { + "hash": "9c76a10651a0a273d6b88802e6f854ea2e76be6db9a11f7b3cfdcada53013d70", + "regex": "(?i)^https?\\:\\/\\/pub\\-f18c3d444059460880d86ed436e28dd3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7a67865ecf9dfcb6c0899f08b5d7438d350465f56bb69febda15cf953edda312", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "ebfae88e830b7daed3bccb9bfeed8ccb3a363bc544f410c09861944d48d3ac66", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "663480ee7458d9d97ca5e6824edc068282396dbf447c6dc203d78816d99b8977", + "regex": "." + }, + { + "hash": "4ec9b831db977bde59f2b58bed15a99c3167ced72e98af5ac6b9bedc75405bb5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "45041e6ce0bf583f27799e37b638139ed9c6766bde4b043166ead26a5785e6db", + "regex": "(?i)^https?\\:\\/\\/upgrnetcs\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a7d7f264607e90ec864e491fd755fb24e7abaea597fda839c62fcf8179591eda", + "regex": "(?i)^https?\\:\\/\\/godsentannualfoodcookingcontest\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "0fae32c4d05d5b69713cb0c41705d012bdf0f7000c31875060bd2abaaf8f9891", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e4b410f4c014ae3638815a77710a6f3f779a2524e13fc3c147f1b18d2e892d47", + "regex": "(?i)^https?\\:\\/\\/sfe\\-dgt\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "08903a386c040f35896f39284f5a1687c2aa9336d881122969aebaf35139acfd", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6f6e1a3a25ed763b832bcb9f1bfb4caee64da4aa7986960c9b6b58508f552457", + "regex": "(?i)^https?\\:\\/\\/starhunter\\-astralseeker\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "a3097e05bb6c1a3d4a71fdd52ab7536fa4d3bddab40975df72288558ed71e177", + "regex": "." + }, + { + "hash": "7cf356a4290f9c50173539772c12c584ab4fc755525ff92314bc58763fa76910", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "680e72311a1a380542cedcee00b0fdb088440c98b8dac116fcd6bfd7f607ab0c", + "regex": "." + }, + { + "hash": "0100debec55ed270aba6ca7a4d0ccc0fddba801a811a789c2bfcd1b2ed6fd191", + "regex": "." + }, + { + "hash": "ab3c20e66a34619fc8bc4707cf749a79b087f08af900cb7da08b2833185c4945", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "ecaff5dcf31d383cb5b561f86aadd153f06681f53231de7a9f56fdc5c349a03d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+elena_design(?:\\?|$)" + }, + { + "hash": "c046308cfc6a83bec3dd5a41d8e3572e94089f1a87934577b8160387b4e82d5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+46f40(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a46b14883aa193d2c5df65a15bf38cff842e2ea73c419e0b29dc1c0073a5ecb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wp\\-content[\\/\\\\]+klarna(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e3ecd3dada5db9edb25fdeba46c56c7e8308091035c30f4d9456d77a03e9d4f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "4f00264f6c60f517c1dee35b06a4d43d5c7a5bb0c9672f64a22285e906f25cd7", + "regex": "." + }, + { + "hash": "9d0cea3233039e85e72c2ecf3c128f78e8e08d87defaec20a0894b93c33e410c", + "regex": "." + }, + { + "hash": "4198104b2706b5a36d64cdd32d5b94a87305e723e76450df87b3b3b7b6c1ac54", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+points(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e829a424ab1887647594ade3fdba727f28e9cf55a306b0d3bcc6678eebaeaf9f", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a7dbd30e963996f997b57dbe0dc1872723608bea27ada11fc1edfede24047d45", + "regex": "(?i)^https?\\:\\/\\/sfe\\-dgt\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "a85e15aa972c8464aa13eeec0db143437b0de2c57318a9377e094b7dfc4e26e1", + "regex": "." + }, + { + "hash": "03188ca58d74bdb936645f78695a61a89f5abde8a15372ec2e3c0ce0c6c77d3d", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1240630d84e78ccb1307efaa2b82980367027daac88d6132ecaa7028f0a16fa3", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "47dba80dc2ac916185cde8383ac5e4adcbc2326b60b37895650c5420102f3056", + "regex": "(?i)^https?\\:\\/\\/pub\\-0d54d9817e0b48138312ff096199f031\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "31df97f1e11637f8bd59df54b5ac603c72103f1381618ba9ed50a1300d5df854", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1c67505d77c825f140d2d62f10fa1cf0920309c9d262d6b111d3ae43af2ca79f", + "regex": "." + }, + { + "hash": "a7c5392287ea3223370e3610f944479e6a9ca27782a46e1d5cccf4f88951731d", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "fe2155921ae7032838fe7fca8a28619ba2ca0adf7f47de2d0f161885ee8148f7", + "regex": "." + }, + { + "hash": "b294408071d69c5073c884d62684d90b12624760aa457a89cdac80479a26e940", + "regex": "." + }, + { + "hash": "e012650a4bbb53d1fe3d27e679639f37cd8ec3726a9a44e07efbdb93478f50ba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help\\.html(?:\\?|$)" + }, + { + "hash": "1ff86c0160729bc00e16b063c08c95a2873d95172a162884a241324ff6c6f8b0", + "regex": "." + }, + { + "hash": "eeb6e7cd10f454db661d8d134cf46f6c95cc93f52ffc77509d40a72305fb3a1a", + "regex": "." + }, + { + "hash": "ad30e4c4dd1064a1c49247abc74aa8193cd49df4abcc05cd89ab6a73b2fea32d", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "d632bccf46e3e5749117ffe08cd43c63e4d568e30b4859b37ee7af381f8cdedf", + "regex": "." + }, + { + "hash": "72715fe8a4f8a3d64b725e468db035ba86898b4aed2739a0681a3068a0be9b4e", + "regex": "(?i)^https?\\:\\/\\/alkranor\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e935fd532a335cf3ff8a5d3042f3cf64674d71a3efae9f0fb5219d9e29361a5c", + "regex": "." + }, + { + "hash": "02658598bd229f5f06fd399216b0cb2dc2e853070bcafbb6458e10a8bad04215", + "regex": "." + }, + { + "hash": "a2ff90fdaef9afcdcdece026dcabaf09dfdd27fcae7276ae99c5f3ec4c927c40", + "regex": "." + }, + { + "hash": "45961fb20033aa5560dca310558fa2e6465c5e7c1b0c604e3277c4ab4195ad7c", + "regex": "." + }, + { + "hash": "c5e102abead624d74dc3d9e25ec8394689d1465f8a352b6324840d1aa66fe095", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "c035328e68afa704f425dab83f682a5f53122db0e91352dc87f254108570c6f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+E\\.zip(?:\\?|$)" + }, + { + "hash": "718eb263112f19b5cf47b1063a78f4ae6654b9c116f8b26c80b8234f46891cd7", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b14db73757b243527b7169af68988d9e0ec5e670fbcaa454935c3bddb58b57eb", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "f4c63bbfbc1ad70746353c768b5e65f050d89d4c00ee8b889eb9ee52450d46e5", + "regex": "(?i)^https?\\:\\/\\/sfe\\-dgt\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "87787c6f63010cbbc6de1ea76bdc579ed2effabd63213ba00a9f4e66d32fea80", + "regex": "." + }, + { + "hash": "275ad46b6969d57063ad4462cb9a5834dabab90b80f0bc3da9ced1ce00d304d7", + "regex": "." + }, + { + "hash": "8e92a9ed4ad3080c624145717c420318c719ad644bb4adff749781a76dd93478", + "regex": "(?i)^https?\\:\\/\\/godsentannualfoodcookingcontest\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "c166cfce3a257cf643fbc00ce677a3242abdc02967c55d9646c72d0c0934a938", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+get[\\/\\\\]+193409573(?:\\?|$)" + }, + { + "hash": "aa0ee9f262aac832d0ccd670d404cba839e4126cbbc654859ad234c672638525", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+suivi\\.php(?:\\?|$)" + }, + { + "hash": "d2d1a8ea2b29ad9dc4e45486373bee2c2e9f37d7e056053808bd8abeadca6982", + "regex": "." + }, + { + "hash": "e5b81cfb3969b70d31745e8148cab2e867f8754854e87f1e76320ec55c030923", + "regex": "." + }, + { + "hash": "a7a2a3f970724938c351469444917d866161b030485fa90a25db88b9883a3b39", + "regex": "." + }, + { + "hash": "c5308cbf085e1a61fe00ddbaf9c930f8a06945b2ea5d991830aff90b6da6ccf6", + "regex": "." + }, + { + "hash": "642ef37ff2bdf096f26ca153c2f6dcf4b3b65272d0689288ef08072a7cbe9f13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register21608(?:\\?|$)" + }, + { + "hash": "642ef37ff2bdf096f26ca153c2f6dcf4b3b65272d0689288ef08072a7cbe9f13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register21608(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9a356b9fc80a7bc6e7c5f58cc3968c8c364474b4bbaf5db40d80d35f2afb978c", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ff5ebd7f602fb5fda34d8cfaab717907fa501dc875ebece9157916fc22340db2", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "af0a310f63abcfc6b6200704dd32ebe53a141c3ceb2b86a7907009f7d63192c9", + "regex": "." + }, + { + "hash": "02fabd0305a2da9c67e0763b6e58a9da6154de3d9b67ea54e546880e6bfd643b", + "regex": "." + }, + { + "hash": "2aa2340b1adae0d3f750352a38692eb3d3f54537feb0d215007fd034a3f5cee2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "272880fa0669cceb6625defcc1cb6a2fda9025636154bae2e60d8f7b8cda646d", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "7ee9574a7c7043468a8db2448f48d2e763666501be10368424e8626348a97c03", + "regex": "." + }, + { + "hash": "b5845caea371f7d3c4d5ba5550a0fabd88838f7a374b3b1d8bc5ab7491ab2e44", + "regex": "." + }, + { + "hash": "d4e4cd6d22f54c82639924ce32e5da14485adef8f7ca137916e3c0efa7164531", + "regex": "(?i)^https?\\:\\/\\/sabbcshelpcs\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "c9eb97947bf7dd3faed0e8f02e48e274a472a59404fa767440fc757d8b0813ce", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "161d79e2649eec6c6afd14dd509f4c96a6251fc5ef10d745d6f0654210ffd10d", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodnetworkcontest\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b73ed118fd52908b367b4cdfea7eca2963ba26c08582ce03de41cedf4dd53ba0", + "regex": "(?i)^https?\\:\\/\\/slotemas2gacorcs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "23793a60a9cbff90e20cf183e7f9c865a408e60c4a53275a9ebdb6d5f1965225", + "regex": "." + }, + { + "hash": "ca5f9b522e973bdea734888a6401d69baf544efa6fd46b7ca91fd6ba9ee587b9", + "regex": "." + }, + { + "hash": "6884afebdd317fbcac19b7c1cc0e798285179dd818c39c2e560565242aca4834", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "8333549e6e2028647d94671cd88460df09366a76f00923e5b57a66bf090a0a1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register58377(?:\\?|$)" + }, + { + "hash": "db73b66fb673d92d5a561fac18ac0cd83ca9ac1bcda584a7445e3df48b92430a", + "regex": "." + }, + { + "hash": "a3908c2dcda806465f92014034059adb14fbe8bec9a9bd9fa4c2718af67f5745", + "regex": "(?i)^https?\\:\\/\\/wordpress\\-server\\-hosting\\-serdinayou46688161\\.codeanyapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "337c6abb422efb08e358b892990e67ba22429698cee4b8caf8bbe6b7a81893b2", + "regex": "." + }, + { + "hash": "7014dbb3b1ced1220e5c69110d4b5ac9260c6b60bed44acee7882031251a6a5e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "8a34d35c2d5e3b355098dd6d62a389816969a26035920ab8c2d21295ea332021", + "regex": "." + }, + { + "hash": "c66c3e892644d551a251067302572d62e447df7a8914d77ae41fe0568aef8300", + "regex": "(?i)^https?\\:\\/\\/parlinkigofukf\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "f222febe3a2a9af0d2711dffa390e1547f23961502e1313193a1c66438b8b7d8", + "regex": "." + }, + { + "hash": "c665b3528a54fa905ce534efaccef9d5604aebd01ec040df62f27acad9f61247", + "regex": "." + }, + { + "hash": "a9db0b443e66c43c96e73053cb03b8dc882e675e949780843aaf7abfb2f6edff", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "597308dadca85b943762e43de8fb6ad925b39066481abbdbcca838f051a9ab38", + "regex": "(?i)^https?\\:\\/\\/starhunter\\-astralseeker\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "5e88419aadba4e3243960f5148d40dc2487784a2931c7055c92f09df53d07390", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+gov\\.auth[\\/\\\\]+approve(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2c74b5d68657e66dbac33b3277f8e6f5aa3dae18b59fd9e2ff3418aa20eae305", + "regex": "." + }, + { + "hash": "bb229f82dd8dd3d29650197487b205dbe92fd20c998f32de309c669114d70d34", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "993535f3ed1feeeac7f2ace8566329c0cb5b19e83ebf92f312acd2d9c62f60a9", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f18b33ebc04f90fae48ed725f4f1b0dc3d89e8680fc29def6935e10fe0f82224", + "regex": "(?i)^https?\\:\\/\\/parlinkigofukd\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "4771304a9cee4bde747a0a5d075ee9fc50bf89d10712f0bc3d40c70757d02bb7", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodnetworkcontest\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "95c794343f1fb2401171252635138f8b031ddf797b68b7e1a4af5aecf0668c72", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2f8db1f7662e2b8107ca412189fd21cf7dc05d778959b42fde807a2436a0c2e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "a7e4f83b7e95f35e2b908264c32501f3b53cc26539b3275d89ca6e6df8cb0b5e", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "377d3ce6d9081277b3867854c464b76f0f12d7d44f471e42896b48d3a23ae1b9", + "regex": "." + }, + { + "hash": "1fa574c3a0dc06b16562c119a1a1fabf6088ae8f1774485fb6edacb0a54b5a28", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "70988d4fba5be824e82be1bebefe7e80b4cc77bcad98546c847ee976cd67e4d7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "901010d8c0b579a3152bc629ad01424e5f420ff7ea179aebb963cae6c5a843f4", + "regex": "." + }, + { + "hash": "8b11800626aa9fb8966267c0ec26c4e5b93a8450a70684a452c082a4bd42f643", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+folder2(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df1a3b1a5435822526fccc885206459faafe77498ae45cd6ec3b3ccab5b702ab", + "regex": "." + }, + { + "hash": "c1c4af5c69c56d7e5c0457b3392dfcd19762a909028e27cfdbec01ffcee13e55", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "4c3dd9d0664695c5609f9c192c39d55563a31ae1b08131e8d52cc42ff6e2ac3a", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "d624b6d5a37712e480530463fff7eb59dc0c47a26327e516199655c9a659fded", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "4dc73395f0a1ef5d359b1eee52dfe600d3c64e18f945d5914b3c08d32f9a5392", + "regex": "." + }, + { + "hash": "326f2c4759d425dadb3419a6425a64d11523e032cda49b0a421e12c0cab0a98c", + "regex": "." + }, + { + "hash": "01314bc7568d8daffd9968494efbb5952ab238b99c43845bb67d0303ac6b23ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verify\\:64677(?:\\?|$)" + }, + { + "hash": "8476e0f898f9efd79e2fe0530a15d41de638a47e2d0532af1dbd6e169d965ad1", + "regex": "(?i)^https?\\:\\/\\/sabbcshelpcs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "003ee5b033cb5aa8ee658328b82e311feb91e59535f80c2902c527ed7d61fab9", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ca0b575870f9ac246060e8eee4a23c88538389567b0c5aa6b568517a59062a62", + "regex": "." + }, + { + "hash": "193399300a0e9751e93e35a040f2ca829673189619bf7da39539f5d02babdbdf", + "regex": "." + }, + { + "hash": "e9108def587c45fea011000ae903fff66950aca50a069e320c99870b47bbe189", + "regex": "." + }, + { + "hash": "7f9b7b896cc38a8fa18dcffa7415bb216ec6b1afcec51a83a7abb1142745460e", + "regex": "(?i)^https?\\:\\/\\/upgrnetcs\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "4bcb91717474b2e525cf92854c47fa75dd74879fa91bd65e467c1cb7a5a3df73", + "regex": "(?i)^https?\\:\\/\\/muysdrmdvnaf\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4a49c784e230a8f9565ba0020c1d2aeab50b395c7794b3f4e0c9cda116b89a48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?p\\=1\\&t\\=Adalt\\&supportName\\=(?:\\ |\\%20|\\+)+g26IASbQDJE0ZTQx\\&botName\\=\\%F0\\%9F\\%92\\%8B\\%20Angel\\%20\\%7C\\%20Private\\%20channel\\&imgUrl\\=https\\:[\\/\\\\]+i\\.imgur\\.com[\\/\\\\]+AoCfgDa\\.jpeg\\&pxl\\=1089737309024881\\&fbclid\\=IwY2xjawHJ6glleHRuA2FlbQIxMAABHQfo4vq7hStF9vebiNp3MAVGZ8_k_xcF2xwQXEh3oAKq8JwMcB3j5B3Csg_aem_dTD3L9u5FhB7TdJSHlTVZA$" + }, + { + "hash": "2fa334d20b42a098901c730ce303b219ec1772c0f26f72338cd7618b032e6b68", + "regex": "." + }, + { + "hash": "0cb2d4ac8614471fb8dec4a5ec6f6bd2662fb2b656daf08a989b0e9e5dd17907", + "regex": "(?i)^https?\\:\\/\\/manage01\\-portaluser\\.resolutioncenter\\.190\\-92\\-151\\-211\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9ee8d9ecc9704be7ce1a6caf8aac6bd212a3a9531e4842f87f2795d0fa77c585", + "regex": "." + }, + { + "hash": "c5b587dc529133e529d7809d92da5eeca2cd9108ae0ba869a1a85176f7312d33", + "regex": "(?i)^https?\\:\\/\\/sabbcshelpcs\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "eb9dc271dc08e9191e26c6cd9381d1cab409a797bcea3b5ff427b20ab3436ddb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "1e6669324ec08402012c2a165054d5cab6568d6ba24cd1c84f704250a981ca67", + "regex": "(?i)^https?\\:\\/\\/sfe\\-dgt\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "5f086a0f3f6fe41f07459475ad1ce89f41079881c7984bafd30b197c5a1bcb80", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?[a-z]{1}\\.365ka6\\.cc(?:\\:(?:80|443))?[\\/\\\\]+" + }, + { + "hash": "8333549e6e2028647d94671cd88460df09366a76f00923e5b57a66bf090a0a1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register21608\\?i_code\\=84688356$" + }, + { + "hash": "4f03797ebc389e99b52dca9b0663298e1daffe2116a049bdae305efe509dc488", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?gad_source\\=1\\&gclid\\=CjwKCAiA9vS6BhA9EiwAJpnXw39bS\\-Un24CgIGBh2DDgU_MavJ6v7_kT2uoONR2UKTHeF6gWDhFeEBoCEpoQAvD_BwE$" + }, + { + "hash": "0b3ef13caeda9d87b8fd3498b797d04312e53d960fcaa1ddcb8bac12a3794385", + "regex": "." + }, + { + "hash": "b9a70c84e8f32537961980047ccb596526e2d003d5c913d9498c81533b801d1a", + "regex": "(?i)^https?\\:\\/\\/starhunter\\-astralseeker\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "d436c345f8e9f75e59c906c95e97abdd9b255d14c303db06f45daa81822b22fd", + "regex": "(?i)^https?\\:\\/\\/pttys\\.ink(?:\\:(?:80|443))?[\\/\\\\]+tur(?:\\?|$)" + }, + { + "hash": "22b8bf4a3a7b62132803b506719d36b67bb3202fbbb77de811da13b3fe18bf59", + "regex": "." + }, + { + "hash": "1844ed0c09db8de377cc67b9716c3b880401bea46d951d083db783feff7f6ff0", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "a1d641e0ead2e83961ac8ad87ac97efecdbf1867dfb1967460f19b8767b00193", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+email(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7eb4bda5437333bf060be5b28df2ca90071e5c8fa159dd5a29d482607e984269", + "regex": "(?i)^https?\\:\\/\\/brimo\\-festival\\.i\\-one\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "cd613511db08c94a1e07e1aa234e7b76a1e6479cbca990b60b048d8c3f01fcba", + "regex": "." + }, + { + "hash": "4217d25b032f97c10318310501156e2ae71b95e9d8e41cdb5cc0f63aa4e0f3ab", + "regex": "(?i)^https?\\:\\/\\/slotemas2gacorcs\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e38364c56e85f7cafd5b5048cf3840b69982ea473db487f371aec446fdab4aa4", + "regex": "(?i)^https?\\:\\/\\/afslfesf\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05264bfb04cd817e51dfcbb08f2ccb1a275f5c56b837fd114ddc71ec87ed1b27", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+swyf(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5424249061d9999ebe141200a8dc717022d1fe64770c5ecc87bcbe6f478ff260", + "regex": "." + }, + { + "hash": "c208994f88e1723c09922fc3d834634cf3f4d892c52a4a42582c1b0cd4c13797", + "regex": "." + }, + { + "hash": "536d2beb3c052e8cf6e5600c67832ad5f17d54684cc9ec673ecb0074ba7b1289", + "regex": "(?i)^https?\\:\\/\\/upgrnetcs\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "2472861dbc9240b1630d6583bfe6114a130795a25135e3cadc091516c53f5356", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "f032b002db781bd6eaf3cc4ef375f8eff205dc96a82e6ce654f29f9c51f3cb01", + "regex": "." + }, + { + "hash": "a691fc7cfd444793e57cdf36f16d334322971e5be5fde977f33bf9d28ee31799", + "regex": "." + }, + { + "hash": "5943ce50a83ddac713439129a9e1f3072b80dfb29c2b38630f7a016f1b6ce0b9", + "regex": "(?i)^https?\\:\\/\\/621853944942837026\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "57bae048ccbaf9747ea5e585f62a1573e2d337dd5493cf0daee14515e9925854", + "regex": "." + }, + { + "hash": "27efd8058d1fdfe484acbd86dd3da090a5eefaa26813e3b1eaeb11a510a0d1a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+agil\\.html(?:\\?|$)" + }, + { + "hash": "13d2d8994b275fcfeff04fa7cfd1398896c663417f4eaac96a6541634f07301a", + "regex": "(?i)^https?\\:\\/\\/parlinkigofigbc\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "ecf23e941372d5c34a1c5c794dddf8cd7d947adf8775ea2e37140009b9060cd4", + "regex": "." + }, + { + "hash": "e3726b83c78f02de66e275060930819a37f3f86b85c98beaa1783e82854e45aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+log\\.php" + }, + { + "hash": "dc04639ebc798a10bc071b55f0785482a1d5dcb936e89eb3044d692f56e06cc5", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "a9be1455a79370217239169d1b3caf9b77b31e5adae8d189511f6d6e550ffff7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+036(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b77a96a6ad8476fdeeaae31022cb0949021e626abe79d23829fb2f549b35ff03", + "regex": "(?i)^https?\\:\\/\\/godsentannualfoodcookingcontest\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a385d9a2d56ab377fb1c125c24fc42be425991daaa67a6d271ca5083512a4981", + "regex": "." + }, + { + "hash": "90388306112ecc0557e9ef5bf3cb7fc5d9fea7450ab1bd671447b12b0867540a", + "regex": "." + }, + { + "hash": "8333549e6e2028647d94671cd88460df09366a76f00923e5b57a66bf090a0a1e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:8001[\\/\\\\]+entry[\\/\\\\]+register\\?i_code\\=38023509$" + }, + { + "hash": "4a49c784e230a8f9565ba0020c1d2aeab50b395c7794b3f4e0c9cda116b89a48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?p\\=1\\&t\\=solana_notify_bot\\&botName\\=solananotifybot\\&imgUrl\\=https\\:[\\/\\\\]+i\\.postimg\\.cc[\\/\\\\]+SskL7kZB[\\/\\\\]+solana\\-notify\\-bot\\.jpg$" + }, + { + "hash": "9bb8706a30b6103a7fa0d09beceaddad66140382ca2a2f4074cf2e3d778e33e0", + "regex": "(?i)^https?\\:\\/\\/starhunter\\-astralseeker\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "7263c032b1fd7643cdaadebc872d838ce5f39bd3442abe8bdedd6d6334d8b488", + "regex": "." + }, + { + "hash": "a1d641e0ead2e83961ac8ad87ac97efecdbf1867dfb1967460f19b8767b00193", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+115237\\-f2be8b[\\/\\\\]+checkouts[\\/\\\\]+f2be8b5bd33125b33603cfa7cf31f8f2(?:\\?|$)" + }, + { + "hash": "ea20c1e76522d366280ecc436a89ed18798e2c7e3c0c17647c7f49cdf913bfea", + "regex": "(?i)^https?\\:\\/\\/parlinkigofuky\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "9f88fd945083414f7cdf05077d99cc924faad7d1af2a0e9b2ed910f1d26b1217", + "regex": "." + }, + { + "hash": "e7e93d7e3bfd9cef003da3c3b4e5baff0758ecfa2d82b716ab3324b3a51c5031", + "regex": "." + }, + { + "hash": "bb43959d21e0514ba7227c7738f178c19fe6d0272d4d66fe8145e65726c45809", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "f7287f03951e175660b0d1c73d87dd1f135008997f50a3612a4358179ae639cd", + "regex": "." + }, + { + "hash": "bafc0a6f215601b31e9ec3349e5e870c623b9f6ea226f79cf70faa01c42f80ba", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "7f86cda5917e827132be11b2371ecab340e22780eff0783ca27d9994da124859", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "23572c0fb930e30bcbb7fef11708990be476f722db523930c515aea546c58818", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "97554c66ea01e9f80894eae7aeeafb6a83e57df471f78623fcbac6b03ec027a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "855244d81ab6b115e2a48f7ab7ba2ede215bc9b922d9a3aad19df82bc8ba93e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "448bb3355b3b9e336a72f149b9e8d84165744b65c871803cfd4dd96eaa0bbf82", + "regex": "." + }, + { + "hash": "9ed0736fe621e767b4b7cf512328968f7671c322c60e326674ffa73143a2ea82", + "regex": "(?i)^https?\\:\\/\\/slotemas2gacorcs\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "48059f970d14d079a4e16dcac97ef5b947063148b59d454d8f4a0217497e50a8", + "regex": "." + }, + { + "hash": "0eaf1b97e18fe3cb4e898c32469b76dc3add843899059c203285ba5364dcd682", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bonos[\\/\\\\]+spinne" + }, + { + "hash": "27efd8058d1fdfe484acbd86dd3da090a5eefaa26813e3b1eaeb11a510a0d1a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rastrear" + }, + { + "hash": "01d68991e012a618e8f61b0ee5d8af2d54087c195bf7f5a9066ec36ff9934ead", + "regex": "." + }, + { + "hash": "7454740f874d28aff9af59be4c0a7aa8b1d3eb120d5dc4b5b5542583b36d4be0", + "regex": "(?i)^https?\\:\\/\\/parlinkiigofgbk\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "0dbb1e08266f82ecd1941ae0c7698d56f84f64817ad5fe7874262bb4c3ff3d62", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "ec2d6993baa6181064e305ad4de4551576730a513f956c578fa1de817fa4780d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register\\?i_code\\=38023509$" + }, + { + "hash": "c33b5a5f97a97af5d87387d5672d29a65c0cd8f71c8ea2e329e116a0f934bc79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+belll\\.net\\.html" + }, + { + "hash": "0b3ad20759b688c5813c78017345e033e03cfe8512ec4b537ceeb32877f54467", + "regex": "(?i)^https?\\:\\/\\/slotemas2gacorcs\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "d209d98a57b9a016d40d157c3f81dcce039173db3302c229845a56a02fa05501", + "regex": "(?i)^https?\\:\\/\\/slotemas2gacorcs\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "42fe9cd5cdeabefcd4f257ef65227ae804e7f12a32180efa166498b4da67b0ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin\\&openid" + }, + { + "hash": "45ac79636d146db4bbc591b4b5d2b4a4248e2e849664f791d766195cf502afa2", + "regex": "." + }, + { + "hash": "39f3c78528f27dc0fb92db7e33930b349b6a06ab59116c0933f8d806f8c0e559", + "regex": "(?i)^https?\\:\\/\\/starhunter\\-astralseeker\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "75ca4fe23b551b57b68aeec25b84f31b112bb855f0300398adddfc305850f47b", + "regex": "." + }, + { + "hash": "1dd855a8b170aa92302c636587f2427830f45d0548e00de7b03197e740cf9c0e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0977707c0f05851b247cda685919b7e42643f287812115289bf3f1997359828a", + "regex": "." + }, + { + "hash": "aca83f3f0b2ff33a9920d8211bf59c525f32e8718a4c3d9ddeec1bcaffde747a", + "regex": "." + }, + { + "hash": "2a488e30174632e2240169d28e57473243a74a5795c2d3bd4eb870a60a45c09d", + "regex": "." + }, + { + "hash": "5ee028e1247bc969dda8fb65aaa84264b10659b9d4f0b30e3b5cbc40682a70d0", + "regex": "." + }, + { + "hash": "59eed6a04d34364fcbd297e9ec49cc5873981e452e1cf5c161b58599e2a559c1", + "regex": "(?i)^https?\\:\\/\\/app\\-claro\\-co\\.replit\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "f929719ffdb5a2c5beabc5ae8ce1971f10aff3a4c0887b3bdaf9c97333fb421d", + "regex": "." + }, + { + "hash": "2a881b172cfb28b14116e4ff0ded38db7edb023442eb654a9aac5a61cf6f0871", + "regex": "." + }, + { + "hash": "87d8895978084dd97d35d10ebd22ca643eaee6d4998806062ffa8fe7fbea71ef", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "cecc017d6485ea64f0b9c3a2cd98daf4b4e1c9053480b4c189b5f71c90de5110", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9174[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "5ec17964648a4a7f26c0fb38ae28159ee7cd39a5559fd2f291b8e06867c6b2d2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "d12b54514325ae18104dd661c73b2124bf1ce52edc6f65b42e57862ee725a205", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodnetworkcontest\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "09157b0391c84ecd6f9ac21d5e64b8d2119b9e294410b4a55fc5c5087fcc4bc5", + "regex": "." + }, + { + "hash": "cbba0512707a0ba4b14b08f0a4d76f09b49de5d65b8e7037c11066435fed8cb1", + "regex": "(?i)^https?\\:\\/\\/relink24\\.click(?:\\:(?:80|443))?[\\/\\\\]+39d6(?:\\?|$)" + }, + { + "hash": "addc79f65706f90dcf182ee6c6fb4044471d76de0ee8ae1e6529c03b7795321d", + "regex": "." + }, + { + "hash": "09a4f08d124d4f01ea5560652026913bee3fc152feab2f6bbb443f4f04b262c0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "5e1fcbfe0a2d173c4ffd25b3c7ff1fc3bdcdaca9b16a9f0c3a3234a527e55c59", + "regex": "." + }, + { + "hash": "8894dd05a3ed6d4a5de34ca562374a17878717434db59dc3d843e471bc76139c", + "regex": "(?i)^https?\\:\\/\\/pub\\-e06d25030fe444dab34006ba57663eed\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c60232943b95ea4b547938cc8e36b10b228230b7619a15c201c387ef564da831", + "regex": "." + }, + { + "hash": "287f2b8ad27e2e7d1cace25ea253220509449ce8c9e5949ed09d4a8e1797467b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "9ca133731319d649ae32a363281687193839fc9dd7ee7349677c2fad3252e012", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "eba9545e3a2c3c71c348bbe210ae5b2c02c5c70c81f85c98b01d87f7611e68ae", + "regex": "(?i)^https?\\:\\/\\/ninalarsen\\-johanpeterson\\-7624\\.alicja\\-jaworska\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df5dcd38fcb93937c64d4b9605e7522d6f12730c1f805be5cf04a1aee8469ef2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wor\\.keiwd(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1abe84223d09413f5c2a874b58edf7ef1b99b7274ec2244049746f5dd85e68f7", + "regex": "." + }, + { + "hash": "84811e86e2c94d6e4b0e5c03a6696dfa49c2a5b7f9794c6653e4d0eccfe298c2", + "regex": "(?i)^https?\\:\\/\\/pub\\-6477f04c59974875923fe791a11b9b92\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d20932bb62fabf99075a37a66d97e007a5a48d303fec94adcb3b2224b6159d68", + "regex": "(?i)^https?\\:\\/\\/sfe\\-dgt\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "03f64b98efdd0ab62b1daf07c88d0dab598c6d24588aad0b8ab52df3a52235fd", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a729fe957dc143e27dbe8809ba5f1c8bf9d8b280660effb0a30b349faacf1a30", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "868d5c9a4ac6b3aca63218b792875d44c405b8a7f91d280a7862edc4f42f8ff2", + "regex": "." + }, + { + "hash": "5b005414dff2c5de0307cd4333c4f18fb7cae1aab37be399d93d3f518e8df05c", + "regex": "." + }, + { + "hash": "9e5d09f8601e1e0f09be0398a7f36f28e1ef8140b0c2d5773420c8e92985a5e0", + "regex": "." + }, + { + "hash": "624204836541fa348ac176eec87a7c0e9aaafa1ebe5b23158a74953b63f96932", + "regex": "." + }, + { + "hash": "0709731c1a4842ce30f7276cd73a4964094c7da6f05ba0cd7ca490c945abb495", + "regex": "." + }, + { + "hash": "b825d42e76428d8783cf2a30598b5e2ad0fe3d19b97887245b933999e57d285a", + "regex": "(?i)^https?\\:\\/\\/royalbeautiesoftheyear\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "264ef2e1e352d8b3d1fde1e225b5c4c037c0f9663304e6b8a8a1e818d257a1fb", + "regex": "." + }, + { + "hash": "3b566ae3c561f56069144143bbaad33a120931a61aec905cd4b6d777622592d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "34c2fa0b45ef5feac96f9fe7c72e678f2cf51217fc98cb7550efe72be2de3d27", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "21b8d3843e33e08de67c023de3f0b853c9ee4b6eb2974e95f5b9ba9f3dab6a9a", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "e8b935c8fd9f76424b70655e915fbfba6af0c0b66910ecebccfeaa85e49eb951", + "regex": "." + }, + { + "hash": "d099b0f2b4e0f73bba8a99d69b3320e2215b61be731db9f0dbef317b935d7341", + "regex": "." + }, + { + "hash": "7e43b76203eeba95ff85cfd061d18c3740296c73c095d9e96cbf916be9bd4370", + "regex": "." + }, + { + "hash": "71fd067b5089413c8dd475940434ae91d7d22bb4014356d833067e011c6758c3", + "regex": "(?i)^https?\\:\\/\\/bafybeihbuzwwjwfk37l7ll7ntzp7rd2dqkt5wmh7hvwiqnksxyirqyswda\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "08301a43dfe5d26d8d85ea26a903125ddf319e84bb9430eca9db1599b965f5f4", + "regex": "." + }, + { + "hash": "2f1c1894ba1ebf63edf3e0310a52cc82d44491c0f90982527fb3827faef8d235", + "regex": "(?i)^https?\\:\\/\\/talkmore20232\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8ab201f080acdea551a3d36cec682d19f4731f606fcced76fe17b74fc24892f1", + "regex": "." + }, + { + "hash": "1ccedbad1ff5ae43f21fe72fda9a3ac220e333ffbf2b217f6934d35952008a5b", + "regex": "." + }, + { + "hash": "979c82698103e066fae74a3b2bc7c3baa03d13e4fe1412b1d3c3ea55d74ff056", + "regex": "." + }, + { + "hash": "650e714310e3ffe869a1a53f37f060e46cc05991e29a40536c1e8f2b4c501b91", + "regex": "." + }, + { + "hash": "a17986d8321c1162cebce1e4407bace9bf180831b467ed23b7fe510c0a75cbfb", + "regex": "(?i)^https?\\:\\/\\/slotemas2gacorcs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ab8e38d4d8e08e4b0e35b513ff813a4fc9330252c5da29015f8b99871ba1a811", + "regex": "." + }, + { + "hash": "a7c59237f9d35fa7b20024a8ee6b74fc55caba41bcf285dcc0b284d265633e7b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?CifEHaPvOD$" + }, + { + "hash": "51590a2b7778ee3d6d6e64b4cdac205f791aa87e067a29d494ae34cdd85c4d93", + "regex": "." + }, + { + "hash": "bb37d2b32802d214b71c71c4c2de28d0e954dbf02672af42644470906508af34", + "regex": "(?i)^https?\\:\\/\\/sabbcshelpcs\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "75cdcd2720f7b4f6f48b6ba52aac939483ef8c6cfd22bc82f5205296bb50bfed", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "197d31fb6ab7dfeb61aed2cfc2adcd2e60728b492c6aa28b1e2c037baf925de8", + "regex": "(?i)^https?\\:\\/\\/slotemas2gacorcs\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2f8f20adee7515efd26509a962c43d980afa1236832b6328f06539d0c5c0afc3", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "f7cf8ac4cda181dce86d5c1a046aef0ca413af6670cb24e4da21ca57550fe51a", + "regex": "(?i)^https?\\:\\/\\/slotemas2gacorcs\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "d344daf52e938b9aaf8be0f56f555cd9c1ca74709326a8a7127ea9d7089c2297", + "regex": "." + }, + { + "hash": "99506029a5a57191123accad96c6d0aa40defc0f58178b7236a04db9e02a39ef", + "regex": "." + }, + { + "hash": "78e3dce1738228b640792b1bcfa08e2f3d6b0018fc909066cabd1abfda3b6500", + "regex": "." + }, + { + "hash": "026f2e7f7319593299bec0c47bab3ee28d7cfa2fccdd0d514ab03d5df0971364", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?rid\\=sABesvT$" + }, + { + "hash": "092064b862592815e9b0be5ff283d9fce54a9be88efdb7de0ce18b3e170d90b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "642ef37ff2bdf096f26ca153c2f6dcf4b3b65272d0689288ef08072a7cbe9f13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9443[\\/\\\\]+entry[\\/\\\\]+register58377(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fd8450ba02eb3088512453499305ee831a259165f16af50f6b46a10511d5aef3", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodnetworkcontest\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "0323c0c4c01f42fd9e5c06f0c912d5a7467bd785061c557a065e8b106f36d38f", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "90103d94a56e67a0b403f1a7bc29a3e6dc78ec5f95a3ccad2e1386712050fb07", + "regex": "." + }, + { + "hash": "fa2353d96382ac0d2a565ab565825687c3da40492d431dcbdf8f300dcb916491", + "regex": "." + }, + { + "hash": "5b294a8883a502fc0a4909426d69b701564611437becec9308d875e2195f52f2", + "regex": "." + }, + { + "hash": "beff9671bf386edc26d1e02004db6ece7d6ce90c2163a703d4c8e16cd8b8f6c8", + "regex": "." + }, + { + "hash": "778677fdbc26a47e97d908e2294e5f50e1c2413cd40116dbc4e87a2e258e2209", + "regex": "." + }, + { + "hash": "3d21537459fae68ee230131a4e7ba164574c49bd1262ca8461a81f880b87b088", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d7eef0402946a69a19f7a6dd350fa72872801356befe14df051212f5c15e056f", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "e9108def587c45fea011000ae903fff66950aca50a069e320c99870b47bbe189", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Trust\\.zip(?:\\?|$)" + }, + { + "hash": "ebf2c61877e6fe665d4fa097e55d5453a0026d626c6bb2a5df2a06e43b860647", + "regex": "." + }, + { + "hash": "4d12c039a0b397db4384f58ee20578946015c10de5b8380ede1381b9b2e8035d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "50882ce26a6e145fcd1060f0d631518c92cd40b2d399128dacdb066f70fbaa28", + "regex": "(?i)^https?\\:\\/\\/vote\\-foodnetworkcontest\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "39ccf14657db0d00cadc62b871f7e5b9d33562de3304e2e409d0e4130afe1208", + "regex": "." + }, + { + "hash": "bc9e9c1ac27b47f55e427a15754c7f85ea7b545095f9e4697a1ac77315f631f7", + "regex": "." + }, + { + "hash": "1bac698cd6afa62091d9ce181e1fdb5bd51c6a017d0fa11763219a90d6580205", + "regex": "(?i)^https?\\:\\/\\/sabbcshelpcs\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e794b6a6662cc7830d620094725a12a296cba3d518c214637b232c59a8738741", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "e9108def587c45fea011000ae903fff66950aca50a069e320c99870b47bbe189", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+t\\.zip(?:\\?|$)" + }, + { + "hash": "0eaf1b97e18fe3cb4e898c32469b76dc3add843899059c203285ba5364dcd682", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bonos\\-mx[\\/\\\\]+spinne" + }, + { + "hash": "0b3a9c0613a23a06d01023001f38e0796bb2157eafe42624e42a1a3edd90b359", + "regex": "(?i)^https?\\:\\/\\/onlinefoodnetworkcookingcontest\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "7847134ef2ece1b17ec40dd3da7f747aca898bb95417405c71f83f50ddb1fb16", + "regex": "." + }, + { + "hash": "9ce947054f92360482e167c38f49e1c5238608167d644479695638a847f29acd", + "regex": "(?i)^https?\\:\\/\\/upgrnetcs\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "3642f95b2165b16be9a159175a4008b98b92b416637387153d7cfb03c0606073", + "regex": "(?i)^https?\\:\\/\\/upgrnetcs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "845d71451b9c02dd413f95b70e259e860a645d92fb602aaf732f2935c2a197a7", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "f6d783057ad377c895bb322f4816765d932957c23f0d1ab4778b219fd9468268", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+join9[\\/\\\\]+main\\.php(?:\\?|$)" + }, + { + "hash": "f4b57885bc1a3d422172589e69eb6a18b853eae0784ffb601f95da227924252a", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "7c35a2abc9ec1ec9a3622130491bc00615d323404a3a931f84fc0459b1f13843", + "regex": "(?i)^https?\\:\\/\\/starhunter\\-astralseeker\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "33908489ea39ff19ae52a295283a0fd37021a70ade495743c1600bda73e68f4c", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "dfc78ed7d842efea3d52cdc359a008ae577f699c7e8ac6bd096c9954738b70eb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "7a37a34c033f931cb4c46ba77aa84efb9349adc915c89d08957f100c3c63a94d", + "regex": "(?i)^https?\\:\\/\\/starhunter\\-astralseeker\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "7d61f4c1f84c65b3b757f649e51c0f822467b823f4120145a76b8dbb17ddddfa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "8c1957a13ca39ecd377ffa03e693896cd2084765b6699a6936883de9ea48e796", + "regex": "(?i)^https?\\:\\/\\/matadorbet\\.matadorbet\\-click\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ae6c6f26653f6b72828aa5c035f19e1c2f2a1fd136ec36f9e6055b5c4188c11b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "2cd88fa5c53b459ae8124f440c4144e16339f86e5e7456914c3383fd58189834", + "regex": "(?i)^https?\\:\\/\\/parlinkigofukx\\.top(?:\\:(?:80|443))?[\\/\\\\]+fine(?:\\?|$)" + }, + { + "hash": "5860324a41b0bf09e33280e1590119f64c920bd2cc2377e66ada9a37d2c671db", + "regex": "." + }, + { + "hash": "2cd8e2e3009b48049d555a83269d537890f8f03b0110e5405de4e89cc77a4085", + "regex": "." + }, + { + "hash": "8651944001bd85f40d97e3267ad8b30342a23d7a3af40ec1060d093db585a9ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "178d48e91624e63de24fecc20399c33d6319460183d928fad8fc1dd47db21a2a", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "fd2e1c446add21f08817308099829b28740b2af564e0f2ef9228e93adc525480", + "regex": "(?i)^https?\\:\\/\\/sabbcshelpcs\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "a19955bd25720ddc0215a310c49e4fbf5df9dcf8c37e7a0e9b20042fd57cb4bf", + "regex": "(?i)^https?\\:\\/\\/firstclasscookingcontestant\\-sc\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "d716e49787aa1ddcc99ccb832bf7278ca8d8c9b4cd72938a0d1645eddb08a0d7", + "regex": "(?i)^https?\\:\\/\\/talkkewu2024\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "0e5e1e6c89d82cb462b3b43fd478e2a0b7ebb25340be2fc2db7790d3f308e11e", + "regex": "(?i)^https?\\:\\/\\/jojoguncelgirisim\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "0cb2eb72deca9d7bf10b5a13f9c721e02fc2d10f4e47288910af5e98e13fd1ce", + "regex": "(?i)^https?\\:\\/\\/medi2afire\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8613b67bd61fba05bc6c3ba7b3ea9be883bc4d4545f8bca20decceb6f3856eff", + "regex": "." + }, + { + "hash": "14d9c41eab939f07bb34f906eb40d69af82ae8e12aa989eb3316ee828485670c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "546ceb20b83d4788553dd7cc2c5c002c02a8b759360fe9415c86eac6def2ef28", + "regex": "." + }, + { + "hash": "9cfa77a996c99edf655c1d5648977c4f4abedad30f0d97416ac950eabbb32ff9", + "regex": "(?i)^https?\\:\\/\\/sfe\\-dgt\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "e9d68443e2597d26e2ae6bc01176f62ffe348349a25dc74959d3b9b843dd77e5", + "regex": "." + }, + { + "hash": "5bed8de491f38bf0def684095315ffb7ccd082b83b1d8b872c4b2ab60ada7ee8", + "regex": "." + }, + { + "hash": "c166cfce3a257cf643fbc00ce677a3242abdc02967c55d9646c72d0c0934a938", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+select[\\/\\\\]+193409573\\?$" + }, + { + "hash": "38a2d4345692d52633652af307c216fe5e4ff56a9fc49bf94577094988c80870", + "regex": "(?i)^https?\\:\\/\\/sfe\\-dgt\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d15b4d5262122bc29733d6a89600ca4cfa999ae7dc8379861ea808259b567bb0", + "regex": "." + }, + { + "hash": "cecc017d6485ea64f0b9c3a2cd98daf4b4e1c9053480b4c189b5f71c90de5110", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9174[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "682129e6b1400cf2f758970543acec8d63bf187bcb94f9f7412dcc360b4e43d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+subsidy(?:\\?|$)" + }, + { + "hash": "bf1f006126cb196675dee206ae3152069ae5046676f275ee9ddf1efe8f64f040", + "regex": "." + }, + { + "hash": "814a981d19dc3af36b1bbf05c4ccabf5d2db1bc667b542a319fe958715e7da26", + "regex": "." + }, + { + "hash": "89a77c6d5aabe1da45ba0b5e63971dd09b08d993914de8fb7da89606c9bf9d6a", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "0a160e70fa5d6b8466ad643eea8e956acfb51439b6ba79c413c128851f6e98b7", + "regex": "." + }, + { + "hash": "3723aca639760e81f74be3df8b5b442fce3da9fa0cb2707bef6706b146e81b7e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+conra\\.php" + }, + { + "hash": "a49ba61a5c3a3c95899e45d05f930f7779981e7c4ce469d7593a76b79a18e2bc", + "regex": "." + }, + { + "hash": "22507a42eca3f169620d0a626dded8ba62cbdbdebd48467ac84e4f9e26523b74", + "regex": "." + }, + { + "hash": "2d80ca7e99aad11945c77c774dbb5eed438a65997691d188b2d79dac63167251", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4f72bcb6dc6136bc90539622b0b5011229e7ccc64eefde5ba785cd63e562894e", + "regex": "." + }, + { + "hash": "e56cbc92dcc44bf97fc0dab0c2a7387cf203e591c34af1d7feca404ce2f62c2a", + "regex": "(?i)^https?\\:\\/\\/fea\\-5d14e\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "7f9ade8ed5b3c4e7a3660d0b12d0305f93b98c3d1a8f8975271561f93518e07c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+v[\\/\\\\]+s[\\/\\\\]+a[\\/\\\\]+session_index" + }, + { + "hash": "341c42d0228f0c645cfc97a44003f738300059edd83c3a0078cf3466df1ed66d", + "regex": "." + }, + { + "hash": "ab9adc46ac50f72885c5d569d48f467184d31397341cdcfaf5c7aab0b3232812", + "regex": "." + }, + { + "hash": "61a40a8e66d362b9e6fc6980c21398a9fad63c44bd825ba58765492225e201bc", + "regex": "." + }, + { + "hash": "1c2ef90195a8fa4a311d9bb9bee4c2ae33af56977bd7251f4a9c5da273ff4c2f", + "regex": "." + }, + { + "hash": "f7e4d4fa325a50523865185cef759c734dfdeb75817f422cd8456bd7f2efcc79", + "regex": "(?i)^https?\\:\\/\\/pub\\-53a5650c135c41ffaf6b386276f40259\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b97ef2ff169cac84e5fc921e3767e9626c6f06a9f8ffb0a7c391bd96cbcab299", + "regex": "." + }, + { + "hash": "134e85a03d0236d5569728102eadf0a679a56fbc0762c6349144ee8b0b6890bc", + "regex": "(?i)^https?\\:\\/\\/pub\\-a953478644e1454ca2acbe30b2ed4fa2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "38a4acb786565e2c46d04683d015a872a1eb3c352fbd1959c978462e19d5525a", + "regex": "." + }, + { + "hash": "ec637245569d81f1130fe1230a5a967245fa0e4793860098331accb72242a388", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "6bb3e8545d871fb9dd5b6c2ae008591c7d9fcd7611ce9b3f5e330f93304d60df", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "3be3599cbafd339ff244746f1338fd695f4d4031fbaab426b7080530a9ca0d21", + "regex": "(?i)^https?\\:\\/\\/pub\\-006ccdc4b25446eea996c37666ac3aea\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "80e0fcee92dd5975f67ce0f3ebb47c473d83ff7849ec7e242b9c9458478f1261", + "regex": "(?i)^https?\\:\\/\\/pub\\-585ea4de4c2041c5b707587d31598249\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fd75bf371166fa3df30633dce173cc37085ec30344561743032a35d33615431e", + "regex": "." + }, + { + "hash": "f1f1b94a95e9dc3e7f566b44de33c5a134247cb3acc1ce538e8fcddeca39c251", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "01b9ed175a63a2cb3acc1c0f3df1ce44ed3906c808ddee3810e884affd074c17", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.si(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "877fd0ddc6c0e7567e45af2cd52c568f57e02fca6f842e2c3bc0f6e988707662", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m2s(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0944824826ceb391bb3d39314893d07026695928d4d0fb0647c5473aacc230bc", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.mx(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "a9292ad1bc9a471216141d7ab4cf08b535ba6d635ea98b6f80a800951c742be0", + "regex": "." + }, + { + "hash": "041f31ef4438441661475a057677ad96d9951ade82f007456f1ad456ae755929", + "regex": "(?i)^https?\\:\\/\\/currently0367\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ece4f7ebe62bc8fe371afa296a310838ec3164a782842d9a368d6913c10a7c37", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "3db21ae5f9af6afc095f3848ea568077e85d6e6dc624ec9ca14870c480cd22fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eece5a372501e8f14de473bd8f61dcbb0e85833e34506824db6f2d4a7ee310e3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "aa4412be4a710c401a37e7cb45cf7ce8d62671ab537f9b195c7eb557eb1ec212", + "regex": "." + }, + { + "hash": "643711ae20b63c50b7d3efd03f25373a71deb025e83d207fda98f1c6157d1f73", + "regex": "." + }, + { + "hash": "4f6402d974947a77cbf922980fc8b7e8d747b001d420916bf6eb8a9b5dc73fa7", + "regex": "(?i)^https?\\:\\/\\/pub\\-c508c82361bc418eb245de5446f83921\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "32886e88c909415c4d01347a6838f89b06ed911cd0e14c75f5b73ba6f49bf882", + "regex": "." + }, + { + "hash": "9e6c46b87c3a5780d5c8b1b425df25b8190ed934c76b0edfbf037af2dd318755", + "regex": "." + }, + { + "hash": "7e41ae5ff64556af3c9a2878e95f4b3d9c223fd75c88b11c40df358635323487", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6b1fed3dd70fe050518d2422e4553a2fbff33d1d36715102d20fe94d9000f734", + "regex": "(?i)^https?\\:\\/\\/pub\\-dfe10178e667487cb0844af52c944e4e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a2873524fa0669a56ad18e077aa38813dcdf67f9e1beebc4931a72125ef81c6b", + "regex": "(?i)^https?\\:\\/\\/fea\\-5d14e\\.firebaseapp\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "042d10195357990a79fef2885c4051f86e4c5c9a49a4865b89ad141a28b4fe28", + "regex": "." + }, + { + "hash": "2c54c38cd06424df371392182f6741f3c9433b591851c3d10172e720fbb25198", + "regex": "(?i)^https?\\:\\/\\/clickreview\\.ai\\.in(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b669f4c52984a025358d54b18b5d4df263a6dac6b3a9d6272074811489f4e85f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+wc(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3ceb0eb481763341c07b3ec31126ab236eacd1ae4520f20b8dbcce3eb4749f05", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\.qzq[\\/\\\\]+\\.zqz[\\/\\\\]*\\?3TpWYLx0S$" + }, + { + "hash": "dad383784c8fee26ba4b88c2d57987c9d020228068e4ad4a45e4676f75b8b9bd", + "regex": "." + }, + { + "hash": "f18850095c7718b7fffff90b11d75e35c6c2384a6e19109c0f4f9ce4458fae14", + "regex": "(?i)^https?\\:\\/\\/pub\\-24ce0facbaed46e68eb782203c9808c3\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8da721beb95d17e61d077ac6fb78065903f5a4a449f3cb0a5c8319890de8bd02", + "regex": "." + }, + { + "hash": "2ff23a06c19e80dc0cbfa66ec4ab3829ed8cfb948c44e63f5ebbb9467315f642", + "regex": "." + }, + { + "hash": "0fd0b62f8de399e8a423120a62131735a55f84deb5a1948a430b36a166e34a54", + "regex": "." + }, + { + "hash": "673b8dc7ce7756a6a4273e368c4b5bc1042f4274c3f253116e97448b2c14857a", + "regex": "(?i)^https?\\:\\/\\/pub\\-c7f7e6934eb244899aa8d88981d10c94\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bc55527884bb5641f710fbed2363c2af6ad8c791ea1956db1be5798c1e74dee5", + "regex": "(?i)^https?\\:\\/\\/pub\\-da245c1b4b044adb8d9b1e58b246fab7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "670d02d99aabd2a54e1d7c63e23726d577fff166818d92a604e25c53842e4d3f", + "regex": "(?i)^https?\\:\\/\\/pub\\-996172da66d34a0ea882071eebe352bc\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d631b7cc04ace696ddae81bd5cec03e2713b57f60288a2c09f6c3f5a8c9cc822", + "regex": "(?i)^https?\\:\\/\\/muddy\\-base\\-e0b1\\.kanaloa\\-dresean2089\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6ce44a33762b6b7e30f1dd0f5728bb5b56743f8bda40bf36de6ee1e510e08dbc", + "regex": "." + }, + { + "hash": "276b4a1596dcf8530db7af6aaaa29c8be55bb461747e12c5053e105b0abaa01e", + "regex": "(?i)^https?\\:\\/\\/pub\\-e207db1c9c5b45e8900e3c4789558b10\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "031862dcf27bf8e631d19d6a41683527e9ecaff2dd96ce1f8741ac944de28cac", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.li(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "ba5f01dabc68b8d139f617e60d6716a5f03103d73f9c9c6feb5f233ce3cd45c7", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.ch(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "243b55dc5db148d44ecc228ebcd3419cc58eab9090579ddc0ca4c1c6087af8be", + "regex": "(?i)^https?\\:\\/\\/talktalk68\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8bf109e4cd482401bd8b72d9414db01773abca5648c5769653bfcbbd3fe10d43", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "9b9723ed8d69943220343784cc63f1f37374861105917ee53b5b0889fd567efc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "93561278f9c1e9c73f46fe86aad46131f2882339720b45d940a43186d07f3073", + "regex": "(?i)^https?\\:\\/\\/pub\\-1abc1c8b35d5420cb789e922413e42de\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7bfa87d9017a1014ab271791a4c1309329bd7ffc546e028f8964385fd6507776", + "regex": "(?i)^https?\\:\\/\\/currentlyhomeattlog0000000\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9cf3eb5b0acc8ea9cf4362640b3c84c875dc5ba3604f7b4ee76e5b16c19e3e3e", + "regex": "." + }, + { + "hash": "f68df643ee4126cb769034622f99163c24eaa75f77ac1d4b56130f604112a47a", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "fc98dc72f3e5fd37b0189e4fd4b6517607cdaf7fd3aa835b53d0035e7d02f1f4", + "regex": "." + }, + { + "hash": "542d75e33418bda33c6f3b3e2bf5ad090711625d73c67a5ebaca3dcabe68a766", + "regex": "." + }, + { + "hash": "b69f4264d3c7bd3ddf9183147d132a6bd6ec8221f1ffff8c402c7b072c76c066", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "d3dd5ae486bc546661fedadcf90b59fe6370ece7138acbe1a8a50da722638410", + "regex": "(?i)^https?\\:\\/\\/currentlyatt8\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "2f45e4d5695dd2246898116b41c8fee24be72f91119b6f3b62f28f54f271eaf2", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "2a4868bef2bf9279e5dcf40f7c5df0a42fdb69f2b429342a33e3a145b9f99d00", + "regex": "(?i)^https?\\:\\/\\/pub\\-7f9c4c5a7c0143c8a29097a99ba8db43\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dbd1acafb45f8dbdfa6fd53c6f6b884890b9f18fde986b9844d9bbee07870f2a", + "regex": "." + }, + { + "hash": "f350357e51f4d5ade8594f1281dea0eb5d78c243cb9b11cc5432da05d5c19f7f", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.fi(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "efe830632980f7c4182d4f0556bc5c8b0d19c7fa4ba93ca474863cec0548f217", + "regex": "(?i)^https?\\:\\/\\/mail\\.159\\-223\\-3\\-121\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6b4d0112d66f91ab1bc31e82a4ce35167d519c22498be7b86848a17837808b22", + "regex": "." + }, + { + "hash": "2c5acbccaa948e5ce3a7dfc63d516de2aad823eb7c2cb9850cc49249ae536b5f", + "regex": "(?i)^https?\\:\\/\\/pub\\-72c08cb88c2940939f781bd87ee5b4aa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "eb541df60ab943925999acb15c0ff3325c0e0d42372ea91b546cf8cc13ef8cff", + "regex": "." + }, + { + "hash": "d12bff06ee0c6330e537cfbfa829deb941227a6a9fd21e5c0b40f6371a221e34", + "regex": "." + }, + { + "hash": "32b572dfd4a16d569d81a86699682b874738a79add75c0b5983c0ad8799dfa07", + "regex": "(?i)^https?\\:\\/\\/secure\\.account\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f437b4fb438e067266661ce8474a7783d29e96cf510c9720caaf35570c5e49a0", + "regex": "(?i)^https?\\:\\/\\/pub\\-b20c0cfce7c44af7af28014e59e90bf5\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7e2a497a19a6b1e2b4b48f463a2e23512ea5c33cd52846152550fa51026d56f3", + "regex": "." + }, + { + "hash": "339c2f393d1528f54d77784099f8f0b89087723671e27f503d462734c0af8cb1", + "regex": "." + }, + { + "hash": "a7f15c9987a496c6fac7afecc0daa9096aa40ed19c3928ed829994872c197c35", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.pt(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "31609e2d795b739919df383b67ef44cef4cf83c1277dc633a003eb8c0a9f7b60", + "regex": "(?i)^https?\\:\\/\\/pub\\-4b8c37d5f65746878138f2a1665fc704\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4c91f50b7dbac3f4a2c1a18cb5a54e06bcaa9ea79ee4082833b21f643d96253f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+zZu4l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "62fc46bb0c67e9f33ae2178b876bc52e81772affb91683cb00ddfb73c1ddbf0a", + "regex": "." + }, + { + "hash": "25d2aedb6e0c23d7411f6e6fd021546945fed643957a4ffcaa7590c068d0a4bb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+xzz11(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "76d71d5081630a484765252537019afd892fd2e7bbdea3c02f137ab11a221092", + "regex": "." + }, + { + "hash": "64bd52f330ee3f5e39387381485ec1f9a384afe2285813522025f66e65adbded", + "regex": "." + }, + { + "hash": "344a69cf2e47e583ac97a96bff82064f337bf2dddc667a2064840398b861c149", + "regex": "." + }, + { + "hash": "f41f14b2df2653cc0fabe499ca778f1e9e37b5b0ca5da984d577f83173af5e42", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8a36f0b98ea57ed9c663586176ae279532fb463c5f203580dfe2c87b7c444352", + "regex": "." + }, + { + "hash": "74e6825552a4a94dd6ecd89d4e4a6cc2901d6b444d43510d5732fc32dc112573", + "regex": "." + }, + { + "hash": "be81c04e98de8fbbf4f0722018471d4491836c2ed93a94cf380eb5fecd22d8f3", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.ug(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c046308cfc6a83bec3dd5a41d8e3572e94089f1a87934577b8160387b4e82d5a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cb5f1(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f35c94e2acb65f18578b47201d8372fd02ed98ce2ae03c06074e88a9730e7202", + "regex": "." + }, + { + "hash": "1fb52ee28f84d96381c6bb8e27acc96f1ec51211c517de1e19fb0a01a9c5024a", + "regex": "." + }, + { + "hash": "6fed92b9f1955c9e8c4156dddadaebca20d328b160a37542bbe8687abe6032fc", + "regex": "." + }, + { + "hash": "292dd3e33ecdeac9f487c37b0fa245cc8c8b2a7fff6c2f12b82fe8407c3030fd", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "e73af45940fd384bf839d84eda1f08b8343b7aeda3664d5d423d65e26c885564", + "regex": "." + }, + { + "hash": "9b57c81cc6013ac185486e238fa8065c9e70152d4d91adc0278e9deb8b5c3363", + "regex": "." + }, + { + "hash": "6fc5d76359d156e9fecbc087bb0d77ca1f4aca1b5d449859c400e8bef73bc8c7", + "regex": "." + }, + { + "hash": "5a7ce7cb9c465af0611e534243cb4b64a58e759eebc52b96089f31d638f14f5a", + "regex": "(?i)^https?\\:\\/\\/fdges\\.cvfbgfghwes\\.top(?:\\:(?:80|443))?[\\/\\\\]+fir(?:\\?|$)" + }, + { + "hash": "29168f82699f4fa38271482adb312ad9001b2edbb84810c565cefb9abb93cd23", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "62fcee9942764fc02cbeaecef5a691cd6ef90de6197278fc12218627cbd02059", + "regex": "(?i)^https?\\:\\/\\/pub\\-47993fd7eee048619046236bf9216090\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0751ac10cd623221375f0269841b41bf65c99e29d6b0eacf842f3e0f6267a403", + "regex": "." + }, + { + "hash": "f7f985ea0da4fbbf32928d53f4ec7ad7eaece71065af895d9662f377702814e7", + "regex": "." + }, + { + "hash": "e96e71fdcc0255cbb5b1bffa9f3d34beadd0331e24c721ff8b96c865b3c443ba", + "regex": "." + }, + { + "hash": "f8f09aa5cd1edcd01a1dd2cdcb0991723a548661cc3d4937e2a8a330f7b53717", + "regex": "." + }, + { + "hash": "55069e6c234c3e10358c48951839e2a0ac7d5229bd0310442a4c997ac65670f8", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "725987638ccd6ed6d32e27b5e2ba2bf65e15026d96af50107da1ce761dd84004", + "regex": "." + }, + { + "hash": "32b572dfd4a16d569d81a86699682b874738a79add75c0b5983c0ad8799dfa07", + "regex": "(?i)^https?\\:\\/\\/mail\\.secure\\.account\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9999dd1e18a05f8844dedc6fe87adf1577b59f753f0467a026c4f8a09141ce55", + "regex": "." + }, + { + "hash": "4d12c039a0b397db4384f58ee20578946015c10de5b8380ede1381b9b2e8035d", + "regex": "(?i)^https?\\:\\/\\/vpass\\-komsz\\.jp(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "324e39908bb41bd53ea994ef89a9854d39a3289dc66a3feec1c6c304f3b436dc", + "regex": "(?i)^https?\\:\\/\\/pub\\-fa2f8fe55a7640c3a68736d926294830\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "015fb63c5312dccb117db18548fb8b35524a4770d6ed7d00231f3d1d1a5d3ebd", + "regex": "." + }, + { + "hash": "1eec78328204ff0b61edd9c4ea39370c553b5baecc3d6ea2bdd8b2742d7e8a59", + "regex": "(?i)^https?\\:\\/\\/pub\\-87e95b6c746d4f758cf64246fecf1595\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8051cb2b842cc7b5024347bc9873933e5a512ffd19f042a1cee7f534a73208a9", + "regex": "." + }, + { + "hash": "9d169f41b7b960b76226855df1741c4871d8d333ebeed4c65e53152c36e3acf0", + "regex": "." + }, + { + "hash": "a824514a0051d0937ebc359254bbe04ba344bd4724c0e1de4d9a1e284bbd3a6e", + "regex": "(?i)^https?\\:\\/\\/cloud2\\.20000903\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "8af8b8dd0ef905257471e7d85ae1bc22dd4400a33313983ad4e6d0fc3c83aab5", + "regex": "." + }, + { + "hash": "a83b4260854bdd9594abd4951058047ea3bf6fc08cb40844773b91094b0310ef", + "regex": "." + }, + { + "hash": "8361fc8d92305d8c2512be548bdb8bf7cc2ff0cb62cf40597fba5346e5efa6a8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "886d7bb63adf374686027fecdfeba6a68f0ddaccd2beed90c831b5ac7cb1d50a", + "regex": "(?i)^https?\\:\\/\\/mr\\-mysterious001\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "9c765f2abe91ffd5aba1b2753e0cfae4b33a7bd564a77716ec587014ba9f8fcd", + "regex": "." + }, + { + "hash": "7e516a07dacc116b7c81c32b9e0ea64ee817c4b2d619161f83fd2108063c0f2a", + "regex": "(?i)^https?\\:\\/\\/pub\\-2c1659d16f164695812efc59907fb7ea\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "026f2e7f7319593299bec0c47bab3ee28d7cfa2fccdd0d514ab03d5df0971364", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?rid\\=P9TRhOv$" + }, + { + "hash": "5044342f675f585304a485c7d6e9a40ed15c791188933e153270483d9bdd77f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+offer(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d0f309e6a798e0fac1f0ae7ca82e4856373b953ee0234395d9d2fe28a3980b1d", + "regex": "." + }, + { + "hash": "444ab6249fa29f093e77701dbee0f3820dfefa67feebf43215d592f7afe3c279", + "regex": "." + }, + { + "hash": "230ffcad680f295917d81c3073a691a52ab02c372d7100a977821ce89d3ea2c8", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "db73a8da20c4e535b785981837d378ddffca867298900c32d832ded6eb1b861a", + "regex": "." + }, + { + "hash": "a8c39bc5fd418c8ef28a0da33b4719685d65b309a715ee085566cc82031d2be5", + "regex": "." + }, + { + "hash": "3169f2743b007c7ea4d1aa18e3a660a081fd4159d0e708ebcd0eff7117fc237f", + "regex": "." + }, + { + "hash": "79ced82c3b2bd1f2071899e158228f2c038e83f34ca40f92f00077c494034a93", + "regex": "(?i)^https?\\:\\/\\/att445ejfedj\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ea3b1975192a46cd32e710b646c741d27621710fcc5a9bf0c8a908e4510c7479", + "regex": "(?i)^https?\\:\\/\\/pub\\-2a435fc6ab4a43e2b0d4218a63869615\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "35852ae6e42ef7de002401983bccd71e8fd0bd320a7c8f8d49948979cefc51f9", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "ca2162262ec32eee1c9db4a87d1e2f2c6c35ec08a4e20b04f66df80a38ac44e6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bell\\-webmail(?:\\ |\\%20|\\+)+(?:\\(|\\%28)2(?:\\)|\\%29)(?:\\ |\\%20|\\+)+(?:\\(|\\%28)1(?:\\)|\\%29)\\.html" + }, + { + "hash": "7a0eb54ac51d77c4604b9eec82181d20f5624c1358b3af60ef2b09ef69250e49", + "regex": "(?i)^https?\\:\\/\\/mynetzero\\-a217d3\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "0f894620cde397868100d546478c77462a7b2089412e1275f3a9ab14cb695e70", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.com\\.by(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "8d3b5a4543c2e8997658ce7647e4e8d49293ec517fcaa84f8121267a508b84d9", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.bg(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "c383cabbd011dbe6cc81f6acc0048f364de026a5652e3f58a3725573bc9ddf8e", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "35be8926aaef90b4591db3860a8f381a832bf08a4ff74230265c6bb6500827a0", + "regex": "." + }, + { + "hash": "41906df09540f288a363dd94cec98ef1d5da52070d6354ec7e1ffe2d7bffffe8", + "regex": "(?i)^https?\\:\\/\\/pub\\-da40760594a7483fbe21f490bec624f4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "501d94cf8e21baf957613b65f2040ad967f5bec439dbde9868f6e04b01aaf1f8", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "5044342f675f585304a485c7d6e9a40ed15c791188933e153270483d9bdd77f3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+offer(?:\\?|$)" + }, + { + "hash": "32b572dfd4a16d569d81a86699682b874738a79add75c0b5983c0ad8799dfa07", + "regex": "(?i)^https?\\:\\/\\/www\\.secure\\.account\\.robinhood\\.50\\-6\\-195\\-55\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ad83a0b7f6b3db4adf0aeb6bbfc0efc723ca769140a1c3ced8aa70323978aee7", + "regex": "(?i)^https?\\:\\/\\/pub\\-0512c7e21c4e44bd8457d6128dd0b7ae\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ef1d17d48eb1a55a88546a26b4b63725fd505f532ec0d8a97fb1c33c021babc9", + "regex": "." + }, + { + "hash": "f09b668b4cfa63a755d9b38fa8a1adb5af7c843afb1b349c905c1f20b918ccf2", + "regex": "(?i)^https?\\:\\/\\/jojogiris2025\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "20c9d8cd88ba73ca2c0caf3707812cb0af716fda6fd12a09693c97e3d4bc2425", + "regex": "." + }, + { + "hash": "ef35a0151c72433ab2b206d5453f902462840d77f750fef6d5f9ae54a7412633", + "regex": "(?i)^https?\\:\\/\\/pub\\-56b62c04744c4e50bf5ff435e21fb34f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7c44ddba8f6de6d879aa0a9f805d9d2e8864190ea8eb814f224f524a33ec87fb", + "regex": "." + }, + { + "hash": "fa9e37b226295a7cfcc7a8a1ad724870bc8e4efe8b4f38bc1acc05dacb0bb865", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+str2024(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a0c0f59ced41c3a214e4075539f6d0a5c843204106d327b39efa18afa0a89764", + "regex": "." + }, + { + "hash": "11e549f6d8e5218beaaba508a66af5958f938f040226351d377fc92dc1470614", + "regex": "." + }, + { + "hash": "b97ee9f33321b95905fce7be64b6db69e9041df5afe6edec06e23e29fe8df600", + "regex": "." + }, + { + "hash": "b16f6945706c40fad9348dc8cbf91b60fd4d07fc75448e8b972d976c9837fe70", + "regex": "." + }, + { + "hash": "559c1c239416715394082491b786bd6efe4e600dc8512dfa3008188c20fbbb57", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "c974eabeb1eacd10491583e9e9be24062ef86ecec8039b5888a9badc50e08f65", + "regex": "." + }, + { + "hash": "251e07674cdf37a460473f5203f44d8e5a9a0a3421f9f2dab36e72a22bc9f399", + "regex": "(?i)^https?\\:\\/\\/pub\\-0466c2761d1042bfadfb4fcbcac2a1ed\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b67f3aa49433975fd388e3bcd2d7890cc32e62d6a5acc9a3364164db16084137", + "regex": "." + }, + { + "hash": "62e18cfb840aa1478e65a879328753e5ea67b25c6cc3b928e3c6731b3860d07b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?ap2024[\\/\\\\]+cgi\\-sys[\\/\\\\]+defaultwebpage\\.cgi" + }, + { + "hash": "75abda4dbd5e23422e8d82fa07a5d3b466b5fb761b36c46ce8e8da4ce06b266c", + "regex": "." + }, + { + "hash": "d9c4e218f0dfab352b77e894a63ad344943d6c9d6f39adbd29064f02445bed68", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "9ccabd675d5d880fc14029cc9fc142e27c8633ffd6f68c976d7e981559ecc068", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3d41102061733e7d5cc99596eee9b095015efa983d95e76be5ca8af6b0c0cc91", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "e49155e7dc18c451d7a35c1f46158b181ce423f4ecd3968bedf421f9a4ce18f7", + "regex": "." + }, + { + "hash": "b7d4629ed5a1c9ad39c83c2e9a548c52e07fb66ed3cda5aee9afe93dc5225549", + "regex": "(?i)^https?\\:\\/\\/pub\\-ac9c422ce85c4c6e879cb42b153593a7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d1ec850ecf6079a19cc6452c4dcb8c4d0f22f392b840a533774ab7c24c1f3ced", + "regex": "(?i)^https?\\:\\/\\/pub\\-e5a970f71a9d4e1bab5d59366d00014e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "98a9ffd38dde7f81eb7cf29a48123f4e029b6fa81a6cfaebb36ddad2b5e1cc13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "bb590a3a4be36be10032caaadb880a80b1225fb5dadb356ac323cf5d29bd3997", + "regex": "(?i)^https?\\:\\/\\/bafybeihor3mc5h6ppvh3aok4yowv4zebdtykqcemx7a4ii7jmuqubwnbpq\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "01b900842d6f4ebb5601ddf14de1bfc9fde9797a45c935e62c376e99e169150e", + "regex": "." + }, + { + "hash": "859bbec8c85c59c8e25d362eb4c0a482b39f59007cc9285c203edbc05caaea09", + "regex": "." + }, + { + "hash": "fe60cb8eca789fa5e68347195db56309978ade0e1e7f2687cd1389648038fdec", + "regex": "." + }, + { + "hash": "e399cfb4d0694f87267f3cc3b5f37ff39f38ca28aadfc38dabb4661049d9c330", + "regex": "." + }, + { + "hash": "6481beb9d1b6db7561ff265b0381e6531b165b9390f062b9996f150110959a8b", + "regex": "." + }, + { + "hash": "f8974b5e753d613a74b3c62333f785d2920f38d03632fcd7c2ed97cdc2849696", + "regex": "." + }, + { + "hash": "b355bb6165860d98f1fa45d0ee65eb656e1c6a5f229192ba1ee8d499fb4a312f", + "regex": "." + }, + { + "hash": "1d9d1b8bc9d34f5c63bbe6fc16d26857c3596d5e6e1f66d35f6a846d99d16a67", + "regex": "." + }, + { + "hash": "1cddc02fd074bf8224cc4e86c78522ddc3d942d3a197655de8c66026493b02c0", + "regex": "(?i)^https?\\:\\/\\/pub\\-3ceabf7fc3aa49f88b6a6c3903ae2aae\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4c91f50b7dbac3f4a2c1a18cb5a54e06bcaa9ea79ee4082833b21f643d96253f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ONAARIYKDZYCCHRNMGUIS3DW14SZCFIPN5GA5\\?WERHJUMHWWJOIT89439794645832964058636h2go9h1f5op2qa$" + }, + { + "hash": "e38768a4111388264fe9e8aea30105016d6f2e294e0416a2c1fc829b7a375dab", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.sk(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "555daefdee78d500b1f61296b958c21d77c5f5d09a0e5a80fad02319a85a24b4", + "regex": "." + }, + { + "hash": "05712bc7ad685d786a9dd20343faee93397a428edc2102d5ae98500323d22506", + "regex": "(?i)^https?\\:\\/\\/cool\\-forest\\-8578\\.fuinss\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "86c0be7db36afbbbe0767c91076260225100132a563fa2569068a59658544933", + "regex": "." + }, + { + "hash": "651dd0ece4ff3e6d216c70c0f524cfa4906c12f55983c5a420205935ef7bdd3a", + "regex": "." + }, + { + "hash": "3eaa8edac5179cb3fc0bf3cc06be59690ff5cff2ca88177f1cf0fd8c0dede023", + "regex": "." + }, + { + "hash": "baecc7a61431754999819662fc8d8c9e97614002cc1d8f098d81a401f4f5458f", + "regex": "." + }, + { + "hash": "c722e57c2c0b0ad11d04fb42cccc2deed3c003bae7942de63fde5c0249c12e71", + "regex": "(?i)^https?\\:\\/\\/pub\\-1e4b561991d545f3a10b9828a1713056\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b6a9175dd9bc24190281af1b9aa162d660bb58e995070523b0d323dcb1b82975", + "regex": "." + }, + { + "hash": "2e0ed15b0f482b7f7de1c5a5bf4658197c1498a93c7221cc632e922dd5ec1167", + "regex": "(?i)^https?\\:\\/\\/pub\\-5dedeed68a754a019bb5cc319680b748\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5272deca36c5fffdeb27f91158187b482365129c24304fe3a6a7697ec747d360", + "regex": "(?i)^https?\\:\\/\\/bafybeicktvdmjmgz3lfuh5ep7ycl4sbo4cbq2pev775arhuhp7eef53fyu\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "7c0e35208e95550dbfbd2d96def2c00696deff5eb5d5e58cc1e103adb40ca6c7", + "regex": "." + }, + { + "hash": "14c79be11358cfe45d7cbacbbb09bec5ba3670e56002ed396c5a80d7ee1d61c0", + "regex": "(?i)^https?\\:\\/\\/robuxbifi\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "b2c87c861915dfc4a9e68ea1af083f1779abeb437099bbd599a1c337200e3309", + "regex": "(?i)^https?\\:\\/\\/pub\\-c42c9b4bf2894b79ac5ea7ba7de796c4\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "38dae07de1ec51850238d697ad0e34ce91985883e058ee31c090359591b0167d", + "regex": "." + }, + { + "hash": "4a49c784e230a8f9565ba0020c1d2aeab50b395c7794b3f4e0c9cda116b89a48", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?botName\\=OfficiaIBonk_bot\\&imgUrl\\=https\\:[\\/\\\\]+i\\.postimg\\.cc[\\/\\\\]+nh2r7rk2[\\/\\\\]+bonk\\.jpg\\&p\\=1\\&supportName\\=OfficiaIBonk_bot\\&t\\=bonkbot2[\\/\\\\]+$" + }, + { + "hash": "63b080da1901286bc5ab363f5f4549656bb81f06bdb8ae43f7e38b4e2bcd61da", + "regex": "(?i)^https?\\:\\/\\/pub\\-16fe70072a1c417590b4caf55c992970\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c726ac1dd540babf4bc96891a145959aa67f1bb12f78c8501bdb69a19aab954a", + "regex": "." + }, + { + "hash": "2180f0410a3166ecce9e02608f91bbae02e67842f1197b69fb1f0149b2111486", + "regex": "." + }, + { + "hash": "83be9b80abc46a7e20655b999879bb22f9debb80d8a427065653b37354ef09a6", + "regex": "(?i)^https?\\:\\/\\/pub\\-dc4ad4d9f393437ca7d416e8c47411cf\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "420a17e63e2aa90e722c3e041b84c3f972addeddd4920f3c0a333d85d5e83332", + "regex": "." + }, + { + "hash": "39a041926218412333fadbaf1d804ad7add7a81ef0bfdec87e873d3e84819a27", + "regex": "." + }, + { + "hash": "d7ee3bdfcd30655a322b7fa213f81a428a85d5a97f50096e670489c9073dd46b", + "regex": "(?i)^https?\\:\\/\\/gsjhugjhufgjhfgdfgjhdfg\\.blogspot\\.kr(?:\\:(?:80|443))?(?:[\\/\\\\]+|$)" + }, + { + "hash": "baf502acc761128e3924d025b3922f3adbc3dd73c6bc42ee37c1e12b2a5037fe", + "regex": "." + }, + { + "hash": "5ae55a0eaa4865c236e161fcb07a05887f9b286f709b99a5c22b720540855477", + "regex": "(?i)^https?\\:\\/\\/www\\.jojogiris2025\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "32c43cc8f340eeb0d49b9e8180a4628b6c906834ba3bfd787d1d5dfdd4a7ee3a", + "regex": "." + }, + { + "hash": "5eded0ea9c4a84230063bf350e3a0fc877850d02b5796d44cdd55f47ce033ca6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\$PageID\\$(?:\\?|$)" + }, + { + "hash": "fb668b0bcf633d10f5e43d1c7ff8c5b902c4431734a7dd3a5e497be220199a96", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "bde76470f905042f1d926dcab4bae5dba1b622b21e26f669da900700dac44f31", + "regex": "." + }, + { + "hash": "88c7ec09835c68585e9ebe4d4537a69ed652a8ea6a7491e16a5fa5f41d8f3c5e", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a4118b507703fe56f9c5e2ca559e3aa0ede88f7046206b3bfbee61f98918fc15", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "b649ca92e7f0b79d605870f971b938e293ec52d0a5aff62ee3d5b6dd3cb47233", + "regex": "." + }, + { + "hash": "d6bfbb5a0974ca32e109e1bf787a549911a47459700d9e2eacb3afd65482904d", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "c76062371dab2c801c8e1cd580f6ce489d29d1e6eb2ce36bba867711363eddf2", + "regex": "." + }, + { + "hash": "2ca577aea9bd4585b4f3cafff512792b5dd06132a5d0ba9bf33a1f5fc796f0a2", + "regex": "." + }, + { + "hash": "df50e45f56399db618617af5230c31da1f533d06da9803fe0ffc2267bec30023", + "regex": "." + }, + { + "hash": "42824dc3bb0c8caf1c9d74205b682387bc3951f7457846864c9e2157e0abe5fd", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a374b2f2bd18a88559666f38c281cba6dc48b8b4a00a5646dc864685b08d7af7", + "regex": "." + }, + { + "hash": "3943358719f741fdec407ffd4bbd4e2992f6d9ef94e77d49dcbadaa4703b0b51", + "regex": "." + }, + { + "hash": "5323bd9d3f4f7933601fed5e0dc3b842efcffc35c334bc53aa6f883ce67504fb", + "regex": "." + }, + { + "hash": "9b43d6aa6df39288c8c4411942150497f3bf9a252f8b51cbc8addde237ef45d9", + "regex": "." + }, + { + "hash": "fc4c785e5d108e2021bf6cc7f01f836db79ab5bf09df73e1c3409291e9f6c5a6", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtast\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "7a70820afddad38bdf3c84a3433e16a97cf2b0e690fd326b7c1a8b5397842acd", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a076c08eccfef9306726357f611e48bca43fbf5a7f3cd0b14c65539ed0ca5130", + "regex": "." + }, + { + "hash": "be5f5870a781d4c339fa3948117b81180a953a7d8906a409a62cf853b3f3a1e7", + "regex": "(?i)^https?\\:\\/\\/foodnetworlleddgsontactmakijgnet\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "6a92008ed4370c4fdc6af94fc7d453ade702185b31d463f85ce0971e30559400", + "regex": "." + }, + { + "hash": "a48b605662d809b3e106cdc1e614af0527441eb36ee582ad342064b841aa39cd", + "regex": "(?i)^https?\\:\\/\\/ipgbnqgmny\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6f5ed2f51a516a283f28f4f8ea002058794e6260b646567ec6d01f5f40db012e", + "regex": "(?i)^https?\\:\\/\\/pub\\-541b128e7b114b3eac99cd226c19f1eb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "95eda5c54896d56ab2f7d9e00db197018855b0d62e7d9ffc2c226829c2a05c31", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fcbb37177b6201806882e6308c1b975a1b6b6108353bedd36f4bb5113f8df54f", + "regex": "(?i)^https?\\:\\/\\/temeupfjsi\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7129695d68ebf9dad13d8d736481b35fdaf42d1a451538e6278f41c4cc1c31ff", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "818b8a4cdde51b83f5c793302d5277444b370a88cf9f11eb5437270bf670263a", + "regex": "." + }, + { + "hash": "f4d8b5da90b0406f0f444baaf4b34d69aaeb199dd1054e8016d43c63ab0e1917", + "regex": "." + }, + { + "hash": "34047bf805420befde73dd41a6f21b9b268ea349385c4673a113294d1c89e8c1", + "regex": "." + }, + { + "hash": "bc81da8b7ef7ba2fb98e7de25d55b1fb3976ba6142f561b17f7e27528d5ab172", + "regex": "." + }, + { + "hash": "5c0290f6dcb0a0b39927b2a3bf839ff2ae6d9f5351a742028f140ac9f0025a45", + "regex": "(?i)^https?\\:\\/\\/nlpost\\.help(?:\\:(?:80|443))?[\\/\\\\]+lolp(?:\\?|$)" + }, + { + "hash": "d0408b2f33d400a157fbc591a96be12f55ec7c0dd979ff0e9d85591de57d24c2", + "regex": "." + }, + { + "hash": "3f6b91ec8849f2442e6f8de275de9ae27af31fe503b1af22fa9eda0af7bffb03", + "regex": "." + }, + { + "hash": "fa2f736d7fde85a42393069075b3f2ee965e38e78e6004589dc143b0c3f5cdb9", + "regex": "(?i)^https?\\:\\/\\/pub\\-8e400b9271f24921a443ccacc73dbe3f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b66a5afc97c83732182e53985f769ee2bd6b4eb66e4b76f137f823497e91befe", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "33d389e922bf065e1389b39cb7f13a1c0934787825324854ffcc7183a4e9fa11", + "regex": "." + }, + { + "hash": "defe9abb21e40d45257ab7a9d2433143442f1be8e271ba4ac3faf9a5cd9045b6", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3e74fe414408c85b47dfc13c748f977a3c0cc0e54bf7d4f1e63060767454ed07", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "300beb5bee8446e6d05ea669b629e77afe536cec8fd89dcd8a779f1e947cfb4f", + "regex": "." + }, + { + "hash": "254315f5afae059da6d350179697f2bb0a5f28ea2decbae288c0e7f36ecf986f", + "regex": "(?i)^https?\\:\\/\\/deusmall\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5fbd2f946e693b6f5cb1f3b017280089a6b2206d11cfe409d3c54912fc0c8a8c", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ab65f64225f724dd6cf2b4fc09bbc399ce4c6aa6da5349959a5ce37f9639b9f6", + "regex": "." + }, + { + "hash": "610a1cabf025ecbe0faf8c8a6ea6df9334681495d5b9214b81463ba8fe4fddc8", + "regex": "(?i)^https?\\:\\/\\/optpoint\\.info(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "6713800bc37d76fbd42c06b6d2e37a8cfd78c826e52d9d09c2d759738b901dff", + "regex": "." + }, + { + "hash": "a2a4686dfc642c5f52639b8b0d1fe8d8146c2b4d7fd9d420da03a3ad440976c7", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "afc92ae5e61de8f7ffce7a11a0decf212d58567046b7acd8ce9b92f079c259da", + "regex": "." + }, + { + "hash": "f5aaac698a9b3b4689cba7446f52d112a6945296743f87d7f67071700dba68df", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "95db13a77f1cede79d79733662d709c075cf90fdfe3f16cc603578d2a79ad980", + "regex": "(?i)^https?\\:\\/\\/www\\.jojoguncelgirisim\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "21cc9ce3243ae1a253f42a31348bbfee9addf095dc154a42d6bf65ce04b1e490", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "384b66061b56a66f1b2d95a6b20e17137bb812f1b38f9ef7fc5e6dc47e7a116e", + "regex": "(?i)^https?\\:\\/\\/foodnetworlleddgsontactmakijgnet\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "2e2d535fcf23aa2a650b37bb0f713dc965e1d551e510c996ffa7e48324c80b1d", + "regex": "." + }, + { + "hash": "00fd2de42f632ca9c81ab4fe5d356f53e85687bee9f1f9ed9d7c96a81bc57256", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "a4044d945d600008f3fc15a136d91301c24d7eff36e1f65922f90330bad97f3b", + "regex": "(?i)^https?\\:\\/\\/www\\.jojoguncelgirisim\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b6690c777a1021d4b081e532f19c0cfc16c15e8ae5b8be4a735c9500e1b296a9", + "regex": "." + }, + { + "hash": "3e7214836b28d04ae738a3785f3fcea0d0888e7286fb35e1d14bd194b518769b", + "regex": "(?i)^https?\\:\\/\\/www\\.jojoguncelgirisim\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "51bef009701743565354e3012dd4aab3e73f81b67fa711b12b5d2e2f0f2e35ec", + "regex": "(?i)^https?\\:\\/\\/karanktechofficial\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2a5d522bbb9dc60951498a148f9c9a0b463adca69046d0822cc0e097a056206f", + "regex": "." + }, + { + "hash": "116f3a88a27fd3ed481d6d428c72a875f3330f93f3fed93ce6c897d20bf4f703", + "regex": "(?i)^https?\\:\\/\\/reward\\-beefyfinance\\.co(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ecaf62b4cd081e17e5acd3b5e1b367d83d7abd58f3ce16ac68764a599137eff9", + "regex": "." + }, + { + "hash": "485bea34afbf701e0d933c4d02d959ec8d8e92b32bf92a8cb7b984e2013406f8", + "regex": "." + }, + { + "hash": "7ce297c96b2fff6a062869858dda8e480409f7d49dd69d4db7f6d468e8a4c486", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtast\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "6d8e41c789193b56a38748ad268bbc982a76675eef45f9fb2c83173106bfac29", + "regex": "(?i)^https?\\:\\/\\/robux2024w\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "d0482df04a0b6bfe895383f22ea889c21f08bc994032eb590635741a8724ba2e", + "regex": "." + }, + { + "hash": "d83ea426c4140c04e67f97e54852c3d349a15a1064ee557b0080483cc3110ff0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "77f2e9605ecc02cb57916bac224eb27170d1c39e60d49ff3e9e83e014c60e5bb", + "regex": "(?i)^https?\\:\\/\\/karanktechofficial\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "8c3beaffa8c6179467fae5914d8fdb5ba6c4cbb3c090d96e7e85c767d07e6f4e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)" + }, + { + "hash": "08896c71146cffbee6fc4b2c3e78afd5c08166a2bbea3b45f821cefc7aa72956", + "regex": "." + }, + { + "hash": "d1f8caaf2bc820f18ea38121c98b30a7f25a423b7dfa29a912d6aead8572a320", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "6e872b4f936a3e585b4c37f809f85fc81a890cefb661f8ba026a90d7514b3b42", + "regex": "." + }, + { + "hash": "86c27f3b96cd0d2fe33749915f939c47e853a686167a92381fa7f1810e8267f0", + "regex": "(?i)^https?\\:\\/\\/www\\.jojoguncelgirisim\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "483c1632370dc52b1738fa12dff6422efbe568f30cc0a9ecf11131df1d47aa25", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "504d9de6f8872f0cd995ddefc21b99c57067ad8f8b2e62c6b67185e87cb9c52f", + "regex": "(?i)^https?\\:\\/\\/qaproverify\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "05d8c98ca316f71ed4801e97e7d222667cdffcf9290b8ca519ccfae3302e3ef0", + "regex": "." + }, + { + "hash": "209079769a643936db3ff0237356592f202f3635d914711f3a865dd1b1032395", + "regex": "(?i)^https?\\:\\/\\/cookinfooesgwithlovefromgoodtaste\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "da19f36efd8729f6e2d068164976664655f147c919e0b0423d27fb869957f9d5", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "fa8a32d48ff2cff892d93bbb4526605b5c0166db91cb928a36a423f7ca4d8e53", + "regex": "(?i)^https?\\:\\/\\/robux2024w\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "515d0231ea2bbaf08e157b226d4bd3e98eabd1e249c28f6f8134d2c4f32b68ce", + "regex": "." + }, + { + "hash": "cd6622e68704566c164f0ee97e2d9cbb714067faeb565a04fa20d5530b0f8aac", + "regex": "." + }, + { + "hash": "5363168826229862ac24b5fee77f79c211e427a8e2263e31cea0ca6388c7d788", + "regex": "." + }, + { + "hash": "ceeb7aadb18bd31ea0ef441e0c8066d1becaa3f651d63561f0b7a0c330134739", + "regex": "(?i)^https?\\:\\/\\/robux2024w\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3f90f1f2c94723b67f1de99ecbe5cd86ed69bf11630baa064a89fbc7aa98e451", + "regex": "." + }, + { + "hash": "e1fe459ef576c3370d3525d2e36c05c212326be1dc74d6d21bea124f3ef10248", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "305fa9da8ccfb260048e7bf0c0da41d491a11ef3c4fc3c4c71d0b99aea89a0a1", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+764ccc1\\.html" + }, + { + "hash": "e64b4b44f972e67a0590b134ad0695b38d1c4747f1b5d88557701b9bb104a5e1", + "regex": "(?i)^https?\\:\\/\\/reward\\-connectweb\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2f615c9266f8a67928aa0220b9413681948ea50e8b5462027f674b35f499c0a5", + "regex": "(?i)^https?\\:\\/\\/karanktechofficial\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "3280e1f4544a86f847d1397590091fff4c7ff5922a769a20b5af3fa074ac854a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+allocation(?:\\?|$)" + }, + { + "hash": "c9db9c42f3870acf387935b61cd308d327c793ce305a7cb7a83c6a8f54955120", + "regex": "(?i)^https?\\:\\/\\/www\\.jojogiris2025\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "12a187ddc775122674d86b3e9a382924345c8c5b151b507af345d3d080e3349f", + "regex": "." + }, + { + "hash": "e96eb5800d891bf50cfba53b82a232a7080713dd86ce4e53a96f0fe83e07c71e", + "regex": "(?i)^https?\\:\\/\\/pub\\-042beab565ca415f95ad4dc390bd6f1a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1df53b1cb2f32d80d6d6446962120e43390813bd625cc3107ef451c4f3d9b29d", + "regex": "." + }, + { + "hash": "9e5d2dae002bb7daaa0f9ff2523ccdd3c1fcd9ff8b81ede5cbff71ba74297415", + "regex": "." + }, + { + "hash": "c7bd3a58c204c6c0cefd00c5f70f2bddf9b269340f64bd77e56bdfa2234a3b03", + "regex": "(?i)^https?\\:\\/\\/pub\\-8285152c26ce49609175d9fddfe40113\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b4da0683bae94945fb6e4e2fb67f4e53a14e4848bccb892d8aa7baf6de230582", + "regex": "." + }, + { + "hash": "665f89480baf989e85b21c6f075fce0b7bc3f63cdeab032bd0dcc6b064b11c8e", + "regex": "." + }, + { + "hash": "6414278f3494b8acaaa421380b570ebd7e5b9e1f8a13eb062203e4cdb5e2a971", + "regex": "." + }, + { + "hash": "9a328cc9664bd8ca53ef4870c242f3afc0dcc783e3f6b9bda27b86785d520faa", + "regex": "." + }, + { + "hash": "031fcf8976261b077ec4f18019c68c70dc422a2418d85aeeb860630a716d54b9", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtast\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0a1dbe31a0f3439cdc7fecba09e6b1994ddac765e0689acec8768052c258f", + "regex": "." + }, + { + "hash": "eed4ef3d4109654f380f73c1ff65a3cc6117205360c4a72d61f59f287c87b89f", + "regex": "." + }, + { + "hash": "4f5ac838e3280cc038b8016e8258ea5fcb4e71a1f5aa665ef825956fafda5844", + "regex": "(?i)^https?\\:\\/\\/aaliaison\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "85ccfd755560044dc4cd04e776c32d1228874b4fa51989089866513249bc56fe", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7a7b4aca2902974d9f20f6091101c95c42e68371e67417862d52234676b2ea79", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5e747f375737bc8b0bf438e41a9c2c585f80425d28cf37693e692e7d51c47f91", + "regex": "(?i)^https?\\:\\/\\/www\\.jojogiris2025\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "fac1f5d60bffc64177b7d2c4fd60263c17fd1305eb2fa0ab984aff4faff9d439", + "regex": "." + }, + { + "hash": "c9ce234662b36aa6a525d2650b2cfa34171afc703f9e0888982e0ae8ab7e761e", + "regex": "(?i)^https?\\:\\/\\/be\\-1o\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "00862ad4b611fd1e6bf0afc436cb03994a256d733303b58346bb4ee7a139fcb4", + "regex": "." + }, + { + "hash": "5eb993eb9eba032d5b6c5fe42bb889e9360c14062841d5c76ff0d0eea7160341", + "regex": "." + }, + { + "hash": "8214d89532c6248c2a1c1f7801c07a9bbd845926e6a3eb8ebbf460c32b6e6ed6", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "494368d757a5748092c7efc58c0a952115e8d18fe74d50314a80249c8c2e5cb7", + "regex": "(?i)^https?\\:\\/\\/pub\\-f00268fcafa843deab9e855cddbf892f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ec51f95b3e507bc1c8f54429e673fea8f949204f1b3aae36a4454ece14b22bd7", + "regex": "(?i)^https?\\:\\/\\/cookinfooesgwithlovefromgoodtaste\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "b3e86dc8cdab091f158bd1d7edbe4a927ac4994a227b9c54c33479ac07bae9af", + "regex": "(?i)^https?\\:\\/\\/pub\\-452d92ac9d3f42b1a9bc934f128c9c3c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6f24e6f66021ded71633636828a0331925821b8679e7f291bf626675ec2f660d", + "regex": "(?i)^https?\\:\\/\\/robux2024w\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "ca5fb157e7e2de0de7f268da24ab502db390f9aa5a569e711ec82c08aca5e1ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+29603945(?:\\?|$)" + }, + { + "hash": "17b3cbe54af0a63df149b08d583622d10b9a33cd2b8fe37b371a65cce736ec42", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtast\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "b5294f90c5e15baa4b08fa28c95edbdf28a337b5d6c45860c052c28a6b3fd4e2", + "regex": "." + }, + { + "hash": "38d5670057ff188384bc5dfdb8809bc5ae1e678ced80dcc9b098ff1ca59c52dd", + "regex": "." + }, + { + "hash": "58e3ced307a553b98b2c6cf1a5d21cddce902eeb9b7f9f402389d3d4e50065fd", + "regex": "." + }, + { + "hash": "c2c4394779434f142eb789267bb1984afd940ff626015b19c5e3d2b459ad7a37", + "regex": "(?i)^https?\\:\\/\\/cookinfooesgwithlovefromgoodtaste\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "36a6d09e8ff5a7aeeed49149bd7c8d60fc8394f2875ee69321434bae34be6073", + "regex": "." + }, + { + "hash": "abd6ba6aaca0b5ae9dd2f582920b1667186e3d94d740a313b1ccdea7d0199325", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "aa0930c7acc85a8d3158231d2ec55eba3f7a118e2984d0b4b55cc03075eb3aa2", + "regex": "." + }, + { + "hash": "a3cae4a7d1e5e5de9f7890d82246b142e21ae90649ecac7aa428e3130959a091", + "regex": "." + }, + { + "hash": "3585b4079bc545bea7b6dbd7bf122557480010a13b0214bd7b13175e06486659", + "regex": "(?i)^https?\\:\\/\\/www\\.jojoguncelgirisim\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2015cf4da960424633c4618922cb8d25d7eec45bf9454d9845c05f7d25993fc7", + "regex": "." + }, + { + "hash": "5ce4f15eff89a986f8a6c9dfd4385098d7275b9cf2ed1d8ff70f7713e7debeae", + "regex": "." + }, + { + "hash": "5199a93b4f8838bac0090d1ea91edd006bc4341b76442c1e70116c96ea8c43ea", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "6ce659e742bb6aede219f815976121afdc81888b186829df93cac76397573c32", + "regex": "(?i)^https?\\:\\/\\/cookinfooesgwithlovefromgoodtaste\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "6cf1946cd1283c2d5c1404e7e59b0215d79bfea1b2c82fc4482fb983baed57c6", + "regex": "(?i)^https?\\:\\/\\/pub\\-3b0d683b66ff4cf49c45e577366e932e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "fcbb3e7e3e5a1235960c48c69ead3016e576b8586e7db120f470292aff451c81", + "regex": "(?i)^https?\\:\\/\\/foodnetworlleddgsontactmakijgnet\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "fe35f7ee8d3d0341e91d58c7c66fedce5b32442c2e2a1fc2d5fd03edac312df0", + "regex": "(?i)^https?\\:\\/\\/foodnetworlleddgsontactmakijgnet\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "38301b139f9d0076757cb825607a6f70994e7515eed6697a5e79bc2aa563fc15", + "regex": "." + }, + { + "hash": "9db2129ac3156fe461b614dc634d73d105fcd00a9c23ed08c0832d92d5eb338e", + "regex": "." + }, + { + "hash": "c768fdb272731ce03e0e9063361b1e7283f45887c3b7189b43bf82710ca72222", + "regex": "." + }, + { + "hash": "0eb56f52efedaf15e95a7c6b2b9cb8812db2ec3ba9425dbfc6f757bd3df5cf8a", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "1d1b8fa7e8ec0f3b15e6c101a5f598230b30e4adc658f75127f7d7e195422389", + "regex": "." + }, + { + "hash": "6a3a1cad7bac60894101c1ea3c6b12c9f6277088a0958e662c3cd8b1d9cdafac", + "regex": "." + }, + { + "hash": "2a24e6f374420a5427c7120248a7c3fc17542cf5b4f573f72b8cb9a89a532d8c", + "regex": "." + }, + { + "hash": "c88ef3f867e8fc227c7ff22a709b1286bbf89affbed59a6a0a2b91382fa224f8", + "regex": "." + }, + { + "hash": "2455fe51932bf9f6dd35165e8b6593889dd772e755d8fd722f791369bba7a0b3", + "regex": "(?i)^https?\\:\\/\\/att\\-108386\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "272866fd561093264811137d21f87d054935ea718ae146d25a6af507e95dc572", + "regex": "." + }, + { + "hash": "39f3fc4ff6b91ceada79cb2bd849b68ed6ed82d4ab61cad1d7ab7e756e0bfae2", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "abda23dabaf2848b468c5ae3ffce558cc4578be2fa7b0500f64907bc7e35022c", + "regex": "." + }, + { + "hash": "4bb264fe8377dc1873dbad2874a2c7960203d061707b61600687683c77f231f7", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2edc9f3831747aa8c86bf6df1b0e4d53e95e4c7f3ad9e24b21a52a17b5e7edc2", + "regex": "." + }, + { + "hash": "b97e58a429b16a4bcf38018b2b046a62d64293c1fec709568d2d041744187a07", + "regex": "." + }, + { + "hash": "6c1ee868646d27f48414434dac745f3501ddb448793c96438c392fe723e9f8e2", + "regex": "." + }, + { + "hash": "b5d50c9b860bf21e76c5c9392ae3033e0400cb1ce49509b7419d523b767ba944", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "3ee7928f73463527b18f967455e21e9986c5b6e3d272d1a5c8a8700a1a4e0a2b", + "regex": "." + }, + { + "hash": "f5fa88fc51fc73a9868bdbf90c081a1dae85aa888d291669aa5c8dcf4ee06c77", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "6b420300f3b9b02f5c4c981c872bf15de47bf2c8080af313dfa3a1fe7caf2b19", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7c63d06764a1e71fbb85d7210b8c54c74f0c861e1782349a05bbded02f413ddb", + "regex": "(?i)^https?\\:\\/\\/www\\.jojogiris2025\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "d7cdfa084c70c663897ec93947633f99753e003518e5a3753f288ce671ac734d", + "regex": "." + }, + { + "hash": "5e341379538a59217cf6cb59b87b74b582896850b38ccaed1317441ebac460c3", + "regex": "." + }, + { + "hash": "591d45af6a9ed8945549075d983c7970fd9351eab606efcd9c12185930ed91d8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+6374(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0f5e0fb604816df4fb9f480625c3c118228c9872892740308dd6ecde9fe7ebbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+signin" + }, + { + "hash": "9a0430cce4a5c5db01bad8b9deac941a4b8a2c9bd2e1c0ca54d94ad487f1cdc3", + "regex": "." + }, + { + "hash": "74ecafe7ca5dd3da3583212e4de009c72aa7c2a0331ccaae76ed1f0144317bc0", + "regex": "." + }, + { + "hash": "a68f7955ab26e3d81dfcabca9ba4437138e0316c77076576135e01510ca5a7f7", + "regex": "." + }, + { + "hash": "d652ebfa211f8ed14198fdfceceb8bd13237639be39c9a720f6f21f64be58226", + "regex": "." + }, + { + "hash": "e802b8a9022bebaceb2ec197e81e9635ba5e88f66a5e1c873c5ed680f3a5a320", + "regex": "." + }, + { + "hash": "ec8fafdd23df80c0201a6984c0bfde43f27a892b6d5af7c220c7c2f8667c066a", + "regex": "(?i)^https?\\:\\/\\/karanktechofficial\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d2edc4031a7770d25258cdb5a1bdc30b44855e455a90cc762308b6603c9070c9", + "regex": "." + }, + { + "hash": "6dec925f4065462d38497247db66fd8d8c26687070e6e788242a5b1f5590376d", + "regex": "." + }, + { + "hash": "9ce08c9ee7e0be8dc49f8d9023299f7e4249750b3243e8c5adbd7282d87680fe", + "regex": "(?i)^https?\\:\\/\\/vdcyznpsri\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "758f4f1c03d998b52be64133e730ba763afcfb27007b2ebdfea2eb53d8a819b2", + "regex": "." + }, + { + "hash": "7f5062f37de78707c80aa30fb86f50815e3275da6a4be88b45c216e9cdf88f4e", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "253ff7ba2c318a63a6a16eacbfed5318337e0419d8f02e0467d8d9cf8113961c", + "regex": "." + }, + { + "hash": "7e97a35c3310c0b4970954dff56074acc0f42b029d0a63278837757d752f06da", + "regex": "." + }, + { + "hash": "b669f4c52984a025358d54b18b5d4df263a6dac6b3a9d6272074811489f4e85f", + "regex": "." + }, + { + "hash": "ea28f3df0b55dc2f373ecc8da121f6be00484bf24e279f51a49881306a5db00f", + "regex": "(?i)^https?\\:\\/\\/talktalk\\-103869\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "14100856db11c7a90456d442faabdbc5d2d771b9f7d546fa206ed157a5f6e992", + "regex": "." + }, + { + "hash": "761fe379e0d48758e42e0c26e92d11d6ced0c9e4821901335a80686a5c3535c8", + "regex": "." + }, + { + "hash": "15413c3538067f514e2a8bf44edfb5e8f0920132d06cf32bd2251919d3f26d54", + "regex": "(?i)^https?\\:\\/\\/pub\\-d2a7d1200a464d448e82df74e4723e4f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d80fa05e589e1f0a0ecaadc1421e8b74b34fe37da40b0c65907922fb6d7fa0fa", + "regex": "(?i)^https?\\:\\/\\/home\\-101054\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "a4c6884814a1dedc0ca17de37704a9d98768dc6a5e688bb1a0196837e4c724bc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tr_TR[\\/\\\\]+Login" + }, + { + "hash": "d4c92146bd0f84f7ca0e8121134076ec57c6e93b7681f82ee063150fb94d0b5d", + "regex": "." + }, + { + "hash": "02c0962f4de1175447c73c17b591e8bb9442eba738e33bfe21c2534e8e969548", + "regex": "." + }, + { + "hash": "a61f4ab9ce89ce1926208ac24e240332ba2579b3de8de3ac5abafbb8db819f55", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+n[\\/\\\\]+MgR5yoky(?:\\?|$)" + }, + { + "hash": "e9880aab5a3b592320aa0257c1e53d4f063cb74f33cb2f7d8b7972b0e06cda39", + "regex": "." + }, + { + "hash": "8613a60ca4da09d2fad70b31976a3670bdeadf3745836857b621a2057bb95e39", + "regex": "." + }, + { + "hash": "522888d15eaf0beb7844ac2673832995089f55192d4a9e80daa12ef4194dbecc", + "regex": "." + }, + { + "hash": "6bb3c3774a39590922228767fa64ca13812b1f08e9a86a6c1d4491c1b5a7afe1", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtast\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0a413ed5c37cc8effd09dd552302390c8d434cead2544da40f571391da7de61f", + "regex": "(?i)^https?\\:\\/\\/ubcorordnvg\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "707662ab711f02d5d2deedf07f163d23d723d37909356e89b26d39dd3dfcf85a", + "regex": "." + }, + { + "hash": "8aa03dc677ae986a27b932b2cc5543f740e7ab4eb8290aa4dd5746ddb02b6d83", + "regex": "(?i)^https?\\:\\/\\/foodnetworlleddgsontactmakijgnet\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "128651ac79c941a77882361b2881a05538df43fc52672eb2036defd8b21b95ca", + "regex": "." + }, + { + "hash": "4423edb750973a9efdcdf056c3405267b5d17b9b02bc650f31f36d971faf84ef", + "regex": "." + }, + { + "hash": "e64cd383cdf9257719ea25de22da5265fd055002eb1e902b99ae48dd39f6e0a2", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "a2398978eb9c37f37d0a2a990d6a0fff39ec7a22a986b58ac6c66dd0e12fb9a4", + "regex": "." + }, + { + "hash": "83fabb8e13e7d3707632ad69c4deee59ed3e2c0d05e53d2b8bab308e316bb63e", + "regex": "." + }, + { + "hash": "2a7206c483d42ef59e941e4d2d16b68eea8263bf54e88f804bfec20bf7911cef", + "regex": "." + }, + { + "hash": "bc7f5dc94e120490d28362078a60aef290e52d16075ec9e1e5dd8cff598aebe5", + "regex": "(?i)^https?\\:\\/\\/karanktechofficial\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "cd97ab24c4288909a6917b5e636327efb9cbc28e4ec24fbd4f584edfffd85cb7", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "5464bb490527c9fb39b724b8ae8b0d7f7fbedda565d92730d994adb2b47fc763", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "fb586ae3c4239eb8f0d32f6b4028906b88724215d8a3eb8ded4e26de4259d25e", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "206c4b9202317581ce29b435c8c79cbc60aec496f41a723bf95fa96ab3eb1313", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "15cf04c51b9e153ad332b26c03c33a64f09514f310ba1df462a324ebc4f5dec2", + "regex": "." + }, + { + "hash": "18c0a118e03d956ee18f2f1441b7d163bdffb3db386f71d746ff5e714660ce2c", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "70a9e6e328d547fc999a16e892accaf9162fcb7acc7610add005640e23b2cb7d", + "regex": "." + }, + { + "hash": "d306554161e0d00233fc2c82f72bae191001469fc22393d11cd382b6a6b15dea", + "regex": "(?i)^https?\\:\\/\\/www\\.jojoguncelgirisim\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "78ad9ee5c567d9b845d64bc604870bc1da40a36f6206106755c93c027e0d28ae", + "regex": "." + }, + { + "hash": "4bfe2a29ca012938c0fdc4c2b4145fd27b508f7302eed848c7953583a5b3254c", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5ff2a5bc1aa84302c5b52bdebd3434cd7d95b210a3e7b8f30093ad0064fb72ff", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "d3c523f7106696fb11bad8d6cf29b4a4bfbd5245d6058dedc4c7df918880648d", + "regex": "." + }, + { + "hash": "de740094adc7e5c75b895ce0fc5e291b56f2e732e1a0753e8809cc7ef159dfd1", + "regex": "." + }, + { + "hash": "914396605bc84d84e1fc60a26593cf504012a920574d60c302855b253380faf7", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "69670c48067816d6438410b355b4e03e2984e6d99101795d48dc59690ceea9d8", + "regex": "(?i)^https?\\:\\/\\/microdofwtyrupgrade4875\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "75d7186c9dce52c4717b4ddf9d091d7bbae44a86750e722f1b93647f0c82aeb6", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtast\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "dad5d18d2642a6c75c7c1f260dc3d6b15cc781387590326d67d646a78147111b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "caf3a7fdb4ea433431902c0c85bb97df7c020364ab3d467e524a0beebfa1b4ef", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+contact[\\/\\\\]+106815754520908(?:\\?|$)" + }, + { + "hash": "6ec7c84137e32a1a8da9321da080c198e9ad82933e4aa6c5f7f1bbbe9118c81e", + "regex": "." + }, + { + "hash": "a0b9d1e8545a636215a8f2867fb4ea59d9e48f36a8fe19ce889813457d341a7d", + "regex": "(?i)^https?\\:\\/\\/www\\.jojogiris2025\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1352bf6562a11abb5f13d1d5361ec30ae106e2ffa13a2608f3b388ac8c6342e7", + "regex": "(?i)^https?\\:\\/\\/robux2024w\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "5fc5ecf33eb195b3711f82ee1a49eee2ae8a2d06e2fb8bbafe79efeaf64134ca", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtast\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "962258ae08c1c4063c89b5dbf3b3cf7cfe6e350f3e1efd510e9e4c4a02cf454e", + "regex": "." + }, + { + "hash": "cb1680bdeb9b3b000eb048422e23ba78572b43e244dfa49af40fe293db0095cd", + "regex": "(?i)^https?\\:\\/\\/pub\\-4397348da7434ceabd3f03392411a500\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "aa9033e3f7595f1a6ddd62647b4ef5b3e44c5dabae1652049591e8b95edf567a", + "regex": "." + }, + { + "hash": "75df0becdd2db086a84ebf7de765644df4b2931a8f70c37cbc507b28caaf411a", + "regex": "(?i)^https?\\:\\/\\/my\\-site\\-102825\\-102742\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "20fa05aff72ec039d3ae09596c437f71aea82ef29884a1fed72bc93022f12841", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "52e132fdf04a9af743248d67134586ad70112238c6927036921f99b53fa65e61", + "regex": "(?i)^https?\\:\\/\\/foodnetworlleddgsontactmakijgnet\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "e2665f488eb74755732b835824b48ba809aae577c21c439a1eadc8337a18b7f6", + "regex": "." + }, + { + "hash": "f97bf11a42e1dbe762b63d8a3d02bb5e54fbc5113f7ec1ebbfa6ef70ce84205f", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "0785c1279e7f20ea1ea5a1179ef768e7401425ad07b7e6585746a9cf1452ab27", + "regex": "." + }, + { + "hash": "374b947abbaffec5a2e51b7978faab77d0cc728b02fc74532260ff5f11c8ff17", + "regex": "(?i)^https?\\:\\/\\/foodnetworlleddgsontactmakijgnet\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "9840a63d65f1a97c4710013fb1b2a40a4007461dc7779286421b6e3328358703", + "regex": "." + }, + { + "hash": "67e102b0835bd112091cbc91bc09069a4536a85243d45cba9b2f19527bbd891b", + "regex": "." + }, + { + "hash": "49f31f3c36c1dcb1eecef064b0dcf9a2a61f428613eb58b9e4799368b81899fe", + "regex": "(?i)^https?\\:\\/\\/xryssxgwaxwv\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd60ea36d686c8d745884314f97e939521ad653898bffff6632ccb23fc8b5850", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+contact[\\/\\\\]+584128359843469(?:\\?|$)" + }, + { + "hash": "96cbd2f51d769cea40098a76ac3a32fb5f638a799c03d8237d67b5ca14d2aba2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "8eff8d207084f0a6bcf46afd37efc1da4c22f95a721c8c3479712161981dc2ed", + "regex": "." + }, + { + "hash": "e6851d10e0f7363daddba13059d6699b68b3f20a52c251d9232311e804611d20", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "207786031d33018cf874e40c12a9bf130cd3c6918cefa035bc70fcb6f299322f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+validation\\.html(?:\\?|$)" + }, + { + "hash": "f09bfa823dc150b08307a1363e695caf0d3f02315f5f3e9aec1b3849a30bdd4d", + "regex": "(?i)^https?\\:\\/\\/bewinsale\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "6b4b30f23d375d20fdd30588ee4ace7f57c49be13e8d3070e5cbebd5749ad6af", + "regex": "." + }, + { + "hash": "8331d1a8a60a3230314dff465238148b6e6552a0e0fc117c1ab458b3b005b085", + "regex": "(?i)^https?\\:\\/\\/robux2024w\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "a4c6be796ce8aee03d9b142c1fc5c90f503f5a87be6c060bf6b788def050be6d", + "regex": "." + }, + { + "hash": "79200874ec245470e3edb11ba54355406a7e3f09d51a3b32391e6ea1dc0d8ac6", + "regex": "." + }, + { + "hash": "88b0eebbcb53af531310677b9bc76550f30e03424cc2f77eee9cce38275d683d", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b34d3709a39c9653dd5e868358eb45aec7442a70628e5ad79db204a427bac8b7", + "regex": "." + }, + { + "hash": "64171b75a8292030190c1e0b1e80ddc095834c817ac8ce2f303cf7a92f7c3fb2", + "regex": "(?i)^https?\\:\\/\\/pub\\-03263fcf19fc4520ae33bf72c8aca2bb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9540f35b3364f6eef5ba82e5928959d50a384805c28777c7ab7430b824f51abd", + "regex": "." + }, + { + "hash": "a6e1656dd2c04821addcedbec6ee26e70a4bcd9da4d8c0c22da4095bb1a8ceeb", + "regex": "." + }, + { + "hash": "0f5e0fb604816df4fb9f480625c3c118228c9872892740308dd6ecde9fe7ebbf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?signin2$" + }, + { + "hash": "49cc1001a5d94348ad20531a8f9132f81b8b115c082512a8c326fdc417b4f2f1", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "de9a1487c2dec6c052e63924d4661adb76b1318491c6f9fa2d3f973d64eb78a7", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "e5133ac021c3deee6b4a709353299cbf47b07cf265385a5a2895e4fd92a0387a", + "regex": "." + }, + { + "hash": "d56e326a1b98381e89ccfeac097d30f35772e5ecae183107e510782ea3830f07", + "regex": "(?i)^https?\\:\\/\\/www\\.continue\\-signin\\.amazonprime\\.50\\-6\\-201\\-165\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "17e95c3a3154508681abd53178cadca5ae39c904761256ce39abd7815e1c9fff", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "7d6110cbb87f8917ad8fe8dbe3245bab7f1ba5889da6b2afad65b206180ed715", + "regex": "(?i)^https?\\:\\/\\/goodfoodnetworkcontest\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "976ef6e2bbd65be3edfac397afb164aa7b3cd726567e2555e03dd18098fc5181", + "regex": "(?i)^https?\\:\\/\\/pub\\-4613fb5fe0954630992cbf98d63e9de2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "93b46769636874bd0eb1f26b397f10ac40c3ec2e1f0acb0a0c7ee8ccc5363f25", + "regex": "(?i)^https?\\:\\/\\/karanktechofficial\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ba3187270cdd1641f9e93a81844530797e622de9aa5fdb52533a9b7e27d79888", + "regex": "(?i)^https?\\:\\/\\/mail\\-107620\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "47253a634b30fce5163fb5768506db2d119904a4bcddafbd011de4a556c825f7", + "regex": "." + }, + { + "hash": "d545158c09fa802dbb42081dc19f842a9376ec73ce4ee4791c133a0c1b9ff836", + "regex": "." + }, + { + "hash": "b67359e1ea183b2fa1f4b50d79426ae90c282f253935e8e455645e2ed294e217", + "regex": "(?i)^https?\\:\\/\\/basadeals\\.ink(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5159cce771771375af7ef40cd4a6aecac680653ca365e82b330a958a3e84db57", + "regex": "." + }, + { + "hash": "fb61cbbadedf5f9cff59e265ee393f415cd10a3325b1377c712d146d5bf6fc5b", + "regex": "." + }, + { + "hash": "48916dd1b72999c614976ba3d66ea52fb240640ba225fa80876cb29b31a1a865", + "regex": "(?i)^https?\\:\\/\\/pub\\-a948211805a0484ebbc77b5d2aa3ccf6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "21a6ec580b90f0e120d9a7468d947511d03d516dc8d14a8ffedab10f112c670a", + "regex": "." + }, + { + "hash": "bc7f620a280b994664043ccbf3125d63670d9034db4f982e254a349d1ab95a9e", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "679cf6b9e325e2447c666dc2a171364cf5058feb2b5e6322b4cd26f2b1af8ec5", + "regex": "." + }, + { + "hash": "8ae2eb352574e1c778f418b3a1ee389d37db6e75ce45abaffef1dc0b5646e804", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "b524babfd475771ae4d66c7b22a9212779dec14553dc9a5051618401e824dd3b", + "regex": "." + }, + { + "hash": "3f08c1b9376f7aff14ed985bb0e815155a8ce5efd31fb4e54c54c94eb8df9d39", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "2704027f9081e02d361e6b665403aa3ceb11041e814c30a583da1a5723387437", + "regex": "(?i)^https?\\:\\/\\/pub\\-0592fa6f32a6492893daaadaa0d0240b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8c4dc6ef85a5b599491368fff1e7414a5478144564ffc71849c4b3914e5372ee", + "regex": "." + }, + { + "hash": "94e5e4ea984c9f933e07c4a8e786c3d49f349af890caf615a8d1ea3422cc0891", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?gad_source\\=1\\&gclid\\=CjwKCAiAmfq6BhAsEiwAX1jsZ5I8v2iafpyZKauCwYBoW_AjUUledR25b0\\-w8iz53Yj3VljdcXNekxoC7AMQAvD_BwE$" + }, + { + "hash": "4c43b322babe695c885439f039a6c4f508e867ee950eb71443a3be42c5f8da62", + "regex": "." + }, + { + "hash": "d2d4c982133bd6edd1d79abb9f26224dd50e591513193a01975882a50c2dfe4b", + "regex": "(?i)^https?\\:\\/\\/zaberdeals\\.rent(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a08946ba9faf70a9ad39eec434e6887001a3614528a573d316907c155654df12", + "regex": "." + }, + { + "hash": "08890d11eefb7052ac1fce2aa6b2988f79f6dcddcca2696c0e7a0bd48c3fd715", + "regex": "(?i)^https?\\:\\/\\/foodnetworlleddgsontactmakijgnet\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "20fa38a9e15fa4d98ee4ead85819ca93d326f2fb638265c5ef2ff2e2524f1bb2", + "regex": "." + }, + { + "hash": "8d23a8e3c380b1d1c069cb3e47b6a7370ec32560ef28466a8139ab163628b5a3", + "regex": "." + }, + { + "hash": "67c49e7e592cedda0807e922fd2d8487b74396e3612535da62d706230fe9d5e4", + "regex": "." + }, + { + "hash": "207786031d33018cf874e40c12a9bf130cd3c6918cefa035bc70fcb6f299322f", + "regex": "." + }, + { + "hash": "d2964a984a908c46154bb81bd4817be1761bb90e44c233c76f7720395715a40d", + "regex": "(?i)^https?\\:\\/\\/www\\.jojogiris2025\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "88ba340bed1fb5c87fa35b7b5ad17a90fbe005b96fc5671824bc9479cea64826", + "regex": "(?i)^https?\\:\\/\\/www\\.jojogiris2025\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "66d23dda9ae02555b46c71d2b743e0d56e2d935d72e562941f99492399c4a8fc", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "42a0c40fafa9c1b6c35f79f646246b9eae322825d3a19e17b5177f0281b488ec", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bcd57d77796d28aaf5d610007c3d6d5f8a8c60b71ba802329c82676377b65158", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtaste\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "716113ecfe31544a7aea9c6d40381c242f56bbb8ad49b37bce9f0aff9798701f", + "regex": "(?i)^https?\\:\\/\\/www\\.jojoguncelgirisim\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "25b5d6d38f8f3d461a14395b5523f8ff9666bdc76d850644d2bd35ac94c7d4d3", + "regex": "." + }, + { + "hash": "2768ddfc6bf4bb5e84b7d59e889ec7730a6542bfd74745f2f2115db52903a4ea", + "regex": "(?i)^https?\\:\\/\\/frankgrillo1991\\.github\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "408b2192b71814b934d05eeafd9bfa5b8708268ac162765cae7c4a7180e9c593", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "709d40fc877d2cccf7c1c933255f5cc4c8f625b2ee199439ecdad544b806cba6", + "regex": "(?i)^https?\\:\\/\\/foodnetworkingcontentcomp\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "a8b81a8bea710f620dc16c301c581eee3fe3bb56621897dd57e2bcc302e8f646", + "regex": "." + }, + { + "hash": "093ab887b05d3efc54a43798b33dd8658cf3fa602ec5ced4a3878a7f4733c4a0", + "regex": "(?i)^https?\\:\\/\\/pub\\-31283e2c40604f069db3a0dac6d831f6\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "48bb8ca3e4c4afe665938bb96287a5650eebb5400ea6706833fcc046312ef61e", + "regex": "(?i)^https?\\:\\/\\/cookingwithlovefromgoodtast\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "34a4f86093061a45c79da02056001d4474e7082b7e4b58d5a72a5b2563dbf2a1", + "regex": "." + }, + { + "hash": "c9c3013a86904dda717d902c1e946796d8581071aa4fe4e2f46461e3a4459f60", + "regex": "(?i)^https?\\:\\/\\/robux2024w\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "5f0859634285522f87bd874945b52cce26bd46b2a06b60c887e78bad5634bd76", + "regex": "(?i)^https?\\:\\/\\/karanktechofficial\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "b84d9b8a0e22249bdfa49fbdb35e4fffbf26d32efb4320f16822fb07a0cb4a8d", + "regex": "." + }, + { + "hash": "8aecc1dbc3de42fae6bdf353127c0bd325f6e01ab4686cd4467342801e529a2c", + "regex": "(?i)^https?\\:\\/\\/instapassservernethost\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d7390b4ca0954aa51115a6ca0db73da261b4cdfb16ca8c1459a9dab245c1b30b", + "regex": "." + }, + { + "hash": "6c270dd63cae3299f7fa4e71208b8280f6178b3f29c3424cde784883d6f3c719", + "regex": "." + }, + { + "hash": "9d6466b3c823b499aa641676d25eb4fd82865cb51b49316803217de3d12b8e94", + "regex": "." + }, + { + "hash": "80e0106f3cc76d0b3cce58c9d1fe36a156ae38d493f8dea5468b493bb28db095", + "regex": "(?i)^https?\\:\\/\\/foodnetworlleddgsontactmakijgnet\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "ebf2bb009660d555cf93774ac141155b32b1db83d9cd763d85bd480d4c8fbbdd", + "regex": "(?i)^https?\\:\\/\\/www\\.jojogiris2025\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "57441507df162ff90e3a739324e349958c99bd6d180bb45cac9519d803fcc5b5", + "regex": "." + }, + { + "hash": "ffdea35c1626260b4f678c3ed8e4af40f3bf45a5bd3d0fee49f5f98e0f771abc", + "regex": "(?i)^https?\\:\\/\\/desadeal\\.guru(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "24652008f77c15d7fcdd9e7c2b9016cd72c7a9b3116b6ea76f56b26e35a60ffd", + "regex": "." + }, + { + "hash": "8f22a8099c5afc6d16784d57459de2bd8f04256eedb533457f50031c7eb29c67", + "regex": "(?i)^https?\\:\\/\\/pub\\-089d185b307f45bbb5fa7f5e98b1f58f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1d83cee087e0b33441dc91b76a1058bcfb713c42ccfd5fc7fc9ae668dffde8dd", + "regex": "." + }, + { + "hash": "b3a134e899feebc27f0b209a63741bdd4c285ad25ee7cd51ad03a63369caaaee", + "regex": "(?i)^https?\\:\\/\\/www\\.jojogiris2025\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "71df57e3c01d53b0fbcc6ad3e3fe79cdfd61dbfda9fda24f63fc2b62c17d9e64", + "regex": "(?i)^https?\\:\\/\\/pub\\-8999f633633648e29cc516ce10165214\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "15ac5da3de39ab0f4e5e09351222cd0b7769d8095dd1e6eedafa6eace9a37b06", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-1" + }, + { + "hash": "4969e9887df62f74e91ef2831c92db86366eef0f02b856af0db0471817e0ae90", + "regex": "(?i)^https?\\:\\/\\/pub\\-dcd43c6bc4214f8798865248e7f3f1a0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6ab00ecc4809326dc1b92b7c6d3f35418589889232e30b8069284864b70f4c5e", + "regex": "." + }, + { + "hash": "516b4e01d067ebb1a27d86ee240c2b995bdcee14915c0f735571dbc065b0f0c9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help\\?5kW$" + }, + { + "hash": "7c0aad40cd63a9ebb769b9353c51bf2cddcd66738224eae395c2c129a3d21392", + "regex": "." + }, + { + "hash": "499d16c7a0e2e16d719f0fb8c07ca4d9c570ed12360fe6bc2954183b5ed39604", + "regex": "." + }, + { + "hash": "bd28ee6a3655abf16a2ea64276552731d450319461785624eabc1c85f5990f45", + "regex": "." + }, + { + "hash": "2827e2318271a4b16b470340e17cad77a1b918bf8b31e4cc607dfa8b1f4bbc13", + "regex": "." + }, + { + "hash": "0d565681a8f47e7e579441f7b0d458b07dd4fbec099337907646767a0fd314b3", + "regex": "." + }, + { + "hash": "5c12a83175b7e8cc0fcaba5a85716c098c8b22b02266f0c60a2b5537a3fd5a46", + "regex": "(?i)^https?\\:\\/\\/karanktechofficial\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "5829e4ceb5737fea760dd8a8da30222845558e0aea21342e04ff36f2437da6ff", + "regex": "." + }, + { + "hash": "7d102d188e773ef7b94fc4b05cb04e6317d79e19ae5031baa7df0b565d36bc7b", + "regex": "(?i)^https?\\:\\/\\/pub\\-ac3f892051ec4c009b53df0d58d56243\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ca5fb157e7e2de0de7f268da24ab502db390f9aa5a569e711ec82c08aca5e1ca", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+29603945\\.html(?:\\?|$)" + }, + { + "hash": "710e36f9275da7d4b91598192901b1428522f6c34ae341c6bbf16e89d74b2023", + "regex": "." + }, + { + "hash": "4dd6581ef33b1f81676b50ba5b8799907eb2ebd9402e5027dcba8b4599a054df", + "regex": "." + }, + { + "hash": "0c765aac963b642878e9be41597ca290b96f762e83862010ab2726f964c6ec60", + "regex": "." + }, + { + "hash": "1c7a7377d4e0505a36218e76ac4165b87ded6e93c6fff895e00c1eb338e4b5ca", + "regex": "." + }, + { + "hash": "b93ba4c219009fbcc7bfd05e27150f16dc2d405f7000d4000ac96aa4ec4e43fc", + "regex": "." + }, + { + "hash": "4fab4b0bfb92844ba3403a5b475b30f6ea71ea1fd737d615c1a69d9b8a59b74a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8b999c764768b9eeb82fb657f643bacd64cef6422830df278f5b2f7bed3f6d1", + "regex": "." + }, + { + "hash": "4df04149c1deac8d6e9400d15ae8ed6d83283257f263a63a899a6607ad45bb75", + "regex": "." + }, + { + "hash": "a88c52351a4b9ffa8a65853845824f15629d8d560bec03a45afcc81507a1bf3e", + "regex": "." + }, + { + "hash": "789b2249beb1702da88f33ca2c31914e575f3104d55fa3594d2c8352b2edbc35", + "regex": "." + }, + { + "hash": "1818f6fcaa7fd15cc45b33d08026f102b9afed40b4472eef96da8a592e6d218d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "5bf901cc528a6040b70139511b847b2bb2a89cab3117a74e72c99482e7f47cbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d91692b686ca747f0e7fec8adc16cf37cc274415907527c0fe71b8fb99669238", + "regex": "(?i)^https?\\:\\/\\/pub\\-f7b70a2c3e2d4adfa1b084c406a2c9af\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8eab8031af366e7ccb8da81c8a7348434b8c099701b54ce34568ce08120e619d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+card(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "702af6d0dbd2d42b7f51f9585eacdfcd8097cfe609785b29d8430335b42b1a9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+produto(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "325ca00c849784c0f6bb4b0af0fa90b4781f3874fd9fc430b7f0dc269607a6fd", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "22a19ddcef49b86e54fcfdb5072d97b4834253a762729efe54132215c3edaae0", + "regex": "." + }, + { + "hash": "93b8b1b72566333cf7ccabdd4338d77e429a2a6c6c3ef5de91562469d9a31b31", + "regex": "(?i)^https?\\:\\/\\/pub\\-b889ecc576cd47b8a7dae94590568f86\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9a44d56753c92c842283613d71a908f1d8531d226e5cf8c0fac2f7a4f333faa6", + "regex": "." + }, + { + "hash": "1c452a0cff4fe83725b865a7966a9a19b78f27a78c2c1e5e456a2fd7a653d6ca", + "regex": "." + }, + { + "hash": "d4ffa0c4ad424b136269ccbe9a45f3c7847dce1687554653e3bc0647ad954b1b", + "regex": "." + }, + { + "hash": "914dcd92b9e6b9a2396cb970eedd05638841701c8c5987650a5afb55943d0fb3", + "regex": "(?i)^https?\\:\\/\\/instagram50639\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "6b4ba8c6750e4f6e96a2e482f67f2fdb0c52204eb5503f0f28fa8b7ea6e7ee10", + "regex": "." + }, + { + "hash": "b29402194f24898fc24b0a06182092ff99b3478b878b0a7c367fcec2e347cc08", + "regex": "(?i)^https?\\:\\/\\/pub\\-6112de11b6174965810532f354ccee19\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "333460d4c5580d16277c1b998e969db450410b7385672a8d4e512ae0b46679c6", + "regex": "." + }, + { + "hash": "48802fcd195883d9c69ce8ffd2a5af3beb3440204572543198a5aba1ca9a355e", + "regex": "(?i)^https?\\:\\/\\/pub\\-529bb51871cd47bd8d295976fc626639\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7e00188ad6d873823c7607eee2be165ca938b5b3052778231d6096ffd9f42be8", + "regex": "." + }, + { + "hash": "03e3f1d1e5d49b53905ef26595b07835608693cf48e44c78d07b26cdeaeedd39", + "regex": "(?i)^https?\\:\\/\\/pub\\-b005527110da4b4eb4ea480c24d51a46\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "31ab1b99904bc27a198257124947c8e3d2245cf3043d307d070362d5551a728c", + "regex": "." + }, + { + "hash": "7aad65900250af9525289527e8d1e6b0724a6f1a1f67a842ab498af8286889b2", + "regex": "." + }, + { + "hash": "b07998bca9cdef3b83208cb3608a0c231d3fb118678d1d7d93a761a325eaaf18", + "regex": "(?i)^https?\\:\\/\\/www\\.85012270\\.com(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e71498073830279435ff54f976ddaafdbdbd0b30b0738f0ff6d633a840e9e297", + "regex": "(?i)^https?\\:\\/\\/pub\\-d9880dc86c184c288ac05e3df462cce9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "33604e821d6f034577dba8ba7efc0ace68794d0e0b21532a1607c52ca904efb7", + "regex": "." + }, + { + "hash": "304c838dbee841961b5401c5cc6aae5ffc856865e9e1f37b6b45a22d312872aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9968[\\/\\\\]+entry[\\/\\\\]+register20505(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3280e1f4544a86f847d1397590091fff4c7ff5922a769a20b5af3fa074ac854a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+allocation(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "005d8bcbe28763bafb84e29abd0ad442be134ad30be5403f494ada61ae36d215", + "regex": "(?i)^https?\\:\\/\\/pub\\-6dc92277b20e4265a1dc9748a69e0706\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9ce088e8caf5b682bcd41f5d7efc5ccde1b5fb0fa39efba50a0c74347fc1988b", + "regex": "." + }, + { + "hash": "6b316b3064e47236853cb45469d368a64e3ce8fe93d5eb6dd50d9ec08d01b87c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+new[\\/\\\\]+itsOK(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9650a37208f17f5003c9d2bc6624721f65f1d2ddd9362191c52407b3f5185dbb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+updatee" + }, + { + "hash": "824119cddd3e20155624d5b36f9b5d303d87f37ade90614f24e7b95f305bd6be", + "regex": "." + }, + { + "hash": "45ac2341956e275ce4dc198962f4e99caee434e2630c4f0c788705e6390e424f", + "regex": "." + }, + { + "hash": "730b448ee72de0b576b0ca5906b540c21959dd850397eb9d90dafab72109fe0e", + "regex": "." + }, + { + "hash": "3734b3ad543796b4a84baf940f6982dbddba64341640d79f68245de008b7628b", + "regex": "(?i)^https?\\:\\/\\/syh\\-sff\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8537c08ca5f35235a4651e025f9ee1f2005432ca4cc4044c03e09507466bcc7b", + "regex": "." + }, + { + "hash": "c785a7e60e9309a6236485b972878be44540627429f96d965302a49adc4dd487", + "regex": "(?i)^https?\\:\\/\\/maps\\-view\\-uk\\.com(?:\\:(?:80|443))?[\\/\\\\]+swq(?:\\?|$)" + }, + { + "hash": "4da8e649c23ba13700ac17915181bf1289040c4dd0a675bdc19f6c81bd1615b5", + "regex": "(?i)^https?\\:\\/\\/syh\\-sff\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "ea257c419bda9f1e60e36dfa2cc812f766c01707c05117adffa0a45394ed97a6", + "regex": "." + }, + { + "hash": "702af6d0dbd2d42b7f51f9585eacdfcd8097cfe609785b29d8430335b42b1a9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verificar\\-produto(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f628152311d1e5e71428febee0d6137e796206fadcdfd09aae096b8a73456c86", + "regex": "(?i)^https?\\:\\/\\/instagram50639\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "1ce370d2f19542b3098165886bed1e9a8cbaf9b8d6cf3c91822d8cddb407aaf1", + "regex": "." + }, + { + "hash": "3bbdfa3126a786f2b82dc1d09e6241ae7b5cff1a1c130564b58da691e95c95f3", + "regex": "." + }, + { + "hash": "f89b0ee25099bc45e44bf82ad0ca98fc26a65fdfcd8f58674b57c88002926310", + "regex": "." + }, + { + "hash": "b52b00988435015696bf445228a2911c5a5286084948b21482acaf43ba552aef", + "regex": "(?i)^https?\\:\\/\\/pub\\-7332784f55c3413c8e21e7e82536c87b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4254be38b9912cbdaaa3cd20c13acb538ad50b0cffe83b1f636234bc49df49dd", + "regex": "." + }, + { + "hash": "f6d1410967aecb28415a7aa5ec534569d5d70eff5254506b11dea5abe9966b4e", + "regex": "(?i)^https?\\:\\/\\/syh\\-sff\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "2e9360d772c5952a6940062ac673e81f2b7573e6bc518bbcec1b91911a20fd9e", + "regex": "(?i)^https?\\:\\/\\/xlxnfphmkv\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "b28a714c820ee3d0a387faa65b44ba7e4fb85386011d295c30352bf99640c874", + "regex": "(?i)^https?\\:\\/\\/goody\\-food78\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "a49f791687a7fbcf06ee73388b8fd796bbeec61614c7f23946720b4d8fbf99e5", + "regex": "." + }, + { + "hash": "f574f0a7ebb77db6cd2332e1f33df9ad393c00b72495f61ec588c48ef7bd6008", + "regex": "(?i)^https?\\:\\/\\/oauth\\.payments\\-amazonprime\\.com\\.50\\-6\\-201\\-167\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "8af4a6deec3756ade34fb708fc45c78dff9929e7931f879b9ce06d170b58005f", + "regex": "(?i)^https?\\:\\/\\/pub\\-d00137526a2b498f8984605158ee5ced\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c207e4108c9f891f96a9e77580b1ae672a666ae1bbc5570665aac731a1ba8e27", + "regex": "." + }, + { + "hash": "c1f51cd76a1986d1d39ae4fbf3eb9116f1b2284e32182d6b7e3f461f994d52e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+credito\\.php(?:\\?|$)" + }, + { + "hash": "f1f051cb210ad6a00b8d367667eee58d33ee00dcaf20286ab974c496a6532ebe", + "regex": "(?i)^https?\\:\\/\\/goody\\-food78\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "8d1068295fb1f5780e8dd0e4949f01cd89b499f9dbf282b14d70f53b90d754f6", + "regex": "." + }, + { + "hash": "c8ca2b5be0f9fea0a818c907e3d3e8730f7f4c59d9936b618594202dd9072244", + "regex": "." + }, + { + "hash": "f62e3afbd39d078c960cbfef5cb8365c0ebd874ae13f4ba8aa9465ac78e1bc07", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ec0cbfe16b741ff65a0cb91b5c36c58bad39d1de5cf2244e12d1ebd391dca3ec", + "regex": "(?i)^https?\\:\\/\\/goody\\-food78\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "c280314e61fbbf81e120b9482cf00b354043eedbcf636f0457436d58f92858ea", + "regex": "(?i)^https?\\:\\/\\/pub\\-e31a5b44475842d19dce704184715429\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "e19815817f11ef8083dc904a74a311937131addf1794e81a8a05a7b0d1164351", + "regex": "(?i)^https?\\:\\/\\/sbcglobal\\-100540\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "66bc2910ba6d75fb2491ab0ca7d8ae45dccf84792be5544fc5c6d037883cc848", + "regex": "." + }, + { + "hash": "97b6716316c747065ecd942395b621ffbc85292896f1fdd8f0ce0f5cca638739", + "regex": "." + }, + { + "hash": "3c52fc1872063d78213047b61b89d53b6d463198f7333529549929ebae516533", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pay\\-la\\-ter\\-dana\\.zip" + }, + { + "hash": "a7dbb3362bb5c2d33a5ecd28da20976bef722213dafd1aa4a1f21f540b60fddc", + "regex": "(?i)^https?\\:\\/\\/shadowstrider\\-dusktracker\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "20ea6d0f49e8514bf2decacb9957411c66fbd84800d087ec648837b4d9de0408", + "regex": "." + }, + { + "hash": "4478557f3ca18ef7c0599183f15b993c13a8dfe8b833a1a2c762d204f5f77ef2", + "regex": "(?i)^https?\\:\\/\\/pub\\-375602c5647942af960fb4937863a61a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "93c68aff9f9bbbceda4918d50670a72908217e311af8c6d616ebbc8b8b2d127c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9037[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "0608c00180c10d6b577d26e8ccd7a51d59a9d0ecfe2962ba7dbfc2f81275c65c", + "regex": "(?i)^https?\\:\\/\\/goody\\-food78\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "2bf5f4ad4bcedcc94704150417db7774df9f33344f93513f2461ed104c2675f0", + "regex": "." + }, + { + "hash": "5ac6f5f923b2f2339e8023bbffb584515a9fb6a684eceb6b7198847fe629d7f1", + "regex": "." + }, + { + "hash": "f7b7a5f4a04986e8d0caeb05a6c29e86bc8f76f4d3c36a752b5226034905b422", + "regex": "." + }, + { + "hash": "33114170b8298aab4d0962af20439fe39d6aca085e93b96afb64c1b5025b842b", + "regex": "." + }, + { + "hash": "20e1bc752f61a0c13cdd75195d1143b059240a8948df0d207cad690cf2b13f73", + "regex": "(?i)^https?\\:\\/\\/pub\\-6913970b24604304b5b3011a49687778\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "c831d3f17f6989b82aaae5505993e8d4215defee2bff77c95251d3ae654b0e41", + "regex": "." + }, + { + "hash": "1a53534bdeedfdacf0cec655394707a4c6fd9100ae6b125220af7483c4f8fdf7", + "regex": "(?i)^https?\\:\\/\\/castara\\-99\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "f3805f19e4b5a2d693d746151cc530ed85c17ef6956381ec455f3dc94e0c7673", + "regex": "." + }, + { + "hash": "8918548693e40973bac2c42a914b757e83d16fe7cc6caa3443cb99af6c6289cc", + "regex": "(?i)^https?\\:\\/\\/instagram50639\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "231de038a82e8e12b957f8f24144cb483da6311ca87601ea96fac91bee3e8936", + "regex": "." + }, + { + "hash": "00a7eb544bd0bb30754cdb28db2dbeb110666e8f7b91bf147194d2d146163e20", + "regex": "(?i)^https?\\:\\/\\/([\\w\\-\\.]*\\.)?ustb\\.rurrjsxy\\.top(?:\\:(?:80|443))?[\\/\\\\]+d2a74e[\\/\\\\]+ZUAqZC[\\/\\\\]+VhIWU_ISNpY3[\\/\\\\]+h8fEAq" + }, + { + "hash": "d51549d2e2f1acd3f6e8ef49bc36772c5ba5e46e507fa0bd26d7ec3339e7b9d9", + "regex": "." + }, + { + "hash": "1b0440a825dae3064280fb99b295341162c67687c9434c99e2f88f95c889816f", + "regex": "." + }, + { + "hash": "d3817cfee111e803bfc5363060787f4c3b3c58c719883b3f979aacc865e58b9b", + "regex": "(?i)^https?\\:\\/\\/bafkreif4xi5wib4qdrhtlmn3jgwhducwt6q2nz7xylcwqyvbnb6esxx7fi\\.ipfs\\.dweb\\.link(?:\\:(?:80|443))?" + }, + { + "hash": "a9761278edf689eb417240853f69c3db0c710dea92638bf5a1a55728bd356bd6", + "regex": "(?i)^https?\\:\\/\\/pub\\-de070dc664904ed28782265ba717e609\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "486f531f8c8bb4686142ac1f694d9167aee335f57e0a8fbc112d8b80ee26b138", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+u1I6b3t7xb9kd0s(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b6d47ba15a16197bb5b4b3dcc6cad6e5797559053b493b717e2c3baab9d0420", + "regex": "(?i)^https?\\:\\/\\/pub\\-aca4ae3677144b858fcd642d3cf613da\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ee5c39bf1d4f82f1cc721539db109fdd4999ad0343a3128ce68e808f6beebfa9", + "regex": "." + }, + { + "hash": "09284bcf0b217cff3050ff1eadaacc5b07e1529bd5d79991193d8e9c6fa39a2d", + "regex": "." + }, + { + "hash": "8c886fa87dbe80abbb7653f74ec018c5e0bee2c65bc7120648a0f6d2bf460c20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ca(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5346f1d27aa10e94afd9885ca1e42be6cefe0f6a94759e0559b1c8ad50fe489f", + "regex": "." + }, + { + "hash": "dbe16e51b74077277661c2414fdbda1f668325ed47c4fe844ca8b7841d1ee165", + "regex": "." + }, + { + "hash": "f13104fd2db8ec66194336d4a72b8ddb8697696d6e7035f2c21de172b93bb577", + "regex": "." + }, + { + "hash": "9d870183f777ad62fbf82d5a20fe1e82d58fe5d4a1ed334c42cd9c7284127b75", + "regex": "(?i)^https?\\:\\/\\/young\\-union\\-9b31\\.heritagechemists2849\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "3cae251a9f7049c3c70bde8576e4f54a73bca5bde12e1159adf3668e517e3c24", + "regex": "." + }, + { + "hash": "7e511cf52bb24d126a89b3964f51489d6dcd906b64a95d02c9e2038475808946", + "regex": "." + }, + { + "hash": "2609a006547c156b48893b0beedded01838ebc8d749e7745701a1ab063552467", + "regex": "." + }, + { + "hash": "ca239893ae201c03727bf8aca73329c04da1f5706b706c8b44615fa0325c16de", + "regex": "." + }, + { + "hash": "b817db69fac70f573f08bb4b90e9eea3cdd0debdce22cc859353220c05cb3b55", + "regex": "(?i)^https?\\:\\/\\/pub\\-c8cc631c837d47168a8c6f0e574a0f07\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "66fbb533adcf3552d01580a47953d618e5431477cf71ae9a3aec80cce0c448ac", + "regex": "(?i)^https?\\:\\/\\/pub\\-ba7c6fd6268e449580168922943cf693\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a6af3665d25604b38760645cb7bfba52a19d839b783314cdcd0d2715ff6b4c32", + "regex": "." + }, + { + "hash": "8d436bf8759d85daf4528e75f197cf9d29f12d6ae49772867ec8b2490c170985", + "regex": "." + }, + { + "hash": "436b9c2612151dbda9de47ddb9dfce9418671ad9a814b9d3d071932367c03a93", + "regex": "(?i)^https?\\:\\/\\/instagram50639\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "043766af614310b97035df88cb9dcca05c733c92e9b5c5415b6458e21d24555f", + "regex": "(?i)^https?\\:\\/\\/pub\\-a7051849f97e40258b2898070eea69ef\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f7b436cdfd46ea51f3e2b0c00fa19f3d9ba3eb243e10a927271ac081bb7df768", + "regex": "." + }, + { + "hash": "c1f51cd76a1986d1d39ae4fbf3eb9116f1b2284e32182d6b7e3f461f994d52e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+rastrear" + }, + { + "hash": "e4f2985b72f79ea48e792ba0f6e57a3c268ad551db3440330912b23d3019cae3", + "regex": "." + }, + { + "hash": "37a790ab8afd6ffa11317b366005da85397f3e3712d66abeb04e7a065adcf2cb", + "regex": "(?i)^https?\\:\\/\\/pub\\-ec6501bb0e014c78af00c504cacf4e42\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "cb7197cf5914a509e36e5c695fdd11d6951686831b613fd853ac9212ce1bf537", + "regex": "(?i)^https?\\:\\/\\/goody\\-food78\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "7924e8a256f13d885a279cfa28b8816f7b749ccc5dec12033bb6e978b4c98440", + "regex": "." + }, + { + "hash": "6a5f7db1668f92baa8d08fb1ace14c0fe3d7b607a31ef273e127ddfe2e74bcfc", + "regex": "." + }, + { + "hash": "0cfadce7aced4d563de78bda01cf16f5debc4bb9f0c2e462aecf9340c2cb83b3", + "regex": "(?i)^https?\\:\\/\\/ydlafcofpl\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "903d9bcf2f94a77216ab01b843c909e20f3108fc0a926d7a0b285f8febad37da", + "regex": "." + }, + { + "hash": "e768c3b470b3fff88dbd7e0d85e3404ac2448aca7ce30dcec31d1ee8f43afddd", + "regex": "." + }, + { + "hash": "a3b7d4c52fccde27b1b22af6405b78dd2a7f768c5ae0d8497b8981e1aaf880ae", + "regex": "(?i)^https?\\:\\/\\/be1o\\-bas\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "3198bf88ddcc6748caceab0acdf6f4b967fa471b1fb5f1af0ec41c31a6a847ad", + "regex": "(?i)^https?\\:\\/\\/instagram50639\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "ed3ffc2cb29d64c10c5c451ec195875ad9258444e63e410499b328e1a191ed25", + "regex": "." + }, + { + "hash": "755626f86c518ffb3baa83ee4f5c9b7c39f9d5884115ab22b3847848bc73bf68", + "regex": "." + }, + { + "hash": "bbafec968fe0ecbed5daa0fb538595306f31d26d6c2fa2b6daa63f33156e0d34", + "regex": "." + }, + { + "hash": "f7b7cf1a10ba69643c2c8a1070c64ce6e812300edb506fe3c31f394761fc76e3", + "regex": "(?i)^https?\\:\\/\\/syh\\-sff\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "e491dd65ed1ffa0a8c5446fd2031c5ee5dde9a8f3db83456cbbf6a0b5c94600b", + "regex": "." + }, + { + "hash": "8c886fa87dbe80abbb7653f74ec018c5e0bee2c65bc7120648a0f6d2bf460c20", + "regex": "(?i)^https?\\:\\/\\/canada\\.post\\-pastelcscanada\\.cc(?:\\:(?:80|443))?[\\/\\\\]+ca(?:\\?|$)" + }, + { + "hash": "094468b33cd68cf442bdceb0079b2607d0b02b99bdb85e6ff1b7b3f852aadfed", + "regex": "." + }, + { + "hash": "304c838dbee841961b5401c5cc6aae5ffc856865e9e1f37b6b45a22d312872aa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9968[\\/\\\\]+entry[\\/\\\\]+register20505(?:\\?|$)" + }, + { + "hash": "d511d468311f3c6a7dac4316bbb4d19d9ee98814604a289e97e40154eaab8b22", + "regex": "." + }, + { + "hash": "218c102180a84f7850b9c06f073f6167d2c4ecf6016241e723f1b01e63f2232a", + "regex": "(?i)^https?\\:\\/\\/pub\\-b143f45073b548598e1a8efc44876e1e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "89955340e3607b244ac548178eb79277405e0931efc4373a80a60c1c4d10411e", + "regex": "(?i)^https?\\:\\/\\/pub\\-7f03e727c2b749db9fdf81f595531c9a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dd189740b54db6e4e892b8f2b3fb696e279bda54d06b4b04df4defdeb364fec4", + "regex": "." + }, + { + "hash": "6156ad16e1a2270844f896ce077476f57a68c99cd919d4d8aaf67cea59a3728a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+2024\\.zip(?:\\?|$)" + }, + { + "hash": "cc8a40246df8961ffb7b7fbbf722053eba96e90d4423bc4d0cff5baeff51d412", + "regex": "(?i)^https?\\:\\/\\/pub\\-b0ef3fb395a6469bbc34af0cebb5dace\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=d4y254$" + }, + { + "hash": "dceb6b58c1c11090ec1ec1b2b39119fcc2e521aae5856bc73433f261a7c9410c", + "regex": "(?i)^https?\\:\\/\\/goody\\-food78\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9f011126f44b19f62095e85bf4df64e14c3290b8cf74ee83bca92b6d9b0f6fea", + "regex": "." + }, + { + "hash": "da727f7e56136230fbac9910d5acc66157a33bb3b05afed55d6296dc7478b916", + "regex": "." + }, + { + "hash": "843ac61edb6099c9e95f06285061bbcfa5790185d74f43461d0c5232c943e5db", + "regex": "(?i)^https?\\:\\/\\/syh\\-sff\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "1b9a1a1dfdd4c8353187bf6d5b10e879597e5fa98a4f9d65cf4462fd4c3edffb", + "regex": "." + }, + { + "hash": "b825a9dfde7dc456903a2b7e6f1ea66cb804f3914094952e6aad7ca55979d97d", + "regex": "(?i)^https?\\:\\/\\/instagram50639\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6fb1a5d1c428733f0dcf6fe52fd774b37ef0c834cf64f4a7454ea428627b9d29", + "regex": "(?i)^https?\\:\\/\\/pub\\-1178c3a0a4fe42c89c3558bac9e4b6c9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "0a4bf47c60d8d2ce6d467c728f29556e4cd71c9a952a0cdc417c418f06146dff", + "regex": "." + }, + { + "hash": "60d93561b4d75760d3a8278c52e3c2b3b7c4ae12db3f0ee26b12b90cf3a0781e", + "regex": "." + }, + { + "hash": "29e131e397619fa4f1ec4fc0e3f5a470058ceab91b4e36cab5f7c4b06474153b", + "regex": "(?i)^https?\\:\\/\\/pub\\-bafc72de4c6548d3b02bc113f0853f18\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4ba08f958a4ef9014f474b70dc769749999ea153189c74acd1f649e622137175", + "regex": "." + }, + { + "hash": "a851932d72a4fc5ebd287eed9c8dcd55d7a406c04b2c50d7602d97b32f2cb667", + "regex": "(?i)^https?\\:\\/\\/pub\\-5206ca2abf0942c49df4a560d5734839\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "702af6d0dbd2d42b7f51f9585eacdfcd8097cfe609785b29d8430335b42b1a9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+taxascorreios\\.com\\.zip" + }, + { + "hash": "d648312b68002420af08466fdceab1f745a5cc24717e46b66100771542f265eb", + "regex": "(?i)^https?\\:\\/\\/pub\\-ade1944d43cb44a5b635c09dbd9d978c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "52579422a1752b7b0b7c45aa8c46e406a2bbf78c4d114483c6e39692b976c403", + "regex": "." + }, + { + "hash": "e0910de781a5428514379417111b23b5bffce4a1b27a657a414094f78640a8e2", + "regex": "." + }, + { + "hash": "deb6852ba62bb6d79aee2a55dd6280277db121dd7c97b4114c31094d92d21622", + "regex": "." + }, + { + "hash": "a88c5c0e6a19567d03f96ae9b9d98de5c03aadc225ef0e4a4759cc5ae11ea1cd", + "regex": "." + }, + { + "hash": "6ee92e9ff4afc9ffd40cc0724815bad822fc5d8b64bfa4cd40daaedc76da840b", + "regex": "(?i)^https?\\:\\/\\/goody\\-food78\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "3307084dd27f36aa71eb134888f10589d6e9d3d92f1c392c231a2a045095ce03", + "regex": "(?i)^https?\\:\\/\\/pub\\-f6562c85c457417ebc9f5f0d40cc962a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1a968eb05a33812ea09ad4b8ed830a2c04771eb6b61744772976762d176e4a30", + "regex": "(?i)^https?\\:\\/\\/htitofjpve\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "54cbed136a9727d17bdb8b38c20e5ebebd98c40bb0f211d655ed63ab44e44a47", + "regex": "." + }, + { + "hash": "7087cc7badd5ccffdf245da6d2914a4018a165356260552d97927ca3a2d0772b", + "regex": "." + }, + { + "hash": "757729191e6d8e8c64e45204093836d378f21426afccb9e283a7e08e96fb3187", + "regex": "(?i)^https?\\:\\/\\/goody\\-food78\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "63563d30590bc56b5b8a3d7eee687d0bd64d8b3febb24aecd7ad8140d9483f91", + "regex": "." + }, + { + "hash": "f0ac515e07d7c312144804352ae2ed3b1f405faca69f2e0aa35fc65d99b2fb02", + "regex": "." + }, + { + "hash": "fbd0dd2a1d7ab1a0e5e9bfd895a82dbcee0c627bdc3af9d0ca787f12bb3e234d", + "regex": "." + }, + { + "hash": "4196cc33bb917f35c292f3fb6da5359ec4e9d011d8a96688f557eb1318fb761b", + "regex": "." + }, + { + "hash": "6001373f9adafc6184fd21adef6992c568e1c9ea56019f17428fd8417e1d7467", + "regex": "." + }, + { + "hash": "fda1001592eb49f4543e99bf680acadadcebd0c8c17e7fea9b19112d7d0682e7", + "regex": "." + }, + { + "hash": "d1a463c9b1d00faf237d34b1fa1580debcf12f140aa635350b345ff9975a1be1", + "regex": "(?i)^https?\\:\\/\\/be1o\\-gonder\\.tumblr\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "db34da2a837119202c305cb729122774606a756fb25a31c0dbd7fe74f9eb5866", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fbk\\-login" + }, + { + "hash": "a6cb2b4aba59491e48ee368b52f5d78b9a6420135b717042e78a273cffc4b46b", + "regex": "." + }, + { + "hash": "317f6b618c81b4605f42771cd0a0850766a7c750a760b6f9fc47fbafd40d01db", + "regex": "(?i)^https?\\:\\/\\/pub\\-afb4187f9597455aa2e7cf8d47ff781a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "af6085fdb4c8dd049375998228a0a01faacdcbeae0f770368322ac4153d3061a", + "regex": "(?i)^https?\\:\\/\\/pub\\-d537d5bc0d6c414ca0c847986ab3b3b7\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "003584b0bd9f1fe8c014b87aa1c032680f29578cc996b181844d25309ca0499a", + "regex": "(?i)^https?\\:\\/\\/pub\\-8e9f7995a5c749f09e0fd93576303c1c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "1afe656c6d05c9fa45c9d913ab57eecc19ece4fe0fa8db5e568f70fbf4232ea4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?apx$" + }, + { + "hash": "2088bf66acec5738d0c8c9ec1053b468c00211961161200d021f3fa138fbc0cf", + "regex": "(?i)^https?\\:\\/\\/anqifrgoh\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "4011be597ea92c2663675799934fc4a8528f2d75b1d1865203b1ac82bd8d011c", + "regex": "(?i)^https?\\:\\/\\/pub\\-a5e38dcefaf84bf8b00b2bacb76c5ccb\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b92ba5c730e6e3eac7eee02f32d72400f430bb30b0d2da79b9da2be2808b0b82", + "regex": "(?i)^https?\\:\\/\\/pub\\-6ca2c8532253497bbe9894d5b129f786\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2d84fa0c8cb76ffae5562f2645dcb4879bae85b2d355f90116cceb31d40d0a5a", + "regex": "." + }, + { + "hash": "3a5b4e86dc4c76b94c422355eeabb55d576f82e1de322df344f69c637415cb38", + "regex": "(?i)^https?\\:\\/\\/pub\\-31620eb8045b4bcba5265129d9b13455\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "380c7be6871a2a46a0c799eddfb22fceaab5ea0b22e8a9c8dd68f77d7bba0ae0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+consulta" + }, + { + "hash": "7250473deebd60a113fa622257063081d3016b8bade2b2ba63f739de748a15b6", + "regex": "(?i)^https?\\:\\/\\/pub\\-ab99b5d3483143caac22605675104e45\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4fab4b0bfb92844ba3403a5b475b30f6ea71ea1fd737d615c1a69d9b8a59b74a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:6002[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "c0c5be011347cea00cadb6314c3d7dc2d3741a7e048abffcf15a1a128280f6ee", + "regex": "." + }, + { + "hash": "c785a7e60e9309a6236485b972878be44540627429f96d965302a49adc4dd487", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help\\?YJv$" + }, + { + "hash": "ed20eb78a3e611c0d05b0e1b7e5a6801cea7326ef088423b20a3c261313c6093", + "regex": "(?i)^https?\\:\\/\\/goody\\-food78\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "b3c48d8567e27906b4f7d5a5ca941bb2d1e8cd923310f054b11513380fe0bd3f", + "regex": "." + }, + { + "hash": "c2087c60fa377dc19ce4b394275e68f6beda2f21ed8caa07de0c0af7d9c82566", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "2e9c6655287e0734d5200b9ff3f7799b02359731314d6c9f7ee4cb40bdd58f6c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ae(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5293132369b5e2b6d27c7b8b6f454868739d1e6f1668ab365fb28407f18fda5a", + "regex": "." + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=d4y254$" + }, + { + "hash": "b591c4d3d58d89919ff3ee842fc5e71215eb2f9a74149f89e8d37a9021926af2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tradeoffer[\\/\\\\]+new[\\/\\\\]*\\?partner\\=1391481\\&token\\=P9whr38F$" + }, + { + "hash": "702af6d0dbd2d42b7f51f9585eacdfcd8097cfe609785b29d8430335b42b1a9d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+alfandega_update\\.zip" + }, + { + "hash": "99e3624fbcd53c49f0b68a4e5f342390fbb63516cab903b44e5cfed2694c5746", + "regex": "(?i)^https?\\:\\/\\/pub\\-1fd150a9ba52448789e3cdf36a0eb86e\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "600131db4ea1a90c4da7c9d8af259e097e0b84c9a5f821f05b6db90b01196b6f", + "regex": "." + }, + { + "hash": "313aac7ad3b5f00dd4c3350b5e205e4376432dbab92577774f857075c89dc7d1", + "regex": "." + }, + { + "hash": "e8a3d80e0b4d0bd63c71b434ba561e423d3a02b18820ffa96ad4c26c3c34edab", + "regex": "." + }, + { + "hash": "2b0f39d0d2336f1af36c25902a6b321e6b39a5febf2658bc7a39f5f832e5ed6e", + "regex": "." + }, + { + "hash": "3f8023bc87a3dadffd1ada241b3fe922a793e094d970468d0ebbd59c1eb259be", + "regex": "(?i)^https?\\:\\/\\/rewards\\-deployers\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "d29a2e12ddca9b0893d7f34264a5734ac1caffda75f9c1233d7c3a7f8b3a8e46", + "regex": "." + }, + { + "hash": "dd4e682dcfa66997f5b2fe56ed8b83e6bf169ea43ddc0f91035a40102223d93e", + "regex": "(?i)^https?\\:\\/\\/instagram50639\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "37f86630fcf8eaa9faee5340c30f7130fafd1b13d1d11c86ade6b6a536670c07", + "regex": "(?i)^https?\\:\\/\\/shadowstrider\\-dusktracker\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "f2973b72245a3aa195d5750abf28db4ccaf156102827ddd6e1f9164d1a3f3137", + "regex": "." + }, + { + "hash": "b6c13cbf67433119c39e1ea4895f0ce4a62163781c1815c1d10afb1c90c93214", + "regex": "." + }, + { + "hash": "6f6d0737d95d9bb845b295d96948e2015ba1f9083fbd2873b9bbf05af90942a2", + "regex": "(?i)^https?\\:\\/\\/instagram50639\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "c785a7e60e9309a6236485b972878be44540627429f96d965302a49adc4dd487", + "regex": "(?i)^https?\\:\\/\\/maps\\-view\\-uk\\.com(?:\\:(?:80|443))?[\\/\\\\]+YJv(?:\\?|$)" + }, + { + "hash": "9d16d87dfb7de62f2a85c579b9989f772d1ded26e10f3886213541fc89c8d2d0", + "regex": "." + }, + { + "hash": "f78cbaacb79cb55167a73f1c269677af7ab1db3a8e9d77988a44b41be95aa6bf", + "regex": "(?i)^https?\\:\\/\\/pub\\-a9974da64b344f4eaf021f44b2c882e1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "ead761f78a25e1e1cffababb9da6389131d92726738777464a867a63db4adfff", + "regex": "(?i)^https?\\:\\/\\/syh\\-sff\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "c785a7e60e9309a6236485b972878be44540627429f96d965302a49adc4dd487", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help\\?swq$" + }, + { + "hash": "2a41ebcb9ffad5c9fe9695eea9ca939343c1195e104800f93c33abf8f2e56661", + "regex": "." + }, + { + "hash": "1afe656c6d05c9fa45c9d913ab57eecc19ece4fe0fa8db5e568f70fbf4232ea4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ap[\\/\\\\]+signin" + }, + { + "hash": "4e4d53deeeb4fbe82becdfb3d7ed3826233813a2fefc702ec2fddd16b3dce29e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)" + }, + { + "hash": "1818f6fcaa7fd15cc45b33d08026f102b9afed40b4472eef96da8a592e6d218d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9663[\\/\\\\]+entry[\\/\\\\]+register(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88d82a7788008eabfa0c808140636e1734924d379211839316e6475a13ab96e2", + "regex": "." + }, + { + "hash": "edeb4fc45916bf1897163886ee824d3cd16b18514bcc741cd43a4c0f5b7d3116", + "regex": "(?i)^https?\\:\\/\\/shadowstrider\\-dusktracker\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3c52fc1872063d78213047b61b89d53b6d463198f7333529549929ebae516533", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+newwDana\\-Paylayer" + }, + { + "hash": "f7e1b35aa53c16e2f65ae0eb37a8c98cc480c3e4a18fd652b4c36ba097430dc5", + "regex": "." + }, + { + "hash": "5b752216415b08a98c4b0e8fafe18be06cd2419d9c9914feb070e280aa46dc45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+DROPBOX" + }, + { + "hash": "f8c196cbcddedf38a543793ecc47d375f38cfa2120800a35cd97e27091a3d88c", + "regex": "." + }, + { + "hash": "1d6cb819e80a32712362234661fca3e115e68b9a105f581ed9bb0360becb2862", + "regex": "." + }, + { + "hash": "5dd05b83d35bf5e6de3c74af610e6d6ba30375f476e98067609906a356c8a0b0", + "regex": "(?i)^https?\\:\\/\\/pub\\-05c43c7ee2184946bfb02503443f6206\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6c5d57eca2d7f35d42ab2d2eb08a8c36c9e1bfda74183716299877698461eb69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+receive[\\/\\\\]+order[\\/\\\\]+bDRl4fHK9aJ(?:\\?|$)" + }, + { + "hash": "6f505e2d6d53492bd3b7566019f0c90d30a829792bfc4b28651f2baeb74c17d9", + "regex": "." + }, + { + "hash": "9caee837470b200189a04bd58a39555e0410570a69bde58fd46487abc759aa2f", + "regex": "." + }, + { + "hash": "93c68aff9f9bbbceda4918d50670a72908217e311af8c6d616ebbc8b8b2d127c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+\\:9037[\\/\\\\]+entry[\\/\\\\]+register(?:\\?|$)" + }, + { + "hash": "0928ba111c44991e1fdd548e68499490a5170ea1820c0dc8491ba45e8ac7df9b", + "regex": "(?i)^https?\\:\\/\\/pub\\-ec2233a649ca452b90d367253d3b3f2f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "dafb45f7eace0b10fecbc4a4ba53888dda006d04beaa4fe240384208aa47a9f6", + "regex": "(?i)^https?\\:\\/\\/pub\\-07fc8c2d81e54500bef8473519f9b5a9\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "39ccd55b6239b969678998bb81482e50d1aee7752ea84992a82a13ec08f4aa1e", + "regex": "(?i)^https?\\:\\/\\/pub\\-476130d863ef4761ae10a7f1fec96792\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6053c7a5d16c328e883843f504930764075fe1db697e6f04a68d2dbd36b1f976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)" + }, + { + "hash": "ca308831a416312d01353f9604abc8fb30a7bf3333442fbdf1a5ea96b6fadfaf", + "regex": "(?i)^https?\\:\\/\\/www\\.134\\-209\\-125\\-223\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "1ce311e02c8297d62c3e539086ca04be862602d7d446c02d09bb81df1e6cbd47", + "regex": "(?i)^https?\\:\\/\\/pub\\-28b4b022dce844b5aa1c4272957a66d2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "199d695c9f99808d7a1ae73c52a1508c628bbe8847711cde0232cfdd1f7a9c84", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ea13c986f09a4e94c1ced97ed289fe91545e95e31fe8bafdde1361ed1590f9dd", + "regex": "." + }, + { + "hash": "3cf1fa5c8bc32d0943461a7609779ed19840ba890d39051eb2a186026ef193dd", + "regex": "(?i)^https?\\:\\/\\/shadowstrider\\-dusktracker\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "504aee541384bc3f4926b22797daad27d525e2b12f3d5df38e5a25b9e9bfbfe9", + "regex": "(?i)^https?\\:\\/\\/pub\\-9d2b09beed51451eb935ebd15cb2f914\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4e8570e3a550b8badd10f2fe3088d25cae5619bf8deba29067884dda17d23948", + "regex": "." + }, + { + "hash": "de0f10f7b3b9af613c90c568a75462addd6d2e78cfa121a5e99a9b125ba20033", + "regex": "." + }, + { + "hash": "0d1ef4d6bbc0480375a50398392ec97e2b0991937a33b9ab41e561ba32094157", + "regex": "." + }, + { + "hash": "e7ae165033b130f4396f39eb425bfdfbeb2d4f6801fd2a97f4d39ee32ec1b29f", + "regex": "." + }, + { + "hash": "6a67dade5c60e6d514b44235fa7222a9cf34548d0b8119429a0e3ba70cc73279", + "regex": "(?i)^https?\\:\\/\\/pub\\-25d4388688e949bdb5f94ae464a00abd\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6c5d57eca2d7f35d42ab2d2eb08a8c36c9e1bfda74183716299877698461eb69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+static[\\/\\\\]+style[\\/\\\\]+support[\\/\\\\]+index\\.html\\?id\\=bDRl4fHK9aJ$" + }, + { + "hash": "5b752216415b08a98c4b0e8fafe18be06cd2419d9c9914feb070e280aa46dc45", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=x3\\.h8dZafJRKLKZEwrG55sjo8oi34XF4Xf47uaxR2ZU\\-1734325837\\-0\\.0\\.1\\.1\\-\\%2FDROPBOX\\%2FDROPBOX\\%2Fvinc\\%2F$" + }, + { + "hash": "26008d5d9b2998477883dfa3997e7ddd004ae15f519f4e2422ed361db4dcc551", + "regex": "(?i)^https?\\:\\/\\/pub\\-e81cbff1b9b044509f89967dc505e777\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "78ae511e7a7efb9e79acfb4de58e592eb778fef9a61cce672d07f31c24c51ce8", + "regex": "." + }, + { + "hash": "9183690533bd333237c5631b9092eca3de16d75f21f43b4ea241e4fb00912586", + "regex": "(?i)^https?\\:\\/\\/pub\\-7e03be4ff5dd4fe48e197e883719b7b2\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8e923b9db336589e705d081971753dd281acb8aeedc56a83b2b33d90e7be24c6", + "regex": "(?i)^https?\\:\\/\\/pub\\-a06cba4257a74e4089d885b062901567\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "364127b3738b31a5b9cb3fcab738b184f404a5507b5c988f16ebfec0f3098d57", + "regex": "." + }, + { + "hash": "226a7797e7d07d4ce01908b8476753726bedf8d7e06bf3f90d6658a7a0e00a21", + "regex": "." + }, + { + "hash": "a5a4635b0e97c66a0c6aab8a7a9ff357410757d62813ef11cc47f0b85063ae4a", + "regex": "." + }, + { + "hash": "3ff369fdd68490a06c4222450428753928b294cf04b8c90f344c60bce2eff11c", + "regex": "(?i)^https?\\:\\/\\/bemadeal\\.cfd(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a2d972e5f96d4adabdfcd8d6941511e44e8f64186b72af49d83d2611ee016a70", + "regex": "." + }, + { + "hash": "642916faa330c96f781d80f6673321728ca625cfcab3b484c3404cff9683e942", + "regex": "." + }, + { + "hash": "9efbeb1b2b17c29decf6e75103daef71b309fdcc557ec285a71e3ff1d75c73f4", + "regex": "(?i)^https?\\:\\/\\/pub\\-0a53cea6830d4665bcd7c094161c3c40\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "25e1b107166210ddd3c419c6fee4b096f10ca17d998ea71482d024ffe56d24a5", + "regex": "(?i)^https?\\:\\/\\/pub\\-cf1d32d677f14509929d7df156233b4d\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "d8c36c52cdde38fdd53f38d4dcfb0f556be23524af3fd6b365cf0f6e919e0176", + "regex": "(?i)^https?\\:\\/\\/pub\\-cd448b9961374cdbafe814f2901354ca\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8c625cd2a3e612563aa34fa0c4dc53aacad6d128a862b76aabc6b2c1008a69bc", + "regex": "(?i)^https?\\:\\/\\/patient\\-smoke\\-bbd6\\.eupgrading9898\\.workers\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7adb83ba582c346e9479e306f117da44bd9854ccaa3786ef01547bfd08b58078", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+hk\\-cn(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "27ef84e2f00e0c9b1bb7a547b63b6a381f1e6fc5d4669e9ef9c9b57e0ce23025", + "regex": "." + }, + { + "hash": "b0a75738854ce0c3032a5411172d19457b4497ea8763405cf1175772d5c7a774", + "regex": "." + }, + { + "hash": "aed54d0e2564264fc7dd739f02c8370329d341346e5638ce1e3f49a5e1680ac4", + "regex": "." + }, + { + "hash": "00a7eb544bd0bb30754cdb28db2dbeb110666e8f7b91bf147194d2d146163e20", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cb7df[\\/\\\\]+IWU_JW[\\/\\\\]+8hJV4kaWRAYV4qXm5\\-eX4jfGdjJGVy[\\/\\\\]+L3g9JCNxdA2" + }, + { + "hash": "96baac14fc1299c7afbe2842fbd9ff5e2ab79919f87290e5f317aa6f6a414499", + "regex": "(?i)^https?\\:\\/\\/syh\\-sff\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "7adb83ba582c346e9479e306f117da44bd9854ccaa3786ef01547bfd08b58078", + "regex": "." + }, + { + "hash": "9cb0ad581fe029cb9533bcd94b3117198372f9df3123b4b975b3564526d4dcc4", + "regex": "." + }, + { + "hash": "eee4c740c291c5d9c2a1d5c559edaf5597ad6e409381c9789e6201a524f053e4", + "regex": "(?i)^https?\\:\\/\\/pub\\-8e3861fe5ad144afa788a0a0f576da05\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "6c5d57eca2d7f35d42ab2d2eb08a8c36c9e1bfda74183716299877698461eb69", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cdn\\-cgi[\\/\\\\]+phish\\-bypass\\?atok\\=j8pzDWsUaDFMjNqKIc8Rc6IH5jnY93oR2GQrXb3EVuo\\-1734320634\\-0\\.0\\.1\\.1\\-\\%2Freceive\\%2Forder\\%2FbDRl4fHK9aJ$" + }, + { + "hash": "e2ec395abd5bbe39d9788ed20a78ca0d5d0a6467c8607e69ef5a3cb6b822942f", + "regex": "(?i)^https?\\:\\/\\/pub\\-c1cb0de31d304e889ecd4d2f620f77e1\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "b591c4d3d58d89919ff3ee842fc5e71215eb2f9a74149f89e8d37a9021926af2", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+214e7a557b015b16435154575e0400534b4751765a5d431653201552704404431159514613037c5302090106095343040f160c5b51561100253609165e46560923(?:\\?|$)" + }, + { + "hash": "3c52fc1872063d78213047b61b89d53b6d463198f7333529549929ebae516533", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+huss\\.zip(?:\\?|$)" + }, + { + "hash": "6e7e801f92a42128762bcc2f12807d34ba2282643593b6c4bcbf6d126e80f5d8", + "regex": "(?i)^https?\\:\\/\\/mail\\.us4\\-signapp\\-coinbase\\.com\\.85\\-31\\-235\\-44\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "bec9f47c83881bf0b2072da1f1211cb2bd8423bdf53c041ac1e1aaf7b61f5123", + "regex": "(?i)^https?\\:\\/\\/mail\\.134\\-209\\-125\\-223\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "06b5881b5a8d7e79f35c0ac06fb6d8ffc867b127e67cbfb13de290e7f114d5b2", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "6541079d6041bffd18daae8f898ce7946142524a4d94d074a8ba72958722176e", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "0692374054fd9c79fdb715cec0c8915487fcfe60529cb6ac1f528f392a661a0d", + "regex": "." + }, + { + "hash": "5474a3edda1a4666fcec33e50cfc843f83afb6f2b4c7d219f833d8af3a844ae3", + "regex": "(?i)^https?\\:\\/\\/shaw\\-106541\\.weeblysite\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "87780379b6e158c56695937c69dcdc151bdc3d3fc4c9b4a384014176be6bedeb", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+m0ey1ciqc4yrn1m2bqr4csp6osfva4l8xvs3apjl984zrpsxlu\\.html(?:\\?|$)" + }, + { + "hash": "7665a62d35c85e9dfa5fbcbbfd2c505fb409e1324fab7583bbe6eb3dffd3518f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+track(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "dd33a7c9335fdcc96d7d97b6e821fbf6c63baac208191d7462b5d9fe09a6e5db", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+de(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "eadea4d08c0df25ee6cfedf1a467e60bd0d423a1d5e79f2bf7d1aa4846cc70fb", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "52f6d3b75bf643e001c8d0f9f1220b2a7e8a04c8931f76d72aee4ab79f0b5853", + "regex": "(?i)^https?\\:\\/\\/hbgqaehbaq\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "1abe82b94292398e305431a2c8721f7755e7108901b49621d32c42b78638af4e", + "regex": "(?i)^https?\\:\\/\\/qafgvqdagvbeqd\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "629a75e1528726814af41b509b218f702cb6e2bc6cab12b0fbe896e9a4fa9933", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "96fe99d4ca8fdfeadd29aadeea1de9b150b1af2b4c1061039f4f9361c97e5aa4", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "864d2c78e7f40a688bde94e2ac5226fd55551d4daa9ff9d423ff1a8cebd99246", + "regex": "." + }, + { + "hash": "76b67c11f5c3dda85c41adb21a7a161992f7e3e8a8db97bef027bfe56b5c1e3f", + "regex": "." + }, + { + "hash": "a85f43f6b3f4375bb2589ae75e9984e2250fdc1bbd4e6d9d6e8289633f4c9f37", + "regex": "(?i)^https?\\:\\/\\/4\\-232\\-163\\-255\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "9769652523fa1760a7052fa140d4ba851ed4cbcfd90444ee2d19fd26dce2424b", + "regex": "." + }, + { + "hash": "6fed3788729958e2f201562a9c85ab632b1d0b7984fb977d7f2de27cb6277d4e", + "regex": "(?i)^https?\\:\\/\\/rqahbqarhb\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "15dcca8e1f7d1831b6c302ffa7873b4989f551a49655787d61e3afe0041ef745", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "2c543806830b8f38a9798acc5bac266da4bf29fb62202262fcd23fb749a9efb2", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "c04180dd447bb5fa6f538ba6729c0c8db1ab9b325e54042c791f34f55c0fba3b", + "regex": "(?i)^https?\\:\\/\\/lkhkhkgu6\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "f6159ed275a017955a269a4fac1f643e7efcdc90a838f1c319035a3568b10d38", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "136ce434631a85f544e83a7c4263b782241ab69d3e9bb6017da49ffac03dfef6", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "1ee0ba6b3eaf961c3431b700bd262fdf0ae69e4ac84570c7ac17377a944c2b7b", + "regex": "." + }, + { + "hash": "a19926077e1827b9ad7cf4f00abb5af5812d38eb19fc8356f9a637bb2ae17790", + "regex": "." + }, + { + "hash": "29489600c739f9fc255b80bd3b46ee169cf82bd5ba81dd84d11df98573c2c3eb", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgdbqa\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "9d663d1e12d8d26cdbb08c47303e625863a94743b4ca8b978bd84de455ddb66b", + "regex": "(?i)^https?\\:\\/\\/daft4rkup\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ad50771902f35169ac1f2f758ab286bd49005242b73b32e4a6a93428d81a2eec", + "regex": "." + }, + { + "hash": "0f7c6b6e24834cf7e5462a80a5549dc195615a3b71ed222e3b0c2610812c8619", + "regex": "(?i)^https?\\:\\/\\/p\\.updateinwal\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "d8344dd2690c7e57f109e5b802e0e0be7ecf9cdbd987d5dc87f00099737038f0", + "regex": "(?i)^https?\\:\\/\\/dasda32\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "d91f74dbd27485baa2eecbc161597f30544097d0b7c8b4b82256407cc462e309", + "regex": "." + }, + { + "hash": "bd823a7dd40646343d36df9ca46c69c61cd702411d2b69cda9ffd42f0685f6c1", + "regex": "(?i)^https?\\:\\/\\/fqeadgqa\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "183b308c48a46cf4ef70f4be9c5701fbf2a3831f2752af5a2bcd1138f9529b59", + "regex": "." + }, + { + "hash": "7076155539474ee68d6b8d954804719aa203c11fb84916472333a928252c3972", + "regex": "." + }, + { + "hash": "03df2213df17efc3e8facf913eef601df146b3cdeb2f1e27a130c83753fc3f07", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "fed464f85d7a61db550d5e64d7f364d2d00147198625d31376dc508892fec0e0", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgdbqa\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9f69f1b1e4288e1f7a29a16c8551eab5e0ac2e86388535525a23c87fa85c6b69", + "regex": "(?i)^https?\\:\\/\\/apott\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1a3f14c5017cec0fe159fbaed08d4b62a85f81e577546562f5b0df24599c1d7c", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "e4f6faaf18d5e697b16c11cb293a89083884e931723ed092f753da78469cd6c5", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "661626befcf3791fd464eeead420ba528b9d35b6bcaed53faea21f54a9996063", + "regex": "." + }, + { + "hash": "4418b6ac070e330fc838ea531228597648e7eaaf454e450c8c0f2862706df606", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "1120cebfcff3e7d66d621864d534d72f74a66633dc67baf3e645f5340d9f29f1", + "regex": "(?i)^https?\\:\\/\\/fsdfdsr45435\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "b2ad6fad8e5ebe8c80dd4ab28250f580ea04e39a6f8cba375d2b907189032b31", + "regex": "(?i)^https?\\:\\/\\/rqahbqarhb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "e79b03126a71d8ec1d2620ecfbf28ed9c735bcda08b0e609656c4c460bb4ae15", + "regex": "(?i)^https?\\:\\/\\/dasdasd78dsa\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "87c87239584e6505366339ec19e6f9b6f485bc79f6e64d79c35c0d6c75a8361c", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e71435abcee2a84ba01f4a5b04cf7e23201a3c89e73feecbf49023c8240518c2", + "regex": "(?i)^https?\\:\\/\\/fsdfdsr45435\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "1a2d6b1498d812d07f213cc38b89c895ed2f00218b5db6b3175755fd5470db14", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "b109c85dbe1d6315e30cf8557ad8bbc6c168d8822a19fff50cc385c6002e7729", + "regex": "." + }, + { + "hash": "e42dc8bc7daa167a91531d82fea532fd177488134f2e4c244824d4f157986d67", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "da4db7de99d6ee78b303436e6067e12a04a93cb4d35717ed8922054854aeb14d", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "da039ec0b4c66e01d89cda3acdcdd0a0a3dcbeab986eaa780e67642ad6809c63", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgdbqa\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "914ffb8b1f3926d393eb468fadbf66255f7b3fdfef70dfe5a08c86d2c5bea786", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5f623c48f685fd9c1f3814c205bde948a5b8b5c6a573f97d314c13d75319d5fa", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+afe5501cb3b451b80(?:\\?|$)" + }, + { + "hash": "764215a0b10f7fc4f5aa4c82f51d8268262729b1be2285834ec7e8f34963b03a", + "regex": "(?i)^https?\\:\\/\\/pub\\-d39d1282ab5d4f6291630ac488f20755\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "5338c48400d4576b8f2c4be598d12600df78c3d5810761dbdadf79acf03f64a9", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "803498a20633de2f9e7f097b99e6cc9cee12ea22fc3b2a9c9ef92accfe950b1a", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbq\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "83ecf5d8a0fbd178818637950a6c774a6cfaa8be7b3f7689a70b00685b8e5265", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "b3d56fe9bf59ebb0a1654e18e7ebda409bcae41e9b0e4c5233b174cfdaec2306", + "regex": "." + }, + { + "hash": "03690505bb88ac3d60a07af792a4eace2e99d3fc99f1a997401a84337ce7847a", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "a513f02efae065d180d117eef743f59beecd016fa0168e5e57c85b81f976d804", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "435e2c3fe0fc86510fdc475b047d401bf038a4ef984364bae23b313b8e4ee84a", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "ac8bacec62754afaaf578f671847cc80d42369eda4df32f46f4e7ca53565b01c", + "regex": "." + }, + { + "hash": "cce1c5f4d0ac6ebc04a292f76ab0c2026b24fe641df9be2c92d6f5675c112497", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "82d5487b039895794a1ad6bcdee81af93e9b2b55eaaf40d9cc62d6ab3d3c65e6", + "regex": "." + }, + { + "hash": "7ebc1330e1dc2051c49e001d503c3719a7074399795345a300728fd7121ae776", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "b0e4a657db1061a778c83e4d852f2a57517ce17a38633306189af095dbdb6ab8", + "regex": "(?i)^https?\\:\\/\\/qaerhbqarfhbqahb\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "b3808cbb5422c64156ca156cd9a1893f69a3fd3cf329c19873f0267a4d4ec3a3", + "regex": "." + }, + { + "hash": "46a7cc36d8e0ab0393dc61890e48785add1362946a8174de8e689ea83f2af617", + "regex": "(?i)^https?\\:\\/\\/hbgqaehbaq\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "9ee8f4d55607f3b042b18e49fceb295fc7078da8fd959362a102d4d9d6482127", + "regex": "." + }, + { + "hash": "6ad4014c2d0cae8151f45511b6cb04424b740c8833febf226352367602666ca6", + "regex": "(?i)^https?\\:\\/\\/qedghbqwedg\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "c961d3f20638b5acd40218c491fea594193c3b84e709e817ff7a9d06501a2e9a", + "regex": "(?i)^https?\\:\\/\\/hbgqaehbaq\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "e46ed7b1a1bb15297b1721ce4e7acaa52a4fd448d6e62775bb7ec0bbd906780f", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "f874e1d8be07351f18c8101287ef440c80ca9918e0cf029b52774ca01f8da44e", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "a39cc7b8ce40daeff91c2d01a60c540486df475710b1acfcc39a3ac703914847", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "94b6675e999dbf852b57048685d2ea6dfb4184d6715fd7bafacf9a8b8bd9b905", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "ddbc769955c025544a8fccd0f77fbf82d0e2719433860c6c521f3e7d174d2fbe", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "93e30487987bf06e9952e19680348f17ceb2444a830c5610907c8acaa364fae3", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "3f90f1f46a811f71119426126077235ba9d9996c0ad1b666b4f2499ee34a3815", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ca0ba37fa725985b75165df46c866043ab24df698a10072a743741e2899daed1", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "e4074cfa64274415a298a5429d0fd3549c4bc342b9f8a7a3c21b5b02387a49a2", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "446d6b779d69b3a796e65f650c995773c95583f436e0c87835449e28a0b69b9d", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "d0a2ffc4779846e0be34219877b82c51952526b559549757a24e5ccd8bb2f909", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "b109e4509720343516e5261576581ab616fa6008eddbb309c581a559e3825033", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "868ee4c3baf7dfabf599baedf4cdf6898c1d549d8f2f7d194ec47aaae53935b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+alfandega_update\\.zip" + }, + { + "hash": "228e5fa368f8e1a367d0a525b9f8f443ee7e23755e06e1ee9cdfae4f9a8e8167", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "ddbc9c72e3af1f6ca49f596f836bcc6b97ca9fbef362610fed1dac63aca4f514", + "regex": "." + }, + { + "hash": "10b44fbd16441307d07adff2d88979de8e2b707ed1c9d6d9bf119db03dd6e2d3", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "dc27c61b12866dc7d11e78924070d16f3984c8d56b6dcac05c673010db1a463f", + "regex": "." + }, + { + "hash": "ff1cc2efdc19dfe206594b6af8b004b0bb289770e950afbd13cc67b780963c02", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "9db7671b835e61c7987f7b6496ffa169a08aebd5978eb410a5c8f94d428b03af", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "9ef85225ef9ab1452800bbce3ecca20660b178c205ad25be8dbe669999f0e8c6", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "2827ed39adb57c79d18e7c736b1bd24150111411848ea39b1a8db1c5fcee2567", + "regex": "(?i)^https?\\:\\/\\/qedghbqwedg\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "3b6dd0b49e4f5a2a741de97f22dd5a22b4b904e949908129ed818ae32419ccaa", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "34f55222d4a61cd2b3711ad9413fb972f1e03ae772c2bc1516ce6bf24e41c397", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bod[\\/\\\\]+\\." + }, + { + "hash": "b5792c005c870ce0afccdc84e1bee000abed2f8da3588654857c0c37efa3002b", + "regex": "(?i)^https?\\:\\/\\/p\\.updateinfotxask\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "3c9a8c19fc4b33d4fd5f664264706971a99a1b7bc5bd8ea5d3147b5217e2d63d", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "a90498c1299db0cd9aa997c83b8645bd98d813d8df8306589594c57f7e918adf", + "regex": "." + }, + { + "hash": "a3434875b1558a6a26f5ab0283d7675853e8283e3d94399854e6cb3bb2033797", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "2c2c5f5d8c2e36ff432455d9af132c9c5ec03a03149879182c61483a7c343c0f", + "regex": "." + }, + { + "hash": "c5c6130f2b1c65d545842464faba5a386e5f802b394f99725653efaba7828bb8", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "0a2307b5085ca2a735ecd5d8a702f4aa38a4d7f5186d9925f0f0ef4a8585a3a9", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "294250b086377d69b05aa57dd96cb1ece71dfcd4ce02d45f3771ac3094ee19cc", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "76f320b68e3cf4a0e6818700fcd5472e475199e40e1a0dc47f7957851c3e05b2", + "regex": "." + }, + { + "hash": "3bf9cc8b0b4fd60da9409c852626fee060a1297d0aa625ef529be6af500acd86", + "regex": "." + }, + { + "hash": "3d7d7c719b7068ca655319b331286a6afd185be29708be68fee93f2da32c70a5", + "regex": "(?i)^https?\\:\\/\\/utenteing\\.54\\-227\\-202\\-169\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "73a17bbca63e105e1368cdd6e977716a0639fe096a4d0f908b2fb73ac1d83d9f", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "12afd7a9bb1c785a42d01d09d46f04c63955a6df75ff492ab88a952181219146", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "d33162d08d25f6bc53f649f0eaf2daf3be235eb313785dfcb67c58b4291b12a8", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "a19d0b34e1646479563b27a41baad08b47c41a07be288fe6fe3062879949cc35", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "4cb4248c5a45a140c858423b8549e46e8e3e01c5640ffa7f69843107a7708e8c", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "268503dbdc78b0f0d1aa21674d21ee810c948f0628108e4e58e0ad8261cf2081", + "regex": "." + }, + { + "hash": "fee14ffd99a325820050fe362f83b159b058bfe83f25d5747591ab2ee74972ea", + "regex": "." + }, + { + "hash": "a4bc0b804b013ae3e45455e23cbc5ab383fdaeb6a7835a3fc584dd671775bc3e", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "789bd87cb2755c50a154e2a348922ab2eb8222a05888346ac02f9d7db4dd6030", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "27ce093db1046d1613ea451077ec2d9dd111f5ff377ad0e0e2ba96660f1bd323", + "regex": "(?i)^https?\\:\\/\\/qedghbqwedg\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3adfda96ab4b8a28ca7db3f3883f16b3313e01ba9a5cf141c9f4ac42c2259d0b", + "regex": "." + }, + { + "hash": "a4457b8672bee56cb060a768805dccc583758c757722748ca576747c63901b35", + "regex": "(?i)^https?\\:\\/\\/trackgbv\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "089597ef52c095eb4d128d384bdee9fbcccad6445488b25a36468b1f849478ab", + "regex": "(?i)^https?\\:\\/\\/fqeadgqa\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "e818eec6a27f1c4e233ad1812387c4de39863ac6802bbe247d05986ad71e2699", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "82d550666015aec8d5a7202c15e80cc2eb02945e03e81c1593f30454f0398f2a", + "regex": "(?i)^https?\\:\\/\\/hbgqaehbaq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1dac4eb1b9d939aad8e436ef4a6e070512810f0d5ce2906ea428252dc9dccd54", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "e60e0d852427ec091db5c046a44bde7468e6c1f8738af1094ea7d62bba5a62e1", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "82873494be4ab1e35eabd0d4df4d6e2b45cf264134eb67512fe104a8b4145f8a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a30f0dd7d76d1fa12a192f22ce67abccde8ec4d3fc8efbced14305d6b31987fd", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "a8a28be35552759fdcc2a43425ef7f8f3ecebd53c57ea1b564d8eb52fe40adab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "8be09fd9d4f294d90b51228f24ab226cbebc2ade399e6563cb5b5eefe955e719", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3e29090bff7813f4b736f57003096bea322f3f54d5630ade878390f43ed00e88", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "22ab90b3e866b2fbeec4aeeba1a7ed952c44b1eb3ff8436ee14741c46b1b04e0", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "304b6319a2cc45951ba2fe7cc67cf70021559935b6720684ae7df0e01f585512", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "2daefa1c39fce9510f54062181a86c5990397a3f92226287bdf8d1959bcb4411", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "68c57b6ec6e91570bd7368c1398a6705c32ac71f9750a726b2e4bc5ba53b6b74", + "regex": "." + }, + { + "hash": "75cd1c9436652630e7b9b248e8c06f72088df049f6dbb38acbf8f630d20cfb4b", + "regex": "(?i)^https?\\:\\/\\/tracksht\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "750b8d7114119e770b86e1764d3350722f7ac0423a0793669745801bedce1535", + "regex": "." + }, + { + "hash": "313e66cbdb1c6011d15a8e9ac780fbf257ccb61fda1b2c2dbba128288126611d", + "regex": "." + }, + { + "hash": "39296b4ce45f373a7cde93a9e869a173464141464a1c30bd1d1b793a9ed9756d", + "regex": "(?i)^https?\\:\\/\\/rqahbqarhb\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "7f9be3eff0e9031493aa12da556e912e06ae641d21d203d7d9c329cc1f77c8a9", + "regex": "." + }, + { + "hash": "b2993d28a76f1cf50acb08e5f40f8c4f41db130c2b4bedb1f304e3450168c183", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a81217081cfc73ba02f665086f090cf1f762e75d4d4ad2695d71e74c642ff22d", + "regex": "(?i)^https?\\:\\/\\/eqahrsqzjhn\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "d80f0fe3968c20d47fa04d75a673c1000c4579ddd9b9bbe798c9234b94c5e530", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+de(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "5b8a47609aee52c5257bdb892527b7597ca659c73b3a4729342142ca94d280c8", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "c2124bb457327b10f11dbe38155f493d60336e586f0db2f4ff1787f6d1c8b8ac", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "117f1f895e0743d9de93380449127d93ab996c04d2d4d2bcba47fa09df7db550", + "regex": "(?i)^https?\\:\\/\\/raqehgbqaerhgbaq\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "804ae9c786b9a05175c6d96a4860298f85f9ab511d56fc5477e34e83eec7150c", + "regex": "(?i)^https?\\:\\/\\/dasda32\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "f8fc930b227e95e6c4195d6888188334c8fa8dfb2eb5bc8f5c36c8f151f17da0", + "regex": "." + }, + { + "hash": "ee4c5686babf3a270b82a6e67e37c0414495ac65ce9d373f342b3e5be115dff9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ratixx\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ec1c657a182c4b64eeb8b3669bd3ee598e293876ed33b2121a81de29ed019de3", + "regex": "." + }, + { + "hash": "ec2ddce4695d46b5611c9d15cdc92cea8031991bbbebbe8d360bf3b27b33ca2c", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgdbqa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "97f1041e21dfb2a1cf7f48fec94248b37fdbda5d1a75dcb8c69abf52e90e2577", + "regex": "." + }, + { + "hash": "e1ab008e2ea52ea0a56eaae38f7d0e179d318f022610a8043992fd8343d93b3a", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fbf801d7cf78ee35c2235600d4ea36709313361f8dcec107b94a5198cde3f804", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+0332005027620025zf8wy7z12jkpt2gu\\?KKTXNBJVTCABOBTZTC4I0GJJLAX3U3WVA$" + }, + { + "hash": "1323e60a99e193585bddf5c943642cdf93089cda61d2db662401095c91140d95", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "1fb5a114131e10d3861e18e4c1e459263cdbaee38df872ec996f186f47fc3516", + "regex": "." + }, + { + "hash": "7c0011153a26f41fdb40d24b410246a8005a83f08422bba1c71b9c8c15afe45a", + "regex": "(?i)^https?\\:\\/\\/dasda32\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "dc8b57520876684d13210b770376770a8f4cc343d79f8a7819f1672ad2469aef", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "d4768813a1342207021345fbbb58082a892368c8758693151fd561381d976616", + "regex": "." + }, + { + "hash": "065eccc9aed6ae36396baf45cf7d91d910d7c10073767fecb728d886382998ca", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "5323f866129a6a26c5947cef74088a3f71377e0f9ee5f2cfcfb27c7b2c6c73d7", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "d78c2dc9f111ba132bdbf67baa274203951cf2cecec83a72401830ca0dee83bd", + "regex": "." + }, + { + "hash": "d3b205cedcc512c39a1356d73a3e3eb2aab9ca74bacdeae284f4bdf009720d6e", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "fc36b03c9d43e6835b7aaf9d8792070220ce1b6f118e5a5bffc6f79d5842c4ab", + "regex": "." + }, + { + "hash": "628c930ab58557db96ab8019829d468d513355bbdec288c753894cfa6c8b06a0", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "03eacd925fec0581ca3342ddfac5403c316c6c27e7ae57750c2eeddf90bd042f", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgdbqa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "35220388db2290606464ed40be786ee232fa097da1be3517d1e60221976de177", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "633f3c77e9b0691362a3f1130f956e53ae354bdf20b702f2d829bf0913d91926", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business(?:\\?|$)" + }, + { + "hash": "17642d66aa56acf1ba2dab825911721dc46471aa985641bcbd4c93a011e170f6", + "regex": "(?i)^https?\\:\\/\\/raqehgbqaerhgbaq\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "d4c50b17b3f10166e9c8f8214042a30f0c4f7354963bf95ca472c2f13f7455cd", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "556cf7d0ae36622f23e5d1ce312d58c4fcee141cb2e208664cd6a7ab423dfadc", + "regex": "(?i)^https?\\:\\/\\/vuitton\\-256\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "9ac6bae7a925705d0ae08eedcdaa1f355b42a99bc41924fc046789b349778b44", + "regex": "(?i)^https?\\:\\/\\/pub\\-6b152c09ff2e498abefd2a2e72d8730c\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "9d7d776024311c0ea23576c87c86bae58c5dea8928d2238d13c5c49c6f51e554", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "144af63a05419577790055a1e2e760332cc4b581a937379fef498020efbc0b95", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbq\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "78527e8a4513c37706e8c5945c60b05370cd0f3cb2ec53a21f3f6e8721c36a03", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "34348d5df25c58fd5a95af362d4a12e8651200104a12a16279cd4d18422a6526", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "ae0bd8d85f24cb2e60dca8064a11af0ad565a8c2655749fd2ade9e171ff1591d", + "regex": "." + }, + { + "hash": "6c39b2812ff190ad565d67a669c71f4d700ead2613e0931c6d2a86bea72daf87", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbq\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "afb618543e58f45698f46bd85b65126761a5bec56e9762de4426ca9119f95c4b", + "regex": "." + }, + { + "hash": "3512fa5e52d900b75ea9fd76270ccf9e1a79d7252fb8c34512b05ce3ea9ba79a", + "regex": "(?i)^https?\\:\\/\\/informed\\.deliveryvdk\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "cc88d1875d4a50430377c9b910b4588e7661d0f5a627de8bd84c3519241b995a", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "a31e45ca4f339e1c4888a113605cc1ad381c5f94278946c6fad646e0b0d33bcf", + "regex": "(?i)^https?\\:\\/\\/qehbqehbq\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "8b661d09481d6e45eeec5985d1a191f18d5e002543aac091eafec2e4cd4445b7", + "regex": "(?i)^https?\\:\\/\\/eqahrsqzjhn\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "6388e4dbaa100ad9d5326b541f02d49cb4592fcb8914bcff67789d3efa5c8fc1", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "20ed483e3250458b0fca926b1a10f07630117fbf4b1b5e8abd543642019a77bd", + "regex": "(?i)^https?\\:\\/\\/tidecaster\\-waveshaper\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ebdce93f6c92577d16ae86a43d3dad0cbfb980afde26b72909cee66fff8fcbf9", + "regex": "(?i)^https?\\:\\/\\/qehbqehbq\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "cafd1d7b837ddabae5fd088b716ed66a48929ce554b80eff7495cc4ca8efba83", + "regex": "." + }, + { + "hash": "4e0c03b153c473dd633d8c6236ff07583ba903add43fe5b398bac2f19188267a", + "regex": "." + }, + { + "hash": "1575ba327b50aaac528bc74b3d214ef24c30df0d0433da8e3fe946de8fed5204", + "regex": "." + }, + { + "hash": "633f3c77e9b0691362a3f1130f956e53ae354bdf20b702f2d829bf0913d91926", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business\\-2fa\\-error\\.php(?:\\?|$)" + }, + { + "hash": "dd4c6dea41cba087793479cc21f255cbbe5cc64a5ebd5c9d934140d43e66bdba", + "regex": "(?i)^https?\\:\\/\\/qehbqehbq\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "9489df8e79f4e288e91fa572f1d9ea9f80ea20416a72438fcdae82fd8d4bbffb", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "b9445935f9a5d583a7da058d93fcab32ca791f754637b8ccee5b9bc428fc53cc", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e765de64b7591f54501c9f971e1ffc29ef97056209657c69be83ebef9f744d8f", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "cae50557264dd267f12abc404192b1d7cf6b85d8b86a3e0762da5afc7a979bee", + "regex": "(?i)^https?\\:\\/\\/qafgvqdagvbeqd\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "4c7cbc01f97b62daf14e5994343b9832b99e8db11615ad16bcce4e5b45528b09", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d044b3050545cbff61d089ee26e782458409de07d81c9b53790a2cd467dc8a27", + "regex": "(?i)^https?\\:\\/\\/fsdfdsr45435\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ff666f1c305c35d52dbe41845aa0f932a64c8b8930baf5bfbbca08b62cc8e4db", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "31df04109545d2187d807e94a4a633a1503eb71bd02b6a2378e01283c09af2e1", + "regex": "." + }, + { + "hash": "d78d263fef26285e011f8092c630f805dcfafd44da0f580d2592c10ca0fd6267", + "regex": "." + }, + { + "hash": "b9f6ea62411b9ac8f151d126e724933aa42fce73fa1e669717043ae6c48381db", + "regex": "." + }, + { + "hash": "0f5e057b4844e75f0f781fa089daafdbc36682e41391e369e43d297ab9c0cc8a", + "regex": "(?i)^https?\\:\\/\\/lkhkhkgu6\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "aa578c69e5de3b9e4ad50b03355691b82c22aebad7e019476d62cb54877cff28", + "regex": "(?i)^https?\\:\\/\\/kosko2oo212\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "64649c4fe3fac065480632b930984db3194c0f720abec22f5a297b4fc67cfcfc", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "049569fc73668913ab563b7bbc6a864c07d9c9efef2cfa3d6f99733d2aac7139", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+\\%24[\\/\\\\]+\\%26\\%40[\\/\\\\]+data\\.html(?:\\?|$)" + }, + { + "hash": "77c429a1e7fe880c8a8522d707644d24c94f3dd0b8ca5cc650872eb0d9665b49", + "regex": "(?i)^https?\\:\\/\\/vqaehgbaqeghb\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "8da859c1aaa14538a5e568b4c76487459871d666a50e464b9e25b83083656ffd", + "regex": "(?i)^https?\\:\\/\\/fqeadgqa\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "e0a39ee7413c7c3695bfa9f0a24b83fa633097baf6a307ab4645081dea1fc3b0", + "regex": "(?i)^https?\\:\\/\\/mial163\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "7809f628a3446d92446255251bf540578906ae22e54018ed09886e5ecda1f403", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "dd4ea58529b0a4118d9ac633aceeec9d6315aff60f2674e00bdae9ed1eb4c9dd", + "regex": "(?i)^https?\\:\\/\\/dasdasd78dsa\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "6a17c7eb6f339a888cccd8731f4cdb38543ef41c73a39f09382b1e06274e5841", + "regex": "." + }, + { + "hash": "fbf801d7cf78ee35c2235600d4ea36709313361f8dcec107b94a5198cde3f804", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+vWFm4R(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ba0dacd2084624eba1f690723a33cfe1b74ce0560cd58f0e3133509a0433a154", + "regex": "(?i)^https?\\:\\/\\/pub\\-c6c7f3af00f0444c8ec9e18f200d61ad\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f1bb327d2dea51d880784e47b998f4c78bda3144a03a53b9bfe8582b1ee216fc", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "cfb9dc68acb52134b4784675e24b5502f6829e34e9f061cda3184be168ae39e9", + "regex": "(?i)^https?\\:\\/\\/dasda32\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "ff1c58fa3952a07e7e69101783c826554fce651b86615452035ad6d2b49a5211", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "416fec0ed24e354430bd78f0bbfeb669634604470c5e58c649eb7a9c83802e95", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "2eb5c9073a0d5320f8ccabad88a92594b12151421e9ebd4ae6b7ce7963f11c2e", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "ad1b5ace3a3ddd9ed4710abd1905cde4dac088cba287740bb86b77bc20273b8e", + "regex": "." + }, + { + "hash": "e7c097afb0ad46a53295f20435d8c0705784d403ce022ef352028c14858e1357", + "regex": "(?i)^https?\\:\\/\\/qedaghbqahb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "882bc6bec06540b6d8ea57123e74068f8a8bca7ce0fc145162ff80786de3b1fa", + "regex": "." + }, + { + "hash": "f6299fd6cf9738ac574a605a0bf328d7f5382c69856f7db0663a25ba9e749ae3", + "regex": "." + }, + { + "hash": "8646997faa90668f6b2e6be7cc087842b70cf2332b68e95543fa6a65b80092a9", + "regex": "." + }, + { + "hash": "b9d40caf5772eb07461050c058743b376aee4ebb09d7029c211a48002ff106a9", + "regex": "." + }, + { + "hash": "7ce272dfee1d6ab0bd2201ce45ca788489386fcd4d9260608d1c86034c8e35c9", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "8c3beaffa8c6179467fae5914d8fdb5ba6c4cbb3c090d96e7e85c767d07e6f4e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots(?:\\?|$)" + }, + { + "hash": "ba2a56a03277bb5c539522353a4e7e2be24e6e096f0fe0c12229764443666086", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "84eee4a15f28661e2e7ddbf65bb3fdce698e4f2693945c3a019644fb3522b3c6", + "regex": "(?i)^https?\\:\\/\\/pub\\-fb519c378293463b80af37ad2b874aaa\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "aa87787281b988241709049a74b8d7819ac1a50563b26701985ff1e2edd6ba81", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "e62beeab1e5a61a0d5574c2b1a7b7e1a4b5e5249a37ea3debcf150359ab6a745", + "regex": "." + }, + { + "hash": "4b19114f4f12be91e14c2fe18dabea9cc6b0e3212a6ae1e3dfe11acd8fb425c5", + "regex": "." + }, + { + "hash": "e5d5023f9d0b538c518e480567629a2d49d35031c9aa428978f1c30a74c7e596", + "regex": "." + }, + { + "hash": "868ee4c3baf7dfabf599baedf4cdf6898c1d549d8f2f7d194ec47aaae53935b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+produtos(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ee2f3705abac778df67facce707cd7619914a1b61a3442ac00cfc55766918ff0", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "1a626e81ea3f932e331ae600694b31eb77e95be4b4bc3f2753e29bcfca379d38", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "09a74e4ebbdee97673a881eb577172763dc2e63d83564507b7ac8c398f82496a", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhb\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "5257f37d35f6cda174c0ce7bc6210f22c274a3c5c488fa7c28a3eccd9782b73f", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "0e59ef982222272542ec757be63b71ff5de88cf55ba9c9ec2b55d8344e5625d7", + "regex": "." + }, + { + "hash": "1c712374e95182cbdde7893015da95c93107e6beeea074a2e93bddadc258ced6", + "regex": "." + }, + { + "hash": "b2f608cabbc143ed14092365c2a637566cf91f025743f5a5aadddc4ea0595a93", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "84810c2344bce87be74125a088cf4106636797e02f0444753b0fd7eb0fee1676", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "377a62adde3faffb79552cbb68e899396edcdc2f7148c8826b66e59d47c136ab", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sim(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "88c739a6d9cde091e7954feb84ffa5a0286efa04913ecf0ff1dfdf8ac4da8c30", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "fbc16e8f0e7717beb6ab4218ed7074c60f05ffdbdbb6b1c6df3a46f765a47bd5", + "regex": "." + }, + { + "hash": "eeac959068e85c8650ce8286e298bfd26b6fa5757b959bdd0f354a9bb8862059", + "regex": "(?i)^https?\\:\\/\\/kosko2oo212\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "193c275020731d4629ac36096b6ba7fe61413af1175b7ef25f87dd5b38acd727", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "9a74f9a8cbb9a26cd4cad0370fdbdb4516295d6928e961dac2b911eb469c5873", + "regex": "." + }, + { + "hash": "cb9a6a53df61af126ef5e546339b1a8cb086b0cc57818df2f70be0a9d9c73f2d", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "54c93f1dbe8388c8453d272e89dc574d25f017343c2aee46885adda193b5e251", + "regex": "." + }, + { + "hash": "5734f5824ede25ebcba75ddeb09c1728fbf927a6d1fb8515e4a231aca9e064f4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help\\.html(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "e8f19c548d01e45a6ff7f22aeefc13b27165899b17fde0cb2a4d0d2c176b4429", + "regex": "." + }, + { + "hash": "9f805f783d65f0dfebb8a50643b81f7f3085290f11bb9eb9725dd7b3c037bfd5", + "regex": "(?i)^https?\\:\\/\\/rqahbqarhb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "c26d91cf969d5ebc170d583dea8253e6c82e8da47301f7e0a625cfb214575cf1", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "eff2512227db03b25917e307f256261969dfcfacf4c615e4ec8d68faf4eba7f0", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "6d55780aa409114d82ba60a840d2df2aa4930240d9ad3383e9449b079bb8f668", + "regex": "(?i)^https?\\:\\/\\/dasdas3423\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "4eef972524aaa537d732ba5a94de82c7be7e258eb2da9b5228a178fa945b28e9", + "regex": "(?i)^https?\\:\\/\\/qaerhbqarfhbqahb\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "864d08e07943bbfec2b4d54ceea7034577678e35271733a3ec1ab9f39b668b66", + "regex": "." + }, + { + "hash": "8acdd8c545a7918ec37faa6852a07d413ced7974c30a05bc98a6f8e268b3a5f1", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "3a554207e75c4716bd713599409a1c2e87faf0914e51209d26589356342e369b", + "regex": "(?i)^https?\\:\\/\\/pub\\-e4d5f6253bf44d8b9e6d6abc32563ebe\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8e4aabb8ed926bf6144da99792ef2ca727ae78d1d96958c27f6476f2af77e6ea", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "d07eb9a84649e06e19f88e97c634fa35f54e0d4d3f4bf6246969e9ff1bbf49c7", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "9c8ff1ca6186375a22b064e7f6b7e78646e2e353df3b612a035481f5f57de17d", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "ac516e5a2ac3cee2af0910ac72e1c5583da76cb549a37f60d369db741d94f12e", + "regex": "." + }, + { + "hash": "fd14b951d6559e6b5c1eaf59a4b32b87c13c399a7171916f524784a3b13c98f3", + "regex": "(?i)^https?\\:\\/\\/qaerhbqarfhbqahb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "3c8f42f392bb1914cc938b521e25ed2cceb57427a074cf8765db6396b02ca74a", + "regex": "(?i)^https?\\:\\/\\/kosko2oo212\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "aedef6abb9b7ca7283143e1d5ee28fc0168b227393b0f9f45d7bc32d8cdc7e92", + "regex": "." + }, + { + "hash": "1f921eb2576a4d3704ebf2daf90ab3f0ad2054919d27b63762a815d0ce4086f5", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "8c8551603617f40f890923a6a934581d2f940a11f2fccfcda059103df2282ee7", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4dc3cc952d7621becc4ecd8a8f5fcff455c17f341ecce7f15593446ca5611fbb", + "regex": "(?i)^https?\\:\\/\\/vqaehgbaqeghb\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "546dff03447cf0d52aa690934581215ba6ea594eae21da57f88fc9c393628a38", + "regex": "." + }, + { + "hash": "72fc39af7fa64191f8fec28b077235fd3aaf7122f6cd0aeb23b7becea564110f", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "13bfe0ae7f65823b75eb1bdf9b50e83f91cce5fe6dd1eb17c96d841837942afc", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "b25b23d6d23ed99d5f115f7ae81416fe458054684719bd38d79d448e7465ea49", + "regex": "." + }, + { + "hash": "ce433554873ce0a87e565160c912732083f89483283806e5d63373d849d9467d", + "regex": "(?i)^https?\\:\\/\\/rqahbqarhb\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "387158d5c444170b128538a7dd3e9f8bbbd44a1bd223c53b8cc786bfcbfef0b0", + "regex": "(?i)^https?\\:\\/\\/fsdfdsr45435\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "18746321c0537bebbadcd046f1de189a8d4eb319fcd4b9cdcc37ec696bcf46e6", + "regex": "." + }, + { + "hash": "0c5d2a8785b93899c81dfa05bd71d0d389d110edd04e8ab881dea3e2f245141a", + "regex": "." + }, + { + "hash": "f328661a6ee7c2b8b2843675c3649d363baa50fea29d1e69917411858df3b00a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+de(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ac837362c448181454761adc4b691eecc5f4e3c272f02d682880cd30585a89e4", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "4d13c8d14393aa674b8fa6eb8c863236e526b4ce1e494bb87cb430464adaea23", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard\\.html" + }, + { + "hash": "178d036bc0e03b0ba68211757034865336bc2da1d996053adcc14af2fc2f2ea8", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "86f6cd173683117df29f7f3802a2a00137fb6c2abb155e0ec2c015e0d10b0baa", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgdbqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "69985bea752638645a1f2904b2e3a5401e7e02d5d49aca87b2fa28712d36d882", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "041edb9b28807a5280c39aaea463b9e73d7e5749194fdae3761ecac02251de4c", + "regex": "." + }, + { + "hash": "3f673abfd889b15324558afe80c8beaf64d3ad2c6b247bfe465c57df76a7df40", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ca6350cc959b6718f9efb242fbd7256f6764bfcf513175235555a57f6ad78db1", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "1a3f80592bcbdb7df9524d812509b527e2397613cda4af6b8c59627e0704ce93", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "364dc2072afeb4a97abb3d7416e5815c6e036985f29c700ffada94d48afd048f", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "a8a223f7e6fec1bbb94dda09d0265420ee4e3e164f6c3efaeb9274d5eda9524c", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1120ea13bc9200875dcf2a804eadc33c390838af40992265df01ab499f6cc76f", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "d34143d8565b95f033eb549324e6eb94ccf507dd209f00821815471341b55370", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "5e1f710cef6a54fef2f5af7de6d2135f33aa6dff72da85dbd3794174647146a0", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "ea15a5d4a153357d10e15afac0b8d442c2e8721b2fc6e6eab82c0f8db15973c6", + "regex": "(?i)^https?\\:\\/\\/hbgqaehbaq\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "16c511e7e75539253d93707260fb04933d894a791e21f48afecd6c89d74b700c", + "regex": "." + }, + { + "hash": "d8b255974b12f71af0003fcb89d6b501db686fe3dc6ebf1e20240e4da5dd9e88", + "regex": "(?i)^https?\\:\\/\\/vqaehgbaqeghb\\.blogspot\\.hk(?:\\:(?:80|443))?" + }, + { + "hash": "a2e5faf9f64c4af61d822475942ad0be8fe40836cd364fe2f1414b029add12b3", + "regex": "." + }, + { + "hash": "2e25f1f39a487fc225754812357ece226d90c70b4780274b9a58f4f5e70798be", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "417f772cb262f978d0fa8efdf7fd9968a26fea082b26eb26f2af085699a51f94", + "regex": "(?i)^https?\\:\\/\\/qedghbqwedg\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "f134fdebbf1e65a30400a477785ac097ae01152d661a71779c78cf0cefa59a8e", + "regex": "." + }, + { + "hash": "b65ceef19ccd9589da08f4d626318ea02e39fda8f6e005e61f802847a814217f", + "regex": "(?i)^https?\\:\\/\\/qehbqehbq\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "e2fbdc74630e025f177ca65a54fb3d38943c47c9186cf8acb6c1346b7d99bade", + "regex": "." + }, + { + "hash": "00f623217a8dff44c5ed5969c7d92815f37ad293e5752a27c611785298ec554b", + "regex": "(?i)^https?\\:\\/\\/dasdas3423\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "57a6a52f111e63ee77128a2445b83d02d86ccf8d0118ba13f3bd100dc8b08cc2", + "regex": "(?i)^https?\\:\\/\\/xversionupdateinnc24\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "541f30170725efeef65778a7c06ac17d63a73883d1428439101279fcbd7a89f6", + "regex": "(?i)^https?\\:\\/\\/fqeadgqa\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "6edba02f62adce4d7657605c62f9a7a68b7a0703a83ddc6b69b1fa166422b816", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "a1eb0a9c4ee449877912564d8e790c2dc4e84f8370fcafd65c69f3a4ea9c80bf", + "regex": "." + }, + { + "hash": "b1ff266e1e6adc0e97e46e47edd000532f7ffc65090f1b36dfa59cd4e3ba9220", + "regex": "." + }, + { + "hash": "633f3c77e9b0691362a3f1130f956e53ae354bdf20b702f2d829bf0913d91926", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+business\\-2fa\\.php(?:\\?|$)" + }, + { + "hash": "31573c3d97c2263dab83d2852b47f34cf9c81e2163962379464fcdc1645ecd67", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "e26d01e7a7ff0e34e9a108b47cbfbd85e8a09607b8e140cfbaef5fe6ab0dc9e8", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "84b259ee9013dd612706f3784f19c3dc95f93b76ab8080fb4cb9961a1480e01a", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "31df2da41c9f665fda339eeca731e2ee60442168f2ed432cfe8c52397467e471", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "14fbc986543c349b3e3753d56aaa41323e09bee3e10c3be6e59ec3fd30416a36", + "regex": "(?i)^https?\\:\\/\\/kosko2oo212\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "f3f0550b5598215220f6f88b58bc85f46ada70f4c76aa2f7769ac7dce71b3634", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&o\\=d433\\&label\\=sx15$" + }, + { + "hash": "a41e6ae7858f73a2cf49cfb24e680bf7d7fd4ebf45abcdccf5b585d1a93626f3", + "regex": "." + }, + { + "hash": "31c336d496bbf38930e8ee76b214918740779826de8d163f6831b7aa8a98aaf1", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahg\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "09a4a8bbab769a3206cb6834f0b89ac96a57e430b38466d2058070d302505ccd", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "31dfc4cbf0bf09115941c9fb9dd4c822f777d8d99aeb1f36fe104e73eba1c0f4", + "regex": "(?i)^https?\\:\\/\\/dasdasd78dsa\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "87e21ef4d1e08a073eadd5c614aa2a81c0ec30d93264a96d4682aa520fb76c36", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "7556547496459119831ba32c54041e2da707fcf3634ca9ac1aaee22db750cb68", + "regex": "(?i)^https?\\:\\/\\/eqahqadhgbqa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "ec8f5895ca46d123bb0d5ef8c587d88f56d1ad5ac7ec647f5d2809e42f386c8e", + "regex": "(?i)^https?\\:\\/\\/dasdas3423\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "4969633d8eae95d50ee0ab9d47c8305983acc7c144ea9db05ea3f4a08f513151", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "54858bf9566ad359e141f99b3792eb390ee4d94a43b4b88b5ea05161957c320b", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "c3cc304b5c36827e9bf3c4d2590e5c1e9c6b433f297aa0611e0fd6541b3587e8", + "regex": "." + }, + { + "hash": "2cc53bd0c2e04548c5f21f5b571b93f531733605071c70b247b7798032a55186", + "regex": "." + }, + { + "hash": "cca0d1f220ebaa0db7d649bf8e6e7c77e7bd372d903862e7b09598217d3650f6", + "regex": "." + }, + { + "hash": "bb63ae5cca74e9599bedefe502a0eb2db19f9f6d9fc1a78ecfc7bb589c526f87", + "regex": "." + }, + { + "hash": "c2c8a9a5b1ce0c1974f16b0b2f72de05643a7fa04fcf8cd489d479baf0390817", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-universeexplorer\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "5b0b67880e118f29189ed6ffae51a32feb3451d68795e542f3ad87001423a06c", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "633f3c77e9b0691362a3f1130f956e53ae354bdf20b702f2d829bf0913d91926", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+meta\\-community\\-standard" + }, + { + "hash": "80e5ab45bd611bee4558992ee0823ba1d7563b68abf3e6a5dc5d11abfde02818", + "regex": "(?i)^https?\\:\\/\\/globallsite01\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "ba9681e5349cef6f95c9429eadcfb2ebbdd683c0df4210b502ca2e1c06a9124f", + "regex": "(?i)^https?\\:\\/\\/raqehgbqaerhgbaq\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "33feee45c01d84fa1202be8e2beab5de4f7f9babbab7e92fd84f3bdd793093c4", + "regex": "(?i)^https?\\:\\/\\/eqahrsqzjhn\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "8e92ed69592c3196ff1f71ed6fb57191b0f8b5d6f3bbdee643b802467efa565d", + "regex": "." + }, + { + "hash": "12d46c612699b572e40caba48713420dddee8e336b0a96104ed50cce12c403be", + "regex": "(?i)^https?\\:\\/\\/tidecaster\\-waveshaper\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "145986f4e1bae1bef3ab84273067eb7bd7e22001080dee45ea4789b92db71368", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+login" + }, + { + "hash": "3572cec18157573e0d196337c48e18401b7b43f0bdb0203c49a56ce34cbb5d13", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots\\.txt(?:\\?|$)" + }, + { + "hash": "34f2a9b7e89695d1af43b1714206940a1e2c8f9956fa93735a4370f57cb18b7f", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "8ec11499df75daed62a074fcc012446b2b5d1ad23cb8746c4c9074765b039dca", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "c768645660dec7e85ef0212fdd08f8ed3e7cad9cd9a0153748fd4f577be13dd5", + "regex": "(?i)^https?\\:\\/\\/tg\\-links\\.pro(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1f091313f3ed1ee4e7b8f38c21dc19b6b323f3e7f9c60285bb6437100ee16492", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "e7aecfa8eab84dbf627b2b64d5fb97f32bbdc0a1b61ca71286fedda52f7e4204", + "regex": "(?i)^https?\\:\\/\\/hbgqaehbaq\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "51bc9f8ca91e6f196a317eac8ce6616908ee82b23f635b1b89079ecf5aadaab1", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "6dea08d059f6bc709b9ea829e9bf84245038111f0df07dc951f601ce574a2863", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "845d792c840dda8c52729695352463368d3bfc941967065d7e683c8000a8f7e5", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "92370a35518cd102968dc7281af7a4a5b3ea85eb0fc853e6d7dfcc325751990c", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "97662d7157ad1498d5c5021807646622547e5775e2a95738671b889d72280d35", + "regex": "(?i)^https?\\:\\/\\/qafgvqdagvbeqd\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "d1e515f720530e4e25ca086dbc0c448780a4db1c95032f13ab180cd9bd61f841", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "1aa54ecbbd754a87e34dcfcd20643bf358763b433bbaac5a03839ae12e11244e", + "regex": "(?i)^https?\\:\\/\\/trackxzv\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "1751a3862faebd50af776beee23332c1397d7744c93f1e116dcc0dab98c6c406", + "regex": "." + }, + { + "hash": "368f5f64941fdb73ce6de4d8ac97c82af95b15f307a7dd5de6899e608d824fcc", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0890776c0633c50b5c85f0ec46d6f659dae016187fb088bba29d1f2a7d97c920", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "34b9826bb286f95d17b5bf1db9f485118f0b99e4191eee021f3c557604e0f19f", + "regex": "(?i)^https?\\:\\/\\/toberdeal\\.click(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "470ba20b36574d6ac12bbd8805e51def9e7c7721187f5f5ad61d5ada6e479d44", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhb\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "f12e30e246c9a3ceb20ab3ffd89bacad27a1f4b4bd4735640e416f466b17e4d7", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "294bc5130e5a406157b86f694480a4db68060f446d202b001431a7796770199c", + "regex": "(?i)^https?\\:\\/\\/pub\\-3a1bcf8c5d6c4efea86c32f640349238\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "f6702f3376a3d7ca6d00960816bb2bfe73d3032daf96b4795f63e0c7d242ac7c", + "regex": "." + }, + { + "hash": "a4ab16c8482a26315f8ea70b48ea4245c024b1ecd91ff43497885109b926585a", + "regex": "(?i)^https?\\:\\/\\/lkhkhkgu6\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a8334f40ad50148567657ff87f4b7e970dff935c00afc7be545bf642025a3247", + "regex": "(?i)^https?\\:\\/\\/qafgvqdagvbeqd\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "a8556f8c83e1b7ec9d689e36a3930840a83a4afe83f419faca59b20f8700c0c1", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-universeexplorer\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a0b6a7ee5dbf6cc2e308e099271cb889eb9b944a19279fe4794cafca64905179", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "441359e69c15d596054bd093a446bd099bd84fee0e504ad2957291ecb8861467", + "regex": "(?i)^https?\\:\\/\\/globallsite01\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "762f9c9db52733c859ea1aa94beb30409e550b783fbab24319e6bff099ccaa03", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.in(?:\\:(?:80|443))?" + }, + { + "hash": "2d3ca6b50506eb7f6844efb5840da981b7887b1e3b60b7bfe9820e94ee41312f", + "regex": "(?i)^https?\\:\\/\\/kosko2oo212\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "a96e10ef7ef1933cc0ccef8517776c326c068bb900e4ad2dcb5cd4ecf2b5f17c", + "regex": "." + }, + { + "hash": "4f2ab0f68937ec2dc3d61af8b0513ae3e271069c3746771609fcfaf9ea147f48", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "90413232bfcb163c339089650a15ca131f5c20ebaf6e569e5e90dd8b8839d31e", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "3a47bc38248f8f84aab9a877eed102965ce08404bd4fd3386c3f8460073374d9", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fbb2db452eebd040ebd9c54feba9374e70bc3994b9201bff5719dd77fd5b6afa", + "regex": "." + }, + { + "hash": "5cd0f70128e3f4040eb817b0866d05c0ebff2c76ed312ab850f6fb9c12e95499", + "regex": "(?i)^https?\\:\\/\\/vqaehgbaqeghb\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "3380c954e5bdd2273a31d7a986e875bb493ab7c113b57008e071b13059794cd9", + "regex": "." + }, + { + "hash": "5e1fb3feb96763b2c0da76f1a3ea0e85826593fddd47d88f008ff024827114cc", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "5cff05742052a0d96cf3f786086326946efbd76e0e5e5ec7ad6b7e558c65386a", + "regex": "." + }, + { + "hash": "8aa43a1dbb1d49b3a8836ba832b4921e1d05a73721ce5d4fd6e94a5ba1fe7ff5", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "dbfca41cb68e60a23cac4130cb6ec1ca9875c1d058bbdb8648b8d36df1417b08", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+de(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "df73277f354ca3df78d0ebda3efe203efd7fc8fdc2e050d92ef33f34fd739eaf", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "138443c591a66bd8b7bfd1b5a8ad51e1209ffc2f52dd0c4d813260a45edecc0a", + "regex": "." + }, + { + "hash": "859bb1629e188a22de7596beb755962e9c36305f13a5e210dda79f36efd09846", + "regex": "." + }, + { + "hash": "4f916313623b7e3ff87b8b424439ad8ff6902ab9ced0863c0915847d69a033e3", + "regex": "." + }, + { + "hash": "17505c1460da503dbe6619b0a6e071a9382bbbbce7d7cfd62fc6e906d21635ac", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.dk(?:\\:(?:80|443))?" + }, + { + "hash": "26095f331ad24517877e55831154a66dd0d14d8364c77cfbe532d211edfd18f9", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "ff6ff1a2256bc1b0b203751495cec584a29c64fb4f4dc905db252a9828aaec45", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "b2b1cef3eb4d65cc5cd7428478f7609597db26372cf7d144450ec80d8cc8e986", + "regex": "(?i)^https?\\:\\/\\/pub\\-5c6fd4b418d74820b19cc04b40adcb7a\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "954019291a4aa4691b2361d9aabd0a4c9f1e6187e4170266adde19c2477502b8", + "regex": "." + }, + { + "hash": "6e5ec75b44aa89713f173f71995ae31137047ba862d12e29d0a34cc6f7aec8dd", + "regex": "(?i)^https?\\:\\/\\/pub\\-d0049aac644546349e22da1b05f87b8b\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "a4044201c80d8a2acc782215ecd5c66fea391317be9aaa5e4b7e5e031137a6d3", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "9a0415e1db22e4323b3b95f3b6087ec3ea051376ccfd5c290841d42904db7d12", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "2c2c01482720aa7e678ba0f25b8fe671979e5625c53d75cf6ef14ec828b0b3b6", + "regex": "(?i)^https?\\:\\/\\/vqaehgbaqeghb\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "ce0665e7b9b610c5e22f82fc4bd9ed5e76d31693281cfdd33d27c0ca357eccf8", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "35e4b477432f2920dd7bfb9f4f9604a6aea488c0d649aea1225e64f07d4ed700", + "regex": "(?i)^https?\\:\\/\\/portail\\.utilisateur\\.resolutioncenter\\.gererle\\.69\\-48\\-183\\-139\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "f09b052db50381fb3a575b5c935295d32975dc5e9058c2b8c2e794e6a7dbdfc3", + "regex": "(?i)^https?\\:\\/\\/eqahqadhgbqa\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a4457b8672bee56cb060a768805dccc583758c757722748ca576747c63901b35", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "265c8e7ce5b617a4bb4923fc68fdfae4bc028b5889ac8288bd00618feac20735", + "regex": "(?i)^https?\\:\\/\\/qedaghbqahb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "268d37f228de9023d2194caa22e044545a9d64d63001cebb6b0c8893998a6dae", + "regex": "(?i)^https?\\:\\/\\/vqaehgbaqeghb\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "bb9c0507cfc2fb5d346070b2d269a03bb2b01842b7b41658e5a8fe3cd0dc5167", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7b87490c1952df6b6a65b1b1e87da1c7ecb3ebf1cceca9b46afd4141bc361315", + "regex": "." + }, + { + "hash": "6dfd094649bb5298eab8c161771a836bb2b737920bc2fe7796141d952eac12f1", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "6c39078b642e326942a84cd727cd2092742fcd28b2379155b03a8992368924e2", + "regex": "(?i)^https?\\:\\/\\/eqahqadhgbqa\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "3ff7b238f214a3855bbd0746c637041836aa8fe4f07c15c181b57544c63ed6e7", + "regex": "." + }, + { + "hash": "65c03f6fcd3f5213d8511ff70af4ae3664d7128de57afe07145d8c3a16f410e9", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "03f26f8b7707e2ee159a41650c22767caf355ba065401d6e71559f776907724f", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "5db17c0b155930312cbce04f37ddd4f9e9e0a594895fea70f163871b598d7774", + "regex": "(?i)^https?\\:\\/\\/lkhkhkgu6\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "5db3b4790df39b878629919cc41def17f860b2b158fa200fb9fa2f5785678523", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "abdd5616001439ceb634e95854a9fd10e567ac4ef8219a6aeac288fa136b19ee", + "regex": "." + }, + { + "hash": "d70a3a6ff74d1659d35880d2e8b2021b5b732e508915ac37bf28ad6f772a74ea", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "80fb8042af2ca1d74e3ca171191c48e2988612adadb5b3f145ec3d6b8a2db5c9", + "regex": "." + }, + { + "hash": "9aae3c256020d4e3162358b092eb2456f6f30acffdcfc07c8af1cca5191d44ff", + "regex": "(?i)^https?\\:\\/\\/globallsite01\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "243bbe4128bb070ee27ccce3bea7107b2895a973d5fed0ba0295b696852fa31e", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "eea57da7d92d430341105bb54727dda048a73b60bff93d0d9faf168c121576f1", + "regex": "(?i)^https?\\:\\/\\/returnprocessinz\\.top(?:\\:(?:80|443))?[\\/\\\\]+de(?:\\?|$)" + }, + { + "hash": "d689a4f6cf55816d20e568ec0847f97e79990567868c528d8356e583da829a91", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "f456820501dc0f7e9aad2d2d017c3b080a618be7cf842fa91c4e71de8f600e60", + "regex": "(?i)^https?\\:\\/\\/qedaghbqahb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "5b54be99f955228e257b4f3e1ca0d2a51bda88aee4e7bbc6f261bdf13a07d2e4", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "b14d2d29ffd00019a32f43df2de0a9edfb6e9b4b37264767ed83c8b8c0911e8a", + "regex": "(?i)^https?\\:\\/\\/dasdas3423\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "fb11a096904bbfbe5db92f24755ac7aeae8659a5a9d8d2fc4069a59eaa52e9c1", + "regex": "." + }, + { + "hash": "48f01542c67e7a471bbcef5052e315b2fd9322f934ce8b7c11db95ef986bcf91", + "regex": "." + }, + { + "hash": "d04852734095c861f54fbc39ef32759ee1205fa5a939ad0a239017c49019f2b2", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e8e4424efc73402c045b84283764f8b5cbdbe2d943d2f3c0975c28d9523d8a65", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahg\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "0e7e6dee079f8d0ee1d4bc790793097b2f87626acac183631df9a8d3e2b8e9ae", + "regex": "(?i)^https?\\:\\/\\/qaerhbqarfhbqahb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "8307a00c955e113efd83689ab12a7fd0f8b6c031713ef385fc98b692b30d8b09", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+app(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "a85e232a0a09f75c0e2f7bb81225b9b60c405ad4ac0da6629ae88d7c19253b7c", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "7b86188eb9681f626583064c9fb52e9646175b486d5baf405ea6006deb37c57b", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "c53b17e58a978a18997f06bdf36318dcf24ad3d3a42f3a1860b703bd69f98055", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "536470ce35051b15b2c950dd885c728183436ebdb7b4bdd8e654992e4a50536d", + "regex": "(?i)^https?\\:\\/\\/eqahrsqzjhn\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "42759d218083c53dbd607fd5381eec906ffe69e5844d301c14b1025b2a6e22bf", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "4faf40e620cf7be081ac07a2c4e0ea5347cb3bf1e32bc4863b82ca44d66869d2", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "72bf24b27a0bd0fb971cac5752e0bb8fc2813e29f559f02291901f2ac4bfc828", + "regex": "(?i)^https?\\:\\/\\/rqahbqarhb\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "1db5f0ff6cd45c2fcddce5311b89fd3ab990777622a1315727405ba746ba6f77", + "regex": "(?i)^https?\\:\\/\\/pub\\-26ec2888879d43029cdad0cd17ff6dbe\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "2d7ef0370e7ea2193337730d8b3146e663b5a79275bca80cb78ed4a611331216", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "7979fc29a5de2ad1e2477725470c138a2e67ed7336c55b2dd70e4a477814f64b", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "d8256125ad7cb6aca215beff8beaf39f749322689f2eda1421f97f1d76ff7225", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+fidelity(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "01bc7d9f44e5b7d31020b8df38777e48679558cf8817996ae692e1dd54b34b57", + "regex": "(?i)^https?\\:\\/\\/qaehgbeqahbq\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "168786e25046575cd8ebfeb144a7b7ab76aded84728eb9bcd643a5969177eb2e", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "c79769cd595feee5c4c19cf35977084792a6d413cb777af24654c2c89e910629", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "adc4b50a0ed14bf378f3e492701d2176c6949e93ec9e7eb8934c16f36eaeb726", + "regex": "(?i)^https?\\:\\/\\/p\\.updateinfotxgki\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "e120ae74af137aea034d0b9d3e2fe458a592941e1126dc3b3a4942f891776c47", + "regex": "(?i)^https?\\:\\/\\/tidecaster\\-waveshaper\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "548514c5bcdbab4b87f3feff90f54013924a0764b96a78a925854704991609f1", + "regex": "(?i)^https?\\:\\/\\/kosko2oo212\\.blogspot\\.com\\.es(?:\\:(?:80|443))?" + }, + { + "hash": "42fe62ab0d55142e47873f6621626898141c462933d79ba67ea9553dc145fe04", + "regex": "." + }, + { + "hash": "18c912ca63a92dba58df13bf77aec5a1c4ed801dd116308155bae27b7e69faa3", + "regex": "." + }, + { + "hash": "e04ee2a273953c5fce33071450c49f4e8c1d6827664590d0f0a5151f56fecae7", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "43bb17c0c2f62253d8793c56a1b68d329494c111c1f6e7818fac9bdbeb7c5879", + "regex": "." + }, + { + "hash": "a0244b334a0ccf68ba8130d1a37cb1ab2e486bc0f84659cb0530265b3acf8d84", + "regex": "(?i)^https?\\:\\/\\/tidecaster\\-waveshaper\\.blogspot\\.lt(?:\\:(?:80|443))?" + }, + { + "hash": "59ce4dd1d9e6623d591c8f652bb334a27dabfa31706624c40b8a71a5441ba4cf", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgdbqa\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "ec2d5ddd8b1cee2f678e56d8f56e4aec73e37b9f5b282f7a6ed28c7adeeeca4e", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "f971630c157d72a7f1b7ce4c66dd5c88c5fa2ea7a705ab60810074e319418acf", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "5b3246d2e05333deec669a8677178731398be1a0c57ec4d6512b512101c514d2", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "294ba29f53aec1685f68b2aaf6b6f4113ef7fcfd84d115b9d879b039f77893cc", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+NMfLAIjs(?:\\?|$)" + }, + { + "hash": "0c8b3540cb7dedf8d5230b5f3e442fb91275c98d594a04a495ec6b260a01cf39", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+callofduty" + }, + { + "hash": "4a7ffd0e05fc0a765f67ae73d32797074fd6fd8e2ec3c584ee19d17c97bf4cd9", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "729d0482c91937421db33196c1f544e3814af63a508fbba2bebe025c6e9c876b", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "ed92d392cce4b7a0da392617c58e3fe29eced021258207482510695f0e2d8c1f", + "regex": "." + }, + { + "hash": "03e3c5d5617914de5306f16bf5ee0fc83e5ff034c19f83f68a2e11ffbc9df7ed", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "8ae5c2d4a3a95b7397ea071d705e4adc5ac15c3d682a2fce383c3c555a696ceb", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e4bcebd1a7e710fac7472968aae62297ab6d9f5133406d272d96bbe75a0bf8c4", + "regex": "." + }, + { + "hash": "4b17797d16a71b2224b9eb9a46b74c3162933eb9ad9efdc9bfb60b4ec0eacb4e", + "regex": "(?i)^https?\\:\\/\\/returnprocessini\\.top(?:\\:(?:80|443))?[\\/\\\\]+de(?:\\?|$)" + }, + { + "hash": "6fb1d0f27eb2ea7dd2499e43691fdb430c5864577378a71248081f17a28c7064", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "03691e47fafacbc78bd36e16d0d3f78c25662d9a1a479b41c9338a6d94a8b858", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "bd88d6cb6a28daae21654d1a6f21e0b86e57e2e965380e7cb5c4b8324021a61c", + "regex": "(?i)^https?\\:\\/\\/qehbqehbq\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "789bc5b961528ca290ada9ccb13227657d6c6fef287a584c10b607403981d4ce", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "2f674220b5411eaf8a55f87032105fa8bc8f4c32f97b2209bd7ea3b2995a6205", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "5ca7db5cc6eaa5cb226c2145ab656a2e2e53bbb5f992161050b0eb67ec836f93", + "regex": "." + }, + { + "hash": "093f86659a94850ec0574e7998fe0b59eac53e8f8530dd9c61f1ba22e06b4db6", + "regex": "." + }, + { + "hash": "91bef31c2eebc9a7bb4cfdc9f45527e3771d4340698e52bd2167ec4e76280129", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "fa52b58df76f445c960f3856e54c321037f88f7871e835cb3bf494294aa496d5", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "8750b5433522a7694630fe0fc9a5e9d0e655a9efec117a6af7f228a1ac0e12ed", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "868ee4c3baf7dfabf599baedf4cdf6898c1d549d8f2f7d194ec47aaae53935b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+taxascorreios\\.com\\.zip" + }, + { + "hash": "f71c022358e806991883a0ca68418629f4967fade0fed096eeb1ed986bd1ea75", + "regex": "(?i)^https?\\:\\/\\/instagramclone\\-4cb2a\\.web\\.app(?:\\:(?:80|443))?" + }, + { + "hash": "2ae5b99d4e2cd93db043c01d2f6a68b88e0d505697ffe7c8de16cf2067c812f6", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "32036f640172402d46bf83b04eb991b05d78b8221961ceeef7e980c8357a43fe", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "88330cfa931f2ed5c2f3310631f0845237cfcc6823f2aaa51c5cd8bbdc3a3d54", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "914d9d969e6fd387e1eb77e01d44ec1ee33ace9ded60e718479910dd401971e4", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "0772c43ba02fa5e37f91cb4ddbd00ac458393552a020ce36091b8b4e7adfe24e", + "regex": "." + }, + { + "hash": "65491cdcc34ea785dfbdbf829d8ddc2add394079c56779e73bcf98db6f6cf621", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "acdb3dc1c72b4611b9b6a9f91425d92a1b5c6e26403fcc2c904aa3959ca4b6ee", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "61c38623353ab7e6d5995f76ab502b68aabb43be5167671cd9c2556b8a1b3fae", + "regex": "(?i)^https?\\:\\/\\/pub\\-ed377630a5c04b878976e447bc74833f\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "4a4ef31ea550f4141ce934aeb7c7f205817a1e630976e8ca4ba36cea5aa8faa2", + "regex": "." + }, + { + "hash": "517da533317cb2c6934cf20058560a3102c93a25181a6eec2d508b1fd5f5ea0e", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "c8b03b1a0915418dfa6b08ac4c066b9467ac7b6a341fbc939f1782e3d8867250", + "regex": "(?i)^https?\\:\\/\\/baushdia\\.link(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "2b6ac38df3c45378501b42259aba2483ab68a01820ca6aed8c118b169278b30c", + "regex": "(?i)^https?\\:\\/\\/qafgvqdagvbeqd\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "bcb7826bc3f3869a6d25094d68dfe946aa6b9d645e21ad2ed19758fe02e60c21", + "regex": "(?i)^https?\\:\\/\\/fijhu8930pf\\-pdufikvhe\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "26c73372fa2cfa1f51b0e9ed1f11bd1abbda582502aba9391f5a8fd42372d19d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "63d629881ce6b51c96ebbc1f8c2066aa5d46109ca3dc742e67b9079d9192cf83", + "regex": "." + }, + { + "hash": "73b3ab0d5ecca8585ab005eab6995c678a44ce6a19920f4cf2594d2059b3b8ed", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "39bf03d5055bcb360f426e06cf9bc2afd6caec38534f0ecae3b1d97ced5f9266", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-universeexplorer\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "516b749738591c17690bcf112504d827d1c90c8bf9fa35d99af1ddb7f577da9b", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "300413d9f4cce653f9068a3067a55ebbb5fcf66257f12d90feced530bad6a580", + "regex": "(?i)^https?\\:\\/\\/raqehgbqaerhgbaq\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "b65c18c1c579e05c81c866f5c0709b07529470c7481805508f291153d219e3a9", + "regex": "(?i)^https?\\:\\/\\/informed\\.deliveryzn\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "d1ab683cf9ed3644f44a410b4cdadd318fcb6dd93cd7f8ff16d8a7f8e834f363", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "55f104a5222e37a0ebe2f9692ef725bcb60005f4746e1633d17e7abdca3fd227", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&l\\=sx15$" + }, + { + "hash": "1880e69a15b288ff39ae2189373ff4fd175a71be7c5dba08be11f7c66a3d7914", + "regex": "." + }, + { + "hash": "27bc3c7c3579bb6e5e10c3d6ab353f7795fe9991e5d94317afba75f37284176f", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "9019c25de7e6540344143cc5e8932e770ab6e60ba3e53c5a23a3ef19844d6f64", + "regex": "(?i)^https?\\:\\/\\/qedaghbqahb\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "d6908e5b71f2b75d13ebc095fef8123e134f08a5f0916904da5640f38af3c9c9", + "regex": "." + }, + { + "hash": "8e1adb9c151e3dcf72234720c55dcd6f79b69fbda087deea86dc406944a4f654", + "regex": "." + }, + { + "hash": "fda68f55f257a98f3c6525e15cae105fb8dd59388f6216d2130b7413b58ae4d7", + "regex": "." + }, + { + "hash": "1f8d34e429d2b8d08bd62325a8db40b782270b00f81cdc747de836f132dcd73c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Xo5UVhKlWv7Gmse8jt(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1282c8d9baaf290ef49ab2a35649112e3c7e0ea32e5ba2d01125c1427ac21c2e", + "regex": "." + }, + { + "hash": "779b8b7d73bd3132cbc3bf8e6afa2203537537812ac973230854d5b2a962d857", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.com\\.co(?:\\:(?:80|443))?" + }, + { + "hash": "d8ff95fc698ec6b719f21737da55f36d034cffeb3ebabba3aa20e8c0919043ec", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "f1889d14fc1fb0886174a4827e4e0c2766ad1bcac768795dc9aa883fcc5ffdc7", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.ug(?:\\:(?:80|443))?" + }, + { + "hash": "847433cb1e9fc215d4eaf10772d965990750dbf73e0e82979b545f1fd8f4224c", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "1d202729025adf3547a4f4b338628dca9a5b9b5618209e5c270f32517d63770b", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "b24236090b04b144b5768d93adda54453b4a6474ec656a27a005af27963a2bb2", + "regex": "(?i)^https?\\:\\/\\/dasdas3423\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "27fc65c26fbdfe1d3b9be8967b98ed628696f0d97ed3567ecf498ae29c06ceeb", + "regex": "." + }, + { + "hash": "967aa342e3f7eee08df1ec1fc77e13470e39e83e8a344d56363bed4c66806f15", + "regex": "(?i)^https?\\:\\/\\/raqehgbqaerhgbaq\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "9c28680aec36b98c88db69b544febe76fb317eacef9065fe52b2e14a412b9458", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "50e0a88de3b42cfebb99141e4527c701f8c1cf759060970bd257754fdca7370c", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "cdbe62eff70b32a3555e23562ac77400efaee0ff87989862e08ab43aff1c2bd9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+my\\-site\\-4" + }, + { + "hash": "bdd50d02e67203b602c4127f103590ed95531e296b1bef70d98e1ac02a30bd49", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "7a85a038390e80b84f10473406f7022114bf94d344e0e3f9568e2f3e951f4e4b", + "regex": "." + }, + { + "hash": "229897af3ddb2857e66dbfa304cb8382f18760e4e2fc5d9795b9aa3e94f11cc0", + "regex": "." + }, + { + "hash": "9499230bb172868f60181fa0b571f91bbfc82ee02c323297b4c72f4b5acb6862", + "regex": "." + }, + { + "hash": "6b7846739693f8fc530ecb884cf2381c7c4dd472e235cb22f8e974fbfb769ae3", + "regex": "." + }, + { + "hash": "bcb03fff67d50f99aad2e579aa640db43110331463b602daeaba1a9e836d9413", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.ch(?:\\:(?:80|443))?" + }, + { + "hash": "a4842e257295015dccf31a02fed7df1d33b29100390eaedaa3bea04c5f4ee7f3", + "regex": "." + }, + { + "hash": "dbd2f5242a15e75e520e71ceac211a1e2beaa33eeef1497304f88d93e043bb65", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-universeexplorer\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "b5792c005c870ce0afccdc84e1bee000abed2f8da3588654857c0c37efa3002b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7250af793114f382414ad137bd5c32f3b3be39640f7904777e8c1f9d12210b47", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "184a05e1edd46a3c3fd85168647370856900677f197487a6cd2d1bd942d4e4b5", + "regex": "." + }, + { + "hash": "1344294c1eb031fdcf8a4f1c79c14558497f90c7c819f168e4ae89b9b7af189d", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "0308affbc47c7708c16811355d00fefe221d20f84c10925269ff556b6caa7e33", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "bf94a5f31f5efce6be4865e2c31f91a0a5dff7bbccafc53916c7243a2c5437e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]*\\?u\\=a44354\\&l\\=sx15$" + }, + { + "hash": "65e692ef03553f279403793165e5e7383591b1781fbe20e52e2fb7af9065edb8", + "regex": "(?i)^https?\\:\\/\\/qehbqehbq\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "de9ebab514ac90e817415c4641df838c0ed04ddbbf3138a516321a8111838ead", + "regex": "." + }, + { + "hash": "68b86705850965e11245b0766cc1672c9461e876969c2065d7f6cddc3c173bc0", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.com\\.tr(?:\\:(?:80|443))?" + }, + { + "hash": "4756bc9ac6d3e5ab850ee85041edcb98d2ea0db960d65a9c42ad303161ad2e5f", + "regex": "(?i)^https?\\:\\/\\/trackfdn\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "021900b3f2d7a9d65a32a801d550dfec89896dc7db9b07d7fdbf33857a91ad6b", + "regex": "(?i)^https?\\:\\/\\/fhugh89oiejdfjwiifvj\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "45b266de60086e745ca7df14130e9eac44c37d84363bad785d7e0b4216458f2c", + "regex": "." + }, + { + "hash": "60e15570b563fb1501ff8e49ee17b3394d4154a7a1675ecab05e327a33c18bdc", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "64408e2054297d452950de170c61849ba6dc2fd9cbd447ec8a19f2a012359a34", + "regex": "(?i)^https?\\:\\/\\/dasda32\\.blogspot\\.ru(?:\\:(?:80|443))?" + }, + { + "hash": "a2c4e137b57259e12f57dddf3d92d345941e2e259ae88e6d7e6b1a2b547b7bc2", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "7ebeda3d8ea27fe30669560792f595d63dda7e56e1f5715965a9d5700da985d3", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "8584c07080dabaffd2e55cc749e4406fdb8fa3c30a26e04566db7933652d130c", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9c7e6676e3e61d1de75cfbd045e935ee5d036719ee21f5cfe886b5ab297add1d", + "regex": "." + }, + { + "hash": "3a2cafd18eb9519098096cf31c94a23eedb8ebeb1ddeaf15bdc6d456fc8ce012", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "ea81ce87f1443ae4c84165bd996237e0a9e7f8344c82eb540cfc7605b25d303c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+sadece\\-online\\-ozel" + }, + { + "hash": "6deab7bebaae6975982de8fd40756648cf78f10cc0b8f04ff5cb4bbf72411f1b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+pa(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "fa8135cbca2391387f19ede1a49e5e900202b38ef712a787a224edaab2c5db6e", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "b4001004660b9824b47646c5729b10969a280fb05657f9b00465d92b8c619ae7", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "96aed45794dfa4e00b12e365fc31743dc065f164f4183c53d34d6b3ad62e3068", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7375ae2d5cea444ae17864d61006754948f50d5c66b477de7bb53b5469253a90", + "regex": "(?i)^https?\\:\\/\\/tidecaster\\-waveshaper\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d2d3110064aede9a7a53a2b22730c113a39b3ef19c48c250ea907b91d8c4f680", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "016ef8509aa9a37a006b4c19dccb32079f4da4405ef8c802d4e806e5b09f1d3a", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "75cdf10ee2a4b4600104e3eb564fb553bea671407e0df5b48295eca8bda347a5", + "regex": "." + }, + { + "hash": "ce55b21abe911a6a0f5c64e47b66512d025913da37a3e45dd7498b75e268b7d3", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+AMAZasdKHJaweEQWEQWqGE243426789433" + }, + { + "hash": "d22d252beb7b60ebb23ce8c28903d6064571cc5c651613100b776e3cf44637e9", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "0db0dcc76e1551fc8a185f6a2dda5d53688fd868e8b4d6abf319961074924e67", + "regex": "(?i)^https?\\:\\/\\/fqeadgqa\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "2246c48d653e5b59ea6d4be1e590a90b20c30e2ae441351335dadf4dc2b8ead7", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "95ad389eaa3acf0e43d67e1155a80aa1639eaf8cbb4975a515755a3282fde6f3", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "3af06222f50fe2831fdd327f9d2d5a5849765231a825fff22164f6d3a01c1e59", + "regex": "." + }, + { + "hash": "37df4927ce86e1ce8d0e00e6c4bd27cbfd3848353209043312816a2b88c9aaea", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahg\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "dce93e453829aea8c72c499d8c7e4b46bbd5bbc1af769b92a0312d9ced8be901", + "regex": "." + }, + { + "hash": "cb823f9dbfa4c4615a45a2f53b8e04e4e10853bf081cd54c62a425562b94ee62", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhb\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "496d316a3feae9f01e1a2f2a4794ad9f421c3d93504c9d74a10272045edfcf1a", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "e4b64c0ed54303c431ece266ede5468827a3da7941973d80d4021b0c350175d5", + "regex": "." + }, + { + "hash": "9c771615a5cb30f97685cefec313f68612dd4911ca99f199fbf5f860357e2bbf", + "regex": "." + }, + { + "hash": "fce877cd475c36f6b1c680114492d56569a31240b4c88acd5db2f579a4e70ebc", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahg\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "88ef4144aace79dc199ed6aacebc59e8d73f5d7ffca1b7f03a04acef25fb2277", + "regex": "(?i)^https?\\:\\/\\/eqahrsqzjhn\\.blogspot\\.jp(?:\\:(?:80|443))?" + }, + { + "hash": "58297860405d0f697bb729180bce96e2ad0d522f1a589ad6801b66f06c10a26b", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "ff5b7d974f80473e6827d48814c069cb86f7b3b836cd3e59ec3215f575424df4", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhb\\.blogspot\\.hr(?:\\:(?:80|443))?" + }, + { + "hash": "9ee8cbc96dca2842324d711a54c53bc38d77510b7b0b8fd27615dde4456de9ff", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "7e8a74adbf5527ef0a4b65240250914994f29b9935b6b2dc35a4d37017b0f470", + "regex": "(?i)^https?\\:\\/\\/qedaghbqahb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "a85f43f6b3f4375bb2589ae75e9984e2250fdc1bbd4e6d9d6e8289633f4c9f37", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info[\\/\\\\]+payment\\.php" + }, + { + "hash": "36fd67e1cd63ecc1d5c6e8eb209d6ad1d28e76fd5cdfbb52b9e32a93f52189bb", + "regex": "." + }, + { + "hash": "ee6debc6d9d01b86dbdd97541425d4aedcd86f7336198eaae6a5bd5a52d1bea4", + "regex": "." + }, + { + "hash": "a85f43f6b3f4375bb2589ae75e9984e2250fdc1bbd4e6d9d6e8289633f4c9f37", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+info[\\/\\\\]+login\\.php" + }, + { + "hash": "f99fdec640535a3400695933a209342f86c8d7431bff39f6c2cf6509c579f36d", + "regex": "(?i)^https?\\:\\/\\/lkhkhkgu6\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "c1c4642ed714565afec68114c5f4fe9a76173f772fd385908d2fe91b5384a07b", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "5216b5e7804e17b4010320915282829523b422f8e73ce2e1abb6cdfd806f1a64", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "e77f0116559bdc8f9a9e4b5ed9b26245991b60884f4a3fa7a192114480dd5f36", + "regex": "(?i)^https?\\:\\/\\/qaehbqaedhb\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "17ccc81882536ec64808ba2bf3029e6fa008376d15afed9f2022ce674cefc8c9", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "f3efdf1dc79130fef398c639b2ee7d8b341601a5dc508c909ab74c183a46fdba", + "regex": "(?i)^https?\\:\\/\\/qehbqehbq\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "1face98351c593e1c8a2e3280d8a1debe9c17ce92d0992689086a45c58210d53", + "regex": "(?i)^https?\\:\\/\\/ipv6\\.4\\-232\\-163\\-255\\.cprapid\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "ebfa2613876956590ea060ad8ee562505eecf0b1abe8b6d4926878ad95b5a160", + "regex": "." + }, + { + "hash": "3fb9a2ad4afa240d3ed3d5ca128adef2a4ed9c1573bc8ae71a82b01de3cce6e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+l(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "965040968d5d18e03c773ce36112b5c8fd222f7c1ecbf4a615c807a03d517df4", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "23ce6f3d8b0fdaef738cabd991e3636d23fdabca85305f3e9f7db2beb5d10337", + "regex": "." + }, + { + "hash": "c76eea9dbb2731eac35b63b0f2411b93260118c9f205fa5e2cb9138e6a27b1ab", + "regex": "(?i)^https?\\:\\/\\/vqaehgbaqeghb\\.blogspot\\.sk(?:\\:(?:80|443))?" + }, + { + "hash": "0bc1381270610f24deba0584438144373b835689a15d3044448773746dfefaba", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+lnk[\\/\\\\]+CAAABmbsVAUAAAAAAAAAA8kD\\-I8AAYKI3CAAAAAAAC0DWwBnXogncpRFDHzXTDuFWjQ73whY3gApeTU[\\/\\\\]+1[\\/\\\\]+qOgsge6Aa9Mbs4AnrAGNPw[\\/\\\\]+aHR0cHM6Ly93b3JkcHJlc3MtMTM3MjU3NC01MTA4OTA0LmNsb3Vkd2F5c2FwcHMuY29tL2NvbmZpcm1hcHAxMS9pbmRleC5waHA(?:\\?|$)" + }, + { + "hash": "46d0125d06fc15e4a00a6420b0e7a22bb96c11c423c68f8f705d04d56058f1ef", + "regex": "(?i)^https?\\:\\/\\/asgoogle\\.dynv6\\.net(?:\\:(?:80|443))?" + }, + { + "hash": "6ef9d9a909a58d2f83b0e296dba9e10de7009d60372a0dd88659342b75752aca", + "regex": "." + }, + { + "hash": "729d333f3576ad13739fc4fb8f19979e00739d4e2f98369dceac050b672d5e03", + "regex": "(?i)^https?\\:\\/\\/pub\\-f22f9321081f4850a0a7fd4ae8e47e34\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "8ec1356542a2a4bc7b45990f5203821843f8a1ab093bd6672e0b5b2f01ac1710", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "95fc90e21055ca8a262c2d5621f74514a8c904463ee93c28c2783497f48bc724", + "regex": "(?i)^https?\\:\\/\\/tidecaster\\-waveshaper\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "eac6cdb9f673c5a813cd151f72187aa2a89ba58224132c469d6ecf22d84a0370", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-universeexplorer\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "bb22150b5fdd8405139148722607cb4058710eb94b0b922d5a0529b34b4d3b21", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.pe(?:\\:(?:80|443))?" + }, + { + "hash": "387daa921174361ce5fcff28f6f23d4418381d0b458bff5b328282bdec3ec795", + "regex": "(?i)^https?\\:\\/\\/ozil101\\.pages\\.dev(?:\\:(?:80|443))?(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "910669d2bd671b161c5286f4bc4567007e4a95df399341bc41aa8be9a4306f2a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+campaigns[\\/\\\\]+edtrkclk[\\/\\\\]+8c7ea04e6e827df9f52d2c934609b52500df54ca[\\/\\\\]+mf8404ah8r92e(?:\\?|$)" + }, + { + "hash": "c34048eb83d25ff5bb19cba78ba9c0ae53e2ac5993412572b155057749471320", + "regex": "." + }, + { + "hash": "77a091b8ff8fc011e8ce07e40626a93b6d265be17497fcf15eb727d19df32668", + "regex": "." + }, + { + "hash": "b6a9359ef7f6b9281b46601e2561fc81c5cea1b1768b2b9efbfec09e3e62127a", + "regex": "(?i)^https?\\:\\/\\/rqahbqarhb\\.blogspot\\.co\\.il(?:\\:(?:80|443))?" + }, + { + "hash": "08d49592271032a0de34befe85c39f093429a01c17a6880ffefca95ddc16bc7c", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.mk(?:\\:(?:80|443))?" + }, + { + "hash": "6053c7a5d16c328e883843f504930764075fe1db697e6f04a68d2dbd36b1f976", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+robots(?:\\?|$)" + }, + { + "hash": "65e6f477f5ca6adc7515011a120a992b05ba74f8851425bd0dd7254c261dbd4d", + "regex": "(?i)^https?\\:\\/\\/dasdas3423\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "60f15fdb6e6a961fda912d22a9014b9a37f2746f78ef060a0444e33dd5f17537", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "b8dc094202258e7365f68c7e6cbd6cc5287bc9224683daec92b51b9cc4d9ae4c", + "regex": "." + }, + { + "hash": "cb2ab231d5e274776ca0ac16c1d8a1f0b02cbe28ffc4c6b8f8d960962b5454bf", + "regex": "." + }, + { + "hash": "31a667f3def82b80c3f1799efaa502f6f9928f6ec80262128d71e99e51188030", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "7e96295dff2e50713880b4ff787c30aac3f913927dbee356b8880dd8b110528a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+openai[\\/\\\\]+inicio\\.php(?:\\?|$)" + }, + { + "hash": "3f673abfd889b15324558afe80c8beaf64d3ad2c6b247bfe465c57df76a7df40", + "regex": "(?i)^https?\\:\\/\\/informed\\.deliveryfdy\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "0f7c6b6e24834cf7e5462a80a5549dc195615a3b71ed222e3b0c2610812c8619", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "691ea90f562fa346ce55ccee936ec55a22159b7e1728bdbffd688bbc8bca3253", + "regex": "." + }, + { + "hash": "4cd8ebe6dc3ac0eee51b5e8d75c9ecbff4848be4c1f27fffa74401baffed4a9a", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "3c5247f55046ffb1713aeff3f2d75b6ee1683c07ddc77caa2d54e9dc1a7cf7c3", + "regex": "(?i)^https?\\:\\/\\/qedghbqwedg\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "5fc5fbb4974f53be2ef5d24e58215a07d4d9b0b1dfca294357f7b24367f38f66", + "regex": "(?i)^https?\\:\\/\\/spacewanderer\\-lightchaser\\.blogspot\\.gr(?:\\:(?:80|443))?" + }, + { + "hash": "b98de4121bb4a87d47031d2eaae0ec3332fa669782a887d79cd045945c7da623", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahg\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "a43ef66b0c46d6b919b50e63bab55ac352247d03c9bbcded8aa6aa267ea350cc", + "regex": "." + }, + { + "hash": "c7d2ac3984431b13360848e3a08018b873a70ca31e00363c4c70ff77aa6b032d", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.sn(?:\\:(?:80|443))?" + }, + { + "hash": "1f0914c4442762ce1de186da5ccbc3a70bc9d9ff8d872a43aab5f5313de3612a", + "regex": "(?i)^https?\\:\\/\\/qehbqehbq\\.blogspot\\.com\\.by(?:\\:(?:80|443))?" + }, + { + "hash": "ccd296779f9d5a5a073ea181d0739ea4e485e3d4cb725363225f31799cbe0d01", + "regex": "." + }, + { + "hash": "467fe3b9a8ea172b2c2a5ee22bdcd256389032e570c709cb9f34d75b9a05264e", + "regex": "." + }, + { + "hash": "c835e75568be747668ff8df9047a0faa9ce2ffb93baf9dd764ce86b016fe7186", + "regex": "(?i)^https?\\:\\/\\/hrqafhnraqhjn\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "59655fcaa72a245d013e1944aba2ffc2639617ef2edff03402fd7428894018b6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bod[\\/\\\\]+\\." + }, + { + "hash": "bcf27659f763d89e269f63f2a83275d8d6ce41e0730324f92d149c976943e4cc", + "regex": "(?i)^https?\\:\\/\\/dasda32\\.blogspot\\.co\\.at(?:\\:(?:80|443))?" + }, + { + "hash": "8c6d1acbdb577684c05d4a530de9ad6cf77aa0d01b7f6b77d2906ef8dfb619b1", + "regex": "(?i)^https?\\:\\/\\/qaerhbqarfhbqahb\\.blogspot\\.fr(?:\\:(?:80|443))?" + }, + { + "hash": "4b8135a4b3bb6c789cc37ed03a87add1a0bf3441ce7601e8bbe1d46e2630798b", + "regex": "." + }, + { + "hash": "3e816bef18019592c4b83766bfe06c6595270e5f0520f4bd60f7b8050a956780", + "regex": "." + }, + { + "hash": "e2275efe0dbdc118c5b0579b28cff4f286ba06d8be1fb7d92b5a6f385250c22e", + "regex": "." + }, + { + "hash": "f4a2ba1bd7f329adf8a556199254b9c5b6c7bc18192adda89efb5ae4d6fc37d8", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "74ef3de13dfe14889a2f79221aa52249a909e85ba74b4ca630182a7abb00b681", + "regex": "." + }, + { + "hash": "bfa84108139277341ff79db9af1dd63986e1103486c70a7113c1326f1c106ceb", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "bfc8844216c824ab38889b32959146e466ad59d4a7a4720a434e52a1f9eff5be", + "regex": "." + }, + { + "hash": "be30a89a8eccecf47fa8fceaa2a59d74b2d360f626c2dc45ae199cb6aadb965f", + "regex": "(?i)^https?\\:\\/\\/qedaghbqahb\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "4a4e78f5b1e889c369e6b6c540e3f0098e48c3552072941c4b90b7679872d9ea", + "regex": "(?i)^https?\\:\\/\\/dasda32\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "767ce9ea778c523aee06794fc68fd2e7362eff9a2c0c40a793c09ce3173c5944", + "regex": "(?i)^https?\\:\\/\\/pub\\-4244c74cf56c4771b3ff8611ebc7d6e0\\.r2\\.dev(?:\\:(?:80|443))?" + }, + { + "hash": "7a461ff9cbcf098357bc8e77c0bd3985254e26d2278aeacd7737b16b9fa42bb6", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+cuvjgzzcbsolvbt949450412612243305737062jqsmq354oa2noun7rf\\?FBDFRJETHRWQNEOiyh0kdnynkidj420v8gbnl" + }, + { + "hash": "65d0cc5daf817d08056f8586b56345b7da91c96218e144fc323ef5225af47ed3", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.com\\.cy(?:\\:(?:80|443))?" + }, + { + "hash": "ef3f2a3fc705cef62bc261592f502547c5dcadf99bf97c31976c53dd062e63ae", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "c008c4cf0a6bb599dd63f2adf19d0cf81349fea11a61f0dafc123eb1accc0550", + "regex": "." + }, + { + "hash": "a99a9aabd8eb9552135e664cf9abdae4975dda6dd947e61bd77fff9bd38c625d", + "regex": "." + }, + { + "hash": "a290de4ea99f7102d3f68440254294428da3d2b82ee59ccbdf29f347ee40a17f", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.mx(?:\\:(?:80|443))?" + }, + { + "hash": "70767261a810d470e8dcde754c14a9ec7257aa7ed3f249b7ac294f23bbd02661", + "regex": "(?i)^https?\\:\\/\\/trackhnd\\.top(?:\\:(?:80|443))?[\\/\\\\]+us(?:\\?|$)" + }, + { + "hash": "6cf2569e1044c641899c888689e7a6d0ba5f3afa5a71f20d175a6cdae542d0a6", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "30411d05b4595e2c1d9303e519f9d2052d919bad4c8a48fb897d360aa22abfc2", + "regex": "(?i)^https?\\:\\/\\/44instagramlogin\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "d90894854c3aed096695f496e8e0ea4274e06c8720e8fcbf5938d8fe5509c3a7", + "regex": "(?i)^https?\\:\\/\\/qaehgbeaqdbhgqa\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "f8d070b69af7aa2bc2aa83fce59a4d2a9414f6505cbd909ba0f6ea80f840a28d", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?" + }, + { + "hash": "3512fa5e52d900b75ea9fd76270ccf9e1a79d7252fb8c34512b05ce3ea9ba79a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+i(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "7e96295dff2e50713880b4ff787c30aac3f913927dbee356b8880dd8b110528a", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+google\\.zip(?:\\?|$)" + }, + { + "hash": "f70dafca9eee6d8f27a2326afbc3c1835e94ec4632977d52acd810da1a849be9", + "regex": "." + }, + { + "hash": "76d34e45a4f33732bbe7f3796d49614c5b67a9b7b465f4cad1fcc68bef4578d5", + "regex": "(?i)^https?\\:\\/\\/ehgbqaehgdbqa\\.blogspot\\.com\\.mt(?:\\:(?:80|443))?" + }, + { + "hash": "b11b381d3c2783b008f4e414ba38d712d007caffda164c3d1a03ba0ac4cb1155", + "regex": "(?i)^https?\\:\\/\\/qaerhbqarfhbqahb\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "fba211513a913b5e58b1865a35771bce102937a151e797a2fa4eac82beacf15a", + "regex": "." + }, + { + "hash": "6523f0ce052261b640a9a2afbdfce9a80332a57d3eaf9b5d0bd301576420f28a", + "regex": "." + }, + { + "hash": "39da8a9f65f4c3a475ad5fa9d012ce84ddd340b6f87fe4d439232ca1ff50acf2", + "regex": "." + }, + { + "hash": "0480d64fae04a9af4389fcb2ceafacd7af6ee7cc07346131053de18b851b08f0", + "regex": "(?i)^https?\\:\\/\\/hbgqaehbaq\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "347500e1299cc6080618899b30a74334a33b1f0434bd533d66be23ecd14da0ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+7c4e7f027d02004013550053575051544b1306225b571613017054085104525c0905025101(?:\\?|$)" + }, + { + "hash": "ea72b7bd75b25e5e35fb13038dc7f2757b9fa3a839b65f3bec43ffdc744c2680", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+p(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "bd140903b3d9d3547b90ddb3e3ffbd1eebd03b022ad52b1c11e28eaaeb2f1bd6", + "regex": "." + }, + { + "hash": "45ac19823a040b66cdbb29bb568bfc7e90e9e22e97ef3b176ad36f6d0db1cecd", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.com\\.uy(?:\\:(?:80|443))?" + }, + { + "hash": "0eb50619ef769d5911c70f8fb024440c2b79e96e8eac7de1e4a7759e65af2bc6", + "regex": "." + }, + { + "hash": "e92357e52998106be52b29c0bbd7e8c3a1d4855f1a1510d8577b481b677c6a8d", + "regex": "(?i)^https?\\:\\/\\/my\\-login\\-juno\\-update\\-b1a49b\\.webflow\\.io(?:\\:(?:80|443))?" + }, + { + "hash": "e04e9a9ece0d644937ed930bbe4caea97857706fb69e160f847d9a7e6db61dd1", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.fi(?:\\:(?:80|443))?" + }, + { + "hash": "36b4a2665eeb6882312b4beb0cd2aecdd8d66ff7034a9b45693ddd85269f0a6f", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+siuaboo(?:\\?|$)" + }, + { + "hash": "7e4331cace39c8a0ebf39585ec68fcf5fa397a0aeeefbec14bd3bc2cac165c66", + "regex": "." + }, + { + "hash": "36274fb7d77d5577752076ddfdbaf8f9e9156f9584119ec57b1130633d97024b", + "regex": "(?i)^https?\\:\\/\\/lkhkhkgu6\\.blogspot\\.com\\.ng(?:\\:(?:80|443))?" + }, + { + "hash": "9c2816d7367f0ffa1bcd057c47a9060132686104016235d81b5a74c1e5e97e54", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "baab4687bce4324b0679169278dccb0666fe9f3a39577a6899b5c9aa0262d911", + "regex": "." + }, + { + "hash": "5dbf32bce4d5b77cca9a63add0004286f16ec84052e06a8cfc6992c620524393", + "regex": "(?i)^https?\\:\\/\\/vqaehgbaqeghb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "fa81df4a439b65a44e57a5700de6b86485ef3266aa9f8de1423e43867700c0e9", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "be99b1ab2b501d8f57433000f0a025bb493dfbccaca1d17761780ec885cb4cdb", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.be(?:\\:(?:80|443))?" + }, + { + "hash": "ef88b0b793971a54105b69ceb0182c09ffca957ec4dc46e10fe2cb9bb6932bd4", + "regex": "(?i)^https?\\:\\/\\/hbgqaehbaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "4f6456437f7ceb665bab855fcca51d9dc76a951d3ea86049e2dacdecc0364b3d", + "regex": "(?i)^https?\\:\\/\\/dasda32\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "deb6ecc94f829e19e9a81ac624e4438fe7d73b53b669950063dd8174424929f0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+de(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "04bed2b95ecc093d0fcd6b33ddf9be7cc4da5553d42c5ac86af86a5dfaa87ddd", + "regex": "." + }, + { + "hash": "1c8400ecbcf9401eb458bd07ab41f33556092da43d6b6e9d017fcff1ed6ab40c", + "regex": "(?i)^https?\\:\\/\\/tidecaster\\-waveshaper\\.blogspot\\.tw(?:\\:(?:80|443))?" + }, + { + "hash": "31c4d7d759dfe695392ae91fb77ce4b2b75918d58effa7ac1057a55fcaa4b444", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.li(?:\\:(?:80|443))?" + }, + { + "hash": "45c5c0ec3c002f64c6417b04488fcd7e6a79672bf6428fd508b213e0c4e17540", + "regex": "." + }, + { + "hash": "f001db85bf4f6ef6078ccf33be89e5c4e11b05b9cd00adaa8982d421044aca3f", + "regex": "." + }, + { + "hash": "763b35a31dd3079ecb443fdb147579a4106efeaa6030a18f8ef8dc1b1b4bd4fb", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.bg(?:\\:(?:80|443))?" + }, + { + "hash": "96d234862a69ac4cc2530565c3928b34e969300084b9f3d64ae828bfce1a4f2c", + "regex": "(?i)^https?\\:\\/\\/eqahrsqzjhn\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "f2e03fdea07bd7a65582ddc8c01292e81ba48ca2a304c3cd63d781937c7c5b7a", + "regex": "(?i)^https?\\:\\/\\/frosttracker\\-snowbinder\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "99357f67b4e86d45e275ab8f17580df21953af665f56e05c081a938b5cc253f6", + "regex": "(?i)^https?\\:\\/\\/raqehgbqaerhgbaq\\.blogspot\\.sg(?:\\:(?:80|443))?" + }, + { + "hash": "ed8c32005951b3b918bb83a8b0451ca04287a56d83b5689531b40ac0ecaf6f1d", + "regex": "(?i)^https?\\:\\/\\/raqehgbqaerhgbaq\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "8293a7793bc9e6b2c90f360f0508300ca8a170e676097a3345fc42c2401869e7", + "regex": "(?i)^https?\\:\\/\\/awxqzaecs\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "eff60b17bf1add711ee090b63f1493484165b3258a2ddb143b667bdadca9b411", + "regex": "(?i)^https?\\:\\/\\/ajnouu\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fc82063c9fca910865583920e5a2cdff074cd884d5c509373af095b55398e4ff", + "regex": "." + }, + { + "hash": "d739c8eae2583ae6d373888729de76c9ec17a915c320c7f7f19b36a7014b58d0", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "5b40b4b4f4fc13ff3c947396eeb05ed134f0eacef134d7508a0e21215b847dc6", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "e1f0c33f66a9b8188e7123e0e04217347cd8a82a8679035ddfffecd6776aacd9", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.com\\.au(?:\\:(?:80|443))?" + }, + { + "hash": "9511ae743004f165cc7a77ecf26244d82f972f7ea7860ed797d49f394509ae37", + "regex": "." + }, + { + "hash": "7003a5b99ffffe3801307a1fafc7e073988aa60f33f4d3c16bc8cea37070d829", + "regex": "(?i)^https?\\:\\/\\/orbitfinder\\-universeexplorer\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "5a7c6f0da64807544a0d722490345c79559f8b03520e3cdc1b78960f50e8eb86", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "bcf48064e5109e0ca8ffba92154af7530b61bbf5131219134b50411b7ddb97cd", + "regex": "." + }, + { + "hash": "fcc093b06b4a5ac001f6a939935bb9579a2196928fb1c7e667eeb08596147983", + "regex": "." + }, + { + "hash": "ca5f2937e8faba44de97ccc043a662083b6f36ed96b00d5bf8adad639f572082", + "regex": "." + }, + { + "hash": "be8164f5f078ba93b0fae927ac54ddf90eeff0d22343c1ec330ca47fabe8dc38", + "regex": "(?i)^https?\\:\\/\\/kosko2oo212\\.blogspot\\.co\\.uk(?:\\:(?:80|443))?" + }, + { + "hash": "3cf16c8d9a4e5804ade2916b9c9e0bbdf13ab51c4a788455f9b2231571e1ba2b", + "regex": "(?i)^https?\\:\\/\\/eqahged\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "0027cb03fdba1530f4c75fe560d61dcf0c76efe1b3cff631455bc8acf07d4abf", + "regex": "." + }, + { + "hash": "87cd537222d7fcb755ae3d93b22917fb73b9a3ed6297ea326b8729b1e8d3e352", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.al(?:\\:(?:80|443))?" + }, + { + "hash": "1f8d34e429d2b8d08bd62325a8db40b782270b00f81cdc747de836f132dcd73c", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+Xo5UVhKlWv7Gmse8jt(?:\\?|$)" + }, + { + "hash": "6f18a12cbae638b428c612a07b9e0f0f3eabfbe944b812de70746d6493fc0228", + "regex": "(?i)^https?\\:\\/\\/voltkeeper\\-energyseeker\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "550afc2c2f2668122bc354f2291b4c0d51d2340a98a4c56d3ba8b12c2665a09b", + "regex": "." + }, + { + "hash": "67b45c9df82a04ea9d832a8264b65ee30529288500d33b39ae81709a749efa15", + "regex": "(?i)^https?\\:\\/\\/www\\.cranky\\-ride\\.162\\-62\\-219\\-87\\.plesk\\.page(?:\\:(?:80|443))?" + }, + { + "hash": "32ce30320f1e6b05fda2a5b72ce17c1a28ccf8a0e79d6e8f77cc9482dbbe2d3a", + "regex": "." + }, + { + "hash": "d199ae8daf25bd7aeb298183396cd36e12de0f28b0f164855435361abe582b87", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.ie(?:\\:(?:80|443))?" + }, + { + "hash": "836215815aa988fc0285ed7faf3c37d0e3fad93ec18a238c0eaa1f7e6dd4faff", + "regex": "." + }, + { + "hash": "ecf19b7e20e498a606d581bb0eb9e2db7caa451bbc16cf7ade26599def2ecf8b", + "regex": "(?i)^https?\\:\\/\\/fsdfdsr45435\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "3f80902cc15128e8ac166e2a0000a24e0a5da393b454aef4eb664a041c15691e", + "regex": "(?i)^https?\\:\\/\\/qeadhbqeadrhbqa\\.blogspot\\.co\\.id(?:\\:(?:80|443))?" + }, + { + "hash": "8f157b2eda576974a67109b118c647a9e3acc050435b57319ed1c23a641927d3", + "regex": "(?i)^https?\\:\\/\\/tidecaster\\-waveshaper\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "fa277ce88ee375b999f76bf78ea86d95b5e3762848e220e4ac3a410de227b8b9", + "regex": "(?i)^https?\\:\\/\\/kosko2oo212\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "19bd1b9ab34fa0d3b01d5a68d5068cbd061130aaf2a01d83e57a2b74f2fd4272", + "regex": "(?i)^https?\\:\\/\\/qafgvqdagvbeqd\\.blogspot\\.qa(?:\\:(?:80|443))?" + }, + { + "hash": "acca253369e484634ed77abb1744b76f92a0c45e597f163a0bf7e969173c9cff", + "regex": "(?i)^https?\\:\\/\\/ioflaasgh222\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "394837d12557540ebe0283f7aa04469da89f9e64a6bc04445912cfb0d87b94fc", + "regex": "." + }, + { + "hash": "868ee4c3baf7dfabf599baedf4cdf6898c1d549d8f2f7d194ec47aaae53935b8", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+verificar\\-produtos(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "1750010c91904598815348f8a1132c559c8d55cd0316c8632b26b611a1c515f4", + "regex": "." + }, + { + "hash": "90108362af7b0b82108e2491fe8b90cb51d58ea00b8a21ae42a1e7cf7b462fab", + "regex": "(?i)^https?\\:\\/\\/raqehgbqaerhgbaq\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "aae1fcfba59cf0ab96799f1416b602d26ebfd5da109e921566c33036c89cdcf4", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.is(?:\\:(?:80|443))?" + }, + { + "hash": "e42dc8bc7daa167a91531d82fea532fd177488134f2e4c244824d4f157986d67", + "regex": "(?i)^https?\\:\\/\\/informed\\.deliveryfbn\\.top(?:\\:(?:80|443))?[\\/\\\\]+i(?:\\?|$)" + }, + { + "hash": "57c300b186c8ae22d385a572f714235767400445e4805d209c943a2b62a7ed45", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "523484d20c5b2c46b469cfe1a6611236889110e2098a56f432a106efbf132e17", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "ee4c5686babf3a270b82a6e67e37c0414495ac65ce9d373f342b3e5be115dff9", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+bgi\\.bfwim(?:\\?|$)" + }, + { + "hash": "3ce49429806d098662363e9c2abf60d0da72a043e3f706eb76e715141193ae06", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.cz(?:\\:(?:80|443))?" + }, + { + "hash": "dffe41b711b4cf642c16fda493821c30c84061ae36e7be6978a5dda3d951fca0", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+help[\\/\\\\]+defaults\\.php(?:\\?|$)" + }, + { + "hash": "026f492932b79fafc1f6a1b92aa5f30bdc49d96bae9c9973014e8467085d509f", + "regex": "(?i)^https?\\:\\/\\/myworkspaceb6c18\\.myclickfunnels\\.com(?:\\:(?:80|443))?[\\/\\\\]+gor(?:\\?|$)" + }, + { + "hash": "a200832b9ce80418f516b307ca8fffbbdcf615ff482bfcb8d7c435d807874991", + "regex": "(?i)^https?\\:\\/\\/fsdfdsr45435\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "a5a4fdc5488f9db0d92a5d94ff59818bde038d05cb3c85d317479d3e00d2df9a", + "regex": "(?i)^https?\\:\\/\\/tidecaster\\-waveshaper\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "fbe58ff116a7a1ad3f47960849fdfa8e8b3bc76af3d33b28891689e9e15bc8ea", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.com\\.ee(?:\\:(?:80|443))?" + }, + { + "hash": "2d3baa898a3ed76295e8d360e2034d85a94e34e730471fe7d71d741e9308f477", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+us(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "401c9f0f2c197c7c10d6a0d5c01b4e3e87fe33e313f85f096941f25c17e3669e", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "ec811f10beeacd2b64325b4cfcaa8717d03c44cc62fc7e4193a3d6ef315a9137", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.ae(?:\\:(?:80|443))?" + }, + { + "hash": "d123492e758bb0f759221c4dd2fc93f0d833d911239a6b297745af4df6199e52", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.ba(?:\\:(?:80|443))?" + }, + { + "hash": "5ac674c353d0f0806272237b62c5f4573f1a0a4139a421a2295c6de92af1c11a", + "regex": "(?i)^https?\\:\\/\\/snsml5\\.blogspot\\.lu(?:\\:(?:80|443))?" + }, + { + "hash": "1317e03a806d27cc89eba30470817b995bb3a0bced7ae082adddbe7e3b2074ad", + "regex": "(?i)^https?\\:\\/\\/currently6778\\.weebly\\.com(?:\\:(?:80|443))?" + }, + { + "hash": "fa56f0e7328871431fc7e9245ba7cc4208061b62a018acb3428c6c0502cb946f", + "regex": "(?i)^https?\\:\\/\\/bqaehbqahb\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "9b133aaa7e71017f5b7c1374ef5b54d6175a34d0a77e3ffe3ae7945b7a25ffbd", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.com\\.ar(?:\\:(?:80|443))?" + }, + { + "hash": "19b5a39e80d8ff66f517376f5e1917d5a4bdde5978ea7741bc710f4845129bb5", + "regex": "(?i)^https?\\:\\/\\/dasdas3423\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "347500e1299cc6080618899b30a74334a33b1f0434bd533d66be23ecd14da0ad", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+tradeoffer[\\/\\\\]+new[\\/\\\\]+79213812321(?:\\?|$)" + }, + { + "hash": "fbe9be5db4d70bb258a26850f2fb33e8b69241649e557b6d3f2fc0fd717d37ec", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.my(?:\\:(?:80|443))?" + }, + { + "hash": "cfdc09588dea05f499e64440386f11e2fd558b6cd9a1e5691f2c1413f16ac7e4", + "regex": "(?i)^https?\\:\\/\\/[\\w\\-\\.]+(?:\\:(?:80|443))?[\\/\\\\]+ch(?:[\\/\\\\]+|\\?|$)" + }, + { + "hash": "71b81395cff564265c847d2ab8040cb91c6804874d97fc3ddb65be6f32d6c229", + "regex": "(?i)^https?\\:\\/\\/eqahrsqzjhn\\.blogspot\\.cl(?:\\:(?:80|443))?" + }, + { + "hash": "3a422dbe125da321423104f64366c667a208e2788400309e250959eee25e5132", + "regex": "(?i)^https?\\:\\/\\/qafgvqdagvbeqd\\.blogspot\\.ca(?:\\:(?:80|443))?" + }, + { + "hash": "e1efdf858fa4828d40b688ccd24b932f79b602fbff1da6c2f9797f020d9ef81d", + "regex": "(?i)^https?\\:\\/\\/qaehgqaehbqae\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "ad15dd64e388289cc594efcb7228a271fb7c0f8625a659488596b6a5fde7a08f", + "regex": "(?i)^https?\\:\\/\\/qedaghbqahb\\.blogspot\\.se(?:\\:(?:80|443))?" + }, + { + "hash": "5322b13e0853957885c2888bd733bfb933fb1aba75cde1a4565bd921456519d6", + "regex": "(?i)^https?\\:\\/\\/starmapper\\-orbitranger\\.blogspot\\.co\\.za(?:\\:(?:80|443))?" + }, + { + "hash": "581ea505d1d4141196ff68cc37549c5b805fa1ccb0cad758252e847e0f0b761e", + "regex": "." + }, + { + "hash": "dd77fd07dfbc87ac1788be74edee045e834efc8c38232de4fd21246d5174a44f", + "regex": "(?i)^https?\\:\\/\\/oustandingonlinemagazinecontest\\.blogspot\\.hu(?:\\:(?:80|443))?" + }, + { + "hash": "aeb5f35c35598b11396c50ff00f5b65dcdf59697882dd1e4cd6d83a9891e2cbb", + "regex": "(?i)^https?\\:\\/\\/hbgqaehbaq\\.blogspot\\.nl(?:\\:(?:80|443))?" + }, + { + "hash": "bbbe6a5ecec3e5559e14a4e0fb99ca642c27aa301619da3a380806fb26a63526", + "regex": "(?i)^https?\\:\\/\\/vlooog77j\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "246de8dfddd346942c84f754ca32d7b5d201add809cdbafe6df1032a4e93f9a3", + "regex": "(?i)^https?\\:\\/\\/eqahqadhgbqa\\.blogspot\\.pt(?:\\:(?:80|443))?" + }, + { + "hash": "a024a0d4d4fc5bdd10f0a3cf4c4acb741d9afb263b41d05044c81256a6344268", + "regex": "(?i)^https?\\:\\/\\/raqhgqadfhg\\.blogspot\\.co\\.nz(?:\\:(?:80|443))?" + }, + { + "hash": "1aaea3d481095fa624c0503b01ca5139e3378799222d72e7b57e64084956bc39", + "regex": "(?i)^https?\\:\\/\\/qaehgbqaedhbgqead\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "1ae64432506708fbf0f288d245c4ce0e167193cb49920240f1228eb2d2c50ba1", + "regex": "(?i)^https?\\:\\/\\/eqahqadhgbqa\\.blogspot\\.de(?:\\:(?:80|443))?" + }, + { + "hash": "a169aeeec71dd720afd9ccf1163703b3abd112f390be67e81d3a36fefc3a4189", + "regex": "(?i)^https?\\:\\/\\/qedghbqwedg\\.blogspot\\.com\\.br(?:\\:(?:80|443))?" + }, + { + "hash": "337ea843bca038d006f6377e241a41ced282024d709fba7d3d5ebe4187add114", + "regex": "(?i)^https?\\:\\/\\/redirection78945ch\\.blogspot\\.am(?:\\:(?:80|443))?" + }, + { + "hash": "7053ef691fc1416b338053564d734c4c1c8b83e616683e8b86217ca94361c45c", + "regex": "." + }, + { + "hash": "d2ac13afc211aedafba7d4c4d9718d0e4fb83358c51c023aa5ee9e1c521b9fc3", + "regex": "(?i)^https?\\:\\/\\/qaeghbqahg\\.blogspot\\.ro(?:\\:(?:80|443))?" + }, + { + "hash": "a3e3b27af897b2a4fea2194965283c852b90c0b35ae22428178720119a86fe8c", + "regex": "(?i)^https?\\:\\/\\/rqahbqarhb\\.blogspot\\.kr(?:\\:(?:80|443))?" + }, + { + "hash": "dad3ed6ad97b69ca695dcac36674687f1641ff3203865155fc087145d29c999a", + "regex": "(?i)^https?\\:\\/\\/redirection7899\\-4459\\.blogspot\\.it(?:\\:(?:80|443))?" + }, + { + "hash": "af7de9e33445edb3c2d83fd94d138689e1d44a0febf28df9d5f4b54ea8ec8b6b", + "regex": "(?i)^https?\\:\\/\\/dasdasd78dsa\\.blogspot\\.no(?:\\:(?:80|443))?" + }, + { + "hash": "0c44bf0af199b2fca850a7e073bfa597b4291547ebe2278ab1791b9956035c8f", + "regex": "(?i)^https?\\:\\/\\/qehbqehbq\\.blogspot\\.si(?:\\:(?:80|443))?" + }, + { + "hash": "b8bf3eb0848bc765cd8396b1d3aadc6b34e8b9ce18138b6b8087a23d417a2d6e", + "regex": "(?i)^https?\\:\\/\\/qaeghbeaqhgb\\.blogspot\\.rs(?:\\:(?:80|443))?" + }, + { + "hash": "9141816b6f2c61948a332da4719323eef555b51634d9cefddf367b3f701ef468", + "regex": "(?i)^https?\\:\\/\\/rqahbqarhb\\.blogspot\\.com\\.eg(?:\\:(?:80|443))?" + }, + { + "hash": "f0329a6d354c6e6933edad7020e4447184ab3d21fa041801cdccd58c2df676eb", + "regex": "(?i)^https?\\:\\/\\/globalfoodiesculinarycraftsmanship\\.blogspot\\.md(?:\\:(?:80|443))?" + }, + { + "hash": "3981e1ce8a2f6190f1529aa3e0ef19fe80e58b379811c55d4bb9c40fd79f7ec4", + "regex": "(?i)^https?\\:\\/\\/e16sd\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + }, + { + "hash": "763182e03b09e6ac6ff9aa4bb198fbf791fcafc7b4f29c05773233c354e36cec", + "regex": "." + }, + { + "hash": "068e27f4df40c40712e70ed6f803cf6ca1489daf8262168f9f7944ab03edd427", + "regex": "(?i)^https?\\:\\/\\/raqehgbqaerhgbaq\\.blogspot\\.co\\.ke(?:\\:(?:80|443))?" + } + ], + "delete": [], + "replace": "true", + "revision": 1699415 + } +>>>>>>> 21346b82f3 (Only send 4 characters to the matches endpoint) diff --git a/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt b/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt index 65ab9fb028ac..86fffcf5d00d 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt @@ -113,7 +113,7 @@ class RealMaliciousSiteProtectionTest { whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(true) whenever(maliciousSiteRepository.getFilter(hash)).thenReturn(filter) - whenever(maliciousSiteRepository.matches(hashPrefix)) + whenever(maliciousSiteRepository.matches(hashPrefix.substring(0, 4))) .thenReturn(listOf(Match(hostname, url.toString(), ".*malicious.*", hash))) realMaliciousSiteProtection.isMalicious(url) { From a6c56a56b0e420c81dc31fc67a63d36653fbe7ac Mon Sep 17 00:00:00 2001 From: Cris Barreiro Date: Tue, 17 Dec 2024 10:20:27 +0100 Subject: [PATCH 6/8] Return safe if RC flag is disabled --- .../domain/RealMaliciousSiteProtection.kt | 13 ++++++++--- .../domain/RealMaliciousSiteProtectionTest.kt | 23 +++++++++++++++++-- 2 files changed, 31 insertions(+), 5 deletions(-) diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt index 9440450218f5..2909bdf22f1f 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt @@ -22,14 +22,15 @@ import com.duckduckgo.common.utils.DispatcherProvider import com.duckduckgo.di.scopes.AppScope import com.duckduckgo.malicioussiteprotection.api.MaliciousSiteProtection import com.duckduckgo.malicioussiteprotection.api.MaliciousSiteProtection.IsMaliciousResult +import com.duckduckgo.malicioussiteprotection.impl.MaliciousSiteProtectionRCFeature import com.duckduckgo.malicioussiteprotection.impl.data.MaliciousSiteRepository import com.squareup.anvil.annotations.ContributesBinding -import kotlinx.coroutines.CoroutineScope -import kotlinx.coroutines.launch -import timber.log.Timber import java.security.MessageDigest import java.util.regex.Pattern import javax.inject.Inject +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.launch +import timber.log.Timber @ContributesBinding(AppScope::class, MaliciousSiteProtection::class) class RealMaliciousSiteProtection @Inject constructor( @@ -37,11 +38,17 @@ class RealMaliciousSiteProtection @Inject constructor( @AppCoroutineScope private val appCoroutineScope: CoroutineScope, private val maliciousSiteRepository: MaliciousSiteRepository, private val messageDigest: MessageDigest, + private val maliciousSiteProtectionRCFeature: MaliciousSiteProtectionRCFeature, ) : MaliciousSiteProtection { override suspend fun isMalicious(url: Uri, confirmationCallback: (isMalicious: Boolean) -> Unit): IsMaliciousResult { Timber.tag("MaliciousSiteProtection").d("isMalicious $url") + if (!maliciousSiteProtectionRCFeature.isFeatureEnabled()) { + Timber.d("\uD83D\uDFE2 Cris: should not block (feature disabled) $url") + return IsMaliciousResult.SAFE + } + val hostname = url.host ?: return IsMaliciousResult.SAFE val hash = messageDigest .digest(hostname.toByteArray()) diff --git a/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt b/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt index 86fffcf5d00d..d1484cabf63b 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt @@ -19,9 +19,8 @@ package com.duckduckgo.malicioussiteprotection.impl.domain import android.net.Uri import androidx.test.ext.junit.runners.AndroidJUnit4 import com.duckduckgo.common.test.CoroutineTestRule -import com.duckduckgo.feature.toggles.api.FakeFeatureToggleFactory import com.duckduckgo.malicioussiteprotection.api.MaliciousSiteProtection -import com.duckduckgo.malicioussiteprotection.impl.MaliciousSiteProtectionFeature +import com.duckduckgo.malicioussiteprotection.impl.MaliciousSiteProtectionRCFeature import com.duckduckgo.malicioussiteprotection.impl.data.Filter import com.duckduckgo.malicioussiteprotection.impl.data.MaliciousSiteRepository import com.duckduckgo.malicioussiteprotection.impl.data.Match @@ -45,6 +44,7 @@ class RealMaliciousSiteProtectionTest { private lateinit var realMaliciousSiteProtection: RealMaliciousSiteProtection private val maliciousSiteRepository: MaliciousSiteRepository = mock() private val messageDigest: MessageDigest = MessageDigest.getInstance("SHA-256") + private val mockMaliciousSiteProtectionRCFeature: MaliciousSiteProtectionRCFeature = mock() @Before fun setup() { @@ -53,7 +53,9 @@ class RealMaliciousSiteProtectionTest { coroutinesTestRule.testScope, maliciousSiteRepository, messageDigest, + mockMaliciousSiteProtectionRCFeature, ) + whenever(mockMaliciousSiteProtectionRCFeature.isFeatureEnabled()).thenReturn(true) } @Test @@ -86,6 +88,23 @@ class RealMaliciousSiteProtectionTest { assertEquals(MaliciousSiteProtection.IsMaliciousResult.MALICIOUS, result) } + @Test + fun isMalicious_returnsSafe_whenUrlIsMaliciousButRCFeatureDisabled() = runTest { + val url = Uri.parse("https://malicious.com") + val hostname = url.host!! + val hash = messageDigest.digest(hostname.toByteArray()).joinToString("") { "%02x".format(it) } + val hashPrefix = hash.substring(0, 8) + val filter = Filter(hash, ".*malicious.*") + + whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(true) + whenever(maliciousSiteRepository.getFilter(hash)).thenReturn(filter) + whenever(mockMaliciousSiteProtectionRCFeature.isFeatureEnabled()).thenReturn(false) + + val result = realMaliciousSiteProtection.isMalicious(url) {} + + assertEquals(MaliciousSiteProtection.IsMaliciousResult.SAFE, result) + } + @Test fun isMalicious_returnsWaitForConfirmation_whenUrlDoesNotMatchFilter() = runTest { val url = Uri.parse("https://safe.com") From ba16ca47c795bab151f5bf27ecf91c3476b31f63 Mon Sep 17 00:00:00 2001 From: Cris Barreiro Date: Thu, 19 Dec 2024 18:32:31 +0100 Subject: [PATCH 7/8] Support duplicated hash filters --- .../impl/data/MaliciousSiteRepository.kt | 8 +++++--- .../impl/data/db/MaliciousSiteDao.kt | 2 +- .../impl/domain/RealMaliciousSiteProtection.kt | 10 ++++++---- .../impl/domain/RealMaliciousSiteProtectionTest.kt | 8 ++++---- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/MaliciousSiteRepository.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/MaliciousSiteRepository.kt index 1be3aed90e55..8e0468fde422 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/MaliciousSiteRepository.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/MaliciousSiteRepository.kt @@ -33,7 +33,7 @@ import timber.log.Timber interface MaliciousSiteRepository { suspend fun containsHashPrefix(hashPrefix: String): Boolean - suspend fun getFilter(hash: String): Filter? + suspend fun getFilters(hash: String): List? suspend fun matches(hashPrefix: String): List } @@ -86,9 +86,11 @@ class RealMaliciousSiteRepository @Inject constructor( return maliciousSiteDao.getHashPrefix(hashPrefix) != null } - override suspend fun getFilter(hash: String): Filter? { + override suspend fun getFilters(hash: String): List? { return maliciousSiteDao.getFilter(hash)?.let { - Filter(it.hash, it.regex) + it.map { + Filter(it.hash, it.regex) + } } } diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/db/MaliciousSiteDao.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/db/MaliciousSiteDao.kt index fa213bde4293..db62ba442d6b 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/db/MaliciousSiteDao.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/db/MaliciousSiteDao.kt @@ -51,7 +51,7 @@ interface MaliciousSiteDao { suspend fun getHashPrefix(hashPrefix: String): HashPrefixEntity? @Query("SELECT * FROM filters WHERE hash = :hash") - suspend fun getFilter(hash: String): FilterEntity? + suspend fun getFilter(hash: String): List? @Transaction suspend fun insertData( diff --git a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt index 2909bdf22f1f..87384dc0ffca 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtection.kt @@ -59,10 +59,12 @@ class RealMaliciousSiteProtection @Inject constructor( Timber.d("\uD83D\uDFE2 Cris: should not block (no hash) $hashPrefix, $url") return IsMaliciousResult.SAFE } - maliciousSiteRepository.getFilter(hash)?.let { - if (Pattern.compile(it.regex).matcher(url.toString()).find()) { - Timber.d("\uD83D\uDFE2 Cris: shouldBlock $url") - return IsMaliciousResult.MALICIOUS + maliciousSiteRepository.getFilters(hash)?.let { + for (filter in it) { + if (Pattern.compile(filter.regex).matcher(url.toString()).find()) { + Timber.d("\uD83D\uDFE2 Cris: shouldBlock $url") + return IsMaliciousResult.MALICIOUS + } } } appCoroutineScope.launch(dispatchers.io()) { diff --git a/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt b/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt index d1484cabf63b..270e4a1f0550 100644 --- a/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt +++ b/malicious-site-protection/malicious-site-protection-impl/src/test/kotlin/com/duckduckgo/malicioussiteprotection/impl/domain/RealMaliciousSiteProtectionTest.kt @@ -81,7 +81,7 @@ class RealMaliciousSiteProtectionTest { val filter = Filter(hash, ".*malicious.*") whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(true) - whenever(maliciousSiteRepository.getFilter(hash)).thenReturn(filter) + whenever(maliciousSiteRepository.getFilters(hash)).thenReturn(listOf(filter)) val result = realMaliciousSiteProtection.isMalicious(url) {} @@ -97,7 +97,7 @@ class RealMaliciousSiteProtectionTest { val filter = Filter(hash, ".*malicious.*") whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(true) - whenever(maliciousSiteRepository.getFilter(hash)).thenReturn(filter) + whenever(maliciousSiteRepository.getFilters(hash)).thenReturn(listOf(filter)) whenever(mockMaliciousSiteProtectionRCFeature.isFeatureEnabled()).thenReturn(false) val result = realMaliciousSiteProtection.isMalicious(url) {} @@ -114,7 +114,7 @@ class RealMaliciousSiteProtectionTest { val filter = Filter(hash, ".*unsafe.*") whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(true) - whenever(maliciousSiteRepository.getFilter(hash)).thenReturn(filter) + whenever(maliciousSiteRepository.getFilters(hash)).thenReturn(listOf(filter)) val result = realMaliciousSiteProtection.isMalicious(url) {} @@ -131,7 +131,7 @@ class RealMaliciousSiteProtectionTest { var onSiteBlockedAsyncCalled = false whenever(maliciousSiteRepository.containsHashPrefix(hashPrefix)).thenReturn(true) - whenever(maliciousSiteRepository.getFilter(hash)).thenReturn(filter) + whenever(maliciousSiteRepository.getFilters(hash)).thenReturn(listOf(filter)) whenever(maliciousSiteRepository.matches(hashPrefix.substring(0, 4))) .thenReturn(listOf(Match(hostname, url.toString(), ".*malicious.*", hash))) From 08a01f5bce0d9df17e9cb7f5272d2ae2249f0fbc Mon Sep 17 00:00:00 2001 From: Cris Barreiro Date: Fri, 20 Dec 2024 11:30:11 +0100 Subject: [PATCH 8/8] Remove unused import --- .../main/java/com/duckduckgo/app/browser/BrowserWebViewClient.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/java/com/duckduckgo/app/browser/BrowserWebViewClient.kt b/app/src/main/java/com/duckduckgo/app/browser/BrowserWebViewClient.kt index f65ede0c371d..1d731ea802ef 100644 --- a/app/src/main/java/com/duckduckgo/app/browser/BrowserWebViewClient.kt +++ b/app/src/main/java/com/duckduckgo/app/browser/BrowserWebViewClient.kt @@ -79,7 +79,6 @@ import com.duckduckgo.history.api.NavigationHistory import com.duckduckgo.privacy.config.api.AmpLinks import com.duckduckgo.subscriptions.api.Subscriptions import com.duckduckgo.user.agent.api.ClientBrandHintProvider -import com.google.android.material.snackbar.Snackbar import java.net.URI import javax.inject.Inject import kotlinx.coroutines.*